diff -u linux-raspi2-4.4.0/Documentation/devicetree/bindings/vendor-prefixes.txt linux-raspi2-4.4.0/Documentation/devicetree/bindings/vendor-prefixes.txt --- linux-raspi2-4.4.0/Documentation/devicetree/bindings/vendor-prefixes.txt +++ linux-raspi2-4.4.0/Documentation/devicetree/bindings/vendor-prefixes.txt @@ -31,6 +31,7 @@ atmel Atmel Corporation auo AU Optronics Corporation avago Avago Technologies +avia avia semiconductor avic Shanghai AVIC Optoelectronics Co., Ltd. axis Axis Communications AB blokaslabs Vilniaus Blokas UAB diff -u linux-raspi2-4.4.0/Documentation/kernel-parameters.txt linux-raspi2-4.4.0/Documentation/kernel-parameters.txt --- linux-raspi2-4.4.0/Documentation/kernel-parameters.txt +++ linux-raspi2-4.4.0/Documentation/kernel-parameters.txt @@ -2531,6 +2531,8 @@ nojitter [IA-64] Disables jitter checking for ITC timers. + nopti [X86-64] Disable KAISER isolation of kernel from user. + no-kvmclock [X86,KVM] Disable paravirtualized KVM clock driver no-kvmapf [X86,KVM] Disable paravirtualized asynchronous page @@ -3060,6 +3062,12 @@ pt. [PARIDE] See Documentation/blockdev/paride.txt. + pti= [X86_64] + Control KAISER user/kernel address space isolation: + on - enable + off - disable + auto - default setting + pty.legacy_count= [KNL] Number of legacy pty's. Overwrites compiled-in default number. diff -u linux-raspi2-4.4.0/Documentation/sysctl/kernel.txt linux-raspi2-4.4.0/Documentation/sysctl/kernel.txt --- linux-raspi2-4.4.0/Documentation/sysctl/kernel.txt +++ linux-raspi2-4.4.0/Documentation/sysctl/kernel.txt @@ -69,6 +69,7 @@ - reboot-cmd [ SPARC only ] - rtsig-max - rtsig-nr +- seccomp/ ==> Documentation/prctl/seccomp_filter.txt - sem - sem_next_id [ sysv ipc ] - sg-big-buff [ generic SCSI device (sg) ] diff -u linux-raspi2-4.4.0/Makefile linux-raspi2-4.4.0/Makefile --- linux-raspi2-4.4.0/Makefile +++ linux-raspi2-4.4.0/Makefile @@ -1,6 +1,6 @@ VERSION = 4 PATCHLEVEL = 4 -SUBLEVEL = 76 +SUBLEVEL = 98 EXTRAVERSION = NAME = Blurry Fish Butt @@ -635,6 +635,9 @@ KBUILD_CFLAGS += $(call cc-option,-fno-delete-null-pointer-checks,) KBUILD_CFLAGS += $(call cc-disable-warning,maybe-uninitialized,) KBUILD_CFLAGS += $(call cc-disable-warning,frame-address,) +KBUILD_CFLAGS += $(call cc-disable-warning, format-truncation) +KBUILD_CFLAGS += $(call cc-disable-warning, format-overflow) +KBUILD_CFLAGS += $(call cc-disable-warning, int-in-bool-context) ifdef CONFIG_CC_OPTIMIZE_FOR_SIZE KBUILD_CFLAGS += -Os diff -u linux-raspi2-4.4.0/arch/arc/mm/cache.c linux-raspi2-4.4.0/arch/arc/mm/cache.c --- linux-raspi2-4.4.0/arch/arc/mm/cache.c +++ linux-raspi2-4.4.0/arch/arc/mm/cache.c @@ -543,6 +543,7 @@ static DEFINE_SPINLOCK(lock); unsigned long flags; unsigned int ctrl; + phys_addr_t end; spin_lock_irqsave(&lock, flags); @@ -572,8 +573,16 @@ * END needs to be setup before START (latter triggers the operation) * END can't be same as START, so add (l2_line_sz - 1) to sz */ - write_aux_reg(ARC_REG_SLC_RGN_END, (paddr + sz + l2_line_sz - 1)); - write_aux_reg(ARC_REG_SLC_RGN_START, paddr); + end = paddr + sz + l2_line_sz - 1; + if (is_pae40_enabled()) + write_aux_reg(ARC_REG_SLC_RGN_END1, upper_32_bits(end)); + + write_aux_reg(ARC_REG_SLC_RGN_END, lower_32_bits(end)); + + if (is_pae40_enabled()) + write_aux_reg(ARC_REG_SLC_RGN_START1, upper_32_bits(paddr)); + + write_aux_reg(ARC_REG_SLC_RGN_START, lower_32_bits(paddr)); while (read_aux_reg(ARC_REG_SLC_CTRL) & SLC_CTRL_BUSY); diff -u linux-raspi2-4.4.0/arch/arm/boot/dts/armada-375.dtsi linux-raspi2-4.4.0/arch/arm/boot/dts/armada-375.dtsi --- linux-raspi2-4.4.0/arch/arm/boot/dts/armada-375.dtsi +++ linux-raspi2-4.4.0/arch/arm/boot/dts/armada-375.dtsi @@ -176,9 +176,9 @@ reg = <0x8000 0x1000>; cache-unified; cache-level = <2>; - arm,double-linefill-incr = <1>; + arm,double-linefill-incr = <0>; arm,double-linefill-wrap = <0>; - arm,double-linefill = <1>; + arm,double-linefill = <0>; prefetch-data = <1>; }; diff -u linux-raspi2-4.4.0/arch/arm/boot/dts/armada-388-gp.dts linux-raspi2-4.4.0/arch/arm/boot/dts/armada-388-gp.dts --- linux-raspi2-4.4.0/arch/arm/boot/dts/armada-388-gp.dts +++ linux-raspi2-4.4.0/arch/arm/boot/dts/armada-388-gp.dts @@ -89,7 +89,7 @@ pinctrl-names = "default"; pinctrl-0 = <&pca0_pins>; interrupt-parent = <&gpio0>; - interrupts = <18 IRQ_TYPE_EDGE_FALLING>; + interrupts = <18 IRQ_TYPE_LEVEL_LOW>; gpio-controller; #gpio-cells = <2>; interrupt-controller; @@ -101,7 +101,7 @@ compatible = "nxp,pca9555"; pinctrl-names = "default"; interrupt-parent = <&gpio0>; - interrupts = <18 IRQ_TYPE_EDGE_FALLING>; + interrupts = <18 IRQ_TYPE_LEVEL_LOW>; gpio-controller; #gpio-cells = <2>; interrupt-controller; diff -u linux-raspi2-4.4.0/arch/arm/boot/dts/pxa3xx.dtsi linux-raspi2-4.4.0/arch/arm/boot/dts/pxa3xx.dtsi --- linux-raspi2-4.4.0/arch/arm/boot/dts/pxa3xx.dtsi +++ linux-raspi2-4.4.0/arch/arm/boot/dts/pxa3xx.dtsi @@ -12,6 +12,7 @@ interrupts = <25>; #dma-channels = <32>; #dma-cells = <2>; + #dma-requests = <100>; status = "okay"; }; diff -u linux-raspi2-4.4.0/arch/arm/kvm/mmu.c linux-raspi2-4.4.0/arch/arm/kvm/mmu.c --- linux-raspi2-4.4.0/arch/arm/kvm/mmu.c +++ linux-raspi2-4.4.0/arch/arm/kvm/mmu.c @@ -824,24 +824,25 @@ * Walks the level-1 page table pointed to by kvm->arch.pgd and frees all * underlying level-2 and level-3 tables before freeing the actual level-1 table * and setting the struct pointer to NULL. - * - * Note we don't need locking here as this is only called when the VM is - * destroyed, which can only be done once. */ void kvm_free_stage2_pgd(struct kvm *kvm) { - if (kvm->arch.pgd == NULL) - return; + void *pgd = NULL; + void *hwpgd = NULL; spin_lock(&kvm->mmu_lock); - unmap_stage2_range(kvm, 0, KVM_PHYS_SIZE); + if (kvm->arch.pgd) { + unmap_stage2_range(kvm, 0, KVM_PHYS_SIZE); + pgd = READ_ONCE(kvm->arch.pgd); + hwpgd = kvm_get_hwpgd(kvm); + kvm->arch.pgd = NULL; + } spin_unlock(&kvm->mmu_lock); - kvm_free_hwpgd(kvm_get_hwpgd(kvm)); - if (KVM_PREALLOC_LEVEL > 0) - kfree(kvm->arch.pgd); - - kvm->arch.pgd = NULL; + if (hwpgd) + kvm_free_hwpgd(hwpgd); + if (KVM_PREALLOC_LEVEL > 0 && pgd) + kfree(pgd); } static pud_t *stage2_get_pud(struct kvm *kvm, struct kvm_mmu_memory_cache *cache, @@ -1629,12 +1630,16 @@ int kvm_age_hva(struct kvm *kvm, unsigned long start, unsigned long end) { + if (!kvm->arch.pgd) + return 0; trace_kvm_age_hva(start, end); return handle_hva_to_gpa(kvm, start, end, kvm_age_hva_handler, NULL); } int kvm_test_age_hva(struct kvm *kvm, unsigned long hva) { + if (!kvm->arch.pgd) + return 0; trace_kvm_test_age_hva(hva); return handle_hva_to_gpa(kvm, hva, hva, kvm_test_age_hva_handler, NULL); } diff -u linux-raspi2-4.4.0/arch/arm/mach-at91/pm.c linux-raspi2-4.4.0/arch/arm/mach-at91/pm.c --- linux-raspi2-4.4.0/arch/arm/mach-at91/pm.c +++ linux-raspi2-4.4.0/arch/arm/mach-at91/pm.c @@ -332,7 +332,7 @@ at91_ramc_write(1, AT91_SDRAMC_LPR, saved_lpr1); } -static const struct of_device_id const ramc_ids[] __initconst = { +static const struct of_device_id ramc_ids[] __initconst = { { .compatible = "atmel,at91rm9200-sdramc", .data = at91rm9200_standby }, { .compatible = "atmel,at91sam9260-sdramc", .data = at91sam9_sdram_standby }, { .compatible = "atmel,at91sam9g45-ddramc", .data = at91_ddr_standby }, diff -u linux-raspi2-4.4.0/arch/arm/mm/fault.c linux-raspi2-4.4.0/arch/arm/mm/fault.c --- linux-raspi2-4.4.0/arch/arm/mm/fault.c +++ linux-raspi2-4.4.0/arch/arm/mm/fault.c @@ -314,8 +314,11 @@ * signal first. We do not need to release the mmap_sem because * it would already be released in __lock_page_or_retry in * mm/filemap.c. */ - if ((fault & VM_FAULT_RETRY) && fatal_signal_pending(current)) + if ((fault & VM_FAULT_RETRY) && fatal_signal_pending(current)) { + if (!user_mode(regs)) + goto no_context; return 0; + } /* * Major/minor page fault accounting is only done on the diff -u linux-raspi2-4.4.0/arch/arm64/include/asm/elf.h linux-raspi2-4.4.0/arch/arm64/include/asm/elf.h --- linux-raspi2-4.4.0/arch/arm64/include/asm/elf.h +++ linux-raspi2-4.4.0/arch/arm64/include/asm/elf.h @@ -120,12 +120,11 @@ #define ELF_EXEC_PAGESIZE PAGE_SIZE /* - * This is the location that an ET_DYN program is loaded if exec'ed. Typical - * use of this is to invoke "./ld.so someprog" to test out a new version of - * the loader. We need to make sure that it is out of the way of the program - * that it will "exec", and that there is sufficient room for the brk. + * This is the base location for PIE (ET_DYN with INTERP) loads. On + * 64-bit, this is above 4GB to leave the entire 32-bit address + * space open for things that want to use the area for 32-bit pointers. */ -#define ELF_ET_DYN_BASE (2 * TASK_SIZE_64 / 3) +#define ELF_ET_DYN_BASE (2 * TASK_SIZE_64 / 3) /* * When the program starts, a1 contains a pointer to a function to be @@ -165,7 +164,8 @@ #ifdef CONFIG_COMPAT -#define COMPAT_ELF_ET_DYN_BASE (2 * TASK_SIZE_32 / 3) +/* PIE load location for compat arm. Must match ARM ELF_ET_DYN_BASE. */ +#define COMPAT_ELF_ET_DYN_BASE 0x000400000UL /* AArch32 registers. */ #define COMPAT_ELF_NGREG 18 diff -u linux-raspi2-4.4.0/arch/arm64/kernel/head.S linux-raspi2-4.4.0/arch/arm64/kernel/head.S --- linux-raspi2-4.4.0/arch/arm64/kernel/head.S +++ linux-raspi2-4.4.0/arch/arm64/kernel/head.S @@ -446,6 +446,7 @@ * booted in EL1 or EL2 respectively. */ ENTRY(el2_setup) + msr SPsel, #1 // We want to use SP_EL{1,2} mrs x0, CurrentEL cmp x0, #CurrentEL_EL2 b.ne 1f diff -u linux-raspi2-4.4.0/arch/arm64/kernel/traps.c linux-raspi2-4.4.0/arch/arm64/kernel/traps.c --- linux-raspi2-4.4.0/arch/arm64/kernel/traps.c +++ linux-raspi2-4.4.0/arch/arm64/kernel/traps.c @@ -129,7 +129,7 @@ for (i = -4; i < 1; i++) { unsigned int val, bad; - bad = __get_user(val, &((u32 *)addr)[i]); + bad = get_user(val, &((u32 *)addr)[i]); if (!bad) p += sprintf(p, i == 0 ? "(%08x) " : "%08x ", val); diff -u linux-raspi2-4.4.0/arch/arm64/mm/fault.c linux-raspi2-4.4.0/arch/arm64/mm/fault.c --- linux-raspi2-4.4.0/arch/arm64/mm/fault.c +++ linux-raspi2-4.4.0/arch/arm64/mm/fault.c @@ -66,21 +66,21 @@ break; pud = pud_offset(pgd, addr); - printk(", *pud=%016llx", pud_val(*pud)); + pr_cont(", *pud=%016llx", pud_val(*pud)); if (pud_none(*pud) || pud_bad(*pud)) break; pmd = pmd_offset(pud, addr); - printk(", *pmd=%016llx", pmd_val(*pmd)); + pr_cont(", *pmd=%016llx", pmd_val(*pmd)); if (pmd_none(*pmd) || pmd_bad(*pmd)) break; pte = pte_offset_map(pmd, addr); - printk(", *pte=%016llx", pte_val(*pte)); + pr_cont(", *pte=%016llx", pte_val(*pte)); pte_unmap(pte); } while(0); - printk("\n"); + pr_cont("\n"); } #ifdef CONFIG_ARM64_HW_AFDBM @@ -313,8 +313,11 @@ * signal first. We do not need to release the mmap_sem because it * would already be released in __lock_page_or_retry in mm/filemap.c. */ - if ((fault & VM_FAULT_RETRY) && fatal_signal_pending(current)) + if ((fault & VM_FAULT_RETRY) && fatal_signal_pending(current)) { + if (!user_mode(regs)) + goto no_context; return 0; + } /* * Major/minor page fault accounting is only done on the initial @@ -444,7 +447,7 @@ { do_translation_fault, SIGSEGV, SEGV_MAPERR, "level 0 translation fault" }, { do_translation_fault, SIGSEGV, SEGV_MAPERR, "level 1 translation fault" }, { do_translation_fault, SIGSEGV, SEGV_MAPERR, "level 2 translation fault" }, - { do_page_fault, SIGSEGV, SEGV_MAPERR, "level 3 translation fault" }, + { do_translation_fault, SIGSEGV, SEGV_MAPERR, "level 3 translation fault" }, { do_bad, SIGBUS, 0, "unknown 8" }, { do_page_fault, SIGSEGV, SEGV_ACCERR, "level 1 access flag fault" }, { do_page_fault, SIGSEGV, SEGV_ACCERR, "level 2 access flag fault" }, diff -u linux-raspi2-4.4.0/arch/mips/include/asm/irq.h linux-raspi2-4.4.0/arch/mips/include/asm/irq.h --- linux-raspi2-4.4.0/arch/mips/include/asm/irq.h +++ linux-raspi2-4.4.0/arch/mips/include/asm/irq.h @@ -18,9 +18,24 @@ #include #define IRQ_STACK_SIZE THREAD_SIZE +#define IRQ_STACK_START (IRQ_STACK_SIZE - 16) extern void *irq_stack[NR_CPUS]; +/* + * The highest address on the IRQ stack contains a dummy frame put down in + * genex.S (handle_int & except_vec_vi_handler) which is structured as follows: + * + * top ------------ + * | task sp | <- irq_stack[cpu] + IRQ_STACK_START + * ------------ + * | | <- First frame of IRQ context + * ------------ + * + * task sp holds a copy of the task stack pointer where the struct pt_regs + * from exception entry can be found. + */ + static inline bool on_irq_stack(int cpu, unsigned long sp) { unsigned long low = (unsigned long)irq_stack[cpu]; diff -u linux-raspi2-4.4.0/arch/mips/kernel/asm-offsets.c linux-raspi2-4.4.0/arch/mips/kernel/asm-offsets.c --- linux-raspi2-4.4.0/arch/mips/kernel/asm-offsets.c +++ linux-raspi2-4.4.0/arch/mips/kernel/asm-offsets.c @@ -102,6 +102,7 @@ DEFINE(_THREAD_SIZE, THREAD_SIZE); DEFINE(_THREAD_MASK, THREAD_MASK); DEFINE(_IRQ_STACK_SIZE, IRQ_STACK_SIZE); + DEFINE(_IRQ_STACK_START, IRQ_STACK_START); BLANK(); } diff -u linux-raspi2-4.4.0/arch/mips/kernel/branch.c linux-raspi2-4.4.0/arch/mips/kernel/branch.c --- linux-raspi2-4.4.0/arch/mips/kernel/branch.c +++ linux-raspi2-4.4.0/arch/mips/kernel/branch.c @@ -399,7 +399,7 @@ * * @regs: Pointer to pt_regs * @insn: branch instruction to decode - * @returns: -EFAULT on error and forces SIGBUS, and on success + * @returns: -EFAULT on error and forces SIGILL, and on success * returns 0 or BRANCH_LIKELY_TAKEN as appropriate after * evaluating the branch. * @@ -431,7 +431,7 @@ /* Fall through */ case jr_op: if (NO_R6EMU && insn.r_format.func == jr_op) - goto sigill_r6; + goto sigill_r2r6; regs->cp0_epc = regs->regs[insn.r_format.rs]; break; } @@ -446,7 +446,7 @@ switch (insn.i_format.rt) { case bltzl_op: if (NO_R6EMU) - goto sigill_r6; + goto sigill_r2r6; case bltz_op: if ((long)regs->regs[insn.i_format.rs] < 0) { epc = epc + 4 + (insn.i_format.simmediate << 2); @@ -459,7 +459,7 @@ case bgezl_op: if (NO_R6EMU) - goto sigill_r6; + goto sigill_r2r6; case bgez_op: if ((long)regs->regs[insn.i_format.rs] >= 0) { epc = epc + 4 + (insn.i_format.simmediate << 2); @@ -473,10 +473,8 @@ case bltzal_op: case bltzall_op: if (NO_R6EMU && (insn.i_format.rs || - insn.i_format.rt == bltzall_op)) { - ret = -SIGILL; - break; - } + insn.i_format.rt == bltzall_op)) + goto sigill_r2r6; regs->regs[31] = epc + 8; /* * OK we are here either because we hit a NAL @@ -507,10 +505,8 @@ case bgezal_op: case bgezall_op: if (NO_R6EMU && (insn.i_format.rs || - insn.i_format.rt == bgezall_op)) { - ret = -SIGILL; - break; - } + insn.i_format.rt == bgezall_op)) + goto sigill_r2r6; regs->regs[31] = epc + 8; /* * OK we are here either because we hit a BAL @@ -556,6 +552,7 @@ /* * These are unconditional and in j_format. */ + case jalx_op: case jal_op: regs->regs[31] = regs->cp0_epc + 8; case j_op: @@ -573,7 +570,7 @@ */ case beql_op: if (NO_R6EMU) - goto sigill_r6; + goto sigill_r2r6; case beq_op: if (regs->regs[insn.i_format.rs] == regs->regs[insn.i_format.rt]) { @@ -587,7 +584,7 @@ case bnel_op: if (NO_R6EMU) - goto sigill_r6; + goto sigill_r2r6; case bne_op: if (regs->regs[insn.i_format.rs] != regs->regs[insn.i_format.rt]) { @@ -601,7 +598,7 @@ case blezl_op: /* not really i_format */ if (!insn.i_format.rt && NO_R6EMU) - goto sigill_r6; + goto sigill_r2r6; case blez_op: /* * Compact branches for R6 for the @@ -636,7 +633,7 @@ case bgtzl_op: if (!insn.i_format.rt && NO_R6EMU) - goto sigill_r6; + goto sigill_r2r6; case bgtz_op: /* * Compact branches for R6 for the @@ -843,11 +840,12 @@ return ret; sigill_dsp: - printk("%s: DSP branch but not DSP ASE - sending SIGBUS.\n", current->comm); - force_sig(SIGBUS, current); + pr_info("%s: DSP branch but not DSP ASE - sending SIGILL.\n", + current->comm); + force_sig(SIGILL, current); return -EFAULT; -sigill_r6: - pr_info("%s: R2 branch but r2-to-r6 emulator is not preset - sending SIGILL.\n", +sigill_r2r6: + pr_info("%s: R2 branch but r2-to-r6 emulator is not present - sending SIGILL.\n", current->comm); force_sig(SIGILL, current); return -EFAULT; diff -u linux-raspi2-4.4.0/arch/mips/kernel/genex.S linux-raspi2-4.4.0/arch/mips/kernel/genex.S --- linux-raspi2-4.4.0/arch/mips/kernel/genex.S +++ linux-raspi2-4.4.0/arch/mips/kernel/genex.S @@ -216,9 +216,11 @@ beq t0, t1, 2f /* Switch to IRQ stack */ - li t1, _IRQ_STACK_SIZE + li t1, _IRQ_STACK_START PTR_ADD sp, t0, t1 + /* Save task's sp on IRQ stack so that unwinding can follow it */ + LONG_S s1, 0(sp) 2: jal plat_irq_dispatch @@ -326,9 +328,11 @@ beq t0, t1, 2f /* Switch to IRQ stack */ - li t1, _IRQ_STACK_SIZE + li t1, _IRQ_STACK_START PTR_ADD sp, t0, t1 + /* Save task's sp on IRQ stack so that unwinding can follow it */ + LONG_S s1, 0(sp) 2: jalr v0 diff -u linux-raspi2-4.4.0/arch/mips/kernel/process.c linux-raspi2-4.4.0/arch/mips/kernel/process.c --- linux-raspi2-4.4.0/arch/mips/kernel/process.c +++ linux-raspi2-4.4.0/arch/mips/kernel/process.c @@ -49,9 +49,7 @@ #ifdef CONFIG_HOTPLUG_CPU void arch_cpu_idle_dead(void) { - /* What the heck is this check doing ? */ - if (!cpumask_test_cpu(smp_processor_id(), &cpu_callin_map)) - play_dead(); + play_dead(); } #endif @@ -483,31 +481,52 @@ unsigned long pc, unsigned long *ra) { + unsigned long low, high, irq_stack_high; struct mips_frame_info info; unsigned long size, ofs; + struct pt_regs *regs; int leaf; - extern void ret_from_irq(void); - extern void ret_from_exception(void); if (!stack_page) return 0; /* - * If we reached the bottom of interrupt context, - * return saved pc in pt_regs. + * IRQ stacks start at IRQ_STACK_START + * task stacks at THREAD_SIZE - 32 */ - if (pc == (unsigned long)ret_from_irq || - pc == (unsigned long)ret_from_exception) { - struct pt_regs *regs; - if (*sp >= stack_page && - *sp + sizeof(*regs) <= stack_page + THREAD_SIZE - 32) { - regs = (struct pt_regs *)*sp; - pc = regs->cp0_epc; - if (!user_mode(regs) && __kernel_text_address(pc)) { - *sp = regs->regs[29]; - *ra = regs->regs[31]; - return pc; - } + low = stack_page; + if (!preemptible() && on_irq_stack(raw_smp_processor_id(), *sp)) { + high = stack_page + IRQ_STACK_START; + irq_stack_high = high; + } else { + high = stack_page + THREAD_SIZE - 32; + irq_stack_high = 0; + } + + /* + * If we reached the top of the interrupt stack, start unwinding + * the interrupted task stack. + */ + if (unlikely(*sp == irq_stack_high)) { + unsigned long task_sp = *(unsigned long *)*sp; + + /* + * Check that the pointer saved in the IRQ stack head points to + * something within the stack of the current task + */ + if (!object_is_on_stack((void *)task_sp)) + return 0; + + /* + * Follow pointer to tasks kernel stack frame where interrupted + * state was saved. + */ + regs = (struct pt_regs *)task_sp; + pc = regs->cp0_epc; + if (!user_mode(regs) && __kernel_text_address(pc)) { + *sp = regs->regs[29]; + *ra = regs->regs[31]; + return pc; } return 0; } @@ -528,8 +547,7 @@ if (leaf < 0) return 0; - if (*sp < stack_page || - *sp + info.frame_size > stack_page + THREAD_SIZE - 32) + if (*sp < low || *sp + info.frame_size > high) return 0; if (leaf) diff -u linux-raspi2-4.4.0/arch/mips/kernel/ptrace.c linux-raspi2-4.4.0/arch/mips/kernel/ptrace.c --- linux-raspi2-4.4.0/arch/mips/kernel/ptrace.c +++ linux-raspi2-4.4.0/arch/mips/kernel/ptrace.c @@ -927,7 +927,7 @@ audit_syscall_exit(regs); if (unlikely(test_thread_flag(TIF_SYSCALL_TRACEPOINT))) - trace_sys_exit(regs, regs->regs[2]); + trace_sys_exit(regs, regs_return_value(regs)); if (test_thread_flag(TIF_SYSCALL_TRACE)) tracehook_report_syscall_exit(regs, 0); diff -u linux-raspi2-4.4.0/arch/mips/kernel/scall64-n32.S linux-raspi2-4.4.0/arch/mips/kernel/scall64-n32.S --- linux-raspi2-4.4.0/arch/mips/kernel/scall64-n32.S +++ linux-raspi2-4.4.0/arch/mips/kernel/scall64-n32.S @@ -298,7 +298,7 @@ PTR compat_sys_sched_getaffinity PTR sys_cacheflush PTR sys_cachectl - PTR sys_sysmips + PTR __sys_sysmips PTR compat_sys_io_setup /* 6200 */ PTR sys_io_destroy PTR compat_sys_io_getevents diff -u linux-raspi2-4.4.0/arch/mips/kernel/scall64-o32.S linux-raspi2-4.4.0/arch/mips/kernel/scall64-o32.S --- linux-raspi2-4.4.0/arch/mips/kernel/scall64-o32.S +++ linux-raspi2-4.4.0/arch/mips/kernel/scall64-o32.S @@ -367,7 +367,7 @@ PTR compat_sys_writev PTR sys_cacheflush PTR sys_cachectl - PTR sys_sysmips + PTR __sys_sysmips PTR sys_ni_syscall /* 4150 */ PTR sys_getsid PTR sys_fdatasync diff -u linux-raspi2-4.4.0/arch/mips/kernel/smp.c linux-raspi2-4.4.0/arch/mips/kernel/smp.c --- linux-raspi2-4.4.0/arch/mips/kernel/smp.c +++ linux-raspi2-4.4.0/arch/mips/kernel/smp.c @@ -64,6 +64,9 @@ cpumask_t cpu_core_map[NR_CPUS] __read_mostly; EXPORT_SYMBOL(cpu_core_map); +static DECLARE_COMPLETION(cpu_starting); +static DECLARE_COMPLETION(cpu_running); + /* * A logcal cpu mask containing only one VPE per core to * reduce the number of IPIs on large MT systems. @@ -174,9 +177,12 @@ cpumask_set_cpu(cpu, &cpu_coherent_mask); notify_cpu_starting(cpu); - cpumask_set_cpu(cpu, &cpu_callin_map); + /* Notify boot CPU that we're starting & ready to sync counters */ + complete(&cpu_starting); + synchronise_count_slave(cpu); + /* The CPU is running and counters synchronised, now mark it online */ set_cpu_online(cpu, true); set_cpu_sibling_map(cpu); @@ -186,4 +192,10 @@ /* + * Notify boot CPU that we're up & online and it can safely return + * from __cpu_up + */ + complete(&cpu_running); + + /* * irq will be enabled in ->smp_finish(), enabling it too early * is dangerous. @@ -242,22 +254,23 @@ { set_cpu_possible(0, true); set_cpu_online(0, true); - cpumask_set_cpu(0, &cpu_callin_map); } int __cpu_up(unsigned int cpu, struct task_struct *tidle) { mp_ops->boot_secondary(cpu, tidle); - /* - * Trust is futile. We should really have timeouts ... - */ - while (!cpumask_test_cpu(cpu, &cpu_callin_map)) { - udelay(100); - schedule(); + /* Wait for CPU to start and be ready to sync counters */ + if (!wait_for_completion_timeout(&cpu_starting, + msecs_to_jiffies(1000))) { + pr_crit("CPU%u: failed to start\n", cpu); + return -EIO; } synchronise_count_master(cpu); + + /* Wait for CPU to finish startup & mark itself online before return */ + wait_for_completion(&cpu_running); return 0; } diff -u linux-raspi2-4.4.0/arch/mips/lantiq/xway/sysctrl.c linux-raspi2-4.4.0/arch/mips/lantiq/xway/sysctrl.c --- linux-raspi2-4.4.0/arch/mips/lantiq/xway/sysctrl.c +++ linux-raspi2-4.4.0/arch/mips/lantiq/xway/sysctrl.c @@ -469,8 +469,8 @@ panic("Failed to load xbar nodes from devicetree"); if (of_address_to_resource(np_xbar, 0, &res_xbar)) panic("Failed to get xbar resources"); - if (request_mem_region(res_xbar.start, resource_size(&res_xbar), - res_xbar.name) < 0) + if (!request_mem_region(res_xbar.start, resource_size(&res_xbar), + res_xbar.name)) panic("Failed to get xbar resources"); ltq_xbar_membase = ioremap_nocache(res_xbar.start, diff -u linux-raspi2-4.4.0/arch/mips/math-emu/cp1emu.c linux-raspi2-4.4.0/arch/mips/math-emu/cp1emu.c --- linux-raspi2-4.4.0/arch/mips/math-emu/cp1emu.c +++ linux-raspi2-4.4.0/arch/mips/math-emu/cp1emu.c @@ -2360,7 +2360,6 @@ break; default: /* Reserved R6 ops */ - pr_err("Reserved MIPS R6 CMP.condn.S operation\n"); return SIGILL; } } @@ -2434,7 +2433,6 @@ break; default: /* Reserved R6 ops */ - pr_err("Reserved MIPS R6 CMP.condn.D operation\n"); return SIGILL; } } @@ -2496,6 +2494,35 @@ return 0; } +/* + * Emulate FPU instructions. + * + * If we use FPU hardware, then we have been typically called to handle + * an unimplemented operation, such as where an operand is a NaN or + * denormalized. In that case exit the emulation loop after a single + * iteration so as to let hardware execute any subsequent instructions. + * + * If we have no FPU hardware or it has been disabled, then continue + * emulating floating-point instructions until one of these conditions + * has occurred: + * + * - a non-FPU instruction has been encountered, + * + * - an attempt to emulate has ended with a signal, + * + * - the ISA mode has been switched. + * + * We need to terminate the emulation loop if we got switched to the + * MIPS16 mode, whether supported or not, so that we do not attempt + * to emulate a MIPS16 instruction as a regular MIPS FPU instruction. + * Similarly if we got switched to the microMIPS mode and only the + * regular MIPS mode is supported, so that we do not attempt to emulate + * a microMIPS instruction as a regular MIPS FPU instruction. Or if + * we got switched to the regular MIPS mode and only the microMIPS mode + * is supported, so that we do not attempt to emulate a regular MIPS + * instruction that should cause an Address Error exception instead. + * For simplicity we always terminate upon an ISA mode switch. + */ int fpu_emulator_cop1Handler(struct pt_regs *xcp, struct mips_fpu_struct *ctx, int has_fpu, void *__user *fault_addr) { @@ -2581,6 +2608,15 @@ break; if (sig) break; + /* + * We have to check for the ISA bit explicitly here, + * because `get_isa16_mode' may return 0 if support + * for code compression has been globally disabled, + * or otherwise we may produce the wrong signal or + * even proceed successfully where we must not. + */ + if ((xcp->cp0_epc ^ prevepc) & 0x1) + break; cond_resched(); } while (xcp->cp0_epc > prevepc); diff -u linux-raspi2-4.4.0/arch/mips/ralink/rt3883.c linux-raspi2-4.4.0/arch/mips/ralink/rt3883.c --- linux-raspi2-4.4.0/arch/mips/ralink/rt3883.c +++ linux-raspi2-4.4.0/arch/mips/ralink/rt3883.c @@ -146,3 +146,3 @@ - ralink_soc == RT3883_SOC; + ralink_soc = RT3883_SOC; } diff -u linux-raspi2-4.4.0/arch/parisc/kernel/syscall.S linux-raspi2-4.4.0/arch/parisc/kernel/syscall.S --- linux-raspi2-4.4.0/arch/parisc/kernel/syscall.S +++ linux-raspi2-4.4.0/arch/parisc/kernel/syscall.S @@ -479,11 +479,6 @@ comiclr,>> __NR_lws_entries, %r20, %r0 b,n lws_exit_nosys - /* WARNING: Trashing sr2 and sr3 */ - mfsp %sr7,%r1 /* get userspace into sr3 */ - mtsp %r1,%sr3 - mtsp %r0,%sr2 /* get kernel space into sr2 */ - /* Load table start */ ldil L%lws_table, %r1 ldo R%lws_table(%r1), %r28 /* Scratch use of r28 */ @@ -632,9 +627,9 @@ stw %r1, 4(%sr2,%r20) #endif /* The load and store could fail */ -1: ldw,ma 0(%sr3,%r26), %r28 +1: ldw,ma 0(%r26), %r28 sub,<> %r28, %r25, %r0 -2: stw,ma %r24, 0(%sr3,%r26) +2: stw,ma %r24, 0(%r26) /* Free lock */ stw,ma %r20, 0(%sr2,%r20) #if ENABLE_LWS_DEBUG @@ -711,9 +706,9 @@ nop /* 8bit load */ -4: ldb 0(%sr3,%r25), %r25 +4: ldb 0(%r25), %r25 b cas2_lock_start -5: ldb 0(%sr3,%r24), %r24 +5: ldb 0(%r24), %r24 nop nop nop @@ -721,9 +716,9 @@ nop /* 16bit load */ -6: ldh 0(%sr3,%r25), %r25 +6: ldh 0(%r25), %r25 b cas2_lock_start -7: ldh 0(%sr3,%r24), %r24 +7: ldh 0(%r24), %r24 nop nop nop @@ -731,9 +726,9 @@ nop /* 32bit load */ -8: ldw 0(%sr3,%r25), %r25 +8: ldw 0(%r25), %r25 b cas2_lock_start -9: ldw 0(%sr3,%r24), %r24 +9: ldw 0(%r24), %r24 nop nop nop @@ -742,14 +737,14 @@ /* 64bit load */ #ifdef CONFIG_64BIT -10: ldd 0(%sr3,%r25), %r25 -11: ldd 0(%sr3,%r24), %r24 +10: ldd 0(%r25), %r25 +11: ldd 0(%r24), %r24 #else - /* Load new value into r22/r23 - high/low */ -10: ldw 0(%sr3,%r25), %r22 -11: ldw 4(%sr3,%r25), %r23 + /* Load old value into r22/r23 - high/low */ +10: ldw 0(%r25), %r22 +11: ldw 4(%r25), %r23 /* Load new value into fr4 for atomic store later */ -12: flddx 0(%sr3,%r24), %fr4 +12: flddx 0(%r24), %fr4 #endif cas2_lock_start: @@ -799,30 +794,30 @@ ldo 1(%r0),%r28 /* 8bit CAS */ -13: ldb,ma 0(%sr3,%r26), %r29 +13: ldb,ma 0(%r26), %r29 sub,= %r29, %r25, %r0 b,n cas2_end -14: stb,ma %r24, 0(%sr3,%r26) +14: stb,ma %r24, 0(%r26) b cas2_end copy %r0, %r28 nop nop /* 16bit CAS */ -15: ldh,ma 0(%sr3,%r26), %r29 +15: ldh,ma 0(%r26), %r29 sub,= %r29, %r25, %r0 b,n cas2_end -16: sth,ma %r24, 0(%sr3,%r26) +16: sth,ma %r24, 0(%r26) b cas2_end copy %r0, %r28 nop nop /* 32bit CAS */ -17: ldw,ma 0(%sr3,%r26), %r29 +17: ldw,ma 0(%r26), %r29 sub,= %r29, %r25, %r0 b,n cas2_end -18: stw,ma %r24, 0(%sr3,%r26) +18: stw,ma %r24, 0(%r26) b cas2_end copy %r0, %r28 nop @@ -830,22 +825,22 @@ /* 64bit CAS */ #ifdef CONFIG_64BIT -19: ldd,ma 0(%sr3,%r26), %r29 +19: ldd,ma 0(%r26), %r29 sub,*= %r29, %r25, %r0 b,n cas2_end -20: std,ma %r24, 0(%sr3,%r26) +20: std,ma %r24, 0(%r26) copy %r0, %r28 #else /* Compare first word */ -19: ldw,ma 0(%sr3,%r26), %r29 +19: ldw 0(%r26), %r29 sub,= %r29, %r22, %r0 b,n cas2_end /* Compare second word */ -20: ldw,ma 4(%sr3,%r26), %r29 +20: ldw 4(%r26), %r29 sub,= %r29, %r23, %r0 b,n cas2_end /* Perform the store */ -21: fstdx %fr4, 0(%sr3,%r26) +21: fstdx %fr4, 0(%r26) copy %r0, %r28 #endif diff -u linux-raspi2-4.4.0/arch/parisc/mm/fault.c linux-raspi2-4.4.0/arch/parisc/mm/fault.c --- linux-raspi2-4.4.0/arch/parisc/mm/fault.c +++ linux-raspi2-4.4.0/arch/parisc/mm/fault.c @@ -303,7 +303,7 @@ case 15: /* Data TLB miss fault/Data page fault */ /* send SIGSEGV when outside of vma */ if (!vma || - address < vma->vm_start || address > vma->vm_end) { + address < vma->vm_start || address >= vma->vm_end) { si.si_signo = SIGSEGV; si.si_code = SEGV_MAPERR; break; diff -u linux-raspi2-4.4.0/arch/powerpc/include/asm/atomic.h linux-raspi2-4.4.0/arch/powerpc/include/asm/atomic.h --- linux-raspi2-4.4.0/arch/powerpc/include/asm/atomic.h +++ linux-raspi2-4.4.0/arch/powerpc/include/asm/atomic.h @@ -495,7 +495,7 @@ * Atomically increments @v by 1, so long as @v is non-zero. * Returns non-zero if @v was non-zero, and zero otherwise. */ -static __inline__ long atomic64_inc_not_zero(atomic64_t *v) +static __inline__ int atomic64_inc_not_zero(atomic64_t *v) { long t1, t2; @@ -514,7 +514,7 @@ : "r" (&v->counter) : "cc", "xer", "memory"); - return t1; + return t1 != 0; } #endif /* __powerpc64__ */ diff -u linux-raspi2-4.4.0/arch/powerpc/include/asm/kvm_host.h linux-raspi2-4.4.0/arch/powerpc/include/asm/kvm_host.h --- linux-raspi2-4.4.0/arch/powerpc/include/asm/kvm_host.h +++ linux-raspi2-4.4.0/arch/powerpc/include/asm/kvm_host.h @@ -297,6 +297,7 @@ u32 arch_compat; ulong pcr; ulong dpdes; /* doorbell state (POWER8) */ + ulong vtb; /* virtual timebase */ ulong conferring_threads; }; @@ -473,7 +474,6 @@ ulong purr; ulong spurr; ulong ic; - ulong vtb; ulong dscr; ulong amr; ulong uamor; diff -u linux-raspi2-4.4.0/arch/powerpc/include/asm/reg.h linux-raspi2-4.4.0/arch/powerpc/include/asm/reg.h --- linux-raspi2-4.4.0/arch/powerpc/include/asm/reg.h +++ linux-raspi2-4.4.0/arch/powerpc/include/asm/reg.h @@ -1237,7 +1237,7 @@ " .llong 0\n" \ ".previous" \ : "=r" (rval) \ - : "i" (CPU_FTR_CELL_TB_BUG), "i" (SPRN_TBRL)); \ + : "i" (CPU_FTR_CELL_TB_BUG), "i" (SPRN_TBRL) : "cr0"); \ rval;}) #else #define mftb() ({unsigned long rval; \ reverted: --- linux-raspi2-4.4.0/arch/powerpc/include/asm/topology.h +++ linux-raspi2-4.4.0.orig/arch/powerpc/include/asm/topology.h @@ -44,22 +44,8 @@ extern int sysfs_add_device_to_node(struct device *dev, int nid); extern void sysfs_remove_device_from_node(struct device *dev, int nid); -static inline int early_cpu_to_node(int cpu) -{ - int nid; - - nid = numa_cpu_lookup_table[cpu]; - - /* - * Fall back to node 0 if nid is unset (it should be, except bugs). - * This allows callers to safely do NODE_DATA(early_cpu_to_node(cpu)). - */ - return (nid < 0) ? 0 : nid; -} #else -static inline int early_cpu_to_node(int cpu) { return 0; } - static inline void dump_numa_cpu_topology(void) {} static inline int sysfs_add_device_to_node(struct device *dev, int nid) diff -u linux-raspi2-4.4.0/arch/powerpc/kernel/align.c linux-raspi2-4.4.0/arch/powerpc/kernel/align.c --- linux-raspi2-4.4.0/arch/powerpc/kernel/align.c +++ linux-raspi2-4.4.0/arch/powerpc/kernel/align.c @@ -236,6 +236,28 @@ #define SWIZ_PTR(p) ((unsigned char __user *)((p) ^ swiz)) +#define __get_user_or_set_dar(_regs, _dest, _addr) \ + ({ \ + int rc = 0; \ + typeof(_addr) __addr = (_addr); \ + if (__get_user_inatomic(_dest, __addr)) { \ + _regs->dar = (unsigned long)__addr; \ + rc = -EFAULT; \ + } \ + rc; \ + }) + +#define __put_user_or_set_dar(_regs, _src, _addr) \ + ({ \ + int rc = 0; \ + typeof(_addr) __addr = (_addr); \ + if (__put_user_inatomic(_src, __addr)) { \ + _regs->dar = (unsigned long)__addr; \ + rc = -EFAULT; \ + } \ + rc; \ + }) + static int emulate_multiple(struct pt_regs *regs, unsigned char __user *addr, unsigned int reg, unsigned int nb, unsigned int flags, unsigned int instr, @@ -264,9 +286,10 @@ } else { unsigned long pc = regs->nip ^ (swiz & 4); - if (__get_user_inatomic(instr, - (unsigned int __user *)pc)) + if (__get_user_or_set_dar(regs, instr, + (unsigned int __user *)pc)) return -EFAULT; + if (swiz == 0 && (flags & SW)) instr = cpu_to_le32(instr); nb = (instr >> 11) & 0x1f; @@ -310,31 +333,31 @@ ((nb0 + 3) / 4) * sizeof(unsigned long)); for (i = 0; i < nb; ++i, ++p) - if (__get_user_inatomic(REG_BYTE(rptr, i ^ bswiz), - SWIZ_PTR(p))) + if (__get_user_or_set_dar(regs, REG_BYTE(rptr, i ^ bswiz), + SWIZ_PTR(p))) return -EFAULT; if (nb0 > 0) { rptr = ®s->gpr[0]; addr += nb; for (i = 0; i < nb0; ++i, ++p) - if (__get_user_inatomic(REG_BYTE(rptr, - i ^ bswiz), - SWIZ_PTR(p))) + if (__get_user_or_set_dar(regs, + REG_BYTE(rptr, i ^ bswiz), + SWIZ_PTR(p))) return -EFAULT; } } else { for (i = 0; i < nb; ++i, ++p) - if (__put_user_inatomic(REG_BYTE(rptr, i ^ bswiz), - SWIZ_PTR(p))) + if (__put_user_or_set_dar(regs, REG_BYTE(rptr, i ^ bswiz), + SWIZ_PTR(p))) return -EFAULT; if (nb0 > 0) { rptr = ®s->gpr[0]; addr += nb; for (i = 0; i < nb0; ++i, ++p) - if (__put_user_inatomic(REG_BYTE(rptr, - i ^ bswiz), - SWIZ_PTR(p))) + if (__put_user_or_set_dar(regs, + REG_BYTE(rptr, i ^ bswiz), + SWIZ_PTR(p))) return -EFAULT; } } @@ -346,29 +369,32 @@ * Only POWER6 has these instructions, and it does true little-endian, * so we don't need the address swizzling. */ -static int emulate_fp_pair(unsigned char __user *addr, unsigned int reg, - unsigned int flags) +static int emulate_fp_pair(struct pt_regs *regs, unsigned char __user *addr, + unsigned int reg, unsigned int flags) { char *ptr0 = (char *) ¤t->thread.TS_FPR(reg); char *ptr1 = (char *) ¤t->thread.TS_FPR(reg+1); - int i, ret, sw = 0; + int i, sw = 0; if (reg & 1) return 0; /* invalid form: FRS/FRT must be even */ if (flags & SW) sw = 7; - ret = 0; + for (i = 0; i < 8; ++i) { if (!(flags & ST)) { - ret |= __get_user(ptr0[i^sw], addr + i); - ret |= __get_user(ptr1[i^sw], addr + i + 8); + if (__get_user_or_set_dar(regs, ptr0[i^sw], addr + i)) + return -EFAULT; + if (__get_user_or_set_dar(regs, ptr1[i^sw], addr + i + 8)) + return -EFAULT; } else { - ret |= __put_user(ptr0[i^sw], addr + i); - ret |= __put_user(ptr1[i^sw], addr + i + 8); + if (__put_user_or_set_dar(regs, ptr0[i^sw], addr + i)) + return -EFAULT; + if (__put_user_or_set_dar(regs, ptr1[i^sw], addr + i + 8)) + return -EFAULT; } } - if (ret) - return -EFAULT; + return 1; /* exception handled and fixed up */ } @@ -378,24 +404,27 @@ { char *ptr0 = (char *)®s->gpr[reg]; char *ptr1 = (char *)®s->gpr[reg+1]; - int i, ret, sw = 0; + int i, sw = 0; if (reg & 1) return 0; /* invalid form: GPR must be even */ if (flags & SW) sw = 7; - ret = 0; + for (i = 0; i < 8; ++i) { if (!(flags & ST)) { - ret |= __get_user(ptr0[i^sw], addr + i); - ret |= __get_user(ptr1[i^sw], addr + i + 8); + if (__get_user_or_set_dar(regs, ptr0[i^sw], addr + i)) + return -EFAULT; + if (__get_user_or_set_dar(regs, ptr1[i^sw], addr + i + 8)) + return -EFAULT; } else { - ret |= __put_user(ptr0[i^sw], addr + i); - ret |= __put_user(ptr1[i^sw], addr + i + 8); + if (__put_user_or_set_dar(regs, ptr0[i^sw], addr + i)) + return -EFAULT; + if (__put_user_or_set_dar(regs, ptr1[i^sw], addr + i + 8)) + return -EFAULT; } } - if (ret) - return -EFAULT; + return 1; /* exception handled and fixed up */ } #endif /* CONFIG_PPC64 */ @@ -688,9 +717,14 @@ for (j = 0; j < length; j += elsize) { for (i = 0; i < elsize; ++i) { if (flags & ST) - ret |= __put_user(ptr[i^sw], addr + i); + ret = __put_user_or_set_dar(regs, ptr[i^sw], + addr + i); else - ret |= __get_user(ptr[i^sw], addr + i); + ret = __get_user_or_set_dar(regs, ptr[i^sw], + addr + i); + + if (ret) + return ret; } ptr += elsize; #ifdef __LITTLE_ENDIAN__ @@ -740,7 +774,7 @@ unsigned int dsisr; unsigned char __user *addr; unsigned long p, swiz; - int ret, i; + int i; union data { u64 ll; double dd; @@ -923,7 +957,7 @@ if (flags & F) { /* Special case for 16-byte FP loads and stores */ PPC_WARN_ALIGNMENT(fp_pair, regs); - return emulate_fp_pair(addr, reg, flags); + return emulate_fp_pair(regs, addr, reg, flags); } else { #ifdef CONFIG_PPC64 /* Special case for 16-byte loads and stores */ @@ -953,15 +987,12 @@ } data.ll = 0; - ret = 0; p = (unsigned long)addr; for (i = 0; i < nb; i++) - ret |= __get_user_inatomic(data.v[start + i], - SWIZ_PTR(p++)); - - if (unlikely(ret)) - return -EFAULT; + if (__get_user_or_set_dar(regs, data.v[start + i], + SWIZ_PTR(p++))) + return -EFAULT; } else if (flags & F) { data.ll = current->thread.TS_FPR(reg); @@ -1033,15 +1064,13 @@ break; } - ret = 0; p = (unsigned long)addr; for (i = 0; i < nb; i++) - ret |= __put_user_inatomic(data.v[start + i], - SWIZ_PTR(p++)); + if (__put_user_or_set_dar(regs, data.v[start + i], + SWIZ_PTR(p++))) + return -EFAULT; - if (unlikely(ret)) - return -EFAULT; } else if (flags & F) current->thread.TS_FPR(reg) = data.ll; else diff -u linux-raspi2-4.4.0/arch/powerpc/kernel/asm-offsets.c linux-raspi2-4.4.0/arch/powerpc/kernel/asm-offsets.c --- linux-raspi2-4.4.0/arch/powerpc/kernel/asm-offsets.c +++ linux-raspi2-4.4.0/arch/powerpc/kernel/asm-offsets.c @@ -519,7 +519,6 @@ DEFINE(VCPU_PURR, offsetof(struct kvm_vcpu, arch.purr)); DEFINE(VCPU_SPURR, offsetof(struct kvm_vcpu, arch.spurr)); DEFINE(VCPU_IC, offsetof(struct kvm_vcpu, arch.ic)); - DEFINE(VCPU_VTB, offsetof(struct kvm_vcpu, arch.vtb)); DEFINE(VCPU_DSCR, offsetof(struct kvm_vcpu, arch.dscr)); DEFINE(VCPU_AMR, offsetof(struct kvm_vcpu, arch.amr)); DEFINE(VCPU_UAMOR, offsetof(struct kvm_vcpu, arch.uamor)); @@ -572,6 +571,7 @@ DEFINE(VCORE_LPCR, offsetof(struct kvmppc_vcore, lpcr)); DEFINE(VCORE_PCR, offsetof(struct kvmppc_vcore, pcr)); DEFINE(VCORE_DPDES, offsetof(struct kvmppc_vcore, dpdes)); + DEFINE(VCORE_VTB, offsetof(struct kvmppc_vcore, vtb)); DEFINE(VCPU_SLB_E, offsetof(struct kvmppc_slb, orige)); DEFINE(VCPU_SLB_V, offsetof(struct kvmppc_slb, origv)); DEFINE(VCPU_SLB_SIZE, sizeof(struct kvmppc_slb)); diff -u linux-raspi2-4.4.0/arch/powerpc/kernel/setup_64.c linux-raspi2-4.4.0/arch/powerpc/kernel/setup_64.c --- linux-raspi2-4.4.0/arch/powerpc/kernel/setup_64.c +++ linux-raspi2-4.4.0/arch/powerpc/kernel/setup_64.c @@ -751,7 +751,7 @@ static void * __init pcpu_fc_alloc(unsigned int cpu, size_t size, size_t align) { - return __alloc_bootmem_node(NODE_DATA(early_cpu_to_node(cpu)), size, align, + return __alloc_bootmem_node(NODE_DATA(cpu_to_node(cpu)), size, align, __pa(MAX_DMA_ADDRESS)); } @@ -762,7 +762,7 @@ static int pcpu_cpu_distance(unsigned int from, unsigned int to) { - if (early_cpu_to_node(from) == early_cpu_to_node(to)) + if (cpu_to_node(from) == cpu_to_node(to)) return LOCAL_DISTANCE; else return REMOTE_DISTANCE; diff -u linux-raspi2-4.4.0/arch/powerpc/kvm/book3s_emulate.c linux-raspi2-4.4.0/arch/powerpc/kvm/book3s_emulate.c --- linux-raspi2-4.4.0/arch/powerpc/kvm/book3s_emulate.c +++ linux-raspi2-4.4.0/arch/powerpc/kvm/book3s_emulate.c @@ -580,7 +580,7 @@ *spr_val = vcpu->arch.spurr; break; case SPRN_VTB: - *spr_val = vcpu->arch.vtb; + *spr_val = to_book3s(vcpu)->vtb; break; case SPRN_IC: *spr_val = vcpu->arch.ic; diff -u linux-raspi2-4.4.0/arch/powerpc/kvm/book3s_hv.c linux-raspi2-4.4.0/arch/powerpc/kvm/book3s_hv.c --- linux-raspi2-4.4.0/arch/powerpc/kvm/book3s_hv.c +++ linux-raspi2-4.4.0/arch/powerpc/kvm/book3s_hv.c @@ -1101,6 +1101,9 @@ case KVM_REG_PPC_DPDES: *val = get_reg_val(id, vcpu->arch.vcore->dpdes); break; + case KVM_REG_PPC_VTB: + *val = get_reg_val(id, vcpu->arch.vcore->vtb); + break; case KVM_REG_PPC_DAWR: *val = get_reg_val(id, vcpu->arch.dawr); break; @@ -1296,6 +1299,9 @@ case KVM_REG_PPC_DPDES: vcpu->arch.vcore->dpdes = set_reg_val(id, *val); break; + case KVM_REG_PPC_VTB: + vcpu->arch.vcore->vtb = set_reg_val(id, *val); + break; case KVM_REG_PPC_DAWR: vcpu->arch.dawr = set_reg_val(id, *val); break; @@ -2122,9 +2128,11 @@ pvc->lpcr != vc->lpcr) return false; - /* P8 guest with > 1 thread per core would see wrong TIR value */ - if (cpu_has_feature(CPU_FTR_ARCH_207S) && - (vc->num_threads > 1 || pvc->num_threads > 1)) + /* + * P8 guests can't do piggybacking, because then the + * VTB would be shared between the vcpus. + */ + if (cpu_has_feature(CPU_FTR_ARCH_207S)) return false; n_thr = cip->subcore_threads[sub] + pvc->num_threads; @@ -2688,6 +2696,10 @@ { int r; int srcu_idx; + unsigned long ebb_regs[3] = {}; /* shut up GCC */ + unsigned long user_tar = 0; + unsigned long proc_fscr = 0; + unsigned int user_vrsave; if (!vcpu->arch.sane) { run->exit_reason = KVM_EXIT_INTERNAL_ERROR; @@ -2708,10 +2720,11 @@ run->fail_entry.hardware_entry_failure_reason = 0; return -EINVAL; } + /* Enable TM so we can read the TM SPRs */ + mtmsr(mfmsr() | MSR_TM); current->thread.tm_tfhar = mfspr(SPRN_TFHAR); current->thread.tm_tfiar = mfspr(SPRN_TFIAR); current->thread.tm_texasr = mfspr(SPRN_TEXASR); - current->thread.regs->msr &= ~MSR_TM; } #endif @@ -2737,6 +2750,17 @@ flush_fp_to_thread(current); flush_altivec_to_thread(current); flush_vsx_to_thread(current); + + /* Save userspace EBB and other register values */ + if (cpu_has_feature(CPU_FTR_ARCH_207S)) { + ebb_regs[0] = mfspr(SPRN_EBBHR); + ebb_regs[1] = mfspr(SPRN_EBBRR); + ebb_regs[2] = mfspr(SPRN_BESCR); + user_tar = mfspr(SPRN_TAR); + proc_fscr = mfspr(SPRN_FSCR); + } + user_vrsave = mfspr(SPRN_VRSAVE); + vcpu->arch.wqp = &vcpu->arch.vcore->wq; vcpu->arch.pgdir = current->mm->pgd; vcpu->arch.state = KVMPPC_VCPU_BUSY_IN_HOST; @@ -2758,6 +2782,29 @@ } } while (is_kvmppc_resume_guest(r)); + /* Restore userspace EBB and other register values */ + if (cpu_has_feature(CPU_FTR_ARCH_207S)) { + mtspr(SPRN_EBBHR, ebb_regs[0]); + mtspr(SPRN_EBBRR, ebb_regs[1]); + mtspr(SPRN_BESCR, ebb_regs[2]); + mtspr(SPRN_TAR, user_tar); + mtspr(SPRN_FSCR, proc_fscr); + } + mtspr(SPRN_VRSAVE, user_vrsave); + + /* + * Since we don't do lazy TM reload, we need to reload + * the TM registers here. + */ +#ifdef CONFIG_PPC_TRANSACTIONAL_MEM + if (cpu_has_feature(CPU_FTR_TM) && current->thread.regs && + (current->thread.regs->msr & MSR_TM)) { + mtspr(SPRN_TFHAR, current->thread.tm_tfhar); + mtspr(SPRN_TFIAR, current->thread.tm_tfiar); + mtspr(SPRN_TEXASR, current->thread.tm_texasr); + } +#endif + out: vcpu->arch.state = KVMPPC_VCPU_NOTREADY; atomic_dec(&vcpu->kvm->arch.vcpus_running); diff -u linux-raspi2-4.4.0/arch/powerpc/kvm/book3s_hv_rmhandlers.S linux-raspi2-4.4.0/arch/powerpc/kvm/book3s_hv_rmhandlers.S --- linux-raspi2-4.4.0/arch/powerpc/kvm/book3s_hv_rmhandlers.S +++ linux-raspi2-4.4.0/arch/powerpc/kvm/book3s_hv_rmhandlers.S @@ -37,6 +37,13 @@ #define NAPPING_CEDE 1 #define NAPPING_NOVCPU 2 +/* Stack frame offsets for kvmppc_hv_entry */ +#define SFS 112 +#define STACK_SLOT_TRAP (SFS-4) +#define STACK_SLOT_CIABR (SFS-16) +#define STACK_SLOT_DAWR (SFS-24) +#define STACK_SLOT_DAWRX (SFS-32) + /* * Call kvmppc_hv_entry in real mode. * Must be called with interrupts hard-disabled. @@ -275,10 +282,10 @@ bl kvmhv_accumulate_time #endif 13: mr r3, r12 - stw r12, 112-4(r1) + stw r12, STACK_SLOT_TRAP(r1) bl kvmhv_commence_exit nop - lwz r12, 112-4(r1) + lwz r12, STACK_SLOT_TRAP(r1) b kvmhv_switch_to_host /* @@ -508,7 +515,7 @@ */ mflr r0 std r0, PPC_LR_STKOFF(r1) - stdu r1, -112(r1) + stdu r1, -SFS(r1) /* Save R1 in the PACA */ std r1, HSTATE_HOST_R1(r13) @@ -615,9 +622,11 @@ 38: BEGIN_FTR_SECTION - /* DPDES is shared between threads */ + /* DPDES and VTB are shared between threads */ ld r8, VCORE_DPDES(r5) + ld r7, VCORE_VTB(r5) mtspr SPRN_DPDES, r8 + mtspr SPRN_VTB, r7 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_207S) /* Mark the subcore state as inside guest */ @@ -667,6 +676,16 @@ mtspr SPRN_PURR,r7 mtspr SPRN_SPURR,r8 + /* Save host values of some registers */ +BEGIN_FTR_SECTION + mfspr r5, SPRN_CIABR + mfspr r6, SPRN_DAWR + mfspr r7, SPRN_DAWRX + std r5, STACK_SLOT_CIABR(r1) + std r6, STACK_SLOT_DAWR(r1) + std r7, STACK_SLOT_DAWRX(r1) +END_FTR_SECTION_IFSET(CPU_FTR_ARCH_207S) + BEGIN_FTR_SECTION /* Set partition DABR */ /* Do this before re-enabling PMU to avoid P7 DABR corruption bug */ @@ -777,10 +796,8 @@ mtspr SPRN_CIABR, r7 mtspr SPRN_TAR, r8 ld r5, VCPU_IC(r4) - ld r6, VCPU_VTB(r4) - mtspr SPRN_IC, r5 - mtspr SPRN_VTB, r6 ld r8, VCPU_EBBHR(r4) + mtspr SPRN_IC, r5 mtspr SPRN_EBBHR, r8 ld r5, VCPU_EBBRR(r4) ld r6, VCPU_BESCR(r4) @@ -1261,10 +1278,8 @@ stw r6, VCPU_PSPB(r9) std r7, VCPU_FSCR(r9) mfspr r5, SPRN_IC - mfspr r6, SPRN_VTB mfspr r7, SPRN_TAR std r5, VCPU_IC(r9) - std r6, VCPU_VTB(r9) std r7, VCPU_TAR(r9) mfspr r8, SPRN_EBBHR std r8, VCPU_EBBHR(r9) @@ -1290,8 +1305,7 @@ */ li r0, 0 mtspr SPRN_IAMR, r0 - mtspr SPRN_CIABR, r0 - mtspr SPRN_DAWRX, r0 + mtspr SPRN_PSPB, r0 mtspr SPRN_TCSCR, r0 mtspr SPRN_WORT, r0 /* Set MMCRS to 1<<31 to freeze and disable the SPMC counters */ @@ -1307,6 +1321,7 @@ std r6,VCPU_UAMOR(r9) li r6,0 mtspr SPRN_AMR,r6 + mtspr SPRN_UAMOR, r6 /* Switch DSCR back to host value */ mfspr r8, SPRN_DSCR @@ -1448,6 +1463,16 @@ slbia ptesync + /* Restore host values of some registers */ +BEGIN_FTR_SECTION + ld r5, STACK_SLOT_CIABR(r1) + ld r6, STACK_SLOT_DAWR(r1) + ld r7, STACK_SLOT_DAWRX(r1) + mtspr SPRN_CIABR, r5 + mtspr SPRN_DAWR, r6 + mtspr SPRN_DAWRX, r7 +END_FTR_SECTION_IFSET(CPU_FTR_ARCH_207S) + /* * POWER7/POWER8 guest -> host partition switch code. * We don't have to lock against tlbies but we do @@ -1491,9 +1516,11 @@ isync BEGIN_FTR_SECTION - /* DPDES is shared between threads */ + /* DPDES and VTB are shared between threads */ mfspr r7, SPRN_DPDES + mfspr r8, SPRN_VTB std r7, VCORE_DPDES(r5) + std r8, VCORE_VTB(r5) /* clear DPDES so we don't get guest doorbells in the host */ li r8, 0 mtspr SPRN_DPDES, r8 @@ -1580,8 +1607,8 @@ li r0, KVM_GUEST_MODE_NONE stb r0, HSTATE_IN_GUEST(r13) - ld r0, 112+PPC_LR_STKOFF(r1) - addi r1, r1, 112 + ld r0, SFS+PPC_LR_STKOFF(r1) + addi r1, r1, SFS mtlr r0 blr diff -u linux-raspi2-4.4.0/arch/powerpc/kvm/book3s_pr.c linux-raspi2-4.4.0/arch/powerpc/kvm/book3s_pr.c --- linux-raspi2-4.4.0/arch/powerpc/kvm/book3s_pr.c +++ linux-raspi2-4.4.0/arch/powerpc/kvm/book3s_pr.c @@ -226,7 +226,7 @@ */ vcpu->arch.purr += get_tb() - vcpu->arch.entry_tb; vcpu->arch.spurr += get_tb() - vcpu->arch.entry_tb; - vcpu->arch.vtb += get_vtb() - vcpu->arch.entry_vtb; + to_book3s(vcpu)->vtb += get_vtb() - vcpu->arch.entry_vtb; if (cpu_has_feature(CPU_FTR_ARCH_207S)) vcpu->arch.ic += mfspr(SPRN_IC) - vcpu->arch.entry_ic; svcpu->in_use = false; @@ -1325,6 +1325,9 @@ case KVM_REG_PPC_HIOR: *val = get_reg_val(id, to_book3s(vcpu)->hior); break; + case KVM_REG_PPC_VTB: + *val = get_reg_val(id, to_book3s(vcpu)->vtb); + break; case KVM_REG_PPC_LPCR: case KVM_REG_PPC_LPCR_64: /* @@ -1361,6 +1364,9 @@ to_book3s(vcpu)->hior = set_reg_val(id, *val); to_book3s(vcpu)->hior_explicit = true; break; + case KVM_REG_PPC_VTB: + to_book3s(vcpu)->vtb = set_reg_val(id, *val); + break; case KVM_REG_PPC_LPCR: case KVM_REG_PPC_LPCR_64: kvmppc_set_lpcr_pr(vcpu, set_reg_val(id, *val)); diff -u linux-raspi2-4.4.0/arch/powerpc/lib/sstep.c linux-raspi2-4.4.0/arch/powerpc/lib/sstep.c --- linux-raspi2-4.4.0/arch/powerpc/lib/sstep.c +++ linux-raspi2-4.4.0/arch/powerpc/lib/sstep.c @@ -687,8 +687,10 @@ case 19: switch ((instr >> 1) & 0x3ff) { case 0: /* mcrf */ - rd = (instr >> 21) & 0x1c; - ra = (instr >> 16) & 0x1c; + rd = 7 - ((instr >> 23) & 0x7); + ra = 7 - ((instr >> 18) & 0x7); + rd *= 4; + ra *= 4; val = (regs->ccr >> ra) & 0xf; regs->ccr = (regs->ccr & ~(0xfUL << rd)) | (val << rd); goto instr_done; @@ -967,6 +969,19 @@ #endif case 19: /* mfcr */ + if ((instr >> 20) & 1) { + imm = 0xf0000000UL; + for (sh = 0; sh < 8; ++sh) { + if (instr & (0x80000 >> sh)) { + regs->gpr[rd] = regs->ccr & imm; + break; + } + imm >>= 4; + } + + goto instr_done; + } + regs->gpr[rd] = regs->ccr; regs->gpr[rd] &= 0xffffffffUL; goto instr_done; diff -u linux-raspi2-4.4.0/arch/s390/include/asm/mmu.h linux-raspi2-4.4.0/arch/s390/include/asm/mmu.h --- linux-raspi2-4.4.0/arch/s390/include/asm/mmu.h +++ linux-raspi2-4.4.0/arch/s390/include/asm/mmu.h @@ -5,6 +5,7 @@ #include typedef struct { + spinlock_t lock; cpumask_t cpu_attach_mask; atomic_t attach_count; unsigned int flush_mm; @@ -23,6 +24,7 @@ } mm_context_t; #define INIT_MM_CONTEXT(name) \ + .context.lock = __SPIN_LOCK_UNLOCKED(name.context.lock), \ .context.list_lock = __SPIN_LOCK_UNLOCKED(name.context.list_lock), \ .context.pgtable_list = LIST_HEAD_INIT(name.context.pgtable_list), \ .context.gmap_list = LIST_HEAD_INIT(name.context.gmap_list), diff -u linux-raspi2-4.4.0/arch/s390/include/asm/mmu_context.h linux-raspi2-4.4.0/arch/s390/include/asm/mmu_context.h --- linux-raspi2-4.4.0/arch/s390/include/asm/mmu_context.h +++ linux-raspi2-4.4.0/arch/s390/include/asm/mmu_context.h @@ -15,6 +15,7 @@ static inline int init_new_context(struct task_struct *tsk, struct mm_struct *mm) { + spin_lock_init(&mm->context.lock); spin_lock_init(&mm->context.list_lock); INIT_LIST_HEAD(&mm->context.pgtable_list); INIT_LIST_HEAD(&mm->context.gmap_list); @@ -114,8 +115,7 @@ cpu_relax(); cpumask_set_cpu(smp_processor_id(), mm_cpumask(mm)); - if (mm->context.flush_mm) - __tlb_flush_mm(mm); + __tlb_flush_mm_lazy(mm); preempt_enable(); } set_fs(current->thread.mm_segment); diff -u linux-raspi2-4.4.0/arch/s390/include/asm/tlbflush.h linux-raspi2-4.4.0/arch/s390/include/asm/tlbflush.h --- linux-raspi2-4.4.0/arch/s390/include/asm/tlbflush.h +++ linux-raspi2-4.4.0/arch/s390/include/asm/tlbflush.h @@ -25,17 +25,6 @@ : : "a" (2048), "a" (asce) : "cc"); } -/* - * Flush TLB entries for a specific ASCE on the local CPU - */ -static inline void __tlb_flush_idte_local(unsigned long asce) -{ - /* Local TLB flush for the mm */ - asm volatile( - " .insn rrf,0xb98e0000,0,%0,%1,1" - : : "a" (2048), "a" (asce) : "cc"); -} - #ifdef CONFIG_SMP void smp_ptlb_all(void); @@ -58,51 +47,26 @@ } /* - * Flush TLB entries for a specific mm on all CPUs (in case gmap is used - * this implicates multiple ASCEs!). + * Flush TLB entries for a specific ASCE on all CPUs. */ -static inline void __tlb_flush_full(struct mm_struct *mm) +static inline void __tlb_flush_mm(struct mm_struct * mm) { + /* + * If the machine has IDTE we prefer to do a per mm flush + * on all cpus instead of doing a local flush if the mm + * only ran on the local cpu. + */ preempt_disable(); atomic_add(0x10000, &mm->context.attach_count); - if (cpumask_equal(mm_cpumask(mm), cpumask_of(smp_processor_id()))) { - /* Local TLB flush */ - __tlb_flush_local(); + /* Reset TLB flush mask */ + if (MACHINE_HAS_TLB_LC) + cpumask_copy(mm_cpumask(mm), &mm->context.cpu_attach_mask); + barrier(); + if (MACHINE_HAS_IDTE && list_empty(&mm->context.gmap_list)) { + __tlb_flush_idte(mm->context.asce); } else { /* Global TLB flush */ __tlb_flush_global(); - /* Reset TLB flush mask */ - if (MACHINE_HAS_TLB_LC) - cpumask_copy(mm_cpumask(mm), - &mm->context.cpu_attach_mask); - } - atomic_sub(0x10000, &mm->context.attach_count); - preempt_enable(); -} - -/* - * Flush TLB entries for a specific ASCE on all CPUs. Should never be used - * when more than one asce (e.g. gmap) ran on this mm. - */ -static inline void __tlb_flush_asce(struct mm_struct *mm, unsigned long asce) -{ - int active, count; - - preempt_disable(); - active = (mm == current->active_mm) ? 1 : 0; - count = atomic_add_return(0x10000, &mm->context.attach_count); - if (MACHINE_HAS_TLB_LC && (count & 0xffff) <= active && - cpumask_equal(mm_cpumask(mm), cpumask_of(smp_processor_id()))) { - __tlb_flush_idte_local(asce); - } else { - if (MACHINE_HAS_IDTE) - __tlb_flush_idte(asce); - else - __tlb_flush_global(); - /* Reset TLB flush mask */ - if (MACHINE_HAS_TLB_LC) - cpumask_copy(mm_cpumask(mm), - &mm->context.cpu_attach_mask); } atomic_sub(0x10000, &mm->context.attach_count); preempt_enable(); @@ -117,47 +81,35 @@ } #else #define __tlb_flush_global() __tlb_flush_local() -#define __tlb_flush_full(mm) __tlb_flush_local() /* * Flush TLB entries for a specific ASCE on all CPUs. */ static inline void __tlb_flush_asce(struct mm_struct *mm, unsigned long asce) { - if (MACHINE_HAS_TLB_LC) - __tlb_flush_idte_local(asce); - else - __tlb_flush_local(); + __tlb_flush_local(); } static inline void __tlb_flush_kernel(void) { - if (MACHINE_HAS_TLB_LC) - __tlb_flush_idte_local(init_mm.context.asce); - else - __tlb_flush_local(); + __tlb_flush_local(); } -#endif static inline void __tlb_flush_mm(struct mm_struct * mm) { - /* - * If the machine has IDTE we prefer to do a per mm flush - * on all cpus instead of doing a local flush if the mm - * only ran on the local cpu. - */ - if (MACHINE_HAS_IDTE && list_empty(&mm->context.gmap_list)) - __tlb_flush_asce(mm, mm->context.asce); - else - __tlb_flush_full(mm); + __tlb_flush_local(); } +#endif + static inline void __tlb_flush_mm_lazy(struct mm_struct * mm) { + spin_lock(&mm->context.lock); if (mm->context.flush_mm) { - __tlb_flush_mm(mm); mm->context.flush_mm = 0; + __tlb_flush_mm(mm); } + spin_unlock(&mm->context.lock); } /* diff -u linux-raspi2-4.4.0/arch/s390/net/bpf_jit_comp.c linux-raspi2-4.4.0/arch/s390/net/bpf_jit_comp.c --- linux-raspi2-4.4.0/arch/s390/net/bpf_jit_comp.c +++ linux-raspi2-4.4.0/arch/s390/net/bpf_jit_comp.c @@ -1250,7 +1250,8 @@ insn_count = bpf_jit_insn(jit, fp, i); if (insn_count < 0) return -1; - jit->addrs[i + 1] = jit->prg; /* Next instruction address */ + /* Next instruction address */ + jit->addrs[i + insn_count] = jit->prg; } bpf_jit_epilogue(jit); diff -u linux-raspi2-4.4.0/arch/sparc/include/asm/mmu_context_64.h linux-raspi2-4.4.0/arch/sparc/include/asm/mmu_context_64.h --- linux-raspi2-4.4.0/arch/sparc/include/asm/mmu_context_64.h +++ linux-raspi2-4.4.0/arch/sparc/include/asm/mmu_context_64.h @@ -25,9 +25,11 @@ void __tsb_context_switch(unsigned long pgd_pa, struct tsb_config *tsb_base, struct tsb_config *tsb_huge, - unsigned long tsb_descr_pa); + unsigned long tsb_descr_pa, + unsigned long secondary_ctx); -static inline void tsb_context_switch(struct mm_struct *mm) +static inline void tsb_context_switch_ctx(struct mm_struct *mm, + unsigned long ctx) { __tsb_context_switch(__pa(mm->pgd), &mm->context.tsb_block[0], @@ -38,9 +40,12 @@ #else NULL #endif - , __pa(&mm->context.tsb_descr[0])); + , __pa(&mm->context.tsb_descr[0]), + ctx); } +#define tsb_context_switch(X) tsb_context_switch_ctx(X, 0) + void tsb_grow(struct mm_struct *mm, unsigned long tsb_index, unsigned long mm_rss); @@ -110,8 +115,7 @@ * cpu0 to update it's TSB because at that point the cpu_vm_mask * only had cpu1 set in it. */ - load_secondary_context(mm); - tsb_context_switch(mm); + tsb_context_switch_ctx(mm, CTX_HWBITS(mm->context)); /* Any time a processor runs a context on an address space * for the first time, we must flush that context out of the diff -u linux-raspi2-4.4.0/arch/sparc/include/asm/setup.h linux-raspi2-4.4.0/arch/sparc/include/asm/setup.h --- linux-raspi2-4.4.0/arch/sparc/include/asm/setup.h +++ linux-raspi2-4.4.0/arch/sparc/include/asm/setup.h @@ -59,8 +59,11 @@ extern atomic_t dcpage_flushes_xcall; extern int sysctl_tsb_ratio; -#endif +#ifdef CONFIG_SERIAL_SUNHV +void sunhv_migrate_hvcons_irq(int cpu); +#endif +#endif void sun_do_break(void); extern int stop_a_enabled; extern int scons_pwroff; diff -u linux-raspi2-4.4.0/arch/sparc/kernel/smp_64.c linux-raspi2-4.4.0/arch/sparc/kernel/smp_64.c --- linux-raspi2-4.4.0/arch/sparc/kernel/smp_64.c +++ linux-raspi2-4.4.0/arch/sparc/kernel/smp_64.c @@ -617,22 +617,48 @@ } } -/* Multi-cpu list version. */ +#define CPU_MONDO_COUNTER(cpuid) (cpu_mondo_counter[cpuid]) +#define MONDO_USEC_WAIT_MIN 2 +#define MONDO_USEC_WAIT_MAX 100 +#define MONDO_RETRY_LIMIT 500000 + +/* Multi-cpu list version. + * + * Deliver xcalls to 'cnt' number of cpus in 'cpu_list'. + * Sometimes not all cpus receive the mondo, requiring us to re-send + * the mondo until all cpus have received, or cpus are truly stuck + * unable to receive mondo, and we timeout. + * Occasionally a target cpu strand is borrowed briefly by hypervisor to + * perform guest service, such as PCIe error handling. Consider the + * service time, 1 second overall wait is reasonable for 1 cpu. + * Here two in-between mondo check wait time are defined: 2 usec for + * single cpu quick turn around and up to 100usec for large cpu count. + * Deliver mondo to large number of cpus could take longer, we adjusts + * the retry count as long as target cpus are making forward progress. + */ static void hypervisor_xcall_deliver(struct trap_per_cpu *tb, int cnt) { - int retries, this_cpu, prev_sent, i, saw_cpu_error; + int this_cpu, tot_cpus, prev_sent, i, rem; + int usec_wait, retries, tot_retries; + u16 first_cpu = 0xffff; + unsigned long xc_rcvd = 0; unsigned long status; + int ecpuerror_id = 0; + int enocpu_id = 0; u16 *cpu_list; + u16 cpu; this_cpu = smp_processor_id(); - cpu_list = __va(tb->cpu_list_pa); - - saw_cpu_error = 0; - retries = 0; + usec_wait = cnt * MONDO_USEC_WAIT_MIN; + if (usec_wait > MONDO_USEC_WAIT_MAX) + usec_wait = MONDO_USEC_WAIT_MAX; + retries = tot_retries = 0; + tot_cpus = cnt; prev_sent = 0; + do { - int forward_progress, n_sent; + int n_sent, mondo_delivered, target_cpu_busy; status = sun4v_cpu_mondo_send(cnt, tb->cpu_list_pa, @@ -640,94 +666,113 @@ /* HV_EOK means all cpus received the xcall, we're done. */ if (likely(status == HV_EOK)) - break; + goto xcall_done; + + /* If not these non-fatal errors, panic */ + if (unlikely((status != HV_EWOULDBLOCK) && + (status != HV_ECPUERROR) && + (status != HV_ENOCPU))) + goto fatal_errors; /* First, see if we made any forward progress. * + * Go through the cpu_list, count the target cpus that have + * received our mondo (n_sent), and those that did not (rem). + * Re-pack cpu_list with the cpus remain to be retried in the + * front - this simplifies tracking the truly stalled cpus. + * * The hypervisor indicates successful sends by setting * cpu list entries to the value 0xffff. + * + * EWOULDBLOCK means some target cpus did not receive the + * mondo and retry usually helps. + * + * ECPUERROR means at least one target cpu is in error state, + * it's usually safe to skip the faulty cpu and retry. + * + * ENOCPU means one of the target cpu doesn't belong to the + * domain, perhaps offlined which is unexpected, but not + * fatal and it's okay to skip the offlined cpu. */ + rem = 0; n_sent = 0; for (i = 0; i < cnt; i++) { - if (likely(cpu_list[i] == 0xffff)) + cpu = cpu_list[i]; + if (likely(cpu == 0xffff)) { n_sent++; + } else if ((status == HV_ECPUERROR) && + (sun4v_cpu_state(cpu) == HV_CPU_STATE_ERROR)) { + ecpuerror_id = cpu + 1; + } else if (status == HV_ENOCPU && !cpu_online(cpu)) { + enocpu_id = cpu + 1; + } else { + cpu_list[rem++] = cpu; + } } - forward_progress = 0; - if (n_sent > prev_sent) - forward_progress = 1; + /* No cpu remained, we're done. */ + if (rem == 0) + break; - prev_sent = n_sent; + /* Otherwise, update the cpu count for retry. */ + cnt = rem; - /* If we get a HV_ECPUERROR, then one or more of the cpus - * in the list are in error state. Use the cpu_state() - * hypervisor call to find out which cpus are in error state. + /* Record the overall number of mondos received by the + * first of the remaining cpus. */ - if (unlikely(status == HV_ECPUERROR)) { - for (i = 0; i < cnt; i++) { - long err; - u16 cpu; - - cpu = cpu_list[i]; - if (cpu == 0xffff) - continue; - - err = sun4v_cpu_state(cpu); - if (err == HV_CPU_STATE_ERROR) { - saw_cpu_error = (cpu + 1); - cpu_list[i] = 0xffff; - } - } - } else if (unlikely(status != HV_EWOULDBLOCK)) - goto fatal_mondo_error; + if (first_cpu != cpu_list[0]) { + first_cpu = cpu_list[0]; + xc_rcvd = CPU_MONDO_COUNTER(first_cpu); + } - /* Don't bother rewriting the CPU list, just leave the - * 0xffff and non-0xffff entries in there and the - * hypervisor will do the right thing. - * - * Only advance timeout state if we didn't make any - * forward progress. + /* Was any mondo delivered successfully? */ + mondo_delivered = (n_sent > prev_sent); + prev_sent = n_sent; + + /* or, was any target cpu busy processing other mondos? */ + target_cpu_busy = (xc_rcvd < CPU_MONDO_COUNTER(first_cpu)); + xc_rcvd = CPU_MONDO_COUNTER(first_cpu); + + /* Retry count is for no progress. If we're making progress, + * reset the retry count. */ - if (unlikely(!forward_progress)) { - if (unlikely(++retries > 10000)) - goto fatal_mondo_timeout; - - /* Delay a little bit to let other cpus catch up - * on their cpu mondo queue work. - */ - udelay(2 * cnt); + if (likely(mondo_delivered || target_cpu_busy)) { + tot_retries += retries; + retries = 0; + } else if (unlikely(retries > MONDO_RETRY_LIMIT)) { + goto fatal_mondo_timeout; } - } while (1); - if (unlikely(saw_cpu_error)) - goto fatal_mondo_cpu_error; + /* Delay a little bit to let other cpus catch up on + * their cpu mondo queue work. + */ + if (!mondo_delivered) + udelay(usec_wait); - return; + retries++; + } while (1); -fatal_mondo_cpu_error: - printk(KERN_CRIT "CPU[%d]: SUN4V mondo cpu error, some target cpus " - "(including %d) were in error state\n", - this_cpu, saw_cpu_error - 1); +xcall_done: + if (unlikely(ecpuerror_id > 0)) { + pr_crit("CPU[%d]: SUN4V mondo cpu error, target cpu(%d) was in error state\n", + this_cpu, ecpuerror_id - 1); + } else if (unlikely(enocpu_id > 0)) { + pr_crit("CPU[%d]: SUN4V mondo cpu error, target cpu(%d) does not belong to the domain\n", + this_cpu, enocpu_id - 1); + } return; +fatal_errors: + /* fatal errors include bad alignment, etc */ + pr_crit("CPU[%d]: Args were cnt(%d) cpulist_pa(%lx) mondo_block_pa(%lx)\n", + this_cpu, tot_cpus, tb->cpu_list_pa, tb->cpu_mondo_block_pa); + panic("Unexpected SUN4V mondo error %lu\n", status); + fatal_mondo_timeout: - printk(KERN_CRIT "CPU[%d]: SUN4V mondo timeout, no forward " - " progress after %d retries.\n", - this_cpu, retries); - goto dump_cpu_list_and_out; - -fatal_mondo_error: - printk(KERN_CRIT "CPU[%d]: Unexpected SUN4V mondo error %lu\n", - this_cpu, status); - printk(KERN_CRIT "CPU[%d]: Args were cnt(%d) cpulist_pa(%lx) " - "mondo_block_pa(%lx)\n", - this_cpu, cnt, tb->cpu_list_pa, tb->cpu_mondo_block_pa); - -dump_cpu_list_and_out: - printk(KERN_CRIT "CPU[%d]: CPU list [ ", this_cpu); - for (i = 0; i < cnt; i++) - printk("%u ", cpu_list[i]); - printk("]\n"); + /* some cpus being non-responsive to the cpu mondo */ + pr_crit("CPU[%d]: SUN4V mondo timeout, cpu(%d) made no forward progress after %d retries. Total target cpus(%d).\n", + this_cpu, first_cpu, (tot_retries + retries), tot_cpus); + panic("SUN4V mondo timeout panic\n"); } static void (*xcall_deliver_impl)(struct trap_per_cpu *, int); @@ -1398,8 +1443,12 @@ int cpu; if (tlb_type == hypervisor) { + int this_cpu = smp_processor_id(); +#ifdef CONFIG_SERIAL_SUNHV + sunhv_migrate_hvcons_irq(this_cpu); +#endif for_each_online_cpu(cpu) { - if (cpu == smp_processor_id()) + if (cpu == this_cpu) continue; #ifdef CONFIG_SUN_LDOMS if (ldom_domaining_enabled) { diff -u linux-raspi2-4.4.0/arch/sparc/kernel/traps_64.c linux-raspi2-4.4.0/arch/sparc/kernel/traps_64.c --- linux-raspi2-4.4.0/arch/sparc/kernel/traps_64.c +++ linux-raspi2-4.4.0/arch/sparc/kernel/traps_64.c @@ -2659,6 +2659,7 @@ } } +u64 cpu_mondo_counter[NR_CPUS] = {0}; struct trap_per_cpu trap_block[NR_CPUS]; EXPORT_SYMBOL(trap_block); diff -u linux-raspi2-4.4.0/arch/sparc/kernel/tsb.S linux-raspi2-4.4.0/arch/sparc/kernel/tsb.S --- linux-raspi2-4.4.0/arch/sparc/kernel/tsb.S +++ linux-raspi2-4.4.0/arch/sparc/kernel/tsb.S @@ -375,6 +375,7 @@ * %o1: TSB base config pointer * %o2: TSB huge config pointer, or NULL if none * %o3: Hypervisor TSB descriptor physical address + * %o4: Secondary context to load, if non-zero * * We have to run this whole thing with interrupts * disabled so that the current cpu doesn't change @@ -387,6 +388,17 @@ rdpr %pstate, %g1 wrpr %g1, PSTATE_IE, %pstate + brz,pn %o4, 1f + mov SECONDARY_CONTEXT, %o5 + +661: stxa %o4, [%o5] ASI_DMMU + .section .sun4v_1insn_patch, "ax" + .word 661b + stxa %o4, [%o5] ASI_MMU + .previous + flush %g6 + +1: TRAP_LOAD_TRAP_BLOCK(%g2, %g3) stx %o0, [%g2 + TRAP_PER_CPU_PGD_PADDR] diff -u linux-raspi2-4.4.0/arch/x86/entry/entry_64_compat.S linux-raspi2-4.4.0/arch/x86/entry/entry_64_compat.S --- linux-raspi2-4.4.0/arch/x86/entry/entry_64_compat.S +++ linux-raspi2-4.4.0/arch/x86/entry/entry_64_compat.S @@ -13,6 +13,8 @@ #include #include #include +#include +#include #include #include @@ -50,6 +52,7 @@ ENTRY(entry_SYSENTER_compat) /* Interrupts are off on entry. */ SWAPGS_UNSAFE_STACK + SWITCH_KERNEL_CR3_NO_STACK movq PER_CPU_VAR(cpu_current_top_of_stack), %rsp /* @@ -161,6 +164,7 @@ ENTRY(entry_SYSCALL_compat) /* Interrupts are off on entry. */ SWAPGS_UNSAFE_STACK + SWITCH_KERNEL_CR3_NO_STACK /* Stash user ESP and switch to the kernel stack. */ movl %esp, %r8d @@ -208,6 +212,7 @@ /* Opportunistic SYSRET */ sysret32_from_system_call: TRACE_IRQS_ON /* User mode traces as IRQs on. */ + SWITCH_USER_CR3 movq RBX(%rsp), %rbx /* pt_regs->rbx */ movq RBP(%rsp), %rbp /* pt_regs->rbp */ movq EFLAGS(%rsp), %r11 /* pt_regs->flags (in r11) */ @@ -269,6 +274,7 @@ PARAVIRT_ADJUST_EXCEPTION_FRAME ASM_CLAC /* Do this early to minimize exposure */ SWAPGS + SWITCH_KERNEL_CR3_NO_STACK /* * User tracing code (ptrace or signal handlers) might assume that @@ -311,6 +317,7 @@ /* Go back to user mode. */ TRACE_IRQS_ON + SWITCH_USER_CR3 SWAPGS jmp restore_regs_and_iret END(entry_INT80_compat) diff -u linux-raspi2-4.4.0/arch/x86/entry/vdso/vma.c linux-raspi2-4.4.0/arch/x86/entry/vdso/vma.c --- linux-raspi2-4.4.0/arch/x86/entry/vdso/vma.c +++ linux-raspi2-4.4.0/arch/x86/entry/vdso/vma.c @@ -101,6 +101,7 @@ .name = "[vvar]", .pages = no_pages, }; + struct pvclock_vsyscall_time_info *pvti; if (calculate_addr) { addr = vdso_addr(current->mm->start_stack, @@ -170,6 +171,18 @@ } #endif + pvti = pvclock_pvti_cpu0_va(); + if (pvti && image->sym_pvclock_page) { + ret = remap_pfn_range(vma, + text_start + image->sym_pvclock_page, + __pa(pvti) >> PAGE_SHIFT, + PAGE_SIZE, + PAGE_READONLY); + + if (ret) + goto up_fail; + } + up_fail: if (ret) current->mm->context.vdso = NULL; diff -u linux-raspi2-4.4.0/arch/x86/events/intel/ds.c linux-raspi2-4.4.0/arch/x86/events/intel/ds.c --- linux-raspi2-4.4.0/arch/x86/events/intel/ds.c +++ linux-raspi2-4.4.0/arch/x86/events/intel/ds.c @@ -2,11 +2,15 @@ #include #include +#include #include #include #include "../perf_event.h" +static +DEFINE_PER_CPU_SHARED_ALIGNED_USER_MAPPED(struct debug_store, cpu_debug_store); + /* The size of a BTS record in bytes: */ #define BTS_RECORD_SIZE 24 @@ -268,6 +272,39 @@ static DEFINE_PER_CPU(void *, insn_buffer); +static void *dsalloc(size_t size, gfp_t flags, int node) +{ +#ifdef CONFIG_KAISER + unsigned int order = get_order(size); + struct page *page; + unsigned long addr; + + page = __alloc_pages_node(node, flags | __GFP_ZERO, order); + if (!page) + return NULL; + addr = (unsigned long)page_address(page); + if (kaiser_add_mapping(addr, size, __PAGE_KERNEL) < 0) { + __free_pages(page, order); + addr = 0; + } + return (void *)addr; +#else + return kmalloc_node(size, flags | __GFP_ZERO, node); +#endif +} + +static void dsfree(const void *buffer, size_t size) +{ +#ifdef CONFIG_KAISER + if (!buffer) + return; + kaiser_remove_mapping((unsigned long)buffer, size); + free_pages((unsigned long)buffer, get_order(size)); +#else + kfree(buffer); +#endif +} + static int alloc_pebs_buffer(int cpu) { struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds; @@ -278,7 +315,7 @@ if (!x86_pmu.pebs) return 0; - buffer = kzalloc_node(x86_pmu.pebs_buffer_size, GFP_KERNEL, node); + buffer = dsalloc(x86_pmu.pebs_buffer_size, GFP_KERNEL, node); if (unlikely(!buffer)) return -ENOMEM; @@ -289,7 +326,7 @@ if (x86_pmu.intel_cap.pebs_format < 2) { ibuffer = kzalloc_node(PEBS_FIXUP_SIZE, GFP_KERNEL, node); if (!ibuffer) { - kfree(buffer); + dsfree(buffer, x86_pmu.pebs_buffer_size); return -ENOMEM; } per_cpu(insn_buffer, cpu) = ibuffer; @@ -315,7 +352,8 @@ kfree(per_cpu(insn_buffer, cpu)); per_cpu(insn_buffer, cpu) = NULL; - kfree((void *)(unsigned long)ds->pebs_buffer_base); + dsfree((void *)(unsigned long)ds->pebs_buffer_base, + x86_pmu.pebs_buffer_size); ds->pebs_buffer_base = 0; } @@ -329,7 +367,7 @@ if (!x86_pmu.bts) return 0; - buffer = kzalloc_node(BTS_BUFFER_SIZE, GFP_KERNEL | __GFP_NOWARN, node); + buffer = dsalloc(BTS_BUFFER_SIZE, GFP_KERNEL | __GFP_NOWARN, node); if (unlikely(!buffer)) { WARN_ONCE(1, "%s: BTS buffer allocation failure\n", __func__); return -ENOMEM; @@ -355,19 +393,15 @@ if (!ds || !x86_pmu.bts) return; - kfree((void *)(unsigned long)ds->bts_buffer_base); + dsfree((void *)(unsigned long)ds->bts_buffer_base, BTS_BUFFER_SIZE); ds->bts_buffer_base = 0; } static int alloc_ds_buffer(int cpu) { - int node = cpu_to_node(cpu); - struct debug_store *ds; - - ds = kzalloc_node(sizeof(*ds), GFP_KERNEL, node); - if (unlikely(!ds)) - return -ENOMEM; + struct debug_store *ds = per_cpu_ptr(&cpu_debug_store, cpu); + memset(ds, 0, sizeof(*ds)); per_cpu(cpu_hw_events, cpu).ds = ds; return 0; diff -u linux-raspi2-4.4.0/arch/x86/events/intel/lbr.c linux-raspi2-4.4.0/arch/x86/events/intel/lbr.c --- linux-raspi2-4.4.0/arch/x86/events/intel/lbr.c +++ linux-raspi2-4.4.0/arch/x86/events/intel/lbr.c @@ -153,7 +153,7 @@ */ if (cpuc->lbr_sel) lbr_select = cpuc->lbr_sel->config; - if (!pmi) + if (!pmi && cpuc->lbr_sel) wrmsrl(MSR_LBR_SELECT, lbr_select); rdmsrl(MSR_IA32_DEBUGCTLMSR, debugctl); @@ -432,8 +432,10 @@ int out = 0; int num = x86_pmu.lbr_nr; - if (cpuc->lbr_sel->config & LBR_CALL_STACK) - num = tos; + if (cpuc->lbr_sel) { + if (cpuc->lbr_sel->config & LBR_CALL_STACK) + num = tos; + } for (i = 0; i < num; i++) { unsigned long lbr_idx = (tos - i) & mask; diff -u linux-raspi2-4.4.0/arch/x86/include/asm/alternative.h linux-raspi2-4.4.0/arch/x86/include/asm/alternative.h --- linux-raspi2-4.4.0/arch/x86/include/asm/alternative.h +++ linux-raspi2-4.4.0/arch/x86/include/asm/alternative.h @@ -102,12 +102,12 @@ alt_end_marker ":\n" /* - * max without conditionals. Idea adapted from: + * gas compatible max based on the idea from: * http://graphics.stanford.edu/~seander/bithacks.html#IntegerMinOrMax * - * The additional "-" is needed because gas works with s32s. + * The additional "-" is needed because gas uses a "true" value of -1. */ -#define alt_max_short(a, b) "((" a ") ^ (((" a ") ^ (" b ")) & -(-((" a ") - (" b ")))))" +#define alt_max_short(a, b) "((" a ") ^ (((" a ") ^ (" b ")) & -(-((" a ") < (" b ")))))" /* * Pad the second replacement alternative with additional NOPs if it is diff -u linux-raspi2-4.4.0/arch/x86/include/asm/cpufeatures.h linux-raspi2-4.4.0/arch/x86/include/asm/cpufeatures.h --- linux-raspi2-4.4.0/arch/x86/include/asm/cpufeatures.h +++ linux-raspi2-4.4.0/arch/x86/include/asm/cpufeatures.h @@ -188,11 +188,14 @@ #define X86_FEATURE_CPB ( 7*32+ 2) /* AMD Core Performance Boost */ #define X86_FEATURE_EPB ( 7*32+ 3) /* IA32_ENERGY_PERF_BIAS support */ +#define X86_FEATURE_INVPCID_SINGLE ( 7*32+ 4) /* Effectively INVPCID && CR4.PCIDE=1 */ #define X86_FEATURE_HW_PSTATE ( 7*32+ 8) /* AMD HW-PState */ #define X86_FEATURE_PROC_FEEDBACK ( 7*32+ 9) /* AMD ProcFeedbackInterface */ #define X86_FEATURE_INTEL_PT ( 7*32+15) /* Intel Processor Trace */ +/* Because the ALTERNATIVE scheme is for members of the X86_FEATURE club... */ +#define X86_FEATURE_KAISER ( 7*32+31) /* CONFIG_KAISER w/o nokaiser */ /* Virtualization flags: Linux defined, word 8 */ #define X86_FEATURE_TPR_SHADOW ( 8*32+ 0) /* Intel TPR Shadow */ @@ -205,6 +208,7 @@ #define X86_FEATURE_XENPV ( 8*32+16) /* "" Xen paravirtual guest */ + /* Intel-defined CPU features, CPUID level 0x00000007:0 (ebx), word 9 */ #define X86_FEATURE_FSGSBASE ( 9*32+ 0) /* {RD/WR}{FS/GS}BASE instructions*/ #define X86_FEATURE_TSC_ADJUST ( 9*32+ 1) /* TSC adjustment MSR 0x3b */ diff -u linux-raspi2-4.4.0/arch/x86/include/asm/elf.h linux-raspi2-4.4.0/arch/x86/include/asm/elf.h --- linux-raspi2-4.4.0/arch/x86/include/asm/elf.h +++ linux-raspi2-4.4.0/arch/x86/include/asm/elf.h @@ -204,6 +204,7 @@ #define ELF_CORE_COPY_REGS(pr_reg, regs) \ do { \ + unsigned long base; \ unsigned v; \ (pr_reg)[0] = (regs)->r15; \ (pr_reg)[1] = (regs)->r14; \ @@ -226,8 +227,8 @@ (pr_reg)[18] = (regs)->flags; \ (pr_reg)[19] = (regs)->sp; \ (pr_reg)[20] = (regs)->ss; \ - (pr_reg)[21] = current->thread.fs; \ - (pr_reg)[22] = current->thread.gs; \ + rdmsrl(MSR_FS_BASE, base); (pr_reg)[21] = base; \ + rdmsrl(MSR_KERNEL_GS_BASE, base); (pr_reg)[22] = base; \ asm("movl %%ds,%0" : "=r" (v)); (pr_reg)[23] = v; \ asm("movl %%es,%0" : "=r" (v)); (pr_reg)[24] = v; \ asm("movl %%fs,%0" : "=r" (v)); (pr_reg)[25] = v; \ @@ -245,12 +246,13 @@ #define CORE_DUMP_USE_REGSET #define ELF_EXEC_PAGESIZE 4096 -/* This is the location that an ET_DYN program is loaded if exec'ed. Typical - use of this is to invoke "./ld.so someprog" to test out a new version of - the loader. We need to make sure that it is out of the way of the program - that it will "exec", and that there is sufficient room for the brk. */ - -#define ELF_ET_DYN_BASE (TASK_SIZE / 3 * 2) +/* + * This is the base location for PIE (ET_DYN with INTERP) loads. On + * 64-bit, this is above 4GB to leave the entire 32-bit address + * space open for things that want to use the area for 32-bit pointers. + */ +#define ELF_ET_DYN_BASE (mmap_is_ia32() ? 0x000400000UL : \ + (TASK_SIZE / 3 * 2)) /* This yields a mask that user programs can use to figure out what instruction set this CPU supports. This could be done in user space, diff -u linux-raspi2-4.4.0/arch/x86/include/asm/hw_irq.h linux-raspi2-4.4.0/arch/x86/include/asm/hw_irq.h --- linux-raspi2-4.4.0/arch/x86/include/asm/hw_irq.h +++ linux-raspi2-4.4.0/arch/x86/include/asm/hw_irq.h @@ -187,7 +187,7 @@ #define VECTOR_RETRIGGERED ((void *)~0UL) typedef struct irq_desc* vector_irq_t[NR_VECTORS]; -DECLARE_PER_CPU(vector_irq_t, vector_irq); +DECLARE_PER_CPU_USER_MAPPED(vector_irq_t, vector_irq); #endif /* !ASSEMBLY_ */ diff -u linux-raspi2-4.4.0/arch/x86/include/asm/mmu_context.h linux-raspi2-4.4.0/arch/x86/include/asm/mmu_context.h --- linux-raspi2-4.4.0/arch/x86/include/asm/mmu_context.h +++ linux-raspi2-4.4.0/arch/x86/include/asm/mmu_context.h @@ -104,103 +104,9 @@ #endif } -static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next, - struct task_struct *tsk) -{ - unsigned cpu = smp_processor_id(); +extern void switch_mm(struct mm_struct *prev, struct mm_struct *next, + struct task_struct *tsk); - if (likely(prev != next)) { -#ifdef CONFIG_SMP - this_cpu_write(cpu_tlbstate.state, TLBSTATE_OK); - this_cpu_write(cpu_tlbstate.active_mm, next); -#endif - cpumask_set_cpu(cpu, mm_cpumask(next)); - - /* - * Re-load page tables. - * - * This logic has an ordering constraint: - * - * CPU 0: Write to a PTE for 'next' - * CPU 0: load bit 1 in mm_cpumask. if nonzero, send IPI. - * CPU 1: set bit 1 in next's mm_cpumask - * CPU 1: load from the PTE that CPU 0 writes (implicit) - * - * We need to prevent an outcome in which CPU 1 observes - * the new PTE value and CPU 0 observes bit 1 clear in - * mm_cpumask. (If that occurs, then the IPI will never - * be sent, and CPU 0's TLB will contain a stale entry.) - * - * The bad outcome can occur if either CPU's load is - * reordered before that CPU's store, so both CPUs must - * execute full barriers to prevent this from happening. - * - * Thus, switch_mm needs a full barrier between the - * store to mm_cpumask and any operation that could load - * from next->pgd. TLB fills are special and can happen - * due to instruction fetches or for no reason at all, - * and neither LOCK nor MFENCE orders them. - * Fortunately, load_cr3() is serializing and gives the - * ordering guarantee we need. - * - */ - load_cr3(next->pgd); - - trace_tlb_flush(TLB_FLUSH_ON_TASK_SWITCH, TLB_FLUSH_ALL); - - /* Stop flush ipis for the previous mm */ - cpumask_clear_cpu(cpu, mm_cpumask(prev)); - - /* Load per-mm CR4 state */ - load_mm_cr4(next); - -#ifdef CONFIG_MODIFY_LDT_SYSCALL - /* - * Load the LDT, if the LDT is different. - * - * It's possible that prev->context.ldt doesn't match - * the LDT register. This can happen if leave_mm(prev) - * was called and then modify_ldt changed - * prev->context.ldt but suppressed an IPI to this CPU. - * In this case, prev->context.ldt != NULL, because we - * never set context.ldt to NULL while the mm still - * exists. That means that next->context.ldt != - * prev->context.ldt, because mms never share an LDT. - */ - if (unlikely(prev->context.ldt != next->context.ldt)) - load_mm_ldt(next); -#endif - } -#ifdef CONFIG_SMP - else { - this_cpu_write(cpu_tlbstate.state, TLBSTATE_OK); - BUG_ON(this_cpu_read(cpu_tlbstate.active_mm) != next); - - if (!cpumask_test_cpu(cpu, mm_cpumask(next))) { - /* - * On established mms, the mm_cpumask is only changed - * from irq context, from ptep_clear_flush() while in - * lazy tlb mode, and here. Irqs are blocked during - * schedule, protecting us from simultaneous changes. - */ - cpumask_set_cpu(cpu, mm_cpumask(next)); - - /* - * We were in lazy tlb mode and leave_mm disabled - * tlb flush IPI delivery. We must reload CR3 - * to make sure to use no freed page tables. - * - * As above, load_cr3() is serializing and orders TLB - * fills with respect to the mm_cpumask write. - */ - load_cr3(next->pgd); - trace_tlb_flush(TLB_FLUSH_ON_TASK_SWITCH, TLB_FLUSH_ALL); - load_mm_cr4(next); - load_mm_ldt(next); - } - } -#endif -} #define activate_mm(prev, next) \ do { \ diff -u linux-raspi2-4.4.0/arch/x86/include/asm/msr-index.h linux-raspi2-4.4.0/arch/x86/include/asm/msr-index.h --- linux-raspi2-4.4.0/arch/x86/include/asm/msr-index.h +++ linux-raspi2-4.4.0/arch/x86/include/asm/msr-index.h @@ -413,6 +413,8 @@ #define MSR_IA32_TSC_ADJUST 0x0000003b #define MSR_IA32_BNDCFGS 0x00000d90 +#define MSR_IA32_BNDCFGS_RSVD 0x00000ffc + #define MSR_IA32_XSS 0x00000da0 #define FEATURE_CONTROL_LOCKED (1<<0) diff -u linux-raspi2-4.4.0/arch/x86/include/asm/pat.h linux-raspi2-4.4.0/arch/x86/include/asm/pat.h --- linux-raspi2-4.4.0/arch/x86/include/asm/pat.h +++ linux-raspi2-4.4.0/arch/x86/include/asm/pat.h @@ -7,6 +7,7 @@ bool pat_enabled(void); void pat_disable(const char *reason); extern void pat_init(void); +extern void init_cache_modes(void); extern int reserve_memtype(u64 start, u64 end, enum page_cache_mode req_pcm, enum page_cache_mode *ret_pcm); diff -u linux-raspi2-4.4.0/arch/x86/include/asm/pgtable_types.h linux-raspi2-4.4.0/arch/x86/include/asm/pgtable_types.h --- linux-raspi2-4.4.0/arch/x86/include/asm/pgtable_types.h +++ linux-raspi2-4.4.0/arch/x86/include/asm/pgtable_types.h @@ -89,7 +89,7 @@ #define _PAGE_NX (_AT(pteval_t, 0)) #endif -#define _PAGE_PROTNONE (_AT(pteval_t, 1) << _PAGE_BIT_PROTNONE) +#define _PAGE_PROTNONE (_AT(pteval_t, 1) << _PAGE_BIT_PROTNONE) #define _PAGE_TABLE (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | \ _PAGE_ACCESSED | _PAGE_DIRTY) @@ -102,6 +102,33 @@ _PAGE_SOFT_DIRTY) #define _HPAGE_CHG_MASK (_PAGE_CHG_MASK | _PAGE_PSE) +/* The ASID is the lower 12 bits of CR3 */ +#define X86_CR3_PCID_ASID_MASK (_AC((1<<12)-1,UL)) + +/* Mask for all the PCID-related bits in CR3: */ +#define X86_CR3_PCID_MASK (X86_CR3_PCID_NOFLUSH | X86_CR3_PCID_ASID_MASK) +#define X86_CR3_PCID_ASID_KERN (_AC(0x0,UL)) + +#if defined(CONFIG_KAISER) && defined(CONFIG_X86_64) +/* Let X86_CR3_PCID_ASID_USER be usable for the X86_CR3_PCID_NOFLUSH bit */ +#define X86_CR3_PCID_ASID_USER (_AC(0x80,UL)) + +#define X86_CR3_PCID_KERN_FLUSH (X86_CR3_PCID_ASID_KERN) +#define X86_CR3_PCID_USER_FLUSH (X86_CR3_PCID_ASID_USER) +#define X86_CR3_PCID_KERN_NOFLUSH (X86_CR3_PCID_NOFLUSH | X86_CR3_PCID_ASID_KERN) +#define X86_CR3_PCID_USER_NOFLUSH (X86_CR3_PCID_NOFLUSH | X86_CR3_PCID_ASID_USER) +#else +#define X86_CR3_PCID_ASID_USER (_AC(0x0,UL)) +/* + * PCIDs are unsupported on 32-bit and none of these bits can be + * set in CR3: + */ +#define X86_CR3_PCID_KERN_FLUSH (0) +#define X86_CR3_PCID_USER_FLUSH (0) +#define X86_CR3_PCID_KERN_NOFLUSH (0) +#define X86_CR3_PCID_USER_NOFLUSH (0) +#endif + /* * The cache modes defined here are used to translate between pure SW usage * and the HW defined cache mode bits and/or PAT entries. diff -u linux-raspi2-4.4.0/arch/x86/include/asm/processor.h linux-raspi2-4.4.0/arch/x86/include/asm/processor.h --- linux-raspi2-4.4.0/arch/x86/include/asm/processor.h +++ linux-raspi2-4.4.0/arch/x86/include/asm/processor.h @@ -306,7 +306,7 @@ } ____cacheline_aligned; -DECLARE_PER_CPU_SHARED_ALIGNED(struct tss_struct, cpu_tss); +DECLARE_PER_CPU_SHARED_ALIGNED_USER_MAPPED(struct tss_struct, cpu_tss); #ifdef CONFIG_X86_32 DECLARE_PER_CPU(unsigned long, cpu_current_top_of_stack); diff -u linux-raspi2-4.4.0/arch/x86/include/asm/pvclock.h linux-raspi2-4.4.0/arch/x86/include/asm/pvclock.h --- linux-raspi2-4.4.0/arch/x86/include/asm/pvclock.h +++ linux-raspi2-4.4.0/arch/x86/include/asm/pvclock.h @@ -4,6 +4,15 @@ #include #include +#ifdef CONFIG_PARAVIRT_CLOCK +extern struct pvclock_vsyscall_time_info *pvclock_pvti_cpu0_va(void); +#else +static inline struct pvclock_vsyscall_time_info *pvclock_pvti_cpu0_va(void) +{ + return NULL; +} +#endif + /* some helper functions for xen and kvm pv clock sources */ cycle_t pvclock_clocksource_read(struct pvclock_vcpu_time_info *src); u8 pvclock_read_flags(struct pvclock_vcpu_time_info *src); diff -u linux-raspi2-4.4.0/arch/x86/include/asm/tlbflush.h linux-raspi2-4.4.0/arch/x86/include/asm/tlbflush.h --- linux-raspi2-4.4.0/arch/x86/include/asm/tlbflush.h +++ linux-raspi2-4.4.0/arch/x86/include/asm/tlbflush.h @@ -8,6 +8,54 @@ #include #include +static inline void __invpcid(unsigned long pcid, unsigned long addr, + unsigned long type) +{ + u64 desc[2] = { pcid, addr }; + + /* + * The memory clobber is because the whole point is to invalidate + * stale TLB entries and, especially if we're flushing global + * mappings, we don't want the compiler to reorder any subsequent + * memory accesses before the TLB flush. + * + * The hex opcode is invpcid (%ecx), %eax in 32-bit mode and + * invpcid (%rcx), %rax in long mode. + */ + asm volatile (".byte 0x66, 0x0f, 0x38, 0x82, 0x01" + : : "m" (desc), "a" (type), "c" (desc) : "memory"); +} + +#define INVPCID_TYPE_INDIV_ADDR 0 +#define INVPCID_TYPE_SINGLE_CTXT 1 +#define INVPCID_TYPE_ALL_INCL_GLOBAL 2 +#define INVPCID_TYPE_ALL_NON_GLOBAL 3 + +/* Flush all mappings for a given pcid and addr, not including globals. */ +static inline void invpcid_flush_one(unsigned long pcid, + unsigned long addr) +{ + __invpcid(pcid, addr, INVPCID_TYPE_INDIV_ADDR); +} + +/* Flush all mappings for a given PCID, not including globals. */ +static inline void invpcid_flush_single_context(unsigned long pcid) +{ + __invpcid(pcid, 0, INVPCID_TYPE_SINGLE_CTXT); +} + +/* Flush all mappings, including globals, for all PCIDs. */ +static inline void invpcid_flush_all(void) +{ + __invpcid(0, 0, INVPCID_TYPE_ALL_INCL_GLOBAL); +} + +/* Flush all mappings for all PCIDs except globals. */ +static inline void invpcid_flush_all_nonglobals(void) +{ + __invpcid(0, 0, INVPCID_TYPE_ALL_NON_GLOBAL); +} + #ifdef CONFIG_PARAVIRT #include #else @@ -85,6 +133,24 @@ cr4_set_bits(mask); } +/* + * Declare a couple of kaiser interfaces here for convenience, + * to avoid the need for asm/kaiser.h in unexpected places. + */ +#ifdef CONFIG_KAISER +extern int kaiser_enabled; +extern void kaiser_setup_pcid(void); +extern void kaiser_flush_tlb_on_return_to_user(void); +#else +#define kaiser_enabled 0 +static inline void kaiser_setup_pcid(void) +{ +} +static inline void kaiser_flush_tlb_on_return_to_user(void) +{ +} +#endif + static inline void __native_flush_tlb(void) { /* @@ -93,6 +159,8 @@ * back: */ preempt_disable(); + if (kaiser_enabled) + kaiser_flush_tlb_on_return_to_user(); native_write_cr3(native_read_cr3()); preempt_enable(); } @@ -102,39 +170,82 @@ unsigned long cr4; cr4 = this_cpu_read(cpu_tlbstate.cr4); - /* clear PGE */ - native_write_cr4(cr4 & ~X86_CR4_PGE); - /* write old PGE again and flush TLBs */ - native_write_cr4(cr4); + if (cr4 & X86_CR4_PGE) { + /* clear PGE and flush TLB of all entries */ + native_write_cr4(cr4 & ~X86_CR4_PGE); + /* restore PGE as it was before */ + native_write_cr4(cr4); + } else { + /* do it with cr3, letting kaiser flush user PCID */ + __native_flush_tlb(); + } } static inline void __native_flush_tlb_global(void) { unsigned long flags; + if (this_cpu_has(X86_FEATURE_INVPCID)) { + /* + * Using INVPCID is considerably faster than a pair of writes + * to CR4 sandwiched inside an IRQ flag save/restore. + */ + invpcid_flush_all(); + return; + } + /* * Read-modify-write to CR4 - protect it from preemption and * from interrupts. (Use the raw variant because this code can * be called from deep inside debugging code.) */ raw_local_irq_save(flags); - __native_flush_tlb_global_irq_disabled(); - raw_local_irq_restore(flags); } static inline void __native_flush_tlb_single(unsigned long addr) { - asm volatile("invlpg (%0)" ::"r" (addr) : "memory"); + /* + * SIMICS #GP's if you run INVPCID with type 2/3 + * and X86_CR4_PCIDE clear. Shame! + * + * The ASIDs used below are hard-coded. But, we must not + * call invpcid(type=1/2) before CR4.PCIDE=1. Just call + * invlpg in the case we are called early. + */ + + if (!this_cpu_has(X86_FEATURE_INVPCID_SINGLE)) { + if (kaiser_enabled) + kaiser_flush_tlb_on_return_to_user(); + asm volatile("invlpg (%0)" ::"r" (addr) : "memory"); + return; + } + /* Flush the address out of both PCIDs. */ + /* + * An optimization here might be to determine addresses + * that are only kernel-mapped and only flush the kernel + * ASID. But, userspace flushes are probably much more + * important performance-wise. + * + * Make sure to do only a single invpcid when KAISER is + * disabled and we have only a single ASID. + */ + if (kaiser_enabled) + invpcid_flush_one(X86_CR3_PCID_ASID_USER, addr); + invpcid_flush_one(X86_CR3_PCID_ASID_KERN, addr); } static inline void __flush_tlb_all(void) { - if (cpu_has_pge) - __flush_tlb_global(); - else - __flush_tlb(); + __flush_tlb_global(); + /* + * Note: if we somehow had PCID but not PGE, then this wouldn't work -- + * we'd end up flushing kernel translations for the current ASID but + * we might fail to flush kernel translations for other cached ASIDs. + * + * To avoid this issue, we force PCID off if PGE is off. + */ } static inline void __flush_tlb_one(unsigned long addr) diff -u linux-raspi2-4.4.0/arch/x86/include/asm/uaccess.h linux-raspi2-4.4.0/arch/x86/include/asm/uaccess.h --- linux-raspi2-4.4.0/arch/x86/include/asm/uaccess.h +++ linux-raspi2-4.4.0/arch/x86/include/asm/uaccess.h @@ -7,6 +7,7 @@ #include #include #include +#include #include #include #include @@ -66,6 +67,12 @@ __chk_range_not_ok((unsigned long __force)(addr), size, limit); \ }) +#ifdef CONFIG_DEBUG_ATOMIC_SLEEP +# define WARN_ON_IN_IRQ() WARN_ON_ONCE(!in_task()) +#else +# define WARN_ON_IN_IRQ() +#endif + /** * access_ok: - Checks if a user space pointer is valid * @type: Type of access: %VERIFY_READ or %VERIFY_WRITE. Note that @@ -86,8 +93,11 @@ * checks that the pointer is in the user space range - after calling * this function, memory access functions may still return -EFAULT. */ -#define access_ok(type, addr, size) \ - likely(!__range_not_ok(addr, size, user_addr_max())) +#define access_ok(type, addr, size) \ +({ \ + WARN_ON_IN_IRQ(); \ + likely(!__range_not_ok(addr, size, user_addr_max())); \ +}) /* * The exception table consists of pairs of addresses relative to the diff -u linux-raspi2-4.4.0/arch/x86/kernel/acpi/boot.c linux-raspi2-4.4.0/arch/x86/kernel/acpi/boot.c --- linux-raspi2-4.4.0/arch/x86/kernel/acpi/boot.c +++ linux-raspi2-4.4.0/arch/x86/kernel/acpi/boot.c @@ -329,6 +329,14 @@ struct mpc_intsrc mp_irq; /* + * Check bus_irq boundary. + */ + if (bus_irq >= NR_IRQS_LEGACY) { + pr_warn("Invalid bus_irq %u for legacy override\n", bus_irq); + return; + } + + /* * Convert 'gsi' to 'ioapic.pin'. */ ioapic = mp_find_ioapic(gsi); diff -u linux-raspi2-4.4.0/arch/x86/kernel/apic/io_apic.c linux-raspi2-4.4.0/arch/x86/kernel/apic/io_apic.c --- linux-raspi2-4.4.0/arch/x86/kernel/apic/io_apic.c +++ linux-raspi2-4.4.0/arch/x86/kernel/apic/io_apic.c @@ -2115,7 +2115,7 @@ int idx; idx = find_irq_entry(apic1, pin1, mp_INT); if (idx != -1 && irq_trigger(idx)) - unmask_ioapic_irq(irq_get_chip_data(0)); + unmask_ioapic_irq(irq_get_irq_data(0)); } irq_domain_deactivate_irq(irq_data); irq_domain_activate_irq(irq_data); diff -u linux-raspi2-4.4.0/arch/x86/kernel/cpu/common.c linux-raspi2-4.4.0/arch/x86/kernel/cpu/common.c --- linux-raspi2-4.4.0/arch/x86/kernel/cpu/common.c +++ linux-raspi2-4.4.0/arch/x86/kernel/cpu/common.c @@ -92,7 +92,7 @@ static const struct cpu_dev *this_cpu = &default_cpu; -DEFINE_PER_CPU_PAGE_ALIGNED(struct gdt_page, gdt_page) = { .gdt = { +DEFINE_PER_CPU_PAGE_ALIGNED_USER_MAPPED(struct gdt_page, gdt_page) = { .gdt = { #ifdef CONFIG_X86_64 /* * We need valid kernel segments for data and code in long mode too @@ -287,6 +287,39 @@ } } +static void setup_pcid(struct cpuinfo_x86 *c) +{ + if (cpu_has(c, X86_FEATURE_PCID)) { + if (cpu_has(c, X86_FEATURE_PGE) || kaiser_enabled) { + cr4_set_bits(X86_CR4_PCIDE); + /* + * INVPCID has two "groups" of types: + * 1/2: Invalidate an individual address + * 3/4: Invalidate all contexts + * + * 1/2 take a PCID, but 3/4 do not. So, 3/4 + * ignore the PCID argument in the descriptor. + * But, we have to be careful not to call 1/2 + * with an actual non-zero PCID in them before + * we do the above cr4_set_bits(). + */ + if (cpu_has(c, X86_FEATURE_INVPCID)) + set_cpu_cap(c, X86_FEATURE_INVPCID_SINGLE); + } else { + /* + * flush_tlb_all(), as currently implemented, won't + * work if PCID is on but PGE is not. Since that + * combination doesn't exist on real hardware, there's + * no reason to try to fully support it, but it's + * polite to avoid corrupting data if we're on + * an improperly configured VM. + */ + clear_cpu_cap(c, X86_FEATURE_PCID); + } + } + kaiser_setup_pcid(); +} + /* * Some CPU features depend on higher CPUID levels, which may not always * be available due to CPUID level capping or broken virtualization @@ -921,6 +954,9 @@ setup_smep(c); setup_smap(c); + /* Set up PCID */ + setup_pcid(c); + /* * The vendor-specific functions might have changed features. * Now we do "generic changes." @@ -1178,7 +1214,7 @@ [DEBUG_STACK - 1] = DEBUG_STKSZ }; -static DEFINE_PER_CPU_PAGE_ALIGNED(char, exception_stacks +DEFINE_PER_CPU_PAGE_ALIGNED_USER_MAPPED(char, exception_stacks [(N_EXCEPTION_STACKS - 1) * EXCEPTION_STKSZ + DEBUG_STKSZ]); /* May not be marked __init: used by software suspend */ @@ -1341,6 +1377,14 @@ * try to read it. */ cr4_init_shadow(); + if (!kaiser_enabled) { + /* + * secondary_startup_64() deferred setting PGE in cr4: + * probe_page_size_mask() sets it on the boot cpu, + * but it needs to be set on each secondary cpu. + */ + cr4_set_bits(X86_CR4_PGE); + } /* * Load microcode on this cpu if a valid microcode is available. diff -u linux-raspi2-4.4.0/arch/x86/kernel/cpu/mcheck/mce_amd.c linux-raspi2-4.4.0/arch/x86/kernel/cpu/mcheck/mce_amd.c --- linux-raspi2-4.4.0/arch/x86/kernel/cpu/mcheck/mce_amd.c +++ linux-raspi2-4.4.0/arch/x86/kernel/cpu/mcheck/mce_amd.c @@ -682,6 +682,9 @@ const char *name = th_names[bank]; int err = 0; + if (!dev) + return -ENODEV; + if (is_shared_bank(bank)) { nb = node_to_amd_nb(amd_get_nb_id(cpu)); diff -u linux-raspi2-4.4.0/arch/x86/kernel/cpu/microcode/intel.c linux-raspi2-4.4.0/arch/x86/kernel/cpu/microcode/intel.c --- linux-raspi2-4.4.0/arch/x86/kernel/cpu/microcode/intel.c +++ linux-raspi2-4.4.0/arch/x86/kernel/cpu/microcode/intel.c @@ -990,6 +990,18 @@ return 0; } +static bool is_blacklisted(unsigned int cpu) +{ + struct cpuinfo_x86 *c = &cpu_data(cpu); + + if (c->x86 == 6 && c->x86_model == 79) { + pr_err_once("late loading on model 79 is disabled.\n"); + return true; + } + + return false; +} + static enum ucode_state request_microcode_fw(int cpu, struct device *device, bool refresh_fw) { @@ -998,6 +1010,9 @@ const struct firmware *firmware; enum ucode_state ret; + if (is_blacklisted(cpu)) + return UCODE_NFOUND; + sprintf(name, "intel-ucode/%02x-%02x-%02x", c->x86, c->x86_model, c->x86_mask); @@ -1022,6 +1037,9 @@ static enum ucode_state request_microcode_user(int cpu, const void __user *buf, size_t size) { + if (is_blacklisted(cpu)) + return UCODE_NFOUND; + return generic_load_microcode(cpu, (void *)buf, size, &get_ucode_user); } diff -u linux-raspi2-4.4.0/arch/x86/kernel/kvm.c linux-raspi2-4.4.0/arch/x86/kernel/kvm.c --- linux-raspi2-4.4.0/arch/x86/kernel/kvm.c +++ linux-raspi2-4.4.0/arch/x86/kernel/kvm.c @@ -151,6 +151,8 @@ if (hlist_unhashed(&n.link)) break; + rcu_irq_exit(); + if (!n.halted) { local_irq_enable(); schedule(); @@ -159,11 +161,11 @@ /* * We cannot reschedule. So halt. */ - rcu_irq_exit(); native_safe_halt(); local_irq_disable(); - rcu_irq_enter(); } + + rcu_irq_enter(); } if (!n.halted) finish_wait(&n.wq, &wait); diff -u linux-raspi2-4.4.0/arch/x86/kernel/process.c linux-raspi2-4.4.0/arch/x86/kernel/process.c --- linux-raspi2-4.4.0/arch/x86/kernel/process.c +++ linux-raspi2-4.4.0/arch/x86/kernel/process.c @@ -40,7 +40,7 @@ * section. Since TSS's are completely CPU-local, we want them * on exact cacheline boundaries, to eliminate cacheline ping-pong. */ -__visible DEFINE_PER_CPU_SHARED_ALIGNED(struct tss_struct, cpu_tss) = { +__visible DEFINE_PER_CPU_SHARED_ALIGNED_USER_MAPPED(struct tss_struct, cpu_tss) = { .x86_tss = { .sp0 = TOP_OF_INIT_STACK, #ifdef CONFIG_X86_32 diff -u linux-raspi2-4.4.0/arch/x86/kernel/setup.c linux-raspi2-4.4.0/arch/x86/kernel/setup.c --- linux-raspi2-4.4.0/arch/x86/kernel/setup.c +++ linux-raspi2-4.4.0/arch/x86/kernel/setup.c @@ -112,6 +112,7 @@ #include #include #include +#include /* * max_low_pfn_mapped: highest direct mapped pfn under 4GB @@ -1016,6 +1017,12 @@ */ init_hypervisor_platform(); + /* + * This needs to happen right after XENPV is set on xen and + * kaiser_enabled is checked below in cleanup_highmap(). + */ + kaiser_check_boottime_disable(); + x86_init.resources.probe_roms(); /* after parse_early_param, so could debug it */ @@ -1048,6 +1055,13 @@ if (mtrr_trim_uncached_memory(max_pfn)) max_pfn = e820_end_of_ram_pfn(); + /* + * This call is required when the CPU does not support PAT. If + * mtrr_bp_init() invoked it already via pat_init() the call has no + * effect. + */ + init_cache_modes(); + #ifdef CONFIG_X86_32 /* max_low_pfn get updated here */ find_low_pfn_range(); diff -u linux-raspi2-4.4.0/arch/x86/kvm/cpuid.c linux-raspi2-4.4.0/arch/x86/kvm/cpuid.c --- linux-raspi2-4.4.0/arch/x86/kvm/cpuid.c +++ linux-raspi2-4.4.0/arch/x86/kvm/cpuid.c @@ -46,11 +46,18 @@ return ret; } +bool kvm_mpx_supported(void) +{ + return ((host_xcr0 & (XFEATURE_MASK_BNDREGS | XFEATURE_MASK_BNDCSR)) + && kvm_x86_ops->mpx_supported()); +} +EXPORT_SYMBOL_GPL(kvm_mpx_supported); + u64 kvm_supported_xcr0(void) { u64 xcr0 = KVM_SUPPORTED_XCR0 & host_xcr0; - if (!kvm_x86_ops->mpx_supported()) + if (!kvm_mpx_supported()) xcr0 &= ~(XFEATURE_MASK_BNDREGS | XFEATURE_MASK_BNDCSR); return xcr0; @@ -97,7 +104,7 @@ if (best && (best->eax & (F(XSAVES) | F(XSAVEC)))) best->ebx = xstate_required_size(vcpu->arch.xcr0, true); - vcpu->arch.eager_fpu = use_eager_fpu() || guest_cpuid_has_mpx(vcpu); + vcpu->arch.eager_fpu = use_eager_fpu(); if (vcpu->arch.eager_fpu) kvm_x86_ops->fpu_activate(vcpu); @@ -295,7 +302,7 @@ #endif unsigned f_rdtscp = kvm_x86_ops->rdtscp_supported() ? F(RDTSCP) : 0; unsigned f_invpcid = kvm_x86_ops->invpcid_supported() ? F(INVPCID) : 0; - unsigned f_mpx = kvm_x86_ops->mpx_supported() ? F(MPX) : 0; + unsigned f_mpx = kvm_mpx_supported() ? F(MPX) : 0; unsigned f_xsaves = kvm_x86_ops->xsaves_supported() ? F(XSAVES) : 0; /* cpuid 1.edx */ diff -u linux-raspi2-4.4.0/arch/x86/kvm/emulate.c linux-raspi2-4.4.0/arch/x86/kvm/emulate.c --- linux-raspi2-4.4.0/arch/x86/kvm/emulate.c +++ linux-raspi2-4.4.0/arch/x86/kvm/emulate.c @@ -2383,9 +2383,21 @@ } static int rsm_enter_protected_mode(struct x86_emulate_ctxt *ctxt, - u64 cr0, u64 cr4) + u64 cr0, u64 cr3, u64 cr4) { int bad; + u64 pcid; + + /* In order to later set CR4.PCIDE, CR3[11:0] must be zero. */ + pcid = 0; + if (cr4 & X86_CR4_PCIDE) { + pcid = cr3 & 0xfff; + cr3 &= ~0xfff; + } + + bad = ctxt->ops->set_cr(ctxt, 3, cr3); + if (bad) + return X86EMUL_UNHANDLEABLE; /* * First enable PAE, long mode needs it before CR0.PG = 1 is set. @@ -2404,6 +2416,12 @@ bad = ctxt->ops->set_cr(ctxt, 4, cr4); if (bad) return X86EMUL_UNHANDLEABLE; + if (pcid) { + bad = ctxt->ops->set_cr(ctxt, 3, cr3 | pcid); + if (bad) + return X86EMUL_UNHANDLEABLE; + } + } return X86EMUL_CONTINUE; @@ -2414,11 +2432,11 @@ struct desc_struct desc; struct desc_ptr dt; u16 selector; - u32 val, cr0, cr4; + u32 val, cr0, cr3, cr4; int i; cr0 = GET_SMSTATE(u32, smbase, 0x7ffc); - ctxt->ops->set_cr(ctxt, 3, GET_SMSTATE(u32, smbase, 0x7ff8)); + cr3 = GET_SMSTATE(u32, smbase, 0x7ff8); ctxt->eflags = GET_SMSTATE(u32, smbase, 0x7ff4) | X86_EFLAGS_FIXED; ctxt->_eip = GET_SMSTATE(u32, smbase, 0x7ff0); @@ -2460,14 +2478,14 @@ ctxt->ops->set_smbase(ctxt, GET_SMSTATE(u32, smbase, 0x7ef8)); - return rsm_enter_protected_mode(ctxt, cr0, cr4); + return rsm_enter_protected_mode(ctxt, cr0, cr3, cr4); } static int rsm_load_state_64(struct x86_emulate_ctxt *ctxt, u64 smbase) { struct desc_struct desc; struct desc_ptr dt; - u64 val, cr0, cr4; + u64 val, cr0, cr3, cr4; u32 base3; u16 selector; int i, r; @@ -2484,7 +2502,7 @@ ctxt->ops->set_dr(ctxt, 7, (val & DR7_VOLATILE) | DR7_FIXED_1); cr0 = GET_SMSTATE(u64, smbase, 0x7f58); - ctxt->ops->set_cr(ctxt, 3, GET_SMSTATE(u64, smbase, 0x7f50)); + cr3 = GET_SMSTATE(u64, smbase, 0x7f50); cr4 = GET_SMSTATE(u64, smbase, 0x7f48); ctxt->ops->set_smbase(ctxt, GET_SMSTATE(u32, smbase, 0x7f00)); val = GET_SMSTATE(u64, smbase, 0x7ed0); @@ -2512,7 +2530,7 @@ dt.address = GET_SMSTATE(u64, smbase, 0x7e68); ctxt->ops->set_gdt(ctxt, &dt); - r = rsm_enter_protected_mode(ctxt, cr0, cr4); + r = rsm_enter_protected_mode(ctxt, cr0, cr3, cr4); if (r != X86EMUL_CONTINUE) return r; diff -u linux-raspi2-4.4.0/arch/x86/kvm/vmx.c linux-raspi2-4.4.0/arch/x86/kvm/vmx.c --- linux-raspi2-4.4.0/arch/x86/kvm/vmx.c +++ linux-raspi2-4.4.0/arch/x86/kvm/vmx.c @@ -864,7 +864,6 @@ static u64 construct_eptp(unsigned long root_hpa); static void kvm_cpu_vmxon(u64 addr); static void kvm_cpu_vmxoff(void); -static bool vmx_mpx_supported(void); static bool vmx_xsaves_supported(void); static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr); static void vmx_set_segment(struct kvm_vcpu *vcpu, @@ -2029,8 +2028,8 @@ /* Allow posting non-urgent interrupts */ new.sn = 0; - } while (cmpxchg(&pi_desc->control, old.control, - new.control) != old.control); + } while (cmpxchg64(&pi_desc->control, old.control, + new.control) != old.control); } /* * Switches to specified vcpu, until a matching vcpu_put(), but assumes @@ -2542,7 +2541,7 @@ VM_EXIT_LOAD_IA32_EFER | VM_EXIT_SAVE_IA32_EFER | VM_EXIT_SAVE_VMX_PREEMPTION_TIMER | VM_EXIT_ACK_INTR_ON_EXIT; - if (vmx_mpx_supported()) + if (kvm_mpx_supported()) vmx->nested.nested_vmx_exit_ctls_high |= VM_EXIT_CLEAR_BNDCFGS; /* We support free control of debug control saving. */ @@ -2563,7 +2562,7 @@ VM_ENTRY_LOAD_IA32_PAT; vmx->nested.nested_vmx_entry_ctls_high |= (VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR | VM_ENTRY_LOAD_IA32_EFER); - if (vmx_mpx_supported()) + if (kvm_mpx_supported()) vmx->nested.nested_vmx_entry_ctls_high |= VM_ENTRY_LOAD_BNDCFGS; /* We support free control of debug control loading. */ @@ -2814,7 +2813,8 @@ msr_info->data = vmcs_readl(GUEST_SYSENTER_ESP); break; case MSR_IA32_BNDCFGS: - if (!vmx_mpx_supported()) + if (!kvm_mpx_supported() || + (!msr_info->host_initiated && !guest_cpuid_has_mpx(vcpu))) return 1; msr_info->data = vmcs_read64(GUEST_BNDCFGS); break; @@ -2891,7 +2891,11 @@ vmcs_writel(GUEST_SYSENTER_ESP, data); break; case MSR_IA32_BNDCFGS: - if (!vmx_mpx_supported()) + if (!kvm_mpx_supported() || + (!msr_info->host_initiated && !guest_cpuid_has_mpx(vcpu))) + return 1; + if (is_noncanonical_address(data & PAGE_MASK) || + (data & MSR_IA32_BNDCFGS_RSVD)) return 1; vmcs_write64(GUEST_BNDCFGS, data); break; @@ -3364,7 +3368,7 @@ for (i = j = 0; i < max_shadow_read_write_fields; i++) { switch (shadow_read_write_fields[i]) { case GUEST_BNDCFGS: - if (!vmx_mpx_supported()) + if (!kvm_mpx_supported()) continue; break; default: @@ -4538,21 +4542,30 @@ { #ifdef CONFIG_SMP if (vcpu->mode == IN_GUEST_MODE) { - struct vcpu_vmx *vmx = to_vmx(vcpu); - /* - * Currently, we don't support urgent interrupt, - * all interrupts are recognized as non-urgent - * interrupt, so we cannot post interrupts when - * 'SN' is set. + * The vector of interrupt to be delivered to vcpu had + * been set in PIR before this function. + * + * Following cases will be reached in this block, and + * we always send a notification event in all cases as + * explained below. * - * If the vcpu is in guest mode, it means it is - * running instead of being scheduled out and - * waiting in the run queue, and that's the only - * case when 'SN' is set currently, warning if - * 'SN' is set. + * Case 1: vcpu keeps in non-root mode. Sending a + * notification event posts the interrupt to vcpu. + * + * Case 2: vcpu exits to root mode and is still + * runnable. PIR will be synced to vIRR before the + * next vcpu entry. Sending a notification event in + * this case has no effect, as vcpu is not in root + * mode. + * + * Case 3: vcpu exits to root mode and is blocked. + * vcpu_block() has already synced PIR to vIRR and + * never blocks vcpu if vIRR is not cleared. Therefore, + * a blocked vcpu here does not wait for any requested + * interrupts in PIR, and sending a notification event + * which has no effect is safe here. */ - WARN_ON_ONCE(pi_test_sn(&vmx->pi_desc)); apic->send_IPI_mask(get_cpu_mask(vcpu->cpu), POSTED_INTR_VECTOR); @@ -6260,7 +6273,6 @@ vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false); vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false); vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false); - vmx_disable_intercept_for_msr(MSR_IA32_BNDCFGS, true); memcpy(vmx_msr_bitmap_legacy_x2apic, vmx_msr_bitmap_legacy, PAGE_SIZE); @@ -9683,6 +9695,11 @@ vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, page_to_phys(vmx->nested.virtual_apic_page)); vmcs_write32(TPR_THRESHOLD, vmcs12->tpr_threshold); + } else { +#ifdef CONFIG_X86_64 + exec_control |= CPU_BASED_CR8_LOAD_EXITING | + CPU_BASED_CR8_STORE_EXITING; +#endif } if (cpu_has_vmx_msr_bitmap() && @@ -10268,7 +10285,7 @@ vmcs12->guest_sysenter_cs = vmcs_read32(GUEST_SYSENTER_CS); vmcs12->guest_sysenter_esp = vmcs_readl(GUEST_SYSENTER_ESP); vmcs12->guest_sysenter_eip = vmcs_readl(GUEST_SYSENTER_EIP); - if (vmx_mpx_supported()) + if (kvm_mpx_supported()) vmcs12->guest_bndcfgs = vmcs_read64(GUEST_BNDCFGS); if (nested_cpu_has_xsaves(vmcs12)) vmcs12->xss_exit_bitmap = vmcs_read64(XSS_EXIT_BITMAP); @@ -10355,7 +10372,7 @@ * (KVM doesn't change it)- no reason to call set_cr4_guest_host_mask(); */ vcpu->arch.cr4_guest_owned_bits = ~vmcs_readl(CR4_GUEST_HOST_MASK); - kvm_set_cr4(vcpu, vmcs12->host_cr4); + vmx_set_cr4(vcpu, vmcs12->host_cr4); nested_ept_uninit_mmu_context(vcpu); @@ -10691,8 +10708,8 @@ /* set 'NV' to 'wakeup vector' */ new.nv = POSTED_INTR_WAKEUP_VECTOR; - } while (cmpxchg(&pi_desc->control, old.control, - new.control) != old.control); + } while (cmpxchg64(&pi_desc->control, old.control, + new.control) != old.control); return 0; } @@ -10723,8 +10740,8 @@ /* set 'NV' to 'notification vector' */ new.nv = POSTED_INTR_VECTOR; - } while (cmpxchg(&pi_desc->control, old.control, - new.control) != old.control); + } while (cmpxchg64(&pi_desc->control, old.control, + new.control) != old.control); if(vcpu->pre_pcpu != -1) { spin_lock_irqsave( @@ -10755,7 +10772,7 @@ struct kvm_lapic_irq irq; struct kvm_vcpu *vcpu; struct vcpu_data vcpu_info; - int idx, ret = -EINVAL; + int idx, ret = 0; if (!kvm_arch_has_assigned_device(kvm) || !irq_remapping_cap(IRQ_POSTING_CAP)) @@ -10763,7 +10780,12 @@ idx = srcu_read_lock(&kvm->irq_srcu); irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu); - BUG_ON(guest_irq >= irq_rt->nr_rt_entries); + if (guest_irq >= irq_rt->nr_rt_entries || + hlist_empty(&irq_rt->map[guest_irq])) { + pr_warn_once("no route for guest_irq %u/%u (broken user space?)\n", + guest_irq, irq_rt->nr_rt_entries); + goto out; + } hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) { if (e->type != KVM_IRQ_ROUTING_MSI) @@ -10793,12 +10815,8 @@ if (set) ret = irq_set_vcpu_affinity(host_irq, &vcpu_info); - else { - /* suppress notification event before unposting */ - pi_set_sn(vcpu_to_pi_desc(vcpu)); + else ret = irq_set_vcpu_affinity(host_irq, NULL); - pi_clear_sn(vcpu_to_pi_desc(vcpu)); - } if (ret < 0) { printk(KERN_INFO "%s: failed to update PI IRTE\n", diff -u linux-raspi2-4.4.0/arch/x86/kvm/x86.c linux-raspi2-4.4.0/arch/x86/kvm/x86.c --- linux-raspi2-4.4.0/arch/x86/kvm/x86.c +++ linux-raspi2-4.4.0/arch/x86/kvm/x86.c @@ -759,7 +759,8 @@ return 1; /* PCID can not be enabled when cr3[11:0]!=000H or EFER.LMA=0 */ - if ((kvm_read_cr3(vcpu) & X86_CR3_PCID_MASK) || !is_long_mode(vcpu)) + if ((kvm_read_cr3(vcpu) & X86_CR3_PCID_ASID_MASK) || + !is_long_mode(vcpu)) return 1; } diff -u linux-raspi2-4.4.0/arch/x86/lib/copy_user_64.S linux-raspi2-4.4.0/arch/x86/lib/copy_user_64.S --- linux-raspi2-4.4.0/arch/x86/lib/copy_user_64.S +++ linux-raspi2-4.4.0/arch/x86/lib/copy_user_64.S @@ -80,7 +80,7 @@ movl %edx,%ecx andl $63,%edx shrl $6,%ecx - jz 17f + jz .L_copy_short_string 1: movq (%rsi),%r8 2: movq 1*8(%rsi),%r9 3: movq 2*8(%rsi),%r10 @@ -101,7 +101,8 @@ leaq 64(%rdi),%rdi decl %ecx jnz 1b -17: movl %edx,%ecx +.L_copy_short_string: + movl %edx,%ecx andl $7,%edx shrl $3,%ecx jz 20f @@ -215,6 +216,8 @@ */ ENTRY(copy_user_enhanced_fast_string) ASM_STAC + cmpl $64,%edx + jb .L_copy_short_string /* less then 64 bytes, avoid the costly 'rep' */ movl %edx,%ecx 1: rep movsb diff -u linux-raspi2-4.4.0/arch/x86/mm/init.c linux-raspi2-4.4.0/arch/x86/mm/init.c --- linux-raspi2-4.4.0/arch/x86/mm/init.c +++ linux-raspi2-4.4.0/arch/x86/mm/init.c @@ -165,7 +165,7 @@ cr4_set_bits_and_update_boot(X86_CR4_PSE); /* Enable PGE if available */ - if (cpu_has_pge) { + if (cpu_has_pge && !kaiser_enabled) { cr4_set_bits_and_update_boot(X86_CR4_PGE); __supported_pte_mask |= _PAGE_GLOBAL; } else diff -u linux-raspi2-4.4.0/arch/x86/mm/init_64.c linux-raspi2-4.4.0/arch/x86/mm/init_64.c --- linux-raspi2-4.4.0/arch/x86/mm/init_64.c +++ linux-raspi2-4.4.0/arch/x86/mm/init_64.c @@ -323,6 +323,16 @@ continue; if (vaddr < (unsigned long) _text || vaddr > end) set_pmd(pmd, __pmd(0)); + else if (kaiser_enabled) { + /* + * level2_kernel_pgt is initialized with _PAGE_GLOBAL: + * clear that now. This is not important, so long as + * CR4.PGE remains clear, but it removes an anomaly. + * Physical mapping setup below avoids _PAGE_GLOBAL + * by use of massage_pgprot() inside pfn_pte() etc. + */ + set_pmd(pmd, pmd_clear_flags(*pmd, _PAGE_GLOBAL)); + } } } diff -u linux-raspi2-4.4.0/arch/x86/mm/kasan_init_64.c linux-raspi2-4.4.0/arch/x86/mm/kasan_init_64.c --- linux-raspi2-4.4.0/arch/x86/mm/kasan_init_64.c +++ linux-raspi2-4.4.0/arch/x86/mm/kasan_init_64.c @@ -122,10 +122,15 @@ (void *)KASAN_SHADOW_END); - memset(kasan_zero_page, 0, PAGE_SIZE); - load_cr3(init_level4_pgt); __flush_tlb_all(); - init_task.kasan_depth = 0; + /* + * kasan_zero_page has been used as early shadow memory, thus it may + * contain some garbage. Now we can clear it, since after the TLB flush + * no one should write to it. + */ + memset(kasan_zero_page, 0, PAGE_SIZE); + + init_task.kasan_depth = 0; pr_info("KernelAddressSanitizer initialized\n"); } diff -u linux-raspi2-4.4.0/arch/x86/mm/pageattr.c linux-raspi2-4.4.0/arch/x86/mm/pageattr.c --- linux-raspi2-4.4.0/arch/x86/mm/pageattr.c +++ linux-raspi2-4.4.0/arch/x86/mm/pageattr.c @@ -52,6 +52,7 @@ #define CPA_FLUSHTLB 1 #define CPA_ARRAY 2 #define CPA_PAGES_ARRAY 4 +#define CPA_FREE_PAGETABLES 8 #ifdef CONFIG_PROC_FS static unsigned long direct_pages_count[PG_LEVEL_NUM]; @@ -723,10 +724,13 @@ return 0; } -static bool try_to_free_pte_page(pte_t *pte) +static bool try_to_free_pte_page(struct cpa_data *cpa, pte_t *pte) { int i; + if (!(cpa->flags & CPA_FREE_PAGETABLES)) + return false; + for (i = 0; i < PTRS_PER_PTE; i++) if (!pte_none(pte[i])) return false; @@ -735,10 +739,13 @@ return true; } -static bool try_to_free_pmd_page(pmd_t *pmd) +static bool try_to_free_pmd_page(struct cpa_data *cpa, pmd_t *pmd) { int i; + if (!(cpa->flags & CPA_FREE_PAGETABLES)) + return false; + for (i = 0; i < PTRS_PER_PMD; i++) if (!pmd_none(pmd[i])) return false; @@ -759,7 +766,9 @@ return true; } -static bool unmap_pte_range(pmd_t *pmd, unsigned long start, unsigned long end) +static bool unmap_pte_range(struct cpa_data *cpa, pmd_t *pmd, + unsigned long start, + unsigned long end) { pte_t *pte = pte_offset_kernel(pmd, start); @@ -770,22 +779,23 @@ pte++; } - if (try_to_free_pte_page((pte_t *)pmd_page_vaddr(*pmd))) { + if (try_to_free_pte_page(cpa, (pte_t *)pmd_page_vaddr(*pmd))) { pmd_clear(pmd); return true; } return false; } -static void __unmap_pmd_range(pud_t *pud, pmd_t *pmd, +static void __unmap_pmd_range(struct cpa_data *cpa, pud_t *pud, pmd_t *pmd, unsigned long start, unsigned long end) { - if (unmap_pte_range(pmd, start, end)) - if (try_to_free_pmd_page((pmd_t *)pud_page_vaddr(*pud))) + if (unmap_pte_range(cpa, pmd, start, end)) + if (try_to_free_pmd_page(cpa, (pmd_t *)pud_page_vaddr(*pud))) pud_clear(pud); } -static void unmap_pmd_range(pud_t *pud, unsigned long start, unsigned long end) +static void unmap_pmd_range(struct cpa_data *cpa, pud_t *pud, + unsigned long start, unsigned long end) { pmd_t *pmd = pmd_offset(pud, start); @@ -796,7 +806,7 @@ unsigned long next_page = (start + PMD_SIZE) & PMD_MASK; unsigned long pre_end = min_t(unsigned long, end, next_page); - __unmap_pmd_range(pud, pmd, start, pre_end); + __unmap_pmd_range(cpa, pud, pmd, start, pre_end); start = pre_end; pmd++; @@ -809,7 +819,8 @@ if (pmd_large(*pmd)) pmd_clear(pmd); else - __unmap_pmd_range(pud, pmd, start, start + PMD_SIZE); + __unmap_pmd_range(cpa, pud, pmd, + start, start + PMD_SIZE); start += PMD_SIZE; pmd++; @@ -819,17 +830,19 @@ * 4K leftovers? */ if (start < end) - return __unmap_pmd_range(pud, pmd, start, end); + return __unmap_pmd_range(cpa, pud, pmd, start, end); /* * Try again to free the PMD page if haven't succeeded above. */ if (!pud_none(*pud)) - if (try_to_free_pmd_page((pmd_t *)pud_page_vaddr(*pud))) + if (try_to_free_pmd_page(cpa, (pmd_t *)pud_page_vaddr(*pud))) pud_clear(pud); } -static void unmap_pud_range(pgd_t *pgd, unsigned long start, unsigned long end) +static void __unmap_pud_range(struct cpa_data *cpa, pgd_t *pgd, + unsigned long start, + unsigned long end) { pud_t *pud = pud_offset(pgd, start); @@ -840,7 +853,7 @@ unsigned long next_page = (start + PUD_SIZE) & PUD_MASK; unsigned long pre_end = min_t(unsigned long, end, next_page); - unmap_pmd_range(pud, start, pre_end); + unmap_pmd_range(cpa, pud, start, pre_end); start = pre_end; pud++; @@ -854,7 +867,7 @@ if (pud_large(*pud)) pud_clear(pud); else - unmap_pmd_range(pud, start, start + PUD_SIZE); + unmap_pmd_range(cpa, pud, start, start + PUD_SIZE); start += PUD_SIZE; pud++; @@ -864,7 +877,7 @@ * 2M leftovers? */ if (start < end) - unmap_pmd_range(pud, start, end); + unmap_pmd_range(cpa, pud, start, end); /* * No need to try to free the PUD page because we'll free it in @@ -872,6 +885,24 @@ */ } +static void unmap_pud_range(pgd_t *pgd, unsigned long start, unsigned long end) +{ + struct cpa_data cpa = { + .flags = CPA_FREE_PAGETABLES, + }; + + __unmap_pud_range(&cpa, pgd, start, end); +} + +void unmap_pud_range_nofree(pgd_t *pgd, unsigned long start, unsigned long end) +{ + struct cpa_data cpa = { + .flags = 0, + }; + + __unmap_pud_range(&cpa, pgd, start, end); +} + static void unmap_pgd_range(pgd_t *root, unsigned long addr, unsigned long end) { pgd_t *pgd_entry = root + pgd_index(addr); diff -u linux-raspi2-4.4.0/arch/x86/mm/pat.c linux-raspi2-4.4.0/arch/x86/mm/pat.c --- linux-raspi2-4.4.0/arch/x86/mm/pat.c +++ linux-raspi2-4.4.0/arch/x86/mm/pat.c @@ -36,14 +36,14 @@ #undef pr_fmt #define pr_fmt(fmt) "" fmt -static bool boot_cpu_done; - -static int __read_mostly __pat_enabled = IS_ENABLED(CONFIG_X86_PAT); -static void init_cache_modes(void); +static bool __read_mostly boot_cpu_done; +static bool __read_mostly pat_disabled = !IS_ENABLED(CONFIG_X86_PAT); +static bool __read_mostly pat_initialized; +static bool __read_mostly init_cm_done; void pat_disable(const char *reason) { - if (!__pat_enabled) + if (pat_disabled) return; if (boot_cpu_done) { @@ -51,10 +51,8 @@ return; } - __pat_enabled = 0; + pat_disabled = true; pr_info("x86/PAT: %s\n", reason); - - init_cache_modes(); } static int __init nopat(char *str) @@ -66,7 +64,7 @@ bool pat_enabled(void) { - return !!__pat_enabled; + return pat_initialized; } EXPORT_SYMBOL_GPL(pat_enabled); @@ -204,6 +202,8 @@ update_cache_mode_entry(i, cache); } pr_info("x86/PAT: Configuration [0-7]: %s\n", pat_msg); + + init_cm_done = true; } #define PAT(x, y) ((u64)PAT_ ## y << ((x)*8)) @@ -224,6 +224,7 @@ } wrmsrl(MSR_IA32_CR_PAT, pat); + pat_initialized = true; __init_cache_modes(pat); } @@ -241,10 +242,9 @@ wrmsrl(MSR_IA32_CR_PAT, pat); } -static void init_cache_modes(void) +void init_cache_modes(void) { u64 pat = 0; - static int init_cm_done; if (init_cm_done) return; @@ -286,8 +286,6 @@ } __init_cache_modes(pat); - - init_cm_done = 1; } /** @@ -305,10 +303,8 @@ u64 pat; struct cpuinfo_x86 *c = &boot_cpu_data; - if (!pat_enabled()) { - init_cache_modes(); + if (pat_disabled) return; - } if ((c->x86_vendor == X86_VENDOR_INTEL) && (((c->x86 == 0x6) && (c->x86_model <= 0xd)) || diff -u linux-raspi2-4.4.0/arch/x86/mm/tlb.c linux-raspi2-4.4.0/arch/x86/mm/tlb.c --- linux-raspi2-4.4.0/arch/x86/mm/tlb.c +++ linux-raspi2-4.4.0/arch/x86/mm/tlb.c @@ -6,13 +6,14 @@ #include #include #include +#include #include #include #include #include #include -#include +#include /* * Smarter SMP flushing macros. @@ -28,12 +29,44 @@ * Implement flush IPI by CALL_FUNCTION_VECTOR, Alex Shi */ +#ifdef CONFIG_SMP + struct flush_tlb_info { struct mm_struct *flush_mm; unsigned long flush_start; unsigned long flush_end; }; +static void load_new_mm_cr3(pgd_t *pgdir) +{ + unsigned long new_mm_cr3 = __pa(pgdir); + + if (kaiser_enabled) { + /* + * We reuse the same PCID for different tasks, so we must + * flush all the entries for the PCID out when we change tasks. + * Flush KERN below, flush USER when returning to userspace in + * kaiser's SWITCH_USER_CR3 (_SWITCH_TO_USER_CR3) macro. + * + * invpcid_flush_single_context(X86_CR3_PCID_ASID_USER) could + * do it here, but can only be used if X86_FEATURE_INVPCID is + * available - and many machines support pcid without invpcid. + * + * If X86_CR3_PCID_KERN_FLUSH actually added something, then it + * would be needed in the write_cr3() below - if PCIDs enabled. + */ + BUILD_BUG_ON(X86_CR3_PCID_KERN_FLUSH); + kaiser_flush_tlb_on_return_to_user(); + } + + /* + * Caution: many callers of this function expect + * that load_cr3() is serializing and orders TLB + * fills with respect to the mm_cpumask writes. + */ + write_cr3(new_mm_cr3); +} + /* * We cannot call mmdrop() because we are in interrupt context, * instead update mm->cpu_vm_mask. @@ -45,7 +78,7 @@ BUG(); if (cpumask_test_cpu(cpu, mm_cpumask(active_mm))) { cpumask_clear_cpu(cpu, mm_cpumask(active_mm)); - load_cr3(swapper_pg_dir); + load_new_mm_cr3(swapper_pg_dir); /* * This gets called in the idle path where RCU * functions differently. Tracing normally @@ -57,6 +90,108 @@ } EXPORT_SYMBOL_GPL(leave_mm); +#endif /* CONFIG_SMP */ + +void switch_mm(struct mm_struct *prev, struct mm_struct *next, + struct task_struct *tsk) +{ + unsigned cpu = smp_processor_id(); + + if (likely(prev != next)) { +#ifdef CONFIG_SMP + this_cpu_write(cpu_tlbstate.state, TLBSTATE_OK); + this_cpu_write(cpu_tlbstate.active_mm, next); +#endif + cpumask_set_cpu(cpu, mm_cpumask(next)); + + /* + * Re-load page tables. + * + * This logic has an ordering constraint: + * + * CPU 0: Write to a PTE for 'next' + * CPU 0: load bit 1 in mm_cpumask. if nonzero, send IPI. + * CPU 1: set bit 1 in next's mm_cpumask + * CPU 1: load from the PTE that CPU 0 writes (implicit) + * + * We need to prevent an outcome in which CPU 1 observes + * the new PTE value and CPU 0 observes bit 1 clear in + * mm_cpumask. (If that occurs, then the IPI will never + * be sent, and CPU 0's TLB will contain a stale entry.) + * + * The bad outcome can occur if either CPU's load is + * reordered before that CPU's store, so both CPUs must + * execute full barriers to prevent this from happening. + * + * Thus, switch_mm needs a full barrier between the + * store to mm_cpumask and any operation that could load + * from next->pgd. TLB fills are special and can happen + * due to instruction fetches or for no reason at all, + * and neither LOCK nor MFENCE orders them. + * Fortunately, load_cr3() is serializing and gives the + * ordering guarantee we need. + * + */ + load_new_mm_cr3(next->pgd); + + trace_tlb_flush(TLB_FLUSH_ON_TASK_SWITCH, TLB_FLUSH_ALL); + + /* Stop flush ipis for the previous mm */ + cpumask_clear_cpu(cpu, mm_cpumask(prev)); + + /* Load per-mm CR4 state */ + load_mm_cr4(next); + +#ifdef CONFIG_MODIFY_LDT_SYSCALL + /* + * Load the LDT, if the LDT is different. + * + * It's possible that prev->context.ldt doesn't match + * the LDT register. This can happen if leave_mm(prev) + * was called and then modify_ldt changed + * prev->context.ldt but suppressed an IPI to this CPU. + * In this case, prev->context.ldt != NULL, because we + * never set context.ldt to NULL while the mm still + * exists. That means that next->context.ldt != + * prev->context.ldt, because mms never share an LDT. + */ + if (unlikely(prev->context.ldt != next->context.ldt)) + load_mm_ldt(next); +#endif + } +#ifdef CONFIG_SMP + else { + this_cpu_write(cpu_tlbstate.state, TLBSTATE_OK); + BUG_ON(this_cpu_read(cpu_tlbstate.active_mm) != next); + + if (!cpumask_test_cpu(cpu, mm_cpumask(next))) { + /* + * On established mms, the mm_cpumask is only changed + * from irq context, from ptep_clear_flush() while in + * lazy tlb mode, and here. Irqs are blocked during + * schedule, protecting us from simultaneous changes. + */ + cpumask_set_cpu(cpu, mm_cpumask(next)); + + /* + * We were in lazy tlb mode and leave_mm disabled + * tlb flush IPI delivery. We must reload CR3 + * to make sure to use no freed page tables. + * + * As above, load_cr3() is serializing and orders TLB + * fills with respect to the mm_cpumask write. + */ + load_new_mm_cr3(next->pgd); + trace_tlb_flush(TLB_FLUSH_ON_TASK_SWITCH, TLB_FLUSH_ALL); + load_mm_cr4(next); + load_mm_ldt(next); + } + } +#endif +} + +#ifdef CONFIG_SMP + /* * The flush IPI assumes that a thread switch happens in this order: * [cpu0: the cpu that switches] @@ -353,0 +489,2 @@ + +#endif /* CONFIG_SMP */ diff -u linux-raspi2-4.4.0/arch/x86/xen/enlighten.c linux-raspi2-4.4.0/arch/x86/xen/enlighten.c --- linux-raspi2-4.4.0/arch/x86/xen/enlighten.c +++ linux-raspi2-4.4.0/arch/x86/xen/enlighten.c @@ -433,6 +433,12 @@ ~((1 << X86_FEATURE_MTRR) | /* disable MTRR */ (1 << X86_FEATURE_ACC)); /* thermal monitoring */ + /* + * Xen PV would need some work to support PCID: CR3 handling as well + * as xen_flush_tlb_others() would need updating. + */ + cpuid_leaf1_ecx_mask &= ~(1 << (X86_FEATURE_PCID % 32)); /* disable PCID */ + if (!xen_initial_domain()) cpuid_leaf1_edx_mask &= ~((1 << X86_FEATURE_ACPI)); /* disable ACPI */ diff -u linux-raspi2-4.4.0/block/bio.c linux-raspi2-4.4.0/block/bio.c --- linux-raspi2-4.4.0/block/bio.c +++ linux-raspi2-4.4.0/block/bio.c @@ -1320,6 +1320,7 @@ offset = uaddr & ~PAGE_MASK; for (j = cur_page; j < page_limit; j++) { unsigned int bytes = PAGE_SIZE - offset; + unsigned short prev_bi_vcnt = bio->bi_vcnt; if (len <= 0) break; @@ -1334,6 +1335,13 @@ bytes) break; + /* + * check if vector was merged with previous + * drop page reference if needed + */ + if (bio->bi_vcnt == prev_bi_vcnt) + put_page(pages[j]); + len -= bytes; offset = 0; } diff -u linux-raspi2-4.4.0/block/blk-core.c linux-raspi2-4.4.0/block/blk-core.c --- linux-raspi2-4.4.0/block/blk-core.c +++ linux-raspi2-4.4.0/block/blk-core.c @@ -217,7 +217,7 @@ **/ void blk_start_queue(struct request_queue *q) { - WARN_ON(!irqs_disabled()); + WARN_ON(!in_interrupt() && !irqs_disabled()); queue_flag_clear(QUEUE_FLAG_STOPPED, q); __blk_run_queue(q); diff -u linux-raspi2-4.4.0/block/blk-mq.c linux-raspi2-4.4.0/block/blk-mq.c --- linux-raspi2-4.4.0/block/blk-mq.c +++ linux-raspi2-4.4.0/block/blk-mq.c @@ -1295,13 +1295,13 @@ blk_queue_bounce(q, &bio); + blk_queue_split(q, &bio, q->bio_split); + if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) { bio_io_error(bio); return BLK_QC_T_NONE; } - blk_queue_split(q, &bio, q->bio_split); - if (!is_flush_fua && !blk_queue_nomerges(q) && blk_attempt_plug_merge(q, bio, &request_count, &same_queue_rq)) return BLK_QC_T_NONE; diff -u linux-raspi2-4.4.0/crypto/algif_skcipher.c linux-raspi2-4.4.0/crypto/algif_skcipher.c --- linux-raspi2-4.4.0/crypto/algif_skcipher.c +++ linux-raspi2-4.4.0/crypto/algif_skcipher.c @@ -86,8 +86,13 @@ } sgl = sreq->tsg; n = sg_nents(sgl); - for_each_sg(sgl, sg, n, i) - put_page(sg_page(sg)); + for_each_sg(sgl, sg, n, i) { + struct page *page = sg_page(sg); + + /* some SGs may not have a page mapped */ + if (page && atomic_read(&page->_count)) + put_page(page); + } kfree(sreq->tsg); } @@ -138,8 +143,10 @@ sg_init_table(sgl->sg, MAX_SGL_ENTS + 1); sgl->cur = 0; - if (sg) + if (sg) { sg_chain(sg, MAX_SGL_ENTS + 1, sgl->sg); + sg_unmark_end(sg + (MAX_SGL_ENTS - 1)); + } list_add_tail(&sgl->list, &ctx->tsgl); } diff -u linux-raspi2-4.4.0/crypto/asymmetric_keys/pkcs7_parser.c linux-raspi2-4.4.0/crypto/asymmetric_keys/pkcs7_parser.c --- linux-raspi2-4.4.0/crypto/asymmetric_keys/pkcs7_parser.c +++ linux-raspi2-4.4.0/crypto/asymmetric_keys/pkcs7_parser.c @@ -87,9 +87,12 @@ static int pkcs7_check_authattrs(struct pkcs7_message *msg) { struct pkcs7_signed_info *sinfo; - bool want; + bool want = false; sinfo = msg->signed_infos; + if (!sinfo) + goto inconsistent; + if (sinfo->authattrs) { want = true; msg->have_authattrs = true; diff -u linux-raspi2-4.4.0/crypto/shash.c linux-raspi2-4.4.0/crypto/shash.c --- linux-raspi2-4.4.0/crypto/shash.c +++ linux-raspi2-4.4.0/crypto/shash.c @@ -274,12 +274,14 @@ int shash_ahash_digest(struct ahash_request *req, struct shash_desc *desc) { - struct scatterlist *sg = req->src; - unsigned int offset = sg->offset; unsigned int nbytes = req->nbytes; + struct scatterlist *sg; + unsigned int offset; int err; - if (nbytes < min(sg->length, ((unsigned int)(PAGE_SIZE)) - offset)) { + if (nbytes && + (sg = req->src, offset = sg->offset, + nbytes < min(sg->length, ((unsigned int)(PAGE_SIZE)) - offset))) { void *data; data = kmap_atomic(sg_page(sg)); reverted: --- linux-raspi2-4.4.0/debian.master/abi/4.4.0-89.112/abiname +++ linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-89.112/abiname @@ -1 +0,0 @@ -89 reverted: --- linux-raspi2-4.4.0/debian.master/abi/4.4.0-89.112/amd64/generic +++ linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-89.112/amd64/generic @@ -1,18868 +0,0 @@ -EXPORT_SYMBOL arch/x86/kvm/kvm 0x21307503 kvm_cpu_has_pending_timer -EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe -EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble -EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL crypto/mcryptd 0x73892a61 mcryptd_arm_flusher -EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/acpi/nfit 0xa7e9a159 to_nfit_uuid -EXPORT_SYMBOL drivers/acpi/video 0x6de7f7ff acpi_video_get_backlight_type -EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister -EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register -EXPORT_SYMBOL drivers/acpi/video 0xdf6305b2 acpi_video_get_edid -EXPORT_SYMBOL drivers/acpi/video 0xe92ca535 acpi_video_set_dmi_backlight_type -EXPORT_SYMBOL drivers/atm/suni 0xb59a0e5b suni_init -EXPORT_SYMBOL drivers/atm/uPD98402 0xcbd910c5 uPD98402_init -EXPORT_SYMBOL drivers/bcma/bcma 0x6c87f3ad bcma_core_dma_translation -EXPORT_SYMBOL drivers/bcma/bcma 0x96442878 bcma_core_irq -EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str -EXPORT_SYMBOL drivers/block/paride/paride 0x04e32239 pi_init -EXPORT_SYMBOL drivers/block/paride/paride 0x0541e9fa pi_schedule_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x1b7edc3f pi_read_block -EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x4d5cf25e paride_unregister -EXPORT_SYMBOL drivers/block/paride/paride 0x719c6c02 pi_write_regr -EXPORT_SYMBOL drivers/block/paride/paride 0x75841946 pi_do_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x91e14a15 pi_release -EXPORT_SYMBOL drivers/block/paride/paride 0x97ddd472 pi_write_block -EXPORT_SYMBOL drivers/block/paride/paride 0xa1c15fd4 pi_connect -EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -EXPORT_SYMBOL drivers/block/paride/paride 0xbb303465 pi_read_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xcaaab296 pi_disconnect -EXPORT_SYMBOL drivers/block/paride/paride 0xef895180 paride_register -EXPORT_SYMBOL drivers/bluetooth/btbcm 0x0a6d360c btbcm_patchram -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fae3bac ipmi_addr_src_to_str -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x44a42b1b ipmi_get_smi_info -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x71516b90 ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8ed393a6 ipmi_register_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae3694b0 ipmi_smi_add_proc_entry -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xce461bc8 ipmi_smi_watcher_register -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg -EXPORT_SYMBOL drivers/char/nvram 0x0f28cb91 nvram_read_byte -EXPORT_SYMBOL drivers/char/nvram 0x17ff2c1d __nvram_read_byte -EXPORT_SYMBOL drivers/char/nvram 0x2adec1e0 __nvram_check_checksum -EXPORT_SYMBOL drivers/char/nvram 0x7da28f12 nvram_check_checksum -EXPORT_SYMBOL drivers/char/nvram 0x9ce3f83f nvram_write_byte -EXPORT_SYMBOL drivers/char/nvram 0xa8813189 __nvram_write_byte -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x1de53f3f st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x8f4b916c st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xcada85b9 st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xfc1089b3 st33zp24_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x03389096 xillybus_init_endpoint -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x97a4d09d xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xcbf3dda3 xillybus_endpoint_remove -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x065f5cd0 dw_dma_cyclic_start -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x1757631d dw_dma_cyclic_stop -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x5f402bf0 dw_dma_cyclic_prep -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x75035b47 dw_dma_cyclic_free -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xb768f15a dw_dma_get_dst_addr -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xd7c8f9bd dw_dma_get_src_addr -EXPORT_SYMBOL drivers/edac/edac_core 0xdaa2bf4d edac_mc_find -EXPORT_SYMBOL drivers/firewire/firewire-core 0x01c66179 fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x04d0f641 fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0829794a fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0f7d6af8 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1b52f552 fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1bf8afe3 fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x22dabeca fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x25365de2 fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x36bb7580 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3dc672c0 fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4b7c66f3 fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x504b0ac3 fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0x645b715f fw_core_add_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x67f2500c fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6c9afc9b fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fa47fbf fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x87e010bc fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8c2bd7c1 fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0x97e38c1f fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbd40562e fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbf686bc3 fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc101ad14 fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc6473ff7 fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc8c1ffd6 fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd1cc24cb fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd20b6409 fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd4e86221 fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0xee8c73a7 fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xfbde452d fw_core_handle_request -EXPORT_SYMBOL drivers/firmware/dcdbas 0xa75079d6 dcdbas_smi_request -EXPORT_SYMBOL drivers/fmc/fmc 0x1c79cc49 fmc_device_register -EXPORT_SYMBOL drivers/fmc/fmc 0x1f2f7e2e fmc_device_unregister_n -EXPORT_SYMBOL drivers/fmc/fmc 0x32e90d0c fmc_driver_register -EXPORT_SYMBOL drivers/fmc/fmc 0x3fdbfbd2 fmc_device_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0x447794d3 fmc_find_sdb_device -EXPORT_SYMBOL drivers/fmc/fmc 0x64afc280 fmc_reprogram -EXPORT_SYMBOL drivers/fmc/fmc 0x73a9dfcb fmc_driver_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0x7a0963db fmc_device_register_n -EXPORT_SYMBOL drivers/fmc/fmc 0x9c85f9a9 fmc_scan_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0xd17c8c8b fmc_free_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0xf5c5e821 fmc_show_sdb_tree -EXPORT_SYMBOL drivers/gpu/drm/amd/amdkfd/amdkfd 0x21402bc2 kgd2kfd_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x000fd2c6 drm_atomic_clean_old_fb -EXPORT_SYMBOL drivers/gpu/drm/drm 0x003cb54f drm_bridge_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x009790dd drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x00da1789 drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x018ba21b drm_compat_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x030d311a drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0452a0d4 drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05a05b09 drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06563805 drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06f89954 drm_vblank_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x076c0bb7 drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08c7fb11 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09cc461e drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09ced40c drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a67c624 drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b021294 drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bde7b03 drm_agp_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d0e1f33 drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d4c9bf2 drm_calc_vbltimestamp_from_scanoutpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0db22ef8 drm_pci_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7f4748 drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10182265 drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1054e10c drm_connector_unplug_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x113efbcb drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1188d8a9 drm_legacy_idlelock_take -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12246847 drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x124c43c9 drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x13618703 drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14e79d4d drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15444d40 drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15a07e40 drm_modeset_lock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1675783c drm_irq_install -EXPORT_SYMBOL drivers/gpu/drm/drm 0x168cd1bb drm_platform_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x169031c6 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18e48a6d drm_agp_unbind -EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1aff4e2c drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b89b901 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e18b0f4 drm_select_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e95a927 drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f4b63fc drm_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f6a9f87 drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fd9e7a5 drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23174572 drm_pci_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2321a14d drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23a01006 drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23f9e8f1 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26484f9e drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x286fdf03 drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ac91b4b drm_legacy_ioremapfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2addfe84 drm_atomic_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c1ebacb drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2db9aa1f drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ecedb1b drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f376f2d drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30dcb261 drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x311b4519 drm_irq_uninstall -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34c2aaf2 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3516afda drm_crtc_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0x359c0428 drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x360d1bcb drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3625dfc1 drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3626da2d drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3837ab69 drm_legacy_rmmap_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3abc2050 drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c20e769 drm_modeset_lock_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f3fd907 drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4160edab drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41fdb2cc drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42182f68 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4219741d drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42673475 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x43b56207 drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x457357ba drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4591d88d drm_bridge_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x475c9fd0 drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4888856f drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x492270a3 drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a9099a3 drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4af19c72 drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b9e7a25 drm_mode_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bdd624b drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4be713db drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d3e3d6f drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea7e8ed drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f531ba9 drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e91821 drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x515e4fce drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x520afcd4 drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x52fd0ca1 drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53ce5e1a drm_legacy_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54473d7a drm_dev_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55040b08 drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x557ee014 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55b3e797 drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55b3eea8 drm_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x577afa97 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5869fd86 drm_mode_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58ea1b04 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59dd08e0 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b1411cb drm_crtc_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c006959 drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7318dc drm_global_item_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x643c195e drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6512f48b drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6660a806 drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66a2b23f drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66c151a8 drm_vblank_pre_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66e2bc83 drm_property_reference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67c10a5d drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68a85e16 drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x69d26233 drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dd72b8b drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e743cf1 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e77c129 drm_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ecda39b drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71fff7e3 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x727596e4 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x727c8eab drm_atomic_legacy_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72bff02f drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x739fbd69 drm_legacy_rmmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x73ac97e1 drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x73c59bba drm_pci_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7401cc88 drm_edid_to_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7419efd2 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76758778 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76797cb5 drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x77453f6f drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7881bd92 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78e31483 drm_prime_sg_to_page_addr_arrays -EXPORT_SYMBOL drivers/gpu/drm/drm 0x790f4164 drm_agp_bind -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7940fb49 drm_legacy_addmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a03c688 drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a24a0e1 drm_bridge_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d1b2740 drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d26fffc drm_modeset_backoff_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e7e0b4f drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f5e4ffb drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82d7db18 drm_legacy_ioremap_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x830cd195 drm_get_pci_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83266ef7 drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8357cd64 drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83f2dc4d drm_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x84f69062 drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x85bd4e42 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86dc5442 drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871878df drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89f07f42 drm_bridge_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bcf9af8 drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cb09846 drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cbe20fc drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d391d24 drm_legacy_getsarea -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d410f43 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e33c398 drm_mode_create_dirty_info_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f30cd42 drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91352a6c drm_agp_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91605787 drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91891e3a drm_vblank_post_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92a12ce4 drm_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x933de764 drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93a58281 drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94a3dbac drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x97c4e9bd drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x988032bf drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9898e95b drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a01c3a8 drm_atomic_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b3f32d2 drm_panel_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9da8bb2a drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9df232e7 drm_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f1dd56b drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa268db71 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa34fff52 drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3e98b9f drm_ati_pcigart_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4de9565 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa51d7d95 drm_legacy_addbufs_agp -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa76119cb drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7c042f9 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7d05a72 drm_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa825aa86 drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa934ce70 drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xabd7c28c drm_legacy_ioremap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xacca57a7 drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad56bea1 drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xadbde493 drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf7ec01f drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb111bc1e drm_mode_validate_basic -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11e18d3 drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11f7065 drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1922e55 drm_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb224d60f drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb34de41f drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4798351 drm_agp_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4d7173c drm_platform_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5362b30 drm_ati_pcigart_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5540008 drm_global_item_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6ab5635 drm_pci_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6d59a83 drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb6796fb drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd1f86a3 drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd90e7cc drm_modeset_legacy_acquire_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdd79af1 drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe4f9274 drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbedf2e5e drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2c631f9 drm_mode_hsync -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3f962d7 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7c07834 drm_panel_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8203e79 drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc875a6bc drm_atomic_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8ac746b drm_mode_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcaa28b48 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcabf704d drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcac7440b drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb13eb8d drm_bridge_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb44193f drm_pcie_get_speed_cap_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb53fc25 drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb80edf1 drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc786338 drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc532bc drm_connector_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf48acec drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd29f0dc0 drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2b0828e drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3c34fd5 drm_unplug_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3d46d06 drm_mode_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd537a20e drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd76dfa22 drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9bc36 drm_mode_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8d6f478 drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb223e99 drm_dev_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb42416c drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb710b4d drm_vblank_no_hw_counter -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf478a23 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdffb25fc drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe02fad5f drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0d41be9 drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1dcf866 drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe31e836c drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe32ace21 drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe379cf2d drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4a8187d drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe522d4ba drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe59182e2 drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5f541be drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6258345 drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe63ec610 drm_legacy_idlelock_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe688ef0f drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6e9681d drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe89eb9f5 drm_framebuffer_reference -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe985e55e drm_agp_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe98d4c7c drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb2e0430 drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec47a85e drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xee3f91de drm_encoder_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xee70029c drm_framebuffer_unreference -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef0ae3a3 drm_property_unreference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef812b24 drm_agp_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0a2d20e drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0e1e6d4 drm_mode_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1789efd drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1dc64c9 drm_modeset_unlock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf24691a3 drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf285b94f drm_bridge_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf346c351 drm_legacy_addbufs_pci -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3e196a6 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf428e2c5 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf47f71b8 drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4c15bb0 drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf524c64f drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf629c116 drm_atomic_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf686a4be drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7d34579 drm_mm_dump_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7e17d47 drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf80dbfb6 drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf81e44ba drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf875e5ec drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8ca3fd1 drm_agp_bind_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8fd12fa drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf92ff326 drm_gem_dumb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9ad37c4 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb325563 drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb344282 drm_agp_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbf34871 drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc618818 drm_pcie_get_max_link_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfef35dbb drm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff385a04 drm_pci_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffa44048 drm_plane_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffdaaf50 drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x007a6df6 drm_helper_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00c218d0 drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01cd6189 drm_fb_helper_single_add_all_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01efaf63 __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0392a001 drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07e9ab17 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x097224a0 drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b6db3d8 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c5feff6 drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0cf85a89 drm_atomic_helper_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10c3f572 drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1348ced7 drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17fa0279 drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1bec68c5 drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e098275 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21b8ec43 drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22fce6fc drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23132024 drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2449fa14 drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x283002af drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28ff60ab drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2bc20352 drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d208848 drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d5006a3 drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30a2a6c3 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30ca63ae drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30e837ee drm_atomic_helper_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x325751d9 drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34c1adfa drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35c3b2c0 drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x376466ad drm_atomic_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38a74c9e drm_kms_helper_poll_enable_locked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a32f8d9 drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ba9a8b8 drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c3afea4 drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c419a93 drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d448b68 __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ecdc1da drm_dp_link_power_up -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40535555 drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x420eb9e2 drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49e14826 drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ac835d6 drm_has_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5233e58c drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54a72652 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5505595d drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55bab695 drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5614c07b drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59a7448f drm_primary_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b2f3025 drm_dp_link_power_down -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65ea54c3 drm_plane_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6621e936 drm_dp_aux_register_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67f4a1ce drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6863da14 drm_helper_crtc_mode_set_base -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6dbd2dd7 drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e2f1846 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x762ff90f __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76c86209 drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79efe2e1 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a453603 drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b057f2e drm_dp_link_probe -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b5cffd2 drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c9d97b5 drm_plane_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ec2c2a1 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f99723a drm_atomic_helper_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8095e2e2 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x814a12b1 drm_fb_helper_unlink_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82752a04 drm_dp_mst_port_has_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x842e74df drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86902d61 drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86fa438d drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8852780d drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x894fba73 drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c5bdeaa drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8cfe243c drm_primary_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8da7abbe drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e0f97cc drm_atomic_helper_framebuffer_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f2776fa drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f8ff49f drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8fc50431 drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93ddbbaa drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98f00222 drm_pick_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9973cb2e drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99c7372b drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a770a09 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e6f30b7 drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0a124af drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3bfed14 drm_plane_helper_check_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa42f8a20 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa55dc054 drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5a38f78 drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6272de6 drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa76a2829 __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9c69e01 drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaaf31527 drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaeaaa736 drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4c0f4a2 drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb74d5b19 drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7fd38d4 drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9524e55 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb5a79e8 drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd866bcf drm_dp_link_configure -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe984423 drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0218aa8 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0495f95 __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc306bc10 drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc49843ae drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6405632 drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6c4596f drm_helper_crtc_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7bbaef8 drm_fb_helper_fill_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8da5ba8 drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcae6228e drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcce6e74d drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xceb740cb drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcffdd4b8 drm_helper_probe_single_connector_modes_nomerge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd672f78c drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd986d2a3 drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdba39523 drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe06c348e drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe39b0904 drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5e5829e drm_fb_helper_fill_fix -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe68119c9 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe74d04f2 drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7e12b85 drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed2983c2 drm_fb_helper_release_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1bd6aed drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1ed62d1 drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf40255ae drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5e2e2e2 drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7794534 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9cb74d6 drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa08df88 drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa9d6c79 drm_dp_aux_unregister_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfab20ad5 drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfabbe773 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb8f7c4b drm_fb_helper_remove_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc18cb3a drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc5c2208 drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc9cf550 drm_atomic_helper_legacy_gamma_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfcfda14b drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd9cc723 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffa0f077 drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfff1e28c drm_fb_helper_add_one_connector -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0055bc41 ttm_object_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0bab7f47 ttm_read_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0cc37a24 ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x10b86f13 ttm_bo_clean_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x16253d85 ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1940e4cd ttm_write_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1ac201fb ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1e7a1053 ttm_bo_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x20545ab3 ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x22ec80fe ttm_vt_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x24765c33 ttm_read_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x28e05053 ttm_bo_move_ttm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2ae4b371 ttm_bo_mem_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3222284b ttm_mem_global_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3730d5d4 ttm_fbdev_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3743eec9 ttm_tt_set_placement_caching -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3e7b9c0e ttm_bo_add_to_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x43f57c10 ttm_mem_io_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4831309e ttm_prime_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4bb97932 ttm_agp_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e8dd264 ttm_bo_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x55628861 ttm_mem_io_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x564e1aee ttm_bo_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x579f346b ttm_bo_del_sub_from_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5ee6629f ttm_bo_manager_func -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6052860c ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6088bb66 ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x665f90b5 ttm_page_alloc_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a3d1035 ttm_dma_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c8dc6bf ttm_vt_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6e875de9 ttm_lock_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x740ecc77 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x81fcc666 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x836d8fd0 ttm_suspend_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x856b6439 ttm_bo_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8bfe56ca ttm_tt_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8ee6d20c ttm_agp_tt_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x938e06a6 ttm_bo_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x946d9ea3 ttm_write_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9667b9c4 ttm_bo_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x969c1d64 ttm_bo_synccpu_write_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d0eb91 ttm_ref_object_add -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9b5aa06a ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa4143857 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa5331d91 ttm_mem_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa6e76f88 ttm_mem_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa73a729e ttm_bo_init_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa7b34c32 ttm_bo_swapout_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaa871db7 ttm_bo_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xab4fb78d ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb05a2f46 ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb8b828b7 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc01ab1f4 ttm_pool_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc240fd06 ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc35f6ad4 ttm_bo_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc3b27ba6 ttm_agp_tt_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc4d4618d ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf49f835 ttm_suspend_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd0469842 ttm_bo_dma_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd63bbaae ttm_mem_io_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdef2900a ttm_bo_synccpu_write_grab -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe05b992e ttm_mem_io_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe39d0305 ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe48a34e1 ttm_mem_global_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe9118452 ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe9863a29 ttm_dma_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf5547666 ttm_pool_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf7055287 ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfa0f4641 ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfc5289be ttm_bo_evict_mm -EXPORT_SYMBOL drivers/hv/hv_vmbus 0x6c86b1a5 vmbus_sendpacket -EXPORT_SYMBOL drivers/hv/hv_vmbus 0x6efa3fa8 vmbus_sendpacket_ctl -EXPORT_SYMBOL drivers/hv/hv_vmbus 0x9da790cd vmbus_recvpacket -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0e2a6864 sch56xx_read_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0f5877d4 sch56xx_read_virtual_reg16 -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe5022f95 sch56xx_read_virtual_reg12 -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe61e6dc8 sch56xx_watchdog_register -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xed1d2a08 sch56xx_write_virtual_reg -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x22fc4a3f i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x3b674452 i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x8f491b01 i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x7014704e i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x7c25c7fa i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x3c4a7ca9 amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0afe487a mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0e97a5ae mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x17af83d2 mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x3b721120 mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x508f72fd mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x510aec07 mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x54e188b9 mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x597fbffb mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x802414ed mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9c3009eb mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9d31ab1c mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa1f23275 mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbc219fa0 mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbef80c96 mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe71d378f mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xeb2a25e8 mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x0c82afe8 st_accel_common_probe -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xa0d4b84b st_accel_common_remove -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x72eca0e0 iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xa2718c7f iio_triggered_buffer_setup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x0253b54a iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x443286bb iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xd0d63212 devm_iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xe3502d54 devm_iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x31d94342 hid_sensor_write_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x3be639c0 hid_sensor_read_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x50fc480c hid_sensor_parse_common_attributes -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x8178e391 hid_sensor_read_poll_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x99b621ee hid_sensor_read_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xef244d47 hid_sensor_write_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x684afea5 hid_sensor_setup_trigger -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xab42ec37 hid_sensor_power_state -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xd9707d49 hid_sensor_pm_ops -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xf7f4bb4c hid_sensor_remove_trigger -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x1192483f ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2607b2f3 ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x478b3e45 ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x4d613e42 ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x5df8b0b7 ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x912f8f14 ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x99c43ecf ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb82a40d9 ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xca723d42 ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x333558f4 ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x3f176908 ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x458acb8a ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x6573751b ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x6e0d8b80 ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x22d20d77 ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x68542123 ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xae199e26 ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0b832914 st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x16cc4cc6 st_sensors_get_buffer_element -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1a6b4bf8 st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x211168b6 st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2bed39e1 st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4446dd05 st_sensors_check_device_support -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x49145a77 st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x65aa13ed st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7c2cf6d0 st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x834c0697 st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8a5d6a40 st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x925d1354 st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9fdcc3eb st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa7b57304 st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xaad1ec08 st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd824cdb7 st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe80ec45d st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x29cf39ab st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xa49a734b st_sensors_match_acpi_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x2ffdf6f7 st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x7e175291 st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xd266ebdc st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x3ebdf275 hts221_probe -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x0c2b324a adis_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x1de4d192 adis_enable_irq -EXPORT_SYMBOL drivers/iio/industrialio 0x082a0d40 iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0x1af6d22f iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x2221e473 iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x32e3c297 iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0x566239eb iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0x6130c938 iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x6aae931f iio_triggered_buffer_predisable -EXPORT_SYMBOL drivers/iio/industrialio 0x86216145 iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x955dc06c iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x9933e927 iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x99f06915 iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xa04bc389 iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0xa79d335d iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0xabdd0c41 iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xb521351b iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xe4321ac0 iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0xfbab8151 iio_triggered_buffer_postenable -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x78d92085 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xd6badf8d iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x454112dc st_magn_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xea066efc st_magn_common_probe -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x829e2e91 ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x549c3876 st_press_common_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xb73b189f st_press_common_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x049ace30 rdma_addr_find_smac_by_sgid -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x06220ee6 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1edc4064 rdma_addr_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x9d9cabc5 rdma_addr_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xde6b4932 rdma_copy_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xed9eb7ec rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xf2555f25 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x079374b1 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x07fdc3cc ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0ef28034 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1e6e6fca ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x34b87886 ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x394984db ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4523d6dc cm_class -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x75f10d3d ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7bcee7c5 ib_send_cm_lap -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8dceb8e4 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x994db3a1 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa651039e ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb4b5bd87 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd2946186 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdd76a9b2 ib_send_cm_apr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf32d76bc ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf3a22384 ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfae1c12b ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0188315d ib_query_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a3d3cbd ib_modify_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ccfc4bc ib_create_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10693322 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12d2b448 ib_resolve_eth_dmac -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x134f3933 ib_alloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13c2662b ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x156916ae ib_destroy_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16c8163d ib_query_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20365755 ib_fmr_pool_map_phys -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x224ce196 ibnl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29eb95cb ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2cf7923c ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d319607 ib_find_cached_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f5b03db ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x316e109c ib_dealloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35aa5f70 ib_dealloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35bc3fe6 ib_create_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3766f35d ib_destroy_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3938a170 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a231863 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bdd2dc9 ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc095b5 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x436d1b38 ib_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45b5a819 ib_dereg_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57f35a1c ib_create_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b57d71b ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f61b853 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x619bb69c ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67fdb092 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f64494e ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x748d32bf ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7904b38b ib_get_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a0d0312 ib_alloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a742ae6 ib_find_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82240c9e ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d1565c7 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8dd0e489 ib_fmr_pool_unmap -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8dece6fc ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90298fb9 ib_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95f77c94 ib_alloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97df6981 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9fb111d3 ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa11beefd ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6279ec4 ibnl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6af15a5 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad444a44 ib_create_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae561a44 ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7841643 ib_destroy_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb91176da ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb865488 ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd6cd027 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc08c6620 ibnl_add_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc64e25d3 ib_find_gid_by_filter -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6b6881c ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc84cebae ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8eb398e ib_init_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcaa43d1a ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcacab26e ib_destroy_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb317b66 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce6a415e ib_dealloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa75c43 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3942507 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5ca7054 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6bd56c4 ib_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6c621dc ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd727eaa0 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9e9b246 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf8cc4c4 ib_umem_page_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1e47d8d ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3a8218d ib_umem_odp_map_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe41dfaf9 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7173e63 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea05d958 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea0980df ib_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2450ec6 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5b4eb8d ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5b5ebbd ib_dealloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf76e8174 ib_get_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa63d3d6 ib_get_dma_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc8e9764 ib_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd8147f7 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe1f6d7c ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x0bea1575 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x1775b891 ib_redirect_mad_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2eaa4bfc ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2ebf90f1 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x40fbfe4d ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x46c01532 ib_cancel_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x4abc0324 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x5b0bd8a9 ib_process_mad_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x752a4118 ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x94c878c4 ib_register_mad_snoop -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xb795b935 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xf33bce9d ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xf4601873 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x001a0580 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x05f51c4a ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x09bb5865 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x0b4d8c48 ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x11838857 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x1dc539e4 ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x287d1e73 ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x73bfa013 ib_init_ah_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x89938e70 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x98ca05f1 ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xce0a6b8e ib_sa_service_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x32c19568 ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb7b04bb4 ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x31ebd57b iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x354a8d88 iwpm_mapping_error_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4a21a22e iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x678711ad iwpm_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x69a23cfb iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6f2bdec2 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x74324116 iwpm_add_and_query_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9fa0a299 iwpm_add_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc3d99526 iwpm_remote_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc4d9294e iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xcafc487d iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd5f7ef21 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xdaea7a67 iwpm_ack_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xedc7ccfb iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf838ed31 iwpm_register_pid_cb -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x07d5971a rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x123e64cd rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x161ad1e7 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1eb736ea rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2af16217 rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x39b39cd0 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3f9afb4c rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x450f8086 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x508ae4c2 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x54d30a04 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5d071931 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x66c0afd8 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6bd335a1 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6d369102 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x836f39a2 rdma_create_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x92706185 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa65a3556 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb2cd53ee rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd0347dac rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe5f6397b rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xee034191 rdma_set_ib_paths -EXPORT_SYMBOL drivers/input/gameport/gameport 0x0a91ee2e gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x128da467 gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x255fa7d0 gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x2c07b38b gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0x3654e502 gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0x4c261a89 __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x55a3517c gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0x5a21a50a __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x65a989ee gameport_unregister_port -EXPORT_SYMBOL drivers/input/input-polldev 0x16be01c3 input_register_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x98cfa1a7 input_unregister_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xb84db9fb input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xc6f2cb4f input_free_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xdfed86ae devm_input_allocate_polled_device -EXPORT_SYMBOL drivers/input/matrix-keymap 0x771b68f3 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x6bf70afc ad714x_disable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xc499405e ad714x_enable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xe8c92c31 ad714x_probe -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x6966a0fa cma3000_init -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/sparse-keymap 0x305c83ec sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0x55dadc0b sparse_keymap_setup -EXPORT_SYMBOL drivers/input/sparse-keymap 0x9b370cad sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xb66d5dbb sparse_keymap_free -EXPORT_SYMBOL drivers/input/sparse-keymap 0xb84b6ecb sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0xce353a72 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xb736fc26 ad7879_pm_ops -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xea74ede8 ad7879_probe -EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x3f776dc2 amd_iommu_set_invalidate_ctx_cb -EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x54736121 amd_iommu_init_device -EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0xa037f3ac amd_iommu_set_invalid_ppr_cb -EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0xaab516c9 amd_iommu_free_device -EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0xe8448b0e amd_iommu_unbind_pasid -EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0xe8e72bb6 amd_iommu_bind_pasid -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2c18e4a0 capi20_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x3122af7f capi_ctr_suspend_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31a31ecd capi_ctr_resume_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x38423000 capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7292ab34 cdebbuf_free -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x72a25a72 capi_cmsg2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9117da20 attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f329e24 capi20_register -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa649d438 capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb72f3938 capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe260a424 capi20_put_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfadc77f5 detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfd552f7a capi_message2str -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0e8ca51c b1_loaded -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x1021931f b1_load_t4file -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x1a8b34ca b1_getrevision -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x1be45392 b1_free_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x1d7744da b1_load_config -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x28822420 avmcard_dma_free -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x44581823 b1ctl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x46c3525b b1_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x4e56d630 b1_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x5e4d2919 b1_parse_version -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x5fb87ef9 avmcard_dma_alloc -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x6a1a2e17 b1_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x80f41cdd b1_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xaca5381b b1_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe2711497 b1_alloc_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x81291b1c b1dma_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xafabdcad b1dma_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xc4351b41 b1dma_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xc6f9267d b1dma_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xca8dac3b t1pci_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd8303f11 b1dmactl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xe68df1e6 b1dma_reset -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xef0aa3b1 b1dma_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xf65ad59a b1pciv4_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0x29562993 b1pcmcia_delcard -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x42d5ccc1 mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x6dfce774 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x93cff3b9 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xaedd0146 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x9ab0cc0e mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xfe99539d mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x668b9f2a hisax_init_pcmcia -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6fe1ca04 FsmDelTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9f987c85 FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xa1bc94b9 FsmInitTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x68647061 isac_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x88ed0626 isac_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xa23190d2 isacsx_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xcf2f207b isac_init -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xe70fd370 isacsx_setup -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x79bedbb2 isdn_ppp_unregister_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xa998ad48 isdn_ppp_register_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xd1475cd7 register_isdn -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x096a8675 mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0d52db4b mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1058e670 mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x18d3b45d mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x269caa0c mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2a6ee5e1 mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5e253f06 get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5f1d265b recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x66a986e2 mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6cd38f96 queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7cf42e8d bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x98178ed7 recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa064940a get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xaf3552a4 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb9d0edc0 recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcb800a7a mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd7b731b9 recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd7d45639 mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xddc0df64 dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xed80411f bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf1009520 create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf54ce909 mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xffcd2ed1 recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/md/bcache/bcache 0x1f529ce8 bch_bset_build_written_tree -EXPORT_SYMBOL drivers/md/bcache/bcache 0x440b4830 bch_btree_iter_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0x44a37d62 bch_btree_iter_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x5b59b856 bch_btree_insert_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0x6679b28e closure_sync -EXPORT_SYMBOL drivers/md/bcache/bcache 0x6c78f50c closure_wait -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7d1835e0 closure_sub -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7daccb73 bch_btree_keys_alloc -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7f2a56c0 bch_bset_sort_state_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x8833b0e8 bch_btree_keys_free -EXPORT_SYMBOL drivers/md/bcache/bcache 0x8f8fc624 bch_btree_sort_lazy -EXPORT_SYMBOL drivers/md/bcache/bcache 0xa17b6665 closure_put -EXPORT_SYMBOL drivers/md/bcache/bcache 0xa3c5c702 bch_bset_fix_invalidated_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0xca5df778 __bch_bset_search -EXPORT_SYMBOL drivers/md/bcache/bcache 0xce47a6d9 bch_btree_keys_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0xd2813054 bch_bset_insert -EXPORT_SYMBOL drivers/md/bcache/bcache 0xd97c32a1 bch_btree_sort_partial -EXPORT_SYMBOL drivers/md/bcache/bcache 0xdf892351 bch_bkey_try_merge -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up -EXPORT_SYMBOL drivers/md/bcache/bcache 0xec6f33d0 bch_bset_init_next -EXPORT_SYMBOL drivers/md/dm-bufio 0x268682d2 dm_bufio_forget -EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers -EXPORT_SYMBOL drivers/md/dm-log 0x517b6482 dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0xa4cbf448 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0xf16c03b5 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0xfbae6c39 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x20a03955 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x90a450f0 dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0xa63cb60b dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0xa9879d50 dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0xc1ec6d1d dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0xd5fb7141 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/raid456 0xdeebb94f raid5_set_cache_size -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x03575898 flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x10e5ef0d flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x40fd638b flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4e33f3de flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x64c51b27 flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x756a1874 flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x77fdd37a flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x898acf63 flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8a8ab636 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x978867ca flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xcad06986 flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd67317f8 flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf7f58c3c flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/cx2341x 0x13b8e1a9 cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update -EXPORT_SYMBOL drivers/media/common/cx2341x 0x30cb4cd7 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0x5f5e8b78 cx2341x_handler_setup -EXPORT_SYMBOL drivers/media/common/cx2341x 0x95e63698 cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0xe0f30d48 cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0xbe26eb2d cypress_load_firmware -EXPORT_SYMBOL drivers/media/common/tveeprom 0x07479f28 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/common/tveeprom 0x184806da tveeprom_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x02b664af dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08c0ecf2 dvb_ringbuffer_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0d3c856a dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x12f5425e dvb_ringbuffer_flush -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x14fdf0ee dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x21bb5ef7 dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2a027c6d dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x33372a60 dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x33b5eb3a dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3405dbfc dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3ad59eb7 dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4cf3b0d9 dvb_ringbuffer_read_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x58b89462 dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x646d2a9d dvb_dmx_swfilter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6560e532 dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6b03a852 dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7336b708 dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x86002297 dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x887f3982 dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8bcbbafd dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x92ddb0da dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x953fc06c dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9ed29a26 dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa163c708 dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa35b6c51 dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xadefdbab dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc872574b dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd461f7d5 dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd8988b7b dvb_ringbuffer_flush_spinlock_wakeup -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xda9425a2 dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdb582405 dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdbf59ac0 dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xde5ccb50 dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe1d6ca51 dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5014ff2 dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xeaf47cb5 dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf6c88e8d dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfa2ae6d3 dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x6c4a9bfb af9013_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xc58ebb5f ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x7d6ddc07 atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x00767926 au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2ff7ffcb au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x41e5e4cd au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7ca657dc au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x89cbd6ed au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xacb611d3 au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd669fa76 au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf0c48e66 au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf2119691 au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xea681220 au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xd0ff543b bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x34058523 cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xb6603312 cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xfb9c49ff cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x10811afc cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x12aa5380 cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xf5018d3a cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xeaa5fd72 cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x0af306e6 cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x9e1b787b cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xb6f268e6 cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x6fceadc9 cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x7d9c9ed1 cxd2841er_attach_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x858dc77d cxd2841er_attach_t -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x366ca198 dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x53f5b87b dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x54d7dee6 dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xaebc9f7c dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xc7bb76af dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x051d1223 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x07a0b8b3 dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x17dd9a44 dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2e54490c dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x390c4ef1 dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x436c77a1 dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6b104d6b dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x71f619bb dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7dac4d77 dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8d6bd0a1 dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x946f6710 dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbad386e2 dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc2e71f61 dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdc25361b dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe13e05b5 dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xcc551f47 dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x19521886 dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x7d545a47 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa1ef9491 dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xbae51893 dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xd450ba2e dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xf7689f1d dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x46ee885e dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x7ce08b28 dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xabad2bde dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xbf6ce352 dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x6a107ebb dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xb1b76c1e dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x084dc0bf dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x4ade3646 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x507854e1 dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x8066988b dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xb4ca137d dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xa5c46921 drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x5369a8e6 drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x8c640292 drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x9efb34ba ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xcf3a58a0 dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xca4c871f ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xfd1c9226 horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x46cb7334 isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x2e40fe77 isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x90b93d4e isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x76991f6d itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xfd817cda ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xec9819f1 l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x3b4258c1 lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x5783b1dc lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x23d2d74e lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x1bda4581 lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xd41ceee7 lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x4c73b571 lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xd552466c lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xe069f022 lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x463313b9 lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x25b02c95 m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x36fdc71e m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xc6286802 m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x7a3c54de mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x25d277e1 mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x322519ca mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x1a3a0449 mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x17bcf7ac nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x7dffec13 nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xac620799 or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x717e5a45 or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xd426d5e9 s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x52f956ca s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x855888d7 s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x87310239 s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xeed89e75 s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0xedc7c71a si2165_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x093751cd si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x24d71a74 sp8870_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x7762d8b5 sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xf5189132 stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xea16b95a stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xa2b63106 stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xb62da554 stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xb04fc5d3 stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x1a306bc5 stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x19d68c7c stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x1a8fb466 stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x282915a2 stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xd6b8ad7f stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0xc9221df1 stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xa19e8645 stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x380b4c1d tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xec484f85 tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x96800ec1 tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x9b9405dd tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xaf81adb5 tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x73611649 tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x620110ba tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x59bf857f tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xdcccf4e2 tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x73089260 tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x8f9f56d1 ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x21dc249b tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x10e848da ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x242bb716 ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x2c393a43 zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xe86fe729 zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x71d815a6 zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x124996b6 flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x19516704 flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x43d48d2f flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x50dbb882 flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x752df137 flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x77fd9ced flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb41610e0 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x0cc62e63 bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x23ebd09b bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x65e91a26 bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x9e139c14 bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x16c86a39 bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x477aa235 bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x86b14518 bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x04ae3195 dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x11049823 dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x2f82cd2f dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4be58098 dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5fd50058 dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x732b9dc1 dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8b98723a write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9d06ed77 read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xedd99932 rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xbe9115c0 dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2dc0a9a2 cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2f2f1443 cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x608fd17d cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xaade271e cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xd20fa632 cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x2e44ebdc altera_ci_init -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x1084a006 cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x1b818482 cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x5aad976a cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x89d53508 cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x99c53dd3 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x9a39c44d cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xb0ab9e52 cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x072d7b5b vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x1b84e8bb vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x59b7cb76 cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x642c439b cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xae847dec cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xdb1ad212 cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x43e64f78 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7bbe3638 cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x8c2ca128 cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x922dd3c6 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9ec0bef8 cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xbc83dbdb cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe9bbdec3 cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x40dc2dda cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4cf9f9c4 cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4ecd28c8 cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x501ba132 cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5b7c2542 cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5dfb4b32 cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x61a2c77d cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6a1bc084 cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x74d65adc cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7d416604 cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x85b33f04 cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x87810ad0 cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9927db25 cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa84c67d2 cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc079c483 cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc9dd1a71 cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe70017b0 cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xed123e49 cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf9fe7108 cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfbc9ee13 cx88_reset -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x04ea26ab ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0ef15377 ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14910102 ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14d234e4 ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2bc2892a ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3f9ada82 ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5784401f ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7073e188 ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x72aab65c ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8d8b2c26 ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8e5ddc38 ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb93e234f ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd4ab0866 ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd6b70703 ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd9cb25c0 ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe35ecf27 ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xff9e996b ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0385a763 saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x03df0bbd saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x08d2dbfd saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1edfba52 saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x647adcab saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9c42b56f saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9ea94b05 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9f76487c saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa69919e7 saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xab34d873 saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd3db6d78 saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe77c0520 saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xf941a419 ttpci_eeprom_parse_mac -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x2b82f49e videocodec_attach -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x32c91481 videocodec_unregister -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xb9124a19 videocodec_detach -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xe426f223 videocodec_register -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x0c959432 soc_camera_host_unregister -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x0de6ef10 soc_camera_xlate_by_fourcc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x61fb1262 soc_camera_apply_board_flags -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x82795a5b soc_camera_host_register -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x8dc02365 soc_camera_power_on -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xdbb23fa8 soc_camera_power_off -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xf2ba7046 soc_camera_power_init -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc -EXPORT_SYMBOL drivers/media/radio/tea575x 0x12c4d3dd snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0x14208515 snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x6b5bcc2d snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0x7e171254 snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0x831727d2 snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xb9d80781 snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0xe0c7b705 snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x0beb5295 lirc_get_pdata -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x2bf2f8e0 lirc_dev_fop_read -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x2c05da39 lirc_dev_fop_poll -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x60e51749 lirc_dev_fop_ioctl -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x6bd00655 lirc_dev_fop_open -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x8fa1e3d6 lirc_register_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xec037f4e lirc_dev_fop_write -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xfbdff3de lirc_dev_fop_close -EXPORT_SYMBOL drivers/media/rc/rc-core 0x2396aad7 ir_raw_handler_register -EXPORT_SYMBOL drivers/media/rc/rc-core 0x800675b4 ir_raw_handler_unregister -EXPORT_SYMBOL drivers/media/tuners/fc0011 0xeb850a06 fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0x04b7aaee fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x6d053a70 fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xa4b32a34 fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xab4e618f fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/max2165 0xc4e2c0ea max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x99324ff4 mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0xcd0add51 mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0xf5426a74 mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0xe8557734 mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xbf99bb3a mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0x91fa741e qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0x58070568 tda18218_attach -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0xa452b616 xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0x6e4308e4 xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0x2fd7d8e0 xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x36f74410 cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x38333a37 cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1255424c dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3c2c07d3 dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5063dd0c dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa56b67a0 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xae8a08a0 dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xcd103700 dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xdaa33522 dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xef4b421c dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf552b6f6 dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x35b63fa8 dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x46618bac dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x54f824c1 dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7d51a99c dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7d837905 usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xa4f5036b dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe74201b5 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x94db69bc af9005_rc_decode -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x0380ca10 dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x60b28c91 dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6cee45b6 dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x89123de0 dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8eff8493 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xbf5cb4b9 dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc1e28485 dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd2b75c5e dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xdd2c53ba dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf9bdbc2e dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfd4b1f06 dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x45c3448e em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xdfd263b0 em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x18937422 go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x265aa7ee go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x430cf7c4 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5bd53dd6 go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x95ae787f go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb14f52df go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb220b822 go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xeba36281 go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf294a749 go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x124bf593 gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x17da1bcd gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x520c4a10 gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x6a1da702 gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8df14441 gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb2cdae34 gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xec66e3e9 gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xedfb325e gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x55241ee1 tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x98e7c2e7 tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xf4afd5e6 tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x108bffdc ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x3b4cfe16 ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x3ce86477 v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xcb1715be v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xe36e4616 v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x27a85eff videobuf_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x513a5e66 videobuf_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x8564b33f videobuf_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xa22f610f videobuf_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xb3142fe2 videobuf_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xdb0e1028 videobuf_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x1a0fe54c vb2_verify_memory_type -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x679382da vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x1532f730 vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x29e97155 vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x4191a8a8 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xbebe9eef vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xe21c5a0d vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xeef7618e vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0xa9332df6 vb2_querybuf -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x19471a5c v4l2_clk_unregister_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1c70747b v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x20760293 __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x20d1ffe9 video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2c3616a1 video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2c5c1491 v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2d213753 video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2f407ec5 v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2f6af111 v4l2_clk_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x30df690f v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32e17456 v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x34c9223b v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3a585d6c v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3edfd31b __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45ba87bc v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x49aec2dd v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4d21f7b8 v4l2_clk_get -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x52b2ca84 v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5360e32f __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5fc8fe15 v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x63f18879 v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x65826ffa v4l2_clk_enable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6bbd6353 v4l2_subdev_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6bd87ffb v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6d2ab865 v4l2_subdev_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6f170aec v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7119c1fd v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x734ca526 v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x74cf43d7 v4l2_subdev_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a023a17 v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7bc018fe v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7f721ebe video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fd6e977 v4l2_subdev_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x801394a0 __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x86ac3796 v4l2_subdev_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8a03a74d v4l2_clk_put -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8dfcddc7 v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8f0be1c8 __v4l2_clk_register_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x92580d59 v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x937a3db3 v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x94d4e866 video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x96831502 v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa6ea3414 v4l2_subdev_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa80ac4fc v4l2_clk_get_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xab80f97d video_usercopy -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xabe48968 v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xabfd383e v4l2_subdev_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xac6ff897 v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xad6a0128 v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xad78f338 v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaeed0a56 v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb276df02 v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb575db7e v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb6298674 v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb905c733 v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc15cf8e2 v4l2_clk_disable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc1909e7c v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc643795d v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc7cd6910 v4l2_ctrl_add_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc9f32246 v4l2_clk_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcabce826 v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xda5231c3 v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdb2a3ffe v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdd555c34 v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe1867f5a v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2207d63 video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeb9675e0 v4l2_clk_set_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfff7655e __video_register_device -EXPORT_SYMBOL drivers/memstick/core/memstick 0x01b685da memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0x06f6ab0f memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x49214e20 memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0x57348d48 memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x6d80deb6 memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x6f0f9b94 memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x8d47feaa memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x97376b6e memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x9aee8684 memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xb9c422ea memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc07e67e memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xeb3c94b5 memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xede597fe memstick_register_driver -EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x01fa82f1 mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x121bf859 mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x17838738 mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1bc52420 mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x22907fba mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2b872303 mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2ebefad8 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x31e1eb26 mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x332dc3b2 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x43a4eda2 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4cbf0369 mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5538497b mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5593f8eb mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x56956d51 mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5e064036 mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5e8f69ec mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x62c78567 mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x661d692e mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x669f9fb8 mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7de91b20 mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8dbd5552 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9be0c8a5 mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa8e4423b mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xae0a9fe9 mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc03fcbf4 mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcfb3a178 mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe059290a mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf19d03f3 mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf61f3462 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x00d07e6e mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x27619e1b mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2cd4829b mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x31c8c403 mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3a175e83 mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x65e68bdc mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x69fad076 mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6f6e4554 mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x73d1e649 mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x74482a16 mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7b834aa0 mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8159f552 mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x831b5ecf mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8562e1d0 mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x86c99beb mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9244ec7a mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9e09b45f mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9e16738c mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa7b212cd mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa86bd9b3 mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbbe51893 mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbd462b18 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbdc516eb mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbfd1e547 mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcaac9c4f mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe098ac02 mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfcab54b9 mptscsih_suspend -EXPORT_SYMBOL drivers/mfd/cros_ec 0x248270f6 cros_ec_suspend -EXPORT_SYMBOL drivers/mfd/cros_ec 0x4694fe31 cros_ec_remove -EXPORT_SYMBOL drivers/mfd/cros_ec 0xcf0b5b13 cros_ec_register -EXPORT_SYMBOL drivers/mfd/cros_ec 0xdb30acaf cros_ec_resume -EXPORT_SYMBOL drivers/mfd/dln2 0x216340fb dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xb0527826 dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0xb63f6b9b dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x01612184 pasic3_read_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xd4f96192 pasic3_write_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x059664cc mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2b9aeaf4 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x34b6e7d5 mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x418e9b91 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x48aeddb1 mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4b3150ec mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6414768f mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xab3aad0c mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb0ebe154 mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xca7baa83 mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfceded83 mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 -EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 -EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib -EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led -EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw -EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x1ee432ca wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0xd8f8fc7f wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x738bb991 wm1811_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xded30025 wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xece9bbbc wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xff88670c wm8994_base_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x68904b02 ad_dpot_remove -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xff3e3d8d ad_dpot_probe -EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x13090222 altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0xbf00e5c4 c2port_device_unregister -EXPORT_SYMBOL drivers/misc/c2port/core 0xc681b750 c2port_device_register -EXPORT_SYMBOL drivers/misc/ioc4 0xbc2ce761 ioc4_unregister_submodule -EXPORT_SYMBOL drivers/misc/ioc4 0xf2a32d23 ioc4_register_submodule -EXPORT_SYMBOL drivers/misc/mei/mei 0x5eddbbc9 __tracepoint_mei_reg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0xdd1b8214 __tracepoint_mei_reg_write -EXPORT_SYMBOL drivers/misc/tifm_core 0x0affb61b tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x10dfc942 tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x1b3b4f69 tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x3dbeed5d tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x68b9a67f tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x70dbdd5f tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x759fec39 tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x8129fe24 tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x9fc0bb19 tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xa8c2ec46 tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0xe0188fbe tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0xe09685d9 tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0xf10a25f6 tifm_eject -EXPORT_SYMBOL drivers/mmc/card/mmc_block 0x46f78db6 mmc_cleanup_queue -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x2287b6a2 cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x426e1cde cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x5ffdd80c cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x76592447 cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x833ae48c cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd91ab471 cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xf16a4704 cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x67a2a6b0 map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x7b448b97 unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xa17ecc04 register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xa7b01f7f do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x3c85d21e mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x6a662fad lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x7a340b79 simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0x11fe00e7 mtd_concat_create -EXPORT_SYMBOL drivers/mtd/mtd 0x98917f95 mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/nand/denali 0x1db5a2e3 denali_init -EXPORT_SYMBOL drivers/mtd/nand/denali 0x876d8583 denali_remove -EXPORT_SYMBOL drivers/mtd/nand/nand 0x1dd11bf9 nand_unlock -EXPORT_SYMBOL drivers/mtd/nand/nand 0x3c01357a nand_lock -EXPORT_SYMBOL drivers/mtd/nand/nand 0x3c7ffeef nand_scan_bbt -EXPORT_SYMBOL drivers/mtd/nand/nand 0x40605bc3 nand_scan_tail -EXPORT_SYMBOL drivers/mtd/nand/nand 0x89d15d13 nand_scan_ident -EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings -EXPORT_SYMBOL drivers/mtd/nand/nand 0xfb901894 nand_scan -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x50d6f27a nand_bch_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x91e19042 nand_bch_init -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xdca9f932 nand_bch_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x1b9d779f nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x4a924830 nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x8cfcf75c nand_flash_ids -EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x3cd069b9 onenand_scan_bbt -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x5ea1958c onenand_addr -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x7205e27e flexonenand_region -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x83eeaeac onenand_default_bbt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0b8cd322 alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2b4208b0 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x44b2e0ee arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x481b0770 arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6627e853 arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x970cb863 arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbed9b529 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc8cd55a5 arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xde717cf6 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe933040c arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x05e88544 com20020_check -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x26b78789 com20020_netdev_ops -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x7f66ce44 com20020_found -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x11ed6a25 NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x478c1546 ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4d4a0bdb ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x65d5d425 ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x66fa156a ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7104f60c ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x73209829 ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7a2d4401 ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa92cc526 __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xad3535ef ei_close -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0x977aca2b bnx2x_schedule_sp_rtnl -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x5254ec31 cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x0d8be5fd bgx_lmac_rx_tx_enable -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x285bde59 bgx_get_rx_stats -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x42264715 bgx_get_lmac_count -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x6dc1648d bgx_get_lmac_mac -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc397f585 bgx_lmac_internal_loopback -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc82be691 bgx_get_map -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xe48ca42a bgx_get_tx_stats -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf101d1b2 bgx_get_lmac_link_state -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf9508980 bgx_set_lmac_mac -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x07a8ec16 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0b2b1436 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x18d0fe5b cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x25607025 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2b47f0ac cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4318df11 t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x43868c4e t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4f8df470 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x565c83a9 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5e05cb1d cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x97f3cf5c cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc8b4c638 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc9dfcb63 cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd7837da7 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xee10d22c cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfcdc5f2a cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x009937c2 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x22145753 cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3224501e cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3273364c cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x35d51ca9 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x37866d75 cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x47e7479e cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50415c1f cxgb4_dcb_enabled -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x57707dfc cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x74452722 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x76250cbc cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x77143596 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7973f98c cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7a20e959 cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7e71e183 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7e78e393 cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x82164964 cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x85cc1371 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8b1f2ef6 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8d680c3c cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x90915d74 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaed9933b cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaf48a5d2 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb8412e3f cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb9028e81 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbe7dc59d t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc88cc44a cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdd420b94 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xea11ccec cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xedad6185 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xef66b47f cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xefb9b5ea cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf56a216f cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfe333f6e cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x76176dd2 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x77a3d2f1 vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x8bb306e2 vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x8fd9093e vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x989b611f vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x9c1d5d4b vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xde749e73 be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xebd7484d be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02655a20 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e25b994 mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1257f05b mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1315716c mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ae85032 mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x216749a1 mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21b54283 mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2616bd3c set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26dfe33d mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3299bf81 mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b07e1aa mlx4_test_interrupts -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3cd12b16 mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4cb77e1f mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e3a5bfc mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51f27fb9 mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f178acb set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61851b60 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64cac34e mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67058f01 mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a1501b6 mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x870004fd mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x870a6737 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x874feded mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95d69ae8 mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x986b6211 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1aee0b5 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa20effe8 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa359b09a mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf7d7cdf mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb10c2f77 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb51caa46 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba3b95d8 get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc06ab38a mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce5621a8 mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe96f181c mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed3bfedc mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1e771eb mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4c147cf mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0857aabd mlx5_get_flow_table_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c5b4c80 mlx5_core_create_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb47dd2 mlx5_register_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb7287e mlx5_del_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18413a64 mlx5_cmd_comp_handler -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x227c2601 mlx5_core_arm_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c724bf1 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2fda7c83 mlx5_cmd_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31adedd2 mlx5_get_protocol_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x320c281a mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c26ea30 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41bc635c mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47ff9627 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bef7630 mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x562632ce mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b80cb13 mlx5_core_destroy_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e6c77b5 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x661703cf mlx5_cmd_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74c4630c mlx5_unmap_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75531fb6 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80133e8c mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x838150cd mlx5_modify_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8fe759d8 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b8458da mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa02b99d0 mlx5_query_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4740293 mlx5_alloc_map_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7b5b76e mlx5_core_query_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbab749bf mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca8ec752 mlx5_core_get_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcfc6c291 mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd584b083 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6e4e13d mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd97f02d8 mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd99745e4 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf27b7d8 mlx5_unregister_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1602ddc mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6af33e4 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xecadb0fc mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf20f7b48 mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3c22dc5 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb34c369 mlx5_core_dump_fill_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc728a49 mlx5_add_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2cc8eb2b mlxsw_core_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2d07a992 mlxsw_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4485ce6f mlxsw_core_skb_receive -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4d4cd4f2 mlxsw_core_skb_transmit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x90a92eec mlxsw_core_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9dfc05ff mlxsw_core_bus_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc7f1f41c mlxsw_core_rx_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee8e0771 mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfec08a3d mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x1f17b7ec qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa209d1af qed_get_protocol_version -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x00926c91 hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x705f455c hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x897c11f9 hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x93bee2ce hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xbd4ff51c hdlcdrv_register -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x0b626517 sirdev_receive -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x16bcd361 sirdev_set_dtr_rts -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x30ab0400 sirdev_raw_write -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x477082d6 sirdev_get_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x56de49e7 irda_unregister_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x9bd88ab7 sirdev_raw_read -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x9ca42b65 irda_register_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xa755d5c6 sirdev_set_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xa7a0f601 sirdev_put_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xb58c9776 sirdev_write_complete -EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl -EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart -EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag -EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe -EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok -EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage -EXPORT_SYMBOL drivers/net/mii 0x0576b7dc mii_ethtool_sset -EXPORT_SYMBOL drivers/net/mii 0x5f67d589 mii_link_ok -EXPORT_SYMBOL drivers/net/mii 0x72c7c846 mii_check_gmii_support -EXPORT_SYMBOL drivers/net/mii 0x96dbbf67 mii_check_link -EXPORT_SYMBOL drivers/net/mii 0x9b6ddb37 mii_ethtool_gset -EXPORT_SYMBOL drivers/net/mii 0xae4c1f66 generic_mii_ioctl -EXPORT_SYMBOL drivers/net/mii 0xd4ac413a mii_nway_restart -EXPORT_SYMBOL drivers/net/mii 0xe7b7bcc1 mii_check_media -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x67f5d10b alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xb1e0465f free_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x28c3bd12 cavium_mdiobus_read -EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x573d8aaf cavium_mdiobus_write -EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x563b5f0c xgene_mdio_rgmii_write -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x5e759657 xgene_enet_phy_register -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xaa66de77 xgene_mdio_rgmii_read -EXPORT_SYMBOL drivers/net/phy/vitesse 0x48e48ba0 vsc824x_add_skew -EXPORT_SYMBOL drivers/net/ppp/pppox 0x275cd591 register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0x2ab0414e pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0xc337decb pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0x5cd0025b sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x10515c2f team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0x1e7298f1 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0x406efab4 team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0x442f4abd team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0x532d85b0 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0xc3207e7e team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0xcbf12920 team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0xe3272c56 team_mode_register -EXPORT_SYMBOL drivers/net/usb/usbnet 0x57e9d89f cdc_parse_cdc_header -EXPORT_SYMBOL drivers/net/usb/usbnet 0xcd4de2b9 usbnet_manage_power -EXPORT_SYMBOL drivers/net/usb/usbnet 0xcd9e8d12 usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0xd0d7e18a usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/wan/hdlc 0x205fe834 unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0x6144a3d1 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x6931dd09 attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x732dc79b unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x850441db hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0x863259f1 hdlc_change_mtu -EXPORT_SYMBOL drivers/net/wan/hdlc 0x94f17731 register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xadb586e6 hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0xd562586d alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0xde32c8bb hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0xf96788e2 hdlc_close -EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x7fb228ed i2400m_unknown_barker -EXPORT_SYMBOL drivers/net/wireless/airo 0x03609ca7 stop_airo_card -EXPORT_SYMBOL drivers/net/wireless/airo 0x1e33960c init_airo_card -EXPORT_SYMBOL drivers/net/wireless/airo 0xee88d82b reset_airo_card -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x17443861 ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1ac9a0be ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x33b467bc ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3dd89f4a dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5bea2ea5 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6fd5e319 ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x86efadfa ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xafbdbacf ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xbe925a87 ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd495e4b5 ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe747be0d ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xff8c5341 ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x004116d6 ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x115ee8da ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1e45dd89 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3af4d1b0 ath10k_debug_get_new_fw_crash_data -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4d5afe60 ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x659408ec ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x681976a6 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6c19beb8 ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x77ce6116 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8e2ba656 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x91082e66 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa265737c ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc4e7d21a ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcc657473 ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfa01e202 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x00ca3f8a ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x42f995d8 ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x52b7cfb9 ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5333d69b ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6da3962a ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7dd7ac32 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7ea45ed0 ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xccfb27f4 ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xebcd5b46 ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xfafad557 ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xff00a3ea ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x077b51a2 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0ad3738f ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0ed28a9a ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2364d7e0 ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2e7016a0 ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3701a0b0 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x504941a3 ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5598a06b ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5c755c0b ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5c7b5378 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x711af039 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7d4494dc ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x85a3bd9d ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8905eb91 ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x90b3cf3b ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa40ca1f7 ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xba86da1f ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcc40d144 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd84e0b17 ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdc30a5c6 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe7709f38 ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xef2c0d98 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf6d427c6 ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01d9ac77 ath9k_hw_cfg_gpio_input -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02df5be6 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x037a3b8a ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x041a6afb ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05cc5a4c ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e1c7793 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11254d7e ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x18dc0e76 ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19575ba0 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19f76f8a ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b67d4c7 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1fe549b9 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x259d00f2 ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x263c761a ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x29735031 ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b5219e5 ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b60ff39 ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3412d75a ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x34fca7a4 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x353e8eb9 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x396567dc ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b7a1594 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d35eeba ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x411d177e ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42cddf3b ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x437ebc29 ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4786378e ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b255e44 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4bb0a194 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ff881e7 ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x50c8caeb ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x534a8f85 ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x57a475de ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a0e9d1a ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5bf253f1 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5cd33c0e ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5d4bc743 ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x607ecfdf ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x60e7176d ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6147c68a ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61796c7b ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6788d910 ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6aae5eb7 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b131f7e ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6bcef031 ath9k_hw_request_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x71fe08e1 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x772a6885 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7e2dcf35 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81de170f ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x82edac7f ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x84216fc6 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x84ea144b ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x87d03516 ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x885c7455 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8a0604d8 ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d82aefd ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92bc9b99 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92efc310 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9dfbd998 ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9fd68ea0 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa03f47ed ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa27f7de1 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa49af1a4 ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa65a021b ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa16a92e ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xac2d2665 ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae778a6b ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb0053c18 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb497d88f ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb504078a ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6064f23 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7ab83a8 ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7d33884 ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7e1ee5a ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb847d6dc ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb8b06ef3 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc17c6ee9 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc265fe2e ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc35bad2d ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc708ae81 ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc8e4418c ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xccc6ea92 ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd67a3184 ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd886b70b ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9279341 ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdae3d571 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xddce4bd6 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdfc0e43c ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdfc3ae3f ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe4b636e8 ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe4d775f2 ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe4fa6ba5 ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe5a4f736 ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb463f69 ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec28d023 ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xedd9bb24 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf06c08ee ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3a02d5d ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3e3ae19 ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3e5aa61 ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf42add1e ath9k_hw_cfg_output -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf67185da ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf687f973 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf7189d84 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb4b3603 ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/atmel 0x297195ce stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel 0x6f1c0d4b atmel_open -EXPORT_SYMBOL drivers/net/wireless/atmel 0xc23cb641 init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x21c167c6 brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x2a47e2b3 brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x2bed9718 brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x8ff749c2 brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xb36000ff brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xb4f4c731 brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xbd33b626 brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xbede9aa2 brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd506408c brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xddcea2de brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xe20ae2b9 brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xea734a23 brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xf0f363a9 brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x02d412a8 hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1723ac32 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x498d3bde hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4ed2cf0b hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x51de169e hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5caf979d prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5d00a3ca hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6a75e69a hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8037a28d hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8054ff3d hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x818694ac hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x895b684d hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x93c96fb2 hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x98c7d6c9 hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9f98dd8c hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa2d95657 hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xadfcca7c hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb20f85c8 hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4a69ace hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbe1a6664 hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xca540a5e hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe08d47e5 hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe3e12000 hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xef209eb1 hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf5f6d6fb hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xfa6a458f hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2bac8141 alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x48a02992 libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4cb8ac33 libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x50611c30 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x510c5f92 libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x54349a3c libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x62366323 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x759aa794 libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x763b82ff libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x8b6e2d81 free_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa013df73 libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xadfae5c2 libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xbb7a92a6 libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc79843bc libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc82842b8 libipw_change_mtu -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd0972653 libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe65e20cb libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf0cedbd3 libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf10a75aa libipw_rx -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf9455979 libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xff4614e0 libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x06d115c2 il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0aff9431 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0b2b14a9 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0cd2f22e il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0e018d56 il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0f95b934 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x144a6b89 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x182bfba8 il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1d1d6ce9 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2131f794 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x22bad2a9 il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x24ea77c5 il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2519423a il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x25d6fec2 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x27e49507 il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2a48551e il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2c5c005e il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2f38dbd4 il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2fb8e06b il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x32d51de3 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3ccc9b8c il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3d68202b il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3fd9fdfd il_init_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3ffab7bb il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x47a380b0 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4f598f96 il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x51e10741 il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564b4894 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x57aded52 il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x62482742 il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x66a1aecf il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x67f802d6 il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x68770a02 il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6b4fd6db il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6b8eeb52 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6bff65b5 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6d13c3bd il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6e1f00fc il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7125ed8d il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x716a3567 _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7207f225 il_set_rate -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7720ae80 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x79a92620 il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7c0d27aa il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x801438be il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x84acfb9b il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x85e42245 il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8930e87a il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x89a857ba il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8dff6140 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8f205889 il_free_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x91067888 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x91a1d038 il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x935cf772 il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x93b57f83 il_force_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x96a9ad4b il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9a22b954 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9c86d09d il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9d91c866 il_leds_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa0339d96 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa042c0d6 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa1aff931 il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa3c33cf8 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa3e4c578 il_set_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa5f89d96 il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa95062fa il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xacd3d623 il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb66dc165 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc405c59d il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc5338bb6 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc7c9f382 il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc8952ace il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc90c1b2c il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc92a66d8 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcbe04716 il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd7390efa il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd787ce2b il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd85b8a12 il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdb2fd819 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xddde3b3a il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe113e492 il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe1addc8f il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe302e1a6 il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe6c12249 il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xeacfb2bd il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xee343b53 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xeeaece00 il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xef309bc1 il_apm_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xef687e6c il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf0404e13 il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf1b9e543 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf3811096 il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf4455f83 il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf46435a1 il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf510ca26 il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf819ed90 il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfab0b173 il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfc686ee2 il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x1b06ce78 __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x2447a6ab __tracepoint_iwlwifi_dev_iowrite8 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x314a20a8 __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x5e9c24ff __tracepoint_iwlwifi_dev_ucode_error -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x8c8ab242 __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x9a1b1df9 __tracepoint_iwlwifi_dev_ioread32 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xdced6db1 __tracepoint_iwlwifi_dev_iowrite32 -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x02cf7fcf hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x0875d127 orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x1ad51ce4 orinoco_open -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x1c078861 orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x28c3cf38 orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x3f47e56b orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x439948d1 orinoco_down -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x4d225e70 alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x62f6f9ff orinoco_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x83182aa8 orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x9f0fc575 free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xaa12f9d7 orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xaa275e7e orinoco_get_stats -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb6741588 orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd623c90a __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe9e283ca orinoco_up -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xf07c037c __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x9d2b2297 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0f49a7b8 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x15222bb0 _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x18b016d4 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x22c9429d rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x24a22971 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x28e76c45 rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2fc8ec2a _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x308e1841 _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x34cfe96e rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x355d6965 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x44592aa0 _rtl92c_store_pwrIndex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x445d55fb rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x45d0abea rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4d814e2a rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x552c542b _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6156df23 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x678609cc rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6ab56a59 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6f90e624 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x73690be5 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x784fec9c _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7a774b0b rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x806c6d49 rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x82542a96 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x82a16691 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x94e3cf8c rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x95246b04 _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9731fd8c rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x99e2540b rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9a263cc4 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9f2f8aad rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa4e777ef rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa65e8954 rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaf7ae553 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb9430382 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcb57c99e rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd1ef7373 _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd6516b04 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe307c8fe rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf433bf36 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfb759e91 rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x029f7491 rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x15ad4971 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x22c9003e rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x2cf47000 rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x2bb6bfc4 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x4751f4c8 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x6468660d rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xe09cae7c rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0130d63a rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x137c8c48 rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1aebbf53 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x265e5338 rtl_ps_set_rf_state -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e339e55 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x302e74c2 rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x35328efa efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x413dfed1 rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4b57d757 rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5530895f rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x628ac9aa rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x65c14c1c rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x821c03ab rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8b9d36b9 rtl_wowlan_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8dd6642a rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa608febd rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb570dc4a rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc4fda83b rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcb544641 rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcf9db04c rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd02c94b5 rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd2f85894 rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdd7a17ad rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe534ce9e rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe7ee4b42 rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed50c562 efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xef0d9cd7 rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfec12317 efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x9ee11dda wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xa0cb525f wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xa4c6e932 wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xdf0b8928 wlcore_tx_complete -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x40f4660a fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x77660265 fdp_nci_recv_frame -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x98bc45eb fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0x1c8d11ed microread_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0xe5487ef4 microread_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x25cb636a nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x766d5a0e nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xa28339f4 nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xd6a138c1 pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xe505ce2a pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x300d9af3 s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x5d7d91a4 s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xdc783ad7 s3fwrn5_recv_frame -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x184baf97 st_nci_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2173ff87 ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x26e5845c ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2be79779 ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x48c82306 st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x646a7f18 st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x65ac36c9 ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7a494660 ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8ad6c631 ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe8054a94 st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf90f1deb st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0802002f st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1d773464 st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1f00d3c1 st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x237b663c st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2848d5c1 st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x30be55e5 st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x382daf12 st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4695b756 st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x54858276 st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x575595fb st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x619c203d st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7842e090 st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7cf94cb4 st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa1121901 st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xacacde2b st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb0eed731 st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcea4e306 st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xeca368d4 st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/ntb/ntb 0x09347432 ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x163fb808 ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x192d0846 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0x1bba4632 ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0x2e1b7cbf __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0x7cfa2c26 ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0xb92c705a ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0xc4dbeb28 ntb_unregister_device -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x3c598fc8 nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xe28209c1 nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x1a50c004 devm_nvmem_cell_put -EXPORT_SYMBOL drivers/parport/parport 0x0b496a89 parport_release -EXPORT_SYMBOL drivers/parport/parport 0x0f3e06be parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x13cb9371 parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0x201bb57f parport_write -EXPORT_SYMBOL drivers/parport/parport 0x2531c10e parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0x35e2239d parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0x3c5c9f58 parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0x42b2d2b7 parport_register_device -EXPORT_SYMBOL drivers/parport/parport 0x45804842 parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0x4c387424 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x58951111 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x640f23c1 parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x67570e64 parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0x6c87ddb4 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x84e19631 parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0x8747a04a __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0x8b9bff6e parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0xa66efcca parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0xb0773760 parport_read -EXPORT_SYMBOL drivers/parport/parport 0xbf4dc8d7 parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0xcb0106db parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0xcc44d524 parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xccfb8bca parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0xd2fb4ba9 parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0xdb443eb7 parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0xdfe792aa parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0xe3508787 parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xe39495d0 parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0xe4562d71 parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0xebd879f2 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xee059db6 parport_claim -EXPORT_SYMBOL drivers/parport/parport 0xf58b9117 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport_pc 0x12016e95 parport_pc_unregister_port -EXPORT_SYMBOL drivers/parport/parport_pc 0xd5fb06dd parport_pc_probe_port -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x05791d33 pcmcia_request_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x15b3f1c0 pcmcia_request_io -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3ef741cf pcmcia_get_mac_from_cis -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x59f6239f pcmcia_disable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x634da764 pcmcia_release_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x637d2e0a pcmcia_read_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7b8f1ef4 pcmcia_fixup_vpp -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x85f9716f pcmcia_map_mem_page -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x87982149 pcmcia_register_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8c939d7b __pcmcia_request_exclusive_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa770faa7 pcmcia_unregister_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb1a727f9 pcmcia_dev_present -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd3935ccc pcmcia_get_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd8f2c629 pcmcia_enable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdaa25436 pcmcia_loop_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdcc998e5 pcmcia_write_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdf144ab6 pcmcia_loop_config -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdf403c4f pcmcia_request_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdf9b726b pcmcia_fixup_iowidth -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1ccab9a3 pcmcia_put_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x2a595246 pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x2a94714a pcmcia_get_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x597a8bc0 pcmcia_socket_list_rwsem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x79cee430 pcmcia_unregister_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x81c113bb pcmcia_parse_uevents -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb5b22ee1 pcmcia_parse_events -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xbcd900db pcmcia_socket_class -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe0fddaa9 pcmcia_reset_card -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe6de2635 pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf16aaeef pccard_register_pcmcia -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xa54f6680 pccard_static_ops -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xc2044dd8 pccard_nonstatic_ops -EXPORT_SYMBOL drivers/platform/x86/intel_ips 0xf97d7d0e i915_bpo_enabled -EXPORT_SYMBOL drivers/platform/x86/intel_punit_ipc 0x3a0b563a intel_punit_ipc_simple_command -EXPORT_SYMBOL drivers/platform/x86/sony-laptop 0x5bb1e117 sony_pic_camera_command -EXPORT_SYMBOL drivers/pps/pps_core 0x49408940 pps_register_source -EXPORT_SYMBOL drivers/pps/pps_core 0x5df914ad pps_lookup_dev -EXPORT_SYMBOL drivers/pps/pps_core 0xc22c3db5 pps_event -EXPORT_SYMBOL drivers/pps/pps_core 0xd484a688 pps_unregister_source -EXPORT_SYMBOL drivers/ptp/ptp 0x39f02063 ptp_clock_index -EXPORT_SYMBOL drivers/ptp/ptp 0x755c51fd ptp_clock_unregister -EXPORT_SYMBOL drivers/ptp/ptp 0x8aff8e0e ptp_clock_register -EXPORT_SYMBOL drivers/ptp/ptp 0xe624cc9c ptp_find_pin -EXPORT_SYMBOL drivers/ptp/ptp 0xf6f2d0be ptp_clock_event -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x071b49e9 rproc_put -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x0df9d505 rproc_report_crash -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x10c1a476 rproc_boot -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x20c92c5b rproc_get_by_phandle -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x30af457d rproc_da_to_va -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x4bafaed5 rproc_del -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x4f2d77d8 rproc_vq_interrupt -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x98ab980a rproc_alloc -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xe26f775d rproc_add -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xf16e8bcf rproc_shutdown -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xb1129aa2 ds1685_rtc_poweroff -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x1914c1be scsi_esp_template -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x7318e1e4 scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xcacc51b2 scsi_esp_register -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xdddbc50b scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1f3c2812 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2ddf7ece fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3a17e5ee fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x44aaa330 fcoe_ctlr_destroy_store -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x506e7d1e fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5690637f fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x72ed2dbd fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9082ee34 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x998e548d fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd6c4d2ce fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd96fff52 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf25de255 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0a11a4b6 fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0b81dd82 fc_rport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x10dfa46d fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x12983633 fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x16efff48 fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1d7813d2 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27f1fc0a fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2cc44cef fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x301983b1 fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3448bc74 fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x37e1c87b fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3bcc56af fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3c69af81 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3cd0068c fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3cf3f8c3 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4643bf59 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x523477a7 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5391b028 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5d388c61 fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ec09d44 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6dc83bdc _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ce48ac9 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8669013f fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x86d3baeb fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x89a442c1 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8c2a4dd4 fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8d03a5e9 fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8d05aafb fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9ae4fac6 fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9afb162d fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa219001b fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa31a090d fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa34f1787 fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa94888f5 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xab200310 fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb690d13b fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb7c8fbc7 fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc4f19187 fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc583e5b6 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc5dcad65 fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd0ff7202 fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd31c9d0c fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd671b298 fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd76895df fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd83e071f fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd8d2de43 fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdb3b2d3b fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0b4dae9 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf53a12ad fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa49f39b libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4d83c3d1 sas_wait_eh -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4fff9146 sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xa049b92c sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xa80e9477 sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xd637f46e mraid_mm_register_adp -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x03297ec7 osd_req_create_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x04e95921 osd_req_flush_collection -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c6383e0 osd_auto_detect_ver -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0f5988d1 osd_req_add_set_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1d4f0a3d osd_execute_request_async -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x23bed443 osd_req_read -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2741e0ea osd_req_get_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2dafb652 osd_execute_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3537ff71 osd_req_read_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3aebaf5a osd_req_list_collection_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3fb74259 osd_req_read_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x43b86c84 osd_req_read_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x47b9ca1b osd_req_create_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x488db4b0 osd_req_set_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4c4bfbb9 osd_req_write -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x514e3fd8 osd_req_write_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5639dc70 osd_req_list_partition_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5b132577 osd_req_write_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x63a4f5ff osd_req_flush_obsd -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x678d8802 osd_req_remove_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6fc8d301 osd_end_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7212b075 osd_req_format -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x85b5b978 osd_req_flush_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8d2a2dd3 osd_req_list_dev_partitions -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x96383214 osd_req_flush_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9953353e osd_finalize_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9a3f12a2 osd_req_decode_sense_full -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9f6d6cc2 osd_req_remove_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa74c99e6 osd_req_write_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcbb413d0 osd_dev_init -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcd394dc4 osd_req_list_partition_collections -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xddc04ab5 osd_req_add_get_attr_page -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe3fc7ac7 osd_start_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf3238452 osd_req_add_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf92ee87c osd_dev_fini -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfc1955b0 osd_req_decode_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/osd 0x0742804e osduld_device_info -EXPORT_SYMBOL drivers/scsi/osd/osd 0x22751b9f osduld_info_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0x363deaa4 osduld_device_same -EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0x86ac0e98 osduld_put_device -EXPORT_SYMBOL drivers/scsi/osd/osd 0xbad98c0f osduld_register_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0xee8d64c6 osduld_path_lookup -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x024da3fd qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2159c11a qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3c125ce6 qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x63eddec7 qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x64d8b71e qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x69bd8c0f qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6b4b13cc qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xacac78f5 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb06d92cf qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xbfa1c7b6 qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc2d77eb9 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe31534ab qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1dba109b qlogicfas408_abort -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x325f05e0 qlogicfas408_biosparam -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x86edccdc qlogicfas408_bus_reset -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x9135d905 qlogicfas408_info -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xcacc8972 qlogicfas408_queuecommand -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xcdb73377 qlogicfas408_disable_ints -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup -EXPORT_SYMBOL drivers/scsi/raid_class 0x2d93a4d2 raid_component_add -EXPORT_SYMBOL drivers/scsi/raid_class 0x76b0df58 raid_class_release -EXPORT_SYMBOL drivers/scsi/raid_class 0xe236b937 raid_class_attach -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x11e6803c scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x22520b97 fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x26d8d22e fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x446a2aae fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x50f6cabc fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5bd76223 scsi_is_fc_vport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x71c40c77 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x71c5c633 fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x96229a2c fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xba5d66b2 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xce209abf fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xef8d9afa fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfdc54c03 fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x03def8be sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0ca00a10 sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x139f9af1 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x196ea20c sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2cc7cd5e sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2deb0e64 sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3d306a2c scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x460999d1 sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x49d96ebc sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4a943271 sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4d0b0b1d sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5803b01f sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5d561b3d sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x696693d9 sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x69f23716 sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x864edf04 sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x92a3967a sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9c9d6e57 sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa309fdf7 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa6afbacf sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa7c0e143 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb64ea328 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb80c8e90 scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbc68a706 scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbfceb98c sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd6d4aff8 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xec379365 sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfc4d76e5 sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x000917d0 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x1cb26ac3 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x1fe5515b spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa06b8d33 spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe7f9acbf spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x7b22d1cf srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x7ca9b2e6 srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x95c55f3e srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xc7026fee srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x183632ac ufshcd_runtime_idle -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x28bbd4ff ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x30b5ee34 ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x51a998fe ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x71335a6a ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xbfc7ff63 ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xecb493e0 ufshcd_alloc_host -EXPORT_SYMBOL drivers/ssb/ssb 0x0af515e5 ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x1422eada ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0x14b3a476 ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0x383be1ef ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0x3cd2c7e4 ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0x5989311b ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x68cfb5c9 ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x6a1dde57 ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0x7046ecbc __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0x72abe3b0 ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0x7577dcde ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x8cda5c47 ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x9be74256 ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0xa0dea67d ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0xb559f32c ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xc28c465a ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0xc3ff5def ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xe0df21b1 ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0xf503c30a ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0xfe3f6f2d ssb_dma_translation -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x12d249f6 fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x139dd71f fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1d4a31a8 fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1e61c55c fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1ef75975 fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2620bcc3 fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2d1cbc99 fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5360316a fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6154f72f fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6ac652e3 fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6c2c6ff4 fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x74fe20a5 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x85f33f5f fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x94946543 fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb8633029 fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc7a0a7fa fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcf3bec55 fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdf66809e fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe3a5595b fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe4465de2 fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeb35aef2 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xed18f6b1 fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf407ce5c fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfcc4d59a fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x01c5bd41 fwtty_port_put -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x2defe8ac fwtty_port_get -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xf2757181 adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x078ca9e0 hmc5843_common_remove -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x339ca0a9 hmc5843_common_suspend -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x4b0ee5e3 hmc5843_common_probe -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x58ddf16d hmc5843_common_resume -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x6eded82b ade7854_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xb8d25043 ade7854_remove -EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0x3b86261a cxd2099_attach -EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0xb2ff11f9 most_deliver_netinfo -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x02b2e080 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x07325ad4 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0aa20b33 rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0c7380dc Dot11d_Channelmap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0ccfbfb2 rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0d3295b2 rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0d5a65bb rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0f66a780 rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1319fa80 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1f5a2d3a rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x258905a2 rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2bdcad55 rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2d3162a6 rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x31185c33 RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x388817f6 rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x44ace206 rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x54acc59d rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x551079c9 rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x58aecfca rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x58f2d231 rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5cc495e8 rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x60cc1da7 rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x65acb8f2 rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x65df41c6 rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x66cf6469 alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x67924e9c rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x67c42fe5 HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x69202402 rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6b206472 rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6c8040dc rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x737505aa rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x75c37099 free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x79d2783d rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x93748c13 rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x98971948 rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x99adb207 rtllib_wpa_supplicant_ioctl -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa30ce9a3 rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xac6c5465 rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb082a25e rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb1479f46 rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb9c4390f rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc4f27925 rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc922a860 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcc77d7d3 rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcf70e6b2 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd0023ad1 dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd81c8f1e rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd9d9b206 rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe91b8e30 notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xee564f22 rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x04815852 ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0c273daf ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0d97c254 Dot11d_Init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f099f61 ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1217205d Dot11d_Reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x12cb9382 DOT11D_GetMaxTxPwrInDbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1a912b9b ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1ac6021b HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d157711 IsLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x22d7bfd2 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2ba4ccf3 ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2fc27ed2 ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x334861ca ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3c1e90e2 SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3dc44c3c ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3e35104e ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x443aa265 ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x455f989f ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x45cebe89 ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4615669d ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x47714c5b ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4799b32d ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4e368526 ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5426d275 ToLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5f91a084 ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61ea895d ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6db26516 ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7646b92c ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7f086196 ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8637c844 ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8bdf093e ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9ef68210 ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa26abb2d ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa64d3b07 ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb00b4e4d ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb3af3534 ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb61b7067 ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb8570e9b ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbc382441 ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbd7b6739 ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc7d25388 ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc802cbcf ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcb91b377 ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcd764673 ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xce80a4c4 ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xced1d1d8 ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd62cc691 ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd67b6ce8 ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xda11f979 ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdfcc15ca Dot11d_UpdateCountryIe -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe052f01a DOT11D_ScanComplete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe71dcc37 ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xec049e42 ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf11afbad ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf76e55b5 ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/unisys/visorbus/visorbus 0x677d785d visorbus_get_device_by_id -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x033dc639 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0c739918 iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0dc15736 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x18457e6d iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x187a31ad iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1d081e28 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x20954241 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x37dde8a8 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x42b29112 iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5382dc4d iscsit_set_unsoliticed_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x66a0070b iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x75bd3681 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x877f4cef iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8ede61b4 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x900f9f39 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9415c817 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa11375ab iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaf92f5fd iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb201b071 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb48d575c iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xba67987b iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcae92bc6 iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcc5f48fc iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd1f15bde iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd29222b9 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe4496fcc iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xef5c3590 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf09bc8a9 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x099be0ae transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0x0d35bc1d target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x0f43a588 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x1440f69e target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x191f8013 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x192126cd transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x1b45f5d0 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x1ff0e193 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x24b2d6c7 transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x268ff38a core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x2cfa6745 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x2d2d61f9 transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x31cbbde3 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x32927b2b target_put_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x39cd3bbb core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0x3c7b693d transport_check_aborted_status -EXPORT_SYMBOL drivers/target/target_core_mod 0x421e1448 target_submit_cmd_map_sgls -EXPORT_SYMBOL drivers/target/target_core_mod 0x4962f1cf transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x4bc43620 core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x4d104821 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0x4d186414 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x506ba575 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x51d62d72 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x54cb63bb target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x54ed9c11 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x5645844f target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x5932da85 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x5a4b2b40 target_setup_cmd_from_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x5bf885ef transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x6441124f transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x715781fc sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0x724b885a target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x7703fcd5 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x78fa2dfe transport_init_se_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x7dd78e75 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x8013996a sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x80b44847 target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x84d48419 target_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x854daa22 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x86f60680 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0x95a6bbf0 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x9926fda5 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xa1a34878 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0xa87518f5 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0xa93af2ec target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xae28fc40 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0xae343243 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xafec9f9f core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0xb3377fa8 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0xb7576490 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xb76e4119 target_sess_cmd_list_set_waiting -EXPORT_SYMBOL drivers/target/target_core_mod 0xb892bca5 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xc0b40857 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0xc9e7d5d4 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0xcdf1f4f9 target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xd181fb9b sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0xd4f4e38e transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xd52c37f6 transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xd648f954 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0xd7eb3189 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xd8934101 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xd8c89f51 target_get_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xe05bbf7e core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xe2a46368 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0xee3eb101 transport_init_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf23513d9 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xf2a3600c sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xf4687f22 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xf9ce9c50 transport_init_session -EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x1887763e acpi_thermal_rel_misc_device_add -EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x5007fc2c acpi_parse_art -EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x86c998e6 acpi_thermal_rel_misc_device_remove -EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0xdf707fab acpi_parse_trt -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x3e13d656 usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x7a662656 usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x496370c1 sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x00951a9b usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0bd7c38a usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x28ca2648 usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3e00d3d1 usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x77492cbe usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8a5c1d3e usb_wwan_ioctl -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8ac41abf usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8ba236e6 usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa153ceef usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc801342a usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xcdc0f6a3 usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xddd03c28 usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x3f5b9626 usb_serial_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xefb882ee usb_serial_resume -EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user -EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user -EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user -EXPORT_SYMBOL drivers/vhost/vringh 0x3c71c418 vringh_getdesc_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user -EXPORT_SYMBOL drivers/vhost/vringh 0x5fedea44 vringh_getdesc_user -EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user -EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user -EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user -EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern -EXPORT_SYMBOL drivers/video/backlight/lcd 0x5805c260 lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x9248d67a lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xbefd2a55 devm_lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xe58c0e4e devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x05aa11ab svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x3e2aa199 svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7314aa71 svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x82b85fe6 svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x96e1805c svga_tilecopy -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe2d5d639 svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xefebb104 svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x8656cf17 sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x7fa76e22 sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xe648dbfc sys_imageblit -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xd90ed61e cyber2000fb_attach -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x2e9cc82a mac_find_mode -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x67834b54 matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x760d4e8c matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xdf974880 g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x05c25529 DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x2211653c DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x517d3bd7 matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xcf372c3f matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x39daa7a9 matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x5a2e846d matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x22745515 matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xa691bda7 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xb0dea4b7 matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xdf54d867 matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x702c2589 matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x86e98d8b matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x015a12f0 matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x628f90c1 matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x8f6d95d1 matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xb0d8e44d matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xc9eb73be matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x52eb1059 mb862xxfb_init_accel -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free -EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga -EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x4f2c3db4 w1_ds2760_write -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x6d548b9b w1_ds2760_recall_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x8e5b40e4 w1_ds2760_store_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x934675ab w1_ds2760_read -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x48dbbfae w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xb6436761 w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x1583ec09 w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x620eeb7c w1_ds2781_io -EXPORT_SYMBOL drivers/w1/wire 0x6d6f5c52 w1_add_master_device -EXPORT_SYMBOL drivers/w1/wire 0xef82d75d w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0xf156f94e w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0xf4cc5761 w1_unregister_family -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x04e133fc iTCO_vendor_check_noreboot_on -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xa78bd894 iTCO_vendor_pre_set_heartbeat -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xb5f20875 iTCO_vendor_pre_keepalive -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xc4f657bf iTCO_vendor_pre_stop -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xdc6effc9 iTCO_vendor_pre_start -EXPORT_SYMBOL fs/configfs/configfs 0x3db19a38 configfs_unregister_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0x3e486961 config_item_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0x4a27eff9 config_item_get -EXPORT_SYMBOL fs/configfs/configfs 0x9b807abf configfs_unregister_group -EXPORT_SYMBOL fs/configfs/configfs 0xa05750a1 configfs_register_default_group -EXPORT_SYMBOL fs/configfs/configfs 0xa8eecd5b config_group_find_item -EXPORT_SYMBOL fs/configfs/configfs 0xac8003cb config_item_set_name -EXPORT_SYMBOL fs/configfs/configfs 0xb5a04299 configfs_register_group -EXPORT_SYMBOL fs/configfs/configfs 0xb76182f4 config_item_put -EXPORT_SYMBOL fs/configfs/configfs 0xb878f854 config_group_init -EXPORT_SYMBOL fs/configfs/configfs 0xbce55356 configfs_unregister_default_group -EXPORT_SYMBOL fs/configfs/configfs 0xde121d05 config_group_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0xf19f20bf configfs_depend_item -EXPORT_SYMBOL fs/configfs/configfs 0xf3fb4632 configfs_register_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0xf448b298 configfs_undepend_item -EXPORT_SYMBOL fs/exofs/libore 0x11d63ee2 ore_create -EXPORT_SYMBOL fs/exofs/libore 0x1f017eb6 ore_write -EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout -EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info -EXPORT_SYMBOL fs/exofs/libore 0x4b463585 ore_get_io_state -EXPORT_SYMBOL fs/exofs/libore 0x75a8fd8f extract_attr_from_ios -EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length -EXPORT_SYMBOL fs/exofs/libore 0xbb0ccf0b ore_read -EXPORT_SYMBOL fs/exofs/libore 0xcb8a0236 ore_get_rw_state -EXPORT_SYMBOL fs/exofs/libore 0xce9c6fb4 ore_check_io -EXPORT_SYMBOL fs/exofs/libore 0xe325601c ore_truncate -EXPORT_SYMBOL fs/exofs/libore 0xe7acc46d ore_remove -EXPORT_SYMBOL fs/exofs/libore 0xe8e733ce ore_put_io_state -EXPORT_SYMBOL fs/fscache/fscache 0x060457f2 __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x17b35d8a fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0x1eb9b839 __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x2ab42f6b fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0x2c77635c fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0x2fe5b75b __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0x343980a1 fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0x38c38db1 fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0x42a9594b fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0x46c0990f __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x5bb46f09 __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x5c6d03a8 fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0x6768d5d2 fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0x68af2a0a __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x70deff73 __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x783e397b fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0x7c47235e __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x7c9aafd5 __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x916d4637 fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0x948f8101 __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0x977f8a53 fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0x9bdf323e fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0xa122b005 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0xb14b7e63 __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xb3529bb5 __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0xb86e4ec6 __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0xba7fe769 fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0xbd034bfc __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0xbef699ca fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0xbf03c8bb __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0xc92b05c9 __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0xcfd28166 __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xd14c0a0f __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xdd9ecf67 __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xe1254b8c fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0xe21d7d8b fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0xe7d6feb9 __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0xf9df5c88 fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0xfa217045 fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0xfb673da2 __fscache_check_page_write -EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x48f0b4cb qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x69c23529 qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x70bfc2b3 qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0x8b380d19 qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x8d38a192 qtree_delete_dquot -EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq -EXPORT_SYMBOL lib/crc-ccitt 0x1a703ba1 crc_ccitt -EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table -EXPORT_SYMBOL lib/crc-itu-t 0x6d356209 crc_itu_t -EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table -EXPORT_SYMBOL lib/crc7 0x56329ecc crc7_be -EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table -EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb -EXPORT_SYMBOL lib/crc8 0xd09b2cba crc8 -EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb -EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c -EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy -EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get -EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed -EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of -EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset -EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used -EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del -EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get -EXPORT_SYMBOL lib/lru_cache 0x91413ad3 lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create -EXPORT_SYMBOL lib/lru_cache 0xba8abca3 lc_seq_dump_details -EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock -EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set -EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find -EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put -EXPORT_SYMBOL lib/lz4/lz4_compress 0x0c222eb5 lz4_compress -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x682a23e0 lz4hc_compress -EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul -EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp -EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv -EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page -EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi -EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul -EXPORT_SYMBOL net/6lowpan/6lowpan 0x6acab20d lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0xd108ed76 lowpan_netdev_setup -EXPORT_SYMBOL net/6lowpan/6lowpan 0xd6526b66 lowpan_nhc_add -EXPORT_SYMBOL net/802/p8022 0x2b205d33 register_8022_client -EXPORT_SYMBOL net/802/p8022 0xb547966e unregister_8022_client -EXPORT_SYMBOL net/802/p8023 0x28f7d390 destroy_8023_client -EXPORT_SYMBOL net/802/p8023 0x9ac997f7 make_8023_client -EXPORT_SYMBOL net/802/psnap 0x0fd4096f unregister_snap_client -EXPORT_SYMBOL net/802/psnap 0x3a839a23 register_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x050e5a1a p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x07975cc6 p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0x0b0c4122 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x1120d008 p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x18f05653 p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x2007af6e p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x2a79d416 p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0x31d530fa p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0x327b9a3a p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x33bc4ec1 p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get -EXPORT_SYMBOL net/9p/9pnet 0x38fa0a5d v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0x3aeaa2d6 p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x3b9035e5 p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x3bb0836a p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0x4c1581fc p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x518ecb2c p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0x59ee6dbf p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x5d3f3cec p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x5ec5e969 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x7abfb5e6 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x8b8d9d97 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x8e9a56cd p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0x8f6c578c p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x8f76d88d p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0x90d3fbc0 p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0x90f66a5c p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x9ab818ce p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x9bc798d1 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x9fdfa604 v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0xaa23f10b p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0xaa940b8a p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0xafdc7b37 p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0xb4ba7316 v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0xb6433476 p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0xbed17b20 p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0xc0381bf8 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy -EXPORT_SYMBOL net/9p/9pnet 0xd3d8bc77 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0xd8ca57d0 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0xde5d8b51 p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xe61cea35 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create -EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put -EXPORT_SYMBOL net/9p/9pnet 0xfb20c5ec p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check -EXPORT_SYMBOL net/9p/9pnet 0xfe84de91 p9_client_walk -EXPORT_SYMBOL net/appletalk/appletalk 0x54bb142e atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0x84ec7894 alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0x8dda7eb9 atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0xcfa20438 aarp_send_ddp -EXPORT_SYMBOL net/atm/atm 0x04204202 vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0x150fa949 atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0x23cacf8a deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x2bdc8e90 atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x4a14e474 register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x51173546 atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0x646b38f1 atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0x70ad51ab atm_charge -EXPORT_SYMBOL net/atm/atm 0x7df45003 atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0x8ddbfc86 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0x97fcaee4 vcc_release_async -EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xa4b33e3f atm_dev_register -EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xb076b10e vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0xd6b536ea atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/ax25/ax25 0x05b706d1 ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0x13508c10 ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x25507ff9 ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0x437fdce1 ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x74052141 ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0xbf0c807d ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xcc1ef11a ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xe977fe8c ax25_linkfail_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x03acc945 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0667d8d2 __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x181a6ebd hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1b2606dd bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1dea0d13 hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x22307db0 hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2637e89e bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x28e3301c bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2a8b22f7 bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2e3222b4 bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3a037505 hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3b312586 hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err -EXPORT_SYMBOL net/bluetooth/bluetooth 0x481008c5 hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4d25d4c2 l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x50c6c96a l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5481e94f hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0x55e7c425 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5a6f53c2 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x631b5da2 bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6b138502 bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x76db346a hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7eb9811b hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8187f2fe l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0x85f5267a bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x89066b9c hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8f06b99b bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno -EXPORT_SYMBOL net/bluetooth/bluetooth 0x91f9f7bc bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0x93e38b09 bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9b096dd3 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa2e85a67 hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa66437dc bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xadb4b3dc bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0xaefb6a11 hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc38c43b9 hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc3fb7872 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcfb4ac8b hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd07853da hci_alloc_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe4f618c7 l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0xed18a5b5 __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf11a251f hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfe859755 hci_conn_check_secure -EXPORT_SYMBOL net/bridge/bridge 0x6f3dd626 br_should_route_hook -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x2afd2b7d ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xc516c794 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xcc837258 ebt_register_table -EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x2149305f caif_disconnect_client -EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative -EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info -EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer -EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x6392a65e caif_enroll_dev -EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head -EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head -EXPORT_SYMBOL net/caif/caif 0x97a36fb0 cfcnfg_add_phy_layer -EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio -EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xb865ff08 get_cfcnfg -EXPORT_SYMBOL net/caif/caif 0xdb0ecc8d caif_connect_client -EXPORT_SYMBOL net/can/can 0x138e428d can_ioctl -EXPORT_SYMBOL net/can/can 0x2471a8d4 can_rx_unregister -EXPORT_SYMBOL net/can/can 0x8ac4955f can_send -EXPORT_SYMBOL net/can/can 0x986a496f can_rx_register -EXPORT_SYMBOL net/can/can 0xe1d8cdf0 can_proto_register -EXPORT_SYMBOL net/can/can 0xfd069c4c can_proto_unregister -EXPORT_SYMBOL net/ceph/libceph 0x05914352 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0x059aec52 ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init -EXPORT_SYMBOL net/ceph/libceph 0x098d781c ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x0cafb8c0 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x0cb2286b ceph_messenger_init -EXPORT_SYMBOL net/ceph/libceph 0x0e774189 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x11c033ef ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x15420cec ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0x1754e9b8 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x17582002 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x1a4dc5ae ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x1d3cd602 ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup -EXPORT_SYMBOL net/ceph/libceph 0x21c60751 ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x223353d7 osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x24d897df ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x2d71c437 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0x2e11fcf2 osd_req_op_watch_init -EXPORT_SYMBOL net/ceph/libceph 0x30ae7761 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x39a842b2 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x3e06c918 ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options -EXPORT_SYMBOL net/ceph/libceph 0x419cb09b ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0x41df0d23 ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part -EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0x44417900 ceph_get_direct_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x49430435 ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x52cfb6a6 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode -EXPORT_SYMBOL net/ceph/libceph 0x551c1bc3 ceph_monc_do_get_version -EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x5c80fde0 ceph_monc_request_next_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x61295981 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x617886c7 ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x63b3ef3f ceph_oloc_oid_to_pg -EXPORT_SYMBOL net/ceph/libceph 0x648f51c6 __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x64b06b7d ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0x6ad52f86 ceph_messenger_fini -EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x6cd9ce31 ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0x6d0ea4a4 ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x6d216216 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x6dc371e5 osd_req_op_cls_response_data -EXPORT_SYMBOL net/ceph/libceph 0x6f9de8dd osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x6fcdafef ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0x70ab1b44 ceph_client_id -EXPORT_SYMBOL net/ceph/libceph 0x72c3b00d ceph_osdc_build_request -EXPORT_SYMBOL net/ceph/libceph 0x733206fb osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x7830ecac ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0x78969e47 ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0x79bed200 osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x79dd7ea5 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0x83cf944b ceph_monc_got_mdsmap -EXPORT_SYMBOL net/ceph/libceph 0x83e1d671 ceph_calc_pg_primary -EXPORT_SYMBOL net/ceph/libceph 0x86991b78 osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0x8b462bfc ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x8edc24ba osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup -EXPORT_SYMBOL net/ceph/libceph 0x9de49589 ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0x9ed65277 osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xa08e2ec7 ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0xa0a23bf6 ceph_osdc_cancel_event -EXPORT_SYMBOL net/ceph/libceph 0xa23acd85 ceph_auth_create_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xa5eaf39e ceph_osdc_create_event -EXPORT_SYMBOL net/ceph/libceph 0xa664dc6f ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0xa8a4141a ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xae9630be ceph_osdc_put_event -EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb1cf3b1b osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0xb27d2b55 osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xb2ace830 ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit -EXPORT_SYMBOL net/ceph/libceph 0xb9a9fea0 ceph_osdc_readpages -EXPORT_SYMBOL net/ceph/libceph 0xc1c5aab0 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup -EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0xc7a093c7 ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xc9cafbf9 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init -EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips -EXPORT_SYMBOL net/ceph/libceph 0xcb5765f7 ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode -EXPORT_SYMBOL net/ceph/libceph 0xd2c165a9 ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0xd539c678 ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0xd547ffde ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0xd7acd83f ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xdc569634 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0xdc90d378 ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0xddb4df33 ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xe126bf14 ceph_auth_update_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xe3b042ca ceph_pagelist_append -EXPORT_SYMBOL net/ceph/libceph 0xe6ab9fd5 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0xec2b17d0 ceph_osdc_set_request_linger -EXPORT_SYMBOL net/ceph/libceph 0xf097df90 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0xf35cb4d9 ceph_pagelist_reserve -EXPORT_SYMBOL net/ceph/libceph 0xf4cee6d0 ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0xf4eb8057 ceph_osdc_writepages -EXPORT_SYMBOL net/ceph/libceph 0xf560d148 ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0xf8a93f8e ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0xf9913c7f ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xfa9e4349 osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0xfac21156 ceph_osdc_cancel_request -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x7bded768 dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x8f30a431 dccp_req_err -EXPORT_SYMBOL net/ieee802154/ieee802154 0xa36caa0a wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0xb0903a0a wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0xc94fdf71 wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0xd222aa66 wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0xe72516df wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0xf506a7a6 wpan_phy_find -EXPORT_SYMBOL net/ipv4/fou 0x306d50e6 fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0x3106aeb4 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x459d3a2d gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0xd0750778 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x0d938e1e ip_tunnel_encap -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x26f3e283 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x3f13fbd3 ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x84782cbc ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xc4d629d4 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xcf486084 ip_tunnel_dst_reset_all -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x0376e289 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x329fbbe4 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x3e80371e arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xa0265ca4 ipt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xa170f918 ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xb8701cbe ipt_register_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x88d747ff xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0x8d2a97ef xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x1663ae4c udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x30c0c196 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x40837a93 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc8bbd149 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd0a96ebc ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x07a940ae ip6t_unregister_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x8ac63423 ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xfc73ac45 ip6t_do_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x2e1068d6 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/tunnel6 0x68780958 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x250e5ae6 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x78137e56 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x183d4ff4 ircomm_data_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x278c05a5 ircomm_disconnect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x5df96d4c ircomm_close -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x90ffb3cb ircomm_flow_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xa0e162f1 ircomm_open -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xabb90663 ircomm_control_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xbf0449b0 ircomm_connect_response -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xfc055b75 ircomm_connect_request -EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value -EXPORT_SYMBOL net/irda/irda 0x074bc628 irlmp_connect_response -EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service -EXPORT_SYMBOL net/irda/irda 0x0963c24b irias_add_string_attrib -EXPORT_SYMBOL net/irda/irda 0x09939c11 irias_add_integer_attrib -EXPORT_SYMBOL net/irda/irda 0x0b8da3ae irttp_data_request -EXPORT_SYMBOL net/irda/irda 0x23bbc2ce irias_find_object -EXPORT_SYMBOL net/irda/irda 0x272fca80 async_unwrap_char -EXPORT_SYMBOL net/irda/irda 0x2b432980 hashbin_get_next -EXPORT_SYMBOL net/irda/irda 0x2be454a0 irlmp_data_request -EXPORT_SYMBOL net/irda/irda 0x2eb735c6 irttp_close_tsap -EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda -EXPORT_SYMBOL net/irda/irda 0x350be1e2 irda_device_set_media_busy -EXPORT_SYMBOL net/irda/irda 0x385847aa irias_delete_object -EXPORT_SYMBOL net/irda/irda 0x3c889e75 irttp_udata_request -EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value -EXPORT_SYMBOL net/irda/irda 0x46b00fdf irias_insert_object -EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service -EXPORT_SYMBOL net/irda/irda 0x5209f845 irttp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0x553f5be2 irttp_dup -EXPORT_SYMBOL net/irda/irda 0x62d77b42 irlmp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0x64ce3d5e irlmp_open_lsap -EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies -EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client -EXPORT_SYMBOL net/irda/irda 0x70a3f20f hashbin_lock_find -EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client -EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client -EXPORT_SYMBOL net/irda/irda 0x7c23866e irttp_flow_request -EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert -EXPORT_SYMBOL net/irda/irda 0x9054f903 irda_notify_init -EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack -EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all -EXPORT_SYMBOL net/irda/irda 0x98a8b3b4 hashbin_delete -EXPORT_SYMBOL net/irda/irda 0x9ccbdfca hashbin_insert -EXPORT_SYMBOL net/irda/irda 0xa53ef172 iriap_getvaluebyclass_request -EXPORT_SYMBOL net/irda/irda 0xa7e5d251 irttp_connect_response -EXPORT_SYMBOL net/irda/irda 0xac3dc858 irias_add_octseq_attrib -EXPORT_SYMBOL net/irda/irda 0xae94e8ed irlap_close -EXPORT_SYMBOL net/irda/irda 0xaeeff2b5 hashbin_find -EXPORT_SYMBOL net/irda/irda 0xb00a9da9 iriap_open -EXPORT_SYMBOL net/irda/irda 0xb0eb416b async_wrap_skb -EXPORT_SYMBOL net/irda/irda 0xb71bbbd7 irlmp_connect_request -EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value -EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute -EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request -EXPORT_SYMBOL net/irda/irda 0xc4653906 irttp_connect_request -EXPORT_SYMBOL net/irda/irda 0xd304ce89 irlmp_close_lsap -EXPORT_SYMBOL net/irda/irda 0xd4e46036 iriap_close -EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma -EXPORT_SYMBOL net/irda/irda 0xdc0196c2 hashbin_remove -EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint -EXPORT_SYMBOL net/irda/irda 0xe044536b irttp_open_tsap -EXPORT_SYMBOL net/irda/irda 0xe1ba6308 irias_new_object -EXPORT_SYMBOL net/irda/irda 0xe329462a hashbin_get_first -EXPORT_SYMBOL net/irda/irda 0xea453f30 alloc_irdadev -EXPORT_SYMBOL net/irda/irda 0xeb78333e hashbin_remove_this -EXPORT_SYMBOL net/irda/irda 0xec242b93 hashbin_new -EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries -EXPORT_SYMBOL net/irda/irda 0xf41d3d8b irlap_open -EXPORT_SYMBOL net/l2tp/l2tp_core 0x869fdfc7 l2tp_recv_common -EXPORT_SYMBOL net/l2tp/l2tp_ip 0xd06bad54 l2tp_ioctl -EXPORT_SYMBOL net/lapb/lapb 0x0f430ccb lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0x62e21849 lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0x7885fe5a lapb_register -EXPORT_SYMBOL net/lapb/lapb 0x803a66be lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0x80452d26 lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0xd90d435c lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0xeca6cbfe lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0xf6030115 lapb_data_received -EXPORT_SYMBOL net/llc/llc 0x2d17461f llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x5d2f7445 llc_add_pack -EXPORT_SYMBOL net/llc/llc 0x8ac6e6af llc_sap_find -EXPORT_SYMBOL net/llc/llc 0x98912d90 llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0xc9060a04 llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0xe4fd3d24 llc_sap_open -EXPORT_SYMBOL net/llc/llc 0xe600e092 llc_sap_close -EXPORT_SYMBOL net/mac80211/mac80211 0x0050b0b5 ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x083dbbcc ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x0a03f7bd wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x0bd609f2 ieee80211_get_key_tx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x0ccb0303 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x1238fcb8 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x1269becb ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x12ad465a ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x12d8cb21 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0x133a6bee ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x140a01de ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x14708c55 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x16e8a82b ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x183cd075 ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x2322cfb4 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x28a25546 ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x29efc327 ieee80211_start_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x2eb96a47 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x2efff76d ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x2fb86e5b ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x2ff27bf3 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x396d4813 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x3c08d9e7 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x3e769839 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x415a35c7 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x419c0202 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x44364ed2 rate_control_send_low -EXPORT_SYMBOL net/mac80211/mac80211 0x4c2b011a ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x4c8ee94c ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0x4dac805a ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0x4ee7a422 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0x4ef6748b ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x55f97e4f ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x5ba02d2e ieee80211_tx_status_noskb -EXPORT_SYMBOL net/mac80211/mac80211 0x5e4b83ea ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0x5e5abbca ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0x5f9d9e90 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x60a6c8f6 ieee80211_csa_update_counter -EXPORT_SYMBOL net/mac80211/mac80211 0x60b6fd90 ieee80211_stop_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x629125be ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x66aaabd6 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x6b28700b ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x6c025f55 ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x6e000dda ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x7cc61014 ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0x808b92d7 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x83336bb8 ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0x83dd1b79 ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0x8497ebf6 ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x8ae388f5 ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0x8cfd511c ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0x8fca72be __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x8fd3b4bd ieee80211_csa_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0x96884197 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0x9a7be238 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x9de09262 ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x9f382e01 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xa8d446c7 ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xac17096a ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xaf3a52f5 ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0xaf5cf0f6 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xb988875b ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xbbc8050c ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0xbefac65b ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0xc12ebd71 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0xc1bc2e0d ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xc2c369ea ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0xcd34d788 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0xd0c89d19 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0xd13c6425 ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0xd1486120 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xd4db1208 rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0xdca9e718 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0xdcbc7e4a ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xe051e270 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0xe3f7741c ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xefc92c31 ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0xf2390ff0 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xf4997d5a ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xf5490197 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xf89ce49f ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0xff296ec2 ieee80211_queue_work -EXPORT_SYMBOL net/mac802154/mac802154 0x0dd9175e ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0x21eb79de ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x320b1fe3 ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x6158000b ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xdb2c8c27 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xdb535ae9 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0xed8ba3ff ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0xf2ae9e99 ieee802154_alloc_hw -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2089bc2b ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2312829e ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3a9e9c9b unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x40067c9d register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4bcb5b91 ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4fd4bab1 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6c2e0333 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7cd8ba77 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x95355d5c ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb04ba52e ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xde55e120 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe03f86fe register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xeebbf0ef ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfb3c066d ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xb7edbf1a __nf_ct_ext_add_length -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xc1f6cda8 nf_conntrack_untracked -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xec680367 __nf_ct_ext_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x74f6941d nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0x75b46aa9 nf_xfrm_me_harder -EXPORT_SYMBOL net/netfilter/nf_nat 0x7faee067 nf_nat_used_tuple -EXPORT_SYMBOL net/netfilter/nf_nat 0x95f4adf4 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xa6e7691d __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xb9a44019 nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/x_tables 0x114764b9 xt_find_target -EXPORT_SYMBOL net/netfilter/x_tables 0x183be9aa xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0x253e8b44 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x454cb913 xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x4dd3f0e9 xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0x4dfb12cf xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x5e41e679 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xb1129db9 xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xc811ac34 xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xe40a4fa6 xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xf2c4f321 xt_unregister_target -EXPORT_SYMBOL net/nfc/hci/hci 0x0a1f71b2 nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x2871a27b nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x28f20050 nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0x406f8b0a nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x45bcf4db nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0x47ccef54 nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0x4edc680f nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0x5c7b3420 nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0x5d2a5ec8 nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0x6642f741 nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x6894d1dc nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0x85fc349b nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x8850e174 nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0x9d240096 nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0x9e546013 nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0xb084dc87 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xc2833bc0 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0xde49a871 nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0xe2f7de47 nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xe383d0be nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0xf6ef4cb8 nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x0959e34b nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x11551764 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0x11b5329c nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x12909697 nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0x1cd28813 nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x2c4caad3 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0x3214bda4 nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0x4c7022a8 nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x5a4a91ad nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0x670249d2 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x75dafaec nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x88ccdbcd nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x91f349e5 nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0x946255eb nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x9f8d3d6f nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0xa7d87628 nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0xa81ee279 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0xba2b68f3 nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xbe48cbe0 nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0xc0e7040f nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xc6859dce nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0xc7265ff0 nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0xcb763dc1 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0xd6b37008 nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0xd85614c0 nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0xe37b5ece nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0xed786746 nci_get_conn_info_by_id -EXPORT_SYMBOL net/nfc/nci/nci 0xf217c8a5 nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nfc 0x0ad6e0a5 nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x1454c63b nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0x24989df4 nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0x2551a39d nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0x3665a506 nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0x5ed4a938 nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x62356758 nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0x64ccd826 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0x6b838391 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0x6d977b80 nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0x7ae1e10d nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0x891ea0e9 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x93f39774 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0xa0c2b8c2 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0xa32c0a37 nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0xa61cc27d nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xb34090c5 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0xb7970713 nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0xcb749681 nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0xda3ced4d nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0xe0e8a350 nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0xee21d372 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0xfb0e6b3d nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0xfc1c20e5 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc_digital 0x075d7bb2 nfc_digital_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x15ed5d5d nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x1c8bbb33 nfc_digital_free_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x482afe79 nfc_digital_unregister_device -EXPORT_SYMBOL net/phonet/phonet 0x02074712 pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0x5fdeae16 phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0x631e3261 phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0x7b142537 pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0x7dd5e79f pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0x8cfea824 pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0x9ced2fa8 phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0xe2a05fa4 phonet_proto_unregister -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1f4cae40 rxrpc_kernel_get_abort_code -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x31605d3d rxrpc_kernel_intercept_rx_messages -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x38b63c13 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x3bc7ea2c rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x5135869e rxrpc_kernel_get_error_number -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x5418f852 rxrpc_kernel_reject_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x6bad91f9 rxrpc_kernel_data_delivered -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x6f84dded rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x78df40b2 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x916d1385 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x9871a19e rxrpc_kernel_accept_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xa8c42b4f rxrpc_kernel_is_data_last -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb4fafc60 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xea4ffdf1 rxrpc_kernel_free_skb -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xfefb7023 rxrpc_get_null_key -EXPORT_SYMBOL net/sctp/sctp 0x4323e5fc sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x53fac19f gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xdd694202 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xe3fa9655 gss_mech_put -EXPORT_SYMBOL net/sunrpc/sunrpc 0x4a08cf0c xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0xe674cc88 xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0xe90f1f16 svc_pool_stats_open -EXPORT_SYMBOL net/wimax/wimax 0x85933dbb wimax_reset -EXPORT_SYMBOL net/wimax/wimax 0x98803e4e wimax_rfkill -EXPORT_SYMBOL net/wireless/cfg80211 0x03fbf940 cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x07200bb1 cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x0e03c19c cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0x1259017d cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0x154e969c wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0x1c4a3584 __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x1f2e020e freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0x22d59cdd cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x26e6f401 cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x287d287e cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x2f3a085c cfg80211_connect_result -EXPORT_SYMBOL net/wireless/cfg80211 0x3027f3c4 cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x35f972bd cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x3b810079 cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x3bcf05a7 regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x3ff1e778 cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x4398fb4f cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0x43bfd8fe cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x47f79e36 cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x4be54c84 cfg80211_report_obss_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x55145a1f ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x55171355 __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x5817e1db cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x5c2dc51d cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0x627cf522 cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0x637cbb9b cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x654eb331 cfg80211_rx_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x6745ee4e __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6a520661 wiphy_rfkill_stop_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x6bca35a7 cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0x6e22136f cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x6ee52995 cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x717a4e88 regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0x77e39f02 cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x7850191b cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0x79464db9 cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x7ee994e5 cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x80d29f1b cfg80211_roamed_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x85f0f91c cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0x86986903 cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0x89ddf9ae cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x90c29da7 cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0x91d7a142 ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x98bc62a0 cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x98ef3e1c wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0x9b45277e cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x9fdbd1ea cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x9ff683a3 cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0xa0449b60 cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xa1085c73 wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0xa1425906 ieee80211_channel_to_frequency -EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xa31d05d4 wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0xa6217579 cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xa6817b96 ieee80211_data_to_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0xa7b45dd9 wiphy_rfkill_set_hw_state -EXPORT_SYMBOL net/wireless/cfg80211 0xaaef77be cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xac1875aa cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0xacb1f31d cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0xaeb7a345 wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0xb0ead94d cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0xb7868ce3 cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xb7c2de49 cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0xb8f41ab2 cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0xbc7a4986 cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xc049efa4 cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xc0b022a3 cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0xc1899b92 ieee80211_data_from_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0xc3c8af47 regulatory_set_wiphy_regd_sync_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0xc625d37a wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0xc83ef94c cfg80211_sched_scan_stopped_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xcb0dd09a cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0xcd0e043a ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xcf367ca3 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0xcfc9444a ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0xd50b0a22 ieee80211_ie_split -EXPORT_SYMBOL net/wireless/cfg80211 0xd6643e92 cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xe0bcd3dc cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xe29aac05 cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0xeae944c1 __ieee80211_get_channel -EXPORT_SYMBOL net/wireless/cfg80211 0xeb766a28 cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xeb972bda cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0xed7ffc76 cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xf6009895 cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0xf7c660b1 cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0xf9c215e1 cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie -EXPORT_SYMBOL net/wireless/lib80211 0x0fd7a657 lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x66b7dae1 lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0x837fdfd3 lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xaa41ece3 lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xcd21f448 lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0xe68527c1 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL sound/ac97_bus 0xd1fe7254 ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xf05f9bf2 snd_mixer_oss_ioctl_card -EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x52a0e1be snd_seq_event_port_attach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0xa4fbd148 snd_seq_kernel_client_enqueue_blocking -EXPORT_SYMBOL sound/core/seq/snd-seq 0xafadd5a5 snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue -EXPORT_SYMBOL sound/core/seq/snd-seq 0xd498021a snd_seq_kernel_client_write_poll -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x0c907cdd snd_seq_device_new -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x205395a0 snd_midi_event_encode_byte -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x614705ff snd_midi_event_no_status -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x7746bb9b snd_midi_event_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x79794472 snd_midi_event_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x991c0f60 snd_midi_event_reset_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xef8fa3d2 snd_midi_event_free -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xf3f0324e snd_midi_event_reset_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xf6fdda44 snd_midi_event_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x6a8b77f3 snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x0b7c3465 snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0x0d01570c snd_register_device -EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program -EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer -EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x1da8e54a snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0x1ea4d4d9 snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0x1ef8dca3 snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0x1f6822d1 snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x26cd118a snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0x2748b172 snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0x2e830795 snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0x327e5041 snd_ctl_register_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x32c55428 snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio -EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x3b54fe21 snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0x40023c18 snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0x431415a5 snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0x487a0dd1 snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x50ff1311 snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0x6b6df6b0 snd_info_register -EXPORT_SYMBOL sound/core/snd 0x6fe000da snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable -EXPORT_SYMBOL sound/core/snd 0x7c30cf09 snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0x84eb20d8 snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0x8b123f7d snd_device_register -EXPORT_SYMBOL sound/core/snd 0x8c48fb41 snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL sound/core/snd 0x8e978e84 snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x938d5c8e snd_jack_new -EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0x9fd968c3 snd_device_new -EXPORT_SYMBOL sound/core/snd 0x9ffdab58 snd_seq_root -EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id -EXPORT_SYMBOL sound/core/snd 0xa2dacb67 snd_device_free -EXPORT_SYMBOL sound/core/snd 0xa458393f snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0xa4d557a1 snd_ctl_unregister_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0xa5e17835 snd_power_wait -EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb3a303d3 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0xc2eefe82 snd_card_register -EXPORT_SYMBOL sound/core/snd 0xc3b021c1 snd_component_add -EXPORT_SYMBOL sound/core/snd 0xcde024a7 snd_card_free -EXPORT_SYMBOL sound/core/snd 0xd91e358f snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0xda75f6df snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0xdcbbb447 snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0xdf2c04bd snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0xe6901c19 snd_cards -EXPORT_SYMBOL sound/core/snd 0xe8875ce3 snd_jack_report -EXPORT_SYMBOL sound/core/snd 0xe8fdea62 snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0xf045e189 snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0xf25ab719 snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0xf34f8645 snd_card_new -EXPORT_SYMBOL sound/core/snd 0xf5662560 snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0xf7f9db00 snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0xf968eeb1 _snd_ctl_add_slave -EXPORT_SYMBOL sound/core/snd 0xfabf09a8 snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio -EXPORT_SYMBOL sound/core/snd-hwdep 0xbb14cd95 snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any -EXPORT_SYMBOL sound/core/snd-pcm 0x04c414b8 snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x06b310c9 snd_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x0a64f374 snd_pcm_mmap_data -EXPORT_SYMBOL sound/core/snd-pcm 0x1297e94d snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0x16c1d5c9 snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x271dfc6f snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0x29e25980 snd_pcm_notify -EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x3b33f586 snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0x3fa1a74f snd_pcm_new_internal -EXPORT_SYMBOL sound/core/snd-pcm 0x40434a5f snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0x44293515 snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0x46c15d4e snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0x49fd1fbf _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x4c5750f5 snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x505b21f0 snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL sound/core/snd-pcm 0x5898dcba snd_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x59e1c380 snd_pcm_lib_writev -EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x617389f0 snd_pcm_lib_write -EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width -EXPORT_SYMBOL sound/core/snd-pcm 0x6b2589a8 snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x6dce6226 snd_pcm_lib_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x6e3e112b snd_pcm_sgbuf_ops_page -EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x6ff5ed96 snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x73dbc37c snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0x7cfe5337 snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x83fa2c18 snd_pcm_limit_hw_rates -EXPORT_SYMBOL sound/core/snd-pcm 0x840f77e9 snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0x8d08c999 snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0x8fddcc04 snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x921780ba snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0x9c681307 snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0x9cae6cd3 snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0x9d2ca65e snd_dma_alloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xa0199d80 snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL sound/core/snd-pcm 0xa06a840d snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xb41a12c4 snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xba6ab250 snd_pcm_suspend -EXPORT_SYMBOL sound/core/snd-pcm 0xba9477cf snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xbb99e580 snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0xc1a73108 snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0xc664bf82 snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0xca34c226 snd_sgbuf_get_chunk_size -EXPORT_SYMBOL sound/core/snd-pcm 0xd182aeae snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0xd94d71ca snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0xda4780d9 snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xdab64e38 snd_pcm_lib_mmap_iomem -EXPORT_SYMBOL sound/core/snd-pcm 0xe2cabe36 snd_pcm_hw_rule_noresample -EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xe8130e23 snd_pcm_lib_readv -EXPORT_SYMBOL sound/core/snd-pcm 0xe84cfd8f snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xeefbb3cb snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xf0182c92 snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0xfb6de873 snd_pcm_lib_read -EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1490a223 __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x36e49ca1 snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0x36f3e835 snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x41456e3b snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4500de54 snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4574dcb5 snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4628054a snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4bbb36e0 __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x574b4601 snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x64f12274 snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0x658c1c82 snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0x6c29a060 snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x7be480aa snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x93246ea5 snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0xc180c65e snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0xcbca9fd9 snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd4a02076 snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe40a46f7 snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe9006ad2 snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-timer 0x1b713353 snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0x2ec3dc35 snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0x3e9d71eb snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0x57d17737 snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0x6629f783 snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0x69321e1e snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0x9230d3f7 snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0x93f8ba6f snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0xbf24ecfc snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0xd83c9cd7 snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0xdaee3e71 snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0xe60271bb snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0xecf11f79 snd_timer_open -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6de31b77 snd_mpu401_uart_new -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x169fd419 snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1c1ae779 snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x56f20a27 snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6195c855 snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7d0d0ecd snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa036d2cb snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb47227a1 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb747feef snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xff8bf497 snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x00a8fedd snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x0e2aeec1 snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3912cfce snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7e4a797e snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa737eac2 snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xaada6f5d snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xac12c0d9 snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd6a58df6 snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf9288b72 snd_vx_suspend -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x00bde88c snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x040c0795 amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x165fc024 cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x205afa3b fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20bb47d0 avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x22306af0 avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2887836b amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x34493675 cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3aa56651 amdtp_stream_stop -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x493b1d28 fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5a179860 fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x75fdc9ee amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fee8dd4 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x845178b5 amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x86935a9d fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8ded1583 cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8eb3b601 amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x954ae6cf snd_fw_async_midi_port_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9d00aa3c amdtp_stream_pcm_pointer -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb78ba049 avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc9c620bf iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xca080e91 amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xce5f88f1 cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xce949f10 amdtp_stream_start -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd4ca75d8 cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe1a669b5 fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe217460d amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe307e212 amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xecdd2563 snd_fw_async_midi_port_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf0b93f06 iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf7ce7760 fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfc49988b fw_iso_resources_update -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x7c31add5 snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x8ec49620 snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x12a237fb snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3ed165d8 snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x43519228 snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x52c106fe snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x68abb722 snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb7a0e0f6 snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd1f87b4c snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf19d9fba snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x097d664c snd_ak4117_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x204200ce snd_ak4117_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x60b94600 snd_ak4117_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xc6a27bde snd_ak4117_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xc88ed488 snd_ak4117_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xfc28eab7 snd_ak4117_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x8548a2e9 snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x955d2d9b snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xddb73c79 snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xf091b8d2 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x00186b98 snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xfa04b39c snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x1c0df4e9 snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x2d0e8f15 snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x35fcf878 snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x8c8bdb20 snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xe18d0fd3 snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xebe38270 snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x0842d144 snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x5b2b37a5 snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x6c7d35cb snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xd8b4d32d snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0xe12566b9 snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xfc49cec2 snd_i2c_probeaddr -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x00caffbd snd_sbmixer_write -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x10b38ca8 snd_sbmixer_read -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x3b7b1950 snd_sbdsp_get_byte -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x4a4eeb93 snd_sbmixer_add_ctl -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5caef118 snd_sbmixer_new -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x811c6bae snd_sbmixer_suspend -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xac98f7df snd_sbdsp_command -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xb874ea93 snd_sbmixer_resume -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xeb1fbf73 snd_sbdsp_create -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xf7006b61 snd_sbdsp_reset -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x10647a22 snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x249170a6 snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2e7b5d98 snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x310de8ec snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4a36c7a9 snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6e2dd117 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6fab8361 snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x72b96c56 snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa2979e56 snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa3ca2540 snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa68fb1b6 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc9d35f7b snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd02d03a2 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd9692728 snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdd017a86 snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe73fbc27 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xff58ffc7 snd_ac97_write -EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0x573fb942 hpi_send_recv -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x0fc262fe snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x43631008 snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x501497fd snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x67933951 snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x732e4fa1 snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x9d424b66 snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xa4101eb2 snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc11258e7 snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc3d847fb snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x1fba1372 snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x6d9f9b53 snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xec168fc3 snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0376749e oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0b9f76a8 oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x21347746 oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2ce4c35f oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2eea3d88 oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2f32d80b oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3bfb443d oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4045b5c9 oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x443c9f2e oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x65230b1b oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6680fc35 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6932f674 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7b9326e2 oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8b174539 oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9c9216a5 oxygen_pci_remove -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa3f953cd oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa3ff63a4 oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa7b516db oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc2c33252 oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd9f3b960 oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfa077477 oxygen_write_uart -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x0a7dc512 snd_trident_write_voice_regs -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x22e601b0 snd_trident_stop_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x659bde69 snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x84719818 snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xdde36a84 snd_trident_free_voice -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x03e0587f tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x0cf33a9e tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-dsp 0x67a3df58 sst_dma_new -EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-dsp 0xdc045797 sst_dma_free -EXPORT_SYMBOL sound/soc/snd-soc-core 0x6b526407 snd_soc_alloc_ac97_codec -EXPORT_SYMBOL sound/soundcore 0x101b9de9 sound_class -EXPORT_SYMBOL sound/soundcore 0x27f03de1 register_sound_special_device -EXPORT_SYMBOL sound/soundcore 0x4665bf20 register_sound_midi -EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x818f20ce register_sound_dsp -EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xcea7b5b3 register_sound_special -EXPORT_SYMBOL sound/soundcore 0xdb6bb374 register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x1588b71f snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x627e7d71 snd_emux_new -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x79b9a7d4 snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xbd5bb4ba snd_emux_free -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xfee364a2 snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xfef3d38e snd_emux_register -EXPORT_SYMBOL sound/synth/snd-util-mem 0x3067a9c9 snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x3ced2712 __snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x3d048eed snd_util_memhdr_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x68bdd18d __snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0x6a492129 snd_util_memhdr_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0xb81939be snd_util_mem_avail -EXPORT_SYMBOL sound/synth/snd-util-mem 0xbab4df4d snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0xeddcbb09 __snd_util_memblk_new -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xce645c9a snd_usbmidi_create -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect -EXPORT_SYMBOL ubuntu/hio/hio 0x14e060b9 ssd_submit_pbio -EXPORT_SYMBOL ubuntu/hio/hio 0x3398316d ssd_set_wmode -EXPORT_SYMBOL ubuntu/hio/hio 0x3ff0b3fb ssd_bm_status -EXPORT_SYMBOL ubuntu/hio/hio 0x83b74dac ssd_register_event_notifier -EXPORT_SYMBOL ubuntu/hio/hio 0x884b29f8 ssd_get_temperature -EXPORT_SYMBOL ubuntu/hio/hio 0x8b36ebd2 ssd_get_version -EXPORT_SYMBOL ubuntu/hio/hio 0xb10159a9 ssd_get_label -EXPORT_SYMBOL ubuntu/hio/hio 0xbb576418 ssd_reset -EXPORT_SYMBOL ubuntu/hio/hio 0xe05f7ad5 ssd_get_pciaddr -EXPORT_SYMBOL ubuntu/hio/hio 0xf13b355f ssd_set_otprotect -EXPORT_SYMBOL ubuntu/hio/hio 0xfabf1ba2 ssd_unregister_event_notifier -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x00322056 VBoxGuest_RTMpCpuIdFromSetIndex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x01674ab7 VBoxGuest_RTSemMutexRequestNoResume -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0429a6f0 VBoxGuest_RTThreadCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x057fd386 VBoxGuest_RTR0MemObjLockKernelTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0731e88d VBoxGuest_RTAssertMsg2Add -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x079b132d VBoxGuest_RTMemTmpAllocTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x08ed98db VBoxGuest_RTMemDupExTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x09a88bc3 VBoxGuest_RTTimeExplode -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0a442050 VBoxGuest_RTAssertAreQuiet -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0b94344b VBoxGuest_g_pszRTAssertExpr -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0beb235d VBoxGuest_RTMpIsCpuWorkPending -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0cd1b64d VBoxGuest_RTMpCurSetIndex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0d10d1ca VBoxGuest_RTTimeNormalize -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0f3e114a VBoxGuest_RTSemSpinMutexCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0f884b3a VBoxGuest_RTStrToInt64Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x11ced39a VBoxGuest_RTSemEventWaitEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x11e95d2e VBoxGuest_RTLogLoggerEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x11f80121 VBoxGuest_RTSemMutexRelease -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x12614b82 VBoxGuest_RTStrToInt8Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x12f430f3 VBoxGuest_RTAssertMsg2AddV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x147206e1 VBoxGuest_RTStrToUInt64 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x151752ec VBoxGuest_RTHeapSimpleGetFreeSize -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1520b2c8 VBoxGuest_RTLogCreateEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x160b14d4 VBoxGuest_RTMpGetPresentSet -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1926b25c VBoxGuest_RTLogRelLogger -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x19790b4c VBoxGuest_RTLogFlags -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x197acd65 VBoxGuest_RTR0Init -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1a6d7d86 VBoxGuest_RTThreadPreemptIsEnabled -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1ae28abb VBoxGuest_RTThreadIsSelfAlive -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1c3b0f90 VBoxGuest_RTR0MemObjAddressR3 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1dc5ebbe VBoxGuest_RTThreadWaitNoResume -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1f3e577b VBoxGuest_RTMemTmpAllocZTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1f70d065 VBoxGuest_RTErrConvertToErrno -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2003169b VBoxGuest_RTSpinlockAcquire -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x20728ae6 VBoxGuest_RTThreadCreateV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x20d9d625 VBoxGuest_RTTimeToString -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x22058511 VBoxGuest_RTSemMutexRequestDebug -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2254228b VBoxGuest_RTMpGetPresentCount -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2387f039 VBoxGuest_RTMpIsCpuPresent -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x25219f5e VBoxGuest_RTR0Term -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2580d04c VBoxGuest_RTSemEventMultiSignal -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2632a013 VBoxGuest_RTLogRelLoggerV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x29708cf0 VBoxGuest_RTR0MemUserCopyTo -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2a2284fb VBoxGuest_RTAssertMayPanic -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2af3453c VBoxGuest_RTLogPrintf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2c2b5b46 VBoxGuest_RTTimerGetSystemGranularity -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2cfefa48 VBoxGuest_RTLogBackdoorPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2d445217 VBoxGuest_RTStrToInt64Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2d581c06 VBoxGuest_RTMpCurSetIndexAndId -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2eca7777 VBoxGuest_RTHeapSimpleAlloc -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2fb7502f VBoxGuest_RTThreadSetName -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x30e40c69 VBoxGuest_RTLogSetDefaultInstanceThread -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3168cadf VBoxGuest_RTTimeSystemMilliTS -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x31ac4c5f VBoxGuest_RTThreadIsInitialized -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x33d7313a VBoxGuest_RTMpCpuId -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x343e3e1b VBoxGuest_RTLogGetDestinations -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3480f453 VBoxGuest_RTSemMutexDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x358153bb VBoxGuest_RTStrCopy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x362275e8 VBoxGuest_RTMemContFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x372d5e29 VBoxGuest_RTPowerNotificationDeregister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x376d539c VBoxGuest_RTThreadGetType -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x381d7c24 VBoxGuest_RTMemAllocVarTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x383a0b9d VBoxGuest_RTMpPokeCpu -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3a47392e VBoxGuest_RTErrConvertFromErrno -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3b04381e VBoxGuest_RTSemEventMultiReset -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3b231c95 VBoxGuest_RTTimeNanoTS -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3bcf543a VBoxGuest_RTLogGetDefaultInstanceEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3d00f113 VBoxGuest_g_u32RTAssertLine -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3de43f66 VBoxGuest_RTSemEventCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3dfc9ab8 VBoxGuest_RTSemMutexIsOwned -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3fbf3c07 VBoxGuest_RTThreadIsInInterrupt -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x40996438 VBoxGuest_RTSemEventMultiWait -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x42ecc6d1 VBoxGuest_RTThreadPreemptRestore -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x43fdd8d9 VBoxGuest_RTSemFastMutexRelease -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x44cfbc28 VBoxGuest_RTThreadGetNative -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x461fa9fe VBoxGuest_RTLogRelGetDefaultInstance -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x46c14223 VBoxGuest_RTLogSetCustomPrefixCallback -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x49f1be17 VBoxGuest_RTThreadFromNative -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x49f4d19c VBoxGuest_RTLogDefaultInstance -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4ba5006e VBoxGuest_RTLogPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4bbec091 VBoxGuest_RTR0MemObjGetPagePhysAddr -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4c7d8a56 VBoxGuest_RTSemEventMultiCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4cac3157 VBoxGuest_RTLogFormatV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4cecc93d VBoxGuest_RTR0MemObjEnterPhysTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4cf913a1 VBoxGuest_RTThreadGetName -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4ea67110 VBoxGuest_RTStrToInt32 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4f041d39 VBoxGuest_RTMemContAlloc -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4fc8e10c VBoxGuest_RTMpGetSet -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4fe9e5f1 VBoxGuest_RTR0MemObjProtect -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5040043b VBoxGuest_RTSemEventWaitExDebug -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x508bb2c4 VBoxGuest_RTLogSetDefaultInstance -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x51ec28bd VBoxGuest_RTLogGetFlags -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x53265abc VBoxGuest_RTLogSetBuffering -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5352c915 VBoxGuest_RTSemMutexRequest -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x54098f34 VBoxGuest_RTTimerStop -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x54ddf87c VBoxGuest_RTThreadPreemptIsPossible -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5595fc22 VBoxGuest_RTSpinlockDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x56596e82 VBoxGuest_RTThreadSelfName -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x56c939fe VBoxGuest_RTAssertMsg1 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5847ae52 VBoxGuest_RTMpGetCount -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x58d1b65e VBoxGuest_RTThreadPreemptIsPending -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x598d3622 VBoxGuest_RTAssertMsg2AddWeak -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5a97195c VBoxGuest_RTHeapSimpleRelocate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5aa6ed66 VBoxGuest_RTPowerSignalEvent -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5b3a5164 VBoxGuest_RTLogWriteUser -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5cc0b1b2 VBoxGuest_RTProcSelf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5d3b1bd6 VBoxGuest_RTSemSpinMutexRelease -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5e071eb3 VBoxGuest_RTSemEventMultiDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5e17b70e VBoxGuest_RTSpinlockRelease -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5e75c570 VBoxGuest_RTStrToUInt16 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5eaea89a VBoxGuest_RTSemFastMutexCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5ee65bb7 VBoxGuest_RTStrToUInt16Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5ef42fe5 VBoxGuest_RTTimerStart -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5f2f48bb VBoxGuest_RTLogWriteStdErr -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x61143878 VBoxGuestIDCCall -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6173b384 VBoxGuest_RTMpOnPairIsConcurrentExecSupported -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x61770e8c VBoxGuest_RTStrToUInt32 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x63378722 VBoxGuest_RTLogBackdoorPrintf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x634946f7 VBoxGuest_RTMpIsCpuOnline -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x637a1d69 VBoxGuest_RTLogWriteStdOut -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6381bb97 VBoxGuest_RTStrFormat -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x63b1fde6 VBoxGuest_RTMpCpuIdToSetIndex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x63bc10b0 VBoxGuest_RTLogCreateExV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x658cd915 VBoxGuest_RTR0MemObjFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x67135d2b VBoxGuest_RTSemFastMutexRequest -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6862822a VBoxGuest_RTHeapSimpleSize -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x695d63ad VBoxGuest_RTMpNotificationDeregister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6b01bbf3 VBoxGuest_RTMpOnSpecific -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6b58b79d VBoxGuest_RTSemSpinMutexDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6b91f1ce VBoxGuest_RTStrFormatTypeDeregister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6c8460ac VBoxGuest_RTLogRelGetDefaultInstanceEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6cec7c3b VBoxGuest_RTTimerCreateEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6d8e9c87 VBoxGuest_RTTimeNow -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6e8541b7 VBoxGuest_RTAssertMsg2Weak -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x704e1f6f VBoxGuest_RTAssertMsg2AddWeakV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x70867323 VBoxGuest_RTStrToUInt8Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x71060970 VBoxGuest_RTStrToUInt16Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x716e3be3 VBoxGuest_RTMpGetOnlineCount -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x729cc4ab VBoxGuest_RTR0MemObjSize -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x72ff1bc3 VBoxGuest_RTTimeIsLeapYear -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x730a01b0 VBoxGuest_RTLogRelSetDefaultInstance -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x74812dde VBoxGuest_RTStrToInt32Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x759e7492 VBoxGuest_RTSemFastMutexDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x764ecb18 VBoxGuest_RTR0MemObjAllocLowTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x76a3c47b VBoxGuest_RTMemAllocZVarTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x79d59e24 VBoxGuest_RTSemSpinMutexRequest -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7d0d9dae VBoxGuest_RTR0MemObjAllocPhysNCTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7d15e878 VBoxGuest_RTMpGetOnlineSet -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7dcc30d8 VBoxGuest_RTStrToInt32Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7e29739a VBoxGuest_RTStrToInt16 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7f0a40ea VBoxGuest_RTLogComPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7fc5bdcf VBoxGuest_RTR0MemObjAllocPhysTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8196c4e6 VBoxGuest_RTSemSpinMutexTryRequest -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x82e081bc VBoxGuest_RTStrFormatTypeSetUser -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x83e78406 VBoxGuest_RTR0MemAreKrnlAndUsrDifferent -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x841e42e9 VBoxGuest_RTSemMutexCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8484a0d6 VBoxGuest_RTStrToInt16Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x84e227f6 VBoxGuest_RTThreadIsSelfKnown -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x86120100 VBoxGuest_RTLogDumpPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x867be0d2 VBoxGuest_RTLogDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x868b79a5 VBoxGuest_RTStrPrintf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x879761cf VBoxGuest_RTR0MemObjAllocPhysExTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x87da3860 VBoxGuest_RTAssertSetQuiet -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8826d9de VBoxGuest_RTMpGetMaxCpuId -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x883d496c VBoxGuest_RTMpGetCoreCount -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x885274fe VBoxGuest_RTThreadUserWaitNoResume -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x89117f68 VBoxGuest_RTMemExecAllocTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8a3c154f VBoxGuest_RTR0MemObjLockUserTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8a454b31 VBoxGuest_RTSemEventGetResolution -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8e01e3fd VBoxGuest_RTStrFormatV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8f1309e3 VBoxGuest_RTAssertMsg2 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x90312938 VBoxGuest_RTStrToUInt64Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x91204a9b VBoxGuest_RTTimeSpecToString -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x916e42f0 VBoxGuest_RTAssertMsg1Weak -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9264ffc0 VBoxGuest_RTLogRelPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x926bf9f7 VBoxGuest_RTThreadPreemptDisable -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x92e716ae VBoxGuest_RTLogGetDefaultInstance -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x94f7365f VBoxGuest_RTPowerNotificationRegister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x95fa480d VBoxGuest_RTSpinlockCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x961772f3 VBoxGuestIDCOpen -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x967ea4b6 VBoxGuest_RTStrToInt64 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x96893ce3 VBoxGuest_RTR0MemObjAllocPageTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x96f2e65b VBoxGuest_RTR0MemUserCopyFrom -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9796440b VBoxGuest_RTSemEventWaitNoResume -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x97eb2414 VBoxGuest_RTThreadNativeSelf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9874cd16 VBoxGuest_RTMpIsCpuPossible -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9909ff3d VBoxGuest_g_pszRTAssertFunction -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9a2ee747 VBoxGuest_RTSemEventDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9bcc539d VBoxGuest_RTThreadUserReset -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9cd9213f VBoxGuest_RTR0MemKernelIsValidAddr -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9d6b527c VBoxGuest_RTThreadWait -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9dbd63d6 VBoxGuest_RTStrPrintfEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9eaecd9d VBoxGuest_RTStrPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9f301085 VBoxGuest_RTTimeSpecFromString -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9f4f616a VBoxGuest_RTLogLogger -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9fb0596d VBoxGuest_RTMemDupTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa168a070 VBoxGuest_RTLogLoggerExV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa34eb1b3 VBoxGuest_RTTimeSystemNanoTS -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa486e710 VBoxGuestIDCClose -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa554bd97 VBoxGuest_RTLogFlushRC -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa5a26703 VBoxGuest_RTMpNotificationRegister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa696baed VBoxGuest_RTR0MemObjAddress -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa6a22472 VBoxGuest_RTThreadUserWait -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa6de1bcd VBoxGuest_RTTimerChangeInterval -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa86c5a96 VBoxGuest_RTSemEventSignal -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xaba9bc9c VBoxGuest_RTLogCloneRC -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xac990d74 VBoxGuest_RTTimerCanDoHighResolution -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xacaac41d VBoxGuest_g_szRTAssertMsg1 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xad4fdf4e VBoxGuest_RTSemMutexRequestNoResumeDebug -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xad649089 VBoxGuest_RTStrToUInt64Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xae3e0ecd VBoxGuest_RTLogRelPrintf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xaf6ffbfc VBoxGuest_RTThreadSleep -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb05840a7 VBoxGuest_RTSemEventMultiWaitExDebug -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb1cc9148 VBoxGuest_RTLogWriteCom -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb42ea0e3 VBoxGuest_g_pszRTAssertFile -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb444f4a1 VBoxGuest_RTLogDestinations -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb6941b2e VBoxGuest_RTStrToUInt8 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb8c6e615 VBoxGuest_RTStrToUInt32Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb8ca8fcb VBoxGuest_RTMpOnPair -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb8df2b3a VBoxGuest_RTAssertShouldPanic -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb9b070b7 VBoxGuest_RTAssertMsg2V -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb9d7a27d VBoxGuest_RTHeapSimpleDump -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbaa97421 VBoxGuest_g_szRTAssertMsg2 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbb1ead73 VBoxGuest_RTR0MemKernelCopyTo -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbba928e6 VBoxGuest_RTHeapSimpleGetHeapSize -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbc4d30f6 VBoxGuest_RTR0MemObjAllocContTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbc85935a VBoxGuest_RTR0MemKernelCopyFrom -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbe4e6114 VBoxGuest_RTLogFlushToLogger -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbffedb55 VBoxGuest_RTMemAllocExTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc1095c44 VBoxGuest_RTTimeImplode -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc1b3ada4 VBoxGuest_RTAssertMsg2WeakV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc3a1e5de VBoxGuest_RTLogGetGroupSettings -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc3fee96e VBoxGuest_RTMemAllocTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc4bd5fd8 VBoxGuest_RTStrPrintfExV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc63cc2f0 VBoxGuest_RTR0MemExecDonate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc71362b7 VBoxGuest_RTLogRelSetBuffering -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc8fbf4aa VBoxGuest_RTHeapSimpleInit -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc91cea98 VBoxGuest_RTStrCopyEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc9a6a8e7 VBoxGuest_RTThreadCreateF -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcaee97bf VBoxGuest_RTLogComPrintf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcb2a6b54 VBoxGuest_RTMemExecFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xceae9d6a VBoxGuest_RTStrConvertHexBytes -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd14e8ec2 VBoxGuest_RTTimerDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd1f3f0b9 VBoxGuest_RTSemEventWait -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd2a37e73 VBoxGuest_RTTimerReleaseSystemGranularity -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd2d290ab VBoxGuest_RTStrToUInt8Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd3a125cb VBoxGuest_RTR0MemObjMapKernelTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd46c35d4 VBoxGuest_RTMpOnAll -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd4b597fc VBoxGuest_RTStrCopyP -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd5bfc897 VBoxGuest_RTHeapSimpleAllocZ -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd637869e VBoxGuest_RTMemReallocTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd69bc8e4 VBoxGuest_RTR0MemObjReserveUserTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd706d85c VBoxGuest_RTTimeFromString -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd88c9330 VBoxGuest_RTLogLoggerV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd984a7f4 VBoxGuest_RTStrFormatTypeRegister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdc700594 VBoxGuest_RTSemEventMultiGetResolution -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xde9ca744 VBoxGuest_RTThreadYield -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdfbc69bb VBoxGuest_RTThreadPreemptIsPendingTrusty -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe054d759 VBoxGuest_RTMemTmpFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe095cef8 VBoxGuest_RTThreadSetType -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe0dc7391 VBoxGuest_RTThreadIsMain -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe1c6b3d7 VBoxGuest_RTR0MemObjMapKernelExTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe2765c54 VBoxGuest_RTR0AssertPanicSystem -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe38d562c VBoxGuest_RTStrFormatNumber -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe3fd228f VBoxGuest_RTTimeMilliTS -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe7e42113 VBoxGuest_RTThreadSleepNoLog -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe88dae73 VBoxGuest_RTMemFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe8fad285 VBoxGuest_RTSemEventMultiWaitNoResume -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xea2f2944 VBoxGuest_RTStrToInt8Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xea38e4f7 VBoxGuest_RTLogDefaultInstanceEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xea71842b VBoxGuest_RTMpGetPresentCoreCount -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xebeefa0e VBoxGuest_RTR0ProcHandleSelf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xec3cc9a6 VBoxGuest_RTSemEventMultiWaitEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xee774b8e VBoxGuest_RTLogWriteDebugger -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xeea4ee73 VBoxGuest_RTR0MemObjMapUserTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xef6e1359 VBoxGuest_RTMpOnOthers -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf02f22ab VBoxGuest_RTMemAllocZTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf0dbb702 VBoxGuest_RTHeapSimpleFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf26294bb VBoxGuest_RTR0MemObjIsMapping -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf2aa79bb VBoxGuest_RTThreadUserSignal -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf3943009 VBoxGuest_RTTimerRequestSystemGranularity -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf5d89855 VBoxGuest_RTLogGroupSettings -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf69aec24 VBoxGuest_RTStrToInt16Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf7397dd2 VBoxGuest_RTAssertSetMayPanic -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf8113d66 VBoxGuest_RTMpOnAllIsConcurrentSafe -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf956a4e8 VBoxGuest_RTLogFlush -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf958d9cb VBoxGuest_RTLogCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfa7d95c9 VBoxGuest_RTR0MemUserIsValidAddr -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfb31e12b VBoxGuest_RTStrToUInt32Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfba93ac9 VBoxGuest_RTR0MemObjReserveKernelTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfbc67e88 VBoxGuest_RTMemFreeEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfe72cef7 VBoxGuest_RTStrToInt8 -EXPORT_SYMBOL vmlinux 0x001b4e02 pci_get_device -EXPORT_SYMBOL vmlinux 0x00218ee8 tcp_sendpage -EXPORT_SYMBOL vmlinux 0x003f999a pcim_iomap -EXPORT_SYMBOL vmlinux 0x006f4b63 find_get_pages_tag -EXPORT_SYMBOL vmlinux 0x0070cd1f queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0x0085e1f1 __do_once_done -EXPORT_SYMBOL vmlinux 0x00b330b1 revert_creds -EXPORT_SYMBOL vmlinux 0x00b8c3a7 mempool_alloc -EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00e62934 i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0x00e780a4 tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x00ef491a generic_perform_write -EXPORT_SYMBOL vmlinux 0x00ffa374 serio_rescan -EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve -EXPORT_SYMBOL vmlinux 0x012aa607 i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0x012b7bdb pci_select_bars -EXPORT_SYMBOL vmlinux 0x014f032b dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0x015d2d22 acpi_bus_register_driver -EXPORT_SYMBOL vmlinux 0x016bba17 x86_hyper_ms_hyperv -EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer -EXPORT_SYMBOL vmlinux 0x01b6076a phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0x01b92859 generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0x01bb190f devm_gpiod_get_array -EXPORT_SYMBOL vmlinux 0x01bcdfaf scsi_unregister -EXPORT_SYMBOL vmlinux 0x01d032a5 sock_no_mmap -EXPORT_SYMBOL vmlinux 0x01d266a2 devfreq_resume_device -EXPORT_SYMBOL vmlinux 0x01d58578 dquot_operations -EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check -EXPORT_SYMBOL vmlinux 0x021465df skb_split -EXPORT_SYMBOL vmlinux 0x02176009 devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x021b7432 d_walk -EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu -EXPORT_SYMBOL vmlinux 0x023b2010 iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0x024bf827 radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x028ac15d blkdev_fsync -EXPORT_SYMBOL vmlinux 0x02928f3c backlight_device_register -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table -EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string -EXPORT_SYMBOL vmlinux 0x02f1a629 mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x033f8083 dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x036036e3 udp_prot -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x0367aad9 vme_slot_num -EXPORT_SYMBOL vmlinux 0x03755e8f skb_kill_datagram -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x03939d09 fb_find_mode -EXPORT_SYMBOL vmlinux 0x0393d0d6 end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0x03e34c6f __neigh_create -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x04181c65 get_phy_device -EXPORT_SYMBOL vmlinux 0x041ac7be sockfd_lookup -EXPORT_SYMBOL vmlinux 0x041bbc79 inet_recvmsg -EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg -EXPORT_SYMBOL vmlinux 0x0426ba24 idr_for_each -EXPORT_SYMBOL vmlinux 0x042f9ae2 simple_statfs -EXPORT_SYMBOL vmlinux 0x043e449a skb_copy_bits -EXPORT_SYMBOL vmlinux 0x044605e8 ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display -EXPORT_SYMBOL vmlinux 0x04a20abb input_open_device -EXPORT_SYMBOL vmlinux 0x04a53769 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0x04ab8f9d led_blink_set -EXPORT_SYMBOL vmlinux 0x04b197f2 smp_call_function_many -EXPORT_SYMBOL vmlinux 0x04b69463 dev_uc_flush -EXPORT_SYMBOL vmlinux 0x04bd6b6b cont_write_begin -EXPORT_SYMBOL vmlinux 0x04c62fd7 __memset -EXPORT_SYMBOL vmlinux 0x04d62c47 vfs_rmdir -EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi -EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol -EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize -EXPORT_SYMBOL vmlinux 0x04fe1784 sb_min_blocksize -EXPORT_SYMBOL vmlinux 0x04ff4eac pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match -EXPORT_SYMBOL vmlinux 0x050fc700 blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x051c2fd4 skb_orphan_partial -EXPORT_SYMBOL vmlinux 0x051fa1e5 blk_queue_make_request -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x05312623 xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x053f15d9 generic_file_mmap -EXPORT_SYMBOL vmlinux 0x0541d630 cdev_alloc -EXPORT_SYMBOL vmlinux 0x055c8559 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x056e1e27 dev_uc_add -EXPORT_SYMBOL vmlinux 0x0597e341 padata_remove_cpu -EXPORT_SYMBOL vmlinux 0x059e9fe8 seq_pad -EXPORT_SYMBOL vmlinux 0x05a98283 flush_signals -EXPORT_SYMBOL vmlinux 0x05b51b89 d_obtain_alias -EXPORT_SYMBOL vmlinux 0x05b52664 dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x05d5d542 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x05e03b77 pci_request_regions -EXPORT_SYMBOL vmlinux 0x05e7df12 md_integrity_register -EXPORT_SYMBOL vmlinux 0x05ee0f95 __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0x05f18613 __mmc_claim_host -EXPORT_SYMBOL vmlinux 0x06052f8d __memmove -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x061f4039 acpi_get_table_with_size -EXPORT_SYMBOL vmlinux 0x0623743b proc_douintvec -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x063ca861 lwtunnel_get_encap_size -EXPORT_SYMBOL vmlinux 0x065e4ff7 dquot_get_state -EXPORT_SYMBOL vmlinux 0x0672cc0e unregister_cdrom -EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx -EXPORT_SYMBOL vmlinux 0x068881e3 uart_register_driver -EXPORT_SYMBOL vmlinux 0x068c7263 ioremap_cache -EXPORT_SYMBOL vmlinux 0x068f62ef security_path_chmod -EXPORT_SYMBOL vmlinux 0x069501e6 current_task -EXPORT_SYMBOL vmlinux 0x0695433d reservation_object_reserve_shared -EXPORT_SYMBOL vmlinux 0x06bfbb18 bio_integrity_enabled -EXPORT_SYMBOL vmlinux 0x06c0dae5 __kernel_fpu_end -EXPORT_SYMBOL vmlinux 0x06cc4ec2 __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x06d10876 get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x06d64ac6 tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x06f98561 genphy_config_aneg -EXPORT_SYMBOL vmlinux 0x06f9af57 key_alloc -EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn -EXPORT_SYMBOL vmlinux 0x06ff2a79 security_task_getsecid -EXPORT_SYMBOL vmlinux 0x0707d1a3 tty_check_change -EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 -EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x07351c42 user_path_at_empty -EXPORT_SYMBOL vmlinux 0x074057b8 pci_reenable_device -EXPORT_SYMBOL vmlinux 0x0764e8e2 lwtunnel_fill_encap -EXPORT_SYMBOL vmlinux 0x078822e4 gen_pool_create -EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07a9ef84 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x07ba5f85 input_set_keycode -EXPORT_SYMBOL vmlinux 0x07bc2a67 d_alloc_name -EXPORT_SYMBOL vmlinux 0x07c2f6a9 __scsi_add_device -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07d08fde bdev_stack_limits -EXPORT_SYMBOL vmlinux 0x080bab38 pnp_activate_dev -EXPORT_SYMBOL vmlinux 0x08227426 posix_test_lock -EXPORT_SYMBOL vmlinux 0x0826be81 mdiobus_write -EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x083d481a iput -EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x0845986f pagevec_lookup -EXPORT_SYMBOL vmlinux 0x085d4c68 kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0x08675ffb bdi_init -EXPORT_SYMBOL vmlinux 0x087058e3 dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0x087f44e7 simple_unlink -EXPORT_SYMBOL vmlinux 0x0897287b acpi_disable_all_gpes -EXPORT_SYMBOL vmlinux 0x08b0ec9a set_create_files_as -EXPORT_SYMBOL vmlinux 0x08b3a366 key_link -EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0x091e0f78 tty_port_open -EXPORT_SYMBOL vmlinux 0x093dffd8 bdi_register_dev -EXPORT_SYMBOL vmlinux 0x093e9b0c kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0x0946c86b md_update_sb -EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key -EXPORT_SYMBOL vmlinux 0x0959ae8c inode_get_bytes -EXPORT_SYMBOL vmlinux 0x095e9de5 nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0x0965ddbc pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x09696626 acpi_decode_pld_buffer -EXPORT_SYMBOL vmlinux 0x09700041 dev_deactivate -EXPORT_SYMBOL vmlinux 0x098431ba acpi_get_current_resources -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x099bc26e devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09db06d2 __seq_open_private -EXPORT_SYMBOL vmlinux 0x09dfb79c blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0x09e88526 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0x0a245f80 fixed_phy_update_state -EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class -EXPORT_SYMBOL vmlinux 0x0a2b8891 eth_gro_receive -EXPORT_SYMBOL vmlinux 0x0a3a42e4 d_delete -EXPORT_SYMBOL vmlinux 0x0a3b0290 blk_init_queue_node -EXPORT_SYMBOL vmlinux 0x0a46b31e devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0x0a513eb7 dev_emerg -EXPORT_SYMBOL vmlinux 0x0a57863e cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x0a5c341b __dquot_transfer -EXPORT_SYMBOL vmlinux 0x0a661faa lg_local_unlock -EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0a7a0bb8 atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x0a932c48 generic_file_splice_read -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aaea440 sock_kfree_s -EXPORT_SYMBOL vmlinux 0x0ac10671 vga_switcheroo_init_domain_pm_optimus_hdmi_audio -EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0b00caba xfrm_init_state -EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0x0b18319c __inet_hash -EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b2048b4 pcie_set_mps -EXPORT_SYMBOL vmlinux 0x0b347674 phy_start -EXPORT_SYMBOL vmlinux 0x0b4afef5 __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0x0b5cb42f input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister -EXPORT_SYMBOL vmlinux 0x0b678792 param_ops_bint -EXPORT_SYMBOL vmlinux 0x0b67e73e tcp_shutdown -EXPORT_SYMBOL vmlinux 0x0b6d9d6b input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b84e363 dev_disable_lro -EXPORT_SYMBOL vmlinux 0x0b905c66 __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x0b9d7edd lwtunnel_cmp_encap -EXPORT_SYMBOL vmlinux 0x0ba10257 skb_vlan_push -EXPORT_SYMBOL vmlinux 0x0ba83b1c posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0x0bb8d807 ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bcaba7b __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0x0bda3b7a neigh_lookup -EXPORT_SYMBOL vmlinux 0x0bf2255a compat_mc_getsockopt -EXPORT_SYMBOL vmlinux 0x0c09db96 con_is_bound -EXPORT_SYMBOL vmlinux 0x0c137fcc kernel_param_unlock -EXPORT_SYMBOL vmlinux 0x0c21d019 flush_delayed_work -EXPORT_SYMBOL vmlinux 0x0c22e9f9 add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0x0c2d1846 __skb_checksum -EXPORT_SYMBOL vmlinux 0x0c3f82c4 devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat -EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features -EXPORT_SYMBOL vmlinux 0x0c69c353 _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -EXPORT_SYMBOL vmlinux 0x0c7b2ee1 devm_iounmap -EXPORT_SYMBOL vmlinux 0x0c918a97 dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x0c9b0789 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x0ca7b7a8 acpi_check_region -EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0x0cb18d61 dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0x0cd213c4 cap_mmap_file -EXPORT_SYMBOL vmlinux 0x0cd2af0c param_get_ushort -EXPORT_SYMBOL vmlinux 0x0cdb7d12 __kernel_fpu_begin -EXPORT_SYMBOL vmlinux 0x0ceea1db skb_append_datato_frags -EXPORT_SYMBOL vmlinux 0x0d0ac53b framebuffer_alloc -EXPORT_SYMBOL vmlinux 0x0d3dda14 acpi_get_type -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d6022d3 ilookup5_nowait -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d7c9117 netdev_state_change -EXPORT_SYMBOL vmlinux 0x0d80efb5 acpi_evaluate_ost -EXPORT_SYMBOL vmlinux 0x0d95359d page_cache_next_hole -EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft -EXPORT_SYMBOL vmlinux 0x0da89b51 uart_suspend_port -EXPORT_SYMBOL vmlinux 0x0dadc16b buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0x0dc6a806 phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0x0dcc4361 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x0dd599df __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x0de28b7c neigh_table_init -EXPORT_SYMBOL vmlinux 0x0de76130 serio_reconnect -EXPORT_SYMBOL vmlinux 0x0deb6f4e wireless_send_event -EXPORT_SYMBOL vmlinux 0x0df79f9d may_umount_tree -EXPORT_SYMBOL vmlinux 0x0df9f608 key_unlink -EXPORT_SYMBOL vmlinux 0x0e0524ec import_iovec -EXPORT_SYMBOL vmlinux 0x0e28c8da inode_claim_rsv_space -EXPORT_SYMBOL vmlinux 0x0e347fde dev_mc_add -EXPORT_SYMBOL vmlinux 0x0e371fe3 mdiobus_free -EXPORT_SYMBOL vmlinux 0x0e45a354 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x0e4c6e11 __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x0e5759e0 abx500_remove_ops -EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec -EXPORT_SYMBOL vmlinux 0x0e753882 __vfs_read -EXPORT_SYMBOL vmlinux 0x0e75ceb3 bio_integrity_prep -EXPORT_SYMBOL vmlinux 0x0e7721a6 pci_claim_resource -EXPORT_SYMBOL vmlinux 0x0e77be85 dev_printk_emit -EXPORT_SYMBOL vmlinux 0x0e7a9ed2 uart_match_port -EXPORT_SYMBOL vmlinux 0x0eaed6f8 deactivate_locked_super -EXPORT_SYMBOL vmlinux 0x0eb5aec1 sock_setsockopt -EXPORT_SYMBOL vmlinux 0x0ec5b884 agp_generic_enable -EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ed8cc7b acpi_evaluate_object_typed -EXPORT_SYMBOL vmlinux 0x0eda56a9 generic_make_request -EXPORT_SYMBOL vmlinux 0x0ee8323e tcp_check_req -EXPORT_SYMBOL vmlinux 0x0ef49ee9 get_user_pages_locked -EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups -EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec -EXPORT_SYMBOL vmlinux 0x0f578e5e md_write_start -EXPORT_SYMBOL vmlinux 0x0f698175 jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size -EXPORT_SYMBOL vmlinux 0x0f6e4002 mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x0f819475 pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0x0f8c7dff current_fs_time -EXPORT_SYMBOL vmlinux 0x0f93f8a0 ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0x0f96a500 blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x0fac229a max8925_bulk_write -EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fb5e024 locks_init_lock -EXPORT_SYMBOL vmlinux 0x0fbdcd21 tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0x0fc7409b elevator_exit -EXPORT_SYMBOL vmlinux 0x0fd00a68 acpi_clear_event -EXPORT_SYMBOL vmlinux 0x0fe9b175 pnpacpi_protocol -EXPORT_SYMBOL vmlinux 0x0fed5ce6 devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress -EXPORT_SYMBOL vmlinux 0x100e873f km_state_notify -EXPORT_SYMBOL vmlinux 0x102d0de1 blk_mq_can_queue -EXPORT_SYMBOL vmlinux 0x103104bd bioset_integrity_free -EXPORT_SYMBOL vmlinux 0x1031cbc0 dentry_unhash -EXPORT_SYMBOL vmlinux 0x1038f508 d_alloc_pseudo -EXPORT_SYMBOL vmlinux 0x10521d76 kern_path -EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user -EXPORT_SYMBOL vmlinux 0x107b969e phy_detach -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x10950ee1 radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x10b02a9b neigh_update -EXPORT_SYMBOL vmlinux 0x10d6edb3 param_set_ushort -EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu -EXPORT_SYMBOL vmlinux 0x10f6310a compat_ip_getsockopt -EXPORT_SYMBOL vmlinux 0x10fece49 blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x110c22a4 dev_addr_del -EXPORT_SYMBOL vmlinux 0x113e9681 simple_rename -EXPORT_SYMBOL vmlinux 0x115f0fd3 dquot_commit -EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x118945ab mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x1197ab2a scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned -EXPORT_SYMBOL vmlinux 0x11b7c0a4 write_cache_pages -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin -EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier -EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const -EXPORT_SYMBOL vmlinux 0x1220504c blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0x122ae5ba pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0x123c0f54 inode_set_flags -EXPORT_SYMBOL vmlinux 0x123f82f3 getrawmonotonic64 -EXPORT_SYMBOL vmlinux 0x1250c7e1 _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0x12604bca inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x126c79f9 udp6_set_csum -EXPORT_SYMBOL vmlinux 0x12748694 blk_queue_init_tags -EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range -EXPORT_SYMBOL vmlinux 0x12dfeb12 vprintk_emit -EXPORT_SYMBOL vmlinux 0x12fd2c59 seq_path -EXPORT_SYMBOL vmlinux 0x1305d532 ucs2_strncmp -EXPORT_SYMBOL vmlinux 0x1319449d secure_modules -EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x13291c6d tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0x132b1d2d arp_tbl -EXPORT_SYMBOL vmlinux 0x132ba645 bioset_create -EXPORT_SYMBOL vmlinux 0x132e9386 pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0x13307fde vsscanf -EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc -EXPORT_SYMBOL vmlinux 0x134d90df bio_split -EXPORT_SYMBOL vmlinux 0x134ffd0e pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0x13695c9f md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0x137ec84a agp_generic_alloc_page -EXPORT_SYMBOL vmlinux 0x139aef58 scsi_report_opcode -EXPORT_SYMBOL vmlinux 0x13be8cd3 fasync_helper -EXPORT_SYMBOL vmlinux 0x13cb5f33 skb_unlink -EXPORT_SYMBOL vmlinux 0x13cc6a8c serio_bus -EXPORT_SYMBOL vmlinux 0x13ce3720 mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13d2c13e xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x13e281a8 simple_nosetlease -EXPORT_SYMBOL vmlinux 0x13ec7395 dcb_setapp -EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation -EXPORT_SYMBOL vmlinux 0x13fa1e56 register_netdevice -EXPORT_SYMBOL vmlinux 0x14046e64 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0x140bd134 udp_proc_unregister -EXPORT_SYMBOL vmlinux 0x1445fef3 dump_skip -EXPORT_SYMBOL vmlinux 0x144966df vga_switcheroo_register_client -EXPORT_SYMBOL vmlinux 0x146892b3 clocksource_unregister -EXPORT_SYMBOL vmlinux 0x14aa1af2 vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0x14bac0d4 vfs_whiteout -EXPORT_SYMBOL vmlinux 0x14c799e4 dquot_initialize -EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x14cf3437 jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x14d86cc6 writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x14ebffdc unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x14ee423f kmem_cache_alloc_node_trace -EXPORT_SYMBOL vmlinux 0x14f7b18e get_io_context -EXPORT_SYMBOL vmlinux 0x15014e91 scsi_execute_req_flags -EXPORT_SYMBOL vmlinux 0x150389d6 acpi_processor_power_init_bm_check -EXPORT_SYMBOL vmlinux 0x150ccd3a set_bh_page -EXPORT_SYMBOL vmlinux 0x15190017 inet6_register_icmp_sender -EXPORT_SYMBOL vmlinux 0x152b0fad alloc_disk -EXPORT_SYMBOL vmlinux 0x152db693 simple_fill_super -EXPORT_SYMBOL vmlinux 0x153e0a72 mntget -EXPORT_SYMBOL vmlinux 0x153f0114 ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0x1547bfd6 __wait_on_bit -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x156a8a59 down_trylock -EXPORT_SYMBOL vmlinux 0x15799c11 _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0x157fa823 twl6040_reg_write -EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15c302e1 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0x15c82aec param_ops_ullong -EXPORT_SYMBOL vmlinux 0x15cb802f sk_receive_skb -EXPORT_SYMBOL vmlinux 0x160ea4c8 sfi_disabled -EXPORT_SYMBOL vmlinux 0x1616cb30 acpi_evaluate_dsm -EXPORT_SYMBOL vmlinux 0x161da2a6 register_framebuffer -EXPORT_SYMBOL vmlinux 0x16231e17 fb_get_mode -EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null -EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump -EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 -EXPORT_SYMBOL vmlinux 0x1680311f pci_set_master -EXPORT_SYMBOL vmlinux 0x169146b7 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0x16dbf6ae xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0x16dc4d1f fence_init -EXPORT_SYMBOL vmlinux 0x16e0a910 ioctl_by_bdev -EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16e2aaa8 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0x16e4d7dd get_tz_trend -EXPORT_SYMBOL vmlinux 0x16e5e899 nvm_get_blk_unlocked -EXPORT_SYMBOL vmlinux 0x16eaf2de bdev_read_only -EXPORT_SYMBOL vmlinux 0x16f4bfc4 devm_gpio_free -EXPORT_SYMBOL vmlinux 0x170c25ee acpi_get_next_object -EXPORT_SYMBOL vmlinux 0x17372b9d ping_prot -EXPORT_SYMBOL vmlinux 0x175bf17f md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0x175febcb scsi_device_get -EXPORT_SYMBOL vmlinux 0x176dd0a6 blk_mq_map_queue -EXPORT_SYMBOL vmlinux 0x178b4b6f parent_mem_cgroup -EXPORT_SYMBOL vmlinux 0x178fc438 gen_new_estimator -EXPORT_SYMBOL vmlinux 0x1791c476 follow_down_one -EXPORT_SYMBOL vmlinux 0x1793f685 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0x179651ac _raw_read_lock -EXPORT_SYMBOL vmlinux 0x17a4bdfc ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator -EXPORT_SYMBOL vmlinux 0x17b6095d set_security_override -EXPORT_SYMBOL vmlinux 0x17bcf30b dst_destroy -EXPORT_SYMBOL vmlinux 0x17bdc42a skb_put -EXPORT_SYMBOL vmlinux 0x17c275d4 iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x17cb9394 ps2_end_command -EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip -EXPORT_SYMBOL vmlinux 0x1810e885 scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken -EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask -EXPORT_SYMBOL vmlinux 0x186d12dd inet_offloads -EXPORT_SYMBOL vmlinux 0x187e91b5 no_llseek -EXPORT_SYMBOL vmlinux 0x1882ac14 up_read -EXPORT_SYMBOL vmlinux 0x188654d6 ppp_register_compressor -EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc -EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x18aa7b2a inode_init_once -EXPORT_SYMBOL vmlinux 0x18b72573 register_kmmio_probe -EXPORT_SYMBOL vmlinux 0x18b7313a bitmap_end_sync -EXPORT_SYMBOL vmlinux 0x18c55214 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x18ca6192 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0x18cc462c account_page_redirty -EXPORT_SYMBOL vmlinux 0x18cd1184 dev_open -EXPORT_SYMBOL vmlinux 0x18e11c5e mmc_start_req -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18ed9a77 skb_checksum -EXPORT_SYMBOL vmlinux 0x190e0b14 netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0x1916d5bb param_ops_byte -EXPORT_SYMBOL vmlinux 0x1916e38c _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x191e1cf1 sock_release -EXPORT_SYMBOL vmlinux 0x191f08fd filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x194ad185 dev_close -EXPORT_SYMBOL vmlinux 0x195aa7d7 prepare_creds -EXPORT_SYMBOL vmlinux 0x195fcdf7 netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x1997a049 tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19bf00b2 dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0x19d19100 scsi_dma_map -EXPORT_SYMBOL vmlinux 0x19e549e0 pci_pme_active -EXPORT_SYMBOL vmlinux 0x19ec7a07 rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x19efb8ca dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0x19f22a14 pci_match_id -EXPORT_SYMBOL vmlinux 0x1a08eea0 inet_frag_find -EXPORT_SYMBOL vmlinux 0x1a1b5750 generic_setxattr -EXPORT_SYMBOL vmlinux 0x1a33c612 jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled -EXPORT_SYMBOL vmlinux 0x1a489f94 nvm_submit_ppa -EXPORT_SYMBOL vmlinux 0x1a62104f vfs_getattr -EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch -EXPORT_SYMBOL vmlinux 0x1a6de012 __dax_fault -EXPORT_SYMBOL vmlinux 0x1a99f96e phy_attach_direct -EXPORT_SYMBOL vmlinux 0x1a99fdf3 sg_miter_next -EXPORT_SYMBOL vmlinux 0x1a9f2bfa put_cmsg -EXPORT_SYMBOL vmlinux 0x1aa6358b tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1ac6c787 sock_alloc_file -EXPORT_SYMBOL vmlinux 0x1afb1aaa acpi_mark_gpe_for_wake -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b1e0f24 blk_alloc_queue_node -EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents -EXPORT_SYMBOL vmlinux 0x1b53670d init_special_inode -EXPORT_SYMBOL vmlinux 0x1b570d23 acpi_warning -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug -EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip -EXPORT_SYMBOL vmlinux 0x1b8cba94 bio_integrity_advance -EXPORT_SYMBOL vmlinux 0x1b8eddfa mmc_of_parse -EXPORT_SYMBOL vmlinux 0x1b9d2fd6 sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x1ba0bbdd posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0x1ba8ce2c pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer -EXPORT_SYMBOL vmlinux 0x1be1dd26 lg_global_lock -EXPORT_SYMBOL vmlinux 0x1bef858a dquot_resume -EXPORT_SYMBOL vmlinux 0x1bfbcdd7 __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x1c1bfb55 user_revoke -EXPORT_SYMBOL vmlinux 0x1c48e50c __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x1c6feba0 scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x1c83ec0b blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0x1c8a04b0 acpi_reset -EXPORT_SYMBOL vmlinux 0x1c912acb bio_integrity_free -EXPORT_SYMBOL vmlinux 0x1ca3169c vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0x1d1056e5 crc32_be -EXPORT_SYMBOL vmlinux 0x1d10b491 sock_no_bind -EXPORT_SYMBOL vmlinux 0x1d3e2c19 scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0x1d920aa2 setup_new_exec -EXPORT_SYMBOL vmlinux 0x1d98b22a down_read -EXPORT_SYMBOL vmlinux 0x1db7706b __copy_user_nocache -EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1dd6ec4a kill_anon_super -EXPORT_SYMBOL vmlinux 0x1de1d34d tcp_disconnect -EXPORT_SYMBOL vmlinux 0x1de74f72 acpi_execute_simple_method -EXPORT_SYMBOL vmlinux 0x1e0114fe __get_page_tail -EXPORT_SYMBOL vmlinux 0x1e036c98 acpi_set_gpe -EXPORT_SYMBOL vmlinux 0x1e047854 warn_slowpath_fmt -EXPORT_SYMBOL vmlinux 0x1e0bb730 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x1e0c2be4 ioremap_wc -EXPORT_SYMBOL vmlinux 0x1e0dadb6 dns_query -EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev -EXPORT_SYMBOL vmlinux 0x1e2a285f mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0x1e2f605f tcf_exts_validate -EXPORT_SYMBOL vmlinux 0x1e5285b4 bprm_change_interp -EXPORT_SYMBOL vmlinux 0x1e537e97 blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0x1e54a135 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x1e59db8c pci_unregister_driver -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e79d291 sget -EXPORT_SYMBOL vmlinux 0x1e8ef150 tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x1e959bc3 kmem_cache_size -EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1ea858d2 phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0x1ead3f3e pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector -EXPORT_SYMBOL vmlinux 0x1ed7bd35 inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x1eef2bd9 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x1f2c7052 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0x1f598923 inet_addr_type -EXPORT_SYMBOL vmlinux 0x1f5b00fb km_policy_notify -EXPORT_SYMBOL vmlinux 0x1f6ce67a sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x1fa13f70 mmc_erase -EXPORT_SYMBOL vmlinux 0x1fab7a9b key_put -EXPORT_SYMBOL vmlinux 0x1fb826f7 neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fc142ed mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag -EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x2005e68a acpi_remove_fixed_event_handler -EXPORT_SYMBOL vmlinux 0x20092385 acpi_enter_sleep_state_s4bios -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x200def83 vme_bus_type -EXPORT_SYMBOL vmlinux 0x201b0ac0 lg_global_unlock -EXPORT_SYMBOL vmlinux 0x202034ea blk_execute_rq -EXPORT_SYMBOL vmlinux 0x2023de18 ether_setup -EXPORT_SYMBOL vmlinux 0x2044aea7 amd_iommu_pc_get_max_banks -EXPORT_SYMBOL vmlinux 0x204b8c16 register_sysctl_paths -EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool -EXPORT_SYMBOL vmlinux 0x20718de9 unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq -EXPORT_SYMBOL vmlinux 0x207671fc xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x208739f6 acpi_load_table -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf -EXPORT_SYMBOL vmlinux 0x20c7cc18 submit_bh -EXPORT_SYMBOL vmlinux 0x20c9c858 pci_disable_device -EXPORT_SYMBOL vmlinux 0x20d08164 ipv6_select_ident -EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x20e7b6c4 i2c_release_client -EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum -EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x20efeba9 jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0x20f0c908 xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x211f68f1 getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x2120bd74 __f_setown -EXPORT_SYMBOL vmlinux 0x21273556 cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0x213d2f52 devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0x2178e43a inet_frag_destroy -EXPORT_SYMBOL vmlinux 0x218cd398 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x218fbcfd __blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x2198d14b pci_enable_msi_range -EXPORT_SYMBOL vmlinux 0x21a701fe fence_signal -EXPORT_SYMBOL vmlinux 0x21c6de88 simple_dentry_operations -EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set -EXPORT_SYMBOL vmlinux 0x21e66678 sock_create_kern -EXPORT_SYMBOL vmlinux 0x21e714ae __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0x21e992a5 ida_simple_get -EXPORT_SYMBOL vmlinux 0x21ed8b4f devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0x21efefb2 forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x2207a57f prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x220ff48a dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x223fbf25 tcf_hash_insert -EXPORT_SYMBOL vmlinux 0x224e7a0c genphy_soft_reset -EXPORT_SYMBOL vmlinux 0x225411e4 ilookup5 -EXPORT_SYMBOL vmlinux 0x2261cbee tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits -EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint -EXPORT_SYMBOL vmlinux 0x228a4ece backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x22a6d13b inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22bfa8ba page_put_link -EXPORT_SYMBOL vmlinux 0x22d86f26 netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0x22e18a83 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0x22ec0707 __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0x2303fdde sock_no_poll -EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs -EXPORT_SYMBOL vmlinux 0x232d18ec rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0x23398a3a inode_init_always -EXPORT_SYMBOL vmlinux 0x234481f4 locks_copy_conflock -EXPORT_SYMBOL vmlinux 0x2352a886 inet_del_protocol -EXPORT_SYMBOL vmlinux 0x236c4f3c __splice_from_pipe -EXPORT_SYMBOL vmlinux 0x238255a7 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0x2397e50a remove_proc_entry -EXPORT_SYMBOL vmlinux 0x239c3bdd mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x23b5e429 request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x23b91db8 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress -EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0x23cf97db vm_event_states -EXPORT_SYMBOL vmlinux 0x23e350d6 simple_empty -EXPORT_SYMBOL vmlinux 0x23ea58d2 pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x23eea7f0 pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x23fc6503 scsi_target_resume -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x241652d2 console_start -EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x2430f255 block_write_begin -EXPORT_SYMBOL vmlinux 0x24351589 agp_find_bridge -EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x245b7b4e find_inode_nowait -EXPORT_SYMBOL vmlinux 0x245c4cbd vga_con -EXPORT_SYMBOL vmlinux 0x2469b2bd kmem_cache_free -EXPORT_SYMBOL vmlinux 0x2472ac11 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf -EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x248cc64d d_splice_alias -EXPORT_SYMBOL vmlinux 0x24906602 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0x249baf1d inet6_del_protocol -EXPORT_SYMBOL vmlinux 0x24caa9b0 blk_get_queue -EXPORT_SYMBOL vmlinux 0x24d0628e del_random_ready_callback -EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function -EXPORT_SYMBOL vmlinux 0x251b81cf read_dev_sector -EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register -EXPORT_SYMBOL vmlinux 0x2538c471 pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x256e4dc7 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string -EXPORT_SYMBOL vmlinux 0x2575fbe6 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x2584111f tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0x25861a22 phy_ethtool_sset -EXPORT_SYMBOL vmlinux 0x258630d3 cros_ec_cmd_xfer -EXPORT_SYMBOL vmlinux 0x2596ef95 fget -EXPORT_SYMBOL vmlinux 0x25b0ebc4 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0x25be87c9 nonseekable_open -EXPORT_SYMBOL vmlinux 0x25bf43b3 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0x25cd061e gnttab_alloc_pages -EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25f121cc dev_get_stats -EXPORT_SYMBOL vmlinux 0x260ec5f9 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0x261c1b0f __skb_get_hash -EXPORT_SYMBOL vmlinux 0x26249833 devm_gpiod_get_array_optional -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x264110aa make_kgid -EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux -EXPORT_SYMBOL vmlinux 0x2665d53a key_create_or_update -EXPORT_SYMBOL vmlinux 0x268d4a75 ps2_drain -EXPORT_SYMBOL vmlinux 0x26948d96 copy_user_enhanced_fast_string -EXPORT_SYMBOL vmlinux 0x26a429e2 udp_sendmsg -EXPORT_SYMBOL vmlinux 0x26a799ee find_lock_entry -EXPORT_SYMBOL vmlinux 0x26b2081b mark_info_dirty -EXPORT_SYMBOL vmlinux 0x26cb34a2 mempool_create -EXPORT_SYMBOL vmlinux 0x26cd7f41 security_file_permission -EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min -EXPORT_SYMBOL vmlinux 0x26f63ee6 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0x26f87342 flush_old_exec -EXPORT_SYMBOL vmlinux 0x2710257d blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0x2718095e input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler -EXPORT_SYMBOL vmlinux 0x273b6d3f blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0x27569425 param_set_ulong -EXPORT_SYMBOL vmlinux 0x275dc166 sg_miter_start -EXPORT_SYMBOL vmlinux 0x27773f5a inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0x27838a9a vme_register_bridge -EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x27882b9b ida_simple_remove -EXPORT_SYMBOL vmlinux 0x278ac17d blk_requeue_request -EXPORT_SYMBOL vmlinux 0x279ad627 rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0x279cedc1 agp_put_bridge -EXPORT_SYMBOL vmlinux 0x27ae7d0c ec_transaction -EXPORT_SYMBOL vmlinux 0x27b40671 register_qdisc -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27c33efe csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0x27c6617f eth_header_parse -EXPORT_SYMBOL vmlinux 0x27cb7ea0 proc_remove -EXPORT_SYMBOL vmlinux 0x27e1a049 printk -EXPORT_SYMBOL vmlinux 0x27ee8278 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0x2804c6bc from_kgid -EXPORT_SYMBOL vmlinux 0x280dcb90 __put_cred -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x28318305 snprintf -EXPORT_SYMBOL vmlinux 0x28418d12 i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0x28668a08 vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0x28985374 mount_ns -EXPORT_SYMBOL vmlinux 0x28a2b29f radix_tree_range_tag_if_tagged -EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x28abfe6e scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x28bf32fc udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0x28d45aec mfd_cell_disable -EXPORT_SYMBOL vmlinux 0x28d6a920 blk_init_tags -EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available -EXPORT_SYMBOL vmlinux 0x28f73112 dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0x2917a994 mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0x2932221e d_find_alias -EXPORT_SYMBOL vmlinux 0x294ac454 inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0x297058e5 up_write -EXPORT_SYMBOL vmlinux 0x29893eb8 sget_userns -EXPORT_SYMBOL vmlinux 0x299ced9e amd_iommu_domain_clear_gcr3 -EXPORT_SYMBOL vmlinux 0x29a26ca6 amd_iommu_flush_page -EXPORT_SYMBOL vmlinux 0x29a73468 memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0x29b301c1 agp_bind_memory -EXPORT_SYMBOL vmlinux 0x2a202da0 remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0x2a232bbb ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x2a2b1742 dev_trans_start -EXPORT_SYMBOL vmlinux 0x2a2c36de truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2a565a25 wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0x2a723c05 genphy_read_status -EXPORT_SYMBOL vmlinux 0x2a7c672e free_xenballooned_pages -EXPORT_SYMBOL vmlinux 0x2a88d275 __alloc_skb -EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy -EXPORT_SYMBOL vmlinux 0x2aaed930 simple_dir_operations -EXPORT_SYMBOL vmlinux 0x2ac09dd5 __nla_put -EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat -EXPORT_SYMBOL vmlinux 0x2acfaaeb xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0x2addf77f xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x2b05a21b intel_gtt_get -EXPORT_SYMBOL vmlinux 0x2b067be4 cdrom_ioctl -EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x2b0f72f8 udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 -EXPORT_SYMBOL vmlinux 0x2b2e02a0 bio_clone_bioset -EXPORT_SYMBOL vmlinux 0x2b6d197d blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0x2b7b2850 get_super_thawed -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency -EXPORT_SYMBOL vmlinux 0x2bab52a3 register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x2bb55d6e acpi_remove_notify_handler -EXPORT_SYMBOL vmlinux 0x2bc56eea genphy_update_link -EXPORT_SYMBOL vmlinux 0x2beaf08e downgrade_write -EXPORT_SYMBOL vmlinux 0x2bfb0e56 locks_copy_lock -EXPORT_SYMBOL vmlinux 0x2bfeb410 acpi_get_handle -EXPORT_SYMBOL vmlinux 0x2c06459b nvm_free_rqd_ppalist -EXPORT_SYMBOL vmlinux 0x2c093614 finish_open -EXPORT_SYMBOL vmlinux 0x2c09c3a0 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0x2c123806 acpi_device_set_power -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c27dc1d scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x2c35fcec nd_integrity_init -EXPORT_SYMBOL vmlinux 0x2c4365ce eth_gro_complete -EXPORT_SYMBOL vmlinux 0x2c48368c node_data -EXPORT_SYMBOL vmlinux 0x2c4a78b1 key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0x2c922316 pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0x2c93d84e xfrm_unregister_mode -EXPORT_SYMBOL vmlinux 0x2c996f62 serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x2c9eabf9 wireless_spy_update -EXPORT_SYMBOL vmlinux 0x2ca319a6 wrmsrl_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x2cb728ac nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0x2cc40ecf fence_remove_callback -EXPORT_SYMBOL vmlinux 0x2ce89bfb mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d144e21 rdmsrl_on_cpu -EXPORT_SYMBOL vmlinux 0x2d1802a9 dquot_alloc -EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d33d7fd dmam_alloc_noncoherent -EXPORT_SYMBOL vmlinux 0x2d4cf169 jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0x2d4e1e68 blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x2d4fe9a6 twl6040_reg_read -EXPORT_SYMBOL vmlinux 0x2d5c7cea pci_biosrom_size -EXPORT_SYMBOL vmlinux 0x2d67470e __scm_send -EXPORT_SYMBOL vmlinux 0x2d759bf0 mntput -EXPORT_SYMBOL vmlinux 0x2d861fc5 rwsem_wake -EXPORT_SYMBOL vmlinux 0x2d8bfa45 get_fs_type -EXPORT_SYMBOL vmlinux 0x2da497b2 tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu -EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink -EXPORT_SYMBOL vmlinux 0x2de1511b gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x2dedc4c2 acpi_format_exception -EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write -EXPORT_SYMBOL vmlinux 0x2e05e8d8 param_set_long -EXPORT_SYMBOL vmlinux 0x2e0b89c9 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0x2e0d2f7f queue_work_on -EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put -EXPORT_SYMBOL vmlinux 0x2e1dea69 swiotlb_free_coherent -EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat -EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies -EXPORT_SYMBOL vmlinux 0x2e593a27 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0x2e96ada4 mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0x2eaa78fe dm_get_device -EXPORT_SYMBOL vmlinux 0x2eb3cf32 generic_key_instantiate -EXPORT_SYMBOL vmlinux 0x2eb9a442 inet6_release -EXPORT_SYMBOL vmlinux 0x2ebe9262 tso_build_hdr -EXPORT_SYMBOL vmlinux 0x2ec96fa7 unregister_binfmt -EXPORT_SYMBOL vmlinux 0x2ed9f81f scsi_scan_target -EXPORT_SYMBOL vmlinux 0x2ee0a643 softnet_data -EXPORT_SYMBOL vmlinux 0x2ee3990f cdrom_check_events -EXPORT_SYMBOL vmlinux 0x2eee9607 mmc_can_erase -EXPORT_SYMBOL vmlinux 0x2ef1cc65 dquot_acquire -EXPORT_SYMBOL vmlinux 0x2ef4c0cb unlock_new_inode -EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0x2ef835aa freeze_super -EXPORT_SYMBOL vmlinux 0x2f01d557 vm_map_ram -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource -EXPORT_SYMBOL vmlinux 0x2f09172b skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x2f11644b prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0x2f245b62 tty_port_tty_get -EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device -EXPORT_SYMBOL vmlinux 0x2f40e3f3 pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag -EXPORT_SYMBOL vmlinux 0x2f485ccb sock_no_shutdown -EXPORT_SYMBOL vmlinux 0x2f58efdf cleancache_register_ops -EXPORT_SYMBOL vmlinux 0x2f64f89f cpu_present_mask -EXPORT_SYMBOL vmlinux 0x2f779fed capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0x2f9bb548 inet_sendmsg -EXPORT_SYMBOL vmlinux 0x2f9c4720 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x2fa1b88d block_commit_write -EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fb71394 tty_devnum -EXPORT_SYMBOL vmlinux 0x2fd2893f seq_open_private -EXPORT_SYMBOL vmlinux 0x2fdffc3e __destroy_inode -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2ff063b5 acpi_get_name -EXPORT_SYMBOL vmlinux 0x3002ed74 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x3008dde1 __ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x300d6f2c nobh_write_end -EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command -EXPORT_SYMBOL vmlinux 0x3024b6c9 rfkill_alloc -EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0x304895bc proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x3068baf7 tcp_proto_cgroup -EXPORT_SYMBOL vmlinux 0x307a56ec d_tmpfile -EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable -EXPORT_SYMBOL vmlinux 0x30850554 generic_permission -EXPORT_SYMBOL vmlinux 0x308c5ab5 dev_add_offload -EXPORT_SYMBOL vmlinux 0x309358fb zero_fill_bio -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x309b7ac1 __alloc_pages_nodemask -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30b04526 ida_init -EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0x3101ec83 disk_stack_limits -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x310f02ec memremap -EXPORT_SYMBOL vmlinux 0x311fb349 md_error -EXPORT_SYMBOL vmlinux 0x3134feb5 ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present -EXPORT_SYMBOL vmlinux 0x3147857d default_red -EXPORT_SYMBOL vmlinux 0x31656edc __vfs_write -EXPORT_SYMBOL vmlinux 0x316f3165 make_kuid -EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear -EXPORT_SYMBOL vmlinux 0x317e70df vga_get -EXPORT_SYMBOL vmlinux 0x31829976 input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x318e6a2e security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0x31a118bd elevator_alloc -EXPORT_SYMBOL vmlinux 0x31ad75d5 dst_release -EXPORT_SYMBOL vmlinux 0x31b0b1ea fsnotify_init_mark -EXPORT_SYMBOL vmlinux 0x31b31f5c csum_partial_copy_nocheck -EXPORT_SYMBOL vmlinux 0x31cb7083 qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0x31dd5265 elv_register_queue -EXPORT_SYMBOL vmlinux 0x31e3b725 acl_by_type -EXPORT_SYMBOL vmlinux 0x31e69074 __neigh_event_send -EXPORT_SYMBOL vmlinux 0x31e76b57 recalibrate_cpu_khz -EXPORT_SYMBOL vmlinux 0x31ec44a0 _raw_read_unlock_bh -EXPORT_SYMBOL vmlinux 0x31f97024 tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0x3202435a wrmsr_safe_regs -EXPORT_SYMBOL vmlinux 0x3203d358 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x3218160b blk_put_queue -EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src -EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom -EXPORT_SYMBOL vmlinux 0x3270b949 inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x32764bcf pneigh_lookup -EXPORT_SYMBOL vmlinux 0x327af4a1 mmc_power_restore_host -EXPORT_SYMBOL vmlinux 0x32995254 pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0x32a63e9b mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x32b51c4a linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x32d4ee2e seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0x32d95581 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string -EXPORT_SYMBOL vmlinux 0x333cb37c __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0x333f86d4 scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0x3356b90b cpu_tss -EXPORT_SYMBOL vmlinux 0x33a1f922 blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0x33aaba6c pci_find_pcie_root_port -EXPORT_SYMBOL vmlinux 0x33b78c39 tcp_conn_request -EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page -EXPORT_SYMBOL vmlinux 0x33c56693 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x33e43337 tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r -EXPORT_SYMBOL vmlinux 0x33fdbd84 clocksource_change_rating -EXPORT_SYMBOL vmlinux 0x340350a1 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0x34069ffb dev_remove_offload -EXPORT_SYMBOL vmlinux 0x3409ad36 pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x341c07f8 sock_get_timestamp -EXPORT_SYMBOL vmlinux 0x3425fb2a fbcon_rotate_ud -EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin -EXPORT_SYMBOL vmlinux 0x347013de nla_validate -EXPORT_SYMBOL vmlinux 0x349213ef cpu_core_map -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x349d5d4e blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0x34c0ce38 qdisc_destroy -EXPORT_SYMBOL vmlinux 0x34c780c1 filemap_map_pages -EXPORT_SYMBOL vmlinux 0x34d42e5d fs_bio_set -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x35006bc4 iov_iter_zero -EXPORT_SYMBOL vmlinux 0x350c74b8 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0x350fde00 skb_clone_sk -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy -EXPORT_SYMBOL vmlinux 0x353e21e3 acpi_bios_warning -EXPORT_SYMBOL vmlinux 0x3544789a acpi_get_hp_hw_control_from_firmware -EXPORT_SYMBOL vmlinux 0x355034a7 filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0x35561448 blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0x355c8719 dm_unregister_target -EXPORT_SYMBOL vmlinux 0x355f917b nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x35662088 phy_disconnect -EXPORT_SYMBOL vmlinux 0x357b8867 pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0x357f9715 mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0x357fe616 dump_align -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35cf28b1 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x35efd592 pci_map_rom -EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x362c7cb1 nf_reinject -EXPORT_SYMBOL vmlinux 0x362d7b38 inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x36319f31 textsearch_unregister -EXPORT_SYMBOL vmlinux 0x3642ede4 kernel_param_lock -EXPORT_SYMBOL vmlinux 0x3652dd6d lwtunnel_encap_add_ops -EXPORT_SYMBOL vmlinux 0x369e1115 kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0x36a58059 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0x36a7d526 free_task -EXPORT_SYMBOL vmlinux 0x36b4b623 blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x36b7d516 pci_set_mwi -EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc -EXPORT_SYMBOL vmlinux 0x36cde4f5 vc_cons -EXPORT_SYMBOL vmlinux 0x36d18dfb jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x36e441ca unload_nls -EXPORT_SYMBOL vmlinux 0x3701a196 csum_partial_copy_to_user -EXPORT_SYMBOL vmlinux 0x370f9850 efi -EXPORT_SYMBOL vmlinux 0x371fb428 netdev_err -EXPORT_SYMBOL vmlinux 0x372b7af8 vme_irq_free -EXPORT_SYMBOL vmlinux 0x3732c61d swiotlb_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x37386f30 nvm_register_target -EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x37607ff8 param_ops_ulong -EXPORT_SYMBOL vmlinux 0x37635331 generic_listxattr -EXPORT_SYMBOL vmlinux 0x3787083d pci_bus_get -EXPORT_SYMBOL vmlinux 0x37ab9b61 nd_pfn_probe -EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x37b2a2dc kill_pgrp -EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info -EXPORT_SYMBOL vmlinux 0x37b92e38 swiotlb_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date -EXPORT_SYMBOL vmlinux 0x37e6bf2f inet6_unregister_icmp_sender -EXPORT_SYMBOL vmlinux 0x37f0c473 twl6040_set_pll -EXPORT_SYMBOL vmlinux 0x37fb94c8 generic_error_remove_page -EXPORT_SYMBOL vmlinux 0x38011b3d udp_ioctl -EXPORT_SYMBOL vmlinux 0x38099e13 wrmsrl_on_cpu -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x38239ac5 param_get_short -EXPORT_SYMBOL vmlinux 0x382caa2d devm_gpiod_get -EXPORT_SYMBOL vmlinux 0x383bc18f amd_iommu_get_v2_domain -EXPORT_SYMBOL vmlinux 0x38540f61 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0x3875e0c4 vfs_statfs -EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x389a0859 sk_common_release -EXPORT_SYMBOL vmlinux 0x389f5734 user_path_create -EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list -EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38ce5201 pci_clear_master -EXPORT_SYMBOL vmlinux 0x38d78888 scmd_printk -EXPORT_SYMBOL vmlinux 0x38dc61e5 tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0x38df1ad3 netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0x38f33bed dump_fpu -EXPORT_SYMBOL vmlinux 0x38f52f9c blk_mq_abort_requeue_list -EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages -EXPORT_SYMBOL vmlinux 0x390b5752 kset_unregister -EXPORT_SYMBOL vmlinux 0x3927b916 __sock_create -EXPORT_SYMBOL vmlinux 0x3933422c fb_show_logo -EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x393d4de9 crc32_le -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x39697bc3 block_truncate_page -EXPORT_SYMBOL vmlinux 0x396d530d vm_insert_pfn -EXPORT_SYMBOL vmlinux 0x397786e4 vfs_mknod -EXPORT_SYMBOL vmlinux 0x3983690f dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0x39a055f3 acpi_remove_gpe_handler -EXPORT_SYMBOL vmlinux 0x39aa4f6c __serio_register_driver -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39b644e8 file_path -EXPORT_SYMBOL vmlinux 0x39bcb297 kill_bdev -EXPORT_SYMBOL vmlinux 0x39c55a4b __block_write_begin -EXPORT_SYMBOL vmlinux 0x39c76858 simple_readpage -EXPORT_SYMBOL vmlinux 0x39dd9223 x86_hyper_vmware -EXPORT_SYMBOL vmlinux 0x39f18d02 eth_validate_addr -EXPORT_SYMBOL vmlinux 0x39f1c2f4 ida_get_new_above -EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify -EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush -EXPORT_SYMBOL vmlinux 0x3a3307ce kernel_getsockopt -EXPORT_SYMBOL vmlinux 0x3a38e879 pci_request_region -EXPORT_SYMBOL vmlinux 0x3a46d405 blk_peek_request -EXPORT_SYMBOL vmlinux 0x3a494273 try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x3a51a157 mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0x3a55f9c4 pnp_device_detach -EXPORT_SYMBOL vmlinux 0x3a613237 fb_blank -EXPORT_SYMBOL vmlinux 0x3a65bc18 finish_no_open -EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region -EXPORT_SYMBOL vmlinux 0x3a9c51c0 fb_firmware_edid -EXPORT_SYMBOL vmlinux 0x3aa9e385 blk_start_queue -EXPORT_SYMBOL vmlinux 0x3ab15b60 mutex_trylock -EXPORT_SYMBOL vmlinux 0x3ab2c36e netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x3ac85fca vfs_getxattr_alloc -EXPORT_SYMBOL vmlinux 0x3ae51339 vfs_write -EXPORT_SYMBOL vmlinux 0x3b013251 __ip_dev_find -EXPORT_SYMBOL vmlinux 0x3b09743f find_get_pages_contig -EXPORT_SYMBOL vmlinux 0x3b1cda42 key_invalidate -EXPORT_SYMBOL vmlinux 0x3b44bd20 bdput -EXPORT_SYMBOL vmlinux 0x3b47f508 blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b6f6cd2 udp_table -EXPORT_SYMBOL vmlinux 0x3b71eda9 sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0x3b7aa2f4 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0x3b830da0 __generic_file_fsync -EXPORT_SYMBOL vmlinux 0x3b8c2d33 __module_put_and_exit -EXPORT_SYMBOL vmlinux 0x3b9e4957 dcb_getapp -EXPORT_SYMBOL vmlinux 0x3b9f373c buffer_migrate_page -EXPORT_SYMBOL vmlinux 0x3bb5114a prepare_to_wait -EXPORT_SYMBOL vmlinux 0x3bc42b52 writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x3bc77ca6 set_page_dirty -EXPORT_SYMBOL vmlinux 0x3bd58905 swiotlb_alloc_coherent -EXPORT_SYMBOL vmlinux 0x3bdb30b4 serio_close -EXPORT_SYMBOL vmlinux 0x3bdb7587 ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0x3bf87c20 __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0x3c0073d8 scsi_device_set_state -EXPORT_SYMBOL vmlinux 0x3c048b18 vme_irq_generate -EXPORT_SYMBOL vmlinux 0x3c133fe8 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c483012 radix_tree_delete -EXPORT_SYMBOL vmlinux 0x3c551b4e scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0x3c567fe8 qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0x3c5f84c9 always_delete_dentry -EXPORT_SYMBOL vmlinux 0x3c7bf158 pnp_is_active -EXPORT_SYMBOL vmlinux 0x3c7c18cf blkdev_put -EXPORT_SYMBOL vmlinux 0x3c7fb3cf devm_clk_put -EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull -EXPORT_SYMBOL vmlinux 0x3c8adc92 ip_options_compile -EXPORT_SYMBOL vmlinux 0x3c91cbf9 pci_write_vpd -EXPORT_SYMBOL vmlinux 0x3c996106 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x3ca4df81 abort_creds -EXPORT_SYMBOL vmlinux 0x3caccf60 reservation_object_add_shared_fence -EXPORT_SYMBOL vmlinux 0x3ccbfe42 nvm_addr_to_generic_mode -EXPORT_SYMBOL vmlinux 0x3ce3c4bb tcp_make_synack -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3d1391e2 _raw_read_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x3d240944 fb_is_primary_device -EXPORT_SYMBOL vmlinux 0x3d2e5165 unregister_framebuffer -EXPORT_SYMBOL vmlinux 0x3d36cde9 scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0x3d4746f5 nvm_generic_to_addr_mode -EXPORT_SYMBOL vmlinux 0x3d55c46e agp_generic_insert_memory -EXPORT_SYMBOL vmlinux 0x3d634699 ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x3d63cc1c security_inode_permission -EXPORT_SYMBOL vmlinux 0x3d75494b __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0x3d7c1ed7 msrs_alloc -EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page -EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start -EXPORT_SYMBOL vmlinux 0x3dbf36c9 sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3dce5ead amd_iommu_enable_device_erratum -EXPORT_SYMBOL vmlinux 0x3dda04ae posix_unblock_lock -EXPORT_SYMBOL vmlinux 0x3dfc6d6b i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e107dcf mmc_align_data_size -EXPORT_SYMBOL vmlinux 0x3e1ec2f1 put_page -EXPORT_SYMBOL vmlinux 0x3e27bb45 rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x3e2ae3a8 acpi_release_global_lock -EXPORT_SYMBOL vmlinux 0x3e3c82b6 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x3e4af87e gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x3e678442 dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0x3e7d1b65 iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource -EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get -EXPORT_SYMBOL vmlinux 0x3ea67630 __lock_buffer -EXPORT_SYMBOL vmlinux 0x3ea90919 agp3_generic_tlbflush -EXPORT_SYMBOL vmlinux 0x3eb09a04 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x3ec0fab2 peernet2id_alloc -EXPORT_SYMBOL vmlinux 0x3ec20cf7 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0x3ec457e6 component_match_add -EXPORT_SYMBOL vmlinux 0x3ec4d8e5 nf_unregister_hooks -EXPORT_SYMBOL vmlinux 0x3ec553ff acpi_bus_unregister_driver -EXPORT_SYMBOL vmlinux 0x3ecaa47c mb_cache_entry_release -EXPORT_SYMBOL vmlinux 0x3ed5c4cb blk_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep -EXPORT_SYMBOL vmlinux 0x3f0ff0df tty_port_close_end -EXPORT_SYMBOL vmlinux 0x3f1080e1 __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0x3f20ca97 rtc_lock -EXPORT_SYMBOL vmlinux 0x3f3c7d00 input_set_capability -EXPORT_SYMBOL vmlinux 0x3f3e3c34 eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f6564cc crypto_sha1_update -EXPORT_SYMBOL vmlinux 0x3f6ceb8a unregister_key_type -EXPORT_SYMBOL vmlinux 0x3f82248c bitmap_startwrite -EXPORT_SYMBOL vmlinux 0x3f88ff3f max8998_read_reg -EXPORT_SYMBOL vmlinux 0x3f91e069 phy_start_interrupts -EXPORT_SYMBOL vmlinux 0x3f9f07fa agp_generic_free_by_type -EXPORT_SYMBOL vmlinux 0x3fa04bc1 __nlmsg_put -EXPORT_SYMBOL vmlinux 0x3faa3507 d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x3fab85f4 free_buffer_head -EXPORT_SYMBOL vmlinux 0x3fe015c2 __free_pages -EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight -EXPORT_SYMBOL vmlinux 0x3fe6a79c abx500_get_register_interruptible -EXPORT_SYMBOL vmlinux 0x3fec048f sg_next -EXPORT_SYMBOL vmlinux 0x4009c71b pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0x400ca7f6 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x40118b3b install_exec_creds -EXPORT_SYMBOL vmlinux 0x40127c1f poll_initwait -EXPORT_SYMBOL vmlinux 0x402636e0 mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0x40272022 d_set_fallthru -EXPORT_SYMBOL vmlinux 0x402b8281 __request_module -EXPORT_SYMBOL vmlinux 0x40324e19 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev -EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds -EXPORT_SYMBOL vmlinux 0x40655186 page_readlink -EXPORT_SYMBOL vmlinux 0x40779448 abx500_register_ops -EXPORT_SYMBOL vmlinux 0x409113c3 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x4097fa45 acpi_read_bit_register -EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x40a09ff1 blk_integrity_merge_bio -EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x40a47488 blk_integrity_register -EXPORT_SYMBOL vmlinux 0x40a970c4 acpi_device_hid -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40c89d46 acpi_get_table_by_index -EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40e7db5b mfd_remove_devices -EXPORT_SYMBOL vmlinux 0x40ef5040 mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x410059ac posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x4117565c fbcon_rotate_cw -EXPORT_SYMBOL vmlinux 0x4132a190 ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0x4143205a pci_unmap_rom -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x414e3fc9 mount_pseudo -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x419b8aa4 dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x41a3fbf1 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x41baf194 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0x41d74aa4 blk_queue_split -EXPORT_SYMBOL vmlinux 0x41f5e1d1 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x420ab2fd udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x4211cc98 pci_set_power_state -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x42341699 swiotlb_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x4234f096 cpumask_next_and -EXPORT_SYMBOL vmlinux 0x42350e8d ucs2_strlen -EXPORT_SYMBOL vmlinux 0x42357007 swiotlb_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0x423d743f n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x4248e3b8 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x424c5b28 neigh_connected_output -EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x4257b26f misc_deregister -EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force -EXPORT_SYMBOL vmlinux 0x429c0347 gnttab_free_pages -EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x42c10187 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x42c8de35 ioremap_nocache -EXPORT_SYMBOL vmlinux 0x42dfdaa2 tcf_register_action -EXPORT_SYMBOL vmlinux 0x43021b4e netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x43074d70 tty_port_close -EXPORT_SYMBOL vmlinux 0x43254516 jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0x4336b251 brioctl_set -EXPORT_SYMBOL vmlinux 0x433a2328 elv_rb_del -EXPORT_SYMBOL vmlinux 0x434738ac cpufreq_global_kobject -EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x43b613da dm_put_table_device -EXPORT_SYMBOL vmlinux 0x43cfe6cb lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0x43d931b7 security_path_truncate -EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x43f49a42 jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0x43fd17f3 cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed -EXPORT_SYMBOL vmlinux 0x442338b8 mmc_can_trim -EXPORT_SYMBOL vmlinux 0x4451a1d9 vfs_setpos -EXPORT_SYMBOL vmlinux 0x4465e9ca phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0x446d6202 sk_stream_write_space -EXPORT_SYMBOL vmlinux 0x44710290 vme_register_error_handler -EXPORT_SYMBOL vmlinux 0x4473898d napi_gro_flush -EXPORT_SYMBOL vmlinux 0x4489da02 register_sysctl_table -EXPORT_SYMBOL vmlinux 0x448e085f prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x448eac3e kmemdup -EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp -EXPORT_SYMBOL vmlinux 0x449fe84b acpi_set_firmware_waking_vectors -EXPORT_SYMBOL vmlinux 0x44a81d5f acpi_evaluate_object -EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz -EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x44bfdf8c bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x44c80392 dev_alert -EXPORT_SYMBOL vmlinux 0x44d3b1e4 mdiobus_scan -EXPORT_SYMBOL vmlinux 0x44d40ece kfree_skb -EXPORT_SYMBOL vmlinux 0x44d51eeb tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x450704d8 scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle -EXPORT_SYMBOL vmlinux 0x4519710f from_kuid -EXPORT_SYMBOL vmlinux 0x452e910b tty_throttle -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x4548918d tso_count_descs -EXPORT_SYMBOL vmlinux 0x45531930 nobh_writepage -EXPORT_SYMBOL vmlinux 0x45595f6e __ps2_command -EXPORT_SYMBOL vmlinux 0x455a4904 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0x456edb84 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0x456fa31f scsi_ioctl_reset -EXPORT_SYMBOL vmlinux 0x457163d9 jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x45876740 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0x4589e07d __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x459969bd tty_port_hangup -EXPORT_SYMBOL vmlinux 0x45a39405 proc_create_mount_point -EXPORT_SYMBOL vmlinux 0x45a587aa __i2c_transfer -EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource -EXPORT_SYMBOL vmlinux 0x45ccd7d8 block_read_full_page -EXPORT_SYMBOL vmlinux 0x45f2d936 d_genocide -EXPORT_SYMBOL vmlinux 0x45f82f69 init_net -EXPORT_SYMBOL vmlinux 0x460035d5 pci_scan_bus -EXPORT_SYMBOL vmlinux 0x460079f8 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x4604a43a mem_section -EXPORT_SYMBOL vmlinux 0x460da718 blk_mq_start_request -EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x4629334c __preempt_count -EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set -EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x466d5fc2 __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0x4673cb96 set_anon_super -EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0x4688a552 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0x468e6482 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0x46b1db35 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x46b43924 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance -EXPORT_SYMBOL vmlinux 0x46f3cf0a init_task -EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg -EXPORT_SYMBOL vmlinux 0x4709d1aa mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0x4711121a ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0x471b24d9 I_BDEV -EXPORT_SYMBOL vmlinux 0x4722aa1a devm_gpiod_put_array -EXPORT_SYMBOL vmlinux 0x4733a077 vme_unregister_driver -EXPORT_SYMBOL vmlinux 0x47343580 inet_accept -EXPORT_SYMBOL vmlinux 0x4740b3bc xen_arch_unregister_cpu -EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x474462cc __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x475f010b acpi_purge_cached_objects -EXPORT_SYMBOL vmlinux 0x477e6dcb amd_iommu_pc_get_set_reg_val -EXPORT_SYMBOL vmlinux 0x477ebfcd mmc_power_save_host -EXPORT_SYMBOL vmlinux 0x47850498 i2c_transfer -EXPORT_SYMBOL vmlinux 0x478d10b2 ht_destroy_irq -EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit -EXPORT_SYMBOL vmlinux 0x479e79c3 generic_end_io_acct -EXPORT_SYMBOL vmlinux 0x47a06c3e bdevname -EXPORT_SYMBOL vmlinux 0x47aaa340 kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0x47c2bf3d mmc_add_host -EXPORT_SYMBOL vmlinux 0x47c3b55c seq_vprintf -EXPORT_SYMBOL vmlinux 0x47cb00d9 frontswap_register_ops -EXPORT_SYMBOL vmlinux 0x47db9451 tcf_destroy_chain -EXPORT_SYMBOL vmlinux 0x47e4b47a read_cache_page -EXPORT_SYMBOL vmlinux 0x47f8eb2d blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0x48160ca6 bd_set_size -EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open -EXPORT_SYMBOL vmlinux 0x481cb9ab acpi_enter_sleep_state_prep -EXPORT_SYMBOL vmlinux 0x4841bdee strnchr -EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days -EXPORT_SYMBOL vmlinux 0x485f60d7 fddi_change_mtu -EXPORT_SYMBOL vmlinux 0x487a77e5 blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0x4889d91c scsi_verify_blk_ioctl -EXPORT_SYMBOL vmlinux 0x48aa9273 check_disk_size_change -EXPORT_SYMBOL vmlinux 0x48b223c6 amd_northbridges -EXPORT_SYMBOL vmlinux 0x48b312d7 drop_nlink -EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48bceee8 dev_set_group -EXPORT_SYMBOL vmlinux 0x48d50e79 amd_iommu_register_ppr_notifier -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x4915730e dev_set_mtu -EXPORT_SYMBOL vmlinux 0x49380458 nvm_register -EXPORT_SYMBOL vmlinux 0x493806bd mmc_free_host -EXPORT_SYMBOL vmlinux 0x4942ba71 xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0x49441325 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x494dbc2a blk_queue_resize_tags -EXPORT_SYMBOL vmlinux 0x494e3393 vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x495a3e50 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0x495c4236 kernel_sendpage -EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init -EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data -EXPORT_SYMBOL vmlinux 0x4966bd25 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0x49784f55 zpool_register_driver -EXPORT_SYMBOL vmlinux 0x49839e81 devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x49a0937b tcp_init_sock -EXPORT_SYMBOL vmlinux 0x49ae5bd3 ip6_xmit -EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan -EXPORT_SYMBOL vmlinux 0x49c84cbf dev_crit -EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many -EXPORT_SYMBOL vmlinux 0x4a1597fe skb_seq_read -EXPORT_SYMBOL vmlinux 0x4a184723 inode_dio_wait -EXPORT_SYMBOL vmlinux 0x4a26c80b i2c_get_adapter -EXPORT_SYMBOL vmlinux 0x4a2f30a0 blk_integrity_merge_rq -EXPORT_SYMBOL vmlinux 0x4a44a4f3 inet_release -EXPORT_SYMBOL vmlinux 0x4a46bb7b param_get_charp -EXPORT_SYMBOL vmlinux 0x4a6b5582 sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0x4a78419a vme_irq_request -EXPORT_SYMBOL vmlinux 0x4a7a7eea napi_consume_skb -EXPORT_SYMBOL vmlinux 0x4a83480e sk_stop_timer -EXPORT_SYMBOL vmlinux 0x4a8961f5 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x4a89c2a8 devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0x4a8ec0a1 open_check_o_direct -EXPORT_SYMBOL vmlinux 0x4a9fdc12 param_get_long -EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk -EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource -EXPORT_SYMBOL vmlinux 0x4ace9f4c single_release -EXPORT_SYMBOL vmlinux 0x4adf4612 inet6_del_offload -EXPORT_SYMBOL vmlinux 0x4af8a952 xfrm_find_acq -EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize -EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure -EXPORT_SYMBOL vmlinux 0x4b131c4f sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0x4b1ada07 __netif_schedule -EXPORT_SYMBOL vmlinux 0x4b3ed55e nvm_erase_ppa -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b667176 lg_local_lock_cpu -EXPORT_SYMBOL vmlinux 0x4b9c1d1b __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0x4b9dfb04 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get -EXPORT_SYMBOL vmlinux 0x4bb47ccb ip_setsockopt -EXPORT_SYMBOL vmlinux 0x4bb6e8f6 simple_lookup -EXPORT_SYMBOL vmlinux 0x4bc4a6c3 poll_freewait -EXPORT_SYMBOL vmlinux 0x4bc5e130 neigh_event_ns -EXPORT_SYMBOL vmlinux 0x4bd248b5 invalidate_partition -EXPORT_SYMBOL vmlinux 0x4bd25e63 __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0x4bd44563 single_open -EXPORT_SYMBOL vmlinux 0x4bd4f310 is_bad_inode -EXPORT_SYMBOL vmlinux 0x4c064f62 kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance -EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf -EXPORT_SYMBOL vmlinux 0x4c3654bb kobject_set_name -EXPORT_SYMBOL vmlinux 0x4c40a0eb blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0x4c49e2d4 kernel_listen -EXPORT_SYMBOL vmlinux 0x4c4aca74 netif_receive_skb -EXPORT_SYMBOL vmlinux 0x4c4b6f7e fput -EXPORT_SYMBOL vmlinux 0x4c51004a netif_napi_add -EXPORT_SYMBOL vmlinux 0x4c878322 iosf_mbi_modify -EXPORT_SYMBOL vmlinux 0x4c8a8634 tcp_recvmsg -EXPORT_SYMBOL vmlinux 0x4c90b5a1 __kernel_write -EXPORT_SYMBOL vmlinux 0x4c95fe3a pci_scan_single_device -EXPORT_SYMBOL vmlinux 0x4c9d28b0 phys_base -EXPORT_SYMBOL vmlinux 0x4ca9669f scnprintf -EXPORT_SYMBOL vmlinux 0x4cb09ae5 mount_nodev -EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval -EXPORT_SYMBOL vmlinux 0x4ce2b63f generic_file_open -EXPORT_SYMBOL vmlinux 0x4cf04fe9 param_ops_invbool -EXPORT_SYMBOL vmlinux 0x4cf1a54b __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x4d40abde seq_lseek -EXPORT_SYMBOL vmlinux 0x4d4bddd0 tcp_destroy_cgroup -EXPORT_SYMBOL vmlinux 0x4d4dbfc8 key_reject_and_link -EXPORT_SYMBOL vmlinux 0x4d5c53e0 fsnotify_destroy_mark -EXPORT_SYMBOL vmlinux 0x4d61fb65 tcf_hash_cleanup -EXPORT_SYMBOL vmlinux 0x4d69f66e genlmsg_put -EXPORT_SYMBOL vmlinux 0x4d70c083 __scsi_print_sense -EXPORT_SYMBOL vmlinux 0x4d70cb8f search_binary_handler -EXPORT_SYMBOL vmlinux 0x4d89f70a agp_free_memory -EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4d9b9d5d mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0x4d9e8522 lru_cache_add_file -EXPORT_SYMBOL vmlinux 0x4da0f5c1 xfrm_state_insert -EXPORT_SYMBOL vmlinux 0x4dbbfa72 rwsem_downgrade_wake -EXPORT_SYMBOL vmlinux 0x4dbffdb5 skb_store_bits -EXPORT_SYMBOL vmlinux 0x4dd4fbf7 scm_detach_fds -EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x4de99abb to_nd_pfn -EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse -EXPORT_SYMBOL vmlinux 0x4dfa5e46 skb_make_writable -EXPORT_SYMBOL vmlinux 0x4e065a2a sk_wait_data -EXPORT_SYMBOL vmlinux 0x4e0ce38d twl6040_get_pll -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e3f5c79 netdev_alert -EXPORT_SYMBOL vmlinux 0x4e4dd83b posix_lock_file -EXPORT_SYMBOL vmlinux 0x4e606190 copy_strings_kernel -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e7057aa padata_do_parallel -EXPORT_SYMBOL vmlinux 0x4e7882a0 ppp_dev_name -EXPORT_SYMBOL vmlinux 0x4e78e80a __bio_clone_fast -EXPORT_SYMBOL vmlinux 0x4e799f23 __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0x4e9082ce tty_lock -EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset -EXPORT_SYMBOL vmlinux 0x4eae6e7e ppp_channel_index -EXPORT_SYMBOL vmlinux 0x4eca9a67 serio_unregister_port -EXPORT_SYMBOL vmlinux 0x4ed1c01a simple_transaction_release -EXPORT_SYMBOL vmlinux 0x4ed33d78 uart_resume_port -EXPORT_SYMBOL vmlinux 0x4f111d37 scsi_print_result -EXPORT_SYMBOL vmlinux 0x4f117f3b dev_get_iflink -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse -EXPORT_SYMBOL vmlinux 0x4f3f7415 __serio_register_port -EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command -EXPORT_SYMBOL vmlinux 0x4f620fb4 netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday -EXPORT_SYMBOL vmlinux 0x4f6b400b _copy_from_user -EXPORT_SYMBOL vmlinux 0x4f7819d6 dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0x4f783f30 acpi_read -EXPORT_SYMBOL vmlinux 0x4f79dd6e nla_reserve -EXPORT_SYMBOL vmlinux 0x4f7a4827 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0x4f809a74 kern_unmount -EXPORT_SYMBOL vmlinux 0x4f813c52 pci_dev_put -EXPORT_SYMBOL vmlinux 0x4f8b5ddb _copy_to_user -EXPORT_SYMBOL vmlinux 0x4f8ea7b9 eth_type_trans -EXPORT_SYMBOL vmlinux 0x4fc02ce0 nvm_submit_io -EXPORT_SYMBOL vmlinux 0x4fc65d90 mmc_wait_for_app_cmd -EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command -EXPORT_SYMBOL vmlinux 0x4ffb0d0c make_kprojid -EXPORT_SYMBOL vmlinux 0x4ffe9859 netpoll_send_skb_on_dev -EXPORT_SYMBOL vmlinux 0x5001ed89 uart_get_divisor -EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security -EXPORT_SYMBOL vmlinux 0x504fb3fe iov_iter_copy_from_user_atomic -EXPORT_SYMBOL vmlinux 0x50529870 acpi_get_gpe_status -EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x5064e273 unregister_filesystem -EXPORT_SYMBOL vmlinux 0x5090dfa6 sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method -EXPORT_SYMBOL vmlinux 0x509dfc0b datagram_poll -EXPORT_SYMBOL vmlinux 0x50a06891 devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0x50a5a454 pnp_stop_dev -EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch -EXPORT_SYMBOL vmlinux 0x50ba769a kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del -EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x50e7aa86 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x50fb01bc blk_queue_find_tag -EXPORT_SYMBOL vmlinux 0x50fea8b4 invalidate_bdev -EXPORT_SYMBOL vmlinux 0x51164ad9 cmdline_parts_set -EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0x514cdf26 pci_disable_msi -EXPORT_SYMBOL vmlinux 0x5154a19e inet_stream_connect -EXPORT_SYMBOL vmlinux 0x5163e452 acpi_notifier_call_chain -EXPORT_SYMBOL vmlinux 0x51719973 dq_data_lock -EXPORT_SYMBOL vmlinux 0x5182e07f dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x51907c39 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x5192f866 blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0x519622ea pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled -EXPORT_SYMBOL vmlinux 0x51dce274 would_dump -EXPORT_SYMBOL vmlinux 0x5201a527 dev_mc_del -EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str -EXPORT_SYMBOL vmlinux 0x52095e19 acpi_get_data -EXPORT_SYMBOL vmlinux 0x52130046 acpi_check_address_range -EXPORT_SYMBOL vmlinux 0x521ac997 __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0x523cdf5b ip_getsockopt -EXPORT_SYMBOL vmlinux 0x524d993f sock_no_connect -EXPORT_SYMBOL vmlinux 0x525c06bd dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0x525e026f acpi_os_unmap_generic_address -EXPORT_SYMBOL vmlinux 0x52701cfc fbcon_set_rotate -EXPORT_SYMBOL vmlinux 0x52706f67 migrate_page_copy -EXPORT_SYMBOL vmlinux 0x528b5e9a __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x5291a162 ip_defrag -EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x52a9d1f0 dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0x52c655e1 cdev_add -EXPORT_SYMBOL vmlinux 0x52d5efa2 lwtunnel_state_alloc -EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid -EXPORT_SYMBOL vmlinux 0x531fb138 tcp_md5_hash_header -EXPORT_SYMBOL vmlinux 0x53214316 netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x5355c7c4 end_buffer_async_write -EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off -EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0x536cc847 memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0x5377e556 hex2bin -EXPORT_SYMBOL vmlinux 0x539348d8 remove_arg_zero -EXPORT_SYMBOL vmlinux 0x53992d48 agp_copy_info -EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x53a71c48 mmc_alloc_host -EXPORT_SYMBOL vmlinux 0x53be9fe6 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0x53d22421 mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0x53e73a74 nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0x53fe89b9 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x54059a2a amd_iommu_pc_get_max_counters -EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x540ae5c1 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x543453b8 input_get_keycode -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x543fffd0 param_set_charp -EXPORT_SYMBOL vmlinux 0x544b0c11 acpi_lid_notifier_register -EXPORT_SYMBOL vmlinux 0x546200ac generic_fillattr -EXPORT_SYMBOL vmlinux 0x5464d3f6 acpi_remove_sci_handler -EXPORT_SYMBOL vmlinux 0x5465e55d blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0x547c8b2f elv_dispatch_add_tail -EXPORT_SYMBOL vmlinux 0x5483f72b get_super -EXPORT_SYMBOL vmlinux 0x548b4046 inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x54938c2c __frontswap_store -EXPORT_SYMBOL vmlinux 0x54982c04 udp_poll -EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul -EXPORT_SYMBOL vmlinux 0x54b8bf5b dev_addr_add -EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window -EXPORT_SYMBOL vmlinux 0x54d37767 netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54e910a2 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0x54f24d1a fence_default_wait -EXPORT_SYMBOL vmlinux 0x5505948e serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x551bedc7 fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x553bea46 end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0x553d3ba6 release_sock -EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu -EXPORT_SYMBOL vmlinux 0x555f6938 lockref_get -EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat -EXPORT_SYMBOL vmlinux 0x55701cc3 mutex_lock -EXPORT_SYMBOL vmlinux 0x55916dcd set_wb_congested -EXPORT_SYMBOL vmlinux 0x5593b9f0 insert_inode_locked -EXPORT_SYMBOL vmlinux 0x55983989 get_thermal_instance -EXPORT_SYMBOL vmlinux 0x55b19c7a bdget_disk -EXPORT_SYMBOL vmlinux 0x55b48ae3 devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0x55b79a11 scsi_host_alloc -EXPORT_SYMBOL vmlinux 0x55bac2a8 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x55da9811 proc_create_data -EXPORT_SYMBOL vmlinux 0x55e60a36 queued_spin_unlock_wait -EXPORT_SYMBOL vmlinux 0x55f5019b __kmalloc_node -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x5641419b wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x5644e52e devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0x564d1693 arch_debugfs_dir -EXPORT_SYMBOL vmlinux 0x56540363 dma_common_get_sgtable -EXPORT_SYMBOL vmlinux 0x56604461 free_netdev -EXPORT_SYMBOL vmlinux 0x56799d1f get_task_io_context -EXPORT_SYMBOL vmlinux 0x56886754 security_path_mkdir -EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames -EXPORT_SYMBOL vmlinux 0x56a203e0 tty_unlock -EXPORT_SYMBOL vmlinux 0x56a35cd0 skb_set_owner_w -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56d06888 ps2_handle_ack -EXPORT_SYMBOL vmlinux 0x57062b1a pci_platform_rom -EXPORT_SYMBOL vmlinux 0x570a9868 rtmsg_ifinfo -EXPORT_SYMBOL vmlinux 0x571829a3 __skb_get_hash_flowi6 -EXPORT_SYMBOL vmlinux 0x571cae93 inet_register_protosw -EXPORT_SYMBOL vmlinux 0x57265882 pid_task -EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt -EXPORT_SYMBOL vmlinux 0x57349fdb skb_checksum_setup -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x575e49e8 sync_inode_metadata -EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x57743c52 iget_locked -EXPORT_SYMBOL vmlinux 0x577d35f3 hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy -EXPORT_SYMBOL vmlinux 0x57967a97 xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x57a89e38 __quota_error -EXPORT_SYMBOL vmlinux 0x57abfdf2 trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x57afd3b7 fb_prepare_logo -EXPORT_SYMBOL vmlinux 0x57ba72ab fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x57c4ccf3 sk_capable -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x582654b2 set_blocksize -EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x58436dc6 skb_pad -EXPORT_SYMBOL vmlinux 0x584738f9 rdmsr_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x5851d0ac inet_select_addr -EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep -EXPORT_SYMBOL vmlinux 0x58604e4d alloc_iova_mem -EXPORT_SYMBOL vmlinux 0x586103be acpi_setup_gpe_for_wake -EXPORT_SYMBOL vmlinux 0x5861ddcb __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x58650fd7 mpage_readpage -EXPORT_SYMBOL vmlinux 0x586d0fba locks_free_lock -EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat -EXPORT_SYMBOL vmlinux 0x58b6a97d skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58d2166e eth_header_cache_update -EXPORT_SYMBOL vmlinux 0x58d963dd cancel_dirty_page -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x5944d015 __cachemode2pte_tbl -EXPORT_SYMBOL vmlinux 0x594ab8b7 da903x_query_status -EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map -EXPORT_SYMBOL vmlinux 0x5953fbb9 input_release_device -EXPORT_SYMBOL vmlinux 0x595bc4de dev_uc_del -EXPORT_SYMBOL vmlinux 0x59702792 mmc_release_host -EXPORT_SYMBOL vmlinux 0x597201e0 locks_remove_posix -EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x59a9f9db nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release -EXPORT_SYMBOL vmlinux 0x59bb5734 processors -EXPORT_SYMBOL vmlinux 0x59bc9609 acpi_write_bit_register -EXPORT_SYMBOL vmlinux 0x59c6433d unlock_rename -EXPORT_SYMBOL vmlinux 0x59ca1335 sock_wake_async -EXPORT_SYMBOL vmlinux 0x59e56996 generic_file_fsync -EXPORT_SYMBOL vmlinux 0x59f580de param_get_ullong -EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a195498 lease_modify -EXPORT_SYMBOL vmlinux 0x5a238911 alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0x5a33bb38 alloc_disk_node -EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 -EXPORT_SYMBOL vmlinux 0x5a6a8478 sock_efree -EXPORT_SYMBOL vmlinux 0x5a82c44a complete_and_exit -EXPORT_SYMBOL vmlinux 0x5a836a99 kernel_getsockname -EXPORT_SYMBOL vmlinux 0x5a8526f2 nd_device_unregister -EXPORT_SYMBOL vmlinux 0x5a921311 strncmp -EXPORT_SYMBOL vmlinux 0x5aa12dfd iommu_tbl_range_alloc -EXPORT_SYMBOL vmlinux 0x5aa7023d pci_pme_capable -EXPORT_SYMBOL vmlinux 0x5ab9e769 fsnotify_add_mark -EXPORT_SYMBOL vmlinux 0x5ac376a5 acpi_install_fixed_event_handler -EXPORT_SYMBOL vmlinux 0x5ac73111 adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get -EXPORT_SYMBOL vmlinux 0x5b0fed17 kernel_write -EXPORT_SYMBOL vmlinux 0x5b23939e param_set_ullong -EXPORT_SYMBOL vmlinux 0x5b50adc6 sock_recvmsg -EXPORT_SYMBOL vmlinux 0x5b5582dd padata_set_cpumasks -EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap -EXPORT_SYMBOL vmlinux 0x5b5febca agp_generic_destroy_page -EXPORT_SYMBOL vmlinux 0x5b8afd3f scsi_register_driver -EXPORT_SYMBOL vmlinux 0x5b945a17 d_path -EXPORT_SYMBOL vmlinux 0x5b99b048 dquot_scan_active -EXPORT_SYMBOL vmlinux 0x5b9c808a acpi_get_possible_resources -EXPORT_SYMBOL vmlinux 0x5ba95f24 inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x5bbcc255 mmc_set_blockcount -EXPORT_SYMBOL vmlinux 0x5bc10524 printk_emit -EXPORT_SYMBOL vmlinux 0x5bc8d583 copy_from_user_overflow -EXPORT_SYMBOL vmlinux 0x5bd4398e scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0x5bec9b06 swiotlb_dma_mapping_error -EXPORT_SYMBOL vmlinux 0x5bfe75e0 pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x5c0442fd acpi_gbl_FADT -EXPORT_SYMBOL vmlinux 0x5c0de165 mb_cache_entry_insert -EXPORT_SYMBOL vmlinux 0x5c2e7108 touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x5c446cdd input_register_handler -EXPORT_SYMBOL vmlinux 0x5c4c45d5 dump_emit -EXPORT_SYMBOL vmlinux 0x5c7f9f81 mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0x5c946799 sk_free -EXPORT_SYMBOL vmlinux 0x5caa6b2d ppp_input -EXPORT_SYMBOL vmlinux 0x5cb01333 scsi_print_command -EXPORT_SYMBOL vmlinux 0x5cb5ecf4 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0x5cc1b2d4 ata_print_version -EXPORT_SYMBOL vmlinux 0x5cef29d0 dev_alloc_name -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5cfe2fd7 pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x5d0161ec proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0x5d028828 kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x5d02aedb tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x5d1cbce5 pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0x5d206076 default_file_splice_read -EXPORT_SYMBOL vmlinux 0x5d381e34 fb_validate_mode -EXPORT_SYMBOL vmlinux 0x5d3a8ede __blk_run_queue -EXPORT_SYMBOL vmlinux 0x5d3f48a1 max8925_set_bits -EXPORT_SYMBOL vmlinux 0x5d40647b phy_register_fixup -EXPORT_SYMBOL vmlinux 0x5d476e1f acpi_pm_device_run_wake -EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain -EXPORT_SYMBOL vmlinux 0x5d672697 seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0x5d74dbcf pnp_range_reserved -EXPORT_SYMBOL vmlinux 0x5d8475e0 completion_done -EXPORT_SYMBOL vmlinux 0x5d908bb4 vme_master_request -EXPORT_SYMBOL vmlinux 0x5d9276df simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x5daf765c jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0x5db05854 __inet_stream_connect -EXPORT_SYMBOL vmlinux 0x5dc19dd0 mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0x5dcac2b1 mdiobus_read -EXPORT_SYMBOL vmlinux 0x5dde81cb ps2_handle_response -EXPORT_SYMBOL vmlinux 0x5de2187f pci_get_slot -EXPORT_SYMBOL vmlinux 0x5de57de6 __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x5df09e8d bio_reset -EXPORT_SYMBOL vmlinux 0x5e214015 phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0x5e2392fc inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0x5e2787a0 nobh_write_begin -EXPORT_SYMBOL vmlinux 0x5e3488cf drop_super -EXPORT_SYMBOL vmlinux 0x5e8c2c84 dev_change_carrier -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5e984d53 inetdev_by_index -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ecfeec6 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5eefa6e6 tty_write_room -EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 -EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f119cf1 down_write_trylock -EXPORT_SYMBOL vmlinux 0x5f2d88a5 vfs_fsync -EXPORT_SYMBOL vmlinux 0x5f348721 from_kprojid -EXPORT_SYMBOL vmlinux 0x5f3c4a72 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x5f5fb85f lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x5f642eb5 agp_generic_alloc_by_type -EXPORT_SYMBOL vmlinux 0x5f72ebc7 blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x5f8a741c elv_unregister_queue -EXPORT_SYMBOL vmlinux 0x5f9c3ba7 inode_change_ok -EXPORT_SYMBOL vmlinux 0x5fb2e8ef idr_init -EXPORT_SYMBOL vmlinux 0x5fd37643 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0x5fd9bd4a sock_get_timestampns -EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat -EXPORT_SYMBOL vmlinux 0x5ffc6374 xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0x60052bcb nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x600574aa jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool -EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x6014fad1 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0x601b5297 soft_cursor -EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x602ed00d acpi_current_gpe_count -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x603d56f6 inode_add_bytes -EXPORT_SYMBOL vmlinux 0x604316d8 acpi_finish_gpe -EXPORT_SYMBOL vmlinux 0x604621b8 __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x606a21a3 param_ops_short -EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number -EXPORT_SYMBOL vmlinux 0x607ac358 inet6_register_protosw -EXPORT_SYMBOL vmlinux 0x6084067a mmc_get_card -EXPORT_SYMBOL vmlinux 0x608c3056 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector -EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x609f5b35 ucs2_strnlen -EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL vmlinux 0x60bb0567 abx500_event_registers_startup_state_get -EXPORT_SYMBOL vmlinux 0x60c14c16 generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x610aaa40 mempool_destroy -EXPORT_SYMBOL vmlinux 0x6114bcc3 submit_bio -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x61411e1d xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0x614bb773 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x614dd435 sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0x6150f810 thaw_bdev -EXPORT_SYMBOL vmlinux 0x61520529 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0x61581f00 i2c_master_recv -EXPORT_SYMBOL vmlinux 0x6163cfed sk_stream_error -EXPORT_SYMBOL vmlinux 0x61755766 blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0x618911fc numa_node -EXPORT_SYMBOL vmlinux 0x618cb5f8 vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0x618f5791 netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61d27998 tcp_req_err -EXPORT_SYMBOL vmlinux 0x61d45e70 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x61e2bcb8 devm_clk_get -EXPORT_SYMBOL vmlinux 0x61ef6170 __tracepoint_fence_emit -EXPORT_SYMBOL vmlinux 0x61f1da48 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0x61f9d6ec blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0x61fb248a node_states -EXPORT_SYMBOL vmlinux 0x62049256 acpi_disable -EXPORT_SYMBOL vmlinux 0x6207e9db pci_get_class -EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x6219e8fd seq_puts -EXPORT_SYMBOL vmlinux 0x6225637e md5_transform -EXPORT_SYMBOL vmlinux 0x6226b9fa machine_to_phys_mapping -EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x6237f6b5 acpi_enable_event -EXPORT_SYMBOL vmlinux 0x624ef0df sync_filesystem -EXPORT_SYMBOL vmlinux 0x6261a131 devm_ioremap -EXPORT_SYMBOL vmlinux 0x626cd5da set_user_nice -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x62748e70 acpi_set_current_resources -EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x62877a7a param_set_copystring -EXPORT_SYMBOL vmlinux 0x62892733 seq_read -EXPORT_SYMBOL vmlinux 0x62984843 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0x62a0c300 __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x62b79dc2 max8925_reg_read -EXPORT_SYMBOL vmlinux 0x62bfcf4c input_unregister_handler -EXPORT_SYMBOL vmlinux 0x62c0f737 inet_add_protocol -EXPORT_SYMBOL vmlinux 0x62e68dc2 ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0x62e6acb9 alloc_xenballooned_pages -EXPORT_SYMBOL vmlinux 0x62f3d8cc sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x62fef026 neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled -EXPORT_SYMBOL vmlinux 0x632259c7 vme_new_dma_list -EXPORT_SYMBOL vmlinux 0x6326e91f param_ops_string -EXPORT_SYMBOL vmlinux 0x63352dba kobject_del -EXPORT_SYMBOL vmlinux 0x636388f2 netlink_set_err -EXPORT_SYMBOL vmlinux 0x636a5691 acpi_register_ioapic -EXPORT_SYMBOL vmlinux 0x6388591c down_timeout -EXPORT_SYMBOL vmlinux 0x638b85b3 kmem_cache_create -EXPORT_SYMBOL vmlinux 0x63978157 netpoll_print_options -EXPORT_SYMBOL vmlinux 0x63a01291 acpi_leave_sleep_state_prep -EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63c1b2b3 input_grab_device -EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63d57a95 gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0x63e4f3c0 module_refcount -EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63ec5967 __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user -EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure -EXPORT_SYMBOL vmlinux 0x64045840 vlan_uses_dev -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x6426042d dst_alloc -EXPORT_SYMBOL vmlinux 0x643d1218 free_page_put_link -EXPORT_SYMBOL vmlinux 0x64445d94 devm_gpiod_put -EXPORT_SYMBOL vmlinux 0x6449c86b vme_dma_list_add -EXPORT_SYMBOL vmlinux 0x6449fd41 acpi_install_address_space_handler -EXPORT_SYMBOL vmlinux 0x645af28a bio_uncopy_user -EXPORT_SYMBOL vmlinux 0x645bbd5b udp_lib_get_port -EXPORT_SYMBOL vmlinux 0x64628d46 __get_user_pages -EXPORT_SYMBOL vmlinux 0x64754e64 generic_writepages -EXPORT_SYMBOL vmlinux 0x649661dd kill_pid -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x64ab0e98 wait_for_completion -EXPORT_SYMBOL vmlinux 0x64b18841 lock_rename -EXPORT_SYMBOL vmlinux 0x64b56adf genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape -EXPORT_SYMBOL vmlinux 0x64bbcb96 security_inode_init_security -EXPORT_SYMBOL vmlinux 0x64c82309 kfree_skb_list -EXPORT_SYMBOL vmlinux 0x64eae7ad set_memory_array_wb -EXPORT_SYMBOL vmlinux 0x64fa7693 __acpi_handle_debug -EXPORT_SYMBOL vmlinux 0x6500aae4 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x65127601 nf_afinfo -EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth -EXPORT_SYMBOL vmlinux 0x651a4139 test_taint -EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x655a7610 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x655e96e5 __tcf_hash_release -EXPORT_SYMBOL vmlinux 0x655f1ab0 set_memory_array_wc -EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem -EXPORT_SYMBOL vmlinux 0x6583c145 pci_read_vpd -EXPORT_SYMBOL vmlinux 0x659311ca vlan_vid_del -EXPORT_SYMBOL vmlinux 0x65988bdb blk_sync_queue -EXPORT_SYMBOL vmlinux 0x659f551c sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0x65b992ac xen_alloc_p2m_entry -EXPORT_SYMBOL vmlinux 0x65b9ba4c d_obtain_root -EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier -EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x65f45c67 give_up_console -EXPORT_SYMBOL vmlinux 0x661b27e4 param_ops_ushort -EXPORT_SYMBOL vmlinux 0x6627eb65 phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0x662849c3 netif_device_detach -EXPORT_SYMBOL vmlinux 0x662fe43f xfrm6_rcv_cb -EXPORT_SYMBOL vmlinux 0x6633eb86 xfrm_register_type -EXPORT_SYMBOL vmlinux 0x663f7cd0 acpi_install_table_handler -EXPORT_SYMBOL vmlinux 0x66421d4c nvm_dev_dma_free -EXPORT_SYMBOL vmlinux 0x6643f1d7 done_path_create -EXPORT_SYMBOL vmlinux 0x666dd8ed km_new_mapping -EXPORT_SYMBOL vmlinux 0x6682f090 dma_ops -EXPORT_SYMBOL vmlinux 0x668968ae __getblk_gfp -EXPORT_SYMBOL vmlinux 0x668d9075 f_setown -EXPORT_SYMBOL vmlinux 0x669cb1eb devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x66d804b1 percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0x66d9dc3d pcim_pin_device -EXPORT_SYMBOL vmlinux 0x66ddb081 blk_integrity_compare -EXPORT_SYMBOL vmlinux 0x66e13296 alloc_file -EXPORT_SYMBOL vmlinux 0x66e3abcb __sk_dst_check -EXPORT_SYMBOL vmlinux 0x66f0b186 i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0x6710b437 serio_interrupt -EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 -EXPORT_SYMBOL vmlinux 0x673adb8f security_path_mknod -EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges -EXPORT_SYMBOL vmlinux 0x674e3432 grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0x67588c4b udp_add_offload -EXPORT_SYMBOL vmlinux 0x675e7d25 copy_from_iter -EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create -EXPORT_SYMBOL vmlinux 0x677c6e3f param_set_uint -EXPORT_SYMBOL vmlinux 0x67870e6c tty_unthrottle -EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios -EXPORT_SYMBOL vmlinux 0x67b42e33 devm_free_irq -EXPORT_SYMBOL vmlinux 0x67b64f45 end_page_writeback -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67df016a mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0x67f3176f register_netdev -EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x680ec266 _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0x68113ba5 block_write_end -EXPORT_SYMBOL vmlinux 0x6818af26 devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x682eb91c devfreq_add_device -EXPORT_SYMBOL vmlinux 0x682f233f blk_queue_prep_rq -EXPORT_SYMBOL vmlinux 0x68593dad nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0x686fa40e padata_register_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x6870be21 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0x687498ab block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0x687a6927 eth_mac_addr -EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x6889bb3b thermal_cdev_update -EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages -EXPORT_SYMBOL vmlinux 0x68a41f46 truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0x68aa8225 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x68c6f95d i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0x68cd90a3 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x68e54f51 in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x68e7dc03 skb_insert -EXPORT_SYMBOL vmlinux 0x68fba4e7 con_set_default_unimap -EXPORT_SYMBOL vmlinux 0x68fc1453 vme_dma_list_free -EXPORT_SYMBOL vmlinux 0x69069b0a of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0x690dbb0e sock_init_data -EXPORT_SYMBOL vmlinux 0x691001b5 acpi_evaluate_integer -EXPORT_SYMBOL vmlinux 0x69101050 blk_rq_init -EXPORT_SYMBOL vmlinux 0x691f00a2 compat_ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x691f4308 pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x6920ff27 proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0x694f7ab8 dev_uc_unsync -EXPORT_SYMBOL vmlinux 0x695ef6fd unregister_shrinker -EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 -EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be -EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource -EXPORT_SYMBOL vmlinux 0x69ac37b8 fget_raw -EXPORT_SYMBOL vmlinux 0x69acdf38 memcpy -EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint -EXPORT_SYMBOL vmlinux 0x69c7495a generic_read_dir -EXPORT_SYMBOL vmlinux 0x69e14e18 blk_end_request_cur -EXPORT_SYMBOL vmlinux 0x69f58b80 update_region -EXPORT_SYMBOL vmlinux 0x69fbc0a2 acpi_get_event_resources -EXPORT_SYMBOL vmlinux 0x69fdcc75 pcim_enable_device -EXPORT_SYMBOL vmlinux 0x6a019173 inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a1bb82c lock_fb_info -EXPORT_SYMBOL vmlinux 0x6a241051 __register_chrdev -EXPORT_SYMBOL vmlinux 0x6a37d283 pagecache_write_end -EXPORT_SYMBOL vmlinux 0x6a50760e pci_lost_interrupt -EXPORT_SYMBOL vmlinux 0x6a521b45 genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x6a56fa56 __getblk_slow -EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask -EXPORT_SYMBOL vmlinux 0x6a60277d acpi_buffer_to_resource -EXPORT_SYMBOL vmlinux 0x6a6fb416 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0x6a7111fd tty_schedule_flip -EXPORT_SYMBOL vmlinux 0x6a712015 vfs_mkdir -EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable -EXPORT_SYMBOL vmlinux 0x6a854164 dquot_destroy -EXPORT_SYMBOL vmlinux 0x6aa3d37e fddi_type_trans -EXPORT_SYMBOL vmlinux 0x6aa7d8e1 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x6aab8f57 fb_set_var -EXPORT_SYMBOL vmlinux 0x6ab7088a mmc_hw_reset -EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be -EXPORT_SYMBOL vmlinux 0x6acc0abc pci_bus_put -EXPORT_SYMBOL vmlinux 0x6ad85887 acpi_enable_gpe -EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device -EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname -EXPORT_SYMBOL vmlinux 0x6b293266 nvm_unregister_mgr -EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b322697 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x6b4970de free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy -EXPORT_SYMBOL vmlinux 0x6b6ad27a devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x6b6d2d1a generic_setlease -EXPORT_SYMBOL vmlinux 0x6b74b9be bit_waitqueue -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bc6a1ed mount_bdev -EXPORT_SYMBOL vmlinux 0x6bcf066d _raw_read_lock_irq -EXPORT_SYMBOL vmlinux 0x6bd09013 icmpv6_send -EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x6bf1c17f pv_lock_ops -EXPORT_SYMBOL vmlinux 0x6bf7142b pci_restore_state -EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer -EXPORT_SYMBOL vmlinux 0x6c425a55 tcp_close -EXPORT_SYMBOL vmlinux 0x6c44bc15 neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x6c4732f5 __napi_schedule -EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat -EXPORT_SYMBOL vmlinux 0x6c52470e force_sig -EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min -EXPORT_SYMBOL vmlinux 0x6c71646b devm_gpiod_get_index_optional -EXPORT_SYMBOL vmlinux 0x6c8139a7 proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0x6c8751ad x86_hyper -EXPORT_SYMBOL vmlinux 0x6cb9a306 param_get_string -EXPORT_SYMBOL vmlinux 0x6cbb9f89 vfs_writef -EXPORT_SYMBOL vmlinux 0x6cc42aee proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x6cd0f9fe devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x6cd3c489 fb_set_suspend -EXPORT_SYMBOL vmlinux 0x6cd93c06 ata_dev_printk -EXPORT_SYMBOL vmlinux 0x6cf5740b __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x6cf79966 get_user_pages -EXPORT_SYMBOL vmlinux 0x6cf9b5f9 pnp_register_driver -EXPORT_SYMBOL vmlinux 0x6d094f8f blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x6d1ced0d jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x6d1d5d9b iosf_mbi_write -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d334118 __get_user_8 -EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x6d46e0f6 agp_generic_remove_memory -EXPORT_SYMBOL vmlinux 0x6d7b79bd pci_disable_link_state -EXPORT_SYMBOL vmlinux 0x6d899bff devm_ioport_map -EXPORT_SYMBOL vmlinux 0x6da83eef set_pages_array_wc -EXPORT_SYMBOL vmlinux 0x6dbeabcc passthru_features_check -EXPORT_SYMBOL vmlinux 0x6dc0c9dc down_interruptible -EXPORT_SYMBOL vmlinux 0x6dc6dd56 down -EXPORT_SYMBOL vmlinux 0x6dca5d13 inet_add_offload -EXPORT_SYMBOL vmlinux 0x6ddaf1c3 dev_uc_init -EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6df1f661 mmc_interrupt_hpi -EXPORT_SYMBOL vmlinux 0x6e10c99d lwtunnel_build_state -EXPORT_SYMBOL vmlinux 0x6e1ba9f6 generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x6e1f56ae xfrm_state_flush -EXPORT_SYMBOL vmlinux 0x6e261d17 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x6e332799 iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0x6e340ac3 nlmsg_notify -EXPORT_SYMBOL vmlinux 0x6e5a2467 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e766ad8 fsnotify_get_group -EXPORT_SYMBOL vmlinux 0x6e7f0fd2 cmdline_parts_parse -EXPORT_SYMBOL vmlinux 0x6e919422 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0x6e9c4191 debugfs_create_automount -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6eb6b990 nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0x6eba1157 touch_atime -EXPORT_SYMBOL vmlinux 0x6ec0843c blk_end_request_all -EXPORT_SYMBOL vmlinux 0x6ee76520 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0x6ee7bfc6 __elv_add_request -EXPORT_SYMBOL vmlinux 0x6ef66e8a _raw_read_lock_bh -EXPORT_SYMBOL vmlinux 0x6f055a1c vmap -EXPORT_SYMBOL vmlinux 0x6f1bf786 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash -EXPORT_SYMBOL vmlinux 0x6f20a7d5 bh_submit_read -EXPORT_SYMBOL vmlinux 0x6f2e4f46 __cond_resched_lock -EXPORT_SYMBOL vmlinux 0x6f45000b pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0x6f556bdb acpi_get_gpe_device -EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x6fb6f4a2 skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0x6fb74683 ps2_begin_command -EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag -EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fd129dd mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0x6fdebb62 mmc_detect_change -EXPORT_SYMBOL vmlinux 0x6feb2039 acpi_write -EXPORT_SYMBOL vmlinux 0x70098c2b filp_open -EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier -EXPORT_SYMBOL vmlinux 0x7029f11b iommu_tbl_pool_init -EXPORT_SYMBOL vmlinux 0x704c11ec clk_get -EXPORT_SYMBOL vmlinux 0x704c497d register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq -EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma -EXPORT_SYMBOL vmlinux 0x7058d16d skb_free_datagram -EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync -EXPORT_SYMBOL vmlinux 0x707b1723 posix_acl_valid -EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x708a79f7 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x7093b8b7 twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0x70960965 sock_create -EXPORT_SYMBOL vmlinux 0x70ae3163 bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x70c9d91d inet_dgram_ops -EXPORT_SYMBOL vmlinux 0x70d8ab82 acpi_acquire_global_lock -EXPORT_SYMBOL vmlinux 0x70df5e30 simple_follow_link -EXPORT_SYMBOL vmlinux 0x70e084f6 compat_ip_setsockopt -EXPORT_SYMBOL vmlinux 0x70e0e6b8 skb_copy_expand -EXPORT_SYMBOL vmlinux 0x70f14ee5 acpi_bus_get_device -EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match -EXPORT_SYMBOL vmlinux 0x710a696f qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x711bdafc splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0x711cc199 ppp_input_error -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x712cd169 dev_mc_sync -EXPORT_SYMBOL vmlinux 0x713a0f7b dev_queue_xmit -EXPORT_SYMBOL vmlinux 0x71424977 dmam_free_coherent -EXPORT_SYMBOL vmlinux 0x714de426 devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0x71544fec tc_classify -EXPORT_SYMBOL vmlinux 0x716947c7 dev_load -EXPORT_SYMBOL vmlinux 0x716bf61d pcie_get_mps -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x71777b28 napi_complete_done -EXPORT_SYMBOL vmlinux 0x717ed177 inode_add_rsv_space -EXPORT_SYMBOL vmlinux 0x71828a66 proc_dostring -EXPORT_SYMBOL vmlinux 0x719f9320 pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev -EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71b9f00f add_disk -EXPORT_SYMBOL vmlinux 0x71c85ccb tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x71cc0649 phy_read_mmd_indirect -EXPORT_SYMBOL vmlinux 0x71dc7068 down_read_trylock -EXPORT_SYMBOL vmlinux 0x71e5c774 __ethtool_get_settings -EXPORT_SYMBOL vmlinux 0x720023e3 netlink_broadcast -EXPORT_SYMBOL vmlinux 0x721b6770 iov_iter_npages -EXPORT_SYMBOL vmlinux 0x721dce62 sb_set_blocksize -EXPORT_SYMBOL vmlinux 0x72220176 cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x722c0dda kill_block_super -EXPORT_SYMBOL vmlinux 0x723a4a61 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x723e2827 xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x725fd887 nla_append -EXPORT_SYMBOL vmlinux 0x7271c00b file_ns_capable -EXPORT_SYMBOL vmlinux 0x7282b324 generic_block_bmap -EXPORT_SYMBOL vmlinux 0x72964b4f nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0x72a98fdb copy_user_generic_unrolled -EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma -EXPORT_SYMBOL vmlinux 0x72bc9767 iget_failed -EXPORT_SYMBOL vmlinux 0x72c896d4 pnp_disable_dev -EXPORT_SYMBOL vmlinux 0x72dc6c2b flow_cache_lookup -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config -EXPORT_SYMBOL vmlinux 0x732f49f0 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf -EXPORT_SYMBOL vmlinux 0x73483436 padata_do_serial -EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay -EXPORT_SYMBOL vmlinux 0x737ba853 sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0x738714db ida_pre_get -EXPORT_SYMBOL vmlinux 0x73a75cb5 ip_do_fragment -EXPORT_SYMBOL vmlinux 0x73b77930 dquot_transfer -EXPORT_SYMBOL vmlinux 0x73d5d5bc do_splice_from -EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable -EXPORT_SYMBOL vmlinux 0x73ee86fb pci_map_biosrom -EXPORT_SYMBOL vmlinux 0x74013bf6 dev_add_pack -EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi -EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x7442a66f icmp_send -EXPORT_SYMBOL vmlinux 0x744a8d12 dev_addr_init -EXPORT_SYMBOL vmlinux 0x745f20a3 idr_is_empty -EXPORT_SYMBOL vmlinux 0x74686cc8 d_invalidate -EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x749c0ac5 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x749f2dab deactivate_super -EXPORT_SYMBOL vmlinux 0x74b2f019 filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x74bbc8da jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74c60449 devm_memunmap -EXPORT_SYMBOL vmlinux 0x74cd2432 cros_ec_query_all -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74ecc4aa irq_to_desc -EXPORT_SYMBOL vmlinux 0x74f56fef __napi_complete -EXPORT_SYMBOL vmlinux 0x7504187b fbcon_rotate_ccw -EXPORT_SYMBOL vmlinux 0x75120a0b file_remove_privs -EXPORT_SYMBOL vmlinux 0x7512291c blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x7525a60d kobject_init -EXPORT_SYMBOL vmlinux 0x7531813e dup_iter -EXPORT_SYMBOL vmlinux 0x7532588a alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x7538b132 agp_off -EXPORT_SYMBOL vmlinux 0x7543038b netif_carrier_on -EXPORT_SYMBOL vmlinux 0x754d539c strlen -EXPORT_SYMBOL vmlinux 0x754d6dde dma_pool_create -EXPORT_SYMBOL vmlinux 0x75503d7e blk_mq_add_to_requeue_list -EXPORT_SYMBOL vmlinux 0x75639229 ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x75971167 seq_hex_dump -EXPORT_SYMBOL vmlinux 0x759cd198 do_splice_to -EXPORT_SYMBOL vmlinux 0x75bc549a x86_cpu_to_apicid -EXPORT_SYMBOL vmlinux 0x75bc9349 netif_carrier_off -EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc -EXPORT_SYMBOL vmlinux 0x75c30081 do_SAK -EXPORT_SYMBOL vmlinux 0x75c48d15 filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0x75c63459 ll_rw_block -EXPORT_SYMBOL vmlinux 0x75f3962a ps2_sendbyte -EXPORT_SYMBOL vmlinux 0x75fb9f2d bio_map_kern -EXPORT_SYMBOL vmlinux 0x75fbdefd acpi_remove_address_space_handler -EXPORT_SYMBOL vmlinux 0x75fcfece cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x7641faa8 km_state_expired -EXPORT_SYMBOL vmlinux 0x7645af6f sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x764bd77c request_resource -EXPORT_SYMBOL vmlinux 0x7657e923 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x7658a084 dm_register_target -EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x767618f0 tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x7676aed7 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0x767dd8fd acpi_get_irq_routing_table -EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc -EXPORT_SYMBOL vmlinux 0x768c8374 tcp_enter_memory_pressure -EXPORT_SYMBOL vmlinux 0x76bcb9fb kern_path_mountpoint -EXPORT_SYMBOL vmlinux 0x76bf314c nf_log_trace -EXPORT_SYMBOL vmlinux 0x76c71a6e agp_generic_type_to_mask_type -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint -EXPORT_SYMBOL vmlinux 0x76f4e944 dmam_alloc_coherent -EXPORT_SYMBOL vmlinux 0x76f63d89 dqput -EXPORT_SYMBOL vmlinux 0x76fb08a7 amd_iommu_unregister_ppr_notifier -EXPORT_SYMBOL vmlinux 0x7708743a __dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x77318858 scsi_print_sense -EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir -EXPORT_SYMBOL vmlinux 0x77572430 __invalidate_device -EXPORT_SYMBOL vmlinux 0x7757a2ef twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0x77753c77 mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll -EXPORT_SYMBOL vmlinux 0x77b41ba1 mmc_can_discard -EXPORT_SYMBOL vmlinux 0x77b852b9 __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77daf871 wake_up_process -EXPORT_SYMBOL vmlinux 0x77e0b0db single_open_size -EXPORT_SYMBOL vmlinux 0x77e44b52 twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0x77f53abc acpi_get_vendor_resource -EXPORT_SYMBOL vmlinux 0x780fdfd1 intel_enable_gtt -EXPORT_SYMBOL vmlinux 0x7839ca1f iov_iter_alignment -EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t -EXPORT_SYMBOL vmlinux 0x783be91f serio_open -EXPORT_SYMBOL vmlinux 0x783e2657 blk_mq_all_tag_busy_iter -EXPORT_SYMBOL vmlinux 0x78424403 vfs_readv -EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x784b498b kset_register -EXPORT_SYMBOL vmlinux 0x7862ff6a skb_checksum_help -EXPORT_SYMBOL vmlinux 0x78764f4e pv_irq_ops -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x788f19d1 unmap_underlying_metadata -EXPORT_SYMBOL vmlinux 0x78962e67 take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x789fa266 netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0x78a5ff8a fence_add_callback -EXPORT_SYMBOL vmlinux 0x78d6fa8f i8042_install_filter -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78e739aa up -EXPORT_SYMBOL vmlinux 0x78f99c24 scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0x78fff119 phy_set_max_speed -EXPORT_SYMBOL vmlinux 0x79068fda acpi_install_method -EXPORT_SYMBOL vmlinux 0x790acb68 netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0x791ed1c9 rename_lock -EXPORT_SYMBOL vmlinux 0x79250f8f fb_set_cmap -EXPORT_SYMBOL vmlinux 0x79256324 nf_unregister_hook -EXPORT_SYMBOL vmlinux 0x792e98f7 tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x796e1ca5 sync_inode -EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0x7984eefc key_update -EXPORT_SYMBOL vmlinux 0x7985d043 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x798851cf kernel_getpeername -EXPORT_SYMBOL vmlinux 0x798a2def d_instantiate_no_diralias -EXPORT_SYMBOL vmlinux 0x799e034f ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size -EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79b00955 bioset_free -EXPORT_SYMBOL vmlinux 0x79ba4cea km_query -EXPORT_SYMBOL vmlinux 0x79cd75ab blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0x7a00d3d1 PDE_DATA -EXPORT_SYMBOL vmlinux 0x7a0418a6 ipv4_specific -EXPORT_SYMBOL vmlinux 0x7a1e9736 param_get_byte -EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number -EXPORT_SYMBOL vmlinux 0x7a3aa34d skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x7a411a58 devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0x7a4497db kzfree -EXPORT_SYMBOL vmlinux 0x7a67e63a inet_listen -EXPORT_SYMBOL vmlinux 0x7a6cdedc do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7a70ba1f cfb_copyarea -EXPORT_SYMBOL vmlinux 0x7a8106e0 dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x7a81de0b udp_disconnect -EXPORT_SYMBOL vmlinux 0x7a82cb47 rdmsrl_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x7a90a34c jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7aa318b7 iget5_locked -EXPORT_SYMBOL vmlinux 0x7aadc66b con_copy_unimap -EXPORT_SYMBOL vmlinux 0x7ab73724 max8925_reg_write -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7abb19e5 page_follow_link_light -EXPORT_SYMBOL vmlinux 0x7abf7780 agp_enable -EXPORT_SYMBOL vmlinux 0x7ac80bc9 pci_bus_type -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7ad52c5a filemap_write_and_wait -EXPORT_SYMBOL vmlinux 0x7ad7654a vfs_link -EXPORT_SYMBOL vmlinux 0x7ae4f195 ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0x7aec9089 clear_user -EXPORT_SYMBOL vmlinux 0x7b061e76 mmc_can_reset -EXPORT_SYMBOL vmlinux 0x7b0ba006 read_cache_pages -EXPORT_SYMBOL vmlinux 0x7b16235f hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array -EXPORT_SYMBOL vmlinux 0x7b1b3532 md_check_recovery -EXPORT_SYMBOL vmlinux 0x7b2aef6c __krealloc -EXPORT_SYMBOL vmlinux 0x7b2bfaab nf_setsockopt -EXPORT_SYMBOL vmlinux 0x7b407a3c bio_clone_fast -EXPORT_SYMBOL vmlinux 0x7b45b3a8 mapping_tagged -EXPORT_SYMBOL vmlinux 0x7b47ed35 udp_seq_open -EXPORT_SYMBOL vmlinux 0x7b52a859 wrmsr_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x7b80ffd6 find_get_entry -EXPORT_SYMBOL vmlinux 0x7b91f554 scsi_host_put -EXPORT_SYMBOL vmlinux 0x7bad7a1a acpi_walk_resources -EXPORT_SYMBOL vmlinux 0x7bcb76c7 inet_bind -EXPORT_SYMBOL vmlinux 0x7be75ffc acpi_walk_resource_buffer -EXPORT_SYMBOL vmlinux 0x7c02c980 mmc_register_driver -EXPORT_SYMBOL vmlinux 0x7c0690ec netif_rx -EXPORT_SYMBOL vmlinux 0x7c1372e8 panic -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c2d098f krealloc -EXPORT_SYMBOL vmlinux 0x7c3a7a71 __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x7c3bc601 jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c55c030 poll_schedule_timeout -EXPORT_SYMBOL vmlinux 0x7c61340c __release_region -EXPORT_SYMBOL vmlinux 0x7c65e889 __pagevec_lru_add -EXPORT_SYMBOL vmlinux 0x7c7a5b17 vme_slave_request -EXPORT_SYMBOL vmlinux 0x7c7a747f km_policy_expired -EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read -EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down -EXPORT_SYMBOL vmlinux 0x7cc05f5b dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x7cc8a5e4 bitmap_unplug -EXPORT_SYMBOL vmlinux 0x7cda5dd1 blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7ce5f43f pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0x7ce83365 acpi_remove_table_handler -EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7cf8cfe7 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x7d00b177 truncate_pagecache -EXPORT_SYMBOL vmlinux 0x7d05775b scm_fp_dup -EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies -EXPORT_SYMBOL vmlinux 0x7d1285f3 tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x7d1755e2 tty_port_destroy -EXPORT_SYMBOL vmlinux 0x7d287136 neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x7d388291 remap_vmalloc_range_partial -EXPORT_SYMBOL vmlinux 0x7d499403 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug -EXPORT_SYMBOL vmlinux 0x7d71445d cpu_active_mask -EXPORT_SYMBOL vmlinux 0x7d805b2c sg_miter_stop -EXPORT_SYMBOL vmlinux 0x7d8a158d simple_transaction_get -EXPORT_SYMBOL vmlinux 0x7d94f746 acpi_os_write_port -EXPORT_SYMBOL vmlinux 0x7d96cea3 wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0x7db1fa6f kernel_read -EXPORT_SYMBOL vmlinux 0x7dbc2e57 mmiotrace_printk -EXPORT_SYMBOL vmlinux 0x7dc28fda eth_header_cache -EXPORT_SYMBOL vmlinux 0x7dc7c9aa blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x7dca3441 mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0x7dd12010 first_ec -EXPORT_SYMBOL vmlinux 0x7dd554fc unregister_kmmio_probe -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7df5e2b4 sock_create_lite -EXPORT_SYMBOL vmlinux 0x7e13a97c tcp_ioctl -EXPORT_SYMBOL vmlinux 0x7e4298c1 netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x7e5c35b1 gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0x7e6a9d98 noop_fsync -EXPORT_SYMBOL vmlinux 0x7e7665d9 vfs_fsync_range -EXPORT_SYMBOL vmlinux 0x7e7d0b41 netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0x7e7fc3fb __wake_up_bit -EXPORT_SYMBOL vmlinux 0x7e8f6a99 pnp_release_card_device -EXPORT_SYMBOL vmlinux 0x7ea723d7 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0x7eb8cc6b set_cached_acl -EXPORT_SYMBOL vmlinux 0x7ebd4be4 trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x7ed542ec netdev_change_features -EXPORT_SYMBOL vmlinux 0x7eda148c request_key_async -EXPORT_SYMBOL vmlinux 0x7eddbc34 led_update_brightness -EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x7efa6fce neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f1c3331 __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f263ed9 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x7f44a18d udp_del_offload -EXPORT_SYMBOL vmlinux 0x7f58c86d scsi_register_interface -EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done -EXPORT_SYMBOL vmlinux 0x7f65613f agp_generic_free_gatt_table -EXPORT_SYMBOL vmlinux 0x7f6a2911 __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0x7f726ec7 rtnl_create_link -EXPORT_SYMBOL vmlinux 0x7f80e7c3 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0x7f9b8452 copy_page_to_iter -EXPORT_SYMBOL vmlinux 0x7fa68b28 i2c_use_client -EXPORT_SYMBOL vmlinux 0x7fbd10d2 radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x7fc03e3b ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x7fcdf913 netif_skb_features -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fe38f48 sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x7ffa75d3 __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x80006a05 dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0x80343f25 inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0x803e9ecb security_path_symlink -EXPORT_SYMBOL vmlinux 0x805bda7d sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0x8068c15c kblockd_schedule_delayed_work -EXPORT_SYMBOL vmlinux 0x806a928b neigh_parms_release -EXPORT_SYMBOL vmlinux 0x80710217 __pagevec_release -EXPORT_SYMBOL vmlinux 0x80791a8c radix_tree_gang_lookup_slot -EXPORT_SYMBOL vmlinux 0x809388ca idr_destroy -EXPORT_SYMBOL vmlinux 0x80a84cf5 netlink_ack -EXPORT_SYMBOL vmlinux 0x80ad47fe inet6_offloads -EXPORT_SYMBOL vmlinux 0x80b6f806 ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0x80bf6d3e ppp_register_channel -EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80d38342 prepare_binprm -EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80e0b224 neigh_changeaddr -EXPORT_SYMBOL vmlinux 0x80e5b7a3 path_put -EXPORT_SYMBOL vmlinux 0x80e95046 xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x80eb423b acpi_get_object_info -EXPORT_SYMBOL vmlinux 0x8101b719 starget_for_each_device -EXPORT_SYMBOL vmlinux 0x810d939d phy_device_remove -EXPORT_SYMBOL vmlinux 0x81144f9d idr_find_slowpath -EXPORT_SYMBOL vmlinux 0x813f5e90 release_firmware -EXPORT_SYMBOL vmlinux 0x81472677 acpi_get_table -EXPORT_SYMBOL vmlinux 0x814b640b nd_device_register -EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy -EXPORT_SYMBOL vmlinux 0x81501592 blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x815417e1 intel_gmch_probe -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x815b72a3 kernel_connect -EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page -EXPORT_SYMBOL vmlinux 0x816b060d uart_update_timeout -EXPORT_SYMBOL vmlinux 0x81714ef2 dev_get_flags -EXPORT_SYMBOL vmlinux 0x8188dedc nvm_erase_blk -EXPORT_SYMBOL vmlinux 0x81ae7912 inode_set_bytes -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81ded06f abx500_get_register_page_interruptible -EXPORT_SYMBOL vmlinux 0x81e47d07 vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill -EXPORT_SYMBOL vmlinux 0x820ab6d3 dquot_commit_info -EXPORT_SYMBOL vmlinux 0x8212721d xenbus_dev_request_and_reply -EXPORT_SYMBOL vmlinux 0x821534bf pnp_unregister_card_driver -EXPORT_SYMBOL vmlinux 0x8217ac17 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0x821a71dc pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0x8233a501 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x823a3ba2 is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0x82458f7f radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x82487c1e mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0x824cb833 param_set_int -EXPORT_SYMBOL vmlinux 0x825bb9cc pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes -EXPORT_SYMBOL vmlinux 0x829534b3 fence_free -EXPORT_SYMBOL vmlinux 0x82a2922e jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched -EXPORT_SYMBOL vmlinux 0x82b09f08 tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x82b5618b tcp_splice_read -EXPORT_SYMBOL vmlinux 0x82df3184 devfreq_interval_update -EXPORT_SYMBOL vmlinux 0x82e8e5a7 setup_arg_pages -EXPORT_SYMBOL vmlinux 0x830e547b ioremap_prot -EXPORT_SYMBOL vmlinux 0x830ec29a keyring_clear -EXPORT_SYMBOL vmlinux 0x832c5763 nf_ct_attach -EXPORT_SYMBOL vmlinux 0x833c03aa acpi_enable_all_runtime_gpes -EXPORT_SYMBOL vmlinux 0x833e0df3 xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0x8344fae1 dma_supported -EXPORT_SYMBOL vmlinux 0x837d0d93 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0x83811b2a cfb_fillrect -EXPORT_SYMBOL vmlinux 0x8384647a acpi_map_pxm_to_online_node -EXPORT_SYMBOL vmlinux 0x838ecd08 skb_append -EXPORT_SYMBOL vmlinux 0x83933016 security_path_unlink -EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x83a06646 ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init -EXPORT_SYMBOL vmlinux 0x83b91192 lookup_bdev -EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83d322d7 from_kuid_munged -EXPORT_SYMBOL vmlinux 0x83d52eca dev_remove_pack -EXPORT_SYMBOL vmlinux 0x83de676e page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x83ffd3e6 unlink_framebuffer -EXPORT_SYMBOL vmlinux 0x84060081 xen_poll_irq_timeout -EXPORT_SYMBOL vmlinux 0x840ea353 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x8417f512 acpi_update_all_gpes -EXPORT_SYMBOL vmlinux 0x842b96a4 d_prune_aliases -EXPORT_SYMBOL vmlinux 0x844e3767 radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x84949da3 sock_edemux -EXPORT_SYMBOL vmlinux 0x84b7406a audit_log -EXPORT_SYMBOL vmlinux 0x84cab362 netpoll_cleanup -EXPORT_SYMBOL vmlinux 0x84cc4934 mutex_unlock -EXPORT_SYMBOL vmlinux 0x84ea2281 blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload -EXPORT_SYMBOL vmlinux 0x85037d57 handle_edge_irq -EXPORT_SYMBOL vmlinux 0x8507c383 proc_dointvec -EXPORT_SYMBOL vmlinux 0x850e6253 add_random_ready_callback -EXPORT_SYMBOL vmlinux 0x851cbdd3 backlight_force_update -EXPORT_SYMBOL vmlinux 0x8526c35a remove_wait_queue -EXPORT_SYMBOL vmlinux 0x852d49ee netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x855a163b nf_nat_decode_session_hook -EXPORT_SYMBOL vmlinux 0x855e4059 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x8573bcb4 netdev_printk -EXPORT_SYMBOL vmlinux 0x857582f7 acpi_enable_all_wakeup_gpes -EXPORT_SYMBOL vmlinux 0x857d9a07 tty_vhangup -EXPORT_SYMBOL vmlinux 0x858b3fe3 free_iova_mem -EXPORT_SYMBOL vmlinux 0x85ae6e16 __scsi_alloc_queue -EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85b623a4 nf_register_sockopt -EXPORT_SYMBOL vmlinux 0x85cbeba9 xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x8608d52f mem_cgroup_begin_page_stat -EXPORT_SYMBOL vmlinux 0x861e22a4 acpi_map_cpu -EXPORT_SYMBOL vmlinux 0x86388d60 input_close_device -EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x865d263c tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0x86675ce6 compat_tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x8672f47c d_lookup -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x869d8686 nvm_register_mgr -EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x86a6b430 gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0x86dfdfaa netlink_unicast -EXPORT_SYMBOL vmlinux 0x86e7630b blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0x86ed3253 follow_up -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x86fbad32 ab3100_event_register -EXPORT_SYMBOL vmlinux 0x8700d7ea pci_release_regions -EXPORT_SYMBOL vmlinux 0x87019326 inet_del_offload -EXPORT_SYMBOL vmlinux 0x8715cec0 __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags -EXPORT_SYMBOL vmlinux 0x871d14b5 pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0x872be722 start_tty -EXPORT_SYMBOL vmlinux 0x8768a50f register_xen_selfballooning -EXPORT_SYMBOL vmlinux 0x876dafc3 ec_write -EXPORT_SYMBOL vmlinux 0x8777fcf3 xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale -EXPORT_SYMBOL vmlinux 0x878cd015 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0x879a4201 pagecache_get_page -EXPORT_SYMBOL vmlinux 0x87aaddf8 wrmsr_safe_regs_on_cpu -EXPORT_SYMBOL vmlinux 0x87c59d21 cdrom_media_changed -EXPORT_SYMBOL vmlinux 0x87d76669 pci_enable_device -EXPORT_SYMBOL vmlinux 0x87e4e6f9 km_is_alive -EXPORT_SYMBOL vmlinux 0x87fcf45e blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0x881f9df0 pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0x8838cc9f vm_iomap_memory -EXPORT_SYMBOL vmlinux 0x8848e719 sk_dst_check -EXPORT_SYMBOL vmlinux 0x8849996d input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x8851092a phy_device_create -EXPORT_SYMBOL vmlinux 0x8865b865 x86_dma_fallback_dev -EXPORT_SYMBOL vmlinux 0x887fa47e __getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x88ebdcc2 seq_file_path -EXPORT_SYMBOL vmlinux 0x88f01dfb kill_fasync -EXPORT_SYMBOL vmlinux 0x8904ea46 sg_miter_skip -EXPORT_SYMBOL vmlinux 0x8915c870 key_payload_reserve -EXPORT_SYMBOL vmlinux 0x891bef26 vm_stat -EXPORT_SYMBOL vmlinux 0x8927d103 vga_client_register -EXPORT_SYMBOL vmlinux 0x892b26a0 set_memory_nx -EXPORT_SYMBOL vmlinux 0x89514462 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0x896319a4 bio_chain -EXPORT_SYMBOL vmlinux 0x8979985d dquot_file_open -EXPORT_SYMBOL vmlinux 0x897a48bf blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0x898c807d account_page_dirtied -EXPORT_SYMBOL vmlinux 0x89a8779b blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0x89aad437 pnp_start_dev -EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0x89b05a29 pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0x89beb114 __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x89cdb394 pci_dev_driver -EXPORT_SYMBOL vmlinux 0x89d0fb64 pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x89d718b6 ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0x89d774f3 phy_drivers_register -EXPORT_SYMBOL vmlinux 0x8a0b12c6 complete_all -EXPORT_SYMBOL vmlinux 0x8a10bedb i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies -EXPORT_SYMBOL vmlinux 0x8a1bd07e xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x8a2ded4a ps2_command -EXPORT_SYMBOL vmlinux 0x8a3f5aa1 acpi_processor_preregister_performance -EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning -EXPORT_SYMBOL vmlinux 0x8a615fe3 inet_frags_init -EXPORT_SYMBOL vmlinux 0x8a6944f9 percpu_counter_set -EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a80d7a5 acpi_error -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8a9bac6d crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0x8aad46b8 agp_alloc_bridge -EXPORT_SYMBOL vmlinux 0x8ab683ff release_pages -EXPORT_SYMBOL vmlinux 0x8afaebe7 nla_put -EXPORT_SYMBOL vmlinux 0x8b0df041 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0x8b2df58e keyring_alloc -EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last -EXPORT_SYMBOL vmlinux 0x8b3f5d19 phy_init_eee -EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x8b4c0a41 simple_dname -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b69e4e7 sock_update_memcg -EXPORT_SYMBOL vmlinux 0x8b77922b md_done_sync -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup -EXPORT_SYMBOL vmlinux 0x8bd3110c input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x8bdf9a0d get_task_exe_file -EXPORT_SYMBOL vmlinux 0x8bedf204 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0x8bfc9992 blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 -EXPORT_SYMBOL vmlinux 0x8c58209b xfrm6_prepare_output -EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x8c85a422 phy_ethtool_gset -EXPORT_SYMBOL vmlinux 0x8ca2846a mdio_bus_type -EXPORT_SYMBOL vmlinux 0x8caff949 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x8cb388cd dump_truncate -EXPORT_SYMBOL vmlinux 0x8cb5eaa9 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep -EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending -EXPORT_SYMBOL vmlinux 0x8ceb4a3c kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x8cf1b23f seq_escape -EXPORT_SYMBOL vmlinux 0x8cf9e18e mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0x8d408748 dst_init -EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d761529 inc_nlink -EXPORT_SYMBOL vmlinux 0x8d838d91 ida_remove -EXPORT_SYMBOL vmlinux 0x8d8d96c6 acpi_get_sleep_type_data -EXPORT_SYMBOL vmlinux 0x8d8e4e30 mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0x8d91b294 vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x8d973729 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0x8d9e46c7 tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0x8da1a3cb acpi_remove_interface -EXPORT_SYMBOL vmlinux 0x8daf8c42 dql_init -EXPORT_SYMBOL vmlinux 0x8dbf66ba inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0x8dc6ed14 phy_device_register -EXPORT_SYMBOL vmlinux 0x8df831b4 igrab -EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv -EXPORT_SYMBOL vmlinux 0x8e002cda acpi_remove_gpe_block -EXPORT_SYMBOL vmlinux 0x8e0090f7 unlock_buffer -EXPORT_SYMBOL vmlinux 0x8e09c60b jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0x8e0b9cee skb_pull -EXPORT_SYMBOL vmlinux 0x8e2d83b6 node_to_cpumask_map -EXPORT_SYMBOL vmlinux 0x8e31912b nf_register_net_hook -EXPORT_SYMBOL vmlinux 0x8e540f71 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x8e876e92 devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0x8e8a920b vfs_llseek -EXPORT_SYMBOL vmlinux 0x8e943449 dma_common_mmap -EXPORT_SYMBOL vmlinux 0x8ea9ecbe inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler -EXPORT_SYMBOL vmlinux 0x8ec00da7 ab3100_event_unregister -EXPORT_SYMBOL vmlinux 0x8eda51e8 put_tty_driver -EXPORT_SYMBOL vmlinux 0x8f0a34bf tty_register_driver -EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus -EXPORT_SYMBOL vmlinux 0x8f3d23bd blk_queue_invalidate_tags -EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 -EXPORT_SYMBOL vmlinux 0x8fc5e6a4 amd_iommu_flush_tlb -EXPORT_SYMBOL vmlinux 0x8fca9443 skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0x8fe59cef convert_art_to_tsc -EXPORT_SYMBOL vmlinux 0x900a354e skb_push -EXPORT_SYMBOL vmlinux 0x901923cd d_add_ci -EXPORT_SYMBOL vmlinux 0x901bee71 ps2_init -EXPORT_SYMBOL vmlinux 0x9023a30a __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x9025ab87 swiotlb_map_sg_attrs -EXPORT_SYMBOL vmlinux 0x9029526d arp_send -EXPORT_SYMBOL vmlinux 0x904409c6 acpi_set_firmware_waking_vector -EXPORT_SYMBOL vmlinux 0x904d8829 lwtunnel_encap_del_ops -EXPORT_SYMBOL vmlinux 0x907b5743 __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0x908575fe queued_write_lock_slowpath -EXPORT_SYMBOL vmlinux 0x9085d427 security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0x9090aeab phy_connect_direct -EXPORT_SYMBOL vmlinux 0x909cd727 xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0x90aab127 blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0x90c8432d pci_request_region_exclusive -EXPORT_SYMBOL vmlinux 0x90de527f __register_binfmt -EXPORT_SYMBOL vmlinux 0x90e9ee0f blk_queue_dma_pad -EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 -EXPORT_SYMBOL vmlinux 0x9159e1f3 tso_build_data -EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb -EXPORT_SYMBOL vmlinux 0x9164c5d2 __blk_end_request -EXPORT_SYMBOL vmlinux 0x9166fada strncpy -EXPORT_SYMBOL vmlinux 0x91715312 sprintf -EXPORT_SYMBOL vmlinux 0x91967e8e xen_selfballoon_init -EXPORT_SYMBOL vmlinux 0x9197d270 blk_run_queue_async -EXPORT_SYMBOL vmlinux 0x9198ea70 napi_gro_frags -EXPORT_SYMBOL vmlinux 0x91a2f0bf skb_copy -EXPORT_SYMBOL vmlinux 0x91a962db param_get_invbool -EXPORT_SYMBOL vmlinux 0x91ac822f vscnprintf -EXPORT_SYMBOL vmlinux 0x91b57f57 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x91ba4af3 tcp_proc_register -EXPORT_SYMBOL vmlinux 0x91d1e759 param_get_uint -EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 -EXPORT_SYMBOL vmlinux 0x9211dc64 scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0x9232d3b3 inet_ioctl -EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x925ed0e9 acpi_match_device_ids -EXPORT_SYMBOL vmlinux 0x926548fe copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x9274f1be compat_ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x927f21e9 pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user -EXPORT_SYMBOL vmlinux 0x929eaccc qdisc_list_add -EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm -EXPORT_SYMBOL vmlinux 0x92b1b014 netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0x92b6ff9c xfrm6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x92f4e215 scsi_register -EXPORT_SYMBOL vmlinux 0x92f6767f lg_local_lock -EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x931987e5 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0x932493a8 iosf_mbi_read -EXPORT_SYMBOL vmlinux 0x936357ed vfs_iter_write -EXPORT_SYMBOL vmlinux 0x936e4cb2 phy_attach -EXPORT_SYMBOL vmlinux 0x937245b8 inet6_bind -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x9386bc8f tcp_seq_open -EXPORT_SYMBOL vmlinux 0x938bb545 cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x93924672 i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0x9397056f tcp_init_cgroup -EXPORT_SYMBOL vmlinux 0x93aa8256 xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93b592e8 pci_add_new_bus -EXPORT_SYMBOL vmlinux 0x93d3feb5 simple_release_fs -EXPORT_SYMBOL vmlinux 0x93dafb66 xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0x93f3e52b acpi_extract_package -EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages -EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int -EXPORT_SYMBOL vmlinux 0x94133c2e nf_log_unset -EXPORT_SYMBOL vmlinux 0x945e4c33 input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x94793343 rwsem_down_read_failed -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x9497b4cb tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0x949e0e85 compat_sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x94b82bba bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0x94c63264 security_mmap_file -EXPORT_SYMBOL vmlinux 0x94e0da0b mark_page_accessed -EXPORT_SYMBOL vmlinux 0x94e91717 set_disk_ro -EXPORT_SYMBOL vmlinux 0x9500646e register_md_personality -EXPORT_SYMBOL vmlinux 0x950cb450 zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x950f416c xfrm_input -EXPORT_SYMBOL vmlinux 0x952253df pv_cpu_ops -EXPORT_SYMBOL vmlinux 0x9525e97f vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0x9537e6e4 register_gifconf -EXPORT_SYMBOL vmlinux 0x95395301 acpi_exception -EXPORT_SYMBOL vmlinux 0x953f6d1b cros_ec_prepare_tx -EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init -EXPORT_SYMBOL vmlinux 0x95536f33 pci_fixup_device -EXPORT_SYMBOL vmlinux 0x95953958 vga_switcheroo_get_client_state -EXPORT_SYMBOL vmlinux 0x959d1654 get_disk -EXPORT_SYMBOL vmlinux 0x95a52bec scsi_add_device -EXPORT_SYMBOL vmlinux 0x95bd6e26 acpi_install_sci_handler -EXPORT_SYMBOL vmlinux 0x95c869cc set_nlink -EXPORT_SYMBOL vmlinux 0x95d67ea4 seq_release_private -EXPORT_SYMBOL vmlinux 0x95e0c72d eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x95e68058 netdev_info -EXPORT_SYMBOL vmlinux 0x966181b6 d_set_d_op -EXPORT_SYMBOL vmlinux 0x9668c911 revalidate_disk -EXPORT_SYMBOL vmlinux 0x96719e06 freezing_slow_path -EXPORT_SYMBOL vmlinux 0x96820e82 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x96aba385 proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96fdd7f2 update_devfreq -EXPORT_SYMBOL vmlinux 0x970e23f9 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x9714f31e blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0x971d75ec md_register_thread -EXPORT_SYMBOL vmlinux 0x9728293f skb_dequeue -EXPORT_SYMBOL vmlinux 0x972e42e2 tcp_rcv_established -EXPORT_SYMBOL vmlinux 0x97316b3c inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier -EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x977ad4c3 swiotlb_map_sg -EXPORT_SYMBOL vmlinux 0x9783e990 inet_frags_exit_net -EXPORT_SYMBOL vmlinux 0x97868aef __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state -EXPORT_SYMBOL vmlinux 0x97a261cd generic_delete_inode -EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update -EXPORT_SYMBOL vmlinux 0x97bf4118 ppp_unit_number -EXPORT_SYMBOL vmlinux 0x97c5bd0a acpi_unload_parent_table -EXPORT_SYMBOL vmlinux 0x97c62eb6 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x97de0ddd acpi_install_gpe_block -EXPORT_SYMBOL vmlinux 0x97e43218 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x97f3644d mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0x97fd1cd5 may_umount -EXPORT_SYMBOL vmlinux 0x9800c529 phy_start_aneg -EXPORT_SYMBOL vmlinux 0x9810e545 compat_sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x98115f05 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x981b4e78 input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint -EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0x983c2856 vfs_symlink -EXPORT_SYMBOL vmlinux 0x98453a71 mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0x9847666e ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x984aeebc skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x98545ba1 pci_choose_state -EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x98726a0a put_io_context -EXPORT_SYMBOL vmlinux 0x987647f2 ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0x9878745c _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0x987b87db agp_collect_device_status -EXPORT_SYMBOL vmlinux 0x9884ee8d __get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x9887a6ba __pci_register_driver -EXPORT_SYMBOL vmlinux 0x988ed85d set_memory_x -EXPORT_SYMBOL vmlinux 0x98977507 nd_region_acquire_lane -EXPORT_SYMBOL vmlinux 0x989974aa __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x98c68c41 __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x98d590a8 get_empty_filp -EXPORT_SYMBOL vmlinux 0x99151d51 nf_log_unregister -EXPORT_SYMBOL vmlinux 0x9918b3a6 mpage_writepage -EXPORT_SYMBOL vmlinux 0x99195078 vsnprintf -EXPORT_SYMBOL vmlinux 0x992ebbce fifo_create_dflt -EXPORT_SYMBOL vmlinux 0x99330357 pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x993d1d75 iov_iter_advance -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x9957de4c elv_rq_merge_ok -EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x999f04a8 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x99a61460 blk_queue_start_tag -EXPORT_SYMBOL vmlinux 0x99c15fa9 napi_disable -EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering -EXPORT_SYMBOL vmlinux 0x99d0cc23 pci_assign_resource -EXPORT_SYMBOL vmlinux 0x99d3a43c dm_table_get_size -EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99f068d5 x86_cpu_to_node_map -EXPORT_SYMBOL vmlinux 0x9a0a932f default_llseek -EXPORT_SYMBOL vmlinux 0x9a1019b5 kobject_add -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval -EXPORT_SYMBOL vmlinux 0x9a2b9383 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x9a3d4d7a dm_ratelimit_state -EXPORT_SYMBOL vmlinux 0x9a537e91 unregister_console -EXPORT_SYMBOL vmlinux 0x9a7ca88c nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0x9a90ecaa dquot_free_inode -EXPORT_SYMBOL vmlinux 0x9aa0dfa6 send_sig -EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach -EXPORT_SYMBOL vmlinux 0x9af21d58 dget_parent -EXPORT_SYMBOL vmlinux 0x9afa039e lockref_mark_dead -EXPORT_SYMBOL vmlinux 0x9afce25e param_array_ops -EXPORT_SYMBOL vmlinux 0x9b1b823b call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0x9b2b3b9f block_write_full_page -EXPORT_SYMBOL vmlinux 0x9b2e936f generic_write_end -EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page -EXPORT_SYMBOL vmlinux 0x9b419d5d __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x9b7dfd88 cdrom_mode_select -EXPORT_SYMBOL vmlinux 0x9b8ff1ff put_filp -EXPORT_SYMBOL vmlinux 0x9b99d346 dm_put_device -EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x9ba146bf wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split -EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put -EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x9be94fe8 tty_port_init -EXPORT_SYMBOL vmlinux 0x9bee7ca1 alloc_pages_current -EXPORT_SYMBOL vmlinux 0x9bf76f86 udplite_prot -EXPORT_SYMBOL vmlinux 0x9bfc5a41 xfrm_garbage_collect -EXPORT_SYMBOL vmlinux 0x9c0bba54 touch_buffer -EXPORT_SYMBOL vmlinux 0x9c0ce26f blk_complete_request -EXPORT_SYMBOL vmlinux 0x9c2d947b nd_iostat_end -EXPORT_SYMBOL vmlinux 0x9c2fdb47 have_submounts -EXPORT_SYMBOL vmlinux 0x9c316e0b xfrm_lookup -EXPORT_SYMBOL vmlinux 0x9c35af58 mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0x9c431be1 skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0x9c47a6e0 __scm_destroy -EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x9c571c9e eth_change_mtu -EXPORT_SYMBOL vmlinux 0x9c7e2aae jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0x9c9075e5 kobject_get -EXPORT_SYMBOL vmlinux 0x9c99546f bio_integrity_trim -EXPORT_SYMBOL vmlinux 0x9c9ae98a inet_shutdown -EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cbce800 input_free_device -EXPORT_SYMBOL vmlinux 0x9cc75b3c pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0x9cd1963c put_disk -EXPORT_SYMBOL vmlinux 0x9cdd2011 __devcgroup_inode_permission -EXPORT_SYMBOL vmlinux 0x9cec246f security_inode_readlink -EXPORT_SYMBOL vmlinux 0x9cef9ecd security_d_instantiate -EXPORT_SYMBOL vmlinux 0x9cfa52c3 tcp_prequeue -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d33ef5e acpi_enable -EXPORT_SYMBOL vmlinux 0x9d3635fd proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init -EXPORT_SYMBOL vmlinux 0x9d796dc2 posix_acl_fix_xattr_userns -EXPORT_SYMBOL vmlinux 0x9d98dce8 xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x9da05e10 mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0x9dbe6fe0 filemap_fault -EXPORT_SYMBOL vmlinux 0x9dc28408 devm_gpio_request_one -EXPORT_SYMBOL vmlinux 0x9dc73d29 i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0x9dee8611 neigh_seq_start -EXPORT_SYMBOL vmlinux 0x9e098e2b cpu_sibling_map -EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e1d1352 tcp_parse_options -EXPORT_SYMBOL vmlinux 0x9e2f8c90 lz4_decompress_unknownoutputsize -EXPORT_SYMBOL vmlinux 0x9e363b6b acpi_disable_gpe -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read -EXPORT_SYMBOL vmlinux 0x9e71768c phy_connect -EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value -EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay -EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9eaf4194 dev_base_lock -EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource -EXPORT_SYMBOL vmlinux 0x9efbc495 devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0x9efc0094 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0x9f0e6a6c tcp_poll -EXPORT_SYMBOL vmlinux 0x9f1d80b9 pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x9f2572cf dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0x9f40dc8f swiotlb_unmap_sg -EXPORT_SYMBOL vmlinux 0x9f425c15 padata_alloc -EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f53a61a dquot_quotactl_ops -EXPORT_SYMBOL vmlinux 0x9f7668b7 scsi_execute -EXPORT_SYMBOL vmlinux 0x9f7c1be8 skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0x9f7cb98b follow_down -EXPORT_SYMBOL vmlinux 0x9f7ed191 pnp_request_card_device -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9fa36ea8 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x9fa3cf00 sk_ns_capable -EXPORT_SYMBOL vmlinux 0x9fa77dee write_inode_now -EXPORT_SYMBOL vmlinux 0x9fc54d09 dquot_release -EXPORT_SYMBOL vmlinux 0x9fc68c7c scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc -EXPORT_SYMBOL vmlinux 0x9fde0f06 generic_ro_fops -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9fe44c20 xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed -EXPORT_SYMBOL vmlinux 0xa0148827 inet6_add_offload -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa046d81c submit_bio_wait -EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xa05b5c8b save_mount_options -EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xa06774b0 dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0xa06ff399 unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr -EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init -EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa091ac02 ip_route_input_noref -EXPORT_SYMBOL vmlinux 0xa0a68daa ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0xa0a8f964 path_noexec -EXPORT_SYMBOL vmlinux 0xa0accaed to_nd_btt -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0c1c06b mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem -EXPORT_SYMBOL vmlinux 0xa0f7af14 devm_request_resource -EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa0ff55f6 iterate_supers_type -EXPORT_SYMBOL vmlinux 0xa0ff74d6 udp_memory_allocated -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts -EXPORT_SYMBOL vmlinux 0xa15a4059 __insert_inode_hash -EXPORT_SYMBOL vmlinux 0xa1611cf4 qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0xa1722a0c genphy_config_init -EXPORT_SYMBOL vmlinux 0xa183c2b3 skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0xa189b456 pci_iounmap -EXPORT_SYMBOL vmlinux 0xa18e34ec scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0xa1a8a72b pci_iomap -EXPORT_SYMBOL vmlinux 0xa1adc223 scsi_device_put -EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode -EXPORT_SYMBOL vmlinux 0xa1c28d19 bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched -EXPORT_SYMBOL vmlinux 0xa1dc0116 tcf_action_exec -EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create -EXPORT_SYMBOL vmlinux 0xa1df7798 md_cluster_mod -EXPORT_SYMBOL vmlinux 0xa202a8e5 kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0xa2043207 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold -EXPORT_SYMBOL vmlinux 0xa24010be crypto_sha512_update -EXPORT_SYMBOL vmlinux 0xa25d702d hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0xa293866a page_cache_prev_hole -EXPORT_SYMBOL vmlinux 0xa2a335bd vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0xa2b1f09b pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0xa2f7d132 module_layout -EXPORT_SYMBOL vmlinux 0xa30dea6d __lock_page -EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set -EXPORT_SYMBOL vmlinux 0xa32188f3 copy_to_iter -EXPORT_SYMBOL vmlinux 0xa32a2d4c keyring_search -EXPORT_SYMBOL vmlinux 0xa34cec84 neigh_for_each -EXPORT_SYMBOL vmlinux 0xa34fcb2d mempool_create_node -EXPORT_SYMBOL vmlinux 0xa350a8f8 set_memory_array_uc -EXPORT_SYMBOL vmlinux 0xa374ed7b abx500_mask_and_set_register_interruptible -EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get -EXPORT_SYMBOL vmlinux 0xa3a5ebb4 abx500_get_chip_id -EXPORT_SYMBOL vmlinux 0xa3b05bbd jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0xa3b9fbbb mfd_cell_enable -EXPORT_SYMBOL vmlinux 0xa3bb0418 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0xa3d39c67 devm_gpiod_get_index -EXPORT_SYMBOL vmlinux 0xa3e9e0f9 max8998_bulk_write -EXPORT_SYMBOL vmlinux 0xa4209d28 scsi_cmd_get_serial -EXPORT_SYMBOL vmlinux 0xa4511467 crc16 -EXPORT_SYMBOL vmlinux 0xa45ca001 blk_recount_segments -EXPORT_SYMBOL vmlinux 0xa468e6ec scsi_block_requests -EXPORT_SYMBOL vmlinux 0xa46b4060 tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset -EXPORT_SYMBOL vmlinux 0xa473bd76 tcp_filter -EXPORT_SYMBOL vmlinux 0xa47695f5 nvm_put_blk -EXPORT_SYMBOL vmlinux 0xa47ee108 swiotlb_sync_single_for_device -EXPORT_SYMBOL vmlinux 0xa49c1791 rt6_lookup -EXPORT_SYMBOL vmlinux 0xa4a76e76 dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0xa4af3f0c netif_napi_del -EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep -EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush -EXPORT_SYMBOL vmlinux 0xa4d825ba cfb_imageblit -EXPORT_SYMBOL vmlinux 0xa4eca6a8 cpu_all_bits -EXPORT_SYMBOL vmlinux 0xa50a80c2 boot_cpu_data -EXPORT_SYMBOL vmlinux 0xa522772a pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0xa52d9991 netdev_warn -EXPORT_SYMBOL vmlinux 0xa5524bb3 vlan_vid_add -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa56eff6f elv_rb_find -EXPORT_SYMBOL vmlinux 0xa57d9849 __page_symlink -EXPORT_SYMBOL vmlinux 0xa581e5f3 seq_dentry -EXPORT_SYMBOL vmlinux 0xa58cbbe5 shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0xa596fcac path_is_under -EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes -EXPORT_SYMBOL vmlinux 0xa5a51eee __crc32c_le -EXPORT_SYMBOL vmlinux 0xa5c35988 qdisc_reset -EXPORT_SYMBOL vmlinux 0xa5f266e1 unregister_netdev -EXPORT_SYMBOL vmlinux 0xa6087b53 proc_mkdir -EXPORT_SYMBOL vmlinux 0xa63322c6 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0xa6355a88 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember -EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa690692c compat_sock_get_timestampns -EXPORT_SYMBOL vmlinux 0xa6b21298 nf_log_set -EXPORT_SYMBOL vmlinux 0xa6bbd805 __wake_up -EXPORT_SYMBOL vmlinux 0xa6bd63ca acpi_bios_error -EXPORT_SYMBOL vmlinux 0xa6da470b rwsem_down_write_failed -EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function -EXPORT_SYMBOL vmlinux 0xa705a6f1 pci_dev_get -EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi -EXPORT_SYMBOL vmlinux 0xa710a59c tty_mutex -EXPORT_SYMBOL vmlinux 0xa7176a6b mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0xa72a0f5b nr_online_nodes -EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 -EXPORT_SYMBOL vmlinux 0xa74bcd62 rdmsr_on_cpus -EXPORT_SYMBOL vmlinux 0xa7671abb redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0xa76cbc65 __frontswap_test -EXPORT_SYMBOL vmlinux 0xa78653fc register_console -EXPORT_SYMBOL vmlinux 0xa788f1a0 i8253_lock -EXPORT_SYMBOL vmlinux 0xa78b954f migrate_page -EXPORT_SYMBOL vmlinux 0xa790b6b8 pcie_set_readrq -EXPORT_SYMBOL vmlinux 0xa7b6f085 inode_init_owner -EXPORT_SYMBOL vmlinux 0xa7e0ef7f bioset_integrity_create -EXPORT_SYMBOL vmlinux 0xa8136f87 sk_net_capable -EXPORT_SYMBOL vmlinux 0xa82232a8 jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0xa83495e4 netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa8693ed0 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0xa8721b97 system_state -EXPORT_SYMBOL vmlinux 0xa8a646e2 mpage_writepages -EXPORT_SYMBOL vmlinux 0xa8be8919 udp6_csum_init -EXPORT_SYMBOL vmlinux 0xa8e30ebd wait_iff_congested -EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send -EXPORT_SYMBOL vmlinux 0xa90ca647 textsearch_register -EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion -EXPORT_SYMBOL vmlinux 0xa916b694 strnlen -EXPORT_SYMBOL vmlinux 0xa9220a25 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0xa94d6bee mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0xa96e771e register_quota_format -EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa9780f06 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0xa9982baf iterate_dir -EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes -EXPORT_SYMBOL vmlinux 0xa99fe552 blk_free_tags -EXPORT_SYMBOL vmlinux 0xa9a3e187 i2c_del_driver -EXPORT_SYMBOL vmlinux 0xa9a8e17f arch_phys_wc_add -EXPORT_SYMBOL vmlinux 0xa9a9b72c bio_endio -EXPORT_SYMBOL vmlinux 0xa9b3368c md_wakeup_thread -EXPORT_SYMBOL vmlinux 0xa9bd2676 __vmalloc -EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0xa9cba14d dma_find_channel -EXPORT_SYMBOL vmlinux 0xa9d79480 tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0xa9df5c8f md_reload_sb -EXPORT_SYMBOL vmlinux 0xaa26cf6b nd_pfn_validate -EXPORT_SYMBOL vmlinux 0xaa36823a netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0xaa43057e dm_kobject_release -EXPORT_SYMBOL vmlinux 0xaa4cf5ef unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0xaa4e9ad4 netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0xaa5bd08d __pv_queued_spin_lock_slowpath -EXPORT_SYMBOL vmlinux 0xaa5dfd66 xfrm_init_replay -EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa7afbbb sock_kmalloc -EXPORT_SYMBOL vmlinux 0xaa7ca325 pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0xaa84859a pci_disable_msix -EXPORT_SYMBOL vmlinux 0xaa8d4d6e do_truncate -EXPORT_SYMBOL vmlinux 0xaa99acc0 __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0xaaa2bf11 phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0xaab65857 tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0xaad17c7d clk_add_alias -EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state -EXPORT_SYMBOL vmlinux 0xaae5f114 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable -EXPORT_SYMBOL vmlinux 0xaaeb8470 vm_insert_mixed -EXPORT_SYMBOL vmlinux 0xaaebbca0 blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0xab02a2c7 netlink_capable -EXPORT_SYMBOL vmlinux 0xab1e2d1f dquot_quota_off -EXPORT_SYMBOL vmlinux 0xab24ff4e pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0xab357da2 scsi_host_get -EXPORT_SYMBOL vmlinux 0xab551fad acpi_get_data_full -EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off -EXPORT_SYMBOL vmlinux 0xab65ed80 set_memory_uc -EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog -EXPORT_SYMBOL vmlinux 0xab770678 rdmsr_safe_regs_on_cpu -EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab7a26d8 copy_page_from_iter -EXPORT_SYMBOL vmlinux 0xab8e9154 blk_rq_set_block_pc -EXPORT_SYMBOL vmlinux 0xaba3159c gen_pool_destroy -EXPORT_SYMBOL vmlinux 0xabb7bb80 iov_iter_init -EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev -EXPORT_SYMBOL vmlinux 0xabe97e1b i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac261120 neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear -EXPORT_SYMBOL vmlinux 0xac6bc58a should_remove_suid -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacb99769 ida_destroy -EXPORT_SYMBOL vmlinux 0xacbf1af5 serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0xacc6ec77 agp_generic_create_gatt_table -EXPORT_SYMBOL vmlinux 0xacc76868 on_each_cpu_mask -EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xacf4ef4c dquot_enable -EXPORT_SYMBOL vmlinux 0xacf8d8fd kdb_current_task -EXPORT_SYMBOL vmlinux 0xad01744f kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad164875 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xad256a61 dev_mc_unsync -EXPORT_SYMBOL vmlinux 0xad2d0057 mdiobus_unregister -EXPORT_SYMBOL vmlinux 0xad4c7e8a nvm_dev_dma_alloc -EXPORT_SYMBOL vmlinux 0xad563a0c get_acl -EXPORT_SYMBOL vmlinux 0xad698f77 dqstats -EXPORT_SYMBOL vmlinux 0xad6e4bb6 mempool_free -EXPORT_SYMBOL vmlinux 0xad8189ff dentry_open -EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event -EXPORT_SYMBOL vmlinux 0xad99899c try_module_get -EXPORT_SYMBOL vmlinux 0xad9d74ec fifo_set_limit -EXPORT_SYMBOL vmlinux 0xada95166 d_instantiate_unique -EXPORT_SYMBOL vmlinux 0xadb5814b acpi_bus_get_status -EXPORT_SYMBOL vmlinux 0xadcc8494 xfrm_prepare_input -EXPORT_SYMBOL vmlinux 0xadd52a20 param_ops_bool -EXPORT_SYMBOL vmlinux 0xaddb9417 __remove_inode_hash -EXPORT_SYMBOL vmlinux 0xadf185fd pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae044bc7 panic_notifier_list -EXPORT_SYMBOL vmlinux 0xae295779 clkdev_alloc -EXPORT_SYMBOL vmlinux 0xae462fc7 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0xae712220 agp_generic_alloc_user -EXPORT_SYMBOL vmlinux 0xae86b4db bio_phys_segments -EXPORT_SYMBOL vmlinux 0xaea0fb5b input_register_handle -EXPORT_SYMBOL vmlinux 0xaea976a8 acpi_check_resource_conflict -EXPORT_SYMBOL vmlinux 0xaeb07f2e scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0xaeb0b408 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0xaeff1334 cros_ec_check_result -EXPORT_SYMBOL vmlinux 0xaf21c06b elevator_init -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf4ea59f gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0xaf611eac amd_nb_misc_ids -EXPORT_SYMBOL vmlinux 0xaf6ae696 kstrndup -EXPORT_SYMBOL vmlinux 0xaf7c8f09 __bread_gfp -EXPORT_SYMBOL vmlinux 0xaf95dcd7 nd_region_release_lane -EXPORT_SYMBOL vmlinux 0xafaed31b tty_name -EXPORT_SYMBOL vmlinux 0xafb8c6ff copy_user_generic_string -EXPORT_SYMBOL vmlinux 0xafc9f1da blk_put_request -EXPORT_SYMBOL vmlinux 0xafd5ff2c amd_iommu_v2_supported -EXPORT_SYMBOL vmlinux 0xafde12b7 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xafed6d2d mpage_readpages -EXPORT_SYMBOL vmlinux 0xaff94671 mmc_remove_host -EXPORT_SYMBOL vmlinux 0xb00e3600 pm860x_reg_read -EXPORT_SYMBOL vmlinux 0xb01b1db8 intel_gtt_insert_sg_entries -EXPORT_SYMBOL vmlinux 0xb021c0fc netpoll_setup -EXPORT_SYMBOL vmlinux 0xb02f2a66 vm_insert_page -EXPORT_SYMBOL vmlinux 0xb03870be mmc_gpio_request_ro -EXPORT_SYMBOL vmlinux 0xb040d190 migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0xb04be1d1 __frontswap_load -EXPORT_SYMBOL vmlinux 0xb0516953 task_tgid_nr_ns -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb091c118 xfrm_register_mode -EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0b3c270 tcf_hash_search -EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0xb0bf6140 ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0xb0bf8952 neigh_direct_output -EXPORT_SYMBOL vmlinux 0xb0d9fca0 inet_csk_accept -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0e602eb memmove -EXPORT_SYMBOL vmlinux 0xb0eb41ff iommu_tbl_range_free -EXPORT_SYMBOL vmlinux 0xb0ed328e fsnotify_put_mark -EXPORT_SYMBOL vmlinux 0xb101e530 vfs_readf -EXPORT_SYMBOL vmlinux 0xb11a9846 flow_cache_init -EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on -EXPORT_SYMBOL vmlinux 0xb12447ee bmap -EXPORT_SYMBOL vmlinux 0xb129a780 pcim_iounmap -EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb150ede7 tso_start -EXPORT_SYMBOL vmlinux 0xb152d87d cpu_possible_mask -EXPORT_SYMBOL vmlinux 0xb157fca3 pci_find_bus -EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xb15da329 pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table -EXPORT_SYMBOL vmlinux 0xb1693483 kill_litter_super -EXPORT_SYMBOL vmlinux 0xb187b3a8 lg_lock_init -EXPORT_SYMBOL vmlinux 0xb1a60b9a lwtunnel_input -EXPORT_SYMBOL vmlinux 0xb1b4cfc2 init_buffer -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1cc4faf i2c_del_adapter -EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xb1cfad22 rdmsr_on_cpu -EXPORT_SYMBOL vmlinux 0xb1d978fb uart_write_wakeup -EXPORT_SYMBOL vmlinux 0xb20441d6 cdev_init -EXPORT_SYMBOL vmlinux 0xb20ecf88 acpi_run_osc -EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu -EXPORT_SYMBOL vmlinux 0xb21eec20 scsi_host_set_state -EXPORT_SYMBOL vmlinux 0xb25a69fe ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0xb26cae12 led_blink_set_oneshot -EXPORT_SYMBOL vmlinux 0xb29144a9 scsi_host_lookup -EXPORT_SYMBOL vmlinux 0xb298e91c fd_install -EXPORT_SYMBOL vmlinux 0xb2ab3576 xfrm_state_add -EXPORT_SYMBOL vmlinux 0xb2b0aa49 vm_mmap -EXPORT_SYMBOL vmlinux 0xb2b0e4f0 vme_master_mmap -EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xb2d5a552 complete -EXPORT_SYMBOL vmlinux 0xb2e1645c pcie_get_minimum_link -EXPORT_SYMBOL vmlinux 0xb2f3bde9 compat_sock_get_timestamp -EXPORT_SYMBOL vmlinux 0xb2f74fb6 intel_gmch_remove -EXPORT_SYMBOL vmlinux 0xb2fb0f2f nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xb2fc0047 dm_io -EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 -EXPORT_SYMBOL vmlinux 0xb304d4c6 pcim_iomap_table -EXPORT_SYMBOL vmlinux 0xb308bd76 proc_symlink -EXPORT_SYMBOL vmlinux 0xb30fb736 bio_integrity_endio -EXPORT_SYMBOL vmlinux 0xb31e48a9 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0xb31e9a84 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0xb31fa8bd request_key -EXPORT_SYMBOL vmlinux 0xb3284531 acpi_dbg_layer -EXPORT_SYMBOL vmlinux 0xb32ae49d cad_pid -EXPORT_SYMBOL vmlinux 0xb33ffd1c mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0xb34f4670 nvm_dev_factory -EXPORT_SYMBOL vmlinux 0xb34f6a7d make_bad_inode -EXPORT_SYMBOL vmlinux 0xb3501133 unregister_nls -EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit -EXPORT_SYMBOL vmlinux 0xb36fe7c9 amd_iommu_device_info -EXPORT_SYMBOL vmlinux 0xb373d1d9 set_binfmt -EXPORT_SYMBOL vmlinux 0xb384871b vfs_read -EXPORT_SYMBOL vmlinux 0xb388a1a2 sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3f15558 simple_rmdir -EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb40ab368 vfs_iter_read -EXPORT_SYMBOL vmlinux 0xb40e33a7 bdget -EXPORT_SYMBOL vmlinux 0xb41b59df ip6_frag_init -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb4289223 devm_release_resource -EXPORT_SYMBOL vmlinux 0xb42af8d7 simple_write_end -EXPORT_SYMBOL vmlinux 0xb4320305 cros_ec_cmd_xfer_status -EXPORT_SYMBOL vmlinux 0xb43bc0ad proto_unregister -EXPORT_SYMBOL vmlinux 0xb4574947 nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0xb46c5c93 sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0xb47189b5 reservation_ww_class -EXPORT_SYMBOL vmlinux 0xb49a3342 mount_subtree -EXPORT_SYMBOL vmlinux 0xb4abeac1 jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0xb4bacf57 nd_namespace_blk_validate -EXPORT_SYMBOL vmlinux 0xb4c93385 generic_update_time -EXPORT_SYMBOL vmlinux 0xb4e8644d from_kprojid_munged -EXPORT_SYMBOL vmlinux 0xb5101b9e phy_device_free -EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range -EXPORT_SYMBOL vmlinux 0xb532e57f truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0xb53368fe scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0xb559c576 xfrm4_prepare_output -EXPORT_SYMBOL vmlinux 0xb55f0204 clear_wb_congested -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb5868e1d __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5b2ee1e xattr_full_name -EXPORT_SYMBOL vmlinux 0xb5b45184 sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free -EXPORT_SYMBOL vmlinux 0xb5dbd16a __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0xb5f59876 xfrm4_rcv_cb -EXPORT_SYMBOL vmlinux 0xb6064317 i2c_add_adapter -EXPORT_SYMBOL vmlinux 0xb6216a00 twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one -EXPORT_SYMBOL vmlinux 0xb66ec44b path_nosuid -EXPORT_SYMBOL vmlinux 0xb673c698 agp_allocate_memory -EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb68a356b scsi_is_host_device -EXPORT_SYMBOL vmlinux 0xb6905289 inet6_getname -EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb69ff3a9 seq_open -EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit -EXPORT_SYMBOL vmlinux 0xb6c1263c xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0xb6c7e02c fbcon_set_bitops -EXPORT_SYMBOL vmlinux 0xb6d13663 dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0xb6e4ea04 nf_hook_slow -EXPORT_SYMBOL vmlinux 0xb708dea0 i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0xb7163082 nvdimm_revalidate_disk -EXPORT_SYMBOL vmlinux 0xb7174995 vga_switcheroo_register_handler -EXPORT_SYMBOL vmlinux 0xb72a49ec inet6_ioctl -EXPORT_SYMBOL vmlinux 0xb73841c6 call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0xb7386804 set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0xb7391cdc mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0xb7468686 noop_qdisc -EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xb74a6787 kmalloc_dma_caches -EXPORT_SYMBOL vmlinux 0xb758b225 acpi_disable_event -EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb777e3e5 scsi_ioctl -EXPORT_SYMBOL vmlinux 0xb77b0348 set_pages_array_wb -EXPORT_SYMBOL vmlinux 0xb7853ebf inode_needs_sync -EXPORT_SYMBOL vmlinux 0xb7866bc8 pci_iomap_range -EXPORT_SYMBOL vmlinux 0xb79317f5 md_cluster_ops -EXPORT_SYMBOL vmlinux 0xb7abe8e8 ht_create_irq -EXPORT_SYMBOL vmlinux 0xb7adce88 vga_switcheroo_client_fb_set -EXPORT_SYMBOL vmlinux 0xb7b4d01b from_kgid_munged -EXPORT_SYMBOL vmlinux 0xb7c4ac9b mb_cache_shrink -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7d5d8c9 pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0xb7e70e8d d_instantiate -EXPORT_SYMBOL vmlinux 0xb80dc9c6 security_path_rename -EXPORT_SYMBOL vmlinux 0xb8131099 param_set_invbool -EXPORT_SYMBOL vmlinux 0xb8260889 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0xb83b003b register_filesystem -EXPORT_SYMBOL vmlinux 0xb84836f9 input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0xb84ade04 bio_add_page -EXPORT_SYMBOL vmlinux 0xb85725f6 simple_transaction_read -EXPORT_SYMBOL vmlinux 0xb85f3e85 input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0xb8646b93 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 -EXPORT_SYMBOL vmlinux 0xb89d927c dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0xb8b5252c compat_nf_getsockopt -EXPORT_SYMBOL vmlinux 0xb8b6a76c __percpu_counter_add -EXPORT_SYMBOL vmlinux 0xb8ba117f kfree_put_link -EXPORT_SYMBOL vmlinux 0xb8d13f9a bdi_register -EXPORT_SYMBOL vmlinux 0xb8e22bed generic_readlink -EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 -EXPORT_SYMBOL vmlinux 0xb8f32c57 md_flush_request -EXPORT_SYMBOL vmlinux 0xb8fdcd10 mempool_resize -EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory -EXPORT_SYMBOL vmlinux 0xb91e0e3e find_vma -EXPORT_SYMBOL vmlinux 0xb92592ee pci_scan_bridge -EXPORT_SYMBOL vmlinux 0xb92ababc devm_kvasprintf -EXPORT_SYMBOL vmlinux 0xb931e61f setattr_copy -EXPORT_SYMBOL vmlinux 0xb93b739e ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0xb94c5cb6 alloc_buffer_head -EXPORT_SYMBOL vmlinux 0xb977b9e3 read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0xb981c3f7 elv_rb_add -EXPORT_SYMBOL vmlinux 0xb990e6b8 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0xb9ab786b blk_queue_free_tags -EXPORT_SYMBOL vmlinux 0xb9ce618e ihold -EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xba0874f7 loop_backing_file -EXPORT_SYMBOL vmlinux 0xba0baaba netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0xba13fd74 neigh_destroy -EXPORT_SYMBOL vmlinux 0xba1a9b2d request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0xba1f0da4 stop_tty -EXPORT_SYMBOL vmlinux 0xba2d8594 ec_read -EXPORT_SYMBOL vmlinux 0xba35e0e1 dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba5597bb dev_get_by_index -EXPORT_SYMBOL vmlinux 0xba656265 skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0xba8c1f91 unregister_quota_format -EXPORT_SYMBOL vmlinux 0xbaa18d6a current_in_userns -EXPORT_SYMBOL vmlinux 0xbadaec7c sock_cmsg_send -EXPORT_SYMBOL vmlinux 0xbae79c54 alloc_fddidev -EXPORT_SYMBOL vmlinux 0xbae8fef3 dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb0cfbe5 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0xbb281158 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0xbb34134a iov_shorten -EXPORT_SYMBOL vmlinux 0xbb344cf6 dentry_needs_remove_privs -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb4eafd4 vga_switcheroo_register_audio_client -EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xbb6daafb dmam_pool_create -EXPORT_SYMBOL vmlinux 0xbb7689cb blk_run_queue -EXPORT_SYMBOL vmlinux 0xbb777421 pagevec_lookup_tag -EXPORT_SYMBOL vmlinux 0xbb87b4e0 fsync_bdev -EXPORT_SYMBOL vmlinux 0xbb91f3df padata_add_cpu -EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font -EXPORT_SYMBOL vmlinux 0xbba70a2d _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0xbbaa56ad tcp_read_sock -EXPORT_SYMBOL vmlinux 0xbbaeb559 memcg_socket_limit_enabled -EXPORT_SYMBOL vmlinux 0xbbb1dd26 xfrm4_rcv -EXPORT_SYMBOL vmlinux 0xbbbea25f __ht_create_irq -EXPORT_SYMBOL vmlinux 0xbbeb1ec6 ioremap_wt -EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit -EXPORT_SYMBOL vmlinux 0xbc474077 __devm_release_region -EXPORT_SYMBOL vmlinux 0xbc601aa5 simple_transaction_set -EXPORT_SYMBOL vmlinux 0xbc7f6d70 scsi_rescan_device -EXPORT_SYMBOL vmlinux 0xbc8f6c73 uart_add_one_port -EXPORT_SYMBOL vmlinux 0xbc952b5e mmc_request_done -EXPORT_SYMBOL vmlinux 0xbcb0ae2d tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0xbcbed672 lock_sock_nested -EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user -EXPORT_SYMBOL vmlinux 0xbcc4cb7a bitmap_endwrite -EXPORT_SYMBOL vmlinux 0xbcd4615b skb_queue_head -EXPORT_SYMBOL vmlinux 0xbcda89d3 blk_finish_request -EXPORT_SYMBOL vmlinux 0xbcfc8754 bio_put -EXPORT_SYMBOL vmlinux 0xbd01250c mount_single -EXPORT_SYMBOL vmlinux 0xbd07052b sync_inodes_sb -EXPORT_SYMBOL vmlinux 0xbd13bab2 __nla_reserve -EXPORT_SYMBOL vmlinux 0xbd1bbd98 set_pages_wb -EXPORT_SYMBOL vmlinux 0xbd1fb265 input_unregister_device -EXPORT_SYMBOL vmlinux 0xbd225d83 vga_tryget -EXPORT_SYMBOL vmlinux 0xbd3fa5de abx500_startup_irq_enabled -EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init -EXPORT_SYMBOL vmlinux 0xbd532598 max8998_update_reg -EXPORT_SYMBOL vmlinux 0xbd573d7b param_ops_int -EXPORT_SYMBOL vmlinux 0xbd6d79f1 __tracepoint_fence_annotate_wait_on -EXPORT_SYMBOL vmlinux 0xbd6e9230 phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0xbd7d9ecd freeze_bdev -EXPORT_SYMBOL vmlinux 0xbd870e54 md_set_array_sectors -EXPORT_SYMBOL vmlinux 0xbd8c5310 pipe_unlock -EXPORT_SYMBOL vmlinux 0xbd8f38ed ata_std_end_eh -EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug -EXPORT_SYMBOL vmlinux 0xbd9142aa __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0xbdaf5b07 acpi_os_read_port -EXPORT_SYMBOL vmlinux 0xbdb7af15 pci_find_capability -EXPORT_SYMBOL vmlinux 0xbdbb3c4d blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0xbdc79c70 mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0xbde8e787 __inode_add_bytes -EXPORT_SYMBOL vmlinux 0xbdfb6dbb __fentry__ -EXPORT_SYMBOL vmlinux 0xbe15b4c2 jbd2_journal_start -EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto -EXPORT_SYMBOL vmlinux 0xbe485978 input_allocate_device -EXPORT_SYMBOL vmlinux 0xbe4be9a5 sock_no_ioctl -EXPORT_SYMBOL vmlinux 0xbe4f0744 __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0xbe6bf9ae inet_frags_fini -EXPORT_SYMBOL vmlinux 0xbe812f44 unlock_page -EXPORT_SYMBOL vmlinux 0xbeafa047 free_user_ns -EXPORT_SYMBOL vmlinux 0xbeb58614 __check_sticky -EXPORT_SYMBOL vmlinux 0xbebcf3df textsearch_prepare -EXPORT_SYMBOL vmlinux 0xbebfbd93 i2c_register_driver -EXPORT_SYMBOL vmlinux 0xbec30d05 x86_match_cpu -EXPORT_SYMBOL vmlinux 0xbee95e7f __inode_permission -EXPORT_SYMBOL vmlinux 0xbef1af26 padata_free -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbf179706 loop_register_transfer -EXPORT_SYMBOL vmlinux 0xbf3001f7 console_stop -EXPORT_SYMBOL vmlinux 0xbf3f9f3b blk_delay_queue -EXPORT_SYMBOL vmlinux 0xbf4561bc wait_on_page_bit -EXPORT_SYMBOL vmlinux 0xbf53f62c netdev_crit -EXPORT_SYMBOL vmlinux 0xbf5a7e78 kfree_skb_partial -EXPORT_SYMBOL vmlinux 0xbf73e316 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0xbf7c1970 amd_iommu_domain_set_gcr3 -EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk -EXPORT_SYMBOL vmlinux 0xbf923896 registered_fb -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfae5f25 fixed_size_llseek -EXPORT_SYMBOL vmlinux 0xbfb826b1 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0xbfbdc9cf key_task_permission -EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep -EXPORT_SYMBOL vmlinux 0xbfc6f77f jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0xbfdab23a gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0xbfdb825c bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0xbfde1b5e neigh_app_ns -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xbff9a02a acpi_pm_device_sleep_state -EXPORT_SYMBOL vmlinux 0xc00827b1 dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0xc012cfaa nf_register_hooks -EXPORT_SYMBOL vmlinux 0xc025849f mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0xc0328a5f sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0xc0437b21 mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0xc047d9f8 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0xc05e355f idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xc0613f1a d_drop -EXPORT_SYMBOL vmlinux 0xc06e0132 __break_lease -EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write -EXPORT_SYMBOL vmlinux 0xc091240e iov_iter_kvec -EXPORT_SYMBOL vmlinux 0xc092121e inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit -EXPORT_SYMBOL vmlinux 0xc0aea0a2 tcf_unregister_action -EXPORT_SYMBOL vmlinux 0xc0cd3b13 ___ratelimit -EXPORT_SYMBOL vmlinux 0xc0d8f50a devm_memremap -EXPORT_SYMBOL vmlinux 0xc0da607f dcache_dir_open -EXPORT_SYMBOL vmlinux 0xc0e27964 ip6_frag_match -EXPORT_SYMBOL vmlinux 0xc0f79f13 jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0xc15a44c6 memzero_explicit -EXPORT_SYMBOL vmlinux 0xc17f47d3 clear_nlink -EXPORT_SYMBOL vmlinux 0xc1d144b1 netdev_emerg -EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla -EXPORT_SYMBOL vmlinux 0xc1f8be0f security_path_chown -EXPORT_SYMBOL vmlinux 0xc2002b1f param_get_int -EXPORT_SYMBOL vmlinux 0xc212449d tty_set_operations -EXPORT_SYMBOL vmlinux 0xc2133bb2 clkdev_drop -EXPORT_SYMBOL vmlinux 0xc21d867b dev_activate -EXPORT_SYMBOL vmlinux 0xc2343065 neigh_xmit -EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup -EXPORT_SYMBOL vmlinux 0xc25c5473 param_set_bint -EXPORT_SYMBOL vmlinux 0xc277280a __mutex_init -EXPORT_SYMBOL vmlinux 0xc27bf2a9 dquot_quota_on -EXPORT_SYMBOL vmlinux 0xc29bf967 strspn -EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xc2b68e70 alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0xc2be817a tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0xc2c49b2f agp_backend_acquire -EXPORT_SYMBOL vmlinux 0xc2d5206c md_unregister_thread -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2f35962 neigh_ifdown -EXPORT_SYMBOL vmlinux 0xc301a80b dmam_free_noncoherent -EXPORT_SYMBOL vmlinux 0xc310b981 strnstr -EXPORT_SYMBOL vmlinux 0xc350b4eb wrmsr_on_cpus -EXPORT_SYMBOL vmlinux 0xc3844c65 __skb_get_hash_flowi4 -EXPORT_SYMBOL vmlinux 0xc39703fc tty_port_close_start -EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 -EXPORT_SYMBOL vmlinux 0xc3b8366a xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0xc3b9e439 dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0xc3d743a6 dump_trace -EXPORT_SYMBOL vmlinux 0xc42b87a0 dev_get_nest_level -EXPORT_SYMBOL vmlinux 0xc43051c2 blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0xc4314243 set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0xc442ad94 mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xc461400a file_open_root -EXPORT_SYMBOL vmlinux 0xc462e907 blk_init_queue -EXPORT_SYMBOL vmlinux 0xc48307db lz4_decompress -EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup -EXPORT_SYMBOL vmlinux 0xc49ff6e0 tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0xc4b2861c __dquot_free_space -EXPORT_SYMBOL vmlinux 0xc4b407d3 generic_getxattr -EXPORT_SYMBOL vmlinux 0xc4d25c23 blk_queue_end_tag -EXPORT_SYMBOL vmlinux 0xc4dd951b __secpath_destroy -EXPORT_SYMBOL vmlinux 0xc4f331c6 cpu_online_mask -EXPORT_SYMBOL vmlinux 0xc5019a57 file_update_time -EXPORT_SYMBOL vmlinux 0xc503f0d0 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0xc5137552 x86_bios_cpu_apicid -EXPORT_SYMBOL vmlinux 0xc54852c8 mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 -EXPORT_SYMBOL vmlinux 0xc558530d profile_pc -EXPORT_SYMBOL vmlinux 0xc563cae3 __starget_for_each_device -EXPORT_SYMBOL vmlinux 0xc58b2909 replace_mount_options -EXPORT_SYMBOL vmlinux 0xc58e537e pci_save_state -EXPORT_SYMBOL vmlinux 0xc59994fc jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc5a09e93 input_unregister_handle -EXPORT_SYMBOL vmlinux 0xc5a5aaf6 elv_dispatch_sort -EXPORT_SYMBOL vmlinux 0xc5aaa1c4 iunique -EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot -EXPORT_SYMBOL vmlinux 0xc5dc9ca7 d_find_any_alias -EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xc611af5f __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0xc6187c52 vme_bus_num -EXPORT_SYMBOL vmlinux 0xc62cb79d scsi_remove_host -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc6373608 blk_rq_map_user -EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes -EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif -EXPORT_SYMBOL vmlinux 0xc6772da2 radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0xc6b368d3 acpi_gpe_count -EXPORT_SYMBOL vmlinux 0xc6b811ce security_dentry_init_security -EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6dbca14 agp_create_memory -EXPORT_SYMBOL vmlinux 0xc6ef4dc9 iterate_fd -EXPORT_SYMBOL vmlinux 0xc6f6e7a2 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0xc710835e follow_pfn -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc74ab3b7 lookup_one_len -EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass -EXPORT_SYMBOL vmlinux 0xc756a23c set_device_ro -EXPORT_SYMBOL vmlinux 0xc7591cf0 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0xc759c2bb netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0xc760b804 pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0xc764baf3 simple_write_begin -EXPORT_SYMBOL vmlinux 0xc76758e9 generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0xc76f777c scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0xc7717b1d acpi_processor_register_performance -EXPORT_SYMBOL vmlinux 0xc77709a5 bio_init -EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc7874fef __devm_request_region -EXPORT_SYMBOL vmlinux 0xc78bf8d1 vme_lm_request -EXPORT_SYMBOL vmlinux 0xc79726c4 generic_pipe_buf_steal -EXPORT_SYMBOL vmlinux 0xc79bb4cb gen_pool_alloc -EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc -EXPORT_SYMBOL vmlinux 0xc79e2766 tcf_hash_check -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7c4daac rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0xc7dcad90 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc7dd3675 clk_register_clkdevs -EXPORT_SYMBOL vmlinux 0xc7f2892f sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0xc7fcc5bf acpi_resource_to_address64 -EXPORT_SYMBOL vmlinux 0xc7ff410e input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0xc80022f7 dev_addr_flush -EXPORT_SYMBOL vmlinux 0xc8061392 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0xc8188098 md_finish_reshape -EXPORT_SYMBOL vmlinux 0xc83612b5 iov_iter_fault_in_readable -EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0xc83f5cfc cmdline_parts_find -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc84c1744 sock_from_file -EXPORT_SYMBOL vmlinux 0xc84cf74e iterate_mounts -EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc88097ac udp_proc_register -EXPORT_SYMBOL vmlinux 0xc88d855a compat_tcp_setsockopt -EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table -EXPORT_SYMBOL vmlinux 0xc89b5b6c vme_irq_handler -EXPORT_SYMBOL vmlinux 0xc8a1a466 skb_queue_tail -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xc8bf764a mmc_put_card -EXPORT_SYMBOL vmlinux 0xc8c30646 mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0xc8f4319c devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0xc8f7d7fd complete_request_key -EXPORT_SYMBOL vmlinux 0xc8fae136 dma_sync_wait -EXPORT_SYMBOL vmlinux 0xc8fd8c34 scsi_remove_device -EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen -EXPORT_SYMBOL vmlinux 0xc93257b8 dev_warn -EXPORT_SYMBOL vmlinux 0xc935635a empty_aops -EXPORT_SYMBOL vmlinux 0xc95d80cc dput -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc96c635d neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xc96f7d56 generic_pipe_buf_confirm -EXPORT_SYMBOL vmlinux 0xc978479a xz_dec_run -EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc99f6aae dma_spin_lock -EXPORT_SYMBOL vmlinux 0xc9a76a9c vfs_writev -EXPORT_SYMBOL vmlinux 0xc9f2c7bc pnp_possible_config -EXPORT_SYMBOL vmlinux 0xc9f68e4e blk_fetch_request -EXPORT_SYMBOL vmlinux 0xc9fef317 add_wait_queue -EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy -EXPORT_SYMBOL vmlinux 0xca15b550 mfd_add_devices -EXPORT_SYMBOL vmlinux 0xca27b8f1 simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0xca3f7b58 swiotlb_dma_supported -EXPORT_SYMBOL vmlinux 0xca54f440 dev_get_by_name -EXPORT_SYMBOL vmlinux 0xca5ee09a vme_free_consistent -EXPORT_SYMBOL vmlinux 0xca6b1d90 blk_stop_queue -EXPORT_SYMBOL vmlinux 0xca79ce6a mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0xca832efe kmalloc_order -EXPORT_SYMBOL vmlinux 0xca8acc78 acpi_dbg_level -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xcab0b24f scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0xcab0c6bc phy_stop -EXPORT_SYMBOL vmlinux 0xcab3a729 audit_log_start -EXPORT_SYMBOL vmlinux 0xcac3a500 msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0xcac45f51 kthread_bind -EXPORT_SYMBOL vmlinux 0xcad3390d phy_find_first -EXPORT_SYMBOL vmlinux 0xcade9a54 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0xcaebc428 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb19f9a5 __dst_free -EXPORT_SYMBOL vmlinux 0xcb2affb8 to_ndd -EXPORT_SYMBOL vmlinux 0xcb307656 bdgrab -EXPORT_SYMBOL vmlinux 0xcb4cedaf inet_dgram_connect -EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power -EXPORT_SYMBOL vmlinux 0xcb903326 pnp_get_resource -EXPORT_SYMBOL vmlinux 0xcb936989 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0xcb9a7387 __page_cache_alloc -EXPORT_SYMBOL vmlinux 0xcba23e8b dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0xcba4f488 send_sig_info -EXPORT_SYMBOL vmlinux 0xcbae6c7a acpi_lid_notifier_unregister -EXPORT_SYMBOL vmlinux 0xcbb07ed2 textsearch_destroy -EXPORT_SYMBOL vmlinux 0xcbb32e70 nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0xcbe22c2d ___pskb_trim -EXPORT_SYMBOL vmlinux 0xcc246306 tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc3f7b65 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0xcc4c5a83 lease_get_mtime -EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc61622c mmc_can_sanitize -EXPORT_SYMBOL vmlinux 0xcc65ee2a dev_driver_string -EXPORT_SYMBOL vmlinux 0xcc671622 mmc_stop_bkops -EXPORT_SYMBOL vmlinux 0xcc82add3 _raw_read_lock_irqsave -EXPORT_SYMBOL vmlinux 0xcc838223 __pte2cachemode_tbl -EXPORT_SYMBOL vmlinux 0xcc8d3f4f acpi_os_execute -EXPORT_SYMBOL vmlinux 0xcc9aa2a6 register_sysctl -EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor -EXPORT_SYMBOL vmlinux 0xccfb94d5 skb_trim -EXPORT_SYMBOL vmlinux 0xcd09b309 __cleancache_put_page -EXPORT_SYMBOL vmlinux 0xcd20667a kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd57f7b0 radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0xcd601d72 serio_unregister_driver -EXPORT_SYMBOL vmlinux 0xcd60c03c nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0xcd6241ed uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0xcdc1a69e xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0xcdc37a17 get_agp_version -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdd46000 dev_err -EXPORT_SYMBOL vmlinux 0xce146bf2 ns_capable -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce2c45cc wait_for_completion_io -EXPORT_SYMBOL vmlinux 0xce31f96c padata_unregister_cpumask_notifier -EXPORT_SYMBOL vmlinux 0xce4904a4 acpi_leave_sleep_state -EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce7850e1 crc32_le_shift -EXPORT_SYMBOL vmlinux 0xce946cf4 netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0xce992f58 tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0xcea7e1d5 remap_pfn_range -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xceae504f cmdline_parts_free -EXPORT_SYMBOL vmlinux 0xcec71615 sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0xcec8750f tcp_prot -EXPORT_SYMBOL vmlinux 0xced9d71b free_cgroup_ns -EXPORT_SYMBOL vmlinux 0xcedcb6b4 netdev_notify_peers -EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 -EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcf0c65d2 scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xcf198467 blk_queue_bounce -EXPORT_SYMBOL vmlinux 0xcf19912f d_move -EXPORT_SYMBOL vmlinux 0xcf249338 pci_set_dma_max_seg_size -EXPORT_SYMBOL vmlinux 0xcf341ec5 consume_skb -EXPORT_SYMBOL vmlinux 0xcf41cdb2 lro_receive_skb -EXPORT_SYMBOL vmlinux 0xcf4d5ae8 seq_putc -EXPORT_SYMBOL vmlinux 0xcf670683 kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0xcf6cfe1f msrs_free -EXPORT_SYMBOL vmlinux 0xcf864192 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0xcf952549 sock_sendmsg -EXPORT_SYMBOL vmlinux 0xcfb4a296 trace_print_array_seq -EXPORT_SYMBOL vmlinux 0xcfca7fc0 security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0xcfe266e5 is_nd_pfn -EXPORT_SYMBOL vmlinux 0xcfeffd0d inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0xcffcb519 key_type_keyring -EXPORT_SYMBOL vmlinux 0xd00b2619 get_unmapped_area -EXPORT_SYMBOL vmlinux 0xd03ff3c1 inet_confirm_addr -EXPORT_SYMBOL vmlinux 0xd040c16f get_gendisk -EXPORT_SYMBOL vmlinux 0xd04cc2f2 scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0xd055cb96 blkdev_get -EXPORT_SYMBOL vmlinux 0xd066ef07 blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond -EXPORT_SYMBOL vmlinux 0xd08b3c8a seq_release -EXPORT_SYMBOL vmlinux 0xd08f6239 sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc -EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init -EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces -EXPORT_SYMBOL vmlinux 0xd0d04030 set_pages_x -EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format -EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first -EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key -EXPORT_SYMBOL vmlinux 0xd121e3d3 mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0xd1411cf0 balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0xd1450ed3 neigh_table_clear -EXPORT_SYMBOL vmlinux 0xd1652a93 acpi_info -EXPORT_SYMBOL vmlinux 0xd171f36d try_to_release_page -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd1909990 bio_alloc_pages -EXPORT_SYMBOL vmlinux 0xd19364b4 generic_write_checks -EXPORT_SYMBOL vmlinux 0xd197545b vfs_rename -EXPORT_SYMBOL vmlinux 0xd1998f82 address_space_init_once -EXPORT_SYMBOL vmlinux 0xd1c106b4 sync_blockdev -EXPORT_SYMBOL vmlinux 0xd1d45a70 read_code -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1da4f75 security_path_rmdir -EXPORT_SYMBOL vmlinux 0xd1e49ac1 misc_register -EXPORT_SYMBOL vmlinux 0xd1ec10b7 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0xd1f684b2 param_set_bool -EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings -EXPORT_SYMBOL vmlinux 0xd2064e2f idr_replace -EXPORT_SYMBOL vmlinux 0xd20f3020 _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xd21b6007 unregister_qdisc -EXPORT_SYMBOL vmlinux 0xd21cd452 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0xd22665d2 xfrm_register_km -EXPORT_SYMBOL vmlinux 0xd22afeed jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0xd236a787 vme_dma_request -EXPORT_SYMBOL vmlinux 0xd2383229 sock_no_accept -EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xd25d0e0a filemap_fdatawait -EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd25de5db sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0xd2784760 inet_put_port -EXPORT_SYMBOL vmlinux 0xd279e2f5 lwtunnel_output -EXPORT_SYMBOL vmlinux 0xd279fec4 input_reset_device -EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd298723b nf_register_hook -EXPORT_SYMBOL vmlinux 0xd2b09ce5 __kmalloc -EXPORT_SYMBOL vmlinux 0xd2d4db5f gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2e2dedc ata_link_printk -EXPORT_SYMBOL vmlinux 0xd2f87a07 crypto_sha256_update -EXPORT_SYMBOL vmlinux 0xd30b8577 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0xd343df38 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0xd35ca2c8 tty_do_resize -EXPORT_SYMBOL vmlinux 0xd36b010d arp_xmit -EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0xd3719d59 paravirt_ticketlocks_enabled -EXPORT_SYMBOL vmlinux 0xd395349b xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xd399f0bd mutex_lock_killable -EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xd3c044b6 unregister_md_personality -EXPORT_SYMBOL vmlinux 0xd3c860a1 vfs_create -EXPORT_SYMBOL vmlinux 0xd3cbfa65 nobh_truncate_page -EXPORT_SYMBOL vmlinux 0xd3d3306e param_set_short -EXPORT_SYMBOL vmlinux 0xd3e08137 fbcon_set_tileops -EXPORT_SYMBOL vmlinux 0xd3e0e2fd pci_get_subsys -EXPORT_SYMBOL vmlinux 0xd3e57d32 pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0xd3fc7c89 __bforget -EXPORT_SYMBOL vmlinux 0xd3fcd0db pagecache_write_begin -EXPORT_SYMBOL vmlinux 0xd407aba0 genphy_setup_forced -EXPORT_SYMBOL vmlinux 0xd414fd42 sk_reset_timer -EXPORT_SYMBOL vmlinux 0xd436e9fa inet6_protos -EXPORT_SYMBOL vmlinux 0xd456d3e6 sk_mc_loop -EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex -EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system -EXPORT_SYMBOL vmlinux 0xd48e792c write_dirty_buffer -EXPORT_SYMBOL vmlinux 0xd4d2b359 rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0xd4df1320 skb_tx_error -EXPORT_SYMBOL vmlinux 0xd4eb05ec bio_unmap_user -EXPORT_SYMBOL vmlinux 0xd50fef48 acpi_detach_data -EXPORT_SYMBOL vmlinux 0xd519a942 agp_bridge -EXPORT_SYMBOL vmlinux 0xd524a6b4 phy_driver_unregister -EXPORT_SYMBOL vmlinux 0xd52d3457 scsi_init_io -EXPORT_SYMBOL vmlinux 0xd533ea5c input_register_device -EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0xd573e97b param_get_ulong -EXPORT_SYMBOL vmlinux 0xd579b75e phy_resume -EXPORT_SYMBOL vmlinux 0xd57c2d1c vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0xd5896d93 security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0xd5942f73 blk_start_request -EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames -EXPORT_SYMBOL vmlinux 0xd59cd732 skb_find_text -EXPORT_SYMBOL vmlinux 0xd5a6e55d inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0xd5af43f5 __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0xd5b4328a create_empty_buffers -EXPORT_SYMBOL vmlinux 0xd5b53647 d_make_root -EXPORT_SYMBOL vmlinux 0xd5d31721 xfrm_state_update -EXPORT_SYMBOL vmlinux 0xd6065c41 xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout -EXPORT_SYMBOL vmlinux 0xd647302b sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode -EXPORT_SYMBOL vmlinux 0xd67d679a amd_iommu_domain_enable_v2 -EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd68e1d1b _raw_read_trylock -EXPORT_SYMBOL vmlinux 0xd6a65216 __ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace -EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd702af07 __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0xd7100eba agp_generic_mask_memory -EXPORT_SYMBOL vmlinux 0xd730959d seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xd747cf6f tcf_em_register -EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function -EXPORT_SYMBOL vmlinux 0xd769a50e compat_nf_setsockopt -EXPORT_SYMBOL vmlinux 0xd76f2eb8 inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0xd795a46b dev_change_proto_down -EXPORT_SYMBOL vmlinux 0xd7af1db0 write_one_page -EXPORT_SYMBOL vmlinux 0xd7af97c4 vga_switcheroo_fini_domain_pm_ops -EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi -EXPORT_SYMBOL vmlinux 0xd7e55de7 netlink_kernel_release -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7f41dc8 is_nd_btt -EXPORT_SYMBOL vmlinux 0xd7fe6375 xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0xd80ace3a pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0xd8630755 register_key_type -EXPORT_SYMBOL vmlinux 0xd86c97b4 netdev_notice -EXPORT_SYMBOL vmlinux 0xd87bbf4d pipe_lock -EXPORT_SYMBOL vmlinux 0xd88484cc sock_i_uid -EXPORT_SYMBOL vmlinux 0xd89546be mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region -EXPORT_SYMBOL vmlinux 0xd9091363 acpi_install_notify_handler -EXPORT_SYMBOL vmlinux 0xd92126d2 cdev_del -EXPORT_SYMBOL vmlinux 0xd92e2dca tcp_hashinfo -EXPORT_SYMBOL vmlinux 0xd9388269 dentry_update_name_case -EXPORT_SYMBOL vmlinux 0xd94322e7 acpi_evaluate_reference -EXPORT_SYMBOL vmlinux 0xd94eaad6 elv_add_request -EXPORT_SYMBOL vmlinux 0xd969b2c7 amd_e400_c1e_detected -EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu -EXPORT_SYMBOL vmlinux 0xd9720cd6 inet_frag_kill -EXPORT_SYMBOL vmlinux 0xd9779f48 mmc_fixup_device -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd987eec0 i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0xd98b5901 pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0xd98c1ce0 devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0xd993403d blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xd9a7cc00 param_ops_uint -EXPORT_SYMBOL vmlinux 0xd9c3bf24 vfs_unlink -EXPORT_SYMBOL vmlinux 0xd9c67fa9 cpu_info -EXPORT_SYMBOL vmlinux 0xd9d3bcd3 _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0xd9d7b2b9 _dev_info -EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler -EXPORT_SYMBOL vmlinux 0xd9e2f9db __mdiobus_register -EXPORT_SYMBOL vmlinux 0xd9ee5108 cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0xd9fb0e7e bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0xd9fc84c6 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0xd9ffac56 phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0xda031b86 scsi_scan_host -EXPORT_SYMBOL vmlinux 0xda291022 mem_cgroup_end_page_stat -EXPORT_SYMBOL vmlinux 0xda2ed39c lro_flush_all -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda3e11fb bio_add_pc_page -EXPORT_SYMBOL vmlinux 0xda534bf4 napi_get_frags -EXPORT_SYMBOL vmlinux 0xda623858 pnp_register_card_driver -EXPORT_SYMBOL vmlinux 0xda634f1a tcf_em_unregister -EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0xda90b41d pci_scan_slot -EXPORT_SYMBOL vmlinux 0xda9fc7ae kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0xdaa960d8 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdac7827f netdev_features_change -EXPORT_SYMBOL vmlinux 0xdadfab44 insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell -EXPORT_SYMBOL vmlinux 0xdaeb77be jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0xdaf6702f ata_port_printk -EXPORT_SYMBOL vmlinux 0xdafaf7f0 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0xdb0ba340 blk_end_request -EXPORT_SYMBOL vmlinux 0xdb1673db pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg -EXPORT_SYMBOL vmlinux 0xdb3bcca6 cancel_delayed_work -EXPORT_SYMBOL vmlinux 0xdb40fd85 devm_gpiod_get_optional -EXPORT_SYMBOL vmlinux 0xdb55c9dc seq_printf -EXPORT_SYMBOL vmlinux 0xdb5b6335 key_validate -EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb78435d netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0xdb9245d9 netif_wake_subqueue -EXPORT_SYMBOL vmlinux 0xdb937589 nvm_get_blk -EXPORT_SYMBOL vmlinux 0xdba07e95 __breadahead -EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc14f03f iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0xdc3a3188 bio_advance -EXPORT_SYMBOL vmlinux 0xdc3ba8d3 __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0xdc3c41a8 __crypto_memneq -EXPORT_SYMBOL vmlinux 0xdc3cc747 dev_mc_init -EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 -EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc57f532 acpi_install_gpe_handler -EXPORT_SYMBOL vmlinux 0xdc5f5da8 lockref_put_return -EXPORT_SYMBOL vmlinux 0xdc66bf49 devm_memremap_pages -EXPORT_SYMBOL vmlinux 0xdc9d7f09 tty_hangup -EXPORT_SYMBOL vmlinux 0xdcad3d45 bio_copy_data -EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close -EXPORT_SYMBOL vmlinux 0xdcb2c89c __dev_get_by_name -EXPORT_SYMBOL vmlinux 0xdccbd992 __genl_register_family -EXPORT_SYMBOL vmlinux 0xdcd6d6e1 sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0xdceaff99 dcache_readdir -EXPORT_SYMBOL vmlinux 0xdd03ae81 sock_wmalloc -EXPORT_SYMBOL vmlinux 0xdd1ed5a8 vme_register_driver -EXPORT_SYMBOL vmlinux 0xdd20ba46 sock_i_ino -EXPORT_SYMBOL vmlinux 0xdd25b31c __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0xdd2de2bb scsi_cmd_ioctl -EXPORT_SYMBOL vmlinux 0xdd384c90 i8042_remove_filter -EXPORT_SYMBOL vmlinux 0xdd410110 set_trace_device -EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy -EXPORT_SYMBOL vmlinux 0xdd78806d dump_page -EXPORT_SYMBOL vmlinux 0xdd854af1 bdi_setup_and_register -EXPORT_SYMBOL vmlinux 0xdd8dd597 vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0xdd9236a8 netdev_master_upper_dev_link_private -EXPORT_SYMBOL vmlinux 0xdda9d1ac tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0xddb0e681 fb_pan_display -EXPORT_SYMBOL vmlinux 0xddb4bf6e __find_get_block -EXPORT_SYMBOL vmlinux 0xddb583f6 gen_pool_add_virt -EXPORT_SYMBOL vmlinux 0xddd0bb98 __nd_driver_register -EXPORT_SYMBOL vmlinux 0xdddbb4ed dev_notice -EXPORT_SYMBOL vmlinux 0xdddecad7 del_gendisk -EXPORT_SYMBOL vmlinux 0xdde86731 in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xddf410a6 rtnl_notify -EXPORT_SYMBOL vmlinux 0xde06148f simple_link -EXPORT_SYMBOL vmlinux 0xde16dc16 tboot -EXPORT_SYMBOL vmlinux 0xde177ebe generic_file_read_iter -EXPORT_SYMBOL vmlinux 0xde49c849 jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0xde4d76f7 eth_header -EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0xde639857 generic_removexattr -EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages -EXPORT_SYMBOL vmlinux 0xde93bae6 led_set_brightness -EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size -EXPORT_SYMBOL vmlinux 0xdea3b6e4 jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0xdedb6611 try_wait_for_completion -EXPORT_SYMBOL vmlinux 0xdee8d3a0 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0xdf0da3cc acpi_get_devices -EXPORT_SYMBOL vmlinux 0xdf12a927 acpi_check_dsm -EXPORT_SYMBOL vmlinux 0xdf1427e5 idr_remove -EXPORT_SYMBOL vmlinux 0xdf186990 __blk_end_request_cur -EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf2ca744 uart_remove_one_port -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf5a0487 request_firmware -EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol -EXPORT_SYMBOL vmlinux 0xdf7372ff netdev_update_features -EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay -EXPORT_SYMBOL vmlinux 0xdf924c9d vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdf9aaf16 generic_file_llseek -EXPORT_SYMBOL vmlinux 0xdfa752b8 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0xdfb49496 mmc_gpio_request_cd -EXPORT_SYMBOL vmlinux 0xdfb56d73 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0xdfc145ad neigh_seq_next -EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init -EXPORT_SYMBOL vmlinux 0xdfcdad91 __nd_iostat_start -EXPORT_SYMBOL vmlinux 0xdfd3a075 wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xe006a16f skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0xe0378145 __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0xe04d1f2c set_posix_acl -EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xe0543cab i2c_verify_client -EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone -EXPORT_SYMBOL vmlinux 0xe0661737 nd_btt_probe -EXPORT_SYMBOL vmlinux 0xe0661d19 do_splice_direct -EXPORT_SYMBOL vmlinux 0xe0667b4a blk_make_request -EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xe083147d bdi_destroy -EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0xe084cacc mmc_start_bkops -EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool -EXPORT_SYMBOL vmlinux 0xe09d4912 call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0xe09ec44c block_invalidatepage -EXPORT_SYMBOL vmlinux 0xe0ac8bd2 acpi_bus_generate_netlink_event -EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0b207ec dentry_path_raw -EXPORT_SYMBOL vmlinux 0xe0d1d149 agp_generic_destroy_pages -EXPORT_SYMBOL vmlinux 0xe0de1929 inode_permission -EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -EXPORT_SYMBOL vmlinux 0xe128cbf8 __init_rwsem -EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors -EXPORT_SYMBOL vmlinux 0xe14cd077 inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xe15c0e37 __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0xe15c6e02 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0xe1623724 netdev_all_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0xe172f5bd tty_free_termios -EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xe18f3e5b ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0xe1e29cd9 vga_put -EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xe20372ae radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0xe224519d __generic_block_fiemap -EXPORT_SYMBOL vmlinux 0xe23518da dquot_drop -EXPORT_SYMBOL vmlinux 0xe2375cf9 ip6_expire_frag_queue -EXPORT_SYMBOL vmlinux 0xe23ad46c security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 -EXPORT_SYMBOL vmlinux 0xe259ae9e _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xe266c08a simple_pin_fs -EXPORT_SYMBOL vmlinux 0xe26a6a8f blk_queue_softirq_done -EXPORT_SYMBOL vmlinux 0xe26ab71e param_get_bool -EXPORT_SYMBOL vmlinux 0xe26d10f7 set_pages_uc -EXPORT_SYMBOL vmlinux 0xe26f1fc0 max8998_write_reg -EXPORT_SYMBOL vmlinux 0xe28279ee md_write_end -EXPORT_SYMBOL vmlinux 0xe286eb09 mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0xe29b04e9 acpi_set_firmware_waking_vector64 -EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t -EXPORT_SYMBOL vmlinux 0xe2bf255d udp_set_csum -EXPORT_SYMBOL vmlinux 0xe2ce5285 dev_change_flags -EXPORT_SYMBOL vmlinux 0xe2d3ac2b phy_stop_interrupts -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0xe307c015 bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0xe309aaea pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0xe317764d jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0xe319eb24 acpi_pci_osc_control_set -EXPORT_SYMBOL vmlinux 0xe31a9292 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0xe3399a75 native_queued_spin_lock_slowpath -EXPORT_SYMBOL vmlinux 0xe356f876 blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0xe3748de6 sk_alloc -EXPORT_SYMBOL vmlinux 0xe3a53f4c sort -EXPORT_SYMBOL vmlinux 0xe3b1a0ca register_cdrom -EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0xe3d60f34 kernel_sock_ioctl -EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xe3e27ee1 kernel_accept -EXPORT_SYMBOL vmlinux 0xe3f8030d __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0xe3fdabb6 netdev_boot_setup_check -EXPORT_SYMBOL vmlinux 0xe427c4ec nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0xe429c127 km_report -EXPORT_SYMBOL vmlinux 0xe42c3b99 ip_ct_attach -EXPORT_SYMBOL vmlinux 0xe4301b4d tcp_mtup_init -EXPORT_SYMBOL vmlinux 0xe441f358 dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0xe476d115 abx500_set_register_interruptible -EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 -EXPORT_SYMBOL vmlinux 0xe4991d2d __sb_end_write -EXPORT_SYMBOL vmlinux 0xe4c00a02 flow_cache_fini -EXPORT_SYMBOL vmlinux 0xe4c8b44d load_nls -EXPORT_SYMBOL vmlinux 0xe4d3efda shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array -EXPORT_SYMBOL vmlinux 0xe4eaab2e t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0xe50dee31 ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0xe513fcd2 pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe530d757 acpi_clear_gpe -EXPORT_SYMBOL vmlinux 0xe550fbd4 blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton -EXPORT_SYMBOL vmlinux 0xe5815f8a _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0xe5840d50 tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0xe5865ef9 mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set -EXPORT_SYMBOL vmlinux 0xe5980e91 mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0xe5a4318d ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0xe5abc509 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0xe5ad0231 pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5cba1ca delete_from_page_cache -EXPORT_SYMBOL vmlinux 0xe5e75553 tty_kref_put -EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xe5ed9d58 blk_alloc_queue -EXPORT_SYMBOL vmlinux 0xe607a15f amd_iommu_domain_direct_map -EXPORT_SYMBOL vmlinux 0xe6162877 down_killable -EXPORT_SYMBOL vmlinux 0xe6238b3d __register_nls -EXPORT_SYMBOL vmlinux 0xe627c1e7 bitmap_start_sync -EXPORT_SYMBOL vmlinux 0xe6380ba4 framebuffer_release -EXPORT_SYMBOL vmlinux 0xe64d98fe rdmsr_safe_regs -EXPORT_SYMBOL vmlinux 0xe65a73d7 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0xe65ef821 skb_queue_purge -EXPORT_SYMBOL vmlinux 0xe696b8ff generic_start_io_acct -EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe69a9df4 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0xe69bdfc4 d_alloc -EXPORT_SYMBOL vmlinux 0xe6a93b01 key_revoke -EXPORT_SYMBOL vmlinux 0xe6b0a7d0 blk_register_region -EXPORT_SYMBOL vmlinux 0xe6b5df41 tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0xe6c13880 tty_unregister_device -EXPORT_SYMBOL vmlinux 0xe6dc006a fsnotify_alloc_group -EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock -EXPORT_SYMBOL vmlinux 0xe700e97b mmc_read_bkops_status -EXPORT_SYMBOL vmlinux 0xe70f910f param_ops_charp -EXPORT_SYMBOL vmlinux 0xe716baed acpi_unregister_ioapic -EXPORT_SYMBOL vmlinux 0xe718f095 page_waitqueue -EXPORT_SYMBOL vmlinux 0xe7227148 __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xe7364a15 compat_mc_setsockopt -EXPORT_SYMBOL vmlinux 0xe737bce4 nvm_set_rqd_ppalist -EXPORT_SYMBOL vmlinux 0xe740a5a4 secpath_dup -EXPORT_SYMBOL vmlinux 0xe7503643 dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0xe7537e3d udp_lib_rehash -EXPORT_SYMBOL vmlinux 0xe7557d2d blk_mq_delay_queue -EXPORT_SYMBOL vmlinux 0xe763acec csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0xe77e14fe nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xe79ea138 rtnl_unicast -EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx -EXPORT_SYMBOL vmlinux 0xe7a9a7c3 simple_getattr -EXPORT_SYMBOL vmlinux 0xe7c9693a mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe8004ae6 pci_remove_bus -EXPORT_SYMBOL vmlinux 0xe803b7ab tty_hung_up_p -EXPORT_SYMBOL vmlinux 0xe8040ffb __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0xe807b57a mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0xe8145f50 down_write -EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0xe8237cf5 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0xe8458abf unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xe849b1db request_key_async_with_auxdata -EXPORT_SYMBOL vmlinux 0xe850a41a twl6040_power -EXPORT_SYMBOL vmlinux 0xe85ac1b6 nf_log_register -EXPORT_SYMBOL vmlinux 0xe8613775 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0xe8731918 x86_hyper_xen -EXPORT_SYMBOL vmlinux 0xe8763717 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss -EXPORT_SYMBOL vmlinux 0xe88b200b get_mm_exe_file -EXPORT_SYMBOL vmlinux 0xe88f17bd eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0xe88f3aeb pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0xe89e9c3c clkdev_add -EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0xe8b0dffe mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0xe8b8654b skb_ensure_writable -EXPORT_SYMBOL vmlinux 0xe8b86b25 fb_class -EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xe8c55a62 zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0xe8db8dd2 _raw_write_lock -EXPORT_SYMBOL vmlinux 0xe8eb8f19 crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0xe8ef0ff0 current_kernel_time64 -EXPORT_SYMBOL vmlinux 0xe909d2a0 kernel_bind -EXPORT_SYMBOL vmlinux 0xe90d6b33 netif_device_attach -EXPORT_SYMBOL vmlinux 0xe912b984 fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe91c121c pm860x_reg_write -EXPORT_SYMBOL vmlinux 0xe92c07b2 xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xe93af544 dqget -EXPORT_SYMBOL vmlinux 0xe9423d3f kmalloc_caches -EXPORT_SYMBOL vmlinux 0xe9492961 proto_register -EXPORT_SYMBOL vmlinux 0xe950d121 nf_log_packet -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr -EXPORT_SYMBOL vmlinux 0xe964fd21 pnp_device_attach -EXPORT_SYMBOL vmlinux 0xe96f0bb4 pci_set_dma_seg_boundary -EXPORT_SYMBOL vmlinux 0xe97c1d7f xen_biovec_phys_mergeable -EXPORT_SYMBOL vmlinux 0xe9839895 override_creds -EXPORT_SYMBOL vmlinux 0xe9870ef8 blk_start_queue_async -EXPORT_SYMBOL vmlinux 0xe997667b wrmsr_on_cpu -EXPORT_SYMBOL vmlinux 0xe9a15242 kernel_setsockopt -EXPORT_SYMBOL vmlinux 0xe9acfac4 tcf_hash_new_index -EXPORT_SYMBOL vmlinux 0xe9b149d3 tty_register_device -EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xea034f26 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len -EXPORT_SYMBOL vmlinux 0xea1173d3 nf_getsockopt -EXPORT_SYMBOL vmlinux 0xea20d371 sock_wfree -EXPORT_SYMBOL vmlinux 0xea241869 rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0xea2a7970 __sb_start_write -EXPORT_SYMBOL vmlinux 0xea3f725d _raw_write_lock_irqsave -EXPORT_SYMBOL vmlinux 0xea518c9c try_to_writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0xea6fcdb6 __skb_gso_segment -EXPORT_SYMBOL vmlinux 0xea76c41b sock_no_getsockopt -EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table -EXPORT_SYMBOL vmlinux 0xea7b8a44 acpi_install_interface -EXPORT_SYMBOL vmlinux 0xea90bdd3 acpi_attach_data -EXPORT_SYMBOL vmlinux 0xea9db122 agp_unbind_memory -EXPORT_SYMBOL vmlinux 0xea9f4b5e truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0xeaa17519 ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0xeaa302ba inode_reclaim_rsv_space -EXPORT_SYMBOL vmlinux 0xeabfda70 jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0xeac73847 irq_regs -EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay -EXPORT_SYMBOL vmlinux 0xeaecd12c pskb_expand_head -EXPORT_SYMBOL vmlinux 0xeaf012ba agp_generic_alloc_pages -EXPORT_SYMBOL vmlinux 0xeaf3a886 tcp_gro_complete -EXPORT_SYMBOL vmlinux 0xeb0100c3 dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0xeb1ac509 blk_get_request -EXPORT_SYMBOL vmlinux 0xeb1ffec7 ip_check_defrag -EXPORT_SYMBOL vmlinux 0xeb341c58 skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb42ea2d skb_vlan_untag -EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact -EXPORT_SYMBOL vmlinux 0xeb4c1ae2 bdi_register_owner -EXPORT_SYMBOL vmlinux 0xeb572a44 __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xeb66f2df phy_print_status -EXPORT_SYMBOL vmlinux 0xeb9b201c proc_set_size -EXPORT_SYMBOL vmlinux 0xebb2f0d8 clear_inode -EXPORT_SYMBOL vmlinux 0xebbb0629 simple_setattr -EXPORT_SYMBOL vmlinux 0xebd1f7fe sock_rfree -EXPORT_SYMBOL vmlinux 0xebdcf18e ip_route_me_harder -EXPORT_SYMBOL vmlinux 0xebdee80d vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0xebff5cf5 fence_signal_locked -EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec56ead2 page_symlink -EXPORT_SYMBOL vmlinux 0xec67413e qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0xec7c7439 mmc_flush_cache -EXPORT_SYMBOL vmlinux 0xec85888b neigh_resolve_output -EXPORT_SYMBOL vmlinux 0xec95f26e param_set_byte -EXPORT_SYMBOL vmlinux 0xec9bcfd8 __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0xec9c0919 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0xecac8407 __memcpy -EXPORT_SYMBOL vmlinux 0xecc99dfe __pci_enable_wake -EXPORT_SYMBOL vmlinux 0xeccd3e0c acpi_handle_printk -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node -EXPORT_SYMBOL vmlinux 0xed176397 tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0xed2499ff tcf_exts_change -EXPORT_SYMBOL vmlinux 0xed2aa625 devm_ioremap_nocache -EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xedaff06b n_tty_compat_ioctl_helper -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedd135cc sock_no_getname -EXPORT_SYMBOL vmlinux 0xede34eca scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long -EXPORT_SYMBOL vmlinux 0xedf88edb sock_no_sendpage -EXPORT_SYMBOL vmlinux 0xee09c782 proc_set_user -EXPORT_SYMBOL vmlinux 0xee0b210d pci_enable_device_io -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee716b1f gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0xee72a438 uart_unregister_driver -EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices -EXPORT_SYMBOL vmlinux 0xee83f8bd sock_no_listen -EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee9575a7 padata_set_cpumask -EXPORT_SYMBOL vmlinux 0xeea1a693 genphy_suspend -EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeeb8f63e bio_copy_kern -EXPORT_SYMBOL vmlinux 0xeec2c7cf ucs2_as_utf8 -EXPORT_SYMBOL vmlinux 0xeed2356c dev_mc_flush -EXPORT_SYMBOL vmlinux 0xeef161aa groups_free -EXPORT_SYMBOL vmlinux 0xeef427cb lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0xeef61276 tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0xef188a8e __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0xef2e3318 nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0xef681dd3 phy_get_eee_err -EXPORT_SYMBOL vmlinux 0xef6cc587 napi_gro_receive -EXPORT_SYMBOL vmlinux 0xef79683f scsi_cmd_blk_ioctl -EXPORT_SYMBOL vmlinux 0xef7cbabb security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0xef96702d pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override -EXPORT_SYMBOL vmlinux 0xefb46c1f jbd2_journal_file_inode -EXPORT_SYMBOL vmlinux 0xefd10e94 tcp_proc_unregister -EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xefda8d99 abort_exclusive_wait -EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0xefe099c3 acpi_get_event_status -EXPORT_SYMBOL vmlinux 0xefe374f8 input_set_abs_params -EXPORT_SYMBOL vmlinux 0xeff02636 phy_driver_register -EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf001c50b wait_for_key_construction -EXPORT_SYMBOL vmlinux 0xf00f67a9 load_nls_default -EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0xf027f0e2 skb_clone -EXPORT_SYMBOL vmlinux 0xf031fa98 pcie_port_service_register -EXPORT_SYMBOL vmlinux 0xf041a569 get_cached_acl -EXPORT_SYMBOL vmlinux 0xf0427260 inet_getname -EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0xf062576b ucs2_utf8size -EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be -EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier -EXPORT_SYMBOL vmlinux 0xf06a4dde noop_llseek -EXPORT_SYMBOL vmlinux 0xf076b00e scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0xf08242c2 finish_wait -EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag -EXPORT_SYMBOL vmlinux 0xf09209a6 dev_uc_sync -EXPORT_SYMBOL vmlinux 0xf099bad3 page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int -EXPORT_SYMBOL vmlinux 0xf0a8237a radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0xf0adef22 gen_replace_estimator -EXPORT_SYMBOL vmlinux 0xf0b6ef72 audit_log_task_info -EXPORT_SYMBOL vmlinux 0xf0c7cff0 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0xf0d0ed0e commit_creds -EXPORT_SYMBOL vmlinux 0xf0d327bd param_ops_long -EXPORT_SYMBOL vmlinux 0xf0eaffce _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort -EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info -EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 -EXPORT_SYMBOL vmlinux 0xf11543ff find_first_zero_bit -EXPORT_SYMBOL vmlinux 0xf116d4b5 copy_in_user -EXPORT_SYMBOL vmlinux 0xf11a0d6e arp_create -EXPORT_SYMBOL vmlinux 0xf11c8eeb vc_resize -EXPORT_SYMBOL vmlinux 0xf12f4d7b inet_sock_destruct -EXPORT_SYMBOL vmlinux 0xf1398e2e lg_local_unlock_cpu -EXPORT_SYMBOL vmlinux 0xf14460e8 skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init -EXPORT_SYMBOL vmlinux 0xf15bc23d scsi_remove_target -EXPORT_SYMBOL vmlinux 0xf167df61 tty_port_put -EXPORT_SYMBOL vmlinux 0xf17dfad7 blk_queue_unprep_rq -EXPORT_SYMBOL vmlinux 0xf1951ef9 elevator_change -EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps -EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf19d0c4f inet_stream_ops -EXPORT_SYMBOL vmlinux 0xf1a258dd qdisc_list_del -EXPORT_SYMBOL vmlinux 0xf1a71cda new_inode -EXPORT_SYMBOL vmlinux 0xf1aaee0b __d_drop -EXPORT_SYMBOL vmlinux 0xf1d14b1d jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0xf1da6512 dcache_dir_close -EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq -EXPORT_SYMBOL vmlinux 0xf217726d __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xf22d560b xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0xf2367874 netif_rx_ni -EXPORT_SYMBOL vmlinux 0xf23688fa vga_switcheroo_unregister_client -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf24960ab arch_dma_alloc_attrs -EXPORT_SYMBOL vmlinux 0xf25148b6 tcp_release_cb -EXPORT_SYMBOL vmlinux 0xf263b82d kthread_create_on_node -EXPORT_SYMBOL vmlinux 0xf2738e81 xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0xf27513f3 inode_sub_rsv_space -EXPORT_SYMBOL vmlinux 0xf27ab4c2 pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0xf28ed6e2 machine_to_phys_nr -EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered -EXPORT_SYMBOL vmlinux 0xf2a2b163 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0xf2a37091 i2c_clients_command -EXPORT_SYMBOL vmlinux 0xf2b6648b __module_get -EXPORT_SYMBOL vmlinux 0xf2bf2e06 agp_alloc_page_array -EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2c8bdc6 dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0xf2f3e3ee set_pages_nx -EXPORT_SYMBOL vmlinux 0xf2fd4fb4 __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0xf312cb9d ucs2_strsize -EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform -EXPORT_SYMBOL vmlinux 0xf320aa11 agp_backend_release -EXPORT_SYMBOL vmlinux 0xf32b7f6d path_get -EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf347c8ce twl6040_set_bits -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf3566048 truncate_setsize -EXPORT_SYMBOL vmlinux 0xf3568093 __blk_end_request_all -EXPORT_SYMBOL vmlinux 0xf36ffd78 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf38e3069 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0xf3986b06 acpi_os_map_generic_address -EXPORT_SYMBOL vmlinux 0xf3b3dabd ilookup -EXPORT_SYMBOL vmlinux 0xf3c54dbd generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf40efe39 sk_prot_clear_portaddr_nulls -EXPORT_SYMBOL vmlinux 0xf42315e2 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep -EXPORT_SYMBOL vmlinux 0xf4442a9e mb_cache_entry_alloc -EXPORT_SYMBOL vmlinux 0xf44c6b7b sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0xf4541107 kern_path_create -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf488f77d locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0xf4a5c213 avail_to_resrv_perfctr_nmi_bit -EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4caec85 pnp_unregister_driver -EXPORT_SYMBOL vmlinux 0xf4d2a6fb jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf4f2f8a2 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0xf4fd2a11 jbd2_journal_load -EXPORT_SYMBOL vmlinux 0xf5037925 nvm_end_io -EXPORT_SYMBOL vmlinux 0xf51858f8 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0xf51ae235 touch_nmi_watchdog -EXPORT_SYMBOL vmlinux 0xf51bf88b nf_hooks_needed -EXPORT_SYMBOL vmlinux 0xf52c4ec9 padata_stop -EXPORT_SYMBOL vmlinux 0xf52e365a dquot_disable -EXPORT_SYMBOL vmlinux 0xf536d22e acpi_set_gpe_wake_mask -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf553f64b devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xf555974b __skb_tx_hash -EXPORT_SYMBOL vmlinux 0xf58dcf1b pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set -EXPORT_SYMBOL vmlinux 0xf5ad560b mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0xf5b10e67 acpi_install_global_event_handler -EXPORT_SYMBOL vmlinux 0xf5ba8c05 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xf5c691c5 max8925_bulk_read -EXPORT_SYMBOL vmlinux 0xf5e405e3 devm_gpio_request -EXPORT_SYMBOL vmlinux 0xf5e9393f blk_queue_stack_limits -EXPORT_SYMBOL vmlinux 0xf5eb3067 notify_change -EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command -EXPORT_SYMBOL vmlinux 0xf5f1de8d __ip_select_ident -EXPORT_SYMBOL vmlinux 0xf6221807 inet_sendpage -EXPORT_SYMBOL vmlinux 0xf636a71e generic_show_options -EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl -EXPORT_SYMBOL vmlinux 0xf63bed89 i2c_put_adapter -EXPORT_SYMBOL vmlinux 0xf66fd307 genphy_resume -EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton -EXPORT_SYMBOL vmlinux 0xf67f1be3 build_skb -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf684632b devm_get_gpiod_from_child -EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xf693a145 irq_stat -EXPORT_SYMBOL vmlinux 0xf699984e kobject_put -EXPORT_SYMBOL vmlinux 0xf69d0e23 pci_enable_msix -EXPORT_SYMBOL vmlinux 0xf6aea49b ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6ef98dd pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf709f88c inet_frag_maybe_warn_overflow -EXPORT_SYMBOL vmlinux 0xf7114058 nvm_unregister_target -EXPORT_SYMBOL vmlinux 0xf7584a9c find_font -EXPORT_SYMBOL vmlinux 0xf75d7fc1 bioset_create_nobvec -EXPORT_SYMBOL vmlinux 0xf764868a udplite_table -EXPORT_SYMBOL vmlinux 0xf76f161e dst_discard_out -EXPORT_SYMBOL vmlinux 0xf782bd8a i2c_master_send -EXPORT_SYMBOL vmlinux 0xf79e97cd acpi_get_physical_device_location -EXPORT_SYMBOL vmlinux 0xf79fd34e register_shrinker -EXPORT_SYMBOL vmlinux 0xf7a8f74f tcp_child_process -EXPORT_SYMBOL vmlinux 0xf7ae86cb nvm_put_blk_unlocked -EXPORT_SYMBOL vmlinux 0xf7bf4cf5 security_path_link -EXPORT_SYMBOL vmlinux 0xf7c1344a neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0xf7d18af5 input_inject_event -EXPORT_SYMBOL vmlinux 0xf7e62301 alloc_fcdev -EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf812cff6 memscan -EXPORT_SYMBOL vmlinux 0xf82543b1 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area -EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf8453286 __brelse -EXPORT_SYMBOL vmlinux 0xf84ab2ef pm860x_set_bits -EXPORT_SYMBOL vmlinux 0xf854a64b ipv6_push_nfrag_opts -EXPORT_SYMBOL vmlinux 0xf8580ec9 cdrom_release -EXPORT_SYMBOL vmlinux 0xf8584adf sock_register -EXPORT_SYMBOL vmlinux 0xf858a0f8 qdisc_watchdog_schedule_ns -EXPORT_SYMBOL vmlinux 0xf85fc6eb csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0xf86f496a max8998_bulk_read -EXPORT_SYMBOL vmlinux 0xf88e0ee2 acpi_get_table_header -EXPORT_SYMBOL vmlinux 0xf898389b dev_printk -EXPORT_SYMBOL vmlinux 0xf8d04f09 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xf8f5ce47 xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0xf91f58df jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0xf936032a tcf_hash_create -EXPORT_SYMBOL vmlinux 0xf9697f57 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0xf97b4e14 input_event -EXPORT_SYMBOL vmlinux 0xf987ba41 open_exec -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9a70061 mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0xf9b901b2 input_flush_device -EXPORT_SYMBOL vmlinux 0xf9c00a54 __cleancache_get_page -EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat -EXPORT_SYMBOL vmlinux 0xfa0e3503 filp_close -EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa8761c6 check_disk_change -EXPORT_SYMBOL vmlinux 0xfa91fab4 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0xfa9f8e0b nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0xfab14f38 padata_start -EXPORT_SYMBOL vmlinux 0xfac1af90 simple_open -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xfada0b2c padata_alloc_possible -EXPORT_SYMBOL vmlinux 0xfae3b643 genl_unregister_family -EXPORT_SYMBOL vmlinux 0xfae5ef39 elv_rb_former_request -EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr -EXPORT_SYMBOL vmlinux 0xfb0443fb acpi_get_parent -EXPORT_SYMBOL vmlinux 0xfb13513e phy_init_hw -EXPORT_SYMBOL vmlinux 0xfb221977 thaw_super -EXPORT_SYMBOL vmlinux 0xfb28de91 fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0xfb38fab9 iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0xfb414301 forget_cached_acl -EXPORT_SYMBOL vmlinux 0xfb578fc5 memset -EXPORT_SYMBOL vmlinux 0xfb691d2f gen_pool_free -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb80c7a0 acpi_walk_namespace -EXPORT_SYMBOL vmlinux 0xfb871920 __wait_on_buffer -EXPORT_SYMBOL vmlinux 0xfb93def0 filemap_flush -EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 -EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock -EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbd1c28a device_get_mac_address -EXPORT_SYMBOL vmlinux 0xfbe7a087 reservation_object_add_excl_fence -EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem -EXPORT_SYMBOL vmlinux 0xfc1d95c0 jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0xfc3559a7 phy_suspend -EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap -EXPORT_SYMBOL vmlinux 0xfc3c56ff vga_switcheroo_set_dynamic_switch -EXPORT_SYMBOL vmlinux 0xfc612dc8 xfrm_input_resume -EXPORT_SYMBOL vmlinux 0xfc734327 queued_read_lock_slowpath -EXPORT_SYMBOL vmlinux 0xfc770bc3 get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0xfc872fd1 get_ibs_caps -EXPORT_SYMBOL vmlinux 0xfc9de249 cdrom_open -EXPORT_SYMBOL vmlinux 0xfcac0d40 acpi_install_interface_handler -EXPORT_SYMBOL vmlinux 0xfcb26fa4 genl_notify -EXPORT_SYMBOL vmlinux 0xfcb926cd kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0xfcc0a006 sock_no_setsockopt -EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0xfccc1bb0 redraw_screen -EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0xfcfb3fc8 irq_set_chip -EXPORT_SYMBOL vmlinux 0xfd089d4a scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0xfd0911d2 iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0xfd304913 ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0xfd3430f3 tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0xfd5cd3ae module_put -EXPORT_SYMBOL vmlinux 0xfd5e6866 pv_mmu_ops -EXPORT_SYMBOL vmlinux 0xfd659a48 netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0xfd71a04b generic_shutdown_super -EXPORT_SYMBOL vmlinux 0xfd760ff3 vga_switcheroo_init_domain_pm_ops -EXPORT_SYMBOL vmlinux 0xfd76410e amd_iommu_complete_ppr -EXPORT_SYMBOL vmlinux 0xfd79969a netlink_net_capable -EXPORT_SYMBOL vmlinux 0xfd79f403 set_pages_array_uc -EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be -EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0xfdd8fa55 ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0xfde4bdb5 generic_block_fiemap -EXPORT_SYMBOL vmlinux 0xfdfb792f amd_iommu_pc_supported -EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0xfdfd6c90 add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe046494 dquot_quota_sync -EXPORT_SYMBOL vmlinux 0xfe047ce6 acpi_enter_sleep_state -EXPORT_SYMBOL vmlinux 0xfe13c522 acpi_install_gpe_raw_handler -EXPORT_SYMBOL vmlinux 0xfe17047b kblockd_schedule_delayed_work_on -EXPORT_SYMBOL vmlinux 0xfe26fc7c nr_node_ids -EXPORT_SYMBOL vmlinux 0xfe47ae29 kthread_stop -EXPORT_SYMBOL vmlinux 0xfe5d30e9 _raw_write_trylock -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe75db69 fsnotify_put_group -EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0xfe892e14 dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 -EXPORT_SYMBOL vmlinux 0xfeb38e4f seq_write -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0xfef2c78f idr_get_next -EXPORT_SYMBOL vmlinux 0xff03ead1 scsi_device_resume -EXPORT_SYMBOL vmlinux 0xff0a94f0 locks_mandatory_area -EXPORT_SYMBOL vmlinux 0xff0b9dd9 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0xff0efb52 d_rehash -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff3f1fd8 __kfree_skb -EXPORT_SYMBOL vmlinux 0xff4fd6a3 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0xff5679b7 phy_write_mmd_indirect -EXPORT_SYMBOL vmlinux 0xff5c52fe tcp_sync_mss -EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource -EXPORT_SYMBOL vmlinux 0xff900534 pci_release_region -EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy -EXPORT_SYMBOL vmlinux 0xff946824 i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0xff9bde22 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0xffa355d1 __register_nmi_handler -EXPORT_SYMBOL vmlinux 0xffa4792f acpi_processor_notify_smm -EXPORT_SYMBOL vmlinux 0xffb33be8 tcp_connect -EXPORT_SYMBOL vmlinux 0xffb8e235 __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0xffca8f82 dma_async_device_register -EXPORT_SYMBOL vmlinux 0xffcf1925 lock_sock_fast -EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function -EXPORT_SYMBOL vmlinux 0xfff08c72 set_groups -EXPORT_SYMBOL vmlinux 0xfffd7159 __dynamic_netdev_dbg -EXPORT_SYMBOL_GPL arch/x86/crypto/aes-x86_64 0x7060bf0a crypto_aes_encrypt_x86 -EXPORT_SYMBOL_GPL arch/x86/crypto/aes-x86_64 0xe409b491 crypto_aes_decrypt_x86 -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x13a65ecf camellia_ecb_enc_16way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x17bf48dc camellia_xts_dec_16way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x1a08ded1 camellia_xts_enc -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x47129015 camellia_xts_enc_16way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x7d54edc2 camellia_cbc_dec_16way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x7e87ef55 camellia_ecb_dec_16way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x8f185793 camellia_xts_dec -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x9e8086dc camellia_ctr_16way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x1103ba8b lrw_camellia_exit_tfm -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x16061d06 __camellia_setkey -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x1636abdf __camellia_enc_blk -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x1da0e256 camellia_crypt_ctr -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x31bbe42b camellia_crypt_ctr_2way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x50dc55b6 __camellia_enc_blk_2way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x7d06254d xts_camellia_setkey -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x930f687f camellia_decrypt_cbc_2way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xa41a5ad3 camellia_dec_blk -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xf4521fda camellia_dec_blk_2way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xfae2d491 lrw_camellia_setkey -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x02e7111e glue_ecb_crypt_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x54ecb5c6 glue_cbc_decrypt_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x8f02ac4d glue_xts_crypt_128bit_one -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xab95a669 glue_ctr_crypt_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xdefd8711 glue_cbc_encrypt_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xf7b68566 glue_xts_crypt_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x016a957f serpent_xts_enc_8way_avx -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x0c5a8af6 serpent_xts_dec_8way_avx -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x0ff3c26d serpent_xts_dec -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x4e9967df lrw_serpent_setkey -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x606a8162 serpent_cbc_dec_8way_avx -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x79ff0b7a serpent_ecb_dec_8way_avx -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x9ae34b2f serpent_xts_enc -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x9e018632 __serpent_crypt_ctr -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x9f99663c serpent_ctr_8way_avx -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xa2cb694e xts_serpent_setkey -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xa6d1b368 lrw_serpent_exit_tfm -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xa84ea33d serpent_ecb_enc_8way_avx -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64 0x19dc7881 twofish_dec_blk -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64 0x5e752773 twofish_enc_blk -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x1e817cdb xts_twofish_setkey -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x1fd77fb1 twofish_dec_blk_3way -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x61694b97 twofish_dec_blk_cbc_3way -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x814db39b lrw_twofish_exit_tfm -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x8d75ab44 twofish_enc_blk_ctr -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x8e856922 twofish_enc_blk_ctr_3way -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xf2d3724a lrw_twofish_setkey -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xf2e80e9c __twofish_enc_blk_3way -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00aaf935 kvm_disable_tdp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x01368082 kvm_get_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x01ccd216 __tracepoint_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0252724f kvm_read_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x070f9719 __tracepoint_kvm_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x07194194 kvm_complete_insn_gp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x075e6d53 kvm_set_apic_base -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x07898eea kvm_vcpu_halt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x080be3ad __tracepoint_kvm_invlpga -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0918dcd0 kvm_set_cr0 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x09b10f7e kvm_mmu_clear_dirty_pt_masked -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x09c14103 kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0a0e5d93 kvm_is_visible_gfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b95e3b0 kvm_vcpu_uninit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0ca41601 load_pdptrs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d4adf8b __tracepoint_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d93718d kvm_get_cs_db_l_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x10d193d3 kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x113f7c0b kvm_emulate_cpuid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x14eea16e gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17c114b8 kvm_write_guest_virt_system -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17ffc2fc kvm_mmu_slot_largepage_remove_write_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x182f4787 kvm_read_l1_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1b0e7a4e kvm_vcpu_is_reset_bsp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d0898fe kvm_get_dirty_log_protect -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f131765 kvm_apic_write_nodecode -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20d847a9 kvm_io_bus_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20de5193 kvm_disable_largepages -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20e2b089 gfn_to_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x21032417 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x21564cf4 __tracepoint_kvm_nested_intercepts -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25951981 kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25e4c0bc kvm_clear_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27036c3b kvm_write_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x298edaf8 kvm_mmu_load -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x29ff5919 kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2bfeee05 kvm_arch_has_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c78b8d4 __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2cead2b8 x86_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2fc3df69 kvm_irq_has_notifier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x317f9e6b kvm_enable_efer_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3336128d kvm_set_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x377f31f9 kvm_fast_pio_out -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3786156b kvm_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3bf47c8d kvm_arch_unregister_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e1f72e0 kvm_vcpu_cache -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x402daeec kvm_release_page_clean -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x40e3d637 kvm_read_guest_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x411797bd kvm_get_cr8 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x44046cb1 __tracepoint_kvm_nested_vmexit_inject -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x44b30313 kvm_mmu_slot_set_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45ef89ee kvm_queue_exception_e -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x47bbbe71 kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x490616e1 kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4ab4d4be kvm_inject_realmode_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4ae26399 kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55a455e6 kvm_is_linear_rip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55bc1046 kvm_arch_start_assignment -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x56150da7 kvm_mmu_unprotect_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5861fd6e kvm_cpuid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59b665e0 kvm_vcpu_reload_apic_access_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c396f30 kvm_lapic_set_eoi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x62c04c2f reprogram_fixed_counter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x64020e10 kvm_set_shared_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x64c67a88 kvm_x86_ops -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6581726a kvm_requeue_exception_e -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x669da1fd kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66e2dbb5 kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6a4a6c46 kvm_get_linear_rip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ac02d0d kvm_require_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6e14a300 kvm_after_handle_nmi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6f728455 kvm_mmu_reset_context -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6f75e3ea __tracepoint_kvm_write_tsc_offset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x709cd8cb kvm_spurious_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x70ee78bf kvm_set_msr_common -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x713fdd4a reprogram_gp_counter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x73ae496a __tracepoint_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x75fe24b7 kvm_mtrr_valid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x768ccc82 reset_shadow_zero_bits_mask -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79fc5974 kvm_mmu_sync_roots -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7aa64803 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7e2e5ec5 kvm_read_guest_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ff1ca84 __tracepoint_kvm_nested_vmrun -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8045ddde kvm_read_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x821994d4 kvm_queue_exception -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x831327da kvm_max_guest_tsc_khz -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8731e4c8 kvm_cpu_get_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x876f7e54 gfn_to_pfn_prot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8852ccb9 vcpu_put -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x889c1fec kvm_debugfs_dir -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x88ab6ea6 kvm_cpu_has_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x88d8f424 kvm_get_dirty_log -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x89287932 __kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x897bee03 kvm_task_switch -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8cce4dc4 kvm_arch_has_assigned_device -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ce4f3ab kvm_enable_tdp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8d4dffb5 kvm_set_cr4 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8da01274 kvm_get_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8e1cd06f kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x90b67724 gfn_to_hva -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x91f62b50 kvm_put_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x921dd3a7 kvm_apic_set_eoi_accelerated -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x943373d0 kvm_arch_end_assignment -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x968960a2 kvm_init_shadow_ept_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9732361a handle_mmio_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x97bfb74c kvm_vcpu_kick -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a216313 kvm_define_shared_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a336ff4 kvm_find_cpuid_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9c36b392 kvm_arch_register_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9d338d5d kvm_mmu_unprotect_page_virt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9eb192f9 kvm_vcpu_gfn_to_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa0ec3a0a gfn_to_hva_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1502f5d kvm_emulate_halt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa268897d kvm_emulate_wbinvd -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa3a8653b kvm_valid_efer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa47726ac mark_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa4c8c4bc kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa4d57013 __tracepoint_kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaace0a77 kvm_write_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xabe9970a kvm_emulate_hypercall -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xacf7f97c gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaf24d592 kvm_flush_remote_tlbs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xafc10de1 kvm_get_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaffcd092 kvm_requeue_exception -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1cc6be5 __tracepoint_kvm_inj_virq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb326aecf kvm_read_guest_virt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb4b3808a kvm_set_msi_irq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba9ed435 kvm_mmu_set_mmio_spte_mask -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc1adc2cb __tracepoint_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc1f5c5fb gfn_to_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc32a4f45 kvm_get_rflags -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc4159624 kvm_before_handle_nmi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc56d75ce __kvm_apic_update_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc599bc18 kvm_max_tsc_scaling_ratio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcaa24916 vcpu_load -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcb2d6475 kvm_mmu_invlpg -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcc4b5eb1 kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xceeaf165 gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcf0b30d5 __tracepoint_kvm_pml_full -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcf3afcfc kvm_mmu_slot_leaf_clear_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcfe5f5b1 kvm_get_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0459e67 kvm_has_tsc_control -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0b2727a kvm_mmu_set_mask_ptes -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd1a42ffd kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd32f9c33 kvm_set_xcr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd390c681 kvm_require_cpl -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd64a1c70 kvm_lmsw -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd6772354 kvm_get_apic_base -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd677f5df kvm_release_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd6a2c046 reprogram_counter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd716ab69 kvm_set_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd92b6fe7 kvm_set_rflags -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd937d3b0 kvm_intr_is_single_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd93bbd46 gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdac39c5b kvm_set_cr8 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdbc1f415 kvm_inject_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde95ff80 kvm_mmu_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdea1ad23 kvm_write_guest_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdedcb6e6 kvm_get_msr_common -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdef02c21 kvm_clear_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdf806478 kvm_rdpmc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0611544 x86_emulate_instruction -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0bc2fe7 kvm_mmu_unload -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe2ad7c3d kvm_mtrr_get_guest_memory_type -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe36aa087 kvm_inject_pending_timer_irqs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe4e645fd kvm_apic_update_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe50167b7 kvm_scale_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe7a402f7 kvm_vcpu_block -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe84b6784 kvm_inject_nmi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe9e9ac9e cpuid_query_maxphyaddr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeae3e75f kvm_read_guest_page_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf143c70b kvm_set_cr3 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2312a76 __tracepoint_kvm_ple_window -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2341ab7 kvm_vcpu_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2f286c4 kvm_tsc_scaling_ratio_frac_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf41e94f5 __tracepoint_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf74da41b __x86_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf752dfdc kvm_write_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf8d4b2e1 gfn_to_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf8f4642c __tracepoint_kvm_nested_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfbd95c91 __tracepoint_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfd9ff028 kvm_init_shadow_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfe509e09 kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x1531c44d ablk_decrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x8fe5845c ablk_exit -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x95f86c6a ablk_init_common -EXPORT_SYMBOL_GPL crypto/ablk_helper 0xab388efe ablk_set_key -EXPORT_SYMBOL_GPL crypto/ablk_helper 0xb1a98137 ablk_encrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0xbb1dba53 __ablk_encrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0xe68bbfac ablk_init -EXPORT_SYMBOL_GPL crypto/af_alg 0x11badcb8 af_alg_wait_for_completion -EXPORT_SYMBOL_GPL crypto/af_alg 0x15a3e80b af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x3ee5dabb af_alg_link_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x65f4f50f af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0x69e6c659 af_alg_complete -EXPORT_SYMBOL_GPL crypto/af_alg 0x72bd7c2f af_alg_cmsg_send -EXPORT_SYMBOL_GPL crypto/af_alg 0x7b5447ca af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x8d483be8 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0x930d10c0 af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x98cb04c7 af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xf973e9d5 af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xa6e28a06 async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x00cd42d7 async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xe5cd39a5 async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x184fb532 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x8a15bdb1 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x06a4dba0 async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb48dde1c async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xbfd3e136 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xdf788739 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x3f6faf8f async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xc30d0177 async_xor_val -EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0x81231afa blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0xc38dc508 cast5_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x09b71ee2 cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt -EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 -EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 -EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 -EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x7f2446ad crypto_chacha20_setkey -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0xe37f24b8 crypto_chacha20_crypt -EXPORT_SYMBOL_GPL crypto/cryptd 0x10197b64 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x2413e6f9 cryptd_alloc_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x4c6e4e51 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x5663c5c6 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0x62b0b7d1 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x6b3faf3d cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x82329665 cryptd_free_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xa4107caf cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xb8b5a763 cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xfe269a21 cryptd_ablkcipher_child -EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey -EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey -EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table -EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table -EXPORT_SYMBOL_GPL crypto/lrw 0xd8599a79 lrw_crypt -EXPORT_SYMBOL_GPL crypto/mcryptd 0x215478cd mcryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/mcryptd 0x259100e2 shash_ahash_mcryptd_finup -EXPORT_SYMBOL_GPL crypto/mcryptd 0x3f92e71f mcryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0x750aaa5a mcryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0x7b6d7b67 shash_ahash_mcryptd_digest -EXPORT_SYMBOL_GPL crypto/mcryptd 0x7fbd82d5 shash_ahash_mcryptd_final -EXPORT_SYMBOL_GPL crypto/mcryptd 0x7fe0dcde mcryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/mcryptd 0x8347667c mcryptd_flusher -EXPORT_SYMBOL_GPL crypto/mcryptd 0x98d71401 shash_ahash_mcryptd_update -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xa64e400e crypto_poly1305_init -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xa6f42c8e crypto_poly1305_setkey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xbf5dc587 crypto_poly1305_update -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xede66e47 crypto_poly1305_final -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd94efed3 serpent_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0xd0c8deb0 twofish_setkey -EXPORT_SYMBOL_GPL crypto/xts 0xa9b9fd28 xts_crypt -EXPORT_SYMBOL_GPL drivers/acpi/nfit 0x433d8257 acpi_nfit_attribute_groups -EXPORT_SYMBOL_GPL drivers/acpi/nfit 0xd5a27822 acpi_nfit_init -EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x1c8984c7 acpi_smbus_unregister_callback -EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x87bd07bd acpi_smbus_register_callback -EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0xb9a141b0 acpi_smbus_read -EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0xe1372311 acpi_smbus_write -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x119f16b9 ahci_reset_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x16b9f071 ahci_reset_em -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x386402c0 ahci_shost_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x39b37cc7 ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x46a027be ahci_init_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x49c282e9 ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4a8c1a97 ahci_stop_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5457babd ahci_handle_port_intr -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5bbdd06e ahci_error_handler -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5ee37598 ahci_start_fis_rx -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6b7c2c29 ahci_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6ef0e223 ahci_kick_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x89f3b00b ahci_sdev_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ceb7ad0 ahci_print_info -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x94b261ba ahci_qc_issue -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9c64e0ef ahci_start_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa16b6a41 ahci_check_ready -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xadf1724b ahci_host_activate -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb090b2d5 ahci_dev_classify -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb1631e77 ahci_port_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc2c0f4a9 ahci_set_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe9053721 ahci_save_initial_config -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf41a971a ahci_do_softreset -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x49c3f841 ahci_platform_suspend_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x4a903185 ahci_platform_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x686e6c45 ahci_platform_disable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6e6205d1 ahci_platform_get_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x704b07b6 ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x75c42485 ahci_platform_enable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x88812f60 ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9f6ee446 ahci_platform_disable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa5b1bc6b ahci_platform_init_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc0e8d398 ahci_platform_enable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc71530de ahci_platform_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe4696459 ahci_platform_resume_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf5ea9469 ahci_platform_suspend -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xb1cc470c __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x02ff9464 cfag12864b_isinited -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x0ecb2e5d cfag12864b_disable -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x305dc3c6 cfag12864b_isenabled -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x3389f926 cfag12864b_enable -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x9522a342 cfag12864b_getrate -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0xc48e9d95 cfag12864b_buffer -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x1d430069 __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x4ab31875 __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xcd340e7b __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xfa7caa78 __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1c10d131 bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1ed679b8 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x26a56f3f bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x351b27af bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3a4c8dd3 __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x405eea90 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4bfc48d3 bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x55acbc89 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x594376dc bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5a527e88 bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x765e6ba6 bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x870f919c bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8d9daed0 bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x917fb077 bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x98c35241 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9db96f53 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa43a54b7 bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xab4c86e0 bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaca30f40 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbfd29f95 bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc8cf3ae0 bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd4b2e686 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe1c52f5a bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfe9acefd bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x6d6e42e4 btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x8087e170 btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x82b2e1c6 btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x8f4a771d btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xab1b1090 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf627bed1 btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0ef6ca6b btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x13870d76 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1c892306 btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2ccfc7d8 btintel_hw_error -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3b6c38e1 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6bb4e363 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x72f210ce btintel_set_event_mask -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x85265f4c btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe692f0ef btintel_set_diag_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xecae6b55 btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf9cfb6a5 btintel_secure_send -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x03e8a286 btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x11840a41 btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x324a8941 btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3ff0b8bf btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8f1d7bf5 btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x91ea1bfb btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xaa3df1bb btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xab1e707f btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xadbe2076 btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc1325346 btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd2429e34 btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x1565c405 qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x3a992828 qca_uart_setup_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x72579621 btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x8dd1b7fa h4_recv_buf -EXPORT_SYMBOL_GPL drivers/cpufreq/speedstep-lib 0x1b1f2bda speedstep_get_freqs -EXPORT_SYMBOL_GPL drivers/cpufreq/speedstep-lib 0x2b67f096 speedstep_get_frequency -EXPORT_SYMBOL_GPL drivers/cpufreq/speedstep-lib 0xd7ab2c0c speedstep_detect_processor -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x04773b60 ccp_present -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x294178e4 ccp_enqueue_cmd -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x14e6eadc adf_exit_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1c962dfd adf_disable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2239abe2 adf_dev_start -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x22cfe1ca adf_dev_started -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x27bf06e7 adf_devmgr_update_class_index -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2830110a adf_dev_in_use -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x29196966 adf_disable_vf2pf_interrupts -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x294e254c adf_exit_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2dfeaa9f adf_update_ring_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x38e47b4c adf_enable_vf2pf_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4479c55d adf_init_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x44cfe40f adf_dev_stop -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4a5d2541 adf_dev_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4c12ea06 adf_response_handler -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x543e66de adf_init_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x558bc431 adf_devmgr_in_reset -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5621af82 adf_cleanup_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5a75130f adf_cfg_dev_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5de1a9e5 adf_cfg_add_key_value_param -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x60744501 adf_dev_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x613e0851 adf_dev_get -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x652a2e92 adf_sriov_configure -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x67ca03d0 adf_devmgr_add_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6b44cb8b adf_devmgr_pci_to_accel_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6f38d59b adf_cfg_section_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x767baec4 adf_disable_sriov -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x77336637 adf_devmgr_rm_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7c9177e0 adf_cfg_dev_remove -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8a14463f adf_disable_pf2vf_interrupts -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x96a53f2b adf_init_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9707e8e4 adf_enable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9fb6279c adf_dev_put -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa95b5aad adf_service_register -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xae8381e2 adf_iov_putmsg -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbb9001ca adf_send_admin_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc9e560b4 adf_service_unregister -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcc3b167a adf_clean_vf_map -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd10eb6f1 adf_enable_pf2vf_interrupts -EXPORT_SYMBOL_GPL drivers/dca/dca 0x01a33ab9 dca_unregister_notify -EXPORT_SYMBOL_GPL drivers/dca/dca 0x0f16ec37 alloc_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0x10448b28 dca_add_requester -EXPORT_SYMBOL_GPL drivers/dca/dca 0x31a2c8df dca_get_tag -EXPORT_SYMBOL_GPL drivers/dca/dca 0x3a9fa802 dca3_get_tag -EXPORT_SYMBOL_GPL drivers/dca/dca 0x8e3ae926 dca_remove_requester -EXPORT_SYMBOL_GPL drivers/dca/dca 0x915068d5 unregister_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0xac34ecec dca_register_notify -EXPORT_SYMBOL_GPL drivers/dca/dca 0xb242c074 free_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0xd393edd1 register_dca_provider -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x3ddc7009 dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x45a0c34f dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4802fb21 dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x9cfbd4a6 dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf6d1f185 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x5d0f3071 hsu_dma_irq -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x87788f6d hsu_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xcaab03f0 hsu_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x64f044fe vchan_init -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x8082dcf5 vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xc10912a0 vchan_find_desc -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xfaf670b1 vchan_tx_submit -EXPORT_SYMBOL_GPL drivers/edac/amd64_edac_mod 0x4e6e6ad2 amd64_get_dram_hole_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x03e51f81 edac_device_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0b24f655 edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x146f1185 edac_pci_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x20095977 edac_mc_free -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x21b15227 edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x34dfbe03 edac_pci_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x376d704d edac_pci_reset_delay_period -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x383eaa72 edac_device_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3a6a3b55 edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x40458623 edac_pci_handle_npe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x480b4bc3 edac_device_handle_ce -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x50947658 edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5720aa69 find_mci_by_dev -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e880013 edac_pci_handle_pe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x78f446ee edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa5e4d7ab edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa8503b08 edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xaafd4828 edac_device_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc110010b edac_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xda09c121 edac_mc_alloc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xdfdec048 edac_device_handle_ue -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xeff76b9b edac_mc_del_mc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf582d821 edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x14878009 amd_report_gart_errors -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x1d34e996 pp_msgs -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x81d75507 amd_register_ecc_decoder -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xb30b7e56 amd_decode_mce -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xd3cc2686 amd_unregister_ecc_decoder -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x39440f35 fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x51d48996 fpga_mgr_firmware_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7a8b6a28 fpga_mgr_buf_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd599ec86 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xed2f777f of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xfcaaf777 fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x381708d6 bgpio_init -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xaa95323c bgpio_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x0ae0ce0b __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x819d4b40 __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2ead8425 drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5cb3f6a4 drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf79e54fb drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x05876c69 i915_gpu_busy -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x08a7896d i915_gpu_raise -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x402468e9 i915_gpu_lower -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x500858b9 i915_read_mch_val -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0xe7237b0b i915_gpu_turbo_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x13f77ae6 ttm_dma_populate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x17639a15 ttm_dma_page_alloc_debugfs -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6f709c4f ttm_dma_unpopulate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0e181a2e hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x17c3dbf0 hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1b5a7785 hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0x21dec644 hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3c1a9eea hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4cf0ede7 hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x52221c09 hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5ab9f93c hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5c2b24c4 __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5de15f69 hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x76eb807e hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0x776478d5 hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0x77b13a2e hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x835164f9 hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0x86f07d14 __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x87e80a90 hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x888f2730 hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x97a8784b hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x993d9cc5 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa7c810e8 hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa8f923e8 hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbf8b2da0 hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc0905012 hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc6ebaf84 hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcc96e50e hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xce677ae2 hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcfad7da2 hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd94775a4 hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xdacd5fa1 hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf369771c hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf395585b hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf3afd4db hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf4597dcf hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf8a3d583 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf9d08f9f hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfb8e7ac0 hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0xdb7c1d8d roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x1024114f roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x5afa6ad4 roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x9f380f3c roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xad4b0671 roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd6d9ac70 roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xf9c08913 roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0e5806ff sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2e98a9ee sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x62539c60 sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x71d84155 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9ea6e63b sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa47c1660 hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb3c2c9c9 sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc6715193 sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe3b0358d sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x13ded7ab hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x071c1701 hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x27f8629c hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2c2f7385 hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3048ecf4 hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x397a48e7 hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3a433757 hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x405e4003 hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x70e6cdc9 hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7a535874 hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xae451d91 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb929ac74 hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc1cfb6cf hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcb020abb hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcbbd6afb hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdca23933 hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xedfd03af hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfcfd6cc3 hsi_async -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x10b030f4 vmbus_sendpacket_pagebuffer_ctl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1a25cd8a hv_do_hypercall -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1b739da8 vmbus_recvpacket_raw -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x25a0a3d2 vmbus_cpu_number_to_vp_number -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2ac09dad vmbus_set_sc_create_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2e6f5b26 vmbus_allocate_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x358fafa5 vmbus_prep_negotiate_resp -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3d600d6a vmbus_hvsock_device_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x41aeb8af vmbus_are_subchannels_present -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x48c6806f vmbus_teardown_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4fd3d91e vmbus_sendpacket_pagebuffer -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x59a9e7d3 vmbus_set_event -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7e431dcd vmbus_sendpacket_mpb_desc -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7f8c84e6 vmbus_driver_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x86ff5fa6 hyperv_cs -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x888e22a3 vmbus_setevent -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9787aaba vmbus_get_outgoing_channel -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xca0eec89 vmbus_establish_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xcb43b95c vmbus_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xceace942 vmbus_set_chn_rescind_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdb2f6047 vmbus_free_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xeadb5fcc vmbus_send_tl_connect_request -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf08f4259 vmbus_sendpacket_multipagebuffer -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf188f31c __vmbus_driver_register -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xfd628ff7 vmbus_open -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x5b5c0a7a adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xa4c07067 adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xc153867b adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x01843121 pmbus_check_byte_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0fc36b06 pmbus_write_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x15512893 pmbus_update_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x23067098 pmbus_read_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2db4b722 pmbus_read_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4437eeff pmbus_do_remove -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x79ef0fd4 pmbus_check_word_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x97e95718 pmbus_do_probe -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xadd9019e pmbus_clear_cache -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xba9c487d pmbus_get_driver_info -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xbae6dc53 pmbus_write_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xbdc42f81 pmbus_write_byte -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe03b03e4 pmbus_regulator_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe35bfc2b pmbus_set_page -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf5d7fb8b pmbus_clear_faults -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2954d109 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x53bc2697 intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb3ddaeef intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xeb58e3b5 intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xeb6ad148 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xeebb131c intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf77235a4 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x09fab355 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x1a83fb9a stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x8b0d378f stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa6117474 stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb06913af stm_unregister_device -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x0eea0bdf i2c_dw_probe -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x71543e3b i2c_dw_disable -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x9fd873c9 i2c_dw_read_comp_param -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xa32516e6 i2c_dw_disable_int -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xbe61c2e8 i2c_dw_init -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0x75b89f57 nforce2_smbus -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x255e978d i2c_add_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xac37f6ec i2c_del_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x57277315 i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xd8747c40 i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x277ec839 bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x32652732 bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xb63f3b71 bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x086b6d7c ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x135116f7 ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x2f151645 ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x30b45985 ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x365f167f ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x3f307741 ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x70898473 ad_sd_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xaf6c5ea8 ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe57bf9a4 ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7687ff4e iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x87e1edcb iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x3b7927be ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xd63906f2 ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x22eafa16 bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x526c68b7 bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x54693ac3 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x25faef6a adis_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x29bb8282 adis_reset -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x53695dc2 adis_write_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x63531026 adis_remove_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x6cc5efab adis_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x7a4ad6ab adis_check_status -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x86e3320a adis_read_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xb8dbb80b adis_initial_startup -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc281747a adis_probe_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xd58eab26 adis_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xd8fb76e6 adis_init -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf387b1ba adis_update_scan_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x02b39f3f iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x058a8418 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1bdd1a94 iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1c405ac5 devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1ce831fd devm_iio_trigger_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2af9a8fc iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x304b1a23 iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3e180377 iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x55084d88 iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x560e6461 iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5f18f4c0 iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x67c6cc2a iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6bb08242 devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6db82791 iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7663c99a devm_iio_device_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x79ad055a devm_iio_device_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x915bada2 iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9e360c2b iio_scan_mask_query -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa3f60aa3 iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xad77eba1 iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb08035dc iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbadc66cc devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcbb926ca iio_update_demux -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcc0a1cdf iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcde5becc iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd79f0030 iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xda405728 iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe60de483 iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xed7e67d1 iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xeea7930b iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf4e72055 iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x8a8616f2 input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x89d59b9c adxl34x_probe -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x0a82c6ef cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x37db9279 cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x7c94c09a cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x3f5b5c61 cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x6ecfacb6 cyttsp_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x84f9f214 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x6fcfeaab cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x8f4fbfa5 cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x9feb3e9a tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xa12d89fb tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xc0fc6ed3 tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xc3e4b1d4 tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0fc0c8d1 wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1d788760 wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x20a3b0eb wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x27168a36 wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x327d4635 wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x614ee2bb wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa7852aa4 wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xcc6c9aa4 wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xce206ca3 wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd01750dd wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd1d287fe wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd56ccbf2 wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x15906f39 ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1919927b ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x26ff6602 ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x49badea6 ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4bc16596 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x9a24c841 ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb35a0edd ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xbaf9305f ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xdc780053 ipack_device_del -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0f8398cc gigaset_freedriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x1f4909c5 gigaset_fill_inbuf -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x1f913f08 gigaset_shutdown -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x215cf618 gigaset_if_receive -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x5aeae6b6 gigaset_handle_modem_response -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x5ec2705e gigaset_stop -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x6cf0ffb0 gigaset_isdn_rcv_err -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x781628c8 gigaset_m10x_input -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7d5f2645 gigaset_start -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x830962e0 gigaset_skb_rcvd -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x88c5d5ac gigaset_add_event -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x979b613a gigaset_freecs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa44415c4 gigaset_blockdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd4e2bd71 gigaset_initdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd992c6ca gigaset_initcs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe6de03ca gigaset_m10x_send_skb -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf7c62033 gigaset_skb_sent -EXPORT_SYMBOL_GPL drivers/leds/dell-led 0x86fd1ffb dell_app_wmi_led_set -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1c6e1e91 led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x58195f53 led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7e8d11ab led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x89178732 led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xbc83b941 led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xd175a817 led_classdev_flash_register -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x072f365a lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x226c13ce lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3706702c lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x375c0adc lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3d2c62fb lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3f067edf lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x90bc1bbc lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd44d858b lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd45819ed lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd50580e5 lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd8793e1d lp55xx_unregister_leds -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x0d086c60 __mcb_register_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x172a628d mcb_alloc_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x29322c3d mcb_bus_put -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x315f20cd mcb_unregister_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4c3207b7 mcb_device_register -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x544819bc mcb_bus_get -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x7c14a71b mcb_release_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8b32e4f6 mcb_alloc_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xab3aef3a mcb_request_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb94c53ad mcb_free_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc00ee207 mcb_bus_add_devices -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xcca44321 chameleon_parse_cells -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd61adc2b mcb_get_irq -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x021811cf __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0f0677b8 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x10e6a889 __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1154f7a1 __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15aa8e40 __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x174c2a29 __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2205bcf9 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3fc7cb7f __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x469f38de __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4ba51ecf __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5b2a89c7 __tracepoint_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d950f2a __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5e21030c __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5ed04550 __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6eef9654 __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x74ab7b0f __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x84efb763 __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8fe32879 __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x91f02667 __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x93f7fc02 __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa1de5277 __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa81bf581 __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7d964de __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbbace2cd __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc6673631 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8a2f711 __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe3de2ba2 __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe902838d __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec919105 __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeea27f46 __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfad1ec73 __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x153bcb7e dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1fe441c6 dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x21482bbf dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x22916b0a dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4b4f35fc dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5cce9f94 dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8c4d4e17 dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x914f914f dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf8a0b418 dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2b92d7ef dm_bufio_client_create -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aba7f5e dm_bufio_get_block_number -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9310ba06 dm_bufio_release_move -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9c256008 dm_bufio_get_device_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa1d2413a dm_bufio_read -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa448e19f dm_bufio_prefetch -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xafbda3f3 dm_bufio_new -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcbb1bae2 dm_bufio_get -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x3b9aa55a dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x514430d9 dm_cache_policy_get_hint_size -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7de3068a dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x9496495e dm_cache_policy_get_version -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x9bd0a595 dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbd1f346f dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xd2390d19 dm_cache_policy_get_name -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xd681e4c8 dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xee97c44a dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x1bccffb8 dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4430764e dm_rh_region_to_sector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x45ab972a dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x536b6b67 dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x67e5e8fb dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa68e1f06 dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf7fa5bdd dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf9c23ed4 dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfa1aee00 dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfad9d53a dm_rh_get_region_size -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfc62ef4e dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x17c36f29 dm_bm_checksum -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x25046c04 dm_block_manager_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42dbdfc3 dm_tm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49b35849 dm_sm_disk_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x55b4bd4d dm_tm_create_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x827a42f4 dm_tm_open_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9f624559 dm_sm_disk_open -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xafeda29f dm_bm_write_lock_zero -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd29923fb dm_tm_shadow_block -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf375d009 dm_bm_write_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf5455120 dm_bm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize -EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x25f73f8b saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x41c72fae saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x57d61d86 saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x598abe9f saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9152138e saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x982ff6e0 saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xabea4c0b saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc48be3b8 saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfbfc95c0 saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xff745a40 saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x05b399eb saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x2dc053da saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x4664812b saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x53bf82c0 saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x96d05621 saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xcefca34d saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xff43c057 saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x14db78b8 smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x231584e2 smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5b081f03 sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63d4a4ce smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x78a1858b smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7b5c72b8 smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x928271c4 sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x92bf8f59 sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9f4d731c smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa4e43a52 smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xab97afc5 smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb2d51577 smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb706dc7d smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb7308ee4 sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xce23e4f7 smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdabf1fe6 sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfc15dadf smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x0519d448 as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x3fd769c1 cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xd7541ef0 tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/media 0x265572cc media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/media 0x39fd88f9 media_entity_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/media 0x4138e7fb media_entity_get -EXPORT_SYMBOL_GPL drivers/media/media 0x515b4b9c __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0x53151b34 media_entity_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/media 0x5f452477 media_entity_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/media 0x77fae103 media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/media 0x7d1778d4 media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/media 0x809b0871 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/media 0xb224121f media_entity_create_link -EXPORT_SYMBOL_GPL drivers/media/media 0xb2ab535d media_entity_put -EXPORT_SYMBOL_GPL drivers/media/media 0xc0f99305 media_entity_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/media 0xc7fb73ab media_entity_init -EXPORT_SYMBOL_GPL drivers/media/media 0xd0e32139 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0xe540fd5b media_entity_cleanup -EXPORT_SYMBOL_GPL drivers/media/media 0xe5e26c51 media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/media 0xe7a1b41f media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/media 0xfa3e9354 media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x019569df cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1aef409d mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x22562497 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x25284b86 mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2b29d630 mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x305ce8c3 mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3c33d370 mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x45488cee mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4a95f336 mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x57a80b83 mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5b5de3dd mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x613ea245 mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x82813e1d mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa2432474 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb7bbfdbe mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb9ba6008 mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc9ce55e5 mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcdf4169e mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe3b70676 mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe6f3cc95 mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0512a806 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x195cf4e1 saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x28caab09 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x312ecd75 saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x355f9c70 saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x35e87361 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x476209f4 saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4e4f59ef saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x57681169 saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5fa115b4 saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x622ecde3 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6cf89043 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x81b669ee saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x81b71bdf saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x97cd99b1 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa5064a32 saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xda4aae38 saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xeb54a1f7 saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xeb592031 saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x09d9a135 ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x31611141 ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x992a5003 ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xbf8f2b73 ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xddfa2e7a ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xe5e576a8 ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xf37d36d1 ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x4127712b radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xca5f3c38 radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0af59cc0 rc_close -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x207409ef rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2bdfc3e7 rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x37c163e3 rc_map_get -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x45e0237b ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x662f5e7b rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x669e7f1e rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x70faeafd rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x723ea718 rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9d9127cf rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa04bfa80 ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb99c1e67 rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc28901b1 rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc53a4cd6 rc_open -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcae23061 ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd1918847 ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd8714aef ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xee886d61 rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf0981aec rc_repeat -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x2340a0dc mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xb94a70df microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x8e92bc77 mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xd1ac5c3d r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x43657785 tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x5ae247d5 tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x0f757f95 tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x3972d0a5 tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xdb26a358 tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x47b4e96f tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x9ccb39b4 tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x743876b5 tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xae3a4331 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xcc7a1ddd simple_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0634f0c2 cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2aae3836 cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2dc49cdd cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3dff6211 cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5d49f37a cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x627ecdd7 cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x68020102 cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6acc75d6 cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa0261825 cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa237fb70 cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb28c3336 cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb8d34900 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbecfdc20 cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe65689a2 cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe80246ca cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xea26bf42 cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xeb3741c5 cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xec5a31f0 is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf500a7b3 cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfe2e51a2 cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x61e3c87e mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x825ef8bf mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x071cc100 em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0a07f730 em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1d387f95 em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x46c8bda1 em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x64943149 em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x781fd7a6 em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7a152c7f em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7abf3554 em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa03fe270 em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb7c643b6 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcadcc100 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcbba7d9f em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd0b9778a em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd5c8509f em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdc8063c8 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe71210ef em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe8033f1b em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xffa3343d em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x0e5d4fc6 tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x4a5d209b tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x4e0cc0e9 tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x76b60d0d tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x17ec5a9c v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x5de48476 v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x96b72b6a v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x9b893e87 v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xa65a1340 v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xba87d9bb v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08982d59 v4l2_match_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x27e52d2f v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x6c568fb8 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x33bf7118 v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x381b9116 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4aff0efb v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4f53d263 v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x53e0c583 v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x57c055aa v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x597016bd v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x66df1fb3 v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6b177d2e v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x82407e04 v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8b4febba v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa2b53b1d v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xab3add21 v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xabe68df1 v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xafe9fd71 v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb0b7800f v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb166e4c9 v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc0481405 v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc17589d9 v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc79ffd16 v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc7ad11e2 v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcb7f6df4 v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xea43b759 v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf19b665c v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf4af2591 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf64ac453 v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf9cc4183 v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0d28e2c6 videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0f2ed804 videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x16f5eda4 videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1fd8ca62 videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x31e5f6c1 videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3470624a videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4222648f videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x46457378 __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4e9bf24e videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5b434aa7 videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5bee9d34 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x67ad1918 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7b1a8bb4 videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x83019ceb videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8e9d7d14 videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa00e1986 videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbf5d0e0a videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd1d0aa2e videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd20b637a videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd47f992c videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd5642cdc videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd95813b0 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xedbfa703 videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf735dd92 videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x9bb4ed0c videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xbcc1562e videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xc6fc1a60 videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xeff1f573 videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x0ecbca45 videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x1cc6946c videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x70e01b33 videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x20f3c66f vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x21a4133e vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2ad175f2 vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2dc3d18a vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x573e82d7 vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6b6b7943 vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6f1c325d vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7596e84a vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x8371a000 vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x89c4da95 vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x946bce4e vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa3a80f3f vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xae96e9aa vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd53eddaf vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe31730e2 vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xebbb3816 vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf0284179 vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf9661c36 vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x9804c37a vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xd558694a vb2_dma_contig_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xc5e394bb vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd30ec30f vb2_dma_sg_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xf64a2802 vb2_dma_sg_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0xf515769f vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0031e0f6 vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x09161ce3 vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0b72330a vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x100fc837 vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1920876b vb2_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x348d8556 vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x480de3c9 vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x484b88e5 vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4b353176 vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x55efebd1 vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5af2a839 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6d178e44 vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x720dc772 vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x728bd347 vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x86a07d71 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8889697d vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9a5d9e04 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa3c0719c vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa63f8f45 vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa8a57028 vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb19da169 vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbe1babf8 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc5de7807 _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc76a8196 vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xcf3fa127 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe2cfce4f vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe2fe8c44 vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe9f603fe vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xeecdda3b vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf1c62ff8 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf269558a vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xfe5a5f40 vb2_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x25abf3ad vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x02027cec v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0640207b v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0c7b5fdd v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x133adfc4 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1ef3a428 __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x27454ee3 v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ab9d732 __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x32064690 v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x35238679 v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x37c3dede v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e73fa8d __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e8ce6c0 v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4f60c5c2 v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4fdbdd2a v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5a59de95 v4l2_compat_ioctl32 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5e70676f v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74a017c5 __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x776916f4 v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7b49d18b v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7bfda7d4 __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8c8149f9 v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8e63f95b v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9b5cbc10 v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9b81167e v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa2b4a9b1 v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa4bcad3c v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaca2544a __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb0446e08 v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb1b34ceb v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb4b92cfe v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbe722a5b v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6429d8b __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd3265170 v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe56bb45d v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeac0e176 v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf453c7e1 v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfb1e2ed0 v4l2_device_put -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x2535daec pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x492199f1 pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x8946a398 pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x5bef6d84 da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x8f509760 da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x913ab3ec da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xaa67526d da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb2a98414 da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb6e5117a da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xc25f288b da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x0bcf8aaa intel_lpss_resume -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x2380b528 intel_lpss_probe -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x2d35d506 intel_lpss_prepare -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x3c44de18 intel_lpss_remove -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x59171cb6 intel_lpss_suspend -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0140d4a3 kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x09a823da kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x18cfd08c kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1a1a0b38 kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1c59d385 kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x83c9157e kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xbda005b8 kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd79fb9f2 kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x70245a83 lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xc48032f6 lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xc51a9464 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x10e319fc lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x480c7bb2 lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x63ccae34 lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x66c0a539 lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7d26eca0 lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x9fa79b93 lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xef42f3d9 lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x6e0514ad lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x734b7ea9 lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x951b9eec lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x23f7d8fb mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x634d93db mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x714266b3 mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x8420f3df mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x9c45b471 mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xd2aeabf8 mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0b7ab166 pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x118e0100 pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1c6e26be pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3b1c2176 pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3d93226d pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x605c5818 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa4560676 pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbb70fd1d pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbd52bbce pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc930d3c2 pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xca9f8c41 pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x39766a43 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x95d50d76 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x2e94685b pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x7f3cdc8e pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x823611a7 pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xaabcfc39 pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd6803bf0 pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0d6e7d64 rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2793b0cb rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x299e106e rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2f848951 rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3860225d rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3f90fa97 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5f3a1f62 rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x6809d664 rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7319c4f0 rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x794baf6c rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8fe4735c rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9ad99fbd rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9e8b8d56 rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xaa603fd8 rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc5f764a7 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc7025f8d rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xca543301 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xcd718407 rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd2a62512 rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xdb9701f0 rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xdba150c4 rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xfb9e53ae rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xfcd81c3f rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xff73fab1 rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x6321aef2 rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x6b196f95 rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x7098dcf1 rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x7b92df5b rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x7ee6769c rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x895b5789 rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x9c298ec5 rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xa3cc5308 rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb35d4c2d rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb64a57e6 rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xcb60c5f0 rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xde660254 rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xecefd3d7 rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0085d678 si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x041d6d43 si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x08eef901 si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1ce0a9d9 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2a40bbc5 si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3aec7a6c si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x429cb153 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x43224ca8 si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4c82cd88 si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4e99b3e0 si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x50fea63d si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x57d3a9c1 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5d1edc5c si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x617659e3 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x695ba06b si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6e3eb375 si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x717cb4ba si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9d44a85a si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9fb9165b si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa0091494 si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa1e6ba1f si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb36e1a8e si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb659bcb3 si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc0d29cf8 si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc2ffd7cc si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd5e5fb78 si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd63eaf4a si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd970083f si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdb82bb5c si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xea9fc424 si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf6183838 si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf8e13238 si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfcf26b07 devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfdf1d33a si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x7b4833e3 sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xcbb7f568 sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xe1cdabca sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xe365f716 sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xf81b18d5 sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x1a0f047c am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x267e5476 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x81086f58 am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xfe2f541a am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x0ea299b4 tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x32395c6a tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x6acf1fb1 tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xc7b12cba tps65218_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x2fecbf9b ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x1167ac55 bmp085_regmap_config -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x3a77f8dd bmp085_remove -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x4ad9bcb0 bmp085_detect -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xbd2fc736 bmp085_probe -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x89f20b7b cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xa456412d cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xa5015fa0 cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xe86bc3b0 cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x07f702ea enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x223d2797 enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x428e7fd8 enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa820ff66 enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xae489886 enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb9bea04c enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd83caddb enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xff7d71cb enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x116516b4 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4e514b34 lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5a4c972a lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7740100d lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7c39aead lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xad247162 lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb9cd68ed lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc2a1edc8 lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0b74772f mei_irq_read_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1b467102 mei_cancel_work -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x2b1b8193 mei_restart -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x2d7ff621 mei_cldev_send -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x2dd4110a mei_cldev_get_drvdata -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3ed3d773 mei_write_is_idle -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x405b4831 mei_irq_write_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x411b8e6c mei_cldev_set_drvdata -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x41a812ed mei_cldev_enabled -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x4cec157c mei_register -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x5a8308a4 __mei_cldev_driver_register -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6079d188 mei_start -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x634c23bb mei_device_init -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x70bc3636 mei_deregister -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x70d05050 mei_hbm_pg -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x81f21535 mei_cldev_enable -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8a9df0c0 mei_cldev_ver -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9e7bc764 mei_cldev_disable -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa128ba92 mei_cldev_register_event_cb -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa25e7229 mei_irq_compl_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbeeab9bc mei_cldev_driver_unregister -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc4260553 mei_reset -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xcb340b66 mei_cldev_recv -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe1d8d986 mei_hbm_pg_resume -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe8dd0278 mei_fw_status2str -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf8d8e105 mei_stop -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfc21f210 mei_cldev_uuid -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x6a5d0879 cosm_register_driver -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x6d020652 cosm_unregister_device -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x9da4bfaa cosm_find_cdev_by_id -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0xccd4e4f3 cosm_register_device -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0xe460a64d cosm_unregister_driver -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0x68b1913a mbus_register_driver -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0x6f03f663 mbus_unregister_driver -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0xcbb8faa7 mbus_register_device -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0xe8a14c68 mbus_unregister_device -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x12bc435c scif_register_device -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x719079f2 scif_register_driver -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x8e76ebe6 scif_unregister_device -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x994cec6f scif_unregister_driver -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x0172ba68 scif_register -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x0ec448dd scif_send -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x0f59e92c scif_bind -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x31f517c5 scif_get_node_ids -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x325656ef scif_readfrom -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x379435d0 scif_close -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x3dc01e69 scif_pin_pages -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x618d2e08 scif_client_register -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x687e9667 scif_connect -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x70d1ca55 scif_poll -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x8688df4c scif_unpin_pages -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x8e1c101e scif_get_pages -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x962e1153 scif_fence_wait -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xa0af3bf3 scif_fence_mark -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xa0b6ad91 scif_unregister -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xb062118c scif_writeto -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xb4cfeb50 scif_recv -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xb55c6efa scif_accept -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xbc1dd1f8 scif_put_pages -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xc224b3c4 scif_register_pinned_pages -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xcf4819ab scif_vreadfrom -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xd26ccf81 scif_fence_signal -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xd2bcbbc7 scif_vwriteto -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xdb753b0b scif_listen -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xf13d9062 scif_open -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xfd9dd4c5 scif_client_unregister -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x611799db st_register -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xe73dfb4f st_unregister -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x0f6680ea vmci_qpair_produce_buf_ready -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1152e318 vmci_qpair_get_produce_indexes -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x13aa5a5d vmci_datagram_create_handle -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1872c7af vmci_qpair_produce_free_space -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1a195863 vmci_context_get_priv_flags -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3ef56cd5 vmci_qpair_alloc -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4b630dac vmci_get_context_id -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4ba5c46b vmci_qpair_peek -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x50a255c9 vmci_doorbell_create -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x612df9ae vmci_qpair_detach -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x677c36d0 vmci_is_context_owner -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x69ef87ff vmci_datagram_destroy_handle -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x6cc1a5f7 vmci_datagram_create_handle_priv -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x722d488a vmci_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x7d540b50 vmci_qpair_consume_free_space -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x81d61eef vmci_qpair_dequeue -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x895ed9fb vmci_qpair_dequev -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9624c58c vmci_datagram_send -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9973b9b2 vmci_qpair_consume_buf_ready -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9c037020 vmci_qpair_peekv -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9d16164a vmci_send_datagram -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xccbb53d1 vmci_doorbell_notify -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xce4e75c9 vmci_qpair_enquev -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xcf5ed7ef vmci_event_subscribe -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xdac94780 vmci_qpair_get_consume_indexes -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe67343c1 vmci_qpair_enqueue -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe7e7c107 vmci_doorbell_destroy -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x029eae0f sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x047b494a sdhci_send_command -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0574381a sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x26bed350 sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x83d9729e sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8cb6f474 sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x938d7e36 sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc7009a43 sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcc5a9451 sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd373ab55 sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe792d588 sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xea8a3838 sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf599125a sdhci_enable_irq_wakeups -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf600a2c7 sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0e0e3e9e sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x1069a370 sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x1d15f97d sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x2dc57f84 sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x4087230e sdhci_get_of_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x6dfac5c3 sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8e005a78 sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8fabe096 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf88cc46f sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x5f1216fb cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x603b3313 cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xa20c336d cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x211b39d3 cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xacb0bd85 cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xd2e2f655 cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xd141e288 cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x09ada5ca cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xae094c24 cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xdce7ceba cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x03ee8c50 mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x09c4f33c mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0c1353d0 mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x14a3ea9d mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x18715ee9 mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x18754629 register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1cafb147 mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x27aeff0c unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2c846226 mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2f875124 mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x30c501ea deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x450310be mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4b424356 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4fb3406b mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x639c8f3a mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x660cdcd4 mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x662fba36 mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6ae1d283 mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6e4f3d6a get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6f8f1181 mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x779df166 mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7bc29b5e register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7d91290b mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7e7931aa mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8b820de9 mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x95d61b23 get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x97141417 __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x978f2aad mtd_erase_callback -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa6ab6fb0 kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa7c6a955 put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaa7e5a59 __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xad698a22 mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb2749348 mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb82f0686 mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcd476e34 mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd2c80fc8 __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdfb86d74 mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe3a9cd4c mount_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe4611547 mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe6500303 mtd_is_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf575da84 mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfc716acd mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x14f111e2 register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x78665327 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x7dafcaf9 add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa1b686e4 del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xff8a95e3 deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xa8f63d54 nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xb1fff4f8 nand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x13093cf9 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x5f383115 onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xe3eab953 onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xb0348aac spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x32f378de ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x39f8787c ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3fdcefca ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x41a359eb ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x43e3e02c ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x540781db ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x62bab75d ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x639cb8ec ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6d774708 ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7a0cb390 ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x935554a3 ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc2a088bf ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc46c315b ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xeb9ccc75 ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x1de7d683 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x94c91033 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x15bbbd77 register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1b4d8599 c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x35688111 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x8fce08ee free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xbcc56aa9 c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xed4af27c unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0800695d can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x13296f40 open_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x18b2950c devm_can_led_init -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x3017be65 can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x54964078 safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5b09e795 can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x70bf4224 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x74207329 can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x79cf9b40 close_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x8f85c10a register_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x94234d9a alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9b02e7e3 free_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb3734f4d can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb46be4b9 unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xca348d76 alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xcf3e89fc alloc_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xf57341d0 alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xfec7bdfe can_led_event -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x3793518f register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x89dc4ee0 alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xaab1faf4 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xc314d896 free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x53b77a00 free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x5cd31c1b register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xd11c5b64 unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xfe14e66d alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x011a564f mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x014c5469 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07534f34 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08540d72 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09c0f52a mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c26fb72 mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d5ea5b3 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f219847 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x115c1af0 mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16b1df1b mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x176ab55e mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19e6962d mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ae4c9bb mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b673bef mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c27ab17 __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f6ea311 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22d3800f mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26975ca6 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26977621 mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27dd7e6b mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a34188c mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b31bb10 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b3c5692 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b40cdc3 mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c5d1769 mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2cf8fca6 mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d428ae0 mlx4_fmr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ef7bd48 mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32417cf0 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32ea9cd5 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x354efa44 mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x369449a2 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38fd0e13 mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3cae201a mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ddfd795 mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41746a61 mlx4_fmr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x429ec06e mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44cc8a9f mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x556a16b9 mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x587524ba mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59295e64 mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ce922b1 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66d70e37 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67ac78bd mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68208b38 mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x689ce626 mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a012a2c mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a3669c4 mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d556aa3 mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ef9b131 mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71099591 mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7210cbf0 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75a572b8 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77159b4a mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77bdecd4 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79f39fdc mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c772913 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d3faf69 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d449752 mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e1021e8 mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f001b09 mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80ded579 mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86d44618 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86e6fc27 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87f0932b mlx4_map_phys_fmr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93877300 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94dcd507 mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x967455ab mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96adc9c2 mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97ae067b mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97bca5f0 mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x993cf175 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa05f0c12 mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa11adcfa mlx4_fmr_unmap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa74ca2de mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa77dc0b3 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa922cfd1 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa94512f7 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa3c0aa7 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac77d519 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf707d04 __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf8b32ec mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb00e00d4 mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0ce7dde mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1369310 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb24ee078 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2a59488 mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3fdcff1 mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb464b16b mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb74e1837 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7b078f7 mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb91d0ddd mlx4_fmr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc048efeb mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc35c46e5 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3639aa8 mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8c87022 mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc987f151 mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca5e4d5b mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcceacd3d mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcda670f0 mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2ad8e06 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd34b1ff9 mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd39568fa mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5e85b07 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd66ec4ee __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7733851 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7d8edb0 mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8036830 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9783e40 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9df39af __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda896de6 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb9f0858 mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde4bea82 mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe432508d mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9b801a0 mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb0cd8bd mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb445b54 mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb54769b mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb7e18ee mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeecd16a4 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf01c66ee mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1769e32 mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf23b69a9 mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5d32f51 mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a15b051 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e55e079 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1605c56b mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d340bf2 mlx5_core_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26279dba mlx5_core_destroy_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28afd3b3 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2af7ef12 mlx5_query_port_proto_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31552ef5 mlx5_query_port_proto_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42678a1e mlx5_core_eq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e94f38a mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6086fc34 mlx5_create_map_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x685bae92 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x689cac8a mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f197f5e mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7327aafd mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78be8025 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d02827c mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8291ffbb mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8af39dc1 mlx5_core_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b08f381 mlx5_core_create_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c65f7a0 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f8c769a mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x982720cf mlx5_query_port_proto_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98f80271 mlx5_destroy_unmap_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c16cd94 mlx5_query_vport_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ec2959c mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa49c1da5 mlx5_set_port_proto -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2f56ed2 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb897c974 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba790606 mlx5_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb2505fe mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc45040c6 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc46e1fd7 mlx5_core_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9cb8e7a mlx5_core_page_fault_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcad0928b mlx5_core_xrcd_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd21385b5 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd89505f5 mlx5_query_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd961643d mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb3aa2b1 mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc509a2f mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe099b96a mlx5_core_mad_ifc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe277ae98 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3dda020 mlx5_query_port_link_width_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5d3a0ac mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfca3abb7 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x5e28947e regmap_encx24j600_spi_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x6d0e71e4 devm_regmap_init_encx24j600 -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xac144314 regmap_encx24j600_spi_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x6c831dc0 stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xa564d079 stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xc6c92fdd stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xdddd8155 stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x1f764fd1 stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x8b15bbb0 stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xad5f1c83 stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xed0c6460 stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x117b2c03 cpsw_ale_del_mcast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x128384dc cpsw_ale_set_allmulti -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x16d839fb cpsw_ale_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x30a0ac60 cpsw_ale_add_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x47f5ec52 cpsw_ale_del_ucast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x55726b7a cpsw_ale_stop -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x5bb7e029 cpsw_ale_start -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x6936c31c cpsw_ale_flush_multicast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x6b075376 cpsw_ale_del_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x806f1402 cpsw_ale_control_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xa23c7235 cpsw_ale_add_mcast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xa3f7e2de cpsw_ale_add_ucast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xaeed40d2 cpsw_ale_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xe673f972 cpsw_ale_dump -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xfb3bb91f cpsw_ale_control_get -EXPORT_SYMBOL_GPL drivers/net/geneve 0x5d1e67df geneve_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/geneve 0xeb71187f geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x10311180 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x6b93bc3a macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x9e31bac0 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xc7a72176 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvtap 0x5e0add01 macvtap_get_socket -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0c9ea9d0 bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1cb60539 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x37a43b74 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x476645fd bcm_phy_enable_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x65f7259d bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8618e467 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa23d0c23 bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa7db2cc3 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc30ee4f0 bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd68a62f0 bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x05e2b43a usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xac77abc8 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb153b8be usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xe15853e6 usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x13847903 cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2576c759 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x38e58250 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x4cea68b7 cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6b0fa5bd cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6b7702d6 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7179a9ac cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd2119479 cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xfc13f218 cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x0c40c311 rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x447f8029 rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x545faaca rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x9df4d03b rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xb7d9d43d rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xc5ea6dd4 generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x04538c57 usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x058b4162 usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x07e7aab4 usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x117e94f1 usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1624a0ea usbnet_get_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1c93bf2f usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x21f83292 usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2299fb7a usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x281fa8f3 usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2d2fd9d3 usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3530c03a usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x38731c5b usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3becb750 usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4863ff33 usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4faf4d94 usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x57995040 usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5855887e usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6036c8c6 usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x61839b6d usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6c46deec usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x73405e05 usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x755cac69 usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x817e3cbb usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9dcd1b5e usbnet_set_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa2e2e6ab usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xaa490730 usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb0de7790 usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbaba50b8 usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdffb59ac usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xebf89f59 usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfb7dd7bb usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfdca4ee8 usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x486da3a0 vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan 0xea5a71f3 vxlan_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x17f843da i2400m_pre_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1815dac8 i2400m_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4e8d2ca2 i2400m_error_recovery -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x57787d55 i2400m_netdev_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x626569e3 i2400m_dev_reset_handle -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x7be03b0e i2400m_release -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x84628798 i2400m_tx_msg_get -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x9a5cc632 i2400m_rx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xad4656f0 i2400m_dev_bootstrap -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc4c7b698 i2400m_is_boot_barker -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd5465f42 i2400m_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd85699f8 i2400m_cmd_enter_powersave -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xdbf201ed i2400m_init -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xdd145c6f i2400m_tx_msg_sent -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xfdb6d812 i2400m_post_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xfe881dea i2400m_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x1d843db1 cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x3ee92c89 cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xc9167869 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xd2d41769 cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x56cd329a libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x12c8295b il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x25440741 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x708e9df7 il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x801b21f3 _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x852973b7 il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x16aa6873 __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1b074767 iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1c1011bd iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x27048fc1 __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2bd5393b iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x38ce5e00 iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x42fc95e4 iwl_parse_eeprom_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x444494a5 iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4765d3d1 iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4cfdc0f8 iwl_nvm_check_version -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4e2c53b2 iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x512a2413 iwl_init_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51e56125 iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x56e5d35c iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5ee5ab54 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x73341551 iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x75271fca iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7fddf457 __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x82f38372 __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8b7b4f58 iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9e54e6b4 iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa51610af __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xab6a35a1 iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb8979af3 iwl_notification_wait_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc1141919 iwl_write_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc4a8fc91 iwl_notification_wait_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xcad8960a iwl_opmode_register -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd49b4b3e iwl_remove_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xdc8a7a2d iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xebafcf0b iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xfd097265 iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x44e6493a lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x511fbad6 lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5cb14918 lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x69ba67db lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x89d9f5df lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9916fc1f lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xab6e38cd lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb3671c1a __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xbdf02a02 lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc5c91925 lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xd0c4caa6 lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xd8f4d7c5 lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xdc55c00e lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xdcd37b71 lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe27715e3 lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xea85c3ae lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x09cbcfc2 lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x20356fb4 lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x8b3b35bf lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x9239652d lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x9305ceb2 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xaf6e5cf7 lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xd97ca80b __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xec00d3e0 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x180224e9 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x30144a59 mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x3c6f0b4e mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x4703b17d mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x4cc525b5 mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x538884fa mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x5aaa4e6d mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x5db1aa95 mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x68796c9d mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x6adcc7d2 mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x704727ce _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x7fb06e9b mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x9d84090a mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa2975420 mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb6a23180 mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xbb3b11a7 mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc8da8a6a mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xcf004b22 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xde2ce137 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x29ae8de5 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x328a89bb p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x37660121 p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x510d9292 p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x7146c8fa p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x78baa246 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x79578156 p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xa535ff4d p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xbd38d7cc p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3646dca2 dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4b6f2253 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x637ac092 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe6b9afb7 dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0f2c05dd rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1399247a rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x247246b1 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2cb07c5c rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x314b4897 rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x34fa2174 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x389b0305 rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x420d5e05 rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4a45b3af rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4ac760b3 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x59f90988 rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5a014e69 rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x620fb460 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7263895e rtl8723_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7c9745ef rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x893f10bb rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x90e9d2a7 rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa7884e9b rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xac6d81fa rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xad8131b4 rtl8723_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb015c92b rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdb3c38fd rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe5429b32 rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xea9324b9 rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfb09f711 rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfec9026a rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xff9ae3c0 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x123a9b2b rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3c821c26 rtl_dbgp_flag_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4722e75e rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x480d3a55 rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5f802395 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b4de810 rtl_lps_change_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7596ef08 rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x84f9d198 rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8c56050b rtl_attribute_group -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xafcdc668 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb82c3c3f rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xba5faf3d rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbb4c8db6 rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbb98b4ec rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc7839db7 rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdf86e73d rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe48f60d3 rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xef3055f8 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xefc1aa22 rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf15ae014 rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf2e217fc rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x4cb4f18a rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x85ccf50f rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xf55129db rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xf85dcdc2 rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x020f6e09 rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x076bfe14 rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0b9514ab rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1808a96f rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x186089ad rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x233d6d1c rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x30be331b rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4b37c69e rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4c64f33d rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5497b683 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x55136b8d rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6ced7af1 rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x70492039 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x76925777 rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7aa565d8 rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7f2b54fe rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7fc4275f rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x89436007 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8d639414 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8f3e7a00 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9227c352 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9ff2b98f rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa131784c rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa41ef450 rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xab5de2b0 rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb63a2cd2 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbada102b rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbed73dbc rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcb6200d5 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd6fd2daa rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xdc27db7a rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe3aee00e rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe3c33c92 rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xea56ed7d rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xefe7e8c4 rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf557ff8d rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf6332184 rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfb2b1b9e rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x02088ff4 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x1b280012 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x1eb41abd rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2e4ed08a rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x40d1a82d rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x57ea3ea9 rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x81e066dc rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x843904c8 rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x9bbd9dfa rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xb60a543b rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xb8231dc4 rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xbcb21bb2 rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xfa6dd40f rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0046d67f rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0393f4ab rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x05b749bf rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x05bb57d0 rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x09e1cc00 rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x10a772f6 rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x188b148d rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1cf93630 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x208bdae2 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x26f43329 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x29712338 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2dc3a489 rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3594037d rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3754735d rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3bb126c2 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x48616e1a rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x495f83ac rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4cde1971 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x52daa5c5 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x59859c75 rt2x00mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x633a3646 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6be9fa3d rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6d276b5d rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x700d63d2 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x75688813 rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7c6f2895 rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x918b23d7 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x92150b44 rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9244567f rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x92f414cb rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x93c40a33 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa46155c3 rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb7432f5f rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb75978eb rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbb61f7af rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc3214b77 rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc5af88b9 rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcc4fdc88 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd265d917 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd60eafb4 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd87ac887 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf0b74446 rt2x00mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf206d8a4 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf57c12e4 rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfd480e86 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfea254ac rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x429e60d3 rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x43c6dc3b rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x63207fd2 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x90d0dc2e rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xc3f7bc0e rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x11548e72 rt2x00pci_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x8f88933b rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xa85d4157 rt2x00pci_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xbab4d446 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2753a5c1 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2f4cee1c rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x46cdcc57 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x4d7d44df rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x5a32d74f rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x5bc13a8c rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x5ce86594 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x61051ef9 rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x715d628a rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x729bf012 rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x7578e074 rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x81df74c1 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x8ea0fbcf rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc369afe0 rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xce78c318 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd13b0183 rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x396632ce wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x94ee220f wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xae998f27 wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x036c7779 wl1271_ps_elp_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x099be711 wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0ba2c879 wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x10d2ff35 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1f803e82 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2926019e wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x351a35ff wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x369cbd03 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3b1d2ca6 wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3f81740e wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x48d2d09d wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x49410836 wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4affdf40 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5056b414 wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5125d4d1 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x554c6cf2 wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x63eddfba wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6930aee6 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x69d095c1 wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x81a6159e wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8af9ebee wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8d354303 wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x925a28af wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x934e0d23 wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x94742a34 wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x982de019 wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa8a4146a wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb0701a01 wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb0f3c9f2 wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb568f66f wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb805a0fa wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc36220c8 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xca2d61fa wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcc0324e3 wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd2f9b6fc wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd95a8497 wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe06ad4fb wl1271_ps_elp_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe0b1a03b wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe0d6f1bb wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xed625d6c wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xee5b0f4a wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf705d8bb wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfa15ad7b wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfa9e0010 wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfd8dec45 wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x19f7e515 nfc_mei_phy_free -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x1dc0cb65 mei_phy_ops -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0xd0e53337 nfc_mei_phy_alloc -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x46972a1b nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x6b1995a2 nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x89b245fb nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xaa12b2dc nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x344a0a27 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x5e3f93e0 st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x63a163e2 st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x86186758 st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x8c06dc7c st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xe2ffa7a6 st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf06e01a1 st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf78b0b8a st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x04aaa626 ntb_transport_register_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x81253086 ntb_transport_create_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xbccfdccd ntb_transport_unregister_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x11fcca1a nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x202d4ed6 nvmem_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x224f51bf nvmem_device_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3866e217 nvmem_device_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4282dc53 nvmem_register -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x805020ce devm_nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x99f018c4 nvmem_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xae616819 devm_nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc697b0f7 nvmem_device_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xcefb283b devm_nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe4937ed8 nvmem_device_get -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x165b0d87 intel_pinctrl_suspend -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x4be48d05 intel_pinctrl_probe -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x9225b547 intel_pinctrl_resume -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x95883142 intel_pinctrl_remove -EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x07de2c2a asus_wmi_unregister_driver -EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xb64eec8c asus_wmi_register_driver -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-rbtn 0x51552fca dell_rbtn_notifier_unregister -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-rbtn 0xa060fe7d dell_rbtn_notifier_register -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_ips 0x46809fa9 ips_link_to_i915_driver -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x56235c72 intel_pmc_ipc_command -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x75068282 intel_pmc_ipc_raw_cmd -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xdea07053 intel_pmc_ipc_simple_command -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_punit_ipc 0xa6c87106 intel_punit_ipc_command -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x111aafa7 telemetry_set_trace_verbosity -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x1bbf0813 telemetry_add_events -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x1be25432 telemetry_get_sampling_period -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x4294042b telemetry_get_eventconfig -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x4cb51f18 telemetry_pltconfig_valid -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x50c1c0a8 telemetry_get_trace_verbosity -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x5847f501 telemetry_clear_pltdata -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x611fd2a7 telemetry_read_eventlog -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x64c6a83e telemetry_read_events -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x73dcd24f telemetry_raw_read_events -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x82bb2dbe telemetry_get_evtname -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xb78846ce telemetry_set_sampling_period -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xbb9a2726 telemetry_reset_events -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xbf0d3d83 telemetry_set_pltdata -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xcbdc93cf telemetry_update_events -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xe7eb1528 telemetry_raw_read_eventlog -EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x232b5238 mxm_wmi_supported -EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x61cdf799 mxm_wmi_call_mxds -EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0xe26032eb mxm_wmi_call_mxmx -EXPORT_SYMBOL_GPL drivers/platform/x86/thinkpad_acpi 0x706cdcef tpacpi_led_set -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x3ecf6cfc wmi_install_notify_handler -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x561c634a wmi_evaluate_method -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x876d29f1 wmi_get_event_data -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xb5a6ebe2 wmi_remove_notify_handler -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc9d4d6d1 wmi_has_guid -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xda29f8b0 wmi_set_block -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xfb882fb7 wmi_query_block -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x317a4cc8 pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xb5065035 pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xd5557671 pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0x4fad9e0f pwm_lpss_probe -EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0x6365870a pwm_lpss_byt_info -EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xafcf8794 pwm_lpss_bxt_info -EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xb563cdb0 pwm_lpss_remove -EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xc34d815f pwm_lpss_bsw_info -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x1405db15 mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x4fc34340 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xcddb601f mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x02c83c29 wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x114a9d93 wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4e075a56 wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x723e14be wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xc11d2719 wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xc3f90c30 wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xd23c8143 wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x169bb05e cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3223c379 cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3b5706b7 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4585c6d5 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x46286cec cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x49e5e84f cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4b773a80 cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4e9eb3e0 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x57ae4b45 cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x58fc2ba5 cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x68be905a cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6947248f cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x77d39c5e cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7a7a0c3a cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7edc9142 cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x85537f87 cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x863a9f70 cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8b0acb3b cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8b9e58b6 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8ecd4a6f cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x929244bb cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x935bc58c cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x977e194c cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9ac84713 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9b03a9d3 cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9c7efc4c cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9cf54cfd cxgbi_ddp_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9ebb976d cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa0e96eef cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa21bf64d cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xacde18e8 cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbd5a269b cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd18e6b33 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd2e4af51 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd7638421 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd884273b cxgbi_ddp_ppod_set -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd930f3f7 cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdb0a1820 cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdf2866c9 cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe447ebc7 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe5599e4f cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe694c869 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xec70ae6c cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf4354952 cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf64208f5 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xffd8b663 cxgbi_ddp_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0e768411 fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1b207beb fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1b7e6565 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4906c053 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x63a9a851 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x89e1aed2 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8c31f5ca fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8d73f3d5 fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8e03d028 fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa0de1869 fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa68ec01f fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xaa2841a2 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3a68409 fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc9f90306 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf8241450 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfd328d4d fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0234ad4a iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x3fd7a288 iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x498f6c1b iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x81cdf4e0 iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x9ed3c33f iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc462d5df iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x023d8e93 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0702ca64 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0e5a500d iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0ff643e7 iscsi_conn_queue_work -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12db0261 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12fc6d8e iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1348bdcc iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x16d90f09 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1c2040c8 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x203a0228 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x22feb6e5 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2d082ce3 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3f114e24 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4226a227 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x452822f6 __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4c7d07ad iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x55382b3e iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x587880b5 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x58e34444 iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7a7e907c iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7bd343c5 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7f729715 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x83439833 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x844dff43 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x88fadff0 iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x94e194d0 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9bb08c48 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9bd1e60e iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa55b1cbd iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb597572e iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbaaa1466 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc758a34b iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcd3585f2 iscsi_eh_target_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd4ebad21 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdd5594a4 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xde671b0e iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe0942797 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe0a4977d iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe59ba099 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf30a38c9 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf62b07ae iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfc23f454 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x02526b6e iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x034c1051 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x28ee7c4f iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2c2814d1 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3854b56c iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x39090fd6 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x41c921e0 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x531c932b iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6ce65f32 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8c461edf iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8ead24b4 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc7d06b4e iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcad2238b iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe1ff2aeb iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xeceef0b5 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf16e8bbf iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfaf392b9 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1bf50a38 sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2e1ef051 sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x388dd933 sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3c6a469d sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4d7fd6a6 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x56aab545 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x62bc872e sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x71a0601c sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x83d753f1 sas_domain_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x98b6cc58 sas_eh_bus_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9bc2e7c7 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xab123998 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xae74bce8 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xba08cc36 sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xba9c8938 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xccaa1724 sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xce4297a3 sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd4555d6a sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xda7c07ae sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe6e0322a sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xec5562cf sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xefe3a09e sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfc260905 sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xff831c1e sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x00be62f9 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0147d2b3 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0ad39fa7 iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x11314b3a iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x19e80fe4 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1f747e28 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1fa7a906 iscsi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x28a74821 iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2b872366 iscsi_is_flashnode_conn_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x33691cb5 iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x439e3aab iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x44223a80 iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4ccdbe21 iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5b293a23 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5b5f32ab iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x612565e8 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x646de103 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6474c62d iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x693992f7 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6e307c35 iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x732f44ee iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x76eae09e iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x80f7619b iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x823d2292 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88e41f13 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x914bde7f iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x98bea999 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x994deb83 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8c11404 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb396f875 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb4655359 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcecbbd93 iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcfbaabe0 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd004f381 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd448c2f2 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdb045ea9 iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xddabab83 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe16377f8 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe475104d iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfef4fa84 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x665b608f sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x76b62328 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xcce670c6 sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xf3a12917 sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xbddaa3f0 spi_populate_tag_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x86a9e589 srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x9b348ac6 srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xa4d49365 srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xa8843c8d srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb33166fb srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xfd8b22a5 srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x0c461f0e ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x0fd71ec4 ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x1086cf8f ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x3e17db53 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x9bd288b6 ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xc0647f5d ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xc4997760 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x245f2b8a ufshcd_pltfrm_runtime_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x2a723ec7 ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x5665a690 ufshcd_pltfrm_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x653b46e2 ufshcd_pltfrm_runtime_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x7a805dc6 ufshcd_pltfrm_runtime_idle -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x982b8515 ufshcd_pltfrm_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xb6d9bdcb ufshcd_pltfrm_shutdown -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x11c6d661 spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x66c1295c spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x97debdde spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xade18cac spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xbe3f07bb spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x26b0f2d2 dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x3ab4ba3a dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xbeb25aaa dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xcca678d6 dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3c55ee39 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3da36422 spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x438b65da spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5255bb96 spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6c0b3c93 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6cbcfd86 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6f5a0618 spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x74f98926 spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7830d107 spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x879c0105 spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x89a499f6 spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x903f2c75 spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9174111f spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x921f2de5 spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc657876b spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xda5ec839 spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdf3d8d26 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe4ed591f __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xffda1d80 ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x09e81196 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x12df6aee comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1c1b29d2 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1f338788 comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x22337555 comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x28d513f0 comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2c7558fb comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2e990ad4 comedi_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x30fdde05 comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x38162de7 comedi_handle_events -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3ecfb1ea __comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x40f73fb9 comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x422a28ce comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4c3237a2 comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x538045fe comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x56348f7b comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x60800f56 comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x64baebbd comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x73ca3789 comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8dda2d48 comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x986a7f98 comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9d08f8e1 comedi_dev_put -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9de88581 comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9ec60e42 comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9f3b22fb comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xaaab3367 comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb2048635 comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb78d0d0a comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xca81923d comedi_event -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcce942ce comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd8ad5fcc comedi_timeout -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe1509659 comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xeddf2ecd comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf854a27e comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf9497ffb comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x0b425a16 comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x0fccd652 comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x1491cb86 comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x62b4809b comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x640cbd08 comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x64ec6cee comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xa9f622ef comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xfff270f7 comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x3c2918d4 comedi_pcmcia_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x4b5c53ae comedi_pcmcia_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x80be5d29 comedi_pcmcia_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x8d9242b2 comedi_to_pcmcia_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xb8c1525d comedi_pcmcia_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xe59c026d comedi_pcmcia_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xef232ce1 comedi_pcmcia_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x003e4662 comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x2345852a comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x3d8b8b74 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x4b69da0f comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x7a374273 comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xa8a76911 comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0xf3818723 addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x8afe3175 amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xe0a9726b amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x5588b181 amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x0a7c334f comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x324e37fc comedi_8254_load -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x40fde2f6 comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x417778f2 comedi_8254_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x69c2ce60 comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6b210b8c comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6e055ebb comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x7197cbe9 comedi_8254_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x9b6effd5 comedi_8254_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xa39b126d comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb490aac0 comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xe8a11f6c comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xf60e8b78 comedi_8254_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x37490a08 subdev_8255_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xba46f360 subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xe22ca021 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x0d68fcd9 comedi_isadma_poll -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x32d1cb3f comedi_isadma_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x6815a033 comedi_isadma_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa3d01a85 comedi_isadma_program -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa7ebb8a3 comedi_isadma_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x256c2277 das08_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x043e677b mite_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2cdd43fa mite_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2fae1a0d mite_buf_change -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x300b4216 mite_release_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x305112bb mite_get_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x307ac2d3 mite_setup2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x30f9bb66 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x66b38e87 mite_dma_tcr -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6e4590e1 mite_free_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7282443e mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9507c0de mite_bytes_read_from_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9e3bbb64 mite_sync_output_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa9b4e83e mite_prep_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xad23dd41 mite_sync_input_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xae5cd82a mite_bytes_read_from_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xaef69901 mite_done -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xdce5bfb5 mite_bytes_written_to_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe7bea741 mite_bytes_written_to_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe98cadf3 mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xef3b0e7c mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf712e3d2 mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x31c70232 labpc_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xd3d60375 labpc_common_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x34b4d0d8 labpc_drain_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x519be101 labpc_free_dma_chan -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x950f0a69 labpc_init_dma_chan -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xd8f1e6cf labpc_setup_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xeff44170 labpc_handle_dma_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x0a721371 ni_tio_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x64e48cc0 ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x6cd6ab72 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x81a7c920 ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xafd4e63b ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xe19fe78d ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xed3346e7 ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xfebd88c9 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x1ffb9a6b ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x291138f6 ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xb606b3ac ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xce369e23 ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xd7a94eea ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xddae28f3 ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x24e234e6 comedi_dio_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x2b776916 comedi_open -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x4a9230c9 comedi_close -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x51f00e8c comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x8c3cc932 comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xe8b742c4 comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xe976f80f comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xc5174171 adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x0748fdbe most_get_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x0ea7d24f most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x1a783120 most_register_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x463d9be2 most_deregister_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x4dbc4b1e most_deregister_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x5e1a0844 most_register_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x7dda2998 channel_has_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x9a15e275 most_stop_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xceeb4e42 most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xda506408 most_submit_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xf3e95c18 most_put_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xf69421e4 most_start_channel -EXPORT_SYMBOL_GPL drivers/staging/rdma/ipath/ib_ipath 0x1514b2b2 ipath_debug -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x02f0bfd4 spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x10f91085 spk_serial_synth_probe -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2ab8daa7 speakup_info -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2d25bc1b spk_do_catch_up -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x455bc172 spk_var_store -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4971d9d5 synth_add -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x5f736af5 spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6cfd65ca spk_var_show -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8b3aeb81 speakup_event -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc09242be spk_synth_immediate -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd06bc24e synth_remove -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xdaa7c98f spk_synth_flush -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x013a897e visorchipset_register_busdev -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x0877dd5c visor_periodic_work_start -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x0ec0434e visorchannel_zoneid -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x13d922e8 visorbus_clear_channel -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x149bde55 visorchannel_clear -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x1582a13b visorchannel_signalempty -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x37626eff visorchannel_get_clientpartition -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x39fe5de1 visorchannel_signalqueue_max_slots -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x3a85d8bd visorbus_enable_channel_interrupts -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x4063ea9d visorchannel_signalqueue_slots_avail -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x41d96143 visorbus_write_channel -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x4c0e827d visorchannel_debug -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x4e4bfbe5 visorchannel_signalremove -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x5e533597 visor_periodic_work_nextperiod -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x6084f4d4 visorbus_registerdevnode -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x60aaf74b visorchannel_uuid_id -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x720775df visorchannel_set_clientpartition -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x7948d062 visorchannel_get_header -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x7a4ec5c5 visor_periodic_work_stop -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x7d3208eb visorbus_register_visor_driver -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x85b49e2d visorchannel_get_uuid -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x865e5ab6 visor_periodic_work_destroy -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x8f463ba2 visorbus_read_channel -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x96401fe5 visor_periodic_work_create -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xa428b832 visorchannel_create -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xac7771ac visorchannel_signalinsert -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xae9128e9 visorchannel_create_with_lock -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xb4aab617 visorchannel_write -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xca18358d visorchannel_id -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xcc89f91f visorchannel_destroy -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xd8649784 visorbus_disable_channel_interrupts -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xdaec263b visorbus_unregister_visor_driver -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xe3b5efe1 visorchannel_get_physaddr -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xed313c21 visorchannel_read -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xf990f627 visorchannel_get_nbytes -EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0x2925a2a9 int340x_thermal_zone_remove -EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0x32fb490d int340x_thermal_zone_add -EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x334e5d6d intel_soc_dts_iosf_add_read_only_critical_trip -EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x6064e883 intel_soc_dts_iosf_init -EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x87a2b9fc intel_soc_dts_iosf_exit -EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0xf603e513 intel_soc_dts_iosf_interrupt_handler -EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain -EXPORT_SYMBOL_GPL drivers/uio/uio 0x941a95cb uio_unregister_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xa916846d uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0xf3b32e48 __uio_register_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x514a0c8e usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xdb85e505 usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x5f5e4f1f ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x7ad8e265 ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x2a1fe46b ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x3209c39d ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x32640c7d ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x7622a592 ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc9019d61 ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xebea4d89 ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x176fa7be gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x24b5455f gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2b91a3b6 gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x52343c90 gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6346a0f3 gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x66e84198 gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6da8ae2a gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7af888b9 gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7f60bbc0 gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8c937167 gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x98084b3c gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa477eb6d gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc01f3d3c gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf0de6e9c gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfdfe14d1 gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb8132e82 gserial_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xfd5c994a gserial_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x2a77c904 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x47c158f5 ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x93a8c1f2 ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x05639b9e fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1f5d4551 fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x351ef967 fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x35dee3cb fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x49a3594f fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4eb44f7f fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x546c7f99 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5600e1ce fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5c9c330a fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x987bc0cf fsg_config_from_params -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xbaf05c11 fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc61ca0cc fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1c25f04 fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd468f882 fsg_common_set_ops -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd9141f35 fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf0a73bdb fsg_store_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf1696af2 fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xfd47c10a fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x03bb2ea7 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0a741ad3 rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0b0772c1 rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1c9059cd rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x31b1debc rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3a0ad997 rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5ed340f1 rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x66d929bd rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7d163b02 rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa9067855 rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcd220562 rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe9e10eea rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xea41cfc6 rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xefbcd56b rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf266e528 rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0571d6ac usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0951343d usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1631d718 usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1cafd02f usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2cbaed78 usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2d2bb642 usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2d9be6f4 usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2fe37fd8 usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x43cc29be usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4819a0f4 usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4a13632b usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4a830be8 usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4bbc3db4 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5b9fadfe unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x67ddb1b5 usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68ec4a24 usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6e22aabf usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6faca357 usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x709f48f1 usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x879d4a77 config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8a93dfe9 usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x917e43b0 usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x946772e9 usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa4d21bfe usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa5ff3e92 usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb20660c6 usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xba05099e usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc7ac8648 usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf9c18e9f usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfed29ec0 usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x19633a68 usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x259da6fd usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2e62f7d4 gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x57007f28 usb_add_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x59c0a298 usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6d94999a usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6f18f5ae usb_gadget_probe_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7d794fd6 usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x92e256c4 usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4744dba usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb4c23501 usb_gadget_map_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbe24b53b usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbe439a27 usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xed6dd4f6 usb_udc_attach_driver -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x455ff33c ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x5b44ea24 ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0cc588c3 usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4f9aac97 usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x9dbc8142 ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x9e279f98 usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb35fb8cf usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc910f231 usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xdd4ec2db usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xee24a5ff usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xfedbe0de usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xb41c670f musb_interrupt -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x1b072c88 isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x476885be usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0966301c usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0d07ff85 usb_serial_handle_sysrq_char -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0f8a941c usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x34490eab usb_serial_handle_break -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3ec296f9 usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4a8379c7 usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4fe7a1aa usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5173e35e usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x52608545 usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5db2ade5 usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6486711e usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6679359e usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x66abefe4 usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6b5b3b7b usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x919d0e0e usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb4e86c90 usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd2fe5604 usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd5715aaf usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe747ba0b usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xeae6168b usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xefd0042a usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0071d383 usb_stor_CB_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0935cbda usb_stor_bulk_transfer_sg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1488337d usb_stor_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x161672ba usb_stor_bulk_srb -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2b87c7d9 usb_stor_control_msg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2c153986 usb_stor_CB_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2c3b5a30 usb_stor_ctrl_transfer -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3291a016 usb_stor_bulk_transfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3f055c0f usb_stor_host_template_init -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x636ea094 fill_inquiry_response -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x64e6aa9a usb_stor_pre_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6505ec93 usb_stor_probe2 -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x768db102 usb_stor_Bulk_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x778a73a8 usb_stor_reset_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x95d0629a usb_stor_disconnect -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9d6a68e4 usb_stor_probe1 -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa6cc62e7 usb_stor_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa779ac80 usb_stor_post_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb17eb20f usb_stor_Bulk_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb834836b usb_stor_transparent_scsi_command -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbd183875 usb_stor_access_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc3a20e13 usb_stor_set_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe8a3747d usb_stor_suspend -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xfeff5bdb usb_stor_adjust_quirks -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x292c4767 usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x33c9692f usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x70f24670 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8243fbcb usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x88f8016d usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa1e556bd usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbd6bd5a3 dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbfa1697a usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xcaa9f8d1 usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd2092493 usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd8e424cb usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xdb593b40 usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0bd816f0 wa_process_errored_transfers_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x122f15ac wa_urb_enqueue_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x1d38d294 wa_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x452b0d62 rpipe_clear_feature_stalled -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x5773f32b wa_urb_dequeue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x5c91c664 wa_dti_start -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x7bde8c01 __wa_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x97dc3291 rpipe_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xed925ee7 wa_urb_enqueue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x18209290 wusbhc_rh_start_port_reset -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x30970374 wusbhc_rh_control -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x377e4c64 wusbhc_chid_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3796d96d wusbhc_reset_all -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x48500954 wusbhc_rh_status_data -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4a5b95b1 wusbhc_b_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x58def2f2 wusbhc_giveback_urb -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x66460e9f wusbhc_handle_dn -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x692e014a __wusb_dev_get_by_usb_dev -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x8b634e8f wusbhc_mmcie_rm -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x983c3f99 wusbhc_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xae6416fb wusbhc_b_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd603a1ed wusbhc_mmcie_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xda2455ee wusbhc_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x4629cbc4 i1480_rceb_check -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xa7d81012 i1480_cmd -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xf7919f44 i1480_fw_upload -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x133b3c5d __umc_driver_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x143297fe umc_device_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x52a96272 umc_match_pci_id -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x66ba2f19 umc_device_unregister -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x897e4ffe umc_device_create -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x9b910b3f umc_bus_type -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x9e5d674a umc_controller_reset -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xbb15030c umc_driver_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x06c8e19e uwb_rc_neh_grok -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0d78016e __uwb_addr_print -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0fc02440 uwb_est_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x11c8968e uwb_rsv_modify -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x143fbda1 uwb_rc_get_by_dev -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x159ae413 uwb_dev_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x17d42fe6 uwb_rc_neh_error -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x19a414b4 uwb_rc_mac_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1a5f1638 uwb_rc_ie_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x203cbe9d uwb_rsv_establish -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x259ef0b2 uwb_dev_for_each -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2cd07295 uwb_rc_ie_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x314489a4 uwb_radio_start -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x316b09a3 uwb_rsv_destroy -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x48b5618c uwb_rc_reset_all -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4f2ecb2e uwb_rc_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x52b83711 uwb_rsv_accept -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x599aba33 uwb_notifs_deregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x59dfcc9e uwb_rc_cmd_async -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7acc98b2 uwb_rc_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x816b9e92 uwb_est_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x87b7d2f9 uwb_rc_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8b0ad627 uwb_notifs_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8d124178 uwb_rsv_terminate -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x95168856 uwb_radio_stop -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa09d34f1 uwb_pal_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa2cae537 uwb_est_find_size -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa5f1c2bb __uwb_rc_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa7a25e0e uwb_rc_put -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xac97316b uwb_ie_next -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb1c23609 uwb_rc_post_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb82e7672 uwb_rc_get_by_grandpa -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc52fb47e uwb_rc_dev_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd509fd9c uwb_rc_vcmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd7eb0116 uwb_pal_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd88d87b1 uwb_pal_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdd40a165 uwb_rsv_create -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe2d125e5 uwb_rsv_get_usable_mas -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe9720813 uwb_rc_pre_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xea9c1d20 uwb_rc_alloc -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf60092f5 uwb_rc_cmd -EXPORT_SYMBOL_GPL drivers/uwb/whci 0xe307749c whci_wait_for -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2ab5ee40 vfio_group_get_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4f42a81d vfio_add_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x57d61bf2 vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6d1786a3 vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8f91a3b5 vfio_device_get_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc6d0d39f vfio_del_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x18e1efe0 vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x1d4c9ce7 vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x06cea824 vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x178bde08 vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2255ebc5 vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x24db2e15 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2877797f vhost_work_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x33eacdf0 vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4cb96f77 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x554b7408 vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x586c4f14 vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5ade15f0 vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5cb6fbe1 vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x681a4102 vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6a571b07 vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6b4a66d6 vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7ff844d0 vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x863e9df6 vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8c9ae169 vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9f94875d vhost_init_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xad739280 vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xafe892f4 vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbd4c108d vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc8c741aa vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc99f2ce3 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdb01b7d4 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdec0e3e5 vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe20944e1 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf69152ae vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf9da89fe vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfbbfe325 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfdea81d2 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/video/backlight/apple_bl 0x2c63e051 apple_bl_register -EXPORT_SYMBOL_GPL drivers/video/backlight/apple_bl 0xdab0f892 apple_bl_unregister -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x2dcadc85 ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x3813b8e9 ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x58acdbfc ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xad49f2c0 ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xbb794b55 ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xbc41d8ac ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe32b273d ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x51c6b07d auok190x_send_cmdargs_pixels_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x6b219a39 auok190x_common_probe -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x7a67e4ba auok190x_send_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x7ce98188 auok190x_read_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x9a6c28ed auok190x_send_cmdargs_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x9e94b915 auok190x_send_command -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xaf3d2f6a auok190x_send_cmdargs_pixels -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xc13da640 auok190x_send_command_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xf915c170 auok190x_common_remove -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xf938d8c1 auok190x_pm -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xfdcfe6fa fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x33aa4147 fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xbdb71668 fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x85bd06d5 sis_free_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xc9d3de58 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x016e6c20 vmlfb_unregister_subsys -EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x90c018c6 vmlfb_register_subsys -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x1ff5f940 viafb_find_i2c_adapter -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x22a7af24 viafb_dma_copy_out_sg -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x292da7a2 viafb_irq_enable -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x30cc9311 viafb_request_dma -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x31469540 viafb_pm_unregister -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x79e6190a viafb_irq_disable -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xb4f863e6 viafb_pm_register -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xcaefb732 viafb_release_dma -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xfff2dfd2 viafb_gpio_lookup -EXPORT_SYMBOL_GPL drivers/w1/wire 0x2a60f5ae w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x398813ad w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x9199b88c w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x9db21143 w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0xa3409ec4 w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xad8f6ebe w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0xaf6a5328 w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0xc808a555 w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xf32a351b w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xc1e87f6a xen_privcmd_fops -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x41dd5cbb dlm_posix_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xb8f0bcc0 dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc673b371 dlm_posix_get -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock -EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7d5cfaf0 nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc2781281 nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc5fae364 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc9756ed2 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd5b239e6 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xdfa67994 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf79a9374 nlmclnt_done -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01e2240a nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01f7c155 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03998962 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04c35cd3 nfs_fs_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04cd4834 nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x057a08f0 nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05aecb91 nfs_fs_mount_common -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06a9f6bf nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06d3aefa put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a4b4677 nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ae7408e nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1117c57e nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1180d5d1 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x136e2bb7 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14d8a268 nfs_set_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x199e3335 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19fb2956 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a1b13b8 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ef77e6b nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f75a65f nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x211b88c6 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x218b9a2a nfs_remount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22407f6d nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2329b732 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x269cb7f8 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c8dbee6 nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d8ba421 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f8f19ad nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31b106b6 nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33c2b9fc nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34db3d64 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36f9d822 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e107884 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f37f4ba nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40a9b2ea nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42370388 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42bd6a2a nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45e540b1 nfs_fill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47469a32 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4896ae53 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c3d6baa nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ca33637 nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4fbe33c2 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x520c398d nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54790463 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5495f012 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54aced5d nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x558dabcd nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57669332 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c4f24a2 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e782e71 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ee7b8f7 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60f955f6 nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x626bc9f2 nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6391f785 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64b5e6cf nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a617934 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6bb4ee68 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6db4179e nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73d2227e nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x799d9eba __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7bafb1dd nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c542ad1 nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9391ab nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d065421 nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x800f4061 nfs_pgio_data_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x821c22f9 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86e5b23e nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89c2c807 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8db03294 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d2b0e8 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x946f0957 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9642db88 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97951834 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x999f2162 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0a687ac nfs_try_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0c6d039 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3263901 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5a9e02b get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5e07164 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5e9fdc0 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa96253ae nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xabacfa1d nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac74d069 nfs_destroy_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae1f6552 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb2005bc5 nfs_clone_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3cfaaaa nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3e7af00 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb47639d5 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb53d9343 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6ffce24 nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba5f4e30 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb96d3be unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbba1c6b6 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd450ae8 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbdb6f729 nfs_pageio_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0f11697 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1f5a19b nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2841638 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2c8072e nfs_file_splice_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2ee471b nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a6920b nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc72033d1 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7265442 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc739de57 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xceac3c9d nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd02fa797 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd08dcac8 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0efa4a6 nfs_file_fsync_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4f0e547 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd51b333e nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd52ce2b0 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5f15fe2 nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd94070a4 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd1a463c nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe04c8325 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe25c94de nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe415c3cd nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9c3aa2f nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb488d63 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xefe5f9f7 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf27704ea nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3100d29 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3779c6e nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5d9cb98 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xa885c0cf nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x026b18b5 pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02d1ad79 pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x03c2b80a nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x05ab18e8 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x070b6287 pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0a1c2aec pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x10769420 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1093b108 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x134216f8 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1b8fcde4 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x22503d78 nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x256c794e pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c6220c1 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2ccd4314 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x376a5a73 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3acd72da pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x40eba101 pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x493494e9 pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4b09ece8 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x563e0af5 nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x59d479a1 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5bf588ab pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x62f16a0b nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63685c1d nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6817e7cd nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6948efab pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a8571ba nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f67253e nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x721694a1 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x72eac8df pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x76eac55a _pnfs_return_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x807ed2cd nfs41_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x834375d2 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x84f6e72e nfs40_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8a30c19f nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x935b4f72 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x98b9c223 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x99badbf3 pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9cdb732d pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa00f861a pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa7c0e3b3 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa9b04db9 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab7faf1e nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xac8809cd nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xafe78a68 pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0480ef3 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb583c580 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb94ba24e pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbccef2cc nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc0b0de52 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc256d53a pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc6d0dc64 pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0b5b7dc __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd26e6a07 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd68e1122 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdbd9d027 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc0064b4 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5986538 pnfs_put_lseg_locked -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xedb11690 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfd8d3132 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe60cdf5 nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x11971585 locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x670f37b6 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x79b68829 locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x082bfb3c nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x6f680107 nfsacl_decode -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36a28a9e o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x53ba1768 o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6f5cd7fe o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x70f1d3f8 o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x87277344 o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xacc6ec50 o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xe608b4ab o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xec06ebc5 o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x298cbb64 dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x78de52fa dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x86573698 dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc24972e6 dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc67bacd5 dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xffcd0abf dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x28721da8 ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x627fa61b ocfs2_plock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xebb9a7c8 ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq -EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures -EXPORT_SYMBOL_GPL kernel/torture 0x1c972a66 torture_shuffle_task_register -EXPORT_SYMBOL_GPL kernel/torture 0x1cec5ee2 _torture_stop_kthread -EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats -EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb -EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random -EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait -EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop -EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end -EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init -EXPORT_SYMBOL_GPL kernel/torture 0x70b639ba _torture_create_kthread -EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init -EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin -EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin -EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init -EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end -EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init -EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping -EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress -EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress -EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch -EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch -EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch -EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x9ea64159 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xb740645c notifier_err_inject_init -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x201d8ea3 encode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x29fa419f decode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x0adcb055 base_inv_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x221df614 base_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x4da25bec base_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x63f42b6a base_inv_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x76203267 base_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xca3140ce base_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfa5eee0a base_inv_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfc02472a base_inv_true_key -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x6aae0d30 lowpan_header_compress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xba15579b lowpan_header_decompress -EXPORT_SYMBOL_GPL net/802/garp 0x4bd78902 garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x6ad71fff garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0x7e89f818 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x90f759bf garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0xb085c2f6 garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0xee38fa59 garp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x007a4249 mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0x3e1d8ed3 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x5682072d mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0x5ca13892 mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x82c03a77 mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xcef38dea mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/stp 0x581e74b7 stp_proto_unregister -EXPORT_SYMBOL_GPL net/802/stp 0x824fa2fd stp_proto_register -EXPORT_SYMBOL_GPL net/9p/9pnet 0xc6aae302 p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/9p/9pnet 0xee6f857f p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier -EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier -EXPORT_SYMBOL_GPL net/ax25/ax25 0x38ecb402 ax25_register_pid -EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast -EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0cc38f4d l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x275cf2e9 l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x991d0958 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x9bc2a949 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x9e9b8e56 bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb66202cb l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd78f9726 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd84487c3 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable -EXPORT_SYMBOL_GPL net/bridge/bridge 0x060afb14 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x24b94782 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7be4a8d6 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x870b3ba3 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc6b6ee71 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd77ead7f br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe063a13c br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf48585cd br_deliver -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x3b8ea5cd nft_bridge_iphdr_validate -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0xd5cc4b7c nft_bridge_ip6hdr_validate -EXPORT_SYMBOL_GPL net/dccp/dccp 0x04615944 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0c67e266 dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x142eb8bf compat_dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1670ec79 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x18776df5 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d510802 compat_dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x23672cd0 dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2ec91170 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2fbe6d1e dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3c534f55 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x44d6d197 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x47d2c236 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x495459d4 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4e2d4d99 dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4efc2011 dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x58e291e0 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6ab8cf9b dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6fecb54a dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x74c4fb6e dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7a4b469a dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x949b5596 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9619fbd0 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa7924e32 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa9c0857f dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb39dbff7 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc3068c2f dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc6e0242b dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcf6e22ae dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd1f0faaf dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd3021f29 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd8d04d4e dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xda4405c2 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xdcbf71e1 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xdfde7ba3 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf084ea4a dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0xffb40c65 dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x0af10c3d dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x27cfe214 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x30b5d6eb dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xae3755e4 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd4b8290b dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xeb2411a3 dccp_v4_connect -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x6089848c ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x79ede622 ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xbc86815d ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xceb8d379 ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ipv4/gre 0x1a80dfa3 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xeb69c655 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3f152b56 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x48afef3e inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x691d0eb7 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x97333dc4 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa2a50590 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe28f144d inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x1fdf3a17 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0a9646d6 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0dcfcd99 ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x11399d95 ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x26768399 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2d9bfbe2 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3777da97 ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4825e6cf ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9f8bc3ec ip_tunnel_ioctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xaa447780 ip_tunnel_delete_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc0328c08 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xce5df6b0 ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xda2d3a17 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe0bb3d07 ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf24ef2a8 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfe6f713b ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x8fb46d94 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x97eae775 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x21ce8885 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x22c8bac7 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x3f7bcf97 nf_nat_ipv4_out -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x482c44a5 nf_nat_ipv4_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x76673af2 nf_nat_ipv4_in -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xb275f6eb nf_nat_ipv4_local_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x0dcd2a46 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x1e7481e1 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x49716b9c nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x565b6ae8 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x684a22fe nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x9a85d200 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x17e7306c nft_af_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x0d047743 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x36ca7484 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x4006e821 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x625f4df5 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xd345bbdd tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x4e42ad33 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7382870a setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x770c413a udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb2a16b29 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x29dfe93f ip6_tnl_dst_set -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x49be46eb ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x6d19b0a7 ip6_tnl_dst_init -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xa1607cb2 ip6_tnl_dst_get -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xcb16ae7e ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd993b7e0 ip6_tnl_dst_reset -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xe7a6405c ip6_tnl_dst_destroy -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x0a2d90db udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xfc232c72 udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xb6aaddaf ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x1cf2fcd7 nf_ct_frag6_consume_orig -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xf69877f5 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xaab45bba nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x565fc8a9 nf_nat_ipv6_in -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x62e114c1 nf_nat_ipv6_out -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x8096f58f nf_nat_ipv6_local_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x9be39d5a nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xd2c43f94 nf_nat_ipv6_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x0fb77744 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x02b8d911 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x0ed218aa nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x3ae8c8bd nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x982cdf77 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe4845979 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0xae52a016 nft_af_ipv6 -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0149f1b5 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0617a3e0 l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4338852a l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5aa7a3e8 l2tp_session_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x600df3c4 l2tp_tunnel_closeall -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6b4b4da4 l2tp_session_queue_purge -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x860a70a2 __l2tp_session_unhash -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8e47ab12 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xaa32593c l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb1d2e6b3 l2tp_session_find_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb5872531 l2tp_tunnel_find_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xca97e17a l2tp_session_free -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdd9b7f2d l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xddae8e99 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe47e3019 l2tp_tunnel_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf66bc2de l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x105cb43e l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x06750818 ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x11e1f72f ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1f216d2c ieee80211_set_key_tx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x263a4188 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x27542225 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2b6cd074 ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2d75a472 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x416c2082 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x44d201c7 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x58a151ae ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6526ce92 ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x77bc3c73 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8aa8cb92 ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9d424a58 ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa7fffef3 ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbc18b3db ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbd17a7a9 ieee80211_iterate_active_interfaces_rtnl -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd671350c ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x703adf3a mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x834e4a30 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x9ea62ac1 mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xfdfc9d91 nla_put_labels -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0130f068 ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0171e7e6 ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x17b57661 ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x40de82dc ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4f09b534 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5569445d ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6c1451d4 ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x77167627 ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7ee0d5fa ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9652e59c ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9def28d7 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xaa0c6140 ip_set_get_ip_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbc274f14 ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd0008e04 ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd7304110 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xea908167 ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x7122d81f ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x7bae6e37 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xbd98c0b5 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc01d1cb4 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0487e76d nf_ct_l3proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x077b2144 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c3454e8 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0f0e3511 nf_conntrack_l4proto_udp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1027628f nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1497885b nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x183128d3 seq_print_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x199d96d4 nf_ct_iterate_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a8e204d nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f20d2c6 __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2319aebf nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x234acefe nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2793928e nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289b1482 nf_ct_expect_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x33786ff5 nf_ct_l3protos -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x34ef3c26 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36825374 nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d12597f nf_ct_l3proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d385793 nf_conntrack_l4proto_udp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3da61b75 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x43611b4c nf_connlabel_match -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47d59888 nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x49e34fa2 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b71bf19 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b7e160c nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4d50ca69 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x520e701e nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5b23b1d8 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5be39ebd nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5cdd1929 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5e37165f __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5fd81092 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x60c4dcde nf_ct_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6857d123 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x69d41f26 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a18dc58 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x704cbf6b nf_ct_l4proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74c6d4bd nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x79731fa1 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b4cf774 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7cfde6ac nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ea67722 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f762270 nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x819a7362 nf_conntrack_l4proto_tcp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x82536099 nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x84cf5984 nf_conntrack_set_hashsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x900b0eaa nf_ct_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90d2483e nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9655b9eb __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x98381710 nfnetlink_parse_nat_setup_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x98eb2c45 nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x99c5ee3d nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c1a62e3 nf_ct_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa3b424a6 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa513573a nf_ct_l4proto_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb3ac11e0 nf_conntrack_l4proto_tcp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb51fbaec nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbbfb2afa __nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc352fb31 nf_conntrack_l3proto_generic -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc4f5619 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd08f3e5 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd670604 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xced3313a nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcf788932 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd23d730f nf_ct_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd5009f44 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd54f7d4f nf_ct_get_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd67b3100 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda4b22d0 __nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdadb25fd nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdadd41d3 nf_ct_expect_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xde06587d nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe0a8e8f0 nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe1d31c47 nf_ct_l3proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe48d6cfc nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe63de16b nf_connlabel_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6b0ce0b nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe843b1be nf_ct_l4proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf33c46ee nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfc47b5dd nf_ct_l4proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x818e447f nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x78ff61af nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xd8f189ba nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x217552b3 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x2e8a6eef nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5bed502e set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x67fe395c nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x70dade16 set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7ee5ba09 nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x963787ff nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xaa31b71b set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd4f9a25b set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe020fdaa get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xc08c47c3 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x3091e08f nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x36d56c3a nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x7abdf765 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xbdab93ef nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x25748a50 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xb0fd20b4 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x36763ef9 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x67b20910 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x6fb9ddea ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb18e0ab8 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb5f6979d ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb78febbb ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc556f080 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x0f488b0b nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x9f435e05 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x0d240a9e nf_log_dump_sk_uid_gid -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x45ddb74e nf_log_dump_packet_common -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x49e85ae1 nf_log_dump_udp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xe5c0edf7 nf_log_dump_tcp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2a7e4f18 nf_nat_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x34f656b9 nf_nat_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x49927b9d nf_nat_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x680e5823 nf_nat_l4proto_unique_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x81a07876 nf_nat_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x938bcc38 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa2e54d96 __nf_nat_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xafc7a183 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd102830b nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x8d911224 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xb9af9cbc nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8841d39b synproxy_build_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x92ee9777 synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xcd114c5f synproxy_tstamp_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x053ad985 nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x17b424fc nft_unregister_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1c2b0ab4 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2928a11c nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2d5ac279 nft_set_gc_batch_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x36cd8f15 nft_register_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x56199cfd nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5e0bd792 nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5e9ff240 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6814e75f nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6b3eaf82 nft_validate_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x736e9bc1 nft_register_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7a7b252c nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fa50c21 nft_unregister_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x85b93060 nft_unregister_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x944056b0 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9c3cad60 nft_register_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6a4b2e4b nfnetlink_alloc_skb -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6cf36c35 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7800416c nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xad97b92c nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd27fb219 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xde84fe7b nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xefda2351 nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x13549c3e nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x3c5aed80 nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xe76f35ff nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0xd42e4857 nfulnl_log_packet -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x1011b5a8 nft_masq_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x475d5f5e nft_masq_init -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x90e55798 nft_masq_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x345eaf9f nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x47c6d1bb nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x4ca45a8d nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x66aaabe6 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xaf4030b8 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xe1c05fa3 nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x333c1b83 nft_redir_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x91013aa6 nft_redir_init -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x9d5cb107 nft_redir_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x19b3a770 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x5e493ca5 nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0a5b4c68 xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x10a91070 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x161d1417 xt_compat_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x19ee93bb xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1e66c04d xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24aa29dd xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x43892b3c xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x52567e4c xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x56f8b935 xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f82f1f7 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x691a6d69 xt_compat_calc_jump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x73cee41e xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x74287280 xt_hook_link -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9e8ec151 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xaaba44db xt_hook_unlink -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb53341a9 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc33265e6 xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc8c3cdf8 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd8a610e9 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd95ec6b5 xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdeee6d2d xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0b4971b xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0c7b275 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec24fd82 xt_compat_add_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfb1f4b30 xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x4c32c169 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xb7459345 xt_rateest_put -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x1ae97b46 nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x549797ed nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x54e4256c nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x47ca5970 nci_uart_unregister -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x66275348 nci_uart_register -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xdf262ff4 nci_uart_set_config -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x2320dfb8 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x658424d4 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6894f3dd ovs_netdev_detach_dev -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7cc53964 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x88116d20 ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xac75c6b2 ovs_vport_receive -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb1bab26a ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xec289c5d ovs_vport_deferred_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf53d07d6 ovs_vport_free -EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x0ec11092 rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0x1172ccb2 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x1ed3f1a1 rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0x2af973f6 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x3db21dea rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0x43fcadb7 rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0x48b3b3c0 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x5a4be9fe rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x5c05b226 rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0x60d4b7c1 rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x61535e34 rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x61a3aac7 rds_page_copy_user -EXPORT_SYMBOL_GPL net/rds/rds 0x624d916a rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x650f435a rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x7bc62829 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x87c776c6 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0xa011a27e rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0xb431c65b rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xcbbc9916 rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xde673448 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0xe18124b1 rds_send_get_message -EXPORT_SYMBOL_GPL net/rds/rds 0xe4b05f49 rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0xf3d6b41b rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0xfc557ee0 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0xfe325deb rds_inc_init -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x1e7cc9ca rxrpc_unregister_security -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xebc1e32f rxrpc_register_security -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x275e4156 svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x43c25703 gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x53907387 gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02e309f6 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04e42e28 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05112624 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0511f3f1 xdr_set_scratch_buffer -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0581f49f rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0767f46b auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x082972b1 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0833184b xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x090202f2 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ab60860 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0aec2342 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0af68a4e rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bfa2267 rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ddf5da2 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1002ea9a cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x105803e9 rpc_protocol -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12cb5c93 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x141036c8 rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16967623 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17af9c3c svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a3e40d7 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b281d1d rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b597ce3 csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bc130af svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c35ddb3 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d1bbee0 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fb1afb4 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22ac27bc rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22c60867 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25012e1a rpc_rmdir -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25ce4cb0 rpc_lookup_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26121b5e rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26553df5 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29788a1a svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29a1e93a rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a5fd9d8 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b92b5b7 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e848d04 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eb81b0b xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fb58e52 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fddc02d rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30dcd5e9 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3439cf88 rpcauth_key_timeout_notify -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x362ef2de put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38896071 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39c9ee7d rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a8e2bff xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b665b12 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c46572e rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e79cf8d rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x407c469e rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41a5514e rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42a65275 rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44ca8b1c rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44ee32ff xprt_set_retrans_timeout_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45e06931 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45ef89a2 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x470e8743 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4830537b svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x487c3d99 cache_seq_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b71ab25 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c038f2a rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c81b123 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f11f6c9 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50434729 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x532a94a8 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54e063a0 __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54f397bb svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x566ecc47 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57adbd7a rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57c3bbfd xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58b241c3 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bbba726 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c36b080 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6102c674 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63df4fad svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bfca8c2 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cbda17a rpc_lookup_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ce21e62 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d28eca4 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6df15e9d xprt_lock_and_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72cb6b8d xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72cfd778 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73313abe rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73f6424f rpc_print_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74bfaa1c svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x756d4f7c xdr_skb_read_bits -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x774efc30 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b00bf5c rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b1871ad rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7eb05551 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8081625b svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80de96a7 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8229e24c sunrpc_cache_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8474a8c2 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8508a805 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8555a781 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85f82f48 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cf60f6e svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d950534 cache_seq_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e381ca3 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fab00d1 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90ec08e2 rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x926c1c13 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93e570dd svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94941bef rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96b9c9af xprt_set_retrans_timeout_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9818e1a0 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98691837 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98cef000 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99c7ce06 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c72d850 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e28fe78 svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f36c8f0 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa01b3a97 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0b1a515 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1a7ebaa cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5038efa svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa56b52a7 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa58c697d svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa597562d rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa60bd2db rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7d37307 cache_seq_stop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa94d65ae xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9d87c01 cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac965438 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf50b78e svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf561377 rpc_task_reset_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1a55fca xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2526c2d rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3dc1cab rpcauth_cred_key_to_expire -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb431b11f rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5172e11 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb643dbac xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb75aabfc sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb797c1b5 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9ff9cb3 rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba93436e rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcb6667b xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd791bc0 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbddc0421 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe1a1410 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2e34b9d svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc376639d rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc67d3c06 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6f87baa xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc75f573f svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8f3a961 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcac01995 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc7cb679 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd102794 xdr_partial_copy_from_skb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfd88daf svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0f95f5d rpcauth_generic_bind_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd14c8eb9 rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd31b3808 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd850029e svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8bb50e7 xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda4a1c65 rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbed83db xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc1de2b1 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcbe79b5 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd5ca76f rpc_lookup_cred_nonblock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf034e39 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfc4b38b svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe04ab5c9 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1624ade svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2e5b80a svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe350900a rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe40f4866 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4763385 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4aa9de3 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe584ef1c rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5ac887e xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5b0f21e rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe73fce77 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7cc05f1 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8a1e364 svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe991ec4f rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9d61fc8 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9f66a54 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea08ec4d svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea649ee2 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebc824cc svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed714b4d xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee8d22eb rpc_get_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeb5926a sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeef1f35c xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf08d9928 xdr_buf_read_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf18c503b cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf41c06c2 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6842c28 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf80d4c02 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf94b4e2b unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfaf4c79e rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd1c0482 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd525ed3 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfedf0952 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfee2a038 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x028fc0c2 vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3210a9dd __vsock_core_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x42b571a3 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x57caeb25 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x60daaaef vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x797b4383 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x970b77bc vsock_pending_work -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbbfe3d53 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc314ea0a vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd07202bc vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd313a57c vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd843455b __vsock_create -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdba86829 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xeefc6fdc vsock_remove_connected -EXPORT_SYMBOL_GPL net/wimax/wimax 0x2ebd46de wimax_report_rfkill_hw -EXPORT_SYMBOL_GPL net/wimax/wimax 0x42c765c5 wimax_state_get -EXPORT_SYMBOL_GPL net/wimax/wimax 0x42fa729f wimax_dev_add -EXPORT_SYMBOL_GPL net/wimax/wimax 0x4cb59307 wimax_msg_alloc -EXPORT_SYMBOL_GPL net/wimax/wimax 0x7d992bbd wimax_report_rfkill_sw -EXPORT_SYMBOL_GPL net/wimax/wimax 0x973b4a17 wimax_msg_send -EXPORT_SYMBOL_GPL net/wimax/wimax 0xa233dd7a wimax_msg -EXPORT_SYMBOL_GPL net/wimax/wimax 0xa763405b wimax_msg_data -EXPORT_SYMBOL_GPL net/wimax/wimax 0xb2b70f1c wimax_dev_rm -EXPORT_SYMBOL_GPL net/wimax/wimax 0xb5fb65b5 wimax_msg_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0xc3e7f142 wimax_state_change -EXPORT_SYMBOL_GPL net/wimax/wimax 0xe3227f17 wimax_msg_data_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0xf61501b2 wimax_dev_init -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x13f93b0d cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2c1b3d39 cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4bb5cf09 cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5f147b2c cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x61b60e73 cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x919a4b6d cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa3019b39 cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xadd7670c cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb43340f4 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc82884e2 cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd00663d7 cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe0109298 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xedb6c7cf cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x1192954e ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x3ccae463 ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xaa053f5b ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xfbd48c1a ipcomp_input -EXPORT_SYMBOL_GPL sound/ac97_bus 0x13748313 snd_ac97_reset -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x4bbba297 __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xb6a0b149 snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/snd 0x30416cb7 snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0x31fbad67 snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0x39ab423c snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd 0x5fe98747 snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0x8ffee49b snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd 0xcbfef1bb snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0xfcc41d62 snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x0ee850c7 snd_compress_register -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x1314b55e snd_compress_new -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x8275888b snd_compress_deregister -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x02e21f49 snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x0c3b8a07 snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x12fb9417 _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x193161dc snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x3b5f832d snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x47d878b7 snd_pcm_stream_lock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x62981915 snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x752134f4 snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xbb9c8b58 snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x19513446 snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x221d9b08 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2d297f99 snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3cbc304f snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x4e532422 snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5428987c snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x62d31d28 snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x868b1eba snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb5b77c3b snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xdff53fcf snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf2e45d78 snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0650d7cc amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x5b80ab53 amdtp_am824_set_pcm_format -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x87a9fb59 amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x93a97c94 amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb2afffd1 amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb7771219 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd86f618f amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x013cc440 snd_hdac_ext_bus_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x06fde763 snd_hdac_ext_bus_link_power_up -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0b01d17e snd_hdac_link_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x17acf974 snd_hda_ext_driver_unregister -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x25f318c7 snd_hdac_ext_bus_get_link -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x26c2e3e4 snd_hdac_ext_stream_spbcap_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x31ee2992 snd_hdac_ext_stream_init_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x354c14c6 snd_hdac_ext_link_stream_setup -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x35ca720f snd_hdac_ext_stream_set_spib -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3c360ded snd_hda_ext_driver_register -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x43a68f41 snd_hdac_ext_stream_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x44bd783c snd_hdac_ext_link_clear_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4676ce22 snd_hdac_ext_link_set_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x54da4c10 snd_hdac_ext_bus_link_power_down -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5bf17d5a snd_hdac_ext_stream_release -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x63efda45 snd_hdac_ext_stream_assign -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6c643a0c snd_hdac_ext_stream_get_spbmaxfifo -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6d6d69ab snd_hdac_ext_bus_link_power_down_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x757600d5 snd_hdac_ext_link_stream_start -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x76384537 snd_hdac_ext_bus_ppcap_int_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x77db8ed5 snd_hdac_ext_stream_decouple -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x84944c1f snd_hdac_ext_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x94c0b723 snd_hdac_ext_bus_device_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa72ec1b0 snd_hdac_ext_bus_get_ml_capabilities -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa81eed2e snd_hdac_ext_bus_exit -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xac626a37 snd_hdac_ext_bus_device_exit -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc3b70053 snd_hdac_ext_bus_ppcap_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd5a57cbe snd_hdac_ext_link_stream_clear -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd7fc6224 snd_hdac_stream_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd8708a90 snd_hdac_ext_stop_streams -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xfa02db5b snd_hdac_ext_bus_device_remove -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xfdd51d92 snd_hdac_ext_link_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x010b68cf snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0188150f _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x027763c6 snd_hdac_set_codec_wakeup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x042327a5 snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x059d78a6 snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1137396f snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x17d11c7f snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x19986067 snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1bc89371 snd_hdac_display_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1bd28077 snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1dc7f362 snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1eef9382 snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1ef493b5 snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x20ec2c76 snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x213675de snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x265f1568 snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2714e4fc snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x29e94c97 snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x37438c04 snd_hdac_bus_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3819294b snd_hdac_i915_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x39b08970 snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b52ac07 snd_hdac_make_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4202ca88 snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x43b0b585 snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4415b932 snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x456d5aa9 snd_hdac_bus_add_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x48ab2540 snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4a29857a snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x50629202 snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x50b2e08d snd_hdac_bus_queue_event -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x53642fb3 snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5732ce80 snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x59df3b22 snd_hdac_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5ad6779a snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5b608e3c snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c28bbf3 snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5d44849c snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x633bf6ad snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x63abae29 snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x655002a8 snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x66e1f641 snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x694b8c4b snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6a348f04 snd_hdac_i915_init_bpo -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7094d905 snd_hdac_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73187668 snd_hdac_i915_register_notifier -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73ce47ff snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x76492eb5 snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7a519edb snd_hdac_refresh_widget_sysfs -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x895c8b88 snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8e4e1182 snd_hdac_bus_remove_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x924f722b hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9e427d5d snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa38fc47c snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaa11e1a1 snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xad0a67c3 snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf2c6585 snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb2a05ae8 snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb55ba932 snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb9a538f5 snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbef1b975 snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc0440137 snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcc2d6a91 snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xce172582 snd_hdac_i915_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd1a0b62c snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xda73ea4a snd_hdac_get_display_clk -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdecfac50 snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdf1b7e1a snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe100168c snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe3a7ddb9 snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe5f53f3b snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe7dda958 snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe90da913 snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe962f880 snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeed1376d snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf33d39ba snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf5eaed51 snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfb4a77e3 snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xffc94e4a snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x1661fef4 snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x2f103073 snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x408a7c14 snd_ak4113_create -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x74c637da snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x9556da4e snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xf52de9fe snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01e9219f snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0371c3cd snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04aa53b8 azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x07c7e3a5 snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0993d403 snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a24c447 snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0aa1321e snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0af689d8 snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0d743765 snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0d80b8e6 snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0fc091ff snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x101b598a snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10884411 snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x141d3bc8 snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16d81ee2 snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x190b7983 snd_hda_mixer_bind_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c333f04 hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c429611 snd_hda_bind_vol -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e814a0f snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x232f3a02 snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ea015d7 snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x309e9f9d azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3143e5af snd_hda_jack_tbl_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x32bd9199 snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x32ec2616 snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x37cac300 snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x37df33f3 snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x39502f66 azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3bc7fc6c snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3c8a9c91 azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d52dc8c snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4293d076 azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43836a04 query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x442fda59 snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x454185ff snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46fad3b9 snd_hda_mixer_bind_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4854e367 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x517ce197 snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x53f25b35 azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x546ac197 _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x551e57af snd_hda_mixer_bind_ctls_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x575cc33b snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58f0315b snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59935761 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d2c3c58 snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d4468ba snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5dbe92af snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f357639 __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61a7a6a4 snd_hda_mixer_bind_ctls_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x62bd07a4 __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64d4e30a snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x659d4517 snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69a0aa86 snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c49c050 snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6cf27fce snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70108782 snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x724322b2 snd_hda_mixer_bind_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x75a440d9 snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x75c540a2 snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x781dabe9 snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a9ce912 snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b469522 snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d322d22 azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x820b380e snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84962a98 snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86aacf0d snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86f73638 snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86f813ee snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x87b48bf0 azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b09af44 is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c94c048 snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e9b574b azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x94b39302 snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96776904 snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x981fcff5 azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98c52f75 snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x99efa278 snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d4e9291 snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa00a6209 snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa02e7a8d snd_hda_jack_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3299e78 snd_hda_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3e531db snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4e85be3 snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa62b1663 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaaaf9a3e snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaeef0c52 snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf0e9095 hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0d0456f snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb24a3826 snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb26ec658 snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb6faedf5 snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7b48bc8 snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba79836d snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbdc073e5 snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbfefc924 __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc0f7904c snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc33d04f1 snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc361acd9 snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7a37da0 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7a9a43f snd_hda_mixer_bind_ctls_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7b80e4e snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9814d8f snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9a33745 snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcad41366 snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcfecf8f4 snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd1a64a5d snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4280fc7 snd_hda_register_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd7922e5d snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd98912ca snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda27545e snd_hda_bind_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd2cd174 snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xde19744b snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe5a980a3 snd_hda_jack_detect_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6587476 snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe697432c snd_hda_jack_detect_enable_callback -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea1c8fae snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed67c78f snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef1650d8 snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2ffceaa snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf96479bb azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf9b563fc snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb185385 snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd9acdb8 snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfefe33c0 snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x014219d3 snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x02ff42df snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3050e617 snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4cfc35aa snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x50217dc5 snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6878b128 snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x78e57f69 snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7f85fd61 snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8ceb173c snd_hda_get_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x92ac6b98 snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa2f224bd snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xab6c68cf snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbdfa3790 snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc6bd2962 snd_hda_parse_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc7ba001b snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xcd5b3afb snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd2026372 snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe309ee10 snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xee56616c snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf6cc6449 snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf7d2d4b5 snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xc9ca8c71 cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xca5077ff cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x8e21fd3d cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x9cb7f4a2 cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x57fc0886 cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x9ae57911 cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xe36cb18e cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x732942ea es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xc04051be es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x28105f44 max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x591e5f50 pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x63d3218a pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x64ccde77 pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xea0c510b pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xa7aa810f rl6347a_hw_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xade4bf4c rl6347a_hw_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt286 0xbd95ddbd rt286_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x0d969a7e rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x81bfe739 rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xec88097a rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x8421d580 rt5670_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xa077e960 rt5670_jack_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xbb358c46 rt5670_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xe6aa0872 rt5670_jack_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x066b417f devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x4668b871 sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x704c9bc8 sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xc7ecae66 sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xe4b7de7f sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x14473eba devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x8b5cefa7 ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xe4ac6585 ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xb85e7b24 tpa6130a2_stereo_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xfb9bd80f tpa6130a2_add_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x2ff93d71 ts3a227e_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x1897920c wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x27c396af wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x3ea6831d wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xd92fcbed wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x19133799 wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x66001a8c wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xd87c3bc8 fsl_asrc_platform -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xef93d40f fsl_asrc_get_dma_channel -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x30693bb7 imx_audmux_v1_configure_port -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x58631dab imx_audmux_v2_configure_port -EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-mfld-platform 0x9a4b969a sst_register_dsp -EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-mfld-platform 0xcc1a4611 sst_unregister_dsp -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x1b6ded92 intel_sst_pm -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x5239327a sst_configure_runtime_pm -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xab14edd5 relocate_imr_addr_mrfld -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xabe7725b sst_alloc_drv_context -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xb5379d85 sst_context_cleanup -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xf8d8f2ba sst_context_init -EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x38559f33 sst_byt_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x654b2351 sst_byt_dsp_suspend_late -EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0xa1d92a6b sst_byt_dsp_boot -EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0xd0dda96f sst_byt_dsp_wait_for_ready -EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0xd5ff3530 sst_byt_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0781cad3 sst_fw_new -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x108d109f sst_dsp_shim_read_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x124b44e2 sst_dsp_shim_read64_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x150713a5 sst_dsp_shim_read64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1b5e8b82 sst_shim32_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1c1dc72a sst_dsp_shim_update_bits64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1cc24c20 sst_module_runtime_free_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x23db7709 sst_block_alloc_scratch -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2a5e411c sst_dsp_sleep -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2bb916ed sst_module_runtime_get_from_id -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x30f8dfa3 sst_mem_block_register -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x33d3193a sst_alloc_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3b5d0aeb sst_dsp_shim_write64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x42e2f16f sst_dsp_ipc_msg_rx -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x439fccb6 sst_free_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x451a2267 sst_dsp_dma_put_channel -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4a045773 sst_shim32_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4c77a8f1 sst_fw_reload -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x511fcec8 sst_mem_block_unregister_all -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x53000a74 sst_dsp_inbox_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5483bc8b sst_module_alloc_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5725f780 sst_module_runtime_free -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6494e262 sst_dsp_reset -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x66a8db76 sst_module_new -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x69706391 sst_memcpy_toio_32 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6b87ee4e sst_module_free -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x707ea413 sst_dsp_shim_update_bits64_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x71a7517b sst_module_free_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x77c42f90 sst_memcpy_fromio_32 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7a79da0d sst_fw_free -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7daf37ac sst_dsp_shim_write64_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x80843c13 sst_dsp_shim_update_bits_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x81543d9a sst_dsp_shim_write_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x87b49114 sst_dsp_get_offset -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9120b0a2 sst_module_runtime_save -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x925eb0e8 sst_dsp_outbox_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9b4f2830 sst_dsp_inbox_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9c5d5cde sst_dsp_dma_copyto -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa2e5dd18 sst_dsp_shim_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa4e81f0e sst_dsp_outbox_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xab439516 sst_dsp_shim_update_bits_forced -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb18181d4 sst_module_runtime_new -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb6e4a7ec sst_module_runtime_restore -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbc1b9e80 sst_dsp_dma_copyfrom -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbce71cb2 sst_dsp_shim_update_bits -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbcec5387 sst_shim32_read64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc6c86440 sst_dsp_ipc_msg_tx -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd1c1f6a5 sst_dsp_wake -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd28e49c0 sst_dsp_register_poll -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd86be419 sst_dsp_dma_get_channel -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd88fb45c sst_dsp_shim_update_bits_forced_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd994604a sst_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd9a2c94c sst_shim32_write64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xdc8e3f2c sst_dsp_new -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe1e5ee63 sst_fw_free_all -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe5cd20ce sst_module_runtime_alloc_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe84a12e2 sst_dsp_mailbox_init -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe99fa6d6 sst_module_get_from_id -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xeb1db49e sst_dsp_stall -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xeee0e03a sst_fw_unload -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xefbefab3 sst_dsp_boot -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf3cbdbb1 sst_block_free_scratch -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xfb0af0c9 sst_dsp_shim_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xfb923122 sst_dsp_dump -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x0e24b0d1 sst_ipc_reply_find_msg -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x3276f327 sst_ipc_init -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x377eab25 sst_ipc_tx_message_nowait -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xa2426fcd sst_ipc_drop_all -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xd7280c99 sst_ipc_tx_msg_reply_complete -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xd77c1d9a sst_ipc_tx_message_wait -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xfb31943e sst_ipc_fini -EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0x4efcaadb sst_hsw_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0x59aae0c0 sst_hsw_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0xd1f69f64 sst_hsw_device_set_config -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x01bf498d skl_ipc_restore_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x02f4b8a5 skl_ipc_delete_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x0abbe476 skl_dsp_wake -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x14746f47 skl_ipc_set_large_config -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x2583afa7 is_skl_dsp_running -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x3336e2d3 skl_ipc_create_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x3adf6d49 skl_sst_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x6912aede skl_ipc_set_dx -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x8fa65e22 skl_ipc_bind_unbind -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xa5a52845 skl_ipc_init_instance -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xaa1a22d5 skl_sst_dsp_cleanup -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xb80a1de2 skl_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xd2dc9182 skl_ipc_set_pipeline_state -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xd3ee5185 skl_dsp_sleep -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xd9d4fec1 skl_ipc_save_pipeline -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x007c7590 devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x020a798a snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02471e46 snd_soc_new_compress -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0328a663 snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x03eaea2b snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04036eef snd_soc_remove_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07921298 snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a1d0bf4 snd_soc_register_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b261017 snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c62095e snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e1a2dc5 snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11cc5de2 dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17340cc7 snd_soc_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18297e16 snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19bf0779 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1adee7d6 snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b12f0f6 snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b306ae4 snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c3dccff snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f74296d snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20ecc0bd snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2187e16c snd_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x225e0ce5 snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x228a2f89 snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x286e5def snd_soc_tplg_widget_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28cd82b8 dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x292e5022 snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a7cbd56 snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b6b6974 snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c81242d snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2efc1825 devm_snd_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f6e10dd snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x317bf1bc snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3210f0cc snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x323e5670 snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x329d292d snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x347ccc7c snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x351f7b80 snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36724bc8 snd_soc_get_dai_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38295078 snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a701ffb snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3aad5ee6 snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d0d1cda snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41b3b50e snd_soc_free_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41b6d935 snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46afd19e snd_soc_tplg_widget_remove_all -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48f19080 snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f3262ce snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fe30e68 snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ff1081c snd_soc_add_codec_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x505f25e5 snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5144a179 snd_soc_dpcm_be_get_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x539d527e snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54b3995d snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54e71178 snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x552e74bf snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57faa297 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57ff4f88 snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a258b6d snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e4fe6e3 snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x608ecd1d snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63d609d4 snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x645b0587 snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65be5596 dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6894a364 snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6914d2bf dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x693eb59e snd_soc_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69f27140 snd_soc_platform_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f727d22 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71460d58 devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x754e1e57 snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x76704eab snd_soc_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a123d98 snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b369baf snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c2d9931 snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f965d3b snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8108fbf6 snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x821b3d68 snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8441d0f6 snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8677740e snd_soc_lookup_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x893070bf snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a7a6662 snd_soc_of_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8aef0e2c snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8bb9d78e snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8bc64e36 snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8bd2661b snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8cda4b2f snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d39c083 snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f192406 snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x911dea5c snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x93e138ac snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98cb1828 snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99855978 snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99b2dee5 snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99b63bcb snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ab75d3d snd_soc_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9cd43f40 snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa5554f5b snd_soc_new_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa606e1ce snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xacbe6e52 snd_soc_unregister_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaec81596 snd_soc_platform_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf326fda snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xafe1b133 snd_soc_add_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb2dfd26d snd_soc_codec_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb35ecbb2 snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3a7190b snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7f6f7a9 snd_soc_tplg_component_load -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb83b30dc snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba9be03d snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbaf6c43a snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc9012d2 snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd588707 snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1643311 snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8237aa4 snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9f92283 devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca33f7f8 snd_soc_add_platform_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb396a8e snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb4b43c6 snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcbe49e7f snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc04e0b5 dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xceaaa92c snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0bfb030 snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7cd8b82 snd_soc_codec_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8ba384a snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8d1273d snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9ee4f4e snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdbcb29b6 snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc3c993c snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde9dc9ae snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdee37a3c snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe04d9a54 snd_soc_of_parse_audio_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0ee5f10 snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1ccf6b1 snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1ffd934 snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3a9da25 snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb223ccc snd_soc_dpcm_be_set_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeba564f6 snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec6e89b2 snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef2fcaf3 snd_soc_tplg_component_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xefcc979d snd_soc_platform_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xefe22901 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1fa94be snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3a69239 snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf40d8d7e snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf620abce snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf661ea6c snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf73a1544 snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf7766646 snd_soc_unregister_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf78dcc04 snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf90210b8 soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf90f9a79 snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfbd0f69e snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd422959 snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe9b91f3 snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0b71d703 line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2551aa30 line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x261c6d3b line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2d423e24 line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x32846603 line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x414771cc line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x68da393d line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6d07c6e1 line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x79860d91 line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x90822013 line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa11e7ce1 line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa91996c2 line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xafdc9c82 line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc908ce42 line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf5a95dd2 line6_probe -EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x08003b2f i915_bpo_gpu_turbo_disable -EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x0d97d346 i915_bpo_gpu_raise -EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x358a54ae i915_bpo_gpu_busy -EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x451432c2 i915_bpo_gpu_lower -EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x7d4de94c i915_bpo_read_mch_val -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x03e2b9ed rsi_hci_attach -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x0643a2ac rsi_hal_device_init -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x1e678bb2 dot11_pkt_type -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x22421130 rsi_deregister_bt -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x25c4d39f rsi_config_wowlan -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x406f8a44 rsi_default_ps_params -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x437447f4 rsi_hex_dump -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x45ca198c ven_rsi_dbg -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x4933a703 rsi_hci_detach -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x4f4bee18 rsi_init_dbgfs -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x5466945c rsi_hci_recv_pkt -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x57c83f81 ven_rsi_read_pkt -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x5955d54f rsi_send_rx_filter_frame -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x6751b56c rsi_remove_dbgfs -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x6d21d369 rsi_send_rfmode_frame -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xa301842f ven_rsi_mac80211_detach -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xdb078836 ven_rsi_91x_deinit -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xe30ab07f ven_rsi_91x_init -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x3fe35aea irq_bypass_unregister_consumer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x418873cc irq_bypass_register_producer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x888c5be5 irq_bypass_register_consumer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0xf6e772c3 irq_bypass_unregister_producer -EXPORT_SYMBOL_GPL vmlinux 0x00059b28 crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0x00068cbb crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0x0034f3b6 xen_has_pv_nic_devices -EXPORT_SYMBOL_GPL vmlinux 0x003da223 fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0x003e8508 wm5102_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x004151c2 acpi_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x006ed81f crypto_unregister_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0x009b7fe3 acpi_subsys_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x00a1c5f6 xenbus_free_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x00db7e03 preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x00e4055a aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0x00e6f2d2 apei_get_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0x0100a81a __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before -EXPORT_SYMBOL_GPL vmlinux 0x01075eff crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0x010e0f06 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0x011377e4 acpi_bus_trim -EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish -EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok -EXPORT_SYMBOL_GPL vmlinux 0x0188aea4 blkg_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x0193750e virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0x01a756c5 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0x01b6bfe6 ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0x01c3f73f md_run -EXPORT_SYMBOL_GPL vmlinux 0x01d82cc5 md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x02110793 acpi_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x02141056 scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0x02350504 sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0x024b9178 sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0x025f3159 pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0x026211e2 memory_failure_queue -EXPORT_SYMBOL_GPL vmlinux 0x0268e921 sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0x027579b1 regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0x029084c7 btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0x02967fab fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0x029a9438 cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0x02afef08 usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0x02dc2de0 xhci_run -EXPORT_SYMBOL_GPL vmlinux 0x02e2fd6f device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x02ffa07b fuse_request_send -EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x034c6759 sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x0398862e simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0x03a417cf pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x03c2ee30 ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode -EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x042a95ff sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x043a4674 vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0x043b935f __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x04606178 sg_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x047a4776 pci_enable_pri -EXPORT_SYMBOL_GPL vmlinux 0x0485655f amd_get_nodes_per_socket -EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0x04a9410b __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x04c3f2c1 gnttab_empty_grant_references -EXPORT_SYMBOL_GPL vmlinux 0x04c49c8f blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04d11be3 devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x04ecfb5c set_memory_wt -EXPORT_SYMBOL_GPL vmlinux 0x04ee24d6 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x04f0f1ad devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x050bbe83 blk_queue_bypass_start -EXPORT_SYMBOL_GPL vmlinux 0x051e9755 blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x0523c1a0 crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0x052c3e7f __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0x052eb281 attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0x053494cb tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0x054983c6 usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x05514549 netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x055f670a tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0x0573a2a6 pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0x05943dd6 ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0x05add3fd dma_buf_kmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0x05b4157c regmap_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x0624f3fb crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x064c1828 tps65217_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x065f6826 rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x065f9f09 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x06807848 rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0x0682f117 agp_remove_bridge -EXPORT_SYMBOL_GPL vmlinux 0x06851068 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x068fa403 debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x0695dc22 blk_mq_tags_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x06b1cdd4 clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio -EXPORT_SYMBOL_GPL vmlinux 0x06fd340d __efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0x06fd8557 ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0x070ca059 _submit_bh -EXPORT_SYMBOL_GPL vmlinux 0x074964d0 dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x074f8bbb pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x07505e78 rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x07784ce0 tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x07794e2f class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x077eedf8 __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x0788b634 irqd_cfg -EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char -EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07c5d490 fat_scan -EXPORT_SYMBOL_GPL vmlinux 0x07d1f681 get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x07d4d65a __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x07f3962e __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x081020f3 crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0x0834d94e dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0x08372be1 uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x08460cfc usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x08928f3f regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x08955466 klp_register_patch -EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec -EXPORT_SYMBOL_GPL vmlinux 0x08cba1eb ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0x08db7cad scsi_device_from_queue -EXPORT_SYMBOL_GPL vmlinux 0x08f3acb5 rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x092cbc91 single_release_net -EXPORT_SYMBOL_GPL vmlinux 0x0940e8b6 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x094d4147 scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0x09b1939b usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x09bb4acb gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x09f78eb4 fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x09ff9d0c __class_create -EXPORT_SYMBOL_GPL vmlinux 0x0a072b1c xenbus_alloc_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x0a347ad0 wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0x0a4fde00 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0a696f12 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0x0a7bb731 acpi_create_platform_device -EXPORT_SYMBOL_GPL vmlinux 0x0a808d88 sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x0a86ab7b pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x0a911dff cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0x0aa91b99 _gpiochip_irqchip_add -EXPORT_SYMBOL_GPL vmlinux 0x0ac1c7a3 rtc_irq_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b34c761 device_add_property_set -EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add -EXPORT_SYMBOL_GPL vmlinux 0x0b5e2c3a __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0x0b9a2651 skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x0b9e3096 fpu__save -EXPORT_SYMBOL_GPL vmlinux 0x0bae8e54 shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0x0bc6a4c1 pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x0be3cdbb dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x0c4d9496 subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0x0c4f1276 cpufreq_frequency_table_target -EXPORT_SYMBOL_GPL vmlinux 0x0c57502a ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range -EXPORT_SYMBOL_GPL vmlinux 0x0c80e3fe efivar_init -EXPORT_SYMBOL_GPL vmlinux 0x0c8ec4d9 i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x0ca29edc inet_csk_compat_setsockopt -EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x0cdb27d1 pci_cleanup_aer_uncorrect_error_status -EXPORT_SYMBOL_GPL vmlinux 0x0cf309dd xen_find_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0x0cf3d765 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0x0cff4e07 rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0x0d260817 register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0x0d411832 da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x0d41d9ac task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d570310 find_module -EXPORT_SYMBOL_GPL vmlinux 0x0d6ab1b1 dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x0d6f02f4 sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0x0d75980f fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x0d950203 cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0x0dc6849e pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x0dc90272 dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x0dccc931 crypto_tfm_in_queue -EXPORT_SYMBOL_GPL vmlinux 0x0dd602a2 crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0ddbce49 blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0x0dde4927 xenbus_dev_probe -EXPORT_SYMBOL_GPL vmlinux 0x0df925f6 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels -EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release -EXPORT_SYMBOL_GPL vmlinux 0x0e4c399e fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x0ea41f64 pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x0eaf8ee4 devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x0ec58c80 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0x0ecf823a static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x0ed22d7b smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x0ee3243f usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x0f012044 __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x0f052560 usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x0f23e04e ata_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x0f243530 acpi_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain -EXPORT_SYMBOL_GPL vmlinux 0x0f312e86 cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0x0f83cda6 kill_pid_info_as_cred -EXPORT_SYMBOL_GPL vmlinux 0x0f8e9aca init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0x0f9b9c14 x509_request_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x0fa138de xen_hvm_need_lapic -EXPORT_SYMBOL_GPL vmlinux 0x0fa47ed8 thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0x0fcb9750 pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi -EXPORT_SYMBOL_GPL vmlinux 0x0fe2d570 xenbus_directory -EXPORT_SYMBOL_GPL vmlinux 0x0ff2a3a9 apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0x10056ac8 ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x101d1747 usb_phy_generic_register -EXPORT_SYMBOL_GPL vmlinux 0x1047f89b pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x10518ec0 wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0x108b5e6e pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x10a72f82 devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x10b0cc5a wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x10d4b576 da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer -EXPORT_SYMBOL_GPL vmlinux 0x11185dfe hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0x11398c86 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x113b92e3 vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x115ec0bc usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0x117c7305 hwpoison_filter_dev_major -EXPORT_SYMBOL_GPL vmlinux 0x1181b1af transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x11929684 irq_create_mapping -EXPORT_SYMBOL_GPL vmlinux 0x11caddc7 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0x11ea5c58 inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x1204937f bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0x12119637 wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0x121c44af tps65912_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x12365646 sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x1263de5b devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x127402f1 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0x1292cdce perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0x12d0f0b5 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0x12ea3c14 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0x12efd8eb virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0x12faff30 gpiochip_remove_pin_ranges -EXPORT_SYMBOL_GPL vmlinux 0x1300fce2 page_cache_async_readahead -EXPORT_SYMBOL_GPL vmlinux 0x13066bd9 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x1306c119 ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x130bd388 check_tsc_disabled -EXPORT_SYMBOL_GPL vmlinux 0x130de01d trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0x13181a21 iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x132cc9e7 register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x1342a95c ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x13614109 clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1362ce02 extcon_get_cable_state -EXPORT_SYMBOL_GPL vmlinux 0x138554b3 setup_irq -EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init -EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen -EXPORT_SYMBOL_GPL vmlinux 0x13b27896 rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x13b89dee pinctrl_request_gpio -EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0x13d62960 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x13f51fc3 ms_hyperv -EXPORT_SYMBOL_GPL vmlinux 0x140ed5d2 blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0x14208085 __get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x1445d22b bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0x1449f1fd ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0x144d8260 dax_fault -EXPORT_SYMBOL_GPL vmlinux 0x144e2124 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0x144f2eae led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x1466726c __mmu_notifier_invalidate_range -EXPORT_SYMBOL_GPL vmlinux 0x146675e8 nd_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x1480753d ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0x14853a35 __rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x149369ab xen_swiotlb_dma_mapping_error -EXPORT_SYMBOL_GPL vmlinux 0x14981779 devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x149c2d3c regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0x14b91d7f dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0x14bf4f38 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x15010e1f arbitrary_virt_to_machine -EXPORT_SYMBOL_GPL vmlinux 0x151b064c power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0x15311ec4 ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0x153f933a attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0x154007f0 spi_async -EXPORT_SYMBOL_GPL vmlinux 0x1567404d wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x157a7511 usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x158b52cf __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0x158ea133 pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x15a68b6a inode_congested -EXPORT_SYMBOL_GPL vmlinux 0x15a6aa00 pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0x15b0606e e820_any_mapped -EXPORT_SYMBOL_GPL vmlinux 0x15b41edd fuse_get_req_for_background -EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started -EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x1617cfe6 crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x161d3355 arizona_clk32k_disable -EXPORT_SYMBOL_GPL vmlinux 0x16240bfc sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0x163485c3 class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress -EXPORT_SYMBOL_GPL vmlinux 0x165c1add mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x16699c8e irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0x16890042 pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0x168cf33c generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0x16946df5 ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0x16987c55 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x16a2d436 virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0x16db89e0 tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0x16e215c6 wm8997_patch -EXPORT_SYMBOL_GPL vmlinux 0x16f5c094 gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0x1700126f rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0x17188561 ata_eh_thaw_port -EXPORT_SYMBOL_GPL vmlinux 0x172360ed cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0x172817ee list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x17348099 ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0x1750f966 fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub -EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x17811127 mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online -EXPORT_SYMBOL_GPL vmlinux 0x17a1ecaa tpm2_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x17c0f479 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x17dbf80e msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0x17e876b9 bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x17eb45ce __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x17fb1038 devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x17fd0603 srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x17fd6c75 wm8350_device_exit -EXPORT_SYMBOL_GPL vmlinux 0x1829b9ed hwpoison_filter_memcg -EXPORT_SYMBOL_GPL vmlinux 0x1837d352 component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0x184d9676 devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x18570363 con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt -EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x186f4521 ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert -EXPORT_SYMBOL_GPL vmlinux 0x18835e99 usb_phy_generic_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1883c6ce ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x18925393 device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x18af5e49 usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0x18b8d2c2 bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x18ba8a88 cpu_tlbstate -EXPORT_SYMBOL_GPL vmlinux 0x18dcc4a4 gnttab_unmap_refs -EXPORT_SYMBOL_GPL vmlinux 0x18e3aff5 crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x18f5e50e arch_apei_enable_cmcff -EXPORT_SYMBOL_GPL vmlinux 0x18f83fab gnttab_grant_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0x19045d5a rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x19119803 __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x19255513 blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x19256e73 led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0x19290904 pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0x194d99a4 devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore -EXPORT_SYMBOL_GPL vmlinux 0x19761a92 device_create_file -EXPORT_SYMBOL_GPL vmlinux 0x19868150 regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x19905380 virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x19945c02 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19b31be8 generic_access_phys -EXPORT_SYMBOL_GPL vmlinux 0x19bbdb58 iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x19db6721 ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x19e08e01 percpu_ida_destroy -EXPORT_SYMBOL_GPL vmlinux 0x19e3a004 debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x19fecb0c blkcipher_aead_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x1a10b793 tpm_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x1a209c99 regmap_fields_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x1a6feef7 disk_part_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table -EXPORT_SYMBOL_GPL vmlinux 0x1aae1761 sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x1aae1b49 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0x1ac7b674 get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x1aced8a1 __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing -EXPORT_SYMBOL_GPL vmlinux 0x1aea95c0 power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x1aeef256 spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0x1af9d31a rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x1afedae4 xfrm_inner_extract_output -EXPORT_SYMBOL_GPL vmlinux 0x1b22a5a3 driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x1b38b3c6 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x1b38b43e irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x1b3caaee __pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x1b61470d sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1b893f31 __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return -EXPORT_SYMBOL_GPL vmlinux 0x1baeef6b pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0x1baf412f mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x1bb1ea71 pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0x1bb4f7b4 xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x1be814dd __module_text_address -EXPORT_SYMBOL_GPL vmlinux 0x1c110376 ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0x1c418118 bdev_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x1c46229a acpi_dev_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase -EXPORT_SYMBOL_GPL vmlinux 0x1c60a8cc fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0x1c6660c7 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0x1c7b6220 __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 -EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1ca1e84f tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x1ca29785 pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0x1cb5a95c ata_acpi_cbl_80wire -EXPORT_SYMBOL_GPL vmlinux 0x1cc7ebdd uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0x1cdb2147 zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0x1cec802e tps65217_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x1cf2abdf pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0x1d0d4f74 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x1d0ed0cd sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d36766e acpi_gpiochip_free_interrupts -EXPORT_SYMBOL_GPL vmlinux 0x1d406075 device_find_child -EXPORT_SYMBOL_GPL vmlinux 0x1d459685 xstate_size -EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings -EXPORT_SYMBOL_GPL vmlinux 0x1d652735 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x1d65ca5c led_init_core -EXPORT_SYMBOL_GPL vmlinux 0x1d676077 gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x1d739e1c xen_set_callback_via -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x1d7cb586 clk_register_fixed_rate_with_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x1d8955bd usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x1d9028e3 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x1dccf3ef tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0x1dd6e662 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x1deaec6f md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0x1def880e bind_interdomain_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x1df584a6 blk_queue_flush -EXPORT_SYMBOL_GPL vmlinux 0x1e000879 hwpoison_filter_enable -EXPORT_SYMBOL_GPL vmlinux 0x1e1c47bf dummy_con -EXPORT_SYMBOL_GPL vmlinux 0x1e1eb20c tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1e29b908 pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1e352c08 get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0x1e44c0fd gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1e635f7c dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0x1e64bb1f securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x1e68ce14 trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1e9a6903 securityfs_create_dentry -EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebac2bd getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1eca65d1 pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x1ecc368a cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x1edc21cb hwpoison_filter_flags_mask -EXPORT_SYMBOL_GPL vmlinux 0x1ee96fc9 spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0x1f07cdb6 max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0x1f07fe0a device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x1f1988f7 hwpoison_filter_flags_value -EXPORT_SYMBOL_GPL vmlinux 0x1f2efd2a handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x1f578d92 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0x1f5dfae2 crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8b7209 ata_acpi_gtm -EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x1fb63542 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x1fcbdffb unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x1fdaa23c __online_page_free -EXPORT_SYMBOL_GPL vmlinux 0x1fec0bf2 regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0x1ff03fe2 shash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x1ff6a053 devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1ff6ef06 klp_enable_patch -EXPORT_SYMBOL_GPL vmlinux 0x200cc695 __free_iova -EXPORT_SYMBOL_GPL vmlinux 0x20196a4b devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x2034badf virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x203c70da simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0x2055bb88 acpiphp_unregister_attention -EXPORT_SYMBOL_GPL vmlinux 0x2056f355 spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0x206101d8 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x207f2ede hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2086e9c5 usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x208eb004 pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x209ec764 xen_event_channel_op_compat -EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0x20bea350 do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x20cc9788 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0x20ddfc20 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x20f935a0 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x2134c465 rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x2134c6a9 sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0x2134da7c power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21ddd09d aead_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0x2243e957 __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0x224f79f8 ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x22868cfe ata_sff_data_xfer_noirq -EXPORT_SYMBOL_GPL vmlinux 0x228ccbe5 pinctrl_add_gpio_ranges -EXPORT_SYMBOL_GPL vmlinux 0x2293fffd ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 -EXPORT_SYMBOL_GPL vmlinux 0x2299ec81 perf_assign_events -EXPORT_SYMBOL_GPL vmlinux 0x22a12929 devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0x22a2048d xen_swiotlb_sync_sg_for_device -EXPORT_SYMBOL_GPL vmlinux 0x22b4e944 raw_seq_open -EXPORT_SYMBOL_GPL vmlinux 0x22b9b1b8 spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0x22eafbd8 irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x22efcb63 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0x22feabe7 crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0x2303553b io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0x2309898f bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x23413fb6 rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0x2360608a virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0x2366a2c0 errata -EXPORT_SYMBOL_GPL vmlinux 0x2384bfd3 sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0x23857aa0 clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x2396f0c1 rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x2398bd52 led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0x23a85cce pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x23bc00f0 rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0x23e1714d class_destroy -EXPORT_SYMBOL_GPL vmlinux 0x23e4699c regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x24011e14 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0x2408d628 ping_proc_register -EXPORT_SYMBOL_GPL vmlinux 0x2409e72c blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0x2413ed4b __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0x24165982 pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0x243f1b65 efivar_entry_set_get_size -EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0x244805de posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x245199d0 ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x2467899a dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key -EXPORT_SYMBOL_GPL vmlinux 0x24abbc7b __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x24bb674b regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x24c67694 usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0x24c7698a xenbus_write -EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset -EXPORT_SYMBOL_GPL vmlinux 0x24f45195 usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x251f41c8 watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x252c09be injectm -EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x2545c170 unregister_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0x254b2836 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0x256a0934 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0x256b51d8 ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x2589c75f fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0x258e7a6e ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x25c8ac1b acpi_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0x25d700b8 gnttab_foreach_grant_in_range -EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr -EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock -EXPORT_SYMBOL_GPL vmlinux 0x263f7f23 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0x264313f1 ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x264a3f17 regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x264ae4c6 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x264b8b16 gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x2656acec usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x2676fa11 powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0x26965721 slow_virt_to_phys -EXPORT_SYMBOL_GPL vmlinux 0x26a1d12f blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x26a8ffb1 ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x26aac4f1 xenbus_frontend_closed -EXPORT_SYMBOL_GPL vmlinux 0x26b3c701 __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26e6ebdc mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0x27075825 devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0x27104066 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x2750439b __dax_pmd_fault -EXPORT_SYMBOL_GPL vmlinux 0x2797f2ce attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0x279cb985 apei_exec_pre_map_gars -EXPORT_SYMBOL_GPL vmlinux 0x27ad3102 fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x27c0c4be eventfd_ctx_read -EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info -EXPORT_SYMBOL_GPL vmlinux 0x27d0716d power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0x27e88795 reservation_object_test_signaled_rcu -EXPORT_SYMBOL_GPL vmlinux 0x27eabea8 print_context_stack_bp -EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x280822fc regulator_can_change_voltage -EXPORT_SYMBOL_GPL vmlinux 0x28084a7d reserve_iova -EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x2845272d find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0x286373c6 device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0x28653624 led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x286da7d6 regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x286f97a3 xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0x28759cca cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x287b704f platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x288fd579 extcon_unregister_interest -EXPORT_SYMBOL_GPL vmlinux 0x2892849d l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0x289fb103 i2c_unlock_adapter -EXPORT_SYMBOL_GPL vmlinux 0x28e2e9cd hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices -EXPORT_SYMBOL_GPL vmlinux 0x290cb882 pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x291ea0e0 trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x292f2c0a phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x29439599 debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x2962aa1b task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0x29d80dd2 rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29effeaa usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0x29f286d0 sis_info133_for_sata -EXPORT_SYMBOL_GPL vmlinux 0x29ff5fe0 blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x2a029e5a ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x2a02af8c tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x2a0543ea hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2a277163 da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0x2a2ed8e9 register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x2a51bc99 dax_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2a824f2b device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0x2a915c17 blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0x2aa5cba2 srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x2aa9f0cd regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0x2ac07902 n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0x2ad4fa6c __add_pages -EXPORT_SYMBOL_GPL vmlinux 0x2ae39fe7 crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x2ae50a27 pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x2ae98259 spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0x2aef611a usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x2af63321 acpi_dev_resource_address_space -EXPORT_SYMBOL_GPL vmlinux 0x2af8ba78 phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0x2b0ff469 ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x2b116fc8 __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0x2b36113f relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0x2b725190 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0x2bda2243 cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0x2bda70fa devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc -EXPORT_SYMBOL_GPL vmlinux 0x2c083109 __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x2c0ef571 rio_request_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c3c0334 get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x2c442f55 dax_pmd_fault -EXPORT_SYMBOL_GPL vmlinux 0x2c4a2a38 shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x2c4d2b6a vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0x2c56e558 tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x2c6a6e53 device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x2c6d84d8 skcipher_geniv_exit -EXPORT_SYMBOL_GPL vmlinux 0x2c7d9c64 xen_store_interface -EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2cb33045 regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0x2cc04d8f pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x2cd0b218 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x2cd16f6d ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0x2cda7079 xenbus_dev_groups -EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq -EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0x2cf41fa3 nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0x2cff979e regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x2d071bfa pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d3448e8 irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d4fe352 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0x2d520d8e device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers -EXPORT_SYMBOL_GPL vmlinux 0x2d5ccf39 rio_get_device -EXPORT_SYMBOL_GPL vmlinux 0x2d621d94 public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0x2d6ba3de intel_svm_bind_mm -EXPORT_SYMBOL_GPL vmlinux 0x2d8636ae gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0x2d9252fe skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x2d9f2ce3 sched_clock_idle_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x2da41af9 serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0x2da4a581 gov_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x2da5160d nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0x2dc9ecd4 crypto_alloc_instance2 -EXPORT_SYMBOL_GPL vmlinux 0x2dfc75bc platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2e1da9fb probe_kernel_read -EXPORT_SYMBOL_GPL vmlinux 0x2e22c12a rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e2df7f4 irq_remapping_cap -EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2e5035aa xen_swiotlb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x2e59e2d6 ata_acpi_stm -EXPORT_SYMBOL_GPL vmlinux 0x2e60c0da crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0x2e6180b2 tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x2e78bf95 transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x2e9fba4c perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0x2eae8015 anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2eb45988 kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ec339b6 fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x2ecc95d2 pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0x2edee608 request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0x2eeacb60 serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x2ef29b24 anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x2efafca0 device_create_vargs -EXPORT_SYMBOL_GPL vmlinux 0x2f011d01 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0x2f03a587 sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f171333 da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register -EXPORT_SYMBOL_GPL vmlinux 0x2f5f427a perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x2fb4fe82 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x2fc17796 kthread_park -EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake -EXPORT_SYMBOL_GPL vmlinux 0x2fdeb87b __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x2fffbbfb dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x3004b7c3 fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x3009092c devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0x30499dbb irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x30635782 cpu_has_xfeatures -EXPORT_SYMBOL_GPL vmlinux 0x307d2329 xen_swiotlb_set_dma_mask -EXPORT_SYMBOL_GPL vmlinux 0x30823f09 tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x30abb6ed xenbus_watch_path -EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x3107bca9 blkdev_write_iter -EXPORT_SYMBOL_GPL vmlinux 0x31087fb2 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock -EXPORT_SYMBOL_GPL vmlinux 0x310fc319 mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0x3113e264 usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x31586604 posix_timers_register_clock -EXPORT_SYMBOL_GPL vmlinux 0x315b2d98 crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0x315ebb8f blk_unprep_request -EXPORT_SYMBOL_GPL vmlinux 0x3181a98f virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0x318d07aa regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x319e0356 pwm_disable -EXPORT_SYMBOL_GPL vmlinux 0x31acccd7 eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put -EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31e290d1 __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x320335af devm_usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval -EXPORT_SYMBOL_GPL vmlinux 0x322c0deb nd_blk_region_set_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x325c4a99 serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0x325e677c gnttab_grant_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x32803647 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update -EXPORT_SYMBOL_GPL vmlinux 0x328b6d38 clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0x328baacf page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0x3293fd84 devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0x32a03d16 call_filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec -EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32e3b076 mxcsr_feature_mask -EXPORT_SYMBOL_GPL vmlinux 0x32e6b257 ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0x3355ab81 __ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition -EXPORT_SYMBOL_GPL vmlinux 0x3362b03c xen_p2m_size -EXPORT_SYMBOL_GPL vmlinux 0x33655159 xen_pcpu_hotplug_sync -EXPORT_SYMBOL_GPL vmlinux 0x336be203 metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x337159da ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0x3371772f devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x337ec42a dma_buf_kmap -EXPORT_SYMBOL_GPL vmlinux 0x33b8aa38 tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x33b96e5d apei_exec_write_register -EXPORT_SYMBOL_GPL vmlinux 0x33c378ab power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0x33c5d52c usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0x33ea1df0 sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x33eea49e wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x34132aa2 gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0x342d9950 tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0x343d3514 sock_update_netprioidx -EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get -EXPORT_SYMBOL_GPL vmlinux 0x349e284d gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0x349f6e27 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x34a5911c shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0x34a8da5f __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x34dbdbe9 __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0x3516bdef trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched -EXPORT_SYMBOL_GPL vmlinux 0x352650ee gnttab_batch_map -EXPORT_SYMBOL_GPL vmlinux 0x352b01ae list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0x35344f34 nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0x35415520 powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0x3554abd3 bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x358f44a0 power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x35910f72 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x35b29745 pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x35bf2acd nd_fletcher64 -EXPORT_SYMBOL_GPL vmlinux 0x35d546b1 pinctrl_utils_dt_free_map -EXPORT_SYMBOL_GPL vmlinux 0x35ffe32a tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0x3600f546 xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x3612d33c iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x362430f0 component_del -EXPORT_SYMBOL_GPL vmlinux 0x3668af32 pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0x3674de4a ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0x367eced8 pci_try_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x36803287 pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x3684e6b1 device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0x368f1fea static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x3692aa11 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36ac2370 debugfs_remove_recursive -EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled -EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x36c71311 acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x36f2891e __pci_complete_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x36fcb85d ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0x370ae976 xenbus_dev_remove -EXPORT_SYMBOL_GPL vmlinux 0x37325dba devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0x373b25ef device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0x373c0bb9 __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0x376d6471 usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0x376d77ef uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0x3785c285 posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x37a6d98e crypto_init_shash_spawn -EXPORT_SYMBOL_GPL vmlinux 0x37a82e63 ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0x37bac625 usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0x37ce0f6a pci_msi_prepare -EXPORT_SYMBOL_GPL vmlinux 0x37cf637a usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0x37f1ffbf gdt_page -EXPORT_SYMBOL_GPL vmlinux 0x38181490 pm_complete_with_resume_check -EXPORT_SYMBOL_GPL vmlinux 0x38274deb trace_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0x382a2e86 bdev_write_page -EXPORT_SYMBOL_GPL vmlinux 0x3834b310 tpm2_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x383dfe92 rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0x384d2df8 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end -EXPORT_SYMBOL_GPL vmlinux 0x3885fa6e relay_close -EXPORT_SYMBOL_GPL vmlinux 0x389dae51 xenbus_dev_fatal -EXPORT_SYMBOL_GPL vmlinux 0x38be3cdc klp_unregister_patch -EXPORT_SYMBOL_GPL vmlinux 0x38d6160a usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x3909513b dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0x39218330 pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x392fe739 look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0x39339594 rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0x393b607e ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0x39597d25 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x39773a19 i2c_generic_gpio_recovery -EXPORT_SYMBOL_GPL vmlinux 0x397cba32 adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x397d7737 hypervisor_kobj -EXPORT_SYMBOL_GPL vmlinux 0x398b9aac pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x39b1319f iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x39b834f5 pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0x39bbb43b clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0x39be0453 inet_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0x39c2ac56 pwm_config -EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current -EXPORT_SYMBOL_GPL vmlinux 0x39d57bd9 rio_get_asm -EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module -EXPORT_SYMBOL_GPL vmlinux 0x39f87f89 sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x3a0c6909 blk_queue_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0x3a2c1dc7 fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0x3a38dc65 memory_failure -EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a58472a pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0x3a60b72a phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x3a67e0c2 ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x3a6a849f smp_ops -EXPORT_SYMBOL_GPL vmlinux 0x3a6aa19a pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0x3a6c428f blk_add_request_payload -EXPORT_SYMBOL_GPL vmlinux 0x3a6dbb07 pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn -EXPORT_SYMBOL_GPL vmlinux 0x3a9650b4 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3a9db8d8 restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x3aabd7b5 regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x3ac43a9a ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3ad0e201 scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x3ae43ccf alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0x3aeb7087 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0x3b07b9ef driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x3b0bd014 sched_setscheduler_nocheck -EXPORT_SYMBOL_GPL vmlinux 0x3b411846 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0x3b46f222 ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0x3b547bc9 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x3b5b77d4 wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x3b6658fb sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x3b7145bb apei_exec_read_register_value -EXPORT_SYMBOL_GPL vmlinux 0x3b716871 register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x3b8e765d pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x3b8fb567 spi_setup -EXPORT_SYMBOL_GPL vmlinux 0x3b92b1eb tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x3baa5e3d sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0x3bbfad15 wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x3bccd614 iommu_present -EXPORT_SYMBOL_GPL vmlinux 0x3bd2ff87 bio_associate_blkcg -EXPORT_SYMBOL_GPL vmlinux 0x3bdb4126 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0x3bded44a inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0x3bf087f2 PageHuge -EXPORT_SYMBOL_GPL vmlinux 0x3bf950f4 pwmchip_add_with_polarity -EXPORT_SYMBOL_GPL vmlinux 0x3c0f1587 evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0x3c52cc83 pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x3c7a8d48 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x3c81a83a set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag -EXPORT_SYMBOL_GPL vmlinux 0x3c969add usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0x3cae4dfa pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3cfc28da put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x3cff1cc5 __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x3d061f12 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0x3d2e46b3 klp_disable_patch -EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d3a60ec get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0x3d4cfdb2 gpiochip_set_chained_irqchip -EXPORT_SYMBOL_GPL vmlinux 0x3d5aeb7e rtc_irq_set_freq -EXPORT_SYMBOL_GPL vmlinux 0x3d5f392d acpi_os_unmap_memory -EXPORT_SYMBOL_GPL vmlinux 0x3d6efc52 ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x3d7704c2 fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0x3d7ea99a gnttab_grant_foreign_transfer -EXPORT_SYMBOL_GPL vmlinux 0x3da58470 tps65912_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x3da67a23 fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x3dae6404 unregister_jprobes -EXPORT_SYMBOL_GPL vmlinux 0x3dc9129f init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab -EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3dd55ecd sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x3dd67ffc ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0x3de4c1a4 bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3df26c16 tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0x3dfc436e percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x3e238f4e bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x3e2ff3ad debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0x3e4fb90b pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0x3e526838 pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x3e54b244 btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e74ae02 scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x3ea4df40 blkdev_read_iter -EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup -EXPORT_SYMBOL_GPL vmlinux 0x3ea84700 pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x3ee92a48 usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL vmlinux 0x3eea1a02 device_destroy -EXPORT_SYMBOL_GPL vmlinux 0x3efa1d72 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0x3f0d252d wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x3f229c4c oops_begin -EXPORT_SYMBOL_GPL vmlinux 0x3f547d2e __put_net -EXPORT_SYMBOL_GPL vmlinux 0x3f7813f1 sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0x3f84d4c9 gnttab_release_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x3fa1e037 rt_mutex_destroy -EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0x3fa89574 bpf_prog_get -EXPORT_SYMBOL_GPL vmlinux 0x3fd056d6 rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x3ffddd31 pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release -EXPORT_SYMBOL_GPL vmlinux 0x400aa23c mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0x4010b80f pmc_atom_read -EXPORT_SYMBOL_GPL vmlinux 0x4018c7e1 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x401e84c8 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x402354c1 devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0x404e6a74 devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x40525c04 sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources -EXPORT_SYMBOL_GPL vmlinux 0x40699fb9 raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x408212ba hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0x40a53fe0 ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x40bd5a15 sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0x40d242a4 class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x40deeb77 blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0x40df5f0c ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0x40e1fddb ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x412d040c usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x412f4a36 iommu_domain_get_attr -EXPORT_SYMBOL_GPL vmlinux 0x416283c9 get_dcookie -EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x418710e7 mce_inject_log -EXPORT_SYMBOL_GPL vmlinux 0x4191548c arizona_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x41c6f6a5 tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x41e04fad bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x41f74014 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x41fdc093 iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x4213a51a efivar_entry_set_safe -EXPORT_SYMBOL_GPL vmlinux 0x42160c13 sdio_run_irqs -EXPORT_SYMBOL_GPL vmlinux 0x421fdd4b desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0x42367b93 uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0x424232f5 rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done -EXPORT_SYMBOL_GPL vmlinux 0x4255026d kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags -EXPORT_SYMBOL_GPL vmlinux 0x4277c797 spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0x427a1d92 thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x427d5c68 register_jprobes -EXPORT_SYMBOL_GPL vmlinux 0x427de547 pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x42896f99 usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0x429f9ad5 perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0x42b035ee usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0x42b59e6a blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x42bb8d80 perf_trace_buf_prepare -EXPORT_SYMBOL_GPL vmlinux 0x42d5ea16 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0x42f07f65 clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x43050abf transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x43064444 wm5102_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x4315fe4e metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x43194f83 mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0x43346065 acpi_pci_find_root -EXPORT_SYMBOL_GPL vmlinux 0x4335ba23 regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0x433bb7f3 unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x433f7fd6 ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0x4353b163 regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x4366c6c5 ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4378fddb phy_create -EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x4395953e usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x43a1aac2 regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key -EXPORT_SYMBOL_GPL vmlinux 0x43c1e0f0 sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x43d2fffc ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x43e13c0c pinctrl_force_default -EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift -EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x43ff0c10 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0x4407733d ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0x4418b2ea usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0x441fa356 irq_ts_save -EXPORT_SYMBOL_GPL vmlinux 0x44334563 da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x4437760b regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x443b43a1 device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x44403674 pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x4441c3c7 device_store_int -EXPORT_SYMBOL_GPL vmlinux 0x446e3c47 __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x4481db81 rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x44a9b477 input_class -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44d42993 __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats -EXPORT_SYMBOL_GPL vmlinux 0x450fb522 kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state -EXPORT_SYMBOL_GPL vmlinux 0x454f1cb4 efi_query_variable_store -EXPORT_SYMBOL_GPL vmlinux 0x4564ec18 tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0x456a46e9 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0x4571969e fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x4586676e securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x458efd43 regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x45b7d6a0 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0x45b875e4 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x45c2a311 reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page -EXPORT_SYMBOL_GPL vmlinux 0x45d8e566 rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x45fb0833 swiotlb_tbl_unmap_single -EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x46061843 __securityfs_setup_d_inode -EXPORT_SYMBOL_GPL vmlinux 0x460f31aa rodata_test_data -EXPORT_SYMBOL_GPL vmlinux 0x4610277a wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0x462aeff3 tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x4631d2ac pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0x4638e646 thermal_notify_framework -EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x46434934 disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x465ac57c unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x465f84b5 seq_open_net -EXPORT_SYMBOL_GPL vmlinux 0x4663d883 dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x4678157d pci_bus_sem -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x46bc52ad netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0x46ce0269 usb_acpi_set_power_state -EXPORT_SYMBOL_GPL vmlinux 0x46f22750 mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x4701954a tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x4706a02b cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x470f8c04 pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x47144886 alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0x471b5950 pm_runtime_get_if_in_use -EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x472e6c88 da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0x47394c2d cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x474a1d41 blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x476ac00a fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0x47833594 __blkdev_driver_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x478f5400 unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x479efc46 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x47a17cbe xen_remap_domain_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47c4f7fc nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw -EXPORT_SYMBOL_GPL vmlinux 0x47d7385c register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47fd5c3c device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x482154cd find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire -EXPORT_SYMBOL_GPL vmlinux 0x4837298b inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0x483d6327 gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0x48682db9 perf_guest_get_msrs -EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh -EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0x4894bc54 xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0x48a708ea regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x48b79769 cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0x48cd557d nf_queue_entry_release_refs -EXPORT_SYMBOL_GPL vmlinux 0x48e102a9 pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0x48f45ad3 vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x490a8df6 x86_platform -EXPORT_SYMBOL_GPL vmlinux 0x493f51b8 nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0x49435666 device_attach -EXPORT_SYMBOL_GPL vmlinux 0x495ded38 usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0x49630d1b crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0x496c1a02 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x4992251e fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x49a40ef1 ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0x49d3b152 cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0x49e4eb33 pv_info -EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49f93d88 skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x49fd1399 dm_get_table_device -EXPORT_SYMBOL_GPL vmlinux 0x4a189ae8 iommu_domain_window_enable -EXPORT_SYMBOL_GPL vmlinux 0x4a2ba347 gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x4a3c3cf9 microcode_sanity_check -EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data -EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name -EXPORT_SYMBOL_GPL vmlinux 0x4a4d9180 vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0x4a5115d9 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0x4a796232 handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0x4a7d0766 pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x4a90160e bprintf -EXPORT_SYMBOL_GPL vmlinux 0x4a94450b ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x4a9f2bf5 ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0x4ab77d41 platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x4ab84afb pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0x4ad609ce __compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0x4ae7eb53 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x4af542ee rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x4b0c19f7 uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0x4b105921 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x4b3a7319 devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4b81e9b3 bio_associate_current -EXPORT_SYMBOL_GPL vmlinux 0x4b8dc414 usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0x4bc5b9b7 serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0x4be36d8b dbs_check_cpu -EXPORT_SYMBOL_GPL vmlinux 0x4beee18b i2c_new_dummy -EXPORT_SYMBOL_GPL vmlinux 0x4c0130fb ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0x4c192b05 rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0x4c2a472b __static_cpu_has_safe -EXPORT_SYMBOL_GPL vmlinux 0x4c2b858e hwpoison_filter -EXPORT_SYMBOL_GPL vmlinux 0x4c317dff devres_find -EXPORT_SYMBOL_GPL vmlinux 0x4c397d36 ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0x4c4f7aa5 usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4c645f9e static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table -EXPORT_SYMBOL_GPL vmlinux 0x4ccdefd4 acpi_unbind_one -EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d064349 tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x4d1d36e1 validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x4d24e22b crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0x4d43df2c platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0x4d5321a3 regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0x4d60b812 efivar_entry_add -EXPORT_SYMBOL_GPL vmlinux 0x4d983068 spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x4dae5632 acpi_subsys_freeze -EXPORT_SYMBOL_GPL vmlinux 0x4db9a097 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4ded2102 regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0x4df6e727 devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x4e021022 spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x4e0d7a02 ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0x4e1ea947 __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path -EXPORT_SYMBOL_GPL vmlinux 0x4e28812f edac_subsys -EXPORT_SYMBOL_GPL vmlinux 0x4e4ba373 dm_disk -EXPORT_SYMBOL_GPL vmlinux 0x4e57723d apei_read -EXPORT_SYMBOL_GPL vmlinux 0x4e5f3efa pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x4e6c2b09 policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0x4e74e625 gnttab_batch_copy -EXPORT_SYMBOL_GPL vmlinux 0x4e7f14ff mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4e89a7de bus_set_iommu -EXPORT_SYMBOL_GPL vmlinux 0x4e946816 irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x4e97a832 tcp_death_row -EXPORT_SYMBOL_GPL vmlinux 0x4e9f9406 xen_xenbus_fops -EXPORT_SYMBOL_GPL vmlinux 0x4ea28b58 exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0x4ea8ef19 ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4efde56c __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0x4f05925c devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x4f2bf25d pwm_set_polarity -EXPORT_SYMBOL_GPL vmlinux 0x4f2d3866 trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0x4f5b689e xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f6d2b34 ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0x4f87b62c devres_get -EXPORT_SYMBOL_GPL vmlinux 0x4f8c2b17 device_init_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x4fb5b542 blkg_print_stat_ios_recursive -EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fe090e7 __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi -EXPORT_SYMBOL_GPL vmlinux 0x502f2068 crypto_alloc_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x50323e92 regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x5043ab16 tps65217_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x505bc4fb balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x505c133a trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0x507de8c6 add_memory -EXPORT_SYMBOL_GPL vmlinux 0x50830b26 phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0x50854b57 scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test -EXPORT_SYMBOL_GPL vmlinux 0x508d5651 sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x509b4305 __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x50d1f870 pgprot_writecombine -EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50eb4f80 crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x50f80b49 usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x511055eb blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0x512b1d19 register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x5146588c rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val -EXPORT_SYMBOL_GPL vmlinux 0x51538c86 arizona_dev_exit -EXPORT_SYMBOL_GPL vmlinux 0x5166e2b2 inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq -EXPORT_SYMBOL_GPL vmlinux 0x5191bd3c efivar_work -EXPORT_SYMBOL_GPL vmlinux 0x519568ab regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0x51a6d25d handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0x51c936cc driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x51f7be8c shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x51f8426d pwm_request -EXPORT_SYMBOL_GPL vmlinux 0x52108c2a iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL vmlinux 0x522f538b tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x52314193 gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0x5248e1e2 pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0x525442c8 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0x5256f56d xen_swiotlb_sync_single_for_cpu -EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0x52a02df2 devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x52a93e95 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0x52a9c30b ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0x52b24f2d devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0x52b79ef0 devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0x52cb3e30 trace_call_bpf -EXPORT_SYMBOL_GPL vmlinux 0x52d8c375 clk_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x52e5fcec sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0x52f492b0 wm8998_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x52f54cc9 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x53228e41 perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0x534505d5 xen_unmap_domain_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x53613b60 da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x53619445 md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0x53644e1b pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0x53806c1c md_stop -EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late -EXPORT_SYMBOL_GPL vmlinux 0x53a7cd9f rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x53d0b7e2 devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x53d6ef3a crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0x53eea05a dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0x54057233 acpi_subsys_prepare -EXPORT_SYMBOL_GPL vmlinux 0x5414b821 crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 -EXPORT_SYMBOL_GPL vmlinux 0x5423e3b4 put_pid -EXPORT_SYMBOL_GPL vmlinux 0x54289d8c module_mutex -EXPORT_SYMBOL_GPL vmlinux 0x5429008e transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x5443aa0a netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0x54495752 rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0x544df857 sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0x545ee955 fpu__activate_curr -EXPORT_SYMBOL_GPL vmlinux 0x54609b64 adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x54b78126 wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0x54f7910f noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x55009d49 put_hwpoison_page -EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled -EXPORT_SYMBOL_GPL vmlinux 0x55181725 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x553cdacb balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x55526907 xen_features -EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x557bd361 dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0x5593d715 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x55a32da1 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0x55d1fb03 vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x55e41968 ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0x55eba7bf gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x56070c5b gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0x5607dac6 bus_find_device_by_name -EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x5633ce64 acpi_dev_gpio_irq_get -EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable -EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x5654f836 erst_get_record_id_next -EXPORT_SYMBOL_GPL vmlinux 0x565a043c devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen -EXPORT_SYMBOL_GPL vmlinux 0x56672f75 rtc_irq_set_state -EXPORT_SYMBOL_GPL vmlinux 0x5677a773 xenbus_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map -EXPORT_SYMBOL_GPL vmlinux 0x56947347 dmi_walk -EXPORT_SYMBOL_GPL vmlinux 0x5695d3bb ahash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x5696bd9a wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0x56c651d6 usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up -EXPORT_SYMBOL_GPL vmlinux 0x56dd678d debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0x56e4e95e usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0x5726a3ff device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x572a307f pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0x572e2909 usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x575c5f94 execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0x5775e75b acpi_kobj -EXPORT_SYMBOL_GPL vmlinux 0x5779d445 xenbus_exists -EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x5795fa5e pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57c22faa pwm_free -EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags -EXPORT_SYMBOL_GPL vmlinux 0x57dec1e4 gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x57f8062c acpi_dev_resource_io -EXPORT_SYMBOL_GPL vmlinux 0x580116c5 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0x58110346 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x582c691a xenbus_dev_changed -EXPORT_SYMBOL_GPL vmlinux 0x584096c2 mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x5845a79e pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0x585704ab aer_recover_queue -EXPORT_SYMBOL_GPL vmlinux 0x58662073 sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x5867a9d9 ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0x587bd46f alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0x58917c04 ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0x589a8f83 ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname -EXPORT_SYMBOL_GPL vmlinux 0x58af8dbe serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0x58b6fa2c serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x58c108f1 task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0x58d78748 __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x58ebe523 usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x58f42540 md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0x58fb96e1 srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0x591d7828 devm_mdiobus_alloc_size -EXPORT_SYMBOL_GPL vmlinux 0x591f4ad2 usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0x592c77ee anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0x593226c5 rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x5946f4d3 scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0x594d7909 crypto_init_spawn2 -EXPORT_SYMBOL_GPL vmlinux 0x59688cf7 atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x5983c5a3 kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0x598d9106 blk_mq_request_started -EXPORT_SYMBOL_GPL vmlinux 0x5996f5d7 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x59a56a33 scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0x59ac510c phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0x59b0882b md_is_badblock -EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x59e9f033 devm_acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x59f4083e digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0x5a06bab2 udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5a2b1b67 gnttab_free_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x5a52b4dd iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0x5a73fb51 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq -EXPORT_SYMBOL_GPL vmlinux 0x5a75c450 dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a8dbc52 devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x5aacfc1b mnt_clone_write -EXPORT_SYMBOL_GPL vmlinux 0x5ad0cbc1 ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x5adc8153 root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5ade412f i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x5ae39dcf inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0x5af03a28 gnttab_claim_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x5b058914 rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0x5b11b57a irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x5b14745b inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0x5b15ce53 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x5b1899f8 free_iova -EXPORT_SYMBOL_GPL vmlinux 0x5b2d030b regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0x5b506ab3 dma_buf_kunmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0x5b6e69be find_symbol -EXPORT_SYMBOL_GPL vmlinux 0x5b6e9069 ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0x5b76af14 ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x5b7b760f tpm2_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x5bb08217 ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x5bc3b274 ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x5bce8ca1 __atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5bf2f867 xenbus_match -EXPORT_SYMBOL_GPL vmlinux 0x5c20921f pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0x5c260c4b __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0x5c280eb4 devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x5c29d97a sched_setscheduler -EXPORT_SYMBOL_GPL vmlinux 0x5c34d823 get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0x5c42930a ata_eh_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x5c51a468 device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0x5c547a56 usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0x5c598c97 fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c65cea6 __netpoll_free_async -EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker -EXPORT_SYMBOL_GPL vmlinux 0x5c6f88d6 skcipher_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0x5c71ed1d napi_by_id -EXPORT_SYMBOL_GPL vmlinux 0x5c74e5d3 fuse_request_send_background -EXPORT_SYMBOL_GPL vmlinux 0x5c8766b5 get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0x5c879beb dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0x5c8bcceb devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x5c9c7620 crypto_create_tfm -EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5cae70b0 regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x5ce0dcc2 regmap_field_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x5cf7ee08 ata_scsi_simulate -EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user -EXPORT_SYMBOL_GPL vmlinux 0x5d185781 phy_exit -EXPORT_SYMBOL_GPL vmlinux 0x5d26879a iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0x5d26a313 bio_alloc_mddev -EXPORT_SYMBOL_GPL vmlinux 0x5d33e56c regmap_update_bits_check -EXPORT_SYMBOL_GPL vmlinux 0x5d366dec gnttab_cancel_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x5d411639 __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x5d515011 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x5d5ca512 tasklet_hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x5d9aab8e register_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid -EXPORT_SYMBOL_GPL vmlinux 0x5dcd7160 trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x5df6ef4b __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x5df7ae8f crypto_givcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x5e111dbd __ablkcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x5e1b683e dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0x5e1d4117 blkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x5e3c29bd usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl -EXPORT_SYMBOL_GPL vmlinux 0x5e5c7c36 sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0x5e64d509 wm8400_block_read -EXPORT_SYMBOL_GPL vmlinux 0x5e9e4f48 usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0x5ee68fd8 cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0x5efd5040 dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0x5f1e5a89 pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0x5f226035 mod_delayed_work_on -EXPORT_SYMBOL_GPL vmlinux 0x5f2a0f1f acpi_processor_get_performance_info -EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable -EXPORT_SYMBOL_GPL vmlinux 0x5f4248e0 __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5f4fd885 sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0x5f66ad32 usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0x5fc27be9 acpi_dev_irq_flags -EXPORT_SYMBOL_GPL vmlinux 0x5fc7eb5e extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0x5fcc5e15 unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt -EXPORT_SYMBOL_GPL vmlinux 0x5fe61634 gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0x5fe907b7 hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush -EXPORT_SYMBOL_GPL vmlinux 0x6056eb77 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0x605df80f i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x60778e9c da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x60930d37 save_mc_for_early -EXPORT_SYMBOL_GPL vmlinux 0x6096fa5b crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60a17123 inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0x60a903d7 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0x60b05e1d __sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x60c3d793 devm_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x60cd73ed pv_apic_ops -EXPORT_SYMBOL_GPL vmlinux 0x60cfe745 blkg_prfill_stat -EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq -EXPORT_SYMBOL_GPL vmlinux 0x60ea20fa ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0x60eab2fe xen_swiotlb_map_page -EXPORT_SYMBOL_GPL vmlinux 0x60f77810 ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0x60ffdbc1 rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x611cce83 crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0x615b4c40 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x61673eaf inet6_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0x61cc7b2d scsi_internal_device_unblock -EXPORT_SYMBOL_GPL vmlinux 0x61cde409 acpi_dev_resource_memory -EXPORT_SYMBOL_GPL vmlinux 0x61e507ed pci_intx_mask_supported -EXPORT_SYMBOL_GPL vmlinux 0x61f705ea __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x6214b16c pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x622f1abe sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0x623803c8 hest_disable -EXPORT_SYMBOL_GPL vmlinux 0x625e8621 system_trusted_keyring -EXPORT_SYMBOL_GPL vmlinux 0x626545f4 pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0x62a1c981 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0x62bd5a6d __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x62cf3ebb devm_acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x62fb46b9 devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x62fe0cd2 irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x632ad3ca sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0x632ce5f0 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0x6333072c gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0x63388b65 crypto_ahash_type -EXPORT_SYMBOL_GPL vmlinux 0x635ec980 apei_exec_post_unmap_gars -EXPORT_SYMBOL_GPL vmlinux 0x63825fbf devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x638fe045 unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x6396fe13 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x63982708 pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x63ae6f6b fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0x63db1a2d ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0x63e2d96c rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str -EXPORT_SYMBOL_GPL vmlinux 0x63f14ebe io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x63f7af97 __online_page_increment_counters -EXPORT_SYMBOL_GPL vmlinux 0x63fdf3c9 key_type_user -EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x64318593 acpi_dev_filter_resource_type -EXPORT_SYMBOL_GPL vmlinux 0x643c3c49 blk_queue_bypass_end -EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched -EXPORT_SYMBOL_GPL vmlinux 0x6442ddd5 pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x64461782 da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x6479183e acpi_dev_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x64a4164c regmap_write_bits -EXPORT_SYMBOL_GPL vmlinux 0x64b7069e apei_mce_report_mem_error -EXPORT_SYMBOL_GPL vmlinux 0x64dd1009 ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x64e80dfb freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x64f62d0d spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0x6505f480 ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0x650eba04 pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0x6523bef7 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup -EXPORT_SYMBOL_GPL vmlinux 0x6528ce67 devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x6536953b btree_last -EXPORT_SYMBOL_GPL vmlinux 0x653e580c da903x_write -EXPORT_SYMBOL_GPL vmlinux 0x6572ffb7 sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0x657feecb pcc_mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x6586d8d9 xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0x658c8186 amd_get_nb_id -EXPORT_SYMBOL_GPL vmlinux 0x65937944 dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x6594d64c scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0x65bfdb04 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0x65cbc0e0 crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65ceb000 tps65912_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x65e531ce tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x6625ce56 tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0x6627a601 of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x66557a54 sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0x665ecab0 pv_time_ops -EXPORT_SYMBOL_GPL vmlinux 0x667201e3 tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x668c845b xenbus_register_driver_common -EXPORT_SYMBOL_GPL vmlinux 0x668c91c0 gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x6690e5b6 serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x66cc4396 rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66f59931 rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target -EXPORT_SYMBOL_GPL vmlinux 0x6747d057 shmem_get_seals -EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy -EXPORT_SYMBOL_GPL vmlinux 0x675c47fb acpi_subsys_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6763f6c3 usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x678b4ee0 irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x6798aee9 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x679d6339 sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0x67b66df7 device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x67c85300 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x67ce0670 __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x67d5ffc6 irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x67da787d pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0x67dd8cca inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0x67de5322 acpi_dev_get_resources -EXPORT_SYMBOL_GPL vmlinux 0x67eb95ce __efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0x67ef417d scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0x680a4ad2 br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0x6813dc5f ping_close -EXPORT_SYMBOL_GPL vmlinux 0x683682e3 rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0x683c85ad __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x685e6c18 ablkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x6871c3ea bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0x688352a6 gpiochip_add -EXPORT_SYMBOL_GPL vmlinux 0x68849bd9 regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x6899fae1 fuse_put_request -EXPORT_SYMBOL_GPL vmlinux 0x68a117b6 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0x68a56916 device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0x68b505a6 dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x68b8e6f7 rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x68c8a5a0 extcon_set_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0x68c97e18 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0x68d99807 usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0x68ec7bfb crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x68f187a7 scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0x68f6e95a crypto_lookup_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x68f9b37f sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x68fd9333 gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval -EXPORT_SYMBOL_GPL vmlinux 0x69238526 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x693170bf pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0x6937668b flush_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0x6945f8be nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0x69510136 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0x69a9a42e rhashtable_walk_init -EXPORT_SYMBOL_GPL vmlinux 0x69baad54 power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x69c717b3 usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x69e86239 extcon_get_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0x69eb703f skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0x6a0eaa64 regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x6a10211f gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a26f72a sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0x6a38ecb3 rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x6a3f9e76 phy_get -EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x6a7077d8 debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0x6a776de3 usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x6a7c5580 user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x6a7fdafc attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a936feb system_verify_data -EXPORT_SYMBOL_GPL vmlinux 0x6ab1b8bb usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x6acad21f acpi_get_cpuid -EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority -EXPORT_SYMBOL_GPL vmlinux 0x6b24a150 blk_mq_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0x6b397b98 list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0x6b42d18e led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0x6b4afd0c dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x6b4e857c regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0x6b5a819b spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0x6b602781 inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6b6402f0 devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b89d380 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0x6bc795e2 mmu_notifier_unregister_no_release -EXPORT_SYMBOL_GPL vmlinux 0x6bf1b90d dmi_memdev_name -EXPORT_SYMBOL_GPL vmlinux 0x6c030a6e component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x6c1251fd apei_exec_read_register -EXPORT_SYMBOL_GPL vmlinux 0x6c174f72 rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x6c211f28 xenbus_switch_state -EXPORT_SYMBOL_GPL vmlinux 0x6c349723 __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data -EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c6538df init_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6c66f9e6 efivar_entry_remove -EXPORT_SYMBOL_GPL vmlinux 0x6c6e5e03 dmi_kobj -EXPORT_SYMBOL_GPL vmlinux 0x6c818042 led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions -EXPORT_SYMBOL_GPL vmlinux 0x6c87e5c3 pci_restore_ats_state -EXPORT_SYMBOL_GPL vmlinux 0x6ca45a52 xenbus_watch_pathfmt -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq -EXPORT_SYMBOL_GPL vmlinux 0x6ca96a51 devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x6cb4af8e ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0x6cb780cb sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0x6cc08046 irq_create_direct_mapping -EXPORT_SYMBOL_GPL vmlinux 0x6ccb51ba fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0x6cd54274 seq_release_net -EXPORT_SYMBOL_GPL vmlinux 0x6cd5f6e9 __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x6cf4e04a tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x6d0fee94 extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x6d1053ae nd_device_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d64513c irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x6d663d6b blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x6d8d09ff ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0x6dacd0f5 posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy -EXPORT_SYMBOL_GPL vmlinux 0x6e21aa31 ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0x6e250c4e power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0x6e32f691 task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0x6e58ddf0 gnttab_end_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x6e6e13da regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e85b00b local_touch_nmi -EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6ea98361 ioremap_page_range -EXPORT_SYMBOL_GPL vmlinux 0x6eddd276 class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x6efb0a78 blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x6f0b544b queue_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0x6f0ecadf handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x6f2aaade wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0x6f402ba6 acpi_dev_resource_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x6f59a832 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0x6f6ecb53 ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x6f761f45 ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto -EXPORT_SYMBOL_GPL vmlinux 0x6f80bbc1 dma_request_slave_channel_reason -EXPORT_SYMBOL_GPL vmlinux 0x6f8143ac ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x6f87ebd4 pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0x6f899c48 vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0x6fa743b3 irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x6fd9b51f crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x700a39e0 rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0x701429fb gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x704a1901 sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0x7050388c usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0x709432f4 ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x70a029bd uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x70a789a2 net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x70b38f7d xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated -EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70d1e3b1 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x7108e6ee gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7153799b reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x717e724e __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x719482eb scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71bf9fdb __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x71c9e5e3 bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab -EXPORT_SYMBOL_GPL vmlinux 0x71eb2557 bpf_prog_realloc -EXPORT_SYMBOL_GPL vmlinux 0x72164746 dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0x721e84e2 tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x722cd597 rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x722dbe83 adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x72318d8c power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x72670b2a usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x72c0f17a regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0x72cf714d klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x72e7f899 pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0x73013896 xenbus_printf -EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type -EXPORT_SYMBOL_GPL vmlinux 0x734aeef8 ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0x73690617 extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x737d8afe find_vpid -EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73ad4f8b extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0x73afb372 usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0x73b75471 crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini -EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x74780338 crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x7482fe36 extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0x748e15cc gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0x74a3843e synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x74af6cf0 pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0x74b1bfe4 crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74b83f6a usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x74b9f79b hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74bf6354 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x74c08941 kvm_async_pf_task_wake -EXPORT_SYMBOL_GPL vmlinux 0x74c4fa07 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0x74daf070 ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x74deb10c used_vectors -EXPORT_SYMBOL_GPL vmlinux 0x74f418fc tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0x7509edd9 debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0x750d77bb devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 -EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm -EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x7523a35c irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x755a25e7 cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0x7570e582 ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0x75745ddc debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x7578dbaa devm_pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x757b49d2 kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x757d3f0f cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x7598b9d5 led_trigger_show -EXPORT_SYMBOL_GPL vmlinux 0x75badbf1 percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0x75c902c6 syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x75e3e262 clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0x75ee1c72 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x760c8c12 irq_map_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x761ff289 rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0x76437689 cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x766842e9 pci_hp_change_slot_info -EXPORT_SYMBOL_GPL vmlinux 0x766aefe2 __blk_put_request -EXPORT_SYMBOL_GPL vmlinux 0x7673b126 __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7676b5d5 devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x769e1ed2 crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0x76d70964 get_kernel_page -EXPORT_SYMBOL_GPL vmlinux 0x76d9626d mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x76e4ad8c ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0x76e56f49 fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0x7700a6a1 __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x775a6ef5 kvm_read_and_reset_pf_reason -EXPORT_SYMBOL_GPL vmlinux 0x7766ae24 sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0x778b675a pmc_atom_write -EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77b02260 invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0x77b6595c dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0x77d19e0f usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0x77f37a61 led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0x77fc6c14 rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x7801102a mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x7812bb0d ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x783c92ca usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x7840f647 kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0x78575bee atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x786b5b4a nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0x786d961f ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0x7874b5ec unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x788ceb4a ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x78929306 ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x789f4287 elv_register -EXPORT_SYMBOL_GPL vmlinux 0x78aadddf __sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x78ae5fcf pwm_can_sleep -EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0x78c5dfac inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0x78c64ffc __pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x78cc5bec hugetlb_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x78d36fe2 spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x7911f0a8 ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x79264580 tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x792bfba2 pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off -EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x79555368 iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x79620336 bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0x7966051e is_dock_device -EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x7972d883 user_read -EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss -EXPORT_SYMBOL_GPL vmlinux 0x799b6d27 tps65912_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x799d883e task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x79cb95c3 use_mm -EXPORT_SYMBOL_GPL vmlinux 0x79db49d5 serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped -EXPORT_SYMBOL_GPL vmlinux 0x79ea9404 kick_process -EXPORT_SYMBOL_GPL vmlinux 0x7a093833 set_memory_array_wt -EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x7a39482c devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x7a40b30b regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x7a41b539 regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0x7a58d012 pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0x7a5b7f63 ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0x7a68f4ec power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0x7a948e62 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x7ac8e5b0 acpi_gsi_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x7ad6ddc5 platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set -EXPORT_SYMBOL_GPL vmlinux 0x7b202401 usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x7b70ed5c pm_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0x7b74977b pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7c004e17 user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0x7c13f6cc ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x7c1722f6 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0x7c246180 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x7c498fce efivar_entry_find -EXPORT_SYMBOL_GPL vmlinux 0x7c5759b6 usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0x7c609b34 blk_mq_cancel_requeue_work -EXPORT_SYMBOL_GPL vmlinux 0x7c6bf861 regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0x7c89e95f led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7c9a79ae crypto_blkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x7cb439b3 fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0x7cb99689 powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0x7cc5ea3c rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7cd8c6e5 trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cedf677 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x7cf0341c usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0x7cf1985c spi_unregister_master -EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d0e1d95 hv_setup_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0x7d18558a __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x7d1ce0bd scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x7d1f5067 pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0x7d208afe regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x7d294e1f sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d7c6ca6 bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0x7d83b51d class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x7d9c2402 __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7dcdc93f __tracepoint_extlog_mem_event -EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7de4d0ea __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0x7dee6802 shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0x7dfb11bb pinctrl_remove_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x7e0e95ca platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0x7e26e6e8 ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x7e279d94 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x7e5592d8 device_add -EXPORT_SYMBOL_GPL vmlinux 0x7e5b7e5a ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e7579cd get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0x7e8397bc gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0x7ea1a2bc probe_kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x7eb3d4e7 xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0x7ebe9595 regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0x7efd9dab unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x7eff551b dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x7f13d491 pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature -EXPORT_SYMBOL_GPL vmlinux 0x7f3658e6 fpstate_init -EXPORT_SYMBOL_GPL vmlinux 0x7f4a1201 fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0x7f55d017 __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f91c062 tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0x7f95dd87 thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0x7fa9a096 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7fc3c710 dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0x7ffdebc7 dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0x80156244 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x801a3535 crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0x802433c8 pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0x803652d4 blkg_print_stat_bytes_recursive -EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x8065b706 mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x80944df2 clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x809529fd alloc_iova -EXPORT_SYMBOL_GPL vmlinux 0x809ac175 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80cb77f1 ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x80d0b12f crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x811123e7 crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x812a269c shash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x813cab60 gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x814431b2 ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0x8147d23c regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0x8152e111 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x81655cfd fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0x81902630 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0x81a84515 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0x81ade598 set_foreign_p2m_mapping -EXPORT_SYMBOL_GPL vmlinux 0x81cfbfc5 xenbus_map_ring -EXPORT_SYMBOL_GPL vmlinux 0x81e95dec ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x81f073bc each_symbol_section -EXPORT_SYMBOL_GPL vmlinux 0x81fa874a cpufreq_table_validate_and_show -EXPORT_SYMBOL_GPL vmlinux 0x820a39e7 arizona_dev_init -EXPORT_SYMBOL_GPL vmlinux 0x8255ff4a rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x82617f84 pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0x8264d8dc inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x82ba3262 rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0x82cba7ea component_master_del -EXPORT_SYMBOL_GPL vmlinux 0x82cc2024 acpi_subsys_suspend -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82dbec19 erst_write -EXPORT_SYMBOL_GPL vmlinux 0x82f9fa8d mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x830ed4a4 kallsyms_on_each_symbol -EXPORT_SYMBOL_GPL vmlinux 0x8317f040 rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0x832bcb4a pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x83418f2f dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0x83472cac rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x836666ce alarm_init -EXPORT_SYMBOL_GPL vmlinux 0x836a400a pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x8374bd32 device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0x838f9b25 device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0x83ba5fbb hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x83dc67e3 rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0x840bf2c6 relay_open -EXPORT_SYMBOL_GPL vmlinux 0x84108bd2 tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0x84368bed __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge -EXPORT_SYMBOL_GPL vmlinux 0x8448f098 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x847249d2 blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x849044d1 regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x849e3f0f fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0x84ab2a27 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x84bbdc61 pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x84cdf46e of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x84cec44c smpboot_register_percpu_thread_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x84e8a768 rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read -EXPORT_SYMBOL_GPL vmlinux 0x8521c410 netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0x85302bee pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0x8531ece9 usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0x854cc9eb param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x85709e01 trace_buffer_unlock_commit_regs -EXPORT_SYMBOL_GPL vmlinux 0x8583e98d to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0x859aea9a xen_set_domain_pte -EXPORT_SYMBOL_GPL vmlinux 0x85a31455 pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x85cb2c45 xen_has_pv_devices -EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq -EXPORT_SYMBOL_GPL vmlinux 0x85fb0c74 dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod -EXPORT_SYMBOL_GPL vmlinux 0x861a8ed9 simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x864c6b3e netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0x864f8f14 led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8654be58 hv_remove_vmbus_irq -EXPORT_SYMBOL_GPL vmlinux 0x865f786e ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq -EXPORT_SYMBOL_GPL vmlinux 0x8666a7c5 fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x86819bc6 irq_ts_restore -EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x86a51007 gnttab_end_foreign_transfer -EXPORT_SYMBOL_GPL vmlinux 0x86df61c7 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x8702e548 process_srcu -EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared -EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error -EXPORT_SYMBOL_GPL vmlinux 0x87763237 sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0x879f9c8b blkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x87b985e0 dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x87bab303 serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0x87e1c25f usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0x8807ef21 tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0x88136838 wm8997_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x88386cdd devres_add -EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x88a688f0 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x88bc2bf9 tcp_fetch_timewait_stamp -EXPORT_SYMBOL_GPL vmlinux 0x88c57a5f dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x88d65f13 xenbus_unmap_ring_vfree -EXPORT_SYMBOL_GPL vmlinux 0x88f7cb09 gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames -EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x8931f966 ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x8933651c tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x893c3438 bio_clone_mddev -EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x8956aeae apei_exec_ctx_init -EXPORT_SYMBOL_GPL vmlinux 0x896ad12e relay_flush -EXPORT_SYMBOL_GPL vmlinux 0x896b5877 xen_swiotlb_sync_single_for_device -EXPORT_SYMBOL_GPL vmlinux 0x896dbdea smpboot_update_cpumask_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x897642c4 __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x89a16413 xen_remap_domain_gfn_array -EXPORT_SYMBOL_GPL vmlinux 0x89a5ac87 regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0x89a93b63 ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x89c3ac20 ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0x89c50858 __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0x89d83164 pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0x89e4b81d regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x89e767be bus_register -EXPORT_SYMBOL_GPL vmlinux 0x89f2f9ad usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x89f7a04c gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x8a243755 ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x8a4b8066 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x8a559846 gnttab_setup_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0x8a566e22 ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod -EXPORT_SYMBOL_GPL vmlinux 0x8a5916da blkcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0x8a6c747b pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0x8a78989f irq_from_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control -EXPORT_SYMBOL_GPL vmlinux 0x8a902f65 phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8a9157ae virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0x8a9c6798 regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8abd0ed7 irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0x8ae6def6 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x8b02ffd4 phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0x8b03c71a __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x8b04668e bind_interdomain_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x8b1160ed cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b33982a device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x8b34beda irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0x8b35f852 usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x8b907295 crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0x8b9200fd lookup_address -EXPORT_SYMBOL_GPL vmlinux 0x8b96c75b efivars_kobject -EXPORT_SYMBOL_GPL vmlinux 0x8bb3d9ce spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0x8bc3e1a7 usb_string -EXPORT_SYMBOL_GPL vmlinux 0x8bcdf3cf relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x8c019270 sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c065946 driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8c06a108 xenbus_transaction_start -EXPORT_SYMBOL_GPL vmlinux 0x8c0b9aa2 register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x8c3b3e54 tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0x8c62bb66 crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0x8c64264e pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status -EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c82fa17 xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x8c8a4db8 ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x8c9d1661 arch_phys_wc_index -EXPORT_SYMBOL_GPL vmlinux 0x8cae54b5 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8cc0519c replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0x8cc260a6 exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params -EXPORT_SYMBOL_GPL vmlinux 0x8cd9f935 setup_APIC_eilvt -EXPORT_SYMBOL_GPL vmlinux 0x8ce7f0df bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x8cea765f memalloc_socks -EXPORT_SYMBOL_GPL vmlinux 0x8cfa17ec virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x8cff3eb5 device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x8d0509ca __online_page_set_limits -EXPORT_SYMBOL_GPL vmlinux 0x8d212f9d inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d249395 iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0x8d2c68dc sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0x8d475cbf nvdimm_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x8d6056f5 regmap_update_bits_check_async -EXPORT_SYMBOL_GPL vmlinux 0x8d6d7eb6 acpi_dma_request_slave_chan_by_name -EXPORT_SYMBOL_GPL vmlinux 0x8d7aa963 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0x8d9b623b usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0x8d9fa235 acpi_os_map_iomem -EXPORT_SYMBOL_GPL vmlinux 0x8da7b735 rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0x8db69298 phy_put -EXPORT_SYMBOL_GPL vmlinux 0x8dc5129d intel_svm_unbind_mm -EXPORT_SYMBOL_GPL vmlinux 0x8ddabc6e vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x8df78842 acpi_initialize_hp_context -EXPORT_SYMBOL_GPL vmlinux 0x8e032361 vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x8e372a61 rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0x8e542fbf fpu__restore -EXPORT_SYMBOL_GPL vmlinux 0x8e635cec dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0x8eb60e07 crypto_init_spawn -EXPORT_SYMBOL_GPL vmlinux 0x8ecbd253 pinctrl_dev_get_name -EXPORT_SYMBOL_GPL vmlinux 0x8ed9e7b9 ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x8eddfb6c blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0x8eebbe06 get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f0c002e usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0x8f182677 subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x8f2ac945 clk_gpio_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x8f3f692c usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0x8f5eeb15 acpi_subsys_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8f7eddec xenbus_probe_devices -EXPORT_SYMBOL_GPL vmlinux 0x8fb2918b __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0x8fe195bd get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x9002c2f7 arizona_set_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x9009602a acpi_bus_get_ejd -EXPORT_SYMBOL_GPL vmlinux 0x900b4a18 tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0x9020a201 gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x903bb65b acpi_dev_resource_ext_address_space -EXPORT_SYMBOL_GPL vmlinux 0x905e1b7a sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x9064f2ef tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0x90663f5c debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0x909869d6 regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x90ba7e54 ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0x90cb80f5 xenbus_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x90dc29df aout_dump_debugregs -EXPORT_SYMBOL_GPL vmlinux 0x90dd2426 pci_get_hp_params -EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify -EXPORT_SYMBOL_GPL vmlinux 0x90df9659 fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x9100cd0a regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0x9107c8d3 bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0x9111e9e8 regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x91318c97 devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0x913993bd cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0x91445a8e evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0x916fb6ba ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x9172a49e pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0x918ad153 cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x9198ab31 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0x919d4594 sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91f0c992 __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x920e8b3a devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0x921a391b debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x921aac79 pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x92707bb2 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0x9273028d kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x9289b523 mddev_congested -EXPORT_SYMBOL_GPL vmlinux 0x928fd75e dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92decb15 regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0x92e59756 nf_unregister_afinfo -EXPORT_SYMBOL_GPL vmlinux 0x92f37252 to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0x9312d80e evtchn_put -EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x9339e19c tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0x9350d758 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x93557fde pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x9364daf6 debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x9366079e ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9375c96a ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0x937694d9 ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x938e221d dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x9399626e __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x93a7b549 dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0x93d0cde9 blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0x93dc2586 pgprot_writethrough -EXPORT_SYMBOL_GPL vmlinux 0x93f730e4 cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0x93f81d0d scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0x93fc31ea xenbus_read_otherend_details -EXPORT_SYMBOL_GPL vmlinux 0x940ebae6 pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x9412c37e fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x9428809d bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0x942c15d5 pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event -EXPORT_SYMBOL_GPL vmlinux 0x94464b32 fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0x944887ba devm_mdiobus_free -EXPORT_SYMBOL_GPL vmlinux 0x9450550e percpu_ida_alloc -EXPORT_SYMBOL_GPL vmlinux 0x945e5c40 scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x94803e0b rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x94b82cd3 irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x94c318be apei_exec_collect_resources -EXPORT_SYMBOL_GPL vmlinux 0x94c63ff6 __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0x94d6e193 genlmsg_new_unicast -EXPORT_SYMBOL_GPL vmlinux 0x94deb4f2 crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop -EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x954f4f40 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x956e92ed cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0x9583ba13 __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95c8f7e3 __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0x95d8a4b9 perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x95fea713 __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x96329302 crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x963a4944 agp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0x964181fc clk_register -EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x964add15 xenbus_scanf -EXPORT_SYMBOL_GPL vmlinux 0x964d5c39 acpi_os_map_memory -EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x965e55dc device_move -EXPORT_SYMBOL_GPL vmlinux 0x96626387 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x966675a6 subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x96788b5d __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x9680aff9 fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0x96877a15 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0x96aa5c2b find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0x96c8799f ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0x96e1abc5 btree_init -EXPORT_SYMBOL_GPL vmlinux 0x96e3792e gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x96ee829a clk_debugfs_add_file -EXPORT_SYMBOL_GPL vmlinux 0x96f55f7b devm_regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x9700a4b4 spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0x971121c1 xenbus_dev_error -EXPORT_SYMBOL_GPL vmlinux 0x972b0f0f regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x973ab8ad cper_estatus_print -EXPORT_SYMBOL_GPL vmlinux 0x9746bffd wait_for_tpm_stat -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x9761fb4b clk_register_gpio_mux -EXPORT_SYMBOL_GPL vmlinux 0x97684ea6 ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0x976b31ea wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x9792f11f devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x97a614d2 spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x97c5209f usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0x97c7947a __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x97d75fc8 sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97f34fb8 __mmu_notifier_invalidate_range_start -EXPORT_SYMBOL_GPL vmlinux 0x98074de9 devm_rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0x9832217b ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9886a6c5 regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x988ff2a1 map_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x989c97e4 fuse_get_req -EXPORT_SYMBOL_GPL vmlinux 0x98c700df acpi_dev_get_property -EXPORT_SYMBOL_GPL vmlinux 0x98c91a83 tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0x98cd13d3 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0x98f9f73d fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on -EXPORT_SYMBOL_GPL vmlinux 0x990c0417 pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x992936c5 gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x992e277d ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0x99390dd5 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x9945a00d cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9948cfe9 fuse_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0x994b5769 mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x994f8199 pci_reset_bridge_secondary_bus -EXPORT_SYMBOL_GPL vmlinux 0x9954997b pinctrl_dev_get_devname -EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x996062ba event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0x99612be8 tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0x9966b5b3 disk_map_sector_rcu -EXPORT_SYMBOL_GPL vmlinux 0x9970073f key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0x9973add9 __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x99778f57 ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range -EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x99983204 cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0x999e5846 regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0x99ba6eec shmem_add_seals -EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x99d66605 dax_do_io -EXPORT_SYMBOL_GPL vmlinux 0x99d78da0 security_kernel_fw_from_file -EXPORT_SYMBOL_GPL vmlinux 0x99f9ed4e blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x99ffaff8 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0x9a02a2ef wait_on_page_bit_killable_timeout -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a765541 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0x9a815fb9 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck -EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9ada2b4e virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9af84241 md_new_event -EXPORT_SYMBOL_GPL vmlinux 0x9b0717f2 unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0x9b0fd674 watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x9b131bfd raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0x9b5ae261 scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0x9b6a7412 idle_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x9b720312 acpi_target_system_state -EXPORT_SYMBOL_GPL vmlinux 0x9b72cca8 ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0x9b944f0c i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus -EXPORT_SYMBOL_GPL vmlinux 0x9ba07b5d cm_notify_event -EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x9ba43442 driver_register -EXPORT_SYMBOL_GPL vmlinux 0x9ba7e68f devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x9bb29d81 pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x9bc0853e perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x9bc58ca0 set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x9bc66123 percpu_ida_free_tags -EXPORT_SYMBOL_GPL vmlinux 0x9bca03ca ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x9bd02975 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x9bd72b78 apei_write -EXPORT_SYMBOL_GPL vmlinux 0x9be3cebc sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9bfdd939 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x9c09dc5c nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x9c2de449 memory_add_physaddr_to_nid -EXPORT_SYMBOL_GPL vmlinux 0x9c2e4b66 acpi_unregister_gsi -EXPORT_SYMBOL_GPL vmlinux 0x9c373578 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x9c449747 __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x9c45ce07 nd_mapping_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x9c462261 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0x9c7a81ee sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x9c8de8a0 regmap_fields_write -EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ccdf526 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0x9cfc2f32 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0x9cfe2002 ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0x9d0181a3 ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9d01c324 splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0x9d06688b register_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0x9d28fb9d thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9d3850e1 gnttab_alloc_grant_references -EXPORT_SYMBOL_GPL vmlinux 0x9d4aa3ea dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x9d64d213 pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0x9d66acba da903x_update -EXPORT_SYMBOL_GPL vmlinux 0x9d7e1d63 crypto_larval_lookup -EXPORT_SYMBOL_GPL vmlinux 0x9d83181c regmap_write -EXPORT_SYMBOL_GPL vmlinux 0x9daa89db iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported -EXPORT_SYMBOL_GPL vmlinux 0x9dbe0543 crypto_ahash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x9dc02319 regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0x9dd8a2ae acpi_pci_check_ejectable -EXPORT_SYMBOL_GPL vmlinux 0x9de23cdd trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0x9e05499a init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x9e1b2ca4 device_create -EXPORT_SYMBOL_GPL vmlinux 0x9e1e9210 md_ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x9e366521 to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0x9e3e00fa crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e5fb84b tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x9e819e8e fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0x9e83ea97 input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0x9ec40af1 netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0x9ed2cddc regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ee8f981 gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x9efb38fe l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0x9f12ced1 rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0x9f59c6a5 gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0x9f92af83 x86_hyper_kvm -EXPORT_SYMBOL_GPL vmlinux 0x9fa93a39 pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x9faa8ad8 usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0x9fb56e2d led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0x9fc05043 regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9ff9fdea irq_find_matching_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x9fff4fc5 spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0xa014a6ac trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0xa01a4c7e sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xa034144b wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0xa04f7282 tpm2_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0xa07baff5 ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa083546e device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xa0ad8b4d xenbus_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0xa0c06c59 register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0xa0d44aa7 class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xa0d5743c usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xa0ebd7a2 platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0xa0ef33de usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0xa0f1029e usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0xa0f334d1 arch_add_memory -EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type -EXPORT_SYMBOL_GPL vmlinux 0xa11b55b2 xen_start_info -EXPORT_SYMBOL_GPL vmlinux 0xa129892e page_endio -EXPORT_SYMBOL_GPL vmlinux 0xa12dacf5 xenbus_unmap_ring -EXPORT_SYMBOL_GPL vmlinux 0xa12fef87 gnttab_unmap_refs_sync -EXPORT_SYMBOL_GPL vmlinux 0xa1344ad1 inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xa13ac7b1 fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0xa1498221 __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end -EXPORT_SYMBOL_GPL vmlinux 0xa15f3b93 usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0xa171f337 usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0xa1750e71 mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0xa182bf9f xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0xa196fbe8 pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0xa1c350ed crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0xa1f79553 xen_create_contiguous_region -EXPORT_SYMBOL_GPL vmlinux 0xa1ff976b usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0xa21e8ee1 clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0xa2424518 pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa2718017 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa27f4ee8 blkcipher_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0xa2849459 scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0xa2a68ca4 regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0xa2a96d64 devm_regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xa2ac5519 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0xa2b9c993 clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xa2be7384 crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0xa2c8be01 ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0xa2d790f4 percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0xa30e41fc ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0xa320c0b2 pci_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xa3508796 wakeup_source_prepare -EXPORT_SYMBOL_GPL vmlinux 0xa353fffc xenbus_rm -EXPORT_SYMBOL_GPL vmlinux 0xa35e6153 transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0xa3638260 relay_reset -EXPORT_SYMBOL_GPL vmlinux 0xa3646f56 usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0xa366b33f scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xa367422a device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0xa384918b pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa386c029 trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register -EXPORT_SYMBOL_GPL vmlinux 0xa38f6ac3 unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3a54bf4 od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3e58789 efivar_validate -EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0xa426a11d regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xa4415fc2 kobject_move -EXPORT_SYMBOL_GPL vmlinux 0xa44d6536 ping_seq_fops -EXPORT_SYMBOL_GPL vmlinux 0xa452c297 hpet_mask_rtc_irq_bit -EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq -EXPORT_SYMBOL_GPL vmlinux 0xa466de38 acpi_processor_ffh_cstate_enter -EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa49e211e pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0xa4a0cf78 scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0xa4ab0cfd __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0xa4c546b3 device_reset -EXPORT_SYMBOL_GPL vmlinux 0xa5067605 lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xa58519f7 efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0xa58e8240 ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0xa5bae462 __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xa5cb13d5 irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa60b7d92 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xa615f4df fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0xa6186167 edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0xa62892c6 efivar_sysfs_list -EXPORT_SYMBOL_GPL vmlinux 0xa649c4cd extcon_register_interest -EXPORT_SYMBOL_GPL vmlinux 0xa64b9692 serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0xa65b323c ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0xa65e8fb1 posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0xa66438e8 erst_read -EXPORT_SYMBOL_GPL vmlinux 0xa6647139 tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa683c049 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6c7216d virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0xa6ca844e modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xa6cd1011 irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6e455bf wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0xa6e792e9 gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xa6ea3578 srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xa6fa3ef5 __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xa70fe290 blk_queue_dma_drain -EXPORT_SYMBOL_GPL vmlinux 0xa724a0cc console_drivers -EXPORT_SYMBOL_GPL vmlinux 0xa7910697 bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0xa79722d7 cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0xa7b9ba72 da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0xa7c05aff perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa7fae3cb alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xa7fe5404 kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0xa801b359 efivar_entry_iter_begin -EXPORT_SYMBOL_GPL vmlinux 0xa8126300 usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0xa8416257 user_update -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa863be58 skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0xa8731e84 fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0xa8783434 rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0xa878ac9b ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0xa8845065 acpi_dev_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0xa8935430 regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0xa89cce88 ip_tunnel_get_stats64 -EXPORT_SYMBOL_GPL vmlinux 0xa8a959be rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0xa8b3fbc2 mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xa902162e remove_irq -EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit -EXPORT_SYMBOL_GPL vmlinux 0xa9143342 find_iova -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa9769e18 to_nd_blk_region -EXPORT_SYMBOL_GPL vmlinux 0xa98d7163 device_del -EXPORT_SYMBOL_GPL vmlinux 0xa9b067a4 iommu_map -EXPORT_SYMBOL_GPL vmlinux 0xa9bd1c4f regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9e1b0db extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xaa3466de yield_to -EXPORT_SYMBOL_GPL vmlinux 0xaa57ddf0 dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0xaa644c58 nvdimm_bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaa6bacc5 crypto_ablkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xaa88381d acpi_is_pnp_device -EXPORT_SYMBOL_GPL vmlinux 0xaa9205ad vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaab1821c blk_mq_free_hctx_request -EXPORT_SYMBOL_GPL vmlinux 0xaab90f16 rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0xaae4001f extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0xaaf7325c put_device -EXPORT_SYMBOL_GPL vmlinux 0xab01acbe gnttab_request_free_callback -EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0xab3dce42 tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0xab3f0c40 sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0xab528929 devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0xab539934 rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0xab567d31 percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del -EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request -EXPORT_SYMBOL_GPL vmlinux 0xab70bdbb wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0xabb16ee8 dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabf2b27c led_trigger_store -EXPORT_SYMBOL_GPL vmlinux 0xac062847 __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xac0de49a dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0xac29aacb irq_domain_add_simple -EXPORT_SYMBOL_GPL vmlinux 0xac5bb235 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xac5effd0 gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0xac741bd7 ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0xac8e8d96 ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0xac9ce195 kvm_async_pf_task_wait -EXPORT_SYMBOL_GPL vmlinux 0xacafa8e7 vector_used_by_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xacb30bfa rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0xacc27de1 dax_pfn_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0xacc58fa8 device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xacc7d5dc wm5110_patch -EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list -EXPORT_SYMBOL_GPL vmlinux 0xacef69f7 thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xad1964c7 arizona_clk32k_enable -EXPORT_SYMBOL_GPL vmlinux 0xad396995 screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0xad5013e1 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xad7162e5 kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0xad841a4a pci_msi_set_desc -EXPORT_SYMBOL_GPL vmlinux 0xad8d8ab0 xen_physdev_op_compat -EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0xadd3830d thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xade6cd22 platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0xae3dfb18 xen_pci_frontend -EXPORT_SYMBOL_GPL vmlinux 0xae5835d7 ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0xae5e1555 ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae6eaf93 hwpoison_filter_dev_minor -EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae89f147 sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0xaea5fbdf __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0xaecba6be percpu_ida_free -EXPORT_SYMBOL_GPL vmlinux 0xaef1a20d sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0xaefd58c8 sched_setattr -EXPORT_SYMBOL_GPL vmlinux 0xaf062981 xen_swiotlb_sync_sg_for_cpu -EXPORT_SYMBOL_GPL vmlinux 0xaf2085d1 rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0xaf5e3f0c virtqueue_get_used -EXPORT_SYMBOL_GPL vmlinux 0xaf697367 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0xaf6bcb9c devm_clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaf8f4b68 iommu_domain_set_attr -EXPORT_SYMBOL_GPL vmlinux 0xaf9439db leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xafb4f89e unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0xb00b833e pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0xb0193e96 ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0xb02168f4 rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb0393cac device_rename -EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xb04bf77f regmap_field_write -EXPORT_SYMBOL_GPL vmlinux 0xb0561ad1 subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xb0644098 swiotlb_tbl_sync_single -EXPORT_SYMBOL_GPL vmlinux 0xb073b292 kern_mount_data -EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb07ba3f9 regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xb084f2ea xattr_getsecurity -EXPORT_SYMBOL_GPL vmlinux 0xb0872ae1 dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0xb08ea0be rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0xb0b2a58f efivar_entry_set -EXPORT_SYMBOL_GPL vmlinux 0xb0b839fe tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0bce4f0 __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0xb0f1abc9 usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0xb0f91227 pin_is_valid -EXPORT_SYMBOL_GPL vmlinux 0xb0fce8d4 vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0xb12b686d debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read -EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb14d6e99 xen_xlate_remap_gfn_array -EXPORT_SYMBOL_GPL vmlinux 0xb172ffac efivars_sysfs_init -EXPORT_SYMBOL_GPL vmlinux 0xb1775198 regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0xb177e6d4 crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0xb17bff05 devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb18cd542 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0xb1a5f2fe usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched -EXPORT_SYMBOL_GPL vmlinux 0xb1b370bd __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xb1b6413e uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0xb1bc84a6 lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1bedeb7 register_jprobe -EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain -EXPORT_SYMBOL_GPL vmlinux 0xb1cf77ae nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1f35fc5 device_show_int -EXPORT_SYMBOL_GPL vmlinux 0xb20584e1 __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xb205e536 platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb245c729 regulator_register -EXPORT_SYMBOL_GPL vmlinux 0xb2558706 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xb261d8ea ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xb2620672 ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb285b8f8 xen_in_preemptible_hcall -EXPORT_SYMBOL_GPL vmlinux 0xb2a1443b xenbus_dev_cancel -EXPORT_SYMBOL_GPL vmlinux 0xb2c45d1e nvdimm_bus_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2e820cd fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0xb31298b7 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0xb31edd08 ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init -EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy -EXPORT_SYMBOL_GPL vmlinux 0xb36a6d14 usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xb372dac9 __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xb377f550 led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb38ec0e6 adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb3b31d46 crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0xb3bf1672 rtc_irq_register -EXPORT_SYMBOL_GPL vmlinux 0xb3f57c03 gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0xb4557e67 __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xb4590d1c acpi_subsys_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0xb46fb96d cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0xb48b1258 crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0xb4a484fb pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4c592fb regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xb4d49bf8 __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xb4dcacf8 swiotlb_tbl_map_single -EXPORT_SYMBOL_GPL vmlinux 0xb4e05e52 regmap_read -EXPORT_SYMBOL_GPL vmlinux 0xb4e14553 gnttab_query_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0xb4e9c544 led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb4f2b32a efivar_entry_size -EXPORT_SYMBOL_GPL vmlinux 0xb4f4724f irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0xb4fe1c04 debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0xb50684d8 ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb52dcd7c part_round_stats -EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xb5396d5e gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0xb53b3781 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0xb53b9c1e gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0xb5490f43 max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0xb5780b2f regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb5848bae __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited -EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table -EXPORT_SYMBOL_GPL vmlinux 0xb5a87b1f wakeup_source_drop -EXPORT_SYMBOL_GPL vmlinux 0xb5a8f51b blk_queue_flush_queueable -EXPORT_SYMBOL_GPL vmlinux 0xb5add92a usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb5fda3d1 device_register -EXPORT_SYMBOL_GPL vmlinux 0xb60e3cb1 usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0xb6230f1f gnttab_grant_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb62aa261 ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0xb6437235 bsg_request_fn -EXPORT_SYMBOL_GPL vmlinux 0xb649bb96 platform_bus -EXPORT_SYMBOL_GPL vmlinux 0xb651a912 raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xb66421b2 acpi_str_to_uuid -EXPORT_SYMBOL_GPL vmlinux 0xb6a43fd2 tpm_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xb6e55191 flush_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb6ea8b05 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0xb7113121 usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xb713456e debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0xb718f2f9 sfi_table_parse -EXPORT_SYMBOL_GPL vmlinux 0xb721fae1 skcipher_geniv_init -EXPORT_SYMBOL_GPL vmlinux 0xb7231732 debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0xb726b585 sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase -EXPORT_SYMBOL_GPL vmlinux 0xb73b740a trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0xb74456c4 crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0xb77f0be8 get_device -EXPORT_SYMBOL_GPL vmlinux 0xb792ec24 pci_try_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xb798685f pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0xb79d97a2 rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0xb7aea186 rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb7af8638 devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xb7d062e6 da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time -EXPORT_SYMBOL_GPL vmlinux 0xb7e6c8cf ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0xb7fc97bc crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0xb7fd6dd2 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0xb8468aee regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0xb846aa93 devm_pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xb84b9579 nd_blk_region_to_dimm -EXPORT_SYMBOL_GPL vmlinux 0xb8535e88 ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0xb861570f iommu_domain_window_disable -EXPORT_SYMBOL_GPL vmlinux 0xb8736c71 pci_reset_pri -EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb89bcd67 fat_detach -EXPORT_SYMBOL_GPL vmlinux 0xb89eef9c pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain -EXPORT_SYMBOL_GPL vmlinux 0xb8becc37 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0xb8c421cf dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8cf8f9b usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xb8f84c6f driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0xb913fd04 sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xb945ace8 __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0xb96f8663 pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0xb97198bd devm_regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb983a292 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xb99be14d sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xb99d5837 xenbus_read -EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9cbe2f7 xenbus_grant_ring -EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9d053a2 regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0xb9d7db65 disk_part_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba358853 sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xba3ababb i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0xba94c685 cper_estatus_check -EXPORT_SYMBOL_GPL vmlinux 0xba998a57 da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbabaa79c dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0xbacda556 ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0xbadb2c48 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0xbaf7d8ce crypto_alloc_ablkcipher -EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb1c15f7 simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0xbb35aa55 register_mce_write_callback -EXPORT_SYMBOL_GPL vmlinux 0xbb40479d rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xbb52a97e iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0xbb5f04c3 crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0xbb67f30b spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0xbb9a0889 bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0xbb9c9d72 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info -EXPORT_SYMBOL_GPL vmlinux 0xbbd4f657 xen_pcpu_id -EXPORT_SYMBOL_GPL vmlinux 0xbc13599a devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xbc3e875b thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xbc4217d4 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0xbc55a673 regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc7167b6 skcipher_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbc7587cb platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts -EXPORT_SYMBOL_GPL vmlinux 0xbcc533ad security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcd584f4 disk_get_part -EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbcf2fabc i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0xbcf5872b acpi_bind_one -EXPORT_SYMBOL_GPL vmlinux 0xbcfa802f rhashtable_walk_start -EXPORT_SYMBOL_GPL vmlinux 0xbd1b5cf9 crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0xbd2af66f power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xbd3bf2fb pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd4129a2 bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0xbd47812e pcc_mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xbd567868 usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0xbd671048 __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0xbd86a0ff lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0xbd86b127 usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0xbdd5f10f apei_hest_parse -EXPORT_SYMBOL_GPL vmlinux 0xbdd7c9db ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xbddf1c1d irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0xbde09f02 wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0xbdfd8e5a pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xbe195600 verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xbe2c3d23 regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0xbe372458 trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0xbe551079 wm5110_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0xbe5ce9de dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0xbe5d0996 idle_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbebcd541 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0xbee97eea regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0xbeea2cc9 ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0xbeec9471 usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0xbf023300 ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf15db36 tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0xbf226ee2 pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0xbf49889f thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xbf4abaac xen_unregister_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0xbf70c548 __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xbf725d96 xenbus_dev_is_online -EXPORT_SYMBOL_GPL vmlinux 0xbf8993dd bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xbf899fa5 acpiphp_register_attention -EXPORT_SYMBOL_GPL vmlinux 0xbf9ad60a rio_lock_device -EXPORT_SYMBOL_GPL vmlinux 0xbfb1be70 hv_setup_vmbus_irq -EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfd10bb7 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbff99008 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0xbff9bfb8 led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0xbffd53e0 acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space -EXPORT_SYMBOL_GPL vmlinux 0xc015aed6 bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0xc01d0f97 acpi_device_update_power -EXPORT_SYMBOL_GPL vmlinux 0xc01e666f blkg_stat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0xc02aa11f rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xc04b21bd acpi_os_unmap_iomem -EXPORT_SYMBOL_GPL vmlinux 0xc0548816 __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc069e875 led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc0900fcf acpi_os_get_iomem -EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0c0814f __efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0xc0e8f48e hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc1042401 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0xc116764f component_master_add_child -EXPORT_SYMBOL_GPL vmlinux 0xc11e5d31 efivars_register -EXPORT_SYMBOL_GPL vmlinux 0xc12ce3a5 regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0xc13ed84e page_cache_sync_readahead -EXPORT_SYMBOL_GPL vmlinux 0xc14c2824 xenbus_probe -EXPORT_SYMBOL_GPL vmlinux 0xc164642e xenbus_otherend_changed -EXPORT_SYMBOL_GPL vmlinux 0xc165cbea pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc1ae799d usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0xc20da03d __mmu_notifier_invalidate_range_end -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc2415409 net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0xc25f7fe5 device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xc262b6d2 ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0xc26351f8 bind_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xc26a0eec acpi_dma_request_slave_chan_by_index -EXPORT_SYMBOL_GPL vmlinux 0xc27db975 set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0xc287d96a kvm_set_posted_intr_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0xc2a52a67 dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0xc2bdcd15 single_open_net -EXPORT_SYMBOL_GPL vmlinux 0xc2c07bfb unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xc2d4b696 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0xc2e16de2 inet_hash -EXPORT_SYMBOL_GPL vmlinux 0xc2f87708 of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xc2fd5875 wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xc30311e7 regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc30ab0b6 regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0xc33e69cc aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc340e821 irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc357923c pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0xc35c9d07 bio_trim -EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xc37e913d devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xc3893966 dma_buf_vmap -EXPORT_SYMBOL_GPL vmlinux 0xc38b2130 ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0xc38f36d9 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xc3a04506 devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc3ac02c4 ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0xc3c51868 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0xc3d71ec4 __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xc3d8ed51 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xc3e30545 usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xc3e58bbf pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0xc3ea2b59 ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0xc3ed3628 max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xc3f81e25 spi_master_resume -EXPORT_SYMBOL_GPL vmlinux 0xc3fb7a92 nd_region_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc447dd93 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc45b60a3 set_pages_array_wt -EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc49f639e init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0xc4d760c7 irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc4dc29b3 thermal_generate_netlink_event -EXPORT_SYMBOL_GPL vmlinux 0xc512626a __supported_pte_mask -EXPORT_SYMBOL_GPL vmlinux 0xc5397da6 xenbus_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xc53d2256 pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0xc53e75e8 ablkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0xc54ac418 iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc587250b pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0xc5960d94 cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xc5adfbac hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0xc5c60cc1 platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0xc5c808f5 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0xc5c85c20 crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xc5d32d5e pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0xc5d8c327 ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0xc5f7eb22 sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc61d1750 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0xc62902e4 mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0xc6397ccd ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xc63e7d93 static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xc649353b blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0xc6501566 inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xc659d542 ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc660355a usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xc6623d39 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xc664a841 gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc6733b46 dm_get_rq_mapinfo -EXPORT_SYMBOL_GPL vmlinux 0xc67c2ba1 powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0xc686d6ca xen_swiotlb_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0xc69a99b0 led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc69c04f2 sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6cb80b5 key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0xc6da7a0a __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0xc6eb58f2 ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0xc6f06624 tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0xc7002ac4 evtchn_make_refcounted -EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put -EXPORT_SYMBOL_GPL vmlinux 0xc708ff01 tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0xc714cbf0 usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xc736f08d acpi_match_device -EXPORT_SYMBOL_GPL vmlinux 0xc7388e17 efivars_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc75dee83 sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0xc77b92f7 ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0xc77d40fa register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7a2852a gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0xc7bf867d regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer -EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc7e74bca clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0xc7f1bd44 posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0xc815e76f raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0xc819726a blocking_notifier_chain_cond_register -EXPORT_SYMBOL_GPL vmlinux 0xc81b765d put_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0xc8286a11 phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc84052ce pstore_register -EXPORT_SYMBOL_GPL vmlinux 0xc8674d42 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event -EXPORT_SYMBOL_GPL vmlinux 0xc8941130 max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xc8949285 key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xc89ae2dc platform_device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0xc89b4624 __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0xc8c85e57 i2c_new_probed_device -EXPORT_SYMBOL_GPL vmlinux 0xc8dadb01 input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc8de07bb gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0xc8e0c862 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0xc8f33a99 alloc_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xc8f4a97f blk_set_queue_dying -EXPORT_SYMBOL_GPL vmlinux 0xc8fbdcfe pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xc916eec2 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0xc939e218 led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0xc941cca6 serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0xc94493c2 hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xc94fb6a2 ping_hash -EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc95aec0b dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0xc9614191 sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0xc968dbbc devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc9705eeb has_newer_microcode -EXPORT_SYMBOL_GPL vmlinux 0xc992239f unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0xc9967062 efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0xc99fb950 pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler -EXPORT_SYMBOL_GPL vmlinux 0xc9c677e2 blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xc9dc2024 driver_find -EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xca235508 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0xca33d45c crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0xca465d0d gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xca4a7f63 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0xca4ebdab napi_hash_add -EXPORT_SYMBOL_GPL vmlinux 0xca5ee50d debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0xca747de0 led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0xca7903a1 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca81ea9a xenbus_transaction_end -EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcad101b5 pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0xcadec0f7 irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0xcafec86c rio_mport_send_doorbell -EXPORT_SYMBOL_GPL vmlinux 0xcb006cf3 get_hwpoison_page -EXPORT_SYMBOL_GPL vmlinux 0xcb01c265 bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0xcb06d7fa wm8400_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xcb0b9948 acpi_dev_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb28b3fa clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0xcb2e961b blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0xcb34d381 sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module -EXPORT_SYMBOL_GPL vmlinux 0xcb51b8f7 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0xcb5ee721 devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0xcb6796da rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0xcb6c2a1c split_page -EXPORT_SYMBOL_GPL vmlinux 0xcb721581 rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0xcb87014a ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0xcbb9896b skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0xcc1aa9c0 usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0xcc1e8ef8 get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0xcc28b43f sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xcc72cda7 pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule -EXPORT_SYMBOL_GPL vmlinux 0xcc8decdf usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0xccbce332 acpi_node_get_property_reference -EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd3aff5 fat_attach -EXPORT_SYMBOL_GPL vmlinux 0xcce31916 rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xccea4e34 perf_get_x86_pmu_capability -EXPORT_SYMBOL_GPL vmlinux 0xcceead75 regmap_update_bits_async -EXPORT_SYMBOL_GPL vmlinux 0xccf4820b __xenbus_register_frontend -EXPORT_SYMBOL_GPL vmlinux 0xccf61e79 register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xcd0fa80d xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcd19f8de usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0xcd1b48ff md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0xcd5d4ef9 btree_update -EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq -EXPORT_SYMBOL_GPL vmlinux 0xcd96e5dd nd_blk_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs -EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdcff992 iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0xcde34ce3 add_memory_resource -EXPORT_SYMBOL_GPL vmlinux 0xcde9d752 dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0xce0c7253 of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0xce12d037 btree_insert -EXPORT_SYMBOL_GPL vmlinux 0xce151a36 for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0xce4d02c5 wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce86bfac skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0xce9e89b0 wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0xced0284a skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0xcedd5275 devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcef1dd0e perf_check_microcode -EXPORT_SYMBOL_GPL vmlinux 0xcf257ed0 xen_swiotlb_unmap_page -EXPORT_SYMBOL_GPL vmlinux 0xcf374b20 pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0xcf3b248f ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0xcf4c8cd6 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain -EXPORT_SYMBOL_GPL vmlinux 0xcf6572ea security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0xcf65df5d user_describe -EXPORT_SYMBOL_GPL vmlinux 0xcfb0f16c ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xcfbc7b9a list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0xcfbc924d aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xcfc43454 spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0xcfe6ec3e ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0xcfe8802e inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate -EXPORT_SYMBOL_GPL vmlinux 0xd05d9a6b phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd06e781e crypto_alloc_instance -EXPORT_SYMBOL_GPL vmlinux 0xd09ae7ac md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0xd09d9d4e unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xd0a8d78e ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0xd0af3905 do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0xd0af9697 device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0xd0b74bc7 sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0e23cd4 regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0xd0e5d9cc xen_xlate_unmap_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0xd0f9eea5 klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xd102566c usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xd13102cb proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0xd133813e crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xd13d38fe __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xd1507e59 erst_clear -EXPORT_SYMBOL_GPL vmlinux 0xd1553b3b srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0xd160f612 cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xd168c008 crypto_init_ahash_spawn -EXPORT_SYMBOL_GPL vmlinux 0xd171ab10 spi_alloc_master -EXPORT_SYMBOL_GPL vmlinux 0xd176a119 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0xd188d240 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0xd1898019 swiotlb_map_page -EXPORT_SYMBOL_GPL vmlinux 0xd18f7ed1 usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xd19b3b53 fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0xd1ad3204 percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0xd1b7e3ea devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xd1c49e6f ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0xd1c680b3 usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xd1dab3aa netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0xd1ead9e0 tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd1faa364 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd20b1e30 ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd210a13f ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd226e308 gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xd25205ed hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd2817892 __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xd28285ef power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd2997e62 clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0xd299811d virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0xd2afd6b5 sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0xd2b17d17 pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd2c58ab2 apei_exec_noop -EXPORT_SYMBOL_GPL vmlinux 0xd2caed84 clk_register_gpio_gate -EXPORT_SYMBOL_GPL vmlinux 0xd2d1927b hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0xd2da8e9d tcp_peer_is_proven -EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0xd2e52b56 dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0xd2e88de5 clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript -EXPORT_SYMBOL_GPL vmlinux 0xd2f41e8a pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0xd2fb031f power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0xd30c6f49 regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0xd30c8d43 acpi_get_pci_dev -EXPORT_SYMBOL_GPL vmlinux 0xd30ea876 percpu_up_read -EXPORT_SYMBOL_GPL vmlinux 0xd31fa13c invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0xd3216e35 pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0xd3414a1e subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd3804c77 to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0xd385be3c dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xd3bf27cc virtqueue_get_avail -EXPORT_SYMBOL_GPL vmlinux 0xd3d24ea3 serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0xd3da0157 efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd404a937 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd4053fb7 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xd421ba7a devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count -EXPORT_SYMBOL_GPL vmlinux 0xd43b955e sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0xd4423e57 fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd4487fd5 snprint_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd44e4b92 dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0xd451b5fb unregister_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xd4551801 sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0xd45772b0 udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xd45afc5b pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0xd45ea32f hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0xd463f16f nl_table -EXPORT_SYMBOL_GPL vmlinux 0xd46aad96 xenbus_dev_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xd4765724 crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xd4840a23 device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xd4a84dcc pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0xd4af2a3b nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0xd4af5f33 regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd4b86414 devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0xd4bd66a0 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4fe7d71 pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0xd4ff68db ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd5165ab6 gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xd5240cfb pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0xd52eb17b __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0xd54a50bd usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0xd55a2e7c relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd56b5f64 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0xd58adf5d ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0xd59fedbf devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xd5ac2785 wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0xd5db5e86 gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xd5ebc1d8 subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0xd5ec85ad rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xd5f4a375 regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0xd6055007 component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh -EXPORT_SYMBOL_GPL vmlinux 0xd62d2505 sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xd642f6a3 debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0xd6518178 xen_register_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0xd6653d08 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd68c992b mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0xd69cd55f dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xd6aa2cf7 device_property_present -EXPORT_SYMBOL_GPL vmlinux 0xd6d9c42e pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0xd6ed3a8e cper_next_record_id -EXPORT_SYMBOL_GPL vmlinux 0xd6f5a258 bdev_read_page -EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries -EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0xd7223d65 blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0xd72468ea rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state -EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end -EXPORT_SYMBOL_GPL vmlinux 0xd7464521 serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0xd749ee59 xenbus_probe_node -EXPORT_SYMBOL_GPL vmlinux 0xd764d265 inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xd79b103b tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0xd79b4975 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0xd79dd7e8 adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0xd7a6caf6 virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0xd7afba2e perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0xd7ba42f3 perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0xd7ca0530 usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xd7ca9942 ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0xd7cc3d1f __netlink_alloc_skb -EXPORT_SYMBOL_GPL vmlinux 0xd7d6c958 save_stack_trace_tsk -EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0xd7fd1dad skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0xd7fd601b __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xd8014fdd usb_gen_phy_init -EXPORT_SYMBOL_GPL vmlinux 0xd8078874 crypto_attr_alg2 -EXPORT_SYMBOL_GPL vmlinux 0xd818c815 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xd82bbe74 acpi_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0xd83ad49d phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xd871a341 crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd88adb2a ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0xd89fae19 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xd8a35f82 pinctrl_utils_add_config -EXPORT_SYMBOL_GPL vmlinux 0xd8b5eaae input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0xd8c4c7d2 wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0xd8e35ea4 crypto_alg_lookup -EXPORT_SYMBOL_GPL vmlinux 0xd8f9cd32 usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges -EXPORT_SYMBOL_GPL vmlinux 0xd92dc2c9 skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0xd92ddbd2 virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0xd935292f apic -EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0xd94fa823 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd97760a4 i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0xd97f1395 virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0xd9861c01 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0xd986dad1 kernel_fpu_begin -EXPORT_SYMBOL_GPL vmlinux 0xd9872dbd ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xd9b6dedc devm_spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0xd9cabd12 of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xd9dd2f89 kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xd9ee1a8c power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd9f87a04 iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xda133804 gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0xda1611ba dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0xda242c09 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0xda269797 event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0xda32e405 acpi_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0xda389561 smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0xda47c5ed devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0xda78e975 __xenbus_register_backend -EXPORT_SYMBOL_GPL vmlinux 0xda7cf6fa bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp -EXPORT_SYMBOL_GPL vmlinux 0xdab2b7a8 fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdac61148 locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0xdae1a124 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdaf76bae dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0xdb09e938 rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0xdb104ad5 tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0xdb1cf161 __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xdb4583e3 cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0xdb730329 tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0xdb734f22 devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb916fd0 trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0xdb91e05c tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0xdbc55fd0 pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0xdbea747f vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdbfc8d4b pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall -EXPORT_SYMBOL_GPL vmlinux 0xdc191779 xen_swiotlb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0xdc1a42cd iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xdc1d11ec da903x_read -EXPORT_SYMBOL_GPL vmlinux 0xdc20bc85 blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xdc23e94f usb_acpi_power_manageable -EXPORT_SYMBOL_GPL vmlinux 0xdc58cc7e crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xdc606241 blkg_print_stat_bytes -EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list -EXPORT_SYMBOL_GPL vmlinux 0xdc7254c8 regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0xdc7f96c6 add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable -EXPORT_SYMBOL_GPL vmlinux 0xdc92640e regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdcaf1470 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0xdccf1243 xen_swiotlb_unmap_sg_attrs -EXPORT_SYMBOL_GPL vmlinux 0xdcde402a pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock -EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd3c02c8 regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xdd50148e tps65217_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xdd526a5d shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0xdd57e2b5 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0xdd6ea392 sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0xdd96b41c fsnotify -EXPORT_SYMBOL_GPL vmlinux 0xdd9b5514 usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0xddacb086 ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0xddb88612 usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddc01e0e add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0xddc18f2e pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0xddeaa7f4 xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0xde0aa690 rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0xde147566 nvdimm_blk_region_create -EXPORT_SYMBOL_GPL vmlinux 0xde15e2ec device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0xde1836d8 bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xde46b86e usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xde50d216 extcon_set_cable_state -EXPORT_SYMBOL_GPL vmlinux 0xde5d4ccf serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0xde679e92 virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0xde6b7d2a fib_select_path -EXPORT_SYMBOL_GPL vmlinux 0xde866811 adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0xde8dd926 klist_next -EXPORT_SYMBOL_GPL vmlinux 0xde9e2403 memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdea6621b tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0xdecf960b print_context_stack -EXPORT_SYMBOL_GPL vmlinux 0xdf0421d8 ping_proc_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdf093fb6 regmap_fields_force_write -EXPORT_SYMBOL_GPL vmlinux 0xdf0a6959 class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep -EXPORT_SYMBOL_GPL vmlinux 0xdf1d5e22 pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xdf48738d __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0xdf622181 clk_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0xdf656215 usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0xdf66ca81 ucode_cpu_info -EXPORT_SYMBOL_GPL vmlinux 0xdf75282c inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0xdfa1adb5 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdfa41a05 cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0xdfa81b8d __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0xdfc61286 ref_module -EXPORT_SYMBOL_GPL vmlinux 0xdfd3bb47 irq_find_mapping -EXPORT_SYMBOL_GPL vmlinux 0xdffa945f fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0xe006eee5 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name -EXPORT_SYMBOL_GPL vmlinux 0xe010bd0e __rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0xe02141f2 clk_gpio_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xe022c870 regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0xe0469bc6 ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0xe0472835 device_remove_property_set -EXPORT_SYMBOL_GPL vmlinux 0xe04b7dfc clk_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xe0699fce __blk_run_queue_uncond -EXPORT_SYMBOL_GPL vmlinux 0xe06adce7 platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0xe06d13c1 devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0xe070639e __bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved -EXPORT_SYMBOL_GPL vmlinux 0xe08cadbc ata_do_eh -EXPORT_SYMBOL_GPL vmlinux 0xe0945573 mmput -EXPORT_SYMBOL_GPL vmlinux 0xe099f5c2 security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0xe0b00a10 unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0c64c85 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq -EXPORT_SYMBOL_GPL vmlinux 0xe0c811b0 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xe0cae083 rt_mutex_timed_lock -EXPORT_SYMBOL_GPL vmlinux 0xe0cb72a4 spi_master_suspend -EXPORT_SYMBOL_GPL vmlinux 0xe0d28476 rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xe0db93fc disk_part_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xe0eab4e9 tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0xe1068136 __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin -EXPORT_SYMBOL_GPL vmlinux 0xe11b7041 pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0xe11b781d mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0xe11c6dc9 extcon_update_state -EXPORT_SYMBOL_GPL vmlinux 0xe1253d5e virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0xe12e7cac crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0xe12fd863 regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0xe157115e usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xe16b0d30 unregister_jprobe -EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe18d1b45 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xe193b910 debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0xe1a1b08d ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports -EXPORT_SYMBOL_GPL vmlinux 0xe1cab67c input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0xe1dbf95c pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0xe1f1f309 x86_vector_domain -EXPORT_SYMBOL_GPL vmlinux 0xe1f4f6cb vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0xe1ff07be rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xe24b6330 usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0xe258c6c5 dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0xe268f988 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0xe26b79ce wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength -EXPORT_SYMBOL_GPL vmlinux 0xe28c91cc __init_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0xe29349dc copy_reserved_iova -EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe2a82372 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0xe2aa2717 __srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xe2aab839 clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0xe2bcfd90 acpi_ec_add_query_handler -EXPORT_SYMBOL_GPL vmlinux 0xe2d113eb acpi_driver_match_device -EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xe31eef51 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0xe3409aed rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0xe3679880 iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0xe38f9c7a sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0xe3948ff4 acpi_walk_dep_device_list -EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler -EXPORT_SYMBOL_GPL vmlinux 0xe3bda663 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe3ce5898 usb_bus_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xe3e8cdc8 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xe3eaf584 pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xe3f454c0 fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0xe405306b blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xe414fe7e ping_err -EXPORT_SYMBOL_GPL vmlinux 0xe41534ce bind_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0xe418fde4 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0xe41a5730 ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xe46f948d tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0xe4830e20 zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4a86f07 ata_eh_qc_retry -EXPORT_SYMBOL_GPL vmlinux 0xe4a8f8d8 devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xe4aa7ff7 devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto -EXPORT_SYMBOL_GPL vmlinux 0xe4c8c47a fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0xe4cae125 component_add -EXPORT_SYMBOL_GPL vmlinux 0xe4e68bc8 apei_map_generic_address -EXPORT_SYMBOL_GPL vmlinux 0xe50cd0c5 __nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0xe514d401 usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0xe5158a61 elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe545a811 get_xsave_addr -EXPORT_SYMBOL_GPL vmlinux 0xe55cbc7d rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0xe574626e usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq -EXPORT_SYMBOL_GPL vmlinux 0xe5b8082b cper_estatus_check_header -EXPORT_SYMBOL_GPL vmlinux 0xe5ce9e2e posix_timer_event -EXPORT_SYMBOL_GPL vmlinux 0xe6033947 devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0xe60d3fce crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0xe631dba5 regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0xe632444f pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler -EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe65c4dd4 udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0xe6817dc4 virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0xe686231a unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xe694a429 swiotlb_unmap_page -EXPORT_SYMBOL_GPL vmlinux 0xe6ad2a05 of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0xe6b37329 scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0xe6c5bee8 mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module -EXPORT_SYMBOL_GPL vmlinux 0xe6cc5c6d pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen -EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xe6f65adf pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data -EXPORT_SYMBOL_GPL vmlinux 0xe709cdfe __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xe7127fb7 wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xe719f1bb blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe7397a9a usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0xe7438846 __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0xe75463ee scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0xe768d444 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe781814d kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0xe78ef9ba nf_register_afinfo -EXPORT_SYMBOL_GPL vmlinux 0xe7926d5c dax_clear_blocks -EXPORT_SYMBOL_GPL vmlinux 0xe7aacdf8 acpi_gpiochip_request_interrupts -EXPORT_SYMBOL_GPL vmlinux 0xe7c96a78 nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0xe7d6362f devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0xe7e97263 __blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0xe7eaddd3 ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr -EXPORT_SYMBOL_GPL vmlinux 0xe809054f scsi_internal_device_block -EXPORT_SYMBOL_GPL vmlinux 0xe817d8bd pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe874fbc3 nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0xe886dc93 file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0xe89bd243 ata_sff_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xe8c3bd0e ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe8ea6e9d dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xe8f46963 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0xe912ad18 mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0xe915ebeb i2c_new_device -EXPORT_SYMBOL_GPL vmlinux 0xe9243f9c cpufreq_frequency_table_cpuinfo -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe9408621 phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0xe9519aeb component_master_add -EXPORT_SYMBOL_GPL vmlinux 0xe9663e7f inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0xe970dec4 crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xe970ecd6 ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0xe973d7ec usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xe98a6f59 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0xe9a4bb32 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xe9af829c mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available -EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xea0202f6 wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xea0d0583 ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea310954 platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0xea53c98f ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0xea5ce2e2 blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0xea61070c blk_queue_rq_timed_out -EXPORT_SYMBOL_GPL vmlinux 0xea628c20 bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0xea641a07 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xea99a320 sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0xeaacb78d dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0xeae74593 usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0xeae8da55 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0xeaeb4975 dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0xeaf041fe blk_mq_register_disk -EXPORT_SYMBOL_GPL vmlinux 0xeaf69e0e add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0xeb0ccbe8 pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0xeb1d0490 crypto_register_pcomp -EXPORT_SYMBOL_GPL vmlinux 0xeb2798f7 xen_destroy_contiguous_region -EXPORT_SYMBOL_GPL vmlinux 0xeb2eb288 efivar_variable_is_removable -EXPORT_SYMBOL_GPL vmlinux 0xeb370805 __apei_exec_run -EXPORT_SYMBOL_GPL vmlinux 0xeb38a701 regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xeb38be30 skb_gso_transport_seglen -EXPORT_SYMBOL_GPL vmlinux 0xeb4ebf0a tpm2_startup -EXPORT_SYMBOL_GPL vmlinux 0xeb6c2c61 cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xeb7c3f2f max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0xeb7d183e jump_label_rate_limit -EXPORT_SYMBOL_GPL vmlinux 0xeb8274d2 percpu_ida_for_each_free -EXPORT_SYMBOL_GPL vmlinux 0xeb833c22 xen_has_pv_disk_devices -EXPORT_SYMBOL_GPL vmlinux 0xeb8da754 syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0xeb8db427 usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xeb91f947 pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0xeb9b023b nd_numa_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xebb53967 nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xebb768de power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0xebc829cd regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0xebd3f90e usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xec0a6e51 pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare -EXPORT_SYMBOL_GPL vmlinux 0xec23c830 da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del -EXPORT_SYMBOL_GPL vmlinux 0xec302a30 regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xec3bde3a usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0xec3e8ca6 regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0xec4d5ed7 __remove_pages -EXPORT_SYMBOL_GPL vmlinux 0xec631f34 remove_memory -EXPORT_SYMBOL_GPL vmlinux 0xec77180f ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0xec7c2662 ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xec935863 xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0xecad3b34 do_machine_check -EXPORT_SYMBOL_GPL vmlinux 0xecb8292b clear_foreign_p2m_mapping -EXPORT_SYMBOL_GPL vmlinux 0xecd8a203 gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xece35d68 extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xeced40c5 gnttab_map_refs -EXPORT_SYMBOL_GPL vmlinux 0xed20cc16 dio_end_io -EXPORT_SYMBOL_GPL vmlinux 0xed411e46 blkg_print_stat_ios -EXPORT_SYMBOL_GPL vmlinux 0xed4b294f usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0xed523f3c watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xed56164c of_css -EXPORT_SYMBOL_GPL vmlinux 0xed790d41 dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xed81aad8 rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0xed891b1c crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0xed92de62 led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0xed9711a8 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0xed981a16 cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xed9ce7ef inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0xeda4b88d usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0xedbc6f67 gnttab_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0xedcc97ce dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0xedcdffd4 alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0xede0e1eb kernfs_path -EXPORT_SYMBOL_GPL vmlinux 0xedea0146 regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xedfb5fe5 __inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0xee13e697 set_personality_ia32 -EXPORT_SYMBOL_GPL vmlinux 0xee220060 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0xee281e81 crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0xee2c9cae sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0xee510d75 devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0xee5bb3c4 srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible -EXPORT_SYMBOL_GPL vmlinux 0xeeb15475 usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0xeebad7c2 pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xeee22cb8 io_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xef1502f2 ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request -EXPORT_SYMBOL_GPL vmlinux 0xef43fe36 pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0xef4ab02e irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0xef4cac40 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0xef50e244 acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef6d007a sigset_from_compat -EXPORT_SYMBOL_GPL vmlinux 0xef6fcc28 regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0xef86b4d2 kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0xef8af86c rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefd41ddd pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0xf0223161 __module_address -EXPORT_SYMBOL_GPL vmlinux 0xf02b7af4 ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0xf0306322 filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0xf04a16b2 devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0xf060e80a hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable -EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xf074d99e bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf09b262b mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0xf0a5914f wbc_account_io -EXPORT_SYMBOL_GPL vmlinux 0xf0b036f5 crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xf0b8e047 da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xf0bdae9c ata_base_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xf0c4cfa3 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0xf0df00ba xen_swiotlb_map_sg_attrs -EXPORT_SYMBOL_GPL vmlinux 0xf0e1ff05 crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0xf10dc9e6 inet_csk_compat_getsockopt -EXPORT_SYMBOL_GPL vmlinux 0xf11002f1 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xf126c61d shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xf14e4d24 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key -EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on -EXPORT_SYMBOL_GPL vmlinux 0xf1b551d9 ibft_addr -EXPORT_SYMBOL_GPL vmlinux 0xf1d47d51 palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0xf1d5fc15 crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0xf20496df skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0xf2147f1e class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf26742dd clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0xf26c89dd usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0xf26eba6d usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0xf279ede4 ahash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0xf2882a90 usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xf291252d alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0xf2925f2c ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xf2ce1244 mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0xf2dce436 gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0xf2e06848 usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support -EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf336c8be devres_release -EXPORT_SYMBOL_GPL vmlinux 0xf33dc43c sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf3856354 ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xf3941b0e thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0xf3c64297 sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0xf3ce7a2a regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0xf3d16a69 trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0xf3dd3ec1 atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf3ebf4eb arch_apei_report_mem_error -EXPORT_SYMBOL_GPL vmlinux 0xf3ee76cc ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xf3fe4425 dma_buf_kunmap -EXPORT_SYMBOL_GPL vmlinux 0xf42041ac usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0xf4296865 blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0xf44f8b04 napi_hash_del -EXPORT_SYMBOL_GPL vmlinux 0xf4559f1b i2c_lock_adapter -EXPORT_SYMBOL_GPL vmlinux 0xf45acf58 ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask -EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh -EXPORT_SYMBOL_GPL vmlinux 0xf4bacc2f regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xf4ed406a rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf50367e4 wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0xf52a8ffa call_srcu -EXPORT_SYMBOL_GPL vmlinux 0xf5379771 net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf5781428 ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0xf5785b42 evtchn_get -EXPORT_SYMBOL_GPL vmlinux 0xf5876fee dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xf58bd25d devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xf5945bac gnttab_free_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5af06c9 acpi_ec_remove_query_handler -EXPORT_SYMBOL_GPL vmlinux 0xf5c16542 driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0xf5cebd7c preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xf5d62c18 pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xf5e01f1f arizona_free_irq -EXPORT_SYMBOL_GPL vmlinux 0xf62010da pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0xf647a487 sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xf665f800 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xf677d668 securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xf69336cf mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0xf69652e9 ata_acpi_gtm_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xf698c1af pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xf6a916ba kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xf6a9556a btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0xf6bf81ad arizona_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str -EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6cafda8 register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xf6d943b1 __get_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf6ecc1d7 gnttab_unmap_refs_async -EXPORT_SYMBOL_GPL vmlinux 0xf6feccf2 shake_page -EXPORT_SYMBOL_GPL vmlinux 0xf7003951 do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xf7016530 xenbus_gather -EXPORT_SYMBOL_GPL vmlinux 0xf702a3b4 cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0xf70dfdd3 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xf74c0581 serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xf7a2de26 fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xf7b36224 reservation_object_get_fences_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf7bec20c usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xf7cdd291 __class_register -EXPORT_SYMBOL_GPL vmlinux 0xf7d5cfca regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xf7fe2b19 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0xf8274095 fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf8435c90 debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xf84ec1e6 reservation_object_wait_timeout_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xf897a1a0 gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0xf8b0e7e3 usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0xf8d75404 usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops -EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0xf8ff8acb crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0xf91e9bfd default_iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf93dc141 vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0xf942445c cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf9543320 md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0xf96cf7b9 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0xf9765833 dmi_match -EXPORT_SYMBOL_GPL vmlinux 0xf978ebc5 clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0xf97a3a21 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0xf97abfcc xenbus_map_ring_valloc -EXPORT_SYMBOL_GPL vmlinux 0xf97f9983 rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0xf9881dc4 __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9c2ae08 wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xf9d9264e xen_have_vector_callback -EXPORT_SYMBOL_GPL vmlinux 0xf9db8cab fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0xf9e39804 tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xf9f0cd7c crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0xf9f5d2f3 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xf9fdd863 dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start -EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched -EXPORT_SYMBOL_GPL vmlinux 0xfa3509d6 xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0xfa4f6e0b iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0xfa525c2e debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xfa613eb4 blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0xfa6dc15c bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec -EXPORT_SYMBOL_GPL vmlinux 0xfa950822 pci_ats_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xfa9da488 acpi_register_gsi -EXPORT_SYMBOL_GPL vmlinux 0xfa9e33f7 klist_init -EXPORT_SYMBOL_GPL vmlinux 0xfab3cac5 uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xfac2a693 ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0xfad7d730 rhashtable_insert_rehash -EXPORT_SYMBOL_GPL vmlinux 0xfaf13f2f sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xfafafad2 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0xfb0047f6 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xfb0a790d unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xfb0e1b25 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xfb2218e4 pskb_put -EXPORT_SYMBOL_GPL vmlinux 0xfb25ce06 btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb3844f2 debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0xfb64b230 acpi_processor_ffh_cstate_probe -EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb7336b5 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0xfb7538c9 usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0xfb884c65 regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0xfb98b6a9 uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0xfba3b710 ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbf931ee devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0xfbfc545c device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0xfc2d6aa0 devm_led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0xfc338a49 phy_init -EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power -EXPORT_SYMBOL_GPL vmlinux 0xfc43ad96 cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xfc4c6263 __percpu_ida_init -EXPORT_SYMBOL_GPL vmlinux 0xfc5e0624 regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xfc70a468 pwm_enable -EXPORT_SYMBOL_GPL vmlinux 0xfc8125e2 pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0xfc968c8b apei_exec_write_register_value -EXPORT_SYMBOL_GPL vmlinux 0xfcdec26d ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0xfd12fb83 set_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0xfd51b281 gnttab_end_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0xfd688ebc wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0xfd694cdb usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0xfd6dd135 wm5110_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable -EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack -EXPORT_SYMBOL_GPL vmlinux 0xfd7cce37 pinconf_generic_dump_config -EXPORT_SYMBOL_GPL vmlinux 0xfd808436 usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0xfd8bde87 pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0xfd91fb91 usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfdab0a51 inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0xfdb23a4f __blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xfdc39c90 pci_intx -EXPORT_SYMBOL_GPL vmlinux 0xfe3bdfa8 pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0xfe52a9c9 dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0xfe723a5d cpufreq_governor_dbs -EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine -EXPORT_SYMBOL_GPL vmlinux 0xfe98d0e8 dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfeb7420c register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfee02f24 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff0ecdfb irq_create_strict_mappings -EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff2ce747 machine_check_poll -EXPORT_SYMBOL_GPL vmlinux 0xff3c87ef regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xff4e8248 class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0xff5f85a1 transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xff80ba7d __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0xffa20e40 usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0xffa5da7e tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0xffbbd73a anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0xffbd1273 cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xffd7033d ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xffe9a809 free_vm_area reverted: --- linux-raspi2-4.4.0/debian.master/abi/4.4.0-89.112/amd64/generic.compiler +++ linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-89.112/amd64/generic.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 reverted: --- linux-raspi2-4.4.0/debian.master/abi/4.4.0-89.112/amd64/generic.modules +++ linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-89.112/amd64/generic.modules @@ -1,4617 +0,0 @@ -3c574_cs -3c589_cs -3c59x -3w-9xxx -3w-sas -3w-xxxx -6lowpan -6pack -8021q -8139cp -8139too -8250_dw -8250_fintek -8250_mid -8255 -8255_pci -8390 -842 -842_compress -842_decompress -88pm800 -88pm805 -88pm80x -88pm80x_onkey -88pm8607 -88pm860x-ts -88pm860x_battery -88pm860x_bl -88pm860x_charger -88pm860x_onkey -9p -9pnet -9pnet_rdma -9pnet_virtio -BusLogic -DAC960 -a100u2w -a3d -a8293 -aacraid -aat2870-regulator -aat2870_bl -ab3100 -ab3100-otp -abituguru -abituguru3 -ablk_helper -ac97_bus -acard-ahci -acecad -acenic -acer-wmi -acerhdf -acpi-als -acpi_extlog -acpi_ipmi -acpi_pad -acpi_power_meter -acpi_thermal_rel -acpiphp_ibm -acquirewdt -act200l-sir -act8865-regulator -act_bpf -act_connmark -act_csum -act_gact -act_ipt -act_mirred -act_nat -act_pedit -act_police -act_simple -act_skbedit -act_vlan -actisys-sir -ad2s1200 -ad2s1210 -ad2s90 -ad5064 -ad525x_dpot -ad525x_dpot-i2c -ad525x_dpot-spi -ad5360 -ad5380 -ad5398 -ad5421 -ad5446 -ad5449 -ad5504 -ad5592r -ad5592r-base -ad5593r -ad5624r_spi -ad5686 -ad5755 -ad5764 -ad5791 -ad5933 -ad714x -ad714x-i2c -ad714x-spi -ad7150 -ad7152 -ad7192 -ad7266 -ad7280a -ad7291 -ad7298 -ad7303 -ad7314 -ad7414 -ad7418 -ad7476 -ad7606 -ad7746 -ad7780 -ad7791 -ad7793 -ad7816 -ad7877 -ad7879 -ad7879-i2c -ad7879-spi -ad7887 -ad7923 -ad799x -ad8366 -ad9523 -ad9832 -ad9834 -ad_sigma_delta -adc128d818 -adcxx -addi_apci_1032 -addi_apci_1500 -addi_apci_1516 -addi_apci_1564 -addi_apci_16xx -addi_apci_2032 -addi_apci_2200 -addi_apci_3120 -addi_apci_3501 -addi_apci_3xxx -addi_watchdog -ade7753 -ade7754 -ade7758 -ade7759 -ade7854 -ade7854-i2c -ade7854-spi -adf4350 -adfs -adi -adis16060 -adis16080 -adis16130 -adis16136 -adis16201 -adis16203 -adis16204 -adis16209 -adis16220 -adis16240 -adis16260 -adis16400 -adis16480 -adis_lib -adjd_s311 -adl_pci6208 -adl_pci7x3x -adl_pci8164 -adl_pci9111 -adl_pci9118 -adm1021 -adm1025 -adm1026 -adm1029 -adm1031 -adm1275 -adm8211 -adm9240 -adp5520-keys -adp5520_bl -adp5588-keys -adp5589-keys -adp8860_bl -adp8870_bl -adq12b -ads1015 -ads7828 -ads7846 -ads7871 -adt7310 -adt7316 -adt7316-i2c -adt7316-spi -adt7410 -adt7411 -adt7462 -adt7470 -adt7475 -adt7x10 -adummy -adutux -adv7170 -adv7175 -adv7511 -adv7604 -adv7842 -adv_pci1710 -adv_pci1723 -adv_pci1724 -adv_pci_dio -advansys -advantechwdt -adxl34x -adxl34x-i2c -adxl34x-spi -adxrs450 -aes-x86_64 -aesni-intel -af-rxrpc -af9013 -af9033 -af_alg -af_key -af_packet_diag -affs -ah4 -ah6 -aha152x_cs -ahci -ahci_platform -aic79xx -aic7xxx -aic94xx -aim_cdev -aim_network -aim_sound -aim_v4l2 -aio_aio12_8 -aio_iiro_16 -aiptek -aircable -airo -airo_cs -airspy -ak8975 -al3320a -algif_aead -algif_hash -algif_rng -algif_skcipher -ali-ircc -alienware-wmi -alim1535_wdt -alim7101_wdt -altera-ci -altera-stapl -altera_jtaguart -altera_ps2 -altera_tse -altera_uart -alx -am53c974 -ambassador -amc6821 -amd -amd-rng -amd5536udc -amd64_edac_mod -amd76xrom -amd8111e -amd_freq_sensitivity -amd_iommu_v2 -amdgpu -amdkfd -amilo-rfkill -amplc_dio200 -amplc_dio200_common -amplc_dio200_pci -amplc_pc236 -amplc_pc236_common -amplc_pc263 -amplc_pci224 -amplc_pci230 -amplc_pci236 -amplc_pci263 -ams369fg06 -analog -anatop-regulator -ansi_cprng -anubis -aoe -apanel -apds9300 -apds9802als -apds990x -apds9960 -apple-gmux -apple_bl -appledisplay -applesmc -appletalk -appletouch -applicom -aquantia -ar5523 -ar7part -arc-rawmode -arc-rimi -arc4 -arc_ps2 -arc_uart -arcfb -arcmsr -arcnet -arizona-haptics -arizona-i2c -arizona-ldo1 -arizona-micsupp -arizona-spi -ark3116 -arkfb -arp_tables -arpt_mangle -arptable_filter -as102_fe -as3711-regulator -as3711_bl -as3935 -as5011 -asb100 -asc7621 -ascot2e -asix -ast -asus-laptop -asus-nb-wmi -asus-wmi -asus_atk0110 -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at24 -at25 -at76c50x-usb -at803x -at86rf230 -atbm8830 -aten -ath -ath10k_core -ath10k_pci -ath3k -ath5k -ath6kl_core -ath6kl_sdio -ath6kl_usb -ath9k -ath9k_common -ath9k_htc -ath9k_hw -ati_remote -ati_remote2 -atl1 -atl1c -atl1e -atl2 -atlas_btns -atm -atmel -atmel_cs -atmel_mxt_ts -atmel_pci -atmtcp -atp -atp870u -atusb -atxp1 -aty128fb -atyfb -au0828 -au8522_common -au8522_decoder -au8522_dig -aufs -auo-pixcir-ts -auo_k1900fb -auo_k1901fb -auo_k190x -auth_rpcgss -authenc -authencesn -autofs4 -avm_cs -avma1_cs -avmfritz -ax25 -ax88179_178a -axnet_cs -axp20x-pek -axp20x-regulator -axp20x_usb_power -axp288_adc -axp288_charger -axp288_fuel_gauge -b1 -b1dma -b1pci -b1pcmcia -b2c2-flexcop -b2c2-flexcop-pci -b2c2-flexcop-usb -b43 -b43legacy -b44 -bas_gigaset -batman-adv -baycom_par -baycom_ser_fdx -baycom_ser_hdx -bcache -bch -bcm-phy-lib -bcm203x -bcm3510 -bcm590xx -bcm590xx-regulator -bcm5974 -bcm7038_wdt -bcm7xxx -bcm87xx -bcma -bcma-hcd -bd6107 -bdc -bdc_pci -be2iscsi -be2net -befs -belkin_sa -bfa -bfs -bfusb -bh1750 -bh1770glc -bh1780gli -binfmt_misc -block2mtd -blocklayoutdriver -blowfish-x86_64 -blowfish_common -blowfish_generic -bluecard_cs -bluetooth -bluetooth_6lowpan -bma150 -bma180 -bmc150-accel-core -bmc150-accel-i2c -bmc150-accel-spi -bmc150_magn -bmg160_core -bmg160_i2c -bmg160_spi -bmp085 -bmp085-i2c -bmp085-spi -bmp280 -bna -bnep -bnx2 -bnx2fc -bnx2i -bnx2x -bnxt_en -bonding -bpa10x -bpck -bpqether -bq2415x_charger -bq24190_charger -bq24257_charger -bq24735-charger -bq25890_charger -bq27xxx_battery -br2684 -br_netfilter -brcmfmac -brcmsmac -brcmutil -brd -bridge -broadcom -broadsheetfb -bsd_comp -bt3c_cs -bt819 -bt856 -bt866 -bt878 -btbcm -btcoexist -btintel -btmrvl -btmrvl_sdio -btqca -btrfs -btrtl -btsdio -bttv -btuart_cs -btusb -btwilink -bu21013_ts -budget -budget-av -budget-ci -budget-core -budget-patch -c2port-duramar2150 -c4 -c67x00 -c6xdigio -c_can -c_can_pci -c_can_platform -cachefiles -cadence_wdt -cafe_ccic -cafe_nand -caif -caif_hsi -caif_serial -caif_socket -caif_usb -caif_virtio -camellia-aesni-avx-x86_64 -camellia-aesni-avx2 -camellia-x86_64 -camellia_generic -can -can-bcm -can-dev -can-gw -can-raw -capi -capidrv -capmode -carl9170 -carminefb -cassini -cast5-avx-x86_64 -cast5_generic -cast6-avx-x86_64 -cast6_generic -cast_common -catc -cb710 -cb710-mmc -cb_das16_cs -cb_pcidas -cb_pcidas64 -cb_pcidda -cb_pcimdas -cb_pcimdda -cc10001_adc -cc2520 -cc770 -cc770_isa -cc770_platform -cciss -ccm -ccp -ccp-crypto -cdc-acm -cdc-phonet -cdc-wdm -cdc_eem -cdc_ether -cdc_mbim -cdc_ncm -cdc_subset -ceph -cfag12864b -cfag12864bfb -cfg80211 -cfi_cmdset_0001 -cfi_cmdset_0002 -cfi_cmdset_0020 -cfi_probe -cfi_util -cfspi_slave -ch -ch341 -ch7006 -ch9200 -chacha20-x86_64 -chacha20_generic -chacha20poly1305 -chaoskey -chipreg -chnl_net -chromeos_laptop -chromeos_pstore -ci_hdrc -ci_hdrc_msm -ci_hdrc_pci -ci_hdrc_usb2 -ci_hdrc_zevio -cicada -cifs -cirrus -cirrusfb -ck804xrom -classmate-laptop -clip -clk-cdce706 -clk-palmas -clk-pwm -clk-s2mps11 -clk-si5351 -clk-twl6040 -clk-wm831x -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_rsvp -cls_rsvp6 -cls_tcindex -cls_u32 -cm109 -cm32181 -cm3232 -cm3323 -cm36651 -cm4000_cs -cm4040_cs -cma3000_d0x -cma3000_d0x_i2c -cmac -cmdlinepart -cmtp -cnic -cobalt -cobra -coda -com20020 -com20020-pci -com20020_cs -com90io -com90xx -comedi -comedi_8254 -comedi_8255 -comedi_bond -comedi_isadma -comedi_parport -comedi_pci -comedi_pcmcia -comedi_test -comedi_usb -comm -compal-laptop -configfs -contec_pci_dio -cordic -core -coretemp -cosm_bus -cosm_client -cp210x -cpcihp_generic -cpcihp_zt5550 -cpia2 -cpsw_ale -cpu-notifier-error-inject -cpu5wdt -cpuid -cr_bllcd -cramfs -crc-ccitt -crc-itu-t -crc32 -crc32-pclmul -crc7 -crc8 -crct10dif-pclmul -cros_ec -cros_ec_devs -cros_ec_i2c -cros_ec_keyb -cros_ec_lpc -cros_ec_spi -crvml -cryptd -crypto_user -cryptoloop -cs5345 -cs53l32a -csiostor -ct82c710 -ctr -cts -cuse -cw1200_core -cw1200_wlan_sdio -cw1200_wlan_spi -cx18 -cx18-alsa -cx22700 -cx22702 -cx231xx -cx231xx-alsa -cx231xx-dvb -cx2341x -cx23885 -cx24110 -cx24113 -cx24116 -cx24117 -cx24120 -cx24123 -cx25821 -cx25821-alsa -cx25840 -cx82310_eth -cx88-alsa -cx88-blackbird -cx88-dvb -cx88-vp3054-i2c -cx8800 -cx8802 -cx88xx -cxacru -cxd2099 -cxd2820r -cxd2841er -cxgb -cxgb3 -cxgb3i -cxgb4 -cxgb4i -cxgb4vf -cy8ctmg110_ts -cyapatp -cyber2000fb -cyberjack -cyclades -cypress_cy7c63 -cypress_firmware -cypress_m8 -cytherm -cyttsp4_core -cyttsp4_i2c -cyttsp4_spi -cyttsp_core -cyttsp_i2c -cyttsp_i2c_common -cyttsp_spi -da9030_battery -da9034-ts -da903x -da903x_bl -da9052-battery -da9052-hwmon -da9052-regulator -da9052_bl -da9052_onkey -da9052_tsi -da9052_wdt -da9055-hwmon -da9055-regulator -da9055_onkey -da9055_wdt -da9062-core -da9062-regulator -da9062_wdt -da9063-regulator -da9063_onkey -da9063_wdt -da9150-charger -da9150-core -da9150-fg -da9150-gpadc -da9210-regulator -da9211-regulator -dac02 -daqboard2000 -das08 -das08_cs -das08_isa -das08_pci -das16 -das16m1 -das1800 -das6402 -das800 -davicom -db9 -dc395x -dca -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -dccp_probe -dcdbas -ddbridge -de2104x -de4x5 -decnet -deflate -defxx -dell-laptop -dell-led -dell-rbtn -dell-smm-hwmon -dell-smo8800 -dell-wmi -dell-wmi-aio -dell_rbu -denali -denali_dt -denali_pci -des3_ede-x86_64 -des_generic -designware_i2s -dgap -dgnc -dht11 -dib0070 -dib0090 -dib3000mb -dib3000mc -dib7000m -dib7000p -dib8000 -dibx000_common -digi_acceleport -diskonchip -diva_idi -diva_mnt -divacapi -divadidd -divas -dl2k -dlci -dlm -dln2 -dm-bio-prison -dm-bufio -dm-cache -dm-cache-cleaner -dm-cache-mq -dm-cache-smq -dm-crypt -dm-delay -dm-era -dm-flakey -dm-log -dm-log-userspace -dm-log-writes -dm-mirror -dm-multipath -dm-persistent-data -dm-queue-length -dm-raid -dm-region-hash -dm-round-robin -dm-service-time -dm-snapshot -dm-switch -dm-thin-pool -dm-verity -dm-zero -dm1105 -dm9601 -dme1737 -dmfe -dmi-sysfs -dmm32at -dmx3191d -dn_rtmsg -dnet -docg3 -docg4 -dp83848 -dp83867 -dpt_i2o -drbd -drbg -drm -drm_kms_helper -drop_monitor -drv260x -drv2665 -drv2667 -drx39xyj -drxd -drxk -ds1621 -ds1682 -ds1wm -ds2482 -ds2490 -ds2760_battery -ds2780_battery -ds2781_battery -ds2782_battery -ds3000 -ds620 -dsbr100 -dscc4 -dss1_divert -dst -dst_ca -dstr -dt2801 -dt2811 -dt2814 -dt2815 -dt2817 -dt282x -dt3000 -dt3155 -dt9812 -dtl1_cs -dummy -dummy-irq -dummy_stm -dvb-as102 -dvb-bt8xx -dvb-core -dvb-pll -dvb-ttpci -dvb-ttusb-budget -dvb-usb -dvb-usb-a800 -dvb-usb-af9005 -dvb-usb-af9005-remote -dvb-usb-af9015 -dvb-usb-af9035 -dvb-usb-anysee -dvb-usb-au6610 -dvb-usb-az6007 -dvb-usb-az6027 -dvb-usb-ce6230 -dvb-usb-cinergyT2 -dvb-usb-cxusb -dvb-usb-dib0700 -dvb-usb-dibusb-common -dvb-usb-dibusb-mb -dvb-usb-dibusb-mc -dvb-usb-digitv -dvb-usb-dtt200u -dvb-usb-dtv5100 -dvb-usb-dvbsky -dvb-usb-dw2102 -dvb-usb-ec168 -dvb-usb-friio -dvb-usb-gl861 -dvb-usb-gp8psk -dvb-usb-lmedm04 -dvb-usb-m920x -dvb-usb-mxl111sf -dvb-usb-nova-t-usb2 -dvb-usb-opera -dvb-usb-pctv452e -dvb-usb-rtl28xxu -dvb-usb-technisat-usb2 -dvb-usb-ttusb2 -dvb-usb-umt-010 -dvb-usb-vp702x -dvb-usb-vp7045 -dvb_usb_v2 -dw_dmac -dw_dmac_core -dw_dmac_pci -dw_wdt -dwc3 -dwc3-pci -dwmac-generic -dyna_pci10xx -dynapro -e100 -e1000 -e1000e -e3x0-button -e4000 -e752x_edac -earth-pt1 -earth-pt3 -eata -ebt_802_3 -ebt_among -ebt_arp -ebt_arpreply -ebt_dnat -ebt_ip -ebt_ip6 -ebt_limit -ebt_log -ebt_mark -ebt_mark_m -ebt_nflog -ebt_pkttype -ebt_redirect -ebt_snat -ebt_stp -ebt_vlan -ebtable_broute -ebtable_filter -ebtable_nat -ebtables -ec100 -ec_bhf -ec_sys -echainiv -echo -edac_core -edac_mce_amd -edt-ft5x06 -eeepc-laptop -eeepc-wmi -eeprom -eeprom_93cx6 -eeprom_93xx46 -eeti_ts -efi-pstore -efi_test -efs -ehset -einj -elan_i2c -elo -elsa_cs -em28xx -em28xx-alsa -em28xx-dvb -em28xx-rc -em28xx-v4l -em_canid -em_cmp -em_ipset -em_meta -em_nbyte -em_text -em_u32 -emc1403 -emc2103 -emc6w201 -emi26 -emi62 -empeg -ems_pci -ems_pcmcia -ems_usb -emu10k1-gp -ena -enc28j60 -enclosure -encx24j600 -encx24j600-regmap -ene_ir -eni -enic -epat -epia -epic100 -eql -esas2r -esb2rom -esd_usb2 -esi-sir -esp4 -esp6 -esp_scsi -et1011c -et131x -ethoc -eurotechwdt -evbug -exofs -extcon-adc-jack -extcon-arizona -extcon-axp288 -extcon-gpio -extcon-max14577 -extcon-max77693 -extcon-max77843 -extcon-max8997 -extcon-palmas -extcon-rt8973a -extcon-sm5502 -extcon-usb-gpio -ezusb -f2fs -f71805f -f71808e_wdt -f71882fg -f75375s -f81232 -fakelb -fam15h_power -fan53555 -farsync -faulty -fb_agm1264k-fl -fb_bd663474 -fb_ddc -fb_hx8340bn -fb_hx8347d -fb_hx8353d -fb_hx8357d -fb_ili9163 -fb_ili9320 -fb_ili9325 -fb_ili9340 -fb_ili9341 -fb_ili9481 -fb_ili9486 -fb_pcd8544 -fb_ra8875 -fb_s6d02a1 -fb_s6d1121 -fb_ssd1289 -fb_ssd1306 -fb_ssd1331 -fb_ssd1351 -fb_st7735r -fb_st7789v -fb_sys_fops -fb_tinylcd -fb_tls8204 -fb_uc1611 -fb_uc1701 -fb_upd161704 -fb_watterott -fbtft -fbtft_device -fc0011 -fc0012 -fc0013 -fc2580 -fcoe -fcrypt -fdomain -fdomain_cs -fdp -fdp_i2c -fealnx -ff-memless -fintek-cir -firedtv -firestream -firewire-core -firewire-net -firewire-ohci -firewire-sbp2 -firewire-serial -fit2 -fit3 -fixed -fjes -fl512 -flexfb -floppy -fm10k -fm801-gp -fm_drv -fmc -fmc-chardev -fmc-fakedev -fmc-trivial -fmc-write-eeprom -fmvj18x_cs -fnic -forcedeth -fore_200e -fotg210-hcd -fotg210-udc -fou -fpga-mgr -freevxfs -friq -frpw -fsa9480 -fscache -fschmd -fsl_lpuart -ft6236 -ftdi-elan -ftdi_sio -ftl -fujitsu-laptop -fujitsu-tablet -fujitsu_ts -g450_pll -g760a -g762 -g_acm_ms -g_audio -g_cdc -g_dbgp -g_ether -g_ffs -g_hid -g_mass_storage -g_midi -g_ncm -g_nokia -g_printer -g_serial -g_webcam -g_zero -gadgetfs -gamecon -gameport -garmin_gps -garp -gcm -gdmtty -gdmulte -gdmwm -gdth -gen_probe -generic -generic-adc-battery -generic_bl -genet -geneve -gennvm -genwqe_card -gf128mul -gf2k -gfs2 -ghash-clmulni-intel -ghash-generic -gigaset -girbil-sir -gl518sm -gl520sm -gl620a -glue_helper -gluebi -gma500_gfx -go7007 -go7007-loader -go7007-usb -goku_udc -goodix -gp2ap002a00f -gp2ap020a00f -gpio -gpio-104-idio-16 -gpio-addr-flash -gpio-adp5520 -gpio-adp5588 -gpio-amd8111 -gpio-amdpt -gpio-arizona -gpio-beeper -gpio-charger -gpio-crystalcove -gpio-da9052 -gpio-da9055 -gpio-dln2 -gpio-dwapb -gpio-f7188x -gpio-fan -gpio-generic -gpio-ich -gpio-ir-recv -gpio-it87 -gpio-janz-ttl -gpio-kempld -gpio-lp3943 -gpio-max7300 -gpio-max7301 -gpio-max730x -gpio-max732x -gpio-mc33880 -gpio-mcp23s08 -gpio-ml-ioh -gpio-pca953x -gpio-pcf857x -gpio-rdc321x -gpio-regulator -gpio-sch -gpio-sch311x -gpio-tps65912 -gpio-twl4030 -gpio-twl6040 -gpio-ucb1400 -gpio-viperboard -gpio-vx855 -gpio-wm831x -gpio-wm8350 -gpio-wm8994 -gpio_backlight -gpio_keys -gpio_keys_polled -gpio_mouse -gpio_tilt_polled -gr_udc -grace -gre -grip -grip_mp -gs_fpga -gs_usb -gsc_hpdi -gspca_benq -gspca_conex -gspca_cpia1 -gspca_dtcs033 -gspca_etoms -gspca_finepix -gspca_gl860 -gspca_jeilinj -gspca_jl2005bcd -gspca_kinect -gspca_konica -gspca_m5602 -gspca_main -gspca_mars -gspca_mr97310a -gspca_nw80x -gspca_ov519 -gspca_ov534 -gspca_ov534_9 -gspca_pac207 -gspca_pac7302 -gspca_pac7311 -gspca_se401 -gspca_sn9c2028 -gspca_sn9c20x -gspca_sonixb -gspca_sonixj -gspca_spca1528 -gspca_spca500 -gspca_spca501 -gspca_spca505 -gspca_spca506 -gspca_spca508 -gspca_spca561 -gspca_sq905 -gspca_sq905c -gspca_sq930x -gspca_stk014 -gspca_stk1135 -gspca_stv0680 -gspca_stv06xx -gspca_sunplus -gspca_t613 -gspca_topro -gspca_touptek -gspca_tv8532 -gspca_vc032x -gspca_vicam -gspca_xirlink_cit -gspca_zc3xx -gtco -guillemot -gunze -gxt4500 -hackrf -hamachi -hampshire -hangcheck-timer -hanwang -hci -hci_uart -hci_vhci -hdaps -hdc100x -hdlc -hdlc_cisco -hdlc_fr -hdlc_ppp -hdlc_raw -hdlc_raw_eth -hdlc_x25 -hdlcdrv -hdm_dim2 -hdm_i2c -hdm_usb -hdpvr -he -hecubafb -hexium_gemini -hexium_orion -hfc4s8s_l1 -hfc_usb -hfcmulti -hfcpci -hfcsusb -hfi1 -hfs -hfsplus -hgafb -hi8435 -hid -hid-a4tech -hid-alps -hid-apple -hid-appleir -hid-aureal -hid-axff -hid-belkin -hid-betopff -hid-cherry -hid-chicony -hid-corsair -hid-cp2112 -hid-cypress -hid-dr -hid-elecom -hid-elo -hid-emsff -hid-ezkey -hid-gaff -hid-gembird -hid-generic -hid-gfrm -hid-gt683r -hid-gyration -hid-holtek-kbd -hid-holtek-mouse -hid-holtekff -hid-hyperv -hid-icade -hid-kensington -hid-keytouch -hid-kye -hid-lcpower -hid-lenovo -hid-logitech -hid-logitech-dj -hid-logitech-hidpp -hid-magicmouse -hid-microsoft -hid-monterey -hid-multitouch -hid-ntrig -hid-ortek -hid-penmount -hid-petalynx -hid-picolcd -hid-pl -hid-plantronics -hid-primax -hid-prodikeys -hid-rmi -hid-roccat -hid-roccat-arvo -hid-roccat-common -hid-roccat-isku -hid-roccat-kone -hid-roccat-koneplus -hid-roccat-konepure -hid-roccat-kovaplus -hid-roccat-lua -hid-roccat-pyra -hid-roccat-ryos -hid-roccat-savu -hid-saitek -hid-samsung -hid-sensor-accel-3d -hid-sensor-als -hid-sensor-custom -hid-sensor-gyro-3d -hid-sensor-hub -hid-sensor-iio-common -hid-sensor-incl-3d -hid-sensor-magn-3d -hid-sensor-press -hid-sensor-prox -hid-sensor-rotation -hid-sensor-trigger -hid-sjoy -hid-sony -hid-speedlink -hid-steelseries -hid-sunplus -hid-thingm -hid-tivo -hid-tmff -hid-topseed -hid-twinhan -hid-uclogic -hid-waltop -hid-wiimote -hid-xinmo -hid-zpff -hid-zydacron -hidp -hih6130 -hio -hisax -hisax_fcpcipnp -hisax_isac -hisax_st5481 -hisi504_nand -hmc5843_core -hmc5843_i2c -hmc5843_spi -hmc6352 -hopper -horizon -horus3a -hostap -hostap_cs -hostap_pci -hostap_plx -hp-wireless -hp-wmi -hp100 -hp_accel -hpfs -hpilo -hpsa -hptiop -hpwdt -hsi -hsi_char -hso -hsr -hsu_dma -htc-pasic3 -hts221 -hts221_i2c -hts221_spi -htu21 -huawei_cdc_ncm -hv_balloon -hv_netvsc -hv_network_direct -hv_storvsc -hv_utils -hv_vmbus -hwa-hc -hwa-rc -hwmon-vid -hwpoison-inject -hx8357 -hyperv-keyboard -hyperv_fb -hysdn -i1480-dfu-usb -i1480-est -i2400m -i2400m-usb -i2c-algo-bit -i2c-algo-pca -i2c-ali1535 -i2c-ali1563 -i2c-ali15x3 -i2c-amd756 -i2c-amd756-s4882 -i2c-amd8111 -i2c-cbus-gpio -i2c-cros-ec-tunnel -i2c-designware-core -i2c-designware-pci -i2c-designware-platform -i2c-diolan-u2c -i2c-dln2 -i2c-emev2 -i2c-gpio -i2c-hid -i2c-i801 -i2c-isch -i2c-ismt -i2c-kempld -i2c-matroxfb -i2c-mux -i2c-mux-gpio -i2c-mux-pca9541 -i2c-mux-pca954x -i2c-mux-pinctrl -i2c-mux-reg -i2c-nforce2 -i2c-nforce2-s4985 -i2c-ocores -i2c-parport -i2c-parport-light -i2c-pca-platform -i2c-piix4 -i2c-robotfuzz-osif -i2c-scmi -i2c-simtec -i2c-sis5595 -i2c-sis630 -i2c-sis96x -i2c-smbus -i2c-stub -i2c-taos-evm -i2c-tiny-usb -i2c-via -i2c-viapro -i2c-viperboard -i2c-xiic -i3000_edac -i3200_edac -i40e -i40evf -i5000_edac -i5100_edac -i5400_edac -i5500_temp -i5k_amb -i6300esb -i7300_edac -i7300_idle -i740fb -i7core_edac -i810 -i82092 -i82975x_edac -i915 -i915_bpo -iTCO_vendor_support -iTCO_wdt -ib700wdt -ib_addr -ib_cm -ib_core -ib_ipath -ib_ipoib -ib_iser -ib_isert -ib_mad -ib_mthca -ib_qib -ib_sa -ib_srp -ib_srpt -ib_ucm -ib_umad -ib_uverbs -ibm_rtl -ibmaem -ibmasm -ibmasr -ibmpex -ichxrom -icp_multi -icplus -ics932s401 -ideapad-laptop -ideapad_slidebar -idma64 -idmouse -idt77252 -idt_gen2 -idtcps -ie31200_edac -ie6xx_wdt -ieee802154 -ieee802154_6lowpan -ieee802154_socket -ifb -iforce -igb -igbvf -igorplugusb -iguanair -ii_pci20kc -iio-trig-interrupt -iio-trig-periodic-rtc -iio-trig-sysfs -iio_dummy -iio_hwmon -ila -ili210x -ili922x -ili9320 -imm -imon -ims-pcu -imx074 -ina209 -ina2xx -industrialio -industrialio-buffer-cb -industrialio-triggered-buffer -industrialio-triggered-event -inet_diag -inexio -inftl -initio -input-leds -input-polldev -int3400_thermal -int3402_thermal -int3403_thermal -int340x_thermal_zone -int51x1 -intel-hid -intel-lpss -intel-lpss-acpi -intel-lpss-pci -intel-rng -intel-rst -intel-smartconnect -intel-vbtn -intel_ips -intel_menlow -intel_oaktrail -intel_pch_thermal -intel_pmc_ipc -intel_powerclamp -intel_punit_ipc -intel_qat -intel_quark_i2c_gpio -intel_rapl -intel_soc_dts_iosf -intel_soc_dts_thermal -intel_telemetry_core -intel_telemetry_debugfs -intel_telemetry_pltdrv -intel_th -intel_th_gth -intel_th_msu -intel_th_pci -intel_th_pti -intel_th_sth -intel_vr_nor -intelfb -interact -interval_tree_test -inv-mpu6050 -io_edgeport -io_ti -ioatdma -ioc4 -iowarrior -ip6_gre -ip6_tables -ip6_tunnel -ip6_udp_tunnel -ip6_vti -ip6t_MASQUERADE -ip6t_NPT -ip6t_REJECT -ip6t_SYNPROXY -ip6t_ah -ip6t_eui64 -ip6t_frag -ip6t_hbh -ip6t_ipv6header -ip6t_mh -ip6t_rpfilter -ip6t_rt -ip6table_filter -ip6table_mangle -ip6table_nat -ip6table_raw -ip6table_security -ip_gre -ip_set -ip_set_bitmap_ip -ip_set_bitmap_ipmac -ip_set_bitmap_port -ip_set_hash_ip -ip_set_hash_ipmark -ip_set_hash_ipport -ip_set_hash_ipportip -ip_set_hash_ipportnet -ip_set_hash_mac -ip_set_hash_net -ip_set_hash_netiface -ip_set_hash_netnet -ip_set_hash_netport -ip_set_hash_netportnet -ip_set_list_set -ip_tables -ip_tunnel -ip_vs -ip_vs_dh -ip_vs_fo -ip_vs_ftp -ip_vs_lblc -ip_vs_lblcr -ip_vs_lc -ip_vs_nq -ip_vs_ovf -ip_vs_pe_sip -ip_vs_rr -ip_vs_sed -ip_vs_sh -ip_vs_wlc -ip_vs_wrr -ip_vti -ipack -ipaq -ipcomp -ipcomp6 -ipddp -iphase -ipheth -ipip -ipmi_devintf -ipmi_msghandler -ipmi_poweroff -ipmi_si -ipmi_ssif -ipmi_watchdog -ipoctal -ipr -ips -ipt_CLUSTERIP -ipt_ECN -ipt_MASQUERADE -ipt_REJECT -ipt_SYNPROXY -ipt_ah -ipt_rpfilter -iptable_filter -iptable_mangle -iptable_nat -iptable_raw -iptable_security -ipvlan -ipw -ipw2100 -ipw2200 -ipwireless -ipx -ir-hix5hd2 -ir-jvc-decoder -ir-kbd-i2c -ir-lirc-codec -ir-mce_kbd-decoder -ir-nec-decoder -ir-rc5-decoder -ir-rc6-decoder -ir-sanyo-decoder -ir-sharp-decoder -ir-sony-decoder -ir-usb -ir-xmp-decoder -ircomm -ircomm-tty -irda -irda-usb -irlan -irnet -irqbypass -irtty-sir -isci -iscsi_boot_sysfs -iscsi_ibft -iscsi_target_mod -iscsi_tcp -isdn -isdn_bsdcomp -isdnhdlc -isicom -isight_firmware -isl29003 -isl29018 -isl29020 -isl29028 -isl29125 -isl6271a-regulator -isl6405 -isl6421 -isl6423 -isl9305 -isofs -isp116x-hcd -isp1362-hcd -isp1704_charger -isp1760 -it87 -it8712f_wdt -it87_wdt -it913x -itd1000 -ite-cir -itg3200 -iuu_phoenix -ivtv -ivtv-alsa -ivtvfb -iw_c2 -iw_cm -iw_cxgb3 -iw_cxgb4 -iw_nes -iwl3945 -iwl4965 -iwldvm -iwlegacy -iwlmvm -iwlwifi -ix2505v -ixgb -ixgbe -ixgbevf -janz-cmodio -janz-ican3 -jc42 -jedec_probe -jffs2 -jfs -jitterentropy_rng -jmb38x_ms -jme -joydev -joydump -jr3_pci -jsa1212 -jsm -k10temp -k8temp -kafs -kalmia -kaweth -kb3886_bl -kbic -kbtab -kcomedilib -ke_counter -kempld-core -kempld_wdt -kernelcapi -keyspan -keyspan_pda -keyspan_remote -keywrap -kfifo_buf -khazad -kingsun-sir -kl5kusb105 -kmx61 -kobil_sct -ks0108 -ks0127 -ks8842 -ks8851 -ks8851_mll -ks959-sir -ksdazzle-sir -ksz884x -ktti -kvaser_pci -kvaser_usb -kvm -kvm-amd -kvm-intel -kxcjk-1013 -kxsd9 -kxtj9 -kyrofb -l1oip -l2tp_core -l2tp_debugfs -l2tp_eth -l2tp_ip -l2tp_ip6 -l2tp_netlink -l2tp_ppp -l440gx -l4f00242t03 -l64781 -lan78xx -lanai -lapb -lapbether -latch-addr-flash -lattice-ecp3-config -lcd -ld9040 -ldusb -lec -led-class-flash -leds-88pm860x -leds-adp5520 -leds-bd2802 -leds-blinkm -leds-clevo-mail -leds-da903x -leds-da9052 -leds-dac124s085 -leds-gpio -leds-lm3530 -leds-lm3533 -leds-lm355x -leds-lm3642 -leds-lp3944 -leds-lp5521 -leds-lp5523 -leds-lp5562 -leds-lp55xx-common -leds-lp8501 -leds-lp8788 -leds-lp8860 -leds-lt3593 -leds-max8997 -leds-mc13783 -leds-menf21bmc -leds-pca9532 -leds-pca955x -leds-pca963x -leds-pwm -leds-regulator -leds-ss4200 -leds-tca6507 -leds-tlc591xx -leds-wm831x-status -leds-wm8350 -ledtrig-backlight -ledtrig-camera -ledtrig-default-on -ledtrig-gpio -ledtrig-heartbeat -ledtrig-oneshot -ledtrig-timer -ledtrig-transient -legousbtower -lg-vl600 -lg2160 -lgdt3305 -lgdt3306a -lgdt330x -lgs8gxx -lib80211 -lib80211_crypt_ccmp -lib80211_crypt_tkip -lib80211_crypt_wep -libahci -libahci_platform -libceph -libcomposite -libcrc32c -libcxgbi -libertas -libertas_cs -libertas_sdio -libertas_spi -libertas_tf -libertas_tf_usb -libfc -libfcoe -libipw -libiscsi -libiscsi_tcp -libore -libosd -libsas -lightning -lineage-pem -linear -liquidio -lirc_bt829 -lirc_dev -lirc_imon -lirc_parallel -lirc_sasem -lirc_serial -lirc_sir -lirc_zilog -lis3l02dq -lis3lv02d -lis3lv02d_i2c -litelink-sir -lkkbd -llc -llc2 -lm25066 -lm3533-als -lm3533-core -lm3533-ctrlbank -lm3533_bl -lm3630a_bl -lm3639_bl -lm63 -lm70 -lm73 -lm75 -lm77 -lm78 -lm80 -lm83 -lm8323 -lm8333 -lm85 -lm87 -lm90 -lm92 -lm93 -lm95234 -lm95241 -lm95245 -lmc -lms283gf05 -lms501kf03 -lnbh25 -lnbp21 -lnbp22 -lockd -locktorture -lp -lp3943 -lp3971 -lp3972 -lp855x_bl -lp8727_charger -lp872x -lp8755 -lp8788-buck -lp8788-charger -lp8788-ldo -lp8788_adc -lp8788_bl -lpc_ich -lpc_sch -lpddr_cmds -lpfc -lru_cache -lrw -ltc2941-battery-gauge -ltc2945 -ltc2978 -ltc3589 -ltc4151 -ltc4215 -ltc4222 -ltc4245 -ltc4260 -ltc4261 -ltr501 -ltv350qv -lv5207lp -lvstest -lxt -lz4 -lz4_compress -lz4hc -lz4hc_compress -m25p80 -m2m-deinterlace -m52790 -m62332 -m88ds3103 -m88rs2000 -m88rs6000t -mISDN_core -mISDN_dsp -mISDNinfineon -mISDNipac -mISDNisar -m_can -ma600-sir -mac-celtic -mac-centeuro -mac-croatian -mac-cyrillic -mac-gaelic -mac-greek -mac-iceland -mac-inuit -mac-roman -mac-romanian -mac-turkish -mac80211 -mac80211_hwsim -mac802154 -mac_hid -macb -machzwd -macmodes -macvlan -macvtap -mag3110 -magellan -mailbox-altera -mantis -mantis_core -map_absent -map_funcs -map_ram -map_rom -marvell -matrix-keymap -matrix_keypad -matrox_w1 -matroxfb_DAC1064 -matroxfb_Ti3026 -matroxfb_accel -matroxfb_base -matroxfb_crtc2 -matroxfb_g450 -matroxfb_maven -matroxfb_misc -max1027 -max1111 -max11801_ts -max1363 -max14577 -max14577_charger -max1586 -max16064 -max16065 -max1619 -max1668 -max17040_battery -max17042_battery -max197 -max20751 -max2165 -max3100 -max31790 -max3421-hcd -max34440 -max517 -max63xx_wdt -max6639 -max6642 -max6650 -max6697 -max6875 -max7359_keypad -max77693 -max77693-haptic -max77693_charger -max8649 -max8660 -max8688 -max8903_charger -max8907 -max8907-regulator -max8925-regulator -max8925_bl -max8925_onkey -max8925_power -max8952 -max8973-regulator -max8997 -max8997_charger -max8997_haptic -max8998 -max8998_charger -mb862xxfb -mb86a16 -mb86a20s -mc13783-adc -mc13783-pwrbutton -mc13783-regulator -mc13783_ts -mc13892-regulator -mc13xxx-core -mc13xxx-i2c -mc13xxx-regulator-core -mc13xxx-spi -mc44s803 -mcb -mcb-pci -mce-inject -mce_amd_inj -mceusb -mcp2120-sir -mcp251x -mcp3021 -mcp320x -mcp3422 -mcp4531 -mcp4725 -mcp4922 -mcryptd -mcs5000_ts -mcs7780 -mcs7830 -mcs_touchkey -mct_u232 -md-cluster -md4 -mdc800 -mdio -mdio-bcm-unimac -mdio-bitbang -mdio-cavium -mdio-gpio -mdio-octeon -mdio-thunder -mdio-xgene -me4000 -me_daq -media -megaraid -megaraid_mbox -megaraid_mm -megaraid_sas -mei -mei-me -mei-txe -mei_phy -memory-notifier-error-inject -memstick -men_z135_uart -men_z188_adc -mena21_wdt -menf21bmc -menf21bmc_hwmon -menf21bmc_wdt -metro-usb -metronomefb -meye -mf6x4 -mga -mic_bus -mic_card -mic_cosm -mic_host -mic_x100_dma -michael_mic -micrel -microchip -microread -microread_i2c -microread_mei -microtek -mii -minix -mip6 -mite -mk712 -mkiss -mlx4_core -mlx4_en -mlx4_ib -mlx5_core -mlx5_ib -mlx90614 -mlxsw_core -mlxsw_pci -mma8450 -mma8452 -mma9551 -mma9551_core -mma9553 -mmc35240 -mmc_block -mmc_spi -mms114 -mn88472 -mn88473 -mos7720 -mos7840 -mostcore -moxa -mpc624 -mpl115 -mpl3115 -mpls_gso -mpls_iptunnel -mpls_router -mpoa -mpr121_touchkey -mpt3sas -mptbase -mptctl -mptfc -mptlan -mptsas -mptscsih -mptspi -mpu3050 -mrf24j40 -mrp -ms5611_core -ms5611_i2c -ms5611_spi -ms5637 -ms_block -ms_sensors_i2c -msdos -msi-laptop -msi-wmi -msi001 -msi2500 -msp3400 -mspro_block -msr -mt2060 -mt2063 -mt20xx -mt2131 -mt2266 -mt29f_spinand -mt312 -mt352 -mt6311-regulator -mt6397-core -mt6397-regulator -mt7601u -mt9m001 -mt9m111 -mt9t031 -mt9t112 -mt9v011 -mt9v022 -mtd -mtd_blkdevs -mtd_dataflash -mtdblock -mtdblock_ro -mtdoops -mtdram -mtdswap -mtip32xx -mtk-sd -mtouch -multipath -multiq3 -musb_hdrc -mv_u3d_core -mv_udc -mvmdio -mvsas -mvumi -mwave -mwifiex -mwifiex_pcie -mwifiex_sdio -mwifiex_usb -mwl8k -mxb -mxc4005 -mxl111sf-demod -mxl111sf-tuner -mxl301rf -mxl5005s -mxl5007t -mxm-wmi -mxser -mxuport -myri10ge -n411 -n_gsm -n_hdlc -n_r3964 -n_tracerouter -n_tracesink -nand -nand_bch -nand_ecc -nand_ids -nandsim -national -natsemi -nau7802 -navman -nb8800 -nbd -nci -nci_spi -nci_uart -ncpfs -nct6683 -nct6775 -nct7802 -nct7904 -nd_blk -nd_btt -nd_pmem -ne2k-pci -neofb -net1080 -net2272 -net2280 -netconsole -netjet -netlink_diag -netrom -nettel -netup-unidvb -netxen_nic -newtonkbd -nf_conntrack -nf_conntrack_amanda -nf_conntrack_broadcast -nf_conntrack_ftp -nf_conntrack_h323 -nf_conntrack_ipv4 -nf_conntrack_ipv6 -nf_conntrack_irc -nf_conntrack_netbios_ns -nf_conntrack_netlink -nf_conntrack_pptp -nf_conntrack_proto_dccp -nf_conntrack_proto_gre -nf_conntrack_proto_sctp -nf_conntrack_proto_udplite -nf_conntrack_sane -nf_conntrack_sip -nf_conntrack_snmp -nf_conntrack_tftp -nf_defrag_ipv4 -nf_defrag_ipv6 -nf_dup_ipv4 -nf_dup_ipv6 -nf_log_arp -nf_log_bridge -nf_log_common -nf_log_ipv4 -nf_log_ipv6 -nf_nat -nf_nat_amanda -nf_nat_ftp -nf_nat_h323 -nf_nat_ipv4 -nf_nat_ipv6 -nf_nat_irc -nf_nat_masquerade_ipv4 -nf_nat_masquerade_ipv6 -nf_nat_pptp -nf_nat_proto_dccp -nf_nat_proto_gre -nf_nat_proto_sctp -nf_nat_proto_udplite -nf_nat_redirect -nf_nat_sip -nf_nat_snmp_basic -nf_nat_tftp -nf_reject_ipv4 -nf_reject_ipv6 -nf_synproxy_core -nf_tables -nf_tables_arp -nf_tables_bridge -nf_tables_inet -nf_tables_ipv4 -nf_tables_ipv6 -nf_tables_netdev -nfc -nfc_digital -nfcmrvl -nfcmrvl_i2c -nfcmrvl_spi -nfcmrvl_uart -nfcmrvl_usb -nfcsim -nfcwilink -nfit -nfnetlink -nfnetlink_acct -nfnetlink_cthelper -nfnetlink_cttimeout -nfnetlink_log -nfnetlink_queue -nfs -nfs_acl -nfs_layout_flexfiles -nfs_layout_nfsv41_files -nfsd -nfsv2 -nfsv3 -nfsv4 -nft_chain_nat_ipv4 -nft_chain_nat_ipv6 -nft_chain_route_ipv4 -nft_chain_route_ipv6 -nft_compat -nft_counter -nft_ct -nft_dup_ipv4 -nft_dup_ipv6 -nft_exthdr -nft_hash -nft_limit -nft_log -nft_masq -nft_masq_ipv4 -nft_masq_ipv6 -nft_meta -nft_meta_bridge -nft_nat -nft_queue -nft_rbtree -nft_redir -nft_redir_ipv4 -nft_redir_ipv6 -nft_reject -nft_reject_bridge -nft_reject_inet -nft_reject_ipv4 -nft_reject_ipv6 -nftl -ngene -nhc_dest -nhc_fragment -nhc_hop -nhc_ipv6 -nhc_mobility -nhc_routing -nhc_udp -ni_6527 -ni_65xx -ni_660x -ni_670x -ni_at_a2150 -ni_at_ao -ni_atmio -ni_atmio16d -ni_daq_700 -ni_daq_dio24 -ni_labpc -ni_labpc_common -ni_labpc_cs -ni_labpc_isadma -ni_labpc_pci -ni_mio_cs -ni_pcidio -ni_pcimio -ni_tio -ni_tiocmd -ni_usb6501 -nicpf -nicstar -nicvf -nilfs2 -niu -nlmon -nls_ascii -nls_cp1250 -nls_cp1251 -nls_cp1255 -nls_cp737 -nls_cp775 -nls_cp850 -nls_cp852 -nls_cp855 -nls_cp857 -nls_cp860 -nls_cp861 -nls_cp862 -nls_cp863 -nls_cp864 -nls_cp865 -nls_cp866 -nls_cp869 -nls_cp874 -nls_cp932 -nls_cp936 -nls_cp949 -nls_cp950 -nls_euc-jp -nls_iso8859-13 -nls_iso8859-14 -nls_iso8859-15 -nls_iso8859-2 -nls_iso8859-3 -nls_iso8859-4 -nls_iso8859-5 -nls_iso8859-6 -nls_iso8859-7 -nls_iso8859-9 -nls_koi8-r -nls_koi8-ru -nls_koi8-u -nls_utf8 -nmclan_cs -nosy -notifier-error-inject -nouveau -nozomi -ns558 -ns83820 -nsc-ircc -ntb -ntb_hw_amd -ntb_hw_intel -ntb_netdev -ntb_pingpong -ntb_tool -ntb_transport -ntc_thermistor -ntfs -null_blk -nuvoton-cir -nv_tco -nvidiafb -nvme -nvmem_core -nvram -nxp-nci -nxp-nci_i2c -nxt200x -nxt6000 -objlayoutdriver -ocfb -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -ocrdma -of_xilinx_wdt -old_belkin-sir -omfs -omninet -on20 -on26 -onenand -opencores-kbd -openvswitch -oprofile -opt3001 -opticon -option -or51132 -or51211 -orinoco -orinoco_cs -orinoco_nortel -orinoco_plx -orinoco_tmd -orinoco_usb -osd -osdblk -osst -oti6858 -ov2640 -ov5642 -ov6650 -ov7640 -ov7670 -ov772x -ov9640 -ov9740 -overlay -oxu210hp-hcd -p4-clockmod -p54common -p54pci -p54spi -p54usb -p8022 -p8023 -pa12203001 -padlock-aes -padlock-sha -palmas-pwrbutton -palmas-regulator -panasonic-laptop -pandora_bl -panel -paride -parkbd -parport -parport_ax88796 -parport_cs -parport_pc -parport_serial -pata_acpi -pata_ali -pata_amd -pata_artop -pata_atiixp -pata_atp867x -pata_cmd640 -pata_cmd64x -pata_cypress -pata_efar -pata_hpt366 -pata_hpt37x -pata_hpt3x2n -pata_hpt3x3 -pata_it8213 -pata_it821x -pata_jmicron -pata_legacy -pata_marvell -pata_mpiix -pata_netcell -pata_ninja32 -pata_ns87410 -pata_ns87415 -pata_oldpiix -pata_opti -pata_optidma -pata_pcmcia -pata_pdc2027x -pata_pdc202xx_old -pata_piccolo -pata_platform -pata_radisys -pata_rdc -pata_rz1000 -pata_sch -pata_serverworks -pata_sil680 -pata_sl82c105 -pata_triflex -pata_via -pc300too -pc87360 -pc87413_wdt -pc87427 -pcap-regulator -pcap_keys -pcap_ts -pcbc -pcd -pcf50633 -pcf50633-adc -pcf50633-backlight -pcf50633-charger -pcf50633-gpio -pcf50633-input -pcf50633-regulator -pcf8574_keypad -pcf8591 -pch_udc -pci -pci-hyperv -pci-stub -pci200syn -pcips2 -pcl711 -pcl724 -pcl726 -pcl730 -pcl812 -pcl816 -pcl818 -pcm3724 -pcmad -pcmcia -pcmcia_core -pcmcia_rsrc -pcmciamtd -pcmda12 -pcmmio -pcmuio -pcnet32 -pcnet_cs -pcrypt -pcspkr -pcwd_pci -pcwd_usb -pd -pd6729 -pda_power -pdc_adma -peak_pci -peak_pcmcia -peak_usb -pegasus -penmount -percpu_test -pf -pfuze100-regulator -pg -phantom -phonet -phram -phy-bcm-kona-usb2 -phy-exynos-usb2 -phy-gpio-vbus-usb -phy-isp1301 -phy-pxa-28nm-hsic -phy-pxa-28nm-usb2 -phy-tahvo -phy-tusb1210 -physmap -pinctrl-broxton -pinctrl-intel -pinctrl-sunrisepoint -pixcir_i2c_ts -pkcs7_test_key -pktcdvd -pktgen -pl2303 -plat-ram -plat_nand -platform_lcd -plip -plusb -pluto2 -plx_pci -pm-notifier-error-inject -pm2fb -pm3fb -pm80xx -pm8941-wled -pmbus -pmbus_core -pmc551 -pmcraid -pn533 -pn544 -pn544_i2c -pn544_mei -pn_pep -poly1305-x86_64 -poly1305_generic -port100 -powermate -powr1220 -ppa -ppdev -ppp_async -ppp_deflate -ppp_mppe -ppp_synctty -pppoatm -pppoe -pppox -pps-gpio -pps-ldisc -pps_core -pps_parport -pptp -prism2_usb -processor_thermal_device -ps2mult -psmouse -psnap -pt -ptp -pulsedlight-lidar-lite-v2 -punit_atom_debug -pvpanic -pvrusb2 -pwc -pwm-beeper -pwm-lp3943 -pwm-lpss -pwm-lpss-pci -pwm-lpss-platform -pwm-pca9685 -pwm-regulator -pwm-twl -pwm-twl-led -pwm_bl -pxa27x_udc -qat_dh895xcc -qat_dh895xccvf -qcaux -qcom-spmi-iadc -qcom-spmi-vadc -qcom_spmi-regulator -qcserial -qed -qede -qinfo_probe -qla1280 -qla2xxx -qla3xxx -qla4xxx -qlcnic -qlge -qlogic_cs -qlogicfas408 -qm1d1c0042 -qmi_wwan -qnx4 -qnx6 -qsemi -qt1010 -qt1070 -qt2160 -quatech2 -quatech_daqp_cs -quota_tree -quota_v1 -quota_v2 -qxl -r128 -r592 -r6040 -r8152 -r8169 -r8188eu -r8192e_pci -r8192u_usb -r820t -r852 -r8712u -r8723au -r8a66597-hcd -r8a66597-udc -radeon -radeonfb -radio-bcm2048 -radio-i2c-si470x -radio-keene -radio-ma901 -radio-maxiradio -radio-mr800 -radio-platform-si4713 -radio-raremono -radio-shark -radio-si476x -radio-tea5764 -radio-usb-si470x -radio-usb-si4713 -radio-wl1273 -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid6test -raid_class -ramoops -raw -ray_cs -rbd -rbtree_test -rc-adstech-dvb-t-pci -rc-alink-dtu-m -rc-anysee -rc-apac-viewcomp -rc-asus-pc39 -rc-asus-ps3-100 -rc-ati-tv-wonder-hd-600 -rc-ati-x10 -rc-avermedia -rc-avermedia-a16d -rc-avermedia-cardbus -rc-avermedia-dvbt -rc-avermedia-m135a -rc-avermedia-m733a-rm-k6 -rc-avermedia-rm-ks -rc-avertv-303 -rc-azurewave-ad-tu700 -rc-behold -rc-behold-columbus -rc-budget-ci-old -rc-cinergy -rc-cinergy-1400 -rc-core -rc-delock-61959 -rc-dib0700-nec -rc-dib0700-rc5 -rc-digitalnow-tinytwin -rc-digittrade -rc-dm1105-nec -rc-dntv-live-dvb-t -rc-dntv-live-dvbt-pro -rc-dvbsky -rc-em-terratec -rc-encore-enltv -rc-encore-enltv-fm53 -rc-encore-enltv2 -rc-evga-indtube -rc-eztv -rc-flydvb -rc-flyvideo -rc-fusionhdtv-mce -rc-gadmei-rm008z -rc-genius-tvgo-a11mce -rc-gotview7135 -rc-hauppauge -rc-imon-mce -rc-imon-pad -rc-iodata-bctv7e -rc-it913x-v1 -rc-it913x-v2 -rc-kaiomy -rc-kworld-315u -rc-kworld-pc150u -rc-kworld-plus-tv-analog -rc-leadtek-y04g0051 -rc-lirc -rc-lme2510 -rc-loopback -rc-manli -rc-medion-x10 -rc-medion-x10-digitainer -rc-medion-x10-or2x -rc-msi-digivox-ii -rc-msi-digivox-iii -rc-msi-tvanywhere -rc-msi-tvanywhere-plus -rc-nebula -rc-nec-terratec-cinergy-xs -rc-norwood -rc-npgtech -rc-pctv-sedna -rc-pinnacle-color -rc-pinnacle-grey -rc-pinnacle-pctv-hd -rc-pixelview -rc-pixelview-002t -rc-pixelview-mk12 -rc-pixelview-new -rc-powercolor-real-angel -rc-proteus-2309 -rc-purpletv -rc-pv951 -rc-rc6-mce -rc-real-audio-220-32-keys -rc-reddo -rc-snapstream-firefly -rc-streamzap -rc-su3000 -rc-tbs-nec -rc-technisat-ts35 -rc-technisat-usb2 -rc-terratec-cinergy-c-pci -rc-terratec-cinergy-s2-hd -rc-terratec-cinergy-xs -rc-terratec-slim -rc-terratec-slim-2 -rc-tevii-nec -rc-tivo -rc-total-media-in-hand -rc-total-media-in-hand-02 -rc-trekstor -rc-tt-1500 -rc-twinhan-dtv-cab-ci -rc-twinhan1027 -rc-videomate-m1f -rc-videomate-s350 -rc-videomate-tv-pvr -rc-winfast -rc-winfast-usbii-deluxe -rc5t583-regulator -rdc321x-southbridge -rdma_cm -rdma_ucm -rds -rds_rdma -rds_tcp -realtek -redboot -redrat3 -reed_solomon -regmap-spmi -regulator-haptic -reiserfs -remoteproc -retu-mfd -retu-pwrbutton -retu_wdt -rfc1051 -rfc1201 -rfcomm -rfd_ftl -rfkill-gpio -rfkill-regulator -rio-scan -rio500 -rionet -rivafb -rj54n1cb0c -rmd128 -rmd160 -rmd256 -rmd320 -rn5t618 -rn5t618-regulator -rn5t618_wdt -rndis_host -rndis_wlan -rocket -rohm_bu21023 -romfs -rose -rotary_encoder -rp2 -rpcrdma -rpcsec_gss_krb5 -rpr0521 -rrpc -rsi_91x -rsi_sdio -rsi_usb -rsxx -rt2400pci -rt2500pci -rt2500usb -rt2800lib -rt2800mmio -rt2800pci -rt2800usb -rt2x00lib -rt2x00mmio -rt2x00pci -rt2x00usb -rt5033 -rt5033-regulator -rt5033_battery -rt61pci -rt73usb -rt9455_charger -rtc-88pm80x -rtc-88pm860x -rtc-ab-b5ze-s3 -rtc-ab3100 -rtc-abx80x -rtc-bq32k -rtc-bq4802 -rtc-da9052 -rtc-da9055 -rtc-da9063 -rtc-ds1286 -rtc-ds1305 -rtc-ds1307 -rtc-ds1343 -rtc-ds1347 -rtc-ds1374 -rtc-ds1390 -rtc-ds1511 -rtc-ds1553 -rtc-ds1672 -rtc-ds1685 -rtc-ds1742 -rtc-ds2404 -rtc-ds3232 -rtc-ds3234 -rtc-em3027 -rtc-fm3130 -rtc-hid-sensor-time -rtc-isl12022 -rtc-isl12057 -rtc-isl1208 -rtc-lp8788 -rtc-m41t80 -rtc-m41t93 -rtc-m41t94 -rtc-m48t35 -rtc-m48t59 -rtc-m48t86 -rtc-max6900 -rtc-max6902 -rtc-max8907 -rtc-max8925 -rtc-max8997 -rtc-max8998 -rtc-mc13xxx -rtc-mcp795 -rtc-msm6242 -rtc-mt6397 -rtc-palmas -rtc-pcap -rtc-pcf2123 -rtc-pcf2127 -rtc-pcf50633 -rtc-pcf85063 -rtc-pcf8523 -rtc-pcf8563 -rtc-pcf8583 -rtc-r9701 -rtc-rc5t583 -rtc-rp5c01 -rtc-rs5c348 -rtc-rs5c372 -rtc-rv3029c2 -rtc-rv8803 -rtc-rx4581 -rtc-rx8025 -rtc-rx8581 -rtc-s35390a -rtc-s5m -rtc-stk17ta8 -rtc-tps6586x -rtc-tps65910 -rtc-tps80031 -rtc-twl -rtc-v3020 -rtc-wm831x -rtc-wm8350 -rtc-x1205 -rtd520 -rti800 -rti802 -rtl2830 -rtl2832 -rtl2832_sdr -rtl8150 -rtl8187 -rtl8188ee -rtl818x_pci -rtl8192c-common -rtl8192ce -rtl8192cu -rtl8192de -rtl8192ee -rtl8192se -rtl8723-common -rtl8723ae -rtl8723be -rtl8821ae -rtl8xxxu -rtl_pci -rtl_usb -rtllib -rtllib_crypt_ccmp -rtllib_crypt_tkip -rtllib_crypt_wep -rtlwifi -rts5208 -rtsx_pci -rtsx_pci_ms -rtsx_pci_sdmmc -rtsx_usb -rtsx_usb_ms -rtsx_usb_sdmmc -rx51_battery -rxkad -s1d13xxxfb -s2250 -s2255drv -s2io -s2mpa01 -s2mps11 -s3fb -s3fwrn5 -s3fwrn5_i2c -s526 -s5h1409 -s5h1411 -s5h1420 -s5m8767 -s626 -s6e63m0 -s921 -saa6588 -saa6752hs -saa7110 -saa7115 -saa7127 -saa7134 -saa7134-alsa -saa7134-dvb -saa7134-empress -saa7134-go7007 -saa7146 -saa7146_vv -saa7164 -saa717x -saa7185 -saa7706h -safe_serial -salsa20-x86_64 -salsa20_generic -samsung-keypad -samsung-laptop -samsung-q10 -samsung-sxgbe -sata_inic162x -sata_mv -sata_nv -sata_promise -sata_qstor -sata_sil -sata_sil24 -sata_sis -sata_svw -sata_sx4 -sata_uli -sata_via -sata_vsc -savage -savagefb -sb1000 -sb_edac -sbc60xxwdt -sbc_epx_c3 -sbc_fitpc2_wdt -sbc_gxx -sbni -sbp_target -sbs -sbs-battery -sbshc -sc1200wdt -sc16is7xx -sc92031 -sca3000 -scb2_flash -sch311x_wdt -sch5627 -sch5636 -sch56xx-common -sch_atm -sch_cbq -sch_choke -sch_codel -sch_drr -sch_dsmark -sch_fq -sch_fq_codel -sch_gred -sch_hfsc -sch_hhf -sch_htb -sch_ingress -sch_mqprio -sch_multiq -sch_netem -sch_pie -sch_plug -sch_prio -sch_qfq -sch_red -sch_sfb -sch_sfq -sch_tbf -sch_teql -scif -scif_bus -scsi_debug -scsi_dh_alua -scsi_dh_emc -scsi_dh_hp_sw -scsi_dh_rdac -scsi_transport_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -scsi_transport_srp -sctp -sctp_probe -sdhci -sdhci-acpi -sdhci-pci -sdhci-pltfm -sdio_uart -sdricoh_cs -sedlbauer_cs -seed -sensorhub -seqiv -ser_gigaset -serial2002 -serial_cs -serio_raw -sermouse -serpent-avx-x86_64 -serpent-avx2 -serpent-sse2-x86_64 -serpent_generic -serport -ses -sfc -sh_veu -sha1-mb -sha1-ssse3 -sha256-ssse3 -sha512-ssse3 -shark2 -shpchp -sht15 -sht21 -shtc1 -si2157 -si2165 -si2168 -si21xx -si4713 -si476x-core -si7005 -si7020 -sidewinder -sierra -sierra_net -sil164 -sir-dev -sis -sis-agp -sis190 -sis5595 -sis900 -sisfb -sisusbvga -sit -sja1000 -sja1000_isa -sja1000_platform -skd -skfp -skge -skx_edac -sky2 -sky81452 -sky81452-backlight -sky81452-regulator -sl811-hcd -sl811_cs -slcan -slicoss -slip -slram -sm501 -sm501fb -sm712fb -sm750fb -sm_common -sm_ftl -smb347-charger -smc91c92_cs -smipcie -smm665 -smsc -smsc-ircc2 -smsc37b787_wdt -smsc47b397 -smsc47m1 -smsc47m192 -smsc75xx -smsc911x -smsc9420 -smsc95xx -smscufx -smsdvb -smsmdtv -smssdio -smsusb -snd -snd-ac97-codec -snd-ad1889 -snd-ak4113 -snd-ak4114 -snd-ak4117 -snd-ak4xxx-adda -snd-ali5451 -snd-aloop -snd-als300 -snd-als4000 -snd-asihpi -snd-atiixp -snd-atiixp-modem -snd-au8810 -snd-au8820 -snd-au8830 -snd-aw2 -snd-azt3328 -snd-bcd2000 -snd-bebob -snd-bt87x -snd-ca0106 -snd-cmipci -snd-compress -snd-cs4281 -snd-cs46xx -snd-cs8427 -snd-ctxfi -snd-darla20 -snd-darla24 -snd-dice -snd-dummy -snd-echo3g -snd-emu10k1 -snd-emu10k1-synth -snd-emu10k1x -snd-emux-synth -snd-ens1370 -snd-ens1371 -snd-es1938 -snd-es1968 -snd-firewire-digi00x -snd-firewire-lib -snd-firewire-tascam -snd-fireworks -snd-fm801 -snd-gina20 -snd-gina24 -snd-hda-codec -snd-hda-codec-analog -snd-hda-codec-ca0110 -snd-hda-codec-ca0132 -snd-hda-codec-cirrus -snd-hda-codec-cmedia -snd-hda-codec-conexant -snd-hda-codec-generic -snd-hda-codec-hdmi -snd-hda-codec-idt -snd-hda-codec-realtek -snd-hda-codec-si3054 -snd-hda-codec-via -snd-hda-core -snd-hda-ext-core -snd-hda-intel -snd-hdsp -snd-hdspm -snd-hrtimer -snd-hwdep -snd-i2c -snd-ice1712 -snd-ice1724 -snd-ice17xx-ak4xxx -snd-indigo -snd-indigodj -snd-indigodjx -snd-indigoio -snd-indigoiox -snd-intel-sst-acpi -snd-intel-sst-core -snd-intel8x0 -snd-intel8x0m -snd-isight -snd-korg1212 -snd-layla20 -snd-layla24 -snd-lola -snd-lx6464es -snd-maestro3 -snd-mia -snd-mixart -snd-mixer-oss -snd-mona -snd-mpu401 -snd-mpu401-uart -snd-mtpav -snd-mts64 -snd-nm256 -snd-opl3-lib -snd-opl3-synth -snd-oxfw -snd-oxygen -snd-oxygen-lib -snd-pcm -snd-pcm-dmaengine -snd-pcm-oss -snd-pcsp -snd-pcxhr -snd-pdaudiocf -snd-portman2x4 -snd-pt2258 -snd-rawmidi -snd-riptide -snd-rme32 -snd-rme96 -snd-rme9652 -snd-sb-common -snd-scs1x -snd-seq -snd-seq-device -snd-seq-dummy -snd-seq-midi -snd-seq-midi-emul -snd-seq-midi-event -snd-seq-virmidi -snd-serial-u16550 -snd-soc-ac97 -snd-soc-adau1701 -snd-soc-ak4104 -snd-soc-ak4554 -snd-soc-ak4613 -snd-soc-ak4642 -snd-soc-ak5386 -snd-soc-alc5623 -snd-soc-core -snd-soc-cs35l32 -snd-soc-cs4265 -snd-soc-cs4270 -snd-soc-cs4271 -snd-soc-cs4271-i2c -snd-soc-cs4271-spi -snd-soc-cs42l51 -snd-soc-cs42l51-i2c -snd-soc-cs42l52 -snd-soc-cs42l56 -snd-soc-cs42l73 -snd-soc-cs42xx8 -snd-soc-cs42xx8-i2c -snd-soc-cs4349 -snd-soc-dmic -snd-soc-es8328 -snd-soc-fsl-asrc -snd-soc-fsl-esai -snd-soc-fsl-sai -snd-soc-fsl-spdif -snd-soc-fsl-ssi -snd-soc-gtm601 -snd-soc-imx-audmux -snd-soc-max98090 -snd-soc-pcm1681 -snd-soc-pcm1792a-codec -snd-soc-pcm512x -snd-soc-pcm512x-i2c -snd-soc-pcm512x-spi -snd-soc-rl6231 -snd-soc-rl6347a -snd-soc-rt286 -snd-soc-rt5631 -snd-soc-rt5640 -snd-soc-rt5645 -snd-soc-rt5660 -snd-soc-rt5670 -snd-soc-sgtl5000 -snd-soc-si476x -snd-soc-sigmadsp -snd-soc-sigmadsp-i2c -snd-soc-simple-card -snd-soc-skl -snd-soc-skl-ipc -snd-soc-skl_rt286 -snd-soc-spdif-rx -snd-soc-spdif-tx -snd-soc-ssm2602 -snd-soc-ssm2602-i2c -snd-soc-ssm2602-spi -snd-soc-ssm4567 -snd-soc-sst-acpi -snd-soc-sst-baytrail-pcm -snd-soc-sst-broadwell -snd-soc-sst-byt-max98090-mach -snd-soc-sst-byt-rt5640-mach -snd-soc-sst-bytcr-rt5640 -snd-soc-sst-bytcr-rt5660 -snd-soc-sst-cht-bsw-max98090_ti -snd-soc-sst-cht-bsw-rt5645 -snd-soc-sst-cht-bsw-rt5672 -snd-soc-sst-dsp -snd-soc-sst-haswell -snd-soc-sst-haswell-pcm -snd-soc-sst-ipc -snd-soc-sst-mfld-platform -snd-soc-sta32x -snd-soc-sta350 -snd-soc-sti-sas -snd-soc-tas2552 -snd-soc-tas5086 -snd-soc-tas571x -snd-soc-tfa9879 -snd-soc-tlv320aic23 -snd-soc-tlv320aic23-i2c -snd-soc-tlv320aic23-spi -snd-soc-tlv320aic31xx -snd-soc-tlv320aic3x -snd-soc-tpa6130a2 -snd-soc-ts3a227e -snd-soc-wm8510 -snd-soc-wm8523 -snd-soc-wm8580 -snd-soc-wm8711 -snd-soc-wm8728 -snd-soc-wm8731 -snd-soc-wm8737 -snd-soc-wm8741 -snd-soc-wm8750 -snd-soc-wm8753 -snd-soc-wm8770 -snd-soc-wm8776 -snd-soc-wm8804 -snd-soc-wm8804-i2c -snd-soc-wm8804-spi -snd-soc-wm8903 -snd-soc-wm8962 -snd-soc-wm8978 -snd-soc-xtfpga-i2s -snd-sonicvibes -snd-timer -snd-trident -snd-ua101 -snd-usb-6fire -snd-usb-audio -snd-usb-caiaq -snd-usb-hiface -snd-usb-line6 -snd-usb-pod -snd-usb-podhd -snd-usb-toneport -snd-usb-us122l -snd-usb-usx2y -snd-usb-variax -snd-usbmidi-lib -snd-util-mem -snd-via82xx -snd-via82xx-modem -snd-virmidi -snd-virtuoso -snd-vx-lib -snd-vx222 -snd-vxpocket -snd-ymfpci -snic -soc_button_array -soc_camera -soc_camera_platform -soc_mediabus -softdog -softing -softing_cs -solo6x10 -solos-pci -sony-btf-mpx -sony-laptop -soundcore -sp2 -sp5100_tco -sp8870 -sp887x -spaceball -spaceorb -sparse-keymap -spcp8x5 -speakup -speakup_acntsa -speakup_apollo -speakup_audptr -speakup_bns -speakup_decext -speakup_dectlk -speakup_dummy -speakup_ltlk -speakup_soft -speakup_spkout -speakup_txprt -spectrum_cs -speedfax -speedstep-lib -speedtch -spi-altera -spi-bitbang -spi-butterfly -spi-cadence -spi-dln2 -spi-dw -spi-dw-midpci -spi-dw-mmio -spi-gpio -spi-lm70llp -spi-nor -spi-oc-tiny -spi-pxa2xx-pci -spi-pxa2xx-platform -spi-sc18is602 -spi-tle62x0 -spi-xcomm -spi-zynqmp-gqspi -spi_ks8995 -spidev -spl -splat -spmi -sr9700 -sr9800 -ssb -ssb-hcd -ssfdc -ssp_accel_sensor -ssp_gyro_sensor -ssp_iio -sst25l -sstfb -ssu100 -st -st-nci -st-nci_i2c -st-nci_spi -st1232 -st21nfca_hci -st21nfca_i2c -st_accel -st_accel_i2c -st_accel_spi -st_drv -st_gyro -st_gyro_i2c -st_gyro_spi -st_magn -st_magn_i2c -st_magn_spi -st_pressure -st_pressure_i2c -st_pressure_spi -st_sensors -st_sensors_i2c -st_sensors_spi -starfire -stb0899 -stb6000 -stb6100 -ste10Xp -ste_modem_rproc -stex -stinger -stir4200 -stk1160 -stk3310 -stk8312 -stk8ba50 -stkwebcam -stm_console -stm_core -stmmac -stmmac-platform -stowaway -stp -streamzap -stv0288 -stv0297 -stv0299 -stv0367 -stv0900 -stv090x -stv6110 -stv6110x -sun4i-codec -sundance -sungem -sungem_phy -sunhme -suni -sunkbd -sunrpc -sur40 -surfacepro3_button -svgalib -sx8 -sx8654 -sx9500 -sym53c500_cs -sym53c8xx -symbolserial -synaptics_i2c -synaptics_i2c_rmi4 -synaptics_usb -synclink -synclink_cs -synclink_gt -synclinkmp -syscopyarea -sysfillrect -sysimgblt -sysv -t1pci -t5403 -target_core_file -target_core_iblock -target_core_mod -target_core_pscsi -target_core_user -tc74 -tc90522 -tca6416-keypad -tca8418_keypad -tcm_fc -tcm_loop -tcm_qla2xxx -tcm_usb_gadget -tcp_bic -tcp_cdg -tcp_dctcp -tcp_diag -tcp_highspeed -tcp_htcp -tcp_hybla -tcp_illinois -tcp_lp -tcp_probe -tcp_scalable -tcp_vegas -tcp_veno -tcp_westwood -tcp_yeah -tcrypt -tcs3414 -tcs3472 -tda10021 -tda10023 -tda10048 -tda1004x -tda10071 -tda10086 -tda18212 -tda18218 -tda18271 -tda18271c2dd -tda665x -tda7432 -tda8083 -tda8261 -tda826x -tda827x -tda8290 -tda9840 -tda9887 -tda998x -tdfx -tdfxfb -tdo24m -tea -tea575x -tea5761 -tea5767 -tea6415c -tea6420 -team -team_mode_activebackup -team_mode_broadcast -team_mode_loadbalance -team_mode_random -team_mode_roundrobin -tef6862 -tehuti -tekram-sir -teles_cs -teranetics -test-hexdump -test-kstrtox -test-string_helpers -test_bpf -test_firmware -test_module -test_power -test_printf -test_static_key_base -test_static_keys -test_udelay -test_user_copy -tg3 -tgr192 -thinkpad_acpi -thmc50 -thunder_bgx -thunderbolt -ti-adc081c -ti-adc128s052 -ti_am335x_adc -ti_am335x_tsc -ti_am335x_tscadc -ti_dac7512 -ti_usb_3410_5052 -tifm_7xx1 -tifm_core -tifm_ms -tifm_sd -timeriomem-rng -tipc -tlan -tlclk -tm6000 -tm6000-alsa -tm6000-dvb -tmdc -tmem -tmp006 -tmp102 -tmp103 -tmp401 -tmp421 -toim3232-sir -topstar-laptop -torture -toshiba-wmi -toshiba_acpi -toshiba_bluetooth -toshiba_haps -toshsd -touchit213 -touchright -touchwin -tpci200 -tpm-rng -tpm_atmel -tpm_crb -tpm_i2c_atmel -tpm_i2c_infineon -tpm_i2c_nuvoton -tpm_infineon -tpm_nsc -tpm_st33zp24 -tpm_st33zp24_i2c -tpm_st33zp24_spi -tps40422 -tps51632-regulator -tps6105x -tps6105x-regulator -tps62360-regulator -tps65010 -tps65023-regulator -tps6507x -tps6507x-regulator -tps6507x-ts -tps65090-charger -tps65090-regulator -tps65217_bl -tps65217_charger -tps65218 -tps65218-pwrbutton -tps6524x-regulator -tps6586x-regulator -tps65910-regulator -tps65912-regulator -tps80031-regulator -trancevibrator -trf7970a -tridentfb -ts2020 -ts_bm -ts_fsm -ts_kmp -tsc2004 -tsc2005 -tsc2007 -tsc200x-core -tsc40 -tsi568 -tsi57x -tsi721_mport -tsl2550 -tsl2563 -tsl2583 -tsl2x7x_core -tsl4531 -tsys01 -tsys02d -ttm -ttpci-eeprom -ttusb_dec -ttusbdecfe -ttusbir -tua6100 -tua9001 -tulip -tuner -tuner-simple -tuner-types -tuner-xc2028 -tunnel4 -tunnel6 -turbografx -tvaudio -tveeprom -tvp5150 -tw2804 -tw68 -tw9903 -tw9906 -tw9910 -twidjoy -twl-regulator -twl4030-madc -twl4030-madc-hwmon -twl4030-pwrbutton -twl4030-vibra -twl4030_charger -twl4030_keypad -twl4030_madc_battery -twl4030_wdt -twl6030-gpadc -twl6040-vibra -twofish-avx-x86_64 -twofish-x86_64 -twofish-x86_64-3way -twofish_common -twofish_generic -typhoon -u132-hcd -uPD98402 -u_ether -u_serial -uartlite -uas -ubi -ubifs -ucb1400_core -ucb1400_ts -ucd9000 -ucd9200 -uda1342 -udc-core -udf -udl -udlfb -udp_diag -udp_tunnel -ueagle-atm -ufs -ufshcd -ufshcd-pci -ufshcd-pltfrm -uhid -uio -uio_aec -uio_cif -uio_dmem_genirq -uio_mf624 -uio_netx -uio_pci_generic -uio_pdrv_genirq -uio_pruss -uio_sercos3 -uli526x -ulpi -umc -umem -ums-alauda -ums-cypress -ums-datafab -ums-eneub6250 -ums-freecom -ums-isd200 -ums-jumpshot -ums-karma -ums-onetouch -ums-realtek -ums-sddr09 -ums-sddr55 -ums-usbat -unix_diag -upd64031a -upd64083 -us5182d -usb-serial-simple -usb-storage -usb3503 -usb8xxx -usb_8dev -usb_debug -usb_f_acm -usb_f_ecm -usb_f_ecm_subset -usb_f_eem -usb_f_fs -usb_f_hid -usb_f_mass_storage -usb_f_midi -usb_f_ncm -usb_f_obex -usb_f_phonet -usb_f_printer -usb_f_rndis -usb_f_serial -usb_f_ss_lb -usb_f_uac1 -usb_f_uac2 -usb_f_uvc -usb_gigaset -usb_wwan -usbatm -usbdux -usbduxfast -usbduxsigma -usbhid -usbip-core -usbip-host -usbkbd -usblcd -usbled -usblp -usbmon -usbmouse -usbnet -usbserial -usbsevseg -usbtest -usbtmc -usbtouchscreen -usbtv -usbvision -usdhi6rol0 -userio -userspace-consumer -ushc -usnic_verbs -uss720 -uvcvideo -uvesafb -uwb -v4l2-common -v4l2-dv-timings -v4l2-flash-led-class -v4l2-mem2mem -vboxguest -vboxsf -vboxvideo -vcan -vcnl4000 -ven_rsi_91x -ven_rsi_sdio -ven_rsi_usb -ves1820 -ves1x93 -veth -vfio -vfio-pci -vfio_iommu_type1 -vfio_virqfd -vga16fb -vgastate -vgem -vgg2432a4 -vhci-hcd -vhost -vhost_net -vhost_scsi -via -via-camera -via-cputemp -via-ircc -via-rhine -via-rng -via-sdmmc -via-velocity -via686a -via_wdt -viafb -video -videobuf-core -videobuf-dma-sg -videobuf-dvb -videobuf-vmalloc -videobuf2-core -videobuf2-dma-contig -videobuf2-dma-sg -videobuf2-dvb -videobuf2-memops -videobuf2-v4l2 -videobuf2-vmalloc -videocodec -videodev -vim2m -viperboard -viperboard_adc -virt-dma -virtio-gpu -virtio-rng -virtio_input -virtio_scsi -virtual -visor -visorbus -visorhba -visorinput -visornic -vitesse -vivid -vlsi_ir -vmac -vme_ca91cx42 -vme_pio2 -vme_tsi148 -vme_user -vme_vmivme7805 -vmk80xx -vmlfb -vmw_balloon -vmw_pvscsi -vmw_vmci -vmw_vsock_vmci_transport -vmwgfx -vmxnet3 -vp27smpx -vport-geneve -vport-gre -vport-vxlan -vpx3220 -vrf -vringh -vsock -vsxxxaa -vt1211 -vt6655_stage -vt6656_stage -vt8231 -vt8623fb -vub300 -vx855 -vxge -vxlan -vz89x -w1-gpio -w1_bq27000 -w1_ds2406 -w1_ds2408 -w1_ds2413 -w1_ds2423 -w1_ds2431 -w1_ds2433 -w1_ds2760 -w1_ds2780 -w1_ds2781 -w1_ds28e04 -w1_smem -w1_therm -w5100 -w5300 -w6692 -w83627ehf -w83627hf -w83627hf_wdt -w83781d -w83791d -w83792d -w83793 -w83795 -w83877f_wdt -w83977af_ir -w83977f_wdt -w83l785ts -w83l786ng -wacom -wacom_i2c -wacom_serial4 -wacom_w8001 -wafer5823wdt -walkera0701 -wanxl -warrior -wbsd -wcn36xx -wd719x -wdt87xx_i2c -wdt_pci -whc-rc -whci -whci-hcd -whiteheat -wil6210 -wimax -winbond-840 -winbond-cir -wire -wishbone-serial -wl1251 -wl1251_sdio -wl1251_spi -wl1273-core -wl12xx -wl18xx -wl3501_cs -wlcore -wlcore_sdio -wlcore_spi -wm831x-dcdc -wm831x-hwmon -wm831x-isink -wm831x-ldo -wm831x-on -wm831x-ts -wm831x_backup -wm831x_bl -wm831x_power -wm831x_wdt -wm8350-hwmon -wm8350-regulator -wm8350_power -wm8350_wdt -wm8400-regulator -wm8739 -wm8775 -wm8994-core -wm8994-irq -wm8994-regmap -wm8994-regulator -wm97xx-ts -wmi -wp512 -wusb-cbaf -wusb-wa -wusbcore -x25 -x25_asy -x38_edac -x86_pkg_temp_thermal -x_tables -xc4000 -xc5000 -xcbc -xen-blkback -xen-evtchn -xen-fbfront -xen-gntalloc -xen-gntdev -xen-kbdfront -xen-netback -xen-pciback -xen-pcifront -xen-privcmd -xen-scsiback -xen-scsifront -xen-tpmfront -xen_wdt -xenfs -xfrm4_mode_beet -xfrm4_mode_transport -xfrm4_mode_tunnel -xfrm4_tunnel -xfrm6_mode_beet -xfrm6_mode_ro -xfrm6_mode_transport -xfrm6_mode_tunnel -xfrm6_tunnel -xfrm_algo -xfrm_ipcomp -xfrm_user -xfs -xgifb -xhci-plat-hcd -xillybus_core -xillybus_pcie -xirc2ps_cs -xircom_cb -xor -xpad -xr_usb_serial_common -xsens_mt -xt_AUDIT -xt_CHECKSUM -xt_CLASSIFY -xt_CONNSECMARK -xt_CT -xt_DSCP -xt_HL -xt_HMARK -xt_IDLETIMER -xt_LED -xt_LOG -xt_NETMAP -xt_NFLOG -xt_NFQUEUE -xt_RATEEST -xt_REDIRECT -xt_SECMARK -xt_TCPMSS -xt_TCPOPTSTRIP -xt_TEE -xt_TPROXY -xt_TRACE -xt_addrtype -xt_bpf -xt_cgroup -xt_cluster -xt_comment -xt_connbytes -xt_connlabel -xt_connlimit -xt_connmark -xt_conntrack -xt_cpu -xt_dccp -xt_devgroup -xt_dscp -xt_ecn -xt_esp -xt_hashlimit -xt_helper -xt_hl -xt_ipcomp -xt_iprange -xt_ipvs -xt_l2tp -xt_length -xt_limit -xt_mac -xt_mark -xt_multiport -xt_nat -xt_nfacct -xt_osf -xt_owner -xt_physdev -xt_pkttype -xt_policy -xt_quota -xt_rateest -xt_realm -xt_recent -xt_sctp -xt_set -xt_socket -xt_state -xt_statistic -xt_string -xt_tcpmss -xt_tcpudp -xt_time -xt_u32 -xtkbd -xts -xusbatm -xz_dec_test -yam -yealink -yellowfin -yenta_socket -yurex -zatm -zaurus -zavl -zcommon -zd1201 -zd1211rw -zforce_ts -zfs -zhenhua -zl10036 -zl10039 -zl10353 -zl6100 -zlib -znvpair -zpios -zr36016 -zr36050 -zr36060 -zr36067 -zr364xx -zram -zunicode -zynq-fpga reverted: --- linux-raspi2-4.4.0/debian.master/abi/4.4.0-89.112/amd64/lowlatency +++ linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-89.112/amd64/lowlatency @@ -1,18881 +0,0 @@ -EXPORT_SYMBOL arch/x86/kvm/kvm 0xbdf84312 kvm_cpu_has_pending_timer -EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe -EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble -EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL crypto/mcryptd 0x73892a61 mcryptd_arm_flusher -EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/acpi/nfit 0xa7e9a159 to_nfit_uuid -EXPORT_SYMBOL drivers/acpi/video 0x6de7f7ff acpi_video_get_backlight_type -EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister -EXPORT_SYMBOL drivers/acpi/video 0x84e9971d acpi_video_get_edid -EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register -EXPORT_SYMBOL drivers/acpi/video 0xe92ca535 acpi_video_set_dmi_backlight_type -EXPORT_SYMBOL drivers/atm/suni 0x4eaf0d66 suni_init -EXPORT_SYMBOL drivers/atm/uPD98402 0xc9178c4b uPD98402_init -EXPORT_SYMBOL drivers/bcma/bcma 0x6c87f3ad bcma_core_dma_translation -EXPORT_SYMBOL drivers/bcma/bcma 0x96442878 bcma_core_irq -EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str -EXPORT_SYMBOL drivers/block/paride/paride 0x0783b756 pi_read_regr -EXPORT_SYMBOL drivers/block/paride/paride 0x1d6bdbdb pi_connect -EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x47315a02 pi_write_regr -EXPORT_SYMBOL drivers/block/paride/paride 0x7cf07600 pi_write_block -EXPORT_SYMBOL drivers/block/paride/paride 0x7f55359a pi_do_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x8c914659 pi_disconnect -EXPORT_SYMBOL drivers/block/paride/paride 0x94991cc3 pi_read_block -EXPORT_SYMBOL drivers/block/paride/paride 0x9979eb2d paride_register -EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -EXPORT_SYMBOL drivers/block/paride/paride 0xb5fecc43 pi_release -EXPORT_SYMBOL drivers/block/paride/paride 0xc2d5e5dd paride_unregister -EXPORT_SYMBOL drivers/block/paride/paride 0xcb420941 pi_init -EXPORT_SYMBOL drivers/block/paride/paride 0xf4759475 pi_schedule_claimed -EXPORT_SYMBOL drivers/bluetooth/btbcm 0x7c69b060 btbcm_patchram -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0dba4a55 ipmi_smi_watcher_register -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fae3bac ipmi_addr_src_to_str -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x28086c32 ipmi_smi_add_proc_entry -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x3d51551a ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x6fb2f8ac ipmi_register_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xca7b1d47 ipmi_get_smi_info -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg -EXPORT_SYMBOL drivers/char/nvram 0x0f28cb91 nvram_read_byte -EXPORT_SYMBOL drivers/char/nvram 0x17ff2c1d __nvram_read_byte -EXPORT_SYMBOL drivers/char/nvram 0x2adec1e0 __nvram_check_checksum -EXPORT_SYMBOL drivers/char/nvram 0x7da28f12 nvram_check_checksum -EXPORT_SYMBOL drivers/char/nvram 0x9ce3f83f nvram_write_byte -EXPORT_SYMBOL drivers/char/nvram 0xa8813189 __nvram_write_byte -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xc4da1673 st33zp24_remove -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xdef06526 st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xfe254ce6 st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xff9dba99 st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x27213799 xillybus_init_endpoint -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x767bff36 xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xd3c7d558 xillybus_endpoint_remove -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x065f5cd0 dw_dma_cyclic_start -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x1757631d dw_dma_cyclic_stop -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x5f402bf0 dw_dma_cyclic_prep -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x75035b47 dw_dma_cyclic_free -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xb768f15a dw_dma_get_dst_addr -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xd7c8f9bd dw_dma_get_src_addr -EXPORT_SYMBOL drivers/edac/edac_core 0xade7a4c6 edac_mc_find -EXPORT_SYMBOL drivers/firewire/firewire-core 0x01c66179 fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x04d0f641 fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0829794a fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0f7d6af8 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1b52f552 fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1bf8afe3 fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x22dabeca fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x25365de2 fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x36bb7580 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3dc672c0 fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4b7c66f3 fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x504b0ac3 fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0x645b715f fw_core_add_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x67f2500c fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6c9afc9b fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fa47fbf fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x87e010bc fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8c2bd7c1 fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0x97e38c1f fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbd40562e fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbf686bc3 fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc101ad14 fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc6473ff7 fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc8c1ffd6 fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd1cc24cb fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd20b6409 fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd4e86221 fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0xee8c73a7 fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xfbde452d fw_core_handle_request -EXPORT_SYMBOL drivers/firmware/dcdbas 0xa75079d6 dcdbas_smi_request -EXPORT_SYMBOL drivers/fmc/fmc 0x1c79cc49 fmc_device_register -EXPORT_SYMBOL drivers/fmc/fmc 0x1f2f7e2e fmc_device_unregister_n -EXPORT_SYMBOL drivers/fmc/fmc 0x32e90d0c fmc_driver_register -EXPORT_SYMBOL drivers/fmc/fmc 0x3fdbfbd2 fmc_device_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0x447794d3 fmc_find_sdb_device -EXPORT_SYMBOL drivers/fmc/fmc 0x64afc280 fmc_reprogram -EXPORT_SYMBOL drivers/fmc/fmc 0x73a9dfcb fmc_driver_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0x7a0963db fmc_device_register_n -EXPORT_SYMBOL drivers/fmc/fmc 0x9c85f9a9 fmc_scan_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0xd17c8c8b fmc_free_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0xf5c5e821 fmc_show_sdb_tree -EXPORT_SYMBOL drivers/gpu/drm/amd/amdkfd/amdkfd 0x7ebcbb6d kgd2kfd_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x00234655 drm_vblank_post_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x007232fa drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0274c826 drm_agp_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0494c0a3 drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04a225ab drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04dffab0 drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06d0f645 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08c2e645 drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a14f040 drm_modeset_legacy_acquire_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a5e291b drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bd9b003 drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c9f4477 drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0db69150 drm_property_unreference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0dd0a72e drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e3a12cc drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f57af2f drm_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7f4748 drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fcf0a0b drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd95da9 drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10b01f30 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10bf22c5 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12e272b3 drm_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1384c52c drm_atomic_clean_old_fb -EXPORT_SYMBOL drivers/gpu/drm/drm 0x13cef382 drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x140d8c86 drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x145d2b72 drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14d17fa4 drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15698611 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1696ab1a drm_mode_validate_basic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19401fd9 drm_vblank_no_hw_counter -EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19859e69 drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19c1b4b1 drm_mm_dump_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a993190 drm_mode_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b21d67f drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bb20b14 drm_bridge_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cf64256 drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d9424f8 drm_pci_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dbd5f88 drm_calc_vbltimestamp_from_scanoutpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dc02705 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e6cb1b8 drm_legacy_idlelock_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2004be3b drm_compat_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20b8b6f4 drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21074376 drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2242cbaa drm_legacy_rmmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26ea3697 drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x285fee48 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29845143 drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29fdcd1e drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b66470d drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c699cf6 drm_modeset_unlock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c889245 drm_get_pci_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d096dd7 drm_select_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e037672 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e933cbc drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30790edc drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30da44d9 drm_gem_dumb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30dc4043 drm_platform_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31281030 drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31369881 drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31a85dc5 drm_bridge_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32c72b23 drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32caa1e0 drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x338d72e2 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34471610 drm_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35a7d2bd drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35fdc25f drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x365bfb0e drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3671afa5 drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3744599b drm_unplug_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x387b0415 drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x39adf501 drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a9bbe69 drm_crtc_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ca10244 drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e4d4fcb drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ec24cac drm_mode_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x434e1258 drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x451621a2 drm_atomic_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x455ab802 drm_atomic_legacy_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x479b69ee drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48357173 drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x487b91dc drm_legacy_ioremap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a08ad7f drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b31b32f drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cc4fa86 drm_legacy_getsarea -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d1beaec drm_legacy_rmmap_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e2b476b drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e4941ae drm_irq_install -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x509af589 drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x513015ac drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5394498e drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55c4ab0b drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58799285 drm_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58b699ba drm_atomic_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58cae091 drm_crtc_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58e869ae drm_agp_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ae313c0 drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c90cf03 drm_prime_sg_to_page_addr_arrays -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ca68846 drm_modeset_backoff_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ce3a2f5 drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7318dc drm_global_item_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d81cdf9 drm_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f8aa78d drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x609a249a drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x61e65020 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66977b70 drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66c04bc2 drm_panel_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x690f628f drm_connector_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a7d2b6d drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e942a4a drm_bridge_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x709f7948 drm_modeset_lock_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x70ffd3e2 drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x762bb2f2 drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76758778 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76847dd5 drm_encoder_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76d2d74a drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78560244 drm_irq_uninstall -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7881f2ca drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7af2e600 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b76c301 drm_atomic_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c26d248 drm_agp_unbind -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c371143 drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d33fff6 drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ebadcad drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f5c0b07 drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80dd35b4 drm_ati_pcigart_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80fdcfa8 drm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81ec0564 drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x821961bc drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8279f8f6 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8357cd64 drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83a60b58 drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83e6d47e drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x851a8318 drm_mode_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8815b179 drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a4c6989 drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a75cfcf drm_pcie_get_speed_cap_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8adf0958 drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ae9768e drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bbd3991 drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c63cc7a drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c833bae drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ce9fa38 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cfe5e59 drm_agp_bind_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e29642d drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ea45787 drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ed8fcbc drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ee88f95 drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9011a44a drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90e66645 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90e95d12 drm_pci_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91507060 drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x920d64ce drm_vblank_pre_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9267c6cb drm_pci_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9327cb10 drm_atomic_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9372bcc8 drm_agp_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x976cba86 drm_framebuffer_unreference -EXPORT_SYMBOL drivers/gpu/drm/drm 0x97c9eb70 drm_legacy_addbufs_pci -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9840c76d drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9868be47 drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9869df9c drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9898e95b drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x997f485d drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a21d106 drm_mode_hsync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9baaed65 drm_pci_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dc2c44f drm_legacy_idlelock_take -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9eaafb6a drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ed8c63d drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f719ba2 drm_panel_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0f2c732 drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa46b6f70 drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6f56c3e drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa733c1de drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa84463e6 drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8ee0f19 drm_edid_to_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9381a85 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xabb88cb1 drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xacca57a7 drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad0e6d1a drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad433ab1 drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad58b92e drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0xadabcfd4 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf18e6f0 drm_legacy_ioremap_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb05f9d7d drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0bfff40 drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0c68c54 drm_framebuffer_reference -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1e41873 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb34de41f drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4cd7023 drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5540008 drm_global_item_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5635a0c drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb694840a drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8286339 drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8e42d64 drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb5d1ec1 drm_legacy_ioremapfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc8084e7 drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd1199f1 drm_pcie_get_max_link_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0c42792 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0cf62a8 drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc226065f drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc25e2a36 drm_pci_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5be2061 drm_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6027c7c drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc672b959 drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc71a2139 drm_agp_bind -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8171183 drm_bridge_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc87c7ea3 drm_bridge_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8e5f2bd drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9523621 drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9faf685 drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca452621 drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca8ab642 drm_mode_create_dirty_info_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca8c8c52 drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcad5d9bc drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb408935 drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb9a3834 drm_mode_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc8ef973 drm_dev_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf1984f2 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf830554 drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcff26ca7 drm_agp_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0ddc065 drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1841c4b drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1a40ecf drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2aa4ef7 drm_modeset_lock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2c7f77c drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2f3722f drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3014eae drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd36c5763 drm_mode_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5786663 drm_legacy_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5a5d376 drm_plane_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd613210c drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd61bc0a1 drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd68c3030 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd699a335 drm_agp_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6ae9eae drm_bridge_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd824f3b7 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8d50506 drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd949015f drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9ea5e99 drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb03164f drm_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb1cf109 drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc34fc3e drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc4c358c drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcd24a7b drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcdf8b0b drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde095fb8 drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde496b37 drm_connector_unplug_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf1382ec drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf4fba58 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfef89b2 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe00df4dc drm_agp_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1a8772b drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3876e86 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe39e3943 drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe408ab9b drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe522d4ba drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6e33782 drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe85d77b9 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9c3d33a drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9fffc20 drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea19f000 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea6d535a drm_legacy_addmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea8484f3 drm_legacy_addbufs_agp -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea944652 drm_vblank_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec3f87a1 drm_dev_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0xedf9f6b4 drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xee90e5c9 drm_property_reference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef3f2c9b drm_mode_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf273ca50 drm_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2744286 drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf46806a5 drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4d8e172 drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5204384 drm_ati_pcigart_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf69f763e drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf78b8a07 drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf81e44ba drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf84e1d20 drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8f16d56 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa5f6ce8 drm_platform_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb325563 drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbe79f64 drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbf34871 drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc93d713 drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcd0fb43 drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd410a08 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe439e01 drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x024aaafd drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x037e30f7 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x039bcddd drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06838d73 drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08e42634 drm_dp_aux_register_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a2f9821 drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0bb7b6a8 drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0dde3023 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fd0d7c4 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x145a7e1a drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b87e82e drm_plane_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ecbd716 drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20779977 drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20e8c8d1 __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x215c04b8 drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21ab47d3 drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x242f27d7 drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25152564 drm_atomic_helper_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x262fab64 drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2651bccd drm_atomic_helper_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26698029 drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27ad981c drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x287bdfb6 drm_fb_helper_unlink_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29f0aa0b drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c8547b5 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d0ecfe4 drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d66f0f8 drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e94522c drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f201b5a drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3005cbbc drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3410bfc0 drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3558d833 drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3580ffb5 drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36188b7c drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36222755 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36706e70 drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x379ef2d5 drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38e20fe0 drm_fb_helper_remove_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b816cc5 drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3cf5f7c0 drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4046bd8d drm_atomic_helper_legacy_gamma_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x412761fe drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x427d0f02 drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45df54fe drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45fa5860 drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46e823d4 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47b9f579 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c213a29 drm_atomic_helper_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d678897 drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f96f0a0 drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50fbc3ac drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x558bcbd4 drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x587a9e61 drm_dp_link_power_up -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58833414 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58b77eb2 drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59ce33eb drm_plane_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a6db060 drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e16cf9b drm_dp_link_power_down -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63ae8086 drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x645ad9fa drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648efad5 drm_dp_mst_port_has_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68fd67ad drm_kms_helper_poll_enable_locked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a0df3b7 drm_pick_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b3d6d0a drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70d79845 drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x721763de __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73932233 drm_helper_crtc_mode_set_base -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x761082bf drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x768302c7 drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7715c681 drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77769000 drm_plane_helper_check_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79e2b602 drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7afaf70d drm_dp_link_configure -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b0a101e drm_fb_helper_fill_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c5018db drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c70939c drm_fb_helper_release_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e0ff11f drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8021c829 drm_primary_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82341e66 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86090cec drm_dp_aux_unregister_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a6c4d05 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bfab8ce drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c066112 drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c4e3a24 drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c5f64e4 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ca80c4e drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f592509 drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f8b5945 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91315f54 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x917a4458 drm_helper_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94a8670b drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b88d761 drm_helper_crtc_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ba9f67a __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa00d6fbb drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0871b67 drm_fb_helper_single_add_all_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1f602f6 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa223ef48 drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa35a5823 drm_dp_link_probe -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7a4fefb drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9605dfe drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaafed295 drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae5078bc drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb00c622e drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1615dfe drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb411eb03 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4481e3b __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb63697ec drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbaa24464 drm_helper_probe_single_connector_modes_nomerge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbdea4960 __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0d09b3a drm_primary_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1eb7be9 drm_fb_helper_add_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc27c9017 drm_atomic_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc56905b0 drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7643ef2 drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8c92786 drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca5fafec drm_has_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce768b15 drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xceea23c3 drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2044431 drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2fa5157 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4049354 drm_fb_helper_fill_fix -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5f710df drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6a96093 drm_atomic_helper_framebuffer_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9702ee6 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc4c19b5 drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xddfe4140 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde3b9e0f drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe12fc71c drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1bdab94 drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe27b85b0 drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe28d3d69 drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe41f231a drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe49f81a4 drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedef770c drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeee3cc42 drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef19c457 drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf07e8cbc drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3ea3a1d drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf508210b drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf57148d8 drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfca4a860 drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff52136a drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x004481a3 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x02bb8205 ttm_agp_tt_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0b26b6a2 ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0bab7f47 ttm_read_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0d75ea40 ttm_bo_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0fe2e603 ttm_tt_set_placement_caching -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x153b5953 ttm_mem_io_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x173c1a2d ttm_bo_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x179365f4 ttm_mem_global_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1865ad44 ttm_agp_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1940e4cd ttm_write_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1d3834bd ttm_bo_synccpu_write_grab -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x22ec80fe ttm_vt_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x24765c33 ttm_read_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2783e11a ttm_page_alloc_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2d26bdc7 ttm_bo_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x321eb5f2 ttm_bo_swapout_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x33e436b2 ttm_bo_synccpu_write_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x352aad01 ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3a0f4295 ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x446e52ff ttm_bo_del_sub_from_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x498e4f30 ttm_pool_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4a801ad1 ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e8dd264 ttm_bo_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e8e3c41 ttm_prime_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x564e1aee ttm_bo_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x58c72383 ttm_bo_clean_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6052860c ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x66c45250 ttm_bo_move_ttm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a41de90 ttm_mem_io_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c577de5 ttm_bo_evict_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c8dc6bf ttm_vt_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6e875de9 ttm_lock_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x70792d99 ttm_mem_global_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x76818b13 ttm_bo_dma_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x78fe8ba4 ttm_mem_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7cbc0108 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x817d6bd8 ttm_pool_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x82e40a7e ttm_dma_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x836d8fd0 ttm_suspend_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x842850c4 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8457554f ttm_bo_add_to_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x869c1055 ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89872dee ttm_bo_mem_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x90322ecf ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x945a8242 ttm_bo_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x946d9ea3 ttm_write_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x986dc509 ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d0eb91 ttm_ref_object_add -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9ba2fc71 ttm_mem_io_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9ce03102 ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9fb7672c ttm_bo_init_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xad8621de ttm_object_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc4d4618d ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcc057751 ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf49f835 ttm_suspend_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf69adf8 ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcfde3725 ttm_tt_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd0c6ebab ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd0fed4c0 ttm_dma_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd50204d1 ttm_bo_manager_func -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd6e59e9f ttm_bo_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdb022cb6 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe051b9c6 ttm_agp_tt_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe914d22d ttm_mem_io_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf2d3ff95 ttm_bo_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf66d208c ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf70d413c ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfcf87428 ttm_fbdev_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xff896d7b ttm_mem_global_release -EXPORT_SYMBOL drivers/hv/hv_vmbus 0x430d7d8d vmbus_sendpacket_ctl -EXPORT_SYMBOL drivers/hv/hv_vmbus 0xe07af10e vmbus_sendpacket -EXPORT_SYMBOL drivers/hv/hv_vmbus 0xe1b9029c vmbus_recvpacket -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0e2a6864 sch56xx_read_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0f04edf7 sch56xx_watchdog_register -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0f5877d4 sch56xx_read_virtual_reg16 -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe5022f95 sch56xx_read_virtual_reg12 -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xed1d2a08 sch56xx_write_virtual_reg -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x04c9ea61 i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x6c660887 i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xa32506cf i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x3a8b1ba9 i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xa786036e i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x79ee1996 amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x09af3613 mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x118a9a60 mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x164e6878 mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1f3281f1 mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x2402a4fb mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x44e3b437 mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x65ba3c97 mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6a001654 mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6ca1d8b0 mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8b5cb126 mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9d748dde mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbb47df09 mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd08ff305 mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xdc3ea101 mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe63b84d6 mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe92eb140 mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x8ea1ac50 st_accel_common_probe -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xc4879298 st_accel_common_remove -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x72eca0e0 iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xa2718c7f iio_triggered_buffer_setup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x2cbab7bb iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x46cbb992 iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xb32492b5 devm_iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xe981f178 devm_iio_kfifo_free -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x31d94342 hid_sensor_write_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x3be639c0 hid_sensor_read_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x50fc480c hid_sensor_parse_common_attributes -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x8178e391 hid_sensor_read_poll_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x99b621ee hid_sensor_read_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xef244d47 hid_sensor_write_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x684afea5 hid_sensor_setup_trigger -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xab42ec37 hid_sensor_power_state -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xd9707d49 hid_sensor_pm_ops -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xf7f4bb4c hid_sensor_remove_trigger -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x00034a50 ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x06a83a25 ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x1a028a0a ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3e7ed264 ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x83d937cf ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xa55a605f ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb017be3a ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xee98a006 ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf5e2a8b3 ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x1a7737ea ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x528e7c24 ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x726fad1e ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x851449d8 ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xab04d7ea ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x22d20d77 ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x68542123 ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xae199e26 ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x14b44d9f st_sensors_check_device_support -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1995fedf st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1a6590b6 st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2db5ed49 st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3ea55180 st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3edb1204 st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5cf9fa29 st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x647007cd st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x67988f8e st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x862e1943 st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x90aa05db st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x99d53041 st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xaedec03f st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc8a6dabe st_sensors_get_buffer_element -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd103cf1d st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xdcb68dd4 st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf20c0253 st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x3f88207a st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xdfbac5ba st_sensors_match_acpi_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x47e900d4 st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x31a33438 st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xa334be48 st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x3ebdf275 hts221_probe -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x0f548ca8 adis_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x461ad225 adis_enable_irq -EXPORT_SYMBOL drivers/iio/industrialio 0x11bc8b96 iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0x1af6d22f iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x30403750 iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0x32e3c297 iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0x6aae931f iio_triggered_buffer_predisable -EXPORT_SYMBOL drivers/iio/industrialio 0x86216145 iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x955dc06c iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x9933e927 iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x99f06915 iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xa79d335d iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0xbb96aa66 iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0xbde6e6f6 iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xbfb9c3c2 iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0xd1e10ffb iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0xd8103250 iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xe7b3f76e iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xfbab8151 iio_triggered_buffer_postenable -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x78d92085 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xd6badf8d iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x49d2a003 st_magn_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xd5692700 st_magn_common_probe -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x829e2e91 ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x3602a893 st_press_common_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xc652a296 st_press_common_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x049ace30 rdma_addr_find_smac_by_sgid -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1edc4064 rdma_addr_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x9d9cabc5 rdma_addr_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xb25feef3 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xbfd235f5 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xd3a17c29 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xe689dac4 rdma_copy_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x012d42e2 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x17efcbf7 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1e9a6518 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2fb071b1 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x37727258 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3e2a20aa ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4bb92eee ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5831d5cc ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5926ecc2 ib_send_cm_lap -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x80d89482 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x95d6b5d7 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa39cf647 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa6ee3c0a ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd60e6159 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xde1e96d5 ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe5a439b9 ib_send_cm_apr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfb3137ff cm_class -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xff02fc60 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06a4af73 ib_create_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06d9b40b ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x089a4744 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08b4fd83 ib_alloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11ddc6e0 ib_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1366a539 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14e406e5 ib_resolve_eth_dmac -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15248a18 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b945b28 ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x272ee69c ib_create_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x283d28bd ib_find_cached_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f80dc28 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x324c8eaf ib_create_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x341d89be ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x352ec656 ib_query_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x376cb6d8 ib_dealloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37705ddc ib_destroy_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38c0bc60 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b247668 ib_destroy_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4482cf3e ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48d3031c ib_find_gid_by_filter -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x494be062 ib_modify_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a79601c ib_query_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50a4235f ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5428f230 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57bb0892 ib_alloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b09a34d ibnl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62f5e345 ib_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64001c9d ib_find_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67eea564 ib_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67f05e27 ibnl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68167f59 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a55cab5 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6be638a8 ib_dealloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d34c3ef ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d778219 ib_fmr_pool_unmap -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x728dc025 ib_init_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76684b54 ib_get_dma_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76f215d1 ib_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7878ce71 ib_umem_odp_map_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b5fded1 ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x821f4e3b ib_fmr_pool_map_phys -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85bfc8e3 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8dec0378 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9543c32b ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97962b1a ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9845c137 ib_destroy_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b8ad340 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9bb8aeda ib_destroy_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c0fed28 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9db6af32 ib_get_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa25a2886 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5170dda ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5884b3b ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa69c1878 ib_dereg_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa62e3ae ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0fc657 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab800e9d ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad10f283 ib_alloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf62e2b8 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0135332 ib_dealloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1d57f31 ib_dealloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4e9119d ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbda85508 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc27c1bfc ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc37888ed ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc394ec02 ib_umem_page_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6d88d91 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbc135e4 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xccb5fcdb ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xccb90947 ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce018865 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2b448b7 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd51b8473 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7b4fad9 ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9857068 ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdccde209 ibnl_add_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde91071f rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3451d6a ib_get_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe95d4929 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0463f57 ib_create_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1b8f42b ib_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2d4db7e ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x0bea1575 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x1775b891 ib_redirect_mad_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2eaa4bfc ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2ebf90f1 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x40fbfe4d ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x46c01532 ib_cancel_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x4abc0324 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x5b0bd8a9 ib_process_mad_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x752a4118 ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x94c878c4 ib_register_mad_snoop -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xb795b935 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xf33bce9d ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xf4601873 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x05f51c4a ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x1634e091 ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x1ca1edee ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x21ab01cf ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x287d1e73 ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x7abd05dc ib_sa_service_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x7d7bea1b ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xb93bedd8 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xce223475 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xd1a84f9b ib_init_ah_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf2b7d6c7 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x356493b1 ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc5cb9508 ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x083b6054 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x394c9b5a iwpm_mapping_error_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3a05ebe5 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3b429072 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x492e5846 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x538c624b iwpm_remote_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x539a15be iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5b61b613 iwpm_add_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x621b7d1c iwpm_register_pid_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x637b4c99 iwpm_add_and_query_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x93b296e1 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xaf468c27 iwpm_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb518c3c9 iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd22fc29e iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfeeb0c39 iwpm_ack_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x185c6dc1 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3a657745 rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3aac0617 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x42e87edb rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6895ee81 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x77f0e6d9 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x786d656c rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x914c0d96 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9c4c2b30 rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa63060be rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaa282e3b rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xae82f4f4 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb23abcad rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc84fe8dd rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc96628f5 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd529bcf2 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd54d16b0 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd99b5f06 rdma_set_ib_paths -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe67896f3 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf46c6559 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf82e26c3 rdma_create_id -EXPORT_SYMBOL drivers/input/gameport/gameport 0x000897c8 __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x35ef0125 gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0x43e6c102 gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x60ae102d gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x703e892d gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0x8994c663 gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0xa1a3df44 gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xab788250 __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xe5535c21 gameport_start_polling -EXPORT_SYMBOL drivers/input/input-polldev 0x16be01c3 input_register_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x98cfa1a7 input_unregister_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xb84db9fb input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xc6f2cb4f input_free_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xdfed86ae devm_input_allocate_polled_device -EXPORT_SYMBOL drivers/input/matrix-keymap 0x771b68f3 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x6bf70afc ad714x_disable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xc499405e ad714x_enable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xe8c92c31 ad714x_probe -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x6966a0fa cma3000_init -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/sparse-keymap 0x305c83ec sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0x55dadc0b sparse_keymap_setup -EXPORT_SYMBOL drivers/input/sparse-keymap 0x9b370cad sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xb66d5dbb sparse_keymap_free -EXPORT_SYMBOL drivers/input/sparse-keymap 0xb84b6ecb sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0xce353a72 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x03e933dd ad7879_pm_ops -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x82e235c3 ad7879_probe -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove -EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x01bd6363 amd_iommu_set_invalid_ppr_cb -EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x13409407 amd_iommu_bind_pasid -EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x47aef159 amd_iommu_set_invalidate_ctx_cb -EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x79fb9e7f amd_iommu_init_device -EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0xa856c6d4 amd_iommu_unbind_pasid -EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0xe4fa74c9 amd_iommu_free_device -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x181f95cd capi20_register -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x33aeb34b capi20_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x3a7660b8 capi_ctr_resume_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6288da2e capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7292ab34 cdebbuf_free -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x72a25a72 capi_cmsg2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x767d566f attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7c9ca364 capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa192ee40 detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa4e31e45 capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc931d160 capi20_put_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xdbec48c5 capi_ctr_suspend_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfd552f7a capi_message2str -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x084ad4a5 b1_parse_version -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0fd5aecc b1ctl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x196e5903 b1_alloc_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x1ef94391 b1_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2649f2b3 b1_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x39a432d3 b1_load_config -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x4c97daeb b1_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x4dbff420 b1_getrevision -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x60d6c8cb avmcard_dma_free -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x692e5a81 avmcard_dma_alloc -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x911af7aa b1_load_t4file -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xabbb8288 b1_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xce399608 b1_loaded -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf01827c0 b1_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf96fb09b b1_free_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x080cd1f7 b1dma_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x0d259ef8 t1pci_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x101398f1 b1dma_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x591ef9c3 b1dma_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x5b185e64 b1dmactl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x8964dd6a b1dma_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x8a45f2ac b1dma_reset -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x9db6aa50 b1dma_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x9ffbf991 b1pciv4_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0x29562993 b1pcmcia_delcard -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x7c8eaa51 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xdc4f270b mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xeb9db770 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xf71377e3 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xaa6473ed mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xe629d410 mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6fe1ca04 FsmDelTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9f987c85 FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xa1bc94b9 FsmInitTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfe250a2a hisax_init_pcmcia -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x1394aa86 isac_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x5b464794 isac_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xb76299ef isac_init -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xc6889d46 isacsx_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xd2884dd7 isacsx_irq -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x406a42db isdn_ppp_register_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x6576a7c4 isdn_ppp_unregister_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xa737d8c0 register_isdn -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0980a9d4 recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0999c245 dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2d521b81 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x327f5e97 mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3e0afa14 mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5e7e221b mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6807e9de get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6fa58861 mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x708ab99c mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7725260a mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa32081ad bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa6079374 recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xae0ebf1d recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xae95c570 mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb33e584e mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc7fb6871 queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc8d83158 create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xce5abfcd mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe23754b6 bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf197c960 get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf6bdd9a3 mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf74bfc02 recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf8554477 recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/md/bcache/bcache 0x14a6499c closure_wait -EXPORT_SYMBOL drivers/md/bcache/bcache 0x16ab69bc closure_sync -EXPORT_SYMBOL drivers/md/bcache/bcache 0x1f529ce8 bch_bset_build_written_tree -EXPORT_SYMBOL drivers/md/bcache/bcache 0x2971637d closure_sub -EXPORT_SYMBOL drivers/md/bcache/bcache 0x2d8d082e closure_put -EXPORT_SYMBOL drivers/md/bcache/bcache 0x440b4830 bch_btree_iter_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0x44a37d62 bch_btree_iter_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x5b59b856 bch_btree_insert_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7daccb73 bch_btree_keys_alloc -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7f2a56c0 bch_bset_sort_state_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x8833b0e8 bch_btree_keys_free -EXPORT_SYMBOL drivers/md/bcache/bcache 0x8f8fc624 bch_btree_sort_lazy -EXPORT_SYMBOL drivers/md/bcache/bcache 0xa3c5c702 bch_bset_fix_invalidated_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0xca5df778 __bch_bset_search -EXPORT_SYMBOL drivers/md/bcache/bcache 0xce47a6d9 bch_btree_keys_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0xd2813054 bch_bset_insert -EXPORT_SYMBOL drivers/md/bcache/bcache 0xd97c32a1 bch_btree_sort_partial -EXPORT_SYMBOL drivers/md/bcache/bcache 0xdf892351 bch_bkey_try_merge -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up -EXPORT_SYMBOL drivers/md/bcache/bcache 0xec6f33d0 bch_bset_init_next -EXPORT_SYMBOL drivers/md/dm-bufio 0x268682d2 dm_bufio_forget -EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers -EXPORT_SYMBOL drivers/md/dm-log 0x1f0f72aa dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0x4c701082 dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0x8f3da5b5 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0xd8ca5f46 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x28c63271 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x44176c0a dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x4d800514 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x6bfff7c8 dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0xcce0a4e9 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0xdb739396 dm_snap_cow -EXPORT_SYMBOL drivers/md/raid456 0x71f53ad2 raid5_set_cache_size -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x12326a29 flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x148cdb92 flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x34d7d6d4 flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x361bf4ef flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5b0a519f flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5e08f7d7 flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9b2d83d3 flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xac141b43 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc09cada4 flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc2a2694b flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd4f01724 flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xeb4a99ed flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfc68637b flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update -EXPORT_SYMBOL drivers/media/common/cx2341x 0x30cb4cd7 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0x57898ec7 cx2341x_handler_setup -EXPORT_SYMBOL drivers/media/common/cx2341x 0x881b436e cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cx2341x 0xa1e0aa2d cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0xf55d811a cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x962d02ce cypress_load_firmware -EXPORT_SYMBOL drivers/media/common/tveeprom 0x3562edf4 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/common/tveeprom 0xdee9631b tveeprom_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08c0ecf2 dvb_ringbuffer_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0d3c856a dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x12f5425e dvb_ringbuffer_flush -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x14fdf0ee dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x154d1de2 dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1956e610 dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1fa90fde dvb_dmx_swfilter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1fc52978 dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x223238e4 dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2d865ffc dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3405dbfc dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x371b2737 dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3fb35a0e dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x42f8f39c dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4cf3b0d9 dvb_ringbuffer_read_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x58b89462 dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6560e532 dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6ec415b6 dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7ff2dd0e dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x848e34e6 dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x86ae71f7 dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8bcbbafd dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb80e9f30 dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc557888c dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcb5f2284 dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcf8af57b dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd027fd7b dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd8988b7b dvb_ringbuffer_flush_spinlock_wakeup -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xda9425a2 dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdbf59ac0 dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xde5ccb50 dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe06ffb6a dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5014ff2 dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe8007341 dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xeaf47cb5 dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xef111097 dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf6c88e8d dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfa2ae6d3 dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x4424be7b af9013_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x3fb8989b ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xc88c0905 atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x1f5e9d4a au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x216f1081 au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2e55e924 au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5c791952 au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7322b028 au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x739de08c au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7f4f6cfb au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x832c3f73 au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe849c096 au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x0ee55fa6 au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x0ddaeec5 bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x8e3243ce cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xe191a10a cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x41ab8f12 cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x6d77e3c8 cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xe4716c5e cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xbdb2cb9b cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x0bffe5af cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x379db4c2 cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x50e7a9ef cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x87e1fc5c cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x274361c1 cxd2841er_attach_t -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xcd000b75 cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xdf52386d cxd2841er_attach_c -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x058f25a6 dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x27716447 dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x38289d21 dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x4cb517bf dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x6a72a9c6 dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0ca5294c dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x245bd049 dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3fe4f208 dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x457a5339 dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x46d62ff5 dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4fd22957 dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6a5cd2f2 dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x90acfb23 dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xabeffcb3 dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xafad8a25 dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xafedb600 dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc6455cf4 dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc68c25f6 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe1ea82fc dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe5af15b2 dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x03036e2f dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x0de303e2 dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x24178002 dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x578d0022 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x61b6a7b5 dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa0431796 dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xfc3ddf4c dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x5649ff83 dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x7d87400e dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x88b37026 dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xdb6b521c dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xe234431b dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x2ea5edec dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x1888189a dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x72fb5f82 dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x79c2f4cf dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x7ad32e6b dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc5076b4f dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x73630162 drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xd5e7cf25 drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xefe699e8 drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xdb512885 ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x0776f4be dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x0839b61e ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x072ab1e2 horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xac5d3f2f isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xd4878fb8 isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xaa5f3114 isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0xefbe2219 itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x3f759699 ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xa45deaff l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x6fc29d8a lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x3f056757 lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x726aeb37 lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xa88f3e59 lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x56ca9528 lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x4cdcc20f lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x965964e8 lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xcabb0259 lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x3a104eb4 lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x1d261d14 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x886af74c m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x058af6e5 m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xe232a3fa mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x58b73b48 mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x328a6eb4 mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x23fa6f4e mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x51288571 nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xfe0b78ff nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xeaf67544 or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x9cd4e248 or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xfc48f069 s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x86b21437 s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x4ba45943 s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xfc86a18f s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x470f5056 s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0x6e1b6d33 si2165_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x5ec6c3d5 si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0xe058eb4c sp8870_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xb3ed298d sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x80af7bad stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x9c598943 stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xfab1af4e stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x183de3a9 stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x4d83617c stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xe8d84de4 stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x81d87b58 stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x82814342 stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xe2f83cc9 stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xbae2119e stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x677fc8eb stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xa63f7a71 stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xa41171dd tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x2fead162 tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x248db6f3 tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x0091f56a tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x34845d02 tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xb195fc0a tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x04d32c22 tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xe3884392 tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xe0f27e81 tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x65fb253c tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xec1dcdab ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x57931482 tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x40012851 ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x594efbbf ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x5e7c6c82 zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x7b1e6e69 zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x117fcb78 zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x11ea5202 flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x17fb2954 flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x427de893 flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x59f54fda flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x7d55eb1d flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xcda14551 flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xfef08129 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x60577eff bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x672fb080 bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x8c5fd0af bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x9b096bc7 bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x2249cf1e bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x98605503 bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xb17903bd bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x034e054a read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x39a01e95 dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3ec6704f dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7d797d8b dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x92a402c5 dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9fb031b1 dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa3afd464 write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd85869ad rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe16d390d dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xa408ef5a dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x1b6d85df cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x21e895f7 cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x6a2e7011 cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xc913eef7 cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xff672fff cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x2fda5eab altera_ci_init -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x02bb422e cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x239e4e9c cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x3fbf3f48 cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7ac6f651 cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xacff3106 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xcde2a5cc cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd55cade1 cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x9f846802 vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xe712a70f vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x36028f45 cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x96e128bb cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x9f1609bd cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xba7c1667 cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x39243eb8 cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x464ee6c3 cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x49483b74 cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x614c7000 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x79850c95 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xbc8e4133 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xc3317207 cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x01f577c9 cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x208845f1 cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3651e27f cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3a89880a cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3bccba8d cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x453cd9ba cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x614ed728 cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x69824801 cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x71f54a02 cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x75e742af cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7d2b0e42 cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x83ebf4b6 cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x88b765e1 cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x93fb931c cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9c1895b8 cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9ed530aa cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa106091c cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb1532ab4 cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc214236d cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc2284005 cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x02c7ed2b ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1872d49f ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x204577d1 ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x367eff78 ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x454e7b88 ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x46f24a26 ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4bdf1b0b ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x64d80e9e ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x71fec3a0 ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x79d00653 ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7a52097f ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x841003cf ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x98393b10 ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa2954017 ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd9b16537 ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf81f49de ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf8aa3447 ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1785dfb3 saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2faf0e5a saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x59f24b15 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8f788889 saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8fc928b7 saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x98407dc7 saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb0360710 saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xba9d2529 saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc1de9678 saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd0ecb1e2 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd9fcf5c9 saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf7cf555f saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x4e9d81fb ttpci_eeprom_parse_mac -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x2b82f49e videocodec_attach -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x32c91481 videocodec_unregister -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xb9124a19 videocodec_detach -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xe426f223 videocodec_register -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x4aaedb04 soc_camera_xlate_by_fourcc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x615f27d5 soc_camera_host_register -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x65c94826 soc_camera_power_off -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x80358611 soc_camera_power_on -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xcbcf8fae soc_camera_host_unregister -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xd3641fd6 soc_camera_apply_board_flags -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xed5e66d2 soc_camera_power_init -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc -EXPORT_SYMBOL drivers/media/radio/tea575x 0x61342613 snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0x630fc062 snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x6f53b212 snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0x72055a13 snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0x980628e6 snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x9980e15d snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0xbfe379ca snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x05db0e12 lirc_dev_fop_write -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x0ddf1163 lirc_dev_fop_close -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x54fc2f8f lirc_dev_fop_open -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x67917483 lirc_dev_fop_read -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x7bc0b366 lirc_dev_fop_ioctl -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x866cdea1 lirc_dev_fop_poll -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x998f73e2 lirc_get_pdata -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xa0abaafb lirc_register_driver -EXPORT_SYMBOL drivers/media/rc/rc-core 0x669c6fc6 ir_raw_handler_register -EXPORT_SYMBOL drivers/media/rc/rc-core 0xedeaf0ac ir_raw_handler_unregister -EXPORT_SYMBOL drivers/media/tuners/fc0011 0x707dd28b fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0x5e6f504f fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x2e2ec7e2 fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x4f968906 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x79c51c2c fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/max2165 0xa630d865 max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x364531f4 mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0xb572c943 mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0x8d3a7e66 mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0x3096f549 mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xdc1b2040 mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0x4939f663 qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0xf65ad072 tda18218_attach -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0xea46a409 xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0xba084a19 xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0x54607b56 xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x29e4af72 cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xcfc39750 cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x29148026 dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x2fcac07f dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x63252a95 dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x78c3af17 dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7ce7c746 dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x99f81d63 dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x9dde8c6a dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xcf605932 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xe48c4511 dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1c0679f1 dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x4b402aa3 usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x8e7c91db dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc7dfc24c dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd375bc2a dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe16e5884 dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf62b4c51 dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x415bcdc6 af9005_rc_decode -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x07abbffc dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1190e81b dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x171dcb73 dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x43acd7bf dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x589722a0 dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x58ce1b57 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x90989665 dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd331d869 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf4297349 dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf4688eb6 dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfc5cbfcb dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x59bca758 em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xf8cd9739 em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x11050e1c go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x18714108 go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4c7572e4 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6909345d go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x970de8c3 go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa3af9070 go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb6cf8754 go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd834a907 go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe700a779 go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x1d9a37db gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2e98b5b4 gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x3e1034e5 gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5343b45d gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa8a438f3 gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xaa91f1ef gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd4f77f1f gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf7721a1d gspca_suspend -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x24995aa6 tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x82a539f0 tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xc52d96b9 tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x87633c12 ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xaca43dd8 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xa7a9d06d v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xd20b7786 v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xe0bfb405 v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x0eee4ced videobuf_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x3a26f862 videobuf_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x85a40a8a videobuf_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xbe12fe31 videobuf_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xc3b3058b videobuf_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xf57d728b videobuf_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xa292f900 vb2_verify_memory_type -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xec0fddbd vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x056589a5 vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x099a9e25 vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x4773d9c9 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x9304435d vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xb9f847a3 vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xf58c5388 vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0xf18389c1 vb2_querybuf -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x04fc5c38 v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0a5f71a5 v4l2_subdev_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0f7ebae5 v4l2_subdev_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1171b473 v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x121d2d06 v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x14a441d0 v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x150d4367 v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x15a19d87 v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1a4fce3a v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1c1844b1 video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x277f5134 v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2865484c v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x305a7d76 v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x353d3a14 v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x39629c49 v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3a74a633 v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3dc81dcb v4l2_ctrl_add_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x472cefe7 v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4be801c1 v4l2_clk_put -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4e812331 v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x52a6a256 v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x565203ae video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5b4123c1 v4l2_subdev_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5cd70714 v4l2_subdev_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x610871d8 v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6f4a5006 v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x73eb561d v4l2_clk_disable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x78150af7 v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7ba37e5a v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7d08723d v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7d9add29 v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x82a92488 v4l2_subdev_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x86410dbf v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8dfd4f90 v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x927f9a9d v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x94a49040 __v4l2_clk_register_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x98aba7f2 v4l2_clk_get_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa2a3923a v4l2_clk_enable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xac2744f5 __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xad52d0be __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb6220ad6 v4l2_clk_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbf13b2cd v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc03e2279 v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc474456e v4l2_clk_set_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc577d11e v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcaa4b542 __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcd750c0b v4l2_subdev_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd1479c19 v4l2_clk_unregister_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd42b5b91 v4l2_clk_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd6a2ffdf video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd815fc8e v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xda45d384 v4l2_clk_get -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe1e85b6d v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe222d162 video_usercopy -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe5f739be v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeba287bf video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xed0c007f v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf0edfc98 v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf1a92016 v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf373b022 v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf400687f v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf67354b0 v4l2_subdev_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf7dfd310 video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf9d104ba video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfb0fdb8c v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfcca03ee __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfe75fa2c v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xffd7a539 __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/memstick/core/memstick 0x01b685da memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0x06f6ab0f memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x49214e20 memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0x57348d48 memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x6d80deb6 memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x6f0f9b94 memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x8d47feaa memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x97376b6e memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x9aee8684 memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xb9c422ea memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc07e67e memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xeb3c94b5 memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xede597fe memstick_register_driver -EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x034bd565 mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x09a6c9fc mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x09ea560b mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0ed6eb11 mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1ca181f5 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1e0fdd05 mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2601fa78 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x33c65096 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3d2e891a mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4efc17d6 mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x511d771b mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x55d6bc68 mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x63a4fd10 mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7197e5a7 mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7ac8039d mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9497db30 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9b098a5b mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb5085501 mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xba2ff326 mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd2c23315 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd6477e8d mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe07c4fe0 mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe109b9d5 mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xec7a11fa mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf37d8f78 mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf6d71596 mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf7f04509 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf98b2485 mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfb020bd0 mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x13fcd6ea mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1aa3bc5c mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1dc485fe mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2304908b mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2b19bfbf mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3618e76c mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x37944503 mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x51b8e2f8 mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x56d6e5d5 mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6ccb6100 mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8e113941 mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8ffb2a64 mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9e5f162d mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa4fe5ae9 mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa986ee1e mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xacd7a7a5 mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb2c1738b mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb4ca6a4c mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb9c88c79 mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbe3984f3 mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc0598c5e mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc979c955 mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd67e0d3e mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe38f239c mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe5ee7c4f mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe84a60ae mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf43c343a mptscsih_host_reset -EXPORT_SYMBOL drivers/mfd/cros_ec 0x248270f6 cros_ec_suspend -EXPORT_SYMBOL drivers/mfd/cros_ec 0x4694fe31 cros_ec_remove -EXPORT_SYMBOL drivers/mfd/cros_ec 0xcf0b5b13 cros_ec_register -EXPORT_SYMBOL drivers/mfd/cros_ec 0xdb30acaf cros_ec_resume -EXPORT_SYMBOL drivers/mfd/dln2 0x3812366e dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xb048787c dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0xd62c8633 dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x01612184 pasic3_read_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xd4f96192 pasic3_write_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x059664cc mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2b9aeaf4 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x34b6e7d5 mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x418e9b91 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x48aeddb1 mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4b3150ec mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6414768f mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xab3aad0c mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb0ebe154 mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xca7baa83 mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfceded83 mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 -EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 -EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib -EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led -EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw -EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x33136eff wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x461ff640 wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x738bb991 wm1811_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xded30025 wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xece9bbbc wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xff88670c wm8994_base_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x68904b02 ad_dpot_remove -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xff3e3d8d ad_dpot_probe -EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x13090222 altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x1f751513 c2port_device_unregister -EXPORT_SYMBOL drivers/misc/c2port/core 0xe57f4312 c2port_device_register -EXPORT_SYMBOL drivers/misc/ioc4 0xbc2ce761 ioc4_unregister_submodule -EXPORT_SYMBOL drivers/misc/ioc4 0xf2a32d23 ioc4_register_submodule -EXPORT_SYMBOL drivers/misc/mei/mei 0x5eddbbc9 __tracepoint_mei_reg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0xdd1b8214 __tracepoint_mei_reg_write -EXPORT_SYMBOL drivers/misc/tifm_core 0x0affb61b tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x10dfc942 tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x1b3b4f69 tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x3dbeed5d tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x68b9a67f tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x70dbdd5f tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x759fec39 tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x8129fe24 tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x9fc0bb19 tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xa8c2ec46 tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0xe0188fbe tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0xe09685d9 tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0xf10a25f6 tifm_eject -EXPORT_SYMBOL drivers/mmc/card/mmc_block 0x59169dd5 mmc_cleanup_queue -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x429dbbf1 cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x53e4d90a cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x5b93ff96 cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x6c77c0f8 cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x89581a95 cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xcc2e0e36 cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xdab3a60a cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x67a2a6b0 map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x7b448b97 unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xa17ecc04 register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xa7b01f7f do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xa4d47ba7 mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x50f56f5b lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x7a340b79 simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0xacae5887 mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/mtd 0xe26dd37b mtd_concat_create -EXPORT_SYMBOL drivers/mtd/nand/denali 0x3535cceb denali_init -EXPORT_SYMBOL drivers/mtd/nand/denali 0x50f69685 denali_remove -EXPORT_SYMBOL drivers/mtd/nand/nand 0x01922197 nand_scan_ident -EXPORT_SYMBOL drivers/mtd/nand/nand 0x127c0ec4 nand_lock -EXPORT_SYMBOL drivers/mtd/nand/nand 0x467d36f9 nand_scan_bbt -EXPORT_SYMBOL drivers/mtd/nand/nand 0x54b7e4b8 nand_unlock -EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/nand 0x96bca1bc nand_scan_tail -EXPORT_SYMBOL drivers/mtd/nand/nand 0xddd39b99 nand_scan -EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x41427550 nand_bch_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x9d66fdb3 nand_bch_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xde37c37d nand_bch_init -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xc94b21ed nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xdd669ed7 nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x8cfcf75c nand_flash_ids -EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x68ca3306 onenand_addr -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xd6a966b7 flexonenand_region -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xda67e05f onenand_default_bbt -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xeac7aaf9 onenand_scan_bbt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x16c70f85 arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x43d12f36 arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x455ae059 arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5b7fa9fe alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x640a3358 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7b1200dc arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7ec3532c arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8b31397d arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbfa2c754 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfb39549b arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x27a75764 com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x8390af04 com20020_check -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xaaa12fd4 com20020_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x07e2de34 ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0864a075 ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x17a8f4fd NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x504e58e5 ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x95f10a56 ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xacc88216 ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xad8460c5 ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb9df89d3 __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf75d1ded ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xfbec8889 ei_close -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0xdfa76029 bnx2x_schedule_sp_rtnl -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x812471a8 cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x0d8be5fd bgx_lmac_rx_tx_enable -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x285bde59 bgx_get_rx_stats -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x42264715 bgx_get_lmac_count -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x6dc1648d bgx_get_lmac_mac -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc397f585 bgx_lmac_internal_loopback -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc82be691 bgx_get_map -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xe48ca42a bgx_get_tx_stats -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf101d1b2 bgx_get_lmac_link_state -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf9508980 bgx_set_lmac_mac -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0316d349 cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x06b38cd7 cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x26c92d6e t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x29c6cce8 t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5af488d5 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5dcaaee4 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5de2ae00 cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7c437f9f cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa15bfd8d cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xaccedf5a cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb3081b55 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcd7c5be1 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcf208003 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcfccf61b t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd4201f03 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe1630e2c cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0a8a2b2a cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3273364c cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x34820614 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x35d51ca9 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4c38e7eb cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x57707dfc cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x695b2827 cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6e50843e cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6f142235 t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x74b8e71d cxgb4_dcb_enabled -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fe4cba0 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x81ff7203 cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8626aa98 cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x86fc901f cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8bbbc85e cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9598beb1 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9bc65b2a cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa4037cde cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaa39ee25 cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaed9933b cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaf899797 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc5b12bce cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xced37041 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd4380d0f cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd5ab9181 cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd8447d3b cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdc528dac cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdd3b39ce cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe4c73b57 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe57ba2ba cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe840674a cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xedad6185 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfe333f6e cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xff642659 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x1b587b1c enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x1f6a496d vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x2da168e0 vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x45164b31 vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x58f72bf8 vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xe0309391 vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x1d1fca0b be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x3dba64ef be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09fefa8c mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e55812f mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e620daf mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17623a0e mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1da4174f mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e17cf59 mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25d544ae mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2fcc0c81 mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30771a58 mlx4_test_interrupts -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34de7054 get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39509212 set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c54b732 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47eb4fe0 mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d4e8eca mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52bc7974 mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x557e8336 mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57c619d5 mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59305c29 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6250a5e5 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7974d3e1 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a50b9f7 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7acb4f62 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8034b42e mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81f596cb mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86214f22 mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8abb108b mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9947a420 mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa77284f8 mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa777074a mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa9fdfe5 mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab80dd15 mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0c069ff mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9dac697 mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe00169c2 mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe718cb16 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea109e9b mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed69bb0b mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1821068 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03e2455d mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0857aabd mlx5_get_flow_table_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c8dc37d mlx5_core_query_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb7287e mlx5_del_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14d0f0e9 mlx5_core_dump_fill_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17385aea mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d5da6c2 mlx5_alloc_map_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ef53524 mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x325036e1 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ade58b5 mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42154636 mlx5_core_create_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a9a99a2 mlx5_unmap_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60944ad8 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70a9ade4 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71eadb6d mlx5_query_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73ee4677 mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78c92eac mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x812a640a mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84703c88 mlx5_unregister_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86f08dfb mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88434a95 mlx5_cmd_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8dab6c6b mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94a9130e mlx5_cmd_comp_handler -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9812dcf2 mlx5_core_get_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a52a75b mlx5_cmd_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2de408d mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb4fae6d mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc02bb7d mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0b2ed1b mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc165b50f mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd196694 mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf0a6021 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3a3397a mlx5_register_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd47ed591 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd3b81e1 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6af33e4 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8386b42 mlx5_modify_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe867a152 mlx5_core_arm_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee6b1a20 mlx5_core_destroy_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef8c92d7 mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb71e59d mlx5_get_protocol_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc728a49 mlx5_add_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15ea1f11 mlxsw_core_rx_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2d07a992 mlxsw_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x360b4c47 mlxsw_core_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x67d9eacf mlxsw_core_skb_receive -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x95cd361e mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9676f968 mlxsw_core_skb_transmit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe7323db1 mlxsw_core_bus_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee8e0771 mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfde57afb mlxsw_core_driver_register -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x141839c7 qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa209d1af qed_get_protocol_version -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x0f48abc7 hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x76e791ca hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x793f400b hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xb16f60f2 hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xc4f92b27 hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x0300fed6 sirdev_receive -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x0e8ec609 sirdev_set_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x145a6b4e irda_register_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x258ea20d sirdev_raw_write -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x3a981754 sirdev_get_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x45ab388e irda_unregister_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x654961c7 sirdev_raw_read -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x8d96b190 sirdev_set_dtr_rts -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x9176d055 sirdev_write_complete -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x99b4f065 sirdev_put_instance -EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl -EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart -EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag -EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe -EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok -EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage -EXPORT_SYMBOL drivers/net/mii 0x1a0e2692 mii_nway_restart -EXPORT_SYMBOL drivers/net/mii 0x6bb81fe4 mii_check_media -EXPORT_SYMBOL drivers/net/mii 0x70f398dd mii_link_ok -EXPORT_SYMBOL drivers/net/mii 0xd37d8395 mii_ethtool_sset -EXPORT_SYMBOL drivers/net/mii 0xe9dadabc mii_check_gmii_support -EXPORT_SYMBOL drivers/net/mii 0xeff5d5fb mii_check_link -EXPORT_SYMBOL drivers/net/mii 0xf634f4f7 mii_ethtool_gset -EXPORT_SYMBOL drivers/net/mii 0xfb6a5406 generic_mii_ioctl -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xb9c71631 free_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xc10fb1a5 alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0xd7d53357 cavium_mdiobus_write -EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0xdb598627 cavium_mdiobus_read -EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x1845583d xgene_mdio_rgmii_write -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x1b4d6921 xgene_mdio_rgmii_read -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x6833ef49 xgene_enet_phy_register -EXPORT_SYMBOL drivers/net/phy/vitesse 0x371463bd vsc824x_add_skew -EXPORT_SYMBOL drivers/net/ppp/pppox 0x1065575d pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0x4d5d89de register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0x64f2837f pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0xb9558a55 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x1d059e21 team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0x58445b64 team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0x691a157b team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x7237678d team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0xb19328e8 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0xb9f73eb1 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0xc7dac496 team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0xfa765ed6 team_options_unregister -EXPORT_SYMBOL drivers/net/usb/usbnet 0x1b45d71b usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0x2f7635d4 usbnet_manage_power -EXPORT_SYMBOL drivers/net/usb/usbnet 0x75de2e5e usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0x9fcda07b cdc_parse_cdc_header -EXPORT_SYMBOL drivers/net/wan/hdlc 0x05f3b3cb hdlc_change_mtu -EXPORT_SYMBOL drivers/net/wan/hdlc 0x071fe8e1 attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x1c7e9f98 register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x2c11c2ba unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x31c33572 hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0x324df3cd hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0x49e53355 hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0x4ae5c493 unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0x5b280adf hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0x73e08659 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xdac9e330 alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0xfc90b5ff i2400m_unknown_barker -EXPORT_SYMBOL drivers/net/wireless/airo 0x0f8550c4 reset_airo_card -EXPORT_SYMBOL drivers/net/wireless/airo 0x1e6666fc init_airo_card -EXPORT_SYMBOL drivers/net/wireless/airo 0x54da4c26 stop_airo_card -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0087e52d ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x14546b29 ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2883e02e ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3fd1d164 ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x50531a70 ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x840a5ee8 ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x88677c32 ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9e1f3965 ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb4d68fbc ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6fcbae7 ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe736e66b ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xed0bedeb dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x02feb4c4 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1adb1c56 ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1b9ead14 ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x290bd909 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2f4c24da ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3a585869 ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x71c627dc ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9244903f ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x95691307 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x96e0a76a ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xac1eddcf ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc5374e8f ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdf8aec5e ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfde3d119 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfe7eb8d3 ath10k_debug_get_new_fw_crash_data -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x00c64337 ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0504f167 ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0aefca37 ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x34d8f532 ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x388526f3 ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x39026888 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4f32dcf9 ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x65c5d0a3 ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7649089e ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7c2bc143 ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb66c924f ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x152374a9 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1796cf81 ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1eff17d1 ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x21d92f0e ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x24a3d2f9 ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x31be270f ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x457b8598 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x575a9db2 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x58fd9d8d ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5c25e415 ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7e9b7827 ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7ea20260 ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaa7d0eb3 ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xace56e1c ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb088f857 ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb4395232 ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbd6cd2b9 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcb7088b4 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcd9996b4 ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd3fc8705 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd8c4b45c ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf5de6f41 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf8a60db5 ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01db6417 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x031fa983 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x049673cd ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x070f6ee0 ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x07780006 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ef13794 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10f47358 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11971224 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x123cd4ca ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13ce14fa ath9k_hw_cfg_gpio_input -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1479ccc3 ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x15924215 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x171dcdf6 ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17ca2d41 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1883ada8 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a5fc012 ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b33aaab ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x216b2841 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x240f345d ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x26a39e55 ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2bfd9f44 ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e50ff4e ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x370a3993 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3761473b ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x38eb8da4 ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e39b196 ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4208fe9a ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x47d276c4 ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x49c9ce41 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b23d59e ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4eb367d3 ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51f94531 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53cb2a11 ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54bd3593 ath9k_hw_request_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x55ff83ac ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5ebb1e71 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5edb7cec ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6055d32e ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x62a901ea ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x648c83fb ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x65483ec0 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6a75d3a3 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6dce0d71 ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x73e9431c ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x767b58a4 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x781bae05 ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x783f5586 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a07676c ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7baa24c0 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c81e019 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d216c39 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x82c768af ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x83bd3226 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x89a7273a ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91f547f1 ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x921247e6 ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92f9265b ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x938386b9 ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x973b24ce ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9815e28f ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x987781a3 ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98b27ad8 ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x99445a23 ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ed51f9f ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f4d5fa2 ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3dd07bb ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xab8223cf ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad8913ee ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf04ebc7 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1637ef2 ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb18e9743 ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb394862e ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb424e434 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6f27cfb ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb8e707c4 ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xba60008a ath9k_hw_cfg_output -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc9506c30 ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xca85ed76 ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcfec9c4e ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd017ec35 ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd3e76564 ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd598345e ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd5b2a665 ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd867d2a5 ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd942771d ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9f052d6 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdc15edbe ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdde5c7a5 ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe163868a ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe5906975 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe7ddcab7 ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe7e5c456 ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe9251dfa ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec3d4ee2 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xed79f159 ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xedde1477 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeeee1f0e ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xefaa61c7 ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf209796a ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf6adeee1 ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb2384a5 ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfc820fda ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfccb68ba ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd465147 ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe361346 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/atmel 0x0ebf0a69 atmel_open -EXPORT_SYMBOL drivers/net/wireless/atmel 0xadbbd0bf stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel 0xdc9bfb9f init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x0b9bd727 brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x1ee64295 brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x36909f0a brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x66092c24 brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x6d2bcd7b brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x6d6f8346 brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x70dd5287 brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x7996b188 brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x7b115228 brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9a7461f9 brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xb19cf3f3 brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd013e39b brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd1894e7c brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x045e946a hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0642e912 hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x076970b1 hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1723ac32 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2337bd98 hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x23bd00db hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x316c6499 hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3401d7d7 hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4f0895e3 hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5300ed77 hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x543ef5c4 hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x60c6c9be hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x65731e3b hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x72e7c39f hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8854febb hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8cc3e4fb hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x99f1575b prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9c8c16ef hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa72576c4 hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbe9a0688 hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd42432bd hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe5ab6de2 hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe68324d3 hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xea7e91e5 hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf8bf4170 hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xffa11471 hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x037b11f6 libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0d9f4459 libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x14e7d50d libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x15844093 libipw_change_mtu -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x20d9003d libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x36db5b72 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x3b997756 alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4e0d71a8 libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4fcad57d libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x50014467 libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x50494b00 free_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x629e86f9 libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x62a10803 libipw_rx -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x8cf9bc79 libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x94bb377d libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x9634590e libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x96df5ec2 libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x97a93334 libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb0f91452 libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd5db8aa3 libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xde51cf5c libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x04f7cea0 il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x063f2e08 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x06f5218d il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x08740271 il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x08ad466f il_force_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0b0f5c9b il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0b137b96 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0c16721e il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x10e244af il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1164bd8d il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x123e854c il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1401f552 il_apm_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x14b764d1 il_free_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x171bc483 il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x188e0eab il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1b4f1efa il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1c0d019c il_set_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x24b84ce6 il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x28126725 il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x29f4aeb7 il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2d727384 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x32d57982 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x35536ab4 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x36118f26 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x390c4a61 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3a1333f3 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3b031377 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3f73b088 il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x46bdcdf5 il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4e20c952 il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5295a071 il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x53e5952c il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x54f26f23 il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x55b5012f il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x56450680 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5cb3da40 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5ced7afd il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5de09b2b _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5fdbf050 il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x61887268 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x62a067be il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x64f6209a il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x653814c1 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x694535e2 il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6b61cbc6 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6eda9292 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7d67515a il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x846b31d7 il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x84c19db2 il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x870fb624 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8c838e24 il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8e2531b2 il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x902b656a il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x91a75706 il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x94817729 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x94f131ac il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x951380d6 il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x965b0f2e il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x97425948 il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x98b893ee il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x99d3c05a il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9ab3ebf9 il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9f73681f il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa6ff4d4d il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa7409344 il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa758eac7 il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa8c58841 il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb0217b64 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb044c31b il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb466f2c5 il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb792445e il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbd0efe6b il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbf4da7e7 il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc3f5ecb0 il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcaca5e13 il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcb9e0b92 il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcba3f06c il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcc080bb2 il_set_rate -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcd746f53 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcfd119c2 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd335b1b4 il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd420fb04 il_leds_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd4d55044 il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd6415ec7 il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd94914f9 il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdfebd913 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe2807dbf il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe5c19adb il_update_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xec77f238 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xec97871a il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xecbb175a il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xee96ca4c il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xef68b1fe il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf469a295 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf51b3950 il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf7b81caf il_init_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfbe55ff8 il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfdf9ff89 il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x1b06ce78 __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x2447a6ab __tracepoint_iwlwifi_dev_iowrite8 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x314a20a8 __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x5e9c24ff __tracepoint_iwlwifi_dev_ucode_error -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x8c8ab242 __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x9a1b1df9 __tracepoint_iwlwifi_dev_ioread32 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xdced6db1 __tracepoint_iwlwifi_dev_iowrite32 -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x02cf7fcf hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x128af3a2 orinoco_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x31b4be3f orinoco_down -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x50ba7013 orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x7ab588ca orinoco_open -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x872530e5 __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x940cc19f orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x9b75f6ae orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xa51211c5 orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb576e57c orinoco_get_stats -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb61349df free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xcb5663d4 orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xce20866d orinoco_up -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd49e4067 __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xedcccdcf orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xfa0953f1 alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xfb591b72 orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xfdbf62d6 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x00c77f0e rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x097771ff rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0c0c1dad rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x112e8b9c _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x16d9353a rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x182493a3 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2134cb5f rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2f762111 rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x35b681c4 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3aaec3dd rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3da27beb rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x40ee378f rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x52066a65 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5706006c rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5d92789c rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5de45be7 _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6136163d rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x68963f06 rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x73385f4b _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8138e132 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x83299270 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8ab4a953 rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x92696954 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x93be3677 rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x97dca711 rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x99c3c62a rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9f8fca41 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xba97739c _rtl92c_store_pwrIndex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc82d78ee _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc9031d7e rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc9bcff07 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdba11679 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdf0a619b rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe4069cec _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe8a9c40b _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xecfb16df rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf168a6d2 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf7e6cd56 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf9868e67 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfb63ab45 rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xff682a48 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x032e6333 rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x115b79a3 rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x12aa3b48 rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x94f7f086 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x25a60672 rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x4a155a46 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x7f002d6a rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x991b9362 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x09b14e6d rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x15dc5bcc rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x23c8b966 rtl_wowlan_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e90d9c5 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x32452162 rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x63b89994 rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6caebd44 rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x733fb620 rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x776f1470 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7c3cb862 rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7de7b989 rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x892c352d rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8c1f60f0 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x96a9cd4c rtl_ps_set_rf_state -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9f9dc525 efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb5c95a7a rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc2bb52bb rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd2a9b45a efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd345faec rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe1dd6f7d rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe470df01 rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe5fe8ef0 rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe621f938 rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebcd8a7b rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xedf1467f rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf279a4c7 rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf76c3ac4 rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf79227f6 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x0476dff4 wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x24c94ac0 wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xe3955703 wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xe69ea616 wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x2720f1dd fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x36a64979 fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xfdaf9eb2 fdp_nci_recv_frame -EXPORT_SYMBOL drivers/nfc/microread/microread 0xa3745044 microread_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0xc44b1b86 microread_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x84e2b1c8 nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xdd28567f nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xf336913c nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x469f1e5e pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xdb8a6912 pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x854ea53a s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xdcfa5313 s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf392f113 s3fwrn5_recv_frame -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x085fc0db ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x204639c8 ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x421974fb st_nci_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4c844518 ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5734d1c7 ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7cd72a67 st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7f25a5c1 st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa44ecf3e st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xdd4ad8ef st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xed64e05c ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf5747420 ndlc_open -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x10d49d75 st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x438d416a st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x54b28d7e st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5aa34e1a st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x70c84564 st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x76a222a4 st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x81482cf4 st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x83720877 st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x84421f45 st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8d63f096 st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x924166ea st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb039eefc st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc1538d67 st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd4379ed7 st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe5ac2326 st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xef30dd25 st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf352c19e st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf4afb5fa st21nfca_dep_init -EXPORT_SYMBOL drivers/ntb/ntb 0x09347432 ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x163fb808 ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x192d0846 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0x1bba4632 ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0x2e1b7cbf __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0x7cfa2c26 ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0xb92c705a ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0xc4dbeb28 ntb_unregister_device -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x4a737907 nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x86ea39a4 nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x1a50c004 devm_nvmem_cell_put -EXPORT_SYMBOL drivers/parport/parport 0x03388e84 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x0b35ba9b parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0x0b79fe06 parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0x0d2b6781 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0x0d8d66cd parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0x0ef25252 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0x1db854db parport_release -EXPORT_SYMBOL drivers/parport/parport 0x2815a27d parport_read -EXPORT_SYMBOL drivers/parport/parport 0x2a79aa79 parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x34989846 parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0x3cfd8793 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0x424a74bf parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0x44a6f57d __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x61c321ae parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0x61cd5b5e parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0x6e2c6ba4 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x811ce953 parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0x88750826 parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0x88e74d5a parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0x8a9dcc98 parport_write -EXPORT_SYMBOL drivers/parport/parport 0x977f49b2 parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xa404e637 parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0xb02204ee parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xc372b1a5 parport_register_device -EXPORT_SYMBOL drivers/parport/parport 0xcb3e5741 parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0xcd32ba01 parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0xd3a10fb4 parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0xded5a52e parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0xe946e562 parport_claim -EXPORT_SYMBOL drivers/parport/parport 0xf579863a parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0xfa6bac92 parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xfe4958a8 parport_negotiate -EXPORT_SYMBOL drivers/parport/parport_pc 0x0ce09dba parport_pc_unregister_port -EXPORT_SYMBOL drivers/parport/parport_pc 0xe0af6c76 parport_pc_probe_port -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0231c32e pcmcia_write_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x125e3521 pcmcia_request_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x24070910 pcmcia_dev_present -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x30e1c017 pcmcia_request_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3a4c2395 pcmcia_read_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3ca66be0 pcmcia_unregister_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4b4293fd pcmcia_fixup_vpp -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4c48bdcf pcmcia_fixup_iowidth -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x51bcb01f pcmcia_release_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5b8b4a4a pcmcia_get_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9186d165 pcmcia_loop_config -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xbd30c1af pcmcia_enable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc513b552 pcmcia_get_mac_from_cis -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xcd7524f7 pcmcia_loop_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd0f1a0ad pcmcia_map_mem_page -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe557934a pcmcia_request_io -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xea325744 pcmcia_register_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xeb4d7f6d pcmcia_disable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf2f78fc0 __pcmcia_request_exclusive_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x062744be pcmcia_parse_uevents -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1bf8c9a3 pcmcia_unregister_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x32166d07 pcmcia_socket_list_rwsem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x43a40794 pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x4498f502 pcmcia_put_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5057e8f8 pcmcia_parse_events -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x56e05fa0 pcmcia_socket_class -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x59c2aa0f pcmcia_get_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa37513fe pccard_register_pcmcia -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe399fb14 pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe9b7628f pcmcia_reset_card -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x78e5dbab pccard_static_ops -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xf66d5f6e pccard_nonstatic_ops -EXPORT_SYMBOL drivers/platform/x86/intel_ips 0xf97d7d0e i915_bpo_enabled -EXPORT_SYMBOL drivers/platform/x86/intel_punit_ipc 0x3a0b563a intel_punit_ipc_simple_command -EXPORT_SYMBOL drivers/platform/x86/sony-laptop 0x5bb1e117 sony_pic_camera_command -EXPORT_SYMBOL drivers/pps/pps_core 0x36258c54 pps_register_source -EXPORT_SYMBOL drivers/pps/pps_core 0xa7456bc3 pps_lookup_dev -EXPORT_SYMBOL drivers/pps/pps_core 0xbaeda887 pps_event -EXPORT_SYMBOL drivers/pps/pps_core 0xfffefc71 pps_unregister_source -EXPORT_SYMBOL drivers/ptp/ptp 0x0c6779c2 ptp_find_pin -EXPORT_SYMBOL drivers/ptp/ptp 0x36aa7d7f ptp_clock_unregister -EXPORT_SYMBOL drivers/ptp/ptp 0x9b6fd8cf ptp_clock_index -EXPORT_SYMBOL drivers/ptp/ptp 0xcd57e57b ptp_clock_register -EXPORT_SYMBOL drivers/ptp/ptp 0xd5034dc0 ptp_clock_event -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x071b49e9 rproc_put -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x0df9d505 rproc_report_crash -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x10c1a476 rproc_boot -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x20c92c5b rproc_get_by_phandle -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x30af457d rproc_da_to_va -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x4bafaed5 rproc_del -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x4f2d77d8 rproc_vq_interrupt -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x98ab980a rproc_alloc -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xe26f775d rproc_add -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xf16e8bcf rproc_shutdown -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xb1129aa2 ds1685_rtc_poweroff -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x04ce7160 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x17189667 scsi_esp_register -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x81b26d22 scsi_esp_template -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xe9fcda57 scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0d9cb792 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0d9d82cf fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1d35b082 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4d6910d3 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5d0fbb18 fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x618742d5 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7bf40a6b fcoe_ctlr_destroy_store -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x805d2c49 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb8edf1bd fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd6165ccf fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xef391b3d fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfe587ba7 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x03675225 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0be71148 libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x15744a29 fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1d0cb40d fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2027955c fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x26e5a4f1 fc_rport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27f1fc0a fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2801b299 fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2b26b647 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2eafa25e fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3faa500b fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x42245e9d fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4de653b8 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x638b8ed5 fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x65bdae4b fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x663c790a fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x682d56a1 fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6dc83bdc _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7705a4a2 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x777d5838 fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ce48ac9 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8669013f fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8929585d fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8ec06510 fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8f41a9cb fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x91a09be0 fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x96d730ab fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9848df65 fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9c2ffad7 fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa219001b fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaa69da5c fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xad32f079 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb4a655de fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbb4a5aca fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbd92c41b fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc2dc16f1 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc3476e0e fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc583e5b6 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcc3689b4 fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcf06610d fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd0f3066b fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd38d4aa3 fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd82f7cb5 fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdf397ffd fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe4ed9cca fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xea20f09e fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0b4dae9 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf64427ff fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfd24ab99 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xffae0f03 fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x0a1b287d sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x141c87ce sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x3ac5f585 sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xf7fd97a2 sas_wait_eh -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x52baa523 mraid_mm_register_adp -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x01585e6e osd_req_read_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x111f4497 osd_req_flush_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x17b99532 osd_req_add_get_attr_page -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1c510ba0 osd_start_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x209a21c8 osd_req_list_collection_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x27e09e77 osd_req_remove_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2902f53b osd_req_read_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2b4954b9 osd_req_flush_obsd -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x314c6702 osd_req_remove_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x34cb8158 osd_req_create_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x38f63e99 osd_req_read -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x39f6cfb0 osd_req_flush_collection -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3e7ec371 osd_finalize_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x46a0ecc0 osd_req_decode_sense_full -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x495bd05f osd_req_add_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4fa8a489 osd_req_list_partition_collections -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x54145f17 osd_req_write_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x63a27c69 osd_end_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6f10229e osd_req_list_partition_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7766ffa9 osd_dev_fini -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x82f9dc02 osd_execute_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8b16b4d2 osd_req_list_dev_partitions -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x924ee7a5 osd_req_create_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x943b9f3a osd_req_read_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa7c477d5 osd_req_write_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb0415347 osd_req_get_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc461243d osd_dev_init -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc622263d osd_req_format -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd9965089 osd_req_decode_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xde471d75 osd_req_flush_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe42b6b13 osd_req_write -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xec5688a7 osd_req_write_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf1415ea3 osd_auto_detect_ver -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf1afc286 osd_req_set_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfaba4d60 osd_req_add_set_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfba9d402 osd_execute_request_async -EXPORT_SYMBOL drivers/scsi/osd/osd 0x4ddf72a0 osduld_path_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0x60e7e927 osduld_device_same -EXPORT_SYMBOL drivers/scsi/osd/osd 0x74cf97ac osduld_device_info -EXPORT_SYMBOL drivers/scsi/osd/osd 0x8483f12e osduld_info_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0x84cfc106 osduld_register_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0xc3604c44 osduld_put_device -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2c95b806 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x52a695cd qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x718b1382 qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7604adb2 qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7a5e3416 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x87e53d8b qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x90330fe8 qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x92d8e5a4 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xaa9f4629 qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc319e69c qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xdf661029 qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf313a9a1 qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x075ac94e qlogicfas408_bus_reset -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x393b2075 qlogicfas408_disable_ints -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x5dc3ec64 qlogicfas408_queuecommand -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x98e47848 qlogicfas408_info -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf146b473 qlogicfas408_abort -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xfb6b3c5b qlogicfas408_biosparam -EXPORT_SYMBOL drivers/scsi/raid_class 0x40490383 raid_class_release -EXPORT_SYMBOL drivers/scsi/raid_class 0x6c4b32e0 raid_component_add -EXPORT_SYMBOL drivers/scsi/raid_class 0x8a6f720c raid_class_attach -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0076744e fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1021880e fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x39ef99a2 fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4f1cafed fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5b5f7398 scsi_is_fc_vport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6f6acf44 fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7bcbe37e scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x86c43cb6 fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8e3895e9 fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9a3825d7 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9ecd5c69 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe9f96e1a fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf80d87a4 fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x04474977 sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x112f27cc sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x12d64560 sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1a1563fc sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x203e2a1c sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x21217033 sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x269e747d scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2cf558e7 scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x405dc5e9 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x445ccb3e sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5157b18b sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x61a26b3b sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x65f121b4 sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6abc6a1d sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x789d6f5f sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7aff015f sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7ce67a08 sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x883d44cb sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x90457b1c sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa1cc5ff0 sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa1f90978 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xab02a2a8 sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xad193e13 sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb155b6c0 sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb6303f0d sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd4f76967 scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdcff3303 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xff2a8dfb sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x472a2c29 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x917f9cb1 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa0f77f6b spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe0f53991 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xee1e3a3d spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x528a6394 srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x73481ff3 srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x860a0761 srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xcbf32d87 srp_rport_put -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x28954039 ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xa0d256d9 ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xa9a7344e ufshcd_runtime_idle -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xc8783f00 ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xced7240e ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xf7928d3d ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xf885f07a ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x0a06e704 ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0x1422eada ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0x230b03a6 ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0x383be1ef ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0x3a495e76 ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0x3d0b8838 ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0x42f4e776 ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x53bd3fa3 ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0x68cfb5c9 ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x6d14c566 ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x9062d8a6 ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0x9256b466 __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0x9a8aafe0 ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0xb559f32c ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0xbb956f43 ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xc260b3f8 ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0xc28c465a ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0xcba53570 ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xd92c972f ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0xf30488db ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x09fc2b28 fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0ae35b77 fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0b92b05e fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1049ecb0 fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2cab5fb1 fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x319f36de fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x38d646b9 fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3abcca20 fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x43fa69b7 fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x44e6fd15 fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4683f1dd fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4bb1cca6 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4cad57ea fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x58e6fe8a fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5e98ae53 fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5eae61c0 fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6ad3235b fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6dea716d fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x873e9429 fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9d18893a fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xabdfcc2d fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe3cab24c fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf1c05626 fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf710c216 fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x8d2d7726 fwtty_port_put -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x9f97a669 fwtty_port_get -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xb5316541 adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x078ca9e0 hmc5843_common_remove -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x339ca0a9 hmc5843_common_suspend -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x4b0ee5e3 hmc5843_common_probe -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x58ddf16d hmc5843_common_resume -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x6eded82b ade7854_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xb8d25043 ade7854_remove -EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0xda7b9ec8 cxd2099_attach -EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x98161967 most_deliver_netinfo -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0758df92 free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0900c755 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1628304b rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1a4e6141 rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1ca96942 rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x29cdbdd4 rtllib_wpa_supplicant_ioctl -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x33fbff8a rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x342bab10 rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x350d7750 rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x38d6a43f notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x44a12a4f rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x49806f18 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4ec4d5c2 rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x51e9e30a rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x54d963ab rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x55ab5943 rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x62171403 rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6a71bfb6 alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6bec8ab6 rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x730acbd9 rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x731b65d9 rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x766ba88e rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x809f2d9d rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x80bc4c22 rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x87126829 rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x899db7bb rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8f7abfb8 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9786021f rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9e97305e rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9ea42c3c rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa2152951 rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa569f08b rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa776187a rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc1fc34dc rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc6f42704 rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc764d82e Dot11d_Channelmap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc8e655b8 rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcad9791f rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcb8b64c0 HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcca4eff1 rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcdd6d519 rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd7cb6370 rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd83091f7 dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe302fa12 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe7a68052 RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe8b8c879 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeb54c78e rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xefaa5b12 rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfa91ceb6 rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfe6efc6e rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x006e43f9 ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0ef3b7ad SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f099f61 ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f24580b ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x13503be2 ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x151b63d1 ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1da76a4d ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1eb04cd8 ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1f4283cc ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2181aadb ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x21b7e325 HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x28642019 Dot11d_UpdateCountryIe -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x295841fb ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x379d587d ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3b136bab ToLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3b363f97 ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3fc2b6b6 ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x464d3ab7 ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4cccd85f ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61ea895d ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x631ca235 ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x67c06e56 ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x68825e2d Dot11d_Reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6cc94e6f ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6ddeef41 ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6e10534f ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x70e5d681 ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x71e89128 ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7dc1f6b6 ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fa80724 ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8140c72c ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x89900ffb ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x90971016 ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9435e704 ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa0af2e0e ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa175285a ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa6ab42d5 ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaba42743 ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xadb1f622 IsLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb5c5a926 DOT11D_GetMaxTxPwrInDbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb6090413 DOT11D_ScanComplete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb7dea9d4 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbead9b87 ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcb33e33f ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcdc806b5 ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcde25c8a ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd2d1017c ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdb4ec4c2 ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdd6031af ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xed80e1d4 ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xedbd9986 ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf49c69e2 ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf7527682 ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf91c50d4 ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xff4da17d Dot11d_Init -EXPORT_SYMBOL drivers/staging/unisys/visorbus/visorbus 0xdb82229b visorbus_get_device_by_id -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x09af04cb iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0c33094c iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1c367861 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1d3fb70a iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1ff76229 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2cd80ea5 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2ed4e62f iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x36666010 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3759ccaa iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4716add6 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x506a1c3d iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x742e1f92 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x75642bda iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7ab26c08 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7f5c3933 iscsit_set_unsoliticed_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x80549068 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x80c34bc8 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x813db9bd iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa82a24cf iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb10de070 iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb28960e9 iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbff2bf53 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc24eb407 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc83655d6 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcb36c840 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcf9efa31 iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd96ea576 iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf2afa613 iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x024d2096 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x028e77ab target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0b16014d target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x0b2d48da core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x0bf53c1e target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x134eeba1 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x138c1f0f __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x28b9bb27 target_submit_cmd_map_sgls -EXPORT_SYMBOL drivers/target/target_core_mod 0x296496bf sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x2dab7025 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x33b6bed0 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x36af0f4d target_sess_cmd_list_set_waiting -EXPORT_SYMBOL drivers/target/target_core_mod 0x3b0f407c transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x3c280b60 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x4578c482 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x4761caf0 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x477cdebb target_get_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x480269d3 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x4a6ac464 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x4ac0e740 transport_check_aborted_status -EXPORT_SYMBOL drivers/target/target_core_mod 0x4b485855 target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x4cb63468 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x4fad6628 target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x50f70807 transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x559fb093 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x60169297 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0x61f58559 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x65c62b21 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x66e43f4f sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x67c3195a transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x67d70c8d core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0x6daf759a core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x770a9ff0 transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x77b74c3c transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x78e035a7 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x7c85ef20 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0x7c93c1b5 target_setup_cmd_from_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x7f970f0b core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x8042c447 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x86c4bfb4 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x89bcbce7 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x964cbe96 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x966eeda5 target_put_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x9b3bdd91 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0x9ee80f5e target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0xa21ac004 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0xa430b7bb transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xa5db3352 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xa6f87d3d target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0xa8a16b53 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xa8ad0d96 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xaffb0935 target_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xb2958a90 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0xb5e40427 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0xb5eac0ff transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0xbb9ab290 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0xbc113e71 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xbc47e888 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xbeb5a7c1 transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xc9225d6e transport_init_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0xd826cf50 sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0xd89d6267 target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0xe4cc0af6 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0xe6d520a9 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0xe937e80c passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xeab0f2e9 transport_init_se_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf18ea30e target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0xf5f6c1c7 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xfcd28c24 target_get_sess_cmd -EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x1887763e acpi_thermal_rel_misc_device_add -EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x5007fc2c acpi_parse_art -EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x86c998e6 acpi_thermal_rel_misc_device_remove -EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0xdf707fab acpi_parse_trt -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x0cc97720 usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x7a662656 usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x681bb1d8 sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x07650be2 usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x23c27bb8 usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x861980fe usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x92ac46c8 usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x93572f3f usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x95315896 usb_wwan_ioctl -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xae3f9ac8 usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb9c35db9 usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd5eda8ac usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe53b427b usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe717a0c6 usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xed8bdb48 usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x284c2de4 usb_serial_resume -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x88a6908b usb_serial_suspend -EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user -EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user -EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user -EXPORT_SYMBOL drivers/vhost/vringh 0x3c71c418 vringh_getdesc_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user -EXPORT_SYMBOL drivers/vhost/vringh 0x5fedea44 vringh_getdesc_user -EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user -EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user -EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user -EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern -EXPORT_SYMBOL drivers/video/backlight/lcd 0x67c59fde lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xa6d52827 lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xbd016072 devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xc62e0cc2 devm_lcd_device_register -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0c8cf4ea svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x3fc63bb5 svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x457dbcfa svga_tilecopy -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x986a035f svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb213efc0 svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb389d1ef svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef7d6dcc svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0xaf89496a sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x403fee88 sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x8452afd7 sys_imageblit -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x8e6b2f49 cyber2000fb_attach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xc6ec7061 mac_find_mode -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x2a68410a matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xe2069087 g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xe746b564 matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x83077492 matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xa5366c49 matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xb0ff1c35 DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xf80a9733 DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x36635248 matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x0a681d1f matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x55d7a072 matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x5a1a06c1 matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x6d5614eb matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x9bd2a165 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x22a130e8 matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x4c0d4778 matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x59a59ef6 matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x6d1e7b84 matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x768b3865 matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xf311881e matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xfb2fdae9 matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0xa5664649 mb862xxfb_init_accel -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free -EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga -EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x4f2c3db4 w1_ds2760_write -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x6d548b9b w1_ds2760_recall_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x8e5b40e4 w1_ds2760_store_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x934675ab w1_ds2760_read -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x48dbbfae w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xb6436761 w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x1583ec09 w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x620eeb7c w1_ds2781_io -EXPORT_SYMBOL drivers/w1/wire 0x2da55018 w1_add_master_device -EXPORT_SYMBOL drivers/w1/wire 0x7d554766 w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0xa94ddb75 w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0xb55062c5 w1_remove_master_device -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x04e133fc iTCO_vendor_check_noreboot_on -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xa78bd894 iTCO_vendor_pre_set_heartbeat -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xb5f20875 iTCO_vendor_pre_keepalive -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xc4f657bf iTCO_vendor_pre_stop -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xdc6effc9 iTCO_vendor_pre_start -EXPORT_SYMBOL fs/configfs/configfs 0x3db19a38 configfs_unregister_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0x3e486961 config_item_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0x4a27eff9 config_item_get -EXPORT_SYMBOL fs/configfs/configfs 0x9b807abf configfs_unregister_group -EXPORT_SYMBOL fs/configfs/configfs 0xa05750a1 configfs_register_default_group -EXPORT_SYMBOL fs/configfs/configfs 0xa8eecd5b config_group_find_item -EXPORT_SYMBOL fs/configfs/configfs 0xac8003cb config_item_set_name -EXPORT_SYMBOL fs/configfs/configfs 0xb5a04299 configfs_register_group -EXPORT_SYMBOL fs/configfs/configfs 0xb76182f4 config_item_put -EXPORT_SYMBOL fs/configfs/configfs 0xb878f854 config_group_init -EXPORT_SYMBOL fs/configfs/configfs 0xbce55356 configfs_unregister_default_group -EXPORT_SYMBOL fs/configfs/configfs 0xde121d05 config_group_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0xf19f20bf configfs_depend_item -EXPORT_SYMBOL fs/configfs/configfs 0xf3fb4632 configfs_register_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0xf448b298 configfs_undepend_item -EXPORT_SYMBOL fs/exofs/libore 0x029a8b4f ore_put_io_state -EXPORT_SYMBOL fs/exofs/libore 0x04eca6e0 ore_get_io_state -EXPORT_SYMBOL fs/exofs/libore 0x0a87e37a ore_get_rw_state -EXPORT_SYMBOL fs/exofs/libore 0x24a74d21 ore_check_io -EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout -EXPORT_SYMBOL fs/exofs/libore 0x2d6fb65d ore_remove -EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info -EXPORT_SYMBOL fs/exofs/libore 0x4a51866c extract_attr_from_ios -EXPORT_SYMBOL fs/exofs/libore 0x7d8e829a ore_create -EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length -EXPORT_SYMBOL fs/exofs/libore 0xca70fab9 ore_truncate -EXPORT_SYMBOL fs/exofs/libore 0xe3c4527a ore_read -EXPORT_SYMBOL fs/exofs/libore 0xfe8812e3 ore_write -EXPORT_SYMBOL fs/fscache/fscache 0x00647f05 __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0x05fe5cab fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0x0bb02ac5 __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x1644b3e4 __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x1a31abfc __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x25c6ed24 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0x3629a4f5 fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0x3ac53c3a __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0x3b2f8fd5 __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x500d27ee fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0x5132cd3e __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x5faaf479 fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0x60b99f46 __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0x6801d815 __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x6f10f981 fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x808b62f7 __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0x829e0d96 fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0x843f88cd fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0x84923616 fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0x84f8e028 __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0x8862ed8e fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0x8df21b2b __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x8e806474 fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0x9330ac4e __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x9794ef8b __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x98cc0530 fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0x9a8342fe __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x9bdf323e fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0x9c01519e __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xa325558c fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0xa7a9976a fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0xc0a57860 fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0xce866683 __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0xd79cbe8f __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0xdc22e510 fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0xea64d536 fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0xec434acd fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0xefcb6170 __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0xfa268892 __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xfe473e3a __fscache_relinquish_cookie -EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x48f0b4cb qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x69c23529 qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x70bfc2b3 qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0x8b380d19 qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x8d38a192 qtree_delete_dquot -EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq -EXPORT_SYMBOL lib/crc-ccitt 0x1a703ba1 crc_ccitt -EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table -EXPORT_SYMBOL lib/crc-itu-t 0x6d356209 crc_itu_t -EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table -EXPORT_SYMBOL lib/crc7 0x56329ecc crc7_be -EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table -EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb -EXPORT_SYMBOL lib/crc8 0xd09b2cba crc8 -EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb -EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c -EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy -EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get -EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed -EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of -EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset -EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used -EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del -EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get -EXPORT_SYMBOL lib/lru_cache 0x91413ad3 lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create -EXPORT_SYMBOL lib/lru_cache 0xba8abca3 lc_seq_dump_details -EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock -EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set -EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find -EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put -EXPORT_SYMBOL lib/lz4/lz4_compress 0x0c222eb5 lz4_compress -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x682a23e0 lz4hc_compress -EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul -EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp -EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv -EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page -EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi -EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul -EXPORT_SYMBOL net/6lowpan/6lowpan 0x3dd69966 lowpan_netdev_setup -EXPORT_SYMBOL net/6lowpan/6lowpan 0xa2d0a63d lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0xd7ab4e97 lowpan_nhc_del -EXPORT_SYMBOL net/802/p8022 0x395da758 unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0x510c5800 register_8022_client -EXPORT_SYMBOL net/802/p8023 0x0041a81c make_8023_client -EXPORT_SYMBOL net/802/p8023 0xd584321b destroy_8023_client -EXPORT_SYMBOL net/802/psnap 0xa0f5dc39 register_snap_client -EXPORT_SYMBOL net/802/psnap 0xbd51999d unregister_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x0248d832 p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x0c95f538 p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0x0df4f4f2 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x1077a0ad p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0x172f3832 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x174a826f p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0x29b89aed p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get -EXPORT_SYMBOL net/9p/9pnet 0x3a902141 v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0x3aeaa2d6 p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x3e9539ac p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x44426c9b p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0x46bddf02 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x6184bbc9 p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x63f4da0b p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x64379298 p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x693de737 p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x7431a87f p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0x796a5f91 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x84ece1ea p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x88b43524 p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0x8b8d9d97 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x8f76d88d p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0x90f66a5c p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x94a66b46 v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0x95a089c6 p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0xa79f3097 v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0xa7e91cb2 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0xb1c3d3bd p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0xb86a2e63 p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0xb933d211 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xbd66fb52 p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy -EXPORT_SYMBOL net/9p/9pnet 0xc9acbde0 p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0xd05a5525 p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0xd5b72fa9 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0xdf6b13dd p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0xe3ea2b66 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xe71e717d p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0xe83fde7b p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0xecf9a2d3 p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0xf2395faf p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0xf3d075c6 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create -EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put -EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check -EXPORT_SYMBOL net/9p/9pnet 0xffdb8da1 p9_client_readdir -EXPORT_SYMBOL net/appletalk/appletalk 0x021cdc68 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0x37fe2bd7 alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0x984220a7 aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0xba31206f atrtr_get_dev -EXPORT_SYMBOL net/atm/atm 0x03350610 atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0x115730aa vcc_release_async -EXPORT_SYMBOL net/atm/atm 0x25893221 register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x2b95ca5e vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x3a958608 atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x53411f18 atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0x68b66c79 atm_charge -EXPORT_SYMBOL net/atm/atm 0x6d7291bf atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0x8ddbfc86 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xa31be64d deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xd3a52e76 vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0xe4c12999 atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0xf48a80d5 atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/atm/atm 0xf4f003b5 atm_dev_register -EXPORT_SYMBOL net/ax25/ax25 0x0567c673 ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x503e6f16 ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0x50f8b311 ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x7aa32222 ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x810d0b7e ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0xa6d07463 ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xc4bed204 ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xfc03e8cc ax25_find_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0eec21d5 bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0x18f828c3 bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1a8178e6 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1b513e60 hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1dd51f16 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1e61972b l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x27ab2b66 hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2b8bb41e bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3005e1b1 l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3225ddfb hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0x32cd2076 hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0x38c23da6 hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err -EXPORT_SYMBOL net/bluetooth/bluetooth 0x51a16973 bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5b1dc8b5 hci_alloc_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x67c97f61 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x681abd71 l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7689e2a9 hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0x81204cf6 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x916625cb hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno -EXPORT_SYMBOL net/bluetooth/bluetooth 0x92d2cf35 l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x94a9e875 bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9bbb98b3 __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa0d99d9d hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa17c1b07 bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa41b3263 hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0xabf89fb6 hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xad5e2e14 hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb9346de2 bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbb1947ac bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc08e8575 hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc455e8c6 hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc881b868 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc9c3e512 bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcbd9af68 bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcd77e3e1 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdd785ed8 __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe158cb02 bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe5d05c5e hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xef7b15c9 bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf91c3c6c hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf9bff3ee hci_recv_diag -EXPORT_SYMBOL net/bridge/bridge 0x818c199d br_should_route_hook -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x14390b5e ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x5be9e62d ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa3775f3f ebt_unregister_table -EXPORT_SYMBOL net/caif/caif 0x000af60a caif_disconnect_client -EXPORT_SYMBOL net/caif/caif 0x11ea06a1 cfcnfg_add_phy_layer -EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative -EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info -EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer -EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head -EXPORT_SYMBOL net/caif/caif 0x6d7e193a get_cfcnfg -EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head -EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio -EXPORT_SYMBOL net/caif/caif 0x9f32070a caif_connect_client -EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xff96e7e4 caif_enroll_dev -EXPORT_SYMBOL net/can/can 0x00f5daab can_proto_unregister -EXPORT_SYMBOL net/can/can 0x0b4d7342 can_ioctl -EXPORT_SYMBOL net/can/can 0x4895f9ad can_proto_register -EXPORT_SYMBOL net/can/can 0x4a731b5d can_rx_register -EXPORT_SYMBOL net/can/can 0xe5253adc can_rx_unregister -EXPORT_SYMBOL net/can/can 0xef4e2ad2 can_send -EXPORT_SYMBOL net/ceph/libceph 0x0807b9e9 ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init -EXPORT_SYMBOL net/ceph/libceph 0x0a9327e0 ceph_auth_create_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x0aad18aa osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0x0ae30220 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x0ae4a0f0 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x0d691c2b __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x1314db58 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0x13d62ac5 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0x1667e0aa ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x1e5b1830 ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0x203a2050 ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup -EXPORT_SYMBOL net/ceph/libceph 0x20f89b95 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0x21c60751 ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x24d897df ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x2502201a ceph_osdc_writepages -EXPORT_SYMBOL net/ceph/libceph 0x2b64e75a ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0x2cdc2b24 osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0x2dd58124 ceph_osdc_set_request_linger -EXPORT_SYMBOL net/ceph/libceph 0x2e449409 ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x33108eb0 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x33496cb4 ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x3480b743 ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x3fa0f448 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options -EXPORT_SYMBOL net/ceph/libceph 0x419cb09b ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0x41b18ab0 osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x42706baf osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part -EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x4760b44c ceph_osdc_readpages -EXPORT_SYMBOL net/ceph/libceph 0x4a5f3a7f osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0x4c7c1986 osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x4ddc4837 ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x4efd2f4e osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x529dcb68 osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode -EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x5862309c ceph_osdc_put_event -EXPORT_SYMBOL net/ceph/libceph 0x5c48fc30 ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x5ebbe3d0 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x6ab2de92 osd_req_op_watch_init -EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x6d7746e0 ceph_monc_request_next_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x6f99f0c4 osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x6fcdafef ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0x72b2b2d9 ceph_calc_pg_primary -EXPORT_SYMBOL net/ceph/libceph 0x76d6746b ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x79c41c11 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0x83392978 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x84aea106 ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x86079b0b ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0x8c1a913a osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x927aad2c ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x9280e59e ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0x94dd39ac ceph_messenger_init -EXPORT_SYMBOL net/ceph/libceph 0x983a0096 ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup -EXPORT_SYMBOL net/ceph/libceph 0x9a776c8b ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x9b99b8f4 ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x9d7e09ce ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xa13e76e0 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0xa17ffda3 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xa285757a ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xa6eaead2 ceph_messenger_fini -EXPORT_SYMBOL net/ceph/libceph 0xaa194fdc ceph_monc_do_get_version -EXPORT_SYMBOL net/ceph/libceph 0xab691029 ceph_get_direct_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xac697d61 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0xad9303c9 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb10e45f3 ceph_monc_got_mdsmap -EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb5558c6e ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit -EXPORT_SYMBOL net/ceph/libceph 0xba1a2727 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0xc49ea3a6 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup -EXPORT_SYMBOL net/ceph/libceph 0xc53f3946 ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0xc6577be4 ceph_osdc_cancel_event -EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0xc786f129 ceph_oloc_oid_to_pg -EXPORT_SYMBOL net/ceph/libceph 0xc91e3d7d ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init -EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips -EXPORT_SYMBOL net/ceph/libceph 0xcc536404 ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xd235a711 osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode -EXPORT_SYMBOL net/ceph/libceph 0xd53629c0 ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0xd7acd83f ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xe011ca58 ceph_auth_update_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xe08902d5 ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0xe199dbd2 ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0xe3b042ca ceph_pagelist_append -EXPORT_SYMBOL net/ceph/libceph 0xe429a985 osd_req_op_cls_response_data -EXPORT_SYMBOL net/ceph/libceph 0xec8b0070 ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0xef9edaa4 osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xf1dc76cc ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0xf35cb4d9 ceph_pagelist_reserve -EXPORT_SYMBOL net/ceph/libceph 0xf47f023a ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0xf5b7f63e ceph_osdc_build_request -EXPORT_SYMBOL net/ceph/libceph 0xf7417e71 ceph_osdc_create_event -EXPORT_SYMBOL net/ceph/libceph 0xf8344ee7 ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0xfbaac6fe ceph_client_id -EXPORT_SYMBOL net/ceph/libceph 0xfd9556cc ceph_monc_do_statfs -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x92573679 dccp_req_err -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xed636e4c dccp_syn_ack_timeout -EXPORT_SYMBOL net/ieee802154/ieee802154 0x2ceddc17 wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0x3a21c162 wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0x44a88348 wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0x56002a33 wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0xb1820396 wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0xc8e23904 wpan_phy_new -EXPORT_SYMBOL net/ipv4/fou 0x3106aeb4 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x4bf5473e fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0xd0750778 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0xf36e5724 gue_build_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x5b9d2a25 ip_tunnel_dst_reset_all -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xa7951917 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xaa298b2f ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xce150aa8 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xe46b8705 ip_tunnel_encap -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf074b8db ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x1b374d64 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x3c007d7b arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x512acf70 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x5d75f101 ipt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x6e09c356 ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x8a6d94d0 ipt_register_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x773ed8ee xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0xf28a3dac xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/udp_tunnel 0xfe2e6119 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1e1e993c ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x878e49b5 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9ded9e9a ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe96411ea ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x1f4a225c ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x8b132f01 ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x98cd354f ip6t_unregister_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x8bffdce3 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0xe403c559 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x1ee1de3f xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x3da06425 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x1523dd7d ircomm_data_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x39569fa1 ircomm_connect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x696f0a1f ircomm_disconnect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x7d597b90 ircomm_flow_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x84fb7286 ircomm_close -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xba8fbec5 ircomm_control_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xca8626a8 ircomm_open -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xdc8b0c0d ircomm_connect_response -EXPORT_SYMBOL net/irda/irda 0x002c98e0 irttp_close_tsap -EXPORT_SYMBOL net/irda/irda 0x033d40af irttp_udata_request -EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value -EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service -EXPORT_SYMBOL net/irda/irda 0x0963c24b irias_add_string_attrib -EXPORT_SYMBOL net/irda/irda 0x09939c11 irias_add_integer_attrib -EXPORT_SYMBOL net/irda/irda 0x23bbc2ce irias_find_object -EXPORT_SYMBOL net/irda/irda 0x2791f9a0 irlap_open -EXPORT_SYMBOL net/irda/irda 0x2a48362f irlmp_connect_request -EXPORT_SYMBOL net/irda/irda 0x2b432980 hashbin_get_next -EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda -EXPORT_SYMBOL net/irda/irda 0x349079c3 irlmp_close_lsap -EXPORT_SYMBOL net/irda/irda 0x385847aa irias_delete_object -EXPORT_SYMBOL net/irda/irda 0x3b529260 irttp_connect_response -EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value -EXPORT_SYMBOL net/irda/irda 0x46b00fdf irias_insert_object -EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service -EXPORT_SYMBOL net/irda/irda 0x51764ebf async_unwrap_char -EXPORT_SYMBOL net/irda/irda 0x6a52a161 alloc_irdadev -EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies -EXPORT_SYMBOL net/irda/irda 0x6cc633cd iriap_close -EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client -EXPORT_SYMBOL net/irda/irda 0x70a3f20f hashbin_lock_find -EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client -EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client -EXPORT_SYMBOL net/irda/irda 0x7bf2fc8d irda_notify_init -EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert -EXPORT_SYMBOL net/irda/irda 0x83de7abd irlmp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0x8ae285ef irttp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0x8fdd2210 irlmp_connect_response -EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack -EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all -EXPORT_SYMBOL net/irda/irda 0x98a8b3b4 hashbin_delete -EXPORT_SYMBOL net/irda/irda 0x99d62436 irttp_open_tsap -EXPORT_SYMBOL net/irda/irda 0x9ccbdfca hashbin_insert -EXPORT_SYMBOL net/irda/irda 0xa6ee0796 irttp_connect_request -EXPORT_SYMBOL net/irda/irda 0xaa1a4eb7 iriap_getvaluebyclass_request -EXPORT_SYMBOL net/irda/irda 0xac3dc858 irias_add_octseq_attrib -EXPORT_SYMBOL net/irda/irda 0xaeeff2b5 hashbin_find -EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value -EXPORT_SYMBOL net/irda/irda 0xbaf490b7 irttp_dup -EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute -EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request -EXPORT_SYMBOL net/irda/irda 0xd28006ed irlap_close -EXPORT_SYMBOL net/irda/irda 0xd41c46dc irda_device_set_media_busy -EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma -EXPORT_SYMBOL net/irda/irda 0xdc0196c2 hashbin_remove -EXPORT_SYMBOL net/irda/irda 0xdd971e1b iriap_open -EXPORT_SYMBOL net/irda/irda 0xddf26544 async_wrap_skb -EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint -EXPORT_SYMBOL net/irda/irda 0xe1ba6308 irias_new_object -EXPORT_SYMBOL net/irda/irda 0xe329462a hashbin_get_first -EXPORT_SYMBOL net/irda/irda 0xe966a6bb irttp_flow_request -EXPORT_SYMBOL net/irda/irda 0xeb78333e hashbin_remove_this -EXPORT_SYMBOL net/irda/irda 0xec242b93 hashbin_new -EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries -EXPORT_SYMBOL net/irda/irda 0xf2373c5b irttp_data_request -EXPORT_SYMBOL net/irda/irda 0xf41e73fe irlmp_open_lsap -EXPORT_SYMBOL net/irda/irda 0xf6c1da11 irlmp_data_request -EXPORT_SYMBOL net/l2tp/l2tp_core 0x55b21765 l2tp_recv_common -EXPORT_SYMBOL net/l2tp/l2tp_ip 0x3864fad6 l2tp_ioctl -EXPORT_SYMBOL net/lapb/lapb 0x412e54e9 lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0x44e64da3 lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0x604e74e4 lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0x63e9adab lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0x7f0f426a lapb_register -EXPORT_SYMBOL net/lapb/lapb 0x98f6faee lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0xdccd9bd7 lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0xfc8a9480 lapb_getparms -EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x3e211386 llc_sap_close -EXPORT_SYMBOL net/llc/llc 0x49538f5a llc_sap_open -EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x7befe2cf llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0x9322e01a llc_sap_find -EXPORT_SYMBOL net/llc/llc 0x98acda09 llc_add_pack -EXPORT_SYMBOL net/llc/llc 0xdabdcc0f llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0xf34a629e llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/mac80211/mac80211 0x0251448f ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x0354419b ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0x0bd609f2 ieee80211_get_key_tx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x0e17fb1a ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x150e64ae ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x1a7ac58c ieee80211_csa_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0x1e8265dc ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0x1f38c236 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x2a8b76e4 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x2bf25bd2 ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0x2d0a23ad ieee80211_tx_status_noskb -EXPORT_SYMBOL net/mac80211/mac80211 0x2ea5218c ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x3318ac46 ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x3450acae __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x3752b69e rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x376ab2a7 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x39b2747e __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x3b994df7 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x3ec044db wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x3ffac50d __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x419c0202 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x4512e60f ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x4533c3c9 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x46e322ed __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x46f4099a ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x4c01a47c ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x4c2b011a ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x4e369c7a rate_control_send_low -EXPORT_SYMBOL net/mac80211/mac80211 0x4edc99b9 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0x52678d5d ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0x52cbf4dc ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x540bc4f7 ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x55f97e4f ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x59c61fd8 ieee80211_start_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x5b591ed1 ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0x5d78e24a ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x5f0cc384 ieee80211_stop_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x63f66be0 ieee80211_csa_update_counter -EXPORT_SYMBOL net/mac80211/mac80211 0x667440e5 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0x6a720afe ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0x6d9ea75a ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x6f447ba9 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0x73ccc976 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x79f5a3f5 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x7ba7ba9a ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0x7c6707c0 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x7caa205c ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x8d3cf267 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x9132f04a ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0x9215d60f ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x94547607 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x9b7e4fef ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0xa1697c58 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xa518280f ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0xa987dec6 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xabf2d882 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xafb35ee1 ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xb0775b9c ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0xb50d8a6e ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xb649b650 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xb6ec5bb0 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xb7b6c0f1 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0xb8555be3 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0xb8aedcbc ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0xb8b62306 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0xb9ee8f41 ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0xc0d7c550 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0xc75c0af1 ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xc9a9f68a __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xc9cbf50e ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xcaf99e74 ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xcda39a29 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0xd20d1fba ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xd3bd1580 ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xd5b4cdbf ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0xd9810ed9 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xdb9fd539 ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0xe2214cab ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0xe25c2c40 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xeb7de2c5 ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xf3880288 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xfd3bf4ca ieee80211_probereq_get -EXPORT_SYMBOL net/mac802154/mac802154 0x0a8ef6e9 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x0e0717cd ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x12188669 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x1cefa506 ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x7245bc8f ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x9854a7b1 ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0xa4b0a935 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0xb2d86c3d ieee802154_alloc_hw -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x104aff24 ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x11a9a4f8 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x13443111 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x17234c84 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1d3adf26 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2140d4c6 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x444261b8 ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6bbb0cde register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8798fb81 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8968d24b ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8f305863 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x986b9ac1 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdb801ee0 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf492cc70 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x5b340428 __nf_ct_ext_add_length -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x645892f3 nf_conntrack_untracked -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xf335c983 __nf_ct_ext_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x2f985efa __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x421fb7c3 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x4cbec7f4 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0x5639d9ed nf_nat_used_tuple -EXPORT_SYMBOL net/netfilter/nf_nat 0x571b31d3 nf_xfrm_me_harder -EXPORT_SYMBOL net/netfilter/nf_nat 0xf72f1268 nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/x_tables 0x233d033e xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x253e8b44 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x40e62f91 xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x5d15e4ce xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x77811e2f xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0x885b221d xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xa3c39676 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xae933ac1 xt_find_target -EXPORT_SYMBOL net/netfilter/x_tables 0xcad4a8e3 xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xd71b0cc8 xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xdba5ca64 xt_find_match -EXPORT_SYMBOL net/nfc/hci/hci 0x0ac51c91 nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0x2fa26798 nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0x32f02f85 nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x48d62661 nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0x65abb6ed nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x66ebeb87 nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x75ac8b91 nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0x7b92bcc6 nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0x80c9b937 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0xb025983f nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0xb943487d nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xbd79b224 nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xc11880ce nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0xc1c97785 nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0xc29d4f01 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0xc2e30094 nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0xcdaf53ea nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0xd743be6b nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0xd79305d7 nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xea47e911 nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xf6fd3ede nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0x08705e4c nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x08bc7d70 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0x0a83f474 nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0x0df090c6 nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x17969053 nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0x2019569a nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0x20cc760c nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0x237a61e3 nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x27b299a0 nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x487bd124 nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x58190089 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0x5f152e2f nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0x6c6566e8 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0x6dcdf9ef nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0x77fb72e6 nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0x785eb396 nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0x84ec3cb7 nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x9f88d13a nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0xa16ff49f nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0xaf5d2c23 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0xb052f82c nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0xb30fd0b0 nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xc8999a60 nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xcb5bbca6 nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xcb6fb35c nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0xd848fe5a nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0xe722bce1 nci_get_conn_info_by_id -EXPORT_SYMBOL net/nfc/nci/nci 0xfefd981d nci_send_cmd -EXPORT_SYMBOL net/nfc/nfc 0x008141e2 nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0x037e995a nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0x080bb68b nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0x0fb890fe nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x1171c281 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0x2195384c __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0x2bfd8fec nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0x35bfdc01 nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0x35dddbb0 nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x36a9e89d nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x3f08b256 nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0x69ba2dc4 nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0x69e7269e nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x6ab85fd9 nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0x788685c0 nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x7af1b3ec nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0x81514e1d nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0xa45343fb nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0xad327336 nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0xb03b9c00 nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0xb716e9e1 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0xbb97b670 nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0xd6636e67 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0xff270d80 nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc_digital 0x04896835 nfc_digital_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x37c904a5 nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x563f2c4e nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xc56c9303 nfc_digital_free_device -EXPORT_SYMBOL net/phonet/phonet 0x44bfcccf phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0x569d2e9f pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0x5de2940b pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0x9cbe8e8a phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0xb9781ca6 pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0xea6995d9 phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0xeae9d1fd pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0xf08a8c4b phonet_proto_register -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x0ac9a6d9 rxrpc_kernel_free_skb -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x152c262b rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1d99ff66 rxrpc_kernel_reject_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x211ef16d rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x235f2d7a rxrpc_kernel_intercept_rx_messages -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x246708aa rxrpc_kernel_get_abort_code -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4b4da12c key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4ec6b029 rxrpc_kernel_is_data_last -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x5edac064 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x6a50f79a rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x7788369e rxrpc_kernel_get_error_number -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xa6f43ea5 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xbe457b80 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xced21549 rxrpc_kernel_data_delivered -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd4fb7960 rxrpc_kernel_accept_call -EXPORT_SYMBOL net/sctp/sctp 0xc9499932 sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x6b9c369f gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x7600474c gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x98b20431 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/sunrpc 0x3cba279d svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0xbeb8c9c3 xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0xe2aeca1c xdr_truncate_encode -EXPORT_SYMBOL net/wimax/wimax 0x32ead3e5 wimax_reset -EXPORT_SYMBOL net/wimax/wimax 0x4c7b1319 wimax_rfkill -EXPORT_SYMBOL net/wireless/cfg80211 0x05ab2553 __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x05d9d613 cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0x0658fc39 cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x07a3f57b cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x07e54b80 cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0x08e55dbb wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0x08e98d07 cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x0906dfad cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x0f49fefe cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x108581f3 cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0x162ac0ae cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0x247dbd5c ieee80211_data_from_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0x2786e823 cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0x28817ed0 wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0x2926a056 cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x2b29cfa7 regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0x2bfb3f2a wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0x2d83db23 cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x32c8128d cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0x365ee247 __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x3a654e99 regulatory_set_wiphy_regd_sync_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x3b81a4fc wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x3db5e899 cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x3e989bc5 cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x3ed7aa59 cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0x3fd3afb0 cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0x47f2465b cfg80211_roamed_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x4dea98a9 cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x5446f640 cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x54932736 cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x54f9935a cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x59fd8682 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x5bf7871f cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0x5d5ec7e3 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0x5e86c94b cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x61bb0fa8 cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0x63d1d645 cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0x6520e528 cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0x65452cb7 cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x665e7684 cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0x6665210c cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x66fc460d ieee80211_data_to_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0x676e787e ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0x78827def cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x7b2bc0ec freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x80d88dfe cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x8432fd2c cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x8ee5f816 __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x9024092f cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x90b327a4 cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0x90c17d05 cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x918eb39b cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0x91d7a142 ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x930a3925 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x932432be cfg80211_connect_result -EXPORT_SYMBOL net/wireless/cfg80211 0x93e11ec2 cfg80211_report_obss_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x99d40278 cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x9a364ddb cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0x9bd736c2 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0x9f210c09 __ieee80211_get_channel -EXPORT_SYMBOL net/wireless/cfg80211 0xa1425906 ieee80211_channel_to_frequency -EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xa511bebb cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0xa9bbc705 cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0xaa667474 cfg80211_sched_scan_stopped_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0xabe12d99 cfg80211_rx_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xadb36b95 cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0xba95a002 wiphy_rfkill_set_hw_state -EXPORT_SYMBOL net/wireless/cfg80211 0xba9bdca5 cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xbb559899 cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xc586d8de cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0xc7e25bd3 cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xc9a33dab cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0xd50b0a22 ieee80211_ie_split -EXPORT_SYMBOL net/wireless/cfg80211 0xdae05d41 cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdc89863e cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xe095c68c cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0xe870d4bc cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0xe8ae812a ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0xee160f5b cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xf1efed75 wiphy_rfkill_stop_polling -EXPORT_SYMBOL net/wireless/cfg80211 0xf81043c9 wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0xfae377a7 regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0xfdff8649 wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0xfe4a9812 cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie -EXPORT_SYMBOL net/wireless/cfg80211 0xffe59825 cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/lib80211 0x370d40bf lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x3b678526 lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0x688c82e9 lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x6f9bd37b lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xa2de4f94 lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0xf6fc0113 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL sound/ac97_bus 0xaaf1ee6b ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xf794157f snd_mixer_oss_ioctl_card -EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3b17c9d9 snd_seq_kernel_client_enqueue_blocking -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x90a74939 snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue -EXPORT_SYMBOL sound/core/seq/snd-seq 0xd7d25fd4 snd_seq_event_port_attach -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0xfc5a54ae snd_seq_kernel_client_write_poll -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x4c05d708 snd_seq_device_new -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x205395a0 snd_midi_event_encode_byte -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x614705ff snd_midi_event_no_status -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x7746bb9b snd_midi_event_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x79794472 snd_midi_event_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x991c0f60 snd_midi_event_reset_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xef8fa3d2 snd_midi_event_free -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xf3f0324e snd_midi_event_reset_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xf6fdda44 snd_midi_event_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x8d8fd9bd snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x005ab4d0 snd_seq_root -EXPORT_SYMBOL sound/core/snd 0x06851252 snd_device_register -EXPORT_SYMBOL sound/core/snd 0x06d39c8a snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0x0a905bcf snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0x0bfe6c21 snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0x0c7950a2 snd_register_device -EXPORT_SYMBOL sound/core/snd 0x115efa5a snd_card_free -EXPORT_SYMBOL sound/core/snd 0x15139909 snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0x17e237a9 snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program -EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer -EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x1e843b56 snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0x249b1403 snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x26e08ead snd_card_new -EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0x2b01cd88 snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0x2e923221 snd_component_add -EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio -EXPORT_SYMBOL sound/core/snd 0x346e1cda snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0x37ea1bcf snd_device_new -EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x3eb9e3af snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x4e5898f4 snd_power_wait -EXPORT_SYMBOL sound/core/snd 0x510426df snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0x5c61397a snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0x656dde9a snd_info_register -EXPORT_SYMBOL sound/core/snd 0x6fba8157 snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0x6fbf2dba snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable -EXPORT_SYMBOL sound/core/snd 0x7d706c0e snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0x83fe7f21 snd_jack_new -EXPORT_SYMBOL sound/core/snd 0x84f892a8 snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0x87cd491e snd_ctl_unregister_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x88a64f9d snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0x89f88cb1 _snd_ctl_add_slave -EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x913ae38c snd_cards -EXPORT_SYMBOL sound/core/snd 0x9150381c snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0x9578a793 snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0xa01863f0 snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id -EXPORT_SYMBOL sound/core/snd 0xa30f9da5 snd_card_register -EXPORT_SYMBOL sound/core/snd 0xa9763349 snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0xb289187c snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xba242282 snd_ctl_register_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0xbdce3548 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0xc0a7061a snd_device_free -EXPORT_SYMBOL sound/core/snd 0xc64c4fd8 snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0xd07ec301 snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0xd45aff48 snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0xdcb51c4b snd_jack_report -EXPORT_SYMBOL sound/core/snd 0xdf8047b1 snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0xe2441e25 snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0xf9d897e3 snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0xfde59b77 snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0xfee1bfec snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio -EXPORT_SYMBOL sound/core/snd-hwdep 0x9a6430c3 snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-pcm 0x0229ffdc snd_pcm_new_internal -EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any -EXPORT_SYMBOL sound/core/snd-pcm 0x03f29ffe snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x04c414b8 snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x052d2eb4 snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x05a91959 snd_pcm_lib_writev -EXPORT_SYMBOL sound/core/snd-pcm 0x06072619 snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x06b310c9 snd_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x0baad4e1 snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0x0c14e379 snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL sound/core/snd-pcm 0x13ce1430 snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0x14b7550e snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x204faa95 snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x3c798cea snd_pcm_notify -EXPORT_SYMBOL sound/core/snd-pcm 0x44293515 snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0x49f7c731 snd_pcm_lib_read -EXPORT_SYMBOL sound/core/snd-pcm 0x4d3c2d63 snd_pcm_lib_readv -EXPORT_SYMBOL sound/core/snd-pcm 0x4e4e16d3 snd_pcm_lib_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x4f1ad64a snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x4fc0d3a4 snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL sound/core/snd-pcm 0x5565d3ef snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x5898dcba snd_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x5b7018b7 snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL sound/core/snd-pcm 0x66876c6f snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0x67465528 snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width -EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x77983074 snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x7a6ab66f snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0x803abc24 snd_pcm_hw_rule_noresample -EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x903f9c75 snd_pcm_lib_write -EXPORT_SYMBOL sound/core/snd-pcm 0x9103f395 snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x925e01dc snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0x9268abed _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0x9cf91fac snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0x9d2ca65e snd_dma_alloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xa273eb6e snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0xa3381a15 snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0xa43b075b snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0xa49ab72e snd_pcm_suspend -EXPORT_SYMBOL sound/core/snd-pcm 0xa4f50be8 snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xb341d277 snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xbbefecbb snd_pcm_mmap_data -EXPORT_SYMBOL sound/core/snd-pcm 0xc4c517f7 snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0xc4f94a8e snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0xca34c226 snd_sgbuf_get_chunk_size -EXPORT_SYMBOL sound/core/snd-pcm 0xcb4e4c3c snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xce6b1dcd snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xf0469b87 snd_pcm_lib_mmap_iomem -EXPORT_SYMBOL sound/core/snd-pcm 0xf3937129 snd_pcm_sgbuf_ops_page -EXPORT_SYMBOL sound/core/snd-pcm 0xf3ec47b8 snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0xf62271dc snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0xfc4145ee snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0xfc47ddbc snd_pcm_limit_hw_rates -EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x12e53f5a snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x32ac9bfa snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0x344a37bc __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4071eff4 snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0x5f235e4a snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0x65ed754a snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x7694018d snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0x795950ff snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x7d45af67 snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x82384686 snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x88697158 snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0x9cc471ae snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0xa6c633d9 snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0xb4de7cf5 __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0xdd47f937 snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe9370306 snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe9950617 snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0xeaf00711 snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0xec1feba3 snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-timer 0x3b6ad094 snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0x5cadfde6 snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0x693ac939 snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0x74270507 snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0x835ca9ce snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0x8ab0c04f snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0x934d1110 snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0x99832955 snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0xa128e664 snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0xb0a29e55 snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0xefb52ce0 snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0xf1ba6a8b snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0xfea3a1b3 snd_timer_pause -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x429ff83e snd_mpu401_uart_new -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x08d5f001 snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x292f53a5 snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x30968991 snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x69ea3689 snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x80ed3491 snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x83c96d87 snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x89a6ed9a snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8d741f7c snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd6925e25 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x0e695adc snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x4ebbdef0 snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5612dd15 snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9a2fdd61 snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xabdb498f snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xbfdd0147 snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc2da38c4 snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc9820975 snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xddcc692d snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x06c7263c fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0a3c88b3 amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x18083d70 amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1d598f63 amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2177161a amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x23bacb58 fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2a0e85ae cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x30a35cbd cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x31fbbf31 amdtp_stream_stop -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3a3d267e amdtp_stream_pcm_pointer -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x47c3aa4a cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6d348fc3 avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x73f14c4d snd_fw_async_midi_port_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x82158096 amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9885b4ea snd_fw_async_midi_port_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa46dd543 fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xab979842 fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb120ee45 cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc04bcbf2 amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc9c620bf iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcf46b415 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd8e89448 fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd96b69f2 amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe0368be5 amdtp_stream_start -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe0f99ff1 snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe1b28430 avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe48fbc59 fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe88d8cae amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf0b93f06 iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf159bbf7 cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfb802e34 fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xffa6e6dd avc_general_get_plug_info -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x835c00ee snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xac0a119a snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0ebeaf91 snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0eef137f snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1139079b snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x14623fd2 snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x203149c2 snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7f5641e0 snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xe7d38b27 snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf8f0634f snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x5ebb37ac snd_ak4117_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x97d0b331 snd_ak4117_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xbcf2ecbc snd_ak4117_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xc7b55429 snd_ak4117_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xed8df312 snd_ak4117_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xfcd7e3a6 snd_ak4117_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x3dc227b4 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x62287107 snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xdb249fba snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xfaa96da6 snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xa0dd8969 snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xf3b68680 snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x18c75cf8 snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x4bd60489 snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x59d1ba91 snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xbaaf9203 snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xda95875b snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xe40c8809 snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x38efeae0 snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x46de6ce4 snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x474e04ec snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xa29376e5 snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0xb60e5d1f snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0xf340f5fa snd_i2c_readbytes -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x0d5976ee snd_sbmixer_suspend -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x1959f455 snd_sbdsp_create -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x1b1935c2 snd_sbmixer_add_ctl -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x1cb77920 snd_sbmixer_new -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x4b319b7a snd_sbmixer_resume -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x747e00ec snd_sbmixer_write -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x7499f0aa snd_sbmixer_read -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x89ef7627 snd_sbdsp_command -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xb329dfac snd_sbdsp_get_byte -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd6e58534 snd_sbdsp_reset -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x04cc947d snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x05c95093 snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x129dfcd0 snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x32abab04 snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x38d0e9b8 snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x668dbf5b snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x68966044 snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6ceb1e91 snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6f3cbf47 snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7a5896cc snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9294def5 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xafe64a56 snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc25c6ec4 snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc9283075 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd885c920 snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xddcf12d4 snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfb832595 snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0xc6c8ff0e hpi_send_recv -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x16e4663b snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x26b873b1 snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x30c47eac snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x337169c3 snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x37f17476 snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x453a2194 snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x6fb80906 snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7fe40d42 snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xfb648270 snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xaa95a3b8 snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xbd2d282d snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xd36f732f snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x05606c6b oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0a02732b oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0c5a06bf oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1414efe2 oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1cc9b6f5 oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x22be2b4d oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x69244dbc oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6d2085b6 oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6fb0468f oxygen_pci_remove -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x713b63b1 oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x79f92cb2 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x866658e7 oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x98c0fda7 oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9bb603e2 oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa2810346 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa7ab7b44 oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xad456e41 oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc6d4cc01 oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcae8cfd3 oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf8e78cb5 oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfce5ed58 oxygen_write8 -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x08784d4c snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x093ec01c snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x1ec2543d snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x8be2e61f snd_trident_write_voice_regs -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xb2441cdb snd_trident_stop_voice -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x0c306afb tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x2ebfa736 tlv320aic23_probe -EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-dsp 0xdc045797 sst_dma_free -EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-dsp 0xf8da79c1 sst_dma_new -EXPORT_SYMBOL sound/soc/snd-soc-core 0x1eb30f59 snd_soc_alloc_ac97_codec -EXPORT_SYMBOL sound/soundcore 0x0abbb4e2 register_sound_special -EXPORT_SYMBOL sound/soundcore 0x2d9ba139 register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x462e53a7 sound_class -EXPORT_SYMBOL sound/soundcore 0x59d9cc2a register_sound_midi -EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xf1480759 register_sound_special_device -EXPORT_SYMBOL sound/soundcore 0xf66d63b3 register_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x0f0eae1a snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x3603b9c6 snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x64c5e33a snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x8cd8412f snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xc590ea60 snd_emux_new -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xf7ff51d0 snd_emux_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x036f81ff __snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x19e813b4 snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x446a6f46 snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0x781fbb7b __snd_util_memblk_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0x7adbd141 snd_util_mem_avail -EXPORT_SYMBOL sound/synth/snd-util-mem 0xb4aa3fb8 snd_util_memhdr_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0xde7bb376 snd_util_memhdr_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0xfb86e364 __snd_util_mem_alloc -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xe0445a3d snd_usbmidi_create -EXPORT_SYMBOL ubuntu/hio/hio 0x10815e58 ssd_submit_pbio -EXPORT_SYMBOL ubuntu/hio/hio 0x34b576f2 ssd_register_event_notifier -EXPORT_SYMBOL ubuntu/hio/hio 0x400fbd8f ssd_get_temperature -EXPORT_SYMBOL ubuntu/hio/hio 0x583d3f87 ssd_get_version -EXPORT_SYMBOL ubuntu/hio/hio 0x65245506 ssd_get_pciaddr -EXPORT_SYMBOL ubuntu/hio/hio 0x77515e77 ssd_get_label -EXPORT_SYMBOL ubuntu/hio/hio 0x86dd2261 ssd_set_otprotect -EXPORT_SYMBOL ubuntu/hio/hio 0xb05a0f2b ssd_unregister_event_notifier -EXPORT_SYMBOL ubuntu/hio/hio 0xd41f60ae ssd_set_wmode -EXPORT_SYMBOL ubuntu/hio/hio 0xf1ca35e9 ssd_bm_status -EXPORT_SYMBOL ubuntu/hio/hio 0xf40e3f4e ssd_reset -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x00322056 VBoxGuest_RTMpCpuIdFromSetIndex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x01674ab7 VBoxGuest_RTSemMutexRequestNoResume -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0429a6f0 VBoxGuest_RTThreadCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x057fd386 VBoxGuest_RTR0MemObjLockKernelTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0731e88d VBoxGuest_RTAssertMsg2Add -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x079b132d VBoxGuest_RTMemTmpAllocTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x08ed98db VBoxGuest_RTMemDupExTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x09a88bc3 VBoxGuest_RTTimeExplode -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0a442050 VBoxGuest_RTAssertAreQuiet -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0b94344b VBoxGuest_g_pszRTAssertExpr -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0beb235d VBoxGuest_RTMpIsCpuWorkPending -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0cd1b64d VBoxGuest_RTMpCurSetIndex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0d10d1ca VBoxGuest_RTTimeNormalize -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0f3e114a VBoxGuest_RTSemSpinMutexCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0f884b3a VBoxGuest_RTStrToInt64Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x11ced39a VBoxGuest_RTSemEventWaitEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x11e95d2e VBoxGuest_RTLogLoggerEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x11f80121 VBoxGuest_RTSemMutexRelease -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x12614b82 VBoxGuest_RTStrToInt8Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x12f430f3 VBoxGuest_RTAssertMsg2AddV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x147206e1 VBoxGuest_RTStrToUInt64 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x151752ec VBoxGuest_RTHeapSimpleGetFreeSize -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1520b2c8 VBoxGuest_RTLogCreateEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x160b14d4 VBoxGuest_RTMpGetPresentSet -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1926b25c VBoxGuest_RTLogRelLogger -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x19790b4c VBoxGuest_RTLogFlags -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x197acd65 VBoxGuest_RTR0Init -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1a6d7d86 VBoxGuest_RTThreadPreemptIsEnabled -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1ae28abb VBoxGuest_RTThreadIsSelfAlive -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1c3b0f90 VBoxGuest_RTR0MemObjAddressR3 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1dc5ebbe VBoxGuest_RTThreadWaitNoResume -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1f3e577b VBoxGuest_RTMemTmpAllocZTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1f70d065 VBoxGuest_RTErrConvertToErrno -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2003169b VBoxGuest_RTSpinlockAcquire -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x20728ae6 VBoxGuest_RTThreadCreateV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x20d9d625 VBoxGuest_RTTimeToString -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x22058511 VBoxGuest_RTSemMutexRequestDebug -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2254228b VBoxGuest_RTMpGetPresentCount -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2387f039 VBoxGuest_RTMpIsCpuPresent -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x25219f5e VBoxGuest_RTR0Term -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2580d04c VBoxGuest_RTSemEventMultiSignal -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2632a013 VBoxGuest_RTLogRelLoggerV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x29708cf0 VBoxGuest_RTR0MemUserCopyTo -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2a2284fb VBoxGuest_RTAssertMayPanic -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2af3453c VBoxGuest_RTLogPrintf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2c2b5b46 VBoxGuest_RTTimerGetSystemGranularity -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2cfefa48 VBoxGuest_RTLogBackdoorPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2d445217 VBoxGuest_RTStrToInt64Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2d581c06 VBoxGuest_RTMpCurSetIndexAndId -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2eca7777 VBoxGuest_RTHeapSimpleAlloc -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2fb7502f VBoxGuest_RTThreadSetName -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x30e40c69 VBoxGuest_RTLogSetDefaultInstanceThread -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3168cadf VBoxGuest_RTTimeSystemMilliTS -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x31ac4c5f VBoxGuest_RTThreadIsInitialized -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x33d7313a VBoxGuest_RTMpCpuId -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x343e3e1b VBoxGuest_RTLogGetDestinations -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3480f453 VBoxGuest_RTSemMutexDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x358153bb VBoxGuest_RTStrCopy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x362275e8 VBoxGuest_RTMemContFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x372d5e29 VBoxGuest_RTPowerNotificationDeregister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x376d539c VBoxGuest_RTThreadGetType -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x381d7c24 VBoxGuest_RTMemAllocVarTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x383a0b9d VBoxGuest_RTMpPokeCpu -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3a47392e VBoxGuest_RTErrConvertFromErrno -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3b04381e VBoxGuest_RTSemEventMultiReset -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3b231c95 VBoxGuest_RTTimeNanoTS -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3bcf543a VBoxGuest_RTLogGetDefaultInstanceEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3d00f113 VBoxGuest_g_u32RTAssertLine -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3de43f66 VBoxGuest_RTSemEventCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3dfc9ab8 VBoxGuest_RTSemMutexIsOwned -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3fbf3c07 VBoxGuest_RTThreadIsInInterrupt -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x40996438 VBoxGuest_RTSemEventMultiWait -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x42ecc6d1 VBoxGuest_RTThreadPreemptRestore -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x43fdd8d9 VBoxGuest_RTSemFastMutexRelease -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x44cfbc28 VBoxGuest_RTThreadGetNative -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x461fa9fe VBoxGuest_RTLogRelGetDefaultInstance -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x46c14223 VBoxGuest_RTLogSetCustomPrefixCallback -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x49f1be17 VBoxGuest_RTThreadFromNative -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x49f4d19c VBoxGuest_RTLogDefaultInstance -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4ba5006e VBoxGuest_RTLogPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4bbec091 VBoxGuest_RTR0MemObjGetPagePhysAddr -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4c7d8a56 VBoxGuest_RTSemEventMultiCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4cac3157 VBoxGuest_RTLogFormatV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4cecc93d VBoxGuest_RTR0MemObjEnterPhysTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4cf913a1 VBoxGuest_RTThreadGetName -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4ea67110 VBoxGuest_RTStrToInt32 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4f041d39 VBoxGuest_RTMemContAlloc -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4fc8e10c VBoxGuest_RTMpGetSet -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4fe9e5f1 VBoxGuest_RTR0MemObjProtect -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5040043b VBoxGuest_RTSemEventWaitExDebug -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x508bb2c4 VBoxGuest_RTLogSetDefaultInstance -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x51ec28bd VBoxGuest_RTLogGetFlags -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x53265abc VBoxGuest_RTLogSetBuffering -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5352c915 VBoxGuest_RTSemMutexRequest -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x54098f34 VBoxGuest_RTTimerStop -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x54ddf87c VBoxGuest_RTThreadPreemptIsPossible -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5595fc22 VBoxGuest_RTSpinlockDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x56596e82 VBoxGuest_RTThreadSelfName -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x56c939fe VBoxGuest_RTAssertMsg1 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5847ae52 VBoxGuest_RTMpGetCount -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x58d1b65e VBoxGuest_RTThreadPreemptIsPending -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x598d3622 VBoxGuest_RTAssertMsg2AddWeak -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5a97195c VBoxGuest_RTHeapSimpleRelocate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5aa6ed66 VBoxGuest_RTPowerSignalEvent -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5b3a5164 VBoxGuest_RTLogWriteUser -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5cc0b1b2 VBoxGuest_RTProcSelf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5d3b1bd6 VBoxGuest_RTSemSpinMutexRelease -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5e071eb3 VBoxGuest_RTSemEventMultiDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5e17b70e VBoxGuest_RTSpinlockRelease -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5e75c570 VBoxGuest_RTStrToUInt16 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5eaea89a VBoxGuest_RTSemFastMutexCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5ee65bb7 VBoxGuest_RTStrToUInt16Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5ef42fe5 VBoxGuest_RTTimerStart -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5f2f48bb VBoxGuest_RTLogWriteStdErr -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x61143878 VBoxGuestIDCCall -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6173b384 VBoxGuest_RTMpOnPairIsConcurrentExecSupported -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x61770e8c VBoxGuest_RTStrToUInt32 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x63378722 VBoxGuest_RTLogBackdoorPrintf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x634946f7 VBoxGuest_RTMpIsCpuOnline -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x637a1d69 VBoxGuest_RTLogWriteStdOut -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6381bb97 VBoxGuest_RTStrFormat -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x63b1fde6 VBoxGuest_RTMpCpuIdToSetIndex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x63bc10b0 VBoxGuest_RTLogCreateExV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x658cd915 VBoxGuest_RTR0MemObjFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x67135d2b VBoxGuest_RTSemFastMutexRequest -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6862822a VBoxGuest_RTHeapSimpleSize -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x695d63ad VBoxGuest_RTMpNotificationDeregister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6b01bbf3 VBoxGuest_RTMpOnSpecific -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6b58b79d VBoxGuest_RTSemSpinMutexDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6b91f1ce VBoxGuest_RTStrFormatTypeDeregister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6c8460ac VBoxGuest_RTLogRelGetDefaultInstanceEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6cec7c3b VBoxGuest_RTTimerCreateEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6d8e9c87 VBoxGuest_RTTimeNow -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6e8541b7 VBoxGuest_RTAssertMsg2Weak -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x704e1f6f VBoxGuest_RTAssertMsg2AddWeakV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x70867323 VBoxGuest_RTStrToUInt8Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x71060970 VBoxGuest_RTStrToUInt16Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x716e3be3 VBoxGuest_RTMpGetOnlineCount -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x729cc4ab VBoxGuest_RTR0MemObjSize -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x72ff1bc3 VBoxGuest_RTTimeIsLeapYear -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x730a01b0 VBoxGuest_RTLogRelSetDefaultInstance -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x74812dde VBoxGuest_RTStrToInt32Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x759e7492 VBoxGuest_RTSemFastMutexDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x764ecb18 VBoxGuest_RTR0MemObjAllocLowTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x76a3c47b VBoxGuest_RTMemAllocZVarTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x79d59e24 VBoxGuest_RTSemSpinMutexRequest -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7d0d9dae VBoxGuest_RTR0MemObjAllocPhysNCTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7d15e878 VBoxGuest_RTMpGetOnlineSet -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7dcc30d8 VBoxGuest_RTStrToInt32Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7e29739a VBoxGuest_RTStrToInt16 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7f0a40ea VBoxGuest_RTLogComPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7fc5bdcf VBoxGuest_RTR0MemObjAllocPhysTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8196c4e6 VBoxGuest_RTSemSpinMutexTryRequest -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x82e081bc VBoxGuest_RTStrFormatTypeSetUser -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x83e78406 VBoxGuest_RTR0MemAreKrnlAndUsrDifferent -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x841e42e9 VBoxGuest_RTSemMutexCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8484a0d6 VBoxGuest_RTStrToInt16Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x84e227f6 VBoxGuest_RTThreadIsSelfKnown -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x86120100 VBoxGuest_RTLogDumpPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x867be0d2 VBoxGuest_RTLogDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x868b79a5 VBoxGuest_RTStrPrintf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x879761cf VBoxGuest_RTR0MemObjAllocPhysExTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x87da3860 VBoxGuest_RTAssertSetQuiet -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8826d9de VBoxGuest_RTMpGetMaxCpuId -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x883d496c VBoxGuest_RTMpGetCoreCount -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x885274fe VBoxGuest_RTThreadUserWaitNoResume -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x89117f68 VBoxGuest_RTMemExecAllocTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8a3c154f VBoxGuest_RTR0MemObjLockUserTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8a454b31 VBoxGuest_RTSemEventGetResolution -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8e01e3fd VBoxGuest_RTStrFormatV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8f1309e3 VBoxGuest_RTAssertMsg2 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x90312938 VBoxGuest_RTStrToUInt64Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x91204a9b VBoxGuest_RTTimeSpecToString -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x916e42f0 VBoxGuest_RTAssertMsg1Weak -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9264ffc0 VBoxGuest_RTLogRelPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x926bf9f7 VBoxGuest_RTThreadPreemptDisable -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x92e716ae VBoxGuest_RTLogGetDefaultInstance -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x94f7365f VBoxGuest_RTPowerNotificationRegister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x95fa480d VBoxGuest_RTSpinlockCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x961772f3 VBoxGuestIDCOpen -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x967ea4b6 VBoxGuest_RTStrToInt64 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x96893ce3 VBoxGuest_RTR0MemObjAllocPageTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x96f2e65b VBoxGuest_RTR0MemUserCopyFrom -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9796440b VBoxGuest_RTSemEventWaitNoResume -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x97eb2414 VBoxGuest_RTThreadNativeSelf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9874cd16 VBoxGuest_RTMpIsCpuPossible -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9909ff3d VBoxGuest_g_pszRTAssertFunction -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9a2ee747 VBoxGuest_RTSemEventDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9bcc539d VBoxGuest_RTThreadUserReset -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9cd9213f VBoxGuest_RTR0MemKernelIsValidAddr -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9d6b527c VBoxGuest_RTThreadWait -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9dbd63d6 VBoxGuest_RTStrPrintfEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9eaecd9d VBoxGuest_RTStrPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9f301085 VBoxGuest_RTTimeSpecFromString -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9f4f616a VBoxGuest_RTLogLogger -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9fb0596d VBoxGuest_RTMemDupTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa168a070 VBoxGuest_RTLogLoggerExV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa34eb1b3 VBoxGuest_RTTimeSystemNanoTS -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa486e710 VBoxGuestIDCClose -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa554bd97 VBoxGuest_RTLogFlushRC -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa5a26703 VBoxGuest_RTMpNotificationRegister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa696baed VBoxGuest_RTR0MemObjAddress -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa6a22472 VBoxGuest_RTThreadUserWait -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa6de1bcd VBoxGuest_RTTimerChangeInterval -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa86c5a96 VBoxGuest_RTSemEventSignal -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xaba9bc9c VBoxGuest_RTLogCloneRC -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xac990d74 VBoxGuest_RTTimerCanDoHighResolution -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xacaac41d VBoxGuest_g_szRTAssertMsg1 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xad4fdf4e VBoxGuest_RTSemMutexRequestNoResumeDebug -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xad649089 VBoxGuest_RTStrToUInt64Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xae3e0ecd VBoxGuest_RTLogRelPrintf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xaf6ffbfc VBoxGuest_RTThreadSleep -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb05840a7 VBoxGuest_RTSemEventMultiWaitExDebug -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb1cc9148 VBoxGuest_RTLogWriteCom -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb42ea0e3 VBoxGuest_g_pszRTAssertFile -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb444f4a1 VBoxGuest_RTLogDestinations -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb6941b2e VBoxGuest_RTStrToUInt8 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb8c6e615 VBoxGuest_RTStrToUInt32Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb8ca8fcb VBoxGuest_RTMpOnPair -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb8df2b3a VBoxGuest_RTAssertShouldPanic -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb9b070b7 VBoxGuest_RTAssertMsg2V -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb9d7a27d VBoxGuest_RTHeapSimpleDump -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbaa97421 VBoxGuest_g_szRTAssertMsg2 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbb1ead73 VBoxGuest_RTR0MemKernelCopyTo -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbba928e6 VBoxGuest_RTHeapSimpleGetHeapSize -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbc4d30f6 VBoxGuest_RTR0MemObjAllocContTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbc85935a VBoxGuest_RTR0MemKernelCopyFrom -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbe4e6114 VBoxGuest_RTLogFlushToLogger -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbffedb55 VBoxGuest_RTMemAllocExTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc1095c44 VBoxGuest_RTTimeImplode -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc1b3ada4 VBoxGuest_RTAssertMsg2WeakV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc3a1e5de VBoxGuest_RTLogGetGroupSettings -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc3fee96e VBoxGuest_RTMemAllocTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc4bd5fd8 VBoxGuest_RTStrPrintfExV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc63cc2f0 VBoxGuest_RTR0MemExecDonate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc71362b7 VBoxGuest_RTLogRelSetBuffering -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc8fbf4aa VBoxGuest_RTHeapSimpleInit -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc91cea98 VBoxGuest_RTStrCopyEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc9a6a8e7 VBoxGuest_RTThreadCreateF -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcaee97bf VBoxGuest_RTLogComPrintf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcb2a6b54 VBoxGuest_RTMemExecFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xceae9d6a VBoxGuest_RTStrConvertHexBytes -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd14e8ec2 VBoxGuest_RTTimerDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd1f3f0b9 VBoxGuest_RTSemEventWait -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd2a37e73 VBoxGuest_RTTimerReleaseSystemGranularity -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd2d290ab VBoxGuest_RTStrToUInt8Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd3a125cb VBoxGuest_RTR0MemObjMapKernelTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd46c35d4 VBoxGuest_RTMpOnAll -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd4b597fc VBoxGuest_RTStrCopyP -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd5bfc897 VBoxGuest_RTHeapSimpleAllocZ -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd637869e VBoxGuest_RTMemReallocTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd69bc8e4 VBoxGuest_RTR0MemObjReserveUserTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd706d85c VBoxGuest_RTTimeFromString -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd88c9330 VBoxGuest_RTLogLoggerV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd984a7f4 VBoxGuest_RTStrFormatTypeRegister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdc700594 VBoxGuest_RTSemEventMultiGetResolution -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xde9ca744 VBoxGuest_RTThreadYield -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdfbc69bb VBoxGuest_RTThreadPreemptIsPendingTrusty -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe054d759 VBoxGuest_RTMemTmpFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe095cef8 VBoxGuest_RTThreadSetType -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe0dc7391 VBoxGuest_RTThreadIsMain -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe1c6b3d7 VBoxGuest_RTR0MemObjMapKernelExTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe2765c54 VBoxGuest_RTR0AssertPanicSystem -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe38d562c VBoxGuest_RTStrFormatNumber -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe3fd228f VBoxGuest_RTTimeMilliTS -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe7e42113 VBoxGuest_RTThreadSleepNoLog -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe88dae73 VBoxGuest_RTMemFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe8fad285 VBoxGuest_RTSemEventMultiWaitNoResume -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xea2f2944 VBoxGuest_RTStrToInt8Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xea38e4f7 VBoxGuest_RTLogDefaultInstanceEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xea71842b VBoxGuest_RTMpGetPresentCoreCount -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xebeefa0e VBoxGuest_RTR0ProcHandleSelf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xec3cc9a6 VBoxGuest_RTSemEventMultiWaitEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xee774b8e VBoxGuest_RTLogWriteDebugger -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xeea4ee73 VBoxGuest_RTR0MemObjMapUserTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xef6e1359 VBoxGuest_RTMpOnOthers -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf02f22ab VBoxGuest_RTMemAllocZTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf0dbb702 VBoxGuest_RTHeapSimpleFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf26294bb VBoxGuest_RTR0MemObjIsMapping -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf2aa79bb VBoxGuest_RTThreadUserSignal -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf3943009 VBoxGuest_RTTimerRequestSystemGranularity -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf5d89855 VBoxGuest_RTLogGroupSettings -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf69aec24 VBoxGuest_RTStrToInt16Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf7397dd2 VBoxGuest_RTAssertSetMayPanic -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf8113d66 VBoxGuest_RTMpOnAllIsConcurrentSafe -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf956a4e8 VBoxGuest_RTLogFlush -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf958d9cb VBoxGuest_RTLogCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfa7d95c9 VBoxGuest_RTR0MemUserIsValidAddr -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfb31e12b VBoxGuest_RTStrToUInt32Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfba93ac9 VBoxGuest_RTR0MemObjReserveKernelTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfbc67e88 VBoxGuest_RTMemFreeEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfe72cef7 VBoxGuest_RTStrToInt8 -EXPORT_SYMBOL vmlinux 0x0019a068 to_nd_btt -EXPORT_SYMBOL vmlinux 0x001b4e02 pci_get_device -EXPORT_SYMBOL vmlinux 0x0035ac92 dm_unregister_target -EXPORT_SYMBOL vmlinux 0x003f999a pcim_iomap -EXPORT_SYMBOL vmlinux 0x004999c5 setattr_copy -EXPORT_SYMBOL vmlinux 0x004aacfc kthread_stop -EXPORT_SYMBOL vmlinux 0x006ff2a5 scsi_dma_map -EXPORT_SYMBOL vmlinux 0x0070cd1f queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0x0085e1f1 __do_once_done -EXPORT_SYMBOL vmlinux 0x0088f44e generic_write_end -EXPORT_SYMBOL vmlinux 0x0093916a d_walk -EXPORT_SYMBOL vmlinux 0x009be043 locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0x00b5c91a __inode_add_bytes -EXPORT_SYMBOL vmlinux 0x00b8c3a7 mempool_alloc -EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve -EXPORT_SYMBOL vmlinux 0x01070719 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x010f676a inet_bind -EXPORT_SYMBOL vmlinux 0x0113e474 sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0x011b6191 input_release_device -EXPORT_SYMBOL vmlinux 0x012069a4 udp_lib_get_port -EXPORT_SYMBOL vmlinux 0x01395b71 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0x016245de gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x016bba17 x86_hyper_ms_hyperv -EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer -EXPORT_SYMBOL vmlinux 0x017bf377 blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x01850f89 vfs_readv -EXPORT_SYMBOL vmlinux 0x0194dddd generic_delete_inode -EXPORT_SYMBOL vmlinux 0x01a5dc66 __get_page_tail -EXPORT_SYMBOL vmlinux 0x01bb190f devm_gpiod_get_array -EXPORT_SYMBOL vmlinux 0x01d6acaa setup_new_exec -EXPORT_SYMBOL vmlinux 0x01e2b038 submit_bio -EXPORT_SYMBOL vmlinux 0x01e6fa88 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x0204b7e3 get_task_exe_file -EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check -EXPORT_SYMBOL vmlinux 0x0213f05c mark_page_accessed -EXPORT_SYMBOL vmlinux 0x02176009 devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x0221246c input_allocate_device -EXPORT_SYMBOL vmlinux 0x022e85bd tty_devnum -EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu -EXPORT_SYMBOL vmlinux 0x02431757 current_in_userns -EXPORT_SYMBOL vmlinux 0x024bf827 radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x02737b12 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x02740f50 cdev_alloc -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x027727f0 xfrm_input_resume -EXPORT_SYMBOL vmlinux 0x029a3d55 i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0x02a1087f udp_ioctl -EXPORT_SYMBOL vmlinux 0x02a187e1 compat_tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table -EXPORT_SYMBOL vmlinux 0x02ace693 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x02e36ab1 pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0x02e66e07 dev_change_proto_down -EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string -EXPORT_SYMBOL vmlinux 0x02f1a629 mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0x02fbd917 blk_init_queue_node -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x033b47e7 sg_miter_stop -EXPORT_SYMBOL vmlinux 0x033d33e7 arp_tbl -EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x035f9e7a abx500_event_registers_startup_state_get -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x03cc2397 cdev_init -EXPORT_SYMBOL vmlinux 0x03d72b3f fbcon_set_bitops -EXPORT_SYMBOL vmlinux 0x03f277c3 up_write -EXPORT_SYMBOL vmlinux 0x03f8a1dc security_task_getsecid -EXPORT_SYMBOL vmlinux 0x03fa6e9f vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0x03fc2410 neigh_xmit -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x03fe0909 dev_mc_del -EXPORT_SYMBOL vmlinux 0x04006e06 xfrm_register_type -EXPORT_SYMBOL vmlinux 0x0405fb25 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x040f296a __ps2_command -EXPORT_SYMBOL vmlinux 0x0418afdc d_tmpfile -EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg -EXPORT_SYMBOL vmlinux 0x042342d3 pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0x0426ba24 idr_for_each -EXPORT_SYMBOL vmlinux 0x042b6787 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x044a9ccd nf_afinfo -EXPORT_SYMBOL vmlinux 0x04666fb1 d_move -EXPORT_SYMBOL vmlinux 0x047812f7 framebuffer_release -EXPORT_SYMBOL vmlinux 0x04785ab6 loop_backing_file -EXPORT_SYMBOL vmlinux 0x0482181d netdev_warn -EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display -EXPORT_SYMBOL vmlinux 0x04a488cd netdev_update_features -EXPORT_SYMBOL vmlinux 0x04ab8f9d led_blink_set -EXPORT_SYMBOL vmlinux 0x04b197f2 smp_call_function_many -EXPORT_SYMBOL vmlinux 0x04bed7da pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0x04c62fd7 __memset -EXPORT_SYMBOL vmlinux 0x04d8145f unregister_console -EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi -EXPORT_SYMBOL vmlinux 0x04e9e7b1 udplite_prot -EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol -EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize -EXPORT_SYMBOL vmlinux 0x05050c6c devfreq_add_device -EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match -EXPORT_SYMBOL vmlinux 0x050b9ada dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x0511ba7a xfrm_input -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x0532ec62 xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x0549d2a6 get_task_io_context -EXPORT_SYMBOL vmlinux 0x05521a98 d_add_ci -EXPORT_SYMBOL vmlinux 0x055c8559 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x056b90ba twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0x057bf5db netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x057d39c9 mfd_cell_disable -EXPORT_SYMBOL vmlinux 0x05972bb4 devfreq_resume_device -EXPORT_SYMBOL vmlinux 0x059e9fe8 seq_pad -EXPORT_SYMBOL vmlinux 0x05bab440 agp_bind_memory -EXPORT_SYMBOL vmlinux 0x05c0f179 dm_put_table_device -EXPORT_SYMBOL vmlinux 0x05cc73f3 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0x05db2b22 pskb_expand_head -EXPORT_SYMBOL vmlinux 0x0602a249 flow_cache_lookup -EXPORT_SYMBOL vmlinux 0x06052f8d __memmove -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x061f4039 acpi_get_table_with_size -EXPORT_SYMBOL vmlinux 0x0623743b proc_douintvec -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x06342925 file_open_root -EXPORT_SYMBOL vmlinux 0x064f3c2e tty_do_resize -EXPORT_SYMBOL vmlinux 0x0659351c dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx -EXPORT_SYMBOL vmlinux 0x067f8fbc mdiobus_free -EXPORT_SYMBOL vmlinux 0x068c7263 ioremap_cache -EXPORT_SYMBOL vmlinux 0x06939d4f md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x06a50c46 mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0x06a6725e set_binfmt -EXPORT_SYMBOL vmlinux 0x06c0dae5 __kernel_fpu_end -EXPORT_SYMBOL vmlinux 0x06e47930 tcp_make_synack -EXPORT_SYMBOL vmlinux 0x06e50127 vfs_getxattr_alloc -EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn -EXPORT_SYMBOL vmlinux 0x0717049d xfrm_find_acq -EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 -EXPORT_SYMBOL vmlinux 0x072e0476 qdisc_watchdog_schedule_ns -EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x073eefdd inet_frag_find -EXPORT_SYMBOL vmlinux 0x07432e3c agp_generic_insert_memory -EXPORT_SYMBOL vmlinux 0x074b92b3 __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0x07677c7f __blk_run_queue -EXPORT_SYMBOL vmlinux 0x07721124 fasync_helper -EXPORT_SYMBOL vmlinux 0x077d2113 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x078822e4 gen_pool_create -EXPORT_SYMBOL vmlinux 0x078eb9f7 bio_chain -EXPORT_SYMBOL vmlinux 0x07933d48 vme_unregister_driver -EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07a9ef84 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07cec41f dma_find_channel -EXPORT_SYMBOL vmlinux 0x080937ff nvm_set_rqd_ppalist -EXPORT_SYMBOL vmlinux 0x080bab38 pnp_activate_dev -EXPORT_SYMBOL vmlinux 0x082102ee tcp_disconnect -EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x083644c8 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x089074dd cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0x0897287b acpi_disable_all_gpes -EXPORT_SYMBOL vmlinux 0x08cb3e69 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x08e52a4d security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0x08f0a044 kill_block_super -EXPORT_SYMBOL vmlinux 0x08faff4d mfd_cell_enable -EXPORT_SYMBOL vmlinux 0x08fd63b3 fsnotify_put_mark -EXPORT_SYMBOL vmlinux 0x0905b060 page_follow_link_light -EXPORT_SYMBOL vmlinux 0x090ee643 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0x091aa810 neigh_event_ns -EXPORT_SYMBOL vmlinux 0x093012c2 from_kgid -EXPORT_SYMBOL vmlinux 0x093a83e9 sock_no_getsockopt -EXPORT_SYMBOL vmlinux 0x093e9b0c kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0x093f07a3 md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0x09437c78 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key -EXPORT_SYMBOL vmlinux 0x09696626 acpi_decode_pld_buffer -EXPORT_SYMBOL vmlinux 0x097efc44 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0x097fa118 pci_set_dma_seg_boundary -EXPORT_SYMBOL vmlinux 0x098431ba acpi_get_current_resources -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x09a2d724 simple_open -EXPORT_SYMBOL vmlinux 0x09ad9b7d skb_split -EXPORT_SYMBOL vmlinux 0x09baddca touch_atime -EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x09c7b24c wireless_spy_update -EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0x09ce6735 i8042_install_filter -EXPORT_SYMBOL vmlinux 0x09d0ba62 datagram_poll -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09d6d912 ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x09db06d2 __seq_open_private -EXPORT_SYMBOL vmlinux 0x09e88526 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0x0a19d118 udp_sendmsg -EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class -EXPORT_SYMBOL vmlinux 0x0a4f9463 mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0x0a57863e cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x0a661faa lg_local_unlock -EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0a89bbb7 __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aaee6f1 simple_nosetlease -EXPORT_SYMBOL vmlinux 0x0ab04757 console_start -EXPORT_SYMBOL vmlinux 0x0acbb40f d_path -EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0af5c53a I_BDEV -EXPORT_SYMBOL vmlinux 0x0b0b1b24 eth_header_parse -EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b2f3d34 nd_namespace_blk_validate -EXPORT_SYMBOL vmlinux 0x0b37330b phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0x0b485665 fput -EXPORT_SYMBOL vmlinux 0x0b5cb42f input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister -EXPORT_SYMBOL vmlinux 0x0b678792 param_ops_bint -EXPORT_SYMBOL vmlinux 0x0b6d9d6b input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0x0b70e056 __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b8b21da __scsi_alloc_queue -EXPORT_SYMBOL vmlinux 0x0b905c66 __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x0ba4d174 napi_get_frags -EXPORT_SYMBOL vmlinux 0x0bb51a93 set_anon_super -EXPORT_SYMBOL vmlinux 0x0bbbaef3 swiotlb_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bf833bc copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x0bfe8adf alloc_fddidev -EXPORT_SYMBOL vmlinux 0x0c05160f pci_request_regions -EXPORT_SYMBOL vmlinux 0x0c137fcc kernel_param_unlock -EXPORT_SYMBOL vmlinux 0x0c192afd reservation_object_add_excl_fence -EXPORT_SYMBOL vmlinux 0x0c21d019 flush_delayed_work -EXPORT_SYMBOL vmlinux 0x0c305614 cdrom_check_events -EXPORT_SYMBOL vmlinux 0x0c3f82c4 devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat -EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features -EXPORT_SYMBOL vmlinux 0x0c5efec5 vme_register_bridge -EXPORT_SYMBOL vmlinux 0x0c6254c0 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0x0c69c353 _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -EXPORT_SYMBOL vmlinux 0x0c704ad4 bio_reset -EXPORT_SYMBOL vmlinux 0x0c7b2ee1 devm_iounmap -EXPORT_SYMBOL vmlinux 0x0c89459c kernel_listen -EXPORT_SYMBOL vmlinux 0x0c965ee8 read_code -EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x0ca46932 ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0x0ca7897a generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x0ca7b7a8 acpi_check_region -EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0x0cb32861 insert_inode_locked -EXPORT_SYMBOL vmlinux 0x0cc4a776 tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x0cc4e84d jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0x0cd2af0c param_get_ushort -EXPORT_SYMBOL vmlinux 0x0cdb7d12 __kernel_fpu_begin -EXPORT_SYMBOL vmlinux 0x0ce32b11 pcie_set_readrq -EXPORT_SYMBOL vmlinux 0x0cef9e2f set_groups -EXPORT_SYMBOL vmlinux 0x0d0c7d90 init_special_inode -EXPORT_SYMBOL vmlinux 0x0d208b39 pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x0d39b96a to_nd_pfn -EXPORT_SYMBOL vmlinux 0x0d3dda14 acpi_get_type -EXPORT_SYMBOL vmlinux 0x0d4262fa abx500_startup_irq_enabled -EXPORT_SYMBOL vmlinux 0x0d539644 __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d5630d8 try_to_writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x0d56d057 sock_kmalloc -EXPORT_SYMBOL vmlinux 0x0d575bde sk_reset_timer -EXPORT_SYMBOL vmlinux 0x0d5a9b5e drop_super -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d762070 generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x0d80efb5 acpi_evaluate_ost -EXPORT_SYMBOL vmlinux 0x0d971192 ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft -EXPORT_SYMBOL vmlinux 0x0daef1e7 finish_no_open -EXPORT_SYMBOL vmlinux 0x0dcc4361 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x0dd1f9de tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x0dd599df __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x0e28bb45 wireless_send_event -EXPORT_SYMBOL vmlinux 0x0e39acd8 buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0x0e46e872 netif_napi_add -EXPORT_SYMBOL vmlinux 0x0e53a182 ip_route_input_noref -EXPORT_SYMBOL vmlinux 0x0e58c71d input_register_handle -EXPORT_SYMBOL vmlinux 0x0e6356f8 agp_enable -EXPORT_SYMBOL vmlinux 0x0e69a855 kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec -EXPORT_SYMBOL vmlinux 0x0e7721a6 pci_claim_resource -EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ed8086b dcache_dir_open -EXPORT_SYMBOL vmlinux 0x0ed8cc7b acpi_evaluate_object_typed -EXPORT_SYMBOL vmlinux 0x0ef427fa simple_dir_operations -EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups -EXPORT_SYMBOL vmlinux 0x0f06ccc1 __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x0f09da95 kernel_getsockopt -EXPORT_SYMBOL vmlinux 0x0f484794 blk_alloc_queue_node -EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec -EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size -EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x0f819475 pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0x0f83eefd cfb_imageblit -EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fd00a68 acpi_clear_event -EXPORT_SYMBOL vmlinux 0x0fd043d6 inode_sub_rsv_space -EXPORT_SYMBOL vmlinux 0x0fdae017 follow_down -EXPORT_SYMBOL vmlinux 0x0fe1b971 notify_change -EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress -EXPORT_SYMBOL vmlinux 0x0ff370bb dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0x1019e7fc ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0x101ab751 dquot_alloc -EXPORT_SYMBOL vmlinux 0x10202b9d mutex_lock_killable -EXPORT_SYMBOL vmlinux 0x10235938 lock_sock_nested -EXPORT_SYMBOL vmlinux 0x10284091 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x10437323 netif_device_detach -EXPORT_SYMBOL vmlinux 0x104bd5e2 i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0x1053a5f1 i2c_register_driver -EXPORT_SYMBOL vmlinux 0x105eb867 kmem_cache_free -EXPORT_SYMBOL vmlinux 0x106ed078 mmc_remove_host -EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x10811779 __get_user_pages -EXPORT_SYMBOL vmlinux 0x10950ee1 radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x10cdb79d md_set_array_sectors -EXPORT_SYMBOL vmlinux 0x10d6edb3 param_set_ushort -EXPORT_SYMBOL vmlinux 0x10d81f0e mmc_wait_for_app_cmd -EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu -EXPORT_SYMBOL vmlinux 0x10f738a1 nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0x10fcac76 agp_copy_info -EXPORT_SYMBOL vmlinux 0x10fee588 sock_wake_async -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x111b66f5 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x112c2112 security_path_truncate -EXPORT_SYMBOL vmlinux 0x112e5293 __d_drop -EXPORT_SYMBOL vmlinux 0x112ec7de tty_unlock -EXPORT_SYMBOL vmlinux 0x1148c050 skb_tx_error -EXPORT_SYMBOL vmlinux 0x1152c77a xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0x1159cf57 swiotlb_dma_supported -EXPORT_SYMBOL vmlinux 0x115eac6b ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn -EXPORT_SYMBOL vmlinux 0x11653edf revert_creds -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x11789faf bitmap_endwrite -EXPORT_SYMBOL vmlinux 0x1195e4cf __dev_get_by_name -EXPORT_SYMBOL vmlinux 0x1198c268 ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned -EXPORT_SYMBOL vmlinux 0x11a99047 block_invalidatepage -EXPORT_SYMBOL vmlinux 0x11d245a1 skb_orphan_partial -EXPORT_SYMBOL vmlinux 0x11dab612 eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x11edf17b dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0x11f6be3f pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin -EXPORT_SYMBOL vmlinux 0x11fa483d __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier -EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const -EXPORT_SYMBOL vmlinux 0x12293732 pcie_set_mps -EXPORT_SYMBOL vmlinux 0x122ae5ba pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0x1234438e vme_slave_request -EXPORT_SYMBOL vmlinux 0x1239886f simple_dentry_operations -EXPORT_SYMBOL vmlinux 0x123f82f3 getrawmonotonic64 -EXPORT_SYMBOL vmlinux 0x1250c7e1 _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0x12528752 nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0x12820d0a request_key_async -EXPORT_SYMBOL vmlinux 0x12850fa6 zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x1288f71f nvm_register -EXPORT_SYMBOL vmlinux 0x1289a6a1 d_instantiate_unique -EXPORT_SYMBOL vmlinux 0x128dc34a blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x12a1e059 dev_add_pack -EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range -EXPORT_SYMBOL vmlinux 0x12b0e8b4 alloc_file -EXPORT_SYMBOL vmlinux 0x12c608c3 phy_drivers_register -EXPORT_SYMBOL vmlinux 0x12dfeb12 vprintk_emit -EXPORT_SYMBOL vmlinux 0x12f009c3 vme_irq_generate -EXPORT_SYMBOL vmlinux 0x12fd2c59 seq_path -EXPORT_SYMBOL vmlinux 0x1305d532 ucs2_strncmp -EXPORT_SYMBOL vmlinux 0x130ceca0 tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0x1316303a xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0x1318f39f blk_queue_free_tags -EXPORT_SYMBOL vmlinux 0x1319449d secure_modules -EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x13307fde vsscanf -EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc -EXPORT_SYMBOL vmlinux 0x1339b1a0 get_user_pages_locked -EXPORT_SYMBOL vmlinux 0x133cb88a netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0x134138f4 tty_unthrottle -EXPORT_SYMBOL vmlinux 0x134d5857 page_readlink -EXPORT_SYMBOL vmlinux 0x134ffd0e pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0x13594e63 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0x137d2b04 vfs_unlink -EXPORT_SYMBOL vmlinux 0x138c1921 ipv6_select_ident -EXPORT_SYMBOL vmlinux 0x13a05cde scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x13a3a30d filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0x13a7f0c6 get_phy_device -EXPORT_SYMBOL vmlinux 0x13b8b8ee mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0x13b92e67 import_iovec -EXPORT_SYMBOL vmlinux 0x13c968f5 mmc_free_host -EXPORT_SYMBOL vmlinux 0x13c9b28d pipe_unlock -EXPORT_SYMBOL vmlinux 0x13ce3720 mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13f3d47d inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation -EXPORT_SYMBOL vmlinux 0x143e42f9 dev_printk -EXPORT_SYMBOL vmlinux 0x144b7bf1 i2c_verify_client -EXPORT_SYMBOL vmlinux 0x1453fabb generic_error_remove_page -EXPORT_SYMBOL vmlinux 0x1494d549 sync_blockdev -EXPORT_SYMBOL vmlinux 0x14a10c42 current_fs_time -EXPORT_SYMBOL vmlinux 0x14b5e8a4 acpi_bus_unregister_driver -EXPORT_SYMBOL vmlinux 0x14c1b311 kdb_current_task -EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x14e190e9 devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x14e1a24e dup_iter -EXPORT_SYMBOL vmlinux 0x150316b1 neigh_lookup -EXPORT_SYMBOL vmlinux 0x150389d6 acpi_processor_power_init_bm_check -EXPORT_SYMBOL vmlinux 0x15043ae5 netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x15159fd2 bio_clone_fast -EXPORT_SYMBOL vmlinux 0x1517d610 ip_options_compile -EXPORT_SYMBOL vmlinux 0x153eea18 blk_end_request_all -EXPORT_SYMBOL vmlinux 0x1547bfd6 __wait_on_bit -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x1554371f vm_map_ram -EXPORT_SYMBOL vmlinux 0x15633d2d pm860x_reg_write -EXPORT_SYMBOL vmlinux 0x1569917b dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0x156a8a59 down_trylock -EXPORT_SYMBOL vmlinux 0x157117b6 d_rehash -EXPORT_SYMBOL vmlinux 0x15799c11 _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0x15b383b5 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15c302e1 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0x15c82aec param_ops_ullong -EXPORT_SYMBOL vmlinux 0x15cba6c9 cdrom_ioctl -EXPORT_SYMBOL vmlinux 0x15fb4e7d genphy_suspend -EXPORT_SYMBOL vmlinux 0x15ff5806 sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0x160c0cea md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0x160ea4c8 sfi_disabled -EXPORT_SYMBOL vmlinux 0x1616cb30 acpi_evaluate_dsm -EXPORT_SYMBOL vmlinux 0x16235c66 sock_no_connect -EXPORT_SYMBOL vmlinux 0x162c4872 ilookup -EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null -EXPORT_SYMBOL vmlinux 0x16328924 tty_port_init -EXPORT_SYMBOL vmlinux 0x163b63b4 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0x16518250 jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x167629a1 tcf_em_unregister -EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump -EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 -EXPORT_SYMBOL vmlinux 0x16ba437d put_filp -EXPORT_SYMBOL vmlinux 0x16c1111d prepare_binprm -EXPORT_SYMBOL vmlinux 0x16dc4d1f fence_init -EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16e2aaa8 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0x16f03909 inet_frags_fini -EXPORT_SYMBOL vmlinux 0x16f4bfc4 devm_gpio_free -EXPORT_SYMBOL vmlinux 0x1707c176 twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0x170c25ee acpi_get_next_object -EXPORT_SYMBOL vmlinux 0x170c8f7e blk_init_tags -EXPORT_SYMBOL vmlinux 0x172b74fd fb_pan_display -EXPORT_SYMBOL vmlinux 0x1764618e sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0x17666d3a pci_add_new_bus -EXPORT_SYMBOL vmlinux 0x178fc438 gen_new_estimator -EXPORT_SYMBOL vmlinux 0x1793f685 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0x179651ac _raw_read_lock -EXPORT_SYMBOL vmlinux 0x1797bb54 put_disk -EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator -EXPORT_SYMBOL vmlinux 0x17c1fc26 new_inode -EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip -EXPORT_SYMBOL vmlinux 0x17fcae36 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0x17fd07f6 lwtunnel_build_state -EXPORT_SYMBOL vmlinux 0x180b31dc devm_request_resource -EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken -EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0x18401d0a dev_close -EXPORT_SYMBOL vmlinux 0x184a1488 d_find_any_alias -EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask -EXPORT_SYMBOL vmlinux 0x185da6cb scsi_host_alloc -EXPORT_SYMBOL vmlinux 0x186646cc nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0x18786afc qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x18867f68 inet_ioctl -EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc -EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x18acc4e4 remove_arg_zero -EXPORT_SYMBOL vmlinux 0x18b72573 register_kmmio_probe -EXPORT_SYMBOL vmlinux 0x18ca6192 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0x18e1fcf0 elevator_init -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18e731ec __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x190b3590 jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0x1916d5bb param_ops_byte -EXPORT_SYMBOL vmlinux 0x1916e38c _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x1928bdb1 dev_emerg -EXPORT_SYMBOL vmlinux 0x195a4813 pci_find_pcie_root_port -EXPORT_SYMBOL vmlinux 0x19712c79 devfreq_interval_update -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19a8d74a nd_integrity_init -EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x19bcb8da mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19c26ae8 filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x1a0a2da3 tcf_hash_insert -EXPORT_SYMBOL vmlinux 0x1a2854ef key_reject_and_link -EXPORT_SYMBOL vmlinux 0x1a2f4ab0 mb_cache_entry_alloc -EXPORT_SYMBOL vmlinux 0x1a31339b inet_frags_init -EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled -EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch -EXPORT_SYMBOL vmlinux 0x1a9320c3 icmp_send -EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1ae09f75 _raw_write_unlock_irq -EXPORT_SYMBOL vmlinux 0x1afb1aaa acpi_mark_gpe_for_wake -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b06f136 netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x1b09e1e9 blk_integrity_register -EXPORT_SYMBOL vmlinux 0x1b11d29d tcf_exts_validate -EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents -EXPORT_SYMBOL vmlinux 0x1b318c74 security_dentry_init_security -EXPORT_SYMBOL vmlinux 0x1b37269a follow_pfn -EXPORT_SYMBOL vmlinux 0x1b4fe728 d_invalidate -EXPORT_SYMBOL vmlinux 0x1b553a13 get_super_thawed -EXPORT_SYMBOL vmlinux 0x1b570d23 acpi_warning -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b7a24fc vga_switcheroo_register_client -EXPORT_SYMBOL vmlinux 0x1b7af49c scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x1b7d0af8 skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug -EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip -EXPORT_SYMBOL vmlinux 0x1b92d1cb dquot_acquire -EXPORT_SYMBOL vmlinux 0x1b93ba53 sock_release -EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer -EXPORT_SYMBOL vmlinux 0x1bbc2273 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0x1bbeca44 always_delete_dentry -EXPORT_SYMBOL vmlinux 0x1bcd047e __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x1bdcc766 free_netdev -EXPORT_SYMBOL vmlinux 0x1be1dd26 lg_global_lock -EXPORT_SYMBOL vmlinux 0x1bed9fd7 vme_new_dma_list -EXPORT_SYMBOL vmlinux 0x1bfc01f9 tcp_check_req -EXPORT_SYMBOL vmlinux 0x1bfd9475 inet6_add_offload -EXPORT_SYMBOL vmlinux 0x1c00075f block_commit_write -EXPORT_SYMBOL vmlinux 0x1c20d952 __tcf_hash_release -EXPORT_SYMBOL vmlinux 0x1c39863c xfrm_garbage_collect -EXPORT_SYMBOL vmlinux 0x1c4a4a2f mmc_hw_reset -EXPORT_SYMBOL vmlinux 0x1c522b14 vfs_getattr -EXPORT_SYMBOL vmlinux 0x1c8a04b0 acpi_reset -EXPORT_SYMBOL vmlinux 0x1ca73641 tcf_em_register -EXPORT_SYMBOL vmlinux 0x1ca7c5ef csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x1cc363fa phy_detach -EXPORT_SYMBOL vmlinux 0x1d0bca36 consume_skb -EXPORT_SYMBOL vmlinux 0x1d1056e5 crc32_be -EXPORT_SYMBOL vmlinux 0x1d465871 netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0x1d4deda1 dev_load -EXPORT_SYMBOL vmlinux 0x1d4fae3f xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0x1d547122 d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x1db63bd7 bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0x1db7706b __copy_user_nocache -EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1dd777b1 atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x1de74f72 acpi_execute_simple_method -EXPORT_SYMBOL vmlinux 0x1dec4f84 fb_firmware_edid -EXPORT_SYMBOL vmlinux 0x1df10ae6 filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x1dff047c xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x1e036c98 acpi_set_gpe -EXPORT_SYMBOL vmlinux 0x1e047854 warn_slowpath_fmt -EXPORT_SYMBOL vmlinux 0x1e0c2be4 ioremap_wc -EXPORT_SYMBOL vmlinux 0x1e0dadb6 dns_query -EXPORT_SYMBOL vmlinux 0x1e11e029 pci_read_vpd -EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev -EXPORT_SYMBOL vmlinux 0x1e2a285f mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0x1e59cf77 proto_unregister -EXPORT_SYMBOL vmlinux 0x1e641dbd jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x1e67741b pagevec_lookup -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e98c1d3 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector -EXPORT_SYMBOL vmlinux 0x1ebe52ad fb_blank -EXPORT_SYMBOL vmlinux 0x1edd4c1e sb_min_blocksize -EXPORT_SYMBOL vmlinux 0x1ef6e46c dquot_free_inode -EXPORT_SYMBOL vmlinux 0x1f30518b mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x1f6b10b0 netif_napi_del -EXPORT_SYMBOL vmlinux 0x1f6ce67a sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x1f7fb9d8 proto_register -EXPORT_SYMBOL vmlinux 0x1f8facaa dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0x1f92ea8f devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0x1f943f36 scsi_remove_target -EXPORT_SYMBOL vmlinux 0x1fae9079 sk_capable -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fc142ed mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0x1fd01c42 ps2_handle_response -EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fda910c dump_trace -EXPORT_SYMBOL vmlinux 0x1fdd279a __blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag -EXPORT_SYMBOL vmlinux 0x1fe9addd get_acl -EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x2005e68a acpi_remove_fixed_event_handler -EXPORT_SYMBOL vmlinux 0x20092385 acpi_enter_sleep_state_s4bios -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x201b0ac0 lg_global_unlock -EXPORT_SYMBOL vmlinux 0x201b0c78 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0x201cbd47 swiotlb_free_coherent -EXPORT_SYMBOL vmlinux 0x2044aea7 amd_iommu_pc_get_max_banks -EXPORT_SYMBOL vmlinux 0x204b8c16 register_sysctl_paths -EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool -EXPORT_SYMBOL vmlinux 0x205a1020 __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x206aedc5 bdi_register_dev -EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq -EXPORT_SYMBOL vmlinux 0x207e4045 bdget -EXPORT_SYMBOL vmlinux 0x208739f6 acpi_load_table -EXPORT_SYMBOL vmlinux 0x208baa99 tty_port_close_start -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20c2d878 max8998_read_reg -EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf -EXPORT_SYMBOL vmlinux 0x20c7feab skb_kill_datagram -EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x20e8d2f6 dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum -EXPORT_SYMBOL vmlinux 0x20ebc1ff xfrm_prepare_input -EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x20efd929 lwtunnel_cmp_encap -EXPORT_SYMBOL vmlinux 0x20f181c0 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x20f7f797 locks_free_lock -EXPORT_SYMBOL vmlinux 0x21070feb blkdev_put -EXPORT_SYMBOL vmlinux 0x211f68f1 getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x2121f41a phy_set_max_speed -EXPORT_SYMBOL vmlinux 0x214ac4a6 free_page_put_link -EXPORT_SYMBOL vmlinux 0x217ed79c skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x217f2aab cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x21952bbc proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0x2198d14b pci_enable_msi_range -EXPORT_SYMBOL vmlinux 0x21a701fe fence_signal -EXPORT_SYMBOL vmlinux 0x21b08d7a cdev_del -EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set -EXPORT_SYMBOL vmlinux 0x21e714ae __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0x21e992a5 ida_simple_get -EXPORT_SYMBOL vmlinux 0x21ed8b4f devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0x2207a57f prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x22303be8 bio_copy_data -EXPORT_SYMBOL vmlinux 0x2240e3c0 netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0x2254482a __mmc_claim_host -EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits -EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint -EXPORT_SYMBOL vmlinux 0x227d91fe phy_start_aneg -EXPORT_SYMBOL vmlinux 0x228b5727 __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0x228f2aea bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0x229b7582 unregister_cdrom -EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22b96a00 vfs_link -EXPORT_SYMBOL vmlinux 0x22c11e13 pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0x22cac4e8 dm_get_device -EXPORT_SYMBOL vmlinux 0x22ec786e inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x231600be ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs -EXPORT_SYMBOL vmlinux 0x232842d8 is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0x232d18ec rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0x235e8b61 nf_log_trace -EXPORT_SYMBOL vmlinux 0x2364fb7b __nlmsg_put -EXPORT_SYMBOL vmlinux 0x238aed1f generic_file_open -EXPORT_SYMBOL vmlinux 0x23942ba7 sock_register -EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23be70f5 tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress -EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0x23ca4a24 __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x23cf97db vm_event_states -EXPORT_SYMBOL vmlinux 0x23ea58d2 pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x23eea7f0 pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x23ffa2e4 nvm_generic_to_addr_mode -EXPORT_SYMBOL vmlinux 0x24011578 compat_sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x24027a64 phy_disconnect -EXPORT_SYMBOL vmlinux 0x24134825 blk_mq_abort_requeue_list -EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x243d751e cpufreq_global_kobject -EXPORT_SYMBOL vmlinux 0x244154fa blk_peek_request -EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x247736de path_put -EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf -EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x248e7d39 kmem_cache_alloc_node_trace -EXPORT_SYMBOL vmlinux 0x249d2965 __generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x24c0b6ac __scsi_add_device -EXPORT_SYMBOL vmlinux 0x24c76ab2 ppp_dev_name -EXPORT_SYMBOL vmlinux 0x24d0226f skb_insert -EXPORT_SYMBOL vmlinux 0x24e0746a get_gendisk -EXPORT_SYMBOL vmlinux 0x24f0c87f twl6040_power -EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function -EXPORT_SYMBOL vmlinux 0x251a5536 wait_iff_congested -EXPORT_SYMBOL vmlinux 0x2521e786 get_empty_filp -EXPORT_SYMBOL vmlinux 0x2524913a swiotlb_alloc_coherent -EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register -EXPORT_SYMBOL vmlinux 0x25304c6e inode_permission -EXPORT_SYMBOL vmlinux 0x253bacaf lwtunnel_get_encap_size -EXPORT_SYMBOL vmlinux 0x253fcc51 __generic_file_fsync -EXPORT_SYMBOL vmlinux 0x2548ab95 vfs_create -EXPORT_SYMBOL vmlinux 0x25498e13 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0x2551ffe1 __ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x256e4dc7 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string -EXPORT_SYMBOL vmlinux 0x257621a9 xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x2581bb45 inode_get_bytes -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x2583f226 dev_uc_init -EXPORT_SYMBOL vmlinux 0x258630d3 cros_ec_cmd_xfer -EXPORT_SYMBOL vmlinux 0x25bd6902 generic_end_io_acct -EXPORT_SYMBOL vmlinux 0x25cd061e gnttab_alloc_pages -EXPORT_SYMBOL vmlinux 0x25e20630 posix_test_lock -EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25f92de2 dentry_update_name_case -EXPORT_SYMBOL vmlinux 0x26194068 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x261a7f2b __ethtool_get_settings -EXPORT_SYMBOL vmlinux 0x26249833 devm_gpiod_get_array_optional -EXPORT_SYMBOL vmlinux 0x2636e30b nd_device_unregister -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux -EXPORT_SYMBOL vmlinux 0x2652e545 tty_register_device -EXPORT_SYMBOL vmlinux 0x2657cd9d eth_gro_complete -EXPORT_SYMBOL vmlinux 0x2665d53a key_create_or_update -EXPORT_SYMBOL vmlinux 0x266d69f6 md_write_start -EXPORT_SYMBOL vmlinux 0x26948d96 copy_user_enhanced_fast_string -EXPORT_SYMBOL vmlinux 0x26a0b785 km_state_notify -EXPORT_SYMBOL vmlinux 0x26c58362 tcp_child_process -EXPORT_SYMBOL vmlinux 0x26cb34a2 mempool_create -EXPORT_SYMBOL vmlinux 0x26d56706 blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26e3a12b tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min -EXPORT_SYMBOL vmlinux 0x26fc0129 iov_iter_advance -EXPORT_SYMBOL vmlinux 0x2708dc16 skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler -EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0x274f2d69 __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0x27569425 param_set_ulong -EXPORT_SYMBOL vmlinux 0x2775a8e5 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x27808c95 padata_set_cpumasks -EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x27882b9b ida_simple_remove -EXPORT_SYMBOL vmlinux 0x278eb573 inet_add_protocol -EXPORT_SYMBOL vmlinux 0x278fa033 generic_setxattr -EXPORT_SYMBOL vmlinux 0x27a8528b i2c_put_adapter -EXPORT_SYMBOL vmlinux 0x27ae7d0c ec_transaction -EXPORT_SYMBOL vmlinux 0x27b400b8 neigh_parms_release -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27c33efe csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0x27c6a017 skb_store_bits -EXPORT_SYMBOL vmlinux 0x27e1a049 printk -EXPORT_SYMBOL vmlinux 0x280bcfc7 alloc_xenballooned_pages -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x28188f17 blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0x28318305 snprintf -EXPORT_SYMBOL vmlinux 0x28342699 swiotlb_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0x2854295c xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0x28665c7a pcim_enable_device -EXPORT_SYMBOL vmlinux 0x28768772 alloc_disk -EXPORT_SYMBOL vmlinux 0x288adaa5 mmc_align_data_size -EXPORT_SYMBOL vmlinux 0x289c85f9 __skb_get_hash_flowi6 -EXPORT_SYMBOL vmlinux 0x28a2b29f radix_tree_range_tag_if_tagged -EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x28aacf91 input_event -EXPORT_SYMBOL vmlinux 0x28aaf15d netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x28abfe6e scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available -EXPORT_SYMBOL vmlinux 0x28ec0947 inet6_getname -EXPORT_SYMBOL vmlinux 0x28ff5990 mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0x2905cc8e end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0x29240217 del_random_ready_callback -EXPORT_SYMBOL vmlinux 0x295203fd scsi_execute -EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0x296c3d43 tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0x29848779 skb_clone -EXPORT_SYMBOL vmlinux 0x2993a8ef __pagevec_lru_add -EXPORT_SYMBOL vmlinux 0x299ced9e amd_iommu_domain_clear_gcr3 -EXPORT_SYMBOL vmlinux 0x29a26ca6 amd_iommu_flush_page -EXPORT_SYMBOL vmlinux 0x29ba6359 skb_make_writable -EXPORT_SYMBOL vmlinux 0x29d1ea6a registered_fb -EXPORT_SYMBOL vmlinux 0x29d8af86 bio_advance -EXPORT_SYMBOL vmlinux 0x29e592a4 pci_restore_state -EXPORT_SYMBOL vmlinux 0x29f0e207 d_prune_aliases -EXPORT_SYMBOL vmlinux 0x29f5d7d8 abx500_get_chip_id -EXPORT_SYMBOL vmlinux 0x29fa7972 file_remove_privs -EXPORT_SYMBOL vmlinux 0x2a11a7ef dev_deactivate -EXPORT_SYMBOL vmlinux 0x2a1b4145 kernel_accept -EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a324765 elevator_change -EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2a565a25 wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0x2a855971 pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0x2aa3d369 xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy -EXPORT_SYMBOL vmlinux 0x2ab862db inet_frag_maybe_warn_overflow -EXPORT_SYMBOL vmlinux 0x2ac09dd5 __nla_put -EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat -EXPORT_SYMBOL vmlinux 0x2af679f6 netlink_unicast -EXPORT_SYMBOL vmlinux 0x2b014d40 blk_integrity_merge_rq -EXPORT_SYMBOL vmlinux 0x2b05a21b intel_gtt_get -EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x2b0daeb1 vfs_writef -EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 -EXPORT_SYMBOL vmlinux 0x2b347552 simple_empty -EXPORT_SYMBOL vmlinux 0x2b388cbd scsi_unregister -EXPORT_SYMBOL vmlinux 0x2b549694 generic_update_time -EXPORT_SYMBOL vmlinux 0x2b56cfe4 mmc_read_bkops_status -EXPORT_SYMBOL vmlinux 0x2b83fb9d nvm_register_target -EXPORT_SYMBOL vmlinux 0x2b86fc21 bio_put -EXPORT_SYMBOL vmlinux 0x2b8979ad padata_add_cpu -EXPORT_SYMBOL vmlinux 0x2b8d7cc3 dm_kobject_release -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2ba058d7 task_tgid_nr_ns -EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency -EXPORT_SYMBOL vmlinux 0x2ba966d7 phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0x2bb55d6e acpi_remove_notify_handler -EXPORT_SYMBOL vmlinux 0x2bd0e1bd md_error -EXPORT_SYMBOL vmlinux 0x2bf45cc7 inet_register_protosw -EXPORT_SYMBOL vmlinux 0x2bfeb410 acpi_get_handle -EXPORT_SYMBOL vmlinux 0x2c14042f eth_header_cache_update -EXPORT_SYMBOL vmlinux 0x2c1ed449 vfs_writev -EXPORT_SYMBOL vmlinux 0x2c221dfa set_user_nice -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c73000b pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0x2c7acf8e security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0x2c89a575 jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0x2ca00a6f __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0x2ca319a6 wrmsrl_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x2cbf3ec2 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x2cc40ecf fence_remove_callback -EXPORT_SYMBOL vmlinux 0x2ccc2d01 __module_put_and_exit -EXPORT_SYMBOL vmlinux 0x2cdf092e jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0x2d03c383 blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0x2d0739f5 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0x2d0d5ca4 acpi_pm_device_run_wake -EXPORT_SYMBOL vmlinux 0x2d0e2043 unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d144e21 rdmsrl_on_cpu -EXPORT_SYMBOL vmlinux 0x2d192616 nonseekable_open -EXPORT_SYMBOL vmlinux 0x2d1d5740 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0x2d248c69 bio_integrity_trim -EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -EXPORT_SYMBOL vmlinux 0x2d320433 sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d33d7fd dmam_alloc_noncoherent -EXPORT_SYMBOL vmlinux 0x2d45b218 __alloc_pages_nodemask -EXPORT_SYMBOL vmlinux 0x2d585416 vga_switcheroo_get_client_state -EXPORT_SYMBOL vmlinux 0x2d59337e pci_reenable_device -EXPORT_SYMBOL vmlinux 0x2d6702b3 elv_dispatch_sort -EXPORT_SYMBOL vmlinux 0x2d69da44 block_write_end -EXPORT_SYMBOL vmlinux 0x2d8184f6 open_exec -EXPORT_SYMBOL vmlinux 0x2d915a68 register_console -EXPORT_SYMBOL vmlinux 0x2d9b0593 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x2d9dce5c fb_get_mode -EXPORT_SYMBOL vmlinux 0x2dba970e read_cache_page -EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu -EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink -EXPORT_SYMBOL vmlinux 0x2dedc4c2 acpi_format_exception -EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write -EXPORT_SYMBOL vmlinux 0x2e05e8d8 param_set_long -EXPORT_SYMBOL vmlinux 0x2e0d2f7f queue_work_on -EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put -EXPORT_SYMBOL vmlinux 0x2e1cddb9 blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat -EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies -EXPORT_SYMBOL vmlinux 0x2e2d9702 simple_write_end -EXPORT_SYMBOL vmlinux 0x2e441e37 inet_listen -EXPORT_SYMBOL vmlinux 0x2e4602c1 vfs_fsync -EXPORT_SYMBOL vmlinux 0x2e593a27 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0x2e602e8a mapping_tagged -EXPORT_SYMBOL vmlinux 0x2e63ccb6 page_symlink -EXPORT_SYMBOL vmlinux 0x2e81ef16 __put_cred -EXPORT_SYMBOL vmlinux 0x2e844b35 jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0x2e8c1888 sock_no_mmap -EXPORT_SYMBOL vmlinux 0x2e8fd877 cfb_fillrect -EXPORT_SYMBOL vmlinux 0x2e933e3c ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0x2ec4b49d tcf_exts_change -EXPORT_SYMBOL vmlinux 0x2eedf19f __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0x2f03046e __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource -EXPORT_SYMBOL vmlinux 0x2f1e97d8 neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0x2f214dbb lookup_bdev -EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device -EXPORT_SYMBOL vmlinux 0x2f3eebda inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag -EXPORT_SYMBOL vmlinux 0x2f52dc9d dma_ops -EXPORT_SYMBOL vmlinux 0x2f58efdf cleancache_register_ops -EXPORT_SYMBOL vmlinux 0x2f5c5e37 migrate_page_copy -EXPORT_SYMBOL vmlinux 0x2f64f89f cpu_present_mask -EXPORT_SYMBOL vmlinux 0x2f699fb8 vfs_statfs -EXPORT_SYMBOL vmlinux 0x2f794fea ___pskb_trim -EXPORT_SYMBOL vmlinux 0x2f7ecd52 filemap_fault -EXPORT_SYMBOL vmlinux 0x2f8146c8 nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0x2f83a80a dm_put_device -EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fbefa30 bio_integrity_advance -EXPORT_SYMBOL vmlinux 0x2fd2893f seq_open_private -EXPORT_SYMBOL vmlinux 0x2fe1a86d blk_queue_io_min -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2fe87b2d unlock_rename -EXPORT_SYMBOL vmlinux 0x2ff063b5 acpi_get_name -EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command -EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0x30380f51 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0x30417851 pagecache_write_begin -EXPORT_SYMBOL vmlinux 0x304895bc proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x30676f4b lock_rename -EXPORT_SYMBOL vmlinux 0x306b8ad1 locks_init_lock -EXPORT_SYMBOL vmlinux 0x306d1b40 mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0x30729266 __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0x307b5241 __starget_for_each_device -EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable -EXPORT_SYMBOL vmlinux 0x3081c617 scsi_device_set_state -EXPORT_SYMBOL vmlinux 0x30846cc5 tcf_hash_cleanup -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30a83bf8 acpi_get_hp_hw_control_from_firmware -EXPORT_SYMBOL vmlinux 0x30b04526 ida_init -EXPORT_SYMBOL vmlinux 0x30b07101 blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0x30b253a1 get_thermal_instance -EXPORT_SYMBOL vmlinux 0x30bb05a0 skb_seq_read -EXPORT_SYMBOL vmlinux 0x30c9c937 bprm_change_interp -EXPORT_SYMBOL vmlinux 0x30cba2aa security_inode_permission -EXPORT_SYMBOL vmlinux 0x30d54531 jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x310f02ec memremap -EXPORT_SYMBOL vmlinux 0x31345b83 mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x313a9020 km_policy_expired -EXPORT_SYMBOL vmlinux 0x313f1fcc skb_free_datagram -EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present -EXPORT_SYMBOL vmlinux 0x3147857d default_red -EXPORT_SYMBOL vmlinux 0x31689b19 inode_needs_sync -EXPORT_SYMBOL vmlinux 0x31693034 end_buffer_async_write -EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear -EXPORT_SYMBOL vmlinux 0x317bd83c unregister_key_type -EXPORT_SYMBOL vmlinux 0x31829976 input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x31a5fbbf jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x31b31f5c csum_partial_copy_nocheck -EXPORT_SYMBOL vmlinux 0x31d12b66 udp_set_csum -EXPORT_SYMBOL vmlinux 0x31e76b57 recalibrate_cpu_khz -EXPORT_SYMBOL vmlinux 0x31ec44a0 _raw_read_unlock_bh -EXPORT_SYMBOL vmlinux 0x31edd66f unlock_buffer -EXPORT_SYMBOL vmlinux 0x31f9ffb4 blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x3202435a wrmsr_safe_regs -EXPORT_SYMBOL vmlinux 0x320405d2 mount_pseudo -EXPORT_SYMBOL vmlinux 0x3212641f mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0x3217c594 inet_getname -EXPORT_SYMBOL vmlinux 0x324799af fsync_bdev -EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src -EXPORT_SYMBOL vmlinux 0x325e2641 padata_alloc -EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom -EXPORT_SYMBOL vmlinux 0x3267118a peernet2id_alloc -EXPORT_SYMBOL vmlinux 0x326a2e67 vme_irq_handler -EXPORT_SYMBOL vmlinux 0x32755745 pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0x3280d679 set_wb_congested -EXPORT_SYMBOL vmlinux 0x32aaed7e i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x32acd2ce uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0x32d4ee2e seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0x32d95581 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x32dac247 inet_select_addr -EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string -EXPORT_SYMBOL vmlinux 0x32fc62d9 prepare_creds -EXPORT_SYMBOL vmlinux 0x33092fcc inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x332a0059 blk_stop_queue -EXPORT_SYMBOL vmlinux 0x333cb37c __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0x334998a0 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0x3356b90b cpu_tss -EXPORT_SYMBOL vmlinux 0x3366d068 max8998_bulk_read -EXPORT_SYMBOL vmlinux 0x33b180f0 cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page -EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x33e46cf5 tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0x33ec638e key_revoke -EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r -EXPORT_SYMBOL vmlinux 0x3409ad36 pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x3412cac5 netif_rx -EXPORT_SYMBOL vmlinux 0x3418283d read_dev_sector -EXPORT_SYMBOL vmlinux 0x3428541a softnet_data -EXPORT_SYMBOL vmlinux 0x343e20d1 ilookup5_nowait -EXPORT_SYMBOL vmlinux 0x344928e1 xfrm_register_mode -EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin -EXPORT_SYMBOL vmlinux 0x347013de nla_validate -EXPORT_SYMBOL vmlinux 0x347d83a7 dquot_file_open -EXPORT_SYMBOL vmlinux 0x348b2e3c mmc_can_reset -EXPORT_SYMBOL vmlinux 0x348d0564 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0x349213ef cpu_core_map -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x34f7e1f9 input_register_handler -EXPORT_SYMBOL vmlinux 0x34feca0a dev_get_by_index -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x35234025 read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0x3539d140 blk_integrity_merge_bio -EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy -EXPORT_SYMBOL vmlinux 0x353e21e3 acpi_bios_warning -EXPORT_SYMBOL vmlinux 0x354aa9cf bitmap_startwrite -EXPORT_SYMBOL vmlinux 0x35606626 acpi_device_hid -EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x3570d6b6 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x357b8867 pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0x357c2bd4 dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35bd18f2 clear_inode -EXPORT_SYMBOL vmlinux 0x35d4402c netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0x35edf1cc netpoll_print_options -EXPORT_SYMBOL vmlinux 0x35efd592 pci_map_rom -EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x360b8cb6 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x3622850d xfrm_unregister_mode -EXPORT_SYMBOL vmlinux 0x36319f31 textsearch_unregister -EXPORT_SYMBOL vmlinux 0x363f385d nvm_free_rqd_ppalist -EXPORT_SYMBOL vmlinux 0x3642ede4 kernel_param_lock -EXPORT_SYMBOL vmlinux 0x365045d0 ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0x36722f6a agp_generic_alloc_by_type -EXPORT_SYMBOL vmlinux 0x3694c539 mmc_start_req -EXPORT_SYMBOL vmlinux 0x369e1115 kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0x36a58059 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc -EXPORT_SYMBOL vmlinux 0x36e441ca unload_nls -EXPORT_SYMBOL vmlinux 0x3701a196 csum_partial_copy_to_user -EXPORT_SYMBOL vmlinux 0x370d7320 from_kgid_munged -EXPORT_SYMBOL vmlinux 0x370f9850 efi -EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x374df387 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0x37607ff8 param_ops_ulong -EXPORT_SYMBOL vmlinux 0x376267e7 security_mmap_file -EXPORT_SYMBOL vmlinux 0x37755d89 bio_map_kern -EXPORT_SYMBOL vmlinux 0x377e6815 bdi_init -EXPORT_SYMBOL vmlinux 0x3787083d pci_bus_get -EXPORT_SYMBOL vmlinux 0x37a0a9e6 init_task -EXPORT_SYMBOL vmlinux 0x37a51b2a compat_ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date -EXPORT_SYMBOL vmlinux 0x37dd64cc devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0x37f8d49b key_unlink -EXPORT_SYMBOL vmlinux 0x38099e13 wrmsrl_on_cpu -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x381c6efa __blk_end_request_cur -EXPORT_SYMBOL vmlinux 0x382038b7 locks_remove_posix -EXPORT_SYMBOL vmlinux 0x38239ac5 param_get_short -EXPORT_SYMBOL vmlinux 0x382caa2d devm_gpiod_get -EXPORT_SYMBOL vmlinux 0x383bc18f amd_iommu_get_v2_domain -EXPORT_SYMBOL vmlinux 0x3840672e netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0x385b5520 tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0x385e0403 nvm_get_blk -EXPORT_SYMBOL vmlinux 0x386f0830 skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list -EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38de9fff phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0x38e1ffbb serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x38eca847 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0x38ede825 genphy_config_aneg -EXPORT_SYMBOL vmlinux 0x38f33bed dump_fpu -EXPORT_SYMBOL vmlinux 0x38f359dc scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x3907bfd2 dump_align -EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages -EXPORT_SYMBOL vmlinux 0x390b5752 kset_unregister -EXPORT_SYMBOL vmlinux 0x39327236 take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x39330373 dev_get_iflink -EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x393d4de9 crc32_le -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x396c7712 tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x39815f4d nf_hook_slow -EXPORT_SYMBOL vmlinux 0x399358b9 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0x399e3fd6 pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0x39a055f3 acpi_remove_gpe_handler -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39dd9223 x86_hyper_vmware -EXPORT_SYMBOL vmlinux 0x39de4f0e reservation_object_reserve_shared -EXPORT_SYMBOL vmlinux 0x39e47d30 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0x39e67532 tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x39f1c2f4 ida_get_new_above -EXPORT_SYMBOL vmlinux 0x3a05f3f5 md_integrity_register -EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify -EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush -EXPORT_SYMBOL vmlinux 0x3a4218eb scsi_verify_blk_ioctl -EXPORT_SYMBOL vmlinux 0x3a55f9c4 pnp_device_detach -EXPORT_SYMBOL vmlinux 0x3a766a04 bioset_integrity_free -EXPORT_SYMBOL vmlinux 0x3a9206e3 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region -EXPORT_SYMBOL vmlinux 0x3ab0ba2f __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x3adf8a8c fddi_change_mtu -EXPORT_SYMBOL vmlinux 0x3b19e47c mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0x3b1d3057 sock_create_kern -EXPORT_SYMBOL vmlinux 0x3b2432e8 blk_mq_all_tag_busy_iter -EXPORT_SYMBOL vmlinux 0x3b271629 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x3b3bc287 alloc_fcdev -EXPORT_SYMBOL vmlinux 0x3b50bded input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x3b5a8ae6 mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b6afa41 genphy_soft_reset -EXPORT_SYMBOL vmlinux 0x3b6f6cd2 udp_table -EXPORT_SYMBOL vmlinux 0x3b742592 devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0x3b7aa2f4 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0x3b8944f6 ip6_xmit -EXPORT_SYMBOL vmlinux 0x3b91fc01 max8925_set_bits -EXPORT_SYMBOL vmlinux 0x3ba4f7cf dev_set_mac_address -EXPORT_SYMBOL vmlinux 0x3bb3a460 bio_clone_bioset -EXPORT_SYMBOL vmlinux 0x3bb5114a prepare_to_wait -EXPORT_SYMBOL vmlinux 0x3bbe6963 dev_mc_add -EXPORT_SYMBOL vmlinux 0x3be4b4c4 tty_register_driver -EXPORT_SYMBOL vmlinux 0x3bf898d3 dev_addr_init -EXPORT_SYMBOL vmlinux 0x3c2fd174 flow_cache_fini -EXPORT_SYMBOL vmlinux 0x3c3a7bf6 path_nosuid -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c40aa91 sk_net_capable -EXPORT_SYMBOL vmlinux 0x3c457725 fsnotify_destroy_mark -EXPORT_SYMBOL vmlinux 0x3c47ee3a pid_task -EXPORT_SYMBOL vmlinux 0x3c483012 radix_tree_delete -EXPORT_SYMBOL vmlinux 0x3c54277d redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0x3c5c85f7 proc_create_mount_point -EXPORT_SYMBOL vmlinux 0x3c61a298 dget_parent -EXPORT_SYMBOL vmlinux 0x3c7a1649 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0x3c7bf158 pnp_is_active -EXPORT_SYMBOL vmlinux 0x3c7fb3cf devm_clk_put -EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull -EXPORT_SYMBOL vmlinux 0x3c9a9535 __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x3cab65bd from_kuid -EXPORT_SYMBOL vmlinux 0x3cac50f8 dump_page -EXPORT_SYMBOL vmlinux 0x3cad1e4c vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x3caf2b7a skb_queue_head -EXPORT_SYMBOL vmlinux 0x3ccb3981 sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0x3ce08f98 kmalloc_dma_caches -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3ceeaf01 phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0x3cf693e3 ab3100_event_register -EXPORT_SYMBOL vmlinux 0x3cf9e8a0 dev_get_flags -EXPORT_SYMBOL vmlinux 0x3cfb9127 simple_rmdir -EXPORT_SYMBOL vmlinux 0x3cfbc1af inet6_del_protocol -EXPORT_SYMBOL vmlinux 0x3d07724d xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x3d092ecc __inet_hash -EXPORT_SYMBOL vmlinux 0x3d0fc18c blk_execute_rq -EXPORT_SYMBOL vmlinux 0x3d1391e2 _raw_read_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x3d16de6a generic_pipe_buf_steal -EXPORT_SYMBOL vmlinux 0x3d181850 __ip_dev_find -EXPORT_SYMBOL vmlinux 0x3d20bc68 eth_validate_addr -EXPORT_SYMBOL vmlinux 0x3d2acb7c ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x3d44cbda agp_generic_type_to_mask_type -EXPORT_SYMBOL vmlinux 0x3d4fbd82 blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0x3d735192 devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0x3d7c1ed7 msrs_alloc -EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page -EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start -EXPORT_SYMBOL vmlinux 0x3dbb9cbe sock_sendmsg -EXPORT_SYMBOL vmlinux 0x3dbf36c9 sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x3dc81506 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3dce0079 ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x3dce5ead amd_iommu_enable_device_erratum -EXPORT_SYMBOL vmlinux 0x3dec93de sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e23d045 mmc_detect_change -EXPORT_SYMBOL vmlinux 0x3e2ae3a8 acpi_release_global_lock -EXPORT_SYMBOL vmlinux 0x3e577bce __page_symlink -EXPORT_SYMBOL vmlinux 0x3e5ed1d0 skb_put -EXPORT_SYMBOL vmlinux 0x3e6622b1 downgrade_write -EXPORT_SYMBOL vmlinux 0x3e7096a6 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource -EXPORT_SYMBOL vmlinux 0x3e8a8a7f xfrm_state_update -EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get -EXPORT_SYMBOL vmlinux 0x3eb720b9 bio_copy_kern -EXPORT_SYMBOL vmlinux 0x3eb72f63 sock_wmalloc -EXPORT_SYMBOL vmlinux 0x3eb90826 neigh_app_ns -EXPORT_SYMBOL vmlinux 0x3ec457e6 component_match_add -EXPORT_SYMBOL vmlinux 0x3ed567f7 pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0x3ee82d36 phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep -EXPORT_SYMBOL vmlinux 0x3f20ca97 rtc_lock -EXPORT_SYMBOL vmlinux 0x3f23beff dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0x3f3896d7 rtnl_unicast -EXPORT_SYMBOL vmlinux 0x3f3fd877 ip6_frag_match -EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f7216bb mpage_readpages -EXPORT_SYMBOL vmlinux 0x3fa5bfae input_unregister_handler -EXPORT_SYMBOL vmlinux 0x3fbe347f xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x3fc6cea2 unregister_qdisc -EXPORT_SYMBOL vmlinux 0x3fcc1e35 get_super -EXPORT_SYMBOL vmlinux 0x3fdb51e5 blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0x3fe18cbf crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight -EXPORT_SYMBOL vmlinux 0x3fea6122 iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0x3fec048f sg_next -EXPORT_SYMBOL vmlinux 0x4001d64f tcp_gro_complete -EXPORT_SYMBOL vmlinux 0x4008d96b inet_shutdown -EXPORT_SYMBOL vmlinux 0x4009c71b pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0x401dc0f9 scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0x4027b400 inode_claim_rsv_space -EXPORT_SYMBOL vmlinux 0x402b8281 __request_module -EXPORT_SYMBOL vmlinux 0x402e4ef5 ppp_channel_index -EXPORT_SYMBOL vmlinux 0x4031f750 blk_rq_init -EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev -EXPORT_SYMBOL vmlinux 0x404c5293 handle_edge_irq -EXPORT_SYMBOL vmlinux 0x404c93d4 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x404d08b5 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds -EXPORT_SYMBOL vmlinux 0x407a419c agp_generic_enable -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x4097fa45 acpi_read_bit_register -EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x409d7b28 tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40aa8069 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0x40c0c3f3 __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0x40c134c0 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40c89d46 acpi_get_table_by_index -EXPORT_SYMBOL vmlinux 0x40c8dfd5 vme_dma_list_free -EXPORT_SYMBOL vmlinux 0x40cb0ddf try_to_release_page -EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40e7c602 sock_from_file -EXPORT_SYMBOL vmlinux 0x40ef5040 mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x410c3006 dev_driver_string -EXPORT_SYMBOL vmlinux 0x412a0e7d scsi_print_sense -EXPORT_SYMBOL vmlinux 0x413c7e5e abort_creds -EXPORT_SYMBOL vmlinux 0x4143205a pci_unmap_rom -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x4166092b security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0x417662a0 inet6_del_offload -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x41957af0 finish_open -EXPORT_SYMBOL vmlinux 0x41a3fbf1 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x41baf194 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0x41c1b3a4 find_vma -EXPORT_SYMBOL vmlinux 0x41c2dd7d inet6_add_protocol -EXPORT_SYMBOL vmlinux 0x41cd567a xfrm_lookup -EXPORT_SYMBOL vmlinux 0x42096704 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x420ae004 module_layout -EXPORT_SYMBOL vmlinux 0x420b6b96 kfree_skb -EXPORT_SYMBOL vmlinux 0x4215eaec blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x4222b872 set_bh_page -EXPORT_SYMBOL vmlinux 0x4234f096 cpumask_next_and -EXPORT_SYMBOL vmlinux 0x42350e8d ucs2_strlen -EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x4253300b have_submounts -EXPORT_SYMBOL vmlinux 0x4257b26f misc_deregister -EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force -EXPORT_SYMBOL vmlinux 0x4275e44e skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x429103ea security_path_link -EXPORT_SYMBOL vmlinux 0x429c0347 gnttab_free_pages -EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x42c8de35 ioremap_nocache -EXPORT_SYMBOL vmlinux 0x4301288f security_file_permission -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x43568f2b dev_add_offload -EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 -EXPORT_SYMBOL vmlinux 0x436c36d2 compat_sock_get_timestampns -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x43a79d3b tcf_action_exec -EXPORT_SYMBOL vmlinux 0x43b0c9c3 preempt_schedule -EXPORT_SYMBOL vmlinux 0x43b4ac59 blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0x43cf7307 pci_set_dma_max_seg_size -EXPORT_SYMBOL vmlinux 0x43cfe6cb lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0x43dc75d5 scsi_remove_host -EXPORT_SYMBOL vmlinux 0x43e8f3b4 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0x43ef6a54 __f_setown -EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed -EXPORT_SYMBOL vmlinux 0x4417843f neigh_for_each -EXPORT_SYMBOL vmlinux 0x444637ef tty_kref_put -EXPORT_SYMBOL vmlinux 0x4450de03 xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x4461ccba blk_recount_segments -EXPORT_SYMBOL vmlinux 0x44685ec2 phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0x44873f98 xfrm6_rcv_cb -EXPORT_SYMBOL vmlinux 0x4489da02 register_sysctl_table -EXPORT_SYMBOL vmlinux 0x448e085f prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x448eac3e kmemdup -EXPORT_SYMBOL vmlinux 0x449059f8 tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp -EXPORT_SYMBOL vmlinux 0x449b2693 blk_make_request -EXPORT_SYMBOL vmlinux 0x449fe84b acpi_set_firmware_waking_vectors -EXPORT_SYMBOL vmlinux 0x44a81d5f acpi_evaluate_object -EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz -EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle -EXPORT_SYMBOL vmlinux 0x450b3358 sockfd_lookup -EXPORT_SYMBOL vmlinux 0x451e19c2 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x4529a2e7 __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x4561d743 serio_close -EXPORT_SYMBOL vmlinux 0x456773b8 dev_notice -EXPORT_SYMBOL vmlinux 0x456b9984 mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0x4571ef42 __skb_checksum -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x4599690c netdev_state_change -EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource -EXPORT_SYMBOL vmlinux 0x45acdc15 scsi_host_set_state -EXPORT_SYMBOL vmlinux 0x45d5e137 iunique -EXPORT_SYMBOL vmlinux 0x45d7c709 sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0x45fadd6c kernel_sendpage -EXPORT_SYMBOL vmlinux 0x45fe644d sg_miter_next -EXPORT_SYMBOL vmlinux 0x4604a43a mem_section -EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x4629334c __preempt_count -EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set -EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0x4684fdb9 simple_lookup -EXPORT_SYMBOL vmlinux 0x469b2dd5 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x469dbe40 scmd_printk -EXPORT_SYMBOL vmlinux 0x469f5370 key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0x46a1e262 agp_generic_create_gatt_table -EXPORT_SYMBOL vmlinux 0x46bc8337 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance -EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg -EXPORT_SYMBOL vmlinux 0x47075560 neigh_direct_output -EXPORT_SYMBOL vmlinux 0x4710e099 compat_nf_setsockopt -EXPORT_SYMBOL vmlinux 0x4722aa1a devm_gpiod_put_array -EXPORT_SYMBOL vmlinux 0x4724d17c frontswap_register_ops -EXPORT_SYMBOL vmlinux 0x4740b3bc xen_arch_unregister_cpu -EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x474462cc __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x47466282 pci_set_master -EXPORT_SYMBOL vmlinux 0x475c71fa thaw_bdev -EXPORT_SYMBOL vmlinux 0x475f010b acpi_purge_cached_objects -EXPORT_SYMBOL vmlinux 0x476c5e4f lwtunnel_encap_del_ops -EXPORT_SYMBOL vmlinux 0x47731758 nf_getsockopt -EXPORT_SYMBOL vmlinux 0x477e6dcb amd_iommu_pc_get_set_reg_val -EXPORT_SYMBOL vmlinux 0x47806f02 sock_edemux -EXPORT_SYMBOL vmlinux 0x4789dda4 ab3100_event_unregister -EXPORT_SYMBOL vmlinux 0x4789faff i2c_master_recv -EXPORT_SYMBOL vmlinux 0x478d10b2 ht_destroy_irq -EXPORT_SYMBOL vmlinux 0x478d7d88 genl_notify -EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x4799f465 request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit -EXPORT_SYMBOL vmlinux 0x479cb2ee bdi_register -EXPORT_SYMBOL vmlinux 0x479d71b8 udp6_set_csum -EXPORT_SYMBOL vmlinux 0x47c3b55c seq_vprintf -EXPORT_SYMBOL vmlinux 0x47c5bf92 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0x47cc43b6 vfs_iter_read -EXPORT_SYMBOL vmlinux 0x47f9c265 tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open -EXPORT_SYMBOL vmlinux 0x481cb9ab acpi_enter_sleep_state_prep -EXPORT_SYMBOL vmlinux 0x4824ec95 mem_cgroup_end_page_stat -EXPORT_SYMBOL vmlinux 0x4841bdee strnchr -EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days -EXPORT_SYMBOL vmlinux 0x4865722f tty_hung_up_p -EXPORT_SYMBOL vmlinux 0x487308ee bitmap_unplug -EXPORT_SYMBOL vmlinux 0x4873d445 sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x487d4a00 skb_push -EXPORT_SYMBOL vmlinux 0x488b4b9e blk_end_request -EXPORT_SYMBOL vmlinux 0x488ee606 set_blocksize -EXPORT_SYMBOL vmlinux 0x4891b417 blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0x4891fe7b blk_mq_can_queue -EXPORT_SYMBOL vmlinux 0x48a814f0 netif_wake_subqueue -EXPORT_SYMBOL vmlinux 0x48b223c6 amd_northbridges -EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48be0d22 blk_start_request -EXPORT_SYMBOL vmlinux 0x48d0ab2b rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0x48d50e79 amd_iommu_register_ppr_notifier -EXPORT_SYMBOL vmlinux 0x48dac688 __inode_permission -EXPORT_SYMBOL vmlinux 0x48eda33e blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0x48fabfdb kill_pid -EXPORT_SYMBOL vmlinux 0x48ff29d1 __sb_end_write -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x490da3d1 bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0x490edecb input_set_abs_params -EXPORT_SYMBOL vmlinux 0x494e3393 vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x4959dada bmap -EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init -EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data -EXPORT_SYMBOL vmlinux 0x4969e3d1 iget5_locked -EXPORT_SYMBOL vmlinux 0x49784f55 zpool_register_driver -EXPORT_SYMBOL vmlinux 0x4997826b inode_reclaim_rsv_space -EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan -EXPORT_SYMBOL vmlinux 0x49d88b21 blk_mq_delay_queue -EXPORT_SYMBOL vmlinux 0x49f6fa77 dquot_release -EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many -EXPORT_SYMBOL vmlinux 0x49fa7225 blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0x4a241601 dev_set_mtu -EXPORT_SYMBOL vmlinux 0x4a347754 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x4a46bb7b param_get_charp -EXPORT_SYMBOL vmlinux 0x4a58e3f4 skb_copy -EXPORT_SYMBOL vmlinux 0x4a71f376 security_path_mkdir -EXPORT_SYMBOL vmlinux 0x4a8961f5 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x4a9fdc12 param_get_long -EXPORT_SYMBOL vmlinux 0x4aa9fe8e pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk -EXPORT_SYMBOL vmlinux 0x4ac64120 unregister_filesystem -EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource -EXPORT_SYMBOL vmlinux 0x4ace9f4c single_release -EXPORT_SYMBOL vmlinux 0x4acfe214 __scsi_print_sense -EXPORT_SYMBOL vmlinux 0x4ada758a nf_reinject -EXPORT_SYMBOL vmlinux 0x4adcea69 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x4ade894d input_inject_event -EXPORT_SYMBOL vmlinux 0x4ae5add2 scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x4af63006 key_invalidate -EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize -EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure -EXPORT_SYMBOL vmlinux 0x4b0da965 agp_put_bridge -EXPORT_SYMBOL vmlinux 0x4b1f25f6 blk_delay_queue -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b667176 lg_local_lock_cpu -EXPORT_SYMBOL vmlinux 0x4b76dfb9 dquot_enable -EXPORT_SYMBOL vmlinux 0x4b7df622 dm_register_target -EXPORT_SYMBOL vmlinux 0x4b8121c2 serio_interrupt -EXPORT_SYMBOL vmlinux 0x4b93d812 register_netdev -EXPORT_SYMBOL vmlinux 0x4b9c985d tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x4b9dfb04 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0x4ba27a3b poll_schedule_timeout -EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get -EXPORT_SYMBOL vmlinux 0x4bc08938 gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x4bcad670 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0x4bd44563 single_open -EXPORT_SYMBOL vmlinux 0x4bd4f310 is_bad_inode -EXPORT_SYMBOL vmlinux 0x4bde8dc1 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0x4bf996a4 dcache_readdir -EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance -EXPORT_SYMBOL vmlinux 0x4c0ed602 elv_rb_former_request -EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf -EXPORT_SYMBOL vmlinux 0x4c35c61e netlink_capable -EXPORT_SYMBOL vmlinux 0x4c3654bb kobject_set_name -EXPORT_SYMBOL vmlinux 0x4c3a18cf sock_no_getname -EXPORT_SYMBOL vmlinux 0x4c5fb377 i8042_remove_filter -EXPORT_SYMBOL vmlinux 0x4c6d2f62 blk_queue_init_tags -EXPORT_SYMBOL vmlinux 0x4c71dc70 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0x4c878322 iosf_mbi_modify -EXPORT_SYMBOL vmlinux 0x4c8962cd __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x4c9d28b0 phys_base -EXPORT_SYMBOL vmlinux 0x4ca9669f scnprintf -EXPORT_SYMBOL vmlinux 0x4cae0e0f pci_set_mwi -EXPORT_SYMBOL vmlinux 0x4cb063b4 __module_get -EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval -EXPORT_SYMBOL vmlinux 0x4ce70338 netdev_master_upper_dev_link_private -EXPORT_SYMBOL vmlinux 0x4cf04fe9 param_ops_invbool -EXPORT_SYMBOL vmlinux 0x4cfc4b33 acl_by_type -EXPORT_SYMBOL vmlinux 0x4d40abde seq_lseek -EXPORT_SYMBOL vmlinux 0x4d40dcaf blk_queue_invalidate_tags -EXPORT_SYMBOL vmlinux 0x4d782aa0 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4d9b9d5d mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse -EXPORT_SYMBOL vmlinux 0x4e0c6702 tcp_release_cb -EXPORT_SYMBOL vmlinux 0x4e2ae2e2 netdev_change_features -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e498a1d backlight_force_update -EXPORT_SYMBOL vmlinux 0x4e593297 input_unregister_device -EXPORT_SYMBOL vmlinux 0x4e65f875 get_disk -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e8203db dev_get_stats -EXPORT_SYMBOL vmlinux 0x4e98518f dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x4e9eef8e save_mount_options -EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset -EXPORT_SYMBOL vmlinux 0x4ea571fc update_region -EXPORT_SYMBOL vmlinux 0x4ed624e1 fbcon_set_tileops -EXPORT_SYMBOL vmlinux 0x4ed9b8df input_register_device -EXPORT_SYMBOL vmlinux 0x4ee94375 tcp_sendpage -EXPORT_SYMBOL vmlinux 0x4efa394d dst_discard_out -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f2f8bd5 pci_dev_get -EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse -EXPORT_SYMBOL vmlinux 0x4f3d2f2f sock_no_accept -EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command -EXPORT_SYMBOL vmlinux 0x4f5a8bc8 account_page_dirtied -EXPORT_SYMBOL vmlinux 0x4f5c19f2 blk_mq_start_request -EXPORT_SYMBOL vmlinux 0x4f674062 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday -EXPORT_SYMBOL vmlinux 0x4f6b400b _copy_from_user -EXPORT_SYMBOL vmlinux 0x4f783f30 acpi_read -EXPORT_SYMBOL vmlinux 0x4f79dd6e nla_reserve -EXPORT_SYMBOL vmlinux 0x4f7a4827 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0x4f855467 mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0x4f8b5ddb _copy_to_user -EXPORT_SYMBOL vmlinux 0x4f8c3358 vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0x4f952179 sync_filesystem -EXPORT_SYMBOL vmlinux 0x4f9a5868 nf_unregister_hooks -EXPORT_SYMBOL vmlinux 0x4fa44327 fbcon_rotate_cw -EXPORT_SYMBOL vmlinux 0x4fba401f blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0x4fc25241 lock_fb_info -EXPORT_SYMBOL vmlinux 0x4fccd485 devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command -EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security -EXPORT_SYMBOL vmlinux 0x501cc121 __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0x502425b3 nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0x50529870 acpi_get_gpe_status -EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x50675076 __get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x506fb2cc pci_disable_device -EXPORT_SYMBOL vmlinux 0x508dc86b md_cluster_ops -EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method -EXPORT_SYMBOL vmlinux 0x50a366c9 iput -EXPORT_SYMBOL vmlinux 0x50a5a454 pnp_stop_dev -EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch -EXPORT_SYMBOL vmlinux 0x50afcc14 scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x50ba769a kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del -EXPORT_SYMBOL vmlinux 0x50d90b6a blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x50e04e45 sk_stream_error -EXPORT_SYMBOL vmlinux 0x51086719 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0x510ea247 agp_generic_remove_memory -EXPORT_SYMBOL vmlinux 0x510eb426 write_one_page -EXPORT_SYMBOL vmlinux 0x51164ad9 cmdline_parts_set -EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0x511facbc dev_alert -EXPORT_SYMBOL vmlinux 0x51200d31 pnpacpi_protocol -EXPORT_SYMBOL vmlinux 0x5143f045 nobh_truncate_page -EXPORT_SYMBOL vmlinux 0x514cdf26 pci_disable_msi -EXPORT_SYMBOL vmlinux 0x515a64ba blkdev_get -EXPORT_SYMBOL vmlinux 0x51719973 dq_data_lock -EXPORT_SYMBOL vmlinux 0x5187c089 inet6_register_icmp_sender -EXPORT_SYMBOL vmlinux 0x519622ea pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled -EXPORT_SYMBOL vmlinux 0x51d7b059 devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x51e15309 vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0x51e51806 dev_uc_sync -EXPORT_SYMBOL vmlinux 0x51f60054 pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str -EXPORT_SYMBOL vmlinux 0x52095e19 acpi_get_data -EXPORT_SYMBOL vmlinux 0x52130046 acpi_check_address_range -EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0x521bb71b gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0x525e026f acpi_os_unmap_generic_address -EXPORT_SYMBOL vmlinux 0x5270033c security_path_chown -EXPORT_SYMBOL vmlinux 0x52715b8b first_ec -EXPORT_SYMBOL vmlinux 0x527d4b62 __nd_iostat_start -EXPORT_SYMBOL vmlinux 0x527fd2bb d_set_fallthru -EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x52c3acc7 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0x52c4f5c1 ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x52cd038e get_io_context -EXPORT_SYMBOL vmlinux 0x52de28f9 eth_change_mtu -EXPORT_SYMBOL vmlinux 0x52e62518 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x52edac71 scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid -EXPORT_SYMBOL vmlinux 0x531df281 up_read -EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off -EXPORT_SYMBOL vmlinux 0x535aeb30 ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0x5364e48d sk_receive_skb -EXPORT_SYMBOL vmlinux 0x536cc847 memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0x5377e556 hex2bin -EXPORT_SYMBOL vmlinux 0x5390a0a7 blk_sync_queue -EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x53b3d709 elv_unregister_queue -EXPORT_SYMBOL vmlinux 0x53bfb7be devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0x53d22421 mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0x53f04627 register_filesystem -EXPORT_SYMBOL vmlinux 0x53f4f7d1 vga_switcheroo_register_handler -EXPORT_SYMBOL vmlinux 0x53fd09c9 mutex_lock -EXPORT_SYMBOL vmlinux 0x54059a2a amd_iommu_pc_get_max_counters -EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x542827cf get_unmapped_area -EXPORT_SYMBOL vmlinux 0x542e9ac7 blk_mq_map_queue -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x543fffd0 param_set_charp -EXPORT_SYMBOL vmlinux 0x544b0c11 acpi_lid_notifier_register -EXPORT_SYMBOL vmlinux 0x54594d12 netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0x5464d3f6 acpi_remove_sci_handler -EXPORT_SYMBOL vmlinux 0x546aff81 __i2c_transfer -EXPORT_SYMBOL vmlinux 0x546c7ee1 compat_ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x54742748 inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x54804770 scsi_scan_host -EXPORT_SYMBOL vmlinux 0x5482e3b8 ps2_handle_ack -EXPORT_SYMBOL vmlinux 0x54910a45 bio_split -EXPORT_SYMBOL vmlinux 0x54a49f1b __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul -EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window -EXPORT_SYMBOL vmlinux 0x54d350fa ppp_register_channel -EXPORT_SYMBOL vmlinux 0x54e68bd1 inet6_release -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54f24d1a fence_default_wait -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x551bedc7 fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x552d2550 pci_bus_type -EXPORT_SYMBOL vmlinux 0x553fdb82 xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu -EXPORT_SYMBOL vmlinux 0x555f6938 lockref_get -EXPORT_SYMBOL vmlinux 0x5560161b inet6_protos -EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat -EXPORT_SYMBOL vmlinux 0x556e3a04 generic_file_splice_read -EXPORT_SYMBOL vmlinux 0x5596eded locks_mandatory_area -EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x55e60a36 queued_spin_unlock_wait -EXPORT_SYMBOL vmlinux 0x55f5019b __kmalloc_node -EXPORT_SYMBOL vmlinux 0x562b80d4 override_creds -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x5641419b wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x5644e52e devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0x564baad2 sk_alloc -EXPORT_SYMBOL vmlinux 0x56540363 dma_common_get_sgtable -EXPORT_SYMBOL vmlinux 0x56606f73 __ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x56819d29 bio_integrity_enabled -EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames -EXPORT_SYMBOL vmlinux 0x569983f9 generic_file_read_iter -EXPORT_SYMBOL vmlinux 0x56c031f0 inode_set_bytes -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56ca9178 intel_gmch_probe -EXPORT_SYMBOL vmlinux 0x56d2f0b1 kern_path_create -EXPORT_SYMBOL vmlinux 0x56dec671 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0x56df7852 free_xenballooned_pages -EXPORT_SYMBOL vmlinux 0x56e03ea3 set_trace_device -EXPORT_SYMBOL vmlinux 0x56f0510c tcf_destroy_chain -EXPORT_SYMBOL vmlinux 0x57062b1a pci_platform_rom -EXPORT_SYMBOL vmlinux 0x570f6512 iov_iter_kvec -EXPORT_SYMBOL vmlinux 0x5714e075 skb_checksum_help -EXPORT_SYMBOL vmlinux 0x571c1d2b secpath_dup -EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x575622fe nvm_dev_dma_alloc -EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x57728197 nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x5777dd47 mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0x577d35f3 hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x578855b8 bio_integrity_prep -EXPORT_SYMBOL vmlinux 0x57893fad jbd2_journal_load -EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy -EXPORT_SYMBOL vmlinux 0x579417a6 crypto_sha512_update -EXPORT_SYMBOL vmlinux 0x57ba72ab fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x57c0a3bb kill_bdev -EXPORT_SYMBOL vmlinux 0x57e89096 elv_rb_del -EXPORT_SYMBOL vmlinux 0x580a19fa serio_unregister_port -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x5832a9d4 blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x584738f9 rdmsr_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep -EXPORT_SYMBOL vmlinux 0x585bab2f pagecache_write_end -EXPORT_SYMBOL vmlinux 0x58604e4d alloc_iova_mem -EXPORT_SYMBOL vmlinux 0x586103be acpi_setup_gpe_for_wake -EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat -EXPORT_SYMBOL vmlinux 0x587756b6 debugfs_create_automount -EXPORT_SYMBOL vmlinux 0x589a3c64 __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58bf91f2 genlmsg_put -EXPORT_SYMBOL vmlinux 0x58d4d001 phy_ethtool_gset -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58fe14bb module_put -EXPORT_SYMBOL vmlinux 0x5942cef4 mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0x5944d015 __cachemode2pte_tbl -EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map -EXPORT_SYMBOL vmlinux 0x59642fd4 register_framebuffer -EXPORT_SYMBOL vmlinux 0x5982dcc3 submit_bio_wait -EXPORT_SYMBOL vmlinux 0x5983bfbd blk_put_queue -EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x599677ef __dst_free -EXPORT_SYMBOL vmlinux 0x59a5d4c4 jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release -EXPORT_SYMBOL vmlinux 0x59bc9609 acpi_write_bit_register -EXPORT_SYMBOL vmlinux 0x59bd2970 __register_chrdev -EXPORT_SYMBOL vmlinux 0x59ccac1c generic_writepages -EXPORT_SYMBOL vmlinux 0x59f23663 __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0x59f580de param_get_ullong -EXPORT_SYMBOL vmlinux 0x5a06e615 padata_register_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a12e788 locks_copy_conflock -EXPORT_SYMBOL vmlinux 0x5a35f7c7 is_nd_btt -EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 -EXPORT_SYMBOL vmlinux 0x5a612d11 ps2_begin_command -EXPORT_SYMBOL vmlinux 0x5a7a8f15 mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0x5a7c4139 compat_nf_getsockopt -EXPORT_SYMBOL vmlinux 0x5a82c44a complete_and_exit -EXPORT_SYMBOL vmlinux 0x5a85cfa5 __frontswap_store -EXPORT_SYMBOL vmlinux 0x5a921311 strncmp -EXPORT_SYMBOL vmlinux 0x5aa12dfd iommu_tbl_range_alloc -EXPORT_SYMBOL vmlinux 0x5aafbc3a set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x5ab2dfe9 skb_vlan_push -EXPORT_SYMBOL vmlinux 0x5ac20c67 dev_change_carrier -EXPORT_SYMBOL vmlinux 0x5ac376a5 acpi_install_fixed_event_handler -EXPORT_SYMBOL vmlinux 0x5ac3f3a4 rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0x5af5a1f5 skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get -EXPORT_SYMBOL vmlinux 0x5b100be0 proc_mkdir -EXPORT_SYMBOL vmlinux 0x5b196022 kill_litter_super -EXPORT_SYMBOL vmlinux 0x5b2231f2 simple_write_begin -EXPORT_SYMBOL vmlinux 0x5b23939e param_set_ullong -EXPORT_SYMBOL vmlinux 0x5b2fa6ff __check_sticky -EXPORT_SYMBOL vmlinux 0x5b55c021 down_read -EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap -EXPORT_SYMBOL vmlinux 0x5b67a4fc devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x5b71bd44 blk_register_region -EXPORT_SYMBOL vmlinux 0x5b9c808a acpi_get_possible_resources -EXPORT_SYMBOL vmlinux 0x5bbfc538 blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0x5bc10524 printk_emit -EXPORT_SYMBOL vmlinux 0x5bc40a73 __ip_select_ident -EXPORT_SYMBOL vmlinux 0x5bc8d583 copy_from_user_overflow -EXPORT_SYMBOL vmlinux 0x5be2f83b sock_rfree -EXPORT_SYMBOL vmlinux 0x5bf97f46 jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x5c0442fd acpi_gbl_FADT -EXPORT_SYMBOL vmlinux 0x5c05e884 input_unregister_handle -EXPORT_SYMBOL vmlinux 0x5c19ad16 ata_dev_printk -EXPORT_SYMBOL vmlinux 0x5c239e17 agp_alloc_page_array -EXPORT_SYMBOL vmlinux 0x5c2ced6b ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0x5c2e7108 touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x5c4fd04b dev_mc_init -EXPORT_SYMBOL vmlinux 0x5c51de02 __skb_get_hash_flowi4 -EXPORT_SYMBOL vmlinux 0x5c551246 tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x5c6bb79a tcp_req_err -EXPORT_SYMBOL vmlinux 0x5c781638 ps2_sendbyte -EXPORT_SYMBOL vmlinux 0x5c7f9f81 mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0x5c858300 __neigh_create -EXPORT_SYMBOL vmlinux 0x5c9dfa1b nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0x5ca50226 inetdev_by_index -EXPORT_SYMBOL vmlinux 0x5caadaf9 neigh_seq_next -EXPORT_SYMBOL vmlinux 0x5ccd49e9 brioctl_set -EXPORT_SYMBOL vmlinux 0x5cf036e2 inode_init_always -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5cf9fba8 dev_queue_xmit -EXPORT_SYMBOL vmlinux 0x5cfe0568 set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0x5d01021c del_gendisk -EXPORT_SYMBOL vmlinux 0x5d0161ec proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0x5d07acbf mount_bdev -EXPORT_SYMBOL vmlinux 0x5d093682 wake_up_process -EXPORT_SYMBOL vmlinux 0x5d3c751a fsnotify_alloc_group -EXPORT_SYMBOL vmlinux 0x5d3d22bb device_get_mac_address -EXPORT_SYMBOL vmlinux 0x5d4c679a __skb_get_hash -EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain -EXPORT_SYMBOL vmlinux 0x5d672697 seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0x5d74dbcf pnp_range_reserved -EXPORT_SYMBOL vmlinux 0x5d8475e0 completion_done -EXPORT_SYMBOL vmlinux 0x5d92d27f scsi_cmd_ioctl -EXPORT_SYMBOL vmlinux 0x5d98cb93 key_alloc -EXPORT_SYMBOL vmlinux 0x5da864e4 genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x5dadc7bd fget_raw -EXPORT_SYMBOL vmlinux 0x5dc446c0 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x5dc77654 vfs_mknod -EXPORT_SYMBOL vmlinux 0x5dcc2aa1 sock_i_ino -EXPORT_SYMBOL vmlinux 0x5dd21c1a install_exec_creds -EXPORT_SYMBOL vmlinux 0x5de2187f pci_get_slot -EXPORT_SYMBOL vmlinux 0x5de7eddf km_is_alive -EXPORT_SYMBOL vmlinux 0x5e2bcabb udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x5e32db2e dqput -EXPORT_SYMBOL vmlinux 0x5e364674 dquot_commit -EXPORT_SYMBOL vmlinux 0x5e5cd1d3 pci_lost_interrupt -EXPORT_SYMBOL vmlinux 0x5e855ff0 __blk_end_request -EXPORT_SYMBOL vmlinux 0x5e869dd5 vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5eae38f0 pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ecfeec6 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5ee79d22 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0x5eedf234 scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0x5ef07266 pagevec_lookup_tag -EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 -EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f166729 nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0x5f177eea mount_single -EXPORT_SYMBOL vmlinux 0x5f3c4a72 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x5f5fb85f lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x5f6aa401 inet_frag_kill -EXPORT_SYMBOL vmlinux 0x5f801c69 ip_setsockopt -EXPORT_SYMBOL vmlinux 0x5f8e9589 filemap_map_pages -EXPORT_SYMBOL vmlinux 0x5fb0cb2c wait_for_key_construction -EXPORT_SYMBOL vmlinux 0x5fb2e8ef idr_init -EXPORT_SYMBOL vmlinux 0x5fd8435c input_open_device -EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat -EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool -EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x6028fc42 blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0x602e19c7 mdio_bus_type -EXPORT_SYMBOL vmlinux 0x602ed00d acpi_current_gpe_count -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x604316d8 acpi_finish_gpe -EXPORT_SYMBOL vmlinux 0x605690ec do_truncate -EXPORT_SYMBOL vmlinux 0x60653323 udp_add_offload -EXPORT_SYMBOL vmlinux 0x606a21a3 param_ops_short -EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number -EXPORT_SYMBOL vmlinux 0x608c43a9 jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector -EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x609f5b35 ucs2_strnlen -EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL vmlinux 0x60a543cc netpoll_send_udp -EXPORT_SYMBOL vmlinux 0x60be085a pci_fixup_device -EXPORT_SYMBOL vmlinux 0x60c18c87 abx500_mask_and_set_register_interruptible -EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x60e1f9cc jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0x610aaa40 mempool_destroy -EXPORT_SYMBOL vmlinux 0x61164c91 i2c_master_send -EXPORT_SYMBOL vmlinux 0x611c74b2 dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x6134df5e udp_prot -EXPORT_SYMBOL vmlinux 0x614a0553 dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0x614bb773 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x61520529 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0x6174d982 skb_append_datato_frags -EXPORT_SYMBOL vmlinux 0x617d91d1 pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x618911fc numa_node -EXPORT_SYMBOL vmlinux 0x61895e1a __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0x618a8d5a ip_defrag -EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x61a128f3 simple_follow_link -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61c1520f writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x61ca6c13 dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0x61d45e70 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x61dcba9a neigh_seq_start -EXPORT_SYMBOL vmlinux 0x61e2bcb8 devm_clk_get -EXPORT_SYMBOL vmlinux 0x61ef6170 __tracepoint_fence_emit -EXPORT_SYMBOL vmlinux 0x61f218f9 __quota_error -EXPORT_SYMBOL vmlinux 0x61fb248a node_states -EXPORT_SYMBOL vmlinux 0x62049256 acpi_disable -EXPORT_SYMBOL vmlinux 0x6207e9db pci_get_class -EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x6219e8fd seq_puts -EXPORT_SYMBOL vmlinux 0x6225637e md5_transform -EXPORT_SYMBOL vmlinux 0x6226b9fa machine_to_phys_mapping -EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x6230b7ab tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0x6237f6b5 acpi_enable_event -EXPORT_SYMBOL vmlinux 0x62448739 pci_pme_active -EXPORT_SYMBOL vmlinux 0x6261a131 devm_ioremap -EXPORT_SYMBOL vmlinux 0x6270a1ab mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x62748e70 acpi_set_current_resources -EXPORT_SYMBOL vmlinux 0x627dd023 __getblk_gfp -EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x62877a7a param_set_copystring -EXPORT_SYMBOL vmlinux 0x62892733 seq_read -EXPORT_SYMBOL vmlinux 0x628f2686 in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x629b16d7 scsi_block_requests -EXPORT_SYMBOL vmlinux 0x62c05bf1 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0x63074704 bd_set_size -EXPORT_SYMBOL vmlinux 0x6309279b dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled -EXPORT_SYMBOL vmlinux 0x631bf72f max8925_reg_write -EXPORT_SYMBOL vmlinux 0x6326e91f param_ops_string -EXPORT_SYMBOL vmlinux 0x632d7caa dentry_unhash -EXPORT_SYMBOL vmlinux 0x63352dba kobject_del -EXPORT_SYMBOL vmlinux 0x634af471 inet_frag_destroy -EXPORT_SYMBOL vmlinux 0x6355b5f9 scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x636a5691 acpi_register_ioapic -EXPORT_SYMBOL vmlinux 0x636cc310 inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x636f795e md_unregister_thread -EXPORT_SYMBOL vmlinux 0x6370f69b rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x637d2cee sk_stream_write_space -EXPORT_SYMBOL vmlinux 0x6388591c down_timeout -EXPORT_SYMBOL vmlinux 0x63a01291 acpi_leave_sleep_state_prep -EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63b880f2 may_umount -EXPORT_SYMBOL vmlinux 0x63b91d6d user_path_at_empty -EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63c846a2 tcp_close -EXPORT_SYMBOL vmlinux 0x63cfcc14 blk_queue_start_tag -EXPORT_SYMBOL vmlinux 0x63d57a95 gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0x63e9b0cb tcp_proc_register -EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user -EXPORT_SYMBOL vmlinux 0x63fc47f1 noop_fsync -EXPORT_SYMBOL vmlinux 0x63fe9751 generic_file_mmap -EXPORT_SYMBOL vmlinux 0x64014b58 dev_addr_add -EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x641f14ab phy_device_create -EXPORT_SYMBOL vmlinux 0x6423b150 vfs_read -EXPORT_SYMBOL vmlinux 0x64445d94 devm_gpiod_put -EXPORT_SYMBOL vmlinux 0x6449fd41 acpi_install_address_space_handler -EXPORT_SYMBOL vmlinux 0x647b79c9 scsi_ioctl -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x649acbab genphy_update_link -EXPORT_SYMBOL vmlinux 0x64ab0e98 wait_for_completion -EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape -EXPORT_SYMBOL vmlinux 0x64e02292 _dev_info -EXPORT_SYMBOL vmlinux 0x64eae7ad set_memory_array_wb -EXPORT_SYMBOL vmlinux 0x64fa7693 __acpi_handle_debug -EXPORT_SYMBOL vmlinux 0x64fbea32 free_user_ns -EXPORT_SYMBOL vmlinux 0x64fc2575 kthread_create_on_node -EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth -EXPORT_SYMBOL vmlinux 0x651a4139 test_taint -EXPORT_SYMBOL vmlinux 0x651f3543 blk_run_queue -EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x65443c36 xfrm_register_km -EXPORT_SYMBOL vmlinux 0x655f1ab0 set_memory_array_wc -EXPORT_SYMBOL vmlinux 0x6563835e __kernel_write -EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem -EXPORT_SYMBOL vmlinux 0x656d4d4d xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0x657dc54a netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x657e6136 get_mm_exe_file -EXPORT_SYMBOL vmlinux 0x65b992ac xen_alloc_p2m_entry -EXPORT_SYMBOL vmlinux 0x65c9463a i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier -EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65dfd9b4 __destroy_inode -EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x65e70a3e max8925_bulk_write -EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x66132536 padata_stop -EXPORT_SYMBOL vmlinux 0x661b27e4 param_ops_ushort -EXPORT_SYMBOL vmlinux 0x663f7cd0 acpi_install_table_handler -EXPORT_SYMBOL vmlinux 0x663fd328 tty_free_termios -EXPORT_SYMBOL vmlinux 0x664d58b1 request_firmware -EXPORT_SYMBOL vmlinux 0x6653d6a3 __lock_buffer -EXPORT_SYMBOL vmlinux 0x6655818f __init_rwsem -EXPORT_SYMBOL vmlinux 0x667ae977 filp_open -EXPORT_SYMBOL vmlinux 0x66840846 pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x66b89c77 mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0x66d804b1 percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0x66ffdafc nd_pfn_probe -EXPORT_SYMBOL vmlinux 0x6701570e vfs_fsync_range -EXPORT_SYMBOL vmlinux 0x671de7c5 blk_get_queue -EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 -EXPORT_SYMBOL vmlinux 0x67386433 acpi_bus_register_driver -EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges -EXPORT_SYMBOL vmlinux 0x675d69d1 xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0x675f2ee2 nf_log_packet -EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create -EXPORT_SYMBOL vmlinux 0x67767ef3 blk_start_queue -EXPORT_SYMBOL vmlinux 0x677c6e3f param_set_uint -EXPORT_SYMBOL vmlinux 0x67a3b72b tty_port_open -EXPORT_SYMBOL vmlinux 0x67a5d29e make_kuid -EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios -EXPORT_SYMBOL vmlinux 0x67b42e33 devm_free_irq -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67bc20df register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x67d2438b release_firmware -EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x680ec266 _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0x681ba834 mmc_release_host -EXPORT_SYMBOL vmlinux 0x68592e30 swiotlb_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0x6876736c ata_print_version -EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x688cfc8e xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0x688f8571 neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages -EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x68d5de76 mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0x68e09214 blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0x68effb30 lwtunnel_encap_add_ops -EXPORT_SYMBOL vmlinux 0x68fba4e7 con_set_default_unimap -EXPORT_SYMBOL vmlinux 0x69069b0a of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0x691001b5 acpi_evaluate_integer -EXPORT_SYMBOL vmlinux 0x6920ff27 proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0x6929887f ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0x692fa783 init_buffer -EXPORT_SYMBOL vmlinux 0x693dd31f i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x696d7513 fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 -EXPORT_SYMBOL vmlinux 0x699b7954 unregister_framebuffer -EXPORT_SYMBOL vmlinux 0x699dd82f jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be -EXPORT_SYMBOL vmlinux 0x69a1da4f jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource -EXPORT_SYMBOL vmlinux 0x69acdf38 memcpy -EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint -EXPORT_SYMBOL vmlinux 0x69cf805b input_get_keycode -EXPORT_SYMBOL vmlinux 0x69d8640f blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0x69e59b2a nf_unregister_hook -EXPORT_SYMBOL vmlinux 0x69fbc0a2 acpi_get_event_resources -EXPORT_SYMBOL vmlinux 0x69fe99e1 sock_no_poll -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a1b63b1 simple_link -EXPORT_SYMBOL vmlinux 0x6a1e0afa uart_match_port -EXPORT_SYMBOL vmlinux 0x6a2c8c34 twl6040_set_bits -EXPORT_SYMBOL vmlinux 0x6a391b06 crypto_sha256_update -EXPORT_SYMBOL vmlinux 0x6a4f4a96 vme_irq_free -EXPORT_SYMBOL vmlinux 0x6a5474eb ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask -EXPORT_SYMBOL vmlinux 0x6a60277d acpi_buffer_to_resource -EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable -EXPORT_SYMBOL vmlinux 0x6ab571cc mpage_writepage -EXPORT_SYMBOL vmlinux 0x6abc2a56 pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be -EXPORT_SYMBOL vmlinux 0x6acc0abc pci_bus_put -EXPORT_SYMBOL vmlinux 0x6ad85887 acpi_enable_gpe -EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device -EXPORT_SYMBOL vmlinux 0x6ae68480 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6af1af0c gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname -EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b4eda27 proc_set_size -EXPORT_SYMBOL vmlinux 0x6b5de910 fb_find_mode -EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy -EXPORT_SYMBOL vmlinux 0x6b66a897 dev_mc_unsync -EXPORT_SYMBOL vmlinux 0x6b74b9be bit_waitqueue -EXPORT_SYMBOL vmlinux 0x6badd9f3 tty_unregister_device -EXPORT_SYMBOL vmlinux 0x6bbfbfe1 scsi_rescan_device -EXPORT_SYMBOL vmlinux 0x6bc1566b tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0x6bc3a466 max8925_bulk_read -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bcb3534 sock_recvmsg -EXPORT_SYMBOL vmlinux 0x6bcf066d _raw_read_lock_irq -EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x6bf1c17f pv_lock_ops -EXPORT_SYMBOL vmlinux 0x6bfdc909 udp_poll -EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer -EXPORT_SYMBOL vmlinux 0x6c0cddaa irq_to_desc -EXPORT_SYMBOL vmlinux 0x6c34bc1a dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x6c3f63c6 dma_supported -EXPORT_SYMBOL vmlinux 0x6c44bc15 neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x6c45d117 napi_gro_receive -EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat -EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c692d22 cont_write_begin -EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min -EXPORT_SYMBOL vmlinux 0x6c71646b devm_gpiod_get_index_optional -EXPORT_SYMBOL vmlinux 0x6c822c29 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x6c8751ad x86_hyper -EXPORT_SYMBOL vmlinux 0x6c8d93be blk_queue_make_request -EXPORT_SYMBOL vmlinux 0x6cb9a306 param_get_string -EXPORT_SYMBOL vmlinux 0x6cc42aee proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x6cd47ae1 blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0x6ce02938 sync_inode_metadata -EXPORT_SYMBOL vmlinux 0x6ce20c4f tcp_destroy_cgroup -EXPORT_SYMBOL vmlinux 0x6cf9b5f9 pnp_register_driver -EXPORT_SYMBOL vmlinux 0x6d031c68 starget_for_each_device -EXPORT_SYMBOL vmlinux 0x6d08a585 pci_pme_capable -EXPORT_SYMBOL vmlinux 0x6d08e98f vlan_vid_del -EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x6d1d5d9b iosf_mbi_write -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d334118 __get_user_8 -EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x6d34acbd pci_write_vpd -EXPORT_SYMBOL vmlinux 0x6d41fe47 dquot_quotactl_ops -EXPORT_SYMBOL vmlinux 0x6d5dfcfc unregister_netdev -EXPORT_SYMBOL vmlinux 0x6d7b79bd pci_disable_link_state -EXPORT_SYMBOL vmlinux 0x6d80ee46 vga_get -EXPORT_SYMBOL vmlinux 0x6d899bff devm_ioport_map -EXPORT_SYMBOL vmlinux 0x6d98b0d3 __breadahead -EXPORT_SYMBOL vmlinux 0x6d9bbed3 block_write_full_page -EXPORT_SYMBOL vmlinux 0x6db7ef43 mdiobus_read -EXPORT_SYMBOL vmlinux 0x6dc0c9dc down_interruptible -EXPORT_SYMBOL vmlinux 0x6dc6dd56 down -EXPORT_SYMBOL vmlinux 0x6dcd63c0 keyring_alloc -EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform -EXPORT_SYMBOL vmlinux 0x6df0a164 pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6e2a6c28 mntget -EXPORT_SYMBOL vmlinux 0x6e56edd1 ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x6e6fe9f1 vme_slot_num -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e7f0fd2 cmdline_parts_parse -EXPORT_SYMBOL vmlinux 0x6e80fd8c __nd_driver_register -EXPORT_SYMBOL vmlinux 0x6e9bacf9 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6eda1d59 qdisc_destroy -EXPORT_SYMBOL vmlinux 0x6ef5d529 nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0x6ef66e8a _raw_read_lock_bh -EXPORT_SYMBOL vmlinux 0x6f060422 mmc_add_host -EXPORT_SYMBOL vmlinux 0x6f0c85c2 blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0x6f13a5b0 rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0x6f15ad37 inet_stream_connect -EXPORT_SYMBOL vmlinux 0x6f1bf786 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x6f203fec sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash -EXPORT_SYMBOL vmlinux 0x6f2e4f46 __cond_resched_lock -EXPORT_SYMBOL vmlinux 0x6f319588 security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0x6f37e8fe i2c_release_client -EXPORT_SYMBOL vmlinux 0x6f4f43bc serio_unregister_driver -EXPORT_SYMBOL vmlinux 0x6f556bdb acpi_get_gpe_device -EXPORT_SYMBOL vmlinux 0x6f818058 md_check_recovery -EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x6f9393a3 i2c_clients_command -EXPORT_SYMBOL vmlinux 0x6f968fb3 mmc_register_driver -EXPORT_SYMBOL vmlinux 0x6fa12278 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0x6fbc63fa qdisc_list_del -EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag -EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6feb2039 acpi_write -EXPORT_SYMBOL vmlinux 0x700a5caa __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x700fc7e9 blk_free_tags -EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier -EXPORT_SYMBOL vmlinux 0x7025f411 pci_save_state -EXPORT_SYMBOL vmlinux 0x7029f11b iommu_tbl_pool_init -EXPORT_SYMBOL vmlinux 0x702cc048 blk_queue_end_tag -EXPORT_SYMBOL vmlinux 0x70310a0b netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0x703c962c generic_file_llseek -EXPORT_SYMBOL vmlinux 0x7044fb06 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0x704c11ec clk_get -EXPORT_SYMBOL vmlinux 0x704de126 __page_cache_alloc -EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq -EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma -EXPORT_SYMBOL vmlinux 0x70639827 __lock_page -EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync -EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x7082f1fe freeze_bdev -EXPORT_SYMBOL vmlinux 0x708a79f7 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x70948f3f sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x70bfc74b crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0x70c277c8 path_noexec -EXPORT_SYMBOL vmlinux 0x70d8ab82 acpi_acquire_global_lock -EXPORT_SYMBOL vmlinux 0x70df516a devm_release_resource -EXPORT_SYMBOL vmlinux 0x70eaa0d6 agp_free_memory -EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x71424977 dmam_free_coherent -EXPORT_SYMBOL vmlinux 0x7145d190 xen_biovec_phys_mergeable -EXPORT_SYMBOL vmlinux 0x714daff1 kfree_put_link -EXPORT_SYMBOL vmlinux 0x7151c429 skb_copy_expand -EXPORT_SYMBOL vmlinux 0x716202f8 parent_mem_cgroup -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x71828a66 proc_dostring -EXPORT_SYMBOL vmlinux 0x719c1076 backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev -EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71bb826f acpi_bus_get_device -EXPORT_SYMBOL vmlinux 0x71be4f2c blk_queue_stack_limits -EXPORT_SYMBOL vmlinux 0x71c4ec75 vme_register_driver -EXPORT_SYMBOL vmlinux 0x71e08455 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0x71f88539 inc_nlink -EXPORT_SYMBOL vmlinux 0x721dc39c __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0x72220176 cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x7225f219 unregister_md_personality -EXPORT_SYMBOL vmlinux 0x7230f2db flush_signals -EXPORT_SYMBOL vmlinux 0x725fd887 nla_append -EXPORT_SYMBOL vmlinux 0x7260e249 ___preempt_schedule_notrace -EXPORT_SYMBOL vmlinux 0x72a98fdb copy_user_generic_unrolled -EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma -EXPORT_SYMBOL vmlinux 0x72bc9767 iget_failed -EXPORT_SYMBOL vmlinux 0x72c896d4 pnp_disable_dev -EXPORT_SYMBOL vmlinux 0x72dcebf8 inet6_bind -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x72f91cdb trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config -EXPORT_SYMBOL vmlinux 0x7319a279 tcf_register_action -EXPORT_SYMBOL vmlinux 0x732bd1d0 __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0x732c1853 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0x732c5640 tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x733b8373 rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf -EXPORT_SYMBOL vmlinux 0x7343d2e2 simple_pin_fs -EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay -EXPORT_SYMBOL vmlinux 0x7361692f register_qdisc -EXPORT_SYMBOL vmlinux 0x73781635 tty_port_destroy -EXPORT_SYMBOL vmlinux 0x738714db ida_pre_get -EXPORT_SYMBOL vmlinux 0x73c56afe scsi_register_interface -EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable -EXPORT_SYMBOL vmlinux 0x73e0896c sock_no_listen -EXPORT_SYMBOL vmlinux 0x73e19008 inet_put_port -EXPORT_SYMBOL vmlinux 0x73fb8a17 blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi -EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x745b4290 jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0x745f20a3 idr_is_empty -EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74c60449 devm_memunmap -EXPORT_SYMBOL vmlinux 0x74c830e1 console_stop -EXPORT_SYMBOL vmlinux 0x74cd2432 cros_ec_query_all -EXPORT_SYMBOL vmlinux 0x74cee969 vmap -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74f8a3e4 nvm_dev_dma_free -EXPORT_SYMBOL vmlinux 0x750ca59c jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0x75199e00 file_update_time -EXPORT_SYMBOL vmlinux 0x7525a60d kobject_init -EXPORT_SYMBOL vmlinux 0x75303309 bio_endio -EXPORT_SYMBOL vmlinux 0x7532588a alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x75362ef7 ppp_register_compressor -EXPORT_SYMBOL vmlinux 0x7538b132 agp_off -EXPORT_SYMBOL vmlinux 0x754d539c strlen -EXPORT_SYMBOL vmlinux 0x75787fbf bioset_free -EXPORT_SYMBOL vmlinux 0x75971167 seq_hex_dump -EXPORT_SYMBOL vmlinux 0x75ae5539 pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0x75bc549a x86_cpu_to_apicid -EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc -EXPORT_SYMBOL vmlinux 0x75ce21de jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0x75fbdefd acpi_remove_address_space_handler -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x7610c427 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0x7612b608 kernel_read -EXPORT_SYMBOL vmlinux 0x7629d50e pci_select_bars -EXPORT_SYMBOL vmlinux 0x7645af6f sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x7649cd28 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x764bd77c request_resource -EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x767185ee get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x767833df sync_inodes_sb -EXPORT_SYMBOL vmlinux 0x767dd8fd acpi_get_irq_routing_table -EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc -EXPORT_SYMBOL vmlinux 0x769c3dbc set_nlink -EXPORT_SYMBOL vmlinux 0x76ace0c3 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint -EXPORT_SYMBOL vmlinux 0x76e4254f d_lookup -EXPORT_SYMBOL vmlinux 0x76f4e944 dmam_alloc_coherent -EXPORT_SYMBOL vmlinux 0x76fb08a7 amd_iommu_unregister_ppr_notifier -EXPORT_SYMBOL vmlinux 0x7705fb13 vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x77357276 dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir -EXPORT_SYMBOL vmlinux 0x77712f64 jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0x77718043 sock_no_setsockopt -EXPORT_SYMBOL vmlinux 0x77753c77 mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll -EXPORT_SYMBOL vmlinux 0x77a69c1e blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0x77b33855 cdrom_open -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77e0b0db single_open_size -EXPORT_SYMBOL vmlinux 0x77e1b175 replace_mount_options -EXPORT_SYMBOL vmlinux 0x77f53abc acpi_get_vendor_resource -EXPORT_SYMBOL vmlinux 0x77f771a6 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x78028800 scsi_init_io -EXPORT_SYMBOL vmlinux 0x780fdfd1 intel_enable_gtt -EXPORT_SYMBOL vmlinux 0x7810e74b register_gifconf -EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t -EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x784b498b kset_register -EXPORT_SYMBOL vmlinux 0x784f807e poll_initwait -EXPORT_SYMBOL vmlinux 0x785344f9 skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0x78675580 xfrm_init_state -EXPORT_SYMBOL vmlinux 0x786a714a inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x78764f4e pv_irq_ops -EXPORT_SYMBOL vmlinux 0x7880b953 tcp_proc_unregister -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x788b3a7a elv_add_request -EXPORT_SYMBOL vmlinux 0x7894f7d8 truncate_pagecache -EXPORT_SYMBOL vmlinux 0x7899dfa2 tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x78a5ff8a fence_add_callback -EXPORT_SYMBOL vmlinux 0x78ccc0c3 rtnl_create_link -EXPORT_SYMBOL vmlinux 0x78dc5c52 sget -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78e739aa up -EXPORT_SYMBOL vmlinux 0x78ef5193 blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x78fdb012 backlight_device_register -EXPORT_SYMBOL vmlinux 0x79068fda acpi_install_method -EXPORT_SYMBOL vmlinux 0x790bc48d napi_gro_frags -EXPORT_SYMBOL vmlinux 0x791ed1c9 rename_lock -EXPORT_SYMBOL vmlinux 0x7922c46f i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0x7969c4fa __vfs_read -EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0x7984eefc key_update -EXPORT_SYMBOL vmlinux 0x7985d043 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x7986aeb8 pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x7988295e security_path_rmdir -EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size -EXPORT_SYMBOL vmlinux 0x79a3e568 i2c_get_adapter -EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79b97aac bdi_register_owner -EXPORT_SYMBOL vmlinux 0x7a07a603 neigh_resolve_output -EXPORT_SYMBOL vmlinux 0x7a085631 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x7a19d7c4 fb_show_logo -EXPORT_SYMBOL vmlinux 0x7a1e9736 param_get_byte -EXPORT_SYMBOL vmlinux 0x7a2609f9 truncate_setsize -EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number -EXPORT_SYMBOL vmlinux 0x7a2c4afc generic_pipe_buf_confirm -EXPORT_SYMBOL vmlinux 0x7a2e095a __elv_add_request -EXPORT_SYMBOL vmlinux 0x7a3891bf tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0x7a409728 filemap_write_and_wait -EXPORT_SYMBOL vmlinux 0x7a4497db kzfree -EXPORT_SYMBOL vmlinux 0x7a55e0fd inet_release -EXPORT_SYMBOL vmlinux 0x7a65a240 security_path_rename -EXPORT_SYMBOL vmlinux 0x7a6cdedc do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7a7ccfae netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0x7a7dab42 neigh_update -EXPORT_SYMBOL vmlinux 0x7a82cb47 rdmsrl_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x7a8d0802 neigh_destroy -EXPORT_SYMBOL vmlinux 0x7a9274f3 dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7aa3f117 pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0x7aa42df5 abx500_register_ops -EXPORT_SYMBOL vmlinux 0x7aadc66b con_copy_unimap -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7aba7269 inode_add_rsv_space -EXPORT_SYMBOL vmlinux 0x7acdbb2f get_agp_version -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7aec9089 clear_user -EXPORT_SYMBOL vmlinux 0x7af589e1 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0x7b059032 iov_iter_zero -EXPORT_SYMBOL vmlinux 0x7b16235f hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array -EXPORT_SYMBOL vmlinux 0x7b2aef6c __krealloc -EXPORT_SYMBOL vmlinux 0x7b4917dd twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0x7b5007ad elv_register_queue -EXPORT_SYMBOL vmlinux 0x7b52a859 wrmsr_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x7b573d88 scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0x7bad7a1a acpi_walk_resources -EXPORT_SYMBOL vmlinux 0x7be4da1a ip6_expire_frag_queue -EXPORT_SYMBOL vmlinux 0x7be75ffc acpi_walk_resource_buffer -EXPORT_SYMBOL vmlinux 0x7c114bcf vga_put -EXPORT_SYMBOL vmlinux 0x7c1372e8 panic -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c2d098f krealloc -EXPORT_SYMBOL vmlinux 0x7c3bd0b1 generic_fillattr -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c4d74fc dst_init -EXPORT_SYMBOL vmlinux 0x7c58ba18 adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x7c5e27da mmc_power_restore_host -EXPORT_SYMBOL vmlinux 0x7c61340c __release_region -EXPORT_SYMBOL vmlinux 0x7c7a867b nobh_writepage -EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read -EXPORT_SYMBOL vmlinux 0x7ca7029f tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down -EXPORT_SYMBOL vmlinux 0x7cbd7be8 register_shrinker -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7ce49f08 f_setown -EXPORT_SYMBOL vmlinux 0x7ce83365 acpi_remove_table_handler -EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7cfb27d9 scsi_host_lookup -EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies -EXPORT_SYMBOL vmlinux 0x7d136605 mmc_gpio_request_ro -EXPORT_SYMBOL vmlinux 0x7d136771 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x7d287136 neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x7d375167 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0x7d43d680 fixed_phy_update_state -EXPORT_SYMBOL vmlinux 0x7d5f5b43 __kfree_skb -EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug -EXPORT_SYMBOL vmlinux 0x7d71445d cpu_active_mask -EXPORT_SYMBOL vmlinux 0x7d92a60f pci_release_regions -EXPORT_SYMBOL vmlinux 0x7d94f746 acpi_os_write_port -EXPORT_SYMBOL vmlinux 0x7d96cea3 wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0x7d99b186 input_reset_device -EXPORT_SYMBOL vmlinux 0x7dbc2e57 mmiotrace_printk -EXPORT_SYMBOL vmlinux 0x7dca3441 mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0x7dd554fc unregister_kmmio_probe -EXPORT_SYMBOL vmlinux 0x7ddbef68 add_disk -EXPORT_SYMBOL vmlinux 0x7de7364a pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7df3a5b3 tcp_poll -EXPORT_SYMBOL vmlinux 0x7e104e86 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0x7e4870c1 proc_remove -EXPORT_SYMBOL vmlinux 0x7e5c35b1 gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0x7e7fc3fb __wake_up_bit -EXPORT_SYMBOL vmlinux 0x7e8f6a99 pnp_release_card_device -EXPORT_SYMBOL vmlinux 0x7ebd4be4 trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x7eddbc34 led_update_brightness -EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x7ef19ba8 dst_release -EXPORT_SYMBOL vmlinux 0x7ef57d2f memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f222acf deactivate_super -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f263ed9 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x7f35ebba qdisc_reset -EXPORT_SYMBOL vmlinux 0x7f43a7f1 follow_up -EXPORT_SYMBOL vmlinux 0x7f52e5fd remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done -EXPORT_SYMBOL vmlinux 0x7f956458 skb_unlink -EXPORT_SYMBOL vmlinux 0x7fa443ef bdevname -EXPORT_SYMBOL vmlinux 0x7fb70d70 dcb_setapp -EXPORT_SYMBOL vmlinux 0x7fbd10d2 radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fe38f48 sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x7ffe25f2 nvm_put_blk_unlocked -EXPORT_SYMBOL vmlinux 0x7fff8c66 fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x80059d9a skb_set_owner_w -EXPORT_SYMBOL vmlinux 0x80225060 neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x802768f4 blk_start_queue_async -EXPORT_SYMBOL vmlinux 0x804b2557 dev_open -EXPORT_SYMBOL vmlinux 0x80639f82 sock_create_lite -EXPORT_SYMBOL vmlinux 0x8068c15c kblockd_schedule_delayed_work -EXPORT_SYMBOL vmlinux 0x806d2192 tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0x80791a8c radix_tree_gang_lookup_slot -EXPORT_SYMBOL vmlinux 0x807addbb nf_log_unregister -EXPORT_SYMBOL vmlinux 0x809388ca idr_destroy -EXPORT_SYMBOL vmlinux 0x80bc401a inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80e2178f __bread_gfp -EXPORT_SYMBOL vmlinux 0x80e8b885 shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x80eb423b acpi_get_object_info -EXPORT_SYMBOL vmlinux 0x80ed7df7 dquot_initialize -EXPORT_SYMBOL vmlinux 0x80f4a393 elv_dispatch_add_tail -EXPORT_SYMBOL vmlinux 0x80f7b01c netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x81144f9d idr_find_slowpath -EXPORT_SYMBOL vmlinux 0x8121ea76 netpoll_cleanup -EXPORT_SYMBOL vmlinux 0x812c1ce2 netdev_alert -EXPORT_SYMBOL vmlinux 0x81387caf proc_set_user -EXPORT_SYMBOL vmlinux 0x81472677 acpi_get_table -EXPORT_SYMBOL vmlinux 0x814a7825 generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy -EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page -EXPORT_SYMBOL vmlinux 0x8174dadf __pci_register_driver -EXPORT_SYMBOL vmlinux 0x818bf56d get_user_pages -EXPORT_SYMBOL vmlinux 0x818d7748 tty_throttle -EXPORT_SYMBOL vmlinux 0x8192d8fb xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x819e299e stop_tty -EXPORT_SYMBOL vmlinux 0x81c7175a find_get_entry -EXPORT_SYMBOL vmlinux 0x81c96172 bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x81f5667f netdev_crit -EXPORT_SYMBOL vmlinux 0x81f61fef nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill -EXPORT_SYMBOL vmlinux 0x8212721d xenbus_dev_request_and_reply -EXPORT_SYMBOL vmlinux 0x821534bf pnp_unregister_card_driver -EXPORT_SYMBOL vmlinux 0x821dd74d sock_setsockopt -EXPORT_SYMBOL vmlinux 0x823b196b generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x82458f7f radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x82487c1e mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0x824cb833 param_set_int -EXPORT_SYMBOL vmlinux 0x825383b6 tty_name -EXPORT_SYMBOL vmlinux 0x825bb9cc pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x826a3840 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes -EXPORT_SYMBOL vmlinux 0x829534b3 fence_free -EXPORT_SYMBOL vmlinux 0x82a7aa90 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched -EXPORT_SYMBOL vmlinux 0x82c09f7e pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0x82fead07 tcp_seq_open -EXPORT_SYMBOL vmlinux 0x830e547b ioremap_prot -EXPORT_SYMBOL vmlinux 0x83159a59 bio_init -EXPORT_SYMBOL vmlinux 0x8316a726 migrate_page -EXPORT_SYMBOL vmlinux 0x833c03aa acpi_enable_all_runtime_gpes -EXPORT_SYMBOL vmlinux 0x8351a118 __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0x8384647a acpi_map_pxm_to_online_node -EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init -EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83c60aeb empty_aops -EXPORT_SYMBOL vmlinux 0x83cf4b9b loop_register_transfer -EXPORT_SYMBOL vmlinux 0x83e150ea agp_allocate_memory -EXPORT_SYMBOL vmlinux 0x84015446 jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x84060081 xen_poll_irq_timeout -EXPORT_SYMBOL vmlinux 0x8414d0b6 blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0x8417f512 acpi_update_all_gpes -EXPORT_SYMBOL vmlinux 0x84242bfc simple_getattr -EXPORT_SYMBOL vmlinux 0x84419c3d framebuffer_alloc -EXPORT_SYMBOL vmlinux 0x844e3767 radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x8456462d tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0x84635976 bio_add_page -EXPORT_SYMBOL vmlinux 0x8480c2ba sg_miter_start -EXPORT_SYMBOL vmlinux 0x84885caa set_disk_ro -EXPORT_SYMBOL vmlinux 0x84930812 key_validate -EXPORT_SYMBOL vmlinux 0x849f90e9 dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x84a25ae2 jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0x84ba9834 xfrm6_prepare_output -EXPORT_SYMBOL vmlinux 0x84dbb91d register_md_personality -EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload -EXPORT_SYMBOL vmlinux 0x8507622c vfs_iter_write -EXPORT_SYMBOL vmlinux 0x8507c383 proc_dointvec -EXPORT_SYMBOL vmlinux 0x8509b047 done_path_create -EXPORT_SYMBOL vmlinux 0x8526c35a remove_wait_queue -EXPORT_SYMBOL vmlinux 0x8563cd89 put_io_context -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x8573cc5d d_alloc_pseudo -EXPORT_SYMBOL vmlinux 0x857582f7 acpi_enable_all_wakeup_gpes -EXPORT_SYMBOL vmlinux 0x858b3fe3 free_iova_mem -EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85c4aa6e blk_queue_unprep_rq -EXPORT_SYMBOL vmlinux 0x85de5929 cad_pid -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85f284f9 put_cmsg -EXPORT_SYMBOL vmlinux 0x861e22a4 acpi_map_cpu -EXPORT_SYMBOL vmlinux 0x8629c545 rwsem_downgrade_wake -EXPORT_SYMBOL vmlinux 0x8639d5ac mem_cgroup_begin_page_stat -EXPORT_SYMBOL vmlinux 0x8649ed27 vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x865d263c tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x869a43ee posix_acl_valid -EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x86a69516 rt6_lookup -EXPORT_SYMBOL vmlinux 0x86a6b430 gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0x86f724b6 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x8703b9d6 blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0x8715cec0 __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags -EXPORT_SYMBOL vmlinux 0x87322c70 dev_disable_lro -EXPORT_SYMBOL vmlinux 0x874b1826 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x876dafc3 ec_write -EXPORT_SYMBOL vmlinux 0x87848732 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale -EXPORT_SYMBOL vmlinux 0x878cd015 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0x879365fc devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x879ec089 agp_generic_mask_memory -EXPORT_SYMBOL vmlinux 0x87aaddf8 wrmsr_safe_regs_on_cpu -EXPORT_SYMBOL vmlinux 0x87c59dd0 pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0x87d6a6d5 phy_attach -EXPORT_SYMBOL vmlinux 0x87e0ff28 netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x87f0aa41 blk_queue_prep_rq -EXPORT_SYMBOL vmlinux 0x880e63ed uart_remove_one_port -EXPORT_SYMBOL vmlinux 0x8816f6ab redraw_screen -EXPORT_SYMBOL vmlinux 0x881f9df0 pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0x88203458 ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0x88313b5c xfrm_state_add -EXPORT_SYMBOL vmlinux 0x8837d544 copy_page_from_iter -EXPORT_SYMBOL vmlinux 0x8849996d input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x884a7da0 xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0x8850e0e8 phy_init_eee -EXPORT_SYMBOL vmlinux 0x8854c5aa xfrm_state_insert -EXPORT_SYMBOL vmlinux 0x88552e03 generic_ro_fops -EXPORT_SYMBOL vmlinux 0x887fa47e __getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x889ce9fa ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0x889d7097 key_payload_reserve -EXPORT_SYMBOL vmlinux 0x88a817f0 bio_uncopy_user -EXPORT_SYMBOL vmlinux 0x88ac00c4 __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0x88ce25fd bio_unmap_user -EXPORT_SYMBOL vmlinux 0x88ea57ff bdput -EXPORT_SYMBOL vmlinux 0x88ebdcc2 seq_file_path -EXPORT_SYMBOL vmlinux 0x8902968f pci_clear_mwi -EXPORT_SYMBOL vmlinux 0x8914fe69 netlink_broadcast -EXPORT_SYMBOL vmlinux 0x891bef26 vm_stat -EXPORT_SYMBOL vmlinux 0x892b26a0 set_memory_nx -EXPORT_SYMBOL vmlinux 0x892ea291 phy_get_eee_err -EXPORT_SYMBOL vmlinux 0x89328832 blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0x893df013 xattr_full_name -EXPORT_SYMBOL vmlinux 0x895099b9 scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0x895fb80d dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0x896f6e58 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0x89882ccb dma_async_device_register -EXPORT_SYMBOL vmlinux 0x899d9389 scsi_register_driver -EXPORT_SYMBOL vmlinux 0x89a5ca68 cdrom_media_changed -EXPORT_SYMBOL vmlinux 0x89aad437 pnp_start_dev -EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0x89b5947d mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0x89c6e4f4 d_alloc_name -EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x89d7a241 udp6_csum_init -EXPORT_SYMBOL vmlinux 0x8a0b12c6 complete_all -EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies -EXPORT_SYMBOL vmlinux 0x8a2392f0 neigh_connected_output -EXPORT_SYMBOL vmlinux 0x8a3f5aa1 acpi_processor_preregister_performance -EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning -EXPORT_SYMBOL vmlinux 0x8a640c3f unlink_framebuffer -EXPORT_SYMBOL vmlinux 0x8a6944f9 percpu_counter_set -EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a80d7a5 acpi_error -EXPORT_SYMBOL vmlinux 0x8a96a0d4 n_tty_compat_ioctl_helper -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8ab393a9 scsi_cmd_blk_ioctl -EXPORT_SYMBOL vmlinux 0x8ab62afd file_path -EXPORT_SYMBOL vmlinux 0x8ab789a6 bdget_disk -EXPORT_SYMBOL vmlinux 0x8ab8f90d input_free_device -EXPORT_SYMBOL vmlinux 0x8ad62cf6 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0x8ad6a2ba __invalidate_device -EXPORT_SYMBOL vmlinux 0x8ada7dd2 i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0x8afaebe7 nla_put -EXPORT_SYMBOL vmlinux 0x8afc162d mmc_power_save_host -EXPORT_SYMBOL vmlinux 0x8b00384e tcp_ioctl -EXPORT_SYMBOL vmlinux 0x8b358781 __find_get_block -EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last -EXPORT_SYMBOL vmlinux 0x8b3e9742 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x8b45f8dd tty_mutex -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b675b87 fb_prepare_logo -EXPORT_SYMBOL vmlinux 0x8b67cb6d sb_set_blocksize -EXPORT_SYMBOL vmlinux 0x8b7d85df page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup -EXPORT_SYMBOL vmlinux 0x8b9c78ac inode_init_once -EXPORT_SYMBOL vmlinux 0x8bac46a1 acpi_device_set_power -EXPORT_SYMBOL vmlinux 0x8bad33c7 down_read_trylock -EXPORT_SYMBOL vmlinux 0x8bbcaf9e inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0x8bc39bff writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x8bfaa703 module_refcount -EXPORT_SYMBOL vmlinux 0x8c14611e d_set_d_op -EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 -EXPORT_SYMBOL vmlinux 0x8c212c9a mb_cache_shrink -EXPORT_SYMBOL vmlinux 0x8c53ab7e security_path_mknod -EXPORT_SYMBOL vmlinux 0x8c5ff455 dma_pool_create -EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x8c796dd8 rwsem_wake -EXPORT_SYMBOL vmlinux 0x8caa8336 ata_port_printk -EXPORT_SYMBOL vmlinux 0x8cbfbf4d ps2_command -EXPORT_SYMBOL vmlinux 0x8cc4451f iterate_dir -EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep -EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending -EXPORT_SYMBOL vmlinux 0x8cf1b23f seq_escape -EXPORT_SYMBOL vmlinux 0x8cf5c4e5 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0x8d055d4f __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0x8d148e6b eth_gro_receive -EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d5a1c83 dev_change_flags -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d824aa1 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0x8d838d91 ida_remove -EXPORT_SYMBOL vmlinux 0x8d8d96c6 acpi_get_sleep_type_data -EXPORT_SYMBOL vmlinux 0x8d8e4e30 mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0x8da1a3cb acpi_remove_interface -EXPORT_SYMBOL vmlinux 0x8daf8c42 dql_init -EXPORT_SYMBOL vmlinux 0x8dbb8418 iov_iter_alignment -EXPORT_SYMBOL vmlinux 0x8dcc4e43 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x8dde87c7 unlock_page -EXPORT_SYMBOL vmlinux 0x8deb5a9a nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x8df87b91 is_nd_pfn -EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv -EXPORT_SYMBOL vmlinux 0x8e0013c1 napi_disable -EXPORT_SYMBOL vmlinux 0x8e002cda acpi_remove_gpe_block -EXPORT_SYMBOL vmlinux 0x8e0fe386 nvm_register_mgr -EXPORT_SYMBOL vmlinux 0x8e15cd1c netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0x8e2d83b6 node_to_cpumask_map -EXPORT_SYMBOL vmlinux 0x8e3f6294 phy_device_register -EXPORT_SYMBOL vmlinux 0x8e4eddd8 vfs_llseek -EXPORT_SYMBOL vmlinux 0x8e54e4f0 dqget -EXPORT_SYMBOL vmlinux 0x8e552824 phy_stop -EXPORT_SYMBOL vmlinux 0x8e72fa5c page_waitqueue -EXPORT_SYMBOL vmlinux 0x8e73087f would_dump -EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x8e78337a bh_submit_read -EXPORT_SYMBOL vmlinux 0x8e943449 dma_common_mmap -EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler -EXPORT_SYMBOL vmlinux 0x8eb7ec6d tty_port_put -EXPORT_SYMBOL vmlinux 0x8ecb592d lro_flush_all -EXPORT_SYMBOL vmlinux 0x8f01d4b2 skb_copy_bits -EXPORT_SYMBOL vmlinux 0x8f0586c7 iterate_fd -EXPORT_SYMBOL vmlinux 0x8f0fac9e kill_anon_super -EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus -EXPORT_SYMBOL vmlinux 0x8f3f5154 generic_start_io_acct -EXPORT_SYMBOL vmlinux 0x8f56df48 uart_unregister_driver -EXPORT_SYMBOL vmlinux 0x8f675ec3 acpi_pm_device_sleep_state -EXPORT_SYMBOL vmlinux 0x8f8b5f71 pipe_lock -EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 -EXPORT_SYMBOL vmlinux 0x8fa043b7 __brelse -EXPORT_SYMBOL vmlinux 0x8fa19dde d_find_alias -EXPORT_SYMBOL vmlinux 0x8fafa836 phy_driver_unregister -EXPORT_SYMBOL vmlinux 0x8fc008fd scsi_device_get -EXPORT_SYMBOL vmlinux 0x8fc5e6a4 amd_iommu_flush_tlb -EXPORT_SYMBOL vmlinux 0x8fce9fb1 path_is_under -EXPORT_SYMBOL vmlinux 0x8fd1152e _raw_write_unlock -EXPORT_SYMBOL vmlinux 0x8fdb366f skb_queue_purge -EXPORT_SYMBOL vmlinux 0x8fe59cef convert_art_to_tsc -EXPORT_SYMBOL vmlinux 0x9022a4e3 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0x9023a30a __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x902554b1 nf_setsockopt -EXPORT_SYMBOL vmlinux 0x9038d625 jbd2_journal_file_inode -EXPORT_SYMBOL vmlinux 0x903b4bda dev_warn -EXPORT_SYMBOL vmlinux 0x90405cfb xfrm6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x904409c6 acpi_set_firmware_waking_vector -EXPORT_SYMBOL vmlinux 0x904aa656 fsnotify_init_mark -EXPORT_SYMBOL vmlinux 0x90698179 inode_change_ok -EXPORT_SYMBOL vmlinux 0x907b5743 __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0x908575fe queued_write_lock_slowpath -EXPORT_SYMBOL vmlinux 0x90ab0816 irq_set_chip -EXPORT_SYMBOL vmlinux 0x90bf8c2d __scm_send -EXPORT_SYMBOL vmlinux 0x91435b28 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 -EXPORT_SYMBOL vmlinux 0x916040ff acpi_notifier_call_chain -EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb -EXPORT_SYMBOL vmlinux 0x9166fada strncpy -EXPORT_SYMBOL vmlinux 0x91715312 sprintf -EXPORT_SYMBOL vmlinux 0x9178c4af md_reload_sb -EXPORT_SYMBOL vmlinux 0x91967e8e xen_selfballoon_init -EXPORT_SYMBOL vmlinux 0x91a962db param_get_invbool -EXPORT_SYMBOL vmlinux 0x91ac822f vscnprintf -EXPORT_SYMBOL vmlinux 0x91ae1126 vme_bus_type -EXPORT_SYMBOL vmlinux 0x91b6d676 rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x91b99624 padata_remove_cpu -EXPORT_SYMBOL vmlinux 0x91c104a4 set_pages_wb -EXPORT_SYMBOL vmlinux 0x91d1e759 param_get_uint -EXPORT_SYMBOL vmlinux 0x91f53bb3 lock_sock_fast -EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 -EXPORT_SYMBOL vmlinux 0x91fe5850 blkdev_fsync -EXPORT_SYMBOL vmlinux 0x92066f7e dquot_quota_sync -EXPORT_SYMBOL vmlinux 0x921b7d5d swiotlb_sync_single_for_device -EXPORT_SYMBOL vmlinux 0x921f201d phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0x922c4964 ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0x9230a3b4 neigh_table_clear -EXPORT_SYMBOL vmlinux 0x9235a5b3 blk_queue_find_tag -EXPORT_SYMBOL vmlinux 0x92380e89 neigh_changeaddr -EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x9241e99c xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x9273132d vfs_mkdir -EXPORT_SYMBOL vmlinux 0x927f21e9 pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0x92829f62 xfrm4_prepare_output -EXPORT_SYMBOL vmlinux 0x928a94dd unmap_underlying_metadata -EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user -EXPORT_SYMBOL vmlinux 0x9293be1c copy_page_to_iter -EXPORT_SYMBOL vmlinux 0x9295d3f5 blk_rq_set_block_pc -EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm -EXPORT_SYMBOL vmlinux 0x92bc3e65 netlink_kernel_release -EXPORT_SYMBOL vmlinux 0x92c1f62b km_policy_notify -EXPORT_SYMBOL vmlinux 0x92c9ef7e mfd_add_devices -EXPORT_SYMBOL vmlinux 0x92ceedd6 bdi_destroy -EXPORT_SYMBOL vmlinux 0x92d36f85 blk_init_queue -EXPORT_SYMBOL vmlinux 0x92d8deb8 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0x92f11c54 ilookup5 -EXPORT_SYMBOL vmlinux 0x92f6767f lg_local_lock -EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x932493a8 iosf_mbi_read -EXPORT_SYMBOL vmlinux 0x933dffdb lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x934eb6cc agp_bridge -EXPORT_SYMBOL vmlinux 0x93564b63 devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0x936bd8b1 vm_insert_page -EXPORT_SYMBOL vmlinux 0x936d8f1c set_pages_nx -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x9378eca6 vga_switcheroo_init_domain_pm_ops -EXPORT_SYMBOL vmlinux 0x9379dc10 skb_pad -EXPORT_SYMBOL vmlinux 0x93abb543 dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93c4b4ff gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x93d95b6a scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x93f3e52b acpi_extract_package -EXPORT_SYMBOL vmlinux 0x93f5e660 sock_no_ioctl -EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages -EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int -EXPORT_SYMBOL vmlinux 0x943e466a __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x94478aba security_path_chmod -EXPORT_SYMBOL vmlinux 0x94596d67 call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0x945e4c33 input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x94849e05 dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0x949593ca dev_uc_unsync -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x94afeb37 lookup_one_len -EXPORT_SYMBOL vmlinux 0x94c00e0e linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x94f60515 set_create_files_as -EXPORT_SYMBOL vmlinux 0x950cb450 zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x951dbc87 to_ndd -EXPORT_SYMBOL vmlinux 0x95395301 acpi_exception -EXPORT_SYMBOL vmlinux 0x953f6d1b cros_ec_prepare_tx -EXPORT_SYMBOL vmlinux 0x9540b56f __napi_complete -EXPORT_SYMBOL vmlinux 0x95445083 padata_start -EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init -EXPORT_SYMBOL vmlinux 0x955a832f ___preempt_schedule -EXPORT_SYMBOL vmlinux 0x9578e9d9 forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x9580605e register_quota_format -EXPORT_SYMBOL vmlinux 0x9591c449 d_obtain_alias -EXPORT_SYMBOL vmlinux 0x95bd6e26 acpi_install_sci_handler -EXPORT_SYMBOL vmlinux 0x95bf9d01 iov_iter_init -EXPORT_SYMBOL vmlinux 0x95c5fd00 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x95c79400 blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x95d53197 keyring_search -EXPORT_SYMBOL vmlinux 0x95d67ea4 seq_release_private -EXPORT_SYMBOL vmlinux 0x960c9f2c ip_check_defrag -EXPORT_SYMBOL vmlinux 0x962756cb scsi_add_device -EXPORT_SYMBOL vmlinux 0x965857c7 neigh_ifdown -EXPORT_SYMBOL vmlinux 0x965b4733 vga_client_register -EXPORT_SYMBOL vmlinux 0x965d35bd scsi_ioctl_reset -EXPORT_SYMBOL vmlinux 0x966962bd pci_request_region -EXPORT_SYMBOL vmlinux 0x96aba385 proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp -EXPORT_SYMBOL vmlinux 0x96b6e0c7 dquot_transfer -EXPORT_SYMBOL vmlinux 0x96cbdbf3 blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96db8bee mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0x96df2542 bio_phys_segments -EXPORT_SYMBOL vmlinux 0x9705ed0a xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x972ead6b pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier -EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x97616331 blk_integrity_compare -EXPORT_SYMBOL vmlinux 0x97716e5d security_d_instantiate -EXPORT_SYMBOL vmlinux 0x9782332b udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x97868aef __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state -EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update -EXPORT_SYMBOL vmlinux 0x97a8c88f arp_xmit -EXPORT_SYMBOL vmlinux 0x97b09090 km_query -EXPORT_SYMBOL vmlinux 0x97bcd62e netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x97c5bd0a acpi_unload_parent_table -EXPORT_SYMBOL vmlinux 0x97d1b9cc devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x97de0ddd acpi_install_gpe_block -EXPORT_SYMBOL vmlinux 0x97f3644d mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0x981b4e78 input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint -EXPORT_SYMBOL vmlinux 0x98240084 reservation_object_add_shared_fence -EXPORT_SYMBOL vmlinux 0x98286346 get_cached_acl -EXPORT_SYMBOL vmlinux 0x9829556e generic_perform_write -EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0x98529c0a scsi_host_put -EXPORT_SYMBOL vmlinux 0x98678ad3 netdev_printk -EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x9878745c _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0x987d889e unregister_binfmt -EXPORT_SYMBOL vmlinux 0x9883b18b posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x988ed85d set_memory_x -EXPORT_SYMBOL vmlinux 0x98aa1dcb phy_print_status -EXPORT_SYMBOL vmlinux 0x98b37f4e invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0x98b542ce tty_port_tty_get -EXPORT_SYMBOL vmlinux 0x98b76e4e qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0x98c68c41 __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x98cba807 scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0x98d96b5a freeze_super -EXPORT_SYMBOL vmlinux 0x98e6b094 swiotlb_dma_mapping_error -EXPORT_SYMBOL vmlinux 0x990ce383 register_netdevice -EXPORT_SYMBOL vmlinux 0x99195078 vsnprintf -EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x993a599d dev_err -EXPORT_SYMBOL vmlinux 0x9948d6c4 dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x9957d3c1 uart_add_one_port -EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x995c0f41 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0x996a4821 mount_ns -EXPORT_SYMBOL vmlinux 0x996f3502 pv_mmu_ops -EXPORT_SYMBOL vmlinux 0x998a40d2 vga_switcheroo_init_domain_pm_optimus_hdmi_audio -EXPORT_SYMBOL vmlinux 0x998ec9b6 agp_generic_alloc_user -EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering -EXPORT_SYMBOL vmlinux 0x99d0ac66 dump_emit -EXPORT_SYMBOL vmlinux 0x99d0cc23 pci_assign_resource -EXPORT_SYMBOL vmlinux 0x99d3a43c dm_table_get_size -EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99f068d5 x86_cpu_to_node_map -EXPORT_SYMBOL vmlinux 0x9a1019b5 kobject_add -EXPORT_SYMBOL vmlinux 0x9a19215a inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0x9a19b682 user_path_create -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval -EXPORT_SYMBOL vmlinux 0x9a22003a key_link -EXPORT_SYMBOL vmlinux 0x9a23dc39 agp_collect_device_status -EXPORT_SYMBOL vmlinux 0x9a2af2ef inet_del_protocol -EXPORT_SYMBOL vmlinux 0x9a2b9383 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x9a3d4d7a dm_ratelimit_state -EXPORT_SYMBOL vmlinux 0x9a664d77 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x9a825639 dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0x9a92ef76 locks_copy_lock -EXPORT_SYMBOL vmlinux 0x9aa77e08 abx500_get_register_page_interruptible -EXPORT_SYMBOL vmlinux 0x9ac8dd5f netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x9acb892b dev_addr_flush -EXPORT_SYMBOL vmlinux 0x9ae5b050 get_fs_type -EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach -EXPORT_SYMBOL vmlinux 0x9af08362 nf_log_register -EXPORT_SYMBOL vmlinux 0x9afa039e lockref_mark_dead -EXPORT_SYMBOL vmlinux 0x9afce25e param_array_ops -EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page -EXPORT_SYMBOL vmlinux 0x9b3fd44c touch_buffer -EXPORT_SYMBOL vmlinux 0x9b520302 mmc_start_bkops -EXPORT_SYMBOL vmlinux 0x9b54fda3 devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x9b55baaf blk_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x9b672887 file_ns_capable -EXPORT_SYMBOL vmlinux 0x9b73184b wait_on_page_bit -EXPORT_SYMBOL vmlinux 0x9b8a07e7 cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0x9b935ade __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x9ba146bf wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x9ba4200f ata_link_printk -EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split -EXPORT_SYMBOL vmlinux 0x9bb38940 tcp_filter -EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put -EXPORT_SYMBOL vmlinux 0x9bc51139 blk_finish_request -EXPORT_SYMBOL vmlinux 0x9bd0b84d gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x9bd6896a inet_addr_type -EXPORT_SYMBOL vmlinux 0x9be1d0a6 cdev_add -EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x9c0048b9 nobh_write_end -EXPORT_SYMBOL vmlinux 0x9c1e6214 ip_route_me_harder -EXPORT_SYMBOL vmlinux 0x9c35af58 mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x9c61b331 kill_pgrp -EXPORT_SYMBOL vmlinux 0x9c6890ac blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0x9c7508a4 simple_transaction_set -EXPORT_SYMBOL vmlinux 0x9c76a7ce sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x9c7a0e33 request_key -EXPORT_SYMBOL vmlinux 0x9c7b9cd4 dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0x9c8a2382 napi_complete_done -EXPORT_SYMBOL vmlinux 0x9c9075e5 kobject_get -EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cbbdf71 twl6040_reg_read -EXPORT_SYMBOL vmlinux 0x9cc1c007 pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0x9cc75b3c pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0x9ccb6d62 blk_queue_split -EXPORT_SYMBOL vmlinux 0x9ccb6f6f jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0x9cdec92a __frontswap_load -EXPORT_SYMBOL vmlinux 0x9ce849ef address_space_init_once -EXPORT_SYMBOL vmlinux 0x9cea2145 vga_switcheroo_unregister_client -EXPORT_SYMBOL vmlinux 0x9d0ae55e phy_stop_interrupts -EXPORT_SYMBOL vmlinux 0x9d0b7159 set_pages_array_wb -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d0d6c61 d_instantiate -EXPORT_SYMBOL vmlinux 0x9d17006e phy_connect -EXPORT_SYMBOL vmlinux 0x9d261a7c __pci_enable_wake -EXPORT_SYMBOL vmlinux 0x9d313560 dcb_getapp -EXPORT_SYMBOL vmlinux 0x9d33ef5e acpi_enable -EXPORT_SYMBOL vmlinux 0x9d3635fd proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init -EXPORT_SYMBOL vmlinux 0x9d4bc2a2 nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0x9d7513c6 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x9d81df37 xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x9d852cd4 x86_dma_fallback_dev -EXPORT_SYMBOL vmlinux 0x9d8a8dcb input_close_device -EXPORT_SYMBOL vmlinux 0x9d98a98e __alloc_skb -EXPORT_SYMBOL vmlinux 0x9da05e10 mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0x9da293e9 scsi_print_result -EXPORT_SYMBOL vmlinux 0x9db86899 check_disk_change -EXPORT_SYMBOL vmlinux 0x9dbda067 km_state_expired -EXPORT_SYMBOL vmlinux 0x9dc28408 devm_gpio_request_one -EXPORT_SYMBOL vmlinux 0x9dc6f571 fb_is_primary_device -EXPORT_SYMBOL vmlinux 0x9dd1624d i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0x9dd2fbf8 mutex_trylock -EXPORT_SYMBOL vmlinux 0x9de1c4ee compat_sock_get_timestamp -EXPORT_SYMBOL vmlinux 0x9df8979d poll_freewait -EXPORT_SYMBOL vmlinux 0x9e098e2b cpu_sibling_map -EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e2f8c90 lz4_decompress_unknownoutputsize -EXPORT_SYMBOL vmlinux 0x9e30d897 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0x9e363b6b acpi_disable_gpe -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read -EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value -EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay -EXPORT_SYMBOL vmlinux 0x9e885ce3 nd_btt_probe -EXPORT_SYMBOL vmlinux 0x9e96d0fa netdev_notice -EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9eaf4194 dev_base_lock -EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource -EXPORT_SYMBOL vmlinux 0x9ec5815d csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0x9ee1bb07 bio_add_pc_page -EXPORT_SYMBOL vmlinux 0x9ee5a2f2 nf_log_unset -EXPORT_SYMBOL vmlinux 0x9efbb78f rfkill_alloc -EXPORT_SYMBOL vmlinux 0x9f0b5b9c __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x9f1f8fb7 acpi_processor_notify_smm -EXPORT_SYMBOL vmlinux 0x9f382be0 netlink_set_err -EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f5b8fc7 iov_iter_copy_from_user_atomic -EXPORT_SYMBOL vmlinux 0x9f5c30dc blk_put_request -EXPORT_SYMBOL vmlinux 0x9f7af1d1 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x9f7c1be8 skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0x9f7ed191 pnp_request_card_device -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9fabb277 __block_write_begin -EXPORT_SYMBOL vmlinux 0x9fd447bb tc_classify -EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc -EXPORT_SYMBOL vmlinux 0x9fde187c neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9fdfbb49 simple_dname -EXPORT_SYMBOL vmlinux 0x9ff1064b shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0x9ffaf26c dump_skip -EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed -EXPORT_SYMBOL vmlinux 0xa00f9b9f inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0xa0111164 jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0xa01984e1 truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0xa021bf8a generic_shutdown_super -EXPORT_SYMBOL vmlinux 0xa03ef909 kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xa04258d9 may_umount_tree -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xa0618f4d simple_readpage -EXPORT_SYMBOL vmlinux 0xa06ff399 unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr -EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init -EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa08c5c26 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0xa08cba2d vm_mmap -EXPORT_SYMBOL vmlinux 0xa0a36939 udp_disconnect -EXPORT_SYMBOL vmlinux 0xa0acbc9a key_type_keyring -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0c5a60d build_skb -EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0df7806 __genl_register_family -EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem -EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa0ff74d6 udp_memory_allocated -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa1192a03 lwtunnel_state_alloc -EXPORT_SYMBOL vmlinux 0xa12014a3 dmam_pool_create -EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xa13d79e6 devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0xa14798f0 eth_mac_addr -EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts -EXPORT_SYMBOL vmlinux 0xa15c0524 fb_validate_mode -EXPORT_SYMBOL vmlinux 0xa15ed567 user_revoke -EXPORT_SYMBOL vmlinux 0xa166cc1c kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xa1742ebe iget_locked -EXPORT_SYMBOL vmlinux 0xa1771fe5 dev_get_nest_level -EXPORT_SYMBOL vmlinux 0xa189b456 pci_iounmap -EXPORT_SYMBOL vmlinux 0xa1966ea9 end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0xa19b5640 tty_check_change -EXPORT_SYMBOL vmlinux 0xa1a8a72b pci_iomap -EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode -EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched -EXPORT_SYMBOL vmlinux 0xa1d9aba0 register_cdrom -EXPORT_SYMBOL vmlinux 0xa1dc3c45 skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create -EXPORT_SYMBOL vmlinux 0xa1df1efd read_cache_pages -EXPORT_SYMBOL vmlinux 0xa1f83838 generic_block_bmap -EXPORT_SYMBOL vmlinux 0xa202a8e5 kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold -EXPORT_SYMBOL vmlinux 0xa214cf1d __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0xa21f0294 nd_iostat_end -EXPORT_SYMBOL vmlinux 0xa24295b4 devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xa24c2a0b nf_register_hook -EXPORT_SYMBOL vmlinux 0xa25d702d hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0xa27c2b43 xfrm4_rcv_cb -EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0xa2890cce dquot_disable -EXPORT_SYMBOL vmlinux 0xa289bb7f should_remove_suid -EXPORT_SYMBOL vmlinux 0xa28b09d7 pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0xa291ac62 dquot_destroy -EXPORT_SYMBOL vmlinux 0xa29317be __mutex_init -EXPORT_SYMBOL vmlinux 0xa29a31c2 compat_mc_getsockopt -EXPORT_SYMBOL vmlinux 0xa2a335bd vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0xa2b28b6e eth_header_cache -EXPORT_SYMBOL vmlinux 0xa2bcbab0 netif_receive_skb -EXPORT_SYMBOL vmlinux 0xa2cb6c17 netdev_all_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0xa2deac77 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0xa31b81a4 udp_proc_unregister -EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set -EXPORT_SYMBOL vmlinux 0xa3386f49 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0xa3410386 md_cluster_mod -EXPORT_SYMBOL vmlinux 0xa34fcb2d mempool_create_node -EXPORT_SYMBOL vmlinux 0xa350a8f8 set_memory_array_uc -EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get -EXPORT_SYMBOL vmlinux 0xa3ad9bd7 dev_printk_emit -EXPORT_SYMBOL vmlinux 0xa3c29c1d free_cgroup_ns -EXPORT_SYMBOL vmlinux 0xa3c72e28 audit_log_start -EXPORT_SYMBOL vmlinux 0xa3c7757a __insert_inode_hash -EXPORT_SYMBOL vmlinux 0xa3cd0b8f inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0xa3d39c67 devm_gpiod_get_index -EXPORT_SYMBOL vmlinux 0xa3d82bd2 md_finish_reshape -EXPORT_SYMBOL vmlinux 0xa3f1967d tty_lock -EXPORT_SYMBOL vmlinux 0xa3f7008a md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0xa3f9ca45 key_task_permission -EXPORT_SYMBOL vmlinux 0xa4030ea4 tty_schedule_flip -EXPORT_SYMBOL vmlinux 0xa418ad4a dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0xa41fa84a input_set_keycode -EXPORT_SYMBOL vmlinux 0xa44fa1f2 blk_requeue_request -EXPORT_SYMBOL vmlinux 0xa4511467 crc16 -EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset -EXPORT_SYMBOL vmlinux 0xa48b7996 fb_class -EXPORT_SYMBOL vmlinux 0xa4a2e6cf scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0xa4a9ebfa __remove_inode_hash -EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep -EXPORT_SYMBOL vmlinux 0xa4cbc531 set_device_ro -EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush -EXPORT_SYMBOL vmlinux 0xa4d8e527 netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0xa4e67dc4 cdrom_mode_select -EXPORT_SYMBOL vmlinux 0xa4eca6a8 cpu_all_bits -EXPORT_SYMBOL vmlinux 0xa50a80c2 boot_cpu_data -EXPORT_SYMBOL vmlinux 0xa50c8833 unregister_shrinker -EXPORT_SYMBOL vmlinux 0xa512747b sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0xa5272dd7 abx500_get_register_interruptible -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa5677e11 nd_pfn_validate -EXPORT_SYMBOL vmlinux 0xa56b2299 __sb_start_write -EXPORT_SYMBOL vmlinux 0xa581e5f3 seq_dentry -EXPORT_SYMBOL vmlinux 0xa58a21a8 twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0xa592269b dev_remove_pack -EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes -EXPORT_SYMBOL vmlinux 0xa5a51eee __crc32c_le -EXPORT_SYMBOL vmlinux 0xa5abb424 lease_get_mtime -EXPORT_SYMBOL vmlinux 0xa5da88a0 pci_scan_slot -EXPORT_SYMBOL vmlinux 0xa6229cd9 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0xa63322c6 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember -EXPORT_SYMBOL vmlinux 0xa66f8297 blk_get_request -EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa6a2e61d posix_acl_fix_xattr_userns -EXPORT_SYMBOL vmlinux 0xa6bbd805 __wake_up -EXPORT_SYMBOL vmlinux 0xa6bd63ca acpi_bios_error -EXPORT_SYMBOL vmlinux 0xa6dc822d acpi_match_device_ids -EXPORT_SYMBOL vmlinux 0xa6e07110 i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function -EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi -EXPORT_SYMBOL vmlinux 0xa70fc40b skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0xa72a0f5b nr_online_nodes -EXPORT_SYMBOL vmlinux 0xa72c87ba ip6_frag_init -EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 -EXPORT_SYMBOL vmlinux 0xa73a9328 scsi_register -EXPORT_SYMBOL vmlinux 0xa74bcd62 rdmsr_on_cpus -EXPORT_SYMBOL vmlinux 0xa788f1a0 i8253_lock -EXPORT_SYMBOL vmlinux 0xa790a14f pcie_get_mps -EXPORT_SYMBOL vmlinux 0xa7acb27c input_set_capability -EXPORT_SYMBOL vmlinux 0xa7bbf2fb vm_iomap_memory -EXPORT_SYMBOL vmlinux 0xa7bd087b find_inode_nowait -EXPORT_SYMBOL vmlinux 0xa7c0abab vga_switcheroo_register_audio_client -EXPORT_SYMBOL vmlinux 0xa7cafd05 simple_transaction_read -EXPORT_SYMBOL vmlinux 0xa7d284a2 remap_pfn_range -EXPORT_SYMBOL vmlinux 0xa807089d kern_path -EXPORT_SYMBOL vmlinux 0xa813022f tcp_md5_hash_header -EXPORT_SYMBOL vmlinux 0xa83c95d9 tty_port_close -EXPORT_SYMBOL vmlinux 0xa840d21f scsi_cmd_get_serial -EXPORT_SYMBOL vmlinux 0xa841233c sk_common_release -EXPORT_SYMBOL vmlinux 0xa8418eaf do_splice_direct -EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa848e3e9 write_cache_pages -EXPORT_SYMBOL vmlinux 0xa850d3cf tcp_recvmsg -EXPORT_SYMBOL vmlinux 0xa857322f agp_generic_alloc_pages -EXPORT_SYMBOL vmlinux 0xa8589778 mb_cache_entry_insert -EXPORT_SYMBOL vmlinux 0xa86a04e5 pm860x_set_bits -EXPORT_SYMBOL vmlinux 0xa8721b97 system_state -EXPORT_SYMBOL vmlinux 0xa8aeea3d swiotlb_map_sg_attrs -EXPORT_SYMBOL vmlinux 0xa8e5e561 ihold -EXPORT_SYMBOL vmlinux 0xa8e8115c mount_subtree -EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send -EXPORT_SYMBOL vmlinux 0xa90bbcea i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0xa90ca647 textsearch_register -EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion -EXPORT_SYMBOL vmlinux 0xa916b694 strnlen -EXPORT_SYMBOL vmlinux 0xa920e10b sock_init_data -EXPORT_SYMBOL vmlinux 0xa9220a25 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0xa9245ce9 serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0xa933cb09 netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0xa94d6bee mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0xa9629de9 scsi_execute_req_flags -EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa979c190 fifo_set_limit -EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes -EXPORT_SYMBOL vmlinux 0xa9a8e17f arch_phys_wc_add -EXPORT_SYMBOL vmlinux 0xa9aa01bc genphy_aneg_done -EXPORT_SYMBOL vmlinux 0xa9b3233f ioctl_by_bdev -EXPORT_SYMBOL vmlinux 0xa9bd2676 __vmalloc -EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0xa9d97086 serio_reconnect -EXPORT_SYMBOL vmlinux 0xa9dae634 genphy_config_init -EXPORT_SYMBOL vmlinux 0xa9f6469c __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xaa01d855 cancel_dirty_page -EXPORT_SYMBOL vmlinux 0xaa2a4d00 agp_generic_free_gatt_table -EXPORT_SYMBOL vmlinux 0xaa308834 copy_strings_kernel -EXPORT_SYMBOL vmlinux 0xaa31e8af clocksource_unregister -EXPORT_SYMBOL vmlinux 0xaa5bd08d __pv_queued_spin_lock_slowpath -EXPORT_SYMBOL vmlinux 0xaa63bae8 serio_rescan -EXPORT_SYMBOL vmlinux 0xaa64f8c5 security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0xaa652558 tcf_hash_search -EXPORT_SYMBOL vmlinux 0xaa6bcecf scsi_target_resume -EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa84859a pci_disable_msix -EXPORT_SYMBOL vmlinux 0xaa99acc0 __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0xaad17c7d clk_add_alias -EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state -EXPORT_SYMBOL vmlinux 0xaae39509 ppp_input_error -EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable -EXPORT_SYMBOL vmlinux 0xaaf41a26 __pagevec_release -EXPORT_SYMBOL vmlinux 0xaafc876f swiotlb_map_sg -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0xab080686 vga_switcheroo_client_fb_set -EXPORT_SYMBOL vmlinux 0xab0c14a7 sock_alloc_file -EXPORT_SYMBOL vmlinux 0xab22c50b xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0xab25f0d6 xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0xab2e2fe9 __break_lease -EXPORT_SYMBOL vmlinux 0xab2e51a0 dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0xab551fad acpi_get_data_full -EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off -EXPORT_SYMBOL vmlinux 0xab627679 icmpv6_send -EXPORT_SYMBOL vmlinux 0xab65ed80 set_memory_uc -EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog -EXPORT_SYMBOL vmlinux 0xab770678 rdmsr_safe_regs_on_cpu -EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab79f800 vm_insert_mixed -EXPORT_SYMBOL vmlinux 0xab85e720 __netif_schedule -EXPORT_SYMBOL vmlinux 0xab86dc55 __secpath_destroy -EXPORT_SYMBOL vmlinux 0xab985562 mfd_remove_devices -EXPORT_SYMBOL vmlinux 0xaba3159c gen_pool_destroy -EXPORT_SYMBOL vmlinux 0xabc92f95 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev -EXPORT_SYMBOL vmlinux 0xabd9c4c3 __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0xabf8da3c remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0xabfd966d ping_prot -EXPORT_SYMBOL vmlinux 0xac0030a5 bitmap_close_sync -EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac323461 vm_insert_pfn -EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear -EXPORT_SYMBOL vmlinux 0xac5fc33a blk_rq_map_user -EXPORT_SYMBOL vmlinux 0xac740cf9 posix_unblock_lock -EXPORT_SYMBOL vmlinux 0xac7ee171 nf_ct_attach -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacb708eb netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0xacb99769 ida_destroy -EXPORT_SYMBOL vmlinux 0xacc76868 on_each_cpu_mask -EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton -EXPORT_SYMBOL vmlinux 0xaccc57d2 devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xacda494e send_sig_info -EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xad01744f kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad164875 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xad1ac8f8 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0xad38bd0d skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0xad39422c mmc_alloc_host -EXPORT_SYMBOL vmlinux 0xad4b7b17 nd_region_acquire_lane -EXPORT_SYMBOL vmlinux 0xad698f77 dqstats -EXPORT_SYMBOL vmlinux 0xad6e4bb6 mempool_free -EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event -EXPORT_SYMBOL vmlinux 0xad8b85a4 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0xad918e08 ether_setup -EXPORT_SYMBOL vmlinux 0xad976c1c nvdimm_revalidate_disk -EXPORT_SYMBOL vmlinux 0xadadd29d mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0xadc27c91 tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0xadd52a20 param_ops_bool -EXPORT_SYMBOL vmlinux 0xaddb6931 kernel_getsockname -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae044bc7 panic_notifier_list -EXPORT_SYMBOL vmlinux 0xae069584 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0xae06ea01 pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0xae144f54 jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0xae200f2a tcp_setsockopt -EXPORT_SYMBOL vmlinux 0xae25abef lro_receive_skb -EXPORT_SYMBOL vmlinux 0xae293ac9 scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0xae295779 clkdev_alloc -EXPORT_SYMBOL vmlinux 0xae300cdf agp_unbind_memory -EXPORT_SYMBOL vmlinux 0xae589173 blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0xae84bd6b alloc_pages_current -EXPORT_SYMBOL vmlinux 0xae930e3d alloc_disk_node -EXPORT_SYMBOL vmlinux 0xae9375cc vfs_setpos -EXPORT_SYMBOL vmlinux 0xae99d64f blk_queue_dma_pad -EXPORT_SYMBOL vmlinux 0xaea976a8 acpi_check_resource_conflict -EXPORT_SYMBOL vmlinux 0xaefb3773 fb_set_cmap -EXPORT_SYMBOL vmlinux 0xaeff1334 cros_ec_check_result -EXPORT_SYMBOL vmlinux 0xaf103c74 nf_log_set -EXPORT_SYMBOL vmlinux 0xaf32dd6a scsi_is_host_device -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf3e60d2 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0xaf611eac amd_nb_misc_ids -EXPORT_SYMBOL vmlinux 0xaf633a8f simple_release_fs -EXPORT_SYMBOL vmlinux 0xaf6ae696 kstrndup -EXPORT_SYMBOL vmlinux 0xaf6ed155 add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0xaf8c161f genl_unregister_family -EXPORT_SYMBOL vmlinux 0xaf9c4e22 ns_capable -EXPORT_SYMBOL vmlinux 0xafb79938 dput -EXPORT_SYMBOL vmlinux 0xafb805dd blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0xafb87e14 follow_down_one -EXPORT_SYMBOL vmlinux 0xafb8c6ff copy_user_generic_string -EXPORT_SYMBOL vmlinux 0xafd5ff2c amd_iommu_v2_supported -EXPORT_SYMBOL vmlinux 0xafe3b20c cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0xaff77c8b vme_register_error_handler -EXPORT_SYMBOL vmlinux 0xb00ffa6e key_put -EXPORT_SYMBOL vmlinux 0xb01703a6 elv_rb_find -EXPORT_SYMBOL vmlinux 0xb01b1db8 intel_gtt_insert_sg_entries -EXPORT_SYMBOL vmlinux 0xb02bd591 _raw_read_unlock_irq -EXPORT_SYMBOL vmlinux 0xb0571e1d max8925_reg_read -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb072c70d tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0xb08b6f15 __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0xb09efcc1 tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0xb0baac54 d_drop -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0e27db7 pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0xb0e602eb memmove -EXPORT_SYMBOL vmlinux 0xb0eb41ff iommu_tbl_range_free -EXPORT_SYMBOL vmlinux 0xb10820e4 _raw_read_unlock -EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on -EXPORT_SYMBOL vmlinux 0xb129a780 pcim_iounmap -EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb152d87d cpu_possible_mask -EXPORT_SYMBOL vmlinux 0xb153ea71 in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xb157fca3 pci_find_bus -EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xb1615145 block_truncate_page -EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table -EXPORT_SYMBOL vmlinux 0xb187b3a8 lg_lock_init -EXPORT_SYMBOL vmlinux 0xb1ae2400 mmc_request_done -EXPORT_SYMBOL vmlinux 0xb1b294fb pcim_pin_device -EXPORT_SYMBOL vmlinux 0xb1bc8b66 generic_make_request -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xb1cfad22 rdmsr_on_cpu -EXPORT_SYMBOL vmlinux 0xb1d50968 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0xb1f07cd3 pci_map_biosrom -EXPORT_SYMBOL vmlinux 0xb20d5911 bdev_stack_limits -EXPORT_SYMBOL vmlinux 0xb20ecf88 acpi_run_osc -EXPORT_SYMBOL vmlinux 0xb21875d8 rwsem_down_read_failed -EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu -EXPORT_SYMBOL vmlinux 0xb258313e generic_file_fsync -EXPORT_SYMBOL vmlinux 0xb25bd746 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0xb26cae12 led_blink_set_oneshot -EXPORT_SYMBOL vmlinux 0xb272651f phy_attach_direct -EXPORT_SYMBOL vmlinux 0xb2845ce3 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0xb2857521 forget_cached_acl -EXPORT_SYMBOL vmlinux 0xb2a55c02 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0xb2ae2afa jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0xb2b67565 scsi_report_opcode -EXPORT_SYMBOL vmlinux 0xb2bb0089 sk_mc_loop -EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xb2d290cd kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0xb2d5a552 complete -EXPORT_SYMBOL vmlinux 0xb2d805d5 agp_alloc_bridge -EXPORT_SYMBOL vmlinux 0xb2e18e49 kern_path_mountpoint -EXPORT_SYMBOL vmlinux 0xb2f74fb6 intel_gmch_remove -EXPORT_SYMBOL vmlinux 0xb2faa181 tty_vhangup -EXPORT_SYMBOL vmlinux 0xb2fb0f2f nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 -EXPORT_SYMBOL vmlinux 0xb304d4c6 pcim_iomap_table -EXPORT_SYMBOL vmlinux 0xb3284531 acpi_dbg_layer -EXPORT_SYMBOL vmlinux 0xb32b5cba nvm_get_blk_unlocked -EXPORT_SYMBOL vmlinux 0xb32b7a6f filp_close -EXPORT_SYMBOL vmlinux 0xb32d025b dentry_needs_remove_privs -EXPORT_SYMBOL vmlinux 0xb3306f20 disk_stack_limits -EXPORT_SYMBOL vmlinux 0xb33ffd1c mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0xb34f6a7d make_bad_inode -EXPORT_SYMBOL vmlinux 0xb3501133 unregister_nls -EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit -EXPORT_SYMBOL vmlinux 0xb3575c08 pci_match_id -EXPORT_SYMBOL vmlinux 0xb36fe7c9 amd_iommu_device_info -EXPORT_SYMBOL vmlinux 0xb37bb97c __free_pages -EXPORT_SYMBOL vmlinux 0xb37d4070 tcp_proto_cgroup -EXPORT_SYMBOL vmlinux 0xb39d9425 scm_fp_dup -EXPORT_SYMBOL vmlinux 0xb3c74cfe __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb40fc2fe scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0xb41d4c64 call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb42952a9 vme_lm_request -EXPORT_SYMBOL vmlinux 0xb42f0d09 vga_switcheroo_fini_domain_pm_ops -EXPORT_SYMBOL vmlinux 0xb4320305 cros_ec_cmd_xfer_status -EXPORT_SYMBOL vmlinux 0xb43376a3 agp_backend_release -EXPORT_SYMBOL vmlinux 0xb44995d1 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0xb4710cf3 serio_open -EXPORT_SYMBOL vmlinux 0xb47189b5 reservation_ww_class -EXPORT_SYMBOL vmlinux 0xb4b63481 unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xb4d9e9ec alloc_buffer_head -EXPORT_SYMBOL vmlinux 0xb4f9a86c splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range -EXPORT_SYMBOL vmlinux 0xb5469d2c bio_integrity_endio -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb58f7464 dquot_commit_info -EXPORT_SYMBOL vmlinux 0xb59bd80c dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free -EXPORT_SYMBOL vmlinux 0xb5d288d1 tty_set_operations -EXPORT_SYMBOL vmlinux 0xb5dbd16a __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0xb5e8d1be inet_stream_ops -EXPORT_SYMBOL vmlinux 0xb610eef1 padata_unregister_cpumask_notifier -EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one -EXPORT_SYMBOL vmlinux 0xb62b54b9 iov_iter_npages -EXPORT_SYMBOL vmlinux 0xb661b877 __devm_release_region -EXPORT_SYMBOL vmlinux 0xb666cb5d kernel_bind -EXPORT_SYMBOL vmlinux 0xb6744824 skb_vlan_pop -EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu -EXPORT_SYMBOL vmlinux 0xb67542a9 mpage_writepages -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb69ff3a9 seq_open -EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit -EXPORT_SYMBOL vmlinux 0xb6a89d29 pneigh_lookup -EXPORT_SYMBOL vmlinux 0xb6b51310 inet_add_offload -EXPORT_SYMBOL vmlinux 0xb7069e69 sk_ns_capable -EXPORT_SYMBOL vmlinux 0xb7391cdc mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xb75183d8 dentry_path_raw -EXPORT_SYMBOL vmlinux 0xb756f699 elevator_exit -EXPORT_SYMBOL vmlinux 0xb758b225 acpi_disable_event -EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb7866bc8 pci_iomap_range -EXPORT_SYMBOL vmlinux 0xb79511da mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0xb79cedcd udp_seq_open -EXPORT_SYMBOL vmlinux 0xb79ee9d8 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0xb7abe8e8 ht_create_irq -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7d5d8c9 pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0xb8131099 param_set_invbool -EXPORT_SYMBOL vmlinux 0xb8140c80 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0xb8447617 send_sig -EXPORT_SYMBOL vmlinux 0xb85f3e85 input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 -EXPORT_SYMBOL vmlinux 0xb8951cab sk_free -EXPORT_SYMBOL vmlinux 0xb8b6a76c __percpu_counter_add -EXPORT_SYMBOL vmlinux 0xb8cb08db bioset_create -EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 -EXPORT_SYMBOL vmlinux 0xb8fdcd10 mempool_resize -EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory -EXPORT_SYMBOL vmlinux 0xb92ababc devm_kvasprintf -EXPORT_SYMBOL vmlinux 0xb93969d9 copy_to_iter -EXPORT_SYMBOL vmlinux 0xb94008c7 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0xb940bd5d dev_mc_sync -EXPORT_SYMBOL vmlinux 0xb971cef8 __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0xb998f48f fd_install -EXPORT_SYMBOL vmlinux 0xb9b2bc59 dev_alloc_name -EXPORT_SYMBOL vmlinux 0xb9e8038f fsnotify_put_group -EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xb9f91875 pci_unregister_driver -EXPORT_SYMBOL vmlinux 0xba2d8594 ec_read -EXPORT_SYMBOL vmlinux 0xba38201c devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba517659 iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0xba51eae3 security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0xba541581 dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0xba5bf09e ip_do_fragment -EXPORT_SYMBOL vmlinux 0xba6562d6 devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0xbaa3bacb bitmap_end_sync -EXPORT_SYMBOL vmlinux 0xbaaa5a93 blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0xbae4d93d generic_getxattr -EXPORT_SYMBOL vmlinux 0xbae4f2ae vlan_uses_dev -EXPORT_SYMBOL vmlinux 0xbaeb8911 netif_carrier_on -EXPORT_SYMBOL vmlinux 0xbaf42c61 jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0xbafb4272 blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb204c30 tcp_shutdown -EXPORT_SYMBOL vmlinux 0xbb34134a iov_shorten -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb412aa0 __scm_destroy -EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xbb6c827e lru_cache_add_file -EXPORT_SYMBOL vmlinux 0xbb7091cc tcp_read_sock -EXPORT_SYMBOL vmlinux 0xbb738586 vfs_symlink -EXPORT_SYMBOL vmlinux 0xbb7df761 force_sig -EXPORT_SYMBOL vmlinux 0xbb81172f elv_rq_merge_ok -EXPORT_SYMBOL vmlinux 0xbb865aa7 ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font -EXPORT_SYMBOL vmlinux 0xbba38fa3 tty_port_close_end -EXPORT_SYMBOL vmlinux 0xbba70a2d _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0xbba7611e dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xbbac8399 set_security_override -EXPORT_SYMBOL vmlinux 0xbbaeb559 memcg_socket_limit_enabled -EXPORT_SYMBOL vmlinux 0xbbb88b3d neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0xbbbea25f __ht_create_irq -EXPORT_SYMBOL vmlinux 0xbbd7f64e make_kgid -EXPORT_SYMBOL vmlinux 0xbbe9fa29 kmem_cache_size -EXPORT_SYMBOL vmlinux 0xbbeb1ec6 ioremap_wt -EXPORT_SYMBOL vmlinux 0xbbebba33 bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0xbc005fa9 lwtunnel_output -EXPORT_SYMBOL vmlinux 0xbc011349 padata_do_parallel -EXPORT_SYMBOL vmlinux 0xbc084395 i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0xbc1df66c i2c_del_adapter -EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit -EXPORT_SYMBOL vmlinux 0xbc3d6ce2 thermal_cdev_update -EXPORT_SYMBOL vmlinux 0xbc691117 do_SAK -EXPORT_SYMBOL vmlinux 0xbc895fd2 __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xbca7d1a5 pneigh_enqueue -EXPORT_SYMBOL vmlinux 0xbcabe368 __bforget -EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user -EXPORT_SYMBOL vmlinux 0xbcc70e23 dev_remove_offload -EXPORT_SYMBOL vmlinux 0xbcc9e2fd tcf_unregister_action -EXPORT_SYMBOL vmlinux 0xbceba2b0 udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0xbd13bab2 __nla_reserve -EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init -EXPORT_SYMBOL vmlinux 0xbd573d7b param_ops_int -EXPORT_SYMBOL vmlinux 0xbd6d79f1 __tracepoint_fence_annotate_wait_on -EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug -EXPORT_SYMBOL vmlinux 0xbda95657 sock_get_timestamp -EXPORT_SYMBOL vmlinux 0xbdaf5b07 acpi_os_read_port -EXPORT_SYMBOL vmlinux 0xbdbcea14 dma_sync_wait -EXPORT_SYMBOL vmlinux 0xbdf19d52 scsi_scan_target -EXPORT_SYMBOL vmlinux 0xbdf857c3 skb_vlan_untag -EXPORT_SYMBOL vmlinux 0xbdfb6dbb __fentry__ -EXPORT_SYMBOL vmlinux 0xbe05057f remap_vmalloc_range_partial -EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto -EXPORT_SYMBOL vmlinux 0xbe50af3a tcp_prequeue -EXPORT_SYMBOL vmlinux 0xbe6558a1 __skb_gso_segment -EXPORT_SYMBOL vmlinux 0xbe6cf717 scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0xbe815049 phy_find_first -EXPORT_SYMBOL vmlinux 0xbea3e7ae tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0xbebb9f60 filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0xbebcf3df textsearch_prepare -EXPORT_SYMBOL vmlinux 0xbebd95fb create_empty_buffers -EXPORT_SYMBOL vmlinux 0xbec30d05 x86_match_cpu -EXPORT_SYMBOL vmlinux 0xbeef1bdd inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0xbef1aa38 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbf31923b pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0xbf557e5c inode_dio_wait -EXPORT_SYMBOL vmlinux 0xbf7c1970 amd_iommu_domain_set_gcr3 -EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfba1180 skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep -EXPORT_SYMBOL vmlinux 0xbfe6f427 _raw_spin_unlock_irq -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xbff6a23d inet_sendmsg -EXPORT_SYMBOL vmlinux 0xc02b67d0 d_alloc -EXPORT_SYMBOL vmlinux 0xc039c921 compat_tcp_setsockopt -EXPORT_SYMBOL vmlinux 0xc04e471d pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0xc0589078 from_kuid_munged -EXPORT_SYMBOL vmlinux 0xc05e355f idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc0782359 __mdiobus_register -EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write -EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit -EXPORT_SYMBOL vmlinux 0xc0ada730 tcf_hash_check -EXPORT_SYMBOL vmlinux 0xc0b11e58 vme_bus_num -EXPORT_SYMBOL vmlinux 0xc0b2afdc twl6040_reg_write -EXPORT_SYMBOL vmlinux 0xc0cd3b13 ___ratelimit -EXPORT_SYMBOL vmlinux 0xc0d0b691 netlink_net_capable -EXPORT_SYMBOL vmlinux 0xc0d5e640 scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0xc0d72889 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0xc0d8f50a devm_memremap -EXPORT_SYMBOL vmlinux 0xc1216c81 rwsem_down_write_failed -EXPORT_SYMBOL vmlinux 0xc1397f95 cfb_copyarea -EXPORT_SYMBOL vmlinux 0xc148e7a2 max8998_update_reg -EXPORT_SYMBOL vmlinux 0xc15446ed inet_recvmsg -EXPORT_SYMBOL vmlinux 0xc157e143 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0xc15a44c6 memzero_explicit -EXPORT_SYMBOL vmlinux 0xc16e34f7 netdev_info -EXPORT_SYMBOL vmlinux 0xc1adb6c8 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0xc1ae0a3d security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0xc1bea9cc mmc_can_sanitize -EXPORT_SYMBOL vmlinux 0xc1d5bf31 page_cache_prev_hole -EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla -EXPORT_SYMBOL vmlinux 0xc1ff9e50 set_pages_uc -EXPORT_SYMBOL vmlinux 0xc2002b1f param_get_int -EXPORT_SYMBOL vmlinux 0xc2133bb2 clkdev_drop -EXPORT_SYMBOL vmlinux 0xc214cf29 pcie_get_minimum_link -EXPORT_SYMBOL vmlinux 0xc2170b36 vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0xc228c1ab fddi_type_trans -EXPORT_SYMBOL vmlinux 0xc23949dd __neigh_event_send -EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup -EXPORT_SYMBOL vmlinux 0xc253110d find_lock_entry -EXPORT_SYMBOL vmlinux 0xc25c5473 param_set_bint -EXPORT_SYMBOL vmlinux 0xc26f7fa0 inode_init_owner -EXPORT_SYMBOL vmlinux 0xc29524e4 page_put_link -EXPORT_SYMBOL vmlinux 0xc29bf967 strspn -EXPORT_SYMBOL vmlinux 0xc29cf84e invalidate_bdev -EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xc2ac4277 __splice_from_pipe -EXPORT_SYMBOL vmlinux 0xc2c33984 __register_binfmt -EXPORT_SYMBOL vmlinux 0xc2c814df kfree_skb_partial -EXPORT_SYMBOL vmlinux 0xc2d7c6de netif_rx_ni -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2ff1155 nvm_submit_io -EXPORT_SYMBOL vmlinux 0xc301a80b dmam_free_noncoherent -EXPORT_SYMBOL vmlinux 0xc310b981 strnstr -EXPORT_SYMBOL vmlinux 0xc33f1f2b netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0xc33f50e1 kernel_setsockopt -EXPORT_SYMBOL vmlinux 0xc35024de xfrm_init_replay -EXPORT_SYMBOL vmlinux 0xc350b4eb wrmsr_on_cpus -EXPORT_SYMBOL vmlinux 0xc3557361 invalidate_partition -EXPORT_SYMBOL vmlinux 0xc3780573 sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0xc37cb910 iov_iter_fault_in_readable -EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 -EXPORT_SYMBOL vmlinux 0xc3aea222 generic_key_instantiate -EXPORT_SYMBOL vmlinux 0xc3b2fc28 jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0xc3c05fd5 sk_dst_check -EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0xc3c5b1ee cap_mmap_file -EXPORT_SYMBOL vmlinux 0xc3f54fc7 path_get -EXPORT_SYMBOL vmlinux 0xc41643bf __sk_dst_check -EXPORT_SYMBOL vmlinux 0xc4194970 tcf_hash_create -EXPORT_SYMBOL vmlinux 0xc419c5d5 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0xc41fbde8 dev_activate -EXPORT_SYMBOL vmlinux 0xc436b69a ps2_drain -EXPORT_SYMBOL vmlinux 0xc4631593 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0xc46c198c sg_miter_skip -EXPORT_SYMBOL vmlinux 0xc48307db lz4_decompress -EXPORT_SYMBOL vmlinux 0xc483d659 block_read_full_page -EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup -EXPORT_SYMBOL vmlinux 0xc4ceb897 compat_ip_getsockopt -EXPORT_SYMBOL vmlinux 0xc4dac6d3 ipv4_specific -EXPORT_SYMBOL vmlinux 0xc4e5c58a dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0xc4f331c6 cpu_online_mask -EXPORT_SYMBOL vmlinux 0xc4fc286e phy_device_remove -EXPORT_SYMBOL vmlinux 0xc5137552 x86_bios_cpu_apicid -EXPORT_SYMBOL vmlinux 0xc533afd1 skb_find_text -EXPORT_SYMBOL vmlinux 0xc54a07c1 proc_create_data -EXPORT_SYMBOL vmlinux 0xc54c4138 i2c_del_driver -EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 -EXPORT_SYMBOL vmlinux 0xc558530d profile_pc -EXPORT_SYMBOL vmlinux 0xc58ce01c flow_cache_init -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc5c5513d nf_nat_decode_session_hook -EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot -EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc659885c vme_dma_request -EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes -EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif -EXPORT_SYMBOL vmlinux 0xc67591d1 vga_con -EXPORT_SYMBOL vmlinux 0xc676905f netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0xc6772da2 radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0xc681089b scsi_device_resume -EXPORT_SYMBOL vmlinux 0xc6a4e62e copy_from_iter -EXPORT_SYMBOL vmlinux 0xc6b368d3 acpi_gpe_count -EXPORT_SYMBOL vmlinux 0xc6b6832b nvm_addr_to_generic_mode -EXPORT_SYMBOL vmlinux 0xc6c933d9 tcp_v4_connect -EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6e2de04 blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0xc7089f49 bioset_integrity_create -EXPORT_SYMBOL vmlinux 0xc7205a1c keyring_clear -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass -EXPORT_SYMBOL vmlinux 0xc7591cf0 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0xc7717b1d acpi_processor_register_performance -EXPORT_SYMBOL vmlinux 0xc77822e7 fb_set_var -EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc798a5cf xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0xc79bb4cb gen_pool_alloc -EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7b2391c sget_userns -EXPORT_SYMBOL vmlinux 0xc7dd3675 clk_register_clkdevs -EXPORT_SYMBOL vmlinux 0xc7e8c554 posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0xc7ef44ba dev_uc_add -EXPORT_SYMBOL vmlinux 0xc7fcc5bf acpi_resource_to_address64 -EXPORT_SYMBOL vmlinux 0xc7ff410e input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0xc7ffcf5a input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0xc80b306c dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0xc82666e9 migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0xc8370c45 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0xc83b0bac from_kprojid -EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0xc83f5cfc cmdline_parts_find -EXPORT_SYMBOL vmlinux 0xc84604d2 mdiobus_scan -EXPORT_SYMBOL vmlinux 0xc84697cd security_inode_readlink -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table -EXPORT_SYMBOL vmlinux 0xc89f701f xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xc8c30646 mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0xc8d95fdd kernel_sendmsg -EXPORT_SYMBOL vmlinux 0xc8f62448 sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen -EXPORT_SYMBOL vmlinux 0xc9255160 nvm_erase_blk -EXPORT_SYMBOL vmlinux 0xc9414cbd sock_kfree_s -EXPORT_SYMBOL vmlinux 0xc95eade7 try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc96c635d neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xc973860e put_page -EXPORT_SYMBOL vmlinux 0xc978479a xz_dec_run -EXPORT_SYMBOL vmlinux 0xc97bb7ea km_new_mapping -EXPORT_SYMBOL vmlinux 0xc9840eae tty_unregister_driver -EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc99f6aae dma_spin_lock -EXPORT_SYMBOL vmlinux 0xc9a20fbe kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0xc9be5ec4 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0xc9c373a9 rtmsg_ifinfo -EXPORT_SYMBOL vmlinux 0xc9c41fcc ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0xc9d600e4 unregister_quota_format -EXPORT_SYMBOL vmlinux 0xc9f2c7bc pnp_possible_config -EXPORT_SYMBOL vmlinux 0xc9fef317 add_wait_queue -EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy -EXPORT_SYMBOL vmlinux 0xca318d21 inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0xca410632 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0xca4a7954 get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0xca5ee09a vme_free_consistent -EXPORT_SYMBOL vmlinux 0xca650459 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0xca653c71 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0xca72e82b d_delete -EXPORT_SYMBOL vmlinux 0xca832efe kmalloc_order -EXPORT_SYMBOL vmlinux 0xca8acc78 acpi_dbg_level -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xca98ba83 xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xcaa5c374 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0xcaaae4b1 dquot_drop -EXPORT_SYMBOL vmlinux 0xcac3a500 msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0xcad61f31 __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb048ff9 generic_removexattr -EXPORT_SYMBOL vmlinux 0xcb095489 dev_set_group -EXPORT_SYMBOL vmlinux 0xcb17bbd0 inet6_register_protosw -EXPORT_SYMBOL vmlinux 0xcb4e7560 mmc_get_card -EXPORT_SYMBOL vmlinux 0xcb507f42 eth_header -EXPORT_SYMBOL vmlinux 0xcb5dc427 skb_queue_tail -EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power -EXPORT_SYMBOL vmlinux 0xcb88f1d2 simple_rename -EXPORT_SYMBOL vmlinux 0xcb903326 pnp_get_resource -EXPORT_SYMBOL vmlinux 0xcb936989 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0xcbae6c7a acpi_lid_notifier_unregister -EXPORT_SYMBOL vmlinux 0xcbb07ed2 textsearch_destroy -EXPORT_SYMBOL vmlinux 0xcbbbde85 sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0xcbbd430e tcp_init_sock -EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0xcbf3d074 default_llseek -EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc82add3 _raw_read_lock_irqsave -EXPORT_SYMBOL vmlinux 0xcc838223 __pte2cachemode_tbl -EXPORT_SYMBOL vmlinux 0xcc8d3f4f acpi_os_execute -EXPORT_SYMBOL vmlinux 0xcc8e1ea2 jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0xcc9aa2a6 register_sysctl -EXPORT_SYMBOL vmlinux 0xccaf7988 __devcgroup_inode_permission -EXPORT_SYMBOL vmlinux 0xccafb0e9 uart_register_driver -EXPORT_SYMBOL vmlinux 0xccb937cd padata_free -EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor -EXPORT_SYMBOL vmlinux 0xccd9199c sk_stop_timer -EXPORT_SYMBOL vmlinux 0xccda4517 kern_unmount -EXPORT_SYMBOL vmlinux 0xccede4b8 agp_generic_free_by_type -EXPORT_SYMBOL vmlinux 0xcd09b309 __cleancache_put_page -EXPORT_SYMBOL vmlinux 0xcd20667a kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd3d0a05 vfs_whiteout -EXPORT_SYMBOL vmlinux 0xcd3edd79 phy_register_fixup -EXPORT_SYMBOL vmlinux 0xcd4dac29 uart_write_wakeup -EXPORT_SYMBOL vmlinux 0xcd4e6369 kernel_getpeername -EXPORT_SYMBOL vmlinux 0xcd57f7b0 radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0xcd6be423 tcp_connect -EXPORT_SYMBOL vmlinux 0xcdc0cc90 sync_inode -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdca82f8 kernel_sock_ioctl -EXPORT_SYMBOL vmlinux 0xcdd10410 km_report -EXPORT_SYMBOL vmlinux 0xcdfed4ba ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce2c45cc wait_for_completion_io -EXPORT_SYMBOL vmlinux 0xce319131 nvm_submit_ppa -EXPORT_SYMBOL vmlinux 0xce4904a4 acpi_leave_sleep_state -EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce7850e1 crc32_le_shift -EXPORT_SYMBOL vmlinux 0xce81338a insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0xcea4ac74 __dquot_transfer -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xceae504f cmdline_parts_free -EXPORT_SYMBOL vmlinux 0xceb91921 nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0xced78f26 dst_alloc -EXPORT_SYMBOL vmlinux 0xced89fc2 scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0xceea7bbe netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0xceeba650 phy_resume -EXPORT_SYMBOL vmlinux 0xceefc3d4 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 -EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcefd1cf1 eth_type_trans -EXPORT_SYMBOL vmlinux 0xcf35cda5 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0xcf3f28e0 napi_consume_skb -EXPORT_SYMBOL vmlinux 0xcf4d5ae8 seq_putc -EXPORT_SYMBOL vmlinux 0xcf503518 sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0xcf65abeb dev_uc_flush -EXPORT_SYMBOL vmlinux 0xcf6cfe1f msrs_free -EXPORT_SYMBOL vmlinux 0xcf75224b no_llseek -EXPORT_SYMBOL vmlinux 0xcf952573 check_disk_size_change -EXPORT_SYMBOL vmlinux 0xcf980c16 d_splice_alias -EXPORT_SYMBOL vmlinux 0xcfa0555d tty_hangup -EXPORT_SYMBOL vmlinux 0xcfb4a296 trace_print_array_seq -EXPORT_SYMBOL vmlinux 0xcfbc582f tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0xcfc975ac d_instantiate_no_diralias -EXPORT_SYMBOL vmlinux 0xcfe8d12a pci_release_region -EXPORT_SYMBOL vmlinux 0xd02058f1 xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0xd031b92c down_write_trylock -EXPORT_SYMBOL vmlinux 0xd0594c3f mmc_stop_bkops -EXPORT_SYMBOL vmlinux 0xd064f1c1 simple_fill_super -EXPORT_SYMBOL vmlinux 0xd068f91d pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0xd070f806 vc_resize -EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond -EXPORT_SYMBOL vmlinux 0xd08b3c8a seq_release -EXPORT_SYMBOL vmlinux 0xd08f6239 sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc -EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init -EXPORT_SYMBOL vmlinux 0xd0a8a833 dev_trans_start -EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces -EXPORT_SYMBOL vmlinux 0xd0b34198 mmc_put_card -EXPORT_SYMBOL vmlinux 0xd0c7b2ad sock_update_memcg -EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format -EXPORT_SYMBOL vmlinux 0xd0fadbdd submit_bh -EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first -EXPORT_SYMBOL vmlinux 0xd0fccad3 pci_find_capability -EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key -EXPORT_SYMBOL vmlinux 0xd1096556 __serio_register_port -EXPORT_SYMBOL vmlinux 0xd10cf7ad inet_sendpage -EXPORT_SYMBOL vmlinux 0xd120e1bb agp_generic_destroy_page -EXPORT_SYMBOL vmlinux 0xd121e3d3 mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0xd125b3d0 revalidate_disk -EXPORT_SYMBOL vmlinux 0xd12bb300 lwtunnel_input -EXPORT_SYMBOL vmlinux 0xd132f6b0 qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0xd139a2b6 dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0xd14a217b soft_cursor -EXPORT_SYMBOL vmlinux 0xd14f6f2c fsnotify_get_group -EXPORT_SYMBOL vmlinux 0xd1616ece inet_dgram_connect -EXPORT_SYMBOL vmlinux 0xd1652a93 acpi_info -EXPORT_SYMBOL vmlinux 0xd16f27d9 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0xd1784f02 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd188222e inet_sock_destruct -EXPORT_SYMBOL vmlinux 0xd19571ba scsicam_bios_param -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1e49ac1 misc_register -EXPORT_SYMBOL vmlinux 0xd1f684b2 param_set_bool -EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings -EXPORT_SYMBOL vmlinux 0xd2064e2f idr_replace -EXPORT_SYMBOL vmlinux 0xd20f3020 _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xd25d1e05 qdisc_list_add -EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd27f91f2 release_pages -EXPORT_SYMBOL vmlinux 0xd2824b11 dquot_quota_off -EXPORT_SYMBOL vmlinux 0xd288abdd page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0xd2b09ce5 __kmalloc -EXPORT_SYMBOL vmlinux 0xd2c6a8ab tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0xd2ca508a phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2e8d614 blk_queue_softirq_done -EXPORT_SYMBOL vmlinux 0xd341a04e iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0xd34a6d48 udp_del_offload -EXPORT_SYMBOL vmlinux 0xd34d4bf0 md_update_sb -EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0xd3719d59 paravirt_ticketlocks_enabled -EXPORT_SYMBOL vmlinux 0xd388eebc pci_biosrom_size -EXPORT_SYMBOL vmlinux 0xd38b08f9 scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0xd3a564c4 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0xd3ad7f6b pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0xd3b409a5 dcache_dir_close -EXPORT_SYMBOL vmlinux 0xd3bac163 mmc_set_blockcount -EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xd3c950a7 genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0xd3d3306e param_set_short -EXPORT_SYMBOL vmlinux 0xd3d9a495 max8998_bulk_write -EXPORT_SYMBOL vmlinux 0xd3dafc6d iterate_mounts -EXPORT_SYMBOL vmlinux 0xd3de957c security_inode_init_security -EXPORT_SYMBOL vmlinux 0xd3e0e2fd pci_get_subsys -EXPORT_SYMBOL vmlinux 0xd3e15593 jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0xd4153551 do_splice_to -EXPORT_SYMBOL vmlinux 0xd424022c sk_wait_data -EXPORT_SYMBOL vmlinux 0xd44a2e55 vfs_write -EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex -EXPORT_SYMBOL vmlinux 0xd4732a29 netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0xd47e1c7a balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system -EXPORT_SYMBOL vmlinux 0xd49afcb9 __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0xd4b1cf1c vme_irq_request -EXPORT_SYMBOL vmlinux 0xd4e68a68 vme_master_mmap -EXPORT_SYMBOL vmlinux 0xd4f67747 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0xd5062683 __dquot_free_space -EXPORT_SYMBOL vmlinux 0xd5082483 md_write_end -EXPORT_SYMBOL vmlinux 0xd50fef48 acpi_detach_data -EXPORT_SYMBOL vmlinux 0xd52c9c19 down_write -EXPORT_SYMBOL vmlinux 0xd532686c nvm_end_io -EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0xd56009ab simple_statfs -EXPORT_SYMBOL vmlinux 0xd573e97b param_get_ulong -EXPORT_SYMBOL vmlinux 0xd57b1941 ps2_end_command -EXPORT_SYMBOL vmlinux 0xd58b2c12 serio_bus -EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames -EXPORT_SYMBOL vmlinux 0xd5a6862c pci_scan_single_device -EXPORT_SYMBOL vmlinux 0xd5a95500 inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0xd5c580f5 twl6040_set_pll -EXPORT_SYMBOL vmlinux 0xd5de608f scsi_print_command -EXPORT_SYMBOL vmlinux 0xd5f285c5 passthru_features_check -EXPORT_SYMBOL vmlinux 0xd610f582 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0xd611c459 register_key_type -EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout -EXPORT_SYMBOL vmlinux 0xd62c851b blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0xd6391a1b phy_device_free -EXPORT_SYMBOL vmlinux 0xd6453fd9 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode -EXPORT_SYMBOL vmlinux 0xd654c465 tcp_rcv_established -EXPORT_SYMBOL vmlinux 0xd679092c blk_mq_add_to_requeue_list -EXPORT_SYMBOL vmlinux 0xd67d679a amd_iommu_domain_enable_v2 -EXPORT_SYMBOL vmlinux 0xd686e62c skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd68e1d1b _raw_read_trylock -EXPORT_SYMBOL vmlinux 0xd68f2f76 prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace -EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz -EXPORT_SYMBOL vmlinux 0xd6bd80cb __blk_end_request_all -EXPORT_SYMBOL vmlinux 0xd6c4f9df complete_request_key -EXPORT_SYMBOL vmlinux 0xd6dade40 search_binary_handler -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd72bc1ee dev_crit -EXPORT_SYMBOL vmlinux 0xd730959d seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xd7452919 iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function -EXPORT_SYMBOL vmlinux 0xd7630fdc generic_read_dir -EXPORT_SYMBOL vmlinux 0xd7795b63 nf_register_hooks -EXPORT_SYMBOL vmlinux 0xd7852b32 netdev_err -EXPORT_SYMBOL vmlinux 0xd78ffb61 scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0xd7937440 inode_add_bytes -EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7e8e347 blk_end_request_cur -EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7f5403c make_kprojid -EXPORT_SYMBOL vmlinux 0xd7fe7725 pci_set_power_state -EXPORT_SYMBOL vmlinux 0xd800ec9e try_module_get -EXPORT_SYMBOL vmlinux 0xd8229943 tcp_splice_read -EXPORT_SYMBOL vmlinux 0xd8733841 current_task -EXPORT_SYMBOL vmlinux 0xd875d094 fbcon_rotate_ccw -EXPORT_SYMBOL vmlinux 0xd87a1f68 blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0xd8833185 jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0xd89546be mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8bddfd4 release_sock -EXPORT_SYMBOL vmlinux 0xd8bfe55a tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region -EXPORT_SYMBOL vmlinux 0xd9025be5 bioset_create_nobvec -EXPORT_SYMBOL vmlinux 0xd9091363 acpi_install_notify_handler -EXPORT_SYMBOL vmlinux 0xd926a0f1 md_done_sync -EXPORT_SYMBOL vmlinux 0xd92b3531 delete_from_page_cache -EXPORT_SYMBOL vmlinux 0xd92e2dca tcp_hashinfo -EXPORT_SYMBOL vmlinux 0xd92e5f34 free_task -EXPORT_SYMBOL vmlinux 0xd94322e7 acpi_evaluate_reference -EXPORT_SYMBOL vmlinux 0xd969b2c7 amd_e400_c1e_detected -EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu -EXPORT_SYMBOL vmlinux 0xd97273e2 kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0xd9779f48 mmc_fixup_device -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd98b5901 pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0xd98c1ce0 devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0xd98efbba default_file_splice_read -EXPORT_SYMBOL vmlinux 0xd99bd383 nd_region_release_lane -EXPORT_SYMBOL vmlinux 0xd99cbe0f udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0xd9a7cc00 param_ops_uint -EXPORT_SYMBOL vmlinux 0xd9c67fa9 cpu_info -EXPORT_SYMBOL vmlinux 0xd9d3bcd3 _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler -EXPORT_SYMBOL vmlinux 0xd9f9c71b jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda463c2f dentry_open -EXPORT_SYMBOL vmlinux 0xda48c4e7 sock_cmsg_send -EXPORT_SYMBOL vmlinux 0xda5e2aee put_tty_driver -EXPORT_SYMBOL vmlinux 0xda5fb76e tso_build_data -EXPORT_SYMBOL vmlinux 0xda623858 pnp_register_card_driver -EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0xda9fc7ae kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0xdaa960d8 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0xdaa9e417 iterate_supers_type -EXPORT_SYMBOL vmlinux 0xdab9899a vlan_vid_add -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdae80100 _raw_spin_unlock -EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell -EXPORT_SYMBOL vmlinux 0xdaeae071 tcp_prot -EXPORT_SYMBOL vmlinux 0xdafafba5 bdgrab -EXPORT_SYMBOL vmlinux 0xdb096a89 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0xdb0daaa9 padata_do_serial -EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg -EXPORT_SYMBOL vmlinux 0xdb30855e processors -EXPORT_SYMBOL vmlinux 0xdb3bcca6 cancel_delayed_work -EXPORT_SYMBOL vmlinux 0xdb40fd85 devm_gpiod_get_optional -EXPORT_SYMBOL vmlinux 0xdb55c9dc seq_printf -EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb77d4aa ppp_input -EXPORT_SYMBOL vmlinux 0xdb88632e md_flush_request -EXPORT_SYMBOL vmlinux 0xdb8e244e pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0xdb97ff74 alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0xdb9a97b5 abx500_set_register_interruptible -EXPORT_SYMBOL vmlinux 0xdbadd693 write_dirty_buffer -EXPORT_SYMBOL vmlinux 0xdbe87bec vga_tryget -EXPORT_SYMBOL vmlinux 0xdbf0fcbd phy_start -EXPORT_SYMBOL vmlinux 0xdbf94215 simple_transaction_release -EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0xdc05ae23 qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0xdc098749 __wait_on_buffer -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc300482 phy_init_hw -EXPORT_SYMBOL vmlinux 0xdc3850c5 dquot_scan_active -EXPORT_SYMBOL vmlinux 0xdc3c41a8 __crypto_memneq -EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 -EXPORT_SYMBOL vmlinux 0xdc4ef1ad __vfs_write -EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc57f532 acpi_install_gpe_handler -EXPORT_SYMBOL vmlinux 0xdc5f5da8 lockref_put_return -EXPORT_SYMBOL vmlinux 0xdc66bf49 devm_memremap_pages -EXPORT_SYMBOL vmlinux 0xdc725167 __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0xdc993a57 inet6_unregister_icmp_sender -EXPORT_SYMBOL vmlinux 0xdc9faf5b tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0xdca9f9a1 cdrom_release -EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close -EXPORT_SYMBOL vmlinux 0xdcc41536 vfs_readf -EXPORT_SYMBOL vmlinux 0xdcd726d2 block_write_begin -EXPORT_SYMBOL vmlinux 0xdcf2c836 dquot_get_state -EXPORT_SYMBOL vmlinux 0xdd1ff01f nlmsg_notify -EXPORT_SYMBOL vmlinux 0xdd251d54 jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0xdd487594 netif_device_attach -EXPORT_SYMBOL vmlinux 0xdd58af2f inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy -EXPORT_SYMBOL vmlinux 0xdd8b70c3 inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0xdd9e9b29 __bio_clone_fast -EXPORT_SYMBOL vmlinux 0xddb583f6 gen_pool_add_virt -EXPORT_SYMBOL vmlinux 0xddc70f84 phy_start_interrupts -EXPORT_SYMBOL vmlinux 0xddd6046c ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0xddd95405 security_path_unlink -EXPORT_SYMBOL vmlinux 0xddfa94fa mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0xddfad67a padata_set_cpumask -EXPORT_SYMBOL vmlinux 0xde16dc16 tboot -EXPORT_SYMBOL vmlinux 0xde1fb851 nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0xde2e1782 mmc_interrupt_hpi -EXPORT_SYMBOL vmlinux 0xde39b75c pci_enable_device_io -EXPORT_SYMBOL vmlinux 0xde3e2062 swiotlb_unmap_sg -EXPORT_SYMBOL vmlinux 0xde48ca25 register_xen_selfballooning -EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0xde6e407b tcp_conn_request -EXPORT_SYMBOL vmlinux 0xde7edd66 dquot_resume -EXPORT_SYMBOL vmlinux 0xde8941cf mmc_can_erase -EXPORT_SYMBOL vmlinux 0xde8be0c4 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages -EXPORT_SYMBOL vmlinux 0xde93bae6 led_set_brightness -EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size -EXPORT_SYMBOL vmlinux 0xdea79b24 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0xdeb8721f ps2_init -EXPORT_SYMBOL vmlinux 0xdecee666 blk_queue_bounce -EXPORT_SYMBOL vmlinux 0xdedb6611 try_wait_for_completion -EXPORT_SYMBOL vmlinux 0xdeff6731 xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0xdf0a8f1c alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0xdf0da3cc acpi_get_devices -EXPORT_SYMBOL vmlinux 0xdf12a927 acpi_check_dsm -EXPORT_SYMBOL vmlinux 0xdf1427e5 idr_remove -EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf38770f generic_write_checks -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf5c4600 scm_detach_fds -EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol -EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init -EXPORT_SYMBOL vmlinux 0xdfd3a075 wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0xdfd750c6 inet_frags_exit_net -EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xe04e7a8f pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xe05d19d1 arch_debugfs_dir -EXPORT_SYMBOL vmlinux 0xe05fbeb4 vme_master_request -EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone -EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool -EXPORT_SYMBOL vmlinux 0xe0a89853 mutex_unlock -EXPORT_SYMBOL vmlinux 0xe0ac8bd2 acpi_bus_generate_netlink_event -EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0c33339 neigh_table_init -EXPORT_SYMBOL vmlinux 0xe0dbab3e fbcon_set_rotate -EXPORT_SYMBOL vmlinux 0xe0f0ff32 sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0xe0fa438f generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -EXPORT_SYMBOL vmlinux 0xe1144ebb padata_alloc_possible -EXPORT_SYMBOL vmlinux 0xe12e031d blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors -EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xe188da32 netdev_boot_setup_check -EXPORT_SYMBOL vmlinux 0xe18d9c22 mark_info_dirty -EXPORT_SYMBOL vmlinux 0xe1a470f9 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0xe1ba6ea1 netpoll_setup -EXPORT_SYMBOL vmlinux 0xe1cb8815 sock_create -EXPORT_SYMBOL vmlinux 0xe1f0ba89 ll_rw_block -EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xe20372ae radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0xe2056ed6 skb_dequeue -EXPORT_SYMBOL vmlinux 0xe21c9673 find_get_pages_tag -EXPORT_SYMBOL vmlinux 0xe21ccc91 compat_ip_setsockopt -EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe23b358c posix_lock_file -EXPORT_SYMBOL vmlinux 0xe23d6113 tty_port_hangup -EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 -EXPORT_SYMBOL vmlinux 0xe250acfb noop_llseek -EXPORT_SYMBOL vmlinux 0xe2563bd2 netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0xe259ae9e _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xe26ab71e param_get_bool -EXPORT_SYMBOL vmlinux 0xe286eb09 mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0xe291682c mount_nodev -EXPORT_SYMBOL vmlinux 0xe2947ae4 dump_truncate -EXPORT_SYMBOL vmlinux 0xe2955ecc set_pages_x -EXPORT_SYMBOL vmlinux 0xe2956bdd d_genocide -EXPORT_SYMBOL vmlinux 0xe29b04e9 acpi_set_firmware_waking_vector64 -EXPORT_SYMBOL vmlinux 0xe29d8792 __dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t -EXPORT_SYMBOL vmlinux 0xe29f4ebd compat_mc_setsockopt -EXPORT_SYMBOL vmlinux 0xe2acf9d3 ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0xe317764d jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0xe317d9e1 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0xe3188f58 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0xe319eb24 acpi_pci_osc_control_set -EXPORT_SYMBOL vmlinux 0xe31af906 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0xe3399a75 native_queued_spin_lock_slowpath -EXPORT_SYMBOL vmlinux 0xe35f0250 iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0xe369b9e1 nvm_put_blk -EXPORT_SYMBOL vmlinux 0xe37e60c2 zero_fill_bio -EXPORT_SYMBOL vmlinux 0xe390e947 mb_cache_entry_release -EXPORT_SYMBOL vmlinux 0xe3a1a221 con_is_bound -EXPORT_SYMBOL vmlinux 0xe3a53f4c sort -EXPORT_SYMBOL vmlinux 0xe3b089dc nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0xe3c2ebab bio_integrity_free -EXPORT_SYMBOL vmlinux 0xe3d4e466 __frontswap_test -EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xe3f89489 genphy_resume -EXPORT_SYMBOL vmlinux 0xe409b04d update_devfreq -EXPORT_SYMBOL vmlinux 0xe43fc55f simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0xe44b7bc7 tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0xe45021f1 napi_gro_flush -EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 -EXPORT_SYMBOL vmlinux 0xe486b797 blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0xe4908974 blk_queue_resize_tags -EXPORT_SYMBOL vmlinux 0xe4c8b44d load_nls -EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array -EXPORT_SYMBOL vmlinux 0xe4ea6643 blk_fetch_request -EXPORT_SYMBOL vmlinux 0xe4eaab2e t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0xe4f6fab1 inode_set_flags -EXPORT_SYMBOL vmlinux 0xe504a4d5 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xe513fcd2 pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe528213f register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0xe530d757 acpi_clear_gpe -EXPORT_SYMBOL vmlinux 0xe542718e i2c_transfer -EXPORT_SYMBOL vmlinux 0xe54958a8 sock_i_uid -EXPORT_SYMBOL vmlinux 0xe551c728 add_random_ready_callback -EXPORT_SYMBOL vmlinux 0xe5537248 n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0xe55db7c7 jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton -EXPORT_SYMBOL vmlinux 0xe5815f8a _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set -EXPORT_SYMBOL vmlinux 0xe5abc509 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5d8b5cd phy_read_mmd_indirect -EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xe5fc498a deactivate_locked_super -EXPORT_SYMBOL vmlinux 0xe607a15f amd_iommu_domain_direct_map -EXPORT_SYMBOL vmlinux 0xe607a87c xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0xe60a536a kernel_connect -EXPORT_SYMBOL vmlinux 0xe60fa5f1 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0xe6135de3 tso_start -EXPORT_SYMBOL vmlinux 0xe6162877 down_killable -EXPORT_SYMBOL vmlinux 0xe622577c pagecache_get_page -EXPORT_SYMBOL vmlinux 0xe6238b3d __register_nls -EXPORT_SYMBOL vmlinux 0xe6374f2e audit_log_task_info -EXPORT_SYMBOL vmlinux 0xe63cb489 netif_skb_features -EXPORT_SYMBOL vmlinux 0xe63ef619 filemap_fdatawait -EXPORT_SYMBOL vmlinux 0xe64b2898 ip_ct_attach -EXPORT_SYMBOL vmlinux 0xe64cc031 __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0xe64d98fe rdmsr_safe_regs -EXPORT_SYMBOL vmlinux 0xe65a73d7 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0xe66476dd blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0xe68961d3 ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe69a9df4 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0xe69b7ed1 sock_no_shutdown -EXPORT_SYMBOL vmlinux 0xe6a02c6f block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0xe6c9935d ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock -EXPORT_SYMBOL vmlinux 0xe70f910f param_ops_charp -EXPORT_SYMBOL vmlinux 0xe716baed acpi_unregister_ioapic -EXPORT_SYMBOL vmlinux 0xe73294a1 udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0xe739654a request_key_async_with_auxdata -EXPORT_SYMBOL vmlinux 0xe73c0db3 kthread_bind -EXPORT_SYMBOL vmlinux 0xe73c2cf2 abx500_remove_ops -EXPORT_SYMBOL vmlinux 0xe741f203 vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0xe746fc19 node_data -EXPORT_SYMBOL vmlinux 0xe7516de3 kernel_write -EXPORT_SYMBOL vmlinux 0xe775a528 fbcon_rotate_ud -EXPORT_SYMBOL vmlinux 0xe77e14fe nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx -EXPORT_SYMBOL vmlinux 0xe7a8647f mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0xe7cae400 inet_csk_accept -EXPORT_SYMBOL vmlinux 0xe7cc3ed9 lease_modify -EXPORT_SYMBOL vmlinux 0xe7cf4e25 capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7d76d50 inet6_ioctl -EXPORT_SYMBOL vmlinux 0xe8004ae6 pci_remove_bus -EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0xe8731918 x86_hyper_xen -EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss -EXPORT_SYMBOL vmlinux 0xe87bfcce mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0xe89e9c3c clkdev_add -EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0xe8ae56d5 lwtunnel_fill_encap -EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xe8cd3678 kill_fasync -EXPORT_SYMBOL vmlinux 0xe8db8dd2 _raw_write_lock -EXPORT_SYMBOL vmlinux 0xe8e9457b noop_qdisc -EXPORT_SYMBOL vmlinux 0xe8ef0ff0 current_kernel_time64 -EXPORT_SYMBOL vmlinux 0xe8eff65f netdev_features_change -EXPORT_SYMBOL vmlinux 0xe8fd8b24 mmc_erase -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe914e52d nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0xe915ed42 generic_show_options -EXPORT_SYMBOL vmlinux 0xe921f5bd grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0xe936acd1 vme_dma_list_add -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr -EXPORT_SYMBOL vmlinux 0xe961a969 i2c_add_adapter -EXPORT_SYMBOL vmlinux 0xe964fd21 pnp_device_attach -EXPORT_SYMBOL vmlinux 0xe9874ab0 proc_symlink -EXPORT_SYMBOL vmlinux 0xe997667b wrmsr_on_cpu -EXPORT_SYMBOL vmlinux 0xe9acfac4 tcf_hash_new_index -EXPORT_SYMBOL vmlinux 0xe9d78e23 mmc_gpio_request_cd -EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len -EXPORT_SYMBOL vmlinux 0xea38a6e7 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0xea39cdb6 arch_dma_alloc_attrs -EXPORT_SYMBOL vmlinux 0xea3f725d _raw_write_lock_irqsave -EXPORT_SYMBOL vmlinux 0xea4fd043 sock_no_bind -EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table -EXPORT_SYMBOL vmlinux 0xea7b8a44 acpi_install_interface -EXPORT_SYMBOL vmlinux 0xea8722b4 open_check_o_direct -EXPORT_SYMBOL vmlinux 0xea8f2ec5 generic_permission -EXPORT_SYMBOL vmlinux 0xea90bdd3 acpi_attach_data -EXPORT_SYMBOL vmlinux 0xeaa36fb3 inet_accept -EXPORT_SYMBOL vmlinux 0xeab14af8 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0xeab4e1d1 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0xeab8d03f ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0xeac73847 irq_regs -EXPORT_SYMBOL vmlinux 0xeacfcd47 qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0xead9373f phy_suspend -EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay -EXPORT_SYMBOL vmlinux 0xeaec641f scsi_device_put -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact -EXPORT_SYMBOL vmlinux 0xeb73f915 nvm_unregister_mgr -EXPORT_SYMBOL vmlinux 0xeb787f61 pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0xebbbef08 simple_setattr -EXPORT_SYMBOL vmlinux 0xebc97c77 __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0xebc9f68e commit_creds -EXPORT_SYMBOL vmlinux 0xebd14b52 bdi_setup_and_register -EXPORT_SYMBOL vmlinux 0xebd5ea91 setup_arg_pages -EXPORT_SYMBOL vmlinux 0xebff5cf5 fence_signal_locked -EXPORT_SYMBOL vmlinux 0xec015fa4 dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0xec08c829 tso_build_hdr -EXPORT_SYMBOL vmlinux 0xec10b9bf iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0xec1bb1ce pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0xec36b685 dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0xec3c5211 vc_cons -EXPORT_SYMBOL vmlinux 0xec3ee5c5 inet_del_offload -EXPORT_SYMBOL vmlinux 0xec461803 agp3_generic_tlbflush -EXPORT_SYMBOL vmlinux 0xec46e591 inet6_offloads -EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec633a95 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0xec70da31 netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0xec8dcb9a skb_checksum -EXPORT_SYMBOL vmlinux 0xec91fdf3 bio_alloc_pages -EXPORT_SYMBOL vmlinux 0xec95f26e param_set_byte -EXPORT_SYMBOL vmlinux 0xec9a4848 mntput -EXPORT_SYMBOL vmlinux 0xecaa2fd5 tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0xecac8407 __memcpy -EXPORT_SYMBOL vmlinux 0xeccd3e0c acpi_handle_printk -EXPORT_SYMBOL vmlinux 0xecd6b440 blk_alloc_queue -EXPORT_SYMBOL vmlinux 0xecdf5967 agp_generic_destroy_pages -EXPORT_SYMBOL vmlinux 0xece4ac5c netlink_ack -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node -EXPORT_SYMBOL vmlinux 0xed05dd21 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0xed175301 pci_dev_driver -EXPORT_SYMBOL vmlinux 0xed2aa625 devm_ioremap_nocache -EXPORT_SYMBOL vmlinux 0xed337ae9 blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0xed4e7c83 remove_proc_entry -EXPORT_SYMBOL vmlinux 0xed542b43 acpi_bus_get_status -EXPORT_SYMBOL vmlinux 0xed5608a4 __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xed795420 arp_create -EXPORT_SYMBOL vmlinux 0xed85ddf8 tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long -EXPORT_SYMBOL vmlinux 0xee08efcf mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee33ea6a xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices -EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee98ce28 clear_wb_congested -EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeeb19800 uart_update_timeout -EXPORT_SYMBOL vmlinux 0xeec2c7cf ucs2_as_utf8 -EXPORT_SYMBOL vmlinux 0xeed5c38c mpage_readpage -EXPORT_SYMBOL vmlinux 0xeedbd9a4 write_inode_now -EXPORT_SYMBOL vmlinux 0xeee43acc sock_efree -EXPORT_SYMBOL vmlinux 0xeeee5ff2 vga_switcheroo_set_dynamic_switch -EXPORT_SYMBOL vmlinux 0xeef161aa groups_free -EXPORT_SYMBOL vmlinux 0xeef427cb lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0xef0745d0 dev_get_by_name -EXPORT_SYMBOL vmlinux 0xef188a8e __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0xef203299 __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0xef52ff2b i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0xef61f542 tso_count_descs -EXPORT_SYMBOL vmlinux 0xef8c9d38 agp_find_bridge -EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override -EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xefda8d99 abort_exclusive_wait -EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0xefe099c3 acpi_get_event_status -EXPORT_SYMBOL vmlinux 0xefe7c850 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0xefea4e5d ppp_unit_number -EXPORT_SYMBOL vmlinux 0xefef5637 rtnl_notify -EXPORT_SYMBOL vmlinux 0xeff77eb2 generic_listxattr -EXPORT_SYMBOL vmlinux 0xeffd14bd filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0xeffd8f11 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf00f67a9 load_nls_default -EXPORT_SYMBOL vmlinux 0xf01737d9 uart_get_divisor -EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0xf027d5a4 pci_enable_device -EXPORT_SYMBOL vmlinux 0xf031fa98 pcie_port_service_register -EXPORT_SYMBOL vmlinux 0xf03ec4be flush_old_exec -EXPORT_SYMBOL vmlinux 0xf04d0f86 nf_register_sockopt -EXPORT_SYMBOL vmlinux 0xf0581965 skb_pull -EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0xf062576b ucs2_utf8size -EXPORT_SYMBOL vmlinux 0xf0647e3e blk_run_queue_async -EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be -EXPORT_SYMBOL vmlinux 0xf066140b tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier -EXPORT_SYMBOL vmlinux 0xf068a863 clear_nlink -EXPORT_SYMBOL vmlinux 0xf07a6efc __skb_tx_hash -EXPORT_SYMBOL vmlinux 0xf08242c2 finish_wait -EXPORT_SYMBOL vmlinux 0xf08bc7d9 filemap_flush -EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag -EXPORT_SYMBOL vmlinux 0xf08e4b1a alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0xf09d9e74 max8998_write_reg -EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int -EXPORT_SYMBOL vmlinux 0xf0a59134 xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0xf0a8237a radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0xf0adef22 gen_replace_estimator -EXPORT_SYMBOL vmlinux 0xf0bc0693 get_tz_trend -EXPORT_SYMBOL vmlinux 0xf0cc395e ipv6_push_nfrag_opts -EXPORT_SYMBOL vmlinux 0xf0d327bd param_ops_long -EXPORT_SYMBOL vmlinux 0xf0eaffce _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort -EXPORT_SYMBOL vmlinux 0xf0ff2144 mdiobus_unregister -EXPORT_SYMBOL vmlinux 0xf1049f80 audit_log -EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info -EXPORT_SYMBOL vmlinux 0xf10ab58b mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 -EXPORT_SYMBOL vmlinux 0xf112227c uart_suspend_port -EXPORT_SYMBOL vmlinux 0xf11543ff find_first_zero_bit -EXPORT_SYMBOL vmlinux 0xf116d4b5 copy_in_user -EXPORT_SYMBOL vmlinux 0xf11e453d elv_rb_add -EXPORT_SYMBOL vmlinux 0xf1398e2e lg_local_unlock_cpu -EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init -EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps -EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf1bb158c pci_clear_master -EXPORT_SYMBOL vmlinux 0xf1c1a28b phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0xf1cc1177 sock_get_timestampns -EXPORT_SYMBOL vmlinux 0xf1cc7323 generic_setlease -EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1e7aa40 mmc_can_trim -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq -EXPORT_SYMBOL vmlinux 0xf217726d __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xf21f1c96 pv_cpu_ops -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf27c169c phy_driver_register -EXPORT_SYMBOL vmlinux 0xf28ed6e2 machine_to_phys_nr -EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0xf29c7cd6 __serio_register_driver -EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered -EXPORT_SYMBOL vmlinux 0xf2a2b163 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0xf2b4416d sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0xf2c0387a nvm_erase_ppa -EXPORT_SYMBOL vmlinux 0xf2c2767c simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2cf714d uart_resume_port -EXPORT_SYMBOL vmlinux 0xf2d2d503 __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0xf2d6cf7d serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0xf2d9e2c7 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0xf2f9eb9f qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0xf312cb9d ucs2_strsize -EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform -EXPORT_SYMBOL vmlinux 0xf3315307 fsnotify_add_mark -EXPORT_SYMBOL vmlinux 0xf333cebf blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user -EXPORT_SYMBOL vmlinux 0xf3395084 __inet_stream_connect -EXPORT_SYMBOL vmlinux 0xf3406d72 set_cached_acl -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf34938ea skb_append -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0xf3986b06 acpi_os_map_generic_address -EXPORT_SYMBOL vmlinux 0xf3a921a6 find_get_pages_contig -EXPORT_SYMBOL vmlinux 0xf3ae01dd inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0xf3be9efa buffer_migrate_page -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3f656fb tcp_init_cgroup -EXPORT_SYMBOL vmlinux 0xf412f9e9 mdiobus_write -EXPORT_SYMBOL vmlinux 0xf413803d jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep -EXPORT_SYMBOL vmlinux 0xf4593e04 fget -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf48e8037 sock_wfree -EXPORT_SYMBOL vmlinux 0xf48f3766 iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0xf492263e sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0xf4943b8c fs_bio_set -EXPORT_SYMBOL vmlinux 0xf4a4013a xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0xf4a5c213 avail_to_resrv_perfctr_nmi_bit -EXPORT_SYMBOL vmlinux 0xf4aaaceb account_page_redirty -EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4c4a6e6 pci_choose_state -EXPORT_SYMBOL vmlinux 0xf4caec85 pnp_unregister_driver -EXPORT_SYMBOL vmlinux 0xf4d2f187 agp_backend_acquire -EXPORT_SYMBOL vmlinux 0xf4d66b01 compat_sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0xf4e8a098 simple_transaction_get -EXPORT_SYMBOL vmlinux 0xf4ec2c85 i2c_use_client -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf51ae235 touch_nmi_watchdog -EXPORT_SYMBOL vmlinux 0xf51bf88b nf_hooks_needed -EXPORT_SYMBOL vmlinux 0xf536d22e acpi_set_gpe_wake_mask -EXPORT_SYMBOL vmlinux 0xf538ac7d tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf55a9089 inet_offloads -EXPORT_SYMBOL vmlinux 0xf55c4fca simple_unlink -EXPORT_SYMBOL vmlinux 0xf586db42 netdev_emerg -EXPORT_SYMBOL vmlinux 0xf58c3152 PDE_DATA -EXPORT_SYMBOL vmlinux 0xf597feb0 arp_send -EXPORT_SYMBOL vmlinux 0xf5987935 drop_nlink -EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set -EXPORT_SYMBOL vmlinux 0xf5a239bd cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0xf5a2691d netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0xf5a5a960 bitmap_start_sync -EXPORT_SYMBOL vmlinux 0xf5a99801 init_net -EXPORT_SYMBOL vmlinux 0xf5ad560b mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0xf5b10e67 acpi_install_global_event_handler -EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xf5d406bc nvm_unregister_target -EXPORT_SYMBOL vmlinux 0xf5e405e3 devm_gpio_request -EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command -EXPORT_SYMBOL vmlinux 0xf5ffdccf agp_generic_alloc_page -EXPORT_SYMBOL vmlinux 0xf60d7f0e __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl -EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton -EXPORT_SYMBOL vmlinux 0xf6824e27 netpoll_send_skb_on_dev -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf684632b devm_get_gpiod_from_child -EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xf693a145 irq_stat -EXPORT_SYMBOL vmlinux 0xf699984e kobject_put -EXPORT_SYMBOL vmlinux 0xf69d0e23 pci_enable_msix -EXPORT_SYMBOL vmlinux 0xf6aa7adb input_grab_device -EXPORT_SYMBOL vmlinux 0xf6b5e6b1 ata_std_end_eh -EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table -EXPORT_SYMBOL vmlinux 0xf6d69e94 mmc_of_parse -EXPORT_SYMBOL vmlinux 0xf6d7a0ef eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0xf6e1f23e tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf70ef0a3 dev_addr_del -EXPORT_SYMBOL vmlinux 0xf714f2a6 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0xf7584a9c find_font -EXPORT_SYMBOL vmlinux 0xf764868a udplite_table -EXPORT_SYMBOL vmlinux 0xf76762a6 start_tty -EXPORT_SYMBOL vmlinux 0xf77fd527 skb_trim -EXPORT_SYMBOL vmlinux 0xf79e97cd acpi_get_physical_device_location -EXPORT_SYMBOL vmlinux 0xf7c79270 vfs_rmdir -EXPORT_SYMBOL vmlinux 0xf7c97cdd i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0xf7d46f9e set_pages_array_wc -EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf812cff6 memscan -EXPORT_SYMBOL vmlinux 0xf823d342 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area -EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf830c0c1 freezing_slow_path -EXPORT_SYMBOL vmlinux 0xf84141cb __napi_schedule -EXPORT_SYMBOL vmlinux 0xf848ed03 unmap_mapping_range -EXPORT_SYMBOL vmlinux 0xf851109c scsi_remove_device -EXPORT_SYMBOL vmlinux 0xf879bb5d dquot_operations -EXPORT_SYMBOL vmlinux 0xf88e0ee2 acpi_get_table_header -EXPORT_SYMBOL vmlinux 0xf8985b7f agp_create_memory -EXPORT_SYMBOL vmlinux 0xf8d04f09 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xf8f24288 dst_destroy -EXPORT_SYMBOL vmlinux 0xf90f83cd pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0xf911ef3b tty_write_room -EXPORT_SYMBOL vmlinux 0xf9123bb9 kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0xf91dcccb free_buffer_head -EXPORT_SYMBOL vmlinux 0xf9288100 swiotlb_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0xf944c6be bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0xf95bf173 __getblk_slow -EXPORT_SYMBOL vmlinux 0xf990bb9b tcp_enter_memory_pressure -EXPORT_SYMBOL vmlinux 0xf99ef21c genphy_read_status -EXPORT_SYMBOL vmlinux 0xf9a1e251 sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9a70061 mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0xf9c00a54 __cleancache_get_page -EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat -EXPORT_SYMBOL vmlinux 0xf9cb4cc5 inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xf9ea76e4 sock_no_sendpage -EXPORT_SYMBOL vmlinux 0xfa37c39c nvm_dev_factory -EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa5a3d60 dm_io -EXPORT_SYMBOL vmlinux 0xfa5d91e2 d_make_root -EXPORT_SYMBOL vmlinux 0xfa65f8ba twl6040_get_pll -EXPORT_SYMBOL vmlinux 0xfa8ec00c skb_clone_sk -EXPORT_SYMBOL vmlinux 0xfa94b6f2 call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0xfaa69339 set_page_dirty -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xfae2c59b md_register_thread -EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr -EXPORT_SYMBOL vmlinux 0xfaf59a37 set_posix_acl -EXPORT_SYMBOL vmlinux 0xfb0443fb acpi_get_parent -EXPORT_SYMBOL vmlinux 0xfb070096 page_cache_next_hole -EXPORT_SYMBOL vmlinux 0xfb0e515b __devm_request_region -EXPORT_SYMBOL vmlinux 0xfb1268a7 pci_request_region_exclusive -EXPORT_SYMBOL vmlinux 0xfb154b01 ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0xfb24bed6 __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xfb28de91 fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0xfb53e9c7 phy_connect_direct -EXPORT_SYMBOL vmlinux 0xfb549a3e kmalloc_caches -EXPORT_SYMBOL vmlinux 0xfb578fc5 memset -EXPORT_SYMBOL vmlinux 0xfb64a9a6 blk_complete_request -EXPORT_SYMBOL vmlinux 0xfb691d2f gen_pool_free -EXPORT_SYMBOL vmlinux 0xfb69f63a elevator_alloc -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb6f1052 phy_write_mmd_indirect -EXPORT_SYMBOL vmlinux 0xfb7a2265 input_flush_device -EXPORT_SYMBOL vmlinux 0xfb7ae503 tcp_parse_options -EXPORT_SYMBOL vmlinux 0xfb80c7a0 acpi_walk_namespace -EXPORT_SYMBOL vmlinux 0xfb907a3c sock_no_socketpair -EXPORT_SYMBOL vmlinux 0xfb920e95 blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 -EXPORT_SYMBOL vmlinux 0xfb9f6efa netif_carrier_off -EXPORT_SYMBOL vmlinux 0xfba2e63e nobh_write_begin -EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock -EXPORT_SYMBOL vmlinux 0xfbbfdbcc igrab -EXPORT_SYMBOL vmlinux 0xfbc35ed1 bdev_read_only -EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbfe66fd scsi_host_get -EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem -EXPORT_SYMBOL vmlinux 0xfc117853 kfree_skb_list -EXPORT_SYMBOL vmlinux 0xfc1cd57b tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0xfc1f7a2c dev_mc_flush -EXPORT_SYMBOL vmlinux 0xfc33c962 kmem_cache_create -EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap -EXPORT_SYMBOL vmlinux 0xfc3dc3c0 ip_getsockopt -EXPORT_SYMBOL vmlinux 0xfc6008fc clocksource_change_rating -EXPORT_SYMBOL vmlinux 0xfc6e8e66 pci_scan_bus -EXPORT_SYMBOL vmlinux 0xfc734327 queued_read_lock_slowpath -EXPORT_SYMBOL vmlinux 0xfc872fd1 get_ibs_caps -EXPORT_SYMBOL vmlinux 0xfc992dd7 crypto_sha1_update -EXPORT_SYMBOL vmlinux 0xfcac0d40 acpi_install_interface_handler -EXPORT_SYMBOL vmlinux 0xfcb35584 __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0xfcb926cd kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0xfcd58bb3 udp_proc_register -EXPORT_SYMBOL vmlinux 0xfcd85211 generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns -EXPORT_SYMBOL vmlinux 0xfce6a0e1 skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0xfcea9754 give_up_console -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcecc806 sk_prot_clear_portaddr_nulls -EXPORT_SYMBOL vmlinux 0xfcf8624a vfs_rename -EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0xfcfc5194 pci_dev_put -EXPORT_SYMBOL vmlinux 0xfd017f84 set_pages_array_uc -EXPORT_SYMBOL vmlinux 0xfd377515 posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0xfd407894 __dax_fault -EXPORT_SYMBOL vmlinux 0xfd4e5b20 unlock_new_inode -EXPORT_SYMBOL vmlinux 0xfd5d42f9 pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0xfd76410e amd_iommu_complete_ppr -EXPORT_SYMBOL vmlinux 0xfd90e299 phy_ethtool_sset -EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xfdb1269f truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0xfdb6f614 da903x_query_status -EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be -EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0xfdf407e1 security_path_symlink -EXPORT_SYMBOL vmlinux 0xfdfb792f amd_iommu_pc_supported -EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0xfdfd6c90 add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe047ce6 acpi_enter_sleep_state -EXPORT_SYMBOL vmlinux 0xfe13c522 acpi_install_gpe_raw_handler -EXPORT_SYMBOL vmlinux 0xfe17047b kblockd_schedule_delayed_work_on -EXPORT_SYMBOL vmlinux 0xfe264502 generic_readlink -EXPORT_SYMBOL vmlinux 0xfe26fc7c nr_node_ids -EXPORT_SYMBOL vmlinux 0xfe282503 do_splice_from -EXPORT_SYMBOL vmlinux 0xfe2f32bb nd_device_register -EXPORT_SYMBOL vmlinux 0xfe3d7c30 thaw_super -EXPORT_SYMBOL vmlinux 0xfe562ab5 mmc_flush_cache -EXPORT_SYMBOL vmlinux 0xfe5d30e9 _raw_write_trylock -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe729b82 end_page_writeback -EXPORT_SYMBOL vmlinux 0xfe7beb43 d_obtain_root -EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 -EXPORT_SYMBOL vmlinux 0xfeb38e4f seq_write -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfee86620 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0xfef2c78f idr_get_next -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource -EXPORT_SYMBOL vmlinux 0xff772a16 dquot_quota_on -EXPORT_SYMBOL vmlinux 0xff7c8881 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy -EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0xffa355d1 __register_nmi_handler -EXPORT_SYMBOL vmlinux 0xffaf24d0 dev_uc_del -EXPORT_SYMBOL vmlinux 0xffb9eb89 mmc_can_discard -EXPORT_SYMBOL vmlinux 0xffc16017 __sock_create -EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function -EXPORT_SYMBOL vmlinux 0xffefd687 scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0xfff2b4dc fb_set_suspend -EXPORT_SYMBOL_GPL arch/x86/crypto/aes-x86_64 0x7060bf0a crypto_aes_encrypt_x86 -EXPORT_SYMBOL_GPL arch/x86/crypto/aes-x86_64 0xe409b491 crypto_aes_decrypt_x86 -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x13a65ecf camellia_ecb_enc_16way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x17bf48dc camellia_xts_dec_16way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x1a08ded1 camellia_xts_enc -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x47129015 camellia_xts_enc_16way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x7d54edc2 camellia_cbc_dec_16way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x7e87ef55 camellia_ecb_dec_16way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x8f185793 camellia_xts_dec -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x9e8086dc camellia_ctr_16way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x16061d06 __camellia_setkey -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x1636abdf __camellia_enc_blk -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x1da0e256 camellia_crypt_ctr -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x31bbe42b camellia_crypt_ctr_2way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x3e3d8b61 xts_camellia_setkey -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x50dc55b6 __camellia_enc_blk_2way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x7cdf017f lrw_camellia_exit_tfm -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x930f687f camellia_decrypt_cbc_2way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xa41a5ad3 camellia_dec_blk -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xe2b30b99 lrw_camellia_setkey -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xf4521fda camellia_dec_blk_2way -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x2e83b127 glue_cbc_decrypt_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x4aee7328 glue_cbc_encrypt_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x538a85da glue_ctr_crypt_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x8f02ac4d glue_xts_crypt_128bit_one -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x9b938e43 glue_ecb_crypt_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xbf60758b glue_xts_crypt_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x016a957f serpent_xts_enc_8way_avx -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x0c5a8af6 serpent_xts_dec_8way_avx -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x0ff3c26d serpent_xts_dec -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x3d742cfc lrw_serpent_setkey -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x606a8162 serpent_cbc_dec_8way_avx -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x65f91bd2 xts_serpent_setkey -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x75a97330 lrw_serpent_exit_tfm -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x79ff0b7a serpent_ecb_dec_8way_avx -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x9ae34b2f serpent_xts_enc -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x9e018632 __serpent_crypt_ctr -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x9f99663c serpent_ctr_8way_avx -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xa84ea33d serpent_ecb_enc_8way_avx -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64 0x19dc7881 twofish_dec_blk -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64 0x5e752773 twofish_enc_blk -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x14b55598 xts_twofish_setkey -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x1fd77fb1 twofish_dec_blk_3way -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x4c3862b6 lrw_twofish_setkey -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x61694b97 twofish_dec_blk_cbc_3way -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x61f89fce lrw_twofish_exit_tfm -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x8d75ab44 twofish_enc_blk_ctr -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x8e856922 twofish_enc_blk_ctr_3way -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xf2e80e9c __twofish_enc_blk_3way -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00534746 kvm_queue_exception -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00aaf935 kvm_disable_tdp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x01ccd216 __tracepoint_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x01f66d62 x86_emulate_instruction -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x02eb90bb kvm_get_rflags -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06207d9c kvm_scale_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x070f9719 __tracepoint_kvm_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x079a8a84 kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x080be3ad __tracepoint_kvm_invlpga -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x08fa9986 gfn_to_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x09f86037 gfn_to_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d4adf8b __tracepoint_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x10006c54 kvm_mmu_unload -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1104f4ac kvm_clear_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1108302f kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x114c3173 kvm_require_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x119d9e4d kvm_get_linear_rip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x146e2ed6 gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x15825045 kvm_vcpu_uninit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17c114b8 kvm_write_guest_virt_system -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1ddaf02d kvm_set_cr8 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1e0e15fc kvm_is_linear_rip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1e1f5e8b kvm_get_apic_base -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1e8d87d0 reset_shadow_zero_bits_mask -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20de5193 kvm_disable_largepages -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x21564cf4 __tracepoint_kvm_nested_intercepts -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x238e68b7 kvm_get_cs_db_l_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25099c26 kvm_emulate_wbinvd -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25b22156 kvm_valid_efer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x267a1f22 kvm_after_handle_nmi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27b35c8f kvm_irq_has_notifier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x288ed3a0 kvm_intr_is_single_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2a2bd62e kvm_apic_update_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c20da17 kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c78b8d4 __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2e7afe14 kvm_vcpu_halt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x317f9e6b kvm_enable_efer_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x340d1ed7 kvm_clear_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x34e72cf5 kvm_set_cr4 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3580e9be handle_mmio_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x374ae82d vcpu_put -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x383c4862 reprogram_counter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3cae0c97 kvm_set_msi_irq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e1f72e0 kvm_vcpu_cache -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e34eadb gfn_to_pfn_prot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f41073d kvm_set_rflags -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f4266f8 vcpu_load -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x414716b2 kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x41a88aef kvm_complete_insn_gp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x41e88735 kvm_mmu_slot_leaf_clear_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4325df6c kvm_emulate_cpuid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x439c3640 gfn_to_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x44046cb1 __tracepoint_kvm_nested_vmexit_inject -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x48f027ef kvm_vcpu_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4925fb3c kvm_read_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x501378fe kvm_set_msr_common -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x515f984a kvm_requeue_exception -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x51607f99 kvm_vcpu_block -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5161d575 kvm_mmu_unprotect_page_virt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x52a5ed8c kvm_before_handle_nmi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x53e92f39 kvm_get_cr8 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5ac6fe58 kvm_apic_write_nodecode -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5b69d0bd kvm_arch_register_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5bce56e3 kvm_inject_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5cadbaf0 kvm_get_dirty_log_protect -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d0ebda6 kvm_x86_ops -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x64020e10 kvm_set_shared_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x65560c3f kvm_mmu_slot_set_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x669da1fd kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6b181ee0 kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c1a786c kvm_set_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ea23add kvm_release_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6f75e3ea __tracepoint_kvm_write_tsc_offset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6f870c65 kvm_get_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x709cd8cb kvm_spurious_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x72a7ea50 kvm_vcpu_reload_apic_access_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x73ae496a __tracepoint_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x756d26db kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7723b2ad kvm_get_dirty_log -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x77ac977c kvm_cpu_get_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x783d0590 x86_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7aa64803 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7b9b4d55 kvm_write_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7e6f3228 kvm_fast_pio_out -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7f9ceaf6 __x86_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ff1ca84 __tracepoint_kvm_nested_vmrun -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x80483aad kvm_read_l1_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x808e3c03 kvm_lmsw -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x831327da kvm_max_guest_tsc_khz -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x83731789 kvm_emulate_halt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x844376c1 kvm_lapic_set_eoi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8493c981 kvm_get_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a23ff94 kvm_task_switch -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8b0d1e9f kvm_mmu_reset_context -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ce4f3ab kvm_enable_tdp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8da01274 kvm_get_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8e1cd06f kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8e493330 kvm_mmu_load -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x903c3fa8 kvm_apic_set_eoi_accelerated -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9093edb4 kvm_set_cr3 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x92c89669 kvm_read_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x92cbbd3f kvm_cpu_has_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9479c2dc kvm_is_visible_gfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x94cdb3ae kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96924981 kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x99c9739f kvm_inject_pending_timer_irqs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a216313 kvm_define_shared_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9adc9a82 kvm_set_cr0 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9b75fbed kvm_get_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9c3969f6 kvm_mtrr_valid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9d492ad2 kvm_init_shadow_ept_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9d68bbe6 kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9eca9877 kvm_init_shadow_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa0c828b2 kvm_release_page_clean -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa0ec3a0a gfn_to_hva_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1e482c8 kvm_requeue_exception_e -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa4d57013 __tracepoint_kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa6715740 kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa71386cb gfn_to_hva -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa8c7f1c1 kvm_read_guest_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa8d13f02 kvm_mmu_invlpg -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xac381584 kvm_arch_start_assignment -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xacc20755 kvm_mmu_slot_largepage_remove_write_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xacd48c93 kvm_mtrr_get_guest_memory_type -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xacf7f97c gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xae04fb0b kvm_vcpu_kick -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaf510797 kvm_inject_realmode_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb0f8582b kvm_cpuid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1cc6be5 __tracepoint_kvm_inj_virq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb27a059a kvm_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb326aecf kvm_read_guest_virt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb447b3aa kvm_io_bus_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb47d1f89 kvm_write_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb8d8a196 kvm_put_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb9b185ea kvm_write_guest_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba9ed435 kvm_mmu_set_mmio_spte_mask -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbcfc2969 reprogram_fixed_counter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbe86576e kvm_read_guest_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc1adc2cb __tracepoint_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc40eedd8 kvm_vcpu_gfn_to_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc56d75ce __kvm_apic_update_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc599bc18 kvm_max_tsc_scaling_ratio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc8b1641d __kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xca07ca16 kvm_emulate_hypercall -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcaf12824 kvm_vcpu_is_reset_bsp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcb67868d kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcebff202 kvm_arch_unregister_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcf0b30d5 __tracepoint_kvm_pml_full -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0459e67 kvm_has_tsc_control -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0b2727a kvm_mmu_set_mask_ptes -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd200af81 kvm_flush_remote_tlbs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd2fb60a7 gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd3da6c45 reprogram_gp_counter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd42fcf7b kvm_set_xcr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd534e0fe cpuid_query_maxphyaddr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd5c0ddab kvm_rdpmc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd93bbd46 gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd961f68a mark_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd971c22b kvm_queue_exception_e -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda66a97c kvm_arch_has_assigned_device -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe09d580c load_pdptrs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe14e78bb kvm_get_msr_common -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe2301e9c kvm_arch_has_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe36290e2 kvm_debugfs_dir -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe399592d kvm_set_apic_base -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe7a138f0 kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea1fba64 kvm_write_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xec0b5155 kvm_set_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xec31cf7c kvm_inject_nmi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xece2a95b kvm_arch_end_assignment -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef30703a kvm_find_cpuid_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf09d55f1 kvm_mmu_sync_roots -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf1b9cda7 kvm_mmu_unprotect_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2312a76 __tracepoint_kvm_ple_window -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2f286c4 kvm_tsc_scaling_ratio_frac_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf41e94f5 __tracepoint_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf46fd890 kvm_require_cpl -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf4b28c52 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf54625e4 kvm_mmu_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf7aadc61 kvm_mmu_clear_dirty_pt_masked -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf8f4642c __tracepoint_kvm_nested_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfbd95c91 __tracepoint_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfdb9c095 kvm_read_guest_page_mmu -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x0d2c6290 ablk_encrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x11ab7012 ablk_init -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x492af639 __ablk_encrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x7265515c ablk_set_key -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x828c40dd ablk_decrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0xcdf1447b ablk_exit -EXPORT_SYMBOL_GPL crypto/ablk_helper 0xee12c140 ablk_init_common -EXPORT_SYMBOL_GPL crypto/af_alg 0x11badcb8 af_alg_wait_for_completion -EXPORT_SYMBOL_GPL crypto/af_alg 0x1962613e af_alg_complete -EXPORT_SYMBOL_GPL crypto/af_alg 0x1daf27f6 af_alg_cmsg_send -EXPORT_SYMBOL_GPL crypto/af_alg 0x34ede7df af_alg_link_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x4c771335 af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x5a6fb1c3 af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x5b8b8de9 af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x6505302e af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x852cd76f af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x859fbb80 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0xac89ae3e af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x68213867 async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x5a407ed1 async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xdefb57a2 async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x1c019ecc async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x6f5e5c1f async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x06a4dba0 async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb48dde1c async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xbfd3e136 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xdf788739 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x3f6faf8f async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xc30d0177 async_xor_val -EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0x101f3169 blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0xa7923934 cast5_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x0dbe35b4 cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt -EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 -EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 -EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 -EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x462fc4e7 crypto_chacha20_setkey -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x4b081e11 crypto_chacha20_crypt -EXPORT_SYMBOL_GPL crypto/cryptd 0x079ca71f cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0x11e0663a cryptd_alloc_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x200e106f cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x231ba0d6 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x301019c7 cryptd_ablkcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x31b01bec cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x59c3b756 cryptd_free_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x95d29c52 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x9de28828 cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xf2286566 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey -EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey -EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table -EXPORT_SYMBOL_GPL crypto/lrw 0x86fa6f10 lrw_crypt -EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table -EXPORT_SYMBOL_GPL crypto/mcryptd 0x593b2fd5 shash_ahash_mcryptd_finup -EXPORT_SYMBOL_GPL crypto/mcryptd 0x72a4a36a shash_ahash_mcryptd_update -EXPORT_SYMBOL_GPL crypto/mcryptd 0x80be49cc mcryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/mcryptd 0x8347667c mcryptd_flusher -EXPORT_SYMBOL_GPL crypto/mcryptd 0x9157b0c5 shash_ahash_mcryptd_final -EXPORT_SYMBOL_GPL crypto/mcryptd 0xab4fa6d5 mcryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0xd4ea7983 mcryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0xd9d7d3f5 shash_ahash_mcryptd_digest -EXPORT_SYMBOL_GPL crypto/mcryptd 0xe6a68ca9 mcryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x1e5a450a crypto_poly1305_setkey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x429bd792 crypto_poly1305_final -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xc2b96f79 crypto_poly1305_init -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xfbb62e0a crypto_poly1305_update -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x7617ea6a serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt -EXPORT_SYMBOL_GPL crypto/twofish_common 0x39492976 twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey -EXPORT_SYMBOL_GPL crypto/xts 0xa094db72 xts_crypt -EXPORT_SYMBOL_GPL drivers/acpi/nfit 0xa46d1c08 acpi_nfit_init -EXPORT_SYMBOL_GPL drivers/acpi/nfit 0xa9665867 acpi_nfit_attribute_groups -EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x1c8984c7 acpi_smbus_unregister_callback -EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x87bd07bd acpi_smbus_register_callback -EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0xb9a141b0 acpi_smbus_read -EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0xe1372311 acpi_smbus_write -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x01c1e346 ahci_init_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0f6ca0bc ahci_print_info -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x14fd5823 ahci_dev_classify -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x21a4545a ahci_start_fis_rx -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2c56243b ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2d2cad59 ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2d445ff6 ahci_port_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x34d9ecba ahci_reset_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x39f8b188 ahci_stop_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6f30cf0a ahci_qc_issue -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7c03cdbc ahci_save_initial_config -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8a978f60 ahci_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x92e7d699 ahci_start_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9c42509f ahci_sdev_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa1a78bb3 ahci_host_activate -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbcf08080 ahci_reset_em -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc3980906 ahci_do_softreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc658dc70 ahci_kick_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xcf13e47d ahci_shost_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd785d2c8 ahci_check_ready -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xddd48da7 ahci_error_handler -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe2d591cd ahci_handle_port_intr -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf70a514c ahci_set_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x013e203d ahci_platform_suspend -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x11e9fca8 ahci_platform_disable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x1bfbca09 ahci_platform_resume_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x1ea7074a ahci_platform_enable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x318f3d01 ahci_platform_disable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x33a36881 ahci_platform_get_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3ac55f29 ahci_platform_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa6d88e2f ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb2273dd9 ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xcc211601 ahci_platform_suspend_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xcdc37bf0 ahci_platform_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xcf60841d ahci_platform_enable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xff91a2d6 ahci_platform_init_host -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xfa3b1744 __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x02ff9464 cfag12864b_isinited -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x0ecb2e5d cfag12864b_disable -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x305dc3c6 cfag12864b_isenabled -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x3389f926 cfag12864b_enable -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x9522a342 cfag12864b_getrate -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0xc48e9d95 cfag12864b_buffer -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x1d430069 __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x4ab31875 __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xcd340e7b __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xfa7caa78 __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1c10d131 bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1ed679b8 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x26a56f3f bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x351b27af bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3a4c8dd3 __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x405eea90 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4bfc48d3 bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x55acbc89 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x594376dc bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5a527e88 bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x765e6ba6 bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x870f919c bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8d9daed0 bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x917fb077 bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x98c35241 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9db96f53 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa43a54b7 bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xab4c86e0 bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaca30f40 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbfd29f95 bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc8cf3ae0 bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd4b2e686 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe1c52f5a bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfe9acefd bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x334d4bac btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3a6c5a4c btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7e64e2f1 btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xdf2ca391 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf7ce702e btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xfca7e44a btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x02c20cd7 btintel_hw_error -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2b7e0e75 btintel_set_event_mask -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3bb6e8ce btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x51ad24a0 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8b07cca5 btintel_secure_send -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8c124c30 btintel_set_diag_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa2dcc12e btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbfc8021b btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc21cad6a btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe54c6a00 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf4b1e3fa btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x06b4f725 btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x166d2bca btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x20ceff81 btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2ecf8be5 btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5fca49b1 btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x70042a79 btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7c55c84f btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8e2abea3 btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x931dd405 btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9f1e8c2e btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfd201a6e btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x4362b46f qca_uart_setup_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xe325b2c1 qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xa1d52e19 btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x148a3b1e h4_recv_buf -EXPORT_SYMBOL_GPL drivers/cpufreq/speedstep-lib 0x1b1f2bda speedstep_get_freqs -EXPORT_SYMBOL_GPL drivers/cpufreq/speedstep-lib 0x2b67f096 speedstep_get_frequency -EXPORT_SYMBOL_GPL drivers/cpufreq/speedstep-lib 0xd7ab2c0c speedstep_detect_processor -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x04773b60 ccp_present -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xadea02d8 ccp_enqueue_cmd -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x14e6eadc adf_exit_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1c962dfd adf_disable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2239abe2 adf_dev_start -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x22cfe1ca adf_dev_started -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x27bf06e7 adf_devmgr_update_class_index -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2830110a adf_dev_in_use -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x29196966 adf_disable_vf2pf_interrupts -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x294e254c adf_exit_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2dfeaa9f adf_update_ring_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x38e47b4c adf_enable_vf2pf_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4479c55d adf_init_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x44cfe40f adf_dev_stop -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4a5d2541 adf_dev_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4c12ea06 adf_response_handler -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x543e66de adf_init_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x558bc431 adf_devmgr_in_reset -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5621af82 adf_cleanup_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5a75130f adf_cfg_dev_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5de1a9e5 adf_cfg_add_key_value_param -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x60744501 adf_dev_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x613e0851 adf_dev_get -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x652a2e92 adf_sriov_configure -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x67ca03d0 adf_devmgr_add_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6b44cb8b adf_devmgr_pci_to_accel_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6f38d59b adf_cfg_section_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x767baec4 adf_disable_sriov -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x77336637 adf_devmgr_rm_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7c9177e0 adf_cfg_dev_remove -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8a14463f adf_disable_pf2vf_interrupts -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x96a53f2b adf_init_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9707e8e4 adf_enable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9fb6279c adf_dev_put -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa95b5aad adf_service_register -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xae8381e2 adf_iov_putmsg -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbb9001ca adf_send_admin_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc9e560b4 adf_service_unregister -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcc3b167a adf_clean_vf_map -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd10eb6f1 adf_enable_pf2vf_interrupts -EXPORT_SYMBOL_GPL drivers/dca/dca 0x01a33ab9 dca_unregister_notify -EXPORT_SYMBOL_GPL drivers/dca/dca 0x0f16ec37 alloc_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0x10448b28 dca_add_requester -EXPORT_SYMBOL_GPL drivers/dca/dca 0x31a2c8df dca_get_tag -EXPORT_SYMBOL_GPL drivers/dca/dca 0x3a9fa802 dca3_get_tag -EXPORT_SYMBOL_GPL drivers/dca/dca 0x8e3ae926 dca_remove_requester -EXPORT_SYMBOL_GPL drivers/dca/dca 0x915068d5 unregister_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0xac34ecec dca_register_notify -EXPORT_SYMBOL_GPL drivers/dca/dca 0xb242c074 free_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0xd393edd1 register_dca_provider -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x3ddc7009 dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x45a0c34f dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4802fb21 dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x9cfbd4a6 dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf6d1f185 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x5d0f3071 hsu_dma_irq -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x87788f6d hsu_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xcaab03f0 hsu_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x64f044fe vchan_init -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x8082dcf5 vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xc10912a0 vchan_find_desc -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xfaf670b1 vchan_tx_submit -EXPORT_SYMBOL_GPL drivers/edac/amd64_edac_mod 0xfbb1b149 amd64_get_dram_hole_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x002cfd73 edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0fab217d edac_mc_del_mc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1ea9b16e find_mci_by_dev -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x29785353 edac_device_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2be0f25c edac_pci_handle_npe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2d9b0ba3 edac_mc_free -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3d909573 edac_pci_handle_pe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x44f427bb edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4bf63d51 edac_mc_alloc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x78c0662f edac_pci_reset_delay_period -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9cac2ef3 edac_device_handle_ue -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa2bb570e edac_pci_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb6b214e1 edac_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb8309ec4 edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbd043117 edac_device_handle_ce -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc75f8b12 edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xccf64d47 edac_device_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xcd550711 edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe10902d3 edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe146abe8 edac_pci_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe6e2e1cd edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe7513fc5 edac_device_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf1e102ec edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x14878009 amd_report_gart_errors -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x1d34e996 pp_msgs -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x81d75507 amd_register_ecc_decoder -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xb30b7e56 amd_decode_mce -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xd3cc2686 amd_unregister_ecc_decoder -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x39440f35 fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x51d48996 fpga_mgr_firmware_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7a8b6a28 fpga_mgr_buf_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd599ec86 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xed2f777f of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xfcaaf777 fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x381708d6 bgpio_init -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xaa95323c bgpio_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x0ae0ce0b __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x819d4b40 __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2a6b55f4 drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9b959d94 drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb8145f89 drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x05876c69 i915_gpu_busy -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x08a7896d i915_gpu_raise -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x402468e9 i915_gpu_lower -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x500858b9 i915_read_mch_val -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0xe7237b0b i915_gpu_turbo_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x9e2383d9 ttm_dma_populate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xc2a2dd85 ttm_dma_page_alloc_debugfs -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xea64a106 ttm_dma_unpopulate -EXPORT_SYMBOL_GPL drivers/hid/hid 0x04a44520 hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0764945b __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0e181a2e hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0f11571a hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1b4319e8 hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2be8f1bc hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2ca5eaaf hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2dd8a03e hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2f069791 hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3b3d24cb hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3f169b28 hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0x42829bd3 hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5761cc9e hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0x59085a01 hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x664cc4cc hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x77b13a2e hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7cf4fbe3 hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8049cd34 hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8151911f hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x839101ac hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0x97933f32 hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa7c810e8 hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbebcd95e hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbf8b2da0 hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc643bacf hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc8717d63 hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xca6bc5f9 __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xce40dfcb hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcfad7da2 hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd79c39e0 hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf3ca46d0 hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf48f4b2c hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf727a285 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf8a3d583 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfb8e7ac0 hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfc7e7e3c hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x44058cbd roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x2969affe roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x6f76c44c roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x99793a03 roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xa539db1d roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xf1a141aa roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xf40643df roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0e5806ff sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2e98a9ee sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x62539c60 sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x71d84155 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9ea6e63b sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa47c1660 hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb3c2c9c9 sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc6715193 sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe3b0358d sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x60f4c7d7 hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x071c1701 hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x27f8629c hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2c2f7385 hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3048ecf4 hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x397a48e7 hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3a433757 hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x405e4003 hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x70e6cdc9 hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7a535874 hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xae451d91 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb929ac74 hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc1cfb6cf hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcb020abb hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcbbd6afb hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdca23933 hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xedfd03af hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfcfd6cc3 hsi_async -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x08bce166 vmbus_sendpacket_mpb_desc -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1143979d vmbus_establish_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1a25cd8a hv_do_hypercall -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x20af339b __vmbus_driver_register -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x25a0a3d2 vmbus_cpu_number_to_vp_number -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x358fafa5 vmbus_prep_negotiate_resp -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3737d9ea vmbus_open -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4d880306 vmbus_sendpacket_pagebuffer_ctl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x56213dbc vmbus_get_outgoing_channel -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x63223a1e vmbus_hvsock_device_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6a98fc6d vmbus_allocate_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7c335db1 vmbus_set_sc_create_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x85654dea vmbus_set_chn_rescind_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x86ff5fa6 hyperv_cs -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8a5d0f03 vmbus_driver_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x94b755e5 vmbus_sendpacket_multipagebuffer -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa7cf491a vmbus_recvpacket_raw -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa82afe77 vmbus_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc37c1dc8 vmbus_sendpacket_pagebuffer -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd15b9f3d vmbus_are_subchannels_present -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdb2f6047 vmbus_free_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe8bf183a vmbus_setevent -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xeadb5fcc vmbus_send_tl_connect_request -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xeb22b7b6 vmbus_set_event -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xebdf9bf0 vmbus_teardown_gpadl -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x5b5c0a7a adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xa4c07067 adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xc153867b adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2f64ddfb pmbus_regulator_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x35af21e0 pmbus_update_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x36fdb2ce pmbus_clear_faults -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3f332ab2 pmbus_check_byte_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x62a124ba pmbus_read_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x78a019de pmbus_get_driver_info -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x7fa95be3 pmbus_do_remove -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x95cdae02 pmbus_read_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa766344e pmbus_write_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa9a6739a pmbus_clear_cache -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xafbcc818 pmbus_write_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xcda2d872 pmbus_set_page -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xdb8b3374 pmbus_do_probe -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe177fc81 pmbus_check_word_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe5775081 pmbus_write_byte -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2954d109 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x53bc2697 intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb3ddaeef intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xeb58e3b5 intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xeb6ad148 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xeebb131c intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf77235a4 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x554294e7 stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x82e0db6c stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb9ddeb23 stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xecc338c3 stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf283ec82 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x3012c993 i2c_dw_read_comp_param -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x63002e9c i2c_dw_probe -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x7309ef07 i2c_dw_init -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x8e4a612f i2c_dw_disable -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xfb9a3c4d i2c_dw_disable_int -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0x93bec5ac nforce2_smbus -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xc3436734 i2c_add_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xd15e3571 i2c_del_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x195fb0af i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x8d87d5ba i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x0ef6bd3a bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x48e1d9bc bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xfed57825 bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x12a5f3e6 ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x1b2eef6e ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x3c903dbf ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x40a4bd51 ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x52684e58 ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x703b65ae ad_sd_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x744be837 ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x786fbbcb ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x8961b580 ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7687ff4e iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x87e1edcb iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x3b7927be ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xd63906f2 ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x7294bb28 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x849377ce bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x9d27c709 bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x1e16c49f adis_read_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x2f673a91 adis_probe_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x416207ed adis_check_status -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x432b3a3c adis_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x44c36af8 adis_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x5f882265 adis_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x6e48b57a adis_update_scan_mode -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x6ebadc41 adis_init -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x89102db0 adis_initial_startup -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xbe0dfd68 adis_remove_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xef0799b5 adis_reset -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xfbed5fdc adis_write_reg -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x058a8418 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x17d974eb iio_update_demux -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x186fecfb iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x19bef6eb iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1bdd1a94 iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1c405ac5 devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1ce831fd devm_iio_trigger_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2337370e devm_iio_device_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26e797e1 iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2af9a8fc iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x304b1a23 iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4d1275d2 devm_iio_device_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x519d41e1 iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x53ffa609 iio_scan_mask_query -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x55084d88 iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x560e6461 iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x585b2151 iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5f18f4c0 iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6db82791 iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x84bdf46f iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x915bada2 iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x91f024b7 iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x955b0cf2 devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xad77eba1 iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb08035dc iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcaeaa341 devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcde5becc iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd18d509c iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd79f0030 iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xeea7930b iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf4e72055 iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x8a8616f2 input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x89d59b9c adxl34x_probe -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x10e90b74 cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xc9bf9d6f cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xdc9f663b cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x3f5b5c61 cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x6ecfacb6 cyttsp_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x84f9f214 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x7a5acafa cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xef92aeef cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x9feb3e9a tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xa12d89fb tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xc0fc6ed3 tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xc3e4b1d4 tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x17c8bb0a wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x30e91759 wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x592772e7 wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x607abba9 wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x66b1bb1a wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6cd0c2cb wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7a825860 wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7dc4a6f3 wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa7a8edf1 wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xacd0bb37 wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbabb9770 wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf559996d wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x15906f39 ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1919927b ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x26ff6602 ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x49badea6 ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4bc16596 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x9a24c841 ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb35a0edd ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xbaf9305f ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xdc780053 ipack_device_del -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0deaa7a4 gigaset_isdn_rcv_err -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3953224f gigaset_skb_rcvd -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3bf0c6c3 gigaset_fill_inbuf -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x5ba2c67f gigaset_if_receive -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x865c686b gigaset_freecs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8caa11f1 gigaset_handle_modem_response -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x9bc665ee gigaset_initdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa3729ea9 gigaset_skb_sent -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa3c8bc00 gigaset_initcs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb490fb92 gigaset_add_event -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xbbd0fff1 gigaset_start -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd7814aae gigaset_freedriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe36e4d24 gigaset_blockdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe7162f62 gigaset_m10x_send_skb -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf49948b4 gigaset_stop -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xfa4650f1 gigaset_shutdown -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xfee967c1 gigaset_m10x_input -EXPORT_SYMBOL_GPL drivers/leds/dell-led 0x86fd1ffb dell_app_wmi_led_set -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1c6e1e91 led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x58195f53 led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7e8d11ab led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x89178732 led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xbc83b941 led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xd175a817 led_classdev_flash_register -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x08d47597 lp55xx_unregister_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x15a673b2 lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x184bccd3 lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x264a3715 lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x28bae643 lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3b4c322b lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x68a934b9 lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7a0b9d39 lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xdefabbdb lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe8354492 lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf782450d lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x0d086c60 __mcb_register_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x172a628d mcb_alloc_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x29322c3d mcb_bus_put -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x315f20cd mcb_unregister_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4c3207b7 mcb_device_register -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x544819bc mcb_bus_get -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x7c14a71b mcb_release_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8b32e4f6 mcb_alloc_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xab3aef3a mcb_request_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb94c53ad mcb_free_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc00ee207 mcb_bus_add_devices -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xcca44321 chameleon_parse_cells -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd61adc2b mcb_get_irq -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x021811cf __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0f0677b8 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x10e6a889 __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1154f7a1 __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15aa8e40 __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x174c2a29 __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2205bcf9 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3fc7cb7f __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x469f38de __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4ba51ecf __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5b2a89c7 __tracepoint_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d950f2a __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5e21030c __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5ed04550 __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6eef9654 __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x74ab7b0f __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x84efb763 __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8fe32879 __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x91f02667 __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x93f7fc02 __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa1de5277 __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa81bf581 __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7d964de __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbbace2cd __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc6673631 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8a2f711 __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe3de2ba2 __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe902838d __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec919105 __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeea27f46 __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfad1ec73 __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x128efd2f dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x436273eb dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x49c031e6 dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5a40ec71 dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x69e3dcdb dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x900b962c dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xcc9ccf9e dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xde9a3146 dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe45db387 dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aba7f5e dm_bufio_get_block_number -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9310ba06 dm_bufio_release_move -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9c256008 dm_bufio_get_device_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa1d2413a dm_bufio_read -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa448e19f dm_bufio_prefetch -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xafbda3f3 dm_bufio_new -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcbb1bae2 dm_bufio_get -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xee033901 dm_bufio_client_create -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x242beefc dm_cache_policy_get_name -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x3d3ae13a dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x76ea9833 dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7b75cb38 dm_cache_policy_get_hint_size -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x9b079357 dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa9f0b22e dm_cache_policy_get_version -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xc1095dee dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xdc1ca12d dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xf6d0e06a dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x264b6f06 dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4430764e dm_rh_region_to_sector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4541e8e7 dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x45ab972a dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4cc0cea4 dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7eebc8ab dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa68e1f06 dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcda87911 dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xe25903f9 dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfad9d53a dm_rh_get_region_size -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfc62ef4e dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x17c36f29 dm_bm_checksum -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42dbdfc3 dm_tm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49b35849 dm_sm_disk_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x55b4bd4d dm_tm_create_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x827a42f4 dm_tm_open_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9f624559 dm_sm_disk_open -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xafeda29f dm_bm_write_lock_zero -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd29923fb dm_tm_shadow_block -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf375d009 dm_bm_write_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf5455120 dm_bm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf7dd6225 dm_block_manager_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize -EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x09730fff saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x0a5ceb80 saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x11417aed saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x3358961d saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x384348ec saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x3c4b724a saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd48a1214 saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd54a38b7 saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe2f5f7f5 saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xffdeb349 saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x01b859c2 saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x26e3deb4 saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x3c60c0a4 saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x5c05fb6f saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x7e7c835e saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x95ffd136 saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xcfb40f15 saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x09070e2a sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0cc9a3cb smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0fe981b2 smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x141ba8b5 smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1ba2d258 smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x29944b38 smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4a44b905 sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5d7275e6 smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6a2ac8b0 smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x81029f76 smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x96ba983f smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9f051660 smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbddb0b6f sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcb94b7aa smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd1dc52ac sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd883e5e1 smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf6b140e7 sms_board_power -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x4cdab40f as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x85e0af2c cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x10a964b6 tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/media 0x0c04afee media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/media 0x3359450e media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/media 0x39fd88f9 media_entity_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/media 0x4138e7fb media_entity_get -EXPORT_SYMBOL_GPL drivers/media/media 0x515b4b9c __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0x53151b34 media_entity_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/media 0x5f452477 media_entity_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/media 0x77fae103 media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/media 0x7d1778d4 media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/media 0xb224121f media_entity_create_link -EXPORT_SYMBOL_GPL drivers/media/media 0xb2ab535d media_entity_put -EXPORT_SYMBOL_GPL drivers/media/media 0xc0f99305 media_entity_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/media 0xc7fb73ab media_entity_init -EXPORT_SYMBOL_GPL drivers/media/media 0xd0e32139 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0xe10c9a01 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/media 0xe540fd5b media_entity_cleanup -EXPORT_SYMBOL_GPL drivers/media/media 0xe5e26c51 media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/media 0xf960fd9b media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xf7beb9bc cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x034ac776 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x160dd73f mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2cc1c278 mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2f1f2670 mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3745330f mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4252af78 mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x69335ccc mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6d02bbfa mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6e33ce21 mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x76f18112 mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8485f16c mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa5cd155c mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xadf2073f mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xae4aec8f mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd1153964 mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe5eff4cb mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe9ad641e mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfcbbe872 mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfed8e989 mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0a6156a4 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x10e59ee2 saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x159a104e saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x235dea47 saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2d36ed22 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5940c37e saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x59b2560d saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5d2b9b5d saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x61c785e9 saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x627bcf58 saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x668677bf saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x677e86cf saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x72fcb37c saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8662cfca saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa45e99a8 saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb0c9291e saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xba17d8b9 saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd6f2bd92 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf56426f5 saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x6881d891 ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x6d1625a8 ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x86d67b6b ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x8d925101 ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xabd12c38 ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd5d4fc71 ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd65d4e98 ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x97d77cd0 radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xd266f272 radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0af59cc0 rc_close -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x207409ef rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2bdfc3e7 rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x35ecfef0 ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x37c163e3 rc_map_get -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x39d3f5ee ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x55501d8b ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x662f5e7b rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x669e7f1e rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x70faeafd rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x723ea718 rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x76ba8568 ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9d9127cf rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb99c1e67 rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc28901b1 rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc53a4cd6 rc_open -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe149589a ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xee886d61 rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf0981aec rc_repeat -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x8c37dedc mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xdd57972f microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x7865cc4e mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xf5a0b264 r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x00a4479d tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x56c46aee tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x0fc4e180 tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xd4cd628d tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xb9fab7ee tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x692bd4e8 tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xd4c5602f tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x3d4bca71 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x6f76f00e tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xa2dd79d8 simple_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0ab1d519 cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x18c44065 cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x19433ef7 cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x26012613 cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x39fab695 cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x45b1d82e cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x51240221 cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x630c291c is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8d24c213 cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8e3a52d3 cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9cf92695 cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa96cf0e3 cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xaf7c5797 cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb0d84b1f cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb211988c cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbffe3021 cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcd8027b8 cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd0f6866c cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd2868677 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf1e7108c cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x6de9e7ad mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x24451545 mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x19488516 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1dddafb9 em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1ed96b15 em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2ebea6ea em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3de44708 em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x40cba1ff em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4578a063 em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x48c86830 em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5e576593 em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x86a59306 em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x90a64ed8 em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x98d2663b em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdb0f0246 em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdd0f0788 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe92a0592 em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf246a012 em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf28a112b em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf2d1a6be em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x482d269e tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x48747a3c tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x51dbd989 tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xfd24d8f3 tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x41785cd4 v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x5e9d5ee4 v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x6eb260bd v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x79e0ba9d v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xa719b6d4 v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xe74b6def v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08982d59 v4l2_match_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x259888d1 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x998e269d v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x15fb79b6 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1996f414 v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2d12407d v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4d52018c v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x57788815 v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5ab52190 v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6d317c94 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x77eaf396 v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7aa7cf4b v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7b2becca v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x854bfb4c v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8713155f v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x88390ee7 v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xabc466d2 v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xad204867 v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaf934c61 v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb205e5a1 v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb36b1f0a v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb41bbe11 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb627663d v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc137a276 v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdc5e360c v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdf6d81be v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xeb045513 v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xede5621d v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xefe54683 v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf721f148 v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0fc37bd8 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x156db480 videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x20b26cc0 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x294dfca3 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3a3d9004 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4447c79f videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x51237f0b videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5c14d3f3 videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8501b94e videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x87cce079 __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8f256edd videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9f0e4a6b videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa548b5fa videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa98a1283 videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc5bc6c48 videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc90885e8 videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcad94cb8 videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd23e307c videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdac22ded videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe366d61e videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe46adcf5 videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe8488455 videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xec8cd4f9 videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf4e42f7c videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x3b1bc5de videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x9e464c57 videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xb759f790 videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xf9c80a26 videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x0192e15b videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x2f6ab048 videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x6baafc41 videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x00d2aaba vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1cce3d9e vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x20f3c5da vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x21b78735 vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x4c1e9439 vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6137645e vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x8ff1250c vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x9dcbfd32 vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa36f8e95 vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa78148d9 vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xce5410ce vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xdb25bbd9 vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe1855c2c vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe4f8aafb vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe54dd164 vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf2b24b33 vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf5017414 vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xfc41ca3d vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x7b839a64 vb2_dma_contig_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x993b17ab vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x325c5904 vb2_dma_sg_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xbe163dc8 vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd30ec30f vb2_dma_sg_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0xd090b3b8 vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x00122264 vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0a04b31e vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x216dab30 vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x36e6bf58 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x384a90f3 vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3b95a951 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3fc8c643 vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x446c88c4 vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x462a0bd8 vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x49f95734 vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4d3f44ef vb2_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5218b13c vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x59545378 vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5aa976d9 vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5d330a65 vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x74e035ee vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x781584e8 vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7f9bdd2a vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x864c1a21 _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8deffcbd vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9b648552 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa2ac128a vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa55d3170 vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb59d33fe vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbb6c69c8 vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc328159f vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xcd25e65b vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd79167f4 vb2_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd9919e0a vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe241efaa vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xfb6b9c97 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xfcbb36a7 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0xecdc2682 vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x02027cec v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x04231dd2 v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x133adfc4 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x15494d1b v4l2_compat_ioctl32 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1801d2ec v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1ef3a428 __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x226bb82b v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ab9d732 __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3a71c54d v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4d6b43d9 v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e73fa8d __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x555fcdb6 v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x562a17e1 v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x72be236f v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x73840e6f v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74a017c5 __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x776916f4 v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x77b1953a v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7b49d18b v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7bfda7d4 __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x86f5b0cf v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x87f126fe v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8c8149f9 v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9b81167e v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9f1c5781 v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa4bcad3c v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaca2544a __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb1b34ceb v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc121cd70 v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6429d8b __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc662c663 v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdc40c868 v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdf0a46c8 v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf153ce55 v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf64903c0 v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfb109fbf v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfe6e1bc6 v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x3e0f6d6a pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xe345c2fa pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xeb9b2431 pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x03751f85 da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x09ea26c8 da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x41f88ff7 da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x493dd0ce da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x8c4496e3 da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xdce2316a da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xf89449e1 da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x0bcf8aaa intel_lpss_resume -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x2380b528 intel_lpss_probe -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x2d35d506 intel_lpss_prepare -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x3c44de18 intel_lpss_remove -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x59171cb6 intel_lpss_suspend -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0140d4a3 kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x09a823da kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x18cfd08c kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1a1a0b38 kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1c59d385 kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x83c9157e kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xbda005b8 kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd79fb9f2 kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x1861ccc7 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xb512f6b5 lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xef712820 lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x10e319fc lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x480c7bb2 lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x63ccae34 lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x66c0a539 lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7d26eca0 lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x9fa79b93 lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xef42f3d9 lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x638d58d2 lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x76538f57 lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x79421be9 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x23f7d8fb mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x634d93db mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x714266b3 mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x8420f3df mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x9c45b471 mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xd2aeabf8 mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0248fd3d pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x13217bbc pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1a99356b pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3a108895 pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4f3c8450 pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8df05486 pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x92a8a8ac pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9ae5203a pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb96c212a pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd12468d6 pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xfdd6e509 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x40b138b7 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xf376473b pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x06bae089 pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x71975d50 pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x94c335bb pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb2920b06 pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xc6e66047 pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x03dffac5 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x04c85e6f rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x215be8e0 rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x263370a4 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x50399b3e rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5e3e4be1 rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x613fd956 rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x639f222d rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x6e89dbf9 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x76a357bd rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x80bc3252 rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x84376a0b rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x942588a6 rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa05d21c2 rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xac5c7153 rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xaeaef369 rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb7a74172 rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc4f4e1ab rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc5638711 rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd3f86f92 rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xda8dbbe3 rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe0f9a585 rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe576c7d2 rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xef05ad3b rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x085bee25 rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x0e23aa2e rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x1346ed7a rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x270f6171 rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x2f7f1f0e rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x44c186fb rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x4982b94e rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x70c28a30 rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x829168ae rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x89385928 rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x97a27fad rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xba377b3f rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xefd726fb rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x03053b1d si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x06ffbf18 si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x126739f4 si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1343799e si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x13cdf578 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x16b254c3 devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x24dd2989 si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3e831b4e si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x456c9ede si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4a729b36 si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4bab3d71 si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x53f458dc si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x54c3b3c6 si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5929a51b si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x618ae173 si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6b5408e8 si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x82d78678 si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x846c8272 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8c8e20f1 si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x91957b86 si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9656fe61 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x97517e89 si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x98c19b62 si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9eae2771 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa33bb469 si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa5b160f5 si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xaeb74e5d si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb89a2284 si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbc04a151 si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbfa5b370 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc72ba95d si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xca96ecfb si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdeef2a8d si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xee8dda05 si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x80245a03 sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x86e52f20 sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xa77803c0 sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xb0afceb5 sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xdbfffc92 sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x41b752c9 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x57055323 am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x627ce40b am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x6f30fda0 am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x1e27d2cf tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x83d1adbe tps65218_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x9a6d82d0 tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xb1488a7a tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xe0f01604 ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x1167ac55 bmp085_regmap_config -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x3a77f8dd bmp085_remove -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x4ad9bcb0 bmp085_detect -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xbd2fc736 bmp085_probe -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x32125269 cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x438d49fc cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x4eb2ab75 cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xf945422b cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x07f702ea enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x223d2797 enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x428e7fd8 enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa820ff66 enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xae489886 enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb9bea04c enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd83caddb enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xff7d71cb enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x0b447383 lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5c3d43ea lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6ce3151b lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8e4b061e lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa7b9325f lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa91d8db2 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xbc6ecb5a lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xcf7fc018 lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x045d3947 mei_deregister -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x097a120c __mei_cldev_driver_register -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0e22c006 mei_cldev_disable -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x2003a656 mei_cldev_get_drvdata -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x32cda430 mei_cldev_enable -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3ab530a7 mei_cldev_register_event_cb -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x47cba84a mei_irq_read_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x4c2a0c67 mei_irq_write_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x4f133d37 mei_cldev_ver -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x5838bdac mei_cldev_enabled -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x5bf9d6b1 mei_reset -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x622cec6f mei_start -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x719e0832 mei_cldev_uuid -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7ae85927 mei_stop -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9344a014 mei_cldev_driver_unregister -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x965b2df6 mei_cldev_send -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x96677c45 mei_cancel_work -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x98aa4304 mei_register -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb2e49cf3 mei_restart -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb890795f mei_hbm_pg -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc1ea4f03 mei_device_init -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc5f90c71 mei_write_is_idle -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xcd233116 mei_cldev_recv -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xcf765e10 mei_hbm_pg_resume -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe8dd0278 mei_fw_status2str -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf5fb57d0 mei_irq_compl_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xff4f11cc mei_cldev_set_drvdata -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x6a5d0879 cosm_register_driver -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x6d020652 cosm_unregister_device -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x9da4bfaa cosm_find_cdev_by_id -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0xccd4e4f3 cosm_register_device -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0xe460a64d cosm_unregister_driver -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0x68b1913a mbus_register_driver -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0x6f03f663 mbus_unregister_driver -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0xcbb8faa7 mbus_register_device -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0xe8a14c68 mbus_unregister_device -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x12bc435c scif_register_device -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x719079f2 scif_register_driver -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x8e76ebe6 scif_unregister_device -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x994cec6f scif_unregister_driver -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x005845c6 scif_poll -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x0ada38ce scif_fence_mark -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x12fd38ef scif_bind -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x1ba7469b scif_register -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x1d3d6c78 scif_fence_signal -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x21de9bd0 scif_get_pages -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x23e61c5c scif_open -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x31d4b005 scif_vreadfrom -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x31f517c5 scif_get_node_ids -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x4286f3f0 scif_accept -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x42bbf196 scif_connect -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x4b816429 scif_unregister -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x71183db6 scif_recv -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x8482bc5e scif_register_pinned_pages -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x916e717e scif_vwriteto -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x920fc45a scif_client_unregister -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x94e2dc7e scif_close -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xa6eba8f7 scif_pin_pages -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xb1cb790d scif_send -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xbc1dd1f8 scif_put_pages -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xcc73521b scif_fence_wait -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xdde12774 scif_client_register -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xded4a8ab scif_readfrom -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xeaa37382 scif_writeto -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xeeb5dfb4 scif_unpin_pages -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xf9c8d3c4 scif_listen -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x611799db st_register -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xe73dfb4f st_unregister -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x0f6680ea vmci_qpair_produce_buf_ready -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1152e318 vmci_qpair_get_produce_indexes -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x13aa5a5d vmci_datagram_create_handle -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1872c7af vmci_qpair_produce_free_space -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1a195863 vmci_context_get_priv_flags -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3ef56cd5 vmci_qpair_alloc -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4b630dac vmci_get_context_id -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4ba5c46b vmci_qpair_peek -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x50a255c9 vmci_doorbell_create -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x612df9ae vmci_qpair_detach -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x677c36d0 vmci_is_context_owner -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x69ef87ff vmci_datagram_destroy_handle -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x6cc1a5f7 vmci_datagram_create_handle_priv -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x722d488a vmci_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x7ca08f16 vmci_qpair_peekv -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x7d540b50 vmci_qpair_consume_free_space -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x81d61eef vmci_qpair_dequeue -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9624c58c vmci_datagram_send -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9973b9b2 vmci_qpair_consume_buf_ready -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9d16164a vmci_send_datagram -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xad04f283 vmci_qpair_enquev -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xbbb2168d vmci_qpair_dequev -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xccbb53d1 vmci_doorbell_notify -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xcf5ed7ef vmci_event_subscribe -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xdac94780 vmci_qpair_get_consume_indexes -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe67343c1 vmci_qpair_enqueue -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe7e7c107 vmci_doorbell_destroy -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0b2e0db1 sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0f8f1985 sdhci_send_command -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x11a7c64f sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x497c20f8 sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6a4f9013 sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7667cab1 sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x78da5777 sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x93541a41 sdhci_enable_irq_wakeups -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb61b4ee5 sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbacf8e10 sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbb3b3ce2 sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdc2cf79d sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe1b16357 sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfa6168f6 sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x14388b4c sdhci_get_of_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x618ceba6 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x96223113 sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xaf137b4d sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb3f3d5cb sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xbf1f6a9e sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd056ca22 sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe1bb2071 sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf18af401 sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x539a6f37 cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x6cb34adf cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xae844aa1 cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x36b10bf1 cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xbb1a8fa7 cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xc548c477 cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xddc99b44 cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x4e56b4ec cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xbb970b1b cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xdb35f90c cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x06dc31ea mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x09c4f33c mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0badb910 mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0df9e2ac mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1676ec89 mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x18754629 register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x19139ce5 mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1a12bd14 get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2e3beb82 mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x30c501ea deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x34228aed mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3fff0ca5 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x41ff7c69 mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x489b2800 mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x49fe821d mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5edeec59 mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x639c8f3a mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x66455ab6 mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6d08a6aa mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6dea4d2b mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x711428bd put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x74a7dcb3 __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7a07afe4 mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7cf3fabb get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7e7931aa mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8fb3bf90 mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x978f2aad mtd_erase_callback -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa57a79cc register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa6ab6fb0 kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa9599ad2 mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb118fd75 __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbf2673fa mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbf9cc12c mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbfa0ed79 mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc04134d8 mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc1b7a1f8 mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd6fdf134 mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdd722f1e __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe3a9cd4c mount_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe6500303 mtd_is_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfd4c809e unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xff0d4418 mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x1808d97c register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x2ea527c4 deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x33e9e3ed mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x6f6787c3 add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa8bdb49a del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x69da46d3 nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xea26696c nand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x2296786c sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x097c4330 onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x4012f659 onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x644dcb70 spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x11533990 ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1776749e ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x285c9ff0 ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4ba289c2 ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6166743d ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x75256e83 ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9a3a5a0f ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa5ebce80 ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa61c7c76 ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcc4bc26d ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd36d3e16 ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdea81025 ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf236e565 ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf3be8d7c ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x79307ce1 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x7a7742f1 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1c5e2e8b alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x3fa5827a c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x5a7b0783 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x7a8d6e89 unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x7bb2c4fd register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xffb5bedb c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x03a9fb09 devm_can_led_init -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0518b7d4 can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x182352da alloc_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x36a1d27d can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x48065103 open_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x4c3c5e61 safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5ac3e7e4 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5ac497d2 register_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x780e3969 unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7e894cb2 alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x87c8ddd1 close_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x8a355054 alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x8fd51552 can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb9c4c879 can_led_event -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xd372e173 alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe36b3196 can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe7cfcba4 free_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xfc607fa4 can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x4913f754 alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x71726081 free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x74fdc232 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x882412c1 register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x08cafb8e register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x46b85dcd free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xb18867fd unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xcc004636 alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00c28efa mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0212f6fd mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02d8ba95 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04ed4a20 mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07094e18 mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0987c534 mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a0e23b4 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ac6326f mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b21946c mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c780c3e mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d3ab052 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d990507 mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e96b754 mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11376fc8 mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x117f2164 mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1324288e mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16620aca mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x185931c1 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19185adc mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x212ed967 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x227ef3cc mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x241faffe mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27803c7c mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2cae0b54 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d90d908 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f906ce4 mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33cadbef mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x348670ce mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x371a73f8 mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a66bb86 mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b59c4b7 mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3bb088d5 mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f8bb5a1 mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3fa51c12 mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46b160ed mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48c0a5e7 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d2ebd42 mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x536f04c4 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5472855f mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55f63973 mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55ff3e58 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x586853c3 mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5cc1db53 mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f8ffdf1 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61c687c9 mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x629d47c8 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67453140 __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67abf085 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x682e122d mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6861062b mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ccb8492 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6da230ec mlx4_fmr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e3e0c6c mlx4_fmr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e79c9b6 mlx4_fmr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f62bbc0 mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74a03e20 mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76088212 mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7827663d mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c04f758 mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7eeaa2bb mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f990035 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x882a6c64 mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90f6fecf mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92f69849 mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x936bf98b mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9689bbe6 mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96b191de mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9830fad1 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a2623b5 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9bc8e77b mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d3712af mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0d8eab0 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa69306d8 mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9dbc9f7 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae155605 mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaed98d44 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1e523ca mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2c69da9 mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb945373c mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb951b5a4 mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb21023e mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc20c710 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0347fdf mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc459efb4 mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc90ec8b6 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9e6661a mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb9558e3 mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccec252f mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcea4702d mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3a7beaf mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd417ce41 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5e98ac1 __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd609b2d7 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd893c0df __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9d900a0 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9fc62e3 __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde2d24c6 mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdeb47e28 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdebca81d mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe00a817c mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe07b16c8 mlx4_map_phys_fmr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1a4d106 mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe32f80a6 mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe52847fd mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe550f4d2 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8407c09 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed1e4106 mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeee191f5 mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef068c92 mlx4_fmr_unmap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeffc863a mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0bd5f6b mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf144765b mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf16b4ded mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4c9f2ab mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6550de2 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf90eb781 mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa02aa3e mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfaa85994 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfad51f4e mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbc72eea mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbd3b087 mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc55b051 mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfce1e7dd mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfdd7192a mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09443846 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0cf2aaec mlx5_core_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1035e9a7 mlx5_core_create_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10d58d3f mlx5_core_eq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17662b8c mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b7a5b8b mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ba6ad04 mlx5_query_port_proto_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2811162c mlx5_core_destroy_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x388eec03 mlx5_core_xrcd_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38c6033a mlx5_query_port_proto_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4588a8c9 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x465c9386 mlx5_destroy_unmap_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e192af2 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f473cfe mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66e7be58 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bd1ec16 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e4fead7 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78b06137 mlx5_set_port_proto -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8194ec9f mlx5_query_vport_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85faaa7d mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8cb7b788 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ccd031e mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e0177b6 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96cd8b05 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa59339eb mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa82a4837 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacccb8b2 mlx5_core_mad_ifc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xace60065 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaff7ef98 mlx5_query_port_link_width_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb41c18e2 mlx5_core_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7e29a9a mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc419db2b mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5efc29c mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3436eec mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6974627 mlx5_core_page_fault_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6ac138e mlx5_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd84d55c4 mlx5_query_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0756cf2 mlx5_create_map_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe12720b2 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3be5911 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef52f5b8 mlx5_core_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5921c3f mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5ef4b8d mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfef17349 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffaf47f8 mlx5_query_port_proto_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x5e28947e regmap_encx24j600_spi_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xac144314 regmap_encx24j600_spi_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xed3abced devm_regmap_init_encx24j600 -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x209056df stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x3e1bed87 stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x7514d175 stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x8b0ead97 stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x1464171f stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x32c8f0a7 stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x3b13a1de stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x3e26d56b stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x0b5a9370 cpsw_ale_control_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x0f55ce95 cpsw_ale_set_allmulti -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x10d8a292 cpsw_ale_add_mcast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x166111f8 cpsw_ale_start -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x2c930017 cpsw_ale_add_ucast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x3eb5a590 cpsw_ale_dump -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x73f379e8 cpsw_ale_add_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x7ddb5cd2 cpsw_ale_stop -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x9409e15b cpsw_ale_del_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x96f67fc5 cpsw_ale_control_get -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x9e91f07d cpsw_ale_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xbb457740 cpsw_ale_del_ucast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xbd04bb51 cpsw_ale_del_mcast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xe5c41cd5 cpsw_ale_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xece795e4 cpsw_ale_flush_multicast -EXPORT_SYMBOL_GPL drivers/net/geneve 0x9ecca854 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/geneve 0xfc9498af geneve_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x0f8ed97d macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x16321200 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x5ecd5898 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x894a6da3 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvtap 0xf020eeea macvtap_get_socket -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1062d995 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x24962c67 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4cc16398 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x57d8bd9e bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6bae1ccd bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6cd5e758 bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x804cee01 bcm_phy_enable_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc77b1a13 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xca2532f7 bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xea3b9941 bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x611e6a98 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x672c9d22 usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x9cb744e7 usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xd0674adc usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x34d79e1e cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x51a0286c cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7b78e836 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa089d175 cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc329a0c9 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xceedc2fa cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe0926edc cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe57cdef5 cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf2dcfb8e cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x0962f02e rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x140c8008 rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x27763069 generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa2aeccc0 rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xc321d591 rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xed56a69a rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x01ad69e6 usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x143688bf usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x17fc2e24 usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x185bfa2b usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1ad2e18b usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2796a7d8 usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x290e2830 usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2f00c5c5 usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x30834f43 usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x315af2eb usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x36f250a6 usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x43669d54 usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x516b5ac6 usbnet_set_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x541c53f5 usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5791045e usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x72e39bcc usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x76213d0a usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x80519980 usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9824f7a3 usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9b901fd7 usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa0594b34 usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa540eb42 usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa8aa3b96 usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xaf057fe3 usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xafd8c070 usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb00a41e8 usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbefc1965 usbnet_get_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcd9b640d usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd79b254e usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe3ebce84 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf4cf72f1 usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfa66fa9b usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x1134f77e vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan 0xeaa811a7 vxlan_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x27f675e3 i2400m_init -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4c89f32b i2400m_netdev_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x536705f5 i2400m_tx_msg_get -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5c7926cb i2400m_rx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x65f6b486 i2400m_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x70ccadbe i2400m_dev_bootstrap -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x77e1f2bf i2400m_post_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8b0140e8 i2400m_tx_msg_sent -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x90089a7a i2400m_tx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x97ec0448 i2400m_is_boot_barker -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x9895ab23 i2400m_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb88f0068 i2400m_dev_reset_handle -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc89ff4b5 i2400m_pre_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xcc0fb785 i2400m_release -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xec68d4ce i2400m_error_recovery -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xfbef1dd0 i2400m_cmd_enter_powersave -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x2322a3ef cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x8a16dc21 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xbe43465a cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xf9ced4e9 cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x301b020c libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x45bd1c07 il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x50410f8d _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x9e005d65 il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xa4306919 il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xe170299f il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x00fa4da4 iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0164f5b9 iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0680b61a iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1b074767 iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1c430f42 __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x22244ff5 iwl_nvm_check_version -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x22263b1c iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2495f32d iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2ceae8da iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3315eb1f iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4f277ff3 iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x512a2413 iwl_init_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x543dcde8 iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x599dad18 iwl_write_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5b453a18 __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5ee5ab54 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x86fd2b74 iwl_parse_eeprom_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9a771986 __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xaa53c2fa __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb5e5289d iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb8979af3 iwl_notification_wait_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xbcd590dc iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc4a8fc91 iwl_notification_wait_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc6472194 iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc958c7e3 iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xcfb53346 __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd49b4b3e iwl_remove_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xda63cdd1 iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe932aa9a iwl_opmode_register -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xeb0a3f64 iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf263c1ab iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x25a6b705 lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x3f5c0bd2 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x548f5048 lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5dbbd5b9 lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x703d9a94 lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x830c9a5f __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x8d12bde9 lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9d117012 lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa8e70caf lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa990a2fe lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc2a25f39 lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xd100ac36 lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xd27d5ffa lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xdcc665db lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe65212fc lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xfaa0ed3a lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x05a24c25 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x1c7f57f5 lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x2bb2c1bd lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x2e00adfd lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x4fa516f3 lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x789e3ecf lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x8bc55d57 __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc897bba5 lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x066dfd01 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x14185958 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x15599936 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x1cbab4d2 mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x33d5d902 mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x4187158f mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x5322c4e8 mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x61652cd2 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x64786c9f mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x658cc89d mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8403082c mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8b8e9c81 mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa1f72f21 mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc37fba7a mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc462f3d8 mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc94c9740 mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xe443492c mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf0098729 mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xfbf1177f mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x1808fc1e p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x2d9fef66 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x39e35a8c p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x4f58f2af p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x5a7f753d p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x7f908f80 p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x97e2692d p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xcb56a5d6 p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xecb82e1f p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2fc62626 dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x362d29c1 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x704f43bb dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc0dff3bf dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x01a97d9a rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0bd9d3a8 rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x17d4169b rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2786ddf8 rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x289c32c7 rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x28df0de2 rtl8723_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x474b5089 rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x51fb9436 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x59b297d9 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5f671606 rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x63dd6f3f rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x66223608 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fba2b45 rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x75b1d90e rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7e5f12d9 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x804ee37d rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x85b0f8b3 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8935c414 rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x99189e6e rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x99690d31 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9fe12b07 rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb5b896ab rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd1c6cf92 rtl8723_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe97c44cf rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf231de9e rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf3a3914b rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf57fff88 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x07bc986b rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x07f8e473 rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b18b0a4 rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1ea384a7 rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x210abc5f rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x28d7c8af rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x33809a58 rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4578adfb rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4a25cb67 rtl_dbgp_flag_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4a52b15c rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5b92b21b rtl_attribute_group -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5bd82bb5 rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6345ee18 rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b4de810 rtl_lps_change_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9535a317 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xafcdc668 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbe8795b3 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbea2be54 rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xecfa12ae rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf5b1c28c rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfd04fcb6 rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0b982441 rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x15e7083a rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x9e7f8bc6 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xa5d4577e rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x01b6e6de rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x09bdded4 rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x15c64466 rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x17373eb5 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x19062b76 rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x23fe4ade rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x26f38b56 rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2aa0c236 rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2c33a4d8 rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2cb65fd1 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x373dbdb8 rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4b0c72f2 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4fd59323 rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x579e9d6d rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x657e8f53 rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x66b54bab rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6ae73141 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6d94d91d rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x74b60c6b rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7a049594 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7ae50398 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8195c233 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8f23231a rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9277808f rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x962d5f57 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa27b8698 rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb2ec7ff1 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb49c5f64 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbb581d7f rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc568912d rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc5c1ee22 rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcb81d51b rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcbaf5b1f rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcf196907 rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe0b1dd23 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe321b0fa rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf20194b1 rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf8aee5a2 rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x03d78335 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2681245c rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x602123b1 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xaa6dee12 rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xada269d3 rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xaf565f30 rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xb6e3c818 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xbc8e4dcc rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xd5be8192 rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xec3dbca9 rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xf0fe5b9b rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xf8ce294f rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xff05dd02 rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x091aa749 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x12ef96ed rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x16e8bb77 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1967deb0 rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x210d9a74 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x25152ebf rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2fc26d89 rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3928caa9 rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3a05954a rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3e87e530 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x404f975a rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x433dfefa rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x487b2a3b rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4b014cc7 rt2x00mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x50935aa0 rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x50ffd17c rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x54542731 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x545c6841 rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x55fed6fd rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5ea4eab3 rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6837890c rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x68edb395 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6dca2c17 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6fb7faa1 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7f83bafe rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8bbb6da4 rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8bd7f32e rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9536e36e rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9b4c7ca8 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9fa47311 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9fd8c940 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa020c124 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa86ed13c rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xade9a0da rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xaf482dd7 rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbda01c6d rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbe62d5d1 rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc1d6e926 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc4af272f rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd1ef5d9e rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xda404fc0 rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe7f005fc rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf2cd600f rt2x00mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf639adf8 rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf7ed1abd rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfeb7270b rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x168470fb rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x6445da07 rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xab0b6e26 rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xadabbbf8 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xc86285d8 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x39174b36 rt2x00pci_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x7464d054 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xd623b275 rt2x00pci_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xfe16b54a rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x0d6889cc rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x12430cd8 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1beff337 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x249dd171 rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x4277318e rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x449bf0de rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x904517bd rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x93a068ef rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x9effca83 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb5dc7789 rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb7032bc2 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xba44401d rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc6a5c1cf rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xcf6c8c74 rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe7a5a1d4 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf8e56221 rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x49550401 wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x5aeeed79 wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xabb28e22 wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x00e968c8 wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x02f78020 wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06885525 wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06982338 wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0bd8070c wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0d1df4d2 wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x10bf421c wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1126c8b0 wl1271_ps_elp_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1249ee93 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x18196883 wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x184a7c5c wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x21131c06 wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2b5dd286 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3544b796 wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3be5e2fc wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3cc07bfc wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x41fe2071 wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4fd6b8bb wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x689e5bdb wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x89be50bd wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8c5e9b88 wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8f976ab0 wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x90319ccd wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9762c67a wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa78474cd wl1271_ps_elp_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaa6e49e3 wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xad07853e wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xae9fe617 wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb0bcd0c5 wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb805a0fa wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc1816ec7 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcb645b48 wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xccd41ddc wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd9a2513a wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdc9531f5 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe09d43b2 wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe1394b5c wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe31efd54 wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe3d90935 wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe7440ec5 wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xea8f1af9 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf1b9f458 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf26e77ec wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf6ba52ee wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfbad242c wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x10108cac nfc_mei_phy_free -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x1dc0cb65 mei_phy_ops -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x7e60fbce nfc_mei_phy_alloc -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x1bff0d27 nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xa25939db nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xc05e5025 nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xdbef9dd1 nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x0b89db5b st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x2b4b0d93 st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x3a0d0c9b st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x5b76d9d3 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x79e83b1f st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x80a10b60 st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x86de527a st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc3f23bbf st_nci_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x5a77cfbc ntb_transport_unregister_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x79813416 ntb_transport_register_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xb9756321 ntb_transport_create_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x11fcca1a nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x202d4ed6 nvmem_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x224f51bf nvmem_device_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3866e217 nvmem_device_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4282dc53 nvmem_register -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x805020ce devm_nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x99f018c4 nvmem_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xae616819 devm_nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc697b0f7 nvmem_device_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xcefb283b devm_nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe4937ed8 nvmem_device_get -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x958581e6 intel_pinctrl_probe -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0xa3509bbd intel_pinctrl_remove -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0xa69645dd intel_pinctrl_suspend -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0xd956b619 intel_pinctrl_resume -EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x24b9b45c asus_wmi_register_driver -EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xb5a9a60c asus_wmi_unregister_driver -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-rbtn 0x51552fca dell_rbtn_notifier_unregister -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-rbtn 0xa060fe7d dell_rbtn_notifier_register -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_ips 0x46809fa9 ips_link_to_i915_driver -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x56235c72 intel_pmc_ipc_command -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x75068282 intel_pmc_ipc_raw_cmd -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xdea07053 intel_pmc_ipc_simple_command -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_punit_ipc 0xa6c87106 intel_punit_ipc_command -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x111aafa7 telemetry_set_trace_verbosity -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x1bbf0813 telemetry_add_events -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x1be25432 telemetry_get_sampling_period -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x4294042b telemetry_get_eventconfig -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x4cb51f18 telemetry_pltconfig_valid -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x50c1c0a8 telemetry_get_trace_verbosity -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x5847f501 telemetry_clear_pltdata -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x611fd2a7 telemetry_read_eventlog -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x64c6a83e telemetry_read_events -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x73dcd24f telemetry_raw_read_events -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x82bb2dbe telemetry_get_evtname -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xb78846ce telemetry_set_sampling_period -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xbb9a2726 telemetry_reset_events -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xbf0d3d83 telemetry_set_pltdata -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xcbdc93cf telemetry_update_events -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xe7eb1528 telemetry_raw_read_eventlog -EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x232b5238 mxm_wmi_supported -EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x61cdf799 mxm_wmi_call_mxds -EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0xe26032eb mxm_wmi_call_mxmx -EXPORT_SYMBOL_GPL drivers/platform/x86/thinkpad_acpi 0x706cdcef tpacpi_led_set -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x3ecf6cfc wmi_install_notify_handler -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x561c634a wmi_evaluate_method -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x876d29f1 wmi_get_event_data -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xb5a6ebe2 wmi_remove_notify_handler -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc9d4d6d1 wmi_has_guid -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xda29f8b0 wmi_set_block -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xfb882fb7 wmi_query_block -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x1a06e39c pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x52c156ae pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xf332f9aa pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0x4fad9e0f pwm_lpss_probe -EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0x6365870a pwm_lpss_byt_info -EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xafcf8794 pwm_lpss_bxt_info -EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xb563cdb0 pwm_lpss_remove -EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xc34d815f pwm_lpss_bsw_info -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x36ac1677 mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x92c82625 mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xb92e1c9a mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x2a1b8f09 wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x38e573e3 wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xc853503e wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xe53f2eba wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xed2e93d8 wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xfe298fb4 wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x7763dba9 wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x00ede515 cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0324b910 cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0d494037 cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0e322bc0 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x14b7ce8b cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x196a0a13 cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1d7acc82 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x20944a75 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2140b9ab cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2a6aa939 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3216abf8 cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3e7b9814 cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x42e3c057 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5089302e cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x511ac900 cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x525be8fc cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x54e38069 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5a2e22ce cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5c751374 cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x65834f03 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x65e519d1 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6dd96308 cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x70fdc20c cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x78c3bbdc cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7ad08611 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x85910236 cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8a0f7de3 cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x91ab52ae cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x92e0214c cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x99001be9 cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa498c3c5 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa8405253 cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xad74eee0 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xadebc274 cxgbi_ddp_ppod_set -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaf6eb4f9 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb6f0e77e cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb845b43a cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc498d9ce cxgbi_ddp_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcb356515 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd9fefd19 cxgbi_ddp_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdd97436b cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe1669c6d cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe87175c6 cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf57e9bf2 cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf676ebd1 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf8a076c6 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x181497ee fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x18b13a43 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x39727b8b fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x496b500e fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x61c77e6d fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x626f3a8a fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7144cad2 fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8f3b3fcf fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9a4a93a6 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbfd58170 fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc8065b58 fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xcb83e931 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd49f71ad fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdca3b414 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe927fc9a __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf93d53a5 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0234ad4a iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x3fd7a288 iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x498f6c1b iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x81cdf4e0 iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x9ed3c33f iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc462d5df iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x03b8dd6c iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0a0107b0 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x10841570 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1999e427 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1a960693 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x231ae14e iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x272a0d33 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x27971970 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x39b04a53 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x526a2a22 __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5582ddad iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x582697e0 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5ae2787e iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6292ea98 iscsi_conn_queue_work -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x63eb3c49 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x67487271 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x69ce6358 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7db2c820 iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7e1ad480 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x849981c1 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x859ba634 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d33aba2 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8dde2f0c iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x93fdfae0 iscsi_eh_target_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x973ed463 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9a94c5d1 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9e9b1535 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa0ddeba5 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xab2c9d92 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xac96b6d6 iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb68506b3 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbad65743 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbe7b698f iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc72e9732 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xce532a27 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xde6f841d iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe426522f iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe46efad2 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeac3db85 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeef1e1fc iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfaf4aaac iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xff9f2e16 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0201ba96 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x12c107aa iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x15b338cb iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x167eb3ce iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1e137f44 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x40f7e9c5 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7b1b5a11 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8cddd1ec iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x91a6aa3d iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9cbe873d iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa83e2b2b iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd1b69987 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd2e13af3 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd5b85c06 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd7bf88c5 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xda38991e iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe9794f4d iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x00ee980a sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x07278331 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x149949fe sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2a6bb836 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x482d3ac7 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7a4b2446 sas_eh_bus_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x81567b4d sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8780a9ec sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9d94037d sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa347c39b sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa85a3624 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb7ef8c83 sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb8c293e4 sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb93bf5f4 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcbd171ea sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcd35b970 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xda704698 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe10a1d29 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe47104b3 sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe96216e7 sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf02b3056 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf1d0ab41 sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf97e6c3c sas_domain_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfa2db73c sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x00317851 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0134281d iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x070b8e44 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0dadc94f iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1531e88a iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1f55fcbc iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x36dd2cc8 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x39a194f1 iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3bbca48e iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x42d9aa0c iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x43accb77 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4640fd73 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x60f43d51 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6af25549 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6cba7f60 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x720b3cf6 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8273257b iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8578462a iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x95611e85 iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x95f27293 iscsi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x998de278 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9a7efc26 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9e7db147 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa905c985 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaab98d49 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb17a5156 iscsi_is_flashnode_conn_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbdf05b75 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc0e1f75d iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc3b43a39 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc99df3c6 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcb1732ce iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xce0d6c47 iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xce3a4b11 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd60e8443 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe3023fcb iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf2e3b49f iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfa4833af iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfbe43cd8 iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfca6f47c iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xff1893a4 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x07349cd8 sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xa8f62bdf sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd112a0dc sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xdbc62d30 sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x8c8ceba3 spi_populate_tag_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x2994b1cb srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x4631e597 srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x68386ef8 srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x80a5aa5b srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x8450ec66 srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf9ee373f srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x1dc63afc ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x34fbc507 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x360d415c ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x532b38f2 ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x59571ef0 ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x8c7403c1 ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x9e762957 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x1139be0f ufshcd_pltfrm_shutdown -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x5fe19eb1 ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x88690c18 ufshcd_pltfrm_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xafaae000 ufshcd_pltfrm_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xb0136e80 ufshcd_pltfrm_runtime_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xeb64e2cb ufshcd_pltfrm_runtime_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xf1c62607 ufshcd_pltfrm_runtime_idle -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x2ddd77e1 spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x3770366d spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x72ea305b spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xbe36f88e spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xca1bdf79 spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x102340e3 dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x177fe512 dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x36fff18a dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x60d4ab83 dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x17881632 spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2b6f6883 spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2d231ba0 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2dac78fb spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x362a4e3e spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4467003b spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x52240ce0 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x707a21c4 spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x808174bc spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x906ce50d spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa216818c __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa79dc505 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb9115592 spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc1c307c2 spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcced03c2 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf3cf7c0d spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf8bbaca9 spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf9de16f1 spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xffda1d80 ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x09e81196 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x12df6aee comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x17a804ed comedi_event -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1c1b29d2 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1f338788 comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x22337555 comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x24480e61 comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x27e25a83 comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2c7558fb comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2e990ad4 comedi_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x30fdde05 comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x38162de7 comedi_handle_events -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3ecfb1ea __comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x40f73fb9 comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x422a28ce comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4c3237a2 comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x538045fe comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x56348f7b comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x60800f56 comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x73ca3789 comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x910a5927 comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x986a7f98 comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9de88581 comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9f3b22fb comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xaaab3367 comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb2048635 comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb78d0d0a comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcce942ce comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd100a5fd comedi_dev_put -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd8ad5fcc comedi_timeout -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe1509659 comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xeddf2ecd comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf38262aa comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf9497ffb comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfe63e9d7 comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x0b425a16 comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x0fccd652 comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x1491cb86 comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x62b4809b comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x640cbd08 comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x64ec6cee comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xa9f622ef comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xfff270f7 comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x1c4e04a8 comedi_pcmcia_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x519cc30c comedi_pcmcia_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x618d6ed6 comedi_to_pcmcia_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x9314edcd comedi_pcmcia_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xf50151b2 comedi_pcmcia_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xfc3a2973 comedi_pcmcia_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xfd4eeaec comedi_pcmcia_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x142796d1 comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x80d77c07 comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x8a109d0e comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xdd2863ad comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xe8c3332b comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xfc0720dd comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0xf3818723 addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x8afe3175 amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xe0a9726b amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x5588b181 amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x0a7c334f comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x324e37fc comedi_8254_load -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x40fde2f6 comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x417778f2 comedi_8254_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x69c2ce60 comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6b210b8c comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6e055ebb comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x7197cbe9 comedi_8254_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x9b6effd5 comedi_8254_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xa39b126d comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb490aac0 comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xe8a11f6c comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xf60e8b78 comedi_8254_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x37490a08 subdev_8255_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xba46f360 subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xe22ca021 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x0d68fcd9 comedi_isadma_poll -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x32d1cb3f comedi_isadma_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x6815a033 comedi_isadma_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa3d01a85 comedi_isadma_program -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa7ebb8a3 comedi_isadma_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x256c2277 das08_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x043e677b mite_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2cdd43fa mite_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2fae1a0d mite_buf_change -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x300b4216 mite_release_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x305112bb mite_get_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x307ac2d3 mite_setup2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x30f9bb66 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x66b38e87 mite_dma_tcr -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6e4590e1 mite_free_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7282443e mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9507c0de mite_bytes_read_from_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9e3bbb64 mite_sync_output_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa9b4e83e mite_prep_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xad23dd41 mite_sync_input_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xae5cd82a mite_bytes_read_from_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xaef69901 mite_done -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xdce5bfb5 mite_bytes_written_to_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe7bea741 mite_bytes_written_to_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe98cadf3 mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xef3b0e7c mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf712e3d2 mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x31c70232 labpc_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xd3d60375 labpc_common_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x34b4d0d8 labpc_drain_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x519be101 labpc_free_dma_chan -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x950f0a69 labpc_init_dma_chan -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xd8f1e6cf labpc_setup_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xeff44170 labpc_handle_dma_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x0a721371 ni_tio_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x64e48cc0 ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x6cd6ab72 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x81a7c920 ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xafd4e63b ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xe19fe78d ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xed3346e7 ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xfebd88c9 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x1ffb9a6b ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x291138f6 ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xb606b3ac ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xce369e23 ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xd7a94eea ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xddae28f3 ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x1959e68a comedi_open -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x47459fc9 comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xc6a315f7 comedi_dio_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xe3fe42ea comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xe6eadbed comedi_close -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xf1265e35 comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xf3d843de comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xf0ac8129 adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x212b6f93 most_start_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x29138dbb most_deregister_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x334edc95 most_put_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x588466b0 most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x5dcca687 most_get_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x693d0738 most_register_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x69a5daba most_register_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x6c8c1336 most_submit_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xb51ebcd5 channel_has_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xe1f52a1c most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xeda12df9 most_deregister_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xf5c87c00 most_stop_channel -EXPORT_SYMBOL_GPL drivers/staging/rdma/ipath/ib_ipath 0x1514b2b2 ipath_debug -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2ab8daa7 speakup_info -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2c6865ed spk_serial_synth_probe -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x38ca4d17 spk_synth_flush -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x43885420 synth_remove -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x455bc172 spk_var_store -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6cfd65ca spk_var_show -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x770eb2c1 synth_add -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x785d36cf spk_synth_immediate -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x7ef11ee2 spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x86ace850 spk_do_catch_up -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8b3aeb81 speakup_event -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8d18fae0 spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x0877dd5c visor_periodic_work_start -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x0ec0434e visorchannel_zoneid -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x13d922e8 visorbus_clear_channel -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x149bde55 visorchannel_clear -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x1582a13b visorchannel_signalempty -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x37626eff visorchannel_get_clientpartition -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x39fe5de1 visorchannel_signalqueue_max_slots -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x3a85d8bd visorbus_enable_channel_interrupts -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x4063ea9d visorchannel_signalqueue_slots_avail -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x41d96143 visorbus_write_channel -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x4c0e827d visorchannel_debug -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x4e4bfbe5 visorchannel_signalremove -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x5123e79c visorchipset_register_busdev -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x5e533597 visor_periodic_work_nextperiod -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x6084f4d4 visorbus_registerdevnode -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x60aaf74b visorchannel_uuid_id -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x720775df visorchannel_set_clientpartition -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x7948d062 visorchannel_get_header -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x7a4ec5c5 visor_periodic_work_stop -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x7d3208eb visorbus_register_visor_driver -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x85b49e2d visorchannel_get_uuid -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x865e5ab6 visor_periodic_work_destroy -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x8f463ba2 visorbus_read_channel -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x96401fe5 visor_periodic_work_create -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xa428b832 visorchannel_create -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xac7771ac visorchannel_signalinsert -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xae9128e9 visorchannel_create_with_lock -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xb4aab617 visorchannel_write -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xca18358d visorchannel_id -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xcc89f91f visorchannel_destroy -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xd8649784 visorbus_disable_channel_interrupts -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xdaec263b visorbus_unregister_visor_driver -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xe3b5efe1 visorchannel_get_physaddr -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xed313c21 visorchannel_read -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xf990f627 visorchannel_get_nbytes -EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0x4434a105 int340x_thermal_zone_remove -EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0x90210837 int340x_thermal_zone_add -EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x334e5d6d intel_soc_dts_iosf_add_read_only_critical_trip -EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x6064e883 intel_soc_dts_iosf_init -EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x87a2b9fc intel_soc_dts_iosf_exit -EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0xf603e513 intel_soc_dts_iosf_interrupt_handler -EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain -EXPORT_SYMBOL_GPL drivers/uio/uio 0x75b60941 __uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x76432ca7 uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0xf13d4845 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x0873039b usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x56dad5aa usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x4f902c6d ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xd3fad724 ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x0ebeb78a ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xb7cc182a ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xbd55da9b ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xbe997fca ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc8b02d9e ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xd1d980ac ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0464706d gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3374159b gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3640f19d gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x406d3deb gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x42608c0a gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4a257516 gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x717fb697 gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x79b649c4 gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8b544f21 gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8bb11799 gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9dd9cb0f gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa0bb4430 gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbfbdc65e gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xdb1c33b8 gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfacc21a3 gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x26821258 gserial_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xeae25301 gserial_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x5d0b0980 ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xaf74ef16 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xbb97a51a ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x10a120df fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1a630c5a fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1c362ffc fsg_store_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x39f8a327 fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3d671930 fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x546c7f99 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x612a27e6 fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x624971d7 fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x64d516fd fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x987bc0cf fsg_config_from_params -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb7f4fdda fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc7ea206f fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xcdc39ba6 fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd468f882 fsg_common_set_ops -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe2a962a1 fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xeca40d8b fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf46a420b fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf93ded83 fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x15e5342f rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x27d5c7e2 rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x295a2fb8 rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3cb44555 rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x43e92233 rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x684b7c54 rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7133c28b rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x78c2a06a rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x90eb01e8 rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbb2830fc rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc7479e82 rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd24def69 rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe4b0f2da rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xec97d4be rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfe4b0f16 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x05307cdd config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0951343d usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0b0e9b2a usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1af05d2e usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2641f16b usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2d2bb642 usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2d9be6f4 usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x337d4a52 usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x40c5d2a6 usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4bbc3db4 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5b9fadfe unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x67ddb1b5 usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6da11216 usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6faca357 usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8d75678e usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8f2e4ee2 usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa3dc433f usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa5ff3e92 usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xadeae794 usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xae93c5cd usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb20660c6 usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc3689c12 usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc87f12b9 usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd147f41d usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd4044f48 usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd698bf0a usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdbcc4f32 usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe724128b usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xeac08fdf usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfed29ec0 usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x01648c2b usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x06bf501f gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x10aaecc7 usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x11e1ecc7 usb_gadget_map_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x176f75ba usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x35b9e1e6 usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5f505edb usb_gadget_probe_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x97c2acbd usb_udc_attach_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9ec0ea44 usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa19014fa usb_add_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4744dba usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xadb3eefc usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd7669ec0 usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf0ed77f4 usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x1271ffa5 ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xe52acb81 ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4a635832 usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x78e91c06 usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7c45dfed usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb76e6af0 usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb7b8578c usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc51e12d2 usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd958a802 usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe41fbec4 ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf7f7a687 usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x831cb7dd musb_interrupt -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x50fe74d6 isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xe1709a9c usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x06e16cd2 usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0aa48ad8 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1dcdd0b2 usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2b30461b usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x335dc2f4 usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3d1e7a80 usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x467f243b usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4fe50423 usb_serial_handle_sysrq_char -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7be0cb84 usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x87c650ff usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x887a6704 usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xaae00d5a usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb44e44bf usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb69c83b8 usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbe47b737 usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd0d3763f usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe20edb82 usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe6ab955c usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe79d4d0d usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xec75b2d6 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfb14e604 usb_serial_handle_break -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x05435d24 usb_stor_host_template_init -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0d08ec86 usb_stor_suspend -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1a46b48c usb_stor_disconnect -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2083f0af usb_stor_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x49af1006 usb_stor_bulk_transfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x49af1aa1 usb_stor_post_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x52deb957 fill_inquiry_response -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x61247940 usb_stor_probe1 -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x69f9a377 usb_stor_control_msg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6b8d6828 usb_stor_Bulk_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x70a2fcc1 usb_stor_probe2 -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x732c8cd0 usb_stor_CB_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x78cf71f9 usb_stor_set_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x804976d9 usb_stor_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x867ab19f usb_stor_bulk_transfer_sg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x98fd35ad usb_stor_ctrl_transfer -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb703a605 usb_stor_Bulk_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xdc75a4f6 usb_stor_reset_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe414c34a usb_stor_transparent_scsi_command -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe5627211 usb_stor_pre_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xeb4744a0 usb_stor_adjust_quirks -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf062a634 usb_stor_bulk_srb -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf3494708 usb_stor_CB_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf5fe136d usb_stor_access_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x069405c2 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2284140e usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x264dcc1b usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3574d576 usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4ad91ec5 usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x551ecad6 usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa414e9bd usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb47efbd5 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbb13ce13 dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbb50fca9 usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc37f8a86 usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc4e1622b usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0bd816f0 wa_process_errored_transfers_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x122f15ac wa_urb_enqueue_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x1c393c55 wa_urb_enqueue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x5478b066 wa_urb_dequeue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xa52a3521 rpipe_clear_feature_stalled -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xd3863f1c wa_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xd491cef3 __wa_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xea3d7360 wa_dti_start -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf9f44c83 rpipe_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x28b45076 wusbhc_rh_control -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x38ce7b2d wusbhc_b_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x61df098e wusbhc_giveback_urb -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x670cd8b4 wusbhc_b_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7a71494b wusbhc_rh_status_data -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x85b2abd0 __wusb_dev_get_by_usb_dev -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9975347d wusbhc_handle_dn -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb5db5731 wusbhc_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb68372ae wusbhc_rh_start_port_reset -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xbd85513c wusbhc_chid_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd92ff79b wusbhc_mmcie_rm -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd9f67e36 wusbhc_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe57bfd4c wusbhc_reset_all -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfc287398 wusbhc_mmcie_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x0a9e90d5 i1480_fw_upload -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xa5e4b196 i1480_cmd -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xf357e067 i1480_rceb_check -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x133b3c5d __umc_driver_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x143297fe umc_device_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x52a96272 umc_match_pci_id -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x66ba2f19 umc_device_unregister -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x897e4ffe umc_device_create -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x9b910b3f umc_bus_type -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x9e5d674a umc_controller_reset -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xbb15030c umc_driver_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0d78016e __uwb_addr_print -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0fc02440 uwb_est_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x10dffa43 uwb_rsv_modify -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x129d9ac9 uwb_rsv_accept -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x16ffc043 uwb_radio_stop -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x363ba8d7 uwb_rc_reset_all -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x41e64efd uwb_est_find_size -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x481b1f96 uwb_notifs_deregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d956b15 uwb_pal_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x50a3707f uwb_rc_vcmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x51bea336 uwb_rc_put -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5374d0c6 uwb_rc_get_by_dev -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x606b62a0 uwb_rsv_establish -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x63c2939d uwb_rsv_terminate -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6a8877ce uwb_rc_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6c17c418 uwb_pal_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x74846fb8 uwb_rc_neh_grok -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7985eed9 uwb_pal_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7bc7d1b8 __uwb_rc_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x80b2918a uwb_rc_pre_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x816b9e92 uwb_est_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8576041a uwb_rsv_create -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8f08a21f uwb_rc_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x96f6b4e1 uwb_notifs_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa3e9f7ee uwb_rc_get_by_grandpa -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xac97316b uwb_ie_next -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xba30be26 uwb_rc_post_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbede6ba7 uwb_rc_ie_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbf549ed2 uwb_rc_neh_error -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc2c48d65 uwb_rsv_get_usable_mas -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xcb095a69 uwb_rc_cmd_async -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd7215d25 uwb_rsv_destroy -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd97789b2 uwb_dev_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd9ff810f uwb_rc_cmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe77967f1 uwb_dev_for_each -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf01f902c uwb_rc_dev_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf2fd710a uwb_radio_start -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf4ceb968 uwb_rc_alloc -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf5dd1b9a uwb_rc_mac_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf610f8c4 uwb_rc_ie_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf678c6ee uwb_rc_rm -EXPORT_SYMBOL_GPL drivers/uwb/whci 0xe307749c whci_wait_for -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x1b6d03e6 vfio_group_get_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4c8f782c vfio_device_get_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc591b857 vfio_add_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd9d42a40 vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xdd915520 vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe256f9ac vfio_del_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x18e1efe0 vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x1d4c9ce7 vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0a6d8def vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1b9b77f1 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x22b6d731 vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2a5d11da vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3548283b vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3bf36262 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4215148d vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x466b9a2c vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4cb96f77 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x57d91acb vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5c40601f vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5f208658 vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6c61aba7 vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x75166794 vhost_init_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x790eaf56 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8daacbdc vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x99bf123e vhost_work_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa145c4bf vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa445aa7b vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa7737d2e vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa9136e7e vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaad38d63 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbb9399dc vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbbe14657 vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xce3c9c82 vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xce98c56d vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcf35be61 vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd77395ef vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdad62b42 vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe638d993 vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/video/backlight/apple_bl 0x2c63e051 apple_bl_register -EXPORT_SYMBOL_GPL drivers/video/backlight/apple_bl 0xdab0f892 apple_bl_unregister -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x221ad202 ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6d1a7bc5 ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x804cbf33 ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x80be0151 ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x89a0d0a8 ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd43a430f ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe9c7acf9 ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x104ecd4c auok190x_common_probe -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x44130ff5 auok190x_send_command_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x46a7cfae auok190x_send_cmdargs_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x698a874a auok190x_common_remove -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xba8523eb auok190x_send_command -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xbafef961 auok190x_send_cmdargs_pixels_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xbc69ed52 auok190x_send_cmdargs_pixels -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xd982fbf1 auok190x_pm -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xe7e740dc auok190x_send_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xebda7217 auok190x_read_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x44d8ed61 fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x3547e56b fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x57ec8ec0 fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x085a7e93 sis_free_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xdfaf9a66 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x016e6c20 vmlfb_unregister_subsys -EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x90c018c6 vmlfb_register_subsys -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x22a7af24 viafb_dma_copy_out_sg -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x292da7a2 viafb_irq_enable -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x30cc9311 viafb_request_dma -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x31469540 viafb_pm_unregister -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x79e6190a viafb_irq_disable -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xb4f863e6 viafb_pm_register -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xcaefb732 viafb_release_dma -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xe2e88cc5 viafb_find_i2c_adapter -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xfff2dfd2 viafb_gpio_lookup -EXPORT_SYMBOL_GPL drivers/w1/wire 0x2a60f5ae w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x398813ad w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x9199b88c w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x9db21143 w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0xa3409ec4 w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xad8f6ebe w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0xaf6a5328 w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0xc808a555 w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xf32a351b w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x5612af79 xen_privcmd_fops -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x0e23aeb0 dlm_posix_get -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x36a2c037 dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xb2b38969 dlm_posix_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock -EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x1d57a9ac nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x25dc59ca lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x785957b3 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa267c6f4 nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb8d7508d nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc993441e nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd04bac08 nlmclnt_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0238da7d nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0794093d nfs_fill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x086fddc4 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d7a414c nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d7d65f0 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f09249e nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17e839e0 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x187b11ca nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x193c288e nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a0e5c66 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a1b13b8 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ac515a9 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1af9d101 nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1bb55620 nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c4c6a44 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1da77810 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1df90175 nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f6d8c37 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22796dfa nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x239ab0bf nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26de556a nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2707305a nfs_pgio_data_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2773e586 nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27a0228a nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27e88b1b nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x291f3c56 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c66f4fd nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e7385ee nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3152efa2 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32731359 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34c500b4 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35f75731 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37d80059 nfs_remount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3837cb16 nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x38cee920 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c3345b6 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4126701c nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4178e1ee nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4489f83c nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45dc7fff nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x465c3967 nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x482f2250 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ad743af nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f37a903 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5106f66c nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x558bb1fd nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x562249af nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58fe1afe nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b3c572f nfs_set_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b76da0b nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5db4325a nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x616ec086 nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62ee0a6e nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68e8a9ce nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x698989e9 nfs_fs_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b60228c nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f170efc nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f6a739d nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7181ac15 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73815a51 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75e2e49b nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x774f22f1 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x799d9eba __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d1fed96 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f283eb6 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86cd40b4 nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8974d918 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a18f6d9 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c45d911 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8cc5452b nfs_try_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e8fa0ca nfs_file_fsync_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f085110 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x927775bf nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95c96cbb nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98112b6f nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x992c9529 nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ad2583f nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ad7e33f unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c76fb68 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0230717 nfs_pageio_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa387604e nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6bda024 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8f3e41c nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9217e4b nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf6b5b1e nfs_destroy_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0c2991d nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb28772f4 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb648abde nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb69d2b90 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb0065e1 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0827dad nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc165536a nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc16c17c7 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7c83b98 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca966255 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd1a7f7a nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd6be596 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce633fd2 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd101478f nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd22624c8 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4a60c7d nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9beb757 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbb9cfe2 nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdcaf5c3f nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdda0aa7b nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2dd7d24 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe414d644 nfs_fs_mount_common -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7129c6a nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe763131f nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9833585 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeafa1fa9 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb2b9cbf nfs_clone_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xecd620f4 nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed0169af nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed455c2d nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeee34d3f nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef7fe382 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf19c92d1 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf21ba701 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf421eaf7 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6885be3 nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7539cc8 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7fbd713 nfs_file_splice_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfea8d290 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xffbd07be nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x916e0777 nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0611d623 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x069ee338 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0fd6ed8f nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1093b108 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x11d15c97 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1209dcc5 pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x189339bb pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x190698cb pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x193b60dc pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1fc2e8da nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b356038 nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3bbb0fe6 pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x45da25a0 _pnfs_return_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4628327e pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x49deb8c4 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4aae9799 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4fd3c387 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x51b1ae2e nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63f83a35 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6491d2d0 pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c498005 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7bae1985 pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ac49043 nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c9f8922 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8e4d7e1a pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x99afdb16 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d5df099 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa0e8a123 pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa197f1b4 nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa2380f9b pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa3bb1835 nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa7f370e7 nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaacf3912 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaad10edf nfs41_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xac01b709 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xadf24404 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xadff86e0 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xae969404 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0480ef3 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5c2e956 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb832e3e0 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb83f952d nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba6fe4b6 pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbae562e6 nfs40_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbd93597d nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc0da2034 pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc74a25c4 pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xca82d347 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcbf41204 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd03b16e1 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0b5b7dc __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0f5728e nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd1b46e90 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd29e117a nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd41e75cb nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd51ff85f pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd554b50a pnfs_put_lseg_locked -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe172d148 nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeaee3550 pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfedf3f49 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xff61d3fb pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x44c91846 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x89a05e5e locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xa70aa37d locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x082bfb3c nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x6f680107 nfsacl_decode -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x23da3c7a o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36a28a9e o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4ffdabe5 o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5d3fb2e1 o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x855e6c4e o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa31f6b49 o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3f0976b o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd178d1f3 o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x2b56a0b4 dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x9016cb05 dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xaf873095 dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xba075589 dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xca422f8e dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd669b540 dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x28721da8 ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x627fa61b ocfs2_plock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xebb9a7c8 ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq -EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures -EXPORT_SYMBOL_GPL kernel/torture 0x3c4a7e4c _torture_stop_kthread -EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats -EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb -EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random -EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait -EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop -EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end -EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init -EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init -EXPORT_SYMBOL_GPL kernel/torture 0xbf2f01b1 _torture_create_kthread -EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0xc18a6465 torture_shuffle_task_register -EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin -EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin -EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init -EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end -EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init -EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping -EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress -EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress -EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch -EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch -EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch -EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x9ea64159 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xb740645c notifier_err_inject_init -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x201d8ea3 encode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x29fa419f decode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x0adcb055 base_inv_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x221df614 base_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x4da25bec base_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x63f42b6a base_inv_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x76203267 base_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xca3140ce base_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfa5eee0a base_inv_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfc02472a base_inv_true_key -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x6ae295c1 lowpan_header_compress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x7f94da62 lowpan_header_decompress -EXPORT_SYMBOL_GPL net/802/garp 0x1b9faa79 garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0x43df3598 garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0x71a3f68e garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xa03344a2 garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0xd13a88f4 garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0xfda76a64 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x12ad324c mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x89b60c14 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x8ebb1d73 mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0xa9d5dce8 mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xe7de8dff mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0xe9650988 mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/stp 0x49949b90 stp_proto_register -EXPORT_SYMBOL_GPL net/802/stp 0x9deb571e stp_proto_unregister -EXPORT_SYMBOL_GPL net/9p/9pnet 0x06793f55 p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/9p/9pnet 0x525c5728 p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier -EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier -EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast -EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr -EXPORT_SYMBOL_GPL net/ax25/ax25 0xbc8ca4f1 ax25_register_pid -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x5a422b44 l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6a5e49ae l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7327eb41 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xab6e6668 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd044b3b6 l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xdf39af84 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf94aec3c bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xfcd2e871 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable -EXPORT_SYMBOL_GPL net/bridge/bridge 0x1c3aff14 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3f6d4378 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x45f8cfd0 br_deliver -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa8db51f7 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc73b3273 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0xcde7de04 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xea72ebcd br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf48764a3 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x36ebfd2f nft_bridge_iphdr_validate -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0xbc348e4d nft_bridge_ip6hdr_validate -EXPORT_SYMBOL_GPL net/dccp/dccp 0x05989ff8 compat_dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0f784fb5 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x10063322 dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1124af04 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x188d7a67 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x23672cd0 dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0x252733ad dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2936105d dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2ccd7915 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x39bca9a0 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x489bafdb dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4e2d4d99 dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5015acfb dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x51e8b45a dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0x532899c1 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x55d8d5ff dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0x56d6831b inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5eb33a9c dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6f6069db dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7624ac61 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7f53f4de dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x83df0bde dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x88ededcb dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9ba02685 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9e09b22f dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa802d1ba dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xac82f7d0 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0xaf91e20c dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb0a9299f compat_dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcdd17c6b dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcf6f3259 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd51a044a dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0xda4405c2 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xeac729b9 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf3b1fc84 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfbb32288 dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x27613ba2 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x2d624e54 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x5b9dea10 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xad7dc225 dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb165872c dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf43d7929 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x2cbcceab ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x5bed1374 ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x8bff68d6 ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xf0fd8501 ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ipv4/gre 0x24a2dd09 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xf0f93d3b gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1ac3e3c0 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x27841bf7 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb413d2c6 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xcdf1755f inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd4bd9970 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe86ad1c8 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x45f60df5 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0dce0bf4 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1b570321 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x20953a96 ip_tunnel_delete_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4e89ffdc ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x57adf6ef __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6b1f2cab ip_tunnel_ioctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7e142d14 ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x944e7e0d ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa5cc4228 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb066132c ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb51f1d3e ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc8f6c6f1 ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd183fb07 ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd765cf2c ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xda78e6e0 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x1515628f arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xb00ca9f1 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xb0f77d8c nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x45b1e12d nf_nat_ipv4_in -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x6d799282 nf_nat_ipv4_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xa442f426 nf_nat_ipv4_local_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xd143d97e nf_nat_ipv4_out -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xe9b1691a nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x860c53c5 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x09b1462c nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x16908eb0 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6cdc3339 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa6af8dc9 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xbbc8620c nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x14c26e86 nft_af_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x03a9732f tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x2225a25b tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x669e28a8 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x78911516 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x898d396c tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x42ca763c udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x83ab9370 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9629e6d5 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd65f02ac udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x213d6f6e ip6_tnl_dst_init -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x6604e70f ip6_tnl_dst_reset -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x7da0a288 ip6_tnl_dst_get -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x9807b2e5 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xbacd26da ip6_tnl_dst_destroy -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xf968a4fc ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xfe5cde17 ip6_tnl_dst_set -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x648cda28 udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xe38afd3e udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x15e3c69b ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x36f6c6d2 nf_ct_frag6_consume_orig -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xd9a37d06 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xd1d7b489 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x0dbfede4 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x1b0c3bbc nf_nat_ipv6_out -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x1e8b7e4b nf_nat_ipv6_local_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x80dfaf60 nf_nat_ipv6_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xe1c24ce3 nf_nat_ipv6_in -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0xc3900f42 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x032db24f nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x12a01693 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x91964522 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x9698863c nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xf08e05c6 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x7f3a46b0 nft_af_ipv6 -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0b5af973 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x11b467bd l2tp_session_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x28dc915b l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3e9dff27 l2tp_tunnel_find_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x58fa8b8f l2tp_session_free -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6618e3ff l2tp_session_find_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6e70734a l2tp_session_queue_purge -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6eacaa36 l2tp_tunnel_closeall -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x77cfc661 l2tp_tunnel_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8d943d44 __l2tp_session_unhash -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa037d0f7 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb057a726 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbba4801e l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbf0afb2e l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd876ad77 l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf40c9d25 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x8ac0ba8e l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x11e1f72f ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1f216d2c ieee80211_set_key_tx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x233d7211 ieee80211_iterate_active_interfaces_rtnl -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3f4a8d18 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x58a151ae ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x698bd0bd ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6b2d72e1 ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6ff56ac4 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7175e5da ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8248b02b ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8494b151 ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x89edd0d3 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa3c730d0 ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc7fe6302 ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcc410da7 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd4292097 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xde57b3cc ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf37e6de0 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x2bc290a9 mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x9412d6d9 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xaec262be nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xafd90cc7 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0af67dac ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x11c8204e ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1259f940 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3a1b4f59 ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4b0246a6 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x649824c7 ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6db0fb6e ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x73630c51 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81e46091 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9b89f6b8 ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa05c6b73 ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa6a73dec ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd58c3fe6 ip_set_get_ip_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe714c3ba ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe7dcb67a ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xea4c71c0 ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x09d84406 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x6bf37fe1 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xb6eb43a1 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xd651482f register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0020783b nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0493f570 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x085e9219 nf_ct_expect_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0d112ebc nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11d686c1 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1497885b nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1b4f9677 nf_ct_l3protos -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1d70e406 nf_ct_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2003592b nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20b0ec77 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x21b16fdd nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x221da98b nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x231285e3 nf_ct_l4proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x23ca129a nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2e87c2ad nf_ct_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2f5800bb nf_conntrack_set_hashsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x30db1ee6 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c5dfe12 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d3adb61 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f6323e9 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41b7874f nf_conntrack_l4proto_tcp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41f684e4 nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41fb43d1 nf_ct_l3proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x42794e91 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4998f660 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b2b1f49 nf_ct_get_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5307dca6 nf_ct_l3proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5741cfff seq_print_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x581861d4 nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x58e17520 nf_connlabel_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59d57e6a nf_ct_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5e8dd60e nf_conntrack_l4proto_udp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6418b44f __nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x65dcf522 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x67bac6df nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x68321413 nf_ct_l4proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x68b727c8 nf_conntrack_l3proto_generic -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a18dc58 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6ca74500 __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6cbbb48c nf_conntrack_l4proto_udp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e40ec26 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7381e5cd nf_conntrack_l4proto_tcp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7bc3123d nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x84037247 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x87b17618 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x88d2297b __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9492403f nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x94e9e79a nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9753b8cd nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x99a6580f nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9d5bf6cd nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ff9a19c nf_ct_l4proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa8f3fcda nf_ct_iterate_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa9e017a9 nf_ct_l4proto_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa6eb8d2 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab80a90b nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xac18a459 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xadb8528b nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaedbf28f nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb1b50fd2 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb6a68195 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb820e75 nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2781b32 __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc4c6a859 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc74f4431 nf_ct_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcb00f152 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcb122753 nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcbdc3783 nf_ct_expect_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce32e327 nf_connlabel_match -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc0eaed9 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe0d9c3c9 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe188a92e __nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe680cc3a nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xefd7628b nf_ct_l3proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf1a042f3 nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf217314c nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2566d16 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf5ba926b __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf5bf066c nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf60ebb33 nfnetlink_parse_nat_setup_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x7673025a nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xea43e60d nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xb74dfcef nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1d5b498c nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x93d767ba nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x99950993 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xad707d0d set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc497756d nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc61aa253 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xcc57bc7c set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xda24f384 set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe594dd9f set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe5b84832 nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x688ccbb8 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x7f8001c1 nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xa472843c nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xeaa3609d nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xf70a4c05 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xc67a2d37 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xdfdf2294 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x119ca9f7 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2d2f2b1d ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x41bc561e ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x65c2f0ae ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb322a028 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc02f0cc1 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd4b1d788 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xb6400883 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x43b55192 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x05d6dfcf nf_log_dump_udp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x94d87c5d nf_log_dump_packet_common -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xc6d59779 nf_log_dump_tcp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xfeb216aa nf_log_dump_sk_uid_gid -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3271b85c nf_nat_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x51a6b7ad nf_nat_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x67617e6f nf_nat_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x69c7a08d nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x787a8ee2 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa0cf7398 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf3735e70 nf_nat_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf46e8cdc nf_nat_l4proto_unique_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf723db1e __nf_nat_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x323057a4 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x4003868a nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x3db33ee9 synproxy_tstamp_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8841d39b synproxy_build_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9b98d02a synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x00ee3187 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0949f193 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x18d775d8 nft_register_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x210c2ec0 nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2e7f94cd nft_validate_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x347510c8 nft_register_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3bba9505 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x466ef3d2 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4b6feef6 nft_set_gc_batch_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x639bbecd nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7c4288ae nft_unregister_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8cc63ea0 nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x93d58529 nft_unregister_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x96c07c85 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9ee94218 nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdbd6b935 nft_unregister_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe01a69d9 nft_register_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x2aeeb917 nfnetlink_alloc_skb -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x46019111 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x48568fbf nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7ff42f81 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa927459f nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd4b1cbe8 nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf0194fc3 nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x64dd2054 nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x8362ef53 nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xfa0e91f1 nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x592a9bac nfulnl_log_packet -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x0078fc1d nft_masq_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x9b18c298 nft_masq_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe8445efe nft_masq_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x24c7ba4e nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x4583d047 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x828e4626 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xa9247f0a nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xc41c982a nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xdf2781af nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x1b013580 nft_redir_init -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x1e8c39e7 nft_redir_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x38a6acc3 nft_redir_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1cf48ba2 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x8a847a1b nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x07f39dcb xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0f44f1be xt_hook_link -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x12ea9775 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x161d1417 xt_compat_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x217e78b8 xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x237ddea7 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2b236f25 xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4e355eda xt_hook_unlink -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f82f1f7 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x691a6d69 xt_compat_calc_jump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6e2adcdb xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x73cee41e xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8aa26336 xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8e96f7e2 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x919117e5 xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x949e54f9 xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa29e570d xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa782df2f xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc59e7c49 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdfa414cb xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdfbb8a71 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0b4971b xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe2b30166 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec24fd82 xt_compat_add_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfc46f761 xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x4c32c169 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xb7459345 xt_rateest_put -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x893e935e nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x9eb3a508 nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xd5928a02 nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x82ccc8f7 nci_uart_unregister -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xa5bbf6c1 nci_uart_register -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xcb5dbae6 nci_uart_set_config -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x2da345d7 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3affbe39 ovs_netdev_detach_dev -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x554b626c ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8b25e323 ovs_vport_deferred_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9a191292 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9b2fee1f ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa0bca677 ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa52b9b50 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xeab89bb4 ovs_vport_receive -EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x12333bdb rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x137eaedb rds_send_get_message -EXPORT_SYMBOL_GPL net/rds/rds 0x15091369 rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x1573117b rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0x1efc30dd rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0x2b6492e7 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x374fe798 rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x49e6e3f8 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x57799d2d rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0x5b972341 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0x71a552e1 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x7682e7c2 rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x7bc62829 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x86e71ecc rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x8bea9e5f rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xb2433993 rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0xb4504f78 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0xbf5eda1f rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc55de910 rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xc96b4590 rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xdb7c03dc rds_page_copy_user -EXPORT_SYMBOL_GPL net/rds/rds 0xde673448 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0xe45f8670 rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0xef0383e1 rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0xf51c5a6b rds_conn_destroy -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x16f0122e rxrpc_register_security -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x38676380 rxrpc_unregister_security -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x383d1655 gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8e567a93 gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xe0141cee svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00f030f2 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x040de75b rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0666f4ff sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x090c55df rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09c76b7c xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a1ad898 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bfa2267 rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0cac7584 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ea8d622 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0eeb5a80 svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10c0172a rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x134fb9b9 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13c32ad3 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1452e832 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17aaf67a svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1db5ae59 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e37353c xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e8f9323 svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e98c998 csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f0de483 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2180e1c9 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22d7904b cache_seq_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x254bb936 cache_seq_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25d44fe9 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2793ddd4 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2aaa9efa rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d00f663 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f1c09d7 rpc_get_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3190c66f xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31afde5a xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x321b9f1c rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3344ecfa cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37960e36 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38c7e522 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39c3e44c write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bfd409d sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c46572e rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ca9b870 xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3df7d2b3 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f69d7c3 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41e4ccd9 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42fb2970 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44377788 svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x448ffcdb svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45fccad3 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47e4eb91 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48fac321 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49046636 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a0632bf xdr_partial_copy_from_skb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a31d35c rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c8e3de6 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4cec5cf2 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dc42e52 rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ef17987 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f92a6d7 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50e50c9a rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52135910 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x528985f9 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59d96b3d svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5afad567 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ccf3dec svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d0c75fa rpc_lookup_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6036c832 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61c25707 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63845f69 rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x641c6ab8 rpc_print_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x641eded5 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65083ff4 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6856f524 xprt_lock_and_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x689ad89d rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68fe8f33 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69c322ff cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a40b022 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cc8e329 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d6b3a52 rpc_task_reset_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6df944e5 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f8664a2 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7058d324 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x722cef0d svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x748da121 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74bfe525 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x764bf2c8 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x770e281f rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x775f5e27 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77e0aaaa svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79c1b530 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a5f3864 rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b188942 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b8c1de9 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d170d24 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x808305f1 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8165ff9a rpc_lookup_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82fe175e svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8459e8af rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84de9d04 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x852ffa5c svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86e0c332 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89a30ed2 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89afba90 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a8eeacd rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b336305 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b5222f5 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d1e3f2f rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e381ca3 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8eeeb652 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x913e4085 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92fadf61 rpcauth_key_timeout_notify -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x930d2cac rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93ed6762 rpc_rmdir -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x942b80a3 xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9530820e rpc_lookup_cred_nonblock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95a6f551 rpcauth_cred_key_to_expire -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x966c4312 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x971383cb put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x975cc752 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98d2ec7a svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x997bb318 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99b58f61 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c1b6eed svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c46333b rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c698ab3 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c70595b svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9eb5c075 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f34b73f rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fcdcdc7 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fd79d4b _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7854411 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa365857 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac226714 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac8ed684 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacc686ea rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad73c31a rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad77dd45 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaeffac41 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2a2022e svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb94b3bfd rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb979fe30 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9d5a84d svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9ff9cb3 rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba0cf312 cache_seq_stop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba13437a rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba3d542c rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb545b03 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb8583da rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdaffd7c xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbec215b6 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbee3a53e xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0d4f2e9 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1aaf4d6 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1faf484 xdr_buf_read_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2752c53 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3fa5a42 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7af7122 svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc81c4953 svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc880dc78 sunrpc_cache_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc923f414 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb6698cb xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc4d0fdf xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd541fb7 __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdae19e0 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdd83d42 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcec85e29 xdr_set_scratch_buffer -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfb2d7c4 xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd14c8eb9 rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4782eef rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd58a42a7 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6304160 svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd84a2266 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd934c962 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda1af301 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc0546cf rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdda1082c rpc_protocol -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0d7a246 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe25b7010 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe41f0021 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe45e0a21 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea0b9026 xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb80b343 xprt_set_retrans_timeout_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec6231e8 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecf7f206 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef8acc93 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf06f4110 xprt_set_retrans_timeout_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf089478f xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf11c6b45 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1db5241 rpcauth_generic_bind_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2c72ae5 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf39db7ae xdr_skb_read_bits -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4c2c009 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5398977 rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6cc23ff xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf79a0356 xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf80d4c02 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb663f0f svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb822b8c gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb90ced5 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfed077d6 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfede7d6a xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfffbcb67 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1df2f542 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3c488e6a __vsock_create -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5b16de32 vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x61f3756b vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7748d8a7 vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x799d0d43 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x970b77bc vsock_pending_work -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9ba35bba vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa04e28f9 vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa28fed08 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd8d7915 __vsock_core_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd21fbd51 vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd67fd655 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf9ccc314 vsock_insert_connected -EXPORT_SYMBOL_GPL net/wimax/wimax 0x12a47039 wimax_msg_data -EXPORT_SYMBOL_GPL net/wimax/wimax 0x26450f4b wimax_msg_alloc -EXPORT_SYMBOL_GPL net/wimax/wimax 0x3004aee8 wimax_state_change -EXPORT_SYMBOL_GPL net/wimax/wimax 0x46e0404e wimax_state_get -EXPORT_SYMBOL_GPL net/wimax/wimax 0x6ffaa8b7 wimax_dev_rm -EXPORT_SYMBOL_GPL net/wimax/wimax 0x7b347eb1 wimax_msg_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0x7df3a3ef wimax_report_rfkill_hw -EXPORT_SYMBOL_GPL net/wimax/wimax 0x8b36b652 wimax_dev_add -EXPORT_SYMBOL_GPL net/wimax/wimax 0xafdf335e wimax_msg_send -EXPORT_SYMBOL_GPL net/wimax/wimax 0xbdb5e2d2 wimax_msg_data_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0xc1517f92 wimax_report_rfkill_sw -EXPORT_SYMBOL_GPL net/wimax/wimax 0xd551206d wimax_msg -EXPORT_SYMBOL_GPL net/wimax/wimax 0xdf4a8e75 wimax_dev_init -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0b476a9d cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0de81f34 cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3993eca5 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x41092fb0 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x67623298 cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7289fa00 cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x86fcd801 cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x916ce6f0 cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9e5c9d5c cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa005a932 cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbbacf343 cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xea293440 cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xebe86ed4 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x5c419cef ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x85d2ab85 ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x86d00910 ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xd55ea22c ipcomp_output -EXPORT_SYMBOL_GPL sound/ac97_bus 0x897b8a8c snd_ac97_reset -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x94be37b9 __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xd93075a6 snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/snd 0x11aa6e01 snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd 0x448a28cf snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0x475bccfd snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0x7adc5a74 snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0x7d291cd0 snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd 0xc81492e7 snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0xf04ae01d snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x5dc23d24 snd_compress_new -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x8004d475 snd_compress_deregister -EXPORT_SYMBOL_GPL sound/core/snd-compress 0xbcbc696e snd_compress_register -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x16869384 snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x1bc34f23 snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x33c954c8 snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x535921b5 snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x660b8f46 snd_pcm_stream_lock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xcbab29f4 snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd42a22ce _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd80b1b55 snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf582cc22 snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x16addcdd snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1ab20745 snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1d775112 snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x287f8937 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2a4a1d56 snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x4eb3357e snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5f8464d3 snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x60ae9f28 snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa7c9181b snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xcf8b392e snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xdcd817db snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0939b51f amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0bb7f6c8 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x158d09af amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x3d2bc537 amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6193c6f7 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa171b347 amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xabc1d206 amdtp_am824_set_pcm_format -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x04caa9d3 snd_hdac_stream_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0867a8c7 snd_hdac_ext_stream_init_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x09e9b3ec snd_hda_ext_driver_register -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0e28f1ea snd_hdac_ext_stream_get_spbmaxfifo -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x11bc9043 snd_hdac_ext_link_clear_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x194f8f69 snd_hdac_ext_link_set_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2072e69e snd_hdac_ext_bus_link_power_down -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x22e46695 snd_hdac_ext_stream_assign -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x382746fd snd_hdac_ext_bus_ppcap_int_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x38fa4a7d snd_hdac_ext_bus_device_exit -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x43b38c08 snd_hdac_ext_bus_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5312a4ed snd_hdac_ext_bus_ppcap_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x711873eb snd_hdac_ext_link_stream_setup -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x84d6a891 snd_hdac_ext_stop_streams -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x99d471e9 snd_hda_ext_driver_unregister -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9f71459f snd_hdac_ext_stream_spbcap_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa42e162c snd_hdac_ext_link_stream_start -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xaa52620f snd_hdac_ext_bus_link_power_down_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xacd58097 snd_hdac_ext_bus_exit -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb4f9ddcb snd_hdac_ext_stream_release -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb6ba5c79 snd_hdac_ext_link_stream_reset -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb7cae5c0 snd_hdac_ext_bus_get_ml_capabilities -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb8c55c20 snd_hdac_ext_bus_device_remove -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbe94cb60 snd_hdac_ext_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xcd74a86e snd_hdac_ext_stream_set_spib -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd331d171 snd_hdac_ext_stream_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd68a160a snd_hdac_ext_link_stream_clear -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd70fa2be snd_hdac_ext_bus_get_link -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xdb7ba1e4 snd_hdac_ext_bus_device_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe0386f33 snd_hdac_ext_bus_link_power_up -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe06017d2 snd_hdac_link_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf3adcd7c snd_hdac_ext_stream_decouple -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x00319bb6 snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x00ce0e09 snd_hdac_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x02c99ed0 snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x03c884fd snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x09d31f5d snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0d7140fa snd_hdac_get_display_clk -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0de1b6cf snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0e533f3b snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x132c7065 snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1390fb46 snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x13dfd933 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x15bf4857 snd_hdac_refresh_widget_sysfs -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x15c52c09 snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1665eed4 snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x17908809 snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x19ac96a2 snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x283ee3f5 snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x28428b4d snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2cd67b62 snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2ff844bf snd_hdac_i915_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x31fc05aa snd_hdac_i915_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x342278de snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x34f16cd0 snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3f19ccde snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x406a7d30 snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x40d5cb51 snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x40ddeda1 snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x42072bf3 snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x462f25c2 snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4973304f snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c9f8bfa snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4e84f0c1 snd_hdac_bus_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4fcd3039 snd_hdac_bus_queue_event -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x53dbf147 snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x568959d4 snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x56c456ab snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5a751837 snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5eebafc7 snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x62c12c7f snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x62cd361c snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73187668 snd_hdac_i915_register_notifier -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ab6bdae snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x939a2e22 snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x945745e2 snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x97a8f4d3 snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9cee530d snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9f9962b6 snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa4b77ccc snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa6c187d3 snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa7add912 snd_hdac_make_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa9baab57 snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaec691c1 _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaef325d3 snd_hdac_i915_init_bpo -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xafe1bc89 snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb06d47f4 snd_hdac_bus_remove_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb19778b2 snd_hdac_display_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb1dfe465 snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb5b7f079 snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xba264fea snd_hdac_bus_add_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xba9acc8a snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbcec0a16 snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd1e258a snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc163f070 snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc272a331 snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc68a9962 snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd03f5cbc snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd0e0ce5e snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd20540c4 snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd271b345 snd_hdac_set_codec_wakeup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd2ae510b snd_hdac_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd7bbfbc1 snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdaf7a343 snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdc8b6ca0 snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xddab99b9 snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf030b8bf snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf0bbe825 snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf1d70c54 snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf68ba1b4 snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x35b3c323 snd_ak4113_create -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x74912a87 snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x8d7d067a snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x9a289485 snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xfad1db93 snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xfdfab2ac snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00a45f32 azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x02b55095 snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x041df755 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x042ef6cd snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0586b527 snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x068aca32 snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x06cb0aa2 snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a01da75 snd_hda_mixer_bind_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a0b3b2e snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ef3c026 snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0fa2e5d5 snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0fc05b72 azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1044e1b6 snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x105a25b0 snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x17562c71 snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18b604c3 snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1df01282 snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ebbaad4 snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x23ce83e1 snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x259a49d2 snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x266fa4eb azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d1b372e snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e6fe1fd snd_hda_jack_tbl_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e86ef2e snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2eccbe5c snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2f249996 snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x314ed8de snd_hda_jack_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x337699b4 snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33f564b4 snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x345642c2 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x347fcd1b snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b3baaba snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b6fd630 __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b9f3483 snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3dba8612 snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e887b03 snd_hda_jack_detect_enable_callback -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e8911f8 snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4159d060 snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x42d6aeee azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43819c01 snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46cfad74 snd_hda_jack_detect_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x472afb12 hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x496fc4c2 azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a6bc759 snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a82cae8 snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a9e779f snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4b6b4710 snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e0d1ffa snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5192c9fa snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x51bbda91 snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x56d34a90 snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5920f785 snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59fb4f76 snd_hda_register_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5dccbe84 snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61e81784 snd_hda_bind_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x624be272 snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x632af577 snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x65d9579b snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a0673a6 snd_hda_mixer_bind_ctls_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ab69c3e snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c7cab25 snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d024ede snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e696885 snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ff294ed snd_hda_mixer_bind_ctls_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74dfb8fd snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7aff6298 snd_hda_bind_vol -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b6b8a6f azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7dc5c55c snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80aa71df snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a86eb02 snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8bc40114 snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c819826 snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f27eba7 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x91045aaa azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9205ec0c azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9212beaa snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x923dd5d0 snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9252af00 snd_hda_mixer_bind_ctls_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93a6f919 snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93c3fdad snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x948e6be8 snd_hda_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98796c76 snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x987e55b8 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c018e33 snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d8d8b3d snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e934f26 _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9eb220f0 snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa272ef12 azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4f34ebd hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa575937d snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa9d2aadf snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xae5aab3c query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf9fdbbe snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb425f7d6 snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb5baac48 snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc7c8e35 snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbcbd5202 __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbcd972f8 snd_hda_mixer_bind_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3414e1a snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc63dc340 snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7e1b800 snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9461dcc snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca29d192 snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb62a4bb snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0643fc4 snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd24baec5 snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd3223209 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5500ccd snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd63324c8 azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb9a5f47 snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xde6eb80c snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf6dc22a snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe2be4f6a snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe2f96751 snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3121520 is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe4afc361 snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe86732dd __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xebf04189 snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef234236 snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2032674 snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf25506d3 snd_hda_mixer_bind_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf49c74cb azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfa837123 snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfdef3d3b snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0a7237ad snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0d54bd97 snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x18702e7d snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x37db02b7 snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3c2c50a5 snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5757e7d6 snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x59a69886 snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5e154c18 snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5f2c4e73 snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7432f1de snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x757a0a59 snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7814f72b snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8ea9c0b5 snd_hda_parse_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9790097b snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xcaf658e3 snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd8fc3b33 snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdb232f7a snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xddf55e90 snd_hda_get_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe4e05dfc snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe5a8b6fd snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfcb869f6 snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x61f8ae05 cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xd0eb53ee cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x2d945700 cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xdc756848 cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x15a6761b cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x26baea62 cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x287d580a cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x1f9af9cd es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xb3a19f6b es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x03cd1f40 max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x7c435fe0 pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x98562a83 pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xc779744a pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xe34da053 pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xa7aa810f rl6347a_hw_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xade4bf4c rl6347a_hw_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt286 0x6e0809f4 rt286_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x366e0b71 rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x80d3717b rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xf7f5557a rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x101eb068 rt5670_jack_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x1bc8b2c7 rt5670_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xc8318f01 rt5670_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xdafc1b81 rt5670_jack_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x26ca033e sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xb4b74cc0 sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xbe9a6a47 sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xc3deffeb sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xd5dbff8c devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x91d704a8 devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x0e331d17 ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x7d962832 ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x10a63247 tpa6130a2_stereo_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xf4b3cc20 tpa6130a2_add_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x25eedabc ts3a227e_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x478d6282 wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x6b765cd9 wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x9fa4acff wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xc9c1ee59 wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xf433427d wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xfeb719a7 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x5d68bcc1 fsl_asrc_platform -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xbe0a0d65 fsl_asrc_get_dma_channel -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x30693bb7 imx_audmux_v1_configure_port -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x58631dab imx_audmux_v2_configure_port -EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-mfld-platform 0x5c72e779 sst_unregister_dsp -EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-mfld-platform 0xf88400d7 sst_register_dsp -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x23c948b6 sst_configure_runtime_pm -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x4faad9b0 sst_context_init -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x6f7b2968 intel_sst_pm -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x76cedf14 sst_alloc_drv_context -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xab14edd5 relocate_imr_addr_mrfld -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xb09ec587 sst_context_cleanup -EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x35fc9c1c sst_byt_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x4078a57c sst_byt_dsp_suspend_late -EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x4cbc0156 sst_byt_dsp_wait_for_ready -EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x8ea12834 sst_byt_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0xd8265ce3 sst_byt_dsp_boot -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0173cae3 sst_dsp_shim_update_bits_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x089c2df8 sst_dsp_dump -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x11d1efa6 sst_module_new -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1420674b sst_fw_free -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1821ecbb sst_dsp_register_poll -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x19920001 sst_dsp_dma_get_channel -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1b5e8b82 sst_shim32_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x25a8f860 sst_dsp_shim_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x273e4f0c sst_dsp_ipc_msg_tx -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2dbc8a16 sst_dsp_boot -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x349c5dfc sst_free_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x439cc9c4 sst_dsp_wake -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x453f9499 sst_dsp_shim_update_bits64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4a045773 sst_shim32_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4e2c526d sst_fw_new -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x58a04289 sst_alloc_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5b56be5e sst_module_runtime_get_from_id -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5de61f8b sst_block_free_scratch -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5f7a022d sst_dsp_inbox_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6b14f3e3 sst_fw_reload -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6d7d435a sst_memcpy_fromio_32 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6ec08d81 sst_module_get_from_id -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x760ecf83 sst_dsp_stall -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x799feaea sst_dsp_shim_write64_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8786c6f3 sst_dsp_shim_read64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8d3e16c2 sst_fw_free_all -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8da38e68 sst_dsp_shim_update_bits64_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8e952217 sst_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9207eabd sst_dsp_mailbox_init -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x93f97285 sst_block_alloc_scratch -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9e45674e sst_mem_block_unregister_all -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9f3a7f08 sst_dsp_shim_write64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa634dcfd sst_dsp_shim_update_bits_forced -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa8831677 sst_dsp_dma_copyto -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb18e4f04 sst_dsp_reset -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb5ceeb53 sst_dsp_shim_update_bits -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbcec5387 sst_shim32_read64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbdca7b19 sst_dsp_shim_read_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbff7301a sst_module_runtime_save -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc4cb4b0b sst_module_runtime_restore -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc8314145 sst_dsp_shim_read64_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc862a458 sst_dsp_outbox_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xcbde9327 sst_module_alloc_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xcd11738f sst_dsp_shim_write_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xcd3a2d56 sst_dsp_ipc_msg_rx -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd05e34ca sst_dsp_dma_put_channel -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd3c8389b sst_module_runtime_alloc_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd9a2c94c sst_shim32_write64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xdab1713a sst_dsp_inbox_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xdfaf780d sst_dsp_new -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe03ef94c sst_fw_unload -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe3998c4a sst_module_runtime_new -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe67ef20e sst_module_free_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe751dc5b sst_dsp_shim_update_bits_forced_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe9a6f4c8 sst_mem_block_register -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xebce3d85 sst_module_free -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xee190649 sst_dsp_shim_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf3ba1769 sst_module_runtime_free_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf8121c1c sst_dsp_dma_copyfrom -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf97f62f0 sst_module_runtime_free -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xfa49ec2f sst_dsp_outbox_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xfb31daba sst_memcpy_toio_32 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xfd9b3ef3 sst_dsp_get_offset -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xfef13963 sst_dsp_sleep -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x41d90dc4 sst_ipc_tx_msg_reply_complete -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x44cd96cd sst_ipc_reply_find_msg -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x47c51602 sst_ipc_tx_message_nowait -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x6e08e4be sst_ipc_drop_all -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x93fd60e7 sst_ipc_fini -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xb547fb00 sst_ipc_tx_message_wait -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xe7a2a6cf sst_ipc_init -EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0x5a281d2c sst_hsw_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0x7ec594c8 sst_hsw_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0xd1f69f64 sst_hsw_device_set_config -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x03b6a9be is_skl_dsp_running -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x04b6eb2c skl_ipc_init_instance -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x0788ff6e skl_dsp_sleep -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x20f22e73 skl_ipc_bind_unbind -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x4084cbf6 skl_ipc_save_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x70129ddd skl_dsp_wake -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x88090e46 skl_ipc_set_large_config -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x94f60219 skl_sst_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xa3695781 skl_ipc_set_dx -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xac00744f skl_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xb02188cb skl_sst_dsp_cleanup -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xb0fcb612 skl_ipc_create_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xc6d27b57 skl_ipc_set_pipeline_state -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xc8d119ec skl_ipc_delete_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xdd0def9d skl_ipc_restore_pipeline -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x024c033d snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x025f95ed snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x030edb70 snd_soc_of_parse_audio_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x050f611f snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x054fdabf snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07b4e0ba snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09e02883 snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a522b4b snd_soc_register_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0af8a7ad snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c31597e snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d599f19 snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0db32a6a snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x107c6fbc snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x116a49ea snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11e3598a dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15884b16 devm_snd_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1680971d snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17b2af8b snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x198ae91c dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19facc1d soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b73499e snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f8c1c16 snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f9093df snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x262c7301 snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x271c3bb1 snd_soc_of_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ba36859 dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2bd634bb snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c959cd2 snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e2ffcce snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e9b1e37 snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f1926bd snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31645df0 snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x326b4fc0 snd_soc_tplg_component_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x348d4137 snd_soc_add_platform_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x384686d8 snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x390100aa snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a23e224 snd_soc_unregister_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b7a4a08 snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f6e6621 snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x419ba5e4 snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41a83ddd snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47387e71 snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x479df7d3 snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47cfa827 snd_soc_new_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x486f3f05 snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a5db498 snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4bc14a6c snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4be6fc71 snd_soc_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c6c7f8c snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4cc72eb8 snd_soc_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fa7ef85 snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fc4ebd5 snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51867c41 snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5211a1de snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5751bfb5 snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5aec2e77 snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b004c02 dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b40697a snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b956bdd snd_soc_add_codec_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ec15bb8 snd_soc_remove_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6288f9a5 snd_soc_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x64bb6180 snd_soc_free_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x650fc5f1 snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x659e1882 snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x696da55c snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69ae6b55 snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e9208b0 snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e959e4c snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70e4eece snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x721b5bee snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x76201783 snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x762a84b3 snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b895c91 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ce7ccf6 snd_soc_codec_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e1a70e2 snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8291df93 snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83000cf2 snd_soc_unregister_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86a33bfb dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b1429ba snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8fb5c026 snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9045cb05 snd_soc_dpcm_be_set_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x908e42a3 snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x913d54c3 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x914e663c snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x940be150 snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94a77dee snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9656edb8 devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97e45895 snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x988145c6 snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ba5f13f snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c59e205 snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d24a4b0 snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d3ee082 snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e1c5ae4 snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa02e6084 snd_soc_get_dai_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1b7e5f8 snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1c1b556 snd_soc_add_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3c9f5a2 devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4a25d5b snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa94a8b48 snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab488d1b snd_soc_platform_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad0dfa5f snd_soc_platform_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad74f4d5 snd_soc_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae670047 snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaebb572d snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0ff3dd3 snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb41abbc5 snd_soc_codec_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb81eb8ca snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb93010c0 snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc176b8c5 snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4b55dd8 snd_soc_tplg_component_load -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc55ccf38 snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5c47ae9 snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6050b2f snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc91dc189 snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca3f86c3 snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca89c233 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb331742 snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcdaccb00 snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcdc62db8 snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd199b42e snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd565d5e7 snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7616da2 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8a800d8 snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdaf2d21d snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb69aa62 snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf2dc5f5 snd_soc_dpcm_be_get_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdfdc9be2 snd_soc_lookup_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdff8b55f snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe035d9f9 snd_soc_platform_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0cd6dbe snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0d08be4 snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0d4626c snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe263d16b devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe26fc9ee snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6e76269 snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe74652ca snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7af9b87 snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8ffd3fd snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea64bd42 snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xecc7a98e snd_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xedd22433 snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee40d2ce snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xefadd6ac snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1150657 snd_soc_tplg_widget_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf871a219 snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf96e9ddf snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9701944 snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf98c4a27 snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb78e06b snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfcb77f23 snd_soc_tplg_widget_remove_all -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd6567d2 snd_soc_new_compress -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfdf9a8f3 snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfff020af snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0542a515 line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0fb0b810 line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1605170a line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2c1007ac line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3223e3d0 line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x55262d81 line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5b1dcebb line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8bb9aa16 line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb52ddab2 line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc267277b line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd0ad3f79 line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xee15b144 line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf15433c7 line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf3b7832e line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf5096b1c line6_disconnect -EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x08003b2f i915_bpo_gpu_turbo_disable -EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x0d97d346 i915_bpo_gpu_raise -EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x358a54ae i915_bpo_gpu_busy -EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x451432c2 i915_bpo_gpu_lower -EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x7d4de94c i915_bpo_read_mch_val -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x1e678bb2 dot11_pkt_type -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x2c317edf ven_rsi_91x_init -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x309c1202 rsi_default_ps_params -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x368fde0f rsi_remove_dbgfs -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x437447f4 rsi_hex_dump -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x45ca198c ven_rsi_dbg -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x65557ec0 rsi_config_wowlan -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x6b08adfc rsi_send_rx_filter_frame -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x8102e15c rsi_hci_detach -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x88511e19 ven_rsi_read_pkt -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x8b21cd55 ven_rsi_91x_deinit -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x94e7dae2 rsi_hci_attach -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x951a0fc5 ven_rsi_mac80211_detach -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x956844cd rsi_deregister_bt -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xa0808afc rsi_init_dbgfs -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xbc39a4a5 rsi_send_rfmode_frame -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xdeadd3f3 rsi_hal_device_init -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xfb8baace rsi_hci_recv_pkt -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x3fe35aea irq_bypass_unregister_consumer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x418873cc irq_bypass_register_producer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x888c5be5 irq_bypass_register_consumer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0xf6e772c3 irq_bypass_unregister_producer -EXPORT_SYMBOL_GPL vmlinux 0x0013de57 ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0x002b62dc spi_async -EXPORT_SYMBOL_GPL vmlinux 0x0034f3b6 xen_has_pv_nic_devices -EXPORT_SYMBOL_GPL vmlinux 0x003e8508 wm5102_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x00457e36 __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x006d9457 free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x006f06c1 klp_disable_patch -EXPORT_SYMBOL_GPL vmlinux 0x008e38b8 ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0x00a1c5f6 xenbus_free_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x00b4cdec regmap_fields_force_write -EXPORT_SYMBOL_GPL vmlinux 0x00baf3f1 tcp_peer_is_proven -EXPORT_SYMBOL_GPL vmlinux 0x00c240ad dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0x00dd6bc1 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before -EXPORT_SYMBOL_GPL vmlinux 0x010a67c9 ping_hash -EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish -EXPORT_SYMBOL_GPL vmlinux 0x0127e745 acpi_bind_one -EXPORT_SYMBOL_GPL vmlinux 0x012e913d regmap_field_write -EXPORT_SYMBOL_GPL vmlinux 0x014927d2 ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x0155ae0d mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x01584106 usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL vmlinux 0x0180e4c0 relay_open -EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok -EXPORT_SYMBOL_GPL vmlinux 0x0193750e virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0x01b2a73a cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x02132c57 rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0x021c1a74 br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0x024b516c serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0x026211e2 memory_failure_queue -EXPORT_SYMBOL_GPL vmlinux 0x027579b1 regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0x02808739 usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0x028cacfc put_hwpoison_page -EXPORT_SYMBOL_GPL vmlinux 0x029084c7 btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0x02922bd8 percpu_up_read -EXPORT_SYMBOL_GPL vmlinux 0x029b7af0 sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x02a76be1 put_pid -EXPORT_SYMBOL_GPL vmlinux 0x02eafcc1 ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x030e0ad3 trace_call_bpf -EXPORT_SYMBOL_GPL vmlinux 0x031dcc9e task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x03557519 usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0x0393ed62 ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0x03a59d47 ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode -EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x0437d291 kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0x043b935f __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x04443158 fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x047a4776 pci_enable_pri -EXPORT_SYMBOL_GPL vmlinux 0x0485655f amd_get_nodes_per_socket -EXPORT_SYMBOL_GPL vmlinux 0x048a6eda l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x049e583b ping_bind -EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0x04ad724f nd_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x04b22da5 sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0x04c3f2c1 gnttab_empty_grant_references -EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04ca06e3 fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0x04d11be3 devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x04ecfb5c set_memory_wt -EXPORT_SYMBOL_GPL vmlinux 0x04f1293e gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x04f2d26a gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x04fdf8ac _submit_bh -EXPORT_SYMBOL_GPL vmlinux 0x0502b5e5 usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0x050c7171 usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0x05147b1d regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0x052eb281 attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0x053494cb tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0x0541cac8 ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x0542eba1 napi_by_id -EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x05645976 i2c_generic_gpio_recovery -EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0x0591c61c crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x05af55be sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0x05cfcf4c tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0x05deb4a9 pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x05ef6229 perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0x060b1008 get_kernel_page -EXPORT_SYMBOL_GPL vmlinux 0x060bb085 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0x06119ce4 nvdimm_bus_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x0650a595 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x065f6826 rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x0665151a platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0x06807848 rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0x068807b0 acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x06a8d21d __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x06b1cdd4 clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0x06b35858 input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0x06d00dfa __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio -EXPORT_SYMBOL_GPL vmlinux 0x06dc09c8 adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x06ee6385 mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0x06fd340d __efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0x07013895 __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x0702bc92 usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x07087d11 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x0720720c pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x072b39e6 pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0x074964d0 dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x07505e78 rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x07794e2f class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x077eedf8 __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x0788b634 irqd_cfg -EXPORT_SYMBOL_GPL vmlinux 0x0790f5c9 blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0x0795a76c device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0x07960b71 tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x07a385bd register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char -EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07b6580b ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x07ee6a96 crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0x07f6be72 register_mce_write_callback -EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0x0816e64e ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0x0865cd54 ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x088cebc7 tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x08b53e38 devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec -EXPORT_SYMBOL_GPL vmlinux 0x08cc2eb4 uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0x08db86ef vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0x08e596bd ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x08e841c3 vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0x08f3acb5 rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0x0903cb29 usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0x090d3093 thermal_notify_framework -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x0936540e crypto_ablkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x093a19cb netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0x0940e8b6 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0951f5df adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0x0989a426 securityfs_create_dentry -EXPORT_SYMBOL_GPL vmlinux 0x0989dbda usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0x09b8c457 rt_mutex_destroy -EXPORT_SYMBOL_GPL vmlinux 0x09c99179 pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0x09dc6ae5 __xenbus_register_frontend -EXPORT_SYMBOL_GPL vmlinux 0x09efbd0c gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0x09fe0c42 sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0x09ff9d0c __class_create -EXPORT_SYMBOL_GPL vmlinux 0x0a072b1c xenbus_alloc_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x0a33a3a5 pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x0a4fde00 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0a6111d1 blk_unprep_request -EXPORT_SYMBOL_GPL vmlinux 0x0a89b06f tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0x0a8e338d dma_buf_kunmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0x0a911dff cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0x0abc9206 cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0x0afd34bb __module_address -EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b217587 usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x0b2c2f17 sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0x0b3db15c pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add -EXPORT_SYMBOL_GPL vmlinux 0x0b6678bd usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x0b6f7ad3 ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0x0b9e3096 fpu__save -EXPORT_SYMBOL_GPL vmlinux 0x0ba4ea8c pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0x0bc6a4c1 pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x0be2c213 rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0x0bee5092 bdev_read_page -EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x0c2e4ff9 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x0c4d9496 subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0x0c4f1276 cpufreq_frequency_table_target -EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range -EXPORT_SYMBOL_GPL vmlinux 0x0c80e3fe efivar_init -EXPORT_SYMBOL_GPL vmlinux 0x0c90e698 to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x0cd2def3 skcipher_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0x0d195b4d shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x0d26ff1d ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0x0d411832 da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d6f02f4 sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0x0d72bd5e usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x0d854fe0 ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0x0da35e7d cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0x0daacb32 pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0x0dc6849e pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0de30a53 __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0x0df855d3 __mmu_notifier_invalidate_range_end -EXPORT_SYMBOL_GPL vmlinux 0x0df925f6 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels -EXPORT_SYMBOL_GPL vmlinux 0x0e11f606 clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release -EXPORT_SYMBOL_GPL vmlinux 0x0e41738f ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x0e63eab6 __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0x0e775383 nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0x0e8c4e10 skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x0e9ff990 perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0x0ea41f64 pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x0ead2025 fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0x0eaf8ee4 devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x0eba09f4 disk_part_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x0ec58c80 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0x0ecf823a static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x0ed6123a sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0x0ed8a11a pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0x0eda0f8f device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x0f012044 __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain -EXPORT_SYMBOL_GPL vmlinux 0x0f312e86 cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x0f4315ff gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0x0f4b6b46 aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0x0f98623a crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x0fa138de xen_hvm_need_lapic -EXPORT_SYMBOL_GPL vmlinux 0x0fa366ee gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi -EXPORT_SYMBOL_GPL vmlinux 0x0fe2d570 xenbus_directory -EXPORT_SYMBOL_GPL vmlinux 0x0fec329c sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x10287db3 arizona_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x102cafd5 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0x10364b2a ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0x1047f89b pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x105de242 ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0x10a72f82 devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x10b0cc5a wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x10b0d5f8 seq_open_net -EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer -EXPORT_SYMBOL_GPL vmlinux 0x11185dfe hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0x11398c86 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x113b92e3 vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x115fbe93 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0x117c7305 hwpoison_filter_dev_major -EXPORT_SYMBOL_GPL vmlinux 0x1181b1af transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x118f51c7 ata_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x11914a00 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0x11929684 irq_create_mapping -EXPORT_SYMBOL_GPL vmlinux 0x11a3e017 _gpiochip_irqchip_add -EXPORT_SYMBOL_GPL vmlinux 0x11c86556 da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x11caddc7 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0x11e8bf66 arizona_dev_exit -EXPORT_SYMBOL_GPL vmlinux 0x121c44af tps65912_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1230f695 uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x12365646 sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x1263de5b devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x12664a65 __sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x128a5934 tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x128cb2a4 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x12a65e87 inet_csk_compat_getsockopt -EXPORT_SYMBOL_GPL vmlinux 0x12c4ef7c acpi_dma_request_slave_chan_by_index -EXPORT_SYMBOL_GPL vmlinux 0x12d0f0b5 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0x12e22bea wait_for_tpm_stat -EXPORT_SYMBOL_GPL vmlinux 0x12ea3c14 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0x12efd8eb virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0x12f31268 usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0x1307ec93 crypto_init_ahash_spawn -EXPORT_SYMBOL_GPL vmlinux 0x130bd388 check_tsc_disabled -EXPORT_SYMBOL_GPL vmlinux 0x130de01d trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0x130e8c98 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0x13181a21 iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x132cc9e7 register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x133527b8 blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0x134b569e ping_seq_fops -EXPORT_SYMBOL_GPL vmlinux 0x13506468 fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1362ce02 extcon_get_cable_state -EXPORT_SYMBOL_GPL vmlinux 0x136b6156 perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0x13862141 wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init -EXPORT_SYMBOL_GPL vmlinux 0x13985c04 uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x139c89ea swiotlb_unmap_page -EXPORT_SYMBOL_GPL vmlinux 0x13a52e00 sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen -EXPORT_SYMBOL_GPL vmlinux 0x13b1dc6c usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0x13b89dee pinctrl_request_gpio -EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0x13f51fc3 ms_hyperv -EXPORT_SYMBOL_GPL vmlinux 0x14208e72 handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0x142d0012 sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0x1441a483 bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0x1445d22b bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0x144f2eae led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x146c3a4f page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0x14765cfd mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0x14774b5d clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x149369ab xen_swiotlb_dma_mapping_error -EXPORT_SYMBOL_GPL vmlinux 0x14981779 devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x14a6f678 ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0x14dff2c1 do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0x15010e1f arbitrary_virt_to_machine -EXPORT_SYMBOL_GPL vmlinux 0x151014a7 regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x15162a85 regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x151b064c power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0x153f933a attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0x154a1844 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x155ddb63 reservation_object_wait_timeout_rcu -EXPORT_SYMBOL_GPL vmlinux 0x15665ca8 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x15670b25 regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1568618d sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x158ea133 pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x15a55925 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0x15a6aa00 pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0x15b0606e e820_any_mapped -EXPORT_SYMBOL_GPL vmlinux 0x15bcd4eb od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x15d1f121 pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started -EXPORT_SYMBOL_GPL vmlinux 0x15f4b936 __blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x15fc0e9c thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x163485c3 class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress -EXPORT_SYMBOL_GPL vmlinux 0x165c1add mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x16647135 pci_get_hp_params -EXPORT_SYMBOL_GPL vmlinux 0x1672d9ed nd_blk_region_set_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x1674e2ed bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x167b0316 ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x1684d3ab alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0x16a2d436 virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0x16a7b213 irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0x16c6090e i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x16dc2d60 sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0x16e215c6 wm8997_patch -EXPORT_SYMBOL_GPL vmlinux 0x16f5c094 gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0x16f9097a do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x1721f49c tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x172817ee list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x172d1c7a clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0x1758f233 kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub -EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x1780ade6 lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0x1782de9e device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online -EXPORT_SYMBOL_GPL vmlinux 0x179af052 inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x17c0f479 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x17cf2108 nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0x17dbf80e msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0x17e82df6 uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0x17eb45ce __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x18080751 dma_buf_vmap -EXPORT_SYMBOL_GPL vmlinux 0x181d2113 regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x1824ecee device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x1829b9ed hwpoison_filter_memcg -EXPORT_SYMBOL_GPL vmlinux 0x1837d352 component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0x184bcb70 pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x184d9676 devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt -EXPORT_SYMBOL_GPL vmlinux 0x1862f6b1 dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0x1866772a serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x186c25a8 udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert -EXPORT_SYMBOL_GPL vmlinux 0x18a2ca23 wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0x18b8d2c2 bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x18bc3c5a trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x18d1da06 handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0x18dcc4a4 gnttab_unmap_refs -EXPORT_SYMBOL_GPL vmlinux 0x18df9726 crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x18f5e50e arch_apei_enable_cmcff -EXPORT_SYMBOL_GPL vmlinux 0x18f83fab gnttab_grant_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0x19119803 __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x19146592 bio_alloc_mddev -EXPORT_SYMBOL_GPL vmlinux 0x1917a3f6 validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x191f9209 gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0x19256e73 led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0x194d99a4 devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x195ca67c sg_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x195cca2a pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore -EXPORT_SYMBOL_GPL vmlinux 0x1972786c fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0x1974722e usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x19793f3c xenbus_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x19868150 regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x19905380 virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19bbdb58 iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x19e08e01 percpu_ida_destroy -EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x19f58bd4 gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x19ff09ed gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0x1a07e89f arizona_clk32k_enable -EXPORT_SYMBOL_GPL vmlinux 0x1a6cbf8b gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x1a928419 ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table -EXPORT_SYMBOL_GPL vmlinux 0x1a984a63 dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x1ab0aaad blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0x1ab5f939 tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing -EXPORT_SYMBOL_GPL vmlinux 0x1aea95c0 power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x1af9d31a rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x1afd1aa8 usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0x1b03c9df nvdimm_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x1b20a2b9 xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0x1b22a5a3 driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x1b301e53 ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0x1b38b3c6 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x1b4cd286 __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1b5fdb84 device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1b885f3f regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x1b893f31 __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return -EXPORT_SYMBOL_GPL vmlinux 0x1ba28f21 shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0x1bad07bb key_type_user -EXPORT_SYMBOL_GPL vmlinux 0x1baeef6b pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0x1baf412f mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x1bb1ea71 pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0x1bb632ac sched_setscheduler -EXPORT_SYMBOL_GPL vmlinux 0x1bc09cab usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x1bc125f7 disk_map_sector_rcu -EXPORT_SYMBOL_GPL vmlinux 0x1bc3d2c9 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x1bdfa49d vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c5ee8af device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase -EXPORT_SYMBOL_GPL vmlinux 0x1c6660c7 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0x1c751528 ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 -EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1c988046 ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0x1cdb2147 zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0x1d03aa30 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x1d0ed0cd sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d3e8148 da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1d459685 xstate_size -EXPORT_SYMBOL_GPL vmlinux 0x1d4c3b77 tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings -EXPORT_SYMBOL_GPL vmlinux 0x1d5d651b gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x1d60a282 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0x1d652735 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x1d65ca5c led_init_core -EXPORT_SYMBOL_GPL vmlinux 0x1d739e1c xen_set_callback_via -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x1d7cb586 clk_register_fixed_rate_with_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x1dafbe68 blkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x1dc34809 elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1ded4aee device_init_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x1def880e bind_interdomain_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x1e000879 hwpoison_filter_enable -EXPORT_SYMBOL_GPL vmlinux 0x1e12b409 dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x1e1c47bf dummy_con -EXPORT_SYMBOL_GPL vmlinux 0x1e4ea150 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1e608e13 disk_part_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x1e68ce14 trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e830e69 devm_mdiobus_alloc_size -EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebac2bd getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ecc368a cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x1edc21cb hwpoison_filter_flags_mask -EXPORT_SYMBOL_GPL vmlinux 0x1ee71b04 nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0x1efda1a4 inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x1f142faf klp_register_patch -EXPORT_SYMBOL_GPL vmlinux 0x1f176a29 spi_master_resume -EXPORT_SYMBOL_GPL vmlinux 0x1f1988f7 hwpoison_filter_flags_value -EXPORT_SYMBOL_GPL vmlinux 0x1f488dbf debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0x1f630840 xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x1f68ca07 wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0x1f68e47b pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x1fbbb37a gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0x1fc5e565 raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0x1ff1f493 kick_process -EXPORT_SYMBOL_GPL vmlinux 0x1ff6a053 devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x200cc695 __free_iova -EXPORT_SYMBOL_GPL vmlinux 0x20196a4b devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x2034badf virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x206013b5 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x206101d8 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x20775f57 bpf_prog_realloc -EXPORT_SYMBOL_GPL vmlinux 0x207f2ede hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x208f2906 ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x2091c554 perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0x209ec764 xen_event_channel_op_compat -EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0x20b871c9 devm_acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x20cee4b1 usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x20f935a0 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x21000a58 tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x2134c465 rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x2134da7c power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0x213d0f2e usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x21489adb usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x2165651e crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0x216bd843 wm8400_block_read -EXPORT_SYMBOL_GPL vmlinux 0x217d2437 kill_pid_info_as_cred -EXPORT_SYMBOL_GPL vmlinux 0x2183c3e2 xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21b17e11 ata_acpi_gtm -EXPORT_SYMBOL_GPL vmlinux 0x21c4c1a5 thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21df6d75 sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0x221133f2 regmap_write_bits -EXPORT_SYMBOL_GPL vmlinux 0x222abf8a inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0x222e4b8f tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x223338a5 cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0x2245a219 uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0x224ca361 __mmu_notifier_invalidate_range_start -EXPORT_SYMBOL_GPL vmlinux 0x224cb6a7 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0x2255c2d2 debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0x225aac25 clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0x226acb71 gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x228ccbe5 pinctrl_add_gpio_ranges -EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 -EXPORT_SYMBOL_GPL vmlinux 0x2299ec81 perf_assign_events -EXPORT_SYMBOL_GPL vmlinux 0x22a12929 devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0x22a2048d xen_swiotlb_sync_sg_for_device -EXPORT_SYMBOL_GPL vmlinux 0x22bc3677 inet_csk_compat_setsockopt -EXPORT_SYMBOL_GPL vmlinux 0x22f26271 blkg_print_stat_bytes -EXPORT_SYMBOL_GPL vmlinux 0x2309898f bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x23413fb6 rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0x2360608a virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0x2366a2c0 errata -EXPORT_SYMBOL_GPL vmlinux 0x236d5b74 preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x23800238 sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x23857aa0 clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x2386503c regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x2396f0c1 rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x2398bd52 led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0x23e1714d class_destroy -EXPORT_SYMBOL_GPL vmlinux 0x23e8915c wait_on_page_bit_killable_timeout -EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x23fb92d6 __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x23fcc2bf set_pages_array_wt -EXPORT_SYMBOL_GPL vmlinux 0x24011e14 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0x243f1b65 efivar_entry_set_get_size -EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0x245cad97 __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x24694f45 wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x2469810f __rcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2484198a acpi_dev_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x24913ba9 scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x249d488b relay_reset -EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key -EXPORT_SYMBOL_GPL vmlinux 0x24c7698a xenbus_write -EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset -EXPORT_SYMBOL_GPL vmlinux 0x24f45195 usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x2505504a kallsyms_on_each_symbol -EXPORT_SYMBOL_GPL vmlinux 0x250a8b9c seq_release_net -EXPORT_SYMBOL_GPL vmlinux 0x2512cf3b device_create -EXPORT_SYMBOL_GPL vmlinux 0x251de910 platform_bus -EXPORT_SYMBOL_GPL vmlinux 0x251f41c8 watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x252bd2aa scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0x252c09be injectm -EXPORT_SYMBOL_GPL vmlinux 0x252df20f xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x2545c170 unregister_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0x256a0934 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0x25c4a589 rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0x25d700b8 gnttab_foreach_grant_in_range -EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr -EXPORT_SYMBOL_GPL vmlinux 0x260ffb3b ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0x26286517 skb_gso_transport_seglen -EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock -EXPORT_SYMBOL_GPL vmlinux 0x2643a07d xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0x264a3f17 regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x264ae4c6 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x265da64a rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x2676fa11 powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0x26965721 slow_virt_to_phys -EXPORT_SYMBOL_GPL vmlinux 0x269afc93 ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0x26aac4f1 xenbus_frontend_closed -EXPORT_SYMBOL_GPL vmlinux 0x26b3c701 __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x26bd689f tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26ccc780 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x27075825 devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0x27325d08 dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x27328358 map_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x274e4096 xen_unregister_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0x27625abe dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0x27810d3e scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0x27826e47 securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x2797f2ce attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0x279cb985 apei_exec_pre_map_gars -EXPORT_SYMBOL_GPL vmlinux 0x27a9ee6c spi_master_suspend -EXPORT_SYMBOL_GPL vmlinux 0x27b4c961 dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0x27c0c4be eventfd_ctx_read -EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info -EXPORT_SYMBOL_GPL vmlinux 0x27cf204a cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0x27d0716d power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27f62f6b irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x28084a7d reserve_iova -EXPORT_SYMBOL_GPL vmlinux 0x2812e8cc get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0x2827bd22 ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x283a3283 ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0x283e1179 list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0x28428423 print_context_stack -EXPORT_SYMBOL_GPL vmlinux 0x284b9aab __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x2858b97f pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0x28653624 led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x288fd579 extcon_unregister_interest -EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices -EXPORT_SYMBOL_GPL vmlinux 0x2900befa dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0x29019a17 __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x290cb882 pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x292f2c0a phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x2950a4fd __pci_complete_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x29979e63 __sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0x29ab740a tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0x29d80dd2 rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29f0a30d max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0x2a0543ea hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2a20cac7 pci_try_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x2a277163 da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0x2a2ed8e9 register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x2a3902eb sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0x2a3cfe65 cpufreq_governor_dbs -EXPORT_SYMBOL_GPL vmlinux 0x2a3fcbdf crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0x2a41d439 blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0x2a4866a3 ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2a743a78 ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0x2a7a0643 ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x2aa5cba2 srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x2ab1b8c8 __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x2ab1fad2 crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0x2ae50a27 pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x2af63321 acpi_dev_resource_address_space -EXPORT_SYMBOL_GPL vmlinux 0x2af8ba78 phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0x2afaaee3 usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x2b032958 usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0x2b116fc8 __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0x2b2f9566 inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x2b355634 inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x2b37f81e unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0x2b4a9514 fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0x2b508dee relay_close -EXPORT_SYMBOL_GPL vmlinux 0x2b88f3cb srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0x2b968a65 dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0x2bd729e4 ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0x2bda2243 cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0x2bda70fa devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc -EXPORT_SYMBOL_GPL vmlinux 0x2c083109 __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x2c0ef571 rio_request_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c2fea52 da903x_update -EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c7d9c64 xen_store_interface -EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2cc04d8f pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x2cd0b218 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq -EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0x2cf6f43c metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2d134a57 da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d23bbcc __put_net -EXPORT_SYMBOL_GPL vmlinux 0x2d3448e8 irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d4adc3f crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0x2d4fe352 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers -EXPORT_SYMBOL_GPL vmlinux 0x2d5ccf39 rio_get_device -EXPORT_SYMBOL_GPL vmlinux 0x2d621d94 public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0x2d70d9c2 __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0x2d8ebabe mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0x2d9abb84 blk_queue_bypass_start -EXPORT_SYMBOL_GPL vmlinux 0x2d9f2ce3 sched_clock_idle_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x2de5d705 xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0x2df243c8 rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0x2dff0b53 dio_end_io -EXPORT_SYMBOL_GPL vmlinux 0x2e01fe18 skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0x2e06159f pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x2e1da9fb probe_kernel_read -EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e2df7f4 irq_remapping_cap -EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2e3ce03e regmap_update_bits_async -EXPORT_SYMBOL_GPL vmlinux 0x2e406162 apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0x2e5035aa xen_swiotlb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x2e78bf95 transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x2e80de13 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0x2e835cde wm8400_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x2eae8015 anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x2ec7f995 xen_find_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0x2ecc95d2 pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0x2eda0bea regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0x2eea9fa4 spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x2ef29b24 anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f27165d ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register -EXPORT_SYMBOL_GPL vmlinux 0x2f462644 dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x2faaafda __bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x2fb4fe82 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x2fd4fc70 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake -EXPORT_SYMBOL_GPL vmlinux 0x3009092c devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0x30111993 dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0x301b694b md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0x301c1c89 debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0x302929ba usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0x302deb46 __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0x30421683 crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x30635782 cpu_has_xfeatures -EXPORT_SYMBOL_GPL vmlinux 0x3068def6 regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0x307099dc da903x_read -EXPORT_SYMBOL_GPL vmlinux 0x30772eff xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x307d2329 xen_swiotlb_set_dma_mask -EXPORT_SYMBOL_GPL vmlinux 0x307d97c4 single_open_net -EXPORT_SYMBOL_GPL vmlinux 0x30905541 cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0x30abb6ed xenbus_watch_path -EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x31007cff bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0x3101c816 x509_request_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x31074a33 clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock -EXPORT_SYMBOL_GPL vmlinux 0x310fc319 mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0x3114341b posix_timers_register_clock -EXPORT_SYMBOL_GPL vmlinux 0x3115c706 spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0x312078f6 ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x314c1ffc __netpoll_free_async -EXPORT_SYMBOL_GPL vmlinux 0x31568a06 pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0x31601eb6 wbc_account_io -EXPORT_SYMBOL_GPL vmlinux 0x3181a98f virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0x319e0356 pwm_disable -EXPORT_SYMBOL_GPL vmlinux 0x31a25d2e debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x31c09bae wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put -EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31cde9e2 cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval -EXPORT_SYMBOL_GPL vmlinux 0x32257894 regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0x325e677c gnttab_grant_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x325f2f64 regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x326da856 irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x32803647 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update -EXPORT_SYMBOL_GPL vmlinux 0x3293fd84 devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0x32aeadde __add_pages -EXPORT_SYMBOL_GPL vmlinux 0x32afdc47 __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec -EXPORT_SYMBOL_GPL vmlinux 0x32be3f47 sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0x32be94ab pcc_mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32c781d9 i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0x32dcf61d xen_unmap_domain_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0x32dde88e ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0x32e3b076 mxcsr_feature_mask -EXPORT_SYMBOL_GPL vmlinux 0x334eba15 blkg_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition -EXPORT_SYMBOL_GPL vmlinux 0x3362b03c xen_p2m_size -EXPORT_SYMBOL_GPL vmlinux 0x33655159 xen_pcpu_hotplug_sync -EXPORT_SYMBOL_GPL vmlinux 0x3371772f devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x33b2f7a7 ata_sff_data_xfer_noirq -EXPORT_SYMBOL_GPL vmlinux 0x33b96e5d apei_exec_write_register -EXPORT_SYMBOL_GPL vmlinux 0x33c378ab power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0x33ea1df0 sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x3416f6dc wakeup_source_prepare -EXPORT_SYMBOL_GPL vmlinux 0x343c33cf acpi_create_platform_device -EXPORT_SYMBOL_GPL vmlinux 0x346b3a5d tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get -EXPORT_SYMBOL_GPL vmlinux 0x34851cfc spi_setup -EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0x34a8da5f __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x34c84ab3 blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x34e6629d usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x34f96b52 regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0x3512e005 ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched -EXPORT_SYMBOL_GPL vmlinux 0x352650ee gnttab_batch_map -EXPORT_SYMBOL_GPL vmlinux 0x35328a06 iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0x35415520 powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0x358f44a0 power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x35910f72 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x35a2ec05 i2c_new_dummy -EXPORT_SYMBOL_GPL vmlinux 0x35b29745 pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x35b67f65 skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0x35bf2acd nd_fletcher64 -EXPORT_SYMBOL_GPL vmlinux 0x35d39e7a add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x35d546b1 pinctrl_utils_dt_free_map -EXPORT_SYMBOL_GPL vmlinux 0x35db13d3 crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x360b1f34 irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x3612d33c iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x36223c49 debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0x362430f0 component_del -EXPORT_SYMBOL_GPL vmlinux 0x3668af32 pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0x3683995a ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0x368f1fea static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x368f289c xfrm_inner_extract_output -EXPORT_SYMBOL_GPL vmlinux 0x36906bfb blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x3695042b __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0x36966aca unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0x3696d527 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36b1b624 gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x36b33f56 blk_queue_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled -EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x36d9bcab flush_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x36e2adc7 bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0x3701a643 usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0x37191143 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0x372b6db2 fuse_get_req_for_background -EXPORT_SYMBOL_GPL vmlinux 0x37325dba devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0x37522097 serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x377dc878 init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x378a26b5 system_trusted_keyring -EXPORT_SYMBOL_GPL vmlinux 0x37b4da47 blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x37f1ffbf gdt_page -EXPORT_SYMBOL_GPL vmlinux 0x37ff32d2 fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0x38053d24 dax_pmd_fault -EXPORT_SYMBOL_GPL vmlinux 0x3824a940 ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x385070fc rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end -EXPORT_SYMBOL_GPL vmlinux 0x387ebfcf fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0x389dae51 xenbus_dev_fatal -EXPORT_SYMBOL_GPL vmlinux 0x38c3ef7a gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38f3cf4b tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0x39218330 pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x392fe739 look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0x39339594 rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0x394b68d6 crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0x39597d25 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x395dc08e fat_attach -EXPORT_SYMBOL_GPL vmlinux 0x39753c43 dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x3977bc38 pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x397d7737 hypervisor_kobj -EXPORT_SYMBOL_GPL vmlinux 0x39898b8f skcipher_geniv_exit -EXPORT_SYMBOL_GPL vmlinux 0x39b1319f iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x39c2ac56 pwm_config -EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current -EXPORT_SYMBOL_GPL vmlinux 0x39d57bd9 rio_get_asm -EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module -EXPORT_SYMBOL_GPL vmlinux 0x39f66901 tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0x3a00fb68 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x3a0cf966 to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0x3a38dc65 memory_failure -EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x3a410a00 perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x3a421ab8 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x3a42af27 md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0x3a465294 usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3a4b1e29 sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a58472a pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0x3a609e48 __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0x3a60b72a phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn -EXPORT_SYMBOL_GPL vmlinux 0x3a8e48a1 fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3ad0e201 scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x3ae5123b __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x3aedb6d1 security_kernel_fw_from_file -EXPORT_SYMBOL_GPL vmlinux 0x3b2d7811 fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0x3b411846 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0x3b488506 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0x3b547bc9 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x3b5b77d4 wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x3b6ea44b spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0x3b6f9ca0 pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3b7145bb apei_exec_read_register_value -EXPORT_SYMBOL_GPL vmlinux 0x3b92b1eb tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x3bccd614 iommu_present -EXPORT_SYMBOL_GPL vmlinux 0x3be1031c __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x3bf950f4 pwmchip_add_with_polarity -EXPORT_SYMBOL_GPL vmlinux 0x3c1c9fcf __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0x3c22d184 clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0x3c2cb49b pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x3c3cdc1a crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0x3c52cc83 pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x3c7164d8 __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x3c7a8d48 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x3c80aed9 get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag -EXPORT_SYMBOL_GPL vmlinux 0x3c9ea8e4 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3cd68fbd regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0x3cd731a1 tpm_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x3d003739 ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0x3d04748a key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0x3d07d8af find_module -EXPORT_SYMBOL_GPL vmlinux 0x3d1c9f3d crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d5f392d acpi_os_unmap_memory -EXPORT_SYMBOL_GPL vmlinux 0x3d7ea99a gnttab_grant_foreign_transfer -EXPORT_SYMBOL_GPL vmlinux 0x3da58470 tps65912_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x3da67a23 fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x3dae6404 unregister_jprobes -EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab -EXPORT_SYMBOL_GPL vmlinux 0x3dcfe50a pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3dd4a2a6 tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0x3dd55ecd sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x3de23f79 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0x3de4c1a4 bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3dfc436e percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x3e05d06d crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0x3e2050b6 rhashtable_walk_init -EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x3e435a1a platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3e4fb90b pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0x3e526838 pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x3e54b244 btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e8851f6 sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup -EXPORT_SYMBOL_GPL vmlinux 0x3ec52f73 trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x3ec79c26 wm8350_device_exit -EXPORT_SYMBOL_GPL vmlinux 0x3ecd71a1 usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0x3ee25d23 intel_svm_unbind_mm -EXPORT_SYMBOL_GPL vmlinux 0x3ee9072c regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0x3ef877cb alloc_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0x3f0d252d wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x3f229c4c oops_begin -EXPORT_SYMBOL_GPL vmlinux 0x3f2f29f7 ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x3f30efb9 rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0x3f30f19f register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x3f4dcb76 gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0x3f60e94b register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x3f83b308 ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0x3f84d4c9 gnttab_release_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x3f8dd8ca add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0x3fd056d6 rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x3ffddd31 pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release -EXPORT_SYMBOL_GPL vmlinux 0x4010b80f pmc_atom_read -EXPORT_SYMBOL_GPL vmlinux 0x401e84c8 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x402354c1 devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0x4049502b serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x404e6a74 devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x405417a0 tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources -EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x408212ba hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0x408b2fc5 debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x40b8b792 sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0x40d242a4 class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x40d72b0f regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0x40d91289 pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x4104d78f pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x4117e0e5 blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x4119bf47 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0x4120165c ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x412f4a36 iommu_domain_get_attr -EXPORT_SYMBOL_GPL vmlinux 0x41327faa usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0x414ec312 ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x418710e7 mce_inject_log -EXPORT_SYMBOL_GPL vmlinux 0x4191548c arizona_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x41dbe761 bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x41e04fad bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x41f74014 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x41fdc093 iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x41ffb93d usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0x4213a51a efivar_entry_set_safe -EXPORT_SYMBOL_GPL vmlinux 0x4223db32 __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x424232f5 rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x4248d45c gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done -EXPORT_SYMBOL_GPL vmlinux 0x4255026d kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags -EXPORT_SYMBOL_GPL vmlinux 0x427d5c68 register_jprobes -EXPORT_SYMBOL_GPL vmlinux 0x427de547 pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x42bb8d80 perf_trace_buf_prepare -EXPORT_SYMBOL_GPL vmlinux 0x42c7aca3 rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0x42f07f65 clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x43050abf transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x43064444 wm5102_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x43194f83 mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0x431df8a7 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0x433bb7f3 unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x43455ee3 usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x4353b163 regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0x435941a2 blk_mq_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x4378fddb phy_create -EXPORT_SYMBOL_GPL vmlinux 0x437aca77 sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x4395953e usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x4395afd0 tps65217_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x43970a11 gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0x43a1aac2 regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key -EXPORT_SYMBOL_GPL vmlinux 0x43a577cd sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x43da8551 thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0x43e13c0c pinctrl_force_default -EXPORT_SYMBOL_GPL vmlinux 0x43e67983 irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift -EXPORT_SYMBOL_GPL vmlinux 0x43f77db5 blkg_print_stat_ios_recursive -EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x43f83b28 usb_phy_generic_register -EXPORT_SYMBOL_GPL vmlinux 0x43ff0c10 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0x4404459f blk_queue_rq_timed_out -EXPORT_SYMBOL_GPL vmlinux 0x44178a07 pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0x441fa356 irq_ts_save -EXPORT_SYMBOL_GPL vmlinux 0x443314e4 put_device -EXPORT_SYMBOL_GPL vmlinux 0x44334563 da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x443710ce tps65217_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x4443b95f blk_add_request_payload -EXPORT_SYMBOL_GPL vmlinux 0x4455d7c0 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x445d189c rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x446caf5b usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0x446e3c47 __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x4481db81 rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x449f842a scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0x44a91cc5 rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x44b5f97e pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats -EXPORT_SYMBOL_GPL vmlinux 0x44e1fc99 sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0x44e39955 mmput -EXPORT_SYMBOL_GPL vmlinux 0x44e87daa crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0x44fbb707 dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0x450fb522 kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state -EXPORT_SYMBOL_GPL vmlinux 0x454f1cb4 efi_query_variable_store -EXPORT_SYMBOL_GPL vmlinux 0x456a46e9 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0x4570cd18 bdev_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x45b3cf50 spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0x45b7d6a0 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x45c2a311 reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x45cc94da blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page -EXPORT_SYMBOL_GPL vmlinux 0x45d8e566 rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x46052822 __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x46060e76 regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0x46088ed8 nd_blk_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x460f31aa rodata_test_data -EXPORT_SYMBOL_GPL vmlinux 0x4610277a wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0x4631d2ac pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0x4638ddd4 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x46434934 disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x4663d883 dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x466f2217 usb_gen_phy_init -EXPORT_SYMBOL_GPL vmlinux 0x4678157d pci_bus_sem -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x469cfa11 irq_map_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x46dffad3 serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x46e399c1 max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x46ea55a5 restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x46f22750 mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x470614ea eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0x470f8c04 pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x4712993a percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x472e6c88 da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0x47312955 acpi_node_get_property_reference -EXPORT_SYMBOL_GPL vmlinux 0x47384f3a __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x4745caa7 mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0x4746f742 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x475e880d usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4765b702 usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0x4768b534 nvdimm_blk_region_create -EXPORT_SYMBOL_GPL vmlinux 0x477adff9 clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x47801c2d register_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x479efc46 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47c236c0 ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0x47c4f7fc nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0x47cbae40 file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw -EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47e34e51 ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire -EXPORT_SYMBOL_GPL vmlinux 0x4837298b inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0x483b6e86 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0x48682db9 perf_guest_get_msrs -EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh -EXPORT_SYMBOL_GPL vmlinux 0x4879cdeb rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0x48a708ea regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x48e102a9 pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0x48f45ad3 vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x49075de4 serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x490a8df6 x86_platform -EXPORT_SYMBOL_GPL vmlinux 0x4924c996 blk_queue_flush -EXPORT_SYMBOL_GPL vmlinux 0x49417ace get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x49d737a5 blk_mq_free_hctx_request -EXPORT_SYMBOL_GPL vmlinux 0x49e264bd rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x49e4eb33 pv_info -EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49eadcc3 crypto_register_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x49fb07dc wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0x4a08ab23 sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0x4a0a553d da903x_write -EXPORT_SYMBOL_GPL vmlinux 0x4a0dcb54 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0x4a189ae8 iommu_domain_window_enable -EXPORT_SYMBOL_GPL vmlinux 0x4a29d98f get_dcookie -EXPORT_SYMBOL_GPL vmlinux 0x4a3c3cf9 microcode_sanity_check -EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data -EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name -EXPORT_SYMBOL_GPL vmlinux 0x4a6d10c3 to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0x4a77d584 usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0x4a8062cf tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x4a90160e bprintf -EXPORT_SYMBOL_GPL vmlinux 0x4a9d4ced usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0x4a9e28af usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0x4ab84afb pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0x4ad609ce __compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0x4ae7eb53 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x4b3a7319 devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4b6acd6e __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x4bfff2ed ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0x4c192b05 rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0x4c2a472b __static_cpu_has_safe -EXPORT_SYMBOL_GPL vmlinux 0x4c317dff devres_find -EXPORT_SYMBOL_GPL vmlinux 0x4c3c53e0 task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4c645f9e static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table -EXPORT_SYMBOL_GPL vmlinux 0x4c7aa581 dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0x4c88839c netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0x4c903d4a pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0x4cb19485 blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0x4cdc4dec pstore_register -EXPORT_SYMBOL_GPL vmlinux 0x4cef778f pci_msi_set_desc -EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d2076af gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x4d60b812 efivar_entry_add -EXPORT_SYMBOL_GPL vmlinux 0x4d6a55a9 crypto_alg_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4db9a097 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0x4dc045c4 PageHuge -EXPORT_SYMBOL_GPL vmlinux 0x4dd91573 skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4de3e724 usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x4df55f31 __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0x4df6e727 devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0x4e1ea947 __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0x4e20b994 ping_err -EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path -EXPORT_SYMBOL_GPL vmlinux 0x4e28812f edac_subsys -EXPORT_SYMBOL_GPL vmlinux 0x4e57723d apei_read -EXPORT_SYMBOL_GPL vmlinux 0x4e5f3efa pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x4e6c2b09 policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0x4e70525c crypto_alloc_instance -EXPORT_SYMBOL_GPL vmlinux 0x4e74e625 gnttab_batch_copy -EXPORT_SYMBOL_GPL vmlinux 0x4e89a7de bus_set_iommu -EXPORT_SYMBOL_GPL vmlinux 0x4e906cb5 gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x4e946816 irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x4e97a832 tcp_death_row -EXPORT_SYMBOL_GPL vmlinux 0x4ed10c83 shash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x4ed1cbdb yield_to -EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4f05925c devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x4f2bf25d pwm_set_polarity -EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0x4f450ded xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f87b62c devres_get -EXPORT_SYMBOL_GPL vmlinux 0x4f8f573e pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0x4fc64ff2 trace_buffer_unlock_commit_regs -EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fdef7bd ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fe59540 ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x4ff1fc51 usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0x501aa9de device_move -EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi -EXPORT_SYMBOL_GPL vmlinux 0x502def69 __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x507de8c6 add_memory -EXPORT_SYMBOL_GPL vmlinux 0x50830b26 phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test -EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x50c26b1b device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x50d1f870 pgprot_writecombine -EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x50fdb63d fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5128d9ce tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0x512b1d19 register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x5146378d page_cache_sync_readahead -EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val -EXPORT_SYMBOL_GPL vmlinux 0x51783114 usb_bus_list_lock -EXPORT_SYMBOL_GPL vmlinux 0x517dfd18 debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0x517e28e0 max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x5189d364 regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq -EXPORT_SYMBOL_GPL vmlinux 0x5191bd3c efivar_work -EXPORT_SYMBOL_GPL vmlinux 0x51980985 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x51a4b805 get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0x51ab9695 bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0x51b18b8e scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x51c936cc driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x51dda640 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x51f8426d pwm_request -EXPORT_SYMBOL_GPL vmlinux 0x52108c2a iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL vmlinux 0x522f538b tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x523622a2 regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x5248e1e2 pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0x5251f730 pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0x5256f56d xen_swiotlb_sync_single_for_cpu -EXPORT_SYMBOL_GPL vmlinux 0x526751ae ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0x52a02df2 devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x52afe168 crypto_tfm_in_queue -EXPORT_SYMBOL_GPL vmlinux 0x52aff66d clk_register -EXPORT_SYMBOL_GPL vmlinux 0x52b24f2d devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0x52b79ef0 devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0x52c8119e bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0x52cda1d8 ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0x52d8c375 clk_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x52f44b81 rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0x52f492b0 wm8998_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x531835b2 ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0x534c0a5b pci_hp_change_slot_info -EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x53613b60 da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x53644e1b pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0x536740d7 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late -EXPORT_SYMBOL_GPL vmlinux 0x53b6f4ea md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0x540e5f45 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x541d1802 security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0x541fa453 cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 -EXPORT_SYMBOL_GPL vmlinux 0x5429008e transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x54495752 rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0x545ee955 fpu__activate_curr -EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time -EXPORT_SYMBOL_GPL vmlinux 0x5492bdd0 regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0x54f6dcc4 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled -EXPORT_SYMBOL_GPL vmlinux 0x55181725 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0x551ae402 thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x554f5cfb device_find_child -EXPORT_SYMBOL_GPL vmlinux 0x55526907 xen_features -EXPORT_SYMBOL_GPL vmlinux 0x5554c656 dax_fault -EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x5593d715 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x55eb53d3 __securityfs_setup_d_inode -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x55ff23b1 sis_info133_for_sata -EXPORT_SYMBOL_GPL vmlinux 0x5607dac6 bus_find_device_by_name -EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x562b6790 acpi_initialize_hp_context -EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable -EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x564ed926 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x5654f836 erst_get_record_id_next -EXPORT_SYMBOL_GPL vmlinux 0x565a043c devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen -EXPORT_SYMBOL_GPL vmlinux 0x567298a8 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map -EXPORT_SYMBOL_GPL vmlinux 0x56947347 dmi_walk -EXPORT_SYMBOL_GPL vmlinux 0x5698b7f4 usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up -EXPORT_SYMBOL_GPL vmlinux 0x56d9ed45 tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x56f9517a crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x570cc67d ata_base_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x5722825d unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0x572e2909 usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x57343999 pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x575c5f94 execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0x5779d445 xenbus_exists -EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57b51eb0 crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x57c22faa pwm_free -EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags -EXPORT_SYMBOL_GPL vmlinux 0x57d75ae8 ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x57da6b0a scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0x57f8062c acpi_dev_resource_io -EXPORT_SYMBOL_GPL vmlinux 0x58110346 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x585704ab aer_recover_queue -EXPORT_SYMBOL_GPL vmlinux 0x587bd46f alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname -EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0x590b55d6 swiotlb_tbl_sync_single -EXPORT_SYMBOL_GPL vmlinux 0x59239637 md_stop -EXPORT_SYMBOL_GPL vmlinux 0x593226c5 rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x59688cf7 atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x59ac510c phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0x59b0882b md_is_badblock -EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x59bb4be3 __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x5a1ca18a ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0x5a268864 acpi_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x5a2b1b67 gnttab_free_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x5a421194 filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0x5a517797 xen_remap_domain_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0x5a5621ef task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq -EXPORT_SYMBOL_GPL vmlinux 0x5a75fad2 regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a8dbc52 devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x5ab9e318 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0x5abcdffd mnt_clone_write -EXPORT_SYMBOL_GPL vmlinux 0x5abdccc9 debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0x5ac07ccc debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x5ac4fbbd pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5af03a28 gnttab_claim_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x5b01aaf5 ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0x5b058914 rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0x5b11b57a irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x5b1899f8 free_iova -EXPORT_SYMBOL_GPL vmlinux 0x5b4724c2 usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0x5b494dea regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x5b5c7206 da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x5b87e35f sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x5b8a69e4 usb_acpi_set_power_state -EXPORT_SYMBOL_GPL vmlinux 0x5bc28cbf crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x5bce8ca1 __atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bda13ca __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5c0f757c crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0x5c20921f pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker -EXPORT_SYMBOL_GPL vmlinux 0x5c864f1f ablkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x5c8bcceb devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x5ca36b52 ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x5d106499 regmap_update_bits_check_async -EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user -EXPORT_SYMBOL_GPL vmlinux 0x5d14e144 register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x5d185781 phy_exit -EXPORT_SYMBOL_GPL vmlinux 0x5d26879a iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0x5d366dec gnttab_cancel_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x5d5ca512 tasklet_hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x5d692a22 dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5d6f1bc6 regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0x5d7877f2 cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x5d7ccb2d crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0x5d8b9418 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5daa2317 crypto_init_spawn2 -EXPORT_SYMBOL_GPL vmlinux 0x5db661bd kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0x5dbb1213 clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid -EXPORT_SYMBOL_GPL vmlinux 0x5dcd7160 trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x5df6ef4b __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x5e13f7f9 dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl -EXPORT_SYMBOL_GPL vmlinux 0x5e94e6f1 pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0x5eb986fb ata_eh_qc_retry -EXPORT_SYMBOL_GPL vmlinux 0x5ec6d2c1 fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5ed356b4 thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5ede6ce7 crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0x5f226035 mod_delayed_work_on -EXPORT_SYMBOL_GPL vmlinux 0x5f29c66b devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable -EXPORT_SYMBOL_GPL vmlinux 0x5f42c6ac regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0x5f4c35c2 crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5f5fcdb7 securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x5f7e78e1 pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0x5f902130 device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x5fa06b68 ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0x5fabda73 dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0x5fb2981f wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x5fbb65d2 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x5fc27be9 acpi_dev_irq_flags -EXPORT_SYMBOL_GPL vmlinux 0x5fc7eb5e extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0x5fd333b2 ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0x5fd39329 percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt -EXPORT_SYMBOL_GPL vmlinux 0x5fe907b7 hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x5ffd1fe1 skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x6000b8ed inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x603717d9 dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush -EXPORT_SYMBOL_GPL vmlinux 0x60590f17 page_cache_async_readahead -EXPORT_SYMBOL_GPL vmlinux 0x6076ca8e acpi_dma_request_slave_chan_by_name -EXPORT_SYMBOL_GPL vmlinux 0x6081e3a9 ablkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x60930d37 save_mc_for_early -EXPORT_SYMBOL_GPL vmlinux 0x609a33b7 reservation_object_test_signaled_rcu -EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60a334a4 gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0x60adf3b3 crypto_ahash_type -EXPORT_SYMBOL_GPL vmlinux 0x60c3d793 devm_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x60cd73ed pv_apic_ops -EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq -EXPORT_SYMBOL_GPL vmlinux 0x60eab2fe xen_swiotlb_map_page -EXPORT_SYMBOL_GPL vmlinux 0x60f55b9f ata_acpi_gtm_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x60ffdbc1 rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x611a503e device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x61388844 ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0x614d49a5 ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x615b4c40 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x6199875f tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0x61baee0e posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0x61cde409 acpi_dev_resource_memory -EXPORT_SYMBOL_GPL vmlinux 0x61f2cfe8 acpi_ec_remove_query_handler -EXPORT_SYMBOL_GPL vmlinux 0x62052630 __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x6214b16c pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x623803c8 hest_disable -EXPORT_SYMBOL_GPL vmlinux 0x62460fba pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x62479c8c __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x6266f503 mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0x62a1c981 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0x62bd5a6d __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x62ca8133 md_run -EXPORT_SYMBOL_GPL vmlinux 0x62fb46b9 devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x6304f8d1 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x6314ed3e ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x632ce5f0 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0x6330dc4e blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x6333072c gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0x6335920e uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6345b1ce wakeup_source_drop -EXPORT_SYMBOL_GPL vmlinux 0x634bafcf rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0x6351faf6 acpi_kobj -EXPORT_SYMBOL_GPL vmlinux 0x63549e83 sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0x635ec980 apei_exec_post_unmap_gars -EXPORT_SYMBOL_GPL vmlinux 0x6362850b inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x637beaf1 ahash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x63825fbf devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x638fe045 unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x6396fe13 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x63982708 pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x63bf1052 driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x63c5b9eb regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x63c5e92c inet_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0x63d519d4 acpi_subsys_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x63d7cf16 regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0x63e2d96c rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str -EXPORT_SYMBOL_GPL vmlinux 0x63f14ebe io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x641e933f acpi_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0x641f9ddb ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x642fded4 reservation_object_get_fences_rcu -EXPORT_SYMBOL_GPL vmlinux 0x64318593 acpi_dev_filter_resource_type -EXPORT_SYMBOL_GPL vmlinux 0x643677f2 bsg_request_fn -EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched -EXPORT_SYMBOL_GPL vmlinux 0x643e92a7 __rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x645dc64a cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0x6478a3c6 tpm_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x647ff9a1 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x64977a05 relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0x649a344c crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x64b7069e apei_mce_report_mem_error -EXPORT_SYMBOL_GPL vmlinux 0x64c924c9 ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x64cb9c25 dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x64e111d2 usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0x64e80dfb freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x650e7cae crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0x650eba04 pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0x65245a34 fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0x6524f407 ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup -EXPORT_SYMBOL_GPL vmlinux 0x6528ce67 devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x6536953b btree_last -EXPORT_SYMBOL_GPL vmlinux 0x65682b19 acpi_subsys_suspend -EXPORT_SYMBOL_GPL vmlinux 0x658c8186 amd_get_nb_id -EXPORT_SYMBOL_GPL vmlinux 0x65a3df9c get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x65b080f1 ahash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65ceb000 tps65912_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x65f2e28c bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0x660891fa tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0x660d6204 regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x6613534c inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x6627a601 of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x664b4252 dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0x665ecab0 pv_time_ops -EXPORT_SYMBOL_GPL vmlinux 0x667bbfcc splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x668b6559 unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x66a27d5c ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66d9c9d1 ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x66f59931 rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x66fc74ea zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target -EXPORT_SYMBOL_GPL vmlinux 0x6745c9d0 elv_register -EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy -EXPORT_SYMBOL_GPL vmlinux 0x67505e76 pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x6757bd09 posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x67da787d pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0x67eb95ce __efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0x67ece5a5 pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x6804299a kthread_park -EXPORT_SYMBOL_GPL vmlinux 0x6810ce81 fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x68115f69 tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x683c85ad __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x6868f967 vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0x6876af45 regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0x68786160 dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x68823ab6 device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x6888313c generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0x68a56916 device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0x68b8e6f7 rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x68c8a5a0 extcon_set_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0x68e9d2a2 kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0x68fb384c pm_runtime_get_if_in_use -EXPORT_SYMBOL_GPL vmlinux 0x68fdc1cf mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0x69031972 gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x69117ecd scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval -EXPORT_SYMBOL_GPL vmlinux 0x69237afd __online_page_set_limits -EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0x694de492 unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x695e985c ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0x6965b165 crypto_unregister_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x697f45bf regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0x69baad54 power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x69e86239 extcon_get_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0x69f3140c save_stack_trace_tsk -EXPORT_SYMBOL_GPL vmlinux 0x69f8a444 serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x6a0eaa64 regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a268824 gpiochip_add -EXPORT_SYMBOL_GPL vmlinux 0x6a26f72a sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0x6a3f9e76 phy_get -EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a571e69 blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x6a7fdafc attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a936feb system_verify_data -EXPORT_SYMBOL_GPL vmlinux 0x6ab1b8bb usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x6acad21f acpi_get_cpuid -EXPORT_SYMBOL_GPL vmlinux 0x6b0d87f4 debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority -EXPORT_SYMBOL_GPL vmlinux 0x6b1410ef pcc_mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x6b1a28eb ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0x6b29b1e8 crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0x6b42d18e led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0x6b4f6a26 acpi_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x6b5478c3 dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0x6b6402f0 devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x6b7baa34 pci_cleanup_aer_uncorrect_error_status -EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b8f57cc regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x6b975b73 register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x6b9e59a7 serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0x6ba2c142 fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0x6bad1d31 tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0x6bb6e529 set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x6bf1b90d dmi_memdev_name -EXPORT_SYMBOL_GPL vmlinux 0x6bf8edf3 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0x6c030a6e component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x6c1251fd apei_exec_read_register -EXPORT_SYMBOL_GPL vmlinux 0x6c174f72 rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x6c211f28 xenbus_switch_state -EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data -EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c5af0c7 setup_irq -EXPORT_SYMBOL_GPL vmlinux 0x6c6538df init_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6c66f9e6 efivar_entry_remove -EXPORT_SYMBOL_GPL vmlinux 0x6c6e5e03 dmi_kobj -EXPORT_SYMBOL_GPL vmlinux 0x6c818042 led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions -EXPORT_SYMBOL_GPL vmlinux 0x6c87e5c3 pci_restore_ats_state -EXPORT_SYMBOL_GPL vmlinux 0x6c8930c9 rtc_irq_set_freq -EXPORT_SYMBOL_GPL vmlinux 0x6c8c5ea4 ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x6ca45a52 xenbus_watch_pathfmt -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq -EXPORT_SYMBOL_GPL vmlinux 0x6ca96a51 devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x6cc08046 irq_create_direct_mapping -EXPORT_SYMBOL_GPL vmlinux 0x6cc32a2a ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0x6cd3556f device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x6d0c7ca4 serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0x6d0fee94 extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d6ab0a9 tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x6db1803e regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0x6dbb2503 regmap_field_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x6dd14e1c tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0x6de27384 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy -EXPORT_SYMBOL_GPL vmlinux 0x6e21c0a0 serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0x6e250c4e power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0x6e32a0db arizona_dev_init -EXPORT_SYMBOL_GPL vmlinux 0x6e3eca96 pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x6e3f1d23 ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x6e55f52f tpm2_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x6e58ddf0 gnttab_end_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x6e6e13da regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x6e77f3c7 rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e85b00b local_touch_nmi -EXPORT_SYMBOL_GPL vmlinux 0x6e87de07 iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6e97e3f7 __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0x6ea4e399 bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x6ea98361 ioremap_page_range -EXPORT_SYMBOL_GPL vmlinux 0x6ebd9e5d __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6ed479ec smp_ops -EXPORT_SYMBOL_GPL vmlinux 0x6eddd276 class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x6edf6f02 ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0x6f121379 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0x6f15db7d sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6f1b2a0f ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x6f2aaade wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0x6f2dc195 get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0x6f38d7db perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0x6f402ba6 acpi_dev_resource_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x6f4f7923 __dax_pmd_fault -EXPORT_SYMBOL_GPL vmlinux 0x6f679ae9 usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x6f7dd3a6 ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto -EXPORT_SYMBOL_GPL vmlinux 0x6f836b17 pci_intx -EXPORT_SYMBOL_GPL vmlinux 0x6f87ebd4 pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0x6f9389c5 ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0x6f955bf4 usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0x6fb3b29c __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x6fb6f364 ip_tunnel_get_stats64 -EXPORT_SYMBOL_GPL vmlinux 0x6fb93b89 crypto_alloc_ablkcipher -EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x6ff08b08 pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x70014fa2 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x70023051 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x700a39e0 rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0x7012def6 gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x7047939d dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0x70802fd0 blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0x708792f1 pci_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x708e2f2d tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x708f2a8b usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0x70a789a2 net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x70b6f95c debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x70bdaac6 device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated -EXPORT_SYMBOL_GPL vmlinux 0x70c57c21 crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0x70cc62ca debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70d81e2f xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0x70e3637d __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0x70e4a1c7 ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x71224add gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x7153799b reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x715edf38 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x71683c28 pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0x7189c6ae bio_associate_current -EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71a79c6a device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0x71b2beb7 gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0x71bbabfb debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab -EXPORT_SYMBOL_GPL vmlinux 0x720255e0 trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x721fa15c event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0x722cd597 rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x72318d8c power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x72532da6 blkdev_read_iter -EXPORT_SYMBOL_GPL vmlinux 0x72544bef usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0x72689925 mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0x726fb9ab pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x72c0f17a regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0x72cf714d klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x72e5e8f1 sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x72ed2f9a pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x72fd501b acpi_subsys_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x73013896 xenbus_printf -EXPORT_SYMBOL_GPL vmlinux 0x730fa0a2 ata_scsi_simulate -EXPORT_SYMBOL_GPL vmlinux 0x731cc497 raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x731d2411 tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type -EXPORT_SYMBOL_GPL vmlinux 0x7320cddd rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x733624d9 fib_select_path -EXPORT_SYMBOL_GPL vmlinux 0x734c6df9 dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0x73690617 extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x737e4ad4 spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73ad4f8b extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0x73afb372 usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x73d9f838 fat_detach -EXPORT_SYMBOL_GPL vmlinux 0x74059eb9 inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x74242c35 smpboot_update_cpumask_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini -EXPORT_SYMBOL_GPL vmlinux 0x744d479a __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x745b87d7 ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0x745c6e50 acpiphp_unregister_attention -EXPORT_SYMBOL_GPL vmlinux 0x745e977a tpm2_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x747a438e console_drivers -EXPORT_SYMBOL_GPL vmlinux 0x7482fe36 extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7484b0c5 ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0x7487e143 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0x748e15cc gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0x74a3843e synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x74af6cf0 pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0x74b0eb26 remove_irq -EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74b9f79b hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74c08941 kvm_async_pf_task_wake -EXPORT_SYMBOL_GPL vmlinux 0x74d826ae gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x74deb10c used_vectors -EXPORT_SYMBOL_GPL vmlinux 0x75005ec1 mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x75097ee8 crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x750d77bb devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 -EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm -EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x752ce9dc usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0x7578dbaa devm_pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x757b49d2 kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x7598b9d5 led_trigger_show -EXPORT_SYMBOL_GPL vmlinux 0x75bb5623 pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0x75c902c6 syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x75d19116 shake_page -EXPORT_SYMBOL_GPL vmlinux 0x75ee1c72 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x75ff1cbe napi_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x760799b3 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0x761ff289 rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0x76437689 cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x7676b5d5 devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x76a5375c pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0x76ad4859 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0x76c2d453 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x76d06f64 __inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0x76d86c46 l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x76dcf430 device_attach -EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x77514058 rtc_irq_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x775a6ef5 kvm_read_and_reset_pf_reason -EXPORT_SYMBOL_GPL vmlinux 0x777216a7 unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0x778b675a pmc_atom_write -EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77da6f55 sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0x77f37a61 led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0x77fc6c14 rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x781ab56b blkcipher_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x781fd96d usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0x7824b8af dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x7829e375 pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x78575bee atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x786702b9 regmap_read -EXPORT_SYMBOL_GPL vmlinux 0x7874b5ec unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x78786267 dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x78ae5fcf pwm_can_sleep -EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0x78c705e2 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x78cc5bec hugetlb_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x792bfba2 pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0x79329d82 scsi_internal_device_unblock -EXPORT_SYMBOL_GPL vmlinux 0x7936f6dd ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x79374846 inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0x793bd951 to_nd_blk_region -EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off -EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x79620336 bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0x7969469d debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss -EXPORT_SYMBOL_GPL vmlinux 0x799b6d27 tps65912_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x79cce037 inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0x79d8dfc3 usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped -EXPORT_SYMBOL_GPL vmlinux 0x79efe889 xen_remap_domain_gfn_array -EXPORT_SYMBOL_GPL vmlinux 0x7a093833 set_memory_array_wt -EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x7a39482c devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x7a58d012 pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0x7a5ecc70 simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x7a68f4ec power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0x7a6d6612 arizona_clk32k_disable -EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0x7a95ab24 ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x7a9efd50 ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x7aa1780a nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0x7aa53d62 crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0x7ac8e5b0 acpi_gsi_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x7af345ac pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set -EXPORT_SYMBOL_GPL vmlinux 0x7b202401 usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x7b453473 ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x7b70ed5c pm_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0x7b809f9d debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7b9c14a3 shash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x7bc0ba10 wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0x7bcdd8b5 regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x7bcee7e3 regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x7bff0054 usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0x7c004e17 user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0x7c1722f6 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0x7c246180 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x7c3400e7 irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x7c378199 __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x7c3889ef page_endio -EXPORT_SYMBOL_GPL vmlinux 0x7c498fce efivar_entry_find -EXPORT_SYMBOL_GPL vmlinux 0x7c74ca59 xen_pci_frontend -EXPORT_SYMBOL_GPL vmlinux 0x7c779961 __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x7c89e95f led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0x7c91f14c blkcipher_aead_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7cb99689 powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0x7ccbd32e sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0x7cd5497a device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7cd8c6e5 trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0x7ce912ba scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cedf677 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d0e1d95 hv_setup_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0x7d3416cc md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0x7d35ae29 mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x7d581187 ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d5be7d7 blkg_print_stat_ios -EXPORT_SYMBOL_GPL vmlinux 0x7d68d1cc gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x7d6b3de8 acpi_dev_gpio_irq_get -EXPORT_SYMBOL_GPL vmlinux 0x7d7c6ca6 bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0x7d80574f bdev_write_page -EXPORT_SYMBOL_GPL vmlinux 0x7d83b51d class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x7d9c2402 __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7dbaa88b devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x7dcdc93f __tracepoint_extlog_mem_event -EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0x7df1cfba __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0x7dfb11bb pinctrl_remove_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x7e10ac5e __init_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0x7e225ed9 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0x7e39ba6d inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0x7e606a6d blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e8e9707 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0x7ea1a2bc probe_kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x7eaaf384 regmap_update_bits_check -EXPORT_SYMBOL_GPL vmlinux 0x7eb471ce pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0x7ebad32f dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0x7efd9dab unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x7f13d491 pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature -EXPORT_SYMBOL_GPL vmlinux 0x7f3658e6 fpstate_init -EXPORT_SYMBOL_GPL vmlinux 0x7f6b97f6 regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0x7f72f623 __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7ffdebc7 dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0x80156244 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x80434816 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0x8061bf2f regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x809529fd alloc_iova -EXPORT_SYMBOL_GPL vmlinux 0x809c9646 irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80c81b10 blkcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0x80d419c5 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80db493d ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x80f86866 unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x80fcbee0 pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x812bc743 ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0x812cebd4 get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x813e7efe blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0x8152e111 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x815636e4 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x81655cfd fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0x8171ab95 adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x8174d68e irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0x81902630 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0x8199353b dma_request_slave_channel_reason -EXPORT_SYMBOL_GPL vmlinux 0x81a84515 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0x81ba72a7 spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0x81cfbfc5 xenbus_map_ring -EXPORT_SYMBOL_GPL vmlinux 0x81d2d3bd crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0x81da0ba0 invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0x81e7df7c balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x81fa874a cpufreq_table_validate_and_show -EXPORT_SYMBOL_GPL vmlinux 0x8218238e gpiochip_set_chained_irqchip -EXPORT_SYMBOL_GPL vmlinux 0x823a0e40 sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0x8255ff4a rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x8258473f wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0x825e446c md_new_event -EXPORT_SYMBOL_GPL vmlinux 0x828a94c6 add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x82a9660d get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0x82ba3262 rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0x82be2cdd sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0x82cba7ea component_master_del -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82dbec19 erst_write -EXPORT_SYMBOL_GPL vmlinux 0x831ac850 ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0x832bcb4a pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x833d0d3c kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0x835dbef5 crypto_alloc_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x836666ce alarm_init -EXPORT_SYMBOL_GPL vmlinux 0x836b5362 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x83757547 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x838506c5 iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0x8388f395 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0x83a19d26 usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x83ba5fbb hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x83dc67e3 rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0x8436247d ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x84368bed __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge -EXPORT_SYMBOL_GPL vmlinux 0x84437f81 dma_buf_kmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0x8448f098 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x8480c14c balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x849044d1 regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x84a43cdd skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x84c96d60 regmap_write -EXPORT_SYMBOL_GPL vmlinux 0x84cdf46e of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x84d05745 ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x84e0d2de usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x84e8a768 rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0x84f25605 get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read -EXPORT_SYMBOL_GPL vmlinux 0x852546f1 smpboot_register_percpu_thread_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x85302bee pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0x8549bcba blk_queue_flush_queueable -EXPORT_SYMBOL_GPL vmlinux 0x854cc9eb param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x858dd1b7 tpm2_startup -EXPORT_SYMBOL_GPL vmlinux 0x85904bdb cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x859aea9a xen_set_domain_pte -EXPORT_SYMBOL_GPL vmlinux 0x859ec1a6 __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0x85a31455 pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x85a48a9b vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x85cb2c45 xen_has_pv_devices -EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq -EXPORT_SYMBOL_GPL vmlinux 0x8608afe5 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod -EXPORT_SYMBOL_GPL vmlinux 0x86244695 udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x862e42d3 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x8648ad4e usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0x864f8f14 led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8654be58 hv_remove_vmbus_irq -EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq -EXPORT_SYMBOL_GPL vmlinux 0x8666a7c5 fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x8677c0d3 rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x86819bc6 irq_ts_restore -EXPORT_SYMBOL_GPL vmlinux 0x86835190 debugfs_remove_recursive -EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x86a51007 gnttab_end_foreign_transfer -EXPORT_SYMBOL_GPL vmlinux 0x86dc420c generic_access_phys -EXPORT_SYMBOL_GPL vmlinux 0x86de973c crypto_lookup_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x86df61c7 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x86f49b68 clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x8702e548 process_srcu -EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared -EXPORT_SYMBOL_GPL vmlinux 0x8711abb7 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x87377829 nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error -EXPORT_SYMBOL_GPL vmlinux 0x875469c1 ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0x87b2c4c5 trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0x87e13f7a usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x87e3aac6 __mmu_notifier_invalidate_range -EXPORT_SYMBOL_GPL vmlinux 0x87e9777e regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0x87f5f82d __module_text_address -EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0x88136838 wm8997_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x882ae355 perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0x88386cdd devres_add -EXPORT_SYMBOL_GPL vmlinux 0x883b9bbe __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x889f1d60 scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0x88a84f5a ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88b43020 gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x88c57a5f dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x88d65f13 xenbus_unmap_ring_vfree -EXPORT_SYMBOL_GPL vmlinux 0x88e1c8c9 fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0x88f7cb09 gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames -EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x89287354 alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0x8932b0e6 device_rename -EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x894ef1e6 blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x8956aeae apei_exec_ctx_init -EXPORT_SYMBOL_GPL vmlinux 0x895e27b1 srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x896b26af io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0x896b5877 xen_swiotlb_sync_single_for_device -EXPORT_SYMBOL_GPL vmlinux 0x897fb429 tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x898e2b2e fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0x89bb09cb rt_mutex_timed_lock -EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x89bc7d27 trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0x89e39367 serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0x89e767be bus_register -EXPORT_SYMBOL_GPL vmlinux 0x89f569ea regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x8a06e989 raw_seq_open -EXPORT_SYMBOL_GPL vmlinux 0x8a1df3a0 find_symbol -EXPORT_SYMBOL_GPL vmlinux 0x8a3acd95 ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x8a456daf input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0x8a4b8066 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x8a559846 gnttab_setup_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod -EXPORT_SYMBOL_GPL vmlinux 0x8a5ca363 regulator_can_change_voltage -EXPORT_SYMBOL_GPL vmlinux 0x8a6c747b pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0x8a78989f irq_from_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control -EXPORT_SYMBOL_GPL vmlinux 0x8a902f65 phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8a9157ae virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0x8a9372bd acpi_subsys_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x8aa0f5bb tps65217_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x8ab229c7 sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0x8ab29f8a blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8abd0ed7 irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0x8ad44594 debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0x8ae6def6 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x8afbf4ae spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0x8b02ffd4 phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0x8b03c71a __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x8b04668e bind_interdomain_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b291552 lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x8b302130 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x8b34beda irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0x8b38991c register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x8b52bb42 device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x8b84a916 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0x8b9200fd lookup_address -EXPORT_SYMBOL_GPL vmlinux 0x8b96c75b efivars_kobject -EXPORT_SYMBOL_GPL vmlinux 0x8b9ad2b0 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0x8bd30bcc pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0x8bfb1319 fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c065946 driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8c06a108 xenbus_transaction_start -EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status -EXPORT_SYMBOL_GPL vmlinux 0x8c65a3fd inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c825f1b tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0x8c9d1661 arch_phys_wc_index -EXPORT_SYMBOL_GPL vmlinux 0x8cae54b5 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params -EXPORT_SYMBOL_GPL vmlinux 0x8cd9f935 setup_APIC_eilvt -EXPORT_SYMBOL_GPL vmlinux 0x8cea765f memalloc_socks -EXPORT_SYMBOL_GPL vmlinux 0x8ceb590f sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0x8cf3908d acpi_bus_trim -EXPORT_SYMBOL_GPL vmlinux 0x8cfa17ec virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x8d190226 ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d249395 iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0x8d48e09f fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8d522714 __rcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x8d8261e0 blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0x8d9fa235 acpi_os_map_iomem -EXPORT_SYMBOL_GPL vmlinux 0x8da7b735 rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0x8daf56bb inode_congested -EXPORT_SYMBOL_GPL vmlinux 0x8db479ab pci_reset_bridge_secondary_bus -EXPORT_SYMBOL_GPL vmlinux 0x8db69298 phy_put -EXPORT_SYMBOL_GPL vmlinux 0x8dded834 find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0x8de75f5e tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0x8df51a08 percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0x8df9a39b inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0x8e1172ac get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0x8e1f5499 device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x8e372a61 rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0x8e542fbf fpu__restore -EXPORT_SYMBOL_GPL vmlinux 0x8e584360 __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x8e893ddc wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x8ecbd253 pinctrl_dev_get_name -EXPORT_SYMBOL_GPL vmlinux 0x8ece07d8 inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x8f03854b unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f182677 subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x8f1d7c02 pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x8f242ccf pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x8f2ac945 clk_gpio_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x8f482b9f da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0x8f689704 ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8f7ab2df dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x8fc825f8 gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x8fdde573 crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x8fe481fa __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0x9002c2f7 arizona_set_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x9009602a acpi_bus_get_ejd -EXPORT_SYMBOL_GPL vmlinux 0x900c0869 cpu_tlbstate -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x903bb65b acpi_dev_resource_ext_address_space -EXPORT_SYMBOL_GPL vmlinux 0x905e1b7a sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x9071d9de ping_proc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x90807527 crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0x9099e86a kernfs_path -EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x90dc29df aout_dump_debugregs -EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify -EXPORT_SYMBOL_GPL vmlinux 0x90f95957 part_round_stats -EXPORT_SYMBOL_GPL vmlinux 0x9101d8b1 __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0x9107c8d3 bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0x910bd2d9 gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x9111e9e8 regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x91318c97 devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0x915b10b1 ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0x915dde62 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0x9172a49e pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x91928691 dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x9198ab31 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0x91c6c549 pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91ca148d debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x91cdb0d6 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0x91da1c3b regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x91ecd2d4 klp_unregister_patch -EXPORT_SYMBOL_GPL vmlinux 0x91f0c992 __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x9235b328 apei_get_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x923a6507 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x9251e315 regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x9273028d kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x928c4798 __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x92a0fafa skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0x92c3917a each_symbol_section -EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92ebf26d platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0x9304c6ac pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0x9312d80e evtchn_put -EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x9350d758 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x936fe37f blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0x937174da ref_module -EXPORT_SYMBOL_GPL vmlinux 0x93a17bb5 fsnotify -EXPORT_SYMBOL_GPL vmlinux 0x93afcfd0 pci_try_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x93b00b50 ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0x93d960d4 scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x93dc2586 pgprot_writethrough -EXPORT_SYMBOL_GPL vmlinux 0x93fe4651 acpi_get_pci_dev -EXPORT_SYMBOL_GPL vmlinux 0x94079390 dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x9428809d bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0x942c15d5 pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event -EXPORT_SYMBOL_GPL vmlinux 0x944024c4 shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x94443383 __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0x944bee04 module_mutex -EXPORT_SYMBOL_GPL vmlinux 0x9450550e percpu_ida_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9450c1a9 fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x947eb96c device_show_int -EXPORT_SYMBOL_GPL vmlinux 0x94803e0b rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x9497e2f6 sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x94a84c6e fuse_request_send -EXPORT_SYMBOL_GPL vmlinux 0x94b795a9 regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0x94b82cd3 irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x94ba94cc __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x94c318be apei_exec_collect_resources -EXPORT_SYMBOL_GPL vmlinux 0x94c8fbda vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0x94dc0892 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x94ebf22d lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0x94ec6abe init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop -EXPORT_SYMBOL_GPL vmlinux 0x94f21181 blk_mq_tags_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x9541bcfa split_page -EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x956e92ed cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0x956eb4f9 __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x957cad0a blk_mq_cancel_requeue_work -EXPORT_SYMBOL_GPL vmlinux 0x95809734 ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x95a10bd7 gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95de5965 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x95fea713 __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x964add15 xenbus_scanf -EXPORT_SYMBOL_GPL vmlinux 0x964d5c39 acpi_os_map_memory -EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x96626387 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x966675a6 subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x967a4eef serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x967e61c7 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x969b4df6 i2c_unlock_adapter -EXPORT_SYMBOL_GPL vmlinux 0x96be57a5 ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x96e1abc5 btree_init -EXPORT_SYMBOL_GPL vmlinux 0x96f55f7b devm_regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x970cee3a usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0x971121c1 xenbus_dev_error -EXPORT_SYMBOL_GPL vmlinux 0x973ab8ad cper_estatus_print -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x975fb184 __ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0x9761fb4b clk_register_gpio_mux -EXPORT_SYMBOL_GPL vmlinux 0x9766f691 acpi_dev_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x976b31ea wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x9774356a rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0x9792f11f devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x97a6b225 tpm2_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97e51d6c vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0x98074de9 devm_rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x980d1971 sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0x98145e78 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0x982c5904 kern_mount_data -EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9889d98c bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x98e3a689 usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0x98f29c0f device_property_present -EXPORT_SYMBOL_GPL vmlinux 0x98f9f73d fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on -EXPORT_SYMBOL_GPL vmlinux 0x990b082b ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0x9915ebb6 devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x99368900 rhashtable_walk_start -EXPORT_SYMBOL_GPL vmlinux 0x994b5769 mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9954997b pinctrl_dev_get_devname -EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x9973add9 __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x99763fdb dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range -EXPORT_SYMBOL_GPL vmlinux 0x997d1b59 inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x9984edfc dma_buf_kmap -EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x999e5846 regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x99a3049e fuse_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0x99b40bd8 xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x99e4a18e sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x99f78875 find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a3ddbc9 xenbus_probe_devices -EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck -EXPORT_SYMBOL_GPL vmlinux 0x9a935a8e regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x9a977446 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x9a9deef4 sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9acb1c63 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x9ad90558 device_remove_property_set -EXPORT_SYMBOL_GPL vmlinux 0x9ada2b4e virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x9ae24173 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9b0fd674 watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x9b1e8974 xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0x9b2124d7 blk_set_queue_dying -EXPORT_SYMBOL_GPL vmlinux 0x9b3fc044 get_hwpoison_page -EXPORT_SYMBOL_GPL vmlinux 0x9b4164a4 flush_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0x9b6a7412 idle_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x9b720312 acpi_target_system_state -EXPORT_SYMBOL_GPL vmlinux 0x9b88b12c intel_svm_bind_mm -EXPORT_SYMBOL_GPL vmlinux 0x9b95b1c9 uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus -EXPORT_SYMBOL_GPL vmlinux 0x9ba07b5d cm_notify_event -EXPORT_SYMBOL_GPL vmlinux 0x9ba2219c dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x9ba43442 driver_register -EXPORT_SYMBOL_GPL vmlinux 0x9bc66123 percpu_ida_free_tags -EXPORT_SYMBOL_GPL vmlinux 0x9bc8219e ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0x9bca03ca ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x9bd72b78 apei_write -EXPORT_SYMBOL_GPL vmlinux 0x9bdddc98 sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9c06647f usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0x9c09dc5c nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x9c1eb6a4 usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0x9c29ae72 crypto_create_tfm -EXPORT_SYMBOL_GPL vmlinux 0x9c2de449 memory_add_physaddr_to_nid -EXPORT_SYMBOL_GPL vmlinux 0x9c2e4b66 acpi_unregister_gsi -EXPORT_SYMBOL_GPL vmlinux 0x9c4293d5 ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x9c44fe2b fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0x9c462261 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0x9c56b49a wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0x9c7a81ee sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x9c87ad84 __get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x9c9607be acpi_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0x9caaeef6 cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ccdf526 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0x9cfcde18 ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9d06688b register_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0x9d2939b2 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x9d3587cd crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x9d3850e1 gnttab_alloc_grant_references -EXPORT_SYMBOL_GPL vmlinux 0x9d3b574f __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x9d64d213 pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0x9da73c60 usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9daa89db iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported -EXPORT_SYMBOL_GPL vmlinux 0x9dd5aab0 ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x9dd692f4 acpi_gpiochip_free_interrupts -EXPORT_SYMBOL_GPL vmlinux 0x9e05499a init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x9e0b0603 ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x9e1ca61a blk_mq_register_disk -EXPORT_SYMBOL_GPL vmlinux 0x9e1e9210 md_ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x9e28af53 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x9e3de157 crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x9e43461a devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e86eede mddev_congested -EXPORT_SYMBOL_GPL vmlinux 0x9ea168a1 blkdev_write_iter -EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9f0204a0 usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0x9f09b2b4 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9f85c4df device_add_property_set -EXPORT_SYMBOL_GPL vmlinux 0x9f92af83 x86_hyper_kvm -EXPORT_SYMBOL_GPL vmlinux 0x9f934201 acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x9f9d74f5 dax_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0x9fb43ad0 trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0x9fb56e2d led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0x9fba9d18 usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fd4c737 usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0x9fdbb9d5 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x9fdd4be8 ata_acpi_cbl_80wire -EXPORT_SYMBOL_GPL vmlinux 0x9fdf8e96 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9ff76f89 ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x9ff9fdea irq_find_matching_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xa014a6ac trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0xa01a4c7e sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xa01bb915 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xa0409c1f shmem_add_seals -EXPORT_SYMBOL_GPL vmlinux 0xa0d44aa7 class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xa0f2d36b ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0xa0f334d1 arch_add_memory -EXPORT_SYMBOL_GPL vmlinux 0xa0f543a1 device_create_vargs -EXPORT_SYMBOL_GPL vmlinux 0xa1031e1f debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type -EXPORT_SYMBOL_GPL vmlinux 0xa11b55b2 xen_start_info -EXPORT_SYMBOL_GPL vmlinux 0xa12dacf5 xenbus_unmap_ring -EXPORT_SYMBOL_GPL vmlinux 0xa12fef87 gnttab_unmap_refs_sync -EXPORT_SYMBOL_GPL vmlinux 0xa1498221 __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end -EXPORT_SYMBOL_GPL vmlinux 0xa16d330e single_release_net -EXPORT_SYMBOL_GPL vmlinux 0xa1750e71 mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0xa1939654 ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0xa1977950 platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xa1b0844c find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xa1b4e7d0 mmu_notifier_unregister_no_release -EXPORT_SYMBOL_GPL vmlinux 0xa1c17cde simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0xa1f79553 xen_create_contiguous_region -EXPORT_SYMBOL_GPL vmlinux 0xa1fcafc6 usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0xa1fe6dfa gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0xa2119de3 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0xa21dface root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa235b564 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0xa2424518 pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa2718017 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa286aade ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xa2a96d64 devm_regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xa2ac5519 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0xa2b25111 gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0xa2b9c993 clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xa2eafb5b cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa3441a4c usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xa353fffc xenbus_rm -EXPORT_SYMBOL_GPL vmlinux 0xa35e6153 transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0xa37efcfb ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xa384918b pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa386c029 trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register -EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3aa7feb ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3d4199b md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0xa3d6f376 invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0xa3e58789 efivar_validate -EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0xa3f2c129 uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0xa40a1b76 input_class -EXPORT_SYMBOL_GPL vmlinux 0xa412a763 regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0xa418c72c dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0xa42a2354 __remove_pages -EXPORT_SYMBOL_GPL vmlinux 0xa42b76b9 crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xa4415fc2 kobject_move -EXPORT_SYMBOL_GPL vmlinux 0xa452c297 hpet_mask_rtc_irq_bit -EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq -EXPORT_SYMBOL_GPL vmlinux 0xa466de38 acpi_processor_ffh_cstate_enter -EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa4861184 __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0xa4c546b3 device_reset -EXPORT_SYMBOL_GPL vmlinux 0xa4d651c6 ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0xa4e20789 spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0xa5056a3b regmap_fields_write -EXPORT_SYMBOL_GPL vmlinux 0xa52c3fdf xenbus_dev_cancel -EXPORT_SYMBOL_GPL vmlinux 0xa548d619 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0xa55a2ea7 crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xa56e4117 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xa584fda5 devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0xa58519f7 efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0xa591be4d nf_register_afinfo -EXPORT_SYMBOL_GPL vmlinux 0xa5a7bad3 usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0xa5b98c3c handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0xa5bae462 __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xa5becc29 __srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa5c7e401 __nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0xa5cb13d5 irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0xa5d142a0 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0xa5ee56d7 sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa6186167 edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0xa61d4b52 ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0xa62892c6 efivar_sysfs_list -EXPORT_SYMBOL_GPL vmlinux 0xa62e168e xhci_run -EXPORT_SYMBOL_GPL vmlinux 0xa649c4cd extcon_register_interest -EXPORT_SYMBOL_GPL vmlinux 0xa6614562 acpi_register_gsi -EXPORT_SYMBOL_GPL vmlinux 0xa66438e8 erst_read -EXPORT_SYMBOL_GPL vmlinux 0xa6647139 tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa66d4261 usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xa66ffe78 blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0xa674d57a regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0xa692ad07 dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6c1ce90 rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xa6c7216d virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0xa6cd1011 irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0xa6d883e0 usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6f51146 tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0xa6fa3ef5 __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xa71a457d debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0xa7af2377 sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0xa7b9ba72 da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0xa7bf4dd4 acpi_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0xa7c05aff perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa7cb6108 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0xa7e85555 pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa7f94c4a ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0xa7fae3cb alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xa7fe5404 kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0xa801b359 efivar_entry_iter_begin -EXPORT_SYMBOL_GPL vmlinux 0xa81374a2 devm_mdiobus_free -EXPORT_SYMBOL_GPL vmlinux 0xa8235d03 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa8595a15 nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0xa8783434 rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0xa88d3233 pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0xa8a174c8 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0xa8a30cc1 pm_complete_with_resume_check -EXPORT_SYMBOL_GPL vmlinux 0xa8a959be rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xa8c16ce8 usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xa8cffb4c usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0xa90a771a device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit -EXPORT_SYMBOL_GPL vmlinux 0xa9143342 find_iova -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa96c125b devm_spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0xa9737b9c __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xa9abe8ad clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0xa9b067a4 iommu_map -EXPORT_SYMBOL_GPL vmlinux 0xa9bd1c4f regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xa9c316f5 __online_page_free -EXPORT_SYMBOL_GPL vmlinux 0xa9c7c042 rtc_irq_register -EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9e1b0db extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xaa0c7f97 usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0xaa2a0525 regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0xaa93aeb6 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaaaf7723 spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0xaab90f16 rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0xaae4001f extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0xab01acbe gnttab_request_free_callback -EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0xab528929 devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0xab539934 rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0xab567d31 percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del -EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request -EXPORT_SYMBOL_GPL vmlinux 0xab6ee4d2 spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0xab781f55 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xab8516f9 key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabec27da blkg_print_stat_bytes_recursive -EXPORT_SYMBOL_GPL vmlinux 0xabee9602 pci_msi_prepare -EXPORT_SYMBOL_GPL vmlinux 0xabf2b27c led_trigger_store -EXPORT_SYMBOL_GPL vmlinux 0xac004b8e usb_phy_generic_unregister -EXPORT_SYMBOL_GPL vmlinux 0xac036e25 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xac26c7f7 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xac29aacb irq_domain_add_simple -EXPORT_SYMBOL_GPL vmlinux 0xac3b94fe srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xac3bf843 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0xac9ce195 kvm_async_pf_task_wait -EXPORT_SYMBOL_GPL vmlinux 0xac9f79c0 gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0xacafa8e7 vector_used_by_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xacb023b5 ping_proc_register -EXPORT_SYMBOL_GPL vmlinux 0xacb19d17 napi_hash_del -EXPORT_SYMBOL_GPL vmlinux 0xacbd919a dax_do_io -EXPORT_SYMBOL_GPL vmlinux 0xacc7d5dc wm5110_patch -EXPORT_SYMBOL_GPL vmlinux 0xacda609d ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list -EXPORT_SYMBOL_GPL vmlinux 0xacf308f3 fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0xad17458e regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0xad1a3f13 input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0xad2cf9b3 dbs_check_cpu -EXPORT_SYMBOL_GPL vmlinux 0xad32b660 pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0xad4244f9 security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0xad45c46c ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0xad4904aa bio_associate_blkcg -EXPORT_SYMBOL_GPL vmlinux 0xad53e8cf gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xad8af206 tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0xad8d8ab0 xen_physdev_op_compat -EXPORT_SYMBOL_GPL vmlinux 0xada0c5b3 ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0xae1011da platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0xae5c53e4 screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae6eaf93 hwpoison_filter_dev_minor -EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae95bba2 wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xaecba6be percpu_ida_free -EXPORT_SYMBOL_GPL vmlinux 0xaed0b568 debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0xaed8cb8e max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0xaee23007 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0xaee66d6f regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0xaeef611d pskb_put -EXPORT_SYMBOL_GPL vmlinux 0xaf062981 xen_swiotlb_sync_sg_for_cpu -EXPORT_SYMBOL_GPL vmlinux 0xaf16ebf0 platform_device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0xaf310a10 ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0xaf34e003 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0xaf3b253a cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xaf55c6f9 usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0xaf5c6c59 dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xaf5e3f0c virtqueue_get_used -EXPORT_SYMBOL_GPL vmlinux 0xaf77453a usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xaf7bd739 platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xaf882032 replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0xaf8e4f4e platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0xaf8f4b68 iommu_domain_set_attr -EXPORT_SYMBOL_GPL vmlinux 0xaf9439db leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xaf967013 usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xafbe32a1 acpi_device_update_power -EXPORT_SYMBOL_GPL vmlinux 0xaff1edc3 usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0xaff62bc5 regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xb00b833e pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0xb022b5f9 __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xb0561ad1 subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb0a93ed2 regmap_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xb0b2a58f efivar_entry_set -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0bbdf64 get_device -EXPORT_SYMBOL_GPL vmlinux 0xb0bce4f0 __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0xb0c1d3b8 cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0xb0d7cc0c ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0xb0f91227 pin_is_valid -EXPORT_SYMBOL_GPL vmlinux 0xb1153549 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0xb13ef794 pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read -EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb14d6e99 xen_xlate_remap_gfn_array -EXPORT_SYMBOL_GPL vmlinux 0xb172ffac efivars_sysfs_init -EXPORT_SYMBOL_GPL vmlinux 0xb1775198 regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0xb17bff05 devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb18f7c43 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0xb19d8980 nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0xb19f1e39 serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0xb1a5f2fe usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched -EXPORT_SYMBOL_GPL vmlinux 0xb1b370bd __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1bedeb7 register_jprobe -EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain -EXPORT_SYMBOL_GPL vmlinux 0xb1c5e1a4 posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1e3113b crypto_init_spawn -EXPORT_SYMBOL_GPL vmlinux 0xb1e698c1 nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0xb2039cfc ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0xb20584e1 __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xb215283c skb_morph -EXPORT_SYMBOL_GPL vmlinux 0xb218d1c7 usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb25178dd crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb2bf5d79 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0xb2c13234 pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2ee5165 __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb2f5366a fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0xb3134a3c rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init -EXPORT_SYMBOL_GPL vmlinux 0xb3441ecc irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy -EXPORT_SYMBOL_GPL vmlinux 0xb34b4e9e md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0xb36f9e52 nd_device_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xb377f550 led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb38a9f3c sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0xb38daa07 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xb3908702 __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xb3d0eef7 pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0xb3e9674c dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0xb403662c irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0xb412c638 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0xb4181193 adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb42fcdbf init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0xb4313447 usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xb452ec5f devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb4557e67 __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xb46fb96d cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0xb487b5a6 net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4e14553 gnttab_query_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0xb4e757c8 usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0xb4e9c544 led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb4f2b32a efivar_entry_size -EXPORT_SYMBOL_GPL vmlinux 0xb4f4724f irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb522bd99 regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xb5396d5e gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0xb53b9c1e gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0xb560e2db acpi_unbind_one -EXPORT_SYMBOL_GPL vmlinux 0xb5848bae __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited -EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table -EXPORT_SYMBOL_GPL vmlinux 0xb5bd3d9f __blk_run_queue_uncond -EXPORT_SYMBOL_GPL vmlinux 0xb5c2f2b3 srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0xb5c9042c sched_setattr -EXPORT_SYMBOL_GPL vmlinux 0xb5d8c8fa regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xb5e358c7 vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0xb5e5b9fa dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb6054e92 event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0xb607653f dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xb6230f1f gnttab_grant_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0xb6232aee regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb657e8ec pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0xb6616967 dma_buf_kunmap -EXPORT_SYMBOL_GPL vmlinux 0xb66421b2 acpi_str_to_uuid -EXPORT_SYMBOL_GPL vmlinux 0xb68e4beb __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xb6af5e2c crypto_attr_alg2 -EXPORT_SYMBOL_GPL vmlinux 0xb6b74eff device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0xb6cd27f2 spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb7023da3 crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xb718f2f9 sfi_table_parse -EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase -EXPORT_SYMBOL_GPL vmlinux 0xb73b740a trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0xb76d7b32 ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0xb77fddab disk_get_part -EXPORT_SYMBOL_GPL vmlinux 0xb79243ad acpi_pci_check_ejectable -EXPORT_SYMBOL_GPL vmlinux 0xb798685f pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0xb79dae2a crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0xb7af8638 devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xb7b409c3 acpi_dev_resume_early -EXPORT_SYMBOL_GPL vmlinux 0xb7b4fea7 usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0xb7c35d7e platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time -EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0xb7f7ec8c blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0xb8152339 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0xb846aa93 devm_pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xb8500869 fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0xb861570f iommu_domain_window_disable -EXPORT_SYMBOL_GPL vmlinux 0xb8736c71 pci_reset_pri -EXPORT_SYMBOL_GPL vmlinux 0xb8755ed9 locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb89eef9c pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0xb8aec10d ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain -EXPORT_SYMBOL_GPL vmlinux 0xb8bbfd1b blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8f84c6f driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0xb912b1d6 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0xb945ace8 __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0xb95f8382 ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0xb964dc72 usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0xb97198bd devm_regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb9753659 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0xb99be14d sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xb99d5837 xenbus_read -EXPORT_SYMBOL_GPL vmlinux 0xb9a390a3 pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0xb9af0930 rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9cbe2f7 xenbus_grant_ring -EXPORT_SYMBOL_GPL vmlinux 0xb9cc2e5f pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9d053a2 regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0xb9eb1d68 nf_queue_entry_release_refs -EXPORT_SYMBOL_GPL vmlinux 0xb9fa3f67 ata_acpi_stm -EXPORT_SYMBOL_GPL vmlinux 0xba0942e5 ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0xba1f3792 cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba358853 sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xba3d9f28 serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0xba55dd0e gov_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xba734998 xenbus_dev_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xba8651ae regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xba92bcf0 usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0xba94c685 cper_estatus_check -EXPORT_SYMBOL_GPL vmlinux 0xba9ccc52 dm_get_table_device -EXPORT_SYMBOL_GPL vmlinux 0xbaa26085 posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb40479d rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xbb4c07dd fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0xbb52a97e iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0xbb6975b2 irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0xbb6f904f ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0xbb92eecc sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0xbb97415f crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0xbba61bcf blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info -EXPORT_SYMBOL_GPL vmlinux 0xbbd4f657 xen_pcpu_id -EXPORT_SYMBOL_GPL vmlinux 0xbbe0fbf4 __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0xbbfc5a64 aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xbc0f11ed crypto_givcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xbc13599a devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xbc1775e1 acpi_dev_get_property -EXPORT_SYMBOL_GPL vmlinux 0xbc1eb53b thermal_generate_netlink_event -EXPORT_SYMBOL_GPL vmlinux 0xbc410b9a n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0xbc4217d4 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc6e19a7 pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts -EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbce02dc4 __netlink_alloc_skb -EXPORT_SYMBOL_GPL vmlinux 0xbced1733 ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0xbd2af66f power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xbd33b982 set_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0xbd386fdd kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0xbd3bf2fb pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd4199ae ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0xbd503983 sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0xbd671048 __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0xbd86b127 usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xbd9d71f2 wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0xbdacfa13 ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0xbdc6c2a1 request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0xbdcf02e0 hwpoison_filter -EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0xbdd5f10f apei_hest_parse -EXPORT_SYMBOL_GPL vmlinux 0xbdfd3aca blocking_notifier_chain_cond_register -EXPORT_SYMBOL_GPL vmlinux 0xbe0a2b93 cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xbe195600 verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xbe2c3d23 regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0xbe49afec use_mm -EXPORT_SYMBOL_GPL vmlinux 0xbe525ed0 ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0xbe551079 wm5110_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0xbe5d0996 idle_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe7d4089 ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0xbea47ebc dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbebcd541 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xbede54b2 crypto_alloc_instance2 -EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0xbee97eea regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0xbefb7252 shmem_get_seals -EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf37372d wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0xbf4a2450 fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0xbf6dd089 usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xbf70c548 __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xbf725d96 xenbus_dev_is_online -EXPORT_SYMBOL_GPL vmlinux 0xbf8993dd bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xbf9ad60a rio_lock_device -EXPORT_SYMBOL_GPL vmlinux 0xbfa23edf usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0xbfb1be70 hv_setup_vmbus_irq -EXPORT_SYMBOL_GPL vmlinux 0xbfb84f9c acpi_subsys_prepare -EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfc82be4 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0xbfd10bb7 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbff5af5e wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0xbff9bfb8 led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space -EXPORT_SYMBOL_GPL vmlinux 0xc00a87c9 klp_enable_patch -EXPORT_SYMBOL_GPL vmlinux 0xc00e1d52 crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0xc01afa9f scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0xc02aa11f rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xc04b21bd acpi_os_unmap_iomem -EXPORT_SYMBOL_GPL vmlinux 0xc069e875 led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc0900fcf acpi_os_get_iomem -EXPORT_SYMBOL_GPL vmlinux 0xc0a3b62a irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xc0a95aa1 regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0acf380 dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0xc0c0814f __efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc0dcdc0e ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0xc0df632b xattr_getsecurity -EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc1067f58 sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xc116581f usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xc116764f component_master_add_child -EXPORT_SYMBOL_GPL vmlinux 0xc11e5d31 efivars_register -EXPORT_SYMBOL_GPL vmlinux 0xc124bb46 crypto_init_shash_spawn -EXPORT_SYMBOL_GPL vmlinux 0xc127917d pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0xc14c2824 xenbus_probe -EXPORT_SYMBOL_GPL vmlinux 0xc14d99b0 kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xc1537cd3 regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc158f92c usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0xc1632146 fuse_get_req -EXPORT_SYMBOL_GPL vmlinux 0xc164642e xenbus_otherend_changed -EXPORT_SYMBOL_GPL vmlinux 0xc16606c8 __pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0xc170e75b serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc1915f69 ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xc1b639a8 regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0xc1cdfb87 __ablkcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0xc1d52714 rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xc1d79d3e shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xc1f544f1 crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0xc1fe2eec dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0xc20dc872 wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0xc26351f8 bind_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0xc2829863 netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc287d96a kvm_set_posted_intr_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0xc299940d disk_part_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xc2b18e54 ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0xc2d02f67 call_filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0xc2d197bf unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0xc2f87708 of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xc307cdf8 usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0xc30ab0b6 regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0xc3399f9d dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc357923c pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xc37e913d devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xc38f36d9 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xc39e92d7 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0xc3a04506 devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc3e58bbf pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0xc405416b sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0xc40925f4 usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0xc41c82b5 nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc447dd93 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc4683bb9 task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0xc46faf3f platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc49d8dff ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0xc4d760c7 irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc4e9a883 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0xc4f06566 fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0xc505ac98 ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0xc512626a __supported_pte_mask -EXPORT_SYMBOL_GPL vmlinux 0xc5397da6 xenbus_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0xc54ac418 iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc573cb2f shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc57ad601 fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xc57f0a5d ata_eh_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0xc5817e09 sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0xc585ab30 tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0xc587250b pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0xc5bf891e rtc_irq_set_state -EXPORT_SYMBOL_GPL vmlinux 0xc5d22373 __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0xc5d32d5e pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0xc5e09f72 dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0xc5f7eb22 sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc6307be4 usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xc63e4e49 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0xc63e7d93 static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xc64e03ed spi_sync -EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc66cd7d4 usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xc66f78b2 device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0xc67a0326 acpi_gpiochip_request_interrupts -EXPORT_SYMBOL_GPL vmlinux 0xc67c2ba1 powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0xc686d6ca xen_swiotlb_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0xc69a99b0 led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6da7a0a __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0xc6e1f96d posix_timer_event -EXPORT_SYMBOL_GPL vmlinux 0xc6e86cc8 ata_do_eh -EXPORT_SYMBOL_GPL vmlinux 0xc7002ac4 evtchn_make_refcounted -EXPORT_SYMBOL_GPL vmlinux 0xc702020f nl_table -EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put -EXPORT_SYMBOL_GPL vmlinux 0xc706b874 usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0xc706f1d7 __blk_put_request -EXPORT_SYMBOL_GPL vmlinux 0xc726af81 device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xc7379448 ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xc7388e17 efivars_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc7754295 usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0xc78e1e5e ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer -EXPORT_SYMBOL_GPL vmlinux 0xc7d2dcf7 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc7f5dab8 pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0xc81b765d put_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0xc8286a11 phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc831364d aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc8635ade mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event -EXPORT_SYMBOL_GPL vmlinux 0xc88e09b8 __pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0xc8ee4905 generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0xc8fa8658 fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0xc9120b2a get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xc92acdbe sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0xc939e218 led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0xc93a3744 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc94493c2 hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xc949a654 spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0xc94b76bb gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0xc968dbbc devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc9705eeb has_newer_microcode -EXPORT_SYMBOL_GPL vmlinux 0xc973380c inet6_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0xc98245f4 mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0xc9967062 efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler -EXPORT_SYMBOL_GPL vmlinux 0xc9dc2024 driver_find -EXPORT_SYMBOL_GPL vmlinux 0xc9ec0553 dm_get_rq_mapinfo -EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xca363482 uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0xca398e22 device_store_int -EXPORT_SYMBOL_GPL vmlinux 0xca4a7f63 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0xca5a0238 ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xca5bb978 i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0xca747de0 led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0xca7903a1 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca81ea9a xenbus_transaction_end -EXPORT_SYMBOL_GPL vmlinux 0xca93986a print_context_stack_bp -EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcac1006b ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0xcad101b5 pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0xcaefdabf crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xcaf65d56 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0xcafec86c rio_mport_send_doorbell -EXPORT_SYMBOL_GPL vmlinux 0xcb01c265 bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0xcb15030f user_describe -EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module -EXPORT_SYMBOL_GPL vmlinux 0xcb51b8f7 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0xcb566da6 tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0xcb5e9abb blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0xcb5ee721 devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0xcb66446c ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcb6796da rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0xcb69cc7a wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcb76d3dd cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0xcb87014a ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0xcb9f0a88 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0xcbce14c0 __blkdev_driver_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbe5bcc5 adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0xcbf40cd5 blkg_stat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0xcc3ac312 spi_unregister_master -EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule -EXPORT_SYMBOL_GPL vmlinux 0xcc8aafa6 irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0xcc8d4f76 regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0xcc966d0b xenbus_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xcce31916 rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xccea4e34 perf_get_x86_pmu_capability -EXPORT_SYMBOL_GPL vmlinux 0xccebace4 pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0xcd0548c8 clk_debugfs_add_file -EXPORT_SYMBOL_GPL vmlinux 0xcd110340 securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xcd37b243 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0xcd39a0c1 device_create_file -EXPORT_SYMBOL_GPL vmlinux 0xcd5d4ef9 btree_update -EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq -EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs -EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcda63825 sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0xcdaaa044 ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdd118a1 pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0xcde34ce3 add_memory_resource -EXPORT_SYMBOL_GPL vmlinux 0xce09fad7 pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xce0c7253 of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0xce12d037 btree_insert -EXPORT_SYMBOL_GPL vmlinux 0xce151a36 for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0xce1be263 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xce3079cb ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0xce311491 xenbus_dev_changed -EXPORT_SYMBOL_GPL vmlinux 0xce3567cb user_destroy -EXPORT_SYMBOL_GPL vmlinux 0xce3f5928 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0xce4ded1b crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce6f593b handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0xcecf68a4 ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0xced7c57f ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xcedd5275 devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcef1dd0e perf_check_microcode -EXPORT_SYMBOL_GPL vmlinux 0xcefeb62e noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0xcf023d35 pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0xcf1565bd exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0xcf257ed0 xen_swiotlb_unmap_page -EXPORT_SYMBOL_GPL vmlinux 0xcf2b47e0 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0xcf374b20 pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0xcf413ee4 tpm2_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0xcf4c8cd6 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain -EXPORT_SYMBOL_GPL vmlinux 0xcf7059c5 usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xcfbc7b9a list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0xcfc0569b md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0xcfc238bd pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0xcfc2e541 usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0xcfe2a803 tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0xcfe385b7 usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0xd02a44bd i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate -EXPORT_SYMBOL_GPL vmlinux 0xd05d9a6b phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd0ac9981 thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd0b74bc7 sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0c94693 wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0xd0e5d9cc xen_xlate_unmap_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0xd0f9eea5 klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xd12402df mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0xd128adeb crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0xd14598a1 fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0xd14c8520 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0xd1507e59 erst_clear -EXPORT_SYMBOL_GPL vmlinux 0xd1553b3b srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xd176a119 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0xd17748dd __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0xd18cfbcc blkg_prfill_stat -EXPORT_SYMBOL_GPL vmlinux 0xd19fd8af pci_intx_mask_supported -EXPORT_SYMBOL_GPL vmlinux 0xd1b7e3ea devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xd1c2ff6f nd_mapping_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd211c07d vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0xd217af63 palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd234febc thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xd25205ed hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd2559ba4 regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0xd260b30e queue_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd2817892 __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xd28285ef power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd299811d virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0xd2ad940d crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0xd2b18a67 modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xd2c58ab2 apei_exec_noop -EXPORT_SYMBOL_GPL vmlinux 0xd2caed84 clk_register_gpio_gate -EXPORT_SYMBOL_GPL vmlinux 0xd2d1927b hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0xd2e88de5 clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript -EXPORT_SYMBOL_GPL vmlinux 0xd2fb031f power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0xd2ff454f kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0xd30c6f49 regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0xd31069a0 sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0xd3120dab dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0xd3414a1e subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd36b57d4 skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0xd36bae0e devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xd385be3c dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xd3bf27cc virtqueue_get_avail -EXPORT_SYMBOL_GPL vmlinux 0xd3da0157 efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0xd3dd816a ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xd3f3ee83 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0xd402591c swiotlb_map_page -EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd404a937 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd405d4ef swiotlb_tbl_unmap_single -EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xd4214d85 ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0xd421ba7a devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count -EXPORT_SYMBOL_GPL vmlinux 0xd43b955e sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0xd4487fd5 snprint_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xd4490d10 unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd45ea32f hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0xd45fd65b inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0xd4625230 vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0xd4843432 digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0xd4a84dcc pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0xd4b86414 devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0xd4b967fc usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xd4bd66a0 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4d7aa6d agp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0xd4faca27 acpi_ec_add_query_handler -EXPORT_SYMBOL_GPL vmlinux 0xd5240cfb pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0xd53d4fc2 crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd56b5f64 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0xd56b878b agp_remove_bridge -EXPORT_SYMBOL_GPL vmlinux 0xd57c5161 usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0xd584b774 put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xd58f1240 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0xd59fedbf devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0xd5de197b inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0xd5ebc1d8 subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0xd6055007 component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh -EXPORT_SYMBOL_GPL vmlinux 0xd62d2505 sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xd62fdac7 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0xd633b318 perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd644de90 relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd68872f3 usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0xd68c992b mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0xd68f190c usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xd6a04bac scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0xd6b67094 usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0xd6b8f26c spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0xd6be446a ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0xd6c4574c of_css -EXPORT_SYMBOL_GPL vmlinux 0xd6d12e65 regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0xd6d9c42e pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0xd6ed3117 aead_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0xd6ed3a8e cper_next_record_id -EXPORT_SYMBOL_GPL vmlinux 0xd6ef8296 ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries -EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0xd70bc4bc ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd72468ea rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state -EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end -EXPORT_SYMBOL_GPL vmlinux 0xd764d265 inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xd7927fb9 max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xd7929540 dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0xd79eda49 set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xd7a6caf6 virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0xd7e3d9c2 xenbus_match -EXPORT_SYMBOL_GPL vmlinux 0xd81a8bf2 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xd8260ca7 devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0xd8363e4a task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xd83ad49d phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xd848f677 tps65217_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xd85c83cd cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0xd86e1688 sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd891a2e7 fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0xd8927648 usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0xd8a35f82 pinctrl_utils_add_config -EXPORT_SYMBOL_GPL vmlinux 0xd8b31c2d crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0xd8c6c561 dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0xd8f2e4dc ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges -EXPORT_SYMBOL_GPL vmlinux 0xd92ddbd2 virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0xd935292f apic -EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0xd947377b bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0xd94f1189 __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xd94fa823 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0xd9510862 xenbus_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd9580123 tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd977273d pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xd97f1395 virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0xd986dad1 kernel_fpu_begin -EXPORT_SYMBOL_GPL vmlinux 0xd98883af bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd98ff502 scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0xd99f9ef8 scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0xd9cabd12 of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xd9e2b098 device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xd9e857c2 nd_numa_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xd9ee1a8c power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd9f87a04 iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xda242c09 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0xda24e5d6 mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0xda389561 smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0xda47c5ed devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0xda4ff50e cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xda7533a4 scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0xda78e975 __xenbus_register_backend -EXPORT_SYMBOL_GPL vmlinux 0xda8b9945 usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp -EXPORT_SYMBOL_GPL vmlinux 0xdaa5f0b2 cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0xdae32a0a devm_usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdaf59773 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0xdaf92ab7 shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0xdafd17b6 crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0xdb0a7fbe wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xdb56f3a1 regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0xdb734f22 devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb916fd0 trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0xdb91e05c tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0xdbb97701 nvdimm_bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdbd11a00 fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0xdbdb997c acpi_dev_get_resources -EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdbfc8d4b pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall -EXPORT_SYMBOL_GPL vmlinux 0xdc191779 xen_swiotlb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0xdc1a42cd iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xdc316893 __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0xdc3af0af skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0xdc536027 usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list -EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable -EXPORT_SYMBOL_GPL vmlinux 0xdc848800 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdccf1243 xen_swiotlb_unmap_sg_attrs -EXPORT_SYMBOL_GPL vmlinux 0xdce95190 thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xdcea4780 crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0xdd169032 device_add -EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock -EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd4ebabb fat_scan -EXPORT_SYMBOL_GPL vmlinux 0xdd57e2b5 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0xdd6439a7 acpi_processor_get_performance_info -EXPORT_SYMBOL_GPL vmlinux 0xdd6a05d3 find_vpid -EXPORT_SYMBOL_GPL vmlinux 0xdd6c2d50 rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd6ea392 sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0xdd7443b9 pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdd83e8f9 xen_register_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0xdd9496df crypto_blkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xdd99b674 gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xdd9ba3e7 usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xdd9c5859 bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0xddbda150 debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddc175ec cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0xddc18f2e pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0xdde3e4f6 xen_xenbus_fops -EXPORT_SYMBOL_GPL vmlinux 0xddf0e1d5 clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0xde0fca2a usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0xde20cfc4 blkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xde50aab4 simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0xde50d216 extcon_set_cable_state -EXPORT_SYMBOL_GPL vmlinux 0xde539850 fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0xde679e92 virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0xde7e5206 input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0xde8b543f usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0xde8dd926 klist_next -EXPORT_SYMBOL_GPL vmlinux 0xde9383f7 device_del -EXPORT_SYMBOL_GPL vmlinux 0xde977f63 dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0xde9e2403 memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdea44474 set_foreign_p2m_mapping -EXPORT_SYMBOL_GPL vmlinux 0xdecf9688 nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0xdef58e4d rhashtable_insert_rehash -EXPORT_SYMBOL_GPL vmlinux 0xdf0a6959 class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep -EXPORT_SYMBOL_GPL vmlinux 0xdf4a1ecf usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0xdf622181 clk_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0xdf66ca81 ucode_cpu_info -EXPORT_SYMBOL_GPL vmlinux 0xdf75282c inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0xdfa1adb5 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdfac5632 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0xdfc8d769 crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0xdfd3bb47 irq_find_mapping -EXPORT_SYMBOL_GPL vmlinux 0xdfeabbf2 regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xdfec85fc sched_setscheduler_nocheck -EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name -EXPORT_SYMBOL_GPL vmlinux 0xe02141f2 clk_gpio_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xe02d80e5 clear_foreign_p2m_mapping -EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0xe04b7dfc clk_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xe055f09f ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0xe06607ee spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0xe06d13c1 devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved -EXPORT_SYMBOL_GPL vmlinux 0xe09a2504 usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xe0afd82b acpi_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0c57084 platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq -EXPORT_SYMBOL_GPL vmlinux 0xe0c811b0 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xe0f6f966 evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0xe1068136 __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin -EXPORT_SYMBOL_GPL vmlinux 0xe11c6dc9 extcon_update_state -EXPORT_SYMBOL_GPL vmlinux 0xe1253d5e virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0xe16b0d30 unregister_jprobe -EXPORT_SYMBOL_GPL vmlinux 0xe16b9179 acpiphp_register_attention -EXPORT_SYMBOL_GPL vmlinux 0xe16c64ad regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0xe16d495e proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe186b74e ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xe193d14c scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xe1aab72b security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports -EXPORT_SYMBOL_GPL vmlinux 0xe1cd4052 acpi_subsys_resume_early -EXPORT_SYMBOL_GPL vmlinux 0xe1decb14 acpi_subsys_freeze -EXPORT_SYMBOL_GPL vmlinux 0xe1f1f309 x86_vector_domain -EXPORT_SYMBOL_GPL vmlinux 0xe1ff07be rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xe2137c3d irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xe21b8842 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0xe2366cea crypto_larval_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe268f988 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0xe26b79ce wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength -EXPORT_SYMBOL_GPL vmlinux 0xe29349dc copy_reserved_iova -EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe29ab577 ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0xe2ab232a ata_eh_thaw_port -EXPORT_SYMBOL_GPL vmlinux 0xe2b5c273 ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0xe2c1f96c ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0xe2cf7959 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xe30ee15a acpi_driver_match_device -EXPORT_SYMBOL_GPL vmlinux 0xe3117082 i2c_lock_adapter -EXPORT_SYMBOL_GPL vmlinux 0xe3409aed rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0xe352aabc adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0xe3679880 iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0xe370f7be ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0xe3790a10 pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xe37f29cb ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0xe38f9c7a sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0xe3948ff4 acpi_walk_dep_device_list -EXPORT_SYMBOL_GPL vmlinux 0xe395499c ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0xe3988f8c rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0xe39f8c86 relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0xe3ab61d0 crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler -EXPORT_SYMBOL_GPL vmlinux 0xe3bda663 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe3c5ed13 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0xe3c81c64 spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xe3f69c4d skcipher_geniv_init -EXPORT_SYMBOL_GPL vmlinux 0xe3fa156b bpf_prog_get -EXPORT_SYMBOL_GPL vmlinux 0xe400bbb5 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0xe406c585 nf_unregister_afinfo -EXPORT_SYMBOL_GPL vmlinux 0xe41534ce bind_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0xe418fde4 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0xe4273cc1 crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe45c6e46 ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xe469c915 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0xe469ce71 blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe4876c0e scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto -EXPORT_SYMBOL_GPL vmlinux 0xe4cae125 component_add -EXPORT_SYMBOL_GPL vmlinux 0xe4e68bc8 apei_map_generic_address -EXPORT_SYMBOL_GPL vmlinux 0xe4f8e1f2 set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0xe4fe652b regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0xe514d401 usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0xe5186904 device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0xe545a811 get_xsave_addr -EXPORT_SYMBOL_GPL vmlinux 0xe57f26f9 list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0xe57f73db rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe58a13ae pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xe58af905 exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq -EXPORT_SYMBOL_GPL vmlinux 0xe592958b devm_clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe5977418 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0xe5b8082b cper_estatus_check_header -EXPORT_SYMBOL_GPL vmlinux 0xe5b9e37f blk_queue_bypass_end -EXPORT_SYMBOL_GPL vmlinux 0xe5c99843 do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xe5eac41d debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0xe5fb31b2 posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0xe5fd85a0 ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0xe6033947 devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0xe638c27e ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler -EXPORT_SYMBOL_GPL vmlinux 0xe64bff4c kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe6817dc4 virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0xe686231a unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xe6ad2a05 of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module -EXPORT_SYMBOL_GPL vmlinux 0xe6dc2272 raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xe6dd8218 netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen -EXPORT_SYMBOL_GPL vmlinux 0xe6ea182e pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data -EXPORT_SYMBOL_GPL vmlinux 0xe6fb1512 desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0xe70635f0 ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xe7127fb7 wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe749d5b1 device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0xe768d444 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe76b36b7 user_update -EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0xe786646c device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0xe7ac2784 crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe7bda4d9 xenbus_dev_probe -EXPORT_SYMBOL_GPL vmlinux 0xe7d6362f devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0xe7d69409 regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr -EXPORT_SYMBOL_GPL vmlinux 0xe80a90dc tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0xe80e1bd3 xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0xe817d8bd pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe823a8ce ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0xe82beb1a device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0xe82f88b5 regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe88d7783 __get_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xe89bd243 ata_sff_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xe8a37f1b tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0xe8ae3086 tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0xe8d3864d acpi_pci_find_root -EXPORT_SYMBOL_GPL vmlinux 0xe8f46963 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0xe8f6082a usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xe9243f9c cpufreq_frequency_table_cpuinfo -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe9408621 phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0xe9488e7a i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0xe9519aeb component_master_add -EXPORT_SYMBOL_GPL vmlinux 0xe9574b8a sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0xe95d6e1b metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0xe963a571 xenbus_probe_node -EXPORT_SYMBOL_GPL vmlinux 0xe997a21e regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xe9991aaf regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0xe9997922 usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0xe99aed01 sdio_run_irqs -EXPORT_SYMBOL_GPL vmlinux 0xe9a4bb32 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available -EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xea0202f6 wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea2d40fa regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0xea308473 wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0xea398abd rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0xea49d8d4 dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0xea4a922c tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0xea5d1ffa dax_clear_blocks -EXPORT_SYMBOL_GPL vmlinux 0xea628c20 bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0xea7bf68e crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0xea7ef336 ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xea9bcde5 usb_acpi_power_manageable -EXPORT_SYMBOL_GPL vmlinux 0xeac4af64 gpiochip_remove_pin_ranges -EXPORT_SYMBOL_GPL vmlinux 0xeae8da55 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0xeaefcb2c acpi_is_pnp_device -EXPORT_SYMBOL_GPL vmlinux 0xeb150a1b tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0xeb1c5653 rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0xeb2798f7 xen_destroy_contiguous_region -EXPORT_SYMBOL_GPL vmlinux 0xeb2b629a device_register -EXPORT_SYMBOL_GPL vmlinux 0xeb2eb288 efivar_variable_is_removable -EXPORT_SYMBOL_GPL vmlinux 0xeb370805 __apei_exec_run -EXPORT_SYMBOL_GPL vmlinux 0xeb4054b8 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0xeb4a96c8 i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0xeb584941 ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0xeb6adb3f gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xeb7d183e jump_label_rate_limit -EXPORT_SYMBOL_GPL vmlinux 0xeb8274d2 percpu_ida_for_each_free -EXPORT_SYMBOL_GPL vmlinux 0xeb833c22 xen_has_pv_disk_devices -EXPORT_SYMBOL_GPL vmlinux 0xeb8da754 syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0xeb91f947 pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0xebaada12 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0xebb768de power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0xebcc4984 trace_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xebd284d9 usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0xebd878a5 usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0xebdb5943 dax_pfn_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xec05ee3f ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare -EXPORT_SYMBOL_GPL vmlinux 0xec23c830 da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del -EXPORT_SYMBOL_GPL vmlinux 0xec3e8ca6 regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0xec631f34 remove_memory -EXPORT_SYMBOL_GPL vmlinux 0xec6ef073 tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0xec7a9380 scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0xec815c27 blk_mq_request_started -EXPORT_SYMBOL_GPL vmlinux 0xecad3b34 do_machine_check -EXPORT_SYMBOL_GPL vmlinux 0xece35d68 extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xeced40c5 gnttab_map_refs -EXPORT_SYMBOL_GPL vmlinux 0xed00d24b regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xed3637cb sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0xed4c6fcd udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xed523f3c watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xed790d41 dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xed81aad8 rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0xed8d9068 ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0xed92de62 led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0xed9711a8 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0xed981a16 cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xed9ce7ef inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0xed9e2448 crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0xedbc6f67 gnttab_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0xedc966ab acpi_dev_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xedcdffd4 alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0xeddead80 nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xede461b5 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xedea0146 regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xee13e697 set_personality_ia32 -EXPORT_SYMBOL_GPL vmlinux 0xee189892 bio_trim -EXPORT_SYMBOL_GPL vmlinux 0xee510d75 devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0xee54fa5a usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0xee612507 fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0xee654f1e proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0xee698714 ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible -EXPORT_SYMBOL_GPL vmlinux 0xee6ceeda fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0xeebad7c2 pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xeebe757f crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xeee22cb8 io_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xef0c41d3 handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0xef1da87b device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request -EXPORT_SYMBOL_GPL vmlinux 0xef206c58 devm_acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xef2150ca xenbus_register_driver_common -EXPORT_SYMBOL_GPL vmlinux 0xef2a912d ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0xef43fe36 pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0xef4d856c pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0xef56ed56 user_read -EXPORT_SYMBOL_GPL vmlinux 0xef5fb258 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef6d007a sigset_from_compat -EXPORT_SYMBOL_GPL vmlinux 0xef756fb0 cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0xef8af86c rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xef8c1345 key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0xef8e46f0 fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefebc228 blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0xefee9285 bio_clone_mddev -EXPORT_SYMBOL_GPL vmlinux 0xeffd5b52 blk_queue_dma_drain -EXPORT_SYMBOL_GPL vmlinux 0xf00d73cb crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0xf025fbce netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0xf02dd7a1 unregister_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0xf04a16b2 devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable -EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xf0b21cf3 crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0xf0b8e047 da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xf0c4cfa3 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0xf0c7f6be sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xf0df00ba xen_swiotlb_map_sg_attrs -EXPORT_SYMBOL_GPL vmlinux 0xf0f306ed usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0xf10e2b68 crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0xf14e4d24 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xf17b905b __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf185f55e device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0xf18ab93d xenbus_read_otherend_details -EXPORT_SYMBOL_GPL vmlinux 0xf194729c usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0xf196e190 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0xf1977262 bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0xf19b7f7c ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key -EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on -EXPORT_SYMBOL_GPL vmlinux 0xf1b3e2ef ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0xf1b551d9 ibft_addr -EXPORT_SYMBOL_GPL vmlinux 0xf1be09b3 crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0xf1dabad8 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0xf20b3f1f ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0xf2147f1e class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf24462cb xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0xf25d6ab5 pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0xf27adacc __rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0xf291252d alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xf2b8dff0 usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0xf2c1fcef pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0xf2e9f235 register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support -EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf313f4df tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf32c090f usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf336c8be devres_release -EXPORT_SYMBOL_GPL vmlinux 0xf33dc43c sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xf3489bf0 usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0xf353d884 usb_string -EXPORT_SYMBOL_GPL vmlinux 0xf36348fa genlmsg_new_unicast -EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3b6e879 fuse_put_request -EXPORT_SYMBOL_GPL vmlinux 0xf3ba2541 is_dock_device -EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0xf3c21041 sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0xf3cee433 inet_hash -EXPORT_SYMBOL_GPL vmlinux 0xf3d16a69 trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0xf3dd3ec1 atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf3ebf4eb arch_apei_report_mem_error -EXPORT_SYMBOL_GPL vmlinux 0xf3ec80a7 relay_flush -EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xf41d9a07 dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xf478b9d3 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask -EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh -EXPORT_SYMBOL_GPL vmlinux 0xf4aa6cd9 sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xf4bacc2f regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0xf5126c45 i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xf52a8ffa call_srcu -EXPORT_SYMBOL_GPL vmlinux 0xf5379771 net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf539aa22 pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0xf53b3238 to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0xf54586e9 spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf557380b fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0xf5785b42 evtchn_get -EXPORT_SYMBOL_GPL vmlinux 0xf5876fee dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xf58bd25d devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xf591186d fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0xf5945bac gnttab_free_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xf594c461 crypto_ahash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5b55b8c tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xf5c16542 driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0xf5c327a3 pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0xf5d29d93 scsi_internal_device_block -EXPORT_SYMBOL_GPL vmlinux 0xf5d62c18 pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xf5e01f1f arizona_free_irq -EXPORT_SYMBOL_GPL vmlinux 0xf5e71fc7 ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0xf604152f gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xf617cc79 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0xf62010da pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0xf6320c6f sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xf65732be device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0xf672540c rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xf6761465 __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xf677012a __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0xf69336cf mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0xf6a9556a btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0xf6ab4af2 nd_region_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xf6bbe048 ping_close -EXPORT_SYMBOL_GPL vmlinux 0xf6c42a45 fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str -EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6cafda8 register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf6ecc1d7 gnttab_unmap_refs_async -EXPORT_SYMBOL_GPL vmlinux 0xf7016530 xenbus_gather -EXPORT_SYMBOL_GPL vmlinux 0xf70e4a4d preempt_schedule_notrace -EXPORT_SYMBOL_GPL vmlinux 0xf72859ca regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0xf73c5d2a hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0xf7943072 skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0xf7a2de26 fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xf7cdd291 __class_register -EXPORT_SYMBOL_GPL vmlinux 0xf7d26439 usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0xf7e03a66 tcp_fetch_timewait_stamp -EXPORT_SYMBOL_GPL vmlinux 0xf8239514 xenbus_dev_remove -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf858e304 fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0xf873394a ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xf8805e6d crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xf885e502 thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xf8a134b8 ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0xf8ae4d78 ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0xf8c0e5f1 gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops -EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0xf91542af sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xf91e9bfd default_iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0xf929034f unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf934909d regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xf93dc141 vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf95b3f46 usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0xf97367fc skcipher_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf9765833 dmi_match -EXPORT_SYMBOL_GPL vmlinux 0xf97709dd sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0xf97abfcc xenbus_map_ring_valloc -EXPORT_SYMBOL_GPL vmlinux 0xf9822b4a con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9c2ae08 wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xf9d828fb tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xf9d9264e xen_have_vector_callback -EXPORT_SYMBOL_GPL vmlinux 0xf9ddf8a9 mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0xf9e790c6 i2c_new_device -EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xf9f5d2f3 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start -EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched -EXPORT_SYMBOL_GPL vmlinux 0xfa4f6e0b iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0xfa5979f9 regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xfa6dc15c bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec -EXPORT_SYMBOL_GPL vmlinux 0xfa950822 pci_ats_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xfa9e33f7 klist_init -EXPORT_SYMBOL_GPL vmlinux 0xfac0e670 scsi_device_from_queue -EXPORT_SYMBOL_GPL vmlinux 0xfae8561b da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xfaf13f2f sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xfaf5e081 acpi_match_device -EXPORT_SYMBOL_GPL vmlinux 0xfb0047f6 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xfb0e1b25 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xfb245a38 exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0xfb25ce06 btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0xfb2ab25f mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfb2b3aaa crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb4b180b ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0xfb52967d crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0xfb64b230 acpi_processor_ffh_cstate_probe -EXPORT_SYMBOL_GPL vmlinux 0xfb654f33 dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb8f80fa device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbc0e4b0 dm_disk -EXPORT_SYMBOL_GPL vmlinux 0xfbd53689 crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0xfbfa98a4 pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc0a90fb acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0xfc146883 register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0xfc2d6aa0 devm_led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0xfc338a49 phy_init -EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power -EXPORT_SYMBOL_GPL vmlinux 0xfc43ad96 cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xfc49f868 swiotlb_tbl_map_single -EXPORT_SYMBOL_GPL vmlinux 0xfc4c6263 __percpu_ida_init -EXPORT_SYMBOL_GPL vmlinux 0xfc6d4847 inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xfc70a468 pwm_enable -EXPORT_SYMBOL_GPL vmlinux 0xfc793a69 cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0xfc8dbc8b xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0xfc968c8b apei_exec_write_register_value -EXPORT_SYMBOL_GPL vmlinux 0xfcac80e6 i2c_new_probed_device -EXPORT_SYMBOL_GPL vmlinux 0xfcb5fab9 ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xfcc1aa05 __blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0xfcd074da __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0xfcec0ac8 blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0xfcf03905 gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0xfcf3a701 spi_alloc_master -EXPORT_SYMBOL_GPL vmlinux 0xfd2045d1 __online_page_increment_counters -EXPORT_SYMBOL_GPL vmlinux 0xfd51b281 gnttab_end_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0xfd6dd135 wm5110_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0xfd6f86b6 ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable -EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack -EXPORT_SYMBOL_GPL vmlinux 0xfd7cce37 pinconf_generic_dump_config -EXPORT_SYMBOL_GPL vmlinux 0xfd8bde87 pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0xfd995a6e skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0xfddc2665 ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0xfdedf6e2 sock_update_netprioidx -EXPORT_SYMBOL_GPL vmlinux 0xfe0a496c tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0xfe1e228f pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xfe308907 regmap_fields_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xfe3bdfa8 pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0xfe3f71fc ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0xfe562a9b anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0xfe68228d nd_blk_region_to_dimm -EXPORT_SYMBOL_GPL vmlinux 0xfe6fc3ea regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine -EXPORT_SYMBOL_GPL vmlinux 0xfe755b08 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0xfe862295 blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfec5c375 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfee02f24 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfee38273 blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xfeffd73d shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0xff0246b0 fuse_request_send_background -EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff0ecdfb irq_create_strict_mappings -EXPORT_SYMBOL_GPL vmlinux 0xff23bcf7 sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff2970e7 xenbus_dev_groups -EXPORT_SYMBOL_GPL vmlinux 0xff2ce747 machine_check_poll -EXPORT_SYMBOL_GPL vmlinux 0xff3e4776 cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0xff4e8248 class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0xff594cd5 crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0xff5f85a1 transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0xff5f8640 smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xff9f7987 dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0xffbd1273 cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xffd0dc6a preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xffe79275 ata_port_desc reverted: --- linux-raspi2-4.4.0/debian.master/abi/4.4.0-89.112/amd64/lowlatency.compiler +++ linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-89.112/amd64/lowlatency.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 reverted: --- linux-raspi2-4.4.0/debian.master/abi/4.4.0-89.112/amd64/lowlatency.modules +++ linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-89.112/amd64/lowlatency.modules @@ -1,4616 +0,0 @@ -3c574_cs -3c589_cs -3c59x -3w-9xxx -3w-sas -3w-xxxx -6lowpan -6pack -8021q -8139cp -8139too -8250_dw -8250_fintek -8250_mid -8255 -8255_pci -8390 -842 -842_compress -842_decompress -88pm800 -88pm805 -88pm80x -88pm80x_onkey -88pm8607 -88pm860x-ts -88pm860x_battery -88pm860x_bl -88pm860x_charger -88pm860x_onkey -9p -9pnet -9pnet_rdma -9pnet_virtio -BusLogic -DAC960 -a100u2w -a3d -a8293 -aacraid -aat2870-regulator -aat2870_bl -ab3100 -ab3100-otp -abituguru -abituguru3 -ablk_helper -ac97_bus -acard-ahci -acecad -acenic -acer-wmi -acerhdf -acpi-als -acpi_extlog -acpi_ipmi -acpi_pad -acpi_power_meter -acpi_thermal_rel -acpiphp_ibm -acquirewdt -act200l-sir -act8865-regulator -act_bpf -act_connmark -act_csum -act_gact -act_ipt -act_mirred -act_nat -act_pedit -act_police -act_simple -act_skbedit -act_vlan -actisys-sir -ad2s1200 -ad2s1210 -ad2s90 -ad5064 -ad525x_dpot -ad525x_dpot-i2c -ad525x_dpot-spi -ad5360 -ad5380 -ad5398 -ad5421 -ad5446 -ad5449 -ad5504 -ad5592r -ad5592r-base -ad5593r -ad5624r_spi -ad5686 -ad5755 -ad5764 -ad5791 -ad5933 -ad714x -ad714x-i2c -ad714x-spi -ad7150 -ad7152 -ad7192 -ad7266 -ad7280a -ad7291 -ad7298 -ad7303 -ad7314 -ad7414 -ad7418 -ad7476 -ad7606 -ad7746 -ad7780 -ad7791 -ad7793 -ad7816 -ad7877 -ad7879 -ad7879-i2c -ad7879-spi -ad7887 -ad7923 -ad799x -ad8366 -ad9523 -ad9832 -ad9834 -ad_sigma_delta -adc128d818 -adcxx -addi_apci_1032 -addi_apci_1500 -addi_apci_1516 -addi_apci_1564 -addi_apci_16xx -addi_apci_2032 -addi_apci_2200 -addi_apci_3120 -addi_apci_3501 -addi_apci_3xxx -addi_watchdog -ade7753 -ade7754 -ade7758 -ade7759 -ade7854 -ade7854-i2c -ade7854-spi -adf4350 -adfs -adi -adis16060 -adis16080 -adis16130 -adis16136 -adis16201 -adis16203 -adis16204 -adis16209 -adis16220 -adis16240 -adis16260 -adis16400 -adis16480 -adis_lib -adjd_s311 -adl_pci6208 -adl_pci7x3x -adl_pci8164 -adl_pci9111 -adl_pci9118 -adm1021 -adm1025 -adm1026 -adm1029 -adm1031 -adm1275 -adm8211 -adm9240 -adp5520-keys -adp5520_bl -adp5588-keys -adp5589-keys -adp8860_bl -adp8870_bl -adq12b -ads1015 -ads7828 -ads7846 -ads7871 -adt7310 -adt7316 -adt7316-i2c -adt7316-spi -adt7410 -adt7411 -adt7462 -adt7470 -adt7475 -adt7x10 -adummy -adutux -adv7170 -adv7175 -adv7511 -adv7604 -adv7842 -adv_pci1710 -adv_pci1723 -adv_pci1724 -adv_pci_dio -advansys -advantechwdt -adxl34x -adxl34x-i2c -adxl34x-spi -adxrs450 -aes-x86_64 -aesni-intel -af-rxrpc -af9013 -af9033 -af_alg -af_key -af_packet_diag -affs -ah4 -ah6 -aha152x_cs -ahci -ahci_platform -aic79xx -aic7xxx -aic94xx -aim_cdev -aim_network -aim_sound -aim_v4l2 -aio_aio12_8 -aio_iiro_16 -aiptek -aircable -airo -airo_cs -airspy -ak8975 -al3320a -algif_aead -algif_hash -algif_rng -algif_skcipher -ali-ircc -alienware-wmi -alim1535_wdt -alim7101_wdt -altera-ci -altera-stapl -altera_jtaguart -altera_ps2 -altera_tse -altera_uart -alx -am53c974 -ambassador -amc6821 -amd -amd-rng -amd5536udc -amd64_edac_mod -amd76xrom -amd8111e -amd_freq_sensitivity -amd_iommu_v2 -amdgpu -amdkfd -amilo-rfkill -amplc_dio200 -amplc_dio200_common -amplc_dio200_pci -amplc_pc236 -amplc_pc236_common -amplc_pc263 -amplc_pci224 -amplc_pci230 -amplc_pci236 -amplc_pci263 -ams369fg06 -analog -anatop-regulator -ansi_cprng -anubis -aoe -apanel -apds9300 -apds9802als -apds990x -apds9960 -apple-gmux -apple_bl -appledisplay -applesmc -appletalk -appletouch -applicom -aquantia -ar5523 -ar7part -arc-rawmode -arc-rimi -arc4 -arc_ps2 -arc_uart -arcfb -arcmsr -arcnet -arizona-haptics -arizona-i2c -arizona-ldo1 -arizona-micsupp -arizona-spi -ark3116 -arkfb -arp_tables -arpt_mangle -arptable_filter -as102_fe -as3711-regulator -as3711_bl -as3935 -as5011 -asb100 -asc7621 -ascot2e -asix -ast -asus-laptop -asus-nb-wmi -asus-wmi -asus_atk0110 -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at24 -at25 -at76c50x-usb -at803x -at86rf230 -atbm8830 -aten -ath -ath10k_core -ath10k_pci -ath3k -ath5k -ath6kl_core -ath6kl_sdio -ath6kl_usb -ath9k -ath9k_common -ath9k_htc -ath9k_hw -ati_remote -ati_remote2 -atl1 -atl1c -atl1e -atl2 -atlas_btns -atm -atmel -atmel_cs -atmel_mxt_ts -atmel_pci -atmtcp -atp -atp870u -atusb -atxp1 -aty128fb -atyfb -au0828 -au8522_common -au8522_decoder -au8522_dig -aufs -auo-pixcir-ts -auo_k1900fb -auo_k1901fb -auo_k190x -auth_rpcgss -authenc -authencesn -autofs4 -avm_cs -avma1_cs -avmfritz -ax25 -ax88179_178a -axnet_cs -axp20x-pek -axp20x-regulator -axp20x_usb_power -axp288_adc -axp288_charger -axp288_fuel_gauge -b1 -b1dma -b1pci -b1pcmcia -b2c2-flexcop -b2c2-flexcop-pci -b2c2-flexcop-usb -b43 -b43legacy -b44 -bas_gigaset -batman-adv -baycom_par -baycom_ser_fdx -baycom_ser_hdx -bcache -bch -bcm-phy-lib -bcm203x -bcm3510 -bcm590xx -bcm590xx-regulator -bcm5974 -bcm7038_wdt -bcm7xxx -bcm87xx -bcma -bcma-hcd -bd6107 -bdc -bdc_pci -be2iscsi -be2net -befs -belkin_sa -bfa -bfs -bfusb -bh1750 -bh1770glc -bh1780gli -binfmt_misc -block2mtd -blocklayoutdriver -blowfish-x86_64 -blowfish_common -blowfish_generic -bluecard_cs -bluetooth -bluetooth_6lowpan -bma150 -bma180 -bmc150-accel-core -bmc150-accel-i2c -bmc150-accel-spi -bmc150_magn -bmg160_core -bmg160_i2c -bmg160_spi -bmp085 -bmp085-i2c -bmp085-spi -bmp280 -bna -bnep -bnx2 -bnx2fc -bnx2i -bnx2x -bnxt_en -bonding -bpa10x -bpck -bpqether -bq2415x_charger -bq24190_charger -bq24257_charger -bq24735-charger -bq25890_charger -bq27xxx_battery -br2684 -br_netfilter -brcmfmac -brcmsmac -brcmutil -brd -bridge -broadcom -broadsheetfb -bsd_comp -bt3c_cs -bt819 -bt856 -bt866 -bt878 -btbcm -btcoexist -btintel -btmrvl -btmrvl_sdio -btqca -btrfs -btrtl -btsdio -bttv -btuart_cs -btusb -btwilink -bu21013_ts -budget -budget-av -budget-ci -budget-core -budget-patch -c2port-duramar2150 -c4 -c67x00 -c6xdigio -c_can -c_can_pci -c_can_platform -cachefiles -cadence_wdt -cafe_ccic -cafe_nand -caif -caif_hsi -caif_serial -caif_socket -caif_usb -caif_virtio -camellia-aesni-avx-x86_64 -camellia-aesni-avx2 -camellia-x86_64 -camellia_generic -can -can-bcm -can-dev -can-gw -can-raw -capi -capidrv -capmode -carl9170 -carminefb -cassini -cast5-avx-x86_64 -cast5_generic -cast6-avx-x86_64 -cast6_generic -cast_common -catc -cb710 -cb710-mmc -cb_das16_cs -cb_pcidas -cb_pcidas64 -cb_pcidda -cb_pcimdas -cb_pcimdda -cc10001_adc -cc2520 -cc770 -cc770_isa -cc770_platform -cciss -ccm -ccp -ccp-crypto -cdc-acm -cdc-phonet -cdc-wdm -cdc_eem -cdc_ether -cdc_mbim -cdc_ncm -cdc_subset -ceph -cfag12864b -cfag12864bfb -cfg80211 -cfi_cmdset_0001 -cfi_cmdset_0002 -cfi_cmdset_0020 -cfi_probe -cfi_util -cfspi_slave -ch -ch341 -ch7006 -ch9200 -chacha20-x86_64 -chacha20_generic -chacha20poly1305 -chaoskey -chipreg -chnl_net -chromeos_laptop -chromeos_pstore -ci_hdrc -ci_hdrc_msm -ci_hdrc_pci -ci_hdrc_usb2 -ci_hdrc_zevio -cicada -cifs -cirrus -cirrusfb -ck804xrom -classmate-laptop -clip -clk-cdce706 -clk-palmas -clk-pwm -clk-s2mps11 -clk-si5351 -clk-twl6040 -clk-wm831x -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_rsvp -cls_rsvp6 -cls_tcindex -cls_u32 -cm109 -cm32181 -cm3232 -cm3323 -cm36651 -cm4000_cs -cm4040_cs -cma3000_d0x -cma3000_d0x_i2c -cmac -cmdlinepart -cmtp -cnic -cobalt -cobra -coda -com20020 -com20020-pci -com20020_cs -com90io -com90xx -comedi -comedi_8254 -comedi_8255 -comedi_bond -comedi_isadma -comedi_parport -comedi_pci -comedi_pcmcia -comedi_test -comedi_usb -comm -compal-laptop -configfs -contec_pci_dio -cordic -core -coretemp -cosm_bus -cosm_client -cp210x -cpcihp_generic -cpcihp_zt5550 -cpia2 -cpsw_ale -cpu-notifier-error-inject -cpu5wdt -cpuid -cr_bllcd -cramfs -crc-ccitt -crc-itu-t -crc32 -crc32-pclmul -crc7 -crc8 -crct10dif-pclmul -cros_ec -cros_ec_devs -cros_ec_i2c -cros_ec_keyb -cros_ec_lpc -cros_ec_spi -crvml -cryptd -crypto_user -cryptoloop -cs5345 -cs53l32a -csiostor -ct82c710 -ctr -cts -cuse -cw1200_core -cw1200_wlan_sdio -cw1200_wlan_spi -cx18 -cx18-alsa -cx22700 -cx22702 -cx231xx -cx231xx-alsa -cx231xx-dvb -cx2341x -cx23885 -cx24110 -cx24113 -cx24116 -cx24117 -cx24120 -cx24123 -cx25821 -cx25821-alsa -cx25840 -cx82310_eth -cx88-alsa -cx88-blackbird -cx88-dvb -cx88-vp3054-i2c -cx8800 -cx8802 -cx88xx -cxacru -cxd2099 -cxd2820r -cxd2841er -cxgb -cxgb3 -cxgb3i -cxgb4 -cxgb4i -cxgb4vf -cy8ctmg110_ts -cyapatp -cyber2000fb -cyberjack -cyclades -cypress_cy7c63 -cypress_firmware -cypress_m8 -cytherm -cyttsp4_core -cyttsp4_i2c -cyttsp4_spi -cyttsp_core -cyttsp_i2c -cyttsp_i2c_common -cyttsp_spi -da9030_battery -da9034-ts -da903x -da903x_bl -da9052-battery -da9052-hwmon -da9052-regulator -da9052_bl -da9052_onkey -da9052_tsi -da9052_wdt -da9055-hwmon -da9055-regulator -da9055_onkey -da9055_wdt -da9062-core -da9062-regulator -da9062_wdt -da9063-regulator -da9063_onkey -da9063_wdt -da9150-charger -da9150-core -da9150-fg -da9150-gpadc -da9210-regulator -da9211-regulator -dac02 -daqboard2000 -das08 -das08_cs -das08_isa -das08_pci -das16 -das16m1 -das1800 -das6402 -das800 -davicom -db9 -dc395x -dca -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -dccp_probe -dcdbas -ddbridge -de2104x -de4x5 -decnet -deflate -defxx -dell-laptop -dell-led -dell-rbtn -dell-smm-hwmon -dell-smo8800 -dell-wmi -dell-wmi-aio -dell_rbu -denali -denali_dt -denali_pci -des3_ede-x86_64 -des_generic -designware_i2s -dgap -dgnc -dht11 -dib0070 -dib0090 -dib3000mb -dib3000mc -dib7000m -dib7000p -dib8000 -dibx000_common -digi_acceleport -diskonchip -diva_idi -diva_mnt -divacapi -divadidd -divas -dl2k -dlci -dlm -dln2 -dm-bio-prison -dm-bufio -dm-cache -dm-cache-cleaner -dm-cache-mq -dm-cache-smq -dm-crypt -dm-delay -dm-era -dm-flakey -dm-log -dm-log-userspace -dm-log-writes -dm-mirror -dm-multipath -dm-persistent-data -dm-queue-length -dm-raid -dm-region-hash -dm-round-robin -dm-service-time -dm-snapshot -dm-switch -dm-thin-pool -dm-verity -dm-zero -dm1105 -dm9601 -dme1737 -dmfe -dmi-sysfs -dmm32at -dmx3191d -dn_rtmsg -dnet -docg3 -docg4 -dp83848 -dp83867 -dpt_i2o -drbd -drbg -drm -drm_kms_helper -drop_monitor -drv260x -drv2665 -drv2667 -drx39xyj -drxd -drxk -ds1621 -ds1682 -ds1wm -ds2482 -ds2490 -ds2760_battery -ds2780_battery -ds2781_battery -ds2782_battery -ds3000 -ds620 -dsbr100 -dscc4 -dss1_divert -dst -dst_ca -dstr -dt2801 -dt2811 -dt2814 -dt2815 -dt2817 -dt282x -dt3000 -dt3155 -dt9812 -dtl1_cs -dummy -dummy-irq -dummy_stm -dvb-as102 -dvb-bt8xx -dvb-core -dvb-pll -dvb-ttpci -dvb-ttusb-budget -dvb-usb -dvb-usb-a800 -dvb-usb-af9005 -dvb-usb-af9005-remote -dvb-usb-af9015 -dvb-usb-af9035 -dvb-usb-anysee -dvb-usb-au6610 -dvb-usb-az6007 -dvb-usb-az6027 -dvb-usb-ce6230 -dvb-usb-cinergyT2 -dvb-usb-cxusb -dvb-usb-dib0700 -dvb-usb-dibusb-common -dvb-usb-dibusb-mb -dvb-usb-dibusb-mc -dvb-usb-digitv -dvb-usb-dtt200u -dvb-usb-dtv5100 -dvb-usb-dvbsky -dvb-usb-dw2102 -dvb-usb-ec168 -dvb-usb-friio -dvb-usb-gl861 -dvb-usb-gp8psk -dvb-usb-lmedm04 -dvb-usb-m920x -dvb-usb-mxl111sf -dvb-usb-nova-t-usb2 -dvb-usb-opera -dvb-usb-pctv452e -dvb-usb-rtl28xxu -dvb-usb-technisat-usb2 -dvb-usb-ttusb2 -dvb-usb-umt-010 -dvb-usb-vp702x -dvb-usb-vp7045 -dvb_usb_v2 -dw_dmac -dw_dmac_core -dw_dmac_pci -dw_wdt -dwc3 -dwc3-pci -dwmac-generic -dyna_pci10xx -dynapro -e100 -e1000 -e1000e -e3x0-button -e4000 -e752x_edac -earth-pt1 -earth-pt3 -eata -ebt_802_3 -ebt_among -ebt_arp -ebt_arpreply -ebt_dnat -ebt_ip -ebt_ip6 -ebt_limit -ebt_log -ebt_mark -ebt_mark_m -ebt_nflog -ebt_pkttype -ebt_redirect -ebt_snat -ebt_stp -ebt_vlan -ebtable_broute -ebtable_filter -ebtable_nat -ebtables -ec100 -ec_bhf -ec_sys -echainiv -echo -edac_core -edac_mce_amd -edt-ft5x06 -eeepc-laptop -eeepc-wmi -eeprom -eeprom_93cx6 -eeprom_93xx46 -eeti_ts -efi-pstore -efi_test -efs -ehset -einj -elan_i2c -elo -elsa_cs -em28xx -em28xx-alsa -em28xx-dvb -em28xx-rc -em28xx-v4l -em_canid -em_cmp -em_ipset -em_meta -em_nbyte -em_text -em_u32 -emc1403 -emc2103 -emc6w201 -emi26 -emi62 -empeg -ems_pci -ems_pcmcia -ems_usb -emu10k1-gp -ena -enc28j60 -enclosure -encx24j600 -encx24j600-regmap -ene_ir -eni -enic -epat -epia -epic100 -eql -esas2r -esb2rom -esd_usb2 -esi-sir -esp4 -esp6 -esp_scsi -et1011c -et131x -ethoc -eurotechwdt -evbug -exofs -extcon-adc-jack -extcon-arizona -extcon-axp288 -extcon-gpio -extcon-max14577 -extcon-max77693 -extcon-max77843 -extcon-max8997 -extcon-palmas -extcon-rt8973a -extcon-sm5502 -extcon-usb-gpio -ezusb -f2fs -f71805f -f71808e_wdt -f71882fg -f75375s -f81232 -fakelb -fam15h_power -fan53555 -farsync -faulty -fb_agm1264k-fl -fb_bd663474 -fb_ddc -fb_hx8340bn -fb_hx8347d -fb_hx8353d -fb_hx8357d -fb_ili9163 -fb_ili9320 -fb_ili9325 -fb_ili9340 -fb_ili9341 -fb_ili9481 -fb_ili9486 -fb_pcd8544 -fb_ra8875 -fb_s6d02a1 -fb_s6d1121 -fb_ssd1289 -fb_ssd1306 -fb_ssd1331 -fb_ssd1351 -fb_st7735r -fb_st7789v -fb_sys_fops -fb_tinylcd -fb_tls8204 -fb_uc1611 -fb_uc1701 -fb_upd161704 -fb_watterott -fbtft -fbtft_device -fc0011 -fc0012 -fc0013 -fc2580 -fcoe -fcrypt -fdomain -fdomain_cs -fdp -fdp_i2c -fealnx -ff-memless -fintek-cir -firedtv -firestream -firewire-core -firewire-net -firewire-ohci -firewire-sbp2 -firewire-serial -fit2 -fit3 -fixed -fjes -fl512 -flexfb -floppy -fm10k -fm801-gp -fm_drv -fmc -fmc-chardev -fmc-fakedev -fmc-trivial -fmc-write-eeprom -fmvj18x_cs -fnic -forcedeth -fore_200e -fotg210-hcd -fotg210-udc -fou -fpga-mgr -freevxfs -friq -frpw -fsa9480 -fscache -fschmd -fsl_lpuart -ft6236 -ftdi-elan -ftdi_sio -ftl -fujitsu-laptop -fujitsu-tablet -fujitsu_ts -g450_pll -g760a -g762 -g_acm_ms -g_audio -g_cdc -g_dbgp -g_ether -g_ffs -g_hid -g_mass_storage -g_midi -g_ncm -g_nokia -g_printer -g_serial -g_webcam -g_zero -gadgetfs -gamecon -gameport -garmin_gps -garp -gcm -gdmtty -gdmulte -gdmwm -gdth -gen_probe -generic -generic-adc-battery -generic_bl -genet -geneve -gennvm -genwqe_card -gf128mul -gf2k -gfs2 -ghash-clmulni-intel -ghash-generic -gigaset -girbil-sir -gl518sm -gl520sm -gl620a -glue_helper -gluebi -gma500_gfx -go7007 -go7007-loader -go7007-usb -goku_udc -goodix -gp2ap002a00f -gp2ap020a00f -gpio -gpio-104-idio-16 -gpio-addr-flash -gpio-adp5520 -gpio-adp5588 -gpio-amd8111 -gpio-amdpt -gpio-arizona -gpio-beeper -gpio-charger -gpio-crystalcove -gpio-da9052 -gpio-da9055 -gpio-dln2 -gpio-dwapb -gpio-f7188x -gpio-fan -gpio-generic -gpio-ich -gpio-ir-recv -gpio-it87 -gpio-janz-ttl -gpio-kempld -gpio-lp3943 -gpio-max7300 -gpio-max7301 -gpio-max730x -gpio-max732x -gpio-mc33880 -gpio-mcp23s08 -gpio-ml-ioh -gpio-pca953x -gpio-pcf857x -gpio-rdc321x -gpio-regulator -gpio-sch -gpio-sch311x -gpio-tps65912 -gpio-twl4030 -gpio-twl6040 -gpio-ucb1400 -gpio-viperboard -gpio-vx855 -gpio-wm831x -gpio-wm8350 -gpio-wm8994 -gpio_backlight -gpio_keys -gpio_keys_polled -gpio_mouse -gpio_tilt_polled -gr_udc -grace -gre -grip -grip_mp -gs_fpga -gs_usb -gsc_hpdi -gspca_benq -gspca_conex -gspca_cpia1 -gspca_dtcs033 -gspca_etoms -gspca_finepix -gspca_gl860 -gspca_jeilinj -gspca_jl2005bcd -gspca_kinect -gspca_konica -gspca_m5602 -gspca_main -gspca_mars -gspca_mr97310a -gspca_nw80x -gspca_ov519 -gspca_ov534 -gspca_ov534_9 -gspca_pac207 -gspca_pac7302 -gspca_pac7311 -gspca_se401 -gspca_sn9c2028 -gspca_sn9c20x -gspca_sonixb -gspca_sonixj -gspca_spca1528 -gspca_spca500 -gspca_spca501 -gspca_spca505 -gspca_spca506 -gspca_spca508 -gspca_spca561 -gspca_sq905 -gspca_sq905c -gspca_sq930x -gspca_stk014 -gspca_stk1135 -gspca_stv0680 -gspca_stv06xx -gspca_sunplus -gspca_t613 -gspca_topro -gspca_touptek -gspca_tv8532 -gspca_vc032x -gspca_vicam -gspca_xirlink_cit -gspca_zc3xx -gtco -guillemot -gunze -gxt4500 -hackrf -hamachi -hampshire -hangcheck-timer -hanwang -hci -hci_uart -hci_vhci -hdaps -hdc100x -hdlc -hdlc_cisco -hdlc_fr -hdlc_ppp -hdlc_raw -hdlc_raw_eth -hdlc_x25 -hdlcdrv -hdm_dim2 -hdm_i2c -hdm_usb -hdpvr -he -hecubafb -hexium_gemini -hexium_orion -hfc4s8s_l1 -hfc_usb -hfcmulti -hfcpci -hfcsusb -hfi1 -hfs -hfsplus -hgafb -hi8435 -hid -hid-a4tech -hid-alps -hid-apple -hid-appleir -hid-aureal -hid-axff -hid-belkin -hid-betopff -hid-cherry -hid-chicony -hid-corsair -hid-cp2112 -hid-cypress -hid-dr -hid-elecom -hid-elo -hid-emsff -hid-ezkey -hid-gaff -hid-gembird -hid-generic -hid-gfrm -hid-gt683r -hid-gyration -hid-holtek-kbd -hid-holtek-mouse -hid-holtekff -hid-hyperv -hid-icade -hid-kensington -hid-keytouch -hid-kye -hid-lcpower -hid-lenovo -hid-logitech -hid-logitech-dj -hid-logitech-hidpp -hid-magicmouse -hid-microsoft -hid-monterey -hid-multitouch -hid-ntrig -hid-ortek -hid-penmount -hid-petalynx -hid-picolcd -hid-pl -hid-plantronics -hid-primax -hid-prodikeys -hid-rmi -hid-roccat -hid-roccat-arvo -hid-roccat-common -hid-roccat-isku -hid-roccat-kone -hid-roccat-koneplus -hid-roccat-konepure -hid-roccat-kovaplus -hid-roccat-lua -hid-roccat-pyra -hid-roccat-ryos -hid-roccat-savu -hid-saitek -hid-samsung -hid-sensor-accel-3d -hid-sensor-als -hid-sensor-custom -hid-sensor-gyro-3d -hid-sensor-hub -hid-sensor-iio-common -hid-sensor-incl-3d -hid-sensor-magn-3d -hid-sensor-press -hid-sensor-prox -hid-sensor-rotation -hid-sensor-trigger -hid-sjoy -hid-sony -hid-speedlink -hid-steelseries -hid-sunplus -hid-thingm -hid-tivo -hid-tmff -hid-topseed -hid-twinhan -hid-uclogic -hid-waltop -hid-wiimote -hid-xinmo -hid-zpff -hid-zydacron -hidp -hih6130 -hio -hisax -hisax_fcpcipnp -hisax_isac -hisax_st5481 -hisi504_nand -hmc5843_core -hmc5843_i2c -hmc5843_spi -hmc6352 -hopper -horizon -horus3a -hostap -hostap_cs -hostap_pci -hostap_plx -hp-wireless -hp-wmi -hp100 -hp_accel -hpfs -hpilo -hpsa -hptiop -hpwdt -hsi -hsi_char -hso -hsr -hsu_dma -htc-pasic3 -hts221 -hts221_i2c -hts221_spi -htu21 -huawei_cdc_ncm -hv_balloon -hv_netvsc -hv_network_direct -hv_storvsc -hv_utils -hv_vmbus -hwa-hc -hwa-rc -hwmon-vid -hwpoison-inject -hx8357 -hyperv-keyboard -hyperv_fb -hysdn -i1480-dfu-usb -i1480-est -i2400m -i2400m-usb -i2c-algo-bit -i2c-algo-pca -i2c-ali1535 -i2c-ali1563 -i2c-ali15x3 -i2c-amd756 -i2c-amd756-s4882 -i2c-amd8111 -i2c-cbus-gpio -i2c-cros-ec-tunnel -i2c-designware-core -i2c-designware-pci -i2c-designware-platform -i2c-diolan-u2c -i2c-dln2 -i2c-emev2 -i2c-gpio -i2c-hid -i2c-i801 -i2c-isch -i2c-ismt -i2c-kempld -i2c-matroxfb -i2c-mux -i2c-mux-gpio -i2c-mux-pca9541 -i2c-mux-pca954x -i2c-mux-pinctrl -i2c-mux-reg -i2c-nforce2 -i2c-nforce2-s4985 -i2c-ocores -i2c-parport -i2c-parport-light -i2c-pca-platform -i2c-piix4 -i2c-robotfuzz-osif -i2c-scmi -i2c-simtec -i2c-sis5595 -i2c-sis630 -i2c-sis96x -i2c-smbus -i2c-stub -i2c-taos-evm -i2c-tiny-usb -i2c-via -i2c-viapro -i2c-viperboard -i2c-xiic -i3000_edac -i3200_edac -i40e -i40evf -i5000_edac -i5100_edac -i5400_edac -i5500_temp -i5k_amb -i6300esb -i7300_edac -i7300_idle -i740fb -i7core_edac -i82092 -i82975x_edac -i915 -i915_bpo -iTCO_vendor_support -iTCO_wdt -ib700wdt -ib_addr -ib_cm -ib_core -ib_ipath -ib_ipoib -ib_iser -ib_isert -ib_mad -ib_mthca -ib_qib -ib_sa -ib_srp -ib_srpt -ib_ucm -ib_umad -ib_uverbs -ibm_rtl -ibmaem -ibmasm -ibmasr -ibmpex -ichxrom -icp_multi -icplus -ics932s401 -ideapad-laptop -ideapad_slidebar -idma64 -idmouse -idt77252 -idt_gen2 -idtcps -ie31200_edac -ie6xx_wdt -ieee802154 -ieee802154_6lowpan -ieee802154_socket -ifb -iforce -igb -igbvf -igorplugusb -iguanair -ii_pci20kc -iio-trig-interrupt -iio-trig-periodic-rtc -iio-trig-sysfs -iio_dummy -iio_hwmon -ila -ili210x -ili922x -ili9320 -imm -imon -ims-pcu -imx074 -ina209 -ina2xx -industrialio -industrialio-buffer-cb -industrialio-triggered-buffer -industrialio-triggered-event -inet_diag -inexio -inftl -initio -input-leds -input-polldev -int3400_thermal -int3402_thermal -int3403_thermal -int340x_thermal_zone -int51x1 -intel-hid -intel-lpss -intel-lpss-acpi -intel-lpss-pci -intel-rng -intel-rst -intel-smartconnect -intel-vbtn -intel_ips -intel_menlow -intel_oaktrail -intel_pch_thermal -intel_pmc_ipc -intel_powerclamp -intel_punit_ipc -intel_qat -intel_quark_i2c_gpio -intel_rapl -intel_soc_dts_iosf -intel_soc_dts_thermal -intel_telemetry_core -intel_telemetry_debugfs -intel_telemetry_pltdrv -intel_th -intel_th_gth -intel_th_msu -intel_th_pci -intel_th_pti -intel_th_sth -intel_vr_nor -intelfb -interact -interval_tree_test -inv-mpu6050 -io_edgeport -io_ti -ioatdma -ioc4 -iowarrior -ip6_gre -ip6_tables -ip6_tunnel -ip6_udp_tunnel -ip6_vti -ip6t_MASQUERADE -ip6t_NPT -ip6t_REJECT -ip6t_SYNPROXY -ip6t_ah -ip6t_eui64 -ip6t_frag -ip6t_hbh -ip6t_ipv6header -ip6t_mh -ip6t_rpfilter -ip6t_rt -ip6table_filter -ip6table_mangle -ip6table_nat -ip6table_raw -ip6table_security -ip_gre -ip_set -ip_set_bitmap_ip -ip_set_bitmap_ipmac -ip_set_bitmap_port -ip_set_hash_ip -ip_set_hash_ipmark -ip_set_hash_ipport -ip_set_hash_ipportip -ip_set_hash_ipportnet -ip_set_hash_mac -ip_set_hash_net -ip_set_hash_netiface -ip_set_hash_netnet -ip_set_hash_netport -ip_set_hash_netportnet -ip_set_list_set -ip_tables -ip_tunnel -ip_vs -ip_vs_dh -ip_vs_fo -ip_vs_ftp -ip_vs_lblc -ip_vs_lblcr -ip_vs_lc -ip_vs_nq -ip_vs_ovf -ip_vs_pe_sip -ip_vs_rr -ip_vs_sed -ip_vs_sh -ip_vs_wlc -ip_vs_wrr -ip_vti -ipack -ipaq -ipcomp -ipcomp6 -ipddp -iphase -ipheth -ipip -ipmi_devintf -ipmi_msghandler -ipmi_poweroff -ipmi_si -ipmi_ssif -ipmi_watchdog -ipoctal -ipr -ips -ipt_CLUSTERIP -ipt_ECN -ipt_MASQUERADE -ipt_REJECT -ipt_SYNPROXY -ipt_ah -ipt_rpfilter -iptable_filter -iptable_mangle -iptable_nat -iptable_raw -iptable_security -ipvlan -ipw -ipw2100 -ipw2200 -ipwireless -ipx -ir-hix5hd2 -ir-jvc-decoder -ir-kbd-i2c -ir-lirc-codec -ir-mce_kbd-decoder -ir-nec-decoder -ir-rc5-decoder -ir-rc6-decoder -ir-sanyo-decoder -ir-sharp-decoder -ir-sony-decoder -ir-usb -ir-xmp-decoder -ircomm -ircomm-tty -irda -irda-usb -irlan -irnet -irqbypass -irtty-sir -isci -iscsi_boot_sysfs -iscsi_ibft -iscsi_target_mod -iscsi_tcp -isdn -isdn_bsdcomp -isdnhdlc -isicom -isight_firmware -isl29003 -isl29018 -isl29020 -isl29028 -isl29125 -isl6271a-regulator -isl6405 -isl6421 -isl6423 -isl9305 -isofs -isp116x-hcd -isp1362-hcd -isp1704_charger -isp1760 -it87 -it8712f_wdt -it87_wdt -it913x -itd1000 -ite-cir -itg3200 -iuu_phoenix -ivtv -ivtv-alsa -ivtvfb -iw_c2 -iw_cm -iw_cxgb3 -iw_cxgb4 -iw_nes -iwl3945 -iwl4965 -iwldvm -iwlegacy -iwlmvm -iwlwifi -ix2505v -ixgb -ixgbe -ixgbevf -janz-cmodio -janz-ican3 -jc42 -jedec_probe -jffs2 -jfs -jitterentropy_rng -jmb38x_ms -jme -joydev -joydump -jr3_pci -jsa1212 -jsm -k10temp -k8temp -kafs -kalmia -kaweth -kb3886_bl -kbic -kbtab -kcomedilib -ke_counter -kempld-core -kempld_wdt -kernelcapi -keyspan -keyspan_pda -keyspan_remote -keywrap -kfifo_buf -khazad -kingsun-sir -kl5kusb105 -kmx61 -kobil_sct -ks0108 -ks0127 -ks8842 -ks8851 -ks8851_mll -ks959-sir -ksdazzle-sir -ksz884x -ktti -kvaser_pci -kvaser_usb -kvm -kvm-amd -kvm-intel -kxcjk-1013 -kxsd9 -kxtj9 -kyrofb -l1oip -l2tp_core -l2tp_debugfs -l2tp_eth -l2tp_ip -l2tp_ip6 -l2tp_netlink -l2tp_ppp -l440gx -l4f00242t03 -l64781 -lan78xx -lanai -lapb -lapbether -latch-addr-flash -lattice-ecp3-config -lcd -ld9040 -ldusb -lec -led-class-flash -leds-88pm860x -leds-adp5520 -leds-bd2802 -leds-blinkm -leds-clevo-mail -leds-da903x -leds-da9052 -leds-dac124s085 -leds-gpio -leds-lm3530 -leds-lm3533 -leds-lm355x -leds-lm3642 -leds-lp3944 -leds-lp5521 -leds-lp5523 -leds-lp5562 -leds-lp55xx-common -leds-lp8501 -leds-lp8788 -leds-lp8860 -leds-lt3593 -leds-max8997 -leds-mc13783 -leds-menf21bmc -leds-pca9532 -leds-pca955x -leds-pca963x -leds-pwm -leds-regulator -leds-ss4200 -leds-tca6507 -leds-tlc591xx -leds-wm831x-status -leds-wm8350 -ledtrig-backlight -ledtrig-camera -ledtrig-default-on -ledtrig-gpio -ledtrig-heartbeat -ledtrig-oneshot -ledtrig-timer -ledtrig-transient -legousbtower -lg-vl600 -lg2160 -lgdt3305 -lgdt3306a -lgdt330x -lgs8gxx -lib80211 -lib80211_crypt_ccmp -lib80211_crypt_tkip -lib80211_crypt_wep -libahci -libahci_platform -libceph -libcomposite -libcrc32c -libcxgbi -libertas -libertas_cs -libertas_sdio -libertas_spi -libertas_tf -libertas_tf_usb -libfc -libfcoe -libipw -libiscsi -libiscsi_tcp -libore -libosd -libsas -lightning -lineage-pem -linear -liquidio -lirc_bt829 -lirc_dev -lirc_imon -lirc_parallel -lirc_sasem -lirc_serial -lirc_sir -lirc_zilog -lis3l02dq -lis3lv02d -lis3lv02d_i2c -litelink-sir -lkkbd -llc -llc2 -lm25066 -lm3533-als -lm3533-core -lm3533-ctrlbank -lm3533_bl -lm3630a_bl -lm3639_bl -lm63 -lm70 -lm73 -lm75 -lm77 -lm78 -lm80 -lm83 -lm8323 -lm8333 -lm85 -lm87 -lm90 -lm92 -lm93 -lm95234 -lm95241 -lm95245 -lmc -lms283gf05 -lms501kf03 -lnbh25 -lnbp21 -lnbp22 -lockd -locktorture -lp -lp3943 -lp3971 -lp3972 -lp855x_bl -lp8727_charger -lp872x -lp8755 -lp8788-buck -lp8788-charger -lp8788-ldo -lp8788_adc -lp8788_bl -lpc_ich -lpc_sch -lpddr_cmds -lpfc -lru_cache -lrw -ltc2941-battery-gauge -ltc2945 -ltc2978 -ltc3589 -ltc4151 -ltc4215 -ltc4222 -ltc4245 -ltc4260 -ltc4261 -ltr501 -ltv350qv -lv5207lp -lvstest -lxt -lz4 -lz4_compress -lz4hc -lz4hc_compress -m25p80 -m2m-deinterlace -m52790 -m62332 -m88ds3103 -m88rs2000 -m88rs6000t -mISDN_core -mISDN_dsp -mISDNinfineon -mISDNipac -mISDNisar -m_can -ma600-sir -mac-celtic -mac-centeuro -mac-croatian -mac-cyrillic -mac-gaelic -mac-greek -mac-iceland -mac-inuit -mac-roman -mac-romanian -mac-turkish -mac80211 -mac80211_hwsim -mac802154 -mac_hid -macb -machzwd -macmodes -macvlan -macvtap -mag3110 -magellan -mailbox-altera -mantis -mantis_core -map_absent -map_funcs -map_ram -map_rom -marvell -matrix-keymap -matrix_keypad -matrox_w1 -matroxfb_DAC1064 -matroxfb_Ti3026 -matroxfb_accel -matroxfb_base -matroxfb_crtc2 -matroxfb_g450 -matroxfb_maven -matroxfb_misc -max1027 -max1111 -max11801_ts -max1363 -max14577 -max14577_charger -max1586 -max16064 -max16065 -max1619 -max1668 -max17040_battery -max17042_battery -max197 -max20751 -max2165 -max3100 -max31790 -max3421-hcd -max34440 -max517 -max63xx_wdt -max6639 -max6642 -max6650 -max6697 -max6875 -max7359_keypad -max77693 -max77693-haptic -max77693_charger -max8649 -max8660 -max8688 -max8903_charger -max8907 -max8907-regulator -max8925-regulator -max8925_bl -max8925_onkey -max8925_power -max8952 -max8973-regulator -max8997 -max8997_charger -max8997_haptic -max8998 -max8998_charger -mb862xxfb -mb86a16 -mb86a20s -mc13783-adc -mc13783-pwrbutton -mc13783-regulator -mc13783_ts -mc13892-regulator -mc13xxx-core -mc13xxx-i2c -mc13xxx-regulator-core -mc13xxx-spi -mc44s803 -mcb -mcb-pci -mce-inject -mce_amd_inj -mceusb -mcp2120-sir -mcp251x -mcp3021 -mcp320x -mcp3422 -mcp4531 -mcp4725 -mcp4922 -mcryptd -mcs5000_ts -mcs7780 -mcs7830 -mcs_touchkey -mct_u232 -md-cluster -md4 -mdc800 -mdio -mdio-bcm-unimac -mdio-bitbang -mdio-cavium -mdio-gpio -mdio-octeon -mdio-thunder -mdio-xgene -me4000 -me_daq -media -megaraid -megaraid_mbox -megaraid_mm -megaraid_sas -mei -mei-me -mei-txe -mei_phy -memory-notifier-error-inject -memstick -men_z135_uart -men_z188_adc -mena21_wdt -menf21bmc -menf21bmc_hwmon -menf21bmc_wdt -metro-usb -metronomefb -meye -mf6x4 -mga -mic_bus -mic_card -mic_cosm -mic_host -mic_x100_dma -michael_mic -micrel -microchip -microread -microread_i2c -microread_mei -microtek -mii -minix -mip6 -mite -mk712 -mkiss -mlx4_core -mlx4_en -mlx4_ib -mlx5_core -mlx5_ib -mlx90614 -mlxsw_core -mlxsw_pci -mma8450 -mma8452 -mma9551 -mma9551_core -mma9553 -mmc35240 -mmc_block -mmc_spi -mms114 -mn88472 -mn88473 -mos7720 -mos7840 -mostcore -moxa -mpc624 -mpl115 -mpl3115 -mpls_gso -mpls_iptunnel -mpls_router -mpoa -mpr121_touchkey -mpt3sas -mptbase -mptctl -mptfc -mptlan -mptsas -mptscsih -mptspi -mpu3050 -mrf24j40 -mrp -ms5611_core -ms5611_i2c -ms5611_spi -ms5637 -ms_block -ms_sensors_i2c -msdos -msi-laptop -msi-wmi -msi001 -msi2500 -msp3400 -mspro_block -msr -mt2060 -mt2063 -mt20xx -mt2131 -mt2266 -mt29f_spinand -mt312 -mt352 -mt6311-regulator -mt6397-core -mt6397-regulator -mt7601u -mt9m001 -mt9m111 -mt9t031 -mt9t112 -mt9v011 -mt9v022 -mtd -mtd_blkdevs -mtd_dataflash -mtdblock -mtdblock_ro -mtdoops -mtdram -mtdswap -mtip32xx -mtk-sd -mtouch -multipath -multiq3 -musb_hdrc -mv_u3d_core -mv_udc -mvmdio -mvsas -mvumi -mwave -mwifiex -mwifiex_pcie -mwifiex_sdio -mwifiex_usb -mwl8k -mxb -mxc4005 -mxl111sf-demod -mxl111sf-tuner -mxl301rf -mxl5005s -mxl5007t -mxm-wmi -mxser -mxuport -myri10ge -n411 -n_gsm -n_hdlc -n_r3964 -n_tracerouter -n_tracesink -nand -nand_bch -nand_ecc -nand_ids -nandsim -national -natsemi -nau7802 -navman -nb8800 -nbd -nci -nci_spi -nci_uart -ncpfs -nct6683 -nct6775 -nct7802 -nct7904 -nd_blk -nd_btt -nd_pmem -ne2k-pci -neofb -net1080 -net2272 -net2280 -netconsole -netjet -netlink_diag -netrom -nettel -netup-unidvb -netxen_nic -newtonkbd -nf_conntrack -nf_conntrack_amanda -nf_conntrack_broadcast -nf_conntrack_ftp -nf_conntrack_h323 -nf_conntrack_ipv4 -nf_conntrack_ipv6 -nf_conntrack_irc -nf_conntrack_netbios_ns -nf_conntrack_netlink -nf_conntrack_pptp -nf_conntrack_proto_dccp -nf_conntrack_proto_gre -nf_conntrack_proto_sctp -nf_conntrack_proto_udplite -nf_conntrack_sane -nf_conntrack_sip -nf_conntrack_snmp -nf_conntrack_tftp -nf_defrag_ipv4 -nf_defrag_ipv6 -nf_dup_ipv4 -nf_dup_ipv6 -nf_log_arp -nf_log_bridge -nf_log_common -nf_log_ipv4 -nf_log_ipv6 -nf_nat -nf_nat_amanda -nf_nat_ftp -nf_nat_h323 -nf_nat_ipv4 -nf_nat_ipv6 -nf_nat_irc -nf_nat_masquerade_ipv4 -nf_nat_masquerade_ipv6 -nf_nat_pptp -nf_nat_proto_dccp -nf_nat_proto_gre -nf_nat_proto_sctp -nf_nat_proto_udplite -nf_nat_redirect -nf_nat_sip -nf_nat_snmp_basic -nf_nat_tftp -nf_reject_ipv4 -nf_reject_ipv6 -nf_synproxy_core -nf_tables -nf_tables_arp -nf_tables_bridge -nf_tables_inet -nf_tables_ipv4 -nf_tables_ipv6 -nf_tables_netdev -nfc -nfc_digital -nfcmrvl -nfcmrvl_i2c -nfcmrvl_spi -nfcmrvl_uart -nfcmrvl_usb -nfcsim -nfcwilink -nfit -nfnetlink -nfnetlink_acct -nfnetlink_cthelper -nfnetlink_cttimeout -nfnetlink_log -nfnetlink_queue -nfs -nfs_acl -nfs_layout_flexfiles -nfs_layout_nfsv41_files -nfsd -nfsv2 -nfsv3 -nfsv4 -nft_chain_nat_ipv4 -nft_chain_nat_ipv6 -nft_chain_route_ipv4 -nft_chain_route_ipv6 -nft_compat -nft_counter -nft_ct -nft_dup_ipv4 -nft_dup_ipv6 -nft_exthdr -nft_hash -nft_limit -nft_log -nft_masq -nft_masq_ipv4 -nft_masq_ipv6 -nft_meta -nft_meta_bridge -nft_nat -nft_queue -nft_rbtree -nft_redir -nft_redir_ipv4 -nft_redir_ipv6 -nft_reject -nft_reject_bridge -nft_reject_inet -nft_reject_ipv4 -nft_reject_ipv6 -nftl -ngene -nhc_dest -nhc_fragment -nhc_hop -nhc_ipv6 -nhc_mobility -nhc_routing -nhc_udp -ni_6527 -ni_65xx -ni_660x -ni_670x -ni_at_a2150 -ni_at_ao -ni_atmio -ni_atmio16d -ni_daq_700 -ni_daq_dio24 -ni_labpc -ni_labpc_common -ni_labpc_cs -ni_labpc_isadma -ni_labpc_pci -ni_mio_cs -ni_pcidio -ni_pcimio -ni_tio -ni_tiocmd -ni_usb6501 -nicpf -nicstar -nicvf -nilfs2 -niu -nlmon -nls_ascii -nls_cp1250 -nls_cp1251 -nls_cp1255 -nls_cp737 -nls_cp775 -nls_cp850 -nls_cp852 -nls_cp855 -nls_cp857 -nls_cp860 -nls_cp861 -nls_cp862 -nls_cp863 -nls_cp864 -nls_cp865 -nls_cp866 -nls_cp869 -nls_cp874 -nls_cp932 -nls_cp936 -nls_cp949 -nls_cp950 -nls_euc-jp -nls_iso8859-13 -nls_iso8859-14 -nls_iso8859-15 -nls_iso8859-2 -nls_iso8859-3 -nls_iso8859-4 -nls_iso8859-5 -nls_iso8859-6 -nls_iso8859-7 -nls_iso8859-9 -nls_koi8-r -nls_koi8-ru -nls_koi8-u -nls_utf8 -nmclan_cs -nosy -notifier-error-inject -nouveau -nozomi -ns558 -ns83820 -nsc-ircc -ntb -ntb_hw_amd -ntb_hw_intel -ntb_netdev -ntb_pingpong -ntb_tool -ntb_transport -ntc_thermistor -ntfs -null_blk -nuvoton-cir -nv_tco -nvidiafb -nvme -nvmem_core -nvram -nxp-nci -nxp-nci_i2c -nxt200x -nxt6000 -objlayoutdriver -ocfb -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -ocrdma -of_xilinx_wdt -old_belkin-sir -omfs -omninet -on20 -on26 -onenand -opencores-kbd -openvswitch -oprofile -opt3001 -opticon -option -or51132 -or51211 -orinoco -orinoco_cs -orinoco_nortel -orinoco_plx -orinoco_tmd -orinoco_usb -osd -osdblk -osst -oti6858 -ov2640 -ov5642 -ov6650 -ov7640 -ov7670 -ov772x -ov9640 -ov9740 -overlay -oxu210hp-hcd -p4-clockmod -p54common -p54pci -p54spi -p54usb -p8022 -p8023 -pa12203001 -padlock-aes -padlock-sha -palmas-pwrbutton -palmas-regulator -panasonic-laptop -pandora_bl -panel -paride -parkbd -parport -parport_ax88796 -parport_cs -parport_pc -parport_serial -pata_acpi -pata_ali -pata_amd -pata_artop -pata_atiixp -pata_atp867x -pata_cmd640 -pata_cmd64x -pata_cypress -pata_efar -pata_hpt366 -pata_hpt37x -pata_hpt3x2n -pata_hpt3x3 -pata_it8213 -pata_it821x -pata_jmicron -pata_legacy -pata_marvell -pata_mpiix -pata_netcell -pata_ninja32 -pata_ns87410 -pata_ns87415 -pata_oldpiix -pata_opti -pata_optidma -pata_pcmcia -pata_pdc2027x -pata_pdc202xx_old -pata_piccolo -pata_platform -pata_radisys -pata_rdc -pata_rz1000 -pata_sch -pata_serverworks -pata_sil680 -pata_sl82c105 -pata_triflex -pata_via -pc300too -pc87360 -pc87413_wdt -pc87427 -pcap-regulator -pcap_keys -pcap_ts -pcbc -pcd -pcf50633 -pcf50633-adc -pcf50633-backlight -pcf50633-charger -pcf50633-gpio -pcf50633-input -pcf50633-regulator -pcf8574_keypad -pcf8591 -pch_udc -pci -pci-hyperv -pci-stub -pci200syn -pcips2 -pcl711 -pcl724 -pcl726 -pcl730 -pcl812 -pcl816 -pcl818 -pcm3724 -pcmad -pcmcia -pcmcia_core -pcmcia_rsrc -pcmciamtd -pcmda12 -pcmmio -pcmuio -pcnet32 -pcnet_cs -pcrypt -pcspkr -pcwd_pci -pcwd_usb -pd -pd6729 -pda_power -pdc_adma -peak_pci -peak_pcmcia -peak_usb -pegasus -penmount -percpu_test -pf -pfuze100-regulator -pg -phantom -phonet -phram -phy-bcm-kona-usb2 -phy-exynos-usb2 -phy-gpio-vbus-usb -phy-isp1301 -phy-pxa-28nm-hsic -phy-pxa-28nm-usb2 -phy-tahvo -phy-tusb1210 -physmap -pinctrl-broxton -pinctrl-intel -pinctrl-sunrisepoint -pixcir_i2c_ts -pkcs7_test_key -pktcdvd -pktgen -pl2303 -plat-ram -plat_nand -platform_lcd -plip -plusb -pluto2 -plx_pci -pm-notifier-error-inject -pm2fb -pm3fb -pm80xx -pm8941-wled -pmbus -pmbus_core -pmc551 -pmcraid -pn533 -pn544 -pn544_i2c -pn544_mei -pn_pep -poly1305-x86_64 -poly1305_generic -port100 -powermate -powr1220 -ppa -ppdev -ppp_async -ppp_deflate -ppp_mppe -ppp_synctty -pppoatm -pppoe -pppox -pps-gpio -pps-ldisc -pps_core -pps_parport -pptp -prism2_usb -processor_thermal_device -ps2mult -psmouse -psnap -pt -ptp -pulsedlight-lidar-lite-v2 -punit_atom_debug -pvpanic -pvrusb2 -pwc -pwm-beeper -pwm-lp3943 -pwm-lpss -pwm-lpss-pci -pwm-lpss-platform -pwm-pca9685 -pwm-regulator -pwm-twl -pwm-twl-led -pwm_bl -pxa27x_udc -qat_dh895xcc -qat_dh895xccvf -qcaux -qcom-spmi-iadc -qcom-spmi-vadc -qcom_spmi-regulator -qcserial -qed -qede -qinfo_probe -qla1280 -qla2xxx -qla3xxx -qla4xxx -qlcnic -qlge -qlogic_cs -qlogicfas408 -qm1d1c0042 -qmi_wwan -qnx4 -qnx6 -qsemi -qt1010 -qt1070 -qt2160 -quatech2 -quatech_daqp_cs -quota_tree -quota_v1 -quota_v2 -qxl -r128 -r592 -r6040 -r8152 -r8169 -r8188eu -r8192e_pci -r8192u_usb -r820t -r852 -r8712u -r8723au -r8a66597-hcd -r8a66597-udc -radeon -radeonfb -radio-bcm2048 -radio-i2c-si470x -radio-keene -radio-ma901 -radio-maxiradio -radio-mr800 -radio-platform-si4713 -radio-raremono -radio-shark -radio-si476x -radio-tea5764 -radio-usb-si470x -radio-usb-si4713 -radio-wl1273 -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid6test -raid_class -ramoops -raw -ray_cs -rbd -rbtree_test -rc-adstech-dvb-t-pci -rc-alink-dtu-m -rc-anysee -rc-apac-viewcomp -rc-asus-pc39 -rc-asus-ps3-100 -rc-ati-tv-wonder-hd-600 -rc-ati-x10 -rc-avermedia -rc-avermedia-a16d -rc-avermedia-cardbus -rc-avermedia-dvbt -rc-avermedia-m135a -rc-avermedia-m733a-rm-k6 -rc-avermedia-rm-ks -rc-avertv-303 -rc-azurewave-ad-tu700 -rc-behold -rc-behold-columbus -rc-budget-ci-old -rc-cinergy -rc-cinergy-1400 -rc-core -rc-delock-61959 -rc-dib0700-nec -rc-dib0700-rc5 -rc-digitalnow-tinytwin -rc-digittrade -rc-dm1105-nec -rc-dntv-live-dvb-t -rc-dntv-live-dvbt-pro -rc-dvbsky -rc-em-terratec -rc-encore-enltv -rc-encore-enltv-fm53 -rc-encore-enltv2 -rc-evga-indtube -rc-eztv -rc-flydvb -rc-flyvideo -rc-fusionhdtv-mce -rc-gadmei-rm008z -rc-genius-tvgo-a11mce -rc-gotview7135 -rc-hauppauge -rc-imon-mce -rc-imon-pad -rc-iodata-bctv7e -rc-it913x-v1 -rc-it913x-v2 -rc-kaiomy -rc-kworld-315u -rc-kworld-pc150u -rc-kworld-plus-tv-analog -rc-leadtek-y04g0051 -rc-lirc -rc-lme2510 -rc-loopback -rc-manli -rc-medion-x10 -rc-medion-x10-digitainer -rc-medion-x10-or2x -rc-msi-digivox-ii -rc-msi-digivox-iii -rc-msi-tvanywhere -rc-msi-tvanywhere-plus -rc-nebula -rc-nec-terratec-cinergy-xs -rc-norwood -rc-npgtech -rc-pctv-sedna -rc-pinnacle-color -rc-pinnacle-grey -rc-pinnacle-pctv-hd -rc-pixelview -rc-pixelview-002t -rc-pixelview-mk12 -rc-pixelview-new -rc-powercolor-real-angel -rc-proteus-2309 -rc-purpletv -rc-pv951 -rc-rc6-mce -rc-real-audio-220-32-keys -rc-reddo -rc-snapstream-firefly -rc-streamzap -rc-su3000 -rc-tbs-nec -rc-technisat-ts35 -rc-technisat-usb2 -rc-terratec-cinergy-c-pci -rc-terratec-cinergy-s2-hd -rc-terratec-cinergy-xs -rc-terratec-slim -rc-terratec-slim-2 -rc-tevii-nec -rc-tivo -rc-total-media-in-hand -rc-total-media-in-hand-02 -rc-trekstor -rc-tt-1500 -rc-twinhan-dtv-cab-ci -rc-twinhan1027 -rc-videomate-m1f -rc-videomate-s350 -rc-videomate-tv-pvr -rc-winfast -rc-winfast-usbii-deluxe -rc5t583-regulator -rdc321x-southbridge -rdma_cm -rdma_ucm -rds -rds_rdma -rds_tcp -realtek -redboot -redrat3 -reed_solomon -regmap-spmi -regulator-haptic -reiserfs -remoteproc -retu-mfd -retu-pwrbutton -retu_wdt -rfc1051 -rfc1201 -rfcomm -rfd_ftl -rfkill-gpio -rfkill-regulator -rio-scan -rio500 -rionet -rivafb -rj54n1cb0c -rmd128 -rmd160 -rmd256 -rmd320 -rn5t618 -rn5t618-regulator -rn5t618_wdt -rndis_host -rndis_wlan -rocket -rohm_bu21023 -romfs -rose -rotary_encoder -rp2 -rpcrdma -rpcsec_gss_krb5 -rpr0521 -rrpc -rsi_91x -rsi_sdio -rsi_usb -rsxx -rt2400pci -rt2500pci -rt2500usb -rt2800lib -rt2800mmio -rt2800pci -rt2800usb -rt2x00lib -rt2x00mmio -rt2x00pci -rt2x00usb -rt5033 -rt5033-regulator -rt5033_battery -rt61pci -rt73usb -rt9455_charger -rtc-88pm80x -rtc-88pm860x -rtc-ab-b5ze-s3 -rtc-ab3100 -rtc-abx80x -rtc-bq32k -rtc-bq4802 -rtc-da9052 -rtc-da9055 -rtc-da9063 -rtc-ds1286 -rtc-ds1305 -rtc-ds1307 -rtc-ds1343 -rtc-ds1347 -rtc-ds1374 -rtc-ds1390 -rtc-ds1511 -rtc-ds1553 -rtc-ds1672 -rtc-ds1685 -rtc-ds1742 -rtc-ds2404 -rtc-ds3232 -rtc-ds3234 -rtc-em3027 -rtc-fm3130 -rtc-hid-sensor-time -rtc-isl12022 -rtc-isl12057 -rtc-isl1208 -rtc-lp8788 -rtc-m41t80 -rtc-m41t93 -rtc-m41t94 -rtc-m48t35 -rtc-m48t59 -rtc-m48t86 -rtc-max6900 -rtc-max6902 -rtc-max8907 -rtc-max8925 -rtc-max8997 -rtc-max8998 -rtc-mc13xxx -rtc-mcp795 -rtc-msm6242 -rtc-mt6397 -rtc-palmas -rtc-pcap -rtc-pcf2123 -rtc-pcf2127 -rtc-pcf50633 -rtc-pcf85063 -rtc-pcf8523 -rtc-pcf8563 -rtc-pcf8583 -rtc-r9701 -rtc-rc5t583 -rtc-rp5c01 -rtc-rs5c348 -rtc-rs5c372 -rtc-rv3029c2 -rtc-rv8803 -rtc-rx4581 -rtc-rx8025 -rtc-rx8581 -rtc-s35390a -rtc-s5m -rtc-stk17ta8 -rtc-tps6586x -rtc-tps65910 -rtc-tps80031 -rtc-twl -rtc-v3020 -rtc-wm831x -rtc-wm8350 -rtc-x1205 -rtd520 -rti800 -rti802 -rtl2830 -rtl2832 -rtl2832_sdr -rtl8150 -rtl8187 -rtl8188ee -rtl818x_pci -rtl8192c-common -rtl8192ce -rtl8192cu -rtl8192de -rtl8192ee -rtl8192se -rtl8723-common -rtl8723ae -rtl8723be -rtl8821ae -rtl8xxxu -rtl_pci -rtl_usb -rtllib -rtllib_crypt_ccmp -rtllib_crypt_tkip -rtllib_crypt_wep -rtlwifi -rts5208 -rtsx_pci -rtsx_pci_ms -rtsx_pci_sdmmc -rtsx_usb -rtsx_usb_ms -rtsx_usb_sdmmc -rx51_battery -rxkad -s1d13xxxfb -s2250 -s2255drv -s2io -s2mpa01 -s2mps11 -s3fb -s3fwrn5 -s3fwrn5_i2c -s526 -s5h1409 -s5h1411 -s5h1420 -s5m8767 -s626 -s6e63m0 -s921 -saa6588 -saa6752hs -saa7110 -saa7115 -saa7127 -saa7134 -saa7134-alsa -saa7134-dvb -saa7134-empress -saa7134-go7007 -saa7146 -saa7146_vv -saa7164 -saa717x -saa7185 -saa7706h -safe_serial -salsa20-x86_64 -salsa20_generic -samsung-keypad -samsung-laptop -samsung-q10 -samsung-sxgbe -sata_inic162x -sata_mv -sata_nv -sata_promise -sata_qstor -sata_sil -sata_sil24 -sata_sis -sata_svw -sata_sx4 -sata_uli -sata_via -sata_vsc -savage -savagefb -sb1000 -sb_edac -sbc60xxwdt -sbc_epx_c3 -sbc_fitpc2_wdt -sbc_gxx -sbni -sbp_target -sbs -sbs-battery -sbshc -sc1200wdt -sc16is7xx -sc92031 -sca3000 -scb2_flash -sch311x_wdt -sch5627 -sch5636 -sch56xx-common -sch_atm -sch_cbq -sch_choke -sch_codel -sch_drr -sch_dsmark -sch_fq -sch_fq_codel -sch_gred -sch_hfsc -sch_hhf -sch_htb -sch_ingress -sch_mqprio -sch_multiq -sch_netem -sch_pie -sch_plug -sch_prio -sch_qfq -sch_red -sch_sfb -sch_sfq -sch_tbf -sch_teql -scif -scif_bus -scsi_debug -scsi_dh_alua -scsi_dh_emc -scsi_dh_hp_sw -scsi_dh_rdac -scsi_transport_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -scsi_transport_srp -sctp -sctp_probe -sdhci -sdhci-acpi -sdhci-pci -sdhci-pltfm -sdio_uart -sdricoh_cs -sedlbauer_cs -seed -sensorhub -seqiv -ser_gigaset -serial2002 -serial_cs -serio_raw -sermouse -serpent-avx-x86_64 -serpent-avx2 -serpent-sse2-x86_64 -serpent_generic -serport -ses -sfc -sh_veu -sha1-mb -sha1-ssse3 -sha256-ssse3 -sha512-ssse3 -shark2 -shpchp -sht15 -sht21 -shtc1 -si2157 -si2165 -si2168 -si21xx -si4713 -si476x-core -si7005 -si7020 -sidewinder -sierra -sierra_net -sil164 -sir-dev -sis -sis-agp -sis190 -sis5595 -sis900 -sisfb -sisusbvga -sit -sja1000 -sja1000_isa -sja1000_platform -skd -skfp -skge -skx_edac -sky2 -sky81452 -sky81452-backlight -sky81452-regulator -sl811-hcd -sl811_cs -slcan -slicoss -slip -slram -sm501 -sm501fb -sm712fb -sm750fb -sm_common -sm_ftl -smb347-charger -smc91c92_cs -smipcie -smm665 -smsc -smsc-ircc2 -smsc37b787_wdt -smsc47b397 -smsc47m1 -smsc47m192 -smsc75xx -smsc911x -smsc9420 -smsc95xx -smscufx -smsdvb -smsmdtv -smssdio -smsusb -snd -snd-ac97-codec -snd-ad1889 -snd-ak4113 -snd-ak4114 -snd-ak4117 -snd-ak4xxx-adda -snd-ali5451 -snd-aloop -snd-als300 -snd-als4000 -snd-asihpi -snd-atiixp -snd-atiixp-modem -snd-au8810 -snd-au8820 -snd-au8830 -snd-aw2 -snd-azt3328 -snd-bcd2000 -snd-bebob -snd-bt87x -snd-ca0106 -snd-cmipci -snd-compress -snd-cs4281 -snd-cs46xx -snd-cs8427 -snd-ctxfi -snd-darla20 -snd-darla24 -snd-dice -snd-dummy -snd-echo3g -snd-emu10k1 -snd-emu10k1-synth -snd-emu10k1x -snd-emux-synth -snd-ens1370 -snd-ens1371 -snd-es1938 -snd-es1968 -snd-firewire-digi00x -snd-firewire-lib -snd-firewire-tascam -snd-fireworks -snd-fm801 -snd-gina20 -snd-gina24 -snd-hda-codec -snd-hda-codec-analog -snd-hda-codec-ca0110 -snd-hda-codec-ca0132 -snd-hda-codec-cirrus -snd-hda-codec-cmedia -snd-hda-codec-conexant -snd-hda-codec-generic -snd-hda-codec-hdmi -snd-hda-codec-idt -snd-hda-codec-realtek -snd-hda-codec-si3054 -snd-hda-codec-via -snd-hda-core -snd-hda-ext-core -snd-hda-intel -snd-hdsp -snd-hdspm -snd-hrtimer -snd-hwdep -snd-i2c -snd-ice1712 -snd-ice1724 -snd-ice17xx-ak4xxx -snd-indigo -snd-indigodj -snd-indigodjx -snd-indigoio -snd-indigoiox -snd-intel-sst-acpi -snd-intel-sst-core -snd-intel8x0 -snd-intel8x0m -snd-isight -snd-korg1212 -snd-layla20 -snd-layla24 -snd-lola -snd-lx6464es -snd-maestro3 -snd-mia -snd-mixart -snd-mixer-oss -snd-mona -snd-mpu401 -snd-mpu401-uart -snd-mtpav -snd-mts64 -snd-nm256 -snd-opl3-lib -snd-opl3-synth -snd-oxfw -snd-oxygen -snd-oxygen-lib -snd-pcm -snd-pcm-dmaengine -snd-pcm-oss -snd-pcsp -snd-pcxhr -snd-pdaudiocf -snd-portman2x4 -snd-pt2258 -snd-rawmidi -snd-riptide -snd-rme32 -snd-rme96 -snd-rme9652 -snd-sb-common -snd-scs1x -snd-seq -snd-seq-device -snd-seq-dummy -snd-seq-midi -snd-seq-midi-emul -snd-seq-midi-event -snd-seq-virmidi -snd-serial-u16550 -snd-soc-ac97 -snd-soc-adau1701 -snd-soc-ak4104 -snd-soc-ak4554 -snd-soc-ak4613 -snd-soc-ak4642 -snd-soc-ak5386 -snd-soc-alc5623 -snd-soc-core -snd-soc-cs35l32 -snd-soc-cs4265 -snd-soc-cs4270 -snd-soc-cs4271 -snd-soc-cs4271-i2c -snd-soc-cs4271-spi -snd-soc-cs42l51 -snd-soc-cs42l51-i2c -snd-soc-cs42l52 -snd-soc-cs42l56 -snd-soc-cs42l73 -snd-soc-cs42xx8 -snd-soc-cs42xx8-i2c -snd-soc-cs4349 -snd-soc-dmic -snd-soc-es8328 -snd-soc-fsl-asrc -snd-soc-fsl-esai -snd-soc-fsl-sai -snd-soc-fsl-spdif -snd-soc-fsl-ssi -snd-soc-gtm601 -snd-soc-imx-audmux -snd-soc-max98090 -snd-soc-pcm1681 -snd-soc-pcm1792a-codec -snd-soc-pcm512x -snd-soc-pcm512x-i2c -snd-soc-pcm512x-spi -snd-soc-rl6231 -snd-soc-rl6347a -snd-soc-rt286 -snd-soc-rt5631 -snd-soc-rt5640 -snd-soc-rt5645 -snd-soc-rt5660 -snd-soc-rt5670 -snd-soc-sgtl5000 -snd-soc-si476x -snd-soc-sigmadsp -snd-soc-sigmadsp-i2c -snd-soc-simple-card -snd-soc-skl -snd-soc-skl-ipc -snd-soc-skl_rt286 -snd-soc-spdif-rx -snd-soc-spdif-tx -snd-soc-ssm2602 -snd-soc-ssm2602-i2c -snd-soc-ssm2602-spi -snd-soc-ssm4567 -snd-soc-sst-acpi -snd-soc-sst-baytrail-pcm -snd-soc-sst-broadwell -snd-soc-sst-byt-max98090-mach -snd-soc-sst-byt-rt5640-mach -snd-soc-sst-bytcr-rt5640 -snd-soc-sst-bytcr-rt5660 -snd-soc-sst-cht-bsw-max98090_ti -snd-soc-sst-cht-bsw-rt5645 -snd-soc-sst-cht-bsw-rt5672 -snd-soc-sst-dsp -snd-soc-sst-haswell -snd-soc-sst-haswell-pcm -snd-soc-sst-ipc -snd-soc-sst-mfld-platform -snd-soc-sta32x -snd-soc-sta350 -snd-soc-sti-sas -snd-soc-tas2552 -snd-soc-tas5086 -snd-soc-tas571x -snd-soc-tfa9879 -snd-soc-tlv320aic23 -snd-soc-tlv320aic23-i2c -snd-soc-tlv320aic23-spi -snd-soc-tlv320aic31xx -snd-soc-tlv320aic3x -snd-soc-tpa6130a2 -snd-soc-ts3a227e -snd-soc-wm8510 -snd-soc-wm8523 -snd-soc-wm8580 -snd-soc-wm8711 -snd-soc-wm8728 -snd-soc-wm8731 -snd-soc-wm8737 -snd-soc-wm8741 -snd-soc-wm8750 -snd-soc-wm8753 -snd-soc-wm8770 -snd-soc-wm8776 -snd-soc-wm8804 -snd-soc-wm8804-i2c -snd-soc-wm8804-spi -snd-soc-wm8903 -snd-soc-wm8962 -snd-soc-wm8978 -snd-soc-xtfpga-i2s -snd-sonicvibes -snd-timer -snd-trident -snd-ua101 -snd-usb-6fire -snd-usb-audio -snd-usb-caiaq -snd-usb-hiface -snd-usb-line6 -snd-usb-pod -snd-usb-podhd -snd-usb-toneport -snd-usb-us122l -snd-usb-usx2y -snd-usb-variax -snd-usbmidi-lib -snd-util-mem -snd-via82xx -snd-via82xx-modem -snd-virmidi -snd-virtuoso -snd-vx-lib -snd-vx222 -snd-vxpocket -snd-ymfpci -snic -soc_button_array -soc_camera -soc_camera_platform -soc_mediabus -softdog -softing -softing_cs -solo6x10 -solos-pci -sony-btf-mpx -sony-laptop -soundcore -sp2 -sp5100_tco -sp8870 -sp887x -spaceball -spaceorb -sparse-keymap -spcp8x5 -speakup -speakup_acntsa -speakup_apollo -speakup_audptr -speakup_bns -speakup_decext -speakup_dectlk -speakup_dummy -speakup_ltlk -speakup_soft -speakup_spkout -speakup_txprt -spectrum_cs -speedfax -speedstep-lib -speedtch -spi-altera -spi-bitbang -spi-butterfly -spi-cadence -spi-dln2 -spi-dw -spi-dw-midpci -spi-dw-mmio -spi-gpio -spi-lm70llp -spi-nor -spi-oc-tiny -spi-pxa2xx-pci -spi-pxa2xx-platform -spi-sc18is602 -spi-tle62x0 -spi-xcomm -spi-zynqmp-gqspi -spi_ks8995 -spidev -spl -splat -spmi -sr9700 -sr9800 -ssb -ssb-hcd -ssfdc -ssp_accel_sensor -ssp_gyro_sensor -ssp_iio -sst25l -sstfb -ssu100 -st -st-nci -st-nci_i2c -st-nci_spi -st1232 -st21nfca_hci -st21nfca_i2c -st_accel -st_accel_i2c -st_accel_spi -st_drv -st_gyro -st_gyro_i2c -st_gyro_spi -st_magn -st_magn_i2c -st_magn_spi -st_pressure -st_pressure_i2c -st_pressure_spi -st_sensors -st_sensors_i2c -st_sensors_spi -starfire -stb0899 -stb6000 -stb6100 -ste10Xp -ste_modem_rproc -stex -stinger -stir4200 -stk1160 -stk3310 -stk8312 -stk8ba50 -stkwebcam -stm_console -stm_core -stmmac -stmmac-platform -stowaway -stp -streamzap -stv0288 -stv0297 -stv0299 -stv0367 -stv0900 -stv090x -stv6110 -stv6110x -sun4i-codec -sundance -sungem -sungem_phy -sunhme -suni -sunkbd -sunrpc -sur40 -surfacepro3_button -svgalib -sx8 -sx8654 -sx9500 -sym53c500_cs -sym53c8xx -symbolserial -synaptics_i2c -synaptics_i2c_rmi4 -synaptics_usb -synclink -synclink_cs -synclink_gt -synclinkmp -syscopyarea -sysfillrect -sysimgblt -sysv -t1pci -t5403 -target_core_file -target_core_iblock -target_core_mod -target_core_pscsi -target_core_user -tc74 -tc90522 -tca6416-keypad -tca8418_keypad -tcm_fc -tcm_loop -tcm_qla2xxx -tcm_usb_gadget -tcp_bic -tcp_cdg -tcp_dctcp -tcp_diag -tcp_highspeed -tcp_htcp -tcp_hybla -tcp_illinois -tcp_lp -tcp_probe -tcp_scalable -tcp_vegas -tcp_veno -tcp_westwood -tcp_yeah -tcrypt -tcs3414 -tcs3472 -tda10021 -tda10023 -tda10048 -tda1004x -tda10071 -tda10086 -tda18212 -tda18218 -tda18271 -tda18271c2dd -tda665x -tda7432 -tda8083 -tda8261 -tda826x -tda827x -tda8290 -tda9840 -tda9887 -tda998x -tdfx -tdfxfb -tdo24m -tea -tea575x -tea5761 -tea5767 -tea6415c -tea6420 -team -team_mode_activebackup -team_mode_broadcast -team_mode_loadbalance -team_mode_random -team_mode_roundrobin -tef6862 -tehuti -tekram-sir -teles_cs -teranetics -test-hexdump -test-kstrtox -test-string_helpers -test_bpf -test_firmware -test_module -test_power -test_printf -test_static_key_base -test_static_keys -test_udelay -test_user_copy -tg3 -tgr192 -thinkpad_acpi -thmc50 -thunder_bgx -thunderbolt -ti-adc081c -ti-adc128s052 -ti_am335x_adc -ti_am335x_tsc -ti_am335x_tscadc -ti_dac7512 -ti_usb_3410_5052 -tifm_7xx1 -tifm_core -tifm_ms -tifm_sd -timeriomem-rng -tipc -tlan -tlclk -tm6000 -tm6000-alsa -tm6000-dvb -tmdc -tmem -tmp006 -tmp102 -tmp103 -tmp401 -tmp421 -toim3232-sir -topstar-laptop -torture -toshiba-wmi -toshiba_acpi -toshiba_bluetooth -toshiba_haps -toshsd -touchit213 -touchright -touchwin -tpci200 -tpm-rng -tpm_atmel -tpm_crb -tpm_i2c_atmel -tpm_i2c_infineon -tpm_i2c_nuvoton -tpm_infineon -tpm_nsc -tpm_st33zp24 -tpm_st33zp24_i2c -tpm_st33zp24_spi -tps40422 -tps51632-regulator -tps6105x -tps6105x-regulator -tps62360-regulator -tps65010 -tps65023-regulator -tps6507x -tps6507x-regulator -tps6507x-ts -tps65090-charger -tps65090-regulator -tps65217_bl -tps65217_charger -tps65218 -tps65218-pwrbutton -tps6524x-regulator -tps6586x-regulator -tps65910-regulator -tps65912-regulator -tps80031-regulator -trancevibrator -trf7970a -tridentfb -ts2020 -ts_bm -ts_fsm -ts_kmp -tsc2004 -tsc2005 -tsc2007 -tsc200x-core -tsc40 -tsi568 -tsi57x -tsi721_mport -tsl2550 -tsl2563 -tsl2583 -tsl2x7x_core -tsl4531 -tsys01 -tsys02d -ttm -ttpci-eeprom -ttusb_dec -ttusbdecfe -ttusbir -tua6100 -tua9001 -tulip -tuner -tuner-simple -tuner-types -tuner-xc2028 -tunnel4 -tunnel6 -turbografx -tvaudio -tveeprom -tvp5150 -tw2804 -tw68 -tw9903 -tw9906 -tw9910 -twidjoy -twl-regulator -twl4030-madc -twl4030-madc-hwmon -twl4030-pwrbutton -twl4030-vibra -twl4030_charger -twl4030_keypad -twl4030_madc_battery -twl4030_wdt -twl6030-gpadc -twl6040-vibra -twofish-avx-x86_64 -twofish-x86_64 -twofish-x86_64-3way -twofish_common -twofish_generic -typhoon -u132-hcd -uPD98402 -u_ether -u_serial -uartlite -uas -ubi -ubifs -ucb1400_core -ucb1400_ts -ucd9000 -ucd9200 -uda1342 -udc-core -udf -udl -udlfb -udp_diag -udp_tunnel -ueagle-atm -ufs -ufshcd -ufshcd-pci -ufshcd-pltfrm -uhid -uio -uio_aec -uio_cif -uio_dmem_genirq -uio_mf624 -uio_netx -uio_pci_generic -uio_pdrv_genirq -uio_pruss -uio_sercos3 -uli526x -ulpi -umc -umem -ums-alauda -ums-cypress -ums-datafab -ums-eneub6250 -ums-freecom -ums-isd200 -ums-jumpshot -ums-karma -ums-onetouch -ums-realtek -ums-sddr09 -ums-sddr55 -ums-usbat -unix_diag -upd64031a -upd64083 -us5182d -usb-serial-simple -usb-storage -usb3503 -usb8xxx -usb_8dev -usb_debug -usb_f_acm -usb_f_ecm -usb_f_ecm_subset -usb_f_eem -usb_f_fs -usb_f_hid -usb_f_mass_storage -usb_f_midi -usb_f_ncm -usb_f_obex -usb_f_phonet -usb_f_printer -usb_f_rndis -usb_f_serial -usb_f_ss_lb -usb_f_uac1 -usb_f_uac2 -usb_f_uvc -usb_gigaset -usb_wwan -usbatm -usbdux -usbduxfast -usbduxsigma -usbhid -usbip-core -usbip-host -usbkbd -usblcd -usbled -usblp -usbmon -usbmouse -usbnet -usbserial -usbsevseg -usbtest -usbtmc -usbtouchscreen -usbtv -usbvision -usdhi6rol0 -userio -userspace-consumer -ushc -usnic_verbs -uss720 -uvcvideo -uvesafb -uwb -v4l2-common -v4l2-dv-timings -v4l2-flash-led-class -v4l2-mem2mem -vboxguest -vboxsf -vboxvideo -vcan -vcnl4000 -ven_rsi_91x -ven_rsi_sdio -ven_rsi_usb -ves1820 -ves1x93 -veth -vfio -vfio-pci -vfio_iommu_type1 -vfio_virqfd -vga16fb -vgastate -vgem -vgg2432a4 -vhci-hcd -vhost -vhost_net -vhost_scsi -via -via-camera -via-cputemp -via-ircc -via-rhine -via-rng -via-sdmmc -via-velocity -via686a -via_wdt -viafb -video -videobuf-core -videobuf-dma-sg -videobuf-dvb -videobuf-vmalloc -videobuf2-core -videobuf2-dma-contig -videobuf2-dma-sg -videobuf2-dvb -videobuf2-memops -videobuf2-v4l2 -videobuf2-vmalloc -videocodec -videodev -vim2m -viperboard -viperboard_adc -virt-dma -virtio-gpu -virtio-rng -virtio_input -virtio_scsi -virtual -visor -visorbus -visorhba -visorinput -visornic -vitesse -vivid -vlsi_ir -vmac -vme_ca91cx42 -vme_pio2 -vme_tsi148 -vme_user -vme_vmivme7805 -vmk80xx -vmlfb -vmw_balloon -vmw_pvscsi -vmw_vmci -vmw_vsock_vmci_transport -vmwgfx -vmxnet3 -vp27smpx -vport-geneve -vport-gre -vport-vxlan -vpx3220 -vrf -vringh -vsock -vsxxxaa -vt1211 -vt6655_stage -vt6656_stage -vt8231 -vt8623fb -vub300 -vx855 -vxge -vxlan -vz89x -w1-gpio -w1_bq27000 -w1_ds2406 -w1_ds2408 -w1_ds2413 -w1_ds2423 -w1_ds2431 -w1_ds2433 -w1_ds2760 -w1_ds2780 -w1_ds2781 -w1_ds28e04 -w1_smem -w1_therm -w5100 -w5300 -w6692 -w83627ehf -w83627hf -w83627hf_wdt -w83781d -w83791d -w83792d -w83793 -w83795 -w83877f_wdt -w83977af_ir -w83977f_wdt -w83l785ts -w83l786ng -wacom -wacom_i2c -wacom_serial4 -wacom_w8001 -wafer5823wdt -walkera0701 -wanxl -warrior -wbsd -wcn36xx -wd719x -wdt87xx_i2c -wdt_pci -whc-rc -whci -whci-hcd -whiteheat -wil6210 -wimax -winbond-840 -winbond-cir -wire -wishbone-serial -wl1251 -wl1251_sdio -wl1251_spi -wl1273-core -wl12xx -wl18xx -wl3501_cs -wlcore -wlcore_sdio -wlcore_spi -wm831x-dcdc -wm831x-hwmon -wm831x-isink -wm831x-ldo -wm831x-on -wm831x-ts -wm831x_backup -wm831x_bl -wm831x_power -wm831x_wdt -wm8350-hwmon -wm8350-regulator -wm8350_power -wm8350_wdt -wm8400-regulator -wm8739 -wm8775 -wm8994-core -wm8994-irq -wm8994-regmap -wm8994-regulator -wm97xx-ts -wmi -wp512 -wusb-cbaf -wusb-wa -wusbcore -x25 -x25_asy -x38_edac -x86_pkg_temp_thermal -x_tables -xc4000 -xc5000 -xcbc -xen-blkback -xen-evtchn -xen-fbfront -xen-gntalloc -xen-gntdev -xen-kbdfront -xen-netback -xen-pciback -xen-pcifront -xen-privcmd -xen-scsiback -xen-scsifront -xen-tpmfront -xen_wdt -xenfs -xfrm4_mode_beet -xfrm4_mode_transport -xfrm4_mode_tunnel -xfrm4_tunnel -xfrm6_mode_beet -xfrm6_mode_ro -xfrm6_mode_transport -xfrm6_mode_tunnel -xfrm6_tunnel -xfrm_algo -xfrm_ipcomp -xfrm_user -xfs -xgifb -xhci-plat-hcd -xillybus_core -xillybus_pcie -xirc2ps_cs -xircom_cb -xor -xpad -xr_usb_serial_common -xsens_mt -xt_AUDIT -xt_CHECKSUM -xt_CLASSIFY -xt_CONNSECMARK -xt_CT -xt_DSCP -xt_HL -xt_HMARK -xt_IDLETIMER -xt_LED -xt_LOG -xt_NETMAP -xt_NFLOG -xt_NFQUEUE -xt_RATEEST -xt_REDIRECT -xt_SECMARK -xt_TCPMSS -xt_TCPOPTSTRIP -xt_TEE -xt_TPROXY -xt_TRACE -xt_addrtype -xt_bpf -xt_cgroup -xt_cluster -xt_comment -xt_connbytes -xt_connlabel -xt_connlimit -xt_connmark -xt_conntrack -xt_cpu -xt_dccp -xt_devgroup -xt_dscp -xt_ecn -xt_esp -xt_hashlimit -xt_helper -xt_hl -xt_ipcomp -xt_iprange -xt_ipvs -xt_l2tp -xt_length -xt_limit -xt_mac -xt_mark -xt_multiport -xt_nat -xt_nfacct -xt_osf -xt_owner -xt_physdev -xt_pkttype -xt_policy -xt_quota -xt_rateest -xt_realm -xt_recent -xt_sctp -xt_set -xt_socket -xt_state -xt_statistic -xt_string -xt_tcpmss -xt_tcpudp -xt_time -xt_u32 -xtkbd -xts -xusbatm -xz_dec_test -yam -yealink -yellowfin -yenta_socket -yurex -zatm -zaurus -zavl -zcommon -zd1201 -zd1211rw -zforce_ts -zfs -zhenhua -zl10036 -zl10039 -zl10353 -zl6100 -zlib -znvpair -zpios -zr36016 -zr36050 -zr36060 -zr36067 -zr364xx -zram -zunicode -zynq-fpga reverted: --- linux-raspi2-4.4.0/debian.master/abi/4.4.0-89.112/arm64/generic +++ linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-89.112/arm64/generic @@ -1,17640 +0,0 @@ -EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0xa2125399 ce_aes_expandkey -EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0xe9a12b32 ce_aes_setkey -EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe -EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble -EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL crypto/mcryptd 0x7726d288 mcryptd_arm_flusher -EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/atm/suni 0xea8e63f5 suni_init -EXPORT_SYMBOL drivers/bcma/bcma 0x4664cffe bcma_core_irq -EXPORT_SYMBOL drivers/bcma/bcma 0x9b22a369 bcma_core_dma_translation -EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str -EXPORT_SYMBOL drivers/bluetooth/btbcm 0x176b7661 btbcm_patchram -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0ce1f9f8 ipmi_smi_watcher_register -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fae3bac ipmi_addr_src_to_str -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x82cf913b ipmi_register_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x905f896f ipmi_smi_add_proc_entry -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x9c083687 ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xce38ff56 ipmi_get_smi_info -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x2d224dfc st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x5bf0eda4 st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x6ecf7681 st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x963e942d st33zp24_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x18a1fb90 xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xc90d6183 xillybus_endpoint_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xe239d1e1 xillybus_init_endpoint -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x2fba8a73 dw_dma_cyclic_start -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x36babcee dw_dma_cyclic_stop -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x3ef007ad dw_dma_get_dst_addr -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x64d5ee84 dw_dma_cyclic_prep -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xfa665606 dw_dma_cyclic_free -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xfbdaf0f3 dw_dma_get_src_addr -EXPORT_SYMBOL drivers/dma/pl330 0xc25aa6a6 pl330_filter -EXPORT_SYMBOL drivers/edac/edac_core 0xae450014 edac_mc_find -EXPORT_SYMBOL drivers/firewire/firewire-core 0x04bd412e fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x04d0f641 fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x08af950b fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0x090e6838 fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0f7d6af8 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0x182b9a4d fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x36f33188 fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0x38dcc54e fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3f17c51c fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x435d5405 fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x43e0b750 fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d5dbfb9 fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x62362cd3 fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x645b715f fw_core_add_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6db44ecb fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9163a890 fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0x996aecb3 fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9ceb90dc fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9d395786 fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xae57d871 fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb021da49 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0xba5016f8 fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc9aebb92 fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xca620da8 fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0xcb4468fe fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0xde983264 fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe20d0122 fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf44f4142 fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf694f4c9 fw_run_transaction -EXPORT_SYMBOL drivers/fmc/fmc 0x2590686c fmc_driver_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0x2f01743f fmc_driver_register -EXPORT_SYMBOL drivers/fmc/fmc 0x4301f2b8 fmc_show_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0x45c0564f fmc_device_register_n -EXPORT_SYMBOL drivers/fmc/fmc 0x52a5da59 fmc_device_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0x597a0645 fmc_free_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0x667305df fmc_scan_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0x7980a248 fmc_device_register -EXPORT_SYMBOL drivers/fmc/fmc 0xbafbdc00 fmc_device_unregister_n -EXPORT_SYMBOL drivers/fmc/fmc 0xd2699212 fmc_reprogram -EXPORT_SYMBOL drivers/fmc/fmc 0xd554943b fmc_find_sdb_device -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03e83a72 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04319d67 drm_panel_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05e9ecbe drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05fdcadc drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0692d480 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07372087 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07b052be drm_pcie_get_max_link_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x084bc933 drm_encoder_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x088e51a8 drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0932681e drm_mode_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0985ca36 drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0aa2c88f drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b29c8a3 drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bfb286b drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cb93c35 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0dc177be drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ddf716a drm_atomic_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e8419b2 drm_mode_validate_basic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f362add drm_atomic_clean_old_fb -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fcabf3e drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x104d35df drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1094763c drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x11cef0de drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x11d2135c drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x13474bf6 drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16831585 drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17f97f0a drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1864be34 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b182663 drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b95827d drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c909558 drm_unplug_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ceb15b5 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cfe1a26 drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d00ef83 drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1da467ce drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f1137e8 drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22cd91ef drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23d6f55b drm_plane_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23f34c60 drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29281308 drm_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2afa57f9 drm_vblank_post_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bc330c9 drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ca53d45 drm_legacy_addmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cf65b32 drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d295f7f drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e1a34cb drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e60931b drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e961e2f drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30481e7a drm_pci_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30620e33 drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3065044f drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30f9cb51 drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31f2f95d drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32f7cb38 drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x33823f48 drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34134add drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35b9b58c drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37590b4e drm_mode_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38b5d1e2 drm_panel_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3907054d drm_connector_unplug_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b3113a6 drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bea808e drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c3e71ca drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c47ea3b drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d3aefe4 drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e253dc1 drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e423cff drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f9755f2 drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4052b143 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41805b3c drm_legacy_getsarea -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42077158 drm_bridge_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x44477172 drm_pci_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x452f8b7e drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x46075c23 drm_calc_vbltimestamp_from_scanoutpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x492cfdb3 drm_mode_hsync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49e315b3 drm_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c6bdbfc drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cbfca92 drm_bridge_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cc99dc8 drm_gem_dumb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e1af0a3 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4efb6ea9 drm_vblank_pre_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f4c0e36 drm_connector_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f80e833 drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50f4dce4 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x516c17e4 drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5299e946 drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54c90abf drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55071a1a drm_of_component_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5720907f drm_mode_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57ce1e87 drm_legacy_ioremap_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57d91ec5 drm_pcie_get_speed_cap_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58c2113a drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5907daaa drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ab595d5 drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c1f0240 drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7318dc drm_global_item_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5dc697d2 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e7943f7 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e849823 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ff572c3 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6001682a drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60c572cf drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x61b987ee drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64ae984c drm_legacy_ioremap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64b64233 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65e1c4fa drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x667d9202 drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x668712ce drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x697c3143 drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a5c4e63 drm_dev_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b94f211 drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c841116 drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c9e6470 drm_irq_install -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f19b1e9 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7101c0b6 drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71feab76 drm_framebuffer_unreference -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72017236 drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72838c19 drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x732c8849 drm_property_unreference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x735065e6 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7453ab98 drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74f17e09 drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x75222690 drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76baafda drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x777ee2ae drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78b5345b drm_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7948bd06 drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a0aedbb drm_bridge_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a739f3d drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b4bc537 drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b529742 drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b9a639b drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7baff49e drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d023a66 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e098c65 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e920ea9 drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ec69f51 drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ec8aaea drm_crtc_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f194c85 drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8028457a drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80a487eb drm_framebuffer_reference -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8168996b of_drm_find_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82b329e7 drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8426ba9b drm_legacy_idlelock_take -EXPORT_SYMBOL drivers/gpu/drm/drm 0x84e34c7f drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8567297a drm_mode_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x85da50e4 drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8619d8eb drm_ati_pcigart_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x865e9590 drm_atomic_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x88586687 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8888a8e0 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8896a563 drm_bridge_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x897f549f drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89812d5d drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89855093 drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x898ed259 drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89e3b0d6 drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a0724ea drm_get_pci_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a20b56e drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b002ee3 drm_legacy_idlelock_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b24fbcf drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c1c1227 drm_irq_uninstall -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c734ba4 drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ca2dc27 drm_crtc_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cf45b78 drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e07db88 drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e29a5fa drm_property_reference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f9af467 drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ff124bb drm_legacy_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90c9e292 drm_edid_to_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90f0ffbb drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91d9b762 drm_prime_sg_to_page_addr_arrays -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fef923 drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x927bae43 drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x938cbe4d drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93ef1de0 drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x97efb0b8 drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x984dd406 drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x98fab3dc drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c926acd drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ccc6190 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d6f253e drm_modeset_lock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e15c6c8 drm_atomic_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ed58047 drm_platform_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ed8b3c1 drm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ede4eee drm_legacy_rmmap_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f9e5f72 drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0bbcd9b drm_modeset_backoff_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1836aee drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa361e264 drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3ddc491 drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3e6a0d2 drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4d041c9 drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa56be241 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa63915ad drm_mode_create_dirty_info_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6c6426c drm_of_find_possible_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7013910 drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8106a0a drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8f2f3b0 drm_bridge_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa929f589 drm_mm_dump_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab6c8f63 drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad07b30e drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad15c3b3 drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb05bb784 drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0e42995 drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb191e7b9 drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2894b3a drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2d8b03b drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5540008 drm_global_item_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6d197f6 drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9af17df drm_select_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9d42ee4 drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba1062ec drm_compat_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba4720e9 drm_bridge_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbac4eb44 drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbad34dcc drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbadf9c5e drm_modeset_legacy_acquire_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbaf394ac drm_modeset_lock_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb194030 drm_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc51ae96 drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc902abe drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe7d213d drm_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0c87fc1 drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1c2e0f1 drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1c37a92 drm_mode_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1f06264 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2c3e1a0 drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc71b930d drm_pci_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc77ab6ea drm_ati_pcigart_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8acf9f0 drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc99c87c4 drm_modeset_unlock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9c47178 drm_legacy_ioremapfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb353075 drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbd49c03 drm_vblank_no_hw_counter -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce924c8f drm_legacy_addbufs_pci -EXPORT_SYMBOL drivers/gpu/drm/drm 0xceccf830 drm_pci_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf8ffae8 drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1456a73 drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd293bd95 drm_dev_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd29821d4 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3578738 drm_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3705167 drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6d20475 drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7f44880 drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd94b088f drm_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcbde5fb drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd382ae1 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd4c5714 drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf9cac1d drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3551bfc drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe39a0807 drm_platform_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe549299e drm_atomic_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5532db3 drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6c22be4 drm_atomic_legacy_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7653565 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe96b8d3c drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9ea1d33 drm_vblank_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xebcc8e6c drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec2bdd62 drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec623cd7 drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec9ba35a drm_pci_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed67b26b drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed8b4355 drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef171556 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef3f812f drm_legacy_rmmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xefd8e666 drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf219b6a0 drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2d752f3 drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf446f5fa drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf62e8ea8 of_drm_find_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6800732 drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6d2520a drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf844cd16 drm_mode_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8df46d5 drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8f8ae3e drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9480ba9 drm_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9afc9f0 drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9c63fa6 drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff15fc57 drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x028449f9 drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0456d377 drm_primary_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x060d5445 drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x082baf73 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x089056ce drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09795283 drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d4d09bc drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10d394da drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12f2d28d drm_dp_link_power_down -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12ffa991 drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x157e8f95 drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x166c7a8d drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2227b5c6 drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x231e8220 drm_atomic_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23ee4328 drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x280eac97 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2af80190 drm_fb_helper_add_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e3e936e drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e3f8a45 drm_fb_helper_fill_fix -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e79f758 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30b93714 drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3202ef7e drm_has_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x324e0af3 drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38f7c293 __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a2c90a9 drm_atomic_helper_framebuffer_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a639596 drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b8c43f7 drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3bd694ac drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x402a5c2e drm_plane_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x428dcca8 drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x469fd663 drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47a95933 drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47e3d0eb drm_atomic_helper_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48a1e8c8 drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b91db06 drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bd32d75 drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c038ebc drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4fb3db02 drm_dp_link_power_up -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x508b4d91 drm_atomic_helper_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50a0cb6e drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55789074 __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55e3086a drm_pick_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59cc3071 __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a038f54 drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b139058 drm_helper_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5bd64b93 drm_dp_link_configure -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d5b63ca drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5dc2b653 drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63a07277 drm_dp_aux_unregister_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63cc8126 drm_plane_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x662e7501 drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66dc0707 drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x675f7064 drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x683d5807 drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68df0aad drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6bbac55d drm_helper_probe_single_connector_modes_nomerge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c881698 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6caf99b0 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d7676a5 drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x724e1043 drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72a887f1 drm_fb_helper_release_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74c839a5 drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76bcffd9 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7899c9f5 drm_helper_crtc_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7be6084b drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c599082 drm_fb_helper_fill_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8094f7f9 __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81c12227 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x824ce3e7 drm_fb_helper_unlink_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8331a6bf drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84b637fe drm_helper_crtc_mode_set_base -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8544cf75 drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87058ebb drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8827296f drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a3841b1 drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c605a3d drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91fea9ba drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x927c4ae2 drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95d8639e drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97942e77 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b549dd7 drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d14ec09 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9deb39b5 drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa02a3515 drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa040e974 drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4019ec4 drm_fb_helper_single_add_all_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4c296ba drm_fb_helper_remove_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5c1cfa0 drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf6404d0 drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0218a85 drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1fd2d83 drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb24168b2 drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4dfa169 drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4e37bdf drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb57cdf94 drm_kms_helper_poll_enable_locked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6eac196 drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb83c41dc drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbae697f6 drm_plane_helper_check_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc466ffe drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc024befe drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0d01baa __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc149b410 drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc472f264 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc73e4698 drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc75bc2a3 drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7762588 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca02898e drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca555e6d drm_dp_mst_port_has_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb01ba1d drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc658351 drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc6be360 drm_dp_link_probe -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce7aba9a drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcec82957 drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfaeea23 drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0181f65 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd14dcbf8 drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd58ece61 drm_atomic_helper_legacy_gamma_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd73aa4d0 drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd802f1ef drm_atomic_helper_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd93b3268 drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xddac4753 drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde0725ed drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde8a112d drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdff5a252 drm_dp_aux_register_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe01b1d3b drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1c6641d drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe29c736f drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe81ca4e5 drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8d29183 drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9325f34 drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeed9c631 drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeff819d3 drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0fce914 drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf313dac0 drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf52ecbf4 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf590ba40 drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5cc8e37 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6016f7f drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8958cef drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9a64f27 drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9c33176 drm_primary_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfdef8fa3 drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x02392344 ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0fe02f59 ttm_mem_io_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1ea96bc9 ttm_bo_manager_func -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x263756e0 ttm_vt_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2c1fc621 ttm_read_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3a2bd92d ttm_bo_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3ac2274b ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x42ecaef7 ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4568ec08 ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x482f6e88 ttm_bo_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4d21e626 ttm_tt_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e8dd264 ttm_bo_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4ed2d474 ttm_bo_swapout_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x531499fa ttm_page_alloc_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x53d390e0 ttm_mem_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5570c7f7 ttm_read_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x564e1aee ttm_bo_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x589050e6 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x591d7b41 ttm_write_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x59c87641 ttm_mem_io_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5ee757e7 ttm_vt_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5f655759 ttm_mem_io_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6052860c ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x608d2e48 ttm_prime_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x646625ef ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a156a25 ttm_bo_del_sub_from_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6b5a5d63 ttm_bo_mem_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6b974046 ttm_bo_clean_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6e9dc538 ttm_mem_global_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6fa23711 ttm_suspend_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6fc499b5 ttm_bo_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6fff7bce ttm_mem_global_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x70c922c2 ttm_dma_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x70fca366 ttm_bo_dma_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x79e14971 ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8112a8b4 ttm_bo_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x85dc04e5 ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8b270fd0 ttm_bo_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8c33d8a3 ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d61fd60 ttm_dma_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x95d2ff0e ttm_lock_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x98cbbf87 ttm_mem_io_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d0eb91 ttm_ref_object_add -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9d4bf34b ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa0e1f89b ttm_write_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa2367e42 ttm_bo_synccpu_write_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa5912c3d ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa87b1c5c ttm_bo_synccpu_write_grab -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae87b61d ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb8961d24 ttm_pool_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbf6509e4 ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc4f46b6b ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc60d96a0 ttm_bo_move_ttm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc76e8796 ttm_fbdev_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcc108745 ttm_bo_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcc8cb7d2 ttm_pool_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf17fb64 ttm_tt_set_placement_caching -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd0a36ae6 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd16ff3ba ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd27bf6b5 ttm_bo_init_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd5ca74d7 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd668050a ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdbf11ee6 ttm_bo_evict_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe6c37086 ttm_bo_add_to_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe6ec87f5 ttm_suspend_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xef797bba ttm_object_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfc9de17a ttm_mem_global_release -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0e2a6864 sch56xx_read_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0f5877d4 sch56xx_read_virtual_reg16 -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x4842d210 sch56xx_watchdog_register -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe5022f95 sch56xx_read_virtual_reg12 -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xed1d2a08 sch56xx_write_virtual_reg -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x51bfc371 i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x850b3449 i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xfe3a04b5 i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x6389781b i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xd4a87b4f i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x3cdc95fe amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1428f15a mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x190052f8 mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x193a0cd2 mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1d6fd1df mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x2509648a mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x274edf2d mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x3611cd97 mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x362d0141 mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x3e505047 mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5607cf66 mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5b5eb334 mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5d5abdc7 mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7b2160e7 mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7def4e42 mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb9b47ff6 mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd9363ccd mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x3967c05c st_accel_common_remove -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x87930f8b st_accel_common_probe -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x1456335f iio_triggered_buffer_setup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xcc752d98 iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x18fbbc17 devm_iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x1e6b02cf devm_iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x78792118 iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x9e92970d iio_kfifo_free -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x11d754f9 hid_sensor_read_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x13bd6b0e hid_sensor_write_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x187754d4 hid_sensor_read_poll_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x3c44e5ce hid_sensor_parse_common_attributes -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x4bfa3910 hid_sensor_read_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xf5735446 hid_sensor_write_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xb7edfc1d hid_sensor_pm_ops -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xc27a8350 hid_sensor_setup_trigger -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xd4f7c741 hid_sensor_remove_trigger -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xdc498e0f hid_sensor_power_state -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x0229dd1c ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x1141a5aa ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x20a66b80 ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3f1d8576 ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x7bd0f12f ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x9733f362 ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb53e0204 ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xcad96d46 ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xcc7717af ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x20a21717 ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x271c18de ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x9ed1a285 ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xcd647663 ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xe51b8939 ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x54bc62f7 ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xacbbc245 ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xb25c5188 ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0d771cbf st_sensors_get_buffer_element -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0ed551ab st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0f0853e1 st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3a779a5d st_sensors_check_device_support -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3c84417c st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5870cc04 st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x736851f5 st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x76ae202f st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8a2143c8 st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8c2797f4 st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8c5eca52 st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa742230b st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xcd2bc115 st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf2a69b5c st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf9b4a803 st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xfe993df0 st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xfee5298d st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x7d068246 st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x83872bc6 st_sensors_match_acpi_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xa3fdbba5 st_sensors_of_i2c_probe -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xfaa2de97 st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x01612b13 st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x45793f5e st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/humidity/hts221 0xac4e33a8 hts221_probe -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x4d10ed90 adis_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xf7fd8b35 adis_enable_irq -EXPORT_SYMBOL drivers/iio/industrialio 0x1182cbfd iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x137577ef iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0x1b397be1 iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x2bb9ce3f iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x4b595c40 iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x533303a9 iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0x5553bbdd iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x6e4828fe iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x70d645a5 iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xbc586c74 iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0xbf4af885 iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0xc9cca29e iio_triggered_buffer_postenable -EXPORT_SYMBOL drivers/iio/industrialio 0xd32e430e iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xe8f0be24 iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0xe972c81d iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0xecde1193 iio_triggered_buffer_predisable -EXPORT_SYMBOL drivers/iio/industrialio 0xf6da0486 iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x8ba84fce iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xdc73684d iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x840d6aa6 st_magn_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xfef7141c st_magn_common_remove -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xf07200c5 ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x2e95dd38 st_press_common_remove -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xc2302815 st_press_common_probe -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x049ace30 rdma_addr_find_smac_by_sgid -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x24bff584 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x4c33e170 rdma_addr_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x4d2582a5 rdma_copy_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x89c0ffe7 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xfe6e58a5 rdma_addr_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xfebfbede rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0049e47a ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x058ef74d ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x119d1cef ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2467c527 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x24ac1246 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2cdefffd ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x45945152 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x57930918 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5c3d0a6e ib_send_cm_lap -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x74935426 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8bf161be ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8ea1ecd3 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb45f1471 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd1a71edb ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdb367b7b ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xec30498f ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xeeb39861 cm_class -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfe6dee12 ib_send_cm_apr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07487517 ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07e5ae29 ib_umem_odp_map_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08e20fa5 ib_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10c75ad8 ib_fmr_pool_map_phys -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x114959d3 ibnl_add_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11e46978 ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17a6b348 ib_destroy_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17f00e63 ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18ce88f2 ib_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1cd82802 ib_dealloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x228c2601 ibnl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24239cdb ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2516399d ib_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25f1e752 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x269ddd62 ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26eb995f ib_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x279f52bf ib_query_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27c3fa22 ib_get_dma_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29abe149 ib_create_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a02d669 ib_dealloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a8f5cef ib_dealloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3240eb03 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x337d439b ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33a3f448 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33f44974 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37314916 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d5bb2a8 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fa376be rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4076e1d6 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x411959d8 ib_fmr_pool_unmap -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4bb8cb24 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50ff0370 ib_alloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5533e826 ib_get_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55357cd7 ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55968751 ib_destroy_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61955487 ib_modify_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6781f2a5 ib_create_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6839e3ef ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x688e9e4e ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x694fc976 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a2c7527 ib_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6fb1660c ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7180cd6d ib_alloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71bd5616 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73b608e6 ib_resolve_eth_dmac -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d47e9f2 ib_find_cached_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f261299 ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81202f6b ib_create_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8591efe4 ib_destroy_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8684a8ad ib_create_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8773b2ff ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8901882c ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b713f7c ib_query_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8cf903d8 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9337e222 ib_init_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95b9a26a ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a6ce0fa ib_alloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c43c0c9 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c4b20f3 ib_find_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d906f05 ib_dereg_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f280be8 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6558c71 ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab5cd01b ib_dealloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae8794a9 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb27e0fe6 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6e85bd0 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6ee4c05 ibnl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb766b102 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba5e9a48 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe102d75 ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5165fff ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce2ef305 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd346639a ib_umem_page_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd616fcaf ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc36cfe4 ib_get_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd11fe60 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde670577 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe05f4f24 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe74a6885 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe82b2610 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb54fb40 ib_find_gid_by_filter -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee2a6e50 ib_destroy_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef6ae4f2 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x28259602 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x32fc79a0 ib_cancel_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x52b2c935 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x75128bf6 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x8f6aea25 ib_process_mad_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x910bddd4 ib_register_mad_snoop -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x96f38c63 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xce108e1a ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xd277bd2d ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xdceae9bb ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xe61c0082 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xe7639459 ib_redirect_mad_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xf273b446 ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x1efe4491 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x21f082d6 ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5924be32 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x6f7e97ab ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x7afc567a ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x8309baa1 ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x89f75735 ib_init_ah_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x8ed9af46 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xa15af30f ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xe7b18c1f ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xed640c26 ib_sa_service_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x024e6718 ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4012a7a6 ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0811db5e iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x08bb5158 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1d5d8420 iwpm_remote_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x24975482 iwpm_add_and_query_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x269087db iwpm_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3f6ef23e iwpm_add_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x57b1d251 iwpm_ack_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6b8d824c iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6ccd2102 iwpm_mapping_error_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x877c2e83 iwpm_register_pid_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc0f2103f iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xda748200 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf02b7bca iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf0e11aa1 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf4042b86 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x29c32f9b rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2b781279 rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2f5eb1eb rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3bbdd263 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x41a00834 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x45bf1a1c rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6357ce55 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7529b366 rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x797a0aa9 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x80292f3f rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8ecb306b rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8ef7291e rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8f0e01f6 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa0391317 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xab4f5568 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb94e9b69 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbecfd76c rdma_create_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd64fd8ff rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe0a53fb4 rdma_set_ib_paths -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe90a4266 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf4ccce38 rdma_disconnect -EXPORT_SYMBOL drivers/input/gameport/gameport 0x010f50f3 gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x0e5a350c gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0x214c4cb8 __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x83e89137 gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xb3370518 gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0xb5ce7ce3 __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0xb8318105 gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0xcbf37daa gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0xdd7d887e gameport_open -EXPORT_SYMBOL drivers/input/input-polldev 0x06d90295 input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x3b62920b devm_input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x6b6488fe input_register_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x713c9cc4 input_unregister_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x91c84a17 input_free_polled_device -EXPORT_SYMBOL drivers/input/matrix-keymap 0x75965737 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x1aeeb043 ad714x_enable -EXPORT_SYMBOL drivers/input/misc/ad714x 0x41645f4e ad714x_probe -EXPORT_SYMBOL drivers/input/misc/ad714x 0x77ae00ca ad714x_disable -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x32549858 cma3000_init -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/sparse-keymap 0x2b793849 sparse_keymap_free -EXPORT_SYMBOL drivers/input/sparse-keymap 0x85d14dfe sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xae871ba5 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xd781175a sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0xe1cafd03 sparse_keymap_setup -EXPORT_SYMBOL drivers/input/sparse-keymap 0xf14b3ab6 sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x12780fd8 ad7879_probe -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x1c797842 ad7879_pm_ops -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x0be28c11 capi20_register -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14771465 attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x437698a7 capi20_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x52467580 capi_ctr_suspend_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x5ddb3085 capi_ctr_resume_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x63f8d2ac capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7292ab34 cdebbuf_free -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x72a25a72 capi_cmsg2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7edff1ef detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa0c8214d capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xcf725b53 capi20_put_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd4554a86 capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfd552f7a capi_message2str -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x01721081 b1ctl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x35461b6b avmcard_dma_free -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x4eb12367 b1_load_config -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x560fc9f1 b1_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x65974574 avmcard_dma_alloc -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x7774c392 b1_free_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x78ab9af4 b1_parse_version -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x8a4e7e2b b1_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x8ee9675f b1_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xa562b95c b1_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xa88f19af b1_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb3e69847 b1_load_t4file -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb7443ae5 b1_alloc_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xbf086dcd b1_loaded -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xcf954076 b1_getrevision -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x11aef584 b1dmactl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x1e25aa5f b1dma_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xaeb7c12a b1dma_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xb1064717 b1dma_reset -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xb2c0f8df t1pci_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xc60bf1c8 b1dma_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xc94e54a2 b1pciv4_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xf0bdc542 b1dma_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xfffddfd4 b1dma_send_message -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x4ee2b981 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x81b81d57 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x8c84bf27 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xb0351f0e mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x04f17c8f mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x615e9248 mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x4a679e37 hisax_init_pcmcia -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6fe1ca04 FsmDelTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9f987c85 FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xa1bc94b9 FsmInitTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x97f5e074 isac_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x99ca50b5 isac_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xb6c95c9a isacsx_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xd9cb826d isacsx_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xe1c16f68 isac_init -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x3fc71252 isdn_ppp_unregister_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x5aa570fc isdn_ppp_register_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xadce0948 register_isdn -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0ceb64ef get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0ef8df33 bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0f1cc929 get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x147d9dbf mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1e7d73ee mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3c8ce5d0 mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3d7f51ff mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x47172b3e queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6455b286 mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x68f9cac4 mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x737a8b11 mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7c91426a recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x82b82312 recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x837c2223 mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x87b63e71 bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9d583cff create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb64051df mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc56b0e05 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd310bd65 dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe03df44b recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe7b0d301 recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf06c749e recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xff012b28 mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/md/bcache/bcache 0x0c161f5b bch_bset_sort_state_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x11f9991b bch_btree_sort_partial -EXPORT_SYMBOL drivers/md/bcache/bcache 0x1f529ce8 bch_bset_build_written_tree -EXPORT_SYMBOL drivers/md/bcache/bcache 0x440b4830 bch_btree_iter_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0x44a37d62 bch_btree_iter_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x5b59b856 bch_btree_insert_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0x6d7dda0f bch_btree_sort_lazy -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7daccb73 bch_btree_keys_alloc -EXPORT_SYMBOL drivers/md/bcache/bcache 0x86775f52 closure_sub -EXPORT_SYMBOL drivers/md/bcache/bcache 0x8833b0e8 bch_btree_keys_free -EXPORT_SYMBOL drivers/md/bcache/bcache 0xa3c5c702 bch_bset_fix_invalidated_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0xa881e72b closure_sync -EXPORT_SYMBOL drivers/md/bcache/bcache 0xca5df778 __bch_bset_search -EXPORT_SYMBOL drivers/md/bcache/bcache 0xce47a6d9 bch_btree_keys_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0xd2813054 bch_bset_insert -EXPORT_SYMBOL drivers/md/bcache/bcache 0xdf892351 bch_bkey_try_merge -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe93905ba closure_put -EXPORT_SYMBOL drivers/md/bcache/bcache 0xec6f33d0 bch_bset_init_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0xf17c4950 closure_wait -EXPORT_SYMBOL drivers/md/dm-bufio 0x268682d2 dm_bufio_forget -EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers -EXPORT_SYMBOL drivers/md/dm-log 0x4eadfa2b dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0x7155e258 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0xb1ae0e90 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0xf2662c62 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x48fef197 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x58278919 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x8a2915df dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0xf2d3c6f1 dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0xfdb65c5a dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0xfece6caa dm_exception_store_create -EXPORT_SYMBOL drivers/md/raid456 0xf787b456 raid5_set_cache_size -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0941daf5 flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x18e4d944 flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2786fad5 flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x280d98c4 flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2ac15b8d flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x78780835 flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7c8e7a4b flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x87e43a76 flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8d1947e3 flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa7d2c330 flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xab2502a7 flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xafd0e69f flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xcd57913b flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ee669c6 cx2341x_handler_setup -EXPORT_SYMBOL drivers/media/common/cx2341x 0x2a4a18ac cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update -EXPORT_SYMBOL drivers/media/common/cx2341x 0x30cb4cd7 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0x6eef0624 cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu -EXPORT_SYMBOL drivers/media/common/cx2341x 0xc96f0f04 cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x19f98289 cypress_load_firmware -EXPORT_SYMBOL drivers/media/common/tveeprom 0x46c1804c tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/common/tveeprom 0xd7468cc8 tveeprom_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0676982c dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0e924091 dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x19cd714d dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1da5d47f dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2975b9bd dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x453b52ba dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x531eb016 dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5682e65d dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x57a29ecd dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5ab4496e dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5b4da21f dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5bcaf134 dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6c160efe dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7092ba42 dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7caa224e dvb_ringbuffer_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8083a5f7 dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x893a9553 dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x89d60bc3 dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9510a851 dvb_ringbuffer_flush -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x999b6cb4 dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa10e976c dvb_ringbuffer_flush_spinlock_wakeup -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa1a30680 dvb_dmx_swfilter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa606482e dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xab56e804 dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbb7c9408 dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbe4802a9 dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc035b0be dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc1752152 dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3c77f8d dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc473080e dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc6f04f0a dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd93084d2 dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe4ab938d dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe60d865f dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf23a08e3 dvb_ringbuffer_read_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf4b4c6e8 dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf5cbd7a1 dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf60fe140 dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts -EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x049bec6c af9013_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x5633e51f ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xd31db539 atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x171b6a26 au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2bb7e198 au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x408a7bd5 au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x78a2f4ac au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x8c22c0ad au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa7d6881c au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb25d6640 au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb2b474cc au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xcee18a6a au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x53eb09a6 au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x995cdc1f bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xad4793f2 cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x5d017e68 cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x62de5f2e cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x03ed8281 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xd8553324 cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x0aa50bd9 cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x1baee2a2 cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x02c6b5e1 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x03e6a821 cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x8313e58b cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x2037901b cxd2841er_attach_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x3265a303 cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xd826c9b7 cxd2841er_attach_t -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x15028f46 dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x270eab30 dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x968a5b48 dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xb54cff92 dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xe7f64eab dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0faca251 dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2a0cd16f dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2debea04 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x334cf057 dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4135aa68 dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x48673c4b dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x636b9cf1 dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6893827c dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x752766b1 dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8097b761 dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x97dbc4da dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xadf6c1f8 dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xae4bd251 dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xcb10ac69 dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdd6a8124 dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x8d8c6eae dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x41990e7b dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x934d0ae7 dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa5103050 dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xb46d7bc2 dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xc8aa8c2e dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xe2c982a4 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x41cc239d dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x6424c458 dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x9cc17fcd dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xb13e2446 dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x8c413125 dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x3c18ae1a dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x62f94143 dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x736b184b dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x7c52bf30 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xaf63fee6 dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xe9d7d587 dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x4be1d4f1 drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xed27133a drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x9d784a17 drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x869a37d5 ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x05aba963 dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xb1a007bf ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x6ea1cc66 horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x0dcc0d1f isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x2ce7fc8c isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x2de84f5e isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x19e25aa8 itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xacd9395d ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xaf275dd4 l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xe4bfca10 lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xb628a45a lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x2a87b049 lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x091c928f lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x5a8c57e9 lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x3101315c lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x89aee2ea lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xd6f82a49 lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x78bfcbda lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x506d7edc m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xaaf70ceb m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x11c95cfa m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x53fb07b8 mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x55ed6423 mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x4f579de7 mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x03881ba4 mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xb5cf0dd8 nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xf91f5fc3 nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x0e11fded or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xe390fd4b or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xbcf7a27e s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xc0fb0527 s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x1985454d s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x50c1019f s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x2dcd568f s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0xa621c3a3 si2165_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xe2561cb7 si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x517c7685 sp8870_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x02c9b444 sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x0c1e68e8 stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xcac7a361 stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x93baf47a stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x5acbb3b5 stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xa4c4c3f0 stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x7528a26c stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x3011df1a stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x3348e700 stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x6bbf131e stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x4331976d stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x437871ed stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x82b57b44 stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xe5b60b2d tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x3ba97b7d tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xa873ba71 tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x9f7d2a91 tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xab6882f9 tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x223953ce tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xad109e8b tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xc0fd93ae tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xd9c5b65f tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x91407231 tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x9e831e54 ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x010d3ea0 tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x9eb12d64 ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x5414a4d4 ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x1e53a04d zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x56f06f5c zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x951381e4 zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x1ff6d115 flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x6ffd6287 flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x90ffd980 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xa301e793 flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xad4beb8b flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xddf40009 flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf6b27b81 flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x26a09977 bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x9563a9ec bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x9bb14f3f bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xf1c0281c bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x57e2132d bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8bae046e bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xd0f22a85 bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1b36b44d dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1beb4b4d dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4bb2569b dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5af4f1bf write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5ea01968 read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x72e3ea3d dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa9d65377 dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb4509ae9 rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe4443a9b dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x48b72b74 dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x0a1f9815 cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x659b2dbc cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x6ebbbfd2 cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x9cdaf599 cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xaa8b1b81 cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xf1b85807 altera_ci_init -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x143f6626 cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x59c082d6 cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x80e17be8 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc8282211 cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc9c2837b cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xcf5a0e11 cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf5abcb2d cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x8c38b53c vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xdaac47ce vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x6bd07b8b cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x6c6b41f7 cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xb955edba cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xdec00bb3 cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x272e8015 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x2f1010b3 cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x4c4734ed cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x4dbf5976 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x5eaa3397 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd20958cd cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xddd75646 cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1f557a79 cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3079d74e cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x46a5b6f1 cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5123e1e9 cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x536bc9d3 cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x65134235 cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6bf76291 cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x851f9590 cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9e675aa1 cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb1733510 cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb52c56a0 cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb6b02ede cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcb713f67 cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd3bdf855 cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdef2e266 cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe0b0c484 cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe3cca098 cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe9d77d96 cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xee8d995b cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf2ba09d4 cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x054e0419 ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x07e17c09 ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x133de3d9 ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14cb56d3 ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x17d5b1ba ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2c0c6e0a ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x41334b06 ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4a5fb50a ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4c862639 ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x59da0335 ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x783d9ce6 ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9fd347a6 ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc43f5129 ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcef43372 ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe98b06b8 ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xeb5d808d ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf5013667 ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x00410a0e saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1c44d07b saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x450a5496 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x483b9837 saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4870d1b1 saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x52ff6b6a saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5f9a40aa saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7981a919 saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x90f4b0dd saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb0e76656 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xdf1a4508 saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xfd057654 saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xbd6f5d63 ttpci_eeprom_parse_mac -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x1eecfe83 soc_camera_power_on -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x219a997a soc_camera_host_unregister -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x241c82b0 soc_camera_host_register -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x671db817 soc_camera_apply_board_flags -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xa8dd3cc7 soc_camera_xlate_by_fourcc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xe1e95fbb soc_camera_power_init -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xf8be7c1b soc_camera_power_off -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc -EXPORT_SYMBOL drivers/media/radio/tea575x 0x034de7da snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0x0c911d18 snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0x48281f0a snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0x909349bd snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0xb243fdee snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0xc5aa3fa7 snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xce64a70e snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x59f948cd lirc_dev_fop_close -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x70622482 lirc_dev_fop_write -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x94adbc06 lirc_dev_fop_read -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xc8bbf810 lirc_get_pdata -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xcaf4bd53 lirc_dev_fop_poll -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xd87efc5b lirc_dev_fop_ioctl -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xeae52b48 lirc_register_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xf28b016f lirc_dev_fop_open -EXPORT_SYMBOL drivers/media/rc/rc-core 0x5cecdd0f ir_raw_handler_unregister -EXPORT_SYMBOL drivers/media/rc/rc-core 0xfe5f3ecd ir_raw_handler_register -EXPORT_SYMBOL drivers/media/tuners/fc0011 0xcd8187ed fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0x38fdedb7 fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x0130c1d4 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x2e911c22 fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xb2882fb7 fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/max2165 0x91058def max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xec28d37b mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0x1c7b45c0 mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0x2433f2e5 mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0xbbc22d84 mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xae85f3bf mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0xc26d2eae qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0xd25d6974 tda18218_attach -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x0318994a xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0xfc415b09 xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0xf827db46 xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xe887a640 cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xed794717 cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x02588fe8 dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x41fab19b dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5de82fb3 dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x622b4934 dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x81d1c7f0 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa4cc19aa dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd9371414 dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xdbae8b6f dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xec5fa25a dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x0b4cecc6 usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x0b94e14e dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x2ecf9587 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x44ba4cda dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7d3ad9f4 dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x8518d3db dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x8c2ae2ee dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xa4e1aa8b af9005_rc_decode -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x042482bb dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x13f5a940 dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1ed91de9 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3f5fd1c7 dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x53213318 dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x581746c0 dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x589eefdf dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x916d712f dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xcd505a52 dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe0102ab9 dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf1df6d7a dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x8babd4e9 em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xe23803a4 em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x09ae3101 go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1fb244c7 go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x24921e07 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4c90c0fa go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x55c0764f go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6e3e6d3c go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9c99a86a go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9e3d1c3d go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc7d12e1c go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x35922913 gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x3a665c0f gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9321737a gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x96368d25 gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa37649f0 gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb320b8d9 gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc61faf5b gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xce293866 gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x42f6a6ba tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x70bfab09 tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xaaf6c078 tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xd5c9bb29 ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xfe0ebae3 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x15d1549a v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5a70994a v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xee53d005 v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x0c5fc086 videobuf_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x18bc04ed videobuf_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x864167be videobuf_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xb30fdf3b videobuf_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xe450c740 videobuf_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xe76dca84 videobuf_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x5a8bfb60 vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xdd3f355e vb2_verify_memory_type -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x0e3a6cc8 vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x0e717bde vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x49ec5ba0 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x7475804d vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x7f3de581 vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xb01ccc99 vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0xcdc56da5 vb2_querybuf -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x00242595 v4l2_clk_get_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x035b1380 v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0443f0b6 v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x04d08f89 v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x05deb9a7 v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x07ff582e v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x09c18f9e video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0e009b70 v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0e2f8a45 v4l2_clk_enable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0f7f847a v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1894b3d3 v4l2_subdev_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x19d26fdd v4l2_clk_put -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1d03a0e6 v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2110ba02 video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x293c2f87 v4l2_clk_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36779e2a v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3d722f8c v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3e534060 v4l2_subdev_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4459676d v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x48c6a44a __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4ac96d1d __v4l2_clk_register_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4c896fad v4l2_clk_disable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4dc226a4 video_usercopy -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x51327a18 video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x51e59745 v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x524a1d72 v4l2_clk_get -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5652b8f1 v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5808bc5b v4l2_of_free_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5de89b6b v4l2_clk_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5ea59abd video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6b36ff47 v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x74dfcfd7 v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7713fead v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x79f123e1 v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7b0d3301 v4l2_of_put_link -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8af6f042 v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8dcf075c v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8e548846 v4l2_subdev_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8f503482 v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8f84919a __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x92b3b09a v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x967aae10 v4l2_subdev_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9db3785c v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9f39bfb2 v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9f59eee8 v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa32517ab v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa5b59d12 v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa5bc2815 v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa75b9d62 v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xad51eb7e v4l2_subdev_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb616756b video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc23a71c9 v4l2_clk_set_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc3f45914 v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc5d31f56 v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc7fefc3b v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc95e1447 v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc98c78d2 __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd38245a6 video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd54fdcb1 v4l2_clk_unregister_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdcbc49e2 v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdd29d1e3 v4l2_of_alloc_parse_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdf0b641b __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe3782c00 v4l2_subdev_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe3bc6feb v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe6a1ea0c v4l2_of_parse_link -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe70e2057 v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xec33e0f2 v4l2_subdev_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xee2aaf2a v4l2_of_parse_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeea8dde9 v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf012d9bc v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf2d172e2 v4l2_ctrl_add_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf40707b2 v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfc242561 __video_register_device -EXPORT_SYMBOL drivers/memstick/core/memstick 0x0b73fe69 memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x13c6bcfa memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x286c210e memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x50d52eec memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x8ccac8d1 memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0x999daf80 memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x9d2d9920 memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xa560c673 memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xad4258c6 memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xba5fb7ea memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xc1a5a247 memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc07e67e memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xe770ed1c memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x18ffbcd8 mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1fb0f7f2 mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2a366276 mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3e9e3dd7 mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x43ded26f mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x481100b3 mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x53f59f67 mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x654c0d2e mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x67345874 mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x71d39a01 mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x870ffe0e mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x90f4de27 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9ce50757 mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9d31f511 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa4512ae3 mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa4d25d37 mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa53176a8 mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa60f7efb mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb58e8573 mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb6726c59 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb799bc1c mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xba3cc812 mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbb92c9c5 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbd42ae15 mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc4fa6f22 mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcef1acdd mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdae32b38 mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe24124ed mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf0f867f0 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x06376b37 mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0fe526db mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1d0301cb mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2e8e8b86 mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x32d093d5 mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x35986212 mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x386e40cc mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x440345f8 mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x468e9c48 mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x657d6d51 mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6acb3646 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6eceea7f mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x705943b0 mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x705abd2c mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x90f8c405 mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa08ba67b mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc49cebcd mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd35ddc56 mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xddcdc5cd mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdf19f3c8 mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdf58912e mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe28ed12d mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xeb6bb257 mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf0a3278f mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf8212ced mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfa819825 mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfdb7737e mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/mfd/dln2 0x3ffab8bd dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0x678640f1 dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0xa3f79cc5 dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x3373ab6a pasic3_read_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x94cd4094 pasic3_write_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x07c06107 mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x168b1523 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x170a14b7 mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1bf165ac mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3afea7a6 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x505f43ee mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x612b9230 mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd0f1b5f9 mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd6947757 mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe5d096b6 mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xed1b21f5 mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/qcom_rpm 0x295fb567 qcom_rpm_write -EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 -EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 -EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib -EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led -EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw -EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0xd1f18de2 wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0xe3d01f4f wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x139a3421 wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x59ca6950 wm1811_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xc6a86b7d wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xf492d0e4 wm8994_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x14b95f23 ad_dpot_probe -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xa0671723 ad_dpot_remove -EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0xd2c54d67 altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0xad44dfbf c2port_device_unregister -EXPORT_SYMBOL drivers/misc/c2port/core 0xe61a33dc c2port_device_register -EXPORT_SYMBOL drivers/misc/ioc4 0x9f6dceb0 ioc4_register_submodule -EXPORT_SYMBOL drivers/misc/ioc4 0xfd24bcaf ioc4_unregister_submodule -EXPORT_SYMBOL drivers/misc/tifm_core 0x02497c57 tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x16cd5b89 tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x1a47f5d6 tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x5197bcb9 tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x58687e4d tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x63f09aa7 tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0x6b0de457 tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x9b60c295 tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xa8c2ec46 tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0xaf39e393 tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0xc279a59a tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0xd28e61c7 tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xdd446af8 tifm_free_device -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x04c9b66e dw_mci_remove -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x398a294e dw_mci_suspend -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x812e7c1e dw_mci_probe -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xf326f03f dw_mci_resume -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x51653713 mmc_spi_get_pdata -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x58b3f587 mmc_spi_put_pdata -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x2cda3775 cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x64a09920 cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x6571f65b cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x8e623974 cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xa9e8ab3f cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xcd20c62c cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xcf6d3bba cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x19c1e6ae map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x31833500 unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x50c631da register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xa0431fbc do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x3e5b02ff mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x238ab2ae lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x535a7c11 simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0xad31681a mtd_concat_create -EXPORT_SYMBOL drivers/mtd/mtd 0xeb208d1a mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/nand/denali 0x440d0da2 denali_remove -EXPORT_SYMBOL drivers/mtd/nand/denali 0xe3d536d3 denali_init -EXPORT_SYMBOL drivers/mtd/nand/nand 0x00aeb2db nand_scan -EXPORT_SYMBOL drivers/mtd/nand/nand 0x09c8de86 nand_scan_tail -EXPORT_SYMBOL drivers/mtd/nand/nand 0x6b568a5d nand_scan_ident -EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/nand 0x9e47416a nand_lock -EXPORT_SYMBOL drivers/mtd/nand/nand 0xd04fcbe2 nand_unlock -EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings -EXPORT_SYMBOL drivers/mtd/nand/nand 0xfc0f20da nand_scan_bbt -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x1f8d891a nand_bch_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x8b4f0639 nand_bch_init -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xe12a9b66 nand_bch_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3ddf0bbb nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xaba154da nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x8cfcf75c nand_flash_ids -EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x588af33e onenand_scan_bbt -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x83316aec flexonenand_region -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xbb264fc3 onenand_addr -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xd5a54b76 onenand_default_bbt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x043125fb arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1473b15a arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2712d7e1 arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x56a989eb arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6cd4e2d6 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9b549a87 arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa5dee201 alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb242234a arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb99611dc arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd605b58f arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x17b9456e com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x345784fa com20020_netdev_ops -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xfa4da503 com20020_check -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1de83341 ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3086ce2e NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x47ce1959 __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x733d265f ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8ac37002 ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8ec275cc ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa5b30630 ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xcbd52333 ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe54b8973 ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf13a6adf ei_close -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0xeb598100 bnx2x_schedule_sp_rtnl -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x8cd99093 cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x0d8be5fd bgx_lmac_rx_tx_enable -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x285bde59 bgx_get_rx_stats -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x42264715 bgx_get_lmac_count -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x6dc1648d bgx_get_lmac_mac -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc397f585 bgx_lmac_internal_loopback -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc82be691 bgx_get_map -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xe48ca42a bgx_get_tx_stats -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf101d1b2 bgx_get_lmac_link_state -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf9508980 bgx_set_lmac_mac -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x01d344b1 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x19588e7d cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1df6a2bf dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x229d797c cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x25ed4171 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x39c5db52 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4d01be5a t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x71d1c599 cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x733c2cb8 cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x73a33217 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x785af1c7 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x996aad05 cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc57d2745 cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdbe81f98 t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf5f05265 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfa84bc5e cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0507c731 cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0d45c1de cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x24e66a1a cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x29a0c7f5 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3a8496ba cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3c1cbe98 cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x513ee888 cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x52cbc9a0 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5694d43f cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5a1eff41 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5e632058 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x68954add cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x68b28a88 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6e9b8e75 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6ec34823 cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x75b35eba cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7eeeadb3 t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x83abfd27 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x86e237ff cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9caa2a5b cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa18f8892 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa775a186 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb5e8b981 cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb6160433 cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb881a570 cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbf1da666 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc071a4f3 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcd131aff cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcf165385 cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd78fdcff cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd985faa3 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xde710597 cxgb4_dcb_enabled -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xded1d584 cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfa1cb334 cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x714a68be vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x8ca4ca4e vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x984e0adb enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa4c59159 vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xb7aa5c6f vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xbb68512a vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x5243c6bc be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbe5cd153 be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/freescale/gianfar_driver 0x79f28897 gfar_phc_index -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x50629a40 hnae_reinit_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x7109d93b hnae_ae_unregister -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x773dd3f9 hnae_put_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb29df476 hnae_get_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xf7fb02e7 hnae_ae_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00603af4 mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x014a8e92 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01b7a64e mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x049eb55e mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07220f61 mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08b92d67 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c8f7ca8 mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x133f74e1 get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d3a5d60 mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2233ddc4 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30234324 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x339ec54d set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x452529e5 mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b23bb28 mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c57b1d7 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5dd1fd31 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68f95522 mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73b5cfa3 mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74b1512d mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8275618c mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x828288e6 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8cb417a7 mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ee08a7c mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9959da7b mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99b304db mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a1690e9 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1cd06bc mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa2de79f mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb22e61d5 mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3a274d2 mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb21647e set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9284532 mlx4_test_interrupts -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe64a515e mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe829ff49 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeaa6607b mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeed4f0df mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf939cf58 mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbcb8e50 mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x048ca216 mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07edf576 mlx5_unmap_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0857aabd mlx5_get_flow_table_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb7287e mlx5_del_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1528b6a5 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19dd717e mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x214d7536 mlx5_core_arm_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23943649 mlx5_query_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b7d066e mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30197e64 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a5742ab mlx5_cmd_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40de8903 mlx5_core_destroy_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46844c03 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x496b5da6 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d26454b mlx5_alloc_map_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51f79831 mlx5_core_get_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52c08122 mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6268bc5e mlx5_core_query_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6410d2ce mlx5_cmd_comp_handler -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66251508 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6738523e mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6dcc3b30 mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f31da48 mlx5_core_create_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78cd5cd4 mlx5_get_protocol_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91b4679d mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e4a3566 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa638c6a2 mlx5_unregister_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6d8cc2d mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcf12ecb mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5b2c1ec mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca3f56ec mlx5_register_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdaab8e49 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xddda60be mlx5_modify_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe183f4b2 mlx5_core_dump_fill_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6af33e4 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9220bb3 mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeacf8d22 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeed96083 mlx5_cmd_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7b13b28 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfaedd761 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc728a49 mlx5_add_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe3384e5 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x122756c2 mlxsw_core_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2d07a992 mlxsw_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7006b667 mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x82ea0e2c mlxsw_core_skb_receive -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9057365e mlxsw_core_rx_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa699cdd8 mlxsw_core_skb_transmit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc00f9cab mlxsw_core_bus_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee8e0771 mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf55971fe mlxsw_core_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x3e556f65 qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa209d1af qed_get_protocol_version -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x200ff7d7 hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x7e995cd8 hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x7f8cfb30 hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x82936c21 hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xb7dae90a hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x1c000764 irda_register_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x2346dfa9 sirdev_receive -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x39563111 sirdev_set_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x40424777 sirdev_raw_write -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x44181ade sirdev_write_complete -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x95c94e85 sirdev_get_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x9f9c7cb4 sirdev_set_dtr_rts -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xbcf7c20e sirdev_raw_read -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xeb4e7137 sirdev_put_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xfa14e12c irda_unregister_dongle -EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl -EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart -EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag -EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe -EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok -EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x6a853596 free_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xc4f4de18 alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x559f0777 cavium_mdiobus_write -EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0xda602255 cavium_mdiobus_read -EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x0fb1a9c8 xgene_mdio_rgmii_read -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x2cae6012 xgene_mdio_rgmii_write -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xc6da16d3 xgene_enet_phy_register -EXPORT_SYMBOL drivers/net/phy/vitesse 0xfadde679 vsc824x_add_skew -EXPORT_SYMBOL drivers/net/ppp/pppox 0x129a4961 register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0x2967c439 pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0x8433f0a7 pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0x37e79117 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x0b3fd6d0 team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0x46418b12 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0x4d58eb7f team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0x9437aff5 team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0xa985af44 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0xe17949ea team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0xedef88b2 team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0xfc374d8a team_modeop_port_enter -EXPORT_SYMBOL drivers/net/usb/usbnet 0x33b1f92e usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0x6573b8d5 usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0x70d9b04d cdc_parse_cdc_header -EXPORT_SYMBOL drivers/net/usb/usbnet 0xccde9b4f usbnet_manage_power -EXPORT_SYMBOL drivers/net/wan/hdlc 0x0b57481b hdlc_change_mtu -EXPORT_SYMBOL drivers/net/wan/hdlc 0x12a89713 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x46812048 hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0x58c948f6 alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0x6561075f unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0x7e02c2a0 hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0xa27826a9 hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0xa7c03dcc hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0xaaf3203b attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xd426daa8 unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xfc1f62c2 register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x07b4d462 i2400m_unknown_barker -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3124e83f ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3f040aac ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4d733eeb ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x56998226 ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6637b24e ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7b1e6c31 ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8ae5b7d0 ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xbf941cc8 ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdc807889 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe82e0f86 ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf6bb989d dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf86f21db ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0b6d2a2f ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2116b029 ath10k_debug_get_new_fw_crash_data -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3a03d3c4 ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3b0a7061 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4b406044 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5336ebf3 ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6ffd148c ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7d20f44f ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x82371fa2 ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa2eff9a2 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb4c4f43d ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb5f181c8 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcfc8d16c ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdca67b32 ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe9859b4e ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0b9c53b0 ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x11b0a0bd ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x31dba142 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3b8cfcad ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4279a2eb ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5b4dc8f6 ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x64061368 ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b48bd2c ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa0fdd2e0 ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc446da5a ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xee55641b ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x09095f8e ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0c133e06 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x12e0bef5 ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1397cfb4 ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x192c5e91 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1a184b4d ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1feb3e78 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x25c81dea ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x269ebf93 ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x399dd42b ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x40950b0b ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x45f887a3 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x56a7de45 ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5d7e8610 ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6099d342 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x68ca6919 ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6df1c73b ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8c6d331d ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x923ada68 ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaa22a493 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb7d99f81 ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe55ca853 ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xeebc8fc4 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x008e58d3 ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00c6d020 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00ce9a2b ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01da028f ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02e98e07 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0300a777 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x035b8ad6 ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x067650bd ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x06def224 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b9adc85 ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11475055 ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11cd60a3 ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1250c319 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1459e3a1 ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x15f5c6de ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16135762 ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17cdb7cb ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a20e2cd ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1c3fce57 ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1df9b4c2 ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x207c7d20 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x22c5abb3 ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x26a2cd1a ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27e1fcc3 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3046b6bc ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x30889d44 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x31ed5587 ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x321fcc07 ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3415d10f ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x347685d4 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x358d7208 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3c3a1cf5 ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e443160 ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e5543c9 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3ea77222 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3f605c67 ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x443f08c1 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x448b1417 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c628a4b ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x50e2a1fe ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54d8fb22 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5786e575 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x586ad190 ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x59662f87 ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b78f420 ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5bebb322 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5dc7def7 ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6271236f ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x645b9b7a ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66890cd7 ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e837e60 ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x754dbad8 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x77827370 ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x779bf1db ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d28290c ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f37a7de ath9k_hw_cfg_gpio_input -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f4651ff ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x82bb2cc5 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85bdc1e0 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x86bef15f ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8bd4afce ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d444c65 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x90770f80 ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9210ced0 ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x931c2e86 ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9389086b ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x986708da ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa1e8bc23 ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa231cdea ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa4598ead ath9k_hw_request_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6ca8262 ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa37a655 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa6a2647 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xabaa9c48 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1656431 ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1ac4266 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3bec6a9 ath9k_hw_cfg_output -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb5284e91 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb71c1c2c ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7a36ef1 ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbbaa8a84 ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe633e4e ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe907192 ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0ceb8a9 ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0f60755 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc91d7ba9 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc94329cd ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xceefb20b ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4672e69 ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4caf5c2 ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd558ca10 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd778cd8f ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb2e5ad8 ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb5f331f ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdcabcbbf ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe1164288 ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe3b74eed ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe6a49cfe ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xea614c1f ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xebaafb51 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xebd7947d ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee51dc97 ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf78331f8 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe61a20b ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff4aa6fd ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/atmel 0x696bdbe2 stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel 0x7ebd7a59 init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel 0xbb395023 atmel_open -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x19f3220e brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x23228743 brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x335d4500 brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x35b5ad68 brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x5bd1811c brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x6713122d brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x874f5a9e brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x883e82bf brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9a7052d9 brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xbfd52ae3 brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xc3bca50d brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd8b8cc8e brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xe764f156 brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x074f7a7d hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0863ccd3 hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1723ac32 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1edff335 hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x213b79ba hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2d1481f0 hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2e58f4de hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x326490bb hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x33bd0687 hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3f1b516c hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x448a207b hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4e9d68af hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5984ed03 hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5ccd27f9 hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x62bb96dc hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6370781f prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x697464d0 hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6f60bb82 hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x74aec6e0 hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x77a3ea92 hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x793c8152 hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8578754b hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x950a2283 hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa421878a hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd569390c hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xfdde3803 hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x042a36f8 libipw_rx -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x33164b8f libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x39f21482 alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x3aedb48e libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x48e781f3 libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x570cbfe2 libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5982ef35 free_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7a89f258 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7adbc89f libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x80dee9f7 libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x86e173cf libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x8d161894 libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x8e117662 libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x9438e31e libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x9f05ba36 libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa1afddbf libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa36ca6c0 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb7e757b0 libipw_change_mtu -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xbf23a752 libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd19fc047 libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf3e821bd libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x00c6eab1 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x03978e96 il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x082b0d61 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0863f8c4 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x088ed39e il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x08c8ff2c il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0a7ad275 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0b1f18e7 il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0da92b06 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x114f89f3 il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1198fe3a il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1d341a36 il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x25da73fa il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x279d2e96 il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x27c3752f il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2bb0433f il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2dbde385 il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x33825529 il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x377e9448 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x38f783f2 il_init_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x39b7aadc il_apm_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3a7c4ccc il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3bf318ad il_free_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x40ad3611 il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x413f699a il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4a7172f3 il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4f1b58b5 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x53bd48a9 il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x57379973 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5781cf6b il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x58e3021d il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5e47d9ad il_set_rate -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x603e64ff il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x62f4ba13 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6381292e il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6d26e3b0 il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7150b7ec il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7a9f3ff6 il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7b21f1b8 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7da1d469 il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7f90cf6a il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x80d7eb47 il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x81846056 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x87289c21 il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x88d5c394 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x89918568 il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x89f908a8 il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x89fc75af il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8abca19b _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8c9d403a il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8eae4ab5 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8ec3c393 il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8ee3722e il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8f3268dd il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9373dfb6 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9a1293e3 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9c25561a il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa12eecbf il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa1a444a5 il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa5646763 il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa6c46c5e il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa6fae1c8 il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa7bb899f il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xab18c6c0 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xac57a710 il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xaf8478dc il_update_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb06a5900 il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb472f948 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb57959a4 il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb6e910a5 il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbaa7e5e6 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbab933e9 il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbb09f0f3 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbba894d6 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbd5fec2d il_force_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbfbb9df1 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc63d6d4c il_set_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc8ea923a il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc920d755 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc9433ed5 il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc9fffd8d il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xca1499b9 il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcc75a5ad il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xccf5deb4 il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd388c86f il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd4dd2d11 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xda41cc38 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdf6b2a74 il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe06cb235 il_leds_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe59a01c8 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe64d5ff0 il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe95161ea il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf17b52d1 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf3e94ec8 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf672c755 il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf7647cda il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfb003246 il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xffae9316 il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x1b06ce78 __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x2447a6ab __tracepoint_iwlwifi_dev_iowrite8 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x314a20a8 __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x5e9c24ff __tracepoint_iwlwifi_dev_ucode_error -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x8c8ab242 __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x9a1b1df9 __tracepoint_iwlwifi_dev_ioread32 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xdced6db1 __tracepoint_iwlwifi_dev_iowrite32 -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x07cb5f2e orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x0b687bbd orinoco_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x39b32838 orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x3cd016bc orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x419cb68a orinoco_down -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5e5891c7 orinoco_up -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x62de16c0 __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x63b47f80 __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x98ec342a orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xba09381b orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc3512bb4 orinoco_get_stats -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc6540dd1 alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc8826ea0 orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd80f367c orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xeded76ed orinoco_open -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xef64033b hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xf7e5508e free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xa4816cff rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x042f9dc4 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0630e846 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0765d442 rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x114396b8 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1483094e rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x17517885 rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1921e4a3 _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1fa681d0 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x265df98e _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x29d64d13 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2ac0b861 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2dfc9860 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4260b1b1 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4d3f57fe rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4e0a1bec rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5121fb32 rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5fa223c8 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6998c86c rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x704fced5 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x70ee490c rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x72803da4 _rtl92c_store_pwrIndex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x78de47b5 _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7c53d869 _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8222bff8 rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x895c1fe2 _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8cb794be rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8d493799 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8d4ef759 rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8ecb5276 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb7fd97ca rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xba7001d1 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbbe7e0dc rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xca943055 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd4786b7b rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd7976206 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xda3d0f27 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xda42c43f rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdafd1ad7 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdfcbbb45 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xed7b0f23 _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf3a45377 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x3d479d9b rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x97eaa8d6 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xe1080709 rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xef65f481 rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x0d2ff067 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x422f0af7 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x8fde9fef rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xcef20503 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0580f232 rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x08f0baf8 rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0c020283 rtl_ps_set_rf_state -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0f8d662c rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x118b7ce5 rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1bc14191 rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1d3b514f rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1e19af74 rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2980c4d3 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2db62dcb rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3d431832 rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4d94c63b rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5fd91d71 efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x62c79e43 rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6951a197 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6a94e709 rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6fc64852 rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x764d6887 efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7897fb30 rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79f5e0f6 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x98003757 rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xad5c3ed7 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaf53b33d rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc7beb2f8 rtl_wowlan_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xce45b51d rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xded15dc9 rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfbba6fb3 rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfe6b1497 rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x4432c5c4 wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x9c001482 wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x9f345e49 wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xe93c8426 wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x459bb186 fdp_nci_recv_frame -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xd50631ca fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xeaf7eaf7 fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0x445e6f16 microread_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0x6e966fbb microread_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x33f5f9ba nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x57f8d56b nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xfe52f29e nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x81ca1cb7 pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x911381ae pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x34d1b6fe s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x413c708e s3fwrn5_recv_frame -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x4c43d936 s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x18212a5e ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3843bd17 ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x547a8990 st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9248747f ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x935d0e3b ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb6ae4710 ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc0ecc010 ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe19c8609 st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xefe5d21f st_nci_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf82c1f52 st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfae15ad2 st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0e6c6299 st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x14a5156a st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1fd70fea st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x375d65c4 st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x397338d3 st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3b18132c st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4f9c19b4 st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5d56f8e2 st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x74221243 st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x89e63681 st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x90cd3c63 st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa2518e2c st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xaa1801a5 st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xaeba7b3f st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd6c0ac98 st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd9e64fb4 st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe0023ec3 st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf61ca0aa st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/ntb/ntb 0x2e4912a9 ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0x51c1668b ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x55b01010 __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0x7406e298 ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0xaefbf215 ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0xc4d24a01 ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0xc7722c57 ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xd5813f3b ntb_register_device -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x7be03fcf nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xfc2d67cd nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/nvmem/nvmem_core 0xfdaa699c devm_nvmem_cell_put -EXPORT_SYMBOL drivers/parport/parport 0x03ae8421 parport_claim -EXPORT_SYMBOL drivers/parport/parport 0x10962d8e parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0x15053626 parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x15d6b12c parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0x18023765 parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0x1821e5ab __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0x25c53ea5 parport_write -EXPORT_SYMBOL drivers/parport/parport 0x3cf9d9e0 parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x4c412454 parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x52738651 parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0x57f60db2 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0x58f39dc3 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0x5ac34505 parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0x5ce818b7 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x63c90ea3 parport_register_device -EXPORT_SYMBOL drivers/parport/parport 0x6c887c77 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x74a92279 parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x80c8e8ae parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0x8db47c41 parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0x9bdd0a9b parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0xa85661d4 parport_release -EXPORT_SYMBOL drivers/parport/parport 0xabaf7ed7 parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0xad9b9ec6 parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0xc877513b parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0xcabe1240 parport_read -EXPORT_SYMBOL drivers/parport/parport 0xcf58d542 parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0xd0857a6a parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0xd7822dc7 parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0xdbd28384 parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0xe99c396a parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0xead4052b parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xf2f55b25 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/pci/host/pcie-iproc 0x33363268 iproc_pcie_remove -EXPORT_SYMBOL drivers/pci/host/pcie-iproc 0x698df60c iproc_pcie_setup -EXPORT_SYMBOL drivers/pps/pps_core 0x2f5f67e1 pps_event -EXPORT_SYMBOL drivers/pps/pps_core 0x4600845c pps_unregister_source -EXPORT_SYMBOL drivers/pps/pps_core 0xb01a8225 pps_lookup_dev -EXPORT_SYMBOL drivers/pps/pps_core 0xcfebcc2f pps_register_source -EXPORT_SYMBOL drivers/ptp/ptp 0x122d9efe ptp_find_pin -EXPORT_SYMBOL drivers/ptp/ptp 0x65a68402 ptp_clock_register -EXPORT_SYMBOL drivers/ptp/ptp 0x7763e46e ptp_clock_event -EXPORT_SYMBOL drivers/ptp/ptp 0x9b66b008 ptp_clock_unregister -EXPORT_SYMBOL drivers/ptp/ptp 0xaa4a92ed ptp_clock_index -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x1d50646a rproc_add -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x246c9cee rproc_report_crash -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x3500661f rproc_shutdown -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x755d7d94 rproc_del -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x7897b029 rproc_vq_interrupt -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x7a0a9766 rproc_get_by_phandle -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x8b35db76 rproc_put -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x8c991161 rproc_alloc -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xab9ecb86 rproc_boot -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xc3e5a019 rproc_da_to_va -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x0816b02c ds1685_rtc_poweroff -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x7610bb03 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x917ac5cf scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xcbb68edc scsi_esp_template -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xfd57626b scsi_esp_register -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x03971fb3 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1bea4ed9 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2ede734f fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc0b4dc75 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc0df6186 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd20a856b fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd2663857 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd29f4df2 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe59a77ef fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xead7d22b fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf4308394 fcoe_ctlr_destroy_store -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf54acc59 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x03d65fa8 fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1a3acf13 fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27befed6 fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27f1fc0a fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x28ad19ac fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2b223676 fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2ff1562b fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x37dea0d2 fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x38be088f fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x48c0ac3d fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4958f032 fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4c739018 fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5d8a3b04 fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x609d3e7c fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6617cb06 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6a33d922 fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6dc83bdc _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6ea56029 fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6eb238b8 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x72f727de fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7a74bfe1 fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ce48ac9 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x80712a93 fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x861add65 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8669013f fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x89988775 fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9022c1c7 fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x96d01975 libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x975b99e8 fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9dcda8c2 fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9eca0783 fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa219001b fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xad1cd3f3 fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb25570b5 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb35fbbb4 fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb4cadfca fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc583e5b6 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcb3a6fcb fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcf07fe03 fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd2059e41 fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd3067117 fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd9b0020d fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdb56b30c fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe12630d5 fc_rport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe24bc950 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xea4a5005 fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0b4dae9 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf53a8172 fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf6438d66 fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfc2a50cb fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x28add26d sas_wait_eh -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x49612894 sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8565b213 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xed26e14e sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x803fa153 mraid_mm_register_adp -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x047694ed osd_req_flush_obsd -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0e3cf055 osd_req_decode_sense_full -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x12c1bd13 osd_req_write_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x154e36a9 osd_execute_request_async -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x170e2975 osd_req_read -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1e1f4b73 osd_finalize_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x20b60ad8 osd_req_write_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x22184368 osd_req_create_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x26e10771 osd_req_write_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2b1509e1 osd_req_add_get_attr_page -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2c6c8506 osd_auto_detect_ver -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x308592ca osd_req_flush_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x30fc862b osd_req_decode_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x355bcf6d osd_req_add_set_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x41ef039e osd_req_create_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4bf0d107 osd_req_read_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5725cd28 osd_req_remove_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x670c28f6 osd_req_get_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x70c2e4b2 osd_req_add_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x71cfea74 osd_req_list_dev_partitions -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x78e7b5b8 osd_req_list_collection_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7a846967 osd_end_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7b57fdd2 osd_req_write -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x868a2ad8 osd_req_flush_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x891bb254 osd_req_remove_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x98712148 osd_start_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa2e709a4 osd_req_read_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa9d620f2 osd_req_list_partition_collections -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb3f25ac4 osd_execute_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc4820d31 osd_dev_init -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcd21e910 osd_req_flush_collection -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcf7f3217 osd_req_set_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdc4652f0 osd_req_format -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe72d9049 osd_dev_fini -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf45e0208 osd_req_list_partition_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf535ef35 osd_req_read_kern -EXPORT_SYMBOL drivers/scsi/osd/osd 0x3fe9a85b osduld_info_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0x8f400218 osduld_put_device -EXPORT_SYMBOL drivers/scsi/osd/osd 0xb0e516db osduld_register_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0xb663afa0 osduld_device_same -EXPORT_SYMBOL drivers/scsi/osd/osd 0xbd0bf147 osduld_path_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0xd3f90155 osduld_device_info -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x05895ab4 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0d79c3b8 qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x19a8d60d qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x33ad1085 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5e7550f8 qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x78c57ca3 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9c53fea5 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xaa34f773 qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc1bc14ae qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc4fd97c6 qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe87d14d2 qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf0336d88 qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/raid_class 0x98655a42 raid_component_add -EXPORT_SYMBOL drivers/scsi/raid_class 0xc3a4d13a raid_class_release -EXPORT_SYMBOL drivers/scsi/raid_class 0xd30dc501 raid_class_attach -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x116abc92 fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4adee0e6 fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5a49c407 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x73113c4d fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x839806ce scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x88ccd2e5 scsi_is_fc_vport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9c19c329 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xac08c107 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xad74cf77 fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbb82c3ae fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe95b22b1 fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe99b3bd4 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf3902975 fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0d1d02d4 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x12ebfa11 sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x20644434 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x22e7477d sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3567bf7b scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x447da373 scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x59c47cff sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5c857f28 sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6996f469 sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x699c87d0 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6bb0688d sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6e029f81 sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x732954e5 sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x85e791c0 sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x88aeaf93 sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x919c62fe sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x92da879c sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x99b74471 sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9c024ee1 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaf7700f3 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbee7a093 sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd445be77 sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd7514c90 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe0275412 sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe1e48732 sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe7284264 sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf457c36e sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfd4974d8 scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x1ba554f8 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x5cc028b0 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x6e96fd61 spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7213f090 spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xfe9cc779 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x4972ca07 srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x927afc85 srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xc953d921 srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xd9ca11e8 srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x2181d86d ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x451a925c ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x68da788a ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x95be8a4f ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xe68bb4a4 ufshcd_runtime_idle -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xeb1c9c26 ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xed17233c ufshcd_system_resume -EXPORT_SYMBOL drivers/soc/qcom/smd 0x2e996120 qcom_smd_driver_unregister -EXPORT_SYMBOL drivers/soc/qcom/smd 0x71d06a16 qcom_smd_driver_register -EXPORT_SYMBOL drivers/soc/qcom/smd 0xeda44e54 qcom_smd_send -EXPORT_SYMBOL drivers/soc/qcom/smd-rpm 0xad43c23b qcom_rpm_smd_write -EXPORT_SYMBOL drivers/soc/qcom/smem 0x34b57571 qcom_smem_alloc -EXPORT_SYMBOL drivers/soc/qcom/smem 0x5a710273 qcom_smem_get_free_space -EXPORT_SYMBOL drivers/soc/qcom/smem 0xeeffa750 qcom_smem_get -EXPORT_SYMBOL drivers/ssb/ssb 0x12547fec ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x1f2b24c1 ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x28818240 ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0x2a72ebe1 ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0x4298a110 ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0x5a7350f5 ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0x650dd6f0 ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x6588816f ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0x699f79f7 ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0x6d5b1c2a __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0x6fcdf2e6 ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0x8da144a1 ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0xa097e411 ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0xa2fbe02d ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0xa95b0196 ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0xadf35615 ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0xb2352201 ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xc4d1d391 ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xd821913a ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0xfbb6eecd ssb_clockspeed -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0573f6fa fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x250a7b37 fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2bc6171b fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2da7dc66 fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2dc6fed6 fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x308c936f fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x318cde33 fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x42374b54 fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x56e689f9 fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7961633e fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x79c5d74a fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7e23ed69 fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x81d10762 fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x83c48d3f fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x910c2a8a fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x942e1f95 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x95603b50 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9993ebd1 fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9a759e50 fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa3c6e319 fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd39fd50b fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xde2d763c fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe6e10573 fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf04c12e5 fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x0c0e9e52 dprc_get_obj_irq -EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x0d4b8087 dprc_close -EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x30ced9d8 dpbp_get_attributes -EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x3b4e4ed3 dprc_get_obj_count -EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x3c30113e dprc_get_obj -EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x50b7f056 mc_send_command -EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x56428ba0 dpbp_close -EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x67aa6df5 dprc_get_res_count -EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x81aaa963 dprc_get_res_ids -EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x8ac8eaea dprc_open -EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x8b7e3339 dprc_get_obj_desc -EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x9d13e466 dprc_set_obj_label -EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0xc6905330 dpbp_enable -EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0xcdd17563 dpbp_disable -EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0xd524ad42 dprc_set_obj_irq -EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0xdc3a4cee dprc_get_obj_region -EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0xfb09f7e9 dpbp_open -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xe8651d9b fwtty_port_put -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xfb8ac98e fwtty_port_get -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x852a949f adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x0cba70ea hmc5843_common_suspend -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x3f05fe15 hmc5843_common_resume -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x7284e676 hmc5843_common_probe -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xc0619d6d hmc5843_common_remove -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xbbf6ac80 ade7854_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xc4f3b75f ade7854_remove -EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0x15b931b5 cxd2099_attach -EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x82ed4b33 most_deliver_netinfo -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x04dfee56 rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0d597f25 rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1748fbe5 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x186671f7 free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x19e24667 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x20043813 rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x244dbbd2 rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x25e1c804 rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2c4985a6 rtllib_wpa_supplicant_ioctl -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2d986c3d notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2e59b3a5 rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2ec0c839 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2f12872f rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x370eac7c rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3ee3c36f rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3f08d8fa rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4312cf05 rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x478be33f rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x53e3cdc9 rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x54e78c04 rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x556880be rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5e6107a5 rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x61f7b760 rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x66fbae67 rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x671e4bbd rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7009914b rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x74e75a56 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7aa3e899 rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7e318640 HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fdcb5c9 rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x82e8a456 rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8723354e rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x87bce58b dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8f92969c rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9cceeefd rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb24e3982 rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc382413a rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc8d653c1 rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcb61e5ef RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcfb60ada alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd20e4e2c rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd446724d rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd489490d rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdac15f9e rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xddcd4699 rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe59cc4d1 Dot11d_Channelmap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe8d52537 rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xefa1b399 rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfbadbcee rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfcbd0bc1 rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x007a9f81 ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x07bdfff0 ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f099f61 ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x11bc0f04 DOT11D_ScanComplete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x122d170b ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1353b957 ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x142951ab Dot11d_Reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x184f87d9 ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x18dcdb85 ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x22f241cc ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x262eba06 ToLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x264a3d04 ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x32726ab3 ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3a61a00e ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3d0005cb Dot11d_Init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3e7f4c76 ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x40eaf2d4 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x42fb8c8a ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x47702d1b ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4a74864a SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5d06c482 ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5e915975 ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61ea895d ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x63025cab ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x688d3e79 ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x68b4974a ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6f1aa354 ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x74fe4706 ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7ba418af ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8a58b401 ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9021c187 HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x91f84ca0 DOT11D_GetMaxTxPwrInDbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9360c93e ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa1586d9b ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa333d0e6 IsLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa6776ca2 ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xab41cf2d ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaba14090 ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaeb02077 ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb3b7701c ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbdfbb0f1 ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc40dc05a ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc4ed4fe7 ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc659e1f6 Dot11d_UpdateCountryIe -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcb5b827d ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd72a14fa ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd78f74f5 ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdda9eb8c ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe36c4a57 ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe6cc7346 ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe73f6cc4 ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xedbcd8b0 ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf11fdf75 ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf80edbf2 ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf9abe085 ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x02008ed7 iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x08140190 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0be0f8d2 iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1500f043 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1f096056 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x25ce9b90 iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2624f663 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x27f41380 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x29a69bbc iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x37c5986c iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5d68cfd2 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x660a8b6a iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x66764b97 iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6699bcb4 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x724c94a3 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7420cdfd iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x769d2607 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x84d58349 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x85be45f0 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x95b40c58 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x98d71439 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa73a4241 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xce659c59 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd619a36b iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe07a32a4 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xeb40c467 iscsit_set_unsoliticed_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfc0cf95f iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfec9215b iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/target_core_mod 0x01b1f9da target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x02248371 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0b88db62 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x0d6ab11c sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x0f5997f6 target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x176013bb target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x23df691b sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0x288b2202 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x28f9df67 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x2c832d13 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x355863a6 target_get_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x37e09aa8 target_submit_cmd_map_sgls -EXPORT_SYMBOL drivers/target/target_core_mod 0x3b7cec8f sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x404c1c4d target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x496f782c core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x4a058fd8 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0x4cbe1685 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x4ea9088b transport_init_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x5d3941ca core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x6015bbbb core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x62847277 target_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x65778f7f transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x674d1e98 transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x6dfb5107 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x6e14fe21 target_setup_cmd_from_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x6e3811d2 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x72dd3743 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x74f0a467 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x768b714e target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x83f060a6 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x869405a7 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x88a45447 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0x8e68007c transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x8fabf361 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x9007ede0 target_sess_cmd_list_set_waiting -EXPORT_SYMBOL drivers/target/target_core_mod 0x95055ad6 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x9647e1e0 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x96972fe5 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x9699de53 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x96e13b35 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x9cf9d2dc transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x9e77d215 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0xa1811822 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0xa213beb3 core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xab29da3c transport_init_se_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xc02ad11d transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xc0a0e5be target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xc65d1613 target_put_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xc8a3c084 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0xcb4cd91f target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0xcf3c22ab transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xd42d2225 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xd829325d spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0xda557334 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0xdb6d0a13 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xdcbcfd92 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0xde0f1705 core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0xde691d27 transport_check_aborted_status -EXPORT_SYMBOL drivers/target/target_core_mod 0xe002f9ae passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xe011a9f0 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xe5cfe445 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xe762c5bd target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xe8a79442 target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0xea8838c7 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf120ab8e transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xf460b216 transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xf49a28af target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xfd3fa730 transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0xfd79a270 core_tpg_register -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xf4d17249 usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xde5922f6 usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xdbaf3b79 sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x098fcf81 usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1e0b1c2f usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x418ccc7f usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5812aab6 usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6c7b9fba usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7e0eafa1 usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9e55a634 usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa8ad1626 usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xce6b53de usb_wwan_ioctl -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe454017a usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xeb1dc315 usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xedcfbb18 usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xdb3e7de2 usb_serial_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xdb8c32f9 usb_serial_resume -EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user -EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user -EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user -EXPORT_SYMBOL drivers/vhost/vringh 0x3c71c418 vringh_getdesc_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user -EXPORT_SYMBOL drivers/vhost/vringh 0x5fedea44 vringh_getdesc_user -EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user -EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user -EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user -EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern -EXPORT_SYMBOL drivers/video/backlight/lcd 0x184e67ea lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x88c2a0c3 lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xa842f975 devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xf0b50465 devm_lcd_device_register -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0bef4e5a svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x24af617f svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x29f59579 svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x90c00d86 svga_tilecopy -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x96011855 svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xea4d426d svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xefe70aa7 svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0xc13be042 sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xca9884bb sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x9eedb63e sys_imageblit -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xe74582fc cyber2000fb_attach -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x0f0e37c7 mac_find_mode -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x14b8d985 matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x7a3548d7 g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x9148996d matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x1e1b80ca DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x3a1f3198 matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x85c51529 DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x8c7c5077 matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x58c91cf8 matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xf8fad5d1 matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x242db557 matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x4e4e53ea matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xb05d164b matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xda14eaf9 matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x56204391 matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xda971e35 matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x4ff2c55e matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x6be2577e matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xa55d026c matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xc531f1de matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xe3b8d790 matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x5689dbee mb862xxfb_init_accel -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free -EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga -EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x219dd14e w1_ds2760_read -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x257deb16 w1_ds2760_store_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x26551efd w1_ds2760_recall_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x2bf24bb4 w1_ds2760_write -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x70a8c574 w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x83186466 w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xc58aa3dc w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xdff0d341 w1_ds2781_io -EXPORT_SYMBOL drivers/w1/wire 0x107b9068 w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0x3af9e042 w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0x4e54b0e0 w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0xa8504c92 w1_add_master_device -EXPORT_SYMBOL fs/configfs/configfs 0x10308adb config_group_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0x2a9362d4 config_group_init -EXPORT_SYMBOL fs/configfs/configfs 0x36c87d3b config_item_put -EXPORT_SYMBOL fs/configfs/configfs 0x54bffb45 configfs_unregister_group -EXPORT_SYMBOL fs/configfs/configfs 0x59da897d config_item_set_name -EXPORT_SYMBOL fs/configfs/configfs 0x600044bf configfs_register_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0x6bddcff4 config_group_find_item -EXPORT_SYMBOL fs/configfs/configfs 0x7e6b4ee7 configfs_unregister_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0xae8de802 configfs_register_default_group -EXPORT_SYMBOL fs/configfs/configfs 0xbe95e1a7 configfs_depend_item -EXPORT_SYMBOL fs/configfs/configfs 0xc65ed1cd config_item_get -EXPORT_SYMBOL fs/configfs/configfs 0xe39c9a98 config_item_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0xe3dc59c1 configfs_unregister_default_group -EXPORT_SYMBOL fs/configfs/configfs 0xefd4d534 configfs_undepend_item -EXPORT_SYMBOL fs/configfs/configfs 0xf0b7c61d configfs_register_group -EXPORT_SYMBOL fs/exofs/libore 0x001f32da ore_get_rw_state -EXPORT_SYMBOL fs/exofs/libore 0x13fb7c5d ore_truncate -EXPORT_SYMBOL fs/exofs/libore 0x1a024d34 extract_attr_from_ios -EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout -EXPORT_SYMBOL fs/exofs/libore 0x33ddace9 ore_create -EXPORT_SYMBOL fs/exofs/libore 0x3e3890b9 ore_remove -EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info -EXPORT_SYMBOL fs/exofs/libore 0x6018c511 ore_get_io_state -EXPORT_SYMBOL fs/exofs/libore 0x764ae434 ore_check_io -EXPORT_SYMBOL fs/exofs/libore 0x984a3612 ore_read -EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length -EXPORT_SYMBOL fs/exofs/libore 0xe35f9955 ore_write -EXPORT_SYMBOL fs/exofs/libore 0xfe76f7ae ore_put_io_state -EXPORT_SYMBOL fs/fscache/fscache 0x00a71d8b fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0x05fea6c0 __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x07526854 __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0x0fb04687 __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0x1efc3651 __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0x20b683c8 __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x2cfb4429 fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0x4a1675cb __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0x55073bf3 fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0x5a6f06c1 fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0x6b9111db __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x6db6aa6a __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x6f1f9797 __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0x7128298d __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x72ddb308 fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x774d2bd9 fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0x7afb6da2 __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x841510b7 fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0x89ddf9e7 __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x932dabe2 fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0x9e03b130 fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0xa12ab2b6 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0xa1b476d1 __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xa1d4afe4 fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0xa5662b0f fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0xaa75e916 __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0xb88c607f fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0xbf5f9b99 __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xc041ab33 fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0xc2ef5895 __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0xc31b9571 __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0xc7d7b563 fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0xc901cdbb __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xd2d7e730 fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0xd3997f1a fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0xda94e54b fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0xdfd99772 __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xe7aaad47 __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0xebe944e4 fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0xf1e452ad __fscache_uncache_page -EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x3e1aa8e6 qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x406e1010 qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0x7babe5b3 qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x9466462c qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xde5e3877 qtree_write_dquot -EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq -EXPORT_SYMBOL lib/crc-ccitt 0x1a703ba1 crc_ccitt -EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table -EXPORT_SYMBOL lib/crc-itu-t 0x6d356209 crc_itu_t -EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table -EXPORT_SYMBOL lib/crc7 0x56329ecc crc7_be -EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table -EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb -EXPORT_SYMBOL lib/crc8 0xd09b2cba crc8 -EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb -EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c -EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy -EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get -EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed -EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of -EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset -EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used -EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del -EXPORT_SYMBOL lib/lru_cache 0x66013ee8 lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get -EXPORT_SYMBOL lib/lru_cache 0x962cff93 lc_seq_dump_details -EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create -EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock -EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set -EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find -EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put -EXPORT_SYMBOL lib/lz4/lz4_compress 0x0c222eb5 lz4_compress -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x682a23e0 lz4hc_compress -EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul -EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp -EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv -EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page -EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi -EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul -EXPORT_SYMBOL net/6lowpan/6lowpan 0x47d8947b lowpan_netdev_setup -EXPORT_SYMBOL net/6lowpan/6lowpan 0x90556d75 lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0xd9a3a74d lowpan_nhc_del -EXPORT_SYMBOL net/802/p8022 0x040dfd6c unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0x2ed79ecf register_8022_client -EXPORT_SYMBOL net/802/p8023 0x4ea4c37f make_8023_client -EXPORT_SYMBOL net/802/p8023 0xf7250b03 destroy_8023_client -EXPORT_SYMBOL net/802/psnap 0xafc5b8e1 register_snap_client -EXPORT_SYMBOL net/802/psnap 0xfd3b2005 unregister_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x05944997 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x064101b9 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0x0c4e9052 p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x0ce2d440 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x0d096014 p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x12fce7cc p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x270e89fe p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x2989b8a6 p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0x2fca17b8 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get -EXPORT_SYMBOL net/9p/9pnet 0x3aeaa2d6 p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x3aebf48f p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0x3c57a25e p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x3e60c96c p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0x41cd9af4 p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0x4b88a9e7 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x4e478c60 v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0x5a9b4463 p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0x5ab06cd2 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x6458d1ca p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x65db6f68 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0x69e4d643 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x6b2f6ff5 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x730151d3 p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x73f48e6d v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0x807940be p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x8d3f8cbc p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0xa492bd09 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0xaf7180cb p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0xb23ab07f p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0xba2c0084 p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0xba337750 p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0xba6645e7 p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy -EXPORT_SYMBOL net/9p/9pnet 0xda1b3138 p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0xdaff14bb p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0xde904a65 p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0xe15a005f p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0xe2b05e19 v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0xe4eb63e7 p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xe81df48c p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0xe8bbffde p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create -EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put -EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check -EXPORT_SYMBOL net/9p/9pnet 0xfd99b53c p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0xfdfecd4e p9_client_open -EXPORT_SYMBOL net/appletalk/appletalk 0x0896f633 aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0x59628894 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0x9e567c79 alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0xd3bc6012 atrtr_get_dev -EXPORT_SYMBOL net/atm/atm 0x0247e223 atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0x0c80be79 vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0x1f6c769f atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x317305e5 register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x3e6cc419 vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x4fe2aa52 atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0x543ed713 atm_dev_register -EXPORT_SYMBOL net/atm/atm 0x68e715ce vcc_release_async -EXPORT_SYMBOL net/atm/atm 0x6f3b429a atm_charge -EXPORT_SYMBOL net/atm/atm 0x8dd25d71 atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0x93c9c05f deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xab092240 atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0xae053b2d atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/atm/atm 0xfac5ae25 vcc_sklist_lock -EXPORT_SYMBOL net/ax25/ax25 0x07839c86 ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x3955b755 ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x65e990bb ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0x8b258eea ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0x8fa5e4dd ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x99554f4f ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0xa1268043 ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0xbf76884b ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/bluetooth/bluetooth 0x01739949 l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1104c07c hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1d888ce7 bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0x263862f7 hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2ce8689e bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2d1317d6 bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2d3ac069 hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0x35e82776 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3994133f bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3ae1ddcd bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err -EXPORT_SYMBOL net/bluetooth/bluetooth 0x50e7e37d hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x56066173 bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5d3c5afb hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x78750a77 hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8518b6a0 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8a276cc1 hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8aed763a hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9955635d __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x99e54422 bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0acfc28 bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb2ce2ce0 l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb6c81fbc hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb7313613 bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbeb84f10 hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbf08b2d2 hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbf3f0c8c bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc13693c6 hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc2d1891c l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc70bc522 bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd477b05f hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd60c27f8 l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd852a646 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xda23e053 hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdd1ec6a7 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe0d8aa2a l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe203857d bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe899e692 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe90d5c76 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xee46df6f hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf8ed77b9 __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfc9a65ec hci_alloc_dev -EXPORT_SYMBOL net/bridge/bridge 0x33eb1b0f br_should_route_hook -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x80a87de3 ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xc8f1f88c ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xf9310f3c ebt_register_table -EXPORT_SYMBOL net/caif/caif 0x03825a9c cfcnfg_add_phy_layer -EXPORT_SYMBOL net/caif/caif 0x080fee96 caif_enroll_dev -EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x17675d14 caif_disconnect_client -EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative -EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info -EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer -EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head -EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x93290aba get_cfcnfg -EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head -EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio -EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xf0c17a34 caif_connect_client -EXPORT_SYMBOL net/can/can 0x7433c8d8 can_ioctl -EXPORT_SYMBOL net/can/can 0x94745d06 can_proto_unregister -EXPORT_SYMBOL net/can/can 0x9839dc57 can_send -EXPORT_SYMBOL net/can/can 0xa14382f5 can_rx_register -EXPORT_SYMBOL net/can/can 0xafa10295 can_proto_register -EXPORT_SYMBOL net/can/can 0xbd0cfcbc can_rx_unregister -EXPORT_SYMBOL net/ceph/libceph 0x0246ad30 ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x03137561 __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x06957aa7 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0x06e2d6e2 ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x07ec6cb4 ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init -EXPORT_SYMBOL net/ceph/libceph 0x0e63407e ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x0f9d6892 ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x13e80e5e osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x15e7b50a ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0x1dde3b53 ceph_osdc_cancel_event -EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup -EXPORT_SYMBOL net/ceph/libceph 0x20e8e7df ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0x21c60751 ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x24d897df ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x2ab5b926 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x2cbab4b2 ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0x3372afe8 ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x35781689 ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0x367d8976 ceph_osdc_create_event -EXPORT_SYMBOL net/ceph/libceph 0x381dc782 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0x38ed41fc ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0x3923aeb3 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x3e5004c1 ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0x3e861130 ceph_osdc_build_request -EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options -EXPORT_SYMBOL net/ceph/libceph 0x419cb09b ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part -EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0x452e825a osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x507f0b2f osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x5141883c ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode -EXPORT_SYMBOL net/ceph/libceph 0x54f4f3e3 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0x551910c6 ceph_get_direct_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x55ebaa25 ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0x5659ec9a ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x57ebb07e ceph_monc_do_get_version -EXPORT_SYMBOL net/ceph/libceph 0x5d291c2a ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0x5e211ed8 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x5ed04b7a ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x62ec8ca2 ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x662b642a ceph_oloc_oid_to_pg -EXPORT_SYMBOL net/ceph/libceph 0x6881b9f0 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0x68f475a6 osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x6b3a387e ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x6caf676e ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x6d3fb2e4 osd_req_op_cls_response_data -EXPORT_SYMBOL net/ceph/libceph 0x6fcdafef ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0x7ba9c586 ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0x7f27a8f0 ceph_monc_got_mdsmap -EXPORT_SYMBOL net/ceph/libceph 0x80173f12 osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0x80ffb3cb ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x8a1e02ad ceph_client_id -EXPORT_SYMBOL net/ceph/libceph 0x8d112171 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x8f0b7762 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x9277f2f6 ceph_osdc_set_request_linger -EXPORT_SYMBOL net/ceph/libceph 0x931a67b5 ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x96095613 ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup -EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xa00733e6 ceph_monc_request_next_osdmap -EXPORT_SYMBOL net/ceph/libceph 0xa28dbbd2 osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0xa7baf98c ceph_messenger_init -EXPORT_SYMBOL net/ceph/libceph 0xa8985eae ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xaf618dcf osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xafc99f4e ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0xb078682b ceph_calc_pg_primary -EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb593d781 osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit -EXPORT_SYMBOL net/ceph/libceph 0xb92a6b9b ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0xbb38bcf3 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0xbb7636b5 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup -EXPORT_SYMBOL net/ceph/libceph 0xc5ade625 osd_req_op_watch_init -EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init -EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips -EXPORT_SYMBOL net/ceph/libceph 0xd1c2797e ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode -EXPORT_SYMBOL net/ceph/libceph 0xd2e00cd4 ceph_osdc_put_event -EXPORT_SYMBOL net/ceph/libceph 0xd606b4d0 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0xd7acd83f ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xda66cf8f ceph_messenger_fini -EXPORT_SYMBOL net/ceph/libceph 0xe187afca ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0xe2f56ac1 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0xe36d68c9 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0xe3b042ca ceph_pagelist_append -EXPORT_SYMBOL net/ceph/libceph 0xe4907790 ceph_osdc_writepages -EXPORT_SYMBOL net/ceph/libceph 0xe58ed115 ceph_auth_create_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xeafb73f4 osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xeb3f5757 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xf2c47a79 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0xf35cb4d9 ceph_pagelist_reserve -EXPORT_SYMBOL net/ceph/libceph 0xf47574c9 ceph_osdc_readpages -EXPORT_SYMBOL net/ceph/libceph 0xf566f6eb ceph_auth_update_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xf5747cc8 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0xf691dda3 ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xf69e15d3 osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0xf9419fe0 ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xfe94ca7b ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0xfea59f0b ceph_osdc_wait_request -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x0ce64f28 dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x3315400d dccp_req_err -EXPORT_SYMBOL net/ieee802154/ieee802154 0x15709215 wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0x733181f6 wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0x89415c1e wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0xdf651355 wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0xdf7cb3f8 wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0xfb71199d wpan_phy_new -EXPORT_SYMBOL net/ipv4/fou 0x3106aeb4 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x8f0f0505 fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0xcc4d9241 gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0xd0750778 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x133922e8 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x985d709f ip_tunnel_encap -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xad3062c9 ip_tunnel_dst_reset_all -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xc8599787 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xcd68f6d2 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xd9b04bdd ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xa6712ea0 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xd1001815 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xe27992f3 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x739630df ipt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x76262b1e ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x8f1d3088 ipt_register_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x82eba498 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/tunnel4 0xfa2163da xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/udp_tunnel 0xf4ea4824 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x49476c09 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5905f35a ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xaa7fe47e ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xcd27f5f4 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x623d54ca ip6t_unregister_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xf675dde4 ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xfac276f4 ip6t_register_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x0b5d081f xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0xc003965c xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x872646aa xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xd773f2be xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x42f1c1e8 ircomm_connect_response -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x4ded5bad ircomm_connect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x71935a57 ircomm_close -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x719e36c4 ircomm_disconnect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xb4e2f14c ircomm_flow_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xd80514f7 ircomm_open -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xdd85aa43 ircomm_control_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xf4fbf19a ircomm_data_request -EXPORT_SYMBOL net/irda/irda 0x01590a8b irias_delete_object -EXPORT_SYMBOL net/irda/irda 0x041570a9 irias_insert_object -EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value -EXPORT_SYMBOL net/irda/irda 0x07015ee1 hashbin_delete -EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service -EXPORT_SYMBOL net/irda/irda 0x14bc139d irlmp_connect_response -EXPORT_SYMBOL net/irda/irda 0x1a30ebf6 irttp_flow_request -EXPORT_SYMBOL net/irda/irda 0x1a9f11b6 hashbin_get_first -EXPORT_SYMBOL net/irda/irda 0x2a17732a hashbin_insert -EXPORT_SYMBOL net/irda/irda 0x2d8e87d4 irlmp_close_lsap -EXPORT_SYMBOL net/irda/irda 0x3144eade irttp_data_request -EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda -EXPORT_SYMBOL net/irda/irda 0x3601261a iriap_getvaluebyclass_request -EXPORT_SYMBOL net/irda/irda 0x3bdef7d7 iriap_close -EXPORT_SYMBOL net/irda/irda 0x40f1e4f5 irda_device_set_media_busy -EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value -EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service -EXPORT_SYMBOL net/irda/irda 0x4fe77ce2 irttp_dup -EXPORT_SYMBOL net/irda/irda 0x56b99f6a hashbin_new -EXPORT_SYMBOL net/irda/irda 0x5dc104f2 irttp_udata_request -EXPORT_SYMBOL net/irda/irda 0x68e5fb46 irttp_connect_request -EXPORT_SYMBOL net/irda/irda 0x69c5b563 irttp_open_tsap -EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies -EXPORT_SYMBOL net/irda/irda 0x6b7f50b3 hashbin_find -EXPORT_SYMBOL net/irda/irda 0x6ef49791 irttp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client -EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client -EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client -EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert -EXPORT_SYMBOL net/irda/irda 0x8643c584 irlmp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0x8a5255b9 irlmp_open_lsap -EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack -EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all -EXPORT_SYMBOL net/irda/irda 0x9516f690 irias_add_integer_attrib -EXPORT_SYMBOL net/irda/irda 0xa2896b18 irttp_close_tsap -EXPORT_SYMBOL net/irda/irda 0xaad2d90a irias_find_object -EXPORT_SYMBOL net/irda/irda 0xaec635e4 irias_add_octseq_attrib -EXPORT_SYMBOL net/irda/irda 0xb56220af irlap_open -EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value -EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute -EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request -EXPORT_SYMBOL net/irda/irda 0xbed791e9 irlmp_data_request -EXPORT_SYMBOL net/irda/irda 0xcb070985 iriap_open -EXPORT_SYMBOL net/irda/irda 0xcb157eb1 async_unwrap_char -EXPORT_SYMBOL net/irda/irda 0xcb3fdc28 async_wrap_skb -EXPORT_SYMBOL net/irda/irda 0xd007b2a9 irda_notify_init -EXPORT_SYMBOL net/irda/irda 0xd22e8861 irias_add_string_attrib -EXPORT_SYMBOL net/irda/irda 0xd4dce920 irlap_close -EXPORT_SYMBOL net/irda/irda 0xd7702e20 irias_new_object -EXPORT_SYMBOL net/irda/irda 0xdd988ce6 hashbin_lock_find -EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint -EXPORT_SYMBOL net/irda/irda 0xe58ba397 hashbin_get_next -EXPORT_SYMBOL net/irda/irda 0xe73d5e4b alloc_irdadev -EXPORT_SYMBOL net/irda/irda 0xe7aa593d hashbin_remove_this -EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries -EXPORT_SYMBOL net/irda/irda 0xee8ba40d irttp_connect_response -EXPORT_SYMBOL net/irda/irda 0xf0f25ffe hashbin_remove -EXPORT_SYMBOL net/irda/irda 0xfaed9abd irlmp_connect_request -EXPORT_SYMBOL net/l2tp/l2tp_core 0x972386a7 l2tp_recv_common -EXPORT_SYMBOL net/l2tp/l2tp_ip 0x5da4ba29 l2tp_ioctl -EXPORT_SYMBOL net/lapb/lapb 0x09a93629 lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0x0bdad3f1 lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0x36d8bfb0 lapb_register -EXPORT_SYMBOL net/lapb/lapb 0x4456f3d5 lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0x4e5ed00d lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0x929473d5 lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0xb37b0dca lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0xd664cd05 lapb_data_request -EXPORT_SYMBOL net/llc/llc 0x01a63cb8 llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x6c6a9cb0 llc_sap_find -EXPORT_SYMBOL net/llc/llc 0x75e9fbae llc_sap_close -EXPORT_SYMBOL net/llc/llc 0x9817f1dc llc_sap_open -EXPORT_SYMBOL net/llc/llc 0xa1c6cfa2 llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0xc4558207 llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0xd43a8cf9 llc_add_pack -EXPORT_SYMBOL net/mac80211/mac80211 0x00263371 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0x04472cc9 ieee80211_csa_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0x095cef25 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x0bd609f2 ieee80211_get_key_tx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x0bd6d9fd ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x140f0cd2 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x15f927d5 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x16446521 __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x187e486d ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0x1aa5a4cd __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x251c4c23 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x2baa58bc ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x2d8a40ad ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x2de20a8d ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x2e237cf4 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0x32bd7355 ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x395f288f ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x3e1df205 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x419c0202 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x4244f8f9 ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x44d5986d ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0x471bc25c ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x4c2b011a ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x4ca21c59 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0x4d41fec2 rate_control_send_low -EXPORT_SYMBOL net/mac80211/mac80211 0x4ec22038 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0x51f05b9d ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x55f97e4f ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x5feabf83 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x6277d9e0 ieee80211_start_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x6343c42c ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x63627d7c ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0x64e0074b __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x64eeb642 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x666fe7d9 ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x6b38ce0e ieee80211_tx_status_noskb -EXPORT_SYMBOL net/mac80211/mac80211 0x6b7d0ad6 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x75a0ad28 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x7ef93b81 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x83e6f248 ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0x8892e9fc wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x89e18fb6 ieee80211_csa_update_counter -EXPORT_SYMBOL net/mac80211/mac80211 0x8f3c8c74 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x92fe6bec ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0x937f89c0 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0x958b2bd6 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x9736ba76 ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0x990da89b ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0x99f125ea ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x9bda0bbd ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x9e0829fa ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0x9fa2c575 ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xa4bf97c9 ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0xa88236fa ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xac8fafb2 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xb5ca2038 ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0xb837f7b4 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xb86968f0 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xb8db45dd ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0xbb7794f0 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xbcbc0185 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0xbec244f5 ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xcae727f5 ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xd309c4ac ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0xd91d332b ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xd998d2b7 ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0xdb313c81 ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xdbd65952 ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0xddc37a00 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xdfba5229 ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xea690bc8 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0xeaf1b1da ieee80211_stop_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0xeba8d804 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xed395a09 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xeee54ee9 ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0xf1bd2e8a ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xf3349661 ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xf6f495a2 ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0xf9644fbf ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0xfb3274df ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0xfcaf9dea ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xff209d75 rate_control_set_rates -EXPORT_SYMBOL net/mac802154/mac802154 0x22e02a09 ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x89fc741d ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x8cf2e1c7 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x8dbc4aa9 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x8ea39da8 ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0xbbd25a38 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0xd0e84785 ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xfe845769 ieee802154_register_hw -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0aec7943 ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1033b41f ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2f9f97a1 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x344bfe59 ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x47428bfb unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x62b7c22b unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x916d9a47 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xadbef28b ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb532c463 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc5d24134 register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcfc79caf ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd3ed9681 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xde6771c8 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe0767cc6 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x6408a299 __nf_ct_ext_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xa6db7798 __nf_ct_ext_add_length -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xa9ee70ee nf_conntrack_untracked -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x175dd554 nf_xfrm_me_harder -EXPORT_SYMBOL net/netfilter/nf_nat 0x4c427932 __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x52bafc08 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x61fee3c4 nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0xb0b3e260 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0xc663bc44 nf_nat_used_tuple -EXPORT_SYMBOL net/netfilter/x_tables 0x253e8b44 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x5a8af882 xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0x74e85f5a xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0x8e0d9621 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0x8f5ec11f xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0x90dd0a5c xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xa67bee1e xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xbadb9f87 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0xbb1899cd xt_find_target -EXPORT_SYMBOL net/netfilter/x_tables 0xd22365ff xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xea8c2137 xt_register_matches -EXPORT_SYMBOL net/nfc/hci/hci 0x0b5ac931 nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x0e8af1cd nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0x1ec62fb8 nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x29f00141 nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x554ad01b nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0x56ab66ad nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x57848a3a nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0x58658d66 nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0x70916086 nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0x7389137d nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0x8c83c3ae nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x9c586c61 nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0x9dff0827 nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xa2d0e730 nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0xa69c50f9 nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0xaf06aaaf nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0xb0243696 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0xb6dffc87 nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0xb768488f nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xe68bb4b2 nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0xef9b99ab nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0x124f30ee nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0x12eca36d nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x1df51052 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x2ddf61d0 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0x33f9fd3a nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x340e6e05 nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0x3d139542 nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0x4947830d nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x4cd0a3c4 nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x57130244 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0x6c0e7fa1 nci_get_conn_info_by_id -EXPORT_SYMBOL net/nfc/nci/nci 0x91c723d8 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0x97293dc5 nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0xa0fefc53 nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xba6afdea nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0xc53d3fe5 nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0xc5b6a17b nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0xc5d4d0ad nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0xcaf498ff nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0xd01f5ef0 nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0xd22ead5d nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xd288d779 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0xd3038d83 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0xd83e08c2 nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0xd845e2f5 nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0xd89dc717 nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0xe9ea957e nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0xf441725e nci_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0x19dd4d0b nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x1f29b56c nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x215e5538 nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0x2d326c33 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0x31f08cf4 nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0x3727483d nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0x55dd100c nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x5920e5a1 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0x6a02da5f nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0x6af1fd38 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0x7ccb13ea nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0x7e05abb1 nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0x8177862f nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x9105c230 nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0x95824821 nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0x9886262e nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x9e9dd1a2 nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0xa2cb986d nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0xddcd589c nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0xde95d3b8 nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0xdf005d97 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0xe111b208 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0xf1128148 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0xfbd6772e nfc_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x2ceb88f0 nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x9b6061f5 nfc_digital_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xb9af9249 nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xdeb38494 nfc_digital_free_device -EXPORT_SYMBOL net/phonet/phonet 0x05a33f91 pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0x0e09edce pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0x90fbf95d phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0x9b1ba158 phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0xbca941f5 phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0xc18f1b0d phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0xc1a0434b pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0xc64438de pn_sock_get_port -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1c6f4c6f rxrpc_kernel_accept_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1f4d5a5e rxrpc_kernel_get_error_number -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x30539739 rxrpc_kernel_reject_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x36399ca9 rxrpc_kernel_data_delivered -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x580bd2b4 rxrpc_kernel_is_data_last -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x5b2df7f9 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x5b6b8b7e rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x5dd19804 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x7a71431c key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x7abbbadf rxrpc_kernel_intercept_rx_messages -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xac9de06f rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xddda09de rxrpc_kernel_free_skb -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe031c804 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe6fdd797 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf3e24c17 rxrpc_kernel_get_abort_code -EXPORT_SYMBOL net/sctp/sctp 0x8271e318 sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x1083d5a9 gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x2c7b76ed gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x8008383c gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/sunrpc 0x0fb36dec svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0x1a3e28b2 xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0x97eddee7 xdr_truncate_encode -EXPORT_SYMBOL net/wimax/wimax 0x566a9f05 wimax_reset -EXPORT_SYMBOL net/wimax/wimax 0xe99de244 wimax_rfkill -EXPORT_SYMBOL net/wireless/cfg80211 0x04b4f452 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x08b232ea wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0x097e97c7 cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x0cda4f07 cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x1303ffe2 __ieee80211_get_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0x20b06ec4 cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x224341bd cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x22a9328a wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0x2ccb485e cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0x2d7a54b3 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0x33267b2e regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0x36f74bad cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x383130a2 cfg80211_report_obss_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x3884f829 cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x391d7b67 cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0x3b6238c3 cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x3e7c49b3 __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x41dbef55 regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0x46117129 cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x4c8dc8ae cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x4f8fc134 cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x511bba13 wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0x59a0fd0a cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x5a19f7f0 cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x5da83116 cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x5e1055fc cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0x621410e8 freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0x62c89ffd cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0x62d86ea8 cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x62fcd969 cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0x650f9a55 __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x695e48fc cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6a1d4f9a cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x6d46c3a5 cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0x7231b84d cfg80211_sched_scan_stopped_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x7233ee0e cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0x78fc39c3 cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x82ee8d99 cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x893ee283 cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x8d437ff9 cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0x8dc220a5 cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x8f2166ef ieee80211_data_from_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0x907a9d7b ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x91d7a142 ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x94a5a1d0 cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x98d75696 cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x98dcaf0c cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0x99100399 wiphy_rfkill_set_hw_state -EXPORT_SYMBOL net/wireless/cfg80211 0x9af16c35 cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0x9c28008c regulatory_set_wiphy_regd_sync_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x9e88227b cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x9ee05cca wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0x9f58babc ieee80211_data_to_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0xa086b70b cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xa13bdc86 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0xa1425906 ieee80211_channel_to_frequency -EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xa4071899 cfg80211_rx_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xa8bc3fa7 cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0xa8eb79ae cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0xb4a5454d cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xb8e8b40c cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0xb99196d1 ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0xbed92f12 cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0xc390f6cf cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xcb617c24 cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xcdb8ff2c wiphy_rfkill_stop_polling -EXPORT_SYMBOL net/wireless/cfg80211 0xd08ee186 cfg80211_connect_result -EXPORT_SYMBOL net/wireless/cfg80211 0xd0a0dd59 __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xd26237bd cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xd32cd76a cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0xd441a4b1 wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0xd50b0a22 ieee80211_ie_split -EXPORT_SYMBOL net/wireless/cfg80211 0xd592b32c cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xdaa3b17d cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdbc33b6b ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0xdcc4a542 cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0xe05d094d cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xe39a511f cfg80211_roamed_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xe86567ad cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0xeb1c64a2 cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xf210748e cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0xf40acfed wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0xf6cbc403 cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0xf9057cb0 cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xf96b3b89 cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie -EXPORT_SYMBOL net/wireless/lib80211 0x0fe1cba3 lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x1248cd05 lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0x3157110a lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x3dc64c8d lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0x6bbc57e7 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0xb7176201 lib80211_get_crypto_ops -EXPORT_SYMBOL sound/ac97_bus 0x8dfc1b74 ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x862ef513 snd_mixer_oss_ioctl_card -EXPORT_SYMBOL sound/core/seq/snd-seq 0x0b71eafb snd_seq_kernel_client_write_poll -EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6b857e9d snd_seq_kernel_client_enqueue_blocking -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0xa5d54981 snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xba5425db snd_seq_event_port_attach -EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x40cb43cc snd_seq_device_new -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x045df6a4 snd_midi_event_free -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x19644b06 snd_midi_event_reset_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x237c480c snd_midi_event_no_status -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x46d509d4 snd_midi_event_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x48501cc2 snd_midi_event_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x57427cce snd_midi_event_reset_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x6e4581b3 snd_midi_event_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xfdab5ab4 snd_midi_event_encode_byte -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xdeecbbe5 snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x01f633a8 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0x066f0e05 snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0x100064c9 snd_component_add -EXPORT_SYMBOL sound/core/snd 0x18cb6d60 snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0x1975bbd7 snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x2466b5fa snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x24b459ac snd_card_free -EXPORT_SYMBOL sound/core/snd 0x25b25b8a snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0x2646d82f snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0x2c151977 snd_register_device -EXPORT_SYMBOL sound/core/snd 0x2c3d75ba snd_device_new -EXPORT_SYMBOL sound/core/snd 0x2f22cd18 snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio -EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x42da9d74 snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0x43075bd8 snd_seq_root -EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x4c16355f snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0x50c16036 snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0x51d6de81 snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0x549080bf snd_jack_report -EXPORT_SYMBOL sound/core/snd 0x5a04c455 snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0x5c55ac50 snd_power_wait -EXPORT_SYMBOL sound/core/snd 0x5db5ed08 snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0x614b8af1 snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0x6adb44c7 snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0x730f4319 snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0x788d0a87 snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0x78cd55d8 snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0x7aabce70 snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0x86cb1746 snd_device_free -EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x9205da80 snd_ctl_register_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x9a119f5a snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0x9f2882ba snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id -EXPORT_SYMBOL sound/core/snd 0xa1613252 snd_jack_new -EXPORT_SYMBOL sound/core/snd 0xa211592e _snd_ctl_add_slave -EXPORT_SYMBOL sound/core/snd 0xa2a65cbf snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0xa438cf11 snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0xaffebd1e snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0xb182ec75 snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb85b5f05 snd_info_register -EXPORT_SYMBOL sound/core/snd 0xb94a8154 snd_device_register -EXPORT_SYMBOL sound/core/snd 0xb9828f58 snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0xbd0ab447 snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0xcd51e4b6 snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0xd459fa3a snd_card_new -EXPORT_SYMBOL sound/core/snd 0xd6e304bf snd_card_register -EXPORT_SYMBOL sound/core/snd 0xe40daf30 snd_cards -EXPORT_SYMBOL sound/core/snd 0xe9cbd617 snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0xf172019c snd_ctl_unregister_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0xf38ac0b9 snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio -EXPORT_SYMBOL sound/core/snd-hwdep 0x5a916377 snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any -EXPORT_SYMBOL sound/core/snd-pcm 0x02a99c94 snd_pcm_lib_writev -EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x06b310c9 snd_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x0b6443fd snd_pcm_mmap_data -EXPORT_SYMBOL sound/core/snd-pcm 0x0d4f1eb8 snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0x139c8c36 snd_pcm_notify -EXPORT_SYMBOL sound/core/snd-pcm 0x14ef1559 snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0x16980e26 snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x171fd1b1 snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0x1c143b2b snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x1d8d8310 snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x1d9675b9 snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0x1e7b5c57 snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0x24cb27b3 snd_pcm_lib_readv -EXPORT_SYMBOL sound/core/snd-pcm 0x283b8607 snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0x28aec7db snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0x336be025 snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0x376f5838 snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x3a40d471 snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x3b02948d snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x4d25b7c9 snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0x4d2cea2b _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL sound/core/snd-pcm 0x54bc7bf5 snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0x5898dcba snd_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL sound/core/snd-pcm 0x66f16b4c snd_pcm_lib_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width -EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x776ec92b snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x7923da30 snd_pcm_limit_hw_rates -EXPORT_SYMBOL sound/core/snd-pcm 0x7d9f8a27 snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x85638c8c snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0x87f4c758 snd_dma_alloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x8a9855cf snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0x9f5ca8e2 snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0xa3a82e54 snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xa5a75290 snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL sound/core/snd-pcm 0xa91315f9 snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xace741f2 snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xb1672a5a snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xdec55caf snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xe4c47b40 snd_pcm_hw_rule_noresample -EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xe7d722ea snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0xe9800e43 snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0xeb36a623 snd_pcm_new_internal -EXPORT_SYMBOL sound/core/snd-pcm 0xebbcd98e snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xec6e9442 snd_pcm_lib_read -EXPORT_SYMBOL sound/core/snd-pcm 0xf2258f85 snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0xf4507924 snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0xf6fdb4d2 snd_pcm_lib_write -EXPORT_SYMBOL sound/core/snd-pcm 0xfd479405 snd_pcm_suspend -EXPORT_SYMBOL sound/core/snd-pcm 0xfe8bf9dd snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x0afc573b snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1406319c snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0x2d5c5c7c __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x30b20718 snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0x335a11f2 snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x342f8f84 snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x3fcff5ab snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4bd0decf snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0x7d3fa06e snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x82105f3d __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x85032207 snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0x8f1dd052 snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x8f370b56 snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xa4cb514d snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xa54fdbdf snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0xba2fe1fd snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0xc2bd5dba snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0xc85e198c snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf155c464 snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-timer 0x112618d4 snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0x1fa8048c snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0x2bc37130 snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0x3fa9c3f5 snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0x5a277829 snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0x6fdbd449 snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0x92a800db snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0x9ac72ac5 snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0xb4894a54 snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0xceb79392 snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0xd89a3804 snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0xe75e4014 snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0xeb787c0b snd_timer_start -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x5d471c1f snd_mpu401_uart_new -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x057423fc snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4db75799 snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x58c7eb1a snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x67ea3cc9 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9c21d1d1 snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xdd7d0baa snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xdea6cdd3 snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe87a347c snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xfbf218cb snd_opl3_reset -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x209afa6a snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x273ff3f8 snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3732af3c snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x40c2e0fa snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5f8be155 snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x81e06557 snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xdf7b4055 snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xec6bd3c2 snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xfb7b61e1 snd_vx_dsp_boot -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x03f2b3d1 cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x07547e48 iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x103044fd cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x12d5c358 amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x16d7cd5d amdtp_stream_stop -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1dde4098 amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2daac36d amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2f06e733 avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x35b64121 amdtp_stream_start -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x35d8a38c avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3c3e3f76 snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3ef1eefe amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x49695b87 amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x52ae3154 snd_fw_async_midi_port_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5ba9da14 amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x60818674 avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x78c0d570 cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x809f2506 fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x826f39e7 cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x85898de9 amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaa0b838d cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaae9f1e2 fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb158d3ca amdtp_stream_pcm_pointer -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb4205baa fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xba705203 fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbf88ec68 fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc97c9af5 snd_fw_async_midi_port_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd3c6af03 amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdaa23b5f cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdf979567 iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe0f1c195 fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfe6bab6f fw_iso_resources_free -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x654acf4d snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xedd9cbcc snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2a95571f snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x43e09f45 snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x530eb348 snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x592e2102 snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7673b8b1 snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7f066c76 snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x8fa5ecad snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd8307a9d snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x36a6509a snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x3794c352 snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x8a9964d0 snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xce86d595 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x078fceea snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xad263096 snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x513acf0a snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x6344ac1e snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x77126288 snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xd1e4c27c snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xf0f83e93 snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xf83450f6 snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-i2c 0x2782f853 snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0x366cd597 snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0x4e0542c5 snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x56ee731d snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x6f3ba6a2 snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xcd060a21 snd_i2c_device_create -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0b106eb2 snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x113c255a snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x39ff3ddd snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3a257563 snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x47429fce snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4d36520b snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x60a53958 snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x639ca701 snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8bdfc3a3 snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x94e087c4 snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9c19e348 snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc35bfd5c snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc4619745 snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcd53d36b snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd72c6c72 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe76c9ad2 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfb8428b4 snd_ac97_bus -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1b11ad3e snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x2253ab3e snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x435ed957 snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x556a60de snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7076eef6 snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7edefbb1 snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x828b2306 snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xa18ed2bf snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xa9ae9e28 snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x3209b3bf snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x3f982afa snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x88fde158 snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x022d3b29 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0b7f127c oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0ba02e8d oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0be7c398 oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1103520c oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1c0cce4c oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x247f86b5 oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3c7bf365 oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x630ba492 oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x837f049c oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x941204a0 oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9ad74a35 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xae78a2e9 oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xaed1203b oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbdf70cf2 oxygen_pci_remove -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbf763c94 oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc22d192e oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd006dba1 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe5d5be65 oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe7d3a2d1 oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf3fb04c9 oxygen_pci_pm -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x1713cdbe snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xba483e28 snd_trident_stop_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xde8a9c2c snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xed98cd67 snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xf27bafa6 snd_trident_write_voice_regs -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x2cf6fb69 tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xedb647d8 tlv320aic23_probe -EXPORT_SYMBOL sound/soc/snd-soc-core 0xbdc0d74d snd_soc_alloc_ac97_codec -EXPORT_SYMBOL sound/soundcore 0x07b855d4 register_sound_special -EXPORT_SYMBOL sound/soundcore 0x365d4617 sound_class -EXPORT_SYMBOL sound/soundcore 0x51e86e5f register_sound_midi -EXPORT_SYMBOL sound/soundcore 0x6943923a register_sound_dsp -EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0xa834cf1e register_sound_special_device -EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xed4dbd36 register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x11679efb snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x1e71e0aa snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x3f74341b snd_emux_new -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x669a1672 snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x7405464f snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xec2104fe snd_emux_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x2139c895 snd_util_mem_avail -EXPORT_SYMBOL sound/synth/snd-util-mem 0x6aa0e079 __snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x71d1f050 snd_util_memhdr_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x767c3549 snd_util_memhdr_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0xaf386200 __snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0xcc9e7ea4 snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0xd0669d79 snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0xf533a9d1 __snd_util_memblk_new -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd59a66ea snd_usbmidi_create -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect -EXPORT_SYMBOL vmlinux 0x00339ce0 mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0x00493c8c qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0x00497aeb security_inode_permission -EXPORT_SYMBOL vmlinux 0x0070cd1f queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0x00835307 nf_register_sockopt -EXPORT_SYMBOL vmlinux 0x0085e1f1 __do_once_done -EXPORT_SYMBOL vmlinux 0x0086e9b1 get_tz_trend -EXPORT_SYMBOL vmlinux 0x009a3238 jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0x00bb6951 nf_log_unregister -EXPORT_SYMBOL vmlinux 0x00d51fae of_get_property -EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00da6767 mem_cgroup_end_page_stat -EXPORT_SYMBOL vmlinux 0x00e87883 rwsem_wake -EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve -EXPORT_SYMBOL vmlinux 0x01047d2b arp_send -EXPORT_SYMBOL vmlinux 0x0125e397 tso_count_descs -EXPORT_SYMBOL vmlinux 0x01547a79 vme_irq_handler -EXPORT_SYMBOL vmlinux 0x0158a6dd seq_open_private -EXPORT_SYMBOL vmlinux 0x01631a1b jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer -EXPORT_SYMBOL vmlinux 0x0171d14d tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0x01727c05 xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x01790e94 csum_partial_copy -EXPORT_SYMBOL vmlinux 0x01a0bd9f elv_register_queue -EXPORT_SYMBOL vmlinux 0x01a5b4ba ioctl_by_bdev -EXPORT_SYMBOL vmlinux 0x01bc32c1 devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0x01d234b4 pci_request_regions -EXPORT_SYMBOL vmlinux 0x01d6fe8e __lock_page -EXPORT_SYMBOL vmlinux 0x01d7e12f alloc_xenballooned_pages -EXPORT_SYMBOL vmlinux 0x02008d4c inet_frags_init -EXPORT_SYMBOL vmlinux 0x020a8c99 notify_change -EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check -EXPORT_SYMBOL vmlinux 0x0215880e ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x024bf827 radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x0257046d generic_removexattr -EXPORT_SYMBOL vmlinux 0x02626232 blk_run_queue_async -EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x026ad5c5 blk_register_region -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x0286a58d skb_copy_bits -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table -EXPORT_SYMBOL vmlinux 0x02aa1702 drop_nlink -EXPORT_SYMBOL vmlinux 0x02ac01ad netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x02b424e1 of_mdio_find_bus -EXPORT_SYMBOL vmlinux 0x02c6ee36 __pci_enable_wake -EXPORT_SYMBOL vmlinux 0x02d39881 csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string -EXPORT_SYMBOL vmlinux 0x0305a89a dqget -EXPORT_SYMBOL vmlinux 0x031c703e vmap -EXPORT_SYMBOL vmlinux 0x03270192 __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x0356cf3d locks_init_lock -EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x035f891b down_interruptible -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x0371a1ec genl_notify -EXPORT_SYMBOL vmlinux 0x03747568 jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x038dd2be phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0x03bbd50c nvm_get_blk_unlocked -EXPORT_SYMBOL vmlinux 0x03c39989 __register_binfmt -EXPORT_SYMBOL vmlinux 0x03cd4faf vlan_vid_del -EXPORT_SYMBOL vmlinux 0x03dd00f9 bio_init -EXPORT_SYMBOL vmlinux 0x03e3fd08 insert_inode_locked -EXPORT_SYMBOL vmlinux 0x03ecdfe1 init_special_inode -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg -EXPORT_SYMBOL vmlinux 0x0439e0d9 igrab -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x0470bc82 netlink_capable -EXPORT_SYMBOL vmlinux 0x0476dc2e no_llseek -EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display -EXPORT_SYMBOL vmlinux 0x048b2e88 param_get_byte -EXPORT_SYMBOL vmlinux 0x04a2c173 __destroy_inode -EXPORT_SYMBOL vmlinux 0x04d40bc1 redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol -EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize -EXPORT_SYMBOL vmlinux 0x04f1b3ce __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0x04f1da12 nvm_submit_ppa -EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match -EXPORT_SYMBOL vmlinux 0x0509d987 path_get -EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x0527d0fe proc_mkdir -EXPORT_SYMBOL vmlinux 0x052b2423 scsi_cmd_ioctl -EXPORT_SYMBOL vmlinux 0x0536a676 rfkill_alloc -EXPORT_SYMBOL vmlinux 0x0544b12b locks_remove_posix -EXPORT_SYMBOL vmlinux 0x055c8559 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x0562d107 cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x05739c05 set_posix_acl -EXPORT_SYMBOL vmlinux 0x05834f15 iommu_tbl_range_alloc -EXPORT_SYMBOL vmlinux 0x05d3f7dd blk_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x05e566cb dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x060425dd devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x061f4039 acpi_get_table_with_size -EXPORT_SYMBOL vmlinux 0x062cf8f7 sget -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x067bdfb7 mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx -EXPORT_SYMBOL vmlinux 0x069b028d netlink_ack -EXPORT_SYMBOL vmlinux 0x06ab8b59 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0x06df8936 pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn -EXPORT_SYMBOL vmlinux 0x06ff6776 skb_append -EXPORT_SYMBOL vmlinux 0x070774fd ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0x071b363c pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x0725ea73 __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x07462b08 pci_fixup_device -EXPORT_SYMBOL vmlinux 0x076f98ca lease_modify -EXPORT_SYMBOL vmlinux 0x0792a714 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07a9ef84 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x07ba00fd iov_iter_zero -EXPORT_SYMBOL vmlinux 0x07bda92c sb_set_blocksize -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x080d8017 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x08102b1a mmc_erase -EXPORT_SYMBOL vmlinux 0x08200012 mmc_request_done -EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x083ad288 posix_acl_fix_xattr_userns -EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x0845a1b5 soft_cursor -EXPORT_SYMBOL vmlinux 0x087326df d_obtain_alias -EXPORT_SYMBOL vmlinux 0x08790919 icmp_send -EXPORT_SYMBOL vmlinux 0x087ca5a3 i2c_verify_client -EXPORT_SYMBOL vmlinux 0x0880fd71 unlock_new_inode -EXPORT_SYMBOL vmlinux 0x088a083a module_refcount -EXPORT_SYMBOL vmlinux 0x08bab525 scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0x08e53b84 tcp_md5_hash_header -EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0x08f16100 end_buffer_async_write -EXPORT_SYMBOL vmlinux 0x09052746 of_graph_get_remote_port -EXPORT_SYMBOL vmlinux 0x09228a7c processors -EXPORT_SYMBOL vmlinux 0x093bfc3f proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0x093fc766 crypto_sha256_update -EXPORT_SYMBOL vmlinux 0x0948cb00 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0x0956f77b devm_memremap -EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key -EXPORT_SYMBOL vmlinux 0x095bea8f dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x0967d278 blk_queue_free_tags -EXPORT_SYMBOL vmlinux 0x09696626 acpi_decode_pld_buffer -EXPORT_SYMBOL vmlinux 0x0973ff72 pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x098431ba acpi_get_current_resources -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x099071e4 __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0x09a0cdb8 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09d775cc serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x09da5cea dev_get_iflink -EXPORT_SYMBOL vmlinux 0x09e6d238 generic_pipe_buf_confirm -EXPORT_SYMBOL vmlinux 0x09f83b7f __lock_buffer -EXPORT_SYMBOL vmlinux 0x0a18f10b kern_path_mountpoint -EXPORT_SYMBOL vmlinux 0x0a19c234 skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0x0a28218f inode_needs_sync -EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class -EXPORT_SYMBOL vmlinux 0x0a56489b rtmsg_ifinfo -EXPORT_SYMBOL vmlinux 0x0a57863e cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x0a62aaa4 blk_delay_queue -EXPORT_SYMBOL vmlinux 0x0aa201ce blk_queue_init_tags -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0abd92ae dentry_unhash -EXPORT_SYMBOL vmlinux 0x0abfe416 sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0x0ac52049 blk_queue_resize_tags -EXPORT_SYMBOL vmlinux 0x0ac5523d scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0ad2c6f2 bioset_free -EXPORT_SYMBOL vmlinux 0x0ada9992 serio_close -EXPORT_SYMBOL vmlinux 0x0ade297a of_get_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0x0b11ccbe mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x0b13efb5 tcp_sendpage -EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b24f9e1 sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b75108c devm_gpiod_get_optional -EXPORT_SYMBOL vmlinux 0x0b7f09c9 devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0x0b8e6da1 lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x0b9a55a2 __breadahead -EXPORT_SYMBOL vmlinux 0x0ba9e4a1 compat_tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x0bae2062 xfrm6_prepare_output -EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bd5e3d7 bio_flush_dcache_pages -EXPORT_SYMBOL vmlinux 0x0bd9b069 phy_init_hw -EXPORT_SYMBOL vmlinux 0x0bf4c2ea tty_throttle -EXPORT_SYMBOL vmlinux 0x0c160a59 address_space_init_once -EXPORT_SYMBOL vmlinux 0x0c21d019 flush_delayed_work -EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat -EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features -EXPORT_SYMBOL vmlinux 0x0c62732a __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -EXPORT_SYMBOL vmlinux 0x0c7e7209 nd_namespace_blk_validate -EXPORT_SYMBOL vmlinux 0x0c80935b netdev_notice -EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x0ca4d8b4 uart_unregister_driver -EXPORT_SYMBOL vmlinux 0x0ca7b7a8 acpi_check_region -EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0x0cb2d90e tty_unthrottle -EXPORT_SYMBOL vmlinux 0x0cb94e14 pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0x0cc62817 gen_pool_destroy -EXPORT_SYMBOL vmlinux 0x0cda1e94 blk_requeue_request -EXPORT_SYMBOL vmlinux 0x0cf65bb8 max8998_bulk_read -EXPORT_SYMBOL vmlinux 0x0cf6e603 try_module_get -EXPORT_SYMBOL vmlinux 0x0d03573d mmc_release_host -EXPORT_SYMBOL vmlinux 0x0d1cad1a blk_put_queue -EXPORT_SYMBOL vmlinux 0x0d1ebefb netif_napi_del -EXPORT_SYMBOL vmlinux 0x0d299f1d peernet2id_alloc -EXPORT_SYMBOL vmlinux 0x0d335d93 of_get_ddr_timings -EXPORT_SYMBOL vmlinux 0x0d3dda14 acpi_get_type -EXPORT_SYMBOL vmlinux 0x0d42af92 seq_putc -EXPORT_SYMBOL vmlinux 0x0d4b64f5 in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x0d530ebd lock_sock_fast -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d556ffa lock_fb_info -EXPORT_SYMBOL vmlinux 0x0d5b511a pci_disable_device -EXPORT_SYMBOL vmlinux 0x0d5ca618 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d80efb5 acpi_evaluate_ost -EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft -EXPORT_SYMBOL vmlinux 0x0dc84e83 ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0x0dcc4361 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x0dd86eb3 pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0x0dde2f9c fd_install -EXPORT_SYMBOL vmlinux 0x0de99cb8 napi_complete_done -EXPORT_SYMBOL vmlinux 0x0dfdccf6 sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0x0e0c50a9 xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0x0e28d9a0 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x0e43304c i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x0e49543f pci_claim_resource -EXPORT_SYMBOL vmlinux 0x0e5c3c35 __put_cred -EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec -EXPORT_SYMBOL vmlinux 0x0e77a781 lockref_put_return -EXPORT_SYMBOL vmlinux 0x0e7a7bd1 parent_mem_cgroup -EXPORT_SYMBOL vmlinux 0x0e89524e arp_create -EXPORT_SYMBOL vmlinux 0x0e8fb606 sock_no_bind -EXPORT_SYMBOL vmlinux 0x0e91ba57 inet_frag_destroy -EXPORT_SYMBOL vmlinux 0x0e9399e7 __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x0ea507f2 d_move -EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ec83051 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x0ed8cc7b acpi_evaluate_object_typed -EXPORT_SYMBOL vmlinux 0x0edcf8a6 netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups -EXPORT_SYMBOL vmlinux 0x0f0f7578 nvm_get_blk -EXPORT_SYMBOL vmlinux 0x0f1bcecf clk_get -EXPORT_SYMBOL vmlinux 0x0f2ab297 dev_uc_add -EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec -EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size -EXPORT_SYMBOL vmlinux 0x0f7152a0 free_user_ns -EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x0f7dd887 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x0f817186 serio_interrupt -EXPORT_SYMBOL vmlinux 0x0f93de80 mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fd96471 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0x0fdc5811 jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0x0fe85a7a sock_no_shutdown -EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress -EXPORT_SYMBOL vmlinux 0x0ff2c759 proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x0ff80232 dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0x10148054 in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x101fba19 is_bad_inode -EXPORT_SYMBOL vmlinux 0x1022189e dev_mc_sync -EXPORT_SYMBOL vmlinux 0x102a3c09 kernel_accept -EXPORT_SYMBOL vmlinux 0x102e0624 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0x1031299c inet_del_protocol -EXPORT_SYMBOL vmlinux 0x1036e51d audit_log -EXPORT_SYMBOL vmlinux 0x104f353a inet_addr_type -EXPORT_SYMBOL vmlinux 0x1069fd58 clocksource_unregister -EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x10950ee1 radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x10aeb226 mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0x10bbf2e0 input_unregister_handle -EXPORT_SYMBOL vmlinux 0x10c38315 netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x10e2ebbd get_super_thawed -EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu -EXPORT_SYMBOL vmlinux 0x10eed3ba xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x10f1e5fc i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0x10f9c026 swiotlb_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0x10fb3fa5 mdiobus_scan -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x11240477 devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0x112d1160 skb_push -EXPORT_SYMBOL vmlinux 0x1148ce16 set_wb_congested -EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn -EXPORT_SYMBOL vmlinux 0x1168abba phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0x116a89b5 generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x1181a6dd sock_kmalloc -EXPORT_SYMBOL vmlinux 0x119919c9 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned -EXPORT_SYMBOL vmlinux 0x11a68c63 phy_device_free -EXPORT_SYMBOL vmlinux 0x11c19ff4 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0x11c27637 pci_select_bars -EXPORT_SYMBOL vmlinux 0x11d455d2 __page_symlink -EXPORT_SYMBOL vmlinux 0x11d54855 netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x11d847d1 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin -EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const -EXPORT_SYMBOL vmlinux 0x1237af21 i2c_master_send -EXPORT_SYMBOL vmlinux 0x123f82f3 getrawmonotonic64 -EXPORT_SYMBOL vmlinux 0x1250dc87 __skb_get_hash_flowi4 -EXPORT_SYMBOL vmlinux 0x12850ef0 md_finish_reshape -EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range -EXPORT_SYMBOL vmlinux 0x12dfeb12 vprintk_emit -EXPORT_SYMBOL vmlinux 0x12e7ce08 mutex_trylock -EXPORT_SYMBOL vmlinux 0x12ef86f5 pnp_register_card_driver -EXPORT_SYMBOL vmlinux 0x13002bc1 xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0x1305d532 ucs2_strncmp -EXPORT_SYMBOL vmlinux 0x1309259d misc_register -EXPORT_SYMBOL vmlinux 0x13113ad9 from_kuid -EXPORT_SYMBOL vmlinux 0x13114e24 atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x1319449d secure_modules -EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x1325e004 i2c_clients_command -EXPORT_SYMBOL vmlinux 0x1327ebfa i2c_get_adapter -EXPORT_SYMBOL vmlinux 0x13299bb8 netdev_features_change -EXPORT_SYMBOL vmlinux 0x13307fde vsscanf -EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc -EXPORT_SYMBOL vmlinux 0x13380bc8 simple_write_begin -EXPORT_SYMBOL vmlinux 0x134aba0e __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x134e2b52 alloc_disk_node -EXPORT_SYMBOL vmlinux 0x1354b788 cpufreq_global_kobject -EXPORT_SYMBOL vmlinux 0x1355087f mb_cache_entry_alloc -EXPORT_SYMBOL vmlinux 0x1359277f pci_find_capability -EXPORT_SYMBOL vmlinux 0x1368ee3c xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0x13a05020 kernel_read -EXPORT_SYMBOL vmlinux 0x13a1046b devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0x13a80329 phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0x13b0e2e8 pci_match_id -EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13e225d3 pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0x13edba65 vme_register_error_handler -EXPORT_SYMBOL vmlinux 0x13ef2c65 find_get_pages_contig -EXPORT_SYMBOL vmlinux 0x13f78213 pci_clear_master -EXPORT_SYMBOL vmlinux 0x14092cbe blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0x141f68f8 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x14343175 sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0x143e75d2 pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x143f7e82 sk_ns_capable -EXPORT_SYMBOL vmlinux 0x145b53bc deactivate_super -EXPORT_SYMBOL vmlinux 0x14618e7d blk_queue_bounce -EXPORT_SYMBOL vmlinux 0x147a0e95 __mmc_claim_host -EXPORT_SYMBOL vmlinux 0x14838ca6 dev_addr_flush -EXPORT_SYMBOL vmlinux 0x14857d2b elv_dispatch_sort -EXPORT_SYMBOL vmlinux 0x1498cd2d tty_hung_up_p -EXPORT_SYMBOL vmlinux 0x149e368c nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0x14b03ef6 input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x14b0badd netdev_printk -EXPORT_SYMBOL vmlinux 0x14b43f78 copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x14bf0990 of_find_compatible_node -EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x14d0f74c unregister_nls -EXPORT_SYMBOL vmlinux 0x14deff4a bio_integrity_enabled -EXPORT_SYMBOL vmlinux 0x14e78f9f load_nls -EXPORT_SYMBOL vmlinux 0x14f9186a ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x1500c818 inode_sub_rsv_space -EXPORT_SYMBOL vmlinux 0x1535652d phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0x15364b63 ida_remove -EXPORT_SYMBOL vmlinux 0x1537a5cd dma_mark_declared_memory_occupied -EXPORT_SYMBOL vmlinux 0x15395e07 blk_mq_all_tag_busy_iter -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x1550897b devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0x1583a583 from_kprojid -EXPORT_SYMBOL vmlinux 0x15998547 xfrm6_rcv_cb -EXPORT_SYMBOL vmlinux 0x15b630b3 qcom_scm_set_cold_boot_addr -EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15bb655e copy_to_iter -EXPORT_SYMBOL vmlinux 0x15c302e1 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0x15cf9bfa kill_anon_super -EXPORT_SYMBOL vmlinux 0x15d6d501 vm_mmap -EXPORT_SYMBOL vmlinux 0x15e10493 xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0x1616cb30 acpi_evaluate_dsm -EXPORT_SYMBOL vmlinux 0x1632c8ce scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0x16733935 nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x16766435 vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump -EXPORT_SYMBOL vmlinux 0x1682ea05 proc_douintvec -EXPORT_SYMBOL vmlinux 0x16af0e07 nd_region_acquire_lane -EXPORT_SYMBOL vmlinux 0x16d5d2cd cpu_all_bits -EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x170643dc __devm_request_region -EXPORT_SYMBOL vmlinux 0x170c25ee acpi_get_next_object -EXPORT_SYMBOL vmlinux 0x171f9718 call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0x1736513f pnp_disable_dev -EXPORT_SYMBOL vmlinux 0x173ce798 km_new_mapping -EXPORT_SYMBOL vmlinux 0x175a783f vfs_llseek -EXPORT_SYMBOL vmlinux 0x1793f685 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0x17a142df __copy_from_user -EXPORT_SYMBOL vmlinux 0x17a529ef bio_copy_data -EXPORT_SYMBOL vmlinux 0x17abdbb5 d_add_ci -EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator -EXPORT_SYMBOL vmlinux 0x17ec5324 inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x17efe54b alloc_fddidev -EXPORT_SYMBOL vmlinux 0x180e4a00 get_mm_exe_file -EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken -EXPORT_SYMBOL vmlinux 0x183f45d2 backlight_device_register -EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask -EXPORT_SYMBOL vmlinux 0x184e0154 blk_init_queue -EXPORT_SYMBOL vmlinux 0x186c9d33 __alloc_pages_nodemask -EXPORT_SYMBOL vmlinux 0x186d2f1a xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x18870ede simple_transaction_get -EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc -EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x18b48e28 __memset_io -EXPORT_SYMBOL vmlinux 0x18b4ee3f serio_unregister_port -EXPORT_SYMBOL vmlinux 0x18bcdf07 bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x18dd9764 register_key_type -EXPORT_SYMBOL vmlinux 0x18e047a1 frontswap_register_ops -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18eed58c __get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x18fef9cb xen_start_info -EXPORT_SYMBOL vmlinux 0x190077ba inode_change_ok -EXPORT_SYMBOL vmlinux 0x1904cb7d vm_insert_page -EXPORT_SYMBOL vmlinux 0x1905e655 nf_nat_decode_session_hook -EXPORT_SYMBOL vmlinux 0x192824ab crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0x1934ac55 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x19519810 pci_disable_msi -EXPORT_SYMBOL vmlinux 0x196239dc inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x1966bd27 param_ops_uint -EXPORT_SYMBOL vmlinux 0x1992d8dd tcf_hash_new_index -EXPORT_SYMBOL vmlinux 0x199ec208 fifo_set_limit -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19af8aa6 put_tty_driver -EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19bed6cc inet_stream_connect -EXPORT_SYMBOL vmlinux 0x19c1ffaf pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0x19c8567f iput -EXPORT_SYMBOL vmlinux 0x19c8b18b twl6040_power -EXPORT_SYMBOL vmlinux 0x19d2d5dd gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x19edc9f3 __nd_driver_register -EXPORT_SYMBOL vmlinux 0x1a085c73 __frontswap_load -EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled -EXPORT_SYMBOL vmlinux 0x1a4aebad sock_update_memcg -EXPORT_SYMBOL vmlinux 0x1a797ea9 tty_unregister_device -EXPORT_SYMBOL vmlinux 0x1a7d2be7 pci_set_dma_seg_boundary -EXPORT_SYMBOL vmlinux 0x1a7dbd75 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0x1aacc39c __ip_select_ident -EXPORT_SYMBOL vmlinux 0x1ab06748 lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1aea1080 kmalloc_caches -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b0dc901 bprm_change_interp -EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents -EXPORT_SYMBOL vmlinux 0x1b2d6d2c qcom_scm_cpu_power_down -EXPORT_SYMBOL vmlinux 0x1b327336 scsi_add_device -EXPORT_SYMBOL vmlinux 0x1b337e88 from_kuid_munged -EXPORT_SYMBOL vmlinux 0x1b41014d inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x1b56f0fe scsi_remove_device -EXPORT_SYMBOL vmlinux 0x1b570d23 acpi_warning -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b64452c dst_destroy -EXPORT_SYMBOL vmlinux 0x1b731d5b netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug -EXPORT_SYMBOL vmlinux 0x1b9a4c17 inet_sendpage -EXPORT_SYMBOL vmlinux 0x1baffbb0 bioset_create_nobvec -EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer -EXPORT_SYMBOL vmlinux 0x1bbf25df mutex_lock_killable -EXPORT_SYMBOL vmlinux 0x1bca2a90 prepare_to_wait -EXPORT_SYMBOL vmlinux 0x1be36232 of_find_node_with_property -EXPORT_SYMBOL vmlinux 0x1be4ca56 find_lock_entry -EXPORT_SYMBOL vmlinux 0x1bf408f7 kobject_set_name -EXPORT_SYMBOL vmlinux 0x1bff7ce1 generic_ro_fops -EXPORT_SYMBOL vmlinux 0x1c114a6a vm_event_states -EXPORT_SYMBOL vmlinux 0x1c2b4d2e sock_recvmsg -EXPORT_SYMBOL vmlinux 0x1c35d6a8 security_path_symlink -EXPORT_SYMBOL vmlinux 0x1c3715a5 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0x1c3f98dc vme_lm_request -EXPORT_SYMBOL vmlinux 0x1c42869b dquot_enable -EXPORT_SYMBOL vmlinux 0x1c447dc5 max8925_reg_write -EXPORT_SYMBOL vmlinux 0x1c4eabd8 __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0x1c6b36f5 thaw_bdev -EXPORT_SYMBOL vmlinux 0x1c79c628 trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x1c83336f bio_unmap_user -EXPORT_SYMBOL vmlinux 0x1c8a04b0 acpi_reset -EXPORT_SYMBOL vmlinux 0x1c8bb637 compat_sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x1ca546e2 profile_pc -EXPORT_SYMBOL vmlinux 0x1ca7ce77 dget_parent -EXPORT_SYMBOL vmlinux 0x1cb821d7 __dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x1cbb98d8 put_page -EXPORT_SYMBOL vmlinux 0x1ccd609e sk_mc_loop -EXPORT_SYMBOL vmlinux 0x1ccf278e of_find_property -EXPORT_SYMBOL vmlinux 0x1d0683e8 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0x1d1056e5 crc32_be -EXPORT_SYMBOL vmlinux 0x1d1730b2 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0x1d5a859e init_net -EXPORT_SYMBOL vmlinux 0x1d5ed86a scsi_register_interface -EXPORT_SYMBOL vmlinux 0x1d63aaa6 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x1d66980d security_inode_init_security -EXPORT_SYMBOL vmlinux 0x1d7fe06f pci_get_subsys -EXPORT_SYMBOL vmlinux 0x1d89bdac neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x1d92d898 complete_and_exit -EXPORT_SYMBOL vmlinux 0x1dadd71c tty_register_ldisc -EXPORT_SYMBOL vmlinux 0x1daff594 security_path_unlink -EXPORT_SYMBOL vmlinux 0x1db6e129 netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0x1dc5794f mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x1dd115bc scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1de74f72 acpi_execute_simple_method -EXPORT_SYMBOL vmlinux 0x1e0dadb6 dns_query -EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev -EXPORT_SYMBOL vmlinux 0x1e308cc5 seq_pad -EXPORT_SYMBOL vmlinux 0x1e43c84e user_revoke -EXPORT_SYMBOL vmlinux 0x1e534f15 ps2_sendbyte -EXPORT_SYMBOL vmlinux 0x1e5d97c5 xattr_full_name -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e8571b9 qdisc_list_del -EXPORT_SYMBOL vmlinux 0x1e92bf19 ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1ea06663 _raw_write_lock -EXPORT_SYMBOL vmlinux 0x1ea0a7ab kernel_neon_begin_partial -EXPORT_SYMBOL vmlinux 0x1ea39bc5 fsnotify_add_mark -EXPORT_SYMBOL vmlinux 0x1eb02a32 mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x1eb6a5d2 scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x1ee267ec skb_trim -EXPORT_SYMBOL vmlinux 0x1ee7ec7a seq_puts -EXPORT_SYMBOL vmlinux 0x1eeac885 __pci_register_driver -EXPORT_SYMBOL vmlinux 0x1f095682 set_nlink -EXPORT_SYMBOL vmlinux 0x1f0ef611 netpoll_cleanup -EXPORT_SYMBOL vmlinux 0x1f31e0f3 simple_readpage -EXPORT_SYMBOL vmlinux 0x1f639e0b kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x1f67082e skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0x1f684bce skb_seq_read -EXPORT_SYMBOL vmlinux 0x1f6ce67a sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x1f71576e qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0x1f7e0829 ll_rw_block -EXPORT_SYMBOL vmlinux 0x1fb52f61 kset_register -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fcf4d4b _raw_read_unlock_bh -EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fd0a36f inode_claim_rsv_space -EXPORT_SYMBOL vmlinux 0x1fdc7df2 _mcount -EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag -EXPORT_SYMBOL vmlinux 0x1fe9b2cb of_gpio_simple_xlate -EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x201059b6 md_cluster_ops -EXPORT_SYMBOL vmlinux 0x202e16a6 netdev_err -EXPORT_SYMBOL vmlinux 0x203f0fa8 devm_request_resource -EXPORT_SYMBOL vmlinux 0x204346af proc_dostring -EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool -EXPORT_SYMBOL vmlinux 0x206ac1e1 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq -EXPORT_SYMBOL vmlinux 0x20812fda mfd_add_devices -EXPORT_SYMBOL vmlinux 0x208739f6 acpi_load_table -EXPORT_SYMBOL vmlinux 0x20906cd5 idr_destroy -EXPORT_SYMBOL vmlinux 0x2090d31f forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf -EXPORT_SYMBOL vmlinux 0x20dc48dd pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum -EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x20ffa7f6 _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0x210035a7 blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x210985df pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0x211d7dc5 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x211f68f1 getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x2157ec04 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0x21632c0b inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0x21642387 of_get_address -EXPORT_SYMBOL vmlinux 0x217cbe81 default_llseek -EXPORT_SYMBOL vmlinux 0x218ea808 filemap_fdatawait -EXPORT_SYMBOL vmlinux 0x21907657 dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0x219c8acb register_sysctl -EXPORT_SYMBOL vmlinux 0x21cbed15 xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set -EXPORT_SYMBOL vmlinux 0x222b5d86 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x224ff4ad wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0x22525678 napi_gro_flush -EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits -EXPORT_SYMBOL vmlinux 0x22694ab2 scsi_target_resume -EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint -EXPORT_SYMBOL vmlinux 0x2286646b sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0x228903a5 padata_free -EXPORT_SYMBOL vmlinux 0x22a73764 mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0x22a8dc21 vfs_writev -EXPORT_SYMBOL vmlinux 0x22a9c5ff phy_connect -EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22b83fbf unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0x22baea3d proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x22eb8c1c textsearch_prepare -EXPORT_SYMBOL vmlinux 0x22fef3d6 devm_gpio_request_one -EXPORT_SYMBOL vmlinux 0x230e8d35 simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x230f5417 posix_test_lock -EXPORT_SYMBOL vmlinux 0x231323e0 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs -EXPORT_SYMBOL vmlinux 0x23281c67 nvm_set_rqd_ppalist -EXPORT_SYMBOL vmlinux 0x23361498 devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0x2339a1a9 scsi_cmd_get_serial -EXPORT_SYMBOL vmlinux 0x2343bdc7 tty_unlock -EXPORT_SYMBOL vmlinux 0x234def79 elevator_alloc -EXPORT_SYMBOL vmlinux 0x2364c326 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0x236619f6 vfs_iter_read -EXPORT_SYMBOL vmlinux 0x2381df12 sock_no_getsockopt -EXPORT_SYMBOL vmlinux 0x239014fd tcf_hash_insert -EXPORT_SYMBOL vmlinux 0x2391e2f1 pci_enable_device_io -EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress -EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x24394c10 dquot_free_inode -EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x24554b35 try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x2470065c of_clk_get_by_name -EXPORT_SYMBOL vmlinux 0x2470fc94 copy_page_to_iter -EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf -EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x249f1319 acpi_pm_device_run_wake -EXPORT_SYMBOL vmlinux 0x24aeeb57 of_translate_address -EXPORT_SYMBOL vmlinux 0x24ba153c blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0x24e87640 tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x24f8ec80 udp_add_offload -EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function -EXPORT_SYMBOL vmlinux 0x250bcdd5 genphy_config_aneg -EXPORT_SYMBOL vmlinux 0x251a2679 nd_iostat_end -EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register -EXPORT_SYMBOL vmlinux 0x252b43a1 dquot_quota_on -EXPORT_SYMBOL vmlinux 0x253c70c5 nf_register_hook -EXPORT_SYMBOL vmlinux 0x255bb072 change_bit -EXPORT_SYMBOL vmlinux 0x255c3443 eth_mac_addr -EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x2587c47a fb_set_suspend -EXPORT_SYMBOL vmlinux 0x25bfcd09 kernel_connect -EXPORT_SYMBOL vmlinux 0x25c1eb43 dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x25d4bf4c flow_cache_fini -EXPORT_SYMBOL vmlinux 0x25e54269 dev_warn -EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25ffad7e devm_gpio_free -EXPORT_SYMBOL vmlinux 0x260cfc76 pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0x260ea2ef pm860x_set_bits -EXPORT_SYMBOL vmlinux 0x26176981 pnp_device_attach -EXPORT_SYMBOL vmlinux 0x261ff6e5 sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0x262413be of_device_alloc -EXPORT_SYMBOL vmlinux 0x263958e0 ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux -EXPORT_SYMBOL vmlinux 0x2665d53a key_create_or_update -EXPORT_SYMBOL vmlinux 0x267c956d pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0x26820443 vfs_fsync -EXPORT_SYMBOL vmlinux 0x268410fa clear_nlink -EXPORT_SYMBOL vmlinux 0x268bb345 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x269d814a install_exec_creds -EXPORT_SYMBOL vmlinux 0x26e37552 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min -EXPORT_SYMBOL vmlinux 0x27077c29 udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0x270c0215 pci_restore_state -EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler -EXPORT_SYMBOL vmlinux 0x2723b1f9 inode_set_bytes -EXPORT_SYMBOL vmlinux 0x2724ba66 __ioremap -EXPORT_SYMBOL vmlinux 0x273a82e1 neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x27427ff6 mmc_add_host -EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0x275ea1c3 iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0x27737400 amba_device_unregister -EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x27a24cb3 of_io_request_and_map -EXPORT_SYMBOL vmlinux 0x27ab60df dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x27ae7d0c ec_transaction -EXPORT_SYMBOL vmlinux 0x27b6701f kmem_cache_create -EXPORT_SYMBOL vmlinux 0x27bbe3a5 dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27de12f5 _dev_info -EXPORT_SYMBOL vmlinux 0x27e1a049 printk -EXPORT_SYMBOL vmlinux 0x2804521e ata_print_version -EXPORT_SYMBOL vmlinux 0x28142b28 blk_make_request -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x281c69ea blk_integrity_compare -EXPORT_SYMBOL vmlinux 0x2830d135 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0x28318305 snprintf -EXPORT_SYMBOL vmlinux 0x28368b9c inet_frag_find -EXPORT_SYMBOL vmlinux 0x2852b12b pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x2891599f mii_link_ok -EXPORT_SYMBOL vmlinux 0x2897ff4c padata_add_cpu -EXPORT_SYMBOL vmlinux 0x2899239a scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0x289a2869 blk_start_queue -EXPORT_SYMBOL vmlinux 0x289cbf68 i2c_release_client -EXPORT_SYMBOL vmlinux 0x28a2b29f radix_tree_range_tag_if_tagged -EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x28a47540 d_delete -EXPORT_SYMBOL vmlinux 0x28a8d2e2 gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0x28abfe6e scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x28b2dff7 cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0x28b6e278 devfreq_interval_update -EXPORT_SYMBOL vmlinux 0x28be587d pci_release_region -EXPORT_SYMBOL vmlinux 0x28c2fa7b __genl_register_family -EXPORT_SYMBOL vmlinux 0x28d7ffea lg_local_unlock -EXPORT_SYMBOL vmlinux 0x28e96496 blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0x28eab0a4 follow_pfn -EXPORT_SYMBOL vmlinux 0x28f0bd7d d_instantiate_no_diralias -EXPORT_SYMBOL vmlinux 0x2915b3ad tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x291ba05d udplite_table -EXPORT_SYMBOL vmlinux 0x29288f41 __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x293ffe2b __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0x295d9634 would_dump -EXPORT_SYMBOL vmlinux 0x2976beb1 iterate_dir -EXPORT_SYMBOL vmlinux 0x297ebbdb key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0x29940191 abort_creds -EXPORT_SYMBOL vmlinux 0x29a62c5c kern_unmount -EXPORT_SYMBOL vmlinux 0x29b83dc0 input_inject_event -EXPORT_SYMBOL vmlinux 0x29bcff6d devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0x29decf64 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0x29eb9650 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0x2a13fdd5 sock_init_data -EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2a3aee0b vme_master_mmap -EXPORT_SYMBOL vmlinux 0x2a3afdd6 kernel_getpeername -EXPORT_SYMBOL vmlinux 0x2a3f686d vme_slave_request -EXPORT_SYMBOL vmlinux 0x2a6af362 vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0x2a8ea4b6 skb_insert -EXPORT_SYMBOL vmlinux 0x2aa1ad41 _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy -EXPORT_SYMBOL vmlinux 0x2aadef71 skb_find_text -EXPORT_SYMBOL vmlinux 0x2ac09dd5 __nla_put -EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat -EXPORT_SYMBOL vmlinux 0x2adefc9e serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0x2ae18663 security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0x2ae9f701 pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x2b0bb003 inode_set_flags -EXPORT_SYMBOL vmlinux 0x2b0f9058 mmc_power_save_host -EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 -EXPORT_SYMBOL vmlinux 0x2b3050af buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0x2b35e922 blk_queue_prep_rq -EXPORT_SYMBOL vmlinux 0x2b37fb78 inet6_offloads -EXPORT_SYMBOL vmlinux 0x2b558e3f elv_add_request -EXPORT_SYMBOL vmlinux 0x2b5f77ab posix_acl_valid -EXPORT_SYMBOL vmlinux 0x2b712440 elevator_change -EXPORT_SYMBOL vmlinux 0x2b788382 abx500_event_registers_startup_state_get -EXPORT_SYMBOL vmlinux 0x2b88fa41 __vfs_read -EXPORT_SYMBOL vmlinux 0x2b8909da devm_kvasprintf -EXPORT_SYMBOL vmlinux 0x2b8ad61c __find_get_block -EXPORT_SYMBOL vmlinux 0x2b9af470 xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x2b9b93f3 cdrom_media_changed -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency -EXPORT_SYMBOL vmlinux 0x2ba9a3eb dev_mc_flush -EXPORT_SYMBOL vmlinux 0x2bb2d036 param_set_ushort -EXPORT_SYMBOL vmlinux 0x2bb521ce vfs_whiteout -EXPORT_SYMBOL vmlinux 0x2bb55d6e acpi_remove_notify_handler -EXPORT_SYMBOL vmlinux 0x2bd5d609 simple_dir_operations -EXPORT_SYMBOL vmlinux 0x2be79494 security_inode_readlink -EXPORT_SYMBOL vmlinux 0x2bfbab10 __memmove -EXPORT_SYMBOL vmlinux 0x2bfeb410 acpi_get_handle -EXPORT_SYMBOL vmlinux 0x2c0e9fc2 of_match_device -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c2593e0 __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0x2c38619d netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0x2c4116aa generic_error_remove_page -EXPORT_SYMBOL vmlinux 0x2c700ee8 elv_rb_del -EXPORT_SYMBOL vmlinux 0x2c72555f iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0x2c7c5e44 jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x2c83edfc sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x2c85ba90 scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0x2c8d0ea4 sock_no_accept -EXPORT_SYMBOL vmlinux 0x2c8f58da simple_dentry_operations -EXPORT_SYMBOL vmlinux 0x2c9dc477 rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0x2ca5d842 netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0x2ca89eca complete_request_key -EXPORT_SYMBOL vmlinux 0x2cf0de25 sg_miter_stop -EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0x2d08b532 proto_unregister -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d368ee5 n_tty_compat_ioctl_helper -EXPORT_SYMBOL vmlinux 0x2d3795d8 mmc_power_restore_host -EXPORT_SYMBOL vmlinux 0x2d399bb7 dcb_setapp -EXPORT_SYMBOL vmlinux 0x2d3df015 dup_iter -EXPORT_SYMBOL vmlinux 0x2d532100 alloc_file -EXPORT_SYMBOL vmlinux 0x2d93cc54 inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x2d99ef9b skb_kill_datagram -EXPORT_SYMBOL vmlinux 0x2da8121a qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x2db1e0c6 dql_init -EXPORT_SYMBOL vmlinux 0x2dcb6091 mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink -EXPORT_SYMBOL vmlinux 0x2dde8c39 register_cdrom -EXPORT_SYMBOL vmlinux 0x2ddf27a0 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0x2de1327b bit_waitqueue -EXPORT_SYMBOL vmlinux 0x2dedc4c2 acpi_format_exception -EXPORT_SYMBOL vmlinux 0x2e0d2f7f queue_work_on -EXPORT_SYMBOL vmlinux 0x2e1c5eed swiotlb_unmap_sg -EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put -EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat -EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies -EXPORT_SYMBOL vmlinux 0x2e2d46b4 dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0x2e36d71c pci_disable_msix -EXPORT_SYMBOL vmlinux 0x2e4c8912 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x2e593a27 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0x2e60e2b0 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x2e7be112 _raw_read_lock_irqsave -EXPORT_SYMBOL vmlinux 0x2e974658 phy_device_register -EXPORT_SYMBOL vmlinux 0x2ea4c1c9 lg_global_unlock -EXPORT_SYMBOL vmlinux 0x2ec58bf1 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x2ecda80f blk_get_queue -EXPORT_SYMBOL vmlinux 0x2ee2bdcb dev_queue_xmit -EXPORT_SYMBOL vmlinux 0x2ef23b0f ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0x2f011440 may_umount -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource -EXPORT_SYMBOL vmlinux 0x2f2b81ac fsnotify_put_mark -EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device -EXPORT_SYMBOL vmlinux 0x2f3857e2 _raw_write_lock_irqsave -EXPORT_SYMBOL vmlinux 0x2f3ded4f security_task_getsecid -EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag -EXPORT_SYMBOL vmlinux 0x2f5eb6fd dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0x2f7678db blk_end_request_cur -EXPORT_SYMBOL vmlinux 0x2f79843b netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x2f7b4da2 pipe_unlock -EXPORT_SYMBOL vmlinux 0x2f9be0ac devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0x2fa70391 input_free_device -EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fb6f5f0 pci_enable_msix -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2ff063b5 acpi_get_name -EXPORT_SYMBOL vmlinux 0x2ff8c3ff audit_log_task_info -EXPORT_SYMBOL vmlinux 0x3012569a param_ops_long -EXPORT_SYMBOL vmlinux 0x30236b79 writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0x304ec72b _raw_write_trylock -EXPORT_SYMBOL vmlinux 0x305cec12 _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable -EXPORT_SYMBOL vmlinux 0x308a993d twl6040_reg_write -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30b8d34a override_creds -EXPORT_SYMBOL vmlinux 0x30d84751 netdev_crit -EXPORT_SYMBOL vmlinux 0x30de9e42 d_alloc -EXPORT_SYMBOL vmlinux 0x30e4e2bc pci_bus_type -EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0x30fd14e4 tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x310f02ec memremap -EXPORT_SYMBOL vmlinux 0x3119613e compat_ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present -EXPORT_SYMBOL vmlinux 0x3147857d default_red -EXPORT_SYMBOL vmlinux 0x315a8ba2 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x3168bcc8 pci_write_vpd -EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear -EXPORT_SYMBOL vmlinux 0x3177b1d8 security_dentry_init_security -EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available -EXPORT_SYMBOL vmlinux 0x31bbbad8 inode_add_bytes -EXPORT_SYMBOL vmlinux 0x31ce3888 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x31fe1b13 kill_pid -EXPORT_SYMBOL vmlinux 0x321e7622 twl6040_reg_read -EXPORT_SYMBOL vmlinux 0x3226b5c8 nobh_write_end -EXPORT_SYMBOL vmlinux 0x322afc79 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0x324b3877 up -EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src -EXPORT_SYMBOL vmlinux 0x325e4815 of_graph_get_remote_port_parent -EXPORT_SYMBOL vmlinux 0x32751233 tcp_init_sock -EXPORT_SYMBOL vmlinux 0x327d0907 tso_build_data -EXPORT_SYMBOL vmlinux 0x327e0c55 skb_queue_purge -EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string -EXPORT_SYMBOL vmlinux 0x3308a4f2 dquot_destroy -EXPORT_SYMBOL vmlinux 0x3318ef76 dev_driver_string -EXPORT_SYMBOL vmlinux 0x331c853d tty_schedule_flip -EXPORT_SYMBOL vmlinux 0x3334c333 lwtunnel_input -EXPORT_SYMBOL vmlinux 0x333cb37c __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0x33454b0d get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0x336133dd blk_mq_map_queue -EXPORT_SYMBOL vmlinux 0x33652799 mmc_set_blockcount -EXPORT_SYMBOL vmlinux 0x336e4d1d key_type_keyring -EXPORT_SYMBOL vmlinux 0x33785b93 inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x3378fced kernel_write -EXPORT_SYMBOL vmlinux 0x337fba89 pagecache_write_begin -EXPORT_SYMBOL vmlinux 0x338e19fa register_qdisc -EXPORT_SYMBOL vmlinux 0x339c6cb2 uart_get_divisor -EXPORT_SYMBOL vmlinux 0x33a0774b max8925_reg_read -EXPORT_SYMBOL vmlinux 0x33a7707b blk_free_tags -EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x33d21049 of_device_get_match_data -EXPORT_SYMBOL vmlinux 0x33e0311a phy_init_eee -EXPORT_SYMBOL vmlinux 0x33e2eb06 jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0x33f0511e netif_receive_skb -EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x33f0b626 page_readlink -EXPORT_SYMBOL vmlinux 0x33f989ca of_get_next_parent -EXPORT_SYMBOL vmlinux 0x33fa326d simple_open -EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r -EXPORT_SYMBOL vmlinux 0x344521cf nvm_dev_factory -EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin -EXPORT_SYMBOL vmlinux 0x3467254b page_symlink -EXPORT_SYMBOL vmlinux 0x347013de nla_validate -EXPORT_SYMBOL vmlinux 0x348b3744 input_open_device -EXPORT_SYMBOL vmlinux 0x34928f8e eth_gro_complete -EXPORT_SYMBOL vmlinux 0x349a3027 sk_net_capable -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x349d9fa2 load_nls_default -EXPORT_SYMBOL vmlinux 0x34e36b91 pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0x34ebf8cf nonseekable_open -EXPORT_SYMBOL vmlinux 0x34ed0493 crypto_sha1_update -EXPORT_SYMBOL vmlinux 0x34eef9d1 of_phy_connect -EXPORT_SYMBOL vmlinux 0x34ef873f inet6_del_protocol -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x34f72bf5 bio_integrity_free -EXPORT_SYMBOL vmlinux 0x350afcd4 udp_poll -EXPORT_SYMBOL vmlinux 0x35115362 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy -EXPORT_SYMBOL vmlinux 0x353e21e3 acpi_bios_warning -EXPORT_SYMBOL vmlinux 0x35447ed2 input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x35450978 inet_accept -EXPORT_SYMBOL vmlinux 0x3550ed11 ipv6_select_ident -EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x356baf58 vme_new_dma_list -EXPORT_SYMBOL vmlinux 0x356fb26c netif_schedule_queue -EXPORT_SYMBOL vmlinux 0x35870145 insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0x3590d9e4 locks_copy_lock -EXPORT_SYMBOL vmlinux 0x3599231b blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x35a673b2 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35c0fb26 posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x35e4d29d mmc_flush_cache -EXPORT_SYMBOL vmlinux 0x35efb599 jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x360f8f8a __cond_resched_lock -EXPORT_SYMBOL vmlinux 0x360ff19f down -EXPORT_SYMBOL vmlinux 0x3612f39b __skb_get_hash -EXPORT_SYMBOL vmlinux 0x362a7b33 netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0x364d2b35 __page_cache_alloc -EXPORT_SYMBOL vmlinux 0x366b9161 param_set_charp -EXPORT_SYMBOL vmlinux 0x3676ed0c netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x367f6f33 scsi_ioctl_reset -EXPORT_SYMBOL vmlinux 0x3682054c vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0x3687d45c mmc_interrupt_hpi -EXPORT_SYMBOL vmlinux 0x369e1115 kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0x36ba3687 jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc -EXPORT_SYMBOL vmlinux 0x36d3b27a input_register_handler -EXPORT_SYMBOL vmlinux 0x370f9850 efi -EXPORT_SYMBOL vmlinux 0x3715403c tcp_shutdown -EXPORT_SYMBOL vmlinux 0x372d5dd5 kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x374db27f input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x3750b9dd dmam_free_noncoherent -EXPORT_SYMBOL vmlinux 0x375babbd pcie_get_minimum_link -EXPORT_SYMBOL vmlinux 0x37750e4c nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0x378a05eb inode_init_owner -EXPORT_SYMBOL vmlinux 0x37a03830 dmam_release_declared_memory -EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date -EXPORT_SYMBOL vmlinux 0x37ea3a83 sock_get_timestamp -EXPORT_SYMBOL vmlinux 0x37ec7582 sock_kfree_s -EXPORT_SYMBOL vmlinux 0x37fc93b4 thaw_super -EXPORT_SYMBOL vmlinux 0x380ee87a abort_exclusive_wait -EXPORT_SYMBOL vmlinux 0x3818d75a kdb_current_task -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x38233b0a phy_stop -EXPORT_SYMBOL vmlinux 0x382e7421 should_remove_suid -EXPORT_SYMBOL vmlinux 0x3873f586 swiotlb_map_sg_attrs -EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list -EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38da68ed inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0x3905a0a6 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x3905fa17 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x390cb871 sk_free -EXPORT_SYMBOL vmlinux 0x39327445 security_path_rename -EXPORT_SYMBOL vmlinux 0x3935d4f2 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x393d4de9 crc32_le -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x39693e73 scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0x39768f60 input_unregister_device -EXPORT_SYMBOL vmlinux 0x39919cc3 fb_set_var -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39b575de dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x39ebbf49 pci_pme_capable -EXPORT_SYMBOL vmlinux 0x3a166d14 of_find_node_by_name -EXPORT_SYMBOL vmlinux 0x3a2d3055 skb_make_writable -EXPORT_SYMBOL vmlinux 0x3a3bdf8e inet6_add_offload -EXPORT_SYMBOL vmlinux 0x3a5c2d94 dev_deactivate -EXPORT_SYMBOL vmlinux 0x3a602689 qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x3a617da7 bdev_read_only -EXPORT_SYMBOL vmlinux 0x3a66f929 param_get_charp -EXPORT_SYMBOL vmlinux 0x3a7ff72f sock_create_lite -EXPORT_SYMBOL vmlinux 0x3a929b8b get_thermal_instance -EXPORT_SYMBOL vmlinux 0x3a975923 up_write -EXPORT_SYMBOL vmlinux 0x3a9ad70c find_vma -EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region -EXPORT_SYMBOL vmlinux 0x3a9c1336 iov_iter_copy_from_user_atomic -EXPORT_SYMBOL vmlinux 0x3a9cc301 d_lookup -EXPORT_SYMBOL vmlinux 0x3aa0ab46 scsi_execute -EXPORT_SYMBOL vmlinux 0x3aaf109c inet6_del_offload -EXPORT_SYMBOL vmlinux 0x3aafdf28 param_set_copystring -EXPORT_SYMBOL vmlinux 0x3ab41b25 __copy_in_user -EXPORT_SYMBOL vmlinux 0x3ac1209e dm_kobject_release -EXPORT_SYMBOL vmlinux 0x3aeaed27 vfs_read -EXPORT_SYMBOL vmlinux 0x3af356e6 dev_get_flags -EXPORT_SYMBOL vmlinux 0x3b300948 percpu_counter_set -EXPORT_SYMBOL vmlinux 0x3b54f5e5 tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0x3b5c5448 abx500_mask_and_set_register_interruptible -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b667bb9 __free_pages -EXPORT_SYMBOL vmlinux 0x3b7aa2f4 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0x3b862a12 release_sock -EXPORT_SYMBOL vmlinux 0x3bf092c6 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0x3c00ca46 pnp_is_active -EXPORT_SYMBOL vmlinux 0x3c24ec3f __blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x3c2c504f ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c483012 radix_tree_delete -EXPORT_SYMBOL vmlinux 0x3c5d729b phy_detach -EXPORT_SYMBOL vmlinux 0x3c767b3b pnp_request_card_device -EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull -EXPORT_SYMBOL vmlinux 0x3c873cd0 i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0x3c88318a uart_resume_port -EXPORT_SYMBOL vmlinux 0x3c9b9b19 abx500_remove_ops -EXPORT_SYMBOL vmlinux 0x3ca08957 compat_tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x3cc0f305 simple_unlink -EXPORT_SYMBOL vmlinux 0x3cdf5e60 dm_ratelimit_state -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3cf1107d udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0x3cfae893 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0x3d093081 __percpu_counter_add -EXPORT_SYMBOL vmlinux 0x3d202708 cdev_alloc -EXPORT_SYMBOL vmlinux 0x3d216d43 md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0x3d2e394d simple_transaction_read -EXPORT_SYMBOL vmlinux 0x3d6617cb down_write_trylock -EXPORT_SYMBOL vmlinux 0x3d84bbbb dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0x3d88aada ppp_input_error -EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page -EXPORT_SYMBOL vmlinux 0x3dab4885 scsi_host_set_state -EXPORT_SYMBOL vmlinux 0x3dbf36c9 sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x3dc8d095 phy_find_first -EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3df5eba7 mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0x3df8d990 md_cluster_mod -EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3dfec28c seq_path -EXPORT_SYMBOL vmlinux 0x3e045761 xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x3e145410 __init_rwsem -EXPORT_SYMBOL vmlinux 0x3e1d3345 on_each_cpu_mask -EXPORT_SYMBOL vmlinux 0x3e29cc62 napi_gro_frags -EXPORT_SYMBOL vmlinux 0x3e40f43a napi_get_frags -EXPORT_SYMBOL vmlinux 0x3e4a11a7 disk_stack_limits -EXPORT_SYMBOL vmlinux 0x3e4e2ebc of_find_all_nodes -EXPORT_SYMBOL vmlinux 0x3e585424 __cleancache_get_page -EXPORT_SYMBOL vmlinux 0x3e5f0db1 serio_unregister_driver -EXPORT_SYMBOL vmlinux 0x3e65b373 xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0x3e6f361f bio_endio -EXPORT_SYMBOL vmlinux 0x3e7b3a63 mdio_bus_type -EXPORT_SYMBOL vmlinux 0x3e8b8d00 __blk_run_queue -EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get -EXPORT_SYMBOL vmlinux 0x3ea7c9aa jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x3ebb4814 __sock_create -EXPORT_SYMBOL vmlinux 0x3ed4041c nf_unregister_hook -EXPORT_SYMBOL vmlinux 0x3f113d71 inet_frag_maybe_warn_overflow -EXPORT_SYMBOL vmlinux 0x3f150024 __kfree_skb -EXPORT_SYMBOL vmlinux 0x3f369644 param_array_ops -EXPORT_SYMBOL vmlinux 0x3f377205 twl6040_get_pll -EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f45aff6 devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0x3f54f712 lease_get_mtime -EXPORT_SYMBOL vmlinux 0x3faaee6b free_buffer_head -EXPORT_SYMBOL vmlinux 0x3fccdc32 scsi_ioctl -EXPORT_SYMBOL vmlinux 0x3fe1e081 skb_append_datato_frags -EXPORT_SYMBOL vmlinux 0x3fe24aec skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight -EXPORT_SYMBOL vmlinux 0x3fe600b9 kill_fasync -EXPORT_SYMBOL vmlinux 0x3fec048f sg_next -EXPORT_SYMBOL vmlinux 0x40018653 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x4005f1dc free_task -EXPORT_SYMBOL vmlinux 0x40097573 dev_mc_add -EXPORT_SYMBOL vmlinux 0x4011b71a input_get_keycode -EXPORT_SYMBOL vmlinux 0x401a51f4 bio_integrity_advance -EXPORT_SYMBOL vmlinux 0x402b8281 __request_module -EXPORT_SYMBOL vmlinux 0x4034cc43 __pagevec_lru_add -EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev -EXPORT_SYMBOL vmlinux 0x403e20c4 of_get_named_gpio_flags -EXPORT_SYMBOL vmlinux 0x40447660 generic_setxattr -EXPORT_SYMBOL vmlinux 0x404bedf1 xfrm_prepare_input -EXPORT_SYMBOL vmlinux 0x4058367a bdi_init -EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40b4cfdd scm_fp_dup -EXPORT_SYMBOL vmlinux 0x40bd07a6 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0x40c64ef1 set_create_files_as -EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40c89d46 acpi_get_table_by_index -EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40dfab33 km_policy_expired -EXPORT_SYMBOL vmlinux 0x40edf978 phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0x4105fac9 of_get_child_by_name -EXPORT_SYMBOL vmlinux 0x4107b6e2 scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0x410f4bb7 __irq_regs -EXPORT_SYMBOL vmlinux 0x41204efc netdev_state_change -EXPORT_SYMBOL vmlinux 0x41301aed dquot_commit_info -EXPORT_SYMBOL vmlinux 0x41345a4b __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x414907f3 md_set_array_sectors -EXPORT_SYMBOL vmlinux 0x41494563 ip_options_compile -EXPORT_SYMBOL vmlinux 0x41507ac6 blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0x4158ffeb jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0x416570ad pci_release_regions -EXPORT_SYMBOL vmlinux 0x417c5102 inet_frags_fini -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x418af655 tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x419079df ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0x419a3bf2 generic_permission -EXPORT_SYMBOL vmlinux 0x41a3fbf1 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x41a9b68a xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x41ab6cae scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0x41ad8807 blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0x41baf194 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0x41c89bb9 memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0x41d4fc36 skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0x41e168e1 consume_skb -EXPORT_SYMBOL vmlinux 0x41ffb6c1 scsi_print_result -EXPORT_SYMBOL vmlinux 0x4206e421 inet6_register_icmp_sender -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x4231ac20 inet6_register_protosw -EXPORT_SYMBOL vmlinux 0x42350e8d ucs2_strlen -EXPORT_SYMBOL vmlinux 0x4235bf50 add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x42492fc5 i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0x424d25be of_dev_put -EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x4261d483 scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x426a8ac5 cpu_active_mask -EXPORT_SYMBOL vmlinux 0x427d8b75 inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0x428deca6 security_path_mknod -EXPORT_SYMBOL vmlinux 0x42986ed6 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x42a50a17 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0x42ae5af0 dqstats -EXPORT_SYMBOL vmlinux 0x42b513fd xfrm_register_km -EXPORT_SYMBOL vmlinux 0x42bed478 padata_do_serial -EXPORT_SYMBOL vmlinux 0x42c5e515 param_ops_charp -EXPORT_SYMBOL vmlinux 0x42dcbcb5 bio_integrity_trim -EXPORT_SYMBOL vmlinux 0x42e0ee13 blk_end_request_all -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x433c5b95 dm_put_device -EXPORT_SYMBOL vmlinux 0x43454c5d blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x436a0097 pnp_unregister_driver -EXPORT_SYMBOL vmlinux 0x436b5db1 dev_get_nest_level -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x4398763a delete_from_page_cache -EXPORT_SYMBOL vmlinux 0x43c05757 nd_device_register -EXPORT_SYMBOL vmlinux 0x43d98e85 ns_capable -EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x44081a4b security_mmap_file -EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed -EXPORT_SYMBOL vmlinux 0x441ca285 scsi_host_get -EXPORT_SYMBOL vmlinux 0x444e0ad1 scsi_execute_req_flags -EXPORT_SYMBOL vmlinux 0x444e0e2f alloc_anon_inode -EXPORT_SYMBOL vmlinux 0x4463bc8f dev_load -EXPORT_SYMBOL vmlinux 0x446902ca ether_setup -EXPORT_SYMBOL vmlinux 0x448eac3e kmemdup -EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp -EXPORT_SYMBOL vmlinux 0x449d1ca8 neigh_direct_output -EXPORT_SYMBOL vmlinux 0x44a37e36 nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0x44a81d5f acpi_evaluate_object -EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x44be5e6b sg_miter_next -EXPORT_SYMBOL vmlinux 0x44c1aeb8 skb_tx_error -EXPORT_SYMBOL vmlinux 0x44db61ae get_user_pages_locked -EXPORT_SYMBOL vmlinux 0x44e09826 simple_follow_link -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle -EXPORT_SYMBOL vmlinux 0x450908c0 __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x4515a98f simple_lookup -EXPORT_SYMBOL vmlinux 0x451a366f scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x451ed034 pipe_lock -EXPORT_SYMBOL vmlinux 0x4528d6fc tso_start -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x45746687 sync_inode -EXPORT_SYMBOL vmlinux 0x4576a806 pcie_get_mps -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x457a8339 rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0x45a55ec8 __iounmap -EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource -EXPORT_SYMBOL vmlinux 0x45b27cd6 twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0x45b33909 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0x45c0f3d8 mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x45c2329c unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x45f1e873 skb_clone -EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x461d376d __cleancache_put_page -EXPORT_SYMBOL vmlinux 0x462c660f proc_dointvec -EXPORT_SYMBOL vmlinux 0x4638a108 force_sig -EXPORT_SYMBOL vmlinux 0x46462fc0 simple_statfs -EXPORT_SYMBOL vmlinux 0x4646a1a1 gen_pool_add_virt -EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set -EXPORT_SYMBOL vmlinux 0x46665cdd mutex_lock -EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0x469b9a41 set_page_dirty -EXPORT_SYMBOL vmlinux 0x469e1ff1 mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0x46afb265 read_cache_page -EXPORT_SYMBOL vmlinux 0x46b3f54a param_set_int -EXPORT_SYMBOL vmlinux 0x46b7f5fd dma_alloc_from_coherent -EXPORT_SYMBOL vmlinux 0x46bb2ef2 remove_arg_zero -EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance -EXPORT_SYMBOL vmlinux 0x46e10302 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg -EXPORT_SYMBOL vmlinux 0x470c2ebb iov_iter_npages -EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x474462cc __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x474f0395 dev_alert -EXPORT_SYMBOL vmlinux 0x475f010b acpi_purge_cached_objects -EXPORT_SYMBOL vmlinux 0x4761aa7c pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0x4765c2fc mmc_can_erase -EXPORT_SYMBOL vmlinux 0x4782f151 __skb_get_hash_flowi6 -EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit -EXPORT_SYMBOL vmlinux 0x47b8a597 tcp_disconnect -EXPORT_SYMBOL vmlinux 0x47c966d7 truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0x47ecec86 xfrm4_prepare_output -EXPORT_SYMBOL vmlinux 0x47fa92cf jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open -EXPORT_SYMBOL vmlinux 0x481cb9ab acpi_enter_sleep_state_prep -EXPORT_SYMBOL vmlinux 0x4822a9c8 qdisc_watchdog_schedule_ns -EXPORT_SYMBOL vmlinux 0x4829a47e memcpy -EXPORT_SYMBOL vmlinux 0x482decda of_find_node_by_phandle -EXPORT_SYMBOL vmlinux 0x4841bdee strnchr -EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days -EXPORT_SYMBOL vmlinux 0x48638875 neigh_table_clear -EXPORT_SYMBOL vmlinux 0x486691b0 __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x48708a93 node_data -EXPORT_SYMBOL vmlinux 0x488e5ec3 d_splice_alias -EXPORT_SYMBOL vmlinux 0x489f893d sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x48a66368 udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48cd2ef4 blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x48d36929 acpi_bus_unregister_driver -EXPORT_SYMBOL vmlinux 0x48df822c inetdev_by_index -EXPORT_SYMBOL vmlinux 0x48f2f15d xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0x48f7b341 get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x4931955d devm_release_resource -EXPORT_SYMBOL vmlinux 0x494de405 phy_start_interrupts -EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init -EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data -EXPORT_SYMBOL vmlinux 0x496a669a blk_end_request -EXPORT_SYMBOL vmlinux 0x49706c6f vga_get -EXPORT_SYMBOL vmlinux 0x49737c18 of_count_phandle_with_args -EXPORT_SYMBOL vmlinux 0x49930938 idr_replace -EXPORT_SYMBOL vmlinux 0x49a9585e dcb_getapp -EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan -EXPORT_SYMBOL vmlinux 0x49e4dede pcim_iomap_table -EXPORT_SYMBOL vmlinux 0x49e59ef4 md_error -EXPORT_SYMBOL vmlinux 0x49e6dfad inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many -EXPORT_SYMBOL vmlinux 0x4a09b319 tcp_poll -EXPORT_SYMBOL vmlinux 0x4a2ad781 reservation_object_add_excl_fence -EXPORT_SYMBOL vmlinux 0x4a32551b tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0x4a3c0164 cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0x4a40c05e iterate_mounts -EXPORT_SYMBOL vmlinux 0x4a47c348 dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0x4a559419 down_read_trylock -EXPORT_SYMBOL vmlinux 0x4a6593dd __d_drop -EXPORT_SYMBOL vmlinux 0x4a7ef7c1 gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0x4a8961f5 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x4aa24faa dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk -EXPORT_SYMBOL vmlinux 0x4acd187d dquot_release -EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource -EXPORT_SYMBOL vmlinux 0x4ad817bc __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0x4ade9174 tcp_read_sock -EXPORT_SYMBOL vmlinux 0x4ae60802 simple_getattr -EXPORT_SYMBOL vmlinux 0x4afa7ce2 acpi_pm_device_sleep_state -EXPORT_SYMBOL vmlinux 0x4afb9cbb vga_client_register -EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize -EXPORT_SYMBOL vmlinux 0x4b075463 freezing_slow_path -EXPORT_SYMBOL vmlinux 0x4b0f6c37 clk_register_clkdevs -EXPORT_SYMBOL vmlinux 0x4b12badb dev_activate -EXPORT_SYMBOL vmlinux 0x4b369ac9 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x4b5d4ecb __kernel_write -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b939bcb pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0x4b9bae6f nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x4b9bd599 tty_hangup -EXPORT_SYMBOL vmlinux 0x4ba678fe tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get -EXPORT_SYMBOL vmlinux 0x4bbc3097 generic_listxattr -EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance -EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf -EXPORT_SYMBOL vmlinux 0x4c489be3 dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x4c5b7b64 pcie_set_mps -EXPORT_SYMBOL vmlinux 0x4c6db19e ps2_init -EXPORT_SYMBOL vmlinux 0x4c6f9ef3 test_and_change_bit -EXPORT_SYMBOL vmlinux 0x4c798420 tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0x4c7f937f tcp_prot -EXPORT_SYMBOL vmlinux 0x4c833f9e __blk_end_request -EXPORT_SYMBOL vmlinux 0x4ca9669f scnprintf -EXPORT_SYMBOL vmlinux 0x4ccb992f first_ec -EXPORT_SYMBOL vmlinux 0x4cd7bc79 inet_register_protosw -EXPORT_SYMBOL vmlinux 0x4cdb0a2c tty_port_hangup -EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval -EXPORT_SYMBOL vmlinux 0x4cdfea47 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x4cea1ed0 pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0x4cfd476e vme_slot_num -EXPORT_SYMBOL vmlinux 0x4cfde270 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x4d023fe9 generic_setlease -EXPORT_SYMBOL vmlinux 0x4d08db55 qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0x4d0af15e search_binary_handler -EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page -EXPORT_SYMBOL vmlinux 0x4d2e106b input_close_device -EXPORT_SYMBOL vmlinux 0x4d40101a msm_pinctrl_remove -EXPORT_SYMBOL vmlinux 0x4d4ed98d blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0x4d5130a2 tcp_hashinfo -EXPORT_SYMBOL vmlinux 0x4d5db873 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0x4d6aecd2 touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x4d91e400 vfs_getattr -EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4d9fbf4e tty_check_change -EXPORT_SYMBOL vmlinux 0x4dab000f swiotlb_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x4db3146f generic_end_io_acct -EXPORT_SYMBOL vmlinux 0x4dbe9057 xfrm_state_update -EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x4de6199c unregister_console -EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse -EXPORT_SYMBOL vmlinux 0x4df2b4db blk_get_request -EXPORT_SYMBOL vmlinux 0x4df3152d jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x4df8b45a bdi_register_owner -EXPORT_SYMBOL vmlinux 0x4e00ae1c mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0x4e2b0225 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x4e31a08c dquot_initialize -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e4fc29d pci_lost_interrupt -EXPORT_SYMBOL vmlinux 0x4e5def46 __frontswap_store -EXPORT_SYMBOL vmlinux 0x4e5e49ea scsi_host_lookup -EXPORT_SYMBOL vmlinux 0x4e5fde2a tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x4e62fcf8 acpi_bus_get_device -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e74f0f5 do_SAK -EXPORT_SYMBOL vmlinux 0x4e8d95cc __wait_on_buffer -EXPORT_SYMBOL vmlinux 0x4e921b29 tty_port_close -EXPORT_SYMBOL vmlinux 0x4e9dffb5 ip_fast_csum -EXPORT_SYMBOL vmlinux 0x4ebff823 tcp_check_req -EXPORT_SYMBOL vmlinux 0x4ee4c69d swiotlb_map_sg -EXPORT_SYMBOL vmlinux 0x4ee5d942 simple_setattr -EXPORT_SYMBOL vmlinux 0x4eea8568 blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x4f0f34d6 __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0x4f1c57d6 mmc_gpio_request_cd -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse -EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command -EXPORT_SYMBOL vmlinux 0x4f4cd58b copy_strings_kernel -EXPORT_SYMBOL vmlinux 0x4f58c096 prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0x4f660990 pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday -EXPORT_SYMBOL vmlinux 0x4f783f30 acpi_read -EXPORT_SYMBOL vmlinux 0x4f79dd6e nla_reserve -EXPORT_SYMBOL vmlinux 0x4f7a4827 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0x4f827934 dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0x4fbc3b06 bioset_integrity_create -EXPORT_SYMBOL vmlinux 0x4fea8c1b __break_lease -EXPORT_SYMBOL vmlinux 0x4ffa80f1 unlink_framebuffer -EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security -EXPORT_SYMBOL vmlinux 0x502d2068 set_cached_acl -EXPORT_SYMBOL vmlinux 0x503463c2 dquot_quotactl_ops -EXPORT_SYMBOL vmlinux 0x50511e41 pagevec_lookup -EXPORT_SYMBOL vmlinux 0x50542d11 wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0x50627174 seq_escape -EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x5086f531 make_bad_inode -EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method -EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch -EXPORT_SYMBOL vmlinux 0x50adefb7 blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0x50ba769a kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x50f9b5ab kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0x510162b4 keyring_clear -EXPORT_SYMBOL vmlinux 0x51164ad9 cmdline_parts_set -EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0x51355b30 mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0x513941c0 neigh_event_ns -EXPORT_SYMBOL vmlinux 0x5164d248 blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0x516e223f register_md_personality -EXPORT_SYMBOL vmlinux 0x5172dc07 ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0x51749fc8 _raw_read_lock_irq -EXPORT_SYMBOL vmlinux 0x51782d5b md_register_thread -EXPORT_SYMBOL vmlinux 0x51817d56 tty_do_resize -EXPORT_SYMBOL vmlinux 0x51ab6910 set_security_override -EXPORT_SYMBOL vmlinux 0x51c46441 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled -EXPORT_SYMBOL vmlinux 0x51d4c992 skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid -EXPORT_SYMBOL vmlinux 0x51e7c552 phy_start -EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str -EXPORT_SYMBOL vmlinux 0x52095e19 acpi_get_data -EXPORT_SYMBOL vmlinux 0x52130046 acpi_check_address_range -EXPORT_SYMBOL vmlinux 0x521773c1 generic_readlink -EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0x5239ce3b ___ratelimit -EXPORT_SYMBOL vmlinux 0x52522cd5 of_device_is_compatible -EXPORT_SYMBOL vmlinux 0x525248c0 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x5257da28 kfree_put_link -EXPORT_SYMBOL vmlinux 0x525e026f acpi_os_unmap_generic_address -EXPORT_SYMBOL vmlinux 0x5264f1aa phy_write_mmd_indirect -EXPORT_SYMBOL vmlinux 0x52920e9a genphy_suspend -EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x52c32450 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0x52e54430 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x52ec184f eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x52f9b14f vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0x5302b8b2 bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x530a870d vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x532c102d __skb_tx_hash -EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x534ed45e inet6_getname -EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0x536bba1e compat_nf_setsockopt -EXPORT_SYMBOL vmlinux 0x536cc847 memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0x5372ca1a dmam_alloc_noncoherent -EXPORT_SYMBOL vmlinux 0x5377e556 hex2bin -EXPORT_SYMBOL vmlinux 0x537c01bd jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0x53979cd7 tcp_seq_open -EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x53b4cd97 d_make_root -EXPORT_SYMBOL vmlinux 0x53e876f7 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0x53e9ec5d dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x53eccdf2 inet_offloads -EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x5425f2ac __frontswap_test -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x5448d916 user_path_at_empty -EXPORT_SYMBOL vmlinux 0x544b0c11 acpi_lid_notifier_register -EXPORT_SYMBOL vmlinux 0x54579619 seq_read -EXPORT_SYMBOL vmlinux 0x545b1989 nf_getsockopt -EXPORT_SYMBOL vmlinux 0x5460794b phy_ethtool_sset -EXPORT_SYMBOL vmlinux 0x5467b15c dev_set_mtu -EXPORT_SYMBOL vmlinux 0x54737ce1 rt6_lookup -EXPORT_SYMBOL vmlinux 0x549faaa9 security_path_rmdir -EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul -EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window -EXPORT_SYMBOL vmlinux 0x54d4bded ida_init -EXPORT_SYMBOL vmlinux 0x54d5e356 cdrom_check_events -EXPORT_SYMBOL vmlinux 0x54d7d71e sock_wmalloc -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x550f139f unlock_page -EXPORT_SYMBOL vmlinux 0x551577b1 current_fs_time -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu -EXPORT_SYMBOL vmlinux 0x55467f96 locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0x55516d0b free_netdev -EXPORT_SYMBOL vmlinux 0x5559db7e ilookup5_nowait -EXPORT_SYMBOL vmlinux 0x556112ae fence_signal_locked -EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat -EXPORT_SYMBOL vmlinux 0x558cdc58 pnp_device_detach -EXPORT_SYMBOL vmlinux 0x559268b2 elv_rb_former_request -EXPORT_SYMBOL vmlinux 0x559cdf15 abx500_register_ops -EXPORT_SYMBOL vmlinux 0x55a7a8b1 devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x55b19164 mmc_detect_change -EXPORT_SYMBOL vmlinux 0x55c16c5e __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x55d96bb1 tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0x55f5019b __kmalloc_node -EXPORT_SYMBOL vmlinux 0x56054634 loop_backing_file -EXPORT_SYMBOL vmlinux 0x562f0f22 ida_simple_remove -EXPORT_SYMBOL vmlinux 0x56342ce1 down_timeout -EXPORT_SYMBOL vmlinux 0x5634596c tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x564937b4 led_update_brightness -EXPORT_SYMBOL vmlinux 0x565bd8ca param_set_long -EXPORT_SYMBOL vmlinux 0x567856e7 neigh_seq_next -EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames -EXPORT_SYMBOL vmlinux 0x56903e7d xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0x56a177c4 blkdev_get -EXPORT_SYMBOL vmlinux 0x56b22ae3 neigh_resolve_output -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56d060cf sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0x56dccb7d fb_firmware_edid -EXPORT_SYMBOL vmlinux 0x56e27f00 file_ns_capable -EXPORT_SYMBOL vmlinux 0x56fdc9e7 skb_store_bits -EXPORT_SYMBOL vmlinux 0x5717dc9a tcp_close -EXPORT_SYMBOL vmlinux 0x5720053a twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0x572d0104 _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x5753b151 scsi_unregister -EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x576973c0 sock_i_ino -EXPORT_SYMBOL vmlinux 0x57702579 pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x577d35f3 hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy -EXPORT_SYMBOL vmlinux 0x5793446d blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x579a9b0d vfs_rmdir -EXPORT_SYMBOL vmlinux 0x579c3aff of_get_parent -EXPORT_SYMBOL vmlinux 0x57a0899a acl_by_type -EXPORT_SYMBOL vmlinux 0x57a8792d walk_stackframe -EXPORT_SYMBOL vmlinux 0x57bf39ca neigh_table_init -EXPORT_SYMBOL vmlinux 0x57f40cb8 free_page_put_link -EXPORT_SYMBOL vmlinux 0x57fc00c2 truncate_pagecache -EXPORT_SYMBOL vmlinux 0x57fe14dd fbcon_rotate_ccw -EXPORT_SYMBOL vmlinux 0x581baca0 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0x581bb64d lockref_mark_dead -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x58302066 scsi_remove_target -EXPORT_SYMBOL vmlinux 0x5831c24d iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x58399d9e xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x584cd0cd sk_wait_data -EXPORT_SYMBOL vmlinux 0x58604e4d alloc_iova_mem -EXPORT_SYMBOL vmlinux 0x586e26be request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x58741a61 of_device_is_available -EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat -EXPORT_SYMBOL vmlinux 0x5892ce44 unregister_qdisc -EXPORT_SYMBOL vmlinux 0x58a4a437 lwtunnel_fill_encap -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58d75f2d finish_open -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x590f10e4 nvdimm_revalidate_disk -EXPORT_SYMBOL vmlinux 0x591a0b59 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x592be593 blk_queue_invalidate_tags -EXPORT_SYMBOL vmlinux 0x594d310d flush_old_exec -EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x59a2d3e5 pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release -EXPORT_SYMBOL vmlinux 0x59c63889 bio_add_page -EXPORT_SYMBOL vmlinux 0x59d46e16 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x59d7a74e bio_clone_fast -EXPORT_SYMBOL vmlinux 0x59fbe9ce mmc_can_discard -EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a174f47 ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0x5a22d60b sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0x5a277d6b mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0x5a471972 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0x5a76b610 netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x5a7aa4b1 mmc_align_data_size -EXPORT_SYMBOL vmlinux 0x5a921311 strncmp -EXPORT_SYMBOL vmlinux 0x5a9c9cf3 lg_lock_init -EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove -EXPORT_SYMBOL vmlinux 0x5aa23dc3 kernel_getsockname -EXPORT_SYMBOL vmlinux 0x5aa8b059 phy_start_aneg -EXPORT_SYMBOL vmlinux 0x5ab2f448 netdev_boot_setup_check -EXPORT_SYMBOL vmlinux 0x5ac31e77 inode_get_bytes -EXPORT_SYMBOL vmlinux 0x5ace3709 kernel_getsockopt -EXPORT_SYMBOL vmlinux 0x5ace77ca posix_unblock_lock -EXPORT_SYMBOL vmlinux 0x5af5e2d7 skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get -EXPORT_SYMBOL vmlinux 0x5b0e498b account_page_redirty -EXPORT_SYMBOL vmlinux 0x5b0fddd2 kfree_skb -EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap -EXPORT_SYMBOL vmlinux 0x5b68672a sget_userns -EXPORT_SYMBOL vmlinux 0x5b7d9f91 tcp_ioctl -EXPORT_SYMBOL vmlinux 0x5b9c808a acpi_get_possible_resources -EXPORT_SYMBOL vmlinux 0x5b9ee473 blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0x5bb1b13f from_kgid_munged -EXPORT_SYMBOL vmlinux 0x5bc10524 printk_emit -EXPORT_SYMBOL vmlinux 0x5bd29870 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x5be4c28d sock_efree -EXPORT_SYMBOL vmlinux 0x5beec4d3 balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0x5c0442fd acpi_gbl_FADT -EXPORT_SYMBOL vmlinux 0x5c157375 submit_bio -EXPORT_SYMBOL vmlinux 0x5c34f255 mem_cgroup_begin_page_stat -EXPORT_SYMBOL vmlinux 0x5c3fecff unregister_binfmt -EXPORT_SYMBOL vmlinux 0x5c8d2a09 max8925_set_bits -EXPORT_SYMBOL vmlinux 0x5c9fff76 dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0x5ca8813f mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0x5cc5b8c6 devm_ioremap -EXPORT_SYMBOL vmlinux 0x5ccf66ca swiotlb_alloc_coherent -EXPORT_SYMBOL vmlinux 0x5cd885d5 _raw_spin_lock -EXPORT_SYMBOL vmlinux 0x5cdcbade blk_recount_segments -EXPORT_SYMBOL vmlinux 0x5ce25416 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5d1010a4 fbcon_set_tileops -EXPORT_SYMBOL vmlinux 0x5d112304 __memcpy_fromio -EXPORT_SYMBOL vmlinux 0x5d141841 poll_freewait -EXPORT_SYMBOL vmlinux 0x5d227bdf generic_writepages -EXPORT_SYMBOL vmlinux 0x5d32bcda of_find_matching_node_and_match -EXPORT_SYMBOL vmlinux 0x5d3979fd acpi_match_device_ids -EXPORT_SYMBOL vmlinux 0x5d41766b of_find_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain -EXPORT_SYMBOL vmlinux 0x5d55bece jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x5d74dbcf pnp_range_reserved -EXPORT_SYMBOL vmlinux 0x5d8e60db register_filesystem -EXPORT_SYMBOL vmlinux 0x5d92501a devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x5d99f291 input_set_abs_params -EXPORT_SYMBOL vmlinux 0x5da12a4d dentry_path_raw -EXPORT_SYMBOL vmlinux 0x5de2d3c8 ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0x5de40f50 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0x5de7240b dm_io -EXPORT_SYMBOL vmlinux 0x5df7eef4 dquot_acquire -EXPORT_SYMBOL vmlinux 0x5e2783c0 netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0x5e2914b0 lwtunnel_cmp_encap -EXPORT_SYMBOL vmlinux 0x5e2d34f1 security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0x5e39da61 pci_iomap -EXPORT_SYMBOL vmlinux 0x5e61a344 xfrm_input_resume -EXPORT_SYMBOL vmlinux 0x5e61e9a4 dev_crit -EXPORT_SYMBOL vmlinux 0x5e639648 dmam_free_coherent -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5e97243a devm_iounmap -EXPORT_SYMBOL vmlinux 0x5e9fc5a7 dump_align -EXPORT_SYMBOL vmlinux 0x5ea79efe fence_default_wait -EXPORT_SYMBOL vmlinux 0x5eaf7ccd sync_filesystem -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ec30466 of_clk_get -EXPORT_SYMBOL vmlinux 0x5ecf6e5c tty_port_close_start -EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5edfbc93 ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0x5eef1cf4 vc_resize -EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 -EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f172abc phy_resume -EXPORT_SYMBOL vmlinux 0x5f1a2c52 mdiobus_read -EXPORT_SYMBOL vmlinux 0x5f55145f request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x5f5a156b nf_hook_slow -EXPORT_SYMBOL vmlinux 0x5f65f9f9 neigh_changeaddr -EXPORT_SYMBOL vmlinux 0x5f7171d8 ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0x5f72e8d0 blk_queue_split -EXPORT_SYMBOL vmlinux 0x5f793de0 blk_integrity_merge_rq -EXPORT_SYMBOL vmlinux 0x5f79b9a4 rwsem_down_write_failed -EXPORT_SYMBOL vmlinux 0x5fa02600 fsnotify_get_group -EXPORT_SYMBOL vmlinux 0x5fa37f51 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x5fbc49e0 iget_locked -EXPORT_SYMBOL vmlinux 0x5fcdbd07 con_set_default_unimap -EXPORT_SYMBOL vmlinux 0x5fd301e1 dcache_readdir -EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat -EXPORT_SYMBOL vmlinux 0x5ff85a0b scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x5ffcab4e pci_unmap_rom -EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool -EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x602ed00d acpi_current_gpe_count -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x60439055 free_xenballooned_pages -EXPORT_SYMBOL vmlinux 0x60509fb6 dev_add_pack -EXPORT_SYMBOL vmlinux 0x6051534d bdget_disk -EXPORT_SYMBOL vmlinux 0x606603c6 __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number -EXPORT_SYMBOL vmlinux 0x607173f8 of_graph_get_next_endpoint -EXPORT_SYMBOL vmlinux 0x60851cd4 __sb_start_write -EXPORT_SYMBOL vmlinux 0x608be832 tcf_hash_create -EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector -EXPORT_SYMBOL vmlinux 0x60918007 ip_check_defrag -EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x609f5b35 ucs2_strnlen -EXPORT_SYMBOL vmlinux 0x60b102fd vfs_unlink -EXPORT_SYMBOL vmlinux 0x60c81df3 genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x60cfc5af dev_uc_flush -EXPORT_SYMBOL vmlinux 0x60dd09e2 security_path_chown -EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x60e7a330 tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x60e8fc1f ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0x60fddac0 cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0x610f8846 __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x610ff7a7 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x611a3e8a led_blink_set -EXPORT_SYMBOL vmlinux 0x611d0dbb netdev_emerg -EXPORT_SYMBOL vmlinux 0x611fd0ad blk_queue_stack_limits -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x613066c2 neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0x614bb773 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x61520529 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0x61599075 softnet_data -EXPORT_SYMBOL vmlinux 0x618911fc numa_node -EXPORT_SYMBOL vmlinux 0x618bf215 key_alloc -EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61cbb4a7 generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x61d45e70 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x61df81e8 filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0x61ef6170 __tracepoint_fence_emit -EXPORT_SYMBOL vmlinux 0x61fea9a6 security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x6225637e md5_transform -EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x622ae334 pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0x622fcf0c call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0x625f9c62 md_update_sb -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x62748e70 acpi_set_current_resources -EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x62aa27d7 param_set_byte -EXPORT_SYMBOL vmlinux 0x62c73ba2 __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0x62e3fef3 __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0x63033bd2 ata_std_end_eh -EXPORT_SYMBOL vmlinux 0x631673fa mount_pseudo -EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled -EXPORT_SYMBOL vmlinux 0x632ec01a ip_route_input_noref -EXPORT_SYMBOL vmlinux 0x63528915 mapping_tagged -EXPORT_SYMBOL vmlinux 0x6356ffd7 ab3100_event_unregister -EXPORT_SYMBOL vmlinux 0x635c69eb mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0x6369a0d5 jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0x63758c92 jbd2_journal_load -EXPORT_SYMBOL vmlinux 0x638fcd17 dev_uc_unsync -EXPORT_SYMBOL vmlinux 0x63a01291 acpi_leave_sleep_state_prep -EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63f9ebeb vfs_readf -EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user -EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure -EXPORT_SYMBOL vmlinux 0x6408d782 lwtunnel_encap_del_ops -EXPORT_SYMBOL vmlinux 0x64107392 nvm_put_blk_unlocked -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x641464c0 inet_add_offload -EXPORT_SYMBOL vmlinux 0x64361eea __napi_complete -EXPORT_SYMBOL vmlinux 0x6449fd41 acpi_install_address_space_handler -EXPORT_SYMBOL vmlinux 0x64526361 tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0x647948dd kern_path -EXPORT_SYMBOL vmlinux 0x647a64b3 pnp_register_driver -EXPORT_SYMBOL vmlinux 0x647ef7b6 d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x6480abd2 inet_del_offload -EXPORT_SYMBOL vmlinux 0x648ff040 __splice_from_pipe -EXPORT_SYMBOL vmlinux 0x649849ad request_key_async -EXPORT_SYMBOL vmlinux 0x6498689d __ip_dev_find -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x64b27394 serio_rescan -EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape -EXPORT_SYMBOL vmlinux 0x64eac6cd __f_setown -EXPORT_SYMBOL vmlinux 0x64f60499 pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x64f85019 scsi_device_put -EXPORT_SYMBOL vmlinux 0x64fa7693 __acpi_handle_debug -EXPORT_SYMBOL vmlinux 0x64ff5def xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth -EXPORT_SYMBOL vmlinux 0x6518e2e9 phy_stop_interrupts -EXPORT_SYMBOL vmlinux 0x651a4139 test_taint -EXPORT_SYMBOL vmlinux 0x6529b036 __devm_release_region -EXPORT_SYMBOL vmlinux 0x652bb235 alloc_pages_current -EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp -EXPORT_SYMBOL vmlinux 0x65345022 __wake_up -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x654cd8c3 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0x6550ea5f tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem -EXPORT_SYMBOL vmlinux 0x657d4cdd fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x659e488f param_set_bint -EXPORT_SYMBOL vmlinux 0x65c17ceb phy_print_status -EXPORT_SYMBOL vmlinux 0x65c85af2 dma_common_get_sgtable -EXPORT_SYMBOL vmlinux 0x65cdecbc redraw_screen -EXPORT_SYMBOL vmlinux 0x65d9e861 zero_fill_bio -EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier -EXPORT_SYMBOL vmlinux 0x65d9fa87 __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65dd2f68 blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0x65de4c9a pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x65e259be dev_open -EXPORT_SYMBOL vmlinux 0x65ec6851 sock_edemux -EXPORT_SYMBOL vmlinux 0x65ee4a5e pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x65f45c4f end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0x660e26e4 md_check_recovery -EXPORT_SYMBOL vmlinux 0x660f02e4 unlock_buffer -EXPORT_SYMBOL vmlinux 0x662587d7 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0x6631c5ab twl6040_set_bits -EXPORT_SYMBOL vmlinux 0x6636f6f1 inet6_unregister_icmp_sender -EXPORT_SYMBOL vmlinux 0x663c3613 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x663f7cd0 acpi_install_table_handler -EXPORT_SYMBOL vmlinux 0x66504ba6 bitmap_endwrite -EXPORT_SYMBOL vmlinux 0x66609108 nf_register_hooks -EXPORT_SYMBOL vmlinux 0x6677d083 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0x667ebdde sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x66a1557d put_filp -EXPORT_SYMBOL vmlinux 0x66b6f698 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x66bcdebd __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0x66c79cb9 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0x66ce4ba2 fbcon_rotate_ud -EXPORT_SYMBOL vmlinux 0x66e0c19b inc_nlink -EXPORT_SYMBOL vmlinux 0x670b9b20 netlink_unicast -EXPORT_SYMBOL vmlinux 0x67139447 pci_set_master -EXPORT_SYMBOL vmlinux 0x6721232c dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0x6723482b ppp_register_compressor -EXPORT_SYMBOL vmlinux 0x6723d9f1 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x67276286 gen_new_estimator -EXPORT_SYMBOL vmlinux 0x6733ba05 of_phy_find_device -EXPORT_SYMBOL vmlinux 0x676f569b remove_proc_entry -EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create -EXPORT_SYMBOL vmlinux 0x6777c598 reservation_object_add_shared_fence -EXPORT_SYMBOL vmlinux 0x678d6aee acpi_device_hid -EXPORT_SYMBOL vmlinux 0x67964c83 __ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x67b0b33d empty_zero_page -EXPORT_SYMBOL vmlinux 0x67b1d3a1 security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios -EXPORT_SYMBOL vmlinux 0x67b42562 ip6_xmit -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67d5a76b ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x67f23e3e pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0x67f903a7 skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x680adbda gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0x68137318 input_set_keycode -EXPORT_SYMBOL vmlinux 0x681b60ab generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0x684e88ff console_stop -EXPORT_SYMBOL vmlinux 0x6852e55e __dax_fault -EXPORT_SYMBOL vmlinux 0x6860a065 blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x68980085 __ps2_command -EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages -EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x68c3545b kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x68d72d56 mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0x68dd2f2a vme_bus_type -EXPORT_SYMBOL vmlinux 0x68f302cf generic_file_mmap -EXPORT_SYMBOL vmlinux 0x690768fb tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0x690d1625 inet_bind -EXPORT_SYMBOL vmlinux 0x691001b5 acpi_evaluate_integer -EXPORT_SYMBOL vmlinux 0x692c7dc6 filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0x694cfe67 dev_get_by_index -EXPORT_SYMBOL vmlinux 0x694f5601 commit_creds -EXPORT_SYMBOL vmlinux 0x696be927 __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x69867882 gen_pool_create -EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource -EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint -EXPORT_SYMBOL vmlinux 0x69c17d09 pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x69ec6127 udp_prot -EXPORT_SYMBOL vmlinux 0x69fb5832 ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0x69fbc0a2 acpi_get_event_resources -EXPORT_SYMBOL vmlinux 0x69fd342b blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0x6a0301b4 blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0x6a037720 padata_set_cpumasks -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a1e44d8 dev_printk -EXPORT_SYMBOL vmlinux 0x6a22fdd1 pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0x6a38ab47 padata_register_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x6a5e0887 blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask -EXPORT_SYMBOL vmlinux 0x6a60277d acpi_buffer_to_resource -EXPORT_SYMBOL vmlinux 0x6a63c59d seq_dentry -EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable -EXPORT_SYMBOL vmlinux 0x6a7f02b0 neigh_xmit -EXPORT_SYMBOL vmlinux 0x6a8203e4 pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0x6a9e82bc skb_vlan_push -EXPORT_SYMBOL vmlinux 0x6ab0d188 skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0x6abbcfe6 page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x6abda609 write_cache_pages -EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x6ad65840 vc_cons -EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device -EXPORT_SYMBOL vmlinux 0x6adebab3 user_path_create -EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6af8b1ea pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x6b18987a mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname -EXPORT_SYMBOL vmlinux 0x6b1b8754 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0x6b1f7105 inet6_ioctl -EXPORT_SYMBOL vmlinux 0x6b1f7a3f vfs_mkdir -EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b51e8c8 km_is_alive -EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy -EXPORT_SYMBOL vmlinux 0x6b80d3fe scsi_dma_map -EXPORT_SYMBOL vmlinux 0x6b88a1ed swiotlb_dma_supported -EXPORT_SYMBOL vmlinux 0x6ba062ee __check_sticky -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bc58eed prepare_creds -EXPORT_SYMBOL vmlinux 0x6bc5d6c0 inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0x6bc66208 dev_change_carrier -EXPORT_SYMBOL vmlinux 0x6bc6ba2f __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x6bcbe1df dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x6bd31745 gnttab_free_pages -EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x6c05014d eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0x6c06c01e blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer -EXPORT_SYMBOL vmlinux 0x6c0b7107 mount_ns -EXPORT_SYMBOL vmlinux 0x6c0ecb93 kthread_create_on_node -EXPORT_SYMBOL vmlinux 0x6c285b4c of_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x6c2cdc47 add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat -EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c640c95 padata_start -EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min -EXPORT_SYMBOL vmlinux 0x6c779f19 pcibus_to_node -EXPORT_SYMBOL vmlinux 0x6cab9d5d blk_peek_request -EXPORT_SYMBOL vmlinux 0x6cb0d5ea console_start -EXPORT_SYMBOL vmlinux 0x6cd06d09 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0x6cd1ed35 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0x6ce372c4 fb_blank -EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x6d116a32 clear_inode -EXPORT_SYMBOL vmlinux 0x6d145b07 param_ops_bool -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x6d36a515 nvm_end_io -EXPORT_SYMBOL vmlinux 0x6d42f929 noop_fsync -EXPORT_SYMBOL vmlinux 0x6d46adb7 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0x6d6a392e proc_set_user -EXPORT_SYMBOL vmlinux 0x6d7e002e proc_create_mount_point -EXPORT_SYMBOL vmlinux 0x6d9253ad cont_write_begin -EXPORT_SYMBOL vmlinux 0x6db1e9d0 cap_mmap_file -EXPORT_SYMBOL vmlinux 0x6dd0d049 fixed_phy_update_state -EXPORT_SYMBOL vmlinux 0x6dd1d30f mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0x6dd7a74a acpi_bus_get_status -EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform -EXPORT_SYMBOL vmlinux 0x6def7bd7 generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6df7f520 invalidate_bdev -EXPORT_SYMBOL vmlinux 0x6dfed984 udp_proc_register -EXPORT_SYMBOL vmlinux 0x6e00d104 call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0x6e0e6f00 simple_transaction_release -EXPORT_SYMBOL vmlinux 0x6e1724d0 mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0x6e18dbe6 __mdiobus_register -EXPORT_SYMBOL vmlinux 0x6e29cf2e migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0x6e5573c8 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x6e66b2fb ppp_register_channel -EXPORT_SYMBOL vmlinux 0x6e6b9135 mmc_put_card -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e7b0832 mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x6e7f0fd2 cmdline_parts_parse -EXPORT_SYMBOL vmlinux 0x6e805810 fence_init -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6ea76843 ida_get_new_above -EXPORT_SYMBOL vmlinux 0x6ea9676d mii_nway_restart -EXPORT_SYMBOL vmlinux 0x6eb7ff23 dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x6edd1b28 of_parse_phandle_with_args -EXPORT_SYMBOL vmlinux 0x6f0d9953 iterate_fd -EXPORT_SYMBOL vmlinux 0x6f1174c5 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash -EXPORT_SYMBOL vmlinux 0x6f26cb7b idr_get_next -EXPORT_SYMBOL vmlinux 0x6f305e73 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0x6f44c8ff dev_get_by_name -EXPORT_SYMBOL vmlinux 0x6f456f73 tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0x6f50a997 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0x6f5ec7ec idr_init -EXPORT_SYMBOL vmlinux 0x6f696e74 tcp_conn_request -EXPORT_SYMBOL vmlinux 0x6f74bdd7 pm860x_reg_write -EXPORT_SYMBOL vmlinux 0x6f74dcc1 device_get_mac_address -EXPORT_SYMBOL vmlinux 0x6f84e37e __ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x6fa84fd5 netdev_master_upper_dev_link_private -EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag -EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6feb2039 acpi_write -EXPORT_SYMBOL vmlinux 0x7021a064 jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier -EXPORT_SYMBOL vmlinux 0x702e9ece xfrm_user_policy -EXPORT_SYMBOL vmlinux 0x7033394e __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x703b7453 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0x70453eb8 tcf_hash_check -EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq -EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync -EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x708ac8d0 netif_device_attach -EXPORT_SYMBOL vmlinux 0x70921cb7 ip6_frag_match -EXPORT_SYMBOL vmlinux 0x70a57a3a input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0x70b70d51 register_console -EXPORT_SYMBOL vmlinux 0x70d0647f mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0x70de1c90 cleancache_register_ops -EXPORT_SYMBOL vmlinux 0x70dec7bd clkdev_add -EXPORT_SYMBOL vmlinux 0x70f43123 wait_on_page_bit -EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match -EXPORT_SYMBOL vmlinux 0x70fc9cd6 xfrm4_rcv_cb -EXPORT_SYMBOL vmlinux 0x71094fc7 pci_dev_get -EXPORT_SYMBOL vmlinux 0x71129f6f setup_arg_pages -EXPORT_SYMBOL vmlinux 0x711b3381 do_truncate -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x71320bef blk_queue_io_min -EXPORT_SYMBOL vmlinux 0x714a8384 netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x715527a2 d_find_any_alias -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x717e62b2 i2c_master_recv -EXPORT_SYMBOL vmlinux 0x71952b83 i2c_use_client -EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev -EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71ab1827 d_genocide -EXPORT_SYMBOL vmlinux 0x71b0db00 lru_cache_add_file -EXPORT_SYMBOL vmlinux 0x71c99005 bio_chain -EXPORT_SYMBOL vmlinux 0x71db3e7e dma_sync_wait -EXPORT_SYMBOL vmlinux 0x71ebdfa1 max8998_write_reg -EXPORT_SYMBOL vmlinux 0x71f2dbaa scsi_host_put -EXPORT_SYMBOL vmlinux 0x72048bb1 __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0x72081f04 sync_inodes_sb -EXPORT_SYMBOL vmlinux 0x7209e9b2 netpoll_setup -EXPORT_SYMBOL vmlinux 0x72148320 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0x723d0a11 wake_up_process -EXPORT_SYMBOL vmlinux 0x725fd887 nla_append -EXPORT_SYMBOL vmlinux 0x72659f28 bdev_stack_limits -EXPORT_SYMBOL vmlinux 0x7280426d ps2_begin_command -EXPORT_SYMBOL vmlinux 0x729053f6 jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0x72e1ea36 udplite_prot -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x73053f22 ip_defrag -EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config -EXPORT_SYMBOL vmlinux 0x731dba7a xen_domain_type -EXPORT_SYMBOL vmlinux 0x73274efe vme_dma_list_free -EXPORT_SYMBOL vmlinux 0x7338ad01 pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf -EXPORT_SYMBOL vmlinux 0x73407a4b of_iomap -EXPORT_SYMBOL vmlinux 0x7343a887 clkdev_drop -EXPORT_SYMBOL vmlinux 0x7348bcd5 lock_sock_nested -EXPORT_SYMBOL vmlinux 0x736f5f89 inet_ioctl -EXPORT_SYMBOL vmlinux 0x737a8bf4 nvm_generic_to_addr_mode -EXPORT_SYMBOL vmlinux 0x7389f161 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0x73b15119 inode_dio_wait -EXPORT_SYMBOL vmlinux 0x73b8a9d6 qdisc_list_add -EXPORT_SYMBOL vmlinux 0x73c59a1c mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0x73e1ca5f pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0x73e4c17d pnpacpi_protocol -EXPORT_SYMBOL vmlinux 0x7404f23e read_dev_sector -EXPORT_SYMBOL vmlinux 0x740a842b of_cpufreq_power_cooling_register -EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x741608c3 cpu_possible_mask -EXPORT_SYMBOL vmlinux 0x7427df50 scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0x743fc203 __vfs_write -EXPORT_SYMBOL vmlinux 0x744870fd devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0x74624dcc scsi_init_io -EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x74979666 __tcf_hash_release -EXPORT_SYMBOL vmlinux 0x74a22f45 tty_devnum -EXPORT_SYMBOL vmlinux 0x74b42bba dev_change_proto_down -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74ca0617 register_netdevice -EXPORT_SYMBOL vmlinux 0x74d72867 of_phy_attach -EXPORT_SYMBOL vmlinux 0x74e19d4a block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74ea4013 netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0x751d85f4 vme_register_driver -EXPORT_SYMBOL vmlinux 0x7525fa77 inode_init_always -EXPORT_SYMBOL vmlinux 0x7532588a alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x7554c495 kobject_del -EXPORT_SYMBOL vmlinux 0x755bb6ea netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0x7569cd04 udp_lib_get_port -EXPORT_SYMBOL vmlinux 0x757344aa nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0x75828b28 dst_alloc -EXPORT_SYMBOL vmlinux 0x75850d01 __vmalloc -EXPORT_SYMBOL vmlinux 0x758644d8 simple_dname -EXPORT_SYMBOL vmlinux 0x75a1ca35 thermal_cdev_update -EXPORT_SYMBOL vmlinux 0x75b8c7f0 mount_subtree -EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc -EXPORT_SYMBOL vmlinux 0x75d01f05 textsearch_register -EXPORT_SYMBOL vmlinux 0x75eda31d bdi_destroy -EXPORT_SYMBOL vmlinux 0x75eff7fe set_disk_ro -EXPORT_SYMBOL vmlinux 0x75fbdefd acpi_remove_address_space_handler -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x76264aab __nlmsg_put -EXPORT_SYMBOL vmlinux 0x762cfac0 blk_queue_start_tag -EXPORT_SYMBOL vmlinux 0x764130e4 input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0x7641d856 phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0x7645af6f sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x764bd77c request_resource -EXPORT_SYMBOL vmlinux 0x76536e9c inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x7656680f mount_single -EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x766c886a eth_gro_receive -EXPORT_SYMBOL vmlinux 0x7672602e __mutex_init -EXPORT_SYMBOL vmlinux 0x767dd8fd acpi_get_irq_routing_table -EXPORT_SYMBOL vmlinux 0x768c4f57 __starget_for_each_device -EXPORT_SYMBOL vmlinux 0x76a10cbf locks_mandatory_area -EXPORT_SYMBOL vmlinux 0x76a5b343 iommu_tbl_range_free -EXPORT_SYMBOL vmlinux 0x76d22bbb nf_setsockopt -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint -EXPORT_SYMBOL vmlinux 0x76e40c89 tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x76f471b5 bdi_setup_and_register -EXPORT_SYMBOL vmlinux 0x7703adfc __secpath_destroy -EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x771dc27e sock_no_getname -EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x77419d48 nvm_register -EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir -EXPORT_SYMBOL vmlinux 0x7748196c pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0x774ccd04 vfs_setpos -EXPORT_SYMBOL vmlinux 0x7753d28a dma_common_mmap -EXPORT_SYMBOL vmlinux 0x77651bd2 pci_scan_single_device -EXPORT_SYMBOL vmlinux 0x777c239e simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll -EXPORT_SYMBOL vmlinux 0x77a41be4 inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x77b0d83b ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77f4148e neigh_app_ns -EXPORT_SYMBOL vmlinux 0x77f53abc acpi_get_vendor_resource -EXPORT_SYMBOL vmlinux 0x77f9c742 generic_file_splice_read -EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t -EXPORT_SYMBOL vmlinux 0x78432398 skb_checksum -EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x787b8ce4 blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x7891419d nvm_free_rqd_ppalist -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x78c19a6d mempool_resize -EXPORT_SYMBOL vmlinux 0x78cb8e3c bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0x78d494e9 amba_request_regions -EXPORT_SYMBOL vmlinux 0x78d4ea13 pci_bus_put -EXPORT_SYMBOL vmlinux 0x78dc39a7 inet_select_addr -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x79052f7e of_parse_phandle -EXPORT_SYMBOL vmlinux 0x79068fda acpi_install_method -EXPORT_SYMBOL vmlinux 0x79071849 of_parse_phandle_with_fixed_args -EXPORT_SYMBOL vmlinux 0x793bc4fa pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x7951ca4f input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0x79789939 open_exec -EXPORT_SYMBOL vmlinux 0x7984eefc key_update -EXPORT_SYMBOL vmlinux 0x7985d043 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x7996f6e4 blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size -EXPORT_SYMBOL vmlinux 0x79a65951 mdiobus_free -EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79c76aea devm_free_irq -EXPORT_SYMBOL vmlinux 0x79d56aad tty_set_operations -EXPORT_SYMBOL vmlinux 0x79d9d5a2 blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0x79da8fac phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0x79e39aa8 gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x7a27a55e devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x7a4497db kzfree -EXPORT_SYMBOL vmlinux 0x7a4e1555 mount_nodev -EXPORT_SYMBOL vmlinux 0x7a5187ea __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0x7a548a95 node_states -EXPORT_SYMBOL vmlinux 0x7a64dace jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x7a66b6f1 blk_finish_request -EXPORT_SYMBOL vmlinux 0x7a6cdedc do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7a87e612 bitmap_unplug -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7ad3f002 md_done_sync -EXPORT_SYMBOL vmlinux 0x7aed0a70 devm_gpiod_get_array_optional -EXPORT_SYMBOL vmlinux 0x7b0dd0eb fsnotify_init_mark -EXPORT_SYMBOL vmlinux 0x7b110e84 sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0x7b16235f hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array -EXPORT_SYMBOL vmlinux 0x7b2735d8 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0x7b2aef6c __krealloc -EXPORT_SYMBOL vmlinux 0x7b3294de dump_page -EXPORT_SYMBOL vmlinux 0x7b377708 nf_reinject -EXPORT_SYMBOL vmlinux 0x7b537c84 pagevec_lookup_tag -EXPORT_SYMBOL vmlinux 0x7b6646bb _raw_read_lock -EXPORT_SYMBOL vmlinux 0x7b6d12cd scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x7b793521 simple_link -EXPORT_SYMBOL vmlinux 0x7b7fa2cc filp_open -EXPORT_SYMBOL vmlinux 0x7b809578 wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x7b88d3f7 read_cache_pages -EXPORT_SYMBOL vmlinux 0x7b90c9d7 kmem_cache_free -EXPORT_SYMBOL vmlinux 0x7b924e2e downgrade_write -EXPORT_SYMBOL vmlinux 0x7b9c492d of_dev_get -EXPORT_SYMBOL vmlinux 0x7bad7a1a acpi_walk_resources -EXPORT_SYMBOL vmlinux 0x7bc2cee7 sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x7be75ffc acpi_walk_resource_buffer -EXPORT_SYMBOL vmlinux 0x7bf1f0aa mmc_hw_reset -EXPORT_SYMBOL vmlinux 0x7c0009ea genphy_resume -EXPORT_SYMBOL vmlinux 0x7c024e89 block_invalidatepage -EXPORT_SYMBOL vmlinux 0x7c0900cf jbd2_journal_file_inode -EXPORT_SYMBOL vmlinux 0x7c0cfad6 xfrm_init_replay -EXPORT_SYMBOL vmlinux 0x7c1372e8 panic -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c2d098f krealloc -EXPORT_SYMBOL vmlinux 0x7c2f4544 page_cache_prev_hole -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c61340c __release_region -EXPORT_SYMBOL vmlinux 0x7c6b81f3 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x7c7276ce sk_stream_error -EXPORT_SYMBOL vmlinux 0x7c77085d inode_init_once -EXPORT_SYMBOL vmlinux 0x7c78f77e gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read -EXPORT_SYMBOL vmlinux 0x7ca21a14 d_drop -EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down -EXPORT_SYMBOL vmlinux 0x7cd0885c blk_run_queue -EXPORT_SYMBOL vmlinux 0x7cd1351e is_nd_btt -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7ce83365 acpi_remove_table_handler -EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7cfa2b06 __napi_schedule -EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies -EXPORT_SYMBOL vmlinux 0x7d369e9c scsi_register -EXPORT_SYMBOL vmlinux 0x7d402ee8 new_inode -EXPORT_SYMBOL vmlinux 0x7d483be9 netif_rx_ni -EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug -EXPORT_SYMBOL vmlinux 0x7d7d63df cpumask_next_and -EXPORT_SYMBOL vmlinux 0x7d805ebf nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x7d94f746 acpi_os_write_port -EXPORT_SYMBOL vmlinux 0x7da9dc44 make_kuid -EXPORT_SYMBOL vmlinux 0x7db6dfec scsi_device_resume -EXPORT_SYMBOL vmlinux 0x7dbb11d4 udp6_csum_init -EXPORT_SYMBOL vmlinux 0x7dc2351e noop_qdisc -EXPORT_SYMBOL vmlinux 0x7dc84548 devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7dfb89c8 blk_queue_end_tag -EXPORT_SYMBOL vmlinux 0x7e2569f7 udp_set_csum -EXPORT_SYMBOL vmlinux 0x7e4740ad sock_register -EXPORT_SYMBOL vmlinux 0x7e541f1f seq_release -EXPORT_SYMBOL vmlinux 0x7e6d7a05 try_to_release_page -EXPORT_SYMBOL vmlinux 0x7e799ba1 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x7e9da777 __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x7ebd4be4 trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x7ee0c5ee generic_write_end -EXPORT_SYMBOL vmlinux 0x7ee25f19 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x7eea4a72 skb_queue_head -EXPORT_SYMBOL vmlinux 0x7ef8a230 max8998_read_reg -EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f150e16 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f263ed9 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x7f4c7508 replace_mount_options -EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done -EXPORT_SYMBOL vmlinux 0x7f64b178 dev_emerg -EXPORT_SYMBOL vmlinux 0x7f653989 mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0x7f7b81e0 register_quota_format -EXPORT_SYMBOL vmlinux 0x7f8ca4cd audit_log_start -EXPORT_SYMBOL vmlinux 0x7fa0e6fa blk_put_request -EXPORT_SYMBOL vmlinux 0x7fa1023b tcf_em_register -EXPORT_SYMBOL vmlinux 0x7fa36945 generic_file_fsync -EXPORT_SYMBOL vmlinux 0x7fbd10d2 radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x7fc14db0 inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0x7fc791e1 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fe38f48 sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x802f01e2 tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x803ab6fa read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0x80411c52 mii_ethtool_sset -EXPORT_SYMBOL vmlinux 0x805cce21 pci_remove_bus -EXPORT_SYMBOL vmlinux 0x8068c15c kblockd_schedule_delayed_work -EXPORT_SYMBOL vmlinux 0x80765e9a cpufreq_power_cooling_register -EXPORT_SYMBOL vmlinux 0x80791a8c radix_tree_gang_lookup_slot -EXPORT_SYMBOL vmlinux 0x80793878 dm_get_device -EXPORT_SYMBOL vmlinux 0x807f3efb nf_log_unset -EXPORT_SYMBOL vmlinux 0x80874a3b send_sig -EXPORT_SYMBOL vmlinux 0x8095c9eb mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0x809f76c4 kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0x80a479bf kmalloc_dma_caches -EXPORT_SYMBOL vmlinux 0x80a549d9 freeze_super -EXPORT_SYMBOL vmlinux 0x80af0de8 genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x80c0925d xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80d18119 scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80d9f40a ___pskb_trim -EXPORT_SYMBOL vmlinux 0x80e59fcb ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x80eb423b acpi_get_object_info -EXPORT_SYMBOL vmlinux 0x81052d78 __inode_permission -EXPORT_SYMBOL vmlinux 0x8139d878 to_nd_btt -EXPORT_SYMBOL vmlinux 0x81472677 acpi_get_table -EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy -EXPORT_SYMBOL vmlinux 0x815084a0 nvm_dev_dma_alloc -EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x818a828f nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0x81b1e17d sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81dddc56 tcp_make_synack -EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x81f18628 of_node_get -EXPORT_SYMBOL vmlinux 0x81f9ba3a sock_no_mmap -EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill -EXPORT_SYMBOL vmlinux 0x82100734 pci_dev_driver -EXPORT_SYMBOL vmlinux 0x8211145f blk_alloc_queue -EXPORT_SYMBOL vmlinux 0x8212721d xenbus_dev_request_and_reply -EXPORT_SYMBOL vmlinux 0x8228af8d netdev_all_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x823239c1 path_noexec -EXPORT_SYMBOL vmlinux 0x8243660b drop_super -EXPORT_SYMBOL vmlinux 0x82458f7f radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x8247d189 xfrm_register_type -EXPORT_SYMBOL vmlinux 0x82554935 pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0x826d3a85 bitmap_startwrite -EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes -EXPORT_SYMBOL vmlinux 0x828b0cd9 twl6040_set_pll -EXPORT_SYMBOL vmlinux 0x828d73df devm_clk_get -EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched -EXPORT_SYMBOL vmlinux 0x82d9a140 blk_alloc_queue_node -EXPORT_SYMBOL vmlinux 0x82da96b5 take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x82e6200f __generic_file_fsync -EXPORT_SYMBOL vmlinux 0x82edddcb __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x83046e8e i2c_register_driver -EXPORT_SYMBOL vmlinux 0x830c7387 nvm_unregister_mgr -EXPORT_SYMBOL vmlinux 0x831a0654 mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0x833cc12f km_state_expired -EXPORT_SYMBOL vmlinux 0x833db204 netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x83559ee2 nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0x835a4bba eth_header -EXPORT_SYMBOL vmlinux 0x837cf9fa dma_release_declared_memory -EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x83a1b2d0 d_instantiate_unique -EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init -EXPORT_SYMBOL vmlinux 0x83bd5607 bio_copy_kern -EXPORT_SYMBOL vmlinux 0x83c525ce dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83f6a72c nvm_submit_io -EXPORT_SYMBOL vmlinux 0x83fa726e compat_sock_get_timestamp -EXPORT_SYMBOL vmlinux 0x84060081 xen_poll_irq_timeout -EXPORT_SYMBOL vmlinux 0x841b4443 write_inode_now -EXPORT_SYMBOL vmlinux 0x841f10f9 mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0x843e1b1e lwtunnel_state_alloc -EXPORT_SYMBOL vmlinux 0x844215d5 mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0x844e3767 radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x8451c30f register_framebuffer -EXPORT_SYMBOL vmlinux 0x8455c697 devm_get_gpiod_from_child -EXPORT_SYMBOL vmlinux 0x84a3ce0e devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0x84bd2216 __serio_register_driver -EXPORT_SYMBOL vmlinux 0x84c369fb make_kgid -EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload -EXPORT_SYMBOL vmlinux 0x85061b76 _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0x8514c501 pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x857d2b91 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0x858b3fe3 free_iova_mem -EXPORT_SYMBOL vmlinux 0x85a55424 copy_from_iter -EXPORT_SYMBOL vmlinux 0x85a786bf blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85b73fbe __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0x85c1f99f kill_block_super -EXPORT_SYMBOL vmlinux 0x85d2d715 __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0x85d357b4 ipv6_push_nfrag_opts -EXPORT_SYMBOL vmlinux 0x85df105f tcf_register_action -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85e1846b tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85f4e538 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0x85f7c745 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0x8618629e elevator_exit -EXPORT_SYMBOL vmlinux 0x863947ba tcp_splice_read -EXPORT_SYMBOL vmlinux 0x864aeda2 seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x86593a28 amba_driver_unregister -EXPORT_SYMBOL vmlinux 0x8660aeb7 dev_remove_offload -EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0x8666b885 dump_emit -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x8690a2db nobh_writepage -EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x86b8442e neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x86ba4428 blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0x86bef296 inode_permission -EXPORT_SYMBOL vmlinux 0x86cb16c4 fb_show_logo -EXPORT_SYMBOL vmlinux 0x86d67cab clocksource_change_rating -EXPORT_SYMBOL vmlinux 0x86db1cf5 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0x86ea4d38 complete_all -EXPORT_SYMBOL vmlinux 0x86f8d88c neigh_ifdown -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x870c6b5b generic_make_request -EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags -EXPORT_SYMBOL vmlinux 0x871f80b8 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0x872150b5 put_cmsg -EXPORT_SYMBOL vmlinux 0x8729e089 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0x872e69b5 pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0x872eddd5 sock_alloc_file -EXPORT_SYMBOL vmlinux 0x874ab8e5 dev_uc_init -EXPORT_SYMBOL vmlinux 0x87538db0 tty_vhangup -EXPORT_SYMBOL vmlinux 0x876dafc3 ec_write -EXPORT_SYMBOL vmlinux 0x87823e4a generic_shutdown_super -EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale -EXPORT_SYMBOL vmlinux 0x87addd01 set_user_nice -EXPORT_SYMBOL vmlinux 0x87b527d3 skb_free_datagram -EXPORT_SYMBOL vmlinux 0x87e896cd seq_printf -EXPORT_SYMBOL vmlinux 0x87eb69f5 irq_stat -EXPORT_SYMBOL vmlinux 0x87fea5e8 pci_set_power_state -EXPORT_SYMBOL vmlinux 0x880f3a06 mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0x88228d3d build_skb -EXPORT_SYMBOL vmlinux 0x882714c3 phy_read_mmd_indirect -EXPORT_SYMBOL vmlinux 0x8831cf89 inet_shutdown -EXPORT_SYMBOL vmlinux 0x8832ff79 set_binfmt -EXPORT_SYMBOL vmlinux 0x887fa47e __getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x88982bf9 mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0x889e7dcf jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x88a14568 alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0x88b4e83b down_trylock -EXPORT_SYMBOL vmlinux 0x88bc362a loop_register_transfer -EXPORT_SYMBOL vmlinux 0x88c3e4b9 inet_frags_exit_net -EXPORT_SYMBOL vmlinux 0x88ccb8a5 devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x88cfbc43 __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0x88f859b8 pci_assign_resource -EXPORT_SYMBOL vmlinux 0x891bef26 vm_stat -EXPORT_SYMBOL vmlinux 0x893a93a2 nf_ct_attach -EXPORT_SYMBOL vmlinux 0x8947712c sock_no_setsockopt -EXPORT_SYMBOL vmlinux 0x898064be dcache_dir_close -EXPORT_SYMBOL vmlinux 0x8980d177 __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x898c16c7 netlink_net_capable -EXPORT_SYMBOL vmlinux 0x89aef98b mntget -EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0x89b20059 i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x89c5fe12 dev_alloc_name -EXPORT_SYMBOL vmlinux 0x89ce7dfc netdev_info -EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x89dd9d28 vfs_write -EXPORT_SYMBOL vmlinux 0x8a039069 jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0x8a19d6a1 of_device_register -EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies -EXPORT_SYMBOL vmlinux 0x8a27eb0a netif_wake_subqueue -EXPORT_SYMBOL vmlinux 0x8a326774 tcf_destroy_chain -EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning -EXPORT_SYMBOL vmlinux 0x8a630fd5 register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x8a69f5a2 key_invalidate -EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a80d7a5 acpi_error -EXPORT_SYMBOL vmlinux 0x8a8ff904 release_firmware -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8aa400d1 netif_device_detach -EXPORT_SYMBOL vmlinux 0x8aa57c4f udp_table -EXPORT_SYMBOL vmlinux 0x8ab12261 sb_min_blocksize -EXPORT_SYMBOL vmlinux 0x8ac0bd28 dev_trans_start -EXPORT_SYMBOL vmlinux 0x8afaebe7 nla_put -EXPORT_SYMBOL vmlinux 0x8b113b03 kernel_param_lock -EXPORT_SYMBOL vmlinux 0x8b142f2b tcp_enter_memory_pressure -EXPORT_SYMBOL vmlinux 0x8b1e9196 seq_file_path -EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last -EXPORT_SYMBOL vmlinux 0x8b3c7f40 seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x8b484538 iommu_tbl_pool_init -EXPORT_SYMBOL vmlinux 0x8b4a94ee bio_integrity_prep -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b8e786a __neigh_event_send -EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup -EXPORT_SYMBOL vmlinux 0x8ba25203 account_page_dirtied -EXPORT_SYMBOL vmlinux 0x8bb04f3a sock_no_sendpage -EXPORT_SYMBOL vmlinux 0x8bd0a3fd _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0x8bd89f09 swiotlb_free_coherent -EXPORT_SYMBOL vmlinux 0x8bf400ae abx500_get_chip_id -EXPORT_SYMBOL vmlinux 0x8c0127d0 nf_log_trace -EXPORT_SYMBOL vmlinux 0x8c1e3582 __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x8c41fc0d jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0x8c49db08 acpi_processor_notify_smm -EXPORT_SYMBOL vmlinux 0x8c4b372c jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x8c648e83 jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0x8ca09e76 dst_release -EXPORT_SYMBOL vmlinux 0x8ca3f348 tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x8cb596ce inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0x8cbe749c eth_header_cache -EXPORT_SYMBOL vmlinux 0x8cce0256 get_fs_type -EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending -EXPORT_SYMBOL vmlinux 0x8ce84955 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x8ceddcc4 add_disk -EXPORT_SYMBOL vmlinux 0x8cee8ee7 proc_set_size -EXPORT_SYMBOL vmlinux 0x8cf643b2 __dquot_transfer -EXPORT_SYMBOL vmlinux 0x8cfad409 kmem_cache_alloc_node_trace -EXPORT_SYMBOL vmlinux 0x8d05fd12 single_open_size -EXPORT_SYMBOL vmlinux 0x8d168b2d rwsem_downgrade_wake -EXPORT_SYMBOL vmlinux 0x8d19d345 seq_write -EXPORT_SYMBOL vmlinux 0x8d231472 blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0x8d37374f md_unregister_thread -EXPORT_SYMBOL vmlinux 0x8d3a5cbe d_set_fallthru -EXPORT_SYMBOL vmlinux 0x8d3e36b9 __blk_end_request_cur -EXPORT_SYMBOL vmlinux 0x8d43a6d9 end_page_writeback -EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d57fe84 __bread_gfp -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d753e5b clear_wb_congested -EXPORT_SYMBOL vmlinux 0x8d8d96c6 acpi_get_sleep_type_data -EXPORT_SYMBOL vmlinux 0x8d957611 scsi_scan_host -EXPORT_SYMBOL vmlinux 0x8d9bcb26 blk_rq_map_user -EXPORT_SYMBOL vmlinux 0x8da1a3cb acpi_remove_interface -EXPORT_SYMBOL vmlinux 0x8dbbe4dc vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv -EXPORT_SYMBOL vmlinux 0x8e01e12c i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0x8e12c304 dev_addr_init -EXPORT_SYMBOL vmlinux 0x8e1a0517 netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x8e1e6c11 mfd_cell_disable -EXPORT_SYMBOL vmlinux 0x8e3853a3 bio_alloc_pages -EXPORT_SYMBOL vmlinux 0x8e3d380a dentry_open -EXPORT_SYMBOL vmlinux 0x8e40c792 pci_add_new_bus -EXPORT_SYMBOL vmlinux 0x8e453c03 blkdev_put -EXPORT_SYMBOL vmlinux 0x8e52026b generic_pipe_buf_steal -EXPORT_SYMBOL vmlinux 0x8e527bc9 tcp_release_cb -EXPORT_SYMBOL vmlinux 0x8e58f3df rwsem_down_read_failed -EXPORT_SYMBOL vmlinux 0x8e612a43 tso_build_hdr -EXPORT_SYMBOL vmlinux 0x8e6e8c8a iommu_get_dma_cookie -EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x8e9a9b77 bio_reset -EXPORT_SYMBOL vmlinux 0x8ea8cbd9 kernel_bind -EXPORT_SYMBOL vmlinux 0x8ebaa876 lg_local_lock_cpu -EXPORT_SYMBOL vmlinux 0x8ec41d5f sock_no_connect -EXPORT_SYMBOL vmlinux 0x8ec9c9bc unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x8ecc2fe8 i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0x8ed7ccbc fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0x8ed9e557 mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0x8efc5c88 fsync_bdev -EXPORT_SYMBOL vmlinux 0x8f0e40fc rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0x8f0f61c7 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x8f23c427 vm_iomap_memory -EXPORT_SYMBOL vmlinux 0x8f350a26 get_disk -EXPORT_SYMBOL vmlinux 0x8f3787be panic_notifier_list -EXPORT_SYMBOL vmlinux 0x8f4467e9 netif_skb_features -EXPORT_SYMBOL vmlinux 0x8f489e48 pcim_iounmap -EXPORT_SYMBOL vmlinux 0x8f48f934 bio_integrity_endio -EXPORT_SYMBOL vmlinux 0x8f5e996b mb_cache_entry_insert -EXPORT_SYMBOL vmlinux 0x8f66c824 km_report -EXPORT_SYMBOL vmlinux 0x8f678b07 __stack_chk_guard -EXPORT_SYMBOL vmlinux 0x8f7a330c d_instantiate -EXPORT_SYMBOL vmlinux 0x8fa8b4b5 ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0x8fb33568 xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0x8ff15899 unregister_netdev -EXPORT_SYMBOL vmlinux 0x900f01aa pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0x9023a30a __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x9059fb06 __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0x9080a37c __dev_get_by_name -EXPORT_SYMBOL vmlinux 0x9092981f iget_failed -EXPORT_SYMBOL vmlinux 0x909384ca tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x909ed64f i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0x90ac3102 dev_base_lock -EXPORT_SYMBOL vmlinux 0x90b44906 block_read_full_page -EXPORT_SYMBOL vmlinux 0x90e162b1 pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0x90ec5e7a __sb_end_write -EXPORT_SYMBOL vmlinux 0x9131da09 __block_write_begin -EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 -EXPORT_SYMBOL vmlinux 0x91590691 filp_close -EXPORT_SYMBOL vmlinux 0x9166fada strncpy -EXPORT_SYMBOL vmlinux 0x91715312 sprintf -EXPORT_SYMBOL vmlinux 0x918c6374 mempool_alloc -EXPORT_SYMBOL vmlinux 0x91ac822f vscnprintf -EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 -EXPORT_SYMBOL vmlinux 0x91ff694f bio_phys_segments -EXPORT_SYMBOL vmlinux 0x91ff8982 skb_dequeue -EXPORT_SYMBOL vmlinux 0x920c00b5 ilookup5 -EXPORT_SYMBOL vmlinux 0x92180865 fb_prepare_logo -EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x923f73d5 is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0x9243e91f genphy_config_init -EXPORT_SYMBOL vmlinux 0x924c8377 mark_info_dirty -EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user -EXPORT_SYMBOL vmlinux 0x92a44a80 fence_add_callback -EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm -EXPORT_SYMBOL vmlinux 0x92aa0be2 param_ops_ulong -EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x93134d9a request_key -EXPORT_SYMBOL vmlinux 0x932e9086 security_file_permission -EXPORT_SYMBOL vmlinux 0x93306a7d param_set_uint -EXPORT_SYMBOL vmlinux 0x935fde86 fb_pan_display -EXPORT_SYMBOL vmlinux 0x9369743c scsi_block_requests -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x938b5ae3 pci_set_mwi -EXPORT_SYMBOL vmlinux 0x9390f226 ida_destroy -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93b8109a xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x93b83c62 ps2_command -EXPORT_SYMBOL vmlinux 0x93e3e1ff xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x93f3e52b acpi_extract_package -EXPORT_SYMBOL vmlinux 0x93f998d6 check_disk_size_change -EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages -EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int -EXPORT_SYMBOL vmlinux 0x942f65aa neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x943c89e0 tty_free_termios -EXPORT_SYMBOL vmlinux 0x946b9b2d uart_match_port -EXPORT_SYMBOL vmlinux 0x947560a7 zpool_register_driver -EXPORT_SYMBOL vmlinux 0x94798ea0 unload_nls -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x949b754f mempool_destroy -EXPORT_SYMBOL vmlinux 0x94a98e81 inet_dgram_connect -EXPORT_SYMBOL vmlinux 0x94de26aa tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x94f65083 clkdev_alloc -EXPORT_SYMBOL vmlinux 0x94fc00e5 dq_data_lock -EXPORT_SYMBOL vmlinux 0x9507017f unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x951f7cf3 skb_vlan_untag -EXPORT_SYMBOL vmlinux 0x9525bc84 dma_pool_create -EXPORT_SYMBOL vmlinux 0x95395301 acpi_exception -EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init -EXPORT_SYMBOL vmlinux 0x954b58a6 of_match_node -EXPORT_SYMBOL vmlinux 0x9568ee1a mntput -EXPORT_SYMBOL vmlinux 0x956d8f9a dentry_update_name_case -EXPORT_SYMBOL vmlinux 0x957de6bc mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0x958307b8 may_umount_tree -EXPORT_SYMBOL vmlinux 0x95a05f3a blk_queue_dma_pad -EXPORT_SYMBOL vmlinux 0x95a1c6e4 pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0x95a3351e inet_listen -EXPORT_SYMBOL vmlinux 0x95ceab9c scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0x95d18ec0 __serio_register_port -EXPORT_SYMBOL vmlinux 0x95eb31f4 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0x95ebce80 mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0x95efdb17 tty_register_driver -EXPORT_SYMBOL vmlinux 0x961df82d blk_start_request -EXPORT_SYMBOL vmlinux 0x96220280 _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0x962ab633 give_up_console -EXPORT_SYMBOL vmlinux 0x9632199d fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x96350b90 start_tty -EXPORT_SYMBOL vmlinux 0x963584fc __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x966bccdf smp_call_function_many -EXPORT_SYMBOL vmlinux 0x9672affb finish_no_open -EXPORT_SYMBOL vmlinux 0x967e62b8 of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0x969e18e0 tcf_action_exec -EXPORT_SYMBOL vmlinux 0x96a19bb6 neigh_update -EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp -EXPORT_SYMBOL vmlinux 0x96c83717 of_n_size_cells -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96cff5a3 bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0x96d95f82 input_register_handle -EXPORT_SYMBOL vmlinux 0x972243d2 mmc_register_driver -EXPORT_SYMBOL vmlinux 0x97321fff lwtunnel_encap_add_ops -EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier -EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x97675fd8 inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x97868aef __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x978a0d70 d_alloc_pseudo -EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state -EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update -EXPORT_SYMBOL vmlinux 0x97b4b7cb gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x97b9879b tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0x97c5bd0a acpi_unload_parent_table -EXPORT_SYMBOL vmlinux 0x97d7416b bd_set_size -EXPORT_SYMBOL vmlinux 0x97d8cbde pci_read_vpd -EXPORT_SYMBOL vmlinux 0x97fdbab9 _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x98082893 __copy_to_user -EXPORT_SYMBOL vmlinux 0x98129091 netlink_kernel_release -EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0x9831a4f6 blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0x985febfe __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x98641971 netpoll_send_skb_on_dev -EXPORT_SYMBOL vmlinux 0x9865ff27 __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x989c220f del_random_ready_callback -EXPORT_SYMBOL vmlinux 0x98b62324 __wait_on_bit -EXPORT_SYMBOL vmlinux 0x98c68c41 __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen -EXPORT_SYMBOL vmlinux 0x98d173a3 register_shrinker -EXPORT_SYMBOL vmlinux 0x98f0b86a kfree_skb_list -EXPORT_SYMBOL vmlinux 0x98f6c0f8 param_get_uint -EXPORT_SYMBOL vmlinux 0x98fc8497 seq_release_private -EXPORT_SYMBOL vmlinux 0x98fc9c3f mii_check_gmii_support -EXPORT_SYMBOL vmlinux 0x9901e21b filemap_write_and_wait -EXPORT_SYMBOL vmlinux 0x991326b6 dump_skip -EXPORT_SYMBOL vmlinux 0x99195078 vsnprintf -EXPORT_SYMBOL vmlinux 0x9920c035 uart_write_wakeup -EXPORT_SYMBOL vmlinux 0x992d39b5 xfrm6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x9930924d registered_fb -EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x993d5105 get_gendisk -EXPORT_SYMBOL vmlinux 0x994969eb sock_wfree -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x995b2c17 tcp_init_cgroup -EXPORT_SYMBOL vmlinux 0x99680d7e bmap -EXPORT_SYMBOL vmlinux 0x99729a19 set_device_ro -EXPORT_SYMBOL vmlinux 0x9975e6ea inet6_protos -EXPORT_SYMBOL vmlinux 0x9991e957 vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99cb6162 do_splice_direct -EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering -EXPORT_SYMBOL vmlinux 0x99d05b95 cancel_dirty_page -EXPORT_SYMBOL vmlinux 0x99d3a43c dm_table_get_size -EXPORT_SYMBOL vmlinux 0x99dfee7b pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0x99f1e1be update_devfreq -EXPORT_SYMBOL vmlinux 0x9a03e65d compat_nf_getsockopt -EXPORT_SYMBOL vmlinux 0x9a0ba226 qdisc_reset -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a1ecd01 from_kgid -EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval -EXPORT_SYMBOL vmlinux 0x9a20ef8e kernel_listen -EXPORT_SYMBOL vmlinux 0x9a27d396 devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x9a338b8f iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0x9a40f64d xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x9a492f7c jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0x9a501fb0 bio_uncopy_user -EXPORT_SYMBOL vmlinux 0x9a5df5cf __skb_gso_segment -EXPORT_SYMBOL vmlinux 0x9a7d8f63 __scm_destroy -EXPORT_SYMBOL vmlinux 0x9a7fba32 PDE_DATA -EXPORT_SYMBOL vmlinux 0x9a908b80 test_and_clear_bit -EXPORT_SYMBOL vmlinux 0x9abe8cb6 cfb_imageblit -EXPORT_SYMBOL vmlinux 0x9ac30579 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach -EXPORT_SYMBOL vmlinux 0x9b10ccb9 devm_gpiod_get_array -EXPORT_SYMBOL vmlinux 0x9b136a8c __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x9b2bf079 d_path -EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page -EXPORT_SYMBOL vmlinux 0x9b63f0a4 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0x9b7e925b truncate_setsize -EXPORT_SYMBOL vmlinux 0x9b84b542 mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0x9b8a0383 page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x9ba16103 security_path_chmod -EXPORT_SYMBOL vmlinux 0x9ba6f0fc skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split -EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put -EXPORT_SYMBOL vmlinux 0x9bc3ef29 __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0x9bc6ef31 add_wait_queue -EXPORT_SYMBOL vmlinux 0x9bd305a2 xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0x9bdc14ea param_ops_ushort -EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x9c0aecc5 phy_driver_register -EXPORT_SYMBOL vmlinux 0x9c15e096 cdev_del -EXPORT_SYMBOL vmlinux 0x9c16ef05 uart_suspend_port -EXPORT_SYMBOL vmlinux 0x9c1857c4 bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0x9c223d02 sock_create -EXPORT_SYMBOL vmlinux 0x9c24b727 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x9c5bc552 finish_wait -EXPORT_SYMBOL vmlinux 0x9c7a67c1 vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0x9c812cf9 alloc_buffer_head -EXPORT_SYMBOL vmlinux 0x9c844ceb mark_page_accessed -EXPORT_SYMBOL vmlinux 0x9c864a04 ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0x9c8dd88c sk_dst_check -EXPORT_SYMBOL vmlinux 0x9c9b9bc5 genl_unregister_family -EXPORT_SYMBOL vmlinux 0x9ca0b4ac kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cb7d2a4 vme_bus_num -EXPORT_SYMBOL vmlinux 0x9cd5ee40 ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x9cde3c2f __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0x9cfc843a __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d18dcfb elevator_init -EXPORT_SYMBOL vmlinux 0x9d1a5e3a __memcpy -EXPORT_SYMBOL vmlinux 0x9d1f5aec pci_set_dma_max_seg_size -EXPORT_SYMBOL vmlinux 0x9d2a8909 generic_getxattr -EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init -EXPORT_SYMBOL vmlinux 0x9d49521d file_open_root -EXPORT_SYMBOL vmlinux 0x9d6f0f4d __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0x9da05e10 mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0x9da4ebe3 input_allocate_device -EXPORT_SYMBOL vmlinux 0x9dc40a5d serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0x9dcb7927 jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x9de3ccbc generic_block_bmap -EXPORT_SYMBOL vmlinux 0x9e085f56 padata_unregister_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e2f8c90 lz4_decompress_unknownoutputsize -EXPORT_SYMBOL vmlinux 0x9e41d018 of_get_next_available_child -EXPORT_SYMBOL vmlinux 0x9e457f39 udp_seq_open -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e5e78e2 __blk_end_request_all -EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value -EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay -EXPORT_SYMBOL vmlinux 0x9e822ec6 done_path_create -EXPORT_SYMBOL vmlinux 0x9e9054c4 blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource -EXPORT_SYMBOL vmlinux 0x9ec46f45 pci_pme_active -EXPORT_SYMBOL vmlinux 0x9ed848b2 devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x9eda81c6 iterate_supers_type -EXPORT_SYMBOL vmlinux 0x9ee1da11 param_ops_string -EXPORT_SYMBOL vmlinux 0x9eedb042 security_path_mkdir -EXPORT_SYMBOL vmlinux 0x9f11be7e down_killable -EXPORT_SYMBOL vmlinux 0x9f122829 zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0x9f20db62 inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f62ef14 pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0x9f7c1be8 skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0x9f7fb587 dev_addr_del -EXPORT_SYMBOL vmlinux 0x9f811ab1 csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9f9b8dfe fbcon_rotate_cw -EXPORT_SYMBOL vmlinux 0x9f9c4b8a ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0x9fa3b3a1 generic_start_io_acct -EXPORT_SYMBOL vmlinux 0x9fa85597 neigh_seq_start -EXPORT_SYMBOL vmlinux 0x9fa866f7 kobject_get -EXPORT_SYMBOL vmlinux 0x9facf651 dev_remove_pack -EXPORT_SYMBOL vmlinux 0x9fad5084 ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0x9fd3a17b key_task_permission -EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc -EXPORT_SYMBOL vmlinux 0x9fd84fff ilookup -EXPORT_SYMBOL vmlinux 0x9fdb35ce __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0x9ffc3f3d mfd_cell_enable -EXPORT_SYMBOL vmlinux 0xa0039911 ip_setsockopt -EXPORT_SYMBOL vmlinux 0xa0075a11 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0xa041da33 proto_register -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xa0510e64 up_read -EXPORT_SYMBOL vmlinux 0xa05a531c dev_add_offload -EXPORT_SYMBOL vmlinux 0xa05aa443 dmam_pool_create -EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr -EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init -EXPORT_SYMBOL vmlinux 0xa0838938 keyring_alloc -EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa08e1a73 netdev_alert -EXPORT_SYMBOL vmlinux 0xa0ad4a10 skb_put -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem -EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa0ff74d6 udp_memory_allocated -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa114c4cd kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0xa11f2942 nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xa12bb29d netdev_warn -EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts -EXPORT_SYMBOL vmlinux 0xa14f37d7 try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xa18a43ce vfs_path_lookup -EXPORT_SYMBOL vmlinux 0xa19e1584 sk_capable -EXPORT_SYMBOL vmlinux 0xa1b49db2 __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xa1b665bc xen_biovec_phys_mergeable -EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode -EXPORT_SYMBOL vmlinux 0xa1c6ce57 __alloc_skb -EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched -EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create -EXPORT_SYMBOL vmlinux 0xa1ec54ca to_ndd -EXPORT_SYMBOL vmlinux 0xa1ef1784 blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0xa1f5b33a pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0xa202a8e5 kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0xa207f117 generic_key_instantiate -EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold -EXPORT_SYMBOL vmlinux 0xa222cc7f devm_gpiod_get_index_optional -EXPORT_SYMBOL vmlinux 0xa22da1dd param_set_ullong -EXPORT_SYMBOL vmlinux 0xa2725827 tcp_proto_cgroup -EXPORT_SYMBOL vmlinux 0xa2732a36 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0xa281bdc0 phy_set_max_speed -EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0xa286fe27 vm_map_ram -EXPORT_SYMBOL vmlinux 0xa28c0740 blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0xa29b8711 dqput -EXPORT_SYMBOL vmlinux 0xa2a335bd vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0xa2aed24f dm_unregister_target -EXPORT_SYMBOL vmlinux 0xa2bcf91b netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0xa2be4510 i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0xa2c5edf0 cdrom_ioctl -EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set -EXPORT_SYMBOL vmlinux 0xa320a552 dquot_operations -EXPORT_SYMBOL vmlinux 0xa327ee9e sock_wake_async -EXPORT_SYMBOL vmlinux 0xa33ffa0d simple_fill_super -EXPORT_SYMBOL vmlinux 0xa3455c63 dmam_alloc_coherent -EXPORT_SYMBOL vmlinux 0xa3542b66 mmc_wait_for_app_cmd -EXPORT_SYMBOL vmlinux 0xa3714105 pci_request_region -EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get -EXPORT_SYMBOL vmlinux 0xa3841559 skb_unlink -EXPORT_SYMBOL vmlinux 0xa393287a iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0xa3a0b91b pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0xa3a6272a abx500_get_register_interruptible -EXPORT_SYMBOL vmlinux 0xa3b6efec input_grab_device -EXPORT_SYMBOL vmlinux 0xa3ca634a remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0xa3ca9e17 vlan_vid_add -EXPORT_SYMBOL vmlinux 0xa3de21ed netdev_change_features -EXPORT_SYMBOL vmlinux 0xa3e17f56 node_to_cpumask_map -EXPORT_SYMBOL vmlinux 0xa40218e0 input_set_capability -EXPORT_SYMBOL vmlinux 0xa422ae7c genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0xa432b44b mmc_of_parse -EXPORT_SYMBOL vmlinux 0xa4511467 crc16 -EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset -EXPORT_SYMBOL vmlinux 0xa47bba95 wait_iff_congested -EXPORT_SYMBOL vmlinux 0xa47c77b7 mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0xa48bdbf5 scm_detach_fds -EXPORT_SYMBOL vmlinux 0xa495e3a5 dentry_needs_remove_privs -EXPORT_SYMBOL vmlinux 0xa4a3f816 pnp_unregister_card_driver -EXPORT_SYMBOL vmlinux 0xa4ae2f79 nd_region_release_lane -EXPORT_SYMBOL vmlinux 0xa4ca5b25 mpage_writepage -EXPORT_SYMBOL vmlinux 0xa4cd4618 skb_split -EXPORT_SYMBOL vmlinux 0xa4e7b106 pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0xa4f10233 serio_open -EXPORT_SYMBOL vmlinux 0xa532db1c filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0xa53db2b0 pci_platform_rom -EXPORT_SYMBOL vmlinux 0xa542b426 seq_open -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa562fd5e xfrm_init_state -EXPORT_SYMBOL vmlinux 0xa5729878 ppp_dev_name -EXPORT_SYMBOL vmlinux 0xa57307ba netpoll_print_options -EXPORT_SYMBOL vmlinux 0xa5734dbb tcf_unregister_action -EXPORT_SYMBOL vmlinux 0xa5815a77 filemap_map_pages -EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes -EXPORT_SYMBOL vmlinux 0xa5a51eee __crc32c_le -EXPORT_SYMBOL vmlinux 0xa5d0f54e cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0xa5d38046 netif_carrier_off -EXPORT_SYMBOL vmlinux 0xa5d69130 eth_header_parse -EXPORT_SYMBOL vmlinux 0xa5ded45a max8925_bulk_read -EXPORT_SYMBOL vmlinux 0xa5f5061b udp_lib_unhash -EXPORT_SYMBOL vmlinux 0xa5fed88e key_unlink -EXPORT_SYMBOL vmlinux 0xa615fc80 kern_path_create -EXPORT_SYMBOL vmlinux 0xa61843cc pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0xa6240e2a writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0xa6242f3b __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0xa631a036 devfreq_resume_device -EXPORT_SYMBOL vmlinux 0xa63322c6 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember -EXPORT_SYMBOL vmlinux 0xa67177e3 dquot_commit -EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0xa67a7605 tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa6bd63ca acpi_bios_error -EXPORT_SYMBOL vmlinux 0xa6c09e57 tcp_rcv_established -EXPORT_SYMBOL vmlinux 0xa6d28c4d cdev_add -EXPORT_SYMBOL vmlinux 0xa6de018a vfs_statfs -EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function -EXPORT_SYMBOL vmlinux 0xa70a0fed default_file_splice_read -EXPORT_SYMBOL vmlinux 0xa70f8e21 neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0xa72a0f5b nr_online_nodes -EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 -EXPORT_SYMBOL vmlinux 0xa751d094 uart_update_timeout -EXPORT_SYMBOL vmlinux 0xa764b551 blk_mq_start_request -EXPORT_SYMBOL vmlinux 0xa766c431 register_gifconf -EXPORT_SYMBOL vmlinux 0xa766d0ac file_path -EXPORT_SYMBOL vmlinux 0xa786fb58 udp_sendmsg -EXPORT_SYMBOL vmlinux 0xa7b650bd key_revoke -EXPORT_SYMBOL vmlinux 0xa7bde1e1 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0xa7be526f _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0xa7f2e63e migrate_page_copy -EXPORT_SYMBOL vmlinux 0xa7f78f5f scsi_register_driver -EXPORT_SYMBOL vmlinux 0xa800a821 __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0xa81d0653 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa8468e1c dma_mmap_from_coherent -EXPORT_SYMBOL vmlinux 0xa85495ec gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0xa858064b read_code -EXPORT_SYMBOL vmlinux 0xa8665de2 pci_save_state -EXPORT_SYMBOL vmlinux 0xa8721b97 system_state -EXPORT_SYMBOL vmlinux 0xa87cf413 clear_bit -EXPORT_SYMBOL vmlinux 0xa894db81 compat_ip_getsockopt -EXPORT_SYMBOL vmlinux 0xa89668e9 tc_classify -EXPORT_SYMBOL vmlinux 0xa8a58747 do_splice_to -EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end -EXPORT_SYMBOL vmlinux 0xa8cbef7c pagecache_write_end -EXPORT_SYMBOL vmlinux 0xa8f20474 pcie_port_service_register -EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send -EXPORT_SYMBOL vmlinux 0xa914487d nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0xa9164c26 fddi_change_mtu -EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion -EXPORT_SYMBOL vmlinux 0xa916b694 strnlen -EXPORT_SYMBOL vmlinux 0xa91a46cc mount_bdev -EXPORT_SYMBOL vmlinux 0xa91af45f __dquot_free_space -EXPORT_SYMBOL vmlinux 0xa9220a25 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0xa92664d9 add_random_ready_callback -EXPORT_SYMBOL vmlinux 0xa9351e8c sock_get_timestampns -EXPORT_SYMBOL vmlinux 0xa93a9a9f sock_release -EXPORT_SYMBOL vmlinux 0xa948904d blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0xa96969c4 jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0xa970177b lwtunnel_output -EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa994c670 gen_pool_alloc -EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes -EXPORT_SYMBOL vmlinux 0xa9b248b6 idr_for_each -EXPORT_SYMBOL vmlinux 0xa9c2b595 iommu_dma_init_domain -EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0xa9e2fd7a devm_ioremap_nocache -EXPORT_SYMBOL vmlinux 0xa9eac194 swiotlb_dma_mapping_error -EXPORT_SYMBOL vmlinux 0xa9f41ec0 mmc_cleanup_queue -EXPORT_SYMBOL vmlinux 0xaa06a5d5 phy_get_eee_err -EXPORT_SYMBOL vmlinux 0xaa12b722 blk_queue_find_tag -EXPORT_SYMBOL vmlinux 0xaa2f0c38 blk_queue_unprep_rq -EXPORT_SYMBOL vmlinux 0xaa31b93b devm_gpio_request -EXPORT_SYMBOL vmlinux 0xaa4e19c0 padata_alloc_possible -EXPORT_SYMBOL vmlinux 0xaa4f5fb2 led_blink_set_oneshot -EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaaa8aa0c phy_attach_direct -EXPORT_SYMBOL vmlinux 0xaac1689b sk_reset_timer -EXPORT_SYMBOL vmlinux 0xaacc3134 idr_find_slowpath -EXPORT_SYMBOL vmlinux 0xaacf817b nvm_erase_ppa -EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state -EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable -EXPORT_SYMBOL vmlinux 0xaaed2ed7 cdrom_release -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0xab04b1a0 mmc_start_bkops -EXPORT_SYMBOL vmlinux 0xab343f85 init_task -EXPORT_SYMBOL vmlinux 0xab40cca9 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0xab551fad acpi_get_data_full -EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off -EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog -EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab83b922 __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0xab8b53c3 xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0xab9bf622 i2c_del_adapter -EXPORT_SYMBOL vmlinux 0xab9c1e60 dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xabaee894 pnp_stop_dev -EXPORT_SYMBOL vmlinux 0xabafb6bf scsi_scan_target -EXPORT_SYMBOL vmlinux 0xabb5a5dd param_ops_invbool -EXPORT_SYMBOL vmlinux 0xabbbd444 _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev -EXPORT_SYMBOL vmlinux 0xabd81bb8 key_validate -EXPORT_SYMBOL vmlinux 0xabe6a289 fbcon_set_rotate -EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable -EXPORT_SYMBOL vmlinux 0xac0eed28 udp6_set_csum -EXPORT_SYMBOL vmlinux 0xac10bac1 blk_fetch_request -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear -EXPORT_SYMBOL vmlinux 0xac4db3e0 serio_reconnect -EXPORT_SYMBOL vmlinux 0xac502262 sync_inode_metadata -EXPORT_SYMBOL vmlinux 0xac69dad3 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0xac946180 mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0xac9d2d83 register_sysctl_table -EXPORT_SYMBOL vmlinux 0xaca0768a jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacc5b5d2 csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0xacc5db69 unregister_cdrom -EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xacd82ba5 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xad01744f kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad164875 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xad3fd2dc rtnl_unicast -EXPORT_SYMBOL vmlinux 0xad47d447 inet_getname -EXPORT_SYMBOL vmlinux 0xad4942e0 simple_rmdir -EXPORT_SYMBOL vmlinux 0xad4b41b0 sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0xad641712 bio_split -EXPORT_SYMBOL vmlinux 0xad6b8283 sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event -EXPORT_SYMBOL vmlinux 0xada59c41 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0xadb7736b jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0xadb95411 xfrm_lookup -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae410f63 pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0xae4a1bda csum_tcpudp_nofold -EXPORT_SYMBOL vmlinux 0xae65ad40 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0xae83fb5a nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0xae85d08a abx500_set_register_interruptible -EXPORT_SYMBOL vmlinux 0xae8c4d0c set_bit -EXPORT_SYMBOL vmlinux 0xaea976a8 acpi_check_resource_conflict -EXPORT_SYMBOL vmlinux 0xaed88b08 debugfs_create_automount -EXPORT_SYMBOL vmlinux 0xaef40243 ppp_unit_number -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf67f131 d_find_alias -EXPORT_SYMBOL vmlinux 0xaf6ae696 kstrndup -EXPORT_SYMBOL vmlinux 0xaf7b32d2 vme_master_request -EXPORT_SYMBOL vmlinux 0xafe5c5e1 generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0xb00419f2 key_payload_reserve -EXPORT_SYMBOL vmlinux 0xb012063a sock_no_listen -EXPORT_SYMBOL vmlinux 0xb014bf83 xfrm_state_insert -EXPORT_SYMBOL vmlinux 0xb01eed55 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0xb020a973 ps2_drain -EXPORT_SYMBOL vmlinux 0xb02535d5 single_release -EXPORT_SYMBOL vmlinux 0xb0270ebc genphy_read_status -EXPORT_SYMBOL vmlinux 0xb0542b49 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb06ca43a vme_register_bridge -EXPORT_SYMBOL vmlinux 0xb0765f76 netlink_broadcast -EXPORT_SYMBOL vmlinux 0xb0853746 kernel_sock_ioctl -EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0xb0ca491a blk_sync_queue -EXPORT_SYMBOL vmlinux 0xb0d2caec generic_block_fiemap -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0e555ca ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0xb0e9d81c mmc_read_bkops_status -EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on -EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb13aec2d iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0xb13ebadf cdrom_open -EXPORT_SYMBOL vmlinux 0xb13f6f21 bioset_integrity_free -EXPORT_SYMBOL vmlinux 0xb147a855 dql_reset -EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table -EXPORT_SYMBOL vmlinux 0xb164b785 nf_log_packet -EXPORT_SYMBOL vmlinux 0xb16e8eda pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0xb17fd116 mb_cache_entry_release -EXPORT_SYMBOL vmlinux 0xb1832466 remap_pfn_range -EXPORT_SYMBOL vmlinux 0xb1834837 __inode_add_bytes -EXPORT_SYMBOL vmlinux 0xb19f59ec blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xb1e2b757 tcp_child_process -EXPORT_SYMBOL vmlinux 0xb1e5d4b8 tcp_filter -EXPORT_SYMBOL vmlinux 0xb1f0c1e8 blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xb1f3c7cd make_kprojid -EXPORT_SYMBOL vmlinux 0xb20ecf88 acpi_run_osc -EXPORT_SYMBOL vmlinux 0xb23c43ba inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0xb24bcd49 devm_gpiod_put_array -EXPORT_SYMBOL vmlinux 0xb24c7ff2 pnp_release_card_device -EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0xb283d04d __get_page_tail -EXPORT_SYMBOL vmlinux 0xb296f9d9 qdisc_destroy -EXPORT_SYMBOL vmlinux 0xb2b0b7e5 sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0xb2b58f61 tty_kref_put -EXPORT_SYMBOL vmlinux 0xb2bd48a4 file_remove_privs -EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xb2d87c39 pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0xb2e02ad1 unlock_rename -EXPORT_SYMBOL vmlinux 0xb2eb180a sk_stop_timer -EXPORT_SYMBOL vmlinux 0xb2f43694 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0xb2fb0f2f nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xb3056c02 filemap_flush -EXPORT_SYMBOL vmlinux 0xb319a58b bdi_register -EXPORT_SYMBOL vmlinux 0xb3213fc4 pnp_possible_config -EXPORT_SYMBOL vmlinux 0xb3284531 acpi_dbg_layer -EXPORT_SYMBOL vmlinux 0xb345afbf posix_lock_file -EXPORT_SYMBOL vmlinux 0xb34b24a0 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0xb371f413 tcf_hash_cleanup -EXPORT_SYMBOL vmlinux 0xb37bee52 rename_lock -EXPORT_SYMBOL vmlinux 0xb389543c unregister_quota_format -EXPORT_SYMBOL vmlinux 0xb38c261c flow_cache_init -EXPORT_SYMBOL vmlinux 0xb39be34f __register_nls -EXPORT_SYMBOL vmlinux 0xb3b0a7a0 ab3100_event_register -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3db7de5 xfrm_register_mode -EXPORT_SYMBOL vmlinux 0xb3e7f349 dst_init -EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb4701cd3 pci_scan_slot -EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0xb47189b5 reservation_ww_class -EXPORT_SYMBOL vmlinux 0xb473d15d param_get_short -EXPORT_SYMBOL vmlinux 0xb47f6814 rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0xb4911fbb backlight_device_unregister -EXPORT_SYMBOL vmlinux 0xb494305f dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0xb4b146b4 lookup_one_len -EXPORT_SYMBOL vmlinux 0xb4b85441 bitmap_close_sync -EXPORT_SYMBOL vmlinux 0xb4bc6a5d tcp_getsockopt -EXPORT_SYMBOL vmlinux 0xb4d66f09 bitmap_start_sync -EXPORT_SYMBOL vmlinux 0xb4dc2b75 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0xb4f9543d bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0xb4fc735b idr_remove -EXPORT_SYMBOL vmlinux 0xb509a844 vfs_fsync_range -EXPORT_SYMBOL vmlinux 0xb565b92a blk_execute_rq -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb5794f02 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0xb57ad24e ip_do_fragment -EXPORT_SYMBOL vmlinux 0xb57e34b3 setattr_copy -EXPORT_SYMBOL vmlinux 0xb596b070 touch_atime -EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free -EXPORT_SYMBOL vmlinux 0xb5cbc06e fb_validate_mode -EXPORT_SYMBOL vmlinux 0xb5db8065 nf_afinfo -EXPORT_SYMBOL vmlinux 0xb5ea61b8 get_task_io_context -EXPORT_SYMBOL vmlinux 0xb5fdab22 locks_copy_conflock -EXPORT_SYMBOL vmlinux 0xb6241b36 udp_ioctl -EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one -EXPORT_SYMBOL vmlinux 0xb62f48ba dma_declare_coherent_memory -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb68c6194 tty_register_device -EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb69a0369 inode_add_rsv_space -EXPORT_SYMBOL vmlinux 0xb69f9b00 mempool_free -EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit -EXPORT_SYMBOL vmlinux 0xb6cc6773 stop_tty -EXPORT_SYMBOL vmlinux 0xb6d34f95 i2c_del_driver -EXPORT_SYMBOL vmlinux 0xb6d3daf1 qcom_scm_hdcp_req -EXPORT_SYMBOL vmlinux 0xb6d47ccc bio_advance -EXPORT_SYMBOL vmlinux 0xb6db759a shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0xb6dc0278 __invalidate_device -EXPORT_SYMBOL vmlinux 0xb6e1febe fb_get_mode -EXPORT_SYMBOL vmlinux 0xb6f6c43c mfd_remove_devices -EXPORT_SYMBOL vmlinux 0xb6fe55d4 input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0xb702bba0 __scsi_add_device -EXPORT_SYMBOL vmlinux 0xb7096951 tcf_exts_validate -EXPORT_SYMBOL vmlinux 0xb71fb74f _raw_read_trylock -EXPORT_SYMBOL vmlinux 0xb7321419 neigh_parms_release -EXPORT_SYMBOL vmlinux 0xb7415a7e napi_consume_skb -EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xb74caff7 gen_pool_free -EXPORT_SYMBOL vmlinux 0xb762b475 dev_err -EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb77e5644 dev_close -EXPORT_SYMBOL vmlinux 0xb7905f5f pskb_expand_head -EXPORT_SYMBOL vmlinux 0xb799bba7 import_iovec -EXPORT_SYMBOL vmlinux 0xb7bce0bb __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7d700c7 __scsi_alloc_queue -EXPORT_SYMBOL vmlinux 0xb7df6688 flow_cache_lookup -EXPORT_SYMBOL vmlinux 0xb7f511da lockref_get -EXPORT_SYMBOL vmlinux 0xb8204db5 page_put_link -EXPORT_SYMBOL vmlinux 0xb821a826 i2c_transfer -EXPORT_SYMBOL vmlinux 0xb82d9918 __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0xb859c4f4 blk_integrity_register -EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 -EXPORT_SYMBOL vmlinux 0xb874d57e netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0xb88c5b77 nd_btt_probe -EXPORT_SYMBOL vmlinux 0xb8a9cc86 revert_creds -EXPORT_SYMBOL vmlinux 0xb8b92f34 __ethtool_get_settings -EXPORT_SYMBOL vmlinux 0xb8c4aec1 sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0xb8d03576 tcp_proc_register -EXPORT_SYMBOL vmlinux 0xb8e4d3fd kill_bdev -EXPORT_SYMBOL vmlinux 0xb8f64bf0 noop_llseek -EXPORT_SYMBOL vmlinux 0xb90f0a9a tty_name -EXPORT_SYMBOL vmlinux 0xb91d4f84 __quota_error -EXPORT_SYMBOL vmlinux 0xb924defe napi_gro_receive -EXPORT_SYMBOL vmlinux 0xb927e71f do_splice_from -EXPORT_SYMBOL vmlinux 0xb93c4e20 proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0xb955c0bd scsi_report_opcode -EXPORT_SYMBOL vmlinux 0xb9572f7b blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0xb9645855 ipv4_specific -EXPORT_SYMBOL vmlinux 0xb9796ced of_find_node_by_type -EXPORT_SYMBOL vmlinux 0xb9963412 eth_validate_addr -EXPORT_SYMBOL vmlinux 0xb9a7fcaa mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0xb9b9c68c generic_file_open -EXPORT_SYMBOL vmlinux 0xb9bad778 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0xb9bf2845 find_get_pages_tag -EXPORT_SYMBOL vmlinux 0xb9c7956c tcp_parse_options -EXPORT_SYMBOL vmlinux 0xb9e7c511 mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xb9ec5027 scsi_verify_blk_ioctl -EXPORT_SYMBOL vmlinux 0xb9ee558f blk_start_queue_async -EXPORT_SYMBOL vmlinux 0xba0e4490 wait_for_key_construction -EXPORT_SYMBOL vmlinux 0xba1192ac dquot_scan_active -EXPORT_SYMBOL vmlinux 0xba2d8594 ec_read -EXPORT_SYMBOL vmlinux 0xba2ffec2 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0xba383eda open_check_o_direct -EXPORT_SYMBOL vmlinux 0xba42d1ab always_delete_dentry -EXPORT_SYMBOL vmlinux 0xba47224f tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba59ce6a md_integrity_register -EXPORT_SYMBOL vmlinux 0xba6773a9 seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xba7c95f9 dev_set_group -EXPORT_SYMBOL vmlinux 0xba817112 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0xba9769a7 __nd_iostat_start -EXPORT_SYMBOL vmlinux 0xbab9ae73 sg_miter_skip -EXPORT_SYMBOL vmlinux 0xbabf7291 kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0xbabf8754 write_one_page -EXPORT_SYMBOL vmlinux 0xbac6b2fe phy_register_fixup -EXPORT_SYMBOL vmlinux 0xbadd170b __brelse -EXPORT_SYMBOL vmlinux 0xbae87d3a clk_add_alias -EXPORT_SYMBOL vmlinux 0xbb03030d vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb0f93b8 netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0xbb156727 dev_printk_emit -EXPORT_SYMBOL vmlinux 0xbb2c1328 eth_type_trans -EXPORT_SYMBOL vmlinux 0xbb34134a iov_shorten -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xbb51a3b1 starget_for_each_device -EXPORT_SYMBOL vmlinux 0xbb57286e pci_request_region_exclusive -EXPORT_SYMBOL vmlinux 0xbb574559 __neigh_create -EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xbb7c5680 cpu_rmap_update -EXPORT_SYMBOL vmlinux 0xbb8959cd ps2_handle_response -EXPORT_SYMBOL vmlinux 0xbb94b433 param_get_int -EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font -EXPORT_SYMBOL vmlinux 0xbba195e6 devm_ioport_map -EXPORT_SYMBOL vmlinux 0xbbaeb559 memcg_socket_limit_enabled -EXPORT_SYMBOL vmlinux 0xbbb66f8f component_match_add -EXPORT_SYMBOL vmlinux 0xbbd64c4b blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xbbd736e0 elv_rq_merge_ok -EXPORT_SYMBOL vmlinux 0xbbf30552 blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0xbc10f93c vfs_symlink -EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit -EXPORT_SYMBOL vmlinux 0xbc3b982f rtnl_notify -EXPORT_SYMBOL vmlinux 0xbc6050a2 elv_dispatch_add_tail -EXPORT_SYMBOL vmlinux 0xbc674a56 cad_pid -EXPORT_SYMBOL vmlinux 0xbc9e54c9 unregister_key_type -EXPORT_SYMBOL vmlinux 0xbc9ef5c1 skb_clone_sk -EXPORT_SYMBOL vmlinux 0xbcafa45e scsi_print_sense -EXPORT_SYMBOL vmlinux 0xbcb05128 input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0xbcbd19f2 con_copy_unimap -EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user -EXPORT_SYMBOL vmlinux 0xbccb56e0 nd_integrity_init -EXPORT_SYMBOL vmlinux 0xbce4a86e napi_disable -EXPORT_SYMBOL vmlinux 0xbceed278 of_node_to_nid -EXPORT_SYMBOL vmlinux 0xbd13bab2 __nla_reserve -EXPORT_SYMBOL vmlinux 0xbd1bdf64 crypto_sha512_update -EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init -EXPORT_SYMBOL vmlinux 0xbd57a78f get_cached_acl -EXPORT_SYMBOL vmlinux 0xbd5e15c8 fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0xbd6d79f1 __tracepoint_fence_annotate_wait_on -EXPORT_SYMBOL vmlinux 0xbd84e2c1 iov_iter_fault_in_readable -EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug -EXPORT_SYMBOL vmlinux 0xbd9e16bf nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0xbda22756 simple_nosetlease -EXPORT_SYMBOL vmlinux 0xbdaf5b07 acpi_os_read_port -EXPORT_SYMBOL vmlinux 0xbdbc13a1 complete -EXPORT_SYMBOL vmlinux 0xbe1604ae cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0xbe1add73 qcom_scm_set_warm_boot_addr -EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto -EXPORT_SYMBOL vmlinux 0xbe2431a9 mmc_can_trim -EXPORT_SYMBOL vmlinux 0xbe4cda43 dev_mc_del -EXPORT_SYMBOL vmlinux 0xbe546ae0 filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xbe6f2ee4 inet_release -EXPORT_SYMBOL vmlinux 0xbe83e662 of_device_is_big_endian -EXPORT_SYMBOL vmlinux 0xbe9cb32f backlight_force_update -EXPORT_SYMBOL vmlinux 0xbead5e27 scsi_rescan_device -EXPORT_SYMBOL vmlinux 0xbeb44a17 dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0xbeea9d04 blk_complete_request -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbf042a43 tty_port_open -EXPORT_SYMBOL vmlinux 0xbf1b9437 mmc_stop_bkops -EXPORT_SYMBOL vmlinux 0xbf23a63d of_mdio_parse_addr -EXPORT_SYMBOL vmlinux 0xbf3793a0 md_write_start -EXPORT_SYMBOL vmlinux 0xbf3efdc9 ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0xbf418242 follow_down -EXPORT_SYMBOL vmlinux 0xbf52d31a jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0xbf62fd47 bdput -EXPORT_SYMBOL vmlinux 0xbf76f6d5 jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfa3100d textsearch_unregister -EXPORT_SYMBOL vmlinux 0xbfd57c86 get_user_pages -EXPORT_SYMBOL vmlinux 0xbfdebfe6 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0xbfe82b2e tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xbff2e42c input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0xc012d515 fence_remove_callback -EXPORT_SYMBOL vmlinux 0xc0168cf9 uart_remove_one_port -EXPORT_SYMBOL vmlinux 0xc06a01a4 inet_add_protocol -EXPORT_SYMBOL vmlinux 0xc073ba36 mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc08028ed mmc_remove_host -EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write -EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit -EXPORT_SYMBOL vmlinux 0xc0a5aa52 __module_get -EXPORT_SYMBOL vmlinux 0xc0b20652 pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0xc0dd9d48 __elv_add_request -EXPORT_SYMBOL vmlinux 0xc10fcb27 dst_discard_out -EXPORT_SYMBOL vmlinux 0xc14a9884 ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0xc14dcc6f tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0xc15a44c6 memzero_explicit -EXPORT_SYMBOL vmlinux 0xc15f409e dev_change_flags -EXPORT_SYMBOL vmlinux 0xc1864721 param_set_bool -EXPORT_SYMBOL vmlinux 0xc1906ca8 mpage_readpages -EXPORT_SYMBOL vmlinux 0xc1a10e68 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0xc1a87e88 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0xc1c195dc security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla -EXPORT_SYMBOL vmlinux 0xc1f25a43 con_is_bound -EXPORT_SYMBOL vmlinux 0xc1f42987 iunique -EXPORT_SYMBOL vmlinux 0xc26d9cf1 d_tmpfile -EXPORT_SYMBOL vmlinux 0xc27a6e1a pci_bus_get -EXPORT_SYMBOL vmlinux 0xc2846681 __get_user_pages -EXPORT_SYMBOL vmlinux 0xc285d2ac i2c_put_adapter -EXPORT_SYMBOL vmlinux 0xc29bf967 strspn -EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xc2c22d72 nvm_register_mgr -EXPORT_SYMBOL vmlinux 0xc2d4103e generic_show_options -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2ea31dc dmam_declare_coherent_memory -EXPORT_SYMBOL vmlinux 0xc2edf79d blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0xc304b458 phys_mem_access_prot -EXPORT_SYMBOL vmlinux 0xc310b981 strnstr -EXPORT_SYMBOL vmlinux 0xc316b729 page_cache_next_hole -EXPORT_SYMBOL vmlinux 0xc335cb29 dump_truncate -EXPORT_SYMBOL vmlinux 0xc3797fd1 __getblk_slow -EXPORT_SYMBOL vmlinux 0xc3a7be25 lg_global_lock -EXPORT_SYMBOL vmlinux 0xc3bfffae kernel_sendmsg -EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0xc3c63d90 task_tgid_nr_ns -EXPORT_SYMBOL vmlinux 0xc3dfee56 gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0xc3f7463a write_dirty_buffer -EXPORT_SYMBOL vmlinux 0xc42a0d68 phy_connect_direct -EXPORT_SYMBOL vmlinux 0xc433e52a d_walk -EXPORT_SYMBOL vmlinux 0xc46325a4 vfs_getxattr_alloc -EXPORT_SYMBOL vmlinux 0xc46f3936 tty_mutex -EXPORT_SYMBOL vmlinux 0xc47394ac padata_set_cpumask -EXPORT_SYMBOL vmlinux 0xc48307db lz4_decompress -EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup -EXPORT_SYMBOL vmlinux 0xc49c4df8 mmc_can_sanitize -EXPORT_SYMBOL vmlinux 0xc4a7c8b1 dev_mc_unsync -EXPORT_SYMBOL vmlinux 0xc4b63f5f of_n_addr_cells -EXPORT_SYMBOL vmlinux 0xc4cf348d pagecache_get_page -EXPORT_SYMBOL vmlinux 0xc50478df xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0xc5139f58 of_find_node_opts_by_path -EXPORT_SYMBOL vmlinux 0xc537bfd5 lwtunnel_build_state -EXPORT_SYMBOL vmlinux 0xc5417b7b ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc5a055b9 param_ops_short -EXPORT_SYMBOL vmlinux 0xc5a1bb8f keyring_search -EXPORT_SYMBOL vmlinux 0xc5dbf4e8 lro_receive_skb -EXPORT_SYMBOL vmlinux 0xc5f5762c msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xc62708c6 misc_deregister -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc63e5d9b try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0xc64ab704 param_ops_int -EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif -EXPORT_SYMBOL vmlinux 0xc668f83f tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0xc6772da2 radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0xc67b1580 submit_bh -EXPORT_SYMBOL vmlinux 0xc6871100 inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0xc6a574db ip_route_me_harder -EXPORT_SYMBOL vmlinux 0xc6adc290 adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0xc6b368d3 acpi_gpe_count -EXPORT_SYMBOL vmlinux 0xc6b55371 handle_edge_irq -EXPORT_SYMBOL vmlinux 0xc6b76d96 mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6e3cae3 vme_irq_free -EXPORT_SYMBOL vmlinux 0xc6ea546e skb_queue_tail -EXPORT_SYMBOL vmlinux 0xc6f49652 iov_iter_advance -EXPORT_SYMBOL vmlinux 0xc6f8da47 bio_add_pc_page -EXPORT_SYMBOL vmlinux 0xc7021e64 kobject_init -EXPORT_SYMBOL vmlinux 0xc709767b sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc7275dea amba_release_regions -EXPORT_SYMBOL vmlinux 0xc730f4d3 mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass -EXPORT_SYMBOL vmlinux 0xc7591cf0 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0xc75cdf01 udp_disconnect -EXPORT_SYMBOL vmlinux 0xc77fef28 pci_unregister_driver -EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc -EXPORT_SYMBOL vmlinux 0xc7a28d7d vlan_uses_dev -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7dbf4e2 unmap_underlying_metadata -EXPORT_SYMBOL vmlinux 0xc7e0a048 mmc_gpio_request_ro -EXPORT_SYMBOL vmlinux 0xc7fcc5bf acpi_resource_to_address64 -EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0xc83f5cfc cmdline_parts_find -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc87d3f21 phy_device_remove -EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table -EXPORT_SYMBOL vmlinux 0xc89f79d4 percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8aa73c1 tcp_destroy_cgroup -EXPORT_SYMBOL vmlinux 0xc8ad1169 acpi_processor_register_performance -EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xc8c8110e remove_proc_subtree -EXPORT_SYMBOL vmlinux 0xc8fc06d3 lro_flush_all -EXPORT_SYMBOL vmlinux 0xc9008b81 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0xc90d8bee filemap_fault -EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen -EXPORT_SYMBOL vmlinux 0xc92bf2d5 eth_change_mtu -EXPORT_SYMBOL vmlinux 0xc93a1e03 sk_receive_skb -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc96b03ca fence_wait_timeout -EXPORT_SYMBOL vmlinux 0xc97529e7 pnp_start_dev -EXPORT_SYMBOL vmlinux 0xc975d235 devm_gpiod_get -EXPORT_SYMBOL vmlinux 0xc978479a xz_dec_run -EXPORT_SYMBOL vmlinux 0xc979c58a acpi_bus_register_driver -EXPORT_SYMBOL vmlinux 0xc97afdaf ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0xc97fe268 input_unregister_handler -EXPORT_SYMBOL vmlinux 0xc9827c49 of_graph_get_endpoint_by_regs -EXPORT_SYMBOL vmlinux 0xc9952724 mb_cache_shrink -EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9b224d2 of_translate_dma_address -EXPORT_SYMBOL vmlinux 0xc9c22d26 blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0xc9d2906c block_truncate_page -EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy -EXPORT_SYMBOL vmlinux 0xca215ae9 try_to_writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0xca2289a5 __bio_clone_fast -EXPORT_SYMBOL vmlinux 0xca252e43 fddi_type_trans -EXPORT_SYMBOL vmlinux 0xca2b0ca8 get_unmapped_area -EXPORT_SYMBOL vmlinux 0xca2c193d ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0xca3a7953 unregister_md_personality -EXPORT_SYMBOL vmlinux 0xca5015fe linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0xca5546ad nf_log_set -EXPORT_SYMBOL vmlinux 0xca596194 phy_disconnect -EXPORT_SYMBOL vmlinux 0xca5ee09a vme_free_consistent -EXPORT_SYMBOL vmlinux 0xca6db772 dquot_get_state -EXPORT_SYMBOL vmlinux 0xca6ea978 i2c_add_adapter -EXPORT_SYMBOL vmlinux 0xca81f6d9 xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0xca832efe kmalloc_order -EXPORT_SYMBOL vmlinux 0xca8acc78 acpi_dbg_level -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xca9d94ee netif_napi_add -EXPORT_SYMBOL vmlinux 0xcab18410 hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0xcabb15a0 proc_symlink -EXPORT_SYMBOL vmlinux 0xcabc7888 idr_is_empty -EXPORT_SYMBOL vmlinux 0xcac43941 vfs_rename -EXPORT_SYMBOL vmlinux 0xcad153e6 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0xcad3ee5c ip_ct_attach -EXPORT_SYMBOL vmlinux 0xcae8cd43 dma_async_device_register -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb11007a blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0xcb128141 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0xcb15499f param_get_ushort -EXPORT_SYMBOL vmlinux 0xcb2b1329 wireless_send_event -EXPORT_SYMBOL vmlinux 0xcb376cc5 netdev_update_features -EXPORT_SYMBOL vmlinux 0xcb4e9bd2 tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0xcb661ed8 dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power -EXPORT_SYMBOL vmlinux 0xcb8384a2 page_waitqueue -EXPORT_SYMBOL vmlinux 0xcb936989 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0xcba6f6b5 param_ops_bint -EXPORT_SYMBOL vmlinux 0xcbabbffb blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0xcbae6c7a acpi_lid_notifier_unregister -EXPORT_SYMBOL vmlinux 0xcbaf1986 fsnotify_destroy_mark -EXPORT_SYMBOL vmlinux 0xcbb9560f kernel_setsockopt -EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0xcbf451ab ata_link_printk -EXPORT_SYMBOL vmlinux 0xcbff5e68 mempool_create -EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc26a9e3 vga_put -EXPORT_SYMBOL vmlinux 0xcc29c14b dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0xcc2e6a3e dma_release_from_coherent -EXPORT_SYMBOL vmlinux 0xcc44d7ef md_flush_request -EXPORT_SYMBOL vmlinux 0xcc46af9e tcp_prequeue -EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc50592c genphy_soft_reset -EXPORT_SYMBOL vmlinux 0xcc82c2a1 mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0xcc84d171 proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0xcc8d3f4f acpi_os_execute -EXPORT_SYMBOL vmlinux 0xcc983288 skb_ensure_writable -EXPORT_SYMBOL vmlinux 0xcca6620d nf_unregister_hooks -EXPORT_SYMBOL vmlinux 0xccbecff3 of_device_unregister -EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor -EXPORT_SYMBOL vmlinux 0xccdd933d set_groups -EXPORT_SYMBOL vmlinux 0xccf400cb of_find_device_by_node -EXPORT_SYMBOL vmlinux 0xccfc2031 simple_write_end -EXPORT_SYMBOL vmlinux 0xcd0a6bc1 __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0xcd0d8891 acpi_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xcd16f57c follow_up -EXPORT_SYMBOL vmlinux 0xcd20667a kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0xcd2704a5 fb_set_cmap -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd379d3a dquot_disable -EXPORT_SYMBOL vmlinux 0xcd407d14 ps2_handle_ack -EXPORT_SYMBOL vmlinux 0xcd4a3c66 mmc_alloc_host -EXPORT_SYMBOL vmlinux 0xcd57f7b0 radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0xcd676f47 tcp_recvmsg -EXPORT_SYMBOL vmlinux 0xcd80477d empty_aops -EXPORT_SYMBOL vmlinux 0xcd8833e3 ip_getsockopt -EXPORT_SYMBOL vmlinux 0xcd8ed10f vm_insert_mixed -EXPORT_SYMBOL vmlinux 0xcd9329f1 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0xcdae5764 blk_queue_softirq_done -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdf85935 reservation_object_reserve_shared -EXPORT_SYMBOL vmlinux 0xce065200 sock_no_ioctl -EXPORT_SYMBOL vmlinux 0xce08b687 of_mdiobus_register -EXPORT_SYMBOL vmlinux 0xce1f3540 buffer_migrate_page -EXPORT_SYMBOL vmlinux 0xce238a27 netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce45952a bio_clone_bioset -EXPORT_SYMBOL vmlinux 0xce4904a4 acpi_leave_sleep_state -EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0xce505d3f vme_dma_request -EXPORT_SYMBOL vmlinux 0xce522efd current_in_userns -EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce765fbb ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0xce7850e1 crc32_le_shift -EXPORT_SYMBOL vmlinux 0xce788eca pnp_get_resource -EXPORT_SYMBOL vmlinux 0xce81f1ae param_get_invbool -EXPORT_SYMBOL vmlinux 0xce929979 arp_tbl -EXPORT_SYMBOL vmlinux 0xce99d25f register_netdev -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xceae504f cmdline_parts_free -EXPORT_SYMBOL vmlinux 0xceb1717d completion_done -EXPORT_SYMBOL vmlinux 0xceeed2c6 d_obtain_root -EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 -EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcefcfa18 simple_pin_fs -EXPORT_SYMBOL vmlinux 0xcf0ec104 have_submounts -EXPORT_SYMBOL vmlinux 0xcf12053a phy_ethtool_gset -EXPORT_SYMBOL vmlinux 0xcf1ddc42 udp_del_offload -EXPORT_SYMBOL vmlinux 0xcf58b8c0 scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0xcfa1f7e8 tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0xcfb4a296 trace_print_array_seq -EXPORT_SYMBOL vmlinux 0xcfdbc9bd rtnl_create_link -EXPORT_SYMBOL vmlinux 0xd01dad21 dquot_file_open -EXPORT_SYMBOL vmlinux 0xd04b388f sock_cmsg_send -EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond -EXPORT_SYMBOL vmlinux 0xd0824c3d input_release_device -EXPORT_SYMBOL vmlinux 0xd0831eb9 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0xd08a0509 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0xd08ab424 ip6_expire_frag_queue -EXPORT_SYMBOL vmlinux 0xd08f6239 sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc -EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init -EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces -EXPORT_SYMBOL vmlinux 0xd0b9ed78 phy_suspend -EXPORT_SYMBOL vmlinux 0xd0e7024a down_read -EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format -EXPORT_SYMBOL vmlinux 0xd0fa84c5 neigh_connected_output -EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first -EXPORT_SYMBOL vmlinux 0xd1123ace seq_lseek -EXPORT_SYMBOL vmlinux 0xd1165702 devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xd1652a93 acpi_info -EXPORT_SYMBOL vmlinux 0xd16f8f5b nvm_addr_to_generic_mode -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd1873fbd padata_remove_cpu -EXPORT_SYMBOL vmlinux 0xd18ff827 cpu_present_mask -EXPORT_SYMBOL vmlinux 0xd1957c90 bdgrab -EXPORT_SYMBOL vmlinux 0xd19c20b4 of_platform_bus_probe -EXPORT_SYMBOL vmlinux 0xd1aeffb6 idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xd1cae44f shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0xd1cea402 dm_put_table_device -EXPORT_SYMBOL vmlinux 0xd1d03abd mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0xd1d6619f inet_sendmsg -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1dc3a5c inet_put_port -EXPORT_SYMBOL vmlinux 0xd1ea4d10 neigh_lookup -EXPORT_SYMBOL vmlinux 0xd1f8e647 bh_submit_read -EXPORT_SYMBOL vmlinux 0xd20994f8 jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0xd2243384 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0xd23da255 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0xd247d926 capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0xd24ba4c1 fence_free -EXPORT_SYMBOL vmlinux 0xd2506334 wireless_spy_update -EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd25e16e3 remove_wait_queue -EXPORT_SYMBOL vmlinux 0xd27930c4 netlink_set_err -EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd2957f0e remap_vmalloc_range_partial -EXPORT_SYMBOL vmlinux 0xd2b09ce5 __kmalloc -EXPORT_SYMBOL vmlinux 0xd2d1b225 tcf_hash_search -EXPORT_SYMBOL vmlinux 0xd2d54ac4 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd315bcef blk_queue_make_request -EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd3259d65 test_and_set_bit -EXPORT_SYMBOL vmlinux 0xd333c15b forget_cached_acl -EXPORT_SYMBOL vmlinux 0xd349730a mpage_readpage -EXPORT_SYMBOL vmlinux 0xd3559ef4 __memset -EXPORT_SYMBOL vmlinux 0xd3632c24 dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0xd395c0ba neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0xd3b12742 prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xd3e4eaed abx500_get_register_page_interruptible -EXPORT_SYMBOL vmlinux 0xd409b88d netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0xd41d4ed5 dput -EXPORT_SYMBOL vmlinux 0xd41fe818 _raw_read_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xd4488949 migrate_page -EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex -EXPORT_SYMBOL vmlinux 0xd46c6f8c sock_from_file -EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system -EXPORT_SYMBOL vmlinux 0xd48fdeef dql_completed -EXPORT_SYMBOL vmlinux 0xd4960ab8 ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0xd498be3e set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0xd4992eff dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0xd4a01cde xfrm_find_acq -EXPORT_SYMBOL vmlinux 0xd4cef7e5 blk_mq_add_to_requeue_list -EXPORT_SYMBOL vmlinux 0xd4d7529f init_buffer -EXPORT_SYMBOL vmlinux 0xd4d97104 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0xd4e7aa3d ioremap_cache -EXPORT_SYMBOL vmlinux 0xd4f79b91 nvm_unregister_target -EXPORT_SYMBOL vmlinux 0xd50fef48 acpi_detach_data -EXPORT_SYMBOL vmlinux 0xd51db045 pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0xd551bf1d amba_find_device -EXPORT_SYMBOL vmlinux 0xd55605ac xfrm6_rcv -EXPORT_SYMBOL vmlinux 0xd559a0e0 __seq_open_private -EXPORT_SYMBOL vmlinux 0xd561805b sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0xd575cb80 mii_check_link -EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames -EXPORT_SYMBOL vmlinux 0xd5db8f9e xfrm_garbage_collect -EXPORT_SYMBOL vmlinux 0xd5e793f4 dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0xd5f489d2 kill_litter_super -EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0xd61f4f45 tcp_req_err -EXPORT_SYMBOL vmlinux 0xd622d155 phy_device_create -EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout -EXPORT_SYMBOL vmlinux 0xd62e0bf7 set_blocksize -EXPORT_SYMBOL vmlinux 0xd63a0f4b xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xd641a47a param_get_long -EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode -EXPORT_SYMBOL vmlinux 0xd6542914 f_setown -EXPORT_SYMBOL vmlinux 0xd655dd87 __dev_remove_pack -EXPORT_SYMBOL vmlinux 0xd655f199 acpi_processor_preregister_performance -EXPORT_SYMBOL vmlinux 0xd65f2d64 gnttab_alloc_pages -EXPORT_SYMBOL vmlinux 0xd678e002 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xd67e1750 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0xd67fd548 mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd6a2e10d pci_get_slot -EXPORT_SYMBOL vmlinux 0xd6c43ac4 tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0xd6c455da bio_map_kern -EXPORT_SYMBOL vmlinux 0xd6e896b3 bioset_create -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd6fabee0 nvm_put_blk -EXPORT_SYMBOL vmlinux 0xd727f0c3 del_gendisk -EXPORT_SYMBOL vmlinux 0xd734317a ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0xd737b9de elv_rb_add -EXPORT_SYMBOL vmlinux 0xd73fc0ca __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0xd7502ee3 input_register_device -EXPORT_SYMBOL vmlinux 0xd750602f kernel_param_unlock -EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function -EXPORT_SYMBOL vmlinux 0xd7700449 pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0xd794ad24 pcim_enable_device -EXPORT_SYMBOL vmlinux 0xd79b33a5 inode_reclaim_rsv_space -EXPORT_SYMBOL vmlinux 0xd79e2ec0 unregister_framebuffer -EXPORT_SYMBOL vmlinux 0xd7aecdc0 dquot_drop -EXPORT_SYMBOL vmlinux 0xd7b53f1f tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0xd7b8632d ata_port_printk -EXPORT_SYMBOL vmlinux 0xd7badda0 scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0xd7bc3e88 pci_find_pcie_root_port -EXPORT_SYMBOL vmlinux 0xd7ccd031 blk_mq_abort_requeue_list -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7fa62ba devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0xd847f74d padata_do_parallel -EXPORT_SYMBOL vmlinux 0xd8496f8d compat_ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0xd862e4c9 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0xd866ada2 nvm_erase_blk -EXPORT_SYMBOL vmlinux 0xd868162b generic_read_dir -EXPORT_SYMBOL vmlinux 0xd89121f0 __register_chrdev -EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8c2fc04 md_write_end -EXPORT_SYMBOL vmlinux 0xd8cfbea1 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0xd8d7cefb nobh_write_begin -EXPORT_SYMBOL vmlinux 0xd8de559c xen_dma_ops -EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region -EXPORT_SYMBOL vmlinux 0xd8f7f49c km_state_notify -EXPORT_SYMBOL vmlinux 0xd8f98513 simple_release_fs -EXPORT_SYMBOL vmlinux 0xd9091363 acpi_install_notify_handler -EXPORT_SYMBOL vmlinux 0xd924e63d skb_orphan_partial -EXPORT_SYMBOL vmlinux 0xd935e67e kmem_cache_size -EXPORT_SYMBOL vmlinux 0xd93e4764 of_node_put -EXPORT_SYMBOL vmlinux 0xd94322e7 acpi_evaluate_reference -EXPORT_SYMBOL vmlinux 0xd9468197 proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xd95b3969 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0xd96109bf tcp_proc_unregister -EXPORT_SYMBOL vmlinux 0xd971f195 tcp_mtup_init -EXPORT_SYMBOL vmlinux 0xd97bcbd6 compat_mc_getsockopt -EXPORT_SYMBOL vmlinux 0xd97bf1db block_write_end -EXPORT_SYMBOL vmlinux 0xd981e789 led_set_brightness -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd9862f60 vfs_mknod -EXPORT_SYMBOL vmlinux 0xd99f1088 xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0xd9c67e85 tty_port_close_end -EXPORT_SYMBOL vmlinux 0xd9cf3163 dev_addr_add -EXPORT_SYMBOL vmlinux 0xd9d7a49c param_ops_byte -EXPORT_SYMBOL vmlinux 0xd9d8b640 eth_header_cache_update -EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler -EXPORT_SYMBOL vmlinux 0xd9fbeb51 ppp_input -EXPORT_SYMBOL vmlinux 0xda01479c mempool_create_node -EXPORT_SYMBOL vmlinux 0xda0d46c2 devm_gpiod_put -EXPORT_SYMBOL vmlinux 0xda14777d inet6_release -EXPORT_SYMBOL vmlinux 0xda25f4d6 release_pages -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda628612 path_is_under -EXPORT_SYMBOL vmlinux 0xda6de9e4 pci_enable_device -EXPORT_SYMBOL vmlinux 0xda775d91 dquot_quota_off -EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xda821094 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0xda9fc7ae kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0xdaa4eeaf netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0xdabe9d8a alloc_disk -EXPORT_SYMBOL vmlinux 0xdabef73a vme_irq_generate -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdad4dd36 param_get_ulong -EXPORT_SYMBOL vmlinux 0xdadd97ac compat_sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell -EXPORT_SYMBOL vmlinux 0xdaef8159 path_put -EXPORT_SYMBOL vmlinux 0xdafd9653 xfrm_input -EXPORT_SYMBOL vmlinux 0xdb052b54 param_set_short -EXPORT_SYMBOL vmlinux 0xdb3bcca6 cancel_delayed_work -EXPORT_SYMBOL vmlinux 0xdb3e34b9 netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0xdb3f531b nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb7ad0e3 devm_memunmap -EXPORT_SYMBOL vmlinux 0xdb824fbb blk_mq_delay_queue -EXPORT_SYMBOL vmlinux 0xdb8cdd11 module_put -EXPORT_SYMBOL vmlinux 0xdbf699cd genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc1f6cd7 param_set_invbool -EXPORT_SYMBOL vmlinux 0xdc349f4c request_firmware -EXPORT_SYMBOL vmlinux 0xdc3c41a8 __crypto_memneq -EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 -EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc5fc764 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0xdc772c4d skb_checksum_help -EXPORT_SYMBOL vmlinux 0xdc87b932 pci_get_class -EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close -EXPORT_SYMBOL vmlinux 0xdcb3ec6c __sk_dst_check -EXPORT_SYMBOL vmlinux 0xdcb4f167 __inet_stream_connect -EXPORT_SYMBOL vmlinux 0xdcb764ad memset -EXPORT_SYMBOL vmlinux 0xdcbbc012 d_rehash -EXPORT_SYMBOL vmlinux 0xdcd10cc3 pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0xdcf1d0b6 icmpv6_send -EXPORT_SYMBOL vmlinux 0xdcf3ea11 register_sysctl_paths -EXPORT_SYMBOL vmlinux 0xdd0bdfa0 abx500_startup_irq_enabled -EXPORT_SYMBOL vmlinux 0xdd21787b __bforget -EXPORT_SYMBOL vmlinux 0xdd3246a8 phy_attach -EXPORT_SYMBOL vmlinux 0xdd4ca69d tty_port_put -EXPORT_SYMBOL vmlinux 0xdd4d61c0 fsnotify_alloc_group -EXPORT_SYMBOL vmlinux 0xdd61d023 cdrom_mode_select -EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy -EXPORT_SYMBOL vmlinux 0xdd792b34 end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0xdd7dd50c follow_down_one -EXPORT_SYMBOL vmlinux 0xdd912530 block_write_begin -EXPORT_SYMBOL vmlinux 0xdd914eb8 block_write_full_page -EXPORT_SYMBOL vmlinux 0xdd9ca4eb ihold -EXPORT_SYMBOL vmlinux 0xddb49e7b fs_bio_set -EXPORT_SYMBOL vmlinux 0xdddf4a5c pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0xdde0fbbb genphy_update_link -EXPORT_SYMBOL vmlinux 0xddfa34e7 padata_stop -EXPORT_SYMBOL vmlinux 0xde149a15 vme_irq_request -EXPORT_SYMBOL vmlinux 0xde434656 wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0xde44358e vme_dma_list_add -EXPORT_SYMBOL vmlinux 0xde4d306a create_empty_buffers -EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0xde6603f0 bdi_register_dev -EXPORT_SYMBOL vmlinux 0xde6e86ad scsi_print_command -EXPORT_SYMBOL vmlinux 0xde8b8267 sk_prot_clear_portaddr_nulls -EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages -EXPORT_SYMBOL vmlinux 0xdec17326 copy_page_from_iter -EXPORT_SYMBOL vmlinux 0xdec62737 mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0xdeda0072 framebuffer_release -EXPORT_SYMBOL vmlinux 0xdee39b89 dquot_resume -EXPORT_SYMBOL vmlinux 0xdee6327b datagram_poll -EXPORT_SYMBOL vmlinux 0xdef1c419 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0xdef1fd78 da903x_query_status -EXPORT_SYMBOL vmlinux 0xdef60902 security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0xdf0da3cc acpi_get_devices -EXPORT_SYMBOL vmlinux 0xdf12a927 acpi_check_dsm -EXPORT_SYMBOL vmlinux 0xdf166ff1 kobject_add -EXPORT_SYMBOL vmlinux 0xdf19b406 __i2c_transfer -EXPORT_SYMBOL vmlinux 0xdf1b8f43 mpage_writepages -EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf3bfe68 dev_disable_lro -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf60099a __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol -EXPORT_SYMBOL vmlinux 0xdf7b5be9 phy_drivers_register -EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdfc02769 __insert_inode_hash -EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init -EXPORT_SYMBOL vmlinux 0xdfc5235d proc_create_data -EXPORT_SYMBOL vmlinux 0xdfcc492f swiotlb_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xe00c3fb9 put_io_context -EXPORT_SYMBOL vmlinux 0xe00da1d3 get_phy_device -EXPORT_SYMBOL vmlinux 0xe00e8d07 of_get_pci_address -EXPORT_SYMBOL vmlinux 0xe0101a2a alloc_fcdev -EXPORT_SYMBOL vmlinux 0xe01b3079 i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0xe04690b3 find_get_entry -EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xe05a3cd0 netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0xe05bcd92 get_super -EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone -EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool -EXPORT_SYMBOL vmlinux 0xe092adf8 max8998_update_reg -EXPORT_SYMBOL vmlinux 0xe0959bba dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0xe09b04b4 acpi_device_set_power -EXPORT_SYMBOL vmlinux 0xe09cd1c7 mmc_free_host -EXPORT_SYMBOL vmlinux 0xe0ac8bd2 acpi_bus_generate_netlink_event -EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe10f36d3 seq_hex_dump -EXPORT_SYMBOL vmlinux 0xe110189e ida_pre_get -EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -EXPORT_SYMBOL vmlinux 0xe11f3cbc _raw_read_lock_bh -EXPORT_SYMBOL vmlinux 0xe12bc3c1 i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0xe13b44e9 vfs_link -EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors -EXPORT_SYMBOL vmlinux 0xe149c6c8 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0xe1620fa1 swiotlb_sync_single_for_device -EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xe187512d check_disk_change -EXPORT_SYMBOL vmlinux 0xe1aa4023 fbcon_set_bitops -EXPORT_SYMBOL vmlinux 0xe1b0a089 ps2_end_command -EXPORT_SYMBOL vmlinux 0xe1b60f25 kobject_put -EXPORT_SYMBOL vmlinux 0xe1cf60f0 generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0xe1db4290 posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0xe1e14fed skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0xe1e3a18c of_find_backlight_by_node -EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xe20372ae radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0xe221d14a __devcgroup_inode_permission -EXPORT_SYMBOL vmlinux 0xe23ab64f irq_to_desc -EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe244d528 xfrm_unregister_mode -EXPORT_SYMBOL vmlinux 0xe247d600 pci_enable_msi_range -EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 -EXPORT_SYMBOL vmlinux 0xe25af9a7 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0xe27217e6 devfreq_add_device -EXPORT_SYMBOL vmlinux 0xe2934237 kset_unregister -EXPORT_SYMBOL vmlinux 0xe29e0f1d generic_file_llseek -EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t -EXPORT_SYMBOL vmlinux 0xe2b8bf2d dquot_alloc -EXPORT_SYMBOL vmlinux 0xe2b9e8d7 fb_class -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2d7cde8 get_task_exe_file -EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0xe317764d jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0xe319eb24 acpi_pci_osc_control_set -EXPORT_SYMBOL vmlinux 0xe3292a25 file_update_time -EXPORT_SYMBOL vmlinux 0xe332e879 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0xe3334cf2 I_BDEV -EXPORT_SYMBOL vmlinux 0xe3563fdf __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0xe38a9c8c sk_stream_write_space -EXPORT_SYMBOL vmlinux 0xe3a53f4c sort -EXPORT_SYMBOL vmlinux 0xe3a7d9e6 skb_set_owner_w -EXPORT_SYMBOL vmlinux 0xe3b8cc8e tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0xe3c4b0f0 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xe3e13213 sk_common_release -EXPORT_SYMBOL vmlinux 0xe41e798e setup_new_exec -EXPORT_SYMBOL vmlinux 0xe44026c2 genlmsg_put -EXPORT_SYMBOL vmlinux 0xe4410ccf get_acl -EXPORT_SYMBOL vmlinux 0xe452b1f3 irq_set_chip -EXPORT_SYMBOL vmlinux 0xe46237b2 elv_unregister_queue -EXPORT_SYMBOL vmlinux 0xe47f3d60 single_open -EXPORT_SYMBOL vmlinux 0xe4a53abf pci_choose_state -EXPORT_SYMBOL vmlinux 0xe4c203fd ata_dev_printk -EXPORT_SYMBOL vmlinux 0xe4e09d15 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array -EXPORT_SYMBOL vmlinux 0xe4eaab2e t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0xe4eac1b5 zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0xe4ecbae2 param_get_string -EXPORT_SYMBOL vmlinux 0xe5096cee dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe54e12c7 vfs_create -EXPORT_SYMBOL vmlinux 0xe559b168 sg_miter_start -EXPORT_SYMBOL vmlinux 0xe566a5db block_commit_write -EXPORT_SYMBOL vmlinux 0xe56a5c99 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton -EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set -EXPORT_SYMBOL vmlinux 0xe5921f03 generic_delete_inode -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5c83e7d register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0xe5e613b5 bdevname -EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xe5f1801d __netif_schedule -EXPORT_SYMBOL vmlinux 0xe5f45587 __pagevec_release -EXPORT_SYMBOL vmlinux 0xe5f8bbc0 dev_mc_init -EXPORT_SYMBOL vmlinux 0xe6080b7c invalidate_partition -EXPORT_SYMBOL vmlinux 0xe60cda5a skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0xe631e2e0 down_write -EXPORT_SYMBOL vmlinux 0xe6424651 mdiobus_write -EXPORT_SYMBOL vmlinux 0xe642bf18 i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0xe6456bc6 scsi_host_alloc -EXPORT_SYMBOL vmlinux 0xe6509979 generic_perform_write -EXPORT_SYMBOL vmlinux 0xe6581d2e flush_dcache_page -EXPORT_SYMBOL vmlinux 0xe65a73d7 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0xe6734313 __dst_free -EXPORT_SYMBOL vmlinux 0xe678008a mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe69a9df4 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0xe6bb0aff sock_setsockopt -EXPORT_SYMBOL vmlinux 0xe6c12add phy_driver_unregister -EXPORT_SYMBOL vmlinux 0xe6dc09b0 simple_empty -EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock -EXPORT_SYMBOL vmlinux 0xe7118032 nd_device_unregister -EXPORT_SYMBOL vmlinux 0xe71c21eb prepare_binprm -EXPORT_SYMBOL vmlinux 0xe72fd6e2 nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0xe736b53e pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0xe74fce83 truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0xe75fa078 jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0xe76b3c1a tty_port_tty_get -EXPORT_SYMBOL vmlinux 0xe76f50e2 scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0xe7713b7b skb_try_coalesce -EXPORT_SYMBOL vmlinux 0xe77e14fe nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xe77f40d1 pneigh_lookup -EXPORT_SYMBOL vmlinux 0xe78fd77b mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0xe79bc73e unregister_filesystem -EXPORT_SYMBOL vmlinux 0xe7a77ab7 sock_rfree -EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx -EXPORT_SYMBOL vmlinux 0xe7bec4ae module_layout -EXPORT_SYMBOL vmlinux 0xe7bff2bf pcim_iomap -EXPORT_SYMBOL vmlinux 0xe7cf34be poll_initwait -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7d68af1 unregister_shrinker -EXPORT_SYMBOL vmlinux 0xe7df55f5 mmc_get_card -EXPORT_SYMBOL vmlinux 0xe7df5bd1 nlmsg_notify -EXPORT_SYMBOL vmlinux 0xe7e0b1c7 freeze_bdev -EXPORT_SYMBOL vmlinux 0xe7e48e10 send_sig_info -EXPORT_SYMBOL vmlinux 0xe7ebb03a sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0xe7ee99a2 fput -EXPORT_SYMBOL vmlinux 0xe80f19e2 param_ops_ullong -EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0xe82ddabc blk_mq_can_queue -EXPORT_SYMBOL vmlinux 0xe8521e56 tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0xe85ab826 nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0xe876e34a d_invalidate -EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss -EXPORT_SYMBOL vmlinux 0xe88626c1 security_d_instantiate -EXPORT_SYMBOL vmlinux 0xe88bf8f2 __module_put_and_exit -EXPORT_SYMBOL vmlinux 0xe894219a pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xe8c3eff7 pci_get_device -EXPORT_SYMBOL vmlinux 0xe8c936c5 tcf_em_unregister -EXPORT_SYMBOL vmlinux 0xe8e3e602 __scm_send -EXPORT_SYMBOL vmlinux 0xe8ef0ff0 current_kernel_time64 -EXPORT_SYMBOL vmlinux 0xe8fb902a scsi_device_set_state -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe918e69e dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0xe939ca83 jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0xe9430589 generic_write_checks -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr -EXPORT_SYMBOL vmlinux 0xe9773746 crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0xe9b004df pci_disable_link_state -EXPORT_SYMBOL vmlinux 0xe9e07c8f elv_rb_find -EXPORT_SYMBOL vmlinux 0xe9e2d311 mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0xe9f43fac dcache_dir_open -EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xe9fc1174 sk_alloc -EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len -EXPORT_SYMBOL vmlinux 0xea0eef0b qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0xea22ae8d tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0xea400cc7 passthru_features_check -EXPORT_SYMBOL vmlinux 0xea464d7e pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0xea6c643a kernel_sendpage -EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table -EXPORT_SYMBOL vmlinux 0xea7b8a44 acpi_install_interface -EXPORT_SYMBOL vmlinux 0xea90bdd3 acpi_attach_data -EXPORT_SYMBOL vmlinux 0xeaa464f8 inet_frag_kill -EXPORT_SYMBOL vmlinux 0xeabd27c4 devm_gpiod_get_index -EXPORT_SYMBOL vmlinux 0xeac3b56f __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0xeacc06f7 fence_signal -EXPORT_SYMBOL vmlinux 0xeacf5c74 km_policy_notify -EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay -EXPORT_SYMBOL vmlinux 0xeb0d56a6 netif_rx -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb42b5e3 swiotlb_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact -EXPORT_SYMBOL vmlinux 0xeb4d4d51 xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0xeb5eabfd mmc_start_req -EXPORT_SYMBOL vmlinux 0xeb6556f9 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0xeb87cf6d tty_port_destroy -EXPORT_SYMBOL vmlinux 0xeb8fe06b compat_mc_setsockopt -EXPORT_SYMBOL vmlinux 0xeba381e9 blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0xeba5e9d5 nvm_dev_dma_free -EXPORT_SYMBOL vmlinux 0xebb18f34 skb_pad -EXPORT_SYMBOL vmlinux 0xebc3396d generic_update_time -EXPORT_SYMBOL vmlinux 0xebd052e7 param_get_ullong -EXPORT_SYMBOL vmlinux 0xebd554cf tty_lock -EXPORT_SYMBOL vmlinux 0xebe23140 twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0xebe8e6bf fb_find_mode -EXPORT_SYMBOL vmlinux 0xec17ae3d dev_uc_sync -EXPORT_SYMBOL vmlinux 0xec2d17ea d_alloc_name -EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec5edda7 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0xec7e5d34 of_mm_gpiochip_add -EXPORT_SYMBOL vmlinux 0xec9d3ba9 d_set_d_op -EXPORT_SYMBOL vmlinux 0xeca25b60 kthread_stop -EXPORT_SYMBOL vmlinux 0xeca77861 submit_bio_wait -EXPORT_SYMBOL vmlinux 0xeccd3e0c acpi_handle_printk -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xed18ef2f input_reset_device -EXPORT_SYMBOL vmlinux 0xed433664 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0xed441b18 tcf_exts_change -EXPORT_SYMBOL vmlinux 0xed55e035 pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xed61b960 blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0xed685215 mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0xed6e55b0 ip6_frag_init -EXPORT_SYMBOL vmlinux 0xed73a541 scsicam_bios_param -EXPORT_SYMBOL vmlinux 0xed7a971d sock_no_poll -EXPORT_SYMBOL vmlinux 0xed81af52 simple_transaction_set -EXPORT_SYMBOL vmlinux 0xed965c7d scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0xed9f2c7c tcp_connect -EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedcb16e9 skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0xedcfa7c9 devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0xede176c5 inet_recvmsg -EXPORT_SYMBOL vmlinux 0xede8e237 phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0xedefd7ad inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long -EXPORT_SYMBOL vmlinux 0xee0743c1 of_phy_register_fixed_link -EXPORT_SYMBOL vmlinux 0xee08a8f9 ping_prot -EXPORT_SYMBOL vmlinux 0xee118f29 vm_insert_pfn -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee33fe5a param_set_ulong -EXPORT_SYMBOL vmlinux 0xee43b816 lg_local_unlock_cpu -EXPORT_SYMBOL vmlinux 0xee60b38a blk_stop_queue -EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices -EXPORT_SYMBOL vmlinux 0xee7f430b ppp_channel_index -EXPORT_SYMBOL vmlinux 0xee815192 of_root -EXPORT_SYMBOL vmlinux 0xee81cb23 rtnl_configure_link -EXPORT_SYMBOL vmlinux 0xee88079d fget_raw -EXPORT_SYMBOL vmlinux 0xee904096 page_follow_link_light -EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee9a0e4b netif_carrier_on -EXPORT_SYMBOL vmlinux 0xee9bb85c vfs_readv -EXPORT_SYMBOL vmlinux 0xeea9b8b7 vga_tryget -EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeec2c7cf ucs2_as_utf8 -EXPORT_SYMBOL vmlinux 0xeecc3962 free_cgroup_ns -EXPORT_SYMBOL vmlinux 0xeef1223c of_graph_get_port_by_id -EXPORT_SYMBOL vmlinux 0xeef161aa groups_free -EXPORT_SYMBOL vmlinux 0xef36cde6 uart_add_one_port -EXPORT_SYMBOL vmlinux 0xef7a86db set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0xef9c8fec arp_xmit -EXPORT_SYMBOL vmlinux 0xefbd1175 twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0xefc8ed68 get_empty_filp -EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xefd333c6 generic_file_read_iter -EXPORT_SYMBOL vmlinux 0xefd52080 compat_ip_setsockopt -EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0xefe19dc5 sync_blockdev -EXPORT_SYMBOL vmlinux 0xefe9b544 dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0xeff6dbe2 pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0xeffb577c neigh_destroy -EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0xf0193e24 padata_alloc -EXPORT_SYMBOL vmlinux 0xf0545959 xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0xf062576b ucs2_utf8size -EXPORT_SYMBOL vmlinux 0xf06ce0a6 jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0xf075b5f0 pci_iomap_range -EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag -EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int -EXPORT_SYMBOL vmlinux 0xf0a344fd flush_signals -EXPORT_SYMBOL vmlinux 0xf0a8237a radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0xf0ae4c17 ip_queue_xmit -EXPORT_SYMBOL vmlinux 0xf0b09fc7 poll_schedule_timeout -EXPORT_SYMBOL vmlinux 0xf0ed3933 __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort -EXPORT_SYMBOL vmlinux 0xf0ff245b blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info -EXPORT_SYMBOL vmlinux 0xf10b3765 pcim_pin_device -EXPORT_SYMBOL vmlinux 0xf1411c53 nvm_register_target -EXPORT_SYMBOL vmlinux 0xf145a1eb touch_buffer -EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init -EXPORT_SYMBOL vmlinux 0xf14b6072 request_key_async_with_auxdata -EXPORT_SYMBOL vmlinux 0xf16f1da7 dev_uc_del -EXPORT_SYMBOL vmlinux 0xf1718e46 secpath_dup -EXPORT_SYMBOL vmlinux 0xf193fb54 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps -EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf1982af4 phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0xf19fa3fa generic_mii_ioctl -EXPORT_SYMBOL vmlinux 0xf1afc81d sock_i_uid -EXPORT_SYMBOL vmlinux 0xf1c61a26 xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq -EXPORT_SYMBOL vmlinux 0xf217726d __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xf22901df ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf27dd632 mii_check_media -EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0xf2a0459d lg_local_lock -EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered -EXPORT_SYMBOL vmlinux 0xf2a2b163 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0xf2a2dd4c __scsi_print_sense -EXPORT_SYMBOL vmlinux 0xf2b5fa4c iov_iter_alignment -EXPORT_SYMBOL vmlinux 0xf2bd2dee tcp_gro_complete -EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2d4780c tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0xf2df05af xfrm_state_add -EXPORT_SYMBOL vmlinux 0xf30b1dfc security_path_truncate -EXPORT_SYMBOL vmlinux 0xf312cb9d ucs2_strsize -EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform -EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user -EXPORT_SYMBOL vmlinux 0xf3357352 mmc_fixup_device -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf3791134 sock_create_kern -EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf38f2e4d max8998_bulk_write -EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0xf3986b06 acpi_os_map_generic_address -EXPORT_SYMBOL vmlinux 0xf39b8d8f amba_device_register -EXPORT_SYMBOL vmlinux 0xf3a426a4 wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0xf3d3b87b dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3fca23b iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0xf3ffe9da blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0xf411e235 security_path_link -EXPORT_SYMBOL vmlinux 0xf41b9ba3 pci_find_bus -EXPORT_SYMBOL vmlinux 0xf42937bb xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0xf43550a9 devm_clk_put -EXPORT_SYMBOL vmlinux 0xf44cee4d iov_iter_kvec -EXPORT_SYMBOL vmlinux 0xf46d2fe0 cfb_copyarea -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf4835f92 wait_for_completion_io -EXPORT_SYMBOL vmlinux 0xf484aa28 blk_rq_set_block_pc -EXPORT_SYMBOL vmlinux 0xf49fd341 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0xf4a3d89a __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced -EXPORT_SYMBOL vmlinux 0xf4bcc878 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4c8d8d2 __generic_block_fiemap -EXPORT_SYMBOL vmlinux 0xf4c8fd7f rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf500f1ca inet_csk_accept -EXPORT_SYMBOL vmlinux 0xf509ea1f __inet_hash -EXPORT_SYMBOL vmlinux 0xf51bf88b nf_hooks_needed -EXPORT_SYMBOL vmlinux 0xf52b04a5 textsearch_destroy -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf5543737 udp_proc_unregister -EXPORT_SYMBOL vmlinux 0xf55dc983 scsi_device_get -EXPORT_SYMBOL vmlinux 0xf56fc193 skb_pull -EXPORT_SYMBOL vmlinux 0xf571ec43 n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0xf57296a7 bitmap_end_sync -EXPORT_SYMBOL vmlinux 0xf57df64b lwtunnel_get_encap_size -EXPORT_SYMBOL vmlinux 0xf58c1104 uart_register_driver -EXPORT_SYMBOL vmlinux 0xf58d9d1e __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0xf59b69a6 tty_write_room -EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set -EXPORT_SYMBOL vmlinux 0xf5a2bc42 __getblk_gfp -EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xf5e7e99c blkdev_fsync -EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command -EXPORT_SYMBOL vmlinux 0xf606c5f1 blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0xf60f373d scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0xf610707f __skb_checksum -EXPORT_SYMBOL vmlinux 0xf617da80 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0xf61c7ced fsnotify_put_group -EXPORT_SYMBOL vmlinux 0xf62008da find_inode_nowait -EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl -EXPORT_SYMBOL vmlinux 0xf63bbd1a lock_rename -EXPORT_SYMBOL vmlinux 0xf63d17c9 devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0xf648bdd3 key_reject_and_link -EXPORT_SYMBOL vmlinux 0xf6552667 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0xf6567da3 key_put -EXPORT_SYMBOL vmlinux 0xf6652ab8 proc_remove -EXPORT_SYMBOL vmlinux 0xf66b9c73 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xf6718a2c key_link -EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xf6a139f7 grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table -EXPORT_SYMBOL vmlinux 0xf6cf51f3 ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0xf6d0776a dev_get_stats -EXPORT_SYMBOL vmlinux 0xf6d07954 dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0xf6e3e74e inet6_bind -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6f0ffed _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf7069dc4 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0xf72b3e82 generic_fillattr -EXPORT_SYMBOL vmlinux 0xf73a466a splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0xf73fd637 seq_vprintf -EXPORT_SYMBOL vmlinux 0xf7584a9c find_font -EXPORT_SYMBOL vmlinux 0xf77555cd __memcpy_toio -EXPORT_SYMBOL vmlinux 0xf7778b95 fasync_helper -EXPORT_SYMBOL vmlinux 0xf77b6e1c set_bh_page -EXPORT_SYMBOL vmlinux 0xf77d6001 ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0xf7822b28 dummy_dma_ops -EXPORT_SYMBOL vmlinux 0xf78d735a nf_log_register -EXPORT_SYMBOL vmlinux 0xf79e97cd acpi_get_physical_device_location -EXPORT_SYMBOL vmlinux 0xf7b0695a mem_section -EXPORT_SYMBOL vmlinux 0xf7cf4598 kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xf7d7d9d6 blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xf8011f04 compat_sock_get_timestampns -EXPORT_SYMBOL vmlinux 0xf80d138e nobh_truncate_page -EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf812cff6 memscan -EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area -EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf836593e dm_register_target -EXPORT_SYMBOL vmlinux 0xf840c3a8 update_region -EXPORT_SYMBOL vmlinux 0xf8425a96 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0xf8522b21 dev_notice -EXPORT_SYMBOL vmlinux 0xf8819757 alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0xf885266a pci_reenable_device -EXPORT_SYMBOL vmlinux 0xf88e0ee2 acpi_get_table_header -EXPORT_SYMBOL vmlinux 0xf8975bae neigh_for_each -EXPORT_SYMBOL vmlinux 0xf8a30b13 deactivate_locked_super -EXPORT_SYMBOL vmlinux 0xf8a83c88 input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0xf8ae07af mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0xf8bcb305 dma_find_channel -EXPORT_SYMBOL vmlinux 0xf8d04f09 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0xf8dd8706 serio_bus -EXPORT_SYMBOL vmlinux 0xf8df9210 skb_copy -EXPORT_SYMBOL vmlinux 0xf8e398fc memstart_addr -EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xf8fa6853 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0xf8fbaa90 put_disk -EXPORT_SYMBOL vmlinux 0xf91d17be scsi_cmd_blk_ioctl -EXPORT_SYMBOL vmlinux 0xf9224a0c i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0xf937a3de mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0xf93d0659 of_get_mac_address -EXPORT_SYMBOL vmlinux 0xf94d3056 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0xf956c339 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0xf95a79b1 revalidate_disk -EXPORT_SYMBOL vmlinux 0xf95fbcb1 pcie_set_readrq -EXPORT_SYMBOL vmlinux 0xf971b318 gen_replace_estimator -EXPORT_SYMBOL vmlinux 0xf9907211 xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0xf99da5b8 iommu_put_dma_cookie -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9a93814 of_phy_is_fixed_link -EXPORT_SYMBOL vmlinux 0xf9b98967 blk_init_tags -EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat -EXPORT_SYMBOL vmlinux 0xf9dde891 wait_for_completion -EXPORT_SYMBOL vmlinux 0xfa23ea04 amba_driver_register -EXPORT_SYMBOL vmlinux 0xfa25e6d4 blk_init_queue_node -EXPORT_SYMBOL vmlinux 0xfa3097ff of_mm_gpiochip_remove -EXPORT_SYMBOL vmlinux 0xfa3d7034 vfs_writef -EXPORT_SYMBOL vmlinux 0xfa47465f ida_simple_get -EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa63c9a8 vme_unregister_driver -EXPORT_SYMBOL vmlinux 0xfa6835f7 cdev_init -EXPORT_SYMBOL vmlinux 0xfa7f400c get_io_context -EXPORT_SYMBOL vmlinux 0xfac6bc79 param_get_bool -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr -EXPORT_SYMBOL vmlinux 0xfaed8159 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0xfaee8ded path_nosuid -EXPORT_SYMBOL vmlinux 0xfafe59ef mmc_can_reset -EXPORT_SYMBOL vmlinux 0xfb0443fb acpi_get_parent -EXPORT_SYMBOL vmlinux 0xfb046746 of_find_net_device_by_node -EXPORT_SYMBOL vmlinux 0xfb12486d sockfd_lookup -EXPORT_SYMBOL vmlinux 0xfb2b582c jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0xfb4c65bf iget5_locked -EXPORT_SYMBOL vmlinux 0xfb4c9973 save_mount_options -EXPORT_SYMBOL vmlinux 0xfb5c42d3 of_get_min_tck -EXPORT_SYMBOL vmlinux 0xfb623798 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb6bffae locks_free_lock -EXPORT_SYMBOL vmlinux 0xfb710b8c msm_pinctrl_probe -EXPORT_SYMBOL vmlinux 0xfb73adc4 tty_port_init -EXPORT_SYMBOL vmlinux 0xfb763807 kill_pgrp -EXPORT_SYMBOL vmlinux 0xfb76f3d2 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0xfb80c7a0 acpi_walk_namespace -EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 -EXPORT_SYMBOL vmlinux 0xfba95235 tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock -EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbe8ff5e cpu_online_mask -EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem -EXPORT_SYMBOL vmlinux 0xfc0f7160 blk_rq_init -EXPORT_SYMBOL vmlinux 0xfc158c48 pci_map_rom -EXPORT_SYMBOL vmlinux 0xfc1c40bc of_get_cpu_node -EXPORT_SYMBOL vmlinux 0xfc34ead3 brioctl_set -EXPORT_SYMBOL vmlinux 0xfc3926d1 km_query -EXPORT_SYMBOL vmlinux 0xfc3e17a8 acpi_get_hp_hw_control_from_firmware -EXPORT_SYMBOL vmlinux 0xfc44b6aa fget -EXPORT_SYMBOL vmlinux 0xfc4b6d0a __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0xfc4c7222 max8925_bulk_write -EXPORT_SYMBOL vmlinux 0xfc52047f __wake_up_bit -EXPORT_SYMBOL vmlinux 0xfc52a48d pci_scan_bus -EXPORT_SYMBOL vmlinux 0xfc52f4f5 of_get_next_child -EXPORT_SYMBOL vmlinux 0xfc669546 input_flush_device -EXPORT_SYMBOL vmlinux 0xfc7d2ecd scmd_printk -EXPORT_SYMBOL vmlinux 0xfcaa2118 bdget -EXPORT_SYMBOL vmlinux 0xfcac0d40 acpi_install_interface_handler -EXPORT_SYMBOL vmlinux 0xfcaf619b pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0xfcb1e9da iov_iter_init -EXPORT_SYMBOL vmlinux 0xfcb598fa bio_put -EXPORT_SYMBOL vmlinux 0xfcb926cd kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0xfcd1d4ef mutex_unlock -EXPORT_SYMBOL vmlinux 0xfcd277ec scsi_remove_host -EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0xfd085b17 pci_dev_put -EXPORT_SYMBOL vmlinux 0xfd235808 pid_task -EXPORT_SYMBOL vmlinux 0xfd4a2ce6 nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0xfd5237cb mii_ethtool_gset -EXPORT_SYMBOL vmlinux 0xfd68fee7 vfs_iter_write -EXPORT_SYMBOL vmlinux 0xfd69b75f inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0xfd71c8ec dquot_quota_sync -EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0xfdd24272 dquot_transfer -EXPORT_SYMBOL vmlinux 0xfde6b312 pnp_activate_dev -EXPORT_SYMBOL vmlinux 0xfde866c4 md_reload_sb -EXPORT_SYMBOL vmlinux 0xfdf47e7f __remove_inode_hash -EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0xfdfc4346 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe047ce6 acpi_enter_sleep_state -EXPORT_SYMBOL vmlinux 0xfe0b180a mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0xfe17047b kblockd_schedule_delayed_work_on -EXPORT_SYMBOL vmlinux 0xfe26fc7c nr_node_ids -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe797cac jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0xfe862725 inet_stream_ops -EXPORT_SYMBOL vmlinux 0xfe877e8c input_event -EXPORT_SYMBOL vmlinux 0xfe8f6fdb d_prune_aliases -EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 -EXPORT_SYMBOL vmlinux 0xfeb696b1 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0xfecc92e1 lookup_bdev -EXPORT_SYMBOL vmlinux 0xfed26007 sock_sendmsg -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0xfef0df91 uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0xfef26c67 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0xff033e11 kthread_bind -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff1f6fed blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0xff2a9cf4 posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource -EXPORT_SYMBOL vmlinux 0xff7f5f31 set_anon_super -EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy -EXPORT_SYMBOL vmlinux 0xff91cf5c of_platform_device_create -EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0xffa06103 mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0xffab184e blk_integrity_merge_bio -EXPORT_SYMBOL vmlinux 0xffbec94e tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0xffc593d9 skb_copy_expand -EXPORT_SYMBOL vmlinux 0xffcc0b3b nf_ip_checksum -EXPORT_SYMBOL vmlinux 0xffce4b19 cfb_fillrect -EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function -EXPORT_SYMBOL vmlinux 0xffde8743 of_find_i2c_device_by_node -EXPORT_SYMBOL vmlinux 0xfff1a005 simple_rename -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x284a6ced ablk_init -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x4525a7fa __ablk_encrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x8bcfb427 ablk_decrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0xa8637123 ablk_exit -EXPORT_SYMBOL_GPL crypto/ablk_helper 0xab30d71c ablk_encrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0xd625548b ablk_set_key -EXPORT_SYMBOL_GPL crypto/ablk_helper 0xe4a27165 ablk_init_common -EXPORT_SYMBOL_GPL crypto/af_alg 0x03495f8e af_alg_cmsg_send -EXPORT_SYMBOL_GPL crypto/af_alg 0x2533a521 af_alg_link_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x3c7b79e5 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0x4c38d02f af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x5144b4d2 af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x5c00137c af_alg_complete -EXPORT_SYMBOL_GPL crypto/af_alg 0x9a43e5ac af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0xb954f060 af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xcb39de78 af_alg_wait_for_completion -EXPORT_SYMBOL_GPL crypto/af_alg 0xcb3f9df4 af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xf0b3a833 af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xe3d3d5f2 async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x2ec3988f async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x82b8c782 async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x0ad5b7ba async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x9a63c6fb async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x02f44543 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x2f77dcac async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x5e10633e __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xf3f811e6 async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x3c596984 async_xor_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x420066be async_xor -EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0xd1c58d39 blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x9f5c9257 cast5_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0xd4c3b985 cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 -EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 -EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 -EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x99f98c9c crypto_chacha20_crypt -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0xf5268d45 crypto_chacha20_setkey -EXPORT_SYMBOL_GPL crypto/cryptd 0x358b0ba3 cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x4b1285a6 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x536021c2 cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x7fe06558 cryptd_ablkcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xa8493dc8 cryptd_alloc_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xb091cb75 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xbcf77fbc cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xda9bc746 cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xe48dcec2 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0xeaaa57e1 cryptd_free_ablkcipher -EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey -EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey -EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table -EXPORT_SYMBOL_GPL crypto/lrw 0x79e0c199 lrw_crypt -EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table -EXPORT_SYMBOL_GPL crypto/mcryptd 0x0839c595 shash_ahash_mcryptd_update -EXPORT_SYMBOL_GPL crypto/mcryptd 0x0f4eef08 mcryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0x48f83f85 mcryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0x4e3a7112 shash_ahash_mcryptd_final -EXPORT_SYMBOL_GPL crypto/mcryptd 0x8347667c mcryptd_flusher -EXPORT_SYMBOL_GPL crypto/mcryptd 0xccd06e86 mcryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/mcryptd 0xd01fd63c shash_ahash_mcryptd_digest -EXPORT_SYMBOL_GPL crypto/mcryptd 0xd6095c0c shash_ahash_mcryptd_finup -EXPORT_SYMBOL_GPL crypto/mcryptd 0xed69dd7f mcryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3161963e crypto_poly1305_final -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x5c909cdd crypto_poly1305_setkey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xa865caa9 crypto_poly1305_init -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xd7518b32 crypto_poly1305_update -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x7f76f7f3 serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt -EXPORT_SYMBOL_GPL crypto/twofish_common 0x6b61f7dc twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey -EXPORT_SYMBOL_GPL crypto/xts 0x783739c8 xts_crypt -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x00891ace ahci_print_info -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x09658a80 ahci_dev_classify -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x12206134 ahci_shost_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x17630d79 ahci_stop_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2600a1d6 ahci_reset_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x29bf1183 ahci_set_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2cb89334 ahci_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x39bcd8c1 ahci_start_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3e49bad3 ahci_do_softreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4b9db8b1 ahci_qc_issue -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x664b0e71 ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x74083dee ahci_kick_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8c2d5d08 ahci_check_ready -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa2bbd0f0 ahci_sdev_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xaa4f0b92 ahci_start_fis_rx -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb0d8dd5c ahci_init_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb2981035 ahci_port_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xba6b5861 ahci_handle_port_intr -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbdc84500 ahci_reset_em -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc18d4d42 ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd9af059a ahci_host_activate -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdef79dc3 ahci_error_handler -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe376b465 ahci_save_initial_config -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2acde6a8 ahci_platform_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2ee3897f ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5609e49c ahci_platform_disable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7b500b75 ahci_platform_enable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x8898fa9b ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x912d6739 ahci_platform_enable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa61eec7a ahci_platform_get_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb5e4a852 ahci_platform_init_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe17ffa09 ahci_platform_suspend_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf5245268 ahci_platform_resume_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf68abcb9 ahci_platform_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf9b4b275 ahci_platform_disable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xfd32e2a2 ahci_platform_suspend -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x6b8dc47a __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x39bd3aa2 sis_info133_for_sata -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x26437b52 __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x26b38b47 __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x2c52a7c5 __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x37c13bc9 __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0211031e bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x037676c6 bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0ce92d5f bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1e108578 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x332e74e7 bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x37872756 bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3dafb3ca bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4c0558ce bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4c7a9e39 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x600c8c19 bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x604688bb bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x60f8e67f bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6368f148 bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6a374cd5 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x83ba700d bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x85323ebe bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8a403bab __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8b91b4d2 bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x94f9d17d bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa02fa71d bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcc46c4fb bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd0b8156c bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe944a16c bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xff8b8ee9 bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x1ff61ea0 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x299e5a16 btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7e6fc41e btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x955e444a btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb5b091ec btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc5c2a499 btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x45945047 btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x45db7868 btintel_set_diag_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4a8ee4c1 btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4db71ceb btintel_set_event_mask -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7e0aa224 btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x83aa523f btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x874f4daf btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8aa0f0b1 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb65a87cf btintel_secure_send -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcefa1558 btintel_hw_error -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd4801914 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x00803093 btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x07212909 btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x59b9f5dc btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8093322a btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8e92502c btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x990c2158 btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9961484e btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc367c916 btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xeba177af btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf28e9503 btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfab5ecd7 btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xae3d24f3 qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xd0d3de9b qca_uart_setup_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x3ce37e67 btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x53d6503d h4_recv_buf -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x043fa35d clk_disable_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1ab2e762 qcom_find_src_index -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1ad28e9c clk_rcg_bypass_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1f4159b0 clk_byte2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2d97e15f clk_is_enabled_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3b0b58e5 clk_regmap_mux_closest_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x53f95e39 clk_pll_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x54028875 qcom_cc_really_probe -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x573c9445 devm_clk_register_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x612214bd clk_edp_pixel_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6156bb25 qcom_cc_probe -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x669bd1fd qcom_find_freq -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x67ae803a clk_rcg_pixel_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x709d9cf0 clk_pll_configure_sr -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x73964fc2 clk_dyn_rcg_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x77c457fa qcom_reset_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8c4dbdbe clk_branch_simple_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8d53d96e clk_rcg_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x90b53166 clk_pll_configure_sr_hpm_lp -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x999e1e71 clk_branch2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x99d2c773 clk_rcg2_shared_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9a5f0698 clk_enable_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9e2e91a1 clk_rcg_bypass2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa553795e qcom_cc_map -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaace56b1 clk_rcg_esc_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc7994798 clk_branch_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcb0c5248 clk_byte_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcd0a83c6 clk_rcg2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd25fd154 clk_rcg_lcc_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe703bcad clk_pll_vote_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf1f136dc clk_pixel_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf69c2f55 clk_pll_sr2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf93e315f clk_regmap_div_ops -EXPORT_SYMBOL_GPL drivers/cpufreq/arm_big_little 0x4513523b bL_cpufreq_unregister -EXPORT_SYMBOL_GPL drivers/cpufreq/arm_big_little 0x6a3d0999 bL_cpufreq_register -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x04773b60 ccp_present -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x1970fa27 ccp_enqueue_cmd -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x101269ed dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x91b74d39 dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xb379f798 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xcd5cc8bf dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xdbbf68c4 dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x1520d35e hsu_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x318fba71 hsu_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xaedd2349 hsu_dma_irq -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c2057ff edac_pci_reset_delay_period -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0cf8b9e9 edac_pci_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x11760fba edac_mc_free -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1967855c edac_device_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x21082f4f edac_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x255c050e find_mci_by_dev -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x40cc179f edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x44348cf5 edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x53b6d78f edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x56f0bc6f edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6c9bffd3 edac_pci_handle_pe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x904db353 edac_pci_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9421dd4d edac_device_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x943f895d edac_mc_del_mc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9a0b95fd edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa6d999ac edac_device_handle_ue -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb9cdf260 edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbf8fb1df edac_mc_alloc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd4cbc447 edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xde71819d edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe898c2a3 edac_device_handle_ce -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xef48d129 edac_pci_handle_npe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xfd19cdcb edac_device_free_ctl_info -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release -EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0xe342fbf5 get_scpi_ops -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x022c2f03 of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x279c638b fpga_mgr_buf_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x83af94d7 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xcbd91dbb fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xcd6997f3 fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd5057897 fpga_mgr_firmware_load -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x695cf44e __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xe6828040 __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x53eca228 of_get_drm_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9791a770 drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9bfb6df5 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa663f6de drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa80e01f5 drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xba564147 drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x1be0bb75 ttm_dma_page_alloc_debugfs -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x3d0dbbc2 ttm_dma_unpopulate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xcaaf4ed0 ttm_dma_populate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x10060b65 __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1a26287f __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1cdea72c hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1d0401d2 hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1d1badf2 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x22358e5a hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x28c9dd46 hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2b8e4bde hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2ba593ac hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2e5fcb1e hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x33f8ead8 hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x348539e0 hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x46da6710 hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4e830656 hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5054f551 hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5171cbcb hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x582cac4b hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0x687794f3 hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6a9f1d38 hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x757c4147 hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0x78f93522 hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0x852c238b hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x937f6a44 hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x97691e8c hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x997825a0 hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9d4ffc77 hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9ea40bf6 hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9fab54a8 hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcda8da03 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd214a9b8 hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd346f58d hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xdb0ab2a9 hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xdebfa7ba hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xdfc6bb96 hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xec1c71fb hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf4c7365b hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x1d47293b roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x0d4cc52b roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x1e8c0a6c roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x9ed81074 roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xb0916d08 roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xde4b0045 roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xf9d4860a roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2cebe8d7 sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4d750c9e sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x66f1d27f sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x673747c9 hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7837c01a sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x833a4bea sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x97f991da sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa879b968 sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb8e7fc5f sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xb20e64b2 hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0077c82e hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x16e33ef0 hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2459c98f hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x50970708 hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x627ad8fe hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x73092200 hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9390a3ac hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa3094f60 hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa352e238 hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb358251e hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcb854ff1 hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdacdf594 hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdae02c5c hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdb30f588 hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdf0e05ba hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe486fa96 hsi_add_clients_from_dt -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf2d6d5f8 hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf8e8db7f hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x593773a7 adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x5971a25b adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xc3dd5db2 adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x074eb68d pmbus_do_remove -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0ea30fcd pmbus_check_word_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x27878e91 pmbus_read_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3a726409 pmbus_clear_cache -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x72060d27 pmbus_get_driver_info -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8489ed4c pmbus_check_byte_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8a89d7c5 pmbus_set_page -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8d83bebb pmbus_write_byte -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x98b79628 pmbus_regulator_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa218c8b9 pmbus_read_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb0485950 pmbus_write_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xbf9d5cf4 pmbus_write_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xda6ba332 pmbus_clear_faults -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xed3b7878 pmbus_do_probe -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf9383c26 pmbus_update_byte_data -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x040582dc of_hwspin_lock_get_id -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x120838f4 hwspin_lock_register -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x49155679 hwspin_lock_free -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x5a95f328 hwspin_lock_request_specific -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x7d3b2485 hwspin_lock_get_id -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x8cfabfbb __hwspin_lock_timeout -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xa0724fc7 hwspin_lock_unregister -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xaf2e2c16 __hwspin_trylock -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xb68ec387 __hwspin_unlock -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xf7172fa1 hwspin_lock_request -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x26ef7fd9 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x352dccad intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x772b039e intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x84c4088f intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x8b17d8cd intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xcc760534 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xefdc5171 intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x1dea9455 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x378d0d37 stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x3839ae47 stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x533b1229 stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x94629bf2 stm_register_device -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x47286488 i2c_dw_read_comp_param -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x84b95d2f i2c_dw_disable -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x8a0d6051 i2c_dw_init -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xd78db290 i2c_dw_disable_int -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xfbcaca9a i2c_dw_probe -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x68dddb39 i2c_del_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xd48b2b13 i2c_add_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xc6eb3c91 i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xd911a84f i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xa7aa7e69 bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xd5ec6819 bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xe99e017b bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x27d46bb8 ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x39cf0884 ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x6da7f805 ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xc58e20c8 ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xcc9a6503 ad_sd_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd4dadf2c ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd7bec983 ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xdeba7142 ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe6022736 ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x1120a383 iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x583afc0e iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x0b97032f ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x625d8e50 ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x0d4e36c3 bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xad526536 bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xf994effc bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x296e041f adis_init -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x4db5650b adis_read_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x6d300921 adis_initial_startup -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x898c5e15 adis_update_scan_mode -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x905813db adis_write_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x9e0b0907 adis_check_status -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xadf81e50 adis_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xb4610c86 adis_remove_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xb767cff5 adis_probe_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc78788d7 adis_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xd4825bf4 adis_reset -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf562b397 adis_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0e97fa77 iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x178b836d iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1d6c79ab iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2df4e9c4 devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3061022a iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3ad85c18 iio_update_demux -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3b3e2517 iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3b603444 devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x48db04c7 iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x508f2660 iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x538b2961 iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x597d9485 iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x721a404f iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x85dfe6be iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x877a6561 iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8969127b iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x98b0b090 devm_iio_trigger_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9b7bdc72 iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9ca5877f iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9d7ca78f devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xacb69280 iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaeb645a4 iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb99f4dee iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbb4db512 devm_iio_device_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbc4b26ad iio_scan_mask_query -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc374bbdc iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc57e4229 iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xce00e208 iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe54011a8 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf16e8bd2 iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf9e75d66 devm_iio_device_unregister -EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x357d0fa2 input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x6ea3d0de matrix_keypad_parse_of_params -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xfb24dc3a adxl34x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x001f8a4b cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x7d8e19e6 cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xc373d1cd cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x2662bd09 cyttsp_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x82025050 cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x9ef65ca1 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x8ff9e60a cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xee545484 cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x0c179bd3 tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x63c66b06 tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xca9c8f04 tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xcbfd67c2 tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x32810d1b wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x470fc3b8 wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6dfff16f wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x70296994 wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x83996e7a wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x89c892ac wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9b3ee828 wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa155f1f1 wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb4c3b014 wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbcd9345c wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbcebecab wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf9758cc9 wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x040a22d8 ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2a5ecf41 ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2c8987e6 ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x3c448d38 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x492f0717 ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x505c6586 ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x91dbc5ab ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x9e2edc9e ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x9e4dac73 ipack_device_add -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0abacef8 gigaset_start -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x1e9173ee gigaset_handle_modem_response -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3db967a6 gigaset_freecs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x588bd29f gigaset_m10x_send_skb -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x74366b32 gigaset_initdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7adf5c73 gigaset_add_event -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x80a6e231 gigaset_skb_rcvd -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x83b091ad gigaset_if_receive -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x842e818a gigaset_initcs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x84dcdcc2 gigaset_blockdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa80876cd gigaset_shutdown -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xaa289551 gigaset_stop -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd0075fa2 gigaset_isdn_rcv_err -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd5e1430d gigaset_m10x_input -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xdc145702 gigaset_freedriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xefa95cd7 gigaset_fill_inbuf -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf7c30be3 gigaset_skb_sent -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x698866e8 led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x73f5b28b led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x8a034001 led_classdev_flash_register -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x95bda676 led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xad12efa2 led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xe337fd8b led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x0104561f lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x15cce837 lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x22642b82 lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3ac29581 lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x566cad20 lp55xx_unregister_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x5f3fe3d9 lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x74eaed23 lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x77c3c13d lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8c0d70fb lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x924a6005 lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf4665c85 lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x01d04176 mcb_alloc_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x03a63a66 chameleon_parse_cells -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x1d544d4a mcb_release_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x23d2440c mcb_alloc_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x5ded17e2 mcb_free_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x745aea84 mcb_get_irq -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x9403ece4 mcb_request_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x9b8f5462 mcb_unregister_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xa45a463e mcb_bus_put -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc1abcbb2 mcb_device_register -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc2b764d5 mcb_bus_get -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc7c4fd05 __mcb_register_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd53b859f mcb_bus_add_devices -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x021811cf __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0f0677b8 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x10e6a889 __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1154f7a1 __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15aa8e40 __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x174c2a29 __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2205bcf9 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3fc7cb7f __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x469f38de __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4ba51ecf __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5b2a89c7 __tracepoint_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d950f2a __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5e21030c __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5ed04550 __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6eef9654 __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x74ab7b0f __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x84efb763 __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8fe32879 __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x91f02667 __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x93f7fc02 __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa1de5277 __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa81bf581 __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7d964de __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbbace2cd __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc6673631 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8a2f711 __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe3de2ba2 __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe902838d __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec919105 __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeea27f46 __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfad1ec73 __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2e68f76d dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x31712c08 dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x906fa53f dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x92e61a70 dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xab29a6dc dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xbac0269f dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc6772424 dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xdd3c3b5e dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xec56f329 dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x557915fd dm_bufio_client_create -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aba7f5e dm_bufio_get_block_number -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9310ba06 dm_bufio_release_move -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9c256008 dm_bufio_get_device_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa1d2413a dm_bufio_read -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa448e19f dm_bufio_prefetch -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xafbda3f3 dm_bufio_new -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcbb1bae2 dm_bufio_get -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x233a12ad dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x66df5563 dm_cache_policy_get_name -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x6a575313 dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x6db7ae06 dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x8a359683 dm_cache_policy_get_hint_size -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xef310ebc dm_cache_policy_get_version -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xf23c0354 dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x18c70401 dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x49580f61 dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x439379b9 dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4430764e dm_rh_region_to_sector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x45ab972a dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x6d7b132f dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x776c31fd dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7a9e51c7 dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa68e1f06 dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xdb88f4c3 dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xdf2ce570 dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfad9d53a dm_rh_get_region_size -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfc62ef4e dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x17c36f29 dm_bm_checksum -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42dbdfc3 dm_tm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49b35849 dm_sm_disk_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x55b4bd4d dm_tm_create_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x827a42f4 dm_tm_open_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9f624559 dm_sm_disk_open -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xafeda29f dm_bm_write_lock_zero -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd29923fb dm_tm_shadow_block -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xdf016f5d dm_block_manager_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf375d009 dm_bm_write_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf5455120 dm_bm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize -EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x057230b6 saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x081bdcb7 saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x44a5303d saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x5ff80a58 saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x8810c3e8 saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x8b1ebb3d saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9fb56644 saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xbcf9394f saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xbd05fbd4 saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xdb62aa53 saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0c3b3e0e saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x1ba9031f saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x45f4033c saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x5499de9c saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x77e65e99 saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x785afd99 saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x8ba1fc84 saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x04a0f05f smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x05c77e7b sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2191e9fb smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2426b944 smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2a9c4861 smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2e923a48 smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3bfefeed sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3c39c3a5 sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x65b2a0d0 smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9ced668d smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xba513b92 sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc203a7da smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd60e9c8d smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd823091c sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe3d82852 smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe7452bfa smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf9d78a03 smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xa3df3bda as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xa6957f10 cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x42829360 tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/media 0x0ca10b33 media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/media 0x1a1c25f4 media_entity_init -EXPORT_SYMBOL_GPL drivers/media/media 0x1b5cd631 media_entity_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/media 0x3f72749a media_entity_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/media 0x469f5821 media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/media 0x4fae7f6d media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/media 0x5148c607 media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/media 0x71f41272 media_entity_create_link -EXPORT_SYMBOL_GPL drivers/media/media 0x7a9deec8 media_entity_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/media 0x9269d378 media_entity_get -EXPORT_SYMBOL_GPL drivers/media/media 0xbcf2ca8e media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/media 0xc216840a __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0xdf4a1106 media_entity_put -EXPORT_SYMBOL_GPL drivers/media/media 0xe122f436 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/media 0xe26f2e7d media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/media 0xeac1f1c5 media_entity_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/media 0xee042b2c media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0xf06caa48 media_entity_cleanup -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x0ac73a6c cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0d514214 mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1d0ef5a3 mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2a0c7110 mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2b4bd7e3 mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x34e1f129 mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x53891428 mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5d163eed mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6a15ffb1 mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6cd877c6 mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7726f289 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa93cea73 mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xab543d2c mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb08a21ba mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb22147e1 mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbb324aee mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcc108089 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcf145469 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xeb4db38d mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf8dd532b mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x029934ee saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x21959ab9 saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2c821d07 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x368df440 saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3db362a3 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x45dc9c23 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4b6f1c65 saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4fa99fde saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4ff250c1 saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x51222c86 saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6c94ebcb saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x741e4bba saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8938d347 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8dfd0df8 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x92f9f8ae saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xacd0eb48 saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xaf027106 saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc97b1ccc saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf7d99f73 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x400a0ae9 ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x486049cd ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x4cb04e69 ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x824b06f2 ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x9e0e3dfe ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xea0179a8 ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xf5f05711 ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x04d1189b xvip_clr_and_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0b2585ce xvip_get_format_by_fourcc -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x160ae86e xvip_enum_frame_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x237d853c xvip_of_get_format -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x30d79a6b xvip_clr_or_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x490bd11c xvip_get_format_by_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x7e194e74 xvip_init_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb42d076c xvip_cleanup_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xfd1cdc0c xvip_enum_mbus_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x6ec49690 xvtc_of_get -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x2e984553 radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x716bf877 radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x086580d0 rc_open -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0945f339 ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x36727aa8 rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x391dd94f rc_close -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x52d03007 rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x68142215 rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x869139b6 rc_map_get -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x86aa2ff2 rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x935a249e ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x962022fa ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb58137ac rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbcfddeba rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc1b41c55 rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc7b54d88 rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc9faa84f rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xccadddbd ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd82e7748 rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe5fe48c6 rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe600a406 ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x565a3c53 mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x086148e1 microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xafd5b41b mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xa21bd7f4 r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xc4a2e9d8 tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0xe853323f tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x3f875a41 tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xa26af9bd tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xc0615c8a tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xc994d233 tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xf92b611a tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x10a5cb44 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x2566d22d tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xe0433885 simple_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1cd37acd cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x21e089a6 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x45a084d0 cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x54830dc4 cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5b8cc1f2 cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5bd2c348 cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6cc85430 is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7925e5be cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x85ed35ee cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x92403d49 cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x96c8fe75 cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9fe418ed cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa5491f2d cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xaa596b80 cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb1b90889 cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd8e1edc9 cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xdc2b59e2 cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe8948448 cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf39eb210 cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfdb95f31 cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x50c172fc mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x65bcc55b mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x081bad3b em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0ff9e132 em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1d43ed81 em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x26ac4553 em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2a9e33f5 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2da32b51 em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2ee284cd em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x325788da em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3e2a4665 em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x47198366 em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6657d5e2 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8a6e6af3 em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x969761fa em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9deedc32 em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcc7ca16f em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xde113c53 em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe6f421af em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf3d8c0cf em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x3cdefff0 tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x7a35cc59 tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdcae8f30 tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xf8f95eb6 tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x76ccaf71 v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x7ddfa39a v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xa19e1b9d v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xe7393377 v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xe9d02d98 v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf340b010 v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08982d59 v4l2_match_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x609c29de v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x98d4254b v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x07819d54 v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0df097cc v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1227a7d0 v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x15f98446 v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1fc802a8 v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3067d230 v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3a818c13 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3b18906e v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3bb604e4 v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x41572247 v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4b2b4957 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x52eec6ea v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6229266e v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x65cb87a9 v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7327633f v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x77345c6d v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x81c582be v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x842c797e v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8a51dcd8 v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x964d09a3 v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9b24217b v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa706f0f6 v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa97d1255 v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcfd9fa4b v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd3e60168 v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe69f6273 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfd735f3d v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x06766a22 videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0e63683c videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1c863078 videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2514bd2b videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2bc52222 videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x30cc11be __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x323e8009 videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x34573d7d videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x47a652f9 videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4ee88765 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x50ba719c videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5461937a videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x59b0a0e2 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x70c879be videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x89844a03 videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa0ba2c69 videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb563ed07 videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb843046b videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd19588f4 videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd24983b7 videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe02ed23c videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe33a4a2b videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe5435837 videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf7c87445 videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x17cd6ee4 videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x5ce20439 videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x6750ba33 videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x68c6fc4e videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x07380785 videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xaa88bcb5 videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xf891e56b videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1eb5a05e vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1f560133 vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x3082d6e5 vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x376d2957 vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x457ce395 vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x570ca1a3 vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x692af637 vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x80aab420 vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x8ef30cf5 vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x98251cf5 vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x9f308d97 vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xab45ca89 vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xab932552 vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd0bddc23 vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xda0484de vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe910f3a3 vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xed5f0066 vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xfa29195b vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xad0716e0 vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xcb702f5e vb2_dma_contig_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x1cb79f9a vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x3da10fa9 vb2_dma_sg_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd30ec30f vb2_dma_sg_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0x6bf85abc vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x029cf36f vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2abf372b vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2c1ded06 vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x31590781 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x378bc06c vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x485d00ae vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x53dc8cfa vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5b2233a6 vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6167802b vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x629b788e vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x667ae9b6 vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6fb6f48f vb2_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x704b1bc2 vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x74e98ca2 vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8a10c39b vb2_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9059e6d3 vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa79cd10f vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa90e7fe0 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xab10f614 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbc130977 vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbfa9f9a0 _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc130d879 vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc3f06543 vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd0b698fd vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd1284509 vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd2ad0ad0 vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd90fc3df vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdb527ecd vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe24ca904 vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xeb4bdfab vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf18a3c5c vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf826dbdc vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x691bb7f8 vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x07ba5afe v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0dca2f45 v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x133adfc4 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1ef3a428 __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x24d7bce4 v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ab9d732 __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3c788341 v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x45d8e11f v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x47e3d4bf v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e73fa8d __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4ef1f6b0 v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x515c80f6 v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x670b75f2 v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6eea57f8 v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74a017c5 __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7bfda7d4 __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7e394468 v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x802ad990 v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x86ced0e5 v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x89e663ab v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x91f39ebf v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa14da223 v4l2_compat_ioctl32 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa588792b v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa9d998e8 v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaca2544a __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbb877345 v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbca1f22d v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6429d8b __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc843cabe v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcf26fc07 v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd5550f85 v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdd500408 v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe02e1fd3 v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xecec1559 v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf564519e v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfaf08f3e v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfdc87df5 v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x3724808d pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xa7ed3a97 pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xffcda9b8 pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x20fc7886 da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x297cd5e5 da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x680b75e6 da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x76ef0d25 da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x7a73cdec da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x8eb8b7c3 da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xc44b6bbb da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0da0102d kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x153eac6b kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x40c4c7be kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x60c1072f kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x656b0237 kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xa2f1209d kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xdaae1754 kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe35853a7 kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x74aa0355 lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xaffb9b83 lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xf06f864a lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x3f1c61af lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x5079bfee lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x609b8d91 lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x9d24596c lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xb00390dc lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc7b6613e lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf5772dea lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x0b4c7514 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x61c373e1 lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x76675993 lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x08791f0d mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x1a76ea65 mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x287ebd82 mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x397d0867 mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x48c3542d mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x82d5723a mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3b4b7804 pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x488370f8 pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x499f917f pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4ff2c353 pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x73c372bb pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x73ee998b pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa93041b0 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xab734258 pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb233fdc6 pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd8e7a4f5 pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xfb13f625 pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x1a810227 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xe1e0f890 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x8a64df45 pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xcc7b47bf pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd7e761d3 pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xfc6ceb5e pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xfe5ec51b pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x04eae2cd rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x1a44b2df rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x1b3ce8e6 rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x25e4cd50 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x292253ee rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x359caf98 rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x44562d7b rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4620b745 rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x47162b87 rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4d38f53b rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4d74fc0a rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x64e9af17 rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x67953c80 rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x6b3ef65a rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x76a42a6f rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x770b8a7e rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x96f82b3c rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9d386621 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xad49f16f rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xad96a96e rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb6dfb7e1 rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xcacfa1f1 rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd1c5c17f rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf0cb4abf rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x07bbe5e5 rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x2aa59592 rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x468c0a6f rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x594ff35a rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x69c5cdf2 rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x8b6fd792 rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb0082adf rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xbbefce41 rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xcdfa3e0e rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xd1bc4d34 rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xd861c9e2 rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe355e827 rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xfba0b33f rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x14409ae2 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x14e6bdb7 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1f1f0a4d si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x27a66fd9 si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x37b1c1db si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3ef031e8 si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5ae532ef si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5c30033d si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x68adfa9d si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x69301129 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6a05f109 si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6f8e4b90 si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x80ffb45b devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8d078750 si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x971b273c si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x98f4e0f7 si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9994a7ac si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9b33ecde si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9bb16a5c si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa0a26f0e si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa6805ba7 si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbabb3de1 si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbb3373c3 si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbf8779ee si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc2f4e25f si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc6685315 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc9750a1e si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcc6a305d si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd38ade67 si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdbc26498 si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdc539d7c si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe2eb77b9 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe303f25b si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe3648481 si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x59a4bdc0 sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x6b041bf9 sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x75bc0b1e sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xd2208137 sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xdce2ab3b sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x77289dce am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x8201bdce am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xa28dc309 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xc2b553d6 am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xaa53ee83 tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xb894b8c2 tps65218_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xbf3c3c1f tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xd7b9f13f tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xaf70878b ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x7f9691b4 bmp085_probe -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x87a7b7aa bmp085_remove -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xa5d745d8 bmp085_detect -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xafa6f7be bmp085_regmap_config -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x363f1fe7 cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x518e8b14 cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xc0e23636 cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xeb12f8a4 cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x0329a0fd enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1802e31f enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1ec8a3a2 enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1fe8092f enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x3a61150e enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x475da701 enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd7dbb1c4 enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xde50a93a enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1b9dad28 lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x58833049 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8cf7abab lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9ecd9779 lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb19cf34b lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf1d6893c lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf7ccab9e lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xfa2a178f lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x611799db st_register -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xe73dfb4f st_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x2e74d1d1 dw_mci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xbdd5d8c3 dw_mci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xcb90c02d dw_mci_pltfm_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0eac5381 sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x14af43c9 sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4c7f579a sdhci_send_command -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4ce89b03 sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x59824e09 sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5a3bf734 sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6e6f7d98 sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x707b7755 sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x96076451 sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xaa3cbf5b sdhci_enable_irq_wakeups -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb8a0753c sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc78b62fd sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe29898ea sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf234138e sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x11757740 sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x13181470 sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x469d92d1 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x4a4f8506 sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x57ca7011 sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x5d3cec80 sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x650577aa sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc5481743 sdhci_get_of_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe79b5802 sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x4462acea cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x8655ac94 cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xb97c897c cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x4e5ffaaa cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xbda6352c cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xc3f47efc cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x372f7d0f cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x1bc187f6 cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x27d3482b cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xc0c0bb77 cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x07a7f55b mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0811c870 mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x19aff397 mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1a28cddc mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1ee1f250 mtd_erase_callback -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1f40c30d unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2292184e kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x249c072a mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x270b195c mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2c8a8e73 mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2eebc2cc mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x36fd2616 mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x378e181a mtd_is_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3ed5776c mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x445f47d7 get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x46a7584d put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x493a8df7 mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4dddf0b0 mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4e40d190 __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4e6819a6 mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x60bfea99 get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6777d34d mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x70456f7d mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x70c31adf register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x89f1f932 mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8cd62d9b mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa51917ed mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa7f2155f mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa9298a6f mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaa5423dd mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xae256056 __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb78e30d2 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbad5aa70 mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbb615ac8 mount_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xca3d5aa6 mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcf89ce15 mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd66c1b6b mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdf54d1ad __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf1da8242 register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf2bad55b mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf5001748 deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xff6102b1 mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x045086ce register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x0de9014c mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x1f9f282d deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa5c20fea del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xb011ed66 add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0x6a6e44f9 brcmnand_pm_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0x9f24f83b brcmnand_remove -EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0xb8e8c9f8 brcmnand_probe -EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x154a0e22 nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x85576421 nand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0xa288dc56 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x4540a523 onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xcad4c802 onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x9e9152c1 spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x09a461e6 ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1918939d ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1ceecac7 ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x21ce1314 ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x427c6d56 ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x587b7e58 ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x602bc88f ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7020160e ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9d02bb5e ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa0b7ccfa ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa3672d29 ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa6162261 ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfab48923 ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xff39047f ubi_close_volume -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x404b44cc arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xb9a395ca devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x09e71651 register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x23707285 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x2f5dad9d unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd9d5d213 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xf8577c1b c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xff15d133 c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x21e36b05 register_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x330bc02d can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x3985e841 can_led_event -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x3d45066b alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x3de8e806 can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x6931045f alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x6e39daeb can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x72c48efe can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7b0b744e open_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7c9ef89e free_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x84fd7cd2 close_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x8df83754 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x8f512427 unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xaa2ce118 safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb7a9e112 devm_can_led_init -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc85811d9 alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xea034dd2 can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xfe9cf6bb alloc_candev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x0d9f3790 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x6b9b72be free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xc8af857d alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xd37d9b33 register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x364d4871 alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xacaa66e2 register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xf6e0b8e9 unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xfb5162de free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x84bc9390 arc_emac_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xf0d3d56a arc_emac_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0becd26a mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0cfaec7a mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10375805 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11b82202 mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12193cc7 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17cde612 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17fccb90 mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18555bee mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1bfb4fef mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d5ebdfc mlx4_fmr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e2e3a77 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ed7b8c3 mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2087bcb0 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20c87560 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x226a5aa7 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24ff78bc mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25c36e0b mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b16f195 mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2da78164 mlx4_fmr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2db48e7f mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e2cd4e2 mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e7752fa mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ffe00e2 mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30c7050b mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x313a94ad mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x326db4aa mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36ab64f4 mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a1c280f mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e2dda28 __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f05e2fa mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3fee4b4b mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42cc3ac4 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b1a8c63 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b45b882 mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b8bc9b1 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e10e699 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51bee3f7 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52aa8539 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x552f4b3b mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57d1a201 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x580d0614 mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x587453a4 mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58c9d4fc mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a8ea40d mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d020cfe mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d40130d mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d62c8ab mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e3153b9 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ea8d6f6 mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6461e63e mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6884cc04 mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6dbd3eff mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fd0c566 mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72474bee mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72d8dc87 mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x796eb958 mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fa425bf mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82326122 mlx4_fmr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82a0879a mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83515b37 mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x842aa21b mlx4_fmr_unmap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85775616 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x863e8209 mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x881ad0e8 mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x889d9e68 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a110e26 mlx4_map_phys_fmr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8daa6e88 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8dea7009 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8fbddc1d __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9031ca07 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x903fc6ef mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91eb7773 mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95855d88 mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96dab992 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9835af08 mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x992abdf8 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c44afef mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d1ea4cc mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9fcd9e1d mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9fd97679 mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9fe851af mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa138e6bc mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6a94e66 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa766e6ab mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac4b94e9 mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xada03f51 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf6027ca mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb29a52f9 mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7e94818 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9a6396a mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba1c69b2 mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbbc12471 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc612d34 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc22c7fb2 __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc387b393 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc478e2f2 mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc66ed1e1 mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc960a5a mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce23c57c mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce715726 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcff68dfc mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1295360 mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd184105c mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3bf4222 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3f1322e mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8a421ff mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9683b36 mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb9acd43 mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde9513e1 mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf4805fc mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdfefa6da mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0074a81 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe201d872 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6fd6f4d __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7276aca mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8eb943f mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe94d5c5e mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf47896c9 mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4da1fb1 mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf690c120 mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf77416cd mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa77bc0a mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc5d5182 mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff5027bd mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x004a9170 mlx5_core_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x075fb221 mlx5_core_create_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a59bb3d mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11a53a6b mlx5_core_destroy_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x168d5786 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16bb52d1 mlx5_destroy_unmap_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x176fc1da mlx5_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x184cf7ab mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x191cd94f mlx5_query_port_link_width_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24479e23 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x303224bc mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36a4a05d mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43422c50 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ba51718 mlx5_query_port_proto_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x529b56ed mlx5_query_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57b73f8f mlx5_core_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x636dc5e3 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63c2cb88 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69408ec1 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7051c20c mlx5_core_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x734aaf47 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b34efc2 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f327039 mlx5_set_port_proto -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f53951c mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f2b248a mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f34fc9c mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9154e847 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b200b6c mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1a5b0b3 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4860032 mlx5_core_page_fault_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa293c53 mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb18170fb mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4914b6f mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbbaec8d8 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcadb9eb mlx5_core_xrcd_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6d598c4 mlx5_query_vport_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc92c4c35 mlx5_create_map_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce95452c mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcef2ad52 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2ed1c62 mlx5_core_eq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5df7676 mlx5_query_port_proto_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe716fca0 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe77ca49b mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed2aef8d mlx5_query_port_proto_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1d1bf2f mlx5_core_mad_ifc -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x4e5ad9e5 devm_regmap_init_encx24j600 -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x5e28947e regmap_encx24j600_spi_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xac144314 regmap_encx24j600_spi_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x0f4db3c0 stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x0fe758fc stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x375b7f4e stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x8af968c4 stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x056f87cf stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x9e2ede28 stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xd0e9c4ac stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xdf5b6f32 stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x0923b1c0 cpsw_ale_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x14f861e2 cpsw_ale_del_mcast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x23065d56 cpsw_ale_control_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x39503260 cpsw_ale_add_ucast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x4d89d234 cpsw_ale_del_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x4fd2c214 cpsw_ale_add_mcast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x5cd77c2e cpsw_ale_set_allmulti -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x5fe09f8b cpsw_ale_dump -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x66f84ae5 cpsw_ale_start -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x738c0ea8 cpsw_ale_flush_multicast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x8e30d332 cpsw_ale_stop -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x9213e2e7 cpsw_ale_add_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xc5d196ed cpsw_ale_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xcd8ac793 cpsw_ale_control_get -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xd630b782 cpsw_ale_del_ucast -EXPORT_SYMBOL_GPL drivers/net/geneve 0x155030cd geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/geneve 0x7767f913 geneve_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x02c26339 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x0a648d76 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x9e6715ca macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xf333ae26 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvtap 0x060e7014 macvtap_get_socket -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2c4ca3cb bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2d40410b bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2ee1df28 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x583ca9eb bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6839a221 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7a8f8821 bcm_phy_enable_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9f0e07d2 bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcc026790 bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe25b7db3 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfbab5ff9 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x09ead6cd mdio_mux_init -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x77bccceb usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xbe1b9932 usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xc5def287 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xe1916ba8 usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x237bd8a6 cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3a8c9dea cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x749c4e34 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x93e919de cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb24b3ab2 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xdb73cb2b cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe4bcfc12 cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf2529ce5 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf3a76087 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x3e741287 rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x76af4a0a rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x83e7376d rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xb96aaa28 rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xc13d4386 generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf5228d6d rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0f5c8e5f usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x24e339eb usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x36733295 usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3714028b usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3e08b5b9 usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x44788e19 usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x527d9cfb usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5d0ff4d1 usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x68e991e4 usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x75ece0ad usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x78f1cde1 usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x796e75e9 usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7a6d2f51 usbnet_get_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7dede6be usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x80016bc8 usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x88ec6c24 usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x92773c5e usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa3680ffb usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa4212b1d usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa433da14 usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb3c628cf usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb4e9ddbb usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb56baacd usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd10d2bfe usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd163becb usbnet_set_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd18145aa usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd72713af usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdcccf117 usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdfb90c76 usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe587cfc0 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf3ad6486 usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf5aa817f usbnet_open -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x5206b9a9 vxlan_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x9a9e0ada vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x09d4d6e4 i2400m_tx_msg_get -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x10bec5c6 i2400m_tx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x162e718e i2400m_error_recovery -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1e019c98 i2400m_dev_bootstrap -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4aa11eb0 i2400m_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x504521d5 i2400m_dev_reset_handle -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x7b3c3705 i2400m_rx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x82309117 i2400m_cmd_enter_powersave -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x82829fd6 i2400m_post_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8ed63e56 i2400m_init -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xae05933c i2400m_tx_msg_sent -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc7a90368 i2400m_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd317c77c i2400m_pre_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xdcca3fb1 i2400m_release -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe87d6693 i2400m_is_boot_barker -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xfa6bc6a2 i2400m_netdev_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x0f586e96 cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xb79de074 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xbb1c49c7 cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xc4326bf0 cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x7b8ee0cd libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x2c199fa7 il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x3304b7a3 il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x64674c83 _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x6aaef7f9 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xb301af15 il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x014ec469 iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0dceb69e iwl_parse_eeprom_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0df63bff __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x216d960a iwl_notification_wait_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2b117fd0 __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x369972ca iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3db3dba2 iwl_nvm_check_version -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3f56a2e2 iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x472e0490 iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x47e5051f iwl_remove_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4da50812 iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x529b9432 iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x56845365 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c1c18ab iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x621e8bdc iwl_write_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x63bcd115 __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x6f5441b2 __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7ab0e0f7 iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7b53f22f iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7dde5b58 iwl_init_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8da16094 iwl_notification_wait_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xafde7dbb iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb3e19967 iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb5834377 __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xbbce4ff9 iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc5014db6 iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xcf869eca iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xdd0b45e8 iwl_opmode_register -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe3d7f3b8 iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe7a4a9e9 iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xfa914b67 iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x24f5bb85 lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x2cc23e8d lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x33f26a92 lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x4d1f235e lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x63231d17 lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x6d8d3bf2 __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x6f00694f lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x756794a4 lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x8506d53c lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x969f02a4 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9f45bb67 lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xbb7d3f1e lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xbda70c47 lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe52719aa lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xee4faff2 lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xfff9e66a lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x04da1330 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x3fc40128 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x5ecf3bae lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x6f220c77 lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x84ad3961 lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x9b9757ec lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xcce4e791 lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xce6b1132 __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2f72e4e7 mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x4158b25a mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x5408f9f7 mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x5be09d6f mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x791df670 mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8693fd5a mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x9f49f538 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa5eecd19 mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa9e49261 mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xab1d3f70 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb085ab3f mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb770ec6e mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc8027c3c mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf0d3610e mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf2d8483b mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf3905b79 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf454228b mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xfe6555fe mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xff8bf049 mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x0d1835e1 p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x188d0ece p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x3032c98b p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x458d4916 p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x49c95bd3 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x5c6334c6 p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x6a17eee9 p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x7559d3a7 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xce00bfbc p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x15a61299 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9bff9fe9 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa349fcc1 dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd84f182a dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x00b04fe6 rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1569c030 rtl8723_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x16ee95fa rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x31b730ab rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x40058974 rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x443b60e3 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x66813800 rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6686cb03 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6f79dd64 rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x70226920 rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x74bfeaf9 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7873fc20 rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x82535006 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x86370230 rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8b5f35bd rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8fd8c159 rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x93679a8a rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9fa81013 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa2f56e92 rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa9e7cc05 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaa250550 rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xabc1af06 rtl8723_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xad14f6f3 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb17e0b8f rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe8763ab2 rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xeaaaa100 rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf141826b rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0858f941 rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1c9dc433 rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x201a8563 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x213f2876 rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2b455c64 rtl_dbgp_flag_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2cb16d45 rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x34178325 rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x37d97940 rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3a3c3b64 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3e003173 rtl_attribute_group -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x52b1dc33 rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6835a363 rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b4de810 rtl_lps_change_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8184efde read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8b6d42de rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb19502b2 rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb49ad90c rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xefe76acb rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf243255d rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf6c15fcc rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xff975f1f rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x3f198e09 rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x60923770 rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7e7f2f35 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x9e4ad1a0 rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x03036b29 rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x072adaf8 rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0997dbb0 rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0d316aa7 rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0e296f16 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0ff48df6 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x18d3897d rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1d86ef11 rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x21bbfc2f rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x35751fb0 rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3882c87b rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4702ace7 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4762eec4 rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x51d7d7b1 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6110abf9 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x653a1674 rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6b25af28 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6c3eeec2 rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x715e4027 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x76e6f1ab rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x864df446 rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x87b793b7 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x936c0be4 rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9a43af12 rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa93aad89 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xab188d06 rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xba09d175 rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xba8e1bbf rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbaa4943e rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbe6991fe rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc15fc146 rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc1e69e57 rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc792a8e0 rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd946557f rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xdb57b46a rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe9fa074d rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf4c3789f rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfded523f rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x15c40f5a rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x188c86ca rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x3a6c644a rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x42c6d29c rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x542f4e82 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5bd68e31 rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x81141754 rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x830781e8 rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xabc3bd97 rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xb86925dd rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc373e741 rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xecce14df rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xf1ee5c24 rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x001b348d rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x01ca7750 rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x025c908c rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x069ce80e rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x06d0393f rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x15e3341f rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x18107255 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x19c045b4 rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x36bcca7e rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3f680a08 rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4c9ccfb4 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x50f3f48e rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5567364d rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x567c2092 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5ba234d0 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5e85948c rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x615d3725 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x67aa3b9f rt2x00mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x692a4b85 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x71aa2723 rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7659f8aa rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7a2d514e rt2x00mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7dd54090 rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x84acd7bf rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x96b0b9a7 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9757a6ed rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x97c52200 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x984dad92 rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa142514a rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa5d8cc0f rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc008969b rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc7e4da9f rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc8bf9ee5 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xca294888 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcb1c91b8 rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xccab9932 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcd6debc0 rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd2274f78 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdedaddc7 rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdf0e93b6 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe33a4bb1 rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xead6858c rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xed15495a rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf20a6cb2 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf339ef0d rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf9dd0bab rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x1d720056 rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x4ebc2dff rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x77cd0142 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x90991419 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xb6008144 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x08c6c549 rt2x00pci_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xb23ede51 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xef35934a rt2x00pci_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xf317ef31 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x0b95c6e1 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1173567f rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x160224db rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1acf9547 rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x200f90c2 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x206704d7 rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x55b73837 rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x703a9284 rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x7ade5101 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x87237e52 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb19598fc rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb78199d1 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc17d959b rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd2c96185 rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe4672dbc rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf84693ac rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x318ed96f wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x9726c1c8 wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xd575ffb9 wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0b256e3a wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0e710ed1 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1b9aab0f wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1fe152cd wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x22b85153 wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2e5f9f95 wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x32bab072 wl1271_ps_elp_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x32facabe wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3a1ab7a1 wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x44a3e87d wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5268e75c wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5597a94c wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5a4607b9 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x645ea86f wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x654769c4 wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6acd2d04 wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6d0610c8 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6e4430d2 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7266a518 wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x730f7b33 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x781c2299 wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x869305fe wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8a4c00c5 wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91a5042a wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa6d28b70 wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa9e9979b wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaeffe905 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb5ce6dbd wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb65fa68b wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb805a0fa wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb92558f7 wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbf472a8a wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcfeaa1e9 wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd65a6d2f wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd6e870b3 wl1271_ps_elp_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdc1c9a77 wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe63ab16f wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe9625c4e wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xed2b4ab9 wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xefdb3f05 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf196c8ea wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf8e5b7be wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfa7e5dde wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfa922af6 wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfcb1e500 wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x0e91d82e nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x991447c8 nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xb786c13e nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xdaffba81 nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x061c8583 st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x572d15cb st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x676c90a8 st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x862611c2 st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x8a45bde0 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x8c42925d st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xd22646f7 st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xe4c47882 st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x18cc7377 ntb_transport_register_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x5bc9c43e ntb_transport_create_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xe19572ab ntb_transport_unregister_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x198aded1 devm_nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x202d4ed6 nvmem_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x224f51bf nvmem_device_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3866e217 nvmem_device_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x5223d669 of_nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x6a743f39 of_nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x9483f2fe devm_nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x99f018c4 nvmem_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xa952ef80 nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc0be9a5c devm_nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc697b0f7 nvmem_device_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xcd1019e6 nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xd446d1e7 nvmem_register -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x25fdb39a ufs_qcom_phy_disable_iface_clk -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x26614419 ufs_qcom_phy_remove -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x3e863fd4 ufs_qcom_phy_enable_ref_clk -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x43597d19 ufs_qcom_phy_disable_ref_clk -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x4de79e75 ufs_qcom_phy_calibrate_phy -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x6b245f4c ufs_qcom_phy_start_serdes -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x7ed98285 ufs_qcom_phy_exit -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x821b96b0 ufs_qcom_phy_init_clks -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x874ef473 ufs_qcom_phy_set_tx_lane_enable -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x9099326c ufs_qcom_phy_disable_dev_ref_clk -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xa9384966 get_ufs_qcom_phy -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xaaef7c34 ufs_qcom_phy_save_controller_version -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xc37b47fa ufs_qcom_phy_enable_iface_clk -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xc54bade6 ufs_qcom_phy_power_off -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xdd6facf8 ufs_qcom_phy_enable_dev_ref_clk -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xded57f62 ufs_qcom_phy_init_vregulators -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xf317fab0 ufs_qcom_phy_calibrate -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xf9454933 ufs_qcom_phy_generic_probe -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xf95ea2a4 ufs_qcom_phy_is_pcs_ready -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xffae0398 ufs_qcom_phy_power_on -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x417732c1 pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x63d4bfb9 pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xc19a116b pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x1dd11c35 mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x37a544a3 mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x79f6e7e1 mc13xxx_parse_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xbf6c9b28 mc13xxx_get_num_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xc67dda04 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x45905daa wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4bc4d66b wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x7c3ce4e0 wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x88b82adc wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa8b2810d wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd6966b32 wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xe1cb334e wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x00964ff3 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0128a517 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x02e5fa00 cxgbi_ddp_ppod_set -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0a9fe774 cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x13848777 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1e9f154a cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x259558c0 cxgbi_ddp_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2668ab9a cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x26bdcc71 cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2799a36d cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3cfbcb18 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3dd64363 cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3e2c79f8 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3fccc9a7 cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x40787cfb cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x43941a2d cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x482a389d cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x521cfba5 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6732a25c cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x69700a42 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x795e5a36 cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7ceecf27 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x85798e93 cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x89e59244 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x900e6044 cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x90218581 cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x997ee34d cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x99a2cafe cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9c443448 cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9ccb4960 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa1197e60 cxgbi_ddp_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa8d619b2 cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb9ac8f66 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbc182e31 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xca44f411 cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcc0bdd75 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcc11292b cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcc4b21be cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd6db93eb cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xda6da3db cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdde9a820 cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xde5d8f9c cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe0ac3e7e cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfda9241a cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfde47803 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xff56a5bc cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x05083bd5 fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1326f3e0 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4630aaad fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4836ce92 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x676edd50 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7077a9bc fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x965d9626 fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa6715bd7 fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xaf83ad8c fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb00df705 fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc0b46095 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc5e647a0 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc6a61a1c fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xcb1bf35f fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xce4e2e07 fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd5de4c4e fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x87f2835e iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x8ccd2a49 iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xa57fadd0 iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xaad2b6a7 iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe140d842 iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xf3d1c1d3 iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x017f21d4 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0606601f iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x06db50f6 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x13b21ad9 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x189e3cd6 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x18c95bbe iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x34e50fa7 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x36481887 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x391b65c7 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x40b3574a iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4566e874 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4730cf70 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x53258df9 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5f6b454e iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5f94db5e iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x638393f7 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6620a757 __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x69a30a13 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7250ce4a iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7990cfd4 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7b869d5b iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x88e562ea iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x914221bf iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x92f90cf8 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x98f49866 iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa161a082 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa2843772 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xae1fc8f4 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb3fbf007 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb88ac547 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc039b0a6 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcdcad7e3 iscsi_conn_queue_work -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd3bee82e iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xde822bb0 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe36b3247 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab6b475 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeacaef81 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xefe3144c iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf9970f91 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf9cf7ed9 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfa02af53 iscsi_eh_target_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfcb01fab iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0547c6b4 iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x22fd180e iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x335b71fc iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x57841813 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5cbc3d15 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6211d831 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x783326cb iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x93771e4a iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa3fb63f8 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa41472dd iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa92a9a0f iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xac42f6ee iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbb45abb7 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbe5cb471 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc89d8276 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd7e5334d iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdfac6d47 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x01957ad8 sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x02f1c66e sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0442306c sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x13d301f4 sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x18d36cc2 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x20f21145 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2cc0c7d7 sas_domain_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4377bdfe sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x48b950a9 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x52169ef5 sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x54ad8eb3 sas_eh_bus_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x57951096 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x64a9cb72 sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6a4911a6 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x73827886 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7b300b9b sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7eb1b192 sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8143ec97 sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x82018e4a sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8809b909 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9ab19342 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa0b68e37 sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd040e53b sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf8449008 sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0437f19f iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x17f52b70 iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x192ff18e iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1e44a900 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x233efff4 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x26281730 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2df8a642 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2e823721 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x32ab418c iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x34d8acbb iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3aa132eb iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4d18c41b iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5262682c iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x55a7e9a2 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8453aeb3 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88133a8c iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8a3e415c iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8c961c83 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x93c59451 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x947e77fd iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x992ad806 iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9d846a42 iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9e5c584e iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9ffc3e63 iscsi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa350dbd4 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa4a9a0f5 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa61f8103 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xac4d4fef iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xad096829 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb4b76d23 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb7cb5597 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc1c39f87 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc47a8227 iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc7940285 iscsi_is_flashnode_conn_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd68a4145 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd82fc145 iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe2c14123 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe89be258 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf51bf8e1 iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfb20c1ae iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x2a625c2a sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x300e958f sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x43ea8156 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xa18eb2cf sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xb415c8e7 spi_populate_tag_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x3d8923b0 srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x4df29aef srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x6d287b42 srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x9df5c01f srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee223303 srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xef62867c srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x0ac0d658 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x0de588a1 ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x39406c4d ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x86edc2ed ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x8fb50dc5 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x9e21441a ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xe558c514 ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x23a8ef9c ufshcd_pltfrm_runtime_idle -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x67c9538e ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x7040113a ufshcd_pltfrm_shutdown -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x9c3ce9d8 ufshcd_pltfrm_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xacd0fef4 ufshcd_pltfrm_runtime_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xc7ed0539 ufshcd_pltfrm_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xf50585cd ufshcd_pltfrm_runtime_suspend -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x3fdc3e59 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x4fba7ad1 spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xa50bdf5c spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xb771c9db spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xcae5ea91 spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x07805ea7 dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x0cfc6ffa dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x3a892b58 dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x5db85d22 dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x077dc8e6 spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0e74b2eb spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1445c783 spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x20bd2291 spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2dd35d6b __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x35a390e6 spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x502f1fa3 spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x563083f0 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6568911c spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6d8ebe14 spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6f07e433 spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x80375f8b spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x83637dbb spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa22eb604 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbf1ceaeb spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc76d6b57 spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xca393394 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf0fd6f68 spmi_command_reset -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xf2426c64 ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0932f3fc comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0e32d829 comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x154d15f2 comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1730d342 comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1991cae2 comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2d448f03 comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2e45d7b9 comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x31878054 comedi_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3fcacbe2 comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x46b9078d comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4952112f comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4bba22a0 comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x601e82fa comedi_dev_put -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6c0c1cc6 comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x74729f5c comedi_handle_events -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x75053b28 comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x96af3b7a comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9c5912a7 comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9d6bce2d comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa153b360 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa9f9cd40 comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xaa78a1e5 comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xab9e70cc comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xadfd68ab comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd405dc1a comedi_timeout -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xde82d430 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe4489a87 comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xea5efa4a comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xed59f0a1 comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf1eb59f1 comedi_event -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf3f3635f comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf96ab2fb comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfa9ed7f4 __comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfbe24c01 comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xff4df81a comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x28717fa1 comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x5cd28571 comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x5eee70af comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x670f8e6a comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x75e428d4 comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x921eb531 comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xa78c3fc7 comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xf635cb80 comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x09f1141d comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x6867a0e7 comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x84925714 comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x850ab829 comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xbe08d85d comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xec7e97c0 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x4a33adb6 addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x43d61c06 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xf37cea94 amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x2b28b2f8 amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x15fd2d31 comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x1786d582 comedi_8254_load -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x1ec1255a comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x21b3c82d comedi_8254_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x41ac9538 comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x53a173cb comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x76fed139 comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x81e4a787 comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x8afd028a comedi_8254_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xc9ce309f comedi_8254_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xd02f592e comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xe96207e6 comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xefdebb8c comedi_8254_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x635e1391 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x792db9a1 subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xfa52bac8 subdev_8255_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x45be3769 das08_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x02fe35d6 mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0e5f5ee9 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x37886d3a mite_buf_change -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4546908a mite_sync_output_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4749f01e mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x58c549fc mite_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x722f251f mite_bytes_written_to_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7fbbb6d4 mite_bytes_read_from_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x8e0066f6 mite_done -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9d88cea5 mite_release_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa638a04e mite_dma_tcr -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb97c6510 mite_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc74a0220 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd77b904f mite_bytes_written_to_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd881e813 mite_prep_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xdaef0384 mite_bytes_read_from_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xdccea7b1 mite_setup2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xde23e648 mite_get_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe7ac8064 mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe7fc02b8 mite_free_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf313b75a mite_sync_input_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xa39d4e25 labpc_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xe409b7cd labpc_common_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x4dd749ac ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x61c2ade0 ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x66ba83df ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x989e7f73 ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xb1584594 ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xc587a07d ni_tio_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xdddd9047 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xe21f7a14 ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x28497e19 ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x2e39e9f2 ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x301b6c8a ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x538a8954 ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x59746f91 ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x9ed45fcd ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x2687e2d6 comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x2bb3283c comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x33db35ff comedi_open -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x6cb953aa comedi_dio_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x713ed4a1 comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xb53ceedd comedi_close -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xe4ef7008 comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x0238bd99 fsl_mc_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x0c95cb18 dprc_scan_objects -EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x142ada6c fsl_mc_io_set_dpmcp -EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x1a945d5a fsl_mc_object_free -EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x373b24d4 fsl_mc_portal_free -EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x44288515 fsl_mc_resource_free -EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x452bfb72 fsl_mc_object_allocate -EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x53d7cd1e __fsl_mc_driver_register -EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x685c48ba fsl_mc_bus_type -EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x6d48e82f fsl_mc_bus_exists -EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x74767d26 fsl_mc_resource_allocate -EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x8941f119 fsl_mc_portal_allocate -EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x8f8064d9 dprc_scan_container -EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0xc185a455 fsl_create_mc_io -EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0xe6f7f770 fsl_destroy_mc_io -EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0xe7b754ce fsl_mc_portal_reset -EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0xeaa2eabe fsl_mc_device_remove -EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0xfeadf031 fsl_mc_io_unset_dpmcp -EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0xff4b53e4 fsl_mc_device_add -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x5035a356 adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x08261a76 most_submit_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x26d0064d most_stop_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x3095a4ba most_register_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x46ec5199 channel_has_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x4c6d53d1 most_start_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x6152270b most_put_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x6faaccce most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x8f143540 most_deregister_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x9128cae3 most_deregister_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xa52c8fd3 most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xe8d33767 most_get_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xeb2c625c most_register_aim -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0a9d9ba6 synth_add -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1b5efcaf spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1b8405aa speakup_info -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2cf27f72 spk_do_catch_up -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4a893dbb spk_var_store -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x56355aa9 speakup_event -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x5f7680f1 spk_synth_flush -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8771f20d spk_var_show -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x92761834 synth_remove -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb9c481d9 spk_serial_synth_probe -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xcb802ac5 spk_synth_immediate -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xebf81049 spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain -EXPORT_SYMBOL_GPL drivers/uio/uio 0x7aa0cdbb uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0x80da5c2d uio_unregister_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xa39bbcf7 __uio_register_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x91772be7 usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x95b30a1c usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x60fabfac ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x78fec0f7 ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x24a7dfcf imx_usbmisc_init_post -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x66b76c74 imx_usbmisc_init -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xd4efc83c imx_usbmisc_set_wakeup -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x135f624e ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x1f8abd5f ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x4c3d53ea ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x932698b5 ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x9905db0c ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xb8f3645e ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x16edb841 gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x23ec5735 gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4da4d0b7 gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x529f5b7f gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x57d942d2 gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5a6a0b7f gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x61d40f6d gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8184cb3b gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x89566b93 gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8ba56cb5 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x926e82d9 gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa79112d5 gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc204cb02 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe55cd8c7 gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe6d59dc2 gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x0f6d173b gserial_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x13e0916e gserial_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x044c92d4 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x227eb03e ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xd1c7d17d ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2f86da90 fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3abd8b42 fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3dfe6530 fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x48b28f2e fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4e8363c5 fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x546c7f99 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x62a870d6 fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x65e3f844 fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x797d879f fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x830a2cea fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x987bc0cf fsg_config_from_params -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa11e96ef fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb999a94f fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd468f882 fsg_common_set_ops -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xdab1c53e fsg_store_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe7b21887 fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf9a98d3b fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xfc8e6dda fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0d00df4e rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2c05609b rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x43a3deae rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4f24b1f3 rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x60fdc866 rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x85d523cb rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x871dfe4f rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8e7fc5ed rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa24e6de3 rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb755e8bd rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc664613c rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe28fcb1d rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe370c284 rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf7db3c4f rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfd0bfbb4 rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0556d124 unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x08594976 usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x17c0deed usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x20e5dc9b usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x262d7aad usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2b5681bd usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3531a5ef usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x36b5b2b2 usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x391273a2 usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3d23f0f3 config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4669c451 usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x47d09724 usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5803656b usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x583b4996 usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5bd93813 usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5e3f66fc usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6e8c2e02 usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7bebbf02 usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x868e0e75 usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x994bc358 usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa1dfaed0 usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa86fd0a7 usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbcaf84c0 usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc238afcc usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2a96907 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdec1707c usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe213ceae usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf05411be usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf72fbf37 usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf8e26ce4 usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x09f12b15 usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1a1de8ec usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1fd434bc usb_gadget_probe_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7394d720 usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8b437797 gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x975b58e3 usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9eb42ccc usb_add_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4744dba usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xce61c708 usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd2bb5e42 usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdee27ae5 usb_gadget_map_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe6eea801 usb_udc_attach_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf013c998 usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf6c5bc88 usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x3d6e808a ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xd5c35eb0 ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0ef22e1b usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x294390b3 usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4aed5a2f usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4bc8821d usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x60bac121 usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x64d8dcec ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x98258b95 usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf045be5f usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf0b5e13d usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xf6ca8dd9 musb_interrupt -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xdd14bb25 isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x28245c70 usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0d78f3ab usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1b49c51a usb_serial_handle_break -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2945cb65 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x29650cb0 usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x39fac445 usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3ad9cc89 usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x46b3ee01 usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5552495d usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5f8e2855 usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7e0a75eb usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x85fd3ec1 usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8fb561a6 usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x95158999 usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xae2d08a7 usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb6879d91 usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xcc2523fb usb_serial_handle_sysrq_char -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd22edabe usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd6660ed2 usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd74280f2 usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe336d455 usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe5ad0315 usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x02141f0e usb_stor_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2d3bd711 usb_stor_bulk_transfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x32d20bb3 usb_stor_ctrl_transfer -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3f061996 usb_stor_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x40ed69f6 usb_stor_adjust_quirks -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x443a8a31 usb_stor_Bulk_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x47b69d35 usb_stor_CB_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5323c9ab usb_stor_transparent_scsi_command -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x696adb74 usb_stor_control_msg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x75ac872f usb_stor_set_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x76dad1eb usb_stor_bulk_transfer_sg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x79e68556 fill_inquiry_response -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x87511de7 usb_stor_host_template_init -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x947cc806 usb_stor_Bulk_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x99958b33 usb_stor_pre_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9bfbb38f usb_stor_post_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa90c5ecf usb_stor_probe2 -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb39e9893 usb_stor_reset_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xba147cef usb_stor_CB_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc3d5b664 usb_stor_access_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xca9f5e66 usb_stor_suspend -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd163f83b usb_stor_bulk_srb -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xeb040ce8 usb_stor_disconnect -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf5d38c02 usb_stor_probe1 -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x092a1e08 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x14289f03 usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x22cc7d64 usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x24b03ad7 usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x32cf5db3 usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x39d7972d usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x689cf4be usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8cd33739 dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa21b4b66 usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa9b2e0f4 usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd8a014b2 usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ec7ce0 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0bd816f0 wa_process_errored_transfers_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x122f15ac wa_urb_enqueue_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x2d999970 wa_urb_dequeue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x30d5c2ed wa_urb_enqueue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x62d6ae4e rpipe_clear_feature_stalled -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x7ba57523 wa_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x97249d28 wa_dti_start -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x9d61f40b __wa_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf26b8de0 rpipe_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0cf3e00b wusbhc_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x23d85543 wusbhc_rh_start_port_reset -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x2ee59273 wusbhc_giveback_urb -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x361e3931 wusbhc_rh_status_data -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x38de2905 wusbhc_b_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x5faaf22a wusbhc_reset_all -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x910e7c62 wusbhc_handle_dn -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x91d76793 wusbhc_rh_control -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9d90f123 wusbhc_mmcie_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa36e00be wusbhc_chid_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xbdc351ff wusbhc_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xc6db0b46 wusbhc_mmcie_rm -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfd26de8b wusbhc_b_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfd9bd59a __wusb_dev_get_by_usb_dev -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x12278d41 i1480_cmd -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x361f90b8 i1480_fw_upload -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x42ff8101 i1480_rceb_check -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x1127aa21 umc_device_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x15b24db8 umc_bus_type -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x479ecf8c umc_driver_unregister -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x833d8b0c umc_match_pci_id -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x83d7752e umc_device_unregister -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xabb88c33 umc_device_create -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xe1bd78a1 __umc_driver_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xf8c2e6a7 umc_controller_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0756172a uwb_rc_ie_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0d78016e __uwb_addr_print -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0fc02440 uwb_est_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1342d4a7 uwb_rc_put -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x167088c1 uwb_rc_vcmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1dc3e491 uwb_notifs_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x21783bdd uwb_est_find_size -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x240f97c9 uwb_rsv_get_usable_mas -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2b786d65 uwb_rc_pre_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x306985c7 uwb_rc_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x307fa91b uwb_rsv_modify -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3a2a077a uwb_dev_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x44bc4e04 uwb_rc_get_by_dev -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4add1fc7 uwb_radio_stop -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4bdc7584 uwb_rsv_create -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x59e87116 uwb_rc_cmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5d592653 uwb_rc_post_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x65606716 uwb_rc_neh_grok -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x73e2ec6b uwb_rc_ie_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7f53b164 uwb_rc_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x814836bc uwb_rc_mac_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x816b9e92 uwb_est_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8f54f79e uwb_rsv_terminate -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x923e551d uwb_rsv_establish -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x986925bf uwb_rc_neh_error -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9a272b80 uwb_notifs_deregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9b2a55a5 uwb_rc_cmd_async -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9d6d5f8a uwb_pal_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa039d14a uwb_pal_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa20446aa uwb_radio_start -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa684c5c7 uwb_pal_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xac97316b uwb_ie_next -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb3452bde uwb_rc_reset_all -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xba87f8d9 __uwb_rc_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbd7094f0 uwb_dev_for_each -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc47d1e1c uwb_rc_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd53d61f0 uwb_rc_dev_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe08ae7eb uwb_rc_alloc -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe7ea1ec0 uwb_rsv_accept -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe965d2a2 uwb_rc_get_by_grandpa -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xec62df8d uwb_rsv_destroy -EXPORT_SYMBOL_GPL drivers/uwb/whci 0x97ade7ab whci_wait_for -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x75a80ee8 vfio_platform_unregister_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xb85769cf vfio_platform_remove_common -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xba2ce0d5 vfio_platform_probe_common -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xdc25d938 __vfio_platform_register_reset -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x24c913e7 vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x776a8835 vfio_add_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8127a384 vfio_group_get_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x85eb9c45 vfio_del_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb35b1368 vfio_device_get_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf7c86b43 vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x1c9cfb99 vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x9bd1e9bf vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x02c79fb2 vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x08627c44 vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x166d005b vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x176b0fdd vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1c4c50c4 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1e52f6f9 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x21d06bef vhost_work_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x246d9285 vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x25026320 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2b1d2ebb vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2d315b7b vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x36316064 vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x466af26d vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4f8af3e6 vhost_init_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x62ef9c0b vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x665e7181 vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x72f0c2f7 vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7f7a93b0 vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x94e96ee3 vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x95a1ea52 vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x97b6805d vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x99024eeb vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa64bf58c vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb5e7cb3b vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb9019a7d vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbb55e124 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcfb4fdda vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd7fe8c4e vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe91b9698 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf3b2e7aa vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x0c908e1d ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x3d846b6d ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x654ae428 ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6b5e050e ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6dd0773a ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x8119ed4f ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9ba8f890 ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x13a04bf9 auok190x_send_cmdargs_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x501c3cc1 auok190x_common_probe -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x5c27b4d5 auok190x_send_command_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x79e23aca auok190x_send_command -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x820f80e1 auok190x_send_cmdargs_pixels_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x87c7d596 auok190x_pm -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x96a3c44c auok190x_send_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xdbad5480 auok190x_send_cmdargs_pixels -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xe69c66cd auok190x_common_remove -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xf60211c9 auok190x_read_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x5b8ad242 fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x73056508 fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xec6f4a3e fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x5a40418e sis_free_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xf896186c sis_malloc_new -EXPORT_SYMBOL_GPL drivers/w1/wire 0x196b49bd w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x39e1de68 w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x427b1161 w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x52c5e4bd w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0x5570d21d w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0x68a9b330 w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x75796777 w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xc47b5781 w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0xea7cabb9 w1_write_block -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x6f50bd35 xen_privcmd_fops -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x1f96ca7a dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x648ce6cd dlm_posix_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xe4df7cd7 dlm_posix_get -EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x48e584b6 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x74a6cf1b lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8cd67267 nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9d8ecfa0 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb9fdc7d5 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc7b359ef nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd0c7d83b nlmclnt_proc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x008f35db nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00b95fb6 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x022f2931 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0240e819 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x032ad76f nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x071a2527 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09b34395 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ac4395c nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e401cb4 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x127fbaf1 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x147e89b0 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15659d79 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16c0ad74 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17426187 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x178e6c17 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1891e8f1 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x198feef0 nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a1b13b8 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1be9319d nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c276a76 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d31b41e nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1da1f3ab nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20ac836a nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b33b720 nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cf6675b nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d477940 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e887fb1 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x302e9156 nfs_pgio_data_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x312055ef nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36455dbb nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3981d326 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ae7f3ae nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3dce10f9 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42113881 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x455c816c put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46943f4e nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47e4941b nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48e48424 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a8cb981 nfs_try_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b396d0d nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d50165f nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4dff8d1c nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x587ca63a nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x589dcdce nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a72f7ce nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5fb67dd3 nfs_fill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5fce520d nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x641a2f71 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x675932c5 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68d47b0b nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a33098b nfs_remount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e0b6cbc nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e4eee30 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7068781c nfs_fs_mount_common -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73d279a1 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7827b4b2 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x799d9eba __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ac8c4bb nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d3714e5 nfs_fs_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8546e161 nfs_file_fsync_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87473723 nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87d8ba77 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87e901ae nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c44379c nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8caad3fd get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9001f80a nfs_file_splice_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92ac3dc9 nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x94982dea nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9722c4cf nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9753d719 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97940791 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b3506f1 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9bda521d nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f3748ac nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa061e9a0 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0bcd052 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0c02b5c nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa239f1ca nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2c2416b nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5f721b0 nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa63ad323 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa715d6e1 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa74c6cb2 nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8de4d01 nfs_clone_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xacc554a5 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb2a67abf nfs_set_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb799b7aa nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb81e30ab nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbdbae9d1 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe36dba1 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbea3e442 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbeac68ac nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0a6dc47 nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6a3134a nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9dfc60b nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb239e7d nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcbea383f nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc081a86 nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2f80e1e nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd313ec3a alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5622d26 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6a076ba nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda1780d2 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda9630ef nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc093ed4 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc158a26 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc81202e unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd3d9656 nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1d57a6e nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2544933 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe31d2a0d nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3aec4dc nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe4bcd2d8 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6ad5d52 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8cb09dc nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe96f2730 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeaced964 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1ddbf42 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6309ef9 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf700ef10 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf70a0165 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf816ac6f nfs_pageio_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8b275df nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd7e7957 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff09fbf1 nfs_destroy_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xc9950e13 nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02bb3082 pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0887b33d nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x09db726c pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0a2413b3 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ee73edc pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0fb35cf9 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1021997b pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1093b108 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x130332b9 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1f7dd416 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x22cc85cb pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2376f49b pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2754d344 pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2a83f8d3 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x37a4b5c4 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3e01343c nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4164d9ea pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x44366e69 nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x44e91f41 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4f133615 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x51232a13 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x59a0277e pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x59a7bdd2 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a05644c pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5b16a545 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x705dfc4b nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x784b81c6 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a57b493 nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b18d8c3 pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8466396d pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x910fd50b nfs40_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9312a8be pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x964ceef5 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x99dd50a7 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9b6f13a3 pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9f380ca5 nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa48915e3 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa4c2ecf2 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab85cd5c pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0480ef3 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5c407d5 nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb9386c06 pnfs_put_lseg_locked -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb945ce7f nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbaaafd1c pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc0c3930a pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4e74273 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc1c5dcd nfs41_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0ac3565 nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0b5b7dc __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd1f53739 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd31accd2 nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd5560497 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd96d9c82 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdbf9f6a8 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe8d5684a nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xefdb4d0e _pnfs_return_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf4c9ba96 pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf55ad4a8 pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf736a431 pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe5f35fb nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xff741148 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x75df6987 locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xb4bb0075 locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xdf87b8f3 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xb0b5d541 nfsacl_decode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xf7f26aa2 nfsacl_encode -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0b4455b7 o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x100ff1e7 o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36a28a9e o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9495e4db o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb0eb1e14 o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd352e73d o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf08a1cf8 o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfeaea520 o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x261036b4 dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x3f96144e dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x49c0bfec dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x6069b12e dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x6b152317 dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x9a8765ff dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x00e4eed6 ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x36dbd459 ocfs2_plock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc4910ca2 ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version -EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq -EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures -EXPORT_SYMBOL_GPL kernel/torture 0x347090e4 _torture_create_kthread -EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats -EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb -EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random -EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0x5984a294 _torture_stop_kthread -EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait -EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop -EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end -EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init -EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init -EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin -EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin -EXPORT_SYMBOL_GPL kernel/torture 0xca61d6e1 torture_shuffle_task_register -EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init -EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end -EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init -EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping -EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress -EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress -EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch -EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch -EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch -EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xa1dd0468 notifier_err_inject_init -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xc4e8a7a4 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x201d8ea3 encode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x29fa419f decode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x0adcb055 base_inv_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x221df614 base_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x4da25bec base_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x63f42b6a base_inv_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x76203267 base_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xca3140ce base_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfa5eee0a base_inv_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfc02472a base_inv_true_key -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x5fc1d6e5 lowpan_header_decompress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xe3765de9 lowpan_header_compress -EXPORT_SYMBOL_GPL net/802/garp 0x3dafa258 garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0x46c118ed garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x662bdeee garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0x79c41177 garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0xe706b1ef garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0xf2987040 garp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x44e1b5af mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x7b7897ab mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0x8b5f5cf7 mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0xc2b06efe mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xda9804bd mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xefa27bce mrp_request_join -EXPORT_SYMBOL_GPL net/802/stp 0x620012c2 stp_proto_unregister -EXPORT_SYMBOL_GPL net/802/stp 0xb2caea3c stp_proto_register -EXPORT_SYMBOL_GPL net/9p/9pnet 0x00ba953f p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/9p/9pnet 0xb3cea7a4 p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier -EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier -EXPORT_SYMBOL_GPL net/ax25/ax25 0x40cb2cc7 ax25_register_pid -EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast -EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x024e7726 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x07a4edfd l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0b4227a2 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x26bd60cb l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x666c0e43 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc2f98f7b bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe76752c9 l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf69782c1 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable -EXPORT_SYMBOL_GPL net/bridge/bridge 0x1153a850 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x1399468d nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x507c07f3 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0x51e50fae br_deliver -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa235f1ee br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa7474043 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xba1de682 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf33edc3e br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x0734fe0e nft_bridge_ip6hdr_validate -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x20974471 nft_bridge_iphdr_validate -EXPORT_SYMBOL_GPL net/dccp/dccp 0x055bafcb dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x05ea9ebd compat_dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x11053c6c dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x12b3806b dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1457b084 dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1829acd2 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d1f0a43 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1f00ad96 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1f0cb705 dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2c65210e dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x372e3e26 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3b9b8c97 dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x467d811c dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4c7645ea dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5a784ff1 dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x609abaa7 dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0x64e8ebe0 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6eec1b76 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x737fe466 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8a29ca24 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8e72d558 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x922bdabc dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x943ef8f2 dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9666267f dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9991a15c dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9d0eeec9 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9e71de9e dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa007524e compat_dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb3618317 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb95d3e58 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbce9241e dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc81bb1e8 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe36f7a0c dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf079d024 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf7f46645 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfb493e99 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x02dfbf2a dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x164a9446 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6f5c2ace dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe78bfe1f dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xec34cd2e dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xfbbd854f dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x3e914d0e ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x63907846 ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x7addaf64 ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xc80dc167 ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ipv4/gre 0x0809af2b gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xad060b10 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x06cc942f inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x31e50794 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4c14acfb inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x529b519d inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6651f197 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe86d8cce inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x2f409470 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x11e41b11 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2c972b58 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3a994814 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4f766bcf ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5231a85d ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6d4fce15 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7b24be79 ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa418e2e1 ip_tunnel_ioctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbd8d7101 ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbeb9ab97 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc7f08f32 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcb2b68fb ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf4c11089 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf69624d9 ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf9d8d40a ip_tunnel_delete_net -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x4110b36c arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xf518712c ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x9de8be28 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x56818b39 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x6120a25d nf_nat_ipv4_out -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x74467103 nf_nat_ipv4_in -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x7a080e8c nf_nat_ipv4_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xd177e17b nf_nat_ipv4_local_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x45133b2e nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x170a76b7 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3fb651d7 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x9a3e8e3d nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xace7b99d nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xb0649029 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x193ea695 nft_af_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x2a1341cf tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x610213f1 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xcd11e4a7 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xd4ee0936 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xfb0e8c9d tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1038fe58 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7c3ac014 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9db8758c setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf4794908 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x2c71ddbc ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x4bf66a94 ip6_tnl_dst_set -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x9ba39728 ip6_tnl_dst_init -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xa855747b ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xb78bf807 ip6_tnl_dst_reset -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd6fcb778 ip6_tnl_dst_destroy -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xe5d23b9f ip6_tnl_dst_get -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x53df3bcf udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xb0effcbb udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xecf6cdd0 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x4bee2413 nf_ct_frag6_consume_orig -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x9c20139c nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xcd269147 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x334757b2 nf_nat_ipv6_in -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x44a06f8b nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x8851a802 nf_nat_ipv6_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x8ccf7e73 nf_nat_ipv6_local_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xfd6130dd nf_nat_ipv6_out -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x83991555 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6030a810 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x83442f5d nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x8c8c86a5 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa58e8270 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc76bd89f nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0xb0d1eb5c nft_af_ipv6 -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x045558db l2tp_session_free -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5464d45a l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x590c2af2 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6ab7055e l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7ed30d09 l2tp_tunnel_closeall -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x80b3810e l2tp_tunnel_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x80ff6bfb l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x849c4720 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x885ed272 l2tp_tunnel_find_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x969929f1 l2tp_session_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9aac598b l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9f9e73b8 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb8cded9c l2tp_session_queue_purge -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe4cca64f l2tp_session_find_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xeb37d4c3 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf4d5b585 __l2tp_session_unhash -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xb2dc5caa l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0b406e69 ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x11e1f72f ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x16e3a63d ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1f216d2c ieee80211_set_key_tx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x22241149 ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x397ca076 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x58a151ae ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5b15e273 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6367cb9c ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x70124827 ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x78bc4e8e wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x932c57b0 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbc4408dd ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc418706a ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc66a53c7 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xce0bca56 ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe057b580 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe7648f40 ieee80211_iterate_active_interfaces_rtnl -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x72f10e5b mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xad2df99b nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xbe40c115 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xfbf7cdc2 mpls_output_possible -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x09283d50 ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0bbdf3c8 ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x32472990 ip_set_get_ip_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3a8e5c49 ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3e57f7a5 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x44ae96ab ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7fa18871 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x83b864ab ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8ab3ccb3 ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb7f798a1 ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbb687e36 ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbff76316 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcb45fbaa ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe642f108 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe87fb7c8 ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf6ea1bfb ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x132e9f76 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x58b8168b ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xb0a6e562 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xe1a32b03 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x055a2726 nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x072465e1 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a419669 __nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0e0f474d nf_conntrack_l4proto_tcp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11eac221 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x161c06e2 nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x19f01de9 nf_connlabel_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1fd3c6e6 __nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ffea943 nf_ct_l3protos -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x212e5d22 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x271e7319 nf_conntrack_set_hashsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x29d73d88 nf_ct_l4proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2bd48ab9 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2da412cc nf_ct_l3proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3206d978 seq_print_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x339bc216 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x364b8f9b __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b046cde nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c3925cf nf_conntrack_l4proto_tcp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f25631a nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x435ec555 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x46edd522 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4902e140 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4dcb1447 nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x53b8f3a9 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x54eff86c nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x561ed8e0 nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x57b3f292 nf_ct_l4proto_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x585ef5fa nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5e37cde7 nf_ct_l4proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6358347b nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6393b1b9 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x643046f2 nf_ct_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x64a30d19 nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x64adfaf2 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x65b1a0ac nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x67159cf1 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x67c8ac8e nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6974d9c3 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6ad673e7 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6ad9e65f nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6c07ab2c nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7069eaa4 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x717bd4b0 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x739e2214 nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x759eed9a nf_ct_l3proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x79d12573 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c134907 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x804e87e9 nf_ct_get_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x80697388 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x83e15de3 nf_ct_l3proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x84f7bb8e nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8aaed095 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8cd98648 nf_conntrack_l3proto_generic -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f821973 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9155df6c __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x92755323 nf_ct_expect_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x985ec558 nf_ct_iterate_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa6485c7f nf_ct_l4proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa0bf0c3 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xada65297 nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xade42c72 __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb2f1fecc nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb29cb9b nf_ct_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbdb13acf nf_ct_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbe1f9b37 nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2988893 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc3cf22ab nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc6d4bcab nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcce79ddf nf_connlabel_match -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce2afbfe nf_ct_expect_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd090c1e4 nfnetlink_parse_nat_setup_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd95d32ba nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd961fea0 nf_conntrack_l4proto_udp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe0d40788 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe314d738 nf_ct_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb579c22 nf_conntrack_l4proto_udp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xef89f2eb nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf1003fbf __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa70a2b2 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xfc33f5dd nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x2b15d373 nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x1df12616 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0cc1d6ed set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x163f9b4c set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4a51a33a nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x68df0228 set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8f9e4fae nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa72dc0ef nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xaeeca3da nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xbb14b5ea get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc323e8d8 set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xdc72039a nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xc921d7ee nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x0e5e1db5 nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x77795aa9 nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x9ae1cd86 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xd5543831 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xa6e25ae9 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xb4771159 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x13f03b90 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1cb8478b ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3b6e11e8 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x50461a34 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x87a1a7ea ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xbe530d34 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xcb48ec83 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xc8d5c374 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x4cf401d6 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x1be07c20 nf_log_dump_packet_common -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x5e719d7f nf_log_dump_tcp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x94536823 nf_log_dump_sk_uid_gid -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xa633542f nf_log_dump_udp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x10f9cb49 nf_nat_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x30107188 nf_nat_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3ae6ea54 nf_nat_l4proto_unique_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6dd74e5c nf_nat_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x83f42c43 nf_nat_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8743de56 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x954e665d __nf_nat_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xac43b9ff nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfc1a48ec nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xe69a9a4c nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xf9390364 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x675b5e0f synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7cafcd3b synproxy_tstamp_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8841d39b synproxy_build_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0285fae7 nft_set_gc_batch_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x03cb6c2c nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1d7f3afe nft_unregister_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x36f10711 nft_unregister_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x42a02323 nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x44956e1a nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5a8cce60 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5e9b822d nft_unregister_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x65ef7be0 nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8aef5212 nft_register_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8b664563 nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa4cf2cf9 nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa9c59420 nft_validate_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb8254011 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc271e646 nft_register_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd6146184 nft_register_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdc54ad24 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x19341f59 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x38c99d13 nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x63c0c138 nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6af90580 nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7c2e5b87 nfnetlink_alloc_skb -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x84f1fa78 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf76297c5 nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x433e325c nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x88fedeaf nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xaa9465b1 nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x25e7fd04 nfulnl_log_packet -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x228ade52 nft_masq_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x9efc42cd nft_masq_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xcc1ecf64 nft_masq_init -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x117377da nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x14a34650 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x18c12da2 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x36f5346e nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xa6af83e4 nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xe77fda74 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x6a526646 nft_redir_init -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x6f2aa35d nft_redir_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xbc0e1a0f nft_redir_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x86fa2bc5 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xf3a37a6b nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0fc5420d xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x161d1417 xt_compat_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2214d9fb xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x223f349e xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2c56aa97 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x54a6c900 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x567421f6 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5cfdd970 xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f82f1f7 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x660b8c2a xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x691a6d69 xt_compat_calc_jump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6a4925c3 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6bbdf6fa xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x73cee41e xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x89ed67a7 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8a86b62c xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x95e5fc14 xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb3f55ba2 xt_hook_unlink -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb409b6eb xt_hook_link -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcf10ee35 xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcf35561f xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0b4971b xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xeb357fc3 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec24fd82 xt_compat_add_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xecbb611f xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xe9ef9dd0 xt_rateest_put -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xf156a7fd xt_rateest_lookup -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x663987de nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x7e400952 nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xffb17f2c nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x2a9f142a nci_uart_unregister -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xcde83d07 nci_uart_register -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xe5d5777d nci_uart_set_config -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0dd1f27a ovs_netdev_detach_dev -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x161ed359 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x57e0e0ed ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb89c6f14 ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xde4a82fd __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe40170f3 ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xeac11999 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xec1be27d ovs_vport_receive -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xedce970b ovs_vport_deferred_free -EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x099e3769 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0x0eeef195 rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x18af086a rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x1f64ea0b rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x2690f3df rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x33571c24 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0x3ada3d4e rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x49f333e0 rds_page_copy_user -EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x51932dd7 rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0x63283241 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x676b3787 rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0x6bb4a763 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x75de2c48 rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x78930210 rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0x7bc62829 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x86fda2e9 rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0x92257286 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xb81e3411 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0xbefc246d rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xd1494dc9 rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0xe1536652 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0xe418b444 rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xe926247a rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0xf6c40879 rds_send_get_message -EXPORT_SYMBOL_GPL net/rds/rds 0xff3ef848 rds_info_register_func -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x5840dd98 rxrpc_register_security -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x9bfde38e rxrpc_unregister_security -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x64a7ce77 gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xbce87184 gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xe6ee37de svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0345f807 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x043b598d xdr_set_scratch_buffer -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04942a71 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x051990b0 xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0523d5aa cache_seq_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05a1d301 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07300633 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07c170a8 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09b07b46 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c3459ae rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fca2702 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1303f03c xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x152e6c68 xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x173ce6d5 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17e6a4e4 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cfc7be5 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1db84577 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e1cfd08 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1eb306bd rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ebd3b9f svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f915520 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x206c1e81 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2103d362 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x229ff6fb rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27271db3 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x279d6467 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28cc61dd xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28f8cc09 rpc_lookup_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b2d0995 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b341332 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31481cd2 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31dc384e put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x324cc993 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3316d82b cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x342a6b99 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x342fb3af svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x365d034c xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37709bd0 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3852bc5b rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38f2e8d8 rpc_print_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39698753 rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a20d858 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a2ead80 rpcauth_cred_key_to_expire -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a674001 xprt_lock_and_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c1dee24 rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d1c7738 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e008938 rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40350d8d xdr_skb_read_bits -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40d63d96 rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41302422 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x416bddd1 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4201e117 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4298ab90 xprt_set_retrans_timeout_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x433b4a14 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44009635 rpcauth_key_timeout_notify -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4579cf5c cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47ca2ef8 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48d252bf rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49ca45d8 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a408ac4 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c6884d9 xdr_buf_read_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c7f94bd svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c8aee22 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d38ca61 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dfbd1c5 xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ee01efa xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f7255a4 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fd9013d xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51495cdb sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55b39dee xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x568b9268 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56de6cc8 svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x574ebfc9 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58ec008b rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ae78b64 svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b081879 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b0ec780 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f0023bc cache_seq_stop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f81a519 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x602493c3 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60fcfbfa svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64c33ee6 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65e711dc rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x669d09d7 cache_seq_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cb123e9 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ceb5963 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7077007d cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70a842eb svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71a1a601 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x733f4c3f sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7456ffaa rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74b5cc72 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75a75a20 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79b39d79 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b8b7e63 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e8502bf rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ebdbbb9 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8010a4fa svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x808edc40 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82f9f868 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x836f5a41 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x838b3b57 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83b039b5 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85972d5c auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85e3651a rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85f53f3e xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86795a2c xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88dc2510 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a494f51 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b0ebff1 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c90c58c rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cc3d368 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8da47c38 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9180b93d svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92eeeb84 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x970d8b20 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c22212f svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e73c457 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f504fb4 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0720737 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0c13fc3 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0edd074 rpc_get_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1f6cc11 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa268535e xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3dba085 xprt_set_retrans_timeout_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4fe2011 svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa858b7c3 rpc_protocol -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa55afdf rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae42e30c rpcauth_generic_bind_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb13a0001 rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2802474 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb299854c read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb48b236f sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb59a9f50 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb66b176a svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb691aac9 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8cef8d9 svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8dfa8ea rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb998ab1c xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbce69391 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbce77546 xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd189956 csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd4dea11 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdf5a863 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe5ee2b5 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf0570b5 sunrpc_cache_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf5fdce7 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfbe8a3f xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbff463db xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc18d1c55 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc34f536f rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3a795b9 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5ed0f64 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc66501e6 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6790912 rpc_task_reset_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc774a4af rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc954b65f xdr_partial_copy_from_skb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccfa127d xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf1c46e2 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf54dd7c rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd06d5351 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd42286d8 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd49e727c rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4ce230d svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd57e1e15 rpc_lookup_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd614e4d6 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd65a67d8 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7056dc9 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8e48867 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc9fdc2d xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd66ffb1 rpc_lookup_cred_nonblock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdda81f94 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0a6e430 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe26dffce rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2c36756 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8782674 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9542c4e svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9718a15 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9bbd99f rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeab20e40 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedee49cb __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee66cade svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefbc3fc2 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf024da28 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0886346 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf40deb60 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4b3ee08 rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4cc5d46 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf53c44b4 rpc_rmdir -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5d0390b xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf81a7a33 svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8cac71c sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf93f643b svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9912511 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9b867ac svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfab569e0 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfaefebf9 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd5a89d3 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d902c2b vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x53a13302 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x55247054 vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5626ce40 vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6eb517d5 vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x75d47003 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x970b77bc vsock_pending_work -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x99ea0cea vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf15e00e __vsock_core_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb6f33cd1 __vsock_create -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc022cf41 vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd597a2ec vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd7a934f7 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfc5dd915 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/wimax/wimax 0x0210c9e7 wimax_dev_init -EXPORT_SYMBOL_GPL net/wimax/wimax 0x24fa32c8 wimax_report_rfkill_hw -EXPORT_SYMBOL_GPL net/wimax/wimax 0x252a24c6 wimax_msg_alloc -EXPORT_SYMBOL_GPL net/wimax/wimax 0x2edc5fcd wimax_msg -EXPORT_SYMBOL_GPL net/wimax/wimax 0x494883ee wimax_dev_add -EXPORT_SYMBOL_GPL net/wimax/wimax 0x4950336f wimax_msg_send -EXPORT_SYMBOL_GPL net/wimax/wimax 0x674b67cf wimax_state_change -EXPORT_SYMBOL_GPL net/wimax/wimax 0x8ea1c331 wimax_dev_rm -EXPORT_SYMBOL_GPL net/wimax/wimax 0xc3a3ddc8 wimax_report_rfkill_sw -EXPORT_SYMBOL_GPL net/wimax/wimax 0xc50758b6 wimax_msg_data_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0xc8e9a29f wimax_msg_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0xcb33f803 wimax_state_get -EXPORT_SYMBOL_GPL net/wimax/wimax 0xcbdc5f18 wimax_msg_data -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x10daed64 cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x23e7f2fb cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3077a9a6 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x36b35057 cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3f3b44d5 cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4861ba59 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4c60db11 cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4f361d56 cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9cf1e1a8 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc8049097 cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdb50793c cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdc12daab cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf54f3483 cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x37a03742 ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x9cc8526a ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xbe4fff87 ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xfc51bef7 ipcomp_input -EXPORT_SYMBOL_GPL sound/ac97_bus 0x18595a47 snd_ac97_reset -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xd51d8d39 snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xf7c8fc38 __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/core/snd 0x4f2aeb52 snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0x62a2a98c snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0x6cfc92dc snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd 0x71380376 snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0xb3a0ab7a snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd 0xc61b69b5 snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0xcb9bcd6c snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x31fac978 snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x50b98db3 snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x546a9265 snd_pcm_stream_lock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x82b0b9fc snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8ce7dbf9 snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9cb8bb2a snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc0d32249 _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc32a00b9 snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xcc82565f snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1fd9e421 snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x43afd426 snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x6d1be272 snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x74b48d4a snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x95771351 snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9773751f snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xaf52202e snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb176855a snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd7308c78 snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd924b9c7 snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xfc745306 snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x09982550 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x3b2124de amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4cce2df3 amdtp_am824_set_pcm_format -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x716a646b amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8e321cd2 amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb69c0467 amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf2d350b6 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0a02a7f7 snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0d2a5b9b snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0f8170d1 snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1007d1ef snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x10d5fd36 snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x128ee59b snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x14ffb884 snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x151e4627 snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1a539e27 snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2a1e0376 snd_hdac_bus_queue_event -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2e8789ca snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x32fa54b0 snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x37750514 snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b6099b4 snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3d52e1dc snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3dbeefac snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x43138fbb snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4982834c snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4a99ac99 snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4b4bedd0 snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4bb3f753 snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5357c0af snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x54342b06 snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5e3ba7d2 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5f27c370 snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x61a46b33 snd_hdac_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6535bd76 snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6d6a9756 snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73016ee8 snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7447ecd3 _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x759c99c0 snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x75bba4ef snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77a13f2d snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77d21680 snd_hdac_bus_add_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7f0feba3 snd_hdac_make_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x88b602d6 snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x890b48c9 snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8d96eb3a snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8f0ee97f snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x92e9e0ab snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x95fd3d48 snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9b12f1bd snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9d7bf28b snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9e28ad64 snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9e8e3350 snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9e9b7c16 snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa075f40d snd_hdac_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa2583e8e snd_hdac_bus_remove_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa472d770 snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaed3e09f snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb21ed344 snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb2ef91db snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbce3c353 snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbdf63b7c snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc1b9ae41 snd_hdac_refresh_widget_sysfs -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc5dce1ec snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc80ad13f snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc8f4e405 snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcdaa89ac snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd2a53690 snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdb19fb14 snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdf1537fa snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe3339fc4 snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe7910dc8 snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe88e6fc7 snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe99ea1ea snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xef1b089c snd_hdac_bus_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf00f8cd2 snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf2804764 snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf5ded6e0 snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfab89e01 snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x25290657 snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x80542829 snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa78576c7 snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xbb2cc366 snd_ak4113_create -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xbf98ba4d snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xd13503e2 snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01481e00 snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x017007eb snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01afe1c5 snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04a0b4e1 snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0840f93a snd_hda_mixer_bind_ctls_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x08f79273 snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0aba6c9a snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ae45a76 snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0be3e1bf snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0cb44afa snd_hda_jack_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x136e99c6 azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1864506f snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x217641a5 azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24e72043 snd_hda_jack_tbl_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2534797b azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2826fc96 snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x29579268 snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2b24ad42 snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2dd03610 snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e02eedb snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ffa8e8d snd_hda_mixer_bind_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x330b3169 snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3336588a hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3380b49b snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33dc9b8e snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3579e47b azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3733748a __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x373eeaad snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4073bfc7 azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4084f0e4 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x44ec60b0 snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x45095a02 snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4706953c snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47dad199 is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4855642d snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4aebaae5 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4cebbba9 snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x517b902d azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a39d100 snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c7bd86c snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5e96f7eb snd_hda_register_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x603538d9 snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x62a8b2cf snd_hda_jack_detect_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x62b5f778 snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x656e3522 snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67de097c __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6928cde6 snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b9224a2 snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d08491b snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d13bdbc snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f9b7ee0 azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x73e6f341 snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x73e79646 snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x75ed25ef snd_hda_jack_detect_enable_callback -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b0a69b1 snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e35bcb3 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8077ca22 azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8332eb54 snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x835bcf9d snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8463681c snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x85b20928 snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x87447dc8 snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8808cb99 snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b3abb8e snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8bc20192 hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c310aa3 snd_hda_mixer_bind_ctls_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8fb17e1b snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9059b27b snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9214a4fb snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x94710444 snd_hda_mixer_bind_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95109239 snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95119e67 snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x965bbcd9 snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b624810 azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9cd458aa snd_hda_bind_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9dd6c002 snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f4cc2be snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f615cfb azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9fe91d09 snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5671ef6 snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa6d45318 snd_hda_bind_vol -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa9a1c589 snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaae2dd76 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac65c724 azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf25bc06 snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0649db5 snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1ee61f9 snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb36c7741 snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb3cb73f3 snd_hda_mixer_bind_ctls_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc12ddb86 snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc1483f3b snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc1cc062c snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc6c38039 snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc77dc30a snd_hda_mixer_bind_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc851bbb2 snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc86c1c8f snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca032d77 snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb97c52a snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xced4e638 snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf6b04ce snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf718c57 snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd050a336 snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd09dc26e snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd2a83bc3 snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd2d5a7f1 snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd700d745 snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8664c05 snd_hda_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9be3e2a snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9d6b28d snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3e213e9 _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe4ba50c5 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe61951ed snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeaed9ec2 __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xedec51ec query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef6e431a snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3423b2d snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3b30a54 snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3bd0da9 snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf499ba83 snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf79665df snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf9acc3be snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc7cb068 snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe1d5882 snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe6ac4d7 snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0d01ef9d snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x125aceef snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x20b86775 snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x23a0107c snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x31c1b52e snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x34376b0e snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x357498cb snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5253d7f5 snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5aee2900 snd_hda_parse_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x61aea631 snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6bb52036 snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6c2e46e0 snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x824098ce snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x87923e64 snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x94f599be snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa95c29a9 snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb24b1f8e snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc1824a40 snd_hda_get_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdd8df7ba snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe72fe965 snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xff8923fd snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x57418004 cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x8498684a cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x125d62db cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x6cf9c947 cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x2296a74b cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xa223ee21 cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xf16cc67b cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x2ed2e7a2 es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x77def4e7 es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0xbe2103b2 max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x001d3085 pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x5ca803e6 pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x600213ae pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x8614ea0d pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x4913795c rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x9249c075 rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x92fb1073 rt5677_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x0a842d15 rt5677_spi_write_firmware -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x8d584a9f rt5677_spi_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xd658ccf9 rt5677_spi_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x5a353a57 devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x72954410 sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x74e2a7c2 sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xa1a2100f sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xb3c88d34 sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x349aea5d devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x995c9852 ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xf0dd76d4 ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x92a9c7a6 tpa6130a2_stereo_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xc417811c tpa6130a2_add_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xb08fac31 ts3a227e_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x1f57605b wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xabdcd51d wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xaf093755 wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xee84734a wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xadeeea2a wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xcc9ea368 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x62b4b3eb fsl_asrc_get_dma_channel -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xc61cd445 fsl_asrc_platform -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x30693bb7 imx_audmux_v1_configure_port -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x58631dab imx_audmux_v2_configure_port -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x164d4623 asoc_qcom_lpass_cpu_platform_remove -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x59a35fa0 asoc_qcom_lpass_cpu_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x898b740c asoc_qcom_lpass_cpu_platform_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xca89305c asoc_qcom_lpass_cpu_dai_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0x4144b098 asoc_qcom_lpass_platform_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00a962f6 snd_soc_platform_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x015572f6 snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x01e377f3 soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x028b0390 snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x040f90c7 snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0611bead snd_soc_free_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08c5cdc3 snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0afca69e snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0bf0c279 dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e5ec10d snd_soc_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e9b014b snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x113e5133 snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1180d544 snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1522c869 snd_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x152b0086 snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x16a873fa snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17e8ba64 snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e9ddd78 snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22ea6b99 snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24b53572 snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2590a626 snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25f4ab79 snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2979f8b5 snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29832893 snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x299f8c8d snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a58cf55 snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b0a061a snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b75961f snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b8c757e snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2dcfc250 snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e3948c0 snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f4ef514 snd_soc_unregister_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x305201ee snd_soc_get_dai_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x305599c1 snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x306139a3 snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36c90c58 snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38290966 snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a73d6c2 snd_soc_platform_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b4193b2 snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e7f0af7 snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x40cc2afe snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b7feaaa snd_soc_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4cc4f79c devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x504928f9 snd_soc_codec_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x524c158f snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53f9f8fd snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x540adaa2 snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x544b0334 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54c31f66 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55274bcb snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59f2554a devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b0d46cd snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b61aaad snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c9696ba snd_soc_unregister_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5dd6b10c snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x627c223a snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x630e2115 snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6534910e snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x655c4dd0 snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69bc963c snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69e05f84 snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b918a77 snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b9aa8ab dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c080361 snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d26c528 snd_soc_add_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x709466d2 snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x781d30b3 snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d0757fa snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d380ddd snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7fa9e0a0 snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x80b79500 snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x817f7620 snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81acbf0c snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83dc4371 snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84758ef6 snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85fddcc0 snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89e2beba snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8aa3b149 snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d8a7291 snd_soc_of_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e5efa00 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f697906 snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x967794eb dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x977a1272 snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97a56635 snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99673855 snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d1316c8 snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ef528ab snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1ec82e5 snd_soc_lookup_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2237cc3 snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2434bc3 snd_soc_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4702ccd snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4dd8185 snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa56ed552 snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8ab7af4 snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9e570f4 snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac2b35fa devm_snd_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac6d20cf snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae7aa4c8 snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf6af037 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb2b7813e snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb612169c snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6f653c7 snd_soc_dpcm_be_get_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7e4c88f snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc49b256 snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc8979ef snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbccaf456 snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfb5a65c snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc00ee52f snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1c7a30c snd_soc_new_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc25cb662 snd_soc_add_platform_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4ec295f snd_soc_register_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7acb77f snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7bd81a4 snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc8f14ea snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd18180ed snd_soc_of_parse_audio_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1935bff snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1bb9368 snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd4e2f54b snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd587ee1f snd_soc_codec_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd670459d devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd67e3153 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd70426dc snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd76e094d snd_soc_add_codec_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8b84dfa snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda1a3d1a snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb73ea69 snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdcebf07f snd_soc_remove_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd4e143c snd_soc_platform_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde7d4093 snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1406b16 snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe21e4c71 snd_soc_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6fab898 snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe98faff2 dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed3a0c9e snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee5152d9 snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0c8ec9d snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf139373b snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2ac1ab2 snd_soc_dpcm_be_set_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4e4d6fa snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf588fa4b snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8073c80 dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9333882 snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa6c46ce snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfba38615 snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfba3fbca snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe82774e snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff232940 snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff983698 snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x06094b75 line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0a10494a line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x15bf470a line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x23b3159c line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3ccedd55 line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x609d7529 line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x75592800 line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x809aefdc line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8cf834c9 line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x906809ef line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbaa9a828 line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd159ee61 line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe5a21b2b line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xed386b2b line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf01b0436 line6_init_midi -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x3fe35aea irq_bypass_unregister_consumer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x418873cc irq_bypass_register_producer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x888c5be5 irq_bypass_register_consumer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0xf6e772c3 irq_bypass_unregister_producer -EXPORT_SYMBOL_GPL vmlinux 0x001731f9 pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0x0050da4a __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0x0060a9de vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x007f54db of_dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0x00932be9 inet_csk_compat_setsockopt -EXPORT_SYMBOL_GPL vmlinux 0x009ef0ee usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x00a7b514 tc3589x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x00cd813e xenbus_register_driver_common -EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0x00fb1ff6 usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before -EXPORT_SYMBOL_GPL vmlinux 0x01053667 dma_buf_kmap -EXPORT_SYMBOL_GPL vmlinux 0x01121178 get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish -EXPORT_SYMBOL_GPL vmlinux 0x01567d8a securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x015f3bfb mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0x0176fa48 regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0x018b12b9 pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x019a34df mpc8xxx_spi_rx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0x01abdedf __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0x01afbd09 gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0x01b8bf5c dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x02126d25 regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x0213fc6d irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x0263180d acpi_subsys_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x0279d180 tps65912_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x0293bce5 of_reserved_mem_device_init -EXPORT_SYMBOL_GPL vmlinux 0x02a24d84 acpi_match_device -EXPORT_SYMBOL_GPL vmlinux 0x02a2af6d regulator_can_change_voltage -EXPORT_SYMBOL_GPL vmlinux 0x02a3d232 dev_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0x02aa2292 ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x02d5a392 devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0x02e584db irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0x02e67430 __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x0302d826 wm5110_patch -EXPORT_SYMBOL_GPL vmlinux 0x0303bd46 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x031570e6 __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id -EXPORT_SYMBOL_GPL vmlinux 0x03275457 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0x03291541 usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x032dab8b device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x0345555a ioremap_page_range -EXPORT_SYMBOL_GPL vmlinux 0x038647c5 pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0x03975558 get_dcookie -EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0x03a8a59e perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0x03beb25a pci_restore_ats_state -EXPORT_SYMBOL_GPL vmlinux 0x03d633ee scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x03dab185 pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0x03e0f595 __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode -EXPORT_SYMBOL_GPL vmlinux 0x03fefe66 devm_usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x04090cb2 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0x040c1ca3 __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x043b935f __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x044334df pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x045cc2ba noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x045ed6af __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x046c2e34 dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0x04722c9d pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x04775c04 ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0x0478c6be inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x047c13d0 fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x049467f2 blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0x04a6a25b kvm_write_guest -EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0x04a8b1ae dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0x04ab60b6 crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x04aca3d6 pwm_request -EXPORT_SYMBOL_GPL vmlinux 0x04b969ef debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x04c3f2c1 gnttab_empty_grant_references -EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x04fb85fb of_thermal_is_trip_valid -EXPORT_SYMBOL_GPL vmlinux 0x05235b3d mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x053494cb tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0x0537b4b5 get_kernel_page -EXPORT_SYMBOL_GPL vmlinux 0x054cc119 alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x05573fd7 __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x05627fb7 __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x056f779d posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x057db067 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0x058c1885 pinctrl_dev_get_devname -EXPORT_SYMBOL_GPL vmlinux 0x059314c3 napi_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x05a6d32e ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0x05ad9aac sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0x05d8608b led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0x05fdf5f5 vchan_tx_submit -EXPORT_SYMBOL_GPL vmlinux 0x06078b15 scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x064dd94c inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x0662edaf nd_mapping_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x0679900d crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x06805b0d usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x0688f361 devm_mdiobus_free -EXPORT_SYMBOL_GPL vmlinux 0x0689a4c5 pwm_can_sleep -EXPORT_SYMBOL_GPL vmlinux 0x069d69e7 sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0x06aa3d79 pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio -EXPORT_SYMBOL_GPL vmlinux 0x06ee065f xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0x0704c287 percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0x07232047 unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x0728dbc7 devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x074f4409 phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0x0752453c fuse_get_req_for_background -EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x076a0a32 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0x077eedf8 __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x07853cf7 mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0789d610 ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char -EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07d503b7 usb_gen_phy_init -EXPORT_SYMBOL_GPL vmlinux 0x080b3e55 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0x080fa905 nd_device_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0x0839dbd6 debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0x0848d190 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0x084dd671 regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0x08691fc0 devm_pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x0876cd24 single_release_net -EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x08954889 key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0x08a955b4 of_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x08a95b8c md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0x08b34dfd bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec -EXPORT_SYMBOL_GPL vmlinux 0x08c715ee power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x08cc47e2 power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0x08d249f7 regmap_write -EXPORT_SYMBOL_GPL vmlinux 0x08d9075e pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x08eaa226 debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x090ba684 ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x09474d39 crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x0976e2b6 wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x09a0d71d devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x09c328f1 clk_register_gpio_mux -EXPORT_SYMBOL_GPL vmlinux 0x09c43b9a cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0x09db1d05 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x09dd60f0 fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0x09ef72db usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x09f2191e devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x0a0808e1 arizona_clk32k_enable -EXPORT_SYMBOL_GPL vmlinux 0x0a0d05e0 __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x0a52747a regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0a578a18 digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0x0a7c3544 kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x0a83ef3d scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x0aa41fd4 spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0x0aa86053 of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x0ab4f55b tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x0ae782ba debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x0af655f9 regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b1cc8d0 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0x0b1f7965 dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0x0b260dc7 fuse_put_request -EXPORT_SYMBOL_GPL vmlinux 0x0b26bd1a __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b3f2bf8 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0x0b41a897 sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0x0b5c0cb6 ahash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x0b6babfe phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0bc0923b pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x0bc6da26 pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x0bccaf64 __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x0bd18336 transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x0be13fff smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0c2a6d39 crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0x0c2c6451 usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x0c38d4ff set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0x0c394abb kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x0c4a6ad3 __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x0c4cd0c7 pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x0c508ff7 sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0x0c6a0390 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0x0c80e3fe efivar_init -EXPORT_SYMBOL_GPL vmlinux 0x0c858d19 wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x0cc011b2 ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x0cc74a0c crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x0cc766a4 pm_runtime_get_if_in_use -EXPORT_SYMBOL_GPL vmlinux 0x0cd4e209 blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0x0cd76f84 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x0ce0f486 reservation_object_test_signaled_rcu -EXPORT_SYMBOL_GPL vmlinux 0x0d15e196 usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0x0d2b21b2 regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0x0d3487c7 dev_pm_opp_find_freq_exact -EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d4bf69f sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x0d50ef4c usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0x0d7700f9 blkcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0x0d7c90da scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x0d8b55c1 inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x0d9f7236 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0de237cd ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x0df9a326 ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels -EXPORT_SYMBOL_GPL vmlinux 0x0e113fe0 crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0x0e18313e iommu_domain_window_enable -EXPORT_SYMBOL_GPL vmlinux 0x0e266b5d vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0x0e2ccb97 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0x0e36fd5e do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x0e382f89 cpu_topology -EXPORT_SYMBOL_GPL vmlinux 0x0e5a320b regmap_fields_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x0e8352bb of_clk_src_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0x0e873685 anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x0e9eebb5 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0x0ea41f64 pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x0ea61577 net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0x0ecf823a static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x0ee700f5 ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0ef5068c scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x0ef67c93 component_master_add -EXPORT_SYMBOL_GPL vmlinux 0x0f012044 __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x0f312e86 cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x0f3b9e73 shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0x0f45dbad dev_pm_opp_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0x0f8e9462 rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0x0f9ad7d9 device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0x0fcd9706 devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x0fe2d570 xenbus_directory -EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x101dc44f __class_create -EXPORT_SYMBOL_GPL vmlinux 0x101f99fa dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0x103ab2d6 rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x10524829 __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x10573188 of_genpd_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0x10b4ab19 security_kernel_fw_from_file -EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x1108e60e gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x1121013a dm_get_table_device -EXPORT_SYMBOL_GPL vmlinux 0x1135f8cf vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0x1142f9e1 xenbus_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x114c57e7 unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0x11a6e873 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x11c4b3cb apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0x11caddc7 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0x11d9c487 driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x1208ea7b devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1236d89a usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x12425927 usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x12461d6e pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0x12489113 of_alias_get_id -EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x1267d747 acpi_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x127f6421 handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x12b17889 dev_pm_opp_of_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x12cf9729 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x12da7995 regmap_write_bits -EXPORT_SYMBOL_GPL vmlinux 0x12fd75eb bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x130de01d trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x131f3125 ata_base_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x13349615 thermal_generate_netlink_event -EXPORT_SYMBOL_GPL vmlinux 0x13370247 pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x13552436 led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x135dd44a devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0x135fee96 power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x137f854c fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init -EXPORT_SYMBOL_GPL vmlinux 0x138c6ad9 devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen -EXPORT_SYMBOL_GPL vmlinux 0x13b89dee pinctrl_request_gpio -EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0x142391c8 dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0x1430e07f anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0x145cba1a da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0x146c2cb3 unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x14821ef8 register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x149940be blk_mq_free_hctx_request -EXPORT_SYMBOL_GPL vmlinux 0x149f1edc vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x14a10551 PageHuge -EXPORT_SYMBOL_GPL vmlinux 0x14a535ac show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x14adcb5c dax_pfn_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0x14e074af usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x14f68d3f rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x15160241 devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x151ddb62 dev_pm_opp_set_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x1534bc07 of_pci_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x1542833c ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0x154e3a44 da903x_update -EXPORT_SYMBOL_GPL vmlinux 0x15564673 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0x155f3538 perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0x15684a9e fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x156c8319 blkcipher_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x157555be sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x15a4a12c blkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x15a7719d blk_queue_rq_timed_out -EXPORT_SYMBOL_GPL vmlinux 0x15bfda66 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0x15e321e9 __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started -EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x1608934e pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0x1622e3b7 crypto_alloc_instance2 -EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress -EXPORT_SYMBOL_GPL vmlinux 0x165efb44 of_dma_xlate_by_chan_id -EXPORT_SYMBOL_GPL vmlinux 0x1685ba20 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0x16978297 srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x169c1d26 pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x16ef47e6 kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0x17202dbf dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x1742f91d regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x174cecc1 tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0x174efb6a clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x17713e52 __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x178dc088 sdio_run_irqs -EXPORT_SYMBOL_GPL vmlinux 0x1799b77b ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x17aaf6ff pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0x17b64d86 clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0x17d2e1b4 iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x17ea3bf0 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0x1809afd2 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0x180f44c1 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x180fc2e3 swiotlb_tbl_map_single -EXPORT_SYMBOL_GPL vmlinux 0x1820c40c debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x18369de0 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x1837153a crypto_ahash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1855aef9 usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x186140d6 gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert -EXPORT_SYMBOL_GPL vmlinux 0x187b0cd2 irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x187b7511 dev_pm_opp_of_cpumask_add_table -EXPORT_SYMBOL_GPL vmlinux 0x187dc12e devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x18dbe21b acpi_dma_request_slave_chan_by_index -EXPORT_SYMBOL_GPL vmlinux 0x18edf7e6 cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0x18eec4eb ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x18f83fab gnttab_grant_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0x18fc39dd sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0x18fc60a1 scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0x190e0d67 get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x19119803 __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x191d7961 of_property_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0x19328b9c dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x194359b0 regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x196bf85f inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0x19749558 pci_try_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x197e461b blk_queue_bypass_start -EXPORT_SYMBOL_GPL vmlinux 0x19827d2e usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x198ce0a1 led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19d19a14 pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0x19d2e06a cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0x19f0522a __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x19fbe248 blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x1a3d51b6 regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0x1a57e998 regmap_fields_write -EXPORT_SYMBOL_GPL vmlinux 0x1a6f643d devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0x1a709669 crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x1a8a4f92 debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x1a94a8e0 __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table -EXPORT_SYMBOL_GPL vmlinux 0x1a9c462e hypervisor_kobj -EXPORT_SYMBOL_GPL vmlinux 0x1aa97e1f acpi_pci_check_ejectable -EXPORT_SYMBOL_GPL vmlinux 0x1ab0e79f register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x1ac98f2e tcp_death_row -EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing -EXPORT_SYMBOL_GPL vmlinux 0x1ae69d3a sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0x1b173f19 devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x1b5d6d36 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1bab1e9e crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x1bb396ea crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x1bfe2f46 dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x1c23f41e devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x1c31ae19 usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase -EXPORT_SYMBOL_GPL vmlinux 0x1c61f149 nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x1c675fc6 bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1c78fd83 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 -EXPORT_SYMBOL_GPL vmlinux 0x1c859d9d fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x1c876952 device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1c8e638e dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x1cade373 edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x1cae724d devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x1cb10b3e uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0x1cc7b6e5 fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0x1cc9bded __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x1cdb2147 zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0x1cf4ac90 pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0x1d17af73 wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d40f60d spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x1d442be5 scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0x1d4c1648 blk_mq_register_disk -EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings -EXPORT_SYMBOL_GPL vmlinux 0x1d652735 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x1d739e1c xen_set_callback_via -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d788f2b gfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x1d7cb586 clk_register_fixed_rate_with_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x1da076f3 of_get_nand_ecc_mode -EXPORT_SYMBOL_GPL vmlinux 0x1dae7dc3 xen_swiotlb_sync_single_for_cpu -EXPORT_SYMBOL_GPL vmlinux 0x1dc0e857 wakeup_source_prepare -EXPORT_SYMBOL_GPL vmlinux 0x1dcd0dbf device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x1de6c3a7 xenbus_dev_probe -EXPORT_SYMBOL_GPL vmlinux 0x1ded7a60 sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0x1def880e bind_interdomain_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x1df6b5a9 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0x1dfd4f4d __sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x1e07d460 device_create -EXPORT_SYMBOL_GPL vmlinux 0x1e14968e crypto_alloc_ablkcipher -EXPORT_SYMBOL_GPL vmlinux 0x1e27c6a9 nf_unregister_afinfo -EXPORT_SYMBOL_GPL vmlinux 0x1e383ac8 ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x1e3bde00 pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1e64c76f debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0x1e68ce14 trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x1e7a113e blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e83fee6 HYPERVISOR_physdev_op -EXPORT_SYMBOL_GPL vmlinux 0x1e872da4 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1e916f28 tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x1e9e23fe of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x1ea76994 __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x1eb72626 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebac2bd getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ecc368a cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x1eebd7e1 input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0x1f18cfc5 default_iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0x1f2df7ce inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1f51afac perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x1f95b596 led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0x1fdfa13c iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0x1fecfa27 devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1fef2190 hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0x2006c50c xen_swiotlb_map_sg_attrs -EXPORT_SYMBOL_GPL vmlinux 0x20206a94 sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x2045b04e __pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x204d22a2 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x20549200 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x206776a8 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0x206b6b15 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0x20842c21 subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x209a3e06 ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0x20a38608 vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x20a901f9 platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0x20abb08f of_get_nand_ecc_step_size -EXPORT_SYMBOL_GPL vmlinux 0x20af7c7e pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0x20c85af8 phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x20c9536f rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x20de5193 kvm_disable_largepages -EXPORT_SYMBOL_GPL vmlinux 0x20e1ecf7 kvm_read_guest_cached -EXPORT_SYMBOL_GPL vmlinux 0x211ca02e alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0x2131dcb8 kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0x21375db0 __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x21399186 of_cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x21404bac ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x21416666 pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x2155f664 iommu_domain_get_attr -EXPORT_SYMBOL_GPL vmlinux 0x215bdb91 tps65912_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x217b4451 pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21d4cffa pwmchip_add_with_polarity -EXPORT_SYMBOL_GPL vmlinux 0x21dbe258 usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0x21e14254 dax_do_io -EXPORT_SYMBOL_GPL vmlinux 0x21ec5d84 pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0x221eb471 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x222e1940 get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0x2230b424 pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x223cf9d7 inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0x227c369b pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 -EXPORT_SYMBOL_GPL vmlinux 0x22b84537 pl08x_filter_id -EXPORT_SYMBOL_GPL vmlinux 0x22bbc7af ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0x22dd4a43 ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0x22e03059 pcc_mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x22f651bd register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0x22f947c3 ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0x23037d1c inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x235f26ee blkg_prfill_stat -EXPORT_SYMBOL_GPL vmlinux 0x2366a2c0 errata -EXPORT_SYMBOL_GPL vmlinux 0x23703e36 klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x23860bca ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x238d2512 regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x239dd63a gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0x23a4870d rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0x23a61e7d pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x23a9e838 perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x23b797db btree_last -EXPORT_SYMBOL_GPL vmlinux 0x23c89095 blkg_print_stat_ios_recursive -EXPORT_SYMBOL_GPL vmlinux 0x23caa6a9 tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x23ed98bb devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x24008d9e ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0x24011e14 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0x24297ce1 unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0x244d31de of_get_display_timings -EXPORT_SYMBOL_GPL vmlinux 0x245394b6 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0x246df34a bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0x2478f5ca da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0x247ab68f ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key -EXPORT_SYMBOL_GPL vmlinux 0x24b68c76 get_device -EXPORT_SYMBOL_GPL vmlinux 0x24c7698a xenbus_write -EXPORT_SYMBOL_GPL vmlinux 0x24d502eb of_modalias_node -EXPORT_SYMBOL_GPL vmlinux 0x24e4472a device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset -EXPORT_SYMBOL_GPL vmlinux 0x25077755 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x25223a90 serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x2545c170 unregister_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0x255fd97d wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0x256c2f7f subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2574b121 raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0x2591340a thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x259900d5 rhashtable_walk_init -EXPORT_SYMBOL_GPL vmlinux 0x259a457c wm5110_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x25a1aa0c max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x25ba1e05 sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0x25c1065b ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0x25c18cb1 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x25fae7b0 sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0x26252ff8 wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock -EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x26612cbe sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0x26616e0e mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x2688c38e tps65217_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x26a440a3 trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0x26a86e35 fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0x26aa78ce platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL vmlinux 0x2730351d nf_queue_entry_release_refs -EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x2762c233 sched_setscheduler -EXPORT_SYMBOL_GPL vmlinux 0x276413ca __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0x2774208c tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0x277ca335 blk_set_queue_dying -EXPORT_SYMBOL_GPL vmlinux 0x278b0e9f phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0x2794bdd8 xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x27a3ea55 crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x27ab892c serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0x27c0c4be eventfd_ctx_read -EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info -EXPORT_SYMBOL_GPL vmlinux 0x27cdcac9 mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0x27e05a64 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x27e38fec iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0x27eae343 mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x280fe86e of_get_display_timing -EXPORT_SYMBOL_GPL vmlinux 0x28157fe6 ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x281b81e6 disk_get_part -EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x2846296b irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x28677411 component_master_add_child -EXPORT_SYMBOL_GPL vmlinux 0x28787bd1 devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0x2883dcf8 usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x28a2d5e7 usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x28a4049f scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0x28b45a3e mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0x28f16116 devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0x29227f44 device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0x292e91f2 event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0x294ad1bc dev_pm_opp_find_freq_floor -EXPORT_SYMBOL_GPL vmlinux 0x2963da18 da903x_write -EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0x299cdb35 gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0x29e495c0 thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0x29e8a01a devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29ff6ca3 of_css -EXPORT_SYMBOL_GPL vmlinux 0x2a0e1ab9 kvm_vcpu_gfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0x2a225182 usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0x2a2f2809 ata_acpi_cbl_80wire -EXPORT_SYMBOL_GPL vmlinux 0x2a59086d ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0x2a647ea0 irq_find_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2a66e311 pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2a76b8a7 wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x2a7afcef ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0x2adbc2da acpi_dev_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x2add1a93 find_module -EXPORT_SYMBOL_GPL vmlinux 0x2add957b tpm2_startup -EXPORT_SYMBOL_GPL vmlinux 0x2ae1c392 __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x2ae2d96b bdev_read_page -EXPORT_SYMBOL_GPL vmlinux 0x2aea6a03 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x2af63321 acpi_dev_resource_address_space -EXPORT_SYMBOL_GPL vmlinux 0x2b116fc8 __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x2b1eacff iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x2b2666a9 of_thermal_get_trip_points -EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0x2b4b4b9d regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x2b5295d7 of_pci_range_parser_one -EXPORT_SYMBOL_GPL vmlinux 0x2b903b61 bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0x2b9ac1c3 blk_add_request_payload -EXPORT_SYMBOL_GPL vmlinux 0x2bb1b213 pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x2bd4d242 sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0x2be2fe8d crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0x2bee5950 acpi_device_update_power -EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc -EXPORT_SYMBOL_GPL vmlinux 0x2c0e67de tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0x2c167fe9 tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x2c1a790f cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c23e272 cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c324ab3 rt_mutex_timed_lock -EXPORT_SYMBOL_GPL vmlinux 0x2c4868a9 devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0x2c5677f9 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x2c68cefd blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x2c74e530 pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x2c7d9c64 xen_store_interface -EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c7fa102 extcon_get_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0x2c8cfdf9 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2cb75af7 cpufreq_frequency_table_cpuinfo -EXPORT_SYMBOL_GPL vmlinux 0x2cbcd085 virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x2cd0b218 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x2cda5cdf crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq -EXPORT_SYMBOL_GPL vmlinux 0x2cefda77 find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0x2cf93c3b arizona_of_get_named_gpio -EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d1d1850 pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x2d1dbc94 devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers -EXPORT_SYMBOL_GPL vmlinux 0x2d6d09d3 spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0x2d94c87e pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x2da91988 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0x2dc7904e power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x2de221e6 dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0x2e1da9fb probe_kernel_read -EXPORT_SYMBOL_GPL vmlinux 0x2e1e8ff2 of_usb_update_otg_caps -EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e27027e tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2e45fa8f ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x2e815665 tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0x2e91f7ac fat_scan -EXPORT_SYMBOL_GPL vmlinux 0x2e9366a0 ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0x2e9670c0 pl320_ipc_transmit -EXPORT_SYMBOL_GPL vmlinux 0x2e980cff __module_text_address -EXPORT_SYMBOL_GPL vmlinux 0x2ea1b87c devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x2eaae579 ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x2ecfd647 dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0x2ed3f905 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0x2ef2368a posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0x2ef4fed0 wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register -EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x2f71cb5c class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x2f7b888b napi_hash_del -EXPORT_SYMBOL_GPL vmlinux 0x2f8e9846 usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0x2f927ee6 __xenbus_register_backend -EXPORT_SYMBOL_GPL vmlinux 0x2f93cd58 of_irq_parse_pci -EXPORT_SYMBOL_GPL vmlinux 0x2fad6d9b ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake -EXPORT_SYMBOL_GPL vmlinux 0x2fe63624 mddev_congested -EXPORT_SYMBOL_GPL vmlinux 0x2ff1eea1 __blk_run_queue_uncond -EXPORT_SYMBOL_GPL vmlinux 0x2ff909ca vchan_find_desc -EXPORT_SYMBOL_GPL vmlinux 0x301d60ea devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x3037eec3 ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0x303b15a3 sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0x304a7678 iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x306971b7 crypto_attr_alg2 -EXPORT_SYMBOL_GPL vmlinux 0x306c9f27 usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0x30923a5d crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0x30c1daaa inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0x30c646bc attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0x30c7da15 __ablkcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x30d493a1 powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0x30dedf05 list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0x30fcc5ec regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0x31099bde sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock -EXPORT_SYMBOL_GPL vmlinux 0x3115521f fuse_get_req -EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x312aceee seq_open_net -EXPORT_SYMBOL_GPL vmlinux 0x312b60a0 devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0x313be0c4 xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0x313d4e6c cpufreq_table_validate_and_show -EXPORT_SYMBOL_GPL vmlinux 0x3141d39b i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x317be6e9 led_trigger_store -EXPORT_SYMBOL_GPL vmlinux 0x317d33b9 pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x318adbce trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put -EXPORT_SYMBOL_GPL vmlinux 0x31c6a8ac usb_bus_list_lock -EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31e4cb91 sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0x31e9384e usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x31f46641 fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0x31f5b8c2 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x321040bd sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval -EXPORT_SYMBOL_GPL vmlinux 0x322c99a2 iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0x325e677c gnttab_grant_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x32674150 of_clk_get_parent_name -EXPORT_SYMBOL_GPL vmlinux 0x32762475 trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x3280c731 sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update -EXPORT_SYMBOL_GPL vmlinux 0x328c7930 usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x328dc31a pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0x329346fc put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x32a07f29 bio_associate_current -EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec -EXPORT_SYMBOL_GPL vmlinux 0x32c04624 ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32d8d4d1 device_reset -EXPORT_SYMBOL_GPL vmlinux 0x32eeffcc wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x32f1884c bgpio_init -EXPORT_SYMBOL_GPL vmlinux 0x32ff03c6 led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0x33032e55 device_create_file -EXPORT_SYMBOL_GPL vmlinux 0x3303ef85 to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0x3311c752 gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x331c7acb usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0x3320262e fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0x33283d90 ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition -EXPORT_SYMBOL_GPL vmlinux 0x336a9e28 dax_clear_blocks -EXPORT_SYMBOL_GPL vmlinux 0x336f5377 class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x33814279 device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x33831c26 cppc_get_perf_caps -EXPORT_SYMBOL_GPL vmlinux 0x339ad9ba alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x33a3e5d6 io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0x33ca5c03 usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x33e08f9d serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0x33f6e134 regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x341a8571 gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x34272b36 tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0x342b18b7 usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0x342e0735 fsl8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x342f5453 gnttab_unmap_refs -EXPORT_SYMBOL_GPL vmlinux 0x34331655 irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x3447fe03 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0x344f2ed6 xenbus_frontend_closed -EXPORT_SYMBOL_GPL vmlinux 0x34592714 regmap_fields_force_write -EXPORT_SYMBOL_GPL vmlinux 0x3474a3ba init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x347cbd2a single_open_net -EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get -EXPORT_SYMBOL_GPL vmlinux 0x34894311 device_move -EXPORT_SYMBOL_GPL vmlinux 0x348deb36 clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0x34a8da5f __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x34b39fb7 usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0x34b63e71 devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x34bc891b device_add_property_set -EXPORT_SYMBOL_GPL vmlinux 0x34d2e8d7 ablkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x3509a221 stmpe_enable -EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched -EXPORT_SYMBOL_GPL vmlinux 0x352650ee gnttab_batch_map -EXPORT_SYMBOL_GPL vmlinux 0x35272191 pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0x352947d5 cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x3537a23c ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x3546dcb1 usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x356734d7 wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x35680ca3 call_filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0x357e3ba8 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0x35819cf8 regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x358d4894 arizona_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x3599be20 set_foreign_p2m_mapping -EXPORT_SYMBOL_GPL vmlinux 0x35aa9905 __xenbus_register_frontend -EXPORT_SYMBOL_GPL vmlinux 0x35ab4bcf iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0x35bf2acd nd_fletcher64 -EXPORT_SYMBOL_GPL vmlinux 0x35cadb15 usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL vmlinux 0x35d0c391 each_symbol_section -EXPORT_SYMBOL_GPL vmlinux 0x35d5db14 scsi_internal_device_block -EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x360bf64c generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0x360d11bb scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0x361622e0 dev_pm_opp_get_suspend_opp -EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x363469b8 dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0x363971af crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0x3671d2bc vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0x368f1fea static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36b826d9 srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x36e06648 regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0x36f3886d wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x36f8fab3 of_irq_parse_raw -EXPORT_SYMBOL_GPL vmlinux 0x36fdc652 of_clk_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x37016475 clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x371c041f preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x371dbd7c gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0x3726eacf pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x372861aa irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0x375520d0 usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0x375f5fc1 preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x376061e2 skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0x3766468a gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x37891a84 kvm_put_kvm -EXPORT_SYMBOL_GPL vmlinux 0x378afbef device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0x379c1fdf __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0x37be4724 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x37d540d2 dt_init_idle_driver -EXPORT_SYMBOL_GPL vmlinux 0x37e0bd51 pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0x37e73513 attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x37fc32b3 device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0x3802ee81 setup_irq -EXPORT_SYMBOL_GPL vmlinux 0x3805bbe8 ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x381103d5 ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x3822c161 sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x382e7f97 btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0x38387761 usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0x383e306e usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0x384a6981 __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0x384c3987 relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy -EXPORT_SYMBOL_GPL vmlinux 0x38893f5e watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0x389a1108 regmap_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x38b4817c rq_flush_dcache_pages -EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38ed8969 sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0x391271f5 ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0x392c767b devm_mdiobus_alloc_size -EXPORT_SYMBOL_GPL vmlinux 0x392fe739 look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0x39441f43 cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x395249b5 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x39597d25 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x397716e7 __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0x3990bad0 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0x39ad989b pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0x39b5e431 led_init_core -EXPORT_SYMBOL_GPL vmlinux 0x39bbc5e0 pci_fixup_irqs -EXPORT_SYMBOL_GPL vmlinux 0x39c5253e kvm_write_guest_cached -EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current -EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module -EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0x3a360683 dma_buf_kunmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0x3a3b9a48 pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x3a4fcd9f thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a76a7bc of_pci_find_msi_chip_by_node -EXPORT_SYMBOL_GPL vmlinux 0x3a855d3f regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0x3a942697 acpiphp_register_attention -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3aaf4303 gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3acef81a device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x3ad0e201 scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x3ae9fe78 regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x3aeac4f7 of_property_read_string_helper -EXPORT_SYMBOL_GPL vmlinux 0x3af48712 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x3b1552fc ata_eh_qc_retry -EXPORT_SYMBOL_GPL vmlinux 0x3b1bf1d2 dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0x3b547bc9 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x3b600d3e tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x3b7b7dea devres_release -EXPORT_SYMBOL_GPL vmlinux 0x3b92b1eb tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x3b99bb1e ping_close -EXPORT_SYMBOL_GPL vmlinux 0x3ba3ffaa mmu_notifier_unregister_no_release -EXPORT_SYMBOL_GPL vmlinux 0x3bbe4c3b ata_acpi_gtm_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x3bd682d5 _gpiochip_irqchip_add -EXPORT_SYMBOL_GPL vmlinux 0x3bf255f3 __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x3bfa729c unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x3c0ddf02 max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0x3c39d98d rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0x3c4448c6 virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x3c6ac511 init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0x3c7a8d48 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x3c831441 arm_check_condition -EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag -EXPORT_SYMBOL_GPL vmlinux 0x3c940549 xenbus_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x3ca09268 irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0x3ca57560 fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0x3cbc42e4 dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3ce554f6 pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x3cf8a054 xen_swiotlb_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x3d0a6fd7 bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0x3d0c1b94 pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0x3d107969 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x3d226cd9 platform_device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0x3d293196 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x3d2f0e98 validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x3d319f5f cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0x3d3273b1 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d5f392d acpi_os_unmap_memory -EXPORT_SYMBOL_GPL vmlinux 0x3d64abc6 hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x3d69fd20 of_get_regulator_init_data -EXPORT_SYMBOL_GPL vmlinux 0x3d7c056c power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x3d7ea99a gnttab_grant_foreign_transfer -EXPORT_SYMBOL_GPL vmlinux 0x3d84507b mpc8xxx_spi_tx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x3d91617c fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0x3da67a23 fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x3db04d3b debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0x3db3e468 devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match -EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab -EXPORT_SYMBOL_GPL vmlinux 0x3dcdfd3e debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3dfb40e0 fsnotify -EXPORT_SYMBOL_GPL vmlinux 0x3dfc3566 device_register -EXPORT_SYMBOL_GPL vmlinux 0x3dfc436e percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x3dff89ba iommu_present -EXPORT_SYMBOL_GPL vmlinux 0x3e1897cf ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0x3e1f72e0 kvm_vcpu_cache -EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x3e3e91ed __blk_put_request -EXPORT_SYMBOL_GPL vmlinux 0x3e57e5bc ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched -EXPORT_SYMBOL_GPL vmlinux 0x3e634137 regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e7e4e1d regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x3e7fdb5f transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3e90ebee rtc_irq_set_freq -EXPORT_SYMBOL_GPL vmlinux 0x3e9f1a02 device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x3ea4ac05 ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x3eb8b893 dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0x3ebccc48 xenbus_dev_error -EXPORT_SYMBOL_GPL vmlinux 0x3ec1febf fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0x3edb2911 relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0x3edf2c69 ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x3ef326dc devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x3ef4c814 extcon_get_cable_state -EXPORT_SYMBOL_GPL vmlinux 0x3ef65728 tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x3ef884a0 of_irq_get -EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0x3f01632e request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0x3f0ab050 kvm_io_bus_write -EXPORT_SYMBOL_GPL vmlinux 0x3f108a3a led_trigger_show -EXPORT_SYMBOL_GPL vmlinux 0x3f172496 ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0x3f1b8845 thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x3f252ece device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x3f31f978 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x3f3fce18 nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0x3f5cb3e7 register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x3f6dbae5 br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0x3f804fde amba_ahb_device_add_res -EXPORT_SYMBOL_GPL vmlinux 0x3f84d4c9 gnttab_release_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x3f896171 register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x3f932de0 usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x3f9574ba proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0x3fb4426f cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0x3fb579fb gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x3fc9a0e9 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x3fe66323 hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release -EXPORT_SYMBOL_GPL vmlinux 0x40214b32 fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0x402760c2 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0x40280eae irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0x402d5c03 device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources -EXPORT_SYMBOL_GPL vmlinux 0x40685dcc __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x409e1611 usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0x40a193de find_symbol -EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x40dbc442 hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x40ef6e16 to_of_pinfo -EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x40f371c5 regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0x413c46e0 bio_clone_mddev -EXPORT_SYMBOL_GPL vmlinux 0x4154a5b9 irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x415c5c4b platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0x4179ad21 pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x41899c42 ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0x41bb4de8 ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0x41cbecb1 regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x41f6a755 dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x42028126 file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x4203e4b4 kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0x4213a51a efivar_entry_set_safe -EXPORT_SYMBOL_GPL vmlinux 0x422f254a shmem_add_seals -EXPORT_SYMBOL_GPL vmlinux 0x423ff4ac pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done -EXPORT_SYMBOL_GPL vmlinux 0x425fd0f7 dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags -EXPORT_SYMBOL_GPL vmlinux 0x42647725 regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x426e380a skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x427de547 pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x428a4ff4 bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x428ba3b9 __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x42921e7d virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x42bbef73 phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0x42c0f9c1 rhashtable_insert_rehash -EXPORT_SYMBOL_GPL vmlinux 0x42d79225 device_create_vargs -EXPORT_SYMBOL_GPL vmlinux 0x42ddd431 kern_mount_data -EXPORT_SYMBOL_GPL vmlinux 0x42efcbe0 dax_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0x4324eb41 extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4337ee4c sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x433e1e5f pinctrl_dev_get_name -EXPORT_SYMBOL_GPL vmlinux 0x433eac8b usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x43557613 rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x43646c7d usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x4396e6db irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key -EXPORT_SYMBOL_GPL vmlinux 0x43ad3fb1 power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x43b466b0 gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL vmlinux 0x43c2a786 __cpu_clear_user_page -EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x43f0b02d hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift -EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x43f9744a spi_setup -EXPORT_SYMBOL_GPL vmlinux 0x4405e49a devm_regmap_init_vexpress_config -EXPORT_SYMBOL_GPL vmlinux 0x4422c1ec pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0x4426ad29 device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0x444eb329 xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x446c1190 crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0x446e3c47 __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x44a793ab HYPERVISOR_grant_table_op -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats -EXPORT_SYMBOL_GPL vmlinux 0x44eb4094 ping_proc_register -EXPORT_SYMBOL_GPL vmlinux 0x44eed9a9 bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x44f77e5f regmap_read -EXPORT_SYMBOL_GPL vmlinux 0x450fb522 kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x45112648 tpm2_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x45331b26 nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0x4545f2c3 usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0x455622a7 scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0x45640c9d __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0x456e73c2 edac_subsys -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x4576337f atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x45789271 ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0x457ecaee tpm_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x45885a1e stmpe_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x45b6937e crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x45b8535d acpi_processor_get_performance_info -EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x45c183f3 xen_swiotlb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x45d31e22 dma_request_slave_channel_reason -EXPORT_SYMBOL_GPL vmlinux 0x45e24242 vchan_init -EXPORT_SYMBOL_GPL vmlinux 0x45e8b1f6 wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x45fa9181 extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x46066e5b perf_pmu_name -EXPORT_SYMBOL_GPL vmlinux 0x461a2e5d clk_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x462f795e spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0x463893e9 crypto_alg_lookup -EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x463f7ce4 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x46512845 ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0x465ccbf8 mpc8xxx_spi_tx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x46878648 ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x468dfeaf __percpu_ida_init -EXPORT_SYMBOL_GPL vmlinux 0x46b1b100 usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x46b7d56f irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0x46bb2326 dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x46be3599 srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0x46f746ed devm_rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4714830a gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0x47187836 usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0x471d9297 skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x471daf86 clk_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x4734121c unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0x47520a75 trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x476d7c30 devm_regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x477461a3 devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0x47784568 amba_apb_device_add -EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x4795582e platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47ac5838 kvm_vcpu_init -EXPORT_SYMBOL_GPL vmlinux 0x47c4c954 zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0x47c4f7fc nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw -EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47eca7b5 acpi_dev_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x47eeccca bus_register -EXPORT_SYMBOL_GPL vmlinux 0x47f4baf6 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0x48156eb8 crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x4817de9d da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x48251e4e get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire -EXPORT_SYMBOL_GPL vmlinux 0x482f23e6 hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x484407e5 usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0x485017fb tc3589x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x48503a14 dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0x4854fc4c gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0x4857724d serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL vmlinux 0x485fb188 dma_buf_vmap -EXPORT_SYMBOL_GPL vmlinux 0x485fb8e5 device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh -EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0x488860a8 da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x48a732c7 led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0x48a7ba2b pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0x48af6dfb kvm_get_dirty_log -EXPORT_SYMBOL_GPL vmlinux 0x48c09761 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0x48c7ae23 init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0x48f38cf2 transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0x48f612e3 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0x49878c23 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x498867b7 of_get_nand_bus_width -EXPORT_SYMBOL_GPL vmlinux 0x498b1d6a page_endio -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x49c00781 sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0x49e0fd21 __cpu_copy_user_page -EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49f26f21 gnttab_map_refs -EXPORT_SYMBOL_GPL vmlinux 0x49feb496 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x4a2c0b34 of_dma_router_register -EXPORT_SYMBOL_GPL vmlinux 0x4a35c1d8 __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data -EXPORT_SYMBOL_GPL vmlinux 0x4a49174f fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0x4a495165 of_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name -EXPORT_SYMBOL_GPL vmlinux 0x4a4db6cd of_console_check -EXPORT_SYMBOL_GPL vmlinux 0x4a61906c ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0x4a71c697 xenbus_map_ring -EXPORT_SYMBOL_GPL vmlinux 0x4a77da71 pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0x4a8e547c __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x4a90160e bprintf -EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0x4ab0b790 devm_acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x4ab904e0 ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0x4ac92fa8 device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x4ae3a7cf xen_xlate_remap_gfn_array -EXPORT_SYMBOL_GPL vmlinux 0x4af4bc13 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4af56a26 free_iova -EXPORT_SYMBOL_GPL vmlinux 0x4b028d36 sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x4b15462e dev_pm_opp_remove -EXPORT_SYMBOL_GPL vmlinux 0x4b3aa99b mnt_clone_write -EXPORT_SYMBOL_GPL vmlinux 0x4b3d997b tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x4b408960 crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0x4b471720 arch_pick_mmap_layout -EXPORT_SYMBOL_GPL vmlinux 0x4b4924e7 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x4b51e79f crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0x4b58d2ce usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0x4b7d4db4 virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0x4b8feb6d spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0x4b98d381 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0x4bbcd384 of_irq_parse_one -EXPORT_SYMBOL_GPL vmlinux 0x4bf55ac7 usb_acpi_set_power_state -EXPORT_SYMBOL_GPL vmlinux 0x4bfe88be pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x4c3f8268 ata_acpi_gtm -EXPORT_SYMBOL_GPL vmlinux 0x4c4e98d6 device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x4c542d14 gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL vmlinux 0x4c5832c4 platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4c645f9e static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0x4c9a576e aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0x4ca08072 nf_register_afinfo -EXPORT_SYMBOL_GPL vmlinux 0x4cab30fb console_drivers -EXPORT_SYMBOL_GPL vmlinux 0x4cb6843b power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0x4ccd79fa dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x4cd684f6 sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x4cded578 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x4ce16796 regmap_field_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x4cefc941 crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d261c2b skb_morph -EXPORT_SYMBOL_GPL vmlinux 0x4d35b2b9 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0x4d3b35cb pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x4d4152c2 blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0x4d444cf1 input_class -EXPORT_SYMBOL_GPL vmlinux 0x4d44c060 gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0x4d463076 kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL vmlinux 0x4d515f1d percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0x4d6a2780 transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x4d740800 tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0x4d76356e bio_alloc_mddev -EXPORT_SYMBOL_GPL vmlinux 0x4da201fc ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x4dc5d7f6 usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0x4dcc9c49 crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0x4dcefc83 crypto_init_spawn2 -EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4ded8510 __srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x4dfa9acf shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x4dfcfc42 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0x4e08ef5e scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0x4e113519 elf_hwcap -EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path -EXPORT_SYMBOL_GPL vmlinux 0x4e2a6532 usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x4e310e0e gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x4e4afe29 blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x4e5f3efa pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x4e6ba079 __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x4e84ceca gov_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x4e933327 pinctrl_add_gpio_ranges -EXPORT_SYMBOL_GPL vmlinux 0x4e9851e5 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4f05925c devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x4f19f3c3 device_attach -EXPORT_SYMBOL_GPL vmlinux 0x4f29d8ec iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0x4f2c7eff __of_genpd_xlate_simple -EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0x4f38e446 ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fda0a60 extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fe28792 nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x4feb2a97 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0x5005b69e btree_update -EXPORT_SYMBOL_GPL vmlinux 0x50079a66 usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi -EXPORT_SYMBOL_GPL vmlinux 0x5051dd71 tps65217_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x505f796b irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5065fc06 iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0x5067809f amba_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x50763593 kvm_vcpu_block -EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test -EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x50b7c2a2 sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x50ba3e3f key_type_user -EXPORT_SYMBOL_GPL vmlinux 0x50dfa437 gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x511ba139 watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x5141c74a shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val -EXPORT_SYMBOL_GPL vmlinux 0x51666b85 handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0x5177afc3 serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x518cd9c6 gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0x5191bd3c efivar_work -EXPORT_SYMBOL_GPL vmlinux 0x51dc9f42 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x51f5dddc ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0x520d72df efivar_entry_size -EXPORT_SYMBOL_GPL vmlinux 0x520e159e pm_genpd_init -EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL vmlinux 0x5210bbac regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x52117049 tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0x5214602e spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x521a612c disk_map_sector_rcu -EXPORT_SYMBOL_GPL vmlinux 0x521d5e9e __sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x522f538b tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x525d78b3 gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x525e1e5d kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0x52761b05 kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL vmlinux 0x5279934c regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x527e46b4 usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x52ad72ea clk_gpio_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0x52b19dba crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x52e5821f trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x52fe05b5 pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x5304b3aa clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x530b2711 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x531267ff relay_close -EXPORT_SYMBOL_GPL vmlinux 0x5329da1b pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x532ad808 inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x53547c6d fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x53614ff1 ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x5393d303 wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x53db29b0 crypto_init_spawn -EXPORT_SYMBOL_GPL vmlinux 0x53e49063 da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0x53edafa5 cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x53ff07db mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x540a6db9 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0x5412c994 ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x541a6c2a nd_blk_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x541e41d8 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 -EXPORT_SYMBOL_GPL vmlinux 0x5445f8db pci_intx_mask_supported -EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time -EXPORT_SYMBOL_GPL vmlinux 0x5484a756 thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x549bb5c9 acpi_dma_request_slave_chan_by_name -EXPORT_SYMBOL_GPL vmlinux 0x54c41e16 ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0x54c9e33c pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0x54f433af ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0x54fb9814 ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x55039ecd ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0x550ad00a ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0x551e9ea2 efivar_entry_find -EXPORT_SYMBOL_GPL vmlinux 0x552a30e9 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x554266ed class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x55496ae6 ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x55526907 xen_features -EXPORT_SYMBOL_GPL vmlinux 0x555dd77b mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0x5566fce7 crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x556bfd46 ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x5589017c ping_proc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x558da13a pm_genpd_syscore_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x55c19269 pwm_enable -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x55ffe1b9 ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0x5606adb5 atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x560dd77c ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x561f3e1a of_overlay_create -EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x564fdb62 tcp_peer_is_proven -EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen -EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map -EXPORT_SYMBOL_GPL vmlinux 0x56947347 dmi_walk -EXPORT_SYMBOL_GPL vmlinux 0x569af38a ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x56cc96cf usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up -EXPORT_SYMBOL_GPL vmlinux 0x56daad1c __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x56ed0ae2 kvm_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x57056b3a acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x570ac4dd alloc_iova -EXPORT_SYMBOL_GPL vmlinux 0x57115120 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0x573f8291 bpf_prog_get -EXPORT_SYMBOL_GPL vmlinux 0x574379e1 ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0x5744867b spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x574af28d spi_alloc_master -EXPORT_SYMBOL_GPL vmlinux 0x575b6aed usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0x575c5f94 execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0x576f85dc efivar_entry_remove -EXPORT_SYMBOL_GPL vmlinux 0x5779d445 xenbus_exists -EXPORT_SYMBOL_GPL vmlinux 0x5787979a gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x578f47a5 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57b4c29d kobject_move -EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags -EXPORT_SYMBOL_GPL vmlinux 0x57cbc0e1 __get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x57f8062c acpi_dev_resource_io -EXPORT_SYMBOL_GPL vmlinux 0x580d442d regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x58110346 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x582097ca regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0x582ba94e tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0x58391673 ref_module -EXPORT_SYMBOL_GPL vmlinux 0x583c231d thermal_notify_framework -EXPORT_SYMBOL_GPL vmlinux 0x58410dfe sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x5848696f pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0x585413d0 crypto_alloc_instance -EXPORT_SYMBOL_GPL vmlinux 0x5862ca0e spi_async -EXPORT_SYMBOL_GPL vmlinux 0x58687be2 key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0x589271b7 __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname -EXPORT_SYMBOL_GPL vmlinux 0x58a1a5a2 of_usb_host_tpl_support -EXPORT_SYMBOL_GPL vmlinux 0x58b8ac1d blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0x58c30e60 swiotlb_map_page -EXPORT_SYMBOL_GPL vmlinux 0x58c3e6c9 __nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0x58c59da9 ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0x58c73781 tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x58d79b64 of_thermal_get_ntrips -EXPORT_SYMBOL_GPL vmlinux 0x58df5a51 usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x58e14f15 HYPERVISOR_event_channel_op -EXPORT_SYMBOL_GPL vmlinux 0x58ea79bb pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0x58febdde xenbus_unmap_ring -EXPORT_SYMBOL_GPL vmlinux 0x590caf27 eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0x590fc013 ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x596c8346 arizona_dev_exit -EXPORT_SYMBOL_GPL vmlinux 0x59a31e82 dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0x59adf137 pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x59ca79b1 xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x59f1eec5 wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0x5a15c5d9 kvm_read_guest_atomic -EXPORT_SYMBOL_GPL vmlinux 0x5a25d02a irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x5a2b1b67 gnttab_free_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x5a2b4722 ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0x5a2bd4d9 pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x5a322201 cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0x5a32a77a is_dock_device -EXPORT_SYMBOL_GPL vmlinux 0x5a401898 acpi_dev_get_resources -EXPORT_SYMBOL_GPL vmlinux 0x5a509bb2 __of_genpd_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x5a6aaf98 regmap_update_bits_check -EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq -EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a81445f sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x5a9fa62d mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0x5aa4b3f3 dev_pm_opp_init_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x5ab78cea ulpi_viewport_access_ops -EXPORT_SYMBOL_GPL vmlinux 0x5ac624d3 platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5acd6c3b verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x5ad0bb2e phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0x5ae79466 percpu_ida_free -EXPORT_SYMBOL_GPL vmlinux 0x5af03a28 gnttab_claim_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x5b10d3b8 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0x5b17f834 pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x5b1b0650 devfreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5b1e15fb __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x5b2f38b5 __init_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0x5b31fc45 wm8350_device_exit -EXPORT_SYMBOL_GPL vmlinux 0x5b447047 devres_get -EXPORT_SYMBOL_GPL vmlinux 0x5b50d3e7 pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0x5b6b6413 nd_region_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x5b6ce4d3 ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0x5b7a8a3a mpc8xxx_spi_tx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0x5b868143 of_get_dma_window -EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5be309d1 clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0x5c08816d amba_apb_device_add_res -EXPORT_SYMBOL_GPL vmlinux 0x5c0b6822 rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0x5c336f21 xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker -EXPORT_SYMBOL_GPL vmlinux 0x5c6c5ff3 xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5cb0288a user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x5cc0063a set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x5ccb0c2c tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x5cccc80b regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0x5cd79a9d sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x5ceb3add ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x5cf74a1c wm8400_block_read -EXPORT_SYMBOL_GPL vmlinux 0x5d0495e7 tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x5d128171 kvm_release_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user -EXPORT_SYMBOL_GPL vmlinux 0x5d280ab1 tps65912_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x5d305066 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0x5d30508a unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x5d313e26 get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0x5d366dec gnttab_cancel_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x5d5fbd9e skcipher_geniv_init -EXPORT_SYMBOL_GPL vmlinux 0x5d60a216 mpc8xxx_spi_rx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x5d87270a efivar_entry_add -EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5dbedb42 filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0x5dcb3f5e kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0x5dcd7160 trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x5dd06477 pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x5ddc6865 ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0x5e18b7da da903x_read -EXPORT_SYMBOL_GPL vmlinux 0x5e35536c of_irq_parse_and_map_pci -EXPORT_SYMBOL_GPL vmlinux 0x5e45234a rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl -EXPORT_SYMBOL_GPL vmlinux 0x5e5c1aed wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5e5c4f1c inet_hash -EXPORT_SYMBOL_GPL vmlinux 0x5e972f47 __mmu_notifier_invalidate_range_start -EXPORT_SYMBOL_GPL vmlinux 0x5ea3aa17 genpd_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0x5eaccf7d ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0x5ebfe273 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x5ef6b840 perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5efa61c9 synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x5f226035 mod_delayed_work_on -EXPORT_SYMBOL_GPL vmlinux 0x5f2e8f73 irq_create_direct_mapping -EXPORT_SYMBOL_GPL vmlinux 0x5f35b809 user_describe -EXPORT_SYMBOL_GPL vmlinux 0x5f48f7e0 put_pid -EXPORT_SYMBOL_GPL vmlinux 0x5f4cf789 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0x5f5b58a7 __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0x5f70caeb cpufreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5f752bd9 posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x5f965324 regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x5f9d90a3 xenbus_probe_devices -EXPORT_SYMBOL_GPL vmlinux 0x5faa1a72 relay_reset -EXPORT_SYMBOL_GPL vmlinux 0x5fab2c58 bgpio_remove -EXPORT_SYMBOL_GPL vmlinux 0x5fc27be9 acpi_dev_irq_flags -EXPORT_SYMBOL_GPL vmlinux 0x5fd59e1f task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0x5ff52bbd inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0x60031d6f debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0x6007c5b8 rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x60125a86 ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0x60188f5a sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0x60442822 phys_to_mach -EXPORT_SYMBOL_GPL vmlinux 0x604613f8 remove_irq -EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush -EXPORT_SYMBOL_GPL vmlinux 0x6055fb25 vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0x60823d86 regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x609002e9 phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL_GPL vmlinux 0x60aa3177 fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0x60aed4c4 netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0x60baa90c stmpe_set_altfunc -EXPORT_SYMBOL_GPL vmlinux 0x60be4bdd pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq -EXPORT_SYMBOL_GPL vmlinux 0x60f276b7 find_vpid -EXPORT_SYMBOL_GPL vmlinux 0x6106ef4b ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x611c1bc9 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0x612eada2 gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0x61351440 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x6139592a pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x6160fe1e crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x6166a6d3 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0x6168a0c6 irq_find_matching_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x616d4208 ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0x616fe226 usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0x61747730 efivar_entry_set -EXPORT_SYMBOL_GPL vmlinux 0x618a8cf3 device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x61b51668 usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0x61b7638b acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x61c3a9bf ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0x61c42ff3 wm8400_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x61cde409 acpi_dev_resource_memory -EXPORT_SYMBOL_GPL vmlinux 0x61dfb4a4 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0x61e5f94b devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x61e6194f gpiochip_add -EXPORT_SYMBOL_GPL vmlinux 0x61fd7c09 kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0x620bf64b cppc_set_perf -EXPORT_SYMBOL_GPL vmlinux 0x620e5098 fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0x6214b16c pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x621f9065 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x623199f7 usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x6253ef01 kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0x625ecb1b devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x6262100b vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x6273c091 regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0x62824d1a kvm_release_page_clean -EXPORT_SYMBOL_GPL vmlinux 0x628fbb6f uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0x629014cf usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0x62966b49 virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0x62bd5a6d __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x62eab2cf udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0x62f2a675 device_rename -EXPORT_SYMBOL_GPL vmlinux 0x62f3f527 crypto_lookup_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x63008809 pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0x630751c5 extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6308ce4a _submit_bh -EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x632a50c6 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0x63301ad9 map_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x6332f942 clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x635d6b7e usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0x636d1e41 page_cache_sync_readahead -EXPORT_SYMBOL_GPL vmlinux 0x638d89aa devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0x639657f8 acpi_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0x63c8f163 devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0x63eab056 pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0x63f14ebe io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x64318593 acpi_dev_filter_resource_type -EXPORT_SYMBOL_GPL vmlinux 0x643923f2 pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched -EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x64847c8f bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0x6490109b register_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x64cd041c of_clk_add_provider -EXPORT_SYMBOL_GPL vmlinux 0x64d6f94d crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0x64e80dfb freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x64ea21ec da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x650d4817 regmap_update_bits_check_async -EXPORT_SYMBOL_GPL vmlinux 0x65268540 pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x6554ede8 dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0x657d614c of_irq_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0x65c3bba9 ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x65c40763 kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65fcb767 led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0x660fba69 pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x6627d1db __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x662bdbfc set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x6644894c usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0x666e86e6 sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0x666fe4e6 pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x667711e1 nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x669a1213 trace_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0x669da1fd kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL vmlinux 0x66a28430 wm5110_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x66ab55c2 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0x66b64440 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x66b8ef91 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x66ca9352 otg_ulpi_create -EXPORT_SYMBOL_GPL vmlinux 0x66d1e10c tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66ff3756 inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0x67275626 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0x672a5ad8 dev_pm_opp_get_opp_count -EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target -EXPORT_SYMBOL_GPL vmlinux 0x673b7225 ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x673eca16 dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy -EXPORT_SYMBOL_GPL vmlinux 0x675281ce __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x67898591 attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0x6789a60e devm_regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x678aa9bb led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x679abc76 acpi_dev_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x67c31c88 key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0x67e9a403 phy_put -EXPORT_SYMBOL_GPL vmlinux 0x680576df md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0x6809855f pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x680d90ce security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0x683c0e25 da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x6841c582 do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x684707c3 dev_pm_opp_get_max_clock_latency -EXPORT_SYMBOL_GPL vmlinux 0x684e0572 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0x685f2acd fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0x688eea86 gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0x68aacf96 mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0x68c20662 clk_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x68d7f725 regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x68fa0e0e fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x6920b42e register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x6920c12a regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval -EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x69243941 bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x69386c3d usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0x6947a748 subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0x6949e109 bpf_prog_realloc -EXPORT_SYMBOL_GPL vmlinux 0x694f967a rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0x698cab26 simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x699f1f80 xen_swiotlb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0x69b47f66 iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x69c65f2e tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0x69e3ea8d rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x69fc72db of_property_read_u32_index -EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a48eabe da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a588c56 tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a893659 cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x6a8ff5b5 clk_debugfs_add_file -EXPORT_SYMBOL_GPL vmlinux 0x6a936feb system_verify_data -EXPORT_SYMBOL_GPL vmlinux 0x6a94b397 serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0x6ab56c79 thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6acad21f acpi_get_cpuid -EXPORT_SYMBOL_GPL vmlinux 0x6afac0fb of_reserved_mem_device_release -EXPORT_SYMBOL_GPL vmlinux 0x6b0601d8 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0x6b0d28c1 usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority -EXPORT_SYMBOL_GPL vmlinux 0x6b19e073 tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0x6b59bd52 ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x6b67a73c __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0x6b6e73c8 pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x6b719e85 acpi_get_psd_map -EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b8eaed7 evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0x6ba8f2ef __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x6bb196b1 devres_add -EXPORT_SYMBOL_GPL vmlinux 0x6bc16640 bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x6bc9a6dc sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0x6bf1b90d dmi_memdev_name -EXPORT_SYMBOL_GPL vmlinux 0x6bfb8791 xen_swiotlb_sync_sg_for_device -EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x6c19f69d alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0x6c264fac disk_part_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data -EXPORT_SYMBOL_GPL vmlinux 0x6c46a101 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c4c6e57 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x6c57629f tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0x6c587acf spi_master_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6c62f2a4 devm_spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6c6ce79f pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0x6c7768bc dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x6c79aa0f wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0x6c81f679 vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions -EXPORT_SYMBOL_GPL vmlinux 0x6c8657ec rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x6c889af8 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0x6c9ab185 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x6c9f7c83 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq -EXPORT_SYMBOL_GPL vmlinux 0x6ccbf857 iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0x6cea45c9 pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d51aab1 regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x6d577be8 of_get_pci_domain_nr -EXPORT_SYMBOL_GPL vmlinux 0x6d5a458d alarm_init -EXPORT_SYMBOL_GPL vmlinux 0x6d9b1ffa ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0x6da96701 rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x6dcdf659 __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0x6dd77f80 da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x6df5ea78 mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy -EXPORT_SYMBOL_GPL vmlinux 0x6e0571fe device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0x6e05bd23 usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x6e13d5f5 regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0x6e222e42 pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x6e44596f blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x6e58ddf0 gnttab_end_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x6e742654 pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e7e6d59 driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0x6e892e44 metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6ead15bb ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x6ead3bfd pwm_set_polarity -EXPORT_SYMBOL_GPL vmlinux 0x6ee07147 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x6ef16ac9 spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0x6f06dcf6 blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6f1033f3 pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x6f36f606 __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x6f3c3ce5 blk_mq_tags_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x6f402ba6 acpi_dev_resource_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x6f40cce1 module_mutex -EXPORT_SYMBOL_GPL vmlinux 0x6f433ffd __free_iova -EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto -EXPORT_SYMBOL_GPL vmlinux 0x6f9f82a2 sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x6fa8c6e4 ablkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x6fe45fbf regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0x6ff36644 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0x6ff5fecc cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6ff74084 exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0x7029805b blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x704e9a07 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0x705a1b05 ata_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x705d54a7 pm_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x7064da8b btree_insert -EXPORT_SYMBOL_GPL vmlinux 0x70752f28 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0x70a789a2 net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated -EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70eadf54 of_usb_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x70f74485 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x711b19fd subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0x711eaeb5 pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0x7146c8b7 wait_for_tpm_stat -EXPORT_SYMBOL_GPL vmlinux 0x7146ed13 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x7164fde0 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x716d1c7e param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x71910e39 device_add -EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71a4ef4d of_clk_del_provider -EXPORT_SYMBOL_GPL vmlinux 0x71b70328 rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71c53052 sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab -EXPORT_SYMBOL_GPL vmlinux 0x71e2cb5c ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x72135176 regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0x72171cdc netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x72216955 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x7258b99a __of_genpd_add_provider -EXPORT_SYMBOL_GPL vmlinux 0x7263eac0 regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x728bec69 xenbus_dev_remove -EXPORT_SYMBOL_GPL vmlinux 0x72a4a8bc kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x72b4e094 page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0x72cc277d led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0x72d13235 clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x72e0da2c spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0x72e84681 pwm_put -EXPORT_SYMBOL_GPL vmlinux 0x7300418b gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x73013896 xenbus_printf -EXPORT_SYMBOL_GPL vmlinux 0x7318d1a9 gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0x733ec849 pcc_mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x734053a2 lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x7350a1f6 pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x735cbc59 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x7369a3b5 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73b10fe3 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL vmlinux 0x73b5ab26 cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x73d68063 __dax_pmd_fault -EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x73eed33f regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0x73fa2112 inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0x74235b35 sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x74650605 blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x746f1165 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0x74936138 __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0x7494876d skcipher_geniv_exit -EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74f22cf3 of_display_timings_exist -EXPORT_SYMBOL_GPL vmlinux 0x7505fcdd crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 -EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x7525b8bc regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0x753c5d34 blkdev_write_iter -EXPORT_SYMBOL_GPL vmlinux 0x7553224a of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0x7555863a tcp_fetch_timewait_stamp -EXPORT_SYMBOL_GPL vmlinux 0x757b49d2 kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x7583f64b cpufreq_governor_dbs -EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x758f8dd2 usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only -EXPORT_SYMBOL_GPL vmlinux 0x759aa4b8 xen_swiotlb_set_dma_mask -EXPORT_SYMBOL_GPL vmlinux 0x75cb33d0 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x75e07e45 pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0x75ed4314 subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x762fb47d mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x7642d435 regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x76444ca4 iommu_map -EXPORT_SYMBOL_GPL vmlinux 0x764ea112 cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7693cdcb acpi_create_platform_device -EXPORT_SYMBOL_GPL vmlinux 0x76a616fc ata_acpi_stm -EXPORT_SYMBOL_GPL vmlinux 0x76c3ebb4 tc3589x_block_write -EXPORT_SYMBOL_GPL vmlinux 0x76d5f292 cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x76e3ad97 virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0x76ea35d4 dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x76fb02a3 power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x771b92a0 bus_find_device_by_name -EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x775bfa7f sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0x77743f43 add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77bc251e xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0x77d2376b inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x77ec8763 platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x77f82a1e trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0x7808b2e4 gnttab_foreach_grant_in_range -EXPORT_SYMBOL_GPL vmlinux 0x780a00ee crypto_blkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x780e53bc pci_hp_change_slot_info -EXPORT_SYMBOL_GPL vmlinux 0x78248ca7 ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x7828e50a register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x784498cf xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x787a5fbb __blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0x787bf987 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x788dfdf8 dax_fault -EXPORT_SYMBOL_GPL vmlinux 0x7899c1f7 usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0x78b4ecfc dax_pmd_fault -EXPORT_SYMBOL_GPL vmlinux 0x78b56c53 i2c_generic_gpio_recovery -EXPORT_SYMBOL_GPL vmlinux 0x78cc5bec hugetlb_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x78dd5d9a da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0x78fc93cb pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off -EXPORT_SYMBOL_GPL vmlinux 0x79457967 init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x79852264 acpi_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0x798ba580 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x79a7645e blkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x79bc09b5 ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0x79c78bbe regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x7a01bebe stmpe_block_write -EXPORT_SYMBOL_GPL vmlinux 0x7a1c6173 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x7a43505d ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0x7a4abc49 dev_pm_opp_enable -EXPORT_SYMBOL_GPL vmlinux 0x7a5326c6 dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x7a5682dc driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x7a59bb8e relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x7a5b1d31 gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0x7aa64803 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL vmlinux 0x7ac571ff sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0x7ac8e5b0 acpi_gsi_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x7ae136f7 xenbus_dev_changed -EXPORT_SYMBOL_GPL vmlinux 0x7b06b9a5 blkg_print_stat_bytes -EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x7b11130e pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0x7b18ae3c acpi_cppc_processor_probe -EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set -EXPORT_SYMBOL_GPL vmlinux 0x7b2163bd HYPERVISOR_tmem_op -EXPORT_SYMBOL_GPL vmlinux 0x7b452fb6 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x7b536a0c acpi_driver_match_device -EXPORT_SYMBOL_GPL vmlinux 0x7b5a05a3 blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0x7b6a5389 shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x7b70ed5c pm_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0x7b7bbfb1 spi_master_resume -EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7b9da505 __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x7bbc1060 msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0x7bc396e0 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0x7c004e17 user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0x7c0f3367 iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0x7c147be2 __atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x7c1722f6 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0x7c1935ea regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x7c1ad650 sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0x7c322808 crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x7c6407f6 crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0x7c66206c uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x7c73b53c ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0x7c741b7c of_get_videomode -EXPORT_SYMBOL_GPL vmlinux 0x7c7992e3 rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x7c8123b1 init_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7c9ca74d irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0x7ca170eb __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x7cbc632d usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0x7cd1e559 of_get_fb_videomode -EXPORT_SYMBOL_GPL vmlinux 0x7cd4f301 pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7cd8c6e5 trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0x7ce949e0 device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cedf677 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x7cee0b0f devm_regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x7cf6985b usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0x7cf8b35a i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d1b219a usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x7d4aedf2 led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x7d4bc13c dma_buf_kmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d64f63b relay_open -EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7dabddb0 ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x7db7a991 xen_unmap_domain_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0x7dc9ca7c acpi_kobj -EXPORT_SYMBOL_GPL vmlinux 0x7dca0518 HYPERVISOR_multicall -EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7de44cd1 blk_mq_request_started -EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0x7df5d8b6 skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x7e1dd2b7 rtc_irq_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7e3325c5 cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x7e5d646a raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e8fdc3e spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0x7ea1a2bc probe_kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x7ea7b67f blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x7ec2d83f devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0x7ec6b97c spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0x7ec7348d regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x7ed2f374 usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0x7eee749d i2c_lock_adapter -EXPORT_SYMBOL_GPL vmlinux 0x7f13d491 pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x7f18f17f irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature -EXPORT_SYMBOL_GPL vmlinux 0x7f4c39bc dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f8dd207 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7f90228f pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x7fa43937 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0x7fbbd831 of_gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7fc4fd2e platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x7fe505d2 of_fixed_clk_setup -EXPORT_SYMBOL_GPL vmlinux 0x7fec85e5 gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x7fed6038 dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0x7feda40e posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0x803fa408 dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x806b7b84 rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x807191fb gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x80a2c7b9 pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80e8e978 pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0x80f21d71 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x80fd94c2 xen_swiotlb_sync_sg_for_cpu -EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x8118eb39 pci_get_hp_params -EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x8120f0e9 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0x8129172a tps65912_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x81359901 of_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x813d257f serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x8143b386 __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0x8152e111 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x8162427e bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0x8168bcde pskb_put -EXPORT_SYMBOL_GPL vmlinux 0x81d224b5 ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0x81d38425 kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0x81ea1bf3 thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0x820e8a37 usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x822c2059 device_show_int -EXPORT_SYMBOL_GPL vmlinux 0x8241382f ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0x8273c5b1 bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0x8291382b blocking_notifier_chain_cond_register -EXPORT_SYMBOL_GPL vmlinux 0x829af5ea debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0x82b5b016 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0x82c226cf of_platform_default_populate -EXPORT_SYMBOL_GPL vmlinux 0x82d01104 kvm_irq_has_notifier -EXPORT_SYMBOL_GPL vmlinux 0x82d0abb6 device_init_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82e745ef debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0x82f057ba tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x82f53e0b cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0x82f8dc34 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0x82f967b1 pin_is_valid -EXPORT_SYMBOL_GPL vmlinux 0x830c7ea9 gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0x832cfd6b eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0x8346aac2 policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0x8361d4e0 ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0x83914f42 elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0x83c3805e dev_pm_opp_of_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x83cce2de bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0x83f0cbdf regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0x84368bed __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x843a38d7 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge -EXPORT_SYMBOL_GPL vmlinux 0x844d59b6 fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x849775b8 dummy_con -EXPORT_SYMBOL_GPL vmlinux 0x84a51c89 swiotlb_tbl_unmap_single -EXPORT_SYMBOL_GPL vmlinux 0x84a8c4ef ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x84c24e93 vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x84cda450 usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x8505ddec gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x850a8f4b __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x850d1401 sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read -EXPORT_SYMBOL_GPL vmlinux 0x852fbf20 virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0x8542c06e crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x85467dec of_get_nand_on_flash_bbt -EXPORT_SYMBOL_GPL vmlinux 0x85477f0e spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0x854905f2 gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0x85573e10 unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x85606ef6 ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0x85797eb3 gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x858fee3b ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x85b439ea bdev_write_page -EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x85e602df sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x85fa0961 acpi_dev_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod -EXPORT_SYMBOL_GPL vmlinux 0x8647a742 max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x865a0a75 devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x865c687d devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq -EXPORT_SYMBOL_GPL vmlinux 0x8666a7c5 fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x869d461b ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0x869e9511 ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x86a51007 gnttab_end_foreign_transfer -EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x86ffe4c1 ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0x8702afcc regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x8702e548 process_srcu -EXPORT_SYMBOL_GPL vmlinux 0x870961b6 adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x87098231 spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0x870a3ab2 xenbus_map_ring_valloc -EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared -EXPORT_SYMBOL_GPL vmlinux 0x87334d2b ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error -EXPORT_SYMBOL_GPL vmlinux 0x8749f302 usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0x874c5776 regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0x879aec71 devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x88019fc0 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0x88136838 wm8997_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x8838d299 crypto_ahash_type -EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x888dad04 crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0x88961ee9 fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0x88a5285b shash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x88a58527 usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x88e8240f vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0x8900cc39 adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0x891a09a3 pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames -EXPORT_SYMBOL_GPL vmlinux 0x89233095 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x8923411a acpi_subsys_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x892b26a0 set_memory_nx -EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x895321b6 regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0x89549385 devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x8955d8f3 pm_genpd_syscore_poweron -EXPORT_SYMBOL_GPL vmlinux 0x89768634 ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x899da30d acpi_dev_gpio_irq_get -EXPORT_SYMBOL_GPL vmlinux 0x89bacf81 list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x89c3a3e4 mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0x89e31167 crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0x8a0306f9 wm8998_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x8a1888c4 dma_buf_kunmap -EXPORT_SYMBOL_GPL vmlinux 0x8a3b727c pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0x8a3c4c09 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode -EXPORT_SYMBOL_GPL vmlinux 0x8a559846 gnttab_setup_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod -EXPORT_SYMBOL_GPL vmlinux 0x8a69a131 crypto_larval_lookup -EXPORT_SYMBOL_GPL vmlinux 0x8a78989f irq_from_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x8aaafe17 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0x8ab1a0e8 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8ae56974 xenbus_read_otherend_details -EXPORT_SYMBOL_GPL vmlinux 0x8b03c71a __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x8b04668e bind_interdomain_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b3ff5a9 pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0x8b616408 led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0x8b79a995 driver_find -EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x8b83569d device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x8b964ec4 blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0x8ba5afe9 HYPERVISOR_memory_op -EXPORT_SYMBOL_GPL vmlinux 0x8bcf28a8 unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x8bdb4864 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0x8be373be tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x8be5d9ad iommu_domain_window_disable -EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c06a108 xenbus_transaction_start -EXPORT_SYMBOL_GPL vmlinux 0x8c0784b4 regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0x8c3f3aa8 tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0x8c601ac9 ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status -EXPORT_SYMBOL_GPL vmlinux 0x8c659b6c btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c9617fd usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x8c9955a8 kvm_clear_guest -EXPORT_SYMBOL_GPL vmlinux 0x8ca17bdc acpi_initialize_hp_context -EXPORT_SYMBOL_GPL vmlinux 0x8ca1a20a user_update -EXPORT_SYMBOL_GPL vmlinux 0x8ca1e204 percpu_ida_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8cae54b5 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8ccc0b10 debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params -EXPORT_SYMBOL_GPL vmlinux 0x8cd9e1af __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x8cea765f memalloc_socks -EXPORT_SYMBOL_GPL vmlinux 0x8cef1a5d of_pci_msi_chip_add -EXPORT_SYMBOL_GPL vmlinux 0x8d1bc26a reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d5ada3a tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x8d845c18 netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8d9fa235 acpi_os_map_iomem -EXPORT_SYMBOL_GPL vmlinux 0x8da01274 kvm_get_pfn -EXPORT_SYMBOL_GPL vmlinux 0x8dbf7aaa privcmd_call -EXPORT_SYMBOL_GPL vmlinux 0x8e0f8b93 ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0x8e100db0 xen_remap_domain_gfn_array -EXPORT_SYMBOL_GPL vmlinux 0x8e1cd06f kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL vmlinux 0x8e2b25c2 videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x8e35afe5 skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x8e6126dd mmput -EXPORT_SYMBOL_GPL vmlinux 0x8e80399f xen_swiotlb_dma_mapping_error -EXPORT_SYMBOL_GPL vmlinux 0x8e963a6e crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x8ea4cac7 watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x8eab694e tasklet_hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x8eac5cce xen_dbgp_external_startup -EXPORT_SYMBOL_GPL vmlinux 0x8ebfe4da l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0x8ec951ca thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8ed494ac dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f15f778 tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0x8f1774c7 blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0x8f397e1e flush_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0x8f460f8f scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0x8f60da41 component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0x8f6695a2 get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8f7e2559 dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0x8f8881cf disk_part_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x8f90088b securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x8f97f770 posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8faac947 clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x8fb94cbb raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x8fd1e9e0 efivars_register -EXPORT_SYMBOL_GPL vmlinux 0x90046d0c ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0x9009602a acpi_bus_get_ejd -EXPORT_SYMBOL_GPL vmlinux 0x901f6175 kvm_clear_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x90297489 lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x903bb65b acpi_dev_resource_ext_address_space -EXPORT_SYMBOL_GPL vmlinux 0x9049a062 of_reconfig_get_state_change -EXPORT_SYMBOL_GPL vmlinux 0x9058d81e gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x90a8cc7a of_irq_find_parent -EXPORT_SYMBOL_GPL vmlinux 0x90b763f1 HYPERVISOR_console_io -EXPORT_SYMBOL_GPL vmlinux 0x90caca42 cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0x90cfef7a devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x90f5ba7c pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x9122fb7c pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0x913a908a usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0x913aaaf2 fib_select_path -EXPORT_SYMBOL_GPL vmlinux 0x914c8537 wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0x9152fab5 blkcipher_aead_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x915796f3 irq_of_parse_and_map -EXPORT_SYMBOL_GPL vmlinux 0x915b7a3c sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x915d23bf smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x917dc828 securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x9184dff2 blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0x91891a36 pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x918e0f95 sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0x9195b1e3 devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x91a6e851 of_clk_parent_fill -EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91cad57d pci_bus_sem -EXPORT_SYMBOL_GPL vmlinux 0x91cb39a6 crypto_givcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x91ce475f simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0x91f0c992 __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x91f5fdcd usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0x920aacca nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x920f3c29 ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x922af470 tps65217_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x92356e56 ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x92533245 powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0x926f3d00 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x9275939e arizona_set_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x927df400 use_mm -EXPORT_SYMBOL_GPL vmlinux 0x928f7a33 invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0x92d6edc0 debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x9312d80e evtchn_put -EXPORT_SYMBOL_GPL vmlinux 0x931944fb wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x93321f61 stmpe_disable -EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x939b7bd4 regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x93aee187 mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x93b95fa4 xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0x93e0fe0e nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0x93f87250 ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0x94124f8a dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event -EXPORT_SYMBOL_GPL vmlinux 0x944cf193 skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x94992439 platform_bus -EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x94cc6713 of_fixed_factor_clk_setup -EXPORT_SYMBOL_GPL vmlinux 0x94e62d2e __set_phys_to_machine_multi -EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop -EXPORT_SYMBOL_GPL vmlinux 0x94fe4aa5 pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0x94fed04c __pci_complete_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x95247d41 ata_eh_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x9561eea1 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x956deaa2 sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0x957a4e56 dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0x95828c8c dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95ca7e75 dio_end_io -EXPORT_SYMBOL_GPL vmlinux 0x95cc7fb6 cpufreq_frequency_table_target -EXPORT_SYMBOL_GPL vmlinux 0x95e84380 inet_csk_compat_getsockopt -EXPORT_SYMBOL_GPL vmlinux 0x96078637 spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0x9612cd5e wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x9625e652 klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x962a8600 reserve_iova -EXPORT_SYMBOL_GPL vmlinux 0x9639edeb gpiochip_remove_pin_ranges -EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x9648de3e md_run -EXPORT_SYMBOL_GPL vmlinux 0x964add15 xenbus_scanf -EXPORT_SYMBOL_GPL vmlinux 0x964d5c39 acpi_os_map_memory -EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x966d8e75 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0x967ad385 irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0x969530e5 device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x96aa8cd9 extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x96b0ec66 stmpe_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x96f7afbc i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0x97046d95 ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x9705a0ba __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x9753fb19 inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x9788bb68 gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x97a97106 gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x97aa0379 fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0x97c76b3a devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x97ccfe9b scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0x97d0f57f fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97fc752a bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0x97fc7c08 pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0x98220a79 sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x982bdbfd pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x983fe89f extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x985be06d nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0x986d4463 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x9879883c ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x98821c26 smpboot_register_percpu_thread_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x988ed85d set_memory_x -EXPORT_SYMBOL_GPL vmlinux 0x989e8973 pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0x98a2cdc5 kvm_get_kvm -EXPORT_SYMBOL_GPL vmlinux 0x98c2c19a of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x98d704e8 task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x98dcec5c max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x98de812d locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0x98ec216a tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0x98f1dd0e regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0x98f9f73d fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x98fb8c0a uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on -EXPORT_SYMBOL_GPL vmlinux 0x9902d136 find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0x9913d999 da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x992aa2a1 dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x994d3102 usb_string -EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x9970231c gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x9973add9 __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range -EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x99869513 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0x99ba91f8 blk_queue_dma_drain -EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x99c2e667 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0x99c56a09 xenbus_unmap_ring_vfree -EXPORT_SYMBOL_GPL vmlinux 0x99cd7906 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x99d473db __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0x9a06872d ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a306a20 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0x9a4c0639 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0x9a7cd2e5 event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck -EXPORT_SYMBOL_GPL vmlinux 0x9a923583 usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x9abf1b45 crypto_unregister_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9acb3c59 pinctrl_force_default -EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9af3d46a vcpu_load -EXPORT_SYMBOL_GPL vmlinux 0x9b033355 __securityfs_setup_d_inode -EXPORT_SYMBOL_GPL vmlinux 0x9b067bfa regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x9b26534b regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x9b34706c debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0x9b364658 regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0x9b5f6b40 regmap_field_write -EXPORT_SYMBOL_GPL vmlinux 0x9b6a8dd4 acpi_gpiochip_free_interrupts -EXPORT_SYMBOL_GPL vmlinux 0x9b6b58c9 hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x9b859f50 clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0x9b8edb16 power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9b945f35 pinconf_generic_dt_subnode_to_map -EXPORT_SYMBOL_GPL vmlinux 0x9b991135 inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x9b9a7e47 efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x9bb67d43 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x9bca03ca ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x9bd83434 of_dma_is_coherent -EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9bf1d00d wm5102_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x9c03c0d9 sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0x9c04e08f dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x9c088dfb vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x9c1e8879 pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0x9c2e4b66 acpi_unregister_gsi -EXPORT_SYMBOL_GPL vmlinux 0x9c3c5790 ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0x9c7fb7f7 ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0x9ca0df67 xenbus_switch_state -EXPORT_SYMBOL_GPL vmlinux 0x9cb437bc i2c_new_probed_device -EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9cd98839 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x9cdf40d1 driver_register -EXPORT_SYMBOL_GPL vmlinux 0x9cf31ff8 class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x9cf4dd20 clk_gpio_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x9d06688b register_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0x9d2bc06c perf_trace_buf_prepare -EXPORT_SYMBOL_GPL vmlinux 0x9d35b315 ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0x9d3850e1 gnttab_alloc_grant_references -EXPORT_SYMBOL_GPL vmlinux 0x9d4c5abc regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0x9d508e85 usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0x9d90bfa0 crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0x9d98c678 ping_err -EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported -EXPORT_SYMBOL_GPL vmlinux 0x9dbbccca usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x9dd5a523 nl_table -EXPORT_SYMBOL_GPL vmlinux 0x9ddb4d84 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0x9dee5a55 ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0x9df21beb aead_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0x9e040889 efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0x9e16f047 blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x9e183f13 wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0x9e1d3e31 fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0x9e265687 con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0x9e3bd650 acpi_unbind_one -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e61ddc9 btree_init -EXPORT_SYMBOL_GPL vmlinux 0x9ec76671 blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ee57548 cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x9ef1ed93 crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0x9ef25ca0 acpi_ec_remove_query_handler -EXPORT_SYMBOL_GPL vmlinux 0x9ef7dfda btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0x9ef97ba5 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0x9ef9c9f0 ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x9efb2382 pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0x9f221c2e blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x9f3ae623 ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0x9f3e6587 kvm_is_visible_gfn -EXPORT_SYMBOL_GPL vmlinux 0x9f517986 HYPERVISOR_hvm_op -EXPORT_SYMBOL_GPL vmlinux 0x9f5f3306 of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9f71e465 kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL vmlinux 0x9f7dadbe kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0x9f991c59 ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0x9fb1b933 ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fe0d75b serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x9fe8f067 desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9ff39a0b wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0x9ff50d96 scsi_device_from_queue -EXPORT_SYMBOL_GPL vmlinux 0xa012e575 i2c_new_dummy -EXPORT_SYMBOL_GPL vmlinux 0xa014a6ac trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0xa016c3f5 xen_swiotlb_sync_single_for_device -EXPORT_SYMBOL_GPL vmlinux 0xa05df341 ata_do_eh -EXPORT_SYMBOL_GPL vmlinux 0xa083cde3 tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0xa08586f7 usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0xa0e351d9 acpi_subsys_prepare -EXPORT_SYMBOL_GPL vmlinux 0xa0e69b4a split_page -EXPORT_SYMBOL_GPL vmlinux 0xa0feafea ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0xa1043ff4 cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type -EXPORT_SYMBOL_GPL vmlinux 0xa133cfbb debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0xa138ea2c regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xa147e3fa dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0xa1498221 __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0xa17b8e03 fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0xa183f8b2 modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0xa1a382f2 ata_scsi_simulate -EXPORT_SYMBOL_GPL vmlinux 0xa1b752a2 ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0xa1c980a4 find_iova -EXPORT_SYMBOL_GPL vmlinux 0xa1cf5bcb class_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa1da923d devm_acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0xa1f79553 xen_create_contiguous_region -EXPORT_SYMBOL_GPL vmlinux 0xa1fc7574 percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0xa20105ed pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0xa20d775a clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0xa22aa419 debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0xa24397a1 virtqueue_get_used -EXPORT_SYMBOL_GPL vmlinux 0xa2575e42 pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa2718017 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa291d2fe sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0xa2ac5519 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0xa2aff7b3 usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xa2b48d16 btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0xa2b9c993 clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xa2bbf17a cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0xa2c124cf usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0xa2c9f337 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0xa2e2357d blkg_print_stat_bytes_recursive -EXPORT_SYMBOL_GPL vmlinux 0xa30019c3 tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0xa308227c ip_tunnel_get_stats64 -EXPORT_SYMBOL_GPL vmlinux 0xa3154be7 regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xa31691ea xhci_run -EXPORT_SYMBOL_GPL vmlinux 0xa31812b3 pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0xa324fd2a ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xa353fffc xenbus_rm -EXPORT_SYMBOL_GPL vmlinux 0xa35b247a regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0xa37dda3b debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0xa384918b pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa386c029 trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register -EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3b178fc __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3c92bc7 fuse_request_send -EXPORT_SYMBOL_GPL vmlinux 0xa3d3c851 crypto_tfm_in_queue -EXPORT_SYMBOL_GPL vmlinux 0xa3e58789 efivar_validate -EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0xa3e99fc3 debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0xa3fd199f blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0xa42b62f4 rt_mutex_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa44a6b44 bsg_request_fn -EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq -EXPORT_SYMBOL_GPL vmlinux 0xa465799e pinctrl_utils_add_config -EXPORT_SYMBOL_GPL vmlinux 0xa478c1f4 __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0xa481486b mpc8xxx_spi_rx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa488adb3 regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0xa496db4c usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0xa4cba0a2 gfn_to_memslot -EXPORT_SYMBOL_GPL vmlinux 0xa50658a6 skcipher_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa51729d4 raw_seq_open -EXPORT_SYMBOL_GPL vmlinux 0xa534c04c relay_flush -EXPORT_SYMBOL_GPL vmlinux 0xa54a2be3 driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa5724fc7 tc3589x_block_read -EXPORT_SYMBOL_GPL vmlinux 0xa58300ac mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0xa5a65121 acpi_cppc_processor_exit -EXPORT_SYMBOL_GPL vmlinux 0xa5cec443 blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0xa5cee848 phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0xa5d7b4ef to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa5f99794 devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xa60eaacb devm_power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xa618fd2c pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0xa61fd267 irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0xa62892c6 efivar_sysfs_list -EXPORT_SYMBOL_GPL vmlinux 0xa64bbb3a crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0xa663cf2d blkdev_read_iter -EXPORT_SYMBOL_GPL vmlinux 0xa6647139 tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa67307e8 kvm_vcpu_uninit -EXPORT_SYMBOL_GPL vmlinux 0xa68cb88c __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0xa68fd692 perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0xa6ab177b usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6cdc61c sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0xa6d0d38e of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6eb388c of_prop_next_string -EXPORT_SYMBOL_GPL vmlinux 0xa6fa9079 kernfs_path -EXPORT_SYMBOL_GPL vmlinux 0xa716bd15 sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0xa73d621c virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0xa7456cb9 usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0xa74a34ac inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0xa75f7c28 dm_disk -EXPORT_SYMBOL_GPL vmlinux 0xa763de3a dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xa773dea6 crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0xa77ccad1 extcon_update_state -EXPORT_SYMBOL_GPL vmlinux 0xa789349b component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0xa7985328 devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xa79ef700 replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0xa7a82011 ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0xa7afeea8 pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0xa7c05aff perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa7d04abd __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0xa7d15c1c list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0xa801b359 efivar_entry_iter_begin -EXPORT_SYMBOL_GPL vmlinux 0xa81768fb blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0xa850dafc idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa85a0fd4 serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0xa8743264 usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0xa87d1948 nvdimm_bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa88547df perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0xa88649df amba_device_add -EXPORT_SYMBOL_GPL vmlinux 0xa8a402fe component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xa8d2cb78 iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0xa929bf7f phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa9aef2e1 gfn_to_hva_memslot -EXPORT_SYMBOL_GPL vmlinux 0xa9be5388 vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0xa9c11a86 sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0xa9c2e3bb devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9dbbd42 of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9fdc00d unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0xa9fe2bbd fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xaa0f4270 crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0xaa3f609b wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0xaa41a148 cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xaa4b85d2 tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xaa5ca10c sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xaa865af6 of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaac1704d __bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0xaac5595a bus_set_iommu -EXPORT_SYMBOL_GPL vmlinux 0xaae8a602 pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xaaf8b869 virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0xaafd57e3 shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0xab01acbe gnttab_request_free_callback -EXPORT_SYMBOL_GPL vmlinux 0xab02aa9f crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xab1734fd dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0xab27ba9f __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0xab41df1b regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xab46b6f1 sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0xab567d31 percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del -EXPORT_SYMBOL_GPL vmlinux 0xab607262 pstore_register -EXPORT_SYMBOL_GPL vmlinux 0xab62abb2 usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request -EXPORT_SYMBOL_GPL vmlinux 0xab72aeab of_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0xab8ceced gnttab_batch_copy -EXPORT_SYMBOL_GPL vmlinux 0xaba5a522 component_master_del -EXPORT_SYMBOL_GPL vmlinux 0xabab79ed usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xabb7bd40 wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabe94894 sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0xabf4b140 mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xac0985ce blk_queue_flush_queueable -EXPORT_SYMBOL_GPL vmlinux 0xaca47822 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xace21140 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list -EXPORT_SYMBOL_GPL vmlinux 0xacf47a0e ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0xad150a59 __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0xad2e8d95 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0xad36a8ed bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xad3d3ae5 proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0xad496e63 ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xad78f718 shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0xad8271ee mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xad83bce2 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0xad97338c perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0xad984628 irq_create_mapping -EXPORT_SYMBOL_GPL vmlinux 0xadbdf392 pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0xadc006cb led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0xadc916db devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0xae199987 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xae20b550 ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae6e0baf ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0xae764de8 sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae805748 tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0xae81922b of_overlay_destroy_all -EXPORT_SYMBOL_GPL vmlinux 0xaeaa4f49 regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xaefa3f74 rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0xaf16aacb regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit -EXPORT_SYMBOL_GPL vmlinux 0xaf511df1 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0xaf5819a2 __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0xafb07262 __pfn_to_mfn -EXPORT_SYMBOL_GPL vmlinux 0xafc01a86 thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0xafc47e58 i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xafeb572e pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xafff90eb sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0xb00b833e pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0xb01dc880 virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0xb0220ff3 kick_process -EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb03976c9 rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xb043cef4 irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0xb05abb01 ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0xb05bdd56 led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0xb0716e8a add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb0aff57b usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xb0b33050 skb_gso_transport_seglen -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0bce4f0 __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0xb0d4074f tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0xb0ed478b __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0xb1211a21 usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0xb1368e45 napi_by_id -EXPORT_SYMBOL_GPL vmlinux 0xb13c680b cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read -EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb159f650 acpi_is_pnp_device -EXPORT_SYMBOL_GPL vmlinux 0xb172ffac efivars_sysfs_init -EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb188ed32 sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0xb1897c48 unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched -EXPORT_SYMBOL_GPL vmlinux 0xb1b370bd __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain -EXPORT_SYMBOL_GPL vmlinux 0xb1c7806b pm_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1eb0fa4 unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xb1ee687e get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0xb20cefeb of_devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xb21239d6 xen_swiotlb_unmap_sg_attrs -EXPORT_SYMBOL_GPL vmlinux 0xb2147493 gnttab_unmap_refs_sync -EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb234fb34 pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0xb260786e __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0xb260bfa5 unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xb265bcf3 efivar_entry_set_get_size -EXPORT_SYMBOL_GPL vmlinux 0xb27ef2b3 usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0xb285b8f8 xen_in_preemptible_hcall -EXPORT_SYMBOL_GPL vmlinux 0xb29620b4 to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0xb29d09ac acpi_bind_one -EXPORT_SYMBOL_GPL vmlinux 0xb2c36097 regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xb2dd9029 skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0xb2e3f2f1 crypto_register_pcomp -EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb3310c3e ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy -EXPORT_SYMBOL_GPL vmlinux 0xb365699e register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xb3703fb3 rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0xb373e2d2 input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0xb3a42878 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0xb3b8bd46 ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0xb3d53fc1 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0xb3e5794e usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xb3e8826b usb_phy_generic_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb3fe3bce adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb436becb handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0xb43c242a irq_create_strict_mappings -EXPORT_SYMBOL_GPL vmlinux 0xb43c96ba devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xb46f416f wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0xb483eb96 tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0xb489c93d extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb4912210 of_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xb494c197 percpu_ida_free_tags -EXPORT_SYMBOL_GPL vmlinux 0xb49cf718 sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xb49e2551 usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0xb4a19da1 cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0xb4a66a69 iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xb4b59d58 led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4bbcca6 ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0xb4cac147 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0xb4e14553 gnttab_query_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb506a466 ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0xb50b4f37 gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb5306bac flush_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0xb5311657 public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xb54d2bc4 of_pci_get_devfn -EXPORT_SYMBOL_GPL vmlinux 0xb56f97db led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0xb580b2c7 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0xb582eff2 of_mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0xb5848bae __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited -EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table -EXPORT_SYMBOL_GPL vmlinux 0xb5bf6fd1 rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0xb5c47814 pinconf_generic_dt_node_to_map -EXPORT_SYMBOL_GPL vmlinux 0xb5cc5487 nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb6230f1f gnttab_grant_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0xb6260c25 scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb632930d acpi_register_gsi -EXPORT_SYMBOL_GPL vmlinux 0xb637ff0b da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0xb65066fc ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0xb651d133 tpm2_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xb659680c devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0xb6621443 fuse_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb66421b2 acpi_str_to_uuid -EXPORT_SYMBOL_GPL vmlinux 0xb673e3e7 bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0xb68f91ae i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xb6a03c97 device_find_child -EXPORT_SYMBOL_GPL vmlinux 0xb6a51b69 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb6f4ba8c ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xb72270a2 ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xb73004db anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb7305a4f invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase -EXPORT_SYMBOL_GPL vmlinux 0xb738e229 spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0xb73b740a trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0xb760d9d1 of_dma_configure -EXPORT_SYMBOL_GPL vmlinux 0xb76452de __rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0xb7669923 ata_eh_thaw_port -EXPORT_SYMBOL_GPL vmlinux 0xb77d42fd usb_acpi_power_manageable -EXPORT_SYMBOL_GPL vmlinux 0xb7805aff disk_part_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xb780f106 clear_foreign_p2m_mapping -EXPORT_SYMBOL_GPL vmlinux 0xb7b3de60 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xb7f2aaa9 inet6_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0xb7fc45cc tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0xb8287afd debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xb8332057 gnttab_unmap_refs_async -EXPORT_SYMBOL_GPL vmlinux 0xb84521ff sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xb845e7d5 xenbus_dev_groups -EXPORT_SYMBOL_GPL vmlinux 0xb8529493 mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0xb85ca5ff sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0xb862f2aa pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb865f3b6 __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0xb88aaff8 ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb89b546b spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xb8a890d3 ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0xb8afb061 blk_unprep_request -EXPORT_SYMBOL_GPL vmlinux 0xb8c4e6b1 crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8d19035 dev_pm_opp_of_remove_table -EXPORT_SYMBOL_GPL vmlinux 0xb8d1f25c dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xb8ed85fd iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0xb90726cc of_pci_parse_bus_range -EXPORT_SYMBOL_GPL vmlinux 0xb91076ae iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xb911104a usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address -EXPORT_SYMBOL_GPL vmlinux 0xb92875d6 sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0xb929f4cb gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xb945ace8 __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0xb94a6ebb dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0xb9567e1e __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xb99d5837 xenbus_read -EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb9c1d799 bio_associate_blkcg -EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9d9f99d bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0xb9eed13e devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xba07139f sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0xba0777cd power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0xba10a4de __module_address -EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba36c493 regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0xba389319 tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0xba3f5714 crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0xba5040ca ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xba681c75 i2c_unlock_adapter -EXPORT_SYMBOL_GPL vmlinux 0xbaa9cda3 amba_ahb_device_add -EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbabcf41b mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0xbad282ea srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0xbadd3ce7 balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb21d246 usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0xbb53d1e4 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0xbb55e083 acpi_dev_get_property -EXPORT_SYMBOL_GPL vmlinux 0xbb5a8738 md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0xbb78288d ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0xbbaaf880 irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0xbbb219e9 pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xbbd6e6f8 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0xbbd90162 sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0xbbfcb77d rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0xbc2ac592 devm_led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0xbc316ca7 __blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xbc3ee8fa mddev_init -EXPORT_SYMBOL_GPL vmlinux 0xbc67b1c5 devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc70bc85 stmpe_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xbc8ee0e1 hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbcbcdd2f hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0xbcc3a6f4 devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0xbcc527c2 blk_mq_cancel_requeue_work -EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbce3deac scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0xbce7772e regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0xbcee366c reservation_object_get_fences_rcu -EXPORT_SYMBOL_GPL vmlinux 0xbcf0ae32 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0xbcf0d2af dbs_check_cpu -EXPORT_SYMBOL_GPL vmlinux 0xbcfe1a8a kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0xbd5ccf42 crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0xbd671048 __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0xbd765d89 serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0xbda6c799 xattr_getsecurity -EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0xbdd943e4 uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xbdf8c387 acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xbe0a671a of_pci_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0xbe10e375 perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xbe34cab4 fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0xbe458538 pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0xbe5aa4d6 da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0xbe66fafa dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbeade8f8 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbebcd541 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0xbee9783d reservation_object_wait_timeout_rcu -EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf20f1fc blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0xbf2518e1 platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xbf3f61bf irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0xbf43613e pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0xbf45b8c5 cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0xbf4d5b53 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xbf66d961 blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0xbf7d4329 tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0xbfba22d7 balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfcf74ca regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xbfdc0bbd of_irq_to_resource_table -EXPORT_SYMBOL_GPL vmlinux 0xbfddddcd dev_pm_opp_get_freq -EXPORT_SYMBOL_GPL vmlinux 0xbfe12eb1 syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbfe9d1f1 ata_sff_data_xfer_noirq -EXPORT_SYMBOL_GPL vmlinux 0xbff8a564 wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space -EXPORT_SYMBOL_GPL vmlinux 0xc013048c regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc024a1f5 __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xc03bb8f0 crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0xc04895ba bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xc04b21bd acpi_os_unmap_iomem -EXPORT_SYMBOL_GPL vmlinux 0xc052e6fa virtqueue_get_avail -EXPORT_SYMBOL_GPL vmlinux 0xc05a3421 kvm_vcpu_kick -EXPORT_SYMBOL_GPL vmlinux 0xc0628e66 virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0xc080f1b8 gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc0900fcf acpi_os_get_iomem -EXPORT_SYMBOL_GPL vmlinux 0xc097ef95 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0xc0a9126c devres_find -EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0xc0ea8e03 irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xc0eb325e of_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xc0ee1c2b irq_domain_add_simple -EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc0f3b720 virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0xc14acaea xen_swiotlb_unmap_page -EXPORT_SYMBOL_GPL vmlinux 0xc14c2824 xenbus_probe -EXPORT_SYMBOL_GPL vmlinux 0xc155d91a sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc164642e xenbus_otherend_changed -EXPORT_SYMBOL_GPL vmlinux 0xc17269f0 nd_blk_region_set_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc1dcf0d8 __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0xc1ea24e0 md_ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xc2033cd4 __efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0xc20b76a0 __mmu_notifier_invalidate_range_end -EXPORT_SYMBOL_GPL vmlinux 0xc217b67e clk_register -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc239feb9 ping_hash -EXPORT_SYMBOL_GPL vmlinux 0xc26351f8 bind_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xc27fcaf8 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0xc2a8ddbd clk_register_gpio_gate -EXPORT_SYMBOL_GPL vmlinux 0xc2bd7249 __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0xc2e64179 dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0xc2ed1692 nd_numa_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xc30e21f3 dev_pm_opp_add -EXPORT_SYMBOL_GPL vmlinux 0xc30e7bbb blkg_stat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0xc30fac23 crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0xc32f45a6 posix_timers_register_clock -EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc347a382 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc347c89d fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0xc349845f serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xc352cb02 atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xc355d5ac regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0xc357923c pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0xc357bf91 rhashtable_walk_start -EXPORT_SYMBOL_GPL vmlinux 0xc36b8f61 xenbus_dev_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xc3726c38 usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0xc3779cc8 max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0xc385cb58 perf_num_counters -EXPORT_SYMBOL_GPL vmlinux 0xc38f36d9 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xc39396eb screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0xc3a04506 devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc3cbd8de devm_clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc3eac09c rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0xc42344cb tpm2_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc48f2764 class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xc49a9dd8 rtc_irq_set_state -EXPORT_SYMBOL_GPL vmlinux 0xc4bda7c8 md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0xc4daa619 gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xc4e9e47b percpu_ida_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc52433ba ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0xc52bf28d netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0xc5397da6 xenbus_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xc53c0a3a power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0xc54cd539 fat_detach -EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc57d8430 usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0xc59fa8b5 fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0xc5c31069 usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0xc5cde998 amba_device_put -EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0xc5eb9264 regulator_get -EXPORT_SYMBOL_GPL vmlinux 0xc5ed23ac rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0xc5f6f696 put_device -EXPORT_SYMBOL_GPL vmlinux 0xc601373a elv_register -EXPORT_SYMBOL_GPL vmlinux 0xc6052a46 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc62d06cc __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xc63e7d93 static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xc647ca89 sock_update_netprioidx -EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc67f400a iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6b9368d devm_pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xc6c47524 xen_swiotlb_map_page -EXPORT_SYMBOL_GPL vmlinux 0xc6c98da9 wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xc6cba445 gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xc6da7a0a __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0xc6f701f9 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xc7002ac4 evtchn_make_refcounted -EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put -EXPORT_SYMBOL_GPL vmlinux 0xc708fc8b __efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0xc70e1d00 crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0xc71cb5df devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xc7278816 cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0xc72d1f99 palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xc762dc16 pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc76359b6 __pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xc7694ec5 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xc78aba43 class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7b9dded crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xc7bda5e8 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer -EXPORT_SYMBOL_GPL vmlinux 0xc7dde9d0 ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc82a8fd0 scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0xc8305ab6 usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xc870a254 ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xc87f51db inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0xc8819c5c gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0xc88374cb iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xc8a443fc tpm_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0xc8ae5af7 crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0xc8b5e1fb xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0xc8d17fcc init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0xc8dcddb7 ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0xc8fa5bc6 skcipher_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0xc90a91cb __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xc9341c0c extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0xc9407e9d input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0xc96a8aa0 device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level -EXPORT_SYMBOL_GPL vmlinux 0xc98fc2b8 __blkdev_driver_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xc9b1c154 usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xc9d8babe usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0xc9dc8d46 percpu_up_read -EXPORT_SYMBOL_GPL vmlinux 0xc9e2d1f2 usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc9f78cdb ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xca0cdb03 task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0xca10c2a7 pm_complete_with_resume_check -EXPORT_SYMBOL_GPL vmlinux 0xca33c3e2 percpu_ida_for_each_free -EXPORT_SYMBOL_GPL vmlinux 0xca44ab74 of_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xca4ae557 xenbus_probe_node -EXPORT_SYMBOL_GPL vmlinux 0xca51aaa1 pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xca558d89 dmi_kobj -EXPORT_SYMBOL_GPL vmlinux 0xca5fbbaa acpi_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xca730d51 acpiphp_unregister_attention -EXPORT_SYMBOL_GPL vmlinux 0xca73f58c usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca81ea9a xenbus_transaction_end -EXPORT_SYMBOL_GPL vmlinux 0xca8a65e4 __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0xca8b0fed sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0xca91c902 debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0xca96a663 perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0xcaa5b438 xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcabede22 wakeup_source_drop -EXPORT_SYMBOL_GPL vmlinux 0xcadf5492 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0xcaf9933c __efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0xcb115534 gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb2462bd ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0xcb24bdec ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0xcb3773aa md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0xcb3c704f devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module -EXPORT_SYMBOL_GPL vmlinux 0xcb4eb164 usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0xcb56006b ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0xcb81648e acpi_node_get_property_reference -EXPORT_SYMBOL_GPL vmlinux 0xcb82d01b of_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xcb981192 aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xcbaa3816 __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0xcbb9aed7 crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0xcbdcb740 ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0xcc0b8240 swiotlb_unmap_page -EXPORT_SYMBOL_GPL vmlinux 0xcc167e80 devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0xcc207622 led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0xcc433ff8 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xcc4df464 extcon_unregister_interest -EXPORT_SYMBOL_GPL vmlinux 0xcc66d4c3 dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xcc686107 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcc79aa6a gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule -EXPORT_SYMBOL_GPL vmlinux 0xcc9920c8 of_irq_get_byname -EXPORT_SYMBOL_GPL vmlinux 0xccabbfb4 ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0xccbd4c73 acpi_pci_find_root -EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd8c628 pinctrl_remove_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xcd123d5b acpi_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0xcd23545b devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0xcd2a7d29 sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq -EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs -EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcdadb9f9 of_genpd_del_provider -EXPORT_SYMBOL_GPL vmlinux 0xcdae4e60 max_gen_clk_probe -EXPORT_SYMBOL_GPL vmlinux 0xcdb46c22 fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdbd7f4c regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0xcdc7df30 regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcde4988f lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0xcdf02eea gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0xcdfd2394 usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0xce151a36 for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0xce18df2b kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0xce405071 pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xce543029 __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xce659bc6 ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce7348f2 ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xceafdf85 phy_init -EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0xceb516c2 skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0xceb6be05 udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xcedbbb1d pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcee52877 bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0xcee66e49 serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0xceed8c16 __set_phys_to_machine -EXPORT_SYMBOL_GPL vmlinux 0xceffd917 debugfs_remove_recursive -EXPORT_SYMBOL_GPL vmlinux 0xcf1211e9 of_regulator_match -EXPORT_SYMBOL_GPL vmlinux 0xcf25d2c2 iommu_domain_set_attr -EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain -EXPORT_SYMBOL_GPL vmlinux 0xcf686bb5 bio_trim -EXPORT_SYMBOL_GPL vmlinux 0xcf7d543b yield_to -EXPORT_SYMBOL_GPL vmlinux 0xcfb323ca device_del -EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0xcfcd4664 acpi_bus_trim -EXPORT_SYMBOL_GPL vmlinux 0xcfd251d7 cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0xcfd7a0af acpi_gpiochip_request_interrupts -EXPORT_SYMBOL_GPL vmlinux 0xcfdfad18 ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0xcfdfe4ae acpi_subsys_freeze -EXPORT_SYMBOL_GPL vmlinux 0xcfe028b6 metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0xcfe12ece dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0xcff45452 driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0xd026d518 HYPERVISOR_vcpu_op -EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate -EXPORT_SYMBOL_GPL vmlinux 0xd04a71ce __class_register -EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd068437e unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0xd0b3c300 pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0xd0bada08 register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0c23b66 phy_get -EXPORT_SYMBOL_GPL vmlinux 0xd0cc1008 ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xd0d750c3 btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0xd0efd86b pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0xd0f24b96 queue_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0xd0fd521c crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0xd1068fb5 virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0xd148bdca dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xd16a1cee crypto_alloc_pcomp -EXPORT_SYMBOL_GPL vmlinux 0xd175d927 bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0xd1842217 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0xd191f0e4 devm_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xd1cc294c device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xd1dda478 md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd21c54a6 pwm_disable -EXPORT_SYMBOL_GPL vmlinux 0xd21d1cc0 kvm_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0xd2446d42 __mmu_notifier_invalidate_range -EXPORT_SYMBOL_GPL vmlinux 0xd24c80a1 rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd25205ed hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd2669ead crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd280a1d2 regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0xd2817892 __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xd2ab202f usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xd2b7cce4 wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0xd2bbfd6a devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xd2c71f5b pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xd2ce3ae0 dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0xd2e7403b pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript -EXPORT_SYMBOL_GPL vmlinux 0xd2fdc444 ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd30c9f6b ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0xd329bc74 get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0xd32a46fe md_is_badblock -EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed -EXPORT_SYMBOL_GPL vmlinux 0xd33afd1a alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0xd33d21a4 devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xd37d6c06 pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0xd38319f7 wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0xd384ee2f fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0xd385bf94 usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0xd3967d59 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xd3bb1c35 of_devfreq_cooling_register_power -EXPORT_SYMBOL_GPL vmlinux 0xd3e20cd2 irq_map_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xd3e8e9ad pwm_free -EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd404a937 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xd4366030 regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0xd4487fd5 snprint_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd463caa0 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd49b8f81 usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0xd4ac412c swiotlb_tbl_sync_single -EXPORT_SYMBOL_GPL vmlinux 0xd4bc789c clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0xd4bd66a0 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4c15c5d of_pci_msi_chip_remove -EXPORT_SYMBOL_GPL vmlinux 0xd4caf07b fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0xd4cdcd97 ahash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0xd4ff2354 kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0xd507385c devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xd558ce27 input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd56a937e regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xd56b5f64 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0xd578894e root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd57fc23e regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd5b3eb07 vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh -EXPORT_SYMBOL_GPL vmlinux 0xd6210e52 of_get_nand_ecc_strength -EXPORT_SYMBOL_GPL vmlinux 0xd64da839 nd_blk_region_to_dimm -EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd67a2189 pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0xd68b94b0 simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xd6b3949a kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0xd6b43f4b of_pci_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0xd6d80e75 xenbus_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xd6d9c42e pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0xd6e23924 xenbus_alloc_evtchn -EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0xd7217e57 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0xd72bc747 list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state -EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end -EXPORT_SYMBOL_GPL vmlinux 0xd73d9081 regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd74de873 ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0xd752b636 pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0xd756e9a6 rtc_irq_register -EXPORT_SYMBOL_GPL vmlinux 0xd763000c pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xd792294d klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0xd7ce956f blk_queue_bypass_end -EXPORT_SYMBOL_GPL vmlinux 0xd7d1e158 __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0xd7d4bcbf of_prop_next_u32 -EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0xd7e63416 devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xd833e3c4 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0xd8447049 pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0xd864ccf3 ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0xd8709773 tpm2_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd88ebf7d task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0xd8998175 xenbus_watch_path -EXPORT_SYMBOL_GPL vmlinux 0xd8a329e8 arizona_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0xd8b3a5fb power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xd8b67b31 tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0xd8c91141 wm5102_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd8cc353d adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xd8fcce8f nvdimm_blk_region_create -EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0xd94aa457 display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0xd94e9f70 ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0xd9522100 bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd96d61d3 ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xd9904238 to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0xd993ae33 dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xd9e846a0 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xd9fd25dc virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0xda05fee8 pci_enable_pri -EXPORT_SYMBOL_GPL vmlinux 0xda257eb4 usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xda27b639 regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xda3211d9 blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0xda3e17c4 ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0xda755305 cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp -EXPORT_SYMBOL_GPL vmlinux 0xdaacc153 nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0xdab8d1a6 adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xdabe5751 kvm_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0xdac1ca0e usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0xdac65f23 devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xdadc7de9 copy_reserved_iova -EXPORT_SYMBOL_GPL vmlinux 0xdae187bb devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xdae715e0 videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdb1b8017 dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0xdb3da8b9 phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xdb450c87 crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0xdb57baf6 crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xdb61bad7 kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0xdb65d1cd blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0xdb759992 pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xdb7cedb1 blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb916fd0 trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0xdb91e05c tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0xdb9ff0d9 usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0xdbcb5029 fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xdbcc9135 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0xdbcd793a tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0xdbece484 device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0xdbf394e5 tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdbfa2fa1 crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0xdc039383 pinconf_generic_dump_config -EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall -EXPORT_SYMBOL_GPL vmlinux 0xdc2124ea kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL vmlinux 0xdc2b9d86 acpi_subsys_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc39f757 pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0xdc3c1c21 tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list -EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable -EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdce66513 xenbus_watch_pathfmt -EXPORT_SYMBOL_GPL vmlinux 0xdd075e9e regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0xdd17b0cd ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock -EXPORT_SYMBOL_GPL vmlinux 0xdd186177 dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd3f3698 efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0xdd40bdf3 shmem_get_seals -EXPORT_SYMBOL_GPL vmlinux 0xdd57e2b5 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0xdd8b78dd pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xdd8d4403 usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0xdda3eccd acpi_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0xdda90851 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0xddb6a0ff efivars_kobject -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddc58884 pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0xddef5ac9 acpi_ec_add_query_handler -EXPORT_SYMBOL_GPL vmlinux 0xde1401ed skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0xde2bb38b platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0xde2ceb58 fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xde373d89 regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0xde396b3b ping_seq_fops -EXPORT_SYMBOL_GPL vmlinux 0xde429ea7 usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xde4a3e2f ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0xde6d73ad skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xde73e6bc device_store_int -EXPORT_SYMBOL_GPL vmlinux 0xde838025 device_property_present -EXPORT_SYMBOL_GPL vmlinux 0xde843b93 xenbus_dev_fatal -EXPORT_SYMBOL_GPL vmlinux 0xde9e2403 memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdee3253a clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf156a8f alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0xdf26d633 __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0xdf2c3944 regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xdf3ce270 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0xdf73114d dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0xdf876efc irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xdfab3f86 device_remove_property_set -EXPORT_SYMBOL_GPL vmlinux 0xdfb1e617 pci_reset_bridge_secondary_bus -EXPORT_SYMBOL_GPL vmlinux 0xdfb79567 pci_reset_pri -EXPORT_SYMBOL_GPL vmlinux 0xdfe2d2f2 of_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xdff6a768 rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xe003ad1a acpi_subsys_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name -EXPORT_SYMBOL_GPL vmlinux 0xe00b1f81 regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xe0186110 posix_timer_event -EXPORT_SYMBOL_GPL vmlinux 0xe01f8e69 gpiochip_set_chained_irqchip -EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0xe036be07 mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0xe043f42e devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xe048816d bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0xe050c7a3 ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0xe06374c7 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0xe06856bd wm8997_patch -EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0xe07e0684 led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0xe0949cbf pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0xe0a2d14c ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0xe0a6d288 usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0b87205 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0xe0cb3e7a arizona_dev_init -EXPORT_SYMBOL_GPL vmlinux 0xe0d6c480 regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0xe0d93559 pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0xe0e18cfb __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0xe0e3147c HYPERVISOR_sched_op -EXPORT_SYMBOL_GPL vmlinux 0xe116289a regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0xe12ee3a6 usb_phy_generic_register -EXPORT_SYMBOL_GPL vmlinux 0xe13fec70 shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0xe145bc0f mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe145fe8a dev_pm_opp_get_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe15cfa38 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0xe16bd5e1 kvm_get_dirty_log_protect -EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe17c5f08 wait_on_page_bit_killable_timeout -EXPORT_SYMBOL_GPL vmlinux 0xe1a1c335 splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0xe2141d9a ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0xe2351cb1 component_del -EXPORT_SYMBOL_GPL vmlinux 0xe25163b7 phy_exit -EXPORT_SYMBOL_GPL vmlinux 0xe256ae00 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0xe2772d46 class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength -EXPORT_SYMBOL_GPL vmlinux 0xe29d00e7 user_read -EXPORT_SYMBOL_GPL vmlinux 0xe2ad4525 find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xe2b3d219 irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xe2bb7e39 tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0xe2c23f37 i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0xe2daae29 pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xe33fbf26 xen_xenbus_fops -EXPORT_SYMBOL_GPL vmlinux 0xe3451c80 ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0xe34d34e3 uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0xe362e265 devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0xe37ebb3e task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0xe382cae4 trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0xe3948ff4 acpi_walk_dep_device_list -EXPORT_SYMBOL_GPL vmlinux 0xe39ebb0d cppc_get_perf_ctrs -EXPORT_SYMBOL_GPL vmlinux 0xe3bf5916 trace_buffer_unlock_commit_regs -EXPORT_SYMBOL_GPL vmlinux 0xe3cc8b1b led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0xe3f0a423 kvm_read_guest -EXPORT_SYMBOL_GPL vmlinux 0xe400e992 ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0xe40fd3a0 usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0xe41534ce bind_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0xe422de8c crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe44c81fe __netlink_alloc_skb -EXPORT_SYMBOL_GPL vmlinux 0xe458bfbc i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xe47508c4 ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4994429 leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xe49d20f2 usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0xe4ae32a1 serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0xe4aece97 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0xe4bd2b7b dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto -EXPORT_SYMBOL_GPL vmlinux 0xe4ccf6e3 ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0xe4e0b11a pci_ats_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xe50f6e85 kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL vmlinux 0xe52d97f0 regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0xe52e2aba inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0xe52e5531 bdev_direct_access -EXPORT_SYMBOL_GPL vmlinux 0xe53d056d klist_next -EXPORT_SYMBOL_GPL vmlinux 0xe55a2c33 pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0xe56335ef ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0xe574a391 power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0xe575b277 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe58e8791 tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq -EXPORT_SYMBOL_GPL vmlinux 0xe5b4513a l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe5b53248 xen_dbgp_reset_prep -EXPORT_SYMBOL_GPL vmlinux 0xe5c1199a unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0xe5ce00eb irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0xe5df6ff9 clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0xe5e60e05 pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0xe5f93605 crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0xe6189c59 power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0xe6193b66 dev_pm_opp_free_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0xe6196ffe vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0xe63c37b7 crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0xe6512c5e pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe65f4a46 dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xe66dd5b3 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0xe6aeaf8b fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module -EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen -EXPORT_SYMBOL_GPL vmlinux 0xe6eca503 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xe6f372a8 pci_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data -EXPORT_SYMBOL_GPL vmlinux 0xe6fb8a4b pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0xe71ef4ff kvm_init -EXPORT_SYMBOL_GPL vmlinux 0xe7216340 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0xe743f1c6 dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0xe74f6bac fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0xe762c6b2 phy_create -EXPORT_SYMBOL_GPL vmlinux 0xe768d444 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0xe78849f6 sched_setattr -EXPORT_SYMBOL_GPL vmlinux 0xe78ac1a2 thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0xe78cf0bd rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe7ad7708 xenbus_grant_ring -EXPORT_SYMBOL_GPL vmlinux 0xe7c1fc4e tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0xe7d3244c sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr -EXPORT_SYMBOL_GPL vmlinux 0xe801da41 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe815083e crypto_ablkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe821aa58 ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0xe823d9e1 arizona_of_get_type -EXPORT_SYMBOL_GPL vmlinux 0xe8312f41 of_dma_get_range -EXPORT_SYMBOL_GPL vmlinux 0xe84a3ea5 iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit -EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe8779e4e crypto_create_tfm -EXPORT_SYMBOL_GPL vmlinux 0xe894fd51 blk_queue_flush -EXPORT_SYMBOL_GPL vmlinux 0xe89bd243 ata_sff_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xe8a96073 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0xe8c54464 of_clk_get_parent_count -EXPORT_SYMBOL_GPL vmlinux 0xe8def097 kthread_park -EXPORT_SYMBOL_GPL vmlinux 0xe8f46963 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0xe9104bba __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xe92b0938 xfrm_inner_extract_output -EXPORT_SYMBOL_GPL vmlinux 0xe933af98 of_clk_src_simple_get -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe956cbf6 kallsyms_on_each_symbol -EXPORT_SYMBOL_GPL vmlinux 0xe95d71fd pci_cleanup_aer_uncorrect_error_status -EXPORT_SYMBOL_GPL vmlinux 0xe998f67f fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0xe9acc642 dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0xe9bd8ea9 da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0xe9c2d92e of_resolve_phandles -EXPORT_SYMBOL_GPL vmlinux 0xe9c851b0 __compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9f4d4a8 crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0xe9f6a1c8 ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea29cbe9 devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xea35757a mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xea3d9388 gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0xea50eab7 crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0xea628c20 bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0xea8c6e0a crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xeaa1104a od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0xead43e46 rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xeae26120 bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xeb17ee3f pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0xeb19c90c kill_pid_info_as_cred -EXPORT_SYMBOL_GPL vmlinux 0xeb2798f7 xen_destroy_contiguous_region -EXPORT_SYMBOL_GPL vmlinux 0xeb2eb288 efivar_variable_is_removable -EXPORT_SYMBOL_GPL vmlinux 0xeb434bcf efivars_unregister -EXPORT_SYMBOL_GPL vmlinux 0xeb647d9e xenbus_dev_cancel -EXPORT_SYMBOL_GPL vmlinux 0xeb72b888 gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0xeb780f4e usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0xeb7d183e jump_label_rate_limit -EXPORT_SYMBOL_GPL vmlinux 0xeb840c9b mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0xeb86afe7 securityfs_create_dentry -EXPORT_SYMBOL_GPL vmlinux 0xebaadd5e system_trusted_keyring -EXPORT_SYMBOL_GPL vmlinux 0xebc012d5 gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0xebe55c94 phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xebfc6885 rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0xec0e5c97 serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare -EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del -EXPORT_SYMBOL_GPL vmlinux 0xec6079a8 regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0xec6b5b5c usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0xec82fc5e sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0xecc1eb4d devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0xecd1454c acpi_subsys_suspend -EXPORT_SYMBOL_GPL vmlinux 0xecd1e589 srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xed043f29 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0xed114982 crypto_init_shash_spawn -EXPORT_SYMBOL_GPL vmlinux 0xed47c7f5 pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0xed49faad powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0xed4ed738 serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0xed64fe11 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0xed75d80d pci_intx -EXPORT_SYMBOL_GPL vmlinux 0xed981a16 cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xedbc6f67 gnttab_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0xedcbdc9d syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xedcf8ff8 mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0xedd26dec cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xedf3da1d reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xedfafe48 class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xee29e597 regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0xee2afadc __netpoll_free_async -EXPORT_SYMBOL_GPL vmlinux 0xee4279de of_pci_get_host_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0xee67b1c9 __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible -EXPORT_SYMBOL_GPL vmlinux 0xee77c577 extcon_set_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0xee87a30c gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0xee8cf52e adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0xeec3490c hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0xeec34e4f inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0xeedc74da transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0xeee22cb8 io_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xeee84a16 spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0xeef0fd3e wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xeef8151e crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0xef047e1e pwm_config -EXPORT_SYMBOL_GPL vmlinux 0xef1473b0 pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0xef302581 hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0xef44d027 __put_net -EXPORT_SYMBOL_GPL vmlinux 0xef478479 tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef6d007a sigset_from_compat -EXPORT_SYMBOL_GPL vmlinux 0xef7c7c4c pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0xef8ad295 sched_setscheduler_nocheck -EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0xef9e9d57 xenbus_match -EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefa8a648 transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0xefac4f80 inode_congested -EXPORT_SYMBOL_GPL vmlinux 0xefb625e8 fat_attach -EXPORT_SYMBOL_GPL vmlinux 0xefba951d device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xefbcd352 inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xefe1e91b dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0xeff5c3f4 dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0xf02a1973 cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0xf05b744f blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable -EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xf08072ef max_gen_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0xf080d378 srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf085d167 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0xf096d665 arizona_free_irq -EXPORT_SYMBOL_GPL vmlinux 0xf0a53352 __ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0xf0b3b902 sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0xf0bc14fa regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xf0d0db15 __inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0xf0e24b9c sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xf0f5a4c1 virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0xf1175da8 bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xf1399cae scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0xf13cc64a of_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xf14e4d24 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xf1520437 tps65217_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xf159f9d6 rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0xf1790f16 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key -EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on -EXPORT_SYMBOL_GPL vmlinux 0xf1b633fa max_gen_clk_ops -EXPORT_SYMBOL_GPL vmlinux 0xf1c6786b devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0xf21aec76 devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf237ad7b xenbus_dev_is_online -EXPORT_SYMBOL_GPL vmlinux 0xf23ada58 of_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xf2771d06 gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0xf280d1b7 __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0xf28968cb usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xf2baa4c9 regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xf2d237e2 klist_init -EXPORT_SYMBOL_GPL vmlinux 0xf2d2d381 pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0xf2e2305c fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0xf2eb2bc8 xen_remap_domain_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0xf2faff5f xen_xlate_unmap_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support -EXPORT_SYMBOL_GPL vmlinux 0xf30c24a0 fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf31b3be0 class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf32dba85 of_property_count_elems_of_size -EXPORT_SYMBOL_GPL vmlinux 0xf32fa439 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf33dc43c sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xf3417475 sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0xf3654792 regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf38d8734 sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0xf3a53884 nvdimm_bus_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xf3a92cde blk_queue_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0xf3d16a69 trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0xf3d49d97 arizona_clk32k_disable -EXPORT_SYMBOL_GPL vmlinux 0xf3ec7fee tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0xf3ec9cb7 scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xf3fd6410 __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xf40586eb blkg_print_stat_ios -EXPORT_SYMBOL_GPL vmlinux 0xf40cbb3d usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xf41ed923 seq_release_net -EXPORT_SYMBOL_GPL vmlinux 0xf4230828 do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0xf43e417b handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0xf445fa04 device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0xf44a19ca inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0xf44d524c md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0xf45faf09 usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0xf475a46a nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0xf47dce1e powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0xf4894e02 usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask -EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh -EXPORT_SYMBOL_GPL vmlinux 0xf4a5ff1d dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xf4aa8800 get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0xf4aabe9c fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0xf4b8786d usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xf4d77e66 blk_mq_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0xf5164874 sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0xf52860eb i2c_new_device -EXPORT_SYMBOL_GPL vmlinux 0xf5379771 net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf54cca05 pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf555f614 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0xf5785b42 evtchn_get -EXPORT_SYMBOL_GPL vmlinux 0xf5945bac gnttab_free_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5c6c1fc wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0xf5de22ff dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0xf5f084c0 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0xf5f28b36 inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xf5faaadc debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0xf5fd10b2 uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0xf6036f3e dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xf60f4cc0 part_round_stats -EXPORT_SYMBOL_GPL vmlinux 0xf61dbfad skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0xf64e2d1d pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0xf65e30df cm_notify_event -EXPORT_SYMBOL_GPL vmlinux 0xf67a7490 ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0xf68309af ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0xf688c0c3 extcon_register_interest -EXPORT_SYMBOL_GPL vmlinux 0xf689b346 gfn_to_pfn_prot -EXPORT_SYMBOL_GPL vmlinux 0xf68e0f0d device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0xf69c3c43 dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xf6c57315 crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6cbb896 x509_request_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf6ec00be md_new_event -EXPORT_SYMBOL_GPL vmlinux 0xf6ed60c1 tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xf7016530 xenbus_gather -EXPORT_SYMBOL_GPL vmlinux 0xf70ce02d __kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0xf785e8f2 usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0xf79ad0f5 ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0xf7a2de26 fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xf7a74c4a regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xf7b2070c devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xf7c88f72 ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0xf7cbd27a regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0xf7ddc639 sg_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xf811810f da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0xf81972ce vcpu_put -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf834e554 ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0xf8419ef8 usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xf862be64 __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf86ae1df pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0xf86f48cd __rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf87c20da fuse_request_send_background -EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xf8837687 crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xf894ecc8 security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0xf8997555 get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0xf89cbf73 call_srcu -EXPORT_SYMBOL_GPL vmlinux 0xf8a5fd40 page_cache_async_readahead -EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0xf905e972 md_stop -EXPORT_SYMBOL_GPL vmlinux 0xf90cc693 device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0xf90f2bb0 usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0xf921c86f gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xf9285c87 usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf93aa401 xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf958e2c7 tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0xf967422b HYPERVISOR_xen_version -EXPORT_SYMBOL_GPL vmlinux 0xf96a353c crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0xf9765833 dmi_match -EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xf9f5d2f3 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xf9f85fdf unregister_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xf9fc0911 sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa087406 n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa1eff4c subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start -EXPORT_SYMBOL_GPL vmlinux 0xfa4a1d57 pci_try_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xfa5591fd debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0xfa65cd2f extcon_set_cable_state -EXPORT_SYMBOL_GPL vmlinux 0xfa7bf64b ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0xfa845859 scsi_internal_device_unblock -EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec -EXPORT_SYMBOL_GPL vmlinux 0xfaa92ebb platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0xfacb22fd pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0xfad26c94 __get_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xfaecde7f ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0xfaf47b35 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xfaf57205 stmpe_block_read -EXPORT_SYMBOL_GPL vmlinux 0xfb0047f6 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xfb0c13a4 sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0xfb1586e1 nvdimm_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb4367ba udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xfb5b97e1 nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0xfb645e6b thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0xfb6be717 shash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0xfb6c08df wbc_account_io -EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb70cb33 attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfb798ea7 alloc_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xfb7cf5dc power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0xfb9064af dm_get_rq_mapinfo -EXPORT_SYMBOL_GPL vmlinux 0xfb967968 __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0xfb9cb168 usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0xfba47c07 inet_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0xfba5590c get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbc2b8a7 ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0xfbc75040 gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0xfbd9384e virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0xfbfffff4 dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc0d7027 exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0xfc128699 pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0xfc156157 fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0xfc1c73cd blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0xfc24f5cd regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0xfc25da26 put_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0xfc33900e xenbus_free_evtchn -EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power -EXPORT_SYMBOL_GPL vmlinux 0xfc46a447 pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0xfc563a26 cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0xfc56ab54 clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0xfc6c43d4 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0xfc7b08cf ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0xfc837c32 smpboot_update_cpumask_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0xfcb01769 subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xfcb80b23 cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0xfcfcc0a7 kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL vmlinux 0xfd14d525 mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0xfd51b281 gnttab_end_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack -EXPORT_SYMBOL_GPL vmlinux 0xfd8b7982 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0xfdd10a92 acpi_get_pci_dev -EXPORT_SYMBOL_GPL vmlinux 0xfdeb1912 pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0xfdf41202 crypto_init_ahash_spawn -EXPORT_SYMBOL_GPL vmlinux 0xfe1a0e48 xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0xfe20dff1 free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xfe25c023 component_add -EXPORT_SYMBOL_GPL vmlinux 0xfe3e6e97 ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0xfe44c6cc pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfe9dabfa sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xfeb55e21 genlmsg_new_unicast -EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfede34b4 gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xfef37279 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0xfef7b28e fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xfefc57d8 usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff144cd3 to_nd_blk_region -EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff2d21b6 gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0xff2d94aa nd_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xff3a1f56 pinctrl_utils_dt_free_map -EXPORT_SYMBOL_GPL vmlinux 0xff57da6c regmap_update_bits_async -EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xff67d82c regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0xff7099c8 pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0xff726b17 spi_unregister_master -EXPORT_SYMBOL_GPL vmlinux 0xffb258fc usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0xffb3fb36 usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0xffb4e288 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0xffc4bbf7 usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0xffd8030a tc3589x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xffdf1069 blkg_dev_name -EXPORT_SYMBOL_GPL vmlinux 0xfffc4854 of_fdt_unflatten_tree reverted: --- linux-raspi2-4.4.0/debian.master/abi/4.4.0-89.112/arm64/generic.compiler +++ linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-89.112/arm64/generic.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu/Linaro 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 reverted: --- linux-raspi2-4.4.0/debian.master/abi/4.4.0-89.112/arm64/generic.modules +++ linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-89.112/arm64/generic.modules @@ -1,4392 +0,0 @@ -3c59x -3w-9xxx -3w-sas -3w-xxxx -6lowpan -6pack -8021q -8139cp -8139too -8250_fintek -8250_mid -8255 -8255_pci -8390 -842 -842_compress -842_decompress -88pm800 -88pm805 -88pm80x -88pm80x_onkey -88pm8607 -88pm860x-ts -88pm860x_battery -88pm860x_bl -88pm860x_charger -88pm860x_onkey -9p -9pnet -9pnet_rdma -9pnet_virtio -DAC960 -a100u2w -a3d -a8293 -aacraid -aat2870-regulator -aat2870_bl -ab3100 -ab3100-otp -ablk_helper -ac97_bus -acard-ahci -acecad -acenic -acpi-als -acpi_ipmi -acpi_power_meter -acpiphp_ibm -act200l-sir -act8865-regulator -act_bpf -act_connmark -act_csum -act_gact -act_ipt -act_mirred -act_nat -act_pedit -act_police -act_simple -act_skbedit -act_vlan -actisys-sir -ad2s1200 -ad2s1210 -ad2s90 -ad5064 -ad525x_dpot -ad525x_dpot-i2c -ad525x_dpot-spi -ad5360 -ad5380 -ad5398 -ad5421 -ad5446 -ad5449 -ad5504 -ad5592r -ad5592r-base -ad5593r -ad5624r_spi -ad5686 -ad5755 -ad5764 -ad5791 -ad5933 -ad714x -ad714x-i2c -ad714x-spi -ad7150 -ad7152 -ad7192 -ad7266 -ad7280a -ad7291 -ad7298 -ad7303 -ad7314 -ad7414 -ad7418 -ad7476 -ad7606 -ad7746 -ad7780 -ad7791 -ad7793 -ad7816 -ad7877 -ad7879 -ad7879-i2c -ad7879-spi -ad7887 -ad7923 -ad799x -ad8366 -ad9523 -ad9832 -ad9834 -ad_sigma_delta -adc128d818 -adcxx -addi_apci_1032 -addi_apci_1500 -addi_apci_1516 -addi_apci_1564 -addi_apci_16xx -addi_apci_2032 -addi_apci_2200 -addi_apci_3120 -addi_apci_3501 -addi_apci_3xxx -addi_watchdog -ade7753 -ade7754 -ade7758 -ade7759 -ade7854 -ade7854-i2c -ade7854-spi -adf4350 -adfs -adi -adis16060 -adis16080 -adis16130 -adis16136 -adis16201 -adis16203 -adis16204 -adis16209 -adis16220 -adis16240 -adis16260 -adis16400 -adis16480 -adis_lib -adjd_s311 -adl_pci6208 -adl_pci7x3x -adl_pci8164 -adl_pci9111 -adl_pci9118 -adm1021 -adm1025 -adm1026 -adm1029 -adm1031 -adm1275 -adm8211 -adm9240 -adp5520-keys -adp5520_bl -adp5588-keys -adp5589-keys -adp8860_bl -adp8870_bl -adq12b -ads1015 -ads7828 -ads7846 -ads7871 -adt7310 -adt7316 -adt7316-i2c -adt7316-spi -adt7410 -adt7411 -adt7462 -adt7470 -adt7475 -adt7x10 -adummy -adutux -adv7511 -adv7604 -adv7842 -adv_pci1710 -adv_pci1723 -adv_pci1724 -adv_pci_dio -advansys -adxl34x -adxl34x-i2c -adxl34x-spi -adxrs450 -aes-ce-blk -aes-ce-ccm -aes-ce-cipher -aes-neon-blk -af-rxrpc -af9013 -af9033 -af_alg -af_key -af_packet_diag -affs -ah4 -ah6 -ahci -ahci_ceva -ahci_platform -ahci_qoriq -ahci_xgene -aic79xx -aic7xxx -aic94xx -aim_cdev -aim_network -aim_sound -aim_v4l2 -aio_aio12_8 -aio_iiro_16 -aiptek -aircable -airspy -ak8975 -al3320a -algif_aead -algif_hash -algif_rng -algif_skcipher -alim7101_wdt -altera-ci -altera-stapl -altera_jtaguart -altera_ps2 -altera_tse -altera_uart -alx -am53c974 -amba-pl010 -ambakmi -amc6821 -amd -amd-xgbe -amd5536udc -amd8111e -amdgpu -amplc_dio200 -amplc_dio200_common -amplc_dio200_pci -amplc_pc236 -amplc_pc236_common -amplc_pc263 -amplc_pci224 -amplc_pci230 -amplc_pci236 -amplc_pci263 -ams369fg06 -analog -anatop-regulator -ansi_cprng -anubis -aoe -apbps2 -apds9300 -apds9802als -apds990x -apds9960 -appledisplay -appletalk -appletouch -applicom -aquantia -ar1021_i2c -ar5523 -ar7part -arc-rawmode -arc-rimi -arc4 -arc_emac -arc_ps2 -arc_uart -arcmsr -arcnet -arizona-haptics -arizona-i2c -arizona-ldo1 -arizona-micsupp -arizona-spi -ark3116 -arkfb -arm_big_little -arm_big_little_dt -arm_mhu -arm_scpi -arp_tables -arpt_mangle -arptable_filter -as102_fe -as3711-regulator -as3711_bl -as3722-regulator -as3935 -as5011 -asc7621 -ascot2e -asix -ast -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at24 -at25 -at76c50x-usb -at803x -at86rf230 -ata_generic -ata_piix -atbm8830 -ath -ath10k_core -ath10k_pci -ath3k -ath5k -ath6kl_core -ath6kl_sdio -ath6kl_usb -ath9k -ath9k_common -ath9k_htc -ath9k_hw -ati_remote -ati_remote2 -atl1 -atl1c -atl1e -atl2 -atm -atmel -atmel-flexcom -atmel-hlcdc -atmel_mxt_ts -atmel_pci -atmtcp -atp870u -atusb -atxp1 -aty128fb -atyfb -au0828 -au8522_common -au8522_decoder -au8522_dig -aufs -auo-pixcir-ts -auo_k1900fb -auo_k1901fb -auo_k190x -auth_rpcgss -authenc -authencesn -autofs4 -avmfritz -ax25 -ax88179_178a -axp20x-pek -axp20x-regulator -axp20x_usb_power -axp288_adc -axp288_charger -axp288_fuel_gauge -b1 -b1dma -b1pci -b2c2-flexcop -b2c2-flexcop-pci -b2c2-flexcop-usb -b43 -b43legacy -b44 -bas_gigaset -batman-adv -baycom_par -baycom_ser_fdx -baycom_ser_hdx -bcache -bch -bcm-keypad -bcm-phy-lib -bcm203x -bcm3510 -bcm590xx -bcm590xx-regulator -bcm5974 -bcm63138_nand -bcm7038_wdt -bcm7xxx -bcm87xx -bcm_iproc_tsc -bcma -bcma-hcd -bcmsysport -bd6107 -bdc -bdc_pci -be2iscsi -be2net -befs -belkin_sa -berlin2-adc -bfa -bfs -bfusb -bh1750 -bh1770glc -bh1780gli -binfmt_misc -block2mtd -blocklayoutdriver -blowfish_common -blowfish_generic -bluetooth -bluetooth_6lowpan -bma150 -bma180 -bmc150-accel-core -bmc150-accel-i2c -bmc150-accel-spi -bmc150_magn -bmg160_core -bmg160_i2c -bmg160_spi -bmp085 -bmp085-i2c -bmp085-spi -bmp280 -bna -bnep -bnx2 -bnx2fc -bnx2i -bnx2x -bnxt_en -bonding -bpa10x -bpqether -bq2415x_charger -bq24190_charger -bq24257_charger -bq24735-charger -bq25890_charger -bq27xxx_battery -br2684 -br_netfilter -brcmfmac -brcmnand -brcmsmac -brcmstb_nand -brcmutil -brd -bridge -broadcom -broadsheetfb -bsd_comp -bt878 -btbcm -btcoexist -btintel -btmrvl -btmrvl_sdio -btqca -btrfs -btrtl -btsdio -bttv -btusb -btwilink -bu21013_ts -budget -budget-av -budget-ci -budget-core -budget-patch -c4 -c67x00 -c6xdigio -c_can -c_can_pci -c_can_platform -cachefiles -cadence_wdt -cafe_ccic -cafe_nand -caif -caif_hsi -caif_serial -caif_socket -caif_usb -caif_virtio -camellia_generic -can -can-bcm -can-dev -can-gw -can-raw -cap11xx -capi -capidrv -capmode -carl9170 -carminefb -cassini -cast5_generic -cast6_generic -cast_common -catc -cb710 -cb710-mmc -cb_pcidas -cb_pcidas64 -cb_pcidda -cb_pcimdas -cb_pcimdda -cc10001_adc -cc2520 -cc770 -cc770_isa -cc770_platform -cciss -ccm -ccp -ccp-crypto -cdc-acm -cdc-phonet -cdc-wdm -cdc_eem -cdc_ether -cdc_mbim -cdc_ncm -cdc_subset -ceph -cfg80211 -cfi_cmdset_0001 -cfi_cmdset_0002 -cfi_cmdset_0020 -cfi_probe -cfi_util -cfspi_slave -ch -ch341 -ch7006 -ch9200 -chacha20_generic -chacha20poly1305 -chaoskey -chipone_icn8318 -chipreg -chnl_net -ci_hdrc -ci_hdrc_imx -ci_hdrc_msm -ci_hdrc_pci -ci_hdrc_usb2 -ci_hdrc_zevio -cicada -cifs -cirrus -cirrusfb -clip -clk-cdce706 -clk-cdce925 -clk-max77686 -clk-max77802 -clk-palmas -clk-pwm -clk-qcom -clk-rk808 -clk-s2mps11 -clk-scpi -clk-si514 -clk-si5351 -clk-si570 -clk-twl6040 -clk-wm831x -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_rsvp -cls_rsvp6 -cls_tcindex -cls_u32 -cm109 -cm32181 -cm3232 -cm3323 -cm36651 -cma3000_d0x -cma3000_d0x_i2c -cmac -cmdlinepart -cmtp -cnic -cobalt -cobra -coda -colibri-vf50-ts -com20020 -com20020-pci -com90io -com90xx -comedi -comedi_8254 -comedi_8255 -comedi_bond -comedi_parport -comedi_pci -comedi_test -comedi_usb -configfs -contec_pci_dio -cordic -core -cp210x -cpia2 -cppc_cpufreq -cpsw_ale -cpu-notifier-error-inject -cramfs -crc-ccitt -crc-itu-t -crc32 -crc32-arm64 -crc7 -crc8 -cryptd -crypto_user -cryptoloop -cs5345 -cs53l32a -csiostor -ctr -cts -cuse -cw1200_core -cw1200_wlan_sdio -cw1200_wlan_spi -cx18 -cx18-alsa -cx22700 -cx22702 -cx231xx -cx231xx-alsa -cx231xx-dvb -cx2341x -cx23885 -cx24110 -cx24113 -cx24116 -cx24117 -cx24120 -cx24123 -cx25821 -cx25821-alsa -cx25840 -cx82310_eth -cx88-alsa -cx88-blackbird -cx88-dvb -cx88-vp3054-i2c -cx8800 -cx8802 -cx88xx -cxacru -cxd2099 -cxd2820r -cxd2841er -cxgb -cxgb3 -cxgb3i -cxgb4 -cxgb4i -cxgb4vf -cy8ctmg110_ts -cyapatp -cyber2000fb -cyberjack -cyclades -cypress_cy7c63 -cypress_firmware -cypress_m8 -cytherm -cyttsp4_core -cyttsp4_i2c -cyttsp4_spi -cyttsp_core -cyttsp_i2c -cyttsp_i2c_common -cyttsp_spi -da9030_battery -da9034-ts -da903x -da903x_bl -da9052-battery -da9052-hwmon -da9052-regulator -da9052_bl -da9052_onkey -da9052_tsi -da9052_wdt -da9055-hwmon -da9055-regulator -da9055_onkey -da9055_wdt -da9062-core -da9062-regulator -da9062_wdt -da9063-regulator -da9063_onkey -da9063_wdt -da9150-charger -da9150-core -da9150-fg -da9150-gpadc -da9210-regulator -da9211-regulator -dac02 -daqboard2000 -das08 -das08_isa -das08_pci -das16 -das16m1 -das1800 -das6402 -das800 -davicom -db9 -dc395x -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -ddbridge -de2104x -decnet -deflate -defxx -denali -denali_dt -denali_pci -des_generic -designware_i2s -dgap -dgnc -dht11 -dib0070 -dib0090 -dib3000mb -dib3000mc -dib7000m -dib7000p -dib8000 -dibx000_common -digi_acceleport -digicolor-usart -diskonchip -diva_idi -diva_mnt -divacapi -divadidd -divas -dl2k -dlci -dlm -dln2 -dm-bio-prison -dm-bufio -dm-cache -dm-cache-cleaner -dm-cache-mq -dm-cache-smq -dm-crypt -dm-delay -dm-era -dm-flakey -dm-log -dm-log-userspace -dm-log-writes -dm-mirror -dm-multipath -dm-persistent-data -dm-queue-length -dm-raid -dm-region-hash -dm-round-robin -dm-service-time -dm-snapshot -dm-switch -dm-thin-pool -dm-verity -dm-zero -dm1105 -dm9601 -dme1737 -dmfe -dmi-sysfs -dmm32at -dmx3191d -dn_rtmsg -dnet -docg3 -docg4 -dp83848 -dp83867 -drbd -drbg -drm -drm_kms_helper -drop_monitor -drv260x -drv2665 -drv2667 -drx39xyj -drxd -drxk -ds1621 -ds1682 -ds1wm -ds2482 -ds2490 -ds2760_battery -ds2780_battery -ds2781_battery -ds2782_battery -ds3000 -ds620 -dsbr100 -dscc4 -dss1_divert -dst -dst_ca -dt2801 -dt2811 -dt2814 -dt2815 -dt2817 -dt282x -dt3000 -dt3155 -dt9812 -dummy -dummy-irq -dummy_stm -dvb-as102 -dvb-bt8xx -dvb-core -dvb-pll -dvb-ttpci -dvb-ttusb-budget -dvb-usb -dvb-usb-a800 -dvb-usb-af9005 -dvb-usb-af9005-remote -dvb-usb-af9015 -dvb-usb-af9035 -dvb-usb-anysee -dvb-usb-au6610 -dvb-usb-az6007 -dvb-usb-az6027 -dvb-usb-ce6230 -dvb-usb-cinergyT2 -dvb-usb-cxusb -dvb-usb-dib0700 -dvb-usb-dibusb-common -dvb-usb-dibusb-mb -dvb-usb-dibusb-mc -dvb-usb-digitv -dvb-usb-dtt200u -dvb-usb-dtv5100 -dvb-usb-dvbsky -dvb-usb-dw2102 -dvb-usb-ec168 -dvb-usb-friio -dvb-usb-gl861 -dvb-usb-gp8psk -dvb-usb-lmedm04 -dvb-usb-m920x -dvb-usb-mxl111sf -dvb-usb-nova-t-usb2 -dvb-usb-opera -dvb-usb-pctv452e -dvb-usb-rtl28xxu -dvb-usb-technisat-usb2 -dvb-usb-ttusb2 -dvb-usb-umt-010 -dvb-usb-vp702x -dvb-usb-vp7045 -dvb_usb_v2 -dw_dmac -dw_dmac_core -dw_dmac_pci -dw_mmc -dw_mmc-exynos -dw_mmc-k3 -dw_mmc-pci -dw_mmc-pltfm -dw_wdt -dwc3 -dwc3-pci -dwc3-qcom -dwc_eth_qos -dwmac-generic -dwmac-ipq806x -dwmac-lpc18xx -dwmac-meson -dwmac-rk -dwmac-socfpga -dwmac-sti -dwmac-sunxi -dyna_pci10xx -dynapro -e100 -e1000 -e1000e -e3x0-button -e4000 -earth-pt1 -earth-pt3 -ebt_802_3 -ebt_among -ebt_arp -ebt_arpreply -ebt_dnat -ebt_ip -ebt_ip6 -ebt_limit -ebt_log -ebt_mark -ebt_mark_m -ebt_nflog -ebt_pkttype -ebt_redirect -ebt_snat -ebt_stp -ebt_vlan -ebtable_broute -ebtable_filter -ebtable_nat -ebtables -ec100 -ec_sys -echainiv -echo -edac_core -edt-ft5x06 -eeprom -eeprom_93cx6 -eeprom_93xx46 -eeti_ts -efi-pstore -efi_test -efs -egalax_ts -ehci-msm -ehci-platform -ehset -elan_i2c -elo -em28xx -em28xx-alsa -em28xx-dvb -em28xx-rc -em28xx-v4l -em_canid -em_cmp -em_ipset -em_meta -em_nbyte -em_text -em_u32 -emac_arc -emac_rockchip -emc1403 -emc2103 -emc6w201 -emi26 -emi62 -empeg -ems_pci -ems_usb -emu10k1-gp -enc28j60 -enclosure -encx24j600 -encx24j600-regmap -ene_ir -eni -enic -epic100 -eql -esas2r -esd_usb2 -esi-sir -esp4 -esp6 -esp_scsi -et1011c -et131x -ethoc -evbug -exofs -extcon-adc-jack -extcon-arizona -extcon-axp288 -extcon-gpio -extcon-max14577 -extcon-max77693 -extcon-max77843 -extcon-max8997 -extcon-palmas -extcon-rt8973a -extcon-sm5502 -extcon-usb-gpio -ezusb -f2fs -f71805f -f71882fg -f75375s -f81232 -fakelb -fan53555 -farsync -faulty -fb_agm1264k-fl -fb_bd663474 -fb_ddc -fb_hx8340bn -fb_hx8347d -fb_hx8353d -fb_hx8357d -fb_ili9163 -fb_ili9320 -fb_ili9325 -fb_ili9340 -fb_ili9341 -fb_ili9481 -fb_ili9486 -fb_pcd8544 -fb_ra8875 -fb_s6d02a1 -fb_s6d1121 -fb_ssd1289 -fb_ssd1306 -fb_ssd1331 -fb_ssd1351 -fb_st7735r -fb_st7789v -fb_sys_fops -fb_tinylcd -fb_tls8204 -fb_uc1611 -fb_uc1701 -fb_upd161704 -fb_watterott -fbtft -fbtft_device -fc0011 -fc0012 -fc0013 -fc2580 -fcoe -fcrypt -fdomain -fdp -fdp_i2c -fealnx -ff-memless -fintek-cir -firedtv -firewire-core -firewire-net -firewire-ohci -firewire-sbp2 -firewire-serial -fixed -fjes -fl512 -flexfb -fm10k -fm801-gp -fm_drv -fmc -fmc-chardev -fmc-fakedev -fmc-trivial -fmc-write-eeprom -forcedeth -fore_200e -fotg210-hcd -fotg210-udc -fou -fpga-mgr -freevxfs -fsa9480 -fscache -fsl-edma -fsl_lpuart -fsl_pq_mdio -ft6236 -ftdi-elan -ftdi_sio -ftl -fujitsu_ts -g450_pll -g760a -g762 -g_acm_ms -g_audio -g_cdc -g_dbgp -g_ether -g_ffs -g_hid -g_mass_storage -g_midi -g_ncm -g_nokia -g_printer -g_serial -g_webcam -g_zero -gadgetfs -gamecon -gameport -garmin_gps -garp -gcc-apq8084 -gcc-ipq806x -gcc-msm8660 -gcc-msm8916 -gcc-msm8960 -gcc-msm8974 -gcm -gdmtty -gdmulte -gdmwm -gen_probe -generic -generic-adc-battery -generic_bl -genet -geneve -gennvm -genwqe_card -gf128mul -gf2k -gfs2 -ghash-ce -ghash-generic -gianfar_driver -gianfar_ptp -gigaset -girbil-sir -gl518sm -gl520sm -gl620a -gluebi -go7007 -go7007-loader -go7007-usb -goku_udc -goodix -gp2ap002a00f -gp2ap020a00f -gpio -gpio-74x164 -gpio-74xx-mmio -gpio-addr-flash -gpio-adnp -gpio-adp5520 -gpio-adp5588 -gpio-altera -gpio-amd8111 -gpio-amdpt -gpio-arizona -gpio-beeper -gpio-charger -gpio-crystalcove -gpio-da9052 -gpio-da9055 -gpio-dln2 -gpio-dwapb -gpio-fan -gpio-grgpio -gpio-ir-recv -gpio-janz-ttl -gpio-kempld -gpio-lp3943 -gpio-max7300 -gpio-max7301 -gpio-max730x -gpio-max732x -gpio-mc33880 -gpio-mcp23s08 -gpio-ml-ioh -gpio-pca953x -gpio-pcf857x -gpio-rdc321x -gpio-regulator -gpio-syscon -gpio-tps65912 -gpio-twl4030 -gpio-twl6040 -gpio-ucb1400 -gpio-viperboard -gpio-vx855 -gpio-wm831x -gpio-wm8350 -gpio-wm8994 -gpio-xgene-sb -gpio-zynq -gpio_backlight -gpio_keys -gpio_keys_polled -gpio_mouse -gpio_tilt_polled -gpio_wdt -gr_udc -grace -grcan -gre -grip -grip_mp -gs_fpga -gs_usb -gsc_hpdi -gspca_benq -gspca_conex -gspca_cpia1 -gspca_dtcs033 -gspca_etoms -gspca_finepix -gspca_gl860 -gspca_jeilinj -gspca_jl2005bcd -gspca_kinect -gspca_konica -gspca_m5602 -gspca_main -gspca_mars -gspca_mr97310a -gspca_nw80x -gspca_ov519 -gspca_ov534 -gspca_ov534_9 -gspca_pac207 -gspca_pac7302 -gspca_pac7311 -gspca_se401 -gspca_sn9c2028 -gspca_sn9c20x -gspca_sonixb -gspca_sonixj -gspca_spca1528 -gspca_spca500 -gspca_spca501 -gspca_spca505 -gspca_spca506 -gspca_spca508 -gspca_spca561 -gspca_sq905 -gspca_sq905c -gspca_sq930x -gspca_stk014 -gspca_stk1135 -gspca_stv0680 -gspca_stv06xx -gspca_sunplus -gspca_t613 -gspca_topro -gspca_touptek -gspca_tv8532 -gspca_vc032x -gspca_vicam -gspca_xirlink_cit -gspca_zc3xx -gtco -guillemot -gunze -gxt4500 -hackrf -hamachi -hampshire -hanwang -hci -hci_uart -hci_vhci -hdc100x -hdlc -hdlc_cisco -hdlc_fr -hdlc_ppp -hdlc_raw -hdlc_raw_eth -hdlc_x25 -hdlcdrv -hdm_dim2 -hdm_i2c -hdm_usb -hdpvr -he -hexium_gemini -hexium_orion -hfc4s8s_l1 -hfc_usb -hfcmulti -hfcpci -hfcsusb -hfs -hfsplus -hi6421-pmic-core -hi6421-regulator -hi8435 -hid -hid-a4tech -hid-alps -hid-apple -hid-appleir -hid-aureal -hid-axff -hid-belkin -hid-betopff -hid-cherry -hid-chicony -hid-corsair -hid-cp2112 -hid-cypress -hid-dr -hid-elecom -hid-elo -hid-emsff -hid-ezkey -hid-gaff -hid-gembird -hid-generic -hid-gfrm -hid-gt683r -hid-gyration -hid-holtek-kbd -hid-holtek-mouse -hid-holtekff -hid-icade -hid-kensington -hid-keytouch -hid-kye -hid-lcpower -hid-lenovo -hid-logitech -hid-logitech-dj -hid-logitech-hidpp -hid-magicmouse -hid-microsoft -hid-monterey -hid-multitouch -hid-ntrig -hid-ortek -hid-penmount -hid-petalynx -hid-picolcd -hid-pl -hid-plantronics -hid-primax -hid-prodikeys -hid-rmi -hid-roccat -hid-roccat-arvo -hid-roccat-common -hid-roccat-isku -hid-roccat-kone -hid-roccat-koneplus -hid-roccat-konepure -hid-roccat-kovaplus -hid-roccat-lua -hid-roccat-pyra -hid-roccat-ryos -hid-roccat-savu -hid-saitek -hid-samsung -hid-sensor-accel-3d -hid-sensor-als -hid-sensor-custom -hid-sensor-gyro-3d -hid-sensor-hub -hid-sensor-iio-common -hid-sensor-incl-3d -hid-sensor-magn-3d -hid-sensor-press -hid-sensor-prox -hid-sensor-rotation -hid-sensor-trigger -hid-sjoy -hid-sony -hid-speedlink -hid-steelseries -hid-sunplus -hid-thingm -hid-tivo -hid-tmff -hid-topseed -hid-twinhan -hid-uclogic -hid-waltop -hid-wiimote -hid-xinmo -hid-zpff -hid-zydacron -hidp -hih6130 -hip04_eth -hisax -hisax_fcpcipnp -hisax_isac -hisax_st5481 -hisi-acpu-cpufreq -hisi504_nand -hisi_thermal -hix5hd2_gmac -hmc5843_core -hmc5843_i2c -hmc5843_spi -hmc6352 -hnae -hns_dsaf -hns_enet_drv -hns_mdio -hopper -horus3a -hostap -hostap_pci -hostap_plx -hp100 -hpfs -hpilo -hpsa -hptiop -hsi -hsi_char -hso -hsr -hsu_dma -htc-pasic3 -hts221 -hts221_i2c -hts221_spi -htu21 -huawei_cdc_ncm -hwa-hc -hwa-rc -hwmon-vid -hwspinlock_core -hx8357 -hysdn -i1480-dfu-usb -i1480-est -i2400m -i2400m-usb -i2c-algo-bit -i2c-algo-pca -i2c-ali1535 -i2c-ali1563 -i2c-ali15x3 -i2c-amd756 -i2c-amd8111 -i2c-arb-gpio-challenge -i2c-bcm-iproc -i2c-cadence -i2c-cbus-gpio -i2c-designware-core -i2c-designware-pci -i2c-designware-platform -i2c-diolan-u2c -i2c-dln2 -i2c-emev2 -i2c-gpio -i2c-hid -i2c-i801 -i2c-isch -i2c-kempld -i2c-matroxfb -i2c-mt65xx -i2c-mux -i2c-mux-gpio -i2c-mux-pca9541 -i2c-mux-pca954x -i2c-mux-pinctrl -i2c-mux-reg -i2c-nforce2 -i2c-nomadik -i2c-ocores -i2c-parport -i2c-parport-light -i2c-pca-platform -i2c-piix4 -i2c-qup -i2c-rk3x -i2c-robotfuzz-osif -i2c-scmi -i2c-simtec -i2c-sis5595 -i2c-sis630 -i2c-sis96x -i2c-smbus -i2c-stub -i2c-taos-evm -i2c-thunderx -i2c-tiny-usb -i2c-versatile -i2c-via -i2c-viapro -i2c-viperboard -i2c-xgene-slimpro -i2c-xiic -i40e -i40evf -i5k_amb -i6300esb -i740fb -ib_addr -ib_cm -ib_core -ib_ipoib -ib_iser -ib_isert -ib_mad -ib_mthca -ib_qib -ib_sa -ib_srp -ib_srpt -ib_ucm -ib_umad -ib_uverbs -ibmaem -ibmpex -icp_multi -icplus -ics932s401 -idma64 -idmouse -idt77252 -ieee802154 -ieee802154_6lowpan -ieee802154_socket -ifb -iforce -igb -igbvf -igorplugusb -iguanair -ii_pci20kc -iio-trig-interrupt -iio-trig-periodic-rtc -iio-trig-sysfs -iio_dummy -iio_hwmon -ila -ili210x -ili922x -ili9320 -imon -ims-pcu -imx074 -imx2_wdt -imx6ul_tsc -imx_thermal -ina209 -ina2xx -industrialio -industrialio-buffer-cb -industrialio-triggered-buffer -industrialio-triggered-event -inet_diag -inexio -inftl -initio -input-leds -input-polldev -int51x1 -intel_th -intel_th_gth -intel_th_msu -intel_th_pci -intel_th_pti -intel_th_sth -intel_vr_nor -interact -interval_tree_test -inv-mpu6050 -io_edgeport -io_ti -ioc4 -iowarrior -ip6_gre -ip6_tables -ip6_tunnel -ip6_udp_tunnel -ip6_vti -ip6t_MASQUERADE -ip6t_NPT -ip6t_REJECT -ip6t_SYNPROXY -ip6t_ah -ip6t_eui64 -ip6t_frag -ip6t_hbh -ip6t_ipv6header -ip6t_mh -ip6t_rpfilter -ip6t_rt -ip6table_filter -ip6table_mangle -ip6table_nat -ip6table_raw -ip6table_security -ip_gre -ip_set -ip_set_bitmap_ip -ip_set_bitmap_ipmac -ip_set_bitmap_port -ip_set_hash_ip -ip_set_hash_ipmark -ip_set_hash_ipport -ip_set_hash_ipportip -ip_set_hash_ipportnet -ip_set_hash_mac -ip_set_hash_net -ip_set_hash_netiface -ip_set_hash_netnet -ip_set_hash_netport -ip_set_hash_netportnet -ip_set_list_set -ip_tables -ip_tunnel -ip_vs -ip_vs_dh -ip_vs_fo -ip_vs_ftp -ip_vs_lblc -ip_vs_lblcr -ip_vs_lc -ip_vs_nq -ip_vs_ovf -ip_vs_pe_sip -ip_vs_rr -ip_vs_sed -ip_vs_sh -ip_vs_wlc -ip_vs_wrr -ip_vti -ipack -ipaq -ipcomp -ipcomp6 -ipddp -iphase -ipheth -ipip -ipmi_devintf -ipmi_msghandler -ipmi_poweroff -ipmi_si -ipmi_ssif -ipmi_watchdog -ipoctal -ipr -iproc-rng200 -iproc_nand -ips -ipt_CLUSTERIP -ipt_ECN -ipt_MASQUERADE -ipt_REJECT -ipt_SYNPROXY -ipt_ah -ipt_rpfilter -iptable_filter -iptable_mangle -iptable_nat -iptable_raw -iptable_security -ipvlan -ipw -ipw2100 -ipw2200 -ipx -ir-hix5hd2 -ir-jvc-decoder -ir-kbd-i2c -ir-lirc-codec -ir-mce_kbd-decoder -ir-nec-decoder -ir-rc5-decoder -ir-rc6-decoder -ir-sanyo-decoder -ir-sharp-decoder -ir-sony-decoder -ir-usb -ir-xmp-decoder -ircomm -ircomm-tty -irda -irda-usb -irlan -irnet -irqbypass -irtty-sir -iscsi_boot_sysfs -iscsi_target_mod -iscsi_tcp -isdn -isdn_bsdcomp -isdnhdlc -isicom -isight_firmware -isl29003 -isl29018 -isl29020 -isl29028 -isl29125 -isl6271a-regulator -isl6405 -isl6421 -isl6423 -isl9305 -isofs -isp116x-hcd -isp1362-hcd -isp1704_charger -isp1760 -it87 -it913x -itd1000 -ite-cir -itg3200 -iuu_phoenix -ivtv -ivtv-alsa -ivtvfb -iw_c2 -iw_cm -iw_cxgb3 -iw_cxgb4 -iw_nes -iwl3945 -iwl4965 -iwldvm -iwlegacy -iwlmvm -iwlwifi -ix2505v -ixgb -ixgbe -ixgbevf -janz-cmodio -janz-ican3 -jc42 -jedec_probe -jffs2 -jfs -jitterentropy_rng -jmb38x_ms -jme -joydev -joydump -jr3_pci -jsa1212 -jsm -kafs -kalmia -kaweth -kbtab -kcomedilib -ke_counter -kempld-core -kempld_wdt -kernelcapi -keyspan -keyspan_pda -keyspan_remote -keywrap -kfifo_buf -khazad -kingsun-sir -kl5kusb105 -kmx61 -kobil_sct -ks8842 -ks8851 -ks8851_mll -ks959-sir -ksdazzle-sir -ksz884x -kvaser_pci -kvaser_usb -kxcjk-1013 -kxsd9 -kxtj9 -kyrofb -l1oip -l2tp_core -l2tp_debugfs -l2tp_eth -l2tp_ip -l2tp_ip6 -l2tp_netlink -l2tp_ppp -l4f00242t03 -l64781 -lan78xx -lanai -lapb -lapbether -latch-addr-flash -lattice-ecp3-config -lcc-ipq806x -lcc-msm8960 -lcd -ld9040 -ldusb -lec -led-class-flash -leds-88pm860x -leds-aat1290 -leds-adp5520 -leds-bcm6328 -leds-bcm6358 -leds-bd2802 -leds-blinkm -leds-da903x -leds-da9052 -leds-dac124s085 -leds-gpio -leds-ktd2692 -leds-lm3530 -leds-lm3533 -leds-lm355x -leds-lm3642 -leds-lp3944 -leds-lp5521 -leds-lp5523 -leds-lp5562 -leds-lp55xx-common -leds-lp8501 -leds-lp8788 -leds-lp8860 -leds-lt3593 -leds-max77693 -leds-max8997 -leds-mc13783 -leds-menf21bmc -leds-pca9532 -leds-pca955x -leds-pca963x -leds-pwm -leds-regulator -leds-ss4200 -leds-tca6507 -leds-tlc591xx -leds-wm831x-status -leds-wm8350 -ledtrig-backlight -ledtrig-camera -ledtrig-default-on -ledtrig-gpio -ledtrig-heartbeat -ledtrig-oneshot -ledtrig-timer -ledtrig-transient -legousbtower -lg-vl600 -lg2160 -lgdt3305 -lgdt3306a -lgdt330x -lgs8gxx -lib80211 -lib80211_crypt_ccmp -lib80211_crypt_tkip -lib80211_crypt_wep -libahci -libahci_platform -libceph -libcomposite -libcrc32c -libcxgbi -libertas -libertas_sdio -libertas_spi -libertas_tf -libertas_tf_usb -libfc -libfcoe -libipw -libiscsi -libiscsi_tcp -libore -libosd -libsas -lightning -lineage-pem -linear -liquidio -lirc_bt829 -lirc_dev -lirc_imon -lirc_parallel -lirc_sasem -lirc_serial -lirc_sir -lirc_zilog -lis3l02dq -lis3lv02d -lis3lv02d_i2c -litelink-sir -lkkbd -llc -llc2 -lm25066 -lm3533-als -lm3533-core -lm3533-ctrlbank -lm3533_bl -lm3630a_bl -lm3639_bl -lm63 -lm70 -lm73 -lm75 -lm77 -lm78 -lm80 -lm83 -lm8323 -lm8333 -lm85 -lm87 -lm90 -lm92 -lm93 -lm95234 -lm95241 -lm95245 -lms283gf05 -lms501kf03 -lnbh25 -lnbp21 -lnbp22 -lockd -locktorture -lp -lp3943 -lp3971 -lp3972 -lp855x_bl -lp8727_charger -lp872x -lp8755 -lp8788-buck -lp8788-charger -lp8788-ldo -lp8788_adc -lp8788_bl -lpc_ich -lpc_sch -lpddr_cmds -lpfc -lru_cache -lrw -ltc2941-battery-gauge -ltc2945 -ltc2978 -ltc3589 -ltc4151 -ltc4215 -ltc4222 -ltc4245 -ltc4260 -ltc4261 -ltr501 -ltv350qv -lv5207lp -lvstest -lxt -lz4 -lz4_compress -lz4hc -lz4hc_compress -m25p80 -m2m-deinterlace -m52790 -m62332 -m88ds3103 -m88rs2000 -m88rs6000t -mISDN_core -mISDN_dsp -mISDNinfineon -mISDNipac -mISDNisar -m_can -ma600-sir -mac-celtic -mac-centeuro -mac-croatian -mac-cyrillic -mac-gaelic -mac-greek -mac-iceland -mac-inuit -mac-roman -mac-romanian -mac-turkish -mac80211 -mac80211_hwsim -mac802154 -macb -macmodes -macvlan -macvtap -mag3110 -magellan -mailbox-altera -mailbox-test -mailbox-xgene-slimpro -mantis -mantis_core -map_absent -map_funcs -map_ram -map_rom -marvell -matrix-keymap -matrix_keypad -matrox_w1 -matroxfb_DAC1064 -matroxfb_Ti3026 -matroxfb_accel -matroxfb_base -matroxfb_crtc2 -matroxfb_g450 -matroxfb_maven -matroxfb_misc -max1027 -max1111 -max11801_ts -max1363 -max14577 -max14577_charger -max1586 -max16064 -max16065 -max1619 -max1668 -max17040_battery -max17042_battery -max197 -max20751 -max2165 -max3100 -max31790 -max3421-hcd -max34440 -max517 -max5821 -max63xx_wdt -max6639 -max6642 -max6650 -max6697 -max6875 -max7359_keypad -max77686 -max77693 -max77693-haptic -max77693_charger -max77802 -max8649 -max8660 -max8688 -max8903_charger -max8907 -max8907-regulator -max8925-regulator -max8925_bl -max8925_onkey -max8925_power -max8952 -max8973-regulator -max8997 -max8997_charger -max8997_haptic -max8998 -max8998_charger -mb862xxfb -mb86a16 -mb86a20s -mc-bus-driver -mc13783-adc -mc13783-pwrbutton -mc13783-regulator -mc13783_ts -mc13892-regulator -mc13xxx-core -mc13xxx-i2c -mc13xxx-regulator-core -mc13xxx-spi -mc44s803 -mcb -mcb-pci -mceusb -mcp2120-sir -mcp251x -mcp3021 -mcp320x -mcp3422 -mcp4531 -mcp4725 -mcp4922 -mcryptd -mcs5000_ts -mcs7780 -mcs7830 -mcs_touchkey -mct_u232 -md-cluster -md4 -mdc800 -mdio -mdio-bcm-iproc -mdio-bcm-unimac -mdio-bitbang -mdio-cavium -mdio-gpio -mdio-mux -mdio-mux-gpio -mdio-mux-mmioreg -mdio-octeon -mdio-thunder -mdio-xgene -me4000 -me_daq -media -megaraid -megaraid_mbox -megaraid_mm -megaraid_sas -memstick -men_z135_uart -men_z188_adc -mena21_wdt -menf21bmc -menf21bmc_hwmon -menf21bmc_wdt -metro-usb -metronomefb -mf6x4 -mga -michael_mic -micrel -microchip -microread -microread_i2c -microtek -minix -mip6 -mite -mk712 -mkiss -mlx4_core -mlx4_en -mlx4_ib -mlx5_core -mlx5_ib -mlx90614 -mlxsw_core -mlxsw_pci -mma8450 -mma8452 -mma9551 -mma9551_core -mma9553 -mmc35240 -mmc_spi -mmcc-apq8084 -mmcc-msm8960 -mmcc-msm8974 -mmci_qcom_dml -mms114 -mn88472 -mn88473 -mos7720 -mos7840 -mostcore -moxa -mpc624 -mpl115 -mpl3115 -mpls_gso -mpls_iptunnel -mpls_router -mpoa -mpr121_touchkey -mpt3sas -mptbase -mptctl -mptfc -mptlan -mptsas -mptscsih -mptspi -mpu3050 -mrf24j40 -mrp -ms5611_core -ms5611_i2c -ms5611_spi -ms5637 -ms_block -ms_sensors_i2c -msdos -msi001 -msi2500 -msm -msm-rng -msp3400 -mspro_block -mt2060 -mt2063 -mt20xx -mt2131 -mt2266 -mt29f_spinand -mt312 -mt352 -mt6311-regulator -mt6397-core -mt6397-regulator -mt7601u -mt8173-max98090 -mt8173-rt5650-rt5676 -mt9m001 -mt9m111 -mt9t031 -mt9t112 -mt9v011 -mt9v022 -mtd -mtd_blkdevs -mtd_dataflash -mtdblock -mtdblock_ro -mtdoops -mtdram -mtdswap -mtip32xx -mtk-afe-pcm -mtk-pmic-wrap -mtk-sd -mtk_wdt -mtouch -multipath -multiq3 -musb_hdrc -mv_u3d_core -mv_udc -mvmdio -mvsas -mvumi -mwifiex -mwifiex_pcie -mwifiex_sdio -mwifiex_usb -mwl8k -mxb -mxc4005 -mxl111sf-demod -mxl111sf-tuner -mxl301rf -mxl5005s -mxl5007t -mxser -mxuport -myri10ge -n_gsm -n_hdlc -n_r3964 -n_tracerouter -n_tracesink -nand -nand_bch -nand_ecc -nand_ids -nandsim -national -natsemi -nau7802 -navman -nb8800 -nbd -nci -nci_spi -nci_uart -ncpfs -nct6683 -nct6775 -nct7802 -nct7904 -nd_blk -nd_btt -nd_pmem -ne2k-pci -neofb -net1080 -net2272 -net2280 -netconsole -netjet -netlink_diag -netrom -netup-unidvb -netxen_nic -newtonkbd -nf_conntrack -nf_conntrack_amanda -nf_conntrack_broadcast -nf_conntrack_ftp -nf_conntrack_h323 -nf_conntrack_ipv4 -nf_conntrack_ipv6 -nf_conntrack_irc -nf_conntrack_netbios_ns -nf_conntrack_netlink -nf_conntrack_pptp -nf_conntrack_proto_dccp -nf_conntrack_proto_gre -nf_conntrack_proto_sctp -nf_conntrack_proto_udplite -nf_conntrack_sane -nf_conntrack_sip -nf_conntrack_snmp -nf_conntrack_tftp -nf_defrag_ipv4 -nf_defrag_ipv6 -nf_dup_ipv4 -nf_dup_ipv6 -nf_log_arp -nf_log_bridge -nf_log_common -nf_log_ipv4 -nf_log_ipv6 -nf_nat -nf_nat_amanda -nf_nat_ftp -nf_nat_h323 -nf_nat_ipv4 -nf_nat_ipv6 -nf_nat_irc -nf_nat_masquerade_ipv4 -nf_nat_masquerade_ipv6 -nf_nat_pptp -nf_nat_proto_dccp -nf_nat_proto_gre -nf_nat_proto_sctp -nf_nat_proto_udplite -nf_nat_redirect -nf_nat_sip -nf_nat_snmp_basic -nf_nat_tftp -nf_reject_ipv4 -nf_reject_ipv6 -nf_synproxy_core -nf_tables -nf_tables_arp -nf_tables_bridge -nf_tables_inet -nf_tables_ipv4 -nf_tables_ipv6 -nf_tables_netdev -nfc -nfc_digital -nfcmrvl -nfcmrvl_i2c -nfcmrvl_spi -nfcmrvl_uart -nfcmrvl_usb -nfcsim -nfcwilink -nfnetlink -nfnetlink_acct -nfnetlink_cthelper -nfnetlink_cttimeout -nfnetlink_log -nfnetlink_queue -nfs -nfs_acl -nfs_layout_flexfiles -nfs_layout_nfsv41_files -nfsd -nfsv2 -nfsv3 -nfsv4 -nft_chain_nat_ipv4 -nft_chain_nat_ipv6 -nft_chain_route_ipv4 -nft_chain_route_ipv6 -nft_compat -nft_counter -nft_ct -nft_dup_ipv4 -nft_dup_ipv6 -nft_exthdr -nft_hash -nft_limit -nft_log -nft_masq -nft_masq_ipv4 -nft_masq_ipv6 -nft_meta -nft_meta_bridge -nft_nat -nft_queue -nft_rbtree -nft_redir -nft_redir_ipv4 -nft_redir_ipv6 -nft_reject -nft_reject_bridge -nft_reject_inet -nft_reject_ipv4 -nft_reject_ipv6 -nftl -ngene -nhc_dest -nhc_fragment -nhc_hop -nhc_ipv6 -nhc_mobility -nhc_routing -nhc_udp -ni_6527 -ni_65xx -ni_660x -ni_670x -ni_at_a2150 -ni_at_ao -ni_atmio -ni_atmio16d -ni_labpc -ni_labpc_common -ni_labpc_pci -ni_pcidio -ni_pcimio -ni_tio -ni_tiocmd -ni_usb6501 -nicpf -nicstar -nicvf -nilfs2 -niu -nlmon -nls_ascii -nls_cp1250 -nls_cp1251 -nls_cp1255 -nls_cp737 -nls_cp775 -nls_cp850 -nls_cp852 -nls_cp855 -nls_cp857 -nls_cp860 -nls_cp861 -nls_cp862 -nls_cp863 -nls_cp864 -nls_cp865 -nls_cp866 -nls_cp869 -nls_cp874 -nls_cp932 -nls_cp936 -nls_cp949 -nls_cp950 -nls_euc-jp -nls_iso8859-13 -nls_iso8859-14 -nls_iso8859-15 -nls_iso8859-2 -nls_iso8859-3 -nls_iso8859-4 -nls_iso8859-5 -nls_iso8859-6 -nls_iso8859-7 -nls_iso8859-9 -nls_koi8-r -nls_koi8-ru -nls_koi8-u -nls_utf8 -nosy -notifier-error-inject -nouveau -nozomi -nps_enet -ns558 -ns83820 -ntb -ntb_netdev -ntb_pingpong -ntb_tool -ntb_transport -ntc_thermistor -ntfs -null_blk -nuvoton-cir -nvidiafb -nvme -nvmem_core -nvmem_qfprom -nxp-nci -nxp-nci_i2c -nxp-ptn3460 -nxt200x -nxt6000 -objlayoutdriver -ocfb -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -ocrdma -of_mmc_spi -of_xilinx_wdt -ofpart -ohci-platform -old_belkin-sir -omap4-keypad -omfs -omninet -onenand -opencores-kbd -openvswitch -opt3001 -opticon -option -or51132 -or51211 -orinoco -orinoco_nortel -orinoco_plx -orinoco_tmd -orinoco_usb -osd -osdblk -osst -oti6858 -ov2640 -ov5642 -ov6650 -ov7640 -ov7670 -ov772x -ov9640 -ov9740 -overlay -oxu210hp-hcd -p54common -p54pci -p54spi -p54usb -p8022 -p8023 -pa12203001 -palmas-pwrbutton -palmas-regulator -pandora_bl -panel -panel-lg-lg4573 -panel-samsung-ld9040 -panel-samsung-s6e8aa0 -panel-sharp-lq101r1sx01 -panel-simple -parade-ps8622 -parkbd -parport -parport_ax88796 -pata_acpi -pata_ali -pata_amd -pata_artop -pata_atiixp -pata_atp867x -pata_cmd640 -pata_cmd64x -pata_cypress -pata_efar -pata_hpt366 -pata_hpt37x -pata_hpt3x2n -pata_hpt3x3 -pata_it8213 -pata_it821x -pata_jmicron -pata_legacy -pata_marvell -pata_mpiix -pata_netcell -pata_ninja32 -pata_ns87410 -pata_ns87415 -pata_of_platform -pata_oldpiix -pata_opti -pata_optidma -pata_pdc2027x -pata_pdc202xx_old -pata_piccolo -pata_platform -pata_radisys -pata_rdc -pata_rz1000 -pata_sch -pata_serverworks -pata_sil680 -pata_sis -pata_sl82c105 -pata_triflex -pata_via -pc300too -pc87360 -pc87427 -pcap-regulator -pcap_keys -pcap_ts -pcbc -pcf50633 -pcf50633-adc -pcf50633-backlight -pcf50633-charger -pcf50633-gpio -pcf50633-input -pcf50633-regulator -pcf8574_keypad -pcf8591 -pch_udc -pci -pci-stub -pci200syn -pcie-iproc -pcie-iproc-platform -pcips2 -pcl711 -pcl724 -pcl726 -pcl730 -pcl812 -pcl816 -pcl818 -pcm3724 -pcmad -pcmda12 -pcmmio -pcmuio -pcnet32 -pcrypt -pcwd_pci -pcwd_usb -pda_power -pdc_adma -peak_pci -peak_usb -pegasus -penmount -percpu_test -pfuze100-regulator -phantom -phonet -phram -phy-bcm-kona-usb2 -phy-berlin-sata -phy-berlin-usb -phy-exynos-usb2 -phy-gpio-vbus-usb -phy-isp1301 -phy-msm-usb -phy-mt65xx-usb3 -phy-pxa-28nm-hsic -phy-pxa-28nm-usb2 -phy-qcom-8x16-usb -phy-qcom-apq8064-sata -phy-qcom-ipq806x-sata -phy-qcom-ufs -phy-qcom-ufs-qmp-14nm -phy-qcom-ufs-qmp-20nm -phy-tahvo -phy-tusb1210 -physmap -physmap_of -pinctrl-apq8064 -pinctrl-apq8084 -pinctrl-ipq8064 -pinctrl-msm8660 -pinctrl-msm8916 -pinctrl-msm8960 -pinctrl-msm8x74 -pinctrl-qdf2xxx -pinctrl-spmi-gpio -pinctrl-spmi-mpp -pinctrl-ssbi-gpio -pinctrl-ssbi-mpp -pixcir_i2c_ts -pkcs7_test_key -pktcdvd -pktgen -pl172 -pl2303 -pl330 -plat-ram -plat_nand -platform_lcd -plip -plusb -pluto2 -plx_pci -pm-notifier-error-inject -pm2fb -pm3fb -pm80xx -pm8941-pwrkey -pm8941-wled -pmbus -pmbus_core -pmc551 -pmcraid -pn533 -pn544 -pn544_i2c -pn_pep -poly1305_generic -port100 -powermate -powr1220 -ppdev -ppp_async -ppp_deflate -ppp_mppe -ppp_synctty -pppoatm -pppoe -pppox -pps-gpio -pps-ldisc -pps_core -pps_parport -pptp -prism2_usb -ps2mult -psmouse -psnap -ptp -pulsedlight-lidar-lite-v2 -pvrusb2 -pwc -pwm-atmel-hlcdc -pwm-beeper -pwm-berlin -pwm-fan -pwm-fsl-ftm -pwm-lp3943 -pwm-mtk-disp -pwm-pca9685 -pwm-regulator -pwm-twl -pwm-twl-led -pwm_bl -pxa168_eth -pxa27x_udc -qcaspi -qcaux -qcom-coincell -qcom-spmi-iadc -qcom-spmi-pmic -qcom-spmi-temp-alarm -qcom-spmi-vadc -qcom-wdt -qcom_bam_dma -qcom_gsbi -qcom_hwspinlock -qcom_rpm -qcom_rpm-regulator -qcom_smbb -qcom_smd-regulator -qcom_spmi-regulator -qcrypto -qcserial -qed -qede -qinfo_probe -qla1280 -qla2xxx -qla3xxx -qla4xxx -qlcnic -qlge -qm1d1c0042 -qmi_wwan -qnx4 -qnx6 -qsemi -qt1010 -qt1070 -qt2160 -quatech2 -quota_tree -quota_v1 -quota_v2 -qxl -r128 -r592 -r6040 -r8152 -r8169 -r8188eu -r8192e_pci -r8192u_usb -r820t -r852 -r8712u -r8723au -r8a66597-hcd -r8a66597-udc -radeon -radeonfb -radio-bcm2048 -radio-i2c-si470x -radio-keene -radio-ma901 -radio-maxiradio -radio-mr800 -radio-platform-si4713 -radio-raremono -radio-shark -radio-si476x -radio-tea5764 -radio-usb-si470x -radio-usb-si4713 -radio-wl1273 -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid6test -raid_class -ramoops -raw -rbd -rbtree_test -rc-adstech-dvb-t-pci -rc-alink-dtu-m -rc-anysee -rc-apac-viewcomp -rc-asus-pc39 -rc-asus-ps3-100 -rc-ati-tv-wonder-hd-600 -rc-ati-x10 -rc-avermedia -rc-avermedia-a16d -rc-avermedia-cardbus -rc-avermedia-dvbt -rc-avermedia-m135a -rc-avermedia-m733a-rm-k6 -rc-avermedia-rm-ks -rc-avertv-303 -rc-azurewave-ad-tu700 -rc-behold -rc-behold-columbus -rc-budget-ci-old -rc-cinergy -rc-cinergy-1400 -rc-core -rc-delock-61959 -rc-dib0700-nec -rc-dib0700-rc5 -rc-digitalnow-tinytwin -rc-digittrade -rc-dm1105-nec -rc-dntv-live-dvb-t -rc-dntv-live-dvbt-pro -rc-dvbsky -rc-em-terratec -rc-encore-enltv -rc-encore-enltv-fm53 -rc-encore-enltv2 -rc-evga-indtube -rc-eztv -rc-flydvb -rc-flyvideo -rc-fusionhdtv-mce -rc-gadmei-rm008z -rc-genius-tvgo-a11mce -rc-gotview7135 -rc-hauppauge -rc-imon-mce -rc-imon-pad -rc-iodata-bctv7e -rc-it913x-v1 -rc-it913x-v2 -rc-kaiomy -rc-kworld-315u -rc-kworld-pc150u -rc-kworld-plus-tv-analog -rc-leadtek-y04g0051 -rc-lirc -rc-lme2510 -rc-loopback -rc-manli -rc-medion-x10 -rc-medion-x10-digitainer -rc-medion-x10-or2x -rc-msi-digivox-ii -rc-msi-digivox-iii -rc-msi-tvanywhere -rc-msi-tvanywhere-plus -rc-nebula -rc-nec-terratec-cinergy-xs -rc-norwood -rc-npgtech -rc-pctv-sedna -rc-pinnacle-color -rc-pinnacle-grey -rc-pinnacle-pctv-hd -rc-pixelview -rc-pixelview-002t -rc-pixelview-mk12 -rc-pixelview-new -rc-powercolor-real-angel -rc-proteus-2309 -rc-purpletv -rc-pv951 -rc-rc6-mce -rc-real-audio-220-32-keys -rc-reddo -rc-snapstream-firefly -rc-streamzap -rc-su3000 -rc-tbs-nec -rc-technisat-ts35 -rc-technisat-usb2 -rc-terratec-cinergy-c-pci -rc-terratec-cinergy-s2-hd -rc-terratec-cinergy-xs -rc-terratec-slim -rc-terratec-slim-2 -rc-tevii-nec -rc-tivo -rc-total-media-in-hand -rc-total-media-in-hand-02 -rc-trekstor -rc-tt-1500 -rc-twinhan-dtv-cab-ci -rc-twinhan1027 -rc-videomate-m1f -rc-videomate-s350 -rc-videomate-tv-pvr -rc-winfast -rc-winfast-usbii-deluxe -rc5t583-regulator -rdc321x-southbridge -rdma_cm -rdma_ucm -rds -rds_rdma -rds_tcp -realtek -redboot -redrat3 -reed_solomon -regmap-spmi -regulator-haptic -reiserfs -remoteproc -retu-mfd -retu-pwrbutton -retu_wdt -rfc1051 -rfc1201 -rfcomm -rfd_ftl -rfkill-gpio -rfkill-regulator -rio500 -rivafb -rj54n1cb0c -rk808 -rk808-regulator -rmd128 -rmd160 -rmd256 -rmd320 -rn5t618 -rn5t618-regulator -rn5t618_wdt -rndis_host -rndis_wlan -rocket -rohm_bu21023 -romfs -rose -rotary_encoder -rp2 -rpcrdma -rpcsec_gss_krb5 -rpr0521 -rrpc -rsi_91x -rsi_sdio -rsi_usb -rsxx -rt2400pci -rt2500pci -rt2500usb -rt2800lib -rt2800mmio -rt2800pci -rt2800usb -rt2x00lib -rt2x00mmio -rt2x00pci -rt2x00usb -rt5033 -rt5033-regulator -rt5033_battery -rt61pci -rt73usb -rt9455_charger -rtc-88pm80x -rtc-88pm860x -rtc-ab-b5ze-s3 -rtc-ab3100 -rtc-abx80x -rtc-as3722 -rtc-bq32k -rtc-bq4802 -rtc-da9052 -rtc-da9055 -rtc-da9063 -rtc-ds1286 -rtc-ds1305 -rtc-ds1307 -rtc-ds1343 -rtc-ds1347 -rtc-ds1374 -rtc-ds1390 -rtc-ds1511 -rtc-ds1553 -rtc-ds1672 -rtc-ds1685 -rtc-ds1742 -rtc-ds2404 -rtc-ds3232 -rtc-ds3234 -rtc-em3027 -rtc-fm3130 -rtc-hid-sensor-time -rtc-hym8563 -rtc-isl12022 -rtc-isl12057 -rtc-isl1208 -rtc-lp8788 -rtc-m41t80 -rtc-m41t93 -rtc-m41t94 -rtc-m48t35 -rtc-m48t59 -rtc-m48t86 -rtc-max6900 -rtc-max6902 -rtc-max77686 -rtc-max77802 -rtc-max8907 -rtc-max8925 -rtc-max8997 -rtc-max8998 -rtc-mc13xxx -rtc-mcp795 -rtc-msm6242 -rtc-mt6397 -rtc-palmas -rtc-pcap -rtc-pcf2123 -rtc-pcf2127 -rtc-pcf50633 -rtc-pcf85063 -rtc-pcf8523 -rtc-pcf8563 -rtc-pcf8583 -rtc-pl030 -rtc-pl031 -rtc-pm8xxx -rtc-r9701 -rtc-rc5t583 -rtc-rk808 -rtc-rp5c01 -rtc-rs5c348 -rtc-rs5c372 -rtc-rv3029c2 -rtc-rv8803 -rtc-rx4581 -rtc-rx8025 -rtc-rx8581 -rtc-s35390a -rtc-s5m -rtc-snvs -rtc-stk17ta8 -rtc-tps6586x -rtc-tps65910 -rtc-tps80031 -rtc-twl -rtc-v3020 -rtc-wm831x -rtc-wm8350 -rtc-x1205 -rtc-zynqmp -rtd520 -rti800 -rti802 -rtl2830 -rtl2832 -rtl2832_sdr -rtl8150 -rtl8187 -rtl8188ee -rtl818x_pci -rtl8192c-common -rtl8192ce -rtl8192cu -rtl8192de -rtl8192ee -rtl8192se -rtl8723-common -rtl8723ae -rtl8723be -rtl8821ae -rtl8xxxu -rtl_pci -rtl_usb -rtllib -rtllib_crypt_ccmp -rtllib_crypt_tkip -rtllib_crypt_wep -rtlwifi -rts5208 -rtsx_pci -rtsx_pci_ms -rtsx_pci_sdmmc -rtsx_usb -rtsx_usb_ms -rtsx_usb_sdmmc -rx51_battery -rxkad -s1d13xxxfb -s2250 -s2255drv -s2io -s2mpa01 -s2mps11 -s3fb -s3fwrn5 -s3fwrn5_i2c -s526 -s5h1409 -s5h1411 -s5h1420 -s5m8767 -s626 -s6e63m0 -s921 -saa6588 -saa6752hs -saa7115 -saa7127 -saa7134 -saa7134-alsa -saa7134-dvb -saa7134-empress -saa7134-go7007 -saa7146 -saa7146_vv -saa7164 -saa717x -saa7706h -safe_serial -salsa20_generic -samsung-keypad -samsung-sxgbe -sata_inic162x -sata_mv -sata_nv -sata_promise -sata_qstor -sata_sil -sata_sil24 -sata_sis -sata_svw -sata_sx4 -sata_uli -sata_via -sata_vsc -savage -savagefb -sb1000 -sbp_target -sbs-battery -sc16is7xx -sc92031 -sca3000 -sch5627 -sch5636 -sch56xx-common -sch_atm -sch_cbq -sch_choke -sch_codel -sch_drr -sch_dsmark -sch_fq -sch_fq_codel -sch_gred -sch_hfsc -sch_hhf -sch_htb -sch_ingress -sch_mqprio -sch_multiq -sch_netem -sch_pie -sch_plug -sch_prio -sch_qfq -sch_red -sch_sfb -sch_sfq -sch_tbf -sch_teql -scpi-cpufreq -scpi-hwmon -scsi_debug -scsi_dh_alua -scsi_dh_emc -scsi_dh_hp_sw -scsi_dh_rdac -scsi_transport_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -scsi_transport_srp -sctp -sdhci -sdhci-acpi -sdhci-iproc -sdhci-msm -sdhci-of-arasan -sdhci-of-at91 -sdhci-of-esdhc -sdhci-pci -sdhci-pltfm -sdhci-pxav3 -sdhci_f_sdh30 -sdio_uart -seed -sensorhub -seqiv -ser_gigaset -serial2002 -serio_raw -sermouse -serpent_generic -serport -ses -sfc -sh_veu -sha1-ce -sha2-ce -shark2 -shpchp -sht15 -sht21 -shtc1 -si2157 -si2165 -si2168 -si21xx -si4713 -si476x-core -si7005 -si7020 -sidewinder -sierra -sierra_net -sil164 -sir-dev -sis190 -sis5595 -sis900 -sisfb -sisusbvga -sit -sja1000 -sja1000_isa -sja1000_platform -skd -skfp -skge -sky2 -sky81452 -sky81452-backlight -sky81452-regulator -sl811-hcd -slcan -slip -slram -sm501 -sm501fb -sm712fb -sm750fb -sm_common -sm_ftl -smb347-charger -smd -smd-rpm -smem -smipcie -smm665 -smsc -smsc47b397 -smsc47m1 -smsc47m192 -smsc75xx -smsc911x -smsc9420 -smsc95xx -smscufx -smsdvb -smsmdtv -smssdio -smsusb -snd -snd-ac97-codec -snd-ad1889 -snd-ak4113 -snd-ak4114 -snd-ak4xxx-adda -snd-ali5451 -snd-aloop -snd-als300 -snd-atiixp -snd-atiixp-modem -snd-au8810 -snd-au8820 -snd-au8830 -snd-aw2 -snd-azt3328 -snd-bcd2000 -snd-bebob -snd-bt87x -snd-ca0106 -snd-cmipci -snd-cs4281 -snd-cs46xx -snd-cs8427 -snd-ctxfi -snd-darla20 -snd-darla24 -snd-dice -snd-dummy -snd-echo3g -snd-emu10k1 -snd-emu10k1-synth -snd-emu10k1x -snd-emux-synth -snd-ens1370 -snd-ens1371 -snd-es1938 -snd-es1968 -snd-firewire-digi00x -snd-firewire-lib -snd-firewire-tascam -snd-fireworks -snd-fm801 -snd-gina20 -snd-gina24 -snd-hda-codec -snd-hda-codec-analog -snd-hda-codec-ca0110 -snd-hda-codec-ca0132 -snd-hda-codec-cirrus -snd-hda-codec-cmedia -snd-hda-codec-conexant -snd-hda-codec-generic -snd-hda-codec-hdmi -snd-hda-codec-idt -snd-hda-codec-realtek -snd-hda-codec-si3054 -snd-hda-codec-via -snd-hda-core -snd-hda-intel -snd-hdsp -snd-hdspm -snd-hrtimer -snd-hwdep -snd-i2c -snd-ice1712 -snd-ice1724 -snd-ice17xx-ak4xxx -snd-indigo -snd-indigodj -snd-indigodjx -snd-indigoio -snd-indigoiox -snd-intel8x0 -snd-intel8x0m -snd-isight -snd-korg1212 -snd-layla20 -snd-layla24 -snd-lola -snd-lx6464es -snd-maestro3 -snd-mia -snd-mixart -snd-mixer-oss -snd-mona -snd-mpu401 -snd-mpu401-uart -snd-mtpav -snd-mts64 -snd-nm256 -snd-opl3-lib -snd-opl3-synth -snd-oxfw -snd-oxygen -snd-oxygen-lib -snd-pcm -snd-pcm-dmaengine -snd-pcm-oss -snd-pcxhr -snd-portman2x4 -snd-pt2258 -snd-rawmidi -snd-riptide -snd-rme32 -snd-rme96 -snd-rme9652 -snd-scs1x -snd-seq -snd-seq-device -snd-seq-dummy -snd-seq-midi -snd-seq-midi-emul -snd-seq-midi-event -snd-seq-virmidi -snd-serial-u16550 -snd-soc-ac97 -snd-soc-adau1701 -snd-soc-ak4104 -snd-soc-ak4554 -snd-soc-ak4613 -snd-soc-ak4642 -snd-soc-ak5386 -snd-soc-alc5623 -snd-soc-apq8016-sbc -snd-soc-core -snd-soc-cs35l32 -snd-soc-cs4265 -snd-soc-cs4270 -snd-soc-cs4271 -snd-soc-cs4271-i2c -snd-soc-cs4271-spi -snd-soc-cs42l51 -snd-soc-cs42l51-i2c -snd-soc-cs42l52 -snd-soc-cs42l56 -snd-soc-cs42l73 -snd-soc-cs42xx8 -snd-soc-cs42xx8-i2c -snd-soc-cs4349 -snd-soc-es8328 -snd-soc-fsl-asrc -snd-soc-fsl-esai -snd-soc-fsl-sai -snd-soc-fsl-spdif -snd-soc-fsl-ssi -snd-soc-gtm601 -snd-soc-imx-audmux -snd-soc-lpass-apq8016 -snd-soc-lpass-cpu -snd-soc-lpass-ipq806x -snd-soc-lpass-platform -snd-soc-max98090 -snd-soc-max98357a -snd-soc-pcm1681 -snd-soc-pcm1792a-codec -snd-soc-pcm512x -snd-soc-pcm512x-i2c -snd-soc-pcm512x-spi -snd-soc-rl6231 -snd-soc-rt5631 -snd-soc-rt5645 -snd-soc-rt5677 -snd-soc-rt5677-spi -snd-soc-sgtl5000 -snd-soc-si476x -snd-soc-sigmadsp -snd-soc-sigmadsp-i2c -snd-soc-simple-card -snd-soc-spdif-rx -snd-soc-spdif-tx -snd-soc-ssm2602 -snd-soc-ssm2602-i2c -snd-soc-ssm2602-spi -snd-soc-ssm4567 -snd-soc-sta32x -snd-soc-sta350 -snd-soc-sti-sas -snd-soc-storm -snd-soc-tas2552 -snd-soc-tas5086 -snd-soc-tas571x -snd-soc-tfa9879 -snd-soc-tlv320aic23 -snd-soc-tlv320aic23-i2c -snd-soc-tlv320aic23-spi -snd-soc-tlv320aic31xx -snd-soc-tlv320aic3x -snd-soc-tpa6130a2 -snd-soc-ts3a227e -snd-soc-wm8510 -snd-soc-wm8523 -snd-soc-wm8580 -snd-soc-wm8711 -snd-soc-wm8728 -snd-soc-wm8731 -snd-soc-wm8737 -snd-soc-wm8741 -snd-soc-wm8750 -snd-soc-wm8753 -snd-soc-wm8770 -snd-soc-wm8776 -snd-soc-wm8804 -snd-soc-wm8804-i2c -snd-soc-wm8804-spi -snd-soc-wm8903 -snd-soc-wm8962 -snd-soc-wm8978 -snd-soc-xtfpga-i2s -snd-sonicvibes -snd-timer -snd-trident -snd-ua101 -snd-usb-6fire -snd-usb-audio -snd-usb-caiaq -snd-usb-hiface -snd-usb-line6 -snd-usb-pod -snd-usb-podhd -snd-usb-toneport -snd-usb-variax -snd-usbmidi-lib -snd-util-mem -snd-via82xx -snd-via82xx-modem -snd-virmidi -snd-virtuoso -snd-vx-lib -snd-vx222 -snd-ymfpci -snic -soc_button_array -soc_camera -soc_camera_platform -soc_mediabus -softdog -softing -solo6x10 -solos-pci -sony-btf-mpx -soundcore -sp2 -sp805_wdt -sp8870 -sp887x -spaceball -spaceorb -sparse-keymap -spcp8x5 -speakup -speakup_acntsa -speakup_apollo -speakup_audptr -speakup_bns -speakup_decext -speakup_dectlk -speakup_dummy -speakup_ltlk -speakup_soft -speakup_spkout -speakup_txprt -speedfax -speedtch -spi-altera -spi-bitbang -spi-butterfly -spi-cadence -spi-dln2 -spi-dw -spi-dw-midpci -spi-dw-mmio -spi-fsl-dspi -spi-gpio -spi-lm70llp -spi-mt65xx -spi-nor -spi-oc-tiny -spi-pl022 -spi-pxa2xx-pci -spi-pxa2xx-platform -spi-qup -spi-rockchip -spi-sc18is602 -spi-tle62x0 -spi-xcomm -spi-zynqmp-gqspi -spi_ks8995 -spidev -spl -splat -spmi -spmi-pmic-arb -sprd_serial -sr9700 -sr9800 -ssb -ssb-hcd -ssd1307fb -ssfdc -ssp_accel_sensor -ssp_gyro_sensor -ssp_iio -sst25l -sstfb -ssu100 -st -st-nci -st-nci_i2c -st-nci_spi -st1232 -st21nfca_hci -st21nfca_i2c -st_accel -st_accel_i2c -st_accel_spi -st_drv -st_gyro -st_gyro_i2c -st_gyro_spi -st_magn -st_magn_i2c -st_magn_spi -st_pressure -st_pressure_i2c -st_pressure_spi -st_sensors -st_sensors_i2c -st_sensors_spi -starfire -stb0899 -stb6000 -stb6100 -ste10Xp -ste_modem_rproc -stex -stinger -stir4200 -stk1160 -stk3310 -stk8312 -stk8ba50 -stkwebcam -stm_console -stm_core -stmmac -stmmac-platform -stmpe-keypad -stmpe-ts -stowaway -stp -streamzap -stv0288 -stv0297 -stv0299 -stv0367 -stv0900 -stv090x -stv6110 -stv6110x -sun4i-codec -sundance -sungem -sungem_phy -sunhme -suni -sunkbd -sunrpc -sur40 -svgalib -sx8 -sx8654 -sx9500 -sym53c8xx -symbolserial -synaptics_i2c -synaptics_i2c_rmi4 -synaptics_usb -synclink_gt -synclinkmp -syscopyarea -sysfillrect -sysimgblt -sysv -t1pci -t5403 -target_core_file -target_core_iblock -target_core_mod -target_core_pscsi -target_core_user -tc3589x-keypad -tc74 -tc90522 -tca6416-keypad -tca8418_keypad -tcm_fc -tcm_loop -tcm_qla2xxx -tcm_usb_gadget -tcp_bic -tcp_cdg -tcp_dctcp -tcp_diag -tcp_highspeed -tcp_htcp -tcp_hybla -tcp_illinois -tcp_lp -tcp_scalable -tcp_vegas -tcp_veno -tcp_westwood -tcp_yeah -tcrypt -tcs3414 -tcs3472 -tda10021 -tda10023 -tda10048 -tda1004x -tda10071 -tda10086 -tda18212 -tda18218 -tda18271 -tda18271c2dd -tda665x -tda7432 -tda8083 -tda8261 -tda826x -tda827x -tda8290 -tda9840 -tda9887 -tda998x -tdfx -tdfxfb -tdo24m -tea -tea575x -tea5761 -tea5767 -tea6415c -tea6420 -team -team_mode_activebackup -team_mode_broadcast -team_mode_loadbalance -team_mode_random -team_mode_roundrobin -tef6862 -tehuti -tekram-sir -teranetics -test-hexdump -test-kstrtox -test-string_helpers -test_bpf -test_firmware -test_module -test_power -test_printf -test_static_key_base -test_static_keys -test_udelay -test_user_copy -tg3 -tgr192 -thmc50 -thunder_bgx -thunderbolt -ti-adc081c -ti-adc128s052 -ti_am335x_adc -ti_am335x_tsc -ti_am335x_tscadc -ti_dac7512 -ti_usb_3410_5052 -tifm_7xx1 -tifm_core -tifm_ms -tifm_sd -timeriomem-rng -tipc -tlan -tm6000 -tm6000-alsa -tm6000-dvb -tmdc -tmp006 -tmp102 -tmp103 -tmp401 -tmp421 -toim3232-sir -torture -toshsd -touchit213 -touchright -touchwin -tpci200 -tpm-rng -tpm_atmel -tpm_i2c_atmel -tpm_i2c_infineon -tpm_i2c_nuvoton -tpm_infineon -tpm_st33zp24 -tpm_st33zp24_i2c -tpm_st33zp24_spi -tps40422 -tps51632-regulator -tps6105x -tps6105x-regulator -tps62360-regulator -tps65010 -tps65023-regulator -tps6507x -tps6507x-regulator -tps6507x-ts -tps65090-charger -tps65090-regulator -tps65217_bl -tps65217_charger -tps65218 -tps65218-pwrbutton -tps65218-regulator -tps6524x-regulator -tps6586x-regulator -tps65910-regulator -tps65912-regulator -tps80031-regulator -trancevibrator -trf7970a -tridentfb -ts2020 -ts_bm -ts_fsm -ts_kmp -tsc2004 -tsc2005 -tsc2007 -tsc200x-core -tsc40 -tsl2550 -tsl2563 -tsl2583 -tsl2x7x_core -tsl4531 -tsys01 -tsys02d -ttm -ttpci-eeprom -ttusb_dec -ttusbdecfe -ttusbir -tua6100 -tua9001 -tulip -tuner -tuner-simple -tuner-types -tuner-xc2028 -tunnel4 -tunnel6 -turbografx -tvaudio -tveeprom -tvp5150 -tw2804 -tw68 -tw9903 -tw9906 -tw9910 -twidjoy -twl-regulator -twl4030-madc -twl4030-madc-hwmon -twl4030-pwrbutton -twl4030-vibra -twl4030_charger -twl4030_keypad -twl4030_madc_battery -twl4030_wdt -twl6030-gpadc -twl6040-vibra -twofish_common -twofish_generic -typhoon -u132-hcd -u_ether -u_serial -uartlite -uas -ubi -ubifs -ucb1400_core -ucb1400_ts -ucd9000 -ucd9200 -uda1342 -udc-core -udc-xilinx -udf -udl -udlfb -udp_diag -udp_tunnel -ueagle-atm -ufs -ufshcd -ufshcd-pci -ufshcd-pltfrm -uhid -uio -uio_aec -uio_cif -uio_dmem_genirq -uio_mf624 -uio_netx -uio_pci_generic -uio_pdrv_genirq -uio_pruss -uio_sercos3 -uli526x -ulpi -umc -umem -ums-alauda -ums-cypress -ums-datafab -ums-eneub6250 -ums-freecom -ums-isd200 -ums-jumpshot -ums-karma -ums-onetouch -ums-realtek -ums-sddr09 -ums-sddr55 -ums-usbat -unix_diag -upd64031a -upd64083 -us5182d -usb-serial-simple -usb-storage -usb3503 -usb8xxx -usb_8dev -usb_debug -usb_f_acm -usb_f_ecm -usb_f_ecm_subset -usb_f_eem -usb_f_fs -usb_f_hid -usb_f_mass_storage -usb_f_midi -usb_f_ncm -usb_f_obex -usb_f_phonet -usb_f_printer -usb_f_rndis -usb_f_serial -usb_f_ss_lb -usb_f_uac1 -usb_f_uac2 -usb_f_uvc -usb_gigaset -usb_wwan -usbatm -usbdux -usbduxfast -usbduxsigma -usbhid -usbip-core -usbip-host -usbkbd -usblcd -usbled -usblp -usbmisc_imx -usbmon -usbmouse -usbnet -usbserial -usbsevseg -usbtest -usbtmc -usbtouchscreen -usbtv -usbvision -usdhi6rol0 -userio -userspace-consumer -ushc -uss720 -uvcvideo -uvesafb -uwb -v4l2-common -v4l2-dv-timings -v4l2-flash-led-class -v4l2-mem2mem -vcan -vcnl4000 -ves1820 -ves1x93 -veth -vexpress -vf610_adc -vfio -vfio-amba -vfio-pci -vfio-platform -vfio-platform-amdxgbe -vfio-platform-base -vfio-platform-calxedaxgmac -vfio_iommu_type1 -vfio_virqfd -vgastate -vgem -vgg2432a4 -vhci-hcd -vhost -vhost_net -vhost_scsi -via -via-rhine -via-sdmmc -via-velocity -via686a -videobuf-core -videobuf-dma-sg -videobuf-dvb -videobuf-vmalloc -videobuf2-core -videobuf2-dma-contig -videobuf2-dma-sg -videobuf2-dvb -videobuf2-memops -videobuf2-v4l2 -videobuf2-vmalloc -videodev -vim2m -viperboard -viperboard_adc -virtio-gpu -virtio-rng -virtio_input -virtio_scsi -virtual -visor -vitesse -vivid -vlsi_ir -vmac -vme_pio2 -vme_tsi148 -vme_user -vme_vmivme7805 -vmk80xx -vmxnet3 -vp27smpx -vport-geneve -vport-gre -vport-vxlan -vrf -vringh -vsock -vsxxxaa -vt1211 -vt6655_stage -vt6656_stage -vt8231 -vt8623fb -vub300 -vx855 -vxge -vxlan -vz89x -w1-gpio -w1_bq27000 -w1_ds2406 -w1_ds2408 -w1_ds2413 -w1_ds2423 -w1_ds2431 -w1_ds2433 -w1_ds2760 -w1_ds2780 -w1_ds2781 -w1_ds28e04 -w1_smem -w1_therm -w5100 -w5300 -w6692 -w83627ehf -w83627hf -w83781d -w83791d -w83792d -w83793 -w83795 -w83l785ts -w83l786ng -wacom -wacom_i2c -wacom_serial4 -wacom_w8001 -walkera0701 -wanxl -warrior -wcn36xx -wd719x -wdt87xx_i2c -wdt_pci -whc-rc -whci -whci-hcd -whiteheat -wil6210 -wimax -winbond-840 -wire -wishbone-serial -wl1251 -wl1251_sdio -wl1251_spi -wl1273-core -wl12xx -wl18xx -wlcore -wlcore_sdio -wlcore_spi -wm831x-dcdc -wm831x-hwmon -wm831x-isink -wm831x-ldo -wm831x-on -wm831x-ts -wm831x_backup -wm831x_bl -wm831x_power -wm831x_wdt -wm8350-hwmon -wm8350-regulator -wm8350_power -wm8350_wdt -wm8400-regulator -wm8739 -wm8775 -wm8994-core -wm8994-irq -wm8994-regmap -wm8994-regulator -wm97xx-ts -wp512 -wusb-cbaf -wusb-wa -wusbcore -x25 -x25_asy -x_tables -xc4000 -xc5000 -xcbc -xen-blkback -xen-evtchn -xen-fbfront -xen-gntalloc -xen-gntdev -xen-kbdfront -xen-netback -xen-privcmd -xen-scsiback -xen-scsifront -xen-tpmfront -xen_wdt -xenfs -xfrm4_mode_beet -xfrm4_mode_transport -xfrm4_mode_tunnel -xfrm4_tunnel -xfrm6_mode_beet -xfrm6_mode_ro -xfrm6_mode_transport -xfrm6_mode_tunnel -xfrm6_tunnel -xfrm_algo -xfrm_ipcomp -xfrm_user -xfs -xgene-dma -xgene-enet -xgene-rng -xgene_edac -xgifb -xhci-plat-hcd -xilinx-tpg -xilinx-video -xilinx-vtc -xilinx_can -xilinx_uartps -xillybus_core -xillybus_of -xillybus_pcie -xor -xpad -xr_usb_serial_common -xsens_mt -xt_AUDIT -xt_CHECKSUM -xt_CLASSIFY -xt_CONNSECMARK -xt_CT -xt_DSCP -xt_HL -xt_HMARK -xt_IDLETIMER -xt_LED -xt_LOG -xt_NETMAP -xt_NFLOG -xt_NFQUEUE -xt_RATEEST -xt_REDIRECT -xt_SECMARK -xt_TCPMSS -xt_TCPOPTSTRIP -xt_TEE -xt_TPROXY -xt_TRACE -xt_addrtype -xt_bpf -xt_cgroup -xt_cluster -xt_comment -xt_connbytes -xt_connlabel -xt_connlimit -xt_connmark -xt_conntrack -xt_cpu -xt_dccp -xt_devgroup -xt_dscp -xt_ecn -xt_esp -xt_hashlimit -xt_helper -xt_hl -xt_ipcomp -xt_iprange -xt_ipvs -xt_l2tp -xt_length -xt_limit -xt_mac -xt_mark -xt_multiport -xt_nat -xt_nfacct -xt_osf -xt_owner -xt_physdev -xt_pkttype -xt_policy -xt_quota -xt_rateest -xt_realm -xt_recent -xt_sctp -xt_set -xt_socket -xt_state -xt_statistic -xt_string -xt_tcpmss -xt_tcpudp -xt_time -xt_u32 -xtkbd -xts -xusbatm -xz_dec_test -yam -yealink -yellowfin -yurex -zaurus -zavl -zcommon -zd1201 -zd1211rw -zforce_ts -zfs -zhenhua -zl10036 -zl10039 -zl10353 -zl6100 -zlib -znvpair -zpios -zr364xx -zram -zunicode -zynq-fpga reverted: --- linux-raspi2-4.4.0/debian.master/abi/4.4.0-89.112/armhf/generic +++ linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-89.112/armhf/generic @@ -1,17609 +0,0 @@ -EXPORT_SYMBOL arch/arm/crypto/aes-arm 0x276b2f72 private_AES_set_encrypt_key -EXPORT_SYMBOL arch/arm/crypto/aes-arm 0x6c62e582 AES_decrypt -EXPORT_SYMBOL arch/arm/crypto/aes-arm 0xc30fcbed AES_encrypt -EXPORT_SYMBOL arch/arm/crypto/aes-arm 0xcf024ae9 private_AES_set_decrypt_key -EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0x45379c58 crypto_sha256_arm_finup -EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0xb10f07ee crypto_sha256_arm_update -EXPORT_SYMBOL arch/arm/lib/xor-neon 0x0f051164 xor_block_neon_inner -EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe -EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble -EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL crypto/mcryptd 0x28865246 mcryptd_arm_flusher -EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/atm/suni 0xa650d33a suni_init -EXPORT_SYMBOL drivers/bcma/bcma 0x4cd14fd2 bcma_core_dma_translation -EXPORT_SYMBOL drivers/bcma/bcma 0x960f54ec bcma_core_irq -EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str -EXPORT_SYMBOL drivers/block/paride/paride 0x0684dc1e pi_do_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x24db0c4c paride_register -EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x6b87548f pi_disconnect -EXPORT_SYMBOL drivers/block/paride/paride 0x749dfa0e pi_release -EXPORT_SYMBOL drivers/block/paride/paride 0x81d6919a pi_read_block -EXPORT_SYMBOL drivers/block/paride/paride 0x840ab44f pi_schedule_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x84172b8c pi_connect -EXPORT_SYMBOL drivers/block/paride/paride 0x99b7d6b8 pi_read_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xa530f41c pi_write_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -EXPORT_SYMBOL drivers/block/paride/paride 0xb4e1bcd4 pi_write_block -EXPORT_SYMBOL drivers/block/paride/paride 0xe1490ed1 paride_unregister -EXPORT_SYMBOL drivers/block/paride/paride 0xf9f24c3b pi_init -EXPORT_SYMBOL drivers/bluetooth/btbcm 0xa17b786e btbcm_patchram -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0a33695c ipmi_smi_add_proc_entry -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0dac46a5 ipmi_register_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fae3bac ipmi_addr_src_to_str -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4146f1fc ipmi_smi_watcher_register -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7c940023 ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8798e305 ipmi_get_smi_info -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg -EXPORT_SYMBOL drivers/char/nvram 0x0f28cb91 nvram_read_byte -EXPORT_SYMBOL drivers/char/nvram 0x17ff2c1d __nvram_read_byte -EXPORT_SYMBOL drivers/char/nvram 0x2adec1e0 __nvram_check_checksum -EXPORT_SYMBOL drivers/char/nvram 0x7da28f12 nvram_check_checksum -EXPORT_SYMBOL drivers/char/nvram 0x9ce3f83f nvram_write_byte -EXPORT_SYMBOL drivers/char/nvram 0xa8813189 __nvram_write_byte -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x23c1a99f st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x2480db83 st33zp24_remove -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x4cfc00eb st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xb9f81737 st33zp24_probe -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x551cdb73 xillybus_init_endpoint -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x97cb6ab3 xillybus_endpoint_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x98ee229a xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/crypto/caam/caam 0x1c758e97 caam_get_era -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x11c8f59b gen_split_key -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x31f85dd5 caam_jr_enqueue -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x4e5dc435 caam_jr_strstatus -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x6bf1e286 split_key_done -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x9ba9cb01 caam_jr_free -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xa7951e02 caam_jr_alloc -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x3c66f7f7 dw_dma_cyclic_start -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x6016dd0e dw_dma_get_dst_addr -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xb3da9a87 dw_dma_cyclic_prep -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xda1585c1 dw_dma_get_src_addr -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xdb8c3825 dw_dma_cyclic_free -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xeb7ea187 dw_dma_cyclic_stop -EXPORT_SYMBOL drivers/dma/pl330 0x2f44bd0d pl330_filter -EXPORT_SYMBOL drivers/edac/edac_core 0x903229d3 edac_mc_find -EXPORT_SYMBOL drivers/firewire/firewire-core 0x02a79390 fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0x04dd92ce fw_core_add_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x06fc3029 fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x102e8b80 fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1497c2b0 fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1be9259e fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1c8b102a fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0x20f5c70a fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2c6b325f fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4020dadd fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x407e1be1 fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x45f63f3a fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d5d4eca fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d8876ad fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4f13ade8 fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x57e47e54 fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x63a3f784 fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x718372d0 fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x77916ced fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7b025fa9 fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e431b14 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8e2567ea fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0x94b85747 fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9caf3f8b fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbd2a537f fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0xcaab6d07 fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0xcc8df061 fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xcdacb6ce fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd6ac033f fw_card_add -EXPORT_SYMBOL drivers/fmc/fmc 0x06f0fedf fmc_reprogram -EXPORT_SYMBOL drivers/fmc/fmc 0x2498b80c fmc_scan_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0x4304063c fmc_device_register_n -EXPORT_SYMBOL drivers/fmc/fmc 0x4c67a18c fmc_show_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0x7811e31c fmc_device_register -EXPORT_SYMBOL drivers/fmc/fmc 0x916d5464 fmc_device_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0x9c951c4f fmc_free_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0xaf1559de fmc_find_sdb_device -EXPORT_SYMBOL drivers/fmc/fmc 0xb5346bbe fmc_driver_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0xe758091f fmc_device_unregister_n -EXPORT_SYMBOL drivers/fmc/fmc 0xfe66196a fmc_driver_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x010ba202 drm_mode_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x01ea6713 drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x01efaeb3 drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04b5e8e5 drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04b80211 drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0565f54e drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x059d07d3 drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0657978a drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x068322b4 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06991989 drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07332ef0 drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07358e92 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0x078b5f9d drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0793bb1a drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0x085b83c9 drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08b23a0e drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09b7d254 drm_atomic_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09f62b37 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c6c5a3f drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eeaa6f8 drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f1fc605 drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fccafb1 drm_global_item_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10b5582f drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1212ecb9 drm_panel_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x129be1f2 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12c0a96d drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x13396edf drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1340ee45 drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x13c4253b drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14cadc9b drm_bridge_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1584514f drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1675a7ee drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dbd3d9f drm_atomic_legacy_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f717b36 drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f862d59 drm_mode_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x201f9286 drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2022c6d3 drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22ad0576 drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22c1d7a0 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22cb3e42 drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24ac2ef5 drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24de41b4 drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24e42696 drm_mode_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26e1a170 drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x270c9392 drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a2325bc drm_mm_dump_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c8c2798 drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d0f6ddf drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2eab702d drm_get_pci_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f8dc014 drm_mode_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3225e18f drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x342dcef2 drm_bridge_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x346127a7 drm_global_item_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34647eff drm_select_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34726176 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x347ebb57 drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34860200 drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34a99f2b drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x367e6a6a drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0x376d8d22 drm_pci_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38b461c8 drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38fdd883 drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a117cca drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a2237d8 drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a7b2583 drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a89433c drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b7a8f6b drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3be59899 drm_crtc_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e6d9286 drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f574cf3 drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4153c132 drm_unplug_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4246a587 drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x44a8a61a drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x476c9f23 drm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4777f0be drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48ca57fd drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48d76e27 drm_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49ecc649 drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a493d57 drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ad91170 drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c703643 drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ca3ea4d of_drm_find_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ce2434a drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ce5a029 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cedbf94 drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d155498 drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d8132ca drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fd7a12d drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51479134 drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51c88f74 drm_prime_sg_to_page_addr_arrays -EXPORT_SYMBOL drivers/gpu/drm/drm 0x520de052 drm_legacy_addmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54541cfc drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5486ae2a drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x56a5c20b drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0x570f2c16 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57a9fdd5 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x580a2364 drm_mode_validate_basic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59dee875 drm_modeset_unlock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a268d54 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a4ae78e drm_bridge_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d5aa62c drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x603ead6d drm_legacy_getsarea -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60a5c490 drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x61634761 drm_pci_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6169264b drm_legacy_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x61fac006 drm_gem_dumb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6695f56d drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x678bcfd4 drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x688a9706 drm_modeset_lock_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x689a4f43 drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x69b6347b drm_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a1b99db drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ab02bf0 drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b5d1513 drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b6c183a drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bbe7396 drm_mode_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bde367d drm_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c2cdb2e drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cc9ddd2 drm_panel_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e89b5d8 drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f00b538 drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f79cbba drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x719a262a drm_pci_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72f498dc drm_atomic_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72ff801d drm_calc_vbltimestamp_from_scanoutpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x734b94b9 drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0x735953cc drm_pci_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7418c3cc drm_framebuffer_unreference -EXPORT_SYMBOL drivers/gpu/drm/drm 0x766d02eb drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76c3d223 drm_legacy_rmmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7730179d drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7874ef94 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79605436 drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79928fd1 drm_vblank_no_hw_counter -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b9fbf85 drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7be6b5a0 drm_vblank_post_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c340129 drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d610d20 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d930265 drm_legacy_ioremap_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ef1c463 drm_irq_install -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f01e85a drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f36ee93 drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fd3883a drm_platform_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x804d9940 drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0x818f676b drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81f0f658 drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82d2566c drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83034d23 drm_mode_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8358de7c drm_ati_pcigart_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x844f618c drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x84cbddc8 drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x894e109c drm_legacy_rmmap_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x897ca313 drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8af7b56e drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b504de9 drm_property_unreference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e0b49d3 drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eb53779 drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f939bf5 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x937b63e3 drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9400ba81 drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x950b1a51 drm_legacy_ioremapfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9543b694 drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x954dfd1f drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x97b3f044 drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x981f9e7e drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9832eb4c drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x98c6e9ea drm_pci_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99debd40 drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bb9b0d8 drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c148575 drm_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa05309f2 drm_crtc_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0d01b22 drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa142614c drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa19430c9 drm_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa295eab9 drm_mode_create_dirty_info_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa362e9cf drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa386be21 drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3fd22e8 drm_atomic_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4013500 drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5adfd0e drm_bridge_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa74fec35 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7b51bff drm_mode_hsync -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7c1b739 drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8478908 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9018a30 drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab402bd5 drm_of_find_possible_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0xabaa3222 drm_pcie_get_max_link_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaca3f4d6 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xacbfee44 drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad17454b drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf2509d7 drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0ea068f drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11a86d0 drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1f7eef3 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2550e79 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb25e8346 drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb346e44c drm_modeset_legacy_acquire_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4339af5 drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4c1cf1f drm_ati_pcigart_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5856972 drm_modeset_lock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6381a23 drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7870727 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7a7ff5e drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb88095ea drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba48950d drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb4f4057 drm_legacy_ioremap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc04c992 drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcf1870e drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd83813b drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe10d988 drm_connector_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe29d124 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe586bfd drm_bridge_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbedd2ef5 drm_vblank_pre_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfea5292 drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0690cef drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc06cd37b drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc084b7f7 drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0987e95 drm_vblank_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0fa0eee drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc219e1a2 drm_platform_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2c609b7 drm_encoder_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2dddc1d drm_edid_to_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3a20262 drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5bfa529 drm_plane_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc799e296 drm_framebuffer_reference -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7d4b03b drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc847c222 drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8ade174 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8fa0967 drm_connector_unplug_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9987eca drm_pcie_get_speed_cap_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbc1d92e drm_legacy_addbufs_pci -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc9c7759 drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd2f8d89 drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd5cc886 drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce36b0eb drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce5e85c4 drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce6b2ff2 drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfc54dc4 drm_atomic_clean_old_fb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfcaf421 drm_atomic_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd00d2228 drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd10141ff drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1768fab drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd18a2d02 drm_legacy_idlelock_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd190c3db drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd38b3df2 drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd47274c8 drm_legacy_idlelock_take -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd64afb6f drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8118ee0 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8c23781 drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdac23ad5 of_drm_find_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb1fe716 drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbcb036c drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbec6ad1 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde7f9524 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdff2439a drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe147fa57 drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1cc2b88 drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe211b278 drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3316cd1 drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe61b55c2 drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe62d28d5 drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6aa617d drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea007ac4 drm_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb782856 drm_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed34b426 drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf16ba707 drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2b78605 drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2e89d72 drm_modeset_backoff_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2ec7a3e drm_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3f70b01 drm_dev_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf803368e drm_irq_uninstall -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf881d732 drm_of_component_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb02e9dc drm_bridge_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb645844 drm_property_reference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbbfddaa drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfec18d69 drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfee91dc4 drm_dev_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff1edb84 drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff6faa54 drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0108cee6 drm_fb_helper_add_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0bba74d3 drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fca3801 drm_fb_helper_remove_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1223108b __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12e6c06e __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1491acf1 drm_plane_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19696a14 __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x197e5f73 drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19891f65 drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a511cd8 __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20424c5a __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22093194 drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23c87c80 drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25c3f220 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2604a4dc drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x262e62bd drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x282c9347 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a313615 drm_pick_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a33f48a drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a919545 drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2acad8be drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b16f494 drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b6ff161 drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2de12739 drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e3106f7 drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e6a5e4f drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fdddf67 drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35d8d151 drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35ea05a8 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392b0ed9 drm_helper_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b2b5b2e __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3bc5128c drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e2ed783 drm_atomic_helper_framebuffer_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41bb1466 drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46d55b0a drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49533b4a drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49aa95a8 drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4afabbec drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d3c7c4f drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d4bf64a drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e3c2c4c drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e5dc052 drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50af785c drm_dp_aux_register_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x514f3a65 drm_dp_aux_unregister_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5190260e drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51f94928 drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55262995 drm_plane_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55bdad40 drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x583ebdda drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59c0bdeb drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c04e420 drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c8af522 drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c98d441 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ed660b7 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x605ac6f3 drm_kms_helper_poll_enable_locked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x606f3bb7 drm_fb_helper_release_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60ebce54 drm_helper_probe_single_connector_modes_nomerge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64915072 drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b529a0a drm_atomic_helper_legacy_gamma_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71baa571 drm_fb_helper_fill_fix -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x720cbaa9 drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x752faff7 drm_plane_helper_check_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7795e366 drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78add99a drm_atomic_helper_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a28d446 drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b4a3d9d drm_fb_helper_unlink_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e791984 drm_dp_link_power_up -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fdd9c87 drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8078ad91 drm_fb_helper_fill_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80aa2ed2 drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80f67a96 drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81a506bf drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81ed1ecb drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x854bc2e3 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85d17cbd drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x864d913c drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x873488e5 drm_helper_crtc_mode_set_base -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b931d64 drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ccbdb39 drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d3b6f71 drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d5a90d9 drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f8062f0 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8fda62f0 drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92853ec0 drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95c79af9 drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9733ed1a drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e389c0a drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ff9163b drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ff9ce19 drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2f93478 drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa357402f drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47ce465 drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6406966 drm_dp_link_probe -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa801b841 drm_primary_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae88f626 drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb18f4966 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb52ebe5d drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb96294c8 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbacfb305 drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbad202e1 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbcaaecd drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe5f82f7 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbecce3a3 drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc019bff4 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0b8d46d drm_dp_link_power_down -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3d56727 drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc434d66c drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4535f27 drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6797fb4 drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc81c370f drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca612d41 drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb842259 drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcdca34cc drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcea613b9 drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd04e1311 drm_fb_helper_single_add_all_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd08564d5 drm_atomic_helper_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd08e2a28 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd28aa748 drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4985992 drm_atomic_helper_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5884e9e drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd80d065c drm_dp_link_configure -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdab4dd5f drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd01acb2 drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd8e35d5 drm_atomic_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfd89a2c drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe02bc64f drm_primary_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe255c12d drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe39f86be drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4b6d1cf drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5648dcd drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb9edcbd drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee4643b5 drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeedeede0 drm_dp_mst_port_has_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf281f025 drm_helper_crtc_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2c751ed drm_has_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5e61903 drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf838955b drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa00fa23 drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbb5c8d4 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfca8b5d4 drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe0fd795 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe943356 drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x05d7e58f ttm_bo_swapout_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132b05be ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x136ec7fa ttm_suspend_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1ab77a40 ttm_mem_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1cdd3c43 ttm_dma_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x23c9df99 ttm_tt_set_placement_caching -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x25964ffe ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2c7fac9b ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x307c631f ttm_mem_io_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x31a3ea89 ttm_bo_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x443e5993 ttm_prime_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4628b006 ttm_read_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x473f5365 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4836d47c ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4ecdce82 ttm_pool_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x51822248 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cf59609 ttm_bo_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5ea486ab ttm_mem_io_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67b1d568 ttm_bo_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6902850e ttm_bo_dma_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a32978a ttm_bo_del_sub_from_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c0ec969 ttm_lock_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x717ada9e ttm_tt_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7c1645a0 ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8173dc20 ttm_object_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8226cde4 ttm_bo_synccpu_write_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8589758d ttm_suspend_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86bb8a6c ttm_read_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x918952b4 ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9272459a ttm_mem_global_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d0eb91 ttm_ref_object_add -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9db1c07b ttm_dma_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa363b9d0 ttm_bo_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa5210d5c ttm_fbdev_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa8b80521 ttm_bo_move_ttm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb33bb868 ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb42d22df ttm_page_alloc_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb53f741e ttm_mem_io_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xba97a114 ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbcd39992 ttm_bo_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbfb82835 ttm_bo_clean_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc14da548 ttm_mem_global_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc3276602 ttm_mem_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc537e0eb ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc643c86b ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc968d68f ttm_write_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc9dfa815 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xca107145 ttm_bo_manager_func -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcdefb69c ttm_bo_mem_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd082b8a8 ttm_bo_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe3721125 ttm_bo_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe44b4c56 ttm_bo_add_to_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe8a25dda ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeb09cd2b ttm_bo_init_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xec1f175c ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xed97e3dd ttm_bo_synccpu_write_grab -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xefc4df0d ttm_vt_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf0d5ec82 ttm_bo_evict_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf130b6c2 ttm_mem_io_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf48bab58 ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf5acb62c ttm_bo_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf694a4c4 ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf9685ae0 ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbf94d9b ttm_pool_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfd7484d3 ttm_write_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfe8cc064 ttm_vt_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xff187da0 ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0289b35e host1x_job_alloc -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2ecc8b30 host1x_driver_unregister -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x43799a4e tegra_mipi_calibrate -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4625cf85 host1x_channel_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x48485133 host1x_channel_put -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x50acae6e host1x_syncpt_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x519a8f03 host1x_job_put -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x51db3529 host1x_syncpt_free -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x525b42c4 host1x_job_add_gather -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5586317e host1x_device_exit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x58daa8b8 host1x_job_submit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6a709747 host1x_syncpt_read_min -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x734b7f43 host1x_job_pin -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8809becb host1x_syncpt_wait -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8d4b1ff5 host1x_device_init -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x91c8174f host1x_syncpt_read_max -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9451a33e tegra_mipi_free -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9729fa7a host1x_syncpt_incr_max -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa158b6e7 host1x_syncpt_base_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xaabb2c87 tegra_mipi_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xaf2c1f41 host1x_syncpt_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb9215872 host1x_syncpt_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbcf66a71 host1x_syncpt_get_base -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbf98005a host1x_channel_free -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc197256c host1x_syncpt_read -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc61f6cf9 host1x_driver_register_full -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xdacd6cb9 host1x_job_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe13ab211 host1x_job_unpin -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf7c32bf9 host1x_channel_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xfb8e5929 host1x_syncpt_incr -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xfe790f9a host1x_client_unregister -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xffb8f20a host1x_client_register -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0e2a6864 sch56xx_read_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0f5877d4 sch56xx_read_virtual_reg16 -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe5022f95 sch56xx_read_virtual_reg12 -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe5eb20f6 sch56xx_watchdog_register -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xed1d2a08 sch56xx_write_virtual_reg -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x36467e87 i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x58c79a63 i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xaf543dac i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x3a3faa3e i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xc7f6660f i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x5c4e2474 amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0ce9cee8 mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x194c2c60 mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1dfff8e0 mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x2a28b4f6 mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6b866f3e mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7f6ff198 mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x868f847f mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x93ed25c0 mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x96df12e2 mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xab7434cd mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc7bc96e6 mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc9f8f647 mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd159f3f4 mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xec1ec49d mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xeef6cd05 mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xef97fd1a mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xbc7bca39 st_accel_common_remove -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xfeec35c6 st_accel_common_probe -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x8bda5f46 iio_triggered_buffer_setup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xe0991ecd iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x1e2a29c4 devm_iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x8dce71af devm_iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xd1e36663 iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xf17cc5ac iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x3f0d0d1d hid_sensor_read_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x58ccbea9 hid_sensor_read_poll_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x687471a9 hid_sensor_write_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x98aedba8 hid_sensor_read_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xbea5e947 hid_sensor_parse_common_attributes -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xd51021b8 hid_sensor_write_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x4be3d45d hid_sensor_power_state -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x9f2d8da7 hid_sensor_pm_ops -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xb0aec6d0 hid_sensor_remove_trigger -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xc909d841 hid_sensor_setup_trigger -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x050a519d ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x158e4aef ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x1fcb3e40 ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3f7ba406 ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x47eba7d3 ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x7dd84db9 ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb30a0613 ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xea768ae3 ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xfa3ffbc3 ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x47308a4a ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x9ccbfe1a ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xbf9443a5 ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xf33177e2 ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xfbd44f41 ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x105c0766 ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xda0e5c0a ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xed3b028a ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0fcaf826 st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1413e8fd st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x21845439 st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x278b32ce st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x33abebb2 st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3b41f075 st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x578c48f9 st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5cf745da st_sensors_get_buffer_element -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x63b34f55 st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x743d140f st_sensors_check_device_support -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xaf8aa79b st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb27b1713 st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb5a2946f st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbd98fb5e st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc16307e4 st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc2349896 st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xdb1a032e st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x26294b4f st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x51a034b6 st_sensors_of_i2c_probe -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xabea387e st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xc16d8fe2 st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xd07ad07f st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x389e6edc hts221_probe -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x3ab91ae2 adis_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xdba1f8d6 adis_enable_irq -EXPORT_SYMBOL drivers/iio/industrialio 0x038a569c iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x15f5c108 iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x19f61117 iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0x25c78150 iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0x27ea3a65 iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x2904e6e2 iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0x2a96a879 iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x34b724fc iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0x42f1b21c iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x599fe5eb iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x64766737 iio_triggered_buffer_predisable -EXPORT_SYMBOL drivers/iio/industrialio 0x7e0f888e iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0x81c97d73 iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0x888a12b3 iio_triggered_buffer_postenable -EXPORT_SYMBOL drivers/iio/industrialio 0x9755a87a iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0xdcca3995 iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xe15bc1e9 iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x84c2cec5 iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x84de06e3 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x800993f8 st_magn_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xb2e1ea22 st_magn_common_remove -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xea7d3e86 ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x35cf8970 st_press_common_remove -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x99849c5f st_press_common_probe -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x049ace30 rdma_addr_find_smac_by_sgid -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x5347cc38 rdma_addr_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x67efd325 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x7c97712c rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x7df81f32 rdma_addr_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x80d6e332 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xd9108c98 rdma_copy_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x02aef254 ib_send_cm_apr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x261cf979 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x29dbed46 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3b9ea293 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5560220b ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x56e29cb6 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6b2b0283 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6e3d8eb5 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9239e093 cm_class -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb470f0e4 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbac9b2af ib_send_cm_lap -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc4ba68fa ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe76cce06 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe84dd8c2 ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf39cbf8e ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf8fbf7eb ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf9765985 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfbc8ee17 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02991324 ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x054cf132 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06a6166b ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08a3fe01 ib_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09d23fd9 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b545c93 ibnl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f4a4e00 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1002e477 ib_dealloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12420b85 ib_umem_page_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a271da9 ib_destroy_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a6a2dd2 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b3bf771 ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1eba5288 ib_query_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1edd91c0 ib_modify_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f74be25 ib_init_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24948656 ib_fmr_pool_map_phys -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25d4ec01 ib_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27c3c03b ib_create_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29aa159c ib_create_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3306996f ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37097de9 ib_umem_odp_map_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3af07ced ib_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3eb0e3e8 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4064998d ibnl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44c5ef99 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49f06040 ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a4ca936 ib_dealloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4bee5a43 ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d515689 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f3a9a2f ib_query_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57e7d4fe ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a198fe2 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5bf7faf2 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c917623 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e1d0e72 ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x627b0a27 ibnl_add_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x658919a1 ib_fmr_pool_unmap -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b85600d ib_destroy_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d2cb1de ib_resolve_eth_dmac -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6dd7844c ib_dealloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f037c92 ib_get_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75f38c86 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76ee3af5 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a5809fe ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82a0972d ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b416346 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8cafe996 ib_create_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d280580 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8dc88541 ib_get_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x901f3837 ib_destroy_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93b64fe1 ib_destroy_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x969875a7 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a5b3a38 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b8913fd ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e00cbd5 ib_alloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1b08fb8 ib_find_cached_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa22e9132 ib_dereg_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xadbea68f ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf29ba78 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3956bb7 ib_get_dma_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3a96cc9 ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb525ef58 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb87cfa31 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8b00e44 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8fc1494 ib_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbde39149 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc38f12d1 ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc49b487b ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce880c53 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfff4660 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8ee3960 ib_find_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1bb89b6 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3141a2a ib_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe75f7ad2 ib_alloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe88f80ea ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8b6d92c ib_create_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea03ce57 ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed5f8d31 ib_dealloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf274f027 ib_find_gid_by_filter -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2ccc606 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6171a01 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6746bae ib_alloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa44970d ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x0a271f68 ib_cancel_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x20b0f59b ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x29d91ebe ib_redirect_mad_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2ec44615 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x307a9c0b ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x3cf8228c ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x434e15a0 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x4430d8e0 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x59799dca ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xbc2c1e16 ib_register_mad_snoop -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc37394fb ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xcc299d66 ib_process_mad_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xfb14f73f ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x23cbeb3d ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x42f13df8 ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x87c28832 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x89bff619 ib_sa_service_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9e7aad54 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xb31972ea ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xb6758e97 ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xd93ece2c ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xde9e1b2c ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xe0551454 ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xebb5545b ib_init_ah_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x09283464 ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbb0199b7 ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x142ccdd2 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1a61f009 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5a3ba630 iwpm_add_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6224e13c iwpm_remote_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x743192d6 iwpm_add_and_query_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7589f40f iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x79ddfa7d iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x83de0cc8 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x86a2dcaa iwpm_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x959fef81 iwpm_register_pid_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x982c25f0 iwpm_ack_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xaa2bdff0 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xcef73a13 iwpm_mapping_error_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd5101dbc iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfa9a2882 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0cbe1a6c rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1567deb8 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1be3e76a rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5ded1704 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6056343b rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x619d8b4f rdma_set_ib_paths -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x67270bcb rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x714e402c rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x76a80f10 rdma_create_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7f47fc51 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8089040e rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8353aa9d rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8f5f60ea rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa963f12f rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb50ed48d rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb6b654ed rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc0b675ae rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xda1318b9 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xde0b61e6 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xeca01221 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfe93874e rdma_leave_multicast -EXPORT_SYMBOL drivers/input/gameport/gameport 0x0b4fcd2b __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x2be8c6c8 gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x2cf3b855 gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x4acbf29e __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x4c7d7618 gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0xb7b5521f gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0xbbf74e8d gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0xc7aaaad8 gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0xd73dcb83 gameport_stop_polling -EXPORT_SYMBOL drivers/input/input-polldev 0x0da0bf70 input_unregister_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x4215acb5 input_register_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x46cdbf7d input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x64a02901 input_free_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x91706c8d devm_input_allocate_polled_device -EXPORT_SYMBOL drivers/input/matrix-keymap 0x2abfdda6 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x2df2b4e8 ad714x_probe -EXPORT_SYMBOL drivers/input/misc/ad714x 0x38fff33b ad714x_disable -EXPORT_SYMBOL drivers/input/misc/ad714x 0x3cac8351 ad714x_enable -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xaa04a69e cma3000_init -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/sparse-keymap 0x33055473 sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0x405e3ba4 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x6adbd770 sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x83a0d4da sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0xa9fad94e sparse_keymap_free -EXPORT_SYMBOL drivers/input/sparse-keymap 0xf8a6e255 sparse_keymap_setup -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x297aac70 ad7879_pm_ops -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x3bf9716c ad7879_probe -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x24fba3a6 attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x3ccc3d7f capi20_put_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x530a2f5f capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x5c0f91a9 capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x622bf2bc capi20_register -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x86b31ac4 capi_ctr_resume_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8a9553f7 capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa7c4fd6c capi_message2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc10fe128 cdebbuf_free -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe4cd47bc detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8ad9bd1 capi_cmsg2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xea1ba492 capi_ctr_suspend_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xedcc9e70 capi20_release -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0f5a78e0 b1_load_t4file -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x1e120002 b1ctl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2be8fa3c b1_free_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2c08bf8c avmcard_dma_free -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2fa67516 b1_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x31102b4b b1_loaded -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x5bc11408 b1_parse_version -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x74e35ab6 b1_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x84219686 b1_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x865e2ae1 b1_getrevision -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xcb36a521 b1_alloc_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe4b3e79a b1_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xec4f2578 b1_load_config -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa58e874 avmcard_dma_alloc -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfe94bb23 b1_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x11cf825b b1dma_reset -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x65b25110 b1dma_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x87c9b227 b1dma_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xb5c4cf21 t1pci_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xca333e7c b1dma_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xcb800970 b1dma_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xe6c0a11e b1dma_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xe6cb7e8f b1pciv4_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xf5ad234b b1dmactl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x4b64bd28 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x8e9f01db mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xdc60217b mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xe0157fd7 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x910f89bb mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xdcea4116 mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6fe1ca04 FsmDelTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9f987c85 FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xa1bc94b9 FsmInitTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xb0f11f45 hisax_init_pcmcia -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x34cb51d7 isac_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x8d61be30 isacsx_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xd9f56710 isacsx_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xdb2799bc isac_init -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xee6c84a4 isac_irq -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x903df726 isdn_ppp_register_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xd4b5fffe register_isdn -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xd591d83c isdn_ppp_unregister_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x12589302 mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x21d6e05c get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x267e9fc2 recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2b9cb5a6 recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3732f434 dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x38791174 create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3faa367e bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4c01227c get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50614c0c mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x75a92a26 mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7b3515e3 mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x80b9a682 mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9041e0da queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x94d683a3 recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9ea122ab mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9eb80405 mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb9c5ebf9 recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc37aa1bb mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc920ec04 recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcfd376e4 mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe713beb7 bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xeaef3fe9 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf8508270 mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x05ff9d4f omap_mbox_request_channel -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x69a67088 omap_mbox_restore_ctx -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xa07dde6c omap_mbox_enable_irq -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xab3fe809 omap_mbox_disable_irq -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xdbadd781 omap_mbox_save_ctx -EXPORT_SYMBOL drivers/md/bcache/bcache 0x05a16f03 closure_sub -EXPORT_SYMBOL drivers/md/bcache/bcache 0x10dc0d06 bch_bset_insert -EXPORT_SYMBOL drivers/md/bcache/bcache 0x21c7828c bch_btree_sort_partial -EXPORT_SYMBOL drivers/md/bcache/bcache 0x3361c614 bch_bset_sort_state_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x66d28e22 bch_btree_iter_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x6969b5d8 bch_bset_init_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7b55ca4f bch_bset_fix_invalidated_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7c6a80d4 closure_put -EXPORT_SYMBOL drivers/md/bcache/bcache 0x9e8b3cee bch_btree_keys_alloc -EXPORT_SYMBOL drivers/md/bcache/bcache 0xa3456dd1 closure_wait -EXPORT_SYMBOL drivers/md/bcache/bcache 0xab2d2b84 bch_btree_insert_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0xad29a6f5 bch_bset_build_written_tree -EXPORT_SYMBOL drivers/md/bcache/bcache 0xaec09a2b bch_bkey_try_merge -EXPORT_SYMBOL drivers/md/bcache/bcache 0xaf77343c bch_btree_keys_free -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc04554f7 bch_btree_iter_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc6130b74 closure_sync -EXPORT_SYMBOL drivers/md/bcache/bcache 0xca580595 bch_btree_keys_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe47e0829 __bch_bset_search -EXPORT_SYMBOL drivers/md/bcache/bcache 0xf8fd4bac bch_btree_sort_lazy -EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers -EXPORT_SYMBOL drivers/md/dm-bufio 0xa7978f56 dm_bufio_forget -EXPORT_SYMBOL drivers/md/dm-log 0x140bad47 dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0x1b8c8feb dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0x5c5aa83c dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0xf4aadcdf dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x060ff306 dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0x437878c7 dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x589cc040 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x75f6c244 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0xa991785f dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0xd097ae02 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/raid456 0x9a364111 raid5_set_cache_size -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0deb2df6 flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x20337697 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2b41f319 flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x436ca701 flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x62450d2a flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x64a2445c flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x93211c20 flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9416438b flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xaa832bfd flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xde4cbf70 flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe3223fd7 flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf9ee3264 flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfde1df00 flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update -EXPORT_SYMBOL drivers/media/common/cx2341x 0x30cb4cd7 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0x4120cf9c cx2341x_handler_setup -EXPORT_SYMBOL drivers/media/common/cx2341x 0x60fa3099 cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu -EXPORT_SYMBOL drivers/media/common/cx2341x 0xc7bb4366 cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0xee4a214c cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x2dd75cf4 cypress_load_firmware -EXPORT_SYMBOL drivers/media/common/tveeprom 0x3f26a97a tveeprom_read -EXPORT_SYMBOL drivers/media/common/tveeprom 0xdd92c879 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x03b54d78 dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x091163f1 dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x10fee097 dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1b76bf02 dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x24cab32c dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x28c40493 dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x344908d4 dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3656cb10 dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x368e634e dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3bf108b1 dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5efab63b dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x629f9d31 dvb_ringbuffer_read_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6821b35f dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6866e611 dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6a6ee265 dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6b5ae76d dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x72180695 dvb_ringbuffer_flush_spinlock_wakeup -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x75b5d118 dvb_dmx_swfilter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8633f37b dvb_ringbuffer_flush -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x86b9c7d8 dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8b50d08d dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x95ff7a2a dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9850cb88 dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x989a080a dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9c19040b dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa4b7b473 dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb018713d dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb39222a9 dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbcc3cd18 dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd4869be4 dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd78c9e83 dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xda3771ee dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdb1a8bd4 dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdc094c39 dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdd50c8e2 dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe8168683 dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf48116c6 dvb_ringbuffer_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xff444eaf dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x026d9838 af9013_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x94ba0dc9 ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x07f1d893 atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0e097f5f au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x88a7d470 au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x8c3935bb au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x8feebae1 au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa149a85c au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa6796574 au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xadfee8fa au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb4cfe611 au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe4f54fb9 au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x886fa9dd au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x0fbb3384 bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xe2caf1c7 cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xb0b93416 cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xdd1f16f5 cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x72ad6948 cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x86c3c1b5 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xe5956330 cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xe9077f1c cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x641a298b cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xb3b075d4 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x8d0292fc cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x3a3ea17b cxd2841er_attach_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x51db1db3 cxd2841er_attach_t -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x950d27e8 cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x4555e6f0 dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xb174c64b dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xb290b96c dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xe8e3d227 dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xf0ecc719 dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0a714d7c dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x11eda209 dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3574520c dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x50b353e7 dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x529f70ad dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x52d743b9 dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x683f2c43 dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8132f3b4 dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8e5d3851 dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9171d9cf dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x926eb1ce dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xaba08e18 dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc1d5a63f dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd733f282 dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xea0a8696 dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x737642fc dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x1e429a91 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x281c8895 dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x4831f8b3 dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x6964609c dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x83a598ab dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x8c82d313 dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x14fe5062 dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x3c30b3d8 dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xbb9a1cc9 dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xeb5d552d dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x6237a45f dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x69b76d7c dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x7b28adee dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xcce130b9 dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd0a4888c dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xecbbde22 dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xf68d829b dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x9c522fd6 drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xff645606 drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x98490131 drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xe89a099b ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xb06af602 dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xebdf4516 ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x630fc993 horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xdf406f97 isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x392cba26 isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x238abedb isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x61d68744 itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xa74076dd ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x1617e599 l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xbbcfa298 lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x78df03f7 lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x712c9bad lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xd8819e1b lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x52f2e731 lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x04dcc277 lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x53f35ed5 lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x9bd7855f lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x6e80ff4e lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x7239bd69 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xde0cdf06 m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x2e469d7c m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x3b91a392 mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x53c563f9 mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x76ac1a33 mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x424c2540 mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x02d51612 nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x0e0c9d11 nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xaccee66d or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xa68c9bbf or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xce79ce81 s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x0afebb62 s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x32783d26 s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xa8f38578 s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x14b62225 s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0x83a2d80e si2165_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x5ca98897 si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0xcde397b5 sp8870_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xecc816d4 sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x8f2ac7d4 stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xc5b36d51 stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x898cd6a0 stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x0c671e66 stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x65311dbf stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x57b63455 stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x30dc0dc3 stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xe63e0824 stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x169d474a stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x8beebb2e stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0xed9304da stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x092087fe stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x3992f98a tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xe063241c tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x485c480e tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xa7578218 tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xb5a91152 tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x64dac17f tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x2a080342 tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x3bc9f190 tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xc1cd4d0e tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xb95e4f73 tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x0007b843 ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x8dd57184 tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xa1ed6d34 ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xf47fd188 ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x6b08857b zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x1eee442e zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x1bd2a922 zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x1d566ead flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x386dfa75 flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x3d18075d flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9f28c021 flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xa1699d03 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc82ae31d flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xeaece34e flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x34ac12a0 bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x5c90ee17 bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xce191e61 bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xfe95b4b3 bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x7cab5172 bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xb2e4132d bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xfd716e82 bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x122c01f3 dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1af5e7ae dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x29ef1a4c dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x2afbe722 read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x41270882 dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7e5b1cdf rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9ef440ea write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd7a80240 dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf166be68 dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x54a8982b dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x359be1ea cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xc1fa39cb cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xd0d2b91a cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe0849f24 cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe6ae0a48 cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x2dcf4ede altera_ci_init -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x16fa3422 cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x1e1ef148 cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x347d0be8 cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xb46dd58a cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xda06e059 cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe4cb2e28 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xeb2ceb91 cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x5685e706 vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x6ef6b975 vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x2a7b56f4 cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x54865698 cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xd33bfcdc cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xf89b41c4 cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x16c691c2 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x2597f971 cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x28fdccd9 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x511f95f3 cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x5459e197 cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x995e2d26 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xbd002449 cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x00502f81 cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0d81ecd2 cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x307fd523 cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x55568643 cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x55d255de cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x62a7406f cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x76148f10 cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x81d62fb0 cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x84332fab cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8a312b1e cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x906da14d cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa85c118f cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb48542ae cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbc6697dc cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc7ce11fe cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd2b5295f cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd49bbecd cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd7ee5176 cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd8c8199b cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe76d8f09 cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x02800abb ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0ac6e138 ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0f402c4e ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2defb8a9 ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3008e911 ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x359028df ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x46306123 ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5010c614 ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5b02b870 ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6b23183b ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6fd520d3 ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7a5d656e ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x83ed19a9 ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xae4223c8 ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd30c1027 ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xdb996296 ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfc2bda96 ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x02378e43 saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0cc3bc31 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x138ac499 saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x17c919b7 saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x36b07e6b saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3c5d4db3 saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb4b9f90a saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb6f32d13 saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb8dff0ab saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xbd756f3b saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xcd236610 saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd84653e8 saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x081d14ad ttpci_eeprom_parse_mac -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x36cc5379 soc_camera_power_init -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x6d7224a4 soc_camera_host_unregister -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x9acd2114 soc_camera_power_off -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xa97dd954 soc_camera_xlate_by_fourcc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xcb483f02 soc_camera_host_register -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xecb21a00 soc_camera_apply_board_flags -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xfa8af359 soc_camera_power_on -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0x021df6c3 soc_camera_calc_client_output -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0x15abd9a8 soc_camera_client_g_rect -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0xb3d167f2 soc_camera_client_s_crop -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0xf7550b6c soc_camera_client_scale -EXPORT_SYMBOL drivers/media/radio/tea575x 0x166995de snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0x2233a24d snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0x5346f306 snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x71f44e67 snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0x73334a36 snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0x7a70ddb2 snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xa2991250 snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x08e30053 lirc_dev_fop_write -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x3c99f3a4 lirc_dev_fop_open -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x493853e7 lirc_dev_fop_poll -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x8bd3cf35 lirc_get_pdata -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x9afc59b2 lirc_register_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xad148c21 lirc_dev_fop_read -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xc1c87948 lirc_dev_fop_ioctl -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xfb90dbb6 lirc_dev_fop_close -EXPORT_SYMBOL drivers/media/rc/rc-core 0x3ca0161a ir_raw_handler_unregister -EXPORT_SYMBOL drivers/media/rc/rc-core 0x8c1af3d7 ir_raw_handler_register -EXPORT_SYMBOL drivers/media/tuners/fc0011 0xa3823075 fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0xa71b56de fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x32782f17 fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xd12817c3 fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xd73a47a6 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/max2165 0x53b2654e max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x2a22a1a7 mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0x7726ddaa mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0xf4eedb5e mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0x721a8efd mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x14622346 mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0xc7a7d9d5 qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0x193bfdf8 tda18218_attach -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0xc449e069 xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0xe91a6cd7 xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0x2379362a xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x073f0161 cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xb6669644 cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x02ec2051 dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x310f1952 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3491d348 dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3d9c4f7b dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x4a49846e dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8f5d9171 dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb49bbc3e dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb5296138 dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xfd676559 dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x07a241d4 dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x173afe06 dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x491a41e6 dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x5b7b2742 usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7c81b539 dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xaf3a1157 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf5b11110 dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x1aa36199 af9005_rc_decode -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x0d9e353e dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1150c64e dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1ab37409 dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x36da32c9 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3de1cb36 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4d29bc54 dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5c99f5e7 dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6b0cec50 dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8152f00d dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe44f2e77 dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfba44267 dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x2e9ed736 em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x8ac6e5cc em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x462a469c go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x48761eae go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7c38b13c go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa13f7b8e go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xaa29d4c6 go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xaefa7dd5 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe5c740dd go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf397d119 go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xfa2c9f75 go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x108b38b6 gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x1aa1fdc7 gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x38a62eb4 gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x4ae6e9c1 gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5c9f51b5 gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x618b3e11 gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x86a574f5 gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x97bc4d2a gspca_suspend -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x11f96d10 tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x348c3fd4 tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x4cb2d3a6 tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x12606c13 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x39a76dd9 ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x56f30622 v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xb3736f6b v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xbc6a0d83 v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x076c7861 videobuf_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x0a60d00d videobuf_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x4964570b videobuf_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x759d646f videobuf_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xb7859d6d videobuf_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xb96a9c12 videobuf_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x6cf39557 vb2_verify_memory_type -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x708e4dd0 vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x16c57655 vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x81a70627 vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xa233fb45 vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xde3e18d7 vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xdf6bf657 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xfdeb4576 vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0x9c980bea vb2_querybuf -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x00909b60 v4l2_subdev_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x00988eba __v4l2_clk_register_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x03fc8bc7 v4l2_clk_disable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x08e4c328 __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0b442b47 v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1326c14d v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x13aead98 v4l2_of_free_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x155c84b9 v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1631fbf5 v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x163adfad video_usercopy -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b9a5bdd video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1d031b87 v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1fd60137 v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x21fb3967 v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2257046f v4l2_subdev_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x264c8db0 v4l2_subdev_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2c428d59 v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2fb6993c v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x312d763e video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x328d60be v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36ac00ea v4l2_clk_get -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36d7dbe4 v4l2_of_alloc_parse_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36db6fb6 v4l2_clk_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3a523282 v4l2_of_parse_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3ef284b5 v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x41ef3f8c v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x42d1ed56 v4l2_clk_unregister_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x436e8249 v4l2_subdev_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4d07eae0 __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4e93e1fa v4l2_clk_set_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x51353f9d v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5400adef v4l2_clk_get_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5a565413 v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x658e4a20 v4l2_of_parse_link -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6ebf241a video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x74d1a8e6 v4l2_clk_put -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x75e859e8 v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x791b1b62 v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x799e067a v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7e579704 v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8550dd1e v4l2_subdev_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x88f5f1cb v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8c80ed03 v4l2_of_put_link -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8e38f70b v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x93c90c4f v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x981f33af v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9d6e0f02 __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9e2c04e1 v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9f6233c0 v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa5b6db15 v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaed3d373 v4l2_clk_enable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb2e4b01e v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb92b5466 v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb9b40737 v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbe491161 v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc02e1960 v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc74a1c6d v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc86f58ae __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xce834504 v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd09ee68e v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd27cbc5d v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd64aa5f5 video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd974537e v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xde2a5b0a v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe6c36299 v4l2_clk_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xebd2af72 v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xebf73caa video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xee5b36b8 v4l2_ctrl_add_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xef16b461 v4l2_subdev_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf01ffcf8 v4l2_subdev_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf4294126 video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf4885160 v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xffaf2111 __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/memstick/core/memstick 0x04e49e84 memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x1a173846 memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x28eb06e2 memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x30d70c3a memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5b5c17c8 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x665e4758 memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x832b6563 memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x8b166f47 memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0x8c9b5da4 memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xb938df24 memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xbd2cb131 memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xc2ed3012 memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xe401d4b8 memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xfcf9c3de memstick_next_req -EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x09b94275 mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x14ecada6 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1959b61b mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2dac03dc mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x322b3b41 mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x35ce9b3b mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x440d3b8d mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x48e8f48e mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x59925147 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5faa3796 mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x61ad9ad3 mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x63c82129 mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x69dc96e1 mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6ad885eb mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x739d6bd2 mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x76173c54 mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7ed88098 mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fabf903 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x832c20b0 mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x84d074ba mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x87f74971 mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x924fd1e6 mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xabb0520e mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd8ce7478 mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdb3f8b87 mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe9884c2f mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xeca35028 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf1cfc1b9 mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf985cc00 mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x04003de8 mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0e997a43 mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x28abfd4b mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3e807c1f mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x422ee039 mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4a7ee347 mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4f68d2a9 mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x55ec629a mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5618a4e1 mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x57d97a4c mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5a28d640 mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x63ce65f8 mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x70f9199c mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x76bf4de8 mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7c41ff87 mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8ae0184c mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8f3c9fb8 mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x95b46c38 mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x972389c7 mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9aec30b4 mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9df8a2f1 mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa1588a9a mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xabdefc5f mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb3f37cce mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc2fce3c0 mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xca8532a5 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd306b2a5 mptscsih_host_attrs -EXPORT_SYMBOL drivers/mfd/cros_ec 0x00451549 cros_ec_suspend -EXPORT_SYMBOL drivers/mfd/cros_ec 0xce04c8c7 cros_ec_resume -EXPORT_SYMBOL drivers/mfd/cros_ec 0xdc3a5e30 cros_ec_remove -EXPORT_SYMBOL drivers/mfd/cros_ec 0xf8d7e21a cros_ec_register -EXPORT_SYMBOL drivers/mfd/dln2 0x2b1079e9 dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0x36904b89 dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0x55515bdd dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x2094f4ae pasic3_read_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x8767b89f pasic3_write_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x12db3264 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x19a00a28 mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x512c5742 mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x575f32fd mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6052e9f9 mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7ec7bfb3 mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8758eb7d mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x905f8e5b mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb76fba14 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xba94e851 mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf2160755 mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/qcom_rpm 0xd042c9be qcom_rpm_write -EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 -EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 -EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib -EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led -EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw -EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x14622a5e wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x9eb8db6b wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x54c9de9e wm1811_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x72f2d4ac wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xcbabdcb3 wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xf991672a wm8994_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x45a2cfa5 ad_dpot_probe -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xa9f6e38a ad_dpot_remove -EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x8a05ed90 altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x54c9565d c2port_device_register -EXPORT_SYMBOL drivers/misc/c2port/core 0xa35cd785 c2port_device_unregister -EXPORT_SYMBOL drivers/misc/ioc4 0x2ed8a2c0 ioc4_unregister_submodule -EXPORT_SYMBOL drivers/misc/ioc4 0x32b86820 ioc4_register_submodule -EXPORT_SYMBOL drivers/misc/tifm_core 0x10923a3a tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x1cb03de8 tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x4351a088 tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x4db5cff4 tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x633ad3fd tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0x84bf5147 tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x92207a6e tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xbc366510 tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xc5f8cc62 tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xd8d5fbe2 tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0xe3e4cb7a tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xe89e7462 tifm_has_ms_pif -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x336e6efc dw_mci_resume -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x6e842ebb dw_mci_remove -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x96445ea9 dw_mci_suspend -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xdf59173a dw_mci_probe -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x378f2335 tmio_mmc_irq -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x3893554d tmio_mmc_host_free -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x59d07841 tmio_mmc_host_runtime_suspend -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x6d3deee9 tmio_mmc_sdcard_irq -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x7a6fd700 tmio_mmc_sdio_irq -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x83331982 tmio_mmc_host_probe -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x8aa697e7 tmio_mmc_host_remove -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x932be2e2 tmio_mmc_host_alloc -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xf02062dd tmio_mmc_card_detect_irq -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xf7d8cd19 tmio_mmc_host_runtime_resume -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x3248771d cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x35b1498f cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x5d60667b cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xa1b14108 cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xa4eadb2e cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xa6c5a794 cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb85a98ae cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xe9707871 mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xfca92ef1 lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/nand/denali 0x792375d0 denali_remove -EXPORT_SYMBOL drivers/mtd/nand/denali 0xd242ddbe denali_init -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x023f0853 onenand_scan_bbt -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x044e0109 onenand_addr -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x06a382e6 flexonenand_region -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x7d51ac1d onenand_default_bbt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x054c5e82 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x148bd311 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1bd97e4b arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1f4d16d8 arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4f2d7cd0 alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5840233a arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb0d8b062 arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xda141cb5 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xdec26c44 arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf6d47704 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x7c2e834a com20020_netdev_ops -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xa8f0d597 com20020_check -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xd86cd2a1 com20020_found -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x15488f3f ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x32040b4d ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8b186bb2 ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8efbe36e ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb33b9ed6 ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe49d5bf6 ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xeb4e378a NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xec8b5cc9 ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xefdcbbae ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf9be518e __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0x688226f3 bnx2x_schedule_sp_rtnl -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x1265ddc5 cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0afa1c22 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0bd79c3d cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x35e1261f t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x38f65442 t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x46e2b67d cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x517c797e cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x55a16686 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5be1310e cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x91628ffc cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xaea308e0 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb3e5d047 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbb280a18 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc1ce2533 cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc1ebc671 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc1ff824b cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xea9b29de t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0ec3aa1a cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f472900 cxgb4_dcb_enabled -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x219fea59 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2f82318c cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x31343597 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3551330d cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3c7d7285 cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x411b805b cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x448f3b34 cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x47a6e307 cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x47f66a07 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4de31aaf cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4fe943a2 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x528ba6bf cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5a672141 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5e68d8e8 cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x601512df cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6ba57c04 t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x71e987b8 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7ec07a99 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x81551329 cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x853ff181 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8c6531a7 cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x935cc2bf cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x94be0b51 cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9ee09b1c cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa527ea1b cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb66fb4f8 cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbeaf49bc cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc531fffc cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00a4f2f cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd265fe84 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe74f3899 cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xedf2f2b4 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa50af6d6 vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xbe1fe4a4 vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xc4e065f5 vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd7c52d49 vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xde104e12 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xde2a7e26 vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x0bc0d58e be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xee21a946 be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/freescale/gianfar_driver 0x79f28897 gfar_phc_index -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x1564812f hnae_reinit_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x5d14048c hnae_ae_register -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x8c0e4680 hnae_put_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb86b0777 hnae_ae_unregister -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xc2b81a7c hnae_get_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06b62382 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10f09d58 mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x140fb178 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x233f4efd mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f749dad mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2fc8c258 mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31c357d5 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c2bf5ed mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3edb43c3 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4095939b mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40f41cb4 get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4984a8c2 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4bfb97eb mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f65310c mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x501d61a5 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x531d0fde mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x589063c9 mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83ba5815 mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89d4b411 mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91e77545 mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94275ace mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94691021 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ffc64bd set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaed620cd mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2dadc1a mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3cbf345 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6ecff36 mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8496086 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb5af146 mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3c32786 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0f5b7ee mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1429642 mlx4_test_interrupts -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4e5460a mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6fc2396 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7f69839 mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf16738fd mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf810eeb8 mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff4dbb72 mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x004fca02 mlx5_modify_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0365cb01 mlx5_core_create_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0857aabd mlx5_get_flow_table_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb7287e mlx5_del_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x126a0576 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12fb9b48 mlx5_core_query_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20177e41 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c2d41ca mlx5_core_dump_fill_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2cb3919c mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d41ee57 mlx5_cmd_comp_handler -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2fd244b7 mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3436f509 mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c307ca1 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x484ad3a5 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d987c89 mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54454eb6 mlx5_unregister_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x546b1606 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x609ab20d mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6735c50b mlx5_query_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x698f0402 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ae2cf80 mlx5_alloc_map_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82987e7c mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84afeebf mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88070736 mlx5_core_destroy_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9216fc2b mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa003bfc2 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5f0ca03 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa88f4dc3 mlx5_cmd_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8e422e9 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb34e7c45 mlx5_core_get_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb596e77e mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8193a36 mlx5_cmd_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xceacccd1 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd166ac14 mlx5_get_protocol_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3fc55a1 mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd934d330 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3bd99e4 mlx5_register_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe542d01c mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6af33e4 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf980c6a2 mlx5_unmap_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc728a49 mlx5_add_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe7831a8 mlx5_core_arm_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1d54dcff mlxsw_core_bus_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x316d25f3 mlxsw_core_rx_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x40e2bd82 mlxsw_core_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x69328077 mlxsw_core_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x842a4628 mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcb5c8545 mlxsw_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd58b0f8e mlxsw_core_skb_transmit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee8e0771 mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xeeb529ee mlxsw_core_skb_receive -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa209d1af qed_get_protocol_version -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xb8e6f918 qed_get_eth_ops -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x1fbc75fe hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x402395e6 hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xa0707869 hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xd87f9621 hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xf461c6ac hdlcdrv_register -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x0039c713 irda_register_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x237dd3fc sirdev_receive -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x4571d630 sirdev_set_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x6accc96d sirdev_write_complete -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x7f4b9dbd sirdev_get_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x9e974696 sirdev_raw_read -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xacb86b5e sirdev_set_dtr_rts -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xb6c11ba7 sirdev_put_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xc9605541 irda_unregister_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xecebbb33 sirdev_raw_write -EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl -EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart -EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag -EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe -EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok -EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage -EXPORT_SYMBOL drivers/net/mii 0x1240a87c mii_ethtool_sset -EXPORT_SYMBOL drivers/net/mii 0x1d3f755e mii_check_link -EXPORT_SYMBOL drivers/net/mii 0x1f1b15c0 mii_nway_restart -EXPORT_SYMBOL drivers/net/mii 0x2069d048 generic_mii_ioctl -EXPORT_SYMBOL drivers/net/mii 0x76dbe88d mii_ethtool_gset -EXPORT_SYMBOL drivers/net/mii 0x8b7193a9 mii_link_ok -EXPORT_SYMBOL drivers/net/mii 0x9334e8aa mii_check_media -EXPORT_SYMBOL drivers/net/mii 0xe406289d mii_check_gmii_support -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x1d3644f7 free_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xfd7ea216 alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x19b95766 xgene_mdio_rgmii_read -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x6565b844 xgene_enet_phy_register -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xcca3c456 xgene_mdio_rgmii_write -EXPORT_SYMBOL drivers/net/phy/vitesse 0x7a4a9fe2 vsc824x_add_skew -EXPORT_SYMBOL drivers/net/ppp/pppox 0x70043fce register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xa290ea44 pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0xc9932f7b pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0xab89b828 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x0fe39fec team_options_register -EXPORT_SYMBOL drivers/net/team/team 0x5373d479 team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0x5d6a4871 team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0x5f58125c team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0x76828711 team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0xc2f915f7 team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0xc6472a67 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0xf0479513 team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/usb/usbnet 0x04869496 usbnet_manage_power -EXPORT_SYMBOL drivers/net/usb/usbnet 0x3eb177e6 usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0xa657b12c cdc_parse_cdc_header -EXPORT_SYMBOL drivers/net/usb/usbnet 0xdfb5b9dd usbnet_link_change -EXPORT_SYMBOL drivers/net/wan/hdlc 0x13e5e912 hdlc_change_mtu -EXPORT_SYMBOL drivers/net/wan/hdlc 0x48701ac0 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x648ad85e hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0x81072959 unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x81e3ec2c unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0x86804d10 register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xa6c1d7d9 hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0xadb2e7cb hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0xbd4c630a hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0xc1e5e3b3 attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xd68515e4 alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x5915e34d i2400m_unknown_barker -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x00f1093e ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0157bfa3 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x07758a33 ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0da18e1f dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x14fc5a9c ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4385c3bd ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6ea3b122 ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x990065d0 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb84db79b ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc3deace0 ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd1b7529e ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf65de9dc ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0473fcce ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0dba1626 ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5a6c195f ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6f06a447 ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8f8cc2d1 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x91b4e705 ath10k_debug_get_new_fw_crash_data -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9d0d361d ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb04e2cb5 ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb71fc75d ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd6c50248 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd90d1581 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe8b47f3d ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xec9653c2 ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfb4f9841 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfe11dcc4 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x00729f6c ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x009ecd44 ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2825c037 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4ffa80db ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x53381425 ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x63cdf0c0 ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8078c1ad ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6aec276 ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb843bc86 ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd70cea11 ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf4aaef3d ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0522024e ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0e750e7a ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x136f2300 ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1a47c869 ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x27b3035c ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x288a392a ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3bdf6d4a ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x48baa369 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x54b151b1 ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x668a4577 ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6d8f732f ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7cb9b216 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa51acd74 ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa8646744 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaa7ec9dd ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbabb68e9 ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbb172ab8 ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd67092af ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd7860687 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe200b9c2 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe5e7b97f ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe6ee97ab ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf21c4dce ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00ab8a50 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0141f56d ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x019cfce0 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0325af88 ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0512c4fc ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08590bdd ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08de8c56 ath9k_hw_cfg_output -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0919370c ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c02d349 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x127802c4 ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x14c44702 ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16b2fb91 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x180e10e8 ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1bb7d81e ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x222fe188 ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2286f990 ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x262892ef ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2635a735 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x29dba423 ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c0705fa ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ced4195 ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e0a1a18 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3246fcbf ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x34c1fc82 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x36548b61 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37526809 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37ecc374 ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b022f5b ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3fa6fce5 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x40627b4d ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x40de8176 ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x41a1e160 ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42144f1e ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4354fc7c ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x473ce218 ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48c80215 ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48ed0a93 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48fd83b1 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b20acaf ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b7c9ee8 ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c852d8a ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4daa5e89 ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4dc95de1 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x50ac90ec ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x52525747 ath9k_hw_request_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x52a52c24 ath9k_hw_cfg_gpio_input -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x547061a4 ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x59eccec2 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b4981ec ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61c1eafe ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x63f52679 ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66a2715c ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x67b57e8e ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x68c52928 ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x74014971 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a0a4f54 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ab8798d ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7cc0a99d ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x816733cf ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x88ce2993 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8cc1b9bd ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8f3ecfe6 ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91920a7c ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91d02a9f ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9458a1f9 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x94e1c137 ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa51227c2 ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa69e9bd6 ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7ca5473 ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaae6caef ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae39ecd7 ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaed4b0d4 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb18dde93 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2f2bfb7 ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3b88b05 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb5f7056d ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6a86099 ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbab44d26 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc00cdf0 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbcd063e0 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbdabb05c ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbfa42fb1 ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3525249 ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc51d7211 ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc5afe991 ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd07be5a4 ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd2261a30 ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd87237c6 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd97455fc ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb56abde ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd438785 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdeef7d9c ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf19fd39 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe356c6ac ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe482d35b ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe49cf79c ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb4d3ba9 ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xedec40b2 ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee3c5952 ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0aa8455 ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf537dee0 ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf8a6e9fe ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfdd7ccc6 ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff20e310 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff4b1c2b ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/atmel 0x419c90dd stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel 0xa58386e1 atmel_open -EXPORT_SYMBOL drivers/net/wireless/atmel 0xd435f998 init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x38a056b2 brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x50ee6b0c brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x592a0bc1 brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x5bc5a9d3 brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x5e88ec88 brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x72b3781a brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x7d746e72 brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x8ff954f4 brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x93bada69 brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9411c18a brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9c5a293c brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xc6cfca3b brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xfe60aef8 brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x01e186c5 hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x039908f6 hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x04e2233d hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0c2dbf79 hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x28f10aba hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x328f4d49 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x33bec01c hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x433a77da hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x48366272 hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5a7f03c3 hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x61a81122 hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7f8ad806 hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x80cc2f3c hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x894c13c9 hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa4d3b124 hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa83f190b hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa85cade0 hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc62755da hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc699168f hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xda14ec08 hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xdd921a3f hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe5d8a0e3 hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xec5781e4 hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf749f279 hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xfde7c2bc hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x14ece757 libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x1865117a libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x1908014b libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x1e180ecb libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x247c051d libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x27b035e5 libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x29c65115 free_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x3a07e6e1 libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5e944be6 libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x738e7826 libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7acb5193 libipw_change_mtu -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x86d89da2 libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x936963fd libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x950043ea libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x95e3412d alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x96857b3a libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x9be08e13 libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa2f53f18 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa4d3d020 libipw_rx -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb2d7edbb libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xdba6c309 libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x01395283 il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x038da7ec il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x05ef4d3b il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0ae56129 il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0af881c8 il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0f624f4e il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x14e7cad7 il_set_rate -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1ec13fb4 il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x276ebaf4 il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2c94f0f8 il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x307526b5 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x32f25f12 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x339166f8 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x389552d3 il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x389cc4ba il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3e90bfa4 il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3e9e075d il_leds_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x42a43983 il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4335e19d il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x444045b8 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4b6a6f0f il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4c3ac897 il_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4c9c8164 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4e1bf299 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4e3fa598 il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4e8ff4b5 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x505369fd il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x515987e4 il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x51a5cfdc il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x55d870f8 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x57b96d4c il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x59b17e2c il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5f13b2f9 il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5fed026a il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x693b4dbb il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6dfd8681 il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6ec218af il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x73362886 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7d862931 il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7e2e702c il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x812b2e50 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8534f76f il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x87665214 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x88df3e45 il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8c381b05 il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8ea8fad6 il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8eafeb0e il_free_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8ff2b8b0 il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9265707f il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9580dd00 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9cfcd297 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9dc68b84 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9ff22507 il_set_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa24cb9ab il_init_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa35d53b7 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa64fc134 il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa75054db il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa7934d46 il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xaa333ee5 il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xafbe77cd il_apm_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb034e490 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb08614f9 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb0983513 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb1f98d5c il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb3ac89ad il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb6d48d9a il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xba58c792 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbd853a9c il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbf94aee9 il_force_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbfd27df4 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc40a99f2 il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc6acc2ac il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcf7d3056 il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcfbabc6b il_update_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd1271d71 il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd71ea040 _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdab450ee il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdc114bf3 il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdc85c25a il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdd54eb9d il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe2084f3f il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe2cc00dc il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe7191120 il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe7b53054 il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe9c408a0 il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xea1c447b il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xeca20d10 il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf0d4beba il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf231106f il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf49e3db7 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf5fabc95 il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf608d7d0 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf8472c32 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf8f7bd1b il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfa565cba il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfb60f22d il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfbb369b2 il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfe9f9c91 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfff9c318 il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x180d7a46 __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x208d96c4 __tracepoint_iwlwifi_dev_iowrite32 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x26bb7eb8 __tracepoint_iwlwifi_dev_ucode_error -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x436814a2 __tracepoint_iwlwifi_dev_ioread32 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x496d7aef __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x8f81067c __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xfd34aff0 __tracepoint_iwlwifi_dev_iowrite8 -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x048637e1 orinoco_open -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x0748dbdb orinoco_up -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x0c94a6b2 orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x10eed857 orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x16f777c8 orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x3226817d __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x377d3f18 orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x4b501113 alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5613a386 orinoco_get_stats -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5bfb0c47 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x644cbb5d orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x69eb267e orinoco_down -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x6d4117b8 orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x74252f91 __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x83195bcc orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xa4cd96e0 free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xde12069e orinoco_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x554eb9e9 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x051be132 rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x12fb86d7 _rtl92c_store_pwrIndex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x13672c47 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1a417884 _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1a4b2329 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2aa39470 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x32ecc793 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x389274b9 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3e4a6894 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x425268ef rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x55198963 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x57bfd586 _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x618fadef rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x64d4d2b5 rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x67c1e92c rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x70c3ad79 _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x748f6250 rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x85ebc259 rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9f406a80 rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xac1fa64a _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaca0563c rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xad0998f1 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xae992a55 _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb45c2558 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb463e6cd rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbccee282 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc0610f4d rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc3dfdf23 rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc3fdd326 rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc67e7dea rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc8539eb2 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc894d0d2 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xca0926e4 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xca96a640 _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xce8af2b1 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe2c37484 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe6b4c292 _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xec623d08 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf36b15f0 rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf3f0e9e3 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf88ef502 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x41e460d5 rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x8da14f56 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x92f186a5 rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xa0a5eaff rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x836e6da0 rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x9524af11 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xa514e743 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xb65c842c rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x14bab42c rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x23df966c rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2a209fb8 rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x33101f6b rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x457c1244 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x45d7152d rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x46cb3be3 efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x48c56a6b rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x62c2a891 rtl_wowlan_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x65cf369d rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x68ec60ce efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79d442cb efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x81e07828 rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8a4a3e8e rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa6211fc1 rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa8cba4af rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xab8586b6 rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb2d5d22f rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb697e889 rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc068a2be rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc1061903 rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc50c859d rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc5b1df21 rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc7eb5f30 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xce83b25d rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdbbb3fc7 rtl_ps_set_rf_state -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfb244a23 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfc47726c rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x40996919 wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xc0fd0b6c wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xf23cd90a wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xf3922531 wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x3f8f4284 fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x9a649dc7 fdp_nci_recv_frame -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xb3d4a6a7 fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0x9822762c microread_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0x9f409473 microread_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x043fb2cf nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x9d9231d9 nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xbf1b9973 nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x00b35434 pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x8cad9253 pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x2d6412db s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x663c9e27 s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x670298a3 s3fwrn5_recv_frame -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x00318778 ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x335f87a8 ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3fdc7d06 st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x465f95c1 ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x64b10957 st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x6aec9ac3 ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8e5e5f41 ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xbf08fe1c st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xea3b7c2f st_nci_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf36d45ac ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf3e57380 st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x02a2ca35 st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x03fc64c7 st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x118f8f06 st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1cce87ff st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3534ec3c st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3814ef79 st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x441a5ddb st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4926bf85 st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4eab03fc st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x530905e4 st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8e92ef43 st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x907b7db7 st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa47ec328 st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa822ac64 st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb539da4a st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc37fc09f st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc3adbb9f st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcca790d3 st21nfca_hci_probe -EXPORT_SYMBOL drivers/ntb/ntb 0x052569b7 ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x174c299a ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0x4701ad1a ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0x7531dfa3 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0x8494ea68 ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0xb266cfca __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0xd84516e2 ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xf9c45153 ntb_db_event -EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x4d177f8b devm_nvmem_cell_put -EXPORT_SYMBOL drivers/parport/parport 0x13d5c7b5 parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x34afad3c parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0x3adf20e0 parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0x424eb232 parport_claim -EXPORT_SYMBOL drivers/parport/parport 0x43e55637 parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0x4835181c __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x4f71b423 parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0x51415000 parport_release -EXPORT_SYMBOL drivers/parport/parport 0x5b2231f6 parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x632b8ff4 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0x6be284ba parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0x7d30d6ad parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0x99b071e9 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0xa55636dc parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xa983ac3d parport_write -EXPORT_SYMBOL drivers/parport/parport 0xb4bb5f38 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xbfdc02fc parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0xc18430d1 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0xc84a8c4b parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0xc88ae353 parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0xce5ad19f parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xd08186cb parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0xd117f820 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0xd1498007 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0xd3412604 parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0xed719e6b parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xf6281bb3 parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0xfbab6cd8 parport_register_device -EXPORT_SYMBOL drivers/parport/parport 0xfc00b7aa parport_read -EXPORT_SYMBOL drivers/parport/parport 0xfc4b60bb parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0xfc9cf78f parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xfccf7a7a parport_get_port -EXPORT_SYMBOL drivers/parport/parport_pc 0x5feb0888 parport_pc_unregister_port -EXPORT_SYMBOL drivers/parport/parport_pc 0x9b861483 parport_pc_probe_port -EXPORT_SYMBOL drivers/pci/host/pcie-iproc 0x7292016d iproc_pcie_setup -EXPORT_SYMBOL drivers/pci/host/pcie-iproc 0x7864896b iproc_pcie_remove -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x0034cc1e rproc_del -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x069cd47f rproc_shutdown -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x3f763126 rproc_put -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x67a6a044 rproc_alloc -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x81f8da30 rproc_report_crash -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x87cadd83 rproc_boot -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xb7fc67a0 rproc_get_by_phandle -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xc9befde0 rproc_add -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xd1d310fe rproc_vq_interrupt -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xf2102a7d rproc_da_to_va -EXPORT_SYMBOL drivers/rpmsg/virtio_rpmsg_bus 0x6b065015 rpmsg_destroy_ept -EXPORT_SYMBOL drivers/rpmsg/virtio_rpmsg_bus 0x6fc06164 register_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/virtio_rpmsg_bus 0xb7f71591 rpmsg_send_offchannel_raw -EXPORT_SYMBOL drivers/rpmsg/virtio_rpmsg_bus 0xbbaa7caa rpmsg_create_ept -EXPORT_SYMBOL drivers/rpmsg/virtio_rpmsg_bus 0xbff3281a unregister_rpmsg_driver -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xe904e5d0 ds1685_rtc_poweroff -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4e574b74 scsi_esp_template -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xa7495edb scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xe73f307f scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xe908a916 scsi_esp_register -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x00c4be1c fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x11085498 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1e435d92 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x38a0b0ca fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3978c59d fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4febbc26 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5638e001 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x69a78a58 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x69e05866 fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9ab34a77 fcoe_ctlr_destroy_store -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf1c88816 fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfd058268 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x028b131e fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x038e242c fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x06bf647e fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0b4e130a fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x105aef17 fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x15e40521 fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x18c1f5e8 fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x192c8b7e fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x218ca200 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x24a1dab2 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2b1265b7 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x31e71fbd fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x34a58872 fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x363d4e00 fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x39b9dd88 fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3d068c79 fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3dc66f55 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x40df61b4 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x413dcd0e fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x44b01239 fc_rport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x495af2be fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4ebcf44e fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x542704f5 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x543aed97 fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5c944b46 fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5d7c1c66 fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x65ba5e2e fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69ae3313 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69b98d9b fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6aac9ed2 fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7316bdf6 fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7bbbf554 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x80c024e7 fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8fbb20f2 libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x99a2d8dd fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa0b22001 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa7a5406d fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaa527817 fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb051d8a3 _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb318db48 fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb45980d6 fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb4b7fb72 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbf846810 fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc1f4a104 fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd107a0a9 fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd1b51f58 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd1f8a023 fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe6ecc18b fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf3216982 fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf694f2bd fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x2d975579 sas_wait_eh -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x7db32536 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x84c84161 sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xb77d71fd sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xd99c6c86 mraid_mm_register_adp -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x02452ab2 osd_execute_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x077ffdf1 osd_req_remove_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0bd96d83 osd_req_list_partition_collections -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x18affb7a osd_req_list_collection_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1ccb418c osd_req_format -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2ac43ade osd_req_write -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2d42ea7f osd_execute_request_async -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x34b4a0fa osd_req_list_dev_partitions -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3576256b osd_req_add_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x40464532 osd_req_write_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x44a6e602 osd_dev_fini -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x47072fd5 osd_req_read_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x47182352 osd_req_decode_sense_full -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x60c6b02b osd_req_read_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6216b265 osd_req_create_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x65da1a3f osd_end_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6f0845e2 osd_req_remove_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x77cee188 osd_req_read -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x78d2d454 osd_req_list_partition_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x889f3878 osd_req_set_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8a394602 osd_req_flush_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x92c6e15c osd_req_write_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9a4a7504 osd_auto_detect_ver -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb2bdc975 osd_req_get_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc149dd09 osd_req_write_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc44ad303 osd_req_flush_collection -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcdb4015a osd_req_flush_obsd -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd4ba18ec osd_req_create_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd8e972e1 osd_finalize_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdaf9e0be osd_req_add_set_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xea24104d osd_req_decode_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xeb8d50fa osd_req_flush_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xec3dcad1 osd_dev_init -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf078ca45 osd_start_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfe747c2b osd_req_add_get_attr_page -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xff0083dc osd_req_read_kern -EXPORT_SYMBOL drivers/scsi/osd/osd 0x0692bc8c osduld_info_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0x5c932d81 osduld_device_same -EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0xadcf8e7e osduld_put_device -EXPORT_SYMBOL drivers/scsi/osd/osd 0xec47ef1f osduld_device_info -EXPORT_SYMBOL drivers/scsi/osd/osd 0xfb7b938e osduld_path_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0xffab365c osduld_register_test -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1861ec16 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x269cb592 qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x32917a57 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x37391d61 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3ce39da2 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x581feaea qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5ccd8e6d qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8a865b41 qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa14eef3d qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb5cd46a1 qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe0d9c3cb qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe4c49de0 qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/raid_class 0x1c91fc03 raid_component_add -EXPORT_SYMBOL drivers/scsi/raid_class 0x49c810e5 raid_class_attach -EXPORT_SYMBOL drivers/scsi/raid_class 0x4faa8267 raid_class_release -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1265d4b3 fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x254f82eb fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2ec10f8c fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3a77b1b6 fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x645bdd36 fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x64ceb2d8 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x972a38f6 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa4900939 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc7583724 fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd0dd2b38 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe15c9171 fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe48e1b1a scsi_is_fc_vport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xee4bde62 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x01b5b621 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x026a969f sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1016dc1e sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x113d0c07 sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x266d10de sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x384269d9 sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4c530668 sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4ff521b0 sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x52d4495b sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x55d0c095 sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x666d305e scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x69f6f661 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6d4dd002 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x82b7c662 sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8714a9a6 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8df06f2e sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8fc4677e sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9e6ff424 sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa814899e sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc10d1dca sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xca7cbd49 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcd2237e4 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd3764156 scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd5422188 sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe1e29d4e scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xef6bd31c sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf02fc12e sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfcd98a5c sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x08e66653 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x5c4ea976 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x64c15aac spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x929c7868 spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa0f97d0d spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x36f5e7a8 srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x4982cd07 srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x4c8df456 srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xe5061379 srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x129bf2a8 ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x21465e5a ufshcd_runtime_idle -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xa79996dd ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xb076f117 ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xb616a892 ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xc57ad7a8 ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xe5a0507f ufshcd_system_suspend -EXPORT_SYMBOL drivers/soc/qcom/smd 0xa1aefa6f qcom_smd_driver_register -EXPORT_SYMBOL drivers/soc/qcom/smd 0xa3249e47 qcom_smd_driver_unregister -EXPORT_SYMBOL drivers/soc/qcom/smd 0xeda44e54 qcom_smd_send -EXPORT_SYMBOL drivers/soc/qcom/smd-rpm 0x2f5501c0 qcom_rpm_smd_write -EXPORT_SYMBOL drivers/soc/qcom/smem 0x5a710273 qcom_smem_get_free_space -EXPORT_SYMBOL drivers/soc/qcom/smem 0x63ef36e3 qcom_smem_alloc -EXPORT_SYMBOL drivers/soc/qcom/smem 0x932eb0e3 qcom_smem_get -EXPORT_SYMBOL drivers/ssb/ssb 0x02df8b05 ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0x044feaab ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0x0d93c228 ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x12573d90 ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0x164f616e ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x18dd77f1 ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x1945aceb ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0x27586499 ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x30bfdaf9 ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x3eb4264d ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0x5238bf49 ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0x8bcd965b ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0x9d0d65bf ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0xb3a10fc8 __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0xb92489ff ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0xba195a8a ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xc406eba0 ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0xc5b11a9f ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xd4ec413f ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0xeff728a4 ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x07186147 fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x11217548 fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x169337c2 fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x20077350 fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3e542cb9 fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4e06f8ea fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x51dcf4a4 fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6000119e fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6cd27bec fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x774bb484 fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7b694a0c fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x80dd3464 fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x884d7de5 fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9d54d607 fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xaa3f26d8 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xba517453 fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc238f5e4 fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc30a037c fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc31e6fee fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xce2541e8 fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd4938e8e fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf2371c71 fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf3aea690 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfa27e96e fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x268c933d fwtty_port_put -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xbf97ae9e fwtty_port_get -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xac71fe66 adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x32d0c917 hmc5843_common_probe -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xbecdb51e hmc5843_common_resume -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xdd342c84 hmc5843_common_remove -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xf234b577 hmc5843_common_suspend -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x49b9e3f3 ade7854_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xc5b47bc7 ade7854_remove -EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0xc1c92036 cxd2099_attach -EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x1165b5a7 most_deliver_netinfo -EXPORT_SYMBOL drivers/staging/nvec/nvec 0x1a0fd88d nvec_write_async -EXPORT_SYMBOL drivers/staging/nvec/nvec 0xccffce81 nvec_write_sync -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x01a41c4c rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x029535c9 HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0334f9b5 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x05b88278 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x06eeb346 RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0a94f8fb Dot11d_Channelmap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0d96d2f2 rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1532688f rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x336ab6a8 rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x34e5e12f rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x385a1fb6 rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3c9779f9 rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4298e160 rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x44e624b1 rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4e271ff9 rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x58dcf85e rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x595f0c30 rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x60ae8c62 rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x643cb5db rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6a723767 rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6cfd830f rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x70fb3887 rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x73a38d83 rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7786c2bb rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7b66e29a rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7d2d067b rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7e2dce06 notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x874590b0 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x875c61ea dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x87c88c6a rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8c1823d7 rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8e4c075e rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x93dcca40 rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x94bbcdbf rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa532ac79 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa8f88b09 rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaf216f0d rtllib_wpa_supplicant_ioctl -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb2655a81 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe53b4f3 rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbf93e151 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc2978c74 alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc80af2e9 rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd0947a90 free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdb8858aa rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xde32deba rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xea17389f rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xed03ebf0 rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf48ef988 rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfae105fb rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfb7178a0 rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x041ee992 ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x04e65183 HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0527f3ca ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x07306cbb ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x147864cb ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x190be47e ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x296e8b39 ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2e00651e ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x303a5027 ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x31fc3f0b Dot11d_Init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3225ed5e ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x359e21fe ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3d49d092 ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x41648937 ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x42484cbb ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4eaa617e ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x53622447 ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x53f15956 ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x56b2fb22 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5a0ab1b0 ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5b0c461b ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5bec72d7 ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5c70b831 ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5d41be26 SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5f8e02bd ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61ad1f60 ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x718ada53 ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7a3806f7 ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x88003a1f ToLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9275e2b2 ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9f066207 ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa61b9231 ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb150fd2c ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb214c8e7 Dot11d_Reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb57071a7 ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbc237d99 ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbe21c749 ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc33c6393 ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc5a93a63 ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc6eccb1a IsLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc8fbe2ce ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf05984a ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf4c2491 ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd1906937 ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xda76d6f0 ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe0ea4654 ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe2f2acce ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe4e6d914 ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe80c8abb DOT11D_ScanComplete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeaab2fb8 ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf4e9945a ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf5e0fcf2 ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfa0c529e ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfbc2bd76 Dot11d_UpdateCountryIe -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfda9eea0 DOT11D_GetMaxTxPwrInDbm -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0b99be81 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1b177180 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x23259aec iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4a50a044 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4cff9f1d iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x75dca4f2 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x77fd146a iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7c0d6861 iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x856b7327 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x88ac54ee iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8e0a3256 iscsit_set_unsoliticed_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x92887869 iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x981eb096 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa174c314 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa3aab0dd iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa3d29a81 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa5b2db9f iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa789a3ff iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xab23efa2 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb1c0c942 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbdd1b655 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbfabc83c iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc4368bf3 iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd67c49cb iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd78a0222 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xded41b1b iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe2f6aab4 iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf54ac31f iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x071a2be3 transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x0c0489a1 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x0c9a03fb transport_init_se_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x0e33e9bf transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x0e7a2829 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x14b1f5cc target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x16315a08 target_submit_cmd_map_sgls -EXPORT_SYMBOL drivers/target/target_core_mod 0x16baf601 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x1a25cf02 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x1d3e7917 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x1eff4da3 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0x27befec6 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x29b90101 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x2af7e6b5 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x2c0f51bf target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x2d0f1909 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x2e169183 target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x32302d52 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x336ec4dd spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x3418f41b target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0x3919b282 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x3b04a43c spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0x3b52d258 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x3c857508 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x3cb7d5c2 target_setup_cmd_from_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x46209f91 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x542f564c target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x5b8975ad core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x6243a2e8 transport_init_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x64f64915 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x6b086c5a target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0x6c4307a3 target_sess_cmd_list_set_waiting -EXPORT_SYMBOL drivers/target/target_core_mod 0x6c461ce4 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x6efe880e target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x703f4b37 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x76d335ea target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x7723b2e6 target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x7857fef2 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x83246cad target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x8acc862f transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x8d1e6510 target_put_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x8dc9af90 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x9460b670 core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x97c419bb transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x981d40b1 transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0xa14e46df spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0xa1d21511 core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0xa2f72539 transport_check_aborted_status -EXPORT_SYMBOL drivers/target/target_core_mod 0xab35a59a core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0xb056bbb4 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0xb882eaf1 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xbb0231ec sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0xbde532dc transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xc023c175 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xc1faeed6 target_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xc2f4bc07 target_get_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xc82b3f4b transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xcd5c72b2 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0xd375df70 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xd98c8015 target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0xe434a80a sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0xe4e6f047 transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xeb8c247e target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xed203788 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf285a92d transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xf65804c3 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0xfccf5003 target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xfcec0720 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xfd1ded9c transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x84054353 usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x96b20d44 usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x59e91862 sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x041ef935 usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x07c737da usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x15ab85f9 usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x465ca2db usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x49031343 usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x54e4b1f4 usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x568bcc31 usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x84efe609 usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa54c8d0b usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xbcd98eb4 usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xee8fca90 usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf8751580 usb_wwan_ioctl -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x675ba212 usb_serial_resume -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xdb6adcc6 usb_serial_suspend -EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user -EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x2e91ca97 vringh_iov_pull_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x367ce26a vringh_iov_push_user -EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user -EXPORT_SYMBOL drivers/vhost/vringh 0x59f824d9 vringh_getdesc_user -EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x7bda5e6d vringh_iov_push_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x821e9390 vringh_iov_pull_user -EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user -EXPORT_SYMBOL drivers/vhost/vringh 0x937e412c vringh_getdesc_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user -EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user -EXPORT_SYMBOL drivers/video/backlight/lcd 0x4c1c4c42 lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0x4e69392b lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xa48826b7 devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xc6115c77 devm_lcd_device_register -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0428f053 svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0abf74e1 svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1cca6a04 svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x3ca40859 svga_tilecopy -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xae0a6a24 svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd0418cf1 svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd323dd16 svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x4ca8ee13 sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x6a62babb sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x3c5e28ba sys_imageblit -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x376e566c cyber2000fb_attach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x5ae721d6 mac_find_mode -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x0888fdfe g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x1bb751e6 matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x34fc37d6 matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x0c8dba75 matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x7541939b DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xc9c440f2 matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xe993d1ae DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x038a252a matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xd28a25e0 matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x20f6dc4a matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x510b7178 matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xa7ae8971 matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xc8bad5e5 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xaf7bc139 matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xd29b64d5 matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x4adad820 matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x4b8d150e matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x557300df matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x76746803 matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcbe8c306 matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0xf1463567 mb862xxfb_init_accel -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free -EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga -EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x0074818d w1_ds2760_write -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x08eac693 w1_ds2760_read -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x2559a220 w1_ds2760_store_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xee3b6448 w1_ds2760_recall_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x29630d7f w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x6b167560 w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xa0f7bc76 w1_ds2781_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xe8f78136 w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/wire 0x2b7770f1 w1_add_master_device -EXPORT_SYMBOL drivers/w1/wire 0x509cae4b w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0x8823c9b6 w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0xb40f8e4b w1_unregister_family -EXPORT_SYMBOL fs/configfs/configfs 0x06d382ac configfs_unregister_group -EXPORT_SYMBOL fs/configfs/configfs 0x1e7b9a8a config_group_init -EXPORT_SYMBOL fs/configfs/configfs 0x236e42bd configfs_unregister_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0x31e63287 configfs_register_group -EXPORT_SYMBOL fs/configfs/configfs 0x416e1912 configfs_undepend_item -EXPORT_SYMBOL fs/configfs/configfs 0x428804c1 config_item_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0x4fdf250d config_item_set_name -EXPORT_SYMBOL fs/configfs/configfs 0x68e68da0 config_item_get -EXPORT_SYMBOL fs/configfs/configfs 0x84e3d51e configfs_register_default_group -EXPORT_SYMBOL fs/configfs/configfs 0x96a077b1 configfs_unregister_default_group -EXPORT_SYMBOL fs/configfs/configfs 0xb97bbf97 configfs_register_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0xd2a7f61a config_group_find_item -EXPORT_SYMBOL fs/configfs/configfs 0xda1437b2 configfs_depend_item -EXPORT_SYMBOL fs/configfs/configfs 0xe4132d8f config_group_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0xf5cdb856 config_item_put -EXPORT_SYMBOL fs/exofs/libore 0x17d175ee ore_truncate -EXPORT_SYMBOL fs/exofs/libore 0x1dbe177b ore_write -EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout -EXPORT_SYMBOL fs/exofs/libore 0x35ddfb63 ore_put_io_state -EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info -EXPORT_SYMBOL fs/exofs/libore 0x7cc6fe5f extract_attr_from_ios -EXPORT_SYMBOL fs/exofs/libore 0x7e2cf891 ore_get_io_state -EXPORT_SYMBOL fs/exofs/libore 0x8aaf1a21 ore_check_io -EXPORT_SYMBOL fs/exofs/libore 0x8cc1558a ore_read -EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length -EXPORT_SYMBOL fs/exofs/libore 0xaae0bd82 ore_create -EXPORT_SYMBOL fs/exofs/libore 0xacc2331a ore_get_rw_state -EXPORT_SYMBOL fs/exofs/libore 0xe33b2119 ore_remove -EXPORT_SYMBOL fs/fscache/fscache 0x059b3101 __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x05a6e2c2 fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0x16c53250 __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0x2096a008 __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0x21f94820 fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0x22cfa350 __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x25631afd fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0x37989b09 __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x49e8b4d0 fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0x51369600 fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0x59f3fb2f __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x5c4348ad __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0x667775bb fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0x696a1f36 fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x79a2faa6 __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0x7d92b841 fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0x81b9f484 __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x8d067585 fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0x964fddd9 fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0x9826e25a fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0x9f9e6d18 __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xa5cb0a68 fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0xa70eae7d fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0xa79a4e27 __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0xabc8467d fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0xb037e8d4 fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0xb327bc10 fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0xb4f3c0fb fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0xb81b6bcf __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0xbdc3981f fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0xc60d0e8e __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xcb6b831c __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xcca05465 __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0xd14fa338 fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0xd7be13c8 __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xdb977752 __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xdddb4a4b __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xe995de51 __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0xfb60c4c4 __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0xfbc4d789 __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x2b4b37b6 qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xa5c625e6 qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0xb46ce50e qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xd88d2fa7 qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xf96125d8 qtree_write_dquot -EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq -EXPORT_SYMBOL lib/crc-ccitt 0x3771b461 crc_ccitt -EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table -EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table -EXPORT_SYMBOL lib/crc-itu-t 0xf5b4a948 crc_itu_t -EXPORT_SYMBOL lib/crc7 0x66213969 crc7_be -EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table -EXPORT_SYMBOL lib/crc8 0x41248eaf crc8 -EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb -EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb -EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c -EXPORT_SYMBOL lib/lru_cache 0x03f599c7 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0x4feade4b lc_create -EXPORT_SYMBOL lib/lru_cache 0x56fc3ea0 lc_put -EXPORT_SYMBOL lib/lru_cache 0x619ed575 lc_try_get -EXPORT_SYMBOL lib/lru_cache 0x84e0214b lc_committed -EXPORT_SYMBOL lib/lru_cache 0xbbe7c23c lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0xc48fa976 lc_set -EXPORT_SYMBOL lib/lru_cache 0xc6e4cd46 lc_reset -EXPORT_SYMBOL lib/lru_cache 0xcb990a55 lc_try_lock -EXPORT_SYMBOL lib/lru_cache 0xcea6747e lc_destroy -EXPORT_SYMBOL lib/lru_cache 0xd212c9f0 lc_get -EXPORT_SYMBOL lib/lru_cache 0xd34f34b6 lc_seq_dump_details -EXPORT_SYMBOL lib/lru_cache 0xe34df49e lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0xeb13128b lc_del -EXPORT_SYMBOL lib/lru_cache 0xf460a486 lc_is_used -EXPORT_SYMBOL lib/lru_cache 0xf5ea5f5c lc_index_of -EXPORT_SYMBOL lib/lru_cache 0xf6acec20 lc_find -EXPORT_SYMBOL lib/lz4/lz4_compress 0xcbc5d521 lz4_compress -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x26c3aa22 lz4hc_compress -EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul -EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp -EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv -EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page -EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi -EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul -EXPORT_SYMBOL net/6lowpan/6lowpan 0x086df241 lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0x28b914db lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0xa2f024bd lowpan_netdev_setup -EXPORT_SYMBOL net/802/p8022 0x3cf504bf unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0xa9067a7a register_8022_client -EXPORT_SYMBOL net/802/p8023 0x4ed5e8c9 destroy_8023_client -EXPORT_SYMBOL net/802/p8023 0x8315c743 make_8023_client -EXPORT_SYMBOL net/802/psnap 0x1c98412e register_snap_client -EXPORT_SYMBOL net/802/psnap 0xe04aaa05 unregister_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x0740038e p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x0e439b7b p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0x0f02cda0 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x14879599 p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x15badc22 p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0x16f5908a p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x1bac481e p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0x243fc2f1 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x24929df5 p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x26e8ba31 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0x299f7fa7 p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0x2cbc53d6 p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x2fcbf9ae p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get -EXPORT_SYMBOL net/9p/9pnet 0x371a133c p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x37c03ff3 v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0x3b88c0e5 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0x45946329 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x5b501c87 p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x5c7e79bd v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0x60b1b85e p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0x65068818 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x6b3fffea p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x7a53d427 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x8a421c8e p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x8c52e39b p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x8c9f4d4d p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0x933a0856 p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x9390aed9 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x9531e251 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x9ce58e4f p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0xa0b0db25 p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0xa1f0724d p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xa376604f p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0xb5109ebd v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0xb805802b p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0xbaea656b p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy -EXPORT_SYMBOL net/9p/9pnet 0xce042686 p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0xd605f6ef p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xf34694d3 p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create -EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put -EXPORT_SYMBOL net/9p/9pnet 0xfb881a2d p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check -EXPORT_SYMBOL net/9p/9pnet 0xfdc1ea81 p9_client_mknod_dotl -EXPORT_SYMBOL net/appletalk/appletalk 0x112f837f alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0x91f0b02a atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0xf2de8e96 atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0xf591a33b aarp_send_ddp -EXPORT_SYMBOL net/atm/atm 0x26c10695 vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x36f18196 atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x6cff7213 register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xa5569a2c atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xade6d700 atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0xb0bdb77c atm_dev_register -EXPORT_SYMBOL net/atm/atm 0xc4f0d6f0 atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0xd19b66af atm_charge -EXPORT_SYMBOL net/atm/atm 0xd54e3fb1 atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0xd7bcd5d7 deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xd95f52c9 vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0xdcd9a931 atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0xe034d084 vcc_release_async -EXPORT_SYMBOL net/atm/atm 0xf1774b53 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/ax25/ax25 0x0a8281c2 ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x29edff43 ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0x33ac7244 ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0x36b418ec ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0x42bc8c2e ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x475f2295 ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x8655360d ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xe260ebe5 ax25_linkfail_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x00632d54 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x053891da l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x05977e89 hci_alloc_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x05e06d91 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0a06c045 hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0ed4be3c hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x100f2b82 hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0x171f9806 l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x272187f7 bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2c535852 bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0x370c6783 bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4d15e0d1 __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6087900b hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x621508dc l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0x677307c2 hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x69776ae4 hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6e502cf8 hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6e530c93 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7901443a bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8f1a9af9 hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno -EXPORT_SYMBOL net/bluetooth/bluetooth 0x91d28cf1 __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9753319a hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9bdb4626 bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa1c1e777 l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa1ed53cf hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa3b64660 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0a8350c hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb2d13388 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb355fddc bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbe6949dc bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc42ec5fc hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc50078b5 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc903c8e7 bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcd329343 hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd4cc08c8 hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd60752bb l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd83fd086 bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0xda538133 bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdec7c8c8 bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe6be4ee1 hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfdcae967 bt_sock_poll -EXPORT_SYMBOL net/bridge/bridge 0x93c7093c br_should_route_hook -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa9e1f29e ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xca36e036 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xf7916b3c ebt_do_table -EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x1b59983a cfcnfg_add_phy_layer -EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative -EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info -EXPORT_SYMBOL net/caif/caif 0x38576d19 caif_connect_client -EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer -EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head -EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head -EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio -EXPORT_SYMBOL net/caif/caif 0xad60b009 get_cfcnfg -EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xd9b140cd caif_disconnect_client -EXPORT_SYMBOL net/caif/caif 0xf5e2b126 caif_enroll_dev -EXPORT_SYMBOL net/can/can 0x2b68e90d can_rx_unregister -EXPORT_SYMBOL net/can/can 0x347e18a4 can_rx_register -EXPORT_SYMBOL net/can/can 0xa39ca2c9 can_proto_register -EXPORT_SYMBOL net/can/can 0xa436ab34 can_send -EXPORT_SYMBOL net/can/can 0xbc7ae2da can_ioctl -EXPORT_SYMBOL net/can/can 0xc3420e4d can_proto_unregister -EXPORT_SYMBOL net/ceph/libceph 0x025e130e ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0x06e1aa91 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init -EXPORT_SYMBOL net/ceph/libceph 0x0bb4042b ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x0dc33579 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0x122816e8 osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x133170a1 osd_req_op_cls_response_data -EXPORT_SYMBOL net/ceph/libceph 0x1421d5af ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x1fff0489 ceph_osdc_readpages -EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup -EXPORT_SYMBOL net/ceph/libceph 0x22d9e0de ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0x2950d536 ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x2aa65d69 osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0x2ec160be ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x34bf868b ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0x37020413 ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x3cb07155 ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x3d7eaef7 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options -EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part -EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x47a9920e ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x4837f357 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0x4ad54c1a ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x4e230d9c ceph_osdc_writepages -EXPORT_SYMBOL net/ceph/libceph 0x51245f9c osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode -EXPORT_SYMBOL net/ceph/libceph 0x5588aa14 osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x580a3522 ceph_messenger_init -EXPORT_SYMBOL net/ceph/libceph 0x5d30bd26 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x5dbb7ee6 ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0x5e998d8c ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0x60f3d5d1 ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0x626b71b8 ceph_auth_create_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x6615b7c5 ceph_osdc_build_request -EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x6b500db7 ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x6fc009a3 ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0x7003b5d4 ceph_calc_pg_primary -EXPORT_SYMBOL net/ceph/libceph 0x74fed70d ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x756bf187 ceph_osdc_create_event -EXPORT_SYMBOL net/ceph/libceph 0x7609370c ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x771f1953 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0x7a67d749 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x7d32f973 ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x7e4cf001 __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x7e8cd2fb ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0x80fdf4d4 osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x8e04e742 ceph_auth_update_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x916a5396 ceph_monc_got_mdsmap -EXPORT_SYMBOL net/ceph/libceph 0x95ce80ea ceph_client_id -EXPORT_SYMBOL net/ceph/libceph 0x981325f5 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup -EXPORT_SYMBOL net/ceph/libceph 0x99e628d0 ceph_get_direct_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x9cb1934a ceph_osdc_put_event -EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xa1ebde8f ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xa6283466 ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0xaabd6ae6 ceph_oloc_oid_to_pg -EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb19dc152 ceph_pagelist_reserve -EXPORT_SYMBOL net/ceph/libceph 0xb291cda6 ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xb31a1f82 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0xb4509db6 ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit -EXPORT_SYMBOL net/ceph/libceph 0xb769757a ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0xbd2a71e2 ceph_monc_request_next_osdmap -EXPORT_SYMBOL net/ceph/libceph 0xbe783cca ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0xbf74801b ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0xc128afdb osd_req_op_watch_init -EXPORT_SYMBOL net/ceph/libceph 0xc13075d9 osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xc19d3912 ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xc4509450 ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup -EXPORT_SYMBOL net/ceph/libceph 0xc608c39a ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init -EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips -EXPORT_SYMBOL net/ceph/libceph 0xcca04015 ceph_osdc_cancel_event -EXPORT_SYMBOL net/ceph/libceph 0xccfbb936 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0xd1903869 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0xd1bbf475 osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode -EXPORT_SYMBOL net/ceph/libceph 0xd5383217 ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xd80e1c0e osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0xd813625e ceph_pagelist_append -EXPORT_SYMBOL net/ceph/libceph 0xda6349ef ceph_monc_do_get_version -EXPORT_SYMBOL net/ceph/libceph 0xdb12faec ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0xdd0aa897 ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0xde0eb6ba ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0xde201780 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0xdea33884 ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xdeb51752 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0xe15b1b7a ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0xe2c19c4e osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xe55d9bcd ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0xe6b17293 ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0xe85c1e1f ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0xec588e44 ceph_osdc_set_request_linger -EXPORT_SYMBOL net/ceph/libceph 0xee1b6180 ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0xf318d8ae ceph_messenger_fini -EXPORT_SYMBOL net/ceph/libceph 0xfbc95130 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0xfcb5145d ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0xfeae9b0f ceph_osdc_flush_notifies -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x08734dc5 dccp_req_err -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x684f0b68 dccp_syn_ack_timeout -EXPORT_SYMBOL net/ieee802154/ieee802154 0x3cd325fc wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0x4ea461eb wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0x7dc568f7 wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0xa1c5864d wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0xa97c63c7 wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0xe4b3da01 wpan_phy_new -EXPORT_SYMBOL net/ipv4/fou 0x0c07b4a3 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x2408a50b fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0x4df0a89d gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0xed741d6f gue_encap_hlen -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x033544ed ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x3e6f9002 ip_tunnel_dst_reset_all -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x4537c877 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x66e681bd ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x6fc60a78 ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x9a266eb1 ip_tunnel_encap -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x4bc749e5 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x70f2347d arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x9481d34b arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x39d0da12 ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x48433b31 ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xdbf8fa03 ipt_unregister_table -EXPORT_SYMBOL net/ipv4/tunnel4 0xa8437681 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/tunnel4 0xc79ed2f9 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/udp_tunnel 0xe32622ca udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0a449a93 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1a9fde0f ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x923faad3 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x96795653 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x19aa760e ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x3a27534a ip6t_unregister_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xd0b5bcb5 ip6t_register_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x9838e521 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/tunnel6 0xd0a3d619 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xbf09ac36 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xdfaa062b xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x0ce04980 ircomm_flow_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x4982e063 ircomm_connect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x58120884 ircomm_open -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x94f29835 ircomm_control_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x97b24383 ircomm_connect_response -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x9a892f93 ircomm_close -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xb55a7e2c ircomm_disconnect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xbe3a8614 ircomm_data_request -EXPORT_SYMBOL net/irda/irda 0x0074816a irlmp_close_lsap -EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value -EXPORT_SYMBOL net/irda/irda 0x072391db iriap_open -EXPORT_SYMBOL net/irda/irda 0x0756ccfc irda_notify_init -EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service -EXPORT_SYMBOL net/irda/irda 0x0df5bbd3 irda_device_set_media_busy -EXPORT_SYMBOL net/irda/irda 0x1290f89e irlmp_data_request -EXPORT_SYMBOL net/irda/irda 0x14c20815 irlap_open -EXPORT_SYMBOL net/irda/irda 0x17a491c5 irias_add_octseq_attrib -EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda -EXPORT_SYMBOL net/irda/irda 0x36cad55b hashbin_remove_this -EXPORT_SYMBOL net/irda/irda 0x37791344 hashbin_get_first -EXPORT_SYMBOL net/irda/irda 0x3b8f0603 async_unwrap_char -EXPORT_SYMBOL net/irda/irda 0x41ed8362 irttp_connect_response -EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value -EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service -EXPORT_SYMBOL net/irda/irda 0x4a1c06d4 irlmp_connect_response -EXPORT_SYMBOL net/irda/irda 0x6245825f irttp_dup -EXPORT_SYMBOL net/irda/irda 0x6492e28c hashbin_get_next -EXPORT_SYMBOL net/irda/irda 0x670f3109 irttp_close_tsap -EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies -EXPORT_SYMBOL net/irda/irda 0x6b76aa70 hashbin_delete -EXPORT_SYMBOL net/irda/irda 0x6d69982b irlmp_open_lsap -EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client -EXPORT_SYMBOL net/irda/irda 0x731cec71 hashbin_insert -EXPORT_SYMBOL net/irda/irda 0x73ab1be5 iriap_getvaluebyclass_request -EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client -EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client -EXPORT_SYMBOL net/irda/irda 0x7e67ca6e irias_new_object -EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert -EXPORT_SYMBOL net/irda/irda 0x8005367b irttp_data_request -EXPORT_SYMBOL net/irda/irda 0x80bee48c irlmp_connect_request -EXPORT_SYMBOL net/irda/irda 0x8982c8d9 irias_delete_object -EXPORT_SYMBOL net/irda/irda 0x8a44dd5e hashbin_new -EXPORT_SYMBOL net/irda/irda 0x8b9e282b irttp_udata_request -EXPORT_SYMBOL net/irda/irda 0x90ddb6bd hashbin_remove -EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack -EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all -EXPORT_SYMBOL net/irda/irda 0x9d08b29e irlmp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0x9ffda243 irias_add_string_attrib -EXPORT_SYMBOL net/irda/irda 0xa170ccd4 irttp_connect_request -EXPORT_SYMBOL net/irda/irda 0xa224ee91 irttp_flow_request -EXPORT_SYMBOL net/irda/irda 0xa8e2f9d0 irlap_close -EXPORT_SYMBOL net/irda/irda 0xb3c13d7f irias_add_integer_attrib -EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value -EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute -EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request -EXPORT_SYMBOL net/irda/irda 0xbf7dd554 hashbin_find -EXPORT_SYMBOL net/irda/irda 0xbfa7c08d hashbin_lock_find -EXPORT_SYMBOL net/irda/irda 0xc477368d irias_find_object -EXPORT_SYMBOL net/irda/irda 0xd62dbb66 irttp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint -EXPORT_SYMBOL net/irda/irda 0xe069ffe0 irttp_open_tsap -EXPORT_SYMBOL net/irda/irda 0xe70b7e42 iriap_close -EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries -EXPORT_SYMBOL net/irda/irda 0xf199cba4 irias_insert_object -EXPORT_SYMBOL net/irda/irda 0xfa2902f5 async_wrap_skb -EXPORT_SYMBOL net/irda/irda 0xfb94cfb8 alloc_irdadev -EXPORT_SYMBOL net/l2tp/l2tp_core 0xc990c396 l2tp_recv_common -EXPORT_SYMBOL net/l2tp/l2tp_ip 0x92bc3afa l2tp_ioctl -EXPORT_SYMBOL net/lapb/lapb 0x4e7c28d0 lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0x51aaa016 lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0x68d542fe lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0x96cd284c lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0xc8ceb28d lapb_register -EXPORT_SYMBOL net/lapb/lapb 0xc993c50e lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0xcaab19b9 lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0xda771460 lapb_getparms -EXPORT_SYMBOL net/llc/llc 0x02660cfa llc_sap_find -EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x55acc877 llc_add_pack -EXPORT_SYMBOL net/llc/llc 0x880819b8 llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0xe0b8ab37 llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0xe168e79b llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0xedc95f4c llc_sap_open -EXPORT_SYMBOL net/llc/llc 0xf70ae947 llc_sap_close -EXPORT_SYMBOL net/mac80211/mac80211 0x02166686 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x021774ad ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x02291cd7 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0x044cf5b0 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x0ce5303a __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x0d814334 ieee80211_csa_update_counter -EXPORT_SYMBOL net/mac80211/mac80211 0x0d9b894f ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x124aac70 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x13cea54d ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x1495019e ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x18e3ea89 ieee80211_csa_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0x194e4a87 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x19fe0576 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x28010ded ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0x28693b6a ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x2ad950cd ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x2e9796c3 ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x35f8ff15 ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x3f8c80ce wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x43fc9d96 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x450779f4 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0x47ebcb24 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x4d81d137 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0x50ef9fba ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x58c640d6 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0x64667ac4 rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x69de096c ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x6a2de2f4 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x6a488314 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x6b9bfa8f ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x6d3c9834 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x6eb95464 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0x723e14a3 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0x76b9ef28 ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x78c35a9f ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x7f289b76 ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0x82de4aba ieee80211_stop_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x85010897 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x86b3fe23 rate_control_send_low -EXPORT_SYMBOL net/mac80211/mac80211 0x895a275c ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x8c20c41b __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x8f0080f1 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0x8f4e9a08 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0x91fe137b ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0x9228bef3 ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x97b17f47 ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x98c6bcd7 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xa45d6c1f ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xa7f5b1cf __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xa93b8a20 ieee80211_tx_status_noskb -EXPORT_SYMBOL net/mac80211/mac80211 0xa98e7993 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xa9e7df72 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0xaa32ff83 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xaca82973 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xb1aaef91 ieee80211_get_key_tx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0xb1b557ce ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0xb2602bc7 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0xb2a409ad ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0xbace3191 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0xbbffc00f ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0xc4cc66bd ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0xc71bf05e ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0xc7df71f9 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0xc8b7b070 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xc9821183 ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0xca5b7a93 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xcb2d5797 ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xcdef0256 ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xd2baed10 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0xd482c78c ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xd572a65d ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0xda5d2d42 ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0xdce3471b ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xde74a13f ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xdfe86fca ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0xe81a34d3 ieee80211_start_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0xe8da23dc ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xea85aba2 ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0xf404598d ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xf5134c7b ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0xf7389591 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0xfc2ddff7 ieee80211_pspoll_get -EXPORT_SYMBOL net/mac802154/mac802154 0x0caa0027 ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x662ff11e ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x77dec562 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0xb602409e ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xcf03fd77 ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0xde34009b ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xf2a2fea8 ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xf37738bf ieee802154_xmit_complete -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x05a5b16a register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0d014a0e ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x159218f7 register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1f84aac2 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2bbbb9ab unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x33579322 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x62186f6f ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6da7db2d ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x818be6e5 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9760d5a6 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9f18abc5 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc9e78bdb ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd4463eab unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfe36b4c3 ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x33b24572 __nf_ct_ext_add_length -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xb0cc65a3 nf_conntrack_untracked -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xdd689806 __nf_ct_ext_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x1d774edb nf_xfrm_me_harder -EXPORT_SYMBOL net/netfilter/nf_nat 0x24d5db76 nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0x3c85dc05 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x899526e9 nf_nat_used_tuple -EXPORT_SYMBOL net/netfilter/nf_nat 0x99a4eb40 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0xfc06324a __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/x_tables 0x2cedbc5f xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0x3cfdc0ee xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x74f9e8ce xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xb9ac0b61 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0xc55cd577 xt_find_target -EXPORT_SYMBOL net/netfilter/x_tables 0xd0a2f25c xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xd1bd214c xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xe3f10f81 xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0xe7ad7923 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0xf43eacde xt_unregister_targets -EXPORT_SYMBOL net/nfc/hci/hci 0x0cb52b41 nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0x1d42cfc1 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0x275a43be nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0x34b27671 nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x448cae92 nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x51736509 nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0x5d03b4b9 nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0x5fa2297f nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x602cc473 nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x69666220 nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0x867572e5 nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x91aa018b nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0x946d3161 nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x950b5d4a nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0xa9398714 nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xafed7b72 nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xbcf15af2 nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0xbea7b48e nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0xd647c6fa nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0xe999da45 nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0xef51240e nfc_hci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x0bfcb648 nci_get_conn_info_by_id -EXPORT_SYMBOL net/nfc/nci/nci 0x0c22dabb nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0x25714a57 nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x33f94ccc nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x3ce2196c nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x53d41d96 nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0x5a25ab30 nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x5f241faf nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0x6317e4c2 nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x6502a4f4 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x75a4b9e6 nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x771ce97a nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x78b40d73 nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0x798a0bc0 nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0x83452723 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0x8bd4c6f2 nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0x8ecd1e8b nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x925533da nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x9da02ac5 nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0xa10d3966 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0xa692cdd3 nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0xb17cf298 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0xb4329daf nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xbd6df2e8 nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0xd1ebd568 nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0xe61c54e2 nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0xe9a30674 nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xfab27fb1 nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nfc 0x1079b9e8 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x2164b8f9 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0x4708caa4 nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0x48afb70c nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0x4c806257 nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0x4fc8c018 nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0x5905c888 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0x5babbd17 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0x61587d77 nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x622590ae nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0x780ccab9 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0x839d9e74 nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0x882ee9eb nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x91ca2a90 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0xa1d21b05 nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xa1da32f3 nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0xc320c24e nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0xc6f9df20 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0xc9f6daaa nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0xdc3ba02f nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0xe305e561 nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0xfb802e8b nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0xfd03acb4 nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0xfd23ded9 nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x3b85aa69 nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x6b364cf4 nfc_digital_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x91a5156d nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xed19f53b nfc_digital_free_device -EXPORT_SYMBOL net/phonet/phonet 0x23323d84 pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0x2d7214f4 pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0x3939ae82 pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0x52ff34b0 phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0xc600bb7c phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0xd26cddb7 phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0xda92936f pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0xff91bdb2 phonet_proto_unregister -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x186ddfc6 rxrpc_kernel_free_skb -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x24444cfc rxrpc_kernel_get_error_number -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4b6046ee key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x65360dfb rxrpc_kernel_data_delivered -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x755b54eb rxrpc_kernel_get_abort_code -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x7646c79c rxrpc_kernel_is_data_last -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x77af3b4c rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x80389c12 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xa8bd27e2 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xa9eb14a6 rxrpc_kernel_accept_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb8cef7ac rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xbd2ff332 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xde2487e0 rxrpc_kernel_reject_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xedb78c88 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf588ecd2 rxrpc_kernel_intercept_rx_messages -EXPORT_SYMBOL net/sctp/sctp 0xee373cba sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x1f178005 gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x5d1e652e gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xe0dd5244 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/sunrpc 0x01f5f6eb xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0x03bf7514 svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0x5ef90d65 xdr_truncate_encode -EXPORT_SYMBOL net/wimax/wimax 0x25d1c8ce wimax_rfkill -EXPORT_SYMBOL net/wimax/wimax 0x5efe370e wimax_reset -EXPORT_SYMBOL net/wireless/cfg80211 0x00351569 cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x0135da95 cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x0521e8ca cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x0d8308d6 __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x0eb82851 cfg80211_rx_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x1642812a cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0x1f9e18f8 cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0x2402a2f8 cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x25dd6c44 freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0x27ee0275 cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x2987ce0c ieee80211_data_from_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0x2a75a4f3 cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0x2b7fa0bc cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0x2f0e9896 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x37d0a425 cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0x3c065b20 ieee80211_data_to_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x402dd665 cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0x40608207 regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0x41ea4435 wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0x42a904ac wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x430abb58 cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x4422b4ee wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0x45a6a3e6 cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x4746e148 wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x4a407932 cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x4f8f48bd cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x4fe1c71d cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x5306f02a cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x54abcd60 cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x54e335ee cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0x54f6fb3b cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x56ab5278 cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0x578e2c95 cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x5bb01a1f cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0x5da9f880 cfg80211_connect_result -EXPORT_SYMBOL net/wireless/cfg80211 0x5f89813b cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0x5fef8070 __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x61023707 cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0x6405fc04 cfg80211_report_obss_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x680090bd cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0x6ef1ce55 cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x7031b921 cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x7347170b cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x7464fb9d cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x80d08260 cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x8569a99e cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x89c19f94 wiphy_rfkill_stop_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x8a34ce05 cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x8bb0927e cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0x91ae82ae cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0x95f2e30d cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x966ff54d ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x96f178d8 wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x9951726e cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x99d70705 cfg80211_sched_scan_stopped_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x9b4e7e31 __ieee80211_get_channel -EXPORT_SYMBOL net/wireless/cfg80211 0xa052f48c cfg80211_roamed_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xa1425906 ieee80211_channel_to_frequency -EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xaa5dea84 cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xac7a0467 cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0xaf2c30ef cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xb263cb50 wiphy_rfkill_set_hw_state -EXPORT_SYMBOL net/wireless/cfg80211 0xb6a82d1c cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0xb8420be0 regulatory_set_wiphy_regd_sync_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0xbe37591f cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xbf3d2b45 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0xbf91b886 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xc542589e cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0xc6f13f90 cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xcca24aa3 cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0xcf805adb cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0xd05b2c53 cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xd0ee0efe wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0xd64f3178 ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0xdb8b4437 cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdd5d9c2c regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0xe0cd4354 __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xe64aab46 ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0xe817df72 cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0xeb6d7c6c ieee80211_ie_split -EXPORT_SYMBOL net/wireless/cfg80211 0xeb7dbc86 cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xee34b402 cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xf70e3df3 cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0xf930d3c9 cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xfde035f4 cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie -EXPORT_SYMBOL net/wireless/lib80211 0x1ebdb9df lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x3478970d lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0x4ba9c74e lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0x9877ca62 lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x9f4af152 lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xee8f1b21 lib80211_crypt_info_init -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x5321db06 snd_mixer_oss_ioctl_card -EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x5d2f9626 snd_seq_kernel_client_enqueue_blocking -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x87d8bc3d snd_seq_kernel_client_write_poll -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue -EXPORT_SYMBOL sound/core/seq/snd-seq 0xcf6fc3de snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0xf10472a0 snd_seq_event_port_attach -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x7b05bf19 snd_seq_device_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x127b30fb snd_midi_event_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x1cdc0812 snd_midi_event_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x59eb74ae snd_midi_event_encode_byte -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x8102ed2f snd_midi_event_reset_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xb11ba32d snd_midi_event_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xb2c7f684 snd_midi_event_reset_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xea0e5748 snd_midi_event_free -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xed42580b snd_midi_event_no_status -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xb6610eec snd_virmidi_new -EXPORT_SYMBOL sound/core/snd-hwdep 0x75cf7585 snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x090d91fd snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0x0a3d8f5a snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x21f63dc3 snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0x2351ceb6 snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0x2364c6e1 snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0x2ab3901d snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0x3acbd14e snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4c6d3ab2 snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0x50762e3a snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x5bbf6327 snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x6fb047ff snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0xa411bae9 snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0xb78ee677 __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd2d46411 snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xdc24d0bd snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0xeda6f908 __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf18dd1df snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf9450e97 snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0xffaa0ed8 snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xba54f142 snd_mpu401_uart_new -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x09b159d5 snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x0e5b05c6 snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1dea9c3d snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x20ab5528 snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x29c851a0 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x2ad87e8a snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8eeb3a2e snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa25e6c29 snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xee735f58 snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x004fef40 snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x0bd5f4bc snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x232a9920 snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x244d53a7 snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x572d9475 snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5b9899d7 snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x766e5623 snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa9fc7bad snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xcc322e44 snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x09e61ee7 amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0a8f3b06 amdtp_stream_pcm_pointer -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0b2ac788 cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x14e6664a iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2086f854 cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x22e39b2c cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x26a1914f amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2c7b62e0 snd_fw_async_midi_port_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2c9906a0 cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3484f3f3 avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3b24d994 iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4733f0bc cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x684c82c5 amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6fda56f2 avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7c6c1788 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7da4bcc8 fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7e892619 snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x960a8cb6 amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa2aacfc9 snd_fw_async_midi_port_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xabec2a1c avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xad029151 amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaee70988 fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb00e7d1a amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb3748930 amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbb19d0f1 fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbd0a5968 amdtp_stream_stop -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xddc6c4a7 fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe51db242 fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf2f0658e fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf5b39afe amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfd2bfc9e fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfd6880ac amdtp_stream_start -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x2bcbb579 snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xbdb98cfd snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0c4d0092 snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x11742b54 snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1b2b5080 snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3d957a29 snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x431bad95 snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x868d31d9 snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x8b895d4b snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xc9037028 snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x42b07214 snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x48ef92bf snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xa3238408 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xc2c9e5fd snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x97195b9c snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xc0c7f466 snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/snd-i2c 0x1723cab0 snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x6bda8d6a snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x9b30f7b2 snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0xf331d281 snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0xf80b14fe snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0xffcf4f4e snd_i2c_readbytes -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x01aad051 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x071ef010 snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x10d4b5c5 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3e391123 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6bd6c83d snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7275ebeb snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7d52f4ac snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x80bc0df4 snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x89c318f9 snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x90d6651c snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9641b19a snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9c609317 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb3f6d09a snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd12b9e81 snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd572ca7f snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd8a0bd29 snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xddf3b25d snd_ac97_write -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x4070917b snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xaa46e92f snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xcdfe4ce2 snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2a59df1a oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x357fbb71 oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x38d63dc9 oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4625e3cd oxygen_pci_remove -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4e689cb6 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x553168ca oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6665ef1e oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x724d6835 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x80853b42 oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x876aa6ac oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8b94782f oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x95ea0cc9 oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9a3f16cd oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa069f5cd oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa74974a9 oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb935dfe4 oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb93940fd oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbb73e8a1 oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd6400798 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xda17d135 oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf0e195a3 oxygen_write_uart -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x40a3a01b tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xcd6fc831 tlv320aic23_probe -EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x55597c49 fsl_asoc_get_dma_channel -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x42ce25f0 snd_usbmidi_create -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect -EXPORT_SYMBOL vmlinux 0x000816a9 kfree_put_link -EXPORT_SYMBOL vmlinux 0x001ee95a imx_ssi_fiq_base -EXPORT_SYMBOL vmlinux 0x002b82f3 kernel_getsockopt -EXPORT_SYMBOL vmlinux 0x002ea836 swiotlb_free_coherent -EXPORT_SYMBOL vmlinux 0x003ed69a __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0x0048fcc7 tcp_proto_cgroup -EXPORT_SYMBOL vmlinux 0x004bda03 scsi_host_put -EXPORT_SYMBOL vmlinux 0x008c2695 blk_complete_request -EXPORT_SYMBOL vmlinux 0x0091cd4d register_console -EXPORT_SYMBOL vmlinux 0x00c30a91 in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x00cb6dd6 scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00f15ecc i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0x00f79290 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve -EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr -EXPORT_SYMBOL vmlinux 0x011a9e53 elf_hwcap2 -EXPORT_SYMBOL vmlinux 0x013fb4d2 of_get_pci_address -EXPORT_SYMBOL vmlinux 0x014a9714 snd_pcm_new_internal -EXPORT_SYMBOL vmlinux 0x01510f0b inode_claim_rsv_space -EXPORT_SYMBOL vmlinux 0x01556adc inet6_add_offload -EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer -EXPORT_SYMBOL vmlinux 0x0173d42e __splice_from_pipe -EXPORT_SYMBOL vmlinux 0x01804d3c mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0x018589e3 jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0x01866676 simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0x0186e2de smp_call_function_many -EXPORT_SYMBOL vmlinux 0x018cc84c mapping_tagged -EXPORT_SYMBOL vmlinux 0x01a3d310 omap_set_dma_channel_mode -EXPORT_SYMBOL vmlinux 0x01b7fd59 dispc_read_irqstatus -EXPORT_SYMBOL vmlinux 0x01c896eb xattr_full_name -EXPORT_SYMBOL vmlinux 0x01ea132e dispc_runtime_put -EXPORT_SYMBOL vmlinux 0x01ee934f cdrom_ioctl -EXPORT_SYMBOL vmlinux 0x01f29403 phy_device_register -EXPORT_SYMBOL vmlinux 0x01fd6d8e devm_kvasprintf -EXPORT_SYMBOL vmlinux 0x020ec9ec elv_rb_find -EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check -EXPORT_SYMBOL vmlinux 0x0213ff89 __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x02196324 __aeabi_idiv -EXPORT_SYMBOL vmlinux 0x0224cff8 ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0x0237af23 proc_set_size -EXPORT_SYMBOL vmlinux 0x023a386a account_page_redirty -EXPORT_SYMBOL vmlinux 0x0241e8aa scsi_register_interface -EXPORT_SYMBOL vmlinux 0x0246b957 copy_page_to_iter -EXPORT_SYMBOL vmlinux 0x02573b36 omap_disable_dma_irq -EXPORT_SYMBOL vmlinux 0x0260de62 mount_nodev -EXPORT_SYMBOL vmlinux 0x026212cd phy_attach_direct -EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x027ba579 snd_register_oss_device -EXPORT_SYMBOL vmlinux 0x0283dfe3 _snd_pcm_hw_params_any -EXPORT_SYMBOL vmlinux 0x028b797a pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0x028e092d neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0x0293e693 nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0x02a5029a install_exec_creds -EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table -EXPORT_SYMBOL vmlinux 0x02d6d984 param_get_int -EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string -EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact -EXPORT_SYMBOL vmlinux 0x02ef742b percpu_counter_set -EXPORT_SYMBOL vmlinux 0x03005606 omapdss_get_version -EXPORT_SYMBOL vmlinux 0x03026722 mempool_alloc -EXPORT_SYMBOL vmlinux 0x03115097 simple_transaction_set -EXPORT_SYMBOL vmlinux 0x031f847e bio_copy_data -EXPORT_SYMBOL vmlinux 0x032048b0 linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x0337a780 user_revoke -EXPORT_SYMBOL vmlinux 0x034e6562 tcp_gro_complete -EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x035955cc d_find_alias -EXPORT_SYMBOL vmlinux 0x035b2bb9 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0x0366023a input_open_device -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x036fa0ec md_reload_sb -EXPORT_SYMBOL vmlinux 0x0378aea4 mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x037b6662 of_get_ddr_timings -EXPORT_SYMBOL vmlinux 0x039517e3 sock_no_sendpage -EXPORT_SYMBOL vmlinux 0x03a127f5 ps2_command -EXPORT_SYMBOL vmlinux 0x03ba39b0 v7_flush_user_cache_all -EXPORT_SYMBOL vmlinux 0x03bdf18e I_BDEV -EXPORT_SYMBOL vmlinux 0x03d13423 genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0x03db9f1d input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x03ee7ed2 omapdss_register_display -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x0411d3de i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0x041a3e2a ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x0452156d current_in_userns -EXPORT_SYMBOL vmlinux 0x04817921 nf_log_trace -EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display -EXPORT_SYMBOL vmlinux 0x048a5fa2 simple_map_init -EXPORT_SYMBOL vmlinux 0x04941ecc tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0x04afd4fb release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x04cda566 snd_interval_refine -EXPORT_SYMBOL vmlinux 0x04dc8d74 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol -EXPORT_SYMBOL vmlinux 0x04ed9c3f skb_free_datagram -EXPORT_SYMBOL vmlinux 0x04fbfc94 seq_read -EXPORT_SYMBOL vmlinux 0x05004223 unload_nls -EXPORT_SYMBOL vmlinux 0x05122f2e i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0x051730b8 mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0x05176253 led_set_brightness -EXPORT_SYMBOL vmlinux 0x05226e89 processor -EXPORT_SYMBOL vmlinux 0x0522cba9 brioctl_set -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x0527c416 pcie_get_mps -EXPORT_SYMBOL vmlinux 0x053123e5 textsearch_unregister -EXPORT_SYMBOL vmlinux 0x05363b74 dev_notice -EXPORT_SYMBOL vmlinux 0x05546cce __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0x056595f8 backlight_device_register -EXPORT_SYMBOL vmlinux 0x056a040c netif_napi_del -EXPORT_SYMBOL vmlinux 0x05735d1d netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0x057b4c31 key_task_permission -EXPORT_SYMBOL vmlinux 0x0580aed8 registered_fb -EXPORT_SYMBOL vmlinux 0x05b06d41 dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0x05c7e422 tty_port_destroy -EXPORT_SYMBOL vmlinux 0x05f976c4 consume_skb -EXPORT_SYMBOL vmlinux 0x060676de block_commit_write -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x06265991 fput -EXPORT_SYMBOL vmlinux 0x06321cec blk_rq_map_user -EXPORT_SYMBOL vmlinux 0x0632cfcb blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x06364f75 filemap_fdatawait -EXPORT_SYMBOL vmlinux 0x065c7184 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x06607f92 dss_feat_get_supported_outputs -EXPORT_SYMBOL vmlinux 0x06691112 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x06696cd9 snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx -EXPORT_SYMBOL vmlinux 0x069a9bac scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x06a213a1 bio_flush_dcache_pages -EXPORT_SYMBOL vmlinux 0x06c7ad18 xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x06d4cfd8 i2c_use_client -EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn -EXPORT_SYMBOL vmlinux 0x072a8f8d __set_fiq_regs -EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x0745bce0 __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0x075028a6 generic_file_splice_read -EXPORT_SYMBOL vmlinux 0x076f66f8 generic_listxattr -EXPORT_SYMBOL vmlinux 0x0781db80 register_sound_midi -EXPORT_SYMBOL vmlinux 0x0784a72f ppp_register_compressor -EXPORT_SYMBOL vmlinux 0x07982a66 block_write_full_page -EXPORT_SYMBOL vmlinux 0x07a2a937 nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07bd744e tcp_conn_request -EXPORT_SYMBOL vmlinux 0x07c6eea2 vfs_mknod -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07cf9099 wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0x07d01694 mmc_can_trim -EXPORT_SYMBOL vmlinux 0x07e88930 padata_unregister_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x07f27010 tty_vhangup -EXPORT_SYMBOL vmlinux 0x07ff1c56 scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0x07ff3cea __devm_request_region -EXPORT_SYMBOL vmlinux 0x08162d64 omapdss_default_get_timings -EXPORT_SYMBOL vmlinux 0x081f3afb complete_all -EXPORT_SYMBOL vmlinux 0x081fff9d fs_bio_set -EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x0837cfd1 neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x0840f13a jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x084bca1a tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0x087d015a pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0x0889b4a4 copy_strings_kernel -EXPORT_SYMBOL vmlinux 0x088b4f44 force_sig -EXPORT_SYMBOL vmlinux 0x0894712e nand_lock -EXPORT_SYMBOL vmlinux 0x08ba6058 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0x08bfbd01 irq_set_chip -EXPORT_SYMBOL vmlinux 0x08cf590c inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0x08e04f71 udplite_prot -EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0x0905e61a dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0x0933d4ba eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key -EXPORT_SYMBOL vmlinux 0x095aa0cd netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x097dcce8 __get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x097ec1ff _raw_write_lock_irqsave -EXPORT_SYMBOL vmlinux 0x09806e06 kernel_write -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x0991a59e of_match_node -EXPORT_SYMBOL vmlinux 0x09b0a826 netlink_unicast -EXPORT_SYMBOL vmlinux 0x09b20295 proto_unregister -EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0x09cf1b46 proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x09d09a05 pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x09d2a92d iterate_mounts -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09d5556c snd_pcm_lib_writev -EXPORT_SYMBOL vmlinux 0x09ed3ade input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x0a059be1 dst_discard_out -EXPORT_SYMBOL vmlinux 0x0a0786de udplite_table -EXPORT_SYMBOL vmlinux 0x0a1491f3 simple_fill_super -EXPORT_SYMBOL vmlinux 0x0a24c10f kill_bdev -EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class -EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr -EXPORT_SYMBOL vmlinux 0x0a373226 crc32_le_shift -EXPORT_SYMBOL vmlinux 0x0a402ccf blk_free_tags -EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell -EXPORT_SYMBOL vmlinux 0x0a6bde4f skb_set_owner_w -EXPORT_SYMBOL vmlinux 0x0a755ef6 abx500_event_registers_startup_state_get -EXPORT_SYMBOL vmlinux 0x0a81072e genphy_read_status -EXPORT_SYMBOL vmlinux 0x0a8b487c thaw_bdev -EXPORT_SYMBOL vmlinux 0x0a9f0a4e kfree_skb -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0ad135bb phy_connect_direct -EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0x0b1186e6 inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b251505 snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL vmlinux 0x0b41d4ff snd_ctl_new1 -EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init -EXPORT_SYMBOL vmlinux 0x0b4f51ac vfs_writev -EXPORT_SYMBOL vmlinux 0x0b5379bc mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0x0b57155e tegra_io_rail_power_off -EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b7e13de xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0x0b89136f set_blocksize -EXPORT_SYMBOL vmlinux 0x0b8da528 generic_shutdown_super -EXPORT_SYMBOL vmlinux 0x0b941cf3 put_tty_driver -EXPORT_SYMBOL vmlinux 0x0b95cd24 flush_dcache_page -EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bc8f754 nvm_submit_io -EXPORT_SYMBOL vmlinux 0x0bd75794 dss_mgr_unregister_framedone_handler -EXPORT_SYMBOL vmlinux 0x0bfbbb66 eth_gro_complete -EXPORT_SYMBOL vmlinux 0x0c063cf5 elevator_init -EXPORT_SYMBOL vmlinux 0x0c2c1ff1 napi_gro_frags -EXPORT_SYMBOL vmlinux 0x0c31818f netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat -EXPORT_SYMBOL vmlinux 0x0c52809c _snd_ctl_add_slave -EXPORT_SYMBOL vmlinux 0x0c549551 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features -EXPORT_SYMBOL vmlinux 0x0c684534 clkdev_add -EXPORT_SYMBOL vmlinux 0x0c878fb5 jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x0ca32da5 mmc_can_reset -EXPORT_SYMBOL vmlinux 0x0ca54fee _test_and_set_bit -EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0x0cc4a80e forget_cached_acl -EXPORT_SYMBOL vmlinux 0x0cfefe1e percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0x0d01c1ee d_move -EXPORT_SYMBOL vmlinux 0x0d396bf7 __generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x0d3b8f7b ppp_channel_index -EXPORT_SYMBOL vmlinux 0x0d3f57a2 _find_next_bit_le -EXPORT_SYMBOL vmlinux 0x0d4782e6 simple_open -EXPORT_SYMBOL vmlinux 0x0d4d7a32 _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0x0d4e62c3 d_obtain_root -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d70c372 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft -EXPORT_SYMBOL vmlinux 0x0db781bc user_path_at_empty -EXPORT_SYMBOL vmlinux 0x0dbb9964 mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex -EXPORT_SYMBOL vmlinux 0x0dc6e9c2 of_match_device -EXPORT_SYMBOL vmlinux 0x0dd75eeb d_walk -EXPORT_SYMBOL vmlinux 0x0dff996a phys_mem_access_prot -EXPORT_SYMBOL vmlinux 0x0e12ee6e mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0x0e1ddff9 tty_lock -EXPORT_SYMBOL vmlinux 0x0e25d651 mtd_concat_create -EXPORT_SYMBOL vmlinux 0x0e312249 devm_clk_put -EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec -EXPORT_SYMBOL vmlinux 0x0e778918 __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x0e8914aa generic_end_io_acct -EXPORT_SYMBOL vmlinux 0x0e92ae1b of_device_unregister -EXPORT_SYMBOL vmlinux 0x0eacdea1 of_find_compatible_node -EXPORT_SYMBOL vmlinux 0x0eaf451e hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ecd66dc rwsem_wake -EXPORT_SYMBOL vmlinux 0x0edd1cd2 scsi_scan_host -EXPORT_SYMBOL vmlinux 0x0ee7300d pci_request_regions -EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy -EXPORT_SYMBOL vmlinux 0x0efc762c cpu_user -EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups -EXPORT_SYMBOL vmlinux 0x0f0bc42f blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0x0f1929c5 arp_send -EXPORT_SYMBOL vmlinux 0x0f1c0ddb blk_queue_init_tags -EXPORT_SYMBOL vmlinux 0x0f2501cb tcf_action_exec -EXPORT_SYMBOL vmlinux 0x0f2ebac4 thaw_super -EXPORT_SYMBOL vmlinux 0x0f37b04b i2c_put_adapter -EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec -EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size -EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x0f902857 get_super_thawed -EXPORT_SYMBOL vmlinux 0x0f9114d9 end_page_writeback -EXPORT_SYMBOL vmlinux 0x0f93d33e nf_log_register -EXPORT_SYMBOL vmlinux 0x0f9dc92d sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0x0fa2a45e __memzero -EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fbe2dab scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x0fde18bf scsi_remove_host -EXPORT_SYMBOL vmlinux 0x0fe6c3a9 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0x0ff178f6 __aeabi_idivmod -EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress -EXPORT_SYMBOL vmlinux 0x101c7043 blk_queue_dma_pad -EXPORT_SYMBOL vmlinux 0x10240388 xfrm_input_resume -EXPORT_SYMBOL vmlinux 0x103aaee4 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0x10650a20 setup_arg_pages -EXPORT_SYMBOL vmlinux 0x106991bf d_rehash -EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x10716403 snd_cards -EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user -EXPORT_SYMBOL vmlinux 0x1079529a neigh_resolve_output -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x1087cc4b vfs_unlink -EXPORT_SYMBOL vmlinux 0x10899604 kernel_read -EXPORT_SYMBOL vmlinux 0x10a01d54 snd_device_free -EXPORT_SYMBOL vmlinux 0x10a71c31 flow_cache_fini -EXPORT_SYMBOL vmlinux 0x10aa329c generic_block_bmap -EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu -EXPORT_SYMBOL vmlinux 0x10f64285 tty_register_driver -EXPORT_SYMBOL vmlinux 0x10f6e922 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0x10fecf06 sock_no_ioctl -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x11145431 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0x1125c638 dquot_free_inode -EXPORT_SYMBOL vmlinux 0x112748bd omap_vrfb_adjust_size -EXPORT_SYMBOL vmlinux 0x112ae52f devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x11760eff xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x117c2934 d_alloc -EXPORT_SYMBOL vmlinux 0x119b50e7 elf_check_arch -EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned -EXPORT_SYMBOL vmlinux 0x11a176f7 simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x11a3faf1 udp6_csum_init -EXPORT_SYMBOL vmlinux 0x11a5df04 __ip_dev_find -EXPORT_SYMBOL vmlinux 0x11bd4dcb key_revoke -EXPORT_SYMBOL vmlinux 0x11ca3bc2 of_phy_register_fixed_link -EXPORT_SYMBOL vmlinux 0x11d0f791 skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0x11f3940d jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin -EXPORT_SYMBOL vmlinux 0x120845f9 i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const -EXPORT_SYMBOL vmlinux 0x1217a33b simple_write_begin -EXPORT_SYMBOL vmlinux 0x1219c359 lro_receive_skb -EXPORT_SYMBOL vmlinux 0x123a9f1f fbcon_set_rotate -EXPORT_SYMBOL vmlinux 0x12644897 __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x1269998e keyring_alloc -EXPORT_SYMBOL vmlinux 0x126a0e68 d_alloc_pseudo -EXPORT_SYMBOL vmlinux 0x127ed5ba input_unregister_handle -EXPORT_SYMBOL vmlinux 0x128d974e dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0x129619af hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range -EXPORT_SYMBOL vmlinux 0x12a9e9a6 pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0x12ad0e62 tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0x12b318fe simple_getattr -EXPORT_SYMBOL vmlinux 0x12d8e07e security_path_symlink -EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc -EXPORT_SYMBOL vmlinux 0x12dae0bd dqget -EXPORT_SYMBOL vmlinux 0x12e90898 vfs_statfs -EXPORT_SYMBOL vmlinux 0x1319449d secure_modules -EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x13307fde vsscanf -EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc -EXPORT_SYMBOL vmlinux 0x13408916 sock_wake_async -EXPORT_SYMBOL vmlinux 0x134d7839 blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0x13518222 jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x136e230c __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x137400db netlink_set_err -EXPORT_SYMBOL vmlinux 0x137a1265 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0x13823d33 mmc_set_blockcount -EXPORT_SYMBOL vmlinux 0x13921e6c mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x13a44f30 kern_unmount -EXPORT_SYMBOL vmlinux 0x13b66256 set_cached_acl -EXPORT_SYMBOL vmlinux 0x13bb0355 dev_mc_unsync -EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13d108c6 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation -EXPORT_SYMBOL vmlinux 0x1410febd inet_shutdown -EXPORT_SYMBOL vmlinux 0x141cc0e5 kernel_setsockopt -EXPORT_SYMBOL vmlinux 0x141e56d2 pps_event -EXPORT_SYMBOL vmlinux 0x1420b379 kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0x1444d50c security_inode_init_security -EXPORT_SYMBOL vmlinux 0x1456e139 nvm_dev_dma_free -EXPORT_SYMBOL vmlinux 0x147b81b8 __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x147da157 blk_queue_make_request -EXPORT_SYMBOL vmlinux 0x148ded11 truncate_pagecache -EXPORT_SYMBOL vmlinux 0x14a341aa padata_start -EXPORT_SYMBOL vmlinux 0x14ac61ac dev_uc_sync -EXPORT_SYMBOL vmlinux 0x14b8c06d unregister_filesystem -EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x14d4a9c5 _change_bit -EXPORT_SYMBOL vmlinux 0x14eb0be1 dma_sync_wait -EXPORT_SYMBOL vmlinux 0x14f1a17c dcache_dir_open -EXPORT_SYMBOL vmlinux 0x14fb8716 pci_request_region -EXPORT_SYMBOL vmlinux 0x152de06f snd_ctl_find_numid -EXPORT_SYMBOL vmlinux 0x154b64bc __nlmsg_put -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x158a0c14 devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0x1596c0c1 kill_pgrp -EXPORT_SYMBOL vmlinux 0x159920d6 blk_recount_segments -EXPORT_SYMBOL vmlinux 0x15a11330 xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x15aec122 __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0x15b7c488 cfb_copyarea -EXPORT_SYMBOL vmlinux 0x15ba7776 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15e52b53 padata_set_cpumask -EXPORT_SYMBOL vmlinux 0x15eac042 bio_integrity_trim -EXPORT_SYMBOL vmlinux 0x16068224 xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0x1608e6df omapdss_register_output -EXPORT_SYMBOL vmlinux 0x1616b81e pcim_enable_device -EXPORT_SYMBOL vmlinux 0x162ccc0c lg_local_lock -EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null -EXPORT_SYMBOL vmlinux 0x1631eb28 swiotlb_dma_mapping_error -EXPORT_SYMBOL vmlinux 0x163ce5c4 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0x164793d8 devfreq_interval_update -EXPORT_SYMBOL vmlinux 0x16495db5 of_get_parent -EXPORT_SYMBOL vmlinux 0x166d3322 sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x1678b9c8 dquot_commit_info -EXPORT_SYMBOL vmlinux 0x1683a50b radix_tree_delete -EXPORT_SYMBOL vmlinux 0x16cabfbd nvm_addr_to_generic_mode -EXPORT_SYMBOL vmlinux 0x16d7def9 param_get_ulong -EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16f00df5 sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0x17052eef dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x17335fb9 register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x1736a83a pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0x173a738e eth_mac_addr -EXPORT_SYMBOL vmlinux 0x173f3c0a __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x174afb1a __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0x1752c09b dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0x176c0efb omap_dss_find_output -EXPORT_SYMBOL vmlinux 0x1784f057 dispc_ovl_set_fifo_threshold -EXPORT_SYMBOL vmlinux 0x17b0c75e i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator -EXPORT_SYMBOL vmlinux 0x17f89d4d neigh_update -EXPORT_SYMBOL vmlinux 0x180f5837 scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0x1811cbec simple_follow_link -EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken -EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0x1840da44 migrate_page -EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask -EXPORT_SYMBOL vmlinux 0x18513947 dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0x185fa1d0 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x186448aa do_truncate -EXPORT_SYMBOL vmlinux 0x18790c45 netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc -EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x1897fb3d tty_hangup -EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x189c5980 arm_copy_to_user -EXPORT_SYMBOL vmlinux 0x18a11242 no_llseek -EXPORT_SYMBOL vmlinux 0x18b7a986 alloc_disk -EXPORT_SYMBOL vmlinux 0x18bd76a4 _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0x18c2227f cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x18cbd996 cdrom_release -EXPORT_SYMBOL vmlinux 0x18d19cb7 blk_put_queue -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x1903bea5 request_key -EXPORT_SYMBOL vmlinux 0x19168c38 devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0x191a4179 of_clk_get -EXPORT_SYMBOL vmlinux 0x1923be53 blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0x192947b3 mutex_lock_killable -EXPORT_SYMBOL vmlinux 0x192e549d dss_install_mgr_ops -EXPORT_SYMBOL vmlinux 0x19392f8f of_get_child_by_name -EXPORT_SYMBOL vmlinux 0x193b6510 sock_edemux -EXPORT_SYMBOL vmlinux 0x1945fbdb sk_dst_check -EXPORT_SYMBOL vmlinux 0x195928e8 end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0x19610e1f cpu_all_bits -EXPORT_SYMBOL vmlinux 0x197dc3b3 omap_set_dma_src_burst_mode -EXPORT_SYMBOL vmlinux 0x197e4ddd bio_phys_segments -EXPORT_SYMBOL vmlinux 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19aaba44 jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0x19ae41b2 pcie_set_readrq -EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19c781a0 max8998_write_reg -EXPORT_SYMBOL vmlinux 0x19ca07ce vm_event_states -EXPORT_SYMBOL vmlinux 0x19cfe0c3 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x19f2ddf9 inode_needs_sync -EXPORT_SYMBOL vmlinux 0x19f5809b dm_ratelimit_state -EXPORT_SYMBOL vmlinux 0x1a01acbc mmc_detect_change -EXPORT_SYMBOL vmlinux 0x1a058d4d generic_setlease -EXPORT_SYMBOL vmlinux 0x1a1ee7fc abx500_get_chip_id -EXPORT_SYMBOL vmlinux 0x1a20c540 omap_vrfb_supported -EXPORT_SYMBOL vmlinux 0x1a5da1c0 dquot_alloc -EXPORT_SYMBOL vmlinux 0x1a65f4ad __arm_ioremap_pfn -EXPORT_SYMBOL vmlinux 0x1a699095 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0x1a93d828 misc_deregister -EXPORT_SYMBOL vmlinux 0x1abe1128 blk_stop_queue -EXPORT_SYMBOL vmlinux 0x1ad1f2e7 _memcpy_fromio -EXPORT_SYMBOL vmlinux 0x1ad2d45f down_write_trylock -EXPORT_SYMBOL vmlinux 0x1addbe61 nobh_write_end -EXPORT_SYMBOL vmlinux 0x1aecc2fc qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b168ca9 scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0x1b1d8a1b snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL vmlinux 0x1b1ecec3 __d_drop -EXPORT_SYMBOL vmlinux 0x1b24d8f4 alloc_file -EXPORT_SYMBOL vmlinux 0x1b2a27c8 sock_register -EXPORT_SYMBOL vmlinux 0x1b2b4d0a kernel_getsockname -EXPORT_SYMBOL vmlinux 0x1b2d6d2c qcom_scm_cpu_power_down -EXPORT_SYMBOL vmlinux 0x1b35ae99 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b633acd pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug -EXPORT_SYMBOL vmlinux 0x1b9bfc3c blkdev_get -EXPORT_SYMBOL vmlinux 0x1ba0ee07 set_wb_congested -EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer -EXPORT_SYMBOL vmlinux 0x1bd84e91 blk_start_queue -EXPORT_SYMBOL vmlinux 0x1be0bc4b generic_fillattr -EXPORT_SYMBOL vmlinux 0x1beac4ec simple_dname -EXPORT_SYMBOL vmlinux 0x1c0ff8e6 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x1c17fcd2 security_inode_permission -EXPORT_SYMBOL vmlinux 0x1c24e00f framebuffer_alloc -EXPORT_SYMBOL vmlinux 0x1c450478 eth_gro_receive -EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s -EXPORT_SYMBOL vmlinux 0x1c7a6cd9 __cleancache_get_page -EXPORT_SYMBOL vmlinux 0x1c7bb214 security_path_chmod -EXPORT_SYMBOL vmlinux 0x1c81cdf1 migrate_page_copy -EXPORT_SYMBOL vmlinux 0x1c86dcc6 nand_unlock -EXPORT_SYMBOL vmlinux 0x1c91196e tty_unthrottle -EXPORT_SYMBOL vmlinux 0x1cab9a06 mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0x1cc36483 sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0x1ccf9bd3 sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0x1cdebdef md_error -EXPORT_SYMBOL vmlinux 0x1cebb44e __mdiobus_register -EXPORT_SYMBOL vmlinux 0x1cfb04fa finish_wait -EXPORT_SYMBOL vmlinux 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL vmlinux 0x1d236e44 console_stop -EXPORT_SYMBOL vmlinux 0x1d4d097b do_map_probe -EXPORT_SYMBOL vmlinux 0x1d7ea355 snd_timer_start -EXPORT_SYMBOL vmlinux 0x1da6ccfd scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0x1db7dc40 pgprot_kernel -EXPORT_SYMBOL vmlinux 0x1dbd6c98 noop_llseek -EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1dfae290 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x1e047854 warn_slowpath_fmt -EXPORT_SYMBOL vmlinux 0x1e0c0f5d vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev -EXPORT_SYMBOL vmlinux 0x1e44bcd9 simple_rename -EXPORT_SYMBOL vmlinux 0x1e4bf2d6 dcb_getapp -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e713390 netpoll_send_skb_on_dev -EXPORT_SYMBOL vmlinux 0x1e77eefc jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x1e7e805b tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x1e83699a dma_find_channel -EXPORT_SYMBOL vmlinux 0x1e8ea2ce d_drop -EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1ecfd80f xfrm_garbage_collect -EXPORT_SYMBOL vmlinux 0x1ee28b29 dev_uc_flush -EXPORT_SYMBOL vmlinux 0x1ee97298 sock_no_mmap -EXPORT_SYMBOL vmlinux 0x1eeb848e __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0x1f0e07a6 up_write -EXPORT_SYMBOL vmlinux 0x1f134ca2 mfd_cell_disable -EXPORT_SYMBOL vmlinux 0x1f177f19 devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x1f1f4991 of_phy_find_device -EXPORT_SYMBOL vmlinux 0x1f21b145 ptp_clock_index -EXPORT_SYMBOL vmlinux 0x1f26627f xfrm6_prepare_output -EXPORT_SYMBOL vmlinux 0x1f3a40f8 down_read_trylock -EXPORT_SYMBOL vmlinux 0x1f47dff5 pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0x1f503c28 sock_i_ino -EXPORT_SYMBOL vmlinux 0x1f63cce7 tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x1f687d39 fbcon_rotate_cw -EXPORT_SYMBOL vmlinux 0x1f6f0ad0 sock_setsockopt -EXPORT_SYMBOL vmlinux 0x1f76c35b tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0x1f89cdfa key_put -EXPORT_SYMBOL vmlinux 0x1f90e51b skb_checksum -EXPORT_SYMBOL vmlinux 0x1fa185e1 amba_driver_register -EXPORT_SYMBOL vmlinux 0x1fab5905 wait_for_completion -EXPORT_SYMBOL vmlinux 0x1fb7b626 mmc_wait_for_app_cmd -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fbd9417 blk_rq_set_block_pc -EXPORT_SYMBOL vmlinux 0x1fc847ba vfs_fsync -EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fd9c5b6 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0x1fdca591 serio_close -EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag -EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x1feaa9aa from_kprojid -EXPORT_SYMBOL vmlinux 0x1ffba72b devm_request_resource -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x2005e854 tcp_md5_hash_header -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x20205f64 trace_print_array_seq -EXPORT_SYMBOL vmlinux 0x203b4e4f pci_request_region_exclusive -EXPORT_SYMBOL vmlinux 0x20421305 on_each_cpu_mask -EXPORT_SYMBOL vmlinux 0x20464fde sock_from_file -EXPORT_SYMBOL vmlinux 0x2049ed22 inode_add_bytes -EXPORT_SYMBOL vmlinux 0x204b6c7b __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool -EXPORT_SYMBOL vmlinux 0x205ec8de omap_dispc_register_isr -EXPORT_SYMBOL vmlinux 0x2066764e freeze_bdev -EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq -EXPORT_SYMBOL vmlinux 0x207d9fdd file_ns_capable -EXPORT_SYMBOL vmlinux 0x2088a7b0 pipe_unlock -EXPORT_SYMBOL vmlinux 0x208d1e3d page_symlink -EXPORT_SYMBOL vmlinux 0x209ce62d rtnl_create_link -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20ab327d udp_proc_register -EXPORT_SYMBOL vmlinux 0x20b38ce4 rt6_lookup -EXPORT_SYMBOL vmlinux 0x20b7952f lock_sock_fast -EXPORT_SYMBOL vmlinux 0x20bd66cd genphy_config_aneg -EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf -EXPORT_SYMBOL vmlinux 0x20e76dcf ppp_dev_name -EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x20fccef2 scsi_add_device -EXPORT_SYMBOL vmlinux 0x21110dbf mmioset -EXPORT_SYMBOL vmlinux 0x211331fa __divsi3 -EXPORT_SYMBOL vmlinux 0x2157965d vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x2167db87 nla_reserve -EXPORT_SYMBOL vmlinux 0x216d759a mmiocpy -EXPORT_SYMBOL vmlinux 0x217e6fb1 copy_page_from_iter -EXPORT_SYMBOL vmlinux 0x21950058 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0x21a78024 nand_scan_tail -EXPORT_SYMBOL vmlinux 0x21aa8c9d dev_close -EXPORT_SYMBOL vmlinux 0x21c52919 tc6393xb_lcd_set_power -EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set -EXPORT_SYMBOL vmlinux 0x21e51c0c mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0x21f7eb8f claim_fiq -EXPORT_SYMBOL vmlinux 0x22164af8 user_path_create -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x222f6207 __nla_reserve -EXPORT_SYMBOL vmlinux 0x222f7d24 skb_clone -EXPORT_SYMBOL vmlinux 0x222fa684 lg_global_lock -EXPORT_SYMBOL vmlinux 0x2232a8a5 mempool_free -EXPORT_SYMBOL vmlinux 0x22356176 tcp_splice_read -EXPORT_SYMBOL vmlinux 0x223cc898 omap_vrfb_max_height -EXPORT_SYMBOL vmlinux 0x2256fafa div64_u64_rem -EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits -EXPORT_SYMBOL vmlinux 0x226f8605 param_get_ullong -EXPORT_SYMBOL vmlinux 0x22754d70 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint -EXPORT_SYMBOL vmlinux 0x2277d558 mx53_revision -EXPORT_SYMBOL vmlinux 0x2291572d register_shrinker -EXPORT_SYMBOL vmlinux 0x2292b897 __sock_create -EXPORT_SYMBOL vmlinux 0x22ac7d73 tso_start -EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22b4f216 kmap -EXPORT_SYMBOL vmlinux 0x22bcad4e input_unregister_device -EXPORT_SYMBOL vmlinux 0x22d07cda dev_load -EXPORT_SYMBOL vmlinux 0x22d5c6f0 pagecache_get_page -EXPORT_SYMBOL vmlinux 0x22dfdd06 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x22e6181f udp_sendmsg -EXPORT_SYMBOL vmlinux 0x22ed9e5d eth_header_parse -EXPORT_SYMBOL vmlinux 0x22fc4f3a trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x230e83ab inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x23134276 sock_update_memcg -EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs -EXPORT_SYMBOL vmlinux 0x231e4b46 twl6040_reg_write -EXPORT_SYMBOL vmlinux 0x2342b302 cont_write_begin -EXPORT_SYMBOL vmlinux 0x235275ab xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x23658e58 sock_no_accept -EXPORT_SYMBOL vmlinux 0x239cdafe get_disk -EXPORT_SYMBOL vmlinux 0x23a50adf put_filp -EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x23aa49d3 _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress -EXPORT_SYMBOL vmlinux 0x23d24dec scsi_device_set_state -EXPORT_SYMBOL vmlinux 0x23dde419 nvm_dev_factory -EXPORT_SYMBOL vmlinux 0x23f324e9 snd_pcm_hw_constraint_list -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x2415eb64 bio_uncopy_user -EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x2429d8c6 devm_gpiod_get_index -EXPORT_SYMBOL vmlinux 0x2435c483 module_layout -EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x2450b563 bitmap_end_sync -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x247a741a inode_get_bytes -EXPORT_SYMBOL vmlinux 0x24817edb neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x24827459 blk_alloc_queue -EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf -EXPORT_SYMBOL vmlinux 0x24938e7b tty_name -EXPORT_SYMBOL vmlinux 0x249a2e24 posix_lock_file -EXPORT_SYMBOL vmlinux 0x24a43ba3 nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL vmlinux 0x24ae0cd0 igrab -EXPORT_SYMBOL vmlinux 0x24b1ff83 blk_alloc_queue_node -EXPORT_SYMBOL vmlinux 0x24c5d880 fifo_set_limit -EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function -EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x25072318 cdrom_media_changed -EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register -EXPORT_SYMBOL vmlinux 0x2527a087 vme_slave_set -EXPORT_SYMBOL vmlinux 0x253da76d of_get_cpu_node -EXPORT_SYMBOL vmlinux 0x254bc7dd snd_unregister_oss_device -EXPORT_SYMBOL vmlinux 0x25505046 __pagevec_lru_add -EXPORT_SYMBOL vmlinux 0x255acb5f tegra_powergate_sequence_power_up -EXPORT_SYMBOL vmlinux 0x25606aa1 tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x25a1e471 scsi_host_alloc -EXPORT_SYMBOL vmlinux 0x25bb9448 input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x25c6cff7 nvm_register_target -EXPORT_SYMBOL vmlinux 0x25d81cbb security_path_mknod -EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25ed97b8 __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0x260c08a3 nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0x262f5885 scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x26465331 blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux -EXPORT_SYMBOL vmlinux 0x26929508 bitmap_unplug -EXPORT_SYMBOL vmlinux 0x26b3ad78 dev_set_group -EXPORT_SYMBOL vmlinux 0x26b43ad5 ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0x26c2128c lockref_mark_dead -EXPORT_SYMBOL vmlinux 0x26c65781 generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x26ca8c29 dquot_release -EXPORT_SYMBOL vmlinux 0x26dfca9c max8998_update_reg -EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min -EXPORT_SYMBOL vmlinux 0x26eca22c sockfd_lookup -EXPORT_SYMBOL vmlinux 0x2724db0f submit_bh -EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x275ef902 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0x2761d421 qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x2773ed0a remap_pfn_range -EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x278a4252 __alloc_skb -EXPORT_SYMBOL vmlinux 0x27b80760 mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27c26b25 ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0x27cb6c09 nand_scan_bbt -EXPORT_SYMBOL vmlinux 0x27d30bc2 input_allocate_device -EXPORT_SYMBOL vmlinux 0x27d70e7e zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0x27dc5f7a iov_iter_npages -EXPORT_SYMBOL vmlinux 0x27e1a049 printk -EXPORT_SYMBOL vmlinux 0x27f5de0d proto_register -EXPORT_SYMBOL vmlinux 0x2800847a blk_sync_queue -EXPORT_SYMBOL vmlinux 0x28118cb6 __get_user_1 -EXPORT_SYMBOL vmlinux 0x2814a085 may_umount_tree -EXPORT_SYMBOL vmlinux 0x28171944 generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x28327587 security_path_unlink -EXPORT_SYMBOL vmlinux 0x285ec89b icmp_send -EXPORT_SYMBOL vmlinux 0x2865d680 padata_do_parallel -EXPORT_SYMBOL vmlinux 0x28690c2c scsi_init_io -EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x28ce18f7 mount_bdev -EXPORT_SYMBOL vmlinux 0x28d6861d __vmalloc -EXPORT_SYMBOL vmlinux 0x28e22ffd vme_slave_request -EXPORT_SYMBOL vmlinux 0x2911f27e lwtunnel_input -EXPORT_SYMBOL vmlinux 0x2913289c remap_vmalloc_range_partial -EXPORT_SYMBOL vmlinux 0x29136e3c nvm_put_blk -EXPORT_SYMBOL vmlinux 0x2933635e __pci_register_driver -EXPORT_SYMBOL vmlinux 0x2952c58e read_cache_pages -EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0x295db1dc __neigh_create -EXPORT_SYMBOL vmlinux 0x2972b4f3 sk_common_release -EXPORT_SYMBOL vmlinux 0x297376c4 devm_release_resource -EXPORT_SYMBOL vmlinux 0x297822fa neigh_seq_start -EXPORT_SYMBOL vmlinux 0x29783d44 input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x297d5a3c cdrom_mode_select -EXPORT_SYMBOL vmlinux 0x2983bf83 snd_card_free -EXPORT_SYMBOL vmlinux 0x298920e8 __sb_end_write -EXPORT_SYMBOL vmlinux 0x29985cd0 inet_listen -EXPORT_SYMBOL vmlinux 0x299fb99a of_parse_phandle -EXPORT_SYMBOL vmlinux 0x29b4dd00 flow_cache_init -EXPORT_SYMBOL vmlinux 0x29e1b020 ida_simple_remove -EXPORT_SYMBOL vmlinux 0x29faa53a netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x29fdda53 kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0x2a01df00 pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0x2a09afbd sync_inode_metadata -EXPORT_SYMBOL vmlinux 0x2a0cf153 inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a3aa678 _test_and_clear_bit -EXPORT_SYMBOL vmlinux 0x2a4a28b4 kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x2a4df3ab security_path_truncate -EXPORT_SYMBOL vmlinux 0x2a4ec071 inet_offloads -EXPORT_SYMBOL vmlinux 0x2a6b982e sock_no_shutdown -EXPORT_SYMBOL vmlinux 0x2a6bdfbb sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0x2a7cac99 pci_add_resource -EXPORT_SYMBOL vmlinux 0x2a8fab22 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x2a9acce3 scsi_dma_map -EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp -EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy -EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat -EXPORT_SYMBOL vmlinux 0x2adeb01b dmam_free_noncoherent -EXPORT_SYMBOL vmlinux 0x2ae36456 iov_iter_fault_in_readable -EXPORT_SYMBOL vmlinux 0x2ae9e875 tcf_hash_create -EXPORT_SYMBOL vmlinux 0x2aee3ceb blkdev_put -EXPORT_SYMBOL vmlinux 0x2b02e57d sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0x2b0462c6 devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0x2b0684e6 __pagevec_release -EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x2b1111f6 pci_iomap_range -EXPORT_SYMBOL vmlinux 0x2b11fdca sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0x2b1246ee get_user_pages_locked -EXPORT_SYMBOL vmlinux 0x2b12925d cpumask_next_and -EXPORT_SYMBOL vmlinux 0x2b1ddd71 km_report -EXPORT_SYMBOL vmlinux 0x2b2b437f snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 -EXPORT_SYMBOL vmlinux 0x2b2eb1df blk_queue_resize_tags -EXPORT_SYMBOL vmlinux 0x2b380200 ilookup5 -EXPORT_SYMBOL vmlinux 0x2b4e956e mempool_create -EXPORT_SYMBOL vmlinux 0x2b640858 give_up_console -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2ba1409a fb_prepare_logo -EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency -EXPORT_SYMBOL vmlinux 0x2bd9d7c4 handle_edge_irq -EXPORT_SYMBOL vmlinux 0x2be0f12d dql_completed -EXPORT_SYMBOL vmlinux 0x2bfe1f13 pci_pme_capable -EXPORT_SYMBOL vmlinux 0x2bfe55ce dma_common_get_sgtable -EXPORT_SYMBOL vmlinux 0x2c0121c1 mb_cache_shrink -EXPORT_SYMBOL vmlinux 0x2c0c57f7 sync_inodes_sb -EXPORT_SYMBOL vmlinux 0x2c0edf17 revalidate_disk -EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c747183 __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0x2c7c8e9a pcibios_min_mem -EXPORT_SYMBOL vmlinux 0x2c81ec75 __irq_regs -EXPORT_SYMBOL vmlinux 0x2c8e29bb generic_pipe_buf_confirm -EXPORT_SYMBOL vmlinux 0x2c988955 prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x2ca59c81 netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x2cad5296 pcim_iomap -EXPORT_SYMBOL vmlinux 0x2cd1e424 nf_nat_decode_session_hook -EXPORT_SYMBOL vmlinux 0x2ce5c411 tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0x2cfd6b83 tcf_exts_validate -EXPORT_SYMBOL vmlinux 0x2d009091 seq_printf -EXPORT_SYMBOL vmlinux 0x2d00d76c map_destroy -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d5835be serio_unregister_driver -EXPORT_SYMBOL vmlinux 0x2d6507b5 _find_next_zero_bit_le -EXPORT_SYMBOL vmlinux 0x2d715fcb omapdss_unregister_display -EXPORT_SYMBOL vmlinux 0x2d770676 dispc_mgr_go -EXPORT_SYMBOL vmlinux 0x2d7b8cd0 mark_info_dirty -EXPORT_SYMBOL vmlinux 0x2d842fd3 pcim_iounmap -EXPORT_SYMBOL vmlinux 0x2da85270 pci_set_power_state -EXPORT_SYMBOL vmlinux 0x2db0b380 set_security_override -EXPORT_SYMBOL vmlinux 0x2dcb56b1 bd_set_size -EXPORT_SYMBOL vmlinux 0x2dcd73cc skb_trim -EXPORT_SYMBOL vmlinux 0x2dcda3be udp_disconnect -EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink -EXPORT_SYMBOL vmlinux 0x2df1b5d6 dquot_initialize -EXPORT_SYMBOL vmlinux 0x2df2fd21 of_find_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x2e035597 __neigh_event_send -EXPORT_SYMBOL vmlinux 0x2e08b2aa stop_tty -EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put -EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies -EXPORT_SYMBOL vmlinux 0x2e35dc12 __genl_register_family -EXPORT_SYMBOL vmlinux 0x2e39fe25 __wait_on_buffer -EXPORT_SYMBOL vmlinux 0x2e3ac8eb jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0x2e5810c6 __aeabi_unwind_cpp_pr1 -EXPORT_SYMBOL vmlinux 0x2e84ae8c of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0x2e8efd0c __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0x2e9d2b81 phy_start_aneg -EXPORT_SYMBOL vmlinux 0x2eb7d146 __kernel_write -EXPORT_SYMBOL vmlinux 0x2ebaa78e wireless_spy_update -EXPORT_SYMBOL vmlinux 0x2ebe1fe7 read_dev_sector -EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x2ecd441b fence_free -EXPORT_SYMBOL vmlinux 0x2ed7a699 devm_memremap -EXPORT_SYMBOL vmlinux 0x2ef5d0a3 __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0x2efbebbc tso_count_descs -EXPORT_SYMBOL vmlinux 0x2efc9fe5 revert_creds -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f08d3c5 input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0x2f0d68ed uart_match_port -EXPORT_SYMBOL vmlinux 0x2f1cb013 serio_unregister_port -EXPORT_SYMBOL vmlinux 0x2f251366 pci_map_rom -EXPORT_SYMBOL vmlinux 0x2f28d0db sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag -EXPORT_SYMBOL vmlinux 0x2f4e822f param_array_ops -EXPORT_SYMBOL vmlinux 0x2f570202 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x2f5f2a57 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0x2f64f18d unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x2f728344 md_flush_request -EXPORT_SYMBOL vmlinux 0x2f755255 sg_miter_start -EXPORT_SYMBOL vmlinux 0x2f7cb73d genl_notify -EXPORT_SYMBOL vmlinux 0x2f9541a5 rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0x2f97749b kobject_put -EXPORT_SYMBOL vmlinux 0x2fa0b909 of_find_backlight_by_node -EXPORT_SYMBOL vmlinux 0x2fad211d inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2feefb02 omapdss_default_get_recommended_bpp -EXPORT_SYMBOL vmlinux 0x2fefeefa of_phy_is_fixed_link -EXPORT_SYMBOL vmlinux 0x3012fcf7 __lock_buffer -EXPORT_SYMBOL vmlinux 0x301d632d fsnotify_get_group -EXPORT_SYMBOL vmlinux 0x302382e4 swiotlb_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0x303c04f5 scsi_print_sense -EXPORT_SYMBOL vmlinux 0x3048790b mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0x304b249b inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x305b3669 elv_register_queue -EXPORT_SYMBOL vmlinux 0x3069ca27 register_mtd_chip_driver -EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable -EXPORT_SYMBOL vmlinux 0x3082a0b3 dss_feat_get_supported_color_modes -EXPORT_SYMBOL vmlinux 0x3086acf5 default_llseek -EXPORT_SYMBOL vmlinux 0x308aad56 omap_vrfb_min_phys_size -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x30a74c2d __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30b059ea jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x3102f1f4 clk_get -EXPORT_SYMBOL vmlinux 0x310917fe sort -EXPORT_SYMBOL vmlinux 0x311d77e1 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x312475cf param_set_short -EXPORT_SYMBOL vmlinux 0x312e7ff2 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x3132ee65 __nand_calculate_ecc -EXPORT_SYMBOL vmlinux 0x31380354 getrawmonotonic64 -EXPORT_SYMBOL vmlinux 0x313856e2 devm_gpiod_get_index_optional -EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present -EXPORT_SYMBOL vmlinux 0x3147857d default_red -EXPORT_SYMBOL vmlinux 0x31717c6a vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear -EXPORT_SYMBOL vmlinux 0x317530b6 dev_uc_unsync -EXPORT_SYMBOL vmlinux 0x31866d0e simple_write_end -EXPORT_SYMBOL vmlinux 0x3190440b tcp_prequeue -EXPORT_SYMBOL vmlinux 0x3191f109 __krealloc -EXPORT_SYMBOL vmlinux 0x319f6221 __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available -EXPORT_SYMBOL vmlinux 0x31afef9c arp_create -EXPORT_SYMBOL vmlinux 0x31b31f5c csum_partial_copy_nocheck -EXPORT_SYMBOL vmlinux 0x31e0bcf0 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x31f0bb78 __kmap_atomic_idx -EXPORT_SYMBOL vmlinux 0x31f61579 ioctl_by_bdev -EXPORT_SYMBOL vmlinux 0x3200092b snd_pcm_hw_rule_add -EXPORT_SYMBOL vmlinux 0x3205ae61 lwtunnel_build_state -EXPORT_SYMBOL vmlinux 0x32203538 xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x3220cd91 xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0x3224a895 devm_get_gpiod_from_child -EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src -EXPORT_SYMBOL vmlinux 0x327fd926 param_ops_ullong -EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy -EXPORT_SYMBOL vmlinux 0x32907b91 idr_remove -EXPORT_SYMBOL vmlinux 0x32b1bbcf sock_sendmsg -EXPORT_SYMBOL vmlinux 0x3304e049 __pci_enable_wake -EXPORT_SYMBOL vmlinux 0x3316845e idr_get_next -EXPORT_SYMBOL vmlinux 0x3327874e filp_open -EXPORT_SYMBOL vmlinux 0x3356918b arm_coherent_dma_ops -EXPORT_SYMBOL vmlinux 0x3369bd84 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0x336a7618 security_mmap_file -EXPORT_SYMBOL vmlinux 0x337349a6 blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x337d9020 cfb_fillrect -EXPORT_SYMBOL vmlinux 0x339b370d __find_get_block -EXPORT_SYMBOL vmlinux 0x33c43767 scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x33e7202f input_free_device -EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x33f97b84 padata_alloc_possible -EXPORT_SYMBOL vmlinux 0x341dbfa3 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x34452058 iov_iter_init -EXPORT_SYMBOL vmlinux 0x344b7739 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x344c7c70 ping_prot -EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin -EXPORT_SYMBOL vmlinux 0x347013de nla_validate -EXPORT_SYMBOL vmlinux 0x34740989 param_set_bool -EXPORT_SYMBOL vmlinux 0x3493ef04 input_reset_device -EXPORT_SYMBOL vmlinux 0x34956d82 phy_connect -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34bab2f6 inet_sendpage -EXPORT_SYMBOL vmlinux 0x34bed31d tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0x34c8097d dmam_free_coherent -EXPORT_SYMBOL vmlinux 0x34df9e9e __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x34f8d20e nvm_erase_blk -EXPORT_SYMBOL vmlinux 0x3507a132 _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x3519d020 key_type_keyring -EXPORT_SYMBOL vmlinux 0x353de98f cmdline_parts_parse -EXPORT_SYMBOL vmlinux 0x353e3fa5 __get_user_4 -EXPORT_SYMBOL vmlinux 0x353e7c47 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x353fc8d5 rtmsg_ifinfo -EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x35664598 pci_enable_device_io -EXPORT_SYMBOL vmlinux 0x35824a0c reservation_object_add_excl_fence -EXPORT_SYMBOL vmlinux 0x358c8fcd __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x3590151a put_disk -EXPORT_SYMBOL vmlinux 0x35909ebf mmc_interrupt_hpi -EXPORT_SYMBOL vmlinux 0x3590bf89 dss_mgr_set_timings -EXPORT_SYMBOL vmlinux 0x35961e43 swiotlb_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x35a10aab unregister_md_personality -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35c48745 pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0x35cba09b snd_ctl_find_id -EXPORT_SYMBOL vmlinux 0x35fbd6a1 __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x3612c10f tmio_core_mmc_enable -EXPORT_SYMBOL vmlinux 0x36218a0f check_disk_change -EXPORT_SYMBOL vmlinux 0x363074df security_d_instantiate -EXPORT_SYMBOL vmlinux 0x364bb6dc iov_iter_copy_from_user_atomic -EXPORT_SYMBOL vmlinux 0x3653a79f pci_fixup_device -EXPORT_SYMBOL vmlinux 0x3673a1fc disk_stack_limits -EXPORT_SYMBOL vmlinux 0x367ba856 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x3684bae4 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x368aa375 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0x36ae626a __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x36b1a94c dss_mgr_enable -EXPORT_SYMBOL vmlinux 0x36bb7fc0 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc -EXPORT_SYMBOL vmlinux 0x36caa8e5 follow_down -EXPORT_SYMBOL vmlinux 0x36f19c75 skb_seq_read -EXPORT_SYMBOL vmlinux 0x36f41625 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0x36fdda67 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x372f8bb4 inet6_register_protosw -EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x374f4636 devfreq_add_device -EXPORT_SYMBOL vmlinux 0x3753b704 param_set_ulong -EXPORT_SYMBOL vmlinux 0x3766d3b4 param_ops_invbool -EXPORT_SYMBOL vmlinux 0x3767038d dmam_release_declared_memory -EXPORT_SYMBOL vmlinux 0x3770d139 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0x378095e3 pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0x37895944 free_buffer_head -EXPORT_SYMBOL vmlinux 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL vmlinux 0x379dee5f trace_print_symbols_seq_u64 -EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37c145a9 seq_vprintf -EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 -EXPORT_SYMBOL vmlinux 0x37e758ff tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x37ea0e54 netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x37f6eb7e pci_bus_get -EXPORT_SYMBOL vmlinux 0x380486ef register_sound_special_device -EXPORT_SYMBOL vmlinux 0x381127af devm_gpiod_get_optional -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x381be4d1 pci_get_class -EXPORT_SYMBOL vmlinux 0x3876538e of_count_phandle_with_args -EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x389acf0c gpmc_configure -EXPORT_SYMBOL vmlinux 0x389ecf9e __bswapdi2 -EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list -EXPORT_SYMBOL vmlinux 0x38a903a7 snd_ctl_notify -EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38ce0f93 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x38fbac52 touch_buffer -EXPORT_SYMBOL vmlinux 0x39167b81 ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0x3924dd56 try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x392fec3b invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x3942ef81 blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0x39434c8e xfrm_init_replay -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x39594a68 task_tgid_nr_ns -EXPORT_SYMBOL vmlinux 0x3964cf1f skb_append_datato_frags -EXPORT_SYMBOL vmlinux 0x39697802 inode_reclaim_rsv_space -EXPORT_SYMBOL vmlinux 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL vmlinux 0x39730d06 atomic_io_modify -EXPORT_SYMBOL vmlinux 0x3976f287 kill_anon_super -EXPORT_SYMBOL vmlinux 0x3978b232 reservation_object_add_shared_fence -EXPORT_SYMBOL vmlinux 0x3981e698 pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0x39897b09 dump_truncate -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x39b0f385 sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x39b4ffdb __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL vmlinux 0x39c1eb76 ptp_clock_register -EXPORT_SYMBOL vmlinux 0x39cd5b81 omapdss_output_set_device -EXPORT_SYMBOL vmlinux 0x39e83dbe inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x39f2b263 htc_egpio_get_wakeup_irq -EXPORT_SYMBOL vmlinux 0x3a09a53c input_event -EXPORT_SYMBOL vmlinux 0x3a1924f0 vfs_readf -EXPORT_SYMBOL vmlinux 0x3a1ac054 set_normalized_timespec64 -EXPORT_SYMBOL vmlinux 0x3a3f7c34 tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x3a43de9a __ip_select_ident -EXPORT_SYMBOL vmlinux 0x3a632e56 d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region -EXPORT_SYMBOL vmlinux 0x3abb26b0 ioremap_wc -EXPORT_SYMBOL vmlinux 0x3abef4b3 max8998_bulk_write -EXPORT_SYMBOL vmlinux 0x3acdd5ca seq_puts -EXPORT_SYMBOL vmlinux 0x3ae3b7f1 param_get_bool -EXPORT_SYMBOL vmlinux 0x3afd70ec fsnotify_put_mark -EXPORT_SYMBOL vmlinux 0x3affa906 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0x3b098236 ppp_input_error -EXPORT_SYMBOL vmlinux 0x3b1b3c41 xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x3b1fe3cc __get_user_pages -EXPORT_SYMBOL vmlinux 0x3b24c4db sock_wmalloc -EXPORT_SYMBOL vmlinux 0x3b439b0d ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0x3b522542 fb_find_mode -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b6f3166 pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x3b91f3af snd_free_pages -EXPORT_SYMBOL vmlinux 0x3bac4764 tcf_hash_cleanup -EXPORT_SYMBOL vmlinux 0x3bbd9556 phy_init_hw -EXPORT_SYMBOL vmlinux 0x3bbf46ea vga_base -EXPORT_SYMBOL vmlinux 0x3bcd8bd6 eth_header_cache_update -EXPORT_SYMBOL vmlinux 0x3bdc83c3 bio_split -EXPORT_SYMBOL vmlinux 0x3be3c0c9 input_flush_device -EXPORT_SYMBOL vmlinux 0x3bee55e0 generic_pipe_buf_steal -EXPORT_SYMBOL vmlinux 0x3c162428 vme_irq_free -EXPORT_SYMBOL vmlinux 0x3c23eeea fb_set_var -EXPORT_SYMBOL vmlinux 0x3c352a43 qdisc_watchdog_schedule_ns -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c4c5cab page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x3c5573ab devm_iounmap -EXPORT_SYMBOL vmlinux 0x3c71cf1b bio_integrity_free -EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull -EXPORT_SYMBOL vmlinux 0x3c86b986 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x3ca47bb2 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0x3cc02c3a devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0x3cd2e1e8 vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0x3cdd86d0 phy_stop_interrupts -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3cedbcb0 proc_set_user -EXPORT_SYMBOL vmlinux 0x3cedea51 of_find_property -EXPORT_SYMBOL vmlinux 0x3cfa969a proc_douintvec -EXPORT_SYMBOL vmlinux 0x3cfb127d mmc_erase -EXPORT_SYMBOL vmlinux 0x3cfd7e8a amba_release_regions -EXPORT_SYMBOL vmlinux 0x3d06cf8a ps2_drain -EXPORT_SYMBOL vmlinux 0x3d08dbe0 dev_printk_emit -EXPORT_SYMBOL vmlinux 0x3d0b77d8 mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0x3d138e13 get_task_exe_file -EXPORT_SYMBOL vmlinux 0x3d247ea2 omapdss_unregister_output -EXPORT_SYMBOL vmlinux 0x3d30409d iommu_tbl_range_free -EXPORT_SYMBOL vmlinux 0x3d3a7bdf tcp_proc_register -EXPORT_SYMBOL vmlinux 0x3d3c540f elf_hwcap -EXPORT_SYMBOL vmlinux 0x3d61f092 ip6_expire_frag_queue -EXPORT_SYMBOL vmlinux 0x3d71fc3e padata_do_serial -EXPORT_SYMBOL vmlinux 0x3d814218 dev_mc_sync -EXPORT_SYMBOL vmlinux 0x3d826650 zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x3d9d120e inc_nlink -EXPORT_SYMBOL vmlinux 0x3da0f2c1 dev_emerg -EXPORT_SYMBOL vmlinux 0x3dac9f55 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x3dc8256e nand_scan -EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3dd7bcae send_sig -EXPORT_SYMBOL vmlinux 0x3ddaae95 phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0x3dde48cb unregister_netdev -EXPORT_SYMBOL vmlinux 0x3debc57c scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x3df23708 inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e019586 seq_hex_dump -EXPORT_SYMBOL vmlinux 0x3e028c10 pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0x3e13a3b9 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0x3e17b8eb pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0x3e261eac pci_enable_device -EXPORT_SYMBOL vmlinux 0x3e2ea22d phy_stop -EXPORT_SYMBOL vmlinux 0x3e351334 padata_register_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x3e4a9521 clk_add_alias -EXPORT_SYMBOL vmlinux 0x3e571fbb dss_mgr_register_framedone_handler -EXPORT_SYMBOL vmlinux 0x3e5a755f max8925_bulk_read -EXPORT_SYMBOL vmlinux 0x3e742194 generic_start_io_acct -EXPORT_SYMBOL vmlinux 0x3e884f4b vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x3e894415 get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0x3e8ada02 mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0x3ea28439 ab3100_event_unregister -EXPORT_SYMBOL vmlinux 0x3eb1d159 update_region -EXPORT_SYMBOL vmlinux 0x3eb51f0b md_cluster_mod -EXPORT_SYMBOL vmlinux 0x3ec5fea4 crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0x3edaa3c4 cdev_add -EXPORT_SYMBOL vmlinux 0x3ef050b9 free_netdev -EXPORT_SYMBOL vmlinux 0x3ef3b58a __put_cred -EXPORT_SYMBOL vmlinux 0x3ef60823 tty_port_close_start -EXPORT_SYMBOL vmlinux 0x3f0398eb would_dump -EXPORT_SYMBOL vmlinux 0x3f07cffc bio_clone_bioset -EXPORT_SYMBOL vmlinux 0x3f0997bd mmc_start_req -EXPORT_SYMBOL vmlinux 0x3f12162c __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0x3f1b6aba nvm_put_blk_unlocked -EXPORT_SYMBOL vmlinux 0x3f220d88 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x3f43a534 dst_destroy -EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f5b67d5 wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0x3f616ce2 queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0x3f628897 km_query -EXPORT_SYMBOL vmlinux 0x3f6c619b elv_rq_merge_ok -EXPORT_SYMBOL vmlinux 0x3f6f56b4 override_creds -EXPORT_SYMBOL vmlinux 0x3f7dbc5c textsearch_register -EXPORT_SYMBOL vmlinux 0x3f8a6f15 snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL vmlinux 0x3fab3ca9 register_sysctl_table -EXPORT_SYMBOL vmlinux 0x3fb6136a devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0x3fbefe88 nvm_unregister_target -EXPORT_SYMBOL vmlinux 0x3fc601aa amba_driver_unregister -EXPORT_SYMBOL vmlinux 0x3fcd0399 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x3fe915c3 cad_pid -EXPORT_SYMBOL vmlinux 0x3fe938a6 unregister_key_type -EXPORT_SYMBOL vmlinux 0x3ff0416e register_qdisc -EXPORT_SYMBOL vmlinux 0x40138a2b simple_unlink -EXPORT_SYMBOL vmlinux 0x402b8281 __request_module -EXPORT_SYMBOL vmlinux 0x402ea1d8 of_find_node_by_phandle -EXPORT_SYMBOL vmlinux 0x40331c30 bdi_destroy -EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev -EXPORT_SYMBOL vmlinux 0x40444d4d nf_register_net_hook -EXPORT_SYMBOL vmlinux 0x40568d7a ip_ct_attach -EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump -EXPORT_SYMBOL vmlinux 0x405add29 __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds -EXPORT_SYMBOL vmlinux 0x40670b7e inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0x407136b1 __put_user_8 -EXPORT_SYMBOL vmlinux 0x407a3275 omap_start_dma -EXPORT_SYMBOL vmlinux 0x407a8a2c mmc_can_erase -EXPORT_SYMBOL vmlinux 0x4080315f gen_pool_add_virt -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x40a2d1dd dm_table_get_size -EXPORT_SYMBOL vmlinux 0x40a2d864 rwsem_downgrade_wake -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40ad3abc neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x40b8551f skb_pad -EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0x40c3f909 __nla_put -EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40c82599 kill_litter_super -EXPORT_SYMBOL vmlinux 0x40cb6a75 set_disk_ro -EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40d7a289 dst_release -EXPORT_SYMBOL vmlinux 0x40e6e247 snd_pcm_lib_ioctl -EXPORT_SYMBOL vmlinux 0x40e6ed8c da903x_query_status -EXPORT_SYMBOL vmlinux 0x40ed524a _raw_read_lock_irq -EXPORT_SYMBOL vmlinux 0x40f07981 __ashldi3 -EXPORT_SYMBOL vmlinux 0x40fec183 inet_ioctl -EXPORT_SYMBOL vmlinux 0x4108bc11 cpu_tlb -EXPORT_SYMBOL vmlinux 0x41096aca cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x4109d229 vfs_getxattr_alloc -EXPORT_SYMBOL vmlinux 0x4132a001 skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x4143c5f6 dentry_unhash -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x414ef953 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x41a17885 do_splice_to -EXPORT_SYMBOL vmlinux 0x41acd42e param_ops_ushort -EXPORT_SYMBOL vmlinux 0x41d9a2e9 dquot_quota_off -EXPORT_SYMBOL vmlinux 0x41dc8b16 nf_afinfo -EXPORT_SYMBOL vmlinux 0x41fabed0 cdev_init -EXPORT_SYMBOL vmlinux 0x42052a61 page_waitqueue -EXPORT_SYMBOL vmlinux 0x4215330e xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x423d81ed ida_pre_get -EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x4255a1ba scsi_host_set_state -EXPORT_SYMBOL vmlinux 0x42717674 dev_addr_flush -EXPORT_SYMBOL vmlinux 0x428c5b86 __register_nls -EXPORT_SYMBOL vmlinux 0x4298b775 v7_flush_kern_cache_all -EXPORT_SYMBOL vmlinux 0x429be6d3 remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x42a32143 kmem_cache_create -EXPORT_SYMBOL vmlinux 0x42ad2e84 mmc_gpio_request_cd -EXPORT_SYMBOL vmlinux 0x42c0d3b8 param_get_byte -EXPORT_SYMBOL vmlinux 0x42cb3be2 vga_put -EXPORT_SYMBOL vmlinux 0x42e323cd locks_copy_lock -EXPORT_SYMBOL vmlinux 0x42ea8a2e dquot_file_open -EXPORT_SYMBOL vmlinux 0x42f65cc8 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x43269900 pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x43528a47 PDE_DATA -EXPORT_SYMBOL vmlinux 0x435c636c netdev_info -EXPORT_SYMBOL vmlinux 0x43638472 xfrm_register_type -EXPORT_SYMBOL vmlinux 0x43662421 ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x439f3b02 tcf_exts_change -EXPORT_SYMBOL vmlinux 0x43a2d17d scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x43b1e841 nvm_submit_ppa -EXPORT_SYMBOL vmlinux 0x43b266eb ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x43c4cf5c netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x43cb9b6e frontswap_register_ops -EXPORT_SYMBOL vmlinux 0x43d8490f pipe_lock -EXPORT_SYMBOL vmlinux 0x43dfb774 of_find_node_with_property -EXPORT_SYMBOL vmlinux 0x43e29b5a pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x43f93ab3 scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed -EXPORT_SYMBOL vmlinux 0x44198c95 mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0x441ed159 omap_get_dma_src_pos -EXPORT_SYMBOL vmlinux 0x442495c9 tmio_core_mmc_resume -EXPORT_SYMBOL vmlinux 0x4426da53 get_empty_filp -EXPORT_SYMBOL vmlinux 0x4428679b passthru_features_check -EXPORT_SYMBOL vmlinux 0x44300981 pci_get_slot -EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0x44438b96 hex2bin -EXPORT_SYMBOL vmlinux 0x4443c172 dentry_needs_remove_privs -EXPORT_SYMBOL vmlinux 0x44470d45 param_get_uint -EXPORT_SYMBOL vmlinux 0x44545a2f filemap_write_and_wait -EXPORT_SYMBOL vmlinux 0x4457b528 set_page_dirty -EXPORT_SYMBOL vmlinux 0x44643b93 __aeabi_lmul -EXPORT_SYMBOL vmlinux 0x4464588b bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x44886881 lwtunnel_encap_add_ops -EXPORT_SYMBOL vmlinux 0x44911ad5 param_ops_string -EXPORT_SYMBOL vmlinux 0x4495ae5b poll_schedule_timeout -EXPORT_SYMBOL vmlinux 0x449cc565 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x44a9f08d posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x44da5d0f __csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0x44dd3d8d completion_done -EXPORT_SYMBOL vmlinux 0x44e592f4 inet_put_port -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x45077cb4 free_task -EXPORT_SYMBOL vmlinux 0x450f2705 twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0x4516b99f key_link -EXPORT_SYMBOL vmlinux 0x452e4989 scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x453376dc genlmsg_put -EXPORT_SYMBOL vmlinux 0x45389414 irq_to_desc -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x456b62b7 insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x457d1613 kthread_create_on_node -EXPORT_SYMBOL vmlinux 0x458d7334 ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x458de8da d_find_any_alias -EXPORT_SYMBOL vmlinux 0x45bda0d5 system_serial_low -EXPORT_SYMBOL vmlinux 0x45f9f999 pci_disable_msi -EXPORT_SYMBOL vmlinux 0x460249d8 inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy -EXPORT_SYMBOL vmlinux 0x4640e952 shdma_reset -EXPORT_SYMBOL vmlinux 0x4651635b devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x465757c3 cpu_present_mask -EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set -EXPORT_SYMBOL vmlinux 0x46662a4b snd_pcm_mmap_data -EXPORT_SYMBOL vmlinux 0x4671b03c simple_link -EXPORT_SYMBOL vmlinux 0x46730857 ata_std_end_eh -EXPORT_SYMBOL vmlinux 0x469a0610 __dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x46a6555f eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0x46ab31b7 kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0x46ab44eb sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x46ae5d16 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0x46d3b28c __div0 -EXPORT_SYMBOL vmlinux 0x46e57457 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x46ebe6e1 snd_pcm_set_ops -EXPORT_SYMBOL vmlinux 0x46fcc525 simple_transaction_get -EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg -EXPORT_SYMBOL vmlinux 0x470a3303 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x472a7ecf flush_old_exec -EXPORT_SYMBOL vmlinux 0x472c2df3 xfrm6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x4749e781 swiotlb_alloc_coherent -EXPORT_SYMBOL vmlinux 0x474e95e4 cros_ec_query_all -EXPORT_SYMBOL vmlinux 0x475b591f fb_blank -EXPORT_SYMBOL vmlinux 0x47783fa3 kernel_param_unlock -EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x47a5eeaf snd_pcm_hw_param_last -EXPORT_SYMBOL vmlinux 0x47acf829 gen_pool_alloc -EXPORT_SYMBOL vmlinux 0x47cfd62c snd_pcm_notify -EXPORT_SYMBOL vmlinux 0x47e70229 v7_flush_user_cache_range -EXPORT_SYMBOL vmlinux 0x47f44afe ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0x47f757de elf_platform -EXPORT_SYMBOL vmlinux 0x4802b2d9 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x48153aa5 param_set_invbool -EXPORT_SYMBOL vmlinux 0x481ce6ce cpu_active_mask -EXPORT_SYMBOL vmlinux 0x4831196e dma_async_device_register -EXPORT_SYMBOL vmlinux 0x48354997 generic_write_checks -EXPORT_SYMBOL vmlinux 0x4838b4af md_integrity_register -EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days -EXPORT_SYMBOL vmlinux 0x485a267d inet_sendmsg -EXPORT_SYMBOL vmlinux 0x485b8194 redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0x485c8f4d tcp_child_process -EXPORT_SYMBOL vmlinux 0x485d0210 blk_queue_invalidate_tags -EXPORT_SYMBOL vmlinux 0x4873c8bd bio_reset -EXPORT_SYMBOL vmlinux 0x4882e20b dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0x488bc737 netif_napi_add -EXPORT_SYMBOL vmlinux 0x48a5b067 __machine_arch_type -EXPORT_SYMBOL vmlinux 0x48b5f5f8 dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48c02c31 copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x48e7a3ab blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0x48f42aa0 vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x48f5ea83 jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x490fa664 pm860x_set_bits -EXPORT_SYMBOL vmlinux 0x4924fd1b dma_mark_declared_memory_occupied -EXPORT_SYMBOL vmlinux 0x493ea922 tc_classify -EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init -EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data -EXPORT_SYMBOL vmlinux 0x4967c56e input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0x499161ef tcp_poll -EXPORT_SYMBOL vmlinux 0x499cb58c prepare_to_wait -EXPORT_SYMBOL vmlinux 0x49aa7a27 blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x49ad5f46 devm_gpio_free -EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x49b3c950 write_one_page -EXPORT_SYMBOL vmlinux 0x49d6b424 dev_uc_init -EXPORT_SYMBOL vmlinux 0x49ebacbd _clear_bit -EXPORT_SYMBOL vmlinux 0x49ed7a5d seq_open_private -EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many -EXPORT_SYMBOL vmlinux 0x4a2a05b2 blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0x4a2d91d0 devm_clk_get -EXPORT_SYMBOL vmlinux 0x4a39e5a1 omap_set_dma_src_params -EXPORT_SYMBOL vmlinux 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL vmlinux 0x4a4f3eb8 tegra_ahb_enable_smmu -EXPORT_SYMBOL vmlinux 0x4a57b339 wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x4a5aa5dc skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0x4a87133c tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0x4a9a0c20 snd_unregister_device -EXPORT_SYMBOL vmlinux 0x4aa6ed17 tty_unlock -EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk -EXPORT_SYMBOL vmlinux 0x4ade45f8 blk_delay_queue -EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize -EXPORT_SYMBOL vmlinux 0x4b060f8f genphy_config_init -EXPORT_SYMBOL vmlinux 0x4b1b7a3a generic_key_instantiate -EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0x4b361640 __block_write_begin -EXPORT_SYMBOL vmlinux 0x4b5a0119 qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b78933c qcom_scm_set_cold_boot_addr -EXPORT_SYMBOL vmlinux 0x4b8fbe3b netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0x4ba30d7b xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get -EXPORT_SYMBOL vmlinux 0x4bafd021 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x4bb0778e vm_stat -EXPORT_SYMBOL vmlinux 0x4bc6075b input_register_handle -EXPORT_SYMBOL vmlinux 0x4bce0f36 gen_pool_create -EXPORT_SYMBOL vmlinux 0x4bcf03a4 radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x4bde5993 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0x4be0e493 d_set_d_op -EXPORT_SYMBOL vmlinux 0x4be7fb63 up -EXPORT_SYMBOL vmlinux 0x4be85a03 memweight -EXPORT_SYMBOL vmlinux 0x4c233a44 _raw_read_unlock_bh -EXPORT_SYMBOL vmlinux 0x4c29dcbf cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr -EXPORT_SYMBOL vmlinux 0x4c33081d omapdss_compat_uninit -EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf -EXPORT_SYMBOL vmlinux 0x4c4f9d08 blk_rq_init -EXPORT_SYMBOL vmlinux 0x4c5fc58c _raw_read_lock_bh -EXPORT_SYMBOL vmlinux 0x4c6b01af pcie_set_mps -EXPORT_SYMBOL vmlinux 0x4c71de1f nand_bch_init -EXPORT_SYMBOL vmlinux 0x4c72659a iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0x4c75c47c scsi_host_lookup -EXPORT_SYMBOL vmlinux 0x4c86184b remove_wait_queue -EXPORT_SYMBOL vmlinux 0x4c90c92e input_get_keycode -EXPORT_SYMBOL vmlinux 0x4ca6d783 bdi_setup_and_register -EXPORT_SYMBOL vmlinux 0x4ca75d7d pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0x4cae8608 dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x4cb33f62 acl_by_type -EXPORT_SYMBOL vmlinux 0x4cc2854d tegra114_clock_assert_dfll_dvco_reset -EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval -EXPORT_SYMBOL vmlinux 0x4ce9977f module_refcount -EXPORT_SYMBOL vmlinux 0x4d013370 vm_insert_mixed -EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page -EXPORT_SYMBOL vmlinux 0x4d175c6e mutex_trylock -EXPORT_SYMBOL vmlinux 0x4d2e6d31 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x4d3ac3b6 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask -EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated -EXPORT_SYMBOL vmlinux 0x4d4a664d kern_path_mountpoint -EXPORT_SYMBOL vmlinux 0x4d68072b lease_get_mtime -EXPORT_SYMBOL vmlinux 0x4d83b295 sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x4d8f1dc1 filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4d9b6d35 snd_pcm_format_size -EXPORT_SYMBOL vmlinux 0x4d9f3bda dev_get_by_name -EXPORT_SYMBOL vmlinux 0x4da0a617 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0x4db4abc7 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x4dcc5e0b crypto_sha512_update -EXPORT_SYMBOL vmlinux 0x4dd572c4 flush_signals -EXPORT_SYMBOL vmlinux 0x4dd5adec tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x4de2c60c uart_resume_port -EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x4de5a124 elevator_change -EXPORT_SYMBOL vmlinux 0x4dec6038 memscan -EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse -EXPORT_SYMBOL vmlinux 0x4df715c5 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0x4dfe07f1 inet_del_offload -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e423967 skb_unlink -EXPORT_SYMBOL vmlinux 0x4e4bbba2 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0x4e506013 omap_dma_link_lch -EXPORT_SYMBOL vmlinux 0x4e5723a5 __register_binfmt -EXPORT_SYMBOL vmlinux 0x4e646169 generic_write_end -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6a8b9b dentry_update_name_case -EXPORT_SYMBOL vmlinux 0x4e6b7170 scsi_remove_target -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e7f7c31 nobh_write_begin -EXPORT_SYMBOL vmlinux 0x4e8108a9 __ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x4e8319a8 shdma_request_irq -EXPORT_SYMBOL vmlinux 0x4e911e98 bdev_read_only -EXPORT_SYMBOL vmlinux 0x4ea134ed blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0x4ea61498 devfreq_resume_device -EXPORT_SYMBOL vmlinux 0x4ea868a2 i2c_verify_client -EXPORT_SYMBOL vmlinux 0x4edff6db bio_unmap_user -EXPORT_SYMBOL vmlinux 0x4ee08a2a netdev_master_upper_dev_link_private -EXPORT_SYMBOL vmlinux 0x4f0f3e06 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse -EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command -EXPORT_SYMBOL vmlinux 0x4f57821c console_start -EXPORT_SYMBOL vmlinux 0x4f5813be __skb_checksum -EXPORT_SYMBOL vmlinux 0x4f6041ef dns_query -EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday -EXPORT_SYMBOL vmlinux 0x4f7d300e __module_put_and_exit -EXPORT_SYMBOL vmlinux 0x4f7ee019 input_grab_device -EXPORT_SYMBOL vmlinux 0x4f816e9b snd_pcm_format_big_endian -EXPORT_SYMBOL vmlinux 0x4f837de0 ipv6_push_nfrag_opts -EXPORT_SYMBOL vmlinux 0x4f89c9de gpmc_cs_free -EXPORT_SYMBOL vmlinux 0x4f9b264c neigh_app_ns -EXPORT_SYMBOL vmlinux 0x4fac9364 fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x4fdf3c5e netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x4fe00d79 module_put -EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security -EXPORT_SYMBOL vmlinux 0x50108f73 set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0x50373e87 tcf_em_unregister -EXPORT_SYMBOL vmlinux 0x503bd137 snd_interval_ranges -EXPORT_SYMBOL vmlinux 0x504435bf km_state_expired -EXPORT_SYMBOL vmlinux 0x5047c7e7 i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x504c8792 devm_gpiod_get -EXPORT_SYMBOL vmlinux 0x505f4f68 vme_irq_handler -EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x5070c43b of_node_put -EXPORT_SYMBOL vmlinux 0x5079d1d4 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0x508d1162 soft_cursor -EXPORT_SYMBOL vmlinux 0x509817cf vprintk_emit -EXPORT_SYMBOL vmlinux 0x509e8cf8 netlink_kernel_release -EXPORT_SYMBOL vmlinux 0x50a23fd9 tty_port_close -EXPORT_SYMBOL vmlinux 0x50a6298d nf_getsockopt -EXPORT_SYMBOL vmlinux 0x50b3359a nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x50b66bcb radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x50c6071b netif_rx -EXPORT_SYMBOL vmlinux 0x50cbb8d4 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x50cddcd0 tso_build_data -EXPORT_SYMBOL vmlinux 0x50d5612e dispc_mgr_get_sync_lost_irq -EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x50e1d9db pci_save_state -EXPORT_SYMBOL vmlinux 0x50e88b35 snd_jack_set_key -EXPORT_SYMBOL vmlinux 0x5105f020 find_get_pages_tag -EXPORT_SYMBOL vmlinux 0x51125c8b audit_log_task_info -EXPORT_SYMBOL vmlinux 0x511746c1 dump_fpu -EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0x514cc273 arm_copy_from_user -EXPORT_SYMBOL vmlinux 0x5188a872 mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0x518c7ae2 fsync_bdev -EXPORT_SYMBOL vmlinux 0x518e0186 amba_device_register -EXPORT_SYMBOL vmlinux 0x518fca96 unregister_quota_format -EXPORT_SYMBOL vmlinux 0x51d559d1 _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x51e02066 read_cache_page -EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid -EXPORT_SYMBOL vmlinux 0x51e9de1c inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup -EXPORT_SYMBOL vmlinux 0x51fd3bce edma_filter_fn -EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str -EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0x521f964e xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0x5253fe11 tcp_read_sock -EXPORT_SYMBOL vmlinux 0x525c008e iterate_supers_type -EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x528d0c14 idr_init -EXPORT_SYMBOL vmlinux 0x52a68d1f mmc_power_save_host -EXPORT_SYMBOL vmlinux 0x52af562a __crc32c_le -EXPORT_SYMBOL vmlinux 0x52bb841c atomic_io_modify_relaxed -EXPORT_SYMBOL vmlinux 0x52bdcca9 netdev_features_change -EXPORT_SYMBOL vmlinux 0x52bdf17e param_ops_charp -EXPORT_SYMBOL vmlinux 0x52ccfdc0 tty_hung_up_p -EXPORT_SYMBOL vmlinux 0x52d8ed2d qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL vmlinux 0x52f2f95a tty_port_close_end -EXPORT_SYMBOL vmlinux 0x52fed8b2 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x53157bc9 udp_del_offload -EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x534acd28 xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x53523f83 snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL vmlinux 0x535b7168 xfrm_register_km -EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0x5375c6c1 omap_dss_get_device -EXPORT_SYMBOL vmlinux 0x538f7a7a tegra_dfll_register -EXPORT_SYMBOL vmlinux 0x53beccea blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0x53d93782 __devcgroup_inode_permission -EXPORT_SYMBOL vmlinux 0x53e33635 lookup_one_len -EXPORT_SYMBOL vmlinux 0x53f5e664 blk_init_tags -EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x54232660 __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x547077ec __wake_up_bit -EXPORT_SYMBOL vmlinux 0x547ce898 dispc_read_irqenable -EXPORT_SYMBOL vmlinux 0x54a612b6 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul -EXPORT_SYMBOL vmlinux 0x54b33491 of_io_request_and_map -EXPORT_SYMBOL vmlinux 0x54bde74e create_empty_buffers -EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window -EXPORT_SYMBOL vmlinux 0x54dc8eac of_graph_get_remote_port_parent -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54f6830a omapdss_get_default_display_name -EXPORT_SYMBOL vmlinux 0x54fadc6a i2c_master_send -EXPORT_SYMBOL vmlinux 0x5511dd8b softnet_data -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x5521e96f jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x5535e999 bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0x5538bc64 fsnotify_destroy_mark -EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu -EXPORT_SYMBOL vmlinux 0x5553469d input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0x555ee82e xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0x5560c8fb snd_pcm_open_substream -EXPORT_SYMBOL vmlinux 0x55650976 amba_find_device -EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat -EXPORT_SYMBOL vmlinux 0x559320dc inet_getname -EXPORT_SYMBOL vmlinux 0x55933c10 inet_frag_destroy -EXPORT_SYMBOL vmlinux 0x559c4476 __init_rwsem -EXPORT_SYMBOL vmlinux 0x55a8b8b8 twl6040_power -EXPORT_SYMBOL vmlinux 0x55b1a499 generic_read_dir -EXPORT_SYMBOL vmlinux 0x55b1d2e4 nf_log_set -EXPORT_SYMBOL vmlinux 0x55b87ce5 __ethtool_get_settings -EXPORT_SYMBOL vmlinux 0x55b959db dev_get_by_index -EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x55d97507 skb_copy -EXPORT_SYMBOL vmlinux 0x55fcb6a8 shdma_chan_filter -EXPORT_SYMBOL vmlinux 0x55fe1dbb follow_down_one -EXPORT_SYMBOL vmlinux 0x560f2df0 proc_create_mount_point -EXPORT_SYMBOL vmlinux 0x562c4b36 skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0x564b1de3 downgrade_write -EXPORT_SYMBOL vmlinux 0x564f6721 blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x5662e31d __mutex_init -EXPORT_SYMBOL vmlinux 0x56680480 snd_pcm_lib_malloc_pages -EXPORT_SYMBOL vmlinux 0x567c2264 udp_proc_unregister -EXPORT_SYMBOL vmlinux 0x567fcb50 posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0x5689afe7 dispc_ovl_enable -EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames -EXPORT_SYMBOL vmlinux 0x5690a273 scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0x56adda6f sk_reset_timer -EXPORT_SYMBOL vmlinux 0x56b25f7a netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x56bc2f15 dispc_ovl_set_channel_out -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56dfd560 napi_get_frags -EXPORT_SYMBOL vmlinux 0x56e7c2cd param_set_bint -EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt -EXPORT_SYMBOL vmlinux 0x57364015 xfrm_unregister_mode -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x5752050a snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL vmlinux 0x57557853 __inet_stream_connect -EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x578b6542 snd_card_new -EXPORT_SYMBOL vmlinux 0x579a2c6a of_phy_attach -EXPORT_SYMBOL vmlinux 0x57a6f02a flow_cache_lookup -EXPORT_SYMBOL vmlinux 0x57aba1fa loop_register_transfer -EXPORT_SYMBOL vmlinux 0x57c51a6b blk_stack_limits -EXPORT_SYMBOL vmlinux 0x57d6a74b __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x58013636 skb_vlan_push -EXPORT_SYMBOL vmlinux 0x5813553f sock_no_setsockopt -EXPORT_SYMBOL vmlinux 0x581846a5 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x58353dad udp_set_csum -EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x58512968 dquot_quota_sync -EXPORT_SYMBOL vmlinux 0x58516557 omap_set_dma_src_data_pack -EXPORT_SYMBOL vmlinux 0x585fb581 arp_tbl -EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat -EXPORT_SYMBOL vmlinux 0x587e157d simple_release_fs -EXPORT_SYMBOL vmlinux 0x58992d6d inet_frag_maybe_warn_overflow -EXPORT_SYMBOL vmlinux 0x58ad6221 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0x58b59a11 __blk_end_request_cur -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58d633c7 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58e6a5b7 uart_unregister_driver -EXPORT_SYMBOL vmlinux 0x59212c4f remove_arg_zero -EXPORT_SYMBOL vmlinux 0x592f6d99 eth_header -EXPORT_SYMBOL vmlinux 0x593aa615 alloc_fcdev -EXPORT_SYMBOL vmlinux 0x5945b444 param_set_int -EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map -EXPORT_SYMBOL vmlinux 0x594e1317 __modsi3 -EXPORT_SYMBOL vmlinux 0x595d6fc8 of_find_i2c_device_by_node -EXPORT_SYMBOL vmlinux 0x596acc85 filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x596adf73 udp6_set_csum -EXPORT_SYMBOL vmlinux 0x597421a0 __blk_end_request_all -EXPORT_SYMBOL vmlinux 0x598542b2 _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0x598cd828 udp_table -EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x59a17bfc tegra114_clock_tune_cpu_trimmers_high -EXPORT_SYMBOL vmlinux 0x59a73e5e serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release -EXPORT_SYMBOL vmlinux 0x59aee2b1 kern_path -EXPORT_SYMBOL vmlinux 0x59bcb55a dev_uc_del -EXPORT_SYMBOL vmlinux 0x59c304fd dev_uc_add -EXPORT_SYMBOL vmlinux 0x59d29dab v7_flush_kern_dcache_area -EXPORT_SYMBOL vmlinux 0x59d8223a ioport_resource -EXPORT_SYMBOL vmlinux 0x59debfa0 sget_userns -EXPORT_SYMBOL vmlinux 0x59e5070d __do_div64 -EXPORT_SYMBOL vmlinux 0x59fe7d1a blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a221dcc vfs_rmdir -EXPORT_SYMBOL vmlinux 0x5a51bb81 get_user_pages -EXPORT_SYMBOL vmlinux 0x5a5ecb3e snd_timer_global_new -EXPORT_SYMBOL vmlinux 0x5a70e5f7 dquot_destroy -EXPORT_SYMBOL vmlinux 0x5a751f49 unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x5a770002 phy_print_status -EXPORT_SYMBOL vmlinux 0x5a8a06b6 nvm_dev_dma_alloc -EXPORT_SYMBOL vmlinux 0x5aad6fb3 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0x5abe179e nf_register_hooks -EXPORT_SYMBOL vmlinux 0x5ad4d560 find_lock_entry -EXPORT_SYMBOL vmlinux 0x5ae5be44 lg_lock_init -EXPORT_SYMBOL vmlinux 0x5ae7bb5f sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x5ae9acfd single_release -EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get -EXPORT_SYMBOL vmlinux 0x5b04be5a disable_fiq -EXPORT_SYMBOL vmlinux 0x5b05734f __lock_page -EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem -EXPORT_SYMBOL vmlinux 0x5b233103 register_cdrom -EXPORT_SYMBOL vmlinux 0x5b2a5039 vme_bus_type -EXPORT_SYMBOL vmlinux 0x5b4c5e85 snd_pcm_lib_readv -EXPORT_SYMBOL vmlinux 0x5b4d9274 mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0x5b66a429 done_path_create -EXPORT_SYMBOL vmlinux 0x5bb9daec __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0x5be8112a peernet2id_alloc -EXPORT_SYMBOL vmlinux 0x5bf76296 of_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x5bf84cac pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0x5c20a7af audit_log_start -EXPORT_SYMBOL vmlinux 0x5c265cba sg_init_one -EXPORT_SYMBOL vmlinux 0x5c3704dd ip_route_me_harder -EXPORT_SYMBOL vmlinux 0x5c45de05 unlock_new_inode -EXPORT_SYMBOL vmlinux 0x5c49e234 keyring_search -EXPORT_SYMBOL vmlinux 0x5c4d75b7 pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0x5c5ed08c single_open_size -EXPORT_SYMBOL vmlinux 0x5c759eee submit_bio -EXPORT_SYMBOL vmlinux 0x5c793eb9 snd_card_disconnect -EXPORT_SYMBOL vmlinux 0x5c8b4936 ipv4_specific -EXPORT_SYMBOL vmlinux 0x5c8fb043 phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0x5c9284a0 processor_id -EXPORT_SYMBOL vmlinux 0x5c98676a devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x5ca17649 __scm_destroy -EXPORT_SYMBOL vmlinux 0x5ca4d16d dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0x5caf5485 jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x5cbd5ef6 bio_map_kern -EXPORT_SYMBOL vmlinux 0x5cbf9519 param_get_invbool -EXPORT_SYMBOL vmlinux 0x5cc0f2e2 mount_pseudo -EXPORT_SYMBOL vmlinux 0x5cc7f2e6 __dev_get_by_name -EXPORT_SYMBOL vmlinux 0x5ccc44fd skb_queue_tail -EXPORT_SYMBOL vmlinux 0x5cdcf53a t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5d1662f8 abx500_register_ops -EXPORT_SYMBOL vmlinux 0x5d18cc46 pci_clear_master -EXPORT_SYMBOL vmlinux 0x5d284bea ___pskb_trim -EXPORT_SYMBOL vmlinux 0x5d38172a notify_change -EXPORT_SYMBOL vmlinux 0x5d4e74ee netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain -EXPORT_SYMBOL vmlinux 0x5d5befda get_io_context -EXPORT_SYMBOL vmlinux 0x5d62c191 tcp_parse_options -EXPORT_SYMBOL vmlinux 0x5d72bf79 scsi_host_get -EXPORT_SYMBOL vmlinux 0x5d81ca69 rwsem_down_read_failed -EXPORT_SYMBOL vmlinux 0x5dad8c9f netif_carrier_off -EXPORT_SYMBOL vmlinux 0x5dc9630b vme_bus_num -EXPORT_SYMBOL vmlinux 0x5dcf6341 outer_cache -EXPORT_SYMBOL vmlinux 0x5de61b24 tty_port_put -EXPORT_SYMBOL vmlinux 0x5e070524 ilookup5_nowait -EXPORT_SYMBOL vmlinux 0x5e0f0dc9 fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0x5e1b65c7 ether_setup -EXPORT_SYMBOL vmlinux 0x5e3e186f dev_err -EXPORT_SYMBOL vmlinux 0x5e427b9f netdev_printk -EXPORT_SYMBOL vmlinux 0x5e5763aa blk_integrity_compare -EXPORT_SYMBOL vmlinux 0x5e686816 fget_raw -EXPORT_SYMBOL vmlinux 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes -EXPORT_SYMBOL vmlinux 0x5e871cf4 sock_no_poll -EXPORT_SYMBOL vmlinux 0x5e8fa560 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5ea1d389 __inode_add_bytes -EXPORT_SYMBOL vmlinux 0x5ea4625e blk_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ec50fb1 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5ede44b4 commit_creds -EXPORT_SYMBOL vmlinux 0x5ee3a01a mount_ns -EXPORT_SYMBOL vmlinux 0x5ef0888b pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 -EXPORT_SYMBOL vmlinux 0x5f03d860 blk_mq_delay_queue -EXPORT_SYMBOL vmlinux 0x5f049f83 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f0a295e truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0x5f1d0d41 pci_find_bus -EXPORT_SYMBOL vmlinux 0x5f27323c _raw_write_trylock -EXPORT_SYMBOL vmlinux 0x5f40d48c pci_assign_resource -EXPORT_SYMBOL vmlinux 0x5f589276 vlan_vid_add -EXPORT_SYMBOL vmlinux 0x5f5bdb55 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0x5f5d48e0 blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0x5f754e5a memset -EXPORT_SYMBOL vmlinux 0x5f805824 __cleancache_put_page -EXPORT_SYMBOL vmlinux 0x5fd268cb radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat -EXPORT_SYMBOL vmlinux 0x5feebbab get_fs_type -EXPORT_SYMBOL vmlinux 0x5ff11cc3 pcibios_min_io -EXPORT_SYMBOL vmlinux 0x5ffa47a9 km_state_notify -EXPORT_SYMBOL vmlinux 0x5fff8bef inet6_offloads -EXPORT_SYMBOL vmlinux 0x60055baa dispc_mgr_get_vsync_irq -EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool -EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x600731db udp_ioctl -EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x602c96f0 copy_to_user_fromio -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x60458fa5 blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x60645eaa dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number -EXPORT_SYMBOL vmlinux 0x606fcd9f scsi_rescan_device -EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector -EXPORT_SYMBOL vmlinux 0x609b0e84 mmc_can_sanitize -EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL vmlinux 0x60ab04fd register_framebuffer -EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x60edcd0e __dquot_transfer -EXPORT_SYMBOL vmlinux 0x60f5aad5 cros_ec_cmd_xfer -EXPORT_SYMBOL vmlinux 0x610c409d dispc_ovl_check -EXPORT_SYMBOL vmlinux 0x6122b723 pci_get_subsys -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x61391145 backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x61482568 mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x61516a88 register_sound_dsp -EXPORT_SYMBOL vmlinux 0x615bb3ef unregister_binfmt -EXPORT_SYMBOL vmlinux 0x6164fc26 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0x617880b4 blk_queue_softirq_done -EXPORT_SYMBOL vmlinux 0x617a218d __cond_resched_lock -EXPORT_SYMBOL vmlinux 0x61832fb8 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0x618bcf49 kunmap_high -EXPORT_SYMBOL vmlinux 0x61a1392b snd_pcm_hw_refine -EXPORT_SYMBOL vmlinux 0x61b3560c cmdline_parts_set -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61bf984d vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0x61e4d8e4 i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0x61f09b27 netdev_notice -EXPORT_SYMBOL vmlinux 0x62003614 max8998_bulk_read -EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x6220b4a2 crc32_le -EXPORT_SYMBOL vmlinux 0x6225637e md5_transform -EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x62296be1 qcom_scm_get_version -EXPORT_SYMBOL vmlinux 0x622fbe03 iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x623adbbb may_umount -EXPORT_SYMBOL vmlinux 0x623f213e balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0x62711b1a fb_show_logo -EXPORT_SYMBOL vmlinux 0x6272f5bb mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x6276eec8 generic_perform_write -EXPORT_SYMBOL vmlinux 0x628186bb abx500_mask_and_set_register_interruptible -EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x62a355a3 _dev_info -EXPORT_SYMBOL vmlinux 0x62af81aa jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0x62b12df4 del_random_ready_callback -EXPORT_SYMBOL vmlinux 0x62edec59 fddi_change_mtu -EXPORT_SYMBOL vmlinux 0x6306f0db scsi_print_command -EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled -EXPORT_SYMBOL vmlinux 0x632b35d8 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0x6366c708 submit_bio_wait -EXPORT_SYMBOL vmlinux 0x636b3461 omap_dss_get_num_overlays -EXPORT_SYMBOL vmlinux 0x636d61a9 splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0x63914f83 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63be19f7 serio_interrupt -EXPORT_SYMBOL vmlinux 0x63be4eed twl6040_get_pll -EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63c8c471 lro_flush_all -EXPORT_SYMBOL vmlinux 0x63d7a74d snd_pcm_lib_free_pages -EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user -EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x64350157 lwtunnel_cmp_encap -EXPORT_SYMBOL vmlinux 0x6444c586 locks_free_lock -EXPORT_SYMBOL vmlinux 0x644f6ca1 free_page_put_link -EXPORT_SYMBOL vmlinux 0x6450135e dquot_acquire -EXPORT_SYMBOL vmlinux 0x6457a00f kmalloc_caches -EXPORT_SYMBOL vmlinux 0x6459e9e4 cancel_dirty_page -EXPORT_SYMBOL vmlinux 0x646c2adb iov_iter_advance -EXPORT_SYMBOL vmlinux 0x648168fb padata_set_cpumasks -EXPORT_SYMBOL vmlinux 0x6489c8e0 mdiobus_scan -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x64a22ff0 dispc_mgr_set_lcd_config -EXPORT_SYMBOL vmlinux 0x64a7cea2 send_sig_info -EXPORT_SYMBOL vmlinux 0x64bb2295 sk_alloc -EXPORT_SYMBOL vmlinux 0x64ca3c20 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0x64cefccd sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x64ee0738 napi_consume_skb -EXPORT_SYMBOL vmlinux 0x64ee873e d_splice_alias -EXPORT_SYMBOL vmlinux 0x650b7be5 tcp_prot -EXPORT_SYMBOL vmlinux 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth -EXPORT_SYMBOL vmlinux 0x651a4139 test_taint -EXPORT_SYMBOL vmlinux 0x651b118d __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x65389e27 input_register_device -EXPORT_SYMBOL vmlinux 0x653d53e5 tcp_seq_open -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x65466939 proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x6548778a kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x655db43c __get_page_tail -EXPORT_SYMBOL vmlinux 0x656b3679 jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0x6578db1f of_get_next_child -EXPORT_SYMBOL vmlinux 0x658f0c7a dev_alloc_name -EXPORT_SYMBOL vmlinux 0x659e02ac inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier -EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65e7d511 write_dirty_buffer -EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x66031a22 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x661a5ad1 elv_unregister_queue -EXPORT_SYMBOL vmlinux 0x661f1791 get_gendisk -EXPORT_SYMBOL vmlinux 0x66227eae vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0x66313647 vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0x663804c6 phy_write_mmd_indirect -EXPORT_SYMBOL vmlinux 0x6646dc5a prepare_creds -EXPORT_SYMBOL vmlinux 0x667919ac __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x66b3585f phy_set_max_speed -EXPORT_SYMBOL vmlinux 0x66c99965 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x66d32097 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x670242ab lru_cache_add_file -EXPORT_SYMBOL vmlinux 0x67306b31 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0x67458ec4 __blk_run_queue -EXPORT_SYMBOL vmlinux 0x676bbc0f _set_bit -EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create -EXPORT_SYMBOL vmlinux 0x6788b24c blk_requeue_request -EXPORT_SYMBOL vmlinux 0x6790e0db skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0x67b00139 blkdev_fsync -EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67bf5ee7 scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x67d4cc9a inode_init_once -EXPORT_SYMBOL vmlinux 0x67daa43d devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x67e02294 kobject_set_name -EXPORT_SYMBOL vmlinux 0x67e572cd xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0x67f44a52 fb_validate_mode -EXPORT_SYMBOL vmlinux 0x67fc007a blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x680bebac rfkill_alloc -EXPORT_SYMBOL vmlinux 0x6822d759 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x682c4c83 sk_receive_skb -EXPORT_SYMBOL vmlinux 0x68355427 find_vma -EXPORT_SYMBOL vmlinux 0x683ff047 pci_enable_msi_range -EXPORT_SYMBOL vmlinux 0x68446625 cpufreq_power_cooling_register -EXPORT_SYMBOL vmlinux 0x6844c404 __alloc_pages_nodemask -EXPORT_SYMBOL vmlinux 0x685c3391 kernel_param_lock -EXPORT_SYMBOL vmlinux 0x685ebc3d block_write_end -EXPORT_SYMBOL vmlinux 0x686fcf3b deactivate_locked_super -EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x68869bae panic_notifier_list -EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages -EXPORT_SYMBOL vmlinux 0x68a24153 snd_pcm_format_physical_width -EXPORT_SYMBOL vmlinux 0x68b6bd72 mdiobus_read -EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x68d2ea49 udp_add_offload -EXPORT_SYMBOL vmlinux 0x68f12e31 abx500_startup_irq_enabled -EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s -EXPORT_SYMBOL vmlinux 0x69032ece bitmap_startwrite -EXPORT_SYMBOL vmlinux 0x690b1787 dev_mc_flush -EXPORT_SYMBOL vmlinux 0x6915eb38 down_interruptible -EXPORT_SYMBOL vmlinux 0x691bdfe9 have_submounts -EXPORT_SYMBOL vmlinux 0x693d0d1d gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x695d4adf xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x696ffd60 set_bh_page -EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint -EXPORT_SYMBOL vmlinux 0x69b6f8d9 omap_set_dma_transfer_params -EXPORT_SYMBOL vmlinux 0x69c8c72f param_ops_bint -EXPORT_SYMBOL vmlinux 0x69e01482 dquot_quotactl_ops -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a1c11dc of_find_net_device_by_node -EXPORT_SYMBOL vmlinux 0x6a2281bf blk_put_request -EXPORT_SYMBOL vmlinux 0x6a48da4e scm_detach_fds -EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a74bc37 pci_scan_single_device -EXPORT_SYMBOL vmlinux 0x6a76d30d blk_finish_request -EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable -EXPORT_SYMBOL vmlinux 0x6a92614a ppp_input -EXPORT_SYMBOL vmlinux 0x6a934bcf bio_integrity_enabled -EXPORT_SYMBOL vmlinux 0x6ab581b3 of_n_addr_cells -EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x6acea4d4 prepare_binprm -EXPORT_SYMBOL vmlinux 0x6ad8d707 proc_remove -EXPORT_SYMBOL vmlinux 0x6ae2741d get_phy_device -EXPORT_SYMBOL vmlinux 0x6ae6e205 kernel_listen -EXPORT_SYMBOL vmlinux 0x6aecdabc pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6af1c22f cros_ec_prepare_tx -EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname -EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b3fe5b8 vfs_whiteout -EXPORT_SYMBOL vmlinux 0x6b40deac rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x6b41ac53 blk_queue_stack_limits -EXPORT_SYMBOL vmlinux 0x6b49fbec mfd_remove_devices -EXPORT_SYMBOL vmlinux 0x6b602531 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x6bb1c55b seq_escape -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bc5eb7b lookup_bdev -EXPORT_SYMBOL vmlinux 0x6bccc386 max8925_set_bits -EXPORT_SYMBOL vmlinux 0x6bd40c80 blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x6befbea4 ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer -EXPORT_SYMBOL vmlinux 0x6c0dfc32 devm_ioremap_nocache -EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn -EXPORT_SYMBOL vmlinux 0x6c2158f7 dquot_resume -EXPORT_SYMBOL vmlinux 0x6c24bf96 nf_log_unset -EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat -EXPORT_SYMBOL vmlinux 0x6c5e9f05 devm_gpiod_get_array -EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c6cdd4d wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min -EXPORT_SYMBOL vmlinux 0x6c8e0c0e dma_release_declared_memory -EXPORT_SYMBOL vmlinux 0x6c9bc238 mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0x6caf3031 device_get_mac_address -EXPORT_SYMBOL vmlinux 0x6ccdeae9 dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0x6cd09fb4 sg_miter_next -EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy -EXPORT_SYMBOL vmlinux 0x6ce32092 mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0x6cef43fa unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x6cff697f pci_disable_msix -EXPORT_SYMBOL vmlinux 0x6d0aa456 __napi_schedule -EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x6d1c44dd lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d2c53e0 snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x6d4eb411 nonseekable_open -EXPORT_SYMBOL vmlinux 0x6d4fa716 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0x6d662533 _find_first_bit_le -EXPORT_SYMBOL vmlinux 0x6d785eff starget_for_each_device -EXPORT_SYMBOL vmlinux 0x6d81221d tcp_destroy_cgroup -EXPORT_SYMBOL vmlinux 0x6d87d5db dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x6da62d78 dcache_dir_close -EXPORT_SYMBOL vmlinux 0x6ded10a9 rtnl_unicast -EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6e310f7e xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x6e35547d open_exec -EXPORT_SYMBOL vmlinux 0x6e3b819f sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x6e5383b4 nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x6e61ece7 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x6e6514ed radix_tree_insert -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e88e8a4 filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0x6e8f542f mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6ea533ae security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0x6ec9ccdb _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0x6ecc5c36 napi_gro_receive -EXPORT_SYMBOL vmlinux 0x6ef5a7a3 genl_unregister_family -EXPORT_SYMBOL vmlinux 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL vmlinux 0x6efadd3d twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0x6f048d27 of_mdio_parse_addr -EXPORT_SYMBOL vmlinux 0x6f082d36 bh_submit_read -EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash -EXPORT_SYMBOL vmlinux 0x6f29cdfe inet_frag_kill -EXPORT_SYMBOL vmlinux 0x6f3b7ba3 xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0x6f41a74d inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0x6f6bfcd1 pci_set_dma_seg_boundary -EXPORT_SYMBOL vmlinux 0x6f754189 qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0x6f828087 zero_fill_bio -EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x6fa12fe7 i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag -EXPORT_SYMBOL vmlinux 0x6fc5b6a0 __getblk_slow -EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fd3130d max8925_bulk_write -EXPORT_SYMBOL vmlinux 0x6ff90e91 __break_lease -EXPORT_SYMBOL vmlinux 0x7001bcc4 eth_type_trans -EXPORT_SYMBOL vmlinux 0x70097aa0 nand_bch_free -EXPORT_SYMBOL vmlinux 0x700c66e6 bdi_register_owner -EXPORT_SYMBOL vmlinux 0x7012b6d8 blk_mq_all_tag_busy_iter -EXPORT_SYMBOL vmlinux 0x7019a2e1 tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x70213279 phy_device_create -EXPORT_SYMBOL vmlinux 0x703215d2 pps_lookup_dev -EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq -EXPORT_SYMBOL vmlinux 0x7057bc64 page_readlink -EXPORT_SYMBOL vmlinux 0x7062b4cd cmdline_parts_free -EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync -EXPORT_SYMBOL vmlinux 0x706f5c00 dev_warn -EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x708a5de0 bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0x70b26541 snd_jack_set_parent -EXPORT_SYMBOL vmlinux 0x70b76a94 of_gpio_simple_xlate -EXPORT_SYMBOL vmlinux 0x70b869d9 sock_kfree_s -EXPORT_SYMBOL vmlinux 0x70bbfabf generic_file_read_iter -EXPORT_SYMBOL vmlinux 0x70cd3cd3 blk_end_request_cur -EXPORT_SYMBOL vmlinux 0x70d8fee9 mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x70d905bf __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0x70e39dae dss_uninstall_mgr_ops -EXPORT_SYMBOL vmlinux 0x70f63889 input_close_device -EXPORT_SYMBOL vmlinux 0x70f857d7 tso_build_hdr -EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match -EXPORT_SYMBOL vmlinux 0x7119db7f omap_dss_pal_timings -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x712ed37b radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x71593d62 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0x715d50f9 make_kuid -EXPORT_SYMBOL vmlinux 0x7169102e omap_dss_ntsc_timings -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x71816460 tty_set_operations -EXPORT_SYMBOL vmlinux 0x7185944f alloc_fddidev -EXPORT_SYMBOL vmlinux 0x718f79ed truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0x7191bda1 page_cache_prev_hole -EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev -EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71a9029d snd_pcm_release_substream -EXPORT_SYMBOL vmlinux 0x71c90087 memcmp -EXPORT_SYMBOL vmlinux 0x71d12003 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x71e2be5e i2c_get_adapter -EXPORT_SYMBOL vmlinux 0x71f65175 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x720a09a6 snd_device_register -EXPORT_SYMBOL vmlinux 0x722e8f9b mmc_stop_bkops -EXPORT_SYMBOL vmlinux 0x72350130 ___ratelimit -EXPORT_SYMBOL vmlinux 0x723ba5cc blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0x7256b855 blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0x725d8148 uart_update_timeout -EXPORT_SYMBOL vmlinux 0x726f3256 sock_no_getname -EXPORT_SYMBOL vmlinux 0x72712163 i2c_clients_command -EXPORT_SYMBOL vmlinux 0x7296d8a2 memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0x72a0e6f2 __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x72b9492b textsearch_prepare -EXPORT_SYMBOL vmlinux 0x72d51615 bmap -EXPORT_SYMBOL vmlinux 0x72d58de9 kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0x72d66eaf pcim_pin_device -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config -EXPORT_SYMBOL vmlinux 0x731f251c unregister_cdrom -EXPORT_SYMBOL vmlinux 0x7331f547 pci_set_mwi -EXPORT_SYMBOL vmlinux 0x73325c1e tcp_release_cb -EXPORT_SYMBOL vmlinux 0x73357d58 snd_pcm_limit_hw_rates -EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf -EXPORT_SYMBOL vmlinux 0x733e8357 param_set_uint -EXPORT_SYMBOL vmlinux 0x73513dc3 ptp_clock_unregister -EXPORT_SYMBOL vmlinux 0x73515c8e jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x73938ff9 of_parse_phandle_with_args -EXPORT_SYMBOL vmlinux 0x739a28b8 blk_start_request -EXPORT_SYMBOL vmlinux 0x73b2cbc5 dev_remove_pack -EXPORT_SYMBOL vmlinux 0x73c28ec1 tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy -EXPORT_SYMBOL vmlinux 0x73ecca7a eth_change_mtu -EXPORT_SYMBOL vmlinux 0x73f54941 netif_device_attach -EXPORT_SYMBOL vmlinux 0x73f662e5 nf_unregister_hooks -EXPORT_SYMBOL vmlinux 0x740d53e3 skb_split -EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x7410c9b2 inet_bind -EXPORT_SYMBOL vmlinux 0x742d431b pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0x7433552c ihold -EXPORT_SYMBOL vmlinux 0x7448d2fa bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0x744c18ee __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x746b0170 bio_add_pc_page -EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x74aa3cc2 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74e46dac imx_ssi_fiq_tx_buffer -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74f50f46 netdev_all_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv -EXPORT_SYMBOL vmlinux 0x750af912 tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0x752838d8 icmpv6_send -EXPORT_SYMBOL vmlinux 0x7530fcef tcp_close -EXPORT_SYMBOL vmlinux 0x753c5b7e vfs_mkdir -EXPORT_SYMBOL vmlinux 0x755546a2 take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x7561a5af load_nls_default -EXPORT_SYMBOL vmlinux 0x75638434 migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0x7567d381 __get_fiq_regs -EXPORT_SYMBOL vmlinux 0x75713f48 of_get_named_gpio_flags -EXPORT_SYMBOL vmlinux 0x7593c0a3 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 -EXPORT_SYMBOL vmlinux 0x75accea0 dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc -EXPORT_SYMBOL vmlinux 0x75ff9b18 snd_pcm_hw_constraint_integer -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x76237e8a param_set_copystring -EXPORT_SYMBOL vmlinux 0x76249ac1 netdev_update_features -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x764aea85 get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x76541f00 blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0x765a8dab setattr_copy -EXPORT_SYMBOL vmlinux 0x765aaad2 nla_append -EXPORT_SYMBOL vmlinux 0x7661f0f3 account_page_dirtied -EXPORT_SYMBOL vmlinux 0x766fbba0 lock_fb_info -EXPORT_SYMBOL vmlinux 0x769e8e6e dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0x76c9e04c nf_unregister_hook -EXPORT_SYMBOL vmlinux 0x76cf47f6 __aeabi_llsl -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint -EXPORT_SYMBOL vmlinux 0x76d9bf11 crc32_be -EXPORT_SYMBOL vmlinux 0x76e58481 __brelse -EXPORT_SYMBOL vmlinux 0x76f6c5ef kmalloc_order -EXPORT_SYMBOL vmlinux 0x76f878b6 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x77046e10 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0x77188b75 dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0x771a0060 block_truncate_page -EXPORT_SYMBOL vmlinux 0x77226c9a sk_capable -EXPORT_SYMBOL vmlinux 0x772519be gen_pool_destroy -EXPORT_SYMBOL vmlinux 0x77347a34 pci_get_device -EXPORT_SYMBOL vmlinux 0x7742a685 __skb_gso_segment -EXPORT_SYMBOL vmlinux 0x77474153 mb_cache_entry_alloc -EXPORT_SYMBOL vmlinux 0x774a8f7f netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x77576b86 genphy_suspend -EXPORT_SYMBOL vmlinux 0x775a130e __sg_free_table -EXPORT_SYMBOL vmlinux 0x77629bd8 tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0x777b24d2 phy_register_fixup -EXPORT_SYMBOL vmlinux 0x7780281d kill_fasync -EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div -EXPORT_SYMBOL vmlinux 0x77953308 ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll -EXPORT_SYMBOL vmlinux 0x77a6185c posix_test_lock -EXPORT_SYMBOL vmlinux 0x77acbf84 try_module_get -EXPORT_SYMBOL vmlinux 0x77b1e8cb phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77d75d98 xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x77d7644b tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0x77f847a2 pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0x77fa1a63 __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x780a13ca __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0x780b08be phy_disconnect -EXPORT_SYMBOL vmlinux 0x7810a88b fence_signal_locked -EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t -EXPORT_SYMBOL vmlinux 0x783b977a kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0x783be0ce put_io_context -EXPORT_SYMBOL vmlinux 0x783fffdb ip6_frag_match -EXPORT_SYMBOL vmlinux 0x7842adfa kmem_cache_size -EXPORT_SYMBOL vmlinux 0x7852ef27 of_mm_gpiochip_remove -EXPORT_SYMBOL vmlinux 0x78779c0b set_fiq_handler -EXPORT_SYMBOL vmlinux 0x78799180 skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0x787a64be tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x788fe103 iomem_resource -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x78b06467 skb_clone_sk -EXPORT_SYMBOL vmlinux 0x78b6ac5c of_translate_dma_address -EXPORT_SYMBOL vmlinux 0x78bdb6d6 request_key_async_with_auxdata -EXPORT_SYMBOL vmlinux 0x78da72e0 d_obtain_alias -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78ec2564 register_netdev -EXPORT_SYMBOL vmlinux 0x790ab0ed sk_mc_loop -EXPORT_SYMBOL vmlinux 0x79231280 key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0x79246907 of_find_node_by_name -EXPORT_SYMBOL vmlinux 0x7934d3dc scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x79451438 ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0x795abe55 write_inode_now -EXPORT_SYMBOL vmlinux 0x796a7c2c sk_stream_write_space -EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0x7973811d pagecache_write_begin -EXPORT_SYMBOL vmlinux 0x7998987a __kfree_skb -EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79c5a9f0 ioremap -EXPORT_SYMBOL vmlinux 0x79e78cc3 vfs_readv -EXPORT_SYMBOL vmlinux 0x79fa1deb imx_ssi_fiq_rx_buffer -EXPORT_SYMBOL vmlinux 0x7a0369ca generic_permission -EXPORT_SYMBOL vmlinux 0x7a1f2611 dispc_mgr_set_timings -EXPORT_SYMBOL vmlinux 0x7a2add7d current_kernel_time64 -EXPORT_SYMBOL vmlinux 0x7a31b258 tcp_check_req -EXPORT_SYMBOL vmlinux 0x7a355e6b pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0x7a42a85c mpage_readpages -EXPORT_SYMBOL vmlinux 0x7a4497db kzfree -EXPORT_SYMBOL vmlinux 0x7a466173 load_nls -EXPORT_SYMBOL vmlinux 0x7a4c0984 scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7ac02b55 max8925_reg_read -EXPORT_SYMBOL vmlinux 0x7ac11124 up_read -EXPORT_SYMBOL vmlinux 0x7acbfc84 crypto_sha1_update -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7ad8899e nvm_end_io -EXPORT_SYMBOL vmlinux 0x7ae18756 inet_frags_exit_net -EXPORT_SYMBOL vmlinux 0x7ae61044 xfrm_prepare_input -EXPORT_SYMBOL vmlinux 0x7af85856 devm_gpio_request_one -EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf -EXPORT_SYMBOL vmlinux 0x7afb173c end_buffer_async_write -EXPORT_SYMBOL vmlinux 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL vmlinux 0x7b0fce78 mpage_readpage -EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array -EXPORT_SYMBOL vmlinux 0x7b1ade38 lz4_decompress -EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0x7b436ff6 mfd_cell_enable -EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap -EXPORT_SYMBOL vmlinux 0x7bb10d10 neigh_event_ns -EXPORT_SYMBOL vmlinux 0x7bb99506 param_ops_byte -EXPORT_SYMBOL vmlinux 0x7bca0d90 netdev_state_change -EXPORT_SYMBOL vmlinux 0x7bcc1737 neigh_ifdown -EXPORT_SYMBOL vmlinux 0x7c098be3 skb_put -EXPORT_SYMBOL vmlinux 0x7c1372e8 panic -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c34b632 vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c495fe8 key_unlink -EXPORT_SYMBOL vmlinux 0x7c4c6d0b snd_pcm_new -EXPORT_SYMBOL vmlinux 0x7c4f956e fb_firmware_edid -EXPORT_SYMBOL vmlinux 0x7c54cd9b jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x7c66782d filemap_fault -EXPORT_SYMBOL vmlinux 0x7c74f4cc sock_efree -EXPORT_SYMBOL vmlinux 0x7c7c7560 blk_get_request -EXPORT_SYMBOL vmlinux 0x7c7ee7f9 vm_mmap -EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read -EXPORT_SYMBOL vmlinux 0x7ca170f3 register_md_personality -EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down -EXPORT_SYMBOL vmlinux 0x7cc035a7 __ucmpdi2 -EXPORT_SYMBOL vmlinux 0x7cc7f9c9 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7ce7493c finish_no_open -EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7d076924 snd_jack_add_new_kctl -EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies -EXPORT_SYMBOL vmlinux 0x7d346d8f blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x7d3ab71a mutex_lock -EXPORT_SYMBOL vmlinux 0x7d6c4c9a sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug -EXPORT_SYMBOL vmlinux 0x7da87624 rwsem_down_write_failed -EXPORT_SYMBOL vmlinux 0x7dc6b96a dquot_operations -EXPORT_SYMBOL vmlinux 0x7dccc294 proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0x7de106d5 qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0x7de6bf1b scsi_remove_device -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7df045a2 netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0x7e138b7e filemap_flush -EXPORT_SYMBOL vmlinux 0x7e467891 input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0x7e5922d6 bio_integrity_advance -EXPORT_SYMBOL vmlinux 0x7e6fa3ef tcf_hash_new_index -EXPORT_SYMBOL vmlinux 0x7e94268d copy_from_iter -EXPORT_SYMBOL vmlinux 0x7e9868f6 seq_pad -EXPORT_SYMBOL vmlinux 0x7e9efe8e complete_and_exit -EXPORT_SYMBOL vmlinux 0x7eb0f331 security_dentry_init_security -EXPORT_SYMBOL vmlinux 0x7eb6d603 filp_close -EXPORT_SYMBOL vmlinux 0x7eb73ee9 put_page -EXPORT_SYMBOL vmlinux 0x7ebdb0ec path_get -EXPORT_SYMBOL vmlinux 0x7ec846e6 mem_cgroup_begin_page_stat -EXPORT_SYMBOL vmlinux 0x7ee5d9ce pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x7ee7f093 dispc_ovl_compute_fifo_thresholds -EXPORT_SYMBOL vmlinux 0x7ee86774 __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x7f00e0c2 proc_mkdir -EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f133b4b inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0x7f249160 inode_sub_rsv_space -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f2fdebe snd_ctl_boolean_mono_info -EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done -EXPORT_SYMBOL vmlinux 0x7f63b31e _memcpy_toio -EXPORT_SYMBOL vmlinux 0x7f928e3f component_match_add -EXPORT_SYMBOL vmlinux 0x7f98b561 rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0x7faa3a3b secpath_dup -EXPORT_SYMBOL vmlinux 0x7fb193e2 param_set_charp -EXPORT_SYMBOL vmlinux 0x7fb7af38 i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0x7fd2193e sock_no_socketpair -EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fe9a947 writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x800e4ffa __muldi3 -EXPORT_SYMBOL vmlinux 0x800e5ae4 omapdss_default_get_resolution -EXPORT_SYMBOL vmlinux 0x8032338f empty_zero_page -EXPORT_SYMBOL vmlinux 0x80365cab inet6_release -EXPORT_SYMBOL vmlinux 0x803c2110 lease_modify -EXPORT_SYMBOL vmlinux 0x80462f48 rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0x804aabdf idr_is_empty -EXPORT_SYMBOL vmlinux 0x804dcf87 vfs_iter_write -EXPORT_SYMBOL vmlinux 0x805ae143 kunmap -EXPORT_SYMBOL vmlinux 0x80617d23 fsnotify_add_mark -EXPORT_SYMBOL vmlinux 0x8067a31c dm_get_device -EXPORT_SYMBOL vmlinux 0x80b04469 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0x80b171ef kdb_current_task -EXPORT_SYMBOL vmlinux 0x80b47693 noop_fsync -EXPORT_SYMBOL vmlinux 0x80bbfcd1 scsi_scan_target -EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80d81308 omap_vrfb_release_ctx -EXPORT_SYMBOL vmlinux 0x80f61b1f dm_io -EXPORT_SYMBOL vmlinux 0x80f7e4ad remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0x81022641 pcie_get_minimum_link -EXPORT_SYMBOL vmlinux 0x8116756d pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0x814058bd md_set_array_sectors -EXPORT_SYMBOL vmlinux 0x8143496a __mmc_claim_host -EXPORT_SYMBOL vmlinux 0x8145e051 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x8146465d mmc_of_parse -EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy -EXPORT_SYMBOL vmlinux 0x8151099e fsnotify_put_group -EXPORT_SYMBOL vmlinux 0x815684a7 nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x8160ae94 mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0x81733ecf pci_reenable_device -EXPORT_SYMBOL vmlinux 0x81837288 xfrm_find_acq -EXPORT_SYMBOL vmlinux 0x818a6536 of_get_property -EXPORT_SYMBOL vmlinux 0x819a5a61 blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x819f2c51 tcf_em_register -EXPORT_SYMBOL vmlinux 0x819f4e19 i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0x819f7bf7 tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x81ab4346 mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0x81b69e41 snd_ctl_enum_info -EXPORT_SYMBOL vmlinux 0x81be0469 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x81bf2c89 scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x81c7541e of_platform_bus_probe -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81f4d8de clkdev_drop -EXPORT_SYMBOL vmlinux 0x81fee07d bioset_free -EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill -EXPORT_SYMBOL vmlinux 0x820e2b6f sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x82137448 vm_insert_page -EXPORT_SYMBOL vmlinux 0x822137e2 arm_heavy_mb -EXPORT_SYMBOL vmlinux 0x822c2109 nlmsg_notify -EXPORT_SYMBOL vmlinux 0x824a4367 tmio_core_mmc_pwr -EXPORT_SYMBOL vmlinux 0x82652512 md_register_thread -EXPORT_SYMBOL vmlinux 0x826c3fab arp_xmit -EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun -EXPORT_SYMBOL vmlinux 0x8279f456 bioset_integrity_create -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes -EXPORT_SYMBOL vmlinux 0x82a1a1d9 from_kgid -EXPORT_SYMBOL vmlinux 0x82a99c82 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0x82ac7c93 generic_file_mmap -EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched -EXPORT_SYMBOL vmlinux 0x82b2e6ed jbd2_journal_load -EXPORT_SYMBOL vmlinux 0x82c17f16 ptp_find_pin -EXPORT_SYMBOL vmlinux 0x82d21f89 param_ops_ulong -EXPORT_SYMBOL vmlinux 0x82efef3d abx500_set_register_interruptible -EXPORT_SYMBOL vmlinux 0x83098e52 locks_copy_conflock -EXPORT_SYMBOL vmlinux 0x831396c3 fence_signal -EXPORT_SYMBOL vmlinux 0x831abda8 tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0x8320bea8 __umodsi3 -EXPORT_SYMBOL vmlinux 0x8321128c mtd_concat_destroy -EXPORT_SYMBOL vmlinux 0x8340c651 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x8370ca2a vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0x8372cd2f __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x8375d79d ida_destroy -EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init -EXPORT_SYMBOL vmlinux 0x83b68cee scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0x83b9e57e blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0x83bf7437 con_set_default_unimap -EXPORT_SYMBOL vmlinux 0x83c35991 fb_class -EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83f0505b mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0x83fdcd92 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0x840784ab bdev_stack_limits -EXPORT_SYMBOL vmlinux 0x840e03df of_platform_device_create -EXPORT_SYMBOL vmlinux 0x841444ba scsi_cmd_ioctl -EXPORT_SYMBOL vmlinux 0x84415fa0 of_dev_get -EXPORT_SYMBOL vmlinux 0x844cc3a7 __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0x84772ac9 pci_claim_resource -EXPORT_SYMBOL vmlinux 0x849b3eac devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0x84a089af bdgrab -EXPORT_SYMBOL vmlinux 0x84a69fdc vme_slave_get -EXPORT_SYMBOL vmlinux 0x84b183ae strncmp -EXPORT_SYMBOL vmlinux 0x84b46459 security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0x84b8c99c generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0x84d117ce tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x84d96522 blk_execute_rq -EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload -EXPORT_SYMBOL vmlinux 0x85125b1a write_cache_pages -EXPORT_SYMBOL vmlinux 0x851c06d2 blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0x853a8a9d should_remove_suid -EXPORT_SYMBOL vmlinux 0x854e1c0b sg_nents -EXPORT_SYMBOL vmlinux 0x854fec83 tegra_sku_info -EXPORT_SYMBOL vmlinux 0x856201bf inode_dio_wait -EXPORT_SYMBOL vmlinux 0x856229a8 generic_readlink -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x85765fee omap_enable_dma_irq -EXPORT_SYMBOL vmlinux 0x858da458 locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0x85b3cc38 pci_dev_get -EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85cb96cc security_task_getsecid -EXPORT_SYMBOL vmlinux 0x85cc1b66 set_user_nice -EXPORT_SYMBOL vmlinux 0x85d7058e blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85e10b50 max8925_reg_write -EXPORT_SYMBOL vmlinux 0x85ed73e0 jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85fb4901 tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x8618d6cc dev_get_iflink -EXPORT_SYMBOL vmlinux 0x861b2cc2 pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0x86354b76 scsi_print_result -EXPORT_SYMBOL vmlinux 0x863882ef netlink_capable -EXPORT_SYMBOL vmlinux 0x863f40cd ip6_frag_init -EXPORT_SYMBOL vmlinux 0x86419ede pci_disable_device -EXPORT_SYMBOL vmlinux 0x8648199f path_is_under -EXPORT_SYMBOL vmlinux 0x8649b4b3 mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0x864f2ec8 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x86637168 padata_alloc -EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0x866c72f2 snd_ctl_remove_id -EXPORT_SYMBOL vmlinux 0x867e733a jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0x86860195 dss_feat_get_supported_displays -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x86a4889a kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0x86b7df32 __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0x86c2bc88 vfs_iter_read -EXPORT_SYMBOL vmlinux 0x86c6dc27 pci_iounmap -EXPORT_SYMBOL vmlinux 0x86d96166 snd_timer_new -EXPORT_SYMBOL vmlinux 0x86e77a32 sock_rfree -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x87003790 fence_init -EXPORT_SYMBOL vmlinux 0x87151f8a nand_correct_data -EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags -EXPORT_SYMBOL vmlinux 0x872f2860 pcibios_fixup_bus -EXPORT_SYMBOL vmlinux 0x87390c76 phy_suspend -EXPORT_SYMBOL vmlinux 0x874a7270 iov_iter_kvec -EXPORT_SYMBOL vmlinux 0x8751112e sock_recvmsg -EXPORT_SYMBOL vmlinux 0x8759195d iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0x875b7734 delete_from_page_cache -EXPORT_SYMBOL vmlinux 0x876b0771 scsi_register_driver -EXPORT_SYMBOL vmlinux 0x877c91ed skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale -EXPORT_SYMBOL vmlinux 0x87961c69 touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x87980a5e pci_choose_state -EXPORT_SYMBOL vmlinux 0x87abb2a5 tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0x87ca1a71 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0x87cdf3ab snd_jack_report -EXPORT_SYMBOL vmlinux 0x87d824dc unmap_underlying_metadata -EXPORT_SYMBOL vmlinux 0x87e2b4cd __bforget -EXPORT_SYMBOL vmlinux 0x87ef31b0 tegra_dfll_runtime_suspend -EXPORT_SYMBOL vmlinux 0x87fc511d lwtunnel_encap_del_ops -EXPORT_SYMBOL vmlinux 0x883dde40 tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x88420e3f elevator_alloc -EXPORT_SYMBOL vmlinux 0x88651017 abx500_get_register_interruptible -EXPORT_SYMBOL vmlinux 0x886bc76f mempool_resize -EXPORT_SYMBOL vmlinux 0x887c34ef touch_atime -EXPORT_SYMBOL vmlinux 0x887ee60f tcp_connect -EXPORT_SYMBOL vmlinux 0x88879639 mutex_unlock -EXPORT_SYMBOL vmlinux 0x888ffcbc simple_pin_fs -EXPORT_SYMBOL vmlinux 0x88a3d5ce swiotlb_unmap_sg -EXPORT_SYMBOL vmlinux 0x88a4ab3b devm_free_irq -EXPORT_SYMBOL vmlinux 0x88b19f45 system_serial -EXPORT_SYMBOL vmlinux 0x88b6f48b dentry_path_raw -EXPORT_SYMBOL vmlinux 0x88d3760f __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0x88d4f64b netdev_warn -EXPORT_SYMBOL vmlinux 0x88e3331e release_firmware -EXPORT_SYMBOL vmlinux 0x88fadb6f xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x890def52 __netif_schedule -EXPORT_SYMBOL vmlinux 0x893986b7 iunique -EXPORT_SYMBOL vmlinux 0x893f7d86 dev_get_nest_level -EXPORT_SYMBOL vmlinux 0x895d8864 dev_remove_offload -EXPORT_SYMBOL vmlinux 0x89705ea0 udp_lib_get_port -EXPORT_SYMBOL vmlinux 0x89929f4f netdev_crit -EXPORT_SYMBOL vmlinux 0x89b5ae33 blk_fetch_request -EXPORT_SYMBOL vmlinux 0x89c0f1f7 nf_hook_slow -EXPORT_SYMBOL vmlinux 0x89c45d00 of_graph_get_endpoint_by_regs -EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x89d5d199 seq_open -EXPORT_SYMBOL vmlinux 0x89da9347 mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0x89dd943d kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0x89f1ffef pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0x89fb5e19 seq_dentry -EXPORT_SYMBOL vmlinux 0x8a09bd02 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0x8a0b843a udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0x8a0dd61c seq_file_path -EXPORT_SYMBOL vmlinux 0x8a0f4230 rename_lock -EXPORT_SYMBOL vmlinux 0x8a1535ae scsi_verify_blk_ioctl -EXPORT_SYMBOL vmlinux 0x8a1711f0 devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies -EXPORT_SYMBOL vmlinux 0x8a208f2d __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a4fa83b __aeabi_llsr -EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a896da6 amba_request_regions -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8abebec3 __check_sticky -EXPORT_SYMBOL vmlinux 0x8ad1f8ff snd_dma_free_pages -EXPORT_SYMBOL vmlinux 0x8ad503f6 simple_transaction_release -EXPORT_SYMBOL vmlinux 0x8af2c157 vfs_setpos -EXPORT_SYMBOL vmlinux 0x8afae9fa __frontswap_test -EXPORT_SYMBOL vmlinux 0x8b0a0c18 inode_permission -EXPORT_SYMBOL vmlinux 0x8b163909 __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0x8b2ed345 __sk_dst_check -EXPORT_SYMBOL vmlinux 0x8b4132eb pskb_expand_head -EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x8b4cb494 of_device_is_available -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b7d69a6 md_unregister_thread -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b836d96 snd_pcm_lib_write -EXPORT_SYMBOL vmlinux 0x8ba5f12c tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x8bbfa68a end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0x8bc05e33 mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0x8bcd5f47 fasync_helper -EXPORT_SYMBOL vmlinux 0x8bd763d3 fixed_phy_update_state -EXPORT_SYMBOL vmlinux 0x8be271a0 phy_ethtool_sset -EXPORT_SYMBOL vmlinux 0x8c225b55 inet_select_addr -EXPORT_SYMBOL vmlinux 0x8c3cd901 sock_no_listen -EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x8c7ec288 xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0x8c945237 down_read -EXPORT_SYMBOL vmlinux 0x8cbae91d neigh_table_init -EXPORT_SYMBOL vmlinux 0x8cc0c74d skb_orphan_partial -EXPORT_SYMBOL vmlinux 0x8ccd6478 snd_power_wait -EXPORT_SYMBOL vmlinux 0x8cd8c339 omap_free_dma -EXPORT_SYMBOL vmlinux 0x8ce388a0 blk_queue_end_tag -EXPORT_SYMBOL vmlinux 0x8ceb0778 __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x8cfcf75c nand_flash_ids -EXPORT_SYMBOL vmlinux 0x8d134c39 idr_replace -EXPORT_SYMBOL vmlinux 0x8d29d07b path_nosuid -EXPORT_SYMBOL vmlinux 0x8d335387 inet_frags_init -EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d60a316 inet6_getname -EXPORT_SYMBOL vmlinux 0x8d6b2ce1 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x8d6c1eff mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0x8d6f81b4 __div64_32 -EXPORT_SYMBOL vmlinux 0x8d6fe1f3 ac97_bus_type -EXPORT_SYMBOL vmlinux 0x8d72495b __getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d8b6353 proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0x8da358c9 dev_crit -EXPORT_SYMBOL vmlinux 0x8da3ac9c dump_page -EXPORT_SYMBOL vmlinux 0x8dafa19c pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0x8db1cd28 __skb_tx_hash -EXPORT_SYMBOL vmlinux 0x8dcff6e2 __pv_offset -EXPORT_SYMBOL vmlinux 0x8dd53474 seq_write -EXPORT_SYMBOL vmlinux 0x8dd913fd pcie_port_service_register -EXPORT_SYMBOL vmlinux 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL vmlinux 0x8e0a951e xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x8e1e0bf6 __elv_add_request -EXPORT_SYMBOL vmlinux 0x8e28a539 do_SAK -EXPORT_SYMBOL vmlinux 0x8e38f015 blk_integrity_merge_bio -EXPORT_SYMBOL vmlinux 0x8e52fb63 lock_rename -EXPORT_SYMBOL vmlinux 0x8e53682b security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0x8e714d53 netif_rx_ni -EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x8e7eadfc jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0x8e865d3c arm_delay_ops -EXPORT_SYMBOL vmlinux 0x8ebc1742 devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL vmlinux 0x8ecc6533 pci_dev_put -EXPORT_SYMBOL vmlinux 0x8f13fd0a of_device_register -EXPORT_SYMBOL vmlinux 0x8f1b9e4e fbcon_rotate_ccw -EXPORT_SYMBOL vmlinux 0x8f4eb2de xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0x8f4ef3cb pci_unregister_driver -EXPORT_SYMBOL vmlinux 0x8f52c4f2 elv_rb_former_request -EXPORT_SYMBOL vmlinux 0x8f595b11 snd_major -EXPORT_SYMBOL vmlinux 0x8f678b07 __stack_chk_guard -EXPORT_SYMBOL vmlinux 0x8f72dab7 snd_ctl_remove -EXPORT_SYMBOL vmlinux 0x8f7975a9 mmc_register_driver -EXPORT_SYMBOL vmlinux 0x8f7b01c9 tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0x8f8753eb vme_new_dma_list -EXPORT_SYMBOL vmlinux 0x8f8b0714 __scm_send -EXPORT_SYMBOL vmlinux 0x8fa4130a omap_set_dma_callback -EXPORT_SYMBOL vmlinux 0x8faa01ba eth_header_cache -EXPORT_SYMBOL vmlinux 0x8fb4f22d of_dev_put -EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin -EXPORT_SYMBOL vmlinux 0x8ff0d3f4 pneigh_lookup -EXPORT_SYMBOL vmlinux 0x8ff9a6dc address_space_init_once -EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 -EXPORT_SYMBOL vmlinux 0x8ffe187c inet_stream_ops -EXPORT_SYMBOL vmlinux 0x9016abdf blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0x9022ab06 pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x906af0d1 generic_make_request -EXPORT_SYMBOL vmlinux 0x9079af8c blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0x909a2ba4 pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x90a2505e iov_iter_zero -EXPORT_SYMBOL vmlinux 0x90a424ec inode_add_rsv_space -EXPORT_SYMBOL vmlinux 0x90b6aa21 dev_addr_init -EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0x9103ce7b sock_no_bind -EXPORT_SYMBOL vmlinux 0x9104458c __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x9117576d mmc_power_restore_host -EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 -EXPORT_SYMBOL vmlinux 0x9153be91 neigh_changeaddr -EXPORT_SYMBOL vmlinux 0x91621d6a allocate_resource -EXPORT_SYMBOL vmlinux 0x91715312 sprintf -EXPORT_SYMBOL vmlinux 0x918229cb tty_register_device -EXPORT_SYMBOL vmlinux 0x91824e03 jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0x919029aa __readwrite_bug -EXPORT_SYMBOL vmlinux 0x919bd690 ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0x91b096ab elm_config -EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz -EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 -EXPORT_SYMBOL vmlinux 0x91f98ebf input_set_keycode -EXPORT_SYMBOL vmlinux 0x920f8c34 simple_readpage -EXPORT_SYMBOL vmlinux 0x921b7225 udp_prot -EXPORT_SYMBOL vmlinux 0x92201219 skb_dequeue -EXPORT_SYMBOL vmlinux 0x9238cc72 param_get_short -EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x9242a40d ll_rw_block -EXPORT_SYMBOL vmlinux 0x924bd8ad d_add_ci -EXPORT_SYMBOL vmlinux 0x927c6700 param_ops_long -EXPORT_SYMBOL vmlinux 0x92808ab8 snd_ctl_register_ioctl -EXPORT_SYMBOL vmlinux 0x9281967b uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0x9286c7c1 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm -EXPORT_SYMBOL vmlinux 0x92ba7485 pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0x92c1d82b alloc_buffer_head -EXPORT_SYMBOL vmlinux 0x92ce46b3 __napi_complete -EXPORT_SYMBOL vmlinux 0x92ec5d1b dispc_mgr_enable -EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x92fc0d8f cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x930b300b dentry_open -EXPORT_SYMBOL vmlinux 0x9316e308 tegra_dfll_unregister -EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0x9330cb9f sg_alloc_table -EXPORT_SYMBOL vmlinux 0x9347fca9 dev_get_stats -EXPORT_SYMBOL vmlinux 0x934c9f16 sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0x937184dd netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x937c3951 forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x9393f14b dmam_alloc_coherent -EXPORT_SYMBOL vmlinux 0x9395a05f get_mm_exe_file -EXPORT_SYMBOL vmlinux 0x93963a85 dss_feat_get_num_mgrs -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93dd54c2 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0x93e2a9f1 capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0x93ebfa68 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages -EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int -EXPORT_SYMBOL vmlinux 0x940855f6 neigh_direct_output -EXPORT_SYMBOL vmlinux 0x94098ff8 snd_interval_list -EXPORT_SYMBOL vmlinux 0x940c4b1b dev_printk -EXPORT_SYMBOL vmlinux 0x940f9cf6 kblockd_schedule_delayed_work -EXPORT_SYMBOL vmlinux 0x941394c9 key_payload_reserve -EXPORT_SYMBOL vmlinux 0x941f7fa9 pci_bus_type -EXPORT_SYMBOL vmlinux 0x9433ab59 blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0x943d2c71 ps2_sendbyte -EXPORT_SYMBOL vmlinux 0x943edd3a ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x94418a8e tty_schedule_flip -EXPORT_SYMBOL vmlinux 0x946efbfa __wait_on_bit -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x949f1a78 netpoll_print_options -EXPORT_SYMBOL vmlinux 0x94a4f5da ip_options_compile -EXPORT_SYMBOL vmlinux 0x94b2590f vme_free_consistent -EXPORT_SYMBOL vmlinux 0x94c944df dcache_readdir -EXPORT_SYMBOL vmlinux 0x94d35086 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x94d3da68 rtc_lock -EXPORT_SYMBOL vmlinux 0x94e8883f f_setown -EXPORT_SYMBOL vmlinux 0x94e8bf3e xfrm6_rcv_cb -EXPORT_SYMBOL vmlinux 0x94eea794 getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x94ff3fac nobh_truncate_page -EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x9521b09e of_mdio_find_bus -EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init -EXPORT_SYMBOL vmlinux 0x95561dfc blk_mq_map_queue -EXPORT_SYMBOL vmlinux 0x95564289 kernel_sendpage -EXPORT_SYMBOL vmlinux 0x95622f41 down_timeout -EXPORT_SYMBOL vmlinux 0x956e9f62 textsearch_destroy -EXPORT_SYMBOL vmlinux 0x9596c23c dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0x9599efec dev_mc_del -EXPORT_SYMBOL vmlinux 0x95b2fa0c mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0x95b42b47 omap_dss_get_next_device -EXPORT_SYMBOL vmlinux 0x95cab154 get_tz_trend -EXPORT_SYMBOL vmlinux 0x95cc4596 security_inode_readlink -EXPORT_SYMBOL vmlinux 0x95d47993 register_sound_mixer -EXPORT_SYMBOL vmlinux 0x95dbe078 __get_user_2 -EXPORT_SYMBOL vmlinux 0x95e65e4b dev_mc_add -EXPORT_SYMBOL vmlinux 0x95eca7fb thermal_cdev_update -EXPORT_SYMBOL vmlinux 0x95f348b6 default_file_splice_read -EXPORT_SYMBOL vmlinux 0x95f420fc blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0x960dfaf5 radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0x9623f72f xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0x9629cf83 abort_creds -EXPORT_SYMBOL vmlinux 0x9632fe82 call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0x963d2880 tty_throttle -EXPORT_SYMBOL vmlinux 0x96496ef1 pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0x965518e1 set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x965aacdb genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x967da80b scsi_unregister -EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x9691ac59 omap_dss_get_overlay -EXPORT_SYMBOL vmlinux 0x969c08ef setup_new_exec -EXPORT_SYMBOL vmlinux 0x96a1f438 posix_unblock_lock -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96cf356a blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0x96d6d217 twl6040_reg_read -EXPORT_SYMBOL vmlinux 0x96dce98c resource_list_create_entry -EXPORT_SYMBOL vmlinux 0x96f2f5a5 phy_driver_unregister -EXPORT_SYMBOL vmlinux 0x96fc5153 pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0x97086b90 genphy_soft_reset -EXPORT_SYMBOL vmlinux 0x971a2feb inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0x97255bdf strlen -EXPORT_SYMBOL vmlinux 0x9727699d iommu_tbl_range_alloc -EXPORT_SYMBOL vmlinux 0x972a4b92 csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x972b1491 cfb_imageblit -EXPORT_SYMBOL vmlinux 0x974121cd bio_copy_kern -EXPORT_SYMBOL vmlinux 0x974318bc truncate_setsize -EXPORT_SYMBOL vmlinux 0x974f4cac nf_log_packet -EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x975bab1b tcp_shutdown -EXPORT_SYMBOL vmlinux 0x976e700f down_trylock -EXPORT_SYMBOL vmlinux 0x9793c93a dispc_mgr_setup -EXPORT_SYMBOL vmlinux 0x9798d176 snd_pcm_kernel_ioctl -EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state -EXPORT_SYMBOL vmlinux 0x979f0743 param_set_ullong -EXPORT_SYMBOL vmlinux 0x97cf8677 tcp_enter_memory_pressure -EXPORT_SYMBOL vmlinux 0x97ddf613 sk_net_capable -EXPORT_SYMBOL vmlinux 0x97f718f8 mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x97f904de jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0x98037418 of_find_all_nodes -EXPORT_SYMBOL vmlinux 0x9804719f max8998_read_reg -EXPORT_SYMBOL vmlinux 0x98116c79 pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint -EXPORT_SYMBOL vmlinux 0x984d9d01 snd_pcm_period_elapsed -EXPORT_SYMBOL vmlinux 0x984ed34d kmap_atomic -EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x9872db86 netif_skb_features -EXPORT_SYMBOL vmlinux 0x9875a46a gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0x987c11c7 __pv_phys_pfn_offset -EXPORT_SYMBOL vmlinux 0x988e47cb ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0x988f18f9 i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0x98c0fab1 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x98c90ee7 rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0x98ccefd3 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0x98e67b46 md_finish_reshape -EXPORT_SYMBOL vmlinux 0x98e68eca cancel_delayed_work -EXPORT_SYMBOL vmlinux 0x98f0ced1 inode_set_bytes -EXPORT_SYMBOL vmlinux 0x98f4ba98 param_set_byte -EXPORT_SYMBOL vmlinux 0x9921fc74 init_buffer -EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x994f0632 sk_ns_capable -EXPORT_SYMBOL vmlinux 0x9950980e dev_change_carrier -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x996c4d30 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x99878cde napi_complete_done -EXPORT_SYMBOL vmlinux 0x9989164a tty_check_change -EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99aa79bb snd_info_free_entry -EXPORT_SYMBOL vmlinux 0x99b32f21 inet6_protos -EXPORT_SYMBOL vmlinux 0x99b4508e snd_pcm_suspend -EXPORT_SYMBOL vmlinux 0x99bb8806 memmove -EXPORT_SYMBOL vmlinux 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering -EXPORT_SYMBOL vmlinux 0x99ce9fd7 scsi_block_requests -EXPORT_SYMBOL vmlinux 0x99d2f243 trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x99f43be2 __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0x99f58330 lg_local_lock_cpu -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval -EXPORT_SYMBOL vmlinux 0x9a3246f9 vme_register_driver -EXPORT_SYMBOL vmlinux 0x9a487084 ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0x9a4b510f __sb_start_write -EXPORT_SYMBOL vmlinux 0x9a5e8896 bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x9a623142 ida_get_new_above -EXPORT_SYMBOL vmlinux 0x9a8318ef v7_coherent_kern_range -EXPORT_SYMBOL vmlinux 0x9a9308d5 pps_register_source -EXPORT_SYMBOL vmlinux 0x9ad5974b __dst_free -EXPORT_SYMBOL vmlinux 0x9ae0e595 pagecache_write_end -EXPORT_SYMBOL vmlinux 0x9ae70a81 follow_up -EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach -EXPORT_SYMBOL vmlinux 0x9b11bb40 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page -EXPORT_SYMBOL vmlinux 0x9b446cfc netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x9b46133b down_write -EXPORT_SYMBOL vmlinux 0x9b4c6f15 i2c_del_adapter -EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize -EXPORT_SYMBOL vmlinux 0x9b746872 phy_init_eee -EXPORT_SYMBOL vmlinux 0x9b79e97a inet_csk_accept -EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split -EXPORT_SYMBOL vmlinux 0x9bacad22 fd_install -EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put -EXPORT_SYMBOL vmlinux 0x9bbfdc2a inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x9bcaf348 ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0x9bce482f __release_region -EXPORT_SYMBOL vmlinux 0x9be5bb4b do_splice_direct -EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x9bfaf77a __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0x9c0bd51f _raw_spin_lock -EXPORT_SYMBOL vmlinux 0x9c3a764e inet6_unregister_icmp_sender -EXPORT_SYMBOL vmlinux 0x9c3e4ae9 jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x9c485678 elv_rb_add -EXPORT_SYMBOL vmlinux 0x9c553781 inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x9c6631f0 page_put_link -EXPORT_SYMBOL vmlinux 0x9c7535d6 serio_bus -EXPORT_SYMBOL vmlinux 0x9c79323a truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0x9c7f0db3 qcom_scm_set_warm_boot_addr -EXPORT_SYMBOL vmlinux 0x9c9ec2a0 proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x9ca07ed0 devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cba3c37 _raw_read_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x9cc3b2cf snd_device_new -EXPORT_SYMBOL vmlinux 0x9ccdd907 lwtunnel_output -EXPORT_SYMBOL vmlinux 0x9cd58d5b poll_freewait -EXPORT_SYMBOL vmlinux 0x9cf1f7b4 netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0x9cfcae3f pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d2fb3b0 nvm_get_blk_unlocked -EXPORT_SYMBOL vmlinux 0x9d360bd5 clear_inode -EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init -EXPORT_SYMBOL vmlinux 0x9d3c6070 mdiobus_free -EXPORT_SYMBOL vmlinux 0x9d4e65bc serio_reconnect -EXPORT_SYMBOL vmlinux 0x9d50d0d9 single_open -EXPORT_SYMBOL vmlinux 0x9d63d9a7 devm_ioremap -EXPORT_SYMBOL vmlinux 0x9d669763 memcpy -EXPORT_SYMBOL vmlinux 0x9d96151f _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL vmlinux 0x9db4356f fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0x9dc086ad snd_ctl_make_virtual_master -EXPORT_SYMBOL vmlinux 0x9dce7606 __frontswap_store -EXPORT_SYMBOL vmlinux 0x9debaeaf kernel_sendmsg -EXPORT_SYMBOL vmlinux 0x9df2d967 cleancache_register_ops -EXPORT_SYMBOL vmlinux 0x9dfe7307 lz4_decompress_unknownoutputsize -EXPORT_SYMBOL vmlinux 0x9dfe9cb9 __tracepoint_fence_annotate_wait_on -EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e1ee228 ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0x9e22097a fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x9e2cbc4a dma_release_from_coherent -EXPORT_SYMBOL vmlinux 0x9e37f62f generic_setxattr -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e672ff6 scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x9e6764c9 mount_subtree -EXPORT_SYMBOL vmlinux 0x9e6cac91 path_noexec -EXPORT_SYMBOL vmlinux 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL vmlinux 0x9e75f242 mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value -EXPORT_SYMBOL vmlinux 0x9e9f9ae2 __serio_register_port -EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9eaca857 xfrm_input -EXPORT_SYMBOL vmlinux 0x9eb634be adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x9eb6ee10 tcp_disconnect -EXPORT_SYMBOL vmlinux 0x9eb936eb scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0x9ebbdaac dst_init -EXPORT_SYMBOL vmlinux 0x9ed8fd63 netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0x9eda4718 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x9ef93e52 qdisc_list_del -EXPORT_SYMBOL vmlinux 0x9efee630 of_find_node_opts_by_path -EXPORT_SYMBOL vmlinux 0x9f2adc65 tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x9f2b5a8d of_root -EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f4c9fd3 inode_init_owner -EXPORT_SYMBOL vmlinux 0x9f4e4abd sk_stop_timer -EXPORT_SYMBOL vmlinux 0x9f5a9cfb ata_print_version -EXPORT_SYMBOL vmlinux 0x9f688fb6 ip6_xmit -EXPORT_SYMBOL vmlinux 0x9f75687c proc_create_data -EXPORT_SYMBOL vmlinux 0x9f823cea dispc_mgr_is_enabled -EXPORT_SYMBOL vmlinux 0x9f8a1f22 tcf_unregister_action -EXPORT_SYMBOL vmlinux 0x9f8d5ce4 blk_queue_start_tag -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9fa1817f invalidate_partition -EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9fdfc5e0 inet_stream_connect -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0x9ffe42fd seq_path -EXPORT_SYMBOL vmlinux 0xa0044066 kset_register -EXPORT_SYMBOL vmlinux 0xa00eb15b ioremap_page -EXPORT_SYMBOL vmlinux 0xa01459a7 blk_mq_add_to_requeue_list -EXPORT_SYMBOL vmlinux 0xa0397105 omapdss_find_output_from_display -EXPORT_SYMBOL vmlinux 0xa03a79c2 blk_integrity_merge_rq -EXPORT_SYMBOL vmlinux 0xa03def0e vfs_link -EXPORT_SYMBOL vmlinux 0xa03f0985 __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xa0657aa8 __blkdev_reread_part -EXPORT_SYMBOL vmlinux 0xa065c15e ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0xa071f166 inet6_bind -EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init -EXPORT_SYMBOL vmlinux 0xa0820170 d_lookup -EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa092ad08 seq_release_private -EXPORT_SYMBOL vmlinux 0xa0aae687 imx_ssi_fiq_end -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0d2214c contig_page_data -EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem -EXPORT_SYMBOL vmlinux 0xa0f4a5e7 __skb_get_hash -EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa0fbc668 sock_init_data -EXPORT_SYMBOL vmlinux 0xa0fd2427 snd_pci_quirk_lookup_id -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts -EXPORT_SYMBOL vmlinux 0xa1571a0d block_read_full_page -EXPORT_SYMBOL vmlinux 0xa157ada5 redraw_screen -EXPORT_SYMBOL vmlinux 0xa1684575 devm_gpiod_put_array -EXPORT_SYMBOL vmlinux 0xa1793e7e tcp_rcv_established -EXPORT_SYMBOL vmlinux 0xa1909f35 sk_stream_error -EXPORT_SYMBOL vmlinux 0xa192813b idr_for_each -EXPORT_SYMBOL vmlinux 0xa196960b skb_append -EXPORT_SYMBOL vmlinux 0xa1ae816d kthread_stop -EXPORT_SYMBOL vmlinux 0xa1b12abd get_unmapped_area -EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode -EXPORT_SYMBOL vmlinux 0xa1bb6976 vme_master_request -EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched -EXPORT_SYMBOL vmlinux 0xa1d55e90 _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create -EXPORT_SYMBOL vmlinux 0xa1f0ebea bit_waitqueue -EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold -EXPORT_SYMBOL vmlinux 0xa20eefbe dev_activate -EXPORT_SYMBOL vmlinux 0xa2447e14 qdisc_reset -EXPORT_SYMBOL vmlinux 0xa269ba20 request_firmware -EXPORT_SYMBOL vmlinux 0xa26fd7f2 dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0xa2923c35 simple_dentry_operations -EXPORT_SYMBOL vmlinux 0xa2a15710 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0xa2c4e589 ata_link_printk -EXPORT_SYMBOL vmlinux 0xa2c7ad03 i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0xa2e4663d blk_init_queue -EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set -EXPORT_SYMBOL vmlinux 0xa33009fd netif_wake_subqueue -EXPORT_SYMBOL vmlinux 0xa336feb7 nand_manuf_ids -EXPORT_SYMBOL vmlinux 0xa3465bf2 mmc_release_host -EXPORT_SYMBOL vmlinux 0xa35444e4 dispc_write_irqenable -EXPORT_SYMBOL vmlinux 0xa37949d5 ps2_handle_ack -EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get -EXPORT_SYMBOL vmlinux 0xa381944f dql_reset -EXPORT_SYMBOL vmlinux 0xa384413f __skb_get_hash_flowi4 -EXPORT_SYMBOL vmlinux 0xa391a5a1 __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0xa39a123a fence_add_callback -EXPORT_SYMBOL vmlinux 0xa3b502cc elv_dispatch_sort -EXPORT_SYMBOL vmlinux 0xa3c3341d xfrm_state_flush -EXPORT_SYMBOL vmlinux 0xa3c7b7bf uart_register_driver -EXPORT_SYMBOL vmlinux 0xa3dde6b4 of_mdiobus_register -EXPORT_SYMBOL vmlinux 0xa414882d add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xa4187d24 mfd_add_devices -EXPORT_SYMBOL vmlinux 0xa439edb8 d_instantiate_unique -EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf -EXPORT_SYMBOL vmlinux 0xa45e05e3 free_user_ns -EXPORT_SYMBOL vmlinux 0xa4610bc6 omap_rev -EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset -EXPORT_SYMBOL vmlinux 0xa471a04d kernel_accept -EXPORT_SYMBOL vmlinux 0xa4852e14 pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0xa4868311 ip_setsockopt -EXPORT_SYMBOL vmlinux 0xa48f5b09 omap_dma_set_global_params -EXPORT_SYMBOL vmlinux 0xa497049f vfs_rename -EXPORT_SYMBOL vmlinux 0xa4a4c646 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0xa4b42c55 omap_set_dma_priority -EXPORT_SYMBOL vmlinux 0xa4d12e2e dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0xa4df0da4 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0xa4fb939c dm_unregister_target -EXPORT_SYMBOL vmlinux 0xa4fd19f8 __dquot_free_space -EXPORT_SYMBOL vmlinux 0xa50ee7fd tty_kref_put -EXPORT_SYMBOL vmlinux 0xa5280aa1 xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0xa53bed36 kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa56ac56a inode_set_flags -EXPORT_SYMBOL vmlinux 0xa58fea9d mempool_destroy -EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes -EXPORT_SYMBOL vmlinux 0xa5a633b9 sg_last -EXPORT_SYMBOL vmlinux 0xa5cef8ad release_resource -EXPORT_SYMBOL vmlinux 0xa5d0cb55 elm_decode_bch_error_page -EXPORT_SYMBOL vmlinux 0xa5e9f34f ip_route_input_noref -EXPORT_SYMBOL vmlinux 0xa5ee76f3 __invalidate_device -EXPORT_SYMBOL vmlinux 0xa5ef4d0d tcp_req_err -EXPORT_SYMBOL vmlinux 0xa5f91ea9 set_binfmt -EXPORT_SYMBOL vmlinux 0xa604e2b2 simple_transaction_read -EXPORT_SYMBOL vmlinux 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL vmlinux 0xa61ccce5 msm_pinctrl_remove -EXPORT_SYMBOL vmlinux 0xa61e3648 path_put -EXPORT_SYMBOL vmlinux 0xa61e4362 omap_request_dma -EXPORT_SYMBOL vmlinux 0xa6247d7b iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0xa638b92a tcp_setsockopt -EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember -EXPORT_SYMBOL vmlinux 0xa64d6d90 tcp_proc_unregister -EXPORT_SYMBOL vmlinux 0xa652c4ef __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0xa6685ef3 jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xa66dcfef blk_peek_request -EXPORT_SYMBOL vmlinux 0xa66f11d7 tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0xa67374f0 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa6921846 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0xa6a21d0b locks_mandatory_area -EXPORT_SYMBOL vmlinux 0xa6a22a9d pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0xa6bab23d dqstats -EXPORT_SYMBOL vmlinux 0xa6e85d41 security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0xa6fd9f06 clocksource_change_rating -EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function -EXPORT_SYMBOL vmlinux 0xa7085a5d xfrm_state_add -EXPORT_SYMBOL vmlinux 0xa734a3e9 abort_exclusive_wait -EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 -EXPORT_SYMBOL vmlinux 0xa74ab82e d_genocide -EXPORT_SYMBOL vmlinux 0xa75a937c kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0xa766db9d skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0xa77a8c25 dev_mc_init -EXPORT_SYMBOL vmlinux 0xa7800f19 kobject_del -EXPORT_SYMBOL vmlinux 0xa785f31c call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0xa78c6278 dev_get_flags -EXPORT_SYMBOL vmlinux 0xa791693b phy_read_mmd_indirect -EXPORT_SYMBOL vmlinux 0xa7ae38d9 search_binary_handler -EXPORT_SYMBOL vmlinux 0xa7aea945 input_release_device -EXPORT_SYMBOL vmlinux 0xa7e79c07 uart_write_wakeup -EXPORT_SYMBOL vmlinux 0xa7fcb087 sock_create -EXPORT_SYMBOL vmlinux 0xa8006b2b ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0xa8139b55 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa8721b97 system_state -EXPORT_SYMBOL vmlinux 0xa87247ad __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xa882eaf4 empty_aops -EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end -EXPORT_SYMBOL vmlinux 0xa8aa3175 omap_dss_get_output -EXPORT_SYMBOL vmlinux 0xa8b2083a cros_ec_cmd_xfer_status -EXPORT_SYMBOL vmlinux 0xa8b740a7 inet6_del_offload -EXPORT_SYMBOL vmlinux 0xa8be9ca0 phy_resume -EXPORT_SYMBOL vmlinux 0xa8e2ef86 devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xa8f70f84 mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send -EXPORT_SYMBOL vmlinux 0xa9146f17 msm_pinctrl_probe -EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion -EXPORT_SYMBOL vmlinux 0xa9217872 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0xa958f3e8 security_path_link -EXPORT_SYMBOL vmlinux 0xa95d2726 nf_ct_attach -EXPORT_SYMBOL vmlinux 0xa961a947 i2c_release_client -EXPORT_SYMBOL vmlinux 0xa964dd13 gpmc_cs_request -EXPORT_SYMBOL vmlinux 0xa9658cd3 kobject_add -EXPORT_SYMBOL vmlinux 0xa96adbcf pci_release_region -EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa97e15e7 scsi_cmd_blk_ioctl -EXPORT_SYMBOL vmlinux 0xa9b6d804 kernel_bind -EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0xa9d2f3f7 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0xaa040d0c init_special_inode -EXPORT_SYMBOL vmlinux 0xaa342aaf i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0xaa3655e2 netif_carrier_on -EXPORT_SYMBOL vmlinux 0xaa37cdbd phy_ethtool_gset -EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r -EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa8e4a8b dquot_enable -EXPORT_SYMBOL vmlinux 0xaa92147f key_validate -EXPORT_SYMBOL vmlinux 0xaa933b9d jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0xaab144c1 netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0xaad219e2 deactivate_super -EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state -EXPORT_SYMBOL vmlinux 0xaae2e8d1 __tracepoint_fence_emit -EXPORT_SYMBOL vmlinux 0xaaefa673 omap_dss_find_device -EXPORT_SYMBOL vmlinux 0xaaf1b5f2 d_set_fallthru -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0xab081701 jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0xab2c5bfe xfrm4_prepare_output -EXPORT_SYMBOL vmlinux 0xab2d5e6b pci_iomap -EXPORT_SYMBOL vmlinux 0xab39a174 inode_change_ok -EXPORT_SYMBOL vmlinux 0xab39ab28 get_task_io_context -EXPORT_SYMBOL vmlinux 0xab419ea1 lwtunnel_get_encap_size -EXPORT_SYMBOL vmlinux 0xab485148 block_invalidatepage -EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off -EXPORT_SYMBOL vmlinux 0xab694444 bsearch -EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog -EXPORT_SYMBOL vmlinux 0xab6fbed8 blk_mq_abort_requeue_list -EXPORT_SYMBOL vmlinux 0xab7603e7 imx_ssi_fiq_start -EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab8aba04 unregister_qdisc -EXPORT_SYMBOL vmlinux 0xaba3ad0c radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0xaba92027 fbcon_set_bitops -EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev -EXPORT_SYMBOL vmlinux 0xabe5aff7 clear_nlink -EXPORT_SYMBOL vmlinux 0xabefab3c generic_file_open -EXPORT_SYMBOL vmlinux 0xabfcb4c3 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac2a9812 md_cluster_ops -EXPORT_SYMBOL vmlinux 0xac390091 dev_base_lock -EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear -EXPORT_SYMBOL vmlinux 0xac3a2c3a sock_no_getsockopt -EXPORT_SYMBOL vmlinux 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL vmlinux 0xac48ac97 tegra_powergate_remove_clamping -EXPORT_SYMBOL vmlinux 0xac55c5db jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0xac6a3d66 set_groups -EXPORT_SYMBOL vmlinux 0xac933926 netif_receive_skb -EXPORT_SYMBOL vmlinux 0xac969751 remove_proc_entry -EXPORT_SYMBOL vmlinux 0xac9f1656 ps2_begin_command -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton -EXPORT_SYMBOL vmlinux 0xacd12f23 nvm_register_mgr -EXPORT_SYMBOL vmlinux 0xacd552c7 phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xace0d1c3 dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0xace2851e dcb_setapp -EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad05438e neigh_parms_release -EXPORT_SYMBOL vmlinux 0xad0c53fb pps_unregister_source -EXPORT_SYMBOL vmlinux 0xad0d808f neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0xad2af3d3 vme_register_bridge -EXPORT_SYMBOL vmlinux 0xad2d0b5a skb_copy_bits -EXPORT_SYMBOL vmlinux 0xad3b5e8c tcp_v4_connect -EXPORT_SYMBOL vmlinux 0xad5f9eb7 omapdss_find_mgr_from_display -EXPORT_SYMBOL vmlinux 0xad715b31 nand_bch_calculate_ecc -EXPORT_SYMBOL vmlinux 0xad7c7cd2 vfs_getattr -EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event -EXPORT_SYMBOL vmlinux 0xad8c0f3a mmc_gpio_request_ro -EXPORT_SYMBOL vmlinux 0xad8c4ce2 netdev_emerg -EXPORT_SYMBOL vmlinux 0xad9b55ef d_instantiate -EXPORT_SYMBOL vmlinux 0xadafef0e skb_tx_error -EXPORT_SYMBOL vmlinux 0xadd96ca9 mdio_bus_type -EXPORT_SYMBOL vmlinux 0xade23f7a tcf_hash_search -EXPORT_SYMBOL vmlinux 0xade83bdc dump_skip -EXPORT_SYMBOL vmlinux 0xade88e76 snd_malloc_pages -EXPORT_SYMBOL vmlinux 0xadf42bd5 __request_region -EXPORT_SYMBOL vmlinux 0xadf67998 blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae084607 scsi_device_resume -EXPORT_SYMBOL vmlinux 0xae3544f0 jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0xae4141af md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0xae77a595 radix_tree_gang_lookup_slot -EXPORT_SYMBOL vmlinux 0xae85a27e radix_tree_lookup -EXPORT_SYMBOL vmlinux 0xaebbcf11 d_tmpfile -EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact -EXPORT_SYMBOL vmlinux 0xaef8f175 ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0xaf0af921 sync_blockdev -EXPORT_SYMBOL vmlinux 0xaf2cf437 uart_suspend_port -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf50e76d elf_set_personality -EXPORT_SYMBOL vmlinux 0xaf600e11 i2c_transfer -EXPORT_SYMBOL vmlinux 0xaf6a62f2 inet_confirm_addr -EXPORT_SYMBOL vmlinux 0xaf7bd1e5 bioset_create -EXPORT_SYMBOL vmlinux 0xaf83fbcc get_acl -EXPORT_SYMBOL vmlinux 0xaf84865e __get_user_8 -EXPORT_SYMBOL vmlinux 0xaf8aa518 system_rev -EXPORT_SYMBOL vmlinux 0xaf8c661b dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0xafd3cbb0 __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0xafd41f21 generic_file_llseek -EXPORT_SYMBOL vmlinux 0xafe0350c pcim_iomap_table -EXPORT_SYMBOL vmlinux 0xaff13c8a dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0xaffdf6e5 vfs_llseek -EXPORT_SYMBOL vmlinux 0xb013d66c clocksource_unregister -EXPORT_SYMBOL vmlinux 0xb04cf0fe lg_local_unlock -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb066b530 iommu_tbl_pool_init -EXPORT_SYMBOL vmlinux 0xb07ec4d3 elv_dispatch_add_tail -EXPORT_SYMBOL vmlinux 0xb081b9c3 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0xb083e003 seq_putc -EXPORT_SYMBOL vmlinux 0xb0996a8a dget_parent -EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0a6ec3d sync_inode -EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0xb0c468f9 nf_setsockopt -EXPORT_SYMBOL vmlinux 0xb0cc1d61 tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on -EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb13bcb6a dma_declare_coherent_memory -EXPORT_SYMBOL vmlinux 0xb14d6a7e blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xb16ff88b md_write_end -EXPORT_SYMBOL vmlinux 0xb194c3c3 memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0xb1ad28e0 __gnu_mcount_nc -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xb1d7ad49 pci_read_vpd -EXPORT_SYMBOL vmlinux 0xb1d9aabd lg_local_unlock_cpu -EXPORT_SYMBOL vmlinux 0xb1ff736f generic_ro_fops -EXPORT_SYMBOL vmlinux 0xb2019b81 dmam_alloc_noncoherent -EXPORT_SYMBOL vmlinux 0xb207960c complete_request_key -EXPORT_SYMBOL vmlinux 0xb219ba4d skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0xb22f8bbf bitmap_start_sync -EXPORT_SYMBOL vmlinux 0xb233b5e4 udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0xb23a10b7 __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0xb2433a86 dev_driver_string -EXPORT_SYMBOL vmlinux 0xb245054b pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0xb2520f28 xfrm_lookup -EXPORT_SYMBOL vmlinux 0xb2582a77 shdma_init -EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0xb26a6ff1 __inode_permission -EXPORT_SYMBOL vmlinux 0xb282422b mntput -EXPORT_SYMBOL vmlinux 0xb29cdf03 nf_register_sockopt -EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on -EXPORT_SYMBOL vmlinux 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL vmlinux 0xb2ec3e21 pci_enable_msix -EXPORT_SYMBOL vmlinux 0xb31907a2 flush_kernel_dcache_page -EXPORT_SYMBOL vmlinux 0xb32d7b7e radix_tree_tagged -EXPORT_SYMBOL vmlinux 0xb3301ed6 xfrm_state_insert -EXPORT_SYMBOL vmlinux 0xb338157e mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0xb344418d vme_register_error_handler -EXPORT_SYMBOL vmlinux 0xb36164de pm860x_reg_write -EXPORT_SYMBOL vmlinux 0xb367c984 mxc_set_irq_fiq -EXPORT_SYMBOL vmlinux 0xb3862db3 mntget -EXPORT_SYMBOL vmlinux 0xb3912858 ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0xb3b28a9d con_is_bound -EXPORT_SYMBOL vmlinux 0xb3b84a3b vfs_create -EXPORT_SYMBOL vmlinux 0xb3bbf95a tcp_init_sock -EXPORT_SYMBOL vmlinux 0xb3c72ed9 snd_ctl_add -EXPORT_SYMBOL vmlinux 0xb3c78ded param_set_long -EXPORT_SYMBOL vmlinux 0xb3cf811e writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3d4eb05 dss_mgr_disable -EXPORT_SYMBOL vmlinux 0xb3d82d69 bdi_register_dev -EXPORT_SYMBOL vmlinux 0xb3e7979b open_check_o_direct -EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb4159aa7 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0xb42368c8 snd_card_file_remove -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb4245ee9 scsi_target_resume -EXPORT_SYMBOL vmlinux 0xb4390f9a mcount -EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem -EXPORT_SYMBOL vmlinux 0xb4664989 wake_up_process -EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0xb47e4d4d locks_init_lock -EXPORT_SYMBOL vmlinux 0xb4b94377 __nand_correct_data -EXPORT_SYMBOL vmlinux 0xb4d1fce7 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0xb4e43666 dev_change_flags -EXPORT_SYMBOL vmlinux 0xb4ec2916 cap_mmap_file -EXPORT_SYMBOL vmlinux 0xb4fc9e48 bio_init -EXPORT_SYMBOL vmlinux 0xb506b39d phy_detach -EXPORT_SYMBOL vmlinux 0xb513cc46 cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0xb5198b77 _raw_read_lock -EXPORT_SYMBOL vmlinux 0xb5466a9c vme_irq_generate -EXPORT_SYMBOL vmlinux 0xb5592c38 lock_sock_nested -EXPORT_SYMBOL vmlinux 0xb5684e29 idr_find_slowpath -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb57ebf21 of_graph_get_remote_port -EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5c00014 _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0xb5c66b8f dqput -EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free -EXPORT_SYMBOL vmlinux 0xb5d9454c printk_emit -EXPORT_SYMBOL vmlinux 0xb5de3573 snd_ctl_rename_id -EXPORT_SYMBOL vmlinux 0xb5df6221 inet_accept -EXPORT_SYMBOL vmlinux 0xb5e548be gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0xb5e99233 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0xb5ef70f1 sock_get_timestampns -EXPORT_SYMBOL vmlinux 0xb5f0f233 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0xb60d7db4 seq_lseek -EXPORT_SYMBOL vmlinux 0xb61f713c devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0xb65e8cd8 unregister_nls -EXPORT_SYMBOL vmlinux 0xb65fcff0 vga_get -EXPORT_SYMBOL vmlinux 0xb675c645 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif -EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb69830d8 vme_dma_list_add -EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit -EXPORT_SYMBOL vmlinux 0xb6d3daf1 qcom_scm_hdcp_req -EXPORT_SYMBOL vmlinux 0xb6f051a4 sb_min_blocksize -EXPORT_SYMBOL vmlinux 0xb6f78efb gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0xb6fc3d0e pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0xb6fe8b99 dev_open -EXPORT_SYMBOL vmlinux 0xb700d57a bdi_register -EXPORT_SYMBOL vmlinux 0xb70483d8 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0xb706610d try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0xb71bb443 xfrm_init_state -EXPORT_SYMBOL vmlinux 0xb71e457f always_delete_dentry -EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xb769d1d8 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb7823e2f dispc_ovl_setup -EXPORT_SYMBOL vmlinux 0xb78c55b8 of_device_get_match_data -EXPORT_SYMBOL vmlinux 0xb79a2fb0 start_tty -EXPORT_SYMBOL vmlinux 0xb79c3787 __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0xb79e2561 snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL vmlinux 0xb79ec15d mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0xb7aff3a9 new_inode -EXPORT_SYMBOL vmlinux 0xb7ba76c7 __aeabi_unwind_cpp_pr2 -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7e5cb74 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0xb81960ca snprintf -EXPORT_SYMBOL vmlinux 0xb81a7423 __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0xb81c9d8d sound_class -EXPORT_SYMBOL vmlinux 0xb81ce4ed simple_lookup -EXPORT_SYMBOL vmlinux 0xb8658e23 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 -EXPORT_SYMBOL vmlinux 0xb87ee772 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0xb8a1fa00 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0xb8cf5bc2 cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0xb9117686 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0xb91b75e3 blk_make_request -EXPORT_SYMBOL vmlinux 0xb9590657 pci_dev_driver -EXPORT_SYMBOL vmlinux 0xb95f98d6 _memset_io -EXPORT_SYMBOL vmlinux 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL vmlinux 0xb99fcc8d pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0xb9a8f03b omap_stop_dma -EXPORT_SYMBOL vmlinux 0xb9acd3d9 __put_user_2 -EXPORT_SYMBOL vmlinux 0xb9b299b4 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0xb9b4dd87 phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0xb9b7ce00 generic_show_options -EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xb9f794a8 of_iomap -EXPORT_SYMBOL vmlinux 0xb9fa2b77 qdisc_destroy -EXPORT_SYMBOL vmlinux 0xba179eae pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0xba3630e2 try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xba4268f7 devm_gpiod_get_array_optional -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba4ae097 enable_fiq -EXPORT_SYMBOL vmlinux 0xba7d870a __mxc_cpu_type -EXPORT_SYMBOL vmlinux 0xba941b9c simple_rmdir -EXPORT_SYMBOL vmlinux 0xbaa7b46e devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0xbab25a4d snd_timer_interrupt -EXPORT_SYMBOL vmlinux 0xbabc355c md_check_recovery -EXPORT_SYMBOL vmlinux 0xbac3cbf2 ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0xbadee6c3 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0xbae96ff1 inet_frag_find -EXPORT_SYMBOL vmlinux 0xbaf110d8 sock_get_timestamp -EXPORT_SYMBOL vmlinux 0xbaf60259 swiotlb_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0xbafeee36 dispc_runtime_get -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb088cbd param_ops_uint -EXPORT_SYMBOL vmlinux 0xbb1069f6 blk_queue_prep_rq -EXPORT_SYMBOL vmlinux 0xbb231d1c udp_lib_rehash -EXPORT_SYMBOL vmlinux 0xbb2aeef3 uart_get_divisor -EXPORT_SYMBOL vmlinux 0xbb30cee8 __scsi_print_sense -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb3ded47 snd_pcm_hw_rule_noresample -EXPORT_SYMBOL vmlinux 0xbb43caa6 of_find_matching_node_and_match -EXPORT_SYMBOL vmlinux 0xbb454966 netlink_net_capable -EXPORT_SYMBOL vmlinux 0xbb49e636 netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0xbb4c9200 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xbb72d4fe __put_user_1 -EXPORT_SYMBOL vmlinux 0xbb8dd5ac tegra_io_rail_power_on -EXPORT_SYMBOL vmlinux 0xbb927f56 serio_open -EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font -EXPORT_SYMBOL vmlinux 0xbbb0d307 __serio_register_driver -EXPORT_SYMBOL vmlinux 0xbbb79be2 phy_device_remove -EXPORT_SYMBOL vmlinux 0xbbbbd701 pci_bus_put -EXPORT_SYMBOL vmlinux 0xbbc09fff snd_timer_notify -EXPORT_SYMBOL vmlinux 0xbc10dd97 __put_user_4 -EXPORT_SYMBOL vmlinux 0xbc1f25ec snd_pcm_stop -EXPORT_SYMBOL vmlinux 0xbc24671c param_get_string -EXPORT_SYMBOL vmlinux 0xbc50b2ab md_done_sync -EXPORT_SYMBOL vmlinux 0xbc6329b0 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xbc8d6470 __starget_for_each_device -EXPORT_SYMBOL vmlinux 0xbcb8780a kernel_getpeername -EXPORT_SYMBOL vmlinux 0xbcb96eab devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user -EXPORT_SYMBOL vmlinux 0xbcd5cbcf proc_symlink -EXPORT_SYMBOL vmlinux 0xbce540b9 ata_port_printk -EXPORT_SYMBOL vmlinux 0xbd041cab skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0xbd0739f7 i2c_register_driver -EXPORT_SYMBOL vmlinux 0xbd156ca0 mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0xbd17c6de gen_replace_estimator -EXPORT_SYMBOL vmlinux 0xbd66d584 __bread_gfp -EXPORT_SYMBOL vmlinux 0xbd740dbf md_write_start -EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug -EXPORT_SYMBOL vmlinux 0xbd982453 twl6040_set_bits -EXPORT_SYMBOL vmlinux 0xbd9cd076 ip_do_fragment -EXPORT_SYMBOL vmlinux 0xbda3c3e0 scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0xbdb486f5 d_instantiate_no_diralias -EXPORT_SYMBOL vmlinux 0xbdbaa7e9 vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0xbdd4d936 of_translate_address -EXPORT_SYMBOL vmlinux 0xbdec4d08 fence_remove_callback -EXPORT_SYMBOL vmlinux 0xbdedb6b2 irq_stat -EXPORT_SYMBOL vmlinux 0xbdf5bd0a snd_pcm_lib_read -EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp -EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto -EXPORT_SYMBOL vmlinux 0xbe1bc67a posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0xbe1c6b52 dev_alert -EXPORT_SYMBOL vmlinux 0xbe1d6657 seq_release -EXPORT_SYMBOL vmlinux 0xbe1f0ffd ipv6_select_ident -EXPORT_SYMBOL vmlinux 0xbe50156a devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0xbe55b331 snd_ctl_replace -EXPORT_SYMBOL vmlinux 0xbe63ee40 request_resource -EXPORT_SYMBOL vmlinux 0xbe68021d freeze_super -EXPORT_SYMBOL vmlinux 0xbe7545df kobject_init -EXPORT_SYMBOL vmlinux 0xbe83d081 register_key_type -EXPORT_SYMBOL vmlinux 0xbe8860a8 dispc_mgr_go_busy -EXPORT_SYMBOL vmlinux 0xbe8fb90c dispc_mgr_get_framedone_irq -EXPORT_SYMBOL vmlinux 0xbe9b292e of_graph_get_next_endpoint -EXPORT_SYMBOL vmlinux 0xbe9cb01c get_super -EXPORT_SYMBOL vmlinux 0xbec7dae6 inet6_register_icmp_sender -EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbf210558 lwtunnel_fill_encap -EXPORT_SYMBOL vmlinux 0xbf285272 vme_dma_request -EXPORT_SYMBOL vmlinux 0xbf66c529 __destroy_inode -EXPORT_SYMBOL vmlinux 0xbf6da219 make_kgid -EXPORT_SYMBOL vmlinux 0xbf75ea6c tegra114_clock_tune_cpu_trimmers_low -EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk -EXPORT_SYMBOL vmlinux 0xbf90cd05 ps2_init -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfad3f8c skb_ensure_writable -EXPORT_SYMBOL vmlinux 0xbfb0f9d9 clkdev_alloc -EXPORT_SYMBOL vmlinux 0xbfbc4fd4 snd_timer_resolution -EXPORT_SYMBOL vmlinux 0xbfbf6372 dev_change_proto_down -EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block -EXPORT_SYMBOL vmlinux 0xbfd5f87f netlink_broadcast -EXPORT_SYMBOL vmlinux 0xbfd9d802 debugfs_create_automount -EXPORT_SYMBOL vmlinux 0xbfe19c78 dquot_get_state -EXPORT_SYMBOL vmlinux 0xbfe86653 dm_put_table_device -EXPORT_SYMBOL vmlinux 0xbfed28a3 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xc0056be5 _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0xc01da140 blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0xc04d9ab9 blk_register_region -EXPORT_SYMBOL vmlinux 0xc05119fe sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0xc05856d7 uart_add_one_port -EXPORT_SYMBOL vmlinux 0xc05f898d snd_card_set_id -EXPORT_SYMBOL vmlinux 0xc068440e __kfifo_alloc -EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write -EXPORT_SYMBOL vmlinux 0xc08b3dc6 tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0xc092c5ba __xfrm_init_state -EXPORT_SYMBOL vmlinux 0xc0a6a8c5 omap_set_dma_dest_burst_mode -EXPORT_SYMBOL vmlinux 0xc0a7cbe5 jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0xc0a98385 profile_pc -EXPORT_SYMBOL vmlinux 0xc0ac1d01 __vfs_write -EXPORT_SYMBOL vmlinux 0xc0b41b46 elv_add_request -EXPORT_SYMBOL vmlinux 0xc0c701e6 snd_card_file_add -EXPORT_SYMBOL vmlinux 0xc0cf95f9 omap_vrfb_request_ctx -EXPORT_SYMBOL vmlinux 0xc0d0dc57 __generic_file_fsync -EXPORT_SYMBOL vmlinux 0xc0e330ed d_path -EXPORT_SYMBOL vmlinux 0xc0e79c8e napi_gro_flush -EXPORT_SYMBOL vmlinux 0xc1056c7d tty_unregister_device -EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten -EXPORT_SYMBOL vmlinux 0xc121c78b posix_acl_fix_xattr_userns -EXPORT_SYMBOL vmlinux 0xc12cfa0d inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0xc156daee scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0xc1677a21 param_get_ushort -EXPORT_SYMBOL vmlinux 0xc18dc13a inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0xc1a45b00 of_phy_connect -EXPORT_SYMBOL vmlinux 0xc1a840c7 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1daf86f sock_wfree -EXPORT_SYMBOL vmlinux 0xc1e25542 set_device_ro -EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla -EXPORT_SYMBOL vmlinux 0xc1e74e3d pci_disable_link_state -EXPORT_SYMBOL vmlinux 0xc1ea42c7 snd_mixer_oss_notify_callback -EXPORT_SYMBOL vmlinux 0xc1f12ee5 eth_validate_addr -EXPORT_SYMBOL vmlinux 0xc1f3c1ff __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0xc1fa6a0a snd_register_device -EXPORT_SYMBOL vmlinux 0xc20a3261 omapdss_output_unset_device -EXPORT_SYMBOL vmlinux 0xc22d62e2 security_path_mkdir -EXPORT_SYMBOL vmlinux 0xc23cf1ae vmap -EXPORT_SYMBOL vmlinux 0xc23fedc9 i2c_del_driver -EXPORT_SYMBOL vmlinux 0xc258fb4b netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0xc267a05c bio_put -EXPORT_SYMBOL vmlinux 0xc2770608 mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0xc2899ac8 input_inject_event -EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xc2aec364 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0xc2bccad8 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0xc2d19759 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xc2d711e1 krealloc -EXPORT_SYMBOL vmlinux 0xc2dc9071 bdget -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2ed3e62 __seq_open_private -EXPORT_SYMBOL vmlinux 0xc30edf37 tcp_ioctl -EXPORT_SYMBOL vmlinux 0xc31753c3 tegra_powergate_power_off -EXPORT_SYMBOL vmlinux 0xc318c9cb blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0xc3216635 d_alloc_name -EXPORT_SYMBOL vmlinux 0xc32a97e5 tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0xc33294df pcie_get_readrq -EXPORT_SYMBOL vmlinux 0xc348022c netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0xc3543b68 sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0xc359fb65 abort -EXPORT_SYMBOL vmlinux 0xc35cf89c __tcf_hash_release -EXPORT_SYMBOL vmlinux 0xc373589c nvm_set_rqd_ppalist -EXPORT_SYMBOL vmlinux 0xc3996936 dquot_commit -EXPORT_SYMBOL vmlinux 0xc39af50c pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0xc3f3f670 ip_defrag -EXPORT_SYMBOL vmlinux 0xc3fb7391 parent_mem_cgroup -EXPORT_SYMBOL vmlinux 0xc403b55f add_random_ready_callback -EXPORT_SYMBOL vmlinux 0xc4044579 scsi_execute_req_flags -EXPORT_SYMBOL vmlinux 0xc4052bc6 release_sock -EXPORT_SYMBOL vmlinux 0xc40946e9 mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0xc41f0516 node_states -EXPORT_SYMBOL vmlinux 0xc428f0df uart_remove_one_port -EXPORT_SYMBOL vmlinux 0xc43efdab jbd2_journal_file_inode -EXPORT_SYMBOL vmlinux 0xc44a37cc mpage_writepages -EXPORT_SYMBOL vmlinux 0xc45078e7 dmam_pool_create -EXPORT_SYMBOL vmlinux 0xc465e8b9 snd_pcm_hw_constraint_step -EXPORT_SYMBOL vmlinux 0xc467b13d __quota_error -EXPORT_SYMBOL vmlinux 0xc48998cc jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup -EXPORT_SYMBOL vmlinux 0xc4c296aa netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0xc4c54d47 mmc_flush_cache -EXPORT_SYMBOL vmlinux 0xc4cb4f8c jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0xc4f450db scsi_register -EXPORT_SYMBOL vmlinux 0xc5202b04 ip_check_defrag -EXPORT_SYMBOL vmlinux 0xc52da066 omap_set_dma_dest_params -EXPORT_SYMBOL vmlinux 0xc52dc3f6 __scsi_add_device -EXPORT_SYMBOL vmlinux 0xc5320ce2 mmc_hw_reset -EXPORT_SYMBOL vmlinux 0xc55a532e dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0xc5718627 sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc59aecb3 sk_free -EXPORT_SYMBOL vmlinux 0xc5a4442e ppp_register_channel -EXPORT_SYMBOL vmlinux 0xc5a64848 bio_integrity_prep -EXPORT_SYMBOL vmlinux 0xc5bad692 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0xc5c928aa msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0xc5cb802c put_cmsg -EXPORT_SYMBOL vmlinux 0xc5f9763a neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xc606ff00 xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc63df81a of_mm_gpiochip_add -EXPORT_SYMBOL vmlinux 0xc65537d0 memremap -EXPORT_SYMBOL vmlinux 0xc6608821 in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xc66fa6a6 ida_remove -EXPORT_SYMBOL vmlinux 0xc683297d fb_get_mode -EXPORT_SYMBOL vmlinux 0xc692f1f9 of_device_alloc -EXPORT_SYMBOL vmlinux 0xc6a3e864 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0xc6c8bd78 led_blink_set -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6d370e7 dquot_disable -EXPORT_SYMBOL vmlinux 0xc6de77b4 gen_new_estimator -EXPORT_SYMBOL vmlinux 0xc6ee5828 mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0xc702d733 blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0xc7060972 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0xc7063e5f tcp_sendpage -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc72f1914 file_path -EXPORT_SYMBOL vmlinux 0xc7416eba inode_init_always -EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass -EXPORT_SYMBOL vmlinux 0xc7690ff3 qdisc_list_add -EXPORT_SYMBOL vmlinux 0xc76bb459 simple_statfs -EXPORT_SYMBOL vmlinux 0xc77b99ef security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc78f3f62 snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL vmlinux 0xc79a134a phy_driver_register -EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc -EXPORT_SYMBOL vmlinux 0xc79bd254 dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0xc7a06332 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7ab4086 seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xc7b0a738 dev_addr_add -EXPORT_SYMBOL vmlinux 0xc7b23df8 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0xc7bcbc8d add_wait_queue -EXPORT_SYMBOL vmlinux 0xc7d1aa20 snd_timer_stop -EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn -EXPORT_SYMBOL vmlinux 0xc8026de7 security_path_chown -EXPORT_SYMBOL vmlinux 0xc81eb580 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0xc824220c devm_gpiod_put -EXPORT_SYMBOL vmlinux 0xc82b8707 scsi_execute -EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape -EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc850a49c swiotlb_sync_single_for_device -EXPORT_SYMBOL vmlinux 0xc862fc40 skb_make_writable -EXPORT_SYMBOL vmlinux 0xc8715cde vfs_fsync_range -EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc88ac3c8 kmem_cache_free -EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc8a697d0 ab3100_event_register -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xc8dbaf45 try_to_writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0xc8fd844b devm_gpio_request -EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen -EXPORT_SYMBOL vmlinux 0xc928ab8d tcp_recvmsg -EXPORT_SYMBOL vmlinux 0xc93fda42 skb_push -EXPORT_SYMBOL vmlinux 0xc94a2830 genphy_resume -EXPORT_SYMBOL vmlinux 0xc95a6995 xfrm4_rcv_cb -EXPORT_SYMBOL vmlinux 0xc95ae870 km_new_mapping -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc966af3f bioset_create_nobvec -EXPORT_SYMBOL vmlinux 0xc966cfff dma_pool_create -EXPORT_SYMBOL vmlinux 0xc97c2246 pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9aaf6a6 swiotlb_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0xc9b4928f __skb_get_hash_flowi6 -EXPORT_SYMBOL vmlinux 0xc9b8c308 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0xc9db3e63 bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0xc9e131b1 dst_alloc -EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy -EXPORT_SYMBOL vmlinux 0xca235a92 sock_no_connect -EXPORT_SYMBOL vmlinux 0xca41eaa3 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0xca4f75c5 pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0xca7bf10e unregister_framebuffer -EXPORT_SYMBOL vmlinux 0xca8c193f ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xca9a6a01 snd_info_create_card_entry -EXPORT_SYMBOL vmlinux 0xca9d25fa jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0xcab419d7 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0xcab97ccb inet_del_protocol -EXPORT_SYMBOL vmlinux 0xcac66b96 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0xcacbd9ae phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0xcad7220b fsnotify_init_mark -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcafb90eb xfrm4_rcv -EXPORT_SYMBOL vmlinux 0xcafdf319 __frontswap_load -EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb0e4e6e dev_trans_start -EXPORT_SYMBOL vmlinux 0xcb275aa3 bdevname -EXPORT_SYMBOL vmlinux 0xcb3de20b snd_pcm_set_sync -EXPORT_SYMBOL vmlinux 0xcb466063 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0xcb595ad9 pci_lost_interrupt -EXPORT_SYMBOL vmlinux 0xcb96a708 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0xcba7c303 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0xcbaacdf4 tcf_register_action -EXPORT_SYMBOL vmlinux 0xcbac1c5a neigh_connected_output -EXPORT_SYMBOL vmlinux 0xcbb61b5e mem_cgroup_end_page_stat -EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0xcbd8c148 xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0xcbea8a71 phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0xcbeac4be hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0xcbee6439 ida_simple_get -EXPORT_SYMBOL vmlinux 0xcc182b8f unlock_buffer -EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc273426 inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0xcc44728e vga_tryget -EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc55d28a dquot_scan_active -EXPORT_SYMBOL vmlinux 0xcc75056d generic_error_remove_page -EXPORT_SYMBOL vmlinux 0xccb2f14a kobject_get -EXPORT_SYMBOL vmlinux 0xccbe62e1 __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor -EXPORT_SYMBOL vmlinux 0xccde3332 unregister_shrinker -EXPORT_SYMBOL vmlinux 0xccf953e3 netdev_change_features -EXPORT_SYMBOL vmlinux 0xccfb06fc xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0xccfef64f skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd30b95a tmio_core_mmc_clk_div -EXPORT_SYMBOL vmlinux 0xcd3a4f59 sk_prot_clear_portaddr_nulls -EXPORT_SYMBOL vmlinux 0xcd464fcc mmc_read_bkops_status -EXPORT_SYMBOL vmlinux 0xcd4a5fb1 generic_writepages -EXPORT_SYMBOL vmlinux 0xcd63c845 __aeabi_lasr -EXPORT_SYMBOL vmlinux 0xcd6ac63f pci_set_master -EXPORT_SYMBOL vmlinux 0xcd6dee5b wait_on_page_bit -EXPORT_SYMBOL vmlinux 0xcd790c21 dev_queue_xmit -EXPORT_SYMBOL vmlinux 0xcd9035af tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0xcda46fd0 jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0xcda7d07f tcp_make_synack -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdc49e19 lockref_get -EXPORT_SYMBOL vmlinux 0xcde4a1dd do_splice_from -EXPORT_SYMBOL vmlinux 0xce14aaad snd_dma_alloc_pages -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce303161 snd_timer_close -EXPORT_SYMBOL vmlinux 0xce30f482 gen_pool_free -EXPORT_SYMBOL vmlinux 0xce3ca308 copy_from_user_toio -EXPORT_SYMBOL vmlinux 0xce421b76 generic_file_fsync -EXPORT_SYMBOL vmlinux 0xce526a2b serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce62b552 vfs_write -EXPORT_SYMBOL vmlinux 0xce6a55b2 mmc_align_data_size -EXPORT_SYMBOL vmlinux 0xce93e3cb mount_single -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xcec08a96 unlock_rename -EXPORT_SYMBOL vmlinux 0xcee03252 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0xceeb0985 gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0xceed7f85 _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 -EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcefd8628 pagevec_lookup_tag -EXPORT_SYMBOL vmlinux 0xcf0a1823 sget -EXPORT_SYMBOL vmlinux 0xcf0a5f27 param_ops_int -EXPORT_SYMBOL vmlinux 0xcf0fed4e blk_queue_io_min -EXPORT_SYMBOL vmlinux 0xcf169fea kset_unregister -EXPORT_SYMBOL vmlinux 0xcf226ea7 blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0xcf27b7ce dma_common_mmap -EXPORT_SYMBOL vmlinux 0xcf2c3028 make_bad_inode -EXPORT_SYMBOL vmlinux 0xcf72a300 sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0xcf7a6a9d param_ops_bool -EXPORT_SYMBOL vmlinux 0xcf88625f mempool_create_node -EXPORT_SYMBOL vmlinux 0xcfa020f1 alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0xcfe4d1ff cros_ec_check_result -EXPORT_SYMBOL vmlinux 0xcff6b676 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0xd01371b9 del_gendisk -EXPORT_SYMBOL vmlinux 0xd034105f lockref_put_return -EXPORT_SYMBOL vmlinux 0xd03ac0d1 pci_scan_slot -EXPORT_SYMBOL vmlinux 0xd03b1c46 bdi_init -EXPORT_SYMBOL vmlinux 0xd0637be6 try_to_release_page -EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond -EXPORT_SYMBOL vmlinux 0xd0730544 buffer_migrate_page -EXPORT_SYMBOL vmlinux 0xd079d3ed bio_endio -EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc -EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init -EXPORT_SYMBOL vmlinux 0xd0a302f2 iterate_dir -EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces -EXPORT_SYMBOL vmlinux 0xd0b912ce pci_unmap_rom -EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format -EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first -EXPORT_SYMBOL vmlinux 0xd100acbd _raw_write_lock -EXPORT_SYMBOL vmlinux 0xd1067ba7 dispc_ovl_enabled -EXPORT_SYMBOL vmlinux 0xd1157735 release_and_free_resource -EXPORT_SYMBOL vmlinux 0xd12c1fe6 inet_frags_fini -EXPORT_SYMBOL vmlinux 0xd12db648 seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0xd1321b80 padata_remove_cpu -EXPORT_SYMBOL vmlinux 0xd13627b4 mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0xd13ba0c7 neigh_seq_next -EXPORT_SYMBOL vmlinux 0xd13bdb7a xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0xd145eb46 snd_pcm_create_iec958_consumer -EXPORT_SYMBOL vmlinux 0xd15529d3 omap_dss_find_output_by_port_node -EXPORT_SYMBOL vmlinux 0xd17b45b0 pci_release_regions -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd192eff0 clear_wb_congested -EXPORT_SYMBOL vmlinux 0xd196c9be kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xd1974bb2 phy_start_interrupts -EXPORT_SYMBOL vmlinux 0xd1c84dfb hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0xd1ce6d75 generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1e79cae fence_wait_timeout -EXPORT_SYMBOL vmlinux 0xd1e970bc d_make_root -EXPORT_SYMBOL vmlinux 0xd22e5091 vme_dma_list_free -EXPORT_SYMBOL vmlinux 0xd235d5ba snd_timer_open -EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd29c6d2d blk_end_request -EXPORT_SYMBOL vmlinux 0xd2a92bbc set_nlink -EXPORT_SYMBOL vmlinux 0xd2a941d4 sg_init_table -EXPORT_SYMBOL vmlinux 0xd2af138b reservation_ww_class -EXPORT_SYMBOL vmlinux 0xd2c25e5f snd_component_add -EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2e6c327 snd_ctl_free_one -EXPORT_SYMBOL vmlinux 0xd2eacd0a swiotlb_map_sg -EXPORT_SYMBOL vmlinux 0xd30753b0 dev_add_pack -EXPORT_SYMBOL vmlinux 0xd30bdfc9 i2c_master_recv -EXPORT_SYMBOL vmlinux 0xd31019ea km_is_alive -EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd31cd1d2 dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0xd322b039 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0xd3477092 udp_seq_open -EXPORT_SYMBOL vmlinux 0xd3520b7c bio_integrity_endio -EXPORT_SYMBOL vmlinux 0xd3709393 dev_set_allmulti -EXPORT_SYMBOL vmlinux 0xd3765b79 dma_mmap_from_coherent -EXPORT_SYMBOL vmlinux 0xd39464e0 netlink_ack -EXPORT_SYMBOL vmlinux 0xd3a1ec7f of_get_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0xd3b41b62 make_kprojid -EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xd3c98807 __remove_inode_hash -EXPORT_SYMBOL vmlinux 0xd3cc7863 mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0xd3cd2f35 tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0xd3dbfbc4 _find_first_zero_bit_le -EXPORT_SYMBOL vmlinux 0xd3e6f60d cpu_possible_mask -EXPORT_SYMBOL vmlinux 0xd40b0e9d pci_scan_bus -EXPORT_SYMBOL vmlinux 0xd418e1c0 adjust_resource -EXPORT_SYMBOL vmlinux 0xd423c618 find_get_entry -EXPORT_SYMBOL vmlinux 0xd4252cda lwtunnel_state_alloc -EXPORT_SYMBOL vmlinux 0xd42e5204 unlink_framebuffer -EXPORT_SYMBOL vmlinux 0xd42f690e dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0xd438be43 vm_iomap_memory -EXPORT_SYMBOL vmlinux 0xd43b937d blk_init_queue_node -EXPORT_SYMBOL vmlinux 0xd4579700 of_find_device_by_node -EXPORT_SYMBOL vmlinux 0xd45fc43c pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0xd4669fad complete -EXPORT_SYMBOL vmlinux 0xd46a1ed2 replace_mount_options -EXPORT_SYMBOL vmlinux 0xd47c555d follow_pfn -EXPORT_SYMBOL vmlinux 0xd47c7673 simple_setattr -EXPORT_SYMBOL vmlinux 0xd497dc54 scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0xd49c0bb5 dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0xd4a5c30d ilookup -EXPORT_SYMBOL vmlinux 0xd4aa92b2 xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0xd4dd467f vc_cons -EXPORT_SYMBOL vmlinux 0xd4f518d0 shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0xd52d7606 neigh_for_each -EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0xd55cafba snd_card_register -EXPORT_SYMBOL vmlinux 0xd56c20df inet_release -EXPORT_SYMBOL vmlinux 0xd5820708 mb_cache_entry_release -EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames -EXPORT_SYMBOL vmlinux 0xd5d841d2 param_ops_short -EXPORT_SYMBOL vmlinux 0xd5e15de1 rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0xd5eba4d5 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0xd61347c6 register_sysctl -EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0xd61a552d ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0xd61be4dd set_anon_super -EXPORT_SYMBOL vmlinux 0xd6264a95 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0xd627480b strncat -EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout -EXPORT_SYMBOL vmlinux 0xd6373f7c tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0xd63c5346 blk_queue_bounce -EXPORT_SYMBOL vmlinux 0xd63f8a71 is_bad_inode -EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode -EXPORT_SYMBOL vmlinux 0xd651ff32 crypto_sha256_update -EXPORT_SYMBOL vmlinux 0xd6581920 current_fs_time -EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd68af720 devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0xd6c3008b dm_kobject_release -EXPORT_SYMBOL vmlinux 0xd6e86823 napi_disable -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd6f5453f pci_alloc_dev -EXPORT_SYMBOL vmlinux 0xd6fbbb88 tty_devnum -EXPORT_SYMBOL vmlinux 0xd708164b snd_pcm_suspend_all -EXPORT_SYMBOL vmlinux 0xd70e226e pci_find_capability -EXPORT_SYMBOL vmlinux 0xd711f48c filemap_map_pages -EXPORT_SYMBOL vmlinux 0xd7235b48 mem_map -EXPORT_SYMBOL vmlinux 0xd723cae2 iget_failed -EXPORT_SYMBOL vmlinux 0xd734e8d2 reservation_object_reserve_shared -EXPORT_SYMBOL vmlinux 0xd73ce9b6 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0xd73d73c6 request_key_async -EXPORT_SYMBOL vmlinux 0xd74289f9 __percpu_counter_add -EXPORT_SYMBOL vmlinux 0xd74a1f4e find_get_pages_contig -EXPORT_SYMBOL vmlinux 0xd7595ee8 mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function -EXPORT_SYMBOL vmlinux 0xd7851d59 inet_add_protocol -EXPORT_SYMBOL vmlinux 0xd7945ab3 generic_block_fiemap -EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write -EXPORT_SYMBOL vmlinux 0xd7ceefb2 nf_reinject -EXPORT_SYMBOL vmlinux 0xd7d7408d snd_timer_global_free -EXPORT_SYMBOL vmlinux 0xd7e1f371 blk_get_queue -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7ea128d tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7f06f9c save_mount_options -EXPORT_SYMBOL vmlinux 0xd80447bd pci_set_dma_max_seg_size -EXPORT_SYMBOL vmlinux 0xd81b3b0b snd_soc_alloc_ac97_codec -EXPORT_SYMBOL vmlinux 0xd8229da2 request_firmware_nowait -EXPORT_SYMBOL vmlinux 0xd82a3675 input_register_handler -EXPORT_SYMBOL vmlinux 0xd845cf95 nla_put -EXPORT_SYMBOL vmlinux 0xd8543c39 snd_timer_continue -EXPORT_SYMBOL vmlinux 0xd85cd67e __wake_up -EXPORT_SYMBOL vmlinux 0xd87bdf7f dss_mgr_disconnect -EXPORT_SYMBOL vmlinux 0xd87ccfe2 mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0xd88ccab9 fb_pan_display -EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8ba6a6a dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xd8df357e snd_pcm_new_stream -EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region -EXPORT_SYMBOL vmlinux 0xd8e94ba8 import_iovec -EXPORT_SYMBOL vmlinux 0xd8f980bc neigh_lookup -EXPORT_SYMBOL vmlinux 0xd927f41b __ps2_command -EXPORT_SYMBOL vmlinux 0xd92c1388 ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0xd955d2b7 omap_set_dma_dest_data_pack -EXPORT_SYMBOL vmlinux 0xd955fbb1 snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL vmlinux 0xd959b122 led_update_brightness -EXPORT_SYMBOL vmlinux 0xd95da950 bio_add_page -EXPORT_SYMBOL vmlinux 0xd97edd47 neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0xd97ef76b vlan_vid_del -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd9a372e6 pwmss_submodule_state_change -EXPORT_SYMBOL vmlinux 0xd9ad2a1c jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0xd9c6f307 check_disk_size_change -EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen -EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler -EXPORT_SYMBOL vmlinux 0xd9db281b neigh_destroy -EXPORT_SYMBOL vmlinux 0xd9e8868c pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0xd9fc600d phy_device_free -EXPORT_SYMBOL vmlinux 0xda12bfc5 dss_mgr_set_lcd_config -EXPORT_SYMBOL vmlinux 0xda1f607e skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0xda3198e8 __register_chrdev -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda48a413 vme_slot_num -EXPORT_SYMBOL vmlinux 0xda6ace22 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xda7e09c4 loop_backing_file -EXPORT_SYMBOL vmlinux 0xda7f6fb6 twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0xda97ad62 snd_seq_root -EXPORT_SYMBOL vmlinux 0xdaa19ca4 neigh_table_clear -EXPORT_SYMBOL vmlinux 0xdaa57ec3 totalhigh_pages -EXPORT_SYMBOL vmlinux 0xdaafc807 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0xdabfd019 bioset_integrity_free -EXPORT_SYMBOL vmlinux 0xdac1526a netdev_alert -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdace0de5 __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0xdad97f94 __raw_writesw -EXPORT_SYMBOL vmlinux 0xdae9d7cd inet_addr_type -EXPORT_SYMBOL vmlinux 0xdaf57860 bio_alloc_pages -EXPORT_SYMBOL vmlinux 0xdaf58465 kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0xdb111480 blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xdb19c08f vfs_read -EXPORT_SYMBOL vmlinux 0xdb39fd19 __breadahead -EXPORT_SYMBOL vmlinux 0xdb3e5126 __secpath_destroy -EXPORT_SYMBOL vmlinux 0xdb4292e4 omap_set_dma_params -EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb6e1bfc mmc_get_card -EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb7a1701 inet6_del_protocol -EXPORT_SYMBOL vmlinux 0xdb83d6dc __netlink_dump_start -EXPORT_SYMBOL vmlinux 0xdb8ec6a5 cdrom_check_events -EXPORT_SYMBOL vmlinux 0xdb93b838 dispc_free_irq -EXPORT_SYMBOL vmlinux 0xdba1ed79 xfrm_register_mode -EXPORT_SYMBOL vmlinux 0xdbaa16f5 snd_ctl_boolean_stereo_info -EXPORT_SYMBOL vmlinux 0xdbb1741e scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0xdbcca5e5 pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0xdbd3ad14 skb_find_text -EXPORT_SYMBOL vmlinux 0xdbda08cb kill_pid -EXPORT_SYMBOL vmlinux 0xdbefdbe0 skb_pull -EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc2be03b tcp_getsockopt -EXPORT_SYMBOL vmlinux 0xdc3f04e1 clk_register_clkdevs -EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 -EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc59ba41 register_sound_special -EXPORT_SYMBOL vmlinux 0xdc5c6297 videomode_to_omap_video_timings -EXPORT_SYMBOL vmlinux 0xdc600bbb kill_block_super -EXPORT_SYMBOL vmlinux 0xdc80438f fb_set_suspend -EXPORT_SYMBOL vmlinux 0xdc815867 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0xdc942659 pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0xdc9e8c01 devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xdcaf58cc copy_to_iter -EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close -EXPORT_SYMBOL vmlinux 0xdcb46869 blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0xdcb58d05 xfrm_state_update -EXPORT_SYMBOL vmlinux 0xdcc07d52 csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0xdce6e9f9 generic_update_time -EXPORT_SYMBOL vmlinux 0xdced7d0b __module_get -EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat -EXPORT_SYMBOL vmlinux 0xdd15d985 datagram_poll -EXPORT_SYMBOL vmlinux 0xdd1a89ce mmc_add_host -EXPORT_SYMBOL vmlinux 0xdd226fa9 __raw_readsw -EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr -EXPORT_SYMBOL vmlinux 0xdd3916ac _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0xdd727a85 mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xdd7e1b04 pci_match_id -EXPORT_SYMBOL vmlinux 0xdd90c326 twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0xddbdb170 dev_add_offload -EXPORT_SYMBOL vmlinux 0xddc5068f ps2_handle_response -EXPORT_SYMBOL vmlinux 0xddc57eae sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0xddcf8699 fbcon_set_tileops -EXPORT_SYMBOL vmlinux 0xddee357f snd_info_register -EXPORT_SYMBOL vmlinux 0xddf0c00d kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0xde008489 keyring_clear -EXPORT_SYMBOL vmlinux 0xde00adcd fbcon_rotate_ud -EXPORT_SYMBOL vmlinux 0xde263916 sock_cmsg_send -EXPORT_SYMBOL vmlinux 0xde491649 padata_add_cpu -EXPORT_SYMBOL vmlinux 0xde71f392 posix_acl_valid -EXPORT_SYMBOL vmlinux 0xde93552c __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages -EXPORT_SYMBOL vmlinux 0xde9914c3 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0xdea40cf6 mark_page_accessed -EXPORT_SYMBOL vmlinux 0xdeb40504 dma_supported -EXPORT_SYMBOL vmlinux 0xdec030e5 arm_clear_user -EXPORT_SYMBOL vmlinux 0xdec4e871 pci_restore_state -EXPORT_SYMBOL vmlinux 0xdeea158b skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0xdef74f4d phy_find_first -EXPORT_SYMBOL vmlinux 0xdf000578 block_write_begin -EXPORT_SYMBOL vmlinux 0xdf0412ce ip_mc_join_group -EXPORT_SYMBOL vmlinux 0xdf27f0df register_netdevice -EXPORT_SYMBOL vmlinux 0xdf2b346f atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update -EXPORT_SYMBOL vmlinux 0xdf3e4852 input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0xdf4da8f7 of_n_size_cells -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf55b224 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0xdf5741a1 dquot_transfer -EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol -EXPORT_SYMBOL vmlinux 0xdf7471dc xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0xdf8c2cb1 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdf99bdc6 simple_dir_operations -EXPORT_SYMBOL vmlinux 0xdfab5790 misc_register -EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init -EXPORT_SYMBOL vmlinux 0xdfc71b2c cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0xdfd91ce9 omap_type -EXPORT_SYMBOL vmlinux 0xdfe1215e mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xe013cd22 elevator_exit -EXPORT_SYMBOL vmlinux 0xe028e16f bitmap_endwrite -EXPORT_SYMBOL vmlinux 0xe03c3eea vm_insert_pfn -EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xe05cdef0 sg_miter_skip -EXPORT_SYMBOL vmlinux 0xe05e94ea framebuffer_release -EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone -EXPORT_SYMBOL vmlinux 0xe063ea8b iget_locked -EXPORT_SYMBOL vmlinux 0xe06cbad0 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xe07746b7 netpoll_setup -EXPORT_SYMBOL vmlinux 0xe07d6809 omap_dss_put_device -EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool -EXPORT_SYMBOL vmlinux 0xe094ef39 sg_next -EXPORT_SYMBOL vmlinux 0xe0aab0e3 bprm_change_interp -EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco -EXPORT_SYMBOL vmlinux 0xe0d79ed2 devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -EXPORT_SYMBOL vmlinux 0xe1223f3c grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0xe127fb18 down_killable -EXPORT_SYMBOL vmlinux 0xe12a85e1 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0xe1456f60 n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0xe146b294 tty_free_termios -EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xe1a3ae5b jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0xe1c2271b pci_find_pcie_root_port -EXPORT_SYMBOL vmlinux 0xe1e6b844 sock_release -EXPORT_SYMBOL vmlinux 0xe1ead671 security_file_permission -EXPORT_SYMBOL vmlinux 0xe1f0ab3a _raw_read_lock_irqsave -EXPORT_SYMBOL vmlinux 0xe1f46631 inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xe2111948 locks_remove_posix -EXPORT_SYMBOL vmlinux 0xe21b9015 scsi_device_put -EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 -EXPORT_SYMBOL vmlinux 0xe267bb07 tty_do_resize -EXPORT_SYMBOL vmlinux 0xe2696545 dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0xe28c08b0 __i2c_transfer -EXPORT_SYMBOL vmlinux 0xe28db0cb pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0xe29164f7 kernel_connect -EXPORT_SYMBOL vmlinux 0xe29730ab snd_pcm_hw_param_first -EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t -EXPORT_SYMBOL vmlinux 0xe2adba0c pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0xe2ca58ca tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0xe2cc96f7 __do_once_done -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2e4a361 of_get_next_parent -EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user -EXPORT_SYMBOL vmlinux 0xe2f37ca0 file_update_time -EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup -EXPORT_SYMBOL vmlinux 0xe3158252 of_get_mac_address -EXPORT_SYMBOL vmlinux 0xe360369e register_gifconf -EXPORT_SYMBOL vmlinux 0xe36765a8 blk_mq_start_request -EXPORT_SYMBOL vmlinux 0xe37d10ae omap_dispc_unregister_isr -EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0xe3bc1f9a mmc_start_bkops -EXPORT_SYMBOL vmlinux 0xe3c1be07 snd_info_create_module_entry -EXPORT_SYMBOL vmlinux 0xe3c52497 of_cpufreq_power_cooling_register -EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xe3e9a596 sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0xe40261c8 __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0xe413be4a memcg_socket_limit_enabled -EXPORT_SYMBOL vmlinux 0xe41c2d8a inet_add_offload -EXPORT_SYMBOL vmlinux 0xe41d77be filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0xe43274bc proc_dointvec -EXPORT_SYMBOL vmlinux 0xe43cf282 pci_write_vpd -EXPORT_SYMBOL vmlinux 0xe43db144 phy_start -EXPORT_SYMBOL vmlinux 0xe4459546 tcf_hash_insert -EXPORT_SYMBOL vmlinux 0xe44c8d69 abx500_get_register_page_interruptible -EXPORT_SYMBOL vmlinux 0xe474e309 security_path_rename -EXPORT_SYMBOL vmlinux 0xe47d7cce finish_open -EXPORT_SYMBOL vmlinux 0xe489bb1e genphy_setup_forced -EXPORT_SYMBOL vmlinux 0xe4909a79 scm_fp_dup -EXPORT_SYMBOL vmlinux 0xe4aac4a4 blk_queue_find_tag -EXPORT_SYMBOL vmlinux 0xe4c80097 cacheid -EXPORT_SYMBOL vmlinux 0xe4df8829 dm_register_target -EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array -EXPORT_SYMBOL vmlinux 0xe4e95c1a mmc_can_discard -EXPORT_SYMBOL vmlinux 0xe4f2d8ef km_policy_notify -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe5445af6 omap_get_dma_dst_pos -EXPORT_SYMBOL vmlinux 0xe544de21 register_filesystem -EXPORT_SYMBOL vmlinux 0xe546bae6 mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0xe552860e input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0xe557e281 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL vmlinux 0xe571d5db tty_port_tty_get -EXPORT_SYMBOL vmlinux 0xe575f1e2 ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton -EXPORT_SYMBOL vmlinux 0xe582f13f get_mem_type -EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set -EXPORT_SYMBOL vmlinux 0xe58778e1 cpufreq_global_kobject -EXPORT_SYMBOL vmlinux 0xe58f2d28 vfs_symlink -EXPORT_SYMBOL vmlinux 0xe5a1553c tcf_destroy_chain -EXPORT_SYMBOL vmlinux 0xe5bb18b8 blkdev_reread_part -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5cde2eb blk_end_request_all -EXPORT_SYMBOL vmlinux 0xe5debfbd blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xe5f8a681 dump_emit -EXPORT_SYMBOL vmlinux 0xe609af6d tty_port_hangup -EXPORT_SYMBOL vmlinux 0xe654e2a6 padata_stop -EXPORT_SYMBOL vmlinux 0xe66452ab dql_init -EXPORT_SYMBOL vmlinux 0xe6924853 inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size -EXPORT_SYMBOL vmlinux 0xe697bd50 mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe6984b2a simple_empty -EXPORT_SYMBOL vmlinux 0xe69d9f6c wait_iff_congested -EXPORT_SYMBOL vmlinux 0xe6a45518 pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0xe6cb4fee set_posix_acl -EXPORT_SYMBOL vmlinux 0xe6d96a00 sb_set_blocksize -EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update -EXPORT_SYMBOL vmlinux 0xe6ee6e00 elv_rb_del -EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock -EXPORT_SYMBOL vmlinux 0xe7075b97 idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xe707d823 __aeabi_uidiv -EXPORT_SYMBOL vmlinux 0xe73a806f read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0xe74c37b3 phy_attach -EXPORT_SYMBOL vmlinux 0xe75900c1 blk_start_queue_async -EXPORT_SYMBOL vmlinux 0xe75a34ad dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0xe75efd91 mmc_free_host -EXPORT_SYMBOL vmlinux 0xe7617334 unregister_mtd_chip_driver -EXPORT_SYMBOL vmlinux 0xe77165ba kmap_to_page -EXPORT_SYMBOL vmlinux 0xe7958d22 pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx -EXPORT_SYMBOL vmlinux 0xe7b1b1bd security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0xe7b324d0 __ww_mutex_lock -EXPORT_SYMBOL vmlinux 0xe7b6315e kblockd_schedule_delayed_work_on -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7e15910 dispc_clear_irqstatus -EXPORT_SYMBOL vmlinux 0xe7f6809f get_cached_acl -EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0xe8486e3a dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0xe84e9573 blk_queue_free_tags -EXPORT_SYMBOL vmlinux 0xe8571157 pci_select_bars -EXPORT_SYMBOL vmlinux 0xe86dca99 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0xe86fbe45 blk_mq_can_queue -EXPORT_SYMBOL vmlinux 0xe876bb29 param_set_ushort -EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss -EXPORT_SYMBOL vmlinux 0xe8981cff nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0xe89ad353 of_device_is_big_endian -EXPORT_SYMBOL vmlinux 0xe89d5202 release_pages -EXPORT_SYMBOL vmlinux 0xe8a6a808 mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0xe8b70b00 udp_poll -EXPORT_SYMBOL vmlinux 0xe8b9a3d4 mx51_revision -EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xe8cfce09 tegra114_clock_deassert_dfll_dvco_reset -EXPORT_SYMBOL vmlinux 0xe8d36584 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0xe8e795d5 scsi_device_get -EXPORT_SYMBOL vmlinux 0xe8ebf804 bio_clone_fast -EXPORT_SYMBOL vmlinux 0xe8f3f49e tcp_filter -EXPORT_SYMBOL vmlinux 0xe90574ef dev_deactivate -EXPORT_SYMBOL vmlinux 0xe90d69e6 inet_register_protosw -EXPORT_SYMBOL vmlinux 0xe912da6b unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe93f6042 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr -EXPORT_SYMBOL vmlinux 0xe960f6b4 blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0xe98d62f6 ns_capable -EXPORT_SYMBOL vmlinux 0xe99f7e74 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0xe9a087d4 add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0xe9ae88ed wireless_send_event -EXPORT_SYMBOL vmlinux 0xe9be808d lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0xe9ccfcd3 ioremap_cache -EXPORT_SYMBOL vmlinux 0xe9d68853 nvm_get_blk -EXPORT_SYMBOL vmlinux 0xe9de82b9 nvm_unregister_mgr -EXPORT_SYMBOL vmlinux 0xe9e38e9c iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0xe9e9270d key_alloc -EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len -EXPORT_SYMBOL vmlinux 0xea1818d5 tty_port_init -EXPORT_SYMBOL vmlinux 0xea1f5b88 samsung_rev -EXPORT_SYMBOL vmlinux 0xea37491b pci_platform_rom -EXPORT_SYMBOL vmlinux 0xea3dbef4 bitmap_close_sync -EXPORT_SYMBOL vmlinux 0xea44b726 skb_insert -EXPORT_SYMBOL vmlinux 0xea4a0060 skb_vlan_untag -EXPORT_SYMBOL vmlinux 0xea4a5b70 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0xea633a0f shdma_cleanup -EXPORT_SYMBOL vmlinux 0xea67c36a bio_advance -EXPORT_SYMBOL vmlinux 0xea6b04b4 snd_pci_quirk_lookup -EXPORT_SYMBOL vmlinux 0xea7987f1 key_update -EXPORT_SYMBOL vmlinux 0xeab6994a dev_mc_add_global -EXPORT_SYMBOL vmlinux 0xeac15688 tegra_dfll_runtime_resume -EXPORT_SYMBOL vmlinux 0xeada35b9 pid_task -EXPORT_SYMBOL vmlinux 0xeb03b389 __raw_readsl -EXPORT_SYMBOL vmlinux 0xeb1300d6 jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0xeb159807 fsnotify_alloc_group -EXPORT_SYMBOL vmlinux 0xeb1b120e omap_set_dma_write_mode -EXPORT_SYMBOL vmlinux 0xeb21fcaa fb_set_cmap -EXPORT_SYMBOL vmlinux 0xeb2adc2c scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0xeb2ce7e0 netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb3e85a3 unregister_console -EXPORT_SYMBOL vmlinux 0xeb51adf2 iput -EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xeb5b8d9c dev_set_mtu -EXPORT_SYMBOL vmlinux 0xeb6f6987 scsi_ioctl -EXPORT_SYMBOL vmlinux 0xeb75c111 update_devfreq -EXPORT_SYMBOL vmlinux 0xeb75e5c9 nand_bch_correct_data -EXPORT_SYMBOL vmlinux 0xeb89a3d4 cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0xeb8b64f5 skb_copy_expand -EXPORT_SYMBOL vmlinux 0xeb9eceff dma_alloc_from_coherent -EXPORT_SYMBOL vmlinux 0xeba75fd8 devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0xebac61bd tcp_init_cgroup -EXPORT_SYMBOL vmlinux 0xebc6cf38 __devm_release_region -EXPORT_SYMBOL vmlinux 0xebd18deb sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0xebd68dc7 pci_remove_bus -EXPORT_SYMBOL vmlinux 0xebda1b9c wait_for_key_construction -EXPORT_SYMBOL vmlinux 0xebecacfc md_update_sb -EXPORT_SYMBOL vmlinux 0xebfdcbdf system_serial_high -EXPORT_SYMBOL vmlinux 0xec009505 poll_initwait -EXPORT_SYMBOL vmlinux 0xec10b80e genphy_update_link -EXPORT_SYMBOL vmlinux 0xec1aa6ef memzero_explicit -EXPORT_SYMBOL vmlinux 0xec230b6d blk_queue_unprep_rq -EXPORT_SYMBOL vmlinux 0xec40a4df vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0xec413cbe __page_symlink -EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec4f1e26 posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0xec55d761 dmam_declare_coherent_memory -EXPORT_SYMBOL vmlinux 0xec686535 mmc_remove_host -EXPORT_SYMBOL vmlinux 0xec6c6dc6 alloc_disk_node -EXPORT_SYMBOL vmlinux 0xec787917 file_remove_privs -EXPORT_SYMBOL vmlinux 0xec83ad9d free_cgroup_ns -EXPORT_SYMBOL vmlinux 0xec8aa373 __inet_hash -EXPORT_SYMBOL vmlinux 0xecb6a422 prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0xecbcb8bb radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0xecc94933 tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0xecce9bcf netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecf8a3b4 __raw_writesl -EXPORT_SYMBOL vmlinux 0xecf98c50 ip_getsockopt -EXPORT_SYMBOL vmlinux 0xecfe5c22 vfs_writef -EXPORT_SYMBOL vmlinux 0xed1240bf filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0xed149bf2 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0xed269465 __free_pages -EXPORT_SYMBOL vmlinux 0xed2dedc0 udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0xed4df457 ata_dev_printk -EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xed62917d ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0xed66a6bb add_disk -EXPORT_SYMBOL vmlinux 0xed6f0f78 ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0xed81f4f2 inetdev_by_index -EXPORT_SYMBOL vmlinux 0xed86d132 netdev_boot_setup_check -EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic -EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xeda97396 from_kuid -EXPORT_SYMBOL vmlinux 0xedb0ed71 kthread_bind -EXPORT_SYMBOL vmlinux 0xedb159a2 omap_dss_get_overlay_manager -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedc7f4ec dq_data_lock -EXPORT_SYMBOL vmlinux 0xedd9106d __ashrdi3 -EXPORT_SYMBOL vmlinux 0xeddd7522 generic_delete_inode -EXPORT_SYMBOL vmlinux 0xede2265b alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0xede67d9e phy_get_eee_err -EXPORT_SYMBOL vmlinux 0xedf0037d jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long -EXPORT_SYMBOL vmlinux 0xedfa0539 input_set_abs_params -EXPORT_SYMBOL vmlinux 0xee114ffb pagevec_lookup -EXPORT_SYMBOL vmlinux 0xee115063 of_get_min_tck -EXPORT_SYMBOL vmlinux 0xee250b54 simple_nosetlease -EXPORT_SYMBOL vmlinux 0xee2bc2d0 omapdss_is_initialized -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee3496c3 dma_pool_alloc -EXPORT_SYMBOL vmlinux 0xee3d08a5 ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0xee5dae7b mmc_request_done -EXPORT_SYMBOL vmlinux 0xee651f37 call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0xee6bbb40 sock_create_lite -EXPORT_SYMBOL vmlinux 0xee70b9c8 proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0xee715ef8 lg_global_unlock -EXPORT_SYMBOL vmlinux 0xee7aefb9 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0xee830a9a nvm_free_rqd_ppalist -EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee9b708f crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0xee9c3647 tcp_hashinfo -EXPORT_SYMBOL vmlinux 0xee9ec3b1 init_net -EXPORT_SYMBOL vmlinux 0xeea0cdf6 netif_device_detach -EXPORT_SYMBOL vmlinux 0xeea74485 generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeed3635b proc_dostring -EXPORT_SYMBOL vmlinux 0xeedd0ccb kern_path_create -EXPORT_SYMBOL vmlinux 0xeedf5b51 ptp_clock_event -EXPORT_SYMBOL vmlinux 0xeef161aa groups_free -EXPORT_SYMBOL vmlinux 0xeef79a24 __blk_end_request -EXPORT_SYMBOL vmlinux 0xeef80138 noop_qdisc -EXPORT_SYMBOL vmlinux 0xeefad4b5 snd_dma_alloc_pages_fallback -EXPORT_SYMBOL vmlinux 0xef0f3eb3 __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0xef2fdc4f __percpu_counter_init -EXPORT_SYMBOL vmlinux 0xef370f97 shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0xef3973b3 sock_i_uid -EXPORT_SYMBOL vmlinux 0xef3b046d read_code -EXPORT_SYMBOL vmlinux 0xef465d5e of_get_address -EXPORT_SYMBOL vmlinux 0xef4fb948 bio_chain -EXPORT_SYMBOL vmlinux 0xef5dfc6c bdput -EXPORT_SYMBOL vmlinux 0xef7c0ede page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0xef7f9f15 scmd_printk -EXPORT_SYMBOL vmlinux 0xef859391 onfi_async_timing_mode_to_sdr_timings -EXPORT_SYMBOL vmlinux 0xef88cc7c drop_super -EXPORT_SYMBOL vmlinux 0xefa71e3a page_follow_link_light -EXPORT_SYMBOL vmlinux 0xefbdd446 set_create_files_as -EXPORT_SYMBOL vmlinux 0xefcf3143 wait_for_completion_io -EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xefd6cf06 __aeabi_unwind_cpp_pr0 -EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0xefe9f666 vme_irq_request -EXPORT_SYMBOL vmlinux 0xefec312f omap_get_dma_active_status -EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf00714c4 mmc_fixup_device -EXPORT_SYMBOL vmlinux 0xf047059f lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xf04b9980 tty_write_room -EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0xf062d066 bdget_disk -EXPORT_SYMBOL vmlinux 0xf06c303c omap_video_timings_to_videomode -EXPORT_SYMBOL vmlinux 0xf07c30ee vga_client_register -EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag -EXPORT_SYMBOL vmlinux 0xf0985645 udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0xf0988917 ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int -EXPORT_SYMBOL vmlinux 0xf0a8b0ac tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0xf0abc223 kmap_high -EXPORT_SYMBOL vmlinux 0xf0c3f822 inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0xf0c4b3de twl6040_set_pll -EXPORT_SYMBOL vmlinux 0xf0c86ede dm_put_device -EXPORT_SYMBOL vmlinux 0xf0eab179 get_thermal_instance -EXPORT_SYMBOL vmlinux 0xf0ed2ef4 __raw_writesb -EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort -EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info -EXPORT_SYMBOL vmlinux 0xf12318b5 blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0xf12f4da3 of_get_next_available_child -EXPORT_SYMBOL vmlinux 0xf1403b40 dss_mgr_start_update -EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init -EXPORT_SYMBOL vmlinux 0xf14a3e36 skb_store_bits -EXPORT_SYMBOL vmlinux 0xf15433bf blk_queue_split -EXPORT_SYMBOL vmlinux 0xf17e5a72 kfree_skb_partial -EXPORT_SYMBOL vmlinux 0xf192ed79 __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0xf193fbd2 tty_port_open -EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps -EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf19e9355 cpu_online_mask -EXPORT_SYMBOL vmlinux 0xf1a103b0 init_task -EXPORT_SYMBOL vmlinux 0xf1a2387e freezing_slow_path -EXPORT_SYMBOL vmlinux 0xf1a5b0fb bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xf1aa263e sg_miter_stop -EXPORT_SYMBOL vmlinux 0xf1b04363 netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0xf1d2de7e __f_setown -EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1dc30c4 phy_drivers_register -EXPORT_SYMBOL vmlinux 0xf1deabf2 div64_u64 -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf1ea6f1c __bswapsi2 -EXPORT_SYMBOL vmlinux 0xf1f26427 gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0xf20ae132 shdma_chan_remove -EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq -EXPORT_SYMBOL vmlinux 0xf2186468 mmc_alloc_host -EXPORT_SYMBOL vmlinux 0xf22ef2d6 blk_integrity_register -EXPORT_SYMBOL vmlinux 0xf22efb86 seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0xf233ca96 nvm_generic_to_addr_mode -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf244bac9 nvm_erase_ppa -EXPORT_SYMBOL vmlinux 0xf24fadfc d_invalidate -EXPORT_SYMBOL vmlinux 0xf285486b ppp_unit_number -EXPORT_SYMBOL vmlinux 0xf287c1ce of_clk_get_by_name -EXPORT_SYMBOL vmlinux 0xf28e7ff2 nvm_register -EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0xf2a08962 swiotlb_map_sg_attrs -EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered -EXPORT_SYMBOL vmlinux 0xf2b4f31f blk_run_queue -EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2ce86cd inet_recvmsg -EXPORT_SYMBOL vmlinux 0xf3044a9c of_device_is_compatible -EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform -EXPORT_SYMBOL vmlinux 0xf3343409 snd_timer_pause -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf361e054 km_policy_expired -EXPORT_SYMBOL vmlinux 0xf36741b1 sock_alloc_file -EXPORT_SYMBOL vmlinux 0xf36d63fd iterate_fd -EXPORT_SYMBOL vmlinux 0xf36f4519 inet_dgram_connect -EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf3937772 con_copy_unimap -EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0xf3bf2d1e tegra_fuse_readl -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3ea5f8d of_graph_get_port_by_id -EXPORT_SYMBOL vmlinux 0xf40019c0 tegra114_clock_tune_cpu_trimmers_init -EXPORT_SYMBOL vmlinux 0xf4039cfc led_blink_set_oneshot -EXPORT_SYMBOL vmlinux 0xf409f4ed nf_register_hook -EXPORT_SYMBOL vmlinux 0xf40b2297 __crypto_memneq -EXPORT_SYMBOL vmlinux 0xf453d27c cdrom_open -EXPORT_SYMBOL vmlinux 0xf463e05e of_node_get -EXPORT_SYMBOL vmlinux 0xf473ffaf down -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf477cc41 netdev_err -EXPORT_SYMBOL vmlinux 0xf49c0bbd zpool_register_driver -EXPORT_SYMBOL vmlinux 0xf4a7d793 generic_removexattr -EXPORT_SYMBOL vmlinux 0xf4a7fc6d omapdss_compat_init -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4d33e08 vc_resize -EXPORT_SYMBOL vmlinux 0xf4da472c rtnl_notify -EXPORT_SYMBOL vmlinux 0xf4dc8ace pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf5027aeb __scsi_alloc_queue -EXPORT_SYMBOL vmlinux 0xf50917fa snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL vmlinux 0xf50fe23d sock_kmalloc -EXPORT_SYMBOL vmlinux 0xf514050c iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0xf51d80e9 sync_filesystem -EXPORT_SYMBOL vmlinux 0xf52c4831 snd_timer_global_register -EXPORT_SYMBOL vmlinux 0xf53ca38f gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf53e4788 scsi_ioctl_reset -EXPORT_SYMBOL vmlinux 0xf54c51a2 dma_pool_free -EXPORT_SYMBOL vmlinux 0xf564412a __aeabi_ulcmp -EXPORT_SYMBOL vmlinux 0xf5670e15 scsi_cmd_get_serial -EXPORT_SYMBOL vmlinux 0xf56c798e tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0xf58adcd4 from_kgid_munged -EXPORT_SYMBOL vmlinux 0xf58e8f17 neigh_xmit -EXPORT_SYMBOL vmlinux 0xf5928d69 __getblk_gfp -EXPORT_SYMBOL vmlinux 0xf5bebf8a mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xf5e3f265 file_open_root -EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command -EXPORT_SYMBOL vmlinux 0xf62ced06 serio_rescan -EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl -EXPORT_SYMBOL vmlinux 0xf63b0733 vme_master_mmap -EXPORT_SYMBOL vmlinux 0xf65a0e90 __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf6851d5f register_sysctl_paths -EXPORT_SYMBOL vmlinux 0xf692c5c2 mpage_writepage -EXPORT_SYMBOL vmlinux 0xf69e5de2 __insert_inode_hash -EXPORT_SYMBOL vmlinux 0xf6a37965 d_prune_aliases -EXPORT_SYMBOL vmlinux 0xf6ab44f5 dev_addr_del -EXPORT_SYMBOL vmlinux 0xf6b0214f of_parse_phandle_with_fixed_args -EXPORT_SYMBOL vmlinux 0xf6b5c93b mmc_cleanup_queue -EXPORT_SYMBOL vmlinux 0xf6b847ae phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table -EXPORT_SYMBOL vmlinux 0xf6cebccd key_reject_and_link -EXPORT_SYMBOL vmlinux 0xf6d5e603 blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6f3cef6 omap_vrfb_setup -EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf70bef57 __bio_clone_fast -EXPORT_SYMBOL vmlinux 0xf7163ec9 __raw_readsb -EXPORT_SYMBOL vmlinux 0xf71bb6eb find_inode_nowait -EXPORT_SYMBOL vmlinux 0xf72ad610 ps2_end_command -EXPORT_SYMBOL vmlinux 0xf73a276d pci_pme_active -EXPORT_SYMBOL vmlinux 0xf7477502 swiotlb_dma_supported -EXPORT_SYMBOL vmlinux 0xf7584a9c find_font -EXPORT_SYMBOL vmlinux 0xf76c531d iov_iter_alignment -EXPORT_SYMBOL vmlinux 0xf777f1ae build_skb -EXPORT_SYMBOL vmlinux 0xf77f5cd9 mmc_put_card -EXPORT_SYMBOL vmlinux 0xf7802486 __aeabi_uidivmod -EXPORT_SYMBOL vmlinux 0xf7921e98 input_unregister_handler -EXPORT_SYMBOL vmlinux 0xf798da4f key_invalidate -EXPORT_SYMBOL vmlinux 0xf7a922b4 iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0xf7a9ef9b skb_checksum_help -EXPORT_SYMBOL vmlinux 0xf7aaeddc ida_init -EXPORT_SYMBOL vmlinux 0xf7adbb16 mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0xf7ba98e0 __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0xf7c8a599 blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0xf7dd55ed phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0xf7e1cad0 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0xf7ff87f2 generic_getxattr -EXPORT_SYMBOL vmlinux 0xf7ff9db4 pci_add_new_bus -EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf81f6ab4 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0xf823da10 vme_lm_request -EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area -EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf83d9b27 page_address -EXPORT_SYMBOL vmlinux 0xf853bbca omap_vrfb_map_angle -EXPORT_SYMBOL vmlinux 0xf8591203 serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0xf872d3df scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0xf87de133 tc6393xb_lcd_mode -EXPORT_SYMBOL vmlinux 0xf885ad67 invalidate_bdev -EXPORT_SYMBOL vmlinux 0xf8990e2a netpoll_cleanup -EXPORT_SYMBOL vmlinux 0xf89bc12f vm_map_ram -EXPORT_SYMBOL vmlinux 0xf8aa55bc nand_calculate_ecc -EXPORT_SYMBOL vmlinux 0xf8ade395 cdev_del -EXPORT_SYMBOL vmlinux 0xf8b35b1c snd_card_free_when_closed -EXPORT_SYMBOL vmlinux 0xf8de718d tty_mutex -EXPORT_SYMBOL vmlinux 0xf8e0139c dss_mgr_connect -EXPORT_SYMBOL vmlinux 0xf8e8d0db tcp_sendmsg -EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xf9089426 fget -EXPORT_SYMBOL vmlinux 0xf909a9e4 pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0xf933aa04 __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run -EXPORT_SYMBOL vmlinux 0xf9427374 dispc_request_irq -EXPORT_SYMBOL vmlinux 0xf98e522a snd_jack_new -EXPORT_SYMBOL vmlinux 0xf993fd2d register_quota_format -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9c32f2d nf_log_unregister -EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf -EXPORT_SYMBOL vmlinux 0xf9e8f623 param_get_charp -EXPORT_SYMBOL vmlinux 0xf9f5f337 padata_free -EXPORT_SYMBOL vmlinux 0xfa0d174c abx500_remove_ops -EXPORT_SYMBOL vmlinux 0xfa21d488 __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0xfa2a765f xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xfa4b68fe of_find_node_by_type -EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa613b20 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0xfa6b6df4 nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0xfa83800d jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0xfac44d7f security_path_rmdir -EXPORT_SYMBOL vmlinux 0xfac68eba arm_elf_read_implies_exec -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfac9a196 skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0xfacd2e14 pgprot_user -EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr -EXPORT_SYMBOL vmlinux 0xfaee9a4a dput -EXPORT_SYMBOL vmlinux 0xfaf2bd0b param_get_long -EXPORT_SYMBOL vmlinux 0xfb025bd9 unlock_page -EXPORT_SYMBOL vmlinux 0xfb04ee27 register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xfb4fddd1 mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb7d9c45 __udivsi3 -EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 -EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock -EXPORT_SYMBOL vmlinux 0xfbb3a4ef i2c_add_adapter -EXPORT_SYMBOL vmlinux 0xfbbc66d8 from_kuid_munged -EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbd87199 drop_nlink -EXPORT_SYMBOL vmlinux 0xfbea3721 kfree_skb_list -EXPORT_SYMBOL vmlinux 0xfbecd554 d_delete -EXPORT_SYMBOL vmlinux 0xfbff6ef0 audit_log -EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem -EXPORT_SYMBOL vmlinux 0xfc10ee40 mdiobus_write -EXPORT_SYMBOL vmlinux 0xfc17b186 kernel_sock_ioctl -EXPORT_SYMBOL vmlinux 0xfc1e647b tcf_hash_check -EXPORT_SYMBOL vmlinux 0xfc2af4a3 cdev_alloc -EXPORT_SYMBOL vmlinux 0xfc3908f5 fence_default_wait -EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap -EXPORT_SYMBOL vmlinux 0xfc649e64 amba_device_unregister -EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0xfc74cf7a backlight_force_update -EXPORT_SYMBOL vmlinux 0xfc771a58 blk_run_queue_async -EXPORT_SYMBOL vmlinux 0xfc8f2283 mb_cache_entry_insert -EXPORT_SYMBOL vmlinux 0xfcb6b1db arm_dma_ops -EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0xfcd353d9 fddi_type_trans -EXPORT_SYMBOL vmlinux 0xfcd72f07 pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0xfcda77e3 snd_ctl_unregister_ioctl -EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcf8798b mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0xfd00a98c xfrm6_rcv -EXPORT_SYMBOL vmlinux 0xfd038cbf sk_wait_data -EXPORT_SYMBOL vmlinux 0xfd305341 walk_stackframe -EXPORT_SYMBOL vmlinux 0xfd33b5fa cmdline_parts_find -EXPORT_SYMBOL vmlinux 0xfd5683b9 wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0xfd71be24 pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0xfd8c5afc release_fiq -EXPORT_SYMBOL vmlinux 0xfd8e1a24 vlan_uses_dev -EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xfd9e64e3 kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0xfdab6de3 unregister_sound_midi -EXPORT_SYMBOL vmlinux 0xfdc3e4fe devm_memunmap -EXPORT_SYMBOL vmlinux 0xfdcd3f99 dquot_quota_on -EXPORT_SYMBOL vmlinux 0xfdd59c47 skb_queue_purge -EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe10ca0f scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0xfe2569db inet6_ioctl -EXPORT_SYMBOL vmlinux 0xfe350191 mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0xfe40bf95 dss_feat_get_num_ovls -EXPORT_SYMBOL vmlinux 0xfe55568b scsi_report_opcode -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe5ea631 input_set_capability -EXPORT_SYMBOL vmlinux 0xfe628e63 tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0xfe6a6bdf page_cache_next_hole -EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0xfe9f4492 dquot_drop -EXPORT_SYMBOL vmlinux 0xfea3b6e6 __vfs_read -EXPORT_SYMBOL vmlinux 0xfebb6c83 __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0xfeca7590 radix_tree_range_tag_if_tagged -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfee18a22 nobh_writepage -EXPORT_SYMBOL vmlinux 0xfeea9c9d nand_scan_ident -EXPORT_SYMBOL vmlinux 0xff1714ff shdma_chan_probe -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff266941 vme_unregister_driver -EXPORT_SYMBOL vmlinux 0xff2b0b34 sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0xff335447 dev_disable_lro -EXPORT_SYMBOL vmlinux 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL vmlinux 0xff65c414 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0xff67b37f __lshrdi3 -EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff6e3a9b sock_create_kern -EXPORT_SYMBOL vmlinux 0xff7832ba dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0xff8cbb1f idr_destroy -EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy -EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0xffb1c082 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0xffb94ef0 _test_and_change_bit -EXPORT_SYMBOL vmlinux 0xffc2e05e buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0xffcd6807 dup_iter -EXPORT_SYMBOL vmlinux 0xffd2cf99 omap_dss_get_num_overlay_managers -EXPORT_SYMBOL vmlinux 0xffd59535 skb_queue_head -EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function -EXPORT_SYMBOL vmlinux 0xffd93122 insert_inode_locked -EXPORT_SYMBOL vmlinux 0xffdb82bc sg_free_table -EXPORT_SYMBOL vmlinux 0xffdb96d5 iget5_locked -EXPORT_SYMBOL vmlinux 0xffdd76e3 dump_align -EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0xc1cfa7ee sha1_update_arm -EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0xc6f13ac4 sha1_finup_arm -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x0c9c9740 __ablk_encrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x0d8afbe9 ablk_decrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x1c92579f ablk_encrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x3d182de4 ablk_init -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x591878ab ablk_set_key -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x7e4f4df6 ablk_exit -EXPORT_SYMBOL_GPL crypto/ablk_helper 0xc384818d ablk_init_common -EXPORT_SYMBOL_GPL crypto/af_alg 0x24a742cf af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x2b360478 af_alg_complete -EXPORT_SYMBOL_GPL crypto/af_alg 0x6bfaa20e af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0x8269c294 af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x9e54f579 af_alg_cmsg_send -EXPORT_SYMBOL_GPL crypto/af_alg 0xa7e34e25 af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xb6d6ea44 af_alg_link_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xc1a1ca4d af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0xc2a70aa3 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0xd954ef95 af_alg_wait_for_completion -EXPORT_SYMBOL_GPL crypto/af_alg 0xf9ca278f af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x5cc91ad4 async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x7d14fc56 async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x9596f5a0 async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x5e8aa129 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xd84024aa async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x1de000e1 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x6d116dab async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x7a733777 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xa427d437 async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x3e296d39 async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xa22b5eb1 async_xor_val -EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0xa0474f2a blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x702c6e63 cast5_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0xb76f5ff3 cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 -EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 -EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 -EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0xa5bff6e1 crypto_chacha20_setkey -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0xc6f43d57 crypto_chacha20_crypt -EXPORT_SYMBOL_GPL crypto/cryptd 0x597c7e9a cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x86b2fc65 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x87d0a238 cryptd_alloc_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x89b900ca cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x927821ec cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x9383ddad cryptd_free_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x9baa911b cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0x9e5d9191 cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xc0384aed cryptd_ablkcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xf9681fc6 cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey -EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey -EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table -EXPORT_SYMBOL_GPL crypto/lrw 0xb583baac lrw_crypt -EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table -EXPORT_SYMBOL_GPL crypto/mcryptd 0x14bdd4d3 mcryptd_flusher -EXPORT_SYMBOL_GPL crypto/mcryptd 0x15989b3f shash_ahash_mcryptd_finup -EXPORT_SYMBOL_GPL crypto/mcryptd 0x1fdd1357 shash_ahash_mcryptd_final -EXPORT_SYMBOL_GPL crypto/mcryptd 0x2aa9a6e9 mcryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/mcryptd 0x5c7a182d shash_ahash_mcryptd_update -EXPORT_SYMBOL_GPL crypto/mcryptd 0x68db8e53 mcryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0xa0d5699e mcryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0xf6380a2f shash_ahash_mcryptd_digest -EXPORT_SYMBOL_GPL crypto/mcryptd 0xf83135bc mcryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3577fa14 crypto_poly1305_init -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x7c023228 crypto_poly1305_final -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xc40b307b crypto_poly1305_setkey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xe87d8afc crypto_poly1305_update -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x9cd1d56f serpent_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0x7be620c8 twofish_setkey -EXPORT_SYMBOL_GPL crypto/xts 0x58ecb667 xts_crypt -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xf5eb74af __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x2f883ed3 sis_info133_for_sata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x18ae83c3 __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x2ffb4354 __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x3aefac82 __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x770be0cd __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x01e0b915 bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x10e2aed9 bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1ce68afa __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2aa17326 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3733a5aa bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x38c07a24 bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x49b00825 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5e29fb3c bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7ae33dc4 bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x89e187a3 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9241d2f2 bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x99b18106 bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9ae977f1 bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9ec6ba46 bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa00e1281 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa7bf8f60 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaaeddb17 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb5b0777a bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc099b778 bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd71a1076 bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe3016b81 bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf2aaad73 bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf651a71f bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfcd18217 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x2accd517 btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x4223a776 btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x48614957 btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x9864a370 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd1c7a313 btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd746be29 btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0966ed66 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1fd9d202 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4af90561 btintel_set_event_mask -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x51ab0a33 btintel_secure_send -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6ff2063b btintel_hw_error -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x807807f4 btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x80ba7587 btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x86950fc3 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa0c962ce btintel_set_diag_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb94de350 btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe12c9902 btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x074ce9f1 btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x09f36a7d btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0ea4e7a2 btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x510c2276 btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5c359bd8 btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x63cd8a8d btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7b62623f btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8cbfc4d6 btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9af3f38e btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe0d6b4a0 btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xead1f8d7 btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xb12ba7b9 qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xead0aeff qca_uart_setup_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x40c505fb btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x83fcd9a3 h4_recv_buf -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0465aa28 qcom_cc_probe -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1ad28e9c clk_rcg_bypass_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1f4159b0 clk_byte2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3b0b58e5 clk_regmap_mux_closest_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4e487b60 qcom_find_src_index -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x53f95e39 clk_pll_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x612214bd clk_edp_pixel_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x649debc2 qcom_cc_really_probe -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x669bd1fd qcom_find_freq -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x67ae803a clk_rcg_pixel_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x709d9cf0 clk_pll_configure_sr -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x73964fc2 clk_dyn_rcg_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x77c457fa qcom_reset_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8515ef29 clk_is_enabled_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8c4dbdbe clk_branch_simple_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8d53d96e clk_rcg_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x90b53166 clk_pll_configure_sr_hpm_lp -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x948a106f clk_enable_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x999e1e71 clk_branch2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x99d2c773 clk_rcg2_shared_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9e2e91a1 clk_rcg_bypass2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9f6dd9ca clk_disable_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaace56b1 clk_rcg_esc_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc7994798 clk_branch_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcb0c5248 clk_byte_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcd0a83c6 clk_rcg2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd25fd154 clk_rcg_lcc_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd2ce2c2c devm_clk_register_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd9217c67 qcom_cc_map -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe703bcad clk_pll_vote_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf1f136dc clk_pixel_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf69c2f55 clk_pll_sr2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf93e315f clk_regmap_div_ops -EXPORT_SYMBOL_GPL drivers/cpufreq/arm_big_little 0x5e32e556 bL_cpufreq_unregister -EXPORT_SYMBOL_GPL drivers/cpufreq/arm_big_little 0xf750efd2 bL_cpufreq_register -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xa3bb64ee dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xafa47062 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc1a2e907 dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xd82453ec dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xfb8c963d dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x189d5922 hsu_dma_irq -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x5b838ea0 hsu_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xe4910e6d hsu_dma_remove -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0dd96f25 edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x148504dd edac_device_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x22c90d67 edac_device_handle_ue -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2d1d72f2 edac_mc_del_mc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x36b400b8 edac_mc_free -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x38c00bb7 edac_mc_alloc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x398ee283 edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x43c7bcaf edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x638c998c find_mci_by_dev -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7d6e5de5 edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x85117975 edac_pci_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x888bede7 edac_device_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x93e0e40c edac_pci_handle_pe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x93e62f57 edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xaf8a3439 edac_pci_handle_npe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb30e7b4b edac_device_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc86f8aae edac_device_handle_ce -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xccadc2aa edac_pci_reset_delay_period -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xdd43c1d6 edac_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xdf983894 edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe2b40ddd edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe82d66ef edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe9e2bbd8 edac_pci_add_device -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release -EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0xe342fbf5 get_scpi_ops -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x25037972 fpga_mgr_firmware_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x278f4e36 of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2d529325 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x571bd604 fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc285ae13 fpga_mgr_buf_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd243e23c fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x17b0ea78 __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xb56b32bf __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw_hdmi 0x5cc1a32c dw_hdmi_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw_hdmi 0x6f407d05 dw_hdmi_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw_hdmi 0x8dcd6f43 dw_hdmi_set_sample_rate -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw_hdmi 0xce27012a dw_hdmi_audio_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw_hdmi 0xd8fe547b dw_hdmi_audio_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0c272162 drm_gem_cma_prime_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2231d0dd drm_gem_cma_dumb_create_internal -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x33cbbebc drm_gem_cma_prime_vmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3e643cfe drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5f3cd996 drm_gem_cma_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x703a87d0 drm_gem_cma_prime_vunmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x71fc2957 drm_gem_cma_prime_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x84716dea drm_gem_cma_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x970dfad0 drm_gem_cma_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9f76e893 drm_gem_cma_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa78be962 drm_gem_cma_describe -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb2a45eeb of_get_drm_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbbac77de drm_gem_cma_dumb_map_offset -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbc2251aa drm_gem_cma_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdd0fc76b drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdd76f1e8 drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdf006213 drm_gem_cma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe111ca9a drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe2ed7bb9 drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1148b623 drm_fbdev_cma_fini -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x34456159 drm_fb_cma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x9cfd72f8 drm_fbdev_cma_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb2c912af drm_fbdev_cma_hotplug_event -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xbf870624 drm_fb_cma_debugfs_show -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xcc337fd5 drm_fbdev_cma_restore_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xeb739fe8 drm_fb_cma_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x0fbdbc7b imx_drm_encoder_destroy -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x1cfe024a imx_drm_crtc_vblank_get -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x3306a689 imx_drm_add_crtc -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x37707c0a imx_drm_crtc_id -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x3ea022e9 imx_drm_connector_destroy -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x419b08de imx_drm_handle_vblank -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x5f056ff0 imx_drm_crtc_vblank_put -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xaf452fe4 imx_drm_set_bus_format -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xbf396f53 imx_drm_encoder_parse_of -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xc61d6ca5 imx_drm_set_bus_format_pins -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xd652b5a4 imx_drm_remove_crtc -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xd7e51a83 imx_drm_encoder_get_mux_id -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchip_drm_vop 0xcbb38e36 rockchip_drm_crtc_mode_config -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x0abf400e rockchip_drm_dma_detach_device -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x215f824b rockchip_drm_encoder_get_mux_id -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x3fe81da6 rockchip_drm_dma_attach_device -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x6db409de rockchip_unregister_crtc_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x9e7bce1f rockchip_register_crtc_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xc0296bc6 rockchip_fb_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x0b616bb0 ttm_dma_unpopulate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6fb55a55 ttm_dma_page_alloc_debugfs -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xa704a1a9 ttm_dma_populate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0178f0f1 ipu_cpmem_interlaced_scan -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x04f7075a ipu_csi_set_mipi_datatype -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0728116a ipu_csi_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x08011ba4 ipu_srm_dp_sync_update -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x09062fda ipu_cpmem_set_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0e42bd95 ipu_csi_set_dest -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0eefdccf ipu_module_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x118160e1 ipu_ic_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x11d8f100 ipu_stride_to_bytes -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x13952dfe ipu_dmfc_enable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x15ec2ba5 ipu_di_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x17ac81c7 ipu_idmac_set_double_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x199bd5c8 ipu_dp_disable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1aef5216 ipu_cpmem_set_yuv_interleaved -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1b3b9d17 ipu_idmac_lock_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1ba497eb ipu_pixelformat_to_colorspace -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1e3a50b7 ipu_idmac_enable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1e913d9f ipu_csi_get_window -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2348d668 ipu_cpmem_set_rotation -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2424c9a6 ipu_csi_is_interlaced -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2d52be66 ipu_idmac_wait_busy -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2f92d651 ipu_ic_task_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2f9751b4 ipu_degrees_to_rot_mode -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x30b6999c ipu_rot_mode_to_degrees -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x31309ef8 ipu_module_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3166aec7 ipu_dmfc_disable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x339981ab ipu_idmac_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x36c3c3d9 ipu_dp_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3afbb44e ipu_smfc_set_watermark -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3e86ea72 ipu_di_get_num -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x43124552 ipu_ic_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x43e14ec9 ipu_idmac_get_current_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4595556d ipu_cpmem_set_block_mode -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x46105b72 ipu_idmac_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x47e2db87 ipu_cpmem_set_high_priority -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4917f47a ipu_ic_dump -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4c179b49 ipu_dp_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x51475e87 ipu_dmfc_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x527f3b94 ipu_smfc_set_burstsize -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x53de277c ipu_di_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5bbaf995 ipu_dc_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5e4ae2f3 ipu_di_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x60bdf2ec ipu_csi_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x623722e2 ipu_ic_task_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x633d6180 ipu_dc_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x69115969 ipu_idmac_channel_irq -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7068e939 ipu_dc_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7069ac46 ipu_cpmem_set_resolution -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7121bd07 ipu_di_init_sync_panel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x76302d14 ipu_csi_set_skip_smfc -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x78dd20a9 ipu_idmac_enable_watermark -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x80cf657d ipu_dmfc_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x886c35aa ipu_smfc_map_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9058e289 ipu_smfc_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x91536b15 ipu_cpmem_set_stride -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x929b053e ipu_cpmem_set_burstsize -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x94b41ee0 ipu_smfc_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x951a09d5 ipu_csi_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x99a0ef07 ipu_drm_fourcc_to_colorspace -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9a4b5a67 ipu_map_irq -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9c335d85 ipu_pixelformat_is_planar -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9c498d1d ipu_dump -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9e611269 ipu_cpmem_set_yuv_planar_full -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9f38e177 ipu_dp_enable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa1f40d68 ipu_cpmem_set_axi_id -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa4b0cabd ipu_dc_disable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa579616b ipu_di_adjust_videomode -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa60b144b ipu_csi_set_window -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa6acfb76 ipu_cpmem_dump -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa96882d8 ipu_ic_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xab96c5d4 ipu_idmac_disable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb228bf1e ipu_dp_set_global_alpha -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb42c73ed ipu_cpmem_set_image -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb54f60e5 ipu_set_csi_src_mux -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb94ca95a ipu_dmfc_init_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbd0533ff ipu_cpmem_set_format_rgb -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc3c2cdb0 ipu_smfc_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc4027028 ipu_idmac_buffer_is_ready -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc6675aa9 ipu_csi_dump -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc677177d ipu_smfc_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc817263f ipu_cpmem_set_yuv_planar -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc848c5d7 ipu_dmfc_free_bandwidth -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc88d89a1 ipu_mbus_code_to_colorspace -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc97e7a0f ipu_di_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcb7bbb7a ipu_csi_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcd7c6998 ipu_ic_task_init -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd0313497 ipu_dc_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd064a453 ipu_ic_task_graphics_init -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd38991f4 ipu_dp_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd429473d ipu_set_ic_src_mux -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd5055dd9 ipu_dmfc_alloc_bandwidth -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd90e8f64 ipu_wait_interrupt -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xda5ce4ea ipu_idmac_channel_busy -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xda74f26b ipu_idmac_select_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe300a959 ipu_dp_setup_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe36106e2 ipu_cpmem_zero -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe3b86336 ipu_csi_init_interface -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe3eb34f7 ipu_cpmem_set_fmt -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe53df01c ipu_cpmem_set_format_passthrough -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe6243c52 ipu_dc_enable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe757f242 ipu_ic_task_idma_init -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf1440dc1 ipu_ic_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf28df19a ipu_idmac_clear_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf541e070 ipu_dp_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf69d6cb6 ipu_csi_set_test_generator -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf7d99d69 ipu_dc_init_sync -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf9ed222e ipu_dp_set_window_pos -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0240849b hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0x025857b3 hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x02c2c52d hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x068b5c3b hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0c85b00a hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0x142bf6a7 hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1c7e027d hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1d165795 hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1e6b17df hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2f6425b3 hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x31192de7 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0x380a77cd hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3a6b2cd8 hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3c7998d2 hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x42f3335d hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5a045aad hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5c539dd3 hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5fa514ee hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6b57f9e1 hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x84c7ba5e hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9287ca32 hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9a8acdee __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9b90f440 hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa6a796f1 hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb1bdb444 hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb4e821be hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb65f7321 hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb75cca15 hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbacf6039 __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbd04ee8c hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcf34b0b3 hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd17389f5 hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe42df6d9 hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf26c0cc8 hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf87b9a79 hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf9e44732 hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x5d8a3c89 roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x2d442f4b roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x30ff8f42 roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x33d5747c roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x65232a34 roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd4621974 roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xdecb082b roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x060cdda8 sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x114fcf18 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x39059e37 sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x3bf04555 sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x49b93194 hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x5de56b4f sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9d0dedf2 sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xcb4b87ef sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xeda241c4 sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x7fe11562 hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x426a9ee2 ssip_slave_get_master -EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x4ce34706 ssip_slave_running -EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x9025b0fb ssip_reset_event -EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x936e02e1 ssip_slave_stop_tx -EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0xb7729872 ssip_slave_start_tx -EXPORT_SYMBOL_GPL drivers/hsi/controllers/omap_ssi 0x24393af5 ssi_waketest -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x014df259 hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x06355f19 hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x088da6de hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x17c591c0 hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1bed0bd1 hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x34e6e647 hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3ba84eef hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4ecba994 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x64411481 hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7acee6e0 hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8b70a700 hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8f305b4a hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9ac8f948 hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc45d3e55 hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdcd977f8 hsi_add_clients_from_dt -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe18766ab hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf071dc68 hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf65eb2ab hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xf62058a5 adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xfd5e8c31 adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xfe685e46 adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0438d60e pmbus_get_driver_info -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x192a76a9 pmbus_check_byte_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2813fc9f pmbus_read_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3c4b580f pmbus_check_word_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x41dab528 pmbus_write_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x428f32a3 pmbus_write_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x5044628d pmbus_clear_cache -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x73bf527e pmbus_update_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x795d102e pmbus_clear_faults -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x90df3ff2 pmbus_read_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x9d433adb pmbus_set_page -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xab619335 pmbus_write_byte -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xed415563 pmbus_do_remove -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf00f8e82 pmbus_do_probe -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf29ad0a8 pmbus_regulator_ops -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x04fbbfb5 hwspin_lock_unregister -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x09318723 hwspin_lock_register -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x58bad34d __hwspin_trylock -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x83e0876d hwspin_lock_get_id -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x970b7017 hwspin_lock_request -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x99297467 hwspin_lock_free -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xaf425e7c __hwspin_unlock -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xb5263293 hwspin_lock_request_specific -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xd5903a36 of_hwspin_lock_get_id -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xf9b39c3e __hwspin_lock_timeout -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0a2f27f8 intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x1f47a9d8 intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x38c60a2a intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5c5bf1fe intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5fcb3f00 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa38efcdf intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe2e8448d intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x1359894a stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2513a37d stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x375c426e stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x6a0d77e9 stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x88001000 stm_register_device -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x74cfbd44 i2c_dw_probe -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x92f48c3d i2c_dw_disable_int -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xac39e56e i2c_dw_init -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xd3cf5435 i2c_dw_read_comp_param -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xd50db6e9 i2c_dw_disable -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x1ac2872a i2c_add_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xde7b9b03 i2c_del_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x7daeb044 i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xbf35ab7d i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x0b2e0460 bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x84781519 bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xcad67bbb bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x10a991b3 ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x28bbd88b ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x5f01645a ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x699dbc24 ad_sd_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x70a62129 ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x9d54a40f ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xb8b6da69 ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xc412c0f9 ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xdcb124bb ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a5b11d5 iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x8c635970 iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x11b100ee ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x8cd32a51 ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x6e1f3288 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xa6b1eca9 bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xa86d3f6c bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x161a4fa8 adis_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x548ff8ef adis_probe_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x5b8757ff adis_check_status -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x69712328 adis_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x7a07eea8 adis_init -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x8789948f adis_remove_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x87a8d685 adis_write_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x9f4b8478 adis_update_scan_mode -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xa2ae3baa adis_reset -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xb5955c04 adis_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xd7b45a51 adis_read_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xe1838f9b adis_initial_startup -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0725f37e iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x08c98086 devm_iio_device_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0b0895d2 iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x16971480 iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x18313cd4 iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1cca1873 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2c96910c iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x462ca0ac iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5c5d8126 iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5c818fc3 iio_scan_mask_query -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x68cbf29c iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x72312b0c iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x72d6e7a3 iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x74289419 iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7f17befa iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x82062204 devm_iio_trigger_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8848e738 iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x88684d24 iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa14e5c93 devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa3404836 iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xac080a87 devm_iio_device_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb23bb197 iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb80bdc91 iio_update_demux -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc1ec0271 iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc8fb36e7 devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd6a3ec40 iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xebd53fa5 iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xec41131a iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xefd85e5a devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf7d40d2f iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfc6ffdba iio_channel_release -EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x1bce412e input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x16b9b377 matrix_keypad_parse_of_params -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x5d07923d adxl34x_probe -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x58fef585 cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x61631cc5 cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xdabe069e cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x7f96a316 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x9e7cc5c4 cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xf7198c97 cyttsp_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x49ddc945 cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xc4cb8171 cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x0bc41e4c tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x2703c33c tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x4fe54f49 tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xd767debd tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0f9ff371 wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0fc2c8d2 wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x11a550a1 wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x127cd588 wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x35f8fb9d wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4e8a6ab2 wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5be80d7b wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5e52773d wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x70caf916 wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x770dc98e wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xded6d516 wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf7b6b1bd wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x052918b2 ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x05dc5dd7 ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1fbfc750 ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x35af49e3 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x3c625896 ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x47a16527 ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb0c3d7a4 ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xd62709e1 ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe2cd5727 ipack_device_del -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x00508532 gigaset_m10x_input -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0236141e gigaset_blockdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x19323d7c gigaset_shutdown -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x2249b24a gigaset_freecs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x29cd217a gigaset_stop -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x43b26305 gigaset_skb_rcvd -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x535c4743 gigaset_start -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x58304eca gigaset_initcs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x65765c51 gigaset_fill_inbuf -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x6a9e0f7b gigaset_freedriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x778e1dbf gigaset_initdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa037cc19 gigaset_skb_sent -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xad25dc63 gigaset_isdn_rcv_err -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb4a28767 gigaset_add_event -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xcdd49384 gigaset_if_receive -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xcee04492 gigaset_handle_modem_response -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xfc31f305 gigaset_m10x_send_skb -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x4f6dac77 led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x70ccb833 led_classdev_flash_register -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7a508eaa led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x8ab24b78 led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb4c637d7 led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xbf4da3c8 led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x1dde48a3 lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x365855d1 lp55xx_unregister_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x445f1335 lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x5315f06f lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x717d910f lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7d484fb7 lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x839778a6 lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9a59a263 lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9cfc6126 lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb01635fe lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd84dbeff lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x2591e659 mcb_bus_add_devices -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x3220b262 mcb_get_irq -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x514b2cb7 mcb_device_register -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x51925b7d __mcb_register_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x6b90d1f6 mcb_bus_put -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x72af4521 mcb_bus_get -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x834addd2 mcb_alloc_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x99b26a28 mcb_alloc_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb13fda93 mcb_free_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb385b1d6 mcb_request_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc3429856 mcb_release_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc533a23c mcb_unregister_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf9cca8f3 mcb_release_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xfeb8aae9 chameleon_parse_cells -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06628c2f __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06b11706 __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x07e2c777 __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0b1ed8cb __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1683a5f6 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x16c3fa29 __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x16c8cc13 __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x18d1988c __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2061620b __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x230dd380 __tracepoint_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x29a4c5fd __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2b277945 __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3ee17aab __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x402d6200 __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x49c216ec __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d1e9f82 __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7930d50e __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7d597e2d __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8461608d __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x84e60671 __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x92d61794 __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9415be3c __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad2d4ca2 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb21fadc0 __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb364194a __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbe406c76 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc72008a2 __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd6d1aa5e __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfc24ee1e __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfcc8ed24 __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xffd8c38e __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x09f73dab dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x16f591a4 dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x62cebd59 dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x693cf65d dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x85e010bc dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x99c91866 dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa9489be1 dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb458b9bf dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xff17414c dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x22163b69 dm_bufio_release_move -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x3909d3a8 dm_bufio_prefetch -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x594952bd dm_bufio_read -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x62a23587 dm_bufio_get_device_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x70b8ecfe dm_bufio_client_create -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9b2b253a dm_bufio_get -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xdc69e37a dm_bufio_get_block_number -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe004ee92 dm_bufio_new -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x07090f09 dm_cache_policy_get_version -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x46bb33ef dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5f2cd43c dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x700785ff dm_cache_policy_get_hint_size -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x9849df67 dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xcd033480 dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xde8ed891 dm_cache_policy_get_name -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x8e4d4815 dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xde8ccff0 dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x09472122 dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x2db32928 dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x35ba8dfb dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x6936d1db dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x819f4433 dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x899614d2 dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa2d061b9 dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa8813ad6 dm_rh_region_to_sector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc66ce277 dm_rh_get_region_size -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcab63c3d dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf37a3cfe dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11eab9fe dm_bm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x150c85ce dm_tm_open_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2e730a21 dm_bm_checksum -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x33c03da6 dm_sm_disk_open -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x619701dc dm_sm_disk_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9b4b5b29 dm_bm_write_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2507774 dm_tm_shadow_block -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbcfdc290 dm_tm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbe0497aa dm_tm_create_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xead1e727 dm_bm_write_lock_zero -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xfddaca74 dm_block_manager_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize -EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x07e44321 saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x19658529 saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2cbee1e9 saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x711dbe26 saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x8f47c83e saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9b8f8246 saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9e07c41a saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xae4a664f saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd39a3aba saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe565fc70 saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x02d97628 saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x2fb9323b saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x8f61a6c5 saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xa4c23a83 saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xbecaaec0 saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xc430aeee saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xe7602d73 saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x48af17d9 smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4b9c5d6c smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x544d47fe smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x59da888f smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x708a4482 smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x800a2b1d smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x96ffe80f smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9915a743 sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c087880 sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa6293789 smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbc86cefd sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe5a58b8c smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe6c030a9 smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xec4eb2de sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf8a4c150 sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xff152671 smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xffc03614 smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x4e710fb8 as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x260270bb cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xb28b8344 tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/media 0x04c98f5e media_entity_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/media 0x192882da __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0x1c97c811 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0x2d4e7be6 media_entity_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/media 0x52e91c22 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/media 0x536b859c media_entity_get -EXPORT_SYMBOL_GPL drivers/media/media 0x59841afa media_entity_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/media 0x635d22cb media_entity_cleanup -EXPORT_SYMBOL_GPL drivers/media/media 0x834208ab media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/media 0x8461fb58 media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/media 0x8be845dd media_entity_put -EXPORT_SYMBOL_GPL drivers/media/media 0xa321cf35 media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/media 0xa7ab57c8 media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/media 0xb3779a69 media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/media 0xd5962b79 media_entity_create_link -EXPORT_SYMBOL_GPL drivers/media/media 0xdabcf9ab media_entity_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/media 0xeec1e07a media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/media 0xfcc4ed18 media_entity_init -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xb0fb60bd cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0ed3fa12 mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x122828d9 mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x187a1943 mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2bb79f82 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3a8a7d59 mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x505b10e8 mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x557ec199 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x595bc35b mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x682ed6b1 mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6bfdf3dc mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x753f7578 mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x84d2bca4 mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x88bc69bb mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x89dbb281 mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcd1d9b63 mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe27e883a mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xec28530f mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf08649ab mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf2373deb mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x146a4884 saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1667aada saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1a6ca5a9 saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2cb205c2 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x33643c77 saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x39b9b5b9 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x42a1ff43 saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5b775531 saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9305cf93 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9bfa8d58 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb4a131a7 saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb8a7e68b saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc4f7d7d5 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcc2f8d6d saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd3b4f80f saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd9a35dd7 saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe97959fc saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf427e4fd saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfbad5f74 saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x08908e7c ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x29ffa8a7 ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x5c0b5ff9 ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7402a661 ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x947f136b ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb746fc0b ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xbbf9ff8a ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/platform/omap/omap-vout 0x085d8e48 omap_vout_try_window -EXPORT_SYMBOL_GPL drivers/media/platform/omap/omap-vout 0x1da5563e omap_vout_default_crop -EXPORT_SYMBOL_GPL drivers/media/platform/omap/omap-vout 0x3739df24 omap_vout_new_window -EXPORT_SYMBOL_GPL drivers/media/platform/omap/omap-vout 0x6db65fc8 omap_vout_new_format -EXPORT_SYMBOL_GPL drivers/media/platform/omap/omap-vout 0xc1644e97 omap_vout_new_crop -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0b2585ce xvip_get_format_by_fourcc -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x490bd11c xvip_get_format_by_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x7c276e77 xvip_clr_and_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xa39b4408 xvip_clr_or_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xaf077b04 xvip_enum_frame_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb655762e xvip_init_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xcb3d9c0b xvip_of_get_format -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xea800016 xvip_enum_mbus_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xef5e465a xvip_cleanup_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xdde2b614 xvtc_of_get -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x545cc9aa radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xcef3bcba radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x041d52d9 ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x193b1431 rc_open -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1d78bdaa ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x65e8694f ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x67a74f02 rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x77d3c187 rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7c133f6b rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8cf3e59a ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x904171ab ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa179fa60 rc_close -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa7c49aad rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb639c48c rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbada1145 rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbe9b206e rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc64f4323 rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xca9ea515 rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdb704472 rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe1d16e58 rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe2d85bb2 rc_map_get -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x6f0c11bc mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x45afb415 microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x55e32ca7 mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x6da2ecf5 r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x56595aba tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x57bf07df tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x1e383ae4 tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xbb694299 tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x4f747dc0 tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x22c13675 tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x4a1006f7 tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x0f577505 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xe072092f tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xa3ddcb61 simple_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x01a8b77d is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0df10e6d cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x13afdc67 cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2156151b cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2b861054 cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2ec88c4b cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3b7ee1a8 cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x42f59c4c cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x59921c7a cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x692bb487 cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x82ea8a5e cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x99c76f65 cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb8fda134 cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbb80f5ca cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc239bca1 cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd6c23cb6 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd839b476 cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe63a978f cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe810bef1 cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xefc167a6 cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x13a6abc2 mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xfdb5469e mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x06f6ba2f em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1b8866f8 em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x25187484 em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x42428a28 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4ec9c3ef em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x52b2d1d5 em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x66e65624 em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6bb30ec5 em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x76473a7d em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x899e1c68 em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8a4c9bb3 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9606b71a em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xabf22bf5 em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb5fe4dc5 em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb664e7ba em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb6d93140 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc8d5560d em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd128420d em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x027ee043 tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x3e6133a1 tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x94b69c95 tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xcc7b7180 tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x11ca595e v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x2de367cf v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x797f2b4a v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x9749d9ee v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x97f9dfb5 v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xe0eeb4e0 v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08982d59 v4l2_match_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xbb489526 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xd37a3886 v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x11a82695 v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x16492640 v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1a0c565d v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2b9d65ed v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2be26dc3 v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2c1d5835 v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3931c0d5 v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x426d494c v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4c1b3b3a v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5225cbd1 v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6f476f86 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6ff2287f v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x743715b1 v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7ad20f3d v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x84774736 v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x875d1983 v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x90aabd1e v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x91d19748 v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x96036a12 v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa255a651 v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xad6c4877 v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb4133c4b v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcf7bb588 v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd1ced00c v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd6db6af7 v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdbd2dd06 v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf9f0276f v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x002b7ccc videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0abf5050 videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1e4de988 videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2d403594 videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x369ab520 videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x49928af0 videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4aff2102 videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4e59ab41 __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x61d78c88 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x62bf2be1 videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x82b28e65 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x90287228 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa7f79743 videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xac8aaa93 videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb6b3c43c videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbbe12876 videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc7b9baf5 videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd6e43652 videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd7e66062 videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe1bf721f videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xef9d87a7 videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf1f6a246 videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfd2e2b24 videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfe51acf3 videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0x5a3bbe2f videobuf_queue_dma_contig_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0x9d5bb4e9 videobuf_dma_contig_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0xda3b36f9 videobuf_to_dma_contig -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x08c13f9e videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x0cbbf3ab videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x22f6e2f4 videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x7c1caf3e videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa825c75b videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x3e16f80a videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xcb3ceaba videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xe38f58a7 videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x06a239a0 vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x0e6f5732 vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1784e468 vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1c4a908a vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1c8a346c vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1dce8ffe vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x371c1172 vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x57121788 vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x70ca42f4 vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x823248e6 vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x8914c853 vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa038c0db vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xae3a378e vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb33b2aa0 vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc2dcb1cd vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd3009e6a vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe7d5029e vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xeb2bb7d8 vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x2ff3d34d vb2_dma_contig_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x61b1161e vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x3e73b5fb vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x63f0d87b vb2_dma_sg_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd30ec30f vb2_dma_sg_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0x8857f524 vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x119f04e3 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1961cab2 vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1abdb3b3 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x28690aeb vb2_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3025c76f vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x32698b05 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3467c5d7 vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x370041a5 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3a1e0a1b vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3cd2a8fb vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3cfa11b0 vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3d62c881 vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x515e8182 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5458c60b vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x57c7704c vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5b4ce20b vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5c4b753f vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x62653d6e vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x63769f60 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x67db727f vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x67e598ba vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb8d08470 vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc3032c15 vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc3d185d6 vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd50983a3 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xddff7ddf vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdfa60b1d vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe3062335 vb2_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe75ad53d vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xec54252f vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xecc4e818 _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf975d428 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x538c221c vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x023992ae __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x081f5533 v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0892d6b8 v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0b40a4a3 v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0ec6ae0c v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x13f79442 v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x189a3a75 __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x20b66938 v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x214fdfbd v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2246f8c1 v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ed57e60 v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2f828290 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x47c1260f __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x591696a9 v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5e508298 v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x60d147eb v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x65f49885 v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x885c1923 v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8a8cb2cb v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8bd7a9ae v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x942faeee v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9a4042e3 v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9e490001 v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa7dac8ad v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xab06e74e __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xae082517 v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb7e61a2f v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbfc30eb5 v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc7710779 v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd647c3cc v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd8b26023 v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd9d69cce __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe0e83c69 __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe53ae0aa __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf144056f v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xff210da8 v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x169e0cf4 pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x226b756f pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x300124d5 pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x11a3aa3a da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x4365cf01 da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xa29cdbe5 da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xcc10f33d da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xea370201 da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xf93b1622 da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xffdb33ab da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x086e2f7a kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x315c1cd4 kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x3b007696 kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x5b4be54a kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x6422a3ca kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x946534f7 kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb3b09a67 kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xcee7bdb2 kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x1ab7b5f8 lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x3d3cc0ac lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xebc658ec lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x1f84916c lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2bc41b7c lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x39ea940a lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x5fb1fff6 lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x8002ec34 lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xab955b08 lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf7d83300 lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x2f26f8f5 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x5604580f lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xcab32156 lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x00b37157 mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x034621d0 mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x40093a77 mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x5206cf1f mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xbee48d0a mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xe746dac8 mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1478bdde pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1dd2f12e pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4870940c pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9447fe82 pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9784a77f pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9ea155fd pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb794fbf0 pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc9a1c73a pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd5c9a438 pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe04c49a5 pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf94dc75a pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x1b1c3ef1 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xde921cf3 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x4a1a387a pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x82b0c4f7 pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x8b6f30fe pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa1148ca3 pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa7bd81a4 pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0b67f98b rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0d4504f9 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x179e32d7 rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x273cd840 rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2c022d2c rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x382a0cc0 rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x39fd1ed7 rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4dd6b944 rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x51b12552 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x58c7d9fd rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x6a4a498e rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x6eb17946 rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa1edc737 rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa42d9aa1 rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xad4bb82f rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb6e3abc4 rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xbf395d37 rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc3e5fd36 rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xcdfa5666 rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xce32355e rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe0cca919 rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe40754d7 rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf34a2cf5 rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf382a6e9 rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x19243f61 rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x19df6fe1 rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x2f303a25 rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x2f7b3b96 rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x33c53536 rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x5ebcd067 rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x5f0ff17c rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x821e4a83 rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xcb2193d7 rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xda75de80 rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xdf5c132f rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe4213653 rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xf9528f8a rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0a52bb0a si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x11f010ed si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x12f5e3aa si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x15e01c21 si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x21a6000f si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2a28d74c si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3d348150 si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x44b7cd64 devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x45d0b5a5 si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4a439ad8 si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4d3f6697 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x62da883b si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x64932106 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x673c55c3 si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7e67d23e si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x82186579 si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8421195f si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x872aeac7 si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8bca970b si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8e840263 si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x979111d4 si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9ec72dde si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa5a0adb8 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xaaf803dc si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb02e74f0 si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb0371963 si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb59d4fe5 si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb9c98880 si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb9dcdfa9 si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbc0df749 si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd554ed70 si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd62868c7 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd73bb232 si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xeaf64e12 si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0x261541aa ssbi_read -EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0xf9dea623 ssbi_write -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x22a3bb0c am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xa728af93 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xeb54f2b4 am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xfd6fcefb am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x154dc9c4 tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x6d29be90 tps65218_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xbe178c9b tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xe576daac tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xb1244268 ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x62b21c14 bmp085_remove -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x850fc134 bmp085_detect -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xf0024eaa bmp085_regmap_config -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xf319b0cb bmp085_probe -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x7081bb7f cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xac7c96c8 cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xc75b475f cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xddf8348d cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x040cd9be enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x215484cd enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x21e94eac enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x4f30421d enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x89b646c6 enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa966d536 enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe6233bd5 enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xf34b2260 enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x09bf5e71 lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x27d0ac80 lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x38315814 lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x3845b4d0 lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7198a0c4 lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x72c99601 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xcbb67e57 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd78cafb6 lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x98206a1e st_register -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xee4aba47 st_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x0065a28c dw_mci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x09db9a06 dw_mci_pltfm_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xe2b1f517 dw_mci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x7191fd94 cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x8c8fd802 cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xb3a6fdea cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x0b84ce0a cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x862f4a5c cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xf87d018c cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x02dc2c71 cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x0e53108a cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xe5a25fad cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xf2bc54c0 cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0x3ced58ed brcmnand_remove -EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0x6d454835 brcmnand_pm_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0xd30a5280 brcmnand_probe -EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x42af3fe4 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x33ee3f0a onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x852a5830 onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x968c67ca spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x010466da ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x06b87242 ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x09ac1d25 ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0b288b71 ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x553da260 ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6db5e979 ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x89347032 ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xade4fd89 ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xaea501ea ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xaf97afab ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc27b2109 ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc637849f ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcdaf048f ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe42752a0 ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x40bdc694 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x9b8bdac2 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x08ec30f6 c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x16c73cb2 c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x9b231ed6 unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xa28d1561 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xc9ee093e register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xcf758e5d free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x08aab703 alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0e868f16 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x148b9ea7 can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x18a310d7 close_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x40255a3f unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x42c13c26 alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5b29044d can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x619fea3b open_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x61a5ee64 can_led_event -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x69b1c2c2 can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x758f7114 alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x788f5674 safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9582278c register_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa68c1899 can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb2b35e52 free_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xcbdb1a61 can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xf1ce23f3 devm_can_led_init -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xfa5604b3 alloc_candev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x13605961 free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x7634d535 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x96840f6c alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xd4fd7877 register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x0970c95f free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x33a9fb50 unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x5981ab4b register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x68f95f74 alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x910e4b27 arc_emac_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xc3307ff7 arc_emac_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06a531cb mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0720ca54 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0729c35e mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c769d31 mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0cde6c3c mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d0cfa8b mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f8d5e2f mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x104dab8d mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19f91e3b mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a9af6f6 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b971f69 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c09cf62 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1dd172b6 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22b0f406 mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22baaba1 mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x256b463e __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25717863 mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x275e1a84 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27d5319b mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2832b315 mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b88adb3 mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e18f3c6 mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e972286 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f3dc744 mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f642fb3 mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2faf5f7a mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31384af3 mlx4_fmr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x358304fa mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x361576ac mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x370f7cfa mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37aed48d mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a69c654 mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b277733 mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3bb0968d mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f9fb784 mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44787165 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44967698 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45be34dc mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4648da4e mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47259e56 mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x474aafbe mlx4_fmr_unmap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47890486 mlx4_map_phys_fmr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47b09a7d mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d8dedaa mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50988a21 mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52c7fc15 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x581bd69b mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x591ff785 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59260c52 mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c284429 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e67219c __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e8c9864 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5eb6517b mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ec5c08b mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x640b5ced mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6480a54c mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d428707 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72f95603 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7320d74f mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77123ead __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x779bf2d3 mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77adf9b2 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79724719 mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c9b59b8 mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8097d006 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x818de1b1 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82cd7143 mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x835f9517 mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x839b0bf1 mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85ca1a8f mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8728899c mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8adfb801 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8bb2c45f mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e5fa02e mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8fb4bcc0 mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95cab5d7 mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97d88add mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9aecdf71 mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e7479e2 mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3a4b834 mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3c1059b mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4426238 mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8b0ea6a mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab7206ea mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae585b5f mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xafb97c65 mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb15c16e9 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb461ed47 mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5cc85f5 mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6b5a428 mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba0daaaa mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba6346a2 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbdb6d198 mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0dbb661 mlx4_fmr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0df3a43 mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0eaef63 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6283171 mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9f0468f mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf894f86 mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd144f453 mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1a74f36 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd26cc630 mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd33093d3 mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd383195a mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4bdd2f8 mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5275a28 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8d3a4d1 mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb13a918 mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdcf96f33 mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdea8878b mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf601ff2 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe064d47a mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9b7ba5b mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9fa0121 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed173369 mlx4_fmr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeed31108 mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf09ae295 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5495aa2 mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd200350 mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe18355f mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe26f220 __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff449a29 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xffc5bf42 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xffefec44 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x009be155 mlx5_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03b3eb84 mlx5_core_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c003ddc mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e71a7e7 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c2c3e49 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x225a0f9e mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24562ee8 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x318d330b mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3983b32e mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42714bf7 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46587874 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5900dfa2 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x617e7239 mlx5_create_map_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x621daef9 mlx5_query_port_proto_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x629d1454 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72742075 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fce0081 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x813cfeca mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83213757 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x836220b0 mlx5_query_port_proto_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d0665cc mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e4840e3 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9367626e mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x968f635d mlx5_core_mad_ifc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x975fddb3 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1458a99 mlx5_query_port_link_width_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa49108a1 mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa69f887b mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xadf6c7d6 mlx5_core_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaed05bf4 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2fff45d mlx5_set_port_proto -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3d20e2b mlx5_query_port_proto_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc96e89ea mlx5_query_vport_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca0b15ff mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd01bb7d2 mlx5_core_eq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd455fec0 mlx5_core_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd83c2fd8 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd5e229e mlx5_core_create_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf5d12b0 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3496e03 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8a5a4bc mlx5_core_page_fault_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec92eabf mlx5_core_xrcd_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed4feb8d mlx5_core_destroy_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee4860ef mlx5_destroy_unmap_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4b77431 mlx5_query_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffa1b460 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x368d3d71 regmap_encx24j600_spi_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xbbd1268d devm_regmap_init_encx24j600 -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xd4ab3625 regmap_encx24j600_spi_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x1a4fcaee stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x2424e748 stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x38ea55a5 stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xfa064994 stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x50e58736 stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xa0e00200 stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xc931d9f0 stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xe2d98602 stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/geneve 0x15e56947 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/geneve 0xadeb3ede geneve_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x25ecf06d macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x327fb4b9 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x5a70993e macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xbfce9f0b macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvtap 0xdc95d3f8 macvtap_get_socket -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2f64c4e9 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x662efe9e bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x81b2a0df bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x97ed2ac7 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa2c57095 bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa3e372b8 bcm_phy_enable_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbc375bae bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc9785479 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd1a9bce7 bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd82945cf bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x90c1c860 mdio_mux_init -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x092a358e usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x1abfc734 usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x6adf5669 usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xc3ad727e usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x09ebec11 cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0d2d79b4 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x4e7bc8d5 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x67b778d0 cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7b55bcaa cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7e4def00 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8aaa5c6c cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb1a12c54 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xfd9c176c cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x8e4470bd rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x979c2444 rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xbdae5ba9 rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xc5ff8f77 rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xe31e3499 generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xe7204347 rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x042aa0bc usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0c8588dc usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x15e1e5f4 usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x18be306d usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1de8b06f usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x31a28efb usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x32483e6b usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x36fcd9f7 usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x39aadc19 usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3aa35582 usbnet_set_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3ab17947 usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3c600341 usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x43fa291e usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x46170fcd usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x849adf84 usbnet_get_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8d807ce4 usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x979ef70a usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9d56c874 usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa06ec3d7 usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa28440b0 usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa36777d2 usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa7eaaa3d usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xaa38f5a7 usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc429242e usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc51dadb2 usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xce2157ac usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xce4b6601 usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd1f55153 usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd9c8e12a usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdf32e5c1 usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xeb412b36 usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf8602b28 usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x3860f7d3 vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan 0xf1c0888e vxlan_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x04441608 i2400m_tx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0dc1e743 i2400m_dev_bootstrap -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x21523bf6 i2400m_pre_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2cc49b16 i2400m_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4051b92c i2400m_tx_msg_get -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5ee7c949 i2400m_init -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x956a8bb1 i2400m_is_boot_barker -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x99151191 i2400m_tx_msg_sent -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa1c23c89 i2400m_error_recovery -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa43df02a i2400m_dev_reset_handle -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xaa0cb652 i2400m_rx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xacc1385f i2400m_cmd_enter_powersave -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc72485fd i2400m_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xcca5e96e i2400m_netdev_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xde9f68dc i2400m_release -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xea3438ef i2400m_post_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x4f6707dc cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x6458e808 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xae5b06f8 cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xca872948 cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0xb8fbdd9e libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x14a52001 il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x9259a290 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x9aceeaa1 il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xdbf4e85d _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xfdcc27ce il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x03ffddf9 iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x131a729f iwl_write_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x16474139 iwl_notification_wait_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x194202ee iwl_notification_wait_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1eaf3f06 __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x229171c0 iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x39ba2b36 iwl_parse_eeprom_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x49b542fb iwl_init_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4a5509b2 iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4ab37160 iwl_nvm_check_version -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x50205162 iwl_opmode_register -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5a10d898 iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5e53c9cd iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x79a203fb iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7b48f259 iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x94cd9812 iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9bf16097 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9c77eed0 iwl_remove_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9d744193 iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa90c70cb iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xae5f882d iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc00ff135 iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc6b893c7 iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xcb1baca4 __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd76667fa iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xdf62a86a iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe9a21aa5 __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xefa5e7a6 iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf312aabc iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf88aa70f __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xfc305542 __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x13431ce7 __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x3ab4cc9f lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x3bc60ee1 lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x6ee6c2c8 lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x774db21d lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x82bac452 lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x85514e49 lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x8b2e3bc9 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x8bfc1195 lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x8f83e7f9 lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x952412bb lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb4d262ff lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc2285812 lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xcfbaefd9 lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf4399ec7 lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf4c54a44 lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x1d748ed4 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x2e20243c __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x3dd9bd1c lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x40d39ade lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x4a2f3bff lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x73f0cdc6 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xa07a14f0 lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xe8444804 lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x12683fc4 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x190e49b4 mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x19128140 mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x1b141e4c mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x220aed27 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x26fc7e94 mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2a8e1f8c mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2bd2fdd0 mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x335f9f35 mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x44822ef7 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x59010367 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x63275c59 mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x7e0d904b mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa0e9936f mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb32a386f mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc5b3dfe4 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc945c9f0 mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xdb5e20e5 mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xe66b876f mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x3509f02e p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x469d5aa3 p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x8d1cd00e p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x9213cf8a p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x9315f3a4 p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x99309b04 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xbc6ea987 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xcacb8e0d p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xdae12dfd p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1000ca5e dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6f8cd9d6 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9cfeb4ad dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc80baf66 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0b9dda24 rtl8723_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x28ecaad6 rtl8723_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2988bd2a rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2e225bd2 rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4710fcad rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x47c7ff79 rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x48e483e1 rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4b38be8c rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4e1e9617 rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x59d3f3d6 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5ba0a970 rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5cc5e9c3 rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5e775116 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6f34669e rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7015bf3c rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x828d6b5c rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x886275b1 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x91a0b523 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9af8fdf3 rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb5a1f3b9 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb8f9fb40 rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd0fc19ca rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd546a866 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdbfcaa8b rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xece931b3 rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf426bcde rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf7c0978c rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x20c76c0b rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d882d91 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x33cb8959 rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3a8bd50f rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x659e2d23 rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6e53ebcc rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x724fdff0 rtl_dbgp_flag_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x72e8b527 rtl_attribute_group -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x75461f43 rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7efc9787 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x811d24fb rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x857dc240 rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x85f315e2 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x914da1b6 rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9948c8ae rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb1ee45dc rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd5e44927 rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd89310f0 rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe16a0fe2 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfc36f0af rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x17315b85 rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x4a004542 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x933280de rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xd98932f9 rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0b5e1497 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0d4b67d1 rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x13f62b2e rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x221c0347 rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2c714280 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3122ca35 rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3214b774 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x32c75392 rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x34bcfdaf rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x443e6557 rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4cb00681 rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5191b3fd rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x536ebac5 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x57292a04 rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x576d5e6a rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x57f7bbd3 rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x69302836 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x74cd92c8 rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x74f3263e rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7698827f rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x77c7915a rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7ed09f03 rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x85c004fa rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x86e29034 rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8f04c71c rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x931389fe rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x99067028 rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa4341cb2 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb5b2d02c rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xca84a262 rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd58c3b10 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe13ed03f rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xee9c7cf9 rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf141db66 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf5a05d59 rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf882a1ef rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfbc280ea rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xffb9ea67 rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0e2cd4ec rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x33512c7b rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x4f1a380e rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x513e7973 rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x749fd19a rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x85d2b2de rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xa40d3bb1 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xac42857c rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xb4b3dc2a rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xb85af004 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc62d57a2 rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xd73044c8 rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xfe852ea0 rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x11cc541e rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x12f4bb2d rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x13f0d79a rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x176d8510 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x19172904 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x19388e96 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1fa49ba7 rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1fa96d68 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x23e5d9c8 rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2e508317 rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2e8b5343 rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x341b8a89 rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x36b7146a rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3df9e245 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x47b63b9a rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x485b3e95 rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4fd7522a rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x63f2165b rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6431cb7c rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x68123e8b rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6d69253e rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x821a5764 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8469b4c3 rt2x00mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8539b29f rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9cf649f0 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa9f62ac3 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xafef3761 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb2b361bd rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb367c523 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb4b84bfc rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb5fb9889 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc171b381 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc5d0c337 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xca688b28 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcc21c3d2 rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcd33f4b1 rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd05435fe rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd13c2bae rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd4d1a5f3 rt2x00mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd71c939d rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xda643386 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdc72075b rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe67e5792 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xee91644e rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf0725724 rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfd9f1f58 rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x00385a75 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x1872c46b rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x66f81908 rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xc5e5ef14 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xd0ce7278 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x2e61a343 rt2x00pci_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x83ef5eb9 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x8e993133 rt2x00pci_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xf22b00fc rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2757668c rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2d01d275 rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2dcd6250 rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x33502226 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x371ef23b rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x6b7e91b2 rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x823331ee rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x82938dd6 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x8b17ce34 rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x8f884466 rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x9d3f1235 rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xad9ac208 rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc6991ad9 rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xdad98fa7 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf2965b14 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf58e3b80 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x40f57e7d wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x5f6544b2 wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xaba3d5c2 wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x01e263a5 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x13dfa07c wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x18954e41 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1a2cda95 wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x21b69d8e wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2428d75d wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x27b6f8c7 wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2dbf9f32 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x322c0461 wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x330c3c7a wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x43c546e0 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x443fff4c wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x48b755d6 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4e93976b wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4ee9c56c wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5897bcd3 wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5b3fa10b wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x61fc390c wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x620855c8 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6ca76bd2 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6d2c141f wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x816d1484 wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x83231ba9 wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8661f843 wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8772f860 wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8cc269d3 wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8d89370c wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91da5146 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x94ddf52b wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa066ef69 wl1271_ps_elp_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa7b0c7ec wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xae3ccdad wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaf5c61e4 wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb028ff87 wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb0e0cd81 wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbf6e2e72 wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc1dce986 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd17a59ef wl1271_ps_elp_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd2749b8e wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe1205f92 wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe3b0a7db wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe781e103 wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf2686b86 wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf4bb1458 wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf683c7fa wlcore_remove -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x1301e1e8 nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x5ff17867 nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x8946b074 nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xacad4d02 nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x0c6dbf39 st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x133175b8 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x19422f0c st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x52a94457 st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x5e782359 st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xcd392a3e st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xd9fad371 st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xe59d70ac st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x02485fec ntb_transport_unregister_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x303e1952 ntb_transport_register_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x7d2d931d ntb_transport_create_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x0b09b92a devm_nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x0c62f61d nvmem_register -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x0f6789be nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x16d7b645 of_nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x1ecf994c of_nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x36ec8a8a nvmem_device_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x5080f207 nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x68758fda nvmem_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc96fb674 nvmem_device_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe18960ba nvmem_device_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe9a7fe16 nvmem_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xfc389d0b devm_nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xffdc6140 devm_nvmem_device_put -EXPORT_SYMBOL_GPL drivers/phy/phy-omap-control 0x2293ed36 omap_control_pcie_pcs -EXPORT_SYMBOL_GPL drivers/phy/phy-omap-control 0x62c0d7b4 omap_control_phy_power -EXPORT_SYMBOL_GPL drivers/phy/phy-omap-control 0xcdf2960c omap_control_usb_set_mode -EXPORT_SYMBOL_GPL drivers/phy/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x0014fbc9 ufs_qcom_phy_enable_iface_clk -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x07b6c201 ufs_qcom_phy_calibrate -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x12d2dffb ufs_qcom_phy_exit -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x15518c56 ufs_qcom_phy_is_pcs_ready -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x240020ba ufs_qcom_phy_init_clks -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x25056dc2 ufs_qcom_phy_init_vregulators -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x59a8616a ufs_qcom_phy_enable_ref_clk -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x6b4cace6 ufs_qcom_phy_enable_dev_ref_clk -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x72798502 ufs_qcom_phy_generic_probe -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x790d3aed ufs_qcom_phy_power_on -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x7aae4f8f ufs_qcom_phy_start_serdes -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x7b315b51 ufs_qcom_phy_disable_ref_clk -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x860722dd get_ufs_qcom_phy -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x8b73ccad ufs_qcom_phy_remove -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x908b4fc1 ufs_qcom_phy_set_tx_lane_enable -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xba699b42 ufs_qcom_phy_disable_dev_ref_clk -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xc0dc50ae ufs_qcom_phy_calibrate_phy -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xc94942ed ufs_qcom_phy_save_controller_version -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xcdbc620a ufs_qcom_phy_power_off -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xfaaaefda ufs_qcom_phy_disable_iface_clk -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x20d71cdb pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x52e02c2b pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x85faf402 pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x4ccae8ba mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x505a5cd9 mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x61e014f3 mc13xxx_get_num_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x78fec37a mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xee45d56d mc13xxx_parse_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x36c73756 wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x840350a6 wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xb4f6b302 wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xbfd66fce wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xc6a1f6d2 wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xfb302e5f wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x3dfa1347 wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x02494e60 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x04d8b347 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x08ea0a3c cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0908c5cc cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x09ecf4dd cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0c795e41 cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x12091b9e cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x13dc38b4 cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x16f04e2e cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x22331f6a cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x25598709 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2ac86e0c cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2ec51a2d cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x44a61b69 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x44d21fe0 cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x51dc3e8e cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5368a509 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5c687d86 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5eefa07a cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5ff5b8e1 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6416d275 cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7def7c98 cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x818f33ba cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9c6b2a14 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9de6a823 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa80b3236 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaba6c734 cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaf9b4b20 cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xafdb9efd cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb2c7bee6 cxgbi_ddp_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb31d34a0 cxgbi_ddp_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcf30d8a2 cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd2279a3e cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd31099ce cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd424d249 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd5304d50 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd5b6611f cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdccfb69c cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe1158ac0 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe1be2485 cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe5603b2f cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xea094a71 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xeaca527e cxgbi_ddp_ppod_set -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfa95d53c cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfd54e59f cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xff9bb868 cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x315d87e1 fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3a54e04d __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x47a0c349 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4e1d92dd fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x57b39ea3 fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5938a423 fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x69d93a8d fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x712f8db0 fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x833a27dd fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84128308 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8c1ffd29 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8c7cc3b9 fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9e3f6c5c fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbd23bd50 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd486577c fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf9d69cb5 fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x15126736 iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x1c65ebf4 iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7a9cc10a iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x9d5c4988 iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd46e858f iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xfe9e54de iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0e308d0f iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x10095900 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x14d1a54d iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x193ca282 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x219d5820 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x23078d8f iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x241579a0 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x24bd324b iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x32659bca iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3381ae26 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x33a75fb7 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3d0f3c06 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4d4dcf0e __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x55fcb7b5 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x615d5bc3 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x63ee5b8d iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x654ab269 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6be46077 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x70eeee27 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x732d8c16 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7c30b3c5 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x84748d21 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa0b8b65d iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa628dd50 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa6c0c425 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa93e6905 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xad126366 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb26d1434 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb5b48b2b iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb5f136b7 iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb63bb69f iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc085ca24 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc7eb3e2d __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc806fb82 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc992857c iscsi_conn_queue_work -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xca2c934d iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcad51abc iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdeb2b19b iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe79473e0 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf45483bd iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfa4bc88f iscsi_eh_target_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfe408196 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x008c3466 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x069dd86f iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0e5a3616 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x15e38375 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x16075829 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3798bb31 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4e506ecd iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x513208ee iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6b7c4467 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x84fcd2b3 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa36cf848 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa5705e46 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb9e9377b iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xccab4d6f iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd708cccf iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe5fe9604 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xee1db6a0 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x17680f1b sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1af5555a sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x47c6d473 sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x547dafb1 sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5ac4ed9d sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x65223dfd sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6ca4420b sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6cd7011f sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x702b44a3 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x73fedf3f sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7b49b056 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7b890558 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x80c9cc3e sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9a8cd83e sas_eh_bus_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9f02f51e sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa91ce494 sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaf69a6c1 sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbe9ab6a9 sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc14550fb sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc35f0c46 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcead9c6b sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe03b8904 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe93f4241 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf8414718 sas_domain_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x098e71ac iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x165f527d iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x19c3ad7f iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x237b4add iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2592c9d7 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2a9de75c iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2b10d7ff iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2bf7adab iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2c97144e iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x35d69387 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x49c1758a iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4c7a0b7c iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4ebf6e4d iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x60712c04 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x60b849e0 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x67be3127 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6a122c51 iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6c903e8d iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7282a3cd iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x806a6343 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x880028e6 iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88381253 iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8d5fbbb7 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x903e3b93 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9325f777 iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x96556e9c iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x991c3c7d iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x996f2950 iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9f0090c7 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9f252be6 iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa117dee5 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa58a3899 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa7531800 iscsi_is_flashnode_conn_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb9018c31 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbff05bdd iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc8394772 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe248882a iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf2af87a4 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf3be7d7c iscsi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfb273e60 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x3963d25b sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x4afaca16 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x705472cc sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x7ea79a25 sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x55ad1534 spi_populate_tag_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x34e30d88 srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x4c4dcda6 srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x76156c38 srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xbd8c75b2 srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xd62e5d50 srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf0cc94a7 srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x04e4a386 ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x1cda9749 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x2c44c59d ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x4c743508 ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xac51f9b0 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xb7c5a23f ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xc3c07d2c ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x25489de4 ufshcd_pltfrm_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x292b1565 ufshcd_pltfrm_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x7a1f991b ufshcd_pltfrm_runtime_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x92a6f553 ufshcd_pltfrm_runtime_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xe042810b ufshcd_pltfrm_runtime_idle -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xe49bada2 ufshcd_pltfrm_shutdown -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xece7917d ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x26b09c88 spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x686a47c1 spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xa672821a spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe2b1f1cc spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xf86004bf spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x59200d5b dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x67b8d186 dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x7f297107 dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xa87c6a0f dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0c1683a1 __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x195f6993 spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3ad9cec9 spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4084b139 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x497d6ed6 spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4f872a5e spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x64f09afb spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6968ae92 spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x83ed5661 spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x98b6df5d spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa2727ed9 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb39ffa09 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xba5e837e spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbb0448ad spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbd314931 spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd0e4d03a spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe4fc912f spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe6cd8598 spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x5cc05df7 ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1491baad comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1ca6ca4f comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x25648056 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2a03bab3 comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x37a4227b comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3acf852e comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4135567d comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x43466418 comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x56df1036 comedi_handle_events -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x571ec098 comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x62164bc3 comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x653c42b6 comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6aff6d85 comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x799f954f comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7e18a4ad comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x84a4b222 comedi_event -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x89e75809 comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x97377aaa comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa5a534a7 comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa8479195 comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa8d7eb17 __comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb483d75d comedi_timeout -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb4d2d777 comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbbe96e5d comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xccefa7af comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd5dc15f9 comedi_dev_put -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xda28050c comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdc2f6b47 comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdeef062b comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe8f2ebf7 comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xeaab7e2a comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf45a59a5 comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf6864c9e comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf819d8a5 comedi_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfdf8cd97 comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x07c7fddd comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x1b0f719e comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x2b5f49e7 comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x58298e4d comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x8f3b5ef2 comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xa7c9ad1a comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xbaf72e51 comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xe735e12f comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x0d86ee5e comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x215750eb comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x57f3a761 comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x8036d2e1 comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xd67a8562 comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xfdb1617d comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0xc0ea3a10 addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x29bd2470 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x29f25703 amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0xc101aab6 amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x07d669b5 comedi_8254_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x08eae1d1 comedi_8254_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x2b96f77f comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x4c7281e8 comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x5379ef61 comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x5569b23c comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x67ba484b comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x717b9369 comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x74debb51 comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xa0cbc297 comedi_8254_load -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xaf6f3d49 comedi_8254_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xd5808d15 comedi_8254_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xdd0dc117 comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x1e6c6f07 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xaef4fa75 subdev_8255_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xed5aa69d subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0xa498af20 das08_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x002fda01 mite_sync_input_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0df886d0 mite_bytes_read_from_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x18c492eb mite_prep_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4fa14329 mite_bytes_written_to_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5fd3414b mite_release_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6c8026c1 mite_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7b1bec34 mite_dma_tcr -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x914fdd05 mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9631fc02 mite_bytes_written_to_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9ae77342 mite_sync_output_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9b6d113d mite_get_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa1d84b34 mite_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa75d2fc0 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xaa40601d mite_free_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xbd384825 mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc2e418d3 mite_buf_change -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xcec6b0cb mite_done -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd46839fb mite_bytes_read_from_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd66ee006 mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd98420f5 mite_setup2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf745c087 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x430e3b7d labpc_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xf5ce4d54 labpc_common_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x2038bda7 ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x42dd2ae1 ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x4c4dfd25 ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x5d938b03 ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x68130591 ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x79ece2d4 ni_tio_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xb104a4f5 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xdf7d6520 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x08ab3415 ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x2fdd893b ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x84769f90 ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x89e70922 ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x96f8d106 ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xd452b7f6 ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x4f60a390 comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x5401559c comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x8e322952 comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x9d75c3b0 comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xa89a740e comedi_open -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xd49f6ba5 comedi_dio_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xfa3feb78 comedi_close -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x6935b655 adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x13d02b33 most_deregister_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x2c39a82e most_stop_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x3da74fe5 most_get_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x5850fbb0 most_register_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x78e11aa8 most_register_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x83fe6ce3 most_put_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x85408575 most_start_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xaa67c1a0 most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xaadf78a2 channel_has_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xaf5740b8 most_deregister_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xc09ea58e most_submit_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xc305fc3f most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x57fcbbc5 nvec_msg_free -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xb23d9c1b nvec_register_notifier -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xf29b191f nvec_unregister_notifier -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1ca18669 synth_remove -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x3bc80ff0 synth_add -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4172e317 spk_do_catch_up -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6496a532 spk_var_show -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x753bef59 spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x86442336 speakup_event -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8b0f97d9 spk_synth_immediate -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xab24f0b4 spk_synth_flush -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb2978dbc speakup_info -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd3f03955 spk_var_store -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe622aa2e spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xf1f9a552 spk_serial_synth_probe -EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain -EXPORT_SYMBOL_GPL drivers/uio/uio 0xd2d2d9f8 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xe2850b25 __uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xfa0d8cd7 uio_event_notify -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x3be83cdc usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xb753d5a9 usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xd1b5f3fe ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xfd9da0ee ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x51d23b79 imx_usbmisc_init -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xd4267473 imx_usbmisc_init_post -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xe6b574cb imx_usbmisc_set_wakeup -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x47557685 ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x4f964ce0 ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x83284dc9 ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x997f02bd ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xa59ffe64 ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xe4ed090f ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x082015b0 gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1a20055b gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1d41292c gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x220ec5b3 gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3c31bd42 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x64c2f380 gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8ed39b27 gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9e090a3a gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xaac684ee gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb31eeefa gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcf41add0 gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xdb3665ec gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xdbd0bb93 gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe57dfdc1 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xea4e441f gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4d2167cf gserial_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x692041fb gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xfa82ecf0 gserial_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xfb39f842 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x094007ea ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x16acb2ba ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x5802e78c ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0a90dc86 fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1eaa5693 fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2becb557 fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3e0bb60f fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4cef6e2d fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x546c7f99 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x67f02d54 fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6c94b43f fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x74d8e233 fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e6aa647 fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7ed8c698 fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x89a7b155 fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x987bc0cf fsg_config_from_params -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa6aa8e8a fsg_store_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xcfc38887 fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd468f882 fsg_common_set_ops -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe121e62f fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe8ca405a fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x033dcf43 rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0816dd90 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0a74cabd rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1b9011f2 rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x23b4a4ff rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x562b5b4a rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x60b60459 rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb672c89a rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb76c160d rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb7cdc3ef rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe6fb139b rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xebd38046 rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf11ba47b rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfac6a2ca rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfce8a413 rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x00113b7a usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0f7bb61f usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0fe31602 usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x19a9b760 usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1ab390a7 usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1d58a88f usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x202bcbd5 usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2178065f usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2ef9e1ad usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3288dcba usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3516f89d usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x37b94f6b config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x458f6264 unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4c09be81 usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x61983464 usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7848be03 usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8315fb9c usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x838a92ed usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8f856728 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x90942b88 usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94c8dc16 usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9fa1d4dc usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbb8fc880 usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbe653efc usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbf0e9783 usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc5b3f964 usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc7378e09 usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc9d22445 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe02b0d03 usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe3a52516 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe68b56db usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xeb442dc3 usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xc53386af ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xe5da0bd4 ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0767c431 usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x14cb5c6c usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2e9fa0e2 usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8e131631 usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xbc0382e9 usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd9c7e947 ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xdb586bdd usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xdc4c01cb usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xecfd34b4 usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/musb/omap2430 0x6fb55e1f omap_musb_mailbox -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-am335x-control 0xf0b6a12e am335x_get_phy_control -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x133e06e7 isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x05e6b87d tegra_usb_phy_preresume -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x0f7adff0 tegra_usb_phy_postresume -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x4e32f4a7 tegra_ehci_phy_restore_end -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xf0971542 tegra_ehci_phy_restore_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x50a24895 usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x00b13162 usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0b4b050d usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x217baec9 usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2f1be2eb usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x32ae36b0 usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3de6a9e2 usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x427d27e9 usb_serial_handle_sysrq_char -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4491a3bc usb_serial_handle_break -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x596ac14b usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5ecf0e07 usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7082e674 usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x74990b70 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x88893af9 usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa0f90fea usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa3d44fc7 usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbda4d8f4 usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc7df9da3 usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xda4966d0 usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf5aa9fb6 usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf9263583 usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfba25f10 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x06604000 usb_stor_bulk_srb -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1a5f8c47 usb_stor_pre_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x247260c5 usb_stor_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3aa05bc4 usb_stor_suspend -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x43fa035f usb_stor_bulk_transfer_sg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x463dfbf0 usb_stor_post_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x562c44a3 usb_stor_ctrl_transfer -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x81839736 usb_stor_host_template_init -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x89720cef usb_stor_bulk_transfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9cc8b0a9 usb_stor_probe1 -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9eb8fdf3 usb_stor_reset_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa7e561f9 usb_stor_control_msg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xab956ae4 usb_stor_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb8749f90 usb_stor_set_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc7ecb708 usb_stor_Bulk_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xcc24ed8d usb_stor_access_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xce4c1015 usb_stor_Bulk_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xcf3e3f72 usb_stor_CB_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd797645c usb_stor_probe2 -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe578c695 usb_stor_CB_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xea7b3a37 usb_stor_adjust_quirks -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf65bb5d2 usb_stor_disconnect -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf7d097d3 usb_stor_transparent_scsi_command -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf8705fd2 fill_inquiry_response -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x07688e29 usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x23599d0f usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3e5d9598 usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4767c5e8 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x523d2e34 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x591d8be0 usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5e36359e usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5f6008fe usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5f683528 dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xad1fe79c usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd46a12f3 usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe0d2bcf5 usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x13d9bcc2 rpipe_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x1e4d33d4 rpipe_clear_feature_stalled -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x78f6df13 wa_urb_enqueue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xa890676b wa_urb_dequeue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xb252b55f wa_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xb747b0d2 __wa_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc543b60e wa_process_errored_transfers_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcc881957 wa_dti_start -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf4654c3f wa_urb_enqueue_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x24d5be7f wusbhc_b_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x2f181a32 wusbhc_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x42e95f44 wusbhc_reset_all -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4ad7a157 wusbhc_b_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x5913b2cb wusbhc_handle_dn -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7b299cb7 __wusb_dev_get_by_usb_dev -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7bf12a10 wusbhc_rh_start_port_reset -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x830efb60 wusbhc_giveback_urb -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x932cfc8e wusbhc_rh_control -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9a5151f9 wusbhc_rh_status_data -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa9a208cb wusbhc_mmcie_rm -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb3c394d5 wusbhc_mmcie_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd354c1df wusbhc_chid_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf4ba6535 wusbhc_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xd5622ec3 i1480_cmd -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xe2e025c1 i1480_rceb_check -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xf862417c i1480_fw_upload -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x212c3597 __umc_driver_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x4b3c7eed umc_device_create -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x6167455f umc_device_unregister -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x80612f5c umc_bus_type -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x81dfe60e umc_device_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xa130843a umc_controller_reset -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xdf0aec55 umc_match_pci_id -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xec17e906 umc_driver_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0536f670 uwb_rsv_modify -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0ad4e620 uwb_rc_cmd_async -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b8aad57 uwb_est_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0fac2ea9 uwb_pal_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0fc0d35d uwb_radio_start -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x13471530 uwb_dev_for_each -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x225c7fcb uwb_pal_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x22ac50c7 uwb_pal_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x22b56803 uwb_rc_reset_all -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2544b431 uwb_rc_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2787770e uwb_rc_ie_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2a8a80b6 uwb_rc_dev_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2e30cb27 uwb_rsv_establish -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2fc06898 uwb_rc_cmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x471b68d6 uwb_est_find_size -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4aafb53f uwb_rc_get_by_grandpa -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5385ed62 uwb_rc_get_by_dev -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x54f858fa uwb_rc_pre_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x55fe35eb uwb_rsv_terminate -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e6da8a7 uwb_rc_alloc -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5f839933 uwb_notifs_deregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6c911aac __uwb_rc_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6f683be7 uwb_dev_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7537e357 uwb_rc_put -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x75eb9d7c uwb_rc_post_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x76cd6e1e uwb_rc_ie_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7ab37969 uwb_rsv_accept -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dcfcd23 uwb_ie_next -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x81e81a4e uwb_rc_vcmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8ab87fb1 uwb_rsv_destroy -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x942867fd uwb_radio_stop -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x99515fbf uwb_rc_neh_error -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9c328818 uwb_rc_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa56923ec uwb_rsv_get_usable_mas -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb059847e uwb_rsv_create -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb10c4262 uwb_rc_mac_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc7ff0b8e uwb_notifs_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd94e7f5c uwb_rc_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf6fb69e9 uwb_rc_neh_grok -EXPORT_SYMBOL_GPL drivers/uwb/whci 0x77b97abd whci_wait_for -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x2b748483 vfio_platform_probe_common -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x7c21d21b vfio_platform_unregister_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x9667bd4c vfio_platform_remove_common -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xc80c1b74 __vfio_platform_register_reset -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4ce91299 vfio_device_get_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9d873de6 vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xbdf292ae vfio_del_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xca11a82e vfio_group_get_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd8a1f46a vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xfd19fbba vfio_add_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x49cf06f5 vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x9b49b8c3 vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x043032af vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0d27506d vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0dc2126c vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2829b3d5 vhost_work_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2ac8094a vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x32bcc5e8 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x34151da2 vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3a2dc1e3 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3b8c1a5a vhost_init_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x45384bfa vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x472c77ed vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x49cfd21a vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x545bfa50 vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x57443988 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x61a8e576 vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6754a1d3 vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6f0ea7db vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x786be0e4 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x78c81500 vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7dee0016 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8a6f5abb vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8d70022a vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x902e3bd8 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xac280102 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc4a2075b vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcdbe6e39 vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdf097091 vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xec066801 vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xed63198e vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfc00e30c vhost_log_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x26c03007 ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x65ce1ab6 ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x7a43d89a ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x82c424c8 ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x986a8133 ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xb99558db ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xc665d816 ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x1a0c794b auok190x_send_cmdargs_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x2e2f8c48 auok190x_common_remove -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x3a0cda0d auok190x_read_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x41556636 auok190x_pm -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x73b18916 auok190x_send_command_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x9a8ef067 auok190x_send_command -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xb325e218 auok190x_send_cmdargs_pixels -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xbf3acc50 auok190x_send_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xef7c6cf9 auok190x_send_cmdargs_pixels_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xf543afb6 auok190x_common_probe -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x49e08e0f fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x16cd94e0 fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xe2520901 fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0x4438286d sh_mobile_meram_free -EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0x656ae9a3 sh_mobile_meram_alloc -EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0xa0398cf1 sh_mobile_meram_cache_alloc -EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0xcf6c025f sh_mobile_meram_cache_update -EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0xd29a246f sh_mobile_meram_cache_free -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x3c789401 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xc5dff0d5 sis_free_new -EXPORT_SYMBOL_GPL drivers/w1/wire 0x1525a347 w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x5386d1fc w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0x730ab01b w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x824af5a5 w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xaceb0589 w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xb5d2150a w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0xc6934e04 w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xeb9a7cf3 w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xfa994e14 w1_reset_select_slave -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x776527ea dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xafef6cc3 dlm_posix_get -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xb1cdf304 dlm_posix_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock -EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x1e47d509 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x32ca88c1 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x32e4106b nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x655ab149 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6bf19caa nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7e007e01 nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xbbdfeafe nlmclnt_done -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x047341cd nfs_remount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04e3a35f nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x073ab369 nfs_set_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08070aad nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0acc26ed nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0babaec3 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ca226fe nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ed857e4 nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0fa70672 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13348142 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14583b9f nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16952231 nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16eb0e15 nfs_try_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x192e8ec3 nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1aa63e20 nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b25013d nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x236916aa nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x238d813d nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x241fedc7 nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a0772ba nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a8010e9 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a9afaba nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c0843de nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2df8ba94 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3479a6e9 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34f6b7af nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e3d0a5 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3bc2c019 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ebc80c3 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x425cce74 unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42656ee1 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45870b55 nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x480902b7 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50400e41 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51017291 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51582c9b nfs_file_fsync_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54073fa9 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x549268b6 nfs_fs_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x549d0a6a nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59a49f54 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b7127ea nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b7a9ea8 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e6b5dae nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6081053a nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63692700 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6429d42d get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x654f9d77 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x660142b0 nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x682a2e5b nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b730554 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ccafc00 nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7097b50a nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72fa3abd nfs_file_splice_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76aee407 nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78f45945 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8336bcce nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8340439c nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84100a2d nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8569fbcb nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87f138b2 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89a5a03d nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89e8d19e nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a11e096 nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d1e623f nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e3978e7 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92c443f5 nfs_clone_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93ca8dd7 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9826bea8 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98cef1f7 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a328663 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a68c9f1 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ba7fc55 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c08bf12 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9dd351e2 nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ec27ad7 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa19fd4bd nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2992edc nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa78ec9f4 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9b556fe nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa14361 nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab507d90 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac144f49 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac19f8de nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xace8c698 nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad6b68b6 nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb198b1d6 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1ae4a5f nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb31a5872 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb37da90f nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb441d6ee nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5574c40 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd418766 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe20f145 nfs_fs_mount_common -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe4a1744 nfs_pageio_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbfbe2265 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc15b5f39 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc39fb419 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4591417 nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5906c76 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc4f5405 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcce0cc71 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf8b98f2 nfs_pgio_data_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd14408f2 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd25b3bab nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5616b85 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5b7289d nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6cbd1a4 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9223cdb nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9ab254c nfs_fill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbb6a5a0 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1898cbe nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe377e449 nfs_destroy_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7dbc1f9 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea354f4c nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec8e250a nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xecba604d nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee51eb52 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2df1052 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3ed9ac1 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf83105fe nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb747ef2 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfcd5ca28 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe4b04e3 nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfecfc0d1 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff086224 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xffe28a0f nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x8cac92dd nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x00236b7e nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x037993e3 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08e07a57 pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0d65254d pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1658593c nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1cd1ef4d pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1d7e22a2 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1e824ce1 nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1e9b30f9 pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x276cce73 pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x311d32ef nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c8b2841 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3f87cc78 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x432cb8e9 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x449c50f5 pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x451df9c1 nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4ab56cff pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4d88dcb2 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4f667c75 pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x50a78c71 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x573c1085 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x596f6669 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63d71669 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x66bfed88 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x68befb8e nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x729e8cc6 __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x737c4cd2 nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x74b8e577 nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8164e753 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x848c7d06 _pnfs_return_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8595eda4 pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x89406f33 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8bb3696f nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9324220d pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x933e6009 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9dc1b96e pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa075f2ba pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa0d609e3 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa3f83416 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa85eeeca nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaa0b0a91 nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xabc6c776 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xae57df7d nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb30f007f nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb3b2b45c pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb3cc296d pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5c036e1 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb908aa3d pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbd4193f1 nfs40_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc14f8d8c pnfs_put_lseg_locked -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc171b767 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xca05a008 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xca810620 pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd2a2ad5d nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd7f661fe nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe3460e94 pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe9600f3b pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed47dbbc pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf3346abb pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf3b40b25 pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf53047fa nfs41_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x15de0e53 locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x8fadc5b0 locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xe837954f opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x8363dda9 nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xe98d82af nfsacl_decode -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0b124eaf o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1cb231d0 mlog_not_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x282df55c o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x3ab8078d o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x59aafc97 o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa9f5379a o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xdf5ec43b o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xebd444b6 o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfc78fac1 o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x16b8052c dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x1d7ed91a dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa251d977 dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xbd1b4930 dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xf5175409 dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xf5a93f1e dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x249c7552 ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa351d367 ocfs2_plock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa99a6a51 ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version -EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq -EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures -EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats -EXPORT_SYMBOL_GPL kernel/torture 0x3fbb8eaa _torture_create_kthread -EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb -EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random -EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait -EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop -EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end -EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init -EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init -EXPORT_SYMBOL_GPL kernel/torture 0xaa77fb9f _torture_stop_kthread -EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin -EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin -EXPORT_SYMBOL_GPL kernel/torture 0xcf7c918a torture_shuffle_task_register -EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init -EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end -EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init -EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping -EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress -EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x502ef512 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xae143f88 notifier_err_inject_init -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x021957e1 raid6_datap_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x0f8a2742 raid6_2data_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xd4cb6873 raid6_call -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x2d107b5e base_inv_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x41ecf87a base_inv_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x72eb4ea9 base_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x767b8ba8 base_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x8d490167 base_inv_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x9af6b231 base_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xdba4feef base_inv_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xde0e6eb2 base_old_true_key -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x1d9444bf lowpan_header_decompress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xf82ab576 lowpan_header_compress -EXPORT_SYMBOL_GPL net/802/garp 0x35b7638b garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0x45e39638 garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0x5b9847a2 garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0xa7f22b47 garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xd3a4ef11 garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0xdcd09b3c garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x0a047506 mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x2cd013dd mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x3773593a mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x782d8658 mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xddbb4af1 mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0xf2d32607 mrp_request_leave -EXPORT_SYMBOL_GPL net/802/stp 0xc31aa6aa stp_proto_register -EXPORT_SYMBOL_GPL net/802/stp 0xe7304a53 stp_proto_unregister -EXPORT_SYMBOL_GPL net/9p/9pnet 0x2e5d8eda p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/9p/9pnet 0xdb7faffa p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier -EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier -EXPORT_SYMBOL_GPL net/ax25/ax25 0x0b0eac73 ax25_register_pid -EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast -EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x274ecf31 bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x290e7d57 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x296057fd l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x4d320592 l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x55cc53f1 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x5b09cb7a l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6601fd75 l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xdc799747 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable -EXPORT_SYMBOL_GPL net/bridge/bridge 0x0456c758 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x11984861 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0x504c2db4 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x585eac65 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb5de85c7 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc6bf08c5 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf58aee5e br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf86dd1f5 br_deliver -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x20590552 nft_bridge_ip6hdr_validate -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x86cd9b62 nft_bridge_iphdr_validate -EXPORT_SYMBOL_GPL net/dccp/dccp 0x022a8abb dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x02701486 dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x09a123b7 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0x14b80968 dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x178d8ff5 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x19724da9 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2d0a9edf dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x31026450 dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4490eb70 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x44a29338 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4c914dc8 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5034dece dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x511b973f dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x595a587e dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5a1d1820 dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x68b35e53 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x69f298b0 dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x75e404e9 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7c6bb17f dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x83162d8c dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x964b061a dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa29c3b3f dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa5610879 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa5fa86a7 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb0596156 dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbc8ac681 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc65c7efd dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0xca2ab20d dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe1afa795 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0xedc30d86 dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfa3ca275 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfb99e23a dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfbb2f37a dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfd810f0a dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4d50e5f4 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x71506759 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x85aee5de dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb1c8af7d dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc8404e33 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd50a83c3 dccp_v4_connect -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x480315ef ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x48e74295 ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x49a380c1 ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x5716fbd0 ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ipv4/gre 0x0f441362 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0x3a1f7f6c gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x43ae8c01 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8db4f827 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa6c2648f inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb2a282f2 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xcd51c72d inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfe393ec9 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xcd640586 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x156b838e ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x17651cd1 ip_tunnel_delete_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x19c082bc ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x35e9eb5d ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x37fd772c ip_tunnel_ioctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x68e1d29c ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6ea719bf ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x70a7ea1c ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8f6cff9b ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9cc9ba00 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xae39822b ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb29ec2fc ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb5a4deeb ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf5fa9745 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf7cdf94c __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x37ba3a28 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xf77b2e76 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xe287ecdf nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x0e500626 nf_nat_ipv4_out -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x1be7e15e nf_nat_ipv4_in -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x1c8eafa3 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xe0c5a826 nf_nat_ipv4_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xf9ed7709 nf_nat_ipv4_local_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x509fa32d nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3e73aeac nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x75df1628 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa4154bae nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xad1677f7 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xaf8178a6 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x77341adc nft_af_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x24667925 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x4bf934c7 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x5e0860c6 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x751905d0 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xdff69087 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0a87ccda udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2bb1535e udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x5c017f4d setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc76c1806 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x2093112f ip6_tnl_dst_init -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x30f04ba8 ip6_tnl_dst_set -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x3b68f23f ip6_tnl_dst_reset -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x75e49cce ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x8089e458 ip6_tnl_dst_destroy -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x9e9c73cb ip6_tnl_dst_get -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xfe82c82b ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x30b60e9d udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x6f2eff81 udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xb6fe88f2 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x10215010 nf_ct_frag6_consume_orig -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x851cb138 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x22790dc9 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x15681d74 nf_nat_ipv6_in -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x19582eea nf_nat_ipv6_local_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x81d99c36 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x98e7f031 nf_nat_ipv6_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xb11b6eaa nf_nat_ipv6_out -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0xea9a4775 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x7ef795c9 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x96da8fd0 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd6d5a837 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xf3073e55 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xf907d0b2 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0xb2acd74f nft_af_ipv6 -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0ae9a1e1 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x10cee256 l2tp_session_find_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1c48c86f l2tp_session_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2cbdcca0 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2eec7465 l2tp_session_queue_purge -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x43538a75 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4d8275f7 l2tp_tunnel_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5ec9d198 l2tp_session_free -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x65fc4e49 l2tp_tunnel_closeall -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8e4e8d6e l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9c0a2fbb l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc2cdc847 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe275e9ec l2tp_tunnel_find_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xed3a7b52 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfa97cd34 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xffabbc38 __l2tp_session_unhash -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x270fa6e2 l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0891bb50 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1baa3be4 ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x301516f5 ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x36264b42 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3da3861f ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x48c8da00 ieee80211_iterate_active_interfaces_rtnl -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4e6a1d52 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5d8d81ec ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6e367810 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x802e9406 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8b903c22 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa33db093 ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xad0efcfd ieee80211_set_key_tx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb00b441a ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe4da9c3f ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xec8883dc ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf589a000 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf9fa191d ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x4f23b469 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xcf520a84 mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xd67e8843 nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xebf0a090 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x21a7c3db ip_set_get_ip_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x39376f6d ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x656d154c ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x758f0bcc ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8df6ba37 ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8e932548 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x96319d91 ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9b3762c5 ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9c89e867 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9f071646 ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc2c74a45 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xca17bcf6 ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcabc7fbc ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xeb50e79b ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf78dfb7f ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xffde0ddf ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x0f00b9f9 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x3683b810 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x98370690 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xcbe37ab3 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x03a00ea8 nfnetlink_parse_nat_setup_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x065f2231 nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x07cfd8c0 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x088fc5df nf_connlabel_match -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10a494ac __nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x111b6b9e nf_ct_l4proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x12ff1982 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1368b02c nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x150119b7 nf_ct_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x158a13b2 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x198a8d82 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x19a84fc9 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1e70a1ab nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f9bda07 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x22a5855c nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2531e1d9 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2905ccf9 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2cc8ebd2 nf_ct_l4proto_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2e28255d nf_ct_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x30b77b56 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x34de9860 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x35fda94e nf_connlabel_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3838d8b9 nf_ct_iterate_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b2ea8cf nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c1a0ba1 nf_conntrack_l3proto_generic -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3da0fe0f nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4088b6fa nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x42f6a4a6 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4302037e nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44d21619 __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44d7cd13 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x496c5c13 nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ab5dc1c nf_conntrack_l4proto_udp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4adde19d __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x58346323 nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d863626 __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6252e5c3 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x629ae157 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6adac265 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6dbdf508 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f10b959 nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6fafb841 nf_ct_expect_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x70809961 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7087d3f5 nf_ct_get_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x73269528 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7883be9e nf_conntrack_l4proto_udp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7d240ca0 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x822d55c5 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x880ab31c nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ce0f949 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8fb3bc7c nf_ct_l4proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9304aa9d nf_ct_l3proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x94891c4e nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9789534b nf_ct_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9a457fff nf_ct_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c43806a nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c8a4361 nf_ct_expect_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaae8f949 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab7a3c09 nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xacee88fb nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb735109d nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb767c97e nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb939e633 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc0d810d9 nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2abd2fd nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc540c605 nf_ct_l3proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc589f63f nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc3474d1 nf_conntrack_l4proto_tcp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcfa559d9 nf_conntrack_set_hashsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd1c455c7 nf_ct_l4proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd1cbede4 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd5b83588 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe210676d nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea49e2ee nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf4894635 __nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf7c9e29e nf_ct_l3proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf8da89c0 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfac96d0b nf_ct_l3protos -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfc2ad7fe seq_print_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe021653 nf_conntrack_l4proto_tcp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xb678eaad nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x42d15a89 nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x508fcf24 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x2badc305 set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x436c80d0 nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6132ab47 set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6c227a4b nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x849ee68c nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x884fd38f set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x9d5a31b2 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xac28275f get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd1420e7a set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe384ab96 nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x5de087c1 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x35f989f0 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x5a540cc4 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xc7c81f14 nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xd71bfbb9 nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xa43ce7c8 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xbed4cdca nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1aa4f132 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2bc09794 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7573e853 ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x79cb44cd ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8b813426 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb6d17ef7 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe0fd63ce ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x40197064 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x16a6fe5c nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x0da4ebe9 nf_log_dump_sk_uid_gid -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x1b6e5be1 nf_log_dump_tcp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x374b6b59 nf_log_dump_udp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x455bb138 nf_log_dump_packet_common -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x268ddec9 nf_nat_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x359bd7f7 nf_nat_l4proto_unique_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x584e5fc6 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x613a8c4f nf_nat_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x996554b1 nf_nat_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa5323388 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbeb0e947 nf_nat_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf07827a8 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfb91769c __nf_nat_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x60773bf5 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x8563fb85 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x6b3f7ce1 synproxy_tstamp_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8841d39b synproxy_build_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9ce85cbf synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x041d2c0e nft_set_gc_batch_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x15934938 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2a2028a3 nft_validate_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3a382ec1 nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3b746223 nft_unregister_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x53db625b nft_register_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x573779a3 nft_register_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6a6f05f0 nft_unregister_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6ea535ae nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7ebb6551 nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x82bf08e9 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x84b51694 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9c8e5a4e nft_unregister_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbb9a989c nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcc191867 nft_register_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf6f261b nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfd4ba3e9 nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x53d5c1ef nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5f2411f3 nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x799292f6 nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7df10808 nfnetlink_alloc_skb -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x8a4e29b0 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xaf8a962e nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xcc6fdebd nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x732343b4 nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xf92f1b74 nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xfbbc8415 nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0xbf8f71ab nfulnl_log_packet -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x5735f057 nft_masq_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x6151b9ff nft_masq_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x7f9124cd nft_masq_init -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x57141111 nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x8ec224c6 nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xda9e85e3 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xdd9a927e nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xf004cb3d nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xfddcad43 nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x21404ddc nft_redir_init -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x26f4fb9e nft_redir_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xf1b7f5b6 nft_redir_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xf7ce98ee nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xfec52c39 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x16f885f9 xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x23e993f7 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3489f728 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3dbfac06 xt_hook_link -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3f1ef70a xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6c8133be xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8d03a2f0 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x92af20fa xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa4f31cf6 xt_hook_unlink -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb357c1b6 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdd4a5d42 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe9f0daad xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xef7d969e xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfba78d7b xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x57909dc1 xt_rateest_put -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xd0f26ea3 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x4d8701ba nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xd9c2df26 nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xf580f8fe nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x08d02907 nci_uart_register -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x399fa2ee nci_uart_unregister -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x3cdda86e nci_uart_set_config -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x08b94c95 ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0dc18c45 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x16d1251a ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1f313ad4 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6fe3f637 ovs_vport_deferred_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x701db216 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7bd96ddb ovs_netdev_detach_dev -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa9d33625 ovs_vport_receive -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xaadbd623 ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id -EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x27c5614b rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0x29fa5dad rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0x2a5cf89e rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x3a1e9c96 rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0x3e79df29 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0x4622b59b rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x4ff240c7 rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x6c192039 rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x72ee2cc5 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x8a4d93a7 rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0x922f9461 rds_page_copy_user -EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x981054a0 rds_send_get_message -EXPORT_SYMBOL_GPL net/rds/rds 0x9f881e48 rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0xa9f2b353 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0xb3e38738 rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc2f8ef86 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0xc5404893 rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xc642cc2c rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0xc7117ea6 rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0xd075fd00 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xd23ce9e7 rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0xd7290a73 rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xdb8ffc38 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xeb785175 rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xec2074cb rds_conn_destroy -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x31890007 rxrpc_unregister_security -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xb0aec96e rxrpc_register_security -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x0638addb gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8adfb9e0 svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xe5c0b9e0 gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00346e1a rpc_protocol -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0142af05 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x032a9f9b svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x038ebbc7 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0479d502 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x081b761d gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x090128af rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09f9177e rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a9e3dbb cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f2b4192 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ff2d89c rpc_rmdir -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x108bfd96 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1135ff8c rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16060cf8 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17881a93 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17d98bfd rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19adee34 rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bb151de svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c7bf399 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d71ece4 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1da4b62c svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e40c41b xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e693552 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ec71f84 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ece1c20 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f836035 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ff72c64 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20c1b757 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x228105fe rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x240dec9b xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24beb62a rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24c9ce03 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24dd38e6 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26d0a0aa svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x271a6d71 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x284e2fc3 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28c3e87e cache_seq_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29845422 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a01cbc1 rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b6b9569 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30e7ea66 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x310f7d50 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x318284e9 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31fab267 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33d0346c read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x350a797c svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x376c28ff rpcauth_key_timeout_notify -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x391e2624 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a164963 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a1d0ea0 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3aa8004e xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bdf289a rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3be97fa1 rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fc7387b rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fec007b bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41275d36 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x434ce5b1 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x436c6c6d rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4445f189 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44a049f8 svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46142b7f xprt_lock_and_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46b29d78 rpc_lookup_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x472d09eb rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47b31ca8 xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49260100 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a4b5329 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a71f5ff rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ac6982f xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b9747a1 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d561a4e rpc_get_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e1dc7f7 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e34aefe xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f40a704 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f674bfe rpcauth_cred_key_to_expire -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50dd5e41 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52cc1626 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53fc680a xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x550b7fb5 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58821a78 rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5925d00a svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b5898be rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c44a2d0 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cd2c928 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ce45e0b svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d81f9d1 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f7dd3ad xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61904ccd xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62fb8a42 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x630e4f67 xdr_skb_read_bits -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x644abe98 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x673e149a xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68a47057 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b65c971 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bd011e1 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c13d402 cache_seq_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d00e788 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ee51848 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71b79f62 rpc_lookup_cred_nonblock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x723fa6e8 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73466131 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7476108c rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74c6afc0 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x771d0b84 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77ca6ebf rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x785f7f4b rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79ce61df svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c8155c1 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f28d5f5 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83b43a3a xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84e8329e xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85c39f3a rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x885e893b xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c128c5e rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c32c04a rpc_print_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c6f8cda rpc_task_reset_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cf6960c sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8dea0c25 svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f914031 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f99e20f xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fa0f31a svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90a631ad svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91ed74dd xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x925f6017 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95b5ea5f svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a10d2c8 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9bc6c220 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c08ad29 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d654ebe sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e69e49f rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa158a103 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa549b07d xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9e2d45b rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa8d1277 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab0d979d auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaec1087d xprt_set_retrans_timeout_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaed9d194 xdr_set_scratch_buffer -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb18818ab rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb394d1e7 __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3d0a3bd xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4c8be55 csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb539362c rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb73211bd svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb73c0041 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb75c96c7 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb795726 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbba7b481 cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbcb0101 cache_seq_stop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbf04421 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbde29ff0 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfe282d1 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc005c407 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc00a2cef svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1885625 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc23925d4 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2fb4b6a svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6855336 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7e399a7 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc89b2b23 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc89c531c xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8a705e8 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9986d22 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca11941d svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccb68416 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd036066f rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd123c8a9 sunrpc_cache_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3a378b2 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd441cd0c svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4b9edd4 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd907880e cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda3b9234 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda822df7 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb4f2de9 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc31ed9d rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcaeed14 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcee36ae xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd2af746 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde4d445a svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe329e7ba rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe42892b0 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6291da4 rpcauth_generic_bind_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe696217c rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec403fa8 xdr_partial_copy_from_skb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecaa452b rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0409dd8 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf18f8456 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1ea3b81 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf43b3265 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf489f8c3 rpc_lookup_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5a63582 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf64e3d41 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7b58b27 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7fb9073 xdr_buf_read_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf939047d svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc2c4f12 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfda687a9 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff56d6ad xprt_set_retrans_timeout_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff738f5b rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfff4e691 rpc_call_sync -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0a3562a0 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0a35f74b __vsock_create -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0b939084 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4217fba0 vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x452e12db vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6a5eac1a vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x74e91915 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x99b48f38 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa06f90fc vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb059d4df vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbde05a88 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd462fac6 vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd53eb765 __vsock_core_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe44f612a vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf593c40a vsock_pending_work -EXPORT_SYMBOL_GPL net/wimax/wimax 0x03eedc84 wimax_msg_alloc -EXPORT_SYMBOL_GPL net/wimax/wimax 0x0ca1fe63 wimax_msg_send -EXPORT_SYMBOL_GPL net/wimax/wimax 0x1204e61b wimax_msg_data -EXPORT_SYMBOL_GPL net/wimax/wimax 0x369f637a wimax_msg_data_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0x43206c0a wimax_report_rfkill_hw -EXPORT_SYMBOL_GPL net/wimax/wimax 0x7a1109f1 wimax_state_change -EXPORT_SYMBOL_GPL net/wimax/wimax 0x913092b0 wimax_state_get -EXPORT_SYMBOL_GPL net/wimax/wimax 0xa605cbb2 wimax_dev_rm -EXPORT_SYMBOL_GPL net/wimax/wimax 0xabdecd5a wimax_msg_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0xaec66b5f wimax_msg -EXPORT_SYMBOL_GPL net/wimax/wimax 0xc36a16ac wimax_dev_add -EXPORT_SYMBOL_GPL net/wimax/wimax 0xd462db51 wimax_report_rfkill_sw -EXPORT_SYMBOL_GPL net/wimax/wimax 0xe641159e wimax_dev_init -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x310bb6a8 cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x35451f6b cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5737e133 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6b838450 cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x97714542 cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa39da59a cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb0c10c4d cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb1d4f2b7 cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xcb44a009 cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdf00e75e cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xeab5cee3 cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfccd9748 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xff6b2edd cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x08261400 ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x418f09ae ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x78fbeefd ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xfebc3ee8 ipcomp_destroy -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x77e45908 snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xf714ce8e __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0ab34b91 amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0ed830ab amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x300ea371 amdtp_am824_set_pcm_format -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x32ab7640 amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc1730f05 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc5f52728 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xecfc4a6c amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x06b8250c snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x07875852 snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0f1b0cc6 snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0f6d4932 snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x13a3ca4c snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x17e50235 snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x18f15a8a snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1c9cb2a3 snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x255fe4fd snd_hdac_bus_queue_event -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2a8afef7 snd_hdac_bus_remove_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2d272ae5 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2eab1b0f snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3148ef1f snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x31f5a43e snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x322c4859 snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x33e16f9f snd_hdac_refresh_widget_sysfs -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x33f839a3 snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3441ba34 snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x345f19b2 snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x378bba79 snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x37a55186 snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3baf58f4 snd_hdac_bus_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x475749b2 snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x484f8329 snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x49413c3d snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4ad9732d snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4bd1eedc snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c995392 snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5311184f snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x53ae54f4 snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x62d1f253 snd_hdac_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x688c78dd snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x71425c53 snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x729770fd snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ec580e4 snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fd5f742 snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x812c7991 snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x86431bfd snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x88d65f4f snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8a01f973 snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a3be593 snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa13321c8 snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa39304cd snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa3ab4d6f snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa5de8f18 snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa655955f snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb3741404 snd_hdac_bus_add_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb6329d12 snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc2998b9b snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc88acee6 snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc8dc4a4a snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcafb3cfb snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd35deeb5 snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd4075b4c _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd449497d snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd44dff9a snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd4f69de0 snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd5249469 snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd6403819 snd_hdac_make_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd81d7882 snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdbe12ac9 snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe2959df1 snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe7825bd2 snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe805d7a4 snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf279a8f1 snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf3cf4fb3 snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf4ec0eb9 snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf66bbbc2 snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf69f8826 snd_hdac_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfaa140f1 snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfd3ec0a1 snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x1997cec1 snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x1f8f3cec snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x27e05eac snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x6216af9b snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xb931efee snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xcc31d77b snd_ak4113_create -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x024e341f snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05bef204 snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0642da15 snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x06ce6dc5 snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0903e0d5 snd_hda_register_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b94facc _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0bca0ae1 snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0dd02c49 snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12f1eefa snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13800b44 azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15a22c07 snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16dad70d snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18cd7464 snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ad90129 snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c580655 snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1fbd3d29 azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2010f945 snd_hda_bind_vol -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x217b7464 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2194c252 hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x22fea336 snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x23e75f87 snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2756c271 snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a97888d azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2cdb19fd snd_hda_mixer_bind_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d8e760d snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2fa561c2 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x302c80c7 snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x305a9642 snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30beb269 snd_hda_jack_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3641b3e2 snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ba653b snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b47956b snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3be2545c snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d35efae snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3fd3ec4c snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x45793641 snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4d757a5e snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4def43fa snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f24c377 azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f2637ab snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4faede25 snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x514861d4 azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x53475079 snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59f73f2c snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c43f823 snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5cfb6955 snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f878a12 snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6704f145 snd_hda_mixer_bind_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6838b73f snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d3427d6 snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d6b3d5d snd_hda_mixer_bind_ctls_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7235842f azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x738e5a98 snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a86e4c5 snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b6f90b9 snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8011e13b snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80d7340b snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x83828b58 snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x83ae850c snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8bacd17a snd_hda_bind_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8bfa4a06 snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c36b79b snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d71e896 snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93906a0b is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x993e712f snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a478918 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa0002e47 snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa195b328 snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4589cca azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa6474d02 snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8b67e1c snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa0bcee6 snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xab2f7696 snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0795ad9 azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb141a919 snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2e2b4eb snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb37b5890 snd_hda_jack_detect_enable_callback -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb46ee3a3 snd_hda_jack_detect_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb5e8a97a snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7a60e44 snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba7e4084 __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbda6e393 snd_hda_mixer_bind_ctls_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbf189e79 azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc0e4d9e4 snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc211e849 snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc2310049 snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc391897d snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3ad92b5 snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc4e9e99e snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7e95f23 snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb8b0373 snd_hda_mixer_bind_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcbc44eb4 snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf24494e __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd06bb990 snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0e812ed snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0eed35c azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd20a1d4c snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd3685a38 azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd47f5fc2 snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdbde3695 snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe2c6c3c9 snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3d96535 snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe544980c snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6e294bb snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe774b659 snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe8b94723 snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xebfccd6e query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xec4fd149 snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeca53b7c snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xee8c284a hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeed9865b snd_hda_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeef3c569 snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf03419b6 snd_hda_jack_tbl_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf10e98e4 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1779d5f snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf32a8149 snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf4f6ee89 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6231267 snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf623ddfd snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6790b2b snd_hda_mixer_bind_ctls_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6bd0457 snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfca58847 snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfda0168d __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe7be918 snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0950a156 snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x248a4ec1 snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2999c080 snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2f6a7c5b snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x364ac8e1 snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x410996e4 snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x432983f7 snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x48228890 snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4b69eb30 snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5b81b2e9 snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x70527bc7 snd_hda_get_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x87d18f90 snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x91db8926 snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x92ce0bbc snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa61b622c snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xaa92b96e snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb6e7d123 snd_hda_parse_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xcd4b3078 snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe27444ac snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe6d26203 snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf79c1a9f snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x2371e14e cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x852b36aa cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x32f922ca cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x4d656788 cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x5d7ec08e cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xe4575bcd cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xe4694c9f cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x082eeac2 es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x966e0bba es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0xa71c4ce9 max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98095 0x3359fcbd max98095_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x5964adcb pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x658518ca pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xa78844c2 pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xce715095 pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xe5656f4a rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x458a759b rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xfb3ef510 rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x74bf48ac rt5677_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x67057ff1 rt5677_spi_write_firmware -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x952df541 rt5677_spi_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xdc9e2327 rt5677_spi_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xadbf8f0c devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xb09eaf35 sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xdd112d95 sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xe725b9d7 sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xed05a075 sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x77007130 devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x5390f7b2 ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x8c6705e4 ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x5b2a99d8 tpa6130a2_add_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x8b9ad0c1 tpa6130a2_stereo_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xd122756f ts3a227e_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x2567a39a twl6040_get_dl1_gain -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x517b7842 twl6040_get_hs_step_size -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x7cb1ec2e twl6040_get_trim_value -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0xc95714af twl6040_hs_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0xe7925827 twl6040_get_clk_id -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x0cc23586 wm_hubs_vmid_ena -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x14e597c8 wm_hubs_hpr_mux -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x2d39f423 wm_hubs_hpl_mux -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x41423255 wm_hubs_set_bias_level -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x54f64e9f wm_hubs_add_analogue_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5cd7eb9b wm_hubs_dcs_done -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x757206d5 wm_hubs_spkmix_tlv -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x7e13131b wm_hubs_add_analogue_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x8c536927 wm_hubs_handle_analogue_pdata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xe716b898 wm_hubs_update_class_w -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x394f392a wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x4eb9c808 wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x71b7bd43 wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xbcc0ac93 wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xaecc39b3 wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x2745a803 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x3432073c wm8994_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x5d63eacb wm8958_mic_detect -EXPORT_SYMBOL_GPL sound/soc/davinci/snd-soc-edma 0x5030bb06 edma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x0ae97236 fsl_asrc_get_dma_channel -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xe57eab85 fsl_asrc_platform -EXPORT_SYMBOL_GPL sound/soc/omap/snd-soc-omap-mcpdm 0x184bb4df omap_mcpdm_configure_dn_offsets -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x04960e38 asoc_qcom_lpass_cpu_dai_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x81c9abab asoc_qcom_lpass_cpu_platform_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x84390c5f asoc_qcom_lpass_cpu_platform_remove -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xf2310422 asoc_qcom_lpass_cpu_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0x1aea00d3 asoc_qcom_lpass_platform_register -EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-idma 0x776c599d idma_reg_addr_init -EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-s3c-dma 0x1d564a00 samsung_asoc_init_dma_data -EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-s3c-dma 0xc6c524e5 samsung_asoc_dma_platform_register -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x9facb8e2 tegra_pcm_platform_register_with_chan_names -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xa6fa6136 tegra_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xc95f30d3 tegra_pcm_platform_unregister -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-utils 0x1e61ab18 tegra_asoc_utils_fini -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-utils 0x1e7b35a5 tegra_asoc_utils_set_rate -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-utils 0x543d4bbb tegra_asoc_utils_init -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-utils 0xabeb0ebc tegra_asoc_utils_set_ac97_rate -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0x0d54c9b9 tegra20_das_connect_dap_to_dac -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0xb52cfca4 tegra20_das_connect_dac_to_dap -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0xbced7431 tegra20_das_connect_dap_to_dap -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x04ecb471 tegra30_ahub_allocate_tx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x55a40206 tegra30_ahub_disable_rx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x5d7237ff tegra30_ahub_set_cif -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x6fe20143 tegra30_ahub_set_rx_cif_source -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x72a91a91 tegra30_ahub_allocate_rx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xb419329b tegra30_ahub_disable_tx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xb4a9367d tegra30_ahub_enable_tx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xb81bca9d tegra30_ahub_free_rx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xc78c7125 tegra30_ahub_free_tx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xccb67e55 tegra124_ahub_set_cif -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xccc98372 tegra30_ahub_enable_rx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xe549513a tegra30_ahub_unset_rx_cif_source -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x103ece5d line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1880319a line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3fdcd1ce line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4c2dcdf8 line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x54dee2ea line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5ad52350 line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5d4ecb8a line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x61db6d24 line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x62905daf line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6a85d968 line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb36d2ff8 line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xeda21742 line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf34d266a line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf3c62a2f line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfe050da3 line6_disconnect -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x3fe35aea irq_bypass_unregister_consumer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x418873cc irq_bypass_register_producer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x888c5be5 irq_bypass_register_consumer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0xf6e772c3 irq_bypass_unregister_producer -EXPORT_SYMBOL_GPL vmlinux 0x0008aeeb devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x002acb04 spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0x00543de0 irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x006a5394 tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0x0097d28a __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x00bae356 rtc_irq_register -EXPORT_SYMBOL_GPL vmlinux 0x00bcb642 find_vpid -EXPORT_SYMBOL_GPL vmlinux 0x00cff1ad stmpe_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x00eba5e9 mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before -EXPORT_SYMBOL_GPL vmlinux 0x0112fbba xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish -EXPORT_SYMBOL_GPL vmlinux 0x0133a97e apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0x01366308 snd_soc_dapm_sync -EXPORT_SYMBOL_GPL vmlinux 0x013aa668 fsnotify -EXPORT_SYMBOL_GPL vmlinux 0x01630ec5 snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL vmlinux 0x018eace4 spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0x018edcce cpdma_ctlr_dump -EXPORT_SYMBOL_GPL vmlinux 0x01a75cf0 stmpe_block_read -EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01f5384a usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0x01f6c29e devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0x0200b1d3 get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x0210454a extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0241c7ae invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0x02460dde gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x0279d228 devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x027b6181 dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0x028045d6 platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x02871c99 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0x02b1121a gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x02bd074b usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0x02ce8610 regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x03083522 devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id -EXPORT_SYMBOL_GPL vmlinux 0x032375b0 hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x03310ea2 crypto_init_ahash_spawn -EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x03501e86 blk_queue_flush_queueable -EXPORT_SYMBOL_GPL vmlinux 0x035354ab spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0x03623cbf sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x03669cbe irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x036846d2 pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0x0368542d __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x0379cee9 sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL vmlinux 0x037f093b balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0x03a3d808 sm501_unit_power -EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode -EXPORT_SYMBOL_GPL vmlinux 0x03e44983 ata_base_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x03f34eb9 __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x0402b504 __percpu_ida_init -EXPORT_SYMBOL_GPL vmlinux 0x042002bb blkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x04387e47 usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x04620be6 crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x04687e67 serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x046d6bf0 fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x047cf436 __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x048d152a ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0x04bc9ffc led_trigger_show -EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04cd2cb7 task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0x04d1130d pinconf_generic_dt_subnode_to_map -EXPORT_SYMBOL_GPL vmlinux 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL vmlinux 0x04f4bd8d percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x050cb70f ahci_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x05208e81 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x05241c20 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x0527c167 sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x05542702 leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0x056d644c __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0x0590db21 wm8400_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x05dd1266 _gpiochip_irqchip_add -EXPORT_SYMBOL_GPL vmlinux 0x06114741 pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x06153a59 ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0x0618170b balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x06438115 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x064ed2cf netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x06681a61 virtqueue_get_avail -EXPORT_SYMBOL_GPL vmlinux 0x06751eb9 ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0x06a4078f __blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio -EXPORT_SYMBOL_GPL vmlinux 0x06dbfe4a uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x06f4e262 alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0x06f64b7d gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x07032f9e trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0x07049761 get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0x0707fd07 usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x072937ba unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x074068eb fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0x0757c9f3 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0x075e5c84 iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0x07621bf7 pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x07634306 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x07684a40 alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x0797945f snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL vmlinux 0x0797e492 part_round_stats -EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char -EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07bdc5c2 posix_timer_event -EXPORT_SYMBOL_GPL vmlinux 0x07c54153 crypto_ahash_type -EXPORT_SYMBOL_GPL vmlinux 0x07c958d3 tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x07cfa8d8 class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x07fac35d tcp_peer_is_proven -EXPORT_SYMBOL_GPL vmlinux 0x0800c483 sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0x0807d7ae pwm_request -EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0x081c2f75 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x083057fc xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0x0836c6eb ahci_shost_attrs -EXPORT_SYMBOL_GPL vmlinux 0x08493c3a mtd_get_user_prot_info -EXPORT_SYMBOL_GPL vmlinux 0x084f8fab genpd_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0x0858b673 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0x085e902b snd_soc_info_volsw -EXPORT_SYMBOL_GPL vmlinux 0x0875930a of_property_read_string_helper -EXPORT_SYMBOL_GPL vmlinux 0x0877e884 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x08828030 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x0892ae1a musb_writew -EXPORT_SYMBOL_GPL vmlinux 0x089abf9e scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x08adfe44 sdhci_alloc_host -EXPORT_SYMBOL_GPL vmlinux 0x08b2ce27 led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0x08f11df5 ahci_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x08f25a59 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x092b2133 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x092c8ab4 perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0x093af436 platform_device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x0958637c list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0x0967b96f of_prop_next_string -EXPORT_SYMBOL_GPL vmlinux 0x096b63a6 set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x096df3c9 devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x097bc3bd ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0x0983ecd5 devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x098fb4ee vchan_init -EXPORT_SYMBOL_GPL vmlinux 0x0994294e pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0x09ad7a97 __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x09c9e118 page_cache_sync_readahead -EXPORT_SYMBOL_GPL vmlinux 0x09e22fd2 param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x09e7aa42 wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL vmlinux 0x0a118e68 device_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0a3b3762 snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL vmlinux 0x0a48c261 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0x0a58724d da903x_read -EXPORT_SYMBOL_GPL vmlinux 0x0a5e5132 omap_dm_timer_set_match -EXPORT_SYMBOL_GPL vmlinux 0x0a65b5b1 extcon_unregister_interest -EXPORT_SYMBOL_GPL vmlinux 0x0a6b3024 i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x0a806a65 gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0x0a80a166 phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0x0a921f23 blkcipher_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x0a94ac2d devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x0ab2537e irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x0ab308a3 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x0ab7fb82 snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0ab83758 sdhci_set_bus_width -EXPORT_SYMBOL_GPL vmlinux 0x0add754b blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0x0af5c193 dev_pm_opp_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x0afd4610 zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b65e2a2 ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0x0b932790 usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x0ba76805 register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x0bbae511 return_address -EXPORT_SYMBOL_GPL vmlinux 0x0bbba62c of_get_nand_bus_width -EXPORT_SYMBOL_GPL vmlinux 0x0bbda2e1 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0x0bd09e43 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0bff279e crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0c1ed373 md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0x0c1fd328 regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x0c320aec pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x0c4e4013 mtd_write -EXPORT_SYMBOL_GPL vmlinux 0x0c7eefc3 devm_clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0c84da71 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0x0cb64d33 usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x0ccad57c scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0x0ccfaf85 br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0x0d01e180 sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0x0d2260e3 md_is_badblock -EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d6ae5c2 dio_end_io -EXPORT_SYMBOL_GPL vmlinux 0x0d6e9a1e device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x0d96c82a serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0x0d9b98bd scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0x0dad8e6e pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0x0dcf4546 regmap_write_bits -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0de60f83 regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0x0e16c05f ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0x0e318065 __pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x0e5bb2a5 amba_ahb_device_add -EXPORT_SYMBOL_GPL vmlinux 0x0e7259e2 gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0x0e8a574a cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x0eabea56 __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x0eb148ac dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0x0ebb66de ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0x0edf4f03 snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL vmlinux 0x0ee2e6af regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x0efd9c1d omap_dm_timer_request_by_cap -EXPORT_SYMBOL_GPL vmlinux 0x0f124349 ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0x0f289ac1 look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0x0f2e98b4 i2c_generic_gpio_recovery -EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x0f33c4bb fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0x0f33f93e md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0x0f6b7d19 pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0x0f6e9ed5 tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0x0f807aff pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x0f80dd01 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x0fa1eee0 pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x0fa38c94 fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0x0fb302c7 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x0fdfc6a0 max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x0ff97d06 snd_device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x0ff9af09 cpdma_ctlr_int_ctrl -EXPORT_SYMBOL_GPL vmlinux 0x0ffa93fb gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x103d0bea security_kernel_fw_from_file -EXPORT_SYMBOL_GPL vmlinux 0x104f35e9 debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0x10543a39 dma_buf_kmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0x105cde41 of_genpd_del_provider -EXPORT_SYMBOL_GPL vmlinux 0x106f9c51 cpufreq_frequency_table_cpuinfo -EXPORT_SYMBOL_GPL vmlinux 0x1073f2d6 register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x1099f010 unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0x109a04f7 regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x10a04cf5 mtd_del_partition -EXPORT_SYMBOL_GPL vmlinux 0x10b15e52 pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x10f33a68 shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x10ffec74 crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0x11025677 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0x1113d167 ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0x111f78f2 mtd_unlock -EXPORT_SYMBOL_GPL vmlinux 0x112867b6 tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0x11434fda rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0x11438bd6 arizona_clk32k_disable -EXPORT_SYMBOL_GPL vmlinux 0x1146dc43 of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x1152f491 spi_async -EXPORT_SYMBOL_GPL vmlinux 0x11537736 snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL vmlinux 0x11710484 dev_pm_opp_remove -EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0x11764ab2 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x1183300d irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0x11964fc4 clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x11b22484 regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x11b95d5d regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0x11d839ae posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x1215ad96 snd_soc_add_component_controls -EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x121e09d2 device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x123dfb9c sdhci_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0x12407aae subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x1241e9db usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x12527762 rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x125d89cb usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x1293ebfa srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x12ca90f4 ahci_platform_get_resources -EXPORT_SYMBOL_GPL vmlinux 0x12d61247 devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x12dd45f9 usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x12ddb1a6 platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x12e2000c of_pci_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x13354608 scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0x1338b824 transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x1344a99f fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0x13451233 ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1350d93d crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x135bbe71 bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x13693117 mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0x1371cab8 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0x1373a10c list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x137b5e2c hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x1381d4f3 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x13979951 devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0x13984ba7 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x1399bbd8 __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x13b89dee pinctrl_request_gpio -EXPORT_SYMBOL_GPL vmlinux 0x13bb4133 ping_proc_register -EXPORT_SYMBOL_GPL vmlinux 0x13c69526 wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x13c8b53f rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x13dbe2b4 ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0x13e1864f stmpe_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x13e593b4 pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x13ecf0be __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x13eeb29d pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0x140e6e0a gpiochip_set_chained_irqchip -EXPORT_SYMBOL_GPL vmlinux 0x140f5e67 crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0x1418832b spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0x142f240e pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x14390279 tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0x14403e36 gov_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x1462114a pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0x1487b96d pinctrl_force_default -EXPORT_SYMBOL_GPL vmlinux 0x14a98a21 cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x14ac1b6d adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x14c210a3 snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL vmlinux 0x14cde349 __class_register -EXPORT_SYMBOL_GPL vmlinux 0x14d04840 bio_alloc_mddev -EXPORT_SYMBOL_GPL vmlinux 0x14e46f97 metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x15083ec9 handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0x1510c9e3 pinctrl_dev_get_devname -EXPORT_SYMBOL_GPL vmlinux 0x153b08d3 __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0x156241af cpsw_ale_stop -EXPORT_SYMBOL_GPL vmlinux 0x158559f8 ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x15a34394 snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL vmlinux 0x15a70951 powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0x15a7c21a crypto_attr_alg2 -EXPORT_SYMBOL_GPL vmlinux 0x15b7ef47 dma_buf_kmap -EXPORT_SYMBOL_GPL vmlinux 0x15ea0922 device_create_file -EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started -EXPORT_SYMBOL_GPL vmlinux 0x15f5b31a kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x16002856 max_gen_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0x1610f2b0 xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0x1614c724 bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0x163d3b4d sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0x163fa874 devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0x164d5cda skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0x164ff07b fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress -EXPORT_SYMBOL_GPL vmlinux 0x16532176 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x168fe0ab devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0x16d55cf8 pin_is_valid -EXPORT_SYMBOL_GPL vmlinux 0x16e7d3f1 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0x16f26651 ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x1717a05d omap_get_plat_info -EXPORT_SYMBOL_GPL vmlinux 0x17256fc4 blk_mq_request_started -EXPORT_SYMBOL_GPL vmlinux 0x17405494 mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0x174078b4 pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x1740c4ee exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0x174ca45c sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0x1758a691 crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0x1768d5f6 snd_soc_info_enum_double -EXPORT_SYMBOL_GPL vmlinux 0x176a48a9 tps65912_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x17b17f9e watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x17b310aa regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0x17cdc969 usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0x181c8051 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0x185237b5 ata_eh_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x18543a04 ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0x1859603d ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x186196ae ahci_save_initial_config -EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert -EXPORT_SYMBOL_GPL vmlinux 0x187cc813 blkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x1880ffe9 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x188af33b usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x1891ef92 regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x189b3d16 regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x18c19542 pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0x191cb8a9 device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x192441c6 hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x1927a4c9 gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0x192ebf4b pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x193d04a7 __mtd_next_device -EXPORT_SYMBOL_GPL vmlinux 0x193f5c2a regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x1950b6a7 subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0x1957341e ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1968bbab aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x197267d9 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0x197c5960 blkg_prfill_stat -EXPORT_SYMBOL_GPL vmlinux 0x1990f8ff pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x19910015 console_drivers -EXPORT_SYMBOL_GPL vmlinux 0x19928635 mv_mbus_dram_info -EXPORT_SYMBOL_GPL vmlinux 0x199b598a ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19ad902e __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x19bc2711 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x19d25199 ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x19f7977d phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0x1a134ad6 devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x1a1c4082 mod_delayed_work_on -EXPORT_SYMBOL_GPL vmlinux 0x1a298357 mddev_congested -EXPORT_SYMBOL_GPL vmlinux 0x1a2fe7c1 ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0x1a3975c6 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0x1a6137f7 reservation_object_test_signaled_rcu -EXPORT_SYMBOL_GPL vmlinux 0x1a7e4ad8 mpc8xxx_spi_rx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x1a94ceae skb_gso_transport_seglen -EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table -EXPORT_SYMBOL_GPL vmlinux 0x1a9c0289 cpsw_ale_add_vlan -EXPORT_SYMBOL_GPL vmlinux 0x1aa2d954 gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x1aa98085 blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1aabe552 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing -EXPORT_SYMBOL_GPL vmlinux 0x1ad3eabc da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x1ade903b of_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x1b170e98 dev_pm_opp_enable -EXPORT_SYMBOL_GPL vmlinux 0x1b2b98ca relay_flush -EXPORT_SYMBOL_GPL vmlinux 0x1b3261e0 klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read -EXPORT_SYMBOL_GPL vmlinux 0x1b64286e ahci_start_engine -EXPORT_SYMBOL_GPL vmlinux 0x1b6d6c9a ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x1b85672a xattr_getsecurity -EXPORT_SYMBOL_GPL vmlinux 0x1b86f5a7 ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1b91960f clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return -EXPORT_SYMBOL_GPL vmlinux 0x1baee47b regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x1bb4d1f1 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0x1bb5fc26 atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x1bc57e41 dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x1bf9f8f0 ablkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x1c018680 ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x1c10cac4 of_pci_get_host_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x1c36dad4 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x1c3d0288 mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c587983 devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase -EXPORT_SYMBOL_GPL vmlinux 0x1c716881 inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0x1c754648 dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 -EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1c8d83d6 regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x1c9e39ae pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x1cb99ff6 ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0x1cdd4baa gpiochip_add -EXPORT_SYMBOL_GPL vmlinux 0x1cecee21 tc3589x_block_write -EXPORT_SYMBOL_GPL vmlinux 0x1cf9e287 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x1cfea3e0 ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x1cff6366 i2c_lock_adapter -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d2c7f32 scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0x1d36fd75 __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x1d4abf91 gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings -EXPORT_SYMBOL_GPL vmlinux 0x1d6c996c phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x1d7cb586 clk_register_fixed_rate_with_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x1d9fcad8 omapdss_of_find_source_for_first_ep -EXPORT_SYMBOL_GPL vmlinux 0x1dbf87af fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0x1dcd7742 devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x1de64cd9 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x1e1067e5 usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x1e1cb2ac vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0x1e2abb25 regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0x1e4acae4 of_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1e6512d4 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e7d6157 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x1e8679bc usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1ea1ddf7 class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebb7a0c sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ec23859 do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x1ec6f639 sdhci_pltfm_resume -EXPORT_SYMBOL_GPL vmlinux 0x1ece5042 iommu_domain_set_attr -EXPORT_SYMBOL_GPL vmlinux 0x1eddfdff kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x1efc1357 gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x1f0e1c0e arm_iommu_create_mapping -EXPORT_SYMBOL_GPL vmlinux 0x1f58f3e1 sched_setscheduler_nocheck -EXPORT_SYMBOL_GPL vmlinux 0x1f689687 ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1f774f46 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x1f832206 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x1f99661c spi_setup -EXPORT_SYMBOL_GPL vmlinux 0x1fa3c99e rtc_irq_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1fa72589 phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0x1fbcbee1 nf_register_afinfo -EXPORT_SYMBOL_GPL vmlinux 0x1fe2a5a4 __pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x1ff6c8b8 perf_trace_buf_prepare -EXPORT_SYMBOL_GPL vmlinux 0x1ff86609 percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0x200eefd9 da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x201d8ea3 encode_rs8 -EXPORT_SYMBOL_GPL vmlinux 0x20292ee3 l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0x20423acd usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x20781cc8 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x20869545 mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2097d395 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x20a771f5 extcon_set_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0x20a7d6e4 of_usb_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x20afb8e9 usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0x20cb3366 of_genpd_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0x20d640bc of_usb_host_tpl_support -EXPORT_SYMBOL_GPL vmlinux 0x20fd1155 pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0x210ef0d0 omap_dm_timer_set_int_disable -EXPORT_SYMBOL_GPL vmlinux 0x21228bb1 omap_dm_timer_read_counter -EXPORT_SYMBOL_GPL vmlinux 0x214c430a __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0x215491a1 snd_soc_dpcm_be_get_state -EXPORT_SYMBOL_GPL vmlinux 0x215d6b35 usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0x215d91a7 adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x21790065 ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x2182d647 led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0x21960ce1 init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0x2198faf7 fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21c72bb0 usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21febf58 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0x22225b53 device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0x222471aa dma_buf_kunmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0x22353d14 ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0x22427eb1 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0x22444e56 snd_soc_limit_volume -EXPORT_SYMBOL_GPL vmlinux 0x22595e76 blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x226a674d atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 -EXPORT_SYMBOL_GPL vmlinux 0x22a89b8e __class_create -EXPORT_SYMBOL_GPL vmlinux 0x22ddd205 crypto_larval_lookup -EXPORT_SYMBOL_GPL vmlinux 0x22df50f1 wm5110_patch -EXPORT_SYMBOL_GPL vmlinux 0x22e63625 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x231d70fc encode_bch -EXPORT_SYMBOL_GPL vmlinux 0x2323c74b kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0x2324e79d dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0x232865f6 regmap_field_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x233e9dde dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x236551cc snd_soc_codec_set_pll -EXPORT_SYMBOL_GPL vmlinux 0x236be6f2 __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0x237bba75 snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL vmlinux 0x237e0996 md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0x23861419 regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x238802f0 regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x239f0f4f pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x23c762f3 mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0x23f3d27f snd_soc_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x243b9fc5 uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0x244ad9f2 posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x244c1899 tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0x245caec1 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x24941b17 usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key -EXPORT_SYMBOL_GPL vmlinux 0x24c29f1f usb_gadget_map_request -EXPORT_SYMBOL_GPL vmlinux 0x24cbdd03 crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x24cd5860 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x24d4600a dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset -EXPORT_SYMBOL_GPL vmlinux 0x24f80317 mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x250f6aa0 usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL vmlinux 0x25482ac8 wm5110_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x2548d4e8 platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0x25492174 iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x25686eda pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x2576aefd devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0x257b3a41 vchan_tx_submit -EXPORT_SYMBOL_GPL vmlinux 0x25857d81 omap_dm_timer_get_irq -EXPORT_SYMBOL_GPL vmlinux 0x2592d11a evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0x25a42e4a net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0x25d5299a crypto_init_spawn -EXPORT_SYMBOL_GPL vmlinux 0x25dc2c98 spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0x25e45974 gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0x25e4fa8c btree_remove -EXPORT_SYMBOL_GPL vmlinux 0x25fbdc2e of_mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x25ffa6de ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x26085a7e pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x261098a6 of_display_timings_exist -EXPORT_SYMBOL_GPL vmlinux 0x2616dea3 pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0x2629580e pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x2629cacb cpufreq_governor_dbs -EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock -EXPORT_SYMBOL_GPL vmlinux 0x26373a1e uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x265af428 phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0x265cdf9d __netlink_alloc_skb -EXPORT_SYMBOL_GPL vmlinux 0x266a2f46 regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x266ced9e device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x267b4f32 irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0x2697b17e devm_led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0x26adb815 thread_notify_head -EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x26c133dc pinconf_generic_dt_node_to_map -EXPORT_SYMBOL_GPL vmlinux 0x26c547c0 bL_switcher_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x26c8b665 cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26ca67c0 to_of_pinfo -EXPORT_SYMBOL_GPL vmlinux 0x26d47e17 tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x26e02ba4 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0x26ea0ac4 smpboot_update_cpumask_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x26f2f49d wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x27183fed ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0x27419ac2 tpm2_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x2742cb33 sm501_find_clock -EXPORT_SYMBOL_GPL vmlinux 0x27457198 sock_update_netprioidx -EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0x2795baa3 snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL vmlinux 0x27a186c2 platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x27aa9ac6 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info -EXPORT_SYMBOL_GPL vmlinux 0x27d5a111 soc_ac97_ops -EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x280b00f6 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0x281a79a8 thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x2843a5c8 device_del -EXPORT_SYMBOL_GPL vmlinux 0x2848e50f debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x28722874 dev_pm_opp_free_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x2887afa2 of_clk_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x28917e61 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x289a69a3 usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x28b16bbb max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x29207411 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0x292fadc2 omap_dm_timer_trigger -EXPORT_SYMBOL_GPL vmlinux 0x293aec20 rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0x29513f39 pstore_register -EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0x29b8db3b inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x29bd06f1 inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0x29c616cd pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x29dc3f2c rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0x29e16d97 snd_soc_unregister_component -EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29fa419f decode_rs8 -EXPORT_SYMBOL_GPL vmlinux 0x29ff799d uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0x2a0a16c3 clk_gpio_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x2a0a274e max_gen_clk_probe -EXPORT_SYMBOL_GPL vmlinux 0x2a0e5478 regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x2a145741 imx_pcm_fiq_exit -EXPORT_SYMBOL_GPL vmlinux 0x2a1959ed __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x2a293e4d pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x2a3e6b28 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0x2a4187f2 phy_init -EXPORT_SYMBOL_GPL vmlinux 0x2a4b43d8 tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0x2a507176 usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2a816a05 dev_pm_opp_of_cpumask_add_table -EXPORT_SYMBOL_GPL vmlinux 0x2aae43f7 __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x2ac6c6d9 ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0x2ad9d326 md_ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x2ae137bd usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0x2ae34b4b list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x2aeab832 sdhci_free_host -EXPORT_SYMBOL_GPL vmlinux 0x2aeceb6c splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0x2af2e4b1 component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0x2b08e881 bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0x2b2ca6c8 of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x2b2ecf13 snd_soc_component_write -EXPORT_SYMBOL_GPL vmlinux 0x2b3a1e5c dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0x2b53604c wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0x2b5f2237 snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x2b678ef9 adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0x2b76df20 dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0x2b98ecba devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x2babe81f __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0x2bb9a1f1 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x2c1600d0 sdhci_get_of_property -EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c6194a3 pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0x2c6c1378 perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x2c773d95 register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2ca181f9 pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x2cce5c6e bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x2ce50117 skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq -EXPORT_SYMBOL_GPL vmlinux 0x2cea0a91 usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0x2cefd67e debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d236ff3 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d459322 dev_pm_opp_add -EXPORT_SYMBOL_GPL vmlinux 0x2d49649f devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers -EXPORT_SYMBOL_GPL vmlinux 0x2d7e9f24 crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0x2d8f772e devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x2d9681b6 regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0x2dad9b05 register_jprobes -EXPORT_SYMBOL_GPL vmlinux 0x2db898ba wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x2dcc544a sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x2dd20565 regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0x2dd3ad96 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0x2de681b6 system_verify_data -EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e278f88 btree_insert -EXPORT_SYMBOL_GPL vmlinux 0x2e2e08b7 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2e49da13 pwm_put -EXPORT_SYMBOL_GPL vmlinux 0x2e742b00 hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0x2e8134a7 pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0x2e87e504 arizona_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x2e8d2db6 regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x2e9670c0 pl320_ipc_transmit -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x2ed7284b cci_ace_get_port -EXPORT_SYMBOL_GPL vmlinux 0x2edca14d blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0x2eea162f fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0x2eead55d sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x2ef4d512 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0x2ef6b5bf smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x2efb0cfb regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0x2efeadd6 ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x2f0468ae gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f20ab9b relay_close -EXPORT_SYMBOL_GPL vmlinux 0x2f38a491 vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register -EXPORT_SYMBOL_GPL vmlinux 0x2f5d9629 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x2f6ed73b platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2f7699d1 gpiochip_remove_pin_ranges -EXPORT_SYMBOL_GPL vmlinux 0x2f7f5b23 device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x2f8a1db7 usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL vmlinux 0x2f90da7e trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0x2fc28d7c sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0x2fc7b541 hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x2fd83c0e snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake -EXPORT_SYMBOL_GPL vmlinux 0x2fe63cc0 devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0x2fe7de64 file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x2fec39c0 crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0x300d7e57 free_rs -EXPORT_SYMBOL_GPL vmlinux 0x30299df8 regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0x302cffbc driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x30323c27 pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0x3039b3cf pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0x3039c487 usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x30693bb7 imx_audmux_v1_configure_port -EXPORT_SYMBOL_GPL vmlinux 0x3074cdc9 device_create_vargs -EXPORT_SYMBOL_GPL vmlinux 0x30a2b5f5 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x30a4f4b3 __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x30b2bfa2 xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x30c18d35 pm_runtime_get_if_in_use -EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x30d1a514 usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0x30d3839f regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x30eedaac devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock -EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x31397f2d kallsyms_on_each_symbol -EXPORT_SYMBOL_GPL vmlinux 0x3143de2e crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0x3145bf2c power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x3163a40c device_add -EXPORT_SYMBOL_GPL vmlinux 0x3164e8ca scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0x3166fa65 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0x316dd9c2 get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0x31727f88 pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0x31743b56 pinctrl_remove_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put -EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31ca3a11 omap_pcm_platform_register -EXPORT_SYMBOL_GPL vmlinux 0x3215962b iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0x324cbfbe blk_unprep_request -EXPORT_SYMBOL_GPL vmlinux 0x3258bab1 of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0x325ac982 usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0x32692fc0 snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL vmlinux 0x3288b127 __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update -EXPORT_SYMBOL_GPL vmlinux 0x32988497 of_reconfig_get_state_change -EXPORT_SYMBOL_GPL vmlinux 0x32b342ae clk_register_gpio_mux -EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32c5dab8 uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0x32ceb3b3 bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x32dd31d4 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x32fdf156 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x330b89b7 power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0x331a5112 smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x331c2892 system_trusted_keyring -EXPORT_SYMBOL_GPL vmlinux 0x3320c9f5 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0x333818c1 crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x334867c7 thermal_notify_framework -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition -EXPORT_SYMBOL_GPL vmlinux 0x339dfd6a device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x33a024fb bio_clone_mddev -EXPORT_SYMBOL_GPL vmlinux 0x33d85171 thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0x33e20277 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x33f7d5f8 devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x33fc6ef4 dev_pm_opp_of_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x33fd29c5 pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0x3404717d snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL vmlinux 0x341643ba omap_dm_timer_modify_idlect_mask -EXPORT_SYMBOL_GPL vmlinux 0x3468feaf pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x346ee368 snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL vmlinux 0x347682ce snmp_fold_field64 -EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get -EXPORT_SYMBOL_GPL vmlinux 0x3488b6bd snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3499f996 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x349b62e4 set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x34ead649 crypto_alloc_instance -EXPORT_SYMBOL_GPL vmlinux 0x34ed0a04 of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x350362c4 usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0x350e4a88 wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x35150d73 device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched -EXPORT_SYMBOL_GPL vmlinux 0x351e0ab2 user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x35219bd0 n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0x353766e4 ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x355c7391 dev_pm_opp_get_max_clock_latency -EXPORT_SYMBOL_GPL vmlinux 0x3564ccf9 regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x3591dd2d inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x359fa0f9 ahci_set_em_messages -EXPORT_SYMBOL_GPL vmlinux 0x35d07437 cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0x35d0c16e arizona_set_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x35dcd1f7 trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x35df8fd9 snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL vmlinux 0x35f6afa4 pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x360c0339 __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x360daa1b ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0x36159b10 rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x362e81da tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0x363fc20a kick_process -EXPORT_SYMBOL_GPL vmlinux 0x366456f0 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x366ef43d mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x37114dbb iommu_map -EXPORT_SYMBOL_GPL vmlinux 0x372446e0 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL vmlinux 0x372d8e73 thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0x372e3340 debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x375bcac9 snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL vmlinux 0x37923277 sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0x379c16e6 of_pci_get_devfn -EXPORT_SYMBOL_GPL vmlinux 0x379cc953 blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0x37a21f22 nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x37fb1eda input_class -EXPORT_SYMBOL_GPL vmlinux 0x3802a55a fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0x38145144 regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0x382a5dd9 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x38308b89 relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0x38598929 usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy -EXPORT_SYMBOL_GPL vmlinux 0x386b6a44 alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x387db951 pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0x38814ddc blkg_print_stat_bytes -EXPORT_SYMBOL_GPL vmlinux 0x3883e6bf ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x38b57dd5 mpc8xxx_spi_tx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0x38de457b blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x38e269f7 swiotlb_map_page -EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38f784e2 cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0x3911fbec snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL vmlinux 0x3938c1ce snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL vmlinux 0x395e0bce regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x39664fc7 vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0x397b4719 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x397e43a9 usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x3998b8f5 scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x39c4aecc ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0x39c6e7ba device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current -EXPORT_SYMBOL_GPL vmlinux 0x39d04b61 sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0x39d59859 iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module -EXPORT_SYMBOL_GPL vmlinux 0x39f02c2d snd_soc_codec_set_sysclk -EXPORT_SYMBOL_GPL vmlinux 0x39f3f42a virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0x39f5c3b3 pskb_put -EXPORT_SYMBOL_GPL vmlinux 0x39f5fb9f ahci_platform_enable_clks -EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x3a4cb31c sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3af950d3 fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x3b12927d blk_mq_tags_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x3b23d797 percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0x3b2d58bc task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0x3b547bc9 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x3b87394b __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x3b94a426 wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0x3ba76e33 iommu_domain_get_attr -EXPORT_SYMBOL_GPL vmlinux 0x3baeceaa show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x3bbc816c led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0x3bc5c5ff securityfs_create_dentry -EXPORT_SYMBOL_GPL vmlinux 0x3bc6b0ac __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x3bc6fcf7 snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL vmlinux 0x3bd01321 crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0x3bfd1410 snd_soc_read -EXPORT_SYMBOL_GPL vmlinux 0x3c250376 __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x3c56869e bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0x3c56ab8f nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x3c600efa usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0x3c831441 arm_check_condition -EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag -EXPORT_SYMBOL_GPL vmlinux 0x3c93ea25 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3cd4bfd4 __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0x3cd76f46 __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x3cdbca49 rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3cfb18b4 mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0x3d0902eb palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0x3d16f4d0 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d5fb516 tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0x3d6c52bb __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0x3d74cf92 fat_attach -EXPORT_SYMBOL_GPL vmlinux 0x3d7d2191 snd_ctl_activate_id -EXPORT_SYMBOL_GPL vmlinux 0x3d8b2c73 snd_soc_component_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x3d9c0c4f mpc8xxx_spi_rx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0x3da37b25 power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0x3dc4bbc7 blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match -EXPORT_SYMBOL_GPL vmlinux 0x3dc5f9ec inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab -EXPORT_SYMBOL_GPL vmlinux 0x3dcaa428 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3dd4d3a7 bprintf -EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x3e31d9c3 net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x3e410620 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x3e48094a virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched -EXPORT_SYMBOL_GPL vmlinux 0x3e60a34f devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e77fe76 fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0x3e8f1a82 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x3e9917e1 ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x3eb0d5eb scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x3eb454b6 blkcipher_aead_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0x3f58ff54 mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x3f601a5e usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0x3f664fa5 __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0x3fb70cf6 scsi_internal_device_block -EXPORT_SYMBOL_GPL vmlinux 0x3fbe32a7 ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0x3fc1b126 tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0x3fcbb9e6 io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0x3fd7f874 thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x3fd98acf skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x3fe952f7 __cci_control_port_by_device -EXPORT_SYMBOL_GPL vmlinux 0x3fed2a9c snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL vmlinux 0x3ffcab1c ahci_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x4033274e __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources -EXPORT_SYMBOL_GPL vmlinux 0x406c0c86 ata_sff_data_xfer_noirq -EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x4073629a pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x40905a7a devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x40abfa54 __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x40c86d1f ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x40e2b74c devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x40e8fc1c dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x411c2296 usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0x41258f57 register_mtd_user -EXPORT_SYMBOL_GPL vmlinux 0x4133f42c rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0x4163c1aa mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x41660057 srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x41b5e6d1 of_irq_find_parent -EXPORT_SYMBOL_GPL vmlinux 0x41c5274c __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x41ca9a17 __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x41f9cfd7 ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x421478c7 irq_create_strict_mappings -EXPORT_SYMBOL_GPL vmlinux 0x4231d9a9 regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0x4232b811 ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0x42490742 clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0x42557d0c ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0x425d30ae pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags -EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x42b364ef scatterwalk_done -EXPORT_SYMBOL_GPL vmlinux 0x42e8be5e bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x42f33991 pci_ats_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x42f66283 init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x4302fe5c serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0x432f028f cpsw_ale_add_ucast -EXPORT_SYMBOL_GPL vmlinux 0x4336376e of_console_check -EXPORT_SYMBOL_GPL vmlinux 0x43435448 lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0x4346ba04 regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x434f8fe7 tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0x43578cf5 screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0x436951f6 spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x436ddb34 ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0x43757102 iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0x4378c42e ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0x437fe91b cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0x43a17583 i2c_new_probed_device -EXPORT_SYMBOL_GPL vmlinux 0x43a2ca85 snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key -EXPORT_SYMBOL_GPL vmlinux 0x43aad42f platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x43e95f26 ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x43eae793 mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift -EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x43f8e8dd debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0x43fc6371 bgpio_remove -EXPORT_SYMBOL_GPL vmlinux 0x43ff3082 rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x444ad24e devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4455e859 tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0x44613f88 otg_ulpi_create -EXPORT_SYMBOL_GPL vmlinux 0x4463a8b0 usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0x44691629 pm_genpd_syscore_poweron -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x4491a03d pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x44ae8631 wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44bdc1d1 snd_soc_new_ac97_codec -EXPORT_SYMBOL_GPL vmlinux 0x44c181c7 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x44e252a2 pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0x44f0d506 led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0x44fe83e0 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0x44ff4487 blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0x45227b56 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x452e1eee max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0x454e98ea regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x45612a89 udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0x45629a6c omap_dm_timer_request -EXPORT_SYMBOL_GPL vmlinux 0x456b9e1a blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x45794472 pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0x457f530c regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x45ab92ad usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x45ba1367 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0x45bd0d44 kern_mount_data -EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x45fc1ea8 ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x46066e5b perf_pmu_name -EXPORT_SYMBOL_GPL vmlinux 0x4607bb96 ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x46166d1a powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x4648cf9b task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x4653bb7e sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x466e5342 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x467d5361 power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x46919322 call_filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0x46b81979 of_pci_msi_chip_remove -EXPORT_SYMBOL_GPL vmlinux 0x4703bb13 musb_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x47319c32 pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0x47466de2 blk_queue_flush -EXPORT_SYMBOL_GPL vmlinux 0x4746a4f9 pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4759063d snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x475fedb6 cpsw_ale_del_mcast -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4782af92 of_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x47a800f4 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47b0d809 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x47b6c45c tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x47db7b68 rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47fa1f18 ahci_init_controller -EXPORT_SYMBOL_GPL vmlinux 0x480319eb generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0x480f63c2 rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4817ec3b fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0x481d87d5 get_dcookie -EXPORT_SYMBOL_GPL vmlinux 0x482efa55 sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0x4837bdca key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh -EXPORT_SYMBOL_GPL vmlinux 0x4871fb7c __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x48770b3c usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0x487b27a3 snd_soc_dpcm_be_set_state -EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0x4884f3d3 of_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x489c6b4d dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x48a560eb sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0x48ae268a platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0x48b188b4 mtd_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x48ba9341 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0x48ca312a locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0x48cb013a pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0x48d7d99c mtd_block_isreserved -EXPORT_SYMBOL_GPL vmlinux 0x48dcbc87 del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL vmlinux 0x48f7c39d dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0x492771ac ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0x4927e348 ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0x4929b1b4 ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0x4941bf24 devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0x495006b1 usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL vmlinux 0x496d5a9f fat_detach -EXPORT_SYMBOL_GPL vmlinux 0x49776780 regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0x4978cab3 of_thermal_get_trip_points -EXPORT_SYMBOL_GPL vmlinux 0x497a4ab1 crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x49b6ad2c snd_pcm_hw_constraint_eld -EXPORT_SYMBOL_GPL vmlinux 0x49e4a4ef __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49f4bcdb disk_map_sector_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4a133669 sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name -EXPORT_SYMBOL_GPL vmlinux 0x4a5462d9 snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x4a63f3b2 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0x4a934fc1 power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0x4a97e17e phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4a9bb315 usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x4a9f5deb snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL vmlinux 0x4aab35dc ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x4aacc513 crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0x4ab1a16b usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x4abd8327 bpf_prog_realloc -EXPORT_SYMBOL_GPL vmlinux 0x4ac46668 skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0x4af23ce7 pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0x4b407c18 ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0x4b6c2fe1 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0x4b7c8e00 cpufreq_frequency_table_target -EXPORT_SYMBOL_GPL vmlinux 0x4b94940c dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x4b98c891 regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x4bafcdd8 btree_update -EXPORT_SYMBOL_GPL vmlinux 0x4bb33fc9 snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL vmlinux 0x4bc21e3b usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0x4be9e1dd pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0x4c079a11 transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x4c14d056 i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0x4c32ad1e unregister_mtd_user -EXPORT_SYMBOL_GPL vmlinux 0x4c3f2c08 smpboot_register_percpu_thread_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x4c47ec15 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0x4c4df406 arizona_dev_exit -EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4c6923e1 blk_mq_cancel_requeue_work -EXPORT_SYMBOL_GPL vmlinux 0x4c977c73 driver_find -EXPORT_SYMBOL_GPL vmlinux 0x4cbf4089 anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x4cc0d198 ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0x4ccbfeeb ahci_handle_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x4cd56503 led_init_core -EXPORT_SYMBOL_GPL vmlinux 0x4ce5a66e __get_mtd_device -EXPORT_SYMBOL_GPL vmlinux 0x4ceb1ff0 fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d2986c2 dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0x4d38f1e0 bL_switcher_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4d3dc0cf skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x4d47de6a regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0x4d71ee85 blk_queue_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x4d9bb018 clk_register_gpio_gate -EXPORT_SYMBOL_GPL vmlinux 0x4d9d588a sm501_set_clock -EXPORT_SYMBOL_GPL vmlinux 0x4dab11ec devm_snd_soc_register_component -EXPORT_SYMBOL_GPL vmlinux 0x4dc57665 ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0x4dd1be32 da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x4dd8adc6 mtd_unpoint -EXPORT_SYMBOL_GPL vmlinux 0x4ddfb1d3 usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4e002fe2 posix_timers_register_clock -EXPORT_SYMBOL_GPL vmlinux 0x4e0a50b8 tps65912_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0x4e21d556 sdhci_reset -EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path -EXPORT_SYMBOL_GPL vmlinux 0x4e27c04a devres_find -EXPORT_SYMBOL_GPL vmlinux 0x4e2c2dd2 pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x4e2da19c ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0x4e3b546f dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x4e598542 spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0x4e5fb646 devm_snd_soc_register_card -EXPORT_SYMBOL_GPL vmlinux 0x4e60b2b3 anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0x4e61e840 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0x4e90e426 pwm_can_sleep -EXPORT_SYMBOL_GPL vmlinux 0x4ea5f369 crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x4eb777d1 snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL vmlinux 0x4ed5a2aa get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4f090aee register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x4f1f3e1e snd_soc_component_async_complete -EXPORT_SYMBOL_GPL vmlinux 0x4f20f9dc snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0x4f480057 pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0x4f497ffa pci_bus_sem -EXPORT_SYMBOL_GPL vmlinux 0x4f584b2d amba_device_put -EXPORT_SYMBOL_GPL vmlinux 0x4f681bdf of_get_nand_on_flash_bbt -EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f780999 snd_soc_add_codec_controls -EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4faafec2 ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x4fd88706 bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fee44e5 arm_iommu_release_mapping -EXPORT_SYMBOL_GPL vmlinux 0x500307b3 mpc8xxx_spi_tx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x504dcc80 pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x5068cfc8 rtc_irq_set_state -EXPORT_SYMBOL_GPL vmlinux 0x5076c135 ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0x5080c352 trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test -EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x50928d5f debugfs_remove_recursive -EXPORT_SYMBOL_GPL vmlinux 0x509f15d3 devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x50a88db0 trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x50de4d7f crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50f50bda clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x5104a1fd sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0x510d3b40 led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x5125c665 mtd_is_partition -EXPORT_SYMBOL_GPL vmlinux 0x51288a2c ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0x51370890 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0x51484c55 ahci_platform_disable_clks -EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val -EXPORT_SYMBOL_GPL vmlinux 0x515198a3 kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x515829c6 usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0x51656403 devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x51664ffc dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0x516bc1c5 snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL vmlinux 0x51767333 snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL vmlinux 0x51855f81 __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x51b90d33 platform_bus -EXPORT_SYMBOL_GPL vmlinux 0x51bbebd8 zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0x51d5e3b5 shash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x51f37e85 cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0x51f8103b ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x51ff4404 swiotlb_tbl_map_single -EXPORT_SYMBOL_GPL vmlinux 0x5200c3b4 usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x5208e43b sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x520e1235 iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL vmlinux 0x5217530f snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL vmlinux 0x523b6a0c rt_mutex_destroy -EXPORT_SYMBOL_GPL vmlinux 0x5243c927 fuse_request_send_background -EXPORT_SYMBOL_GPL vmlinux 0x524673c2 omapdss_of_get_next_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x5249e8e5 ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x524f16f9 deregister_mtd_parser -EXPORT_SYMBOL_GPL vmlinux 0x5254dcd6 xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x5257dc51 __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0x525ecd07 device_attach -EXPORT_SYMBOL_GPL vmlinux 0x526280c7 trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0x52768e58 regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0x52807f8e rt_mutex_timed_lock -EXPORT_SYMBOL_GPL vmlinux 0x52851ef2 debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0x5288b747 unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x528970f2 debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x5295e707 fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x5296e7b0 cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0x52991f30 of_irq_parse_pci -EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x52b8b07a ahash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x52bb0828 bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0x52c0d5d8 scatterwalk_bytes_sglen -EXPORT_SYMBOL_GPL vmlinux 0x52ca1c4a cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0x52e9d735 __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x52fbf209 pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x530b2d59 of_cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x53101a2d serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x531b2900 devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x532c75df simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0x53326633 ahci_platform_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0x533668f8 ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL vmlinux 0x534b1fb2 regmap_update_bits_async -EXPORT_SYMBOL_GPL vmlinux 0x535133af md_new_event -EXPORT_SYMBOL_GPL vmlinux 0x53529e9f power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0x535363ca mtd_read_oob -EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x535b5f6f __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x5361d901 extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0x5364da61 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x5385a417 pinctrl_utils_dt_free_map -EXPORT_SYMBOL_GPL vmlinux 0x53883cce cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x538aabf4 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL vmlinux 0x53cbbfc9 inet6_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0x53e898f8 cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0x53e9bb9a platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0x53fd863a ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0x5400d45f debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0x5406ae8b tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x54274285 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0x543ce17a regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x5445f0b2 vchan_find_desc -EXPORT_SYMBOL_GPL vmlinux 0x544aab61 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x545e9b6b fuse_request_send -EXPORT_SYMBOL_GPL vmlinux 0x545fec86 percpu_ida_for_each_free -EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time -EXPORT_SYMBOL_GPL vmlinux 0x5488054e ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL vmlinux 0x548d1b54 pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0x54930dae inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x549b420b blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0x54a0ab55 __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x54b0b63f register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x54c187d3 i2c_unlock_adapter -EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0x54d468f1 pm_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0x54e57b6a snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL vmlinux 0x54e6f6ac snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL vmlinux 0x54ef2d58 device_show_int -EXPORT_SYMBOL_GPL vmlinux 0x55109732 blk_queue_bypass_end -EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x55450e74 snd_soc_bytes_get -EXPORT_SYMBOL_GPL vmlinux 0x5555b0c7 pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x55af4e55 sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0x55afe34d fuse_put_request -EXPORT_SYMBOL_GPL vmlinux 0x55cf07a9 fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0x55e10d06 tc3589x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x56036e0c stmpe_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x560722be rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x56261738 syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x563de01b device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen -EXPORT_SYMBOL_GPL vmlinux 0x56776a92 rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x567c5b26 devres_add -EXPORT_SYMBOL_GPL vmlinux 0x568341a8 mtd_add_partition -EXPORT_SYMBOL_GPL vmlinux 0x56a991f8 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x56cf464b __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0x56d31820 musb_writel -EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up -EXPORT_SYMBOL_GPL vmlinux 0x56da582a regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x56fa3b11 snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x5700c63f event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0x57257845 wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0x5756881e snd_soc_resume -EXPORT_SYMBOL_GPL vmlinux 0x575b617f attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0x576daecc pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x57847272 usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x5799b095 spi_master_resume -EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57b16b82 ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags -EXPORT_SYMBOL_GPL vmlinux 0x57c626bf get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0x57d55193 amba_device_add -EXPORT_SYMBOL_GPL vmlinux 0x57f61d64 snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL vmlinux 0x58063ede srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x58631dab imx_audmux_v2_configure_port -EXPORT_SYMBOL_GPL vmlinux 0x588b4db6 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0x589c6f61 wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname -EXPORT_SYMBOL_GPL vmlinux 0x589e4964 of_clk_get_parent_name -EXPORT_SYMBOL_GPL vmlinux 0x58c4dbe7 gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0x58d89784 tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0x5914f3ae __get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x59341126 bpf_prog_get -EXPORT_SYMBOL_GPL vmlinux 0x593bcce5 xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0x594cde67 trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0x596226ca tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x59aa31f7 regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x59bae273 ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0x59bb5186 of_clk_del_provider -EXPORT_SYMBOL_GPL vmlinux 0x59c1f691 usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0x59c4a32e snd_soc_of_parse_daifmt -EXPORT_SYMBOL_GPL vmlinux 0x59c5c2a2 pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0x59d87718 ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x59f53711 sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0x5a004927 crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x5a078c26 devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x5a213f7e free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq -EXPORT_SYMBOL_GPL vmlinux 0x5a7bd420 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a8f213c cpdma_ctlr_eoi -EXPORT_SYMBOL_GPL vmlinux 0x5aa78597 pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0x5aac84a0 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0x5ab2c412 snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL vmlinux 0x5ab94c6a crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0x5ac75461 crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x5acf6567 btree_init -EXPORT_SYMBOL_GPL vmlinux 0x5ae9b70d dev_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0x5aece601 bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x5af1b117 sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0x5afa2ded percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0x5b4b56be unregister_jprobe -EXPORT_SYMBOL_GPL vmlinux 0x5b6362c0 wm8997_patch -EXPORT_SYMBOL_GPL vmlinux 0x5b6bbd98 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x5b732275 regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0x5b8bab2b snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL vmlinux 0x5b90c895 usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0x5b9c9c72 kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0x5bb40278 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0x5bbbddd2 dev_pm_opp_get_opp_count -EXPORT_SYMBOL_GPL vmlinux 0x5bc26167 genlmsg_new_unicast -EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bd12035 sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x5bd29b25 stmpe_block_write -EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5c08f9e0 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x5c186b3d ahci_kick_engine -EXPORT_SYMBOL_GPL vmlinux 0x5c24a9eb snd_soc_add_platform -EXPORT_SYMBOL_GPL vmlinux 0x5c2ae9d7 snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL vmlinux 0x5c2fe4a5 cpdma_chan_stop -EXPORT_SYMBOL_GPL vmlinux 0x5c3df43d md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0x5c51915e blk_mq_free_hctx_request -EXPORT_SYMBOL_GPL vmlinux 0x5c58c5a0 single_open_net -EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c724709 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x5c76ac36 omap_dm_timer_free -EXPORT_SYMBOL_GPL vmlinux 0x5c87c38b usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0x5c8f628f ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0x5c9841a6 elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5c9e1590 snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5cb89b6a thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x5cdeb682 devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x5cf1de4e of_clk_parent_fill -EXPORT_SYMBOL_GPL vmlinux 0x5cf64e36 device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user -EXPORT_SYMBOL_GPL vmlinux 0x5d153a7a hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0x5d20ec03 wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x5d255a60 device_store_int -EXPORT_SYMBOL_GPL vmlinux 0x5d30525d devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x5d50c3c9 ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0x5d51bcf7 scatterwalk_start -EXPORT_SYMBOL_GPL vmlinux 0x5d964f0b usb_udc_attach_driver -EXPORT_SYMBOL_GPL vmlinux 0x5d9de28d snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5dbcf19c usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0x5dc09c33 snd_soc_add_card_controls -EXPORT_SYMBOL_GPL vmlinux 0x5de10645 dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x5de692d9 gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x5deb6b16 of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0x5df24c20 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0x5df2b9d7 ref_module -EXPORT_SYMBOL_GPL vmlinux 0x5dfb25c9 regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x5e246f8a wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x5e269505 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0x5e3ab7b8 dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0x5e4894d4 edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl -EXPORT_SYMBOL_GPL vmlinux 0x5e550f31 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0x5e6750e0 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x5e76c481 usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x5e8b9f8e snd_soc_free_ac97_codec -EXPORT_SYMBOL_GPL vmlinux 0x5eafceb1 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0x5ed27bc0 pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0x5eda3e37 snd_soc_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x5ede4225 modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x5ee08939 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0x5efe4cc6 dev_pm_opp_init_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x5f0e7dd4 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0x5f1622e4 inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0x5f27aef6 pci_try_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x5f2c64c8 of_pci_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0x5f3a5514 of_dma_get_range -EXPORT_SYMBOL_GPL vmlinux 0x5f46fbae sdio_run_irqs -EXPORT_SYMBOL_GPL vmlinux 0x5f550841 crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0x5f630009 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0x5f683ecd ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0x5f76d73e usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x5f7c129b omap_dm_timer_set_load_start -EXPORT_SYMBOL_GPL vmlinux 0x5f854645 ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x5fb01483 fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5fc028c0 led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0x5fc2bef1 devm_regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5fef1548 find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0x5ffe27bf of_clk_src_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0x5fffdd54 __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x600c5d09 bdev_write_page -EXPORT_SYMBOL_GPL vmlinux 0x6018403a unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0x6035b78e fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush -EXPORT_SYMBOL_GPL vmlinux 0x60522b5b crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x6059ed40 iommu_present -EXPORT_SYMBOL_GPL vmlinux 0x6075d0c7 omap_tll_init -EXPORT_SYMBOL_GPL vmlinux 0x6090b313 get_device -EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60b146c7 __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x60b1e9df wait_on_page_bit_killable_timeout -EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq -EXPORT_SYMBOL_GPL vmlinux 0x60ec67ee tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0x60ed0a36 ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0x61078039 sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0x61185af3 cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0x6152fff9 __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x618968c4 extcon_get_cable_state -EXPORT_SYMBOL_GPL vmlinux 0x61a40dc3 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x61ae29a8 dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0x61e3c4cb default_iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0x61f1fba1 snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL vmlinux 0x61fa2707 snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL vmlinux 0x620673ab pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x6210299e scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x623679e9 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0x6261c269 ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0x62666fc5 fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0x62a7d29f debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0x62bcc777 omap_dm_timer_read_status -EXPORT_SYMBOL_GPL vmlinux 0x62c5c2a4 pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0x62c8226e attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0x62cc5d57 shash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x62cda11e mtd_get_unmapped_area -EXPORT_SYMBOL_GPL vmlinux 0x62f39ae2 ping_close -EXPORT_SYMBOL_GPL vmlinux 0x62f3ece0 get_mtd_device_nm -EXPORT_SYMBOL_GPL vmlinux 0x63014d77 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x63162e3d mtd_panic_write -EXPORT_SYMBOL_GPL vmlinux 0x632736c7 device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x632d466a sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x635ccb21 crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0x6361b1f7 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x636a0d14 dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x63764834 gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0x63871878 regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0x6391bd2a ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x639d170a clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x639f47d4 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0x63befda3 inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0x63e3d9d7 snd_soc_register_component -EXPORT_SYMBOL_GPL vmlinux 0x63ebbfd0 ahash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x63f3280c cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x63ff14aa usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x6406658a usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x640a894f usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x6412f421 alloc_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0x6429f8d6 bio_trim -EXPORT_SYMBOL_GPL vmlinux 0x643146d5 single_release_net -EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched -EXPORT_SYMBOL_GPL vmlinux 0x646b7d45 dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x64a61ec5 map_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x64c0fe6e usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x64d23e37 cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x64de8349 ti_cm_get_macid -EXPORT_SYMBOL_GPL vmlinux 0x64fe5b63 pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x654076ce regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x65427d72 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x6545f55c usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0x654d54f7 usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0x65537437 freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x6553dec8 relay_open -EXPORT_SYMBOL_GPL vmlinux 0x655fcb8c icst_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x6563b104 dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0x65944b13 ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x65a10e14 list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0x65a36f0b fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0x65cc52de register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65dc513f ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0x65debae8 regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x65e1ccee ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x65f9cbfd usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0x65fd9d08 of_pci_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x65ff0ce5 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x6600e301 of_dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x661141fa gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x662155d0 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x6639334c usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL vmlinux 0x6670eb84 wm5110_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x667b1268 kill_mtd_super -EXPORT_SYMBOL_GPL vmlinux 0x667d0050 disk_part_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x6681f306 snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x66d81ebb regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66f4e9ab arizona_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x66fad13b scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0x6703802b __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x6727da8f pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x673c43b1 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6742788c subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0x674baea5 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy -EXPORT_SYMBOL_GPL vmlinux 0x674e85b9 blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0x6788f958 extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x678a420c tpm_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x67929cef xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x679dde0e tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0x679f7bb7 __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x67b1e52c dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0x67e856a7 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0x6800aaee snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL vmlinux 0x6804a3f0 ahci_start_fis_rx -EXPORT_SYMBOL_GPL vmlinux 0x6816984a platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x682b91cd sdhci_remove_host -EXPORT_SYMBOL_GPL vmlinux 0x682f66cb rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x68358b3a rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x685795f4 cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0x68738283 serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x689dd8b3 usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0x68bffdca ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x68c063fa verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x68c2941f devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x68e47b2c cpdma_ctlr_destroy -EXPORT_SYMBOL_GPL vmlinux 0x68fb222b of_get_dma_window -EXPORT_SYMBOL_GPL vmlinux 0x6909c74e _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL vmlinux 0x690bf973 sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0x69193dd3 i2c_new_dummy -EXPORT_SYMBOL_GPL vmlinux 0x691c63e3 devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0x69239bb7 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x692597b1 snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL vmlinux 0x692fb069 tc3589x_block_read -EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0x694be42a usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0x694d0683 shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x695cb8ab device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0x69a77b18 find_symbol -EXPORT_SYMBOL_GPL vmlinux 0x69ad6c09 mtd_writev -EXPORT_SYMBOL_GPL vmlinux 0x69cd2581 swiotlb_tbl_sync_single -EXPORT_SYMBOL_GPL vmlinux 0x69d2a8e5 eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0x69f792b8 of_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x6a161ee7 mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0x6a1733b0 regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a19a60b pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6a3920c4 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a5b0a38 do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x6a664f92 blk_mq_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x6a66f268 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x6a79d43e ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0x6a7ed470 sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x6a802984 mtd_device_parse_register -EXPORT_SYMBOL_GPL vmlinux 0x6aa2d98c cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0x6adda79b bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0x6ae43cd4 security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0x6af56757 da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x6b218354 ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0x6b25f5cd dapm_clock_event -EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0x6b480ef6 of_irq_to_resource_table -EXPORT_SYMBOL_GPL vmlinux 0x6b4f6765 attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x6b5dc377 exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0x6b770f49 decode_bch -EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b8bb129 usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0x6bd19361 bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0x6bdd6302 pm_complete_with_resume_check -EXPORT_SYMBOL_GPL vmlinux 0x6be8a34a virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0x6c015dec device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0x6c02141f sdhci_resume_host -EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x6c1cbc41 snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL vmlinux 0x6c209eab __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0x6c26b848 power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c629ec8 snd_soc_cnew -EXPORT_SYMBOL_GPL vmlinux 0x6c6de73f blk_queue_dma_drain -EXPORT_SYMBOL_GPL vmlinux 0x6c753aa2 snd_ac97_reset -EXPORT_SYMBOL_GPL vmlinux 0x6c7994e9 phy_create -EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions -EXPORT_SYMBOL_GPL vmlinux 0x6c91fd9e usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0x6c951cf6 regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0x6c97de7c crypto_ahash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq -EXPORT_SYMBOL_GPL vmlinux 0x6cb1dcb5 __ablkcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x6cb35790 wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0x6cbdd8ec led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0x6cbf47e2 bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0x6cda7c9c of_pci_find_msi_chip_by_node -EXPORT_SYMBOL_GPL vmlinux 0x6cf81450 dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x6d095256 usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0x6d09af89 gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x6d0ade1a snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL vmlinux 0x6d1c644c put_device -EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d424356 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x6d4e0b3c power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x6d6ed257 omap_dm_timer_get_fclk -EXPORT_SYMBOL_GPL vmlinux 0x6d75d025 bdev_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x6d78d657 fuse_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6d7d5301 disk_get_part -EXPORT_SYMBOL_GPL vmlinux 0x6d8f8a8c irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0x6da08d71 irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x6da9e0a5 bgpio_init -EXPORT_SYMBOL_GPL vmlinux 0x6dc7bb08 dma_buf_kunmap -EXPORT_SYMBOL_GPL vmlinux 0x6dcf1a58 pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0x6df22d6a pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy -EXPORT_SYMBOL_GPL vmlinux 0x6e074fdf tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x6e33a4fb regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x6e3f56f4 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0x6e400837 serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0x6e51afc8 percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x6e5d7152 regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0x6e708789 __blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6e8e985a seq_open_net -EXPORT_SYMBOL_GPL vmlinux 0x6e9470cc platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0x6eb6a11a usb_udc_vbus_handler -EXPORT_SYMBOL_GPL vmlinux 0x6ec872e4 ahci_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x6eedecf3 irq_create_mapping -EXPORT_SYMBOL_GPL vmlinux 0x6eef77df snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL vmlinux 0x6f154795 subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x6f2b4af7 irq_find_mapping -EXPORT_SYMBOL_GPL vmlinux 0x6f2c0e12 __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x6f301df9 ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x6f3ab38b usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0x6f5a2634 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x6f5c638f kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto -EXPORT_SYMBOL_GPL vmlinux 0x6f955ca4 mtd_is_locked -EXPORT_SYMBOL_GPL vmlinux 0x6fa2a3ab sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0x6fb1a3b3 virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0x6fb8d866 ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0x6fbb3bd9 init_rs_non_canonical -EXPORT_SYMBOL_GPL vmlinux 0x6fbbc594 md_stop -EXPORT_SYMBOL_GPL vmlinux 0x6fdbd09f devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6ffa9ed2 crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0x70331a53 clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x70348bf5 dapm_regulator_event -EXPORT_SYMBOL_GPL vmlinux 0x704427b7 blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x70483d98 regmap_field_write -EXPORT_SYMBOL_GPL vmlinux 0x70549761 omap_dma_filter_fn -EXPORT_SYMBOL_GPL vmlinux 0x706106c9 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0x706211bb regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0x706da281 blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x7072699f sdhci_pltfm_free -EXPORT_SYMBOL_GPL vmlinux 0x707c23b6 module_mutex -EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0x708cc3a5 skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x70a40dfb bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated -EXPORT_SYMBOL_GPL vmlinux 0x70cd1b36 tc3589x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x71008581 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x711adf8b snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL vmlinux 0x7120adda get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x712ed478 debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0x71361150 tps65912_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x7167b069 usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x71728f22 of_dma_is_coherent -EXPORT_SYMBOL_GPL vmlinux 0x718e7cc5 uniphier_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0x7191fdad regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x719edf54 device_find_child -EXPORT_SYMBOL_GPL vmlinux 0x71a15872 da903x_update -EXPORT_SYMBOL_GPL vmlinux 0x71b9adc1 cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x71bd7ab5 uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0x71c9c714 sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x71ca7153 extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0x71cfd306 gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab -EXPORT_SYMBOL_GPL vmlinux 0x71e188f8 class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71f4fda9 powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0x7206d2c7 sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x72168f36 tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0x72234dd6 musb_readw -EXPORT_SYMBOL_GPL vmlinux 0x7230cb93 da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x724b1f37 cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x72515d5a snprint_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x725e3ea8 bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x728bb648 irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0x7291019b __cci_control_port_by_index -EXPORT_SYMBOL_GPL vmlinux 0x72a90352 gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x72d1c686 ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x72d4a115 kobject_move -EXPORT_SYMBOL_GPL vmlinux 0x72dfc584 usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x72e84598 snd_soc_unregister_card -EXPORT_SYMBOL_GPL vmlinux 0x72f77095 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0x7304fc38 of_reserved_mem_device_init -EXPORT_SYMBOL_GPL vmlinux 0x730bd0c7 asic3_write_register -EXPORT_SYMBOL_GPL vmlinux 0x731064d4 sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0x73219f8a mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x732a2380 reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x735266ce md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0x737541bc devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x738c3276 class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73afcbbe irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0x73c51260 arm_iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x740d7b7c snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL vmlinux 0x74193707 trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x7440d989 gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x745db179 crypto_blkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x747b014a usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0x747fdf8c ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74b94544 i2c_slave_register -EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74cc5a61 led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x7532c62c usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0x753975d3 ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x7562a5ec crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only -EXPORT_SYMBOL_GPL vmlinux 0x75b1e020 clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x75c57e23 trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x75d14d9f thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x75dc66b4 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x76172da7 usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0x761e0aca btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0x7633fef0 uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0x764928a2 cpdma_chan_create -EXPORT_SYMBOL_GPL vmlinux 0x7661e33c device_remove_property_set -EXPORT_SYMBOL_GPL vmlinux 0x7665d02f crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0x767a4122 page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x76b62c86 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0x76bd3278 alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x76bfc5e6 usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0x76d1018c ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x76e6613d ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x76ffb3c7 tegra_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0x770019e4 blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x7708343f ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0x770cf981 tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x775c871a mpc8xxx_spi_rx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x775ee7d4 omap_dm_timer_request_by_node -EXPORT_SYMBOL_GPL vmlinux 0x777166ad sm501_misc_control -EXPORT_SYMBOL_GPL vmlinux 0x7777aec7 anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x77805ebb power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77cc685f pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x77d37a7f dm_disk -EXPORT_SYMBOL_GPL vmlinux 0x77d67abd gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x77dee5fa pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0x77ee9cfc usb_phy_generic_unregister -EXPORT_SYMBOL_GPL vmlinux 0x78006309 blkg_print_stat_ios_recursive -EXPORT_SYMBOL_GPL vmlinux 0x78027ec8 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x7807340e snd_soc_test_bits -EXPORT_SYMBOL_GPL vmlinux 0x7822fe06 unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x784ec71b rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x78762633 snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL vmlinux 0x78772cb0 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0x788f8921 remove_irq -EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0x78b976b1 wbc_account_io -EXPORT_SYMBOL_GPL vmlinux 0x78bbd7c4 pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0x78bfdfbc devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0x78d3c0ff ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0x78e06e5b of_prop_next_u32 -EXPORT_SYMBOL_GPL vmlinux 0x7905643b input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0x7913bb4a vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x792cda3b sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0x7931c5b8 regmap_read -EXPORT_SYMBOL_GPL vmlinux 0x7933b116 relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x7941bab2 cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off -EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x7956db98 devm_mdiobus_alloc_size -EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x798e48be devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL vmlinux 0x79cc0161 regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x79d19e1c pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0x79de96ee of_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79e47ee2 i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x79f659ac __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x7a2f6325 max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x7a455245 gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0x7a984e15 napi_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read -EXPORT_SYMBOL_GPL vmlinux 0x7ad708fe deregister_mtd_blktrans -EXPORT_SYMBOL_GPL vmlinux 0x7adf3b91 of_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x7af893ce snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set -EXPORT_SYMBOL_GPL vmlinux 0x7b372d8c irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x7b402e71 devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x7b596bba crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0x7b5d09fb md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0x7b96530e shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0x7b9e2509 ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0x7bbf5ec7 of_devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x7be16a7c add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x7be4fd1b aead_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0x7c6a49ce unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x7c74bc99 snd_pcm_stream_lock -EXPORT_SYMBOL_GPL vmlinux 0x7c7bc2cb sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0x7c8fc32a of_dma_xlate_by_chan_id -EXPORT_SYMBOL_GPL vmlinux 0x7c981cc2 of_resolve_phandles -EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7c9cca56 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x7ca7fa10 usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0x7cd6d1e6 blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cf499ce of_fixed_clk_setup -EXPORT_SYMBOL_GPL vmlinux 0x7cfb72d2 dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x7d0dcf1b ahci_ops -EXPORT_SYMBOL_GPL vmlinux 0x7d14fc1e tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x7d3c58d3 sdhci_pltfm_register -EXPORT_SYMBOL_GPL vmlinux 0x7d4b8f86 spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0x7d536f7b devfreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d640fdd ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x7d723f9a __mmu_notifier_invalidate_range_end -EXPORT_SYMBOL_GPL vmlinux 0x7d766537 get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0x7d776e72 cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0x7d7bbe0b ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x7d8d9f17 ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0x7d8faf54 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0x7d9dc168 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7db3ff15 devm_regmap_init_vexpress_config -EXPORT_SYMBOL_GPL vmlinux 0x7db9eab4 snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL vmlinux 0x7dc8e02e ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x7dd3aa16 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0x7dd430c2 pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7deab6b3 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0x7df21f51 debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0x7e001f28 ping_hash -EXPORT_SYMBOL_GPL vmlinux 0x7e02ae14 sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0x7e04cca0 tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0x7e1884ae spi_alloc_master -EXPORT_SYMBOL_GPL vmlinux 0x7e4a296c cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7e584aab snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x7e5f50ef __blk_run_queue_uncond -EXPORT_SYMBOL_GPL vmlinux 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e671dca dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0x7e685078 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x7e6e93aa lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0x7e990ee4 ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0x7e9db583 crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x7e9ee513 __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x7ea820f9 clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x7ed68941 asic3_read_register -EXPORT_SYMBOL_GPL vmlinux 0x7f0c6142 i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x7f0dac04 snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL vmlinux 0x7f14d328 sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature -EXPORT_SYMBOL_GPL vmlinux 0x7f3cc476 pci_intx -EXPORT_SYMBOL_GPL vmlinux 0x7f62b781 ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x7f6d3889 usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x7f79fce6 snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f7e7185 __get_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x7fa64a8d ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0x7fbb5711 probes_decode_arm_table -EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7fc59e57 irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0x7fd92593 fuse_get_req -EXPORT_SYMBOL_GPL vmlinux 0x7ff51e55 ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0x80040a38 pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x800dc65b ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x8010d2c6 percpu_ida_free -EXPORT_SYMBOL_GPL vmlinux 0x8026254a snd_soc_platform_trigger -EXPORT_SYMBOL_GPL vmlinux 0x80333f53 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x8067cbeb of_clk_get_parent_count -EXPORT_SYMBOL_GPL vmlinux 0x8075f234 pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x807a3fa7 wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x80b2da7a pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0x80b2de20 snd_soc_remove_platform -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80d58142 da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80ecc046 vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x80f8589f trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x81376439 devm_regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x816b8721 snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL vmlinux 0x817dccd1 devres_release -EXPORT_SYMBOL_GPL vmlinux 0x8180fca3 find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x81acbca7 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0x81b1dada regmap_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x81c21c5a nl_table -EXPORT_SYMBOL_GPL vmlinux 0x81c5136b blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0x81d1c040 ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0x81f498ab sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0x8200b1be snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL vmlinux 0x82062992 sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0x8207bdaf ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0x822737fa dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0x822ad4c7 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0x822f8f5f sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x82585eab ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0x82975ee0 ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0x82b285fa srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x82bdfb32 usb_gadget_unmap_request -EXPORT_SYMBOL_GPL vmlinux 0x82cb029e debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0x82d521a8 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82d8083a crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0x82dd6e42 hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x82e3edad tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0x83256aa1 ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0x83589f5c fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x83668dc1 spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x837aec51 fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0x837ccec5 extcon_get_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0x83994b77 nand_release -EXPORT_SYMBOL_GPL vmlinux 0x83bb91b6 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0x83c63f23 ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x83cf4bb0 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x8409200b wakeup_source_prepare -EXPORT_SYMBOL_GPL vmlinux 0x840ba10b xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0x842b5b80 __mmu_notifier_invalidate_range -EXPORT_SYMBOL_GPL vmlinux 0x8437bfd3 snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL vmlinux 0x8443996a snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL vmlinux 0x844712df perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x84594ce4 rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0x845fc457 ata_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x84617146 fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0x848bd0fb call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x848c1e1e mtd_get_device_size -EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x84bead7b dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x84c58d5e ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0x84d7b94e kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0x84fa7325 clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x8507e622 ablkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read -EXPORT_SYMBOL_GPL vmlinux 0x852cb564 usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0x8530af1a scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0x8531bcc7 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x8572fd66 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x858737ec fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x85bf4a5f blk_queue_rq_timed_out -EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x85dac49f bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0x85de677d crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x85e54c50 usb_bus_list_lock -EXPORT_SYMBOL_GPL vmlinux 0x85e92405 fib_select_path -EXPORT_SYMBOL_GPL vmlinux 0x85efee73 mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0x85faf83c crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0x85ff1370 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod -EXPORT_SYMBOL_GPL vmlinux 0x861abb66 blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0x862b9816 cpu_topology -EXPORT_SYMBOL_GPL vmlinux 0x863fdab7 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x864476d8 sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x8652110e pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0x86536f58 clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0x866253e7 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x868bb9f0 of_get_nand_ecc_step_size -EXPORT_SYMBOL_GPL vmlinux 0x869aa7dc pci_restore_ats_state -EXPORT_SYMBOL_GPL vmlinux 0x869dc051 gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x86afc572 of_thermal_get_ntrips -EXPORT_SYMBOL_GPL vmlinux 0x86d09b20 rtc_irq_set_freq -EXPORT_SYMBOL_GPL vmlinux 0x86d5db8e register_mtd_parser -EXPORT_SYMBOL_GPL vmlinux 0x86dccbd1 ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0x86eb94be tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0x86f00932 put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x87056d54 phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8717df8b __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x872f7006 usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error -EXPORT_SYMBOL_GPL vmlinux 0x87ac9c1b ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0x87bb7e33 devres_get -EXPORT_SYMBOL_GPL vmlinux 0x87bf0091 dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0x87dc938b root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x87f0090e usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0x87fae600 subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x87fe34c5 pwm_set_polarity -EXPORT_SYMBOL_GPL vmlinux 0x880bc56b crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0x88136838 wm8997_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x8820dca2 crypto_givcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x883721f2 regmap_update_bits_check_async -EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x8848c399 pci_try_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x884ee575 skcipher_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x88a3c1af of_pci_parse_bus_range -EXPORT_SYMBOL_GPL vmlinux 0x88a8186b queue_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88b193cb sdhci_send_command -EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x88c8da9a inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0x88ed9e46 devm_power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x890683b0 sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x89171d9e driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0x891d88c4 amba_ahb_device_add_res -EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x89270c72 extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x892ba77a snd_soc_bytes_put -EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x89791984 spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0x897b9c9d ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0x897ceee1 sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x899fc821 cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0x89a63435 ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0x89b400a2 usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x89c1afa6 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL vmlinux 0x89f03d9f spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x89ffa9bd fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0x8a122ee8 relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0x8a255774 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x8a344133 get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode -EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod -EXPORT_SYMBOL_GPL vmlinux 0x8a5f86ce fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x8aaa4265 fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8acb6bdf ahci_platform_init_host -EXPORT_SYMBOL_GPL vmlinux 0x8ae0b737 blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x8ae7caac i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0x8af23b81 dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x8af36386 devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0x8af89a90 regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b45085b tps65217_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x8b619411 regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0x8b69e2a9 debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x8b7732a0 virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0x8b775d3a __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x8b7dd2e6 mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0x8ba854ac ahci_em_messages -EXPORT_SYMBOL_GPL vmlinux 0x8bb3fab5 __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0x8be64f1d usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x8bf92a65 device_add_property_set -EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8c0271d8 digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c122a94 iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8c1d1ef6 regmap_fields_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x8c3926d7 disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x8c456a6e pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status -EXPORT_SYMBOL_GPL vmlinux 0x8c6bc44d cpsw_ale_flush_multicast -EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c81791e omap_dm_timer_request_specific -EXPORT_SYMBOL_GPL vmlinux 0x8c927674 skcipher_geniv_exit -EXPORT_SYMBOL_GPL vmlinux 0x8cab620c wm8400_block_read -EXPORT_SYMBOL_GPL vmlinux 0x8ccfa390 of_overlay_create -EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params -EXPORT_SYMBOL_GPL vmlinux 0x8cf25f87 dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0x8d05cfcc of_irq_parse_one -EXPORT_SYMBOL_GPL vmlinux 0x8d200e9f __of_genpd_add_provider -EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d23e9b1 __module_text_address -EXPORT_SYMBOL_GPL vmlinux 0x8d64706b ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0x8d7ba8f8 mmu_notifier_unregister_no_release -EXPORT_SYMBOL_GPL vmlinux 0x8da17b42 scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x8dc5de7a crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0x8dc7a2c8 pwm_disable -EXPORT_SYMBOL_GPL vmlinux 0x8dc818d7 tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0x8dcb2038 devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x8e0b1fb1 ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0x8e0b52d5 devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x8e19d61b usb_gen_phy_init -EXPORT_SYMBOL_GPL vmlinux 0x8e2b25c2 videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x8e38decb gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0x8e42e821 __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x8e5a7520 irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0x8e71f9a5 ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x8e7894bd __atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x8e7d02d3 __inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0x8e889e70 stmpe_set_altfunc -EXPORT_SYMBOL_GPL vmlinux 0x8e9b828c snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL vmlinux 0x8eb1df5f usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x8ec09ad7 mtd_point -EXPORT_SYMBOL_GPL vmlinux 0x8ec36cf8 irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f199f19 tcp_fetch_timewait_stamp -EXPORT_SYMBOL_GPL vmlinux 0x8f267ee4 tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x8f4ff145 regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0x8f54b511 blocking_notifier_chain_cond_register -EXPORT_SYMBOL_GPL vmlinux 0x8f55a8be ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x8f58c5e1 yield_to -EXPORT_SYMBOL_GPL vmlinux 0x8f6107fc iommu_domain_window_enable -EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8fd25618 ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0x8fe5e493 mtd_table_mutex -EXPORT_SYMBOL_GPL vmlinux 0x8feb7278 xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0x9014d5f6 dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0x9034389f bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x903bc9e2 crypto_init_shash_spawn -EXPORT_SYMBOL_GPL vmlinux 0x9047c11a trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x90681b96 sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0x9091aea4 arizona_dev_init -EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x90a14dda proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0x90bd9283 snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL vmlinux 0x90c11616 crypto_init_spawn2 -EXPORT_SYMBOL_GPL vmlinux 0x90c6c41b get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x90e57e6d user_describe -EXPORT_SYMBOL_GPL vmlinux 0x90f13194 disk_part_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x90f26940 usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0x9105aecf inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x910c55d5 cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x9121f625 omap_dm_timer_set_source -EXPORT_SYMBOL_GPL vmlinux 0x91586205 of_usb_update_otg_caps -EXPORT_SYMBOL_GPL vmlinux 0x916307ec fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x916dd02a irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x916ed7c2 blk_add_request_payload -EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x918bfefd ata_scsi_simulate -EXPORT_SYMBOL_GPL vmlinux 0x919e9788 usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x91b161a4 sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91cafe7d tpm2_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x91d8d6e7 devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x91db88a2 snd_soc_component_read -EXPORT_SYMBOL_GPL vmlinux 0x91dc47c6 transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0x91e9c31e led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0x91ed075d dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x920484dd blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x922e61d4 sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0x9242b4e0 irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x92473901 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x92652448 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x927533e1 devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x92819b4d thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x92a46963 regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0x92accbf3 gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x92d31d88 pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92f6e4b6 __ktime_divns -EXPORT_SYMBOL_GPL vmlinux 0x9315fe24 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x933bcbc7 i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0x9350212c dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x9355efbd sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0x937bddea vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x9390a282 usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x93a6ae10 ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0x93b5e6ea iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0x93b6d654 sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x93b8f1a9 debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x93d3b951 of_fixed_factor_clk_setup -EXPORT_SYMBOL_GPL vmlinux 0x94077f3a cpufreq_table_validate_and_show -EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x943328f7 debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x943decb6 da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x94521a0b ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0x945874d3 ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x9459f30d of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x9463ff71 init_bch -EXPORT_SYMBOL_GPL vmlinux 0x947fd4f9 metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x948c21b2 pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x948e9d19 device_move -EXPORT_SYMBOL_GPL vmlinux 0x94906ed0 of_irq_parse_and_map_pci -EXPORT_SYMBOL_GPL vmlinux 0x949334db cpdma_ctlr_start -EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0x94b66273 usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x9502ccac add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x953da520 bus_set_iommu -EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x9543f238 srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x955561d0 usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0x955af1eb synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x957965b5 irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x957ac70b transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x9586a6ed cpdma_chan_get_stats -EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95c1298c pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x95c36be4 gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x95c578a0 ioremap_page_range -EXPORT_SYMBOL_GPL vmlinux 0x95d098ac gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0x9601f47e sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0x9611011b omap_iommu_restore_ctx -EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x96319203 devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x96348e43 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9669382d __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x9684a821 regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x96919667 musb_readl -EXPORT_SYMBOL_GPL vmlinux 0x96a76c5b __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x96aa7e90 usb_gadget_probe_driver -EXPORT_SYMBOL_GPL vmlinux 0x96c5b26a spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x96ca6121 get_mtd_device -EXPORT_SYMBOL_GPL vmlinux 0x96d2ffb0 cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0x96d39fbb regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x96d88eda snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL vmlinux 0x96dab4fb devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x970c9f22 da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x97138ca6 regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0x9748dfa4 cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x97aef434 pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0x97ba67c1 inode_congested -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97ea36d5 mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x9801b455 usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0x98205c53 tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x98491c0a dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x985e5a9d cpsw_ale_destroy -EXPORT_SYMBOL_GPL vmlinux 0x986c4794 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x98842124 devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x989eb047 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x98a115bb sdhci_pltfm_init -EXPORT_SYMBOL_GPL vmlinux 0x98b025c6 pci_cleanup_aer_uncorrect_error_status -EXPORT_SYMBOL_GPL vmlinux 0x98bfcd89 crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0x98c9a9cb watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0x98c9f584 klist_init -EXPORT_SYMBOL_GPL vmlinux 0x98d8af2c ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0x98e47bbc __srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x98f5fb22 gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on -EXPORT_SYMBOL_GPL vmlinux 0x98fe47f3 split_page -EXPORT_SYMBOL_GPL vmlinux 0x990f40f8 task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0x99227bf0 gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x9973add9 __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range -EXPORT_SYMBOL_GPL vmlinux 0x9982b324 md_run -EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x99aec12f rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0x99afac9e da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x99bd80c5 fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0x99c74b49 nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0x99cf0e60 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x99f9f449 pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0x9a0bc6f1 serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a1b93d7 ahci_do_softreset -EXPORT_SYMBOL_GPL vmlinux 0x9a2c9b02 kill_pid_info_as_cred -EXPORT_SYMBOL_GPL vmlinux 0x9a44f06b add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL vmlinux 0x9a608525 ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x9a6b6b55 subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck -EXPORT_SYMBOL_GPL vmlinux 0x9aa5e8a5 posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9ac99f24 omap_dm_timer_disable -EXPORT_SYMBOL_GPL vmlinux 0x9acfa0cb of_regulator_match -EXPORT_SYMBOL_GPL vmlinux 0x9ad4309a serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9afceed9 usb_phy_generic_register -EXPORT_SYMBOL_GPL vmlinux 0x9b18fdfc ahci_reset_controller -EXPORT_SYMBOL_GPL vmlinux 0x9b23bfb9 wm5102_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x9b30d7a4 wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x9b30f6e7 ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0x9b50f391 ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0x9b7271d3 security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0x9ba7e46c rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x9bae0277 cpufreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9bb96f07 crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0x9bca7de5 adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9be37c53 platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0x9be5f76f device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9c1b628d sched_setscheduler -EXPORT_SYMBOL_GPL vmlinux 0x9c1cd7cc phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x9c29d0b7 page_cache_async_readahead -EXPORT_SYMBOL_GPL vmlinux 0x9c3e5b59 percpu_ida_destroy -EXPORT_SYMBOL_GPL vmlinux 0x9c3fe019 sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0x9c46712c device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x9c4e5408 snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL vmlinux 0x9c56a095 mtd_block_isbad -EXPORT_SYMBOL_GPL vmlinux 0x9c67a4d1 snd_soc_register_platform -EXPORT_SYMBOL_GPL vmlinux 0x9c729411 wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x9c786b7e crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x9c984e2d ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x9ca54a8d driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9cd170bc extcon_register_interest -EXPORT_SYMBOL_GPL vmlinux 0x9cdc9867 cpdma_ctlr_stop -EXPORT_SYMBOL_GPL vmlinux 0x9cded4d4 devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x9ce8ae6c pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x9cfd1fdb pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0x9d0298aa aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0x9d21b8cc sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x9d457e5c wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0x9d4c0a28 device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0x9d60b3b0 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x9d6fe6db mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0x9d70c754 regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0x9d746094 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x9d77345b register_mtd_blktrans -EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x9d83caab usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0x9d8dd3e7 class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x9d903074 cpsw_ale_del_ucast -EXPORT_SYMBOL_GPL vmlinux 0x9da3d3a2 tpm_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported -EXPORT_SYMBOL_GPL vmlinux 0x9dcb0f8e desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0x9df183bd __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x9df78db4 dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0x9e107a88 ahci_platform_enable_resources -EXPORT_SYMBOL_GPL vmlinux 0x9e1fc618 irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0x9e312055 __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0x9e33ad68 pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x9e43f298 usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e66c9f4 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x9e79ff1b crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0x9ea2fcaf __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0x9ea556f8 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0x9eb5d89f input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0x9ec340e7 srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ee7e60a mtd_lock -EXPORT_SYMBOL_GPL vmlinux 0x9eed8ddc ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x9f23aad7 devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0x9f2f6852 hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9f431085 wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x9f52cbc8 of_pci_msi_chip_add -EXPORT_SYMBOL_GPL vmlinux 0x9f959b7a ata_eh_qc_retry -EXPORT_SYMBOL_GPL vmlinux 0x9f9d470e pinctrl_add_gpio_ranges -EXPORT_SYMBOL_GPL vmlinux 0x9fa1363c omap_iommu_save_ctx -EXPORT_SYMBOL_GPL vmlinux 0x9fc27709 dev_pm_opp_set_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fd2a59f devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9fdef1ba spi_unregister_master -EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9fec0550 trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x9ffb8d52 pwm_free -EXPORT_SYMBOL_GPL vmlinux 0xa00fe1a5 kthread_park -EXPORT_SYMBOL_GPL vmlinux 0xa013a9cf init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xa0150e13 crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0xa02d2664 virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0xa033df40 clk_register_divider -EXPORT_SYMBOL_GPL vmlinux 0xa048012b pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0xa084dacb ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xa0897893 cpsw_phy_sel -EXPORT_SYMBOL_GPL vmlinux 0xa08d7c4b snd_soc_unregister_codec -EXPORT_SYMBOL_GPL vmlinux 0xa09a27f5 blk_set_queue_dying -EXPORT_SYMBOL_GPL vmlinux 0xa0a684af dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0xa0cee821 ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0xa0d805dd usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0xa0dad543 __of_genpd_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xa0ff6530 sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0xa127d925 devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xa12cd99c rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0xa14a1817 trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0xa152b9e5 i2c_slave_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa154029e snd_soc_component_test_bits -EXPORT_SYMBOL_GPL vmlinux 0xa15c901e input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa16cf0a0 component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0xa177fc9f __blkdev_driver_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xa18158fc __bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0xa20ad45e dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0xa21e5859 of_get_regulator_init_data -EXPORT_SYMBOL_GPL vmlinux 0xa223f7ce sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL vmlinux 0xa29e978a da903x_write -EXPORT_SYMBOL_GPL vmlinux 0xa2a4f2d9 mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0xa2b9c993 clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xa2c60092 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0xa2e4fd7a virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0xa2ebfbf6 of_property_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0xa2ef439b power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xa315dd8d ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0xa385ec7e of_reserved_mem_device_release -EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register -EXPORT_SYMBOL_GPL vmlinux 0xa38e0cdd ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3c1abc5 unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0xa3da036a irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0xa3df41b1 ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0xa3e07c85 iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0xa3fd87bd alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0xa40f4acb regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0xa416ae38 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0xa42b6150 set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xa439bf10 tpm2_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xa439c5ab blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0xa456b54b cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0xa45a9bf4 dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xa45dd4bc arizona_free_irq -EXPORT_SYMBOL_GPL vmlinux 0xa45f337d tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa477e827 arizona_of_get_named_gpio -EXPORT_SYMBOL_GPL vmlinux 0xa47e32b0 led_trigger_store -EXPORT_SYMBOL_GPL vmlinux 0xa47f783b dev_pm_opp_find_freq_exact -EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa48c7903 ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0xa49f8e8f regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xa4b47ff5 crypto_create_tfm -EXPORT_SYMBOL_GPL vmlinux 0xa4b565f6 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0xa4c79092 register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xa4e43d2b aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa4e51356 x509_request_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0xa5069811 snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL vmlinux 0xa5304f6a ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0xa533ac04 __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0xa53401a3 __securityfs_setup_d_inode -EXPORT_SYMBOL_GPL vmlinux 0xa542efee regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xa55e1507 __mmu_notifier_invalidate_range_start -EXPORT_SYMBOL_GPL vmlinux 0xa5a07dfd snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0xa5af0ef4 list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0xa5b5e664 subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa5c64cd2 serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa5f8854a usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xa602bd73 __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0xa61b11f6 crypto_alloc_pcomp -EXPORT_SYMBOL_GPL vmlinux 0xa61b74e6 __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0xa6252c17 each_symbol_section -EXPORT_SYMBOL_GPL vmlinux 0xa6389bde usb_string -EXPORT_SYMBOL_GPL vmlinux 0xa650fa68 blkg_print_stat_bytes_recursive -EXPORT_SYMBOL_GPL vmlinux 0xa683c3a5 trace_call_bpf -EXPORT_SYMBOL_GPL vmlinux 0xa6ae0045 sdhci_add_host -EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6d8f1e8 bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6eb8e93 regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0xa717689b ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0xa724e01d raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0xa72ba281 unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xa74ac4f1 power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0xa7619dbb vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0xa765ddac pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0xa76c73d0 regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0xa78e1989 __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0xa7d8ea75 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xa818aa04 sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa86087da pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0xa86a4e79 pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0xa892b665 snd_device_disconnect -EXPORT_SYMBOL_GPL vmlinux 0xa8a78a79 dma_buf_vmap -EXPORT_SYMBOL_GPL vmlinux 0xa8a91138 snd_soc_get_enum_double -EXPORT_SYMBOL_GPL vmlinux 0xa8af0aec hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0xa8b6a9a1 crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xa8bc717e percpu_ida_free_tags -EXPORT_SYMBOL_GPL vmlinux 0xa8e0100a init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0xa8e98132 btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0xa8efa318 __blk_put_request -EXPORT_SYMBOL_GPL vmlinux 0xa8f198d4 of_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xa90767f7 skcipher_geniv_init -EXPORT_SYMBOL_GPL vmlinux 0xa911660e crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa94478d8 mv_mbus_dram_info_nooverlap -EXPORT_SYMBOL_GPL vmlinux 0xa98ec8b4 rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xa992c0c4 tasklet_hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0xa9e05660 io_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9e59bf7 register_jprobe -EXPORT_SYMBOL_GPL vmlinux 0xa9ffbfb4 regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0xaa1ac48a ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL vmlinux 0xaa243c72 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0xaa2afd83 scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0xaa44acff omap_tll_disable -EXPORT_SYMBOL_GPL vmlinux 0xaa601461 ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0xaa693526 led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0xaa82da0b blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaaaa1b84 blkdev_write_iter -EXPORT_SYMBOL_GPL vmlinux 0xaace5fba fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xaad65140 raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xab22bc67 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0xab393b51 pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xab59a581 power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del -EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request -EXPORT_SYMBOL_GPL vmlinux 0xab70d895 ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0xab8133cc pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL vmlinux 0xab945a16 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0xabb825e8 of_dma_router_register -EXPORT_SYMBOL_GPL vmlinux 0xabbbd5d9 ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabda1e2e decode_rs16 -EXPORT_SYMBOL_GPL vmlinux 0xac048ac1 dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0xac04fee0 regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xac20c2ef dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xac3d6e74 omap_dm_timer_set_int_enable -EXPORT_SYMBOL_GPL vmlinux 0xac5f3d70 musb_readb -EXPORT_SYMBOL_GPL vmlinux 0xac748e2b flush_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0xac83e733 __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0xac900d4f of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xac937d8d mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0xacb3cd9c __module_address -EXPORT_SYMBOL_GPL vmlinux 0xacdea2f1 list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list -EXPORT_SYMBOL_GPL vmlinux 0xad0c7d6c napi_by_id -EXPORT_SYMBOL_GPL vmlinux 0xad51fd87 __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xad53f3b6 crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xad5abb06 snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL vmlinux 0xad99ad4c elv_register -EXPORT_SYMBOL_GPL vmlinux 0xadae4596 devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0xadb9ad8b iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0xadfc675d perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0xae20bd12 virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0xae3911a5 dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0xae39483f ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xae4a5786 scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0xae5f99ea gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae7ad444 fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae81922b of_overlay_destroy_all -EXPORT_SYMBOL_GPL vmlinux 0xae830a9b uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xae85a9c9 regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0xae8a2a4f pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0xae9f9d59 nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xaeafb01c gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xaeb5bd59 scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xaed298b6 of_platform_default_populate -EXPORT_SYMBOL_GPL vmlinux 0xaed52238 pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0xaee2287b fat_scan -EXPORT_SYMBOL_GPL vmlinux 0xaee4331a trace_buffer_unlock_commit_regs -EXPORT_SYMBOL_GPL vmlinux 0xaf12bfb3 tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0xaf217f65 rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit -EXPORT_SYMBOL_GPL vmlinux 0xaf34a5ff securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xaf44beeb snd_soc_get_volsw -EXPORT_SYMBOL_GPL vmlinux 0xaf4bdf90 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xaf81383f usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0xaf85b7ec xfrm_inner_extract_output -EXPORT_SYMBOL_GPL vmlinux 0xafa92df1 tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0xb00986c5 regmap_fields_write -EXPORT_SYMBOL_GPL vmlinux 0xb00a4682 rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0xb010abea of_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xb0128a78 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0xb01f6a8d gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xb04b4470 cpdma_ctlr_create -EXPORT_SYMBOL_GPL vmlinux 0xb04d1f7b perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xb050f329 init_rs -EXPORT_SYMBOL_GPL vmlinux 0xb0530e92 __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb091da9e xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0bce4f0 __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0xb0daaef8 ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0xb0de0204 usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xb0e470cd pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0xb0f8f469 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0xb0fcfe1a tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0xb107a4fd pinctrl_utils_add_config -EXPORT_SYMBOL_GPL vmlinux 0xb11625b9 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xb12297b6 of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0xb125ceb2 cpdma_control_set -EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read -EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb1887940 of_property_read_u32_index -EXPORT_SYMBOL_GPL vmlinux 0xb19313ea usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0xb19cb0ac pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0xb19efcda task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0xb1abb8f3 use_mm -EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched -EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1bf6ddf usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0xb1bf773f cpsw_ale_del_vlan -EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain -EXPORT_SYMBOL_GPL vmlinux 0xb1d5f0ec devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0xb1d80b2f scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1eb2731 pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0xb1fe3a67 usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0xb217ab64 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb25be248 clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0xb25f3c37 tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb26ce439 skcipher_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0xb27427b0 crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0xb27e434a crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0xb28f692d rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0xb2b436ef dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0xb2b8c3e7 usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0xb2beb6f4 devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xb2d88612 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0xb2dce5af of_property_count_elems_of_size -EXPORT_SYMBOL_GPL vmlinux 0xb2e20078 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2eb8155 dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xb3096fae usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0xb3191fa3 blk_queue_bypass_start -EXPORT_SYMBOL_GPL vmlinux 0xb331f65e cpsw_ale_create -EXPORT_SYMBOL_GPL vmlinux 0xb3493861 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0xb362dcb7 blkcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0xb369329e snd_soc_register_codec -EXPORT_SYMBOL_GPL vmlinux 0xb3775b95 iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0xb3821f3b ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0xb398f553 snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL vmlinux 0xb39ad961 crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0xb3b52252 crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0xb3f5b0da regulator_can_change_voltage -EXPORT_SYMBOL_GPL vmlinux 0xb4055838 snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL vmlinux 0xb40c6376 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xb4253154 unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0xb43786a9 dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0xb47129d7 snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL vmlinux 0xb47775f6 adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xb47e9749 regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0xb48d8bba pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0xb48e3a35 clk_register -EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4cd3dbf tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb4cf0322 btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb4d98faf get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0xb4e1238e lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xb4e555c3 nf_unregister_afinfo -EXPORT_SYMBOL_GPL vmlinux 0xb4e6fb94 ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb4f10871 virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0xb4f88ac1 extcon_update_state -EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xb5486e13 device_reset -EXPORT_SYMBOL_GPL vmlinux 0xb5529248 ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xb557bc8e __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0xb56e23a2 snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL vmlinux 0xb57e4f6e crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited -EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table -EXPORT_SYMBOL_GPL vmlinux 0xb5cba789 inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0xb5cf9df4 tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0xb5e896fb tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb6138306 led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb6446d6a unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xb6469bb6 debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0xb66c96b0 pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0xb68e87ed ping_proc_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb6f5425d replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0xb6f6308f usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xb7025ddb inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xb7136e18 snd_soc_put_volsw -EXPORT_SYMBOL_GPL vmlinux 0xb715dfb5 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0xb71bebef ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase -EXPORT_SYMBOL_GPL vmlinux 0xb74bfae0 kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0xb74fcab3 transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb75f324b snd_soc_register_card -EXPORT_SYMBOL_GPL vmlinux 0xb76ebca4 usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0xb771e6b7 bL_switch_request_cb -EXPORT_SYMBOL_GPL vmlinux 0xb773a7ba fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0xb77714a6 pm_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0xb77cb0a8 cpdma_chan_submit -EXPORT_SYMBOL_GPL vmlinux 0xb7a5a320 snd_soc_platform_read -EXPORT_SYMBOL_GPL vmlinux 0xb7c33400 snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL vmlinux 0xb7e07fd6 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0xb7e64a53 pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0xb80b06f4 __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb820bbcf driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0xb82566eb omap_tll_enable -EXPORT_SYMBOL_GPL vmlinux 0xb8346aeb percpu_ida_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb84bb204 __pci_complete_power_transition -EXPORT_SYMBOL_GPL vmlinux 0xb85b3928 dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0xb87f853c xhci_run -EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb88e2859 tps65217_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xb89f4c01 pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0xb8b89a5c led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0xb8bc8a06 da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8d3fd8e irq_find_matching_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xb8ee111a event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0xb90f4ffa pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0xb91dd860 cpsw_ale_control_set -EXPORT_SYMBOL_GPL vmlinux 0xb92427b4 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0xb9334913 regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0xb933bce5 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0xb9345c62 crypto_alg_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb93858ae da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0xb98fb281 flush_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0xb99974ae pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0xb99b0cc9 crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb9c1d2f3 omap_dm_timer_set_prescaler -EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9ca03de bio_associate_blkcg -EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9e87b94 bL_switcher_trace_trigger -EXPORT_SYMBOL_GPL vmlinux 0xb9f41a39 mnt_clone_write -EXPORT_SYMBOL_GPL vmlinux 0xba1fc8ed regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba313386 tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0xba67ac9c pm_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0xba8104b5 wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0xba84ebab wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xba8929ea percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbaca6444 tps65912_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xbacdd83c xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xbb084645 wait_for_tpm_stat -EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb11cfba klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xbb4b29a3 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xbb4c7570 pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xbb7ab7b7 regulator_register -EXPORT_SYMBOL_GPL vmlinux 0xbb7d3621 inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbb7e6a18 component_master_add -EXPORT_SYMBOL_GPL vmlinux 0xbb9e2ab5 sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0xbba3a3e3 pinconf_generic_dump_config -EXPORT_SYMBOL_GPL vmlinux 0xbba6d24c omap_dm_timer_stop -EXPORT_SYMBOL_GPL vmlinux 0xbbc0888b tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xbbc857cc mtd_block_markbad -EXPORT_SYMBOL_GPL vmlinux 0xbbcd9478 of_fdt_unflatten_tree -EXPORT_SYMBOL_GPL vmlinux 0xbbf7d228 bsg_request_fn -EXPORT_SYMBOL_GPL vmlinux 0xbc07cb63 ip_tunnel_get_stats64 -EXPORT_SYMBOL_GPL vmlinux 0xbc0ae0ad of_pci_range_parser_one -EXPORT_SYMBOL_GPL vmlinux 0xbc0c7027 netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0xbc1a07fe led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0xbc37723d powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0xbc435692 serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0xbc4fa7ac device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xbc56a57d omap_dm_timer_start -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc7f2db2 wm8350_device_exit -EXPORT_SYMBOL_GPL vmlinux 0xbc871663 tpm2_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0xbc90a0c7 ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xbca8311d sdhci_enable_irq_wakeups -EXPORT_SYMBOL_GPL vmlinux 0xbca9e68f crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbcb01d61 ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xbcb2794a usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0xbcb3b918 spi_master_suspend -EXPORT_SYMBOL_GPL vmlinux 0xbcbaa80a __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0xbcc3cbaf platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcd7021a dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xbcd8825a extcon_set_cable_state -EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbce27a6e pci_intx_mask_supported -EXPORT_SYMBOL_GPL vmlinux 0xbce58b80 wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xbcf359ba crypto_alloc_ablkcipher -EXPORT_SYMBOL_GPL vmlinux 0xbcf89ab6 __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0xbcff817b wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xbd3ea936 rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd416ad0 gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0xbd4c7d8b pci_ioremap_io -EXPORT_SYMBOL_GPL vmlinux 0xbd4e9d48 regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0xbd80314c trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0xbd9bf5e0 securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xbdb55e74 i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0xbdbcfd54 usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0xbddb0d35 msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0xbddd8b1e dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0xbdf512de free_bch -EXPORT_SYMBOL_GPL vmlinux 0xbdf5a544 tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xbdfd6bd0 shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xbe042bcb trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xbe3717ac scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbe97c87d handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0xbee6859a crypto_register_pcomp -EXPORT_SYMBOL_GPL vmlinux 0xbeea0ceb ping_seq_fops -EXPORT_SYMBOL_GPL vmlinux 0xbeec4b3b skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf565292 omap_mcbsp_st_add_controls -EXPORT_SYMBOL_GPL vmlinux 0xbf63b645 skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0xbf748a52 blkg_print_stat_ios -EXPORT_SYMBOL_GPL vmlinux 0xbfa3bf9f irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xbfada186 dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfbcddf8 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbfc6cf6c usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0xbfcfeda1 snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbff76282 pinctrl_dev_get_name -EXPORT_SYMBOL_GPL vmlinux 0xbffe3d78 unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 -EXPORT_SYMBOL_GPL vmlinux 0xc00fb6eb da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0xc024c22d pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0xc029eabc bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc02e139a pm_genpd_syscore_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xc03a654b memalloc_socks -EXPORT_SYMBOL_GPL vmlinux 0xc07b1fc7 omap_dm_timer_write_status -EXPORT_SYMBOL_GPL vmlinux 0xc07ea6b5 l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0xc07ec3e5 pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0xc081c246 bL_switcher_put_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0c5a639 user_read -EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc0d69bdf spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0xc0da0577 mtd_erase -EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0xc0e75cec visitor128 -EXPORT_SYMBOL_GPL vmlinux 0xc0eca556 mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc0fc0c63 get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0xc104b3ea rhashtable_walk_init -EXPORT_SYMBOL_GPL vmlinux 0xc111861c mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0xc121fcca inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0xc124d753 bio_associate_current -EXPORT_SYMBOL_GPL vmlinux 0xc131f2db blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0xc1334b0d gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0xc134c64a bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc17d4c37 mount_mtd -EXPORT_SYMBOL_GPL vmlinux 0xc18377f6 tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xc18578ed process_srcu -EXPORT_SYMBOL_GPL vmlinux 0xc186ac81 sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL vmlinux 0xc194cc3b dm_get_rq_mapinfo -EXPORT_SYMBOL_GPL vmlinux 0xc1a63abe scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0xc1bced6a cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xc1c3be51 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0xc2189f2d mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xc21b3cca devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc2362fe7 cm_notify_event -EXPORT_SYMBOL_GPL vmlinux 0xc263ab0e dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0xc26a4e94 irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0xc283ee19 __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0xc2a51785 debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0xc2a9b6b1 setup_irq -EXPORT_SYMBOL_GPL vmlinux 0xc2ad04ec blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0xc2bd4951 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0xc2c005c2 tps65217_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0xc2c56abb usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0xc2d8a780 debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0xc2e728dc ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xc2ff62bc dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0xc30b3a36 scatterwalk_map -EXPORT_SYMBOL_GPL vmlinux 0xc3121908 snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL vmlinux 0xc3286b97 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0xc32e7129 of_get_videomode -EXPORT_SYMBOL_GPL vmlinux 0xc33a7244 pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc351cdac clk_debugfs_add_file -EXPORT_SYMBOL_GPL vmlinux 0xc36accd6 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xc380896e pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xc385cb58 perf_num_counters -EXPORT_SYMBOL_GPL vmlinux 0xc3a64a0a pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0xc3b93bba klist_next -EXPORT_SYMBOL_GPL vmlinux 0xc3be5ebe get_kernel_page -EXPORT_SYMBOL_GPL vmlinux 0xc3be8b1f skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0xc3c7744f fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xc3c91ff2 usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0xc3d734ab devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xc4136c26 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0xc41e0178 btree_last -EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc42c804c iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0xc432fb5d usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0xc4412203 rhashtable_insert_rehash -EXPORT_SYMBOL_GPL vmlinux 0xc45346c0 tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc48aa3cb user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc4aad4a4 wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc4ab207a ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0xc4e8f3bc pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0xc52b5346 find_module -EXPORT_SYMBOL_GPL vmlinux 0xc538a729 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0xc54d8fa7 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc56b837a wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0xc56c0e03 dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc57ed0f5 find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0xc58374ba ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0xc585e2cc snd_card_add_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0xc5864652 tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0xc5880cc0 skb_segment -EXPORT_SYMBOL_GPL vmlinux 0xc5a95962 device_property_present -EXPORT_SYMBOL_GPL vmlinux 0xc5ab5d1e inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0xc5c6fc6c pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0xc5ce0820 of_alias_get_id -EXPORT_SYMBOL_GPL vmlinux 0xc5d5513e cpdma_chan_process -EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0xc5e0dd66 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0xc5e59aa7 class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0xc6103e1b inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc626d10a mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xc644a920 regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0xc645ae07 regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0xc649229a clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0xc64c00ee request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc661d867 devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc6816358 usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xc684ffe3 ahci_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xc685c037 cpdma_check_free_tx_desc -EXPORT_SYMBOL_GPL vmlinux 0xc699ed0a cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc69d4f51 imx_pcm_fiq_init -EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6aa3a34 virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0xc6b807d0 rq_flush_dcache_pages -EXPORT_SYMBOL_GPL vmlinux 0xc6db209b inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xc6e34f36 register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xc70113ac inet_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0xc7063e6b usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xc733bec1 fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xc75e8305 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xc76089e4 handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0xc761a212 iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0xc773ecfc ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0xc77f6aee put_pid -EXPORT_SYMBOL_GPL vmlinux 0xc7987956 ping_err -EXPORT_SYMBOL_GPL vmlinux 0xc7a002a5 regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer -EXPORT_SYMBOL_GPL vmlinux 0xc7cbfd65 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0xc7d6cf69 of_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc7f042ba ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xc7fe9e60 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL vmlinux 0xc80486a2 device_rename -EXPORT_SYMBOL_GPL vmlinux 0xc8134a71 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc823c1fd phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL vmlinux 0xc83c0359 usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xc87e2d7a sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xc894c8d0 regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0xc897bfb6 __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0xc8ad7522 usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0xc8cb630b snd_soc_get_strobe -EXPORT_SYMBOL_GPL vmlinux 0xc8dd2a31 pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0xc8fd23af crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xc9276d79 do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0xc931fc51 sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0xc9516b9b kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0xc9529b2a dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc967b9d0 mpc8xxx_spi_tx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0xc968081e __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level -EXPORT_SYMBOL_GPL vmlinux 0xc99107e0 of_irq_parse_raw -EXPORT_SYMBOL_GPL vmlinux 0xc99484a4 of_get_fb_videomode -EXPORT_SYMBOL_GPL vmlinux 0xc9c6d7b9 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0xc9d8613d adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0xc9dc6848 kernfs_path -EXPORT_SYMBOL_GPL vmlinux 0xc9e9a801 wm8998_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc9ff541a thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xca1b5e3a pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0xca309b89 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xca4bacd5 clk_gpio_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xca4cfd98 irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0xca5fece1 __of_genpd_xlate_simple -EXPORT_SYMBOL_GPL vmlinux 0xca6059f6 ahci_host_activate -EXPORT_SYMBOL_GPL vmlinux 0xca69db54 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcacb2e8e pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0xcad97f8d ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0xcafe0305 swiotlb_unmap_page -EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb198859 component_master_del -EXPORT_SYMBOL_GPL vmlinux 0xcb24b4e2 extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcb32cb36 musb_writeb -EXPORT_SYMBOL_GPL vmlinux 0xcb376496 sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0xcb3d5525 ata_eh_thaw_port -EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module -EXPORT_SYMBOL_GPL vmlinux 0xcb561ed5 serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0xcb77980b pl08x_filter_id -EXPORT_SYMBOL_GPL vmlinux 0xcbb34a18 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xcbbd11a5 devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbedf069 sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0xcbf05b29 device_init_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xcbfa29ca sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0xcc3926a3 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0xcc411690 sdhci_set_clock -EXPORT_SYMBOL_GPL vmlinux 0xcc44f3cb class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xcc4a76bc tc3589x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xcc591b34 da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0xcc5c4c19 edac_subsys -EXPORT_SYMBOL_GPL vmlinux 0xcc8334a2 virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule -EXPORT_SYMBOL_GPL vmlinux 0xcc88a05d device_create -EXPORT_SYMBOL_GPL vmlinux 0xccbc64d6 snd_soc_of_parse_audio_prefix -EXPORT_SYMBOL_GPL vmlinux 0xccbca9bc ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0xcccccfdf tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xcd0bf205 mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xcd20ea87 snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL vmlinux 0xcd350dcd xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0xcd4bdfcc of_thermal_is_trip_valid -EXPORT_SYMBOL_GPL vmlinux 0xcd5c7b16 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0xcd6b0047 stmpe_enable -EXPORT_SYMBOL_GPL vmlinux 0xcd740a07 fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0xcd751277 snd_soc_bytes_info -EXPORT_SYMBOL_GPL vmlinux 0xcd7545a9 phy_exit -EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq -EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs -EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcdb26681 register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xce15ee70 dev_pm_opp_get_notifier -EXPORT_SYMBOL_GPL vmlinux 0xce3015e4 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0xce3255f4 devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0xce393337 snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce783a47 of_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xce826c5d usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0xce858a24 pci_fixup_irqs -EXPORT_SYMBOL_GPL vmlinux 0xce9024fb raw_seq_open -EXPORT_SYMBOL_GPL vmlinux 0xce979a5d ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0xcedc5494 od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0xcedebf54 nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcef851f4 devm_rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xceff9843 devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0xcf0f2473 mmput -EXPORT_SYMBOL_GPL vmlinux 0xcf16a2d0 power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0xcf1cd37d noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0xcf3dc50c cpsw_ale_add_mcast -EXPORT_SYMBOL_GPL vmlinux 0xcf4620ac fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain -EXPORT_SYMBOL_GPL vmlinux 0xcf5d867f dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xcf6d410a vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xcf870c39 thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0xcf8f8d56 cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xcf91887c of_clk_add_provider -EXPORT_SYMBOL_GPL vmlinux 0xcf999247 vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0xcfa2ed20 cpsw_ale_start -EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xcfb66203 class_destroy -EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0xcfcbe8d5 blkg_stat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0xcfce4497 watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xd0165061 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0xd0305dd2 validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xd0407299 omapdss_of_get_first_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd06911a0 bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0xd076f792 clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0xd0829750 dev_pm_opp_of_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0xd0a34a50 inet_hash -EXPORT_SYMBOL_GPL vmlinux 0xd0a73af8 ahci_print_info -EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0c52e06 pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xd12df8d4 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0xd133efbb pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0xd1389c59 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xd139d60d component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0xd143c323 pm_genpd_init -EXPORT_SYMBOL_GPL vmlinux 0xd14af968 sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xd14babaf __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xd151dc23 arizona_clk32k_enable -EXPORT_SYMBOL_GPL vmlinux 0xd153a0f3 fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0xd15b58dd sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xd16fd71e uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xd1822f0b cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xd188f643 fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0xd18d4af4 __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xd18f2caa extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0xd1cfdc07 regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0xd1dcceee mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0xd1f0a011 usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd208619b serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd2131c2a pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd26a4173 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd29646b2 thermal_generate_netlink_event -EXPORT_SYMBOL_GPL vmlinux 0xd2aaeb4e kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0xd2ae5d79 arizona_of_get_type -EXPORT_SYMBOL_GPL vmlinux 0xd2d0ab9d vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL vmlinux 0xd2de7533 unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript -EXPORT_SYMBOL_GPL vmlinux 0xd33a0654 led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed -EXPORT_SYMBOL_GPL vmlinux 0xd34a7544 clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0xd353a29c bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd35d4f51 usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xd368e35f unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0xd38e1b32 debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xd3cb4ba1 __sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0xd3dccbd7 dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0xd3dde034 md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0xd3f488c7 filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0xd3f5dfc6 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0xd401336e cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd41daa43 spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xd4295c68 regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xd4400ee0 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd44c2f38 cci_disable_port_by_cpu -EXPORT_SYMBOL_GPL vmlinux 0xd44c3437 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0xd4677045 pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xd46a2348 gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xd47e63eb regmap_update_bits_check -EXPORT_SYMBOL_GPL vmlinux 0xd4a9bc46 of_irq_get -EXPORT_SYMBOL_GPL vmlinux 0xd4ada886 gadget_find_ep_by_name -EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4cdd571 virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0xd4da7503 tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0xd4e2cb10 pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd51262fa scsi_internal_device_unblock -EXPORT_SYMBOL_GPL vmlinux 0xd51664f5 omap_dm_timer_enable -EXPORT_SYMBOL_GPL vmlinux 0xd517d553 sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0xd524f506 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0xd5385500 max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0xd53da4e3 omap_dm_timers_active -EXPORT_SYMBOL_GPL vmlinux 0xd5418ede __netpoll_free_async -EXPORT_SYMBOL_GPL vmlinux 0xd54838c8 bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0xd54bfce5 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0xd54dde1c pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd55b93fd ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0xd5752fd4 ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0xd57b486e invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0xd5a72bc4 snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL vmlinux 0xd5acb1b6 fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0xd5f0ee97 dm_get_table_device -EXPORT_SYMBOL_GPL vmlinux 0xd6025f62 irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh -EXPORT_SYMBOL_GPL vmlinux 0xd6187220 ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0xd62818d2 omap_dm_timer_set_load -EXPORT_SYMBOL_GPL vmlinux 0xd635534d user_preparse -EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd67acc09 page_endio -EXPORT_SYMBOL_GPL vmlinux 0xd688e15d component_del -EXPORT_SYMBOL_GPL vmlinux 0xd68a57b8 sched_setattr -EXPORT_SYMBOL_GPL vmlinux 0xd6a4765a snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL vmlinux 0xd6a76f9a usb_gadget_set_state -EXPORT_SYMBOL_GPL vmlinux 0xd6c24507 mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0xd6d3239d usb_gadget_udc_reset -EXPORT_SYMBOL_GPL vmlinux 0xd6f6585d __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xd7044381 mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0xd73e5c28 sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0xd7627bb1 blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0xd767939a device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd76d5962 usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xd78626f4 ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xd7876791 snd_soc_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xd7981076 cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xd7a08d90 of_modalias_node -EXPORT_SYMBOL_GPL vmlinux 0xd7abab9d of_get_pci_domain_nr -EXPORT_SYMBOL_GPL vmlinux 0xd7b05c81 fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0xd7bc7ddb dev_pm_opp_get_suspend_opp -EXPORT_SYMBOL_GPL vmlinux 0xd7cfb7bb gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xd7d6cb5b regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0xd7d933d3 crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0xd7f757a5 debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0xd815802a dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0xd81b7ef5 wm5102_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xd839f426 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd8a705d0 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0xd8d092f1 sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0xd8d89ecd thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xd8ef600e gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0xd8f9a1a9 fsl8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0xd902dcf7 irq_create_direct_mapping -EXPORT_SYMBOL_GPL vmlinux 0xd939978b dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0xd94aa457 display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd9a4f7cb snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL vmlinux 0xd9d2cf93 snd_soc_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd9d41b57 snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL vmlinux 0xd9daa03b __put_net -EXPORT_SYMBOL_GPL vmlinux 0xd9e2821e pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xd9ea09f5 blkdev_read_iter -EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xda146b07 nand_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0xda451e28 __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xda6ca117 scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0xda74489c policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0xda8e7f5b __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xda9ba2b0 __ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0xdaa10d7f ulpi_viewport_access_ops -EXPORT_SYMBOL_GPL vmlinux 0xdadcf0bc devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xdae715e0 videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0xdaefd446 phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xdaf3b85a devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdb088cb1 pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xdb0ff28d debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xdb2bc82a i2c_new_device -EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xdb5532a1 usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0xdb6c9719 pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0xdb729232 netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb92861d __rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0xdbc4fe25 snd_soc_get_dai_substream -EXPORT_SYMBOL_GPL vmlinux 0xdbcbf762 usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0xdbd5db54 pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0xdbdcb406 cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0xdbdfa8f4 dev_pm_opp_get_freq -EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdc1fab00 scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0xdc3a9ff6 dev_pm_opp_find_freq_floor -EXPORT_SYMBOL_GPL vmlinux 0xdc461430 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0xdc4bef3e usb_del_gadget_udc -EXPORT_SYMBOL_GPL vmlinux 0xdc732b7d vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable -EXPORT_SYMBOL_GPL vmlinux 0xdc8bf900 iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xdc97acd1 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9b8a21 dbs_check_cpu -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdcc2806b shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0xdcc70fe0 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xdcd8e4e2 crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0xdcdcca84 class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xdcf5def2 usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock -EXPORT_SYMBOL_GPL vmlinux 0xdd200ce5 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0xdd297faf reservation_object_wait_timeout_rcu -EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd79f866 devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0xdd8d6c4f fuse_get_req_for_background -EXPORT_SYMBOL_GPL vmlinux 0xddb2703d ahci_platform_disable_resources -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0xddd6a7be devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xddf3ec6f cpsw_ale_set_allmulti -EXPORT_SYMBOL_GPL vmlinux 0xde0c42cc tcp_death_row -EXPORT_SYMBOL_GPL vmlinux 0xde0c74d8 __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xde128f99 pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xde651f98 __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0xde7a9e5d ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0xdeb7bb2f trace_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xdebe8556 register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xdedd7529 pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0xdeff93b9 pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xdf0a0108 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf255dcf memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdf26109a fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xdf33dbba ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0xdf38a330 sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xdf3d7f70 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xdf4ecc29 regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdf8cac26 pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0xdfb88e67 pci_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xdfbc1fa1 reservation_object_get_fences_rcu -EXPORT_SYMBOL_GPL vmlinux 0xdfcf9868 __sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0xdfdd3e0c pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name -EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0xe0451f49 pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xe06513e3 xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0xe06e4157 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe070bb19 pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0xe07ca631 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0xe082c133 usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0xe0a658c8 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0xe0a9b175 ahci_reset_em -EXPORT_SYMBOL_GPL vmlinux 0xe0b16d26 thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0b1c32a cpsw_ale_control_get -EXPORT_SYMBOL_GPL vmlinux 0xe101c027 rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0xe104c61c wakeup_source_drop -EXPORT_SYMBOL_GPL vmlinux 0xe1073072 bus_find_device_by_name -EXPORT_SYMBOL_GPL vmlinux 0xe11863c8 ahci_platform_resume_host -EXPORT_SYMBOL_GPL vmlinux 0xe11e7e45 for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0xe13bc8a4 gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xe13d0329 perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe16d6265 __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xe1719dd1 debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe1818cf6 snd_soc_jack_report -EXPORT_SYMBOL_GPL vmlinux 0xe18e2fef pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xe18e3ea6 unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0xe19f5ea4 snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL vmlinux 0xe1a1f8f4 led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0xe1ac8da3 usb_gadget_giveback_request -EXPORT_SYMBOL_GPL vmlinux 0xe1d0d00d sm501_modify_reg -EXPORT_SYMBOL_GPL vmlinux 0xe1ee898f scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0xe1ff72fd inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0xe202eb74 regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xe20f8a11 pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0xe2695b5d device_register -EXPORT_SYMBOL_GPL vmlinux 0xe26c1e7c regulator_get -EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength -EXPORT_SYMBOL_GPL vmlinux 0xe28abeb5 uniphier_pinctrl_remove -EXPORT_SYMBOL_GPL vmlinux 0xe2a02cc8 crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0xe2b4f0a3 wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0xe2bd1f82 devm_regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xe308d133 dma_request_slave_channel_reason -EXPORT_SYMBOL_GPL vmlinux 0xe317a70d sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0xe32fae58 usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0xe333e70c crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xe33d8a69 ahci_stop_engine -EXPORT_SYMBOL_GPL vmlinux 0xe357c750 gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0xe36790d2 gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xe37a6883 usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0xe3a9ecc6 regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xe3b12125 pci_reset_pri -EXPORT_SYMBOL_GPL vmlinux 0xe3bc8b42 perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0xe3be624c dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xe3c4aaa6 mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0xe3cbec00 blkg_dev_name -EXPORT_SYMBOL_GPL vmlinux 0xe3eaf570 virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0xe3ed0714 snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL vmlinux 0xe3f8a30f crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xe3f953b1 cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0xe3fab2e9 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0xe3fc7b8b driver_register -EXPORT_SYMBOL_GPL vmlinux 0xe414f98b ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0xe422138c extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xe42e1f70 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe43d2097 tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0xe45c6264 pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4ac65f2 sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0xe4add08a relay_reset -EXPORT_SYMBOL_GPL vmlinux 0xe4bb91de regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0xe4c22565 cpdma_chan_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto -EXPORT_SYMBOL_GPL vmlinux 0xe505d3e5 dummy_con -EXPORT_SYMBOL_GPL vmlinux 0xe50aa05e snd_soc_debugfs_root -EXPORT_SYMBOL_GPL vmlinux 0xe5160c44 ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0xe522fc3f pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0xe5252179 mtd_read -EXPORT_SYMBOL_GPL vmlinux 0xe54b5dd7 __init_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0xe5635619 tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0xe56a6327 spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0xe571773e ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq -EXPORT_SYMBOL_GPL vmlinux 0xe5bfd87e devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe5d67021 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0xe5eed4b3 regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xe5f0f1c7 irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xe603c40a udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe61640be attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0xe62d9c69 device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xe63446ba percpu_up_read -EXPORT_SYMBOL_GPL vmlinux 0xe645075d __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0xe645e9a9 phy_get -EXPORT_SYMBOL_GPL vmlinux 0xe651c47e pwm_enable -EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe658c603 pwm_config -EXPORT_SYMBOL_GPL vmlinux 0xe665765a devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0xe66b5945 clk_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xe675abb1 posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0xe6bf620f ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module -EXPORT_SYMBOL_GPL vmlinux 0xe6d5c5c6 key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen -EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xe70b14cb snd_soc_platform_write -EXPORT_SYMBOL_GPL vmlinux 0xe70e59f0 fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0xe72e83aa of_dma_configure -EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0xe74c9b64 devm_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xe74f139c __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe771cbad device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0xe77425ae virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0xe79337a6 of_get_display_timings -EXPORT_SYMBOL_GPL vmlinux 0xe7a4ab89 devm_spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0xe7b7d05a snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL vmlinux 0xe7e0d5a6 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0xe7e0e262 tpm2_startup -EXPORT_SYMBOL_GPL vmlinux 0xe7eb264d sg_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr -EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe858cb37 reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit -EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe863872f ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0xe865070b ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0xe86561d2 generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0xe87e8df1 ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL vmlinux 0xe8831ae3 crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0xe8876a95 regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0xe8a03510 phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe8a8ecc6 skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0xe8ad03b1 ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xe8ae1a36 sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0xe8b03a3c gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0xe90482e7 regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0xe90e8aef imx_pcm_dma_init -EXPORT_SYMBOL_GPL vmlinux 0xe935f6d1 ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0xe93cafca __rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe93e5ef5 vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0xe9473c2b blk_mq_register_disk -EXPORT_SYMBOL_GPL vmlinux 0xe9504a08 da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe9640d94 __compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0xe96757c5 posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0xe97333fc usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xe97fc522 sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0xe9877084 bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xe9893d1e kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0xe997a768 btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0xe9ab9bc2 component_add -EXPORT_SYMBOL_GPL vmlinux 0xe9c88c43 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0xe9cd4f05 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9d6e070 put_mtd_device -EXPORT_SYMBOL_GPL vmlinux 0xe9fd2d0a ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea1bb291 bL_switcher_get_enabled -EXPORT_SYMBOL_GPL vmlinux 0xea2da8d7 ahci_platform_suspend -EXPORT_SYMBOL_GPL vmlinux 0xea380ec5 snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL vmlinux 0xea3904f1 perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0xea4535c4 ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL vmlinux 0xea5feddc device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0xea76c480 usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xea954677 amba_apb_device_add_res -EXPORT_SYMBOL_GPL vmlinux 0xeaf1b096 usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xeaf272e9 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xeaf53dfd snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL vmlinux 0xeb0d6580 unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0xeb2a5f2b crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0xeb62d882 wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL vmlinux 0xeb79439c snd_soc_write -EXPORT_SYMBOL_GPL vmlinux 0xeb8f0aa2 gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0xeb917a71 user_update -EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xebb3592b snmp_get_cpu_field64 -EXPORT_SYMBOL_GPL vmlinux 0xebb7e578 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0xebb940d3 pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xebb9f152 transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0xebbe1622 io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xebcaf734 rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0xebd07cc4 mtd_erase_callback -EXPORT_SYMBOL_GPL vmlinux 0xebd46cc3 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xebfea5da devm_pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xec034c4c iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare -EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del -EXPORT_SYMBOL_GPL vmlinux 0xec514ca1 ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xec67977d snd_soc_put_strobe -EXPORT_SYMBOL_GPL vmlinux 0xec922cd0 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0xecc5ad2f alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0xecfd8761 usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xed02e5e4 disk_part_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xed0f9951 snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL vmlinux 0xed3bcb0f ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0xed4ff908 __put_mtd_device -EXPORT_SYMBOL_GPL vmlinux 0xed52d099 dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL vmlinux 0xed6bc592 bdev_read_page -EXPORT_SYMBOL_GPL vmlinux 0xed787b4b perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0xedd76a3f power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0xede0ef97 ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0xede44b52 pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0xedf38710 led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0xedf52ffe wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0xedfb6cf9 tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0xee1187aa simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0xee3dd398 rhashtable_walk_start -EXPORT_SYMBOL_GPL vmlinux 0xee5d3973 pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible -EXPORT_SYMBOL_GPL vmlinux 0xee760c3b snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL vmlinux 0xee8d7539 cpdma_chan_start -EXPORT_SYMBOL_GPL vmlinux 0xee9331a3 tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xee9532b3 dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0xeeba4ce2 ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0xeeba7c64 __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0xeecec569 ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0xeefb8b06 spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0xeefff858 device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0xef3ad916 stmpe_disable -EXPORT_SYMBOL_GPL vmlinux 0xef409b74 kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef593cc6 sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL vmlinux 0xef6127c2 crypto_ablkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xef66075c usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef778618 of_irq_get_byname -EXPORT_SYMBOL_GPL vmlinux 0xef83bbf8 sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0xef8e2cda sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0xef95edb8 amba_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xef9abfa2 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0xef9f8553 ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0xefa1a568 gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefaf23bb class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xefc87358 cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0xefc95c00 __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xeff967c6 blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0xf0352dae __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0xf0393ab3 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0xf059e6ac clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0xf06a4305 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xf08c4665 devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xf0b07729 register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xf0c50a0e omap_dm_timer_set_pwm -EXPORT_SYMBOL_GPL vmlinux 0xf0d6a7b7 pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf0dad463 shmem_get_seals -EXPORT_SYMBOL_GPL vmlinux 0xf0e57433 sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0xf0e734e5 device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xf0ea26d3 shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0xf112d524 mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0xf1175350 pci_enable_pri -EXPORT_SYMBOL_GPL vmlinux 0xf11db8a2 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0xf1234ad5 rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0xf12caf22 clk_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0xf13ed0c9 dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xf14307cc led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0xf1506cd1 crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0xf1528ee5 rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0xf16b258e iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0xf17fe1d0 ahci_check_ready -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf19ab5f8 seq_release_net -EXPORT_SYMBOL_GPL vmlinux 0xf1aaa2cd ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key -EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on -EXPORT_SYMBOL_GPL vmlinux 0xf1ce2332 sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xf1e24a8b serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0xf1e8c78b of_gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0xf1eaf181 iommu_domain_window_disable -EXPORT_SYMBOL_GPL vmlinux 0xf1f16c9e unregister_jprobes -EXPORT_SYMBOL_GPL vmlinux 0xf1f86871 devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xf205b4bd virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0xf2077fdd napi_hash_del -EXPORT_SYMBOL_GPL vmlinux 0xf21b2642 register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0xf21db9e7 handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf22a3450 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xf23fca74 gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0xf247f0a8 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0xf2675686 gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xf26b8559 mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0xf285c7af of_devfreq_cooling_register_power -EXPORT_SYMBOL_GPL vmlinux 0xf28f0043 __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0xf297c53d cpsw_ale_dump -EXPORT_SYMBOL_GPL vmlinux 0xf2a2ed0e snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xf2b86de3 usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0xf2d3b3dc dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0xf2d516bd pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0xf2e52578 clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0xf2e94b9b dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support -EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xf30fda27 lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf31d547b serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0xf32b2df4 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf35d549b ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0xf35dd68c dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0xf3623718 snd_soc_unregister_platform -EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf38a3a6e amba_apb_device_add -EXPORT_SYMBOL_GPL vmlinux 0xf3a811c6 crypto_alloc_instance2 -EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3b91a7c rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0xf3c3d282 of_get_display_timing -EXPORT_SYMBOL_GPL vmlinux 0xf3c8b723 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xf420ef23 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0xf42151f5 class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xf42a2feb dev_pm_opp_of_remove_table -EXPORT_SYMBOL_GPL vmlinux 0xf42cc313 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL vmlinux 0xf4314e6c devm_pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0xf43c2803 scsi_device_from_queue -EXPORT_SYMBOL_GPL vmlinux 0xf4411471 dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0xf443a54f simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xf4454792 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0xf456ca10 fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0xf467ec23 usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0xf47cc349 snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL vmlinux 0xf47f2ef6 usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0xf4874398 max_gen_clk_ops -EXPORT_SYMBOL_GPL vmlinux 0xf48ceebd net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf48e02ff regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask -EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh -EXPORT_SYMBOL_GPL vmlinux 0xf4a66195 tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0xf4b0aa9d is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0xf4b23aae snd_soc_dapm_free -EXPORT_SYMBOL_GPL vmlinux 0xf4b6639b raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0xf4dc7c63 tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0xf4dd72cd sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xf4e9fad4 _submit_bh -EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf5029583 sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xf50a0890 snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0xf5122c3b ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0xf513bdc1 pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0xf54417e4 of_clk_src_simple_get -EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf5702c96 pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0xf57190f8 snd_soc_card_jack_new -EXPORT_SYMBOL_GPL vmlinux 0xf5730faa shmem_add_seals -EXPORT_SYMBOL_GPL vmlinux 0xf573b024 device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0xf58af22f devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0xf596dd54 virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0xf59b64a1 pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5bfd4a4 regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0xf5c94e6f swiotlb_tbl_unmap_single -EXPORT_SYMBOL_GPL vmlinux 0xf5c9976c pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0xf60458e0 component_master_add_child -EXPORT_SYMBOL_GPL vmlinux 0xf604b933 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0xf61677a0 crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0xf61baa65 pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xf67384dd crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0xf68bbf53 ahci_platform_resume -EXPORT_SYMBOL_GPL vmlinux 0xf6b5c005 snd_soc_put_enum_double -EXPORT_SYMBOL_GPL vmlinux 0xf6c3f53c snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf70c02aa aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0xf7539aa2 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0xf75c563b ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0xf76b0a59 read_current_timer -EXPORT_SYMBOL_GPL vmlinux 0xf78347f0 tegra_pinctrl_remove -EXPORT_SYMBOL_GPL vmlinux 0xf78b8261 devm_snd_soc_register_platform -EXPORT_SYMBOL_GPL vmlinux 0xf79f328d crypto_unregister_pcomp -EXPORT_SYMBOL_GPL vmlinux 0xf7cce204 xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0xf7da55b5 wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0xf81d0b70 bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0xf829016d sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf846506f irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf857e798 tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0xf85afcef __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0xf87611d4 scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xf880ac26 ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xf8852305 irq_map_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xf8a7ba79 device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0xf8ab49fd irq_domain_add_simple -EXPORT_SYMBOL_GPL vmlinux 0xf8cd91e2 ata_do_eh -EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops -EXPORT_SYMBOL_GPL vmlinux 0xf8e92c7a shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0xf90273c2 bus_register -EXPORT_SYMBOL_GPL vmlinux 0xf90ab0ff of_get_nand_ecc_strength -EXPORT_SYMBOL_GPL vmlinux 0xf913d3fd vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0xf91a8541 of_css -EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf93dc6d2 xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xf9443b5e snd_soc_add_platform_controls -EXPORT_SYMBOL_GPL vmlinux 0xf94e42b5 public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0xf951b85e led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf9643e60 of_get_nand_ecc_mode -EXPORT_SYMBOL_GPL vmlinux 0xf9698abc con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0xf97e7909 udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf988fafb perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0xf989fb3f pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr -EXPORT_SYMBOL_GPL vmlinux 0xf991c370 snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9a91ad7 usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0xf9bbc79d snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL vmlinux 0xf9bcfab2 crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xf9f6de03 snd_soc_lookup_platform -EXPORT_SYMBOL_GPL vmlinux 0xfa0a192c sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0xfa0eac37 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0xfa1b3374 iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa26f622 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xfa2ca778 irq_of_parse_and_map -EXPORT_SYMBOL_GPL vmlinux 0xfa413a01 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xfa42331e ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0xfa5bfb0a driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0xfa874dbb sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0xfa96da27 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0xfa9fbd7b ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0xfaaf2593 snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL vmlinux 0xfad9cf85 regmap_write -EXPORT_SYMBOL_GPL vmlinux 0xfaf2dc6a fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0xfaf4e386 ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0xfafb0f2c vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0xfb08b373 usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb36832d pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0xfb515fad usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0xfb6d36f7 input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb7a6f03 of_irq_to_resource -EXPORT_SYMBOL_GPL vmlinux 0xfb94f014 usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0xfba370a5 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0xfbaa0d2a hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbbe1ee9 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0xfbf13ca5 crypto_tfm_in_queue -EXPORT_SYMBOL_GPL vmlinux 0xfbfabdf9 tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0xfbfcd2e5 sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc13385c regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0xfc147364 crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xfc1d5cfb ahci_platform_ops -EXPORT_SYMBOL_GPL vmlinux 0xfc307adf iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0xfc35d4e0 serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0xfc4b3c65 get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0xfc61075e device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0xfc642a35 netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0xfc7c45a5 snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0xfc9000cc iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0xfc95943a enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xfc961e17 dt_init_idle_driver -EXPORT_SYMBOL_GPL vmlinux 0xfc98a9e4 regmap_fields_force_write -EXPORT_SYMBOL_GPL vmlinux 0xfca22c35 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0xfca36fa4 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xfca89bc7 nf_queue_entry_release_refs -EXPORT_SYMBOL_GPL vmlinux 0xfca8e475 key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0xfca8e57c blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xfcbb6282 __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xfd195688 device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xfd2e78fa power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xfd41c7ce btree_merge -EXPORT_SYMBOL_GPL vmlinux 0xfd74f8a1 __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack -EXPORT_SYMBOL_GPL vmlinux 0xfd7fc6d2 regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0xfd9809a5 omap_dm_timer_write_counter -EXPORT_SYMBOL_GPL vmlinux 0xfdb01f43 pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0xfdb87bcd devm_mdiobus_free -EXPORT_SYMBOL_GPL vmlinux 0xfdbe0d72 pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xfdcae422 __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0xfde1a33e klist_prev -EXPORT_SYMBOL_GPL vmlinux 0xfdec5195 syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xfdfd3f70 spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0xfe009c06 hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0xfe0fe9bd gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0xfe1cf6ab pci_reset_bridge_secondary_bus -EXPORT_SYMBOL_GPL vmlinux 0xfe2e2701 pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xfe48930c usb_add_gadget_udc -EXPORT_SYMBOL_GPL vmlinux 0xfe5826ae virtqueue_get_used -EXPORT_SYMBOL_GPL vmlinux 0xfe742390 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL vmlinux 0xfe97824e tps65217_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfeac611b usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0xfebd8f6b key_type_user -EXPORT_SYMBOL_GPL vmlinux 0xfebeebf3 pwmchip_add_with_polarity -EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfed973f7 phy_put -EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xff043d2a securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff2df3ac kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0xff32da7b crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0xff3cb6c7 fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0xff6110fe crypto_lookup_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xff6b5e43 wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xff7d322f arm_iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xff8e06ef usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0xffe697d9 gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0xffea8d96 omapdss_of_get_next_port -EXPORT_SYMBOL_GPL vmlinux 0xfff19274 devm_usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0xffff0221 unregister_pernet_subsys reverted: --- linux-raspi2-4.4.0/debian.master/abi/4.4.0-89.112/armhf/generic-lpae +++ linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-89.112/armhf/generic-lpae @@ -1,17629 +0,0 @@ -EXPORT_SYMBOL arch/arm/crypto/aes-arm 0x276b2f72 private_AES_set_encrypt_key -EXPORT_SYMBOL arch/arm/crypto/aes-arm 0x6c62e582 AES_decrypt -EXPORT_SYMBOL arch/arm/crypto/aes-arm 0xc30fcbed AES_encrypt -EXPORT_SYMBOL arch/arm/crypto/aes-arm 0xcf024ae9 private_AES_set_decrypt_key -EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0x428131e8 crypto_sha256_arm_update -EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0xc98be6f2 crypto_sha256_arm_finup -EXPORT_SYMBOL arch/arm/lib/xor-neon 0x0f051164 xor_block_neon_inner -EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe -EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble -EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL crypto/mcryptd 0x28865246 mcryptd_arm_flusher -EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/atm/suni 0x66e0cb49 suni_init -EXPORT_SYMBOL drivers/bcma/bcma 0x68283fb0 bcma_core_dma_translation -EXPORT_SYMBOL drivers/bcma/bcma 0xce35eb4a bcma_core_irq -EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str -EXPORT_SYMBOL drivers/block/paride/paride 0x07b77e9a pi_disconnect -EXPORT_SYMBOL drivers/block/paride/paride 0x1370cec5 pi_schedule_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x17e518ea pi_init -EXPORT_SYMBOL drivers/block/paride/paride 0x1ae35344 pi_write_block -EXPORT_SYMBOL drivers/block/paride/paride 0x236f1866 pi_connect -EXPORT_SYMBOL drivers/block/paride/paride 0x28d0c3b6 pi_read_block -EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x63f2ea09 paride_unregister -EXPORT_SYMBOL drivers/block/paride/paride 0x694076f8 pi_read_regr -EXPORT_SYMBOL drivers/block/paride/paride 0x8d75f538 pi_do_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0xa6114974 pi_write_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -EXPORT_SYMBOL drivers/block/paride/paride 0xb6c4ad27 pi_release -EXPORT_SYMBOL drivers/block/paride/paride 0xbc9ce9e6 paride_register -EXPORT_SYMBOL drivers/bluetooth/btbcm 0x1e8bea15 btbcm_patchram -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fae3bac ipmi_addr_src_to_str -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7a3a71c1 ipmi_register_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xb78208d5 ipmi_smi_watcher_register -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd363097a ipmi_smi_add_proc_entry -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe5dfd927 ipmi_get_smi_info -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xea1c24e2 ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg -EXPORT_SYMBOL drivers/char/nvram 0x0f28cb91 nvram_read_byte -EXPORT_SYMBOL drivers/char/nvram 0x17ff2c1d __nvram_read_byte -EXPORT_SYMBOL drivers/char/nvram 0x2adec1e0 __nvram_check_checksum -EXPORT_SYMBOL drivers/char/nvram 0x7da28f12 nvram_check_checksum -EXPORT_SYMBOL drivers/char/nvram 0x9ce3f83f nvram_write_byte -EXPORT_SYMBOL drivers/char/nvram 0xa8813189 __nvram_write_byte -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x6e211bc4 st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x88ea7ba4 st33zp24_remove -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xc8e0513f st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xfdcec597 st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x3f77ceea xillybus_endpoint_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x72403d46 xillybus_init_endpoint -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xe467bbb2 xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x15d31042 dw_dma_cyclic_start -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x206b8187 dw_dma_cyclic_stop -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x383613b1 dw_dma_cyclic_prep -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x742803cd dw_dma_get_src_addr -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xa5e70c3b dw_dma_cyclic_free -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xe6743ce5 dw_dma_get_dst_addr -EXPORT_SYMBOL drivers/dma/pl330 0xdb3f73a9 pl330_filter -EXPORT_SYMBOL drivers/edac/edac_core 0x98a8af6f edac_mc_find -EXPORT_SYMBOL drivers/firewire/firewire-core 0x00e2dae1 fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0x034764de fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x04d1080a fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0x04dd92ce fw_core_add_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x07597ab2 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0x086d67ba fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0df3496d fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0x22162694 fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a7fd863 fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3d55b81f fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x474d9cda fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4c1034e4 fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d5d4eca fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5a01b85a fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5a108652 fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0x621b942d fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e431b14 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7efe3930 fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8258a114 fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8ffe0d15 fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0x96ea07f6 fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9cee384e fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9cf53da6 fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa826e6bd fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0xacfb4a41 fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb08e7369 fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbb3ec349 fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe602d207 fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xea4c6dec fw_iso_context_start -EXPORT_SYMBOL drivers/fmc/fmc 0x06f0fedf fmc_reprogram -EXPORT_SYMBOL drivers/fmc/fmc 0x2498b80c fmc_scan_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0x4304063c fmc_device_register_n -EXPORT_SYMBOL drivers/fmc/fmc 0x4c67a18c fmc_show_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0x7811e31c fmc_device_register -EXPORT_SYMBOL drivers/fmc/fmc 0x916d5464 fmc_device_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0x9c951c4f fmc_free_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0xaf1559de fmc_find_sdb_device -EXPORT_SYMBOL drivers/fmc/fmc 0xb5346bbe fmc_driver_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0xe758091f fmc_device_unregister_n -EXPORT_SYMBOL drivers/fmc/fmc 0xfe66196a fmc_driver_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x042fe837 drm_vblank_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04984c10 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x050bffd9 drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05432e3e drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05e56929 drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0626b0d6 drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x065e3daa drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06c79c9c drm_property_unreference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d7c5c47 drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f0b7ae3 drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fccafb1 drm_global_item_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1067d9f2 drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x115cb557 drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x142015c5 drm_legacy_addmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14f2dda3 drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16815763 drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16cf40d6 drm_bridge_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x173197a7 drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x174ba34b drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17563d21 drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1766789f drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17f7056a drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19c7bb93 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a39f0dd drm_vblank_pre_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c0029dc drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c247491 drm_legacy_idlelock_take -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c2c7531 drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e072d3d drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e4fab49 drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f66e83f drm_atomic_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fc62f1f drm_mode_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21fbd0a3 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22c1d7a0 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22cb3e42 drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x233c3ed6 drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x249dab7f drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24de41b4 drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x250eb6e8 drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27d982e1 drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2839bc83 drm_mm_dump_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a9cdf56 drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b3fffe7 drm_mode_validate_basic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c14ad88 drm_select_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c2fac76 drm_dev_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d035009 drm_platform_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d2053ff drm_pci_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e050cca drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x343114f7 drm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x345370fe drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x346127a7 drm_global_item_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35fe8474 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x36a21815 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x36b88f0f drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x36bfcfa8 drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x372f3ddf drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ad1140f drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b7a8f6b drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c5c5fda drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d2bead6 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e397182 drm_atomic_clean_old_fb -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e698e37 drm_bridge_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e7351d1 drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x400b4e11 drm_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x40dac646 drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4146ca5a drm_panel_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41b12db9 drm_mode_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x44d49b46 drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x45373c24 drm_modeset_backoff_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x45c71cae drm_atomic_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x463bb845 drm_legacy_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48009bf5 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49e9bb04 drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bf9ae88 drm_pci_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4da107c3 drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fbed130 drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x505d0fa9 drm_modeset_unlock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x509607b8 drm_calc_vbltimestamp_from_scanoutpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51733557 drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51aadf70 drm_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x52acdfca drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x531df8f2 drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53271e33 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54390720 drm_pcie_get_speed_cap_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54541cfc drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55d564d8 drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55de1720 drm_mode_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57f952e3 drm_property_reference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58d57080 drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59a91e47 drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59c14b14 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59c40bdd drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59e01005 drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a38fb54 drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c2d1a98 drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c8cb087 drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e8cbd2e drm_connector_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e9d29b0 drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ec1c5c0 drm_edid_to_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6201003e drm_platform_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62d16a08 drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x63f0b719 drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x642818b3 drm_atomic_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6458b83b drm_modeset_legacy_acquire_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65dae7fb drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6820e9fa drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6877ed98 drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x69a7eb06 drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c9604f7 drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d05bc2c drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e4c22f4 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6efa1c41 drm_ati_pcigart_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7026b67e drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x722ab9e3 drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7295ec56 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72eeedfc drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x732864ee drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x744d189c drm_plane_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74fff6e0 drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0x75229d03 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x75fa43de drm_mode_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76233ab8 drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x77695474 drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x77e5dfb8 drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x77e91056 of_drm_find_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm 0x77fa3c98 drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7883647e drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78854c54 drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x791721b3 drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x795c72f4 drm_bridge_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79a55400 drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b9fbf85 drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bb78231 of_drm_find_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bd312b5 drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c9d922f drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7eb363c6 drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0x801a6736 drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80a9354f drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80ca5cb5 drm_pci_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x814b08d6 drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81b4032f drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x831b247f drm_mode_create_dirty_info_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x85c7a103 drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x868b83a6 drm_pcie_get_max_link_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86b004b9 drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8794ad6c drm_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x87e5a7e7 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x882f58ea drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x887d40c4 drm_panel_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x88821814 drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x88a0ed4c drm_pci_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x88db58d1 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x898a031a drm_legacy_ioremap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d4baa34 drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d58cdf4 drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ef98d97 drm_irq_uninstall -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9064cbd0 drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92cdb5a4 drm_framebuffer_reference -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93cd8a6b drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9462f4ce drm_get_pci_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x949d7180 drm_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94df2248 drm_of_find_possible_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94fa1147 drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9741db4f drm_bridge_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99ebcd46 drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b24ac25 drm_legacy_getsarea -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b721885 drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c8cfd8e drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f2215fa drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0f3edae drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa142614c drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa14fb2df drm_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa17d6aca drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa226b9a3 drm_modeset_lock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa247470b drm_bridge_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa306dc1d drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4812401 drm_bridge_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4919477 drm_legacy_rmmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5f497ce drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7f71a67 drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa963568b drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaaa1f627 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaab288ee drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab2b50e4 drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab2f8de5 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab40de9a drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0xababf9c4 drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae77a626 drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae9ef61b drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf0e6ba8 drm_vblank_post_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0fc0b35 drm_dev_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb26da777 drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb29b2358 drm_atomic_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2ddffbd drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb361c951 drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb38b6029 drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4c7e8f9 drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb55429eb drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb710bbb5 drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb76218b2 drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7eab695 drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb84cf10e drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb91d4d1c drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9b3fb7c drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe023a01 drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe0b1f62 drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf92288a drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfea5292 drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc04e2668 drm_atomic_legacy_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc084b7f7 drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0b2d4ad drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2bdfce3 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2cd15d3 drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc31c1dfc drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3e682c0 drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7a5f763 drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7d1fb59 drm_ati_pcigart_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc81985b8 drm_legacy_addbufs_pci -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8a0dc2c drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8b28b41 drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc97bfbdf drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcabc7f62 drm_irq_install -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb99c769 drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcba31881 drm_vblank_no_hw_counter -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbb98ea9 drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0333891 drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd106873d drm_encoder_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1b6a7a6 drm_modeset_lock_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3dbc13f drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5498e40 drm_unplug_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5e24852 drm_of_component_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd64afb6f drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7127f97 drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd76851f5 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7cdd512 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd81e1014 drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8f6674f drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd91bd55b drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9ec6c6b drm_legacy_ioremapfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdad91f35 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb904b35 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc450559 drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd7c7338 drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf26a593 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe013cc4f drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe13e5538 drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1b48d02 drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe306ba17 drm_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe36358e4 drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe45f9cb8 drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe50a3be4 drm_mode_hsync -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe50b57de drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6208a80 drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe705ab26 drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7a06d7f drm_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7ec8d60 drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8ba1ef2 drm_connector_unplug_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9eba25a drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea2dbf82 drm_legacy_ioremap_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea95a95c drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0xedc7e5b3 drm_prime_sg_to_page_addr_arrays -EXPORT_SYMBOL drivers/gpu/drm/drm 0xedfc627f drm_mode_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeeae7940 drm_crtc_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef1ae25f drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf23d178d drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5141013 drm_legacy_idlelock_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf51f3034 drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5f6531d drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf75e5699 drm_mode_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf76aed26 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8e05c21 drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf93548a7 drm_framebuffer_unreference -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa17647c drm_crtc_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa30d4f6 drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfaab2ab8 drm_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb2ed25f drm_legacy_rmmap_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc0c8fda drm_gem_dumb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe232810 drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff1b9496 drm_pci_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x017fe928 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x030247ee drm_fb_helper_single_add_all_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0389a4cf drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03f1e0c7 drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x046ee402 drm_dp_link_probe -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0aa13a10 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d5bdc69 drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0dffee60 drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e21b4dc drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f38f190 drm_has_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1163fc8e drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x126afba3 drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15c23b62 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b00a7d8 drm_fb_helper_unlink_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2137558f drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21a7c995 drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x221fc01a drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x223e3df3 drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23f2ca99 drm_atomic_helper_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2578a609 drm_helper_crtc_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29e728c7 drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b986d5c drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2bb5366e drm_kms_helper_poll_enable_locked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30c71a34 drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30d14112 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32e051d7 drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x369cb1d1 drm_dp_aux_unregister_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37b82156 drm_fb_helper_add_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3956d4cd drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c802148 __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3cf78fd0 drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4428f5e0 drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46e5c327 drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x490d6fd2 drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x491a8119 drm_dp_link_power_up -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49709ba1 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49cd95b6 drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e32f9e2 drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e556b01 drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f98bab2 drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f99e6f1 drm_dp_link_configure -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4fa844bd drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5014c75b drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51d4364b drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56adaa2a drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x584a8481 drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ae2206e drm_atomic_helper_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b7f7368 drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5bd19d11 drm_fb_helper_fill_fix -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e213433 drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x626301de drm_plane_helper_check_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62ed1fe8 __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63285bf0 drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x678f8d89 drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b8b9b02 drm_atomic_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c701098 drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d7d0d69 drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x714bb633 drm_helper_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74f2d40a drm_dp_aux_register_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76415b94 drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77fb5816 drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78b43e80 drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e1b1a85 drm_primary_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f112758 drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fc80b89 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82f5a21b drm_plane_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x845ea3d0 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a15da43 drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a87df9f drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b34cb95 drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8dd1f8ff drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92ef8804 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96ab0641 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98a31400 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99627afa drm_primary_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c334402 drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa008d8e5 drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1253c52 drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3719f9a drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3e241a4 drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa487ae25 drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa507ec16 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa66c3b89 drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9132073 drm_fb_helper_remove_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa2d317b drm_plane_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa992533 drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad4375ed drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xadd10dfd drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf23407c drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb12d305e drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4d55f93 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb572f5a2 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb62fdfe2 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6cfc880 drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb768310f drm_pick_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb82016d7 __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba3c3370 drm_dp_link_power_down -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd0d9cb1 drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0effe32 drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc17f3677 drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc430533e drm_atomic_helper_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7ad2c46 drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8e260a3 drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc96cfca2 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca19c32e drm_atomic_helper_legacy_gamma_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfe42190 drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1585356 drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2604e6b drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2f6a086 drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3866cee drm_atomic_helper_framebuffer_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3bdfa0a drm_helper_crtc_mode_set_base -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4b657b7 drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd632e9e8 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd650b035 drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb36b87a drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbd3697c drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde7d83c0 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe21248f4 drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4068cf7 drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe453c9b4 drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe76e6486 drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7741afc drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeaacd3a7 __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb5559c8 drm_fb_helper_fill_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec57f712 drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xecf7ccd6 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee406bdf drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0a43903 drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf26fc738 __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf43afc78 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf595e87c drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6338666 drm_fb_helper_release_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6bdd3a2 drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6f7835b drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8822ce7 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8a98d15 drm_dp_mst_port_has_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9f26019 drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfac6efb3 drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfba2892d drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc17bec2 drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe2e001e drm_helper_probe_single_connector_modes_nomerge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe3e7318 drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0677d271 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x08f00c21 ttm_mem_io_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0e423df0 ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1230f120 ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132b05be ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x136ec7fa ttm_suspend_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x274187ba ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2c189d87 ttm_bo_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2d012ac5 ttm_fbdev_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x33ca21a1 ttm_bo_synccpu_write_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x33e881d4 ttm_bo_add_to_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x376b6d89 ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x384fe76b ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3b3ac728 ttm_pool_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x436a839d ttm_bo_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4628b006 ttm_read_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x50ae950b ttm_bo_init_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x514e8dad ttm_bo_move_ttm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x51cc715f ttm_bo_swapout_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x51d481b6 ttm_bo_evict_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x526d5a21 ttm_mem_io_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x57980ffa ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x57e1dde8 ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a586134 ttm_bo_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cf59609 ttm_bo_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x603e0747 ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x60f89cec ttm_bo_clean_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67b1d568 ttm_bo_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c0ec969 ttm_lock_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x715fc4b3 ttm_mem_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x74bb6f68 ttm_prime_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x75b43d43 ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7bb6d681 ttm_bo_dma_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7bc32084 ttm_dma_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x83b88afa ttm_bo_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8589758d ttm_suspend_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86bb8a6c ttm_read_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x87828ffe ttm_mem_io_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8b033f92 ttm_tt_set_placement_caching -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x93dfb21b ttm_object_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x97ced2b8 ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d0eb91 ttm_ref_object_add -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa334a947 ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa5c883eb ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaca68f5f ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae87b61d ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae9e2ff1 ttm_pool_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb2ea76ad ttm_tt_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc0551837 ttm_dma_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc29c12d6 ttm_mem_global_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc6f7ee96 ttm_bo_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc968d68f ttm_write_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd0ac658f ttm_bo_del_sub_from_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd5e342a5 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd663a31b ttm_bo_mem_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdae2e8fc ttm_mem_io_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe0b3b40a ttm_mem_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeab3eddf ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xefc4df0d ttm_vt_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf16096eb ttm_bo_synccpu_write_grab -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf5ef677d ttm_page_alloc_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf68720b7 ttm_bo_manager_func -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfa81813f ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfd7484d3 ttm_write_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfe8cc064 ttm_vt_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfefd05a9 ttm_bo_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xffd9403d ttm_mem_global_free -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0d998c14 sch56xx_watchdog_register -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0e2a6864 sch56xx_read_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0f5877d4 sch56xx_read_virtual_reg16 -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe5022f95 sch56xx_read_virtual_reg12 -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xed1d2a08 sch56xx_write_virtual_reg -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x2299d02c i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x5a1b87ad i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x74bfae9b i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x34d02782 i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x64aadb16 i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x4c86a9e5 amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x041bc6a9 mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x3bc616f3 mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x43f67c06 mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x532c909e mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5e344031 mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6898b0a8 mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6ed0e759 mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x736ff7ea mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x753e9b36 mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7b02211e mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8635fc55 mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x86e4e50a mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb5144553 mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc0ba6dde mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xcd51aae8 mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf3b79649 mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x1b9be0dd st_accel_common_remove -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xdb8b500a st_accel_common_probe -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x41ab9d36 iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xdd72c124 iio_triggered_buffer_setup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x5083ae21 devm_iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x61ba877f iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xe30f831c iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xf55e54d8 devm_iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x08d9cfd9 hid_sensor_write_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x21fed865 hid_sensor_read_poll_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x5a12740a hid_sensor_read_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xb5bd9fc8 hid_sensor_write_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc7978f8b hid_sensor_parse_common_attributes -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xfdb1a2bf hid_sensor_read_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x5325c915 hid_sensor_power_state -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x9f2d8da7 hid_sensor_pm_ops -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xa83cf5ae hid_sensor_setup_trigger -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xc99ca01c hid_sensor_remove_trigger -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x0913af86 ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x23e2d56b ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2df8ae75 ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x41a27fe0 ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x45e6c536 ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x4dda48c4 ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x5acdf906 ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xe17e6cc9 ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xe3ffa8f7 ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x25d6477f ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x41a0cac6 ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x5ee59ed2 ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x62ed1791 ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x9e826d37 ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x9f0fce18 ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xa3e28bb6 ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xbaae186b ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x08b3efd3 st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1289f787 st_sensors_get_buffer_element -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x20e6f6c0 st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2d89c168 st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x366e501c st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x46be2dc1 st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4b06b392 st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4ee70872 st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x686f255c st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7f59149a st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x970c5a66 st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x989d13e8 st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa325e6da st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc8f3741e st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe423b549 st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xec444331 st_sensors_check_device_support -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf4d5ab40 st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x9132bf89 st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x9e604174 st_sensors_of_i2c_probe -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x6b74df52 st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x3ccace28 st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xa3d644f3 st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x389e6edc hts221_probe -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x1337c5b0 adis_enable_irq -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x519f0b4d adis_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/industrialio 0x038a569c iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x0c5901b7 iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0x15f5c108 iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x19f61117 iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0x27ea3a65 iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x29fb9800 iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x42f1b21c iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x43cb1301 iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0x477176cf iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0x599fe5eb iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x5abecb29 iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0x63ada6ed iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0x64766737 iio_triggered_buffer_predisable -EXPORT_SYMBOL drivers/iio/industrialio 0x888a12b3 iio_triggered_buffer_postenable -EXPORT_SYMBOL drivers/iio/industrialio 0x9755a87a iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0xaac1a6c3 iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xf6071bed iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x84c2cec5 iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x84de06e3 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x65544aef st_magn_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xa68f8d64 st_magn_common_remove -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xea7d3e86 ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x40697d0c st_press_common_remove -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xf7b89cb5 st_press_common_probe -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x049ace30 rdma_addr_find_smac_by_sgid -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x14a97e6b rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x2d9bced0 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3f02282e rdma_copy_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x5347cc38 rdma_addr_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x776b9de8 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x7df81f32 rdma_addr_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x08625343 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x09ca059e ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0a4c0694 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x73a93a86 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7dad4bb9 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x840ab206 cm_class -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8ca44ce5 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9a75180b ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa96e937f ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xaa78cc23 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb0aa27f8 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb5cc97e2 ib_send_cm_lap -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc4bab8f3 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc70245bf ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc73937d0 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd7e58b1c ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd963deb3 ib_send_cm_apr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf75628aa ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x031290e2 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0427d1c1 ib_umem_odp_map_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0472d161 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0eec558d ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ef8e96d ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1020168f ib_modify_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x112b475e ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x113412ce ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x121d932b ib_destroy_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x123c3ab3 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13427d45 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x140377ed ib_find_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15c93ef5 ib_alloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x179f6793 ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x206e9e1d ib_find_cached_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x234e8829 ib_dealloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2860770a ib_dereg_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2978a460 ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f6ca22b ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35318c25 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35fee1d9 ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a5ae2dc ib_fmr_pool_map_phys -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a82f527 ib_destroy_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c46e28e ib_init_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ccf168e ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x410c25d9 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4322e788 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x491bd9dd ib_create_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51fb3ea6 ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a522004 ib_create_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5bcf7e5b ibnl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d4adddc ibnl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e913ecc ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x609ed0d1 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60a6cadf ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64f201e9 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x675bbe52 ib_destroy_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6854dfc4 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a1b4cc9 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a4854bb ib_get_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d73f8bb ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f96b482 ib_alloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7075d308 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74c0ad1c ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83984d65 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85294036 ib_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x854ec0bf ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a766bc0 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ca7093f ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8eae408c ib_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90ec1416 ib_resolve_eth_dmac -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92cf2c88 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x963f3646 ib_dealloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x986731f4 ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9cfe486f ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa327f768 ibnl_add_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba004acb ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbac0d0c2 ib_get_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1cf59ab ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc361a530 ib_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5a4f2cc ib_destroy_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5e35b7e ib_get_dma_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6ddb8b2 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc80d9cce ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc88d36b9 ib_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8bf4064 ib_find_gid_by_filter -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca316f5a ib_dealloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf84a755 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0b95f2f ib_query_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd186ef8f ib_dealloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd27b3676 ib_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd27dfc81 ib_create_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd336afc8 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9f3fd26 ib_alloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdef279a0 ib_fmr_pool_unmap -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf923e67 ib_create_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe35b357d ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe39ed97f ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3a2b808 ib_umem_page_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8de778f ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee299673 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2e9f337 ib_query_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3bfdc25 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x05df40c4 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2352c88c ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x3230044f ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x3dda0778 ib_redirect_mad_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x4a2d9c6f ib_cancel_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x4e2908d9 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x62c0a534 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x686c2c40 ib_register_mad_snoop -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6ec5f17a ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x76743881 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7d7f2ba2 ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xb1f3c15f ib_process_mad_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xbbd4faba ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x3b8a3424 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x6a9cbf9e ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x76efd514 ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x848ad95b ib_init_ah_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x8565e4e5 ib_sa_service_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x945aed0a ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9e7aad54 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xb655b469 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xb800fa16 ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xdcca95b9 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xde9e1b2c ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x39173321 ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf5c282c5 ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x297d9ce8 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x331111a8 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x47403865 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x492894b4 iwpm_mapping_error_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x59d1fe87 iwpm_add_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x836b7fc3 iwpm_add_and_query_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x889bb509 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x98405304 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99effe9c iwpm_register_pid_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa1939ed5 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xbf1ab752 iwpm_remote_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xcd5211f6 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd88a7cff iwpm_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe5446220 iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xef7882e4 iwpm_ack_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x07e853a4 rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x09a24a09 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x157b0c23 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1eaff8f3 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x443c754d rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x61fbacbf rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x656aa193 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6e9f7847 rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6f1a6553 rdma_set_ib_paths -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x73e72fa7 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x91002c54 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9f603d54 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa89143e7 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbebefc7b rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc0b47cd7 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc10268ba rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd2d8f14d rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdd0ab036 rdma_create_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdee431fa rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe5baff46 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xed050017 rdma_resolve_addr -EXPORT_SYMBOL drivers/input/gameport/gameport 0x3765df19 gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0x40febcd1 gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x7cd1acec gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0x841e07a0 gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xa07530a4 gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0xaf9b82a3 __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0xe5df6c66 gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0xee8fba0a __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xfbadaf5c gameport_set_phys -EXPORT_SYMBOL drivers/input/input-polldev 0x0da0bf70 input_unregister_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x4215acb5 input_register_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x46cdbf7d input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x64a02901 input_free_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x91706c8d devm_input_allocate_polled_device -EXPORT_SYMBOL drivers/input/matrix-keymap 0x2abfdda6 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x2df2b4e8 ad714x_probe -EXPORT_SYMBOL drivers/input/misc/ad714x 0x38fff33b ad714x_disable -EXPORT_SYMBOL drivers/input/misc/ad714x 0x3cac8351 ad714x_enable -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xaa04a69e cma3000_init -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/sparse-keymap 0x33055473 sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0x405e3ba4 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x6adbd770 sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x83a0d4da sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0xa9fad94e sparse_keymap_free -EXPORT_SYMBOL drivers/input/sparse-keymap 0xf8a6e255 sparse_keymap_setup -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x7b23c3ac ad7879_pm_ops -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xe78d011a ad7879_probe -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x588fe0b5 capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7414d43f capi_ctr_resume_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x83ed3d28 capi20_register -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x954a1aa0 capi20_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x99fe594c capi20_put_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa7c4fd6c capi_message2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb249d6c4 capi_ctr_suspend_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc10fe128 cdebbuf_free -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd6adc268 detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xdfa03105 capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8ad9bd1 capi_cmsg2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf6f10be1 attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfcb8d158 capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0b78b76c b1ctl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x280138f0 b1_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2f0ad758 b1_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x49378ae2 b1_parse_version -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x77058cb5 b1_load_t4file -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x8474452b avmcard_dma_free -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x9348cdf6 b1_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x9e973bba b1_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb18054db b1_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb651bb84 b1_free_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb69c2a1a b1_loaded -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xba784fdf b1_alloc_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdc955196 b1_getrevision -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf2468d5c avmcard_dma_alloc -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xff32c80c b1_load_config -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x14fbe437 b1dma_reset -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x16ee3ff6 t1pci_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x2384099b b1dma_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x2d396353 b1pciv4_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x3d2dfd10 b1dma_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x6302d2c9 b1dma_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x79b305df b1dma_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x8238dade b1dma_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xb107754d b1dmactl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x85a01abd mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x868cf122 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x905856ab mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x9b4c3e57 mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x1c865b0e mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xb167cff0 mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x5f660ba2 hisax_init_pcmcia -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6fe1ca04 FsmDelTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9f987c85 FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xa1bc94b9 FsmInitTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x6fdfa722 isac_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xb2c77439 isac_init -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xc2d05619 isac_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xf8c09921 isacsx_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xfb9cad05 isacsx_irq -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x07f7f9de register_isdn -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x29716cfb isdn_ppp_unregister_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xdb79348f isdn_ppp_register_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0cc43cc5 mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3345796c recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x46c887ae mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x539d0b0c mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x54751159 mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x553d0a76 create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5b1f7a8f get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5d8abe91 mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5e2a666b mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5e888573 get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8942a939 recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x929d0fd7 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9f75b7ee bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xac9f3007 mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbffdffa9 mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc232d175 recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc983362c dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcbc0be36 queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd8b357b2 mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe656614f bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xedd484e4 recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf89c2715 recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9925529 mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x059ca49b omap_mbox_request_channel -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x46df06d9 omap_mbox_enable_irq -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x65b15e3a omap_mbox_save_ctx -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x7764f69e omap_mbox_restore_ctx -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xae517f4d omap_mbox_disable_irq -EXPORT_SYMBOL drivers/md/bcache/bcache 0x05224fb5 closure_put -EXPORT_SYMBOL drivers/md/bcache/bcache 0x10dc0d06 bch_bset_insert -EXPORT_SYMBOL drivers/md/bcache/bcache 0x21c7828c bch_btree_sort_partial -EXPORT_SYMBOL drivers/md/bcache/bcache 0x29671226 closure_sub -EXPORT_SYMBOL drivers/md/bcache/bcache 0x2d671458 closure_sync -EXPORT_SYMBOL drivers/md/bcache/bcache 0x3361c614 bch_bset_sort_state_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x66d28e22 bch_btree_iter_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x6969b5d8 bch_bset_init_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7b55ca4f bch_bset_fix_invalidated_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0x9e8b3cee bch_btree_keys_alloc -EXPORT_SYMBOL drivers/md/bcache/bcache 0xab2d2b84 bch_btree_insert_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0xad29a6f5 bch_bset_build_written_tree -EXPORT_SYMBOL drivers/md/bcache/bcache 0xaec09a2b bch_bkey_try_merge -EXPORT_SYMBOL drivers/md/bcache/bcache 0xaf77343c bch_btree_keys_free -EXPORT_SYMBOL drivers/md/bcache/bcache 0xbf1ad7ae closure_wait -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc04554f7 bch_btree_iter_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0xca580595 bch_btree_keys_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe47e0829 __bch_bset_search -EXPORT_SYMBOL drivers/md/bcache/bcache 0xf8fd4bac bch_btree_sort_lazy -EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers -EXPORT_SYMBOL drivers/md/dm-bufio 0xa7978f56 dm_bufio_forget -EXPORT_SYMBOL drivers/md/dm-log 0x0a359638 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0x1a5890b0 dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0x9bf6ab10 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0xb52f0d16 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x563f3d5b dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0x60b577d1 dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0xcdfe1f47 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0xd6a3d7db dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0xf6fe4bbc dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0xfe87d135 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/raid456 0xa2993fb7 raid5_set_cache_size -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x006000f3 flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x07e3003b flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1e78a521 flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x265a1b75 flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x41a23233 flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4d0476d7 flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4dce9769 flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x54db0766 flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xab31818a flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xad5b6d9e flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xbdfbfee7 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc3c79a72 flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xebf8287c flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update -EXPORT_SYMBOL drivers/media/common/cx2341x 0x30cb4cd7 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0xd34d6171 cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cx2341x 0xe7ffb8bc cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cx2341x 0xe8b6c7dc cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cx2341x 0xeb4aad73 cx2341x_handler_setup -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x11f70dda cypress_load_firmware -EXPORT_SYMBOL drivers/media/common/tveeprom 0xe94ccfb1 tveeprom_read -EXPORT_SYMBOL drivers/media/common/tveeprom 0xef22e66c tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x03b54d78 dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0aa376f2 dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0d6985ba dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x10fee097 dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x28c40493 dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x300fa8f0 dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3088dde5 dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3109017e dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x344908d4 dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3656cb10 dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x41df80b9 dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5efab63b dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x629f9d31 dvb_ringbuffer_read_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x67067bbf dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6821b35f dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6d3887c9 dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x72180695 dvb_ringbuffer_flush_spinlock_wakeup -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8633f37b dvb_ringbuffer_flush -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9562352a dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x956b645d dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9850cb88 dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x989a080a dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9c19040b dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa2265d15 dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb018713d dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb5bbaa06 dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc03490ca dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc7050af0 dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcdbcbc7d dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdb1a8bd4 dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdc094c39 dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdfd900ec dvb_dmx_swfilter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe327cb6f dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5c11f47 dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe7461791 dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xea8dc43f dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf431d564 dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf48116c6 dvb_ringbuffer_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts -EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0xc7423adb af9013_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x61b843d0 ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xfefcd2bf atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x26038775 au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x29adff5d au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3a1f2187 au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x65b31c8c au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9b1ded32 au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa824e3dc au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb4c0f901 au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xebc77e18 au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xffa42c86 au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x624041aa au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x99079221 bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xa8f6debe cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x36b247a0 cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x9723398c cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x050cbb6e cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x68f266f9 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x686bffc5 cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x466cd3bc cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x642e91e1 cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xf680f374 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x0c37802c cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x20a739db cxd2841er_attach_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x4b428513 cxd2841er_attach_t -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x8f94bf48 cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x1c38271c dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x8815648a dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x8dd58119 dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xd1790b96 dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xfe42a621 dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1328f42a dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x185954fd dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1913fda4 dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x23298e5b dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x494ce8e6 dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4d695c43 dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5bdd9f0e dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6f50d60c dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7173ce46 dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x825d7305 dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbeb3e828 dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc4dd9166 dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd2979b15 dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfc2b5551 dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xffbdc787 dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x754c09ea dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x0e2be731 dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x4c7aab2d dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa25ac87e dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xc9f37795 dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xcd94f308 dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xe2e0f78f dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x6959c798 dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x932ce859 dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xac353095 dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xc3926a18 dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x35d7ecce dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x1ef4636f dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x5dc3f63c dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x6bae8180 dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xb6afbdf8 dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc6277246 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd0bcfd76 dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xb629269a drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x2438ce41 drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xc165a2dd drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x73ba021d ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xd1a2ccc4 dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x3d137f66 ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x960d878a horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x1a76fa99 isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x4b4a1599 isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xdf44d3f4 isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0xb977e594 itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xccc0d9aa ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xff249311 l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xda784e31 lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x801ddbd7 lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xa4ef486b lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x76111848 lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xb2da96b8 lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x5a3ba4d2 lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x177935e7 lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x86c187a1 lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x5d254e41 lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xb277ca28 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xe78bf9fa m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x28b96b95 m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x80eb0159 mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xcfddd91a mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x284b7c96 mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x0e214d45 mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x3ff48f9c nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x97743d76 nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x91ef7fe3 or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xe8fc4a24 or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x0b566c62 s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xa9838fe4 s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xedc303d8 s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xfbaf7fb9 s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x57faff31 s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0xc18ab7e5 si2165_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xdaa2fb21 si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x1407ec08 sp8870_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x352c6d69 sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x4573c65f stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xb8349ac1 stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xf394a570 stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x4524e823 stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x9c3d44da stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x9a9ca4ed stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x5d44aaef stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x8ba6af08 stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x2fc3d123 stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x5d3b8411 stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x58150e46 stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x9203e2eb stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x42015639 tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xe69cd2f5 tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xf5485f90 tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xe634bd2b tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xf4ca2e61 tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x0f5a6e08 tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xda31b9cd tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x71f5dee9 tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x6caaf1f0 tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x728ba0fc tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x592b1baf ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xf0528614 tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x2697a906 ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x68676b6b ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x0b8f91bd zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x9e8765a1 zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x67a6b249 zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x364214ba flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x4089ed2c flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x44a8715c flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x44dc0af4 flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x85d191fd flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb4f6eeb8 flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xdee5d713 flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x00c849f1 bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x015057df bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x3cfc5cc1 bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x858bd290 bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x57781da6 bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xaa88ca0f bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xe25a2900 bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x33ecbd6d dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3f27e8d6 dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4dd79279 dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4f6c4462 write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x55295d89 dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9584450a rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb1ae1fa1 dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xcde725c8 read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xfec60803 dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xf5f68526 dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x0cbda6ee cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x89843fbb cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe1cc4210 cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe20f8e97 cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe36f913f cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xf089a7b5 altera_ci_init -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x030c1f59 cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x40fa15ec cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7c05f8e1 cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x839ce207 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x8c331ecb cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xb2281e67 cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf4e3287b cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x38c31073 vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x44dd44a3 vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x63cdba20 cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x82bb6146 cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x93a191bc cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xd9fc9214 cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x2af23f8a cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x62859905 cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x8f849112 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xa6dfefd1 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xb23bd2af cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe5806c3b cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xf95ed8b8 cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x011b2bb6 cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0a3449c9 cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0b236d4b cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1a93f2a2 cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4f047e14 cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5a24da8a cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6a0dde8a cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6e45ee39 cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6fcbf446 cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x74976024 cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7a98dcf2 cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8207a61b cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xab4bbaa7 cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc3e6b61a cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc5228c5d cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd33f2e92 cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xebfd4c00 cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf619d5f7 cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf70623ce cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfa525b44 cx88_reset -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0887a6f2 ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x13694ba6 ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1b80110a ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1d785b87 ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x311f5f5a ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x32c6495e ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5b287ca4 ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x65979948 ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x65cc178a ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6a8da30a ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x87e178a4 ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb54f1ccd ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc8b1fc71 ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc8b457cb ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd221b79f ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe5098fcd ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf5e678e1 ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x09b684d6 saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x28674fee saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3da93b50 saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4b159a64 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5690e88b saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x59888266 saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa3540aed saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xaa9a7e80 saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xaf79569e saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb1a9cdc8 saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb2e669f5 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc961d1d5 saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xeb43ada1 ttpci_eeprom_parse_mac -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x0e782d49 soc_camera_power_on -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x0e969b3f soc_camera_xlate_by_fourcc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x2c3c4d85 soc_camera_host_unregister -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x2ebc0e58 soc_camera_apply_board_flags -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x41b63db4 soc_camera_power_init -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xc93e6e1f soc_camera_power_off -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xcae464ec soc_camera_host_register -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0x3db94de3 soc_camera_client_s_crop -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0x96c27df4 soc_camera_client_scale -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0xac2cdaa0 soc_camera_calc_client_output -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0xc5200871 soc_camera_client_g_rect -EXPORT_SYMBOL drivers/media/radio/tea575x 0x0537a93e snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0x0faaaf22 snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x47167713 snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0x52a8f10b snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0x6e9bdbab snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0x75451f14 snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x93bc272b snd_tea575x_exit -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x26b497c6 lirc_dev_fop_poll -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x66b74f24 lirc_dev_fop_read -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x7832d31a lirc_dev_fop_write -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x9213b5b9 lirc_register_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xb78e9b60 lirc_dev_fop_open -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xd8affe6b lirc_dev_fop_ioctl -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xe35922bf lirc_get_pdata -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xf460fbf3 lirc_dev_fop_close -EXPORT_SYMBOL drivers/media/rc/rc-core 0x2213e8f7 ir_raw_handler_unregister -EXPORT_SYMBOL drivers/media/rc/rc-core 0xa51b53cb ir_raw_handler_register -EXPORT_SYMBOL drivers/media/tuners/fc0011 0xf19141ec fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0x0131bd18 fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x427b8878 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xca04ae38 fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xfdfbb4c7 fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/max2165 0x420e2f8a max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x13bd0adf mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0xa55cf985 mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0x2694ff71 mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0x87e966d6 mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x4d4e80aa mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0x325431fe qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0xacbdf764 tda18218_attach -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x9316315f xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0x4a675851 xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0xeaae74b5 xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x9d8c2b8d cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xbcefc3a4 cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x02b16740 dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x55b8dd28 dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x619c52ce dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x699c5c4c dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x70a2a16d dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xac6ca43e dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb67ce409 dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xca6bd931 dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xcc9c0b5c dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x2a33aa7b usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x6940a1b3 dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7e930487 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x81d9dec3 dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xa4949757 dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xccf2c6e2 dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xde987811 dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x493f301e af9005_rc_decode -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x0066f8a3 dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x0448986a dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x24d90288 dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4d6bf026 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6fcb0880 dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x82b451a9 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9338816e dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x959e7584 dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9e140c05 dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc19793ec dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe8913212 dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x739ed24b em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xe9b7b897 em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x00a3b645 go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x307a7320 go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x37fe6c3e go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x570b89c2 go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5b33a65b go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x609f9930 go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xbc4805d1 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xbfd0173b go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe84bdd36 go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2c7ead47 gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x322ba10c gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x40d20767 gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x4cde52b6 gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x59ea7dea gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5a56650b gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x6bff7919 gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc6d8cff2 gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x9d425ac3 tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xb3a633a2 tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xcd8fd14c tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x0a8bb1dc ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x214cb016 ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x0605ecbf v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x670b6023 v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xd3f30fd8 v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x32d65c4f videobuf_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x5da74224 videobuf_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x78eaa71b videobuf_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x92b50988 videobuf_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xc3afd6c5 videobuf_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xfa9aef09 videobuf_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x27fc331a vb2_verify_memory_type -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x682d3881 vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x67ee2e1a vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x6d1cdb28 vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xa356ab17 vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xc81f8166 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xcf167e6a vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xf5d7b12f vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0x38138cc4 vb2_querybuf -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x01b8c774 v4l2_clk_set_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x04d27de8 video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x070a65fc v4l2_subdev_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x07f611b1 v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x09d92a45 v4l2_clk_disable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0b77ace2 video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0f48389e v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0fe1de6a v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x112ebcfc __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x13aead98 v4l2_of_free_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x14760da4 v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1916ae63 v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b21ee33 v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2c1f707d v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36d7dbe4 v4l2_of_alloc_parse_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x37cb9ed0 v4l2_clk_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x38973f60 v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3a523282 v4l2_of_parse_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3cb5945c v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3e8db564 v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x407f4ed5 v4l2_subdev_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4576e28c v4l2_clk_get -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45c126d9 __v4l2_clk_register_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x47454564 v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4a312eeb v4l2_subdev_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4bc01fbc v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4c487670 v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4cf8688f v4l2_clk_put -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5072bcf9 v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5a2975ea v4l2_subdev_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5c6e72e1 v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x62397640 v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6259d84a v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x658e4a20 v4l2_of_parse_link -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x67779ac3 v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6929ff48 v4l2_subdev_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6e5c5ed6 v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x808885dc v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x83fd1fcf v4l2_ctrl_add_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x83fe9ce2 v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x86df6ad5 v4l2_clk_get_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8c80ed03 v4l2_of_put_link -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9600e7a6 video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9899e6b7 v4l2_subdev_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9ac742e7 v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9cc5bfa2 v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa3e09477 v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xabe036ac v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb4c8c639 __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb66d9bac video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbde057af __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbe7a24f1 v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbe9d0b45 v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc232d304 v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc24b8079 video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc5c966af v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc88ccf87 __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xca3f39f8 v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xce45dd80 v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcf33050f __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd24b820b v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd3254c4b v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd5f263c1 v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd6df30e9 v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xda24763c v4l2_clk_enable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe238dda6 v4l2_clk_unregister_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe45ac063 video_usercopy -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe981dbe7 v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xea8c1476 video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xedd5883f v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf06315c7 v4l2_clk_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3c03348 v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf80f2463 v4l2_subdev_g_ext_ctrls -EXPORT_SYMBOL drivers/memstick/core/memstick 0x17f7178f memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0x259de547 memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x45cf7d7b memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x4dca47db memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5b8068a4 memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x7a16c10d memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x80489da6 memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x832bd2f2 memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x95e1dd5e memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xa5987a36 memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xb94ab0f6 memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xd69b5808 memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xda26d167 memstick_resume_host -EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0280ad2a mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x32a18172 mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x404c5b52 mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x46fc20e8 mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4f078d00 mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x55c71b23 mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5703335d mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5c76577a mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5e934b7a mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x67b74da4 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x727a1f23 mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8183b6d3 mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9741d87e mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xab6f030b mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb684d795 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb92e3933 mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0beb86f mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc2818ec8 mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc29a7501 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc7577faf mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc88466d3 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc99a56c4 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9166139 mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xda97f604 mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe5429188 mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6419f2e mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf0169b72 mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf29be71c mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf891f6cb mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x08b325f8 mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0bba6741 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x105f621e mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1fc5d13a mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x257338c8 mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x26377234 mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3953e345 mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3acb03cc mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3bd01ade mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3f8d69b8 mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5193dbf6 mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5cb2d726 mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x61416f5b mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x62f30098 mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6c917f17 mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x94db96ea mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9ff4baea mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb1b344da mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb3e4803f mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb9a38200 mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc06fc8e2 mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xddd23179 mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdf56fc29 mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xee1bf2a1 mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf1dff4c8 mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf2c6f7a4 mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf352ddd2 mptscsih_qcmd -EXPORT_SYMBOL drivers/mfd/cros_ec 0x00451549 cros_ec_suspend -EXPORT_SYMBOL drivers/mfd/cros_ec 0xce04c8c7 cros_ec_resume -EXPORT_SYMBOL drivers/mfd/cros_ec 0xdc3a5e30 cros_ec_remove -EXPORT_SYMBOL drivers/mfd/cros_ec 0xf8d7e21a cros_ec_register -EXPORT_SYMBOL drivers/mfd/dln2 0x98edeb9c dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xaa8a1af5 dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0xb1c14ad1 dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x2094f4ae pasic3_read_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x8767b89f pasic3_write_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x12db3264 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x19a00a28 mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x512c5742 mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x575f32fd mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6052e9f9 mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7ec7bfb3 mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8758eb7d mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x905f8e5b mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb76fba14 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xba94e851 mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf2160755 mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/qcom_rpm 0xd042c9be qcom_rpm_write -EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 -EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 -EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib -EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led -EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw -EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0xa5fcbcf0 wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0xcb30783c wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x54c9de9e wm1811_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x72f2d4ac wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xcbabdcb3 wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xf991672a wm8994_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x45a2cfa5 ad_dpot_probe -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xa9f6e38a ad_dpot_remove -EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x8a05ed90 altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0xbd7cd007 c2port_device_unregister -EXPORT_SYMBOL drivers/misc/c2port/core 0xec155d55 c2port_device_register -EXPORT_SYMBOL drivers/misc/ioc4 0x48ee4985 ioc4_unregister_submodule -EXPORT_SYMBOL drivers/misc/ioc4 0x9d1a3442 ioc4_register_submodule -EXPORT_SYMBOL drivers/misc/tifm_core 0x099cd496 tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x1e514b87 tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x396c0889 tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x4f47d6c1 tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x81cab064 tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x9ce4a69f tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x9f761faa tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xa0a5bb11 tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0xa91679e3 tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0xcfd0aea1 tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0xda0667a4 tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0xefa06a41 tifm_remove_adapter -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x72eca10e dw_mci_resume -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x8ede77ad dw_mci_suspend -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xe90005fc dw_mci_probe -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xf898ff42 dw_mci_remove -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x05d9008e tmio_mmc_host_free -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x378f2335 tmio_mmc_irq -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x6d3deee9 tmio_mmc_sdcard_irq -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x7a6fd700 tmio_mmc_sdio_irq -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x9785d0a1 tmio_mmc_host_runtime_resume -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xa589b97c tmio_mmc_host_alloc -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xe2a45dd9 tmio_mmc_host_probe -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xf02062dd tmio_mmc_card_detect_irq -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xf2364578 tmio_mmc_host_runtime_suspend -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xfe6799d3 tmio_mmc_host_remove -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x2cf4ef01 cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x3a9317a1 cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x5b30fde0 cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7e9216c7 cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xbdd7488a cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xcd0982cc cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xefb9a7cc cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xa3cbee86 mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xf190a266 lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/nand/denali 0x52dacec0 denali_remove -EXPORT_SYMBOL drivers/mtd/nand/denali 0x60bd817a denali_init -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x55c97258 onenand_default_bbt -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x75b1ab06 onenand_scan_bbt -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xcaee84ce onenand_addr -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xce6c2bbf flexonenand_region -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x03e6e7d0 arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2797f785 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x31073fd6 arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3c550259 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x76daec0f alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7c70407d arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x811d2282 arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9dbf8bd3 arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc4e5c8c7 arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xdbab2878 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x9b33af75 com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xa2997ae9 com20020_check -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xa39df0cd com20020_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x07afb286 ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3358a583 ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x608b19da ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x76379950 ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x967e0da7 NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x96ff5b2b ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9a2c607e ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb19adb92 __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb83c1ac5 ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf39953b2 ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0x2748c13e bnx2x_schedule_sp_rtnl -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xfd715a23 cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x013eb15e t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x09175587 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0973175d cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1826c07c cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1be54631 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x27416a33 cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x30548d47 t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4a50de1d cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x698dc9cb t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x94b4bf1b cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa9c3b1f1 cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xaac4e2db cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe3e1f008 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe81bed2c cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf62724b5 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf9b6c1ee cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x063aad53 cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0b6dbdc4 cxgb4_dcb_enabled -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0cf31e1d cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0ec3aa1a cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x18384f60 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2dd6c3f4 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3fbace24 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x448f3b34 cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4de31aaf cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4f4a5a13 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5450a30a cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5ef3faf6 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5effae17 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6af4c72f cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6dd163ab cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x726b2e1f cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x76d16ea3 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7f3940bf cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8c8df3a6 cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9c2f469b cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xab7ae98d cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb67539c4 cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbc4e6bf0 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc531fffc cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00a4f2f cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdf155350 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe08629be cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe1c3791f cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe2043230 cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe49e1ca3 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe74f3899 cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xeb9e1466 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf57646df t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfed497cc cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x1245dd90 vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x3292d47a vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x6c8af693 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x96af5322 vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xe9b0a610 vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xede99d9a vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xb4e855b6 be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xe8d4cfae be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x2e4998c2 hnae_ae_unregister -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x4a74980f hnae_reinit_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x4bf347ac hnae_get_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x9a17afd8 hnae_ae_register -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xf95978dc hnae_put_handle -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x080868f5 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1130ef58 mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15305ec9 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a064acc mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e0fef1d mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34677fc4 mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48f7bd5f get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d549a25 mlx4_test_interrupts -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68aceef2 mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7155246a mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72d915d4 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72fae3d4 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82607694 mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90480bf7 mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ace2d31 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f0321de mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa873b12e mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa92d98b6 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9572a90 mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5183743 mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb83ebabe mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbaac94bc mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe5bba68 mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfc5b539 mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2befc49 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4d9e3ab mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2825d14 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3843513 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3d4ab4a mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdcbe7fab mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf66eaf1 set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1769a39 mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2b96263 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf61d0448 mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6af3ac4 mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbd25da4 mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfdc2c524 mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe28edcf mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0857aabd mlx5_get_flow_table_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c1b9fed mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb7287e mlx5_del_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f8d7557 mlx5_unregister_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11d25aaf mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15a0d16d mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e32cac1 mlx5_modify_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3183b9f1 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x340228b9 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3404ac76 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x361c8b63 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36a99884 mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c3f1f7d mlx5_cmd_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c7c8d95 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43640491 mlx5_core_create_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47f53f1b mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e8fc040 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51e8716f mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e8386a6 mlx5_core_arm_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x657f4ea3 mlx5_core_destroy_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66872aa5 mlx5_register_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73178e2f mlx5_alloc_map_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83e64444 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d68f3d1 mlx5_core_get_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6fd7dd2 mlx5_unmap_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaec0fadc mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb00d6d47 mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb815317 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbba7a6c4 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd605cbe mlx5_cmd_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbeb8a08f mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc200e508 mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7efe523 mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb563c1a mlx5_query_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd32901f1 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8571fd5 mlx5_core_query_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb588046 mlx5_get_protocol_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0b66cb7 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6af33e4 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef21e44c mlx5_cmd_comp_handler -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4e5c528 mlx5_core_dump_fill_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc728a49 mlx5_add_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1d37990b mlxsw_core_skb_receive -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2512bfaf mlxsw_core_rx_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3b369001 mlxsw_core_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3efe01dc mlxsw_core_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5c7fece7 mlxsw_core_bus_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63af48d5 mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7ab57145 mlxsw_core_skb_transmit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcb5c8545 mlxsw_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee8e0771 mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x805dc795 qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa209d1af qed_get_protocol_version -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x149c2903 hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x66550579 hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x8f55bc53 hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xe4fde60d hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xe9810cf7 hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x21a20cdd sirdev_set_dtr_rts -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x2bb8520b sirdev_raw_read -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x4627e65a sirdev_receive -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x5a92dd6f irda_register_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x5bf1fb9f sirdev_set_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x6ad7d546 sirdev_raw_write -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x9edbb168 sirdev_get_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xb5e18f89 sirdev_write_complete -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xd9412945 irda_unregister_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xebefb641 sirdev_put_instance -EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl -EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart -EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag -EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe -EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok -EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage -EXPORT_SYMBOL drivers/net/mii 0x3183e4f1 generic_mii_ioctl -EXPORT_SYMBOL drivers/net/mii 0x50f61507 mii_check_media -EXPORT_SYMBOL drivers/net/mii 0x52fccdc1 mii_link_ok -EXPORT_SYMBOL drivers/net/mii 0x5438a73c mii_nway_restart -EXPORT_SYMBOL drivers/net/mii 0x8d7f06ac mii_ethtool_sset -EXPORT_SYMBOL drivers/net/mii 0xb77acd36 mii_ethtool_gset -EXPORT_SYMBOL drivers/net/mii 0xc6d09aa8 mii_check_gmii_support -EXPORT_SYMBOL drivers/net/mii 0xfb4c8d7e mii_check_link -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x3fc7bd9a alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x82afa8b5 free_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x144e8068 xgene_mdio_rgmii_read -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x154423a2 xgene_mdio_rgmii_write -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xf528db72 xgene_enet_phy_register -EXPORT_SYMBOL drivers/net/phy/vitesse 0x11e8a157 vsc824x_add_skew -EXPORT_SYMBOL drivers/net/ppp/pppox 0x440d29a0 pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0xb707289e pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0xc9ee6be5 register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0x1789a23f sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x2d63d646 team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0x37393c32 team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0x8d24b995 team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0xb1c41aa6 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0xc5a80536 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0xc72a9abc team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0xcc039427 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0xe34690a2 team_mode_unregister -EXPORT_SYMBOL drivers/net/usb/usbnet 0x3ebc6b64 usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0x5a2a2ad3 usbnet_manage_power -EXPORT_SYMBOL drivers/net/usb/usbnet 0x89b86e4a usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0x8ee2e5f7 cdc_parse_cdc_header -EXPORT_SYMBOL drivers/net/wan/hdlc 0x123f5cf5 unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x3d70bea8 hdlc_change_mtu -EXPORT_SYMBOL drivers/net/wan/hdlc 0x7c53c85c register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x7df2a37a hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0x9899c8c8 unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0xb3aa34f4 attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xc93b69c2 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xcd27ac7a hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0xcdaac827 hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0xed463cba hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0xfe4f507e alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0xb25c9aa9 i2400m_unknown_barker -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x278986db dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2b2b72b6 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4ef46411 ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5789a5f6 ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x99b980ab ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9cce78f7 ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9fd8310a ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb5273f0c ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd108ed3f ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd181d42a ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xeb4f15fc ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfe78ac84 ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x059c765e ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x19a747c8 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4582f97a ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x540e1bf8 ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5d995371 ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x78fd0502 ath10k_debug_get_new_fw_crash_data -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8818babd ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa0632593 ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xae6f3987 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbf19b476 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc495211e ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd19af143 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd28ac533 ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe790a101 ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf9712859 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0b0979db ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0dad2ed6 ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x14f7c08d ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x16aa87cd ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1c82e8ad ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4aaa1f8f ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x92189f83 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa40661c0 ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb8c6dac5 ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe0beaedf ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xec898c9a ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0086c3e5 ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x07496420 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1e861937 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2dc77d46 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3b7a3308 ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x447c2ede ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4807173c ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4bc24e86 ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4d4eafd8 ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7fc0a910 ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x90d0b27c ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x90fa117f ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9272ad57 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9ab664fd ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaafcf48d ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb6ee427e ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb7dab6f0 ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc55a9aa7 ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe83b5174 ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe9fbc230 ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf278d321 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf2f0c3cb ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfaf8ca7a ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x041d2338 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0659181b ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x090aac43 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x09c0835a ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x12579ee1 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x12bf1957 ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16edaa42 ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x174a9545 ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1761bacc ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a8f05ca ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b566f05 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1bd5428e ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1db05461 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2022a9b1 ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x20dfa2d6 ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x231b0773 ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x243b3fd8 ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27a7601a ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27ab98b6 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2800c3ac ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c8ebb09 ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2cbb9813 ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f1bf515 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x33910a65 ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x33afa4e7 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x341421fa ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x35352f66 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x469e47e5 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4d4d3768 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5087bae8 ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5103c505 ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5705e289 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5926c637 ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x599ea5eb ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5d73c821 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x60fe50ac ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6427ff14 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x696814df ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x69fc2459 ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x708f1701 ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x710a1165 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x72fdef24 ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x744ab8c9 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x78ba638d ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x797070bc ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a33986d ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x80535300 ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x815a36ab ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8201e55e ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x855a3206 ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8cded103 ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8ecdb659 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9398f253 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x93efde6a ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x97f1948f ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x991291b5 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3798320 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa44ce11d ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7609476 ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaad2bc56 ath9k_hw_cfg_gpio_input -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xab8192fe ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xacbd3245 ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae24709f ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb03e6c1b ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb183ac68 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb29415d0 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2cddaac ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb8d99e5d ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xba92301a ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbb067468 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbba6bff5 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd1592ea ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbec00be1 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc63d8d7e ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc9db3f13 ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcdfab3f6 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf1ec6bf ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd0293fea ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd08707d1 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1ca4219 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd3466024 ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd891f89f ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9e23ed4 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xda78699c ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdcd48729 ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdec2637b ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe05fc27e ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe195bac3 ath9k_hw_cfg_output -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe348fbd2 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe40fc8e4 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe732ce3f ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe769c8e4 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe788d6cd ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe7d64ccb ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe906ca5a ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe9fa3445 ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb3324c4 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef749467 ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf258f8af ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf31ff536 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf848bb99 ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfbd72d1a ath9k_hw_request_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd6b23ec ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe85fb08 ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfef3907c ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/atmel 0x2faa52e8 stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel 0xc9426b51 atmel_open -EXPORT_SYMBOL drivers/net/wireless/atmel 0xda5975d3 init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x17c11627 brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x2a100051 brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x2dd777d2 brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x341490fe brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x40a9585b brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x540ed272 brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x6d2c4331 brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x72dd404e brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x74128830 brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x780d06b9 brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x80e17ee5 brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xc50b9c79 brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xe6dbe123 brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1300ec3d hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1d8610bf hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x205dbfe4 hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2d1088b5 hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2f4c3bd6 hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3e4bf9fe hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4e265dea hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x55dc5d48 hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x587284e4 hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5d44651f hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5f0e114d hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x65745805 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6a297f3a hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x70da1a3c hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7680b86f hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7eff11bd hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7ffaf93e hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9ef8f2a7 hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xafdda9ed hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb9e2206b hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbac582ee hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbc002dc0 hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc7045a4e hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xcdd229d0 hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xed54e114 hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x02b27de5 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x07ba519f libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x098a2f4c libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0fa57e7e libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x13897a3c libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x3983193f libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x427cd24f libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4491708c libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4e7054f7 free_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x511b4300 libipw_change_mtu -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x512a69f3 alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x736ea634 libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x77663123 libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x792bbef9 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x84362b40 libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xada5bcd1 libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xbf8791c5 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc8e28f58 libipw_rx -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe69018bb libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xede57773 libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf6edb219 libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x050fba6d il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x05fe89a4 il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x08b88f75 il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0914243a il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0af0bcdb il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0f01c792 il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x102477b5 il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x105afa7c il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x10762534 il_leds_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1127e132 il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x112db4d5 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x158acf95 il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x16717468 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1e90c6d9 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1fb54211 il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x22b40c7b il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x22d82d21 il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x23de0d72 il_force_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2495ffd2 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x303f7061 il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3358c228 il_free_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x362f2347 il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x371a4249 il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3736ffb4 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3db65dfb il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x40667d55 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x436ef479 il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x46412d5d il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x466ed128 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4b4d7b79 il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4e82c280 il_set_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4ed8243f il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4f7863cf il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x57640467 il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5ba5ae18 il_init_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5d611edf il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5dd9152e il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x633b189a il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6374efcc il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x64128882 il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6514311f il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x65e24452 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x672a8355 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6804014a il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6999c281 il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6f793178 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x76d1328f il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x77795794 il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7a2f124b il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7a87b35e il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7aa36f0b il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7ce15935 il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7dbfa3a0 il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7f4afd82 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x817201f4 il_apm_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x84979172 il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8cf7ecf4 il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8e80d630 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8edd21ea il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x905f3708 il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x96381266 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9912c6f5 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9af9fa3c il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9b0f4465 il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9bfe9661 il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9d7cf523 il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa67ab79b il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa7807d0f il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa92c46c6 il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xab159ce4 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xab4be234 il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xabc73741 il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xae47d66d il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb246836c il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb34f5701 il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7195253 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xba632fee il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbb1213c0 il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbef43ef9 il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc55b02e4 il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc69a2397 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xce73df97 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd408e3f0 il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd438db08 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd471b53a il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd546c872 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd90f169d il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd96ae1f5 il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdbb6c83c il_set_rate -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe00693e3 _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe39776c6 il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe707f6e7 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xedd05769 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf1146fba il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf1672039 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf1dd367a il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf59de4e0 il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfa34f889 il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x180d7a46 __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x208d96c4 __tracepoint_iwlwifi_dev_iowrite32 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x26bb7eb8 __tracepoint_iwlwifi_dev_ucode_error -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x436814a2 __tracepoint_iwlwifi_dev_ioread32 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x496d7aef __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x8f81067c __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xfd34aff0 __tracepoint_iwlwifi_dev_iowrite8 -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x01b3e4ee orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x0f6443c6 orinoco_get_stats -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x1e4904ff orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x37c3dbd3 orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x38229a0a orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5570975f orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5bd4bc60 orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5bfb0c47 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x605e5315 orinoco_down -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x8893b031 orinoco_up -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x907c037c orinoco_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x9f566c2c free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x9fcb9dc5 __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd3ec4d1b orinoco_open -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xde5321a7 alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe07df55e __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe3b2032e orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xd74f757f rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x027e87f4 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x02b3e3af rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x07bfd5c7 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x07c99024 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x130e117c rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x13d136fa _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1875563c rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1beb3f11 rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1ea9c45e _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x255dbff2 rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x360cd145 rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x36cec5e8 rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x50a94172 rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5a1a7a95 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5ea3cb33 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x649a59ac rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6f5f0245 _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x729616a6 _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x794cad07 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x80eee2c8 _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8b5f421a rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8c896969 _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x95650e76 rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x984385c8 _rtl92c_store_pwrIndex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa00e24d9 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa1682c85 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa4747061 rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa517b7b0 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa7a8d42e rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaae4fac5 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb654a2fc rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb77bc42d rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb792f38e rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc55cafe8 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc8869761 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcb2a0b1f rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xef1cfe4d rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xefbc710f rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf0c00643 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf75c90ae _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfbe4cbc9 rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x46d6f549 rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x7757c957 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xaeff62e4 rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xb43dee2c rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x1595ae0d rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x6dca00b7 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x9eb70ea5 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xdbac81d7 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x11f68a7a rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x194ebde0 rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x238e6198 rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x28ead3a8 rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30800a45 rtl_wowlan_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x48572f04 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x50408724 rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x619bc305 rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6285039e rtl_ps_set_rf_state -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x74793e0d rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7a19d262 rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fe77e27 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x83c94810 rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8c32668d efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xba36edb0 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc18f7671 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc3386b10 efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc710d6a1 rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc81cb878 rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc9e56e00 rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcc1f830a rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd58a6fce rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd9d02d55 rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe2b32cfb rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe9500d9e rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf0188855 rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf777d189 rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf9da4ecd rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x146ea22a wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x2b96edba wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x883a347e wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xf4c263d2 wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x5d093f3b fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xa4c232f2 fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xd71a3f7d fdp_nci_recv_frame -EXPORT_SYMBOL drivers/nfc/microread/microread 0xd46cbb56 microread_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0xf94f10cc microread_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x27d98b41 nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xbbc7286f nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xfa58e154 nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x572544e6 pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x97e50c1c pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x38055c88 s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x46c112da s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x9bb62f5d s3fwrn5_recv_frame -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x04cfcdc2 ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4913756c ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x52f5c90c st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8cb62be0 st_nci_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8f8d872c st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xaa95df39 ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xbcee9051 ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xcbd74aab st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xde243ed8 st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf7b553b2 ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf9348949 ndlc_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x062a9532 st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0e678657 st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x142bc8d8 st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1aa9f886 st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1f1bdd9e st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x23527aed st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x38be3e43 st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x568a21a8 st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x84ff3296 st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x99a9a1a5 st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa56db3e0 st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xad62b33e st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb5822ce6 st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc7fcb152 st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd3168a0d st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdfbddbdb st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xecf93cc2 st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfb6023de st21nfca_hci_se_io -EXPORT_SYMBOL drivers/ntb/ntb 0x161c9708 ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x493b3d74 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0x4a76572c __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0x5d1b3489 ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x5e75143b ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0x5ee272a9 ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0xc13148a1 ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0xc5653c1c ntb_link_event -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x07708f97 nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x9c82ab3a nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x4d177f8b devm_nvmem_cell_put -EXPORT_SYMBOL drivers/parport/parport 0x017b27e4 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0x13002e9a parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0x164dc4de parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0x17ad53f8 parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0x17d5fc36 parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0x277d3e69 parport_release -EXPORT_SYMBOL drivers/parport/parport 0x2cf20c5b parport_claim -EXPORT_SYMBOL drivers/parport/parport 0x3315b8f7 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0x3699267c parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0x4140cec7 parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0x4350b35c parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x45631a29 parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x465cfd53 parport_read -EXPORT_SYMBOL drivers/parport/parport 0x4a2750a7 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x531fa5f0 parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x5e7d4359 parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x677441cb parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0x6c4ff513 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x8ba8d0b8 parport_write -EXPORT_SYMBOL drivers/parport/parport 0x8c33a39b parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0x9109c298 parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0x99eb4860 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x9d72ef5e parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0x9fe459bb __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0xa9e077e3 parport_register_device -EXPORT_SYMBOL drivers/parport/parport 0xb0c7a75a parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xc1dd4928 parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0xc1ec65f9 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0xcb55befc parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0xd6ff3819 parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0xee3ac49a parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0xf8238311 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport_pc 0xac6e9d2a parport_pc_probe_port -EXPORT_SYMBOL drivers/parport/parport_pc 0xc2cc041e parport_pc_unregister_port -EXPORT_SYMBOL drivers/pci/host/pcie-iproc 0x0c50b300 iproc_pcie_remove -EXPORT_SYMBOL drivers/pci/host/pcie-iproc 0xd3c4dac7 iproc_pcie_setup -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x056cfb4c rproc_put -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x19fe032d rproc_vq_interrupt -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x1a468735 rproc_alloc -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x1ef6afad rproc_get_by_phandle -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x2658efa5 rproc_boot -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x60830eaa rproc_shutdown -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xa30d5336 rproc_da_to_va -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xb84f3c9a rproc_add -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xc3090c10 rproc_report_crash -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xfc1a99ad rproc_del -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x858ac070 ds1685_rtc_poweroff -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x5cbdce83 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x6fb62348 scsi_esp_register -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x8c1c84b2 scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xaa5897fb scsi_esp_template -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x10f1294b fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x119fe21f fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x148d6773 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x31e84e8e fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x53863081 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6b8bf9d9 fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x72d62065 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7727302a fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x94f3bf2e fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xab85a1c2 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xba26a575 fcoe_ctlr_destroy_store -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd6f3563c fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0380dc03 fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0ae45ae9 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0efb8b67 fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1a1294a0 fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2217b835 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x23806431 fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x30beba18 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x384be8e4 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x420961d1 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4461b079 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4bfa1763 fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x542704f5 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x59d2cd41 fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5c8b1673 fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5e8360c5 fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6302291c fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x64f11a66 fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6688ddd0 libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x66b012e5 fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69ae3313 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6aac9ed2 fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6db60949 fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x710d7f0c fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x720be896 fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x75d8bf7a fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x77b34ec4 fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x79f2b4bc fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7bb6a158 fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ef38b2d fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x841d74d3 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8ea03cf2 fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa0b22001 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa3b1c594 fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa6a2c773 fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb00b7000 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb051d8a3 _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb318db48 fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb60ac0c4 fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb7419a02 fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbd78a639 fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc9276ee1 fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcbc7deb0 fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcebbff7c fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd107a0a9 fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd47a5bc2 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd525e340 fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe0ba16a2 fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe8d8b211 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0b107a6 fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfb01c942 fc_rport_init -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x0a89ce49 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x45f91de0 sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x66a6b117 sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x6fb507bf sas_wait_eh -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x66635a10 mraid_mm_register_adp -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x01fe79cf osd_req_flush_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0b13d1de osd_req_add_set_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x13117180 osd_req_write_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x162d168c osd_dev_init -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1bb2e639 osd_req_write_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x204be944 osd_execute_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x258a3b5d osd_req_create_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3c2e4300 osd_req_list_dev_partitions -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4004231c osd_req_list_partition_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x42c574d3 osd_req_create_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4c8b0b62 osd_req_decode_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x55d9b913 osd_start_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x56ed5bf5 osd_req_set_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5b66955f osd_req_decode_sense_full -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x71541a74 osd_req_remove_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x751b24d0 osd_req_write -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x757e96c7 osd_req_read -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x779c19b8 osd_req_read_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8d1ae170 osd_auto_detect_ver -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8dbcdef0 osd_req_write_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9216bc5a osd_req_remove_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9313c4d5 osd_req_list_collection_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x99f23f4c osd_req_get_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa10ac054 osd_req_read_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xaab55cbb osd_dev_fini -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xadb93d66 osd_end_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xae6e15e0 osd_req_flush_collection -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb0815464 osd_req_flush_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb2f21f73 osd_req_add_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb9175e0c osd_finalize_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc8cbc471 osd_req_format -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xca2537d6 osd_req_read_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd76334d0 osd_execute_request_async -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdaaec42e osd_req_list_partition_collections -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe25d51b8 osd_req_flush_obsd -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xff0ee1cd osd_req_add_get_attr_page -EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0x6180c040 osduld_put_device -EXPORT_SYMBOL drivers/scsi/osd/osd 0xac9ecaab osduld_path_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0xb478c732 osduld_info_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0xc7cad049 osduld_register_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0xcd7ad719 osduld_device_info -EXPORT_SYMBOL drivers/scsi/osd/osd 0xdba240d2 osduld_device_same -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x113aafb4 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x12af2fc5 qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1f436773 qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3637cde3 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x660b67f6 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6c358a06 qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8d957262 qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x96b77300 qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x99ab741b qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9e77702c qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa1bd2011 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd43bfbdc qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/raid_class 0x2ad473c7 raid_class_release -EXPORT_SYMBOL drivers/scsi/raid_class 0x644b43a6 raid_component_add -EXPORT_SYMBOL drivers/scsi/raid_class 0xd7949541 raid_class_attach -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x07800ff9 fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0790346f fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0c0b93f7 scsi_is_fc_vport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x163ca006 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3e933d29 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4a74b3a2 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x537d2540 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x721772ea fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x80e03fea fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8a84bc1a fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x984fc63a fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xdd72a970 fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xdd928fdf fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0c0b0abf sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x157a4322 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x19c76ac5 sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2a425596 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3894dddc sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3b65b6d8 sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4a7f8fb0 sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4a877603 scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4dfdaf81 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5e4e33ff sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6169fe3d sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6f4ddd0b sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x74d0306c scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x76426f42 sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7831f06f sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7a13c4cd sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8d985d5e sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8e4d9396 sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x938cfc9a sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa4bdf691 sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb834d675 sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc5dfba16 sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc808af77 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd91bb343 sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe61c06ae sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xeb61c27d scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf9798df0 sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xff5aec7f sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x04db4d60 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x06fc5446 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x53274ddd spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7193ca65 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xb3de82ea spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x06745061 srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xa2d0400c srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xc154982c srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xe5915e1a srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x48d2d0ac ufshcd_runtime_idle -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x780eb0dc ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xbc17c9db ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xc5580e84 ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xd91a46a3 ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xf1def841 ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xf8583a60 ufshcd_alloc_host -EXPORT_SYMBOL drivers/soc/qcom/smd 0x02d2ad8f qcom_smd_driver_unregister -EXPORT_SYMBOL drivers/soc/qcom/smd 0xe9ea13d4 qcom_smd_driver_register -EXPORT_SYMBOL drivers/soc/qcom/smd 0xeda44e54 qcom_smd_send -EXPORT_SYMBOL drivers/soc/qcom/smd-rpm 0x2f5501c0 qcom_rpm_smd_write -EXPORT_SYMBOL drivers/soc/qcom/smem 0x5a710273 qcom_smem_get_free_space -EXPORT_SYMBOL drivers/soc/qcom/smem 0x63ef36e3 qcom_smem_alloc -EXPORT_SYMBOL drivers/soc/qcom/smem 0x932eb0e3 qcom_smem_get -EXPORT_SYMBOL drivers/ssb/ssb 0x0d672dfb ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x1185b1d1 ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0x25e1cac5 ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x35c7c0f0 ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0x3de7c42e ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0x46874c24 ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0x4a519a47 ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0x58e86830 ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0x7c0e36a8 ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x7d7d842b ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0x7db6f9be ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x8558179a ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0xb80f0cac ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xc0c8a537 __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0xc7ccbece ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xd5620651 ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0xe8f3aaa1 ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0xf67f18ee ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0xf93f6065 ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0xffecf426 ssb_clockspeed -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1512fc31 fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x21b930c7 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x21d512cd fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2ca85a47 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2ff5ab74 fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3982478c fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3a219faf fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x410ce85b fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4ca61d9c fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5052e5ae fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x54d2744d fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5c30af34 fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6d4b1b7c fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x79115d3f fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa36567c5 fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xab31f745 fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xaf00ed60 fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb205b56d fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb566c60e fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbfb1ec2d fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc9f52df7 fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd4261d20 fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd585838d fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeba2946d fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x252a9e65 fwtty_port_put -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x4f94cbca fwtty_port_get -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x4afde0c2 adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x32d0c917 hmc5843_common_probe -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xbecdb51e hmc5843_common_resume -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xdd342c84 hmc5843_common_remove -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xf234b577 hmc5843_common_suspend -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x49b9e3f3 ade7854_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xc5b47bc7 ade7854_remove -EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0xbd16aeed cxd2099_attach -EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x1c0db7f8 most_deliver_netinfo -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x037f734e rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x04144723 rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x048a2840 rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x144743d6 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1634adaf notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1c5d76b8 rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x241cbda2 alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x25113e0d rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x278950e3 dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x285c2617 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3130464d rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3ae97b9c rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3e83d5e8 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x432310a4 rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4b69c699 rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4d194f24 free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4d704bc6 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x54d1d20b rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5642cecb rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5a0bd12d rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5a12d660 rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5ff904fc RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x62662740 rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x69cb3ac5 HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x76287c28 rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7e2c70fd rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7f5575eb rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8c6c20e1 rtllib_wpa_supplicant_ioctl -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x962760b5 rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb315689c rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb633a49e rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb8ff712d rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbc919748 rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbdf073d5 rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc178a42d rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc663c59b rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc79e3d4b rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc915b12f rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd207da11 rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd773d902 rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd783a175 rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd93b5605 rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd986e82a rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe0f64922 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe37289ad rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe430cd5a rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xed1cb1a6 rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf12d5981 Dot11d_Channelmap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf7e3479d rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf92f922e rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x00fa0d39 ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x041ee992 ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0e3beff1 Dot11d_Init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x160b2f3a ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1a82c0a4 ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x228ef8fd ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x28be3b21 ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2e6777f8 ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2ebe905e DOT11D_ScanComplete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2fad935d ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x31aae3c0 ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x32d9fff7 ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3804dedc ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3cb2e2c6 Dot11d_Reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3ce65c9c ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x421c0b9b ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x47daaec5 ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4b2ed730 Dot11d_UpdateCountryIe -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x52bd5590 ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x56ae72dc ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61b46c62 ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6e47b81d ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7a6ab791 ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7de7aad2 ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7df204f3 ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8ac908ab ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8deb559a ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x921f3b47 ToLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x93f26235 ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x949d79c2 ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9d91c5a1 ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa7742083 ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xab9e3af7 ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb5323ad3 ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb5761451 ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbcdcf7f0 ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc072bf1f ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc1a60e86 ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc570da82 ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xccaf3c0b ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcec31e5b SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf4c2491 ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd4398696 DOT11D_GetMaxTxPwrInDbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd79fff13 ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd86638ed ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdbbb5369 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdc2179af ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe35254d5 ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe68a8839 ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf0dba4a8 ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf3627cd1 IsLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf5da948e ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfbe15b4f HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xff782ee3 ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xffeaebbc ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x099ae869 iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x203bd149 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3d9e140f iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x42a23b79 iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4b910777 iscsit_set_unsoliticed_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4d9e44fa iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4e90372d iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5510e4e3 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5a734eb8 iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5b793a94 iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5cb3ef8d iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6e06de69 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6f1c5c9f iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7315b42d iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7584ee6b iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7c0908d1 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7f33babd iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8e4779f5 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9c2f13f9 iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9e7134b3 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa2e0683c iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbe933ac8 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc12568e5 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd34b9906 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe1ff5e44 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe465f5e1 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf10995a6 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf1ff6e08 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/target_core_mod 0x02a0fea5 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x05e26cd7 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x06dbe4d9 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x09167b0a transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x0a57fdd7 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x0c528549 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x0f60f0de target_setup_cmd_from_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x0fceb8f5 target_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x13bbca87 transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x15fa8f1d sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x1796f925 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x1bd3bb36 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x1e31f349 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x227892ee target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x231ae47a transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x25ef8e32 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x26204c34 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x2e0db806 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0x3047794d transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x3583fdce transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0x456474f5 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0x45d90c9f transport_init_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x4801b761 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x4bb9d183 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x4bcb9c39 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x50a60b3c target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x523aad04 target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x55cc132b target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x59f0015a target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x65a4da8e target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x68d86cab passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x6aa4d14a target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x767573db target_sess_cmd_list_set_waiting -EXPORT_SYMBOL drivers/target/target_core_mod 0x768fb2f3 target_submit_cmd_map_sgls -EXPORT_SYMBOL drivers/target/target_core_mod 0x7866cd28 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0x7a68d7d6 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x7b1418cd transport_init_se_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x7c4dc34f __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x7fb1a768 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x8191f160 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x81b934db target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x8bc43e95 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x8ce92932 target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x8f21d482 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x91e4536a transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x92f52cb3 core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x996ec42d target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x9b65b4a6 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xa58f515b target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0xa5e65734 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xad2ad086 target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xb07f2546 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0xb0cdbd8b transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xb209a606 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xb6ab230d target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0xb93b1ae2 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0xbe8d365d core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xcac18f8e target_put_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xcc79378e transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0xcd7064c2 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xcf4fc6e0 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0xd9571f0e core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0xdc44393b transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xdd819b56 transport_check_aborted_status -EXPORT_SYMBOL drivers/target/target_core_mod 0xe0462c09 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0xe3964f26 sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0xeb28d521 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf8b95fa6 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xfefb7d2d target_get_session -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x3c234a8e usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x49a9ecbe usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xb8f6a0ab sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1f00ad30 usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x25a36944 usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x27d87f0f usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2ccfc9e6 usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x455e919f usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7244a3a7 usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa66577c3 usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xacfc5f4a usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd4b8b179 usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd6900d48 usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe3c27c24 usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe7641ed9 usb_wwan_ioctl -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x7c036f55 usb_serial_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xbff431c1 usb_serial_resume -EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user -EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x2e91ca97 vringh_iov_pull_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x367ce26a vringh_iov_push_user -EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user -EXPORT_SYMBOL drivers/vhost/vringh 0x59f824d9 vringh_getdesc_user -EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x7bda5e6d vringh_iov_push_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x821e9390 vringh_iov_pull_user -EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user -EXPORT_SYMBOL drivers/vhost/vringh 0x937e412c vringh_getdesc_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user -EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user -EXPORT_SYMBOL drivers/video/backlight/lcd 0x0d89d40f devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x35074c72 devm_lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0x985d5481 lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xe3562624 lcd_device_unregister -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0e66bebd svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x46bfc768 svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x63f2168e svga_tilecopy -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xa6557ea3 svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xbd29863b svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xcfe058c2 svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd3c93ba2 svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0xb2fbf37c sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x3a566722 sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x8b154b21 sys_imageblit -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x62103531 cyber2000fb_attach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x2939a65e mac_find_mode -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xdceef123 matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xeab0131c g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xee81cd09 matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x12be17c9 DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x638c76df DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x7e88e5f3 matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xbf69951e matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xbc2df440 matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x65f51e91 matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x84e7419a matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x94470f17 matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xbd5a399e matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xd8ae2929 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x7d78666f matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xe8ce1049 matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x3735d45d matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x5c08096e matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcbcd0720 matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xce9a3a27 matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xf23b5d44 matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0xc847bd16 mb862xxfb_init_accel -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free -EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga -EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x0074818d w1_ds2760_write -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x08eac693 w1_ds2760_read -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x2559a220 w1_ds2760_store_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xee3b6448 w1_ds2760_recall_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x29630d7f w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x6b167560 w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xa0f7bc76 w1_ds2781_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xe8f78136 w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/wire 0x28e6e3e3 w1_add_master_device -EXPORT_SYMBOL drivers/w1/wire 0x8551fadf w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0x9e46357f w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0xa75499b7 w1_remove_master_device -EXPORT_SYMBOL fs/configfs/configfs 0x06d382ac configfs_unregister_group -EXPORT_SYMBOL fs/configfs/configfs 0x1e7b9a8a config_group_init -EXPORT_SYMBOL fs/configfs/configfs 0x236e42bd configfs_unregister_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0x31e63287 configfs_register_group -EXPORT_SYMBOL fs/configfs/configfs 0x416e1912 configfs_undepend_item -EXPORT_SYMBOL fs/configfs/configfs 0x428804c1 config_item_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0x4fdf250d config_item_set_name -EXPORT_SYMBOL fs/configfs/configfs 0x68e68da0 config_item_get -EXPORT_SYMBOL fs/configfs/configfs 0x84e3d51e configfs_register_default_group -EXPORT_SYMBOL fs/configfs/configfs 0x96a077b1 configfs_unregister_default_group -EXPORT_SYMBOL fs/configfs/configfs 0xb97bbf97 configfs_register_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0xd2a7f61a config_group_find_item -EXPORT_SYMBOL fs/configfs/configfs 0xda1437b2 configfs_depend_item -EXPORT_SYMBOL fs/configfs/configfs 0xe4132d8f config_group_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0xf5cdb856 config_item_put -EXPORT_SYMBOL fs/exofs/libore 0x0b51190d ore_read -EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout -EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info -EXPORT_SYMBOL fs/exofs/libore 0x6ac923c5 ore_get_io_state -EXPORT_SYMBOL fs/exofs/libore 0x6bea6016 ore_get_rw_state -EXPORT_SYMBOL fs/exofs/libore 0x6cd35c2b ore_put_io_state -EXPORT_SYMBOL fs/exofs/libore 0x857de70c ore_remove -EXPORT_SYMBOL fs/exofs/libore 0x95025b55 extract_attr_from_ios -EXPORT_SYMBOL fs/exofs/libore 0x956d81b0 ore_write -EXPORT_SYMBOL fs/exofs/libore 0x98787f01 ore_create -EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length -EXPORT_SYMBOL fs/exofs/libore 0xab766aff ore_check_io -EXPORT_SYMBOL fs/exofs/libore 0xff053dc6 ore_truncate -EXPORT_SYMBOL fs/fscache/fscache 0x034dce2b fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0x0640e5ae fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0x0856f03b __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x25631afd fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0x2a7273e4 __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0x2fd6917f fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0x3434031c __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x55110766 fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0x57630204 fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0x5ae60cc7 fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0x5b56cba2 __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0x5be596e5 __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0x606c2b15 fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0x67360f6b fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x789965bf __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x794abbe6 fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0x7d350cfb __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x7f23ba71 __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x89808b9c __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x8abf3e96 __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0x8aeef39d fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0x91e7ee8e fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0xa0bef3be __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0xa4db235a __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0xaafb67cc __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0xbd7ffbd5 __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0xc430c960 fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0xc5957a64 __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0xc7961fcd fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0xc80873a9 __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xcfada6da fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0xd07b8a2b __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0xdb9a206d __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0xdbda8b8e fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0xe253c62f fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0xe5988c29 fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0xedd42b46 __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0xef465e0b __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xfb3f5bca __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xff70e5b9 fscache_object_destroy -EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x2b4b37b6 qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xa5c625e6 qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0xb46ce50e qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xd88d2fa7 qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xf96125d8 qtree_write_dquot -EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq -EXPORT_SYMBOL lib/crc-ccitt 0x3771b461 crc_ccitt -EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table -EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table -EXPORT_SYMBOL lib/crc-itu-t 0xf5b4a948 crc_itu_t -EXPORT_SYMBOL lib/crc7 0x66213969 crc7_be -EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table -EXPORT_SYMBOL lib/crc8 0x41248eaf crc8 -EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb -EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb -EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c -EXPORT_SYMBOL lib/lru_cache 0x03f599c7 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0x4feade4b lc_create -EXPORT_SYMBOL lib/lru_cache 0x56fc3ea0 lc_put -EXPORT_SYMBOL lib/lru_cache 0x619ed575 lc_try_get -EXPORT_SYMBOL lib/lru_cache 0x84e0214b lc_committed -EXPORT_SYMBOL lib/lru_cache 0xbbe7c23c lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0xc48fa976 lc_set -EXPORT_SYMBOL lib/lru_cache 0xc6e4cd46 lc_reset -EXPORT_SYMBOL lib/lru_cache 0xcb990a55 lc_try_lock -EXPORT_SYMBOL lib/lru_cache 0xcea6747e lc_destroy -EXPORT_SYMBOL lib/lru_cache 0xd212c9f0 lc_get -EXPORT_SYMBOL lib/lru_cache 0xd34f34b6 lc_seq_dump_details -EXPORT_SYMBOL lib/lru_cache 0xe34df49e lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0xeb13128b lc_del -EXPORT_SYMBOL lib/lru_cache 0xf460a486 lc_is_used -EXPORT_SYMBOL lib/lru_cache 0xf5ea5f5c lc_index_of -EXPORT_SYMBOL lib/lru_cache 0xf6acec20 lc_find -EXPORT_SYMBOL lib/lz4/lz4_compress 0xcbc5d521 lz4_compress -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x26c3aa22 lz4hc_compress -EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul -EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp -EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv -EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page -EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi -EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul -EXPORT_SYMBOL net/6lowpan/6lowpan 0x2180a48f lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0x842ff0c5 lowpan_netdev_setup -EXPORT_SYMBOL net/6lowpan/6lowpan 0xc7e03414 lowpan_nhc_add -EXPORT_SYMBOL net/802/p8022 0x5df4a968 register_8022_client -EXPORT_SYMBOL net/802/p8022 0xd1768181 unregister_8022_client -EXPORT_SYMBOL net/802/p8023 0x0a63c24b destroy_8023_client -EXPORT_SYMBOL net/802/p8023 0xe2ea8d8e make_8023_client -EXPORT_SYMBOL net/802/psnap 0x2781acce unregister_snap_client -EXPORT_SYMBOL net/802/psnap 0x5dc3202f register_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x0babdd69 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x15066442 p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x1b7976ab p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0x22ebd670 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0x238590fc p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0x28301c52 p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x29cf76af p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x33f6f716 p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get -EXPORT_SYMBOL net/9p/9pnet 0x3c222771 p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x41418ee0 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x42e87c34 p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x43a585f0 p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0x4400dd3a p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0x4544f8d8 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x45946329 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x4fa73d68 p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x5123f203 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0x553efdd4 p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0x5fee21f7 v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0x64785d8a p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x69ae8048 p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x6b84e657 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x77af8d56 p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x7ea2ea18 p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x81916307 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x847de070 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x95718376 p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x965da098 p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0x9b3384af p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x9ce58e4f p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0xa28da03d p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0xa65d7f3e v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0xa717bd5b p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0xacd32ca7 v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0xad9be338 p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy -EXPORT_SYMBOL net/9p/9pnet 0xc65de8f2 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0xccc57180 p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0xd605f6ef p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0xe0d157f6 p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create -EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put -EXPORT_SYMBOL net/9p/9pnet 0xfc4ca735 p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check -EXPORT_SYMBOL net/9p/9pnet 0xfe3370ef p9_client_getlock_dotl -EXPORT_SYMBOL net/appletalk/appletalk 0x0c382d48 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0x3ec9f8c2 alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0x3f77d4f9 aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0x4c4e5c15 atrtr_get_dev -EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x551db13e atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0x5a817369 deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x60a866ab vcc_release_async -EXPORT_SYMBOL net/atm/atm 0x694fc81c atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0x9f6921a9 atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xb35d486c vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0xb8cc604d register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xc826d0d1 atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0xd2d3dc08 atm_charge -EXPORT_SYMBOL net/atm/atm 0xdab98539 vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0xe0499f30 atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0xf1774b53 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/atm/atm 0xf6c6fe59 atm_dev_register -EXPORT_SYMBOL net/atm/atm 0xfb92b335 atm_init_aal5 -EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0x3f6e6656 ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0x4248a1bd ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x753049f3 ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0x7ccce1ad ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0x964df54d ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0xbb11b06d ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xd49eb3ba ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0xe751e2c6 ax25_find_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0919c2b1 hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0d6fa889 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1406ae69 hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x142034c0 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0x21384900 __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x246ef8da bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x250c3e33 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2ac0adf6 hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2d0e2537 hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2e6bbe5b bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x368c5b05 bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0x36da3997 bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0x37099e7a bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3bec30a3 l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3f568000 hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x41351e61 hci_alloc_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err -EXPORT_SYMBOL net/bluetooth/bluetooth 0x50e2665e hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5448e368 bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x658e7fff hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6af6ac6b bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6ea6e06a __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7e262311 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x826006ff hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x897a538d bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c07578 hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9c2db175 bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9ff4fba6 hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa19431cb l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa434b8e1 bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa7b368d4 hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb4308e12 bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb4f68b5c hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb5a46f93 hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb65d978b hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc6966674 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd198ef59 l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd91022a5 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe71b75c6 bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe7f19447 hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe8ccb196 bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf4aca992 l2cap_is_socket -EXPORT_SYMBOL net/bridge/bridge 0xba58ff19 br_should_route_hook -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x1556f678 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xb9465ed9 ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xf6cb92ac ebt_register_table -EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative -EXPORT_SYMBOL net/caif/caif 0x318a14c0 cfcnfg_add_phy_layer -EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info -EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer -EXPORT_SYMBOL net/caif/caif 0x481f98b3 caif_enroll_dev -EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head -EXPORT_SYMBOL net/caif/caif 0x7fcc0f8a caif_disconnect_client -EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head -EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio -EXPORT_SYMBOL net/caif/caif 0xa05bc22a get_cfcnfg -EXPORT_SYMBOL net/caif/caif 0xa0ecc593 caif_connect_client -EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/can/can 0x08ffadf8 can_rx_unregister -EXPORT_SYMBOL net/can/can 0x39589901 can_proto_unregister -EXPORT_SYMBOL net/can/can 0x5cb44273 can_proto_register -EXPORT_SYMBOL net/can/can 0x93a316d8 can_ioctl -EXPORT_SYMBOL net/can/can 0xab4b4e58 can_send -EXPORT_SYMBOL net/can/can 0xc1789339 can_rx_register -EXPORT_SYMBOL net/ceph/libceph 0x00996d0e ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x026639b8 ceph_osdc_put_event -EXPORT_SYMBOL net/ceph/libceph 0x07093278 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init -EXPORT_SYMBOL net/ceph/libceph 0x0a38fd56 ceph_monc_request_next_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x14bedb66 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x1967417f osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x198f607c ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0x1c160615 osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x1d001c57 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x1f01f6ab osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup -EXPORT_SYMBOL net/ceph/libceph 0x230bf7d9 ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x28dff8f1 ceph_osdc_create_event -EXPORT_SYMBOL net/ceph/libceph 0x2c7dbb47 ceph_osdc_build_request -EXPORT_SYMBOL net/ceph/libceph 0x2f8d3259 ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x3244042b ceph_osdc_readpages -EXPORT_SYMBOL net/ceph/libceph 0x325e66ee ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0x34d0b7b9 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0x38cbc6d6 ceph_osdc_cancel_event -EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x3ef07833 ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x40c35c17 ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options -EXPORT_SYMBOL net/ceph/libceph 0x42855ed3 ceph_client_id -EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part -EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0x45d1ffc5 ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0x45d94e57 ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x463a9e37 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x47a9920e ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode -EXPORT_SYMBOL net/ceph/libceph 0x54bc85fe ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x57f645e3 osd_req_op_cls_response_data -EXPORT_SYMBOL net/ceph/libceph 0x5925a429 ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x5d919bc8 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x66e57368 ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x6df1779c ceph_oloc_oid_to_pg -EXPORT_SYMBOL net/ceph/libceph 0x73a26928 ceph_auth_update_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x79253251 ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x7a6fc826 ceph_messenger_fini -EXPORT_SYMBOL net/ceph/libceph 0x7ce80f93 ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0x7d930d0d ceph_messenger_init -EXPORT_SYMBOL net/ceph/libceph 0x7ef25919 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x8326bf30 ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0x89391646 ceph_auth_create_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x8b145d7a ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x90e4a0d1 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x90ed043a ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0x923cd69a ceph_calc_pg_primary -EXPORT_SYMBOL net/ceph/libceph 0x92a54be3 ceph_monc_got_mdsmap -EXPORT_SYMBOL net/ceph/libceph 0x930ef693 ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0x93415311 ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x97e5be1d ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup -EXPORT_SYMBOL net/ceph/libceph 0x9bef35d7 osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x9c6c557f ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0x9d2b8cfc ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0x9e035cdb ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xa0b6fb83 ceph_get_direct_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xa1ebde8f ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xa569d45d osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0xa75ca1d1 ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0xa9fd2125 osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xaede66d3 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb19dc152 ceph_pagelist_reserve -EXPORT_SYMBOL net/ceph/libceph 0xb1d0a5d8 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0xb3f9375d ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb57c6b53 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit -EXPORT_SYMBOL net/ceph/libceph 0xb6935782 ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0xb6955591 osd_req_op_watch_init -EXPORT_SYMBOL net/ceph/libceph 0xb81be268 ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xb8f983a4 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0xb9265898 __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0xbc7cc6d8 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0xbe98dca4 ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup -EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0xc78c9242 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0xc8a9a128 osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init -EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips -EXPORT_SYMBOL net/ceph/libceph 0xccb1d1f3 osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0xce320578 ceph_osdc_writepages -EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode -EXPORT_SYMBOL net/ceph/libceph 0xd5383217 ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xd5c0e867 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0xd76cc076 ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0xd813625e ceph_pagelist_append -EXPORT_SYMBOL net/ceph/libceph 0xdae503e3 osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xdd7d7184 ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xde0eb6ba ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0xde3a2268 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0xe55d9bcd ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0xe84f768e osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xeb84ca0f ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xebe15895 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0xf0e397be ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0xf2124205 ceph_monc_do_get_version -EXPORT_SYMBOL net/ceph/libceph 0xf56e837b ceph_osdc_set_request_linger -EXPORT_SYMBOL net/ceph/libceph 0xf7324212 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x92fb2054 dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xb3551205 dccp_req_err -EXPORT_SYMBOL net/ieee802154/ieee802154 0x0149d12b wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0x089d1356 wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0x41847741 wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0x94dd1b99 wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0xadbc48dd wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0xde67c3de wpan_phy_free -EXPORT_SYMBOL net/ipv4/fou 0x0c07b4a3 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x4c13e7b5 gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0xc982cb25 fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0xed741d6f gue_encap_hlen -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x08ea7400 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x137227e4 ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x4b22e38a ip_tunnel_dst_reset_all -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xc8f030d0 ip_tunnel_encap -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xc9dae8ff ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xfff27852 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x2bb2dfe3 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xb8f69259 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xf0bdfc43 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x0ce1309b ipt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xa9adf5b3 ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xcca6c8ab ipt_register_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x2ad8a866 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0xcddead73 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x28be3588 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x49899b72 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd0f0b3df ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xea964452 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xfc5320a7 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x00040751 ip6t_unregister_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x505fd507 ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x57d8360d ip6t_register_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x207a2eab xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0x51d9ff89 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x49caf8c7 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x9f45ba13 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x1f93817d ircomm_control_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x2381d24d ircomm_flow_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x2e56eb1f ircomm_connect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x3b4013b7 ircomm_close -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x476aa68f ircomm_open -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x6444e1f1 ircomm_connect_response -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x942b2bba ircomm_disconnect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xa9e7a8bc ircomm_data_request -EXPORT_SYMBOL net/irda/irda 0x05682865 irttp_connect_request -EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value -EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service -EXPORT_SYMBOL net/irda/irda 0x092e1997 irlmp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0x17a491c5 irias_add_octseq_attrib -EXPORT_SYMBOL net/irda/irda 0x21645a64 irlap_open -EXPORT_SYMBOL net/irda/irda 0x216b225c irlap_close -EXPORT_SYMBOL net/irda/irda 0x29b53f74 async_unwrap_char -EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda -EXPORT_SYMBOL net/irda/irda 0x36056c41 irlmp_data_request -EXPORT_SYMBOL net/irda/irda 0x365df05d iriap_getvaluebyclass_request -EXPORT_SYMBOL net/irda/irda 0x36cad55b hashbin_remove_this -EXPORT_SYMBOL net/irda/irda 0x37791344 hashbin_get_first -EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value -EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service -EXPORT_SYMBOL net/irda/irda 0x5c981766 irttp_close_tsap -EXPORT_SYMBOL net/irda/irda 0x628674a7 irlmp_open_lsap -EXPORT_SYMBOL net/irda/irda 0x6492e28c hashbin_get_next -EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies -EXPORT_SYMBOL net/irda/irda 0x6b76aa70 hashbin_delete -EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client -EXPORT_SYMBOL net/irda/irda 0x731cec71 hashbin_insert -EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client -EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client -EXPORT_SYMBOL net/irda/irda 0x7e67ca6e irias_new_object -EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert -EXPORT_SYMBOL net/irda/irda 0x837cf0f8 alloc_irdadev -EXPORT_SYMBOL net/irda/irda 0x8982c8d9 irias_delete_object -EXPORT_SYMBOL net/irda/irda 0x8a44dd5e hashbin_new -EXPORT_SYMBOL net/irda/irda 0x90ddb6bd hashbin_remove -EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack -EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all -EXPORT_SYMBOL net/irda/irda 0x9aab014d irttp_connect_response -EXPORT_SYMBOL net/irda/irda 0x9eae562d iriap_close -EXPORT_SYMBOL net/irda/irda 0x9ef46d1b irttp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0x9ffda243 irias_add_string_attrib -EXPORT_SYMBOL net/irda/irda 0xac8bdb0d irttp_dup -EXPORT_SYMBOL net/irda/irda 0xac9992ad irlmp_connect_request -EXPORT_SYMBOL net/irda/irda 0xb3c13d7f irias_add_integer_attrib -EXPORT_SYMBOL net/irda/irda 0xb4fa9cca irlmp_close_lsap -EXPORT_SYMBOL net/irda/irda 0xb563571b irttp_udata_request -EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value -EXPORT_SYMBOL net/irda/irda 0xba84dc43 iriap_open -EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute -EXPORT_SYMBOL net/irda/irda 0xbdea6d30 irlmp_connect_response -EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request -EXPORT_SYMBOL net/irda/irda 0xbeeb6d99 irttp_data_request -EXPORT_SYMBOL net/irda/irda 0xbf7dd554 hashbin_find -EXPORT_SYMBOL net/irda/irda 0xbfa7c08d hashbin_lock_find -EXPORT_SYMBOL net/irda/irda 0xc477368d irias_find_object -EXPORT_SYMBOL net/irda/irda 0xcba53881 irttp_open_tsap -EXPORT_SYMBOL net/irda/irda 0xd6805641 irda_notify_init -EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint -EXPORT_SYMBOL net/irda/irda 0xe2c9b612 irttp_flow_request -EXPORT_SYMBOL net/irda/irda 0xea6a6187 async_wrap_skb -EXPORT_SYMBOL net/irda/irda 0xec32d303 irda_device_set_media_busy -EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries -EXPORT_SYMBOL net/irda/irda 0xf199cba4 irias_insert_object -EXPORT_SYMBOL net/l2tp/l2tp_core 0xf2b46e01 l2tp_recv_common -EXPORT_SYMBOL net/l2tp/l2tp_ip 0x594f2e39 l2tp_ioctl -EXPORT_SYMBOL net/lapb/lapb 0x0de7c73f lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0x107f791f lapb_register -EXPORT_SYMBOL net/lapb/lapb 0x3151a84f lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0x54d77540 lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0x5f604b9b lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0x69c5d57e lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0x823c16cf lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0xa024295c lapb_getparms -EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x39c9f85a llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x59c05382 llc_sap_close -EXPORT_SYMBOL net/llc/llc 0x84585e4b llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0x9abb58aa llc_sap_open -EXPORT_SYMBOL net/llc/llc 0xbe8562ec llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0xd4c3a371 llc_sap_find -EXPORT_SYMBOL net/llc/llc 0xe5a6d942 llc_add_pack -EXPORT_SYMBOL net/mac80211/mac80211 0x02166686 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x02b3ebb3 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0x04aef6e2 ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x04f9e417 wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x07c552e4 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x0c764e45 ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x0e31fa8d ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x12417df4 ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0x136b9bae ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0x1660adcd ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x202f8b5a ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x23bd439b ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0x27642757 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x277fc31f ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x2ad99f69 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x2cc74be2 ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x2cebe645 ieee80211_stop_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x2ec47f76 ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x35a96d26 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x3d1c0850 ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0x3e656567 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x3ec80e17 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0x3f8bd478 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x4ae70a15 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x4d94dd4b ieee80211_tx_status_noskb -EXPORT_SYMBOL net/mac80211/mac80211 0x4db871ae ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x4e4de5b3 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x4eae6f10 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x50f4a64d ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x56cf116e ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x5b009184 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x5fa9a0c8 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x63144283 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x65dcc526 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0x677022f9 ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x69de096c ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x6ec08894 ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x70684944 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x720dec8e ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x72a052e7 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x747558b5 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0x749f5316 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x7565c69f ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0x76b9ef28 ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x779689e4 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x7c19bfb8 ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x7d67db31 ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0x82ff1de1 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0x83508651 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x84b0bf4f ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x85f06bad ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x874807ae ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x8e8bed03 __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x90787f76 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x9083f122 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x93325c93 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x963df417 rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x9d771537 ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xa60ba525 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xaf71c0c2 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0xb1aaef91 ieee80211_get_key_tx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0xb3554940 ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0xb379193a ieee80211_csa_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0xb421cd73 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xb6eda79e ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xb956a146 rate_control_send_low -EXPORT_SYMBOL net/mac80211/mac80211 0xbf5cd48d ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0xc3505e24 ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0xc3be9035 ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xc5369303 ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xc66ea372 ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0xc71f4244 ieee80211_start_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0xca6ecda8 ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0xcbce47f7 ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0xd8d6e6d3 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0xe3552534 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0xe9cee8e7 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xf0825c54 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xf78a32a9 ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0xf7f666d7 ieee80211_csa_update_counter -EXPORT_SYMBOL net/mac80211/mac80211 0xfa5a5aa1 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0xfb0de1b9 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac802154/mac802154 0x26f8040e ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x289468e8 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0x40f0e0f2 ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x4a4f9b1d ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x65632051 ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x96dd8515 ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0xa5cbd1ef ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xc33bd3d7 ieee802154_alloc_hw -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2e787d38 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3904576f unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4d2e248b register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x61417b61 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6d641219 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7ccfb863 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x93ad8eda ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x95060baf unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa49678c5 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbba9d72e ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd8f272fa register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe3cdcbab ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xeff87a7c ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf6f6376c ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x13f326f8 nf_conntrack_untracked -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x86a726fc __nf_ct_ext_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xe439ea09 __nf_ct_ext_add_length -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x5e8637d6 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x805f55ee nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0x86f21261 nf_nat_used_tuple -EXPORT_SYMBOL net/netfilter/nf_nat 0xa0c202fc nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0xc89ced9c nf_xfrm_me_harder -EXPORT_SYMBOL net/netfilter/nf_nat 0xd4517b47 __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x83852b3b xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0x9b554e1b xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xad81ac6a xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0xb0fdb22f xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0xb651680b xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xc14dc619 xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xc7845be6 xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xd434f44a xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xe1ee3780 xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0xf4017b59 xt_find_target -EXPORT_SYMBOL net/nfc/hci/hci 0x0352c64b nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0x0607acae nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0x08bf8b73 nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0x12903521 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0x129c3392 nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0x2dc73851 nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0x33b53c8b nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x3f4e1928 nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x5ae6d9d9 nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x5ec8bb19 nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0x883f0581 nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0x9f37b365 nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0x9ff7efa5 nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0xa2d53c4c nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0xb458bc0d nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xb4fd80ff nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xc55b8df1 nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0xc83f882e nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xd3976040 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0xec26cffb nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xfe441454 nfc_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x005a5e92 nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0x0125f503 nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x10d38c93 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0x345d21ac nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0x371754cc nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x3902dc0a nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x4448ea14 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0x446cc10a nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x49c3eda3 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x5a6b290a nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x606af96a nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0x67ca87a3 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0x70d50ff9 nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0x71968f5c nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0x7330a00f nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0x77124cd6 nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x876d0f6b nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x88413535 nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0x8cd14662 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0xb9089f51 nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xc5d0e869 nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xcc76d102 nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0xd26f9645 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0xd85bbb73 nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0xdad5c878 nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xe29065f5 nci_get_conn_info_by_id -EXPORT_SYMBOL net/nfc/nci/nci 0xe7da96d7 nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xf037591d nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nfc 0x0c7ba19b nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x0f6ca69e nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0x149c7f61 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0x17b53d4d nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x1dcc0f07 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0x3dca9faf nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0x3e33a7de nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x443e2ac7 nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0x5078d8b9 nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0x598d8de1 nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0x5ccf1a09 nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0x67ebd77c nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0x71f7ccfc nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0x7e82f497 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x83677568 nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0x84c505af nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0x8c392820 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0x90618f30 nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0x934498d9 nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xa2c91063 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0xb0598ed3 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0xe57da9aa nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0xf103ccd0 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0xf1f6cb7f nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc_digital 0x263c19d6 nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x8ba39d26 nfc_digital_free_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xe69f2edf nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xf774dd53 nfc_digital_allocate_device -EXPORT_SYMBOL net/phonet/phonet 0x4c05d722 pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0x5ce80187 pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0x64cb656d phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0x74c71bb8 pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0x7e095831 phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0xbfaba39c pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0xc306082a phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0xf57b9f48 phonet_proto_register -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x3d692ddc rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x47edc4f0 rxrpc_kernel_free_skb -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x47feff50 rxrpc_kernel_data_delivered -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x53783504 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x6071a082 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x68ae359d rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x720243c6 rxrpc_kernel_accept_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x86b13e25 rxrpc_kernel_get_abort_code -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x9c60f545 rxrpc_kernel_reject_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xa4681944 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xaa2a96c2 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb03ab984 rxrpc_kernel_get_error_number -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xbea3849a rxrpc_kernel_intercept_rx_messages -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xbf7189a1 rxrpc_kernel_is_data_last -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc834ef09 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/sctp/sctp 0x4b68989b sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xa5910da9 gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xd4ea6824 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xe41cacca gss_mech_get -EXPORT_SYMBOL net/sunrpc/sunrpc 0x2c81a151 xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0x328d0ef9 svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0xdd5baaec xdr_restrict_buflen -EXPORT_SYMBOL net/wimax/wimax 0xa76cfb95 wimax_reset -EXPORT_SYMBOL net/wimax/wimax 0xe2360e9d wimax_rfkill -EXPORT_SYMBOL net/wireless/cfg80211 0x01ca903d wiphy_rfkill_stop_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x0485304f cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0x06b3726a cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0x07aa5605 cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x08d21c94 wiphy_rfkill_set_hw_state -EXPORT_SYMBOL net/wireless/cfg80211 0x09294c7b cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x0c3b2f8c cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0x119c1b4f cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x11eff6a6 ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x152ae801 cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x18b13597 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0x19fc60cb cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x1dbf2703 cfg80211_connect_result -EXPORT_SYMBOL net/wireless/cfg80211 0x255d3a65 cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x2765ec5d cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x294bd600 cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x2b752756 regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0x2d68005d ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0x309e7500 cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0x33669567 cfg80211_report_obss_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x382d0f33 cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x3ac3a234 cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x4174776b freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x4ae059c4 wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0x4cf5968d cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0x4d4705a3 __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x52688021 cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x5a851cde cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x5d6db6d8 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x677a1a24 wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0x68923af7 cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0x68ae46a0 cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6c919114 cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x6ce5eb55 cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0x6d03bf5c cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0x6fc86e45 cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x77d94ebe cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0x7a17d3f9 cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x7c6fed52 cfg80211_roamed_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x805ed29f cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x8a11aec8 cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x8a9ef38d cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x8b3383ab cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0x8b4efa45 cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0x8d65f747 cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0x8dcc796a __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x946e901e wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0x94fa975c wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0x95b933ab cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0x966ff54d ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x975d191a cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x9822ccb0 cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x983f2b94 cfg80211_sched_scan_stopped_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x993a1435 ieee80211_data_to_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0x9959f153 cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x9e5047cf cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0xa10e7fc7 cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xa1425906 ieee80211_channel_to_frequency -EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xab5c0951 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0xb0f4d9dc cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0xb106d090 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0xb6a9d1fd cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0xb9a5e069 regulatory_set_wiphy_regd_sync_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0xbc3a8219 __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xbd074721 cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xbdc2f898 cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xbee57aa6 cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xbf223327 cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0xbfcab800 __ieee80211_get_channel -EXPORT_SYMBOL net/wireless/cfg80211 0xc4455846 cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0xc6f8c1b3 wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0xc88f8514 regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xcb522323 cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0xd0a3b3ad cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xd47dd054 cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0xd8f832f5 wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0xda39757c cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0xdb883401 cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdc63b4ec cfg80211_rx_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xea8edae0 cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0xeb03e3e1 cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0xeb6d7c6c ieee80211_ie_split -EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xf48d7398 cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xf787d9ce ieee80211_data_from_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0xfa969d54 cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie -EXPORT_SYMBOL net/wireless/lib80211 0x670481e1 lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x6a32b9e4 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0x6f26c169 lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0x9fe9d575 lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0xc31461ad lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xf7232b9a lib80211_unregister_crypto_ops -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x6a557e7b snd_mixer_oss_ioctl_card -EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x64b0bfba snd_seq_kernel_client_write_poll -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x88ba1ec1 snd_seq_event_port_attach -EXPORT_SYMBOL sound/core/seq/snd-seq 0xaafda01a snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0xf128b05d snd_seq_kernel_client_enqueue_blocking -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x06bb9754 snd_seq_device_new -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x127b30fb snd_midi_event_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x1cdc0812 snd_midi_event_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x59eb74ae snd_midi_event_encode_byte -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x8102ed2f snd_midi_event_reset_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xb11ba32d snd_midi_event_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xb2c7f684 snd_midi_event_reset_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xea0e5748 snd_midi_event_free -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xed42580b snd_midi_event_no_status -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xfcac0266 snd_virmidi_new -EXPORT_SYMBOL sound/core/snd-hwdep 0x9958a755 snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x10f38e91 snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0x162a4640 snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0x18afe15d snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1ad96272 snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x211f1493 snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0x32e81e9c snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x38be7cf6 snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4e2da09c snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4fcf83d7 snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x5807db35 snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x58d2d7d3 __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0xb3a54df1 snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0xb754d7a0 snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xbd21062b snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0xc8a49cac snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0xcd5da986 snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xcdfe1f8f snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0xdc8b7d15 snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xdf8bddb8 __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xd8feacae snd_mpu401_uart_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1e2d2918 snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x29bae125 snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x684fdf8d snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x82a2cdd9 snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc63d55fd snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xcbe4df3e snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf6d2a13a snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xfb85e051 snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xfd630788 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x0f281723 snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x556614f5 snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5ab58b69 snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5c664e19 snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x60d8818b snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x662b664a snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6e34bb77 snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6e7064be snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x804a69bf snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x01aad273 amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x04bb1aff amdtp_stream_pcm_pointer -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x09996676 fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0d4879a3 snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0f30e678 iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x154ac726 amdtp_stream_stop -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1be03375 cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2e77ed69 cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2eccec33 fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x39d444a0 cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4a56c71b cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5cb67663 amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5dcad5da cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x61242086 amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x614dd25a amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6c70464c avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8204c3f4 fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8a630f67 fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9781574d fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9fc8eefc amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa37c1a2d amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb2d09aa8 fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb73ef9a1 iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbac71c80 avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbf01d5a6 amdtp_stream_start -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc82ceaa0 amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcb30c997 amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcd36ec4d avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd416fb54 fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd4819c76 snd_fw_async_midi_port_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xebed8533 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf20fa593 snd_fw_async_midi_port_destroy -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x8826b289 snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x8e33a867 snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x09975729 snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x4510f48d snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x50046376 snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x8525ab9f snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xbfe1eb76 snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xc4115056 snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xcab3419c snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xcfb19476 snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x77197c0d snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x8c3fb2cb snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xad9cde78 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xf75e93dd snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x5880a883 snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xabe58d76 snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x03c7e372 snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x2f1f33a8 snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x39b09acc snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x7bf61d41 snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xbc2efea6 snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xc6181979 snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-i2c 0x3fd2c364 snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0x49e4e0d7 snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x4d329560 snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0x5b1bdc68 snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0xb2097e75 snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xbc36ea7f snd_i2c_readbytes -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0175ed12 snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x04b50113 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x32f96fe8 snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x407c8279 snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x45a61381 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4bfe6811 snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4ef2d78e snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x57c75d28 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5e2c131d snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x64b70512 snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6ff36813 snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa64660e6 snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbde006f1 snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc20c107f snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd96e5dd3 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdde7ab92 snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf4e42669 snd_ac97_mixer -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x0f9bb090 snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4b783ea1 snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4e396540 snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x6a94d617 snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x8637543c snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x9fe654c3 snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xbaf0d4d6 snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xdcb8cf60 snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xfb3081b1 snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xdf73666e snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xf267f3d0 snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xf64cf174 snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x05b320a0 oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x06ee7cab oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x30fe71e6 oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x323a8e93 oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x365631d6 oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4b15f41a oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4cb13dac oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5d6cccaf oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x67376b29 oxygen_pci_remove -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7bfc2233 oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x87d2eb9d oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x96cabb09 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9a52dd7e oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9acfd4e6 oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa83854e8 oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa96496f2 oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xba5329f7 oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcd47e41e oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd1935dc6 oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfda7a8ea oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xffd344df oxygen_write_spi -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x2f988599 snd_trident_stop_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x7522bc07 snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xb43c36ec snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xc990a091 snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xd0e6578d snd_trident_write_voice_regs -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x2af6505e tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xfcd43357 tlv320aic23_probe -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x303c6e44 snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x45d1cf73 snd_emux_free -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x9557e83a snd_emux_new -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xb38e116b snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xc2d10fba snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xc7461b54 snd_emux_register -EXPORT_SYMBOL sound/synth/snd-util-mem 0x1266ebc6 snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0x16cd90ce __snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0x1763d5d9 snd_util_memhdr_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x28d6ba3f snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x726d807f snd_util_memhdr_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0x78bc00f9 __snd_util_memblk_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0xcf027a82 snd_util_mem_avail -EXPORT_SYMBOL sound/synth/snd-util-mem 0xe4db7a5a __snd_util_mem_free -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xc7ce0cc3 snd_usbmidi_create -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect -EXPORT_SYMBOL vmlinux 0x00012f37 nd_region_acquire_lane -EXPORT_SYMBOL vmlinux 0x0002ff76 blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0x0012c2be map_destroy -EXPORT_SYMBOL vmlinux 0x00159b5a jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0x004a4257 fbcon_set_bitops -EXPORT_SYMBOL vmlinux 0x006c4aad pci_set_master -EXPORT_SYMBOL vmlinux 0x007f6840 down_write -EXPORT_SYMBOL vmlinux 0x00804bc3 do_SAK -EXPORT_SYMBOL vmlinux 0x00999728 scsi_execute -EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00f28a29 phy_connect_direct -EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve -EXPORT_SYMBOL vmlinux 0x01104ae8 devm_request_resource -EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr -EXPORT_SYMBOL vmlinux 0x011a9e53 elf_hwcap2 -EXPORT_SYMBOL vmlinux 0x013fb4d2 of_get_pci_address -EXPORT_SYMBOL vmlinux 0x0142c357 dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x014e22dd sk_stop_timer -EXPORT_SYMBOL vmlinux 0x016199e8 netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer -EXPORT_SYMBOL vmlinux 0x0186e2de smp_call_function_many -EXPORT_SYMBOL vmlinux 0x01a3d310 omap_set_dma_channel_mode -EXPORT_SYMBOL vmlinux 0x01b7fd59 dispc_read_irqstatus -EXPORT_SYMBOL vmlinux 0x01c2ee6b zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x01c84c46 mmc_get_card -EXPORT_SYMBOL vmlinux 0x01ea132e dispc_runtime_put -EXPORT_SYMBOL vmlinux 0x01eb204d wait_for_key_construction -EXPORT_SYMBOL vmlinux 0x01f65ebb prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0x01fadb82 ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0x01fd6d8e devm_kvasprintf -EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check -EXPORT_SYMBOL vmlinux 0x02196324 __aeabi_idiv -EXPORT_SYMBOL vmlinux 0x02243c43 mfd_cell_disable -EXPORT_SYMBOL vmlinux 0x02322fbc mmc_can_sanitize -EXPORT_SYMBOL vmlinux 0x0237a78f bitmap_end_sync -EXPORT_SYMBOL vmlinux 0x0252d9fd rwsem_down_read_failed -EXPORT_SYMBOL vmlinux 0x02573b36 omap_disable_dma_irq -EXPORT_SYMBOL vmlinux 0x025a324c ppp_register_compressor -EXPORT_SYMBOL vmlinux 0x0260b569 security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x027df9a9 file_remove_privs -EXPORT_SYMBOL vmlinux 0x027eb164 scsi_report_opcode -EXPORT_SYMBOL vmlinux 0x028195ad snd_pcm_lib_free_pages -EXPORT_SYMBOL vmlinux 0x0283dfe3 _snd_pcm_hw_params_any -EXPORT_SYMBOL vmlinux 0x02846e41 flush_dcache_page -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0x02a41254 pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table -EXPORT_SYMBOL vmlinux 0x02cf5968 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0x02d6d984 param_get_int -EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string -EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact -EXPORT_SYMBOL vmlinux 0x02ef742b percpu_counter_set -EXPORT_SYMBOL vmlinux 0x02fa4230 do_splice_from -EXPORT_SYMBOL vmlinux 0x03005606 omapdss_get_version -EXPORT_SYMBOL vmlinux 0x03026722 mempool_alloc -EXPORT_SYMBOL vmlinux 0x03076614 nand_bch_init -EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x0334fd49 iterate_fd -EXPORT_SYMBOL vmlinux 0x0353cf1c scsi_cmd_blk_ioctl -EXPORT_SYMBOL vmlinux 0x0358d1b0 bitmap_unplug -EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x0378aea4 mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x037b6662 of_get_ddr_timings -EXPORT_SYMBOL vmlinux 0x03ba1968 snd_timer_resolution -EXPORT_SYMBOL vmlinux 0x03ba39b0 v7_flush_user_cache_all -EXPORT_SYMBOL vmlinux 0x03cd8325 bio_integrity_enabled -EXPORT_SYMBOL vmlinux 0x03db9f1d input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x03ee7ed2 omapdss_register_display -EXPORT_SYMBOL vmlinux 0x03fb5723 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x04093dd5 phy_stop_interrupts -EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x045db442 jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0x0467e44d sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x0472be67 tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0x047bd75f free_page_put_link -EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display -EXPORT_SYMBOL vmlinux 0x04ab9a1e would_dump -EXPORT_SYMBOL vmlinux 0x04afd4fb release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x04cb4b69 devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x04cda566 snd_interval_refine -EXPORT_SYMBOL vmlinux 0x04d485d8 mb_cache_entry_release -EXPORT_SYMBOL vmlinux 0x04e07a27 snd_timer_global_free -EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol -EXPORT_SYMBOL vmlinux 0x05004223 unload_nls -EXPORT_SYMBOL vmlinux 0x050edbad audit_log_start -EXPORT_SYMBOL vmlinux 0x05176253 led_set_brightness -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x053123e5 textsearch_unregister -EXPORT_SYMBOL vmlinux 0x054dc5bd twl6040_reg_write -EXPORT_SYMBOL vmlinux 0x05558669 ata_link_printk -EXPORT_SYMBOL vmlinux 0x0555eef4 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0x05610051 xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0x05744482 __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x05796e48 netdev_boot_setup_check -EXPORT_SYMBOL vmlinux 0x05aaec0f netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0x05b7bc21 brioctl_set -EXPORT_SYMBOL vmlinux 0x05c40ff5 console_start -EXPORT_SYMBOL vmlinux 0x05ca6617 qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0x05db4158 lease_modify -EXPORT_SYMBOL vmlinux 0x05e0e1d8 snd_pcm_hw_param_first -EXPORT_SYMBOL vmlinux 0x05e13e02 __ps2_command -EXPORT_SYMBOL vmlinux 0x05efe538 blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x060291f1 blk_stop_queue -EXPORT_SYMBOL vmlinux 0x060843ce dst_init -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x0624173c dst_alloc -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x064daa4e jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x065c7184 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x06607f92 dss_feat_get_supported_outputs -EXPORT_SYMBOL vmlinux 0x066e5505 dev_uc_sync -EXPORT_SYMBOL vmlinux 0x0674cf06 scsi_cmd_ioctl -EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx -EXPORT_SYMBOL vmlinux 0x068b436c seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0x06c31627 dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x06cc803e skb_copy_expand -EXPORT_SYMBOL vmlinux 0x06e60af3 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0x06e6e679 dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0x06e8c1f8 fd_install -EXPORT_SYMBOL vmlinux 0x06fcb433 i2c_put_adapter -EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn -EXPORT_SYMBOL vmlinux 0x07032cfd ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x072fd00c bio_map_kern -EXPORT_SYMBOL vmlinux 0x073d3380 i2c_verify_client -EXPORT_SYMBOL vmlinux 0x07916cee snd_dma_alloc_pages -EXPORT_SYMBOL vmlinux 0x0796d223 generic_write_checks -EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free -EXPORT_SYMBOL vmlinux 0x07a5f810 vc_cons -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07bc95d9 tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x07c1c867 tc6393xb_lcd_set_power -EXPORT_SYMBOL vmlinux 0x07c4b49d vme_slot_num -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07cf9099 wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0x08123b7d kernel_listen -EXPORT_SYMBOL vmlinux 0x08162d64 omapdss_default_get_timings -EXPORT_SYMBOL vmlinux 0x081b8451 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x081f3afb complete_all -EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x083b1b79 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x083b621a inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x0874c821 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0x087b9b7c tcp_parse_options -EXPORT_SYMBOL vmlinux 0x08a77deb input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0x08bf32d2 devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0x08cc8425 pci_iomap -EXPORT_SYMBOL vmlinux 0x08d7122f tcp_disconnect -EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0x09055969 sock_wmalloc -EXPORT_SYMBOL vmlinux 0x090c0317 genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x0939797e unlock_new_inode -EXPORT_SYMBOL vmlinux 0x09547204 dcache_dir_open -EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key -EXPORT_SYMBOL vmlinux 0x096a1917 eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x097ec1ff _raw_write_lock_irqsave -EXPORT_SYMBOL vmlinux 0x0985635b qdisc_destroy -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x098fe6ca lro_receive_skb -EXPORT_SYMBOL vmlinux 0x0990607b freezing_slow_path -EXPORT_SYMBOL vmlinux 0x0991a59e of_match_node -EXPORT_SYMBOL vmlinux 0x099925bb shdma_reset -EXPORT_SYMBOL vmlinux 0x099ee4d1 seq_puts -EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x09c7ac64 blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0x09cf1b46 proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x09d40401 blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09db059b fddi_change_mtu -EXPORT_SYMBOL vmlinux 0x09e420b4 udp6_csum_init -EXPORT_SYMBOL vmlinux 0x09e51c44 dquot_commit -EXPORT_SYMBOL vmlinux 0x09ed3ade input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x09edb549 sock_wfree -EXPORT_SYMBOL vmlinux 0x0a0786de udplite_table -EXPORT_SYMBOL vmlinux 0x0a0dd313 tty_set_operations -EXPORT_SYMBOL vmlinux 0x0a169eb2 of_find_backlight_by_node -EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class -EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr -EXPORT_SYMBOL vmlinux 0x0a373226 crc32_le_shift -EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell -EXPORT_SYMBOL vmlinux 0x0a5d9a0c mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0x0a6b3f09 __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0x0a7dbe3e del_gendisk -EXPORT_SYMBOL vmlinux 0x0a8ef5ae netdev_printk -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0ab89556 generic_delete_inode -EXPORT_SYMBOL vmlinux 0x0ab92ead padata_set_cpumasks -EXPORT_SYMBOL vmlinux 0x0ac2cea9 mmc_can_erase -EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0x0b118913 find_inode_nowait -EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b24f1e2 tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0x0b25dd05 try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x0b3bebce devm_memunmap -EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init -EXPORT_SYMBOL vmlinux 0x0b4ca21f i2c_clients_command -EXPORT_SYMBOL vmlinux 0x0b5379bc mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister -EXPORT_SYMBOL vmlinux 0x0b7198d8 handle_edge_irq -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0ba1d36a scsi_host_get -EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active -EXPORT_SYMBOL vmlinux 0x0bbf51f1 init_task -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bd75794 dss_mgr_unregister_framedone_handler -EXPORT_SYMBOL vmlinux 0x0be2e762 generic_make_request -EXPORT_SYMBOL vmlinux 0x0c133f84 inet6_protos -EXPORT_SYMBOL vmlinux 0x0c2b059e snd_pcm_lib_read -EXPORT_SYMBOL vmlinux 0x0c309d6c tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0x0c3bdbb4 pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat -EXPORT_SYMBOL vmlinux 0x0c549551 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0x0c56bda4 snd_power_wait -EXPORT_SYMBOL vmlinux 0x0c56cfa8 snd_card_file_add -EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features -EXPORT_SYMBOL vmlinux 0x0c684534 clkdev_add -EXPORT_SYMBOL vmlinux 0x0c710689 bio_integrity_endio -EXPORT_SYMBOL vmlinux 0x0c9f9cff mem_cgroup_end_page_stat -EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x0ca1ec04 nvm_erase_ppa -EXPORT_SYMBOL vmlinux 0x0ca54fee _test_and_set_bit -EXPORT_SYMBOL vmlinux 0x0ca63941 get_cached_acl -EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0x0cb2969d pci_request_region -EXPORT_SYMBOL vmlinux 0x0cb72306 nand_scan_bbt -EXPORT_SYMBOL vmlinux 0x0cc25c11 snd_timer_new -EXPORT_SYMBOL vmlinux 0x0cc58245 pcim_iounmap -EXPORT_SYMBOL vmlinux 0x0ccb5a0e nf_ct_attach -EXPORT_SYMBOL vmlinux 0x0cd25f82 xfrm_unregister_mode -EXPORT_SYMBOL vmlinux 0x0cd8b668 bh_submit_read -EXPORT_SYMBOL vmlinux 0x0ce2b677 input_free_device -EXPORT_SYMBOL vmlinux 0x0cfefe1e percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0x0d093fff amba_device_register -EXPORT_SYMBOL vmlinux 0x0d0a263b blk_integrity_merge_bio -EXPORT_SYMBOL vmlinux 0x0d1687d3 nf_nat_decode_session_hook -EXPORT_SYMBOL vmlinux 0x0d25b260 lock_rename -EXPORT_SYMBOL vmlinux 0x0d2cdb88 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x0d36a6b3 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x0d36d91f arp_send -EXPORT_SYMBOL vmlinux 0x0d3f57a2 _find_next_bit_le -EXPORT_SYMBOL vmlinux 0x0d4d4a0f rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x0d4d7a32 _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0x0d5245e5 snd_cards -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d5e0197 security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d855a9d inet_put_port -EXPORT_SYMBOL vmlinux 0x0d93154c sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x0d9d09c4 rwsem_downgrade_wake -EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft -EXPORT_SYMBOL vmlinux 0x0db6fdfc scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex -EXPORT_SYMBOL vmlinux 0x0dd386fe blk_recount_segments -EXPORT_SYMBOL vmlinux 0x0dd7e443 blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0x0dd874f9 blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x0df26713 __module_get -EXPORT_SYMBOL vmlinux 0x0e0d22b3 _dev_info -EXPORT_SYMBOL vmlinux 0x0e2c01ab netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x0e312249 devm_clk_put -EXPORT_SYMBOL vmlinux 0x0e360803 skb_store_bits -EXPORT_SYMBOL vmlinux 0x0e519942 tty_port_close_end -EXPORT_SYMBOL vmlinux 0x0e61e40e dquot_transfer -EXPORT_SYMBOL vmlinux 0x0e640ca6 __inet_hash -EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec -EXPORT_SYMBOL vmlinux 0x0e75eb67 pci_dev_put -EXPORT_SYMBOL vmlinux 0x0e778918 __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x0e854398 zero_fill_bio -EXPORT_SYMBOL vmlinux 0x0e9ace41 security_file_permission -EXPORT_SYMBOL vmlinux 0x0e9d2b69 uart_match_port -EXPORT_SYMBOL vmlinux 0x0eacdea1 of_find_compatible_node -EXPORT_SYMBOL vmlinux 0x0eaf451e hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x0eb670ff inet_bind -EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ed593ef dquot_quota_on -EXPORT_SYMBOL vmlinux 0x0ed8184b blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy -EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups -EXPORT_SYMBOL vmlinux 0x0f149fc0 blk_finish_request -EXPORT_SYMBOL vmlinux 0x0f16d329 phy_drivers_register -EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec -EXPORT_SYMBOL vmlinux 0x0f51fb3e pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0x0f5adbbf dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x0f5e3d09 genphy_resume -EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size -EXPORT_SYMBOL vmlinux 0x0f76e2b4 kfree_put_link -EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x0f92ec14 inet_listen -EXPORT_SYMBOL vmlinux 0x0fa2a45e __memzero -EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fc97948 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0x0fcdf29e generic_update_time -EXPORT_SYMBOL vmlinux 0x0ff178f6 __aeabi_idivmod -EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress -EXPORT_SYMBOL vmlinux 0x10092d6e xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x101146ca phy_detach -EXPORT_SYMBOL vmlinux 0x103f145d xfrm4_rcv_cb -EXPORT_SYMBOL vmlinux 0x10583733 set_security_override -EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x10910791 pci_remove_bus -EXPORT_SYMBOL vmlinux 0x10a1b75c crypto_sha1_update -EXPORT_SYMBOL vmlinux 0x10bf2559 __mdiobus_register -EXPORT_SYMBOL vmlinux 0x10c63996 igrab -EXPORT_SYMBOL vmlinux 0x10d2b05f pci_match_id -EXPORT_SYMBOL vmlinux 0x10d71940 pci_enable_msix -EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu -EXPORT_SYMBOL vmlinux 0x10fffbd6 iov_iter_zero -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x111354e5 __cleancache_put_page -EXPORT_SYMBOL vmlinux 0x11145431 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0x11188556 udp6_set_csum -EXPORT_SYMBOL vmlinux 0x112ae52f devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x1130d834 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0x114ae4f3 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0x1163047e memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x117d6a2b __register_chrdev -EXPORT_SYMBOL vmlinux 0x119b50e7 elf_check_arch -EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned -EXPORT_SYMBOL vmlinux 0x11aa15fb xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0x11c39e87 call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0x11d32d30 blk_free_tags -EXPORT_SYMBOL vmlinux 0x11dc9c5d blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x11ed4801 ata_std_end_eh -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin -EXPORT_SYMBOL vmlinux 0x12005401 jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0x1203963c vfs_iter_write -EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const -EXPORT_SYMBOL vmlinux 0x1218f8a5 submit_bh -EXPORT_SYMBOL vmlinux 0x121ae907 ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0x121b4e4b memremap -EXPORT_SYMBOL vmlinux 0x122a8b9f inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0x1249a9f8 twl6040_set_pll -EXPORT_SYMBOL vmlinux 0x124f7c16 d_set_d_op -EXPORT_SYMBOL vmlinux 0x1252ea77 simple_pin_fs -EXPORT_SYMBOL vmlinux 0x126a3f74 snd_pcm_hw_rule_add -EXPORT_SYMBOL vmlinux 0x12856b9c fsnotify_destroy_mark -EXPORT_SYMBOL vmlinux 0x129619af hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0x129b5ea6 abx500_event_registers_startup_state_get -EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range -EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc -EXPORT_SYMBOL vmlinux 0x1302dc8f __devm_request_region -EXPORT_SYMBOL vmlinux 0x1319449d secure_modules -EXPORT_SYMBOL vmlinux 0x131cda94 generic_writepages -EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x13307fde vsscanf -EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc -EXPORT_SYMBOL vmlinux 0x1345f802 blk_queue_unprep_rq -EXPORT_SYMBOL vmlinux 0x13501584 sock_no_getname -EXPORT_SYMBOL vmlinux 0x1379017a follow_pfn -EXPORT_SYMBOL vmlinux 0x139b9251 __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13daf32b dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0x13f3c820 seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation -EXPORT_SYMBOL vmlinux 0x13fd2973 audit_log_task_info -EXPORT_SYMBOL vmlinux 0x1416ac21 __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0x14170db9 follow_down_one -EXPORT_SYMBOL vmlinux 0x1420b379 kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0x145024dc sk_net_capable -EXPORT_SYMBOL vmlinux 0x14574ebd dst_release -EXPORT_SYMBOL vmlinux 0x1457a797 wireless_send_event -EXPORT_SYMBOL vmlinux 0x146d6aa3 get_task_io_context -EXPORT_SYMBOL vmlinux 0x146e0f30 key_reject_and_link -EXPORT_SYMBOL vmlinux 0x1492ee1f blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0x14b4be00 skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0x14beb2ff softnet_data -EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x14d4a9c5 _change_bit -EXPORT_SYMBOL vmlinux 0x14e484cd lock_sock_fast -EXPORT_SYMBOL vmlinux 0x14fb5906 d_set_fallthru -EXPORT_SYMBOL vmlinux 0x151c663e d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x1562c3fc dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0x159e5a01 devm_iounmap -EXPORT_SYMBOL vmlinux 0x15a641fc xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0x15a767a5 md_check_recovery -EXPORT_SYMBOL vmlinux 0x15b3a08a snd_ctl_add -EXPORT_SYMBOL vmlinux 0x15b5d713 scsi_host_put -EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15d3b9b5 md_register_thread -EXPORT_SYMBOL vmlinux 0x15f66d67 path_nosuid -EXPORT_SYMBOL vmlinux 0x15fa7be9 uart_resume_port -EXPORT_SYMBOL vmlinux 0x160588b8 ppp_input_error -EXPORT_SYMBOL vmlinux 0x1608e6df omapdss_register_output -EXPORT_SYMBOL vmlinux 0x1629b591 sget_userns -EXPORT_SYMBOL vmlinux 0x162ccc0c lg_local_lock -EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null -EXPORT_SYMBOL vmlinux 0x16329554 acl_by_type -EXPORT_SYMBOL vmlinux 0x16436073 ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0x16495db5 of_get_parent -EXPORT_SYMBOL vmlinux 0x16711e38 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x16766435 vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x167ee56d __skb_get_hash_flowi4 -EXPORT_SYMBOL vmlinux 0x1683a50b radix_tree_delete -EXPORT_SYMBOL vmlinux 0x1693ba07 touch_atime -EXPORT_SYMBOL vmlinux 0x16ae1a72 snd_timer_pause -EXPORT_SYMBOL vmlinux 0x16b39ba3 netdev_warn -EXPORT_SYMBOL vmlinux 0x16d7def9 param_get_ulong -EXPORT_SYMBOL vmlinux 0x16dc9c27 __frontswap_load -EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16f977fa skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x17026949 fb_pan_display -EXPORT_SYMBOL vmlinux 0x170ba8bb bio_integrity_prep -EXPORT_SYMBOL vmlinux 0x170f2ef4 register_sound_special -EXPORT_SYMBOL vmlinux 0x1710d9e6 fsnotify_put_group -EXPORT_SYMBOL vmlinux 0x17673949 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0x176b2707 nd_iostat_end -EXPORT_SYMBOL vmlinux 0x176c0efb omap_dss_find_output -EXPORT_SYMBOL vmlinux 0x17811951 snd_timer_notify -EXPORT_SYMBOL vmlinux 0x1784f057 dispc_ovl_set_fifo_threshold -EXPORT_SYMBOL vmlinux 0x179ce145 snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL vmlinux 0x17a89fdf sock_from_file -EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator -EXPORT_SYMBOL vmlinux 0x17b69fe0 __get_page_tail -EXPORT_SYMBOL vmlinux 0x17c7f8de pci_disable_msix -EXPORT_SYMBOL vmlinux 0x17cad55c tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x17e67c4c tcf_em_unregister -EXPORT_SYMBOL vmlinux 0x180f39f4 rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0x1815a9df bioset_integrity_free -EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken -EXPORT_SYMBOL vmlinux 0x1832523f delete_from_page_cache -EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0x18460e86 have_submounts -EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask -EXPORT_SYMBOL vmlinux 0x186680b4 __skb_checksum -EXPORT_SYMBOL vmlinux 0x1872aa3f scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc -EXPORT_SYMBOL vmlinux 0x188c36d3 end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x189c5980 arm_copy_to_user -EXPORT_SYMBOL vmlinux 0x18a97711 ac97_bus_type -EXPORT_SYMBOL vmlinux 0x18ae8e17 blk_end_request -EXPORT_SYMBOL vmlinux 0x18bd76a4 _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0x18c2227f cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x18c4b432 lock_fb_info -EXPORT_SYMBOL vmlinux 0x18d8cd40 pci_bus_get -EXPORT_SYMBOL vmlinux 0x18dff843 snd_ctl_make_virtual_master -EXPORT_SYMBOL vmlinux 0x18e18777 blk_queue_start_tag -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18f25fb3 migrate_page_copy -EXPORT_SYMBOL vmlinux 0x190002ed netdev_change_features -EXPORT_SYMBOL vmlinux 0x1905178a mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0x190796b5 bdev_read_only -EXPORT_SYMBOL vmlinux 0x190b95aa neigh_app_ns -EXPORT_SYMBOL vmlinux 0x191a4179 of_clk_get -EXPORT_SYMBOL vmlinux 0x19249c6b generic_file_splice_read -EXPORT_SYMBOL vmlinux 0x1926dd6a starget_for_each_device -EXPORT_SYMBOL vmlinux 0x192a27db trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x192e549d dss_install_mgr_ops -EXPORT_SYMBOL vmlinux 0x19392f8f of_get_child_by_name -EXPORT_SYMBOL vmlinux 0x19462804 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x19610e1f cpu_all_bits -EXPORT_SYMBOL vmlinux 0x19693a11 sg_miter_stop -EXPORT_SYMBOL vmlinux 0x197dc3b3 omap_set_dma_src_burst_mode -EXPORT_SYMBOL vmlinux 0x1985b3bf vme_register_driver -EXPORT_SYMBOL vmlinux 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL vmlinux 0x198f5740 thermal_cdev_update -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19a4411a mem_cgroup_begin_page_stat -EXPORT_SYMBOL vmlinux 0x19b04b4d dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0x19b0b7e1 bio_phys_segments -EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19c1dad6 __lock_page -EXPORT_SYMBOL vmlinux 0x19d921d9 iov_iter_advance -EXPORT_SYMBOL vmlinux 0x19f5809b dm_ratelimit_state -EXPORT_SYMBOL vmlinux 0x1a023df7 skb_orphan_partial -EXPORT_SYMBOL vmlinux 0x1a30637e __sock_create -EXPORT_SYMBOL vmlinux 0x1a327641 scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x1a3ad6ec mb_cache_entry_alloc -EXPORT_SYMBOL vmlinux 0x1a3c07d5 snd_ctl_remove -EXPORT_SYMBOL vmlinux 0x1a4fc48b i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x1a5ffef3 d_alloc_name -EXPORT_SYMBOL vmlinux 0x1a65f4ad __arm_ioremap_pfn -EXPORT_SYMBOL vmlinux 0x1a6918dd generic_setxattr -EXPORT_SYMBOL vmlinux 0x1a75d7f9 vme_register_error_handler -EXPORT_SYMBOL vmlinux 0x1a8c5daa xfrm_state_insert -EXPORT_SYMBOL vmlinux 0x1a93d828 misc_deregister -EXPORT_SYMBOL vmlinux 0x1a9a2f43 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0x1a9f64bd sock_rfree -EXPORT_SYMBOL vmlinux 0x1aa37bf2 from_kuid_munged -EXPORT_SYMBOL vmlinux 0x1aa87cc8 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0x1aacf324 phy_disconnect -EXPORT_SYMBOL vmlinux 0x1ab04dc1 i2c_master_recv -EXPORT_SYMBOL vmlinux 0x1abbaea2 find_get_pages_tag -EXPORT_SYMBOL vmlinux 0x1ac6b8f0 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0x1ad1f2e7 _memcpy_fromio -EXPORT_SYMBOL vmlinux 0x1ad7f2dc netif_rx_ni -EXPORT_SYMBOL vmlinux 0x1afce38c lro_flush_all -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b17e0bb snd_pcm_hw_refine -EXPORT_SYMBOL vmlinux 0x1b1a3ff3 init_net -EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents -EXPORT_SYMBOL vmlinux 0x1b1feba5 dev_load -EXPORT_SYMBOL vmlinux 0x1b2d6d2c qcom_scm_cpu_power_down -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b63ae03 ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0x1b7fb44a dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0x1b806755 max8925_bulk_read -EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug -EXPORT_SYMBOL vmlinux 0x1b836c8f bioset_free -EXPORT_SYMBOL vmlinux 0x1b993c74 pci_map_rom -EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer -EXPORT_SYMBOL vmlinux 0x1bb33f23 inet_add_offload -EXPORT_SYMBOL vmlinux 0x1bb46b87 __get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x1bddfb2d mark_page_accessed -EXPORT_SYMBOL vmlinux 0x1c114a6a vm_event_states -EXPORT_SYMBOL vmlinux 0x1c1743ae sk_dst_check -EXPORT_SYMBOL vmlinux 0x1c29924f cad_pid -EXPORT_SYMBOL vmlinux 0x1c2e72ee mmc_add_host -EXPORT_SYMBOL vmlinux 0x1c53cc93 pci_set_dma_seg_boundary -EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s -EXPORT_SYMBOL vmlinux 0x1c654a78 pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0x1c70ddba get_tz_trend -EXPORT_SYMBOL vmlinux 0x1c9d8290 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x1cab9a06 mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0x1cdc601a __sk_dst_check -EXPORT_SYMBOL vmlinux 0x1cfb04fa finish_wait -EXPORT_SYMBOL vmlinux 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL vmlinux 0x1d09df8e xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x1d353c2a put_io_context -EXPORT_SYMBOL vmlinux 0x1d385143 __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0x1d3876de vme_irq_request -EXPORT_SYMBOL vmlinux 0x1d3aca0d d_instantiate_no_diralias -EXPORT_SYMBOL vmlinux 0x1d3d6f62 downgrade_write -EXPORT_SYMBOL vmlinux 0x1d456b8b neigh_ifdown -EXPORT_SYMBOL vmlinux 0x1d6efbdf blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0x1d77fdcb add_random_ready_callback -EXPORT_SYMBOL vmlinux 0x1d8349e6 nand_bch_correct_data -EXPORT_SYMBOL vmlinux 0x1d9e3a08 dev_get_nest_level -EXPORT_SYMBOL vmlinux 0x1db1ab1f neigh_connected_output -EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1de93574 mount_ns -EXPORT_SYMBOL vmlinux 0x1df3923c vfs_llseek -EXPORT_SYMBOL vmlinux 0x1df6343d skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0x1e047854 warn_slowpath_fmt -EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev -EXPORT_SYMBOL vmlinux 0x1e5c3267 d_lookup -EXPORT_SYMBOL vmlinux 0x1e66e2e3 put_page -EXPORT_SYMBOL vmlinux 0x1e672be5 phy_device_free -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e92b4a2 vfs_create -EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1ec2d76d inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0x1ec86d5c scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x1eeb848e __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0x1efab608 dev_mc_init -EXPORT_SYMBOL vmlinux 0x1f003933 sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0x1f225f58 netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0x1f3f0bc6 icmpv6_send -EXPORT_SYMBOL vmlinux 0x1f4243c2 tcp_init_sock -EXPORT_SYMBOL vmlinux 0x1f432a48 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x1f51dd53 jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0x1f8b3350 kdb_current_task -EXPORT_SYMBOL vmlinux 0x1f8f3b9c new_inode -EXPORT_SYMBOL vmlinux 0x1f97a767 mmc_align_data_size -EXPORT_SYMBOL vmlinux 0x1f9aa2b4 tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0x1fa7eb60 __lock_buffer -EXPORT_SYMBOL vmlinux 0x1fab5905 wait_for_completion -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag -EXPORT_SYMBOL vmlinux 0x1fe9587b register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region -EXPORT_SYMBOL vmlinux 0x1fefe44d simple_setattr -EXPORT_SYMBOL vmlinux 0x1ff37c0b mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x201994bb iterate_supers_type -EXPORT_SYMBOL vmlinux 0x201f65a4 tcp_req_err -EXPORT_SYMBOL vmlinux 0x20205f64 trace_print_array_seq -EXPORT_SYMBOL vmlinux 0x20361239 pci_unregister_driver -EXPORT_SYMBOL vmlinux 0x203dc851 sock_no_connect -EXPORT_SYMBOL vmlinux 0x20421305 on_each_cpu_mask -EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool -EXPORT_SYMBOL vmlinux 0x205ec8de omap_dispc_register_isr -EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq -EXPORT_SYMBOL vmlinux 0x2098841f pipe_unlock -EXPORT_SYMBOL vmlinux 0x20a31cae tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20afec08 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0x20b31ed1 nand_unlock -EXPORT_SYMBOL vmlinux 0x20b6bcb5 kern_unmount -EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf -EXPORT_SYMBOL vmlinux 0x20c6a4cd request_firmware -EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x21110dbf mmioset -EXPORT_SYMBOL vmlinux 0x211331fa __divsi3 -EXPORT_SYMBOL vmlinux 0x21188b83 cpu_tlb -EXPORT_SYMBOL vmlinux 0x2128bd70 tcf_hash_cleanup -EXPORT_SYMBOL vmlinux 0x213f520f free_netdev -EXPORT_SYMBOL vmlinux 0x21482de9 dev_activate -EXPORT_SYMBOL vmlinux 0x214de4b5 forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x2154efb0 kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x2159d5c0 neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x2167db87 nla_reserve -EXPORT_SYMBOL vmlinux 0x21681a7e bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0x216d759a mmiocpy -EXPORT_SYMBOL vmlinux 0x21711832 blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0x218c3192 vm_mmap -EXPORT_SYMBOL vmlinux 0x21a73b15 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x21bb7cee simple_transaction_read -EXPORT_SYMBOL vmlinux 0x21bd6587 vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0x21c59d85 tcp_poll -EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set -EXPORT_SYMBOL vmlinux 0x21e61085 sock_setsockopt -EXPORT_SYMBOL vmlinux 0x21fa3f81 xfrm_register_km -EXPORT_SYMBOL vmlinux 0x22036518 __secpath_destroy -EXPORT_SYMBOL vmlinux 0x22148e34 dev_close -EXPORT_SYMBOL vmlinux 0x2216079d max8998_write_reg -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x222f6207 __nla_reserve -EXPORT_SYMBOL vmlinux 0x222fa684 lg_global_lock -EXPORT_SYMBOL vmlinux 0x2232a8a5 mempool_free -EXPORT_SYMBOL vmlinux 0x223be99f gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x223e83cb mount_pseudo -EXPORT_SYMBOL vmlinux 0x2246a7ea dev_uc_init -EXPORT_SYMBOL vmlinux 0x224766d7 pcim_iomap -EXPORT_SYMBOL vmlinux 0x2256fafa div64_u64_rem -EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits -EXPORT_SYMBOL vmlinux 0x226f8605 param_get_ullong -EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint -EXPORT_SYMBOL vmlinux 0x22953084 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0x22961bf3 mem_map -EXPORT_SYMBOL vmlinux 0x22a17beb mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22b6373f pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x22cd137a page_follow_link_light -EXPORT_SYMBOL vmlinux 0x22dfdd06 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x22e92fcc msm_pinctrl_probe -EXPORT_SYMBOL vmlinux 0x22f1a98c bio_integrity_advance -EXPORT_SYMBOL vmlinux 0x22fc4f3a trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x22fec1d1 tcp_read_sock -EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs -EXPORT_SYMBOL vmlinux 0x2363d1fb blk_queue_free_tags -EXPORT_SYMBOL vmlinux 0x237ac871 register_netdev -EXPORT_SYMBOL vmlinux 0x238ce9c3 __tcf_hash_release -EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x23aa49d3 _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23c8ea65 __skb_get_hash -EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress -EXPORT_SYMBOL vmlinux 0x23d12d4c jbd2_journal_load -EXPORT_SYMBOL vmlinux 0x23ea0607 snd_card_file_remove -EXPORT_SYMBOL vmlinux 0x23f49b1b thaw_super -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x240944ad sock_no_mmap -EXPORT_SYMBOL vmlinux 0x241085e0 skb_copy_bits -EXPORT_SYMBOL vmlinux 0x2412bb8c sg_miter_start -EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x2429d8c6 devm_gpiod_get_index -EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x24645c72 __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x246f149d unregister_console -EXPORT_SYMBOL vmlinux 0x247627fb ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x247f64e1 bitmap_endwrite -EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf -EXPORT_SYMBOL vmlinux 0x249f1d60 dev_get_by_index -EXPORT_SYMBOL vmlinux 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL vmlinux 0x24ad1098 make_kgid -EXPORT_SYMBOL vmlinux 0x24f56268 simple_follow_link -EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function -EXPORT_SYMBOL vmlinux 0x24fe94d6 bioset_integrity_create -EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x250dbe23 dquot_get_state -EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register -EXPORT_SYMBOL vmlinux 0x253da76d of_get_cpu_node -EXPORT_SYMBOL vmlinux 0x254fcb1e copy_strings_kernel -EXPORT_SYMBOL vmlinux 0x255928d2 devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0x2560865e xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string -EXPORT_SYMBOL vmlinux 0x257460c0 pci_iomap_range -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x25ac88db netif_wake_subqueue -EXPORT_SYMBOL vmlinux 0x25b35abb bio_clone_fast -EXPORT_SYMBOL vmlinux 0x25bcb050 nand_scan -EXPORT_SYMBOL vmlinux 0x25cbd2b7 serio_bus -EXPORT_SYMBOL vmlinux 0x25cf8cd8 single_open_size -EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25ec71c4 register_sound_midi -EXPORT_SYMBOL vmlinux 0x2612d9ce vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux -EXPORT_SYMBOL vmlinux 0x26711c72 lwtunnel_encap_add_ops -EXPORT_SYMBOL vmlinux 0x26737f64 snd_pcm_release_substream -EXPORT_SYMBOL vmlinux 0x26942519 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0x26c2128c lockref_mark_dead -EXPORT_SYMBOL vmlinux 0x26c7a7a7 swiotlb_sync_single_for_device -EXPORT_SYMBOL vmlinux 0x26d3d7c5 write_inode_now -EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min -EXPORT_SYMBOL vmlinux 0x26f1d8e4 twl6040_set_bits -EXPORT_SYMBOL vmlinux 0x270777ee generic_shutdown_super -EXPORT_SYMBOL vmlinux 0x2711edf6 snd_ctl_notify -EXPORT_SYMBOL vmlinux 0x27157e2a pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0x272a70cc bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x272ba213 prepare_binprm -EXPORT_SYMBOL vmlinux 0x27362402 open_exec -EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0x274f378a truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0x2754b64c d_instantiate_unique -EXPORT_SYMBOL vmlinux 0x275ef902 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0x2762b955 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x278b0a23 empty_zero_page -EXPORT_SYMBOL vmlinux 0x27ae4288 devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27cfe645 locks_mandatory_area -EXPORT_SYMBOL vmlinux 0x27e1a049 printk -EXPORT_SYMBOL vmlinux 0x27e7cf80 mutex_lock_killable -EXPORT_SYMBOL vmlinux 0x27ee494c block_truncate_page -EXPORT_SYMBOL vmlinux 0x27fd1506 pskb_expand_head -EXPORT_SYMBOL vmlinux 0x2809f2c8 mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0x28118cb6 __get_user_1 -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x281ce0ee md_update_sb -EXPORT_SYMBOL vmlinux 0x285f1515 invalidate_partition -EXPORT_SYMBOL vmlinux 0x28632238 unregister_quota_format -EXPORT_SYMBOL vmlinux 0x286e3c67 __init_rwsem -EXPORT_SYMBOL vmlinux 0x2870b38e pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0x2884204c clocksource_unregister -EXPORT_SYMBOL vmlinux 0x288b5d52 notify_change -EXPORT_SYMBOL vmlinux 0x28956435 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x290fcdff seq_printf -EXPORT_SYMBOL vmlinux 0x292108c0 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x293e24ff genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0x29589f18 security_path_chmod -EXPORT_SYMBOL vmlinux 0x29783d44 input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x297c1416 vfs_setpos -EXPORT_SYMBOL vmlinux 0x299fb99a of_parse_phandle -EXPORT_SYMBOL vmlinux 0x29a7acd9 input_allocate_device -EXPORT_SYMBOL vmlinux 0x29b051a4 tcp_conn_request -EXPORT_SYMBOL vmlinux 0x29d0f68c pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0x29d49afd blkdev_put -EXPORT_SYMBOL vmlinux 0x29e1b020 ida_simple_remove -EXPORT_SYMBOL vmlinux 0x29e835b7 revert_creds -EXPORT_SYMBOL vmlinux 0x29f44d1a register_filesystem -EXPORT_SYMBOL vmlinux 0x29f46405 module_layout -EXPORT_SYMBOL vmlinux 0x29f5db98 __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x29fbd136 snd_pcm_hw_constraint_step -EXPORT_SYMBOL vmlinux 0x29fdda53 kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0x2a1f51a9 posix_test_lock -EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a369b36 ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2a3aa678 _test_and_clear_bit -EXPORT_SYMBOL vmlinux 0x2a497a03 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x2a4e1b14 __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0x2a629ddf file_ns_capable -EXPORT_SYMBOL vmlinux 0x2a6a518d blk_delay_queue -EXPORT_SYMBOL vmlinux 0x2a6bb72d __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x2a6d0956 netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp -EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy -EXPORT_SYMBOL vmlinux 0x2aae2da2 cfb_fillrect -EXPORT_SYMBOL vmlinux 0x2ab5a10d irq_to_desc -EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat -EXPORT_SYMBOL vmlinux 0x2ae3deaa release_and_free_resource -EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x2b12925d cpumask_next_and -EXPORT_SYMBOL vmlinux 0x2b181a1a gen_pool_add_virt -EXPORT_SYMBOL vmlinux 0x2b1f57d8 vm_insert_pfn -EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 -EXPORT_SYMBOL vmlinux 0x2b4e956e mempool_create -EXPORT_SYMBOL vmlinux 0x2b5ec749 try_module_get -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency -EXPORT_SYMBOL vmlinux 0x2bacade3 cont_write_begin -EXPORT_SYMBOL vmlinux 0x2be0f12d dql_completed -EXPORT_SYMBOL vmlinux 0x2bf2f833 dmam_pool_create -EXPORT_SYMBOL vmlinux 0x2bf52245 xfrm_input -EXPORT_SYMBOL vmlinux 0x2bfd1557 vm_iomap_memory -EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x2c18adea locks_remove_posix -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c54cad1 n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0x2c7c8e9a pcibios_min_mem -EXPORT_SYMBOL vmlinux 0x2c81ec75 __irq_regs -EXPORT_SYMBOL vmlinux 0x2c82216b snd_jack_set_parent -EXPORT_SYMBOL vmlinux 0x2c988955 prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x2c9b30b1 dquot_alloc -EXPORT_SYMBOL vmlinux 0x2c9b3fa6 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0x2ca8bcbe dev_addr_flush -EXPORT_SYMBOL vmlinux 0x2cba3655 setattr_copy -EXPORT_SYMBOL vmlinux 0x2cc1d414 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x2cdcbef1 max8998_bulk_write -EXPORT_SYMBOL vmlinux 0x2cddf449 scsi_host_lookup -EXPORT_SYMBOL vmlinux 0x2cded30b netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x2cea5b84 ps2_end_command -EXPORT_SYMBOL vmlinux 0x2cf7af07 simple_empty -EXPORT_SYMBOL vmlinux 0x2cfbefb9 filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0x2d0fddd4 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d182e1a blk_queue_bounce -EXPORT_SYMBOL vmlinux 0x2d1c8d32 posix_unblock_lock -EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d35fd60 __skb_gso_segment -EXPORT_SYMBOL vmlinux 0x2d475448 genphy_update_link -EXPORT_SYMBOL vmlinux 0x2d57abfb contig_page_data -EXPORT_SYMBOL vmlinux 0x2d627846 phy_attach -EXPORT_SYMBOL vmlinux 0x2d6507b5 _find_next_zero_bit_le -EXPORT_SYMBOL vmlinux 0x2d715fcb omapdss_unregister_display -EXPORT_SYMBOL vmlinux 0x2d770676 dispc_mgr_go -EXPORT_SYMBOL vmlinux 0x2d8e4437 ps2_command -EXPORT_SYMBOL vmlinux 0x2d96c50f clear_inode -EXPORT_SYMBOL vmlinux 0x2d9903d9 inet6_unregister_icmp_sender -EXPORT_SYMBOL vmlinux 0x2dce310e iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink -EXPORT_SYMBOL vmlinux 0x2dfa0935 dput -EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put -EXPORT_SYMBOL vmlinux 0x2e22c6ad no_llseek -EXPORT_SYMBOL vmlinux 0x2e2818e3 mmc_gpio_request_cd -EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies -EXPORT_SYMBOL vmlinux 0x2e2eb6d2 filemap_fdatawait -EXPORT_SYMBOL vmlinux 0x2e4d2a05 kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0x2e5810c6 __aeabi_unwind_cpp_pr1 -EXPORT_SYMBOL vmlinux 0x2e5c58a4 read_cache_page -EXPORT_SYMBOL vmlinux 0x2e68cc9d remove_proc_entry -EXPORT_SYMBOL vmlinux 0x2e6ae8a4 page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x2e70b5fe devm_ioremap_nocache -EXPORT_SYMBOL vmlinux 0x2e7f800d pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0x2e84ae8c of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0x2e89e827 md_flush_request -EXPORT_SYMBOL vmlinux 0x2e8be1c3 mpage_readpage -EXPORT_SYMBOL vmlinux 0x2e9ad254 kern_path_create -EXPORT_SYMBOL vmlinux 0x2ea05f21 pm860x_set_bits -EXPORT_SYMBOL vmlinux 0x2ebf369f truncate_pagecache -EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x2ecd441b fence_free -EXPORT_SYMBOL vmlinux 0x2ed20556 xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x2edbc296 reservation_object_reserve_shared -EXPORT_SYMBOL vmlinux 0x2ee31e11 lwtunnel_fill_encap -EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0x2efbe7e9 ptp_clock_unregister -EXPORT_SYMBOL vmlinux 0x2efc012a inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f04e8a3 tcp_child_process -EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource -EXPORT_SYMBOL vmlinux 0x2f08d3c5 input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0x2f1b4030 napi_get_frags -EXPORT_SYMBOL vmlinux 0x2f3fad5b pci_write_vpd -EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag -EXPORT_SYMBOL vmlinux 0x2f49eabc snd_pcm_new -EXPORT_SYMBOL vmlinux 0x2f4e822f param_array_ops -EXPORT_SYMBOL vmlinux 0x2f585a17 ata_print_version -EXPORT_SYMBOL vmlinux 0x2f5d068e snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL vmlinux 0x2f5f2a57 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0x2f65b661 dquot_scan_active -EXPORT_SYMBOL vmlinux 0x2f97749b kobject_put -EXPORT_SYMBOL vmlinux 0x2fab14bc xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x2fb61281 genlmsg_put -EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fdc01d0 seq_release -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2feb83c7 inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0x2feefb02 omapdss_default_get_recommended_bpp -EXPORT_SYMBOL vmlinux 0x300c6208 kernel_getsockname -EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0x303eb3b6 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable -EXPORT_SYMBOL vmlinux 0x3082a0b3 dss_feat_get_supported_color_modes -EXPORT_SYMBOL vmlinux 0x3096a3c4 tcf_hash_search -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x309e444e generic_readlink -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30a97cfb __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x30b87908 key_revoke -EXPORT_SYMBOL vmlinux 0x30d14261 dev_driver_string -EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0x30e75623 dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x3102f1f4 clk_get -EXPORT_SYMBOL vmlinux 0x3105b87a nand_correct_data -EXPORT_SYMBOL vmlinux 0x310917fe sort -EXPORT_SYMBOL vmlinux 0x311d3cb7 mutex_unlock -EXPORT_SYMBOL vmlinux 0x312475cf param_set_short -EXPORT_SYMBOL vmlinux 0x313006bb input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x3132ee65 __nand_calculate_ecc -EXPORT_SYMBOL vmlinux 0x31380354 getrawmonotonic64 -EXPORT_SYMBOL vmlinux 0x313856e2 devm_gpiod_get_index_optional -EXPORT_SYMBOL vmlinux 0x313daa70 uart_suspend_port -EXPORT_SYMBOL vmlinux 0x31444755 neigh_direct_output -EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present -EXPORT_SYMBOL vmlinux 0x3147857d default_red -EXPORT_SYMBOL vmlinux 0x316160a9 key_type_keyring -EXPORT_SYMBOL vmlinux 0x316b6cfa md_finish_reshape -EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear -EXPORT_SYMBOL vmlinux 0x3191f109 __krealloc -EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available -EXPORT_SYMBOL vmlinux 0x31b31f5c csum_partial_copy_nocheck -EXPORT_SYMBOL vmlinux 0x31decd45 check_disk_change -EXPORT_SYMBOL vmlinux 0x31e3b20f pci_disable_device -EXPORT_SYMBOL vmlinux 0x31f0bb78 __kmap_atomic_idx -EXPORT_SYMBOL vmlinux 0x3224a895 devm_get_gpiod_from_child -EXPORT_SYMBOL vmlinux 0x322d2f4c dev_uc_unsync -EXPORT_SYMBOL vmlinux 0x322f2832 pcibios_fixup_bus -EXPORT_SYMBOL vmlinux 0x3234fa6d kmalloc_dma_caches -EXPORT_SYMBOL vmlinux 0x3239d454 path_get -EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src -EXPORT_SYMBOL vmlinux 0x3265394f skb_append -EXPORT_SYMBOL vmlinux 0x327fd926 param_ops_ullong -EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy -EXPORT_SYMBOL vmlinux 0x32907b91 idr_remove -EXPORT_SYMBOL vmlinux 0x32a50852 fixed_phy_update_state -EXPORT_SYMBOL vmlinux 0x32aa1ca0 ppp_channel_index -EXPORT_SYMBOL vmlinux 0x32b12cce snd_card_disconnect -EXPORT_SYMBOL vmlinux 0x32b7ccfe get_mem_type -EXPORT_SYMBOL vmlinux 0x32dbbcec __generic_file_fsync -EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x32e88c47 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0x32f74124 unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x33082943 sk_reset_timer -EXPORT_SYMBOL vmlinux 0x3316845e idr_get_next -EXPORT_SYMBOL vmlinux 0x333665b9 tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0x33372d57 inode_dio_wait -EXPORT_SYMBOL vmlinux 0x33380dbf tcf_unregister_action -EXPORT_SYMBOL vmlinux 0x334853b0 inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x3370911f copy_from_iter -EXPORT_SYMBOL vmlinux 0x337113c4 sk_prot_clear_portaddr_nulls -EXPORT_SYMBOL vmlinux 0x3375f309 nf_log_register -EXPORT_SYMBOL vmlinux 0x33af3193 nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0x33c2727e neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x33dfa2ca kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x33ea2187 gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x33f95a5e alloc_buffer_head -EXPORT_SYMBOL vmlinux 0x34169691 of_find_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x341dbfa3 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x342302ef copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x342c32b4 __alloc_skb -EXPORT_SYMBOL vmlinux 0x342e1710 udp_prot -EXPORT_SYMBOL vmlinux 0x3431ea11 do_splice_to -EXPORT_SYMBOL vmlinux 0x3439ecc2 sync_filesystem -EXPORT_SYMBOL vmlinux 0x344b7739 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x34589ed4 nvm_register_mgr -EXPORT_SYMBOL vmlinux 0x345d6110 phy_start -EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin -EXPORT_SYMBOL vmlinux 0x346881db vme_slave_request -EXPORT_SYMBOL vmlinux 0x347013de nla_validate -EXPORT_SYMBOL vmlinux 0x34740989 param_set_bool -EXPORT_SYMBOL vmlinux 0x34880048 read_dev_sector -EXPORT_SYMBOL vmlinux 0x3498fea8 __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34b98530 __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x34fc8eba skb_queue_tail -EXPORT_SYMBOL vmlinux 0x3507a132 _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x3529ba2a devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0x353de98f cmdline_parts_parse -EXPORT_SYMBOL vmlinux 0x353e3fa5 __get_user_4 -EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x3590b9c7 fget_raw -EXPORT_SYMBOL vmlinux 0x3590bf89 dss_mgr_set_timings -EXPORT_SYMBOL vmlinux 0x359419d4 dump_skip -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35a92770 dev_add_offload -EXPORT_SYMBOL vmlinux 0x35af1273 submit_bio -EXPORT_SYMBOL vmlinux 0x35e24299 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x35ead2cb __pci_register_driver -EXPORT_SYMBOL vmlinux 0x35f9e2e4 swiotlb_map_sg -EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x3612c10f tmio_core_mmc_enable -EXPORT_SYMBOL vmlinux 0x3614b452 nvm_erase_blk -EXPORT_SYMBOL vmlinux 0x363551bc proc_symlink -EXPORT_SYMBOL vmlinux 0x36389282 zpool_register_driver -EXPORT_SYMBOL vmlinux 0x363fcafd elm_decode_bch_error_page -EXPORT_SYMBOL vmlinux 0x36473e4b blk_mq_map_queue -EXPORT_SYMBOL vmlinux 0x3660f356 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x36687b89 pci_claim_resource -EXPORT_SYMBOL vmlinux 0x367ba856 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x36b1a94c dss_mgr_enable -EXPORT_SYMBOL vmlinux 0x36b1eb29 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0x36b2ead5 pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0x36bb7fc0 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc -EXPORT_SYMBOL vmlinux 0x36c32ffa tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x36f24d5c pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0x36fdda67 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x37028c0b of_phy_find_device -EXPORT_SYMBOL vmlinux 0x3709b440 simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0x37113672 xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x371b18c3 dup_iter -EXPORT_SYMBOL vmlinux 0x3729b733 skb_vlan_push -EXPORT_SYMBOL vmlinux 0x37315b2b of_platform_bus_probe -EXPORT_SYMBOL vmlinux 0x37343274 netpoll_setup -EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x3753b704 param_set_ulong -EXPORT_SYMBOL vmlinux 0x376038d8 pci_bus_type -EXPORT_SYMBOL vmlinux 0x3766d3b4 param_ops_invbool -EXPORT_SYMBOL vmlinux 0x376bdb03 serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0x3774e0ba tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x377dd288 posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x378be57a jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0x378c4fbf netlink_ack -EXPORT_SYMBOL vmlinux 0x378e9108 d_genocide -EXPORT_SYMBOL vmlinux 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL vmlinux 0x379dee5f trace_print_symbols_seq_u64 -EXPORT_SYMBOL vmlinux 0x37a7ce0d jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x37b3a5e7 vme_unregister_driver -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37c483ee __genl_register_family -EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 -EXPORT_SYMBOL vmlinux 0x37f34054 bio_advance -EXPORT_SYMBOL vmlinux 0x37f5b840 sock_recvmsg -EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x37f63be5 inode_set_bytes -EXPORT_SYMBOL vmlinux 0x37ff7390 mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0x381127af devm_gpiod_get_optional -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x381ccc13 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x381f01dd dquot_quotactl_ops -EXPORT_SYMBOL vmlinux 0x382ecebf pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0x38315ef5 dev_warn -EXPORT_SYMBOL vmlinux 0x3876538e of_count_phandle_with_args -EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x38978e52 ip_do_fragment -EXPORT_SYMBOL vmlinux 0x389acf0c gpmc_configure -EXPORT_SYMBOL vmlinux 0x389ecf9e __bswapdi2 -EXPORT_SYMBOL vmlinux 0x389f4229 get_io_context -EXPORT_SYMBOL vmlinux 0x38a0db42 snd_pci_quirk_lookup -EXPORT_SYMBOL vmlinux 0x38a453ec netpoll_send_udp -EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list -EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38b552e3 skb_find_text -EXPORT_SYMBOL vmlinux 0x38e1f128 jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0x390c5d00 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x39102b99 generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x3920e82b fbcon_rotate_cw -EXPORT_SYMBOL vmlinux 0x3924dd56 try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x394d21c9 simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x3957a30b of_phy_is_fixed_link -EXPORT_SYMBOL vmlinux 0x396c54bd nvm_dev_factory -EXPORT_SYMBOL vmlinux 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL vmlinux 0x39730d06 atomic_io_modify -EXPORT_SYMBOL vmlinux 0x399640e0 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x399e3d6a set_disk_ro -EXPORT_SYMBOL vmlinux 0x39a5042c inet6_release -EXPORT_SYMBOL vmlinux 0x39a68a30 udp_proc_unregister -EXPORT_SYMBOL vmlinux 0x39b4cba8 sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39b61885 seq_pad -EXPORT_SYMBOL vmlinux 0x39b8dd10 __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL vmlinux 0x39cb1771 twl6040_get_pll -EXPORT_SYMBOL vmlinux 0x39cd5b81 omapdss_output_set_device -EXPORT_SYMBOL vmlinux 0x39d102da __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x39d171c8 kernel_sendpage -EXPORT_SYMBOL vmlinux 0x39f2b263 htc_egpio_get_wakeup_irq -EXPORT_SYMBOL vmlinux 0x39fa081c mb_cache_entry_insert -EXPORT_SYMBOL vmlinux 0x3a08c24e tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0x3a1ac054 set_normalized_timespec64 -EXPORT_SYMBOL vmlinux 0x3a440994 rtmsg_ifinfo -EXPORT_SYMBOL vmlinux 0x3a447c56 ip_options_compile -EXPORT_SYMBOL vmlinux 0x3a819266 may_umount -EXPORT_SYMBOL vmlinux 0x3a897cd1 elv_rb_add -EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region -EXPORT_SYMBOL vmlinux 0x3aa7c843 tcf_action_exec -EXPORT_SYMBOL vmlinux 0x3aa82f7d cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0x3aa981f6 max8925_reg_write -EXPORT_SYMBOL vmlinux 0x3ae16fbd pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0x3ae3b7f1 param_get_bool -EXPORT_SYMBOL vmlinux 0x3b1c8345 xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0x3b30d223 arp_xmit -EXPORT_SYMBOL vmlinux 0x3b555894 scsi_remove_device -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b669084 kernel_sock_ioctl -EXPORT_SYMBOL vmlinux 0x3b6fa80f inet_add_protocol -EXPORT_SYMBOL vmlinux 0x3b712af8 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x3b91f3af snd_free_pages -EXPORT_SYMBOL vmlinux 0x3ba13de3 phy_register_fixup -EXPORT_SYMBOL vmlinux 0x3bbf46ea vga_base -EXPORT_SYMBOL vmlinux 0x3be49f3f get_thermal_instance -EXPORT_SYMBOL vmlinux 0x3be86a29 netdev_info -EXPORT_SYMBOL vmlinux 0x3c093d14 give_up_console -EXPORT_SYMBOL vmlinux 0x3c1b690a mfd_remove_devices -EXPORT_SYMBOL vmlinux 0x3c252a90 nd_device_register -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c4570f7 __getblk_slow -EXPORT_SYMBOL vmlinux 0x3c4a6f18 i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0x3c5abe5b neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0x3c6e978f gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0x3c769f2e block_invalidatepage -EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull -EXPORT_SYMBOL vmlinux 0x3ca4c99e kern_path_mountpoint -EXPORT_SYMBOL vmlinux 0x3cab19eb __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x3cb3931b sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x3cdff669 jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3cec9bf9 locks_copy_conflock -EXPORT_SYMBOL vmlinux 0x3cedea51 of_find_property -EXPORT_SYMBOL vmlinux 0x3cfa969a proc_douintvec -EXPORT_SYMBOL vmlinux 0x3d144457 mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0x3d247ea2 omapdss_unregister_output -EXPORT_SYMBOL vmlinux 0x3d30409d iommu_tbl_range_free -EXPORT_SYMBOL vmlinux 0x3d351f55 snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL vmlinux 0x3d3a4a51 locks_copy_lock -EXPORT_SYMBOL vmlinux 0x3d3c540f elf_hwcap -EXPORT_SYMBOL vmlinux 0x3d3f71dd scsi_ioctl -EXPORT_SYMBOL vmlinux 0x3d771ed8 unmap_underlying_metadata -EXPORT_SYMBOL vmlinux 0x3dab63fb uart_remove_one_port -EXPORT_SYMBOL vmlinux 0x3daf853e phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0x3db44799 sb_min_blocksize -EXPORT_SYMBOL vmlinux 0x3dbff628 tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x3dc787a1 __find_get_block -EXPORT_SYMBOL vmlinux 0x3dc964ec pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3de06b6c pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0x3de5c6fe check_disk_size_change -EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e010944 fs_bio_set -EXPORT_SYMBOL vmlinux 0x3e2b0cba snd_ctl_remove_id -EXPORT_SYMBOL vmlinux 0x3e3f5748 mmc_can_discard -EXPORT_SYMBOL vmlinux 0x3e4884c9 scsi_device_get -EXPORT_SYMBOL vmlinux 0x3e4a9521 clk_add_alias -EXPORT_SYMBOL vmlinux 0x3e571fbb dss_mgr_register_framedone_handler -EXPORT_SYMBOL vmlinux 0x3e866399 complete_request_key -EXPORT_SYMBOL vmlinux 0x3e8ada02 mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0x3e929b87 flush_kernel_dcache_page -EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get -EXPORT_SYMBOL vmlinux 0x3e978d49 reservation_object_add_shared_fence -EXPORT_SYMBOL vmlinux 0x3ea3c925 mntget -EXPORT_SYMBOL vmlinux 0x3eaa5eb3 jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0x3eb6a837 i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0x3ed08566 nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0x3ee1b318 noop_llseek -EXPORT_SYMBOL vmlinux 0x3eeac572 nvm_unregister_target -EXPORT_SYMBOL vmlinux 0x3efcd44d mmc_erase -EXPORT_SYMBOL vmlinux 0x3f086f06 ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0x3f220d88 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x3f3424b5 balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0x3f40be58 shdma_cleanup -EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f50e8e0 mdiobus_free -EXPORT_SYMBOL vmlinux 0x3f53ed2d phy_set_max_speed -EXPORT_SYMBOL vmlinux 0x3f5b67d5 wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0x3f616ce2 queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0x3f6fce10 file_path -EXPORT_SYMBOL vmlinux 0x3f7dbc5c textsearch_register -EXPORT_SYMBOL vmlinux 0x3f8618af mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0x3f8696b8 of_mdiobus_register -EXPORT_SYMBOL vmlinux 0x3f892216 rtnl_create_link -EXPORT_SYMBOL vmlinux 0x3f9a4c0a read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0x3fab3ca9 register_sysctl_table -EXPORT_SYMBOL vmlinux 0x3fae8a46 scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0x3fb6136a devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0x3fbbbc49 from_kprojid -EXPORT_SYMBOL vmlinux 0x3fcd0399 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x3fec048f sg_next -EXPORT_SYMBOL vmlinux 0x400a69e9 nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0x4016ac83 bdi_register_dev -EXPORT_SYMBOL vmlinux 0x402260a0 elv_unregister_queue -EXPORT_SYMBOL vmlinux 0x4023e6ee _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL vmlinux 0x402b8281 __request_module -EXPORT_SYMBOL vmlinux 0x402ea1d8 of_find_node_by_phandle -EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev -EXPORT_SYMBOL vmlinux 0x4041778b inode_init_owner -EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump -EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds -EXPORT_SYMBOL vmlinux 0x406e697d __serio_register_port -EXPORT_SYMBOL vmlinux 0x407136b1 __put_user_8 -EXPORT_SYMBOL vmlinux 0x407a3275 omap_start_dma -EXPORT_SYMBOL vmlinux 0x407d90c8 register_mtd_chip_driver -EXPORT_SYMBOL vmlinux 0x408ae0e9 snd_pcm_notify -EXPORT_SYMBOL vmlinux 0x40958c08 fb_show_logo -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x409cea10 elv_rb_del -EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x40a2d1dd dm_table_get_size -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40ad3abc neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0x40c3f909 __nla_put -EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40cc2878 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40ed524a _raw_read_lock_irq -EXPORT_SYMBOL vmlinux 0x40f07981 __ashldi3 -EXPORT_SYMBOL vmlinux 0x40f2b06c eth_header -EXPORT_SYMBOL vmlinux 0x412cc21c tcp_proc_register -EXPORT_SYMBOL vmlinux 0x413c3eb1 cdev_add -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x414b46d9 dmam_alloc_noncoherent -EXPORT_SYMBOL vmlinux 0x41556a8f skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0x4183ca87 qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0x41862ad4 vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x419dd5a1 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0x41acd42e param_ops_ushort -EXPORT_SYMBOL vmlinux 0x41ae7fa5 pci_get_subsys -EXPORT_SYMBOL vmlinux 0x41be24a0 poll_freewait -EXPORT_SYMBOL vmlinux 0x41cf7ff0 input_close_device -EXPORT_SYMBOL vmlinux 0x41d41231 simple_dname -EXPORT_SYMBOL vmlinux 0x41e11889 amba_find_device -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x4216b1b2 __i2c_transfer -EXPORT_SYMBOL vmlinux 0x42249ebd to_ndd -EXPORT_SYMBOL vmlinux 0x423d81ed ida_pre_get -EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x424b3063 snd_card_set_id -EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x4265381d ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0x4266ce7c dget_parent -EXPORT_SYMBOL vmlinux 0x426992b0 generic_file_open -EXPORT_SYMBOL vmlinux 0x427b49e2 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0x4280c21b xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x4289b806 dquot_commit_info -EXPORT_SYMBOL vmlinux 0x428b57e1 dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x428c5b86 __register_nls -EXPORT_SYMBOL vmlinux 0x4298b775 v7_flush_kern_cache_all -EXPORT_SYMBOL vmlinux 0x429eb850 tcp_prot -EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x42c0d3b8 param_get_byte -EXPORT_SYMBOL vmlinux 0x42e8deeb ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x42ecf546 ioremap -EXPORT_SYMBOL vmlinux 0x42f398b3 stop_tty -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x4304c612 vfs_symlink -EXPORT_SYMBOL vmlinux 0x4337f106 blk_put_request -EXPORT_SYMBOL vmlinux 0x4347f52e register_netdevice -EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x4356a2a1 sk_stream_error -EXPORT_SYMBOL vmlinux 0x4357549c filemap_fault -EXPORT_SYMBOL vmlinux 0x4357916a kernel_accept -EXPORT_SYMBOL vmlinux 0x4381b5a4 phy_start_interrupts -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x4386bf3d __blk_end_request_all -EXPORT_SYMBOL vmlinux 0x43a62b33 crypto_sha512_update -EXPORT_SYMBOL vmlinux 0x43dfb774 of_find_node_with_property -EXPORT_SYMBOL vmlinux 0x43ef6087 bio_integrity_free -EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x43f69912 scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed -EXPORT_SYMBOL vmlinux 0x44198c95 mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0x4421fd0c __ethtool_get_settings -EXPORT_SYMBOL vmlinux 0x442495c9 tmio_core_mmc_resume -EXPORT_SYMBOL vmlinux 0x443585d0 pci_iounmap -EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0x443bf1f1 __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0x44430160 sockfd_lookup -EXPORT_SYMBOL vmlinux 0x44438b96 hex2bin -EXPORT_SYMBOL vmlinux 0x44470d45 param_get_uint -EXPORT_SYMBOL vmlinux 0x444baf95 tty_devnum -EXPORT_SYMBOL vmlinux 0x44643b93 __aeabi_lmul -EXPORT_SYMBOL vmlinux 0x4476fcb4 replace_mount_options -EXPORT_SYMBOL vmlinux 0x44850648 dma_common_mmap -EXPORT_SYMBOL vmlinux 0x44911ad5 param_ops_string -EXPORT_SYMBOL vmlinux 0x44a0dbac locks_init_lock -EXPORT_SYMBOL vmlinux 0x44aff156 snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x44b48c23 request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x44b58bcd snd_pcm_hw_rule_noresample -EXPORT_SYMBOL vmlinux 0x44c12bcd pci_set_power_state -EXPORT_SYMBOL vmlinux 0x44c76ca1 __inet_stream_connect -EXPORT_SYMBOL vmlinux 0x44d037f1 mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0x44d8a385 capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0x44da5d0f __csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0x44dd3d8d completion_done -EXPORT_SYMBOL vmlinux 0x44e0d5ce fb_get_mode -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44ed8289 mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0x4502cbfa __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x4530ce39 gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x4560a8f9 blk_run_queue_async -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x457d157d buffer_migrate_page -EXPORT_SYMBOL vmlinux 0x4582022f sync_inode_metadata -EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource -EXPORT_SYMBOL vmlinux 0x45bc6978 generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x45bda0d5 system_serial_low -EXPORT_SYMBOL vmlinux 0x45c7cc42 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0x45cb5c6f __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0x4602878b qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0x461b52c6 md_cluster_ops -EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy -EXPORT_SYMBOL vmlinux 0x46510555 __blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x465757c3 cpu_present_mask -EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0x465e04bc xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x465e7bb0 netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x46602fbc snd_dma_free_pages -EXPORT_SYMBOL vmlinux 0x4663c8f2 padata_do_serial -EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set -EXPORT_SYMBOL vmlinux 0x468e037d set_nlink -EXPORT_SYMBOL vmlinux 0x469abe76 tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0x46a4bb9a pci_save_state -EXPORT_SYMBOL vmlinux 0x46a5e80e vga_client_register -EXPORT_SYMBOL vmlinux 0x46ca246c omap_get_dma_src_pos -EXPORT_SYMBOL vmlinux 0x46d3b28c __div0 -EXPORT_SYMBOL vmlinux 0x46d936f7 nobh_write_begin -EXPORT_SYMBOL vmlinux 0x46da3dc9 unlock_page -EXPORT_SYMBOL vmlinux 0x46fb1e45 mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg -EXPORT_SYMBOL vmlinux 0x4710c9bb __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0x4733b990 uart_update_timeout -EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x4743b302 netif_rx -EXPORT_SYMBOL vmlinux 0x474e95e4 cros_ec_query_all -EXPORT_SYMBOL vmlinux 0x47645692 nf_register_sockopt -EXPORT_SYMBOL vmlinux 0x47783fa3 kernel_param_unlock -EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x4799bed2 xfrm_garbage_collect -EXPORT_SYMBOL vmlinux 0x47acf829 gen_pool_alloc -EXPORT_SYMBOL vmlinux 0x47b393f7 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0x47beec5c elm_config -EXPORT_SYMBOL vmlinux 0x47d70c02 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x47e11ffa pci_set_mwi -EXPORT_SYMBOL vmlinux 0x47e4353b cdrom_mode_select -EXPORT_SYMBOL vmlinux 0x47e70229 v7_flush_user_cache_range -EXPORT_SYMBOL vmlinux 0x47f757de elf_platform -EXPORT_SYMBOL vmlinux 0x48153aa5 param_set_invbool -EXPORT_SYMBOL vmlinux 0x481ce6ce cpu_active_mask -EXPORT_SYMBOL vmlinux 0x4843d97c dm_get_device -EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days -EXPORT_SYMBOL vmlinux 0x486265c9 blk_queue_init_tags -EXPORT_SYMBOL vmlinux 0x487a8c4c napi_disable -EXPORT_SYMBOL vmlinux 0x4895c133 mmc_can_trim -EXPORT_SYMBOL vmlinux 0x48a5b067 __machine_arch_type -EXPORT_SYMBOL vmlinux 0x48ad87ba block_write_end -EXPORT_SYMBOL vmlinux 0x48b84c22 nvdimm_revalidate_disk -EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48e063fa dqput -EXPORT_SYMBOL vmlinux 0x48f4df64 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x48f4f996 __destroy_inode -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x490ccea0 kernel_getpeername -EXPORT_SYMBOL vmlinux 0x4916988f nvm_dev_dma_free -EXPORT_SYMBOL vmlinux 0x49363759 pci_find_capability -EXPORT_SYMBOL vmlinux 0x493d73ae dmam_declare_coherent_memory -EXPORT_SYMBOL vmlinux 0x4954822f account_page_redirty -EXPORT_SYMBOL vmlinux 0x4957aa4a wireless_spy_update -EXPORT_SYMBOL vmlinux 0x495c3fd1 pci_release_regions -EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init -EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data -EXPORT_SYMBOL vmlinux 0x4967c56e input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0x497e3dc2 of_device_alloc -EXPORT_SYMBOL vmlinux 0x499cb58c prepare_to_wait -EXPORT_SYMBOL vmlinux 0x49ad5f46 devm_gpio_free -EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x49b0b5d8 lwtunnel_output -EXPORT_SYMBOL vmlinux 0x49bd387d scsi_cmd_get_serial -EXPORT_SYMBOL vmlinux 0x49c279f8 __generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x49c29e8e tcp_make_synack -EXPORT_SYMBOL vmlinux 0x49d17cf0 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0x49d65115 scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x49ebacbd _clear_bit -EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many -EXPORT_SYMBOL vmlinux 0x4a13e3b5 devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0x4a255477 inet_stream_ops -EXPORT_SYMBOL vmlinux 0x4a2c02b4 proto_unregister -EXPORT_SYMBOL vmlinux 0x4a2d91d0 devm_clk_get -EXPORT_SYMBOL vmlinux 0x4a39e5a1 omap_set_dma_src_params -EXPORT_SYMBOL vmlinux 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL vmlinux 0x4a57b339 wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x4a6462fc vmalloc_to_page -EXPORT_SYMBOL vmlinux 0x4a6542b5 i2c_get_adapter -EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk -EXPORT_SYMBOL vmlinux 0x4abcdcf3 get_user_pages -EXPORT_SYMBOL vmlinux 0x4abd6593 qdisc_list_del -EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource -EXPORT_SYMBOL vmlinux 0x4af1e3ae xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize -EXPORT_SYMBOL vmlinux 0x4b17b3cc skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0x4b25adea snd_register_device -EXPORT_SYMBOL vmlinux 0x4b3d126a snd_card_register -EXPORT_SYMBOL vmlinux 0x4b41ecde page_waitqueue -EXPORT_SYMBOL vmlinux 0x4b41f24f sock_i_uid -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b765034 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0x4b78933c qcom_scm_set_cold_boot_addr -EXPORT_SYMBOL vmlinux 0x4b7fe004 blk_mq_can_queue -EXPORT_SYMBOL vmlinux 0x4baa9f45 skb_checksum -EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get -EXPORT_SYMBOL vmlinux 0x4bafd021 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x4bb0778e vm_stat -EXPORT_SYMBOL vmlinux 0x4bb20d4c free_cgroup_ns -EXPORT_SYMBOL vmlinux 0x4bcb1e0e page_put_link -EXPORT_SYMBOL vmlinux 0x4bce0f36 gen_pool_create -EXPORT_SYMBOL vmlinux 0x4bcf03a4 radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x4be458ae __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x4be7fb63 up -EXPORT_SYMBOL vmlinux 0x4be85a03 memweight -EXPORT_SYMBOL vmlinux 0x4bf3b060 scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0x4c233a44 _raw_read_unlock_bh -EXPORT_SYMBOL vmlinux 0x4c259987 mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0x4c29dcbf cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr -EXPORT_SYMBOL vmlinux 0x4c2c218b blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0x4c33081d omapdss_compat_uninit -EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf -EXPORT_SYMBOL vmlinux 0x4c3aacc4 pci_choose_state -EXPORT_SYMBOL vmlinux 0x4c3ccd4e tty_port_tty_get -EXPORT_SYMBOL vmlinux 0x4c4dc8ef d_make_root -EXPORT_SYMBOL vmlinux 0x4c5b3e69 skb_copy -EXPORT_SYMBOL vmlinux 0x4c5fc58c _raw_read_lock_bh -EXPORT_SYMBOL vmlinux 0x4c7ebde9 writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x4c7f4124 bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0x4c86184b remove_wait_queue -EXPORT_SYMBOL vmlinux 0x4cc975db tty_vhangup -EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval -EXPORT_SYMBOL vmlinux 0x4cf6d718 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page -EXPORT_SYMBOL vmlinux 0x4d1741e8 noop_qdisc -EXPORT_SYMBOL vmlinux 0x4d2120df napi_gro_flush -EXPORT_SYMBOL vmlinux 0x4d3ac3b6 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask -EXPORT_SYMBOL vmlinux 0x4d3fe23b amba_device_unregister -EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated -EXPORT_SYMBOL vmlinux 0x4d6b83e9 thaw_bdev -EXPORT_SYMBOL vmlinux 0x4d769a91 blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0x4d82b8a5 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4d9b6d35 snd_pcm_format_size -EXPORT_SYMBOL vmlinux 0x4da20916 genphy_suspend -EXPORT_SYMBOL vmlinux 0x4ddd4b32 phy_ethtool_gset -EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x4de55f43 file_open_root -EXPORT_SYMBOL vmlinux 0x4dec6038 memscan -EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e35cfbd seq_putc -EXPORT_SYMBOL vmlinux 0x4e506013 omap_dma_link_lch -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e90667a scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x4e908c48 pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0x4ece4d3e scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0x4ed6c92b blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0x4ee2492c phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse -EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command -EXPORT_SYMBOL vmlinux 0x4f6041ef dns_query -EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday -EXPORT_SYMBOL vmlinux 0x4f6e1b33 netdev_state_change -EXPORT_SYMBOL vmlinux 0x4f816e9b snd_pcm_format_big_endian -EXPORT_SYMBOL vmlinux 0x4f8406bc abx500_set_register_interruptible -EXPORT_SYMBOL vmlinux 0x4f89c9de gpmc_cs_free -EXPORT_SYMBOL vmlinux 0x4f8ded5a mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0x4fa45365 scsi_remove_target -EXPORT_SYMBOL vmlinux 0x4fc33e38 sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x4fd7e3d9 pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x4fd861dc abx500_startup_irq_enabled -EXPORT_SYMBOL vmlinux 0x4ff4e0dc pci_enable_device -EXPORT_SYMBOL vmlinux 0x4ff5bb15 serio_rescan -EXPORT_SYMBOL vmlinux 0x4ffda263 blk_queue_softirq_done -EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security -EXPORT_SYMBOL vmlinux 0x502d4d93 con_is_bound -EXPORT_SYMBOL vmlinux 0x50355a27 dev_change_carrier -EXPORT_SYMBOL vmlinux 0x503bd137 snd_interval_ranges -EXPORT_SYMBOL vmlinux 0x50423a31 pci_add_new_bus -EXPORT_SYMBOL vmlinux 0x504c8792 devm_gpiod_get -EXPORT_SYMBOL vmlinux 0x50527991 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x50690af4 set_device_ro -EXPORT_SYMBOL vmlinux 0x506e90a0 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0x5070c43b of_node_put -EXPORT_SYMBOL vmlinux 0x5079d1d4 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0x509817cf vprintk_emit -EXPORT_SYMBOL vmlinux 0x5098481b nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0x5098ea46 bio_reset -EXPORT_SYMBOL vmlinux 0x50b3359a nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x50b66bcb radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x50d5612e dispc_mgr_get_sync_lost_irq -EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x50e91b2c vfs_mkdir -EXPORT_SYMBOL vmlinux 0x51079c5d mdiobus_write -EXPORT_SYMBOL vmlinux 0x510fade9 kunmap_high -EXPORT_SYMBOL vmlinux 0x511746c1 dump_fpu -EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0x51463a97 dm_kobject_release -EXPORT_SYMBOL vmlinux 0x514cc273 arm_copy_from_user -EXPORT_SYMBOL vmlinux 0x51724b0f nobh_writepage -EXPORT_SYMBOL vmlinux 0x5183dc23 scsi_init_io -EXPORT_SYMBOL vmlinux 0x51850e41 security_path_mkdir -EXPORT_SYMBOL vmlinux 0x5188a872 mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0x51d559d1 _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid -EXPORT_SYMBOL vmlinux 0x51e9de1c inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup -EXPORT_SYMBOL vmlinux 0x51f9c021 xattr_full_name -EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str -EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0x5242a968 kernel_connect -EXPORT_SYMBOL vmlinux 0x524b7522 fsnotify_alloc_group -EXPORT_SYMBOL vmlinux 0x52783175 pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0x52863f6c tcp_seq_open -EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x528d0c14 idr_init -EXPORT_SYMBOL vmlinux 0x5298beeb ip6_frag_init -EXPORT_SYMBOL vmlinux 0x52af562a __crc32c_le -EXPORT_SYMBOL vmlinux 0x52b4875f pci_scan_bus -EXPORT_SYMBOL vmlinux 0x52bb841c atomic_io_modify_relaxed -EXPORT_SYMBOL vmlinux 0x52bdf17e param_ops_charp -EXPORT_SYMBOL vmlinux 0x52bf0257 __netif_schedule -EXPORT_SYMBOL vmlinux 0x52d0a35b napi_consume_skb -EXPORT_SYMBOL vmlinux 0x52e1a3fa scsi_host_set_state -EXPORT_SYMBOL vmlinux 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL vmlinux 0x53064407 skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x530c3c6a jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0x532dc2c8 elv_rq_merge_ok -EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x534145c2 PDE_DATA -EXPORT_SYMBOL vmlinux 0x5341f105 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x5346eb31 qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0x536a4c63 __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x5375c6c1 omap_dss_get_device -EXPORT_SYMBOL vmlinux 0x538b8423 arp_create -EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x53c0ec3c clear_nlink -EXPORT_SYMBOL vmlinux 0x53c35b75 mmc_detect_change -EXPORT_SYMBOL vmlinux 0x53e64be3 blk_alloc_queue -EXPORT_SYMBOL vmlinux 0x53f233d0 input_release_device -EXPORT_SYMBOL vmlinux 0x540208fa is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0x5403b96d ip6_xmit -EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x5412e17d skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0x5422db49 __wait_on_buffer -EXPORT_SYMBOL vmlinux 0x5432a81c nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x54440f2b serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0x5462e6ca cdrom_media_changed -EXPORT_SYMBOL vmlinux 0x547077ec __wake_up_bit -EXPORT_SYMBOL vmlinux 0x547ce898 dispc_read_irqenable -EXPORT_SYMBOL vmlinux 0x5485c1b5 snd_pcm_lib_writev -EXPORT_SYMBOL vmlinux 0x54918ea3 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x54a3c8bb icmp_send -EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul -EXPORT_SYMBOL vmlinux 0x54b33491 of_io_request_and_map -EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window -EXPORT_SYMBOL vmlinux 0x54d003ef get_task_exe_file -EXPORT_SYMBOL vmlinux 0x54dc8eac of_graph_get_remote_port_parent -EXPORT_SYMBOL vmlinux 0x54e4fb1c blk_end_request_all -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54ea27c9 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0x54f6830a omapdss_get_default_display_name -EXPORT_SYMBOL vmlinux 0x54fc940a of_mdio_parse_addr -EXPORT_SYMBOL vmlinux 0x54fe5039 pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0x55073b9e __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x5510287f blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x5522de13 simple_link -EXPORT_SYMBOL vmlinux 0x552c5014 dev_deactivate -EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu -EXPORT_SYMBOL vmlinux 0x5553469d input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat -EXPORT_SYMBOL vmlinux 0x5587812a swiotlb_map_sg_attrs -EXPORT_SYMBOL vmlinux 0x55914344 fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0x55929809 inet6_bind -EXPORT_SYMBOL vmlinux 0x559531dd __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x55d78182 dev_err -EXPORT_SYMBOL vmlinux 0x55ddd963 snd_timer_close -EXPORT_SYMBOL vmlinux 0x55e995f9 write_cache_pages -EXPORT_SYMBOL vmlinux 0x5609f816 swiotlb_free_coherent -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0x563c8f02 bdi_destroy -EXPORT_SYMBOL vmlinux 0x5644b1c9 dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0x566b062e put_disk -EXPORT_SYMBOL vmlinux 0x567451ed vm_insert_page -EXPORT_SYMBOL vmlinux 0x5689afe7 dispc_ovl_enable -EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames -EXPORT_SYMBOL vmlinux 0x5696eedc skb_unlink -EXPORT_SYMBOL vmlinux 0x56bc2f15 dispc_ovl_set_channel_out -EXPORT_SYMBOL vmlinux 0x56c25ee6 dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56cebabb dquot_resume -EXPORT_SYMBOL vmlinux 0x56d461b7 snd_card_free -EXPORT_SYMBOL vmlinux 0x56e7c2cd param_set_bint -EXPORT_SYMBOL vmlinux 0x570ba83a snd_card_new -EXPORT_SYMBOL vmlinux 0x571b3100 get_user_pages_locked -EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x575ecd5c xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x577152e1 qdisc_list_add -EXPORT_SYMBOL vmlinux 0x577e7047 __dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x579b037f get_phy_device -EXPORT_SYMBOL vmlinux 0x57be018c input_unregister_device -EXPORT_SYMBOL vmlinux 0x57c3dc06 inet_del_offload -EXPORT_SYMBOL vmlinux 0x57c51a6b blk_stack_limits -EXPORT_SYMBOL vmlinux 0x57cde477 dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x57d08e98 remove_arg_zero -EXPORT_SYMBOL vmlinux 0x57faaa68 dm_put_table_device -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x58237e5a dquot_destroy -EXPORT_SYMBOL vmlinux 0x5827f712 dev_notice -EXPORT_SYMBOL vmlinux 0x58376f4b ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x58516557 omap_set_dma_src_data_pack -EXPORT_SYMBOL vmlinux 0x5857b7cd pgprot_kernel -EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat -EXPORT_SYMBOL vmlinux 0x588d6dbe pci_get_class -EXPORT_SYMBOL vmlinux 0x58946471 pcim_iomap_table -EXPORT_SYMBOL vmlinux 0x5897b4f1 kmap -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58d633c7 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58ead7ee input_set_capability -EXPORT_SYMBOL vmlinux 0x58ec0474 proc_remove -EXPORT_SYMBOL vmlinux 0x5945b444 param_set_int -EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map -EXPORT_SYMBOL vmlinux 0x594e1317 __modsi3 -EXPORT_SYMBOL vmlinux 0x5962ca4e d_obtain_root -EXPORT_SYMBOL vmlinux 0x596b4759 scsi_execute_req_flags -EXPORT_SYMBOL vmlinux 0x597d4fe8 netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0x598542b2 _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0x59858690 i2c_del_driver -EXPORT_SYMBOL vmlinux 0x598593c1 sock_efree -EXPORT_SYMBOL vmlinux 0x598ac84a mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0x598cd828 udp_table -EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x598f2232 pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0x599aeabb nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release -EXPORT_SYMBOL vmlinux 0x59be6631 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x59d29dab v7_flush_kern_dcache_area -EXPORT_SYMBOL vmlinux 0x59e5070d __do_div64 -EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a2f7ba9 __serio_register_driver -EXPORT_SYMBOL vmlinux 0x5a33db56 simple_getattr -EXPORT_SYMBOL vmlinux 0x5a38269a dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x5a5981be audit_log -EXPORT_SYMBOL vmlinux 0x5a9142bf register_cdrom -EXPORT_SYMBOL vmlinux 0x5aad0fcb simple_fill_super -EXPORT_SYMBOL vmlinux 0x5acfde61 sock_no_listen -EXPORT_SYMBOL vmlinux 0x5ae43482 fb_find_mode -EXPORT_SYMBOL vmlinux 0x5ae5be44 lg_lock_init -EXPORT_SYMBOL vmlinux 0x5ae857b4 get_gendisk -EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get -EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem -EXPORT_SYMBOL vmlinux 0x5b1b370d find_vma -EXPORT_SYMBOL vmlinux 0x5b640c83 vme_bus_num -EXPORT_SYMBOL vmlinux 0x5b6505a0 nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0x5b682b7e simple_release_fs -EXPORT_SYMBOL vmlinux 0x5b69d2f4 inode_sub_rsv_space -EXPORT_SYMBOL vmlinux 0x5b78ec13 generic_listxattr -EXPORT_SYMBOL vmlinux 0x5b817421 tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x5b82e6d9 inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x5b91fc7b scsi_scan_target -EXPORT_SYMBOL vmlinux 0x5b93281a snd_component_add -EXPORT_SYMBOL vmlinux 0x5ba100a1 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0x5bb6a820 __invalidate_device -EXPORT_SYMBOL vmlinux 0x5bc6211c import_iovec -EXPORT_SYMBOL vmlinux 0x5bc9f108 cancel_dirty_page -EXPORT_SYMBOL vmlinux 0x5bf76296 of_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x5bfc2de9 of_get_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x5c205d21 genphy_config_init -EXPORT_SYMBOL vmlinux 0x5c4d659a sock_create_kern -EXPORT_SYMBOL vmlinux 0x5c583015 tcp_recvmsg -EXPORT_SYMBOL vmlinux 0x5c83d010 bio_alloc_pages -EXPORT_SYMBOL vmlinux 0x5c9284a0 processor_id -EXPORT_SYMBOL vmlinux 0x5cbf9519 param_get_invbool -EXPORT_SYMBOL vmlinux 0x5cdcf53a t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0x5ce7438a bio_flush_dcache_pages -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5d21b9ef snd_ctl_find_id -EXPORT_SYMBOL vmlinux 0x5d27fe7d devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x5d3f0822 snd_ctl_boolean_stereo_info -EXPORT_SYMBOL vmlinux 0x5d4877a0 blk_requeue_request -EXPORT_SYMBOL vmlinux 0x5d50511a from_kuid -EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain -EXPORT_SYMBOL vmlinux 0x5d589f59 cpufreq_global_kobject -EXPORT_SYMBOL vmlinux 0x5d688efc inet_shutdown -EXPORT_SYMBOL vmlinux 0x5d7fc9b9 __skb_tx_hash -EXPORT_SYMBOL vmlinux 0x5d8f3422 unregister_shrinker -EXPORT_SYMBOL vmlinux 0x5da7824e snd_pcm_lib_malloc_pages -EXPORT_SYMBOL vmlinux 0x5dc5f6fd dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0x5dcf6341 outer_cache -EXPORT_SYMBOL vmlinux 0x5dd446fb posix_lock_file -EXPORT_SYMBOL vmlinux 0x5dfced5e shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x5dfea4f1 phy_driver_unregister -EXPORT_SYMBOL vmlinux 0x5e060142 block_read_full_page -EXPORT_SYMBOL vmlinux 0x5e0ed5d5 genl_unregister_family -EXPORT_SYMBOL vmlinux 0x5e0f0dc9 fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0x5e2858ba tty_port_close_start -EXPORT_SYMBOL vmlinux 0x5e299ec1 nvm_submit_io -EXPORT_SYMBOL vmlinux 0x5e4aa393 write_one_page -EXPORT_SYMBOL vmlinux 0x5e4fb457 blk_init_queue -EXPORT_SYMBOL vmlinux 0x5e7344e5 nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x5e7a5b6e eth_header_cache_update -EXPORT_SYMBOL vmlinux 0x5e7c72c9 tty_port_hangup -EXPORT_SYMBOL vmlinux 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5ea61591 tcp_filter -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ec78e10 mpage_writepages -EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 -EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f20e55d simple_transaction_get -EXPORT_SYMBOL vmlinux 0x5f27323c _raw_write_trylock -EXPORT_SYMBOL vmlinux 0x5f2cc686 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0x5f445f7c d_add_ci -EXPORT_SYMBOL vmlinux 0x5f4721af dma_sync_wait -EXPORT_SYMBOL vmlinux 0x5f6415b4 xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x5f754e5a memset -EXPORT_SYMBOL vmlinux 0x5f848b48 snd_timer_stop -EXPORT_SYMBOL vmlinux 0x5f8dfc36 ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x5f9f0b71 __nd_driver_register -EXPORT_SYMBOL vmlinux 0x5fa45964 sk_ns_capable -EXPORT_SYMBOL vmlinux 0x5fae43b6 dst_destroy -EXPORT_SYMBOL vmlinux 0x5fd268cb radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat -EXPORT_SYMBOL vmlinux 0x5fdebc45 ip6_frag_match -EXPORT_SYMBOL vmlinux 0x5fe50ab7 md_done_sync -EXPORT_SYMBOL vmlinux 0x5ff11cc3 pcibios_min_io -EXPORT_SYMBOL vmlinux 0x60055baa dispc_mgr_get_vsync_irq -EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool -EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x600ef545 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0x601776de tty_port_put -EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x602680dd pps_event -EXPORT_SYMBOL vmlinux 0x602c96f0 copy_to_user_fromio -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x60599be3 override_creds -EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number -EXPORT_SYMBOL vmlinux 0x60825868 phy_device_create -EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector -EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL vmlinux 0x60b34d89 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x60b86f61 sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x60cf757c bio_split -EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x60f5aad5 cros_ec_cmd_xfer -EXPORT_SYMBOL vmlinux 0x60f6a997 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0x60fe7610 eth_header_cache -EXPORT_SYMBOL vmlinux 0x6101dd1b mtd_concat_create -EXPORT_SYMBOL vmlinux 0x6121878f mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x61482568 mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x614bd653 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0x614f9371 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x617a218d __cond_resched_lock -EXPORT_SYMBOL vmlinux 0x61a18002 neigh_lookup -EXPORT_SYMBOL vmlinux 0x61a85f26 down_read_trylock -EXPORT_SYMBOL vmlinux 0x61a863c0 rtnl_notify -EXPORT_SYMBOL vmlinux 0x61b3560c cmdline_parts_set -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61d69dc1 __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0x61e586a0 blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x61e90e71 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x6220b4a2 crc32_le -EXPORT_SYMBOL vmlinux 0x6225637e md5_transform -EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x62296be1 qcom_scm_get_version -EXPORT_SYMBOL vmlinux 0x622e5742 pps_register_source -EXPORT_SYMBOL vmlinux 0x6237b31e pci_get_slot -EXPORT_SYMBOL vmlinux 0x623db438 mmc_put_card -EXPORT_SYMBOL vmlinux 0x6241f53c mmc_remove_host -EXPORT_SYMBOL vmlinux 0x6249b77c snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL vmlinux 0x625f9502 scsi_device_resume -EXPORT_SYMBOL vmlinux 0x6260fade blk_peek_request -EXPORT_SYMBOL vmlinux 0x626bed6e serio_unregister_port -EXPORT_SYMBOL vmlinux 0x6272ba76 sock_no_poll -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x627e311b __inode_permission -EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x6293ac51 xfrm_state_update -EXPORT_SYMBOL vmlinux 0x63008f15 dev_get_by_name -EXPORT_SYMBOL vmlinux 0x63172961 backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled -EXPORT_SYMBOL vmlinux 0x636b3461 omap_dss_get_num_overlays -EXPORT_SYMBOL vmlinux 0x638f9b75 follow_down -EXPORT_SYMBOL vmlinux 0x6391b322 skb_queue_purge -EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63a8dd58 ns_capable -EXPORT_SYMBOL vmlinux 0x63c11206 snd_pcm_period_elapsed -EXPORT_SYMBOL vmlinux 0x63c2ed83 sg_miter_next -EXPORT_SYMBOL vmlinux 0x63c30138 wait_on_page_bit -EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63c913dc sk_capable -EXPORT_SYMBOL vmlinux 0x63cb5a40 blk_rq_set_block_pc -EXPORT_SYMBOL vmlinux 0x63e81d07 jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0x63eab1f2 tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63f14434 tcf_hash_check -EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user -EXPORT_SYMBOL vmlinux 0x64030b7d pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x644bbc72 dev_printk_emit -EXPORT_SYMBOL vmlinux 0x645ae1d5 dev_addr_init -EXPORT_SYMBOL vmlinux 0x6460b4d3 make_kprojid -EXPORT_SYMBOL vmlinux 0x6461ce9d bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x647cf0de sock_edemux -EXPORT_SYMBOL vmlinux 0x64827217 bio_clone_bioset -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x649b56cb fifo_create_dflt -EXPORT_SYMBOL vmlinux 0x64a09049 __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0x64a22ff0 dispc_mgr_set_lcd_config -EXPORT_SYMBOL vmlinux 0x64a8680d inet_frags_fini -EXPORT_SYMBOL vmlinux 0x64adc837 always_delete_dentry -EXPORT_SYMBOL vmlinux 0x64d0ba18 udp_proc_register -EXPORT_SYMBOL vmlinux 0x64da3d2d phy_read_mmd_indirect -EXPORT_SYMBOL vmlinux 0x64dc6e36 vfs_rename -EXPORT_SYMBOL vmlinux 0x64e23fd2 passthru_features_check -EXPORT_SYMBOL vmlinux 0x650903a0 tty_register_device -EXPORT_SYMBOL vmlinux 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth -EXPORT_SYMBOL vmlinux 0x651a4139 test_taint -EXPORT_SYMBOL vmlinux 0x651a441a fb_blank -EXPORT_SYMBOL vmlinux 0x6529f993 keyring_clear -EXPORT_SYMBOL vmlinux 0x652f3dff vme_register_bridge -EXPORT_SYMBOL vmlinux 0x6535d7af xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x65466939 proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x6546a67b request_key_async -EXPORT_SYMBOL vmlinux 0x6555d0c9 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x6565d33f scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x6578db1f of_get_next_child -EXPORT_SYMBOL vmlinux 0x6594ca1e elevator_init -EXPORT_SYMBOL vmlinux 0x65ab5e48 padata_set_cpumask -EXPORT_SYMBOL vmlinux 0x65ba57c6 blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0x65bb8bc2 dev_add_pack -EXPORT_SYMBOL vmlinux 0x65c06dfc poll_initwait -EXPORT_SYMBOL vmlinux 0x65ceb127 mmc_gpio_request_ro -EXPORT_SYMBOL vmlinux 0x65d21822 pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier -EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65ddf6e5 sock_no_accept -EXPORT_SYMBOL vmlinux 0x65ec293d copy_page_from_iter -EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x6603a1ed snd_jack_add_new_kctl -EXPORT_SYMBOL vmlinux 0x6604f0d6 dentry_open -EXPORT_SYMBOL vmlinux 0x662619cc __starget_for_each_device -EXPORT_SYMBOL vmlinux 0x6626f3b0 devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0x66432f67 padata_free -EXPORT_SYMBOL vmlinux 0x66433706 xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0x6645ed92 ab3100_event_unregister -EXPORT_SYMBOL vmlinux 0x6654bcae snd_soc_alloc_ac97_codec -EXPORT_SYMBOL vmlinux 0x666ddd90 from_kgid_munged -EXPORT_SYMBOL vmlinux 0x6679c922 __breadahead -EXPORT_SYMBOL vmlinux 0x667f6253 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x66a4764a pcim_enable_device -EXPORT_SYMBOL vmlinux 0x66a8deae user_revoke -EXPORT_SYMBOL vmlinux 0x66b661db devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x66ce26ac dev_mc_sync -EXPORT_SYMBOL vmlinux 0x66d96857 inet_ioctl -EXPORT_SYMBOL vmlinux 0x66edcd07 i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0x66ff3181 netdev_err -EXPORT_SYMBOL vmlinux 0x6711987f jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0x6724cba0 mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0x672d0dbc pci_read_vpd -EXPORT_SYMBOL vmlinux 0x673fbd44 blk_end_request_cur -EXPORT_SYMBOL vmlinux 0x6767b9ec ether_setup -EXPORT_SYMBOL vmlinux 0x676bbc0f _set_bit -EXPORT_SYMBOL vmlinux 0x6771fbfe sock_create -EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create -EXPORT_SYMBOL vmlinux 0x679f808b alloc_file -EXPORT_SYMBOL vmlinux 0x67b21704 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67cca074 tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0x67e02294 kobject_set_name -EXPORT_SYMBOL vmlinux 0x67ef45e9 inet_offloads -EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x680afa40 dentry_needs_remove_privs -EXPORT_SYMBOL vmlinux 0x68251d74 __pagevec_lru_add -EXPORT_SYMBOL vmlinux 0x68446625 cpufreq_power_cooling_register -EXPORT_SYMBOL vmlinux 0x6852f719 iget_locked -EXPORT_SYMBOL vmlinux 0x685c3391 kernel_param_lock -EXPORT_SYMBOL vmlinux 0x68677a39 udp_ioctl -EXPORT_SYMBOL vmlinux 0x686d890c nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0x6876ce4e vme_dma_request -EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x68869bae panic_notifier_list -EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages -EXPORT_SYMBOL vmlinux 0x68a24153 snd_pcm_format_physical_width -EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x68bdeba9 bio_init -EXPORT_SYMBOL vmlinux 0x68c1a974 vme_dma_list_free -EXPORT_SYMBOL vmlinux 0x68c4205f blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x68f4296a scsi_print_sense -EXPORT_SYMBOL vmlinux 0x68f42c78 of_dev_get -EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s -EXPORT_SYMBOL vmlinux 0x69012ca5 __module_put_and_exit -EXPORT_SYMBOL vmlinux 0x6915eb38 down_interruptible -EXPORT_SYMBOL vmlinux 0x69710ace cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x697c0f91 mtd_concat_destroy -EXPORT_SYMBOL vmlinux 0x698187de __bio_clone_fast -EXPORT_SYMBOL vmlinux 0x698ae6ef cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0x699046f4 ptp_find_pin -EXPORT_SYMBOL vmlinux 0x69977c2f pci_set_dma_max_seg_size -EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource -EXPORT_SYMBOL vmlinux 0x69a4edfd ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint -EXPORT_SYMBOL vmlinux 0x69b6f8d9 omap_set_dma_transfer_params -EXPORT_SYMBOL vmlinux 0x69c8c72f param_ops_bint -EXPORT_SYMBOL vmlinux 0x69d6f954 uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0x69db851a inet_frag_destroy -EXPORT_SYMBOL vmlinux 0x69e08f92 sock_no_ioctl -EXPORT_SYMBOL vmlinux 0x69ea9684 find_get_pages_contig -EXPORT_SYMBOL vmlinux 0x69f20aff snd_pcm_hw_constraint_list -EXPORT_SYMBOL vmlinux 0x69fc2d5b xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0x6a0066dd loop_backing_file -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable -EXPORT_SYMBOL vmlinux 0x6a9e743c sock_kmalloc -EXPORT_SYMBOL vmlinux 0x6aa2fd79 dev_change_proto_down -EXPORT_SYMBOL vmlinux 0x6ab06649 generic_getxattr -EXPORT_SYMBOL vmlinux 0x6ab581b3 of_n_addr_cells -EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x6adfc319 twl6040_reg_read -EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6af1c22f cros_ec_prepare_tx -EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname -EXPORT_SYMBOL vmlinux 0x6b219b08 pcim_pin_device -EXPORT_SYMBOL vmlinux 0x6b2b399c fsnotify_get_group -EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b5b6788 pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0x6b690126 vfs_read -EXPORT_SYMBOL vmlinux 0x6b714db5 rfkill_alloc -EXPORT_SYMBOL vmlinux 0x6bb33dc2 bitmap_start_sync -EXPORT_SYMBOL vmlinux 0x6bb5f565 sock_kfree_s -EXPORT_SYMBOL vmlinux 0x6bb7bd6c disk_stack_limits -EXPORT_SYMBOL vmlinux 0x6bbbee55 tso_build_hdr -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bc5f2f9 tcp_proc_unregister -EXPORT_SYMBOL vmlinux 0x6bcb88c7 mmc_request_done -EXPORT_SYMBOL vmlinux 0x6bd73ba0 dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer -EXPORT_SYMBOL vmlinux 0x6c126be7 max8998_bulk_read -EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn -EXPORT_SYMBOL vmlinux 0x6c344273 dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x6c346917 max8925_reg_read -EXPORT_SYMBOL vmlinux 0x6c40abb4 abx500_get_chip_id -EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat -EXPORT_SYMBOL vmlinux 0x6c5e9f05 devm_gpiod_get_array -EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c6af706 blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0x6c6cdd4d wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min -EXPORT_SYMBOL vmlinux 0x6c86c635 udp_sendmsg -EXPORT_SYMBOL vmlinux 0x6c908323 iov_iter_alignment -EXPORT_SYMBOL vmlinux 0x6c9bc238 mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0x6cb6d583 ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0x6cb8e589 touch_buffer -EXPORT_SYMBOL vmlinux 0x6cbc9a6a f_setown -EXPORT_SYMBOL vmlinux 0x6cbd893d fb_validate_mode -EXPORT_SYMBOL vmlinux 0x6ccc00eb vme_dma_list_add -EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy -EXPORT_SYMBOL vmlinux 0x6cf9f148 sock_no_setsockopt -EXPORT_SYMBOL vmlinux 0x6cffd4fb blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0x6d010814 dev_remove_offload -EXPORT_SYMBOL vmlinux 0x6d06d2ce xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x6d0ff711 snd_card_free_when_closed -EXPORT_SYMBOL vmlinux 0x6d110220 unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x6d1c44dd lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d30a6c1 __frontswap_test -EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x6d441802 cdrom_check_events -EXPORT_SYMBOL vmlinux 0x6d592fa0 migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0x6d662533 _find_first_bit_le -EXPORT_SYMBOL vmlinux 0x6d6fd302 blkdev_get -EXPORT_SYMBOL vmlinux 0x6d8b298c xfrm_state_add -EXPORT_SYMBOL vmlinux 0x6d983312 security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0x6d9d815e dev_mc_del -EXPORT_SYMBOL vmlinux 0x6dbf5b35 snd_dma_alloc_pages_fallback -EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6df66022 ioctl_by_bdev -EXPORT_SYMBOL vmlinux 0x6e03b248 inet_frag_kill -EXPORT_SYMBOL vmlinux 0x6e26c597 scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0x6e40aa06 scsi_device_put -EXPORT_SYMBOL vmlinux 0x6e5a1b0b vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0x6e61ece7 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x6e6514ed radix_tree_insert -EXPORT_SYMBOL vmlinux 0x6e706870 neigh_destroy -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e7b3df3 key_put -EXPORT_SYMBOL vmlinux 0x6e7f6caa devfreq_interval_update -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6ea6ae29 vfs_writev -EXPORT_SYMBOL vmlinux 0x6eab9139 snd_register_oss_device -EXPORT_SYMBOL vmlinux 0x6eaf69c4 dev_mc_add -EXPORT_SYMBOL vmlinux 0x6ebe2330 vfs_iter_read -EXPORT_SYMBOL vmlinux 0x6ec9ccdb _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0x6ed01938 fput -EXPORT_SYMBOL vmlinux 0x6ee24ea5 forget_cached_acl -EXPORT_SYMBOL vmlinux 0x6ee6027d __scsi_add_device -EXPORT_SYMBOL vmlinux 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL vmlinux 0x6f01d991 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash -EXPORT_SYMBOL vmlinux 0x6f80b3ce kmem_cache_create -EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag -EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fdf0c42 netdev_crit -EXPORT_SYMBOL vmlinux 0x6ff52926 netif_carrier_off -EXPORT_SYMBOL vmlinux 0x7008a08a neigh_for_each -EXPORT_SYMBOL vmlinux 0x70097aa0 nand_bch_free -EXPORT_SYMBOL vmlinux 0x70155561 __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0x702c5116 input_register_device -EXPORT_SYMBOL vmlinux 0x7033be8d tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0x7042040c sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq -EXPORT_SYMBOL vmlinux 0x7062b4cd cmdline_parts_free -EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync -EXPORT_SYMBOL vmlinux 0x7079e067 xfrm_find_acq -EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x707fdf38 nand_scan_ident -EXPORT_SYMBOL vmlinux 0x708bd93a kernel_read -EXPORT_SYMBOL vmlinux 0x709600b3 single_release -EXPORT_SYMBOL vmlinux 0x70b76a94 of_gpio_simple_xlate -EXPORT_SYMBOL vmlinux 0x70e39dae dss_uninstall_mgr_ops -EXPORT_SYMBOL vmlinux 0x70f65fb4 __register_binfmt -EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match -EXPORT_SYMBOL vmlinux 0x7106101f netdev_emerg -EXPORT_SYMBOL vmlinux 0x7119db7f omap_dss_pal_timings -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x712ed37b radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x7148a3c9 __cleancache_get_page -EXPORT_SYMBOL vmlinux 0x714e5512 ptp_clock_index -EXPORT_SYMBOL vmlinux 0x7167bb69 sock_update_memcg -EXPORT_SYMBOL vmlinux 0x7169102e omap_dss_ntsc_timings -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x7185d533 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0x719c9e1c dcb_setapp -EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev -EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71b76eea ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x71c90087 memcmp -EXPORT_SYMBOL vmlinux 0x71f65175 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x71ffcb9e register_gifconf -EXPORT_SYMBOL vmlinux 0x720899f8 dst_discard_out -EXPORT_SYMBOL vmlinux 0x72089bf4 d_alloc -EXPORT_SYMBOL vmlinux 0x7216d19a release_firmware -EXPORT_SYMBOL vmlinux 0x72234ae8 jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x72248694 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x72350130 ___ratelimit -EXPORT_SYMBOL vmlinux 0x7249fb76 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x72531d1d clear_wb_congested -EXPORT_SYMBOL vmlinux 0x726eae9e netdev_all_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x727b5802 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0x7281d2ca __check_sticky -EXPORT_SYMBOL vmlinux 0x7296d8a2 memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0x729cf37c path_put -EXPORT_SYMBOL vmlinux 0x72b9492b textsearch_prepare -EXPORT_SYMBOL vmlinux 0x72d58de9 kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0x72e7bc56 dquot_quota_off -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x72efc25c truncate_setsize -EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config -EXPORT_SYMBOL vmlinux 0x731c3529 fb_class -EXPORT_SYMBOL vmlinux 0x73231bfe input_flush_device -EXPORT_SYMBOL vmlinux 0x733ac6c3 dev_trans_start -EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf -EXPORT_SYMBOL vmlinux 0x733e8357 param_set_uint -EXPORT_SYMBOL vmlinux 0x73736f90 registered_fb -EXPORT_SYMBOL vmlinux 0x7381cb91 nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0x738ad79b vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x73938ff9 of_parse_phandle_with_args -EXPORT_SYMBOL vmlinux 0x7393a41e iov_iter_npages -EXPORT_SYMBOL vmlinux 0x739fa1b5 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x73d41332 sock_init_data -EXPORT_SYMBOL vmlinux 0x73e1b71f udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy -EXPORT_SYMBOL vmlinux 0x73f2e6b8 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0x73f560c3 simple_open -EXPORT_SYMBOL vmlinux 0x73f8a8b7 pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x73fa313e parent_mem_cgroup -EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x74238f8b dev_remove_pack -EXPORT_SYMBOL vmlinux 0x74347d6b generic_pipe_buf_confirm -EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x7478a07f padata_register_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x749074ac pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x74ad22f5 phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0x74afaaba set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74ca9a2d pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0x74d7cca8 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74f80ed3 tcp_prequeue -EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv -EXPORT_SYMBOL vmlinux 0x7515c139 blk_queue_resize_tags -EXPORT_SYMBOL vmlinux 0x753ad0f1 start_tty -EXPORT_SYMBOL vmlinux 0x754445b2 pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0x754bdea7 of_match_device -EXPORT_SYMBOL vmlinux 0x7561a5af load_nls_default -EXPORT_SYMBOL vmlinux 0x75713f48 of_get_named_gpio_flags -EXPORT_SYMBOL vmlinux 0x757fa796 kill_litter_super -EXPORT_SYMBOL vmlinux 0x75850d01 __vmalloc -EXPORT_SYMBOL vmlinux 0x758f1a9c blk_queue_make_request -EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 -EXPORT_SYMBOL vmlinux 0x75ae0f44 tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0x75b57cf7 reservation_object_add_excl_fence -EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc -EXPORT_SYMBOL vmlinux 0x75e9c4c0 nvm_put_blk -EXPORT_SYMBOL vmlinux 0x75ed0597 dentry_path_raw -EXPORT_SYMBOL vmlinux 0x75fb5910 snd_pcm_open_substream -EXPORT_SYMBOL vmlinux 0x7609136c serio_unregister_driver -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x76237e8a param_set_copystring -EXPORT_SYMBOL vmlinux 0x762d52fb pneigh_lookup -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x764bc91e ___pskb_trim -EXPORT_SYMBOL vmlinux 0x764bd77c request_resource -EXPORT_SYMBOL vmlinux 0x765aaad2 nla_append -EXPORT_SYMBOL vmlinux 0x765fb4b4 mmc_wait_for_app_cmd -EXPORT_SYMBOL vmlinux 0x7662477d udp_disconnect -EXPORT_SYMBOL vmlinux 0x768ae606 pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x769728a9 gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0x7698852e proto_register -EXPORT_SYMBOL vmlinux 0x7699eedb nf_log_unset -EXPORT_SYMBOL vmlinux 0x76cf47f6 __aeabi_llsl -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint -EXPORT_SYMBOL vmlinux 0x76d9bf11 crc32_be -EXPORT_SYMBOL vmlinux 0x76e610de nvm_register_target -EXPORT_SYMBOL vmlinux 0x76f6c5ef kmalloc_order -EXPORT_SYMBOL vmlinux 0x7707e540 put_tty_driver -EXPORT_SYMBOL vmlinux 0x771cb7ff kill_fasync -EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x772519be gen_pool_destroy -EXPORT_SYMBOL vmlinux 0x774a6528 splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0x77910a43 mount_subtree -EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div -EXPORT_SYMBOL vmlinux 0x7798ba08 security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll -EXPORT_SYMBOL vmlinux 0x77a67cf4 netlink_unicast -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77fa1a63 __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x7810a88b fence_signal_locked -EXPORT_SYMBOL vmlinux 0x7817a664 ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x7820f97b pci_clear_mwi -EXPORT_SYMBOL vmlinux 0x782b7cf7 dump_page -EXPORT_SYMBOL vmlinux 0x7833deb2 pgprot_user -EXPORT_SYMBOL vmlinux 0x7835c393 xfrm_register_mode -EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t -EXPORT_SYMBOL vmlinux 0x783b977a kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0x784e8a57 simple_nosetlease -EXPORT_SYMBOL vmlinux 0x7852ef27 of_mm_gpiochip_remove -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x78a2d50f inode_init_once -EXPORT_SYMBOL vmlinux 0x78ab0681 skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x78b6ac5c of_translate_dma_address -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78e23efe uart_write_wakeup -EXPORT_SYMBOL vmlinux 0x78ff4499 unlock_rename -EXPORT_SYMBOL vmlinux 0x79107416 ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0x791b0400 napi_gro_receive -EXPORT_SYMBOL vmlinux 0x79211db4 ihold -EXPORT_SYMBOL vmlinux 0x79246907 of_find_node_by_name -EXPORT_SYMBOL vmlinux 0x7929e582 iterate_mounts -EXPORT_SYMBOL vmlinux 0x793001f5 get_mm_exe_file -EXPORT_SYMBOL vmlinux 0x79418513 vm_insert_mixed -EXPORT_SYMBOL vmlinux 0x7958ec65 phy_ethtool_sset -EXPORT_SYMBOL vmlinux 0x7962510c inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0x797aa0a1 mmc_stop_bkops -EXPORT_SYMBOL vmlinux 0x79981fec module_refcount -EXPORT_SYMBOL vmlinux 0x79a132b6 max8998_update_reg -EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79e00edf flow_cache_init -EXPORT_SYMBOL vmlinux 0x7a1f2611 dispc_mgr_set_timings -EXPORT_SYMBOL vmlinux 0x7a2add7d current_kernel_time64 -EXPORT_SYMBOL vmlinux 0x7a35e806 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x7a36ce56 blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0x7a41bb30 scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0x7a423a4e blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0x7a4497db kzfree -EXPORT_SYMBOL vmlinux 0x7a466173 load_nls -EXPORT_SYMBOL vmlinux 0x7a539861 netdev_master_upper_dev_link_private -EXPORT_SYMBOL vmlinux 0x7a6e2c01 inet_accept -EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7aad61b3 keyring_search -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7af5a8c8 flow_cache_lookup -EXPORT_SYMBOL vmlinux 0x7af85856 devm_gpio_request_one -EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf -EXPORT_SYMBOL vmlinux 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL vmlinux 0x7b003673 __scsi_print_sense -EXPORT_SYMBOL vmlinux 0x7b01cee7 sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array -EXPORT_SYMBOL vmlinux 0x7b16df3c skb_pull -EXPORT_SYMBOL vmlinux 0x7b1ade38 lz4_decompress -EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0x7b3dfb7d seq_file_path -EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap -EXPORT_SYMBOL vmlinux 0x7b62aea6 rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0x7b65df47 __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x7b6c4041 bitmap_startwrite -EXPORT_SYMBOL vmlinux 0x7b70113c i2c_register_driver -EXPORT_SYMBOL vmlinux 0x7b7035f9 scsi_register_driver -EXPORT_SYMBOL vmlinux 0x7b775c9b pci_restore_state -EXPORT_SYMBOL vmlinux 0x7ba463d2 shdma_chan_probe -EXPORT_SYMBOL vmlinux 0x7bb99506 param_ops_byte -EXPORT_SYMBOL vmlinux 0x7bd333d9 csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x7bdc42f6 blk_get_queue -EXPORT_SYMBOL vmlinux 0x7bdde9cd lru_cache_add_file -EXPORT_SYMBOL vmlinux 0x7be8afc0 blkdev_fsync -EXPORT_SYMBOL vmlinux 0x7bea0cec iterate_dir -EXPORT_SYMBOL vmlinux 0x7c0151fc tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x7c1372e8 panic -EXPORT_SYMBOL vmlinux 0x7c162019 napi_complete_done -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c5e9809 inet_select_addr -EXPORT_SYMBOL vmlinux 0x7c61340c __release_region -EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read -EXPORT_SYMBOL vmlinux 0x7c9f3d7c tcp_md5_hash_header -EXPORT_SYMBOL vmlinux 0x7ca894f4 skb_trim -EXPORT_SYMBOL vmlinux 0x7cad1b43 padata_start -EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down -EXPORT_SYMBOL vmlinux 0x7cb6da75 try_to_writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x7cc035a7 __ucmpdi2 -EXPORT_SYMBOL vmlinux 0x7ccda9f6 blk_queue_stack_limits -EXPORT_SYMBOL vmlinux 0x7cd4abd5 ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7ce9f988 dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7cfa1292 rt6_lookup -EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies -EXPORT_SYMBOL vmlinux 0x7d36be01 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0x7d4415d6 bio_copy_data -EXPORT_SYMBOL vmlinux 0x7d497424 blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0x7d506261 netif_napi_del -EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug -EXPORT_SYMBOL vmlinux 0x7d865442 read_code -EXPORT_SYMBOL vmlinux 0x7db2742c __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x7dccc294 proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0x7de9fd36 kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7e1b7931 blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0x7e398f4b snd_jack_new -EXPORT_SYMBOL vmlinux 0x7e467891 input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0x7e5f0daa snd_device_free -EXPORT_SYMBOL vmlinux 0x7e6fa3ef tcf_hash_new_index -EXPORT_SYMBOL vmlinux 0x7e7d80ef __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x7e80d4ce dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0x7e8be22e ppp_input -EXPORT_SYMBOL vmlinux 0x7e932f5f skb_queue_head -EXPORT_SYMBOL vmlinux 0x7e9efe8e complete_and_exit -EXPORT_SYMBOL vmlinux 0x7ea24be9 i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0x7eac5ef8 nand_bch_calculate_ecc -EXPORT_SYMBOL vmlinux 0x7ee4dde5 input_event -EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x7ee7f093 dispc_ovl_compute_fifo_thresholds -EXPORT_SYMBOL vmlinux 0x7eebb966 mntput -EXPORT_SYMBOL vmlinux 0x7f01c771 dma_async_device_register -EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f2b144b neigh_seq_start -EXPORT_SYMBOL vmlinux 0x7f2efa2d __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0x7f56701d generic_read_dir -EXPORT_SYMBOL vmlinux 0x7f575895 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done -EXPORT_SYMBOL vmlinux 0x7f63b31e _memcpy_toio -EXPORT_SYMBOL vmlinux 0x7f7ad0fd neigh_update -EXPORT_SYMBOL vmlinux 0x7f91bb43 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0x7f928e3f component_match_add -EXPORT_SYMBOL vmlinux 0x7fae5c10 tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0x7fb193e2 param_set_charp -EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fe3ce8a sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0x7fe9d29a set_blocksize -EXPORT_SYMBOL vmlinux 0x800e4ffa __muldi3 -EXPORT_SYMBOL vmlinux 0x800e5ae4 omapdss_default_get_resolution -EXPORT_SYMBOL vmlinux 0x800faefb vfs_whiteout -EXPORT_SYMBOL vmlinux 0x803109d1 dev_emerg -EXPORT_SYMBOL vmlinux 0x80360b57 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0x8047bfb6 blk_queue_find_tag -EXPORT_SYMBOL vmlinux 0x804aabdf idr_is_empty -EXPORT_SYMBOL vmlinux 0x805db6a3 sk_wait_data -EXPORT_SYMBOL vmlinux 0x8073ced2 netlink_net_capable -EXPORT_SYMBOL vmlinux 0x808e97ab __mmc_claim_host -EXPORT_SYMBOL vmlinux 0x80b931e4 i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0x80bf4bee processor -EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80d92115 netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0x80db6178 snd_ctl_rename_id -EXPORT_SYMBOL vmlinux 0x80ec3a40 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0x80ecb4ea debugfs_create_automount -EXPORT_SYMBOL vmlinux 0x80f19cd1 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x80fa68e7 dmam_alloc_coherent -EXPORT_SYMBOL vmlinux 0x81073dfc of_phy_register_fixed_link -EXPORT_SYMBOL vmlinux 0x810dea5b netif_device_attach -EXPORT_SYMBOL vmlinux 0x811ac9ec vme_new_dma_list -EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x818a6536 of_get_property -EXPORT_SYMBOL vmlinux 0x81ab4346 mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0x81b69e41 snd_ctl_enum_info -EXPORT_SYMBOL vmlinux 0x81bc7e85 tcf_exts_validate -EXPORT_SYMBOL vmlinux 0x81ca140e pci_lost_interrupt -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81f1f901 in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x81f4d8de clkdev_drop -EXPORT_SYMBOL vmlinux 0x81fd490e key_payload_reserve -EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill -EXPORT_SYMBOL vmlinux 0x821a2409 put_cmsg -EXPORT_SYMBOL vmlinux 0x821ecbc8 drop_super -EXPORT_SYMBOL vmlinux 0x822137e2 arm_heavy_mb -EXPORT_SYMBOL vmlinux 0x822a17c0 __dquot_transfer -EXPORT_SYMBOL vmlinux 0x82318ac7 __brelse -EXPORT_SYMBOL vmlinux 0x824a4367 tmio_core_mmc_pwr -EXPORT_SYMBOL vmlinux 0x824a6690 pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes -EXPORT_SYMBOL vmlinux 0x8288fdd7 generic_block_bmap -EXPORT_SYMBOL vmlinux 0x8295ed7b pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0x82a811ab generic_file_read_iter -EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched -EXPORT_SYMBOL vmlinux 0x82c3e279 padata_unregister_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x82d02f2b dentry_update_name_case -EXPORT_SYMBOL vmlinux 0x82d21f89 param_ops_ulong -EXPORT_SYMBOL vmlinux 0x82e6890d fb_prepare_logo -EXPORT_SYMBOL vmlinux 0x82e98538 inet_frags_exit_net -EXPORT_SYMBOL vmlinux 0x830037ed sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x831396c3 fence_signal -EXPORT_SYMBOL vmlinux 0x8320bea8 __umodsi3 -EXPORT_SYMBOL vmlinux 0x832343fe sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0x8332ae11 neigh_xmit -EXPORT_SYMBOL vmlinux 0x83565584 nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0x835adfef pipe_lock -EXPORT_SYMBOL vmlinux 0x836341c2 sock_no_sendpage -EXPORT_SYMBOL vmlinux 0x8372cd2f __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x8375d79d ida_destroy -EXPORT_SYMBOL vmlinux 0x837a7062 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0x8381aa1a block_write_full_page -EXPORT_SYMBOL vmlinux 0x838eae00 snd_device_new -EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x83990141 inet6_add_offload -EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init -EXPORT_SYMBOL vmlinux 0x83b1f8e9 key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0x83c258c3 pm860x_reg_write -EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83d390e6 iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0x83f9db63 free_buffer_head -EXPORT_SYMBOL vmlinux 0x84044fbe __neigh_create -EXPORT_SYMBOL vmlinux 0x84120f76 tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0x8428260f alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0x844102d5 dma_declare_coherent_memory -EXPORT_SYMBOL vmlinux 0x84440c4b inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0x84603002 nand_scan_tail -EXPORT_SYMBOL vmlinux 0x846ea1c3 mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0x847bd828 unregister_qdisc -EXPORT_SYMBOL vmlinux 0x847ea797 dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0x8489bafa tcp_check_req -EXPORT_SYMBOL vmlinux 0x84b183ae strncmp -EXPORT_SYMBOL vmlinux 0x84b7fb80 bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x84e468ca dev_mc_unsync -EXPORT_SYMBOL vmlinux 0x84e567e9 finish_open -EXPORT_SYMBOL vmlinux 0x84e9a6d1 blk_complete_request -EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload -EXPORT_SYMBOL vmlinux 0x8514ecc9 adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x854cd073 arm_dma_ops -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x85688955 devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0x85765fee omap_enable_dma_irq -EXPORT_SYMBOL vmlinux 0x858057fa snd_unregister_oss_device -EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x8608030c kmap_to_page -EXPORT_SYMBOL vmlinux 0x860b664f of_get_mac_address -EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x865457f8 set_bh_page -EXPORT_SYMBOL vmlinux 0x86559eb7 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0x8655c6a9 pci_pme_capable -EXPORT_SYMBOL vmlinux 0x865a2772 done_path_create -EXPORT_SYMBOL vmlinux 0x86638d73 inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0x866a808d locks_free_lock -EXPORT_SYMBOL vmlinux 0x866f1a8a devm_memremap -EXPORT_SYMBOL vmlinux 0x868429ea skb_checksum_help -EXPORT_SYMBOL vmlinux 0x86860195 dss_feat_get_supported_displays -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x86a4889a kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0x86bab857 i2c_release_client -EXPORT_SYMBOL vmlinux 0x86ec66a3 of_device_unregister -EXPORT_SYMBOL vmlinux 0x86edf667 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x87003790 fence_init -EXPORT_SYMBOL vmlinux 0x87071d0d pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0x871bc8c4 nand_calculate_ecc -EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags -EXPORT_SYMBOL vmlinux 0x872fce39 padata_stop -EXPORT_SYMBOL vmlinux 0x87398e2d rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x873e3c5f ioremap_wc -EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale -EXPORT_SYMBOL vmlinux 0x87961c69 touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x87aae00a iget5_locked -EXPORT_SYMBOL vmlinux 0x87b25c64 snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL vmlinux 0x87b7a87c netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x87d5859a unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x87e8c4af mfd_add_devices -EXPORT_SYMBOL vmlinux 0x882f5975 d_tmpfile -EXPORT_SYMBOL vmlinux 0x885c8daa swiotlb_dma_supported -EXPORT_SYMBOL vmlinux 0x8862fbac crypto_sha256_update -EXPORT_SYMBOL vmlinux 0x886bc76f mempool_resize -EXPORT_SYMBOL vmlinux 0x889146fc pci_find_pcie_root_port -EXPORT_SYMBOL vmlinux 0x88a4ab3b devm_free_irq -EXPORT_SYMBOL vmlinux 0x88b19f45 system_serial -EXPORT_SYMBOL vmlinux 0x88f577eb __frontswap_store -EXPORT_SYMBOL vmlinux 0x88fbf10c netpoll_print_options -EXPORT_SYMBOL vmlinux 0x8932f39f __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0x8964e820 pps_lookup_dev -EXPORT_SYMBOL vmlinux 0x897b65a1 blk_execute_rq -EXPORT_SYMBOL vmlinux 0x899253c4 blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0x8993f9af blk_mq_add_to_requeue_list -EXPORT_SYMBOL vmlinux 0x899d2141 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0x89a307d7 netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0x89a727b0 pci_reenable_device -EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0x89b7d1aa inet_sendpage -EXPORT_SYMBOL vmlinux 0x89c037ff sock_sendmsg -EXPORT_SYMBOL vmlinux 0x89c45d00 of_graph_get_endpoint_by_regs -EXPORT_SYMBOL vmlinux 0x89cb76fa qdisc_watchdog_schedule_ns -EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x89df7042 fbcon_set_rotate -EXPORT_SYMBOL vmlinux 0x89e6123d default_llseek -EXPORT_SYMBOL vmlinux 0x89ff29cd ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0x8a07b4de mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x8a0f4230 rename_lock -EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies -EXPORT_SYMBOL vmlinux 0x8a3832f2 inet_register_protosw -EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a4fa83b __aeabi_llsr -EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning -EXPORT_SYMBOL vmlinux 0x8a699fd4 __blk_end_request -EXPORT_SYMBOL vmlinux 0x8a6cc59f seq_lseek -EXPORT_SYMBOL vmlinux 0x8a7be1a4 d_splice_alias -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a95f26a rwsem_down_write_failed -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8a99a183 inode_claim_rsv_space -EXPORT_SYMBOL vmlinux 0x8a9e56b2 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0x8ab348ed fbcon_rotate_ud -EXPORT_SYMBOL vmlinux 0x8ae4b4f4 ab3100_event_register -EXPORT_SYMBOL vmlinux 0x8b1620a1 tty_do_resize -EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last -EXPORT_SYMBOL vmlinux 0x8b3d2331 __get_user_pages -EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x8b472434 pci_assign_resource -EXPORT_SYMBOL vmlinux 0x8b4bce66 dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0x8b4c48c7 phy_device_remove -EXPORT_SYMBOL vmlinux 0x8b4cb494 of_device_is_available -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b70d2ab scsi_unregister -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b922ffa key_invalidate -EXPORT_SYMBOL vmlinux 0x8badbaba insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0x8bc05e33 mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0x8bc06dc0 dquot_file_open -EXPORT_SYMBOL vmlinux 0x8bd6ea68 vme_irq_free -EXPORT_SYMBOL vmlinux 0x8c0e82ee __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x8c32eaff md_set_array_sectors -EXPORT_SYMBOL vmlinux 0x8c4988fd _snd_ctl_add_slave -EXPORT_SYMBOL vmlinux 0x8c4ae52c __nlmsg_put -EXPORT_SYMBOL vmlinux 0x8c5a2ba1 nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x8c75c89c tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x8c88185b blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0x8c9f6966 inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x8cb1cf07 generic_pipe_buf_steal -EXPORT_SYMBOL vmlinux 0x8cb31534 inet6_ioctl -EXPORT_SYMBOL vmlinux 0x8cc05346 register_sound_dsp -EXPORT_SYMBOL vmlinux 0x8cd8c339 omap_free_dma -EXPORT_SYMBOL vmlinux 0x8ce9eb47 nd_btt_probe -EXPORT_SYMBOL vmlinux 0x8cfcf75c nand_flash_ids -EXPORT_SYMBOL vmlinux 0x8d0d8485 kmalloc_caches -EXPORT_SYMBOL vmlinux 0x8d134c39 idr_replace -EXPORT_SYMBOL vmlinux 0x8d2db1f5 pci_bus_put -EXPORT_SYMBOL vmlinux 0x8d38ee9d kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d5a09c6 mmc_interrupt_hpi -EXPORT_SYMBOL vmlinux 0x8d6091c2 netlink_set_err -EXPORT_SYMBOL vmlinux 0x8d6b2ce1 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x8d6c1eff mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0x8d6f81b4 __div64_32 -EXPORT_SYMBOL vmlinux 0x8d72495b __getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d7cb54e bdget_disk -EXPORT_SYMBOL vmlinux 0x8d893463 sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0x8d89761a vmap -EXPORT_SYMBOL vmlinux 0x8d8b6353 proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0x8da602d5 amba_release_regions -EXPORT_SYMBOL vmlinux 0x8dcafcd6 vme_master_mmap -EXPORT_SYMBOL vmlinux 0x8dcff6e2 __pv_offset -EXPORT_SYMBOL vmlinux 0x8dd36d02 device_get_mac_address -EXPORT_SYMBOL vmlinux 0x8dd37924 key_task_permission -EXPORT_SYMBOL vmlinux 0x8de1c4a5 lwtunnel_get_encap_size -EXPORT_SYMBOL vmlinux 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL vmlinux 0x8df65395 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0x8dfefd12 vme_bus_type -EXPORT_SYMBOL vmlinux 0x8e03a878 write_dirty_buffer -EXPORT_SYMBOL vmlinux 0x8e1f75c7 nobh_write_end -EXPORT_SYMBOL vmlinux 0x8e46592e key_alloc -EXPORT_SYMBOL vmlinux 0x8e48cd89 kernel_setsockopt -EXPORT_SYMBOL vmlinux 0x8e4e4505 insert_inode_locked -EXPORT_SYMBOL vmlinux 0x8e51385a twl6040_power -EXPORT_SYMBOL vmlinux 0x8e59e885 security_inode_readlink -EXPORT_SYMBOL vmlinux 0x8e6433b1 blk_rq_map_user -EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x8e7bf2ce dma_pool_create -EXPORT_SYMBOL vmlinux 0x8e865d3c arm_delay_ops -EXPORT_SYMBOL vmlinux 0x8e8e33a7 tcf_destroy_chain -EXPORT_SYMBOL vmlinux 0x8eaed044 kill_bdev -EXPORT_SYMBOL vmlinux 0x8ec5c313 __pagevec_release -EXPORT_SYMBOL vmlinux 0x8eca0b3d da903x_query_status -EXPORT_SYMBOL vmlinux 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL vmlinux 0x8ed1330a fb_set_cmap -EXPORT_SYMBOL vmlinux 0x8eded610 of_dev_put -EXPORT_SYMBOL vmlinux 0x8f1ae357 filp_close -EXPORT_SYMBOL vmlinux 0x8f2cf583 nvm_put_blk_unlocked -EXPORT_SYMBOL vmlinux 0x8f37e386 xfrm_register_type -EXPORT_SYMBOL vmlinux 0x8f393aff scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x8f4ad630 d_invalidate -EXPORT_SYMBOL vmlinux 0x8f595b11 snd_major -EXPORT_SYMBOL vmlinux 0x8f678b07 __stack_chk_guard -EXPORT_SYMBOL vmlinux 0x8f755d18 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0x8f7eace7 scm_detach_fds -EXPORT_SYMBOL vmlinux 0x8f942c0b pci_scan_single_device -EXPORT_SYMBOL vmlinux 0x8f9787b5 blk_start_request -EXPORT_SYMBOL vmlinux 0x8fa4130a omap_set_dma_callback -EXPORT_SYMBOL vmlinux 0x8fceb126 sk_free -EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin -EXPORT_SYMBOL vmlinux 0x8fd9dcea pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 -EXPORT_SYMBOL vmlinux 0x901e4338 get_acl -EXPORT_SYMBOL vmlinux 0x901f961d register_quota_format -EXPORT_SYMBOL vmlinux 0x903b9373 netif_napi_add -EXPORT_SYMBOL vmlinux 0x90427cd3 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0x90687d80 __splice_from_pipe -EXPORT_SYMBOL vmlinux 0x90695906 vme_free_consistent -EXPORT_SYMBOL vmlinux 0x906fed62 __neigh_event_send -EXPORT_SYMBOL vmlinux 0x90723f98 __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x907288ab tty_check_change -EXPORT_SYMBOL vmlinux 0x90950d5d set_page_dirty -EXPORT_SYMBOL vmlinux 0x909d91bc mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x90b1324e snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL vmlinux 0x90bc73c8 scsi_target_resume -EXPORT_SYMBOL vmlinux 0x90c3a2f7 inet6_register_icmp_sender -EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0x90c68629 __blk_run_queue -EXPORT_SYMBOL vmlinux 0x90d5897c scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x90d9e302 blk_get_request -EXPORT_SYMBOL vmlinux 0x9101d363 nf_getsockopt -EXPORT_SYMBOL vmlinux 0x910af538 amba_request_regions -EXPORT_SYMBOL vmlinux 0x910dc952 security_path_chown -EXPORT_SYMBOL vmlinux 0x9132caea scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 -EXPORT_SYMBOL vmlinux 0x9152f069 iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x91715312 sprintf -EXPORT_SYMBOL vmlinux 0x9172f973 blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0x919029aa __readwrite_bug -EXPORT_SYMBOL vmlinux 0x91a4855f freeze_super -EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz -EXPORT_SYMBOL vmlinux 0x91df7e60 netlink_broadcast -EXPORT_SYMBOL vmlinux 0x91f259e6 setup_new_exec -EXPORT_SYMBOL vmlinux 0x91f488d2 dentry_unhash -EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 -EXPORT_SYMBOL vmlinux 0x9215f343 dev_mc_flush -EXPORT_SYMBOL vmlinux 0x9217de69 security_d_instantiate -EXPORT_SYMBOL vmlinux 0x921a2868 ipv6_push_nfrag_opts -EXPORT_SYMBOL vmlinux 0x9238cc72 param_get_short -EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x9243025d tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0x926a8e24 inode_permission -EXPORT_SYMBOL vmlinux 0x926e172d i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0x92721356 devfreq_add_device -EXPORT_SYMBOL vmlinux 0x927c6700 param_ops_long -EXPORT_SYMBOL vmlinux 0x92815cad __skb_get_hash_flowi6 -EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm -EXPORT_SYMBOL vmlinux 0x92b15890 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x92c5b218 phy_connect -EXPORT_SYMBOL vmlinux 0x92ccc28b register_sound_special_device -EXPORT_SYMBOL vmlinux 0x92cd6a77 bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x92d03276 of_phy_connect -EXPORT_SYMBOL vmlinux 0x92ec5d1b dispc_mgr_enable -EXPORT_SYMBOL vmlinux 0x92ec7134 simple_write_begin -EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0x9360109d i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0x9369ad1d blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x937e042c grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0x937ec3da neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0x938205ca kthread_stop -EXPORT_SYMBOL vmlinux 0x93963a85 dss_feat_get_num_mgrs -EXPORT_SYMBOL vmlinux 0x93a097d0 pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0x93b26a69 netdev_notice -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93c6a717 security_path_mknod -EXPORT_SYMBOL vmlinux 0x93df9983 netlink_kernel_release -EXPORT_SYMBOL vmlinux 0x93e5eec7 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x93f2faaf __page_symlink -EXPORT_SYMBOL vmlinux 0x93faacde km_report -EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages -EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int -EXPORT_SYMBOL vmlinux 0x94098ff8 snd_interval_list -EXPORT_SYMBOL vmlinux 0x940f9cf6 kblockd_schedule_delayed_work -EXPORT_SYMBOL vmlinux 0x9412cf39 dev_disable_lro -EXPORT_SYMBOL vmlinux 0x9421a516 fasync_helper -EXPORT_SYMBOL vmlinux 0x94248083 vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0x943568cf scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x9450354e soft_cursor -EXPORT_SYMBOL vmlinux 0x9459b1eb inode_get_bytes -EXPORT_SYMBOL vmlinux 0x945cd9a8 kunmap -EXPORT_SYMBOL vmlinux 0x9466d789 ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0x946c3d1e udplite_prot -EXPORT_SYMBOL vmlinux 0x946efbfa __wait_on_bit -EXPORT_SYMBOL vmlinux 0x94781caf xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x947dd791 ps2_drain -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x94a4114a tcp_sendpage -EXPORT_SYMBOL vmlinux 0x94b886e9 md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0x94c972a3 __ip_dev_find -EXPORT_SYMBOL vmlinux 0x94d3da68 rtc_lock -EXPORT_SYMBOL vmlinux 0x94d91581 nvm_free_rqd_ppalist -EXPORT_SYMBOL vmlinux 0x94eea794 getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x950f435f lookup_one_len -EXPORT_SYMBOL vmlinux 0x9531e194 pagevec_lookup -EXPORT_SYMBOL vmlinux 0x953829f5 bdget -EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init -EXPORT_SYMBOL vmlinux 0x9552320a lock_sock_nested -EXPORT_SYMBOL vmlinux 0x9559a71a jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0x955d49f2 mmc_cleanup_queue -EXPORT_SYMBOL vmlinux 0x95622f41 down_timeout -EXPORT_SYMBOL vmlinux 0x956e9f62 textsearch_destroy -EXPORT_SYMBOL vmlinux 0x9592d924 copy_to_iter -EXPORT_SYMBOL vmlinux 0x95b42b47 omap_dss_get_next_device -EXPORT_SYMBOL vmlinux 0x95bc4a6f backlight_force_update -EXPORT_SYMBOL vmlinux 0x95c7bf73 add_disk -EXPORT_SYMBOL vmlinux 0x95dbe078 __get_user_2 -EXPORT_SYMBOL vmlinux 0x95e60557 sock_no_shutdown -EXPORT_SYMBOL vmlinux 0x960dfaf5 radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0x962fb8c7 netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0x963d3c3d netdev_alert -EXPORT_SYMBOL vmlinux 0x964392fd posix_acl_fix_xattr_userns -EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x965f7021 km_state_expired -EXPORT_SYMBOL vmlinux 0x96773d83 nd_namespace_blk_validate -EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x969a9557 security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0x96a9af64 __block_write_begin -EXPORT_SYMBOL vmlinux 0x96af2e5c phy_device_register -EXPORT_SYMBOL vmlinux 0x96caf966 init_buffer -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96cf2978 tcf_em_register -EXPORT_SYMBOL vmlinux 0x96d9b4c8 key_validate -EXPORT_SYMBOL vmlinux 0x96ecd4d7 peernet2id_alloc -EXPORT_SYMBOL vmlinux 0x96fa209f dispc_ovl_check -EXPORT_SYMBOL vmlinux 0x9712e926 pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0x971a3463 alloc_fddidev -EXPORT_SYMBOL vmlinux 0x97255bdf strlen -EXPORT_SYMBOL vmlinux 0x9740c9fd bio_integrity_trim -EXPORT_SYMBOL vmlinux 0x974d8b7c tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x976265d9 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x976e700f down_trylock -EXPORT_SYMBOL vmlinux 0x97719552 phy_start_aneg -EXPORT_SYMBOL vmlinux 0x977529db unregister_mtd_chip_driver -EXPORT_SYMBOL vmlinux 0x9793c93a dispc_mgr_setup -EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state -EXPORT_SYMBOL vmlinux 0x979f0743 param_set_ullong -EXPORT_SYMBOL vmlinux 0x97b9039f tty_port_destroy -EXPORT_SYMBOL vmlinux 0x97bb9b0f qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0x97cd1473 flow_cache_fini -EXPORT_SYMBOL vmlinux 0x97cecacd tty_schedule_flip -EXPORT_SYMBOL vmlinux 0x97d633d3 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0x97f47ad1 simple_write_end -EXPORT_SYMBOL vmlinux 0x97f99fd4 dispc_ovl_setup -EXPORT_SYMBOL vmlinux 0x98037418 of_find_all_nodes -EXPORT_SYMBOL vmlinux 0x98043c04 __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0x980af0a0 __devcgroup_inode_permission -EXPORT_SYMBOL vmlinux 0x9813fb88 netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint -EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x987c11c7 __pv_phys_pfn_offset -EXPORT_SYMBOL vmlinux 0x9897be20 serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x98a19fb1 dquot_quota_sync -EXPORT_SYMBOL vmlinux 0x98d1c19e xfrm6_prepare_output -EXPORT_SYMBOL vmlinux 0x98da9417 inet_frags_init -EXPORT_SYMBOL vmlinux 0x98e3a3c2 sync_inodes_sb -EXPORT_SYMBOL vmlinux 0x98e68eca cancel_delayed_work -EXPORT_SYMBOL vmlinux 0x98f4ba98 param_set_byte -EXPORT_SYMBOL vmlinux 0x98fd5f7b phy_get_eee_err -EXPORT_SYMBOL vmlinux 0x9928a4fa tso_build_data -EXPORT_SYMBOL vmlinux 0x992e9e5d scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x99302fec devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x994e03aa ilookup5_nowait -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x995637d1 simple_transaction_set -EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x995b8e4c sock_create_lite -EXPORT_SYMBOL vmlinux 0x996c4d30 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x998b4ebc blk_integrity_register -EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x9997f183 phy_attach_direct -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99bb8806 memmove -EXPORT_SYMBOL vmlinux 0x99c58db6 vme_irq_generate -EXPORT_SYMBOL vmlinux 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering -EXPORT_SYMBOL vmlinux 0x99d43f01 __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0x99dc44d9 vfs_rmdir -EXPORT_SYMBOL vmlinux 0x99f1e440 pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0x99f58330 lg_local_lock_cpu -EXPORT_SYMBOL vmlinux 0x9a01e80a key_link -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval -EXPORT_SYMBOL vmlinux 0x9a28aa18 dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0x9a2abfc4 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x9a3bbf75 init_special_inode -EXPORT_SYMBOL vmlinux 0x9a3ca3ea current_in_userns -EXPORT_SYMBOL vmlinux 0x9a436485 mutex_lock -EXPORT_SYMBOL vmlinux 0x9a623142 ida_get_new_above -EXPORT_SYMBOL vmlinux 0x9a6d72d2 unregister_md_personality -EXPORT_SYMBOL vmlinux 0x9a8318ef v7_coherent_kern_range -EXPORT_SYMBOL vmlinux 0x9a9564fd serio_interrupt -EXPORT_SYMBOL vmlinux 0x9abe813c dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0x9ac5ddf8 sk_receive_skb -EXPORT_SYMBOL vmlinux 0x9ad2e2eb dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0x9adf5396 pci_enable_msi_range -EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach -EXPORT_SYMBOL vmlinux 0x9af3d643 blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x9af7a097 twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0x9afb8a6e devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0x9b0cb286 setup_arg_pages -EXPORT_SYMBOL vmlinux 0x9b12441b __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page -EXPORT_SYMBOL vmlinux 0x9b3f9ad5 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize -EXPORT_SYMBOL vmlinux 0x9b70df30 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0x9b74eca7 revalidate_disk -EXPORT_SYMBOL vmlinux 0x9b788ff7 input_set_keycode -EXPORT_SYMBOL vmlinux 0x9b8e9d4d install_exec_creds -EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split -EXPORT_SYMBOL vmlinux 0x9bb143dd snd_timer_open -EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put -EXPORT_SYMBOL vmlinux 0x9bca30ab i2c_transfer -EXPORT_SYMBOL vmlinux 0x9be12112 jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x9bf94c35 cdrom_ioctl -EXPORT_SYMBOL vmlinux 0x9c0bd51f _raw_spin_lock -EXPORT_SYMBOL vmlinux 0x9c231ed8 dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0x9c3fc32e nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0x9c4828c4 arm_coherent_dma_ops -EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x9c53244b vfs_writef -EXPORT_SYMBOL vmlinux 0x9c697d62 iov_iter_fault_in_readable -EXPORT_SYMBOL vmlinux 0x9c6e8db7 pci_enable_device_io -EXPORT_SYMBOL vmlinux 0x9c7a69c9 tcp_release_cb -EXPORT_SYMBOL vmlinux 0x9c7f0db3 qcom_scm_set_warm_boot_addr -EXPORT_SYMBOL vmlinux 0x9c9ec2a0 proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cb218a6 tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x9cb49fb7 mdio_bus_type -EXPORT_SYMBOL vmlinux 0x9cba3c37 _raw_read_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x9cc09aef phy_init_eee -EXPORT_SYMBOL vmlinux 0x9cd35dc4 unregister_binfmt -EXPORT_SYMBOL vmlinux 0x9cd73292 kmem_cache_size -EXPORT_SYMBOL vmlinux 0x9cd73a9d blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0x9d0d1eed phy_resume -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d2ce553 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x9d302541 account_page_dirtied -EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init -EXPORT_SYMBOL vmlinux 0x9d420a86 simple_dentry_operations -EXPORT_SYMBOL vmlinux 0x9d56862c ip_check_defrag -EXPORT_SYMBOL vmlinux 0x9d669763 memcpy -EXPORT_SYMBOL vmlinux 0x9d70cfc7 tty_hangup -EXPORT_SYMBOL vmlinux 0x9d7331b4 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0x9dfe7307 lz4_decompress_unknownoutputsize -EXPORT_SYMBOL vmlinux 0x9dfe9cb9 __tracepoint_fence_annotate_wait_on -EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e0cd5f6 bmap -EXPORT_SYMBOL vmlinux 0x9e22097a fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x9e29ad06 phy_find_first -EXPORT_SYMBOL vmlinux 0x9e41d68f generic_error_remove_page -EXPORT_SYMBOL vmlinux 0x9e4b226f inet6_register_protosw -EXPORT_SYMBOL vmlinux 0x9e4b80ee __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e6717b8 vfs_link -EXPORT_SYMBOL vmlinux 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL vmlinux 0x9e75f242 mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value -EXPORT_SYMBOL vmlinux 0x9e86a59e netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x9e9e1ce6 vga_put -EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9ea4351f __sb_start_write -EXPORT_SYMBOL vmlinux 0x9ea51d7b phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0x9eadc922 __mutex_init -EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource -EXPORT_SYMBOL vmlinux 0x9ec2df20 tty_hung_up_p -EXPORT_SYMBOL vmlinux 0x9eda4718 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x9efc163c d_instantiate -EXPORT_SYMBOL vmlinux 0x9efee630 of_find_node_opts_by_path -EXPORT_SYMBOL vmlinux 0x9f14d632 scmd_printk -EXPORT_SYMBOL vmlinux 0x9f2b5a8d of_root -EXPORT_SYMBOL vmlinux 0x9f3c9f34 snd_pcm_kernel_ioctl -EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f8231ac xfrm_prepare_input -EXPORT_SYMBOL vmlinux 0x9f823cea dispc_mgr_is_enabled -EXPORT_SYMBOL vmlinux 0x9f95e2a3 elv_dispatch_sort -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9fe08609 prepare_creds -EXPORT_SYMBOL vmlinux 0x9fe5b768 iunique -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0xa0044066 kset_register -EXPORT_SYMBOL vmlinux 0xa004d35e dev_get_stats -EXPORT_SYMBOL vmlinux 0xa01d09fa inetdev_by_index -EXPORT_SYMBOL vmlinux 0xa0397105 omapdss_find_output_from_display -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa045ad0b scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0xa047702f xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xa0570d18 redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0xa070b311 iov_iter_kvec -EXPORT_SYMBOL vmlinux 0xa072e488 dquot_operations -EXPORT_SYMBOL vmlinux 0xa07b0687 generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init -EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa0a31c78 blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem -EXPORT_SYMBOL vmlinux 0xa0f39d76 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa0fbd612 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0xa0fd2427 snd_pci_quirk_lookup_id -EXPORT_SYMBOL vmlinux 0xa0ffd7e6 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xa12526b6 input_get_keycode -EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0xa1432768 eth_change_mtu -EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts -EXPORT_SYMBOL vmlinux 0xa1504a35 elv_dispatch_add_tail -EXPORT_SYMBOL vmlinux 0xa157a48b snd_unregister_device -EXPORT_SYMBOL vmlinux 0xa166311c inet6_offloads -EXPORT_SYMBOL vmlinux 0xa1684575 devm_gpiod_put_array -EXPORT_SYMBOL vmlinux 0xa18f8d2d dm_io -EXPORT_SYMBOL vmlinux 0xa192813b idr_for_each -EXPORT_SYMBOL vmlinux 0xa1935b62 filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0xa19eaf9a vga_tryget -EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode -EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched -EXPORT_SYMBOL vmlinux 0xa1d55e90 _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create -EXPORT_SYMBOL vmlinux 0xa1e1780c ptp_clock_register -EXPORT_SYMBOL vmlinux 0xa1e4456e snd_timer_continue -EXPORT_SYMBOL vmlinux 0xa1f0ebea bit_waitqueue -EXPORT_SYMBOL vmlinux 0xa203b9fc cfb_copyarea -EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold -EXPORT_SYMBOL vmlinux 0xa2203b03 twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0xa228dbfd snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL vmlinux 0xa22c5a17 security_path_truncate -EXPORT_SYMBOL vmlinux 0xa2382978 bdev_stack_limits -EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0xa2859036 i2c_master_send -EXPORT_SYMBOL vmlinux 0xa288ee60 __elv_add_request -EXPORT_SYMBOL vmlinux 0xa28e5f5e nf_setsockopt -EXPORT_SYMBOL vmlinux 0xa29186c2 __d_drop -EXPORT_SYMBOL vmlinux 0xa2923202 dev_change_flags -EXPORT_SYMBOL vmlinux 0xa29a2b05 blk_mq_start_request -EXPORT_SYMBOL vmlinux 0xa29c2019 pci_request_region_exclusive -EXPORT_SYMBOL vmlinux 0xa2b51a57 make_kuid -EXPORT_SYMBOL vmlinux 0xa2bc3fe4 pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0xa314421b km_policy_expired -EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set -EXPORT_SYMBOL vmlinux 0xa336feb7 nand_manuf_ids -EXPORT_SYMBOL vmlinux 0xa35444e4 dispc_write_irqenable -EXPORT_SYMBOL vmlinux 0xa364f476 dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0xa37a6aff ata_dev_printk -EXPORT_SYMBOL vmlinux 0xa37a79a6 tty_kref_put -EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get -EXPORT_SYMBOL vmlinux 0xa381944f dql_reset -EXPORT_SYMBOL vmlinux 0xa39a123a fence_add_callback -EXPORT_SYMBOL vmlinux 0xa3a2f881 generic_file_write_iter -EXPORT_SYMBOL vmlinux 0xa3c0dbaf get_disk -EXPORT_SYMBOL vmlinux 0xa3c46cd2 phy_stop -EXPORT_SYMBOL vmlinux 0xa3c53da8 vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0xa3f34a0b udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0xa3f63d1e dqget -EXPORT_SYMBOL vmlinux 0xa3fb5ed9 phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0xa414882d add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xa418382a bdi_register -EXPORT_SYMBOL vmlinux 0xa42d3832 dquot_disable -EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf -EXPORT_SYMBOL vmlinux 0xa43d254a scsi_scan_host -EXPORT_SYMBOL vmlinux 0xa43d8d77 inet6_del_protocol -EXPORT_SYMBOL vmlinux 0xa4610bc6 omap_rev -EXPORT_SYMBOL vmlinux 0xa466a33c snd_pcm_suspend_all -EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset -EXPORT_SYMBOL vmlinux 0xa48f5b09 omap_dma_set_global_params -EXPORT_SYMBOL vmlinux 0xa49a1456 bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0xa4b42c55 omap_set_dma_priority -EXPORT_SYMBOL vmlinux 0xa4cbf932 blk_queue_split -EXPORT_SYMBOL vmlinux 0xa4d0ee00 free_user_ns -EXPORT_SYMBOL vmlinux 0xa4dcbb1f sock_i_ino -EXPORT_SYMBOL vmlinux 0xa523b942 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0xa532092f unlink_framebuffer -EXPORT_SYMBOL vmlinux 0xa54e1c15 blk_start_queue -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa588b8c0 irq_set_chip -EXPORT_SYMBOL vmlinux 0xa58fea9d mempool_destroy -EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes -EXPORT_SYMBOL vmlinux 0xa5b47af1 mmc_release_host -EXPORT_SYMBOL vmlinux 0xa5d17a5b ipv4_specific -EXPORT_SYMBOL vmlinux 0xa5fa0ae8 snd_pcm_stop -EXPORT_SYMBOL vmlinux 0xa615a3b2 crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL vmlinux 0xa61acc22 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0xa61e4362 omap_request_dma -EXPORT_SYMBOL vmlinux 0xa62abe8b jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0xa637359d pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember -EXPORT_SYMBOL vmlinux 0xa63f3cfb i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0xa640df16 __pci_enable_wake -EXPORT_SYMBOL vmlinux 0xa645473b snd_pcm_lib_readv -EXPORT_SYMBOL vmlinux 0xa655d0ae ps2_handle_response -EXPORT_SYMBOL vmlinux 0xa65ef250 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0xa67374f0 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0xa673d593 inet_dgram_connect -EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0xa6979b9a poll_schedule_timeout -EXPORT_SYMBOL vmlinux 0xa69a8371 tcp_shutdown -EXPORT_SYMBOL vmlinux 0xa6a1d90c vme_irq_handler -EXPORT_SYMBOL vmlinux 0xa6ae24c3 get_unmapped_area -EXPORT_SYMBOL vmlinux 0xa6bab23d dqstats -EXPORT_SYMBOL vmlinux 0xa6bfab0f md_write_start -EXPORT_SYMBOL vmlinux 0xa6f1d4c5 abort_creds -EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function -EXPORT_SYMBOL vmlinux 0xa7033689 iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0xa705788d crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0xa706b350 eth_type_trans -EXPORT_SYMBOL vmlinux 0xa71470a7 devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xa71ffc34 scsi_register_interface -EXPORT_SYMBOL vmlinux 0xa734a3e9 abort_exclusive_wait -EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 -EXPORT_SYMBOL vmlinux 0xa742a183 mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0xa756e34b eth_gro_complete -EXPORT_SYMBOL vmlinux 0xa7774810 blk_alloc_queue_node -EXPORT_SYMBOL vmlinux 0xa7800f19 kobject_del -EXPORT_SYMBOL vmlinux 0xa78b6e26 skb_insert -EXPORT_SYMBOL vmlinux 0xa79dec90 build_skb -EXPORT_SYMBOL vmlinux 0xa7acbb57 nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0xa7dca496 dump_truncate -EXPORT_SYMBOL vmlinux 0xa7e40e6e kernel_write -EXPORT_SYMBOL vmlinux 0xa809214d dma_common_get_sgtable -EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa85a96aa blk_integrity_merge_rq -EXPORT_SYMBOL vmlinux 0xa85e26c1 wait_iff_congested -EXPORT_SYMBOL vmlinux 0xa8721b97 system_state -EXPORT_SYMBOL vmlinux 0xa884e7ca sk_mc_loop -EXPORT_SYMBOL vmlinux 0xa89a923b snd_ctl_boolean_mono_info -EXPORT_SYMBOL vmlinux 0xa89c8560 snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end -EXPORT_SYMBOL vmlinux 0xa8a90214 km_query -EXPORT_SYMBOL vmlinux 0xa8aa3175 omap_dss_get_output -EXPORT_SYMBOL vmlinux 0xa8afa65c padata_alloc_possible -EXPORT_SYMBOL vmlinux 0xa8b2083a cros_ec_cmd_xfer_status -EXPORT_SYMBOL vmlinux 0xa8cce06b seq_dentry -EXPORT_SYMBOL vmlinux 0xa8dc0170 security_path_unlink -EXPORT_SYMBOL vmlinux 0xa8dddfe9 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0xa8f70f84 mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send -EXPORT_SYMBOL vmlinux 0xa91107b9 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion -EXPORT_SYMBOL vmlinux 0xa928444f down_read -EXPORT_SYMBOL vmlinux 0xa929262a fget -EXPORT_SYMBOL vmlinux 0xa93bf26b generic_file_direct_write -EXPORT_SYMBOL vmlinux 0xa95e66ab __dev_remove_pack -EXPORT_SYMBOL vmlinux 0xa964dd13 gpmc_cs_request -EXPORT_SYMBOL vmlinux 0xa9658cd3 kobject_add -EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa98b6f02 snd_pcm_lib_ioctl -EXPORT_SYMBOL vmlinux 0xa98e2186 elv_register_queue -EXPORT_SYMBOL vmlinux 0xa99040fa nvm_addr_to_generic_mode -EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0xa9c7e949 dquot_acquire -EXPORT_SYMBOL vmlinux 0xa9d2f3f7 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0xa9e2f557 posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0xa9e661a4 user_path_at_empty -EXPORT_SYMBOL vmlinux 0xaa02935a of_find_device_by_node -EXPORT_SYMBOL vmlinux 0xaa2a334d input_set_abs_params -EXPORT_SYMBOL vmlinux 0xaa38862d jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0xaa4801fe blk_init_allocated_queue -EXPORT_SYMBOL vmlinux 0xaa62ef65 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r -EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa775cc4 sock_alloc_file -EXPORT_SYMBOL vmlinux 0xaa78d74b snd_seq_root -EXPORT_SYMBOL vmlinux 0xaa7c9572 unlock_buffer -EXPORT_SYMBOL vmlinux 0xaa8479ea jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state -EXPORT_SYMBOL vmlinux 0xaae2e8d1 __tracepoint_fence_emit -EXPORT_SYMBOL vmlinux 0xaaefa673 omap_dss_find_device -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0xaaffd7de jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0xab154ed9 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0xab1f93b0 security_path_rmdir -EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off -EXPORT_SYMBOL vmlinux 0xab62f1e3 finish_no_open -EXPORT_SYMBOL vmlinux 0xab68ca92 generic_removexattr -EXPORT_SYMBOL vmlinux 0xab694444 bsearch -EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog -EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab98b6d3 end_buffer_async_write -EXPORT_SYMBOL vmlinux 0xaba3ad0c radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0xabb2b0f0 d_walk -EXPORT_SYMBOL vmlinux 0xabb38c00 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0xabb5b921 simple_transaction_release -EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev -EXPORT_SYMBOL vmlinux 0xabd70721 tty_free_termios -EXPORT_SYMBOL vmlinux 0xabe6ff9a padata_remove_cpu -EXPORT_SYMBOL vmlinux 0xabe83954 bioset_create -EXPORT_SYMBOL vmlinux 0xabfcb4c3 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xabfd51da iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac390091 dev_base_lock -EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear -EXPORT_SYMBOL vmlinux 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL vmlinux 0xac797a10 nonseekable_open -EXPORT_SYMBOL vmlinux 0xac7a89eb fddi_type_trans -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacafeee8 d_move -EXPORT_SYMBOL vmlinux 0xacb7b853 bioset_create_nobvec -EXPORT_SYMBOL vmlinux 0xacc30ada nlmsg_notify -EXPORT_SYMBOL vmlinux 0xacc6b1c7 of_device_register -EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xacf7f35e dquot_drop -EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad3d648a read_cache_pages -EXPORT_SYMBOL vmlinux 0xad3fc593 kernel_bind -EXPORT_SYMBOL vmlinux 0xad44de32 dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0xad5f9eb7 omapdss_find_mgr_from_display -EXPORT_SYMBOL vmlinux 0xad70f332 jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0xad772a15 dev_printk -EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event -EXPORT_SYMBOL vmlinux 0xad91cde2 release_pages -EXPORT_SYMBOL vmlinux 0xada5e517 nf_hook_slow -EXPORT_SYMBOL vmlinux 0xadb92c83 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0xadbf980d wake_up_process -EXPORT_SYMBOL vmlinux 0xadcf95b7 dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0xadd62d8c nvm_get_blk -EXPORT_SYMBOL vmlinux 0xade60e58 tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0xade88e76 snd_malloc_pages -EXPORT_SYMBOL vmlinux 0xadef66fc tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae051a8c filemap_write_and_wait -EXPORT_SYMBOL vmlinux 0xae0b6293 blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0xae271732 ip_route_input_noref -EXPORT_SYMBOL vmlinux 0xae4944f6 netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0xae77a595 radix_tree_gang_lookup_slot -EXPORT_SYMBOL vmlinux 0xae81fd73 __nd_iostat_start -EXPORT_SYMBOL vmlinux 0xae85a27e radix_tree_lookup -EXPORT_SYMBOL vmlinux 0xae8cc6d7 ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0xae90578a input_register_handler -EXPORT_SYMBOL vmlinux 0xae992b15 ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0xaebced5b swiotlb_alloc_coherent -EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact -EXPORT_SYMBOL vmlinux 0xaee34de1 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0xaee9549e pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0xaeee83bd inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0xaef48626 __kfree_skb -EXPORT_SYMBOL vmlinux 0xaf0a4fda __seq_open_private -EXPORT_SYMBOL vmlinux 0xaf1a2a22 tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0xaf2143e6 dma_mmap_from_coherent -EXPORT_SYMBOL vmlinux 0xaf2173c3 snd_pcm_mmap_data -EXPORT_SYMBOL vmlinux 0xaf32cbd2 md_unregister_thread -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf50e76d elf_set_personality -EXPORT_SYMBOL vmlinux 0xaf7d8936 simple_unlink -EXPORT_SYMBOL vmlinux 0xaf84865e __get_user_8 -EXPORT_SYMBOL vmlinux 0xaf8aa518 system_rev -EXPORT_SYMBOL vmlinux 0xafb3f171 blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0xafc5eb5f buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0xafd2b884 kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0xafde90f4 blk_queue_prep_rq -EXPORT_SYMBOL vmlinux 0xaff8dcb4 bdi_register_owner -EXPORT_SYMBOL vmlinux 0xaffd6b2d skb_put -EXPORT_SYMBOL vmlinux 0xb00d878c sound_class -EXPORT_SYMBOL vmlinux 0xb028eed5 rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0xb041ad10 blk_start_queue_async -EXPORT_SYMBOL vmlinux 0xb04cf0fe lg_local_unlock -EXPORT_SYMBOL vmlinux 0xb05136ff generic_file_mmap -EXPORT_SYMBOL vmlinux 0xb057cd27 cpu_user -EXPORT_SYMBOL vmlinux 0xb05a9cdf sg_miter_skip -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb060e92c dev_open -EXPORT_SYMBOL vmlinux 0xb063a2dc blk_queue_end_tag -EXPORT_SYMBOL vmlinux 0xb066b530 iommu_tbl_pool_init -EXPORT_SYMBOL vmlinux 0xb0760745 fixed_size_llseek -EXPORT_SYMBOL vmlinux 0xb081b9c3 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0xb0979130 module_put -EXPORT_SYMBOL vmlinux 0xb0982b7a consume_skb -EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0xb0b6f17d linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0xb0be9d1b jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0xb0cf0082 unregister_key_type -EXPORT_SYMBOL vmlinux 0xb0d4017d end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0e33557 skb_dequeue -EXPORT_SYMBOL vmlinux 0xb0fb9508 skb_split -EXPORT_SYMBOL vmlinux 0xb0ffcb55 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0xb1118010 inode_init_always -EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on -EXPORT_SYMBOL vmlinux 0xb126d474 devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb130ce4c input_grab_device -EXPORT_SYMBOL vmlinux 0xb138e552 simple_lookup -EXPORT_SYMBOL vmlinux 0xb1456a31 bio_put -EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xb15df4c1 __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table -EXPORT_SYMBOL vmlinux 0xb164faab tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0xb16b8437 netdev_features_change -EXPORT_SYMBOL vmlinux 0xb16c5ba3 empty_aops -EXPORT_SYMBOL vmlinux 0xb16f7a32 padata_do_parallel -EXPORT_SYMBOL vmlinux 0xb195a486 path_noexec -EXPORT_SYMBOL vmlinux 0xb1ad28e0 __gnu_mcount_nc -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1cef70e scsi_verify_blk_ioctl -EXPORT_SYMBOL vmlinux 0xb1cf2db5 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xb1d9aabd lg_local_unlock_cpu -EXPORT_SYMBOL vmlinux 0xb1deb984 tty_lock -EXPORT_SYMBOL vmlinux 0xb2282df8 drop_nlink -EXPORT_SYMBOL vmlinux 0xb22ead7a ll_rw_block -EXPORT_SYMBOL vmlinux 0xb2302ead pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0xb2383807 rwsem_wake -EXPORT_SYMBOL vmlinux 0xb2408dd0 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0xb24c36da vfs_readf -EXPORT_SYMBOL vmlinux 0xb251a0bf input_unregister_handle -EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0xb27b70b9 inet_recvmsg -EXPORT_SYMBOL vmlinux 0xb28ab56c blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0xb293b8fc tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0xb2a3fcdc simple_map_init -EXPORT_SYMBOL vmlinux 0xb2ad8233 jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xb2c90fde xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on -EXPORT_SYMBOL vmlinux 0xb2d4b1a8 arm_dma_zone_size -EXPORT_SYMBOL vmlinux 0xb2d51123 security_path_link -EXPORT_SYMBOL vmlinux 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL vmlinux 0xb2e8bba7 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0xb2eb511f tcp_close -EXPORT_SYMBOL vmlinux 0xb2ed8934 mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0xb2f0afb5 lookup_bdev -EXPORT_SYMBOL vmlinux 0xb2f17caa page_cache_next_hole -EXPORT_SYMBOL vmlinux 0xb30859e0 generic_perform_write -EXPORT_SYMBOL vmlinux 0xb32a209a __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xb32d7b7e radix_tree_tagged -EXPORT_SYMBOL vmlinux 0xb33c351f ioremap_cache -EXPORT_SYMBOL vmlinux 0xb369d294 skb_clone -EXPORT_SYMBOL vmlinux 0xb380aa41 abx500_get_register_interruptible -EXPORT_SYMBOL vmlinux 0xb39b49a1 task_tgid_nr_ns -EXPORT_SYMBOL vmlinux 0xb3c78ded param_set_long -EXPORT_SYMBOL vmlinux 0xb3cf54a1 netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3d4eb05 dss_mgr_disable -EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb4075266 mount_nodev -EXPORT_SYMBOL vmlinux 0xb40a4c8b vme_master_request -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb42fa66e xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0xb431a7fe arp_tbl -EXPORT_SYMBOL vmlinux 0xb4390f9a mcount -EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem -EXPORT_SYMBOL vmlinux 0xb45432ca set_anon_super -EXPORT_SYMBOL vmlinux 0xb45a8f4a vfs_getattr -EXPORT_SYMBOL vmlinux 0xb46b74f7 pci_disable_msi -EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0xb49b9c05 kill_pgrp -EXPORT_SYMBOL vmlinux 0xb4b94377 __nand_correct_data -EXPORT_SYMBOL vmlinux 0xb4bf4765 bdi_init -EXPORT_SYMBOL vmlinux 0xb4f456eb kthread_bind -EXPORT_SYMBOL vmlinux 0xb50985d8 tcp_gro_complete -EXPORT_SYMBOL vmlinux 0xb50e5f5c snd_pcm_limit_hw_rates -EXPORT_SYMBOL vmlinux 0xb5198b77 _raw_read_lock -EXPORT_SYMBOL vmlinux 0xb52482eb scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0xb5359509 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0xb54a2df3 ip_route_me_harder -EXPORT_SYMBOL vmlinux 0xb54b4687 locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0xb563bf6a inet_addr_type_table -EXPORT_SYMBOL vmlinux 0xb5684e29 idr_find_slowpath -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb57ebf21 of_graph_get_remote_port -EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5c00014 _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0xb5c174b3 update_devfreq -EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free -EXPORT_SYMBOL vmlinux 0xb5d46ed6 page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0xb5d9454c printk_emit -EXPORT_SYMBOL vmlinux 0xb5de6e7b blk_queue_io_min -EXPORT_SYMBOL vmlinux 0xb5e90f34 security_dentry_init_security -EXPORT_SYMBOL vmlinux 0xb600ad2c nf_log_trace -EXPORT_SYMBOL vmlinux 0xb60f2de5 unregister_netdev -EXPORT_SYMBOL vmlinux 0xb62444e2 kill_pid -EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one -EXPORT_SYMBOL vmlinux 0xb63a3fb1 is_nd_btt -EXPORT_SYMBOL vmlinux 0xb65e1b88 eth_validate_addr -EXPORT_SYMBOL vmlinux 0xb65e8cd8 unregister_nls -EXPORT_SYMBOL vmlinux 0xb65fbda5 lease_get_mtime -EXPORT_SYMBOL vmlinux 0xb66225a6 snd_pcm_create_iec958_consumer -EXPORT_SYMBOL vmlinux 0xb66a9532 get_super_thawed -EXPORT_SYMBOL vmlinux 0xb675c645 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0xb6775e10 sk_common_release -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb68492ff __dquot_free_space -EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif -EXPORT_SYMBOL vmlinux 0xb690d5ea bdevname -EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb69c3b59 phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit -EXPORT_SYMBOL vmlinux 0xb6bc85a9 ipv6_select_ident -EXPORT_SYMBOL vmlinux 0xb6c07dff tcf_hash_create -EXPORT_SYMBOL vmlinux 0xb6d3daf1 qcom_scm_hdcp_req -EXPORT_SYMBOL vmlinux 0xb7020c56 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0xb7100329 set_binfmt -EXPORT_SYMBOL vmlinux 0xb7117fb5 security_path_symlink -EXPORT_SYMBOL vmlinux 0xb7180780 sget -EXPORT_SYMBOL vmlinux 0xb732a316 fbcon_set_tileops -EXPORT_SYMBOL vmlinux 0xb736ad6f of_find_net_device_by_node -EXPORT_SYMBOL vmlinux 0xb736b6c4 jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xb74b6e5f tty_port_close -EXPORT_SYMBOL vmlinux 0xb75461a8 __napi_complete -EXPORT_SYMBOL vmlinux 0xb76126d7 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0xb767d9a4 nvm_get_blk_unlocked -EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb7782446 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xb78f443c padata_add_cpu -EXPORT_SYMBOL vmlinux 0xb79ec15d mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0xb7a2151f tc6393xb_lcd_mode -EXPORT_SYMBOL vmlinux 0xb7ba76c7 __aeabi_unwind_cpp_pr2 -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7e36f01 ip6_expire_frag_queue -EXPORT_SYMBOL vmlinux 0xb7f49735 jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0xb80de1e3 __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0xb81960ca snprintf -EXPORT_SYMBOL vmlinux 0xb8370414 sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0xb8445ed0 generic_permission -EXPORT_SYMBOL vmlinux 0xb8479faa ip_ct_attach -EXPORT_SYMBOL vmlinux 0xb84a7f01 sk_alloc -EXPORT_SYMBOL vmlinux 0xb8658e23 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0xb86c92be inet_stream_connect -EXPORT_SYMBOL vmlinux 0xb86e33ef __put_cred -EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 -EXPORT_SYMBOL vmlinux 0xb874d12c __free_pages -EXPORT_SYMBOL vmlinux 0xb8854ac8 sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0xb8aa438f mpage_writepage -EXPORT_SYMBOL vmlinux 0xb8bcc972 mnt_set_expiry -EXPORT_SYMBOL vmlinux 0xb8c6b570 xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0xb8e68cee send_sig -EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0xb8ebddc9 get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0xb9088e64 sock_wake_async -EXPORT_SYMBOL vmlinux 0xb91d7eb7 netif_carrier_on -EXPORT_SYMBOL vmlinux 0xb930f5d3 __ww_mutex_lock -EXPORT_SYMBOL vmlinux 0xb938b9be nvm_generic_to_addr_mode -EXPORT_SYMBOL vmlinux 0xb95c5d3d ps2_begin_command -EXPORT_SYMBOL vmlinux 0xb95f98d6 _memset_io -EXPORT_SYMBOL vmlinux 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL vmlinux 0xb97ca743 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0xb986fdb6 snd_timer_global_register -EXPORT_SYMBOL vmlinux 0xb9a8f03b omap_stop_dma -EXPORT_SYMBOL vmlinux 0xb9acd3d9 __put_user_2 -EXPORT_SYMBOL vmlinux 0xb9b9b358 twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0xb9be64f4 genphy_read_status -EXPORT_SYMBOL vmlinux 0xb9d96897 cfb_imageblit -EXPORT_SYMBOL vmlinux 0xb9d9f491 pcie_get_minimum_link -EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xb9f54614 udp_lib_get_port -EXPORT_SYMBOL vmlinux 0xb9f794a8 of_iomap -EXPORT_SYMBOL vmlinux 0xba16ef3b neigh_table_init -EXPORT_SYMBOL vmlinux 0xba231f6d security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0xba4268f7 devm_gpiod_get_array_optional -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba55bd09 cap_mmap_file -EXPORT_SYMBOL vmlinux 0xba5c42a5 bd_set_size -EXPORT_SYMBOL vmlinux 0xba640e13 km_state_notify -EXPORT_SYMBOL vmlinux 0xba74d24a kernel_getsockopt -EXPORT_SYMBOL vmlinux 0xba79bcdc md_write_end -EXPORT_SYMBOL vmlinux 0xba977ba1 mmc_set_blockcount -EXPORT_SYMBOL vmlinux 0xba9c951d tcp_rcv_established -EXPORT_SYMBOL vmlinux 0xba9eeb59 inode_change_ok -EXPORT_SYMBOL vmlinux 0xbaa01d5e skb_vlan_untag -EXPORT_SYMBOL vmlinux 0xbaa45f7f follow_up -EXPORT_SYMBOL vmlinux 0xbaab14a4 nvm_set_rqd_ppalist -EXPORT_SYMBOL vmlinux 0xbab66852 xfrm_init_state -EXPORT_SYMBOL vmlinux 0xbac3cbf2 ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0xbad3bf31 blk_mq_abort_requeue_list -EXPORT_SYMBOL vmlinux 0xbaf27747 mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0xbaf4a6ed ip_setsockopt -EXPORT_SYMBOL vmlinux 0xbafeee36 dispc_runtime_get -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb088cbd param_ops_uint -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb43caa6 of_find_matching_node_and_match -EXPORT_SYMBOL vmlinux 0xbb542c5c ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0xbb554b4c dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xbb72d4fe __put_user_1 -EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font -EXPORT_SYMBOL vmlinux 0xbba6e1f9 phys_mem_access_prot -EXPORT_SYMBOL vmlinux 0xbbbca314 generic_block_fiemap -EXPORT_SYMBOL vmlinux 0xbc10dd97 __put_user_4 -EXPORT_SYMBOL vmlinux 0xbc24671c param_get_string -EXPORT_SYMBOL vmlinux 0xbc43aa41 skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0xbc54988e xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xbc6329b0 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xbc7cf66d devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xbc90977d snd_pcm_set_sync -EXPORT_SYMBOL vmlinux 0xbc929da8 rtnl_unicast -EXPORT_SYMBOL vmlinux 0xbc9dfdf3 inet_getname -EXPORT_SYMBOL vmlinux 0xbcb5f0a0 __dst_free -EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user -EXPORT_SYMBOL vmlinux 0xbcc4f7ba max8925_bulk_write -EXPORT_SYMBOL vmlinux 0xbcc81d4a snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL vmlinux 0xbccdd804 genphy_soft_reset -EXPORT_SYMBOL vmlinux 0xbcda356b secpath_dup -EXPORT_SYMBOL vmlinux 0xbce98825 kern_path -EXPORT_SYMBOL vmlinux 0xbcf25a79 dma_find_channel -EXPORT_SYMBOL vmlinux 0xbcf4b727 i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0xbd101442 proc_mkdir -EXPORT_SYMBOL vmlinux 0xbd123f16 omap_dss_get_overlay -EXPORT_SYMBOL vmlinux 0xbd14fd7a snd_timer_interrupt -EXPORT_SYMBOL vmlinux 0xbd156ca0 mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0xbd17c6de gen_replace_estimator -EXPORT_SYMBOL vmlinux 0xbd1e5d5d sk_send_sigurg -EXPORT_SYMBOL vmlinux 0xbd2a2ce8 pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0xbd378732 ptp_clock_event -EXPORT_SYMBOL vmlinux 0xbd545fe0 scsi_block_requests -EXPORT_SYMBOL vmlinux 0xbd591921 __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0xbd6294fb jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0xbd65fea1 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0xbd6affbb shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug -EXPORT_SYMBOL vmlinux 0xbd922112 dma_release_from_coherent -EXPORT_SYMBOL vmlinux 0xbd951e47 mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0xbdca5eda ppp_unit_number -EXPORT_SYMBOL vmlinux 0xbdd41bb4 pcie_get_mps -EXPORT_SYMBOL vmlinux 0xbdd4d936 of_translate_address -EXPORT_SYMBOL vmlinux 0xbde41af3 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0xbde7cd76 __ip_select_ident -EXPORT_SYMBOL vmlinux 0xbdec4d08 fence_remove_callback -EXPORT_SYMBOL vmlinux 0xbdedb6b2 irq_stat -EXPORT_SYMBOL vmlinux 0xbdfdbda3 path_is_under -EXPORT_SYMBOL vmlinux 0xbe0c7bdd jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp -EXPORT_SYMBOL vmlinux 0xbe115946 snd_ctl_free_one -EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto -EXPORT_SYMBOL vmlinux 0xbe26e104 scsi_dma_map -EXPORT_SYMBOL vmlinux 0xbe482fcf dm_put_device -EXPORT_SYMBOL vmlinux 0xbe50156a devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0xbe55ae3c serio_reconnect -EXPORT_SYMBOL vmlinux 0xbe7545df kobject_init -EXPORT_SYMBOL vmlinux 0xbe815740 fsnotify_add_mark -EXPORT_SYMBOL vmlinux 0xbe8860a8 dispc_mgr_go_busy -EXPORT_SYMBOL vmlinux 0xbe8fb90c dispc_mgr_get_framedone_irq -EXPORT_SYMBOL vmlinux 0xbe988045 __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0xbe9b292e of_graph_get_next_endpoint -EXPORT_SYMBOL vmlinux 0xbed190ed sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0xbee5e223 pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbef5fac7 posix_acl_valid -EXPORT_SYMBOL vmlinux 0xbf0d3ef2 mpage_readpages -EXPORT_SYMBOL vmlinux 0xbf0f2099 unregister_framebuffer -EXPORT_SYMBOL vmlinux 0xbf30f8e3 elv_add_request -EXPORT_SYMBOL vmlinux 0xbf312e08 phy_write_mmd_indirect -EXPORT_SYMBOL vmlinux 0xbf313ebb tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0xbf44a94a dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0xbf45e6e3 tty_mutex -EXPORT_SYMBOL vmlinux 0xbf4dcd88 tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk -EXPORT_SYMBOL vmlinux 0xbf927513 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfb0f9d9 clkdev_alloc -EXPORT_SYMBOL vmlinux 0xbfb6c1ef dev_addr_del -EXPORT_SYMBOL vmlinux 0xbfbe2084 scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0xbfccacf3 vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0xbfd36ac7 swiotlb_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0xbfdac810 mmc_read_bkops_status -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xc0056be5 _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0xc05f17db devm_release_resource -EXPORT_SYMBOL vmlinux 0xc068440e __kfifo_alloc -EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write -EXPORT_SYMBOL vmlinux 0xc0939df3 __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xc0a6a8c5 omap_set_dma_dest_burst_mode -EXPORT_SYMBOL vmlinux 0xc0a98385 profile_pc -EXPORT_SYMBOL vmlinux 0xc0b2a6ce elv_rb_former_request -EXPORT_SYMBOL vmlinux 0xc0cfe21a netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0xc0e99f66 netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0xc0fcf473 jbd2_journal_file_inode -EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten -EXPORT_SYMBOL vmlinux 0xc121516c bdput -EXPORT_SYMBOL vmlinux 0xc1336084 blk_sync_queue -EXPORT_SYMBOL vmlinux 0xc13af843 sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0xc152cf3c netpoll_parse_options -EXPORT_SYMBOL vmlinux 0xc157d6f7 i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0xc1642f3c mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0xc1654450 snd_info_free_entry -EXPORT_SYMBOL vmlinux 0xc1677a21 param_get_ushort -EXPORT_SYMBOL vmlinux 0xc16bd78c phy_print_status -EXPORT_SYMBOL vmlinux 0xc1775062 search_binary_handler -EXPORT_SYMBOL vmlinux 0xc188a060 unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xc19d3bbc phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xc19d5650 vlan_vid_add -EXPORT_SYMBOL vmlinux 0xc1a23e24 skb_clone_sk -EXPORT_SYMBOL vmlinux 0xc1bf9465 nand_lock -EXPORT_SYMBOL vmlinux 0xc1c5d2fb dev_uc_add -EXPORT_SYMBOL vmlinux 0xc1d47d64 pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1de83a0 dmam_free_noncoherent -EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla -EXPORT_SYMBOL vmlinux 0xc1f83b40 blk_register_region -EXPORT_SYMBOL vmlinux 0xc20a3261 omapdss_output_unset_device -EXPORT_SYMBOL vmlinux 0xc214c3e2 __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0xc21c48f7 pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0xc225786a tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0xc25cce84 pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0xc26d8909 of_find_i2c_device_by_node -EXPORT_SYMBOL vmlinux 0xc2770608 mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0xc28559c1 genl_notify -EXPORT_SYMBOL vmlinux 0xc29a1da4 blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0xc29cc1c0 ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0xc2a0cbf6 nvm_unregister_mgr -EXPORT_SYMBOL vmlinux 0xc2a14439 page_readlink -EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xc2b4e83f request_key_async_with_auxdata -EXPORT_SYMBOL vmlinux 0xc2b5dae2 pci_select_bars -EXPORT_SYMBOL vmlinux 0xc2bc1ef6 register_shrinker -EXPORT_SYMBOL vmlinux 0xc2c21851 xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0xc2d3db81 snd_info_register -EXPORT_SYMBOL vmlinux 0xc2d711e1 krealloc -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2f73a61 dev_uc_del -EXPORT_SYMBOL vmlinux 0xc3273037 ps2_handle_ack -EXPORT_SYMBOL vmlinux 0xc331c654 bio_add_pc_page -EXPORT_SYMBOL vmlinux 0xc338328c bprm_change_interp -EXPORT_SYMBOL vmlinux 0xc341e573 jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xc35926b3 try_to_release_page -EXPORT_SYMBOL vmlinux 0xc359fb65 abort -EXPORT_SYMBOL vmlinux 0xc35b72ab ping_prot -EXPORT_SYMBOL vmlinux 0xc36f5426 __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xc38d4e2d scm_fp_dup -EXPORT_SYMBOL vmlinux 0xc39787d9 vga_get -EXPORT_SYMBOL vmlinux 0xc39dadcd pagecache_write_begin -EXPORT_SYMBOL vmlinux 0xc39f31c5 scsi_rescan_device -EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0xc3d470b4 of_phy_attach -EXPORT_SYMBOL vmlinux 0xc3d6e2a8 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0xc3dc6df4 pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0xc3eccbe4 abx500_mask_and_set_register_interruptible -EXPORT_SYMBOL vmlinux 0xc40946e9 mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0xc41b48f7 scsi_device_set_state -EXPORT_SYMBOL vmlinux 0xc41f0516 node_states -EXPORT_SYMBOL vmlinux 0xc42e4daa register_md_personality -EXPORT_SYMBOL vmlinux 0xc4350ef6 to_nd_btt -EXPORT_SYMBOL vmlinux 0xc43fcd21 bio_copy_kern -EXPORT_SYMBOL vmlinux 0xc44358f1 bio_unmap_user -EXPORT_SYMBOL vmlinux 0xc45ab099 put_filp -EXPORT_SYMBOL vmlinux 0xc486a50a skb_push -EXPORT_SYMBOL vmlinux 0xc48ca027 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0xc490c797 edma_filter_fn -EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup -EXPORT_SYMBOL vmlinux 0xc49aad6f swiotlb_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0xc4a44c15 inet_confirm_addr -EXPORT_SYMBOL vmlinux 0xc4c55ac8 sb_set_blocksize -EXPORT_SYMBOL vmlinux 0xc4cc7cb3 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0xc4e8f6cb phy_init_hw -EXPORT_SYMBOL vmlinux 0xc5296399 jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0xc52da066 omap_set_dma_dest_params -EXPORT_SYMBOL vmlinux 0xc535ef52 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0xc5375d00 __break_lease -EXPORT_SYMBOL vmlinux 0xc5386fa1 lwtunnel_input -EXPORT_SYMBOL vmlinux 0xc54a287f blk_init_tags -EXPORT_SYMBOL vmlinux 0xc56aff2a nf_register_hook -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc59d3da1 dev_addr_add -EXPORT_SYMBOL vmlinux 0xc5a3f5a4 __alloc_pages_nodemask -EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xc60db386 backlight_device_register -EXPORT_SYMBOL vmlinux 0xc60e7d63 seq_path -EXPORT_SYMBOL vmlinux 0xc619b4f3 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0xc620dbf1 blk_put_queue -EXPORT_SYMBOL vmlinux 0xc625f165 dev_alloc_name -EXPORT_SYMBOL vmlinux 0xc627c050 mdiobus_read -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc63df81a of_mm_gpiochip_add -EXPORT_SYMBOL vmlinux 0xc645508c snd_ctl_new1 -EXPORT_SYMBOL vmlinux 0xc6460283 padata_alloc -EXPORT_SYMBOL vmlinux 0xc66bb62b register_console -EXPORT_SYMBOL vmlinux 0xc66fa6a6 ida_remove -EXPORT_SYMBOL vmlinux 0xc67058d6 netif_skb_features -EXPORT_SYMBOL vmlinux 0xc68a9f83 devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0xc6b33f32 register_sound_mixer -EXPORT_SYMBOL vmlinux 0xc6b86ee8 security_inode_permission -EXPORT_SYMBOL vmlinux 0xc6c7ea9b __getblk_gfp -EXPORT_SYMBOL vmlinux 0xc6c8bd78 led_blink_set -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6d64e90 blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xc6dcd12b mapping_tagged -EXPORT_SYMBOL vmlinux 0xc6de77b4 gen_new_estimator -EXPORT_SYMBOL vmlinux 0xc6ee5828 mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0xc70dea60 lwtunnel_state_alloc -EXPORT_SYMBOL vmlinux 0xc7139c2f unregister_cdrom -EXPORT_SYMBOL vmlinux 0xc71f7aed mmc_register_driver -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc749dde2 set_cached_acl -EXPORT_SYMBOL vmlinux 0xc751a533 mmc_can_reset -EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass -EXPORT_SYMBOL vmlinux 0xc75cac7b generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc786fac5 devm_ioremap -EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc -EXPORT_SYMBOL vmlinux 0xc79e0131 dma_release_declared_memory -EXPORT_SYMBOL vmlinux 0xc7a06332 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7a8fdcd register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0xc7ab4086 seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xc7bcbc8d add_wait_queue -EXPORT_SYMBOL vmlinux 0xc7ce5e82 pci_find_bus -EXPORT_SYMBOL vmlinux 0xc7d7a51e inet_csk_accept -EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn -EXPORT_SYMBOL vmlinux 0xc7ef62b7 vfs_fsync -EXPORT_SYMBOL vmlinux 0xc804fd97 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0xc824220c devm_gpiod_put -EXPORT_SYMBOL vmlinux 0xc825cd48 generic_setlease -EXPORT_SYMBOL vmlinux 0xc8323f9d dcache_dir_close -EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape -EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0xc83ebd39 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc8511ad6 set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0xc862cf12 __blk_end_request_cur -EXPORT_SYMBOL vmlinux 0xc86c575e inc_nlink -EXPORT_SYMBOL vmlinux 0xc8724a25 proc_set_user -EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc87b4278 blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xc8e9cd6e tty_write_room -EXPORT_SYMBOL vmlinux 0xc8f75927 ppp_register_channel -EXPORT_SYMBOL vmlinux 0xc8fd844b devm_gpio_request -EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen -EXPORT_SYMBOL vmlinux 0xc912b86b vfs_statfs -EXPORT_SYMBOL vmlinux 0xc935cd4b d_path -EXPORT_SYMBOL vmlinux 0xc948405e mount_single -EXPORT_SYMBOL vmlinux 0xc95a75cd blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc98a2ba1 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9bac0b0 __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0xc9bc7179 sock_no_getsockopt -EXPORT_SYMBOL vmlinux 0xc9bfa20e eth_header_parse -EXPORT_SYMBOL vmlinux 0xc9ef45ca csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy -EXPORT_SYMBOL vmlinux 0xca133d2c cdev_alloc -EXPORT_SYMBOL vmlinux 0xca41eaa3 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0xca4f302e end_page_writeback -EXPORT_SYMBOL vmlinux 0xca51dc78 dmam_release_declared_memory -EXPORT_SYMBOL vmlinux 0xca8427f0 skb_free_datagram -EXPORT_SYMBOL vmlinux 0xca86ea29 vme_lm_request -EXPORT_SYMBOL vmlinux 0xca92e945 msm_pinctrl_remove -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xcaa8c42b sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0xcabdb14a skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0xcac14837 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0xcae50d99 vc_resize -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb319db4 eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0xcb3c3349 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0xcb3dea45 seq_open -EXPORT_SYMBOL vmlinux 0xcb466063 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0xcb6b28ab tcf_register_action -EXPORT_SYMBOL vmlinux 0xcb9b126e seq_escape -EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0xcbeac4be hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0xcbee6439 ida_simple_get -EXPORT_SYMBOL vmlinux 0xcc0c8017 dev_set_mtu -EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc50928e fifo_set_limit -EXPORT_SYMBOL vmlinux 0xcc59a1b0 dm_register_target -EXPORT_SYMBOL vmlinux 0xcc704928 up_read -EXPORT_SYMBOL vmlinux 0xcca1c520 abx500_register_ops -EXPORT_SYMBOL vmlinux 0xccb2f14a kobject_get -EXPORT_SYMBOL vmlinux 0xccc14bb6 set_wb_congested -EXPORT_SYMBOL vmlinux 0xccc16676 generic_file_llseek -EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor -EXPORT_SYMBOL vmlinux 0xccc51feb gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0xcce58a55 blk_queue_invalidate_tags -EXPORT_SYMBOL vmlinux 0xccfef64f skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL vmlinux 0xcd211606 pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0xcd24242c fbcon_rotate_ccw -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd30b95a tmio_core_mmc_clk_div -EXPORT_SYMBOL vmlinux 0xcd3915a2 serio_open -EXPORT_SYMBOL vmlinux 0xcd5c09f8 dump_emit -EXPORT_SYMBOL vmlinux 0xcd63c845 __aeabi_lasr -EXPORT_SYMBOL vmlinux 0xcdbbfa18 rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdc49e19 lockref_get -EXPORT_SYMBOL vmlinux 0xcddd39b5 nd_integrity_init -EXPORT_SYMBOL vmlinux 0xce00b978 do_splice_direct -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce30f482 gen_pool_free -EXPORT_SYMBOL vmlinux 0xce346d8d mark_info_dirty -EXPORT_SYMBOL vmlinux 0xce3ca308 copy_from_user_toio -EXPORT_SYMBOL vmlinux 0xce48a1f0 neigh_table_clear -EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce61d72d pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0xce6882c7 devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0xce994f8f mmc_of_parse -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xcec8a710 down_write_trylock -EXPORT_SYMBOL vmlinux 0xced934fb dev_get_flags -EXPORT_SYMBOL vmlinux 0xcedbcdfa snd_jack_set_key -EXPORT_SYMBOL vmlinux 0xceeb0985 gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0xceeb663f tcp_splice_read -EXPORT_SYMBOL vmlinux 0xceed7f85 _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 -EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcefe8f29 i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0xcf0a5f27 param_ops_int -EXPORT_SYMBOL vmlinux 0xcf10ebc4 __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0xcf169fea kset_unregister -EXPORT_SYMBOL vmlinux 0xcf1b5492 snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL vmlinux 0xcf2c3028 make_bad_inode -EXPORT_SYMBOL vmlinux 0xcf2ffc16 pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0xcf620540 pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0xcf6ff80c may_umount_tree -EXPORT_SYMBOL vmlinux 0xcf7a6a9d param_ops_bool -EXPORT_SYMBOL vmlinux 0xcf7f22fc bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0xcf88625f mempool_create_node -EXPORT_SYMBOL vmlinux 0xcf9758ad md_reload_sb -EXPORT_SYMBOL vmlinux 0xcf9a2f20 tty_port_open -EXPORT_SYMBOL vmlinux 0xcfbbe90f nvm_dev_dma_alloc -EXPORT_SYMBOL vmlinux 0xcfbee608 proc_create_mount_point -EXPORT_SYMBOL vmlinux 0xcfc0df0a simple_rename -EXPORT_SYMBOL vmlinux 0xcfe4d1ff cros_ec_check_result -EXPORT_SYMBOL vmlinux 0xcfe9e264 inet6_del_offload -EXPORT_SYMBOL vmlinux 0xcff6b676 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0xcff94b36 d_drop -EXPORT_SYMBOL vmlinux 0xcff9c8e0 nf_unregister_hooks -EXPORT_SYMBOL vmlinux 0xd002d47c snd_pcm_hw_param_last -EXPORT_SYMBOL vmlinux 0xd034105f lockref_put_return -EXPORT_SYMBOL vmlinux 0xd037d1c4 ip_defrag -EXPORT_SYMBOL vmlinux 0xd0655827 tcp_destroy_cgroup -EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond -EXPORT_SYMBOL vmlinux 0xd08839e4 get_fs_type -EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc -EXPORT_SYMBOL vmlinux 0xd09b2de3 alloc_disk_node -EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init -EXPORT_SYMBOL vmlinux 0xd0a4c226 do_map_probe -EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces -EXPORT_SYMBOL vmlinux 0xd0bbbdd8 kmap_high -EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format -EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first -EXPORT_SYMBOL vmlinux 0xd100acbd _raw_write_lock -EXPORT_SYMBOL vmlinux 0xd1067ba7 dispc_ovl_enabled -EXPORT_SYMBOL vmlinux 0xd13627b4 mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0xd14c5afd scsi_ioctl_reset -EXPORT_SYMBOL vmlinux 0xd1511740 neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0xd15529d3 omap_dss_find_output_by_port_node -EXPORT_SYMBOL vmlinux 0xd15b4a7f generic_file_fsync -EXPORT_SYMBOL vmlinux 0xd169a4c1 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd185217b vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0xd196c9be kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xd1a2f251 skb_seq_read -EXPORT_SYMBOL vmlinux 0xd1b0c443 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0xd1c10775 neigh_event_ns -EXPORT_SYMBOL vmlinux 0xd1c84dfb hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0xd1d38794 flush_old_exec -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1de566e __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0xd1e79cae fence_wait_timeout -EXPORT_SYMBOL vmlinux 0xd1fa6de0 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0xd1fdb7cc mmc_power_save_host -EXPORT_SYMBOL vmlinux 0xd225c2ba bio_chain -EXPORT_SYMBOL vmlinux 0xd2433948 lwtunnel_build_state -EXPORT_SYMBOL vmlinux 0xd247aa61 udp_seq_open -EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xd2560ff9 cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0xd25c3c9c seq_release_private -EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd2636a96 seq_hex_dump -EXPORT_SYMBOL vmlinux 0xd26c19af pci_request_regions -EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd2976511 tcp_getsockopt -EXPORT_SYMBOL vmlinux 0xd2af138b reservation_ww_class -EXPORT_SYMBOL vmlinux 0xd2c35ed9 sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0xd2c832fd nvm_end_io -EXPORT_SYMBOL vmlinux 0xd2d1b0fa inet_release -EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2f29632 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0xd301c41f mmc_start_req -EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd3220164 pci_fixup_device -EXPORT_SYMBOL vmlinux 0xd3378681 udp_set_csum -EXPORT_SYMBOL vmlinux 0xd33887c9 xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xd376c39b xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0xd37d61e1 mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0xd3a2f725 devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xd3b819db seq_open_private -EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xd3bebe5b skb_make_writable -EXPORT_SYMBOL vmlinux 0xd3ccc4b6 up_write -EXPORT_SYMBOL vmlinux 0xd3dbfbc4 _find_first_zero_bit_le -EXPORT_SYMBOL vmlinux 0xd3de9f9d iommu_tbl_range_alloc -EXPORT_SYMBOL vmlinux 0xd3e64d8c blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xd3e6f60d cpu_possible_mask -EXPORT_SYMBOL vmlinux 0xd3fd1b67 i2c_use_client -EXPORT_SYMBOL vmlinux 0xd408965b shdma_init -EXPORT_SYMBOL vmlinux 0xd40af836 freeze_bdev -EXPORT_SYMBOL vmlinux 0xd4122a96 bio_uncopy_user -EXPORT_SYMBOL vmlinux 0xd4179eb7 amba_driver_register -EXPORT_SYMBOL vmlinux 0xd436e0a9 free_task -EXPORT_SYMBOL vmlinux 0xd461584c mmc_alloc_host -EXPORT_SYMBOL vmlinux 0xd4669fad complete -EXPORT_SYMBOL vmlinux 0xd47c5a4e inet6_add_protocol -EXPORT_SYMBOL vmlinux 0xd48a1fd6 pci_dev_get -EXPORT_SYMBOL vmlinux 0xd498e258 nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0xd4aa15aa tcp_connect -EXPORT_SYMBOL vmlinux 0xd4b22408 ilookup5 -EXPORT_SYMBOL vmlinux 0xd4b8690f snd_pcm_new_stream -EXPORT_SYMBOL vmlinux 0xd4bcc88e dquot_enable -EXPORT_SYMBOL vmlinux 0xd4ece391 netpoll_cleanup -EXPORT_SYMBOL vmlinux 0xd4fe381b flush_signals -EXPORT_SYMBOL vmlinux 0xd51822be nf_log_set -EXPORT_SYMBOL vmlinux 0xd5315f18 ip_getsockopt -EXPORT_SYMBOL vmlinux 0xd538574b alloc_disk -EXPORT_SYMBOL vmlinux 0xd549d76a seq_vprintf -EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0xd55b4360 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0xd57676f7 netpoll_send_skb_on_dev -EXPORT_SYMBOL vmlinux 0xd586600a xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames -EXPORT_SYMBOL vmlinux 0xd5c69790 devfreq_resume_device -EXPORT_SYMBOL vmlinux 0xd5d841d2 param_ops_short -EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0xd609d2e3 dma_supported -EXPORT_SYMBOL vmlinux 0xd61347c6 register_sysctl -EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0xd6176711 blk_run_queue -EXPORT_SYMBOL vmlinux 0xd627480b strncat -EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout -EXPORT_SYMBOL vmlinux 0xd63a630e pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0xd63f8a71 is_bad_inode -EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode -EXPORT_SYMBOL vmlinux 0xd64f4cd8 pci_clear_master -EXPORT_SYMBOL vmlinux 0xd6647482 i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0xd66e1bc0 nvm_register -EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd692e250 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0xd6a8a9a6 dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0xd6a914db mmc_power_restore_host -EXPORT_SYMBOL vmlinux 0xd6c57aee bio_endio -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd723cae2 iget_failed -EXPORT_SYMBOL vmlinux 0xd74289f9 __percpu_counter_add -EXPORT_SYMBOL vmlinux 0xd74c2a75 key_unlink -EXPORT_SYMBOL vmlinux 0xd757f294 generic_fillattr -EXPORT_SYMBOL vmlinux 0xd7595ee8 mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0xd759b412 alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function -EXPORT_SYMBOL vmlinux 0xd7689de2 of_mdio_find_bus -EXPORT_SYMBOL vmlinux 0xd7722554 set_user_nice -EXPORT_SYMBOL vmlinux 0xd77828ab inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write -EXPORT_SYMBOL vmlinux 0xd7b47a40 inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0xd7b8c4d4 proc_create_data -EXPORT_SYMBOL vmlinux 0xd7c21447 address_space_init_once -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7e67afd iov_iter_init -EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd81ff596 dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0xd833056a clocksource_change_rating -EXPORT_SYMBOL vmlinux 0xd845cf95 nla_put -EXPORT_SYMBOL vmlinux 0xd85833cb __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0xd85cd67e __wake_up -EXPORT_SYMBOL vmlinux 0xd86e76ee inet_del_protocol -EXPORT_SYMBOL vmlinux 0xd876a92f in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xd87bdf7f dss_mgr_disconnect -EXPORT_SYMBOL vmlinux 0xd87bff47 kfree_skb_list -EXPORT_SYMBOL vmlinux 0xd882d76e ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0xd899cebb remap_vmalloc_range_partial -EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8af6df4 dma_alloc_from_coherent -EXPORT_SYMBOL vmlinux 0xd8afa33c blk_fetch_request -EXPORT_SYMBOL vmlinux 0xd8b1901a tty_register_driver -EXPORT_SYMBOL vmlinux 0xd8bb3ddb tcp_proto_cgroup -EXPORT_SYMBOL vmlinux 0xd8c87c39 mfd_cell_enable -EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xd8df7a9a proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0xd8e0783e save_mount_options -EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region -EXPORT_SYMBOL vmlinux 0xd8f1efa7 bdi_setup_and_register -EXPORT_SYMBOL vmlinux 0xd90a2156 scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0xd913adac dquot_free_inode -EXPORT_SYMBOL vmlinux 0xd9285187 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0xd92bc263 zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0xd9318b5a ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0xd95137b5 find_get_entry -EXPORT_SYMBOL vmlinux 0xd955d2b7 omap_set_dma_dest_data_pack -EXPORT_SYMBOL vmlinux 0xd959b122 led_update_brightness -EXPORT_SYMBOL vmlinux 0xd9766a7d pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0xd97edd47 neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd98d304d nf_register_hooks -EXPORT_SYMBOL vmlinux 0xd995c515 page_address -EXPORT_SYMBOL vmlinux 0xd99d3225 elv_rb_find -EXPORT_SYMBOL vmlinux 0xd9a372e6 pwmss_submodule_state_change -EXPORT_SYMBOL vmlinux 0xd9b8dbb3 sk_stream_write_space -EXPORT_SYMBOL vmlinux 0xd9c53ee1 __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen -EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler -EXPORT_SYMBOL vmlinux 0xda07ba7f security_task_getsecid -EXPORT_SYMBOL vmlinux 0xda12bfc5 dss_mgr_set_lcd_config -EXPORT_SYMBOL vmlinux 0xda20e832 pci_release_region -EXPORT_SYMBOL vmlinux 0xda25a3d0 redraw_screen -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda416011 cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0xda4be64a kill_block_super -EXPORT_SYMBOL vmlinux 0xda567ff4 snd_pcm_new_internal -EXPORT_SYMBOL vmlinux 0xda5de496 blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xda6af5ce rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0xda79b962 input_unregister_handler -EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xda87e3c0 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0xdaa57ec3 totalhigh_pages -EXPORT_SYMBOL vmlinux 0xdaae5b14 pci_platform_rom -EXPORT_SYMBOL vmlinux 0xdaafc807 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0xdab56660 uart_get_divisor -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdad97f94 __raw_writesw -EXPORT_SYMBOL vmlinux 0xdaed9e65 remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0xdb2491c7 md_error -EXPORT_SYMBOL vmlinux 0xdb3eeff4 inode_add_bytes -EXPORT_SYMBOL vmlinux 0xdb4292e4 omap_set_dma_params -EXPORT_SYMBOL vmlinux 0xdb5354b4 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0xdb58cdcf skb_append_datato_frags -EXPORT_SYMBOL vmlinux 0xdb5e448d nf_unregister_hook -EXPORT_SYMBOL vmlinux 0xdb68190d dma_mark_declared_memory_occupied -EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb6bd200 snd_mixer_oss_notify_callback -EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb815d87 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0xdb93b838 dispc_free_irq -EXPORT_SYMBOL vmlinux 0xdba5a03e dcb_getapp -EXPORT_SYMBOL vmlinux 0xdbad1ada blk_rq_init -EXPORT_SYMBOL vmlinux 0xdbb533f3 tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0xdbb763d5 pci_unmap_rom -EXPORT_SYMBOL vmlinux 0xdbd39dcc max8925_set_bits -EXPORT_SYMBOL vmlinux 0xdbfd9b32 nf_reinject -EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0xdc05c391 tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0xdc0f3cf6 dump_align -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc2dcc06 dev_uc_flush -EXPORT_SYMBOL vmlinux 0xdc3f04e1 clk_register_clkdevs -EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 -EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc5384d3 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0xdc5c6297 videomode_to_omap_video_timings -EXPORT_SYMBOL vmlinux 0xdc6969d1 tso_start -EXPORT_SYMBOL vmlinux 0xdc6de3a8 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0xdca9606d __dev_get_by_name -EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close -EXPORT_SYMBOL vmlinux 0xdce78526 inode_needs_sync -EXPORT_SYMBOL vmlinux 0xdcf3a1c0 input_inject_event -EXPORT_SYMBOL vmlinux 0xdcfce02b submit_bio_wait -EXPORT_SYMBOL vmlinux 0xdd0126d1 xfrm_lookup -EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat -EXPORT_SYMBOL vmlinux 0xdd226fa9 __raw_readsw -EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr -EXPORT_SYMBOL vmlinux 0xdd332ce7 vfs_getxattr_alloc -EXPORT_SYMBOL vmlinux 0xdd387cfb add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0xdd3916ac _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0xdd483830 mutex_trylock -EXPORT_SYMBOL vmlinux 0xdd51a7d3 __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0xdd628da8 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0xdd826604 atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0xddfc05fc jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0xde0629ed generic_ro_fops -EXPORT_SYMBOL vmlinux 0xde385b77 dev_set_group -EXPORT_SYMBOL vmlinux 0xde42049a mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0xde43219c page_cache_prev_hole -EXPORT_SYMBOL vmlinux 0xde44a5da d_rehash -EXPORT_SYMBOL vmlinux 0xde5b9a52 fb_set_var -EXPORT_SYMBOL vmlinux 0xde6dd4e0 __quota_error -EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages -EXPORT_SYMBOL vmlinux 0xde9b0ee3 update_region -EXPORT_SYMBOL vmlinux 0xdea751ff security_inode_init_security -EXPORT_SYMBOL vmlinux 0xdec030e5 arm_clear_user -EXPORT_SYMBOL vmlinux 0xdec2a318 blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0xded931f3 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0xdee6befa current_fs_time -EXPORT_SYMBOL vmlinux 0xdee9134c napi_gro_frags -EXPORT_SYMBOL vmlinux 0xdf023aa0 devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0xdf057d04 pagecache_get_page -EXPORT_SYMBOL vmlinux 0xdf06277c set_create_files_as -EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf30a1c9 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update -EXPORT_SYMBOL vmlinux 0xdf3b5cdd snd_info_create_card_entry -EXPORT_SYMBOL vmlinux 0xdf4da8f7 of_n_size_cells -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol -EXPORT_SYMBOL vmlinux 0xdf6589b9 d_alloc_pseudo -EXPORT_SYMBOL vmlinux 0xdf65a81b scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0xdf6cdd1d jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0xdf7deb22 skb_tx_error -EXPORT_SYMBOL vmlinux 0xdf7eef0a __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0xdf88d60f pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0xdf8e039e inet_frag_maybe_warn_overflow -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdf9e6b52 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0xdfab5790 misc_register -EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init -EXPORT_SYMBOL vmlinux 0xdfd14f55 kmem_cache_free -EXPORT_SYMBOL vmlinux 0xdfd91ce9 omap_type -EXPORT_SYMBOL vmlinux 0xdfe1215e mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0xdfe17d3c jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xe01f8080 input_reset_device -EXPORT_SYMBOL vmlinux 0xe0463a47 mount_bdev -EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xe051b308 filemap_flush -EXPORT_SYMBOL vmlinux 0xe055ccc5 simple_rmdir -EXPORT_SYMBOL vmlinux 0xe05aa5ef tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone -EXPORT_SYMBOL vmlinux 0xe0624ef2 security_path_rename -EXPORT_SYMBOL vmlinux 0xe0666836 ps2_sendbyte -EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xe07a1322 shdma_chan_remove -EXPORT_SYMBOL vmlinux 0xe07d6809 omap_dss_put_device -EXPORT_SYMBOL vmlinux 0xe0806be1 genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool -EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco -EXPORT_SYMBOL vmlinux 0xe0cf2079 of_platform_device_create -EXPORT_SYMBOL vmlinux 0xe0d9eb61 eth_mac_addr -EXPORT_SYMBOL vmlinux 0xe0dc75e2 pagecache_write_end -EXPORT_SYMBOL vmlinux 0xe0dcc502 xfrm_input_resume -EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -EXPORT_SYMBOL vmlinux 0xe127fb18 down_killable -EXPORT_SYMBOL vmlinux 0xe133877e send_sig_info -EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0xe13cbede call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0xe15c6847 ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xe1762d7d netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0xe17b6a3d mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0xe1acdafc twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0xe1cf645f __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0xe1e16b69 simple_readpage -EXPORT_SYMBOL vmlinux 0xe1e4b6bc __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0xe1f0ab3a _raw_read_lock_irqsave -EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xe20d2091 release_sock -EXPORT_SYMBOL vmlinux 0xe211c6de dev_get_iflink -EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 -EXPORT_SYMBOL vmlinux 0xe2519467 user_path_create -EXPORT_SYMBOL vmlinux 0xe2546b85 vlan_vid_del -EXPORT_SYMBOL vmlinux 0xe259ff40 uart_unregister_driver -EXPORT_SYMBOL vmlinux 0xe261360a __scm_destroy -EXPORT_SYMBOL vmlinux 0xe261821c blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0xe2829ca6 inet6_getname -EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t -EXPORT_SYMBOL vmlinux 0xe2a238bc vfs_unlink -EXPORT_SYMBOL vmlinux 0xe2c293b2 abx500_remove_ops -EXPORT_SYMBOL vmlinux 0xe2cc96f7 __do_once_done -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2e4a361 of_get_next_parent -EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user -EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup -EXPORT_SYMBOL vmlinux 0xe30ea387 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0xe31b3a28 scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0xe36bf292 truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0xe37d10ae omap_dispc_unregister_isr -EXPORT_SYMBOL vmlinux 0xe3994cd4 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0xe39f7f34 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0xe3bd19fc block_write_begin -EXPORT_SYMBOL vmlinux 0xe3c52497 of_cpufreq_power_cooling_register -EXPORT_SYMBOL vmlinux 0xe3ce42c5 km_new_mapping -EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xe3f552c5 udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0xe3fa1512 ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0xe40179be sock_get_timestampns -EXPORT_SYMBOL vmlinux 0xe413be4a memcg_socket_limit_enabled -EXPORT_SYMBOL vmlinux 0xe4216e52 dquot_release -EXPORT_SYMBOL vmlinux 0xe42b851c pcie_get_readrq -EXPORT_SYMBOL vmlinux 0xe43274bc proc_dointvec -EXPORT_SYMBOL vmlinux 0xe47ad305 writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0xe48ae9f7 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0xe4bc0c3b nf_log_unregister -EXPORT_SYMBOL vmlinux 0xe4c80097 cacheid -EXPORT_SYMBOL vmlinux 0xe4cb0b8c pcie_port_service_register -EXPORT_SYMBOL vmlinux 0xe4d4be71 nf_log_packet -EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array -EXPORT_SYMBOL vmlinux 0xe5123824 __kernel_write -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe530e07d pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xe546bae6 mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0xe552860e input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0xe557093d genphy_config_aneg -EXPORT_SYMBOL vmlinux 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL vmlinux 0xe5744e2a force_sig -EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton -EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5cfb87b netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0xe5db7577 snd_jack_report -EXPORT_SYMBOL vmlinux 0xe5e190a1 filemap_map_pages -EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xe5ef73ea snd_pcm_hw_constraint_integer -EXPORT_SYMBOL vmlinux 0xe5f12d11 tso_count_descs -EXPORT_SYMBOL vmlinux 0xe5f16375 inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0xe62fdd9a register_qdisc -EXPORT_SYMBOL vmlinux 0xe65a8ab3 __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0xe66452ab dql_init -EXPORT_SYMBOL vmlinux 0xe66f3282 input_register_handle -EXPORT_SYMBOL vmlinux 0xe68c84ae deactivate_super -EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size -EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe69f813b skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0xe6a21cb9 swiotlb_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0xe6a33b93 mmc_start_bkops -EXPORT_SYMBOL vmlinux 0xe6b438f1 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0xe6ca4938 phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0xe6cfe935 snd_pcm_suspend -EXPORT_SYMBOL vmlinux 0xe6e13033 __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update -EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock -EXPORT_SYMBOL vmlinux 0xe7075b97 idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xe707d823 __aeabi_uidiv -EXPORT_SYMBOL vmlinux 0xe71deffe scsi_print_result -EXPORT_SYMBOL vmlinux 0xe72a11a5 commit_creds -EXPORT_SYMBOL vmlinux 0xe75170d5 single_open -EXPORT_SYMBOL vmlinux 0xe757aeb6 xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xe76e7a27 __f_setown -EXPORT_SYMBOL vmlinux 0xe7748c22 snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL vmlinux 0xe7907e0c pid_task -EXPORT_SYMBOL vmlinux 0xe790afc3 omap_get_dma_dst_pos -EXPORT_SYMBOL vmlinux 0xe7a3d8b9 i2c_add_adapter -EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx -EXPORT_SYMBOL vmlinux 0xe7b6315e kblockd_schedule_delayed_work_on -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7e15910 dispc_clear_irqstatus -EXPORT_SYMBOL vmlinux 0xe7e5914a filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xe7edf4ea tc_classify -EXPORT_SYMBOL vmlinux 0xe8030dc9 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0xe80af32c jbd2_journal_start -EXPORT_SYMBOL vmlinux 0xe81e9797 cdrom_release -EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0xe833f381 __inode_add_bytes -EXPORT_SYMBOL vmlinux 0xe85fb5d6 noop_fsync -EXPORT_SYMBOL vmlinux 0xe8709096 ata_port_printk -EXPORT_SYMBOL vmlinux 0xe875b667 simple_dir_operations -EXPORT_SYMBOL vmlinux 0xe876bb29 param_set_ushort -EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss -EXPORT_SYMBOL vmlinux 0xe87b2edd sg_copy_buffer -EXPORT_SYMBOL vmlinux 0xe8801e4d inode_add_rsv_space -EXPORT_SYMBOL vmlinux 0xe89ad353 of_device_is_big_endian -EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xe8cafc1c open_check_o_direct -EXPORT_SYMBOL vmlinux 0xe8d3b5ea uart_register_driver -EXPORT_SYMBOL vmlinux 0xe8e93ab4 register_key_type -EXPORT_SYMBOL vmlinux 0xe8f9de1a generic_end_io_acct -EXPORT_SYMBOL vmlinux 0xe912da6b unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe9379429 blk_mq_all_tag_busy_iter -EXPORT_SYMBOL vmlinux 0xe93ed297 skb_pad -EXPORT_SYMBOL vmlinux 0xe93f6042 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr -EXPORT_SYMBOL vmlinux 0xe9606593 dcache_readdir -EXPORT_SYMBOL vmlinux 0xe979352b elevator_alloc -EXPORT_SYMBOL vmlinux 0xe97cd291 I_BDEV -EXPORT_SYMBOL vmlinux 0xe97f2df1 eth_gro_receive -EXPORT_SYMBOL vmlinux 0xe999b42a tty_unthrottle -EXPORT_SYMBOL vmlinux 0xe99a0dc7 loop_register_transfer -EXPORT_SYMBOL vmlinux 0xe9a0c149 blk_queue_dma_pad -EXPORT_SYMBOL vmlinux 0xe9be808d lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0xe9ddc6cb kmap_atomic -EXPORT_SYMBOL vmlinux 0xe9e94a6f dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xea032811 sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len -EXPORT_SYMBOL vmlinux 0xea1cc7d0 netlink_capable -EXPORT_SYMBOL vmlinux 0xea1f5b88 samsung_rev -EXPORT_SYMBOL vmlinux 0xea2e514a fib_default_rule_add -EXPORT_SYMBOL vmlinux 0xea3107bb frontswap_register_ops -EXPORT_SYMBOL vmlinux 0xea4bc21a i2c_del_adapter -EXPORT_SYMBOL vmlinux 0xea51f930 tty_unlock -EXPORT_SYMBOL vmlinux 0xea577c54 phy_suspend -EXPORT_SYMBOL vmlinux 0xea62b7ca pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0xea631ab9 ps2_init -EXPORT_SYMBOL vmlinux 0xea7987f1 key_update -EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table -EXPORT_SYMBOL vmlinux 0xea87b1b0 serio_close -EXPORT_SYMBOL vmlinux 0xeace3e1a netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0xeaced6bd bio_add_page -EXPORT_SYMBOL vmlinux 0xeae799f4 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0xeb03b389 __raw_readsl -EXPORT_SYMBOL vmlinux 0xeb1b120e omap_set_dma_write_mode -EXPORT_SYMBOL vmlinux 0xeb1cc2e9 __bread_gfp -EXPORT_SYMBOL vmlinux 0xeb32fe5b __scsi_alloc_queue -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xeb7fd495 nf_afinfo -EXPORT_SYMBOL vmlinux 0xeb87a1d5 d_obtain_alias -EXPORT_SYMBOL vmlinux 0xeb9a353b pci_get_device -EXPORT_SYMBOL vmlinux 0xeb9dba13 mdiobus_scan -EXPORT_SYMBOL vmlinux 0xeba334d0 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0xebb30bde __sb_end_write -EXPORT_SYMBOL vmlinux 0xebb58d23 pci_pme_active -EXPORT_SYMBOL vmlinux 0xebe3340b kernel_recvmsg -EXPORT_SYMBOL vmlinux 0xebe5f3d8 devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0xebfda697 del_random_ready_callback -EXPORT_SYMBOL vmlinux 0xebfdcbdf system_serial_high -EXPORT_SYMBOL vmlinux 0xec03ce4d invalidate_bdev -EXPORT_SYMBOL vmlinux 0xec1aa6ef memzero_explicit -EXPORT_SYMBOL vmlinux 0xec1fbfde vlan_uses_dev -EXPORT_SYMBOL vmlinux 0xec283e95 vfs_fsync_range -EXPORT_SYMBOL vmlinux 0xec28f31d d_delete -EXPORT_SYMBOL vmlinux 0xec39ab59 lwtunnel_cmp_encap -EXPORT_SYMBOL vmlinux 0xec3cc61a d_prune_aliases -EXPORT_SYMBOL vmlinux 0xec498525 udp_del_offload -EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec8fa2e7 input_open_device -EXPORT_SYMBOL vmlinux 0xeca5d679 dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0xeca9faa6 generic_start_io_acct -EXPORT_SYMBOL vmlinux 0xecb42179 max8998_read_reg -EXPORT_SYMBOL vmlinux 0xecbcb8bb radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0xece5e808 snd_pcm_set_ops -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecf8a3b4 __raw_writesl -EXPORT_SYMBOL vmlinux 0xed0ecf6d remap_pfn_range -EXPORT_SYMBOL vmlinux 0xed1f97a5 generic_write_end -EXPORT_SYMBOL vmlinux 0xed2e286c seq_write -EXPORT_SYMBOL vmlinux 0xed548e19 iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xed8502bc inet_sendmsg -EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic -EXPORT_SYMBOL vmlinux 0xed9986f6 __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xeda42f7d uart_add_one_port -EXPORT_SYMBOL vmlinux 0xedb159a2 omap_dss_get_overlay_manager -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedc7f4ec dq_data_lock -EXPORT_SYMBOL vmlinux 0xedd9106d __ashrdi3 -EXPORT_SYMBOL vmlinux 0xeddc82c1 dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xeddf0360 xfrm6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long -EXPORT_SYMBOL vmlinux 0xedfdc038 sock_register -EXPORT_SYMBOL vmlinux 0xee071f7d pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0xee115063 of_get_min_tck -EXPORT_SYMBOL vmlinux 0xee2bc2d0 omapdss_is_initialized -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee3cfe9c pci_find_next_bus -EXPORT_SYMBOL vmlinux 0xee46e4fe nd_region_release_lane -EXPORT_SYMBOL vmlinux 0xee6dd67e jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0xee715ef8 lg_global_unlock -EXPORT_SYMBOL vmlinux 0xee73b2bc nd_device_unregister -EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee986941 pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0xee9bcb4d blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0xee9c3647 tcp_hashinfo -EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeeae6d0e snd_timer_start -EXPORT_SYMBOL vmlinux 0xeeb7b49b sock_no_bind -EXPORT_SYMBOL vmlinux 0xeec53492 sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0xeed3635b proc_dostring -EXPORT_SYMBOL vmlinux 0xeeda81a2 tty_port_init -EXPORT_SYMBOL vmlinux 0xeedd2b2d sync_blockdev -EXPORT_SYMBOL vmlinux 0xeef161aa groups_free -EXPORT_SYMBOL vmlinux 0xef0666cd elevator_exit -EXPORT_SYMBOL vmlinux 0xef0f3eb3 __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0xef2fdc4f __percpu_counter_init -EXPORT_SYMBOL vmlinux 0xef3a65c4 inet_frag_find -EXPORT_SYMBOL vmlinux 0xef465d5e of_get_address -EXPORT_SYMBOL vmlinux 0xef4d5aec ppp_dev_name -EXPORT_SYMBOL vmlinux 0xef550258 file_update_time -EXPORT_SYMBOL vmlinux 0xef5ee74c keyring_alloc -EXPORT_SYMBOL vmlinux 0xef7ed4d6 km_policy_notify -EXPORT_SYMBOL vmlinux 0xef807155 ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xef859391 onfi_async_timing_mode_to_sdr_timings -EXPORT_SYMBOL vmlinux 0xefb6b89a pci_dev_driver -EXPORT_SYMBOL vmlinux 0xefbb0ef0 ilookup -EXPORT_SYMBOL vmlinux 0xefcf3143 wait_for_completion_io -EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xefd6cf06 __aeabi_unwind_cpp_pr0 -EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0xefe12241 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0xefe87a21 __napi_schedule -EXPORT_SYMBOL vmlinux 0xefec312f omap_get_dma_active_status -EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf00714c4 mmc_fixup_device -EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0xf0212b24 dev_crit -EXPORT_SYMBOL vmlinux 0xf0397e81 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0xf03ccca5 pcie_set_mps -EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0xf06c303c omap_video_timings_to_videomode -EXPORT_SYMBOL vmlinux 0xf070cb39 block_commit_write -EXPORT_SYMBOL vmlinux 0xf079ac82 sock_get_timestamp -EXPORT_SYMBOL vmlinux 0xf07c9f30 xfrm4_prepare_output -EXPORT_SYMBOL vmlinux 0xf082e7b1 xfrm6_rcv_cb -EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag -EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int -EXPORT_SYMBOL vmlinux 0xf0af3aad scsi_register -EXPORT_SYMBOL vmlinux 0xf0e1196d fsnotify_init_mark -EXPORT_SYMBOL vmlinux 0xf0ec0c54 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0xf0ed2ef4 __raw_writesb -EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort -EXPORT_SYMBOL vmlinux 0xf0f285a8 pagevec_lookup_tag -EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info -EXPORT_SYMBOL vmlinux 0xf12096cd cdev_init -EXPORT_SYMBOL vmlinux 0xf12f4da3 of_get_next_available_child -EXPORT_SYMBOL vmlinux 0xf1403b40 dss_mgr_start_update -EXPORT_SYMBOL vmlinux 0xf141d3e4 dev_alert -EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init -EXPORT_SYMBOL vmlinux 0xf150d82c datagram_poll -EXPORT_SYMBOL vmlinux 0xf160120b should_remove_suid -EXPORT_SYMBOL vmlinux 0xf1644eca framebuffer_release -EXPORT_SYMBOL vmlinux 0xf16d5d47 vfs_mknod -EXPORT_SYMBOL vmlinux 0xf17989d2 snd_ctl_register_ioctl -EXPORT_SYMBOL vmlinux 0xf1871eae cdrom_open -EXPORT_SYMBOL vmlinux 0xf190dee1 set_groups -EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps -EXPORT_SYMBOL vmlinux 0xf1960ac1 call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf19bc145 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0xf19e9355 cpu_online_mask -EXPORT_SYMBOL vmlinux 0xf1a3861c scsi_host_alloc -EXPORT_SYMBOL vmlinux 0xf1a6f13a d_find_alias -EXPORT_SYMBOL vmlinux 0xf1a81a03 pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0xf1da0ca7 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1deabf2 div64_u64 -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf1ea6f1c __bswapsi2 -EXPORT_SYMBOL vmlinux 0xf1fa65a0 xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0xf209ffd5 seq_read -EXPORT_SYMBOL vmlinux 0xf20b71b3 proc_set_size -EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq -EXPORT_SYMBOL vmlinux 0xf21d6225 cleancache_register_ops -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf25fbaf4 of_device_get_match_data -EXPORT_SYMBOL vmlinux 0xf2600db8 __ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0xf276a64d xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0xf287c1ce of_clk_get_by_name -EXPORT_SYMBOL vmlinux 0xf294c1ca sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0xf2a0510f alloc_fcdev -EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered -EXPORT_SYMBOL vmlinux 0xf2be78c4 find_lock_entry -EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2f350c3 scsi_add_device -EXPORT_SYMBOL vmlinux 0xf3044a9c of_device_is_compatible -EXPORT_SYMBOL vmlinux 0xf30741af copy_page_to_iter -EXPORT_SYMBOL vmlinux 0xf312c4fd request_key -EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform -EXPORT_SYMBOL vmlinux 0xf32bbf91 blk_make_request -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf35619b5 dm_unregister_target -EXPORT_SYMBOL vmlinux 0xf357b8ab snd_ctl_replace -EXPORT_SYMBOL vmlinux 0xf35a47b9 inet_addr_type -EXPORT_SYMBOL vmlinux 0xf36c1f10 pps_unregister_source -EXPORT_SYMBOL vmlinux 0xf36db7b2 ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0xf377d058 netif_receive_skb -EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf38f5482 blk_integrity_compare -EXPORT_SYMBOL vmlinux 0xf3911f81 blk_init_queue_node -EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0xf399697b nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0xf3c060b4 unregister_filesystem -EXPORT_SYMBOL vmlinux 0xf3d92681 udp_add_offload -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3ea5f8d of_graph_get_port_by_id -EXPORT_SYMBOL vmlinux 0xf3ed4c52 pcie_set_readrq -EXPORT_SYMBOL vmlinux 0xf3f89689 default_file_splice_read -EXPORT_SYMBOL vmlinux 0xf4039cfc led_blink_set_oneshot -EXPORT_SYMBOL vmlinux 0xf40b2297 __crypto_memneq -EXPORT_SYMBOL vmlinux 0xf40da019 neigh_parms_release -EXPORT_SYMBOL vmlinux 0xf41f9a90 tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0xf4225a3c generic_show_options -EXPORT_SYMBOL vmlinux 0xf429ada3 xfrm4_rcv -EXPORT_SYMBOL vmlinux 0xf4343faf kfree_skb -EXPORT_SYMBOL vmlinux 0xf43eecca netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0xf43eeebe filp_open -EXPORT_SYMBOL vmlinux 0xf461bd1e con_set_default_unimap -EXPORT_SYMBOL vmlinux 0xf463e05e of_node_get -EXPORT_SYMBOL vmlinux 0xf4701afc amba_driver_unregister -EXPORT_SYMBOL vmlinux 0xf473ffaf down -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf4a7fc6d omapdss_compat_init -EXPORT_SYMBOL vmlinux 0xf4b2871c fb_firmware_edid -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4ce3eb5 __vfs_read -EXPORT_SYMBOL vmlinux 0xf4d2285e mmc_free_host -EXPORT_SYMBOL vmlinux 0xf4da2e26 pci_scan_slot -EXPORT_SYMBOL vmlinux 0xf4e737b4 take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf5066a29 tcp_enter_memory_pressure -EXPORT_SYMBOL vmlinux 0xf51f6569 tty_unregister_device -EXPORT_SYMBOL vmlinux 0xf526386b skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf54187b5 register_framebuffer -EXPORT_SYMBOL vmlinux 0xf5514ce0 ioremap_page -EXPORT_SYMBOL vmlinux 0xf564412a __aeabi_ulcmp -EXPORT_SYMBOL vmlinux 0xf578561b vfs_write -EXPORT_SYMBOL vmlinux 0xf57e5c7b udp_lib_rehash -EXPORT_SYMBOL vmlinux 0xf5823211 neigh_resolve_output -EXPORT_SYMBOL vmlinux 0xf5884d9a sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set -EXPORT_SYMBOL vmlinux 0xf5b08dbd dquot_initialize -EXPORT_SYMBOL vmlinux 0xf5bebf8a mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xf5c47579 deactivate_locked_super -EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command -EXPORT_SYMBOL vmlinux 0xf5edb3f3 abx500_get_register_page_interruptible -EXPORT_SYMBOL vmlinux 0xf5f8e525 swiotlb_dma_mapping_error -EXPORT_SYMBOL vmlinux 0xf600cb5f tcp_ioctl -EXPORT_SYMBOL vmlinux 0xf60841d9 msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl -EXPORT_SYMBOL vmlinux 0xf640d348 skb_set_owner_w -EXPORT_SYMBOL vmlinux 0xf6520746 page_symlink -EXPORT_SYMBOL vmlinux 0xf66088db snd_info_create_module_entry -EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton -EXPORT_SYMBOL vmlinux 0xf67d88ee filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0xf67eec4e vfs_readv -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf6851d5f register_sysctl_paths -EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xf69864d1 blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0xf6ac7aee dev_queue_xmit -EXPORT_SYMBOL vmlinux 0xf6b0214f of_parse_phandle_with_fixed_args -EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table -EXPORT_SYMBOL vmlinux 0xf6c38397 inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0xf6c5dcd1 xfrm_init_replay -EXPORT_SYMBOL vmlinux 0xf6c69ff7 tcp_init_cgroup -EXPORT_SYMBOL vmlinux 0xf6cd1046 vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0xf6d60e05 mb_cache_shrink -EXPORT_SYMBOL vmlinux 0xf6d85f29 snd_device_register -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf7144903 shdma_request_irq -EXPORT_SYMBOL vmlinux 0xf7163ec9 __raw_readsb -EXPORT_SYMBOL vmlinux 0xf73915eb xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0xf7533388 neigh_seq_next -EXPORT_SYMBOL vmlinux 0xf7564d5b kthread_create_on_node -EXPORT_SYMBOL vmlinux 0xf7584a9c find_font -EXPORT_SYMBOL vmlinux 0xf773de0c md_cluster_mod -EXPORT_SYMBOL vmlinux 0xf7802486 __aeabi_uidivmod -EXPORT_SYMBOL vmlinux 0xf7aaeddc ida_init -EXPORT_SYMBOL vmlinux 0xf7cd0ad3 simple_statfs -EXPORT_SYMBOL vmlinux 0xf7e69f7e neigh_changeaddr -EXPORT_SYMBOL vmlinux 0xf7ef391a phy_driver_register -EXPORT_SYMBOL vmlinux 0xf7fd4b08 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf81faf0a scsi_print_command -EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area -EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf8370aec snd_ctl_unregister_ioctl -EXPORT_SYMBOL vmlinux 0xf8485f81 lwtunnel_encap_del_ops -EXPORT_SYMBOL vmlinux 0xf84b70a3 iput -EXPORT_SYMBOL vmlinux 0xf84c7d19 inode_set_flags -EXPORT_SYMBOL vmlinux 0xf8663a5f d_find_any_alias -EXPORT_SYMBOL vmlinux 0xf8792890 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0xf88d599a cdev_del -EXPORT_SYMBOL vmlinux 0xf89e8171 nvm_submit_ppa -EXPORT_SYMBOL vmlinux 0xf8ac94db get_empty_filp -EXPORT_SYMBOL vmlinux 0xf8de83aa posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0xf8e0139c dss_mgr_connect -EXPORT_SYMBOL vmlinux 0xf8e6e4cb swiotlb_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0xf8e801d9 tty_name -EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xf8f017e0 scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0xf906e196 nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0xf9263064 nobh_truncate_page -EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run -EXPORT_SYMBOL vmlinux 0xf938cd5c phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0xf940ddd2 swiotlb_unmap_sg -EXPORT_SYMBOL vmlinux 0xf941c279 netdev_update_features -EXPORT_SYMBOL vmlinux 0xf9427374 dispc_request_irq -EXPORT_SYMBOL vmlinux 0xf944ff6a pci_disable_link_state -EXPORT_SYMBOL vmlinux 0xf94bc605 blk_mq_delay_queue -EXPORT_SYMBOL vmlinux 0xf9503db6 __vfs_write -EXPORT_SYMBOL vmlinux 0xf959ce4c try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0xf96a36da mmc_hw_reset -EXPORT_SYMBOL vmlinux 0xf976e19a con_copy_unimap -EXPORT_SYMBOL vmlinux 0xf9866ea3 netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0xf99c3e7e snd_timer_global_new -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9b97227 bdgrab -EXPORT_SYMBOL vmlinux 0xf9c2250b xfrm_state_flush -EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf -EXPORT_SYMBOL vmlinux 0xf9e8f623 param_get_charp -EXPORT_SYMBOL vmlinux 0xfa10900f elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0xfa127f57 migrate_page -EXPORT_SYMBOL vmlinux 0xfa3f86c4 md_integrity_register -EXPORT_SYMBOL vmlinux 0xfa4b68fe of_find_node_by_type -EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0xfa5766e9 sync_inode -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa65dc7b sock_release -EXPORT_SYMBOL vmlinux 0xfab055a7 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0xfabc603d dmam_free_coherent -EXPORT_SYMBOL vmlinux 0xfac68eba arm_elf_read_implies_exec -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr -EXPORT_SYMBOL vmlinux 0xfaf2bd0b param_get_long -EXPORT_SYMBOL vmlinux 0xfb08f365 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0xfb0f2ab3 tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0xfb161f45 tty_throttle -EXPORT_SYMBOL vmlinux 0xfb1de485 sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0xfb28dc91 from_kgid -EXPORT_SYMBOL vmlinux 0xfb3d76ff snd_ctl_find_numid -EXPORT_SYMBOL vmlinux 0xfb664b82 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb7d9c45 __udivsi3 -EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 -EXPORT_SYMBOL vmlinux 0xfb9b7cd1 do_truncate -EXPORT_SYMBOL vmlinux 0xfb9bf536 elevator_change -EXPORT_SYMBOL vmlinux 0xfba9b11d blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock -EXPORT_SYMBOL vmlinux 0xfbb45f25 scsi_remove_host -EXPORT_SYMBOL vmlinux 0xfbc3fffd __bforget -EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbcdfe9f inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0xfbd223cc get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xfbd55407 xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem -EXPORT_SYMBOL vmlinux 0xfc0e8dae mmc_flush_cache -EXPORT_SYMBOL vmlinux 0xfc3908f5 fence_default_wait -EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap -EXPORT_SYMBOL vmlinux 0xfc3f1333 tcf_exts_change -EXPORT_SYMBOL vmlinux 0xfc47dd9e scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0xfc77531d sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0xfc9442a8 qdisc_reset -EXPORT_SYMBOL vmlinux 0xfc94a1be kill_anon_super -EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0xfcd3e815 netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns -EXPORT_SYMBOL vmlinux 0xfce25691 set_posix_acl -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0xfd0065e3 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0xfd23a71f __devm_release_region -EXPORT_SYMBOL vmlinux 0xfd305341 walk_stackframe -EXPORT_SYMBOL vmlinux 0xfd3153d2 iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0xfd33b5fa cmdline_parts_find -EXPORT_SYMBOL vmlinux 0xfd35b876 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0xfd5683b9 wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0xfd7ce5bd inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0xfd8122ca mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xfd9e64e3 kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0xfdab6de3 unregister_sound_midi -EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0xfdbf42d3 netif_device_detach -EXPORT_SYMBOL vmlinux 0xfdc6cd15 fb_set_suspend -EXPORT_SYMBOL vmlinux 0xfdd4e7ab vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0xfdf20f4b create_empty_buffers -EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe076419 iov_iter_copy_from_user_atomic -EXPORT_SYMBOL vmlinux 0xfe350191 mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0xfe40bf95 dss_feat_get_num_ovls -EXPORT_SYMBOL vmlinux 0xfe44405b fsync_bdev -EXPORT_SYMBOL vmlinux 0xfe498ec3 get_super -EXPORT_SYMBOL vmlinux 0xfe4c4b10 inode_reclaim_rsv_space -EXPORT_SYMBOL vmlinux 0xfe4c723b tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0xfe4e0cff __scm_send -EXPORT_SYMBOL vmlinux 0xfe5964b5 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe636a0f __insert_inode_hash -EXPORT_SYMBOL vmlinux 0xfe741fe1 netdev_notify_peers -EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0xfe8e46e0 security_mmap_file -EXPORT_SYMBOL vmlinux 0xfe9ba126 vm_map_ram -EXPORT_SYMBOL vmlinux 0xfea523b5 shdma_chan_filter -EXPORT_SYMBOL vmlinux 0xfeca7590 radix_tree_range_tag_if_tagged -EXPORT_SYMBOL vmlinux 0xfed42a44 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0xfed6f2c8 snd_pcm_lib_write -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfef4d002 fsnotify_put_mark -EXPORT_SYMBOL vmlinux 0xff1d2ea4 tcf_hash_insert -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff2d9d0d xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL vmlinux 0xff61ca8c km_is_alive -EXPORT_SYMBOL vmlinux 0xff62415c udp_poll -EXPORT_SYMBOL vmlinux 0xff67b37f __lshrdi3 -EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource -EXPORT_SYMBOL vmlinux 0xff8cbb1f idr_destroy -EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy -EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0xffb1c082 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0xffb94ef0 _test_and_change_bit -EXPORT_SYMBOL vmlinux 0xffbb7fa2 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0xffd2cf99 omap_dss_get_num_overlay_managers -EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function -EXPORT_SYMBOL vmlinux 0xfff15ce6 console_stop -EXPORT_SYMBOL vmlinux 0xfff4885b generic_key_instantiate -EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0x3b149529 sha1_finup_arm -EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0x840ca7ac sha1_update_arm -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x1cbb6271 ablk_encrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x3ac48f52 ablk_exit -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x789e6bca ablk_init_common -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x8fcffd75 ablk_set_key -EXPORT_SYMBOL_GPL crypto/ablk_helper 0xc9ab917e __ablk_encrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0xcdaea51d ablk_decrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0xd5f273f0 ablk_init -EXPORT_SYMBOL_GPL crypto/af_alg 0x0c4e84de af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x31ec8b5c af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x426036a6 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0x4a8bf8f9 af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x606450c4 af_alg_complete -EXPORT_SYMBOL_GPL crypto/af_alg 0x6768654b af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x689a45ca af_alg_link_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x6fd8e1ff af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x719d68cf af_alg_cmsg_send -EXPORT_SYMBOL_GPL crypto/af_alg 0xbbccdcf2 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0xd954ef95 af_alg_wait_for_completion -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xec6458bd async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x166373f9 async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xff78f2ef async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x29705d56 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x8c351bb3 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x4fdb3eb6 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x7f6dfd52 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xcff02882 async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xd01204fd async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x148e0490 async_xor_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x63477ece async_xor -EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0x02121b90 blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x897a4dfe cast5_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0xd91c3d41 cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 -EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 -EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 -EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x238b0d65 crypto_chacha20_setkey -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x90d03100 crypto_chacha20_crypt -EXPORT_SYMBOL_GPL crypto/cryptd 0x06ba1951 cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x0c6dff74 cryptd_ablkcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x22075ac8 cryptd_alloc_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x27b77006 cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x2c930d7f cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0x2dd9f9f0 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x4cd03dcf cryptd_free_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x6acc432b cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xe7a864a4 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xeb3613b4 cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey -EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey -EXPORT_SYMBOL_GPL crypto/lrw 0x3106d0fd lrw_crypt -EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table -EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table -EXPORT_SYMBOL_GPL crypto/mcryptd 0x07c68ab9 mcryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0x14bdd4d3 mcryptd_flusher -EXPORT_SYMBOL_GPL crypto/mcryptd 0x326af6ee shash_ahash_mcryptd_update -EXPORT_SYMBOL_GPL crypto/mcryptd 0x60c13a34 mcryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/mcryptd 0x68655189 shash_ahash_mcryptd_digest -EXPORT_SYMBOL_GPL crypto/mcryptd 0x846d1407 mcryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/mcryptd 0xdd995639 shash_ahash_mcryptd_finup -EXPORT_SYMBOL_GPL crypto/mcryptd 0xfbe79662 shash_ahash_mcryptd_final -EXPORT_SYMBOL_GPL crypto/mcryptd 0xfc40bd65 mcryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x42942ffd crypto_poly1305_final -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x5dd94329 crypto_poly1305_init -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x7e2cd001 crypto_poly1305_update -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x9d952e4f crypto_poly1305_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5e91d34d serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt -EXPORT_SYMBOL_GPL crypto/twofish_common 0x50bb4f0e twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey -EXPORT_SYMBOL_GPL crypto/xts 0xa9774b31 xts_crypt -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x7282207e __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0xabdc7a74 sis_info133_for_sata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x18ae83c3 __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x2ffb4354 __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x3aefac82 __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x770be0cd __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1008100e bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1878354b bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2131b42e bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x256823c9 bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2bc81e1f __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x39c3ccfa bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3ac31101 bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3df9b7f4 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x43ffdc0a bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4b893693 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4fb7c5fb bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x59bb4a24 bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7bd56d96 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7dbf4b23 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7f279e7c bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x88658cbf bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x905e9702 bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x94b0e6d0 bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9cd9049a bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc7aa73a2 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcc773f60 bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdcb92951 bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe97ac443 bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf2e1b811 bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x42af4a8f btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7b7a601a btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x86b3068c btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x9686e940 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc8cb29d5 btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xe609671e btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0040287a btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x125046fc btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1846b017 btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1daa4443 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1e01d537 btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x486f716a btintel_secure_send -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4eca3416 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6add4fd5 btintel_hw_error -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xaf60f7a8 btintel_set_event_mask -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xea8f7b13 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf2234507 btintel_set_diag_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x087415dc btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x20ed3b1a btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x29a590f4 btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5f2b9ebe btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x78d2536e btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa14bd95d btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa719175e btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xab508861 btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xafa8f61d btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xedc68710 btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfce7543f btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x6d017173 qca_uart_setup_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xd1be8114 qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xdfc872d3 btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x500bb088 h4_recv_buf -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1ad28e9c clk_rcg_bypass_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1f4159b0 clk_byte2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3b0b58e5 clk_regmap_mux_closest_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4e487b60 qcom_find_src_index -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x53f95e39 clk_pll_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x612214bd clk_edp_pixel_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x612fcdee qcom_cc_probe -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x669bd1fd qcom_find_freq -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x67ae803a clk_rcg_pixel_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x709d9cf0 clk_pll_configure_sr -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x73964fc2 clk_dyn_rcg_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x77c457fa qcom_reset_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8515ef29 clk_is_enabled_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x86045d5d qcom_cc_really_probe -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8c4dbdbe clk_branch_simple_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8d53d96e clk_rcg_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x90b53166 clk_pll_configure_sr_hpm_lp -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x948a106f clk_enable_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x999e1e71 clk_branch2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x99d2c773 clk_rcg2_shared_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9e2e91a1 clk_rcg_bypass2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9f6dd9ca clk_disable_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaace56b1 clk_rcg_esc_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc7994798 clk_branch_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcb0c5248 clk_byte_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcd0a83c6 clk_rcg2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd25fd154 clk_rcg_lcc_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd2ce2c2c devm_clk_register_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe703bcad clk_pll_vote_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xeb14fbb9 qcom_cc_map -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf1f136dc clk_pixel_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf69c2f55 clk_pll_sr2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf93e315f clk_regmap_div_ops -EXPORT_SYMBOL_GPL drivers/cpufreq/arm_big_little 0x5e32e556 bL_cpufreq_unregister -EXPORT_SYMBOL_GPL drivers/cpufreq/arm_big_little 0xf750efd2 bL_cpufreq_register -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x63292973 dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x9252df6e dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc0129b29 dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xcd33eec4 dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf99e3fe1 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x8ad3965b hsu_dma_irq -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xd8a9dd48 hsu_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xf2b48f6b hsu_dma_remove -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x13e9397b edac_mc_del_mc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x15bf564e edac_device_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x15c2dc32 edac_mc_alloc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x15c8981b edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x29172342 edac_device_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2adcb2e2 edac_pci_handle_npe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x46209067 edac_pci_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4f6f5552 edac_device_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x532bfd05 edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x54693f77 edac_pci_handle_pe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x56dd1bec edac_pci_reset_delay_period -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5dd68d5a edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e130d95 edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7280d8ee edac_device_handle_ce -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8aedeab9 edac_mc_free -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x900694e1 edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x90337f83 edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xce7f78d5 edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd180d58c edac_pci_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xdded334e edac_device_handle_ue -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf6cf1da6 edac_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf7d65643 find_mci_by_dev -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xfa5ebcae edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release -EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0xe342fbf5 get_scpi_ops -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x25037972 fpga_mgr_firmware_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x278f4e36 of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2d529325 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x571bd604 fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc285ae13 fpga_mgr_buf_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd243e23c fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x17b0ea78 __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xb56b32bf __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw_hdmi 0x50f61152 dw_hdmi_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw_hdmi 0x8dcd6f43 dw_hdmi_set_sample_rate -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw_hdmi 0xce27012a dw_hdmi_audio_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw_hdmi 0xd8fe547b dw_hdmi_audio_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw_hdmi 0xeff29889 dw_hdmi_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x022f80f6 drm_gem_cma_prime_vmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0dab9e62 drm_gem_cma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x22bd75e5 drm_gem_cma_dumb_create_internal -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2ee9438d drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3de36e85 drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5dac7b98 drm_gem_cma_dumb_map_offset -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5e1be19e drm_gem_cma_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x61617670 drm_gem_cma_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6a87aa17 drm_gem_cma_prime_vunmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6d5c7aba drm_gem_cma_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7eeede68 drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8fa295c9 drm_gem_cma_prime_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9bfc288f of_get_drm_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb00f9814 drm_gem_cma_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbc6b2a88 drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcd247ad4 drm_gem_cma_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf8880658 drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf98561ac drm_gem_cma_describe -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfeee47c9 drm_gem_cma_prime_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1148b623 drm_fbdev_cma_fini -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x4f57f330 drm_fbdev_cma_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x59b9d46f drm_fb_cma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb2c912af drm_fbdev_cma_hotplug_event -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xcc337fd5 drm_fbdev_cma_restore_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xf8310753 drm_fb_cma_debugfs_show -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xf92c5d40 drm_fb_cma_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x1cfe024a imx_drm_crtc_vblank_get -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x1d65955f imx_drm_encoder_get_mux_id -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x33dd9abf imx_drm_set_bus_format_pins -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x37707c0a imx_drm_crtc_id -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x419b08de imx_drm_handle_vblank -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x5f056ff0 imx_drm_crtc_vblank_put -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x61767092 imx_drm_set_bus_format -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x6c2226f5 imx_drm_encoder_destroy -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x7ab2ea87 imx_drm_encoder_parse_of -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xc6e2ec4c imx_drm_connector_destroy -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xd652b5a4 imx_drm_remove_crtc -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xe6f978eb imx_drm_add_crtc -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchip_drm_vop 0x0e85d69f rockchip_drm_crtc_mode_config -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x001e21a4 rockchip_drm_encoder_get_mux_id -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x2c316abe rockchip_drm_dma_detach_device -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x329f95df rockchip_fb_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xaa4509bc rockchip_unregister_crtc_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xb304b369 rockchip_drm_dma_attach_device -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xca1c557e rockchip_register_crtc_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xaec8eefc ttm_dma_page_alloc_debugfs -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xf0023839 ttm_dma_unpopulate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xfc063e43 ttm_dma_populate -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0087e67a ipu_cpmem_set_yuv_interleaved -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x01c43600 ipu_cpmem_set_yuv_planar_full -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x04f7075a ipu_csi_set_mipi_datatype -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0728116a ipu_csi_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x07e2ba88 ipu_cpmem_set_burstsize -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x08b051bb ipu_cpmem_set_high_priority -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0a66110a ipu_idmac_channel_busy -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0e42bd95 ipu_csi_set_dest -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0fe7bc36 ipu_idmac_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x118160e1 ipu_ic_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x11d8f100 ipu_stride_to_bytes -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x13952dfe ipu_dmfc_enable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x15ec2ba5 ipu_di_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x199bd5c8 ipu_dp_disable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1b90e586 ipu_dc_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1ba497eb ipu_pixelformat_to_colorspace -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1ca0ac3c ipu_idmac_select_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1e913d9f ipu_csi_get_window -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2424c9a6 ipu_csi_is_interlaced -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2f92d651 ipu_ic_task_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2f9751b4 ipu_degrees_to_rot_mode -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x302aed49 ipu_dc_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x30b6999c ipu_rot_mode_to_degrees -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3166aec7 ipu_dmfc_disable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x360bae4b ipu_dmfc_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3afbb44e ipu_smfc_set_watermark -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3cd51bc6 ipu_module_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3e86ea72 ipu_di_get_num -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x429e2eb4 ipu_module_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x43e87136 ipu_cpmem_zero -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x45d2cabe ipu_cpmem_set_block_mode -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4917f47a ipu_ic_dump -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4c179b49 ipu_dp_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4ebfbc68 ipu_cpmem_interlaced_scan -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x51475e87 ipu_dmfc_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x527f3b94 ipu_smfc_set_burstsize -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x53de277c ipu_di_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x55576d44 ipu_cpmem_set_yuv_planar -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5eb54316 ipu_idmac_enable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x60bdf2ec ipu_csi_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x611f0f63 ipu_cpmem_set_image -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x623722e2 ipu_ic_task_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x627c2ee2 ipu_wait_interrupt -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6f2ead39 ipu_idmac_channel_irq -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x703a8339 ipu_csi_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7068e939 ipu_dc_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7121bd07 ipu_di_init_sync_panel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x73b8f6ca ipu_cpmem_set_axi_id -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x76302d14 ipu_csi_set_skip_smfc -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x78f9ed08 ipu_idmac_disable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x869fc805 ipu_cpmem_set_resolution -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x886c35aa ipu_smfc_map_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8c0ee903 ipu_idmac_lock_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9058e289 ipu_smfc_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x92d3f709 ipu_dp_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x93bdb12b ipu_set_csi_src_mux -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x951a09d5 ipu_csi_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x99a0ef07 ipu_drm_fourcc_to_colorspace -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x99c47ab1 ipu_cpmem_dump -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9c335d85 ipu_pixelformat_is_planar -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9cb840ad ipu_dp_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9e6b69c8 ipu_idmac_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9f38e177 ipu_dp_enable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa4b0cabd ipu_dc_disable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa579616b ipu_di_adjust_videomode -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa60b144b ipu_csi_set_window -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa6200b90 ipu_dp_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa798a231 ipu_srm_dp_sync_update -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa96882d8 ipu_ic_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb228bf1e ipu_dp_set_global_alpha -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb5c19387 ipu_idmac_enable_watermark -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb7ab859f ipu_idmac_wait_busy -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb94ca95a ipu_dmfc_init_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbd8b1be2 ipu_idmac_buffer_is_ready -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbfb57b94 ipu_cpmem_set_format_rgb -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc07cf393 ipu_idmac_get_current_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc3c2cdb0 ipu_smfc_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc4291179 ipu_set_ic_src_mux -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc52818e9 ipu_idmac_clear_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc6675aa9 ipu_csi_dump -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc677177d ipu_smfc_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc848c5d7 ipu_dmfc_free_bandwidth -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc88d89a1 ipu_mbus_code_to_colorspace -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc97e7a0f ipu_di_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcaaa7ca3 ipu_cpmem_set_stride -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcd7c6998 ipu_ic_task_init -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd064a453 ipu_ic_task_graphics_init -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd4141e83 ipu_dump -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd5055dd9 ipu_dmfc_alloc_bandwidth -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd6941e42 ipu_smfc_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd6a7c1a8 ipu_di_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd716ec23 ipu_cpmem_set_rotation -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xdfe31656 ipu_idmac_set_double_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe1ff2191 ipu_ic_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe300a959 ipu_dp_setup_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe3b86336 ipu_csi_init_interface -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe48f2f5e ipu_cpmem_set_fmt -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe4e02695 ipu_cpmem_set_format_passthrough -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe6243c52 ipu_dc_enable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf1440dc1 ipu_ic_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf2c20949 ipu_cpmem_set_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf69d6cb6 ipu_csi_set_test_generator -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf7d99d69 ipu_dc_init_sync -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf9313cda ipu_map_irq -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf9ed222e ipu_dp_set_window_pos -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xfdcb7676 ipu_dc_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xfdf0115e ipu_ic_task_idma_init -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0298f4b5 hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x02c2c52d hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1227ae86 hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1367e134 hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x13ce55b0 hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1ae96950 hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2df9846b hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2f6321c4 hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0x31192de7 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0x328d50a1 hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x413c2b30 hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5a045aad hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5d55ab37 hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5de04d69 hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5e2181d4 hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0x60e90669 hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x64028ff0 hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6b57f9e1 hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7aa04f5a __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7c2114c9 hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x893e4db3 hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9d983ed1 hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa1efc72b hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa6a796f1 hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa82ce4c4 hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xaff08230 hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb332b95c hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb4e821be hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb65f7321 hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc4e76610 hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc7534012 hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc966b3d2 __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd1ed8b85 hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe8b04a00 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xeb1f4874 hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfd6e8fea hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x36d4f672 roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x60795be3 roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xb62e9423 roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xb6b38cd0 roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xcc90f543 roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd99ac069 roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xec151778 roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x060cdda8 sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x39059e37 sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x3bf04555 sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x49b93194 hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x5de56b4f sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9d0dedf2 sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb1229c92 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xcb4b87ef sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xeda241c4 sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x7ce53fe4 hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2ce9f613 hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x42775fc4 hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x515f8214 hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5b2887ea hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5b9a59ef hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6473bd73 hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6efbb23b hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x70bf66e6 hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9ebbf59a hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xac7e7992 hsi_add_clients_from_dt -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb067d82b hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb839feae hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc2217bc5 hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc9fda7a4 hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe61e99e8 hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf0c4a362 hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf9dfebf8 hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfe5fbeaa hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xf62058a5 adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xfd5e8c31 adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xfe685e46 adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x09f7d3a3 pmbus_write_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x140dcd8c pmbus_clear_faults -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x1ce98fb2 pmbus_read_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2e1285dc pmbus_set_page -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x40cb5c12 pmbus_check_byte_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x45481ac2 pmbus_update_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4b47848c pmbus_write_byte -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x59270db8 pmbus_clear_cache -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x5b0018a6 pmbus_get_driver_info -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8fdf8458 pmbus_read_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa0fa2e7f pmbus_check_word_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb663dd07 pmbus_do_remove -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xc46a12fb pmbus_regulator_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xca1e431f pmbus_do_probe -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf8e52362 pmbus_write_word_data -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x0f5a74bb hwspin_lock_unregister -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x3dc1b54e hwspin_lock_free -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x4d73a0e3 hwspin_lock_register -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x55b14622 __hwspin_lock_timeout -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x73a5bff6 __hwspin_unlock -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x76829e1a hwspin_lock_request_specific -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xa36e6a43 of_hwspin_lock_get_id -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xa81858a9 __hwspin_trylock -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xb793bd01 hwspin_lock_request -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xbe253edc hwspin_lock_get_id -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x144136bd intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2a37dce5 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4030b3d8 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x405c4a67 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7adbfcca intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc583eae3 intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xed972810 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x192e37ca stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x6ab899f4 stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x9b3cfccc stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa28806ba stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xecfcf56a stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x4ac30e5f i2c_dw_read_comp_param -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xa093ad2d i2c_dw_init -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xbefee348 i2c_dw_disable -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xd7f5db08 i2c_dw_probe -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xe467623c i2c_dw_disable_int -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x365ccc6d i2c_del_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x7d7b3ba0 i2c_add_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x13e7e9dd i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xe3c8f05c i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x2d259cf0 bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xd067a39d bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xd65126ac bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x2f38cf7a ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x3e7a883d ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x437f238d ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x5f2760c2 ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x9d046150 ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xa89364aa ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xc6ec517e ad_sd_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd149e713 ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe7e77c4b ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a5b11d5 iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x8c635970 iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x11b100ee ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x8cd32a51 ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x3b48574e bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xa22eb738 bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xcbcfe8b3 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x1dc5d09b adis_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x2afc6ee5 adis_init -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x2f88e440 adis_update_scan_mode -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x399e8821 adis_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x4903ef7b adis_check_status -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x4c3bffc6 adis_read_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x714c0da9 adis_write_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x73cdbae7 adis_initial_startup -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x7cfc18c6 adis_reset -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x980cb1bc adis_remove_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc085e019 adis_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc52a2bc4 adis_probe_trigger -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0150b04c iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x16971480 iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1b5c41f2 iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1cca1873 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x220f7926 devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x25afd436 devm_iio_device_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2c5d80e4 iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2c96910c iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x391d1d9c iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3d0fd8fe devm_iio_device_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x462ca0ac iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x475f30da iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5c5d8126 iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x74289419 iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7ad294a2 iio_scan_mask_query -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7f17befa iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x82062204 devm_iio_trigger_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8848e738 iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x88684d24 iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x949a3e79 iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa3404836 iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb23bb197 iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc804e8e6 iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc8fb36e7 devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd6a3ec40 iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd6e782bb iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xec41131a iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf34c0f0d iio_update_demux -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf7d40d2f iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfc6ffdba iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfd3e37f3 devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x1bce412e input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x16b9b377 matrix_keypad_parse_of_params -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x5d07923d adxl34x_probe -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x45b78b34 cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x98936f09 cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xfcceaa94 cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x7f96a316 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x9e7cc5c4 cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xf7198c97 cyttsp_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x1dfb2dec cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xe6233298 cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x0bc41e4c tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x2703c33c tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x4fe54f49 tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xd767debd tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x15a7176e wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x44f58918 wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x460efeba wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5fd7f234 wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x69aca89c wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6ecca03d wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8aa4fe24 wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x971ae37e wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xacae50b9 wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb5e9d309 wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbacc2476 wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf059e0af wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x0d36ae39 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x50f8065f ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x64125899 ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6d46e284 ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x83035269 ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x9960c8ee ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc17e6a99 ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc4651205 ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xcfa851b2 ipack_driver_register -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0e107fb5 gigaset_stop -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x2a072f42 gigaset_initdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x35872f78 gigaset_m10x_input -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x55c70862 gigaset_fill_inbuf -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x596fd790 gigaset_start -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x5b937d33 gigaset_initcs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x5cf97d8f gigaset_shutdown -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7a9e06a5 gigaset_add_event -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7aa52816 gigaset_isdn_rcv_err -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8ee9eea9 gigaset_freecs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8f71f576 gigaset_blockdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xcbea6807 gigaset_m10x_send_skb -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd655420b gigaset_skb_rcvd -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe3033f52 gigaset_if_receive -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe31fa28c gigaset_skb_sent -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf4dba4b8 gigaset_freedriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf7afaca7 gigaset_handle_modem_response -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x4f6dac77 led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x70ccb833 led_classdev_flash_register -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7a508eaa led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x8ab24b78 led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb4c637d7 led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xbf4da3c8 led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x27a39426 lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x40fb8a78 lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x4ab215c7 lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x810b9f6e lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x85ebc1b1 lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8a99a777 lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa766a7f2 lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xad1cc5be lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xcc35556f lp55xx_unregister_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd3e5ddfd lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xdb7e3dff lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x075cca2f mcb_unregister_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x1eddc4e3 mcb_release_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x32913647 mcb_alloc_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4b77e98c mcb_free_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x79129f2f __mcb_register_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x80ce730e mcb_bus_get -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb60f8d43 mcb_bus_put -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc868817d mcb_get_irq -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd613c84f chameleon_parse_cells -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd8abee62 mcb_alloc_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe53436e8 mcb_request_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf80ebaec mcb_bus_add_devices -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf891148f mcb_device_register -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06628c2f __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06b11706 __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x07e2c777 __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0b1ed8cb __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1683a5f6 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x16c3fa29 __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x16c8cc13 __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x18d1988c __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2061620b __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x230dd380 __tracepoint_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x29a4c5fd __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2b277945 __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3ee17aab __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x402d6200 __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x49c216ec __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d1e9f82 __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7930d50e __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7d597e2d __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8461608d __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x84e60671 __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x92d61794 __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9415be3c __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad2d4ca2 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb21fadc0 __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb364194a __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbe406c76 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc72008a2 __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd6d1aa5e __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfc24ee1e __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfcc8ed24 __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xffd8c38e __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0928db49 dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x250ca999 dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3df64d0f dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x60110c2b dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x628683f7 dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x64d68796 dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7ae5c1cd dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd5d84d1a dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf9e683db dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x22163b69 dm_bufio_release_move -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x3909d3a8 dm_bufio_prefetch -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x594952bd dm_bufio_read -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x62a23587 dm_bufio_get_device_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x953a74dd dm_bufio_client_create -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9b2b253a dm_bufio_get -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xdc69e37a dm_bufio_get_block_number -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe004ee92 dm_bufio_new -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x382cfe11 dm_cache_policy_get_hint_size -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x403f4514 dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x53830e0f dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x6620f73f dm_cache_policy_get_name -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x6b119468 dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xc0a4648f dm_cache_policy_get_version -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xf77b7858 dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xe31fea57 dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xf4ae5a3e dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x09472122 dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3e9e7c3c dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x48250948 dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x8f0d2afa dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa8813ad6 dm_rh_region_to_sector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc66ce277 dm_rh_get_region_size -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcab63c3d dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd46cd5f0 dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf1c320cb dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf37a3cfe dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xff764d5a dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11eab9fe dm_bm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x150c85ce dm_tm_open_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2e730a21 dm_bm_checksum -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x33c03da6 dm_sm_disk_open -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x619701dc dm_sm_disk_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x809d7471 dm_block_manager_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9b4b5b29 dm_bm_write_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2507774 dm_tm_shadow_block -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbcfdc290 dm_tm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbe0497aa dm_tm_create_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xead1e727 dm_bm_write_lock_zero -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize -EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x3a42986d saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x444a4308 saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x688667c1 saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x78c088fd saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x8651949b saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc9ba4a9a saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3932645 saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe95b1a25 saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfc662083 saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfca2b8bb saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x049dd658 saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x18477a06 saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x87389f87 saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x8f1ebad5 saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xb6e03309 saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xe00bd454 saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xf026d8ce saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x008c1b92 smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0b1a27ed smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x14a85bfb smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x154218e2 sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5a77be3f smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5b4a282f smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x82296318 sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8c028c8a smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8f88ddfc smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x97eebbaf smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa0351a3f smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa662db50 sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa7fa11c0 sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc2923d82 smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xea9676ac smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfbb7e907 sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfc533858 smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x86a4e167 as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x6c3e5fc2 cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xe53604b8 tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/media 0x04c98f5e media_entity_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/media 0x192882da __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0x1c97c811 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0x2d4e7be6 media_entity_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/media 0x52e91c22 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/media 0x536b859c media_entity_get -EXPORT_SYMBOL_GPL drivers/media/media 0x59841afa media_entity_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/media 0x635d22cb media_entity_cleanup -EXPORT_SYMBOL_GPL drivers/media/media 0x834208ab media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/media 0x8461fb58 media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/media 0x8be845dd media_entity_put -EXPORT_SYMBOL_GPL drivers/media/media 0xa321cf35 media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/media 0xa7ab57c8 media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/media 0xb3779a69 media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/media 0xd5962b79 media_entity_create_link -EXPORT_SYMBOL_GPL drivers/media/media 0xdabcf9ab media_entity_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/media 0xeec1e07a media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/media 0xfcc4ed18 media_entity_init -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x5963fdd0 cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x04415c34 mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x08a29726 mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0b82f284 mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0bbff103 mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x109d00bf mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1892261c mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x32b6731a mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x34b77e09 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4527ee66 mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x64c9c767 mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x753b702f mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa6ae4943 mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb32e4604 mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb37a659c mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbb9232b5 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc7ed1738 mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe7c8fb11 mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf1ce4def mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf248f456 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1f52105e saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x31b54e21 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x48c4e75d saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5b0b5ee7 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6f4d713d saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x719ef98b saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x726b2f56 saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7eaafceb saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x895a962d saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x89aba0f5 saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8ba20b91 saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8c5f5686 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x91709c73 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x98730fb7 saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa2f5c326 saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xab85fb98 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb72b4fab saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xeaed6440 saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf3fa1f5c saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x03302aa0 ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x302d1305 ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x36825b87 ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x5450d5a3 ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x783cddee ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x9c06967f ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x9dbc586f ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0357a80f xvip_of_get_format -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0b2585ce xvip_get_format_by_fourcc -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x1a5b8d96 xvip_clr_or_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x2f89f7fb xvip_enum_frame_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x443a676f xvip_cleanup_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x490bd11c xvip_get_format_by_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x6996251c xvip_init_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xd4612684 xvip_clr_and_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xfea157c1 xvip_enum_mbus_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x7490eaf2 xvtc_of_get -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xc8ddb1b0 radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xfe08dffc radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x258791f1 rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x26f2be9d rc_close -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x327d26ab rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x33585171 rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x47850841 ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x73acdf15 rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7408a819 rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7a5bdc7f rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8819b291 ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc123f401 ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xca9ea515 rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcd7b0bba rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcf3862bc ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd8ac2a19 rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe1d16e58 rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe2d85bb2 rc_map_get -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xea429170 rc_open -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf41fde4a ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf4ee1fd0 rc_keyup -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x5693bac4 mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xb5dda0a6 microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x60e81ed0 mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x8f74139a r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x7b5d5c9c tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0xab397b5d tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x2a4c53c7 tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x5061e4f9 tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xc287396c tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xc05a190f tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xca792778 tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x527b2d58 tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x8f3e548a tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x8031c036 simple_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x03cd533a cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1dab4285 cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x232f5519 cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x29bcaf7c cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2d5aaa75 cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3684e145 is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3c6c8ded cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x45b56c5c cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x60bcfa2f cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x78c68729 cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x85a6d868 cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x864e73b9 cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa8f06cfb cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb2a52033 cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb2dae5e6 cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcb39c4df cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xdb4b8482 cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf690ce70 cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf6b2ed68 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf6e3e583 cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x662f2e6a mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xb0623345 mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x02e0962f em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0be30983 em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x35cc5e18 em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3a3eb5f2 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x512ae12f em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x63dffe8f em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x64f8c550 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6ffc0fe7 em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x70359412 em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x757a83fe em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x851b8f2a em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x87699d15 em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa0ac3fb9 em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xaad26484 em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc23cc3ce em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd2375716 em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdb79f9d6 em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe9332f39 em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x57aee0bc tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x654dae48 tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x8b8ac120 tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xb5ef6a7d tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x06f1e911 v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x11094f60 v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x752be841 v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x7581cf1e v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x97a93b76 v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xa5b594c0 v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08982d59 v4l2_match_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x8bdb1987 v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xbeaacdf3 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x06a8b28d v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0c69aee7 v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x136b83fe v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x298f7bb9 v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2a4f8843 v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3065eb46 v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3454d2df v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x444e0502 v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4e9bd2c7 v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x59d85988 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5c1500d3 v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5cb095ea v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x73acb468 v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7471b455 v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x98d9a605 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xafb0643e v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb8fe0bc3 v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbb00efdf v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc2198056 v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc2225692 v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcb8b1766 v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcee76bd9 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcf3b157e v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcffffac4 v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd734836f v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xeb9b5dbb v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfba8461c v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x068b4037 videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1574259d videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1af5b9e1 videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1fb47a69 videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x202dfdf8 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x26834ef7 videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x292a5011 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x38541c3c videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x47095f1b videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4e4de2e9 videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5616fb68 videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x66f5fc30 videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x73f5436b videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8fe9542e videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x94714f23 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x997fa72c videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9e2513c9 videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb5a90682 videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb64b6062 videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc76cedc4 videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcd543260 __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd07d603b videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdf322965 videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf0082ee8 videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0x4ad8d73f videobuf_to_dma_contig -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0x6bbbead8 videobuf_dma_contig_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0xa921b1f8 videobuf_queue_dma_contig_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x33e45e8f videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x65855d72 videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x702a15cd videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa01bb9ff videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa825c75b videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x43cb18d2 videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x530cde70 videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x87f73dad videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x093db81a vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x0e52a679 vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x13a8c0f9 vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x155d12dd vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x160bf8a8 vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1a7fc9a9 vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2eecae29 vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x50667983 vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x567cff99 vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x5ed5c6c7 vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x767b639d vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x792af42e vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x9a1dc74b vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd1a4f43b vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd740ba02 vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe611f76f vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe780131e vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xfe23b972 vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x53f34f25 vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xdfef28f9 vb2_dma_contig_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xb6969cf3 vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd30ec30f vb2_dma_sg_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xdf0e56cb vb2_dma_sg_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0xa7ac61a8 vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x09470a54 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0f5eca96 vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x16eb8b18 vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x194f9d08 vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x196b1b86 vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1cae2ab8 vb2_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x22006f44 vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2434ec25 vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x31a8b34d vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x45eb2151 vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4d227a4a vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4fb1694e vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6202bb86 vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6a3b5631 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6ff752a2 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x87f6af40 vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x88654e78 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8a328044 vb2_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8dde3ff1 vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8fd10fdc vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa2537ea6 vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa91ee250 _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xafea1f6a vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb0317030 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb574afba vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbae07d13 vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xce048894 vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe1b7d2cf vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe3a44dd7 vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe8f69b46 vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xec4cbbcd vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf24ec3c7 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x5ddf4f07 vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x023992ae __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x047aef57 v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x189a3a75 __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x28e17901 v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2cc44a7e v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2f828290 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x336a7018 v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x400ff708 v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x47c1260f __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x60d147eb v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x648763b9 v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x658b6c2a v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x65f49885 v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x676e0d48 v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x73696e7a v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x77bdcf66 v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fa6583a v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x85410f79 v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8626e88a v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8bd7a9ae v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x943bc9da v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9a4042e3 v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xab06e74e __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbb5439ae v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc45ea521 v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc7710779 v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd3dd4a6e v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd58a6692 v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd8b26023 v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd9d69cce __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe0e83c69 __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe53ae0aa __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2600b76 v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5f7c975 v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf95d2039 v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xff210da8 v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xacd21247 pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xaf13de62 pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xdc71c9c2 pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x11d5a675 da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x1df60264 da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x1e81e2dc da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x698502d7 da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xbe0d40cd da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xc6bff5ef da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xd0b6adf6 da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x086e2f7a kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x315c1cd4 kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x3b007696 kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x5b4be54a kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x6422a3ca kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x946534f7 kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb3b09a67 kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xcee7bdb2 kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x0edae408 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x84e3fb58 lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xc25a030d lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x1f84916c lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2bc41b7c lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x39ea940a lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x5fb1fff6 lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x8002ec34 lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xab955b08 lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf7d83300 lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x0050e236 lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x2f6c04c9 lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xc0179e64 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x00b37157 mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x034621d0 mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x40093a77 mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x5206cf1f mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xbee48d0a mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xe746dac8 mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0470bd14 pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6a607483 pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x76f5723a pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x95934d4b pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9e54792e pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa8b35630 pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc1ee6551 pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd53ef623 pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd6bb24fa pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd74c82cb pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd758852e pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x2a59d8c9 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x9eae0d70 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x2a91df11 pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x799286c5 pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x7c7cd503 pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xc1eb7544 pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xec0a8a83 pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0a49f370 rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2c8b65e5 rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2f082d0c rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2f3bd31e rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x33d78cf8 rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3429348f rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x342cbf5a rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3accb31f rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5f83e704 rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x70dd7520 rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7c6c5b03 rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa4109be7 rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa4340418 rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa999f159 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xac21a63d rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xadee32a2 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb2cb49d4 rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb6aaf3f1 rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xbeb501b8 rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xcc6e49e6 rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xda805ef5 rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe2e4f71f rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xef75038c rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf38547a5 rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x10c5f28e rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x1f1eccef rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x2a0bfbd1 rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x2a7a4754 rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x4b9cbfc5 rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x4d39c30c rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x53976ee3 rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x5987168e rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xa69ccfd6 rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb9433041 rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xc133520f rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe894853f rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xfaadbcda rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x01c15913 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0308b29e si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x05c31fe5 si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0851975c si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0ffc87b6 si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x10d674c2 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x18af5482 si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x198e4751 si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x34b02781 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x39a4c88a si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4f41e7f8 si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x56165b17 si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5fe83fd7 si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x660feb8b devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x67e464e6 si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x69bfc9b3 si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6b441caa si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x70f6e2d7 si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x71b96871 si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x79c54999 si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7c46a699 si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9ffcda79 si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa637579f si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa64ccf16 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xac7603d4 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb10ca519 si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbff57f74 si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc4e489ec si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcc719453 si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcd95565c si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe5db92a9 si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xeb92911e si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf4283fcb si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfa695e2f si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0x261541aa ssbi_read -EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0xf9dea623 ssbi_write -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x7e6ba63c am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xb3d5af16 am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xbdb97058 am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xd7d26728 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x073b71c4 tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x5359a405 tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x96fa273b tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x99744675 tps65218_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x04a72e3c ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x62b21c14 bmp085_remove -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x850fc134 bmp085_detect -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xf0024eaa bmp085_regmap_config -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xf319b0cb bmp085_probe -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x1fee0983 cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x3b25c82e cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x9cd29d80 cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xdbc0f753 cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x040cd9be enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x215484cd enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x21e94eac enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x4f30421d enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x89b646c6 enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa966d536 enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe6233bd5 enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xf34b2260 enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x010e2876 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x235ac634 lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x375dfc39 lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x3bad779d lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5afa3484 lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6264f846 lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8f9a9da9 lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xaaba12ea lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x98206a1e st_register -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xee4aba47 st_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x1521299c dw_mci_pltfm_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x1c9e0c98 dw_mci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x8bbba274 dw_mci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x5a94b1a9 cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x98a3b1d7 cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xa78a943f cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x3c7e8388 cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x422cc858 cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xb1d507de cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x29d9604c cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x342e6064 cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x87d6d035 cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xe4f506ad cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0x29d67757 brcmnand_probe -EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0xa42a6f56 brcmnand_pm_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0xe92810e1 brcmnand_remove -EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0xa82b5c21 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x6188d54c onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xb2405d51 onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xf5b467c9 spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x020ef41c ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0a180d6d ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0c0987ab ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0d22c491 ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x157f8495 ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x477b1a6c ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5575d4ce ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6292974e ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x65476739 ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa1620489 ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb73304fb ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe22a0326 ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe46b49b0 ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfb3899b3 ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x0efd38b7 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xe75f29f9 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x343142c6 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x5a14fe7d c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x902ca1d6 register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xb687c4ad c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xdfd8a5e5 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xf02a3b9a unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x029519a9 devm_can_led_init -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x079cb91b close_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0d3dbeb3 can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x21f75507 open_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x2f1d7d85 can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x41bcbf6b register_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x4fafbca7 free_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x58270d8f alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5b33924c alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5d73afe4 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5f390ee6 alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x6283d6c1 can_led_event -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa1c39212 unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xaeb1da67 can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc2d4466a can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xda3214a7 can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xdf18f72d alloc_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xfa574ec0 safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x2f9d0480 register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x4b08990d unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x6002a5df alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xeecbc39d free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x7ee913ed free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x841684de unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x8485e9b4 register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x91121e7f alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x1bc56a6e arc_emac_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xf7747e28 arc_emac_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00be1007 mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00fb47c0 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07eb72d6 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a735ae9 mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d76116b mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e830274 mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ff51a75 mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x103ad4cb mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1482c482 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1494753e mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x171856ff mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18d287df mlx4_fmr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19f46070 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ed6700c mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22748a43 __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22828ec7 mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x249eef29 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x270be5af mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27cbafac mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x282a0d10 mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a113a4e mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a11cebb __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x308b5bee mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x320bb917 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3460d725 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34b40d4e mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x359c1b7e __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a09632f mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3bb0fffc mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c33a186 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c458507 mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d32427a mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41851841 mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4376a37e mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43ab9e90 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44363e50 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45bf4d78 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x462be51e mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x468cf62d mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49436fa2 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c8931f6 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4db72016 mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e0dafa1 mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e34fc14 mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f7f696d mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x517679a5 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56e866be mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5bc85f27 mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c26de62 mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64d9420a mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65ce5e55 mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x661494c4 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x699a4a4f mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d932e77 mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71d1a6f2 mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7280f901 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x735aec43 mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74a394e5 mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75acb957 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d7d6e1b mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d8bd2b6 mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84820a2c mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85806ffa mlx4_map_phys_fmr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87dacd43 mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88e12786 mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89d4d968 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d429080 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ea204bd mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f48e595 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f5e1511 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f881c74 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x906e54c6 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95508d08 mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95b8e33a mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x966b21eb mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b07c6df mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9bcb6461 mlx4_fmr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9cd0824d mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e3b479f mlx4_fmr_unmap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ec0a5d9 mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa119b01d mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa32c2c5a mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa70b801d mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7ea3189 mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa88b20eb mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf56bd4d mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb096878d mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3cad69e mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb567fffb mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6926d01 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7441edb mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbab5a25e mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb3e5a2a mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb5630cd mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc00caa7 mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbdf2b324 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0d465ef mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc487ac85 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4c6bc53 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc55d5d62 mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7f89ccc mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1261c9f mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd177f22f mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd527f828 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd669ba89 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd829ce7d mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd87df202 __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xddc95384 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdef88723 mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf05609a mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf29559e mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf3410c7 mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0c4771d mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5cca893 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe77d3cb1 mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe89d2faa mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeaee6594 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeba52633 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebbaa8d2 mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf07e6926 mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf420dd42 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4a4e4e9 mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf744ee9b mlx4_fmr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb711804 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x043c0234 mlx5_core_mad_ifc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a48e8d3 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1bb4f3f2 mlx5_query_port_link_width_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x207677e4 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2095bb52 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2806a333 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x323088d7 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x328b8257 mlx5_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b16d9b9 mlx5_core_xrcd_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46b1061a mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f0c6e7c mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x528f77d8 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5427fbd6 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x565482f3 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c9d3028 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x663a55f0 mlx5_destroy_unmap_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ceb6e0f mlx5_core_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7685df82 mlx5_create_map_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7767b186 mlx5_query_vport_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77986422 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a23f822 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96b224bb mlx5_set_port_proto -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x996e31d6 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a1800bb mlx5_core_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9aa5cfdc mlx5_core_eq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9fc4ae84 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa15639f0 mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa37e181b mlx5_query_port_proto_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa484cce9 mlx5_core_page_fault_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7af141a mlx5_query_port_proto_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7dc4f5e mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad8bf99a mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc22eba75 mlx5_query_port_proto_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc81fadbc mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2192e0d mlx5_core_create_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9d94e69 mlx5_core_destroy_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf6a445d mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0723b8d mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe36f9354 mlx5_query_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef6fecd0 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef7eb971 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1a83b78 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf517d779 mlx5_core_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf643a755 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfde68272 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x368d3d71 regmap_encx24j600_spi_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xc0b01d03 devm_regmap_init_encx24j600 -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xd4ab3625 regmap_encx24j600_spi_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x4d5b06c2 stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x6ffc5dc3 stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x807c7ee5 stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xb54275db stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x7cce8e7f stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x8f7a0d3a stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xa57ed2ab stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xb35ffdd5 stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/geneve 0x90294032 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/geneve 0xc27661ad geneve_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x4944ec57 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xc82f1a94 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xebd0da6b macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xefd3b6eb macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvtap 0x5509ba6e macvtap_get_socket -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0c4659b5 bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x12c22f3c bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x61cd80ec bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6f6aee56 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7337c754 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8caad0cc bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb7bf2af8 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xca369b11 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe855a18f bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfce49af3 bcm_phy_enable_eee -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x13552c4d mdio_mux_init -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x2948c627 usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xcbadc815 usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xeb938dfa usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xffed9f14 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x14de7d60 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x4ff7c1f4 cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x51f899db cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x764afb42 cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7bd826c2 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x935216dc cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd0d47d24 cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd3d318c5 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xef391dc1 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x0e775335 generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x437119ca rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x4d0f1cbd rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa3443725 rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xacbecb82 rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xfcc1835d rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0243dc64 usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x05185365 usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x083fe9bd usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0b20ce08 usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1283a485 usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x18054bd0 usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x254e88d0 usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x28da0486 usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3f78f667 usbnet_set_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x44793291 usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4caa2a9f usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4fbd3a62 usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4ffd5ae3 usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x53e1df3a usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5dd9bd3a usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x67748f95 usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6b624dbd usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7687ddf2 usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x78a77f34 usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x865d451a usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa813fa1d usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb5ecc3d9 usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbc6f7432 usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc3121a98 usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc72f00a0 usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcff92fd5 usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd2783f72 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd751039b usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdf77ae65 usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf237ebb0 usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf84b7a75 usbnet_get_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfdd2eb4c usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x2f0e77f5 vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x4062d4a7 vxlan_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0f8edf21 i2400m_rx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x122ed028 i2400m_post_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x178f41f7 i2400m_dev_bootstrap -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2b15ae5e i2400m_tx_msg_sent -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x394a888d i2400m_pre_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x63c8f121 i2400m_netdev_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb3dc969a i2400m_release -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xbdcc3558 i2400m_tx_msg_get -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd7000d0b i2400m_dev_reset_handle -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xdd270335 i2400m_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe429c0f4 i2400m_tx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe8a0219f i2400m_init -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xed43bab5 i2400m_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xedc73f40 i2400m_cmd_enter_powersave -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf1e775ba i2400m_error_recovery -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xfbf65825 i2400m_is_boot_barker -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x5cd16355 cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x714f55ff cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xdbb0b7c3 cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xff86725b cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x469b7c23 libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x1d9ea786 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x306c8972 il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x4c33b8e7 il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x716ebf22 _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xbf61f0fd il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x11619a5e iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x16474139 iwl_notification_wait_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x194202ee iwl_notification_wait_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x19d04188 iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1c3a9d2b iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x47b12910 __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x49b542fb iwl_init_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4dfbb7b9 iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5385f2db __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5a10d898 iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5a212a2b __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7160e1d0 iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7d395a5f iwl_write_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7defa547 iwl_opmode_register -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7f8d6d5e iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8b9504e0 __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8c812188 iwl_nvm_check_version -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x95883ae7 iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x980337fe iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9951ced3 iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9bf16097 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9c77eed0 iwl_remove_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa98a7702 iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xac85c619 iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb0f165eb iwl_parse_eeprom_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xbb8ccc52 __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc60ea6fd iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd92aef5f iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe29bd81e iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe7c36a43 iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xfe732180 iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x01969260 lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x1f6fbc9a lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x267b499d lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x2e715c58 lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x42ca0db7 lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5817ac16 lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x68b0b088 lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x995d19c1 lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9b3096d5 lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xdbb7f21b lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xdf90b549 lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe8b11912 lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf1be0854 lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf6b565cf lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf804dc14 __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xfd4c1dae lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x45d2d6bf __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x4cf862f2 lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x543b7ff4 lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x646f99fb lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xa9a10648 lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc6fb83ff lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xca8895f7 lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xd0355cdc lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x108aad84 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x156b1b24 mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x1c1f29b2 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x301a377f mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x4cb741e4 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x5814c028 mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x73000466 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x79779864 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x79e20425 mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x93e3f8bf mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x9c7a5a25 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x9d6921c0 mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa25e53b2 mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb64af626 mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc6183942 mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc9a72d6d mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xd3558748 mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xdc01b33c mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xed5adee7 mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x15f7a72e p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x3787491e p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x3d453291 p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x7545c852 p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xd3d7e35b p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xd7a39777 p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xdd2a05c4 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xe7d120d5 p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xf9fc6ea9 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1626b8f3 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2d2fdcce dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9ea23f88 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdf3e9fa0 dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x01e8b023 rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0367ca47 rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x04aa28e7 rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1b7b4754 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1bd50dfb rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x21791c72 rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x25eaeb4d rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x26537b76 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x312520d5 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x47cefff2 rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4fbf75e3 rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5457aac3 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x550aa0af rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5bc4c20a rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5c730252 rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6d583fae rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x932b6fb2 rtl8723_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa00db31f rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb5d03be4 rtl8723_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd6b31de2 rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdeef2e7a rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdf95608e rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe18172d6 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xeaac3b75 rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfb5d4cdd rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfc15de95 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xffa90431 rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1568f038 rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x16847654 rtl_dbgp_flag_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d882d91 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x387f42b5 rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x49547ff6 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x53cefc0b rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5af05cbe rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5e28235e rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5e999d03 rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5fcc1c8d rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x85ebeb09 rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8801c9c3 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x94050737 rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9a9c0b30 rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb740bbf0 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc7891c7c rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe8552197 rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf9169e32 rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfcffde43 rtl_attribute_group -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xff15a9ce rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x011b8947 rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x08583ab6 rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x211e797b rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x62108e3e rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x05080b57 rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0ccae030 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0cf5b798 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x111d3ad1 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1e190bb4 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x23cff977 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2fe66e51 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x396ce0a5 rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3c2c3898 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3c4c0b1a rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3c94bdf1 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3e3f8c2a rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4577438b rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4dca0f54 rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x59d6ed6a rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x657d2f6e rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x70dc3d59 rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x711890a6 rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7164ba02 rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x791a9051 rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7eb1a822 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x817ad34e rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8781efcb rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8907719f rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9984878d rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa645879c rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa6c0370d rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xab11bb35 rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc3637b4b rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcb64bec6 rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xccf397a4 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcea816d7 rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd53e2b89 rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xdeff4f4b rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe51c357a rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xecdf7390 rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xee716a90 rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfbd45ff1 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x045b9459 rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0eaf1072 rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x4773619b rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5424f125 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5733c36f rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x589d8dd3 rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x7f0773c5 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xac6e0b60 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xbd71d261 rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xda38131d rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe3885c0d rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe43048c7 rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xf1643be0 rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x04f09b87 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0a5c2d71 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0cda41fa rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1033a4e8 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x123344a6 rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x15b6e877 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1699649b rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1d6440ab rt2x00mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2b9755b1 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2c8c6650 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x334a918d rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x35746769 rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x35a6bc9b rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x38398a80 rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x38914450 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3c6078b1 rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x54d0928f rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5652dd58 rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x638322c3 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6a8fd482 rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6be5b9cb rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6c6c97a7 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x76a4f3e0 rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x82ee3116 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x882b4eb2 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x90573587 rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x91517199 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9a771b67 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa95c4a46 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb407a46b rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbc17c306 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbdd9eeff rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc0b281c0 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd3243687 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd38b5af1 rt2x00mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdb053b37 rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe82924da rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe95e8ae0 rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe98bf291 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xea10cc49 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf0f342ee rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf1834aae rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf2e895a4 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf3d80fb0 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf8379138 rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xff69538f rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x236c1eda rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x4fae52bf rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x7f273953 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xa46c3679 rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xe006bb5f rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x43cde7bf rt2x00pci_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x56a5a7a7 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x79077894 rt2x00pci_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x859f8753 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1bbb31d3 rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x21d90384 rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2c1e2129 rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x353a8195 rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x447c006b rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x493133ed rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x529a05a2 rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x54a502fc rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x62ad2e2a rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x74ce44b4 rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x9871fdda rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xcd3c79b6 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xcfb2a30d rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd543b4c8 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xdf935f31 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xfab99931 rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x4d786bd3 wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x60de283a wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xcacaa9be wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x001603b0 wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x00855145 wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x03c051d1 wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0e2e1d19 wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x227183f9 wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2476c4b1 wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2a8e214d wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x367d88d2 wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3f37e137 wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4c6f7e36 wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4d283239 wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4f5d09d8 wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x52c1118c wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5af3fd6c wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6f256426 wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6f5b2c18 wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7928ce69 wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7b872b59 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x800a7119 wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x822303b9 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8a02f073 wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8ab833af wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8b5ff609 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x914609a4 wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91da5146 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9279f3a0 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9fd21c9e wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa26dbd04 wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa7bbe0ae wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbf979adb wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc5948250 wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc8a0f38a wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xca8b61f6 wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xced0ad91 wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd2731d44 wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd2c9d5b2 wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdd585bc9 wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe1d14d71 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe3f3e1e6 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe6e7a446 wl1271_ps_elp_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xeaf6beec wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xeb938941 wl1271_ps_elp_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf32e3357 wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfad85a0a wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfaf46113 wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x18de6db3 nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x29a9f1e4 nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x2d54a8bc nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x971de1a1 nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x36a2d2d1 st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x3cfa15b6 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4ceeccfb st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x50bf279e st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x6cf7f718 st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x977b6bf2 st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf2265b36 st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xfdcf8bb8 st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x86cf3fd4 ntb_transport_register_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xad344bf8 ntb_transport_unregister_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf82a490e ntb_transport_create_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x0b09b92a devm_nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x0c62f61d nvmem_register -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x0f6789be nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x16d7b645 of_nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x1ecf994c of_nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x36ec8a8a nvmem_device_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x5080f207 nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x68758fda nvmem_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc96fb674 nvmem_device_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe18960ba nvmem_device_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe9a7fe16 nvmem_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xfc389d0b devm_nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xffdc6140 devm_nvmem_device_put -EXPORT_SYMBOL_GPL drivers/phy/phy-omap-control 0x2293ed36 omap_control_pcie_pcs -EXPORT_SYMBOL_GPL drivers/phy/phy-omap-control 0x62c0d7b4 omap_control_phy_power -EXPORT_SYMBOL_GPL drivers/phy/phy-omap-control 0xcdf2960c omap_control_usb_set_mode -EXPORT_SYMBOL_GPL drivers/phy/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x0014fbc9 ufs_qcom_phy_enable_iface_clk -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x07b6c201 ufs_qcom_phy_calibrate -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x12d2dffb ufs_qcom_phy_exit -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x15518c56 ufs_qcom_phy_is_pcs_ready -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x240020ba ufs_qcom_phy_init_clks -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x25056dc2 ufs_qcom_phy_init_vregulators -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x59a8616a ufs_qcom_phy_enable_ref_clk -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x6b4cace6 ufs_qcom_phy_enable_dev_ref_clk -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x790d3aed ufs_qcom_phy_power_on -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x7aae4f8f ufs_qcom_phy_start_serdes -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x7b315b51 ufs_qcom_phy_disable_ref_clk -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x860722dd get_ufs_qcom_phy -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x8b73ccad ufs_qcom_phy_remove -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x908b4fc1 ufs_qcom_phy_set_tx_lane_enable -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xba699b42 ufs_qcom_phy_disable_dev_ref_clk -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xc0dc50ae ufs_qcom_phy_calibrate_phy -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xc94942ed ufs_qcom_phy_save_controller_version -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xcdbc620a ufs_qcom_phy_power_off -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xf31a50a5 ufs_qcom_phy_generic_probe -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xfaaaefda ufs_qcom_phy_disable_iface_clk -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x93fb56b1 pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xd51563ad pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xd7705a30 pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x495d885d mc13xxx_get_num_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x5089e8f8 mc13xxx_parse_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xada7fde7 mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xdac9db53 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xf6ed16b8 mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x18e85042 wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x73839a41 wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x90768e7a wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x94aa9d10 wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf265735d wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf3737fe4 wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x27d3abb6 wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x04a3d1f8 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0b3cc1a3 cxgbi_ddp_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0c79202f cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0c963dde cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0f04dd72 cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x181406d6 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1ed771e6 cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x25a83613 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2a405a2d cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x306a7510 cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x34ecef62 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a2d54cb cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3d1cca88 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x410b6441 cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x48e4a6a3 cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4d9120cf cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x52e14729 cxgbi_ddp_ppod_set -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x579604b6 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6289ec7d cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6444a486 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6ee715cc cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7282fbb7 cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7314282a cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x752bef80 cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7a9e1f8f cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8a8770f1 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x95e78aca cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9cdda381 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9fb92e84 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa124535c cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaf7de612 cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb92d3457 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbb768fc2 cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbf51b648 cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd07f8d5d cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd1bdadb3 cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdbf21d3b cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdc602c25 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe29ee19d cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe2d84136 cxgbi_ddp_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe5eb8f04 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe63bfb19 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf4dacc3a cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf87742f8 cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfac8bf1b cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfbee038a cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x00346a59 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0555ffd9 fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x05e4ff54 fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1957d4df fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4cda8734 fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5b02d260 fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x627f2e9b fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x930dd97c fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x967347ba fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb6c23321 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc1576e3b __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd5c1e5f7 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd7f0b640 fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xea348011 fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xecd15d87 fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf89871f7 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x15126736 iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x1c65ebf4 iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7a9cc10a iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x9d5c4988 iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd46e858f iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xfe9e54de iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x00841889 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x03f4e15a iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0eeef15f iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x14910da3 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1c629d37 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x24f80d85 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2b73ad90 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2f0d31e1 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3172476d iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x32eb7cfe iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3beec4a7 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x41625b3c __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x48cc3c4e iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x55b7972e iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x596c613c iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5caea4c6 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x60b08dea iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x60ec4c04 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6584229f iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x70150df8 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x744cb48b iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x781e69ff iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x78f8911b iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x80270659 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x861782dc iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x87dc672a __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x91bb66d2 iscsi_conn_queue_work -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9affaeae iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa58d633f iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xab5b4674 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xacbb8d3f iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf4c5e12 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc0b78979 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xca6bb961 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcf35f66b iscsi_eh_target_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd60eb1d9 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdd22bf57 iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe004a976 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe10e8725 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe9a6c064 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf353ea74 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfaf5e2d8 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x038a6204 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x110723c0 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x18ea4fe1 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x21d6634b iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x285f80b9 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3adbd92e iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x41dba609 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x48ea6e2a iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5cfe29d9 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x931a1876 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa7cc1702 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xab9ef59e iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb5fa9cca iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc341e09f iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcb4ca159 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xce4edcbc iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf7b87bfe iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1631f5ab sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1bf1b4de sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x247ea57a sas_domain_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2b621dfc sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3b724bf2 sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3f9ff333 sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4fe7beda sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x612b8347 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x634c2239 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x68d76737 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7b094406 sas_eh_bus_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x883305d3 sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa538edcc sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa82c7e1e sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa9e504cf sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xab1b09c1 sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaf957200 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc6258fe3 sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdacd0cc1 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdeabbdb6 sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe48f7693 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf99ddca1 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf9f06c64 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfd084750 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0c666e96 iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1a3b89cd iscsi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2809c3cb iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2c5726d1 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x352f84aa iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x370fa634 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x372641f8 iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x377643b8 iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x39aad803 iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3f796c7b iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x41440369 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x54502765 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5683c788 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5948be22 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x610bf9eb iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6f9db977 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x73d84b09 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x75ea0300 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7697a0bb iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7cd55636 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8125078a iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x82d2c2d7 iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x83829e4e iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x85cbd933 iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8bce08b9 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9e10d854 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa2140c0b iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb15473e0 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbcf76cb4 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc9c080e6 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcd3b91a0 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd448d62b iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd67cd00e iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xda96d5ee iscsi_is_flashnode_conn_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdba1bbdf iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdde173ad iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe1e657d6 iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf0d299b5 iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf4386584 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfd14b338 iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x07058b5d sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x1786f57d sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x823e39b7 sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xab957f1a sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xc3d5f932 spi_populate_tag_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x12ddb35d srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x72fb5e00 srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x76418608 srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7e19ba17 srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xa81d278b srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xfcf704c0 srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x39952ad7 ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x6949afc8 ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x7d3bb537 ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x8be91eb3 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xa6b4fc62 ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xbd5ea960 ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xcc71d926 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x52f79487 ufshcd_pltfrm_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xaa103285 ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xba04848a ufshcd_pltfrm_runtime_idle -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xbf4bcf5c ufshcd_pltfrm_runtime_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xe1ce2398 ufshcd_pltfrm_shutdown -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xefb2377c ufshcd_pltfrm_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xfe5e807b ufshcd_pltfrm_runtime_suspend -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x0aad3378 spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x558ed476 spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x9b3d60a1 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x9fc90c4a spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xc5bbee9e spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x0ed8a6f3 dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x29231dd5 dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x6c1524cb dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xd2951b08 dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0327a9d4 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0745549f spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x21af8386 spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2fe090a6 __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x53b8d29d spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x67625bc6 spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6cd1692f spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6fe95532 spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x71db1ad8 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8fa32451 spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9bfb0ec5 spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa4a608e9 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb83d9dc1 spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd04ad59a spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd8c60021 spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe54447c9 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf5d8eed9 spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf9455338 spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x599d14a3 ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x01d583c0 comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0797a580 comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0beacb91 comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0ca24b9c comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0e6ac4f5 comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1530349e comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x33b6af2e comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3568ca3b comedi_dev_put -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3a7d08e6 comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3ae0ad17 comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4bbe341f comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4def8535 comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5582cc49 comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5914a7c5 comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5aeb7e9d __comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6d257793 comedi_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x725a67e8 comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7d0f5541 comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7df45278 comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7e050ca8 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8bcf61bf comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8e756617 comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa0beabc2 comedi_handle_events -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa2442087 comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa2ff442d comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa4fa9bd2 comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa92bffbe comedi_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xaa7ab3d9 comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xafa74217 comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc8812f78 comedi_event -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcb5a2696 comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcddadb07 comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe4dffd0b comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xed4deab4 comedi_timeout -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfc91a7c1 comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x2f383ca6 comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x4d0b25bc comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x50721828 comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x7675c1e7 comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x78ad6208 comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xa2d70116 comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xd37c485e comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xfc9745ee comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x397046f2 comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x8fd3ed39 comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x959ab3d6 comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x97dca5cc comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xde4c3429 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xfec739dd comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x21c5fd34 addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x120554f0 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xbcec919c amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x80eac0d3 amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x0d1ebfcb comedi_8254_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x3054b84e comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x3448ffac comedi_8254_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x49dcb94a comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x5faaf6c2 comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x88f5ddcf comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x96343a69 comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x96ab8365 comedi_8254_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xa7b5af87 comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb631f6f7 comedi_8254_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb6707577 comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb7297d48 comedi_8254_load -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xe789a65c comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x2b21df97 subdev_8255_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x9f25f147 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xcffe6411 subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x702c5d03 das08_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x12220854 mite_dma_tcr -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x148ffeef mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x15b0f53d mite_sync_input_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x1a3516b4 mite_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x34fa8cb6 mite_bytes_written_to_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x3f085870 mite_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x45060434 mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x50987f03 mite_prep_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5663899b mite_release_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5b5df30f mite_free_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6431dbe9 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x66b0bed5 mite_bytes_read_from_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x87d83bcb mite_sync_output_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x8897f70b mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa04d8c97 mite_done -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xad15a121 mite_buf_change -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xaecddb30 mite_bytes_written_to_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc68d4dc6 mite_setup2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xdfb15bb7 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xec5d2e51 mite_get_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfc87e953 mite_bytes_read_from_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x12e29183 labpc_common_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x7ef6b228 labpc_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x1f899664 ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x347a37a4 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x575edce0 ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xa05b2a29 ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xa66c048e ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xaf4d2692 ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xd239f365 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xfbd6af8e ni_tio_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x4b635563 ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x72605261 ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xb19418f0 ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xb941e730 ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xebdc0a40 ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xfab8d216 ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x4bb8e03a comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x54b79c97 comedi_open -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x6c27ce2a comedi_close -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x9714e4e8 comedi_dio_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x9c72e6f9 comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x9e47f198 comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xd302c516 comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xe1c7b4f7 adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x1288dedb channel_has_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x38ddc662 most_put_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x40e87c61 most_register_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x43c2b9ca most_stop_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x73395518 most_start_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xa8a0a9fe most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xb4c7ab40 most_register_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xc5362e1b most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xd199b6a3 most_deregister_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xdfba392a most_submit_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xe7e4f1a8 most_get_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xf7e35dc0 most_deregister_interface -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x02ac1d0a spk_synth_flush -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x039ee845 spk_do_catch_up -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1529cf6a spk_serial_synth_probe -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x5af3f933 spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x82519b8f spk_var_show -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x84223700 spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x86442336 speakup_event -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb2978dbc speakup_info -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbffab261 synth_add -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xcfead155 synth_remove -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd162aa5e spk_synth_immediate -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xfd251bea spk_var_store -EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain -EXPORT_SYMBOL_GPL drivers/uio/uio 0x1aebfe41 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x2e9f7160 __uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xbca61cbc uio_event_notify -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x1f0474fd usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xcd1cc360 usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x2b891d52 ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xfbd5a889 ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x51d23b79 imx_usbmisc_init -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xd4267473 imx_usbmisc_init_post -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xe6b574cb imx_usbmisc_set_wakeup -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x1e77e27d ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x2898dfe3 ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x65385b5e ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x77a80ebb ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x7c0603e0 ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xab8701dc ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x057c77e0 gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x120b7e7a gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1f807ac4 gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1ffa7272 gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x32e5fa50 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x49170fcf gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x49560a4b gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x52f1bf4e gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x95cb9374 gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9efa6cef gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xaaa7d82f gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb1d63350 gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd48d8fe9 gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf0dcf6ee gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfbaeda1c gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x1f642c01 gserial_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd1d68dd7 gserial_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x09fd97d2 ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xe4bed85f ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xeaa09089 ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1108da7f fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3f33c7ac fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3ff02b2c fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x546c7f99 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x576cb441 fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x578e59a8 fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x64fa7d97 fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6b4a7ba5 fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6b4c76ac fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x87f59bda fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x987bc0cf fsg_config_from_params -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5265881 fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa55e342e fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd468f882 fsg_common_set_ops -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd88c0efe fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xdf640bd7 fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe4acb154 fsg_store_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe6375e4d fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x04e78da7 rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0d1149b4 rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1ec57837 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3c576854 rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4b7ade92 rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x63d0a83b rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x66f8b363 rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x89b0e3bd rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa4c005e6 rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xaf020973 rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xafaff28f rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdaf6d81c rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe5811e7c rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xea31bc4b rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf338dbbc rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x103ee391 config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x11c0b504 usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x238d7af6 usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3c9f5b69 usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4840a5ea usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4f4fcefb usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5018fd50 usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x54e9b920 usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5c557740 unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x61cda8d8 usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x62689a04 usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6c119a1e usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x77593e65 usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7c6bda75 usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fcab1a3 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x83bfd91f usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x90f16ff7 usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x915d3cea usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb524b264 usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbf0bd430 usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc2d5fcac usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc6ff46d2 usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdaef5fcb usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdb337123 usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdbca1d0b usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xddd4c25e usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xebcea464 usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf4d21658 usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfcdfa100 usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xff02ee48 usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x383ee257 ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x4f2c941c ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x20c9d45e usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x22f2985f usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x384d42a7 usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x3e3fc597 usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x527681d0 usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5b53d576 usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x979935ef usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xdaba028c ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xfc993e77 usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/musb/omap2430 0x6fb55e1f omap_musb_mailbox -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-am335x-control 0xf0b6a12e am335x_get_phy_control -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xcc6399a9 isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x3570518c usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x055922fc usb_serial_handle_break -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0665d941 usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1d52cc72 usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x26673479 usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x41b62325 usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4d903db6 usb_serial_handle_sysrq_char -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x58d1cf91 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6d0e4816 usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8c445f7c usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8c86d106 usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8db5004c usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa117d7ec usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa7ea0804 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa882be4d usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xabdaef09 usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb4317eca usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbf515b5e usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc4044c85 usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd3553184 usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdd3572bb usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xedc14d36 usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0234de97 usb_stor_CB_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x03d2c324 usb_stor_pre_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x08fc2927 usb_stor_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0e59935e usb_stor_probe2 -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0eef38ed usb_stor_suspend -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x16236594 usb_stor_probe1 -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1f004489 usb_stor_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2be183d7 usb_stor_access_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x31632396 usb_stor_bulk_transfer_sg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3a68a9b4 usb_stor_adjust_quirks -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x775d88be usb_stor_bulk_transfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8c90f7ba usb_stor_control_msg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9791f863 usb_stor_CB_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa464b76b usb_stor_transparent_scsi_command -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb22e40e9 usb_stor_set_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xcd6295b2 usb_stor_host_template_init -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd0a3be48 usb_stor_ctrl_transfer -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd3743df6 usb_stor_Bulk_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xdd6ac9aa usb_stor_disconnect -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xde12ae40 fill_inquiry_response -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe51d7a8c usb_stor_bulk_srb -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xee8c08d1 usb_stor_reset_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf24fbf49 usb_stor_post_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xfd8970b0 usb_stor_Bulk_reset -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x183ab1d8 dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x294a1c80 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x32d4ce6d usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x41fb3207 usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x504c7473 usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x53cbd047 usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7d648fbc usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x85751fae usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9fe99b1c usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xded53d2c usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf412659a usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf8b679f5 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x29f3c243 wa_urb_dequeue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x319d1931 wa_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x96d6d380 rpipe_clear_feature_stalled -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc37379c4 rpipe_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc543b60e wa_process_errored_transfers_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xdb44fe3f __wa_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xe65a5d4b wa_urb_enqueue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf4654c3f wa_urb_enqueue_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf5c505d1 wa_dti_start -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0ed92f8b wusbhc_mmcie_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x1951c3e5 __wusb_dev_get_by_usb_dev -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x1aa44031 wusbhc_rh_status_data -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x34a1b878 wusbhc_rh_start_port_reset -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x49159768 wusbhc_b_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x59bb29a9 wusbhc_chid_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x705ffb71 wusbhc_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x8d8523d3 wusbhc_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa2112bd7 wusbhc_mmcie_rm -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa53d3e92 wusbhc_giveback_urb -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xac92d5ed wusbhc_rh_control -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xc70797fe wusbhc_b_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe3f7075f wusbhc_reset_all -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe963dc88 wusbhc_handle_dn -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x0dcb6fd2 i1480_cmd -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x1b7687d1 i1480_rceb_check -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x5def5bc7 i1480_fw_upload -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x3d65460d umc_driver_unregister -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x5803d921 umc_device_unregister -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x94071e3c umc_device_create -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xad621bbb umc_bus_type -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xcb7ed0fb __umc_driver_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xe64815a2 umc_device_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xe6b6e9ac umc_controller_reset -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xf4083c40 umc_match_pci_id -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x03b254ee uwb_rsv_modify -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x07a4ee9c uwb_est_find_size -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x085c032d uwb_rc_cmd_async -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0885b279 uwb_radio_start -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b8aad57 uwb_est_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0f527992 uwb_dev_for_each -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x25c433b8 uwb_rc_cmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x336fb5c1 uwb_rsv_get_usable_mas -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x382f5dcb uwb_rc_neh_error -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3ecbd848 uwb_notifs_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x405c695d uwb_pal_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x43ad0b66 uwb_rsv_terminate -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e3d1045 uwb_rc_pre_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6462abc4 uwb_rsv_establish -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6544a10a uwb_rc_neh_grok -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7809e485 uwb_rc_post_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dcfcd23 uwb_ie_next -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8477c3ed uwb_rc_get_by_dev -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x877be2de uwb_rsv_accept -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8882e908 uwb_radio_stop -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x900ebb48 uwb_pal_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9d907d9a uwb_rc_mac_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa5d50613 uwb_notifs_deregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xaab67916 uwb_rc_ie_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xab1f38bd uwb_rc_vcmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xad1d60a5 uwb_rc_alloc -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xaf06800e uwb_rc_reset_all -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb9a424e6 uwb_rc_get_by_grandpa -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbbb60a1b uwb_rsv_destroy -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbc63ed78 __uwb_rc_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xcc8ca176 uwb_rc_ie_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdc57d200 uwb_rc_put -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdf518e40 uwb_rc_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xea160b74 uwb_dev_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf08fcb0e uwb_pal_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf2f9ee97 uwb_rsv_create -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf43b32b6 uwb_rc_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf46249ba uwb_rc_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf6b9be53 uwb_rc_dev_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/whci 0x7457ffe3 whci_wait_for -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x2e4408b7 vfio_platform_probe_common -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x54f13c26 vfio_platform_remove_common -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xa7b423c2 vfio_platform_unregister_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xd25ca2e7 __vfio_platform_register_reset -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0bd00629 vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5f6f118e vfio_group_get_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7b2d5fe8 vfio_del_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe1b24267 vfio_add_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf4adb7e4 vfio_device_get_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xfc116735 vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xc6df6541 vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xe173bdff vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0d2fd33a vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1317d16b vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x15537d7d vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1d7bba2e vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x212153cd vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x31f2189c vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x32bcc5e8 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x361a5e4d vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x45a086b6 vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x463a92e5 vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4ba278f8 vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4e3311be vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5969c1c5 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x648281a6 vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7403a82f vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x78e838f8 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8acef4ac vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9d4175a4 vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa27f573e vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa6d9c086 vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa77c6cdb vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xac690394 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb201c095 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc56fdeb6 vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd1ad31e3 vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdabe93f7 vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe018aa03 vhost_work_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfab2a852 vhost_init_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd59cb8f vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfe633e40 vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x5250083d ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x793073fd ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x85918368 ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x8f150c76 ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9a6edf47 ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xb0d56a0f ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd19641b8 ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x063e2b78 auok190x_common_remove -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x6d3f8fd1 auok190x_common_probe -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x7a2bbba2 auok190x_read_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x86608ccd auok190x_send_command -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x96224051 auok190x_send_cmdargs_pixels -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xacd93ea5 auok190x_send_cmdargs_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xe8247552 auok190x_pm -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xf0251b2a auok190x_send_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xf2f120e3 auok190x_send_command_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xf3ad7e53 auok190x_send_cmdargs_pixels_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x11064585 fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x7cb3ff0d fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xfd40e180 fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0x2887d8d7 sh_mobile_meram_cache_update -EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0x3e5d4eea sh_mobile_meram_free -EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0x5dd2c97d sh_mobile_meram_alloc -EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0xcb7db836 sh_mobile_meram_cache_alloc -EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0xea2204b1 sh_mobile_meram_cache_free -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x26809f4a sis_free_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x60b1fba9 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/w1/wire 0x1525a347 w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x5386d1fc w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0x730ab01b w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x824af5a5 w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xaceb0589 w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xb5d2150a w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0xc6934e04 w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xeb9a7cf3 w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xfa994e14 w1_reset_select_slave -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x206a421f dlm_posix_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x75938108 dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x95acc435 dlm_posix_get -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock -EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x0a10d954 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x1a591c8a nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x65a1747e nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7f356ae7 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8924370a lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xceca13c3 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf9cd4aa1 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0393ea33 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x092fd69b nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0942dfd1 nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0aa9c35a nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e14e557 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ebb5909 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ed5fc5d nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0eed6787 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f67e11c nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1080a90b nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14d24812 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x196e299b nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1cbbe58d nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2068c49b nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x238a69fb nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x244c056f nfs_destroy_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28597a98 nfs_clone_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28dd452a nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2959cedc nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b466bfa nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b7e3f69 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cee2107 nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f2f62d4 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x338a1b49 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33d6362e nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34195b2d nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37d8a0b6 nfs_pageio_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a71b887 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41802481 nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x423fa82a nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x475a0e5d nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4dbb7b97 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e0765c8 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e5ad177 nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54c107d6 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54ce2db0 nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55ba14a5 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56f48b1f nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5790e864 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5791ecc8 nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a211a47 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a95ba5f nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f5c4964 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62490513 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62e14961 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6451ee3f nfs_try_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x652b2b0d nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65651dbf nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6787692d nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ccef2e3 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e2e0f7e put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f9bd524 nfs_remount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x737194f7 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x747c5c9f nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75e0cc23 nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7627b3a2 nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x777d6abd nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x792775ed nfs_fs_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b2f81ac nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7cb54e10 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d39dc6e nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81c8d7d9 nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82152ec4 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x831bc7b9 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83729c7e nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83e31f33 nfs_pgio_data_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8452f265 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85160620 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8654c5bd nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x877bb293 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d78831f nfs_file_splice_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ea806df nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ee349c8 nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f35e54e nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9131a595 nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9368c05c nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a791113 nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c83515f nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1ceb43d nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3237dab nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa460c950 nfs_set_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa97f8ee6 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa14361 nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad3fae94 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad640172 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xade0d130 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb07ec78f nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb348a3e0 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4ddcef6 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6296fde nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6356222 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6646fb0 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb744853d nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba18951f nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba1e762d nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5eb11e1 nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6e186bc nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8a36b48 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca9adc79 nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcbca82fb nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xceea1c7c nfs_file_fsync_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcff4c153 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd211e477 nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd71be6c2 unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd85fa5cb nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbb6a5a0 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc78d659 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0852a86 nfs_fill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3cffa90 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe4b24ae2 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7dbc1f9 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeeb14bf8 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef35f000 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xefc5af96 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf24d8665 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2747ce8 nfs_fs_mount_common -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf331d52c nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf494b107 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf75240ed nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9a09b73 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfaa26257 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe8b6a5e nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe990d84 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfec527e3 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfef14c27 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff4eeb90 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x31c6b6dc nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0e640bb2 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x10b18465 pnfs_put_lseg_locked -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x165196f2 nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1a20111a nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x29a71efb pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3058ec6e pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x358fd9a2 pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x398aca59 pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3b81e2fb pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4583dab9 nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x490e3b9f pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4b1ed2e9 pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4d7750a9 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4d88dcb2 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5306da03 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a3b5b9d pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5bae0046 nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x65e67871 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e64a4b7 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x729e8cc6 __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x72eac778 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x81f112dd pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82885c95 pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8771ef25 nfs40_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8b9030f0 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ca32d91 nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ca7fadc pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8fe5a25c nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x920a2aac nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x933a45f2 nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x93444e71 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9bb6a780 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9dfe5338 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa418ab90 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa9a25712 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaba895f4 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xabeb3c91 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xac9e2d5a nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4eec5a2 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5c036e1 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb88875a5 nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbb8e416e nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbf082022 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc0c1704b nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc1474b64 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc80ece56 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcdec3985 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdbff6a72 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf2dc1b1 _pnfs_return_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1b8ad36 pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1fa7471 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe2a68d72 pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe4ce8da0 pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe6e264ce nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xea684eef nfs41_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xebecd962 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed008344 pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed2f488f nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xef0a4a3c pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfad079cc pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfda75b25 pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x6bbd47c1 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x93322eee locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xcdf50f24 locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x976b771e nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x9a2a861d nfsacl_decode -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1cb231d0 mlog_not_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x226c0ce3 o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x2b85bd45 o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x2e45bb7a o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x32a9f938 o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4ebd99a7 o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5642de27 o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa9f5379a o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xab24bc55 o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x8f44615b dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xaae70383 dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc1778e7b dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc6343d32 dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xe7af3b27 dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xed2af3e0 dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x249c7552 ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa351d367 ocfs2_plock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa99a6a51 ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version -EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq -EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures -EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats -EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb -EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random -EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait -EXPORT_SYMBOL_GPL kernel/torture 0x63e689a6 torture_shuffle_task_register -EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop -EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end -EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init -EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init -EXPORT_SYMBOL_GPL kernel/torture 0x9bff8a7f _torture_create_kthread -EXPORT_SYMBOL_GPL kernel/torture 0x9d498bf4 _torture_stop_kthread -EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin -EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin -EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init -EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end -EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init -EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping -EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress -EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x502ef512 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xae143f88 notifier_err_inject_init -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x021957e1 raid6_datap_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x0f8a2742 raid6_2data_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xd4cb6873 raid6_call -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x2d107b5e base_inv_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x41ecf87a base_inv_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x72eb4ea9 base_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x767b8ba8 base_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x8d490167 base_inv_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x9af6b231 base_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xdba4feef base_inv_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xde0e6eb2 base_old_true_key -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x5507fdbe lowpan_header_decompress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xb483eb49 lowpan_header_compress -EXPORT_SYMBOL_GPL net/802/garp 0x37783a51 garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0x4c4814ef garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0x567d532a garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0x7cb78496 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x9bc69d73 garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0xc5c1cdbc garp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x0eca1ca0 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x10b25bb2 mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0x1282283f mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0x1c2755de mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x4febfc35 mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x6089d694 mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/stp 0x018d17c2 stp_proto_register -EXPORT_SYMBOL_GPL net/802/stp 0xb2b3c219 stp_proto_unregister -EXPORT_SYMBOL_GPL net/9p/9pnet 0x209b8de2 p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/9p/9pnet 0x6cd9155d p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier -EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier -EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast -EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr -EXPORT_SYMBOL_GPL net/ax25/ax25 0xc7b0789e ax25_register_pid -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0b9ffd89 l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x1cec7ce6 l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x72d1f865 l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7f82e045 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8339f987 bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb717bc53 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd727a087 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xddfaf622 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4db94fa2 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x565822e5 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x89c17e8a br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0x916206d1 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa243d489 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd1d56e87 br_deliver -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd29c7875 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0xfb70c52b br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x7a0d2c2a nft_bridge_iphdr_validate -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0xaa7952f5 nft_bridge_ip6hdr_validate -EXPORT_SYMBOL_GPL net/dccp/dccp 0x09a123b7 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0x10766753 dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x14b80968 dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1e8d26e1 dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2263eb2b dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x261f047d dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2d699410 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0x32dfe6a8 dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x42f0a033 dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4547dc2f inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4f5e1269 dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ff092bc dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x52e4eb20 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5b3de729 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5d1fa7c5 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x68c067f5 dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0x71de9491 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7b05a038 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x81271333 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8bdc938e dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8d61c84d dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x983a761a dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa4409c6b dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa73332e3 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xabcc4fb3 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb0596156 dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb4b0b819 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb58917bb dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc057e8ff dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd06fd888 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0xda232611 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe0bb65f3 dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe7df779a dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe96eba39 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x27d1b6c7 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x39aeb5b7 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x60d41fc8 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x83766d87 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xba6c15db dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xda541451 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x611c1ced ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x9e1fcd1a ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xa0a58a12 ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xfbf500bd ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ipv4/gre 0xcbd8a69d gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xfd83324c gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x13fd940a inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2b10be62 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x320f44bf inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x44122d9a inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9a5e1f27 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc1109168 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x90326773 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1c23f7b5 ip_tunnel_ioctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2b96e6be ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4beefa5a ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x62551e6f __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6a700902 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x746ed3bd ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7b5acb64 ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x83454daf ip_tunnel_delete_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x86a48793 ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8729b64a ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8b831be8 ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbecb3619 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe7a85779 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xecad4b80 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf873478f ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xc430a3b5 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x54aedfaf ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x4e6246ec nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x59bf7d07 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x695f9573 nf_nat_ipv4_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x8e337870 nf_nat_ipv4_out -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xdccb49bf nf_nat_ipv4_local_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xebb19082 nf_nat_ipv4_in -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xdc801483 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x313593ef nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6a9c2d36 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xbce982f1 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xbf5564c7 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf4753987 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0xbb475b90 nft_af_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x03f3c462 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x3c5733e9 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x64b32c03 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xb3e2c569 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xf79453c1 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2f895ad8 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x3e5eb865 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x89136859 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd229c37e setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x5b562b26 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x6c6a619a ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x700a6924 ip6_tnl_dst_reset -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x8b6509e8 ip6_tnl_dst_get -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xbadfa902 ip6_tnl_dst_destroy -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xca5afd46 ip6_tnl_dst_set -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xdcdb5f5e ip6_tnl_dst_init -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xabe4e955 udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xe5494005 udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xdff7739b ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x09b2c856 nf_ct_frag6_consume_orig -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x51ae5bf6 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xd252bf52 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x156019e4 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x57b7282a nf_nat_ipv6_out -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x750a4d20 nf_nat_ipv6_in -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xad0a5539 nf_nat_ipv6_local_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xb8611299 nf_nat_ipv6_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x6661695d nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x3027a347 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x377b8095 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6da54261 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6f2c7908 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x706a36c8 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x59343108 nft_af_ipv6 -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0679c316 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x08fc0062 l2tp_tunnel_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1d66f21b l2tp_session_queue_purge -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1e3ef91c l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x23ca5d88 l2tp_session_free -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x32b07461 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x356354a2 l2tp_session_find_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x357cd2c5 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x38fc3868 l2tp_tunnel_closeall -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4cb628e6 __l2tp_session_unhash -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5ba87ea8 l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x784300e9 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8ddbb3a6 l2tp_tunnel_find_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x925cb9fd l2tp_session_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd42dfb00 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe15b5691 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x68038f3b l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x05c37a73 ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x106f7b88 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x301516f5 ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x394b82c9 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x41c1e647 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x48cb7f1f ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5e0fa363 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x69ac4d45 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7c3ca1f1 ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x844adaac ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x91de7e15 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xad0efcfd ieee80211_set_key_tx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc2b237f5 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc4ab39c0 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xefce2f9c ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf4f868e5 ieee80211_iterate_active_interfaces_rtnl -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf7fccf5e ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf9fa191d ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x6991a630 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8a59a850 nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xb9f7c3da mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc5ac0d63 mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x189c22e8 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x32b27880 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3ecd0716 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x44ce8ceb ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6714273c ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6c410bde ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x787cf1d7 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7dd553f5 ip_set_get_ip_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x87aee4df ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x92cb7334 ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xaba02a55 ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xac3b805e ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb16378ac ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc1fa9b7d ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc9c7f34a ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcd00499f ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x1948ec74 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x23febc1e unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x9de5fa15 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xa4b1c81e register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x04fc1581 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x079e2efd nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x07cfd8c0 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x092ccc01 nf_ct_l3proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x09c467ca nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0d6f8673 nf_ct_l3proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ef236fa nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x111d8d46 nf_conntrack_set_hashsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1bb5747f nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1bc70fe7 nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x204e7051 nf_ct_l4proto_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20894d29 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20fe430d nf_ct_l4proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x211390e3 nf_ct_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b7d9e75 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3191b3c4 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31acc0e5 __nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36a72822 __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b7c568b nf_ct_l3proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4eadfaf3 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5223eb3a nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x56dc5002 nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5ab1fba1 nf_conntrack_l4proto_tcp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5b9c9203 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5e044c91 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x60b28400 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x61a55854 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x63f50f91 nf_ct_expect_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x68879923 nf_conntrack_l4proto_tcp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7427b96a nf_ct_iterate_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7a79d90e __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b1f8bbf nf_ct_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x87b8f00d nf_ct_expect_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x88189719 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8bac6e51 nf_ct_l4proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f3dce73 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e5d11b8 nf_connlabel_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa0bdafe7 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa533fb27 nf_ct_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa54562ca __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa860ee70 nf_ct_get_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb2f53656 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb6e01182 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb71c7858 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb72cdb38 nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb759327e nf_ct_l3protos -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba7b0221 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbec39023 nfnetlink_parse_nat_setup_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc07a0e4c nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc0db110e nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2abd2fd nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc4a3d617 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc574c376 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc5fbfce5 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc9061fc5 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xca8fb10c nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd6f2c74 nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce3562b9 seq_print_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce36b8ac nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd259a553 nf_conntrack_l3proto_generic -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3446de6 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd353cdf9 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3919226 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3b6d67e nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd681c49a __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd7268fe3 nf_conntrack_l4proto_udp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd79d9515 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd937e51a nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd9b98174 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdcea9d36 nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdd75967a nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe510ed61 nf_conntrack_l4proto_udp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe5ee5b77 nf_ct_l4proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe8795434 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe9ec1bab nf_ct_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea4d69ae __nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf0cb79d4 nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf575c5c5 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfb832b69 nf_connlabel_match -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff3d196a nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x281e0397 nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xd84b132f nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x8a3b3805 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x30a617e9 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4e2de480 nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5219262a nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5b099b37 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7c810f58 set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7f1b8c01 nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa2005ca0 set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa9733bfa set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xacf8f6f2 set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd3c07447 nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x8c3870fe nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x07a05c20 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x1ca491bb nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x5062c8b5 nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xc8ff8c30 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x4e437df6 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x9a8c283e nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0154b9e7 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2b949102 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x47b46699 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xad2d7278 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb1ad2f03 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xcf9b8a01 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe301a1bf ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xeac333b4 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xa76c86e3 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x062c931e nf_log_dump_packet_common -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x277dba15 nf_log_dump_tcp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x43e38792 nf_log_dump_udp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x540ce38c nf_log_dump_sk_uid_gid -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x216d998d nf_nat_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x239ab419 __nf_nat_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x258e0b4d nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4ecb91a2 nf_nat_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7b7b2f57 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa1d796bb nf_nat_l4proto_unique_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa8f40d8a nf_nat_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa9ad60ae nf_nat_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf4827b7f nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x7ee8e85e nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xb027b0a9 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x43da71a4 synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8841d39b synproxy_build_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xbb342099 synproxy_tstamp_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x116acc56 nft_validate_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1df87ea0 nft_unregister_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x29f575f2 nft_register_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x37e9553a nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3a06fd10 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5c11e32c nft_unregister_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x769b5ea5 nft_register_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x83f6d572 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8ac3e3b8 nft_register_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9562bad3 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x96225a40 nft_set_gc_batch_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb365d112 nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbea9f944 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc3ed44cb nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc42bdd6d nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcd55a1af nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed013cb8 nft_unregister_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x0862537f nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3731cbfd nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7b93674f nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x91fec097 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x98a8d9ed nfnetlink_alloc_skb -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa32b4796 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa6278e8e nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x15b39d50 nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x24e3353b nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x3d95946c nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0xe89518d6 nfulnl_log_packet -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x28b47891 nft_masq_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x694a59c6 nft_masq_init -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x8ccb9120 nft_masq_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x16ac427a nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x27485701 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x3d120af5 nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x572b60d9 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x7169cdf9 nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xe3207c1d nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x1e63afb5 nft_redir_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x30e15dc0 nft_redir_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5e6989b nft_redir_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x979c8dd4 nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa0f88f92 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x224e0ea5 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x351ed470 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x389229f8 xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3f1ef70a xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x44daa471 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4614f7e1 xt_hook_unlink -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4863e2c2 xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x91b03546 xt_hook_link -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9474d674 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xaad10b79 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb6df926b xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcca075a9 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd2dd45eb xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe3b0a560 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x57909dc1 xt_rateest_put -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xd0f26ea3 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x02458aa3 nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xb38f62dd nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xb500033d nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x97ffac47 nci_uart_unregister -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xc5615001 nci_uart_register -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xd5195765 nci_uart_set_config -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x29cd8f52 ovs_vport_deferred_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x31ddf5c6 ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x44317472 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x4c50deed ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x4f6b641a ovs_vport_receive -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x66883667 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8ec5113a ovs_netdev_detach_dev -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xefd15bd5 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf0222586 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x05d302cb rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x13fa0289 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0x1520267c rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x1602e2bc rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0x1d35451e rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x22605aa9 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x30f6939f rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x45418ba4 rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x552eea96 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0x5df78727 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x6596e296 rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0x6ac128ba rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x9de9e7fd rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0xa4833109 rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xa5213ef3 rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0xa6050e72 rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0xa99109ee rds_page_copy_user -EXPORT_SYMBOL_GPL net/rds/rds 0xabb08e2e rds_send_get_message -EXPORT_SYMBOL_GPL net/rds/rds 0xbeeefe55 rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xc13c8101 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc642cc2c rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0xd2902b22 rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0xd2a86f35 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xdb979256 rds_send_xmit -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x3a8e9327 rxrpc_unregister_security -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xa2aca218 rxrpc_register_security -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x483978c5 svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xda6fde82 gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf25a3068 gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02d6e879 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04abb8ee rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x064b7024 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x075242a2 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08c0a6de cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08f22db8 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09d48757 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c534c90 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c773000 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0cb15ea8 rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e0fa22f sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ef1bdfa xdr_skb_read_bits -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f29ef9e rpcauth_generic_bind_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f2cb648 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1248b8f4 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1293d52d rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13cc9d64 xprt_lock_and_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16326e63 __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1791d98e svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x183e38b2 xdr_buf_read_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1930fa41 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1970bcdc rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19e89641 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ab1c143 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c5a0a28 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d17a56e svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d7ce315 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1eaa906b write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2283aa25 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2364b70b rpc_get_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x239b8e28 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23c42bd0 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25da72aa svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x292dc140 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29a675a7 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29fc05ee xdr_set_scratch_buffer -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a6d2f62 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b5466ab xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c2a07d7 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d609951 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2feb4281 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34040043 xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34e5ad88 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3589e8f5 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3713bf69 rpc_rmdir -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3882d5a9 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x393a39ea rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b599885 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3be97fa1 rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x407ebf5c rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x416f474d svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41e28b6c cache_seq_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x422b6804 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x427cb354 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x456ec8e7 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45eac2e6 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x473b0b93 xprt_set_retrans_timeout_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48611a51 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x488dbbcc rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48f8cef9 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49ade85f rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a4b5329 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ac81f4a svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b56f12c rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b82ec89 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bb1e2d9 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bd89470 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4df207b7 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ea45a76 svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50bab9e6 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x553aa8c2 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5614e794 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5673085b svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x586f13e4 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58821a78 rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59fedca6 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b5898be rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bed0a85 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d45eace xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f16011c xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f84dd47 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6313d9c6 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63c122af svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x657f08dc rpc_protocol -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69abe6e3 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6aaaff88 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c8be933 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ca86bee svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e408046 rpc_lookup_cred_nonblock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f14fcce xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f7c8963 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72d518bb rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7347d71c rpc_print_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x734a9489 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x744cc45d svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x749b4c44 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7551506c svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x756f7209 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77ca6ebf rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a7eab46 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a9a4cc4 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b0e621d svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e48effb rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85c64e2a sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8769ec45 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88257aa6 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8af3dac1 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c2f5d9c rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c7ab67d xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cbd0f3e svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cc58bd0 svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f2f1d41 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x903e7605 xprt_set_retrans_timeout_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x905c2033 rpc_task_reset_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x920edb5c xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x927d4ac8 csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x962bf42d sunrpc_cache_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96807151 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97be08f8 rpc_lookup_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9878f180 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98bfea5f svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99ec0547 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cc39e6e cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d76e2b6 rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f54ce5e xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa021765d xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa12cb497 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3b5ff97 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5990645 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7e533c9 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7fb84a0 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8d99ef2 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9d243fd rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9e2d45b rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabb82153 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabd7aa41 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac07819b svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac8f5d64 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaca2fb56 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaca9d02d xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad03d251 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad22d9f0 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad2671ea cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadb027b5 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae63ceff rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb030af1e xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb20929d5 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb61151b6 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9042af2 xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbaa48459 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbcf3669 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd658832 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdbbbfb0 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe049818 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf6ccd2f xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfd766f5 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0a35ade xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1b63043 svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc36f1ab8 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5dc1d92 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9945d3c xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca5661fd svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca6085fc rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcca33611 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd1b0124 xdr_partial_copy_from_skb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd7f260d rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf959e86 rpc_lookup_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd10935b8 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1914e2b svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1a565b8 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2dd251e rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd37ab10d gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4e3ce75 rpcauth_key_timeout_notify -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd755ac71 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9c659cf rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcd314bd bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde498082 cache_seq_stop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf69051b rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf9c48b0 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe283e650 cache_seq_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2c50183 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe341c050 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe39c50e6 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6028971 rpcauth_cred_key_to_expire -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe61d946b rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe68725ef xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe84b568d svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8949b7c auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef8ece0a svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3dbbb03 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf49b0c84 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7e2b544 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf85dde6a svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa7a6e54 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfabb00df xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfedbc214 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff38799f cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffaf0ffb rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x46c1ba4d vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x47ae6f91 __vsock_create -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6d7d4029 vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x74e91915 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x76665bfb vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x781c81ab vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x799707c1 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x80fe5ef6 vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8532e2a8 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x99218d5f vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdf7210c3 __vsock_core_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe94ebbf9 vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xea179c44 vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf593c40a vsock_pending_work -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfd7b27c8 vsock_remove_bound -EXPORT_SYMBOL_GPL net/wimax/wimax 0x04489a79 wimax_msg_send -EXPORT_SYMBOL_GPL net/wimax/wimax 0x0c16a8b0 wimax_msg_data -EXPORT_SYMBOL_GPL net/wimax/wimax 0x1f181344 wimax_report_rfkill_sw -EXPORT_SYMBOL_GPL net/wimax/wimax 0x40fe3311 wimax_state_get -EXPORT_SYMBOL_GPL net/wimax/wimax 0x472cddc2 wimax_report_rfkill_hw -EXPORT_SYMBOL_GPL net/wimax/wimax 0x529f90df wimax_msg -EXPORT_SYMBOL_GPL net/wimax/wimax 0x758aeb36 wimax_state_change -EXPORT_SYMBOL_GPL net/wimax/wimax 0x90a7d43e wimax_msg_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0x9136c757 wimax_dev_rm -EXPORT_SYMBOL_GPL net/wimax/wimax 0x974b8e8f wimax_dev_init -EXPORT_SYMBOL_GPL net/wimax/wimax 0xce177dbf wimax_msg_data_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0xd19694e9 wimax_dev_add -EXPORT_SYMBOL_GPL net/wimax/wimax 0xf264ab9d wimax_msg_alloc -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x207638f3 cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2777fcd8 cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3205ca63 cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3244dc92 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3d8d9407 cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x56d986e0 cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x59d690d2 cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x66f394fb cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x67fbcbd2 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa8de758f cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xec61902f cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xed6f0515 cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf5013979 cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x12620085 ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x16492b6f ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x18f7f6fc ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x3c8c40ad ipcomp_input -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xb6d6b056 snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xc01a527f __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x21ef79a4 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x96ef7796 amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc64211e4 amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc8226efc amdtp_am824_set_pcm_format -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xcae8a126 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd120781b amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xfe9d1bd2 amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0108b5d9 snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x039b0565 snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05944a96 snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0ecc701a snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0ed461e5 snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0fc4638c snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1091423b snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x165fd518 snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x181ac748 snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1a156241 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x22adcee3 snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2da03703 snd_hdac_bus_remove_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2e10c86a snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x303804f5 snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x35be8ef1 snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x361149e7 snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x394a07b9 snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4077b4c1 snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4de0a21d snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x51adbcf1 snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x532baace snd_hdac_refresh_widget_sysfs -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x556e2871 snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x57d371b3 snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5fe69a37 snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x62901ad7 snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x63273e20 snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6370d971 snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6740ebea snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73363e9d snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x78abcfb1 snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7e958769 snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7f135395 snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x82eddd00 snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x88307573 snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8b73d38a snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8ce6d6af snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8d0ab411 snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x90c858c8 snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9240b4c1 snd_hdac_bus_add_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x937ceeee snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x937ecf48 snd_hdac_bus_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x94f8dd36 snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x997afd07 snd_hdac_make_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9cede4be snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9d18e805 snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa2458cde snd_hdac_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa6a8c94f snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa7e82154 snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xad070bb7 snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xae3d1972 snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbc65f930 snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd4cf95d snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe40fb92 snd_hdac_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbf779cce snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc140d48a snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc166980c snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcb843c63 snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd18bab19 snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd216f67f snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd3c8e1c3 snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd739aebf snd_hdac_bus_queue_event -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd9466be1 snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd96d2a91 snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdf154df0 snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe9bb01e7 snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb6a07f8 _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf13877f0 snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf33d39da snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf53f0780 snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf60499d9 snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfa8a913b snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x0a5eaf7a snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x2ef7cdb9 snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x46e3d15b snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x868c5260 snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa00d51e5 snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa53fa242 snd_ak4113_create -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0198246b snd_hda_mixer_bind_ctls_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x019f0c42 snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x039421e2 snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x042256d7 snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0bf6be4d snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0d0171a8 snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0d3e7a01 snd_hda_jack_tbl_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10957aeb azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1319043c __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13a22b44 snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c3fdc16 snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c4955ee snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1f7b0a7c snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24fcfab4 snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2555f769 azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2568685e snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2606e88d snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2810701e azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x28581e68 azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2acb7f04 azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2dea57d3 snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e0ad3fc snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2fdf5e97 snd_hda_bind_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34153ced snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x36da6053 snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x371f03aa snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3cefc500 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d8b3044 snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4028d146 snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x403df190 snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x42211796 azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46377b04 snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49756181 snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ac4368a snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4da93228 snd_hda_jack_detect_enable_callback -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e8444ab snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5192eefd snd_hda_jack_detect_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52b3ff41 azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x53be8326 snd_hda_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55a66c72 snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x57ac3c16 query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a9690d4 snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5dad9741 snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5e273692 snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f9c1e80 snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x601203f7 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x62d2dd40 snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63a31c9d azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63c8a0c0 snd_hda_jack_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x662a270b snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x66d3dad9 snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6778f3be snd_hda_mixer_bind_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x690f426c snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a4ffc19 snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6beadada snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d197074 snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d2ea35c snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6dbd03d3 is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x75949507 __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x786338fe snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x791ae14e snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7bfce7dc snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d49180b snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x816b9c7a azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84344ec1 snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x846ba50e snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b250d5f snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8cde2769 snd_hda_mixer_bind_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e884ca2 snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x91a83347 snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93a5f79e _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9758ff92 snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa1b5b304 snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa438a6c6 snd_hda_register_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa66dd175 snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa6a3a235 snd_hda_mixer_bind_ctls_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8734a44 snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac749cfc snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0ffef58 snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb12606d1 snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2381115 azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb259aca3 snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb25b18ff snd_hda_mixer_bind_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb309cc4a snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb3e90f19 snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4536bc3 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbae7b4da snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbbc4f44e snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc284484 __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd05e470 snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbdc1df89 hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbf6c1758 snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc08852f6 snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc111a155 snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc12c773c snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc147e624 snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc177d41f snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc2ea63c6 snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc55c5f37 snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc769abd3 snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc621151 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc8a8a05 snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcd747a47 snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce1b95cf snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce30f033 snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcfb3a19a snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0247f36 snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd061bc6f snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd27643c8 snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd46585e4 azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4bbcf2a snd_hda_mixer_bind_ctls_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd85b5b02 snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9b3e8b0 snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdc47c956 snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xde15c282 snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe082688d snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3bcaf29 hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3d25c06 snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe51bab4a snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf5036d8c snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf78d4b4e snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe0f140f snd_hda_bind_vol -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfee69ac6 snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfef32a8d snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x06b79572 snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0e194df0 snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2df74f05 snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x46c81344 snd_hda_parse_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x499f3c80 snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4a6e3563 snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x54752b12 snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5f3a42b2 snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x60f2f0ff snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x657d37b4 snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6f60e26b snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xab80d50c snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb3c61db1 snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbdf8b03d snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xcaae717c snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xcd21d0b5 snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd94953f7 snd_hda_get_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdc7b7c3f snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe7003a84 snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xebff6f62 snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf7811ed9 snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x2b2c683b cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x42304566 cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xa561d24d cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xb0f78b84 cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0fbf8793 cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x13d2162d cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x9dbb504a cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xa6dd28b3 es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xf1e90fbd es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x7298b228 max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98095 0xa88f9a79 max98095_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x5a1aa8ce pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x5e71ab7a pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x6071e90e pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xd9466f1b pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x10603445 rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x680852f0 rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0xc020f15b rt5677_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x952df541 rt5677_spi_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xdc9e2327 rt5677_spi_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xfa47e04e rt5677_spi_write_firmware -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x18d181f1 devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x49d8effe sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x57214a7d sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x6eb51e57 sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xe75b8b44 sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x9b424ea4 devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x4145f60a ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xf58b0e63 ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x753f5875 tpa6130a2_stereo_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xe5bab904 tpa6130a2_add_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x13cb0033 ts3a227e_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x1e2a90d9 wm_hubs_vmid_ena -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5cd7eb9b wm_hubs_dcs_done -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x757206d5 wm_hubs_spkmix_tlv -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x9bdf30fa wm_hubs_add_analogue_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xbfb81063 wm_hubs_update_class_w -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xc6d2f182 wm_hubs_handle_analogue_pdata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xc9a48bfa wm_hubs_hpl_mux -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xdf9ff571 wm_hubs_add_analogue_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xf03caadc wm_hubs_set_bias_level -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xf078e811 wm_hubs_hpr_mux -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x0e736500 wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x15658720 wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x7e0aeb01 wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xda987f79 wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x27e73567 wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x82bc4e81 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x87c9b3a0 wm8994_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xdd7a12b8 wm8958_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x3a24ea2e fsl_asrc_platform -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xfbcaf9f3 fsl_asrc_get_dma_channel -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x30693bb7 imx_audmux_v1_configure_port -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x58631dab imx_audmux_v2_configure_port -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x01771c3c asoc_qcom_lpass_cpu_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x78a0c531 asoc_qcom_lpass_cpu_platform_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xbbd3722b asoc_qcom_lpass_cpu_platform_remove -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xfc374f44 asoc_qcom_lpass_cpu_dai_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0x055077e0 asoc_qcom_lpass_platform_register -EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-idma 0xade84e1d idma_reg_addr_init -EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-s3c-dma 0x1fe8d079 samsung_asoc_dma_platform_register -EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-s3c-dma 0xac068233 samsung_asoc_init_dma_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0319462e line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1ea5d2be line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x484d3f1c line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9011d5df line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9542547c line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x96bcec0e line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa041745f line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbee3f766 line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc0e700b8 line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe01abf7a line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xeafd84e2 line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfcca988e line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfe22233d line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xff1eb6d7 line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xff8e0d51 line6_send_sysex_message -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x3fe35aea irq_bypass_unregister_consumer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x418873cc irq_bypass_register_producer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x888c5be5 irq_bypass_register_consumer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0xf6e772c3 irq_bypass_unregister_producer -EXPORT_SYMBOL_GPL vmlinux 0x0023761d crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x0035907d of_get_nand_ecc_mode -EXPORT_SYMBOL_GPL vmlinux 0x00391bba deregister_mtd_parser -EXPORT_SYMBOL_GPL vmlinux 0x004f2e72 ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x006f4e43 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0x0075cbaf mtd_block_isbad -EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0x00941428 shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x00994dc3 usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0x00ada98a bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x00da475d __rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before -EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish -EXPORT_SYMBOL_GPL vmlinux 0x0177b4f0 kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL vmlinux 0x017d6bd8 crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x0189d855 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x018edcce cpdma_ctlr_dump -EXPORT_SYMBOL_GPL vmlinux 0x01ae4b71 register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x01d908a3 snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01e22d42 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x01f6c29e devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0x0210454a extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x022f1cdf dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x0241f7c4 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x02426f3c cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0x02787dbf iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0x0279d228 devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0297880d sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0x02bef433 thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0x02c37d39 __pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x02dda22b usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x03083522 devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0x0308fb18 ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id -EXPORT_SYMBOL_GPL vmlinux 0x032375b0 hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x032b2d4b kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0x0334cfb4 devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x0335e669 __put_mtd_device -EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x033eb2dd snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x034466f1 mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x0345555a ioremap_page_range -EXPORT_SYMBOL_GPL vmlinux 0x03486850 rt_mutex_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0349ed82 dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0x0355521f of_get_nand_ecc_strength -EXPORT_SYMBOL_GPL vmlinux 0x03581792 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0x03623cbf sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x03669cbe irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x037ab90c security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0x03ae7446 ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0x03ce68b6 fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0x03dc0d8a mpc8xxx_spi_tx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode -EXPORT_SYMBOL_GPL vmlinux 0x0402b504 __percpu_ida_init -EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x0415b1a6 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x0466ee0e snd_soc_put_strobe -EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x048bd988 gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0x04aa76fa sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0x04bc9ffc led_trigger_show -EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04c658f1 fuse_put_request -EXPORT_SYMBOL_GPL vmlinux 0x04d1130d pinconf_generic_dt_subnode_to_map -EXPORT_SYMBOL_GPL vmlinux 0x04dd229c snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL vmlinux 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL vmlinux 0x04ed538a ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0x04f244c8 ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x04f4bd8d percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x04f63245 crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0x04f93d2b skcipher_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0x0511f65d ahci_shost_attrs -EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x054f0d1e call_filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0x0553d928 snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x05542702 leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0x05639e5f vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x056c608e virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0x05910732 irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0x05a6a9aa posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x05d07e6b crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0x05e96887 gov_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x05f71c9b uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x06311cb3 i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0x06438115 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x064a6ec2 dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x0667a036 nf_register_afinfo -EXPORT_SYMBOL_GPL vmlinux 0x0681e937 regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0x068a9ef7 ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0x068cffa0 snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL vmlinux 0x069c0738 snd_soc_component_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x06c9c645 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio -EXPORT_SYMBOL_GPL vmlinux 0x06f8cbf5 usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0x07032f9e trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0x071bb0e8 put_pid -EXPORT_SYMBOL_GPL vmlinux 0x07490b0f perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0x07614657 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x07684a40 alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x07737343 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char -EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07c47f8a get_dcookie -EXPORT_SYMBOL_GPL vmlinux 0x07cd92a4 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0x07cfa8d8 class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x07f74d22 rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x07fcb924 regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x0807d7ae pwm_request -EXPORT_SYMBOL_GPL vmlinux 0x08105ec4 ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0x08205426 gpiochip_add -EXPORT_SYMBOL_GPL vmlinux 0x082b6464 kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0x0875930a of_property_read_string_helper -EXPORT_SYMBOL_GPL vmlinux 0x0892ae1a musb_writew -EXPORT_SYMBOL_GPL vmlinux 0x08b2ce27 led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0x08cfcc18 blk_mq_cancel_requeue_work -EXPORT_SYMBOL_GPL vmlinux 0x08d7b5c5 irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x09009b8d pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x0909bbf0 iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x0958637c list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0x0967b96f of_prop_next_string -EXPORT_SYMBOL_GPL vmlinux 0x096df3c9 devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x097f8223 regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x0983ecd5 devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x0994294e pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0x09b5c518 da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x09c9f280 max_gen_clk_probe -EXPORT_SYMBOL_GPL vmlinux 0x09d6aa4e blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0x09e22fd2 param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL vmlinux 0x09f471a8 debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0x0a0cb0e5 vchan_init -EXPORT_SYMBOL_GPL vmlinux 0x0a4db210 __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x0a4e6584 ahci_platform_disable_clks -EXPORT_SYMBOL_GPL vmlinux 0x0a65b5b1 extcon_unregister_interest -EXPORT_SYMBOL_GPL vmlinux 0x0a80a166 phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0x0a9854dd omap_dm_timer_request_specific -EXPORT_SYMBOL_GPL vmlinux 0x0abe8350 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0x0ae2acf0 mpc8xxx_spi_tx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x0af5c193 dev_pm_opp_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x0afd4610 zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b2e3e15 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b2e5bcb gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x0b42a7ef usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0x0b4bc0b2 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0x0b526fea amba_device_add -EXPORT_SYMBOL_GPL vmlinux 0x0b587f3b blk_set_queue_dying -EXPORT_SYMBOL_GPL vmlinux 0x0b9e8eb2 file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x0bb51813 __get_mtd_device -EXPORT_SYMBOL_GPL vmlinux 0x0bb8811c cpsw_ale_set_allmulti -EXPORT_SYMBOL_GPL vmlinux 0x0bbae511 return_address -EXPORT_SYMBOL_GPL vmlinux 0x0bd8d96a pci_enable_pri -EXPORT_SYMBOL_GPL vmlinux 0x0bdfe340 device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x0bf25c7a nvdimm_blk_region_create -EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0c252750 reservation_object_wait_timeout_rcu -EXPORT_SYMBOL_GPL vmlinux 0x0c2b4df5 regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x0c320aec pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x0c48eb64 sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x0c4b0ed9 __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x0c5a49f0 device_create_file -EXPORT_SYMBOL_GPL vmlinux 0x0c84da71 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0x0c901758 ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL vmlinux 0x0c9d57a1 usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x0cdae1bd list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0x0ce4c9e0 fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x0d0a0879 snd_soc_codec_set_sysclk -EXPORT_SYMBOL_GPL vmlinux 0x0d18506f __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x0d1a35fd blk_mq_tags_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x0d2260e3 md_is_badblock -EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d559ad7 register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x0d59d4cd dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0x0d618a0f scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x0d779926 filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x0d971587 pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0x0daa502b mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x0daf9347 blk_queue_dma_drain -EXPORT_SYMBOL_GPL vmlinux 0x0dd7bd27 crypto_init_ahash_spawn -EXPORT_SYMBOL_GPL vmlinux 0x0dd94566 ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0de12793 blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0de36b3e cpsw_ale_create -EXPORT_SYMBOL_GPL vmlinux 0x0dfd239e ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x0e430138 ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0x0e877c88 vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x0e8a574a cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x0ea6267f irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x0ebb90c2 snd_soc_bytes_get -EXPORT_SYMBOL_GPL vmlinux 0x0f188d29 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x0f1adbc6 blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x0f2430c1 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x0f289ac1 look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0x0f2bb7fd snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x0f43382f rtc_irq_set_state -EXPORT_SYMBOL_GPL vmlinux 0x0f442609 fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0x0f55d9f6 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0x0f654272 tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x0f6b7d19 pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0x0f6c4d5b scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0x0f75d23e __mmu_notifier_invalidate_range_start -EXPORT_SYMBOL_GPL vmlinux 0x0f782a20 ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x0f90983f devm_clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0f964257 amba_apb_device_add_res -EXPORT_SYMBOL_GPL vmlinux 0x0fa1eee0 pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x0ff9af09 cpdma_ctlr_int_ctrl -EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x1016df0e snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL vmlinux 0x101cc910 cpdma_ctlr_create -EXPORT_SYMBOL_GPL vmlinux 0x10354137 regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0x1035b067 iommu_domain_window_enable -EXPORT_SYMBOL_GPL vmlinux 0x104fc1cc spi_master_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1057daa9 crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x106f9c51 cpufreq_frequency_table_cpuinfo -EXPORT_SYMBOL_GPL vmlinux 0x1073f2d6 register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x109cac3c spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0x10a7a76e ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0x10ae23fb pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0x10b15e52 pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0x10df600e of_css -EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x11025677 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0x1102609b snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x1143656a snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL vmlinux 0x1146dc43 of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x11710484 dev_pm_opp_remove -EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0x11764ab2 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x118b7f4d usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0x11921fe4 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x11b3ebaf ata_eh_qc_retry -EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0x11d78a08 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0x11fa35f4 usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x120830c6 console_drivers -EXPORT_SYMBOL_GPL vmlinux 0x1219e5c4 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x122f8873 pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0x1238627b pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x12407aae subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x125d89cb usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x12914d62 xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x12d46e45 snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x13036bc2 tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x1338b824 transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x133dc4d6 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x134246da __ablkcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x1344ac3f usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1363e3f9 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0x1366b80f pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x13693117 mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0x1373a10c list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x138034b7 regmap_read -EXPORT_SYMBOL_GPL vmlinux 0x1381d4f3 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x13979951 devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0x13984ba7 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x13a4953f device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen -EXPORT_SYMBOL_GPL vmlinux 0x13b89dee pinctrl_request_gpio -EXPORT_SYMBOL_GPL vmlinux 0x13c176cd usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0x1420a333 pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0x142526cf sm501_modify_reg -EXPORT_SYMBOL_GPL vmlinux 0x142f240e pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x1433ef06 regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x1449b39e fuse_get_req -EXPORT_SYMBOL_GPL vmlinux 0x14505f6e request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0x14862649 snd_soc_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1487b96d pinctrl_force_default -EXPORT_SYMBOL_GPL vmlinux 0x149d1b00 regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x14a8bcb2 wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x14a98a21 cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x14c732fc __kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0x14cde349 __class_register -EXPORT_SYMBOL_GPL vmlinux 0x14ddd613 gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0x14ef7136 __ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0x15047db2 i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0x1510c9e3 pinctrl_dev_get_devname -EXPORT_SYMBOL_GPL vmlinux 0x1510d7d5 tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0x1524426d relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0x15353f78 user_read -EXPORT_SYMBOL_GPL vmlinux 0x153a9288 blkg_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x153ef402 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0x1566e0ac snd_soc_register_codec -EXPORT_SYMBOL_GPL vmlinux 0x157336d4 of_clk_src_simple_get -EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1594511b ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x15a70951 powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started -EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x163a9607 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0x163fa874 devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0x1644e175 gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x164ff07b fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0x16502d9c rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress -EXPORT_SYMBOL_GPL vmlinux 0x1667f625 wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0x16702f83 pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0x168aeb55 snd_soc_unregister_codec -EXPORT_SYMBOL_GPL vmlinux 0x168fe0ab devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0x16af16af mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0x16d55cf8 pin_is_valid -EXPORT_SYMBOL_GPL vmlinux 0x16fb5921 register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x1717a05d omap_get_plat_info -EXPORT_SYMBOL_GPL vmlinux 0x1717f2ca unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0x171e3d7b ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x172ed19c ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x17584d4e pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0x1766aacf omap_dm_timer_set_source -EXPORT_SYMBOL_GPL vmlinux 0x176a48a9 tps65912_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x178557ac queue_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0x1789ea16 ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0x178e92a4 screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0x17b17f9e watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x17b9b079 virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0x17d8f757 dm_disk -EXPORT_SYMBOL_GPL vmlinux 0x17e9fad6 ahci_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x180ae539 mtd_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x18540ea9 devm_spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert -EXPORT_SYMBOL_GPL vmlinux 0x187a5ea5 event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0x1897e478 usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0x18a1cd08 ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x19098d24 sg_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x191d6b18 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x192441c6 hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x1927a4c9 gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0x194c586b omap_dm_timer_write_counter -EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x1950b6a7 subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0x1985a698 regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0x198b6ba7 ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0x1990f8ff pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x19928635 mv_mbus_dram_info -EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19b2a03a __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x19bda1fd tps65217_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x19c24077 mtd_point -EXPORT_SYMBOL_GPL vmlinux 0x19d7ce30 dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x19ec87ba get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x19f1ff34 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x19f7977d phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0x1a134ad6 devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x1a1c4082 mod_delayed_work_on -EXPORT_SYMBOL_GPL vmlinux 0x1a24d614 fsnotify -EXPORT_SYMBOL_GPL vmlinux 0x1a961e02 pl08x_filter_id -EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table -EXPORT_SYMBOL_GPL vmlinux 0x1a9e83bc snd_soc_debugfs_root -EXPORT_SYMBOL_GPL vmlinux 0x1aabe552 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing -EXPORT_SYMBOL_GPL vmlinux 0x1ad3eabc da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x1add1486 regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0x1ade903b of_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x1ae76bea blkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x1aeb56c9 scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0x1b170e98 dev_pm_opp_enable -EXPORT_SYMBOL_GPL vmlinux 0x1b2f9016 snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL vmlinux 0x1b325515 desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0x1b3261e0 klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read -EXPORT_SYMBOL_GPL vmlinux 0x1b73358e crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return -EXPORT_SYMBOL_GPL vmlinux 0x1bb5fc26 atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x1bc7a9ef xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0x1bd21f49 mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0x1bda79c6 device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x1be009f4 usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x1be8f6cf to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0x1bec1aac dma_buf_kmap -EXPORT_SYMBOL_GPL vmlinux 0x1bec83f3 usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x1bf68b09 snd_soc_of_parse_daifmt -EXPORT_SYMBOL_GPL vmlinux 0x1bf8e229 crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0x1c278d94 ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0x1c536625 page_cache_async_readahead -EXPORT_SYMBOL_GPL vmlinux 0x1c5486b6 invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c587983 devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase -EXPORT_SYMBOL_GPL vmlinux 0x1c6b7150 pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x1c716881 inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 -EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1c9f70b7 ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0x1cc47132 tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x1ce74e82 regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x1d09c80d pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0x1d0b3a21 spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0x1d0f9e7b rhashtable_walk_init -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings -EXPORT_SYMBOL_GPL vmlinux 0x1d6c996c phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x1d7cb586 clk_register_fixed_rate_with_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x1d9fcad8 omapdss_of_find_source_for_first_ep -EXPORT_SYMBOL_GPL vmlinux 0x1dae4357 preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1dccb045 snd_soc_bytes_info -EXPORT_SYMBOL_GPL vmlinux 0x1dcd7742 devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x1dd400c8 ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x1de83f77 tps65217_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x1dfb5cf2 dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0x1e02bd3a dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0x1e1dd066 wbc_account_io -EXPORT_SYMBOL_GPL vmlinux 0x1e4acae4 of_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1e66e802 swiotlb_map_page -EXPORT_SYMBOL_GPL vmlinux 0x1e6a8f48 serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e7d6157 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x1e7e547c crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0x1e80aaa2 ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1e891477 dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0x1e8e20c5 skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1e90c35e scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0x1e90d576 __mtd_next_device -EXPORT_SYMBOL_GPL vmlinux 0x1ea1ddf7 class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x1ea7f49d usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL vmlinux 0x1eb12237 rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x1eb8027b irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ec989aa usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0x1eddfdff kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x1ef3b59a kvm_write_guest -EXPORT_SYMBOL_GPL vmlinux 0x1ef44bb3 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0x1f0f1c40 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0x1f21785a cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0x1f3ba563 usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0x1f6806f9 dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x1f774f46 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x1f832206 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8b1de3 of_fdt_unflatten_tree -EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x1f989617 dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL vmlinux 0x1fa72589 phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0x1fac2c87 tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0x1fece727 snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL vmlinux 0x1ff6c8b8 perf_trace_buf_prepare -EXPORT_SYMBOL_GPL vmlinux 0x2005976b ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x20080b53 vchan_find_desc -EXPORT_SYMBOL_GPL vmlinux 0x201d8ea3 encode_rs8 -EXPORT_SYMBOL_GPL vmlinux 0x202fd314 fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x20681abf regmap_update_bits_check -EXPORT_SYMBOL_GPL vmlinux 0x206ed846 platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0x207380f9 cci_ace_get_port -EXPORT_SYMBOL_GPL vmlinux 0x2075781d blk_mq_register_disk -EXPORT_SYMBOL_GPL vmlinux 0x2097cb62 serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0x20a771f5 extcon_set_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0x20b0a759 rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x20de5193 kvm_disable_largepages -EXPORT_SYMBOL_GPL vmlinux 0x213bf568 skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x216700db input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0x21705bf5 ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x2182d647 led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0x2191db7e snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL vmlinux 0x2198ebac bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0x21a21890 sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21febf58 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0x220f2afd device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x22147683 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0x226a674d atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 -EXPORT_SYMBOL_GPL vmlinux 0x22a89b8e __class_create -EXPORT_SYMBOL_GPL vmlinux 0x22df50f1 wm5110_patch -EXPORT_SYMBOL_GPL vmlinux 0x22eed644 snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL vmlinux 0x22f1ef84 netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0x230de898 usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0x23129e3f omap_dm_timer_set_match -EXPORT_SYMBOL_GPL vmlinux 0x23153f0e ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x231d70fc encode_bch -EXPORT_SYMBOL_GPL vmlinux 0x231da004 max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x2362ea07 zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0x23729e64 mpc8xxx_spi_rx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x238222c9 ahci_platform_suspend -EXPORT_SYMBOL_GPL vmlinux 0x23861419 regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x238aef0d add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x2395faab ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x23a8bc13 gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x23abd4e8 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x23c69dfb ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x23cc6511 blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x23d4b945 debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0x23d6e367 __blk_put_request -EXPORT_SYMBOL_GPL vmlinux 0x23e0c4c0 regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x2406d59e usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x2413cb29 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x241918f0 debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0x2441a435 serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0x244c1899 tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0x24584f86 user_update -EXPORT_SYMBOL_GPL vmlinux 0x2464a8f5 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0x246c85d0 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2492fa6e ahci_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x249308dc register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x249bf56c snd_soc_add_card_controls -EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key -EXPORT_SYMBOL_GPL vmlinux 0x24af4e09 omap_dm_timer_write_status -EXPORT_SYMBOL_GPL vmlinux 0x24c04d89 stmpe_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset -EXPORT_SYMBOL_GPL vmlinux 0x24f6606c dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x24f80317 mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x25006e02 seq_open_net -EXPORT_SYMBOL_GPL vmlinux 0x25030f33 ablkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x25302a82 snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL vmlinux 0x25482ac8 wm5110_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x2550d57b sm501_unit_power -EXPORT_SYMBOL_GPL vmlinux 0x255681ba dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x2565ad62 snd_soc_get_strobe -EXPORT_SYMBOL_GPL vmlinux 0x2576aefd devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0x259462c8 sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x25ba78c9 snd_soc_codec_set_pll -EXPORT_SYMBOL_GPL vmlinux 0x25c03bcd md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0x25c3f200 usb_gadget_map_request -EXPORT_SYMBOL_GPL vmlinux 0x25c9fccc ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x25e4fa8c btree_remove -EXPORT_SYMBOL_GPL vmlinux 0x25f2a1ef kvm_get_dirty_log_protect -EXPORT_SYMBOL_GPL vmlinux 0x26018911 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0x26085a7e pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x261006c7 regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0x261098a6 of_display_timings_exist -EXPORT_SYMBOL_GPL vmlinux 0x26138249 omap_dm_timer_trigger -EXPORT_SYMBOL_GPL vmlinux 0x2629580e pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x262dc844 find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock -EXPORT_SYMBOL_GPL vmlinux 0x262f63a5 __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0x26355ff1 blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x2658e485 md_stop -EXPORT_SYMBOL_GPL vmlinux 0x265af428 phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x266b789b gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x266f7615 snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL vmlinux 0x267b4f32 irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0x2697b17e devm_led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0x26a75796 devm_mdiobus_alloc_size -EXPORT_SYMBOL_GPL vmlinux 0x26adb815 thread_notify_head -EXPORT_SYMBOL_GPL vmlinux 0x26b2626d xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x26c133dc pinconf_generic_dt_node_to_map -EXPORT_SYMBOL_GPL vmlinux 0x26c547c0 bL_switcher_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x26c8b665 cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26e02ba4 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL vmlinux 0x2745a3f9 register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x275bbaf2 pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0x2776b100 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x278023f6 of_irq_parse_pci -EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0x27965abc mtd_erase_callback -EXPORT_SYMBOL_GPL vmlinux 0x27a3cd98 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x27ac6fa8 dio_end_io -EXPORT_SYMBOL_GPL vmlinux 0x27b3aaca irq_map_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info -EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x27fed85b ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0x28127d43 device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0x28289090 max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x28289784 uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x2868a361 ahci_platform_resume_host -EXPORT_SYMBOL_GPL vmlinux 0x28722874 dev_pm_opp_free_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x2885e47c blk_add_request_payload -EXPORT_SYMBOL_GPL vmlinux 0x2887afa2 of_clk_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x28d5eb1a dma_buf_kunmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0x28d947bd kvm_get_dirty_log -EXPORT_SYMBOL_GPL vmlinux 0x28dc0632 regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x28fd1bca snd_soc_dapm_sync -EXPORT_SYMBOL_GPL vmlinux 0x28ff499c crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0x290d47d4 scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x290f435e __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0x2913edc7 __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x2921cb1a pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0x2980da40 crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0x298f1232 __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0x29a50286 tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29f6e37b rhashtable_insert_rehash -EXPORT_SYMBOL_GPL vmlinux 0x29f7e169 snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL vmlinux 0x29fa419f decode_rs8 -EXPORT_SYMBOL_GPL vmlinux 0x2a030f5b ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x2a05e69a vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0x2a0a16c3 clk_gpio_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x2a0e5478 regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x2a1959ed __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x2a1c2730 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0x2a1e7556 invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0x2a4187f2 phy_init -EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2a816a05 dev_pm_opp_of_cpumask_add_table -EXPORT_SYMBOL_GPL vmlinux 0x2aae43f7 __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x2ab9520a omap_dm_timer_get_irq -EXPORT_SYMBOL_GPL vmlinux 0x2abdcb85 pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0x2ac6edba kvm_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x2ad9d326 md_ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x2adfc714 page_cache_sync_readahead -EXPORT_SYMBOL_GPL vmlinux 0x2ae34b4b list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x2af2e4b1 component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0x2af53110 ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0x2b08e881 bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0x2b106d72 rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0x2b14bb60 usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0x2b28beb4 scsi_internal_device_block -EXPORT_SYMBOL_GPL vmlinux 0x2b2ca6c8 of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x2b2ea84c clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x2b3345c1 snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2b5c59af apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0x2b8a132b fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0x2b98ecba devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x2bab0ccf __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x2babe81f __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0x2bade703 gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0x2bcf679a regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x2bd045df regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0x2bdf3d0e ata_base_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x2bee957f sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc -EXPORT_SYMBOL_GPL vmlinux 0x2c06c723 unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x2c07e676 pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c3f29a8 __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0x2c6194a3 pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0x2c76b6f9 crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2caebccd platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0x2cdb751f crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq -EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0x2cead0e6 device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x2cee5f19 gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x2cf3e12b tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x2d14d93f ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d1c092c bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0x2d1d6146 pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x2d34cf32 pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d459322 dev_pm_opp_add -EXPORT_SYMBOL_GPL vmlinux 0x2d49649f devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers -EXPORT_SYMBOL_GPL vmlinux 0x2d8f772e devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x2dad9b05 register_jprobes -EXPORT_SYMBOL_GPL vmlinux 0x2db898ba wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x2dcc544a sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x2dd1d32c ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0x2dd3a384 mtd_del_partition -EXPORT_SYMBOL_GPL vmlinux 0x2de681b6 system_verify_data -EXPORT_SYMBOL_GPL vmlinux 0x2defa1db rt_mutex_timed_lock -EXPORT_SYMBOL_GPL vmlinux 0x2df7a597 of_pci_find_msi_chip_by_node -EXPORT_SYMBOL_GPL vmlinux 0x2e10b18f virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0x2e1ea43a omap_dm_timer_read_counter -EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e278f88 btree_insert -EXPORT_SYMBOL_GPL vmlinux 0x2e2c0523 snd_soc_register_component -EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2e2f2106 iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x2e34925f trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x2e49da13 pwm_put -EXPORT_SYMBOL_GPL vmlinux 0x2e6588c4 device_init_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x2e6da46e sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0x2e742b00 hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0x2e8134a7 pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0x2e91924c to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0x2e92e93b blk_unprep_request -EXPORT_SYMBOL_GPL vmlinux 0x2e9670c0 pl320_ipc_transmit -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ebfefbf tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x2eca977d device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0x2ed087ed usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0x2ee2c08c max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x2eead55d sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x2ef4d512 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0x2ef6b5bf smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x2efb0cfb regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f1b0e95 crypto_ahash_type -EXPORT_SYMBOL_GPL vmlinux 0x2f28625a snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL vmlinux 0x2f2ab34d sm501_find_clock -EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register -EXPORT_SYMBOL_GPL vmlinux 0x2f59cf73 vchan_tx_submit -EXPORT_SYMBOL_GPL vmlinux 0x2f59fe6d handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x2f90da7e trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0x2fb85805 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x2fc7b541 hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake -EXPORT_SYMBOL_GPL vmlinux 0x2fefffb6 genpd_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0x2ffc8fe9 alloc_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x300d7e57 free_rs -EXPORT_SYMBOL_GPL vmlinux 0x30303ca4 blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0x3055e254 usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x307e4a82 ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x30818be9 register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x3087144b gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0x30a2b5f5 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x30a4d32c pm_complete_with_resume_check -EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x30d1a683 regmap_update_bits_check_async -EXPORT_SYMBOL_GPL vmlinux 0x30d3839f regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x30dee7f6 of_clk_del_provider -EXPORT_SYMBOL_GPL vmlinux 0x30eedaac devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock -EXPORT_SYMBOL_GPL vmlinux 0x310f939b snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x31402020 ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x3145bf2c power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x31468175 bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0x3158bc22 irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x3166c09d sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0x3166fa65 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0x31727f88 pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0x31743b56 pinctrl_remove_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x3183a32b usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x31870ceb crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x318a91cc sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0x319a38bf fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0x31a24f62 crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x31bffa27 elv_register -EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put -EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31cbbd1c pstore_register -EXPORT_SYMBOL_GPL vmlinux 0x31da1966 tps65217_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x31e51def bio_alloc_mddev -EXPORT_SYMBOL_GPL vmlinux 0x31fc665a usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0x3223eff4 nf_unregister_afinfo -EXPORT_SYMBOL_GPL vmlinux 0x3281120a wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update -EXPORT_SYMBOL_GPL vmlinux 0x32924a4d scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x32988497 of_reconfig_get_state_change -EXPORT_SYMBOL_GPL vmlinux 0x32aa958a blk_queue_flush -EXPORT_SYMBOL_GPL vmlinux 0x32b342ae clk_register_gpio_mux -EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec -EXPORT_SYMBOL_GPL vmlinux 0x32c0aa46 regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32cdb60d ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x32ceb3b3 bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x32e09c5f nd_blk_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x3302ef8c ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0x330b89b7 power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0x33115bda ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0x33526530 event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition -EXPORT_SYMBOL_GPL vmlinux 0x33730a7b ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x3391fd7a pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x33a2445b usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0x33bfb9a8 dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0x33ce3d68 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x33d85171 thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0x33e04745 ahci_start_fis_rx -EXPORT_SYMBOL_GPL vmlinux 0x33e30b2b i2c_generic_gpio_recovery -EXPORT_SYMBOL_GPL vmlinux 0x33e5e35a clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0x33e64915 __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x33f166fe snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL vmlinux 0x33fc6ef4 dev_pm_opp_of_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x341643ba omap_dm_timer_modify_idlect_mask -EXPORT_SYMBOL_GPL vmlinux 0x34331d5e nd_fletcher64 -EXPORT_SYMBOL_GPL vmlinux 0x345cb553 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0x347682ce snmp_fold_field64 -EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get -EXPORT_SYMBOL_GPL vmlinux 0x3499f996 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x349d81a4 __put_net -EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x34ed0a04 of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x350e4a88 wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x35150d73 device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched -EXPORT_SYMBOL_GPL vmlinux 0x35586356 kvm_init -EXPORT_SYMBOL_GPL vmlinux 0x355b83d2 devm_mdiobus_free -EXPORT_SYMBOL_GPL vmlinux 0x355c7391 dev_pm_opp_get_max_clock_latency -EXPORT_SYMBOL_GPL vmlinux 0x355cb9e9 inet6_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0x3564ccf9 regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x358c6278 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x35ba0f8e raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0x35c67035 of_usb_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x35d0c16e arizona_set_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x35dcd1f7 trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x3602335c find_module -EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x3622929f iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x36608e34 pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x366f50be get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x36724266 pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x36955db9 skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36a61a92 usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x36b30c3a virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0x36baf170 mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x36d89541 regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x36e1511c ahci_start_engine -EXPORT_SYMBOL_GPL vmlinux 0x3700a989 debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0x37076028 kvm_read_guest -EXPORT_SYMBOL_GPL vmlinux 0x371a9b1e thermal_notify_framework -EXPORT_SYMBOL_GPL vmlinux 0x371dbd7c gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0x374b18e1 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x37508211 pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0x3762cf4f thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x37685c94 ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x37c8c659 usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0x37c96994 snd_soc_read -EXPORT_SYMBOL_GPL vmlinux 0x37ffded5 of_clk_get_parent_name -EXPORT_SYMBOL_GPL vmlinux 0x381b73a2 ahci_init_controller -EXPORT_SYMBOL_GPL vmlinux 0x384a6981 __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy -EXPORT_SYMBOL_GPL vmlinux 0x38675d2e sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0x38688c1c sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0x386b6a44 alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x387c7cd9 kvm_vcpu_uninit -EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x38e177ec usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38f784e2 cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0x3921f1db snd_ac97_reset -EXPORT_SYMBOL_GPL vmlinux 0x395e0bce regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x3971ac6b nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0x397b4719 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x3991d1a8 tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0x39a0489e iommu_domain_get_attr -EXPORT_SYMBOL_GPL vmlinux 0x39b314bc cpsw_ale_del_mcast -EXPORT_SYMBOL_GPL vmlinux 0x39c119a7 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current -EXPORT_SYMBOL_GPL vmlinux 0x39d37c00 snd_ctl_activate_id -EXPORT_SYMBOL_GPL vmlinux 0x39d7d9d5 fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module -EXPORT_SYMBOL_GPL vmlinux 0x39fa9ed4 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x3a13c5e8 da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0x3a372ebc snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL vmlinux 0x3a3d3594 clk_register -EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a722c70 usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3aa946a5 serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x3ab409f2 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3adeb83a tcp_peer_is_proven -EXPORT_SYMBOL_GPL vmlinux 0x3ae1ba32 snd_soc_component_async_complete -EXPORT_SYMBOL_GPL vmlinux 0x3b284dc6 irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x3b28c8a2 mtd_block_isreserved -EXPORT_SYMBOL_GPL vmlinux 0x3b42814f pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0x3b459fdb regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x3b478df2 crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0x3b4c1de5 regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0x3b4fc369 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0x3b547bc9 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x3b54922a sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0x3b5653a8 irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x3b65db4b dapm_clock_event -EXPORT_SYMBOL_GPL vmlinux 0x3b78b28f inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x3b87394b __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x3b8ca8db devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x3baeceaa show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x3bbc816c led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0x3bc6b0ac __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x3bfbf744 ata_eh_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x3c0cf717 fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0x3c10405f pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x3c250376 __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x3c2a488f sdhci_enable_irq_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x3c2a5873 pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0x3c2dee4d snd_soc_register_card -EXPORT_SYMBOL_GPL vmlinux 0x3c56869e bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0x3c770c7a ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x3c831441 arm_check_condition -EXPORT_SYMBOL_GPL vmlinux 0x3c91e872 dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag -EXPORT_SYMBOL_GPL vmlinux 0x3c93ea25 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0x3cb1f7ee cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0x3cbf9524 regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3cd671b5 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL vmlinux 0x3cde98e4 dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0x3cf5dd36 pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x3d00e64c dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL vmlinux 0x3d16f4d0 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x3d1ca8ab fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0x3d2ba538 crypto_register_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d486fd1 ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x3d512b9a blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x3d90ecf5 crypto_init_spawn -EXPORT_SYMBOL_GPL vmlinux 0x3d9c852c bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x3da0cec3 inode_congested -EXPORT_SYMBOL_GPL vmlinux 0x3da37b25 power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0x3dbf82d6 perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match -EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab -EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3dd4d3a7 bprintf -EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3dfc66a8 blk_queue_rq_timed_out -EXPORT_SYMBOL_GPL vmlinux 0x3e0eb5d6 scsi_device_from_queue -EXPORT_SYMBOL_GPL vmlinux 0x3e0f1667 kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0x3e1f72e0 kvm_vcpu_cache -EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x3e2e8d10 wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x3e31d9c3 net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x3e3ddaa2 platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0x3e410620 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x3e4817c1 crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched -EXPORT_SYMBOL_GPL vmlinux 0x3e60a34f devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e9d4a0d sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x3ea2bdfc bpf_prog_realloc -EXPORT_SYMBOL_GPL vmlinux 0x3ea6bce1 debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0x3eb26369 perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0x3f1002ea pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0x3f6602ca sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x3f664fa5 __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0x3f7817c0 tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x3f83e6c2 usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x3f868e19 omap_dm_timer_set_prescaler -EXPORT_SYMBOL_GPL vmlinux 0x3f9c6ec9 crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x3fa5123d regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0x3facfbf6 rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x3feb8aa9 crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3ffae087 snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL vmlinux 0x40128853 ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0x402bbc7a pm_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0x40560e27 dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0x4061be97 __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources -EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x40861a28 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x40905a7a devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x4098be36 wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0x40abfa54 __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x40adde33 snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x40bfae54 of_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x40d48c9e device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x40e2b74c devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x40faf7d6 usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0x41100f21 sm501_misc_control -EXPORT_SYMBOL_GPL vmlinux 0x411d3d86 spi_master_resume -EXPORT_SYMBOL_GPL vmlinux 0x411fc7ec kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0x4124e9d2 ahash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x4128746b stmpe_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x413883f2 clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0x414b9c7a regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x4154d3b9 wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0x4162d05a ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x4163c1aa mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x41682f4b pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x41b5e6d1 of_irq_find_parent -EXPORT_SYMBOL_GPL vmlinux 0x41b9d499 crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0x41c5274c __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x41c94bcd register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x41ca9a17 __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x41cbcb1e usb_del_gadget_udc -EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x41d89bea usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x41db7d64 gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x41f47c5f xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x4211c687 usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0x421478c7 irq_create_strict_mappings -EXPORT_SYMBOL_GPL vmlinux 0x42217ab5 regmap_fields_write -EXPORT_SYMBOL_GPL vmlinux 0x422e2736 kvm_clear_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x4239afe8 regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done -EXPORT_SYMBOL_GPL vmlinux 0x425f7576 sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags -EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x42aaa3dd ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0x42b558d4 debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0x42b6dfc2 mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x42b9a498 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0x42e3c178 ahci_reset_em -EXPORT_SYMBOL_GPL vmlinux 0x42e8be5e bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x42f6088d sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0x4309c4dd balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x43327e78 iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0x4336376e of_console_check -EXPORT_SYMBOL_GPL vmlinux 0x433a5367 device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0x4346ba04 regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x4350e63a ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x436b3c41 ahci_platform_get_resources -EXPORT_SYMBOL_GPL vmlinux 0x437b5b2f set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x43842bce inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0x43903086 exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key -EXPORT_SYMBOL_GPL vmlinux 0x43a77469 spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0x43a8236f pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0x43a91498 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0x43ab3340 spi_setup -EXPORT_SYMBOL_GPL vmlinux 0x43afcc69 regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43b466b0 gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL vmlinux 0x43bf5e27 pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0x43cae50c regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift -EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x43fc6371 bgpio_remove -EXPORT_SYMBOL_GPL vmlinux 0x440cd0d4 percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0x444ad24e devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4450d848 dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x4475c274 scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44bff7b3 netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x44e770d9 of_clk_get_parent_count -EXPORT_SYMBOL_GPL vmlinux 0x44ee2758 fuse_request_send -EXPORT_SYMBOL_GPL vmlinux 0x44f0d506 led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0x44fecf2d to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0x45070e68 cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0x453c0de8 dummy_con -EXPORT_SYMBOL_GPL vmlinux 0x454d0dac mtd_is_locked -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x45840e30 posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4584c4fb virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0x4586a717 mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0x45ab1b7e snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL vmlinux 0x45b6980b page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0x45ba1367 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x45ef9da1 mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0x45f39301 pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x45f5022f of_pci_msi_chip_remove -EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x46066e5b perf_pmu_name -EXPORT_SYMBOL_GPL vmlinux 0x4614fa4b unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x46166d1a powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0x4629c569 tc3589x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x4641d7e3 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL vmlinux 0x46492394 udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0x4650d9b6 __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0x46595f09 sock_update_netprioidx -EXPORT_SYMBOL_GPL vmlinux 0x46622188 page_endio -EXPORT_SYMBOL_GPL vmlinux 0x466544df spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0x466925d6 device_find_child -EXPORT_SYMBOL_GPL vmlinux 0x466b73a7 srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x466e5342 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x466edaed balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x467d5361 power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x46a32e96 spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0x46d93464 __of_genpd_add_provider -EXPORT_SYMBOL_GPL vmlinux 0x46da956f gfn_to_memslot -EXPORT_SYMBOL_GPL vmlinux 0x46e456d4 dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x470c8ab2 disk_part_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x4719545f spi_async -EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x4731d7e3 pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x476220eb fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0x47676c71 platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0x47682dfa crypto_unregister_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x4776b116 bio_associate_blkcg -EXPORT_SYMBOL_GPL vmlinux 0x477ba8b2 fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47b0d809 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x4801f3ef device_create_vargs -EXPORT_SYMBOL_GPL vmlinux 0x480f63c2 rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4814a62b ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x48158e83 fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0x4818b5ac ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x481b3e7d __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0x4847b8a8 devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x484ce5d9 unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh -EXPORT_SYMBOL_GPL vmlinux 0x4869c9d0 usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0x4871fb7c __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0x487f4407 evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0x488699c9 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0x48a47c78 shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x48be48f2 security_kernel_fw_from_file -EXPORT_SYMBOL_GPL vmlinux 0x48cb013a pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0x48e93fba omap_dm_timer_set_int_enable -EXPORT_SYMBOL_GPL vmlinux 0x48f37188 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x48f7c39d dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0x491ed8af vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x4941bf24 devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0x496ce8a6 fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4978cab3 of_thermal_get_trip_points -EXPORT_SYMBOL_GPL vmlinux 0x497aa719 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0x497c14cc ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x498f3cc4 gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x499cd3d9 ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0x49bfee19 mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49eacb78 omap_dm_timer_set_pwm -EXPORT_SYMBOL_GPL vmlinux 0x49fc7572 sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0x4a04e0a2 sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL vmlinux 0x4a2f965b blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x4a356786 pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x4a40bb8c blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name -EXPORT_SYMBOL_GPL vmlinux 0x4a613d4a udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4a63f3b2 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0x4a69f842 dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0x4a766a80 max_gen_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0x4a7d271b pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x4a7dc00b platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x4a934fc1 power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0x4a94185a pskb_put -EXPORT_SYMBOL_GPL vmlinux 0x4a97e17e phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4a9b6ace snd_soc_unregister_card -EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0x4ab1a16b usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x4abc65c6 ata_do_eh -EXPORT_SYMBOL_GPL vmlinux 0x4ac0e639 pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x4b11e5ec ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0x4b28c6ec omap_dm_timer_request_by_cap -EXPORT_SYMBOL_GPL vmlinux 0x4b41522d tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x4b49d60b sdhci_remove_host -EXPORT_SYMBOL_GPL vmlinux 0x4b5c74f7 cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0x4b7c8e00 cpufreq_frequency_table_target -EXPORT_SYMBOL_GPL vmlinux 0x4b7d200a trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0x4b9108f7 ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0x4b98c891 regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x4b9fe48a map_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x4ba282c1 usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL vmlinux 0x4ba57024 snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL vmlinux 0x4bafcdd8 btree_update -EXPORT_SYMBOL_GPL vmlinux 0x4bb3d63a crypto_init_spawn2 -EXPORT_SYMBOL_GPL vmlinux 0x4bb7b444 gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0x4bb81dbb ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x4bc62472 blkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x4bca1012 regmap_write -EXPORT_SYMBOL_GPL vmlinux 0x4bca6f19 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0x4beae10e device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x4bf949f0 wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0x4bfe693d ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x4c025594 iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x4c079a11 transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x4c1ac1a1 skcipher_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4c26798b cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0x4c3c6376 posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0x4c47ec15 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0x4c4ec507 crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x4c59f6d4 crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4c81dcca pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4c81fefd device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x4c8ca59e regmap_fields_force_write -EXPORT_SYMBOL_GPL vmlinux 0x4c977c73 driver_find -EXPORT_SYMBOL_GPL vmlinux 0x4cbb9a07 sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0x4cbf4089 anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x4cc6f143 soc_ac97_ops -EXPORT_SYMBOL_GPL vmlinux 0x4cd56503 led_init_core -EXPORT_SYMBOL_GPL vmlinux 0x4cdbef96 pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d26cef0 gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x4d35332c dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0x4d358be6 use_mm -EXPORT_SYMBOL_GPL vmlinux 0x4d38f1e0 bL_switcher_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4d39cc44 inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x4d5217be ata_eh_thaw_port -EXPORT_SYMBOL_GPL vmlinux 0x4d5dd62a __get_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x4d76f180 __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0x4d89b46e inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0x4d9287df usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x4d971bea pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0x4d9bb018 clk_register_gpio_gate -EXPORT_SYMBOL_GPL vmlinux 0x4db288f1 fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4dd1be32 da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x4ddbf562 snd_pcm_stream_lock -EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4df87243 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0x4e0a50b8 tps65912_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0x4e1f79e1 fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path -EXPORT_SYMBOL_GPL vmlinux 0x4e27c04a devres_find -EXPORT_SYMBOL_GPL vmlinux 0x4e2c2dd2 pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x4e38afe8 snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL vmlinux 0x4e46e87e relay_reset -EXPORT_SYMBOL_GPL vmlinux 0x4e50fb1b tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0x4e5b3cd2 ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0x4e7538f1 ahci_set_em_messages -EXPORT_SYMBOL_GPL vmlinux 0x4e899dcf i2c_unlock_adapter -EXPORT_SYMBOL_GPL vmlinux 0x4e90e426 pwm_can_sleep -EXPORT_SYMBOL_GPL vmlinux 0x4eaf1ba7 disk_get_part -EXPORT_SYMBOL_GPL vmlinux 0x4eb2cc59 usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x4ebb581e blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x4eddc89e virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4f072d0e dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0x4f074117 iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x4f121745 ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0x4f19302f pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0x4f1d1e0a da903x_read -EXPORT_SYMBOL_GPL vmlinux 0x4f277f94 shmem_add_seals -EXPORT_SYMBOL_GPL vmlinux 0x4f2b56df __module_text_address -EXPORT_SYMBOL_GPL vmlinux 0x4f2c139d each_symbol_section -EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0x4f480057 pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0x4f6463bf is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f91de39 snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fa59b1c crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0x4fad154c regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x50143464 regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x503003d1 __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0x50345ca5 regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0x5079e7bd omap_dm_timer_request -EXPORT_SYMBOL_GPL vmlinux 0x507a4abd nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0x507d42f8 wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5080c352 trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test -EXPORT_SYMBOL_GPL vmlinux 0x50901b22 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0x50912986 register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x509f15d3 devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x50c4da79 snd_card_add_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x50cbd0bb ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50f205a1 usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x50fa9880 kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x510d3b40 led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val -EXPORT_SYMBOL_GPL vmlinux 0x5153c2ef virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0x51540180 sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0x51615c35 nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0x51656403 devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x51826f26 pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0x51855f81 __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x51ab89e5 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0x51b0dc8a skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x51bb789a ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0x51d745a7 ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x51f37e85 cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0x5200c3b4 usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x5205ec94 pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x5208e43b sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x52101b9d cpsw_ale_add_ucast -EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL vmlinux 0x5238f934 device_store_int -EXPORT_SYMBOL_GPL vmlinux 0x524673c2 omapdss_of_get_next_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x5249cf85 sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x526280c7 trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0x528c80e4 __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x52b447b8 napi_hash_del -EXPORT_SYMBOL_GPL vmlinux 0x52cec7cc arizona_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x52d46f12 ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0x52ea5ded modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x52edfb30 pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x530b2d59 of_cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x5313db61 pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x531b2900 devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x534a83bd omap_dm_timer_free -EXPORT_SYMBOL_GPL vmlinux 0x53529e9f power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x5361d901 extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0x53752f59 user_describe -EXPORT_SYMBOL_GPL vmlinux 0x537dfb64 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0x5385a417 pinctrl_utils_dt_free_map -EXPORT_SYMBOL_GPL vmlinux 0x53869f11 srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x539e1066 root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x53be0382 pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x54251abd irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0x542724cd usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x5432f55d usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x543ce17a regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x544aab61 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x54576c31 pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0x545fec86 percpu_ida_for_each_free -EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x54659e2f pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time -EXPORT_SYMBOL_GPL vmlinux 0x547c2568 __cci_control_port_by_device -EXPORT_SYMBOL_GPL vmlinux 0x548d1b54 pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x549f3140 pm_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x54b05cae kvm_release_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x54b9cc10 i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0x54d468f1 pm_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0x54e4ff91 ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x54f9a03d inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5529ef2e snd_soc_of_parse_audio_prefix -EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5555b0c7 pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x556000b5 msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0x5567a8c9 metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x55a27ffb iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0x55ae827b tpm_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x55b6da8f sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL vmlinux 0x55be7ed2 ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x55cd2096 rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0x55d68219 usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x5612e7a7 pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x56261738 syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x564b4aff swiotlb_unmap_page -EXPORT_SYMBOL_GPL vmlinux 0x56569a7d l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen -EXPORT_SYMBOL_GPL vmlinux 0x565de5a2 usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0x56672167 usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL vmlinux 0x56731902 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0x567c5b26 devres_add -EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map -EXPORT_SYMBOL_GPL vmlinux 0x569bc484 pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x56d31820 musb_writel -EXPORT_SYMBOL_GPL vmlinux 0x56d5604c serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up -EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x56f13f19 hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0x57082cbf wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0x575b617f attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0x575ca08c get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x5769b9e8 __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x5777ab92 sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0x578b7781 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0x578edac2 __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57a7bcf8 skcipher_geniv_init -EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags -EXPORT_SYMBOL_GPL vmlinux 0x57cf4bcb __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x57ecb292 sdio_run_irqs -EXPORT_SYMBOL_GPL vmlinux 0x57fe8b37 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x58063ede srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x584ba479 ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x5853e91c inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0x5882a9ab __mmu_notifier_invalidate_range -EXPORT_SYMBOL_GPL vmlinux 0x589919fa scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname -EXPORT_SYMBOL_GPL vmlinux 0x58a27f6d regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x58c4dbe7 gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0x58e303e6 x509_request_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x58e7e230 crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0x58ed0205 pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0x590ab735 platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x59238683 pci_intx_mask_supported -EXPORT_SYMBOL_GPL vmlinux 0x593e5778 dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0x593e8d4e usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0x594cde67 trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0x596ab382 generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0x5997d2e4 kern_mount_data -EXPORT_SYMBOL_GPL vmlinux 0x59aed670 device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x59bc76a3 usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x59bde460 dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0x59c1c30f pci_try_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x59fdfc93 tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0x5a009c03 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x5a078c26 devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x5a521aec gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq -EXPORT_SYMBOL_GPL vmlinux 0x5a7bd420 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a802a53 ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL vmlinux 0x5a8673c5 vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0x5a8f213c cpdma_ctlr_eoi -EXPORT_SYMBOL_GPL vmlinux 0x5ac7ded7 blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0x5acf6567 btree_init -EXPORT_SYMBOL_GPL vmlinux 0x5ad66bd6 dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0x5ae668c7 unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x5ae9b70d dev_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0x5aece601 bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x5af293e2 dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x5afa7f6c of_mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x5b4b49cd usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x5b4b56be unregister_jprobe -EXPORT_SYMBOL_GPL vmlinux 0x5b611070 usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0x5b6362c0 wm8997_patch -EXPORT_SYMBOL_GPL vmlinux 0x5b6ffe52 of_reserved_mem_device_init -EXPORT_SYMBOL_GPL vmlinux 0x5b7308f3 usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0x5b732275 regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0x5b91b16a snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL vmlinux 0x5ba938af fib_select_path -EXPORT_SYMBOL_GPL vmlinux 0x5bad1075 inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5bbbddd2 dev_pm_opp_get_opp_count -EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5bdd57bd __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x5bec23c9 proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0x5c03231a pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0x5c166d44 usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x5c2fe4a5 cpdma_chan_stop -EXPORT_SYMBOL_GPL vmlinux 0x5c369588 raw_seq_open -EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c603676 pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x5c651058 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x5c724709 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x5c84dba6 find_vpid -EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5cb89b6a thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5cba5b11 shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x5cdeb682 devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x5d06a387 shash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x5d0e3213 arm_iommu_release_mapping -EXPORT_SYMBOL_GPL vmlinux 0x5d0ec81d usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x5d0fac13 md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user -EXPORT_SYMBOL_GPL vmlinux 0x5d153a7a hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0x5d294294 fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x5d30525d devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x5d3db9a9 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x5d433a37 crypto_alloc_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x5d582a5d crypto_lookup_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x5d6d72b9 irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0x5d6fafb8 ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x5d81e8d3 ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0x5d8be662 usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5db12537 rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0x5de2d2e2 device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0x5deea921 crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0x5dfb25c9 regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x5e01ea04 mnt_clone_write -EXPORT_SYMBOL_GPL vmlinux 0x5e06525f metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x5e2ce14f crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0x5e45d198 unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0x5e4894d4 edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl -EXPORT_SYMBOL_GPL vmlinux 0x5e774786 usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0x5e80e586 sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x5ebc3f72 sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0x5ee08939 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0x5ef72e33 register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x5efe4cc6 dev_pm_opp_init_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x5f0e7dd4 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0x5f1656e1 __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x5f2c64c8 of_pci_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0x5f3a5514 of_dma_get_range -EXPORT_SYMBOL_GPL vmlinux 0x5f3bd115 __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x5f466090 disk_part_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x5f46f166 snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5f615846 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x5f7fb048 __sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x5fade359 snd_soc_unregister_component -EXPORT_SYMBOL_GPL vmlinux 0x5fb7b659 snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL vmlinux 0x5fc028c0 led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0x5fc21f47 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x5fc2bef1 devm_regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5fc61a3a posix_timer_event -EXPORT_SYMBOL_GPL vmlinux 0x5ff53549 ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x5ffb8f79 spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0x600503d8 devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x6009d678 tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x6028b890 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x6035b78e fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush -EXPORT_SYMBOL_GPL vmlinux 0x60682e3d xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0x6075d0c7 omap_tll_init -EXPORT_SYMBOL_GPL vmlinux 0x607bd17d scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60a86817 regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x60a8d7f4 kvm_read_guest_atomic -EXPORT_SYMBOL_GPL vmlinux 0x60d3b8ec snd_device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq -EXPORT_SYMBOL_GPL vmlinux 0x60fa8d2c cpsw_ale_control_set -EXPORT_SYMBOL_GPL vmlinux 0x610b0789 public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0x61452225 snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL vmlinux 0x61602d5f tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x61814acc spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x618968c4 extcon_get_cable_state -EXPORT_SYMBOL_GPL vmlinux 0x61a1af9b crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x61a40dc3 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x61a9ba89 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x61ae574a max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0x61d8db66 of_get_fb_videomode -EXPORT_SYMBOL_GPL vmlinux 0x62058e2d of_get_nand_bus_width -EXPORT_SYMBOL_GPL vmlinux 0x62080f84 gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x620a4108 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL vmlinux 0x6210e8ac ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x622ded01 __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0x623db8de relay_close -EXPORT_SYMBOL_GPL vmlinux 0x6252fddc omap_dm_timer_get_fclk -EXPORT_SYMBOL_GPL vmlinux 0x62b0fe1d serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0x62b9d3d1 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0x62c5c2a4 pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0x62c8226e attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0x62fc74b4 mtd_lock -EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x631f2cfa ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0x632e35a7 snd_soc_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x6379bfdf usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x63802466 ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0x6399091d ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0x63a49542 of_platform_default_populate -EXPORT_SYMBOL_GPL vmlinux 0x63b9e6b7 l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0x63c9a3b9 shash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x63de7441 regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0x63eb74ad usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0x640a9c41 pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x641232f0 crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0x642ac632 crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0x643b1039 blkcipher_aead_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched -EXPORT_SYMBOL_GPL vmlinux 0x6461b65c tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0x646bdf30 of_dma_xlate_by_chan_id -EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6478e7fc snd_soc_platform_trigger -EXPORT_SYMBOL_GPL vmlinux 0x648db9ed bsg_request_fn -EXPORT_SYMBOL_GPL vmlinux 0x648f1792 dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL vmlinux 0x6498685a tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x64afb400 of_regulator_match -EXPORT_SYMBOL_GPL vmlinux 0x64bc04b1 gfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0x64be8fff virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x64ccff37 devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x64d23e37 cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x64da243b usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0x64e4b27c sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x64f1816a regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x651d1461 blk_mq_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x6528f044 serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x654076ce regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x65427d72 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x65537437 freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x655fcb8c icst_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x6567fd71 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0x658c7229 dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0x65a79cb8 kvm_vcpu_block -EXPORT_SYMBOL_GPL vmlinux 0x65adbe1a shmem_get_seals -EXPORT_SYMBOL_GPL vmlinux 0x65b17a0d pm_genpd_syscore_poweron -EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65e670d5 set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x65f6c9a4 dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x65fec26d ip_tunnel_get_stats64 -EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x664b3cbe device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x66686986 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x6668dd1e of_pci_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x6670eb84 wm5110_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x669da1fd kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL vmlinux 0x66c6b3fe tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x66ce752e ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66e96085 swiotlb_tbl_sync_single -EXPORT_SYMBOL_GPL vmlinux 0x66f4e9ab arizona_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x6704f1af device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x670683c4 usb_udc_vbus_handler -EXPORT_SYMBOL_GPL vmlinux 0x6716fb40 gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x671fa490 bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0x67212178 unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x673c43b1 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6742788c subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy -EXPORT_SYMBOL_GPL vmlinux 0x67785091 regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x678529c1 snd_soc_dapm_free -EXPORT_SYMBOL_GPL vmlinux 0x67860ee5 dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0x6788f958 extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x678b2ea8 crypto_alloc_instance2 -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x67a19fbf regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x67a557c5 sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0x67a9b656 skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0x67acd368 wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x67c1704b pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x67ce88c3 blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x67f4d698 pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0x6828d577 sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0x687c922d amba_ahb_device_add -EXPORT_SYMBOL_GPL vmlinux 0x68a5ba6a snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL vmlinux 0x68d87170 regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x68e47b2c cpdma_ctlr_destroy -EXPORT_SYMBOL_GPL vmlinux 0x68ea5486 snd_soc_bytes_put -EXPORT_SYMBOL_GPL vmlinux 0x691c63e3 devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0x691f36a8 cpsw_ale_del_ucast -EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0x694be42a usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0x69596558 crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x6970d724 napi_by_id -EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0x699393d0 __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0x69a85d2a get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x69c0f53b tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x69ca011e serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0x69e2e5a1 of_pci_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0x69f792b8 of_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x69ff6809 uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a52f711 iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x6adda79b bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0x6af56757 da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x6b1f8c71 snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0x6b4f6765 attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x6b708cf6 fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x6b73fd73 nl_table -EXPORT_SYMBOL_GPL vmlinux 0x6b770f49 decode_bch -EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b8621d2 device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0x6b8a6186 inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x6ba37299 rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0x6bac742b __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x6bccd523 gpiochip_remove_pin_ranges -EXPORT_SYMBOL_GPL vmlinux 0x6bd19361 bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0x6bf96a69 usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x6c02c8a4 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x6c047140 pm_genpd_syscore_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x6c10c9db trace_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0x6c1e8ce4 amba_ahb_device_add_res -EXPORT_SYMBOL_GPL vmlinux 0x6c209eab __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0x6c26b848 power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0x6c380700 regmap_update_bits_async -EXPORT_SYMBOL_GPL vmlinux 0x6c438efd ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0x6c44a90a blkdev_write_iter -EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c51dd48 cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x6c522d0f mtd_unpoint -EXPORT_SYMBOL_GPL vmlinux 0x6c5f1bd8 hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x6c62d293 snd_soc_resume -EXPORT_SYMBOL_GPL vmlinux 0x6c76f04b gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x6c7994e9 phy_create -EXPORT_SYMBOL_GPL vmlinux 0x6c839fc8 register_mtd_blktrans -EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions -EXPORT_SYMBOL_GPL vmlinux 0x6c913050 preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6ca6103c reservation_object_get_fences_rcu -EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq -EXPORT_SYMBOL_GPL vmlinux 0x6cbdd8ec led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0x6cca1727 blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0x6cdbd0b0 fuse_request_send_background -EXPORT_SYMBOL_GPL vmlinux 0x6ce41392 scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0x6d1135fd tpm2_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x6d2af283 fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d424356 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x6d4c637a debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x6d4e0b3c power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x6d5d1456 __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x6d80e8fc omap_dm_timer_read_status -EXPORT_SYMBOL_GPL vmlinux 0x6d865498 scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0x6d92e0b4 smpboot_update_cpumask_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x6d9d2fe1 inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x6da9e0a5 bgpio_init -EXPORT_SYMBOL_GPL vmlinux 0x6ddefc1b netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy -EXPORT_SYMBOL_GPL vmlinux 0x6e144d4c pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x6e363711 unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x6e3b2de0 ahci_platform_enable_resources -EXPORT_SYMBOL_GPL vmlinux 0x6e51afc8 percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x6e5d7152 regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0x6e5e0932 stmpe_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x6e7909f2 ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6e8bd37c snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL vmlinux 0x6e8ed364 snd_soc_get_volsw -EXPORT_SYMBOL_GPL vmlinux 0x6e91dd5c dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x6e95b433 ahci_platform_resume -EXPORT_SYMBOL_GPL vmlinux 0x6e961b24 of_usb_host_tpl_support -EXPORT_SYMBOL_GPL vmlinux 0x6ea3fa94 pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x6ece11e1 ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6ed4620c fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0x6ee8e119 gadget_find_ep_by_name -EXPORT_SYMBOL_GPL vmlinux 0x6eec18f6 of_irq_to_resource_table -EXPORT_SYMBOL_GPL vmlinux 0x6eedecf3 irq_create_mapping -EXPORT_SYMBOL_GPL vmlinux 0x6f00d3e6 unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x6f07a716 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x6f0840d2 crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x6f154795 subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0x6f1e3e98 wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x6f1e51bc scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x6f2b4af7 irq_find_mapping -EXPORT_SYMBOL_GPL vmlinux 0x6f33fe89 free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x6f3b4bb8 sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0x6f5a2634 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x6f5c638f kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0x6f6d4396 mtd_add_partition -EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto -EXPORT_SYMBOL_GPL vmlinux 0x6f9b00b8 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL vmlinux 0x6fa2a3ab sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0x6fbb3bd9 init_rs_non_canonical -EXPORT_SYMBOL_GPL vmlinux 0x6fd95d9c posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0x6fdbd09f devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x7000d6ca i2c_slave_register -EXPORT_SYMBOL_GPL vmlinux 0x70012b3f __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0x700e5688 blk_queue_flush_queueable -EXPORT_SYMBOL_GPL vmlinux 0x70151900 dbs_check_cpu -EXPORT_SYMBOL_GPL vmlinux 0x702c861b usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x7078ae91 device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0x707e165c pci_cleanup_aer_uncorrect_error_status -EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0x70938d4e ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x70ad4acb tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x70afc307 scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x70bdad83 __mmu_notifier_invalidate_range_end -EXPORT_SYMBOL_GPL vmlinux 0x70c3bb19 dm_get_table_device -EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated -EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70e103fe kick_process -EXPORT_SYMBOL_GPL vmlinux 0x71008581 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x712a8958 pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0x712dcdb0 fuse_get_req_for_background -EXPORT_SYMBOL_GPL vmlinux 0x71361150 tps65912_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x71363f5c clk_debugfs_add_file -EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x71728f22 of_dma_is_coherent -EXPORT_SYMBOL_GPL vmlinux 0x7185891d arizona_clk32k_disable -EXPORT_SYMBOL_GPL vmlinux 0x7185e6c9 mtd_read_oob -EXPORT_SYMBOL_GPL vmlinux 0x7191fdad regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71c89fab unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x71ca7153 extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab -EXPORT_SYMBOL_GPL vmlinux 0x71e188f8 class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71f4fda9 powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0x71f8947e cpsw_ale_dump -EXPORT_SYMBOL_GPL vmlinux 0x7220e2e7 tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x72234dd6 musb_readw -EXPORT_SYMBOL_GPL vmlinux 0x723fe396 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x724b1f37 cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x72515d5a snprint_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x72540c25 lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0x725e3ea8 bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0x72635aeb ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x7279158e __pci_complete_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x728864b3 adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0x728bb648 irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0x7291019b __cci_control_port_by_index -EXPORT_SYMBOL_GPL vmlinux 0x72a1445d __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x72b53a02 omap_dma_filter_fn -EXPORT_SYMBOL_GPL vmlinux 0x72c90843 mtd_read -EXPORT_SYMBOL_GPL vmlinux 0x72cae35b of_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x72d4a115 kobject_move -EXPORT_SYMBOL_GPL vmlinux 0x72e18002 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0x7304ed97 mmput -EXPORT_SYMBOL_GPL vmlinux 0x7308ffc7 __netlink_alloc_skb -EXPORT_SYMBOL_GPL vmlinux 0x730bd0c7 asic3_write_register -EXPORT_SYMBOL_GPL vmlinux 0x731eeaee ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x73219f8a mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x732a2380 reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x73616454 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x737541bc devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x738a4192 __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x738c3276 class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73ac5849 sdhci_resume_host -EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0x73bbd7a1 omap_iommu_save_ctx -EXPORT_SYMBOL_GPL vmlinux 0x73c0a5c5 handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x73c59b88 gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x73c5b99e nand_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0x73c6dc22 of_clk_src_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x73eeac03 usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x742c457a da903x_update -EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x743f3739 spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x74747ee0 __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x7476a145 blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0x74919cc6 clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x74a68c6a snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL vmlinux 0x74b04515 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74ba0404 ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74cc5a61 led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x74cd53a7 con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0x751fdd9f usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x753f274a kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL vmlinux 0x754371d0 usb_string -EXPORT_SYMBOL_GPL vmlinux 0x75822104 get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0x75842637 snd_soc_component_test_bits -EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only -EXPORT_SYMBOL_GPL vmlinux 0x75937c00 crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x7594518d trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x75a631e5 __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x75a8d2bb tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0x75b0c25e blk_queue_bypass_start -EXPORT_SYMBOL_GPL vmlinux 0x75b9b2f6 rtc_irq_register -EXPORT_SYMBOL_GPL vmlinux 0x75bca5e3 gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x75cbd85d splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x75ffb402 __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x760113d6 virtqueue_get_used -EXPORT_SYMBOL_GPL vmlinux 0x761193f2 devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x7618e6a8 regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x761e0aca btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0x7630dd96 omap_dm_timer_set_load_start -EXPORT_SYMBOL_GPL vmlinux 0x76345b40 crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0x764928a2 cpdma_chan_create -EXPORT_SYMBOL_GPL vmlinux 0x765596ea sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0x7657d843 ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x7660d89f pci_reset_bridge_secondary_bus -EXPORT_SYMBOL_GPL vmlinux 0x7671f23a regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x768a3392 of_get_pci_domain_nr -EXPORT_SYMBOL_GPL vmlinux 0x76a81764 mtd_writev -EXPORT_SYMBOL_GPL vmlinux 0x76b75f26 __securityfs_setup_d_inode -EXPORT_SYMBOL_GPL vmlinux 0x76bd0b51 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0x76bd3278 alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x76be6937 snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x76e5403d nf_queue_entry_release_refs -EXPORT_SYMBOL_GPL vmlinux 0x770cf981 tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x7716723b sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0x771c520b vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x772a937b snd_soc_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x774ae55f regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x776c1ff4 rq_flush_dcache_pages -EXPORT_SYMBOL_GPL vmlinux 0x7777aec7 anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x77805ebb power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0x77a41c12 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77b49d59 wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0x77cc685f pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x77e0d6e2 ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0x7808c444 pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0x782938b0 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x7846540a regmap_field_write -EXPORT_SYMBOL_GPL vmlinux 0x784ec71b rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x7858953a regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x787ae079 ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0x788ad990 sdhci_pltfm_resume -EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0x78b38f4d trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x78bfdfbc devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0x78e06e5b of_prop_next_u32 -EXPORT_SYMBOL_GPL vmlinux 0x78f41101 kvm_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x78f6116b virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0x78f7a638 regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x78fa74e4 fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0x7941bab2 cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off -EXPORT_SYMBOL_GPL vmlinux 0x794a7b87 of_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x795595f4 cpsw_ale_del_vlan -EXPORT_SYMBOL_GPL vmlinux 0x79619eae __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x799b4855 usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0x79ac221a snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL vmlinux 0x79b364a4 cpsw_ale_control_get -EXPORT_SYMBOL_GPL vmlinux 0x79b759d1 kvm_clear_guest -EXPORT_SYMBOL_GPL vmlinux 0x79de96ee of_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79f659ac __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x79f9f698 ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x7a689655 gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0x7a7b35b8 crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x7a8074ca pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0x7a8a4726 tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0x7a99b2f3 dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0x7a9f26f1 get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0x7aa59966 inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0x7aa64803 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL vmlinux 0x7aaf71b3 pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read -EXPORT_SYMBOL_GPL vmlinux 0x7ab404b3 scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0x7abecc25 usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0x7ac1b18e ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x7afb67eb ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0x7b025314 platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set -EXPORT_SYMBOL_GPL vmlinux 0x7b226ec2 dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x7b32a7ed ahci_stop_engine -EXPORT_SYMBOL_GPL vmlinux 0x7b341496 blk_queue_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x7b402e71 devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x7b475251 pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x7b6230aa del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL vmlinux 0x7b7078d9 usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0x7bbf5ec7 of_devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x7bfd5f12 debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0x7c1ced26 crypto_create_tfm -EXPORT_SYMBOL_GPL vmlinux 0x7c37d3b7 mtd_is_partition -EXPORT_SYMBOL_GPL vmlinux 0x7c3e707b snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL vmlinux 0x7c3f8bb1 sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x7c586706 snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL vmlinux 0x7c6a49ce unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x7c981cc2 of_resolve_phandles -EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7c9cca56 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x7cd6abbe regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7cdd06c4 gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cf499ce of_fixed_clk_setup -EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d093d56 rtc_irq_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7d45e7fa sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0x7d536f7b devfreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d776e72 cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0x7d795022 cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0x7d949319 sdhci_set_bus_width -EXPORT_SYMBOL_GPL vmlinux 0x7da80026 device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7db3ff15 devm_regmap_init_vexpress_config -EXPORT_SYMBOL_GPL vmlinux 0x7dbb381b inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x7dbf53c8 of_genpd_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0x7dd430c2 pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x7dd5b030 snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7de3d92b tpm_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x7de950ac fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0x7e0f75d8 blkcipher_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x7e171b4c crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0x7e233ee7 clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x7e2843e5 snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL vmlinux 0x7e3a9f55 snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL vmlinux 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e671dca dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0x7e75b5d5 deregister_mtd_blktrans -EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0x7ea6a79a ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x7ea820f9 clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x7ea880f6 clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x7eb2360e mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0x7ec05505 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x7ed68941 asic3_read_register -EXPORT_SYMBOL_GPL vmlinux 0x7ef5c041 pm_runtime_get_if_in_use -EXPORT_SYMBOL_GPL vmlinux 0x7f0f3c79 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0x7f1873d2 rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x7f19bf9c key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature -EXPORT_SYMBOL_GPL vmlinux 0x7f5563cd md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7fb4bc0f blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x7fbb5711 probes_decode_arm_table -EXPORT_SYMBOL_GPL vmlinux 0x7fbbfdbc clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x7fbe31cf relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7fc59e57 irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0x7fce7c28 rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0x7fd07cc4 snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL vmlinux 0x7ff1f184 usb_gen_phy_init -EXPORT_SYMBOL_GPL vmlinux 0x800d124b wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x8010d2c6 percpu_ida_free -EXPORT_SYMBOL_GPL vmlinux 0x8016e046 dapm_regulator_event -EXPORT_SYMBOL_GPL vmlinux 0x801fb9f8 usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x803c35fc pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0x80513807 snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x80698a68 pci_ioremap_io -EXPORT_SYMBOL_GPL vmlinux 0x807a3fa7 wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x809e3d41 usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0x80b02e45 usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80cbd1cb i2c_slave_unregister -EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x80f8589f trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x81376439 devm_regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0x814fb30e cpsw_ale_add_vlan -EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x8156497e unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x8167ffba crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0x817dccd1 devres_release -EXPORT_SYMBOL_GPL vmlinux 0x8196ad09 regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0x81997ec4 mpc8xxx_spi_rx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0x81acbca7 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0x81f94716 fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0x81f99b76 ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x8207076e usb_phy_generic_register -EXPORT_SYMBOL_GPL vmlinux 0x8223d04e snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL vmlinux 0x822ad4c7 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0x823895d6 stmpe_set_altfunc -EXPORT_SYMBOL_GPL vmlinux 0x82459466 blkg_print_stat_ios_recursive -EXPORT_SYMBOL_GPL vmlinux 0x824dfa31 shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x826621bd regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x826aebbb dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0x826f7fd5 regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x82b285fa srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x82b33376 devm_usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x82d2f4be __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82dadf52 usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0x82dd6e42 hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x82eb57ce gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0x83028298 cpufreq_governor_dbs -EXPORT_SYMBOL_GPL vmlinux 0x830b48e5 unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0x831c874d nvdimm_bus_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x83313602 dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0x8343232a do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x8347e535 nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0x837b1da3 ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0x837ccec5 extcon_get_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0x83840645 usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0x83bf0f25 init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0x83f9548f dma_buf_kmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0x83fd4cbc snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL vmlinux 0x84042bc8 __blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x840e0d97 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x84412add register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x844712df perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x848bd0fb call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x84ba3feb get_mtd_device -EXPORT_SYMBOL_GPL vmlinux 0x84d98f0b netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0x84db8d35 arm_iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read -EXPORT_SYMBOL_GPL vmlinux 0x852e2174 scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0x85351eec xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0x855cc48e __blkdev_driver_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x8565bc03 aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x858737ec fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x85de6975 reservation_object_test_signaled_rcu -EXPORT_SYMBOL_GPL vmlinux 0x85dee474 usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0x860c6e33 usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod -EXPORT_SYMBOL_GPL vmlinux 0x862b9816 cpu_topology -EXPORT_SYMBOL_GPL vmlinux 0x863fdab7 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x8652110e pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x86896313 usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0x86afc572 of_thermal_get_ntrips -EXPORT_SYMBOL_GPL vmlinux 0x86e0a44f usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x86e2817b xhci_run -EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x86f494f6 snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x86fe60e2 i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0x87056d54 phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8717df8b __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x871877a2 rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0x872078cc crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x872e2c6d ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x873c7481 snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error -EXPORT_SYMBOL_GPL vmlinux 0x875472ca platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0x87967752 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0x87a5ca27 dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0x87a74eee blk_mq_free_hctx_request -EXPORT_SYMBOL_GPL vmlinux 0x87bb7e33 devres_get -EXPORT_SYMBOL_GPL vmlinux 0x87bf0091 dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0x87d168e0 regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x87f28275 ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0x87fae600 subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x87fe34c5 pwm_set_polarity -EXPORT_SYMBOL_GPL vmlinux 0x88071cbf device_move -EXPORT_SYMBOL_GPL vmlinux 0x880eb869 mddev_congested -EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0x88136838 wm8997_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x884cb3b2 debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x8853806c skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0x8871be89 cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x888a41b2 regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0x8894a62a snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL vmlinux 0x88a094f9 module_mutex -EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x88c8da9a inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0x88cb2b63 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0x88e829aa usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x88ed9e46 devm_power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x890683b0 sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x89171d9e driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x89270c72 extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x894f24bd tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x895e5b00 usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0x89682da7 __blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0x897ceee1 sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x897daa2a arizona_dev_exit -EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x8a0fb1ea virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0x8a1da485 dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0x8a3283ea fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0x8a3d4f42 swiotlb_tbl_unmap_single -EXPORT_SYMBOL_GPL vmlinux 0x8a470637 validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x8a470fef adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode -EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod -EXPORT_SYMBOL_GPL vmlinux 0x8a5f86ce fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x8a7222ed dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x8a886f8c fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0x8a8996e7 crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0x8a8fe35a __of_genpd_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x8ab3b541 regmap_fields_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8ad82da9 otg_ulpi_create -EXPORT_SYMBOL_GPL vmlinux 0x8adb19ee gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x8aec9745 rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0x8af23b81 dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x8af36386 devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0x8af72832 yield_to -EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b33e493 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x8b41f519 devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0x8b619411 regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0x8b699b6b usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x8b775d3a __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x8b7dd2e6 mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x8b8a8ce4 usb_bus_list_lock -EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0x8ba854ac ahci_em_messages -EXPORT_SYMBOL_GPL vmlinux 0x8bb3fab5 __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0x8bc07773 snd_soc_get_dai_substream -EXPORT_SYMBOL_GPL vmlinux 0x8be626ff skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c06a231 snd_soc_add_platform_controls -EXPORT_SYMBOL_GPL vmlinux 0x8c22bfd1 regmap_field_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x8c2fea3c ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x8c3926d7 disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x8c5ae2cc digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0x8c62270a scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0x8c62755e adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status -EXPORT_SYMBOL_GPL vmlinux 0x8c6c11c6 rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c8be2a1 dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x8c962942 ahci_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x8c9a9b37 gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x8ca46bf8 sched_setscheduler -EXPORT_SYMBOL_GPL vmlinux 0x8ccfa390 of_overlay_create -EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params -EXPORT_SYMBOL_GPL vmlinux 0x8d05cfcc of_irq_parse_one -EXPORT_SYMBOL_GPL vmlinux 0x8d17f28d sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0x8d19ceba snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d2696b2 inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0x8d2990b4 cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x8d7c98a4 usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0x8d9f6ce8 crypto_tfm_in_queue -EXPORT_SYMBOL_GPL vmlinux 0x8da01274 kvm_get_pfn -EXPORT_SYMBOL_GPL vmlinux 0x8dc7a2c8 pwm_disable -EXPORT_SYMBOL_GPL vmlinux 0x8dcb2038 devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x8dd42b69 sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0x8dd845eb snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL vmlinux 0x8dda0292 mpc8xxx_spi_tx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x8e049b15 uniphier_pinctrl_remove -EXPORT_SYMBOL_GPL vmlinux 0x8e0b52d5 devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x8e1cd06f kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL vmlinux 0x8e2b25c2 videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x8e30c265 snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL vmlinux 0x8e3540f5 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x8e42e821 __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x8e49cf1f __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x8e5a7520 irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0x8e7894bd __atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x8eac864c dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x8ec13642 usb_gadget_udc_reset -EXPORT_SYMBOL_GPL vmlinux 0x8ec36cf8 irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x8ecc3c80 ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL vmlinux 0x8ed88291 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x8ef3469a iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x8ef64477 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x8f06a5f5 pci_reset_pri -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f0f022f rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x8f24ae17 alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0x8f2a8d9a tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x8f58474e tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8f77afd5 snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL vmlinux 0x8fa453ad pci_restore_ats_state -EXPORT_SYMBOL_GPL vmlinux 0x8fa58f61 devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x8fb69a3a mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8fb7e1d5 kvm_irq_has_notifier -EXPORT_SYMBOL_GPL vmlinux 0x8fe074c7 snd_soc_platform_read -EXPORT_SYMBOL_GPL vmlinux 0x8fe9a2af sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0x9006dcac snd_soc_component_write -EXPORT_SYMBOL_GPL vmlinux 0x900a89df crypto_alloc_instance -EXPORT_SYMBOL_GPL vmlinux 0x9012c075 amba_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x90414d0e get_mtd_device_nm -EXPORT_SYMBOL_GPL vmlinux 0x9047c11a trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0x9059878e disk_map_sector_rcu -EXPORT_SYMBOL_GPL vmlinux 0x906145ec virtqueue_get_avail -EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x907fb38c get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0x909ea758 device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x90a16ff9 add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL vmlinux 0x90b22b03 tc3589x_block_write -EXPORT_SYMBOL_GPL vmlinux 0x90b53d5c omap_dm_timer_request_by_node -EXPORT_SYMBOL_GPL vmlinux 0x90c402f3 tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0x910c7651 snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL vmlinux 0x914978fe cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0x91618352 snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL vmlinux 0x91671cc0 rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0x916dd02a irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x917e9588 rhashtable_walk_start -EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x91bc6d1b musb_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91d7007f crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0x91d8d6e7 devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x91dc47c6 transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0x91e9c31e led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9200e8ff xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0x923fad7f sm501_set_clock -EXPORT_SYMBOL_GPL vmlinux 0x9244714b snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x924d4cda cpsw_ale_add_mcast -EXPORT_SYMBOL_GPL vmlinux 0x9255cd5e sdhci_free_host -EXPORT_SYMBOL_GPL vmlinux 0x92560b42 kallsyms_on_each_symbol -EXPORT_SYMBOL_GPL vmlinux 0x925e7808 crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0x92652448 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x927533e1 devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x92780d16 ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x9291ec05 snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL vmlinux 0x92a46963 regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0x92accbf3 gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x92bb15f0 xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0x92d2de76 ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x92d31d88 pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0x92d60d00 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92e76999 sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0x92f6e4b6 __ktime_divns -EXPORT_SYMBOL_GPL vmlinux 0x931a6cce __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0x931c4f50 lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0x931dfd10 simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x93316cce aead_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0x934d189a sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x9355efbd sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0x93911418 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0x93b45d58 fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x93c405a1 find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0x93c5a19d wakeup_source_prepare -EXPORT_SYMBOL_GPL vmlinux 0x93d3b951 of_fixed_factor_clk_setup -EXPORT_SYMBOL_GPL vmlinux 0x940704e8 of_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x94077f3a cpufreq_table_validate_and_show -EXPORT_SYMBOL_GPL vmlinux 0x94152e3a flush_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x9435f1d5 serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x943decb6 da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x9459f30d of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x945b2147 spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0x946199ea usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x9463ff71 init_bch -EXPORT_SYMBOL_GPL vmlinux 0x94678fa3 regulator_can_change_voltage -EXPORT_SYMBOL_GPL vmlinux 0x9470bf63 of_pci_msi_chip_add -EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x949334db cpdma_ctlr_start -EXPORT_SYMBOL_GPL vmlinux 0x949b36fc of_get_dma_window -EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0x94ea0a6d crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x95124515 add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x95203c3a usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x952ad482 virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x954d4520 pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x95505a19 __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0x955af1eb synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x9574ca7d kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x957832e9 ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0x957ac70b transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x9586a6ed cpdma_chan_get_stats -EXPORT_SYMBOL_GPL vmlinux 0x958b2f00 key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x959c2d39 find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x95a7c994 relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0x95ad1ae6 amba_apb_device_add -EXPORT_SYMBOL_GPL vmlinux 0x95b1b324 mtd_erase -EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95c1298c pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x95d098ac gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0x95f3a5f2 rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x95f5b0af omap_dm_timer_disable -EXPORT_SYMBOL_GPL vmlinux 0x9613ac30 pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x961460c7 pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x962d5d3f device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x96319203 devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x963a3422 pm_genpd_init -EXPORT_SYMBOL_GPL vmlinux 0x96425ff1 usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x96523454 clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x967788a4 xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x9678c30d mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0x9684a821 regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x9686afdc tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x96919667 musb_readl -EXPORT_SYMBOL_GPL vmlinux 0x96ab1cd9 posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x96bdc6de fuse_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0x96d39fbb regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x96d5bd58 regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0x96dab4fb devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x96e39e40 to_of_pinfo -EXPORT_SYMBOL_GPL vmlinux 0x96ea17fa trace_buffer_unlock_commit_regs -EXPORT_SYMBOL_GPL vmlinux 0x96f32967 blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0x96ff4802 device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x9709ead9 snd_soc_free_ac97_codec -EXPORT_SYMBOL_GPL vmlinux 0x970c9f22 da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x9718dd65 blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x972cd112 crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x97611aac vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x976713e8 snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x976ba0dc blkg_print_stat_bytes_recursive -EXPORT_SYMBOL_GPL vmlinux 0x976ffb1f regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x978131e2 crypto_alg_lookup -EXPORT_SYMBOL_GPL vmlinux 0x97879dee ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0x97916e35 device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x979752da cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0x97bca95e tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x97c14d5b tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0x97c3ad62 pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x97d8a738 ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97e3c2b0 ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0x9822f19c tcp_fetch_timewait_stamp -EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x98491c0a dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x984af301 dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x986c4794 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x988ca6c6 tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x989eb047 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x98bec574 spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x98c714f3 virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0x98c9a9cb watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0x98c9f584 klist_init -EXPORT_SYMBOL_GPL vmlinux 0x98ed852d devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x98ef1b8d arizona_of_get_named_gpio -EXPORT_SYMBOL_GPL vmlinux 0x98f33a5a tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x98f394c3 blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on -EXPORT_SYMBOL_GPL vmlinux 0x990fe3e7 usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x993b348d dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0x993b6d3f sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0x9951d386 vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0x9952c008 ping_close -EXPORT_SYMBOL_GPL vmlinux 0x995720b1 ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x9973add9 __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range -EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x998efa43 of_dma_configure -EXPORT_SYMBOL_GPL vmlinux 0x99afac9e da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x99dba883 crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0x99f8581d device_add_property_set -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a12f715 snd_soc_dpcm_be_get_state -EXPORT_SYMBOL_GPL vmlinux 0x9a2ef4ba dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0x9a52ba4d pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x9a5fcc76 ti_cm_get_macid -EXPORT_SYMBOL_GPL vmlinux 0x9a6b6b55 subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck -EXPORT_SYMBOL_GPL vmlinux 0x9a8a0b10 perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0x9a8dc8dd snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL vmlinux 0x9a9f111c crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x9aa0b252 ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0x9aafb564 bpf_prog_get -EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9ace07f4 shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x9adfae6a gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9aeeb57b snd_soc_add_codec_controls -EXPORT_SYMBOL_GPL vmlinux 0x9af827b1 __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0x9b12c968 locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0x9b1b7897 usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0x9b22d44b pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x9b23bfb9 wm5102_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x9b25c26f ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0x9b30d7a4 wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x9b33a021 debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x9b49d0c1 nand_release -EXPORT_SYMBOL_GPL vmlinux 0x9b4cb39f mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0x9b4e1024 debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0x9b580d1f dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x9b6b4529 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x9b86a1ca __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x9ba806d5 mtd_write -EXPORT_SYMBOL_GPL vmlinux 0x9bae0277 cpufreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9bb495fd of_get_nand_ecc_step_size -EXPORT_SYMBOL_GPL vmlinux 0x9bc3fb18 sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9c1cd7cc phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x9c1f2a09 sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0x9c3e5b59 percpu_ida_destroy -EXPORT_SYMBOL_GPL vmlinux 0x9c416914 ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x9c61f838 regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0x9c729411 wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x9c7a2e6d rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0x9c85f4e0 of_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x9c8d36b2 snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL vmlinux 0x9c935230 iommu_domain_window_disable -EXPORT_SYMBOL_GPL vmlinux 0x9ca54a8d driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9cb14311 pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9cceae5c nd_blk_region_set_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x9cd170bc extcon_register_interest -EXPORT_SYMBOL_GPL vmlinux 0x9cdc9867 cpdma_ctlr_stop -EXPORT_SYMBOL_GPL vmlinux 0x9cded4d4 devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x9ce337a1 ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0x9d21c9ae vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0x9d22d00d pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0x9d281fdb platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0x9d338a7e regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x9d33eabf crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0x9d38c45b kvm_io_bus_write -EXPORT_SYMBOL_GPL vmlinux 0x9d48faf3 serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x9d5be7f9 spi_unregister_master -EXPORT_SYMBOL_GPL vmlinux 0x9d70c754 regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0x9d746094 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x9d75586e raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x9d79532b kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x9d8dd3e7 class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported -EXPORT_SYMBOL_GPL vmlinux 0x9dc275b9 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0x9dd2e728 usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0x9dd49332 pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0x9df78db4 dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0x9e069886 ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0x9e0b1a33 smpboot_register_percpu_thread_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x9e0fcc47 snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL vmlinux 0x9e1fc618 irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0x9e2e2cb0 crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e6bcaa0 usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x9e9ec6f7 pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0x9ea556f8 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0x9eafb3bc mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0x9ecd5b6e ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ed56f69 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0x9ef1bdb8 gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL vmlinux 0x9f23aad7 devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0x9f3621ab blk_queue_bypass_end -EXPORT_SYMBOL_GPL vmlinux 0x9f431085 wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x9f45a73d i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x9f4b6d25 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL vmlinux 0x9f54be86 key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0x9f61e091 ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0x9f6cae85 uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x9f7905d0 arizona_clk32k_enable -EXPORT_SYMBOL_GPL vmlinux 0x9f8a2c75 iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0x9f9d470e pinctrl_add_gpio_ranges -EXPORT_SYMBOL_GPL vmlinux 0x9fb8c5ae platform_device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0x9fbf9a11 ahci_handle_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x9fc27709 dev_pm_opp_set_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x9fc840ee usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fd2a59f devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9ff51d9e bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x9ffb8d52 pwm_free -EXPORT_SYMBOL_GPL vmlinux 0x9ffcab45 _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL vmlinux 0x9ffff044 iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0xa013a9cf init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xa033df40 clk_register_divider -EXPORT_SYMBOL_GPL vmlinux 0xa06a9d6e br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0xa0805719 cpsw_ale_start -EXPORT_SYMBOL_GPL vmlinux 0xa0932c3e cpsw_ale_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa097a141 vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0xa0b0842e netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0xa0b13f46 sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL vmlinux 0xa0ffc5a4 usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0xa115cfb9 xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0xa1255bfd securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xa127d925 devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xa14a1817 trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0xa156300a crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0xa16cf0a0 component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0xa17631e7 rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0xa1a327e3 of_irq_parse_and_map_pci -EXPORT_SYMBOL_GPL vmlinux 0xa1a8b9a6 gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0xa1bb1eda dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0xa1bb9e64 dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0xa1d55251 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0xa1dbd1e7 task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0xa1f7dcc0 snd_pcm_hw_constraint_eld -EXPORT_SYMBOL_GPL vmlinux 0xa1ff725b pci_bus_sem -EXPORT_SYMBOL_GPL vmlinux 0xa21f06a8 usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xa223f7ce sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0xa227eef4 od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0xa264de17 nd_numa_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa27b7a90 usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL vmlinux 0xa2aeac2d task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0xa2b9c993 clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xa2c4dc85 pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0xa2d1b496 regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0xa2ebfbf6 of_property_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0xa2ef439b power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xa31e960f sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0xa35a72ef wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register -EXPORT_SYMBOL_GPL vmlinux 0xa389be0a omap_mcbsp_st_add_controls -EXPORT_SYMBOL_GPL vmlinux 0xa3923f5c blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa39acdc1 vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3b571ef i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3e0ebd4 ahci_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0xa402a609 get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0xa40f6c54 tc3589x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xa41f6826 sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0xa41f9c5a crypto_attr_alg2 -EXPORT_SYMBOL_GPL vmlinux 0xa422cd3f pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xa451153e spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0xa45a9bf4 dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xa45ab2d3 sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0xa45dd4bc arizona_free_irq -EXPORT_SYMBOL_GPL vmlinux 0xa45e54ce bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0xa45f337d tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa4744dba usb_gadget_giveback_request -EXPORT_SYMBOL_GPL vmlinux 0xa47e32b0 led_trigger_store -EXPORT_SYMBOL_GPL vmlinux 0xa47f783b dev_pm_opp_find_freq_exact -EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa4ca5b28 ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL vmlinux 0xa4f21d35 uniphier_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0xa4fb7920 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0xa5087af8 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0xa51fe97d snd_device_disconnect -EXPORT_SYMBOL_GPL vmlinux 0xa523ab6e blk_mq_request_started -EXPORT_SYMBOL_GPL vmlinux 0xa52b67f9 kvm_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0xa53479e6 snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL vmlinux 0xa5410b53 omap_pcm_platform_register -EXPORT_SYMBOL_GPL vmlinux 0xa54f3511 ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0xa56a73f2 virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0xa583c150 blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0xa586dd85 snd_soc_component_read -EXPORT_SYMBOL_GPL vmlinux 0xa5b5e664 subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa5bf1870 platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa5f8854a usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xa60a1fb7 md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0xa60c798b ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0xa66c5be0 ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0xa6a4709a dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6c33c48 snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL vmlinux 0xa6d8f1e8 bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa7042c49 __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xa7137671 serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0xa715607c key_type_user -EXPORT_SYMBOL_GPL vmlinux 0xa737f0b8 crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0xa7452166 cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0xa749ac3a omap_dm_timer_set_int_disable -EXPORT_SYMBOL_GPL vmlinux 0xa74ac4f1 power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0xa7bade6a ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0xa7bdb568 regmap_write_bits -EXPORT_SYMBOL_GPL vmlinux 0xa7cac83f of_clk_parent_fill -EXPORT_SYMBOL_GPL vmlinux 0xa7d8ea75 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xa7db62c1 regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0xa7e11bd5 fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0xa7e599a8 rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0xa818aa04 sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0xa836b984 __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xa84c2471 devm_snd_soc_register_component -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa85da658 xattr_getsecurity -EXPORT_SYMBOL_GPL vmlinux 0xa86087da pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0xa8885285 i2c_new_dummy -EXPORT_SYMBOL_GPL vmlinux 0xa88e65dc snd_soc_new_ac97_codec -EXPORT_SYMBOL_GPL vmlinux 0xa8a0cfda clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0xa8a24dd6 adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0xa8b09b42 crypto_larval_lookup -EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xa8bc717e percpu_ida_free_tags -EXPORT_SYMBOL_GPL vmlinux 0xa8cf3acd netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0xa8e2bda4 noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0xa8e98132 btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0xa8efc75e rtc_irq_set_freq -EXPORT_SYMBOL_GPL vmlinux 0xa8fd9557 snd_soc_put_enum_double -EXPORT_SYMBOL_GPL vmlinux 0xa9254c79 kvm_vcpu_gfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0xa92942e2 regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xa9296676 usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa93cd2aa clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0xa94478d8 mv_mbus_dram_info_nooverlap -EXPORT_SYMBOL_GPL vmlinux 0xa9643ba2 sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0xa965524c ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0xa98436dc usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0xa992c0c4 tasklet_hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0xa99e0bcc mtd_get_device_size -EXPORT_SYMBOL_GPL vmlinux 0xa9ac582b pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0xa9aef2e1 gfn_to_hva_memslot -EXPORT_SYMBOL_GPL vmlinux 0xa9c6f4ed device_create -EXPORT_SYMBOL_GPL vmlinux 0xa9e05660 io_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9e59bf7 register_jprobe -EXPORT_SYMBOL_GPL vmlinux 0xa9ee68b2 regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0xaa235611 fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0xaa3377f8 pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0xaa44acff omap_tll_disable -EXPORT_SYMBOL_GPL vmlinux 0xaa4d4ebc inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0xaa5866a3 bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0xaa5956cf kvm_vcpu_init -EXPORT_SYMBOL_GPL vmlinux 0xaa676d93 ahci_do_softreset -EXPORT_SYMBOL_GPL vmlinux 0xaa693526 led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0xaa8f9219 ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0xaa9650d0 thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaaaf62be device_show_int -EXPORT_SYMBOL_GPL vmlinux 0xaafbdd0c unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0xab16d5e0 napi_hash_add -EXPORT_SYMBOL_GPL vmlinux 0xab22bc67 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0xab2a8b97 of_dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xab2b53cf snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL vmlinux 0xab59a581 power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del -EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request -EXPORT_SYMBOL_GPL vmlinux 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL vmlinux 0xab945a16 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0xab9a57bc dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0xabb4d470 ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xabbff910 to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabc9a6cf nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0xabca23f2 register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0xabd8c79b pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0xabda1e2e decode_rs16 -EXPORT_SYMBOL_GPL vmlinux 0xabfd4796 default_iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0xac007c87 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0xac20c2ef dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xac454e93 task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xac4efab5 xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0xac51a5e0 usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0xac5f3d70 musb_readb -EXPORT_SYMBOL_GPL vmlinux 0xac6f8dd2 irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xac7148c9 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xac8244db __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0xac85cf05 gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0xac900d4f of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xac9f1f2b kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0xacab8577 dm_get_rq_mapinfo -EXPORT_SYMBOL_GPL vmlinux 0xacc1412a usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0xacd81bb5 ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0xacdea2f1 list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list -EXPORT_SYMBOL_GPL vmlinux 0xacfdd5e5 __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0xad49320d inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xad5ad3b8 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xad847c67 arm_iommu_create_mapping -EXPORT_SYMBOL_GPL vmlinux 0xada3e2a3 ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0xadae4596 devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0xadb0eef4 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0xadd3be6c __blk_run_queue_uncond -EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0xae08cd4d usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae81922b of_overlay_destroy_all -EXPORT_SYMBOL_GPL vmlinux 0xae9f91c8 ping_proc_register -EXPORT_SYMBOL_GPL vmlinux 0xae9f9d59 nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xaeb6b9db devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xaec2d546 pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0xaec652f8 aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0xaed21579 wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0xaf0ba4f6 nvdimm_bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaf12bfb3 tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0xaf1fb060 unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit -EXPORT_SYMBOL_GPL vmlinux 0xaf34b57c wm8350_device_exit -EXPORT_SYMBOL_GPL vmlinux 0xaf5a005f init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xaf5a4a5d eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0xaf665246 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0xaf75f295 inet_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0xaf775ffa nd_mapping_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xaf86ac3d usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0xafa497d3 crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0xafa6555c usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0xafaaf491 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xafab581d __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0xafad9f34 sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xafbc015d sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0xafe9b587 shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0xb00a6c26 ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0xb010abea of_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xb0128a78 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0xb01f6a8d gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0xb023073c pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0xb02bf844 ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0xb0304a24 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xb04d1f7b perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xb05055f7 __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xb050f329 init_rs -EXPORT_SYMBOL_GPL vmlinux 0xb05f49fe ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb08775c3 snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0xb0a3c1f2 iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb0a52038 crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0bce4f0 __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0xb0e7d55e ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0xb107a4fd pinctrl_utils_add_config -EXPORT_SYMBOL_GPL vmlinux 0xb11625b9 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xb11c0075 tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0xb12297b6 of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0xb125ceb2 cpdma_control_set -EXPORT_SYMBOL_GPL vmlinux 0xb132874b mtd_get_user_prot_info -EXPORT_SYMBOL_GPL vmlinux 0xb13b2694 snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read -EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb1887940 of_property_read_u32_index -EXPORT_SYMBOL_GPL vmlinux 0xb1a923da get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched -EXPORT_SYMBOL_GPL vmlinux 0xb1b94e63 gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain -EXPORT_SYMBOL_GPL vmlinux 0xb1c2afb1 of_usb_update_otg_caps -EXPORT_SYMBOL_GPL vmlinux 0xb1ce0e7c mtd_unlock -EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb200c78f __rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb20c8c44 debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xb21128fe blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb23ae4c5 ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb2832e92 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0xb283d306 ata_sff_data_xfer_noirq -EXPORT_SYMBOL_GPL vmlinux 0xb2beb6f4 devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xb2d88612 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0xb2dce5af of_property_count_elems_of_size -EXPORT_SYMBOL_GPL vmlinux 0xb2e726de __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2ef43de spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0xb34c895b gpiochip_set_chained_irqchip -EXPORT_SYMBOL_GPL vmlinux 0xb36a8af6 omap_dm_timer_start -EXPORT_SYMBOL_GPL vmlinux 0xb390c41b kvm_read_guest_cached -EXPORT_SYMBOL_GPL vmlinux 0xb3c27b11 fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0xb3db2104 ahci_print_info -EXPORT_SYMBOL_GPL vmlinux 0xb4009aa7 handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0xb40bd0f6 unregister_mtd_user -EXPORT_SYMBOL_GPL vmlinux 0xb40c6376 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xb41e3b73 blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0xb451e89c usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xb46e1b52 kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0xb47e5bc6 ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0xb4908cd2 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb49afdc7 omap_dm_timer_stop -EXPORT_SYMBOL_GPL vmlinux 0xb4a76da1 xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb4ae1b73 debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xb4b89d7c iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4cf0322 btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb4d95a87 blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb4f88ac1 extcon_update_state -EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xb5467b4e device_register -EXPORT_SYMBOL_GPL vmlinux 0xb5486e13 device_reset -EXPORT_SYMBOL_GPL vmlinux 0xb559a158 uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0xb5731ed8 blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited -EXPORT_SYMBOL_GPL vmlinux 0xb5987a3f mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table -EXPORT_SYMBOL_GPL vmlinux 0xb5b1176e replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0xb5ca331e tc3589x_block_read -EXPORT_SYMBOL_GPL vmlinux 0xb5cba789 inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0xb5dbdb95 cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0xb5e896fb tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb5f94086 i2c_new_device -EXPORT_SYMBOL_GPL vmlinux 0xb60e67a2 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0xb6138306 led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0xb6232865 kvm_is_visible_gfn -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb6296491 md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0xb64e1092 omap_iommu_restore_ctx -EXPORT_SYMBOL_GPL vmlinux 0xb65c6e6c vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0xb65e4957 usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0xb6751435 ahci_platform_enable_clks -EXPORT_SYMBOL_GPL vmlinux 0xb6857bf3 iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0xb6901c88 mtd_table_mutex -EXPORT_SYMBOL_GPL vmlinux 0xb691770e snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL vmlinux 0xb6ae2c2d ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xb6c2cdb4 of_pci_get_host_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0xb6d48896 ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase -EXPORT_SYMBOL_GPL vmlinux 0xb74329d0 __inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0xb74bfae0 kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0xb74fcab3 transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb76c06ab crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0xb771e6b7 bL_switch_request_cb -EXPORT_SYMBOL_GPL vmlinux 0xb77cb0a8 cpdma_chan_submit -EXPORT_SYMBOL_GPL vmlinux 0xb7804c48 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0xb798ad0d of_clk_add_provider -EXPORT_SYMBOL_GPL vmlinux 0xb7b82770 pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0xb7b8d1eb io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0xb7ba7744 fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0xb7d92b7e gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xb7e07fd6 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0xb80b06f4 __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb820bbcf driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0xb82566eb omap_tll_enable -EXPORT_SYMBOL_GPL vmlinux 0xb82687e4 crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0xb832b4a0 __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0xb8346aeb percpu_ida_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb8418a14 bio_clone_mddev -EXPORT_SYMBOL_GPL vmlinux 0xb84c721f ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0xb85d4a6a thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb88f8dba rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb89a9a70 debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0xb8b754f3 pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0xb8b85645 sdhci_alloc_host -EXPORT_SYMBOL_GPL vmlinux 0xb8b89a5c led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0xb8bc8a06 da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0xb8c49640 securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8d3fd8e irq_find_matching_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0xb90ff267 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0xb919e1fd da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb91a8cca gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xb91a9632 ping_err -EXPORT_SYMBOL_GPL vmlinux 0xb92427b4 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0xb926cf1a of_reserved_mem_device_release -EXPORT_SYMBOL_GPL vmlinux 0xb93858ae da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0xb9980c74 dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0xb99f19bc ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0xb9b7fffc ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9e87b94 bL_switcher_trace_trigger -EXPORT_SYMBOL_GPL vmlinux 0xb9fc474c xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba33d22c kvm_vcpu_kick -EXPORT_SYMBOL_GPL vmlinux 0xba379257 fsl8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0xba8929ea percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xbaa45d7d crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0xbab7c7a6 get_kernel_page -EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbaca6444 tps65912_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xbad17ed0 crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0xbad69820 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0xbad79340 devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0xbaf815a9 __init_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb11cfba klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xbb2c9d1b tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0xbb4c7570 pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xbb7e6a18 component_master_add -EXPORT_SYMBOL_GPL vmlinux 0xbb8e5a43 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0xbb9e2ab5 sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0xbba3a3e3 pinconf_generic_dump_config -EXPORT_SYMBOL_GPL vmlinux 0xbba568f1 da903x_write -EXPORT_SYMBOL_GPL vmlinux 0xbbb1b5e0 ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0xbbbc677e snd_soc_add_platform -EXPORT_SYMBOL_GPL vmlinux 0xbbdb0a6c cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xbc0ae0ad of_pci_range_parser_one -EXPORT_SYMBOL_GPL vmlinux 0xbc108aad spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xbc1a07fe led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0xbc321ae4 get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0xbc37723d powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0xbc3be693 device_del -EXPORT_SYMBOL_GPL vmlinux 0xbc3c6731 pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0xbc441bce perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0xbc638b0c input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0xbc65976d kvm_release_page_clean -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbcbaa80a __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0xbcbe0450 __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcd8825a extcon_set_cable_state -EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbce58b80 wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xbcf89ab6 __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0xbcff817b wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xbd3e9484 sdhci_send_command -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd43a659 kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL vmlinux 0xbd48ed45 sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0xbd73c787 pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xbdb81e60 disk_part_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xbdc3a4bf ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0xbddb717e nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0xbdf512de free_bch -EXPORT_SYMBOL_GPL vmlinux 0xbe0da88e split_page -EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xbe37a273 sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0xbe49a307 sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xbe4a57d6 pci_try_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xbe640a6b regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xbe6422ed mtd_panic_write -EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe6b3c38 sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0xbe71dab2 snd_soc_info_enum_double -EXPORT_SYMBOL_GPL vmlinux 0xbe846803 usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0xbe924596 security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbe97a5c4 mtd_block_markbad -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf1f653d crypto_init_shash_spawn -EXPORT_SYMBOL_GPL vmlinux 0xbf28abf0 crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0xbf4dfec1 perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0xbfab9460 gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xbfbb49bf usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfbcaad5 ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0xbfbcddf8 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbfc475ae adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xbfcf1331 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbfe7fbb3 sched_setscheduler_nocheck -EXPORT_SYMBOL_GPL vmlinux 0xbff76282 pinctrl_dev_get_name -EXPORT_SYMBOL_GPL vmlinux 0xbff7aa97 posix_timers_register_clock -EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 -EXPORT_SYMBOL_GPL vmlinux 0xc01b6e29 skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0xc029eabc bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc035144d mmu_notifier_unregister_no_release -EXPORT_SYMBOL_GPL vmlinux 0xc03a654b memalloc_socks -EXPORT_SYMBOL_GPL vmlinux 0xc0587af5 of_get_regulator_init_data -EXPORT_SYMBOL_GPL vmlinux 0xc0686ff5 ping_seq_fops -EXPORT_SYMBOL_GPL vmlinux 0xc06e5305 kernfs_path -EXPORT_SYMBOL_GPL vmlinux 0xc0742709 ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0xc07c52c9 clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0xc081c246 bL_switcher_put_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0abbde8 snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL vmlinux 0xc0d1e477 ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0xc0e75cec visitor128 -EXPORT_SYMBOL_GPL vmlinux 0xc0e798f6 debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0xc0eca556 mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc1274d13 ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0xc14769ef __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0xc148a000 kvm_get_kvm -EXPORT_SYMBOL_GPL vmlinux 0xc16132f6 ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc18578ed process_srcu -EXPORT_SYMBOL_GPL vmlinux 0xc1bced6a cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xc1bdd231 ahci_host_activate -EXPORT_SYMBOL_GPL vmlinux 0xc1e02251 serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0xc1e24737 sdhci_pltfm_init -EXPORT_SYMBOL_GPL vmlinux 0xc1e60933 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0xc1e867f1 pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0xc1f014c2 nvdimm_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xc205e44c nd_blk_region_to_dimm -EXPORT_SYMBOL_GPL vmlinux 0xc217a2f1 raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xc21b3cca devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc2362fe7 cm_notify_event -EXPORT_SYMBOL_GPL vmlinux 0xc2403539 genlmsg_new_unicast -EXPORT_SYMBOL_GPL vmlinux 0xc2632498 ahci_kick_engine -EXPORT_SYMBOL_GPL vmlinux 0xc265ffbb sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0xc274d51d uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0xc2abc091 ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0xc2bd5c82 snd_soc_jack_report -EXPORT_SYMBOL_GPL vmlinux 0xc2d64172 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0xc2dbeca6 pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0xc2df41f7 snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL vmlinux 0xc2e728dc ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xc326bb53 single_open_net -EXPORT_SYMBOL_GPL vmlinux 0xc32e7129 of_get_videomode -EXPORT_SYMBOL_GPL vmlinux 0xc33b5311 xfrm_inner_extract_output -EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc3702bf9 input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xc3820f67 palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0xc385cb58 perf_num_counters -EXPORT_SYMBOL_GPL vmlinux 0xc38e44da pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0xc3a90042 ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0xc3a93326 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc3afcf8c ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0xc3b93bba klist_next -EXPORT_SYMBOL_GPL vmlinux 0xc3c5f387 ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0xc3c7744f fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xc3cd1e32 __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0xc3d734ab devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xc3e5104e ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0xc3edd3e6 ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0xc40034c2 kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0xc41e0178 btree_last -EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc43299eb regmap_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xc441a839 kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc46cb055 ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc48aa3cb user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc48fbaff usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xc49bf064 __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xc49f932c sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0xc4a4b925 usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0xc4b0acc4 snd_soc_info_volsw -EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0xc4f41814 usb_gadget_set_state -EXPORT_SYMBOL_GPL vmlinux 0xc5361871 ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0xc5437f2e ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0xc54976f0 dma_buf_vmap -EXPORT_SYMBOL_GPL vmlinux 0xc54d8fa7 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc571580c dma_request_slave_channel_reason -EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc58b2555 sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0xc5aaabe8 get_device -EXPORT_SYMBOL_GPL vmlinux 0xc5afe9be snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL vmlinux 0xc5c6fc6c pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0xc5ce0820 of_alias_get_id -EXPORT_SYMBOL_GPL vmlinux 0xc5d5513e cpdma_chan_process -EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0xc5da8055 _submit_bh -EXPORT_SYMBOL_GPL vmlinux 0xc5e0dd66 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0xc5e3e310 inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xc5e59aa7 class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0xc5f2747e gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc626d10a mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xc64028bf blkg_print_stat_bytes -EXPORT_SYMBOL_GPL vmlinux 0xc644a920 regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0xc649229a clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc661d867 devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc671ee86 bdev_read_page -EXPORT_SYMBOL_GPL vmlinux 0xc685bf00 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0xc685c037 cpdma_check_free_tx_desc -EXPORT_SYMBOL_GPL vmlinux 0xc68b710c ahci_check_ready -EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc6a06d88 ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xc6a1436f part_round_stats -EXPORT_SYMBOL_GPL vmlinux 0xc6a186ce snd_soc_add_component_controls -EXPORT_SYMBOL_GPL vmlinux 0xc6a47992 bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6c1048e rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xc6f03b21 tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0xc6f3f854 hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc70db494 pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xc71f018f ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xc75072bb add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0xc75e8305 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xc7832039 find_symbol -EXPORT_SYMBOL_GPL vmlinux 0xc7944c2b arizona_dev_init -EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer -EXPORT_SYMBOL_GPL vmlinux 0xc7d34c7a sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0xc7d6cf69 of_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xc7e16a66 blkcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc823c1fd phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL vmlinux 0xc82e28f7 __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0xc854a534 rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xc87e2d7a sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xc87f730a dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0xc891ed6d single_release_net -EXPORT_SYMBOL_GPL vmlinux 0xc897bfb6 __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0xc8b6b05a usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xc8d13607 serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0xc8d19cbe dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0xc8fd552e ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0xc9082aae usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xc922f7a9 regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0xc9260e8a debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0xc9345ded fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0xc93bc97d devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc968081e __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level -EXPORT_SYMBOL_GPL vmlinux 0xc980c71a snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL vmlinux 0xc99107e0 of_irq_parse_raw -EXPORT_SYMBOL_GPL vmlinux 0xc9a65864 blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0xc9c465ee fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0xc9e9a801 wm8998_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc9fce26a bio_trim -EXPORT_SYMBOL_GPL vmlinux 0xca123bac __srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xca21f0ee nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0xca31c01f usb_phy_generic_unregister -EXPORT_SYMBOL_GPL vmlinux 0xca38371f cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xca43e44b ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0xca448e76 device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xca4bacd5 clk_gpio_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xca4cfd98 irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0xca69db54 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0xca6a5cca __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca8ab2b8 exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0xca960068 kvm_put_kvm -EXPORT_SYMBOL_GPL vmlinux 0xca9f5275 max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0xca9fd2ec crypto_blkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xcaa24c7e ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0xcaa2b7cf regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcad753e9 gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xcad9a4fe ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xcae99016 md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb198859 component_master_del -EXPORT_SYMBOL_GPL vmlinux 0xcb24b4e2 extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcb32cb36 musb_writeb -EXPORT_SYMBOL_GPL vmlinux 0xcb41d3bf mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module -EXPORT_SYMBOL_GPL vmlinux 0xcb6fb06f ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0xcbbd11a5 devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xcbce0ab6 tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0xcbd09a53 remove_irq -EXPORT_SYMBOL_GPL vmlinux 0xcbd8b885 regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbe5a579 sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0xcc3bfc1d __bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0xcc44f3cb class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xcc51ef8c spi_alloc_master -EXPORT_SYMBOL_GPL vmlinux 0xcc5c4c19 edac_subsys -EXPORT_SYMBOL_GPL vmlinux 0xcc83ceec xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule -EXPORT_SYMBOL_GPL vmlinux 0xcca8de79 iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0xccc31bb7 ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xcd01fc89 udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xcd1a9fee blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0xcd36e7c7 virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0xcd49d8d7 dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcd4bdfcc of_thermal_is_trip_valid -EXPORT_SYMBOL_GPL vmlinux 0xcd5c7b16 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0xcd5ec8c5 ulpi_viewport_access_ops -EXPORT_SYMBOL_GPL vmlinux 0xcd648178 pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0xcd7545a9 phy_exit -EXPORT_SYMBOL_GPL vmlinux 0xcd8a523a usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0xcd8f9632 ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq -EXPORT_SYMBOL_GPL vmlinux 0xcd934534 snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs -EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcdae4d70 bus_set_iommu -EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdd024a9 snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0xcdd5294a __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0xcdd613d8 serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0xcdd9a0a6 snd_soc_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xcde68f14 device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xce06b91b da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xce15ee70 dev_pm_opp_get_notifier -EXPORT_SYMBOL_GPL vmlinux 0xce3255f4 devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce765e84 __nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0xce85a566 usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0xce9dbb42 setup_irq -EXPORT_SYMBOL_GPL vmlinux 0xceabdec3 kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0xcede06a3 platform_bus -EXPORT_SYMBOL_GPL vmlinux 0xcede656d usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcef7cc73 ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0xcef7ce7a kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0xcef851f4 devm_rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xceff9843 devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0xcf16a2d0 power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0xcf3e7dfa ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0xcf405e59 regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0xcf4361dd __get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0xcf4b3e95 gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain -EXPORT_SYMBOL_GPL vmlinux 0xcf5d7308 kvm_write_guest_cached -EXPORT_SYMBOL_GPL vmlinux 0xcf5db517 perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0xcf8f8d56 cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xcf915b2c regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0xcf9225c9 snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL vmlinux 0xcf932714 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0xcf939f3b ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0xcf96062b bdev_write_page -EXPORT_SYMBOL_GPL vmlinux 0xcf9cdb2e pci_fixup_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xcfb66203 class_destroy -EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0xcfce4497 watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xcfd16a5a thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0xd001f5c1 ahci_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xd00d9015 tc3589x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xd03d8375 uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0xd0407299 omapdss_of_get_first_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd06581f2 blocking_notifier_chain_cond_register -EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd06af707 snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xd06e6b8e pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0xd076f792 clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0xd0829750 dev_pm_opp_of_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0xd0a9029f verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xd0b7f364 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0xd0b83c8e regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0xd0bb8b63 device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd129e42e tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xd133efbb pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0xd1389c59 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xd139d60d component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xd1822f0b cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xd1887b12 ahci_save_initial_config -EXPORT_SYMBOL_GPL vmlinux 0xd18f1c2c snd_soc_unregister_platform -EXPORT_SYMBOL_GPL vmlinux 0xd18f2caa extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0xd1956ce9 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0xd1a22f44 debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0xd1a270dd spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0xd1aaef60 tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0xd1cfdc07 regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0xd1dcceee mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0xd1ef9030 anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0xd1f0a011 usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd1f5352e sdhci_reset -EXPORT_SYMBOL_GPL vmlinux 0xd1ff4ca2 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0xd20ae5cc virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd20d6897 devm_snd_soc_register_platform -EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd21cdc9b rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0xd21daac4 gfn_to_pfn_prot -EXPORT_SYMBOL_GPL vmlinux 0xd224bd7f sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0xd269b7b8 fat_scan -EXPORT_SYMBOL_GPL vmlinux 0xd26b8ea5 snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd2a296ef nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0xd2aaeb4e kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0xd2de7533 unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0xd2e805a5 put_device -EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript -EXPORT_SYMBOL_GPL vmlinux 0xd305bb21 tpm2_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xd3298e8e pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0xd33a0654 led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed -EXPORT_SYMBOL_GPL vmlinux 0xd353a29c bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd3812fc0 gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xd3b4bc0d dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0xd3c9856a trace_call_bpf -EXPORT_SYMBOL_GPL vmlinux 0xd3e97c21 hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd401336e cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd412ed05 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd44c2f38 cci_disable_port_by_cpu -EXPORT_SYMBOL_GPL vmlinux 0xd44c3437 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0xd4677045 pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xd47a44ce usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0xd49cbb9e debugfs_remove_recursive -EXPORT_SYMBOL_GPL vmlinux 0xd4a3d6cd register_mtd_parser -EXPORT_SYMBOL_GPL vmlinux 0xd4a9bc46 of_irq_get -EXPORT_SYMBOL_GPL vmlinux 0xd4ae837d snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4ccba0c fat_attach -EXPORT_SYMBOL_GPL vmlinux 0xd4cd5108 bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0xd4d7a2a3 mpc8xxx_spi_rx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0xd4ec5946 trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0xd4f036d9 tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0xd52334a6 wm8400_block_read -EXPORT_SYMBOL_GPL vmlinux 0xd528f099 snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd53da4e3 omap_dm_timers_active -EXPORT_SYMBOL_GPL vmlinux 0xd54219b4 task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0xd54838c8 bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0xd550fd7c kill_pid_info_as_cred -EXPORT_SYMBOL_GPL vmlinux 0xd556d328 crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0xd558db19 srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd57fd747 usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0xd59a49e1 serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0xd5a8b444 skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0xd5d86f75 snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL vmlinux 0xd5e7cb2a device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh -EXPORT_SYMBOL_GPL vmlinux 0xd60e875a usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xd61e16d6 crypto_ablkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xd62bbad3 tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0xd635534d user_preparse -EXPORT_SYMBOL_GPL vmlinux 0xd64e2733 cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd6636c6e cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0xd6711fbb usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd6794fc1 stmpe_block_read -EXPORT_SYMBOL_GPL vmlinux 0xd688e15d component_del -EXPORT_SYMBOL_GPL vmlinux 0xd6a8757c cpsw_phy_sel -EXPORT_SYMBOL_GPL vmlinux 0xd6cd8df2 crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0xd6ceef71 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xd6d14c6d i2c_lock_adapter -EXPORT_SYMBOL_GPL vmlinux 0xd6db91ef sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xd6e2a893 gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0xd6f7b593 seq_release_net -EXPORT_SYMBOL_GPL vmlinux 0xd70079f7 ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0xd70d44b2 pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0xd711792e snd_soc_remove_platform -EXPORT_SYMBOL_GPL vmlinux 0xd71f7d4c regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xd73f6e54 irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xd783e2bc of_get_nand_on_flash_bbt -EXPORT_SYMBOL_GPL vmlinux 0xd7884d72 __pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xd796a2de ping_proc_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd7a08d90 of_modalias_node -EXPORT_SYMBOL_GPL vmlinux 0xd7bc7ddb dev_pm_opp_get_suspend_opp -EXPORT_SYMBOL_GPL vmlinux 0xd7c2f588 __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xd7c8619b kill_mtd_super -EXPORT_SYMBOL_GPL vmlinux 0xd7cc661f input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0xd7d6a47f iommu_domain_set_attr -EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0xd815802a dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0xd81b7ef5 wm5102_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xd83f9888 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0xd8412303 gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xd865f998 mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xd86f4564 tpm2_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd88cf84e ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0xd8b0b678 pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0xd8c82b0c usb_udc_attach_driver -EXPORT_SYMBOL_GPL vmlinux 0xd8c8a664 to_nd_blk_region -EXPORT_SYMBOL_GPL vmlinux 0xd8c9ff5d ahci_platform_ops -EXPORT_SYMBOL_GPL vmlinux 0xd8e8bd26 __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0xd8f55dc6 ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0xd8fee534 pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0xd902dcf7 irq_create_direct_mapping -EXPORT_SYMBOL_GPL vmlinux 0xd9247ab4 tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0xd9390a50 snd_soc_put_volsw -EXPORT_SYMBOL_GPL vmlinux 0xd94045d7 regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0xd94aa457 display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd99a30ff usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xd9f4e325 sched_setattr -EXPORT_SYMBOL_GPL vmlinux 0xd9f9f518 ata_sg_init -EXPORT_SYMBOL_GPL vmlinux 0xd9ff2842 cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0xda090c99 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0xda174827 i2c_new_probed_device -EXPORT_SYMBOL_GPL vmlinux 0xda2a4b7e omap_dm_timer_enable -EXPORT_SYMBOL_GPL vmlinux 0xda390d0c device_attach -EXPORT_SYMBOL_GPL vmlinux 0xda3c3923 clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0xda401a20 stmpe_enable -EXPORT_SYMBOL_GPL vmlinux 0xda54fdaf relay_flush -EXPORT_SYMBOL_GPL vmlinux 0xda69e811 n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0xda74489c policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0xda7569fc ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0xda79b763 snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL vmlinux 0xdaa517d3 crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0xdaabbe8e elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdabbd004 get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0xdadcf0bc devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xdae715e0 videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0xdaefd446 phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdb088cb1 pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xdb0e88be shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xdb44ef00 nd_device_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xdb51aac9 usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0xdb67b9ce snd_soc_test_bits -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdba29f28 ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0xdba631a6 rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0xdbb4c471 ablkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0xdbc5679c mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0xdbdcb406 cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0xdbdfa8f4 dev_pm_opp_get_freq -EXPORT_SYMBOL_GPL vmlinux 0xdbe7e355 vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdbf87e37 snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL vmlinux 0xdc004508 snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL vmlinux 0xdc281c00 spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0xdc3a9ff6 dev_pm_opp_find_freq_floor -EXPORT_SYMBOL_GPL vmlinux 0xdc461430 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable -EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdcdcca84 class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock -EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd59ef86 ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xdd79f866 devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0xdd7e2c02 tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0xdd82d022 fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0xdd848c3e pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0xddd6a7be devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdde1bd56 device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xdde395c3 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0xdde7b4d5 ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0xddfbf073 device_property_present -EXPORT_SYMBOL_GPL vmlinux 0xde02e755 rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0xde07772f skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0xde0c42cc tcp_death_row -EXPORT_SYMBOL_GPL vmlinux 0xde13709b ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0xde34146c wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xde5b5139 list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0xde5ef558 mtd_get_unmapped_area -EXPORT_SYMBOL_GPL vmlinux 0xde651f98 __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0xde6e2fba usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0xde8f9414 of_pci_parse_bus_range -EXPORT_SYMBOL_GPL vmlinux 0xdeafe050 crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0xdecd86a8 pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf164ac2 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL vmlinux 0xdf255dcf memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdf2e3721 regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0xdf38a330 sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xdf3b2e0a iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0xdf4eff58 bio_associate_current -EXPORT_SYMBOL_GPL vmlinux 0xdf957a6f ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0xdf9e9c34 skcipher_geniv_exit -EXPORT_SYMBOL_GPL vmlinux 0xdfc902dc inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xdfd5cb5d kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0xdfe857a9 irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xdfe94e10 crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name -EXPORT_SYMBOL_GPL vmlinux 0xe010b4c0 snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0xe02a88db skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0xe03823a4 iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0xe0455061 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe065ea58 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0xe06e4157 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0xe07ca631 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0xe0816994 snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL vmlinux 0xe081d804 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0b347e7 platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe0cc2404 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0xe0d1587c pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0xe0d7e7c2 md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0xe0de739c user_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe1073072 bus_find_device_by_name -EXPORT_SYMBOL_GPL vmlinux 0xe11acf1b sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL vmlinux 0xe11e7e45 for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0xe13ca002 pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0xe13e6e6e bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe18520f0 vcpu_put -EXPORT_SYMBOL_GPL vmlinux 0xe1a1f8f4 led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0xe1bc54c1 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0xe1d87577 md_new_event -EXPORT_SYMBOL_GPL vmlinux 0xe1f53080 usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0xe2076a1e tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0xe20c9f02 thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0xe247e44f ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0xe25363c2 bdev_direct_access -EXPORT_SYMBOL_GPL vmlinux 0xe2613306 cpsw_ale_stop -EXPORT_SYMBOL_GPL vmlinux 0xe26c2330 wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0xe278d6c1 ahash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0xe28983a3 snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength -EXPORT_SYMBOL_GPL vmlinux 0xe29055b7 thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xe2b89a48 sdhci_pltfm_register -EXPORT_SYMBOL_GPL vmlinux 0xe2bd1f82 devm_regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xe2df080b kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL vmlinux 0xe2f0e884 mddev_init -EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xe3565e48 usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0xe3571348 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xe371bb56 ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0xe37d36e2 gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xe3814921 pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xe3a5be07 gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0xe3a9ecc6 regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xe3d5a514 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0xe3ecd885 do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0xe3f953b1 cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0xe3fc7b8b driver_register -EXPORT_SYMBOL_GPL vmlinux 0xe422138c extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xe42e1f70 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe45047ab snd_soc_limit_volume -EXPORT_SYMBOL_GPL vmlinux 0xe45a0c09 scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xe47c05d1 blkg_prfill_stat -EXPORT_SYMBOL_GPL vmlinux 0xe48095d0 gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4aac3e0 pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0xe4b8b941 alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0xe4c22565 cpdma_chan_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto -EXPORT_SYMBOL_GPL vmlinux 0xe50d8781 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq -EXPORT_SYMBOL_GPL vmlinux 0xe5c64c4e blkdev_read_iter -EXPORT_SYMBOL_GPL vmlinux 0xe5cde33a tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0xe5d5bdef do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xe5e55d76 ahci_ops -EXPORT_SYMBOL_GPL vmlinux 0xe5ed2fdb devm_snd_soc_register_card -EXPORT_SYMBOL_GPL vmlinux 0xe60440cf ahci_platform_init_host -EXPORT_SYMBOL_GPL vmlinux 0xe60ccbce mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0xe60eb35b dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0xe6144159 tpm2_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0xe61640be attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0xe63cbb70 init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0xe645075d __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0xe645e9a9 phy_get -EXPORT_SYMBOL_GPL vmlinux 0xe651c47e pwm_enable -EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe658c603 pwm_config -EXPORT_SYMBOL_GPL vmlinux 0xe665765a devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0xe669a96b set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0xe66b5945 clk_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xe69d7a33 crypto_alloc_ablkcipher -EXPORT_SYMBOL_GPL vmlinux 0xe6b27fef blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module -EXPORT_SYMBOL_GPL vmlinux 0xe6ded94a blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen -EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xe7079fdf snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL vmlinux 0xe71dba04 snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL vmlinux 0xe72ebb2b scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0xe74c9b64 devm_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xe76149e6 device_rename -EXPORT_SYMBOL_GPL vmlinux 0xe761774b simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0xe79337a6 of_get_display_timings -EXPORT_SYMBOL_GPL vmlinux 0xe7adba2a uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0xe7bad929 usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0xe7c2151b smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0xe7e0d5a6 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr -EXPORT_SYMBOL_GPL vmlinux 0xe80939bb wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0xe817fdab regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe82004f9 cpsw_ale_flush_multicast -EXPORT_SYMBOL_GPL vmlinux 0xe8400819 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe856e203 input_class -EXPORT_SYMBOL_GPL vmlinux 0xe858cb37 reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit -EXPORT_SYMBOL_GPL vmlinux 0xe85aca05 ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe87b6ac9 snd_soc_write -EXPORT_SYMBOL_GPL vmlinux 0xe87ff2c1 pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0xe8a03510 phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe8a246f6 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0xe8b32430 simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0xe8c042ad __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0xe8c2189e vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0xe8ee3f9c snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL vmlinux 0xe8f1e74e cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0xe9063020 debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0xe9233d95 nd_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe952413a inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0xe9527be2 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe95b93ba xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0xe9640d94 __compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0xe9809997 virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0xe98c647a pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0xe9955afb fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0xe997a768 btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0xe9ab9bc2 component_add -EXPORT_SYMBOL_GPL vmlinux 0xe9b2b6a3 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0xe9c6dec1 swiotlb_tbl_map_single -EXPORT_SYMBOL_GPL vmlinux 0xe9c8fce0 fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9feae74 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea16c0f0 snd_soc_register_platform -EXPORT_SYMBOL_GPL vmlinux 0xea1bb291 bL_switcher_get_enabled -EXPORT_SYMBOL_GPL vmlinux 0xea1f6e0e hugetlb_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xea2a48e4 snd_soc_dpcm_be_set_state -EXPORT_SYMBOL_GPL vmlinux 0xea2f706e debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0xea503168 pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xea922581 vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0xea930363 of_pci_get_devfn -EXPORT_SYMBOL_GPL vmlinux 0xea98b869 get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0xeac187b9 percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0xeafdfc63 ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0xeb0731e5 percpu_up_read -EXPORT_SYMBOL_GPL vmlinux 0xeb13d02b gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0xeb344522 snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL vmlinux 0xeb47d8e4 driver_attach -EXPORT_SYMBOL_GPL vmlinux 0xeb5187c9 ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xeb6462d8 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xeb70a5b6 sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xebb3592b snmp_get_cpu_field64 -EXPORT_SYMBOL_GPL vmlinux 0xebb7e578 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0xebb940d3 pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xebb9f152 transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0xebbb9d99 pci_intx -EXPORT_SYMBOL_GPL vmlinux 0xebbe1622 io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xebcab8da trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0xebd7877d __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xebe88bd2 trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xebfea5da devm_pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare -EXPORT_SYMBOL_GPL vmlinux 0xec225d00 sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del -EXPORT_SYMBOL_GPL vmlinux 0xec49d3b4 vcpu_load -EXPORT_SYMBOL_GPL vmlinux 0xec5f2463 device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0xec6afdb1 lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xec7533d3 __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xec8d306b wakeup_source_drop -EXPORT_SYMBOL_GPL vmlinux 0xec922cd0 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0xecb2d256 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0xecb5df1f debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xecc5ad2f alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0xecc6c1f0 of_genpd_del_provider -EXPORT_SYMBOL_GPL vmlinux 0xecdeca20 mount_mtd -EXPORT_SYMBOL_GPL vmlinux 0xecf7d2d7 arizona_of_get_type -EXPORT_SYMBOL_GPL vmlinux 0xecfd8761 usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xed04c00a fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0xed23d082 tps65217_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xed399e85 da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0xed76356d pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0xed7dc80c tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0xed80b0dd irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0xedc00de6 device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xedc22bf3 ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0xedc6aee0 thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xedd76a3f power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0xeddfa206 ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0xede44b52 pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0xedf0a669 task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0xedf38710 led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0xedf52ffe wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0xee34b0eb ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0xee3d925e usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0xee489427 tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0xee62fa53 skb_gso_transport_seglen -EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible -EXPORT_SYMBOL_GPL vmlinux 0xee79d158 ahci_platform_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0xee8d7539 cpdma_chan_start -EXPORT_SYMBOL_GPL vmlinux 0xee92bf87 __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xee94c75a crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0xeea96e5f mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0xeec8aef3 ahci_reset_controller -EXPORT_SYMBOL_GPL vmlinux 0xeecae52b snd_soc_platform_write -EXPORT_SYMBOL_GPL vmlinux 0xeee7b821 pci_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xef409b74 kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef5ea897 PageHuge -EXPORT_SYMBOL_GPL vmlinux 0xef66075c usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef778618 of_irq_get_byname -EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefa41bc2 ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0xefaf23bb class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xefc386e6 ata_scsi_simulate -EXPORT_SYMBOL_GPL vmlinux 0xf00848dc crypto_ahash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0xf00b47de dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0xf031becf netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0xf042611a __of_genpd_xlate_simple -EXPORT_SYMBOL_GPL vmlinux 0xf0512078 ahci_platform_disable_resources -EXPORT_SYMBOL_GPL vmlinux 0xf059e6ac clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0xf06a4305 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xf06d538a iommu_map -EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xf07a157d ping_hash -EXPORT_SYMBOL_GPL vmlinux 0xf0852f67 fat_detach -EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xf0d6a7b7 pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf0e57433 sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0xf112d524 mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0xf115f3fa gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xf11db8a2 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0xf12caf22 clk_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0xf12cfc23 pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0xf13d82ce ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0xf14307cc led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0xf1474fa8 wm8400_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf19bc520 scsi_internal_device_unblock -EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key -EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on -EXPORT_SYMBOL_GPL vmlinux 0xf1bb4b6c virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0xf1ce2332 sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xf1cef55c pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xf1db8836 gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0xf1e12927 nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xf1e8c78b of_gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0xf1f16c9e unregister_jprobes -EXPORT_SYMBOL_GPL vmlinux 0xf1f27a5e mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL vmlinux 0xf1f86871 devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xf1fb768f nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0xf2019018 tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0xf20911d9 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf22a3450 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xf247f0a8 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0xf254dc5b crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0xf26a4f0e regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xf27762ff nd_region_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0xf285c7af of_devfreq_cooling_register_power -EXPORT_SYMBOL_GPL vmlinux 0xf28f0043 __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0xf2a9631f mtd_device_parse_register -EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support -EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xf30fda27 lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf326f042 wait_on_page_bit_killable_timeout -EXPORT_SYMBOL_GPL vmlinux 0xf32e9e9d pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf33c83e8 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0xf340677f sdhci_get_of_property -EXPORT_SYMBOL_GPL vmlinux 0xf3475372 snd_soc_get_enum_double -EXPORT_SYMBOL_GPL vmlinux 0xf35dd68c dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0xf3761f09 l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xf37c6786 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf3acbc8c usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0xf3c3d282 of_get_display_timing -EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xf3f5e635 fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xf4059843 ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xf42151f5 class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xf422230b ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xf42a2feb dev_pm_opp_of_remove_table -EXPORT_SYMBOL_GPL vmlinux 0xf42efcef gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0xf4314e6c devm_pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0xf43c94eb device_add -EXPORT_SYMBOL_GPL vmlinux 0xf444bfd6 ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0xf4534c46 __sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0xf457e12c rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0xf467ec23 usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0xf47e1e01 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0xf4874398 max_gen_clk_ops -EXPORT_SYMBOL_GPL vmlinux 0xf48ceebd net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask -EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh -EXPORT_SYMBOL_GPL vmlinux 0xf49edca3 put_mtd_device -EXPORT_SYMBOL_GPL vmlinux 0xf4a20a41 crypto_givcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xf4da6042 platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf4fed3e1 i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0xf50098fa _gpiochip_irqchip_add -EXPORT_SYMBOL_GPL vmlinux 0xf5029583 sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xf5068be4 pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0xf5136112 crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0xf53883b1 fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf58af22f devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5a7dadc fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0xf5ae2437 kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL vmlinux 0xf5d081f0 system_trusted_keyring -EXPORT_SYMBOL_GPL vmlinux 0xf5d70f2e of_dma_router_register -EXPORT_SYMBOL_GPL vmlinux 0xf5dac218 mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0xf5f988e1 usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf5fe91db inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0xf60458e0 component_master_add_child -EXPORT_SYMBOL_GPL vmlinux 0xf604b933 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0xf60e0f5c securityfs_create_dentry -EXPORT_SYMBOL_GPL vmlinux 0xf6155990 snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL vmlinux 0xf61baa65 pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xf6299a21 pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0xf64ea43e regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0xf689823c snd_soc_lookup_platform -EXPORT_SYMBOL_GPL vmlinux 0xf68d6aaf dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0xf696d9dc usb_gadget_unmap_request -EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf70c903d fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0xf71a912d usb_add_gadget_udc -EXPORT_SYMBOL_GPL vmlinux 0xf73a160d percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0xf73c958d ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0xf7539aa2 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0xf76b0a59 read_current_timer -EXPORT_SYMBOL_GPL vmlinux 0xf7743a21 debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0xf791f2e6 snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL vmlinux 0xf7b883fb device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0xf7eb619f snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL vmlinux 0xf7ee29e5 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0xf7f151b7 wait_for_tpm_stat -EXPORT_SYMBOL_GPL vmlinux 0xf80369ad blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0xf811c371 stmpe_disable -EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf833d4dd pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xf8371d37 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0xf846506f irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf85968ee platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf87a8e7a crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xf89547dc blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xf8ab49fd irq_domain_add_simple -EXPORT_SYMBOL_GPL vmlinux 0xf8b18750 dma_buf_kunmap -EXPORT_SYMBOL_GPL vmlinux 0xf8ce3ba7 ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0xf8d5475a flush_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops -EXPORT_SYMBOL_GPL vmlinux 0xf8ea4a9c blkg_print_stat_ios -EXPORT_SYMBOL_GPL vmlinux 0xf8ef2f15 of_irq_to_resource -EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8f79b81 of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0xf90273c2 bus_register -EXPORT_SYMBOL_GPL vmlinux 0xf90294ad blkg_stat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0xf90ccbbb generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0xf92c31af da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf945e466 nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0xf951b85e led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf9896b0e perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9b6c210 iommu_present -EXPORT_SYMBOL_GPL vmlinux 0xf9b834de irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0xf9ba5079 __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xf9ca70bf pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0xf9da1e0d sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0xf9e64b06 arm_iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xf9fb0c62 spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start -EXPORT_SYMBOL_GPL vmlinux 0xfa26f622 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xfa2ca778 irq_of_parse_and_map -EXPORT_SYMBOL_GPL vmlinux 0xfa413a01 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xfa531e51 thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xfa5bfb0a driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0xfa629902 usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0xfa714835 sdhci_pltfm_free -EXPORT_SYMBOL_GPL vmlinux 0xfaa7afec device_remove_property_set -EXPORT_SYMBOL_GPL vmlinux 0xfaab3c4d tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0xfaaf544b inet_hash -EXPORT_SYMBOL_GPL vmlinux 0xfab537eb snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL vmlinux 0xfacaec08 usb_gadget_probe_driver -EXPORT_SYMBOL_GPL vmlinux 0xfacf1ad6 srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0xfb2694a3 net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0xfb27be5e __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb4aa794 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0xfb51c2ba ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0xfb573566 register_mtd_user -EXPORT_SYMBOL_GPL vmlinux 0xfb597ee8 usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0xfb6a30e8 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb78ad94 wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0xfb90875b handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0xfb94f014 usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0xfb970d6d crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0xfbabefb5 tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0xfbb72ca9 ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbd94f57 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0xfbf22fb1 sdhci_set_clock -EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc098080 ref_module -EXPORT_SYMBOL_GPL vmlinux 0xfc137067 tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0xfc5e6b93 pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xfc7c179b tpm2_startup -EXPORT_SYMBOL_GPL vmlinux 0xfc9529c1 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0xfc95943a enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xfc961e17 dt_init_idle_driver -EXPORT_SYMBOL_GPL vmlinux 0xfcbb0968 put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xfcc84250 sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0xfccfdf19 spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0xfd07cc53 usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xfd08ae20 snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL vmlinux 0xfd131f62 snd_soc_card_jack_new -EXPORT_SYMBOL_GPL vmlinux 0xfd2d9454 scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xfd2e78fa power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xfd41c7ce btree_merge -EXPORT_SYMBOL_GPL vmlinux 0xfd46fe27 sdhci_add_host -EXPORT_SYMBOL_GPL vmlinux 0xfd515eef usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0xfd5f1005 relay_open -EXPORT_SYMBOL_GPL vmlinux 0xfd74b611 __module_address -EXPORT_SYMBOL_GPL vmlinux 0xfd770c33 of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack -EXPORT_SYMBOL_GPL vmlinux 0xfd7b4806 pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0xfd9d9916 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xfdb74aca pci_ats_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xfdc2f8d0 adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xfdc8dfa8 sdhci_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0xfdcae14e usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0xfdcae422 __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0xfdcef86d nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xfdd5180a securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xfde1a33e klist_prev -EXPORT_SYMBOL_GPL vmlinux 0xfde1d386 ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xfdec5195 syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xfdf94f60 stmpe_block_write -EXPORT_SYMBOL_GPL vmlinux 0xfe009c06 hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0xfe033772 amba_device_put -EXPORT_SYMBOL_GPL vmlinux 0xfe2423b3 sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0xfe4537b6 tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0xfe610922 __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfe9cd0ec kthread_park -EXPORT_SYMBOL_GPL vmlinux 0xfeac5c21 usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0xfeb2eb84 md_run -EXPORT_SYMBOL_GPL vmlinux 0xfebb0e51 snd_soc_cnew -EXPORT_SYMBOL_GPL vmlinux 0xfebbf618 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0xfebeebf3 pwmchip_add_with_polarity -EXPORT_SYMBOL_GPL vmlinux 0xfec61878 vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfed973f7 phy_put -EXPORT_SYMBOL_GPL vmlinux 0xfedd6a7f pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xfee061d9 __netpoll_free_async -EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff270100 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0xff5c99b3 uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xff64d7df omap_dm_timer_set_load -EXPORT_SYMBOL_GPL vmlinux 0xff6b5e43 wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xff79cc5f kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xff87fda5 regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0xffa3622b thermal_generate_netlink_event -EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0xffd33078 unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0xffe58960 regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xffe697d9 gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0xffea8d96 omapdss_of_get_next_port reverted: --- linux-raspi2-4.4.0/debian.master/abi/4.4.0-89.112/armhf/generic-lpae.compiler +++ linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-89.112/armhf/generic-lpae.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu/Linaro 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 reverted: --- linux-raspi2-4.4.0/debian.master/abi/4.4.0-89.112/armhf/generic-lpae.modules +++ linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-89.112/armhf/generic-lpae.modules @@ -1,4539 +0,0 @@ -3w-9xxx -3w-sas -3w-xxxx -6lowpan -6pack -8021q -8139cp -8139too -8250_dw -8250_mid -8250_omap -8250_uniphier -8255 -8255_pci -8390 -842 -842_compress -842_decompress -88pm800 -88pm805 -88pm80x -88pm80x_onkey -88pm8607 -88pm860x-ts -88pm860x_battery -88pm860x_bl -88pm860x_charger -88pm860x_onkey -9p -9pnet -9pnet_rdma -9pnet_virtio -DAC960 -a100u2w -a3d -a8293 -aacraid -aat2870-regulator -aat2870_bl -ab3100 -ab3100-otp -ablk_helper -acard-ahci -acecad -acenic -act200l-sir -act8865-regulator -act_bpf -act_connmark -act_csum -act_gact -act_ipt -act_mirred -act_nat -act_pedit -act_police -act_simple -act_skbedit -act_vlan -actisys-sir -ad2s1200 -ad2s1210 -ad2s90 -ad5064 -ad525x_dpot -ad525x_dpot-i2c -ad525x_dpot-spi -ad5360 -ad5380 -ad5398 -ad5421 -ad5446 -ad5449 -ad5504 -ad5592r -ad5592r-base -ad5593r -ad5624r_spi -ad5686 -ad5755 -ad5764 -ad5791 -ad5933 -ad714x -ad714x-i2c -ad714x-spi -ad7150 -ad7152 -ad7192 -ad7266 -ad7280a -ad7291 -ad7298 -ad7303 -ad7314 -ad7414 -ad7418 -ad7476 -ad7606 -ad7746 -ad7780 -ad7791 -ad7793 -ad7816 -ad7877 -ad7879 -ad7879-i2c -ad7879-spi -ad7887 -ad7923 -ad799x -ad8366 -ad9523 -ad9832 -ad9834 -ad_sigma_delta -adc128d818 -adcxx -addi_apci_1032 -addi_apci_1500 -addi_apci_1516 -addi_apci_1564 -addi_apci_16xx -addi_apci_2032 -addi_apci_2200 -addi_apci_3120 -addi_apci_3501 -addi_apci_3xxx -addi_watchdog -ade7753 -ade7754 -ade7758 -ade7759 -ade7854 -ade7854-i2c -ade7854-spi -adf4350 -adfs -adi -adis16060 -adis16080 -adis16130 -adis16136 -adis16201 -adis16203 -adis16204 -adis16209 -adis16220 -adis16240 -adis16260 -adis16400 -adis16480 -adis_lib -adjd_s311 -adl_pci6208 -adl_pci7x3x -adl_pci8164 -adl_pci9111 -adl_pci9118 -adm1021 -adm1025 -adm1026 -adm1029 -adm1031 -adm1275 -adm8211 -adm9240 -adp5520-keys -adp5520_bl -adp5588-keys -adp5589-keys -adp8860_bl -adp8870_bl -adq12b -ads1015 -ads7828 -ads7846 -ads7871 -adt7310 -adt7316 -adt7316-i2c -adt7316-spi -adt7410 -adt7411 -adt7462 -adt7470 -adt7475 -adt7x10 -adummy -adutux -adv7511 -adv7604 -adv7842 -adv_pci1710 -adv_pci1723 -adv_pci1724 -adv_pci_dio -advansys -adxl34x -adxl34x-i2c -adxl34x-spi -adxrs450 -aes-arm -aes-arm-bs -aes-arm-ce -af-rxrpc -af9013 -af9033 -af_alg -af_key -af_packet_diag -affs -afs -ah4 -ah6 -ahci -ahci_ceva -ahci_mvebu -ahci_qoriq -aic79xx -aic7xxx -aic94xx -aim_cdev -aim_network -aim_sound -aim_v4l2 -aio_aio12_8 -aio_iiro_16 -aiptek -aircable -airspy -ak8975 -al3320a -algif_aead -algif_hash -algif_rng -algif_skcipher -alim7101_wdt -altera-ci -altera-stapl -altera_jtaguart -altera_ps2 -altera_tse -altera_uart -alx -am35x -am53c974 -amba-pl010 -ambakmi -amc6821 -amd -amd5536udc -amd8111e -amdgpu -amplc_dio200 -amplc_dio200_common -amplc_dio200_pci -amplc_pc236 -amplc_pc236_common -amplc_pc263 -amplc_pci224 -amplc_pci230 -amplc_pci236 -amplc_pci263 -ams369fg06 -analog -anatop-regulator -ansi_cprng -anubis -aoe -apbps2 -apds9300 -apds9802als -apds990x -apds9960 -appledisplay -appletalk -appletouch -applicom -aquantia -ar1021_i2c -ar5523 -ar7part -arc-rawmode -arc-rimi -arc4 -arc_emac -arc_ps2 -arc_uart -arcmsr -arcnet -arizona-haptics -arizona-i2c -arizona-ldo1 -arizona-micsupp -arizona-spi -ark3116 -arkfb -arm_big_little -arm_big_little_dt -arm_mhu -arm_scpi -armada -arp_tables -arpt_mangle -arptable_filter -as102_fe -as3711-regulator -as3711_bl -as3722-regulator -as3935 -as5011 -asc7621 -ascot2e -asix -ast -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at24 -at25 -at76c50x-usb -at803x -at86rf230 -ata_generic -ata_piix -atbm8830 -aten -ath -ath10k_core -ath10k_pci -ath3k -ath5k -ath6kl_core -ath6kl_sdio -ath6kl_usb -ath9k -ath9k_common -ath9k_htc -ath9k_hw -ati_remote -ati_remote2 -atl1 -atl1c -atl1e -atl2 -atm -atmel -atmel-flexcom -atmel-hlcdc -atmel-hlcdc-dc -atmel_mxt_ts -atmel_pci -atmtcp -atp870u -atusb -atxp1 -aty128fb -atyfb -au0828 -au8522_common -au8522_decoder -au8522_dig -aufs -auo-pixcir-ts -auo_k1900fb -auo_k1901fb -auo_k190x -auth_rpcgss -authenc -authencesn -autofs4 -avmfritz -ax25 -ax88179_178a -ax88796 -axp20x-pek -axp20x-regulator -axp20x_usb_power -axp288_adc -axp288_charger -axp288_fuel_gauge -b1 -b1dma -b1pci -b2c2-flexcop -b2c2-flexcop-pci -b2c2-flexcop-usb -b43 -b43legacy -b44 -bL_switcher_dummy_if -bas_gigaset -batman-adv -baycom_epp -baycom_par -baycom_ser_fdx -baycom_ser_hdx -bcache -bcm-keypad -bcm-phy-lib -bcm203x -bcm3510 -bcm590xx -bcm590xx-regulator -bcm5974 -bcm63138_nand -bcm63xx_uart -bcm7038_wdt -bcm7xxx -bcm87xx -bcma -bcmsysport -bd6107 -bdc -bdc_pci -be2iscsi -be2net -befs -belkin_sa -berlin2-adc -bfa -bfs -bfusb -bh1750 -bh1770glc -bh1780gli -binfmt_misc -block2mtd -blocklayoutdriver -blowfish_common -blowfish_generic -bluetooth -bluetooth_6lowpan -bma150 -bma180 -bmc150-accel-core -bmc150-accel-i2c -bmc150-accel-spi -bmc150_magn -bmg160_core -bmg160_i2c -bmg160_spi -bmp085 -bmp085-i2c -bmp085-spi -bmp280 -bna -bnep -bnx2 -bnx2fc -bnx2i -bnx2x -bnxt_en -bonding -bpa10x -bpck -bpck6 -bpqether -bq2415x_charger -bq24190_charger -bq24257_charger -bq24735-charger -bq25890_charger -bq27xxx_battery -br2684 -br_netfilter -brcmfmac -brcmnand -brcmsmac -brcmstb_nand -brcmutil -brd -bridge -broadcom -broadsheetfb -bsd_comp -bt878 -btbcm -btcoexist -btintel -btmrvl -btmrvl_sdio -btqca -btrfs -btrtl -btsdio -bttv -btusb -btwilink -bu21013_ts -budget -budget-av -budget-ci -budget-core -budget-patch -c4 -c67x00 -c6xdigio -c_can -c_can_pci -c_can_platform -cachefiles -cadence_wdt -cafe_ccic -cafe_nand -caif -caif_hsi -caif_serial -caif_socket -caif_usb -caif_virtio -camellia_generic -can -can-bcm -can-dev -can-gw -can-raw -cap11xx -capi -capidrv -capmode -carl9170 -carminefb -cassini -cast5_generic -cast6_generic -cast_common -catc -cb710 -cb710-mmc -cb_pcidas -cb_pcidas64 -cb_pcidda -cb_pcimdas -cb_pcimdda -cc10001_adc -cc2520 -cc770 -cc770_isa -cc770_platform -cciss -ccm -cdc-acm -cdc-phonet -cdc-wdm -cdc_eem -cdc_ether -cdc_mbim -cdc_ncm -cdc_subset -ceph -cfg80211 -cfi_cmdset_0001 -cfi_cmdset_0002 -cfi_cmdset_0020 -cfi_probe -cfi_util -cfspi_slave -ch -ch341 -ch7006 -ch9200 -chacha20_generic -chacha20poly1305 -chaoskey -chipone_icn8318 -chnl_net -ci_hdrc -ci_hdrc_imx -ci_hdrc_msm -ci_hdrc_pci -ci_hdrc_usb2 -ci_hdrc_zevio -cicada -cifs -cirrus -cirrusfb -clip -clk-cdce706 -clk-cdce925 -clk-max77686 -clk-max77802 -clk-palmas -clk-pwm -clk-qcom -clk-rk808 -clk-s2mps11 -clk-scpi -clk-si514 -clk-si5351 -clk-si570 -clk-twl6040 -clk-wm831x -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_rsvp -cls_rsvp6 -cls_tcindex -cls_u32 -cm109 -cm32181 -cm3232 -cm3323 -cm36651 -cma3000_d0x -cma3000_d0x_i2c -cmac -cmtp -cnic -cobalt -cobra -coda -colibri-vf50-ts -com20020 -com20020-pci -com90io -com90xx -comedi -comedi_8254 -comedi_8255 -comedi_bond -comedi_parport -comedi_pci -comedi_test -comedi_usb -comm -configfs -connector-analog-tv -connector-dvi -contec_pci_dio -cordic -core -cp210x -cpia2 -cppi41 -cpu-notifier-error-inject -cramfs -crc-ccitt -crc-itu-t -crc32 -crc7 -crc8 -cros_ec -cros_ec_devs -cros_ec_i2c -cros_ec_keyb -cros_ec_spi -cryptd -crypto_user -cryptoloop -cs5345 -cs53l32a -cs89x0 -csiostor -ctr -cts -cuse -cw1200_core -cw1200_wlan_sdio -cw1200_wlan_spi -cx18 -cx18-alsa -cx22700 -cx22702 -cx231xx -cx231xx-alsa -cx231xx-dvb -cx2341x -cx23885 -cx24110 -cx24113 -cx24116 -cx24117 -cx24120 -cx24123 -cx25821 -cx25821-alsa -cx25840 -cx82310_eth -cx88-alsa -cx88-blackbird -cx88-dvb -cx88-vp3054-i2c -cx8800 -cx8802 -cx88xx -cxacru -cxd2099 -cxd2820r -cxd2841er -cxgb -cxgb3 -cxgb3i -cxgb4 -cxgb4i -cxgb4vf -cy8ctmg110_ts -cyapatp -cyber2000fb -cyberjack -cyclades -cypress_cy7c63 -cypress_firmware -cypress_m8 -cytherm -cyttsp4_core -cyttsp4_i2c -cyttsp4_spi -cyttsp_core -cyttsp_i2c -cyttsp_i2c_common -cyttsp_spi -da9030_battery -da9034-ts -da903x -da903x_bl -da9052-battery -da9052-hwmon -da9052-regulator -da9052_bl -da9052_onkey -da9052_tsi -da9052_wdt -da9055-hwmon -da9055-regulator -da9055_onkey -da9055_wdt -da9062-core -da9062-regulator -da9062_wdt -da9063-regulator -da9063_onkey -da9063_wdt -da9150-charger -da9150-core -da9150-fg -da9150-gpadc -da9210-regulator -da9211-regulator -dac02 -daqboard2000 -das08 -das08_isa -das08_pci -das16 -das16m1 -das1800 -das6402 -das800 -davicom -db9 -dc395x -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -dccp_probe -ddbridge -de2104x -decnet -deflate -defxx -denali -denali_dt -denali_pci -des_generic -designware_i2s -dgap -dgnc -dht11 -dib0070 -dib0090 -dib3000mb -dib3000mc -dib7000m -dib7000p -dib8000 -dibx000_common -digi_acceleport -digicolor-usart -diskonchip -diva_idi -diva_mnt -divacapi -divadidd -divas -dl2k -dlci -dlm -dln2 -dm-bio-prison -dm-bufio -dm-cache -dm-cache-cleaner -dm-cache-mq -dm-cache-smq -dm-crypt -dm-delay -dm-era -dm-flakey -dm-log -dm-log-userspace -dm-log-writes -dm-mirror -dm-multipath -dm-persistent-data -dm-queue-length -dm-raid -dm-region-hash -dm-round-robin -dm-service-time -dm-snapshot -dm-switch -dm-thin-pool -dm-verity -dm-zero -dm1105 -dm9000 -dm9601 -dme1737 -dmfe -dmm32at -dmx3191d -dn_rtmsg -dnet -docg3 -docg4 -dove_thermal -dp83848 -dp83867 -drbd -drbg -drm -drm_kms_helper -drop_monitor -drv260x -drv2665 -drv2667 -drx39xyj -drxd -drxk -ds1621 -ds1682 -ds1wm -ds2482 -ds2490 -ds2760_battery -ds2780_battery -ds2781_battery -ds2782_battery -ds3000 -ds620 -dsbr100 -dscc4 -dss1_divert -dst -dst_ca -dstr -dt2801 -dt2811 -dt2814 -dt2815 -dt2817 -dt282x -dt3000 -dt3155 -dt9812 -dummy -dummy-irq -dummy_stm -dvb-as102 -dvb-bt8xx -dvb-core -dvb-pll -dvb-ttpci -dvb-ttusb-budget -dvb-usb -dvb-usb-a800 -dvb-usb-af9005 -dvb-usb-af9005-remote -dvb-usb-af9015 -dvb-usb-af9035 -dvb-usb-anysee -dvb-usb-au6610 -dvb-usb-az6007 -dvb-usb-az6027 -dvb-usb-ce6230 -dvb-usb-cinergyT2 -dvb-usb-cxusb -dvb-usb-dib0700 -dvb-usb-dibusb-common -dvb-usb-dibusb-mb -dvb-usb-dibusb-mc -dvb-usb-digitv -dvb-usb-dtt200u -dvb-usb-dtv5100 -dvb-usb-dvbsky -dvb-usb-dw2102 -dvb-usb-ec168 -dvb-usb-friio -dvb-usb-gl861 -dvb-usb-gp8psk -dvb-usb-lmedm04 -dvb-usb-m920x -dvb-usb-mxl111sf -dvb-usb-nova-t-usb2 -dvb-usb-opera -dvb-usb-pctv452e -dvb-usb-rtl28xxu -dvb-usb-technisat-usb2 -dvb-usb-ttusb2 -dvb-usb-umt-010 -dvb-usb-vp702x -dvb-usb-vp7045 -dvb_usb_v2 -dw_dmac -dw_dmac_core -dw_dmac_pci -dw_hdmi -dw_hdmi-ahb-audio -dw_hdmi-imx -dw_hdmi-rockchip -dw_mmc -dw_mmc-exynos -dw_mmc-k3 -dw_mmc-pci -dw_mmc-pltfm -dw_mmc-rockchip -dw_wdt -dwc3 -dwc3-exynos -dwc3-omap -dwc3-pci -dwc3-qcom -dwc_eth_qos -dwmac-generic -dwmac-ipq806x -dwmac-lpc18xx -dwmac-meson -dwmac-rk -dwmac-socfpga -dwmac-sti -dwmac-sunxi -dyna_pci10xx -dynapro -e100 -e1000 -e1000e -e3x0-button -e4000 -earth-pt1 -earth-pt3 -ebt_802_3 -ebt_among -ebt_arp -ebt_arpreply -ebt_dnat -ebt_ip -ebt_ip6 -ebt_limit -ebt_log -ebt_mark -ebt_mark_m -ebt_nflog -ebt_pkttype -ebt_redirect -ebt_snat -ebt_stp -ebt_vlan -ebtable_broute -ebtable_filter -ebtable_nat -ebtables -ec100 -echainiv -echo -edac_core -edt-ft5x06 -eeprom -eeprom_93cx6 -eeprom_93xx46 -eeti_ts -efs -egalax_ts -ehci-msm -ehci-omap -ehset -elan_i2c -elo -em28xx -em28xx-alsa -em28xx-dvb -em28xx-rc -em28xx-v4l -em_canid -em_cmp -em_ipset -em_meta -em_nbyte -em_text -em_u32 -emac_arc -emac_rockchip -emc1403 -emc2103 -emc6w201 -emi26 -emi62 -emif -empeg -ems_pci -ems_usb -emu10k1-gp -enc28j60 -enclosure -encoder-opa362 -encoder-tfp410 -encx24j600 -encx24j600-regmap -eni -enic -epat -epia -epic100 -eql -esas2r -esd_usb2 -esi-sir -esp4 -esp6 -esp_scsi -et1011c -et131x -ethoc -evbug -exofs -extcon-adc-jack -extcon-arizona -extcon-axp288 -extcon-gpio -extcon-max14577 -extcon-max77693 -extcon-max77843 -extcon-max8997 -extcon-palmas -extcon-rt8973a -extcon-sm5502 -extcon-usb-gpio -exynos-gsc -exynos-rng -exynos_adc -exynosdrm -ezusb -f2fs -f71805f -f71882fg -f75375s -f81232 -fakelb -fan53555 -farsync -faulty -fb_agm1264k-fl -fb_bd663474 -fb_ddc -fb_hx8340bn -fb_hx8347d -fb_hx8353d -fb_hx8357d -fb_ili9163 -fb_ili9320 -fb_ili9325 -fb_ili9340 -fb_ili9341 -fb_ili9481 -fb_ili9486 -fb_pcd8544 -fb_ra8875 -fb_s6d02a1 -fb_s6d1121 -fb_ssd1289 -fb_ssd1306 -fb_ssd1331 -fb_ssd1351 -fb_st7735r -fb_st7789v -fb_sys_fops -fb_tinylcd -fb_tls8204 -fb_uc1611 -fb_uc1701 -fb_upd161704 -fb_watterott -fbtft -fbtft_device -fc0011 -fc0012 -fc0013 -fc2580 -fcoe -fcrypt -fdomain -fdp -fdp_i2c -fealnx -ff-memless -firedtv -firewire-core -firewire-net -firewire-ohci -firewire-sbp2 -firewire-serial -fit2 -fit3 -fl512 -flexcan -flexfb -fm10k -fm801-gp -fm_drv -fmc -fmc-chardev -fmc-fakedev -fmc-trivial -fmc-write-eeprom -forcedeth -fore_200e -fotg210-hcd -fotg210-udc -fou -fpga-mgr -freevxfs -friq -frpw -fsa9480 -fscache -fsl-dcu-drm -fsl-edma -fsl_lpuart -ft6236 -ftdi-elan -ftdi_sio -ftgmac100 -ftl -ftmac100 -fujitsu_ts -g450_pll -g760a -g762 -g_acm_ms -g_audio -g_cdc -g_dbgp -g_ether -g_ffs -g_hid -g_mass_storage -g_midi -g_multi -g_ncm -g_nokia -g_printer -g_serial -g_webcam -g_zero -gadgetfs -gamecon -gameport -garmin_gps -garp -gcc-apq8084 -gcc-ipq806x -gcc-msm8660 -gcc-msm8916 -gcc-msm8960 -gcc-msm8974 -gcm -gdmtty -gdmulte -gdmwm -gen_probe -generic -generic-adc-battery -generic_bl -genet -geneve -gennvm -gf128mul -gf2k -gfs2 -ghash-arm-ce -ghash-generic -gigaset -girbil-sir -gl518sm -gl520sm -gl620a -gluebi -go7007 -go7007-loader -go7007-usb -goku_udc -goodix -gp2ap002a00f -gp2ap020a00f -gpio -gpio-74x164 -gpio-74xx-mmio -gpio-addr-flash -gpio-adnp -gpio-adp5520 -gpio-adp5588 -gpio-altera -gpio-amd8111 -gpio-arizona -gpio-beeper -gpio-charger -gpio-crystalcove -gpio-da9052 -gpio-da9055 -gpio-dln2 -gpio-dwapb -gpio-fan -gpio-grgpio -gpio-ir-recv -gpio-janz-ttl -gpio-kempld -gpio-lp3943 -gpio-max7300 -gpio-max7301 -gpio-max730x -gpio-max732x -gpio-mc33880 -gpio-mcp23s08 -gpio-ml-ioh -gpio-pca953x -gpio-pcf857x -gpio-rcar -gpio-rdc321x -gpio-regulator -gpio-syscon -gpio-tps65912 -gpio-ucb1400 -gpio-viperboard -gpio-vx855 -gpio-wm831x -gpio-wm8350 -gpio-wm8994 -gpio_backlight -gpio_keys -gpio_keys_polled -gpio_mouse -gpio_tilt_polled -gpio_wdt -gr_udc -grace -grcan -gre -grip -grip_mp -gs_fpga -gs_usb -gsc_hpdi -gspca_benq -gspca_conex -gspca_cpia1 -gspca_dtcs033 -gspca_etoms -gspca_finepix -gspca_gl860 -gspca_jeilinj -gspca_jl2005bcd -gspca_kinect -gspca_konica -gspca_m5602 -gspca_main -gspca_mars -gspca_mr97310a -gspca_nw80x -gspca_ov519 -gspca_ov534 -gspca_ov534_9 -gspca_pac207 -gspca_pac7302 -gspca_pac7311 -gspca_se401 -gspca_sn9c2028 -gspca_sn9c20x -gspca_sonixb -gspca_sonixj -gspca_spca1528 -gspca_spca500 -gspca_spca501 -gspca_spca505 -gspca_spca506 -gspca_spca508 -gspca_spca561 -gspca_sq905 -gspca_sq905c -gspca_sq930x -gspca_stk014 -gspca_stk1135 -gspca_stv0680 -gspca_stv06xx -gspca_sunplus -gspca_t613 -gspca_topro -gspca_touptek -gspca_tv8532 -gspca_vc032x -gspca_vicam -gspca_xirlink_cit -gspca_zc3xx -gtco -guillemot -gunze -gxt4500 -hackrf -hamachi -hampshire -hanwang -hci -hci_uart -hci_vhci -hdc100x -hdlc -hdlc_cisco -hdlc_fr -hdlc_ppp -hdlc_raw -hdlc_raw_eth -hdlc_x25 -hdlcdrv -hdm_dim2 -hdm_i2c -hdm_usb -hdpvr -he -hexium_gemini -hexium_orion -hfc4s8s_l1 -hfc_usb -hfcmulti -hfcpci -hfcsusb -hfs -hfsplus -hi6421-pmic-core -hi6421-regulator -hi8435 -hid -hid-a4tech -hid-alps -hid-apple -hid-appleir -hid-aureal -hid-axff -hid-belkin -hid-betopff -hid-cherry -hid-chicony -hid-corsair -hid-cp2112 -hid-cypress -hid-dr -hid-elecom -hid-elo -hid-emsff -hid-ezkey -hid-gaff -hid-gembird -hid-generic -hid-gfrm -hid-gt683r -hid-gyration -hid-holtek-kbd -hid-holtek-mouse -hid-holtekff -hid-icade -hid-kensington -hid-keytouch -hid-kye -hid-lcpower -hid-lenovo -hid-logitech -hid-logitech-dj -hid-logitech-hidpp -hid-magicmouse -hid-microsoft -hid-monterey -hid-multitouch -hid-ntrig -hid-ortek -hid-penmount -hid-petalynx -hid-picolcd -hid-pl -hid-plantronics -hid-primax -hid-prodikeys -hid-rmi -hid-roccat -hid-roccat-arvo -hid-roccat-common -hid-roccat-isku -hid-roccat-kone -hid-roccat-koneplus -hid-roccat-konepure -hid-roccat-kovaplus -hid-roccat-lua -hid-roccat-pyra -hid-roccat-ryos -hid-roccat-savu -hid-saitek -hid-samsung -hid-sensor-accel-3d -hid-sensor-als -hid-sensor-custom -hid-sensor-gyro-3d -hid-sensor-hub -hid-sensor-iio-common -hid-sensor-incl-3d -hid-sensor-magn-3d -hid-sensor-press -hid-sensor-prox -hid-sensor-rotation -hid-sensor-trigger -hid-sjoy -hid-sony -hid-speedlink -hid-steelseries -hid-sunplus -hid-thingm -hid-tivo -hid-tmff -hid-topseed -hid-twinhan -hid-uclogic -hid-waltop -hid-wiimote -hid-xinmo -hid-zpff -hid-zydacron -hidp -highbank-cpufreq -highbank_l2_edac -highbank_mc_edac -hih6130 -hip04_eth -hisax -hisax_fcpcipnp -hisax_isac -hisax_st5481 -hisi-acpu-cpufreq -hisi504_nand -hisi_thermal -hix5hd2_gmac -hmc5843_core -hmc5843_i2c -hmc5843_spi -hmc6352 -hnae -hns_dsaf -hns_enet_drv -hns_mdio -hopper -horus3a -hostap -hostap_pci -hostap_plx -hp100 -hpfs -hpilo -hpsa -hptiop -hsi -hsi_char -hso -hsr -hsu_dma -htc-pasic3 -hts221 -hts221_i2c -hts221_spi -htu21 -huawei_cdc_ncm -hwa-hc -hwa-rc -hwmon-vid -hwspinlock_core -hx8357 -hysdn -i1480-dfu-usb -i1480-est -i2400m -i2400m-usb -i2c-algo-bit -i2c-algo-pca -i2c-ali1535 -i2c-ali1563 -i2c-ali15x3 -i2c-amd756 -i2c-amd8111 -i2c-arb-gpio-challenge -i2c-axxia -i2c-cbus-gpio -i2c-cros-ec-tunnel -i2c-designware-core -i2c-designware-pci -i2c-designware-platform -i2c-diolan-u2c -i2c-dln2 -i2c-emev2 -i2c-exynos5 -i2c-gpio -i2c-hid -i2c-hix5hd2 -i2c-i801 -i2c-isch -i2c-kempld -i2c-matroxfb -i2c-meson -i2c-mt65xx -i2c-mux -i2c-mux-gpio -i2c-mux-pca9541 -i2c-mux-pca954x -i2c-mux-pinctrl -i2c-mux-reg -i2c-mv64xxx -i2c-nforce2 -i2c-nomadik -i2c-ocores -i2c-parport -i2c-parport-light -i2c-pca-platform -i2c-piix4 -i2c-qup -i2c-rcar -i2c-riic -i2c-rk3x -i2c-robotfuzz-osif -i2c-sh_mobile -i2c-simtec -i2c-sis5595 -i2c-sis630 -i2c-sis96x -i2c-slave-eeprom -i2c-smbus -i2c-stub -i2c-taos-evm -i2c-tiny-usb -i2c-uniphier -i2c-uniphier-f -i2c-versatile -i2c-via -i2c-viapro -i2c-viperboard -i2c-xiic -i40e -i40evf -i5k_amb -i6300esb -i740fb -ib_addr -ib_cm -ib_core -ib_ipoib -ib_iser -ib_isert -ib_mad -ib_mthca -ib_sa -ib_srp -ib_srpt -ib_ucm -ib_umad -ib_uverbs -ibmaem -ibmpex -icp_multi -icplus -ics932s401 -idma64 -idmouse -idt77252 -ieee802154 -ieee802154_6lowpan -ieee802154_socket -ifb -iforce -igb -igbvf -igorplugusb -iguanair -ii_pci20kc -iio-trig-interrupt -iio-trig-periodic-rtc -iio-trig-sysfs -iio_dummy -iio_hwmon -ila -ili210x -ili922x -ili9320 -imm -imon -impa7 -ims-pcu -imx-ipu-v3 -imx-ipuv3-crtc -imx-ldb -imx-tve -imx074 -imx6ul_tsc -imx_thermal -imxdrm -ina209 -ina2xx -industrialio -industrialio-buffer-cb -industrialio-triggered-buffer -industrialio-triggered-event -inet_diag -inexio -inftl -initio -input-leds -input-polldev -int51x1 -intel_th -intel_th_gth -intel_th_msu -intel_th_pci -intel_th_pti -intel_th_sth -intel_vr_nor -interact -interval_tree_test -inv-mpu6050 -io_edgeport -io_ti -ioc4 -iowarrior -ip6_gre -ip6_tables -ip6_tunnel -ip6_udp_tunnel -ip6_vti -ip6t_MASQUERADE -ip6t_NPT -ip6t_REJECT -ip6t_SYNPROXY -ip6t_ah -ip6t_eui64 -ip6t_frag -ip6t_hbh -ip6t_ipv6header -ip6t_mh -ip6t_rpfilter -ip6t_rt -ip6table_filter -ip6table_mangle -ip6table_nat -ip6table_raw -ip6table_security -ip_gre -ip_set -ip_set_bitmap_ip -ip_set_bitmap_ipmac -ip_set_bitmap_port -ip_set_hash_ip -ip_set_hash_ipmark -ip_set_hash_ipport -ip_set_hash_ipportip -ip_set_hash_ipportnet -ip_set_hash_mac -ip_set_hash_net -ip_set_hash_netiface -ip_set_hash_netnet -ip_set_hash_netport -ip_set_hash_netportnet -ip_set_list_set -ip_tables -ip_tunnel -ip_vs -ip_vs_dh -ip_vs_fo -ip_vs_ftp -ip_vs_lblc -ip_vs_lblcr -ip_vs_lc -ip_vs_nq -ip_vs_ovf -ip_vs_pe_sip -ip_vs_rr -ip_vs_sed -ip_vs_sh -ip_vs_wlc -ip_vs_wrr -ip_vti -ipack -ipaq -ipcomp -ipcomp6 -ipddp -iphase -ipheth -ipip -ipmi_devintf -ipmi_msghandler -ipmi_poweroff -ipmi_si -ipmi_ssif -ipmi_watchdog -ipoctal -ipr -iproc_nand -ips -ipt_CLUSTERIP -ipt_ECN -ipt_MASQUERADE -ipt_REJECT -ipt_SYNPROXY -ipt_ah -ipt_rpfilter -iptable_filter -iptable_mangle -iptable_nat -iptable_raw -iptable_security -ipvlan -ipw -ipw2100 -ipw2200 -ipx -ir-hix5hd2 -ir-jvc-decoder -ir-kbd-i2c -ir-lirc-codec -ir-mce_kbd-decoder -ir-nec-decoder -ir-rc5-decoder -ir-rc6-decoder -ir-sanyo-decoder -ir-sharp-decoder -ir-sony-decoder -ir-usb -ir-xmp-decoder -ircomm -ircomm-tty -irda -irda-usb -irlan -irnet -irqbypass -irtty-sir -iscsi_boot_sysfs -iscsi_target_mod -iscsi_tcp -isdn -isdn_bsdcomp -isdnhdlc -isicom -isight_firmware -isl29003 -isl29018 -isl29020 -isl29028 -isl29125 -isl6271a-regulator -isl6405 -isl6421 -isl6423 -isl9305 -isofs -isp116x-hcd -isp1362-hcd -isp1704_charger -isp1760 -it87 -it913x -itd1000 -itg3200 -iuu_phoenix -ivtv -ivtv-alsa -ivtvfb -iw_c2 -iw_cm -iw_cxgb3 -iw_cxgb4 -iw_nes -iwl3945 -iwl4965 -iwldvm -iwlegacy -iwlmvm -iwlwifi -ix2505v -ixgb -ixgbe -ixgbevf -janz-cmodio -janz-ican3 -jc42 -jedec_probe -jffs2 -jfs -jitterentropy_rng -jmb38x_ms -jme -joydev -joydump -jr3_pci -jsa1212 -jsm -k3dma -kafs -kalmia -kaweth -kbic -kbtab -kcomedilib -ke_counter -kempld-core -kempld_wdt -kernelcapi -keyspan -keyspan_pda -keyspan_remote -keywrap -kfifo_buf -khazad -kingsun-sir -kl5kusb105 -kmx61 -kobil_sct -ks0108 -ks8842 -ks8851 -ks8851_mll -ks959-sir -ksdazzle-sir -ksz884x -ktti -kvaser_pci -kvaser_usb -kxcjk-1013 -kxsd9 -kxtj9 -kyrofb -l1oip -l2tp_core -l2tp_debugfs -l2tp_eth -l2tp_ip -l2tp_ip6 -l2tp_netlink -l2tp_ppp -l4f00242t03 -l64781 -lan78xx -lanai -lapb -lapbether -latch-addr-flash -lattice-ecp3-config -lcc-ipq806x -lcc-msm8960 -lcd -ld9040 -ldusb -lec -led-class-flash -leds-88pm860x -leds-aat1290 -leds-adp5520 -leds-bcm6328 -leds-bcm6358 -leds-bd2802 -leds-blinkm -leds-da903x -leds-da9052 -leds-dac124s085 -leds-gpio -leds-ktd2692 -leds-lm3530 -leds-lm3533 -leds-lm355x -leds-lm3642 -leds-lp3944 -leds-lp5521 -leds-lp5523 -leds-lp5562 -leds-lp55xx-common -leds-lp8501 -leds-lp8788 -leds-lp8860 -leds-lt3593 -leds-max77693 -leds-max8997 -leds-mc13783 -leds-menf21bmc -leds-ns2 -leds-pca9532 -leds-pca955x -leds-pca963x -leds-pwm -leds-regulator -leds-tca6507 -leds-tlc591xx -leds-wm831x-status -leds-wm8350 -ledtrig-backlight -ledtrig-camera -ledtrig-default-on -ledtrig-gpio -ledtrig-heartbeat -ledtrig-oneshot -ledtrig-timer -ledtrig-transient -legousbtower -lg-vl600 -lg2160 -lgdt3305 -lgdt3306a -lgdt330x -lgs8gxx -lib80211 -lib80211_crypt_ccmp -lib80211_crypt_tkip -lib80211_crypt_wep -libceph -libcomposite -libcrc32c -libcxgbi -libertas -libertas_sdio -libertas_spi -libertas_tf -libertas_tf_usb -libfc -libfcoe -libipw -libiscsi -libiscsi_tcp -libore -libosd -libsas -lightning -lineage-pem -linear -lirc_bt829 -lirc_dev -lirc_imon -lirc_parallel -lirc_sasem -lirc_serial -lirc_sir -lirc_zilog -lis3l02dq -lis3lv02d -lis3lv02d_i2c -lis3lv02d_spi -litelink-sir -lkkbd -llc -llc2 -lm25066 -lm3533-als -lm3533-core -lm3533-ctrlbank -lm3533_bl -lm3630a_bl -lm3639_bl -lm63 -lm70 -lm73 -lm75 -lm77 -lm78 -lm80 -lm83 -lm8323 -lm8333 -lm85 -lm87 -lm90 -lm92 -lm93 -lm95234 -lm95241 -lm95245 -lms283gf05 -lms501kf03 -lnbh25 -lnbp21 -lnbp22 -lockd -locktorture -lp -lp3943 -lp3971 -lp3972 -lp855x_bl -lp8727_charger -lp872x -lp8755 -lp8788-buck -lp8788-charger -lp8788-ldo -lp8788_adc -lp8788_bl -lpc_ich -lpc_sch -lpddr2_nvm -lpddr_cmds -lpfc -lru_cache -lrw -ltc2941-battery-gauge -ltc2945 -ltc2978 -ltc3589 -ltc4151 -ltc4215 -ltc4222 -ltc4245 -ltc4260 -ltc4261 -ltr501 -ltv350qv -lv5207lp -lvstest -lxt -lz4 -lz4_compress -lz4hc -lz4hc_compress -m25p80 -m2m-deinterlace -m52790 -m62332 -m88ds3103 -m88rs2000 -m88rs6000t -mISDN_core -mISDN_dsp -mISDNinfineon -mISDNipac -mISDNisar -m_can -ma600-sir -mac-celtic -mac-centeuro -mac-croatian -mac-cyrillic -mac-gaelic -mac-greek -mac-iceland -mac-inuit -mac-roman -mac-romanian -mac-turkish -mac80211 -mac80211_hwsim -mac802154 -macb -macmodes -macvlan -macvtap -mag3110 -magellan -mailbox-altera -mailbox-test -mantis -mantis_core -map_absent -map_ram -map_rom -marvell -marvell-cesa -matrix-keymap -matrix_keypad -matrox_w1 -matroxfb_DAC1064 -matroxfb_Ti3026 -matroxfb_accel -matroxfb_base -matroxfb_crtc2 -matroxfb_g450 -matroxfb_maven -matroxfb_misc -max1027 -max1111 -max11801_ts -max1363 -max14577 -max14577_charger -max1586 -max16064 -max16065 -max1619 -max1668 -max17040_battery -max17042_battery -max197 -max20751 -max2165 -max3100 -max31790 -max3421-hcd -max34440 -max517 -max5821 -max63xx_wdt -max6639 -max6642 -max6650 -max6697 -max6875 -max7359_keypad -max77686 -max77693 -max77693-haptic -max77693_charger -max77802 -max8649 -max8660 -max8688 -max8903_charger -max8907 -max8907-regulator -max8925-regulator -max8925_bl -max8925_onkey -max8925_power -max8952 -max8973-regulator -max8997 -max8997_charger -max8997_haptic -max8998 -max8998_charger -mb862xxfb -mb86a16 -mb86a20s -mc13783-adc -mc13783-pwrbutton -mc13783-regulator -mc13783_ts -mc13892-regulator -mc13xxx-core -mc13xxx-i2c -mc13xxx-regulator-core -mc13xxx-spi -mc44s803 -mcb -mcb-pci -mceusb -mcp2120-sir -mcp251x -mcp3021 -mcp320x -mcp3422 -mcp4531 -mcp4725 -mcp4922 -mcryptd -mcs5000_ts -mcs7780 -mcs7830 -mcs_touchkey -mct_u232 -md-cluster -md4 -mdc800 -mdio -mdio-bcm-unimac -mdio-bitbang -mdio-gpio -mdio-mux -mdio-mux-gpio -mdio-mux-mmioreg -mdio-xgene -me4000 -me_daq -media -megaraid -megaraid_mbox -megaraid_mm -megaraid_sas -memstick -men_z135_uart -men_z188_adc -mena21_wdt -menf21bmc -menf21bmc_hwmon -menf21bmc_wdt -meson-ir -meson_uart -meson_wdt -metro-usb -metronomefb -mf6x4 -mg_disk -mga -michael_mic -micrel -microchip -microread -microread_i2c -microtek -mii -minix -mip6 -mite -mk712 -mkiss -mlx4_core -mlx4_en -mlx4_ib -mlx5_core -mlx5_ib -mlx90614 -mlxsw_core -mlxsw_pci -mma8450 -mma8452 -mma9551 -mma9551_core -mma9553 -mmc35240 -mmcc-apq8084 -mmcc-msm8960 -mmcc-msm8974 -mmci_qcom_dml -mms114 -mn88472 -mn88473 -mos7720 -mos7840 -mostcore -moxa -mpc624 -mpl115 -mpl3115 -mpls_gso -mpls_iptunnel -mpls_router -mpoa -mpr121_touchkey -mpt3sas -mptbase -mptctl -mptfc -mptlan -mptsas -mptscsih -mptspi -mpu3050 -mrf24j40 -mrp -ms5611_core -ms5611_i2c -ms5611_spi -ms5637 -ms_block -ms_sensors_i2c -msdos -msi001 -msi2500 -msm -msm-rng -msp3400 -mspro_block -mt2060 -mt2063 -mt20xx -mt2131 -mt2266 -mt29f_spinand -mt312 -mt352 -mt6311-regulator -mt6397-core -mt6397-regulator -mt7601u -mt8173-max98090 -mt8173-rt5650-rt5676 -mt9m001 -mt9m111 -mt9t031 -mt9t112 -mt9v011 -mt9v022 -mtd_dataflash -mtdoops -mtdram -mtdswap -mtip32xx -mtk-afe-pcm -mtk-pmic-wrap -mtk-sd -mtk_wdt -mtouch -multipath -multiq3 -musb_am335x -musb_dsps -mv643xx_eth -mv_cesa -mv_u3d_core -mv_udc -mvmdio -mvneta -mvpp2 -mvsas -mvsdio -mvumi -mwifiex -mwifiex_pcie -mwifiex_sdio -mwifiex_usb -mwl8k -mxb -mxc4005 -mxl111sf-demod -mxl111sf-tuner -mxl301rf -mxl5005s -mxl5007t -mxser -mxuport -myri10ge -n_gsm -n_hdlc -n_r3964 -n_tracerouter -n_tracesink -nandsim -national -natsemi -nau7802 -navman -nb8800 -nbd -nbpfaxi -nci -nci_spi -nci_uart -ncpfs -nct6683 -nct6775 -nct7802 -nct7904 -nd_blk -nd_btt -nd_pmem -ne2k-pci -neofb -net1080 -net2272 -net2280 -netconsole -netjet -netlink_diag -netrom -netup-unidvb -netxen_nic -newtonkbd -nf_conntrack -nf_conntrack_amanda -nf_conntrack_broadcast -nf_conntrack_ftp -nf_conntrack_h323 -nf_conntrack_ipv4 -nf_conntrack_ipv6 -nf_conntrack_irc -nf_conntrack_netbios_ns -nf_conntrack_netlink -nf_conntrack_pptp -nf_conntrack_proto_dccp -nf_conntrack_proto_gre -nf_conntrack_proto_sctp -nf_conntrack_proto_udplite -nf_conntrack_sane -nf_conntrack_sip -nf_conntrack_snmp -nf_conntrack_tftp -nf_defrag_ipv4 -nf_defrag_ipv6 -nf_dup_ipv4 -nf_dup_ipv6 -nf_log_arp -nf_log_bridge -nf_log_common -nf_log_ipv4 -nf_log_ipv6 -nf_nat -nf_nat_amanda -nf_nat_ftp -nf_nat_h323 -nf_nat_ipv4 -nf_nat_ipv6 -nf_nat_irc -nf_nat_masquerade_ipv4 -nf_nat_masquerade_ipv6 -nf_nat_pptp -nf_nat_proto_dccp -nf_nat_proto_gre -nf_nat_proto_sctp -nf_nat_proto_udplite -nf_nat_redirect -nf_nat_sip -nf_nat_snmp_basic -nf_nat_tftp -nf_reject_ipv4 -nf_reject_ipv6 -nf_synproxy_core -nf_tables -nf_tables_arp -nf_tables_bridge -nf_tables_inet -nf_tables_ipv4 -nf_tables_ipv6 -nf_tables_netdev -nfc -nfc_digital -nfcmrvl -nfcmrvl_i2c -nfcmrvl_spi -nfcmrvl_uart -nfcmrvl_usb -nfcsim -nfcwilink -nfnetlink -nfnetlink_acct -nfnetlink_cthelper -nfnetlink_cttimeout -nfnetlink_log -nfnetlink_queue -nfs -nfs_acl -nfs_layout_flexfiles -nfs_layout_nfsv41_files -nfsd -nfsv2 -nfsv3 -nfsv4 -nft_chain_nat_ipv4 -nft_chain_nat_ipv6 -nft_chain_route_ipv4 -nft_chain_route_ipv6 -nft_compat -nft_counter -nft_ct -nft_dup_ipv4 -nft_dup_ipv6 -nft_exthdr -nft_hash -nft_limit -nft_log -nft_masq -nft_masq_ipv4 -nft_masq_ipv6 -nft_meta -nft_meta_bridge -nft_nat -nft_queue -nft_rbtree -nft_redir -nft_redir_ipv4 -nft_redir_ipv6 -nft_reject -nft_reject_bridge -nft_reject_inet -nft_reject_ipv4 -nft_reject_ipv6 -nftl -ngene -nhc_dest -nhc_fragment -nhc_hop -nhc_ipv6 -nhc_mobility -nhc_routing -nhc_udp -ni_6527 -ni_65xx -ni_660x -ni_670x -ni_at_a2150 -ni_at_ao -ni_atmio -ni_atmio16d -ni_labpc -ni_labpc_common -ni_labpc_pci -ni_pcidio -ni_pcimio -ni_tio -ni_tiocmd -ni_usb6501 -nicstar -nilfs2 -niu -nlmon -nls_ascii -nls_cp1250 -nls_cp1251 -nls_cp1255 -nls_cp737 -nls_cp775 -nls_cp850 -nls_cp852 -nls_cp855 -nls_cp857 -nls_cp860 -nls_cp861 -nls_cp862 -nls_cp863 -nls_cp864 -nls_cp865 -nls_cp866 -nls_cp869 -nls_cp874 -nls_cp932 -nls_cp936 -nls_cp949 -nls_cp950 -nls_euc-jp -nls_iso8859-13 -nls_iso8859-14 -nls_iso8859-15 -nls_iso8859-2 -nls_iso8859-3 -nls_iso8859-4 -nls_iso8859-5 -nls_iso8859-6 -nls_iso8859-7 -nls_iso8859-9 -nls_koi8-r -nls_koi8-ru -nls_koi8-u -nls_utf8 -nosy -notifier-error-inject -nouveau -nozomi -nps_enet -ns558 -ns83820 -nsp32 -ntb -ntb_netdev -ntb_pingpong -ntb_tool -ntb_transport -ntc_thermistor -ntfs -null_blk -nvidiafb -nvme -nvmem_core -nvmem_qfprom -nvmem_rockchip_efuse -nvram -nxp-nci -nxp-nci_i2c -nxp-ptn3460 -nxt200x -nxt6000 -objlayoutdriver -ocfb -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -ocrdma -of_xilinx_wdt -old_belkin-sir -omap -omap-aes -omap-des -omap-mailbox -omap-ocp2scp -omap-rng -omap-sham -omap2430 -omap4-keypad -omap_hdq -omap_hwspinlock -omap_wdt -omapfb -omfs -omninet -on20 -on26 -onenand -opencores-kbd -openvswitch -oprofile -opt3001 -opticon -option -or51132 -or51211 -orinoco -orinoco_nortel -orinoco_plx -orinoco_tmd -orinoco_usb -orion_nand -orion_wdt -osd -osdblk -osst -oti6858 -ov2640 -ov5642 -ov6650 -ov7640 -ov7670 -ov772x -ov9640 -ov9740 -overlay -oxu210hp-hcd -p54common -p54pci -p54spi -p54usb -p8022 -p8023 -pa12203001 -palmas-pwrbutton -palmas-regulator -pandora_bl -panel -panel-dpi -panel-dsi-cm -panel-lg-lg4573 -panel-lgphilips-lb035q02 -panel-nec-nl8048hl11 -panel-samsung-ld9040 -panel-samsung-s6e8aa0 -panel-sharp-lq101r1sx01 -panel-sharp-ls037v7dw01 -panel-simple -panel-sony-acx565akm -panel-tpo-td028ttec1 -panel-tpo-td043mtea1 -parade-ps8622 -parallel-display -paride -parkbd -parport -parport_ax88796 -parport_pc -parport_serial -pata_ali -pata_amd -pata_artop -pata_atiixp -pata_atp867x -pata_cmd640 -pata_cmd64x -pata_cypress -pata_efar -pata_hpt366 -pata_hpt37x -pata_hpt3x2n -pata_hpt3x3 -pata_it8213 -pata_it821x -pata_jmicron -pata_legacy -pata_marvell -pata_mpiix -pata_netcell -pata_ninja32 -pata_ns87410 -pata_ns87415 -pata_of_platform -pata_oldpiix -pata_opti -pata_optidma -pata_pdc2027x -pata_pdc202xx_old -pata_piccolo -pata_platform -pata_radisys -pata_rdc -pata_rz1000 -pata_sch -pata_serverworks -pata_sil680 -pata_sis -pata_sl82c105 -pata_triflex -pata_via -pbias-regulator -pc300too -pc87360 -pc87427 -pcap-regulator -pcap_keys -pcap_ts -pcbc -pcd -pcf50633 -pcf50633-adc -pcf50633-backlight -pcf50633-charger -pcf50633-gpio -pcf50633-input -pcf50633-regulator -pcf8574_keypad -pcf8591 -pch_udc -pci -pci-stub -pci200syn -pcie-iproc -pcips2 -pcl711 -pcl724 -pcl726 -pcl730 -pcl812 -pcl816 -pcl818 -pcm3724 -pcmad -pcmda12 -pcmmio -pcmuio -pcnet32 -pcrypt -pcwd_pci -pcwd_usb -pd -pda_power -pdc_adma -peak_pci -peak_usb -pegasus -penmount -percpu_test -pf -pfuze100-regulator -pg -phantom -phonet -phram -phy-am335x -phy-am335x-control -phy-bcm-kona-usb2 -phy-berlin-sata -phy-berlin-usb -phy-dm816x-usb -phy-exynos-usb2 -phy-exynos5-usbdrd -phy-gpio-vbus-usb -phy-hix5hd2-sata -phy-isp1301 -phy-msm-usb -phy-mt65xx-usb3 -phy-omap-control -phy-omap-usb2 -phy-pxa-28nm-hsic -phy-pxa-28nm-usb2 -phy-qcom-8x16-usb -phy-qcom-apq8064-sata -phy-qcom-ipq806x-sata -phy-qcom-ufs -phy-qcom-ufs-qmp-14nm -phy-qcom-ufs-qmp-20nm -phy-rcar-gen2 -phy-rcar-usb -phy-rockchip-usb -phy-tahvo -phy-ti-pipe3 -phy-tusb1210 -phy-twl4030-usb -phy-twl6030-usb -physmap -physmap_of -pinctrl-apq8064 -pinctrl-apq8084 -pinctrl-ipq8064 -pinctrl-msm8660 -pinctrl-msm8916 -pinctrl-msm8960 -pinctrl-msm8x74 -pinctrl-ph1-ld4 -pinctrl-ph1-ld6b -pinctrl-ph1-pro4 -pinctrl-ph1-pro5 -pinctrl-ph1-sld8 -pinctrl-proxstream2 -pinctrl-spmi-gpio -pinctrl-spmi-mpp -pinctrl-ssbi-gpio -pinctrl-ssbi-mpp -pixcir_i2c_ts -pkcs7_test_key -pktcdvd -pktgen -pl172 -pl2303 -pl330 -plat-ram -plat_nand -platform_lcd -plip -plusb -pluto2 -plx_pci -pm-notifier-error-inject -pm2fb -pm3fb -pm80xx -pm8921-core -pm8941-pwrkey -pm8941-wled -pm8xxx-vibrator -pmbus -pmbus_core -pmc551 -pmcraid -pmic8xxx-keypad -pmic8xxx-pwrkey -pn533 -pn544 -pn544_i2c -pn_pep -poly1305_generic -port100 -powermate -powr1220 -ppa -ppdev -ppp_async -ppp_deflate -ppp_mppe -ppp_synctty -pppoatm -pppoe -pppox -pps-gpio -pps-ldisc -pps_parport -pptp -prism2_usb -ps2mult -psmouse -psnap -pt -pulsedlight-lidar-lite-v2 -pvrusb2 -pwc -pwm-atmel-hlcdc -pwm-beeper -pwm-berlin -pwm-fan -pwm-fsl-ftm -pwm-lp3943 -pwm-mtk-disp -pwm-omap-dmtimer -pwm-pca9685 -pwm-rcar -pwm-regulator -pwm-renesas-tpu -pwm-rockchip -pwm-samsung -pwm-tiecap -pwm-tiehrpwm -pwm-twl -pwm-twl-led -pwm_bl -pxa168_eth -pxa27x_udc -pxa3xx_nand -qcaspi -qcaux -qcom-coincell -qcom-spmi-iadc -qcom-spmi-pmic -qcom-spmi-temp-alarm -qcom-spmi-vadc -qcom-wdt -qcom_bam_dma -qcom_gsbi -qcom_hwspinlock -qcom_rpm -qcom_rpm-regulator -qcom_smbb -qcom_smd-regulator -qcom_spmi-regulator -qcrypto -qcserial -qed -qede -qinfo_probe -qla1280 -qla2xxx -qla3xxx -qla4xxx -qlcnic -qlge -qm1d1c0042 -qmi_wwan -qnx4 -qnx6 -qoriq-cpufreq -qsemi -qt1010 -qt1070 -qt2160 -quatech2 -quota_tree -quota_v1 -quota_v2 -qxl -r128 -r592 -r6040 -r8152 -r8169 -r8188eu -r8192e_pci -r8192u_usb -r820t -r852 -r8712u -r8723au -r8a66597-hcd -r8a66597-udc -radeon -radeonfb -radio-bcm2048 -radio-i2c-si470x -radio-keene -radio-ma901 -radio-maxiradio -radio-mr800 -radio-platform-si4713 -radio-raremono -radio-shark -radio-si476x -radio-tea5764 -radio-usb-si470x -radio-usb-si4713 -radio-wl1273 -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid6test -raid_class -ravb -raw -rbd -rbtree_test -rc-adstech-dvb-t-pci -rc-alink-dtu-m -rc-anysee -rc-apac-viewcomp -rc-asus-pc39 -rc-asus-ps3-100 -rc-ati-tv-wonder-hd-600 -rc-ati-x10 -rc-avermedia -rc-avermedia-a16d -rc-avermedia-cardbus -rc-avermedia-dvbt -rc-avermedia-m135a -rc-avermedia-m733a-rm-k6 -rc-avermedia-rm-ks -rc-avertv-303 -rc-azurewave-ad-tu700 -rc-behold -rc-behold-columbus -rc-budget-ci-old -rc-cinergy -rc-cinergy-1400 -rc-core -rc-delock-61959 -rc-dib0700-nec -rc-dib0700-rc5 -rc-digitalnow-tinytwin -rc-digittrade -rc-dm1105-nec -rc-dntv-live-dvb-t -rc-dntv-live-dvbt-pro -rc-dvbsky -rc-em-terratec -rc-encore-enltv -rc-encore-enltv-fm53 -rc-encore-enltv2 -rc-evga-indtube -rc-eztv -rc-flydvb -rc-flyvideo -rc-fusionhdtv-mce -rc-gadmei-rm008z -rc-genius-tvgo-a11mce -rc-gotview7135 -rc-hauppauge -rc-imon-mce -rc-imon-pad -rc-iodata-bctv7e -rc-it913x-v1 -rc-it913x-v2 -rc-kaiomy -rc-kworld-315u -rc-kworld-pc150u -rc-kworld-plus-tv-analog -rc-leadtek-y04g0051 -rc-lirc -rc-lme2510 -rc-loopback -rc-manli -rc-medion-x10 -rc-medion-x10-digitainer -rc-medion-x10-or2x -rc-msi-digivox-ii -rc-msi-digivox-iii -rc-msi-tvanywhere -rc-msi-tvanywhere-plus -rc-nebula -rc-nec-terratec-cinergy-xs -rc-norwood -rc-npgtech -rc-pctv-sedna -rc-pinnacle-color -rc-pinnacle-grey -rc-pinnacle-pctv-hd -rc-pixelview -rc-pixelview-002t -rc-pixelview-mk12 -rc-pixelview-new -rc-powercolor-real-angel -rc-proteus-2309 -rc-purpletv -rc-pv951 -rc-rc6-mce -rc-real-audio-220-32-keys -rc-reddo -rc-snapstream-firefly -rc-streamzap -rc-su3000 -rc-tbs-nec -rc-technisat-ts35 -rc-technisat-usb2 -rc-terratec-cinergy-c-pci -rc-terratec-cinergy-s2-hd -rc-terratec-cinergy-xs -rc-terratec-slim -rc-terratec-slim-2 -rc-tevii-nec -rc-tivo -rc-total-media-in-hand -rc-total-media-in-hand-02 -rc-trekstor -rc-tt-1500 -rc-twinhan-dtv-cab-ci -rc-twinhan1027 -rc-videomate-m1f -rc-videomate-s350 -rc-videomate-tv-pvr -rc-winfast -rc-winfast-usbii-deluxe -rc5t583-regulator -rcar-dmac -rcar-du-drm -rcar-hpbdma -rcar_can -rcar_jpu -rcar_thermal -rcar_vin -rdc321x-southbridge -rdma_cm -rdma_ucm -rds -rds_rdma -rds_tcp -realtek -redboot -redrat3 -regmap-spmi -regulator-haptic -reiserfs -remoteproc -renesas_usbhs -retu-mfd -retu-pwrbutton -retu_wdt -rfc1051 -rfc1201 -rfcomm -rfd_ftl -rfkill-gpio -rfkill-regulator -rio500 -rivafb -rj54n1cb0c -rk808 -rk808-regulator -rmd128 -rmd160 -rmd256 -rmd320 -rmobile-reset -rn5t618 -rn5t618-regulator -rn5t618_wdt -rndis_host -rndis_wlan -rockchip-io-domain -rockchip_drm_vop -rockchip_saradc -rockchip_thermal -rockchipdrm -rocket -rohm_bu21023 -romfs -rose -rotary_encoder -rp2 -rpcrdma -rpcsec_gss_krb5 -rpr0521 -rrpc -rsi_91x -rsi_sdio -rsi_usb -rsxx -rt2400pci -rt2500pci -rt2500usb -rt2800lib -rt2800mmio -rt2800pci -rt2800usb -rt2x00lib -rt2x00mmio -rt2x00pci -rt2x00usb -rt5033 -rt5033-regulator -rt5033_battery -rt61pci -rt73usb -rt9455_charger -rtc-88pm80x -rtc-88pm860x -rtc-ab-b5ze-s3 -rtc-ab3100 -rtc-abx80x -rtc-armada38x -rtc-as3722 -rtc-bq32k -rtc-bq4802 -rtc-cmos -rtc-da9052 -rtc-da9055 -rtc-da9063 -rtc-ds1286 -rtc-ds1305 -rtc-ds1307 -rtc-ds1343 -rtc-ds1347 -rtc-ds1374 -rtc-ds1390 -rtc-ds1511 -rtc-ds1553 -rtc-ds1672 -rtc-ds1685 -rtc-ds1742 -rtc-ds2404 -rtc-ds3232 -rtc-ds3234 -rtc-em3027 -rtc-fm3130 -rtc-hid-sensor-time -rtc-hym8563 -rtc-isl12022 -rtc-isl12057 -rtc-isl1208 -rtc-lp8788 -rtc-m41t80 -rtc-m41t93 -rtc-m41t94 -rtc-m48t35 -rtc-m48t59 -rtc-m48t86 -rtc-max6900 -rtc-max6902 -rtc-max77686 -rtc-max77802 -rtc-max8907 -rtc-max8925 -rtc-max8997 -rtc-max8998 -rtc-mc13xxx -rtc-mcp795 -rtc-msm6242 -rtc-mt6397 -rtc-palmas -rtc-pcap -rtc-pcf2123 -rtc-pcf2127 -rtc-pcf50633 -rtc-pcf85063 -rtc-pcf8523 -rtc-pcf8563 -rtc-pcf8583 -rtc-pl030 -rtc-pm8xxx -rtc-r9701 -rtc-rc5t583 -rtc-rk808 -rtc-rp5c01 -rtc-rs5c348 -rtc-rs5c372 -rtc-rv3029c2 -rtc-rv8803 -rtc-rx4581 -rtc-rx8025 -rtc-rx8581 -rtc-s35390a -rtc-s5m -rtc-snvs -rtc-stk17ta8 -rtc-tps6586x -rtc-tps65910 -rtc-tps80031 -rtc-v3020 -rtc-wm831x -rtc-wm8350 -rtc-x1205 -rtc-zynqmp -rtd520 -rti800 -rti802 -rtl2830 -rtl2832 -rtl2832_sdr -rtl8150 -rtl8187 -rtl8188ee -rtl818x_pci -rtl8192c-common -rtl8192ce -rtl8192cu -rtl8192de -rtl8192ee -rtl8192se -rtl8723-common -rtl8723ae -rtl8723be -rtl8821ae -rtl8xxxu -rtl_pci -rtl_usb -rtllib -rtllib_crypt_ccmp -rtllib_crypt_tkip -rtllib_crypt_wep -rtlwifi -rts5208 -rtsx_pci -rtsx_pci_ms -rtsx_pci_sdmmc -rtsx_usb -rtsx_usb_ms -rtsx_usb_sdmmc -rx51_battery -rxkad -s1d13xxxfb -s2250 -s2255drv -s2io -s2mpa01 -s2mps11 -s3c-fb -s3c2410_wdt -s3fb -s3fwrn5 -s3fwrn5_i2c -s526 -s5h1409 -s5h1411 -s5h1420 -s5m8767 -s5p-g2d -s5p-hdmi -s5p-hdmiphy -s5p-jpeg -s5p-mfc -s5p-mixer -s5p-sdo -s5p-sii9234 -s5p-sss -s626 -s6e63m0 -s921 -saa6588 -saa6752hs -saa7115 -saa7127 -saa7134 -saa7134-alsa -saa7134-dvb -saa7134-empress -saa7134-go7007 -saa7146 -saa7146_vv -saa7164 -saa717x -saa7706h -safe_serial -salsa20_generic -samsung -samsung-keypad -samsung-sxgbe -sata_highbank -sata_inic162x -sata_mv -sata_nv -sata_promise -sata_qstor -sata_rcar -sata_sil -sata_sil24 -sata_sis -sata_svw -sata_sx4 -sata_uli -sata_via -sata_vsc -savage -savagefb -sbp_target -sbs-battery -sc16is7xx -sc92031 -sca3000 -sch5627 -sch5636 -sch56xx-common -sch_atm -sch_cbq -sch_choke -sch_codel -sch_drr -sch_dsmark -sch_fq -sch_fq_codel -sch_gred -sch_hfsc -sch_hhf -sch_htb -sch_ingress -sch_mqprio -sch_multiq -sch_netem -sch_pie -sch_plug -sch_prio -sch_qfq -sch_red -sch_sfb -sch_sfq -sch_tbf -sch_teql -scpi-cpufreq -scpi-hwmon -scsi_debug -scsi_dh_alua -scsi_dh_emc -scsi_dh_hp_sw -scsi_dh_rdac -scsi_transport_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -scsi_transport_srp -sctp -sctp_probe -sdhci-dove -sdhci-msm -sdhci-of-arasan -sdhci-of-at91 -sdhci-pci -sdhci-pxav3 -sdhci-s3c -sdhci_f_sdh30 -sdio_uart -seed -sensorhub -seqiv -ser_gigaset -serial2002 -serio_raw -sermouse -serpent_generic -serport -ses -sfc -sh-sci -sh_eth -sh_flctl -sh_irda -sh_keysc -sh_mmcif -sh_mobile_ceu_camera -sh_mobile_csi2 -sh_mobile_hdmi -sh_mobile_lcdcfb -sh_mobile_meram -sh_mobile_sdhi -sh_veu -sh_vou -sha1-arm -sha1-arm-ce -sha1-arm-neon -sha2-arm-ce -sha256-arm -sha512-arm -shark2 -shdma -shmob-drm -sht15 -sht21 -shtc1 -si2157 -si2165 -si2168 -si21xx -si4713 -si476x-core -si7005 -si7020 -sidewinder -sierra -sierra_net -sil164 -sir-dev -sis190 -sis5595 -sis900 -sisfb -sisusbvga -sit -sja1000 -sja1000_isa -sja1000_platform -skfp -skge -sky2 -sky81452 -sky81452-backlight -sky81452-regulator -sl811-hcd -slcan -slip -slram -sm501fb -sm712fb -sm750fb -sm_common -sm_ftl -smb347-charger -smc911x -smc91x -smd -smd-rpm -smem -smipcie -smm665 -smsc -smsc47b397 -smsc47m1 -smsc47m192 -smsc75xx -smsc911x -smsc9420 -smsc95xx -smscufx -smsdvb -smsmdtv -smssdio -smsusb -snd-aaci -snd-ac97-codec -snd-ad1889 -snd-ak4113 -snd-ak4114 -snd-ak4xxx-adda -snd-ali5451 -snd-aloop -snd-als300 -snd-atiixp -snd-atiixp-modem -snd-au8810 -snd-au8820 -snd-au8830 -snd-aw2 -snd-azt3328 -snd-bcd2000 -snd-bebob -snd-bt87x -snd-ca0106 -snd-cmipci -snd-cs4281 -snd-cs46xx -snd-cs8427 -snd-ctxfi -snd-darla20 -snd-darla24 -snd-dice -snd-dummy -snd-echo3g -snd-emu10k1 -snd-emu10k1-synth -snd-emu10k1x -snd-emux-synth -snd-ens1370 -snd-ens1371 -snd-es1938 -snd-es1968 -snd-firewire-digi00x -snd-firewire-lib -snd-firewire-tascam -snd-fireworks -snd-fm801 -snd-gina20 -snd-gina24 -snd-hda-codec -snd-hda-codec-analog -snd-hda-codec-ca0110 -snd-hda-codec-ca0132 -snd-hda-codec-cirrus -snd-hda-codec-cmedia -snd-hda-codec-conexant -snd-hda-codec-generic -snd-hda-codec-hdmi -snd-hda-codec-idt -snd-hda-codec-realtek -snd-hda-codec-si3054 -snd-hda-codec-via -snd-hda-core -snd-hda-intel -snd-hdsp -snd-hdspm -snd-hrtimer -snd-hwdep -snd-i2c -snd-ice1712 -snd-ice1724 -snd-ice17xx-ak4xxx -snd-indigo -snd-indigodj -snd-indigodjx -snd-indigoio -snd-indigoiox -snd-intel8x0 -snd-intel8x0m -snd-isight -snd-korg1212 -snd-layla20 -snd-layla24 -snd-lola -snd-maestro3 -snd-mia -snd-mixart -snd-mixer-oss -snd-mona -snd-mpu401 -snd-mpu401-uart -snd-mtpav -snd-mts64 -snd-nm256 -snd-opl3-lib -snd-opl3-synth -snd-oxfw -snd-oxygen -snd-oxygen-lib -snd-pcm-oss -snd-pcxhr -snd-portman2x4 -snd-pt2258 -snd-rawmidi -snd-riptide -snd-rme32 -snd-rme96 -snd-rme9652 -snd-scs1x -snd-seq -snd-seq-device -snd-seq-dummy -snd-seq-midi -snd-seq-midi-emul -snd-seq-midi-event -snd-seq-virmidi -snd-serial-u16550 -snd-soc-ac97 -snd-soc-adau1701 -snd-soc-ak4104 -snd-soc-ak4554 -snd-soc-ak4613 -snd-soc-ak4642 -snd-soc-ak5386 -snd-soc-alc5623 -snd-soc-apq8016-sbc -snd-soc-armada-370-db -snd-soc-arndale-rt5631 -snd-soc-cs35l32 -snd-soc-cs4265 -snd-soc-cs4270 -snd-soc-cs4271 -snd-soc-cs4271-i2c -snd-soc-cs4271-spi -snd-soc-cs42l51 -snd-soc-cs42l51-i2c -snd-soc-cs42l52 -snd-soc-cs42l56 -snd-soc-cs42l73 -snd-soc-cs42xx8 -snd-soc-cs42xx8-i2c -snd-soc-cs4349 -snd-soc-davinci-mcasp -snd-soc-es8328 -snd-soc-fsi -snd-soc-fsl-asrc -snd-soc-fsl-esai -snd-soc-fsl-sai -snd-soc-fsl-spdif -snd-soc-fsl-ssi -snd-soc-gtm601 -snd-soc-i2s -snd-soc-idma -snd-soc-imx-audmux -snd-soc-kirkwood -snd-soc-lpass-apq8016 -snd-soc-lpass-cpu -snd-soc-lpass-ipq806x -snd-soc-lpass-platform -snd-soc-max98090 -snd-soc-max98095 -snd-soc-max98357a -snd-soc-odroidx2-max98090 -snd-soc-omap-hdmi-audio -snd-soc-pcm -snd-soc-pcm1681 -snd-soc-pcm1792a-codec -snd-soc-pcm512x -snd-soc-pcm512x-i2c -snd-soc-pcm512x-spi -snd-soc-rcar -snd-soc-rl6231 -snd-soc-rockchip-i2s -snd-soc-rockchip-max98090 -snd-soc-rockchip-rt5645 -snd-soc-rockchip-spdif -snd-soc-rsrc-card -snd-soc-rt5631 -snd-soc-rt5645 -snd-soc-rt5677 -snd-soc-rt5677-spi -snd-soc-rx51 -snd-soc-s3c-dma -snd-soc-samsung-spdif -snd-soc-sgtl5000 -snd-soc-si476x -snd-soc-sigmadsp -snd-soc-sigmadsp-i2c -snd-soc-simple-card -snd-soc-smdk-spdif -snd-soc-smdk-wm8994 -snd-soc-smdk-wm8994pcm -snd-soc-snow -snd-soc-spdif-rx -snd-soc-spdif-tx -snd-soc-ssm2602 -snd-soc-ssm2602-i2c -snd-soc-ssm2602-spi -snd-soc-ssm4567 -snd-soc-sta32x -snd-soc-sta350 -snd-soc-sti-sas -snd-soc-storm -snd-soc-tas2552 -snd-soc-tas5086 -snd-soc-tas571x -snd-soc-tfa9879 -snd-soc-tlv320aic23 -snd-soc-tlv320aic23-i2c -snd-soc-tlv320aic23-spi -snd-soc-tlv320aic31xx -snd-soc-tlv320aic3x -snd-soc-tpa6130a2 -snd-soc-ts3a227e -snd-soc-wm-hubs -snd-soc-wm8510 -snd-soc-wm8523 -snd-soc-wm8580 -snd-soc-wm8711 -snd-soc-wm8728 -snd-soc-wm8731 -snd-soc-wm8737 -snd-soc-wm8741 -snd-soc-wm8750 -snd-soc-wm8753 -snd-soc-wm8770 -snd-soc-wm8776 -snd-soc-wm8804 -snd-soc-wm8804-i2c -snd-soc-wm8804-spi -snd-soc-wm8903 -snd-soc-wm8962 -snd-soc-wm8978 -snd-soc-wm8994 -snd-soc-xtfpga-i2s -snd-sonicvibes -snd-trident -snd-ua101 -snd-usb-6fire -snd-usb-audio -snd-usb-caiaq -snd-usb-hiface -snd-usb-line6 -snd-usb-pod -snd-usb-podhd -snd-usb-toneport -snd-usb-variax -snd-usbmidi-lib -snd-util-mem -snd-via82xx -snd-via82xx-modem -snd-virmidi -snd-virtuoso -snd-vx-lib -snd-vx222 -snd-ymfpci -snic -soc_button_array -soc_camera -soc_camera_platform -soc_mediabus -soc_scale_crop -softdog -softing -solo6x10 -solos-pci -sony-btf-mpx -sp2 -sp805_wdt -sp8870 -sp887x -spaceball -spaceorb -sparse-keymap -spcp8x5 -speakup -speakup_acntsa -speakup_apollo -speakup_audptr -speakup_bns -speakup_decext -speakup_dectlk -speakup_dummy -speakup_ltlk -speakup_soft -speakup_spkout -speakup_txprt -speedfax -speedtch -spi-altera -spi-bitbang -spi-butterfly -spi-cadence -spi-dln2 -spi-dw -spi-dw-midpci -spi-dw-mmio -spi-gpio -spi-lm70llp -spi-meson-spifc -spi-mt65xx -spi-nor -spi-oc-tiny -spi-orion -spi-pl022 -spi-pxa2xx-pci -spi-pxa2xx-platform -spi-qup -spi-rockchip -spi-rspi -spi-s3c64xx -spi-sc18is602 -spi-sh-hspi -spi-sh-msiof -spi-ti-qspi -spi-tle62x0 -spi-xcomm -spi-zynqmp-gqspi -spi_ks8995 -spidev -spmi -spmi-pmic-arb -sr9700 -sr9800 -ssb -ssbi -ssd1307fb -ssfdc -ssp_accel_sensor -ssp_gyro_sensor -ssp_iio -sst25l -sstfb -ssu100 -st -st-asc -st-nci -st-nci_i2c -st-nci_spi -st1232 -st21nfca_hci -st21nfca_i2c -st_accel -st_accel_i2c -st_accel_spi -st_drv -st_gyro -st_gyro_i2c -st_gyro_spi -st_magn -st_magn_i2c -st_magn_spi -st_pressure -st_pressure_i2c -st_pressure_spi -st_sensors -st_sensors_i2c -st_sensors_spi -starfire -stb0899 -stb6000 -stb6100 -ste10Xp -ste_modem_rproc -stex -stinger -stir4200 -stk1160 -stk3310 -stk8312 -stk8ba50 -stkwebcam -stm32-usart -stm_console -stm_core -stmmac -stmmac-platform -stmpe-keypad -stmpe-ts -stowaway -stp -streamzap -stv0288 -stv0297 -stv0299 -stv0367 -stv0900 -stv090x -stv6110 -stv6110x -sudmac -sun4i-codec -sundance -sungem -sungem_phy -sunhme -suni -sunkbd -sunrpc -sur40 -svgalib -sx8 -sx8654 -sx9500 -sym53c8xx -symbolserial -synaptics_i2c -synaptics_i2c_rmi4 -synaptics_usb -synclink_gt -synclinkmp -syscopyarea -sysfillrect -sysimgblt -sysv -t1pci -t5403 -target_core_file -target_core_iblock -target_core_mod -target_core_pscsi -target_core_user -tc3589x-keypad -tc74 -tc90522 -tca6416-keypad -tca8418_keypad -tcm_fc -tcm_loop -tcm_qla2xxx -tcm_usb_gadget -tcp_bic -tcp_cdg -tcp_dctcp -tcp_diag -tcp_highspeed -tcp_htcp -tcp_hybla -tcp_illinois -tcp_lp -tcp_probe -tcp_scalable -tcp_vegas -tcp_veno -tcp_westwood -tcp_yeah -tcrypt -tcs3414 -tcs3472 -tda10021 -tda10023 -tda10048 -tda1004x -tda10071 -tda10086 -tda18212 -tda18218 -tda18271 -tda18271c2dd -tda665x -tda7432 -tda8083 -tda8261 -tda826x -tda827x -tda8290 -tda9840 -tda9887 -tda998x -tdfx -tdfxfb -tdo24m -tea -tea575x -tea5761 -tea5767 -tea6415c -tea6420 -team -team_mode_activebackup -team_mode_broadcast -team_mode_loadbalance -team_mode_random -team_mode_roundrobin -tef6862 -tehuti -tekram-sir -teranetics -test-hexdump -test-kprobes -test-kstrtox -test-string_helpers -test_bpf -test_firmware -test_module -test_power -test_printf -test_static_key_base -test_static_keys -test_udelay -test_user_copy -tg3 -tgr192 -thmc50 -thunderbolt -ti-adc081c -ti-adc128s052 -ti-soc-thermal -ti-vpe -ti_am335x_adc -ti_am335x_tsc -ti_am335x_tscadc -ti_dac7512 -ti_hecc -ti_usb_3410_5052 -tifm_7xx1 -tifm_core -tifm_ms -tifm_sd -tilcdc -timeriomem-rng -tipc -tlan -tm6000 -tm6000-alsa -tm6000-dvb -tmdc -tmio_mmc -tmio_mmc_core -tmio_nand -tmiofb -tmp006 -tmp102 -tmp103 -tmp401 -tmp421 -toim3232-sir -torture -toshsd -touchit213 -touchright -touchwin -tpci200 -tpm-rng -tpm_i2c_atmel -tpm_i2c_infineon -tpm_i2c_nuvoton -tpm_st33zp24 -tpm_st33zp24_i2c -tpm_st33zp24_spi -tps40422 -tps51632-regulator -tps6105x -tps6105x-regulator -tps62360-regulator -tps65010 -tps65023-regulator -tps6507x -tps6507x-regulator -tps6507x-ts -tps65090-charger -tps65090-regulator -tps65217_bl -tps65217_charger -tps65218 -tps65218-pwrbutton -tps65218-regulator -tps6524x-regulator -tps6586x-regulator -tps65910-regulator -tps65912-regulator -tps80031-regulator -trancevibrator -trf7970a -tridentfb -ts2020 -ts_bm -ts_fsm -ts_kmp -tsc2004 -tsc2005 -tsc2007 -tsc200x-core -tsc40 -tsl2550 -tsl2563 -tsl2583 -tsl2x7x_core -tsl4531 -tsys01 -tsys02d -ttm -ttpci-eeprom -ttusb_dec -ttusbdecfe -ttusbir -tua6100 -tua9001 -tulip -tuner -tuner-simple -tuner-types -tuner-xc2028 -tunnel4 -tunnel6 -turbografx -tusb6010 -tvaudio -tveeprom -tvp5150 -tw2804 -tw68 -tw9903 -tw9906 -tw9910 -twidjoy -twl-regulator -twl4030-madc -twl4030-madc-hwmon -twl4030-pwrbutton -twl4030-vibra -twl4030_charger -twl4030_keypad -twl4030_madc_battery -twl4030_wdt -twl6030-gpadc -twl6040-vibra -twofish_common -twofish_generic -typhoon -u132-hcd -u_ether -u_serial -uartlite -uas -ubi -ubifs -ucb1400_core -ucb1400_ts -ucd9000 -ucd9200 -uda1342 -udc-xilinx -udf -udl -udlfb -udp_diag -udp_tunnel -ueagle-atm -ufs -ufshcd -ufshcd-pci -ufshcd-pltfrm -uhid -uio -uio_aec -uio_cif -uio_dmem_genirq -uio_mf624 -uio_netx -uio_pci_generic -uio_pdrv_genirq -uio_pruss -uio_sercos3 -uli526x -ulpi -umc -umem -ums-alauda -ums-cypress -ums-datafab -ums-eneub6250 -ums-freecom -ums-isd200 -ums-jumpshot -ums-karma -ums-onetouch -ums-realtek -ums-sddr09 -ums-sddr55 -ums-usbat -unix_diag -upd64031a -upd64083 -us5182d -usb-dmac -usb-serial-simple -usb-storage -usb3503 -usb8xxx -usb_8dev -usb_debug -usb_f_acm -usb_f_ecm -usb_f_ecm_subset -usb_f_eem -usb_f_fs -usb_f_hid -usb_f_mass_storage -usb_f_midi -usb_f_ncm -usb_f_obex -usb_f_phonet -usb_f_printer -usb_f_rndis -usb_f_serial -usb_f_ss_lb -usb_f_uac1 -usb_f_uac2 -usb_f_uvc -usb_gigaset -usb_wwan -usbatm -usbdux -usbduxfast -usbduxsigma -usbhid -usbip-core -usbip-host -usbkbd -usblcd -usbled -usblp -usbmisc_imx -usbmon -usbmouse -usbnet -usbserial -usbsevseg -usbtest -usbtmc -usbtouchscreen -usbtv -usbvision -usdhi6rol0 -userio -userspace-consumer -ushc -uss720 -uvcvideo -uvesafb -uwb -v4l2-common -v4l2-dv-timings -v4l2-flash-led-class -v4l2-mem2mem -vcan -vcnl4000 -ves1820 -ves1x93 -veth -vexpress -vexpress-spc-cpufreq -vf610_adc -vfio -vfio-amba -vfio-pci -vfio-platform -vfio-platform-amdxgbe -vfio-platform-base -vfio-platform-calxedaxgmac -vfio_virqfd -vgastate -vgem -vgg2432a4 -vhci-hcd -vhost -vhost_net -vhost_scsi -via -via-rhine -via-sdmmc -via-velocity -via686a -videobuf-core -videobuf-dma-contig -videobuf-dma-sg -videobuf-dvb -videobuf-vmalloc -videobuf2-core -videobuf2-dma-contig -videobuf2-dma-sg -videobuf2-dvb -videobuf2-memops -videobuf2-v4l2 -videobuf2-vmalloc -videodev -vim2m -viperboard -viperboard_adc -virtio-gpu -virtio-rng -virtio_input -virtio_scsi -virtual -visor -vitesse -vivid -vlsi_ir -vmac -vme_pio2 -vme_tsi148 -vme_user -vme_vmivme7805 -vmk80xx -vmxnet3 -vp27smpx -vport-geneve -vport-gre -vport-vxlan -vrf -vringh -vsock -vsp1 -vsxxxaa -vt1211 -vt6655_stage -vt6656_stage -vt8231 -vt8623fb -vub300 -vx855 -vxge -vxlan -vz89x -w1-gpio -w1_bq27000 -w1_ds2406 -w1_ds2408 -w1_ds2413 -w1_ds2423 -w1_ds2431 -w1_ds2433 -w1_ds2760 -w1_ds2780 -w1_ds2781 -w1_ds28e04 -w1_smem -w1_therm -w5100 -w5300 -w6692 -w83627ehf -w83627hf -w83781d -w83791d -w83792d -w83793 -w83795 -w83l785ts -w83l786ng -wacom -wacom_i2c -wacom_serial4 -wacom_w8001 -walkera0701 -wanxl -warrior -wcn36xx -wd719x -wdt87xx_i2c -wdt_pci -whc-rc -whci -whci-hcd -whiteheat -wil6210 -wimax -winbond-840 -wire -wishbone-serial -wl1251 -wl1251_sdio -wl1251_spi -wl1273-core -wl12xx -wl18xx -wlcore -wlcore_sdio -wlcore_spi -wm831x-dcdc -wm831x-hwmon -wm831x-isink -wm831x-ldo -wm831x-on -wm831x-ts -wm831x_backup -wm831x_bl -wm831x_power -wm831x_wdt -wm8350-hwmon -wm8350-regulator -wm8350_power -wm8350_wdt -wm8400-regulator -wm8739 -wm8775 -wm8994-core -wm8994-irq -wm8994-regmap -wm8994-regulator -wm97xx-ts -wp512 -wusb-cbaf -wusb-wa -wusbcore -x25 -x25_asy -x_tables -xc4000 -xc5000 -xcbc -xfrm4_mode_beet -xfrm4_mode_transport -xfrm4_mode_tunnel -xfrm4_tunnel -xfrm6_mode_beet -xfrm6_mode_ro -xfrm6_mode_transport -xfrm6_mode_tunnel -xfrm6_tunnel -xfrm_algo -xfrm_ipcomp -xfrm_user -xfs -xgifb -xgmac -xhci-plat-hcd -xilinx-tpg -xilinx-video -xilinx-vtc -xilinx_uartps -xillybus_core -xillybus_of -xillybus_pcie -xor -xor-neon -xpad -xr_usb_serial_common -xsens_mt -xt_AUDIT -xt_CHECKSUM -xt_CLASSIFY -xt_CONNSECMARK -xt_CT -xt_DSCP -xt_HL -xt_HMARK -xt_IDLETIMER -xt_LED -xt_LOG -xt_NETMAP -xt_NFLOG -xt_NFQUEUE -xt_RATEEST -xt_REDIRECT -xt_SECMARK -xt_TCPMSS -xt_TCPOPTSTRIP -xt_TEE -xt_TPROXY -xt_TRACE -xt_addrtype -xt_bpf -xt_cgroup -xt_cluster -xt_comment -xt_connbytes -xt_connlabel -xt_connlimit -xt_connmark -xt_conntrack -xt_cpu -xt_dccp -xt_devgroup -xt_dscp -xt_ecn -xt_esp -xt_hashlimit -xt_helper -xt_hl -xt_ipcomp -xt_iprange -xt_ipvs -xt_l2tp -xt_length -xt_limit -xt_mac -xt_mark -xt_multiport -xt_nat -xt_nfacct -xt_osf -xt_owner -xt_physdev -xt_pkttype -xt_policy -xt_quota -xt_rateest -xt_realm -xt_recent -xt_sctp -xt_set -xt_socket -xt_state -xt_statistic -xt_string -xt_tcpmss -xt_tcpudp -xt_time -xt_u32 -xtkbd -xts -xusbatm -xz_dec_test -yam -yealink -yellowfin -yurex -zaurus -zd1201 -zd1211rw -zforce_ts -zhenhua -zl10036 -zl10039 -zl10353 -zl6100 -zlib -zr364xx -zram -zynq-fpga reverted: --- linux-raspi2-4.4.0/debian.master/abi/4.4.0-89.112/armhf/generic.compiler +++ linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-89.112/armhf/generic.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu/Linaro 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 reverted: --- linux-raspi2-4.4.0/debian.master/abi/4.4.0-89.112/armhf/generic.modules +++ linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-89.112/armhf/generic.modules @@ -1,4631 +0,0 @@ -3w-9xxx -3w-sas -3w-xxxx -6lowpan -6pack -8021q -8139cp -8139too -8250_dw -8250_mid -8250_omap -8250_uniphier -8255 -8255_pci -8390 -842 -842_compress -842_decompress -88pm800 -88pm805 -88pm80x -88pm80x_onkey -88pm8607 -88pm860x-ts -88pm860x_battery -88pm860x_bl -88pm860x_charger -88pm860x_onkey -9p -9pnet -9pnet_rdma -9pnet_virtio -DAC960 -a100u2w -a3d -a8293 -aacraid -aat2870-regulator -aat2870_bl -ab3100 -ab3100-otp -ablk_helper -acard-ahci -acecad -acenic -act200l-sir -act8865-regulator -act_bpf -act_connmark -act_csum -act_gact -act_ipt -act_mirred -act_nat -act_pedit -act_police -act_simple -act_skbedit -act_vlan -actisys-sir -ad2s1200 -ad2s1210 -ad2s90 -ad5064 -ad525x_dpot -ad525x_dpot-i2c -ad525x_dpot-spi -ad5360 -ad5380 -ad5398 -ad5421 -ad5446 -ad5449 -ad5504 -ad5592r -ad5592r-base -ad5593r -ad5624r_spi -ad5686 -ad5755 -ad5764 -ad5791 -ad5933 -ad714x -ad714x-i2c -ad714x-spi -ad7150 -ad7152 -ad7192 -ad7266 -ad7280a -ad7291 -ad7298 -ad7303 -ad7314 -ad7414 -ad7418 -ad7476 -ad7606 -ad7746 -ad7780 -ad7791 -ad7793 -ad7816 -ad7877 -ad7879 -ad7879-i2c -ad7879-spi -ad7887 -ad7923 -ad799x -ad8366 -ad9523 -ad9832 -ad9834 -ad_sigma_delta -adc128d818 -adcxx -addi_apci_1032 -addi_apci_1500 -addi_apci_1516 -addi_apci_1564 -addi_apci_16xx -addi_apci_2032 -addi_apci_2200 -addi_apci_3120 -addi_apci_3501 -addi_apci_3xxx -addi_watchdog -ade7753 -ade7754 -ade7758 -ade7759 -ade7854 -ade7854-i2c -ade7854-spi -adf4350 -adfs -adi -adis16060 -adis16080 -adis16130 -adis16136 -adis16201 -adis16203 -adis16204 -adis16209 -adis16220 -adis16240 -adis16260 -adis16400 -adis16480 -adis_lib -adjd_s311 -adl_pci6208 -adl_pci7x3x -adl_pci8164 -adl_pci9111 -adl_pci9118 -adm1021 -adm1025 -adm1026 -adm1029 -adm1031 -adm1275 -adm8211 -adm9240 -adp5520-keys -adp5520_bl -adp5588-keys -adp5589-keys -adp8860_bl -adp8870_bl -adq12b -ads1015 -ads7828 -ads7846 -ads7871 -adt7310 -adt7316 -adt7316-i2c -adt7316-spi -adt7410 -adt7411 -adt7462 -adt7470 -adt7475 -adt7x10 -adummy -adutux -adv7511 -adv7604 -adv7842 -adv_pci1710 -adv_pci1723 -adv_pci1724 -adv_pci_dio -advansys -adxl34x -adxl34x-i2c -adxl34x-spi -adxrs450 -aes-arm -aes-arm-bs -aes-arm-ce -af-rxrpc -af9013 -af9033 -af_alg -af_key -af_packet_diag -affs -afs -ah4 -ah6 -ahci -ahci_ceva -ahci_mvebu -ahci_qoriq -ahci_tegra -aic79xx -aic7xxx -aic94xx -aim_cdev -aim_network -aim_sound -aim_v4l2 -aio_aio12_8 -aio_iiro_16 -aiptek -aircable -airspy -ak8975 -al3320a -algif_aead -algif_hash -algif_rng -algif_skcipher -alim7101_wdt -altera-ci -altera-stapl -altera_jtaguart -altera_ps2 -altera_tse -altera_uart -alx -am35x -am53c974 -amba-pl010 -ambakmi -amc6821 -amd -amd5536udc -amd8111e -amdgpu -amplc_dio200 -amplc_dio200_common -amplc_dio200_pci -amplc_pc236 -amplc_pc236_common -amplc_pc263 -amplc_pci224 -amplc_pci230 -amplc_pci236 -amplc_pci263 -ams369fg06 -analog -anatop-regulator -ansi_cprng -anubis -aoe -apbps2 -apds9300 -apds9802als -apds990x -apds9960 -appledisplay -appletalk -appletouch -applicom -aquantia -ar1021_i2c -ar5523 -ar7part -arc-rawmode -arc-rimi -arc4 -arc_emac -arc_ps2 -arc_uart -arcmsr -arcnet -arizona-haptics -arizona-i2c -arizona-ldo1 -arizona-micsupp -arizona-spi -ark3116 -arkfb -arm_big_little -arm_big_little_dt -arm_mhu -arm_scpi -armada -arp_tables -arpt_mangle -arptable_filter -as102_fe -as3711-regulator -as3711_bl -as3722-regulator -as3935 -as5011 -asc7621 -ascot2e -asix -ast -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at24 -at25 -at76c50x-usb -at803x -at86rf230 -ata_generic -ata_piix -atbm8830 -aten -ath -ath10k_core -ath10k_pci -ath3k -ath5k -ath6kl_core -ath6kl_sdio -ath6kl_usb -ath9k -ath9k_common -ath9k_htc -ath9k_hw -ati_remote -ati_remote2 -atl1 -atl1c -atl1e -atl2 -atm -atmel -atmel-flexcom -atmel-hlcdc -atmel-hlcdc-dc -atmel_mxt_ts -atmel_pci -atmtcp -atp870u -atusb -atxp1 -aty128fb -atyfb -au0828 -au8522_common -au8522_decoder -au8522_dig -aufs -auo-pixcir-ts -auo_k1900fb -auo_k1901fb -auo_k190x -auth_rpcgss -authenc -authencesn -autofs4 -avmfritz -ax25 -ax88179_178a -ax88796 -axp20x-pek -axp20x-regulator -axp20x_usb_power -axp288_adc -axp288_charger -axp288_fuel_gauge -b1 -b1dma -b1pci -b2c2-flexcop -b2c2-flexcop-pci -b2c2-flexcop-usb -b43 -b43legacy -b44 -bL_switcher_dummy_if -bas_gigaset -batman-adv -baycom_epp -baycom_par -baycom_ser_fdx -baycom_ser_hdx -bcache -bcm-keypad -bcm-phy-lib -bcm203x -bcm3510 -bcm590xx -bcm590xx-regulator -bcm5974 -bcm63138_nand -bcm63xx_uart -bcm7038_wdt -bcm7xxx -bcm87xx -bcma -bcmsysport -bd6107 -bdc -bdc_pci -be2iscsi -be2net -befs -belkin_sa -berlin2-adc -bfa -bfs -bfusb -bh1750 -bh1770glc -bh1780gli -binfmt_misc -block2mtd -blocklayoutdriver -blowfish_common -blowfish_generic -bluetooth -bluetooth_6lowpan -bma150 -bma180 -bmc150-accel-core -bmc150-accel-i2c -bmc150-accel-spi -bmc150_magn -bmg160_core -bmg160_i2c -bmg160_spi -bmp085 -bmp085-i2c -bmp085-spi -bmp280 -bna -bnep -bnx2 -bnx2fc -bnx2i -bnx2x -bnxt_en -bonding -bpa10x -bpck -bpck6 -bpqether -bq2415x_charger -bq24190_charger -bq24257_charger -bq24735-charger -bq25890_charger -bq27xxx_battery -br2684 -br_netfilter -brcmfmac -brcmnand -brcmsmac -brcmstb_nand -brcmutil -brd -bridge -broadcom -broadsheetfb -bsd_comp -bt878 -btbcm -btcoexist -btintel -btmrvl -btmrvl_sdio -btqca -btrfs -btrtl -btsdio -bttv -btusb -btwilink -bu21013_ts -budget -budget-av -budget-ci -budget-core -budget-patch -c4 -c67x00 -c6xdigio -c_can -c_can_pci -c_can_platform -caam -caam_jr -caamalg -caamhash -caamrng -cachefiles -cadence_wdt -cafe_ccic -cafe_nand -caif -caif_hsi -caif_serial -caif_socket -caif_usb -caif_virtio -camellia_generic -can -can-bcm -can-dev -can-gw -can-raw -cap11xx -capi -capidrv -capmode -carl9170 -carminefb -cassini -cast5_generic -cast6_generic -cast_common -catc -cb710 -cb710-mmc -cb_pcidas -cb_pcidas64 -cb_pcidda -cb_pcimdas -cb_pcimdda -cc10001_adc -cc2520 -cc770 -cc770_isa -cc770_platform -cciss -ccm -cdc-acm -cdc-phonet -cdc-wdm -cdc_eem -cdc_ether -cdc_mbim -cdc_ncm -cdc_subset -ceph -cfg80211 -cfi_cmdset_0001 -cfi_cmdset_0002 -cfi_cmdset_0020 -cfi_probe -cfi_util -cfspi_slave -ch -ch341 -ch7006 -ch9200 -chacha20_generic -chacha20poly1305 -chaoskey -chipone_icn8318 -chnl_net -ci_hdrc -ci_hdrc_imx -ci_hdrc_msm -ci_hdrc_pci -ci_hdrc_usb2 -ci_hdrc_zevio -cicada -cifs -cirrus -cirrusfb -clip -clk-cdce706 -clk-cdce925 -clk-max77686 -clk-max77802 -clk-palmas -clk-pwm -clk-qcom -clk-rk808 -clk-s2mps11 -clk-scpi -clk-si514 -clk-si5351 -clk-si570 -clk-twl6040 -clk-wm831x -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_rsvp -cls_rsvp6 -cls_tcindex -cls_u32 -cm109 -cm32181 -cm3232 -cm3323 -cm36651 -cma3000_d0x -cma3000_d0x_i2c -cmac -cmt_speech -cmtp -cnic -cobalt -cobra -coda -colibri-vf50-ts -com20020 -com20020-pci -com90io -com90xx -comedi -comedi_8254 -comedi_8255 -comedi_bond -comedi_parport -comedi_pci -comedi_test -comedi_usb -comm -configfs -connector-analog-tv -connector-dvi -contec_pci_dio -cordic -core -cp210x -cpia2 -cppi41 -cpu-notifier-error-inject -cramfs -crc-ccitt -crc-itu-t -crc32 -crc7 -crc8 -cros_ec -cros_ec_devs -cros_ec_i2c -cros_ec_keyb -cros_ec_spi -cryptd -crypto_user -cryptoloop -cs5345 -cs53l32a -cs89x0 -csiostor -ctr -cts -cuse -cw1200_core -cw1200_wlan_sdio -cw1200_wlan_spi -cx18 -cx18-alsa -cx22700 -cx22702 -cx231xx -cx231xx-alsa -cx231xx-dvb -cx2341x -cx23885 -cx24110 -cx24113 -cx24116 -cx24117 -cx24120 -cx24123 -cx25821 -cx25821-alsa -cx25840 -cx82310_eth -cx88-alsa -cx88-blackbird -cx88-dvb -cx88-vp3054-i2c -cx8800 -cx8802 -cx88xx -cxacru -cxd2099 -cxd2820r -cxd2841er -cxgb -cxgb3 -cxgb3i -cxgb4 -cxgb4i -cxgb4vf -cy8ctmg110_ts -cyapatp -cyber2000fb -cyberjack -cyclades -cypress_cy7c63 -cypress_firmware -cypress_m8 -cytherm -cyttsp4_core -cyttsp4_i2c -cyttsp4_spi -cyttsp_core -cyttsp_i2c -cyttsp_i2c_common -cyttsp_spi -da8xx-fb -da9030_battery -da9034-ts -da903x -da903x_bl -da9052-battery -da9052-hwmon -da9052-regulator -da9052_bl -da9052_onkey -da9052_tsi -da9052_wdt -da9055-hwmon -da9055-regulator -da9055_onkey -da9055_wdt -da9062-core -da9062-regulator -da9062_wdt -da9063-regulator -da9063_onkey -da9063_wdt -da9150-charger -da9150-core -da9150-fg -da9150-gpadc -da9210-regulator -da9211-regulator -dac02 -daqboard2000 -das08 -das08_isa -das08_pci -das16 -das16m1 -das1800 -das6402 -das800 -davicom -davinci_emac -db9 -dc395x -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -dccp_probe -ddbridge -de2104x -decnet -deflate -defxx -denali -denali_dt -denali_pci -des_generic -designware_i2s -dgap -dgnc -dht11 -dib0070 -dib0090 -dib3000mb -dib3000mc -dib7000m -dib7000p -dib8000 -dibx000_common -digi_acceleport -digicolor-usart -diskonchip -diva_idi -diva_mnt -divacapi -divadidd -divas -dl2k -dlci -dlm -dln2 -dm-bio-prison -dm-bufio -dm-cache -dm-cache-cleaner -dm-cache-mq -dm-cache-smq -dm-crypt -dm-delay -dm-era -dm-flakey -dm-log -dm-log-userspace -dm-log-writes -dm-mirror -dm-multipath -dm-persistent-data -dm-queue-length -dm-raid -dm-region-hash -dm-round-robin -dm-service-time -dm-snapshot -dm-switch -dm-thin-pool -dm-verity -dm-zero -dm1105 -dm9000 -dm9601 -dme1737 -dmfe -dmm32at -dmx3191d -dn_rtmsg -dnet -docg3 -docg4 -dove_thermal -dp83848 -dp83867 -drbd -drbg -drm -drm_kms_helper -drop_monitor -drv260x -drv2665 -drv2667 -drx39xyj -drxd -drxk -ds1621 -ds1682 -ds1wm -ds2482 -ds2490 -ds2760_battery -ds2780_battery -ds2781_battery -ds2782_battery -ds3000 -ds620 -dsbr100 -dscc4 -dss1_divert -dst -dst_ca -dstr -dt2801 -dt2811 -dt2814 -dt2815 -dt2817 -dt282x -dt3000 -dt3155 -dt9812 -dummy -dummy-irq -dummy_stm -dvb-as102 -dvb-bt8xx -dvb-core -dvb-pll -dvb-ttpci -dvb-ttusb-budget -dvb-usb -dvb-usb-a800 -dvb-usb-af9005 -dvb-usb-af9005-remote -dvb-usb-af9015 -dvb-usb-af9035 -dvb-usb-anysee -dvb-usb-au6610 -dvb-usb-az6007 -dvb-usb-az6027 -dvb-usb-ce6230 -dvb-usb-cinergyT2 -dvb-usb-cxusb -dvb-usb-dib0700 -dvb-usb-dibusb-common -dvb-usb-dibusb-mb -dvb-usb-dibusb-mc -dvb-usb-digitv -dvb-usb-dtt200u -dvb-usb-dtv5100 -dvb-usb-dvbsky -dvb-usb-dw2102 -dvb-usb-ec168 -dvb-usb-friio -dvb-usb-gl861 -dvb-usb-gp8psk -dvb-usb-lmedm04 -dvb-usb-m920x -dvb-usb-mxl111sf -dvb-usb-nova-t-usb2 -dvb-usb-opera -dvb-usb-pctv452e -dvb-usb-rtl28xxu -dvb-usb-technisat-usb2 -dvb-usb-ttusb2 -dvb-usb-umt-010 -dvb-usb-vp702x -dvb-usb-vp7045 -dvb_usb_v2 -dw_dmac -dw_dmac_core -dw_dmac_pci -dw_hdmi -dw_hdmi-ahb-audio -dw_hdmi-imx -dw_hdmi-rockchip -dw_mmc -dw_mmc-exynos -dw_mmc-k3 -dw_mmc-pci -dw_mmc-pltfm -dw_mmc-rockchip -dw_wdt -dwc3 -dwc3-exynos -dwc3-omap -dwc3-pci -dwc3-qcom -dwc_eth_qos -dwmac-generic -dwmac-ipq806x -dwmac-lpc18xx -dwmac-meson -dwmac-rk -dwmac-socfpga -dwmac-sti -dwmac-sunxi -dyna_pci10xx -dynapro -e100 -e1000 -e1000e -e3x0-button -e4000 -earth-pt1 -earth-pt3 -ebt_802_3 -ebt_among -ebt_arp -ebt_arpreply -ebt_dnat -ebt_ip -ebt_ip6 -ebt_limit -ebt_log -ebt_mark -ebt_mark_m -ebt_nflog -ebt_pkttype -ebt_redirect -ebt_snat -ebt_stp -ebt_vlan -ebtable_broute -ebtable_filter -ebtable_nat -ebtables -ec100 -echainiv -echo -edac_core -edt-ft5x06 -eeprom -eeprom_93cx6 -eeprom_93xx46 -eeti_ts -efs -egalax_ts -ehci-msm -ehci-mxc -ehci-omap -ehci-tegra -ehset -elan_i2c -elo -em28xx -em28xx-alsa -em28xx-dvb -em28xx-rc -em28xx-v4l -em_canid -em_cmp -em_ipset -em_meta -em_nbyte -em_text -em_u32 -emac_arc -emac_rockchip -emc1403 -emc2103 -emc6w201 -emi26 -emi62 -emif -empeg -ems_pci -ems_usb -emu10k1-gp -enc28j60 -enclosure -encoder-opa362 -encoder-tfp410 -encx24j600 -encx24j600-regmap -eni -enic -epat -epia -epic100 -eql -esas2r -esd_usb2 -esi-sir -esp4 -esp6 -esp_scsi -et1011c -et131x -ethoc -evbug -exofs -extcon-adc-jack -extcon-arizona -extcon-axp288 -extcon-gpio -extcon-max14577 -extcon-max77693 -extcon-max77843 -extcon-max8997 -extcon-palmas -extcon-rt8973a -extcon-sm5502 -extcon-usb-gpio -exynos-gsc -exynos-rng -exynos_adc -exynosdrm -ezusb -f2fs -f71805f -f71882fg -f75375s -f81232 -fakelb -fan53555 -farsync -faulty -fb_agm1264k-fl -fb_bd663474 -fb_ddc -fb_hx8340bn -fb_hx8347d -fb_hx8353d -fb_hx8357d -fb_ili9163 -fb_ili9320 -fb_ili9325 -fb_ili9340 -fb_ili9341 -fb_ili9481 -fb_ili9486 -fb_pcd8544 -fb_ra8875 -fb_s6d02a1 -fb_s6d1121 -fb_ssd1289 -fb_ssd1306 -fb_ssd1331 -fb_ssd1351 -fb_st7735r -fb_st7789v -fb_sys_fops -fb_tinylcd -fb_tls8204 -fb_uc1611 -fb_uc1701 -fb_upd161704 -fb_watterott -fbtft -fbtft_device -fc0011 -fc0012 -fc0013 -fc2580 -fcoe -fcrypt -fdomain -fdp -fdp_i2c -fealnx -ff-memless -firedtv -firewire-core -firewire-net -firewire-ohci -firewire-sbp2 -firewire-serial -fit2 -fit3 -fl512 -flexcan -flexfb -fm10k -fm801-gp -fm_drv -fmc -fmc-chardev -fmc-fakedev -fmc-trivial -fmc-write-eeprom -forcedeth -fore_200e -fotg210-hcd -fotg210-udc -fou -fpga-mgr -freevxfs -friq -frpw -fsa9480 -fscache -fsl-dcu-drm -fsl-edma -fsl-mph-dr-of -fsl-quadspi -fsl_lpuart -fsl_pq_mdio -fsl_usb2_udc -ft6236 -ftdi-elan -ftdi_sio -ftgmac100 -ftl -ftmac100 -fujitsu_ts -fusb300_udc -g450_pll -g760a -g762 -g_acm_ms -g_audio -g_cdc -g_dbgp -g_ether -g_ffs -g_hid -g_mass_storage -g_midi -g_multi -g_ncm -g_nokia -g_printer -g_serial -g_webcam -g_zero -gadgetfs -gamecon -gameport -garmin_gps -garp -gcc-apq8084 -gcc-ipq806x -gcc-msm8660 -gcc-msm8916 -gcc-msm8960 -gcc-msm8974 -gcm -gdmtty -gdmulte -gdmwm -gen_probe -generic -generic-adc-battery -generic_bl -genet -geneve -gennvm -gf128mul -gf2k -gfs2 -ghash-arm-ce -ghash-generic -gianfar_driver -gianfar_ptp -gigaset -girbil-sir -gl518sm -gl520sm -gl620a -gluebi -go7007 -go7007-loader -go7007-usb -goku_udc -goodix -gp2ap002a00f -gp2ap020a00f -gpio -gpio-74x164 -gpio-74xx-mmio -gpio-addr-flash -gpio-adnp -gpio-adp5520 -gpio-adp5588 -gpio-altera -gpio-amd8111 -gpio-arizona -gpio-beeper -gpio-charger -gpio-crystalcove -gpio-da9052 -gpio-da9055 -gpio-dln2 -gpio-dwapb -gpio-fan -gpio-grgpio -gpio-ir-recv -gpio-janz-ttl -gpio-kempld -gpio-lp3943 -gpio-max7300 -gpio-max7301 -gpio-max730x -gpio-max732x -gpio-mc33880 -gpio-mcp23s08 -gpio-ml-ioh -gpio-pca953x -gpio-pcf857x -gpio-rcar -gpio-rdc321x -gpio-regulator -gpio-syscon -gpio-tps65912 -gpio-ucb1400 -gpio-viperboard -gpio-vx855 -gpio-wm831x -gpio-wm8350 -gpio-wm8994 -gpio_backlight -gpio_keys -gpio_keys_polled -gpio_mouse -gpio_tilt_polled -gpio_wdt -gpmi_nand -gr_udc -grace -grcan -gre -grip -grip_mp -gs_fpga -gs_usb -gsc_hpdi -gspca_benq -gspca_conex -gspca_cpia1 -gspca_dtcs033 -gspca_etoms -gspca_finepix -gspca_gl860 -gspca_jeilinj -gspca_jl2005bcd -gspca_kinect -gspca_konica -gspca_m5602 -gspca_main -gspca_mars -gspca_mr97310a -gspca_nw80x -gspca_ov519 -gspca_ov534 -gspca_ov534_9 -gspca_pac207 -gspca_pac7302 -gspca_pac7311 -gspca_se401 -gspca_sn9c2028 -gspca_sn9c20x -gspca_sonixb -gspca_sonixj -gspca_spca1528 -gspca_spca500 -gspca_spca501 -gspca_spca505 -gspca_spca506 -gspca_spca508 -gspca_spca561 -gspca_sq905 -gspca_sq905c -gspca_sq930x -gspca_stk014 -gspca_stk1135 -gspca_stv0680 -gspca_stv06xx -gspca_sunplus -gspca_t613 -gspca_topro -gspca_touptek -gspca_tv8532 -gspca_vc032x -gspca_vicam -gspca_xirlink_cit -gspca_zc3xx -gtco -guillemot -gunze -gxt4500 -hackrf -hamachi -hampshire -hanwang -hci -hci_uart -hci_vhci -hdc100x -hdlc -hdlc_cisco -hdlc_fr -hdlc_ppp -hdlc_raw -hdlc_raw_eth -hdlc_x25 -hdlcdrv -hdm_dim2 -hdm_i2c -hdm_usb -hdpvr -he -hexium_gemini -hexium_orion -hfc4s8s_l1 -hfc_usb -hfcmulti -hfcpci -hfcsusb -hfs -hfsplus -hi6421-pmic-core -hi6421-regulator -hi8435 -hid -hid-a4tech -hid-alps -hid-apple -hid-appleir -hid-aureal -hid-axff -hid-belkin -hid-betopff -hid-cherry -hid-chicony -hid-corsair -hid-cp2112 -hid-cypress -hid-dr -hid-elecom -hid-elo -hid-emsff -hid-ezkey -hid-gaff -hid-gembird -hid-generic -hid-gfrm -hid-gt683r -hid-gyration -hid-holtek-kbd -hid-holtek-mouse -hid-holtekff -hid-icade -hid-kensington -hid-keytouch -hid-kye -hid-lcpower -hid-lenovo -hid-logitech -hid-logitech-dj -hid-logitech-hidpp -hid-magicmouse -hid-microsoft -hid-monterey -hid-multitouch -hid-ntrig -hid-ortek -hid-penmount -hid-petalynx -hid-picolcd -hid-pl -hid-plantronics -hid-primax -hid-prodikeys -hid-rmi -hid-roccat -hid-roccat-arvo -hid-roccat-common -hid-roccat-isku -hid-roccat-kone -hid-roccat-koneplus -hid-roccat-konepure -hid-roccat-kovaplus -hid-roccat-lua -hid-roccat-pyra -hid-roccat-ryos -hid-roccat-savu -hid-saitek -hid-samsung -hid-sensor-accel-3d -hid-sensor-als -hid-sensor-custom -hid-sensor-gyro-3d -hid-sensor-hub -hid-sensor-iio-common -hid-sensor-incl-3d -hid-sensor-magn-3d -hid-sensor-press -hid-sensor-prox -hid-sensor-rotation -hid-sensor-trigger -hid-sjoy -hid-sony -hid-speedlink -hid-steelseries -hid-sunplus -hid-thingm -hid-tivo -hid-tmff -hid-topseed -hid-twinhan -hid-uclogic -hid-waltop -hid-wiimote -hid-xinmo -hid-zpff -hid-zydacron -hidp -hifn_795x -highbank-cpufreq -highbank_l2_edac -highbank_mc_edac -hih6130 -hip04_eth -hisax -hisax_fcpcipnp -hisax_isac -hisax_st5481 -hisi-acpu-cpufreq -hisi504_nand -hisi_thermal -hix5hd2_gmac -hmc5843_core -hmc5843_i2c -hmc5843_spi -hmc6352 -hnae -hns_dsaf -hns_enet_drv -hns_mdio -hopper -horus3a -host1x -hostap -hostap_pci -hostap_plx -hp100 -hpfs -hpilo -hpsa -hptiop -hsi -hsi_char -hso -hsr -hsu_dma -htc-pasic3 -hts221 -hts221_i2c -hts221_spi -htu21 -huawei_cdc_ncm -hwa-hc -hwa-rc -hwmon-vid -hwspinlock_core -hx8357 -hysdn -i1480-dfu-usb -i1480-est -i2400m -i2400m-usb -i2c-algo-bit -i2c-algo-pca -i2c-ali1535 -i2c-ali1563 -i2c-ali15x3 -i2c-amd756 -i2c-amd8111 -i2c-arb-gpio-challenge -i2c-cbus-gpio -i2c-cros-ec-tunnel -i2c-designware-core -i2c-designware-pci -i2c-designware-platform -i2c-diolan-u2c -i2c-dln2 -i2c-emev2 -i2c-exynos5 -i2c-gpio -i2c-hid -i2c-hix5hd2 -i2c-i801 -i2c-isch -i2c-kempld -i2c-matroxfb -i2c-meson -i2c-mt65xx -i2c-mux -i2c-mux-gpio -i2c-mux-pca9541 -i2c-mux-pca954x -i2c-mux-pinctrl -i2c-mux-reg -i2c-mv64xxx -i2c-nforce2 -i2c-nomadik -i2c-ocores -i2c-parport -i2c-parport-light -i2c-pca-platform -i2c-piix4 -i2c-qup -i2c-rcar -i2c-riic -i2c-rk3x -i2c-robotfuzz-osif -i2c-sh_mobile -i2c-simtec -i2c-sis5595 -i2c-sis630 -i2c-sis96x -i2c-slave-eeprom -i2c-smbus -i2c-stub -i2c-taos-evm -i2c-tegra -i2c-tiny-usb -i2c-uniphier -i2c-uniphier-f -i2c-versatile -i2c-via -i2c-viapro -i2c-viperboard -i2c-xiic -i40e -i40evf -i5k_amb -i6300esb -i740fb -ib_addr -ib_cm -ib_core -ib_ipoib -ib_iser -ib_isert -ib_mad -ib_mthca -ib_sa -ib_srp -ib_srpt -ib_ucm -ib_umad -ib_uverbs -ibmaem -ibmpex -icp_multi -icplus -ics932s401 -idma64 -idmouse -idt77252 -ieee802154 -ieee802154_6lowpan -ieee802154_socket -ifb -iforce -igb -igbvf -igorplugusb -iguanair -ii_pci20kc -iio-trig-interrupt -iio-trig-periodic-rtc -iio-trig-sysfs -iio_dummy -iio_hwmon -ila -ili210x -ili922x -ili9320 -imm -imon -impa7 -ims-pcu -imx-dma -imx-ipu-v3 -imx-ipuv3-crtc -imx-ldb -imx-sdma -imx-tve -imx074 -imx21-hcd -imx2_wdt -imx6q-cpufreq -imx6ul_tsc -imx_keypad -imx_thermal -imxdrm -imxfb -ina209 -ina2xx -industrialio -industrialio-buffer-cb -industrialio-triggered-buffer -industrialio-triggered-event -inet_diag -inexio -inftl -initio -input-leds -input-polldev -int51x1 -intel_th -intel_th_gth -intel_th_msu -intel_th_pci -intel_th_pti -intel_th_sth -intel_vr_nor -interact -interval_tree_test -inv-mpu6050 -io_edgeport -io_ti -ioc4 -iowarrior -ip6_gre -ip6_tables -ip6_tunnel -ip6_udp_tunnel -ip6_vti -ip6t_MASQUERADE -ip6t_NPT -ip6t_REJECT -ip6t_SYNPROXY -ip6t_ah -ip6t_eui64 -ip6t_frag -ip6t_hbh -ip6t_ipv6header -ip6t_mh -ip6t_rpfilter -ip6t_rt -ip6table_filter -ip6table_mangle -ip6table_nat -ip6table_raw -ip6table_security -ip_gre -ip_set -ip_set_bitmap_ip -ip_set_bitmap_ipmac -ip_set_bitmap_port -ip_set_hash_ip -ip_set_hash_ipmark -ip_set_hash_ipport -ip_set_hash_ipportip -ip_set_hash_ipportnet -ip_set_hash_mac -ip_set_hash_net -ip_set_hash_netiface -ip_set_hash_netnet -ip_set_hash_netport -ip_set_hash_netportnet -ip_set_list_set -ip_tables -ip_tunnel -ip_vs -ip_vs_dh -ip_vs_fo -ip_vs_ftp -ip_vs_lblc -ip_vs_lblcr -ip_vs_lc -ip_vs_nq -ip_vs_ovf -ip_vs_pe_sip -ip_vs_rr -ip_vs_sed -ip_vs_sh -ip_vs_wlc -ip_vs_wrr -ip_vti -ipack -ipaq -ipcomp -ipcomp6 -ipddp -iphase -ipheth -ipip -ipmi_devintf -ipmi_msghandler -ipmi_poweroff -ipmi_si -ipmi_ssif -ipmi_watchdog -ipoctal -ipr -iproc_nand -ips -ipt_CLUSTERIP -ipt_ECN -ipt_MASQUERADE -ipt_REJECT -ipt_SYNPROXY -ipt_ah -ipt_rpfilter -iptable_filter -iptable_mangle -iptable_nat -iptable_raw -iptable_security -ipvlan -ipw -ipw2100 -ipw2200 -ipx -ir-hix5hd2 -ir-jvc-decoder -ir-kbd-i2c -ir-lirc-codec -ir-mce_kbd-decoder -ir-nec-decoder -ir-rc5-decoder -ir-rc6-decoder -ir-sanyo-decoder -ir-sharp-decoder -ir-sony-decoder -ir-usb -ir-xmp-decoder -ircomm -ircomm-tty -irda -irda-usb -irlan -irnet -irqbypass -irtty-sir -iscsi_boot_sysfs -iscsi_target_mod -iscsi_tcp -isdn -isdn_bsdcomp -isdnhdlc -isicom -isight_firmware -isl29003 -isl29018 -isl29020 -isl29028 -isl29125 -isl6271a-regulator -isl6405 -isl6421 -isl6423 -isl9305 -isofs -isp116x-hcd -isp1362-hcd -isp1704_charger -isp1760 -it87 -it913x -itd1000 -itg3200 -iuu_phoenix -ivtv -ivtv-alsa -ivtvfb -iw_c2 -iw_cm -iw_cxgb3 -iw_cxgb4 -iw_nes -iwl3945 -iwl4965 -iwldvm -iwlegacy -iwlmvm -iwlwifi -ix2505v -ixgb -ixgbe -ixgbevf -janz-cmodio -janz-ican3 -jc42 -jedec_probe -jffs2 -jfs -jitterentropy_rng -jmb38x_ms -jme -joydev -joydump -jr3_pci -jsa1212 -jsm -k3dma -kafs -kalmia -kaweth -kbic -kbtab -kcomedilib -ke_counter -kempld-core -kempld_wdt -kernelcapi -keyspan -keyspan_pda -keyspan_remote -keywrap -kfifo_buf -khazad -kingsun-sir -kl5kusb105 -kmx61 -kobil_sct -ks0108 -ks8842 -ks8851 -ks8851_mll -ks959-sir -ksdazzle-sir -ksz884x -ktti -kvaser_pci -kvaser_usb -kxcjk-1013 -kxsd9 -kxtj9 -kyrofb -l1oip -l2tp_core -l2tp_debugfs -l2tp_eth -l2tp_ip -l2tp_ip6 -l2tp_netlink -l2tp_ppp -l4f00242t03 -l64781 -lan78xx -lanai -lapb -lapbether -latch-addr-flash -lattice-ecp3-config -lcc-ipq806x -lcc-msm8960 -lcd -ld9040 -ldusb -lec -led-class-flash -leds-88pm860x -leds-aat1290 -leds-adp5520 -leds-bcm6328 -leds-bcm6358 -leds-bd2802 -leds-blinkm -leds-da903x -leds-da9052 -leds-dac124s085 -leds-gpio -leds-ktd2692 -leds-lm3530 -leds-lm3533 -leds-lm355x -leds-lm3642 -leds-lp3944 -leds-lp5521 -leds-lp5523 -leds-lp5562 -leds-lp55xx-common -leds-lp8501 -leds-lp8788 -leds-lp8860 -leds-lt3593 -leds-max77693 -leds-max8997 -leds-mc13783 -leds-menf21bmc -leds-ns2 -leds-pca9532 -leds-pca955x -leds-pca963x -leds-pwm -leds-regulator -leds-tca6507 -leds-tlc591xx -leds-wm831x-status -leds-wm8350 -ledtrig-backlight -ledtrig-camera -ledtrig-default-on -ledtrig-gpio -ledtrig-heartbeat -ledtrig-oneshot -ledtrig-timer -ledtrig-transient -legousbtower -lg-vl600 -lg2160 -lgdt3305 -lgdt3306a -lgdt330x -lgs8gxx -lib80211 -lib80211_crypt_ccmp -lib80211_crypt_tkip -lib80211_crypt_wep -libceph -libcomposite -libcrc32c -libcxgbi -libertas -libertas_sdio -libertas_spi -libertas_tf -libertas_tf_usb -libfc -libfcoe -libipw -libiscsi -libiscsi_tcp -libore -libosd -libsas -lightning -lineage-pem -linear -lirc_bt829 -lirc_dev -lirc_imon -lirc_parallel -lirc_sasem -lirc_serial -lirc_sir -lirc_zilog -lis3l02dq -lis3lv02d -lis3lv02d_i2c -lis3lv02d_spi -litelink-sir -lkkbd -llc -llc2 -lm25066 -lm3533-als -lm3533-core -lm3533-ctrlbank -lm3533_bl -lm3630a_bl -lm3639_bl -lm63 -lm70 -lm73 -lm75 -lm77 -lm78 -lm80 -lm83 -lm8323 -lm8333 -lm85 -lm87 -lm90 -lm92 -lm93 -lm95234 -lm95241 -lm95245 -lms283gf05 -lms501kf03 -lnbh25 -lnbp21 -lnbp22 -lockd -locktorture -lp -lp3943 -lp3971 -lp3972 -lp855x_bl -lp8727_charger -lp872x -lp8755 -lp8788-buck -lp8788-charger -lp8788-ldo -lp8788_adc -lp8788_bl -lpc_ich -lpc_sch -lpddr2_nvm -lpddr_cmds -lpfc -lru_cache -lrw -ltc2941-battery-gauge -ltc2945 -ltc2978 -ltc3589 -ltc4151 -ltc4215 -ltc4222 -ltc4245 -ltc4260 -ltc4261 -ltr501 -ltv350qv -lv5207lp -lvstest -lxt -lz4 -lz4_compress -lz4hc -lz4hc_compress -m25p80 -m2m-deinterlace -m52790 -m62332 -m88ds3103 -m88rs2000 -m88rs6000t -mISDN_core -mISDN_dsp -mISDNinfineon -mISDNipac -mISDNisar -m_can -ma600-sir -mac-celtic -mac-centeuro -mac-croatian -mac-cyrillic -mac-gaelic -mac-greek -mac-iceland -mac-inuit -mac-roman -mac-romanian -mac-turkish -mac80211 -mac80211_hwsim -mac802154 -macb -macmodes -macvlan -macvtap -mag3110 -magellan -mailbox-altera -mailbox-test -mantis -mantis_core -map_absent -map_ram -map_rom -marvell -marvell-cesa -matrix-keymap -matrix_keypad -matrox_w1 -matroxfb_DAC1064 -matroxfb_Ti3026 -matroxfb_accel -matroxfb_base -matroxfb_crtc2 -matroxfb_g450 -matroxfb_maven -matroxfb_misc -max1027 -max1111 -max11801_ts -max1363 -max14577 -max14577_charger -max1586 -max16064 -max16065 -max1619 -max1668 -max17040_battery -max17042_battery -max197 -max20751 -max2165 -max3100 -max31790 -max3421-hcd -max34440 -max517 -max5821 -max63xx_wdt -max6639 -max6642 -max6650 -max6697 -max6875 -max7359_keypad -max77686 -max77693 -max77693-haptic -max77693_charger -max77802 -max8649 -max8660 -max8688 -max8903_charger -max8907 -max8907-regulator -max8925-regulator -max8925_bl -max8925_onkey -max8925_power -max8952 -max8973-regulator -max8997 -max8997_charger -max8997_haptic -max8998 -max8998_charger -mb862xxfb -mb86a16 -mb86a20s -mc13783-adc -mc13783-pwrbutton -mc13783-regulator -mc13783_ts -mc13892-regulator -mc13xxx-core -mc13xxx-i2c -mc13xxx-regulator-core -mc13xxx-spi -mc44s803 -mcb -mcb-pci -mceusb -mcp2120-sir -mcp251x -mcp3021 -mcp320x -mcp3422 -mcp4531 -mcp4725 -mcp4922 -mcryptd -mcs5000_ts -mcs7780 -mcs7830 -mcs_touchkey -mct_u232 -md-cluster -md4 -mdc800 -mdio -mdio-bcm-unimac -mdio-bitbang -mdio-gpio -mdio-mux -mdio-mux-gpio -mdio-mux-mmioreg -mdio-xgene -me4000 -me_daq -media -megaraid -megaraid_mbox -megaraid_mm -megaraid_sas -memstick -men_z135_uart -men_z188_adc -mena21_wdt -menf21bmc -menf21bmc_hwmon -menf21bmc_wdt -meson-ir -meson_uart -meson_wdt -metro-usb -metronomefb -mf6x4 -mg_disk -mga -michael_mic -micrel -microchip -microread -microread_i2c -microtek -mii -minix -mip6 -mite -mk712 -mkiss -mlx4_core -mlx4_en -mlx4_ib -mlx5_core -mlx5_ib -mlx90614 -mlxsw_core -mlxsw_pci -mma8450 -mma8452 -mma9551 -mma9551_core -mma9553 -mmc35240 -mmcc-apq8084 -mmcc-msm8960 -mmcc-msm8974 -mmci_qcom_dml -mms114 -mn88472 -mn88473 -mos7720 -mos7840 -mostcore -moxa -mpc624 -mpl115 -mpl3115 -mpls_gso -mpls_iptunnel -mpls_router -mpoa -mpr121_touchkey -mpt3sas -mptbase -mptctl -mptfc -mptlan -mptsas -mptscsih -mptspi -mpu3050 -mrf24j40 -mrp -ms5611_core -ms5611_i2c -ms5611_spi -ms5637 -ms_block -ms_sensors_i2c -msdos -msi001 -msi2500 -msm -msm-rng -msp3400 -mspro_block -mt2060 -mt2063 -mt20xx -mt2131 -mt2266 -mt29f_spinand -mt312 -mt352 -mt6311-regulator -mt6397-core -mt6397-regulator -mt7601u -mt8173-max98090 -mt8173-rt5650-rt5676 -mt9m001 -mt9m111 -mt9t031 -mt9t112 -mt9v011 -mt9v022 -mtd_dataflash -mtdoops -mtdram -mtdswap -mtip32xx -mtk-afe-pcm -mtk-pmic-wrap -mtk-sd -mtk_wdt -mtouch -multipath -multiq3 -musb_am335x -musb_dsps -mv643xx_eth -mv_cesa -mv_u3d_core -mv_udc -mvmdio -mvneta -mvpp2 -mvsas -mvsdio -mvumi -mwifiex -mwifiex_pcie -mwifiex_sdio -mwifiex_usb -mwl8k -mx3_camera -mxb -mxc4005 -mxc_nand -mxc_w1 -mxcmmc -mxl111sf-demod -mxl111sf-tuner -mxl301rf -mxl5005s -mxl5007t -mxs-dcp -mxser -mxsfb -mxuport -myri10ge -n_gsm -n_hdlc -n_r3964 -n_tracerouter -n_tracesink -nandsim -national -natsemi -nau7802 -navman -nb8800 -nbd -nbpfaxi -nci -nci_spi -nci_uart -ncpfs -nct6683 -nct6775 -nct7802 -nct7904 -ne2k-pci -neofb -net1080 -net2272 -net2280 -netconsole -netjet -netlink_diag -netrom -netup-unidvb -netxen_nic -newtonkbd -nf_conntrack -nf_conntrack_amanda -nf_conntrack_broadcast -nf_conntrack_ftp -nf_conntrack_h323 -nf_conntrack_ipv4 -nf_conntrack_ipv6 -nf_conntrack_irc -nf_conntrack_netbios_ns -nf_conntrack_netlink -nf_conntrack_pptp -nf_conntrack_proto_dccp -nf_conntrack_proto_gre -nf_conntrack_proto_sctp -nf_conntrack_proto_udplite -nf_conntrack_sane -nf_conntrack_sip -nf_conntrack_snmp -nf_conntrack_tftp -nf_defrag_ipv4 -nf_defrag_ipv6 -nf_dup_ipv4 -nf_dup_ipv6 -nf_log_arp -nf_log_bridge -nf_log_common -nf_log_ipv4 -nf_log_ipv6 -nf_nat -nf_nat_amanda -nf_nat_ftp -nf_nat_h323 -nf_nat_ipv4 -nf_nat_ipv6 -nf_nat_irc -nf_nat_masquerade_ipv4 -nf_nat_masquerade_ipv6 -nf_nat_pptp -nf_nat_proto_dccp -nf_nat_proto_gre -nf_nat_proto_sctp -nf_nat_proto_udplite -nf_nat_redirect -nf_nat_sip -nf_nat_snmp_basic -nf_nat_tftp -nf_reject_ipv4 -nf_reject_ipv6 -nf_synproxy_core -nf_tables -nf_tables_arp -nf_tables_bridge -nf_tables_inet -nf_tables_ipv4 -nf_tables_ipv6 -nf_tables_netdev -nfc -nfc_digital -nfcmrvl -nfcmrvl_i2c -nfcmrvl_spi -nfcmrvl_uart -nfcmrvl_usb -nfcsim -nfcwilink -nfnetlink -nfnetlink_acct -nfnetlink_cthelper -nfnetlink_cttimeout -nfnetlink_log -nfnetlink_queue -nfs -nfs_acl -nfs_layout_flexfiles -nfs_layout_nfsv41_files -nfsd -nfsv2 -nfsv3 -nfsv4 -nft_chain_nat_ipv4 -nft_chain_nat_ipv6 -nft_chain_route_ipv4 -nft_chain_route_ipv6 -nft_compat -nft_counter -nft_ct -nft_dup_ipv4 -nft_dup_ipv6 -nft_exthdr -nft_hash -nft_limit -nft_log -nft_masq -nft_masq_ipv4 -nft_masq_ipv6 -nft_meta -nft_meta_bridge -nft_nat -nft_queue -nft_rbtree -nft_redir -nft_redir_ipv4 -nft_redir_ipv6 -nft_reject -nft_reject_bridge -nft_reject_inet -nft_reject_ipv4 -nft_reject_ipv6 -nftl -ngene -nhc_dest -nhc_fragment -nhc_hop -nhc_ipv6 -nhc_mobility -nhc_routing -nhc_udp -ni_6527 -ni_65xx -ni_660x -ni_670x -ni_at_a2150 -ni_at_ao -ni_atmio -ni_atmio16d -ni_labpc -ni_labpc_common -ni_labpc_pci -ni_pcidio -ni_pcimio -ni_tio -ni_tiocmd -ni_usb6501 -nicstar -nilfs2 -niu -nlmon -nls_ascii -nls_cp1250 -nls_cp1251 -nls_cp1255 -nls_cp737 -nls_cp775 -nls_cp850 -nls_cp852 -nls_cp855 -nls_cp857 -nls_cp860 -nls_cp861 -nls_cp862 -nls_cp863 -nls_cp864 -nls_cp865 -nls_cp866 -nls_cp869 -nls_cp874 -nls_cp932 -nls_cp936 -nls_cp949 -nls_cp950 -nls_euc-jp -nls_iso8859-13 -nls_iso8859-14 -nls_iso8859-15 -nls_iso8859-2 -nls_iso8859-3 -nls_iso8859-4 -nls_iso8859-5 -nls_iso8859-6 -nls_iso8859-7 -nls_iso8859-9 -nls_koi8-r -nls_koi8-ru -nls_koi8-u -nls_utf8 -nokia-modem -nosy -notifier-error-inject -nouveau -nozomi -nps_enet -ns558 -ns83820 -nsp32 -ntb -ntb_netdev -ntb_pingpong -ntb_tool -ntb_transport -ntc_thermistor -ntfs -null_blk -nvec -nvec_kbd -nvec_paz00 -nvec_power -nvec_ps2 -nvidiafb -nvme -nvmem-imx-ocotp -nvmem-vf610-ocotp -nvmem_core -nvmem_qfprom -nvmem_rockchip_efuse -nvram -nxp-nci -nxp-nci_i2c -nxp-ptn3460 -nxt200x -nxt6000 -objlayoutdriver -ocfb -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -ocrdma -of_xilinx_wdt -ohci-omap3 -old_belkin-sir -omap -omap-aes -omap-des -omap-mailbox -omap-ocp2scp -omap-rng -omap-sham -omap-vout -omap2 -omap2430 -omap3-isp -omap3-rom-rng -omap4-keypad -omap_hdq -omap_hwspinlock -omap_remoteproc -omap_ssi -omap_ssi_port -omap_wdt -omapfb -omfs -omninet -on20 -on26 -onenand -opencores-kbd -openvswitch -oprofile -opt3001 -opticon -option -or51132 -or51211 -orinoco -orinoco_nortel -orinoco_plx -orinoco_tmd -orinoco_usb -orion_nand -orion_wdt -osd -osdblk -osst -oti6858 -ov2640 -ov5642 -ov6650 -ov7640 -ov7670 -ov772x -ov9640 -ov9740 -overlay -oxu210hp-hcd -p54common -p54pci -p54spi -p54usb -p8022 -p8023 -pa12203001 -palmas-pwrbutton -palmas-regulator -pandora_bl -panel -panel-dpi -panel-dsi-cm -panel-lg-lg4573 -panel-lgphilips-lb035q02 -panel-nec-nl8048hl11 -panel-samsung-ld9040 -panel-samsung-s6e8aa0 -panel-sharp-lq101r1sx01 -panel-sharp-ls037v7dw01 -panel-simple -panel-sony-acx565akm -panel-tpo-td028ttec1 -panel-tpo-td043mtea1 -parade-ps8622 -parallel-display -paride -parkbd -parport -parport_ax88796 -parport_pc -parport_serial -pata_ali -pata_amd -pata_artop -pata_atiixp -pata_atp867x -pata_cmd640 -pata_cmd64x -pata_cypress -pata_efar -pata_hpt366 -pata_hpt37x -pata_hpt3x2n -pata_hpt3x3 -pata_imx -pata_it8213 -pata_it821x -pata_jmicron -pata_legacy -pata_marvell -pata_mpiix -pata_netcell -pata_ninja32 -pata_ns87410 -pata_ns87415 -pata_of_platform -pata_oldpiix -pata_opti -pata_optidma -pata_pdc2027x -pata_pdc202xx_old -pata_piccolo -pata_platform -pata_radisys -pata_rdc -pata_rz1000 -pata_sch -pata_serverworks -pata_sil680 -pata_sis -pata_sl82c105 -pata_triflex -pata_via -pbias-regulator -pc300too -pc87360 -pc87427 -pcap-regulator -pcap_keys -pcap_ts -pcbc -pcd -pcf50633 -pcf50633-adc -pcf50633-backlight -pcf50633-charger -pcf50633-gpio -pcf50633-input -pcf50633-regulator -pcf8574_keypad -pcf8591 -pch_udc -pci -pci-stub -pci200syn -pcie-iproc -pcips2 -pcl711 -pcl724 -pcl726 -pcl730 -pcl812 -pcl816 -pcl818 -pcm3724 -pcmad -pcmda12 -pcmmio -pcmuio -pcnet32 -pcrypt -pcwd_pci -pcwd_usb -pd -pda_power -pdc_adma -peak_pci -peak_usb -pegasus -penmount -percpu_test -pf -pfuze100-regulator -pg -phantom -phonet -phram -phy-am335x -phy-am335x-control -phy-bcm-kona-usb2 -phy-berlin-sata -phy-berlin-usb -phy-dm816x-usb -phy-exynos-usb2 -phy-exynos5-usbdrd -phy-gpio-vbus-usb -phy-hix5hd2-sata -phy-isp1301 -phy-msm-usb -phy-mt65xx-usb3 -phy-omap-control -phy-omap-usb2 -phy-pxa-28nm-hsic -phy-pxa-28nm-usb2 -phy-qcom-8x16-usb -phy-qcom-apq8064-sata -phy-qcom-ipq806x-sata -phy-qcom-ufs -phy-qcom-ufs-qmp-14nm -phy-qcom-ufs-qmp-20nm -phy-rcar-gen2 -phy-rcar-usb -phy-rockchip-usb -phy-tahvo -phy-tegra-usb -phy-ti-pipe3 -phy-tusb1210 -phy-twl4030-usb -phy-twl6030-usb -physmap -physmap_of -pinctrl-apq8064 -pinctrl-apq8084 -pinctrl-ipq8064 -pinctrl-msm8660 -pinctrl-msm8916 -pinctrl-msm8960 -pinctrl-msm8x74 -pinctrl-ph1-ld4 -pinctrl-ph1-ld6b -pinctrl-ph1-pro4 -pinctrl-ph1-pro5 -pinctrl-ph1-sld8 -pinctrl-proxstream2 -pinctrl-spmi-gpio -pinctrl-spmi-mpp -pinctrl-ssbi-gpio -pinctrl-ssbi-mpp -pixcir_i2c_ts -pkcs7_test_key -pktcdvd -pktgen -pl172 -pl2303 -pl330 -plat-ram -plat_nand -platform_lcd -plip -plusb -pluto2 -plx_pci -pm-notifier-error-inject -pm2fb -pm3fb -pm80xx -pm8921-core -pm8941-pwrkey -pm8941-wled -pm8xxx-vibrator -pmbus -pmbus_core -pmc551 -pmcraid -pmic8xxx-keypad -pmic8xxx-pwrkey -pn533 -pn544 -pn544_i2c -pn_pep -poly1305_generic -port100 -powermate -powr1220 -ppa -ppdev -ppp_async -ppp_deflate -ppp_mppe -ppp_synctty -pppoatm -pppoe -pppox -pps-gpio -pps-ldisc -pps_parport -pptp -prism2_usb -ps2mult -psmouse -psnap -pt -pulsedlight-lidar-lite-v2 -pvrusb2 -pwc -pwm-atmel-hlcdc -pwm-beeper -pwm-berlin -pwm-fan -pwm-fsl-ftm -pwm-imx -pwm-lp3943 -pwm-mtk-disp -pwm-omap-dmtimer -pwm-pca9685 -pwm-rcar -pwm-regulator -pwm-renesas-tpu -pwm-rockchip -pwm-samsung -pwm-tegra -pwm-tiecap -pwm-tiehrpwm -pwm-twl -pwm-twl-led -pwm_bl -pxa168_eth -pxa27x_udc -pxa3xx_nand -qcaspi -qcaux -qcom-coincell -qcom-spmi-iadc -qcom-spmi-pmic -qcom-spmi-temp-alarm -qcom-spmi-vadc -qcom-wdt -qcom_bam_dma -qcom_gsbi -qcom_hwspinlock -qcom_rpm -qcom_rpm-regulator -qcom_smbb -qcom_smd-regulator -qcom_spmi-regulator -qcrypto -qcserial -qed -qede -qinfo_probe -qla1280 -qla2xxx -qla3xxx -qla4xxx -qlcnic -qlge -qm1d1c0042 -qmi_wwan -qnx4 -qnx6 -qoriq-cpufreq -qsemi -qt1010 -qt1070 -qt2160 -quatech2 -quota_tree -quota_v1 -quota_v2 -qxl -r128 -r592 -r6040 -r8152 -r8169 -r8188eu -r8192e_pci -r8192u_usb -r820t -r852 -r8712u -r8723au -r8a66597-hcd -r8a66597-udc -radeon -radeonfb -radio-bcm2048 -radio-i2c-si470x -radio-keene -radio-ma901 -radio-maxiradio -radio-mr800 -radio-platform-si4713 -radio-raremono -radio-shark -radio-si476x -radio-tea5764 -radio-usb-si470x -radio-usb-si4713 -radio-wl1273 -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid6test -raid_class -ravb -raw -rbd -rbtree_test -rc-adstech-dvb-t-pci -rc-alink-dtu-m -rc-anysee -rc-apac-viewcomp -rc-asus-pc39 -rc-asus-ps3-100 -rc-ati-tv-wonder-hd-600 -rc-ati-x10 -rc-avermedia -rc-avermedia-a16d -rc-avermedia-cardbus -rc-avermedia-dvbt -rc-avermedia-m135a -rc-avermedia-m733a-rm-k6 -rc-avermedia-rm-ks -rc-avertv-303 -rc-azurewave-ad-tu700 -rc-behold -rc-behold-columbus -rc-budget-ci-old -rc-cinergy -rc-cinergy-1400 -rc-core -rc-delock-61959 -rc-dib0700-nec -rc-dib0700-rc5 -rc-digitalnow-tinytwin -rc-digittrade -rc-dm1105-nec -rc-dntv-live-dvb-t -rc-dntv-live-dvbt-pro -rc-dvbsky -rc-em-terratec -rc-encore-enltv -rc-encore-enltv-fm53 -rc-encore-enltv2 -rc-evga-indtube -rc-eztv -rc-flydvb -rc-flyvideo -rc-fusionhdtv-mce -rc-gadmei-rm008z -rc-genius-tvgo-a11mce -rc-gotview7135 -rc-hauppauge -rc-imon-mce -rc-imon-pad -rc-iodata-bctv7e -rc-it913x-v1 -rc-it913x-v2 -rc-kaiomy -rc-kworld-315u -rc-kworld-pc150u -rc-kworld-plus-tv-analog -rc-leadtek-y04g0051 -rc-lirc -rc-lme2510 -rc-loopback -rc-manli -rc-medion-x10 -rc-medion-x10-digitainer -rc-medion-x10-or2x -rc-msi-digivox-ii -rc-msi-digivox-iii -rc-msi-tvanywhere -rc-msi-tvanywhere-plus -rc-nebula -rc-nec-terratec-cinergy-xs -rc-norwood -rc-npgtech -rc-pctv-sedna -rc-pinnacle-color -rc-pinnacle-grey -rc-pinnacle-pctv-hd -rc-pixelview -rc-pixelview-002t -rc-pixelview-mk12 -rc-pixelview-new -rc-powercolor-real-angel -rc-proteus-2309 -rc-purpletv -rc-pv951 -rc-rc6-mce -rc-real-audio-220-32-keys -rc-reddo -rc-snapstream-firefly -rc-streamzap -rc-su3000 -rc-tbs-nec -rc-technisat-ts35 -rc-technisat-usb2 -rc-terratec-cinergy-c-pci -rc-terratec-cinergy-s2-hd -rc-terratec-cinergy-xs -rc-terratec-slim -rc-terratec-slim-2 -rc-tevii-nec -rc-tivo -rc-total-media-in-hand -rc-total-media-in-hand-02 -rc-trekstor -rc-tt-1500 -rc-twinhan-dtv-cab-ci -rc-twinhan1027 -rc-videomate-m1f -rc-videomate-s350 -rc-videomate-tv-pvr -rc-winfast -rc-winfast-usbii-deluxe -rc5t583-regulator -rcar-dmac -rcar-du-drm -rcar-hpbdma -rcar_can -rcar_jpu -rcar_thermal -rcar_vin -rdc321x-southbridge -rdma_cm -rdma_ucm -rds -rds_rdma -rds_tcp -realtek -redboot -redrat3 -regmap-spmi -regulator-haptic -reiserfs -remoteproc -renesas_usbhs -retu-mfd -retu-pwrbutton -retu_wdt -rfc1051 -rfc1201 -rfcomm -rfd_ftl -rfkill-gpio -rfkill-regulator -rio500 -rivafb -rj54n1cb0c -rk808 -rk808-regulator -rmd128 -rmd160 -rmd256 -rmd320 -rmobile-reset -rn5t618 -rn5t618-regulator -rn5t618_wdt -rndis_host -rndis_wlan -rockchip-io-domain -rockchip_drm_vop -rockchip_saradc -rockchip_thermal -rockchipdrm -rocket -rohm_bu21023 -romfs -rose -rotary_encoder -rp2 -rpcrdma -rpcsec_gss_krb5 -rpr0521 -rrpc -rsi_91x -rsi_sdio -rsi_usb -rsxx -rt2400pci -rt2500pci -rt2500usb -rt2800lib -rt2800mmio -rt2800pci -rt2800usb -rt2x00lib -rt2x00mmio -rt2x00pci -rt2x00usb -rt5033 -rt5033-regulator -rt5033_battery -rt61pci -rt73usb -rt9455_charger -rtc-88pm80x -rtc-88pm860x -rtc-ab-b5ze-s3 -rtc-ab3100 -rtc-abx80x -rtc-armada38x -rtc-as3722 -rtc-bq32k -rtc-bq4802 -rtc-cmos -rtc-da9052 -rtc-da9055 -rtc-da9063 -rtc-ds1286 -rtc-ds1305 -rtc-ds1307 -rtc-ds1343 -rtc-ds1347 -rtc-ds1374 -rtc-ds1390 -rtc-ds1511 -rtc-ds1553 -rtc-ds1672 -rtc-ds1685 -rtc-ds1742 -rtc-ds2404 -rtc-ds3232 -rtc-ds3234 -rtc-em3027 -rtc-fm3130 -rtc-hid-sensor-time -rtc-hym8563 -rtc-imxdi -rtc-isl12022 -rtc-isl12057 -rtc-isl1208 -rtc-lp8788 -rtc-m41t80 -rtc-m41t93 -rtc-m41t94 -rtc-m48t35 -rtc-m48t59 -rtc-m48t86 -rtc-max6900 -rtc-max6902 -rtc-max77686 -rtc-max77802 -rtc-max8907 -rtc-max8925 -rtc-max8997 -rtc-max8998 -rtc-mc13xxx -rtc-mcp795 -rtc-msm6242 -rtc-mt6397 -rtc-mxc -rtc-palmas -rtc-pcap -rtc-pcf2123 -rtc-pcf2127 -rtc-pcf50633 -rtc-pcf85063 -rtc-pcf8563 -rtc-pcf8583 -rtc-pl030 -rtc-pm8xxx -rtc-r9701 -rtc-rc5t583 -rtc-rk808 -rtc-rp5c01 -rtc-rs5c348 -rtc-rs5c372 -rtc-rv3029c2 -rtc-rv8803 -rtc-rx4581 -rtc-rx8025 -rtc-rx8581 -rtc-s35390a -rtc-s5m -rtc-snvs -rtc-stk17ta8 -rtc-tegra -rtc-tps6586x -rtc-tps65910 -rtc-tps80031 -rtc-v3020 -rtc-wm831x -rtc-wm8350 -rtc-x1205 -rtc-zynqmp -rtd520 -rti800 -rti802 -rtl2830 -rtl2832 -rtl2832_sdr -rtl8150 -rtl8187 -rtl8188ee -rtl818x_pci -rtl8192c-common -rtl8192ce -rtl8192cu -rtl8192de -rtl8192ee -rtl8192se -rtl8723-common -rtl8723ae -rtl8723be -rtl8821ae -rtl8xxxu -rtl_pci -rtl_usb -rtllib -rtllib_crypt_ccmp -rtllib_crypt_tkip -rtllib_crypt_wep -rtlwifi -rts5208 -rtsx_pci -rtsx_pci_ms -rtsx_pci_sdmmc -rtsx_usb -rtsx_usb_ms -rtsx_usb_sdmmc -rx51_battery -rxkad -s1d13xxxfb -s2250 -s2255drv -s2io -s2mpa01 -s2mps11 -s3c-fb -s3c2410_wdt -s3fb -s3fwrn5 -s3fwrn5_i2c -s526 -s5h1409 -s5h1411 -s5h1420 -s5m8767 -s5p-g2d -s5p-hdmi -s5p-hdmiphy -s5p-jpeg -s5p-mfc -s5p-mixer -s5p-sdo -s5p-sii9234 -s5p-sss -s626 -s6e63m0 -s921 -saa6588 -saa6752hs -saa7115 -saa7127 -saa7134 -saa7134-alsa -saa7134-dvb -saa7134-empress -saa7134-go7007 -saa7146 -saa7146_vv -saa7164 -saa717x -saa7706h -safe_serial -sahara -salsa20_generic -samsung -samsung-keypad -samsung-sxgbe -sata_highbank -sata_inic162x -sata_mv -sata_nv -sata_promise -sata_qstor -sata_rcar -sata_sil -sata_sil24 -sata_sis -sata_svw -sata_sx4 -sata_uli -sata_via -sata_vsc -savage -savagefb -sbp_target -sbs-battery -sc16is7xx -sc92031 -sca3000 -sch5627 -sch5636 -sch56xx-common -sch_atm -sch_cbq -sch_choke -sch_codel -sch_drr -sch_dsmark -sch_fq -sch_fq_codel -sch_gred -sch_hfsc -sch_hhf -sch_htb -sch_ingress -sch_mqprio -sch_multiq -sch_netem -sch_pie -sch_plug -sch_prio -sch_qfq -sch_red -sch_sfb -sch_sfq -sch_tbf -sch_teql -scpi-cpufreq -scpi-hwmon -scsi_debug -scsi_dh_alua -scsi_dh_emc -scsi_dh_hp_sw -scsi_dh_rdac -scsi_transport_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -scsi_transport_srp -sctp -sctp_probe -sdhci-dove -sdhci-msm -sdhci-of-arasan -sdhci-of-at91 -sdhci-of-esdhc -sdhci-pci -sdhci-pxav3 -sdhci-s3c -sdhci-tegra -sdhci_f_sdh30 -sdio_uart -seed -sensorhub -seqiv -ser_gigaset -serial-tegra -serial2002 -serio_raw -sermouse -serpent_generic -serport -ses -sfc -sh-sci -sh_eth -sh_flctl -sh_irda -sh_keysc -sh_mmcif -sh_mobile_ceu_camera -sh_mobile_csi2 -sh_mobile_hdmi -sh_mobile_lcdcfb -sh_mobile_meram -sh_mobile_sdhi -sh_veu -sh_vou -sha1-arm -sha1-arm-ce -sha1-arm-neon -sha2-arm-ce -sha256-arm -sha512-arm -shark2 -shdma -shmob-drm -sht15 -sht21 -shtc1 -si2157 -si2165 -si2168 -si21xx -si4713 -si476x-core -si7005 -si7020 -sidewinder -sierra -sierra_net -sil164 -sir-dev -sis190 -sis5595 -sis900 -sisfb -sisusbvga -sit -sja1000 -sja1000_isa -sja1000_platform -skfp -skge -sky2 -sky81452 -sky81452-backlight -sky81452-regulator -sl811-hcd -slcan -slip -slram -sm501fb -sm712fb -sm750fb -sm_common -sm_ftl -smb347-charger -smc911x -smc91x -smd -smd-rpm -smem -smipcie -smm665 -smsc -smsc47b397 -smsc47m1 -smsc47m192 -smsc75xx -smsc911x -smsc9420 -smsc95xx -smscufx -smsdvb -smsmdtv -smssdio -smsusb -snd-aaci -snd-ac97-codec -snd-ad1889 -snd-ak4113 -snd-ak4114 -snd-ak4xxx-adda -snd-aloop -snd-atiixp -snd-atiixp-modem -snd-au8810 -snd-au8820 -snd-au8830 -snd-aw2 -snd-bcd2000 -snd-bebob -snd-bt87x -snd-ca0106 -snd-cmipci -snd-cs4281 -snd-cs46xx -snd-ctxfi -snd-darla20 -snd-darla24 -snd-dice -snd-dummy -snd-echo3g -snd-ens1370 -snd-ens1371 -snd-firewire-digi00x -snd-firewire-lib -snd-firewire-tascam -snd-fireworks -snd-fm801 -snd-gina20 -snd-gina24 -snd-hda-codec -snd-hda-codec-analog -snd-hda-codec-ca0110 -snd-hda-codec-ca0132 -snd-hda-codec-cirrus -snd-hda-codec-cmedia -snd-hda-codec-conexant -snd-hda-codec-generic -snd-hda-codec-hdmi -snd-hda-codec-idt -snd-hda-codec-realtek -snd-hda-codec-si3054 -snd-hda-codec-via -snd-hda-core -snd-hda-intel -snd-hda-tegra -snd-hdsp -snd-hdspm -snd-hrtimer -snd-hwdep -snd-i2c -snd-ice1724 -snd-ice17xx-ak4xxx -snd-indigo -snd-indigodj -snd-indigodjx -snd-indigoio -snd-indigoiox -snd-intel8x0 -snd-intel8x0m -snd-isight -snd-korg1212 -snd-layla20 -snd-layla24 -snd-lola -snd-mia -snd-mixart -snd-mixer-oss -snd-mona -snd-mpu401 -snd-mpu401-uart -snd-mtpav -snd-mts64 -snd-nm256 -snd-opl3-lib -snd-opl3-synth -snd-oxfw -snd-oxygen -snd-oxygen-lib -snd-pcm-oss -snd-pcxhr -snd-portman2x4 -snd-pt2258 -snd-rawmidi -snd-riptide -snd-rme32 -snd-rme96 -snd-rme9652 -snd-scs1x -snd-seq -snd-seq-device -snd-seq-dummy -snd-seq-midi -snd-seq-midi-emul -snd-seq-midi-event -snd-seq-virmidi -snd-serial-u16550 -snd-soc-ac97 -snd-soc-adau1701 -snd-soc-ak4104 -snd-soc-ak4554 -snd-soc-ak4613 -snd-soc-ak4642 -snd-soc-ak5386 -snd-soc-alc5623 -snd-soc-alc5632 -snd-soc-apq8016-sbc -snd-soc-armada-370-db -snd-soc-arndale-rt5631 -snd-soc-cs35l32 -snd-soc-cs4265 -snd-soc-cs4270 -snd-soc-cs4271 -snd-soc-cs4271-i2c -snd-soc-cs4271-spi -snd-soc-cs42l51 -snd-soc-cs42l51-i2c -snd-soc-cs42l52 -snd-soc-cs42l56 -snd-soc-cs42l73 -snd-soc-cs42xx8 -snd-soc-cs42xx8-i2c -snd-soc-cs4349 -snd-soc-davinci-mcasp -snd-soc-dmic -snd-soc-edma -snd-soc-es8328 -snd-soc-es8328-i2c -snd-soc-es8328-spi -snd-soc-eukrea-tlv320 -snd-soc-evm -snd-soc-fsi -snd-soc-fsl-asoc-card -snd-soc-fsl-asrc -snd-soc-fsl-esai -snd-soc-fsl-sai -snd-soc-fsl-spdif -snd-soc-fsl-utils -snd-soc-gtm601 -snd-soc-i2s -snd-soc-idma -snd-soc-imx-es8328 -snd-soc-imx-mc13783 -snd-soc-imx-spdif -snd-soc-imx-ssi -snd-soc-imx-wm8962 -snd-soc-kirkwood -snd-soc-lpass-apq8016 -snd-soc-lpass-cpu -snd-soc-lpass-ipq806x -snd-soc-lpass-platform -snd-soc-max98090 -snd-soc-max98095 -snd-soc-max98357a -snd-soc-mc13783 -snd-soc-odroidx2-max98090 -snd-soc-omap-abe-twl6040 -snd-soc-omap-dmic -snd-soc-omap-hdmi-audio -snd-soc-omap-mcpdm -snd-soc-omap3pandora -snd-soc-pcm -snd-soc-pcm1681 -snd-soc-pcm1792a-codec -snd-soc-pcm512x -snd-soc-pcm512x-i2c -snd-soc-pcm512x-spi -snd-soc-rcar -snd-soc-rl6231 -snd-soc-rockchip-i2s -snd-soc-rockchip-max98090 -snd-soc-rockchip-rt5645 -snd-soc-rockchip-spdif -snd-soc-rsrc-card -snd-soc-rt5631 -snd-soc-rt5640 -snd-soc-rt5645 -snd-soc-rt5677 -snd-soc-rt5677-spi -snd-soc-rx51 -snd-soc-s3c-dma -snd-soc-samsung-spdif -snd-soc-si476x -snd-soc-sigmadsp -snd-soc-sigmadsp-i2c -snd-soc-simple-card -snd-soc-smdk-spdif -snd-soc-smdk-wm8994 -snd-soc-smdk-wm8994pcm -snd-soc-snow -snd-soc-spdif-rx -snd-soc-spdif-tx -snd-soc-ssm2602 -snd-soc-ssm2602-i2c -snd-soc-ssm2602-spi -snd-soc-ssm4567 -snd-soc-sta32x -snd-soc-sta350 -snd-soc-sti-sas -snd-soc-storm -snd-soc-tas2552 -snd-soc-tas5086 -snd-soc-tas571x -snd-soc-tegra-alc5632 -snd-soc-tegra-max98090 -snd-soc-tegra-pcm -snd-soc-tegra-rt5640 -snd-soc-tegra-rt5677 -snd-soc-tegra-trimslice -snd-soc-tegra-utils -snd-soc-tegra-wm8753 -snd-soc-tegra-wm8903 -snd-soc-tegra-wm9712 -snd-soc-tegra20-ac97 -snd-soc-tegra20-das -snd-soc-tegra20-i2s -snd-soc-tegra20-spdif -snd-soc-tegra30-ahub -snd-soc-tegra30-i2s -snd-soc-tfa9879 -snd-soc-tlv320aic23 -snd-soc-tlv320aic23-i2c -snd-soc-tlv320aic23-spi -snd-soc-tlv320aic31xx -snd-soc-tlv320aic3x -snd-soc-tpa6130a2 -snd-soc-ts3a227e -snd-soc-twl6040 -snd-soc-wm-hubs -snd-soc-wm8510 -snd-soc-wm8523 -snd-soc-wm8580 -snd-soc-wm8711 -snd-soc-wm8728 -snd-soc-wm8731 -snd-soc-wm8737 -snd-soc-wm8741 -snd-soc-wm8750 -snd-soc-wm8753 -snd-soc-wm8770 -snd-soc-wm8776 -snd-soc-wm8804 -snd-soc-wm8804-i2c -snd-soc-wm8804-spi -snd-soc-wm8903 -snd-soc-wm8962 -snd-soc-wm8978 -snd-soc-wm8994 -snd-soc-wm9712 -snd-soc-xtfpga-i2s -snd-ua101 -snd-usb-6fire -snd-usb-audio -snd-usb-caiaq -snd-usb-hiface -snd-usb-line6 -snd-usb-pod -snd-usb-podhd -snd-usb-toneport -snd-usb-variax -snd-usbmidi-lib -snd-via82xx -snd-via82xx-modem -snd-virmidi -snd-virtuoso -snd-vx-lib -snd-vx222 -snd-ymfpci -snic -snvs_pwrkey -soc_button_array -soc_camera -soc_camera_platform -soc_mediabus -soc_scale_crop -softdog -softing -solo6x10 -solos-pci -sony-btf-mpx -sp2 -sp805_wdt -sp8870 -sp887x -spaceball -spaceorb -sparse-keymap -spcp8x5 -speakup -speakup_acntsa -speakup_apollo -speakup_audptr -speakup_bns -speakup_decext -speakup_dectlk -speakup_dummy -speakup_ltlk -speakup_soft -speakup_spkout -speakup_txprt -speedfax -speedtch -spi-altera -spi-bitbang -spi-butterfly -spi-cadence -spi-dln2 -spi-dw -spi-dw-midpci -spi-dw-mmio -spi-fsl-dspi -spi-gpio -spi-imx -spi-lm70llp -spi-meson-spifc -spi-mt65xx -spi-nor -spi-oc-tiny -spi-orion -spi-pl022 -spi-pxa2xx-pci -spi-pxa2xx-platform -spi-qup -spi-rockchip -spi-rspi -spi-s3c64xx -spi-sc18is602 -spi-sh-hspi -spi-sh-msiof -spi-tegra114 -spi-tegra20-sflash -spi-tegra20-slink -spi-ti-qspi -spi-tle62x0 -spi-xcomm -spi-zynqmp-gqspi -spi_ks8995 -spidev -spmi -spmi-pmic-arb -sr9700 -sr9800 -ssb -ssbi -ssd1307fb -ssfdc -ssi_protocol -ssp_accel_sensor -ssp_gyro_sensor -ssp_iio -sst25l -sstfb -ssu100 -st -st-asc -st-nci -st-nci_i2c -st-nci_spi -st1232 -st21nfca_hci -st21nfca_i2c -st_accel -st_accel_i2c -st_accel_spi -st_drv -st_gyro -st_gyro_i2c -st_gyro_spi -st_magn -st_magn_i2c -st_magn_spi -st_pressure -st_pressure_i2c -st_pressure_spi -st_sensors -st_sensors_i2c -st_sensors_spi -starfire -stb0899 -stb6000 -stb6100 -ste10Xp -ste_modem_rproc -stex -stinger -stir4200 -stk1160 -stk3310 -stk8312 -stk8ba50 -stkwebcam -stm32-usart -stm_console -stm_core -stmmac -stmmac-platform -stmpe-keypad -stmpe-ts -stowaway -stp -streamzap -stv0288 -stv0297 -stv0299 -stv0367 -stv0900 -stv090x -stv6110 -stv6110x -sudmac -sun4i-codec -sundance -sungem -sungem_phy -sunhme -suni -sunkbd -sunrpc -sur40 -svgalib -sx8 -sx8654 -sx9500 -sym53c8xx -symbolserial -synaptics_i2c -synaptics_i2c_rmi4 -synaptics_usb -synclink_gt -synclinkmp -syscopyarea -sysfillrect -sysimgblt -sysv -t1pci -t5403 -target_core_file -target_core_iblock -target_core_mod -target_core_pscsi -target_core_user -tc3589x-keypad -tc74 -tc90522 -tca6416-keypad -tca8418_keypad -tcm_fc -tcm_loop -tcm_qla2xxx -tcm_usb_gadget -tcp_bic -tcp_cdg -tcp_dctcp -tcp_diag -tcp_highspeed -tcp_htcp -tcp_hybla -tcp_illinois -tcp_lp -tcp_probe -tcp_scalable -tcp_vegas -tcp_veno -tcp_westwood -tcp_yeah -tcrypt -tcs3414 -tcs3472 -tda10021 -tda10023 -tda10048 -tda1004x -tda10071 -tda10086 -tda18212 -tda18218 -tda18271 -tda18271c2dd -tda665x -tda7432 -tda8083 -tda8261 -tda826x -tda827x -tda8290 -tda9840 -tda9887 -tda998x -tdfx -tdfxfb -tdo24m -tea -tea575x -tea5761 -tea5767 -tea6415c -tea6420 -team -team_mode_activebackup -team_mode_broadcast -team_mode_loadbalance -team_mode_random -team_mode_roundrobin -tef6862 -tegra-devfreq -tegra-drm -tegra-kbc -tegra124-cpufreq -tegra_wdt -tehuti -tekram-sir -teranetics -test-hexdump -test-kprobes -test-kstrtox -test-string_helpers -test_bpf -test_firmware -test_module -test_power -test_printf -test_static_key_base -test_static_keys -test_udelay -test_user_copy -tg3 -tgr192 -thmc50 -thunderbolt -ti-adc081c -ti-adc128s052 -ti-soc-thermal -ti-vpe -ti_am335x_adc -ti_am335x_tsc -ti_am335x_tscadc -ti_dac7512 -ti_hecc -ti_usb_3410_5052 -tifm_7xx1 -tifm_core -tifm_ms -tifm_sd -tilcdc -timeriomem-rng -tipc -tlan -tm6000 -tm6000-alsa -tm6000-dvb -tmdc -tmio_mmc -tmio_mmc_core -tmio_nand -tmiofb -tmp006 -tmp102 -tmp103 -tmp401 -tmp421 -toim3232-sir -torture -toshsd -touchit213 -touchright -touchwin -tpci200 -tpm-rng -tpm_i2c_atmel -tpm_i2c_infineon -tpm_i2c_nuvoton -tpm_st33zp24 -tpm_st33zp24_i2c -tpm_st33zp24_spi -tps40422 -tps51632-regulator -tps6105x -tps6105x-regulator -tps62360-regulator -tps65010 -tps65023-regulator -tps6507x -tps6507x-regulator -tps6507x-ts -tps65090-charger -tps65090-regulator -tps65217_bl -tps65217_charger -tps65218 -tps65218-pwrbutton -tps65218-regulator -tps6524x-regulator -tps6586x-regulator -tps65910-regulator -tps65912-regulator -tps80031-regulator -trancevibrator -trf7970a -tridentfb -ts2020 -ts_bm -ts_fsm -ts_kmp -tsc2004 -tsc2005 -tsc2007 -tsc200x-core -tsc40 -tsl2550 -tsl2563 -tsl2583 -tsl2x7x_core -tsl4531 -tsys01 -tsys02d -ttm -ttpci-eeprom -ttusb_dec -ttusbdecfe -ttusbir -tua6100 -tua9001 -tulip -tuner -tuner-simple -tuner-types -tuner-xc2028 -tunnel4 -tunnel6 -turbografx -tusb6010 -tvaudio -tveeprom -tvp5150 -tw2804 -tw68 -tw9903 -tw9906 -tw9910 -twidjoy -twl4030-madc -twl4030-madc-hwmon -twl4030-pwrbutton -twl4030-vibra -twl4030_charger -twl4030_keypad -twl4030_madc_battery -twl4030_wdt -twl6030-gpadc -twl6040-vibra -twofish_common -twofish_generic -typhoon -u132-hcd -u_ether -u_serial -uartlite -uas -ubi -ubifs -ucb1400_core -ucb1400_ts -ucd9000 -ucd9200 -uda1342 -udc-xilinx -udf -udl -udlfb -udp_diag -udp_tunnel -ueagle-atm -ufs -ufshcd -ufshcd-pci -ufshcd-pltfrm -uhid -uio -uio_aec -uio_cif -uio_dmem_genirq -uio_mf624 -uio_netx -uio_pci_generic -uio_pdrv_genirq -uio_pruss -uio_sercos3 -uli526x -ulpi -umc -umem -ums-alauda -ums-cypress -ums-datafab -ums-eneub6250 -ums-freecom -ums-isd200 -ums-jumpshot -ums-karma -ums-onetouch -ums-realtek -ums-sddr09 -ums-sddr55 -ums-usbat -unix_diag -upd64031a -upd64083 -us5182d -usb-dmac -usb-serial-simple -usb-storage -usb3503 -usb8xxx -usb_8dev -usb_debug -usb_f_acm -usb_f_ecm -usb_f_ecm_subset -usb_f_eem -usb_f_fs -usb_f_hid -usb_f_mass_storage -usb_f_midi -usb_f_ncm -usb_f_obex -usb_f_phonet -usb_f_printer -usb_f_rndis -usb_f_serial -usb_f_ss_lb -usb_f_uac1 -usb_f_uac2 -usb_f_uvc -usb_gigaset -usb_wwan -usbatm -usbdux -usbduxfast -usbduxsigma -usbhid -usbip-core -usbip-host -usbkbd -usblcd -usbled -usblp -usbmisc_imx -usbmon -usbmouse -usbnet -usbserial -usbsevseg -usbtest -usbtmc -usbtouchscreen -usbtv -usbvision -usdhi6rol0 -userio -userspace-consumer -ushc -uss720 -uvcvideo -uvesafb -uwb -v4l2-common -v4l2-dv-timings -v4l2-flash-led-class -v4l2-mem2mem -vcan -vcnl4000 -ves1820 -ves1x93 -veth -vexpress -vexpress-spc-cpufreq -vf610_adc -vf610_nfc -vfio -vfio-amba -vfio-pci -vfio-platform -vfio-platform-amdxgbe -vfio-platform-base -vfio-platform-calxedaxgmac -vfio_virqfd -vgastate -vgem -vgg2432a4 -vhci-hcd -vhost -vhost_net -vhost_scsi -via -via-rhine -via-sdmmc -via-velocity -via686a -videobuf-core -videobuf-dma-contig -videobuf-dma-sg -videobuf-dvb -videobuf-vmalloc -videobuf2-core -videobuf2-dma-contig -videobuf2-dma-sg -videobuf2-dvb -videobuf2-memops -videobuf2-v4l2 -videobuf2-vmalloc -videodev -vim2m -viperboard -viperboard_adc -virtio-gpu -virtio-rng -virtio_input -virtio_rpmsg_bus -virtio_scsi -virtual -visor -vitesse -vivid -vlsi_ir -vmac -vme_pio2 -vme_tsi148 -vme_user -vme_vmivme7805 -vmk80xx -vmxnet3 -vp27smpx -vport-geneve -vport-gre -vport-vxlan -vrf -vringh -vsock -vsp1 -vsxxxaa -vt1211 -vt6655_stage -vt6656_stage -vt8231 -vt8623fb -vub300 -vx855 -vxge -vxlan -vz89x -w1-gpio -w1_bq27000 -w1_ds2406 -w1_ds2408 -w1_ds2413 -w1_ds2423 -w1_ds2431 -w1_ds2433 -w1_ds2760 -w1_ds2780 -w1_ds2781 -w1_ds28e04 -w1_smem -w1_therm -w5100 -w5300 -w6692 -w83627ehf -w83627hf -w83781d -w83791d -w83792d -w83793 -w83795 -w83l785ts -w83l786ng -wacom -wacom_i2c -wacom_serial4 -wacom_w8001 -walkera0701 -wanxl -warrior -wcn36xx -wd719x -wdt87xx_i2c -wdt_pci -whc-rc -whci -whci-hcd -whiteheat -wil6210 -wimax -winbond-840 -wire -wishbone-serial -wkup_m3_rproc -wl1251 -wl1251_sdio -wl1251_spi -wl1273-core -wl12xx -wl18xx -wlcore -wlcore_sdio -wlcore_spi -wm831x-dcdc -wm831x-hwmon -wm831x-isink -wm831x-ldo -wm831x-on -wm831x-ts -wm831x_backup -wm831x_bl -wm831x_power -wm831x_wdt -wm8350-hwmon -wm8350-regulator -wm8350_power -wm8350_wdt -wm8400-regulator -wm8739 -wm8775 -wm8994-core -wm8994-irq -wm8994-regmap -wm8994-regulator -wm97xx-ts -wp512 -wusb-cbaf -wusb-wa -wusbcore -x25 -x25_asy -x_tables -xc4000 -xc5000 -xcbc -xfrm4_mode_beet -xfrm4_mode_transport -xfrm4_mode_tunnel -xfrm4_tunnel -xfrm6_mode_beet -xfrm6_mode_ro -xfrm6_mode_transport -xfrm6_mode_tunnel -xfrm6_tunnel -xfrm_algo -xfrm_ipcomp -xfrm_user -xfs -xgifb -xgmac -xhci-plat-hcd -xilinx-tpg -xilinx-video -xilinx-vtc -xilinx_uartps -xillybus_core -xillybus_of -xillybus_pcie -xor -xor-neon -xpad -xr_usb_serial_common -xsens_mt -xt_AUDIT -xt_CHECKSUM -xt_CLASSIFY -xt_CONNSECMARK -xt_CT -xt_DSCP -xt_HL -xt_HMARK -xt_IDLETIMER -xt_LED -xt_LOG -xt_NETMAP -xt_NFLOG -xt_NFQUEUE -xt_RATEEST -xt_REDIRECT -xt_SECMARK -xt_TCPMSS -xt_TCPOPTSTRIP -xt_TEE -xt_TPROXY -xt_TRACE -xt_addrtype -xt_bpf -xt_cgroup -xt_cluster -xt_comment -xt_connbytes -xt_connlabel -xt_connlimit -xt_connmark -xt_conntrack -xt_cpu -xt_dccp -xt_devgroup -xt_dscp -xt_ecn -xt_esp -xt_hashlimit -xt_helper -xt_hl -xt_ipcomp -xt_iprange -xt_ipvs -xt_l2tp -xt_length -xt_limit -xt_mac -xt_mark -xt_multiport -xt_nat -xt_nfacct -xt_osf -xt_owner -xt_physdev -xt_pkttype -xt_policy -xt_quota -xt_rateest -xt_realm -xt_recent -xt_sctp -xt_set -xt_socket -xt_state -xt_statistic -xt_string -xt_tcpmss -xt_tcpudp -xt_time -xt_u32 -xtkbd -xts -xusbatm -xz_dec_test -yam -yealink -yellowfin -yurex -zaurus -zd1201 -zd1211rw -zforce_ts -zhenhua -zl10036 -zl10039 -zl10353 -zl6100 -zlib -zr364xx -zram -zynq-fpga reverted: --- linux-raspi2-4.4.0/debian.master/abi/4.4.0-89.112/fwinfo +++ linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-89.112/fwinfo @@ -1,996 +0,0 @@ -firmware: 3826.arm -firmware: 3com/typhoon.bin -firmware: 6fire/dmx6fireap.ihx -firmware: 6fire/dmx6firecf.bin -firmware: 6fire/dmx6firel2.ihx -firmware: BCM2033-FW.bin -firmware: BCM2033-MD.hex -firmware: BT3CPCC.bin -firmware: RTL8192E/boot.img -firmware: RTL8192E/data.img -firmware: RTL8192E/main.img -firmware: RTL8192U/boot.img -firmware: RTL8192U/data.img -firmware: RTL8192U/main.img -firmware: a300_pfp.fw -firmware: a300_pm4.fw -firmware: a330_pfp.fw -firmware: a330_pm4.fw -firmware: a420_pfp.fw -firmware: a420_pm4.fw -firmware: acenic/tg1.bin -firmware: acenic/tg2.bin -firmware: adaptec/starfire_rx.bin -firmware: adaptec/starfire_tx.bin -firmware: advansys/3550.bin -firmware: advansys/38C0800.bin -firmware: advansys/38C1600.bin -firmware: advansys/mcode.bin -firmware: agere_ap_fw.bin -firmware: agere_sta_fw.bin -firmware: aic94xx-seq.fw -firmware: amdgpu/carrizo_ce.bin -firmware: amdgpu/carrizo_me.bin -firmware: amdgpu/carrizo_mec.bin -firmware: amdgpu/carrizo_mec2.bin -firmware: amdgpu/carrizo_pfp.bin -firmware: amdgpu/carrizo_rlc.bin -firmware: amdgpu/carrizo_sdma.bin -firmware: amdgpu/carrizo_sdma1.bin -firmware: amdgpu/carrizo_uvd.bin -firmware: amdgpu/carrizo_vce.bin -firmware: amdgpu/fiji_ce.bin -firmware: amdgpu/fiji_me.bin -firmware: amdgpu/fiji_mec.bin -firmware: amdgpu/fiji_mec2.bin -firmware: amdgpu/fiji_pfp.bin -firmware: amdgpu/fiji_rlc.bin -firmware: amdgpu/fiji_sdma.bin -firmware: amdgpu/fiji_sdma1.bin -firmware: amdgpu/fiji_smc.bin -firmware: amdgpu/fiji_uvd.bin -firmware: amdgpu/fiji_vce.bin -firmware: amdgpu/stoney_ce.bin -firmware: amdgpu/stoney_me.bin -firmware: amdgpu/stoney_mec.bin -firmware: amdgpu/stoney_pfp.bin -firmware: amdgpu/stoney_rlc.bin -firmware: amdgpu/stoney_sdma.bin -firmware: amdgpu/stoney_uvd.bin -firmware: amdgpu/stoney_vce.bin -firmware: amdgpu/tonga_ce.bin -firmware: amdgpu/tonga_mc.bin -firmware: amdgpu/tonga_me.bin -firmware: amdgpu/tonga_mec.bin -firmware: amdgpu/tonga_mec2.bin -firmware: amdgpu/tonga_pfp.bin -firmware: amdgpu/tonga_rlc.bin -firmware: amdgpu/tonga_sdma.bin -firmware: amdgpu/tonga_sdma1.bin -firmware: amdgpu/tonga_smc.bin -firmware: amdgpu/tonga_uvd.bin -firmware: amdgpu/tonga_vce.bin -firmware: amdgpu/topaz_ce.bin -firmware: amdgpu/topaz_mc.bin -firmware: amdgpu/topaz_me.bin -firmware: amdgpu/topaz_mec.bin -firmware: amdgpu/topaz_pfp.bin -firmware: amdgpu/topaz_rlc.bin -firmware: amdgpu/topaz_sdma.bin -firmware: amdgpu/topaz_sdma1.bin -firmware: amdgpu/topaz_smc.bin -firmware: ar5523.bin -firmware: asihpi/dsp5000.bin -firmware: asihpi/dsp6200.bin -firmware: asihpi/dsp6205.bin -firmware: asihpi/dsp6400.bin -firmware: asihpi/dsp6600.bin -firmware: asihpi/dsp8700.bin -firmware: asihpi/dsp8900.bin -firmware: ast_dp501_fw.bin -firmware: ath10k/QCA6174/hw2.1/board-2.bin -firmware: ath10k/QCA6174/hw2.1/board.bin -firmware: ath10k/QCA6174/hw2.1/firmware-4.bin -firmware: ath10k/QCA6174/hw2.1/firmware-5.bin -firmware: ath10k/QCA6174/hw3.0/board-2.bin -firmware: ath10k/QCA6174/hw3.0/board.bin -firmware: ath10k/QCA6174/hw3.0/firmware-4.bin -firmware: ath10k/QCA6174/hw3.0/firmware-5.bin -firmware: ath10k/QCA9377/hw1.0/board.bin -firmware: ath10k/QCA9377/hw1.0/firmware-5.bin -firmware: ath10k/QCA988X/hw2.0/board-2.bin -firmware: ath10k/QCA988X/hw2.0/board.bin -firmware: ath10k/QCA988X/hw2.0/firmware-2.bin -firmware: ath10k/QCA988X/hw2.0/firmware-3.bin -firmware: ath10k/QCA988X/hw2.0/firmware-4.bin -firmware: ath10k/QCA988X/hw2.0/firmware-5.bin -firmware: ath10k/QCA988X/hw2.0/firmware.bin -firmware: ath3k-1.fw -firmware: ath6k/AR6003/hw2.0/athwlan.bin.z77 -firmware: ath6k/AR6003/hw2.0/bdata.SD31.bin -firmware: ath6k/AR6003/hw2.0/bdata.bin -firmware: ath6k/AR6003/hw2.0/data.patch.bin -firmware: ath6k/AR6003/hw2.0/otp.bin.z77 -firmware: ath6k/AR6003/hw2.1.1/athwlan.bin -firmware: ath6k/AR6003/hw2.1.1/bdata.SD31.bin -firmware: ath6k/AR6003/hw2.1.1/bdata.bin -firmware: ath6k/AR6003/hw2.1.1/data.patch.bin -firmware: ath6k/AR6003/hw2.1.1/otp.bin -firmware: ath6k/AR6004/hw1.0/bdata.DB132.bin -firmware: ath6k/AR6004/hw1.0/bdata.bin -firmware: ath6k/AR6004/hw1.0/fw.ram.bin -firmware: ath6k/AR6004/hw1.1/bdata.DB132.bin -firmware: ath6k/AR6004/hw1.1/bdata.bin -firmware: ath6k/AR6004/hw1.1/fw.ram.bin -firmware: ath6k/AR6004/hw1.2/bdata.bin -firmware: ath6k/AR6004/hw1.2/fw.ram.bin -firmware: ath6k/AR6004/hw1.3/bdata.bin -firmware: ath6k/AR6004/hw1.3/fw.ram.bin -firmware: ath9k_htc/htc_7010-1.4.0.fw -firmware: ath9k_htc/htc_9271-1.4.0.fw -firmware: atmel_at76c502-wpa.bin -firmware: atmel_at76c502.bin -firmware: atmel_at76c502_3com-wpa.bin -firmware: atmel_at76c502_3com.bin -firmware: atmel_at76c502d-wpa.bin -firmware: atmel_at76c502d.bin -firmware: atmel_at76c502e-wpa.bin -firmware: atmel_at76c502e.bin -firmware: atmel_at76c503-i3861.bin -firmware: atmel_at76c503-i3863.bin -firmware: atmel_at76c503-rfmd-acc.bin -firmware: atmel_at76c503-rfmd.bin -firmware: atmel_at76c504-wpa.bin -firmware: atmel_at76c504.bin -firmware: atmel_at76c504_2958-wpa.bin -firmware: atmel_at76c504_2958.bin -firmware: atmel_at76c504a_2958-wpa.bin -firmware: atmel_at76c504a_2958.bin -firmware: atmel_at76c505-rfmd.bin -firmware: atmel_at76c505-rfmd2958.bin -firmware: atmel_at76c505a-rfmd2958.bin -firmware: atmel_at76c505amx-rfmd.bin -firmware: atmel_at76c506-wpa.bin -firmware: atmel_at76c506.bin -firmware: atmsar11.fw -firmware: atsc_denver.inp -firmware: av7110/bootcode.bin -firmware: b43/ucode11.fw -firmware: b43/ucode13.fw -firmware: b43/ucode14.fw -firmware: b43/ucode15.fw -firmware: b43/ucode16_mimo.fw -firmware: b43/ucode5.fw -firmware: b43/ucode9.fw -firmware: b43legacy/ucode2.fw -firmware: b43legacy/ucode4.fw -firmware: bfubase.frm -firmware: bnx2/bnx2-mips-06-6.2.3.fw -firmware: bnx2/bnx2-mips-09-6.2.1b.fw -firmware: bnx2/bnx2-rv2p-06-6.0.15.fw -firmware: bnx2/bnx2-rv2p-09-6.0.17.fw -firmware: bnx2/bnx2-rv2p-09ax-6.0.17.fw -firmware: bnx2x/bnx2x-e1-7.12.30.0.fw -firmware: bnx2x/bnx2x-e1h-7.12.30.0.fw -firmware: bnx2x/bnx2x-e2-7.12.30.0.fw -firmware: brcm/bcm43xx-0.fw -firmware: brcm/bcm43xx_hdr-0.fw -firmware: brcm/brcmfmac43143-sdio.bin -firmware: brcm/brcmfmac43143-sdio.txt -firmware: brcm/brcmfmac43143.bin -firmware: brcm/brcmfmac43236b.bin -firmware: brcm/brcmfmac43241b0-sdio.bin -firmware: brcm/brcmfmac43241b0-sdio.txt -firmware: brcm/brcmfmac43241b4-sdio.bin -firmware: brcm/brcmfmac43241b4-sdio.txt -firmware: brcm/brcmfmac43241b5-sdio.bin -firmware: brcm/brcmfmac43241b5-sdio.txt -firmware: brcm/brcmfmac43242a.bin -firmware: brcm/brcmfmac4329-sdio.bin -firmware: brcm/brcmfmac4329-sdio.txt -firmware: brcm/brcmfmac4330-sdio.bin -firmware: brcm/brcmfmac4330-sdio.txt -firmware: brcm/brcmfmac4334-sdio.bin -firmware: brcm/brcmfmac4334-sdio.txt -firmware: brcm/brcmfmac43340-sdio.bin -firmware: brcm/brcmfmac43340-sdio.txt -firmware: brcm/brcmfmac4335-sdio.bin -firmware: brcm/brcmfmac4335-sdio.txt -firmware: brcm/brcmfmac43362-sdio.bin -firmware: brcm/brcmfmac43362-sdio.txt -firmware: brcm/brcmfmac4339-sdio.bin -firmware: brcm/brcmfmac4339-sdio.txt -firmware: brcm/brcmfmac43430-sdio.bin -firmware: brcm/brcmfmac43430-sdio.txt -firmware: brcm/brcmfmac43455-sdio.bin -firmware: brcm/brcmfmac43455-sdio.txt -firmware: brcm/brcmfmac4350-pcie.bin -firmware: brcm/brcmfmac4350-pcie.txt -firmware: brcm/brcmfmac4354-sdio.bin -firmware: brcm/brcmfmac4354-sdio.txt -firmware: brcm/brcmfmac4356-pcie.bin -firmware: brcm/brcmfmac4356-pcie.txt -firmware: brcm/brcmfmac43569.bin -firmware: brcm/brcmfmac43570-pcie.bin -firmware: brcm/brcmfmac43570-pcie.txt -firmware: brcm/brcmfmac4358-pcie.bin -firmware: brcm/brcmfmac4358-pcie.txt -firmware: brcm/brcmfmac43602-pcie.bin -firmware: brcm/brcmfmac43602-pcie.txt -firmware: brcm/brcmfmac4365b-pcie.bin -firmware: brcm/brcmfmac4365b-pcie.txt -firmware: brcm/brcmfmac4366b-pcie.bin -firmware: brcm/brcmfmac4366b-pcie.txt -firmware: brcm/brcmfmac4371-pcie.bin -firmware: brcm/brcmfmac4371-pcie.txt -firmware: c218tunx.cod -firmware: c320tunx.cod -firmware: carl9170-1.fw -firmware: cbfw-3.2.3.0.bin -firmware: cis/3CCFEM556.cis -firmware: cis/3CXEM556.cis -firmware: cis/COMpad2.cis -firmware: cis/COMpad4.cis -firmware: cis/DP83903.cis -firmware: cis/LA-PCM.cis -firmware: cis/MT5634ZLX.cis -firmware: cis/NE2K.cis -firmware: cis/PCMLM28.cis -firmware: cis/PE-200.cis -firmware: cis/PE520.cis -firmware: cis/RS-COM-2P.cis -firmware: cis/SW_555_SER.cis -firmware: cis/SW_7xx_SER.cis -firmware: cis/SW_8xx_SER.cis -firmware: cis/tamarack.cis -firmware: cmmb_ming_app.inp -firmware: cmmb_vega_12mhz.inp -firmware: cmmb_venice_12mhz.inp -firmware: comedi/jr3pci.idm -firmware: cp204unx.cod -firmware: cpia2/stv0672_vp4.bin -firmware: cs46xx/cwc4630 -firmware: cs46xx/cwcasync -firmware: cs46xx/cwcbinhack -firmware: cs46xx/cwcdma -firmware: cs46xx/cwcsnoop -firmware: ct2fw-3.2.3.0.bin -firmware: ct2fw-3.2.5.1.bin -firmware: ctefx.bin -firmware: ctfw-3.2.3.0.bin -firmware: ctfw-3.2.5.1.bin -firmware: cxgb3/ael2005_opt_edc.bin -firmware: cxgb3/ael2005_twx_edc.bin -firmware: cxgb3/ael2020_twx_edc.bin -firmware: cxgb3/t3b_psram-1.1.0.bin -firmware: cxgb3/t3c_psram-1.1.0.bin -firmware: cxgb3/t3fw-7.12.0.bin -firmware: cxgb4/t4fw.bin -firmware: cxgb4/t5fw.bin -firmware: cxgb4/t6fw.bin -firmware: cyzfirm.bin -firmware: daqboard2000_firmware.bin -firmware: digiface_firmware.bin -firmware: digiface_firmware_rev11.bin -firmware: dvb-cx18-mpc718-mt352.fw -firmware: dvb-demod-m88ds3103.fw -firmware: dvb-demod-m88rs6000.fw -firmware: dvb-demod-mn88472-02.fw -firmware: dvb-demod-mn88473-01.fw -firmware: dvb-demod-si2165.fw -firmware: dvb-demod-si2168-a20-01.fw -firmware: dvb-demod-si2168-a30-01.fw -firmware: dvb-demod-si2168-b40-01.fw -firmware: dvb-fe-af9013.fw -firmware: dvb-fe-cx24117.fw -firmware: dvb-fe-drxj-mc-1.0.8.fw -firmware: dvb-fe-ds3000.fw -firmware: dvb-fe-tda10071.fw -firmware: dvb-fe-xc4000-1.4.1.fw -firmware: dvb-fe-xc4000-1.4.fw -firmware: dvb-fe-xc5000-1.6.114.fw -firmware: dvb-fe-xc5000c-4.1.30.7.fw -firmware: dvb-tuner-si2158-a20-01.fw -firmware: dvb-usb-af9015.fw -firmware: dvb-usb-af9035-02.fw -firmware: dvb-usb-dib0700-1.20.fw -firmware: dvb-usb-dw2101.fw -firmware: dvb-usb-dw2102.fw -firmware: dvb-usb-dw2104.fw -firmware: dvb-usb-dw3101.fw -firmware: dvb-usb-ec168.fw -firmware: dvb-usb-it9135-01.fw -firmware: dvb-usb-it9135-02.fw -firmware: dvb-usb-it9303-01.fw -firmware: dvb-usb-lme2510-lg.fw -firmware: dvb-usb-lme2510-s0194.fw -firmware: dvb-usb-lme2510c-lg.fw -firmware: dvb-usb-lme2510c-rs2000.fw -firmware: dvb-usb-lme2510c-s0194.fw -firmware: dvb-usb-lme2510c-s7395.fw -firmware: dvb-usb-p1100.fw -firmware: dvb-usb-p7500.fw -firmware: dvb-usb-s630.fw -firmware: dvb-usb-s660.fw -firmware: dvb-usb-terratec-h7-az6007.fw -firmware: dvb_nova_12mhz.inp -firmware: dvb_nova_12mhz_b0.inp -firmware: dvb_rio.inp -firmware: dvbh_rio.inp -firmware: e100/d101m_ucode.bin -firmware: e100/d101s_ucode.bin -firmware: e100/d102e_ucode.bin -firmware: ea/3g_asic.fw -firmware: ea/darla20_dsp.fw -firmware: ea/darla24_dsp.fw -firmware: ea/echo3g_dsp.fw -firmware: ea/gina20_dsp.fw -firmware: ea/gina24_301_asic.fw -firmware: ea/gina24_301_dsp.fw -firmware: ea/gina24_361_asic.fw -firmware: ea/gina24_361_dsp.fw -firmware: ea/indigo_dj_dsp.fw -firmware: ea/indigo_djx_dsp.fw -firmware: ea/indigo_dsp.fw -firmware: ea/indigo_io_dsp.fw -firmware: ea/indigo_iox_dsp.fw -firmware: ea/layla20_asic.fw -firmware: ea/layla20_dsp.fw -firmware: ea/layla24_1_asic.fw -firmware: ea/layla24_2A_asic.fw -firmware: ea/layla24_2S_asic.fw -firmware: ea/layla24_dsp.fw -firmware: ea/loader_dsp.fw -firmware: ea/mia_dsp.fw -firmware: ea/mona_2_asic.fw -firmware: ea/mona_301_1_asic_48.fw -firmware: ea/mona_301_1_asic_96.fw -firmware: ea/mona_301_dsp.fw -firmware: ea/mona_361_1_asic_48.fw -firmware: ea/mona_361_1_asic_96.fw -firmware: ea/mona_361_dsp.fw -firmware: edgeport/boot.fw -firmware: edgeport/boot2.fw -firmware: edgeport/down.fw -firmware: edgeport/down2.fw -firmware: edgeport/down3.bin -firmware: emi26/bitstream.fw -firmware: emi26/firmware.fw -firmware: emi26/loader.fw -firmware: emi62/bitstream.fw -firmware: emi62/loader.fw -firmware: emi62/spdif.fw -firmware: emu/audio_dock.fw -firmware: emu/emu0404.fw -firmware: emu/emu1010_notebook.fw -firmware: emu/emu1010b.fw -firmware: emu/hana.fw -firmware: emu/micro_dock.fw -firmware: ene-ub6250/ms_init.bin -firmware: ene-ub6250/ms_rdwr.bin -firmware: ene-ub6250/msp_rdwr.bin -firmware: ene-ub6250/sd_init1.bin -firmware: ene-ub6250/sd_init2.bin -firmware: ene-ub6250/sd_rdwr.bin -firmware: ess/maestro3_assp_kernel.fw -firmware: ess/maestro3_assp_minisrc.fw -firmware: f2255usb.bin -firmware: fm_radio.inp -firmware: fm_radio_rio.inp -firmware: fw.ram.bin -firmware: go7007/go7007fw.bin -firmware: go7007/go7007tv.bin -firmware: go7007/lr192.fw -firmware: go7007/px-m402u.fw -firmware: go7007/px-tv402u.fw -firmware: go7007/s2250-1.fw -firmware: go7007/s2250-2.fw -firmware: go7007/wis-startrek.fw -firmware: i1480-phy-0.0.bin -firmware: i1480-pre-phy-0.0.bin -firmware: i1480-usb-0.0.bin -firmware: i2400m-fw-usb-1.5.sbcf -firmware: i6050-fw-usb-1.5.sbcf -firmware: i915/bxt_dmc_ver1.bin -firmware: i915/skl_dmc_ver1.bin -firmware: i915/skl_guc_ver4.bin -firmware: i915/skl_guc_ver6.bin -firmware: icom_asc.bin -firmware: icom_call_setup.bin -firmware: icom_res_dce.bin -firmware: intel/ibt-11-5.ddc -firmware: intel/ibt-11-5.sfi -firmware: ipw2100-1.3-i.fw -firmware: ipw2100-1.3-p.fw -firmware: ipw2100-1.3.fw -firmware: ipw2200-bss.fw -firmware: ipw2200-ibss.fw -firmware: ipw2200-sniffer.fw -firmware: isci/isci_firmware.bin -firmware: isdbt_nova_12mhz.inp -firmware: isdbt_nova_12mhz_b0.inp -firmware: isdbt_pele.inp -firmware: isdbt_rio.inp -firmware: isdn/ISAR.BIN -firmware: isi4608.bin -firmware: isi4616.bin -firmware: isi608.bin -firmware: isi608em.bin -firmware: isi616em.bin -firmware: isight.fw -firmware: isl3886pci -firmware: isl3886usb -firmware: isl3887usb -firmware: iwlwifi-100-5.ucode -firmware: iwlwifi-1000-5.ucode -firmware: iwlwifi-105-6.ucode -firmware: iwlwifi-135-6.ucode -firmware: iwlwifi-2000-6.ucode -firmware: iwlwifi-2030-6.ucode -firmware: iwlwifi-3160-13.ucode -firmware: iwlwifi-3945-2.ucode -firmware: iwlwifi-4965-2.ucode -firmware: iwlwifi-5000-5.ucode -firmware: iwlwifi-5150-2.ucode -firmware: iwlwifi-6000-4.ucode -firmware: iwlwifi-6000g2a-5.ucode -firmware: iwlwifi-6000g2b-6.ucode -firmware: iwlwifi-6050-5.ucode -firmware: iwlwifi-7260-13.ucode -firmware: iwlwifi-7265-13.ucode -firmware: iwlwifi-7265D-13.ucode -firmware: iwlwifi-8000-13.ucode -firmware: kaweth/new_code.bin -firmware: kaweth/new_code_fix.bin -firmware: kaweth/trigger_code.bin -firmware: kaweth/trigger_code_fix.bin -firmware: keyspan/mpr.fw -firmware: keyspan/usa18x.fw -firmware: keyspan/usa19.fw -firmware: keyspan/usa19qi.fw -firmware: keyspan/usa19qw.fw -firmware: keyspan/usa19w.fw -firmware: keyspan/usa28.fw -firmware: keyspan/usa28x.fw -firmware: keyspan/usa28xa.fw -firmware: keyspan/usa28xb.fw -firmware: keyspan/usa49w.fw -firmware: keyspan/usa49wlc.fw -firmware: keyspan_pda/keyspan_pda.fw -firmware: keyspan_pda/xircom_pgs.fw -firmware: korg/k1212.dsp -firmware: lattice-ecp3.bit -firmware: lbtf_usb.bin -firmware: lgs8g75.fw -firmware: libertas/cf8305.bin -firmware: libertas/cf8381.bin -firmware: libertas/cf8381_helper.bin -firmware: libertas/cf8385.bin -firmware: libertas/cf8385_helper.bin -firmware: libertas/gspi8385.bin -firmware: libertas/gspi8385_helper.bin -firmware: libertas/gspi8385_hlp.bin -firmware: libertas/gspi8686.bin -firmware: libertas/gspi8686_hlp.bin -firmware: libertas/gspi8686_v9.bin -firmware: libertas/gspi8686_v9_helper.bin -firmware: libertas/gspi8688.bin -firmware: libertas/gspi8688_helper.bin -firmware: libertas/sd8385.bin -firmware: libertas/sd8385_helper.bin -firmware: libertas/sd8686_v8.bin -firmware: libertas/sd8686_v8_helper.bin -firmware: libertas/sd8686_v9.bin -firmware: libertas/sd8686_v9_helper.bin -firmware: libertas/sd8688.bin -firmware: libertas/sd8688_helper.bin -firmware: libertas/usb8388.bin -firmware: libertas/usb8388_v5.bin -firmware: libertas/usb8388_v9.bin -firmware: libertas/usb8682.bin -firmware: libertas_cs.fw -firmware: libertas_cs_helper.fw -firmware: liquidio/lio_210nv.bin -firmware: liquidio/lio_210sv.bin -firmware: liquidio/lio_410nv.bin -firmware: matrox/g200_warp.fw -firmware: matrox/g400_warp.fw -firmware: me2600_firmware.bin -firmware: me4000_firmware.bin -firmware: mixart/miXart8.elf -firmware: mixart/miXart8.xlx -firmware: mixart/miXart8AES.xlx -firmware: mrvl/pcie8766_uapsta.bin -firmware: mrvl/pcie8897_uapsta.bin -firmware: mrvl/pcie8997_uapsta.bin -firmware: mrvl/sd8688.bin -firmware: mrvl/sd8688_helper.bin -firmware: mrvl/sd8786_uapsta.bin -firmware: mrvl/sd8787_uapsta.bin -firmware: mrvl/sd8797_uapsta.bin -firmware: mrvl/sd8887_uapsta.bin -firmware: mrvl/sd8897_uapsta.bin -firmware: mrvl/sd8997_uapsta.bin -firmware: mrvl/usb8766_uapsta.bin -firmware: mrvl/usb8797_uapsta.bin -firmware: mrvl/usb8801_uapsta.bin -firmware: mrvl/usb8997_uapsta.bin -firmware: mt7601u.bin -firmware: mts_cdma.fw -firmware: mts_edge.fw -firmware: mts_gsm.fw -firmware: mts_mt9234mu.fw -firmware: mts_mt9234zba.fw -firmware: multiface_firmware.bin -firmware: multiface_firmware_rev11.bin -firmware: mwl8k/fmimage_8363.fw -firmware: mwl8k/fmimage_8366.fw -firmware: mwl8k/fmimage_8366_ap-3.fw -firmware: mwl8k/fmimage_8687.fw -firmware: mwl8k/helper_8363.fw -firmware: mwl8k/helper_8366.fw -firmware: mwl8k/helper_8687.fw -firmware: myri10ge_eth_z8e.dat -firmware: myri10ge_ethp_z8e.dat -firmware: myri10ge_rss_eth_z8e.dat -firmware: myri10ge_rss_ethp_z8e.dat -firmware: ni6534a.bin -firmware: niscrb01.bin -firmware: niscrb02.bin -firmware: orinoco_ezusb_fw -firmware: ositech/Xilinx7OD.bin -firmware: pca200e.bin -firmware: pca200e_ecd.bin2 -firmware: pcxhr/dspb1222e.b56 -firmware: pcxhr/dspb1222hr.b56 -firmware: pcxhr/dspb882e.b56 -firmware: pcxhr/dspb882hr.b56 -firmware: pcxhr/dspb924.b56 -firmware: pcxhr/dspd1222.d56 -firmware: pcxhr/dspd222.d56 -firmware: pcxhr/dspd882.d56 -firmware: pcxhr/dspe882.e56 -firmware: pcxhr/dspe924.e56 -firmware: pcxhr/xlxc1222e.dat -firmware: pcxhr/xlxc1222hr.dat -firmware: pcxhr/xlxc222.dat -firmware: pcxhr/xlxc882e.dat -firmware: pcxhr/xlxc882hr.dat -firmware: pcxhr/xlxc924.dat -firmware: pcxhr/xlxint.dat -firmware: phanfw.bin -firmware: prism2_ru.fw -firmware: prism_ap_fw.bin -firmware: prism_sta_fw.bin -firmware: qat_895xcc.bin -firmware: qed/qed_init_values_zipped-8.4.2.0.bin -firmware: ql2100_fw.bin -firmware: ql2200_fw.bin -firmware: ql2300_fw.bin -firmware: ql2322_fw.bin -firmware: ql2400_fw.bin -firmware: ql2500_fw.bin -firmware: qlogic/1040.bin -firmware: qlogic/12160.bin -firmware: qlogic/1280.bin -firmware: qlogic/sd7220.fw -firmware: r128/r128_cce.bin -firmware: r8a779x_usb3_v1.dlmem -firmware: radeon/ARUBA_me.bin -firmware: radeon/ARUBA_pfp.bin -firmware: radeon/ARUBA_rlc.bin -firmware: radeon/BARTS_mc.bin -firmware: radeon/BARTS_me.bin -firmware: radeon/BARTS_pfp.bin -firmware: radeon/BARTS_smc.bin -firmware: radeon/BONAIRE_ce.bin -firmware: radeon/BONAIRE_mc.bin -firmware: radeon/BONAIRE_mc2.bin -firmware: radeon/BONAIRE_me.bin -firmware: radeon/BONAIRE_mec.bin -firmware: radeon/BONAIRE_pfp.bin -firmware: radeon/BONAIRE_rlc.bin -firmware: radeon/BONAIRE_sdma.bin -firmware: radeon/BONAIRE_smc.bin -firmware: radeon/BONAIRE_uvd.bin -firmware: radeon/BONAIRE_vce.bin -firmware: radeon/BTC_rlc.bin -firmware: radeon/CAICOS_mc.bin -firmware: radeon/CAICOS_me.bin -firmware: radeon/CAICOS_pfp.bin -firmware: radeon/CAICOS_smc.bin -firmware: radeon/CAYMAN_mc.bin -firmware: radeon/CAYMAN_me.bin -firmware: radeon/CAYMAN_pfp.bin -firmware: radeon/CAYMAN_rlc.bin -firmware: radeon/CAYMAN_smc.bin -firmware: radeon/CEDAR_me.bin -firmware: radeon/CEDAR_pfp.bin -firmware: radeon/CEDAR_rlc.bin -firmware: radeon/CEDAR_smc.bin -firmware: radeon/CYPRESS_me.bin -firmware: radeon/CYPRESS_pfp.bin -firmware: radeon/CYPRESS_rlc.bin -firmware: radeon/CYPRESS_smc.bin -firmware: radeon/CYPRESS_uvd.bin -firmware: radeon/HAINAN_ce.bin -firmware: radeon/HAINAN_mc.bin -firmware: radeon/HAINAN_mc2.bin -firmware: radeon/HAINAN_me.bin -firmware: radeon/HAINAN_pfp.bin -firmware: radeon/HAINAN_rlc.bin -firmware: radeon/HAINAN_smc.bin -firmware: radeon/HAWAII_ce.bin -firmware: radeon/HAWAII_mc.bin -firmware: radeon/HAWAII_mc2.bin -firmware: radeon/HAWAII_me.bin -firmware: radeon/HAWAII_mec.bin -firmware: radeon/HAWAII_pfp.bin -firmware: radeon/HAWAII_rlc.bin -firmware: radeon/HAWAII_sdma.bin -firmware: radeon/HAWAII_smc.bin -firmware: radeon/JUNIPER_me.bin -firmware: radeon/JUNIPER_pfp.bin -firmware: radeon/JUNIPER_rlc.bin -firmware: radeon/JUNIPER_smc.bin -firmware: radeon/KABINI_ce.bin -firmware: radeon/KABINI_me.bin -firmware: radeon/KABINI_mec.bin -firmware: radeon/KABINI_pfp.bin -firmware: radeon/KABINI_rlc.bin -firmware: radeon/KABINI_sdma.bin -firmware: radeon/KAVERI_ce.bin -firmware: radeon/KAVERI_me.bin -firmware: radeon/KAVERI_mec.bin -firmware: radeon/KAVERI_pfp.bin -firmware: radeon/KAVERI_rlc.bin -firmware: radeon/KAVERI_sdma.bin -firmware: radeon/MULLINS_ce.bin -firmware: radeon/MULLINS_me.bin -firmware: radeon/MULLINS_mec.bin -firmware: radeon/MULLINS_pfp.bin -firmware: radeon/MULLINS_rlc.bin -firmware: radeon/MULLINS_sdma.bin -firmware: radeon/OLAND_ce.bin -firmware: radeon/OLAND_mc.bin -firmware: radeon/OLAND_mc2.bin -firmware: radeon/OLAND_me.bin -firmware: radeon/OLAND_pfp.bin -firmware: radeon/OLAND_rlc.bin -firmware: radeon/OLAND_smc.bin -firmware: radeon/PALM_me.bin -firmware: radeon/PALM_pfp.bin -firmware: radeon/PITCAIRN_ce.bin -firmware: radeon/PITCAIRN_mc.bin -firmware: radeon/PITCAIRN_mc2.bin -firmware: radeon/PITCAIRN_me.bin -firmware: radeon/PITCAIRN_pfp.bin -firmware: radeon/PITCAIRN_rlc.bin -firmware: radeon/PITCAIRN_smc.bin -firmware: radeon/R100_cp.bin -firmware: radeon/R200_cp.bin -firmware: radeon/R300_cp.bin -firmware: radeon/R420_cp.bin -firmware: radeon/R520_cp.bin -firmware: radeon/R600_me.bin -firmware: radeon/R600_pfp.bin -firmware: radeon/R600_rlc.bin -firmware: radeon/R600_uvd.bin -firmware: radeon/R700_rlc.bin -firmware: radeon/REDWOOD_me.bin -firmware: radeon/REDWOOD_pfp.bin -firmware: radeon/REDWOOD_rlc.bin -firmware: radeon/REDWOOD_smc.bin -firmware: radeon/RS600_cp.bin -firmware: radeon/RS690_cp.bin -firmware: radeon/RS780_me.bin -firmware: radeon/RS780_pfp.bin -firmware: radeon/RS780_uvd.bin -firmware: radeon/RV610_me.bin -firmware: radeon/RV610_pfp.bin -firmware: radeon/RV620_me.bin -firmware: radeon/RV620_pfp.bin -firmware: radeon/RV630_me.bin -firmware: radeon/RV630_pfp.bin -firmware: radeon/RV635_me.bin -firmware: radeon/RV635_pfp.bin -firmware: radeon/RV670_me.bin -firmware: radeon/RV670_pfp.bin -firmware: radeon/RV710_me.bin -firmware: radeon/RV710_pfp.bin -firmware: radeon/RV710_smc.bin -firmware: radeon/RV710_uvd.bin -firmware: radeon/RV730_me.bin -firmware: radeon/RV730_pfp.bin -firmware: radeon/RV730_smc.bin -firmware: radeon/RV740_smc.bin -firmware: radeon/RV770_me.bin -firmware: radeon/RV770_pfp.bin -firmware: radeon/RV770_smc.bin -firmware: radeon/RV770_uvd.bin -firmware: radeon/SUMO2_me.bin -firmware: radeon/SUMO2_pfp.bin -firmware: radeon/SUMO_me.bin -firmware: radeon/SUMO_pfp.bin -firmware: radeon/SUMO_rlc.bin -firmware: radeon/SUMO_uvd.bin -firmware: radeon/TAHITI_ce.bin -firmware: radeon/TAHITI_mc.bin -firmware: radeon/TAHITI_mc2.bin -firmware: radeon/TAHITI_me.bin -firmware: radeon/TAHITI_pfp.bin -firmware: radeon/TAHITI_rlc.bin -firmware: radeon/TAHITI_smc.bin -firmware: radeon/TAHITI_uvd.bin -firmware: radeon/TAHITI_vce.bin -firmware: radeon/TURKS_mc.bin -firmware: radeon/TURKS_me.bin -firmware: radeon/TURKS_pfp.bin -firmware: radeon/TURKS_smc.bin -firmware: radeon/VERDE_ce.bin -firmware: radeon/VERDE_mc.bin -firmware: radeon/VERDE_mc2.bin -firmware: radeon/VERDE_me.bin -firmware: radeon/VERDE_pfp.bin -firmware: radeon/VERDE_rlc.bin -firmware: radeon/VERDE_smc.bin -firmware: radeon/bonaire_ce.bin -firmware: radeon/bonaire_mc.bin -firmware: radeon/bonaire_me.bin -firmware: radeon/bonaire_mec.bin -firmware: radeon/bonaire_pfp.bin -firmware: radeon/bonaire_rlc.bin -firmware: radeon/bonaire_sdma.bin -firmware: radeon/bonaire_smc.bin -firmware: radeon/hainan_ce.bin -firmware: radeon/hainan_mc.bin -firmware: radeon/hainan_me.bin -firmware: radeon/hainan_pfp.bin -firmware: radeon/hainan_rlc.bin -firmware: radeon/hainan_smc.bin -firmware: radeon/hawaii_ce.bin -firmware: radeon/hawaii_mc.bin -firmware: radeon/hawaii_me.bin -firmware: radeon/hawaii_mec.bin -firmware: radeon/hawaii_pfp.bin -firmware: radeon/hawaii_rlc.bin -firmware: radeon/hawaii_sdma.bin -firmware: radeon/hawaii_smc.bin -firmware: radeon/kabini_ce.bin -firmware: radeon/kabini_me.bin -firmware: radeon/kabini_mec.bin -firmware: radeon/kabini_pfp.bin -firmware: radeon/kabini_rlc.bin -firmware: radeon/kabini_sdma.bin -firmware: radeon/kaveri_ce.bin -firmware: radeon/kaveri_me.bin -firmware: radeon/kaveri_mec.bin -firmware: radeon/kaveri_mec2.bin -firmware: radeon/kaveri_pfp.bin -firmware: radeon/kaveri_rlc.bin -firmware: radeon/kaveri_sdma.bin -firmware: radeon/mullins_ce.bin -firmware: radeon/mullins_me.bin -firmware: radeon/mullins_mec.bin -firmware: radeon/mullins_pfp.bin -firmware: radeon/mullins_rlc.bin -firmware: radeon/mullins_sdma.bin -firmware: radeon/oland_ce.bin -firmware: radeon/oland_mc.bin -firmware: radeon/oland_me.bin -firmware: radeon/oland_pfp.bin -firmware: radeon/oland_rlc.bin -firmware: radeon/oland_smc.bin -firmware: radeon/pitcairn_ce.bin -firmware: radeon/pitcairn_mc.bin -firmware: radeon/pitcairn_me.bin -firmware: radeon/pitcairn_pfp.bin -firmware: radeon/pitcairn_rlc.bin -firmware: radeon/pitcairn_smc.bin -firmware: radeon/tahiti_ce.bin -firmware: radeon/tahiti_mc.bin -firmware: radeon/tahiti_me.bin -firmware: radeon/tahiti_pfp.bin -firmware: radeon/tahiti_rlc.bin -firmware: radeon/tahiti_smc.bin -firmware: radeon/verde_ce.bin -firmware: radeon/verde_mc.bin -firmware: radeon/verde_me.bin -firmware: radeon/verde_pfp.bin -firmware: radeon/verde_rlc.bin -firmware: radeon/verde_smc.bin -firmware: riptide.hex -firmware: rp2.fw -firmware: rpm_firmware.bin -firmware: rsi_91x.fw -firmware: rt2561.bin -firmware: rt2561s.bin -firmware: rt2661.bin -firmware: rt2860.bin -firmware: rt2870.bin -firmware: rt73.bin -firmware: rtl_nic/rtl8105e-1.fw -firmware: rtl_nic/rtl8106e-1.fw -firmware: rtl_nic/rtl8106e-2.fw -firmware: rtl_nic/rtl8107e-1.fw -firmware: rtl_nic/rtl8107e-2.fw -firmware: rtl_nic/rtl8168d-1.fw -firmware: rtl_nic/rtl8168d-2.fw -firmware: rtl_nic/rtl8168e-1.fw -firmware: rtl_nic/rtl8168e-2.fw -firmware: rtl_nic/rtl8168e-3.fw -firmware: rtl_nic/rtl8168f-1.fw -firmware: rtl_nic/rtl8168f-2.fw -firmware: rtl_nic/rtl8168g-2.fw -firmware: rtl_nic/rtl8168g-3.fw -firmware: rtl_nic/rtl8168h-1.fw -firmware: rtl_nic/rtl8168h-2.fw -firmware: rtl_nic/rtl8402-1.fw -firmware: rtl_nic/rtl8411-1.fw -firmware: rtl_nic/rtl8411-2.fw -firmware: rtlwifi/rtl8188efw.bin -firmware: rtlwifi/rtl8192cfw.bin -firmware: rtlwifi/rtl8192cfwU.bin -firmware: rtlwifi/rtl8192cfwU_B.bin -firmware: rtlwifi/rtl8192cufw.bin -firmware: rtlwifi/rtl8192cufw_A.bin -firmware: rtlwifi/rtl8192cufw_B.bin -firmware: rtlwifi/rtl8192cufw_TMSC.bin -firmware: rtlwifi/rtl8192defw.bin -firmware: rtlwifi/rtl8192eefw.bin -firmware: rtlwifi/rtl8192sefw.bin -firmware: rtlwifi/rtl8712u.bin -firmware: rtlwifi/rtl8723aufw_A.bin -firmware: rtlwifi/rtl8723aufw_B.bin -firmware: rtlwifi/rtl8723aufw_B_NoBT.bin -firmware: rtlwifi/rtl8723befw.bin -firmware: rtlwifi/rtl8723efw.bin -firmware: rtlwifi/rtl8821aefw.bin -firmware: sb16/alaw_main.csp -firmware: sb16/ima_adpcm_capture.csp -firmware: sb16/ima_adpcm_init.csp -firmware: sb16/ima_adpcm_playback.csp -firmware: sb16/mulaw_main.csp -firmware: scope.cod -firmware: sd8385.bin -firmware: sd8385_helper.bin -firmware: sd8686.bin -firmware: sd8686_helper.bin -firmware: sd8688.bin -firmware: sd8688_helper.bin -firmware: slicoss/gbdownload.sys -firmware: slicoss/gbrcvucode.sys -firmware: slicoss/oasisdownload.sys -firmware: slicoss/oasisrcvucode.sys -firmware: sms1xxx-hcw-55xxx-dvbt-02.fw -firmware: sms1xxx-hcw-55xxx-isdbt-02.fw -firmware: sms1xxx-nova-a-dvbt-01.fw -firmware: sms1xxx-nova-b-dvbt-01.fw -firmware: sms1xxx-stellar-dvbt-01.fw -firmware: sndscape.co0 -firmware: sndscape.co1 -firmware: sndscape.co2 -firmware: sndscape.co3 -firmware: sndscape.co4 -firmware: softing-4.6/bcard.bin -firmware: softing-4.6/bcard2.bin -firmware: softing-4.6/cancard.bin -firmware: softing-4.6/cancrd2.bin -firmware: softing-4.6/cansja.bin -firmware: softing-4.6/ldcard.bin -firmware: softing-4.6/ldcard2.bin -firmware: solos-FPGA.bin -firmware: solos-Firmware.bin -firmware: solos-db-FPGA.bin -firmware: sun/cassini.bin -firmware: symbol_sp24t_prim_fw -firmware: symbol_sp24t_sec_fw -firmware: tdmb_denver.inp -firmware: tdmb_nova_12mhz.inp -firmware: tdmb_nova_12mhz_b0.inp -firmware: tehuti/bdx.bin -firmware: ti-connectivity/wl1251-fw.bin -firmware: ti-connectivity/wl1251-nvs.bin -firmware: ti-connectivity/wl1271-nvs.bin -firmware: ti-connectivity/wl127x-fw-5-mr.bin -firmware: ti-connectivity/wl127x-fw-5-plt.bin -firmware: ti-connectivity/wl127x-fw-5-sr.bin -firmware: ti-connectivity/wl128x-fw-5-mr.bin -firmware: ti-connectivity/wl128x-fw-5-plt.bin -firmware: ti-connectivity/wl128x-fw-5-sr.bin -firmware: ti-connectivity/wl18xx-conf.bin -firmware: ti-connectivity/wl18xx-fw-4.bin -firmware: ti_3410.fw -firmware: ti_5052.fw -firmware: tigon/tg3.bin -firmware: tigon/tg3_tso.bin -firmware: tigon/tg3_tso5.bin -firmware: ttusb-budget/dspbootcode.bin -firmware: turtlebeach/msndinit.bin -firmware: turtlebeach/msndperm.bin -firmware: turtlebeach/pndsperm.bin -firmware: turtlebeach/pndspini.bin -firmware: ueagle-atm/930-fpga.bin -firmware: ueagle-atm/CMV4i.bin -firmware: ueagle-atm/CMV4i.bin.v2 -firmware: ueagle-atm/CMV4p.bin -firmware: ueagle-atm/CMV4p.bin.v2 -firmware: ueagle-atm/CMV9i.bin -firmware: ueagle-atm/CMV9i.bin.v2 -firmware: ueagle-atm/CMV9p.bin -firmware: ueagle-atm/CMV9p.bin.v2 -firmware: ueagle-atm/CMVei.bin -firmware: ueagle-atm/CMVei.bin.v2 -firmware: ueagle-atm/CMVep.bin -firmware: ueagle-atm/CMVep.bin.v2 -firmware: ueagle-atm/DSP4i.bin -firmware: ueagle-atm/DSP4p.bin -firmware: ueagle-atm/DSP9i.bin -firmware: ueagle-atm/DSP9p.bin -firmware: ueagle-atm/DSPei.bin -firmware: ueagle-atm/DSPep.bin -firmware: ueagle-atm/adi930.fw -firmware: ueagle-atm/eagle.fw -firmware: ueagle-atm/eagleI.fw -firmware: ueagle-atm/eagleII.fw -firmware: ueagle-atm/eagleIII.fw -firmware: ueagle-atm/eagleIV.fw -firmware: usb8388.bin -firmware: usbdux_firmware.bin -firmware: usbduxfast_firmware.bin -firmware: usbduxsigma_firmware.bin -firmware: v4l-cx231xx-avcore-01.fw -firmware: v4l-cx23418-apu.fw -firmware: v4l-cx23418-cpu.fw -firmware: v4l-cx23418-dig.fw -firmware: v4l-cx2341x-dec.fw -firmware: v4l-cx2341x-enc.fw -firmware: v4l-cx2341x-init.mpg -firmware: v4l-cx23885-avcore-01.fw -firmware: v4l-cx23885-enc.fw -firmware: v4l-cx25840.fw -firmware: v4l-pvrusb2-24xxx-01.fw -firmware: v4l-pvrusb2-29xxx-01.fw -firmware: v4l-pvrusb2-73xxx-01.fw -firmware: vicam/firmware.fw -firmware: vntwusb.fw -firmware: vpdma-1b8.bin -firmware: vx/bd56002.boot -firmware: vx/bd563s3.boot -firmware: vx/bd563v2.boot -firmware: vx/bx_1_vp4.b56 -firmware: vx/bx_1_vxp.b56 -firmware: vx/l_1_v22.d56 -firmware: vx/l_1_vp4.d56 -firmware: vx/l_1_vx2.d56 -firmware: vx/l_1_vxp.d56 -firmware: vx/x1_1_vp4.xlx -firmware: vx/x1_1_vx2.xlx -firmware: vx/x1_1_vxp.xlx -firmware: vx/x1_2_v22.xlx -firmware: vxge/X3fw-pxe.ncf -firmware: vxge/X3fw.ncf -firmware: wavefront.os -firmware: wd719x-risc.bin -firmware: wd719x-wcs.bin -firmware: whiteheat.fw -firmware: whiteheat_loader.fw -firmware: wil6210.brd -firmware: wil6210.fw -firmware: wlan/prima/WCNSS_qcom_wlan_nv.bin -firmware: xc3028-v27.fw -firmware: xc3028L-v36.fw -firmware: yam/1200.bin -firmware: yam/9600.bin -firmware: yamaha/ds1_ctrl.fw -firmware: yamaha/ds1_dsp.fw -firmware: yamaha/ds1e_ctrl.fw -firmware: yamaha/yss225_registers.bin -firmware: zd1201-ap.fw -firmware: zd1201.fw -firmware: zd1211/zd1211_ub -firmware: zd1211/zd1211_uphr -firmware: zd1211/zd1211_ur -firmware: zd1211/zd1211b_ub -firmware: zd1211/zd1211b_uphr -firmware: zd1211/zd1211b_ur reverted: --- linux-raspi2-4.4.0/debian.master/abi/4.4.0-89.112/i386/generic +++ linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-89.112/i386/generic @@ -1,18855 +0,0 @@ -EXPORT_SYMBOL arch/x86/kvm/kvm 0xf19e2e39 kvm_cpu_has_pending_timer -EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x254e5667 scx200_gpio_base -EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x35a3c008 scx200_gpio_configure -EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x8cfa375c scx200_gpio_shadow -EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x907665bd scx200_cb_base -EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe -EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble -EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL crypto/mcryptd 0x2d7e229d mcryptd_arm_flusher -EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/acpi/nfit 0xa7e9a159 to_nfit_uuid -EXPORT_SYMBOL drivers/acpi/video 0x6de7f7ff acpi_video_get_backlight_type -EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister -EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register -EXPORT_SYMBOL drivers/acpi/video 0xa06f85eb acpi_video_get_edid -EXPORT_SYMBOL drivers/acpi/video 0xe92ca535 acpi_video_set_dmi_backlight_type -EXPORT_SYMBOL drivers/atm/suni 0x55ff552d suni_init -EXPORT_SYMBOL drivers/atm/uPD98402 0xa9fb3713 uPD98402_init -EXPORT_SYMBOL drivers/bcma/bcma 0x1cf5c26d bcma_core_dma_translation -EXPORT_SYMBOL drivers/bcma/bcma 0x3d598999 bcma_core_irq -EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str -EXPORT_SYMBOL drivers/block/paride/paride 0x28a6793d paride_unregister -EXPORT_SYMBOL drivers/block/paride/paride 0x2a4c2825 pi_disconnect -EXPORT_SYMBOL drivers/block/paride/paride 0x2e573b0d pi_init -EXPORT_SYMBOL drivers/block/paride/paride 0x3ff1a328 pi_write_regr -EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x454b2e8d pi_do_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x798154bd pi_write_block -EXPORT_SYMBOL drivers/block/paride/paride 0x8e665e0c pi_release -EXPORT_SYMBOL drivers/block/paride/paride 0xa5b47c36 pi_read_block -EXPORT_SYMBOL drivers/block/paride/paride 0xb07a78ef paride_register -EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -EXPORT_SYMBOL drivers/block/paride/paride 0xb25c096b pi_schedule_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0xc5efb8a8 pi_read_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xf7c17a83 pi_connect -EXPORT_SYMBOL drivers/bluetooth/btbcm 0x0bde6101 btbcm_patchram -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fae3bac ipmi_addr_src_to_str -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fe6dbef ipmi_smi_watcher_register -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x31ce9f62 ipmi_get_smi_info -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x58f9fcbd ipmi_register_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7167f48e ipmi_smi_add_proc_entry -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfd5b079c ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/nsc_gpio 0x428dbcdd nsc_gpio_read -EXPORT_SYMBOL drivers/char/nsc_gpio 0xd329fb63 nsc_gpio_dump -EXPORT_SYMBOL drivers/char/nsc_gpio 0xf6316cdf nsc_gpio_write -EXPORT_SYMBOL drivers/char/nvram 0x0f28cb91 nvram_read_byte -EXPORT_SYMBOL drivers/char/nvram 0x17ff2c1d __nvram_read_byte -EXPORT_SYMBOL drivers/char/nvram 0x2adec1e0 __nvram_check_checksum -EXPORT_SYMBOL drivers/char/nvram 0x7da28f12 nvram_check_checksum -EXPORT_SYMBOL drivers/char/nvram 0x9ce3f83f nvram_write_byte -EXPORT_SYMBOL drivers/char/nvram 0xa8813189 __nvram_write_byte -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x6287f8c1 st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x7a76d909 st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xbc634401 st33zp24_remove -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xc3dd38e1 st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x157a0b61 xillybus_endpoint_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xcb863a9a xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xfee570d7 xillybus_init_endpoint -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x1a1203fb dw_dma_get_src_addr -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x1f633947 dw_dma_get_dst_addr -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xac717d84 dw_dma_cyclic_free -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xbe4ab300 dw_dma_cyclic_prep -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xdf6f6889 dw_dma_cyclic_start -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xfa75bf36 dw_dma_cyclic_stop -EXPORT_SYMBOL drivers/edac/edac_core 0x16d47a7a edac_mc_find -EXPORT_SYMBOL drivers/firewire/firewire-core 0x02c2f355 fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0x04dd92ce fw_core_add_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x05fd7a99 fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0efe8286 fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0x17510e7f fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x34283399 fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3f4a7df9 fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x41369a00 fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d5d4eca fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x627a51e3 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x668a6eaf fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6805e640 fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x69ab1b78 fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6e840ac3 fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7cfb726c fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e431b14 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8033824e fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0x909d9b77 fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x98a1b894 fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9c1048c3 fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa9c886d5 fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbb8bf30a fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd152357e fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd41f028b fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd962a2b5 fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0xdb491cfa fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0xea19a149 fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0xec9c1418 fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf3b931e8 fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firmware/dcdbas 0xa75079d6 dcdbas_smi_request -EXPORT_SYMBOL drivers/fmc/fmc 0x1c5735af fmc_show_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0x1c5de978 fmc_driver_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0x3f7a354f fmc_reprogram -EXPORT_SYMBOL drivers/fmc/fmc 0x4255cb73 fmc_device_unregister_n -EXPORT_SYMBOL drivers/fmc/fmc 0x8f14bcdf fmc_device_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0x93aed2be fmc_find_sdb_device -EXPORT_SYMBOL drivers/fmc/fmc 0x98a7123d fmc_device_register -EXPORT_SYMBOL drivers/fmc/fmc 0xa7243c45 fmc_device_register_n -EXPORT_SYMBOL drivers/fmc/fmc 0xbaf9cafc fmc_scan_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0xeaf2b64d fmc_free_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0xffc12ffa fmc_driver_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x00653fe7 drm_legacy_rmmap_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0104cc65 drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x027009c6 drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0285d0bc drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03b01f5c drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04481608 drm_agp_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04d678be drm_agp_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0502a264 drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x067b36e2 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x087e9762 drm_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x091b4c9d drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a9d2b8c drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ad437a4 drm_atomic_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae1b55b drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae3a0fa drm_bridge_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b0dee34 drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0baca5cb drm_vblank_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bdfe1c2 drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0db7efb7 drm_legacy_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0df907b0 drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e468f37 drm_encoder_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e5267b9 drm_panel_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fccafb1 drm_global_item_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1087075f drm_ati_pcigart_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12b3aa9a drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14d4688b drm_framebuffer_unreference -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16699e0c drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1853f243 drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19469000 drm_mode_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19946bce drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19d240f2 drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a8f8a89 drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ab46f15 drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b6d5927 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c504c08 drm_dev_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ce6a99c drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d2e9f0b drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e63968c drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ea87c0a drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ead409e drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20a6824c drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20e880f3 drm_property_unreference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x219dc264 drm_pci_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22c3d030 drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24a266f9 drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27bff397 drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28015ee6 drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x282f1ef2 drm_irq_install -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2865efdc drm_irq_uninstall -EXPORT_SYMBOL drivers/gpu/drm/drm 0x287375cc drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ac9ab08 drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b16b6a5 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b604b85 drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bedc6fe drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d0746e8 drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2db49998 drm_agp_bind_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e5117b4 drm_pci_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed4ad10 drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30014c17 drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30396b31 drm_mm_dump_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30708150 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3173dfdd drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31d3855a drm_connector_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32ca2a5d drm_platform_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x331efdf6 drm_framebuffer_reference -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3406fa91 drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x346127a7 drm_global_item_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x349459d8 drm_property_reference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x362c5ce1 drm_modeset_lock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37e8db77 drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3927a673 drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a12c3a1 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3aa5e960 drm_pci_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cee2dbe drm_modeset_legacy_acquire_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cf60daa drm_calc_vbltimestamp_from_scanoutpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d88c3dd drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e61c99c drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x40997646 drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4134af5d drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x414a285f drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41e68b27 drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4206d357 drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x429f0cf4 drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4399554e drm_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x462dedbd drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x467a57c5 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x469ce785 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4727d421 drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x478e4851 drm_agp_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x488a3efe drm_bridge_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bd7abb4 drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c3ad2ee drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c90d696 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ccd4703 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cfb3115 drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50147d16 drm_agp_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x506fe340 drm_mode_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50f110db drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5201e6f5 drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5394e6d9 drm_atomic_clean_old_fb -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54111ce8 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57a540dd drm_get_pci_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x590d694d drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5acf38cb drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b26a554 drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cca4788 drm_atomic_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e824dc1 drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5eb0789d drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f9b111a drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60705842 drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62fab159 drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0x631db832 drm_modeset_backoff_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x634e459e drm_legacy_rmmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6362fe02 drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6428491c drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6474193a drm_ati_pcigart_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64aa2af1 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64e4bc47 drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x655c31c9 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x657948ad drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6584e769 drm_vblank_pre_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65ad256a drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x670aae39 drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x69231a9e drm_legacy_addbufs_agp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c79caa3 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ce2cf66 drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cee0bf3 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d03fe4b drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d090693 drm_mode_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e7bb4d7 drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x705d72d8 drm_mode_hsync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x70647c36 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7093f2a4 drm_connector_unplug_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x714ae9df drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71c34421 drm_mode_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71ede5f3 drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x73f53d5c drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x782f05f6 drm_mode_validate_basic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79905c23 drm_agp_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79b13b6b drm_legacy_idlelock_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b692c4e drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b99235c drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c89f3d1 drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ce0e318 drm_legacy_ioremap_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f7aa923 drm_dev_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fbacebd drm_crtc_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0x820eddfc drm_panel_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x84b1ab19 drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86cb7750 drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x874b7d40 drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89361952 drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8972bfa1 drm_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bebdd77 drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c2e58ec drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c5f087a drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8df6c1e8 drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e55703f drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e907bfb drm_atomic_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x903cfe31 drm_pci_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x906985fb drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90934f93 drm_select_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90c4b2b3 drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x921d3f87 drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x930c20dd drm_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94ca72f4 drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9560e01a drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95ee4af5 drm_bridge_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x963b3db0 drm_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9757b331 drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9872da20 drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9898e95b drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x98f8fad1 drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bde525d drm_vblank_post_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d0fdc71 drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9df68376 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e333ba1 drm_bridge_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f82717f drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa08100b7 drm_atomic_legacy_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4eb354d drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6abda12 drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa76f8f53 drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9dbae65 drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9faa9b4 drm_pci_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa746a9e drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaac98e98 drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xabdb9845 drm_modeset_unlock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xacca57a7 drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xadf40693 drm_legacy_addmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae597c79 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf113f6b drm_bridge_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xafb457bf drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xafcf5827 drm_crtc_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2c64dc1 drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2e75574 drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb349f971 drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4637bf6 drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5dd0648 drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb64d03bb drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb65eca2f drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb688ac4b drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8685ed2 drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8d1a16b drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb903c19d drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb95971ee drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9eccd97 drm_unplug_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba8e83e8 drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbaa80bcd drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbac609b0 drm_prime_sg_to_page_addr_arrays -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbaf81d62 drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd08d707 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe645775 drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe8044a6 drm_platform_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbeb6cce8 drm_legacy_ioremap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0c4f7c4 drm_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0d32226 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0f707c9 drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1205246 drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc19b00e1 drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc24bd39e drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3485874 drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3fab6a9 drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc54e41d2 drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc55a543c drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7dad17f drm_legacy_idlelock_take -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc832194e drm_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc953a117 drm_vblank_no_hw_counter -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9979f9b drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca06724f drm_gem_dumb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca3caaff drm_modeset_lock_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb155835 drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb8527fe drm_agp_bind -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce8098a1 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd01a80da drm_mode_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1d0a76a drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2e4459c drm_mode_create_dirty_info_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3e0f3fa drm_atomic_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd461efb1 drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5351ca6 drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8acc069 drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9140bb3 drm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdaa43609 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb145197 drm_pcie_get_speed_cap_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb1a422c drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb2de489 drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc523cec drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcdf9b4b drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd17f140 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd68b9b5 drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd6e03ee drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0xddb6d359 drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf33785d drm_legacy_addbufs_pci -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf402dbc drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe087e2e8 drm_bridge_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0a5ab44 drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe161a18e drm_legacy_ioremapfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe522d4ba drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5841eb9 drm_legacy_getsarea -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe84047db drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8632371 drm_agp_unbind -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec09217c drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0xee015087 drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeec96222 drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef23c3db drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef6aefa4 drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0e22db5 drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf187bf16 drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1f4e7e2 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3154546 drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf317d468 drm_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf573f4a1 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7146ed6 drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7c9aa08 drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf81e44ba drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf89d12c3 drm_pcie_get_max_link_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf95d101a drm_agp_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa4dd951 drm_mode_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa7bee6f drm_plane_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb6adf77 drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbf34871 drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc82b24c drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf30891 drm_edid_to_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd0f3838 drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfec53f5b drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffd91edb drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x030561ec drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03ca64a0 drm_kms_helper_poll_enable_locked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0516e0da drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05c17365 drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06aee64b drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0979b1ab __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09d9db61 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a18b81c drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0aa1b804 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ac2aa09 drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c56e43d drm_fb_helper_add_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c71b695 drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0cd5e3c9 drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f4632f3 drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11dac89c drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1365b799 drm_atomic_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13e1ea36 drm_helper_probe_single_connector_modes_nomerge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16a83a72 drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a38d3bd drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b96719e drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1bf7e83e drm_dp_mst_port_has_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1dbb6882 drm_plane_helper_check_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ec94eb8 drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20be964a drm_atomic_helper_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28680fb4 drm_helper_crtc_mode_set_base -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29ce7678 drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d6afe8a drm_plane_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d9a7733 drm_atomic_helper_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30fdd263 drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3213937d drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33a97ff5 drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x355f4644 drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36c57b36 drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x377661a1 drm_plane_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f470dfe __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4024aa9b drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4097970b drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41f12593 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43e75558 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4459a3b2 __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x468a2bd3 drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47ff2a97 drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a9b359d drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ca68efc drm_fb_helper_single_add_all_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4fb4305c drm_helper_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51d43d97 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x525910ff drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5884b50e drm_dp_link_probe -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c76baaf drm_fb_helper_release_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d19490a drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fb8b29e drm_dp_aux_unregister_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ff86bc0 drm_fb_helper_fill_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60114ab6 __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64e74d35 drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66256d82 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68ab63a9 drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a3ec9be drm_dp_link_power_down -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a880b8f drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ac34a65 drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6cb2d270 drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x703ec627 drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71116461 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x716a6a7e drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7740b4da drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a0b3e16 __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ace0564 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bdd0a65 drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f2f4ed4 drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80acea87 drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8288d7ba drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83d32f4d __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e0ca5a drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x879c31a7 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x880d1f01 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c976382 drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f4cbc9c drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x912449f7 drm_pick_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9180833e drm_primary_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92a90495 drm_dp_link_configure -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94e8096f drm_fb_helper_fill_fix -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94f91349 drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x973583ac drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a7c1001 drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9cf69e09 drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d797b58 drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f376da5 drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa075cb6f drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0aa04e8 drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1501fb1 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5be4e03 drm_fb_helper_remove_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa606a2a4 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6c5d83f drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8744df3 drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9aad0fc drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xacc5ba18 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xafd926b4 drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2afeee8 drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb314b8ee drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb51d591f drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb80e87dd drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc78c7c6 drm_has_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc858df5 drm_dp_link_power_up -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1eddb4e drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc682cc4c drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcafb9ef5 drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf804082 drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfa120d8 drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd14b1c22 drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd159872e drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd24d1db3 drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd556a76d drm_atomic_helper_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd58c89e9 drm_fb_helper_unlink_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6b37603 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd95139cf drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdaded31c drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb03fa39 drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc1fd817 drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc69ed87 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd5a68f4 drm_helper_crtc_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd7c059f drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe160fe64 drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1e97e96 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2094a0e drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe22cc843 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3781232 drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe48f4885 drm_atomic_helper_legacy_gamma_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe661c904 drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea1bee15 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec2a99cc drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec9d4152 drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed7889b3 drm_atomic_helper_framebuffer_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee220d20 drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee52608e drm_primary_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeee10a67 drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef2ef6a1 drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0713f52 drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1a954f4 drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf50d803f drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8e3b412 drm_dp_aux_register_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc88a0fd drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfeed6b10 drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff36b460 drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x01186980 ttm_mem_global_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x06c979c3 ttm_mem_io_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x06e50123 ttm_mem_io_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0b9a2729 ttm_mem_io_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0bab7f47 ttm_read_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x12921363 ttm_dma_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132b05be ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x188b65d5 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1940e4cd ttm_write_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x22ec80fe ttm_vt_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x24765c33 ttm_read_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x253fc7ff ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x25880fd6 ttm_bo_init_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x266d8a60 ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x27060ffd ttm_agp_tt_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2d36235d ttm_bo_clean_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x42c621e1 ttm_bo_add_to_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x46360d38 ttm_page_alloc_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4669951a ttm_bo_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4964c6ed ttm_bo_mem_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4efd5a99 ttm_mem_global_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x58f2a71c ttm_mem_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5ce12785 ttm_dma_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cf59609 ttm_bo_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5f41e346 ttm_bo_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x600b7ba5 ttm_bo_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67032bbb ttm_bo_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67b1d568 ttm_bo_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a4d70a4 ttm_agp_tt_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c8dc6bf ttm_vt_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6d4931bb ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6e6837dc ttm_bo_dma_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6e875de9 ttm_lock_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x716ce58e ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7a242ff6 ttm_object_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7af8b08c ttm_mem_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7cb0225b ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fad07dc ttm_tt_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x81bb2bca ttm_bo_swapout_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x821336a0 ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x836d8fd0 ttm_suspend_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x85a78109 ttm_bo_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x85dce7a9 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86146b59 ttm_bo_manager_func -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86a9baa1 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8748c96e ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8779bdde ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x946d9ea3 ttm_write_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94958366 ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x96232434 ttm_tt_set_placement_caching -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x970d4f68 ttm_mem_io_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d0eb91 ttm_ref_object_add -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9dc5ce53 ttm_pool_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa431be55 ttm_prime_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa52ff761 ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaa5b5998 ttm_agp_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xacec825f ttm_bo_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb44ed3f3 ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb4f6812e ttm_bo_del_sub_from_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc286846a ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc58d634f ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc6ce0a69 ttm_pool_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcd382acd ttm_bo_move_ttm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf49f835 ttm_suspend_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdb3f94f7 ttm_bo_synccpu_write_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdbaba5cc ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe93a2866 ttm_fbdev_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xedd71ed9 ttm_bo_synccpu_write_grab -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf3275744 ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf32d9416 ttm_bo_evict_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release -EXPORT_SYMBOL drivers/hv/hv_vmbus 0x04f92213 vmbus_sendpacket_ctl -EXPORT_SYMBOL drivers/hv/hv_vmbus 0xa6c6b38a vmbus_sendpacket -EXPORT_SYMBOL drivers/hv/hv_vmbus 0xbe4354d8 vmbus_recvpacket -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0e2a6864 sch56xx_read_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0f5877d4 sch56xx_read_virtual_reg16 -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x4f957983 sch56xx_watchdog_register -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe5022f95 sch56xx_read_virtual_reg12 -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xed1d2a08 sch56xx_write_virtual_reg -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x1b027daa i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x5af2e9f4 i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xabf8d813 i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x382c46b0 i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xe52ba971 i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x4b31f6d1 amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x03ae011e mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0f0aefb0 mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x195310f4 mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x412e63e5 mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4385868a mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4d824dca mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6fc7803c mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7948fb38 mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb3ff5379 mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb5a3aa66 mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb71d1211 mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbaa96e88 mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc6ef77df mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe84df21b mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xea13da92 mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf6014114 mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xb4547324 st_accel_common_probe -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xe443bda0 st_accel_common_remove -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xc546edd4 iio_triggered_buffer_setup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xfe1b1754 iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x439e62f6 iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x7ef020f1 devm_iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xa563237d devm_iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xf86477c3 iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x1784f8fe hid_sensor_write_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x37e29607 hid_sensor_read_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x4d6b4a90 hid_sensor_parse_common_attributes -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x60c9f91f hid_sensor_read_poll_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xa3939614 hid_sensor_write_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xa4bf7641 hid_sensor_read_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x85e0885e hid_sensor_setup_trigger -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xbab6b14d hid_sensor_pm_ops -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xd6e8cede hid_sensor_power_state -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xec443175 hid_sensor_remove_trigger -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x434e2c55 ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x5335deb7 ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x53cb38bb ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x89b9a269 ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8e679569 ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xa37d7d23 ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xdf241dcb ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf7879b74 ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xfacac8ca ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x285fcc3b ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x697d3f21 ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x7b82cfe4 ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xe61af4c0 ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xf41f224a ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x23a3f0f9 ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x86c1ef18 ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x92510b0d ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x193fbbf3 st_sensors_check_device_support -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x325ac075 st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x348181eb st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x400cd024 st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x47493298 st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5be38c43 st_sensors_get_buffer_element -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x684215dd st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x69c3c0e5 st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x79c46cd7 st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7cb250cc st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x85afcddd st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x866adef3 st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9e6f2e45 st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa135a68f st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc1197aa9 st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xde172fdb st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xfe95c33c st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x811e6826 st_sensors_match_acpi_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xb7346ee9 st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x2db6cfe3 st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x03b7be84 st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xd1edabe9 st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x2daf312d hts221_probe -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x982d84d6 adis_enable_irq -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xfbefd24a adis_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/industrialio 0x1a62bd14 iio_triggered_buffer_postenable -EXPORT_SYMBOL drivers/iio/industrialio 0x1e8f506e iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x246db3eb iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x367b6bda iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0x3b8c6ef7 iio_triggered_buffer_predisable -EXPORT_SYMBOL drivers/iio/industrialio 0x3c3c4ba5 iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x3e7266e8 iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0x4aec6b4a iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0x50a90ed1 iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x92c009b1 iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xc178f399 iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0xc31a1604 iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0xd77e99d3 iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0xdab930af iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0xdb81453e iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xdeda2f40 iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xf876cab2 iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x1a11af76 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x402e3be8 iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x2ff98710 st_magn_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xc728e010 st_magn_common_remove -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xd0c799af ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xe5b7d83c st_press_common_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xf77ec65d st_press_common_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x049ace30 rdma_addr_find_smac_by_sgid -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1edc4064 rdma_addr_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x32f99bfd rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x515ecf14 rdma_copy_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x957d6a3b rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x9d9cabc5 rdma_addr_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xac4773f4 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x18d94dc4 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1d3ddd68 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x223ab3ed ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2494788a ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4b0b6674 ib_send_cm_lap -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x515def81 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x524e589c cm_class -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x67aaebc0 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6d9207f7 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x76c271b8 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x788965b7 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7b57c14d ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8bc3a7dc ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8f0a0421 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa2e64d3a ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb0c1e40e ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb65eb475 ib_send_cm_apr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfe5c45e7 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0078fc81 ib_destroy_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00e94db3 ib_destroy_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c242a69 ib_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d452229 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e2427b3 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ec7bc78 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x105cfcbb ib_get_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x109878ef ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10e3b601 ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x123dd1ac ib_dereg_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1654c5c7 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c85e517 ib_init_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ef8b0b3 ibnl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x217e05db ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x221e7bd3 ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2973d318 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2cdc91b2 ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d1b5f26 ib_find_gid_by_filter -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30303b95 ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34e91ff1 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c256dd6 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f0e198b ib_alloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4552dcca ib_create_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4584cf92 ib_dealloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49e311ad ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a07447b ib_create_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ac07bc9 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c2f7e20 ib_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ce0214a ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4cfeff38 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f62f633 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f7ab917 ib_query_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ff294fe ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5635f320 ib_umem_odp_map_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b98941a ibnl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5be5eea8 ib_resolve_eth_dmac -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5da5d4cb ib_fmr_pool_unmap -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6347fd66 ib_create_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x640a73b2 ib_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6600497f ib_create_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66741f8f ib_destroy_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66d3091c ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x701ecc85 ib_alloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71e77c10 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a31a30e ib_modify_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fe29249 ib_find_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84f4744a ib_destroy_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91452aea ib_get_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x958cfc87 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99660e97 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b8a0ef1 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ff3b27c ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa427a6b8 ib_dealloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5609476 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6093c05 ib_find_cached_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6b24ec4 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab8879a0 ib_dealloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad96d0cf ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb063d8be ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb168fe65 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1d1ed1e ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2d3c037 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5692409 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb662ecf9 ib_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7ff03ae ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb818c04c ibnl_add_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9259f10 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba21961a ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba9171e2 ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc201836a ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb36d995 ib_alloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb43804f ib_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd57e72a7 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6685481 ib_umem_page_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd941a1b ib_dealloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe26c3466 ib_get_dma_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3c57c89 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe83b1674 ib_fmr_pool_map_phys -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9370bfc ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xecfbc4d2 ib_query_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed104ff8 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf622f4bf ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd5b9513 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x18b00402 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2ad63917 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x32f38174 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x52e597a5 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x611f126b ib_redirect_mad_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x72435af9 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x8a46edc1 ib_register_mad_snoop -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x9ecfcb88 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xb5b28b75 ib_cancel_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc42f82a2 ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xcc589648 ib_process_mad_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xe79d1636 ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xefbee6cb ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x05f51c4a ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x287d1e73 ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x34babbb8 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x84cfc50f ib_init_ah_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x924190bb ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xd2f2528c ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xd3bac8fb ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xde4a4c0c ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xe53d5353 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf65145dd ib_sa_service_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xfd02868a ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x362e8272 ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc3c6bc05 ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x29cf03d9 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2d6ae23e iwpm_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x67af1d05 iwpm_ack_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6b5e96e0 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c09ce34 iwpm_add_and_query_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x74da5106 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8b7b40e3 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa0868145 iwpm_remote_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xab7b5b50 iwpm_mapping_error_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb997df24 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb9e0eb51 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc337aa89 iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe533e82c iwpm_register_pid_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfa31e080 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfb8a061e iwpm_add_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x00116bb8 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x100db68f rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x164c75db rdma_set_ib_paths -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1bdbcfe9 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1e8a9a05 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x23f59668 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x27f32934 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2f45b054 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5d108cac rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x62b0307f rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x768c2e85 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8739a842 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaa380294 rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb61d2c27 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc4431c3b rdma_create_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcd0a3102 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd869045f rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe0a4ee06 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe5ea04cd rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xee57fd8a rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xeecdd8d1 rdma_bind_addr -EXPORT_SYMBOL drivers/input/gameport/gameport 0x089a9008 gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0x345d989c __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x3940c0c1 gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x3b1a933e gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x492772c0 gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x4c9f25dd __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x4d8e20af gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0x5093c7ab gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0xd8d2c940 gameport_unregister_driver -EXPORT_SYMBOL drivers/input/input-polldev 0x46ea379a input_free_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x74d32ac6 input_unregister_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x761bc259 devm_input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xb4502e91 input_register_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xf68275a3 input_allocate_polled_device -EXPORT_SYMBOL drivers/input/matrix-keymap 0x1caa6772 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x1d0c24e3 ad714x_enable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xe2b7c0c6 ad714x_disable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xe7c3ee58 ad714x_probe -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x3780b207 cma3000_init -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/sparse-keymap 0x187855fc sparse_keymap_free -EXPORT_SYMBOL drivers/input/sparse-keymap 0x294abe64 sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0x54990ab2 sparse_keymap_setup -EXPORT_SYMBOL drivers/input/sparse-keymap 0x5caf3b55 sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x89710808 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xea3242da sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x484b8d9a ad7879_probe -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xa2bae43a ad7879_pm_ops -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x19e0bf61 capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x41cefac1 capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4b113c9d capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4d6b9601 capi_ctr_suspend_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x670a2978 attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9568fc45 detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9dfc09be capi20_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa4efe4c0 capi_ctr_resume_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa7c4fd6c capi_message2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb1fdb2ec capi20_register -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc10fe128 cdebbuf_free -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc2dc40c4 capi20_put_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8ad9bd1 capi_cmsg2str -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x02e2730e b1_load_t4file -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0437cda6 b1_loaded -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0dc3e3a5 b1_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0e039914 avmcard_dma_free -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x1417b964 b1_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2eebac54 b1_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x4074feeb b1_parse_version -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x791581cb b1_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x948dcf79 b1_getrevision -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb109ef7b b1_free_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb9adf27f b1ctl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xc4c50393 b1_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xc6c3b003 b1_alloc_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd4c104df b1_load_config -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf234ce0e avmcard_dma_alloc -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x0162558f b1dma_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x3a6bd17f b1dma_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x3ce1484b b1pciv4_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x4b753ac1 b1dma_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x58400888 b1dma_reset -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xac928220 b1dma_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd4d0f5cd b1dmactl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xea80bf68 b1dma_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xf51c39bf t1pci_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0x29562993 b1pcmcia_delcard -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x18a78448 mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x6e168f79 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x8eb00252 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xb85af61e mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x1a977601 mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xcfac150e mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6bffdd55 hisax_init_pcmcia -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6fe1ca04 FsmDelTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9f987c85 FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xa1bc94b9 FsmInitTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x1715d696 isac_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x237b8937 isacsx_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x82d088ca isac_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x8cbb56a0 isac_init -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xefccdf1d isacsx_irq -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x2f32de03 isdn_ppp_unregister_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x8703bda5 register_isdn -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xd3f59793 isdn_ppp_register_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0f59f3e1 mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3160afef mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3a29f451 queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3c3d38be dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x493d9093 mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x51af09d5 recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5ab6c825 recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5efe4992 mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x66600b8f mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x682f73b2 mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7a5856d0 recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x85a2d98c create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa022ea01 get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xacd97996 mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbb9c36b0 mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbd87182c bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcaecb9a3 get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcd50086a bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe04d4be7 recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe43e906e mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe5625aa2 recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xeacd58f1 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfa7ad1ff mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/md/bcache/bcache 0x10dc0d06 bch_bset_insert -EXPORT_SYMBOL drivers/md/bcache/bcache 0x277cd6af closure_sync -EXPORT_SYMBOL drivers/md/bcache/bcache 0x66d28e22 bch_btree_iter_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x6969b5d8 bch_bset_init_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7b55ca4f bch_bset_fix_invalidated_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7f2a56c0 bch_bset_sort_state_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x92ea9e38 closure_put -EXPORT_SYMBOL drivers/md/bcache/bcache 0x9e8b3cee bch_btree_keys_alloc -EXPORT_SYMBOL drivers/md/bcache/bcache 0xab2d2b84 bch_btree_insert_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0xad29a6f5 bch_bset_build_written_tree -EXPORT_SYMBOL drivers/md/bcache/bcache 0xaec09a2b bch_bkey_try_merge -EXPORT_SYMBOL drivers/md/bcache/bcache 0xaf77343c bch_btree_keys_free -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc04554f7 bch_btree_iter_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc7930853 closure_sub -EXPORT_SYMBOL drivers/md/bcache/bcache 0xca580595 bch_btree_keys_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe0f264bf closure_wait -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe47e0829 __bch_bset_search -EXPORT_SYMBOL drivers/md/bcache/bcache 0xecf7cef9 bch_btree_sort_lazy -EXPORT_SYMBOL drivers/md/bcache/bcache 0xfbf30701 bch_btree_sort_partial -EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers -EXPORT_SYMBOL drivers/md/dm-bufio 0xa7978f56 dm_bufio_forget -EXPORT_SYMBOL drivers/md/dm-log 0x26e932af dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0xa9d99798 dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0xe53c5309 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0xef7fc197 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x85435932 dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0x89f4a190 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0xa2420d42 dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0xd53c795c dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0xd74b61f3 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0xdca792b6 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/raid456 0x10b297d5 raid5_set_cache_size -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x249301dd flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2898320c flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2d6c9caa flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x37a72672 flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3820480e flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5425ddb4 flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6164d70f flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9e10d835 flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa04dd8ad flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xaf2cd422 flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc742b074 flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xec8aaef1 flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf1c4f0bf flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cx2341x 0x2e7bbcae cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update -EXPORT_SYMBOL drivers/media/common/cx2341x 0x30cb4cd7 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0x8913cbac cx2341x_handler_setup -EXPORT_SYMBOL drivers/media/common/cx2341x 0xadc8b695 cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cx2341x 0xbeddb314 cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0xfdb0edc9 cypress_load_firmware -EXPORT_SYMBOL drivers/media/common/tveeprom 0x092ec652 tveeprom_read -EXPORT_SYMBOL drivers/media/common/tveeprom 0x753e89ac tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x018dc007 dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0edb67eb dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1e5f0bdd dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2320c161 dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2907e8ed dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2a79a27b dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2cf288a0 dvb_ringbuffer_flush_spinlock_wakeup -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3c3b742c dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3ee8cfed dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4672414b dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4923d8a5 dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4e040262 dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4f8f08a4 dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x581837ac dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x58c0b3ca dvb_ringbuffer_read_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5a6f883d dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x70de704a dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8ae37ce4 dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8b91e59c dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8c7e8ea1 dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x95b8d8bc dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x96bccda5 dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x99631b84 dvb_dmx_swfilter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9ab4d06a dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb6f95286 dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xba73db4e dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc33a0f2e dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc37e96c4 dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc645fbc3 dvb_ringbuffer_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc706cc42 dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdf532985 dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe33b5ee5 dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe7d43d1b dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe81c114f dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebd38af9 dvb_ringbuffer_flush -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xec4aa900 dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfa9ed849 dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfc594b15 dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x6ac0f5fd af9013_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xb3bcbb83 ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x2f588862 atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x1a3b3f47 au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2f1a3e6d au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x385a677c au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x53e32af0 au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x58dc3cc8 au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5b85f94d au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x76784d95 au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe71852ca au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf487e67b au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xac5c30fe au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x90e62708 bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x02a6c677 cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x0ce20102 cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xcd3f0aab cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x6fd09a9a cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xfc11779c cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x727c792d cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x1418868c cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xf24d8a66 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xfda21cc2 cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x6a171e61 cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x646eab48 cxd2841er_attach_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x763c9850 cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x9c7ff2e4 cxd2841er_attach_t -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x12bc10f6 dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x21217299 dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x610ab723 dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xacecf843 dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xeccec225 dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2edaa8fb dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3e501757 dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x44802c6b dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x472217bf dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x575537b8 dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5db7fb12 dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x64ff273c dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6da09fd0 dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7faf34e9 dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x82a1b3c2 dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8b04abc0 dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x954238e7 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd36c5d39 dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdfe6da40 dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf54b5d8d dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x551e667e dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x35adfcb1 dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x40cd87cf dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x4ca08de2 dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x6bc5d019 dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x85086a07 dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x9483da95 dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x30a7f896 dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x3471149b dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xc289dc3e dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xf17a3df4 dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xac2a9664 dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x90b4f0a3 dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x083dad26 dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x25d28cd0 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x383f401e dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x720cb6ab dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc23d4659 dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xbcc0d766 drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x7e6ccf85 drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xad3e1f7a drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xfef3b1c3 ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x8c7a2462 dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x43865eca ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x8b2e92fa horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xf09a3c6d isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x5b691d97 isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x1bfded5d isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x249d0a99 itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x4dec904a ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xefd8cb11 l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x5222d059 lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x0df6bcf9 lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x05d0e99e lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x0b9d393a lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xcaadc9fa lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x1c468bfe lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x31a4902b lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xe2302253 lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x5718e597 lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xa87793e5 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xc77cd291 m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xa2bb16d6 m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xe3eb82d3 mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xdf9eee0e mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x62102745 mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x2ebbaa1b mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x0a5c1ad1 nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x37b7cc25 nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xb182eae4 or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x9864f0eb or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xd2acbbef s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xf0471589 s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xd50b0937 s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xe90e7aca s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x70db76e3 s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0x4e64c293 si2165_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xb3b563dd si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x505b424e sp8870_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x03ee808f sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x46edd442 stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xe8eb2f70 stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x4054f594 stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x4efbb14d stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xe7b2dcc3 stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x2e79efe4 stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x80015a71 stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x8358626b stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x8e4cd678 stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x3735baf9 stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x5c8e2885 stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xf412a459 stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xba1eb54e tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x88db3151 tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x63213aa6 tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x52fd45f4 tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x66e8ed9c tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xc30cfad9 tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x1ec1afb7 tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x6f1cc62b tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xe0384129 tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xfcf17c94 tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xaec54b39 ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x2321b2b1 tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x4c876ef8 ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xde672ef9 ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xb6124e6d zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x786ac7ea zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x63576870 zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x175d6c65 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x37e91769 flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x8572103a flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xa68e8086 flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb6ee1eb7 flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xe412a340 flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf20a008a flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x87273228 bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xb4f3b495 bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xbb205958 bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xf0d00d45 bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x00c77b71 bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x2471e097 bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xf4323a5e bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x064cb095 dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4f5eca8c write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x755ee42a dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8a27199f dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8dafa413 read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa0b5575b dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xaea10c64 rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb873440f dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe9e5c69b dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xcc70b7eb dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x09d3c3fe cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x43c36039 cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x44f3f170 cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x8d302391 cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xb4b1b17d cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x4565df18 altera_ci_init -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x0b9bd3a2 cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x60fabbca cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xa5b7de52 cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xbed056b1 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xbff09805 cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc4dffdba cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe913adae cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x9fed99d3 vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xe3e18771 vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x07b64f30 cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x268bb0ab cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xa9f68385 cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xb4d4eaf9 cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x2ad10718 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x32c702e4 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x3ab4106d cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x45ef9de5 cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x4e7c93e5 cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xf059120d cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xfe68e2a5 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x16197b62 cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x25d5ba01 cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2c8841c6 cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4f52419a cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5912929b cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x61cdfdbe cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6988e401 cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6b5d6cb1 cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6b9c1875 cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x71ea0f4c cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x81bf91b7 cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8a377963 cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x907d6e7a cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9d331cbd cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9e5211af cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa65c68e4 cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc3812f7d cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc8b37b7c cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdb14f9be cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xeae9fdf3 cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0552757b ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x13392f55 ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1b279cd3 ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3909c619 ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3abbe7eb ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x48bdd8cd ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6868764f ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x81fa8ed9 ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8c4900ab ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x946525d4 ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xaaf5951b ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbca48541 ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcbf83e8e ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe0290258 ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe5f76b8c ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xee2a9079 ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfa031735 ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x35c53de4 saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4440ba50 saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x73483d90 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75d6c0bf saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8a0a863a saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9c30cb55 saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa2a8d4d3 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xaac17f08 saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xbd0e6027 saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc03680cd saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc1d3eb33 saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf36a416a saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xbdfc67ef ttpci_eeprom_parse_mac -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x2690c193 videocodec_register -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x539e27be videocodec_detach -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x67510ded videocodec_attach -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x978b6509 videocodec_unregister -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x24fc3a07 soc_camera_xlate_by_fourcc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x5c907255 soc_camera_host_register -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x80abe3ec soc_camera_apply_board_flags -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xa2851a67 soc_camera_power_on -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xab4c779b soc_camera_power_init -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xc1dbdc07 soc_camera_power_off -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xe6c224f3 soc_camera_host_unregister -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc -EXPORT_SYMBOL drivers/media/radio/tea575x 0x4bbb7969 snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x58f6a52b snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0x5aa2f692 snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0x5fc7e3a6 snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0xbb2373b7 snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xe407410b snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0xe7bb7981 snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x2c02cdb1 lirc_dev_fop_ioctl -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x3f8135cd lirc_get_pdata -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x5408ff8e lirc_dev_fop_poll -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x746d01e5 lirc_register_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x7a284c98 lirc_dev_fop_open -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x88319b40 lirc_dev_fop_close -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xa8ba5e1d lirc_dev_fop_write -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xee0dd0c0 lirc_dev_fop_read -EXPORT_SYMBOL drivers/media/rc/rc-core 0x865fb620 ir_raw_handler_unregister -EXPORT_SYMBOL drivers/media/rc/rc-core 0xa01c217f ir_raw_handler_register -EXPORT_SYMBOL drivers/media/tuners/fc0011 0x19651fb1 fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0xbb27d28b fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x9b377e5e fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xa596fbca fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xe099aeaa fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/max2165 0x87464cf4 max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xa97dfc84 mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0x30155ee2 mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0x085de9c7 mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0x19022960 mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x9ec3a6d2 mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0x60ad2a4a qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0xcdab301c tda18218_attach -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x21d260ae xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0xccfd4ba7 xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0x7dedd3ee xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x3c3a3158 cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x62292f0a cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x52a905dd dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5b191361 dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7b8b03d9 dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8787c9c0 dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x93a583eb dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x970edaf4 dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc0488a4d dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xdde74b59 dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf7fa0279 dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x06c91796 dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x3d255d4f dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7f991a3d dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xb65b64ce dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc3c19568 dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc64627ff usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd620a347 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xe89492c7 af9005_rc_decode -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x056775d9 dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x0687bd69 dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x36936d20 dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x44c4125c dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x48ef4e3b dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5048348d dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x57194197 dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x658e5145 dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9e4b2304 dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc2caeca0 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf18efd52 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xd181d796 em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xd6b48a1d em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4d9a24cb go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4e8ecc7e go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x53982dc9 go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x54f8d98a go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x82d73113 go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x878c5656 go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x93f715f3 go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xba1049fc go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xcea4872e go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x059a66cc gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2209b4ec gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2c7a1298 gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2ef91e47 gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x56140ee5 gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x71f4271d gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe55db0c9 gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe860bef5 gspca_suspend -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x4f8992fd tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x8bca11e3 tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xed127141 tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x498f1ed2 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x62481f18 ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf63c96a8 v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xfc140480 v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xfcc51297 v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x0d826ff9 videobuf_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x30f813eb videobuf_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x5b4a8ae7 videobuf_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xb6dfec35 videobuf_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xca113a37 videobuf_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xea7f859c videobuf_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x376e234d vb2_verify_memory_type -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xb4dfa4fe vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x2c6fb4ca vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x4cd20cbe vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x6fd7393f vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x93fbf08a vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xd87c3452 vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xfc208ff1 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0x0a3dbf46 vb2_querybuf -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0289a9e5 __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x03ae3924 v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0be02861 v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x12c9a7cc v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x13ea4550 v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x148c2f0a video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1593add5 v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x15e158c7 video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x18fb71e7 v4l2_subdev_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x23d60fa5 video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x27830b14 v4l2_subdev_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2ad556e7 v4l2_clk_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2c419d53 v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2e60e1dc v4l2_clk_unregister_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x317f703f __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x34099588 v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36a7fece video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x417716dc v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x47d32bd8 v4l2_subdev_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x49533024 v4l2_clk_disable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x52862a28 v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x55d5f561 v4l2_clk_set_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5a2f15fb v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5ab12d81 v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5cb5f95b v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5f8de0a3 v4l2_clk_get_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x65250c55 v4l2_clk_enable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x652c1001 v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x66a5ae0e v4l2_clk_get -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x69fae46a v4l2_subdev_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x71c9dd7d v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x73110425 v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7f3bdbaa v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x85efac8d v4l2_clk_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8c278864 v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8c604a5b v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8e2f6892 v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9b2609d4 v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9b98130d v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa29b1fe5 v4l2_ctrl_add_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xab77365c v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaca8c10c v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb1e91701 v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb2bff2ea v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb3ae6eec v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb6201aed v4l2_subdev_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb6ec7521 __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb98e8b84 __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbd80a23d v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc10f816a v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc2adc8a9 v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcbfbe69f v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcca506fc __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd29c96c1 v4l2_subdev_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd77aac1e v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xda626419 v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdd3024c0 video_usercopy -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe28352c3 v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe722713c video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe8eb4723 v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe962124a v4l2_subdev_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe9c5f440 __v4l2_clk_register_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xece5b81b v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf0185b7c v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf523ebbd v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf86cc239 v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfcad1579 video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xff32a4f9 v4l2_clk_put -EXPORT_SYMBOL drivers/memstick/core/memstick 0x03641862 memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x401f0965 memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x447d593f memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x55cabdbe memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x76bf8d6e memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0x7e8d1afc memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0x882f31a6 memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x892db96a memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xa5987a36 memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xace61a8b memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xd10a13d2 memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xf11154c2 memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xf5a2af16 memstick_remove_host -EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1469722b mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1aa04c24 mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1dc5c404 mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1ea43c97 mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x260a02b4 mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x28a57cf5 mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2bd7538d mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2db4ae7f mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2f8d1668 mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x321f3ed6 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3cf9469e mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3f1515ce mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x44229b36 mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4d5dbea9 mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x526312b2 mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6c9232bb mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x70ca8ef1 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x84a222b7 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x950a52de mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbee682ee mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcaf4b251 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcbf0c08e mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd184432b mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdf6a8c02 mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe015be3f mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe723f1cc mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe9075395 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf02419d8 mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf6ca3e82 mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x02fb0fad mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0603f347 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0d63f3da mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x270e4f33 mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2de0f7ea mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x33f9bbf1 mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3b75fe24 mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3c97a247 mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x48764a62 mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x509fa0d5 mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5341a01c mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5cf3707f mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5d77ca8a mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5db74bff mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x73cb7b73 mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x774db210 mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x79281d6a mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x792eea5e mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7e618e6e mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb7a2af8a mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbb32178a mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc24cc5ab mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc3efe298 mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe57ffe1b mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf54b3176 mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf82cc115 mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfd32e924 mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/mfd/cros_ec 0x11fab0e6 cros_ec_register -EXPORT_SYMBOL drivers/mfd/cros_ec 0x4f8553df cros_ec_suspend -EXPORT_SYMBOL drivers/mfd/cros_ec 0x5c8af493 cros_ec_resume -EXPORT_SYMBOL drivers/mfd/cros_ec 0xe16116af cros_ec_remove -EXPORT_SYMBOL drivers/mfd/dln2 0x945a5c82 dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0x97250c92 dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0xe396d19c dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x150ff376 pasic3_write_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xc8f31ea6 pasic3_read_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0168ebe5 mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x139a97bc mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x258d2918 mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x424bfe3e mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4777afc3 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x585dcb21 mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6afbc15a mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb03ddff3 mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe948641b mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf65a9f51 mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf6f40216 mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 -EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 -EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib -EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led -EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw -EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x0dcbc383 wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0xdbb0297f wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x255f3106 wm1811_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x880788b2 wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xba3d332b wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xd22265e6 wm8994_base_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x279c407f ad_dpot_remove -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x63501826 ad_dpot_probe -EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x075983d1 altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x5def65ff c2port_device_register -EXPORT_SYMBOL drivers/misc/c2port/core 0xa00b195d c2port_device_unregister -EXPORT_SYMBOL drivers/misc/ioc4 0x417bfa21 ioc4_unregister_submodule -EXPORT_SYMBOL drivers/misc/ioc4 0x66b55ef8 ioc4_register_submodule -EXPORT_SYMBOL drivers/misc/mei/mei 0x0b3c2389 __tracepoint_mei_reg_write -EXPORT_SYMBOL drivers/misc/mei/mei 0xafdfce69 __tracepoint_mei_reg_read -EXPORT_SYMBOL drivers/misc/tifm_core 0x07e30dd9 tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x2d040836 tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x2efacfde tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x38781904 tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x4d580dd5 tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x5b8e0003 tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x6c901170 tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x85510bae tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0x8c735c03 tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xc8682355 tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xe09de813 tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xe7bee087 tifm_has_ms_pif -EXPORT_SYMBOL drivers/mmc/card/mmc_block 0xffa3b18b mmc_cleanup_queue -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x0dd20cbd cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x74ce6466 cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x8a3eba66 cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x8e9d32b2 cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x9f854ed0 cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xa18259a5 cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xed952062 cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x05538aad register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x6258f6aa map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x7ff45a61 unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xd11b1ba4 do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xbe3ba576 mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x90ae7833 lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x6603e300 simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0x67d3f8eb mtd_concat_create -EXPORT_SYMBOL drivers/mtd/mtd 0xab4ad2ac mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/nand/denali 0x252e9eeb denali_init -EXPORT_SYMBOL drivers/mtd/nand/denali 0x9ebcaaba denali_remove -EXPORT_SYMBOL drivers/mtd/nand/nand 0x00a167eb nand_lock -EXPORT_SYMBOL drivers/mtd/nand/nand 0x1740cd96 nand_unlock -EXPORT_SYMBOL drivers/mtd/nand/nand 0x1ad008bd nand_scan_bbt -EXPORT_SYMBOL drivers/mtd/nand/nand 0x345da4bd nand_scan_tail -EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/nand 0xa48a4ff2 nand_scan -EXPORT_SYMBOL drivers/mtd/nand/nand 0xd622bd4b nand_scan_ident -EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x1e44ae58 nand_bch_init -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xb6fb6f54 nand_bch_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xbd331f1b nand_bch_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x76ee057e nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x9b2d3a13 nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x8cfcf75c nand_flash_ids -EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x4d14c3ed onenand_default_bbt -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x83001f21 flexonenand_region -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xdb0ec662 onenand_addr -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xe90af0a1 onenand_scan_bbt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x272d9104 arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x462d4985 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x87c8632d arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x956569a8 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xcfb15491 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xde6a8dcf alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xdedea656 arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe45d60f1 arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe8c25c46 arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xec367e26 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x2008743a com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x6426b895 com20020_netdev_ops -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x97ae3ecb com20020_check -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0ccce7c1 ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1cc7cb2a ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x397d6ff2 ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3cea198b __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4ae17d77 NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5641c09e ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x92767993 ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x95be806f ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa731f127 ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb81a7b27 ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x2f0c973e eip_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x3fa47598 eip_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x5fe6d4ae NS8390p_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x8e10a390 eip_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x99c03fd7 eip_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x9becd8a9 eip_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xb9194192 __alloc_eip_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xd9b8a77e eip_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xe0ecad0f eip_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xf0ff38c0 eip_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xfb5cdb30 eip_get_stats -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0x4bcd74e9 bnx2x_schedule_sp_rtnl -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xfa502a7c cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x238253ca dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x26b5cccf t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2bdffe15 cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2e9e63e1 cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x30067fd3 cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x41be18d2 cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x54ac4b0b t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8d30cab6 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8d4513eb t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x91dedc92 cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x92151edf t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc010dfbf cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc31f44fc cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdaa456e5 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xee17e710 cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf0a4d3ec cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x04c54c74 cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0de06336 cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x12028eac cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2f8c5a65 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x31cf2637 cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3273364c cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x35d51ca9 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x44d423ad cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x480fb3fe t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x51c14346 cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x57707dfc cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5d726e04 cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5dbd4f03 cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x640ce286 cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x64bcf56d cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x76b28c73 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7a437215 cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7f080482 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x941a78f2 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9567c608 cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x95aa2b30 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9696ea39 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x97948fa7 cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa486717d cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa4e4ccc0 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xab6618b8 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaed9933b cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb3d9ace8 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc5713da1 cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd8f8cbae cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdfd1449d cxgb4_dcb_enabled -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xedad6185 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfd4ad463 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfe333f6e cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x1511cbc8 vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x2b8a9c87 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa05d263f vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xcc0cc4d5 vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd5efad2a vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf93c3cc9 vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4e806ed6 be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x6660fc9b be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a18ba98 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d5b3f89 mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19399f5e mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24a1550e mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x317d5efd mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3727eded mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3dd4548e mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4065b145 mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46a604e6 mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5817e98f mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b50ec11 mlx4_test_interrupts -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c955429 mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61385a93 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6631914e mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e58ad7f mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e215a45 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82b1f677 mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x872e4840 mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ea128f5 mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa20f9779 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa39158e8 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7acb01b mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaaf2c51f get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2d9f1d7 mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb9d5fc7 mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc15eff9 mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4742f8c mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9280ba6 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcad8fa7c mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd38cbb65 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6238119 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6828282 set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xead5c648 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1633a3c mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf314d81d mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7455172 mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9bc661c mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfdede2bb mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01a1b1ea mlx5_register_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0857aabd mlx5_get_flow_table_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08f9224c mlx5_cmd_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c7d67b2 mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d16a6bf mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb7287e mlx5_del_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a785490 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f5a1728 mlx5_core_query_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27fac42d mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3be1c134 mlx5_unregister_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40a328f9 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43d5b647 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x459f8759 mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47388e94 mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54817a74 mlx5_core_arm_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x562f9ea4 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x595fbe7e mlx5_core_dump_fill_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5cb85942 mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64fb7a66 mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x722d9a87 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95801499 mlx5_cmd_comp_handler -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95a8e4cb mlx5_query_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x976e5665 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ab60b11 mlx5_core_destroy_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7e7eace mlx5_core_get_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb83a2dbb mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb33c66d mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc08e4f4f mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9224167 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xccdcd40b mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd17b723 mlx5_unmap_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7abc20d mlx5_core_create_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb7fea5c mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc5fa132 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde41b53f mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf17628e mlx5_cmd_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6af33e4 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe84a81ec mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea2874ee mlx5_modify_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf08c12eb mlx5_alloc_map_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc728a49 mlx5_add_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfef6f5b2 mlx5_get_protocol_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x091cb017 mlxsw_core_rx_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x414d0eec mlxsw_core_skb_receive -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5242fab5 mlxsw_core_skb_transmit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbb5a516f mlxsw_core_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcb5c8545 mlxsw_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd8c92fdd mlxsw_core_bus_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe174e383 mlxsw_core_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe51905e3 mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee8e0771 mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x8b84dcfb qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa209d1af qed_get_protocol_version -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x32e90576 hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x3c231bdc hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x47a36062 hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xc03f77f8 hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xf58be185 hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x35929195 sirdev_set_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x4643364a sirdev_put_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x49ab5954 sirdev_set_dtr_rts -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x50b659f3 sirdev_receive -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x5b446d26 irda_unregister_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x7df174c5 sirdev_raw_write -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xbdaedcd4 sirdev_get_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xc06ea017 sirdev_write_complete -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xcac7077c irda_register_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xf94f4240 sirdev_raw_read -EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl -EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart -EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag -EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe -EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok -EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage -EXPORT_SYMBOL drivers/net/mii 0x004a2509 mii_link_ok -EXPORT_SYMBOL drivers/net/mii 0x1bb30e83 mii_ethtool_gset -EXPORT_SYMBOL drivers/net/mii 0x1e035a87 mii_nway_restart -EXPORT_SYMBOL drivers/net/mii 0x306446c8 mii_check_gmii_support -EXPORT_SYMBOL drivers/net/mii 0xac6ddf06 generic_mii_ioctl -EXPORT_SYMBOL drivers/net/mii 0xc2f7c4d2 mii_check_media -EXPORT_SYMBOL drivers/net/mii 0xc9779f7e mii_check_link -EXPORT_SYMBOL drivers/net/mii 0xfa1ded02 mii_ethtool_sset -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x0cb7ee5f alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xace07beb free_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x2a983aba xgene_mdio_rgmii_write -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x62d07902 xgene_enet_phy_register -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x8fec6563 xgene_mdio_rgmii_read -EXPORT_SYMBOL drivers/net/phy/vitesse 0x62939719 vsc824x_add_skew -EXPORT_SYMBOL drivers/net/ppp/pppox 0xcf952bab pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0xdd499cd3 pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xf323b25d register_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0x4e1cfd52 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x61accbf3 team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0x664ddecf team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0x667bc146 team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0xabe37279 team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0xad169872 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0xae217817 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0xe1085909 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0xe5c81de1 team_mode_unregister -EXPORT_SYMBOL drivers/net/usb/usbnet 0x335c4356 cdc_parse_cdc_header -EXPORT_SYMBOL drivers/net/usb/usbnet 0x6ca227f4 usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0x6d2dafa4 usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0xa8647345 usbnet_manage_power -EXPORT_SYMBOL drivers/net/wan/hdlc 0x2f6a666f hdlc_change_mtu -EXPORT_SYMBOL drivers/net/wan/hdlc 0x30e60dd7 hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0x586e6451 hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0x6039e5dd hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0x70a8360d unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0x7a1ea7a1 register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x809a2c7e unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x9ae1d59c hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0xa6178567 alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0xaa215455 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xfa0961cc attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/z85230 0x0db6458b z8530_nop -EXPORT_SYMBOL drivers/net/wan/z85230 0x10c78988 z8530_dead_port -EXPORT_SYMBOL drivers/net/wan/z85230 0x1c6cf916 z8530_sync_txdma_open -EXPORT_SYMBOL drivers/net/wan/z85230 0x200a7b42 z8530_sync_dma_open -EXPORT_SYMBOL drivers/net/wan/z85230 0x350df6cb z8530_describe -EXPORT_SYMBOL drivers/net/wan/z85230 0x5cd24d29 z8530_hdlc_kilostream -EXPORT_SYMBOL drivers/net/wan/z85230 0x733b13e7 z8530_shutdown -EXPORT_SYMBOL drivers/net/wan/z85230 0x98b4b289 z8530_channel_load -EXPORT_SYMBOL drivers/net/wan/z85230 0x9c513bb2 z8530_init -EXPORT_SYMBOL drivers/net/wan/z85230 0xa858d6bf z8530_null_rx -EXPORT_SYMBOL drivers/net/wan/z85230 0xb3e5ea64 z8530_sync -EXPORT_SYMBOL drivers/net/wan/z85230 0xbb08ac9d z8530_sync_open -EXPORT_SYMBOL drivers/net/wan/z85230 0xbc8314a2 z8530_sync_txdma_close -EXPORT_SYMBOL drivers/net/wan/z85230 0xc64e2a5f z8530_sync_close -EXPORT_SYMBOL drivers/net/wan/z85230 0xd0b9e7cd z8530_sync_dma_close -EXPORT_SYMBOL drivers/net/wan/z85230 0xd4ffebf0 z8530_interrupt -EXPORT_SYMBOL drivers/net/wan/z85230 0xe3d80064 z8530_hdlc_kilostream_85230 -EXPORT_SYMBOL drivers/net/wan/z85230 0xe8693c13 z8530_queue_xmit -EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0xf0e736c1 i2400m_unknown_barker -EXPORT_SYMBOL drivers/net/wireless/airo 0x39ab1980 reset_airo_card -EXPORT_SYMBOL drivers/net/wireless/airo 0x7dab125f init_airo_card -EXPORT_SYMBOL drivers/net/wireless/airo 0x9c7775f9 stop_airo_card -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x04371341 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1901b8da dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x32668a80 ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x44481435 ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x47029a2a ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5d0ee9ee ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9296a670 ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa8af7106 ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xac3f33ad ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaf9e5dd8 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd480142c ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf86cdfb9 ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x118071ff ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1307f179 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x31af9b94 ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x48734678 ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4cb023a1 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x716c41c2 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x852d1cad ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x899718bc ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x95def7f7 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc4534042 ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc856a72e ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcd02cb06 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcf9c50b8 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe8c28b06 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe8f17ff2 ath10k_debug_get_new_fw_crash_data -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x137b55e8 ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x32ca2a4a ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5e1d5680 ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x63ffd173 ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6c796f7f ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8eb33a70 ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x9ab6b033 ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa2cae2cf ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa2d92f00 ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc2a6847d ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd033f99e ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x01262290 ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x07c68e63 ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x14608df5 ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1aa02000 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x24714a8c ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2828c821 ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3338c6e2 ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3eae8d3a ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x41f5baca ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x43808141 ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x44acae96 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x54c2169a ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5a620b7b ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9a818189 ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbb0e3f3e ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbd9add06 ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc2079dbc ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcac62d4b ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd15b2f70 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe52ca095 ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xecb97191 ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf40817f3 ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf68a3440 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0173a3f6 ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x034a685b ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x039db0c3 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05503d16 ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08de1472 ath9k_hw_cfg_gpio_input -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ccd2cae ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0daeafd7 ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f7569b2 ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0fcb1d3a ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1415062d ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x150899bf ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x15560c39 ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16057034 ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17ebc7ed ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1848e281 ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1e413574 ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27f9b4d4 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b3657bd ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2dd387f7 ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f66b3bf ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x327eed30 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x33319826 ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x397280ec ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e0f3521 ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3fa0b837 ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4682dd9f ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46db1a99 ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4903cb9c ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4a6c3f96 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c2209cd ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ecdd416 ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x531ac4cf ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x56311cec ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x572a91d3 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5745ce4e ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x576e77ea ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5817efba ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x590affba ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x598c5098 ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5fcd2dd5 ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x60514bac ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61a52054 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x64b68232 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6592aada ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6744ecc6 ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x69994765 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x69eb81c8 ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ee89bd2 ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x703dd4e4 ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7274f8d5 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x72f5cabd ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x779e3f1a ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7842e3b9 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d952983 ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7dbcddef ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x813ca78c ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x86918f5d ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x870638df ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x895b4b46 ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x910f95a9 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92667a56 ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x986cf64f ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x99b7dbbc ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x99e3802e ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9c15e859 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa17a99ed ath9k_hw_cfg_output -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa79d581a ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaac871d1 ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xacd618a7 ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad89a645 ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1ef10bf ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1fb49d1 ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb521c35d ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb807c181 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbb09434e ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbbb71e4b ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc2bf001 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbedf4fb9 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc2a9de77 ath9k_hw_request_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc392ad61 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc54b5130 ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc6de7b3b ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc7572f22 ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc92c592e ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc0ae949 ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xce5279b8 ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xceac363e ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd25ee596 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd38cc314 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd42a23f7 ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd732361b ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd744c38c ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd760364a ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9885951 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd518538 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf321aa0 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe323c0e7 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe39dcfd1 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe3dd4908 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe4c81214 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe67d9ad3 ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe8d38077 ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe8eb00d5 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee91b026 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe3c8ba8 ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/atmel 0x2670a355 atmel_open -EXPORT_SYMBOL drivers/net/wireless/atmel 0x69efd786 stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel 0x8a176b64 init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x11c1b29f brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x2419ba87 brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x52eae9f5 brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x55b7f708 brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x5daaa694 brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x7397d11b brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x93fbb8c8 brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xa029fd7e brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xa218e0b6 brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xc25bcf9e brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd6198511 brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xe9863c8b brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xfc83fc95 brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x045784d9 hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x18d5278a hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1fd03159 hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x24c88e75 hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2b244650 hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3099016a hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3d10c036 hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4db6f4af hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4df13dc7 hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x550c2b34 hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5517ada7 hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x577b5121 hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5b150b9f hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5b5179f1 hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x77ecdd6b hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7cba94e7 hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7d030e53 hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7e904aa0 hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x87890dbb hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8d238b41 hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa3c22dd1 hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa613f26a hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa9197958 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd695b030 hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf4dc189f hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0f181988 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x16efee27 libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x1e0739f5 libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2150974d libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x351239c5 libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x537a451e libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7003e83e libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x719f477e libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7f740e37 libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x84388dd7 libipw_change_mtu -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x8d8eda25 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x93d51c70 libipw_rx -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xac42257c free_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb633e592 libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb6f50bb5 libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xbf63cecc libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc1c2df11 libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xca7d49e5 libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd708a5a7 libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xeb2f4e90 libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xff528f5e alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x020fc32e il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x084b01e6 il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x08ad8da9 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0f22ba87 il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x12dfd68b il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x16e1362e il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x17c071e5 il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x18942d7e il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x194c7e1d il_free_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1b937f41 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1c2d7880 il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1d693891 il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1e73eb94 il_apm_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x23966cab il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2479928d il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2d2b5013 il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x31441c2a il_leds_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x35935d71 il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x363c0ad3 il_set_rate -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3b14bc4b il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3e458fd9 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x452e20e2 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x474c5845 il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4877584c il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4e937b64 il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x527a98b3 il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x540cb39a il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x563cb331 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5cced903 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x63910336 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x653a8e83 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x67c6cf48 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6e8a6bc7 il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6f2ae0d5 il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6fe6b057 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x72685f9a il_set_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x72b0231e il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x78e73d9c il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7a5a1540 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7b8417e0 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7bdf8662 il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7d806ef4 il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7fe416c2 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x805387ee il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x81620534 il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x81cdec48 il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x88c80eac il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8979c1bb il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8bcf8e33 il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8bee532a il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8cef4fa6 il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8da22a91 il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8f91d45b il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x90ead841 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x938630ee il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x95378d49 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x96c95509 il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9a0cfe94 il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9aa78c66 il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9ba0870b il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9fb7a488 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa0883b50 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa10a7a70 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa1d9d48d il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa22c6c5c il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa2d9f8bb il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa352fb14 il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa63f4de6 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa76787fe il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa83fef08 il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xaa13c8f4 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb0b42f9d il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb0bd2271 il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb5f4e5a7 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbc01a245 il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc282ef0f _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc452d7f4 il_init_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc5d0e775 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc6b23db6 il_force_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc718ee1e il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc7d1fa7b il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc9f5eae9 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcd250313 il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcff74738 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd26bf480 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd9ba6a8f il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xde9e8bf4 il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdf93a628 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdffb8c07 il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe0615da8 il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe2244327 il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe67f421e il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe98b4eea il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf0e51997 il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf280d8b3 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf41b07c6 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfadd7edb il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfeabce28 il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x08c6664d __tracepoint_iwlwifi_dev_iowrite8 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x4379786d __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x95a8ab3c __tracepoint_iwlwifi_dev_iowrite32 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xa2b6ec39 __tracepoint_iwlwifi_dev_ucode_error -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xb69add1f __tracepoint_iwlwifi_dev_ioread32 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xcd60e86e __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xd4f50457 __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x02cf7fcf hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x04582b62 orinoco_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x17379490 orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x4f351ebd orinoco_down -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5f0d3814 orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x6680bfdb orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x773746fa free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x7d892769 alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x8dc587f2 orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xbf32f724 orinoco_get_stats -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc012bed6 orinoco_up -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc82de86f orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xded8d20f __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe125bb04 orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe798ccd6 orinoco_open -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xec6b8bc1 orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xfede2283 __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xec00264e rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x04770d67 rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1078372a rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x12d14661 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x15168704 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2adc9c37 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2c56617c rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x36df0017 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x38f0704c rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3a9ced14 rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x40ced371 rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x486531d7 _rtl92c_store_pwrIndex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x48d747ac rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x52bb6aed rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5364b9ce _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6e2c86c0 _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x70091fb3 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x709c573d rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x756bf30a rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x761d6564 _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7c8b35ca rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7dc311d2 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa25b11b4 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xacabc924 rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb7d541fa rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb9b4f91f rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbcabac2e rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc6073ee5 _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc719da16 rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xca3797ff _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd51cadbf _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd84cbf42 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xda013a80 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdb765670 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeaf1577e rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeceef122 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf7575242 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf84778bc rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf8a8fbe6 _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfb71609f rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfc0b3257 rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfd32cfff rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x1c61d288 rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x6e805e3c rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xda5eff0b rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xfe5b7831 rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x0a8d5681 rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x0f1ba408 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x55bd19db rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xd5b40c7e rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d3d8d35 rtl_ps_set_rf_state -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1be189b8 rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x249f1913 rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x28dae495 rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2b5c60ed rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x35a38b20 rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x405d0beb efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x453b2f6d rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4a8ce2d6 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4cbdbf76 rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5093a7f2 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x592faf2a rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x62bf210d rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x846251cf efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8a07e6e7 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8c9d981c rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x909ca9bc rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa0c9b638 rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa9add47d rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb0506d80 rtl_wowlan_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbe0c3ba1 rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xca1fc38b rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xced72473 rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd660e7a9 rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdc371ada rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe51b7340 rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe76c5c4e rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf268283b rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x0de555e9 wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x4cb49b06 wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xc594bf8e wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xd22e9348 wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x6438ca8a fdp_nci_recv_frame -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xc6ba1a8a fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xc8d37f25 fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0x9ff7e30b microread_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0xc55e222a microread_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x4cd7450e nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x9c70b6e8 nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x9fe87b3c nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x3b92a6c2 pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xac791c58 pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x20502afe s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x7e4ac920 s3fwrn5_recv_frame -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xb6dd890a s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x05966fde ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x29adce69 ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x53ce473c ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x70b667dc ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x841c1fc2 ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x87b7b95a st_nci_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8a16e070 st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x98b12cd8 st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xeaa5413b st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfa223d6c st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfc77f76b ndlc_send -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0d53c5ca st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1f7b7081 st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3576a0bd st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4777eb47 st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5028921b st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5f97c700 st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x76fad1d4 st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8d867eca st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb355d669 st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbcb14097 st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc540408c st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe9585bee st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xee5e4796 st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xeedbc8ee st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf068424b st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf293ceb8 st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf5d4c93b st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf8a06cd9 st21nfca_hci_remove -EXPORT_SYMBOL drivers/ntb/ntb 0x4c83055a ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0x6a0ce429 __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0x7f1b480e ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0x9b9ca226 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0xa36ab724 ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xb2631d8c ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xe796f816 ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0xf76e23ae ntb_unregister_client -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x00fe529f nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x417b76ce nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x38a8da9d devm_nvmem_cell_put -EXPORT_SYMBOL drivers/parport/parport 0x055dfba3 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x15119d76 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0x1f508533 parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0x25c50776 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x2af5106c parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0x3362987b parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0x35f2eeba parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0x362727e5 parport_claim -EXPORT_SYMBOL drivers/parport/parport 0x4048ada6 parport_write -EXPORT_SYMBOL drivers/parport/parport 0x434f5dbd parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x540ab5c1 parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x5d2cb5d2 parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x679dcf5b parport_register_device -EXPORT_SYMBOL drivers/parport/parport 0x6852d41b parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0x6c08192e parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0x74924914 parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x7b392d6c parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0x8dbf36e4 parport_release -EXPORT_SYMBOL drivers/parport/parport 0x99370d33 __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0x994e8930 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0x9f24eb58 parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xa322e99f parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xacc7638e parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0xb48f1eac parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0xb790dc5f parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0xbcb96cca parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0xc17f731b parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0xd1961dba parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0xd4cc5164 parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0xd6f7fc2b parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0xead40836 parport_read -EXPORT_SYMBOL drivers/parport/parport 0xf5f07a5f parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport_pc 0x1592a862 parport_pc_unregister_port -EXPORT_SYMBOL drivers/parport/parport_pc 0x61812e90 parport_pc_probe_port -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0321d73c pcmcia_get_mac_from_cis -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x231a8364 pcmcia_enable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2797b500 pcmcia_request_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x367f577f pcmcia_fixup_vpp -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x45a26745 pcmcia_request_io -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x49927e25 pcmcia_unregister_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4e7500a0 pcmcia_release_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5b787869 pcmcia_read_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5c6e7436 pcmcia_fixup_iowidth -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6e48995b pcmcia_disable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x74e7ee15 pcmcia_request_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x95fa5f70 pcmcia_map_mem_page -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x99a6ef8e pcmcia_loop_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9fe03dd8 pcmcia_dev_present -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xaf505548 pcmcia_register_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb5ceb42d pcmcia_write_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd517f45c __pcmcia_request_exclusive_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdfa6c3fd pcmcia_get_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf5f7ba0d pcmcia_loop_config -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x062448e5 pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x32b2dae6 pcmcia_parse_events -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x603c6ea1 pccard_register_pcmcia -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa191140b pcmcia_unregister_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa30afe75 pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xafd001c2 pcmcia_reset_card -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb580c541 pcmcia_socket_class -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xbfa70620 pcmcia_socket_list_rwsem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xccb28a5f pcmcia_get_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd796db78 pcmcia_parse_uevents -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xfac02461 pcmcia_put_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x7e522e01 pccard_static_ops -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x9caaf56c pccard_nonstatic_ops -EXPORT_SYMBOL drivers/platform/x86/intel_ips 0xf97d7d0e i915_bpo_enabled -EXPORT_SYMBOL drivers/platform/x86/intel_punit_ipc 0x3a0b563a intel_punit_ipc_simple_command -EXPORT_SYMBOL drivers/platform/x86/sony-laptop 0x5bb1e117 sony_pic_camera_command -EXPORT_SYMBOL drivers/pps/pps_core 0x28f1a45d pps_unregister_source -EXPORT_SYMBOL drivers/pps/pps_core 0x48e3086d pps_event -EXPORT_SYMBOL drivers/pps/pps_core 0xa413bfa8 pps_register_source -EXPORT_SYMBOL drivers/pps/pps_core 0xaad2fbc2 pps_lookup_dev -EXPORT_SYMBOL drivers/ptp/ptp 0x6294541d ptp_find_pin -EXPORT_SYMBOL drivers/ptp/ptp 0x782ed2f8 ptp_clock_register -EXPORT_SYMBOL drivers/ptp/ptp 0xbbd86335 ptp_clock_index -EXPORT_SYMBOL drivers/ptp/ptp 0xef782383 ptp_clock_unregister -EXPORT_SYMBOL drivers/ptp/ptp 0xfa36dd0d ptp_clock_event -EXPORT_SYMBOL drivers/ptp/ptp_pch 0x11e0040a pch_set_station_address -EXPORT_SYMBOL drivers/ptp/ptp_pch 0x12f4e60f pch_ch_event_write -EXPORT_SYMBOL drivers/ptp/ptp_pch 0x1d9108e6 pch_src_uuid_hi_read -EXPORT_SYMBOL drivers/ptp/ptp_pch 0x2bb7a402 pch_ch_event_read -EXPORT_SYMBOL drivers/ptp/ptp_pch 0x433584fb pch_rx_snap_read -EXPORT_SYMBOL drivers/ptp/ptp_pch 0x732f45b1 pch_ch_control_write -EXPORT_SYMBOL drivers/ptp/ptp_pch 0x9f124ed3 pch_ch_control_read -EXPORT_SYMBOL drivers/ptp/ptp_pch 0xa15508cb pch_src_uuid_lo_read -EXPORT_SYMBOL drivers/ptp/ptp_pch 0xce696282 pch_tx_snap_read -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x0b78a2e4 rproc_get_by_phandle -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x10ff8804 rproc_vq_interrupt -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x368d72d5 rproc_add -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x4f5b3bc1 rproc_boot -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x84534752 rproc_da_to_va -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x8a625303 rproc_shutdown -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xb24c0c73 rproc_del -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xf266fc95 rproc_report_crash -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xf4e8e0ad rproc_put -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xff62dff7 rproc_alloc -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xfd02a01a ds1685_rtc_poweroff -EXPORT_SYMBOL drivers/scsi/53c700 0x3a8b79ae NCR_700_release -EXPORT_SYMBOL drivers/scsi/53c700 0x3d9cece0 NCR_700_intr -EXPORT_SYMBOL drivers/scsi/53c700 0xf86220ba NCR_700_detect -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x1fbae264 scsi_esp_template -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xa09b9b3d scsi_esp_register -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xc4b4ed4e scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xfa843056 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x209a2352 fcoe_ctlr_destroy_store -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x28adb1f9 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x30c007e5 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x41c670b1 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x489040f1 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9b71c859 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9e3b2b30 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa1fd83fd fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc370f906 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe703174a fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe968804e fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf512970f fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x07d275ae fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0ec59920 libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1f3f0b28 fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x299a1014 fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x31ac87f6 fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x35b7e98b fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36c1fd9b fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3b74a124 fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4170c52c fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x46bc18be fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x476214d1 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4e98b8f7 fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x502bdddd fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5213f2d6 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x542704f5 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5660d492 fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x59115ceb fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x61778253 fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6348d8ac fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69ae3313 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6aac9ed2 fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x70c0be43 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x717d5f72 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x71c18a0b fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x725fd050 fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x72ee5b4d fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x773842f3 fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x78e77d3e fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x85f9c084 fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8b4e1f24 fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8e9d3a43 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x958650a3 fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9bb5b84b fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9f2a877f fc_rport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa0b22001 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xae28e0af fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb051d8a3 _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb318db48 fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb410e232 fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc14cde76 fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc6114065 fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xca7023e9 fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd028b5b8 fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd107a0a9 fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd3f9a656 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd527a65b fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xedc185f6 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xee3c7c53 fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfb3dfea0 fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfd4f2865 fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x186f07e3 sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x5f9f1b39 sas_wait_eh -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x87175a5b sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xdc9ef726 sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x07c2542c mraid_mm_register_adp -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0514a5fe osd_req_add_get_attr_page -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x08ef93bf osd_req_decode_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0db82e5e osd_req_read_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0f6311da osd_dev_init -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x10cead9c osd_execute_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1eea88c6 osd_end_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2f11006c osd_req_read_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x38dcb55d osd_req_add_set_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x39038840 osd_dev_fini -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3af5448c osd_req_create_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x40132e3f osd_start_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x411c0ee6 osd_req_remove_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x43d323bc osd_req_format -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x47dc86c3 osd_execute_request_async -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4b057cea osd_req_read -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x53b44f4a osd_req_write_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5a9c13cd osd_req_get_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5c3f4257 osd_req_decode_sense_full -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6ac7e5a6 osd_req_create_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6f516b5c osd_req_remove_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x75394123 osd_req_flush_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7859b69b osd_req_list_partition_collections -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x81c49234 osd_auto_detect_ver -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9609b4b9 osd_req_set_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9a315c66 osd_req_flush_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa1f76fbb osd_req_list_dev_partitions -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xabccdc33 osd_req_read_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb148042f osd_req_write_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb638aec8 osd_req_write_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb76b8dc3 osd_req_list_partition_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb782ede5 osd_req_flush_collection -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd4aafc32 osd_req_add_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf10acee7 osd_req_flush_obsd -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf15313b9 osd_req_write -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf654dd0e osd_req_list_collection_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfcc85007 osd_finalize_request -EXPORT_SYMBOL drivers/scsi/osd/osd 0x08bab9f7 osduld_put_device -EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0x63d317b2 osduld_info_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0x6c3b8c2a osduld_device_same -EXPORT_SYMBOL drivers/scsi/osd/osd 0x9b68504d osduld_register_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0xdfa3cea7 osduld_path_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0xe6b6f1b2 osduld_device_info -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x21b34ed6 qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3afc6355 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x496c77df qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5fe977bf qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9ca67a53 qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9d25cd83 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xab558221 qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc83b8e8d qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcfbeba1b qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xdf2fd5ba qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xecd4f546 qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfa868c47 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x5acd4531 qlogicfas408_info -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x72b24417 qlogicfas408_disable_ints -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x9ddec888 qlogicfas408_biosparam -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xaa467d2f qlogicfas408_queuecommand -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xeb0f7e3b qlogicfas408_bus_reset -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xfdad4624 qlogicfas408_abort -EXPORT_SYMBOL drivers/scsi/raid_class 0x61638034 raid_class_release -EXPORT_SYMBOL drivers/scsi/raid_class 0x9a6756c1 raid_component_add -EXPORT_SYMBOL drivers/scsi/raid_class 0xa6727502 raid_class_attach -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x141a92aa fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x17059a66 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x364bed64 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x45a519b3 fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4874a8a8 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4d390fb2 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x678ac568 fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6834a1e2 fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa6496398 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb8767c04 scsi_is_fc_vport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcf7cc7ee fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd176e191 fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe3f82afb fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0019bc7c sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x09dcaf95 sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0af759dc sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0e819c55 sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x10ceb848 sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x22994ffd sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3b3fe566 sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x46662128 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x536cbebe sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5ba81865 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5e737866 scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x63087679 scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x70d8de1a sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7510f26a sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7cc12778 sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x864e15cd sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x928f6f2d sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa21c9719 sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa9b9c937 sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb4caf300 scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb813ac76 sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbafc28b1 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd4ab271e sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd8c5cd1d sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe2706a5d sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe91c6f89 sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xed9fefd7 sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf939ce4c sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x4b4bfaff spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x54b00ca7 spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x654c9d2b spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa107048e spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc7fe2e18 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x04795469 srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x0da7da47 srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x36c91403 srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x740e1b07 srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x548e2a8d ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x5b42f905 ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x6dfde548 ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x7a2be13b ufshcd_runtime_idle -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x7c234c55 ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x9fce5582 ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xb075bcf5 ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x40fb38d7 ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x4305d910 ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0x476177ae ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x4982296d ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x4db3b532 ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0x54638aab ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x5ddafdd1 ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0x5e164a65 ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0x6a593111 ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0x6c22e916 ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x6d8f39e2 ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0x758acd39 ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0x78983ca2 ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x85356885 ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0x8b0320c9 ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0xa4698a5f ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0xb3aeb589 ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0xb6f6a1a7 __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xe1069f3e ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0xedc387d8 ssb_bus_powerup -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x09355e00 fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x09a6b317 fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0d35bd55 fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2b470bc9 fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3501859d fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3be8da9c fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x417d1025 fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5f3edaa5 fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x62a16e89 fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x67775913 fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6bf606a6 fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6c146b3a fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x78bca15b fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7dc952c6 fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9b6c9eed fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb1742296 fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb4cbb38c fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb67ff3ef fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc36d1ef7 fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc5773177 fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd70fb1a8 fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe0abdc9e fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeae44c65 fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf516c0a7 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x2bfd1bdb fwtty_port_get -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x48c88df7 fwtty_port_put -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x0cf207f8 adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x175eea42 hmc5843_common_resume -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x68948cf2 hmc5843_common_remove -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x6a532fc8 hmc5843_common_suspend -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xe24e7de4 hmc5843_common_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x8fd3d23c ade7854_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xc719e356 ade7854_remove -EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0x08aa43ac cxd2099_attach -EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0xfd960217 most_deliver_netinfo -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0bee7e6e rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0daecd8b rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x10cceb92 RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1378afc5 rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x19399296 rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x28af89e9 alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x34ddd452 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x36ba2015 rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x37826da8 rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x39ebd749 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x39f1a6ba HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3d96fb9c rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4aa23798 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4d62ad9e rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4e0de229 rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x53c465d8 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5436ae4d rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5a08196a rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5c83b495 rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5df937e7 rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5f466ff5 rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x63b49894 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x68068ea5 rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6838e008 rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x68730dae rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x68e67f44 rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x734b9ada rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8435e853 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x84b26a56 dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8af9c9cd rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8f6f98e0 Dot11d_Channelmap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x91b4ddb2 rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9e416057 rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa3ba4a7d rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa531e782 rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb521e87d rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb6ced2a8 rtllib_wpa_supplicant_ioctl -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc22dde37 rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc3055a2d rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xca201c6a rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcf49ad8e rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd0ee524c rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd6e39c32 rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdc440b37 notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xded30073 rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe4ccdbb3 rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xedf299ad free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xef40a32f rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfc0f0304 rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfc83aba0 rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x02c63582 ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x041ee992 ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0431a67c IsLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0487e13e ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x11cca130 SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x121f59d3 ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1746adf3 ToLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1a6a1c13 ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1b515271 ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d992b12 ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1e3f328a ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x211a9861 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2395493f ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x250274fe ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3422e213 ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x36c7ac90 ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x38fac7f6 ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x42722cc6 DOT11D_ScanComplete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4392ccb9 ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x45f1722f Dot11d_Reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x46b33cd7 ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4d0b4b2f ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4e6010b7 ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x512350aa Dot11d_UpdateCountryIe -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x54535d6a ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x56b70a2b ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5a6e360c ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5f0fc0dc ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x62a0860c ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x63b6508e ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x68fd6ac6 ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6f9a5095 DOT11D_GetMaxTxPwrInDbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7296a816 ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7d2c1d2b ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x80f92994 ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x92080b65 Dot11d_Init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x95d23ffb ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9785cd1e ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9a22c2b9 HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa6b96f1f ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb7b56642 ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf4c2491 ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd12ead3e ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd2236c7f ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd46c80ce ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd741710d ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xda403fca ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdfb34d9e ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xec487c71 ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xee04b051 ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf58e2a1a ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf724d588 ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf90c31f6 ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf9b87b7f ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfb2c5782 ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x00b1a884 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x16de00a3 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x19abde9e iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x19eb2eb8 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1dba3a11 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2392be3b iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2a339bea iscsit_set_unsoliticed_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3292a6dc iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3e3a9879 iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4b461f6c iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4fb5b2c2 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5e0f3d1d iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6091f87d iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x717d5313 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x775ed1c0 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x869c58c0 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8c4f1f47 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x99e2807b iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9acf8841 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9ff6e531 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xae8f8548 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb2f6dbb9 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb5b4fcdb iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd96b7d1e iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdaa2cfc7 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xecdf034c iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfd6e82ba iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xff9227d8 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x03c99696 transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x069c2c02 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0x0720aa16 target_setup_cmd_from_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x095ee020 target_sess_cmd_list_set_waiting -EXPORT_SYMBOL drivers/target/target_core_mod 0x14001eb6 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0x153ef170 target_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x1d679105 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x253575c5 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x29e0099d core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x2ff87795 target_put_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x324ff9a0 transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x39357b9b transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x3bfda80e core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0x3fc10398 transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x40f7c619 transport_init_se_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x43bc0681 core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x4f6a7ff7 transport_init_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x501cabd2 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0x50c3184f transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x5529a6ce core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x5bf02e0a passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x60f35b62 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x63e0c216 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x65d384ab target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0x667751d6 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x66d3aa35 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x67507400 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x708b04f7 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x74f20ab4 sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0x75b31a62 transport_check_aborted_status -EXPORT_SYMBOL drivers/target/target_core_mod 0x7755bd32 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x794189ee transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x79985df3 target_submit_cmd_map_sgls -EXPORT_SYMBOL drivers/target/target_core_mod 0x79b40fad target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x7d75891e transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x828e8248 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x83d1c434 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x855f6063 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x866d8b55 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x8b211e18 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x8ce9bcf8 target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x8ed3625c target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x9182bf77 target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x990984a7 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x996fd53a __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xa4499624 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xa72698fe transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xa74a58dc target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0xad2c4420 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0xaeb88071 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xb1689bb0 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0xb16fde49 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0xb4cf170a transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xb642a104 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0xb7535b6c core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xb758d297 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0xc1180f78 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xc25f583c target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xcf7d30c8 transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0xcf9278bf transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xd113492b target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xd4e407a0 core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0xd74a72e3 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xdccff108 target_get_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xdd0f631b transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf0234ff1 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xf15ea67c transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xf341a718 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xfb8369c0 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x1887763e acpi_thermal_rel_misc_device_add -EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x5007fc2c acpi_parse_art -EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x86c998e6 acpi_thermal_rel_misc_device_remove -EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0xdf707fab acpi_parse_trt -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x1c6fa6c2 usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x2ca3063f usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xbf1d5d83 sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x078825ba usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x28436ac0 usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x44280287 usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x637120dd usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x889b16e4 usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9d34e527 usb_wwan_ioctl -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xafd0b96b usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb1c8e8c8 usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc2828763 usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc56fe119 usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc8eea2c8 usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd7353a97 usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x56a7a6fb usb_serial_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xc66c00c6 usb_serial_resume -EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user -EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x2e91ca97 vringh_iov_pull_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x367ce26a vringh_iov_push_user -EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user -EXPORT_SYMBOL drivers/vhost/vringh 0x59f824d9 vringh_getdesc_user -EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x7bda5e6d vringh_iov_push_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x821e9390 vringh_iov_pull_user -EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user -EXPORT_SYMBOL drivers/vhost/vringh 0x937e412c vringh_getdesc_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user -EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user -EXPORT_SYMBOL drivers/video/backlight/lcd 0x00917509 devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x22d372c8 devm_lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xa04c7788 lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xd5dbf23f lcd_device_register -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x20b27cc5 svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x28fbd77b svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x34eb07de svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x3fb4d0f9 svga_tilecopy -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xaddd81a6 svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf3093b05 svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xfa3fcd22 svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x2b31c93b sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x4ecdb230 sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x2d8a74a4 sys_imageblit -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x6897a1a1 cyber2000fb_attach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xec78800f mac_find_mode -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x94317412 matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x9eae2e81 g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xb641ddd7 matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x0f1be959 matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x1258626e DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x448d2544 matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x4537a4ac DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xe1739d9b matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x5dab52a0 matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x146f07a2 matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x9069adc0 matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xb0c10329 matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xdf969a95 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x748b8590 matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x8a19cd61 matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x0547f9a8 matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x17553285 matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x64669cb9 matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x90daaaa0 matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xba92dcb9 matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x38101151 mb862xxfb_init_accel -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free -EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga -EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x6028f22d w1_ds2760_write -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x6331920f w1_ds2760_store_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xe0734b84 w1_ds2760_recall_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xe48ad25b w1_ds2760_read -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x2c9bff10 w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x60fdbf9b w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x4038bdcc w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xa45e3a68 w1_ds2781_io -EXPORT_SYMBOL drivers/w1/wire 0x12ea13aa w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0x3b48f623 w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0x4254e86d w1_add_master_device -EXPORT_SYMBOL drivers/w1/wire 0x6862601f w1_register_family -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x04e133fc iTCO_vendor_check_noreboot_on -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xa78bd894 iTCO_vendor_pre_set_heartbeat -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xb5f20875 iTCO_vendor_pre_keepalive -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xc4f657bf iTCO_vendor_pre_stop -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xdc6effc9 iTCO_vendor_pre_start -EXPORT_SYMBOL fs/configfs/configfs 0x0dc2d7b3 configfs_depend_item -EXPORT_SYMBOL fs/configfs/configfs 0x0ea6978f config_group_init -EXPORT_SYMBOL fs/configfs/configfs 0x1e9649e6 configfs_register_default_group -EXPORT_SYMBOL fs/configfs/configfs 0x376b0680 configfs_unregister_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0x55aea2c3 configfs_unregister_group -EXPORT_SYMBOL fs/configfs/configfs 0x61580ac5 config_group_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0x63fb31c8 config_group_find_item -EXPORT_SYMBOL fs/configfs/configfs 0x6f15a494 configfs_unregister_default_group -EXPORT_SYMBOL fs/configfs/configfs 0x8b016b91 configfs_undepend_item -EXPORT_SYMBOL fs/configfs/configfs 0x8c85e46a configfs_register_group -EXPORT_SYMBOL fs/configfs/configfs 0x9399309b config_item_put -EXPORT_SYMBOL fs/configfs/configfs 0xcd70269a config_item_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0xd47047b0 config_item_set_name -EXPORT_SYMBOL fs/configfs/configfs 0xd9f2c959 configfs_register_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0xe5486ca4 config_item_get -EXPORT_SYMBOL fs/exofs/libore 0x15c85c2e ore_read -EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout -EXPORT_SYMBOL fs/exofs/libore 0x35e6f488 extract_attr_from_ios -EXPORT_SYMBOL fs/exofs/libore 0x43f2b617 ore_remove -EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info -EXPORT_SYMBOL fs/exofs/libore 0x5bf8f8f6 ore_create -EXPORT_SYMBOL fs/exofs/libore 0x8592f83a ore_write -EXPORT_SYMBOL fs/exofs/libore 0x87a69924 ore_check_io -EXPORT_SYMBOL fs/exofs/libore 0x96b35f68 ore_truncate -EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length -EXPORT_SYMBOL fs/exofs/libore 0xa8443efe ore_put_io_state -EXPORT_SYMBOL fs/exofs/libore 0xc4f35bdf ore_get_rw_state -EXPORT_SYMBOL fs/exofs/libore 0xd01a8d51 ore_get_io_state -EXPORT_SYMBOL fs/fscache/fscache 0x03bab713 __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x0b96448a fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0x17b6b79e fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0x1e098798 fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0x1f09084c __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x25a0c9b0 fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0x26ed7f32 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0x2918924d __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0x3dc70284 __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x3ff8a0a8 __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x40b3c64f __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x4ae695b3 fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0x4e4e87a3 fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0x5f096f32 fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0x6583543e __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x666a758e fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0x679100db __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x69c7d618 __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x7cf6b759 __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0x85cf0b5c __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0x8760c3e6 __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x8bf33328 fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0x9bdf323e fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0x9d1fd0fb fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0xab553e32 fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0xb2f0e70e __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xb472544b fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0xbfae47ae fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0xc26c09c3 fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0xc54aee72 __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xd1b73c59 __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0xd4a741c1 fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0xd955660b __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xda1589e6 fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0xdb58a895 __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0xe5ebc1ec __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0xef6f3531 __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0xf52b33c8 __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xf71e60d9 __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0xfa27718f fscache_add_cache -EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x29b34d11 qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0x38b3e8e7 qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x53f160e1 qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x7b684d8b qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x981e2eb1 qtree_delete_dquot -EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq -EXPORT_SYMBOL lib/crc-ccitt 0x3771b461 crc_ccitt -EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table -EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table -EXPORT_SYMBOL lib/crc-itu-t 0xf5b4a948 crc_itu_t -EXPORT_SYMBOL lib/crc7 0x66213969 crc7_be -EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table -EXPORT_SYMBOL lib/crc8 0x41248eaf crc8 -EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb -EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb -EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c -EXPORT_SYMBOL lib/lru_cache 0x03f599c7 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0x4feade4b lc_create -EXPORT_SYMBOL lib/lru_cache 0x56fc3ea0 lc_put -EXPORT_SYMBOL lib/lru_cache 0x619ed575 lc_try_get -EXPORT_SYMBOL lib/lru_cache 0x84e0214b lc_committed -EXPORT_SYMBOL lib/lru_cache 0x98878622 lc_seq_dump_details -EXPORT_SYMBOL lib/lru_cache 0xb0adb4a6 lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0xbbe7c23c lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0xc48fa976 lc_set -EXPORT_SYMBOL lib/lru_cache 0xc6e4cd46 lc_reset -EXPORT_SYMBOL lib/lru_cache 0xcb990a55 lc_try_lock -EXPORT_SYMBOL lib/lru_cache 0xcea6747e lc_destroy -EXPORT_SYMBOL lib/lru_cache 0xd212c9f0 lc_get -EXPORT_SYMBOL lib/lru_cache 0xeb13128b lc_del -EXPORT_SYMBOL lib/lru_cache 0xf460a486 lc_is_used -EXPORT_SYMBOL lib/lru_cache 0xf5ea5f5c lc_index_of -EXPORT_SYMBOL lib/lru_cache 0xf6acec20 lc_find -EXPORT_SYMBOL lib/lz4/lz4_compress 0xcbc5d521 lz4_compress -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x26c3aa22 lz4hc_compress -EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul -EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp -EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv -EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page -EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi -EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul -EXPORT_SYMBOL net/6lowpan/6lowpan 0x18771258 lowpan_netdev_setup -EXPORT_SYMBOL net/6lowpan/6lowpan 0x9f0ec6a3 lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0xc4e617a1 lowpan_nhc_del -EXPORT_SYMBOL net/802/p8022 0x742d8d2e unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0xbd88c0c7 register_8022_client -EXPORT_SYMBOL net/802/p8023 0x1216b48c destroy_8023_client -EXPORT_SYMBOL net/802/p8023 0xe6f8c031 make_8023_client -EXPORT_SYMBOL net/802/psnap 0x64b4d65c register_snap_client -EXPORT_SYMBOL net/802/psnap 0x95ac5bf9 unregister_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x0927a8a5 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x107c91f2 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x12bf1ca3 p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x19468218 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x1c9f73c9 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x27a05536 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x2b6f0ca9 p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x2e0e72f5 p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get -EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x405ad5a1 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x408ba062 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x40a0310a p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0x4a12f6b7 p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0x4e6eda46 p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x53d292e9 p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x588d83b2 p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0x6c10a12c p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x6cb375ea p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x750abef7 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x80cce476 p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x8124b72e p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0x81b1cfd3 p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0x93b27f53 p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x94119ab4 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0x94b75709 v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0x94d7008d p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0xa4e1fdbc v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0xaa444c37 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0xaa9245ae p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0xacfabde1 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0xaed53f39 p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0xb1414235 v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0xb293c81d p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0xb32296a8 p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0xb9bfddbb p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0xbb185dd0 p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0xbd1e6d29 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy -EXPORT_SYMBOL net/9p/9pnet 0xca23f973 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0xd1e74b74 p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0xdb1630b4 p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0xe44a9b95 p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create -EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put -EXPORT_SYMBOL net/9p/9pnet 0xfad9912c p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check -EXPORT_SYMBOL net/appletalk/appletalk 0x01625e07 aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0x1cd88188 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0xcc2530f0 alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0xddc88129 atrtr_get_dev -EXPORT_SYMBOL net/atm/atm 0x0356be3d vcc_release_async -EXPORT_SYMBOL net/atm/atm 0x1285e3b6 vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0x293e1fc4 atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x45f914ee register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x644f0937 atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0x789281f7 atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0x78d4e6cf atm_dev_register -EXPORT_SYMBOL net/atm/atm 0x8ddbfc86 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0x9928f2a9 atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xb48aa187 atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0xc483fd91 vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0xdb2694d6 deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xe2c0ca50 atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/atm/atm 0xf4c4cc53 atm_charge -EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0x3ccf5b52 ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x736b0abf ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0x98824f68 ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0x9fd76b92 ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0xa8d8d232 ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0xaf58503a ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xe870c8ef ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0xf4383a15 ax25_header_ops -EXPORT_SYMBOL net/bluetooth/bluetooth 0x00c54a05 l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x06500d39 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0702c8fb bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0ea23b44 hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0f27fced l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1b610da1 bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1c921b16 hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0x30cd41b7 bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x325ffe24 hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3364eb83 hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0x381e9fe7 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3db70466 bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3f45d74e __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4c9fb59d hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4f053caa bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x50c6fc4f bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0x512b3558 bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0x57623a18 bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5bdb3a1b hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5fa3590c hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5fbb1a5a bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x723dc57b hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x805ea2f4 bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9f968dc9 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa6dd0a50 hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb09bfbc0 l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb3c3080d hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb5c0d083 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb74435a9 bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbf75e829 hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd812679c l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd9eaedd3 hci_alloc_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe2e29950 bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe6ce225e __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe795ab7a bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0xea5c3c84 hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf57ec8cb hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf916e67d bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfba2eeec bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfbde42a0 hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfd51533d hci_register_dev -EXPORT_SYMBOL net/bridge/bridge 0xda55c434 br_should_route_hook -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xb66e5896 ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xbd54d0c0 ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xfe597b94 ebt_unregister_table -EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x1f0d1166 caif_enroll_dev -EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative -EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info -EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer -EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x5a9562e4 get_cfcnfg -EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head -EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head -EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio -EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xd7fa3ee4 caif_disconnect_client -EXPORT_SYMBOL net/caif/caif 0xebd7ea94 cfcnfg_add_phy_layer -EXPORT_SYMBOL net/caif/caif 0xfd910cf4 caif_connect_client -EXPORT_SYMBOL net/can/can 0x777886d2 can_proto_unregister -EXPORT_SYMBOL net/can/can 0x9dbdae6c can_rx_unregister -EXPORT_SYMBOL net/can/can 0xcc83d500 can_proto_register -EXPORT_SYMBOL net/can/can 0xd5d15c0a can_rx_register -EXPORT_SYMBOL net/can/can 0xd8c7b686 can_send -EXPORT_SYMBOL net/can/can 0xffcd2e87 can_ioctl -EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init -EXPORT_SYMBOL net/ceph/libceph 0x0ef473a0 ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x13fc7e6d ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0x1957e8c8 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x1ce8c21d ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0x1dc6c18e ceph_monc_got_mdsmap -EXPORT_SYMBOL net/ceph/libceph 0x1e95a667 osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x1fbfc8ed ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x2029d832 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup -EXPORT_SYMBOL net/ceph/libceph 0x22c0bb08 ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0x2388e3d0 ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x241c2566 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0x25eaa08d ceph_get_direct_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x2679fc35 ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0x288c6c11 ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x2a3611f8 ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0x2d2d182e ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x2fd01f06 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0x33a7ae45 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x33f7021c ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0x352344a3 ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0x382af8bb ceph_client_id -EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options -EXPORT_SYMBOL net/ceph/libceph 0x421e8da1 ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part -EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x47a9920e ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x48b5e4fe ceph_osdc_writepages -EXPORT_SYMBOL net/ceph/libceph 0x4a33c351 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0x4b740841 ceph_messenger_init -EXPORT_SYMBOL net/ceph/libceph 0x4cc1064f ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0x4dfa013d ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode -EXPORT_SYMBOL net/ceph/libceph 0x5451ef9f ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0x578cd474 osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x5873b1db ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0x59d6cbc2 ceph_monc_request_next_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x5ca10bea ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x60f4d220 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x676bf98d ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x6b93ab6b ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0x6bef8139 ceph_monc_do_get_version -EXPORT_SYMBOL net/ceph/libceph 0x7152f6a0 ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x729e8abc osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0x72fc2e90 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x745212e1 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x74d4a10d ceph_calc_pg_primary -EXPORT_SYMBOL net/ceph/libceph 0x783b8e2f __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x79e3d13d ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0x7f03d5c2 osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0x86f2e077 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x8dd9f743 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x8eed0e13 osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x8f3007d5 ceph_auth_create_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x90575af2 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0x95e1be56 osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x9658bfd6 osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x9705b8e6 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0x98f426a4 ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup -EXPORT_SYMBOL net/ceph/libceph 0x9a77d316 osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0x9af175a0 osd_req_op_cls_response_data -EXPORT_SYMBOL net/ceph/libceph 0x9ca1b151 ceph_auth_update_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x9d536e96 ceph_messenger_fini -EXPORT_SYMBOL net/ceph/libceph 0x9f3e7454 ceph_osdc_readpages -EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xa1ebde8f ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xa37267b2 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0xa900c3c7 ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb19dc152 ceph_pagelist_reserve -EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit -EXPORT_SYMBOL net/ceph/libceph 0xb82a6b39 ceph_osdc_put_event -EXPORT_SYMBOL net/ceph/libceph 0xba36f9d5 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0xbd9c4ad0 ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0xc1e0c09a ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0xc30eed00 ceph_osdc_cancel_event -EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup -EXPORT_SYMBOL net/ceph/libceph 0xc5951a88 ceph_osdc_create_event -EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0xc79fa408 ceph_oloc_oid_to_pg -EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init -EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips -EXPORT_SYMBOL net/ceph/libceph 0xcc00892c ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0xcc89d741 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode -EXPORT_SYMBOL net/ceph/libceph 0xd3b5f71f ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0xd5383217 ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xd56c3912 ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0xd5a32ec4 ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0xd813625e ceph_pagelist_append -EXPORT_SYMBOL net/ceph/libceph 0xdbaedb38 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0xddc5fddb osd_req_op_watch_init -EXPORT_SYMBOL net/ceph/libceph 0xde0eb6ba ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0xde5b6ea5 ceph_osdc_set_request_linger -EXPORT_SYMBOL net/ceph/libceph 0xe2901b1b ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xe55d9bcd ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0xe88c43bc ceph_osdc_build_request -EXPORT_SYMBOL net/ceph/libceph 0xe965772c osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xee7eb0c4 ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xf7ade311 ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xff6001e9 ceph_con_init -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x7406df10 dccp_req_err -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x8e905bde dccp_syn_ack_timeout -EXPORT_SYMBOL net/ieee802154/ieee802154 0x626b4d9d wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0x6418aef2 wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0x69588597 wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0x6c942b9c wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0x752c127e wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0x7de2ab4b wpan_phy_unregister -EXPORT_SYMBOL net/ipv4/fou 0x0c07b4a3 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x10a9b3a5 gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0x8768a3c9 fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0xed741d6f gue_encap_hlen -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x2c0619c5 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x320dcef0 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x854ed11b ip_tunnel_dst_reset_all -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xd18e0c7c ip_tunnel_encap -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xe0af5ba4 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf702cc2b ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x28a70058 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xde8b8ce7 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xf33fd1ca arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x5959f9dc ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xf8039f74 ipt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xfc2b0828 ipt_register_table -EXPORT_SYMBOL net/ipv4/tunnel4 0xb7bf2bd8 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0xb927c917 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x5ea3d46d udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x3c6346c9 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x906b2455 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xbcb6dd5e ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf53d4ea2 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x46c12b83 ip6t_unregister_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x61908484 ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xee2835df ip6t_register_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x6d60b314 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/tunnel6 0xb33d39be xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x1127581a xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x7a0d6dc1 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x143b7f96 ircomm_control_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x31b7c7cf ircomm_data_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x5737d2e5 ircomm_disconnect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x98654cbe ircomm_open -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x9d27c502 ircomm_close -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xaac095d2 ircomm_connect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xf89d8f3a ircomm_flow_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xfc0d161c ircomm_connect_response -EXPORT_SYMBOL net/irda/irda 0x01e44e68 irlmp_open_lsap -EXPORT_SYMBOL net/irda/irda 0x0341880a iriap_close -EXPORT_SYMBOL net/irda/irda 0x057a7f93 irttp_connect_request -EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value -EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service -EXPORT_SYMBOL net/irda/irda 0x0963c24b irias_add_string_attrib -EXPORT_SYMBOL net/irda/irda 0x09939c11 irias_add_integer_attrib -EXPORT_SYMBOL net/irda/irda 0x0ead0b19 irda_notify_init -EXPORT_SYMBOL net/irda/irda 0x1e304bca irlmp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0x23bbc2ce irias_find_object -EXPORT_SYMBOL net/irda/irda 0x2b432980 hashbin_get_next -EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda -EXPORT_SYMBOL net/irda/irda 0x3797f4bd irttp_dup -EXPORT_SYMBOL net/irda/irda 0x385847aa irias_delete_object -EXPORT_SYMBOL net/irda/irda 0x3bbfbccc alloc_irdadev -EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value -EXPORT_SYMBOL net/irda/irda 0x46b00fdf irias_insert_object -EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service -EXPORT_SYMBOL net/irda/irda 0x4a8ebabf irttp_data_request -EXPORT_SYMBOL net/irda/irda 0x4c8925e2 iriap_getvaluebyclass_request -EXPORT_SYMBOL net/irda/irda 0x574c7506 async_wrap_skb -EXPORT_SYMBOL net/irda/irda 0x5788b351 irda_device_set_media_busy -EXPORT_SYMBOL net/irda/irda 0x646c6057 irttp_open_tsap -EXPORT_SYMBOL net/irda/irda 0x68595812 irttp_close_tsap -EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies -EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client -EXPORT_SYMBOL net/irda/irda 0x70a3f20f hashbin_lock_find -EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client -EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client -EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert -EXPORT_SYMBOL net/irda/irda 0x806957ef irttp_flow_request -EXPORT_SYMBOL net/irda/irda 0x83445fc7 irttp_connect_response -EXPORT_SYMBOL net/irda/irda 0x88ea94a5 irlmp_connect_request -EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack -EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all -EXPORT_SYMBOL net/irda/irda 0x98a8b3b4 hashbin_delete -EXPORT_SYMBOL net/irda/irda 0x9ccbdfca hashbin_insert -EXPORT_SYMBOL net/irda/irda 0xa55812b0 irlmp_connect_response -EXPORT_SYMBOL net/irda/irda 0xac3dc858 irias_add_octseq_attrib -EXPORT_SYMBOL net/irda/irda 0xaeeff2b5 hashbin_find -EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value -EXPORT_SYMBOL net/irda/irda 0xbc270b99 async_unwrap_char -EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute -EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request -EXPORT_SYMBOL net/irda/irda 0xc893f405 irttp_udata_request -EXPORT_SYMBOL net/irda/irda 0xc9f5de90 irlap_close -EXPORT_SYMBOL net/irda/irda 0xcb1f8aaa irlmp_data_request -EXPORT_SYMBOL net/irda/irda 0xd3769d7f irlmp_close_lsap -EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma -EXPORT_SYMBOL net/irda/irda 0xdc0196c2 hashbin_remove -EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint -EXPORT_SYMBOL net/irda/irda 0xe1ba6308 irias_new_object -EXPORT_SYMBOL net/irda/irda 0xe329462a hashbin_get_first -EXPORT_SYMBOL net/irda/irda 0xe56f64e9 irttp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0xe868ee06 iriap_open -EXPORT_SYMBOL net/irda/irda 0xeb78333e hashbin_remove_this -EXPORT_SYMBOL net/irda/irda 0xec242b93 hashbin_new -EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries -EXPORT_SYMBOL net/irda/irda 0xf0780a10 irlap_open -EXPORT_SYMBOL net/l2tp/l2tp_core 0x1205bd71 l2tp_recv_common -EXPORT_SYMBOL net/l2tp/l2tp_ip 0x8e8dcf5d l2tp_ioctl -EXPORT_SYMBOL net/lapb/lapb 0x06192a81 lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0x1607b51c lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0x4b80e7ce lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0xb5b6c77f lapb_register -EXPORT_SYMBOL net/lapb/lapb 0xb8ea601f lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0xc432ce9e lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0xd46ff052 lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0xdfe15854 lapb_data_received -EXPORT_SYMBOL net/llc/llc 0x05becb64 llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0x10af228e llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0x20867a9f llc_sap_open -EXPORT_SYMBOL net/llc/llc 0x2219b673 llc_add_pack -EXPORT_SYMBOL net/llc/llc 0x351b33b0 llc_sap_find -EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0xcbbb0298 llc_sap_close -EXPORT_SYMBOL net/llc/llc 0xd9af3462 llc_mac_hdr_init -EXPORT_SYMBOL net/mac80211/mac80211 0x0294c35e __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x07637328 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x088d3417 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x0f6222c6 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x10fd30ce ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x1329449c ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x141b3a14 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x1ab1d821 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0x1cc77cba ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x1dfc9fd0 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x1e1d08b1 ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x1fe50a81 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x215822d6 ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0x22227e70 ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0x231c1acb ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x24a0c475 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x28866452 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x2a31aa40 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x2d729d79 ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x301075fb ieee80211_get_key_tx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x30a6a73f ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0x3204c8c8 ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x376edfb9 ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x3bd50968 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0x42e62682 ieee80211_start_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x477623b7 ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x48d1385b rate_control_send_low -EXPORT_SYMBOL net/mac80211/mac80211 0x51114681 ieee80211_csa_update_counter -EXPORT_SYMBOL net/mac80211/mac80211 0x5cbe1442 ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0x5d38b11d ieee80211_csa_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0x5d4661eb ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0x5dad8c0c ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x614441a9 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x6171948c ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x646d45df ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0x65b57b1f ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0x66be7453 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x68a26692 ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x7126ce58 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x714c3c9c wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x7a64825a ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x80295b22 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x815bd1a2 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x81e39c6d ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x8319eabc ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0x83e4f8ac ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0x83e97242 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x84f0a111 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x8a277930 ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0x8d7440fe ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0x8d85b52c ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x912b290e ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x991742b8 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x9a023cd3 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xa2e0fb0a ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0xa3c924b7 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0xa5068599 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xaca080b6 ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0xad70ebe4 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xb4bbb806 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0xb536dbf3 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0xb99262c7 rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xb9b5aeb1 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xbb5aec6f ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xbff00ea5 ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xc320f7bc ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xc9c8e1b4 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xd4942995 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0xd7274d11 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0xd9c0f4c1 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xdc431aaf ieee80211_tx_status_noskb -EXPORT_SYMBOL net/mac80211/mac80211 0xe74a6286 ieee80211_stop_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0xe759d272 ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0xe828dd3b ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xec5b2c30 ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0xf761221a ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xf8b68098 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0xfa61f528 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xfb532f7a __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xfdf17bf2 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0xfec1edd6 ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0xff6ed728 ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac802154/mac802154 0x09459b30 ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x0f99fb2a ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x14b63660 ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xce2d116f ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xd203dd88 ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xdf85283a ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0xeae040f7 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0xf0a108df ieee802154_stop_queue -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x164616cd ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x349cffcb ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3f01b64d ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4f5a838c ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x61961d8d ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x693c03b2 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x763d25e7 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x80863e44 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8aa1f189 ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb3f0f7dc register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe3593bda ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe4ab3bdc unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe969a9ac unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf379b1fd ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x5382b90b nf_conntrack_untracked -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x5c0d544b __nf_ct_ext_add_length -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x7d2abce1 __nf_ct_ext_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x09f0981a nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0x0b009e74 nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0x43fef95a nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x82cb6516 nf_nat_used_tuple -EXPORT_SYMBOL net/netfilter/nf_nat 0x8664a0d3 nf_xfrm_me_harder -EXPORT_SYMBOL net/netfilter/nf_nat 0xd651e9fc __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/x_tables 0x080ef494 xt_find_target -EXPORT_SYMBOL net/netfilter/x_tables 0x081e073c xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x0e2062bd xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0x116b3181 xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0x4133645a xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x4e75d764 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x896f2be3 xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xa81ca9b0 xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0xba6b505b xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xc754ebe5 xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets -EXPORT_SYMBOL net/nfc/hci/hci 0x078d0bd0 nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x1a95d0f8 nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x44d25dfc nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0x5350f0d7 nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x580a951d nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0x587edad6 nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0x621a40fd nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0x636c01a8 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0x6fb26dbe nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0x75f43a0b nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0x89224e60 nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x8b4a8c15 nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x8ba88348 nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0x92b83d27 nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0xb19aa0d8 nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0xb872bb1d nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xcd442175 nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0xd0b947e6 nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0xd878a666 nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0xee97d409 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0xf859d2d0 nfc_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x04adb427 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x0d245f55 nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x0dfa6480 nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x13825f04 nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x19c304bb nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0x2167c508 nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0x273b6e96 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0x35603309 nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x458b616a nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0x49105ffc nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x4fb95114 nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0x52f5c883 nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x58100a50 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0x6305a688 nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0x75569711 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0x77ce8ee7 nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x7b0cfc33 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0x7ee653f2 nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0xb02c4a98 nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xbb60ff58 nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0xc8030329 nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0xd15b96fb nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0xd73f0afd nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0xddd7d333 nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xeb0dcf98 nci_get_conn_info_by_id -EXPORT_SYMBOL net/nfc/nci/nci 0xf99a29d9 nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0xfbb84d7e nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0xfec4a971 nci_core_reset -EXPORT_SYMBOL net/nfc/nfc 0x106a46a9 nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0x20927d5b nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0x21e022a1 nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0x2ccb7177 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x3c4babe6 nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x3e8d66ab nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0x4822eacc nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0x52d84092 nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0x55318473 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0x5ad308e0 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0x85cc2e1c nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0x8d1e0f49 nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x8e12c97c __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0xa10efaee nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0xa339131a nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0xa3d00994 nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0xa53af0c2 nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0xaedfa115 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0xb0ff0133 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0xb6bc0c8f nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0xcb849a2f nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0xd15d3873 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0xd88a23b7 nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0xe5699177 nfc_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x6b3af542 nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x7a182a05 nfc_digital_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xae638e60 nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xef053c89 nfc_digital_free_device -EXPORT_SYMBOL net/phonet/phonet 0x0c429e15 pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0x23b18c8d phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0x44d6d0fb phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0x5774e4dc pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0x7d411637 pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0x94f65ba3 phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0x953256ec pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0xd00adf1e phonet_stream_ops -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x0e880526 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x13716bf0 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x2fcc663a rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4f7f62b1 rxrpc_kernel_is_data_last -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x615ade4d rxrpc_kernel_get_error_number -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x6e590523 rxrpc_kernel_reject_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x910c8961 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xa0cd8b7d rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc15bfb93 rxrpc_kernel_get_abort_code -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc2de9459 rxrpc_kernel_intercept_rx_messages -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xdde0b8a5 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xdfdf1a04 rxrpc_kernel_free_skb -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe18285f8 rxrpc_kernel_accept_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xfb50cf36 rxrpc_kernel_data_delivered -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xfea5ca39 rxrpc_kernel_end_call -EXPORT_SYMBOL net/sctp/sctp 0x6972cbe2 sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xae8d964b gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xc0dc0e9d gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xc16e6206 gss_mech_get -EXPORT_SYMBOL net/sunrpc/sunrpc 0x24a34623 svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0xa5bc81cd xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0xba53416d xdr_restrict_buflen -EXPORT_SYMBOL net/wimax/wimax 0x17738608 wimax_reset -EXPORT_SYMBOL net/wimax/wimax 0x48710c79 wimax_rfkill -EXPORT_SYMBOL net/wireless/cfg80211 0x03190481 cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x06dda434 ieee80211_data_to_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0x083ccb6d cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x0b919390 cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0x0c34ab52 cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x0ebeb0b5 cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0x14baea04 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0x158a4bca cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0x1797cbd7 cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x1953e567 cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0x1ccdbc5c cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x1cfbb570 cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x1d81bd51 freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0x22878868 __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x22c934f6 cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x2471fd83 cfg80211_roamed_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x27964156 regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0x27db6a6e regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0x294e1aff cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0x2a837709 cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0x2bbaff92 regulatory_set_wiphy_regd_sync_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x2d00c083 cfg80211_rx_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x348db8bf ieee80211_data_from_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0x3778b404 cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0x3ad33856 cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x3f9cfaef __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x403127b2 wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0x438a4690 cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0x44dbc378 cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x4c5f153e wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x5023b378 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0x537ab65f cfg80211_connect_result -EXPORT_SYMBOL net/wireless/cfg80211 0x5c9d7208 __ieee80211_get_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6a021fdb cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0x6df89bb6 cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0x75a167bf cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x77927aa7 cfg80211_report_obss_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x86372658 cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0x873d225b cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x8993429d cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x8eb10da7 ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x90e2bdde cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x91aa22f9 wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0x925aa57b wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0x94401ad0 cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x966ff54d ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x9eaaabe8 cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0xa1425906 ieee80211_channel_to_frequency -EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xa628df9b cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0xabc28897 cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0xac273782 cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xae52ad5e cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0xb0416eec cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xb1e7d182 __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xb337dd2b cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xb4792069 cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0xb5e2cdf7 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xbd8b555d cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0xbeb555ad cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0xc36bf6c9 cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0xc6578c78 cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xc8a311dd cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xc982a0ec cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xcbd00f0e cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0xcc8df9f5 cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xd075bae7 cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0xd35539ad wiphy_rfkill_set_hw_state -EXPORT_SYMBOL net/wireless/cfg80211 0xd3b4751d cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0xd66bc33e cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xd6f187c0 cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xddd1263c cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0xdedae042 cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xe2683bef cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0xe2b8ec71 cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xe8025a88 ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0xe9bb9e7d wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0xeb6d7c6c ieee80211_ie_split -EXPORT_SYMBOL net/wireless/cfg80211 0xebfad8e2 cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xeeef2ce3 cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xf0f4cae1 cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0xf0fefce7 wiphy_rfkill_stop_polling -EXPORT_SYMBOL net/wireless/cfg80211 0xf79e8e2d wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0xf93dcb58 cfg80211_sched_scan_stopped_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0xfab41e73 cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie -EXPORT_SYMBOL net/wireless/cfg80211 0xffbf384a cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/lib80211 0x19776bdd lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x2eb5559a lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x7a7d469d lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0x8b25123f lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xc4a99545 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0xed4d0053 lib80211_crypt_info_init -EXPORT_SYMBOL sound/ac97_bus 0x189ffb0a ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xea9f8df2 snd_mixer_oss_ioctl_card -EXPORT_SYMBOL sound/core/seq/snd-seq 0x137149fa snd_seq_event_port_attach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x54daa252 snd_seq_kernel_client_write_poll -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x753e93fa snd_seq_kernel_client_enqueue_blocking -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7d7acb95 snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0xf8e9c196 snd_seq_device_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x205395a0 snd_midi_event_encode_byte -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x614705ff snd_midi_event_no_status -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x7746bb9b snd_midi_event_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x79794472 snd_midi_event_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x991c0f60 snd_midi_event_reset_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xef8fa3d2 snd_midi_event_free -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xf3f0324e snd_midi_event_reset_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xf6fdda44 snd_midi_event_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xc1b502d1 snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x03206055 snd_component_add -EXPORT_SYMBOL sound/core/snd 0x06039dd7 snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0x0b3b38c8 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0x10126094 snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0x10df2d01 snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0x14c31f7f snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program -EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer -EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x1cab942d snd_device_free -EXPORT_SYMBOL sound/core/snd 0x1e0c3b14 snd_cards -EXPORT_SYMBOL sound/core/snd 0x1eca11f8 snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0x23503498 snd_info_register -EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x28402dce snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0x2f64c154 snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x3bf52031 snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0x3db2c386 snd_device_new -EXPORT_SYMBOL sound/core/snd 0x425c7ede snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0x44af8cb5 snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0x46311375 snd_device_register -EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x5407e947 snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0x602c96f0 copy_to_user_fromio -EXPORT_SYMBOL sound/core/snd 0x63ef8338 snd_card_new -EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable -EXPORT_SYMBOL sound/core/snd 0x78c25e2a snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0x7b37ef13 snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0x82ede7a6 snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0x898f3e3f snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0x89da77db snd_jack_new -EXPORT_SYMBOL sound/core/snd 0x8dc97d40 snd_power_wait -EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x8f61d0df snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0x94d6c4ba snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0x96ce5dec snd_card_register -EXPORT_SYMBOL sound/core/snd 0x9b926a6e snd_card_free -EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id -EXPORT_SYMBOL sound/core/snd 0xa3a7d60f snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0xa92c4a6c snd_register_device -EXPORT_SYMBOL sound/core/snd 0xabb633a0 snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0xb0c59446 snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb305bb1d snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0xb8f7410d snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0xc4158a07 snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0xc9a843a9 _snd_ctl_add_slave -EXPORT_SYMBOL sound/core/snd 0xc9d753ae snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0xcada9dc4 snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0xce3ca308 copy_from_user_toio -EXPORT_SYMBOL sound/core/snd 0xdaf05844 snd_seq_root -EXPORT_SYMBOL sound/core/snd 0xdb06b254 snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0xe8d59e44 snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0xeb356840 snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0xf311d013 snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0xf67ee28b snd_jack_report -EXPORT_SYMBOL sound/core/snd 0xfb0db0d0 snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd-hwdep 0xc0a4968e snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any -EXPORT_SYMBOL sound/core/snd-pcm 0x02ac4fb0 snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x05619c88 snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0x06543d5a _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x06ca9f77 snd_dma_alloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x0804400e snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x08e2dba2 snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0x0939ea4f snd_pcm_lib_writev -EXPORT_SYMBOL sound/core/snd-pcm 0x0b15db5c snd_pcm_new_internal -EXPORT_SYMBOL sound/core/snd-pcm 0x0e3697dc snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0x189ed927 snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x20424e2a snd_sgbuf_get_chunk_size -EXPORT_SYMBOL sound/core/snd-pcm 0x2249f2ea snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x24c5afe8 snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0x2cd7aabe snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0x36a971eb snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x37c88c06 snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x3b91f3af snd_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x4b02ac98 snd_pcm_lib_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x4d216534 snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0x4d9b6d35 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL sound/core/snd-pcm 0x58025373 snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width -EXPORT_SYMBOL sound/core/snd-pcm 0x6a329a8c snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x6e87af6a snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x73a57289 snd_pcm_mmap_data -EXPORT_SYMBOL sound/core/snd-pcm 0x798ff021 snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL sound/core/snd-pcm 0x806e75ca snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0x85ad8200 snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x8d727ce5 snd_pcm_lib_write -EXPORT_SYMBOL sound/core/snd-pcm 0x9197ae17 snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0x95507344 snd_pcm_lib_mmap_iomem -EXPORT_SYMBOL sound/core/snd-pcm 0x96c2ce64 snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xa15944cd snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xade88e76 snd_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xb33da6c5 snd_pcm_notify -EXPORT_SYMBOL sound/core/snd-pcm 0xb373dbd9 snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0xb536c537 snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xb80e4063 snd_pcm_limit_hw_rates -EXPORT_SYMBOL sound/core/snd-pcm 0xb817dcba snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xba6224fb snd_pcm_suspend -EXPORT_SYMBOL sound/core/snd-pcm 0xbe3b8ccd snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0xc06e202b snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0xc072b4a8 snd_pcm_hw_rule_noresample -EXPORT_SYMBOL sound/core/snd-pcm 0xc3f64980 snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0xc91616c5 snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0xcf5a3928 snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0xcf6c91a2 snd_pcm_lib_read -EXPORT_SYMBOL sound/core/snd-pcm 0xd6a048e1 snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0xe47a5a50 snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xecfc1371 snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0xf3dc069d snd_pcm_lib_readv -EXPORT_SYMBOL sound/core/snd-pcm 0xf9d68bad snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0xff49b8c1 snd_pcm_sgbuf_ops_page -EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x0641bbef snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0x0c32b75b snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1037c522 snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1238d29d snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0x13bba0a0 snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1524474f snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x31d5222c snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x3fb3a38b snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0x486dc50a snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0x5a0f5fcb __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x6e2c1f35 snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x74b70b9d snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x7f29b4fe snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0x874c5534 snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0x8932f265 snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0xa97eafb3 snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0xdad8c064 __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe1afeca6 snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf2642314 snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-timer 0x26fc4501 snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0x39ecf34c snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0x43b18790 snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0x584a88d3 snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0x64e0f355 snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0x6bd2a5e1 snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0x8485dc69 snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0x8b6d42c8 snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0x8fd711d2 snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0x96b979a2 snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0x9c303e1a snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0xbd4de7e2 snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0xf649c471 snd_timer_notify -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x72404139 snd_mpu401_uart_new -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x0e899965 snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x13abf301 snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x14f01851 snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x49b638f2 snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4c559b94 snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4d5b6855 snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa618666b snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb504e0f4 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xbf54db9c snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x37b8f5ec snd_opl4_read -EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x68657301 snd_opl4_create -EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x71abc220 snd_opl4_write -EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x8a20369b snd_opl4_write_memory -EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0xc09856db snd_opl4_read_memory -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x381401a4 snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x4bb41429 snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x57e443a0 snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7d9091ad snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8ca9fdbe snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9bfcb8df snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9e2ae2e4 snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9f85ec92 snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xfbcfdd3a snd_vx_suspend -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x00fdf05f avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x011a7c45 amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x03ab94d2 iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0c0b900f fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0f1f97ef cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x183eec76 amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x19ab4604 amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2dc40013 iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2f474515 cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x343677f0 amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x35f96ae6 cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3b251609 cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3c5206c5 avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x530ac3c1 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5acba57e snd_fw_async_midi_port_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x66985cf3 snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7108693a avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x769914bd fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7a1e5cd1 amdtp_stream_stop -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x98e9875a snd_fw_async_midi_port_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb4ea7da6 fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbc923ccb amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcad11c01 amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xceeb57bc fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd39d7cbe fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd8fe2ff7 cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdbb9d22a fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe55965de amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf3c8d436 amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf5c15a49 fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf83e3e39 amdtp_stream_start -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf8b79c04 amdtp_stream_pcm_pointer -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x31dc7891 snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xc2d6c706 snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1dd61a91 snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2ef1c932 snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2f718c7e snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3fd0e36f snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x5b05bcfc snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xac1abd25 snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xc43a38e4 snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xee7764e6 snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x32f7d1fb snd_ak4117_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x53f14d6e snd_ak4117_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x5f4090c8 snd_ak4117_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x710db6df snd_ak4117_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x8641007d snd_ak4117_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x87432c3d snd_ak4117_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x1aecac77 snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x5d833828 snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xa6aa2948 snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xe00a47b0 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x238eb43d snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x8c55218c snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x10ba17a4 snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x48aac4ff snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x79bb4993 snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xcc671f0c snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xcdefebd1 snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xcea41aa5 snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-i2c 0x09c23ae0 snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x24918b8d snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x2897aa40 snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0x3172f829 snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x7f667336 snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0xe7aa56a8 snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-tea6330t 0x6b420239 snd_tea6330t_update_mixer -EXPORT_SYMBOL sound/i2c/snd-tea6330t 0x81f4b61d snd_tea6330t_detect -EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0x31bc983f snd_es1688_create -EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0x5f33ba01 snd_es1688_pcm -EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0x8f982952 snd_es1688_mixer -EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0xe86dc399 snd_es1688_reset -EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0xf82c0594 snd_es1688_mixer_write -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x00d2e667 snd_gf1_rawmidi_new -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x0c7d9555 snd_gus_use_inc -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x182ba764 snd_gf1_free_voice -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x1c1ce117 snd_gus_interrupt -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x1f6b9e09 snd_gf1_i_write8 -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x30cec7b7 snd_gus_dram_read -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x325bdf1a snd_gf1_write16 -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x32858709 snd_gus_create -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x38d86d33 snd_gf1_mem_xfree -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x46db8d67 snd_gf1_lvol_to_gvol_raw -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x51e637d5 snd_gus_use_dec -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x684d4fe1 snd_gf1_stop_voice -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x6ede3639 snd_gf1_mem_alloc -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x814d2f89 snd_gf1_poke -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x8c912e54 snd_gf1_ctrl_stop -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x91d22637 snd_gf1_write8 -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x95bc2f58 snd_gf1_look16 -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x98f41458 snd_gf1_translate_freq -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x9ba26aa7 snd_gus_initialize -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x9edccb4a snd_gf1_delay -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xa812d499 snd_gf1_new_mixer -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xb0f6e831 snd_gf1_dram_addr -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xb74aeea2 snd_gf1_mem_lock -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xb8115c47 snd_gf1_i_look8 -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xbcd535fe snd_gf1_alloc_voice -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xc0fae18d snd_gf1_write_addr -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xc43a5527 snd_gf1_atten_table -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xc75b3601 snd_gf1_look8 -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xd99864c6 snd_gf1_pcm_new -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xf74e46d6 snd_gf1_i_look16 -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xf7d30379 snd_gf1_peek -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xf84f1bcb snd_gus_dram_write -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xf9da1aca snd_gf1_mem_free -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x0e096be3 snd_msnd_init_queue -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x1155ae50 snd_msnd_disable_irq -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x1fbe7a7f snd_msndmix_new -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x23917964 snd_msnd_enable_irq -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x5d4d7f20 snd_msnd_upload_host -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x75026b24 snd_msndmidi_input_read -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x7afe7d99 snd_msnd_pcm -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x84cc6a62 snd_msnd_send_word -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x892c1da6 snd_msnd_send_dsp_cmd -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xb02492f9 snd_msnd_DAPQ -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xd5f46c1d snd_msnd_dsp_halt -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xf51143f4 snd_msndmix_setup -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xf65597a7 snd_msnd_DARQ -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xfedbab5b snd_msndmix_force_recsrc -EXPORT_SYMBOL sound/isa/opti9xx/snd-miro 0x06441522 snd_aci_get_aci -EXPORT_SYMBOL sound/isa/opti9xx/snd-miro 0xbf8b702a snd_aci_cmd -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x0aca3774 snd_sbdsp_reset -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x3f563777 snd_sbmixer_new -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5e52cd1a snd_sbmixer_suspend -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x62b097e5 snd_sbmixer_write -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x71216b01 snd_sbdsp_get_byte -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x94f19ad6 snd_sbdsp_create -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa60c47c6 snd_sbmixer_read -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xc26bbfbb snd_sbmixer_add_ctl -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xc8781904 snd_sbdsp_command -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xe4ec1f50 snd_sbmixer_resume -EXPORT_SYMBOL sound/isa/sb/snd-sb16-csp 0xecf0dbbf snd_sb_csp_new -EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0x3dcb0103 snd_sb16dsp_pcm -EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0x6882ff69 snd_sb16dsp_get_pcm_ops -EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xe0b3f690 snd_sb16dsp_interrupt -EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xe73edc0f snd_sb16dsp_configure -EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x303b87fe snd_sb8dsp_midi -EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x58ba32fa snd_sb8dsp_pcm -EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x869b6be5 snd_sb8dsp_midi_interrupt -EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0xa781641b snd_sb8dsp_interrupt -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x176d196c snd_emu8000_load_reverb_fx -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x1f323584 snd_emu8000_dma_chan -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x28e71623 snd_emu8000_load_chorus_fx -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x83d07c76 snd_emu8000_update_chorus_mode -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xd359f8b7 snd_emu8000_poke -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xe1b77e8a snd_emu8000_peek -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xea8fb779 snd_emu8000_init_fm -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xec0a226f snd_emu8000_peek_dw -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xed8c8523 snd_emu8000_update_equalizer -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xf716d179 snd_emu8000_update_reverb_mode -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xff5a2ea4 snd_emu8000_poke_dw -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x31f8e876 snd_wss_pcm -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x324f261b snd_wss_mce_down -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x3da23b84 snd_wss_get_pcm_ops -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x413e44dc snd_wss_chip_id -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x4572b43f snd_wss_put_single -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x560fbb65 snd_wss_timer -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x6f6efe23 snd_wss_put_double -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x72fa62a0 snd_wss_overrange -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x7386a29f snd_cs4236_ext_out -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x7697af5b snd_wss_mce_up -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x7b202637 snd_wss_interrupt -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x99366e50 snd_wss_info_single -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x9fe25938 snd_wss_out -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xbe8a34d0 snd_wss_create -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xcc1f7282 snd_wss_get_single -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xcfe67a13 snd_wss_mixer -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xe603389e snd_wss_get_double -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xea57e6ab snd_wss_info_double -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xef890ece snd_cs4236_ext_in -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xfb1b5425 snd_wss_in -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x24e2aabd snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x48df546d snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4a6d5c37 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5d04757a snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6880b673 snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7038f150 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x78d73106 snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7afee888 snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9340d57d snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa92c59b5 snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb60b2a3c snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb9175f62 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbfbb9a59 snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd0d8d754 snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xebc0b1e8 snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf635cfac snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfa967371 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0x9b257eb4 hpi_send_recv -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x3b67a756 snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x42819060 snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x95a0b415 snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xa68a1060 snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc0672459 snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xdd2996d3 snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xec6aaab9 snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf9012719 snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xffc402ef snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x09663689 snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x59f4129f snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xc8537357 snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0f53ddae oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x28d9079f oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x304b2c68 oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x36498f7d oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4ff01d27 oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x585bf972 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5bd8930d oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x68966643 oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x69936474 oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x751f67d0 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7dcf17d4 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x88c02d5f oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x989d968a oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9d026f35 oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa4dfc1ab oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa99c643a oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb800c8b5 oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc2723899 oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcf7d2db5 oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdcfc4b5a oxygen_pci_remove -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xeef33427 oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x32526ca2 snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x4ebd48c1 snd_trident_stop_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x6cd2e50f snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x92ba7fda snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xacd10b7c snd_trident_write_voice_regs -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x685dbeee tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xae985f4b tlv320aic23_probe -EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-dsp 0x7710dbbd sst_dma_new -EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-dsp 0xdc045797 sst_dma_free -EXPORT_SYMBOL sound/soc/snd-soc-core 0x9e6c0a0b snd_soc_alloc_ac97_codec -EXPORT_SYMBOL sound/soundcore 0x05a4b176 register_sound_special -EXPORT_SYMBOL sound/soundcore 0x18e4d6f8 register_sound_midi -EXPORT_SYMBOL sound/soundcore 0x1e714013 register_sound_special_device -EXPORT_SYMBOL sound/soundcore 0x53833e4b register_sound_dsp -EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xcd9636e7 register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0xfcab1a43 sound_class -EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x4fdfb573 snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x85e458e2 snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x9ce4e998 snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xc55089b2 snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xe2bb829c snd_emux_new -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xebfd3ba2 snd_emux_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x588635e7 snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0x5fb0e2f8 snd_util_mem_avail -EXPORT_SYMBOL sound/synth/snd-util-mem 0x8b0e139a snd_util_memhdr_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0xa5ea526e __snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0xa7aa3d10 __snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0xa8b0e503 snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0xbaa576a4 snd_util_memhdr_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0xf85c967a __snd_util_memblk_new -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xe35fa1f5 snd_usbmidi_create -EXPORT_SYMBOL ubuntu/hio/hio 0x4aba1a81 ssd_get_version -EXPORT_SYMBOL ubuntu/hio/hio 0x5f859226 ssd_register_event_notifier -EXPORT_SYMBOL ubuntu/hio/hio 0x91b35591 ssd_get_label -EXPORT_SYMBOL ubuntu/hio/hio 0xaf1085a1 ssd_get_temperature -EXPORT_SYMBOL ubuntu/hio/hio 0xb39484bc ssd_set_wmode -EXPORT_SYMBOL ubuntu/hio/hio 0xb59a6816 ssd_unregister_event_notifier -EXPORT_SYMBOL ubuntu/hio/hio 0xbaca71cc ssd_reset -EXPORT_SYMBOL ubuntu/hio/hio 0xd4fdbb06 ssd_set_otprotect -EXPORT_SYMBOL ubuntu/hio/hio 0xe2766cb8 ssd_get_pciaddr -EXPORT_SYMBOL ubuntu/hio/hio 0xeb5a85b6 ssd_bm_status -EXPORT_SYMBOL ubuntu/hio/hio 0xf8c169f5 ssd_submit_pbio -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x002d778d VBoxGuest_RTMpNotificationDeregister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0064d4f7 VBoxGuest_RTSemFastMutexCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x00712528 VBoxGuest_RTAssertMsg2Weak -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x01795170 VBoxGuest_RTMpGetCoreCount -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x03d8513f VBoxGuest_RTThreadSetName -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x05626dc7 VBoxGuest_RTR0MemObjReserveKernelTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0665bcaa VBoxGuest_RTAssertSetMayPanic -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x06ab676b VBoxGuest_RTLogPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0823cb2f VBoxGuest_RTMemAllocTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x08b98b3c VBoxGuest_RTMpCpuIdFromSetIndex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x08d7a261 VBoxGuest_RTThreadSelfName -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x09458185 VBoxGuest_RTR0MemAreKrnlAndUsrDifferent -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0b14ec2c VBoxGuest_RTThreadCreateF -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0b628628 VBoxGuest_RTSemEventMultiDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0b94344b VBoxGuest_g_pszRTAssertExpr -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0d1abebe VBoxGuest_RTLogFlush -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0dfb68c6 VBoxGuest_RTSemEventWait -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0e1a390f VBoxGuest_RTStrToInt8Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x104391d1 VBoxGuest_RTSemMutexDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x113a02d9 VBoxGuest_RTMpOnPair -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x127e9d01 VBoxGuest_RTTimerRequestSystemGranularity -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x143fba5b VBoxGuest_RTThreadPreemptDisable -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x14835127 VBoxGuest_RTAssertMsg2AddWeak -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x16d72922 VBoxGuest_RTR0MemObjIsMapping -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x17d84704 VBoxGuest_RTSpinlockCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x187c16e2 VBoxGuest_RTLogCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x19087f6f VBoxGuest_RTSemEventMultiWaitEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1a79fedb VBoxGuest_RTSemMutexRequestNoResumeDebug -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1abe7e93 VBoxGuest_RTThreadGetNative -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1ad481e4 VBoxGuest_RTLogLogger -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1d042132 VBoxGuest_RTMemContFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1e7216d7 VBoxGuest_RTThreadFromNative -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1efa8169 VBoxGuest_RTThreadUserSignal -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1f152547 VBoxGuest_RTMpGetMaxCpuId -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1fc40aab VBoxGuest_RTR0MemObjReserveUserTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x21b1ee43 VBoxGuest_RTThreadSleepNoLog -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x221205d1 VBoxGuest_RTThreadSetType -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2280771d VBoxGuestIDCCall -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x22bd51c7 VBoxGuest_RTErrConvertToErrno -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x23a552fd VBoxGuest_RTMpIsCpuOnline -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x246391eb VBoxGuest_RTStrToUInt16Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x25938e5f VBoxGuest_RTLogWriteDebugger -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x267da4c4 VBoxGuest_RTThreadIsMain -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x27740cb3 VBoxGuest_RTStrToUInt8Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2902013c VBoxGuest_RTTimerGetSystemGranularity -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x29066860 VBoxGuest_RTStrConvertHexBytes -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2972116c VBoxGuest_RTThreadPreemptIsEnabled -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x29bf3685 VBoxGuest_RTThreadGetName -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2b015c38 VBoxGuest_RTMpOnAll -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2b5f52a8 VBoxGuest_RTMpCurSetIndexAndId -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2bad2a8e VBoxGuest_RTStrToInt16 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2c5b3002 VBoxGuest_RTErrConvertFromErrno -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2d27c026 VBoxGuest_RTSemEventWaitExDebug -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2e136d3c VBoxGuest_RTR0MemObjAllocPhysExTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x309de102 VBoxGuest_RTMpCpuId -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3519743a VBoxGuest_RTMpCurSetIndex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3534ed69 VBoxGuest_RTMemAllocVarTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x353b64a3 VBoxGuest_RTSemMutexRelease -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x353e5a81 VBoxGuest_RTSemEventMultiReset -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x365d44f1 VBoxGuest_RTR0MemObjMapKernelExTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x36e780e0 VBoxGuest_RTStrToUInt8Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x37b2d47a VBoxGuest_RTStrPrintf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x39df70a0 VBoxGuest_RTStrPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3a29bcdb VBoxGuest_RTThreadIsInitialized -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3a77155a VBoxGuest_RTMpOnPairIsConcurrentExecSupported -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3b0a3d87 VBoxGuest_RTMemAllocZVarTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3d00f113 VBoxGuest_g_u32RTAssertLine -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3ed3a918 VBoxGuest_RTAssertMsg1 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3f452f12 VBoxGuest_RTR0MemObjAllocPageTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3f8d56e7 VBoxGuest_RTMemDupTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4002b8b4 VBoxGuest_RTTimeSpecToString -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x405901ff VBoxGuest_RTStrFormatTypeRegister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x428e3456 VBoxGuest_RTR0Term -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x428eb5ba VBoxGuest_RTMemTmpAllocZTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x42c5bff2 VBoxGuest_RTLogRelLogger -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x432b6724 VBoxGuest_RTR0MemObjAllocPhysNCTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x433ceadb VBoxGuest_RTLogWriteStdOut -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4453e900 VBoxGuest_RTR0MemObjProtect -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4484f9ee VBoxGuest_RTTimerStart -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x44ce618e VBoxGuest_RTMemAllocExTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x453e64fb VBoxGuest_RTSemEventMultiSignal -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x45933412 VBoxGuest_RTStrToInt8Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4597652f VBoxGuest_RTStrFormat -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x45d332ae VBoxGuest_RTMemReallocTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x46b36f60 VBoxGuest_RTTimeSpecFromString -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4819f15e VBoxGuest_RTThreadWait -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x48487b79 VBoxGuest_RTLogDefaultInstanceEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4983ea42 VBoxGuest_RTAssertShouldPanic -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4aca506e VBoxGuest_RTStrToUInt32Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4d0161ca VBoxGuest_RTLogBackdoorPrintf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4d47859f VBoxGuest_RTR0MemKernelCopyTo -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4e6d6986 VBoxGuest_RTStrToUInt16 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4e7faa59 VBoxGuest_RTStrToInt64 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x503f488a VBoxGuest_RTLogRelSetDefaultInstance -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5045b702 VBoxGuest_RTLogGetDestinations -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5118e8ae VBoxGuest_RTStrToUInt64 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x52041f46 VBoxGuest_RTThreadPreemptIsPossible -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x53602f45 VBoxGuest_RTMemTmpFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x539dd662 VBoxGuest_RTTimeSystemMilliTS -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x53b772da VBoxGuest_RTAssertSetQuiet -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x543527dc VBoxGuest_RTLogWriteStdErr -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5460fc01 VBoxGuest_RTTimeImplode -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x54abe5d4 VBoxGuest_RTSemMutexRequestNoResume -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x54e45046 VBoxGuest_RTR0MemObjAllocLowTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x55c48692 VBoxGuest_RTMpIsCpuWorkPending -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x57280c42 VBoxGuest_RTR0MemExecDonate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x57406d20 VBoxGuest_RTR0ProcHandleSelf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5929b954 VBoxGuest_RTPowerSignalEvent -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5936a317 VBoxGuest_RTR0MemObjAddress -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x59390acb VBoxGuest_RTTimeIsLeapYear -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5ad3216a VBoxGuest_RTR0MemKernelIsValidAddr -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5b0eaa4d VBoxGuest_RTThreadWaitNoResume -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5c15981f VBoxGuest_RTMemContAlloc -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5ca67994 VBoxGuest_RTLogDestinations -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x613042f7 VBoxGuest_RTR0MemObjMapUserTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x622a261f VBoxGuest_RTPowerNotificationRegister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x622bf330 VBoxGuest_RTMemAllocZTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x62fd45a8 VBoxGuest_RTTimeNanoTS -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x63ba9fd2 VBoxGuest_RTLogGetDefaultInstance -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x64655cd4 VBoxGuest_RTSemEventMultiWaitExDebug -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x64af2463 VBoxGuest_RTStrToInt32 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x650e77e8 VBoxGuest_RTMpGetCount -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x651c778b VBoxGuest_RTSemEventMultiCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6549a3e0 VBoxGuest_RTTimeFromString -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x65b04e5d VBoxGuest_RTStrToUInt64Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x687ae6ac VBoxGuest_RTStrToUInt64Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6a930d21 VBoxGuest_RTTimerCanDoHighResolution -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6bcedab4 VBoxGuest_RTThreadPreemptIsPending -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6c17021e VBoxGuest_RTThreadUserReset -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6c2df755 VBoxGuest_RTAssertMsg1Weak -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6ca5b4ec VBoxGuest_RTSemEventMultiGetResolution -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6f8ed216 VBoxGuest_RTStrToUInt16Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6fd2e761 VBoxGuest_RTTimeNormalize -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x713f25d5 VBoxGuestIDCClose -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x715699a0 VBoxGuest_RTSpinlockDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x72d1c8f4 VBoxGuestIDCOpen -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x73a23c8b VBoxGuest_RTLogRelPrintf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x73f65247 VBoxGuest_RTStrToInt32Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x744623d2 VBoxGuest_RTSemMutexCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x753d3a3a VBoxGuest_RTLogFormatV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x755479c2 VBoxGuest_RTR0MemObjLockKernelTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x75bee68e VBoxGuest_RTThreadIsSelfKnown -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x76608be1 VBoxGuest_RTSemSpinMutexCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x766a8684 VBoxGuest_RTThreadCreateV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x76b885fb VBoxGuest_RTLogGetDefaultInstanceEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x76bb35b9 VBoxGuest_RTLogLoggerEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x76dbecb7 VBoxGuest_RTProcSelf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x77248ef3 VBoxGuest_RTR0MemObjLockUserTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7841b10d VBoxGuest_RTMpIsCpuPossible -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x78ad2401 VBoxGuest_RTStrToInt8 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x797e701f VBoxGuest_RTLogCreateEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x79aefc0b VBoxGuest_RTTimeNow -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7ac53b51 VBoxGuest_RTR0MemUserCopyFrom -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7ae3b63b VBoxGuest_RTStrToUInt32 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7b423f4c VBoxGuest_RTLogGetFlags -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7cef940f VBoxGuest_RTStrToUInt8 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x80162938 VBoxGuest_RTStrFormatV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8229caac VBoxGuest_RTThreadUserWait -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x847577ac VBoxGuest_RTMpGetOnlineCount -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x84e86094 VBoxGuest_RTStrPrintfExV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x854806f2 VBoxGuest_RTSpinlockAcquire -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8587f091 VBoxGuest_RTR0MemUserCopyTo -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x85afce7f VBoxGuest_RTMpNotificationRegister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x867199c4 VBoxGuest_RTMpPokeCpu -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x86f9f023 VBoxGuest_RTSemFastMutexRequest -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x87abe8dd VBoxGuest_RTR0MemObjSize -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8ab21a95 VBoxGuest_RTSemSpinMutexDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8b4fd3ef VBoxGuest_RTTimeSystemNanoTS -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8ff5c8e5 VBoxGuest_RTSemEventMultiWaitNoResume -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x937cd6a2 VBoxGuest_RTLogComPrintf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9474d99a VBoxGuest_RTSemFastMutexDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x951fbe81 VBoxGuest_RTLogLoggerV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x953b2ba4 VBoxGuest_RTLogSetDefaultInstance -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x983f332c VBoxGuest_RTSemSpinMutexRequest -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9853901a VBoxGuest_RTAssertMsg2Add -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x98a8f55f VBoxGuest_RTMpGetPresentCoreCount -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9909ff3d VBoxGuest_g_pszRTAssertFunction -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x993cc778 VBoxGuest_RTLogRelSetBuffering -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x99ee476f VBoxGuest_RTThreadYield -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9b02b021 VBoxGuest_RTThreadSleep -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9be73ec4 VBoxGuest_RTMpCpuIdToSetIndex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9dc75797 VBoxGuest_RTLogBackdoorPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9e97ef59 VBoxGuest_RTSemEventWaitNoResume -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9eb3db26 VBoxGuest_RTR0MemObjAllocPhysTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa21775d1 VBoxGuest_RTSemFastMutexRelease -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa2c23601 VBoxGuest_RTR0MemObjAllocContTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa3ff74bf VBoxGuest_RTStrToInt16Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa52847a2 VBoxGuest_RTR0MemUserIsValidAddr -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa5655a80 VBoxGuest_RTTimerReleaseSystemGranularity -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa582aeba VBoxGuest_RTMemExecFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa5f0f1ad VBoxGuest_RTAssertMsg2 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa61aa915 VBoxGuest_RTR0MemObjFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa6209fc7 VBoxGuest_RTLogPrintf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa74258ab VBoxGuest_RTTimeExplode -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa8a47d40 VBoxGuest_RTLogLoggerExV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xaaab8c57 VBoxGuest_RTLogRelGetDefaultInstanceEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xaadc0b5d VBoxGuest_RTTimerChangeInterval -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xab5ee692 VBoxGuest_RTLogWriteUser -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xab871924 VBoxGuest_RTThreadPreemptIsPendingTrusty -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xacaac41d VBoxGuest_g_szRTAssertMsg1 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xadb5cc54 VBoxGuest_RTStrFormatTypeSetUser -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xae21ae1f VBoxGuest_RTThreadCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb2f248c6 VBoxGuest_RTStrCopyP -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb33ca348 VBoxGuest_RTLogRelPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb3f592b9 VBoxGuest_RTThreadNativeSelf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb4227efb VBoxGuest_RTTimeToString -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb42ea0e3 VBoxGuest_g_pszRTAssertFile -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb5676d46 VBoxGuest_RTLogSetCustomPrefixCallback -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb5ec2977 VBoxGuest_RTStrToInt16Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb6fc848a VBoxGuest_RTStrToUInt32Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb9a86152 VBoxGuest_RTStrFormatNumber -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb9e03c35 VBoxGuest_RTTimerStop -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xba349142 VBoxGuest_RTR0MemObjEnterPhysTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbaa97421 VBoxGuest_g_szRTAssertMsg2 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbaf6967f VBoxGuest_RTR0MemObjGetPagePhysAddr -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbba29a48 VBoxGuest_RTR0MemObjAddressR3 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbbbc6e84 VBoxGuest_RTSemMutexRequest -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbbccb0c7 VBoxGuest_RTTimeMilliTS -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbc7fbd2a VBoxGuest_RTLogFlushRC -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbcd1b6de VBoxGuest_RTSemSpinMutexRelease -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbd0aa67d VBoxGuest_RTLogFlags -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbeed82c5 VBoxGuest_RTSemEventDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbf5b421e VBoxGuest_RTLogComPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc272f283 VBoxGuest_RTLogGroupSettings -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc2e0f25a VBoxGuest_RTMemTmpAllocTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc312f533 VBoxGuest_RTMpIsCpuPresent -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc4b8857d VBoxGuest_RTThreadPreemptRestore -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc4c265c6 VBoxGuest_RTMpGetPresentCount -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc5151dcf VBoxGuest_RTLogDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc56f27ff VBoxGuest_RTR0Init -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc57a9c9b VBoxGuest_RTStrToInt32Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc636859e VBoxGuest_RTThreadUserWaitNoResume -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc6b243bf VBoxGuest_RTTimerDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc7601bb1 VBoxGuest_RTSemEventMultiWait -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc9978a5f VBoxGuest_RTAssertMsg2V -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcb6463c6 VBoxGuest_RTStrFormatTypeDeregister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcdbc5e5d VBoxGuest_RTSemEventCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcdd40e5b VBoxGuest_RTMpOnOthers -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xceb98390 VBoxGuest_RTMpOnSpecific -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd032523c VBoxGuest_RTThreadGetType -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd1c8b171 VBoxGuest_RTStrCopyEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd2ebb507 VBoxGuest_RTMpGetPresentSet -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd38c5d55 VBoxGuest_RTLogCloneRC -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd4f35c7d VBoxGuest_RTSemSpinMutexTryRequest -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd63c8527 VBoxGuest_RTMemFreeEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd76ab832 VBoxGuest_RTMemDupExTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd8730925 VBoxGuest_RTLogRelLoggerV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdd31359f VBoxGuest_RTLogSetDefaultInstanceThread -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdd699fb2 VBoxGuest_RTSemMutexIsOwned -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xde296aea VBoxGuest_RTAssertAreQuiet -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdead7a1c VBoxGuest_RTLogSetBuffering -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdfaa7e65 VBoxGuest_RTSemEventSignal -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe0453bfd VBoxGuest_RTTimerCreateEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe0afcea8 VBoxGuest_RTR0AssertPanicSystem -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe0ebf12c VBoxGuest_RTAssertMsg2WeakV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe16047ab VBoxGuest_RTLogDefaultInstance -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe19acf09 VBoxGuest_RTStrCopy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe208c712 VBoxGuest_RTLogGetGroupSettings -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe2aa3ed6 VBoxGuest_RTR0MemKernelCopyFrom -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe4104f8b VBoxGuest_RTLogFlushToLogger -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe46f3670 VBoxGuest_RTLogRelGetDefaultInstance -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe47b5364 VBoxGuest_RTSemEventGetResolution -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe5908cc3 VBoxGuest_RTStrToInt64Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe59fc65c VBoxGuest_RTLogWriteCom -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe6a00917 VBoxGuest_RTThreadIsInInterrupt -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xebbe4bc3 VBoxGuest_RTThreadIsSelfAlive -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xecd69ee8 VBoxGuest_RTAssertMsg2AddWeakV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xed0424f7 VBoxGuest_RTMemFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xed92363f VBoxGuest_RTR0MemObjMapKernelTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf244ec46 VBoxGuest_RTSemMutexRequestDebug -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf2e6e2c5 VBoxGuest_RTStrPrintfEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf3cd37e7 VBoxGuest_RTSemEventWaitEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf450a3d4 VBoxGuest_RTLogCreateExV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf722f7d1 VBoxGuest_RTMemExecAllocTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf7c384ae VBoxGuest_RTStrToInt64Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf81b13f5 VBoxGuest_RTPowerNotificationDeregister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfb5ca767 VBoxGuest_RTSpinlockRelease -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfcfe8381 VBoxGuest_RTMpGetOnlineSet -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfe4fce41 VBoxGuest_RTAssertMayPanic -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfe5c0dc7 VBoxGuest_RTAssertMsg2AddV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfec59082 VBoxGuest_RTLogDumpPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfec8da5c VBoxGuest_RTMpOnAllIsConcurrentSafe -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xffc16d99 VBoxGuest_RTMpGetSet -EXPORT_SYMBOL vmlinux 0x000ae4b2 napi_gro_flush -EXPORT_SYMBOL vmlinux 0x00158185 netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x0027e791 clk_get -EXPORT_SYMBOL vmlinux 0x0028ea97 vme_bus_num -EXPORT_SYMBOL vmlinux 0x0060ab28 blk_queue_make_request -EXPORT_SYMBOL vmlinux 0x0066651f gnttab_alloc_pages -EXPORT_SYMBOL vmlinux 0x00959abb redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0x00993a85 tty_free_termios -EXPORT_SYMBOL vmlinux 0x00b8c3a7 mempool_alloc -EXPORT_SYMBOL vmlinux 0x00be5ba0 __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0x00bf01fb tcf_unregister_action -EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00ed5988 xfrm_garbage_collect -EXPORT_SYMBOL vmlinux 0x00f47090 vga_tryget -EXPORT_SYMBOL vmlinux 0x00f9193c tty_port_open -EXPORT_SYMBOL vmlinux 0x00faf22a pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve -EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr -EXPORT_SYMBOL vmlinux 0x0118c5bc abx500_set_register_interruptible -EXPORT_SYMBOL vmlinux 0x0120390c tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0x0139b504 cpu_current_top_of_stack -EXPORT_SYMBOL vmlinux 0x016ca75a phy_start -EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer -EXPORT_SYMBOL vmlinux 0x01783bee nd_device_unregister -EXPORT_SYMBOL vmlinux 0x017e53ff input_open_device -EXPORT_SYMBOL vmlinux 0x01984875 eth_header_cache -EXPORT_SYMBOL vmlinux 0x01b191a6 dev_get_nest_level -EXPORT_SYMBOL vmlinux 0x01c07a36 get_mm_exe_file -EXPORT_SYMBOL vmlinux 0x01c51126 i2c_clients_command -EXPORT_SYMBOL vmlinux 0x01cc471d get_gendisk -EXPORT_SYMBOL vmlinux 0x01d3f35c __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x01dcd194 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x01f65a0b pci_request_regions -EXPORT_SYMBOL vmlinux 0x020c027e nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0x021041ad ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check -EXPORT_SYMBOL vmlinux 0x021b39f8 bio_uncopy_user -EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu -EXPORT_SYMBOL vmlinux 0x023c15a5 inode_add_rsv_space -EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x027ec483 inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x0280adfe misc_register -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table -EXPORT_SYMBOL vmlinux 0x02b937d6 sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x02cef066 down_write -EXPORT_SYMBOL vmlinux 0x02e8c2d8 i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string -EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact -EXPORT_SYMBOL vmlinux 0x02f9ec84 dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0x032ae0c0 inet_add_protocol -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x03575c33 blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x0378d4fd dcache_readdir -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x038b9ebe max8998_read_reg -EXPORT_SYMBOL vmlinux 0x038f7218 inet_add_offload -EXPORT_SYMBOL vmlinux 0x03ae2daa ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0x03d308bd netif_carrier_off -EXPORT_SYMBOL vmlinux 0x03d9d1ce security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0x03eab0a0 devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x04105971 submit_bio -EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg -EXPORT_SYMBOL vmlinux 0x0426ba24 idr_for_each -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x045055f3 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x045b0ae0 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x045fd685 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0x046e311c inet_frags_init -EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display -EXPORT_SYMBOL vmlinux 0x048de5e9 sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0x0497cbd1 inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0x049bd2bb generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x049c404d sock_wake_async -EXPORT_SYMBOL vmlinux 0x04a0f0e5 __dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x04afd4fb release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x04c9b95d skb_queue_head -EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi -EXPORT_SYMBOL vmlinux 0x04d8e721 component_match_add -EXPORT_SYMBOL vmlinux 0x04e9fc8c jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol -EXPORT_SYMBOL vmlinux 0x04f05753 end_page_writeback -EXPORT_SYMBOL vmlinux 0x04fe4428 skb_insert -EXPORT_SYMBOL vmlinux 0x0500adf3 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x050182ab mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0x05025a45 blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match -EXPORT_SYMBOL vmlinux 0x050ae5d8 add_disk -EXPORT_SYMBOL vmlinux 0x0514c6bb xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x0537c1f0 from_kuid -EXPORT_SYMBOL vmlinux 0x054761b4 sk_prot_clear_portaddr_nulls -EXPORT_SYMBOL vmlinux 0x054ca873 put_page -EXPORT_SYMBOL vmlinux 0x056b6e88 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0x057596c1 pci_iomap -EXPORT_SYMBOL vmlinux 0x058bd217 intel_gmch_probe -EXPORT_SYMBOL vmlinux 0x05b5a6f9 update_devfreq -EXPORT_SYMBOL vmlinux 0x05cd1dd7 d_alloc_name -EXPORT_SYMBOL vmlinux 0x0600b149 bio_phys_segments -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x061d8642 sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x0623300c tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x065c7184 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x065d750d agp_create_memory -EXPORT_SYMBOL vmlinux 0x06619df1 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0x06744b82 init_task -EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx -EXPORT_SYMBOL vmlinux 0x06887090 ioctl_by_bdev -EXPORT_SYMBOL vmlinux 0x068c7263 ioremap_cache -EXPORT_SYMBOL vmlinux 0x069f6338 ipv4_specific -EXPORT_SYMBOL vmlinux 0x06c0dae5 __kernel_fpu_end -EXPORT_SYMBOL vmlinux 0x06d81228 agp_generic_insert_memory -EXPORT_SYMBOL vmlinux 0x06f700ce dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn -EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 -EXPORT_SYMBOL vmlinux 0x0729341a __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x07521d6a d_tmpfile -EXPORT_SYMBOL vmlinux 0x07592f45 ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0x07608604 acpi_get_vendor_resource -EXPORT_SYMBOL vmlinux 0x07637101 igrab -EXPORT_SYMBOL vmlinux 0x078643b8 simple_link -EXPORT_SYMBOL vmlinux 0x078822e4 gen_pool_create -EXPORT_SYMBOL vmlinux 0x079ca1c4 set_pages_array_uc -EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07aa069b dev_alloc_name -EXPORT_SYMBOL vmlinux 0x07c76bc4 inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07d50a24 csum_partial -EXPORT_SYMBOL vmlinux 0x07f8e605 register_netdevice -EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x083638a6 sock_no_mmap -EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x083ff4be xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x08434a1b param_ops_ullong -EXPORT_SYMBOL vmlinux 0x084abf4e ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0x08565a15 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x085749a5 param_set_uint -EXPORT_SYMBOL vmlinux 0x08751079 sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x08785c7d devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0x087fc977 jbd2_journal_file_inode -EXPORT_SYMBOL vmlinux 0x0897287b acpi_disable_all_gpes -EXPORT_SYMBOL vmlinux 0x089b53bb skb_append_datato_frags -EXPORT_SYMBOL vmlinux 0x08ab3771 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x08e4011c __generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0x0935c43a scsi_host_set_state -EXPORT_SYMBOL vmlinux 0x094b1b19 kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key -EXPORT_SYMBOL vmlinux 0x095db623 __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x0969cb6c __module_get -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x0990551b sb_min_blocksize -EXPORT_SYMBOL vmlinux 0x099319cb skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0x09bfc377 inc_nlink -EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09df3f3e pci_get_subsys -EXPORT_SYMBOL vmlinux 0x09e70225 register_shrinker -EXPORT_SYMBOL vmlinux 0x09e88526 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0x09f1049d tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x09f8279c jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class -EXPORT_SYMBOL vmlinux 0x0a298ad4 input_register_handle -EXPORT_SYMBOL vmlinux 0x0a2fe71a nvm_register_target -EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr -EXPORT_SYMBOL vmlinux 0x0a373226 crc32_le_shift -EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell -EXPORT_SYMBOL vmlinux 0x0a5d204a soft_cursor -EXPORT_SYMBOL vmlinux 0x0a661faa lg_local_unlock -EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0a77eb73 wireless_spy_update -EXPORT_SYMBOL vmlinux 0x0a8c3f01 devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0x0aa0ea25 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0acc181c tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0b0043ff __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x0b0bf305 find_lock_entry -EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0x0b10ece8 param_ops_ulong -EXPORT_SYMBOL vmlinux 0x0b164e33 mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b2a6797 mmc_gpio_request_ro -EXPORT_SYMBOL vmlinux 0x0b3e4206 ip_setsockopt -EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init -EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b81823a sk_stream_error -EXPORT_SYMBOL vmlinux 0x0b905c66 __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x0b97b13b dma_ops -EXPORT_SYMBOL vmlinux 0x0b99d173 __scsi_alloc_queue -EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active -EXPORT_SYMBOL vmlinux 0x0bbea9fa skb_copy -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bd244b2 input_event -EXPORT_SYMBOL vmlinux 0x0be38941 netdev_alert -EXPORT_SYMBOL vmlinux 0x0bee2e42 alloc_fddidev -EXPORT_SYMBOL vmlinux 0x0c066fc8 dev_set_group -EXPORT_SYMBOL vmlinux 0x0c29bd34 dev_change_flags -EXPORT_SYMBOL vmlinux 0x0c3a2895 sk_free -EXPORT_SYMBOL vmlinux 0x0c41d2a7 vga_switcheroo_client_fb_set -EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat -EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features -EXPORT_SYMBOL vmlinux 0x0c5e5e84 fb_show_logo -EXPORT_SYMBOL vmlinux 0x0c69c353 _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0x0c776947 bio_put -EXPORT_SYMBOL vmlinux 0x0c97ed26 dump_align -EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x0ca7b7a8 acpi_check_region -EXPORT_SYMBOL vmlinux 0x0ca907a3 __break_lease -EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0x0cbb33b3 inet6_ioctl -EXPORT_SYMBOL vmlinux 0x0ccf35d7 devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x0cdb7d12 __kernel_fpu_begin -EXPORT_SYMBOL vmlinux 0x0ce03df5 tty_register_device -EXPORT_SYMBOL vmlinux 0x0cfca45f netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x0d041a98 lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0x0d1085c6 no_llseek -EXPORT_SYMBOL vmlinux 0x0d151aad i2c_get_adapter -EXPORT_SYMBOL vmlinux 0x0d3dda14 acpi_get_type -EXPORT_SYMBOL vmlinux 0x0d4311a2 ppp_register_compressor -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d688664 skb_push -EXPORT_SYMBOL vmlinux 0x0d798f98 blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x0d86937e generic_writepages -EXPORT_SYMBOL vmlinux 0x0d897d97 nf_unregister_hook -EXPORT_SYMBOL vmlinux 0x0d8e2052 i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft -EXPORT_SYMBOL vmlinux 0x0dab60ef scsi_cmd_get_serial -EXPORT_SYMBOL vmlinux 0x0db18d77 phy_start_interrupts -EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex -EXPORT_SYMBOL vmlinux 0x0dcfa1e1 bdget -EXPORT_SYMBOL vmlinux 0x0dd599df __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x0dfcfb78 tcp_req_err -EXPORT_SYMBOL vmlinux 0x0dfe3dc7 agp_generic_remove_memory -EXPORT_SYMBOL vmlinux 0x0e155eb0 devm_memremap -EXPORT_SYMBOL vmlinux 0x0e24667a update_region -EXPORT_SYMBOL vmlinux 0x0e2da6db path_nosuid -EXPORT_SYMBOL vmlinux 0x0e4035eb vfs_write -EXPORT_SYMBOL vmlinux 0x0e444bf5 do_SAK -EXPORT_SYMBOL vmlinux 0x0e647a7d kmalloc_dma_caches -EXPORT_SYMBOL vmlinux 0x0e693799 mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec -EXPORT_SYMBOL vmlinux 0x0e7917d2 param_get_long -EXPORT_SYMBOL vmlinux 0x0e8795e2 pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x0e99a6ff lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0x0ea0aa8a sock_no_connect -EXPORT_SYMBOL vmlinux 0x0eaf451e hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x0eb91af1 scsi_register_driver -EXPORT_SYMBOL vmlinux 0x0ec568e7 pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy -EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups -EXPORT_SYMBOL vmlinux 0x0f195c1c jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0x0f19efe6 ppp_register_channel -EXPORT_SYMBOL vmlinux 0x0f203e82 unregister_filesystem -EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec -EXPORT_SYMBOL vmlinux 0x0f4f14ef inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x0f527b7d tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size -EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x0fa34ed5 check_disk_size_change -EXPORT_SYMBOL vmlinux 0x0fa55e29 pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fbee100 xfrm4_rcv_cb -EXPORT_SYMBOL vmlinux 0x0fcdecda devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0x0fd00a68 acpi_clear_event -EXPORT_SYMBOL vmlinux 0x0fd23a75 netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0x0fdf8510 security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress -EXPORT_SYMBOL vmlinux 0x100ab205 buffer_migrate_page -EXPORT_SYMBOL vmlinux 0x10256972 pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x102c56de irq_regs -EXPORT_SYMBOL vmlinux 0x102ffb1d skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0x103823ea param_set_charp -EXPORT_SYMBOL vmlinux 0x1046854f sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0x10471046 pci_biosrom_size -EXPORT_SYMBOL vmlinux 0x106ee26b dev_uc_sync -EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x1075961f __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x108fcb15 rwsem_wake -EXPORT_SYMBOL vmlinux 0x10c18066 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0x10d8f65a elv_dispatch_sort -EXPORT_SYMBOL vmlinux 0x10e9b6e9 genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu -EXPORT_SYMBOL vmlinux 0x10f1752c blk_queue_invalidate_tags -EXPORT_SYMBOL vmlinux 0x10fd21f4 seq_path -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x11145431 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0x112886db copy_from_iter -EXPORT_SYMBOL vmlinux 0x115869b1 get_user_pages -EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x1192c648 __put_cred -EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned -EXPORT_SYMBOL vmlinux 0x11ac0e5b key_payload_reserve -EXPORT_SYMBOL vmlinux 0x11b7a105 dquot_commit -EXPORT_SYMBOL vmlinux 0x11be890e file_ns_capable -EXPORT_SYMBOL vmlinux 0x11bfa57d gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x11dd01ad intel_scu_ipc_command -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin -EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier -EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const -EXPORT_SYMBOL vmlinux 0x1210768c insert_inode_locked -EXPORT_SYMBOL vmlinux 0x121b4e4b memremap -EXPORT_SYMBOL vmlinux 0x121bd8a6 netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x121ecf4a max8925_reg_write -EXPORT_SYMBOL vmlinux 0x12211c5e prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0x1226ddda tcp_connect -EXPORT_SYMBOL vmlinux 0x1228004d mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x1250c7e1 _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0x1269f46f qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x12a1dfa3 gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range -EXPORT_SYMBOL vmlinux 0x12cd0551 cdrom_ioctl -EXPORT_SYMBOL vmlinux 0x12cebe34 bio_integrity_advance -EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc -EXPORT_SYMBOL vmlinux 0x12dbfc0c netif_carrier_on -EXPORT_SYMBOL vmlinux 0x12e4bfb8 d_invalidate -EXPORT_SYMBOL vmlinux 0x12f37370 nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0x130a04cf skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x1319449d secure_modules -EXPORT_SYMBOL vmlinux 0x1323e134 generic_file_splice_read -EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x132990d7 generic_listxattr -EXPORT_SYMBOL vmlinux 0x13307fde vsscanf -EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc -EXPORT_SYMBOL vmlinux 0x1338cda9 napi_consume_skb -EXPORT_SYMBOL vmlinux 0x13445b9d setup_arg_pages -EXPORT_SYMBOL vmlinux 0x1344f9a7 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0x1352693a dev_load -EXPORT_SYMBOL vmlinux 0x1364715a dm_put_device -EXPORT_SYMBOL vmlinux 0x1371ef71 scsi_block_requests -EXPORT_SYMBOL vmlinux 0x137b925b tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x13a4d4c0 unload_nls -EXPORT_SYMBOL vmlinux 0x13adcc1b scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x13b30b22 swiotlb_alloc_coherent -EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13e5d629 iov_iter_fault_in_readable -EXPORT_SYMBOL vmlinux 0x13e88441 pci_get_device -EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation -EXPORT_SYMBOL vmlinux 0x13f9de34 cpu_info -EXPORT_SYMBOL vmlinux 0x1420b379 kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0x1436748d tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x1448b2dc inet_ioctl -EXPORT_SYMBOL vmlinux 0x144f8813 cdev_add -EXPORT_SYMBOL vmlinux 0x1463ae9c migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0x14bb5256 finish_open -EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x150389d6 acpi_processor_power_init_bm_check -EXPORT_SYMBOL vmlinux 0x1512ee5b abx500_mask_and_set_register_interruptible -EXPORT_SYMBOL vmlinux 0x153beb3f vfs_rmdir -EXPORT_SYMBOL vmlinux 0x153ca61f i2c_verify_client -EXPORT_SYMBOL vmlinux 0x153ce778 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x1547bfd6 __wait_on_bit -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x156a8a59 down_trylock -EXPORT_SYMBOL vmlinux 0x156c459b mmc_stop_bkops -EXPORT_SYMBOL vmlinux 0x15799c11 _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15fc04ce generic_error_remove_page -EXPORT_SYMBOL vmlinux 0x160ea4c8 sfi_disabled -EXPORT_SYMBOL vmlinux 0x1616cb30 acpi_evaluate_dsm -EXPORT_SYMBOL vmlinux 0x16170c59 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x1624650f phy_ethtool_gset -EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null -EXPORT_SYMBOL vmlinux 0x167a424b tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 -EXPORT_SYMBOL vmlinux 0x16809afc param_ops_int -EXPORT_SYMBOL vmlinux 0x1683a50b radix_tree_delete -EXPORT_SYMBOL vmlinux 0x16a7e353 tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x16dba6ba sg_miter_next -EXPORT_SYMBOL vmlinux 0x16dc4d1f fence_init -EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x170c25ee acpi_get_next_object -EXPORT_SYMBOL vmlinux 0x17209224 input_register_handler -EXPORT_SYMBOL vmlinux 0x173d580d xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x176e3476 bio_chain -EXPORT_SYMBOL vmlinux 0x17747e4b vga_get -EXPORT_SYMBOL vmlinux 0x178580fb posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0x1788310c unregister_shrinker -EXPORT_SYMBOL vmlinux 0x178e0e75 pci_find_pcie_root_port -EXPORT_SYMBOL vmlinux 0x179651ac _raw_read_lock -EXPORT_SYMBOL vmlinux 0x179c10da freeze_bdev -EXPORT_SYMBOL vmlinux 0x17afe36c bdi_init -EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator -EXPORT_SYMBOL vmlinux 0x17b3dc58 rtnl_unicast -EXPORT_SYMBOL vmlinux 0x17cf79dd pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x17ed00fb __quota_error -EXPORT_SYMBOL vmlinux 0x17edd1bd backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x17f00524 devfreq_interval_update -EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip -EXPORT_SYMBOL vmlinux 0x18066700 generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x182762a4 pci_restore_state -EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken -EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask -EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc -EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x189aa79d iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0x18aef277 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x18d86af7 pci_pme_capable -EXPORT_SYMBOL vmlinux 0x18d96501 atomic64_dec_if_positive_cx8 -EXPORT_SYMBOL vmlinux 0x18d9a0d2 request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18ea99d8 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x18efa7e5 get_agp_version -EXPORT_SYMBOL vmlinux 0x18f9af38 vfs_fsync_range -EXPORT_SYMBOL vmlinux 0x18fab0b0 __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0x1903d2b3 copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x19048d58 end_buffer_async_write -EXPORT_SYMBOL vmlinux 0x19085ed0 input_free_device -EXPORT_SYMBOL vmlinux 0x190bdb26 blkdev_fsync -EXPORT_SYMBOL vmlinux 0x190dfa69 __mutex_init -EXPORT_SYMBOL vmlinux 0x1916e38c _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x193147b5 sock_no_getsockopt -EXPORT_SYMBOL vmlinux 0x1931bd6e netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x193d1ab2 textsearch_register -EXPORT_SYMBOL vmlinux 0x193ef1fd bio_reset -EXPORT_SYMBOL vmlinux 0x196642bb new_inode -EXPORT_SYMBOL vmlinux 0x196b55b6 kernel_setsockopt -EXPORT_SYMBOL vmlinux 0x196feed0 tcp_check_req -EXPORT_SYMBOL vmlinux 0x199235a0 mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19b150d2 agp_generic_create_gatt_table -EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19e40eb9 bdi_destroy -EXPORT_SYMBOL vmlinux 0x19f5e57b locks_init_lock -EXPORT_SYMBOL vmlinux 0x1a161c38 pci_scan_slot -EXPORT_SYMBOL vmlinux 0x1a247763 ping_prot -EXPORT_SYMBOL vmlinux 0x1a2d6041 touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x1a3c277a dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0x1a45890f set_binfmt -EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled -EXPORT_SYMBOL vmlinux 0x1a548b1a iterate_supers_type -EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch -EXPORT_SYMBOL vmlinux 0x1a75a39e pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x1a8fd007 submit_bh -EXPORT_SYMBOL vmlinux 0x1a9befc7 __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x1aa986bd scsi_host_put -EXPORT_SYMBOL vmlinux 0x1aadc43d vm_insert_pfn -EXPORT_SYMBOL vmlinux 0x1ac066a8 tcp_splice_read -EXPORT_SYMBOL vmlinux 0x1afaa6df __lock_page -EXPORT_SYMBOL vmlinux 0x1afb1aaa acpi_mark_gpe_for_wake -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b063ccc agp_collect_device_status -EXPORT_SYMBOL vmlinux 0x1b08ae05 i8042_install_filter -EXPORT_SYMBOL vmlinux 0x1b16cf76 bdput -EXPORT_SYMBOL vmlinux 0x1b1833e1 inet_sendpage -EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents -EXPORT_SYMBOL vmlinux 0x1b25ad05 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x1b384767 netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0x1b484fad nobh_write_begin -EXPORT_SYMBOL vmlinux 0x1b505662 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0x1b560274 pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x1b570d23 acpi_warning -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug -EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip -EXPORT_SYMBOL vmlinux 0x1b965309 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer -EXPORT_SYMBOL vmlinux 0x1bbe728b nvm_submit_ppa -EXPORT_SYMBOL vmlinux 0x1bbf9a9a __dquot_transfer -EXPORT_SYMBOL vmlinux 0x1be1dd26 lg_global_lock -EXPORT_SYMBOL vmlinux 0x1bf94102 devm_release_resource -EXPORT_SYMBOL vmlinux 0x1c0965a3 elevator_init -EXPORT_SYMBOL vmlinux 0x1c114a6a vm_event_states -EXPORT_SYMBOL vmlinux 0x1c11a7dd inet_sock_destruct -EXPORT_SYMBOL vmlinux 0x1c13bfac mb_cache_shrink -EXPORT_SYMBOL vmlinux 0x1c4d5497 padata_do_serial -EXPORT_SYMBOL vmlinux 0x1c787f0c devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x1c82049e key_invalidate -EXPORT_SYMBOL vmlinux 0x1c8a04b0 acpi_reset -EXPORT_SYMBOL vmlinux 0x1cdf4b3b __getblk_gfp -EXPORT_SYMBOL vmlinux 0x1cef3076 bioset_create_nobvec -EXPORT_SYMBOL vmlinux 0x1cf1bcb1 phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0x1cf4790d kernel_param_unlock -EXPORT_SYMBOL vmlinux 0x1d0133ff complete_request_key -EXPORT_SYMBOL vmlinux 0x1d1ac069 nvm_put_blk_unlocked -EXPORT_SYMBOL vmlinux 0x1d6201b5 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0x1d6a1c5c dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0x1d9f4d25 agp_generic_destroy_page -EXPORT_SYMBOL vmlinux 0x1da34857 dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x1db98008 sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0x1dbbcc5e keyring_clear -EXPORT_SYMBOL vmlinux 0x1dc0f995 __elv_add_request -EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0x1dc8df78 inet_frags_exit_net -EXPORT_SYMBOL vmlinux 0x1dce3ced mem_map -EXPORT_SYMBOL vmlinux 0x1dcfeb80 sock_no_getname -EXPORT_SYMBOL vmlinux 0x1dd10200 unregister_qdisc -EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1de74f72 acpi_execute_simple_method -EXPORT_SYMBOL vmlinux 0x1debf83a passthru_features_check -EXPORT_SYMBOL vmlinux 0x1dfce184 mpage_readpage -EXPORT_SYMBOL vmlinux 0x1e036c98 acpi_set_gpe -EXPORT_SYMBOL vmlinux 0x1e047854 warn_slowpath_fmt -EXPORT_SYMBOL vmlinux 0x1e04b897 genlmsg_put -EXPORT_SYMBOL vmlinux 0x1e0c2be4 ioremap_wc -EXPORT_SYMBOL vmlinux 0x1e158f9b vme_irq_handler -EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev -EXPORT_SYMBOL vmlinux 0x1e2d4086 dmam_alloc_noncoherent -EXPORT_SYMBOL vmlinux 0x1e4d7c75 add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0x1e5654ab blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0x1e618d4d ip_do_fragment -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e8246ed tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x1e9c2a4e dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector -EXPORT_SYMBOL vmlinux 0x1ebf4b13 vfs_getattr -EXPORT_SYMBOL vmlinux 0x1ec1cb7f __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0x1eca4944 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0x1edca132 gen_replace_estimator -EXPORT_SYMBOL vmlinux 0x1eebf1a9 textsearch_destroy -EXPORT_SYMBOL vmlinux 0x1f10bf2a msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0x1f314040 nvm_get_blk_unlocked -EXPORT_SYMBOL vmlinux 0x1f3482f5 scsi_execute -EXPORT_SYMBOL vmlinux 0x1f39ead2 tc_classify -EXPORT_SYMBOL vmlinux 0x1f51105a shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x1f62afb3 pci_disable_link_state -EXPORT_SYMBOL vmlinux 0x1f6c01f6 vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0x1f7a5eac twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0x1f904a7c proc_set_size -EXPORT_SYMBOL vmlinux 0x1f9303ec genphy_soft_reset -EXPORT_SYMBOL vmlinux 0x1fa9d00c reservation_object_add_excl_fence -EXPORT_SYMBOL vmlinux 0x1fb70ae0 blk_queue_free_tags -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fbddf9e bio_map_kern -EXPORT_SYMBOL vmlinux 0x1fd07a34 generic_setxattr -EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag -EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x2005e68a acpi_remove_fixed_event_handler -EXPORT_SYMBOL vmlinux 0x20092385 acpi_enter_sleep_state_s4bios -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x201b0ac0 lg_global_unlock -EXPORT_SYMBOL vmlinux 0x20205f64 trace_print_array_seq -EXPORT_SYMBOL vmlinux 0x202ca12a init_special_inode -EXPORT_SYMBOL vmlinux 0x202f4e92 acpi_extract_package -EXPORT_SYMBOL vmlinux 0x2033ae6d pci_dev_put -EXPORT_SYMBOL vmlinux 0x203ac1e6 udp_ioctl -EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool -EXPORT_SYMBOL vmlinux 0x2052bf5a udp_proc_register -EXPORT_SYMBOL vmlinux 0x2055a46f dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x2071f896 __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq -EXPORT_SYMBOL vmlinux 0x207f8348 tty_kref_put -EXPORT_SYMBOL vmlinux 0x208739f6 acpi_load_table -EXPORT_SYMBOL vmlinux 0x20907c7a xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x2095ee2c nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20ae58d0 __tracepoint_fence_emit -EXPORT_SYMBOL vmlinux 0x20b6e1c2 md_register_thread -EXPORT_SYMBOL vmlinux 0x20b8bb24 scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x20c2e51d __register_chrdev -EXPORT_SYMBOL vmlinux 0x20c50a1c file_path -EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf -EXPORT_SYMBOL vmlinux 0x20c6192f intel_scu_ipc_ioread32 -EXPORT_SYMBOL vmlinux 0x20d3396d ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x20e32fa4 nvm_free_rqd_ppalist -EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x2109218e abx500_startup_irq_enabled -EXPORT_SYMBOL vmlinux 0x211dea23 dma_sync_wait -EXPORT_SYMBOL vmlinux 0x2123c3b7 mem_cgroup_begin_page_stat -EXPORT_SYMBOL vmlinux 0x212aebe0 nvm_addr_to_generic_mode -EXPORT_SYMBOL vmlinux 0x212d78ad sockfd_lookup -EXPORT_SYMBOL vmlinux 0x214a5fea sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0x214a9aa0 mmc_can_trim -EXPORT_SYMBOL vmlinux 0x2166ee67 tty_write_room -EXPORT_SYMBOL vmlinux 0x2167db87 nla_reserve -EXPORT_SYMBOL vmlinux 0x2169bc9e vme_slot_num -EXPORT_SYMBOL vmlinux 0x218e04a0 make_kgid -EXPORT_SYMBOL vmlinux 0x21a701fe fence_signal -EXPORT_SYMBOL vmlinux 0x21c1faf9 pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0x21d947e9 scsi_ioctl_reset -EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set -EXPORT_SYMBOL vmlinux 0x21e81009 km_policy_notify -EXPORT_SYMBOL vmlinux 0x21e8dfd3 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0x21e992a5 ida_simple_get -EXPORT_SYMBOL vmlinux 0x21f4eafa input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x2207a57f prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x221bacb3 dquot_quota_sync -EXPORT_SYMBOL vmlinux 0x2227a9cc ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x222b141e dma_pool_create -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x222f6207 __nla_reserve -EXPORT_SYMBOL vmlinux 0x2252030a dquot_get_state -EXPORT_SYMBOL vmlinux 0x2256fafa div64_u64_rem -EXPORT_SYMBOL vmlinux 0x225cba99 tty_port_hangup -EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits -EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint -EXPORT_SYMBOL vmlinux 0x22906ec1 noop_qdisc -EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22c24eac __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0x22dfdd06 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x22eedd05 get_task_exe_file -EXPORT_SYMBOL vmlinux 0x22fc4f3a trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x230534c1 sock_release -EXPORT_SYMBOL vmlinux 0x231a3482 mdiobus_read -EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs -EXPORT_SYMBOL vmlinux 0x232d18ec rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x23b5af6c page_readlink -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23bd03fd scsi_host_lookup -EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress -EXPORT_SYMBOL vmlinux 0x23d485dc scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0x23d87360 blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0x23f15c4f nf_log_register -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x24171faf path_noexec -EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x2444857c inet6_register_icmp_sender -EXPORT_SYMBOL vmlinux 0x24537bb7 cpu_tss -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf -EXPORT_SYMBOL vmlinux 0x249304d7 __napi_schedule -EXPORT_SYMBOL vmlinux 0x249d4aff __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x24b81545 scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x24c10dce phy_find_first -EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function -EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x25026d78 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x2504733e mb_cache_entry_release -EXPORT_SYMBOL vmlinux 0x2511d4bc jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register -EXPORT_SYMBOL vmlinux 0x253517b6 d_add_ci -EXPORT_SYMBOL vmlinux 0x256e4dc7 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x2590a29e uart_suspend_port -EXPORT_SYMBOL vmlinux 0x25aaf846 simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x25b250e4 acpi_bus_register_driver -EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x2603f6a3 sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0x2619685c dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x2627bd5f buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0x262d1410 scsi_add_device -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x264d3e72 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux -EXPORT_SYMBOL vmlinux 0x266e0318 swiotlb_map_sg -EXPORT_SYMBOL vmlinux 0x2670fb6e tty_check_change -EXPORT_SYMBOL vmlinux 0x2672908f inet_dgram_connect -EXPORT_SYMBOL vmlinux 0x26765052 jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0x267fbacd inode_init_once -EXPORT_SYMBOL vmlinux 0x268cc6a2 sys_close -EXPORT_SYMBOL vmlinux 0x269383b5 uart_write_wakeup -EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0x26bcfa9c acpi_evaluate_ost -EXPORT_SYMBOL vmlinux 0x26cb082d is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0x26cb34a2 mempool_create -EXPORT_SYMBOL vmlinux 0x26d0bdc1 dcache_dir_open -EXPORT_SYMBOL vmlinux 0x26dcd999 blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26e3bc4a ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min -EXPORT_SYMBOL vmlinux 0x26eb03c4 dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0x26f87ba7 init_buffer -EXPORT_SYMBOL vmlinux 0x27023d04 fsync_bdev -EXPORT_SYMBOL vmlinux 0x270f02a6 is_nd_btt -EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler -EXPORT_SYMBOL vmlinux 0x272069e0 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x272e4502 filp_close -EXPORT_SYMBOL vmlinux 0x2735c09e set_posix_acl -EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0x27553a53 to_nd_btt -EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x27882b9b ida_simple_remove -EXPORT_SYMBOL vmlinux 0x278d44da dev_mc_del -EXPORT_SYMBOL vmlinux 0x27999419 __ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x27a7472a truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0x27ae7d0c ec_transaction -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27bc6100 __dax_fault -EXPORT_SYMBOL vmlinux 0x27e235be blk_execute_rq -EXPORT_SYMBOL vmlinux 0x27ecdf7b tso_count_descs -EXPORT_SYMBOL vmlinux 0x27ef04a7 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0x27f7d60f clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x27fa6775 pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x280d6cf7 phy_read_mmd_indirect -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x284c752a ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0x2869d389 send_sig_info -EXPORT_SYMBOL vmlinux 0x287a6ff4 clear_wb_congested -EXPORT_SYMBOL vmlinux 0x288f91a8 import_iovec -EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x28b715a6 isapnp_cfg_end -EXPORT_SYMBOL vmlinux 0x28bcd774 mfd_remove_devices -EXPORT_SYMBOL vmlinux 0x28c55040 lock_sock_nested -EXPORT_SYMBOL vmlinux 0x28e0902d kthread_bind -EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available -EXPORT_SYMBOL vmlinux 0x2929ae29 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0x292c337c nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0x29413b99 unlock_buffer -EXPORT_SYMBOL vmlinux 0x29413d12 block_truncate_page -EXPORT_SYMBOL vmlinux 0x29474e23 pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0x2960c69c x86_hyper_xen -EXPORT_SYMBOL vmlinux 0x296a94a7 tty_name -EXPORT_SYMBOL vmlinux 0x29985899 km_policy_expired -EXPORT_SYMBOL vmlinux 0x29b1519a cdrom_media_changed -EXPORT_SYMBOL vmlinux 0x29b65a07 qdisc_watchdog_schedule_ns -EXPORT_SYMBOL vmlinux 0x29b75de6 phy_connect_direct -EXPORT_SYMBOL vmlinux 0x29ecba14 of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0x29f213bd __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x29fa1eb6 __dst_free -EXPORT_SYMBOL vmlinux 0x29fdda53 kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0x2a02559b dentry_update_name_case -EXPORT_SYMBOL vmlinux 0x2a0307bf follow_down -EXPORT_SYMBOL vmlinux 0x2a0d74e6 from_kgid_munged -EXPORT_SYMBOL vmlinux 0x2a12eb0c netlink_kernel_release -EXPORT_SYMBOL vmlinux 0x2a146346 sock_no_poll -EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2a3c35df default_llseek -EXPORT_SYMBOL vmlinux 0x2a4f2868 d_find_any_alias -EXPORT_SYMBOL vmlinux 0x2a565a25 wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0x2a5def2f intel_scu_ipc_iowrite32 -EXPORT_SYMBOL vmlinux 0x2a7b4778 tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0x2a84a95a nvm_unregister_mgr -EXPORT_SYMBOL vmlinux 0x2a8ad21a kobject_set_name -EXPORT_SYMBOL vmlinux 0x2a9cb2a8 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp -EXPORT_SYMBOL vmlinux 0x2aa1ddae lwtunnel_fill_encap -EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy -EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat -EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x2b0be3e3 sk_stop_timer -EXPORT_SYMBOL vmlinux 0x2b0e8e32 writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x2b1c5dd4 input_set_capability -EXPORT_SYMBOL vmlinux 0x2b1cb257 fddi_change_mtu -EXPORT_SYMBOL vmlinux 0x2b1fed9f submit_bio_wait -EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 -EXPORT_SYMBOL vmlinux 0x2b3620c9 release_pages -EXPORT_SYMBOL vmlinux 0x2b4616bb nvm_erase_ppa -EXPORT_SYMBOL vmlinux 0x2b6a77d8 devm_gpio_free -EXPORT_SYMBOL vmlinux 0x2b777e1c inet_sendmsg -EXPORT_SYMBOL vmlinux 0x2b7ebcc7 serio_interrupt -EXPORT_SYMBOL vmlinux 0x2b9babc1 uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency -EXPORT_SYMBOL vmlinux 0x2bb2003c mmc_remove_host -EXPORT_SYMBOL vmlinux 0x2bb55d6e acpi_remove_notify_handler -EXPORT_SYMBOL vmlinux 0x2bd8e021 __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0x2bfeb410 acpi_get_handle -EXPORT_SYMBOL vmlinux 0x2c00fcc1 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x2c14a345 cdev_del -EXPORT_SYMBOL vmlinux 0x2c157041 __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c31fa33 blk_rq_init -EXPORT_SYMBOL vmlinux 0x2c431f7f __xfrm_init_state -EXPORT_SYMBOL vmlinux 0x2c4554e4 twl6040_set_pll -EXPORT_SYMBOL vmlinux 0x2c48a668 devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0x2c52b83c xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x2c80ce5e nvm_dev_dma_alloc -EXPORT_SYMBOL vmlinux 0x2c8a8357 blk_end_request -EXPORT_SYMBOL vmlinux 0x2ca319a6 wrmsrl_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x2cb39ff6 disk_stack_limits -EXPORT_SYMBOL vmlinux 0x2cb8f57c debugfs_create_automount -EXPORT_SYMBOL vmlinux 0x2cc40ecf fence_remove_callback -EXPORT_SYMBOL vmlinux 0x2cdc3453 phy_device_register -EXPORT_SYMBOL vmlinux 0x2cdd230b pcim_iomap -EXPORT_SYMBOL vmlinux 0x2ce90c6e input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x2cf1ee18 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d144e21 rdmsrl_on_cpu -EXPORT_SYMBOL vmlinux 0x2d192a46 __blk_end_request -EXPORT_SYMBOL vmlinux 0x2d1e0cfe vga_switcheroo_fini_domain_pm_ops -EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d37342e cpu_online_mask -EXPORT_SYMBOL vmlinux 0x2d486593 acpi_match_device_ids -EXPORT_SYMBOL vmlinux 0x2d4e6025 mmc_alloc_host -EXPORT_SYMBOL vmlinux 0x2d59ec2d sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0x2d5eb760 dev_warn -EXPORT_SYMBOL vmlinux 0x2d772d65 block_read_full_page -EXPORT_SYMBOL vmlinux 0x2d8b4a58 pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0x2da04193 mmc_set_blockcount -EXPORT_SYMBOL vmlinux 0x2da0f50d phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0x2dbf00cf dev_err -EXPORT_SYMBOL vmlinux 0x2dc8b600 find_vma -EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu -EXPORT_SYMBOL vmlinux 0x2dd67f93 free_page_put_link -EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink -EXPORT_SYMBOL vmlinux 0x2dedc4c2 acpi_format_exception -EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write -EXPORT_SYMBOL vmlinux 0x2e16b890 pci_reenable_device -EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put -EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies -EXPORT_SYMBOL vmlinux 0x2e2dc3aa __tracepoint_fence_annotate_wait_on -EXPORT_SYMBOL vmlinux 0x2e401692 deactivate_super -EXPORT_SYMBOL vmlinux 0x2e642465 sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x2e65c11a scsi_scan_host -EXPORT_SYMBOL vmlinux 0x2e80321a ipv6_push_nfrag_opts -EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x2ecb9cc5 skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x2ecc69da bdev_read_only -EXPORT_SYMBOL vmlinux 0x2ece5f46 scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0x2ecf70f7 put_cmsg -EXPORT_SYMBOL vmlinux 0x2ed54ae8 get_task_io_context -EXPORT_SYMBOL vmlinux 0x2ed6596c from_kgid -EXPORT_SYMBOL vmlinux 0x2ed83364 nd_region_release_lane -EXPORT_SYMBOL vmlinux 0x2ee1c7a4 dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0x2ee31eaf xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0x2eea79e0 tty_mutex -EXPORT_SYMBOL vmlinux 0x2eeccc3d agp_free_memory -EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0x2efabe09 noop_fsync -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource -EXPORT_SYMBOL vmlinux 0x2f0b732c try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x2f0ca2a7 netif_wake_subqueue -EXPORT_SYMBOL vmlinux 0x2f37a00e tty_port_close -EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device -EXPORT_SYMBOL vmlinux 0x2f3b5397 dev_activate -EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag -EXPORT_SYMBOL vmlinux 0x2f6c5d7c blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0x2f750670 __frontswap_test -EXPORT_SYMBOL vmlinux 0x2f779035 posix_acl_fix_xattr_userns -EXPORT_SYMBOL vmlinux 0x2f8fa1e4 bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0x2fa723b7 __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x2fa754a2 mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2fefafb6 devm_gpiod_get_index -EXPORT_SYMBOL vmlinux 0x2ff13a33 phy_driver_register -EXPORT_SYMBOL vmlinux 0x2ff9d464 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0x2ffd8cef dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command -EXPORT_SYMBOL vmlinux 0x302e2d93 pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0x3030def8 udp_proc_unregister -EXPORT_SYMBOL vmlinux 0x304d6ce3 amd_northbridges -EXPORT_SYMBOL vmlinux 0x3053d2d6 netdev_all_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x305e4881 __generic_file_fsync -EXPORT_SYMBOL vmlinux 0x306396df __cleancache_put_page -EXPORT_SYMBOL vmlinux 0x30780e93 pci_write_vpd -EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable -EXPORT_SYMBOL vmlinux 0x30893b2f xfrm_lookup -EXPORT_SYMBOL vmlinux 0x30948ae8 bio_init -EXPORT_SYMBOL vmlinux 0x3094c9ff __sb_end_write -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30b04526 ida_init -EXPORT_SYMBOL vmlinux 0x30c3d516 lockref_put_return -EXPORT_SYMBOL vmlinux 0x30cba09e free_task -EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0x30eed691 unregister_key_type -EXPORT_SYMBOL vmlinux 0x30f688a7 neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x310108ec sget_userns -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x310917fe sort -EXPORT_SYMBOL vmlinux 0x3121d1e0 vm_map_ram -EXPORT_SYMBOL vmlinux 0x312d1bfc pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0x3133a979 param_get_int -EXPORT_SYMBOL vmlinux 0x313680e0 clocksource_change_rating -EXPORT_SYMBOL vmlinux 0x31380354 getrawmonotonic64 -EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present -EXPORT_SYMBOL vmlinux 0x3147857d default_red -EXPORT_SYMBOL vmlinux 0x31493c4e blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x315ac8d0 netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x316d9790 udp_poll -EXPORT_SYMBOL vmlinux 0x3173d5a2 nf_register_sockopt -EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear -EXPORT_SYMBOL vmlinux 0x3189cf89 __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x3191f109 __krealloc -EXPORT_SYMBOL vmlinux 0x31948548 filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0x319647b3 blkdev_put -EXPORT_SYMBOL vmlinux 0x319d6238 kill_fasync -EXPORT_SYMBOL vmlinux 0x31d6e8e8 input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0x31e76b57 recalibrate_cpu_khz -EXPORT_SYMBOL vmlinux 0x31ec44a0 _raw_read_unlock_bh -EXPORT_SYMBOL vmlinux 0x31f0bb78 __kmap_atomic_idx -EXPORT_SYMBOL vmlinux 0x3202435a wrmsr_safe_regs -EXPORT_SYMBOL vmlinux 0x3205b7be netif_receive_skb -EXPORT_SYMBOL vmlinux 0x321e76cb __nlmsg_put -EXPORT_SYMBOL vmlinux 0x323b73a7 set_trace_device -EXPORT_SYMBOL vmlinux 0x323e476b cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src -EXPORT_SYMBOL vmlinux 0x32582b8e rt6_lookup -EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom -EXPORT_SYMBOL vmlinux 0x3268aabf seq_release_private -EXPORT_SYMBOL vmlinux 0x32697aa8 page_cache_next_hole -EXPORT_SYMBOL vmlinux 0x3270ed94 blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0x328a0027 eth_gro_receive -EXPORT_SYMBOL vmlinux 0x32901b1c pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0x3294d11e udp_add_offload -EXPORT_SYMBOL vmlinux 0x3295c553 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0x329eab56 delete_from_page_cache -EXPORT_SYMBOL vmlinux 0x32b5fa2f mem_section -EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string -EXPORT_SYMBOL vmlinux 0x33054181 pcie_get_minimum_link -EXPORT_SYMBOL vmlinux 0x3313990f input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0x3338d627 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0x333d745c I_BDEV -EXPORT_SYMBOL vmlinux 0x334014f4 scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0x33423b82 vm_insert_page -EXPORT_SYMBOL vmlinux 0x33740a4a clk_add_alias -EXPORT_SYMBOL vmlinux 0x33969c30 kern_path -EXPORT_SYMBOL vmlinux 0x339f442f mount_ns -EXPORT_SYMBOL vmlinux 0x33a7029f ppp_input_error -EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x33ec0717 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x340f6255 csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0x34223881 make_kuid -EXPORT_SYMBOL vmlinux 0x342f60fe apm_info -EXPORT_SYMBOL vmlinux 0x3436f104 param_set_short -EXPORT_SYMBOL vmlinux 0x344f84cb pnp_is_active -EXPORT_SYMBOL vmlinux 0x3457cbe0 lro_flush_all -EXPORT_SYMBOL vmlinux 0x345e1fe3 bio_integrity_trim -EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin -EXPORT_SYMBOL vmlinux 0x34681877 dev_uc_add -EXPORT_SYMBOL vmlinux 0x346cf0ee register_console -EXPORT_SYMBOL vmlinux 0x347013de nla_validate -EXPORT_SYMBOL vmlinux 0x347dc19e current_in_userns -EXPORT_SYMBOL vmlinux 0x3492de32 swiotlb_free_coherent -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34b6095a param_set_long -EXPORT_SYMBOL vmlinux 0x34be5d42 linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x34c2a699 dentry_open -EXPORT_SYMBOL vmlinux 0x34c52cce pagecache_write_begin -EXPORT_SYMBOL vmlinux 0x34d900c8 follow_down_one -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x35118245 dma_common_get_sgtable -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x352bd945 phy_start_aneg -EXPORT_SYMBOL vmlinux 0x353de98f cmdline_parts_parse -EXPORT_SYMBOL vmlinux 0x353e21e3 acpi_bios_warning -EXPORT_SYMBOL vmlinux 0x35580e3c mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x357196ab acpi_get_hp_hw_control_from_firmware -EXPORT_SYMBOL vmlinux 0x357575e0 find_get_pages_tag -EXPORT_SYMBOL vmlinux 0x358da634 swiotlb_dma_supported -EXPORT_SYMBOL vmlinux 0x35984ca2 dev_crit -EXPORT_SYMBOL vmlinux 0x35a80d9d xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35f37edd pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0x35f3a87c jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x35fd3b8a kill_anon_super -EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x3617fc54 tcf_register_action -EXPORT_SYMBOL vmlinux 0x36195ced locks_mandatory_area -EXPORT_SYMBOL vmlinux 0x362bb1d5 led_set_brightness -EXPORT_SYMBOL vmlinux 0x363a8164 seq_read -EXPORT_SYMBOL vmlinux 0x3640a28f nf_ct_attach -EXPORT_SYMBOL vmlinux 0x364f4321 __invalidate_device -EXPORT_SYMBOL vmlinux 0x365ebc9f sock_get_timestampns -EXPORT_SYMBOL vmlinux 0x3664e66f set_anon_super -EXPORT_SYMBOL vmlinux 0x367ba856 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x369821ef __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0x369ba8c1 eth_header_cache_update -EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc -EXPORT_SYMBOL vmlinux 0x36c6af51 intel_scu_ipc_iowrite8 -EXPORT_SYMBOL vmlinux 0x36fdda67 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x370f6983 netlink_set_err -EXPORT_SYMBOL vmlinux 0x370f9850 efi -EXPORT_SYMBOL vmlinux 0x37107495 iunique -EXPORT_SYMBOL vmlinux 0x373d3218 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0x37431aac xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x3754d714 sync_inode -EXPORT_SYMBOL vmlinux 0x3768fd4c sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0x3789191e genphy_config_aneg -EXPORT_SYMBOL vmlinux 0x37945a6b seq_printf -EXPORT_SYMBOL vmlinux 0x379dee5f trace_print_symbols_seq_u64 -EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37c871e9 bio_add_page -EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date -EXPORT_SYMBOL vmlinux 0x37de53c7 serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 -EXPORT_SYMBOL vmlinux 0x37e9cc09 pcim_enable_device -EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x37fc6f16 d_path -EXPORT_SYMBOL vmlinux 0x38099e13 wrmsrl_on_cpu -EXPORT_SYMBOL vmlinux 0x3815e403 jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x381ccc13 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x384ea192 register_cdrom -EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x388799f6 unregister_kmmio_probe -EXPORT_SYMBOL vmlinux 0x388f0813 sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list -EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38ce46c4 rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x38e31626 input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0x38f08fae udp_del_offload -EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages -EXPORT_SYMBOL vmlinux 0x3909b25b clkdev_alloc -EXPORT_SYMBOL vmlinux 0x390dd406 scsi_print_sense -EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x39476d1e icmpv6_send -EXPORT_SYMBOL vmlinux 0x39567a42 devm_gpiod_get_optional -EXPORT_SYMBOL vmlinux 0x3967b3bd blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0x39699d62 max8998_bulk_read -EXPORT_SYMBOL vmlinux 0x39703af8 mmc_can_sanitize -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x39a055f3 acpi_remove_gpe_handler -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39c49643 dev_get_stats -EXPORT_SYMBOL vmlinux 0x39d8ffa2 dev_mc_unsync -EXPORT_SYMBOL vmlinux 0x39d9e237 kill_litter_super -EXPORT_SYMBOL vmlinux 0x39da5fa2 sock_i_ino -EXPORT_SYMBOL vmlinux 0x39f1c2f4 ida_get_new_above -EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify -EXPORT_SYMBOL vmlinux 0x3a13386f generic_write_checks -EXPORT_SYMBOL vmlinux 0x3a13e533 udp_sendmsg -EXPORT_SYMBOL vmlinux 0x3a1ac054 set_normalized_timespec64 -EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush -EXPORT_SYMBOL vmlinux 0x3a382843 pci_get_slot -EXPORT_SYMBOL vmlinux 0x3a6812ee security_task_getsecid -EXPORT_SYMBOL vmlinux 0x3a6b4179 sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x3a7f6ac3 mmc_align_data_size -EXPORT_SYMBOL vmlinux 0x3a9786eb iov_iter_init -EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region -EXPORT_SYMBOL vmlinux 0x3aa444ff tcp_init_cgroup -EXPORT_SYMBOL vmlinux 0x3aa99369 __module_put_and_exit -EXPORT_SYMBOL vmlinux 0x3aac95a6 netdev_boot_setup_check -EXPORT_SYMBOL vmlinux 0x3ab85fcb netif_napi_del -EXPORT_SYMBOL vmlinux 0x3aba2f7c __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x3ad0160c blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x3b201620 machine_real_restart -EXPORT_SYMBOL vmlinux 0x3b46bb13 i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0x3b480b81 cpufreq_global_kobject -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b6f6cd2 udp_table -EXPORT_SYMBOL vmlinux 0x3bb5114a prepare_to_wait -EXPORT_SYMBOL vmlinux 0x3bc40c7d elv_dispatch_add_tail -EXPORT_SYMBOL vmlinux 0x3bfc5c9f generic_delete_inode -EXPORT_SYMBOL vmlinux 0x3c031bac param_get_byte -EXPORT_SYMBOL vmlinux 0x3c053e31 inet_frag_maybe_warn_overflow -EXPORT_SYMBOL vmlinux 0x3c088940 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x3c0f02ec mdiobus_scan -EXPORT_SYMBOL vmlinux 0x3c1c6b03 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x3c2e774c gen_pool_add_virt -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c5077e4 clk_register_clkdevs -EXPORT_SYMBOL vmlinux 0x3c63e308 xfrm6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x3c709b3e sock_rfree -EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull -EXPORT_SYMBOL vmlinux 0x3caec126 ip6_frag_init -EXPORT_SYMBOL vmlinux 0x3cb367af acpi_notifier_call_chain -EXPORT_SYMBOL vmlinux 0x3cb3931b sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x3cdb3a36 mfd_cell_enable -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3ce60f15 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0x3cffa29a take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x3d1391e2 _raw_read_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x3d1e7350 mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0x3d1fc0e6 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x3d44bcc8 current_fs_time -EXPORT_SYMBOL vmlinux 0x3d6bc870 fget_raw -EXPORT_SYMBOL vmlinux 0x3d6f6e53 dev_uc_flush -EXPORT_SYMBOL vmlinux 0x3d7c1ed7 msrs_alloc -EXPORT_SYMBOL vmlinux 0x3d98c731 xfrm_state_insert -EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start -EXPORT_SYMBOL vmlinux 0x3da19c2c neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x3da598a1 udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x3da9a87b param_set_ulong -EXPORT_SYMBOL vmlinux 0x3daef6b4 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3ddd176b generic_write_end -EXPORT_SYMBOL vmlinux 0x3df73f7c fbcon_set_tileops -EXPORT_SYMBOL vmlinux 0x3dfad849 inet_put_port -EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e0fbe00 scsi_device_get -EXPORT_SYMBOL vmlinux 0x3e23ef16 ip6_xmit -EXPORT_SYMBOL vmlinux 0x3e2ae3a8 acpi_release_global_lock -EXPORT_SYMBOL vmlinux 0x3e4e1a8d xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x3e5cde56 agp_generic_free_gatt_table -EXPORT_SYMBOL vmlinux 0x3e5d2bc6 mount_single -EXPORT_SYMBOL vmlinux 0x3e654f49 acpi_decode_pld_buffer -EXPORT_SYMBOL vmlinux 0x3e6c488b agp3_generic_tlbflush -EXPORT_SYMBOL vmlinux 0x3e70dac2 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0x3e72238a set_bh_page -EXPORT_SYMBOL vmlinux 0x3e727e28 d_set_fallthru -EXPORT_SYMBOL vmlinux 0x3e742fd9 tso_start -EXPORT_SYMBOL vmlinux 0x3e831956 tty_port_close_start -EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource -EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get -EXPORT_SYMBOL vmlinux 0x3e98c168 find_inode_nowait -EXPORT_SYMBOL vmlinux 0x3ea9a87f generic_file_fsync -EXPORT_SYMBOL vmlinux 0x3eace283 sk_alloc -EXPORT_SYMBOL vmlinux 0x3ec40c8d __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0x3edb1d26 dev_printk -EXPORT_SYMBOL vmlinux 0x3ef78d80 vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x3eff5ac2 intel_scu_ipc_writev -EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep -EXPORT_SYMBOL vmlinux 0x3f20ca97 rtc_lock -EXPORT_SYMBOL vmlinux 0x3f220d88 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x3f36b50d xfrm6_rcv_cb -EXPORT_SYMBOL vmlinux 0x3f414760 blk_alloc_queue_node -EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f503d46 __insert_inode_hash -EXPORT_SYMBOL vmlinux 0x3f616ce2 queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0x3f6f1145 kfree_put_link -EXPORT_SYMBOL vmlinux 0x3f78745b fbcon_rotate_ccw -EXPORT_SYMBOL vmlinux 0x3f86cd64 dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0x3faa5c83 max8925_bulk_read -EXPORT_SYMBOL vmlinux 0x3fc62d3b i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0x3fec048f sg_next -EXPORT_SYMBOL vmlinux 0x40054cfe pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x4019bd78 migrate_page -EXPORT_SYMBOL vmlinux 0x401d792f fput -EXPORT_SYMBOL vmlinux 0x402b8281 __request_module -EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev -EXPORT_SYMBOL vmlinux 0x4052820a i8042_remove_filter -EXPORT_SYMBOL vmlinux 0x40579b9d vme_register_driver -EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump -EXPORT_SYMBOL vmlinux 0x405a876f blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds -EXPORT_SYMBOL vmlinux 0x40652d43 ps2_end_command -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x4097fa45 acpi_read_bit_register -EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x40a2d1dd dm_table_get_size -EXPORT_SYMBOL vmlinux 0x40a34204 d_make_root -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40abfbf0 __mdiobus_register -EXPORT_SYMBOL vmlinux 0x40bf6c0c locks_copy_conflock -EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0x40c3f909 __nla_put -EXPORT_SYMBOL vmlinux 0x40c500af vfs_link -EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40c89d46 acpi_get_table_by_index -EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40f4f141 handle_edge_irq -EXPORT_SYMBOL vmlinux 0x410511fc xen_biovec_phys_mergeable -EXPORT_SYMBOL vmlinux 0x410a46f5 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0x41122c6d scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x41352bb4 __page_symlink -EXPORT_SYMBOL vmlinux 0x41374fea sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x41862ad4 vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x41ba9336 blk_alloc_queue -EXPORT_SYMBOL vmlinux 0x41bbae58 save_mount_options -EXPORT_SYMBOL vmlinux 0x41dfbb4a twl6040_set_bits -EXPORT_SYMBOL vmlinux 0x41f976a8 seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x4229e62a blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0x42350e8d ucs2_strlen -EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force -EXPORT_SYMBOL vmlinux 0x425c846b blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0x426df0af dst_alloc -EXPORT_SYMBOL vmlinux 0x4290aa81 __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0x4292364c schedule -EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x42c8de35 ioremap_nocache -EXPORT_SYMBOL vmlinux 0x42d21af3 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x42ee861c neigh_resolve_output -EXPORT_SYMBOL vmlinux 0x42f70246 rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0x43018f04 __alloc_pages_nodemask -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x4305968c udp_lib_rehash -EXPORT_SYMBOL vmlinux 0x43358639 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x43359ebf pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x435e520a __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0x43604a87 __genl_register_family -EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x43e3c6f5 splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0x43e3ea91 csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x43e8293f xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0x43ec52ee skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x440425be led_update_brightness -EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed -EXPORT_SYMBOL vmlinux 0x441f643b generic_file_mmap -EXPORT_SYMBOL vmlinux 0x441f677c poll_initwait -EXPORT_SYMBOL vmlinux 0x44265893 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0x442c8b1e path_is_under -EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0x443d407d nvdimm_revalidate_disk -EXPORT_SYMBOL vmlinux 0x44438b96 hex2bin -EXPORT_SYMBOL vmlinux 0x4450e424 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x4469dd25 __init_rwsem -EXPORT_SYMBOL vmlinux 0x44711dc5 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x448e085f prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x448f1e64 genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x449a505a mfd_add_devices -EXPORT_SYMBOL vmlinux 0x449fe84b acpi_set_firmware_waking_vectors -EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz -EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x44e1d0d7 qdisc_list_del -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44f1f5e8 padata_alloc_possible -EXPORT_SYMBOL vmlinux 0x44f614f6 alloc_fcdev -EXPORT_SYMBOL vmlinux 0x44ffcca9 make_kprojid -EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle -EXPORT_SYMBOL vmlinux 0x4523cf1d input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x454d58dd elevator_alloc -EXPORT_SYMBOL vmlinux 0x45533f7e simple_nosetlease -EXPORT_SYMBOL vmlinux 0x45554619 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x456500de scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x45938011 inet_del_protocol -EXPORT_SYMBOL vmlinux 0x45a470ee pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource -EXPORT_SYMBOL vmlinux 0x45e21b11 security_path_chown -EXPORT_SYMBOL vmlinux 0x45ea3908 pci_bus_type -EXPORT_SYMBOL vmlinux 0x45fa76b5 tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x4616263b agp_generic_alloc_page -EXPORT_SYMBOL vmlinux 0x462913cd devm_gpio_request -EXPORT_SYMBOL vmlinux 0x4629334c __preempt_count -EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy -EXPORT_SYMBOL vmlinux 0x4631ce9f blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0x46354da7 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x463b1503 rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0x463ebc6c read_cache_pages -EXPORT_SYMBOL vmlinux 0x464d4efa gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0x46605152 xfrm_register_km -EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set -EXPORT_SYMBOL vmlinux 0x466abeba blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x46830f67 blk_queue_init_tags -EXPORT_SYMBOL vmlinux 0x4691f37b try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x46b6e232 pci_disable_msi -EXPORT_SYMBOL vmlinux 0x46c16d3c input_inject_event -EXPORT_SYMBOL vmlinux 0x46c91411 d_lookup -EXPORT_SYMBOL vmlinux 0x46f64e99 agp_unbind_memory -EXPORT_SYMBOL vmlinux 0x46fd21f6 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg -EXPORT_SYMBOL vmlinux 0x4740b3bc xen_arch_unregister_cpu -EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x475f010b acpi_purge_cached_objects -EXPORT_SYMBOL vmlinux 0x4767aaf5 dev_addr_add -EXPORT_SYMBOL vmlinux 0x478b9f0d seq_dentry -EXPORT_SYMBOL vmlinux 0x478d10b2 ht_destroy_irq -EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit -EXPORT_SYMBOL vmlinux 0x47a37d2a cros_ec_cmd_xfer -EXPORT_SYMBOL vmlinux 0x47af7666 filemap_map_pages -EXPORT_SYMBOL vmlinux 0x47e31e07 register_xen_selfballooning -EXPORT_SYMBOL vmlinux 0x47eca9c4 sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0x47fa59be ilookup -EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open -EXPORT_SYMBOL vmlinux 0x481cb9ab acpi_enter_sleep_state_prep -EXPORT_SYMBOL vmlinux 0x4826dbe8 blk_start_queue -EXPORT_SYMBOL vmlinux 0x4834d61e cros_ec_prepare_tx -EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days -EXPORT_SYMBOL vmlinux 0x48830959 prepare_creds -EXPORT_SYMBOL vmlinux 0x48a63171 simple_pin_fs -EXPORT_SYMBOL vmlinux 0x48af2400 ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48c6dc6c netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x48ca0709 reservation_object_reserve_shared -EXPORT_SYMBOL vmlinux 0x48debf0a pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0x48f6d546 key_alloc -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x490c3bb6 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0x494b79e5 tcp_sendpage -EXPORT_SYMBOL vmlinux 0x49582b22 mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init -EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data -EXPORT_SYMBOL vmlinux 0x496437ea dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0x498580e1 param_get_string -EXPORT_SYMBOL vmlinux 0x4994f5cb md_flush_request -EXPORT_SYMBOL vmlinux 0x499f46cc inet_select_addr -EXPORT_SYMBOL vmlinux 0x49a3630b unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan -EXPORT_SYMBOL vmlinux 0x49b68e23 jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0x49d353d1 __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x49de2443 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0x49e403b1 crypto_sha512_update -EXPORT_SYMBOL vmlinux 0x49f3080a dmam_free_noncoherent -EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many -EXPORT_SYMBOL vmlinux 0x4a075df1 jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0x4a14448c netpoll_send_skb_on_dev -EXPORT_SYMBOL vmlinux 0x4a219df7 vfs_unlink -EXPORT_SYMBOL vmlinux 0x4a2a8185 netdev_printk -EXPORT_SYMBOL vmlinux 0x4a367a8e nvm_dev_factory -EXPORT_SYMBOL vmlinux 0x4a3b9be7 serio_bus -EXPORT_SYMBOL vmlinux 0x4a5a29bc isapnp_protocol -EXPORT_SYMBOL vmlinux 0x4a619f83 memcpy -EXPORT_SYMBOL vmlinux 0x4a87d801 set_pages_nx -EXPORT_SYMBOL vmlinux 0x4a89a751 dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x4a99bd4d jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk -EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource -EXPORT_SYMBOL vmlinux 0x4ae9ed11 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize -EXPORT_SYMBOL vmlinux 0x4b05b5bc iget_locked -EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure -EXPORT_SYMBOL vmlinux 0x4b10c43b uart_register_driver -EXPORT_SYMBOL vmlinux 0x4b16f49e inode_set_bytes -EXPORT_SYMBOL vmlinux 0x4b1c5f4d install_exec_creds -EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0x4b2a1692 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x4b4f598c skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x4b516d17 netdev_features_change -EXPORT_SYMBOL vmlinux 0x4b5cbc0a __scsi_print_sense -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b5ff30c __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0x4b667176 lg_local_lock_cpu -EXPORT_SYMBOL vmlinux 0x4b9dfb04 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get -EXPORT_SYMBOL vmlinux 0x4bb0778e vm_stat -EXPORT_SYMBOL vmlinux 0x4bb3435d module_refcount -EXPORT_SYMBOL vmlinux 0x4bcf03a4 radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x4be687a8 mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x4be85a03 memweight -EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance -EXPORT_SYMBOL vmlinux 0x4c084c14 jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0x4c1d028e dump_emit -EXPORT_SYMBOL vmlinux 0x4c299dca set_wb_congested -EXPORT_SYMBOL vmlinux 0x4c29dcbf cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr -EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf -EXPORT_SYMBOL vmlinux 0x4c48bf57 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0x4c564431 tcp_proc_register -EXPORT_SYMBOL vmlinux 0x4c6f4585 netdev_change_features -EXPORT_SYMBOL vmlinux 0x4c878322 iosf_mbi_modify -EXPORT_SYMBOL vmlinux 0x4cb72de9 blk_sync_queue -EXPORT_SYMBOL vmlinux 0x4cd91047 pci_disable_msix -EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval -EXPORT_SYMBOL vmlinux 0x4ce5c30f phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0x4d0c3c45 __frontswap_store -EXPORT_SYMBOL vmlinux 0x4d0c7d13 parent_mem_cgroup -EXPORT_SYMBOL vmlinux 0x4d0f4f6c pci_get_class -EXPORT_SYMBOL vmlinux 0x4d16c2c3 netpoll_print_options -EXPORT_SYMBOL vmlinux 0x4d346881 posix_acl_valid -EXPORT_SYMBOL vmlinux 0x4d351d97 sg_miter_start -EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask -EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated -EXPORT_SYMBOL vmlinux 0x4d5f6f26 pci_scan_bus -EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4dc2b200 n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse -EXPORT_SYMBOL vmlinux 0x4e04cbe4 ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0x4e2fe33e simple_statfs -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e3a8bde key_unlink -EXPORT_SYMBOL vmlinux 0x4e508292 inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x4e5b8b0f netpoll_setup -EXPORT_SYMBOL vmlinux 0x4e6021ef udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e925314 inet_stream_ops -EXPORT_SYMBOL vmlinux 0x4e996dbc kmalloc_caches -EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset -EXPORT_SYMBOL vmlinux 0x4eb2fe63 generic_readlink -EXPORT_SYMBOL vmlinux 0x4f0898bf ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f28da71 __register_binfmt -EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse -EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command -EXPORT_SYMBOL vmlinux 0x4f6041ef dns_query -EXPORT_SYMBOL vmlinux 0x4f62f71d phy_stop_interrupts -EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday -EXPORT_SYMBOL vmlinux 0x4f6b400b _copy_from_user -EXPORT_SYMBOL vmlinux 0x4f783f30 acpi_read -EXPORT_SYMBOL vmlinux 0x4f850b71 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0x4f8b5ddb _copy_to_user -EXPORT_SYMBOL vmlinux 0x4f9a83fb iov_iter_npages -EXPORT_SYMBOL vmlinux 0x4f9e3373 ___pskb_trim -EXPORT_SYMBOL vmlinux 0x4f9f8bc4 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command -EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security -EXPORT_SYMBOL vmlinux 0x503c4119 pm860x_set_bits -EXPORT_SYMBOL vmlinux 0x50529870 acpi_get_gpe_status -EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x5079d1d4 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method -EXPORT_SYMBOL vmlinux 0x50b3359a nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x50b66bcb radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x50d490ea request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del -EXPORT_SYMBOL vmlinux 0x50dd330c tcp_read_sock -EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x50e421e3 set_cached_acl -EXPORT_SYMBOL vmlinux 0x50e8bb73 pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0x50eedeb8 printk -EXPORT_SYMBOL vmlinux 0x5116972e inet6_getname -EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0x51282962 inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0x51363fc3 max8925_set_bits -EXPORT_SYMBOL vmlinux 0x5142f3ac tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0x51432199 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x516c0749 netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x51719973 dq_data_lock -EXPORT_SYMBOL vmlinux 0x517f01f4 input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x5186518f profile_pc -EXPORT_SYMBOL vmlinux 0x5194d984 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0x519a4912 ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x51ac2c3a eisa_bus_type -EXPORT_SYMBOL vmlinux 0x51be1710 inet_stream_connect -EXPORT_SYMBOL vmlinux 0x51c18fe6 dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0x51ce307e pci_find_capability -EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled -EXPORT_SYMBOL vmlinux 0x51e61087 xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup -EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str -EXPORT_SYMBOL vmlinux 0x52095e19 acpi_get_data -EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0x5229592e should_remove_suid -EXPORT_SYMBOL vmlinux 0x522ec914 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0x525e026f acpi_os_unmap_generic_address -EXPORT_SYMBOL vmlinux 0x5277228f __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x52a3a5e0 tcf_exts_change -EXPORT_SYMBOL vmlinux 0x52af562a __crc32c_le -EXPORT_SYMBOL vmlinux 0x52b3728a inet_getname -EXPORT_SYMBOL vmlinux 0x52c15472 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0x530b1e4c rdmsr_on_cpus -EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid -EXPORT_SYMBOL vmlinux 0x532ef9ae get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x53460bf7 bmap -EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off -EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0x53867179 param_get_charp -EXPORT_SYMBOL vmlinux 0x5395d1b6 sock_no_shutdown -EXPORT_SYMBOL vmlinux 0x539951dd xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x53c524a7 xfrm_register_mode -EXPORT_SYMBOL vmlinux 0x53d9d180 inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x541382d1 remove_arg_zero -EXPORT_SYMBOL vmlinux 0x542891d9 rwsem_down_read_failed -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x544b0c11 acpi_lid_notifier_register -EXPORT_SYMBOL vmlinux 0x54612bb9 pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0x5464d3f6 acpi_remove_sci_handler -EXPORT_SYMBOL vmlinux 0x5467ed44 nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x5475294d sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x5475e859 i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0x547b6341 simple_rmdir -EXPORT_SYMBOL vmlinux 0x5480502f elv_rb_find -EXPORT_SYMBOL vmlinux 0x54912a6a xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0x54a86c7e from_kprojid -EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul -EXPORT_SYMBOL vmlinux 0x54b317f1 ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0x54b759b0 scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0x54b9c96d open_exec -EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window -EXPORT_SYMBOL vmlinux 0x54cec4d1 blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0x54e6c1bb dma_supported -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54edce96 blk_integrity_merge_bio -EXPORT_SYMBOL vmlinux 0x54f24d1a fence_default_wait -EXPORT_SYMBOL vmlinux 0x54f35493 user_path_create -EXPORT_SYMBOL vmlinux 0x54f50474 fsnotify_alloc_group -EXPORT_SYMBOL vmlinux 0x5507954b lock_fb_info -EXPORT_SYMBOL vmlinux 0x55181792 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x551bedc7 fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x551f2b9f pci_match_id -EXPORT_SYMBOL vmlinux 0x5523e80d pci_pme_active -EXPORT_SYMBOL vmlinux 0x552e449c tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu -EXPORT_SYMBOL vmlinux 0x55434a3c __inode_add_bytes -EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat -EXPORT_SYMBOL vmlinux 0x558b0282 pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x559202ee sget -EXPORT_SYMBOL vmlinux 0x55936acb zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x5594de0f bioset_integrity_free -EXPORT_SYMBOL vmlinux 0x559f0dff input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x559fce34 kobject_put -EXPORT_SYMBOL vmlinux 0x55b2836e tcp_proto_cgroup -EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x55e52d6b con_is_bound -EXPORT_SYMBOL vmlinux 0x55e60a36 queued_spin_unlock_wait -EXPORT_SYMBOL vmlinux 0x56113370 input_release_device -EXPORT_SYMBOL vmlinux 0x5612b1c8 inode_init_always -EXPORT_SYMBOL vmlinux 0x56207f3c vme_unregister_driver -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0x5639f208 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x5641419b wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x566656a7 __nd_iostat_start -EXPORT_SYMBOL vmlinux 0x5676a3e5 intel_scu_ipc_ioread8 -EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames -EXPORT_SYMBOL vmlinux 0x569e0bec start_tty -EXPORT_SYMBOL vmlinux 0x569f604a nf_nat_decode_session_hook -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56d43ee5 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0x56e56ef9 module_layout -EXPORT_SYMBOL vmlinux 0x56f6d161 tcf_hash_create -EXPORT_SYMBOL vmlinux 0x5705088a __vmalloc -EXPORT_SYMBOL vmlinux 0x5707fde5 __pagevec_lru_add -EXPORT_SYMBOL vmlinux 0x5712e364 sock_create_lite -EXPORT_SYMBOL vmlinux 0x57150f08 max8998_bulk_write -EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x575150a8 mmc_request_done -EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x575af70c on_each_cpu_mask -EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x576e9013 fasync_helper -EXPORT_SYMBOL vmlinux 0x57948e85 page_cache_prev_hole -EXPORT_SYMBOL vmlinux 0x579fbcd2 cpu_possible_mask -EXPORT_SYMBOL vmlinux 0x57a49082 touch_buffer -EXPORT_SYMBOL vmlinux 0x57b9a392 sock_create_kern -EXPORT_SYMBOL vmlinux 0x57ba72ab fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x57bc07c0 __bio_clone_fast -EXPORT_SYMBOL vmlinux 0x57c51a6b blk_stack_limits -EXPORT_SYMBOL vmlinux 0x5819716e rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x583f74ba bitmap_start_sync -EXPORT_SYMBOL vmlinux 0x584460c6 fb_blank -EXPORT_SYMBOL vmlinux 0x584738f9 rdmsr_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x584d2436 xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0x584f0053 poll_schedule_timeout -EXPORT_SYMBOL vmlinux 0x5851c908 __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep -EXPORT_SYMBOL vmlinux 0x585dacb9 tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0x58604e4d alloc_iova_mem -EXPORT_SYMBOL vmlinux 0x586103be acpi_setup_gpe_for_wake -EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat -EXPORT_SYMBOL vmlinux 0x587ac970 ip6_frag_match -EXPORT_SYMBOL vmlinux 0x58907f29 kunmap_high -EXPORT_SYMBOL vmlinux 0x5893c38b udp_seq_open -EXPORT_SYMBOL vmlinux 0x589681d3 fb_class -EXPORT_SYMBOL vmlinux 0x58b398bf lwtunnel_cmp_encap -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58b75281 elv_rb_del -EXPORT_SYMBOL vmlinux 0x58c0b1b0 nf_unregister_hooks -EXPORT_SYMBOL vmlinux 0x58d5282c set_blocksize -EXPORT_SYMBOL vmlinux 0x58d5ac14 vga_client_register -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58e8cea1 security_path_link -EXPORT_SYMBOL vmlinux 0x58fef6f8 ist_info -EXPORT_SYMBOL vmlinux 0x59088982 nd_region_acquire_lane -EXPORT_SYMBOL vmlinux 0x591a3480 pci_assign_resource -EXPORT_SYMBOL vmlinux 0x592bc1b7 md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0x5943be27 register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x5944d015 __cachemode2pte_tbl -EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map -EXPORT_SYMBOL vmlinux 0x596e4174 free_netdev -EXPORT_SYMBOL vmlinux 0x596eb642 file_remove_privs -EXPORT_SYMBOL vmlinux 0x59710cb9 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0x598128be seq_write -EXPORT_SYMBOL vmlinux 0x59899091 security_d_instantiate -EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x59921032 inet6_register_protosw -EXPORT_SYMBOL vmlinux 0x59974bd6 skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release -EXPORT_SYMBOL vmlinux 0x59bc9609 acpi_write_bit_register -EXPORT_SYMBOL vmlinux 0x59c988bb mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0x59e273e4 ata_std_end_eh -EXPORT_SYMBOL vmlinux 0x59f20c22 blk_get_request -EXPORT_SYMBOL vmlinux 0x59faabe2 blk_recount_segments -EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a154ad1 open_check_o_direct -EXPORT_SYMBOL vmlinux 0x5a1b3f45 skb_copy_bits -EXPORT_SYMBOL vmlinux 0x5a47e3c8 simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 -EXPORT_SYMBOL vmlinux 0x5a62185a mmc_start_bkops -EXPORT_SYMBOL vmlinux 0x5a8284b3 dm_kobject_release -EXPORT_SYMBOL vmlinux 0x5a82c44a complete_and_exit -EXPORT_SYMBOL vmlinux 0x5aba180c skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x5ac376a5 acpi_install_fixed_event_handler -EXPORT_SYMBOL vmlinux 0x5aefa4c3 kdb_current_task -EXPORT_SYMBOL vmlinux 0x5afdf07e ip_ct_attach -EXPORT_SYMBOL vmlinux 0x5afebb94 simple_write_begin -EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get -EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem -EXPORT_SYMBOL vmlinux 0x5b2eec9e filemap_fault -EXPORT_SYMBOL vmlinux 0x5b528a10 register_gifconf -EXPORT_SYMBOL vmlinux 0x5b581ac8 blk_end_request_all -EXPORT_SYMBOL vmlinux 0x5b716419 mmc_detect_change -EXPORT_SYMBOL vmlinux 0x5b88a50e elv_add_request -EXPORT_SYMBOL vmlinux 0x5b95f661 iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0x5b9f1942 mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0x5ba01e08 dm_io -EXPORT_SYMBOL vmlinux 0x5ba6959b skb_find_text -EXPORT_SYMBOL vmlinux 0x5bbe9f7e vc_resize -EXPORT_SYMBOL vmlinux 0x5bc5ace2 fb_prepare_logo -EXPORT_SYMBOL vmlinux 0x5bc8d583 copy_from_user_overflow -EXPORT_SYMBOL vmlinux 0x5bcff91a pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0x5bd32fd3 max8925_bulk_write -EXPORT_SYMBOL vmlinux 0x5bd69325 lwtunnel_encap_del_ops -EXPORT_SYMBOL vmlinux 0x5bf10e5e nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0x5bf790c8 dev_trans_start -EXPORT_SYMBOL vmlinux 0x5c0442fd acpi_gbl_FADT -EXPORT_SYMBOL vmlinux 0x5c09fca5 devm_gpio_request_one -EXPORT_SYMBOL vmlinux 0x5c1ab2b3 param_ops_short -EXPORT_SYMBOL vmlinux 0x5c4969c9 sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0x5c4eb036 inode_claim_rsv_space -EXPORT_SYMBOL vmlinux 0x5c545234 ucs2_strncmp -EXPORT_SYMBOL vmlinux 0x5c5602af blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0x5c7353d8 dquot_release -EXPORT_SYMBOL vmlinux 0x5cdcf53a t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5d2e0057 x86_hyper_ms_hyperv -EXPORT_SYMBOL vmlinux 0x5d463339 tty_hung_up_p -EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain -EXPORT_SYMBOL vmlinux 0x5d5e5d0e __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0x5d6e87a6 dquot_quota_off -EXPORT_SYMBOL vmlinux 0x5d74dbcf pnp_range_reserved -EXPORT_SYMBOL vmlinux 0x5d83269c dst_discard_out -EXPORT_SYMBOL vmlinux 0x5d8475e0 completion_done -EXPORT_SYMBOL vmlinux 0x5d8eca89 dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x5d935b27 nf_getsockopt -EXPORT_SYMBOL vmlinux 0x5dc8a822 vme_dma_list_free -EXPORT_SYMBOL vmlinux 0x5dcc4ac5 tcf_hash_check -EXPORT_SYMBOL vmlinux 0x5dd024f3 kill_pgrp -EXPORT_SYMBOL vmlinux 0x5de23f76 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0x5dffb9b0 x86_hyper_vmware -EXPORT_SYMBOL vmlinux 0x5e158d07 padata_remove_cpu -EXPORT_SYMBOL vmlinux 0x5e22a5c8 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0x5e28b591 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0x5e4d9f7a try_module_get -EXPORT_SYMBOL vmlinux 0x5e51b7fb input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x5e65ce9c tcf_em_register -EXPORT_SYMBOL vmlinux 0x5e720069 locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes -EXPORT_SYMBOL vmlinux 0x5e8d9022 module_put -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ec047fe netif_napi_add -EXPORT_SYMBOL vmlinux 0x5ec185db cdev_init -EXPORT_SYMBOL vmlinux 0x5ec26dfa flow_cache_lookup -EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5ed0c064 free_user_ns -EXPORT_SYMBOL vmlinux 0x5ed268b6 generic_getxattr -EXPORT_SYMBOL vmlinux 0x5ed7ebdc xfrm_state_add -EXPORT_SYMBOL vmlinux 0x5eec3917 alloc_file -EXPORT_SYMBOL vmlinux 0x5f000caf i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 -EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f0cf102 may_umount -EXPORT_SYMBOL vmlinux 0x5f186483 pci_release_regions -EXPORT_SYMBOL vmlinux 0x5f1a4ccf intel_scu_ipc_update_register -EXPORT_SYMBOL vmlinux 0x5f3abdf8 jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0x5f5d4f59 wake_up_process -EXPORT_SYMBOL vmlinux 0x5f60a257 bitmap_end_sync -EXPORT_SYMBOL vmlinux 0x5f613f77 tcp_child_process -EXPORT_SYMBOL vmlinux 0x5f751b67 mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x5f7df06e tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x5fa61902 seq_hex_dump -EXPORT_SYMBOL vmlinux 0x5fa9c996 cros_ec_check_result -EXPORT_SYMBOL vmlinux 0x5fab9313 __napi_complete -EXPORT_SYMBOL vmlinux 0x5fac30d4 register_filesystem -EXPORT_SYMBOL vmlinux 0x5fb0946a inet_csk_accept -EXPORT_SYMBOL vmlinux 0x5fb2e8ef idr_init -EXPORT_SYMBOL vmlinux 0x5fc03e6a sk_reset_timer -EXPORT_SYMBOL vmlinux 0x5fd268cb radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat -EXPORT_SYMBOL vmlinux 0x5fe3d51f sock_edemux -EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool -EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x600d8b26 param_get_uint -EXPORT_SYMBOL vmlinux 0x601a263f dev_uc_init -EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x602ed00d acpi_current_gpe_count -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x604316d8 acpi_finish_gpe -EXPORT_SYMBOL vmlinux 0x605ec80f phy_attach_direct -EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number -EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector -EXPORT_SYMBOL vmlinux 0x609f187a inet_listen -EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60a28513 genphy_config_init -EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL vmlinux 0x60b4d4d0 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0x60b526bd acpi_pm_device_sleep_state -EXPORT_SYMBOL vmlinux 0x60b86f61 sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x60bdacce up_read -EXPORT_SYMBOL vmlinux 0x60c0e4b8 f_setown -EXPORT_SYMBOL vmlinux 0x60cf89e1 netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0x60d1e4d4 dquot_acquire -EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x610aaa40 mempool_destroy -EXPORT_SYMBOL vmlinux 0x610fd62d pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x612e6e0e kernel_param_lock -EXPORT_SYMBOL vmlinux 0x6136145f mmc_of_parse -EXPORT_SYMBOL vmlinux 0x615be3c9 xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x6187270a always_delete_dentry -EXPORT_SYMBOL vmlinux 0x6194cd0a phy_connect -EXPORT_SYMBOL vmlinux 0x61b06a81 nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0x61b3560c cmdline_parts_set -EXPORT_SYMBOL vmlinux 0x61b6c922 ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61ccbdc5 nd_device_register -EXPORT_SYMBOL vmlinux 0x61ec4048 inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x62049256 acpi_disable -EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x6220b4a2 crc32_le -EXPORT_SYMBOL vmlinux 0x6225637e md5_transform -EXPORT_SYMBOL vmlinux 0x6226b9fa machine_to_phys_mapping -EXPORT_SYMBOL vmlinux 0x6226f665 pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0x6227bf28 nlmsg_notify -EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x62292fe1 __devcgroup_inode_permission -EXPORT_SYMBOL vmlinux 0x62296295 pnp_stop_dev -EXPORT_SYMBOL vmlinux 0x6237f6b5 acpi_enable_event -EXPORT_SYMBOL vmlinux 0x6241a2ab __copy_from_user_ll_nocache -EXPORT_SYMBOL vmlinux 0x62695982 vme_irq_generate -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x627dcfe8 tcp_make_synack -EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x62d1c41e dquot_file_open -EXPORT_SYMBOL vmlinux 0x62d77060 dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x62ec85ce devm_memunmap -EXPORT_SYMBOL vmlinux 0x630e6e86 neigh_connected_output -EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled -EXPORT_SYMBOL vmlinux 0x6324b850 eth_validate_addr -EXPORT_SYMBOL vmlinux 0x632580e6 blk_put_queue -EXPORT_SYMBOL vmlinux 0x63378d43 mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0x633d5f8c vga_switcheroo_register_audio_client -EXPORT_SYMBOL vmlinux 0x63473657 swiotlb_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x634ef257 __kernel_write -EXPORT_SYMBOL vmlinux 0x636a5691 acpi_register_ioapic -EXPORT_SYMBOL vmlinux 0x63721516 gen_pool_alloc -EXPORT_SYMBOL vmlinux 0x6377e61a fd_install -EXPORT_SYMBOL vmlinux 0x637ac119 tcp_enter_memory_pressure -EXPORT_SYMBOL vmlinux 0x637e7839 pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0x6388591c down_timeout -EXPORT_SYMBOL vmlinux 0x638af6aa tcp_parse_options -EXPORT_SYMBOL vmlinux 0x63918c3c skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0x63a01291 acpi_leave_sleep_state_prep -EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63ba00ab jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63c71431 phy_suspend -EXPORT_SYMBOL vmlinux 0x63d0a339 vme_master_request -EXPORT_SYMBOL vmlinux 0x63d57a95 gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0x63d68c72 sock_create -EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63ef1823 param_get_bool -EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user -EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure -EXPORT_SYMBOL vmlinux 0x64042708 adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x642b4cba nobh_write_end -EXPORT_SYMBOL vmlinux 0x6449fd41 acpi_install_address_space_handler -EXPORT_SYMBOL vmlinux 0x6460f5f0 devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0x646fc5a9 mount_pseudo -EXPORT_SYMBOL vmlinux 0x64939e5c pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x64a370e6 acpi_bus_get_status -EXPORT_SYMBOL vmlinux 0x64a4b84d cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x64ab0e98 wait_for_completion -EXPORT_SYMBOL vmlinux 0x64ab9900 vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0x64adc4e2 mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0x64ae389d devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x64be4831 seq_putc -EXPORT_SYMBOL vmlinux 0x64c0110a max8925_reg_read -EXPORT_SYMBOL vmlinux 0x64eae7ad set_memory_array_wb -EXPORT_SYMBOL vmlinux 0x64fa7693 __acpi_handle_debug -EXPORT_SYMBOL vmlinux 0x650f7d5f xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth -EXPORT_SYMBOL vmlinux 0x651a4139 test_taint -EXPORT_SYMBOL vmlinux 0x651b94c9 nf_reinject -EXPORT_SYMBOL vmlinux 0x652054ba inet_addr_type -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x654d21a8 eisa_driver_register -EXPORT_SYMBOL vmlinux 0x6559309e bh_submit_read -EXPORT_SYMBOL vmlinux 0x655f1ab0 set_memory_array_wc -EXPORT_SYMBOL vmlinux 0x6565d33f scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x6568863c filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x656d6751 page_follow_link_light -EXPORT_SYMBOL vmlinux 0x6586a6cd vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0x65a295bb atomic64_xchg_cx8 -EXPORT_SYMBOL vmlinux 0x65b992ac xen_alloc_p2m_entry -EXPORT_SYMBOL vmlinux 0x65bfafd7 bio_clone_bioset -EXPORT_SYMBOL vmlinux 0x65d0014c get_acl -EXPORT_SYMBOL vmlinux 0x65d50bf8 ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier -EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65e67574 sock_register -EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x65fc36aa tcp_prot -EXPORT_SYMBOL vmlinux 0x661e9ca8 tcf_em_unregister -EXPORT_SYMBOL vmlinux 0x66355efc vprintk -EXPORT_SYMBOL vmlinux 0x663f7cd0 acpi_install_table_handler -EXPORT_SYMBOL vmlinux 0x6641b0e0 scsi_cmd_ioctl -EXPORT_SYMBOL vmlinux 0x665fa030 alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0x666b16dc mutex_lock -EXPORT_SYMBOL vmlinux 0x6673b0f0 twl6040_reg_write -EXPORT_SYMBOL vmlinux 0x667e4e80 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x66996240 remap_vmalloc_range_partial -EXPORT_SYMBOL vmlinux 0x669bf80b proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x66a125c3 security_path_rename -EXPORT_SYMBOL vmlinux 0x66aa49ad __breadahead -EXPORT_SYMBOL vmlinux 0x66b19591 dev_mc_add -EXPORT_SYMBOL vmlinux 0x66b36d1b dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0x66c90eb6 inet_del_offload -EXPORT_SYMBOL vmlinux 0x66d804b1 percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0x66dfac81 user_revoke -EXPORT_SYMBOL vmlinux 0x66ebc5a2 inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0x671762ca security_path_rmdir -EXPORT_SYMBOL vmlinux 0x671c8df2 gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x671f0ccf jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0x6720a21e blk_queue_find_tag -EXPORT_SYMBOL vmlinux 0x6726de2c pci_iomap_range -EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 -EXPORT_SYMBOL vmlinux 0x672a8fec kmap_to_page -EXPORT_SYMBOL vmlinux 0x672efb6e jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x672f34d2 dquot_alloc -EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges -EXPORT_SYMBOL vmlinux 0x6763175e gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x67692d8a netif_device_detach -EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create -EXPORT_SYMBOL vmlinux 0x6774425b tty_hangup -EXPORT_SYMBOL vmlinux 0x679cb1ff __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67bffb47 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0x67c12c76 tcp_conn_request -EXPORT_SYMBOL vmlinux 0x67ee7862 fb_firmware_edid -EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x680c736a skb_vlan_untag -EXPORT_SYMBOL vmlinux 0x680ec266 _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0x680ef707 unlink_framebuffer -EXPORT_SYMBOL vmlinux 0x681a3fd7 kernel_sendpage -EXPORT_SYMBOL vmlinux 0x68285b68 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0x68329ee3 unregister_binfmt -EXPORT_SYMBOL vmlinux 0x6847abc2 tcp_recvmsg -EXPORT_SYMBOL vmlinux 0x6868e237 input_get_keycode -EXPORT_SYMBOL vmlinux 0x6876bcf5 netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0x68795230 lease_modify -EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x689ef72d padata_start -EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages -EXPORT_SYMBOL vmlinux 0x68a1caf5 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x68c2d8ca d_drop -EXPORT_SYMBOL vmlinux 0x68f5abcf setattr_copy -EXPORT_SYMBOL vmlinux 0x691001b5 acpi_evaluate_integer -EXPORT_SYMBOL vmlinux 0x691c6218 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0x691d0273 cdrom_release -EXPORT_SYMBOL vmlinux 0x691e5fde xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0x692e0437 xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0x6930fdaa fixed_phy_update_state -EXPORT_SYMBOL vmlinux 0x69368df5 phy_device_free -EXPORT_SYMBOL vmlinux 0x6966f138 cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 -EXPORT_SYMBOL vmlinux 0x69922d20 blk_queue_start_tag -EXPORT_SYMBOL vmlinux 0x699d5bf1 down_read -EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be -EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource -EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint -EXPORT_SYMBOL vmlinux 0x69bcac00 __pagevec_release -EXPORT_SYMBOL vmlinux 0x69ceb6a8 simple_setattr -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a10af41 dst_init -EXPORT_SYMBOL vmlinux 0x6a1f96a6 vga_switcheroo_get_client_state -EXPORT_SYMBOL vmlinux 0x6a27bfce csum_partial_copy_generic -EXPORT_SYMBOL vmlinux 0x6a2e9592 seq_pad -EXPORT_SYMBOL vmlinux 0x6a3a17be blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a60277d acpi_buffer_to_resource -EXPORT_SYMBOL vmlinux 0x6a61149f param_ops_byte -EXPORT_SYMBOL vmlinux 0x6a7079bb genphy_read_status -EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable -EXPORT_SYMBOL vmlinux 0x6a7a8062 xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0x6aa1e693 blk_end_request_cur -EXPORT_SYMBOL vmlinux 0x6abe7448 xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0x6abedaa5 stop_tty -EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be -EXPORT_SYMBOL vmlinux 0x6ad4ec25 force_sig -EXPORT_SYMBOL vmlinux 0x6ad85887 acpi_enable_gpe -EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device -EXPORT_SYMBOL vmlinux 0x6ae8ed88 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x6aeeded5 tty_lock -EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6b01160d keyring_search -EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x6b084bf5 pcim_iounmap -EXPORT_SYMBOL vmlinux 0x6b0f1f83 tcp_poll -EXPORT_SYMBOL vmlinux 0x6b10149a tty_register_driver -EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname -EXPORT_SYMBOL vmlinux 0x6b204c55 deactivate_locked_super -EXPORT_SYMBOL vmlinux 0x6b332375 bdi_setup_and_register -EXPORT_SYMBOL vmlinux 0x6b351437 kernel_listen -EXPORT_SYMBOL vmlinux 0x6b4fa689 dcb_getapp -EXPORT_SYMBOL vmlinux 0x6b626a51 skb_queue_tail -EXPORT_SYMBOL vmlinux 0x6b74b9be bit_waitqueue -EXPORT_SYMBOL vmlinux 0x6b9c5b4e blk_run_queue_async -EXPORT_SYMBOL vmlinux 0x6ba742b7 eth_mac_addr -EXPORT_SYMBOL vmlinux 0x6bb5ab4e wait_on_page_bit -EXPORT_SYMBOL vmlinux 0x6bbf374f lwtunnel_output -EXPORT_SYMBOL vmlinux 0x6bbf6c7d scsi_cmd_blk_ioctl -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bcf066d _raw_read_lock_irq -EXPORT_SYMBOL vmlinux 0x6bd9f6f4 md_update_sb -EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x6be96c19 generic_update_time -EXPORT_SYMBOL vmlinux 0x6bf1c17f pv_lock_ops -EXPORT_SYMBOL vmlinux 0x6c059325 km_report -EXPORT_SYMBOL vmlinux 0x6c091892 blk_queue_prep_rq -EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer -EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn -EXPORT_SYMBOL vmlinux 0x6c2a5662 ps2_init -EXPORT_SYMBOL vmlinux 0x6c2c4ab8 __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0x6c2e3320 strncmp -EXPORT_SYMBOL vmlinux 0x6c4e704b pci_clear_master -EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat -EXPORT_SYMBOL vmlinux 0x6c5b4d2b remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c65f9b7 poll_freewait -EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min -EXPORT_SYMBOL vmlinux 0x6c815881 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x6c8c4673 vm_insert_mixed -EXPORT_SYMBOL vmlinux 0x6c915fee tty_unregister_driver -EXPORT_SYMBOL vmlinux 0x6ca6b9b2 devm_gpiod_get_index_optional -EXPORT_SYMBOL vmlinux 0x6cab89a4 get_phy_device -EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy -EXPORT_SYMBOL vmlinux 0x6ce462b7 put_disk -EXPORT_SYMBOL vmlinux 0x6cf265f0 mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x6d110acf phy_attach -EXPORT_SYMBOL vmlinux 0x6d1d5d9b iosf_mbi_write -EXPORT_SYMBOL vmlinux 0x6d266a87 netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0x6d2746b1 replace_mount_options -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d2f73ea xfrm_input_resume -EXPORT_SYMBOL vmlinux 0x6d334118 __get_user_8 -EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x6d49d979 sk_common_release -EXPORT_SYMBOL vmlinux 0x6d57b5c6 inet_bind -EXPORT_SYMBOL vmlinux 0x6d5c7c4a genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x6d6ab785 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0x6d6c6c91 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x6d821600 skb_pull -EXPORT_SYMBOL vmlinux 0x6d831d18 xfrm_prepare_input -EXPORT_SYMBOL vmlinux 0x6dc0c9dc down_interruptible -EXPORT_SYMBOL vmlinux 0x6dc6dd56 down -EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6dfa7419 i2c_del_adapter -EXPORT_SYMBOL vmlinux 0x6dffa6da wait_iff_congested -EXPORT_SYMBOL vmlinux 0x6e02212a task_tgid_nr_ns -EXPORT_SYMBOL vmlinux 0x6e15e2e1 blk_put_request -EXPORT_SYMBOL vmlinux 0x6e2ac444 sk_dst_check -EXPORT_SYMBOL vmlinux 0x6e31eb3b kfree_skb -EXPORT_SYMBOL vmlinux 0x6e3a6063 vmap -EXPORT_SYMBOL vmlinux 0x6e450eb1 nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0x6e54bc50 eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0x6e6514ed radix_tree_insert -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e7e6423 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0x6e876152 cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6e9ded71 swiotlb_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0x6eed6550 d_prune_aliases -EXPORT_SYMBOL vmlinux 0x6ef66e8a _raw_read_lock_bh -EXPORT_SYMBOL vmlinux 0x6f0154b3 posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x6f051d53 vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0x6f117d61 unregister_cdrom -EXPORT_SYMBOL vmlinux 0x6f1bf786 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash -EXPORT_SYMBOL vmlinux 0x6f2e4f46 __cond_resched_lock -EXPORT_SYMBOL vmlinux 0x6f34a336 param_ops_invbool -EXPORT_SYMBOL vmlinux 0x6f43f3c5 pnp_unregister_driver -EXPORT_SYMBOL vmlinux 0x6f556bdb acpi_get_gpe_device -EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x6f985777 blk_mq_abort_requeue_list -EXPORT_SYMBOL vmlinux 0x6fa67165 filemap_fdatawait -EXPORT_SYMBOL vmlinux 0x6fa96702 scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag -EXPORT_SYMBOL vmlinux 0x6fc133e1 truncate_setsize -EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fd5d101 copy_strings_kernel -EXPORT_SYMBOL vmlinux 0x6fea769b security_path_truncate -EXPORT_SYMBOL vmlinux 0x6feb2039 acpi_write -EXPORT_SYMBOL vmlinux 0x6ff2a5e6 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0x700f3b44 scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier -EXPORT_SYMBOL vmlinux 0x7029f11b iommu_tbl_pool_init -EXPORT_SYMBOL vmlinux 0x702adf16 pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0x70351b52 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x703dff5a get_fs_type -EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq -EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma -EXPORT_SYMBOL vmlinux 0x70581684 dev_change_proto_down -EXPORT_SYMBOL vmlinux 0x70606d40 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x7062b4cd cmdline_parts_free -EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync -EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x70860c82 __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x7088ce72 printk_emit -EXPORT_SYMBOL vmlinux 0x708a79f7 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x70acd594 done_path_create -EXPORT_SYMBOL vmlinux 0x70d0e74c acpi_pm_device_run_wake -EXPORT_SYMBOL vmlinux 0x70d1f8f3 strncat -EXPORT_SYMBOL vmlinux 0x70d8ab82 acpi_acquire_global_lock -EXPORT_SYMBOL vmlinux 0x70e36162 dev_uc_unsync -EXPORT_SYMBOL vmlinux 0x70e817e9 nf_setsockopt -EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match -EXPORT_SYMBOL vmlinux 0x710a68ec swiotlb_map_sg_attrs -EXPORT_SYMBOL vmlinux 0x711219db mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0x7117fc5f vfs_readv -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x712ce4ab lwtunnel_encap_add_ops -EXPORT_SYMBOL vmlinux 0x712ed37b radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x713e26cd scsi_execute_req_flags -EXPORT_SYMBOL vmlinux 0x71433d8f dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0x714886da kobject_init -EXPORT_SYMBOL vmlinux 0x715b6c48 param_set_ullong -EXPORT_SYMBOL vmlinux 0x716f0dd0 call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x717e82de dev_get_by_name -EXPORT_SYMBOL vmlinux 0x7181ad9e dev_queue_xmit -EXPORT_SYMBOL vmlinux 0x718a2eb9 pipe_unlock -EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev -EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71a8b0bc vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0x71f65175 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x71f99af2 neigh_seq_next -EXPORT_SYMBOL vmlinux 0x723ad290 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0x723f55a7 serio_rescan -EXPORT_SYMBOL vmlinux 0x726bfe21 dquot_drop -EXPORT_SYMBOL vmlinux 0x72826680 simple_empty -EXPORT_SYMBOL vmlinux 0x7293738d iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0x72975c02 icmp_send -EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma -EXPORT_SYMBOL vmlinux 0x72c10362 fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x72c5ed46 dev_open -EXPORT_SYMBOL vmlinux 0x72d58de9 kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0x72e8c4a9 mb_cache_entry_insert -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x72f9d1fe mmc_erase -EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config -EXPORT_SYMBOL vmlinux 0x731b938b dquot_quotactl_ops -EXPORT_SYMBOL vmlinux 0x732503d1 __free_pages -EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf -EXPORT_SYMBOL vmlinux 0x7341a993 mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0x734a2c1a mpage_writepages -EXPORT_SYMBOL vmlinux 0x735513e1 bio_copy_kern -EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay -EXPORT_SYMBOL vmlinux 0x7362fc10 to_ndd -EXPORT_SYMBOL vmlinux 0x7363331d simple_unlink -EXPORT_SYMBOL vmlinux 0x738714db ida_pre_get -EXPORT_SYMBOL vmlinux 0x7387ea1f generic_file_llseek -EXPORT_SYMBOL vmlinux 0x738803e6 strnlen -EXPORT_SYMBOL vmlinux 0x738baecb dev_mc_init -EXPORT_SYMBOL vmlinux 0x73901522 vfs_mknod -EXPORT_SYMBOL vmlinux 0x7398af68 simple_lookup -EXPORT_SYMBOL vmlinux 0x73b3a834 vm_mmap -EXPORT_SYMBOL vmlinux 0x73d769b4 input_set_abs_params -EXPORT_SYMBOL vmlinux 0x73da1c6e kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable -EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy -EXPORT_SYMBOL vmlinux 0x73ea41c0 blk_start_queue_async -EXPORT_SYMBOL vmlinux 0x73f15a3f __scm_send -EXPORT_SYMBOL vmlinux 0x73f3a0ff netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi -EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x7412bf64 gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x7413793a EISA_bus -EXPORT_SYMBOL vmlinux 0x741c6901 blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0x743b4ae3 atomic64_inc_not_zero_cx8 -EXPORT_SYMBOL vmlinux 0x7458e3c5 proto_register -EXPORT_SYMBOL vmlinux 0x745bb9fc crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0x745f20a3 idr_is_empty -EXPORT_SYMBOL vmlinux 0x74645f87 sock_update_memcg -EXPORT_SYMBOL vmlinux 0x74699815 agp_backend_release -EXPORT_SYMBOL vmlinux 0x746d06ae vfs_iter_read -EXPORT_SYMBOL vmlinux 0x747163c5 netdev_err -EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x7485fe88 read_dev_sector -EXPORT_SYMBOL vmlinux 0x74860be3 blk_queue_dma_pad -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74e14fc3 tty_unthrottle -EXPORT_SYMBOL vmlinux 0x74e482a6 blk_register_region -EXPORT_SYMBOL vmlinux 0x74e5c98f ucs2_strnlen -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74efdd0a insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0x74f1a127 sock_no_sendpage -EXPORT_SYMBOL vmlinux 0x74f821f1 mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0x74fa8156 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv -EXPORT_SYMBOL vmlinux 0x75132a4a udp6_set_csum -EXPORT_SYMBOL vmlinux 0x75271716 save_processor_state -EXPORT_SYMBOL vmlinux 0x752fc0ee simple_fill_super -EXPORT_SYMBOL vmlinux 0x753182a4 build_skb -EXPORT_SYMBOL vmlinux 0x7531e3dc acpi_get_event_resources -EXPORT_SYMBOL vmlinux 0x7538b132 agp_off -EXPORT_SYMBOL vmlinux 0x7554c93c dev_uc_del -EXPORT_SYMBOL vmlinux 0x7557a280 dev_deactivate -EXPORT_SYMBOL vmlinux 0x756281fc mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0x7584294a twl6040_get_pll -EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 -EXPORT_SYMBOL vmlinux 0x75b0edc6 __neigh_create -EXPORT_SYMBOL vmlinux 0x75b21b06 dget_parent -EXPORT_SYMBOL vmlinux 0x75bc549a x86_cpu_to_apicid -EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc -EXPORT_SYMBOL vmlinux 0x75d21809 vprintk_emit -EXPORT_SYMBOL vmlinux 0x75fbdefd acpi_remove_address_space_handler -EXPORT_SYMBOL vmlinux 0x7602b688 write_one_page -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x762add85 atomic64_inc_return_cx8 -EXPORT_SYMBOL vmlinux 0x76319cb5 notify_change -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x7649160e scsi_verify_blk_ioctl -EXPORT_SYMBOL vmlinux 0x764bd77c request_resource -EXPORT_SYMBOL vmlinux 0x765a3a8c file_update_time -EXPORT_SYMBOL vmlinux 0x765aaad2 nla_append -EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc -EXPORT_SYMBOL vmlinux 0x769e06d7 smp_call_function_many -EXPORT_SYMBOL vmlinux 0x76ad0565 udp_disconnect -EXPORT_SYMBOL vmlinux 0x76b73d4e scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint -EXPORT_SYMBOL vmlinux 0x76d9bf11 crc32_be -EXPORT_SYMBOL vmlinux 0x76e098b7 mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0x76f6c5ef kmalloc_order -EXPORT_SYMBOL vmlinux 0x770a0036 isapnp_cfg_begin -EXPORT_SYMBOL vmlinux 0x771c5b49 inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir -EXPORT_SYMBOL vmlinux 0x775f2b49 phy_disconnect -EXPORT_SYMBOL vmlinux 0x77822297 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll -EXPORT_SYMBOL vmlinux 0x77a467a2 simple_transaction_get -EXPORT_SYMBOL vmlinux 0x77b8aaeb cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77e871e3 __blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x77fc1918 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0x780fdfd1 intel_enable_gtt -EXPORT_SYMBOL vmlinux 0x781046b6 param_ops_bint -EXPORT_SYMBOL vmlinux 0x7815f5d6 md_cluster_mod -EXPORT_SYMBOL vmlinux 0x7818ff00 proc_douintvec -EXPORT_SYMBOL vmlinux 0x7821ec28 vfs_symlink -EXPORT_SYMBOL vmlinux 0x782567ec memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0x7834ad07 single_open -EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t -EXPORT_SYMBOL vmlinux 0x783b977a kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0x783dc023 mfd_cell_disable -EXPORT_SYMBOL vmlinux 0x784dee93 would_dump -EXPORT_SYMBOL vmlinux 0x7856fefb param_set_ushort -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x789ebceb dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0x78a5ff8a fence_add_callback -EXPORT_SYMBOL vmlinux 0x78c1a85b blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x78d74834 nf_log_set -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78df8ef4 netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x78e739aa up -EXPORT_SYMBOL vmlinux 0x78e866a9 unregister_nls -EXPORT_SYMBOL vmlinux 0x78e8f655 tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0x78f20f5c tty_unlock -EXPORT_SYMBOL vmlinux 0x78f31c4a __tcf_hash_release -EXPORT_SYMBOL vmlinux 0x78fb4898 jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x78fc5997 padata_do_parallel -EXPORT_SYMBOL vmlinux 0x79068fda acpi_install_method -EXPORT_SYMBOL vmlinux 0x791d5f84 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x791ed1c9 rename_lock -EXPORT_SYMBOL vmlinux 0x79363c41 eisa_driver_unregister -EXPORT_SYMBOL vmlinux 0x79667860 abx500_get_register_interruptible -EXPORT_SYMBOL vmlinux 0x79674938 locks_remove_posix -EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0x7979b271 dev_close -EXPORT_SYMBOL vmlinux 0x797eec79 secpath_dup -EXPORT_SYMBOL vmlinux 0x798c57ea d_walk -EXPORT_SYMBOL vmlinux 0x79975c70 arp_send -EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79ab6f72 __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0x79ca786e mmc_hw_reset -EXPORT_SYMBOL vmlinux 0x79d05cb9 unregister_md_personality -EXPORT_SYMBOL vmlinux 0x79d840a3 bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x7a23add9 led_blink_set -EXPORT_SYMBOL vmlinux 0x7a2add7d current_kernel_time64 -EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number -EXPORT_SYMBOL vmlinux 0x7a4497db kzfree -EXPORT_SYMBOL vmlinux 0x7a4648bf load_nls -EXPORT_SYMBOL vmlinux 0x7a525926 security_path_mknod -EXPORT_SYMBOL vmlinux 0x7a5e6cb9 devm_clk_put -EXPORT_SYMBOL vmlinux 0x7a82cb47 rdmsrl_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7a97637f __starget_for_each_device -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7aa69529 skb_put -EXPORT_SYMBOL vmlinux 0x7ab7472b neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7accce24 kobject_del -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7aec9089 clear_user -EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf -EXPORT_SYMBOL vmlinux 0x7b134ddf acpi_get_name -EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array -EXPORT_SYMBOL vmlinux 0x7b199a94 blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0x7b1ade38 lz4_decompress -EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0x7b32ca39 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x7b3a22cd pci_disable_device -EXPORT_SYMBOL vmlinux 0x7b52a859 wrmsr_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap -EXPORT_SYMBOL vmlinux 0x7b635087 pnp_possible_config -EXPORT_SYMBOL vmlinux 0x7b63a413 sock_from_file -EXPORT_SYMBOL vmlinux 0x7b6ada6f genphy_suspend -EXPORT_SYMBOL vmlinux 0x7b76e5df i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0x7b904713 param_ops_ushort -EXPORT_SYMBOL vmlinux 0x7bac99a5 seq_vprintf -EXPORT_SYMBOL vmlinux 0x7bad7a1a acpi_walk_resources -EXPORT_SYMBOL vmlinux 0x7bb89238 dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0x7bd70dec vfs_read -EXPORT_SYMBOL vmlinux 0x7c1372e8 panic -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c538fa3 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x7c61340c __release_region -EXPORT_SYMBOL vmlinux 0x7c880ec7 __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0x7c8a1db5 scsi_init_io -EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read -EXPORT_SYMBOL vmlinux 0x7ca7dcae phy_write_mmd_indirect -EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down -EXPORT_SYMBOL vmlinux 0x7cc17255 proc_create_data -EXPORT_SYMBOL vmlinux 0x7cdaffa9 nf_log_packet -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7ce83365 acpi_remove_table_handler -EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies -EXPORT_SYMBOL vmlinux 0x7d3a124d param_get_short -EXPORT_SYMBOL vmlinux 0x7d42d750 kernel_connect -EXPORT_SYMBOL vmlinux 0x7d438318 pci_iounmap -EXPORT_SYMBOL vmlinux 0x7d464683 mpage_writepage -EXPORT_SYMBOL vmlinux 0x7d50af5d skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x7d655c59 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x7d684a2c sk_mc_loop -EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug -EXPORT_SYMBOL vmlinux 0x7d8489ce seq_escape -EXPORT_SYMBOL vmlinux 0x7d94f746 acpi_os_write_port -EXPORT_SYMBOL vmlinux 0x7d96cea3 wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0x7dbc2e57 mmiotrace_printk -EXPORT_SYMBOL vmlinux 0x7dd5f8ce ip_check_defrag -EXPORT_SYMBOL vmlinux 0x7de90121 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x7debc33a phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0x7deef2e1 inet_frags_fini -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7dfaa661 devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0x7e4cdcb2 proc_remove -EXPORT_SYMBOL vmlinux 0x7e5c35b1 gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0x7e77f2b2 inet_register_protosw -EXPORT_SYMBOL vmlinux 0x7e7ea282 set_pages_wb -EXPORT_SYMBOL vmlinux 0x7e7fc3fb __wake_up_bit -EXPORT_SYMBOL vmlinux 0x7ea7fa77 do_splice_direct -EXPORT_SYMBOL vmlinux 0x7ead89e8 param_ops_string -EXPORT_SYMBOL vmlinux 0x7ecb001b __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x7ecfb0a8 skb_pad -EXPORT_SYMBOL vmlinux 0x7ed81e8b __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x7ee73c0c memcg_socket_limit_enabled -EXPORT_SYMBOL vmlinux 0x7eec38e3 nvm_register -EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f060a81 simple_transaction_release -EXPORT_SYMBOL vmlinux 0x7f10651f inode_reclaim_rsv_space -EXPORT_SYMBOL vmlinux 0x7f1a8656 km_state_notify -EXPORT_SYMBOL vmlinux 0x7f1f9d19 blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f3357d2 __i2c_transfer -EXPORT_SYMBOL vmlinux 0x7f3fbc5e iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done -EXPORT_SYMBOL vmlinux 0x7f983449 scsi_device_put -EXPORT_SYMBOL vmlinux 0x7f99be99 pnp_release_card_device -EXPORT_SYMBOL vmlinux 0x7f9ec835 fbcon_set_bitops -EXPORT_SYMBOL vmlinux 0x7f9ed845 acpi_processor_notify_smm -EXPORT_SYMBOL vmlinux 0x7fd4c05c mem_cgroup_end_page_stat -EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fedace7 init_net -EXPORT_SYMBOL vmlinux 0x7ff1dc0f dquot_commit_info -EXPORT_SYMBOL vmlinux 0x7ff4c845 dma_release_declared_memory -EXPORT_SYMBOL vmlinux 0x8002dc2b inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x8036639b clocksource_unregister -EXPORT_SYMBOL vmlinux 0x8048e00f nvm_end_io -EXPORT_SYMBOL vmlinux 0x8056cfc2 blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0x805b0944 devm_gpiod_put -EXPORT_SYMBOL vmlinux 0x80661920 jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x808097a5 skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0x8080ffb8 iterate_dir -EXPORT_SYMBOL vmlinux 0x808b0250 write_cache_pages -EXPORT_SYMBOL vmlinux 0x809388ca idr_destroy -EXPORT_SYMBOL vmlinux 0x80a56a80 padata_set_cpumasks -EXPORT_SYMBOL vmlinux 0x80a5780e dev_set_mtu -EXPORT_SYMBOL vmlinux 0x80bce0ba phy_ethtool_sset -EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80ce1b49 mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80d9ca85 paravirt_ticketlocks_enabled -EXPORT_SYMBOL vmlinux 0x80eb423b acpi_get_object_info -EXPORT_SYMBOL vmlinux 0x80f3bddf seq_file_path -EXPORT_SYMBOL vmlinux 0x81144f9d idr_find_slowpath -EXPORT_SYMBOL vmlinux 0x81191596 textsearch_prepare -EXPORT_SYMBOL vmlinux 0x811d7ea9 phy_device_create -EXPORT_SYMBOL vmlinux 0x8126eec6 proc_symlink -EXPORT_SYMBOL vmlinux 0x8127b603 i2c_del_driver -EXPORT_SYMBOL vmlinux 0x81401a80 mutex_unlock -EXPORT_SYMBOL vmlinux 0x81472677 acpi_get_table -EXPORT_SYMBOL vmlinux 0x814d17cd search_binary_handler -EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x815c56d0 cpu_present_mask -EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page -EXPORT_SYMBOL vmlinux 0x818c901e mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0x81acfbfa i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x81c7b55a scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x81d490e6 agp_alloc_bridge -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81dd6879 agp_put_bridge -EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x81f450f5 seq_puts -EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill -EXPORT_SYMBOL vmlinux 0x8209280e nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x8212721d xenbus_dev_request_and_reply -EXPORT_SYMBOL vmlinux 0x822a16a9 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0x822ddafd ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0x822fd9c0 scsi_scan_target -EXPORT_SYMBOL vmlinux 0x8235805b memmove -EXPORT_SYMBOL vmlinux 0x823cd7ca generic_fillattr -EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun -EXPORT_SYMBOL vmlinux 0x8272d24c dquot_disable -EXPORT_SYMBOL vmlinux 0x8278f306 pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes -EXPORT_SYMBOL vmlinux 0x8288765b xfrm_register_type -EXPORT_SYMBOL vmlinux 0x82935bdf scsi_device_set_state -EXPORT_SYMBOL vmlinux 0x829534b3 fence_free -EXPORT_SYMBOL vmlinux 0x82abbe1a tcp_init_sock -EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched -EXPORT_SYMBOL vmlinux 0x82c08a6a dentry_needs_remove_privs -EXPORT_SYMBOL vmlinux 0x82d6bfc8 neigh_update -EXPORT_SYMBOL vmlinux 0x83094432 block_write_end -EXPORT_SYMBOL vmlinux 0x830e10c2 add_random_ready_callback -EXPORT_SYMBOL vmlinux 0x830e547b ioremap_prot -EXPORT_SYMBOL vmlinux 0x8329e6f0 memset -EXPORT_SYMBOL vmlinux 0x832c3fc8 blk_stop_queue -EXPORT_SYMBOL vmlinux 0x832fa791 __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x833c03aa acpi_enable_all_runtime_gpes -EXPORT_SYMBOL vmlinux 0x834a975c phy_detach -EXPORT_SYMBOL vmlinux 0x8372cd2f __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x8382e59a acpi_walk_resource_buffer -EXPORT_SYMBOL vmlinux 0x8383d6a9 eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x83866d8f xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x839b9308 kfree_skb_list -EXPORT_SYMBOL vmlinux 0x83a03f42 phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0x83a14d72 set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x83a4e699 param_ops_long -EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init -EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83d38729 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x83dc5f1c audit_log_start -EXPORT_SYMBOL vmlinux 0x83ef9089 inet_release -EXPORT_SYMBOL vmlinux 0x83f02413 pnp_register_driver -EXPORT_SYMBOL vmlinux 0x84060081 xen_poll_irq_timeout -EXPORT_SYMBOL vmlinux 0x8415ccc2 netdev_master_upper_dev_link_private -EXPORT_SYMBOL vmlinux 0x8417f512 acpi_update_all_gpes -EXPORT_SYMBOL vmlinux 0x8427600e generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0x843c63f3 send_sig -EXPORT_SYMBOL vmlinux 0x844b46a7 unregister_quota_format -EXPORT_SYMBOL vmlinux 0x844c5c51 inet6_release -EXPORT_SYMBOL vmlinux 0x846f59c0 agp_generic_enable -EXPORT_SYMBOL vmlinux 0x848176bb __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0x8487ebed neigh_xmit -EXPORT_SYMBOL vmlinux 0x84aeb0ba mmc_add_host -EXPORT_SYMBOL vmlinux 0x84c254cd writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x84de0340 bprm_change_interp -EXPORT_SYMBOL vmlinux 0x84e57df5 dma_mark_declared_memory_occupied -EXPORT_SYMBOL vmlinux 0x84e7e4c9 ppp_input -EXPORT_SYMBOL vmlinux 0x84fe4416 dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload -EXPORT_SYMBOL vmlinux 0x85052bd1 ppp_dev_name -EXPORT_SYMBOL vmlinux 0x8516a24f mapping_tagged -EXPORT_SYMBOL vmlinux 0x8526c35a remove_wait_queue -EXPORT_SYMBOL vmlinux 0x85350626 vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0x853830b1 tty_set_operations -EXPORT_SYMBOL vmlinux 0x8544726f blk_fetch_request -EXPORT_SYMBOL vmlinux 0x8559315a devm_request_resource -EXPORT_SYMBOL vmlinux 0x855e393c uart_add_one_port -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x857582f7 acpi_enable_all_wakeup_gpes -EXPORT_SYMBOL vmlinux 0x857ca8ee keyring_alloc -EXPORT_SYMBOL vmlinux 0x858b3fe3 free_iova_mem -EXPORT_SYMBOL vmlinux 0x8594457d nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x859bbc4e nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0x85a4d1c5 __serio_register_driver -EXPORT_SYMBOL vmlinux 0x85aa195b inet6_bind -EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85d73a7e pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0x85d76cc6 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85ed145b pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85f1b7f2 pci_save_state -EXPORT_SYMBOL vmlinux 0x85f65f1c pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x8607d14d pagevec_lookup -EXPORT_SYMBOL vmlinux 0x86095e16 lookup_one_len -EXPORT_SYMBOL vmlinux 0x86182550 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0x861e22a4 acpi_map_cpu -EXPORT_SYMBOL vmlinux 0x862452d2 simple_rename -EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x865d263c tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0x8663b33d bio_split -EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0x86813ecc vga_switcheroo_register_client -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x86a4889a kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0x86b02695 param_set_invbool -EXPORT_SYMBOL vmlinux 0x86be810f follow_up -EXPORT_SYMBOL vmlinux 0x86c356c4 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0x86d44a4f cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0x86e15a06 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0x86e262c9 devm_get_gpiod_from_child -EXPORT_SYMBOL vmlinux 0x86ef8e36 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x87031d23 devm_clk_get -EXPORT_SYMBOL vmlinux 0x8704ac15 sk_net_capable -EXPORT_SYMBOL vmlinux 0x871027ac account_page_redirty -EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags -EXPORT_SYMBOL vmlinux 0x8720144a iterate_mounts -EXPORT_SYMBOL vmlinux 0x87694521 sb_set_blocksize -EXPORT_SYMBOL vmlinux 0x876dafc3 ec_write -EXPORT_SYMBOL vmlinux 0x876e4073 xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale -EXPORT_SYMBOL vmlinux 0x878cd015 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0x8792531c mmc_put_card -EXPORT_SYMBOL vmlinux 0x8798b16b uart_remove_one_port -EXPORT_SYMBOL vmlinux 0x879e8d37 bdi_register_owner -EXPORT_SYMBOL vmlinux 0x879f270a tcp_shutdown -EXPORT_SYMBOL vmlinux 0x87a06f12 page_put_link -EXPORT_SYMBOL vmlinux 0x87aaddf8 wrmsr_safe_regs_on_cpu -EXPORT_SYMBOL vmlinux 0x87acc9de dev_mc_flush -EXPORT_SYMBOL vmlinux 0x87b262a0 get_unmapped_area -EXPORT_SYMBOL vmlinux 0x87c70acb posix_test_lock -EXPORT_SYMBOL vmlinux 0x87deae14 dev_emerg -EXPORT_SYMBOL vmlinux 0x87e11ae8 sock_setsockopt -EXPORT_SYMBOL vmlinux 0x8819c36c inode_sub_rsv_space -EXPORT_SYMBOL vmlinux 0x881c213a devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0x881e7422 dev_change_carrier -EXPORT_SYMBOL vmlinux 0x882e3963 agp_allocate_memory -EXPORT_SYMBOL vmlinux 0x883e15d7 first_ec -EXPORT_SYMBOL vmlinux 0x88493718 jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0x8856a8b0 netdev_emerg -EXPORT_SYMBOL vmlinux 0x888b3c20 tcp_md5_hash_header -EXPORT_SYMBOL vmlinux 0x88a339be xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0x88b76ab1 pci_set_power_state -EXPORT_SYMBOL vmlinux 0x8913e882 blk_run_queue -EXPORT_SYMBOL vmlinux 0x892b26a0 set_memory_nx -EXPORT_SYMBOL vmlinux 0x895164ba zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0x89546aeb __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x895dad9b ilookup5 -EXPORT_SYMBOL vmlinux 0x898aa0e5 pneigh_lookup -EXPORT_SYMBOL vmlinux 0x899e54cc nf_log_unregister -EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0x89b12d6a netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0x89b60925 sock_kfree_s -EXPORT_SYMBOL vmlinux 0x89ba5744 sk_capable -EXPORT_SYMBOL vmlinux 0x89d085dc skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x8a0b12c6 complete_all -EXPORT_SYMBOL vmlinux 0x8a16002b __dev_get_by_name -EXPORT_SYMBOL vmlinux 0x8a162941 vga_switcheroo_register_handler -EXPORT_SYMBOL vmlinux 0x8a19c8e4 dst_destroy -EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies -EXPORT_SYMBOL vmlinux 0x8a35c1e3 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0x8a3bf6d9 processors -EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a50fd0b inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x8a51687c padata_add_cpu -EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning -EXPORT_SYMBOL vmlinux 0x8a687936 simple_dname -EXPORT_SYMBOL vmlinux 0x8a6944f9 percpu_counter_set -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a80d7a5 acpi_error -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8ab02d8c vga_switcheroo_init_domain_pm_optimus_hdmi_audio -EXPORT_SYMBOL vmlinux 0x8ab39d66 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0x8abb8c40 simple_follow_link -EXPORT_SYMBOL vmlinux 0x8ac846f1 dma_find_channel -EXPORT_SYMBOL vmlinux 0x8ae1a256 __get_user_pages -EXPORT_SYMBOL vmlinux 0x8aefe1c2 pci_claim_resource -EXPORT_SYMBOL vmlinux 0x8af5d017 sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0x8b0d33a3 da903x_query_status -EXPORT_SYMBOL vmlinux 0x8b18496f __copy_to_user_ll -EXPORT_SYMBOL vmlinux 0x8b359a91 console_stop -EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last -EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x8b5a7c80 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b7dc7fe __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup -EXPORT_SYMBOL vmlinux 0x8bbf3d4a alloc_disk_node -EXPORT_SYMBOL vmlinux 0x8bd48813 fb_pan_display -EXPORT_SYMBOL vmlinux 0x8c093878 pnp_start_dev -EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 -EXPORT_SYMBOL vmlinux 0x8c4f6c81 dump_page -EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x8c793f8c block_invalidatepage -EXPORT_SYMBOL vmlinux 0x8c7cbcc6 key_task_permission -EXPORT_SYMBOL vmlinux 0x8c84db14 forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x8c88d0a0 bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0x8cbcab52 inet6_add_offload -EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep -EXPORT_SYMBOL vmlinux 0x8cce8449 mmc_start_req -EXPORT_SYMBOL vmlinux 0x8cd03332 dma_declare_coherent_memory -EXPORT_SYMBOL vmlinux 0x8cda373b __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending -EXPORT_SYMBOL vmlinux 0x8cdca672 blk_mq_delay_queue -EXPORT_SYMBOL vmlinux 0x8ce90992 devm_ioremap -EXPORT_SYMBOL vmlinux 0x8d094ab7 ps2_begin_command -EXPORT_SYMBOL vmlinux 0x8d176729 qdisc_destroy -EXPORT_SYMBOL vmlinux 0x8d1bcb5b vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0x8d21c2c3 kmem_cache_free -EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem -EXPORT_SYMBOL vmlinux 0x8d552bd9 mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d6b2ce1 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x8d6b9997 security_file_permission -EXPORT_SYMBOL vmlinux 0x8d6f81b4 __div64_32 -EXPORT_SYMBOL vmlinux 0x8d72495b __getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d7d3afa drop_nlink -EXPORT_SYMBOL vmlinux 0x8d838d91 ida_remove -EXPORT_SYMBOL vmlinux 0x8d8d96c6 acpi_get_sleep_type_data -EXPORT_SYMBOL vmlinux 0x8d90765a dentry_unhash -EXPORT_SYMBOL vmlinux 0x8d9c9d78 swiotlb_unmap_sg -EXPORT_SYMBOL vmlinux 0x8da1a3cb acpi_remove_interface -EXPORT_SYMBOL vmlinux 0x8daf8c42 dql_init -EXPORT_SYMBOL vmlinux 0x8db59c7d get_empty_filp -EXPORT_SYMBOL vmlinux 0x8dbabab7 rwsem_downgrade_wake -EXPORT_SYMBOL vmlinux 0x8dc6e564 restore_processor_state -EXPORT_SYMBOL vmlinux 0x8dc79763 dm_unregister_target -EXPORT_SYMBOL vmlinux 0x8dcbb0dc security_path_symlink -EXPORT_SYMBOL vmlinux 0x8de2a806 find_get_pages_contig -EXPORT_SYMBOL vmlinux 0x8de318ee netlink_capable -EXPORT_SYMBOL vmlinux 0x8df5abc6 iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0x8e002cda acpi_remove_gpe_block -EXPORT_SYMBOL vmlinux 0x8e0ddf79 input_grab_device -EXPORT_SYMBOL vmlinux 0x8e12bea9 serio_unregister_port -EXPORT_SYMBOL vmlinux 0x8e1a9e6f __check_sticky -EXPORT_SYMBOL vmlinux 0x8e276d6d scsi_remove_device -EXPORT_SYMBOL vmlinux 0x8e346efe genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0x8e371438 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x8e888ec3 cpumask_next_and -EXPORT_SYMBOL vmlinux 0x8e8e20da tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x8e952baa fget -EXPORT_SYMBOL vmlinux 0x8ea83fba nvm_get_blk -EXPORT_SYMBOL vmlinux 0x8eaa07a0 get_disk -EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler -EXPORT_SYMBOL vmlinux 0x8ec1aff6 sock_i_uid -EXPORT_SYMBOL vmlinux 0x8eca6e62 neigh_table_clear -EXPORT_SYMBOL vmlinux 0x8ee2be06 security_path_chmod -EXPORT_SYMBOL vmlinux 0x8f073bcc clkdev_add -EXPORT_SYMBOL vmlinux 0x8f1adf0b inet6_protos -EXPORT_SYMBOL vmlinux 0x8f25b2dc path_get -EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus -EXPORT_SYMBOL vmlinux 0x8f649f74 gen_new_estimator -EXPORT_SYMBOL vmlinux 0x8f6ec99c swiotlb_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x8f743fff eth_type_trans -EXPORT_SYMBOL vmlinux 0x8f868d44 proto_unregister -EXPORT_SYMBOL vmlinux 0x8f975a33 request_key -EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 -EXPORT_SYMBOL vmlinux 0x8fa84929 rtnl_notify -EXPORT_SYMBOL vmlinux 0x8fa9125e inet_frag_destroy -EXPORT_SYMBOL vmlinux 0x8fabce44 mount_subtree -EXPORT_SYMBOL vmlinux 0x8fdc658b vfs_llseek -EXPORT_SYMBOL vmlinux 0x8fe59cef convert_art_to_tsc -EXPORT_SYMBOL vmlinux 0x8ff4079b pv_irq_ops -EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 -EXPORT_SYMBOL vmlinux 0x90189b26 simple_dentry_operations -EXPORT_SYMBOL vmlinux 0x90229fe4 i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x904409c6 acpi_set_firmware_waking_vector -EXPORT_SYMBOL vmlinux 0x905f08e9 __skb_get_hash -EXPORT_SYMBOL vmlinux 0x90695906 vme_free_consistent -EXPORT_SYMBOL vmlinux 0x906df52a eth_header_parse -EXPORT_SYMBOL vmlinux 0x907da5e0 mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0x908575fe queued_write_lock_slowpath -EXPORT_SYMBOL vmlinux 0x90922867 __ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x909643f4 __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x90965130 drop_super -EXPORT_SYMBOL vmlinux 0x90a6ccc9 napi_gro_frags -EXPORT_SYMBOL vmlinux 0x90b66b5d bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0x90c8ca7a redraw_screen -EXPORT_SYMBOL vmlinux 0x90f4f947 fsnotify_init_mark -EXPORT_SYMBOL vmlinux 0x91161d10 pci_set_mwi -EXPORT_SYMBOL vmlinux 0x91207dbe devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0x91218a58 udp6_csum_init -EXPORT_SYMBOL vmlinux 0x912672c2 generic_start_io_acct -EXPORT_SYMBOL vmlinux 0x912e865d dma_common_mmap -EXPORT_SYMBOL vmlinux 0x9139a08c generic_file_read_iter -EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 -EXPORT_SYMBOL vmlinux 0x915e5a6d audit_log_task_info -EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb -EXPORT_SYMBOL vmlinux 0x91715312 sprintf -EXPORT_SYMBOL vmlinux 0x91967e8e xen_selfballoon_init -EXPORT_SYMBOL vmlinux 0x919b1813 clear_inode -EXPORT_SYMBOL vmlinux 0x91a54906 mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0x91cc22fb mntput -EXPORT_SYMBOL vmlinux 0x91de9244 phy_device_remove -EXPORT_SYMBOL vmlinux 0x91f29748 copy_page_from_iter -EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 -EXPORT_SYMBOL vmlinux 0x920c7de0 __alloc_skb -EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x923b6edb filp_open -EXPORT_SYMBOL vmlinux 0x924de8cc pci_dev_get -EXPORT_SYMBOL vmlinux 0x9268d52f pci_set_dma_seg_boundary -EXPORT_SYMBOL vmlinux 0x9273b849 napi_complete_done -EXPORT_SYMBOL vmlinux 0x9279e0f4 filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0x92897e3d default_idle -EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm -EXPORT_SYMBOL vmlinux 0x92ad1c20 tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0x92d1fe23 cap_mmap_file -EXPORT_SYMBOL vmlinux 0x92dce7e0 pipe_lock -EXPORT_SYMBOL vmlinux 0x92f6767f lg_local_lock -EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x9305b282 __bread_gfp -EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x9310dcc2 seq_release -EXPORT_SYMBOL vmlinux 0x931e8daa pci_select_bars -EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0x932493a8 iosf_mbi_read -EXPORT_SYMBOL vmlinux 0x932d1356 alloc_buffer_head -EXPORT_SYMBOL vmlinux 0x93302e05 netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0x933180ef current_task -EXPORT_SYMBOL vmlinux 0x933c7ad7 register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x933e0adf xfrm4_prepare_output -EXPORT_SYMBOL vmlinux 0x93429631 netif_rx_ni -EXPORT_SYMBOL vmlinux 0x9343dc5f xfrm_state_update -EXPORT_SYMBOL vmlinux 0x9360dc6a pci_enable_device_io -EXPORT_SYMBOL vmlinux 0x9361ed7f tcp_disconnect -EXPORT_SYMBOL vmlinux 0x9363b969 finish_no_open -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x93792806 tcf_exts_validate -EXPORT_SYMBOL vmlinux 0x93797db1 dev_get_flags -EXPORT_SYMBOL vmlinux 0x937d571e pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x939feee3 vme_dma_request -EXPORT_SYMBOL vmlinux 0x93a53706 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x93a8b041 blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93b55c82 unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x93c02b3b trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages -EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int -EXPORT_SYMBOL vmlinux 0x94034e01 read_cache_page -EXPORT_SYMBOL vmlinux 0x940f9cf6 kblockd_schedule_delayed_work -EXPORT_SYMBOL vmlinux 0x941195ef sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x941f99d7 nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0x942474a2 pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0x94421251 uart_get_divisor -EXPORT_SYMBOL vmlinux 0x944749c8 blk_queue_split -EXPORT_SYMBOL vmlinux 0x945bd1fc __pci_enable_wake -EXPORT_SYMBOL vmlinux 0x9464df17 acpi_device_set_power -EXPORT_SYMBOL vmlinux 0x946b05ac dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0x947be04d dquot_transfer -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x94b541b5 cpu_active_mask -EXPORT_SYMBOL vmlinux 0x94d945b2 rtmsg_ifinfo -EXPORT_SYMBOL vmlinux 0x94e0d3aa sock_no_setsockopt -EXPORT_SYMBOL vmlinux 0x94e28088 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0x94eea794 getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x95074a31 inode_dio_wait -EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x95201350 unregister_netdev -EXPORT_SYMBOL vmlinux 0x952a1117 genl_unregister_family -EXPORT_SYMBOL vmlinux 0x95366bb5 blk_queue_end_tag -EXPORT_SYMBOL vmlinux 0x95395301 acpi_exception -EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init -EXPORT_SYMBOL vmlinux 0x9550bdfa km_is_alive -EXPORT_SYMBOL vmlinux 0x955d6471 crypto_sha256_update -EXPORT_SYMBOL vmlinux 0x9579430c param_get_ushort -EXPORT_SYMBOL vmlinux 0x959134f5 bdev_stack_limits -EXPORT_SYMBOL vmlinux 0x9595f807 pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x95bd6e26 acpi_install_sci_handler -EXPORT_SYMBOL vmlinux 0x95d77a19 km_state_expired -EXPORT_SYMBOL vmlinux 0x960dfaf5 radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0x9617a00b xfrm6_prepare_output -EXPORT_SYMBOL vmlinux 0x963dc37c seq_open_private -EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x965d144c mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0x966b0077 agp_bind_memory -EXPORT_SYMBOL vmlinux 0x967260c5 serio_unregister_driver -EXPORT_SYMBOL vmlinux 0x967b1aa1 invalidate_partition -EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x96a1850c bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96d27f4c pci_dev_driver -EXPORT_SYMBOL vmlinux 0x96d4ce60 touch_atime -EXPORT_SYMBOL vmlinux 0x96df1db0 put_filp -EXPORT_SYMBOL vmlinux 0x96eea27e __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0x9711bd37 kmap_high -EXPORT_SYMBOL vmlinux 0x972b8d2b balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier -EXPORT_SYMBOL vmlinux 0x974a99fd posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x975a1053 __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x9779be85 account_page_dirtied -EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state -EXPORT_SYMBOL vmlinux 0x979ce9fd peernet2id_alloc -EXPORT_SYMBOL vmlinux 0x97aea253 flush_signals -EXPORT_SYMBOL vmlinux 0x97b7d558 kmap_atomic -EXPORT_SYMBOL vmlinux 0x97c5bd0a acpi_unload_parent_table -EXPORT_SYMBOL vmlinux 0x97de0ddd acpi_install_gpe_block -EXPORT_SYMBOL vmlinux 0x9807ae0d serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0x980db025 generic_pipe_buf_steal -EXPORT_SYMBOL vmlinux 0x980e7ed1 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x9814c7a5 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint -EXPORT_SYMBOL vmlinux 0x9825dbd9 twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0x983812a0 kern_path_create -EXPORT_SYMBOL vmlinux 0x986771e7 tty_port_put -EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x9878745c _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0x987f03f4 inet_frag_kill -EXPORT_SYMBOL vmlinux 0x988ed85d set_memory_x -EXPORT_SYMBOL vmlinux 0x98a6fd4d dmam_release_declared_memory -EXPORT_SYMBOL vmlinux 0x98d1b714 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x98d1c64e xfrm_init_replay -EXPORT_SYMBOL vmlinux 0x98e68eca cancel_delayed_work -EXPORT_SYMBOL vmlinux 0x990e08e6 seq_open -EXPORT_SYMBOL vmlinux 0x991b6747 swiotlb_sync_single_for_device -EXPORT_SYMBOL vmlinux 0x991c7d29 vfs_whiteout -EXPORT_SYMBOL vmlinux 0x99233c32 cpu_core_map -EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x9962df81 register_quota_format -EXPORT_SYMBOL vmlinux 0x996c29ea pci_bus_get -EXPORT_SYMBOL vmlinux 0x9984f15d sock_get_timestamp -EXPORT_SYMBOL vmlinux 0x99852d50 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99a2d0b3 vfs_create -EXPORT_SYMBOL vmlinux 0x99b95407 scm_fp_dup -EXPORT_SYMBOL vmlinux 0x99bbfd62 dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x99c9b9fe scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering -EXPORT_SYMBOL vmlinux 0x99d06816 inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99e1856e kobject_add -EXPORT_SYMBOL vmlinux 0x99e361e3 ip_getsockopt -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval -EXPORT_SYMBOL vmlinux 0x9a271ac4 elevator_change -EXPORT_SYMBOL vmlinux 0x9a3d4d7a dm_ratelimit_state -EXPORT_SYMBOL vmlinux 0x9a68e727 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x9a6a83f9 cmos_lock -EXPORT_SYMBOL vmlinux 0x9a7ec8be proc_set_user -EXPORT_SYMBOL vmlinux 0x9a802bed blk_mq_map_queue -EXPORT_SYMBOL vmlinux 0x9ac17729 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0x9ac88e04 vc_cons -EXPORT_SYMBOL vmlinux 0x9ae952ac xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach -EXPORT_SYMBOL vmlinux 0x9af84720 kmap -EXPORT_SYMBOL vmlinux 0x9b03dad8 sk_ns_capable -EXPORT_SYMBOL vmlinux 0x9b0a4c3e blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x9b27ba95 unlock_new_inode -EXPORT_SYMBOL vmlinux 0x9b2f991c pskb_expand_head -EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page -EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize -EXPORT_SYMBOL vmlinux 0x9b72637a cdrom_check_events -EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x9ba146bf wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split -EXPORT_SYMBOL vmlinux 0x9bbac0b9 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put -EXPORT_SYMBOL vmlinux 0x9bc66443 alloc_disk -EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x9bee27fd nvm_generic_to_addr_mode -EXPORT_SYMBOL vmlinux 0x9c1508ff mmc_flush_cache -EXPORT_SYMBOL vmlinux 0x9c158ee5 bdi_register_dev -EXPORT_SYMBOL vmlinux 0x9c2c944a __copy_from_user_ll_nocache_nozero -EXPORT_SYMBOL vmlinux 0x9c2cbc41 from_kuid_munged -EXPORT_SYMBOL vmlinux 0x9c34126b tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x9c3b448e neigh_destroy -EXPORT_SYMBOL vmlinux 0x9c3e203d inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0x9c3fac77 napi_gro_receive -EXPORT_SYMBOL vmlinux 0x9c46e90f dev_remove_offload -EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x9c5249ba ab3100_event_register -EXPORT_SYMBOL vmlinux 0x9c628c1a scsi_device_resume -EXPORT_SYMBOL vmlinux 0x9c752d83 clear_nlink -EXPORT_SYMBOL vmlinux 0x9c8c3756 pci_enable_device -EXPORT_SYMBOL vmlinux 0x9c9e8654 pnp_activate_dev -EXPORT_SYMBOL vmlinux 0x9ca14ae1 vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cac3aaa devfreq_add_device -EXPORT_SYMBOL vmlinux 0x9cbfa0d0 bdget_disk -EXPORT_SYMBOL vmlinux 0x9ce169af neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x9cfb90dd mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d10f0e0 dev_disable_lro -EXPORT_SYMBOL vmlinux 0x9d163bf0 xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0x9d33ef5e acpi_enable -EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init -EXPORT_SYMBOL vmlinux 0x9d6e097c dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0x9d80171f scm_detach_fds -EXPORT_SYMBOL vmlinux 0x9d82b261 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x9d856f87 pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0x9d937397 security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0x9da6ecb6 devm_gpiod_get_array -EXPORT_SYMBOL vmlinux 0x9dfe7307 lz4_decompress_unknownoutputsize -EXPORT_SYMBOL vmlinux 0x9e087ed0 __block_write_begin -EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e24b023 iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0x9e2dc994 try_to_writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x9e363b6b acpi_disable_gpe -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e622dd1 __splice_from_pipe -EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read -EXPORT_SYMBOL vmlinux 0x9e6a215f inode_set_flags -EXPORT_SYMBOL vmlinux 0x9e6af763 d_instantiate_unique -EXPORT_SYMBOL vmlinux 0x9e6e56e0 rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value -EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay -EXPORT_SYMBOL vmlinux 0x9e9510d0 devfreq_resume_device -EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9ea0c91f proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0x9eaa5d0b inet_offloads -EXPORT_SYMBOL vmlinux 0x9eaf4194 dev_base_lock -EXPORT_SYMBOL vmlinux 0x9eb6dbc1 scsi_remove_target -EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource -EXPORT_SYMBOL vmlinux 0x9eda4718 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x9ee59afe vme_dma_list_add -EXPORT_SYMBOL vmlinux 0x9ef2a94d eth_gro_complete -EXPORT_SYMBOL vmlinux 0x9f0ab7dc __cleancache_get_page -EXPORT_SYMBOL vmlinux 0x9f1eb277 bitmap_unplug -EXPORT_SYMBOL vmlinux 0x9f265a22 __vfs_read -EXPORT_SYMBOL vmlinux 0x9f2d5fd1 qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0x9f356559 blk_queue_stack_limits -EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f59e594 textsearch_unregister -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9fbf2bda __skb_get_hash_flowi4 -EXPORT_SYMBOL vmlinux 0x9fcf9dee thermal_cdev_update -EXPORT_SYMBOL vmlinux 0x9fd048cc pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9fe9192c security_path_unlink -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed -EXPORT_SYMBOL vmlinux 0xa0139dc5 __inode_permission -EXPORT_SYMBOL vmlinux 0xa019c993 generic_shutdown_super -EXPORT_SYMBOL vmlinux 0xa022d4df set_page_dirty -EXPORT_SYMBOL vmlinux 0xa02d4777 kfree_skb_partial -EXPORT_SYMBOL vmlinux 0xa03497da kernel_bind -EXPORT_SYMBOL vmlinux 0xa03cabcc vfs_statfs -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa0463dd3 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0xa073d865 netlink_broadcast -EXPORT_SYMBOL vmlinux 0xa0792541 mb_cache_entry_alloc -EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init -EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem -EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa10132d8 dev_mc_sync -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa114c39d mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xa1254f20 scsi_print_result -EXPORT_SYMBOL vmlinux 0xa1270c87 tty_unregister_device -EXPORT_SYMBOL vmlinux 0xa137defa tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts -EXPORT_SYMBOL vmlinux 0xa1936285 request_key_async_with_auxdata -EXPORT_SYMBOL vmlinux 0xa19de3fd boot_cpu_data -EXPORT_SYMBOL vmlinux 0xa1a942f7 led_blink_set_oneshot -EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode -EXPORT_SYMBOL vmlinux 0xa1ba43a9 param_set_int -EXPORT_SYMBOL vmlinux 0xa1be58ea jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0xa1c2ec15 block_commit_write -EXPORT_SYMBOL vmlinux 0xa1c35853 skb_dequeue -EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched -EXPORT_SYMBOL vmlinux 0xa1cc7564 devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create -EXPORT_SYMBOL vmlinux 0xa1ea23fd pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold -EXPORT_SYMBOL vmlinux 0xa21d0b6c put_tty_driver -EXPORT_SYMBOL vmlinux 0xa220a660 dma_alloc_from_coherent -EXPORT_SYMBOL vmlinux 0xa2439a4d seq_lseek -EXPORT_SYMBOL vmlinux 0xa2690aba netdev_warn -EXPORT_SYMBOL vmlinux 0xa26d8579 security_path_mkdir -EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0xa2988e45 abx500_event_registers_startup_state_get -EXPORT_SYMBOL vmlinux 0xa298d8fc security_mmap_file -EXPORT_SYMBOL vmlinux 0xa2a2650a sock_cmsg_send -EXPORT_SYMBOL vmlinux 0xa2c7e717 mmc_power_save_host -EXPORT_SYMBOL vmlinux 0xa2d73538 netdev_notify_peers -EXPORT_SYMBOL vmlinux 0xa3065a02 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set -EXPORT_SYMBOL vmlinux 0xa34fcb2d mempool_create_node -EXPORT_SYMBOL vmlinux 0xa350a8f8 set_memory_array_uc -EXPORT_SYMBOL vmlinux 0xa36f2bd5 skb_copy_expand -EXPORT_SYMBOL vmlinux 0xa37014a1 cfb_copyarea -EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get -EXPORT_SYMBOL vmlinux 0xa38fcc4b tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0xa3aa3e3a ps2_command -EXPORT_SYMBOL vmlinux 0xa3c9ada4 skb_seq_read -EXPORT_SYMBOL vmlinux 0xa3dcbfd3 register_sysctl_paths -EXPORT_SYMBOL vmlinux 0xa3e3d180 mmc_wait_for_app_cmd -EXPORT_SYMBOL vmlinux 0xa3e73f8e single_open_size -EXPORT_SYMBOL vmlinux 0xa3f62003 kunmap -EXPORT_SYMBOL vmlinux 0xa415f024 i2c_release_client -EXPORT_SYMBOL vmlinux 0xa418fa91 neigh_for_each -EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf -EXPORT_SYMBOL vmlinux 0xa43bc062 agp_generic_alloc_by_type -EXPORT_SYMBOL vmlinux 0xa445a6b7 dev_set_allmulti -EXPORT_SYMBOL vmlinux 0xa44781fc netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0xa458cdf6 __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0xa4605623 blk_make_request -EXPORT_SYMBOL vmlinux 0xa4654529 generic_perform_write -EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset -EXPORT_SYMBOL vmlinux 0xa483cd3f sock_alloc_file -EXPORT_SYMBOL vmlinux 0xa4adcd55 end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0xa4b8dd66 ip_route_me_harder -EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep -EXPORT_SYMBOL vmlinux 0xa4bd30e8 block_write_begin -EXPORT_SYMBOL vmlinux 0xa4cd667e tcp_rcv_established -EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush -EXPORT_SYMBOL vmlinux 0xa4d83193 netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0xa4d94a26 skb_free_datagram -EXPORT_SYMBOL vmlinux 0xa4e0badb register_framebuffer -EXPORT_SYMBOL vmlinux 0xa4e70180 abx500_get_register_page_interruptible -EXPORT_SYMBOL vmlinux 0xa4f8b24e devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0xa5129973 __scm_destroy -EXPORT_SYMBOL vmlinux 0xa514c173 d_alloc_pseudo -EXPORT_SYMBOL vmlinux 0xa51904d9 blk_finish_request -EXPORT_SYMBOL vmlinux 0xa51cdfe8 __FIXADDR_TOP -EXPORT_SYMBOL vmlinux 0xa52c6c1b dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa56322c9 blk_complete_request -EXPORT_SYMBOL vmlinux 0xa572d88f dev_mc_del_global -EXPORT_SYMBOL vmlinux 0xa574d85d sk_stream_write_space -EXPORT_SYMBOL vmlinux 0xa57d4711 kernel_sock_ioctl -EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes -EXPORT_SYMBOL vmlinux 0xa5b46106 wait_for_key_construction -EXPORT_SYMBOL vmlinux 0xa5cf5572 bdi_register -EXPORT_SYMBOL vmlinux 0xa60c9c0b pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0xa613cc1c follow_pfn -EXPORT_SYMBOL vmlinux 0xa62b1c05 bio_integrity_endio -EXPORT_SYMBOL vmlinux 0xa62e6e4f acpi_get_table_with_size -EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember -EXPORT_SYMBOL vmlinux 0xa6431a81 inode_add_bytes -EXPORT_SYMBOL vmlinux 0xa655007e pnp_device_attach -EXPORT_SYMBOL vmlinux 0xa65d2116 tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0xa66c7e6e blkdev_get -EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0xa677e239 pagecache_write_end -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa6839f82 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0xa68a1a07 kmem_cache_size -EXPORT_SYMBOL vmlinux 0xa68c714e param_array_ops -EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0xa6983152 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0xa6b2cb14 revalidate_disk -EXPORT_SYMBOL vmlinux 0xa6b839d7 iov_iter_kvec -EXPORT_SYMBOL vmlinux 0xa6bbd805 __wake_up -EXPORT_SYMBOL vmlinux 0xa6bd63ca acpi_bios_error -EXPORT_SYMBOL vmlinux 0xa6f14846 vme_irq_free -EXPORT_SYMBOL vmlinux 0xa6f1487c generic_block_fiemap -EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function -EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi -EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 -EXPORT_SYMBOL vmlinux 0xa748f8a2 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0xa76bf4ce pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0xa76f5927 xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0xa778b78c pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0xa788f1a0 i8253_lock -EXPORT_SYMBOL vmlinux 0xa78979fc copy_page_to_iter -EXPORT_SYMBOL vmlinux 0xa7cf6c2f atomic64_dec_return_cx8 -EXPORT_SYMBOL vmlinux 0xa7d6965e generic_file_open -EXPORT_SYMBOL vmlinux 0xa7ea4740 posix_lock_file -EXPORT_SYMBOL vmlinux 0xa816491d fbcon_set_rotate -EXPORT_SYMBOL vmlinux 0xa8186b1d pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0xa81c2edf netlink_ns_capable -EXPORT_SYMBOL vmlinux 0xa81e8344 pci_choose_state -EXPORT_SYMBOL vmlinux 0xa831cb89 set_pages_x -EXPORT_SYMBOL vmlinux 0xa834d3bc iget5_locked -EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa84433e2 tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0xa8514c4d abx500_register_ops -EXPORT_SYMBOL vmlinux 0xa8531824 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0xa85b6b30 scsi_unregister -EXPORT_SYMBOL vmlinux 0xa866fedc acpi_bus_get_device -EXPORT_SYMBOL vmlinux 0xa86aee12 lwtunnel_get_encap_size -EXPORT_SYMBOL vmlinux 0xa871c114 xattr_full_name -EXPORT_SYMBOL vmlinux 0xa8721b97 system_state -EXPORT_SYMBOL vmlinux 0xa88661b6 phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0xa888f238 ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0xa88aeecc pcie_set_readrq -EXPORT_SYMBOL vmlinux 0xa88b7a9d __skb_tx_hash -EXPORT_SYMBOL vmlinux 0xa8b70cad mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0xa8fa84e9 give_up_console -EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send -EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion -EXPORT_SYMBOL vmlinux 0xa94bf737 pci_map_biosrom -EXPORT_SYMBOL vmlinux 0xa95dd9f8 pnp_request_card_device -EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa9a8e17f arch_phys_wc_add -EXPORT_SYMBOL vmlinux 0xa9bfb672 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0xa9c0773a page_address -EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0xa9c7a6b7 pci_set_master -EXPORT_SYMBOL vmlinux 0xa9cfe574 mmc_get_card -EXPORT_SYMBOL vmlinux 0xa9cfea6b x86_hyper -EXPORT_SYMBOL vmlinux 0xa9dc5e19 key_revoke -EXPORT_SYMBOL vmlinux 0xa9ea8a41 mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0xa9f4e635 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0xaa48c151 crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0xaa58c962 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0xaa5bd08d __pv_queued_spin_lock_slowpath -EXPORT_SYMBOL vmlinux 0xaa6567b8 posix_unblock_lock -EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r -EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa88f149 lwtunnel_build_state -EXPORT_SYMBOL vmlinux 0xaa8fea18 acpi_processor_register_performance -EXPORT_SYMBOL vmlinux 0xaad00d24 param_ops_uint -EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0xaad32e7b twl6040_reg_read -EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state -EXPORT_SYMBOL vmlinux 0xaade4c38 blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0xaae13d98 nobh_writepage -EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable -EXPORT_SYMBOL vmlinux 0xaaee0c55 __blk_run_queue -EXPORT_SYMBOL vmlinux 0xaaf2b3a7 vfs_readf -EXPORT_SYMBOL vmlinux 0xaafbb678 elevator_exit -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0xab199610 nvm_put_blk -EXPORT_SYMBOL vmlinux 0xab1f2564 dev_addr_del -EXPORT_SYMBOL vmlinux 0xab453559 i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0xab551fad acpi_get_data_full -EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off -EXPORT_SYMBOL vmlinux 0xab65ed80 set_memory_uc -EXPORT_SYMBOL vmlinux 0xab694444 bsearch -EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog -EXPORT_SYMBOL vmlinux 0xab770678 rdmsr_safe_regs_on_cpu -EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab87cc47 skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0xaba3159c gen_pool_destroy -EXPORT_SYMBOL vmlinux 0xaba3ad0c radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0xaba7666c pci_bus_put -EXPORT_SYMBOL vmlinux 0xabc7406a jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev -EXPORT_SYMBOL vmlinux 0xabd1890f inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xabd75081 pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0xabed2a53 vfs_iter_write -EXPORT_SYMBOL vmlinux 0xabfcb4c3 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable -EXPORT_SYMBOL vmlinux 0xac0db7e0 down_read_trylock -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac233c0a tcp_destroy_cgroup -EXPORT_SYMBOL vmlinux 0xac250536 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0xac29c893 lease_get_mtime -EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear -EXPORT_SYMBOL vmlinux 0xac4bb252 dqput -EXPORT_SYMBOL vmlinux 0xac51536b reservation_object_add_shared_fence -EXPORT_SYMBOL vmlinux 0xac730ed6 tty_vhangup -EXPORT_SYMBOL vmlinux 0xac769c08 irq_set_chip -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacab9990 elv_rb_add -EXPORT_SYMBOL vmlinux 0xacb19971 vfs_setpos -EXPORT_SYMBOL vmlinux 0xacb4d6a2 fsnotify_put_group -EXPORT_SYMBOL vmlinux 0xacb99769 ida_destroy -EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton -EXPORT_SYMBOL vmlinux 0xacd6036b forget_cached_acl -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xacfe53a5 netdev_state_change -EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad072607 blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0xad0f752a _dev_info -EXPORT_SYMBOL vmlinux 0xad13bedf mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0xad3e22a1 __secpath_destroy -EXPORT_SYMBOL vmlinux 0xad44bc97 tty_port_destroy -EXPORT_SYMBOL vmlinux 0xad547243 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xad5645db posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0xad693325 pci_scan_single_device -EXPORT_SYMBOL vmlinux 0xad698f77 dqstats -EXPORT_SYMBOL vmlinux 0xad6e4bb6 mempool_free -EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event -EXPORT_SYMBOL vmlinux 0xad85822a md_unregister_thread -EXPORT_SYMBOL vmlinux 0xad9fd613 kthread_create_on_node -EXPORT_SYMBOL vmlinux 0xadac3c97 skb_vlan_push -EXPORT_SYMBOL vmlinux 0xadb21eff phy_resume -EXPORT_SYMBOL vmlinux 0xadbe4f56 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0xadc8948b set_security_override -EXPORT_SYMBOL vmlinux 0xadc98852 tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0xadf7a61b i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae02dd3e jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0xae044bc7 panic_notifier_list -EXPORT_SYMBOL vmlinux 0xae2d4c19 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0xae315524 md_finish_reshape -EXPORT_SYMBOL vmlinux 0xae49501b dma_release_from_coherent -EXPORT_SYMBOL vmlinux 0xae4f2ef4 lro_receive_skb -EXPORT_SYMBOL vmlinux 0xae54fe89 napi_get_frags -EXPORT_SYMBOL vmlinux 0xae5c86f5 jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0xae5cc546 nvm_erase_blk -EXPORT_SYMBOL vmlinux 0xae5fb259 scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0xae648cba jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0xae6c7fa7 pci_read_vpd -EXPORT_SYMBOL vmlinux 0xae77a595 radix_tree_gang_lookup_slot -EXPORT_SYMBOL vmlinux 0xae85a27e radix_tree_lookup -EXPORT_SYMBOL vmlinux 0xae8e065f fb_set_cmap -EXPORT_SYMBOL vmlinux 0xae996911 pci_unregister_driver -EXPORT_SYMBOL vmlinux 0xaea976a8 acpi_check_resource_conflict -EXPORT_SYMBOL vmlinux 0xaead915c input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact -EXPORT_SYMBOL vmlinux 0xaee7db6b arp_xmit -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf4b1540 acpi_get_irq_routing_table -EXPORT_SYMBOL vmlinux 0xaf611eac amd_nb_misc_ids -EXPORT_SYMBOL vmlinux 0xaf6c3d05 ht_create_irq -EXPORT_SYMBOL vmlinux 0xaf6f68ad mutex_trylock -EXPORT_SYMBOL vmlinux 0xaf9affc8 vga_put -EXPORT_SYMBOL vmlinux 0xafa046f0 __vfs_write -EXPORT_SYMBOL vmlinux 0xafa450ff i2c_transfer -EXPORT_SYMBOL vmlinux 0xafb5b5df simple_readpage -EXPORT_SYMBOL vmlinux 0xafd1f949 release_firmware -EXPORT_SYMBOL vmlinux 0xafdbc913 i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0xaff7942e inet_dgram_ops -EXPORT_SYMBOL vmlinux 0xb00cb23c param_set_bool -EXPORT_SYMBOL vmlinux 0xb016e46a dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0xb01b1db8 intel_gtt_insert_sg_entries -EXPORT_SYMBOL vmlinux 0xb021ce32 may_umount_tree -EXPORT_SYMBOL vmlinux 0xb0540351 fs_bio_set -EXPORT_SYMBOL vmlinux 0xb0558b11 irq_to_desc -EXPORT_SYMBOL vmlinux 0xb05ac3aa __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb0655b11 vfs_path_lookup -EXPORT_SYMBOL vmlinux 0xb069a523 clkdev_drop -EXPORT_SYMBOL vmlinux 0xb081b9c3 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0b380ab __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0xb0b61c07 xfrm_input -EXPORT_SYMBOL vmlinux 0xb0dc920c bioset_create -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0eb41ff iommu_tbl_range_free -EXPORT_SYMBOL vmlinux 0xb0ef7477 bitmap_endwrite -EXPORT_SYMBOL vmlinux 0xb0ff6725 acl_by_type -EXPORT_SYMBOL vmlinux 0xb10cae96 jbd2_journal_load -EXPORT_SYMBOL vmlinux 0xb118123c bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xb11e8073 dquot_resume -EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on -EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb12f293b set_pages_array_wb -EXPORT_SYMBOL vmlinux 0xb14d5442 blk_mq_can_queue -EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table -EXPORT_SYMBOL vmlinux 0xb167dac3 agp_backend_acquire -EXPORT_SYMBOL vmlinux 0xb16980ac i2c_add_adapter -EXPORT_SYMBOL vmlinux 0xb182660d simple_release_fs -EXPORT_SYMBOL vmlinux 0xb187b3a8 lg_lock_init -EXPORT_SYMBOL vmlinux 0xb1acbd7a __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1c48579 sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xb1cfad22 rdmsr_on_cpu -EXPORT_SYMBOL vmlinux 0xb1d11308 input_allocate_device -EXPORT_SYMBOL vmlinux 0xb1eb7222 fb_find_mode -EXPORT_SYMBOL vmlinux 0xb1f9272e __wait_on_buffer -EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu -EXPORT_SYMBOL vmlinux 0xb226f9e0 devm_ioremap_nocache -EXPORT_SYMBOL vmlinux 0xb24582d7 pcim_pin_device -EXPORT_SYMBOL vmlinux 0xb249fd93 agp_generic_type_to_mask_type -EXPORT_SYMBOL vmlinux 0xb2606408 crypto_sha1_update -EXPORT_SYMBOL vmlinux 0xb2638f5a pnp_find_card -EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0xb2723b1c pnp_get_resource -EXPORT_SYMBOL vmlinux 0xb27ad159 devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xb293e718 twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0xb29c921f dquot_quota_on -EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xb2c1d9c0 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0xb2cfea83 netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on -EXPORT_SYMBOL vmlinux 0xb2d5a552 complete -EXPORT_SYMBOL vmlinux 0xb2f74fb6 intel_gmch_remove -EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 -EXPORT_SYMBOL vmlinux 0xb31010e6 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0xb311d595 sync_blockdev -EXPORT_SYMBOL vmlinux 0xb3284531 acpi_dbg_layer -EXPORT_SYMBOL vmlinux 0xb32d7b7e radix_tree_tagged -EXPORT_SYMBOL vmlinux 0xb336fd0e i2c_master_send -EXPORT_SYMBOL vmlinux 0xb3442516 genl_notify -EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit -EXPORT_SYMBOL vmlinux 0xb35f9427 i2c_use_client -EXPORT_SYMBOL vmlinux 0xb35fd024 tty_port_tty_get -EXPORT_SYMBOL vmlinux 0xb36235cb blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0xb377cd5d md_set_array_sectors -EXPORT_SYMBOL vmlinux 0xb3b00569 __devm_release_region -EXPORT_SYMBOL vmlinux 0xb3bb33ff xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xb3cf4103 scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3e0590d acpi_set_current_resources -EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb3f99ac3 dump_skip -EXPORT_SYMBOL vmlinux 0xb41536e0 skb_clone -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb431e837 thaw_bdev -EXPORT_SYMBOL vmlinux 0xb4390f9a mcount -EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem -EXPORT_SYMBOL vmlinux 0xb454a2ff mntget -EXPORT_SYMBOL vmlinux 0xb45578b8 memscan -EXPORT_SYMBOL vmlinux 0xb4632a9a mmc_gpio_request_cd -EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0xb4870f64 get_user_pages_locked -EXPORT_SYMBOL vmlinux 0xb48fe751 dm_put_table_device -EXPORT_SYMBOL vmlinux 0xb4923ae2 nf_hook_slow -EXPORT_SYMBOL vmlinux 0xb4a1fdac up_write -EXPORT_SYMBOL vmlinux 0xb4aad2eb lwtunnel_input -EXPORT_SYMBOL vmlinux 0xb4b2b55f blk_requeue_request -EXPORT_SYMBOL vmlinux 0xb4cf3d20 alloc_xenballooned_pages -EXPORT_SYMBOL vmlinux 0xb4d02e2f security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0xb4dbf56b pid_task -EXPORT_SYMBOL vmlinux 0xb4e66479 scsi_host_alloc -EXPORT_SYMBOL vmlinux 0xb4e89ce7 blk_integrity_compare -EXPORT_SYMBOL vmlinux 0xb504c942 ip_options_compile -EXPORT_SYMBOL vmlinux 0xb5099738 ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0xb5229392 cpu_sibling_map -EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range -EXPORT_SYMBOL vmlinux 0xb5604b25 bio_copy_data -EXPORT_SYMBOL vmlinux 0xb57110ae netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb58f44e2 pci_enable_msi_range -EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5c5b061 ihold -EXPORT_SYMBOL vmlinux 0xb5c5e755 bio_add_pc_page -EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free -EXPORT_SYMBOL vmlinux 0xb5d17c1f tty_port_init -EXPORT_SYMBOL vmlinux 0xb5dbd16a __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0xb600db08 netlink_ack -EXPORT_SYMBOL vmlinux 0xb61d62d7 udplite_prot -EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one -EXPORT_SYMBOL vmlinux 0xb626be67 scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0xb63331b6 set_groups -EXPORT_SYMBOL vmlinux 0xb636c487 km_query -EXPORT_SYMBOL vmlinux 0xb670412f jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif -EXPORT_SYMBOL vmlinux 0xb68b4c45 generic_block_bmap -EXPORT_SYMBOL vmlinux 0xb6930b3c fsnotify_add_mark -EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb6a1aaba fsnotify_put_mark -EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit -EXPORT_SYMBOL vmlinux 0xb6c06cf3 rwsem_down_write_failed -EXPORT_SYMBOL vmlinux 0xb6e41883 memcmp -EXPORT_SYMBOL vmlinux 0xb6ed1e53 strncpy -EXPORT_SYMBOL vmlinux 0xb6eff01f blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0xb70ca2ae neigh_direct_output -EXPORT_SYMBOL vmlinux 0xb711783d tso_build_data -EXPORT_SYMBOL vmlinux 0xb7314627 filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xb73b3728 genphy_resume -EXPORT_SYMBOL vmlinux 0xb73b4886 scsi_target_resume -EXPORT_SYMBOL vmlinux 0xb73f669b fb_is_primary_device -EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xb74c569b bdgrab -EXPORT_SYMBOL vmlinux 0xb758b225 acpi_disable_event -EXPORT_SYMBOL vmlinux 0xb766b5d0 __dquot_free_space -EXPORT_SYMBOL vmlinux 0xb76e9e12 uart_match_port -EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb77b9f81 devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xb7872a5b generic_file_write_iter -EXPORT_SYMBOL vmlinux 0xb79ec15d mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0xb79f33f6 netpoll_cleanup -EXPORT_SYMBOL vmlinux 0xb7a6d5e6 free_buffer_head -EXPORT_SYMBOL vmlinux 0xb7b0ad80 ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0xb7bb0230 devfreq_add_governor -EXPORT_SYMBOL vmlinux 0xb7beff46 scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7d651fa md_integrity_register -EXPORT_SYMBOL vmlinux 0xb7d7a06d md_done_sync -EXPORT_SYMBOL vmlinux 0xb7f55ecc atomic64_add_return_cx8 -EXPORT_SYMBOL vmlinux 0xb7f6ef59 __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0xb7fc2b41 proc_mkdir -EXPORT_SYMBOL vmlinux 0xb8095c31 pnp_register_card_driver -EXPORT_SYMBOL vmlinux 0xb813f2d5 __sock_create -EXPORT_SYMBOL vmlinux 0xb8160b72 device_get_mac_address -EXPORT_SYMBOL vmlinux 0xb81960ca snprintf -EXPORT_SYMBOL vmlinux 0xb81b6f5f blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0xb8285ef5 arp_create -EXPORT_SYMBOL vmlinux 0xb8370414 sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0xb839e07c ll_rw_block -EXPORT_SYMBOL vmlinux 0xb859915f blk_queue_resize_tags -EXPORT_SYMBOL vmlinux 0xb865bc47 abx500_remove_ops -EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 -EXPORT_SYMBOL vmlinux 0xb87dcd6f mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0xb8854ac8 sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0xb89b9d7f pnpbios_protocol -EXPORT_SYMBOL vmlinux 0xb8a3a5ae mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0xb8b6a76c __percpu_counter_add -EXPORT_SYMBOL vmlinux 0xb8cf9c6d netdev_crit -EXPORT_SYMBOL vmlinux 0xb8e50e63 ps2_sendbyte -EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 -EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0xb8ef1292 datagram_poll -EXPORT_SYMBOL vmlinux 0xb8ef502b get_io_context -EXPORT_SYMBOL vmlinux 0xb8efdaf4 check_disk_change -EXPORT_SYMBOL vmlinux 0xb8fdcd10 mempool_resize -EXPORT_SYMBOL vmlinux 0xb9033219 blk_rq_set_block_pc -EXPORT_SYMBOL vmlinux 0xb91de18a md_check_recovery -EXPORT_SYMBOL vmlinux 0xb926ed41 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0xb927d3f4 md_write_start -EXPORT_SYMBOL vmlinux 0xb9cac993 scsi_print_command -EXPORT_SYMBOL vmlinux 0xb9d0d1ef dmam_pool_create -EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xba00b4dc __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0xba0b8bd9 pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0xba1b5838 proc_create_mount_point -EXPORT_SYMBOL vmlinux 0xba1c9d16 __nd_driver_register -EXPORT_SYMBOL vmlinux 0xba2d8594 ec_read -EXPORT_SYMBOL vmlinux 0xba2f112c bioset_free -EXPORT_SYMBOL vmlinux 0xba3471eb vme_slave_request -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba6852cc vme_master_mmap -EXPORT_SYMBOL vmlinux 0xba75963c unlock_page -EXPORT_SYMBOL vmlinux 0xba99a06d qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0xbab055c9 dma_async_device_register -EXPORT_SYMBOL vmlinux 0xbab7a1b9 md_error -EXPORT_SYMBOL vmlinux 0xbab7aff3 param_set_bint -EXPORT_SYMBOL vmlinux 0xbab88ff1 end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0xbac3cbf2 ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0xbae3d602 d_alloc -EXPORT_SYMBOL vmlinux 0xbae4bd07 devm_kvasprintf -EXPORT_SYMBOL vmlinux 0xbae97ec3 input_set_keycode -EXPORT_SYMBOL vmlinux 0xbafcdedd get_tz_trend -EXPORT_SYMBOL vmlinux 0xbaffe035 udp_set_csum -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb15e78a ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb421a96 __find_get_block -EXPORT_SYMBOL vmlinux 0xbb52b4e0 __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xbb7a774e __inet_hash -EXPORT_SYMBOL vmlinux 0xbb7ef2f7 dev_notice -EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font -EXPORT_SYMBOL vmlinux 0xbba3c8c0 sock_sendmsg -EXPORT_SYMBOL vmlinux 0xbba43948 inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0xbba70a2d _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0xbbae7660 pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0xbbc6f0a9 scsi_is_host_device -EXPORT_SYMBOL vmlinux 0xbbeb1ec6 ioremap_wt -EXPORT_SYMBOL vmlinux 0xbbf8aa27 bioset_integrity_create -EXPORT_SYMBOL vmlinux 0xbbfd79a0 set_pages_uc -EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit -EXPORT_SYMBOL vmlinux 0xbc358c6a dump_trace -EXPORT_SYMBOL vmlinux 0xbc3d54aa cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0xbc3f86fa brioctl_set -EXPORT_SYMBOL vmlinux 0xbc435770 dump_stack -EXPORT_SYMBOL vmlinux 0xbc4a0a8f fsnotify_get_group -EXPORT_SYMBOL vmlinux 0xbc5f49cc loop_backing_file -EXPORT_SYMBOL vmlinux 0xbc618141 single_release -EXPORT_SYMBOL vmlinux 0xbc72b0fc set_create_files_as -EXPORT_SYMBOL vmlinux 0xbc811b13 x86_dma_fallback_dev -EXPORT_SYMBOL vmlinux 0xbc923675 d_rehash -EXPORT_SYMBOL vmlinux 0xbca37953 pci_request_region_exclusive -EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user -EXPORT_SYMBOL vmlinux 0xbcc40a4c read_code -EXPORT_SYMBOL vmlinux 0xbcd8a608 blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xbce0bab9 fb_validate_mode -EXPORT_SYMBOL vmlinux 0xbcfb08c7 __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0xbd02174b blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0xbd1ff748 neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0xbd24aab2 mmc_interrupt_hpi -EXPORT_SYMBOL vmlinux 0xbd446f20 mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0xbd4947f2 tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0xbd59dd7a sk_wait_data -EXPORT_SYMBOL vmlinux 0xbd637321 netdev_notice -EXPORT_SYMBOL vmlinux 0xbd6d9457 tcf_destroy_chain -EXPORT_SYMBOL vmlinux 0xbd79eb4f sg_miter_skip -EXPORT_SYMBOL vmlinux 0xbd81e852 pci_remove_bus -EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug -EXPORT_SYMBOL vmlinux 0xbd9b6200 agp_generic_free_by_type -EXPORT_SYMBOL vmlinux 0xbdae4391 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0xbdaf5b07 acpi_os_read_port -EXPORT_SYMBOL vmlinux 0xbdc1ed63 dcache_dir_close -EXPORT_SYMBOL vmlinux 0xbdcdd816 blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0xbdd5f990 hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0xbdf6a5cc dmam_alloc_coherent -EXPORT_SYMBOL vmlinux 0xbdf8bd80 pci_find_bus -EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp -EXPORT_SYMBOL vmlinux 0xbe16e9b7 request_key_async -EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto -EXPORT_SYMBOL vmlinux 0xbe271159 sync_filesystem -EXPORT_SYMBOL vmlinux 0xbe34011a generic_make_request -EXPORT_SYMBOL vmlinux 0xbe34d664 scsi_rescan_device -EXPORT_SYMBOL vmlinux 0xbe743bb0 simple_transaction_set -EXPORT_SYMBOL vmlinux 0xbe8c37d9 intel_scu_ipc_simple_command -EXPORT_SYMBOL vmlinux 0xbe9a1dcd mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0xbea61a80 d_instantiate_no_diralias -EXPORT_SYMBOL vmlinux 0xbead97dc md_reload_sb -EXPORT_SYMBOL vmlinux 0xbec30d05 x86_match_cpu -EXPORT_SYMBOL vmlinux 0xbed2c8fb pagevec_lookup_tag -EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbef8f8c8 skb_orphan_partial -EXPORT_SYMBOL vmlinux 0xbf02f336 vlan_vid_del -EXPORT_SYMBOL vmlinux 0xbf0407c6 phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0xbf0e2f68 tcp_prequeue -EXPORT_SYMBOL vmlinux 0xbf21dc8a alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0xbf28eaa4 call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0xbf2ec081 kill_block_super -EXPORT_SYMBOL vmlinux 0xbf332cb4 mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0xbf3bf346 netif_device_attach -EXPORT_SYMBOL vmlinux 0xbf4d65b1 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0xbf552af4 blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0xbf604fc3 xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0xbf75d1df pci_release_region -EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0xbf8b39e9 isapnp_present -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfae8f00 nvm_register_mgr -EXPORT_SYMBOL vmlinux 0xbfaedb5d __skb_gso_segment -EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep -EXPORT_SYMBOL vmlinux 0xbfd66694 pcie_get_mps -EXPORT_SYMBOL vmlinux 0xbfde47f9 nf_log_trace -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xc01eed33 __copy_from_user_ll_nozero -EXPORT_SYMBOL vmlinux 0xc0241fd4 fb_set_suspend -EXPORT_SYMBOL vmlinux 0xc03e5aeb tty_devnum -EXPORT_SYMBOL vmlinux 0xc05e355f idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xc068440e __kfifo_alloc -EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write -EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit -EXPORT_SYMBOL vmlinux 0xc0aca99b xfrm_unregister_mode -EXPORT_SYMBOL vmlinux 0xc0cd3b13 ___ratelimit -EXPORT_SYMBOL vmlinux 0xc0ed9606 dst_release -EXPORT_SYMBOL vmlinux 0xc0f05259 d_splice_alias -EXPORT_SYMBOL vmlinux 0xc119254f generic_key_instantiate -EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten -EXPORT_SYMBOL vmlinux 0xc13025ee con_copy_unimap -EXPORT_SYMBOL vmlinux 0xc13b2c8b dmam_declare_coherent_memory -EXPORT_SYMBOL vmlinux 0xc1437de3 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0xc1517937 sg_miter_stop -EXPORT_SYMBOL vmlinux 0xc155a750 kernel_read -EXPORT_SYMBOL vmlinux 0xc169e242 sock_init_data -EXPORT_SYMBOL vmlinux 0xc16f0f34 mmc_register_driver -EXPORT_SYMBOL vmlinux 0xc1a6b020 uart_update_timeout -EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla -EXPORT_SYMBOL vmlinux 0xc1f62fad neigh_parms_release -EXPORT_SYMBOL vmlinux 0xc22e8703 scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0xc233253f call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup -EXPORT_SYMBOL vmlinux 0xc25230ac netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0xc280a525 __copy_from_user_ll -EXPORT_SYMBOL vmlinux 0xc28674dc get_super_thawed -EXPORT_SYMBOL vmlinux 0xc289c963 mmc_can_erase -EXPORT_SYMBOL vmlinux 0xc2a174f7 ether_setup -EXPORT_SYMBOL vmlinux 0xc2a26a64 mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xc2cb1bdf mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0xc2cbfad7 kernel_accept -EXPORT_SYMBOL vmlinux 0xc2d00562 __brelse -EXPORT_SYMBOL vmlinux 0xc2d711e1 krealloc -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2e63b78 consume_skb -EXPORT_SYMBOL vmlinux 0xc33124e2 address_space_init_once -EXPORT_SYMBOL vmlinux 0xc33b97f2 mount_nodev -EXPORT_SYMBOL vmlinux 0xc353045c pci_enable_msix -EXPORT_SYMBOL vmlinux 0xc396a4e3 ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 -EXPORT_SYMBOL vmlinux 0xc3b1e142 cfb_imageblit -EXPORT_SYMBOL vmlinux 0xc3ba19b8 mdio_bus_type -EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0xc3c81c1d blk_init_queue -EXPORT_SYMBOL vmlinux 0xc3fa6a59 memchr -EXPORT_SYMBOL vmlinux 0xc41f0516 node_states -EXPORT_SYMBOL vmlinux 0xc435ed50 proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0xc4503abd put_io_context -EXPORT_SYMBOL vmlinux 0xc4506858 uart_unregister_driver -EXPORT_SYMBOL vmlinux 0xc45fdb30 __mmc_claim_host -EXPORT_SYMBOL vmlinux 0xc46fb14a devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xc47091e8 inet_shutdown -EXPORT_SYMBOL vmlinux 0xc47fb89f skb_tx_error -EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup -EXPORT_SYMBOL vmlinux 0xc4adb839 blk_free_tags -EXPORT_SYMBOL vmlinux 0xc4b14cd3 phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0xc4b3e56d dquot_operations -EXPORT_SYMBOL vmlinux 0xc4c7d163 blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0xc4e1b11e seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0xc5022a46 d_genocide -EXPORT_SYMBOL vmlinux 0xc5032e53 security_inode_permission -EXPORT_SYMBOL vmlinux 0xc5137552 x86_bios_cpu_apicid -EXPORT_SYMBOL vmlinux 0xc51d03f6 pnpacpi_protocol -EXPORT_SYMBOL vmlinux 0xc5462085 proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0xc54e987d dev_driver_string -EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 -EXPORT_SYMBOL vmlinux 0xc55a6371 mmc_free_host -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc59ffbb4 console_start -EXPORT_SYMBOL vmlinux 0xc5a90718 dev_printk_emit -EXPORT_SYMBOL vmlinux 0xc5b2ad32 inet6_del_protocol -EXPORT_SYMBOL vmlinux 0xc5b6c880 neigh_app_ns -EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot -EXPORT_SYMBOL vmlinux 0xc5e0a8de dentry_path_raw -EXPORT_SYMBOL vmlinux 0xc5e61fb5 __ip_dev_find -EXPORT_SYMBOL vmlinux 0xc5ebb8d3 acpi_device_hid -EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xc60bbd6b twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0xc614c4bb padata_set_cpumask -EXPORT_SYMBOL vmlinux 0xc61a396e dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0xc629fd47 phy_init_eee -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc6316630 ip_route_input_noref -EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes -EXPORT_SYMBOL vmlinux 0xc6722440 d_find_alias -EXPORT_SYMBOL vmlinux 0xc678f9eb kern_unmount -EXPORT_SYMBOL vmlinux 0xc67a09fe intel_gtt_get -EXPORT_SYMBOL vmlinux 0xc683e425 lookup_bdev -EXPORT_SYMBOL vmlinux 0xc6849840 pnp_find_dev -EXPORT_SYMBOL vmlinux 0xc68c6faa cfb_fillrect -EXPORT_SYMBOL vmlinux 0xc693442c kernel_getsockname -EXPORT_SYMBOL vmlinux 0xc6b23120 intel_scu_ipc_iowrite16 -EXPORT_SYMBOL vmlinux 0xc6b368d3 acpi_gpe_count -EXPORT_SYMBOL vmlinux 0xc6bac585 serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6cd4fb9 mnt_set_expiry -EXPORT_SYMBOL vmlinux 0xc6d4f843 padata_register_cpumask_notifier -EXPORT_SYMBOL vmlinux 0xc6d82301 flow_cache_init -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc7294bbb dev_addr_flush -EXPORT_SYMBOL vmlinux 0xc7306183 __blk_end_request_all -EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass -EXPORT_SYMBOL vmlinux 0xc768de19 cpu_all_bits -EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc782b7de simple_getattr -EXPORT_SYMBOL vmlinux 0xc7851c2c release_sock -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc -EXPORT_SYMBOL vmlinux 0xc7a2c408 scsi_host_get -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7dbd6e1 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0xc7e960e4 truncate_pagecache -EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn -EXPORT_SYMBOL vmlinux 0xc7fcc5bf acpi_resource_to_address64 -EXPORT_SYMBOL vmlinux 0xc80225f3 __ps2_command -EXPORT_SYMBOL vmlinux 0xc8065a78 d_delete -EXPORT_SYMBOL vmlinux 0xc81806f2 blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0xc81b1565 nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0xc8276a79 nf_hooks_needed -EXPORT_SYMBOL vmlinux 0xc82e5291 netlink_unicast -EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape -EXPORT_SYMBOL vmlinux 0xc838f7c6 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc8572f2e xfrm_init_state -EXPORT_SYMBOL vmlinux 0xc870687d softnet_data -EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc87999b8 swiotlb_dma_mapping_error -EXPORT_SYMBOL vmlinux 0xc87b3c4b cancel_dirty_page -EXPORT_SYMBOL vmlinux 0xc88481bf __serio_register_port -EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table -EXPORT_SYMBOL vmlinux 0xc898c8be fddi_type_trans -EXPORT_SYMBOL vmlinux 0xc8a51a71 agp_generic_alloc_user -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8b3b1f0 ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xc8b6c258 scsi_report_opcode -EXPORT_SYMBOL vmlinux 0xc8ce3895 blk_get_queue -EXPORT_SYMBOL vmlinux 0xc8d133da page_symlink -EXPORT_SYMBOL vmlinux 0xc8d29d26 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0xc8da7c18 __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xc8ee2126 d_obtain_alias -EXPORT_SYMBOL vmlinux 0xc8fa1f45 generic_end_io_acct -EXPORT_SYMBOL vmlinux 0xc90ca41d inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen -EXPORT_SYMBOL vmlinux 0xc914e9ff __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0xc91ef5a1 pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0xc95da88e cdrom_open -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc968bae0 mmc_can_reset -EXPORT_SYMBOL vmlinux 0xc9816ad9 udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc99f6aae dma_spin_lock -EXPORT_SYMBOL vmlinux 0xc9c0e42b __lock_buffer -EXPORT_SYMBOL vmlinux 0xc9e9a6e9 nvm_submit_io -EXPORT_SYMBOL vmlinux 0xc9f12662 set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0xc9fef317 add_wait_queue -EXPORT_SYMBOL vmlinux 0xca086b5b skb_store_bits -EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy -EXPORT_SYMBOL vmlinux 0xca2037d4 simple_write_end -EXPORT_SYMBOL vmlinux 0xca41eaa3 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0xca5cdaf8 unregister_framebuffer -EXPORT_SYMBOL vmlinux 0xca6f2a6e tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0xca8acc78 acpi_dbg_level -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xcaa510ec d_move -EXPORT_SYMBOL vmlinux 0xcaa8ceeb gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0xcabbb530 devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0xcabef4e8 sk_receive_skb -EXPORT_SYMBOL vmlinux 0xcac72fa2 sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0xcad38029 vme_new_dma_list -EXPORT_SYMBOL vmlinux 0xcaddadc4 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcaf69526 copy_to_iter -EXPORT_SYMBOL vmlinux 0xcb01efec kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb03f80b kmap_atomic_prot -EXPORT_SYMBOL vmlinux 0xcb0cc6d8 scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0xcb48d869 blk_init_queue_node -EXPORT_SYMBOL vmlinux 0xcb4c01bb i2c_master_recv -EXPORT_SYMBOL vmlinux 0xcb4fa4b2 tty_schedule_flip -EXPORT_SYMBOL vmlinux 0xcb7269ca blk_mq_all_tag_busy_iter -EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power -EXPORT_SYMBOL vmlinux 0xcb82f40d blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xcb8504f9 i2c_put_adapter -EXPORT_SYMBOL vmlinux 0xcb8c8371 blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0xcb911fc2 __sk_dst_check -EXPORT_SYMBOL vmlinux 0xcb985dbe __pci_register_driver -EXPORT_SYMBOL vmlinux 0xcbae6c7a acpi_lid_notifier_unregister -EXPORT_SYMBOL vmlinux 0xcbaeebb6 registered_fb -EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0xcbeac4be hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0xcbead388 nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0xcbf4e0a9 pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0xcc001845 ata_dev_printk -EXPORT_SYMBOL vmlinux 0xcc017c58 dump_truncate -EXPORT_SYMBOL vmlinux 0xcc080d46 pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc424eae ppp_unit_number -EXPORT_SYMBOL vmlinux 0xcc4d1bfb atomic64_read_cx8 -EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc592ec2 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0xcc82add3 _raw_read_lock_irqsave -EXPORT_SYMBOL vmlinux 0xcc838223 __pte2cachemode_tbl -EXPORT_SYMBOL vmlinux 0xcc8d3f4f acpi_os_execute -EXPORT_SYMBOL vmlinux 0xcc90209c kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor -EXPORT_SYMBOL vmlinux 0xcccda200 iterate_fd -EXPORT_SYMBOL vmlinux 0xccd9d5f1 simple_transaction_read -EXPORT_SYMBOL vmlinux 0xccfef64f skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0xcd02fa1b md_cluster_ops -EXPORT_SYMBOL vmlinux 0xcd0c3540 remove_proc_entry -EXPORT_SYMBOL vmlinux 0xcd13dc7c ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd4af2b1 freeze_super -EXPORT_SYMBOL vmlinux 0xcd506d95 __frontswap_load -EXPORT_SYMBOL vmlinux 0xcd5c87c1 __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0xcd5f543b page_waitqueue -EXPORT_SYMBOL vmlinux 0xcd62e080 lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0xcda8cd53 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0xcdac1213 tcp_ioctl -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdc4ae0c bio_integrity_prep -EXPORT_SYMBOL vmlinux 0xcdec8eb8 generic_permission -EXPORT_SYMBOL vmlinux 0xcdf83cf3 simple_open -EXPORT_SYMBOL vmlinux 0xce022d20 __seq_open_private -EXPORT_SYMBOL vmlinux 0xce247caf __register_nls -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce2c45cc wait_for_completion_io -EXPORT_SYMBOL vmlinux 0xce384d45 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0xce4904a4 acpi_leave_sleep_state -EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce693b24 down_write_trylock -EXPORT_SYMBOL vmlinux 0xce73d500 __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0xce752477 acpi_bus_unregister_driver -EXPORT_SYMBOL vmlinux 0xce772346 scsi_ioctl -EXPORT_SYMBOL vmlinux 0xce8f60b2 mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0xce91d545 inode_permission -EXPORT_SYMBOL vmlinux 0xce9a1dee elv_rq_merge_ok -EXPORT_SYMBOL vmlinux 0xce9e41e9 lockref_get -EXPORT_SYMBOL vmlinux 0xcea091e0 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xcec64eb3 vfs_fsync -EXPORT_SYMBOL vmlinux 0xcecc5e69 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0xced5010c setup_new_exec -EXPORT_SYMBOL vmlinux 0xcedfc84d lockref_mark_dead -EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 -EXPORT_SYMBOL vmlinux 0xcefa35bc tcf_hash_insert -EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcf234190 pnp_unregister_card_driver -EXPORT_SYMBOL vmlinux 0xcf2af63b xfrm_state_walk -EXPORT_SYMBOL vmlinux 0xcf6cfe1f msrs_free -EXPORT_SYMBOL vmlinux 0xcf73abb7 blk_integrity_register -EXPORT_SYMBOL vmlinux 0xcf78231d __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0xcf7b9286 vme_lm_request -EXPORT_SYMBOL vmlinux 0xcf976397 max8998_write_reg -EXPORT_SYMBOL vmlinux 0xcfa29214 pagecache_get_page -EXPORT_SYMBOL vmlinux 0xcfb21a1f free_cgroup_ns -EXPORT_SYMBOL vmlinux 0xcfcd2cbb devm_ioport_map -EXPORT_SYMBOL vmlinux 0xcfd41ecf write_dirty_buffer -EXPORT_SYMBOL vmlinux 0xcfdd6ed8 ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0xcfde606d sock_no_ioctl -EXPORT_SYMBOL vmlinux 0xcfe05d4d register_kmmio_probe -EXPORT_SYMBOL vmlinux 0xcff1f9b8 nd_integrity_init -EXPORT_SYMBOL vmlinux 0xcffa9935 __inet_stream_connect -EXPORT_SYMBOL vmlinux 0xcffb2879 __ethtool_get_settings -EXPORT_SYMBOL vmlinux 0xd00d44d0 mdiobus_write -EXPORT_SYMBOL vmlinux 0xd0263444 blk_start_request -EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond -EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc -EXPORT_SYMBOL vmlinux 0xd09f09c1 pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init -EXPORT_SYMBOL vmlinux 0xd0a5a44e skb_trim -EXPORT_SYMBOL vmlinux 0xd0a90e79 kset_register -EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces -EXPORT_SYMBOL vmlinux 0xd0b420de empty_aops -EXPORT_SYMBOL vmlinux 0xd0d8621b strlen -EXPORT_SYMBOL vmlinux 0xd0e14fc4 mdiobus_free -EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format -EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first -EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key -EXPORT_SYMBOL vmlinux 0xd103032f vme_bus_type -EXPORT_SYMBOL vmlinux 0xd10e51b6 iov_iter_copy_from_user_atomic -EXPORT_SYMBOL vmlinux 0xd115ac5e pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0xd13ab21c filemap_write_and_wait -EXPORT_SYMBOL vmlinux 0xd151c188 phy_init_hw -EXPORT_SYMBOL vmlinux 0xd1652a93 acpi_info -EXPORT_SYMBOL vmlinux 0xd165e0fb register_qdisc -EXPORT_SYMBOL vmlinux 0xd1740685 page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd18b4aeb set_pages_array_wc -EXPORT_SYMBOL vmlinux 0xd196c9be kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xd19b9df5 invalidate_bdev -EXPORT_SYMBOL vmlinux 0xd1c84dfb hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1e50516 flush_old_exec -EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings -EXPORT_SYMBOL vmlinux 0xd2012a8f input_unregister_handler -EXPORT_SYMBOL vmlinux 0xd2064e2f idr_replace -EXPORT_SYMBOL vmlinux 0xd20970e4 set_nlink -EXPORT_SYMBOL vmlinux 0xd20f3020 _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xd211d0ba ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0xd22a0b37 pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xd25cd067 padata_unregister_cpumask_notifier -EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd2733754 ata_port_printk -EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd2a6a0f7 do_splice_to -EXPORT_SYMBOL vmlinux 0xd2af138b reservation_ww_class -EXPORT_SYMBOL vmlinux 0xd2b11481 generic_removexattr -EXPORT_SYMBOL vmlinux 0xd2b8adfa udp_prot -EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2e6a582 acpi_processor_preregister_performance -EXPORT_SYMBOL vmlinux 0xd32fb6a4 pci_fixup_device -EXPORT_SYMBOL vmlinux 0xd3490274 register_netdev -EXPORT_SYMBOL vmlinux 0xd35d2124 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0xd37776d0 zpool_register_driver -EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xd3cfae62 framebuffer_release -EXPORT_SYMBOL vmlinux 0xd3d07acb audit_log -EXPORT_SYMBOL vmlinux 0xd3e11702 blk_delay_queue -EXPORT_SYMBOL vmlinux 0xd3e1c351 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0xd3e70c5d is_bad_inode -EXPORT_SYMBOL vmlinux 0xd423f8dc md_write_end -EXPORT_SYMBOL vmlinux 0xd4351d7f bio_alloc_pages -EXPORT_SYMBOL vmlinux 0xd44537e9 max8998_update_reg -EXPORT_SYMBOL vmlinux 0xd4467796 PDE_DATA -EXPORT_SYMBOL vmlinux 0xd4640a46 default_file_splice_read -EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system -EXPORT_SYMBOL vmlinux 0xd4a64e48 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0xd4c8d128 pci_platform_rom -EXPORT_SYMBOL vmlinux 0xd4d566af neigh_changeaddr -EXPORT_SYMBOL vmlinux 0xd4e7787c dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0xd5059929 find_get_entry -EXPORT_SYMBOL vmlinux 0xd50fef48 acpi_detach_data -EXPORT_SYMBOL vmlinux 0xd511f91d tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0xd51f395a pci_unmap_rom -EXPORT_SYMBOL vmlinux 0xd52a9461 tcp_proc_unregister -EXPORT_SYMBOL vmlinux 0xd540acce inet_frag_find -EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0xd5608fc9 sock_no_accept -EXPORT_SYMBOL vmlinux 0xd56bd159 dev_get_iflink -EXPORT_SYMBOL vmlinux 0xd57b7ee0 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames -EXPORT_SYMBOL vmlinux 0xd5c27887 pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0xd5e31bb0 skb_make_writable -EXPORT_SYMBOL vmlinux 0xd5e493b6 mmc_can_discard -EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0xd5fa438c scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0xd606ac4a i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0xd626adc5 key_put -EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout -EXPORT_SYMBOL vmlinux 0xd62e9f2f blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0xd639bef9 xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0xd63e84e3 __netif_schedule -EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode -EXPORT_SYMBOL vmlinux 0xd663fa60 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0xd6817d15 devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd68e1d1b _raw_read_trylock -EXPORT_SYMBOL vmlinux 0xd6921a9d kill_bdev -EXPORT_SYMBOL vmlinux 0xd6a7b0e3 iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace -EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz -EXPORT_SYMBOL vmlinux 0xd6bb8f6b fb_get_mode -EXPORT_SYMBOL vmlinux 0xd6e99fbf __skb_get_hash_flowi6 -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd7002c52 ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0xd725abcc agp_find_bridge -EXPORT_SYMBOL vmlinux 0xd72a33dd sock_recvmsg -EXPORT_SYMBOL vmlinux 0xd7307b35 dev_get_by_index -EXPORT_SYMBOL vmlinux 0xd730959d seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xd74e49c6 phy_stop -EXPORT_SYMBOL vmlinux 0xd74eedc5 fsnotify_destroy_mark -EXPORT_SYMBOL vmlinux 0xd74fc792 pcie_set_mps -EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function -EXPORT_SYMBOL vmlinux 0xd773dff7 unmap_underlying_metadata -EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write -EXPORT_SYMBOL vmlinux 0xd7af8253 remap_pfn_range -EXPORT_SYMBOL vmlinux 0xd7afbf85 pv_cpu_ops -EXPORT_SYMBOL vmlinux 0xd7b388bd blk_mq_add_to_requeue_list -EXPORT_SYMBOL vmlinux 0xd7b80efe netif_skb_features -EXPORT_SYMBOL vmlinux 0xd7bbe4e3 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0xd7bd2e3a sock_efree -EXPORT_SYMBOL vmlinux 0xd7d08767 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7f159d8 dm_register_target -EXPORT_SYMBOL vmlinux 0xd82dd277 inode_init_owner -EXPORT_SYMBOL vmlinux 0xd82f2469 inet_accept -EXPORT_SYMBOL vmlinux 0xd845cf95 nla_put -EXPORT_SYMBOL vmlinux 0xd846080a ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0xd8489ad3 eth_change_mtu -EXPORT_SYMBOL vmlinux 0xd8520b6f qdisc_reset -EXPORT_SYMBOL vmlinux 0xd85833cb __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0xd8628933 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0xd8847827 key_link -EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd89f279f jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xd8e46ec2 jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region -EXPORT_SYMBOL vmlinux 0xd8f327a0 del_random_ready_callback -EXPORT_SYMBOL vmlinux 0xd8f75fe1 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0xd903e07e cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0xd9091363 acpi_install_notify_handler -EXPORT_SYMBOL vmlinux 0xd92e2dca tcp_hashinfo -EXPORT_SYMBOL vmlinux 0xd93e8d84 inode_needs_sync -EXPORT_SYMBOL vmlinux 0xd94322e7 acpi_evaluate_reference -EXPORT_SYMBOL vmlinux 0xd94b2b1d arch_debugfs_dir -EXPORT_SYMBOL vmlinux 0xd9596409 param_get_invbool -EXPORT_SYMBOL vmlinux 0xd95a4602 tcf_hash_cleanup -EXPORT_SYMBOL vmlinux 0xd966ddc2 __do_once_done -EXPORT_SYMBOL vmlinux 0xd969b2c7 amd_e400_c1e_detected -EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu -EXPORT_SYMBOL vmlinux 0xd97e3d77 iget_failed -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd989c434 pcibios_set_irq_routing -EXPORT_SYMBOL vmlinux 0xd98ee8d8 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0xd9c49e0f elv_register_queue -EXPORT_SYMBOL vmlinux 0xd9d3bcd3 _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler -EXPORT_SYMBOL vmlinux 0xd9ed1779 rfkill_alloc -EXPORT_SYMBOL vmlinux 0xda08c0d7 pcibios_get_irq_routing_table -EXPORT_SYMBOL vmlinux 0xda2e1a82 simple_dir_operations -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0xda8fd495 isapnp_write_byte -EXPORT_SYMBOL vmlinux 0xdaa5618f locks_free_lock -EXPORT_SYMBOL vmlinux 0xdaa57ec3 totalhigh_pages -EXPORT_SYMBOL vmlinux 0xdab65ff3 cros_ec_cmd_xfer_status -EXPORT_SYMBOL vmlinux 0xdac02e8e elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdac6df5f vga_con -EXPORT_SYMBOL vmlinux 0xdad95d88 mount_bdev -EXPORT_SYMBOL vmlinux 0xdadfbdf3 in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg -EXPORT_SYMBOL vmlinux 0xdb42782a __ip_select_ident -EXPORT_SYMBOL vmlinux 0xdb53196e dm_get_device -EXPORT_SYMBOL vmlinux 0xdb54f34c bd_set_size -EXPORT_SYMBOL vmlinux 0xdb5812ad flow_cache_fini -EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail -EXPORT_SYMBOL vmlinux 0xdb7468fb agp_bridge -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb7f021f param_ops_charp -EXPORT_SYMBOL vmlinux 0xdb81354e block_write_full_page -EXPORT_SYMBOL vmlinux 0xdb89d9b7 param_set_copystring -EXPORT_SYMBOL vmlinux 0xdb9b74d2 zero_fill_bio -EXPORT_SYMBOL vmlinux 0xdbe5ad15 ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0xdc11e950 dev_addr_init -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 -EXPORT_SYMBOL vmlinux 0xdc43012d __destroy_inode -EXPORT_SYMBOL vmlinux 0xdc48a93b register_sysctl_table -EXPORT_SYMBOL vmlinux 0xdc493d86 register_key_type -EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc57f532 acpi_install_gpe_handler -EXPORT_SYMBOL vmlinux 0xdc5904ce sock_kmalloc -EXPORT_SYMBOL vmlinux 0xdc70bbf7 dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0xdc7f7077 key_type_keyring -EXPORT_SYMBOL vmlinux 0xdca439d4 abx500_get_chip_id -EXPORT_SYMBOL vmlinux 0xdcbb2488 inet_recvmsg -EXPORT_SYMBOL vmlinux 0xdcc2b007 key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0xdcc6e0bc scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0xdcdfff6a write_inode_now -EXPORT_SYMBOL vmlinux 0xdce50fe2 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0xdcf30479 vlan_vid_add -EXPORT_SYMBOL vmlinux 0xdd07bcb3 get_thermal_instance -EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat -EXPORT_SYMBOL vmlinux 0xdd2d118d abort_creds -EXPORT_SYMBOL vmlinux 0xdd3d9b9a security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0xdd5e4384 rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0xdd608c37 genphy_update_link -EXPORT_SYMBOL vmlinux 0xdd620b10 ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0xdd6667e2 ppp_channel_index -EXPORT_SYMBOL vmlinux 0xdda72d0f __kfree_skb -EXPORT_SYMBOL vmlinux 0xddae9d2a thaw_super -EXPORT_SYMBOL vmlinux 0xddb37d02 proc_dointvec -EXPORT_SYMBOL vmlinux 0xddb5bc10 sock_no_listen -EXPORT_SYMBOL vmlinux 0xddcad836 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0xddce9d95 scsi_remove_host -EXPORT_SYMBOL vmlinux 0xdddb3b00 jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0xddec236e nvm_unregister_target -EXPORT_SYMBOL vmlinux 0xde037207 neigh_seq_start -EXPORT_SYMBOL vmlinux 0xde0acd57 tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0xde16dc16 tboot -EXPORT_SYMBOL vmlinux 0xde51cbc4 unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0xde79d8e8 cad_pid -EXPORT_SYMBOL vmlinux 0xde8f68a4 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages -EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size -EXPORT_SYMBOL vmlinux 0xdea2eb04 param_ops_bool -EXPORT_SYMBOL vmlinux 0xdebbe571 tcp_seq_open -EXPORT_SYMBOL vmlinux 0xdec2deb6 pcim_iomap_table -EXPORT_SYMBOL vmlinux 0xdec7f46d neigh_table_init -EXPORT_SYMBOL vmlinux 0xdecd51d0 tcp_filter -EXPORT_SYMBOL vmlinux 0xdecde886 security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0xded931f3 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0xdedb6611 try_wait_for_completion -EXPORT_SYMBOL vmlinux 0xdedc7d7c agp_copy_info -EXPORT_SYMBOL vmlinux 0xdedcc653 netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0xdefc89e1 ip6_expire_frag_queue -EXPORT_SYMBOL vmlinux 0xdf0da3cc acpi_get_devices -EXPORT_SYMBOL vmlinux 0xdf12a927 acpi_check_dsm -EXPORT_SYMBOL vmlinux 0xdf1427e5 idr_remove -EXPORT_SYMBOL vmlinux 0xdf2466de lru_cache_add_file -EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf314be7 fbcon_rotate_cw -EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update -EXPORT_SYMBOL vmlinux 0xdf3a8387 ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0xdf4fc797 __register_nmi_handler -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol -EXPORT_SYMBOL vmlinux 0xdf6a11dc backlight_force_update -EXPORT_SYMBOL vmlinux 0xdf79dcc3 pnp_disable_dev -EXPORT_SYMBOL vmlinux 0xdf7a7e2d nvm_dev_dma_free -EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdf9a3615 load_nls_default -EXPORT_SYMBOL vmlinux 0xdf9f321f xfrm6_rcv -EXPORT_SYMBOL vmlinux 0xdfab3957 security_inode_init_security -EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init -EXPORT_SYMBOL vmlinux 0xdfd3a075 wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0xdfd6e39e __f_setown -EXPORT_SYMBOL vmlinux 0xdfd9a554 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xe04a62d7 serio_open -EXPORT_SYMBOL vmlinux 0xe04e88fb __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone -EXPORT_SYMBOL vmlinux 0xe062184f elv_rb_former_request -EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xe07b1a28 capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool -EXPORT_SYMBOL vmlinux 0xe089d701 ps2_handle_response -EXPORT_SYMBOL vmlinux 0xe090874a arp_tbl -EXPORT_SYMBOL vmlinux 0xe09a59e4 vme_register_error_handler -EXPORT_SYMBOL vmlinux 0xe09b40eb sync_inodes_sb -EXPORT_SYMBOL vmlinux 0xe09b52ef dquot_initialize -EXPORT_SYMBOL vmlinux 0xe0a16a20 intel_scu_ipc_i2c_cntrl -EXPORT_SYMBOL vmlinux 0xe0ac8bd2 acpi_bus_generate_netlink_event -EXPORT_SYMBOL vmlinux 0xe0afaeda iov_iter_advance -EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0b28978 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0xe10dbb9b fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0xe12d74b0 i2c_register_driver -EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors -EXPORT_SYMBOL vmlinux 0xe14549b6 kernel_getpeername -EXPORT_SYMBOL vmlinux 0xe14ba89a pci_request_region -EXPORT_SYMBOL vmlinux 0xe168f288 blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xe17848cf ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0xe1aaab24 blk_peek_request -EXPORT_SYMBOL vmlinux 0xe1bff225 fbcon_rotate_ud -EXPORT_SYMBOL vmlinux 0xe1dc2f8f skb_split -EXPORT_SYMBOL vmlinux 0xe1e33412 ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xe201f69a vlan_uses_dev -EXPORT_SYMBOL vmlinux 0xe20391cb proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0xe20538d7 vfs_writev -EXPORT_SYMBOL vmlinux 0xe2092cc9 neigh_ifdown -EXPORT_SYMBOL vmlinux 0xe219406e qdisc_list_add -EXPORT_SYMBOL vmlinux 0xe221eb16 inet_addr_type_table -EXPORT_SYMBOL vmlinux 0xe229797c agp_alloc_page_array -EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe2407b0d revert_creds -EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 -EXPORT_SYMBOL vmlinux 0xe259ae9e _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xe25a1156 cros_ec_query_all -EXPORT_SYMBOL vmlinux 0xe265ff7b serio_close -EXPORT_SYMBOL vmlinux 0xe26cad40 mmc_power_restore_host -EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t -EXPORT_SYMBOL vmlinux 0xe2a62575 tcp_close -EXPORT_SYMBOL vmlinux 0xe2a63543 tcf_action_exec -EXPORT_SYMBOL vmlinux 0xe2bdafeb __bforget -EXPORT_SYMBOL vmlinux 0xe2d2f27a kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2dd9223 file_open_root -EXPORT_SYMBOL vmlinux 0xe2e5778d blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user -EXPORT_SYMBOL vmlinux 0xe2f2a23f mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup -EXPORT_SYMBOL vmlinux 0xe30163a2 generic_read_dir -EXPORT_SYMBOL vmlinux 0xe303f9ec param_set_byte -EXPORT_SYMBOL vmlinux 0xe30e61a7 generic_pipe_buf_confirm -EXPORT_SYMBOL vmlinux 0xe3197208 proc_dostring -EXPORT_SYMBOL vmlinux 0xe319eb24 acpi_pci_osc_control_set -EXPORT_SYMBOL vmlinux 0xe31cfc35 iput -EXPORT_SYMBOL vmlinux 0xe328f337 ip_defrag -EXPORT_SYMBOL vmlinux 0xe3399a75 native_queued_spin_lock_slowpath -EXPORT_SYMBOL vmlinux 0xe3a03e6d vga_switcheroo_set_dynamic_switch -EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0xe3bd0704 elv_unregister_queue -EXPORT_SYMBOL vmlinux 0xe3d0e96b twl6040_power -EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xe3ead344 vfs_mkdir -EXPORT_SYMBOL vmlinux 0xe3f72192 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0xe406d628 __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0xe445db4a acpi_check_address_range -EXPORT_SYMBOL vmlinux 0xe44962ea lock_sock_fast -EXPORT_SYMBOL vmlinux 0xe4582019 generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0xe4582b81 mark_info_dirty -EXPORT_SYMBOL vmlinux 0xe4700c51 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 -EXPORT_SYMBOL vmlinux 0xe486329c skb_checksum_help -EXPORT_SYMBOL vmlinux 0xe48f65ae dev_add_offload -EXPORT_SYMBOL vmlinux 0xe4944208 dev_alert -EXPORT_SYMBOL vmlinux 0xe4afac9e uart_resume_port -EXPORT_SYMBOL vmlinux 0xe4b1a72f mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0xe4bda608 blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xe4c17741 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0xe4cee4c9 netdev_info -EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array -EXPORT_SYMBOL vmlinux 0xe506504b nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0xe50f904f intel_scu_ipc_ioread16 -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe526d51d swiotlb_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0xe530d757 acpi_clear_gpe -EXPORT_SYMBOL vmlinux 0xe53caeb1 dquot_scan_active -EXPORT_SYMBOL vmlinux 0xe54d8fb6 con_set_default_unimap -EXPORT_SYMBOL vmlinux 0xe5550c4e nf_log_unset -EXPORT_SYMBOL vmlinux 0xe56cf129 kset_unregister -EXPORT_SYMBOL vmlinux 0xe57335d2 sock_no_bind -EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton -EXPORT_SYMBOL vmlinux 0xe5815f8a _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set -EXPORT_SYMBOL vmlinux 0xe59e8495 neigh_lookup -EXPORT_SYMBOL vmlinux 0xe5b98f5f vfs_writef -EXPORT_SYMBOL vmlinux 0xe5bb150d dquot_enable -EXPORT_SYMBOL vmlinux 0xe5bd39c7 scsi_dma_map -EXPORT_SYMBOL vmlinux 0xe5c3f10d unregister_console -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xe5fddc4f devm_gpiod_get_array_optional -EXPORT_SYMBOL vmlinux 0xe6162877 down_killable -EXPORT_SYMBOL vmlinux 0xe61f8fd9 sync_inode_metadata -EXPORT_SYMBOL vmlinux 0xe6257be6 ab3100_event_unregister -EXPORT_SYMBOL vmlinux 0xe6336b60 vfs_getxattr_alloc -EXPORT_SYMBOL vmlinux 0xe64d98fe rdmsr_safe_regs -EXPORT_SYMBOL vmlinux 0xe6544aaa kmem_cache_create -EXPORT_SYMBOL vmlinux 0xe65b20fa cont_write_begin -EXPORT_SYMBOL vmlinux 0xe664e68e mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0xe6665173 d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0xe666681d jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0xe67106ee dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0xe67526fb bio_advance -EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size -EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe6c04f03 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0xe6c576bf sock_wmalloc -EXPORT_SYMBOL vmlinux 0xe6d5c69c cleancache_register_ops -EXPORT_SYMBOL vmlinux 0xe6d66029 eth_header -EXPORT_SYMBOL vmlinux 0xe6d7643d jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update -EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock -EXPORT_SYMBOL vmlinux 0xe6fccfe6 get_cached_acl -EXPORT_SYMBOL vmlinux 0xe7117015 lock_rename -EXPORT_SYMBOL vmlinux 0xe716baed acpi_unregister_ioapic -EXPORT_SYMBOL vmlinux 0xe72a74d7 bio_endio -EXPORT_SYMBOL vmlinux 0xe72b55ae blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0xe749dfe5 scsi_register_interface -EXPORT_SYMBOL vmlinux 0xe75ea898 mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0xe77e2a68 neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0xe781b5f6 intel_scu_ipc_readv -EXPORT_SYMBOL vmlinux 0xe78cb993 loop_register_transfer -EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx -EXPORT_SYMBOL vmlinux 0xe7b6315e kblockd_schedule_delayed_work_on -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7f47d0b bio_integrity_free -EXPORT_SYMBOL vmlinux 0xe7fbdf77 tso_build_hdr -EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0xe82e698b pci_lost_interrupt -EXPORT_SYMBOL vmlinux 0xe8364e21 jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0xe83954a3 pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0xe8486ff6 iov_iter_zero -EXPORT_SYMBOL vmlinux 0xe86b76ff frontswap_register_ops -EXPORT_SYMBOL vmlinux 0xe87025f0 acpi_evaluate_object_typed -EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss -EXPORT_SYMBOL vmlinux 0xe87b2edd sg_copy_buffer -EXPORT_SYMBOL vmlinux 0xe88376d7 unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0xe8b68849 wrmsr_on_cpus -EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xe8db8dd2 _raw_write_lock -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe91b7e93 request_firmware -EXPORT_SYMBOL vmlinux 0xe93f6042 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0xe95044db path_put -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr -EXPORT_SYMBOL vmlinux 0xe98586b9 d_obtain_root -EXPORT_SYMBOL vmlinux 0xe997667b wrmsr_on_cpu -EXPORT_SYMBOL vmlinux 0xe9acfac4 tcf_hash_new_index -EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xe9fad7fc inet6_del_offload -EXPORT_SYMBOL vmlinux 0xe9fb82ad devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len -EXPORT_SYMBOL vmlinux 0xea1418c5 key_reject_and_link -EXPORT_SYMBOL vmlinux 0xea291af4 bio_clone_fast -EXPORT_SYMBOL vmlinux 0xea3f725d _raw_write_lock_irqsave -EXPORT_SYMBOL vmlinux 0xea49cbbe __getblk_slow -EXPORT_SYMBOL vmlinux 0xea4b8ad7 dqget -EXPORT_SYMBOL vmlinux 0xea4d25da pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0xea552689 skb_set_owner_w -EXPORT_SYMBOL vmlinux 0xea62dea8 phy_set_max_speed -EXPORT_SYMBOL vmlinux 0xea638bcb rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0xea730cb8 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0xea7987f1 key_update -EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table -EXPORT_SYMBOL vmlinux 0xea7b8a44 acpi_install_interface -EXPORT_SYMBOL vmlinux 0xea7d645a fifo_set_limit -EXPORT_SYMBOL vmlinux 0xea807e68 vm_iomap_memory -EXPORT_SYMBOL vmlinux 0xea8f27bb phy_register_fixup -EXPORT_SYMBOL vmlinux 0xea90bdd3 acpi_attach_data -EXPORT_SYMBOL vmlinux 0xea9ef793 kernel_getsockopt -EXPORT_SYMBOL vmlinux 0xeab10992 inetdev_by_index -EXPORT_SYMBOL vmlinux 0xeabe6dfa param_get_ullong -EXPORT_SYMBOL vmlinux 0xeadfe3aa dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0xeae3712b dput -EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay -EXPORT_SYMBOL vmlinux 0xeaf44e72 proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0xeafe5e95 skb_queue_purge -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb3ced0f pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0xeb449108 __blk_end_request_cur -EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xeb610946 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0xeb6c7035 scmd_printk -EXPORT_SYMBOL vmlinux 0xeb797b92 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0xeb81dd97 phy_print_status -EXPORT_SYMBOL vmlinux 0xebb12929 agp_enable -EXPORT_SYMBOL vmlinux 0xebce58e4 set_user_nice -EXPORT_SYMBOL vmlinux 0xebe68b3b nd_namespace_blk_validate -EXPORT_SYMBOL vmlinux 0xebe703e9 dmam_free_coherent -EXPORT_SYMBOL vmlinux 0xebff5cf5 fence_signal_locked -EXPORT_SYMBOL vmlinux 0xec1a376f tcf_exts_dump -EXPORT_SYMBOL vmlinux 0xec1aa6ef memzero_explicit -EXPORT_SYMBOL vmlinux 0xec246e01 register_md_personality -EXPORT_SYMBOL vmlinux 0xec35de1a bio_integrity_enabled -EXPORT_SYMBOL vmlinux 0xec46890c set_disk_ro -EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec6dccb2 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0xec757b7b ata_link_printk -EXPORT_SYMBOL vmlinux 0xec7bad4e padata_alloc -EXPORT_SYMBOL vmlinux 0xecadb21a __neigh_event_send -EXPORT_SYMBOL vmlinux 0xecbcb8bb radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0xeccd3e0c acpi_handle_printk -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xece9b6d7 agp_generic_destroy_pages -EXPORT_SYMBOL vmlinux 0xed0b2952 arch_dma_alloc_attrs -EXPORT_SYMBOL vmlinux 0xed32ad6a ilookup5_nowait -EXPORT_SYMBOL vmlinux 0xed5974e0 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xed6038ff rtnl_create_link -EXPORT_SYMBOL vmlinux 0xed6b4984 get_super -EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic -EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xedb5265a del_gendisk -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedd80068 __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long -EXPORT_SYMBOL vmlinux 0xedf89a7e atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0xedfe8214 input_unregister_handle -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee3c2d79 inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0xee3de0ea dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0xee3ea061 prepare_binprm -EXPORT_SYMBOL vmlinux 0xee40d48e ata_print_version -EXPORT_SYMBOL vmlinux 0xee4c4123 nf_register_hook -EXPORT_SYMBOL vmlinux 0xee55e50e mmc_release_host -EXPORT_SYMBOL vmlinux 0xee7b11a1 kobject_get -EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices -EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeec2c7cf ucs2_as_utf8 -EXPORT_SYMBOL vmlinux 0xeed5f264 do_splice_from -EXPORT_SYMBOL vmlinux 0xeee9646c generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0xeef02bd0 blk_init_allocated_queue -EXPORT_SYMBOL vmlinux 0xeef161aa groups_free -EXPORT_SYMBOL vmlinux 0xeefbaf4d wireless_send_event -EXPORT_SYMBOL vmlinux 0xef0355da iommu_tbl_range_alloc -EXPORT_SYMBOL vmlinux 0xef49e1fd shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0xef5954e8 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0xef620641 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0xef89117e gnttab_free_pages -EXPORT_SYMBOL vmlinux 0xef922859 mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0xef9685f7 netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0xef986265 nonseekable_open -EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override -EXPORT_SYMBOL vmlinux 0xef9bf750 inet6_offloads -EXPORT_SYMBOL vmlinux 0xefb56af2 qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0xefbd8165 nf_afinfo -EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xefda8d99 abort_exclusive_wait -EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0xefe099c3 acpi_get_event_status -EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf00f4720 security_inode_readlink -EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0xf02a4abd do_truncate -EXPORT_SYMBOL vmlinux 0xf05122d2 locks_copy_lock -EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0xf062576b ucs2_utf8size -EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be -EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier -EXPORT_SYMBOL vmlinux 0xf07990d3 blk_rq_map_user -EXPORT_SYMBOL vmlinux 0xf07c2eb4 __skb_checksum -EXPORT_SYMBOL vmlinux 0xf08242c2 finish_wait -EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag -EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int -EXPORT_SYMBOL vmlinux 0xf09e8cdd xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0xf0b082c6 vga_switcheroo_init_domain_pm_ops -EXPORT_SYMBOL vmlinux 0xf0b23479 __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0xf0c519fc blk_queue_unprep_rq -EXPORT_SYMBOL vmlinux 0xf0db3402 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0xf0e9165b phy_get_eee_err -EXPORT_SYMBOL vmlinux 0xf0eaffce _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0xf0eb8991 mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0xf0ee44b6 inode_change_ok -EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort -EXPORT_SYMBOL vmlinux 0xf0f8e5e2 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0xf100f9d6 tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info -EXPORT_SYMBOL vmlinux 0xf10bc7cd pci_add_new_bus -EXPORT_SYMBOL vmlinux 0xf10ca12c scsi_register -EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 -EXPORT_SYMBOL vmlinux 0xf11543ff find_first_zero_bit -EXPORT_SYMBOL vmlinux 0xf125b06c vme_irq_request -EXPORT_SYMBOL vmlinux 0xf12c8a49 iov_iter_alignment -EXPORT_SYMBOL vmlinux 0xf12db841 __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xf1301583 serio_reconnect -EXPORT_SYMBOL vmlinux 0xf1398e2e lg_local_unlock_cpu -EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init -EXPORT_SYMBOL vmlinux 0xf16ae59d pm860x_reg_write -EXPORT_SYMBOL vmlinux 0xf18242e1 atomic64_set_cx8 -EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps -EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf1a0736d __devm_request_region -EXPORT_SYMBOL vmlinux 0xf1b7a005 tcp_release_cb -EXPORT_SYMBOL vmlinux 0xf1c1fa71 vme_register_bridge -EXPORT_SYMBOL vmlinux 0xf1c93997 __d_drop -EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1dbe652 make_bad_inode -EXPORT_SYMBOL vmlinux 0xf1deabf2 div64_u64 -EXPORT_SYMBOL vmlinux 0xf1e516da padata_free -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf2009ae4 kern_path_mountpoint -EXPORT_SYMBOL vmlinux 0xf202af35 jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf2696b74 inet6_unregister_icmp_sender -EXPORT_SYMBOL vmlinux 0xf26ff71d jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0xf275d883 netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0xf283d74f security_dentry_init_security -EXPORT_SYMBOL vmlinux 0xf28ed6e2 machine_to_phys_nr -EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0xf299a1ec input_flush_device -EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered -EXPORT_SYMBOL vmlinux 0xf2b569c5 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xf2c224f7 kernel_write -EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2c9e953 free_xenballooned_pages -EXPORT_SYMBOL vmlinux 0xf2d15f12 read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0xf2dd2e5c bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0xf2e03bcb inode_get_bytes -EXPORT_SYMBOL vmlinux 0xf3013cab dquot_free_inode -EXPORT_SYMBOL vmlinux 0xf302ae44 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0xf312cb9d ucs2_strsize -EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform -EXPORT_SYMBOL vmlinux 0xf3302094 bdevname -EXPORT_SYMBOL vmlinux 0xf333b414 nvm_set_rqd_ppalist -EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user -EXPORT_SYMBOL vmlinux 0xf33e3806 __get_page_tail -EXPORT_SYMBOL vmlinux 0xf3433116 pci_map_rom -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf3486c89 mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf357c03f km_new_mapping -EXPORT_SYMBOL vmlinux 0xf383b17e padata_stop -EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf393a19b backlight_device_register -EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0xf3986b06 acpi_os_map_generic_address -EXPORT_SYMBOL vmlinux 0xf3baef16 nd_btt_probe -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf402634c inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0xf403ef6b netif_rx -EXPORT_SYMBOL vmlinux 0xf40b2297 __crypto_memneq -EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep -EXPORT_SYMBOL vmlinux 0xf472a007 input_close_device -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf479f7a9 bio_unmap_user -EXPORT_SYMBOL vmlinux 0xf49bf3fa ipv6_select_ident -EXPORT_SYMBOL vmlinux 0xf4a20d43 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0xf4a5c213 avail_to_resrv_perfctr_nmi_bit -EXPORT_SYMBOL vmlinux 0xf4ad5ec6 set_device_ro -EXPORT_SYMBOL vmlinux 0xf4b097df tty_throttle -EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4c73b79 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xf4c9bd31 tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0xf4cae8f3 bitmap_startwrite -EXPORT_SYMBOL vmlinux 0xf4e75292 mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf50201d1 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0xf502d273 acpi_get_current_resources -EXPORT_SYMBOL vmlinux 0xf5105cd0 mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0xf51ae235 touch_nmi_watchdog -EXPORT_SYMBOL vmlinux 0xf536d22e acpi_set_gpe_wake_mask -EXPORT_SYMBOL vmlinux 0xf53a0bc1 __scsi_add_device -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf548a10e netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0xf5693f32 truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0xf56e77e5 d_set_d_op -EXPORT_SYMBOL vmlinux 0xf5968c81 input_unregister_device -EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set -EXPORT_SYMBOL vmlinux 0xf5a5139f blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0xf5b10e67 acpi_install_global_event_handler -EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xf5d3cedf ps2_drain -EXPORT_SYMBOL vmlinux 0xf5dad531 contig_page_data -EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command -EXPORT_SYMBOL vmlinux 0xf5ecfe01 pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0xf5fb9252 tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0xf5fc6595 param_get_ulong -EXPORT_SYMBOL vmlinux 0xf60bf0e3 tcp_gro_complete -EXPORT_SYMBOL vmlinux 0xf61169dc cdrom_mode_select -EXPORT_SYMBOL vmlinux 0xf6169ffa lwtunnel_state_alloc -EXPORT_SYMBOL vmlinux 0xf6239c3c in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl -EXPORT_SYMBOL vmlinux 0xf65e5ddc mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0xf661adbc pnp_device_detach -EXPORT_SYMBOL vmlinux 0xf674ecf1 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton -EXPORT_SYMBOL vmlinux 0xf67cdc97 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf685b496 have_submounts -EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xf6899c5a acpi_get_possible_resources -EXPORT_SYMBOL vmlinux 0xf693a145 irq_stat -EXPORT_SYMBOL vmlinux 0xf69749ab udp_lib_get_port -EXPORT_SYMBOL vmlinux 0xf6a61b87 filemap_flush -EXPORT_SYMBOL vmlinux 0xf6b5d642 jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0xf6b6c466 generic_ro_fops -EXPORT_SYMBOL vmlinux 0xf6b6d475 grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table -EXPORT_SYMBOL vmlinux 0xf6cde3b6 __sb_start_write -EXPORT_SYMBOL vmlinux 0xf6d4e0a8 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6f94f40 mmc_read_bkops_status -EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf7079cc8 pci_set_dma_max_seg_size -EXPORT_SYMBOL vmlinux 0xf726d02f atomic64_add_unless_cx8 -EXPORT_SYMBOL vmlinux 0xf745cb16 atomic64_sub_return_cx8 -EXPORT_SYMBOL vmlinux 0xf750e6ac __get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xf7584a9c find_font -EXPORT_SYMBOL vmlinux 0xf764868a udplite_table -EXPORT_SYMBOL vmlinux 0xf788424d register_sysctl -EXPORT_SYMBOL vmlinux 0xf7891779 gen_pool_free -EXPORT_SYMBOL vmlinux 0xf790b5de __ht_create_irq -EXPORT_SYMBOL vmlinux 0xf79e97cd acpi_get_physical_device_location -EXPORT_SYMBOL vmlinux 0xf7bc35ce jbd2__journal_start -EXPORT_SYMBOL vmlinux 0xf7bcfd82 nd_iostat_end -EXPORT_SYMBOL vmlinux 0xf7cfa6fb generic_setlease -EXPORT_SYMBOL vmlinux 0xf8050fac acpi_evaluate_object -EXPORT_SYMBOL vmlinux 0xf80ea89d tty_do_resize -EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area -EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf8320d3b mutex_lock_killable -EXPORT_SYMBOL vmlinux 0xf84cbc28 devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0xf84ebbd2 dcb_setapp -EXPORT_SYMBOL vmlinux 0xf85088f0 skb_checksum -EXPORT_SYMBOL vmlinux 0xf866d493 misc_deregister -EXPORT_SYMBOL vmlinux 0xf86a2e85 d_instantiate -EXPORT_SYMBOL vmlinux 0xf86df3f7 agp_generic_mask_memory -EXPORT_SYMBOL vmlinux 0xf87fbd80 cdev_alloc -EXPORT_SYMBOL vmlinux 0xf8820ab8 skb_unlink -EXPORT_SYMBOL vmlinux 0xf88e0ee2 acpi_get_table_header -EXPORT_SYMBOL vmlinux 0xf8958b5b blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0xf8b8a53f key_validate -EXPORT_SYMBOL vmlinux 0xf8c373b7 dup_iter -EXPORT_SYMBOL vmlinux 0xf8c86e78 dev_remove_pack -EXPORT_SYMBOL vmlinux 0xf8cd8cb7 skb_append -EXPORT_SYMBOL vmlinux 0xf8dc3292 devm_gpiod_get -EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xf8f55686 blk_integrity_merge_rq -EXPORT_SYMBOL vmlinux 0xf91ddf11 freezing_slow_path -EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run -EXPORT_SYMBOL vmlinux 0xf940d843 phy_drivers_register -EXPORT_SYMBOL vmlinux 0xf9695e7c jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0xf985c959 napi_disable -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9b2d17a downgrade_write -EXPORT_SYMBOL vmlinux 0xf9b7314d override_creds -EXPORT_SYMBOL vmlinux 0xf9ba1400 try_to_release_page -EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf -EXPORT_SYMBOL vmlinux 0xfa1c0b19 generic_show_options -EXPORT_SYMBOL vmlinux 0xfa33d849 input_register_device -EXPORT_SYMBOL vmlinux 0xfa472ecb mmc_fixup_device -EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa5e7e3d tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0xfa65b376 phy_driver_unregister -EXPORT_SYMBOL vmlinux 0xfa676cb0 create_empty_buffers -EXPORT_SYMBOL vmlinux 0xfa746f60 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0xfab1f11c memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0xfab740bf phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0xfabab6ac vga_switcheroo_unregister_client -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr -EXPORT_SYMBOL vmlinux 0xfb0443fb acpi_get_parent -EXPORT_SYMBOL vmlinux 0xfb0ebaa5 blk_init_tags -EXPORT_SYMBOL vmlinux 0xfb1f4d50 blk_queue_softirq_done -EXPORT_SYMBOL vmlinux 0xfb28de91 fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0xfb3c7cb3 blk_mq_start_request -EXPORT_SYMBOL vmlinux 0xfb4f5bf1 xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb80c7a0 acpi_walk_namespace -EXPORT_SYMBOL vmlinux 0xfb932e6c sock_wfree -EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 -EXPORT_SYMBOL vmlinux 0xfb9741bd neigh_event_ns -EXPORT_SYMBOL vmlinux 0xfb9eeebe dev_add_pack -EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock -EXPORT_SYMBOL vmlinux 0xfbaaf134 dquot_destroy -EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbc8f195 mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0xfbd71298 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0xfbf494ea nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0xfbf86685 skb_clone_sk -EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem -EXPORT_SYMBOL vmlinux 0xfc1018f2 page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0xfc19d0cf mpage_readpages -EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap -EXPORT_SYMBOL vmlinux 0xfc3a839f devm_free_irq -EXPORT_SYMBOL vmlinux 0xfc562165 acpi_run_osc -EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0xfc668469 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0xfc69fb6f skb_checksum_setup -EXPORT_SYMBOL vmlinux 0xfc734327 queued_read_lock_slowpath -EXPORT_SYMBOL vmlinux 0xfc872fd1 get_ibs_caps -EXPORT_SYMBOL vmlinux 0xfc8c34d0 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0xfc902f4c devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0xfca1b4b5 ps2_handle_ack -EXPORT_SYMBOL vmlinux 0xfca69f4a xfrm_find_acq -EXPORT_SYMBOL vmlinux 0xfcac0d40 acpi_install_interface_handler -EXPORT_SYMBOL vmlinux 0xfcb8b48a netdev_update_features -EXPORT_SYMBOL vmlinux 0xfcbf043e pv_mmu_ops -EXPORT_SYMBOL vmlinux 0xfcbfcec5 input_reset_device -EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0xfcce1df2 ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xfcd3bc65 unlock_rename -EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcf152dd nobh_truncate_page -EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0xfd111d0b blk_queue_bounce -EXPORT_SYMBOL vmlinux 0xfd14baf1 scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0xfd184e33 commit_creds -EXPORT_SYMBOL vmlinux 0xfd1c2bf1 get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xfd288212 ns_capable -EXPORT_SYMBOL vmlinux 0xfd33b5fa cmdline_parts_find -EXPORT_SYMBOL vmlinux 0xfd5188b9 noop_llseek -EXPORT_SYMBOL vmlinux 0xfd5cb678 tcf_hash_search -EXPORT_SYMBOL vmlinux 0xfd6b8d29 neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0xfd7cb8ec nf_register_hooks -EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xfda215cc vfs_rename -EXPORT_SYMBOL vmlinux 0xfdad73ff dma_mmap_from_coherent -EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be -EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0xfdc41764 qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0xfdcb127a kthread_stop -EXPORT_SYMBOL vmlinux 0xfdf41364 devm_gpiod_put_array -EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0xfdfd6c90 add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe047ce6 acpi_enter_sleep_state -EXPORT_SYMBOL vmlinux 0xfe06d6a5 starget_for_each_device -EXPORT_SYMBOL vmlinux 0xfe06daa8 fb_set_var -EXPORT_SYMBOL vmlinux 0xfe13c522 acpi_install_gpe_raw_handler -EXPORT_SYMBOL vmlinux 0xfe248e3a blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0xfe37d518 devm_iounmap -EXPORT_SYMBOL vmlinux 0xfe533ae6 migrate_page_copy -EXPORT_SYMBOL vmlinux 0xfe5d30e9 _raw_write_trylock -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe6fa8cc netlink_net_capable -EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0xfe8853ee kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0xfe90b5bd user_path_at_empty -EXPORT_SYMBOL vmlinux 0xfe96eccd tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 -EXPORT_SYMBOL vmlinux 0xfec6954a tty_port_close_end -EXPORT_SYMBOL vmlinux 0xfeca7590 radix_tree_range_tag_if_tagged -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfef2c78f idr_get_next -EXPORT_SYMBOL vmlinux 0xff02880f __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0xff1825c3 jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff31b89a tcp_getsockopt -EXPORT_SYMBOL vmlinux 0xff480992 dump_fpu -EXPORT_SYMBOL vmlinux 0xff5be2d6 neigh_seq_stop -EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource -EXPORT_SYMBOL vmlinux 0xff896b49 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0xff8d2220 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy -EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0xffab44b6 pcie_port_service_register -EXPORT_SYMBOL vmlinux 0xffd0f529 agp_generic_alloc_pages -EXPORT_SYMBOL vmlinux 0xffd590ab kill_pid -EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function -EXPORT_SYMBOL vmlinux 0xffe1a3c4 mark_page_accessed -EXPORT_SYMBOL vmlinux 0xfffdeb5e skb_page_frag_refill -EXPORT_SYMBOL_GPL arch/x86/crypto/aes-i586 0x7060bf0a crypto_aes_encrypt_x86 -EXPORT_SYMBOL_GPL arch/x86/crypto/aes-i586 0xe409b491 crypto_aes_decrypt_x86 -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x2132d747 glue_cbc_decrypt_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x8c768d80 glue_ctr_crypt_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x8f02ac4d glue_xts_crypt_128bit_one -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xaa423e9b glue_ecb_crypt_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xad86b700 glue_cbc_encrypt_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xe8242c13 glue_xts_crypt_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-i586 0x28afd262 twofish_enc_blk -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-i586 0x6f068d90 twofish_dec_blk -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00091a8a kvm_write_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x008965b9 kvm_is_visible_gfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00aaf935 kvm_disable_tdp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x044cc158 kvm_read_guest_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x04907d91 kvm_clear_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x04d503a3 kvm_apic_set_eoi_accelerated -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06b59fc6 kvm_arch_start_assignment -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0757ba87 kvm_get_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x08137a5e kvm_inject_pending_timer_irqs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0842f4ec kvm_after_handle_nmi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0a328af3 kvm_read_guest_page_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b5bc94b kvm_read_guest_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b5d0018 __x86_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0c1f5a8e kvm_find_cpuid_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0dd7cf61 kvm_emulate_hypercall -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0f6442fb kvm_require_cpl -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x10177837 kvm_mmu_slot_set_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x12ac003e gfn_to_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x14053218 kvm_read_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1416c358 kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x15fd819d kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x175aea24 kvm_write_guest_virt_system -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1971f875 kvm_require_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1a0fef03 gfn_to_pfn_prot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1ecfd3bd kvm_write_guest_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f24a503 kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20de5193 kvm_disable_largepages -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2124f042 kvm_read_guest_virt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x23af0aba kvm_lmsw -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x24dcf4f4 kvm_cpuid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x26f3f3db kvm_mmu_load -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x272e2a14 kvm_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27d24ef2 kvm_set_msr_common -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c78b8d4 __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2ede8399 kvm_mmu_clear_dirty_pt_masked -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f4c5692 kvm_mmu_unload -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f636c31 kvm_spurious_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x300f0b94 kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x317f9e6b kvm_enable_efer_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x32b6694e kvm_set_rflags -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x32f94316 kvm_flush_remote_tlbs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x36ff21fc __tracepoint_kvm_nested_vmexit_inject -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3849ae3e __tracepoint_kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a74ecfb kvm_mmu_sync_roots -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3b0f1069 kvm_mmu_unprotect_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3c769066 kvm_vcpu_uninit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3cc01dd8 kvm_fast_pio_out -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e094575 __tracepoint_kvm_pml_full -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e1f72e0 kvm_vcpu_cache -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x40ce1e45 __tracepoint_kvm_inj_virq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x41842869 kvm_clear_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4342e777 handle_mmio_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x43f4230c __tracepoint_kvm_write_tsc_offset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x455012e6 kvm_get_dirty_log -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45ef83d8 kvm_mmu_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x46172248 reprogram_counter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x46605d34 x86_emulate_instruction -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4b8f642d kvm_get_msr_common -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4bbf9bdc kvm_arch_has_assigned_device -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4c02e074 kvm_put_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c105f97 kvm_vcpu_kick -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d93551a kvm_vcpu_is_reset_bsp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x60bd3519 kvm_get_cr8 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x62085f3d kvm_vcpu_block -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6293c353 kvm_mtrr_valid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x63191b4f kvm_mmu_slot_leaf_clear_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x64020e10 kvm_set_shared_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x669da1fd kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66d97623 kvm_write_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x67132c59 kvm_arch_register_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x678424dc kvm_cpu_get_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68138a79 __tracepoint_kvm_nested_intercepts -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68174d0d reprogram_fixed_counter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x681ac9a9 kvm_scale_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68a89ecf kvm_irq_has_notifier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68f95045 kvm_read_l1_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6cd1052c kvm_is_linear_rip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6cdf8461 kvm_vcpu_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6dca4009 kvm_mmu_reset_context -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x706ae08e gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x73e3491e kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x75a8bbfe gfn_to_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x761a072d kvm_apic_write_nodecode -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7644929e kvm_set_cr4 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7aa64803 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7b3c628e gfn_to_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7bdc511f kvm_vcpu_reload_apic_access_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7be4a70d vcpu_load -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c59e22e __tracepoint_kvm_ple_window -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c8e9619 kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7eb429d1 kvm_get_dirty_log_protect -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x80ecfb6b __tracepoint_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8163abe7 kvm_apic_update_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8228246e kvm_mtrr_get_guest_memory_type -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x831327da kvm_max_guest_tsc_khz -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x838ac4b1 kvm_debugfs_dir -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x85e4926d kvm_emulate_cpuid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x87b130d1 gfn_to_hva -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8902d9d1 kvm_set_cr0 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ce4f3ab kvm_enable_tdp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8da01274 kvm_get_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8e1cd06f kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x92338fc5 kvm_emulate_halt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x92d713dd __tracepoint_kvm_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96c246ef kvm_get_cs_db_l_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x982cd932 __tracepoint_kvm_nested_vmrun -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x985687b7 kvm_io_bus_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x99e02c15 reset_shadow_zero_bits_mask -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a216313 kvm_define_shared_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9ace809d kvm_set_apic_base -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9c171a59 __tracepoint_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9d50d1c6 kvm_rdpmc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e0a65d0 __tracepoint_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa0ec3a0a gfn_to_hva_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa2b2099d kvm_vcpu_gfn_to_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa2eb34aa x86_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa415945a kvm_write_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa4d9ce55 kvm_get_linear_rip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa5bc96e7 gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa81557cb kvm_read_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xacf7f97c gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xacff490e kvm_set_cr8 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xad2b6795 kvm_get_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaf94f86d kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb0453880 kvm_inject_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb176bd9f kvm_queue_exception -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb2b938cc kvm_queue_exception_e -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb40705c5 kvm_arch_has_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb5bf3a64 kvm_before_handle_nmi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb6ab0cd9 kvm_mmu_invlpg -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb866d3a5 kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba68c94a kvm_complete_insn_gp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba9ed435 kvm_mmu_set_mmio_spte_mask -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbfac2f35 kvm_set_cr3 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc05cc727 kvm_set_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc23f3bc8 __tracepoint_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc56d75ce __kvm_apic_update_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc599bc18 kvm_max_tsc_scaling_ratio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc7e3c2b5 kvm_cpu_has_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc81f148e kvm_inject_realmode_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc8fe8594 vcpu_put -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc9e18fc6 cpuid_query_maxphyaddr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcd4fad02 load_pdptrs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcf481060 kvm_init_shadow_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0459e67 kvm_has_tsc_control -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0b2727a kvm_mmu_set_mask_ptes -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd2c0b766 kvm_requeue_exception -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd477f999 kvm_get_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd65462c8 kvm_task_switch -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd7eb738b __tracepoint_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd93bbd46 gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda11af86 __tracepoint_kvm_nested_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda55d455 kvm_get_apic_base -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda948d9b mark_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdaf9ef82 kvm_valid_efer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdb8d480c kvm_x86_ops -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdbfb54b8 kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde9c017c __tracepoint_kvm_invlpga -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe4ec9516 kvm_requeue_exception_e -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe74db93b kvm_arch_unregister_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe77a4eab reprogram_gp_counter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe95c3788 kvm_emulate_wbinvd -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeb1acf05 kvm_set_msi_irq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xed04a594 kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xed09e69f kvm_intr_is_single_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xed76a9d1 kvm_lapic_set_eoi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xedadd945 kvm_inject_nmi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeedd34b3 kvm_set_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef56a95b kvm_set_xcr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeff9515a kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2f286c4 kvm_tsc_scaling_ratio_frac_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf413d784 kvm_get_rflags -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf63ef94f kvm_vcpu_halt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf7334c4d kvm_arch_end_assignment -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf7b26271 kvm_mmu_slot_largepage_remove_write_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf8087721 __kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf864ab07 kvm_init_shadow_ept_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf95ab8e0 kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfbaae28d kvm_release_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfcd7a8cd kvm_release_page_clean -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfd324089 kvm_mmu_unprotect_page_virt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfdc68132 __tracepoint_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xffb90f92 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x1ce92bb6 ablk_init -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x39205b92 __ablk_encrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x508d672b ablk_encrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x948de9e5 ablk_decrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x9af9938f ablk_exit -EXPORT_SYMBOL_GPL crypto/ablk_helper 0xdb2c8204 ablk_set_key -EXPORT_SYMBOL_GPL crypto/ablk_helper 0xff4fa9c8 ablk_init_common -EXPORT_SYMBOL_GPL crypto/af_alg 0x11badcb8 af_alg_wait_for_completion -EXPORT_SYMBOL_GPL crypto/af_alg 0x1830cc9a af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x18bd5c0c af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x25b71780 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0x6d12b2eb af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x78ae205e af_alg_cmsg_send -EXPORT_SYMBOL_GPL crypto/af_alg 0x7f298468 af_alg_complete -EXPORT_SYMBOL_GPL crypto/af_alg 0x81e8911d af_alg_link_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xa51f8971 af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xcd03ade7 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0xcf435145 af_alg_release -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xa473ca3c async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x36b8e700 async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x5eee1220 async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x380ed9bb async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xcb16da46 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x5f1383ce __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x612ff802 async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb9f253eb async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xc6487fe5 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x6e3ddfe6 async_xor_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xfbb6a235 async_xor -EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0x27c067ea blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x46537f6b cast5_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x055194f9 cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt -EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 -EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 -EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 -EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x818fbb44 crypto_chacha20_setkey -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0xbe5ffd39 crypto_chacha20_crypt -EXPORT_SYMBOL_GPL crypto/cryptd 0x271c8fd1 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x3a8d1d65 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x4531d033 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0x4753b5e2 cryptd_ablkcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x520885af cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x900176c2 cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x9714adbf cryptd_free_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xc5ed5660 cryptd_alloc_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xecf4cae7 cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xf5cbfb79 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey -EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey -EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table -EXPORT_SYMBOL_GPL crypto/lrw 0x99c242f0 lrw_crypt -EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table -EXPORT_SYMBOL_GPL crypto/mcryptd 0x109bbf6a shash_ahash_mcryptd_finup -EXPORT_SYMBOL_GPL crypto/mcryptd 0x137fe71f shash_ahash_mcryptd_update -EXPORT_SYMBOL_GPL crypto/mcryptd 0x14bdd4d3 mcryptd_flusher -EXPORT_SYMBOL_GPL crypto/mcryptd 0x33807223 mcryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/mcryptd 0x9d315da9 shash_ahash_mcryptd_digest -EXPORT_SYMBOL_GPL crypto/mcryptd 0xb2248858 mcryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/mcryptd 0xd9edf316 mcryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0xf64e3592 mcryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0xf876b842 shash_ahash_mcryptd_final -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x194c119f crypto_poly1305_setkey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x7a1dfb6f crypto_poly1305_final -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x7f61c55a crypto_poly1305_update -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xdcb924d9 crypto_poly1305_init -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x6957fd2f serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt -EXPORT_SYMBOL_GPL crypto/twofish_common 0x643dc217 twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey -EXPORT_SYMBOL_GPL crypto/xts 0x3f0ab2c8 xts_crypt -EXPORT_SYMBOL_GPL drivers/acpi/nfit 0x2585e368 acpi_nfit_attribute_groups -EXPORT_SYMBOL_GPL drivers/acpi/nfit 0x86557ec3 acpi_nfit_init -EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x1c8984c7 acpi_smbus_unregister_callback -EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x87bd07bd acpi_smbus_register_callback -EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0xb9a141b0 acpi_smbus_read -EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0xe1372311 acpi_smbus_write -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x05016c14 ahci_sdev_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x132fb24d ahci_stop_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2b1803a1 ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2bff06f0 ahci_kick_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x36e87d74 ahci_reset_em -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3d0610a9 ahci_set_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x456ed3fe ahci_handle_port_intr -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x551b4d4e ahci_init_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x596dd25a ahci_dev_classify -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5ded0c5e ahci_print_info -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x60fe3dec ahci_error_handler -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x62f0108b ahci_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x712d7097 ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x764129c2 ahci_reset_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x84d2a526 ahci_check_ready -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x89090dcb ahci_save_initial_config -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8b867368 ahci_start_fis_rx -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb3ccefc4 ahci_port_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb5e0fde9 ahci_shost_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xcb7f7f18 ahci_do_softreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xcf42ac6d ahci_qc_issue -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd7bc88ec ahci_start_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe444cfc0 ahci_host_activate -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x06d8ef7e ahci_platform_init_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x0f3eee2b ahci_platform_enable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2c3e477d ahci_platform_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3fb82965 ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5ed58041 ahci_platform_suspend_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7585f556 ahci_platform_get_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7bf85191 ahci_platform_enable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb4f0813d ahci_platform_disable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xbceab97d ahci_platform_suspend -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc3adf623 ahci_platform_resume_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xcbd7525b ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd3acdbb5 ahci_platform_disable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xedd3a547 ahci_platform_ops -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xa9a7303f __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x02ff9464 cfag12864b_isinited -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x0ecb2e5d cfag12864b_disable -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x305dc3c6 cfag12864b_isenabled -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x3389f926 cfag12864b_enable -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x9522a342 cfag12864b_getrate -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0xc48e9d95 cfag12864b_buffer -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x73b0deac __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x8c64739d __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x8f03dc94 __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xa49a7801 __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0041f0c8 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0446d4bd bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x12f1fcde bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1f1c0d8f bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x333b2b31 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4ae816d1 bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4c0b2644 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4cb7a553 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5ca44ffd bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6bc6f5ee bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6e3cb521 bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7877ed7b bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x83962801 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8b73f3da bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x965bcd04 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa1174d1a bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbf46f4c4 bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc541191c bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd3959ed0 bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd56a4dfd bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xecf0bd8a __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xed494991 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf5a992c3 bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfd37a9ab bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x09813702 btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x0e23fd93 btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x20c0b838 btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x5cac109f btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x6bbe95a3 btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc49193c1 btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0172af4a btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x045e89be btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0eb0c225 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1b7823b6 btintel_set_event_mask -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4fa6a964 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5aba2973 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7e84ad24 btintel_hw_error -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc7cc5098 btintel_secure_send -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xdcb52cfd btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xee81584f btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xffa776f6 btintel_set_diag_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1132806c btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x173b0683 btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3d3ddf3a btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4c4518b9 btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x61124733 btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7a7681b4 btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7b55e4e1 btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x865c9092 btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x88d6e919 btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb2ade3c9 btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfc0d3508 btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x6c13f67b qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xfc6da764 qca_uart_setup_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xe41cf3d9 btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x539b6017 h4_recv_buf -EXPORT_SYMBOL_GPL drivers/char/scx200_gpio 0xa37366ed scx200_gpio_ops -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x04773b60 ccp_present -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xd0fdafc4 ccp_enqueue_cmd -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x035b0f77 adf_enable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x05150d30 adf_send_admin_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x066db72c adf_enable_pf2vf_interrupts -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x119b1a42 adf_dev_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x121b8073 adf_init_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1931d0e7 adf_dev_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1d438784 adf_sriov_configure -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x205c9001 adf_enable_vf2pf_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2e31b189 adf_iov_putmsg -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x30211c4d adf_dev_get -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x389f842c adf_update_ring_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3ba37c66 adf_cfg_add_key_value_param -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3fb98bc5 adf_disable_pf2vf_interrupts -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4c12ea06 adf_response_handler -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5dd987f7 adf_service_unregister -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x62cac7f4 adf_disable_sriov -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x665636d9 adf_dev_stop -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x68209834 adf_devmgr_in_reset -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x696ebffc adf_dev_start -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6adf802d adf_service_register -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x73a49534 adf_devmgr_rm_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x76e98826 adf_dev_in_use -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x79ab8740 adf_cfg_section_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x89de69e7 adf_init_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9646d0a6 adf_cleanup_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x98065869 adf_dev_started -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9c10d2ec adf_disable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa4161b05 adf_dev_put -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xac2499df adf_disable_vf2pf_interrupts -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb3b335f8 adf_devmgr_add_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc44ed892 adf_cfg_dev_remove -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcc3b167a adf_clean_vf_map -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xce44c904 adf_init_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xda02019f adf_devmgr_pci_to_accel_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf287fa64 adf_cfg_dev_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf7e37d2a adf_exit_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf886a977 adf_devmgr_update_class_index -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfb8f4d73 adf_exit_admin_comms -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x27a38a14 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4ed9e355 dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7e2e22c1 dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x8292f10c dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x8fd9c8e6 dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x34237b78 hsu_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x37e48106 hsu_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x4be9a416 hsu_dma_irq -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x66ed802a vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xf5ba1276 vchan_find_desc -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xf8090b9b vchan_init -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xfcd27f30 vchan_tx_submit -EXPORT_SYMBOL_GPL drivers/edac/amd64_edac_mod 0x6c19f5a0 amd64_get_dram_hole_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x09504414 find_mci_by_dev -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x22c13cb4 edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3b97b583 edac_mc_alloc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x41e018e3 edac_mc_del_mc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x423ea9ba edac_pci_handle_pe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x42fcb972 edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5f321de7 edac_pci_handle_npe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x65029964 edac_device_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7743af9c edac_device_handle_ce -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x85cc42f9 edac_device_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8fcb6342 edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x91b8e145 edac_device_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa11e6de7 edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa997cf09 edac_mc_free -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xab984c30 edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xadfc6350 edac_pci_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb15dfe61 edac_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb5b16195 edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbf617621 edac_pci_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc00c07bd edac_pci_reset_delay_period -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xdc6ec39d edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xdead0906 edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xfd423fd4 edac_device_handle_ue -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x14878009 amd_report_gart_errors -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x1d34e996 pp_msgs -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x81d75507 amd_register_ecc_decoder -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xb30b7e56 amd_decode_mce -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xd3cc2686 amd_unregister_ecc_decoder -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x02661e80 fpga_mgr_buf_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1ab0d5d8 fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc9f096d5 fpga_mgr_firmware_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe89ac76a of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xef149bcd fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf44a971f fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0x013fbdac cs5535_gpio_set -EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0x93f8fe67 cs5535_gpio_set_irq -EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0xc0bb404a cs5535_gpio_setup_event -EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0xd3bd9300 cs5535_gpio_isset -EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0xe07c0954 cs5535_gpio_clear -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x679c7a01 bgpio_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x76815a21 bgpio_init -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x7e746333 __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x8c742a27 __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2f5a6e96 drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9c5f951c drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc68fcea9 drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x05876c69 i915_gpu_busy -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x08a7896d i915_gpu_raise -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x402468e9 i915_gpu_lower -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x500858b9 i915_read_mch_val -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0xe7237b0b i915_gpu_turbo_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x1c2975e6 ttm_dma_populate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xa3c3d698 ttm_dma_page_alloc_debugfs -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xe13bce81 ttm_dma_unpopulate -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0511a873 hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0c247bf9 hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x26cbed6e hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x27dfcf1f hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2919c2de hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0x297ac36c hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2c8727fb hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4240e00a hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4ed385e8 hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x51201c03 hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x51d8cbc8 hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x550d0e3a hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x585df46f hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x61881b39 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6271932d hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6ce50e99 hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6cfc50e5 hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x91d0bbaf hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9cc267d0 hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb050e3ad hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb75ff575 hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc2c3a82c hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc30429d2 hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc43906fe hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc6d49a68 hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcabfb350 __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd9f474fc hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe0ec6fd5 hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe2fd3740 hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe49eda28 hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe7ae733c hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xef6ead6c hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf35552f4 hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf6b9e024 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf766a344 hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa71a39a __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x817ed9a4 roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x170b60ee roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x303307db roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x44984036 roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x5fb590f4 roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x6351b021 roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xcf2619d8 roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x100ceb70 sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1058c4c3 sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1cd19cc6 sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4042c479 hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4f71f49c sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7bfb9f69 sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x925ec196 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xdb235981 sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xeb493301 sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x062e1212 hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0e3aee36 hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1bb5266e hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x28187f99 hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x28ecca4a hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2d279929 hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x36f05280 hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x40d49dba hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4b23808c hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6a84c24e hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6ef430e2 hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x75e70ac0 hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa6e0b946 hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb2850742 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xda860501 hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdef66be2 hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe043d042 hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfffd5997 hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x082c4a68 vmbus_sendpacket_mpb_desc -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x094b1352 vmbus_get_outgoing_channel -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x098bf01c vmbus_sendpacket_pagebuffer_ctl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x09a6ef87 vmbus_set_event -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0fd9cd94 vmbus_hvsock_device_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1499aaa5 vmbus_sendpacket_multipagebuffer -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1a25cd8a hv_do_hypercall -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x25a0a3d2 vmbus_cpu_number_to_vp_number -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2e8375a6 vmbus_open -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x358fafa5 vmbus_prep_negotiate_resp -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3691a8c1 vmbus_setevent -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4476d1f9 vmbus_set_sc_create_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4a225780 vmbus_teardown_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4fd3c2bf vmbus_establish_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x65668429 __vmbus_driver_register -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6a913d04 vmbus_set_chn_rescind_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x72a61a99 vmbus_allocate_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x73023d78 vmbus_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x86ff5fa6 hyperv_cs -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8c6bac23 vmbus_driver_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa9e2d37f vmbus_are_subchannels_present -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdb2f6047 vmbus_free_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xde489021 vmbus_sendpacket_pagebuffer -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdebe50a6 vmbus_recvpacket_raw -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xeadb5fcc vmbus_send_tl_connect_request -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x2d9bc2f0 adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x848d92ae adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x8c703b24 adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x068d641f pmbus_update_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2b9185be pmbus_do_remove -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3dd22ca3 pmbus_regulator_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x41299531 pmbus_write_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4da3e364 pmbus_clear_faults -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x597b958c pmbus_clear_cache -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x711610d6 pmbus_check_byte_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x81f7ef39 pmbus_read_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x840cef73 pmbus_get_driver_info -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x99fcd02a pmbus_read_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x9bdcc32b pmbus_write_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb442c422 pmbus_do_probe -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf32bde03 pmbus_check_word_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf8772e5f pmbus_write_byte -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xfdb84da1 pmbus_set_page -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0a3945d6 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x1c24b887 intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x348c2aed intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x533285a8 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6d2aa746 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7d427a16 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc9dca769 intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x00d8db74 stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5f77ccc0 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x675f3296 stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x9ce0463b stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd742186b stm_source_register_device -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x18a4b45e i2c_dw_read_comp_param -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x21e095fe i2c_dw_disable -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x45309ef6 i2c_dw_probe -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xa212cc1e i2c_dw_disable_int -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xef141873 i2c_dw_init -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0x29e17ebd nforce2_smbus -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x716d7756 i2c_add_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xec8d89ac i2c_del_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x9d8ad8be i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xec54df13 i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x1be5655f bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x348c5a7e bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x49362295 bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x0803b06c ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x4fea3627 ad_sd_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x6822eb8c ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x6f7ff701 ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x849acceb ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x943c7c7f ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xb90bddc9 ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xc145fdd2 ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe6cdcb1c ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x755e4338 iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xa854c481 iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x0bdd5f21 ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x981439f6 ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x0696c871 bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x68c5e90f bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xa6cd66d0 bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0c19d57d adis_remove_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x21199bb4 adis_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x3b851f84 adis_reset -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x42efd7b9 adis_update_scan_mode -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x4b6ce7b8 adis_probe_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x59cfdf52 adis_read_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x7c77bf87 adis_write_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xa5889443 adis_init -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xabcedd56 adis_initial_startup -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc0037273 adis_check_status -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xd8804257 adis_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xed39d2c6 adis_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x00d59f46 iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x017b233d iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x01b60a73 devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0ad66a1f iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x11127736 iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x13c7c74f iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x14f22bf9 iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x37258054 iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3db86965 iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x409995ff devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4beca2a3 iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x50543296 iio_scan_mask_query -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x63371bd1 iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x66a84dff devm_iio_trigger_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6f67bb3b iio_update_demux -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x84956922 iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x901bee75 iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x95da93fe devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9fe99e97 iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa061a41b devm_iio_device_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa5053f9e iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xabd0de13 iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb1a57bd1 iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb88c16ac iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd0aac0eb iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd2ee43f5 iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xeb7a2b19 devm_iio_device_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xee923038 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xeeebced9 iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf2160d6d iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfa7d267d iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xbda84a94 input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x937af151 adxl34x_probe -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x8eba0264 cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xc55696e0 cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xeccdb11d cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x074d4cbd cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x688dbb25 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xf39d0c03 cyttsp_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xaaa73e34 cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xe9964dd3 cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x7eb7639a tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xb7526800 tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xd6421938 tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xea6c0ef4 tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4a59f1ce wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x534d08b0 wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5351c893 wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x61a66b60 wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x65c7048f wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6ffc3459 wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x84c1a626 wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xad0c6bfe wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xaf269f14 wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb0b276a4 wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdab29c0c wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xfb391aed wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x08419dee ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1e5caf97 ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2530a3bd ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x61852daf ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6a86550c ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x71da8c85 ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x8f3bad07 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xbc9f79fa ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xbcf3c181 ipack_device_init -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x31791d27 gigaset_handle_modem_response -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x68c7a7d1 gigaset_freecs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x6ea19004 gigaset_if_receive -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x6fafcc79 gigaset_add_event -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x91cea097 gigaset_freedriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x94209d97 gigaset_isdn_rcv_err -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa8755908 gigaset_fill_inbuf -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb7632adb gigaset_start -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc2b50cff gigaset_blockdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd0620fc9 gigaset_initcs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd2ed6e47 gigaset_m10x_send_skb -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd5f3f2c2 gigaset_stop -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd7d65653 gigaset_skb_sent -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xdca45fe2 gigaset_initdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe3f6159e gigaset_m10x_input -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe4287d01 gigaset_skb_rcvd -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf71d8f78 gigaset_shutdown -EXPORT_SYMBOL_GPL drivers/leds/dell-led 0x86fd1ffb dell_app_wmi_led_set -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x106faf3c led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x2ac65fcf led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x3587320e led_classdev_flash_register -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7065dcd2 led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xbab53a0d led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xbd70d880 led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x0aa07b6c lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2362a479 lp55xx_unregister_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x26eab999 lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2b2ab4de lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x657561e7 lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x74a00784 lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa39df8d6 lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xabaf98de lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xbe7af590 lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xcc1ecdc4 lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xcddaa41b lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x0c891e02 mcb_alloc_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x50dd30ad mcb_get_irq -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x628d7316 mcb_bus_add_devices -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x809848fe mcb_unregister_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xa27e1a01 mcb_alloc_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xaa40f966 mcb_free_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xacee2bfb mcb_request_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc493a360 __mcb_register_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc4c8270f chameleon_parse_cells -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xcb40b21a mcb_release_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd6ad7dc9 mcb_device_register -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xde22c1a0 mcb_bus_put -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf691ede9 mcb_bus_get -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x00b74659 __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2a1a7a99 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x374f45ea __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3a4dfef7 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x48991e9c __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4f124797 __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x614e860f __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x647af374 __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6724de29 __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6726a0c1 __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x68f1ea6d __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7114cfcc __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x78c57fa5 __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7cb4bd6f __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x816ebfe0 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x833b99dd __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8afe3e2b __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x912566ef __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x92c55e92 __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9c59320b __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa7004101 __tracepoint_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaf2376ac __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb3942afe __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb4cffcbb __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb9c28744 __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc0bd3171 __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc773563c __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd81ad8c9 __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe30b6b2a __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6169c53 __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfcb52b5f __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x363a9b92 dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x65b32efe dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x874d7509 dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x93a33506 dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9baf0597 dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xcc6faf5b dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xda99b9d4 dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xdd17b48a dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe083f193 dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x22163b69 dm_bufio_release_move -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x3909d3a8 dm_bufio_prefetch -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x594952bd dm_bufio_read -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x62a23587 dm_bufio_get_device_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9b2b253a dm_bufio_get -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xdc69e37a dm_bufio_get_block_number -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe004ee92 dm_bufio_new -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe7d3882b dm_bufio_client_create -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x61f10c5c dm_cache_policy_get_name -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x83709e8a dm_cache_policy_get_version -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x85e0d113 dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x95c9d341 dm_cache_policy_get_hint_size -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xc55c4219 dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xd38cf01b dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xf2722c69 dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x0a7ab572 dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x2cc6d38a dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x09472122 dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x2495d405 dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x25edd55d dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x84b322fc dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x99966eaf dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x9d5794c6 dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x9dec22f8 dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa8813ad6 dm_rh_region_to_sector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc66ce277 dm_rh_get_region_size -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcab63c3d dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf37a3cfe dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11eab9fe dm_bm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x150c85ce dm_tm_open_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2e730a21 dm_bm_checksum -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x33c03da6 dm_sm_disk_open -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49a0d47a dm_block_manager_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x619701dc dm_sm_disk_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9b4b5b29 dm_bm_write_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2507774 dm_tm_shadow_block -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbcfdc290 dm_tm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbe0497aa dm_tm_create_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xead1e727 dm_bm_write_lock_zero -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize -EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x05c535ae saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x0cfaa1e5 saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x49a0b778 saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x58e5c05d saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb1d12a3d saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb7356497 saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xbb3eb02e saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc38a4542 saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd25c6976 saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf1bb6473 saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x1b4c256e saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x22071736 saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x41af1c43 saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x810eb9fd saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xb603e1e9 saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xe415e74f saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xfc7dcb40 saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x06ba9b30 smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x201578d3 smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3ba34d32 sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6876d810 smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7e4746e9 smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x84092288 smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9164b3b4 smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x975cc10e smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9a78ab51 sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa3ef3577 smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa48c890c smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa51c27cb smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xab5fbf97 sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb5a204e3 smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe73ffbca sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xea06aafa sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf97699c6 smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x072523cb as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x09742a95 cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xae596b34 tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/media 0x2149e1c1 media_entity_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/media 0x26a3692c media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/media 0x35657454 media_entity_init -EXPORT_SYMBOL_GPL drivers/media/media 0x37dfd318 media_entity_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/media 0x5c4f9080 media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/media 0x5e3b6fc9 media_entity_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/media 0x632ad004 media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/media 0x641d9a6d media_entity_put -EXPORT_SYMBOL_GPL drivers/media/media 0x6acf3122 media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/media 0x734ddc78 media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/media 0xa58c05c5 media_entity_get -EXPORT_SYMBOL_GPL drivers/media/media 0xb15b2d85 media_entity_cleanup -EXPORT_SYMBOL_GPL drivers/media/media 0xb91a8b1f __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0xc162816c media_entity_create_link -EXPORT_SYMBOL_GPL drivers/media/media 0xc50bfe14 media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/media 0xd8c28b02 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/media 0xe28f89e7 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0xe83f3237 media_entity_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x2715bf70 cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x15322c5e mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1a66d3d8 mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2897f194 mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x289d2b20 mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2ef47d47 mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x31531767 mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x48da2126 mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x58e9b991 mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6f0a7bb1 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9fc4e86e mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa8272a4e mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb543375a mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbd4f3581 mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbe559213 mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc19d84b8 mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc25a4702 mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd0749c68 mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe8fc1b76 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfae26bd1 mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0474826e saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1c9f7e61 saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2075a009 saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x20b9d204 saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x22c84f70 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x28a5d5df saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2e85d844 saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3c23a6a2 saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4b40ec61 saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x715dcf91 saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa6be8d68 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa8caa7f9 saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbebc9091 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbec7df76 saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbec92f67 saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc17665d7 saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe93f6e6e saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfde551f5 saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfea40345 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x1f7e0308 ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x21054440 ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x5e56cba2 ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x6d5b672c ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x87263b94 ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x88e7dc8d ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd83d056a ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x34533e90 radio_isa_probe -EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x7ea9dbbb radio_isa_pnp_probe -EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x91de406f radio_isa_pnp_remove -EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0xac323d7b radio_isa_remove -EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0xb4079d81 radio_isa_match -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x10d97646 radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x92c8ad54 radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0a5fa32b rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0e0f6a18 ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0ea5f0c7 rc_open -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0f032c99 ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x130ab93c rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x168e43e8 rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x37c163e3 rc_map_get -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x397bd34f rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5f78a71c rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6a06e14f rc_close -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7c017065 rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7eb890ca rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7f17df2f ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x887cf47d rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x89a31f8f ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb99c1e67 rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc28901b1 rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xeaf48228 ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf05278a9 rc_keydown -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x130f13ac mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x62f3449f microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x958a257f mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xa8770634 r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xf0e316b6 tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x9cea083d tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x6f293638 tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x7f363527 tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x8583f1a6 tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x74dcdb8b tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xd7b1c9ac tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x3e3f63f2 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xe28138c4 tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x47aba734 simple_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0c5c1a11 cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0c7fcaf3 cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x12cf569b cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2a50a654 cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2b7b09bd cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x34226621 cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4e392a11 cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4e6ec8b7 cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4fa29cc1 cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x54c0bba0 cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x896bdd97 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x975d0d2d is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x985ab49d cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9f588f3f cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc335d617 cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc73156b1 cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd3df5851 cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe939abce cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf2ff978e cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfd8da8f7 cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x59cd1bec mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xde02a963 mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x134c50fb em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x13b022b8 em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1872af87 em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x243fb523 em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3175cf01 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4ee0d6e1 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6a02bd78 em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6c06a6c2 em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8806fca0 em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x94e31577 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9840e267 em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x99f03d6d em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xaf8df980 em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb3171a16 em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb652ac5e em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb9cc4e0b em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd8ac0213 em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe9006cfe em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xa1e1b6c0 tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xbb19a640 tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xd0b42419 tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xea20a981 tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x50763423 v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x9b8df020 v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xa5cf1b05 v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xa8806f95 v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xc3026d8c v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xeec8ba44 v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08982d59 v4l2_match_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x73afa87a v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xc8af1e54 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0e456db9 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x19eae497 v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x200a0b39 v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2c66ffe9 v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2d63a3b5 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2fdd50f9 v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x30d24b67 v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x32b941de v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3d067df5 v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x449e42f2 v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x48d0f661 v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x50b9af79 v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x71ce8a0f v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7d298368 v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7ef1dd86 v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x806a33e4 v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9aefec51 v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9fad303b v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa0a6def0 v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xad345885 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb035350c v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb6886763 v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbe6d384d v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc563bb77 v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdaf718be v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe025ca95 v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe0fdd5c3 v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x12558a88 videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x19bba66e videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2179672a videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x21f93cd3 videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x271b2655 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x275f73de videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2bf69450 videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x337f726a videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4e6d5ffd videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x54c1eb78 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x73e66924 videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7a22afe5 videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x889f24d3 videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8bf056ee videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8ed1e184 videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9d5f2308 videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa02c4646 videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa739e442 videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xacbfa7d1 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb892cc04 videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcff20059 videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xde01dddf __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe387ebe9 videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe85023eb videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0x306fd988 videobuf_to_dma_contig -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0x4b6e7fb8 videobuf_dma_contig_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0x668b93bf videobuf_queue_dma_contig_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x1afbbafe videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x1f59b761 videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x3791f64e videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x4e141c6c videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa825c75b videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x513fd12e videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x7a0e1b19 videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xf54e328f videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1878bec3 vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2bdc03fb vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x31a63c90 vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x32e56725 vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x4abff8d8 vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x51f550ce vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x578f0104 vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x5c42be37 vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6297b6a2 vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x785242db vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7ca05a7d vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xab4374c7 vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc3b4fdd5 vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xca214a16 vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe23ff6f6 vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe747bb45 vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xfbc79573 vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xfdde0a8b vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x49bc8d37 vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xcf334236 vb2_dma_contig_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x875ccaf0 vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x9f3f073e vb2_dma_sg_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd30ec30f vb2_dma_sg_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0x8168588d vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x023c61b6 vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x09e18799 vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1968ee64 vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2e3b443f vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x33fe8e19 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4e2e058b vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x551389d7 vb2_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x567a4ed5 vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5a2e653b vb2_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x625148cf vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x636b7c6e vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x659b7bd6 vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x713899e0 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7fa626f4 vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x88f72a1c vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8d3ef3f1 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x95c19766 vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9636fc67 vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x970207a4 vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb46fd77a vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbae78ef0 vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbbb7a592 _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbc779af1 vb2_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc521c378 vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd31d7dbf vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd326599c vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd8b1cbb0 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdb5aa5c3 vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdc34f530 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe92bcfb6 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf275fa49 vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf6379b28 vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0xc4e7d4eb vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x07f286c2 v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x085c1c98 __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0faf4094 v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1fbc3061 v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x28d20b15 __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x29cee11c v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x30fb68b7 v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x31e3d76e __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3740e82b __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x37628bee v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x39061bc0 v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x48c8c9fb v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4b520c72 v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x56edfe30 v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6305c4db v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6dc79e1f v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x710cdf07 v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7a85f5d7 __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x81aea06c v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8fa601e9 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x916d3966 v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x98545b10 __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9bd8fc9c v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb070c37b v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xba162dcc v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xba414158 v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbc3b419e v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc1de1c47 v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcdcedc13 v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xce002360 v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xddef5c6d v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe6328677 v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe7178e45 v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5956f8c __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf8358ccd v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfccb8b5b v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x8d33f2b3 pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xbae3becb pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xc61cd289 pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x114250f2 da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x1e796321 da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x3cd03c6c da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x5e52f78d da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x60070806 da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x9452086e da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xbb1c519a da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x032e2c10 intel_lpss_prepare -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x58d3c5cc intel_lpss_resume -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x7802a8ad intel_lpss_suspend -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x7aafc1e7 intel_lpss_remove -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xafb1be6a intel_lpss_probe -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1564a26c kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x2998bf18 kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x2c7aecb0 kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x4c6ac53c kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x690cd4f5 kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x6ddf3b1c kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe2747d08 kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe807a720 kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x14b6df4b lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x3ca06d31 lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x4902ad91 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x0c028d96 lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x320c7a93 lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x52eacf8a lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x97d016fe lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x9f1c2f97 lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa9f7e187 lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xcc73a6a3 lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x99617ee9 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xcac61355 lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xd0694924 lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x03720276 mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x14e20ff7 mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x16affa7c mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x43c84956 mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x51c7bc3e mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7dff1992 mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0b4bf931 pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x150f8193 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1f20799a pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x25a214aa pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2cb05b81 pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3636f8f4 pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x71c3b3cb pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7a33f26f pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8635896c pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb03277a4 pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd64b7d6b pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x57bc3eb5 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xb5539dc5 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x57f041f1 pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x64822cf1 pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x81394a77 pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x8fe0d60b pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xf61a4a3f pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x06765088 rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x1e9b27a1 rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x1f917093 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2c53a709 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x31f5cd73 rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3512e01e rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3527167b rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3857a777 rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x39699a93 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x484e692d rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x549d6c76 rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x606c6b14 rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x60af3aed rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x68355229 rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x6c9b8fd6 rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x74ff5c6a rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7712cc50 rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x88ec621b rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8f75f1f6 rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9b6c6c78 rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xbff17afb rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xdbd7a4b1 rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xed0984da rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf5fcb0b9 rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x0b839500 rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x0ff8fea7 rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x102e32a6 rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x1426b9d4 rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x19ca639e rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x1eed6fbc rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x55e32756 rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x5e534051 rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x73373ea2 rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x73f3a635 rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xa9fcfb28 rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xdf4960a7 rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe0d4a74a rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0accf8f0 si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0ca81841 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0ff89298 si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x288090a3 si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2ba96f9d si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x33f5ea2a si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x35cf9e89 si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3bfec8e8 si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x43cdebe1 si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4627ec23 devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4a0a2016 si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4b2f8c20 si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4f95597f si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5121c284 si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x76d785e6 si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7ab01691 si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x80f18652 si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8bc07307 si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8d323d2a si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8ea69cd8 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9f8ffa0c si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa4c64ee5 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xaa968488 si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xabe1d174 si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb656b705 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc4fb1652 si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcac176a8 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd22e79a4 si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdc810f1b si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe08a6799 si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe13681a2 si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf794e186 si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf8493ec8 si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf9c6b3e9 si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x2f209a04 sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x43ab1c4e sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x96d44d3f sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xcf7f372e sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xfefb6f24 sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x1b8b8f31 am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x257766e7 am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x7c3ce1cf am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x984af3e8 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x59bab50a tps65218_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x8d183ac2 tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xa7c0ccbc tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xd04744cb tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xb946f670 ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x2e11219c bmp085_detect -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x6dd0aa06 bmp085_probe -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xa22a2d6e bmp085_regmap_config -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xce792532 bmp085_remove -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x047f20c8 cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x5ec99c91 cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x67636f6b cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xaff13360 cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x0deec31e enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x83f5c079 enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x8f466c33 enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x9c5c4252 enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb30fcc00 enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb95d4ced enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xdeb0ac8a enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xec51980d enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x29f9fbd4 lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x2b45c946 lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x362ea83a lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6def4100 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x91d90e39 lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa189fb75 lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xda1603bf lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf1db0d05 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x020dce94 mei_irq_compl_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x04100e1c mei_stop -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x17745245 mei_cldev_uuid -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1da6e979 mei_reset -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x23901627 mei_irq_read_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x488700d3 mei_start -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x4a3032b0 mei_cldev_ver -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x57eb58f9 mei_write_is_idle -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x5f7ba776 mei_cldev_driver_unregister -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x64671e4c mei_cldev_enabled -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6ba88040 mei_cldev_send -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7629d114 mei_restart -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7b16be9a mei_deregister -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x87d8401f mei_irq_write_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8f9de864 mei_device_init -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xaab6a586 mei_cldev_enable -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb2e19a6a mei_register -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbbef8d62 mei_cancel_work -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbed37aa4 mei_cldev_register_event_cb -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xcd9b4c26 mei_hbm_pg_resume -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xcf898c9d mei_cldev_set_drvdata -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd6b8760f mei_cldev_recv -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xda27124f mei_fw_status2str -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xead0419b __mei_cldev_driver_register -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf2def4f3 mei_cldev_disable -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfbcfeaa4 mei_hbm_pg -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfd3cd57e mei_cldev_get_drvdata -EXPORT_SYMBOL_GPL drivers/misc/pti 0x19f09b98 pti_release_masterchannel -EXPORT_SYMBOL_GPL drivers/misc/pti 0x23bde487 pti_request_masterchannel -EXPORT_SYMBOL_GPL drivers/misc/pti 0x52a78e81 pti_writedata -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x98206a1e st_register -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xee4aba47 st_unregister -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x0f6680ea vmci_qpair_produce_buf_ready -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1152e318 vmci_qpair_get_produce_indexes -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x13aa5a5d vmci_datagram_create_handle -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1872c7af vmci_qpair_produce_free_space -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1a195863 vmci_context_get_priv_flags -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x2e30d970 vmci_qpair_dequeue -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3abeb8d1 vmci_qpair_enquev -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3ef56cd5 vmci_qpair_alloc -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4b630dac vmci_get_context_id -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4ea2ccbc vmci_qpair_peek -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x50a255c9 vmci_doorbell_create -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x612df9ae vmci_qpair_detach -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x677c36d0 vmci_is_context_owner -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x69ef87ff vmci_datagram_destroy_handle -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x6cc1a5f7 vmci_datagram_create_handle_priv -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x722d488a vmci_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x7b34dde7 vmci_qpair_dequev -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x7d540b50 vmci_qpair_consume_free_space -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x8b8ad67a vmci_qpair_enqueue -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x941e18ef vmci_qpair_peekv -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9624c58c vmci_datagram_send -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9973b9b2 vmci_qpair_consume_buf_ready -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9d16164a vmci_send_datagram -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xccbb53d1 vmci_doorbell_notify -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xcf5ed7ef vmci_event_subscribe -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xdac94780 vmci_qpair_get_consume_indexes -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe7e7c107 vmci_doorbell_destroy -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1201ef40 sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1c47bbb1 sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2ef4d7e8 sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x373fb888 sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4813feac sdhci_enable_irq_wakeups -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x516ab618 sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x59116e19 sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc109c480 sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc365f4d8 sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc8ba9c78 sdhci_send_command -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcc8b1acc sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd641a32b sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe0081458 sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf435f87d sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x1d383e55 sdhci_get_of_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x37ed1f74 sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x43827ce1 sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x490f79da sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x5c961962 sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x61f7d7d1 sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x9d42c9e8 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xad0d4b96 sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb1ef1545 sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x074f81e5 cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xc578819b cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xfa51a473 cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x1a459ac5 cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x97ee1e93 cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xe9bc5543 cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x74025000 cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x08c3afcd cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xa1119502 cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xe2ccaba6 cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0001cfce mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0a17a4ad mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0ce378d6 mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0d1a5282 register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x10843143 mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x136c7640 mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x174a91ed mtd_erase_callback -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1864cad4 get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1fc28e81 mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1ff49b8e mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x219af829 __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2e47d371 mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2f4b7dc9 mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3130c4ea mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x396250d4 register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3a8f3112 mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x52e0f6d7 mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x550516c2 __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5d480743 mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5e6c0fd1 __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5f6ab1d9 put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x63e1821b mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6582450a unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x670d10b1 mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x68c6f914 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6b8ec091 deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x71308f53 kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x89c6c2c6 mount_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9d79a77c mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9e2ab49b mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa2766a1c mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa28e4e42 mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa5f66972 mtd_is_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa98f3f7f get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xac4861aa mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xadbcacea mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xccb46be7 mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd4e40ac7 mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdf198064 mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe97a36cb mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xecc895c2 mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf5c6d61b mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x2173e3f9 deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x531e57f1 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x667175a3 del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa26c7434 add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xfeefd908 register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x3d27e52b nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xf7ba1d63 nand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x5bdbec4f sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x3b719ed7 onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xd78d9d74 onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x719dbfba spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0ea5e9a3 ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x384d1a0f ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4c1a9b73 ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5377988b ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x68cd9196 ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6f9f150c ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7aed245c ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x894713bf ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb1aa183f ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb969c9dd ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd217415a ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd72d3b4d ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdbeb2550 ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf2c6566e ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x4a5242b1 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x9cb2c5c5 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x0dd6b1a3 register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x47b54d10 c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x4cfeaed9 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6d92d0a3 unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x96b4b90c free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x9a969604 c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x01d557f5 can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0946665a can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x18a6c065 free_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x271687d6 devm_can_led_init -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x39a09827 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x6677336a alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x675a77bc safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x6f4bfbd9 can_led_event -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x711eb18a can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x86472eaa unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x95ad1887 alloc_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb04dc852 can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xbbd3cffe open_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xbf04137a alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc279ecb3 close_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xdb23252b register_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe2e4984c alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xfc8df629 can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x3e68e84d free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x8b59a1bb unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xde3cfb4e register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xdfd1468e alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x0371bd06 unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x0bb17e7b alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x4e97b738 free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xe1044571 register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0042a2a7 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x014b2869 mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01584ba3 mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a2bc80a mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d585d57 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0dc7866f mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0dd5f8dc mlx4_fmr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0efcd376 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f08fb57 mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18c3eb6f mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b010296 mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c30fc6a mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23402cf6 mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24ffba56 mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25abe870 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26334cf3 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27e12791 mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2867b4a4 mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ab32eab mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e061036 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e6e2bc1 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x308bf776 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3110f1bd mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32010796 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x351167d2 mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35cf3478 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38a2676b mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3aaad734 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x417167b6 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41b727c9 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41c0daf7 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42e79790 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44f74e99 mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x457191a5 mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49eea193 mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x501fe6ee mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5046083b mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5807679b mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58f9a21f mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5974d321 mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5cc86821 mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5fd89f9a mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x640d7ed9 mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64cf25e7 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6972319d __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b9384a7 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x708166d4 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70e6d5a6 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71903678 mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72155cc9 __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x724a707f mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x771f4979 mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77b0da78 mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78009b0d mlx4_fmr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x785609b2 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x787b44e8 mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c4ba882 mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e293e63 mlx4_fmr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7eea3da6 mlx4_map_phys_fmr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x820c43fd mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83265a1a mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88ae390d mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x892134e2 mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d94c39e mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e9ece07 mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8eb47dd5 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f9f1795 mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8fc26047 mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9056fc82 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93c8768e __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93e401cb mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95659e13 mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9913a42c mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99938264 mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a67812e mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9cd750f5 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9fa06bc1 mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1c5aed4 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa257d672 mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8c5a161 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8ce3660 mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xafd233de mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1cc03c8 mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3526bcf mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4d427b8 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbab5a0b2 mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd38a8ff mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe83bb6b mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe9bc22a mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbee373c7 mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1978b50 mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc249e58c mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc58cfc1a mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc61abd28 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6f7de5d mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc84c2567 mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8777f52 mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9ad9780 mlx4_fmr_unmap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcafdc1d4 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd256da6 mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd7e518c mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcdeed733 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcfe4036e mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1945cf8 __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1ff17b0 mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd28bd710 mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3c32211 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd46041a2 mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6a6d629 mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6c13a9a mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8017823 mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd89aeeec mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda9fde4f mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdbc03009 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe13ce6ee mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe26c5008 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe42eb96a mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4bfd41a mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeeaa65f5 mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1904616 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3d427be mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6bfa4ae mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8fb1cfc mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xffd451d8 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0291daa3 mlx5_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0744f128 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10b97d7a mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16066713 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17bc6443 mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1fe4fc1e mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32810014 mlx5_create_map_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33af282f mlx5_query_port_proto_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38218047 mlx5_query_port_proto_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x386a7365 mlx5_core_destroy_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c6ee37c mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4819fb65 mlx5_core_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49c5345c mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52b15631 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52ff3751 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60f50301 mlx5_core_create_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e179e06 mlx5_core_mad_ifc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e37361e mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7060c9be mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70a85aa0 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7dbde33e mlx5_set_port_proto -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fa7d59e mlx5_core_xrcd_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x829bd10e mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85462ced mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a598bb7 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f794b0a mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95948ad7 mlx5_query_port_proto_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x983b476f mlx5_core_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98492a57 mlx5_core_page_fault_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0261c9e mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbab86492 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbadf43cb mlx5_query_port_link_width_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0203823 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc925c031 mlx5_query_vport_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca6a9043 mlx5_core_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb7554ad mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcee2aa7c mlx5_destroy_unmap_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd280df27 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdab797c9 mlx5_query_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf6f981f mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe24e2a51 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef5a9ba0 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0d25ffe mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb8e6ee7 mlx5_core_eq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfddd7237 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x368d3d71 regmap_encx24j600_spi_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xd4ab3625 regmap_encx24j600_spi_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xe267e384 devm_regmap_init_encx24j600 -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x1ac6c947 stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x5beb22a8 stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x7811e4f5 stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xa266084c stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x312b690b stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x9a94044c stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x9dcd2a8c stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xd73e2da3 stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x1f6d586d cpsw_ale_start -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x2e24b255 cpsw_ale_del_mcast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x3c9f0e3a cpsw_ale_flush_multicast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x61646366 cpsw_ale_del_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x803b6242 cpsw_ale_add_mcast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x87adce83 cpsw_ale_set_allmulti -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x8d5f1d76 cpsw_ale_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x9e86d0be cpsw_ale_dump -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xb5a08f29 cpsw_ale_add_ucast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xc09ecc84 cpsw_ale_del_ucast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xc4401379 cpsw_ale_add_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xd3cb7d3d cpsw_ale_control_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xe2ac1211 cpsw_ale_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xe97c52b3 cpsw_ale_control_get -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xf6649288 cpsw_ale_stop -EXPORT_SYMBOL_GPL drivers/net/geneve 0x22708a6a geneve_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/geneve 0x5e42f322 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x71e86016 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xafa0db11 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xc5662af9 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xeeebf028 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvtap 0x9bc2f983 macvtap_get_socket -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x30333a53 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x660254cd bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa9878223 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xacf59471 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc60416d7 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc74e781b bcm_phy_enable_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc7aaa030 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd22da793 bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xda801332 bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdc472bc1 bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x660e6ec6 usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x85eb33a3 usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x9a737e74 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x9c59f4ed usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0d9aff4a cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x229cf768 cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa396f937 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa7f2b334 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xbb363a4e cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc582624e cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd7303684 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xdec31f5e cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf082422c cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x2b23d7b0 rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x750d7d06 generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x78f5df18 rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x792718c7 rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa806e3e8 rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf7985757 rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x00eb80c6 usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x049df4c9 usbnet_get_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0911fe2a usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x12ec2a49 usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x14d926bc usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1972bed3 usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x21558d94 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3b583771 usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4747a691 usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4a7930c9 usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x53bf499f usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5a304631 usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5eb203d3 usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6428f711 usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x66165e3f usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x84d78c9b usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x85a54133 usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8c42cd5f usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8d13c584 usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8e9f675d usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x90a6a740 usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x973bbc60 usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xab8631b2 usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb737b816 usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc9fba157 usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd0a789ea usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd69f7ea9 usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe547ef3d usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xef7912c5 usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xefd6afc1 usbnet_set_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf9410be3 usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfb95660a usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x55febbf5 vxlan_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x5b02d2a2 vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0388ac63 i2400m_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0987acd2 i2400m_tx_msg_sent -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1c8b33db i2400m_cmd_enter_powersave -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3b484b6d i2400m_rx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4105f26f i2400m_dev_reset_handle -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x42cbe116 i2400m_is_boot_barker -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5a7e6e40 i2400m_netdev_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x6741fee7 i2400m_post_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x78518314 i2400m_pre_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8d610d44 i2400m_release -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x95b429d1 i2400m_error_recovery -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x9e648ea7 i2400m_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa22c9494 i2400m_tx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xbc4cee7b i2400m_init -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc5b74e04 i2400m_tx_msg_get -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf5beb627 i2400m_dev_bootstrap -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x28d01e35 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x7bc2e722 cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xc117f6a9 cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xfc34687f cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0xa0943000 libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x05ee94a9 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x3676545f il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x67f30cda il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xb023c448 il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xfaa0e499 _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x13aadacd iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x15b1f659 iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x172f667d __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1b074767 iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x37795e45 iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4009d1e2 iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x421bc077 iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4a5ed373 iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4ea208e2 __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x512a2413 iwl_init_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x53e99770 iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x55ea205a iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x565518fb iwl_opmode_register -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5ee5ab54 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x6ffdbc26 iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7805c872 iwl_nvm_check_version -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9bf05849 iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa31904eb iwl_write_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa7e5b0a6 iwl_parse_eeprom_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xac533fc3 iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xae0527ce iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb1daafc8 __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb21fb3fc __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb7d52a42 iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb8979af3 iwl_notification_wait_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc4a8fc91 iwl_notification_wait_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc5d7827a iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd49b4b3e iwl_remove_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd7ce6161 iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe6378090 __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xfcd75f37 iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x0a277fa8 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x235aab7b lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x28ded784 lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x2ce40c41 lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5280ad06 lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9783d272 __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa8dfd77e lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb30df90f lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb310ec98 lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb70222a6 lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb97d9b04 lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xdadbf5cf lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe5a48457 lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xee9472e3 lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf3c35eff lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf9e05f98 lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x0b09a44c lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x11cb570d lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x14b79baa lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x25920c87 lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc34ab3f0 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xe5dac21f lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xee565fdd lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xf1b9d208 __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x00d7b97f mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x056397ad mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x1d234771 mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x41c3b20d mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x5fdc3dad mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x733390d7 mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x794033d9 mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x89e082ba mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8dc0b909 mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x9de097db mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb68112ad mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc013a041 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xcb7dccc6 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xda67ade5 mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf8736302 mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf8ebcefb mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf99ddcab mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xfd1bc079 mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xfdf746d8 mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x352ab7da p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x42e7713f p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x715b103b p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x7f6a1ad5 p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x90732f99 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xa28dc480 p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xaea05efc p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xce134a9b p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xed301696 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x31232ca4 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9d47c8ce dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa13ebb40 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaebc72f5 dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0b1db969 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x185c9ee0 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x362c7484 rtl8723_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3b26bd35 rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x45b1a10d rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x59b3880a rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5e0eb5f7 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x63142863 rtl8723_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7483c42d rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7cc90978 rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x800a6a7c rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x857dff77 rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x92195cdf rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9618a05a rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa04c99fe rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb055553a rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb1bc8c4f rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb276f6c6 rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbd32a52c rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc0346cb1 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc6ce79b1 rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd36255ea rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe0f1b663 rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe429322f rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe578a47a rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe88bb99b rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf52d2036 rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4403b2db rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x490ff08b rtl_attribute_group -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4f6316ba rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x573e05f2 rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5abe5765 rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5c702de6 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x616aee90 rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x65b62fca rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x981c5e6a rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa50c11b3 rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaa13a6c3 rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xafcdc668 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc279a4c3 rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc51885aa rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd28c86b9 rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf28b8445 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf28fec31 rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf6faee21 rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf9596b98 rtl_dbgp_flag_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfbcc688c rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x3c89d7e7 rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x47f22e6a rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x9eff3d58 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xa4dd422b rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x08d3286e rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x123386f4 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1af370f1 rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x23a2f7a6 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x23e2d90e rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x276533ed rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x28086873 rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x39710979 rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3ba6054a rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x496ebf35 rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4ce9cedd rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x52a26768 rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5be792c7 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x60645053 rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6278fa44 rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x683a7120 rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6aa6c605 rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6c7f7683 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x77c796a2 rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x77fb6097 rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7db73320 rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7f93599e rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x855a8cfb rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x89361a35 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x91b68413 rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9b865cba rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa8512ba3 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb1544744 rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb476a587 rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb9095723 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc386752e rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd1673587 rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd4a7cae1 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd52934c0 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xdddfedae rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf20264e6 rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf3f12b3a rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfddbb298 rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0b15a4a6 rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2b862958 rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x4104131e rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x45c37033 rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x557e2cd4 rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x7dd9e5db rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x83300a72 rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x8f3f8f99 rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc8ea2a18 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xdfc0d71e rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xf19bda81 rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xf9399473 rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xfc288657 rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0306e8fa rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x075ce0ec rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0fe468a8 rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1036c2e1 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x18bb4e00 rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x24752020 rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x277ce1da rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2e4aa496 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x33788ef5 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x34674034 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x39d675b3 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x48d89854 rt2x00mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4a26ba3c rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5a706555 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x630a3f7e rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x636dbea4 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x667b35eb rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x669af7b0 rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6902bb89 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6beca899 rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6e51f7be rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x79c0aa9c rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7b5dbcf1 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7e5f3eaf rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7e80a26a rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x803fef51 rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x813460f2 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x85a09300 rt2x00mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8c6e7bc9 rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8dbbf1f6 rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x900f30fc rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x922d159e rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9d6fb73f rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa59f81bc rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa846fc04 rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xaa2ff22c rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xad062f3b rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc0b2d5a1 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc16a70f9 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc487394d rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd0b3bbba rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe0e9c486 rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xec4e6be6 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf5b02988 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf90b5fc9 rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf97937af rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x04053e36 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x714ed00e rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x838f4617 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xeb5baf7d rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xf1f95040 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x8181f46b rt2x00pci_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x86cfd970 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xd097ff57 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xd8ede262 rt2x00pci_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x0f5248a8 rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x180fb1b3 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2441026e rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x369926a0 rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x46c46b77 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x58217625 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x5fe9e8d1 rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x6641d400 rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x72b80190 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x854d2e49 rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x89d75989 rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xa6a3145b rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd5c7115e rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe2019fb7 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf4de570d rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xfa5c6ae2 rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x012d0493 wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x98a48a87 wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xcb0a55ef wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x024c36a4 wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x04cf91a8 wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x08bf0931 wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0e8db538 wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x12bbecdd wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x174b4fd7 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x19a2a6ba wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x21bb09d2 wl1271_ps_elp_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x28383f8a wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x35aaa88f wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3e235079 wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x43e54ede wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x462da206 wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x49107c64 wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4a0b421d wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5b45df63 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5b766e75 wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x61b08bea wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x66912417 wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6bc9cce4 wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7a2e3b55 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x84a8c605 wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x84ab405b wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8d21de1b wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91da5146 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x92c5d291 wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9571e727 wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x97a9c1e9 wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9d1d3c24 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa4f7e551 wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb2944ef6 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb5f443a6 wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xba3c4f24 wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbd3e860f wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbd5da25d wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbe9c0fc4 wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc336d250 wl1271_ps_elp_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe3a9837f wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe55b0bb2 wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe8340210 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xebe3f5ef wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xefee6c50 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf26ea314 wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf775a3be wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf90e9a23 wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x2b4f1cdd nfc_mei_phy_alloc -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x4c4a67de mei_phy_ops -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x82c2406c nfc_mei_phy_free -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x011d6cfc nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x469dd6b4 nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xae3d2da5 nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xae628735 nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x40260c0a st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x461caca5 st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x50707080 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x704e1c8d st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa658f47f st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb94b31ed st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xdca2ae08 st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf6873608 st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x1d994888 ntb_transport_unregister_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32e05880 ntb_transport_create_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x4f4021d5 ntb_transport_register_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x121e45a6 nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x20976152 nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x36ec8a8a nvmem_device_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3aa12eee nvmem_register -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x68758fda nvmem_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x747503ef devm_nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xb87f27d5 devm_nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc96fb674 nvmem_device_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xccc422c3 devm_nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe18960ba nvmem_device_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe9a7fe16 nvmem_cell_read -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x377828a5 intel_pinctrl_probe -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x4318fed3 intel_pinctrl_remove -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x724608eb intel_pinctrl_resume -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0xc8a2dbec intel_pinctrl_suspend -EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x787d82b8 asus_wmi_unregister_driver -EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x985eefa2 asus_wmi_register_driver -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-rbtn 0x51552fca dell_rbtn_notifier_unregister -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-rbtn 0xa060fe7d dell_rbtn_notifier_register -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_ips 0x46809fa9 ips_link_to_i915_driver -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x56235c72 intel_pmc_ipc_command -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x75068282 intel_pmc_ipc_raw_cmd -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xdea07053 intel_pmc_ipc_simple_command -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_punit_ipc 0xa6c87106 intel_punit_ipc_command -EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x232b5238 mxm_wmi_supported -EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x61cdf799 mxm_wmi_call_mxds -EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0xe26032eb mxm_wmi_call_mxmx -EXPORT_SYMBOL_GPL drivers/platform/x86/thinkpad_acpi 0x706cdcef tpacpi_led_set -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x3ecf6cfc wmi_install_notify_handler -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x64ebe677 wmi_query_block -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xa9b7afd8 wmi_set_block -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xb5a6ebe2 wmi_remove_notify_handler -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc5e3dddf wmi_get_event_data -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc9d4d6d1 wmi_has_guid -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xe2426710 wmi_evaluate_method -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x5982e17b pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x7980ffd5 pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xbcccd667 pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0x6365870a pwm_lpss_byt_info -EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xafcf8794 pwm_lpss_bxt_info -EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xb0a94ebb pwm_lpss_probe -EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xb563cdb0 pwm_lpss_remove -EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xc34d815f pwm_lpss_bsw_info -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x0fd7a906 mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x57a59e06 mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x76940c34 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x3b340dce wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x831129db wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa58521ab wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xaf186962 wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd283504e wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xeedd3ef7 wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x228cccd9 wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0df57f83 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0f662a1b cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1a02e5db cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1f45ef66 cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x20741a1b cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x211e7450 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2f4b8e15 cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3009a666 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x34b1a3ad cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x366f52d5 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3d413c22 cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x42b26e6b cxgbi_ddp_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x446d5a6a cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4b6d7934 cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4c82ad85 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4cd5248c cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x52e29329 cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x56d462f0 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x60e99ba1 cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x62e986c8 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6af4699c cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6b813f25 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6fcbc5e7 cxgbi_ddp_ppod_set -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x76a9324e cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x788b4023 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x82912deb cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x882c0f16 cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8861748c cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x98716d75 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9881f578 cxgbi_ddp_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9c69ce95 cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa018e1ec cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa450507f cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa4bb8f26 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaa06eb94 cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xad57d159 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb493f016 cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbbc747c1 cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc0429406 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc0634cb7 cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc9c4ddb3 cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd9224302 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdf128617 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xeb658148 cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf745ccd6 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfacb10b6 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0964a271 fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1a33c044 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1cd429b7 fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x479490df fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x497edb0f fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4d9eedf4 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x64767044 fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x647761be fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7d172589 fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7ee7e43d fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x843fd446 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc2fcdc1d fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd41ac52b fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd4d7e2c1 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe878efa8 fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf24d3bc4 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x43298f83 iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x6a1993ea iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x829821ac iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xcf140147 iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xdf23addd iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe618f59f iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x00409fa4 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x01538815 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0c10cefe iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x173dab86 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1c84c6bf __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x279ad896 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2fe25dff iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3932cba1 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bc24608 iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x431d456d iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x511753df iscsi_conn_queue_work -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5536c372 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5e02cb22 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6244eea6 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x64091a78 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6b208139 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6befb09e iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x71a33881 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x784fc400 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7b667239 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7d8839d4 iscsi_eh_target_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x830ca61f iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x84c39703 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x86127a8f iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8de68fa1 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9b05719a iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa2111111 __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa85d90cb iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaa814fec iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb41ece1b iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbc2ae922 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc049a957 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc1d44769 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc77c9fe9 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc954d59e iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc9565af3 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd36f4a3b iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd52e0975 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdfc67c5b iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xee1a1948 iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xef345dac iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfc0a03ea iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x040cff2c iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0730fdc9 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x107bc33a iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2211c6cb iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x248aecdc iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3d49a81c iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x49076939 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4dfcb783 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x54a9b321 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x58b0d381 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5b107a79 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa50fcc6b iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbc4d094a iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc4178b95 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd1f45449 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xec1167fd iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xed00009b iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x06b6f139 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x09ce3f90 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0f05e998 sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x103e1c56 sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x11b3a0a2 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3771855f sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x42456de8 sas_domain_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x43afca98 sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4965d6e7 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5292f311 sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x61faae5d sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x75cd0c0c sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x830e2cb8 sas_eh_bus_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8cfee0fd sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9e75111f sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xac59c7c9 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbebe1053 sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc363fd1e sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc3c564fb sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc94595e1 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xedf0da8b sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xee09dd79 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf86d26cc sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfa9c2392 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x05d4db7b iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0d4f0416 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0f5792c6 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x13e74071 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x16ed5a55 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x18a42a4b iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x21488887 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x22a51777 iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x235f94c1 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x29a069f0 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2afbfa78 iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3588e5d7 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x39e9c460 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3b06b633 iscsi_is_flashnode_conn_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3d3de343 iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3ffae5bc iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4d106f7f iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5dc26336 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6997db84 iscsi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6df032e2 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6e56979a iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x72151081 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x781dedf0 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x85c59c26 iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x875137b2 iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8b06ea0f iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9c799219 iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa15079c9 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa75cbcd iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xae7dcfd6 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbf2bbf2a iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc10c08aa iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc8973897 iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd064e8a3 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd5134b4e iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd8cc1523 iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe184b5d8 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe58e7ec1 iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xea2db815 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xff219516 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x1c07a129 sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x9f06ba82 sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xeab58e92 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xf7325001 sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xaaea2946 spi_populate_tag_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x418f71d8 srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7f1d7f34 srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x9f01995a srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb687198a srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xc536f45e srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xd0f0d1c4 srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x16b9331a ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x377ba75e ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x3c35d7a7 ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x558e9828 ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x741d5b7f ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x81d09b59 ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x987db80d ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x39e94d1a ufshcd_pltfrm_runtime_idle -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x5674cc36 ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x6813b69a ufshcd_pltfrm_shutdown -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x86ba44d9 ufshcd_pltfrm_runtime_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x8b7f6904 ufshcd_pltfrm_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x959431cb ufshcd_pltfrm_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xc9922d1c ufshcd_pltfrm_runtime_resume -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x2ccb4d31 spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x4ae16c35 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x644cca0c spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xac1e7148 spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xdb664a4b spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x54d3218a dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x77b7076a dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xea02a762 dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xfb1343f9 dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x079b7ca7 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0fa27f4b spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1696e7b4 spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1b065f94 spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x280fc489 spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x468649fa spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5a513f80 spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5c7e8a3a spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6b9e855d spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x78767c12 spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x82c26c2d spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9b497b71 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb2251b26 __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc3a37218 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd60fc1a1 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdd3eb0e3 spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xece07e10 spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf8f686ab spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xe1c59a8b ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0735a870 comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x15d076f3 comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2628e6d6 __comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x292c454b comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2d2dbd95 comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x52b58fc0 comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x568f6d3c comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x585c25c1 comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x602967e1 comedi_timeout -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x61d92331 comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x65a90d75 comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6efc9248 comedi_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7047f1d1 comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x79b38283 comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x88f03ec8 comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8b6964d9 comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8cd9f911 comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8e7bb429 comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x92eaf96a comedi_dev_put -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x963ea488 comedi_event -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa043f446 comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa3645e3c comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb53dfbef comedi_handle_events -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb60525b6 comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb8ffe95b comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc269b147 comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc50c3702 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc6231b65 comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdf53d3c4 comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xed73e31d comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf030ec17 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf1284912 comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf4752e5d comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf5ecbb2b comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf9768cf0 comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x162f0751 comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x6fbea797 comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x914d149b comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xb47efe88 comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xc8d17e01 comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xcf1fd9c7 comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xd1041683 comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xf845dfbd comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x5cbbc1b0 comedi_pcmcia_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x794aa136 comedi_pcmcia_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x9b3d97d0 comedi_pcmcia_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xb803af94 comedi_pcmcia_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xd3096e6d comedi_to_pcmcia_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xd703d578 comedi_pcmcia_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xed87fe5f comedi_pcmcia_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x12dba09d comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x35c1db3a comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x43f29bdb comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x5a4c7982 comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xb15bfb1d comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xd5eae1e3 comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x60879bbd addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x84ec4313 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xf3f8680c amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x7f37577a amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x18feb0c1 comedi_8254_load -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x640e7382 comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6b33a7d2 comedi_8254_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x889a2661 comedi_8254_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x8a27f64b comedi_8254_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xa2409fb3 comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb5a642f7 comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xbdce3d45 comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xd029af1e comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xd1bd1f16 comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xec350212 comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xfb575a97 comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xfc87ed5f comedi_8254_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x12f3ab2c subdev_8255_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x31fd6fbb subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x5bdb5ff9 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x0d68fcd9 comedi_isadma_poll -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x18589fae comedi_isadma_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x6815a033 comedi_isadma_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa3d01a85 comedi_isadma_program -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa7ebb8a3 comedi_isadma_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x39b8403d das08_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x01fabff2 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0667afcd mite_prep_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x1ef03aa7 mite_dma_tcr -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x21eed8a3 mite_done -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2fa0bfe2 mite_free_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4d878fa1 mite_bytes_read_from_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6080aa8c mite_bytes_written_to_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x66cab54c mite_sync_output_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x69eb26b2 mite_get_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7225af25 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x799e5f5f mite_release_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9750981e mite_setup2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x98de80b9 mite_bytes_read_from_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa07272f8 mite_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb3d86b78 mite_buf_change -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb5d9a594 mite_bytes_written_to_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc42719a5 mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd4638671 mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe7e4a1ea mite_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf959a991 mite_sync_input_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfcc36dd5 mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x18034ef1 labpc_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x8b4bb574 labpc_common_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x1b2e8a73 labpc_free_dma_chan -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x5d351745 labpc_handle_dma_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x636af58a labpc_setup_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x63f04c92 labpc_init_dma_chan -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x6d56edca labpc_drain_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x042a7aee ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x2ebf0a09 ni_tio_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x41148f98 ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x6f1861e8 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x9c2f0a5e ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xb0cf1499 ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xe90d7386 ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xee76474e ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x39933eca ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x3f143ece ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x9363aca2 ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xa3231cba ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xb4b61e8c ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xd27720d0 ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x7c43badf comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xa15a1044 comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xc0a041b0 comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xc88de7dc comedi_dio_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xee9577f5 comedi_open -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xf7a8e4cf comedi_close -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xfa8c7989 comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x81192572 adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x00c0997a channel_has_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x0a5d7844 most_start_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x26efd438 most_register_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x333abf0d most_get_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x3550d22c most_deregister_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x46eed0ae most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x7c606416 most_submit_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x83e43041 most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x88d0d959 most_stop_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xb3521fe8 most_deregister_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xd7cb26c6 most_put_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xf197a1cc most_register_aim -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1e1e5f45 spk_synth_flush -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x214f9b11 spk_do_catch_up -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2ab8daa7 speakup_info -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x3b8dc031 spk_serial_synth_probe -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x62b44416 synth_remove -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x7fa99c71 spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8b3aeb81 speakup_event -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9f7f0de3 spk_synth_immediate -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xce75e55e synth_add -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd8a54da1 spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd93c3283 spk_var_show -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xf84cbcbc spk_var_store -EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0x020c204b int340x_thermal_zone_remove -EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0x4e0155c8 int340x_thermal_zone_add -EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x68b1edb7 intel_soc_dts_iosf_add_read_only_critical_trip -EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x9e80d899 intel_soc_dts_iosf_exit -EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0xa1c1cd73 intel_soc_dts_iosf_init -EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0xb13fdca0 intel_soc_dts_iosf_interrupt_handler -EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain -EXPORT_SYMBOL_GPL drivers/uio/uio 0x29f47c7c uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0x81ce6fcd __uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x85a2d588 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x5bfba3dc usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xdbc89219 usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x103b6ff0 ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xd4f73c71 ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x3af12189 ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x52f388f5 ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x735c2b4f ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x7e530018 ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xdaba1e6a ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xe091b907 ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0ea168dc gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x33ce17ec gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x34b2d560 gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x52342313 gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x52fdf9c6 gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x659ce931 gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x66673f9a gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6ac6d094 gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x748d5486 gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x84c6e6ea gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xaebf7e55 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xce55f92c gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe362b710 gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe8c61b02 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xffd79fae gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xdaad4028 gserial_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe283ea1f gserial_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xc8feae41 ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xdc21605c ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xe5d906e4 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0c053fc4 fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x25b0a8e4 fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3b2a29ba fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x546c7f99 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x73d92c7b fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x987bc0cf fsg_config_from_params -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x993d3311 fsg_store_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa9b93c0e fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xab3d7c85 fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xab4d7903 fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb4333a10 fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xcdc0d962 fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd159ded0 fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd468f882 fsg_common_set_ops -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xda4d8539 fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xde94cdee fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe4cf99fd fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf03c2921 fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0a571112 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0cdcb4e8 rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x25d47c4f rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x26c93f3a rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x316d8c5e rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4319add9 rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x880fd98c rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8cafc9bf rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8d6ffb8c rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa3a26a3f rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xccfb478f rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd51115fd rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xda5073a4 rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe310b6b3 rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfff96d1e rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x19aa585c usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1b211bf2 usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x279f994f usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e660439 usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x30540742 usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3176ce95 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x56f33ed7 usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x600a3083 usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x649cf5d8 usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x66805400 usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6919008c config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6d361c79 usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6e805616 unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7525b6f4 usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x762b068d usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7a62d788 usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7df8c972 usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8168464a usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x916bc599 usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9ccd47a9 usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xaab6e0b3 usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb69c4ddd usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb80a9d46 usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd7a81341 usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdf3df679 usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe01ac0ce usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xeaf1f379 usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf4304692 usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xff21b41a usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfffef2dd usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x18546c11 usb_add_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x19fee566 usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1d0604d7 gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x214f5198 usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2c5200d5 usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7038ed2e usb_gadget_probe_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x80b95962 usb_udc_attach_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4744dba usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb1f98f2e usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb3bbe3a9 usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc20c1993 usb_gadget_map_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc5f119b4 usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xeb49db31 usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf347b31d usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xa57dd5e0 ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xd81f8b65 ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x07945b52 ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0cf36f1b usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x36bac0ef usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x614d8f6c usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x624ff435 usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x6a240e43 usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x821c2cb0 usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa26794ba usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa958f0e1 usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x1e2fa9a9 musb_interrupt -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xbe02207d isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x3f0ca96f usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x048070b6 usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0ea32bcc usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x11b8b7a5 usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x233c4ecd usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2a433864 usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2f792a3c usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3b3bd648 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3feb8f97 usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4bb6135f usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x73a2d545 usb_serial_handle_sysrq_char -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7e1a7d17 usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7eae3bd3 usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x80344260 usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8c3dd846 usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa2a04c30 usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xae1f1013 usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb2da0015 usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd83dbaa8 usb_serial_handle_break -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe6cf03ee usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xeb745827 usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xeffb8b10 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0ee1e925 usb_stor_Bulk_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0f27a4b1 usb_stor_CB_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x140663dd usb_stor_Bulk_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x23afdc1d usb_stor_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x568bb6e1 usb_stor_adjust_quirks -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x569239ce usb_stor_suspend -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x57d38c55 usb_stor_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5ca019f3 usb_stor_post_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x61ce65d4 usb_stor_reset_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x621d141b usb_stor_access_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6277f6f3 usb_stor_disconnect -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x65d6d80b usb_stor_control_msg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x72d518fb usb_stor_bulk_transfer_sg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8646c1e3 fill_inquiry_response -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8d0e5cac usb_stor_set_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x98b69fc0 usb_stor_transparent_scsi_command -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9a4c397b usb_stor_host_template_init -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa8a99408 usb_stor_pre_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xac56a83d usb_stor_bulk_transfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xba1e52e2 usb_stor_bulk_srb -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc5307720 usb_stor_ctrl_transfer -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xdce62c60 usb_stor_probe1 -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xee838824 usb_stor_CB_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf17973c0 usb_stor_probe2 -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1384b21c usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2a94b150 usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4a95019a usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x59bbb8fa usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8b1da0d6 usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x96cb5edf usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9df36178 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbc5600a6 dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbd7ecd57 usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc988e785 usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe88d585f usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xfbfa98a3 usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x17a6c02f __wa_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x18cc3f78 wa_urb_dequeue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x1e5af955 wa_dti_start -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x2982e20d wa_urb_enqueue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x3c77c8d0 wa_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x4964bf5e rpipe_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x636aad88 rpipe_clear_feature_stalled -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc543b60e wa_process_errored_transfers_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf4654c3f wa_urb_enqueue_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0af51e0c wusbhc_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x23f6d7c6 wusbhc_mmcie_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3bc7e130 wusbhc_rh_start_port_reset -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x5d14f988 wusbhc_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x5f937170 wusbhc_rh_status_data -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa108cfff __wusb_dev_get_by_usb_dev -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa3c97ba6 wusbhc_reset_all -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa52696b5 wusbhc_b_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xab6fe7ee wusbhc_giveback_urb -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb2e6ebb6 wusbhc_b_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb7b96c25 wusbhc_rh_control -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb91db3f9 wusbhc_handle_dn -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xbced146d wusbhc_chid_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe7cd3c41 wusbhc_mmcie_rm -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x0a08cbd9 i1480_fw_upload -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x1d8783c9 i1480_cmd -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x6eb43aa0 i1480_rceb_check -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x0328e008 umc_device_unregister -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x048be83c umc_driver_unregister -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x205e63b0 umc_bus_type -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x2606728a umc_controller_reset -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x2a3b205e umc_match_pci_id -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x3a6469c8 umc_device_create -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xb7ea0773 __umc_driver_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xd9a0d3d3 umc_device_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0193e0f2 uwb_rc_get_by_grandpa -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x04d2727e uwb_notifs_deregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b8aad57 uwb_est_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x158107e4 uwb_notifs_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x16be7558 uwb_rc_alloc -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x22ae23c5 uwb_rc_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x23d5e385 uwb_rc_reset_all -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x28646924 uwb_radio_start -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x33f1ff13 uwb_rsv_get_usable_mas -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x35c267e2 uwb_rsv_terminate -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x36d0aa26 uwb_rc_get_by_dev -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3f549b76 uwb_dev_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x408b3e54 uwb_rc_neh_error -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x410518a4 __uwb_rc_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4ddb4659 uwb_rc_cmd_async -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5d727752 uwb_pal_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x65c05729 uwb_rc_pre_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6bb81f29 uwb_rc_put -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x735c9cd1 uwb_rc_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dcfcd23 uwb_ie_next -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7ee2bcb2 uwb_rc_post_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7f489295 uwb_radio_stop -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8683d290 uwb_rsv_establish -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8a1fbb45 uwb_dev_for_each -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9495b4c7 uwb_rc_vcmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x94c82d42 uwb_rc_mac_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa63df3c0 uwb_rc_cmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa8d8a81a uwb_rsv_destroy -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xac4bfe2f uwb_est_find_size -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb6281b08 uwb_rc_ie_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbc671141 uwb_rsv_modify -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc645503b uwb_rc_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd4a3fcbb uwb_pal_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xde7ed0e6 uwb_pal_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe4913247 uwb_rsv_create -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xec7a7940 uwb_rsv_accept -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xee2824c5 uwb_rc_dev_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf4b3c974 uwb_rc_neh_grok -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfcd432d9 uwb_rc_ie_rm -EXPORT_SYMBOL_GPL drivers/uwb/whci 0x183e3e9e whci_wait_for -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x17acbec0 vfio_del_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x25a168f9 vfio_device_get_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x74e3dbef vfio_add_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7e568e77 vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xbe5405f0 vfio_group_get_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe1dd1d68 vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x20f1aac8 vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xc046165c vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x042789f2 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x06c292bc vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2a21485c vhost_work_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x396d1402 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x41d7094e vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4cb96f77 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4d08d469 vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x52366f99 vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x57ee97d1 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5ee770c4 vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5f7e1700 vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6c63ba54 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7a8ef1c3 vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7aad5622 vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7c6eb772 vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x89dae845 vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8a141a8f vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x91bb556a vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x98b09503 vhost_init_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa5655a21 vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa75cc6fd vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb4925d38 vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd417b04c vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd4949996 vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd834510f vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe2832a1c vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe66c657c vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe715c5f4 vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf5673c4a vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfc31ed29 vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/video/backlight/apple_bl 0x2c63e051 apple_bl_register -EXPORT_SYMBOL_GPL drivers/video/backlight/apple_bl 0xdab0f892 apple_bl_unregister -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x08736007 ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x66db0aff ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6bc0e9ed ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x74fcaec8 ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x7c5e839d ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x98adca00 ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9e52b2f1 ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x0b1cca9b auok190x_pm -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x1a96a1a9 auok190x_send_command_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x5f2f946a auok190x_send_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x7451af09 auok190x_common_remove -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x8109cd87 auok190x_common_probe -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x87c1f9bc auok190x_send_cmdargs_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x9aaf317c auok190x_send_command -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xb7dcfb88 auok190x_send_cmdargs_pixels_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xd3346f23 auok190x_send_cmdargs_pixels -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xe5a3cbc4 auok190x_read_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x9200df00 fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x105ac0ee fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xe6d6a322 fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xa9278a65 sis_free_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xc6c85b78 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x016e6c20 vmlfb_unregister_subsys -EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x90c018c6 vmlfb_register_subsys -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x22a7af24 viafb_dma_copy_out_sg -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x292da7a2 viafb_irq_enable -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x30cc9311 viafb_request_dma -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x31469540 viafb_pm_unregister -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x79e6190a viafb_irq_disable -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x7bed47fc viafb_find_i2c_adapter -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xb4f863e6 viafb_pm_register -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xcaefb732 viafb_release_dma -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xfff2dfd2 viafb_gpio_lookup -EXPORT_SYMBOL_GPL drivers/w1/wire 0x087f8661 w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x2316654a w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xa3ee7599 w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xbd5a84ec w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0xc136cd68 w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xc340ebe1 w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0xcc76adb5 w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xee1cd931 w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0xfca9036c w1_read_8 -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x88765f36 xen_privcmd_fops -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x01d5da6f dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xa15505f4 dlm_posix_get -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xa566c220 dlm_posix_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock -EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x1db26be9 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x2466b38e nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x304200d2 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x5be18e96 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6eb437f0 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x90f7042b nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xcf05cf0a nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00789b22 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0238ad8f nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05db75f5 nfs_file_fsync_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05fe4ca0 nfs_fs_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x080eb7ed nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09592e0a nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0970a357 nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e233df6 nfs_remount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10a9f6ef nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x115f3834 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16a188f7 nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b77dc6a nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1dbc4e62 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21289d44 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x242800e9 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24eb995f nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x252c987e nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2585bf28 nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26134231 nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28094a2d nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d432da8 nfs_clone_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d8a622c nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2efd0419 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f62e7a7 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30fd8c06 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3198d83a nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31b30cd2 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3901b3de nfs_pageio_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3bbbd419 unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c3ea5f0 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d1fa276 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f5089fb register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4169c582 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x43ac6022 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4571fd6b nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46e6a258 nfs_pgio_data_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49f0e913 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ac132fa nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c564a50 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4da28c18 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4db5d75a nfs_fs_mount_common -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e78dff2 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5074ee58 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x524efbf8 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53a01e4f nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5401df21 nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54b016ba nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5551850a nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56fe6600 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5720bc95 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5af43120 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5baef05a nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c8aea0d nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f783a5a nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60b896a7 nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64b31f5c nfs_file_splice_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64d1937f nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65ab5674 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68fa1eb7 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ba211e8 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c902bf8 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x701386b2 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7062ebe9 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71379614 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x737b4dc3 nfs_destroy_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74973aff nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x775f84fe nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x778cc143 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f25a2b6 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f976497 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83a7731b nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8845d27c nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8924b4bd nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a354a5f nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a4a98e3 nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b5ee81f nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c655a76 nfs_set_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c7c4376 nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90f1eadb nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x910affc2 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91c9dc75 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95839c1b nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c109c92 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9da058df nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa17bbde4 nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1b920df nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1c01bf9 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa578e61e nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5e8f6a7 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa14361 nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab2e65cb nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab99e444 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaba89800 nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac2830d7 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae1d16a6 nfs_fill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb54cbc1d nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6a7aa84 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7f2e5fe nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb876aa2f nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9bd5b14 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9e9bcc3 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbacc1211 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbaf5798f nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb3cc6dd nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc080c704 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4b8f679 nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6d654c0 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcab9745f nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcef184cc nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1eb9be8 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3d0f262 nfs_try_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd44e2c2b nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4dc31ad nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd86b40f0 nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xddfe80a3 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe20732d1 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe53a927c nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea352bec nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xecdbb008 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xedc9627e nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef804816 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1458d4a nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2292a48 nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf38c93c9 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7f556e2 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8b0b51a nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x87fd7078 nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x07b4b859 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x093b792d nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0c8d70db nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x10b1f413 nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x15ceee52 pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x208eaae2 pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x234d3d07 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2d726ce7 pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2d7e6ba7 pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32db7f29 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x34302751 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3be17e36 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x44dd65b7 pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x45c223e3 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48cddcb6 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4d8b3e89 pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4dd65e68 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4e37cd45 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x52d523ef nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x542d9473 nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x55e67120 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5c60f901 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5cb52b6c pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5edd7f84 __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x61f7b813 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63623a75 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69bef193 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69e5d8c9 _pnfs_return_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6b8cb68c nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f7c01cd nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x707e0b1a nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x72a4b97d pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x745fcf96 nfs41_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x791acd7b pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7ee812c0 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x85b4bcda pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x91d29b96 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x94124d73 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9ff0b269 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa53c9b31 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xabd6abae nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb2e54e0e pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc24243eb nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc1d614d pnfs_put_lseg_locked -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd1616086 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd20cd927 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd576bffd __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdacd4238 nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xde84ec59 pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1de0e62 pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe7dbd252 pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeacb6919 nfs40_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeeb9825a nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeef367a3 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xef9ed802 pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf2c4801d pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf6e9c3e9 pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfa446a02 pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfa8abca1 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfd4f13ce pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfda9f49f nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x8be83b6e locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xa8b83ee5 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xac72b95b locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x20978fe0 nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xc65a459f nfsacl_decode -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1cb231d0 mlog_not_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5f013fd3 o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x663986bf o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6988f949 o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x741c6fa8 o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa9f5379a o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb7bdcaec o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd5afc9dd o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf8dc26d0 o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x1154de7f dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x1d0f2b89 dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x9df94cb4 dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc35f2df7 dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xde9060eb dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xe05803b9 dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x89ae48d9 ocfs2_plock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe540588a ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xf82c0181 ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq -EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures -EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats -EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb -EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random -EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait -EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop -EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end -EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init -EXPORT_SYMBOL_GPL kernel/torture 0x82f06ecb torture_shuffle_task_register -EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init -EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin -EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin -EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init -EXPORT_SYMBOL_GPL kernel/torture 0xdc1ee4da _torture_create_kthread -EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end -EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init -EXPORT_SYMBOL_GPL kernel/torture 0xeaa60998 _torture_stop_kthread -EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping -EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress -EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress -EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch -EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch -EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch -EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x0ee77bd9 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x68d7e051 notifier_err_inject_init -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x021957e1 raid6_datap_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x0f8a2742 raid6_2data_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xd4cb6873 raid6_call -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x201d8ea3 encode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x29fa419f decode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x57861324 base_inv_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x57d39367 base_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x882ce5fc base_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x9e0112d0 base_inv_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xaedfbb15 base_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xc8fca8a6 base_inv_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xd11741a1 base_inv_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xe3d900b5 base_old_false_key -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xb65fc4eb lowpan_header_compress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xf6a5ea98 lowpan_header_decompress -EXPORT_SYMBOL_GPL net/802/garp 0x6a99a574 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x74f0355c garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0x840e1649 garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0x8d25362a garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0x90a048e3 garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0xdab53556 garp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x30b27bbe mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x78bd7cd3 mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x9659374c mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0xa548847b mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0xa71eff26 mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xee642354 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/stp 0x8d0a9b5c stp_proto_register -EXPORT_SYMBOL_GPL net/802/stp 0x909fe14b stp_proto_unregister -EXPORT_SYMBOL_GPL net/9p/9pnet 0x4198fffa p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/9p/9pnet 0xe64d84c7 p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier -EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier -EXPORT_SYMBOL_GPL net/ax25/ax25 0xa16b8315 ax25_register_pid -EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast -EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x02f0ec64 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x3dcfa4fd l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x53209dd9 l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x582984fd l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x776d1960 l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x87ca5cbc l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x92d91016 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc73650d9 bt_debugfs -EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable -EXPORT_SYMBOL_GPL net/bridge/bridge 0x18273532 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x340410dc br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x38fb28be nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x74a10e60 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa46a6fcc br_deliver -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb29ff50d br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe25c9d38 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xeff6d25c br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x0ce54816 nft_bridge_ip6hdr_validate -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0xfd8dbd74 nft_bridge_iphdr_validate -EXPORT_SYMBOL_GPL net/dccp/dccp 0x02fab52c dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x03fbe539 dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x056f57da dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x05be966f dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x08e3db0a dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0f94247b dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1b0febed dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x201104f6 dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x23672cd0 dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4dea10f5 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4e2d4d99 dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5dfb58b0 dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5e711361 dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0x63a92c38 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6823af2a dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0x69520bc2 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6f43d211 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7be61e85 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7ed5973e dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9008fec3 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9bf5053d dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa0f910df dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xaa0d67a2 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xae11b3a8 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb27ce88c dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc8ef1cc1 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcd687c01 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcf26c3e5 dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xda4405c2 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe509f817 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe549eb09 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0xee51e140 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf789b9c0 dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfb57c325 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1b51ac3c dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x522f31a6 dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x72db86a8 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x8984c90e dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa634fc3e dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xcc78b5f6 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x0d95e1fb ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x2935064d ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x33c387a0 ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xdb5f0959 ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ipv4/gre 0x212357b9 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0x5b106fb1 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x040f4465 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8212dee0 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x82bf242e inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x986862aa inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfa96a3ac inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xffe91803 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x0ccb9899 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x00b2998f ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x13866111 ip_tunnel_delete_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1669ac04 ip_tunnel_ioctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1bdf80f6 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1ce83d87 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1f3de4a4 ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x476f2e0b ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5b9ea5e7 ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x96679340 ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x993de22b ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcdf95134 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd541a7c4 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd7cd231c ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe121710d __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xedc5bacf ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x2a8ed8a1 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x12f56ee8 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x37bcff40 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x395b0df4 nf_nat_ipv4_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x92b8a790 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xaefa9beb nf_nat_ipv4_local_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xc33b221d nf_nat_ipv4_in -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xe82ef2cd nf_nat_ipv4_out -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x5ff59626 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x0faad93c nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x1f7a460a nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa7560bc4 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc6919347 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xfbec1196 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x59aaf4e0 nft_af_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x0b1a9ce6 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x14c507ab tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x29eaf400 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x4fb3c044 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x8a23f2f1 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x18d1c9c7 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x54c24128 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x5b620e86 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe6f716b8 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x0875a32a ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x0a73e530 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x28039a1d ip6_tnl_dst_reset -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x3020bfe3 ip6_tnl_dst_set -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x964441e3 ip6_tnl_dst_init -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xbcf392ff ip6_tnl_dst_get -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xfbf21c47 ip6_tnl_dst_destroy -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x62211eb1 udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x9692019e udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xd6d54ad1 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x09782edf nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x211a3e95 nf_ct_frag6_consume_orig -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x3a977b1e nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x0e85d924 nf_nat_ipv6_out -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x22fb37f0 nf_nat_ipv6_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x3343d800 nf_nat_ipv6_in -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x74fe51a6 nf_nat_ipv6_local_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xddc652bd nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0xd01c0276 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x031d4840 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x19eb1cf5 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x7d188a28 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x9f2d3ea2 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xafc4a656 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x81292758 nft_af_ipv6 -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x352e1945 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x379ff388 l2tp_tunnel_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3cff0820 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3d288a7c l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x436a23d5 l2tp_session_queue_purge -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5708350a l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5c3cc69d l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6071c304 l2tp_session_find_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6db8e53d __l2tp_session_unhash -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7b2dca2a l2tp_tunnel_find_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9e8518db l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb76bec6a l2tp_session_free -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb7e9ab5d l2tp_tunnel_closeall -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcfc229aa l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd79d1cda l2tp_session_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe68dd162 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xfc5f516b l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x06f84632 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x101b8826 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1c713397 ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1cc5dd49 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x228a5a3b ieee80211_iterate_active_interfaces_rtnl -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x33afd28d ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x35468a09 ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4f1d1c12 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5012f009 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7466bd70 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8ea67951 ieee80211_set_key_tx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8f09c20b ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9f31136e ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc5958759 ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc6a1d0e0 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcfd6c770 ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xebdf8959 ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf68e15f7 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x26fcafb4 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x9f085bab mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xad04e448 mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xd0d69876 nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x132072ad ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2d71d916 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3d265fb4 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x49f82e37 ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4da31b71 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4f85ea7e ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x67e979fa ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8d5d3f39 ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x92afd06f ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9769efa6 ip_set_get_ip_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa17ed6a4 ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb458cad1 ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbbc38967 ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc9739766 ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcd9ae11c ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xec8b5793 ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x884ef8bb register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xcc873595 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xe00dd321 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xf6ff69fb ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0084e487 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0105e2fc nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x019fd117 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x05991d11 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x096b4eba nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a445032 nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a5e35b3 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0dc9a3e8 __nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0f282321 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10809b81 __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10d25791 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1300ced7 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x136f6232 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1486c49c nf_ct_expect_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1497885b nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15d272f6 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15f99453 __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x202733dd nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2099691d nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x252ddd38 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2767e8c3 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2a4c05a7 nf_ct_get_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2abdb1d6 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d0bd5be nf_ct_l4proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ec28d17 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3faa5b48 nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x439eb1fc nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4c60fc2d nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x56a80a80 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a2f8999 __nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5daf0f01 nf_conntrack_l4proto_udp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62e4940d __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x65939659 nf_connlabel_match -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x67037ab8 nf_ct_expect_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x677bac6c nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x67a4c16c nf_ct_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a18dc58 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f996d83 nf_conntrack_l4proto_udp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7173081d __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x748297d1 nf_ct_l3proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c3e3f36 nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f7b29b5 nf_ct_l3proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x870b9e2c nf_ct_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a9fb63f nf_ct_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f40de3f nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9334634d nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x93817025 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x984a67b4 nf_conntrack_l4proto_tcp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9881e153 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9aae815d nf_ct_l4proto_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b2048c0 seq_print_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b74e285 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9bedd706 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa14c4af9 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa206f5ec nf_conntrack_set_hashsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa67b934d nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7c495cd nf_conntrack_l3proto_generic -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7d76704 nf_ct_iterate_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7fedfb6 nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa8944129 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa9466189 nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa7c0536 nf_conntrack_l4proto_tcp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaea18224 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb8fb6abc nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb8c9184 nfnetlink_parse_nat_setup_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbfdbbee6 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc4b8f588 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcde6d1ce nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd0af489d nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd2dda391 nf_ct_l3protos -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3808951 nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc1f08d8 nf_ct_l4proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe3720eaf nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe79ecf1a nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf202fc20 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf36224a2 nf_ct_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf9f1dca5 nf_ct_l3proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfad7b5b7 nf_connlabel_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd6c67a4 nf_ct_l4proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe213da9 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xa69f72fc nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x7abcf844 nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x2da259c4 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x112432f2 nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x2ab9613d nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4416ce36 nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5c12a854 set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x936fe284 nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb23c1e7e set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc9275c62 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xea1dfc5f set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf71c44cf get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf7b92229 set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xfa6e075e nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x1f5248d3 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x6415bb00 nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x73408213 nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xedba7135 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x4dd662ba nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xda93e752 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3fb38405 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5fc852da ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xcf57bdea ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd56200dc ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe5c2416a ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe79d12c2 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf1805615 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x999c21db nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x91ac0af3 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x3d96ab3d nf_log_dump_udp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x69b0b74f nf_log_dump_packet_common -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xb8aba3ee nf_log_dump_tcp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xd273b288 nf_log_dump_sk_uid_gid -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x04cd1dee __nf_nat_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1991d3eb nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1da478be nf_nat_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2a061d4b nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x44ed7034 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6be85ec3 nf_nat_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xca59bb1c nf_nat_l4proto_unique_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf2651edb nf_nat_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf7b9cd31 nf_nat_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x60ab84b1 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x71f63874 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x85dcd179 synproxy_tstamp_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8841d39b synproxy_build_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xabce97a6 synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x011383fc nft_set_gc_batch_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x021f8085 nft_unregister_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x03753694 nft_unregister_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2b3f5335 nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2ea31333 nft_register_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3b6fc022 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x50e609f2 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x65ab5fd7 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x87a870cb nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb0bc010d nft_unregister_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xba5f8ccd nft_register_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc101fc63 nft_validate_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc6bca9af nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe5e99773 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe5ebad33 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf42f0e1d nft_register_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfe11e347 nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x25d969b8 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x32e580de nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x38702dee nfnetlink_alloc_skb -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x47aa8df0 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5d10f7f9 nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6c222db4 nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x870e5e76 nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x34cbeb01 nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xa57c3009 nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xe6ca26c1 nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x61a3d7c9 nfulnl_log_packet -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x27a5ba57 nft_masq_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x72d3a031 nft_masq_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xd103385e nft_masq_init -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x1f8f1013 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x287dffe2 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x500b3cae nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x6cd6e8a5 nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xaf7cd0db nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xecac97f2 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x0ae92391 nft_redir_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x4041c03c nft_redir_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xe7da75f4 nft_redir_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x2aa8de4d nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xc04748dd nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x00df6214 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x018ef9f3 xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x05e2f19c xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x296fe4a2 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3d212da6 xt_hook_unlink -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5df5a523 xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x60b25112 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8ae62bb0 xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7e0f935 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xad60fc3f xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb7d32e51 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc0aa2186 xt_hook_link -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd044d310 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xde204aea xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x4c32c169 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xb7459345 xt_rateest_put -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x163337ad nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x29c59228 nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x996bb943 nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x2b3c401f nci_uart_set_config -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x36111c4d nci_uart_register -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x7c47eb15 nci_uart_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x05e5d755 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x063429d7 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0f1daf81 ovs_netdev_detach_dev -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x246735bf ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x74dad0c4 ovs_vport_deferred_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xbdeff841 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xcb9a93a7 ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xce0076d6 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe66f1b65 ovs_vport_receive -EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x1abdd6cf rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x5341dece rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x5721e840 rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x77b5cf1a rds_page_copy_user -EXPORT_SYMBOL_GPL net/rds/rds 0x886c0bcb rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0x92bbe47d rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xb25d7cd0 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0xb6380463 rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0xbed2b43c rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xc1ce9eb3 rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc6b373ab rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xc6f6fb16 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0xcc2ca154 rds_send_get_message -EXPORT_SYMBOL_GPL net/rds/rds 0xcfdd21c9 rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xd8b1ed58 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xde673448 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0xe0f56e82 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0xe43d177c rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0xed8e6cc0 rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0xf385f4cc rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0xfb43223d rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xfcb1bf3d rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xfcc27c68 rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0xfccecace rds_message_put -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x47f422b7 rxrpc_unregister_security -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xb0ad4926 rxrpc_register_security -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x18b93d9e gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x2670ebfd gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x7d36f80a svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0164417d xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x038cf671 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03bed53b rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04e9c06e svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x050066e4 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06b155f1 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07ca5a8c rpcauth_cred_key_to_expire -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a1310e3 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a88b95f rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bfa2267 rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c332448 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ca19b13 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f6c9014 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ff61b0c svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1025ef15 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12b5b2b7 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x192c1d38 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cb6dc4e rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ee4123b xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f5a5b51 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2020b1e7 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2236d2aa rpc_protocol -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2240fe94 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23596f4b svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2422e55e xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2512af9f svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2785b938 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2aa2506f rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d4b7d62 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f837d12 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fd0613d xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ff94e15 xprt_set_retrans_timeout_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x320731f7 xdr_set_scratch_buffer -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33fc898f rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x352d2fa4 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37a21cd0 xprt_lock_and_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a7f6e08 rpc_lookup_cred_nonblock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b253d64 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bd72144 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c46572e rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c56d422 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cdea25f xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d182a69 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3de120c6 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ec28d59 svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ec6ef53 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41016224 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44db5b3d sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45c2eb80 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x491144d9 rpcauth_key_timeout_notify -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b1dca91 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e1b748e cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e4f8c65 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4eb9e490 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53e65d37 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x542f44ab rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5438207d rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55211787 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57b85964 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57f98359 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a22422a xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c21435c svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cc7d94f xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d01b659 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d257359 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d58e2a7 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5faa696d xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61b8f1df xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61e966d9 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x663a1149 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x674e4a76 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6772db0c xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67e65e5f rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69344d27 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6aa052c2 rpcauth_generic_bind_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cee0fee rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e8d6bcc svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6eddcd14 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f9df8e8 rpc_lookup_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70280c47 xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7064fd70 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7476c425 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75218d5a rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x758c9179 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76aeb95a rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76b7fe59 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76d9d900 cache_seq_stop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x794b29d0 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d2d1a6c rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e1d5235 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80403887 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82b0f410 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83e37f29 rpc_print_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x848c0293 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x871b07af rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x874c84f3 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x877c3e84 cache_seq_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b91562c rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bc35643 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bff9fdd svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c2ffcfb cache_seq_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d48d57a rpc_task_reset_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e381ca3 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90f15df2 rpc_lookup_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x918cca69 svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91f2befe rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92ea8dc4 svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96181125 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9747f377 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a5d9862 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ac083a6 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e05e421 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9eb29123 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ee56b59 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f140b02 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f409056 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0490376 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa105649e rpc_rmdir -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1aef0d6 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2b1ed31 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa32931dd xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa371da5d svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa47d2206 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa836af4f svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9039723 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab5a9c88 xdr_buf_read_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacee8c18 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad32232d csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad748c71 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb10515f6 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1af0ffe xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1dc5afc rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1e781f9 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb24933d7 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3c93326 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb43c3871 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb466fd42 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4ee6805 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb696facf rpc_get_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7d039f3 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9ff9cb3 rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba5872d9 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbaae8cd4 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb18fc0c xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb4db7b3 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb76ba6d svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb77f7e6 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc3792e5 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc740847 xdr_partial_copy_from_skb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd2bf11f rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbda214e2 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc13923c4 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc293bd5f sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4e9e16c xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc715fb48 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcaa50297 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd3cef49 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd9d0168 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcded56ca cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcedaa327 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd14c8eb9 rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd42f9646 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd55d6a53 xdr_skb_read_bits -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd57f524f rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6ce0b91 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6d7f8ab xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7a04523 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd96608e7 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdac9a26f rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb1acd31 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdde94cc0 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe08d423e svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ee67fb svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe464e036 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe888636e svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed9007e0 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee459f89 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef62c44e xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf15c6b7d __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf24a8075 xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2b42d81 svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf31a4cb0 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf344e29a svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3fb2c59 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf47f72c9 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4c8ccbc rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6aa506c svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6c236b9 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf80d4c02 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8ff5fea rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf90c2e6d sunrpc_cache_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf997dbd2 xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa54f190 xprt_set_retrans_timeout_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfab0c8af cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd1235a5 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd27b28b svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe6c0027 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffd616e0 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2209c513 vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x25c8881b __vsock_core_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x37377517 vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x38834ac2 vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x463101d3 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4fd82884 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x74e91915 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7c7feb8d vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9a66b4dc vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9a801c0c vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9c9ae079 vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa60cf8fe __vsock_create -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc0333fc6 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc03c8f5b vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf593c40a vsock_pending_work -EXPORT_SYMBOL_GPL net/wimax/wimax 0x06e4521e wimax_dev_add -EXPORT_SYMBOL_GPL net/wimax/wimax 0x0d299ff1 wimax_msg_data_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0x22b04da2 wimax_report_rfkill_sw -EXPORT_SYMBOL_GPL net/wimax/wimax 0x4694832f wimax_msg_send -EXPORT_SYMBOL_GPL net/wimax/wimax 0x702a840a wimax_state_get -EXPORT_SYMBOL_GPL net/wimax/wimax 0x717bdb23 wimax_dev_init -EXPORT_SYMBOL_GPL net/wimax/wimax 0x79265c4e wimax_msg -EXPORT_SYMBOL_GPL net/wimax/wimax 0xaaff64cd wimax_dev_rm -EXPORT_SYMBOL_GPL net/wimax/wimax 0xdcc90d67 wimax_state_change -EXPORT_SYMBOL_GPL net/wimax/wimax 0xe25c75a8 wimax_msg_alloc -EXPORT_SYMBOL_GPL net/wimax/wimax 0xe42e8785 wimax_msg_data -EXPORT_SYMBOL_GPL net/wimax/wimax 0xfc9aebc7 wimax_report_rfkill_hw -EXPORT_SYMBOL_GPL net/wimax/wimax 0xffd9bc15 wimax_msg_len -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2c79ded0 cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3507c25b cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3f13df48 cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4b287ac1 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4caac53d cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5a23afe2 cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7017fe63 cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x720c3631 cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x86f5d3e6 cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xaca179a6 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbda7d1ed cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd053a7bf cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xde9db781 cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x0364ecc8 ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x60f3ba73 ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x98bae403 ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xb1b6732a ipcomp_output -EXPORT_SYMBOL_GPL sound/ac97_bus 0x86cc05a7 snd_ac97_reset -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x03715008 snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x577c3c18 __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/core/snd 0x30ff9768 snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0x43491bb3 snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0xa3d87061 snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0xa6981ca1 snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd 0xb15a8f78 snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0xe00474f4 snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd 0xef3e9af4 snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x1de55bd5 snd_compress_register -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x5765e69a snd_compress_deregister -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x86f46a2f snd_compress_new -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x090de6a9 snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x1e5ef48e snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x28835cb0 _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4346080a snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4bf76ca7 snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x888a6e98 snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa5e3a74b snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb167b91c snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xee116ba2 snd_pcm_stream_lock -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x02579766 snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x24785627 snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2b932240 snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x32e6dc19 snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x68d8361a snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x78c4c0f5 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8133a82d snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8b253d4d snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf5874ff9 snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf5b57f1d snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf726bd88 snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2454230f amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x283429f1 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2aa1225c amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8f6a6c04 amdtp_am824_set_pcm_format -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x916e22d2 amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xdcbf3097 amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xec17e0fe amdtp_am824_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x00d42511 snd_hdac_ext_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x06d158c4 snd_hdac_ext_bus_ppcap_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x07a44cdf snd_hdac_ext_bus_device_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0f9d5c43 snd_hdac_ext_stream_set_spib -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x21464892 snd_hdac_ext_bus_exit -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x270fc9e3 snd_hdac_ext_link_stream_setup -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2ff5139b snd_hdac_ext_stop_streams -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3d14101d snd_hdac_ext_bus_link_power_down -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4530c009 snd_hdac_ext_bus_link_power_down_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x520a67ac snd_hdac_ext_link_set_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5217c794 snd_hdac_ext_bus_get_link -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x53fc5524 snd_hdac_ext_link_stream_start -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x589423e1 snd_hdac_ext_bus_ppcap_int_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x663c1331 snd_hdac_ext_stream_init_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x67b57a3c snd_hdac_ext_stream_get_spbmaxfifo -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6c24f2ab snd_hdac_ext_bus_get_ml_capabilities -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x758c0495 snd_hdac_ext_bus_device_exit -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x76284186 snd_hda_ext_driver_register -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x944f1cb8 snd_hdac_ext_link_stream_reset -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x99511bc6 snd_hdac_ext_stream_assign -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9c97ab62 snd_hdac_ext_link_stream_clear -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xac53659f snd_hdac_stream_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb0a20942 snd_hdac_ext_link_clear_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb9e77a78 snd_hdac_ext_stream_spbcap_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbffe713a snd_hdac_ext_bus_device_remove -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc1865676 snd_hdac_ext_bus_link_power_up -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc57d5c68 snd_hdac_ext_stream_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd5b7139f snd_hdac_link_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd74fb307 snd_hdac_ext_stream_release -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xeecd2a59 snd_hdac_ext_stream_decouple -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf73f98a5 snd_hdac_ext_bus_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf8ded874 snd_hda_ext_driver_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x01cc2c02 snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x031c0d28 snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x04918afe snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x04b829f2 snd_hdac_display_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x052709dd snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0613c2d1 snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0a7fd07c snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0b33d540 snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0b486770 snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x115a7f24 snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1190e17e snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x12504d1b snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x16d5dcf1 snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x190ed330 snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x198c3ecc snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x224da31c snd_hdac_bus_queue_event -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2600733a snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x28885813 snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x28aad718 snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x28ca9fba snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2c2727e5 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2c8df445 snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2e3af94d snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x32ff2792 snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x33c61d28 snd_hdac_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3849262b snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x393c914e snd_hdac_bus_add_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x39bc46fd snd_hdac_bus_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3c9ca7c9 snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3ce166dd snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3e38d8c9 snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x40859fc0 snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4883ac49 snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4ceeab30 snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x53c53b86 snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5589e896 snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x558cb49c snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5783ae99 snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x57f47ab8 snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5b4a7a8a snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5f94a26f _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x638968a6 snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x63ff253a snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x709bf95b snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x717b2d7e snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73187668 snd_hdac_i915_register_notifier -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73d5aa14 snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7512f937 snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x761a93f5 snd_hdac_get_display_clk -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c999fb snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x79d5f5e6 snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x878c472b snd_hdac_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8fb0da7e snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9ab4ce57 snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9d16ef19 snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa18cf47a snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa2c65e77 snd_hdac_refresh_widget_sysfs -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa3b356ef snd_hdac_i915_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa9e65085 snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xac3d282c snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xae8e3a8a snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb1f633a1 snd_hdac_set_codec_wakeup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb8fcd42a snd_hdac_i915_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbfed7995 snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc4ee953f snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc783b105 snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xce07c6d1 snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcf953d18 snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd152dcc7 snd_hdac_make_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd2557309 snd_hdac_i915_init_bpo -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd5c9c00e snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd710f7fb snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdadca37a snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe6798b8f snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe8e7dc0b snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf1ec2eee snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf9cbbaba snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfa78f9bb snd_hdac_bus_remove_device -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x41a27675 snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x48bcc741 snd_ak4113_create -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x59a5a643 snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x868ffe2b snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xdf8bd347 snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xf01aa06b snd_ak4113_build -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x032564de snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x03d616fb azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x06a2bf55 snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x08415fbd snd_hda_jack_detect_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0914f6fc azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x096e3f5e snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x09810b9a snd_hda_mixer_bind_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ad3a354 snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0bd28d2d _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ce4cb5d azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0da41e3e snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f1e6e69 snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10ec9434 snd_hda_mixer_bind_ctls_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11a1803b snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x130aac6f snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x133a80bb snd_hda_jack_tbl_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1516862e snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18262c50 snd_hda_mixer_bind_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1bd7e979 snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1be70671 azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c98071d snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x20af05e2 snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x22e7481a snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x277db260 snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x282cdbf4 snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x296675c3 snd_hda_mixer_bind_ctls_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a2266b7 snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a7b33ad snd_hda_jack_detect_enable_callback -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2b758c1f query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d7d388e snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e9399bd azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30e4dea9 snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3178c5c7 snd_hda_jack_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x377de8ab snd_hda_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a56b27a snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3c110d93 snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3df4e83c snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3dfebb55 snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f123b0e snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41f52942 snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x454b7897 snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4991dba1 snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4dcb4404 snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x50eb1fe2 snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x542ec8e4 azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55685eee snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x564879ce snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x574ec6e6 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b5ee9d6 snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5bd23a9b snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5e118cbc snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f82bab6 snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5fea49b3 snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x65307a52 snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6798afb6 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70deca21 snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72d67af5 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x75ebc86a hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x76f00221 snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77a5e38e snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77d3ee7c snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x790f4a1f snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b09982c snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c2becd1 is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c42eeb0 snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e697cdd snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ed73dd8 snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x805c6d29 hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x815ff83f snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8caa551e snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x91fb30f9 azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x936b1969 snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x956cea3d snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95a86105 snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95fb290b snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ad27819 snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9aec8bfb snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d03337f snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d3159f4 snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f04e703 snd_hda_mixer_bind_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9febd3c7 snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa0b7bd66 snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa1b55f6e __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3bf7e13 snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xada5a03e __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf1580e6 azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf6e33ef snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb65667b8 __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba55eba5 snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbbb6fc6f azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbda37bb2 snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbed72e51 snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbf056bb4 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbfe3995a snd_hda_mixer_bind_ctls_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc107131b snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc1be90e4 azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc4c193ce snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc54fb3c8 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc55ca3af snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc703ef48 snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce9346fb snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf121e45 snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd136d107 snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd226d119 snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd2f34d7d snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4069542 snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4bf2fdb snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd7ee6ef5 snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe088ce58 snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6bfbfea snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb6c0a96 azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed8c74b5 snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xede68cf4 snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xee5ec9da snd_hda_bind_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf045e593 snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1931ae4 snd_hda_register_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf33d0b33 snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6a3a8b5 snd_hda_bind_vol -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf798bb78 snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf97ae619 snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfa6fb41b snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfbd7a701 snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfbe6dc5c snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xff2a7d4d snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0bbe4251 snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1a108b87 snd_hda_parse_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x31f1d49e snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x373826b8 snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x41df97be snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5a90f99f snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5cf35c9f snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6a632244 snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9164db7a snd_hda_get_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x92150c1a snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9bb4aba6 snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9eadcdf8 snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb2f15691 snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb781b4ce snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbdb5e5e4 snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd40d4122 snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xeb280a19 snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xed102be0 snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf01e9884 snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf029d7aa snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf810094e snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x78cd7ab9 cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xc97d3213 cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x89e3766b cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x9f3eaf87 cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xa4ea1cf6 cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xd91c0a1a cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xf8c25e54 cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x05aa0bdf es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xc8c75522 es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x10603e40 max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x2db61049 pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x630e5521 pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xa230ec4a pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xf53e0211 pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xa7aa810f rl6347a_hw_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xade4bf4c rl6347a_hw_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt286 0x9ca3c646 rt286_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x1fbdb63d rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x2bdd702f rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x7e86aa96 rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x1e552dfa rt5670_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x709267ca rt5670_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x7a5efa13 rt5670_jack_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x854e0e40 rt5670_jack_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x128743f2 devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x180b2dbc sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x5b8c3814 sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x6d86ce4f sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xcffd1eb3 sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xe6d23781 devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sn95031 0xcac80209 sn95031_jack_detection -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x501b4d0c ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xb12c5433 ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x751febbc tpa6130a2_add_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x7a75f074 tpa6130a2_stereo_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xbdc8183c ts3a227e_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x55c4ccc3 wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x85e31a0e wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x91c3bb0f wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xdd7dc86d wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x4e411e92 wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x40862346 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x252a83a5 fsl_asrc_platform -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xfed4d68d fsl_asrc_get_dma_channel -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x30693bb7 imx_audmux_v1_configure_port -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x58631dab imx_audmux_v2_configure_port -EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-mfld-platform 0x6348864e sst_unregister_dsp -EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-mfld-platform 0xede53219 sst_register_dsp -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x2e88b30f intel_sst_pm -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x35330dec sst_configure_runtime_pm -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x401fbb99 sst_context_init -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x5962e68a sst_alloc_drv_context -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x636a5ca3 sst_context_cleanup -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xab14edd5 relocate_imr_addr_mrfld -EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x038f1a83 sst_byt_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x652126de sst_byt_dsp_suspend_late -EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x6d221fb4 sst_byt_dsp_boot -EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x85369c59 sst_byt_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0xd6fe123b sst_byt_dsp_wait_for_ready -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x01a8f9ac sst_dsp_shim_update_bits_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0683ec7c sst_dsp_dma_copyfrom -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0bf90599 sst_dsp_shim_read64_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0cab2d7c sst_memcpy_fromio_32 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0e721756 sst_module_free -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0eba87eb sst_module_runtime_free -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x18dfa51a sst_module_runtime_alloc_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x19ee163b sst_dsp_register_poll -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1a64a6f4 sst_module_runtime_new -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1b5e8b82 sst_shim32_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1e2d38ac sst_dsp_shim_update_bits64_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1fa36fc2 sst_module_runtime_get_from_id -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x210cc366 sst_dsp_inbox_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2d7d41dc sst_dsp_shim_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x42468159 sst_fw_free -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x48615deb sst_dsp_shim_read_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x49b5a227 sst_dsp_get_offset -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4a045773 sst_shim32_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4ca5bf68 sst_fw_reload -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4cab2cd0 sst_dsp_shim_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5073d972 sst_dsp_outbox_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x51695cb4 sst_block_alloc_scratch -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x534a36b7 sst_dsp_dump -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x53bea57c sst_dsp_shim_write64_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x55e13134 sst_dsp_sleep -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5ae616f9 sst_fw_unload -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5df2868e sst_module_get_from_id -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x682a97b8 sst_dsp_shim_write64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x72e1b2c6 sst_module_new -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7449e87b sst_dsp_boot -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x77e0ffeb sst_fw_new -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7f99c12d sst_dsp_shim_update_bits -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8924f799 sst_module_runtime_free_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8b2a913c sst_module_runtime_restore -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8b96e72d sst_dsp_stall -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8bf36107 sst_dsp_shim_update_bits64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x91e290f0 sst_mem_block_unregister_all -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x993bb496 sst_dsp_dma_put_channel -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9af777f8 sst_memcpy_toio_32 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa251cd79 sst_dsp_ipc_msg_rx -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa28c1120 sst_dsp_mailbox_init -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa42a3c23 sst_free_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa549e837 sst_alloc_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa7844d82 sst_dsp_shim_update_bits_forced -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb01394df sst_dsp_ipc_msg_tx -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb8ac6acb sst_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbb0f1db6 sst_dsp_dma_get_channel -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbcec5387 sst_shim32_read64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc3c1ad8b sst_dsp_wake -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc6454748 sst_dsp_shim_update_bits_forced_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd5413010 sst_module_free_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd7a3808b sst_dsp_shim_read64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd9a2c94c sst_shim32_write64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xdb8d0dfc sst_dsp_new -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe15df6e6 sst_module_alloc_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe26927b5 sst_dsp_shim_write_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe4506a2c sst_dsp_outbox_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe6f7132b sst_module_runtime_save -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xed153141 sst_block_free_scratch -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf13c7e8e sst_mem_block_register -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf811717c sst_fw_free_all -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xfcbcac8b sst_dsp_reset -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xfde664e7 sst_dsp_dma_copyto -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xfefbc14b sst_dsp_inbox_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x018fe8e3 sst_ipc_reply_find_msg -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x0be86fe8 sst_ipc_tx_msg_reply_complete -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x40d54a6d sst_ipc_init -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x5ee95fb1 sst_ipc_fini -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x65b98bb4 sst_ipc_tx_message_wait -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xc7053c21 sst_ipc_drop_all -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xd110556f sst_ipc_tx_message_nowait -EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0x37e297be sst_hsw_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0x824c7aee sst_hsw_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0xd1f69f64 sst_hsw_device_set_config -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x21431f46 skl_dsp_sleep -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x25acb471 skl_dsp_wake -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x47f4f7ba skl_ipc_set_dx -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x70071ce2 skl_ipc_set_pipeline_state -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x748c3725 skl_ipc_save_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x822d82b8 skl_ipc_set_large_config -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x8996398e skl_ipc_restore_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xae832ee9 is_skl_dsp_running -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xcaca496d skl_ipc_delete_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xd7fd454c skl_sst_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xd85b8a3a skl_ipc_init_instance -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xdb180ead skl_ipc_create_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xf2d27bff skl_ipc_bind_unbind -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xf9dac1fe skl_sst_dsp_cleanup -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xff0dabb4 skl_dsp_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00335099 snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x030e78d2 snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x03d9002c snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0671b8ed snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0717a3a0 snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09d02e8d snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a7f8b5f snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d5e9f15 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0dc9aaf9 snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12f53666 snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1679821e snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x176abfb4 snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x178a7ea4 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17b02f1a snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1939a0d6 snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a354435 snd_soc_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c5d92ae snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c674695 snd_soc_tplg_component_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d9df10d snd_soc_get_dai_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21c427fc snd_soc_new_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26adfd73 snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x281c01f6 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29369ad6 snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29a0ce6c snd_soc_platform_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2baecd8d snd_soc_unregister_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2bd91332 snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2bef2652 dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c67f38e dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d7d355d snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f3efbc4 dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3180aa50 snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33ca1290 snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x35bbfd26 snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36693b7e devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36b6850e snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x388ad8ea snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38ba3040 snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a8f9302 snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x401804fb snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x451b00d2 snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x452a9ff8 snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x45d3186d snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46f3bdeb snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4db9c6a6 snd_soc_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5156161b snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x522814fa snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5293f69f snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52b67fd4 snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55f4a85a snd_soc_new_compress -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x562a0b4f snd_soc_add_codec_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x56aae8c4 snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x577a6859 snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x584954a0 snd_soc_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59197c0f snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d54ae18 snd_soc_codec_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5da610df snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f6b297f snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x60bc90e0 snd_soc_codec_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6103c53f snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6246d003 snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67facbe8 snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6966b682 snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a501766 snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b8128df snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d0572fc snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6df1af72 snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ee14bdb snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x771141af snd_soc_lookup_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7885ea96 snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x788d00bf snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c03bbfa snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c99283c snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d3e0778 devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7fac0681 snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81d7c9be snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86fd673e snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8adb8dfc snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8adc8e9d snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8fc6ec77 snd_soc_register_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ff76fed snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90d6dedc snd_soc_unregister_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9166f9fe snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92606d0d snd_soc_of_parse_audio_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x93329d55 snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9637f5cb snd_soc_free_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96e30882 snd_soc_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9851799e snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x988f9ed7 snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a714520 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a9f566e snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ba3c043 snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d941236 snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f54db11 snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ff0ac27 snd_soc_of_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1075e37 snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1166804 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1a07216 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1ca0b45 snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1eee225 snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4631ba5 snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa54622a0 devm_snd_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa89be17d snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa4412b7 snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad88f65a snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaeb78da8 snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xafcc327b snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb2b9695e snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4fc2c7f snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb505e4d2 snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5f9f347 snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8b0b826 snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9c2e59d snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe63cc8e snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf6b4039 snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfa44799 snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc39ab218 snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5589862 snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc65b5e8e snd_soc_add_platform_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7fc2655 snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7fca7f1 soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9e590aa snd_soc_dpcm_be_set_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcbf4dcae snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc818ea2 snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc8e6ade snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcfd9620e snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0df21ec snd_soc_tplg_component_load -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd19178eb snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd2fa3670 snd_soc_platform_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5af286d snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd62eaea7 snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7057196 snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8e8521b devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda167e0b dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb8a5bd5 snd_soc_remove_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc45967e snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf0067f9 snd_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe05f1fec snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0767e64 snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0cbe5a2 snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1a88030 dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1b5123f snd_soc_add_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe48640e2 snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe51b6f2c snd_soc_dpcm_be_get_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7341232 snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7b7ebbc snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe99bd0cc snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee36c4c4 snd_soc_tplg_widget_remove_all -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1dfb912 snd_soc_platform_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf55533af snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf928726d snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfba00414 snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc1f6ee3 snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc20ca6c snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd9185ab snd_soc_tplg_widget_remove -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x01a18509 line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x181bb639 line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x31dde62f line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3be00963 line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3d0ffee5 line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x675a0602 line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x73289a76 line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7589c879 line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x928b3436 line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa42a4ec4 line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa8587f3f line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc242fec2 line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc577ac43 line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xdd3c2f0a line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf737b8e5 line6_send_raw_message_async -EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x08003b2f i915_bpo_gpu_turbo_disable -EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x0d97d346 i915_bpo_gpu_raise -EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x358a54ae i915_bpo_gpu_busy -EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x451432c2 i915_bpo_gpu_lower -EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x7d4de94c i915_bpo_read_mch_val -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x15d43c1e rsi_default_ps_params -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x1e678bb2 dot11_pkt_type -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x3db00351 rsi_remove_dbgfs -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x437447f4 rsi_hex_dump -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x452525b4 rsi_hci_detach -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x45ca198c ven_rsi_dbg -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x47d6664a ven_rsi_91x_init -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x4d46298d rsi_hal_device_init -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x4dc25849 rsi_init_dbgfs -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xa8fa73ce rsi_hci_recv_pkt -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xbd22b78c ven_rsi_read_pkt -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xc0311b26 rsi_config_wowlan -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xc1b46ccb rsi_send_rfmode_frame -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xcb79f5b0 ven_rsi_mac80211_detach -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xe1c130a6 ven_rsi_91x_deinit -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xea0f8875 rsi_hci_attach -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xf02f99b8 rsi_send_rx_filter_frame -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xfeb2277e rsi_deregister_bt -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x3fe35aea irq_bypass_unregister_consumer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x418873cc irq_bypass_register_producer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x888c5be5 irq_bypass_register_consumer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0xf6e772c3 irq_bypass_unregister_producer -EXPORT_SYMBOL_GPL vmlinux 0x0008e843 of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x0034f3b6 xen_has_pv_nic_devices -EXPORT_SYMBOL_GPL vmlinux 0x004b3e4e sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x0072c9d1 irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x008364de pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0x0099c470 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x00a43998 tps65912_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0x00f2a3c0 ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before -EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish -EXPORT_SYMBOL_GPL vmlinux 0x012b1f3c device_store_int -EXPORT_SYMBOL_GPL vmlinux 0x0137a2f5 device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0x01543497 blocking_notifier_chain_cond_register -EXPORT_SYMBOL_GPL vmlinux 0x015d8422 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0x01659ad4 edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x0170cb6c efivar_work -EXPORT_SYMBOL_GPL vmlinux 0x0180d37b device_destroy -EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok -EXPORT_SYMBOL_GPL vmlinux 0x018d0ca3 sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x01a4cf08 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0x01ab9f8b policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0x01ba0db3 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x01c7523e split_page -EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01edd296 da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x01f7ac85 dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x01f9f198 efivars_unregister -EXPORT_SYMBOL_GPL vmlinux 0x01fd2852 nvdimm_blk_region_create -EXPORT_SYMBOL_GPL vmlinux 0x01ff9c3c rt_mutex_timed_lock -EXPORT_SYMBOL_GPL vmlinux 0x0205da8d __rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0225e4e0 swiotlb_tbl_unmap_single -EXPORT_SYMBOL_GPL vmlinux 0x02373e7a xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x023927d1 spi_async -EXPORT_SYMBOL_GPL vmlinux 0x0249720b dbs_check_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0277efc1 acpi_dev_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x027f9258 nd_blk_region_set_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x02e03fa6 blk_mq_request_started -EXPORT_SYMBOL_GPL vmlinux 0x02e4ed83 crypto_givcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x02f2280c usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x03053354 nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0x0325e576 sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x032f3b23 crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x035080c6 __get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x0351547b serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0x03697fb0 dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0x03791cb7 gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0x03c04cf8 usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x03c9be2c sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x03e0f7d0 rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode -EXPORT_SYMBOL_GPL vmlinux 0x03f9d401 ata_eh_thaw_port -EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x0403d318 regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0x04354c67 crypto_register_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x047385fb blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0x0484be5f crypto_ahash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x0485655f amd_get_nodes_per_socket -EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x048ff5bb device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x0492c137 virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0x04a9a032 ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0x04bf26af ioremap_page_range -EXPORT_SYMBOL_GPL vmlinux 0x04c3f2c1 gnttab_empty_grant_references -EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04c5783c acpi_create_platform_device -EXPORT_SYMBOL_GPL vmlinux 0x04d298e1 acpi_bus_trim -EXPORT_SYMBOL_GPL vmlinux 0x04eb74d2 dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0x04ecfb5c set_memory_wt -EXPORT_SYMBOL_GPL vmlinux 0x04ed1000 __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0x04ef50c5 watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x04f4bd8d percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x04f8289d dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x051117af fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0x0523700e irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x05306bfe for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x05517ac4 sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0x0557efb1 rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0x059d276f shash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x05a22a0c tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x05a2fd8e ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0x05c08484 xen_xlate_remap_gfn_array -EXPORT_SYMBOL_GPL vmlinux 0x05c19004 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x05d161a0 nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0x05d9d215 crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x060595f1 pinctrl_remove_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x0623dca1 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x064cd50e register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x06617190 ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x066bf930 xenbus_grant_ring -EXPORT_SYMBOL_GPL vmlinux 0x06892bb9 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0x069296a5 iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x06939fe9 kill_pid_info_as_cred -EXPORT_SYMBOL_GPL vmlinux 0x06963c36 intel_msic_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x069aad01 scsi_internal_device_block -EXPORT_SYMBOL_GPL vmlinux 0x06a0deae posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0x06a11b8b ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0x06a5d1a1 xen_unregister_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0x06ba1b00 ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0x06c2e61d sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0x06c76ad6 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x06d2f5a9 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio -EXPORT_SYMBOL_GPL vmlinux 0x06ef77a1 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x0700a481 devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x07029475 gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x07032f9e trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0x071ee624 __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x071f68a2 tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x072e51cc inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x073a338b fpstate_init -EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x07a4f537 x86_vector_domain -EXPORT_SYMBOL_GPL vmlinux 0x07a9bfae clk_debugfs_add_file -EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char -EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07b9a163 device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0x07d0d4ed ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0x07f300c3 smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x08086ec8 rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0x083ce9a5 alloc_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x084d06a5 scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x085dc4fc rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x0860c0a2 spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0x087b2a44 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0x08a67e24 debugfs_remove_recursive -EXPORT_SYMBOL_GPL vmlinux 0x08afc57d scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0x08c3e81f sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x08c7bd7b __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x08f10258 gnttab_unmap_refs_sync -EXPORT_SYMBOL_GPL vmlinux 0x0907a7b8 ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x094b328a pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x0962d0e8 irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0x09a0b665 usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x09a0f74a device_move -EXPORT_SYMBOL_GPL vmlinux 0x09a8c1c1 irq_create_mapping -EXPORT_SYMBOL_GPL vmlinux 0x09bb79d7 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0x0a27abea kern_mount_data -EXPORT_SYMBOL_GPL vmlinux 0x0a2f8407 clear_foreign_p2m_mapping -EXPORT_SYMBOL_GPL vmlinux 0x0a32b28d napi_by_id -EXPORT_SYMBOL_GPL vmlinux 0x0a4fde00 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0a554594 rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x0a662256 xenbus_map_ring -EXPORT_SYMBOL_GPL vmlinux 0x0acc3492 led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0x0aef4b2c __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x0af817ab hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0x0afd4610 zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b0f01e1 ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x0b293c4b rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x0b2e2904 devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x0b413434 pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add -EXPORT_SYMBOL_GPL vmlinux 0x0b5af92b __rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0x0b5e13bd debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x0b703a3c devres_release -EXPORT_SYMBOL_GPL vmlinux 0x0b9249b4 pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0x0b971f59 ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x0ba18fcd ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0x0ba9818d skcipher_geniv_init -EXPORT_SYMBOL_GPL vmlinux 0x0bb8a31e debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0x0bd2c054 regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0x0bf41c03 pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0x0bf61305 iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0bfb880c dax_pfn_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0x0c0a90b2 ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0c18c655 ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x0c2461dd rtc_irq_set_state -EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x0c73333c ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range -EXPORT_SYMBOL_GPL vmlinux 0x0c80e3fe efivar_init -EXPORT_SYMBOL_GPL vmlinux 0x0c9311cd wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x0c99c471 usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0x0cadeafd led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x0cc63b79 ata_base_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x0cce0be5 nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0x0ccfc02c pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0x0cdb2c48 ref_module -EXPORT_SYMBOL_GPL vmlinux 0x0cf07386 devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x0cfbdf24 pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x0d059e64 static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0x0d0a4685 mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0x0d147179 ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x0d1876cf desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0x0d3bb14a dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x0d457c15 unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d52f7e0 tpm2_startup -EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x0d800ce5 ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0x0d8b4a33 __dax_pmd_fault -EXPORT_SYMBOL_GPL vmlinux 0x0d8fdb1e sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0x0dad4ca3 tpm2_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x0daffac6 ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x0dc8dc8f __netlink_alloc_skb -EXPORT_SYMBOL_GPL vmlinux 0x0dcb148c da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x0dd234c9 regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0dee22a5 user_describe -EXPORT_SYMBOL_GPL vmlinux 0x0df925f6 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels -EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release -EXPORT_SYMBOL_GPL vmlinux 0x0e246bdf devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x0e293d97 nd_blk_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x0e347e38 extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0e613bdb platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x0e6736e8 bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0e67f611 dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0x0e7fb95b regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x0e89ef69 aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0x0ebb7797 led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0x0ee0bc54 regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x0ef13c78 bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x0ef3ec15 acpi_dev_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x0f1491e8 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0x0f289ac1 look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain -EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x0f4a1b08 pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0x0f4bb65e usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0x0f511407 pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0x0f587805 pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0x0f5e6f7f pinctrl_add_gpio_ranges -EXPORT_SYMBOL_GPL vmlinux 0x0f5ee3b1 __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x0f6e4206 gnttab_unmap_refs_async -EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0x0f7543b7 locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0x0f81d466 bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0x0fa138de xen_hvm_need_lapic -EXPORT_SYMBOL_GPL vmlinux 0x0fc01e9f static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi -EXPORT_SYMBOL_GPL vmlinux 0x0fe2d570 xenbus_directory -EXPORT_SYMBOL_GPL vmlinux 0x0ff93d1b regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x100f1171 ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x10267ef0 ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0x10365f62 devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x104d3c61 tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0x10694622 phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x106bd18e dma_buf_kmap -EXPORT_SYMBOL_GPL vmlinux 0x107d5035 wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0x1086c961 usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0x109ff683 debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0x10a0d84d mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0x10b6bd01 acpi_ec_add_query_handler -EXPORT_SYMBOL_GPL vmlinux 0x10cb7fc9 device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x10d4445b wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0x10da6593 fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x10e21c54 spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer -EXPORT_SYMBOL_GPL vmlinux 0x110be16c xen_swiotlb_set_dma_mask -EXPORT_SYMBOL_GPL vmlinux 0x110ce9cc bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0x110d8726 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0x11186daa sg_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x113c7c75 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0x1141e6c5 balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x1145237f kthread_park -EXPORT_SYMBOL_GPL vmlinux 0x1151f4f4 platform_bus -EXPORT_SYMBOL_GPL vmlinux 0x116e2442 rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0x1173f12c sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x11c32290 phy_create -EXPORT_SYMBOL_GPL vmlinux 0x11cc9af0 gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0x11d5a266 i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0x11d7c202 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0x120add17 pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x120cad5c phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0x120edf57 xenbus_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x121165a0 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0x121735bf swiotlb_tbl_map_single -EXPORT_SYMBOL_GPL vmlinux 0x12179430 find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x12365e8c percpu_ida_free -EXPORT_SYMBOL_GPL vmlinux 0x123a792b driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x123c04dc ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x124f3c25 bio_alloc_mddev -EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x1281782e to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0x12886614 usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0x128e34f2 fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0x129c7592 pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x12ace7e9 ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x12c37b9e spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0x12ca8e17 io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x12cdc060 pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0x12e592a2 ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x12ea3c14 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0x130bd388 check_tsc_disabled -EXPORT_SYMBOL_GPL vmlinux 0x13141b34 rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x1324147c xenbus_map_ring_valloc -EXPORT_SYMBOL_GPL vmlinux 0x1325696a dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x133338eb __online_page_set_limits -EXPORT_SYMBOL_GPL vmlinux 0x13415657 regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x13623eaa event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0x136256a8 rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x13845c5d usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init -EXPORT_SYMBOL_GPL vmlinux 0x139c45ac irq_find_matching_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen -EXPORT_SYMBOL_GPL vmlinux 0x13b89dee pinctrl_request_gpio -EXPORT_SYMBOL_GPL vmlinux 0x13c3b8b7 get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x13f51fc3 ms_hyperv -EXPORT_SYMBOL_GPL vmlinux 0x14257e5a register_mce_write_callback -EXPORT_SYMBOL_GPL vmlinux 0x1426f8f5 balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x142f240e pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x145784d1 gdt_page -EXPORT_SYMBOL_GPL vmlinux 0x145edc65 device_create -EXPORT_SYMBOL_GPL vmlinux 0x1466decb rhashtable_walk_start -EXPORT_SYMBOL_GPL vmlinux 0x146eba4d tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0x1476f007 crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x149173b8 gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x1491f5c8 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x14acdd05 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x14b71d9a virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0x14cccd30 rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x1500c0cb wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0x15010e1f arbitrary_virt_to_machine -EXPORT_SYMBOL_GPL vmlinux 0x1510e805 get_dcookie -EXPORT_SYMBOL_GPL vmlinux 0x151daf7b task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0x152257a3 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0x1533d796 ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x15508e6b sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0x15516049 crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x15568631 lookup_address -EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x15ac617d syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x15b0606e e820_any_mapped -EXPORT_SYMBOL_GPL vmlinux 0x15b9bcd4 devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0x15c8ca9a clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x15cee634 __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started -EXPORT_SYMBOL_GPL vmlinux 0x15f0800c exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x160f17d5 xhci_run -EXPORT_SYMBOL_GPL vmlinux 0x16127fd7 relay_close -EXPORT_SYMBOL_GPL vmlinux 0x163ee7a0 pskb_put -EXPORT_SYMBOL_GPL vmlinux 0x164934f4 pgprot_writethrough -EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress -EXPORT_SYMBOL_GPL vmlinux 0x16523d9f cm_notify_event -EXPORT_SYMBOL_GPL vmlinux 0x165c37ad ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0x167778ac x509_request_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x1687ebdc raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0x168b38a7 usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x168ba45b class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x16aca1c6 dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0x16c15845 percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0x16e215c6 wm8997_patch -EXPORT_SYMBOL_GPL vmlinux 0x16ed8cef __remove_pages -EXPORT_SYMBOL_GPL vmlinux 0x1713d249 regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x172817ee list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x172de67b device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0x173b358d sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0x173e0f14 anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x173e339b crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub -EXPORT_SYMBOL_GPL vmlinux 0x177aa27d rio_lock_device -EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x1781b3ad bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online -EXPORT_SYMBOL_GPL vmlinux 0x17aa5e52 blkdev_write_iter -EXPORT_SYMBOL_GPL vmlinux 0x17b1da53 sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0x17c80751 tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x17f0f354 ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0x17f322e6 get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0x180a433f debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x1810f0b7 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0x18498015 dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt -EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert -EXPORT_SYMBOL_GPL vmlinux 0x1891a505 da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0x18b6824f init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0x18ba6123 wait_for_tpm_stat -EXPORT_SYMBOL_GPL vmlinux 0x18dc200a validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x18e94c28 pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x18f5728b component_master_del -EXPORT_SYMBOL_GPL vmlinux 0x18f5e50e arch_apei_enable_cmcff -EXPORT_SYMBOL_GPL vmlinux 0x18f83fab gnttab_grant_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0x18fa32ed led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x19011676 acpi_is_pnp_device -EXPORT_SYMBOL_GPL vmlinux 0x190f9837 __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x192546a3 crypto_alloc_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x192d50ca crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0x192df7de transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x1943085b crypto_attr_alg2 -EXPORT_SYMBOL_GPL vmlinux 0x1947ca3a find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x19555701 flush_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0x19599848 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore -EXPORT_SYMBOL_GPL vmlinux 0x197ac802 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0x198b5b60 regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x198f444f input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1990f8ff pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x1994ff54 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x199f6f3d fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19ada3a5 sched_setattr -EXPORT_SYMBOL_GPL vmlinux 0x19c4fb7a netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x19ca25fb pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x1a08e8f2 __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0x1a106144 bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0x1a1c4082 mod_delayed_work_on -EXPORT_SYMBOL_GPL vmlinux 0x1a2fee19 regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x1a36ae7e pci_cleanup_aer_uncorrect_error_status -EXPORT_SYMBOL_GPL vmlinux 0x1a418d04 powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0x1a532f12 rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x1a540d18 tpm2_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table -EXPORT_SYMBOL_GPL vmlinux 0x1a9713cc tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x1abc5b4b cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x1ac174fe devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing -EXPORT_SYMBOL_GPL vmlinux 0x1ae2e1d0 regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x1ae4f5f3 crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x1af69d11 sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0x1af91339 clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x1b1f2bda speedstep_get_freqs -EXPORT_SYMBOL_GPL vmlinux 0x1b2e66d6 crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0x1b38b3c6 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x1b46fe61 register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read -EXPORT_SYMBOL_GPL vmlinux 0x1b536c90 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x1b55506b sdio_run_irqs -EXPORT_SYMBOL_GPL vmlinux 0x1b5e6ab8 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x1b7ed684 max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x1b876568 rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return -EXPORT_SYMBOL_GPL vmlinux 0x1bba6fe9 sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0x1bbbbdf4 pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0x1bbe6d2a __compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x1bdcb634 ata_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x1bdcbd90 regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0x1be186c2 rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x1be9688d inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1c031ee4 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0x1c0b2797 msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0x1c43a64f wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x1c44e434 pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase -EXPORT_SYMBOL_GPL vmlinux 0x1c6660c7 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 -EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1c9d75a5 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x1ca1deba dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x1cabcf7b __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x1cc46c0b dax_clear_blocks -EXPORT_SYMBOL_GPL vmlinux 0x1ccb8d74 device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0x1cd4e0ac cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0x1cdd5440 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0x1cf3f05a crypto_blkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d310449 scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0x1d459685 xstate_size -EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings -EXPORT_SYMBOL_GPL vmlinux 0x1d59e184 clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x1d739e1c xen_set_callback_via -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x1d7cb586 clk_register_fixed_rate_with_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x1da342e7 crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x1dac1078 class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1db25557 crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0x1ddd5695 kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0x1dde8b20 crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x1de74685 power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0x1def880e bind_interdomain_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x1df372bf irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0x1e3605ed component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0x1e3b1b7c pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0x1e520e1b gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1e92bae1 pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x1eb0d3b4 tps65217_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x1eb28c4a irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebd638c gpiochip_remove_pin_ranges -EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1f077c81 usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0x1f0f6627 __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1f486bf6 regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0x1f4ca99e mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1f633327 cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0x1f71cca1 wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x1f7f6fac register_jprobe -EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x1f924765 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x1f98f1b3 register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x1f9b86d3 phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0x1face943 __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0x1fd44ba9 blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0x20061f82 clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x200cc695 __free_iova -EXPORT_SYMBOL_GPL vmlinux 0x200d6f27 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0x2046bbee wm8998_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x204e66e6 percpu_ida_free_tags -EXPORT_SYMBOL_GPL vmlinux 0x207129a9 acpi_get_pci_dev -EXPORT_SYMBOL_GPL vmlinux 0x207608ba led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0x208adf63 pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0x208b215b md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0x209ec764 xen_event_channel_op_compat -EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0x20ae4dde dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0x20d0fb3f tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0x20dfbb77 crypto_unregister_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x20f935a0 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x20fa27d5 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0x210f6cf2 reservation_object_test_signaled_rcu -EXPORT_SYMBOL_GPL vmlinux 0x21172192 regmap_fields_write -EXPORT_SYMBOL_GPL vmlinux 0x2117a702 ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x212a96c2 acpi_subsys_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x216a8fd0 ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0x217382a1 xenbus_unmap_ring_vfree -EXPORT_SYMBOL_GPL vmlinux 0x2191e633 ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0x21925348 gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21bfa7f9 clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x22097428 devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0x223b8035 pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x224e21a9 xenbus_dev_error -EXPORT_SYMBOL_GPL vmlinux 0x229075c1 of_css -EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 -EXPORT_SYMBOL_GPL vmlinux 0x2299ec81 perf_assign_events -EXPORT_SYMBOL_GPL vmlinux 0x22abb0c1 dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0x22b67586 crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x22d045c1 efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0x22d4e858 pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x22f04ea8 devm_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x22fa1edb posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x22fd6be4 ping_proc_register -EXPORT_SYMBOL_GPL vmlinux 0x23048011 __intel_mid_cpu_chip -EXPORT_SYMBOL_GPL vmlinux 0x230e87d9 rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x23246603 tpm2_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x23474a3e pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x234fcace ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x2366a2c0 errata -EXPORT_SYMBOL_GPL vmlinux 0x237ef576 cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x23b21d54 scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0x23be4101 tps65912_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x23dd0d77 gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x23ea67f9 gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x23fa402c usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x240580a9 xenbus_probe -EXPORT_SYMBOL_GPL vmlinux 0x2416e764 blkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x242c3597 trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x2430050d devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0x24460c1f usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x244c6bde udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x247a32e5 nf_register_afinfo -EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2486c67e xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0x249252e9 serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0x249eb820 mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key -EXPORT_SYMBOL_GPL vmlinux 0x24c7698a xenbus_write -EXPORT_SYMBOL_GPL vmlinux 0x24c8fc09 skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x24d687f2 tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0x24da3e2c blk_queue_rq_timed_out -EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset -EXPORT_SYMBOL_GPL vmlinux 0x24f45195 usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x251127c8 regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x25171f0a blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x25269094 serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0x2527da4d rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x252c09be injectm -EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x2545c170 unregister_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0x25571512 regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0x2560f05a __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0x258dd7a3 devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0x25a75cd5 disk_get_part -EXPORT_SYMBOL_GPL vmlinux 0x25ae4a45 tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0x25cc02af dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr -EXPORT_SYMBOL_GPL vmlinux 0x26085a7e pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x260ae374 swiotlb_map_page -EXPORT_SYMBOL_GPL vmlinux 0x261363b4 bpf_prog_get -EXPORT_SYMBOL_GPL vmlinux 0x2623b258 rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock -EXPORT_SYMBOL_GPL vmlinux 0x2634cfd5 __module_text_address -EXPORT_SYMBOL_GPL vmlinux 0x264ae4c6 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x2667fc9b usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x268a30cd pci_msi_prepare -EXPORT_SYMBOL_GPL vmlinux 0x268bf78d pm_runtime_get_if_in_use -EXPORT_SYMBOL_GPL vmlinux 0x26965721 slow_virt_to_phys -EXPORT_SYMBOL_GPL vmlinux 0x26b189b8 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0x26b3c701 __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26e1051e tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x26e66928 rtc_irq_set_freq -EXPORT_SYMBOL_GPL vmlinux 0x26e72c6a mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0x26ed5b6e crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0x2705245b devm_acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x271f66fa sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x274e610f pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0x27514818 tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0x2757e98f regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x27725d45 nvdimm_bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x27761901 noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x278463a4 xenbus_unmap_ring -EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0x279cb985 apei_exec_pre_map_gars -EXPORT_SYMBOL_GPL vmlinux 0x27a66e22 xen_swiotlb_map_page -EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info -EXPORT_SYMBOL_GPL vmlinux 0x27d28898 regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x27d335de devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x28018b88 pwm_disable -EXPORT_SYMBOL_GPL vmlinux 0x28084a7d reserve_iova -EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x288f8d52 gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x289eb13e inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0x28a46ac2 free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x28a5c146 regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x28cb445a sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices -EXPORT_SYMBOL_GPL vmlinux 0x29130275 ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0x293636a0 ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0x293d6d33 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0x293f073e vrtc_cmos_write -EXPORT_SYMBOL_GPL vmlinux 0x294b60f5 genlmsg_new_unicast -EXPORT_SYMBOL_GPL vmlinux 0x295749e8 posix_timer_event -EXPORT_SYMBOL_GPL vmlinux 0x2957e22a nd_numa_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x29665f4f iommu_present -EXPORT_SYMBOL_GPL vmlinux 0x297be582 usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x29867a18 ping_seq_fops -EXPORT_SYMBOL_GPL vmlinux 0x298a2ae3 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0x299ad59c __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x29a3c071 ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0x29a98562 rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x29d5aadd usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x2a359714 bdev_read_page -EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2a6a2aa2 crypto_init_spawn2 -EXPORT_SYMBOL_GPL vmlinux 0x2a6c04ab usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x2a938244 _gpiochip_irqchip_add -EXPORT_SYMBOL_GPL vmlinux 0x2aba15fe of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x2abe8ad7 regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0x2acb241b devm_rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2ad85150 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0x2ae9f237 ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x2af63321 acpi_dev_resource_address_space -EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0x2b4664b4 regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x2b67f096 speedstep_get_frequency -EXPORT_SYMBOL_GPL vmlinux 0x2b8ddf65 iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0x2b8f576f bio_associate_current -EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0x2b96316a efivar_variable_is_removable -EXPORT_SYMBOL_GPL vmlinux 0x2ba89171 ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x2bc882bd rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0x2bd1288a input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0x2be3668a rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc -EXPORT_SYMBOL_GPL vmlinux 0x2c037aa0 usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x2c06b879 extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0x2c136002 perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c51d8a2 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2c52e37a regmap_write_bits -EXPORT_SYMBOL_GPL vmlinux 0x2c630bd1 usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0x2c6a0410 xen_set_domain_pte -EXPORT_SYMBOL_GPL vmlinux 0x2c7d9c64 xen_store_interface -EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c9a16c5 adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0x2ca6111d dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0x2cb68132 usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq -EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0x2d125558 nf_queue_entry_release_refs -EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers -EXPORT_SYMBOL_GPL vmlinux 0x2d861a0b mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x2d93ce0e wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x2d94c669 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0x2d9f2ce3 sched_clock_idle_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x2daef647 pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0x2dc39154 iommu_domain_get_attr -EXPORT_SYMBOL_GPL vmlinux 0x2dc553a2 sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0x2de1aac6 agp_remove_bridge -EXPORT_SYMBOL_GPL vmlinux 0x2de33f2f __srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x2de681b6 system_verify_data -EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e24c997 __class_register -EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2e43caec pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x2e5705fe md_run -EXPORT_SYMBOL_GPL vmlinux 0x2e58bc7e spi_alloc_master -EXPORT_SYMBOL_GPL vmlinux 0x2e59657b ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0x2e73c140 sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0x2e8ff647 regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0x2eab643d regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0x2eb62905 ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x2f0628c5 pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2f07b926 iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0x2f090648 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f2ccf1b exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register -EXPORT_SYMBOL_GPL vmlinux 0x2f432790 ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0x2f561bb3 shmem_get_seals -EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x2f69d2de devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x2f782a86 regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x2f8385d3 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0x2f90da7e trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0x2f9b66de pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x2fadd7d5 regmap_write -EXPORT_SYMBOL_GPL vmlinux 0x2fbe8c22 pci_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x2fc83cc6 ata_acpi_stm -EXPORT_SYMBOL_GPL vmlinux 0x2fcb1a46 regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x2fd71fd9 kobject_move -EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake -EXPORT_SYMBOL_GPL vmlinux 0x2fdcddb9 rio_request_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x300c5a97 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0x30215468 net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0x3029197e rhashtable_insert_rehash -EXPORT_SYMBOL_GPL vmlinux 0x303f0dd2 wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0x30458e52 unregister_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x305204d3 blkg_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x3052497e percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0x3057a241 security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x30635782 cpu_has_xfeatures -EXPORT_SYMBOL_GPL vmlinux 0x306f477d ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0x308b1721 scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0x30a29d61 clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x30a3a0fc __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x30f26fd7 tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock -EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0x312202f5 ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x31286cf8 ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x314f75d9 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x31655fba clk_gpio_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0x317ae7c8 cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0x3184dc04 inet_hash -EXPORT_SYMBOL_GPL vmlinux 0x319c265a pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x31b46180 led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0x31b46d1a wm5102_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x31bfb44b irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put -EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x3204f5a7 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0x32254c15 smpboot_update_cpumask_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x324eaae6 part_round_stats -EXPORT_SYMBOL_GPL vmlinux 0x32557712 init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x3257feb9 phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0x325e677c gnttab_grant_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x3263d968 gnttab_map_refs -EXPORT_SYMBOL_GPL vmlinux 0x3269bb19 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x32807ba3 xenbus_switch_state -EXPORT_SYMBOL_GPL vmlinux 0x32858c10 ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update -EXPORT_SYMBOL_GPL vmlinux 0x328c2035 __efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0x32924a4d scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x329bdd0a regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0x329f055d devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec -EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32ddd3f7 gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0x32dfb34c usb_bus_list_lock -EXPORT_SYMBOL_GPL vmlinux 0x32e1fc48 virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x32e3b076 mxcsr_feature_mask -EXPORT_SYMBOL_GPL vmlinux 0x333228ec intel_msic_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x335ccb2b serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition -EXPORT_SYMBOL_GPL vmlinux 0x3362b03c xen_p2m_size -EXPORT_SYMBOL_GPL vmlinux 0x33655159 xen_pcpu_hotplug_sync -EXPORT_SYMBOL_GPL vmlinux 0x337d7ad1 bdev_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x337f31b7 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0x3382919d ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x338ed625 mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0x339ad85b crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x33a946a0 ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0x33b96e5d apei_exec_write_register -EXPORT_SYMBOL_GPL vmlinux 0x33bf4378 ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0x340704da irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0x3409bfd3 xen_xenbus_fops -EXPORT_SYMBOL_GPL vmlinux 0x34331d5e nd_fletcher64 -EXPORT_SYMBOL_GPL vmlinux 0x344fdc20 pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x34636245 blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x347682ce snmp_fold_field64 -EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get -EXPORT_SYMBOL_GPL vmlinux 0x347fe2dd pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x348ed703 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x349eb5c0 power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x34afe7d5 sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0x34c1a188 rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0x34cce06e __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0x34ee491f cpufreq_table_validate_and_show -EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched -EXPORT_SYMBOL_GPL vmlinux 0x35176add regmap_update_bits_check_async -EXPORT_SYMBOL_GPL vmlinux 0x352650ee gnttab_batch_map -EXPORT_SYMBOL_GPL vmlinux 0x353f44ef wakeup_source_drop -EXPORT_SYMBOL_GPL vmlinux 0x353f739d __inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0x35455e87 crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0x354eca9f pci_enable_pri -EXPORT_SYMBOL_GPL vmlinux 0x354fd8e1 ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x355e105e pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0x356da624 udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3581f995 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x35833410 uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x35910f72 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x359c2444 devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x35d280c0 tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x35dcd1f7 trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x35de5ebf __efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0x35f30fc1 crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x3620890e rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0x36261b1c wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0x3641e0ce crypto_init_shash_spawn -EXPORT_SYMBOL_GPL vmlinux 0x365598bd xenbus_probe_devices -EXPORT_SYMBOL_GPL vmlinux 0x3667e267 ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0x367f1799 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x368bd4c6 usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0x36925c22 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x369ab61a ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0x369b9f60 ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36b14a27 regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled -EXPORT_SYMBOL_GPL vmlinux 0x36ba2551 intel_scu_devices_destroy -EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x36d0de5d uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0x36d3c733 rtc_irq_unregister -EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x37203731 sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0x372bc150 arizona_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x373b2048 get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x37414d1b security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0x37614f62 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0x379677cd pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x379b3dc5 component_master_add_child -EXPORT_SYMBOL_GPL vmlinux 0x37a08482 blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x37a1e8a7 pwm_can_sleep -EXPORT_SYMBOL_GPL vmlinux 0x37a292f0 event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0x37d2612b hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x37d3f513 to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0x37d7274e inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x38134b4a use_mm -EXPORT_SYMBOL_GPL vmlinux 0x38395d95 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0x383fad7a led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0x3843c321 led_trigger_show -EXPORT_SYMBOL_GPL vmlinux 0x3856c709 gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0x385b60a6 xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end -EXPORT_SYMBOL_GPL vmlinux 0x3886ec35 of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x38b26f01 simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0x38df99b2 arizona_dev_init -EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38fb0cdd spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0x38fff317 attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x3913d93c nd_blk_region_to_dimm -EXPORT_SYMBOL_GPL vmlinux 0x394a953c mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0x397551ca devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x3975ab8c rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0x39a240a6 tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0x39a4f229 key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current -EXPORT_SYMBOL_GPL vmlinux 0x39cad7ea io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module -EXPORT_SYMBOL_GPL vmlinux 0x39e6f7d6 pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0x39efad45 devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0x3a08d429 attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0x3a1934da pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0x3a2d1999 __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0x3a30a5f5 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a549979 usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn -EXPORT_SYMBOL_GPL vmlinux 0x3a97a2e3 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3aac920d dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0x3acb6a2e debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3ad6cb2e devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x3ae4f69f wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0x3b11565b kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0x3b2655cb regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x3b547bc9 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x3b7145bb apei_exec_read_register_value -EXPORT_SYMBOL_GPL vmlinux 0x3ba4b3a5 trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x3bd36504 i2c_new_dummy -EXPORT_SYMBOL_GPL vmlinux 0x3becbdc2 cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0x3c0754f9 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0x3c0d69b9 device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x3c12094b uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x3c27a0e9 pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x3c531043 rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag -EXPORT_SYMBOL_GPL vmlinux 0x3c93ea25 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0x3cb9b27e acpi_subsys_freeze -EXPORT_SYMBOL_GPL vmlinux 0x3ccc1bdc regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3cd8c2aa unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x3ce65c4d ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x3cf2ade2 devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x3d039617 xenbus_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d4cda3d dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0x3d581d0a acpi_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0x3d593230 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x3d78dda9 iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0x3d7ea99a gnttab_grant_foreign_transfer -EXPORT_SYMBOL_GPL vmlinux 0x3d7f7652 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x3d7fbbe3 wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x3d93c420 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x3d9e82ad mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3daccfd7 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x3db7ad7e crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab -EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3dd4d3a7 bprintf -EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3deac062 driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0x3e1bc377 devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x3e28e88b inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x3e54b244 btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched -EXPORT_SYMBOL_GPL vmlinux 0x3e6691c1 tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e757637 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0x3ea3d639 virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup -EXPORT_SYMBOL_GPL vmlinux 0x3eb4f3a4 acpi_ec_remove_query_handler -EXPORT_SYMBOL_GPL vmlinux 0x3ebdbf49 set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x3ec8dbf1 module_mutex -EXPORT_SYMBOL_GPL vmlinux 0x3ee4cbd7 cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x3ee5fefc register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x3eea2eec mmu_notifier_unregister_no_release -EXPORT_SYMBOL_GPL vmlinux 0x3eec5817 crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0x3f1da5cb aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0x3f229c4c oops_begin -EXPORT_SYMBOL_GPL vmlinux 0x3f23950c mnt_clone_write -EXPORT_SYMBOL_GPL vmlinux 0x3f2bd0c5 regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0x3f5a3396 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0x3f84d4c9 gnttab_release_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x3f962156 xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0x3f9aaed0 crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0x3fbb0d36 powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0x3fc89e4d bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0x3fce7e03 virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0x3fdbb8e5 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release -EXPORT_SYMBOL_GPL vmlinux 0x4010b80f pmc_atom_read -EXPORT_SYMBOL_GPL vmlinux 0x401c92a5 single_open_net -EXPORT_SYMBOL_GPL vmlinux 0x401e84c8 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x4039f7d6 devm_spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x40408388 ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0x40635a23 acpi_subsys_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources -EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x408212ba hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0x40a65ea8 raw_seq_open -EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x40b1da23 virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0x40c77e0c sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x40c98f4b elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x40f09d3a tps65912_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x413b2b47 ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x414c00f8 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x414f8da9 __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x417a54d4 rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x418710e7 mce_inject_log -EXPORT_SYMBOL_GPL vmlinux 0x41a711b2 usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x41b15059 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0x41ce49be devm_usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x41f5951d ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x41feed47 adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x4213a51a efivar_entry_set_safe -EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done -EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags -EXPORT_SYMBOL_GPL vmlinux 0x42703d39 crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x4291ad91 i2c_new_probed_device -EXPORT_SYMBOL_GPL vmlinux 0x429bcbc8 acpi_gpiochip_request_interrupts -EXPORT_SYMBOL_GPL vmlinux 0x42ad29af acpiphp_register_attention -EXPORT_SYMBOL_GPL vmlinux 0x42c989ff iomap_atomic_prot_pfn -EXPORT_SYMBOL_GPL vmlinux 0x42e33a9a cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x42f17510 wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0x42f86252 alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0x4301d62c regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0x43034001 pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x434b158a subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x436da459 set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x4370d386 tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x43753fd6 spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0x437eadfb fuse_put_request -EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x4395953e usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x439b2ac9 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key -EXPORT_SYMBOL_GPL vmlinux 0x43aa1b7f debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x43b4c2ea tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x43c8d718 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x43e69acc debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift -EXPORT_SYMBOL_GPL vmlinux 0x43f5c400 dax_fault -EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x44086c9b pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0x441306fe class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x441fa356 irq_ts_save -EXPORT_SYMBOL_GPL vmlinux 0x44424aff aead_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0x44649d3f device_find_child -EXPORT_SYMBOL_GPL vmlinux 0x4470c9cd pstore_register -EXPORT_SYMBOL_GPL vmlinux 0x44831cd9 print_context_stack_bp -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x449a547f irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0x449a8f99 efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0x44ac165e dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44c25298 cpufreq_frequency_table_target -EXPORT_SYMBOL_GPL vmlinux 0x44d0a7a0 ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats -EXPORT_SYMBOL_GPL vmlinux 0x44f07c8a pci_hp_change_slot_info -EXPORT_SYMBOL_GPL vmlinux 0x44fca5e3 sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0x4512b086 intel_scu_devices_create -EXPORT_SYMBOL_GPL vmlinux 0x45168a63 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0x4517b9d6 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0x45297939 blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state -EXPORT_SYMBOL_GPL vmlinux 0x454f1cb4 efi_query_variable_store -EXPORT_SYMBOL_GPL vmlinux 0x45565907 iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x457efdbe list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0x45878fd8 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x459fbf7e ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0x45adcda5 fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0x45b7d6a0 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x45cd4dc0 xen_swiotlb_sync_single_for_device -EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page -EXPORT_SYMBOL_GPL vmlinux 0x45ea0bf1 tpm_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x460295cc virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x460f31aa rodata_test_data -EXPORT_SYMBOL_GPL vmlinux 0x4617ad98 acpi_os_map_iomem -EXPORT_SYMBOL_GPL vmlinux 0x46196f1a tps65912_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x462da19d blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x4635b06e acpi_unbind_one -EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x463d320c regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x464f3735 pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0x466e91a6 devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x466fc956 power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0x4678157d pci_bus_sem -EXPORT_SYMBOL_GPL vmlinux 0x46875a63 apic -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x46aa3bc8 regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x46afc3e2 iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0x46d69f5a tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x46f500f7 xenbus_probe_node -EXPORT_SYMBOL_GPL vmlinux 0x46f8ab5b acpi_subsys_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x46fd833a xenbus_frontend_closed -EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x474e779e mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x4750754d device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x4750cfd5 __blk_run_queue_uncond -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47ba9124 gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw -EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47f7f11e sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x47fb6353 ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4806f921 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x4811a8cf transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x481c15cd sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire -EXPORT_SYMBOL_GPL vmlinux 0x4842133f pinctrl_force_default -EXPORT_SYMBOL_GPL vmlinux 0x4843d1d8 wakeup_source_prepare -EXPORT_SYMBOL_GPL vmlinux 0x4862bd8c cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x48682db9 perf_guest_get_msrs -EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh -EXPORT_SYMBOL_GPL vmlinux 0x4870e159 pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0x48a9bf92 fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x48affb24 usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x48b06963 devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x48c0da03 device_add -EXPORT_SYMBOL_GPL vmlinux 0x48cf956c dio_end_io -EXPORT_SYMBOL_GPL vmlinux 0x48e5d05b handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0x48e65820 sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0x48fe7e7b ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0x49020f36 efivar_entry_set -EXPORT_SYMBOL_GPL vmlinux 0x490a8df6 x86_platform -EXPORT_SYMBOL_GPL vmlinux 0x49106f96 fat_scan -EXPORT_SYMBOL_GPL vmlinux 0x49349ec2 skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x49826771 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x498e2a4e blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x49c482d0 driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0x49db6442 usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49eefc4b regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x4a085c8a driver_register -EXPORT_SYMBOL_GPL vmlinux 0x4a08ffcb acpi_pci_find_root -EXPORT_SYMBOL_GPL vmlinux 0x4a0b33ae pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x4a23e209 fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4a3a597e raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x4a3c3cf9 microcode_sanity_check -EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data -EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name -EXPORT_SYMBOL_GPL vmlinux 0x4a6da807 usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x4a96dedf relay_open -EXPORT_SYMBOL_GPL vmlinux 0x4aa093be cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0x4afb573b vrtc_cmos_read -EXPORT_SYMBOL_GPL vmlinux 0x4b04315e devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0x4b29ae87 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x4b3b3782 pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x4b5571ec sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0x4b8b48f8 irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0x4b9d6681 __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x4ba70cc9 get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0x4bb20617 iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0x4bb77f99 rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0x4be45d59 dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x4be8897a is_dock_device -EXPORT_SYMBOL_GPL vmlinux 0x4bfe3b4e ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0x4c2a472b __static_cpu_has_safe -EXPORT_SYMBOL_GPL vmlinux 0x4c2ea33b ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0x4c2eab4f sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0x4c526b5e set_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x4c53492f usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4c62fc13 edac_subsys -EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table -EXPORT_SYMBOL_GPL vmlinux 0x4c8e4d1c __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0x4c9bc698 print_context_stack -EXPORT_SYMBOL_GPL vmlinux 0x4ca53064 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x4ca889c5 fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0x4cc9c856 irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x4cfef923 __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d032b48 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0x4d1b7cec virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x4d2cebd3 usb_phy_generic_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4d31f3de sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0x4d49d19b dma_buf_vmap -EXPORT_SYMBOL_GPL vmlinux 0x4d9fcc95 xenbus_dev_changed -EXPORT_SYMBOL_GPL vmlinux 0x4da30676 vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x4dd8581c pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4de7fe81 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x4df0e047 crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0x4dfd4489 crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0x4e1ea947 __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0x4e23af0d fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path -EXPORT_SYMBOL_GPL vmlinux 0x4e24abbe crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0x4e27e05a ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x4e2c2dd2 pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x4e2ca7f1 pci_reset_bridge_secondary_bus -EXPORT_SYMBOL_GPL vmlinux 0x4e2df1d6 component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0x4e4962e3 sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x4e4d2870 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x4e57723d apei_read -EXPORT_SYMBOL_GPL vmlinux 0x4e64bfbc spi_master_resume -EXPORT_SYMBOL_GPL vmlinux 0x4e706d92 pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4e74e625 gnttab_batch_copy -EXPORT_SYMBOL_GPL vmlinux 0x4e88da65 __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x4e97a832 tcp_death_row -EXPORT_SYMBOL_GPL vmlinux 0x4e9f6a21 rio_get_device -EXPORT_SYMBOL_GPL vmlinux 0x4eb6ead4 xenbus_dev_fatal -EXPORT_SYMBOL_GPL vmlinux 0x4ec2c5f2 md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0x4ef3c5b4 sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4efcdf7a nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0x4f275af3 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0x4f3bbe9d xen_swiotlb_sync_single_for_cpu -EXPORT_SYMBOL_GPL vmlinux 0x4f46f97e devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x4f47f49c devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x4f4bbcff blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0x4f4bf92c net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x4f4d3069 rt_mutex_destroy -EXPORT_SYMBOL_GPL vmlinux 0x4f528f04 acpi_device_update_power -EXPORT_SYMBOL_GPL vmlinux 0x4f5984f0 dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x4f5bbe32 input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0x4f63edaf anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f6d15bb efivar_entry_size -EXPORT_SYMBOL_GPL vmlinux 0x4f6eafc8 tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0x4f947f29 platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0x4fae8f51 xenbus_dev_probe -EXPORT_SYMBOL_GPL vmlinux 0x4fba149f sched_setscheduler_nocheck -EXPORT_SYMBOL_GPL vmlinux 0x4fd40311 __init_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fe08d86 dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4ff88d3d xenbus_register_driver_common -EXPORT_SYMBOL_GPL vmlinux 0x50102047 ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi -EXPORT_SYMBOL_GPL vmlinux 0x50306a93 ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x5046049a vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x507de8c6 add_memory -EXPORT_SYMBOL_GPL vmlinux 0x5080c352 trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test -EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x50a6b363 usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0x50b1ba71 devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0x50c497e8 sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x50d1f20d blk_mq_free_hctx_request -EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x510a3c3e fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0x510f955c ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val -EXPORT_SYMBOL_GPL vmlinux 0x51719489 tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq -EXPORT_SYMBOL_GPL vmlinux 0x51966b51 __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x51992495 regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x51bea276 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x51ca68a1 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x51d2d579 pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0x51d62809 ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0x51f342b2 i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0x51fc8c4e phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x52018287 __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL vmlinux 0x5251938d pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x526280c7 trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0x527e4c56 efivar_entry_add -EXPORT_SYMBOL_GPL vmlinux 0x528015a9 pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0x52924f20 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x52ab4672 gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0x52b61c4e devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x52b99c80 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x52cb2ef7 cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0x52d8c375 clk_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x52e5417a irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x52e87bc5 pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0x52f102db __percpu_ida_init -EXPORT_SYMBOL_GPL vmlinux 0x5332ab63 regulator_can_change_voltage -EXPORT_SYMBOL_GPL vmlinux 0x533e085b regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x5359cb54 dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x536adb24 pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x538726f3 regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x53905eca rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late -EXPORT_SYMBOL_GPL vmlinux 0x53b1fc89 blk_queue_dma_drain -EXPORT_SYMBOL_GPL vmlinux 0x53bb13de file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x53c21989 __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x53c3a384 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x53ca7bfe spi_setup -EXPORT_SYMBOL_GPL vmlinux 0x53ce77c3 __pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x53d0cdea syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x53f93612 unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x54036d85 gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x540f0c9a rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0x54152dd7 usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x543cabc8 dax_do_io -EXPORT_SYMBOL_GPL vmlinux 0x544aa28d regmap_fields_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x54575938 pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time -EXPORT_SYMBOL_GPL vmlinux 0x547be869 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0x549046a5 ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x54d0c9cc devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0x54d468f1 pm_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0x54d519ec irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x54db19ba to_nd_blk_region -EXPORT_SYMBOL_GPL vmlinux 0x54dc3654 phy_exit -EXPORT_SYMBOL_GPL vmlinux 0x54f433b2 page_endio -EXPORT_SYMBOL_GPL vmlinux 0x54fdc47d pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0x5505b8bf devm_pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled -EXPORT_SYMBOL_GPL vmlinux 0x552845ba spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x55400e35 acpi_dev_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x55456eef kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0x55526907 xen_features -EXPORT_SYMBOL_GPL vmlinux 0x556328ce blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x5579c11e device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x55a5e35a dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0x55bfc3cb acpi_bind_one -EXPORT_SYMBOL_GPL vmlinux 0x55cc2220 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0x55edd53d unregister_jprobes -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x56011e19 __pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x56175183 ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0x561dd12f fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable -EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x5654f836 erst_get_record_id_next -EXPORT_SYMBOL_GPL vmlinux 0x56557d06 usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen -EXPORT_SYMBOL_GPL vmlinux 0x565e4d92 dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0x56715f68 rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0x5675fa90 perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0x567b4486 extcon_unregister_interest -EXPORT_SYMBOL_GPL vmlinux 0x567bd073 scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map -EXPORT_SYMBOL_GPL vmlinux 0x56947347 dmi_walk -EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x56b9e0d7 usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up -EXPORT_SYMBOL_GPL vmlinux 0x56e41eb7 __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x570e2aa1 wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0x572d29ce tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0x572e2909 usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x573a5e89 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x574654bf skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0x5779d445 xenbus_exists -EXPORT_SYMBOL_GPL vmlinux 0x57822cf8 pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x578faed4 xen_swiotlb_unmap_sg_attrs -EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57a449d8 tcp_peer_is_proven -EXPORT_SYMBOL_GPL vmlinux 0x57bb5d71 pwm_enable -EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags -EXPORT_SYMBOL_GPL vmlinux 0x57ec9711 do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x57f8062c acpi_dev_resource_io -EXPORT_SYMBOL_GPL vmlinux 0x58040442 blkcipher_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x584cdf71 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x585144cb bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0x585704ab aer_recover_queue -EXPORT_SYMBOL_GPL vmlinux 0x586af491 device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x587bd46f alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0x588c79ac wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x58960152 xattr_getsecurity -EXPORT_SYMBOL_GPL vmlinux 0x589bc504 dma_buf_kunmap -EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname -EXPORT_SYMBOL_GPL vmlinux 0x58bac738 pwm_request -EXPORT_SYMBOL_GPL vmlinux 0x58bf559f iommu_domain_window_enable -EXPORT_SYMBOL_GPL vmlinux 0x58c2ba52 regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0x58f2dca6 __class_create -EXPORT_SYMBOL_GPL vmlinux 0x58f3e387 __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0x59063a20 phy_init -EXPORT_SYMBOL_GPL vmlinux 0x590ae60c device_property_present -EXPORT_SYMBOL_GPL vmlinux 0x5919c989 device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x59349701 ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0x593aad2f usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0x594cde67 trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0x59688cf7 atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x59766e59 __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x597e89c0 __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x59896221 pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x59a1390f ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0x59c17017 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x59c3d105 thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x59d08c7b phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0x59e7483a ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x59f7d07b ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5a0a6493 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x5a0c6ce3 dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0x5a0e1ff8 gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x5a2b1b67 gnttab_free_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x5a31b644 usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0x5a65c37b devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x5a699c6a fpu__save -EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq -EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a92dcf5 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x5a965239 ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x5ae48bb6 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0x5af03a28 gnttab_claim_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x5b1899f8 free_iova -EXPORT_SYMBOL_GPL vmlinux 0x5b1e599b iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x5b2b8fd6 thermal_notify_framework -EXPORT_SYMBOL_GPL vmlinux 0x5b457df6 unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x5b7dab07 virtqueue_get_used -EXPORT_SYMBOL_GPL vmlinux 0x5b818a0e posix_timers_register_clock -EXPORT_SYMBOL_GPL vmlinux 0x5b8355af to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0x5b84de9a trace_buffer_unlock_commit_regs -EXPORT_SYMBOL_GPL vmlinux 0x5b881162 filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0x5b9d42b4 ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x5babf842 register_jprobes -EXPORT_SYMBOL_GPL vmlinux 0x5bc24f5a debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0x5bce8ca1 __atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5bfdf483 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x5c09c21f __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5c1ecb6d phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5c2a24f1 __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x5c326be0 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker -EXPORT_SYMBOL_GPL vmlinux 0x5c71f17c ping_proc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5c79fd74 usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0x5c8aea4c dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5c9bca00 single_release_net -EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5cc1bd80 task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x5ccb7442 extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x5cdcf723 arizona_set_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x5ce0b191 crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x5cf1ee36 isa_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user -EXPORT_SYMBOL_GPL vmlinux 0x5d2da210 md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0x5d366dec gnttab_cancel_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x5d387021 led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5d5ca512 tasklet_hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x5d5f6222 sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0x5d8f9ff5 replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0x5d9425cb __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x5d97085c cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x5d9a521e ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid -EXPORT_SYMBOL_GPL vmlinux 0x5de96c5d pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0x5df7e1da sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x5e137529 tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0x5e37ba29 percpu_up_read -EXPORT_SYMBOL_GPL vmlinux 0x5e4374ec gnttab_unmap_refs -EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl -EXPORT_SYMBOL_GPL vmlinux 0x5e5bcf44 devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0x5e77ba35 do_machine_check -EXPORT_SYMBOL_GPL vmlinux 0x5e7e6275 device_create_vargs -EXPORT_SYMBOL_GPL vmlinux 0x5e817007 x86_hyper_kvm -EXPORT_SYMBOL_GPL vmlinux 0x5e855342 pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x5eafe581 pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x5eb62e7e devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0x5ec49220 hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5edcb7a1 bsg_request_fn -EXPORT_SYMBOL_GPL vmlinux 0x5eef7d98 gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0x5eef8c26 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0x5ef084bc tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0x5ef97bfb fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable -EXPORT_SYMBOL_GPL vmlinux 0x5f8d967d proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0x5fc27be9 acpi_dev_irq_flags -EXPORT_SYMBOL_GPL vmlinux 0x5fc92bd5 __mmu_notifier_invalidate_range_end -EXPORT_SYMBOL_GPL vmlinux 0x5fdbe57b acpi_dev_get_property -EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt -EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x6017f157 __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0x6018ea60 pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x60321098 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0x6035b78e fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x60368a51 extcon_get_cable_state -EXPORT_SYMBOL_GPL vmlinux 0x604f1352 dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush -EXPORT_SYMBOL_GPL vmlinux 0x60622f51 __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x606a2e50 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0x6073f32b mddev_congested -EXPORT_SYMBOL_GPL vmlinux 0x6086d49a invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0x608f69a4 regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0x60930d37 save_mc_for_early -EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60b849fe unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0x60b9aa37 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0x60cd73ed pv_apic_ops -EXPORT_SYMBOL_GPL vmlinux 0x60cef609 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x60da7a22 __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq -EXPORT_SYMBOL_GPL vmlinux 0x60f4bd4b clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0x610299d6 rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0x611efd1a fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6124bb84 pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x6137905d regmap_field_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x61525427 acpi_gpiochip_free_interrupts -EXPORT_SYMBOL_GPL vmlinux 0x615905d9 extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x615b4c40 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x61af711e ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x61b0f0c9 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x61bc02fc power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x61cde409 acpi_dev_resource_memory -EXPORT_SYMBOL_GPL vmlinux 0x61e55370 dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x6211eb57 pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6233cd39 usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0x62362d03 spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0x623803c8 hest_disable -EXPORT_SYMBOL_GPL vmlinux 0x6257ebdf tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x625c268c ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x627178da pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0x628db80d kallsyms_on_each_symbol -EXPORT_SYMBOL_GPL vmlinux 0x62a10201 yield_to -EXPORT_SYMBOL_GPL vmlinux 0x62a1c981 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0x62aa263b dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0x62b1db35 crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x62c0abb2 wm8400_block_read -EXPORT_SYMBOL_GPL vmlinux 0x62da006b nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0x62dab26f scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0x62dcbf9b fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0x62f31858 sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0x62fe5611 get_device -EXPORT_SYMBOL_GPL vmlinux 0x630478ae class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x6304c5e6 bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x635ec980 apei_exec_post_unmap_gars -EXPORT_SYMBOL_GPL vmlinux 0x637051dd gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0x6373d89a regmap_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x638ce9ec nvdimm_bus_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x6396fe13 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x639dcc2d md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0x63b7db59 register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x63c14d61 i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str -EXPORT_SYMBOL_GPL vmlinux 0x63ed6494 fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0x63fb62a7 i2c_new_device -EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x64218346 acpi_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0x642b8fd3 irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0x64318593 acpi_dev_filter_resource_type -EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched -EXPORT_SYMBOL_GPL vmlinux 0x645ea52b crypto_ahash_type -EXPORT_SYMBOL_GPL vmlinux 0x648114f3 regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x6499ac7d crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0x64a26532 ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0x64a70cfc io_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x64b7069e apei_mce_report_mem_error -EXPORT_SYMBOL_GPL vmlinux 0x64cb2e8e crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0x64e24a5e memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x64fdc1ca shash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x651c36d7 ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup -EXPORT_SYMBOL_GPL vmlinux 0x652e9609 register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x6536953b btree_last -EXPORT_SYMBOL_GPL vmlinux 0x653cb02d intel_msic_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x65690cde __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x658c8186 amd_get_nb_id -EXPORT_SYMBOL_GPL vmlinux 0x65b955ae usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0x65c27266 usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0x65c7710c pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65d62dc5 inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0x65f5e1b4 led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0x6615db96 __bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x664f1dbf ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0x664fdd13 each_symbol_section -EXPORT_SYMBOL_GPL vmlinux 0x665ecab0 pv_time_ops -EXPORT_SYMBOL_GPL vmlinux 0x667a617f ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0x667cc162 regmap_fields_force_write -EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x66855e9b raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x668d7773 pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0x66aa4461 fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0x66b3b80d devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66f08178 save_stack_trace_tsk -EXPORT_SYMBOL_GPL vmlinux 0x66f4c29c register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x66f54c82 arizona_clk32k_enable -EXPORT_SYMBOL_GPL vmlinux 0x66ff48c0 pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0x670849e3 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x67089557 dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x670fecaa param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target -EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy -EXPORT_SYMBOL_GPL vmlinux 0x6776d4a4 pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x6781c592 cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0x6784c4f4 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x67884bfa usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x67978273 device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x67b3df6f posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0x67c74f95 skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x67cdc819 __blk_put_request -EXPORT_SYMBOL_GPL vmlinux 0x681c77d4 pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0x682e6bb0 hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x68313388 device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x6834ac43 srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x683c85ad __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x6849940e extcon_set_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0x6849aebb crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0x6891d19a __nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0x68956406 static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x68a9aa8a __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x68e25550 simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x68ef0acd xenbus_watch_path -EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0x696af9fc unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0x6996295b device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x69982c9d crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0x699b0d5e irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x699cc6fc devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6a020516 rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a2a6a19 disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x6a333cf1 usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0x6a336283 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x6a3512cc regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x6a65f151 md_ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x6a7dd8f2 serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a8ede1a pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0x6a9302ca rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6ab1b8bb usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x6ac6dba0 unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0x6acad21f acpi_get_cpuid -EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority -EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0x6b5d9890 ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x6b6b3123 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x6b7fab06 pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b8d0527 unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x6ba1f241 ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x6bba9065 dm_get_rq_mapinfo -EXPORT_SYMBOL_GPL vmlinux 0x6bd7d5ec irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0x6bf1b90d dmi_memdev_name -EXPORT_SYMBOL_GPL vmlinux 0x6bf2196e __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x6bf9b024 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x6c1251fd apei_exec_read_register -EXPORT_SYMBOL_GPL vmlinux 0x6c1a3575 ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0x6c209eab __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data -EXPORT_SYMBOL_GPL vmlinux 0x6c459321 ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c54382f scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0x6c6538df init_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6c6ad9f6 power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x6c6b9ee8 dma_request_slave_channel_reason -EXPORT_SYMBOL_GPL vmlinux 0x6c7452b7 pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x6c7d1cb7 usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions -EXPORT_SYMBOL_GPL vmlinux 0x6c8e3f2b device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6ca75e88 crypto_init_ahash_spawn -EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq -EXPORT_SYMBOL_GPL vmlinux 0x6caa1b33 __ablkcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0x6cec9d90 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0x6d1cb033 wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d310d7d device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x6d4204ef ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0x6d61d1f4 tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0x6d721e97 dma_buf_kmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0x6d75dbed pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x6d85b344 ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x6da270f7 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0x6dac0acb hugetlb_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x6db2ccc1 pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x6dcaa2eb vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0x6dcb5fad get_kernel_page -EXPORT_SYMBOL_GPL vmlinux 0x6dcd6772 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy -EXPORT_SYMBOL_GPL vmlinux 0x6e09ab84 clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x6e09fff0 subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x6e51afc8 percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x6e55fd54 inode_congested -EXPORT_SYMBOL_GPL vmlinux 0x6e58ddf0 gnttab_end_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x6e5dfd63 get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x6e5ede1f regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0x6e782c23 iomap_create_wc -EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e85b00b local_touch_nmi -EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6e8d2d46 debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0x6eb26009 ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x6ed4b947 ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x6efc7326 inet_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0x6f07da5c pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x6f3f551e disk_part_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x6f402ba6 acpi_dev_resource_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto -EXPORT_SYMBOL_GPL vmlinux 0x6f7f98dc platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0x6f8b4cbc scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x6faa8511 usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0x6fd6b32d skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x6fe92fdd debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x70201233 unregister_jprobe -EXPORT_SYMBOL_GPL vmlinux 0x70217cea usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0x705bef3c ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0x707930c2 driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0x708b8020 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x70be03fe sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated -EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70ebcc5f fsnotify -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x710f1a5d regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0x7111cf6c acpi_pci_check_ejectable -EXPORT_SYMBOL_GPL vmlinux 0x7114296e srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0x712c733c ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x71308384 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x7162e1b2 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x71836d35 sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0x71855940 ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71a14601 irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab -EXPORT_SYMBOL_GPL vmlinux 0x720ace70 serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0x721b0db2 dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0x7223a471 regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x72326e0d get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0x72398a4a ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0x724408a7 device_add_property_set -EXPORT_SYMBOL_GPL vmlinux 0x72515d5a snprint_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x726c2abd scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0x7270a127 md_new_event -EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x728cac56 wm5102_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x729cadc8 sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x72a066d3 transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0x72ac571b eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0x72b1aece blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x72cf714d klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x72d537ce platform_device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0x72f75fb5 gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0x73013896 xenbus_printf -EXPORT_SYMBOL_GPL vmlinux 0x73026dbc __pci_complete_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x731ba974 usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type -EXPORT_SYMBOL_GPL vmlinux 0x731e46d2 usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0x73436e4d raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x734f0276 __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x73560d86 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0x737c78c8 da903x_read -EXPORT_SYMBOL_GPL vmlinux 0x738ac640 led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0x738c64ab device_rename -EXPORT_SYMBOL_GPL vmlinux 0x738fd248 intel_msic_reg_update -EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73ae0726 ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0x73b99e87 put_device -EXPORT_SYMBOL_GPL vmlinux 0x73c3e374 pinctrl_dev_get_name -EXPORT_SYMBOL_GPL vmlinux 0x73c733bd usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x73d4a2c1 cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x73e12e47 pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0x73f90d23 fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0x740aef1a pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0x740c4de8 rtc_irq_register -EXPORT_SYMBOL_GPL vmlinux 0x741e92ef percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0x742b601f pci_intx_mask_supported -EXPORT_SYMBOL_GPL vmlinux 0x742b94bf crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0x742c75ea devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x7431efdb sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x743e5394 xen_pci_frontend -EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini -EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x745d11d4 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x745d3409 xenbus_dev_groups -EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7468b74e __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x746b8e10 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0x747359e0 pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x7483eedd usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x74889b01 sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0x748e3e5d inet6_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0x7492321e sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x74a6d26c acpi_kobj -EXPORT_SYMBOL_GPL vmlinux 0x74af7595 gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74b9f79b hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74c08941 kvm_async_pf_task_wake -EXPORT_SYMBOL_GPL vmlinux 0x74d007c2 perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x74d449ef da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x74deb10c used_vectors -EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm -EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x753525df gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x7554c039 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0x75567db4 devm_mdiobus_alloc_size -EXPORT_SYMBOL_GPL vmlinux 0x7567eee3 put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x758f101c pwmchip_add_with_polarity -EXPORT_SYMBOL_GPL vmlinux 0x75c2b9f1 memalloc_socks -EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x75cc34ca tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x75cd0796 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0x75e00116 dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x75e0a2a2 devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0x75f42a7c usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL vmlinux 0x75f62cb2 devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x75fa1169 pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0x763df98d cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0x76716059 devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x76743aa1 blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x767484cf wm8400_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x769cea32 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x76ad7767 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0x76ae465a task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x76f8f65a devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x76fc8dd6 dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x770619bf unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x770c9f36 ping_err -EXPORT_SYMBOL_GPL vmlinux 0x770cf981 tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x772c1978 crypto_init_spawn -EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x775a6ef5 kvm_read_and_reset_pf_reason -EXPORT_SYMBOL_GPL vmlinux 0x77797087 pci_get_hp_params -EXPORT_SYMBOL_GPL vmlinux 0x778b675a pmc_atom_write -EXPORT_SYMBOL_GPL vmlinux 0x7790adc0 aout_dump_debugregs -EXPORT_SYMBOL_GPL vmlinux 0x7796c4cf __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x78151326 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x782b7963 rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0x783e5133 cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0x78575bee atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x785cf1c3 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x7864b24c ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0x7869929d device_attach -EXPORT_SYMBOL_GPL vmlinux 0x7874b5ec unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0x78e23875 ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0x78e84890 kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x78ee6fba wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0x78f3b5da ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0x78f9498f pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x7942d240 irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off -EXPORT_SYMBOL_GPL vmlinux 0x79489f86 mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x7956ad32 __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x79602c08 ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss -EXPORT_SYMBOL_GPL vmlinux 0x79a71c48 kernel_stack_pointer -EXPORT_SYMBOL_GPL vmlinux 0x79c77157 scsi_device_from_queue -EXPORT_SYMBOL_GPL vmlinux 0x79dc2b5b devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x79ddd9a9 cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped -EXPORT_SYMBOL_GPL vmlinux 0x79f2c49a usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x79fa6544 usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x7a093833 set_memory_array_wt -EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x7a4f6726 blk_mq_tags_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read -EXPORT_SYMBOL_GPL vmlinux 0x7ac1adaf max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0x7ac7410d devres_add -EXPORT_SYMBOL_GPL vmlinux 0x7ac8e5b0 acpi_gsi_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x7acf713f disk_part_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x7af4f4bf dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x7afab384 usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set -EXPORT_SYMBOL_GPL vmlinux 0x7b1dc350 cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0x7b202401 usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x7b31ab7a blk_queue_bypass_start -EXPORT_SYMBOL_GPL vmlinux 0x7b392d8d blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x7b55e282 crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0x7b6dfd80 blkg_print_stat_ios_recursive -EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7bba4336 platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0x7bd846c1 devm_mdiobus_free -EXPORT_SYMBOL_GPL vmlinux 0x7be3ec09 od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x7bee223d regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x7bf96f0d led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7bfcecf9 __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0x7bff4171 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x7c1f4c5d da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7c286e90 disk_map_sector_rcu -EXPORT_SYMBOL_GPL vmlinux 0x7c3b645d fuse_get_req -EXPORT_SYMBOL_GPL vmlinux 0x7c41838f extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7c7a6b58 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7ca14b8b pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d082de4 fat_attach -EXPORT_SYMBOL_GPL vmlinux 0x7d0e6052 crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0x7d171a75 regmap_update_bits_async -EXPORT_SYMBOL_GPL vmlinux 0x7d4f4db7 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x7d55ab56 console_drivers -EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d681085 irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x7d70e672 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0x7d9c2402 __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0x7e013403 ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0x7e1b65ef ata_acpi_gtm_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x7e2283e3 ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x7e2a532c xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0x7e34cfc5 gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e83932e smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x7e8c75f0 thermal_generate_netlink_event -EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0x7ece7d94 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x7ed9c5f4 clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0x7ef3c5b8 relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x7ef61ab0 driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x7f1283b3 i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature -EXPORT_SYMBOL_GPL vmlinux 0x7f3080db skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0x7f327847 usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x7f6225c0 blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f8669fc crypto_alloc_instance -EXPORT_SYMBOL_GPL vmlinux 0x7fb04154 component_add -EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7fd44274 unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x7fd6bb21 crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x7fefeb8d usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0x8004115f devres_find -EXPORT_SYMBOL_GPL vmlinux 0x80155092 blkg_print_stat_bytes_recursive -EXPORT_SYMBOL_GPL vmlinux 0x801ddab2 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0x805a4d33 add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x8082e70f regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x809529fd alloc_iova -EXPORT_SYMBOL_GPL vmlinux 0x80968bd2 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0x80990cda br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0x80a76e33 devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80d45178 pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x80f8589f trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x81004b21 da903x_update -EXPORT_SYMBOL_GPL vmlinux 0x810c3c7c crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x811974ce pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x8122a4c1 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x81246543 __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x813752d3 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0x813f6b4e l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x817188bd srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x81814cc2 ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0x81aa9e8c dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0x81dd390e usb_acpi_set_power_state -EXPORT_SYMBOL_GPL vmlinux 0x81dde250 ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x82064ef6 vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x82096534 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0x820d63a8 bus_register -EXPORT_SYMBOL_GPL vmlinux 0x8223a46a devres_get -EXPORT_SYMBOL_GPL vmlinux 0x822ad4c7 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0x8253e3f4 ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x826016a1 usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0x826f00f4 device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0x82745a73 sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0x82769894 gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x8286ceb0 gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x82978442 call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x82bbae90 class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x82bbb66c nd_region_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82d96529 __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0x82dbec19 erst_write -EXPORT_SYMBOL_GPL vmlinux 0x82f73d9e pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x831d110f __securityfs_setup_d_inode -EXPORT_SYMBOL_GPL vmlinux 0x833e7a69 acpi_register_gsi -EXPORT_SYMBOL_GPL vmlinux 0x834d9d93 phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x836666ce alarm_init -EXPORT_SYMBOL_GPL vmlinux 0x8371a959 pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0x837beaf8 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0x83874a17 iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0x83941806 nvdimm_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x83b425ee gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x83ba5fbb hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x83e4ca60 usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0x83f13779 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x83f4126f xenbus_match -EXPORT_SYMBOL_GPL vmlinux 0x84376155 pci_ats_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge -EXPORT_SYMBOL_GPL vmlinux 0x8462bdcf btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x84bd9246 gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0x84d6f014 pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x84e839a9 acpi_os_unmap_iomem -EXPORT_SYMBOL_GPL vmlinux 0x84f53589 crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x84fec387 vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0x85009d47 bpf_prog_realloc -EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read -EXPORT_SYMBOL_GPL vmlinux 0x855bbdbb rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x85635f17 disk_part_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x85676247 rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x8586b9f8 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x858737ec fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x85991157 extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x859d6885 cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0x85c642f4 pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x85cb2c45 xen_has_pv_devices -EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq -EXPORT_SYMBOL_GPL vmlinux 0x860c335b xenbus_dev_is_online -EXPORT_SYMBOL_GPL vmlinux 0x86104205 crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod -EXPORT_SYMBOL_GPL vmlinux 0x8648ed0a rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x864fcb08 usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0x8652110e pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0x8654be58 hv_remove_vmbus_irq -EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq -EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x86819bc6 irq_ts_restore -EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x86a51007 gnttab_end_foreign_transfer -EXPORT_SYMBOL_GPL vmlinux 0x86ad458b devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x86e84c6f pci_msi_set_desc -EXPORT_SYMBOL_GPL vmlinux 0x86e9dd94 irq_domain_add_simple -EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared -EXPORT_SYMBOL_GPL vmlinux 0x8727ffdf usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0x8730b6ff __mmu_notifier_invalidate_range_start -EXPORT_SYMBOL_GPL vmlinux 0x87338d7d kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error -EXPORT_SYMBOL_GPL vmlinux 0x875732b2 modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x8768f560 iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0x876a3a00 devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x87880305 spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0x87922f39 subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0x87a501cb regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0x87a72768 inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x87bea516 virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0x87ce53f2 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0x87d2ef22 vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0x87d78507 usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0x87e0d62d ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x87ed381b acpi_driver_match_device -EXPORT_SYMBOL_GPL vmlinux 0x87f50ef6 pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0x8806809f sched_setscheduler -EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0x88136838 wm8997_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x8831f8b1 kmap_atomic_pfn -EXPORT_SYMBOL_GPL vmlinux 0x8838db18 platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x8847f799 arizona_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x884e974c pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x88537a62 debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0x88aaf071 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x88be7c33 rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0x88bfecf9 spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x88c3d9ca devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0x88c9e779 flush_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0x88d15490 device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x88f9078b ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames -EXPORT_SYMBOL_GPL vmlinux 0x891f8c44 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x892059d1 task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x892db19a da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x89567a3c rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0x8956aeae apei_exec_ctx_init -EXPORT_SYMBOL_GPL vmlinux 0x896d7fae blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8970fab6 pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x899762ab xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0x89b43840 rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0x89b5ab29 pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x89d65917 spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0x89d72d44 __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x8a170e7a regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0x8a559846 gnttab_setup_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod -EXPORT_SYMBOL_GPL vmlinux 0x8a5f86ce fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x8a78989f irq_from_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control -EXPORT_SYMBOL_GPL vmlinux 0x8aa4019a dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8abdd951 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x8ac0e9e0 spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0x8b021c25 regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8b04668e bind_interdomain_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x8b09d111 thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b1650b2 skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x8b1d11d3 trace_call_bpf -EXPORT_SYMBOL_GPL vmlinux 0x8b2cc6aa queue_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0x8b4c404f debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x8b556e7e xen_swiotlb_sync_sg_for_cpu -EXPORT_SYMBOL_GPL vmlinux 0x8b6ee6ef pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0x8b7e973e skcipher_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x8b820a14 tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8b8477c6 tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0x8b854bbd md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0x8b8655ef rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0x8bb47e23 __xenbus_register_backend -EXPORT_SYMBOL_GPL vmlinux 0x8bbf41f6 irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x8bc41382 fpu__restore -EXPORT_SYMBOL_GPL vmlinux 0x8bdf5f69 mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0x8be240ed regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x8bf2c64a scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x8bf923ee bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0x8bfc96a4 ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c06a108 xenbus_transaction_start -EXPORT_SYMBOL_GPL vmlinux 0x8c0fdcbc skcipher_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8c29eedd pm_complete_with_resume_check -EXPORT_SYMBOL_GPL vmlinux 0x8c40a416 wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x8c50f4bc register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status -EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c790dbd seq_open_net -EXPORT_SYMBOL_GPL vmlinux 0x8c8e9924 palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0x8c90c0e5 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x8c98c5ba class_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8c9d1661 arch_phys_wc_index -EXPORT_SYMBOL_GPL vmlinux 0x8cd39600 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x8cd49cb4 fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params -EXPORT_SYMBOL_GPL vmlinux 0x8cd9f935 setup_APIC_eilvt -EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d2fd06e arizona_clk32k_disable -EXPORT_SYMBOL_GPL vmlinux 0x8d32edba udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0x8d365cb0 usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0x8d8a82a2 device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0x8dc59f0e pcc_mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x8dec2542 md_stop -EXPORT_SYMBOL_GPL vmlinux 0x8df91649 irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x8e23f711 pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x8e2bfee1 led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0x8e2cee0e __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x8e38aa82 wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x8e3d111e bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0x8e83b699 dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x8e907c10 invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0x8eb2cb53 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0x8eb97f92 iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8ebb9b2c anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0x8ec364c8 spi_unregister_master -EXPORT_SYMBOL_GPL vmlinux 0x8ece3993 inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x8ecf63d3 thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x8ef4916e subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0x8f0595a6 usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f0ad616 blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8fa46a77 thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8fcd599b usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0x8fdff86b wm5110_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x8ff0f0e3 sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0x8ffbd14c irqd_cfg -EXPORT_SYMBOL_GPL vmlinux 0x8fffbe7d blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0x90044c74 preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9009602a acpi_bus_get_ejd -EXPORT_SYMBOL_GPL vmlinux 0x9022d5bc memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x9023319d acpi_dma_request_slave_chan_by_name -EXPORT_SYMBOL_GPL vmlinux 0x9024bff5 mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x903bb65b acpi_dev_resource_ext_address_space -EXPORT_SYMBOL_GPL vmlinux 0x9047c11a trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x906b33da gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x906ebab7 pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x907a97b7 serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x90b5eef4 securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x90c68b4c da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify -EXPORT_SYMBOL_GPL vmlinux 0x90def7c9 ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0x90e04835 xen_swiotlb_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x9106059c pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0x912c181d pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x915f2b2e set_foreign_p2m_mapping -EXPORT_SYMBOL_GPL vmlinux 0x91656e94 dm_disk -EXPORT_SYMBOL_GPL vmlinux 0x91788960 dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0x917fc831 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x9180fb42 ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0x91840886 spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x919d7229 ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0x91bece1a rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91de4dcd cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x91deaa6d acpi_dma_request_slave_chan_by_index -EXPORT_SYMBOL_GPL vmlinux 0x91edd4d3 ata_acpi_gtm -EXPORT_SYMBOL_GPL vmlinux 0x91fac601 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0x92261072 usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0x923be00d iommu_domain_window_disable -EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x925916fe ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0x9277f6b4 led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0x929bcdca platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x92c4dcfa regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0x92c5cfa4 __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x92db626f swiotlb_tbl_sync_single -EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92e92113 devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x92f6e4b6 __ktime_divns -EXPORT_SYMBOL_GPL vmlinux 0x9308ca91 ata_eh_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x930d81c1 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x9312d80e evtchn_put -EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x931ff3e5 subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x93374a97 __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0x933d7a0f mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0x933f9c77 pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x93485382 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x939027d3 device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0x93982ffc sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x939f6b30 ata_acpi_cbl_80wire -EXPORT_SYMBOL_GPL vmlinux 0x93bd2281 nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x93bf2fcd __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x93e85415 regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0x93f3f6c1 pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0x940c1670 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x94171472 serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x9432b036 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event -EXPORT_SYMBOL_GPL vmlinux 0x94440b24 regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x948fee3f rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0x94908477 usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x9493bf6b kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0x94c318be apei_exec_collect_resources -EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop -EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x950de893 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x953f298a __blkdev_driver_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x954557fb usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x957445df set_pages_array_wt -EXPORT_SYMBOL_GPL vmlinux 0x95764d87 acpi_node_get_property_reference -EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x958ec10e pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95ebb846 rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0x95fbe080 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x96091cc9 reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x962dfe45 devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x963498ee rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x964add15 xenbus_scanf -EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9676a84b __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x96c78437 acpi_initialize_hp_context -EXPORT_SYMBOL_GPL vmlinux 0x96cb60ee attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0x96cf4fb1 ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0x96e1abc5 btree_init -EXPORT_SYMBOL_GPL vmlinux 0x96edb6e5 dm_get_table_device -EXPORT_SYMBOL_GPL vmlinux 0x9717d07e ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x97244688 pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x972a4b96 class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x973ab8ad cper_estatus_print -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x975662d3 blk_mq_cancel_requeue_work -EXPORT_SYMBOL_GPL vmlinux 0x9764040b rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x9772da2e pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x9794e890 usb_acpi_power_manageable -EXPORT_SYMBOL_GPL vmlinux 0x97a0a278 usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0x97c02628 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97f97179 bus_find_device_by_name -EXPORT_SYMBOL_GPL vmlinux 0x9829f25c usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x9833d313 extcon_set_cable_state -EXPORT_SYMBOL_GPL vmlinux 0x9841ec26 kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9858915a sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0x986151a9 usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x986420a1 mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x9868743f register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x987854a5 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9887a9ef fib_select_path -EXPORT_SYMBOL_GPL vmlinux 0x988fcecd devm_regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9892aefd rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x989558d8 blkg_prfill_stat -EXPORT_SYMBOL_GPL vmlinux 0x989eb047 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x98ec434e dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on -EXPORT_SYMBOL_GPL vmlinux 0x99155fac blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x993a75fd xen_xlate_unmap_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x9973add9 __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x99767d0c dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range -EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x99987f2e usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0x99aa43fb page_cache_sync_readahead -EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x99c03110 __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x99ce0592 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x99fa4c43 gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0x9a10da89 __tracepoint_extlog_mem_event -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a1c8ba8 ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck -EXPORT_SYMBOL_GPL vmlinux 0x9aa0d960 xenbus_dev_remove -EXPORT_SYMBOL_GPL vmlinux 0x9ac0b23b acpi_subsys_prepare -EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9ad0bfc7 acpi_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0x9ad75be9 __xenbus_register_frontend -EXPORT_SYMBOL_GPL vmlinux 0x9adf9135 adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x9ae5ec25 xfrm_inner_extract_output -EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9af5eaaf fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0x9afcbdfd regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x9b566605 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0x9b71315e perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0x9b720312 acpi_target_system_state -EXPORT_SYMBOL_GPL vmlinux 0x9b86ea5d __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus -EXPORT_SYMBOL_GPL vmlinux 0x9ba6b2fb platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x9bb02df8 simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x9bc4bde1 ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0x9bcd1cba of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x9bd72b78 apei_write -EXPORT_SYMBOL_GPL vmlinux 0x9bd8bb97 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x9bda41b0 pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0x9be233d5 __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9c09dc5c nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x9c29178b da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0x9c2e4b66 acpi_unregister_gsi -EXPORT_SYMBOL_GPL vmlinux 0x9c443cf2 rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0x9c462261 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0x9c59e0bc pwm_free -EXPORT_SYMBOL_GPL vmlinux 0x9c6686af ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0x9c79ecdb blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x9c854452 i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ccdf526 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0x9cdc5e40 usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x9cefca8d efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0x9cf86085 call_filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0x9d06688b register_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0x9d242e96 acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x9d243c13 usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x9d2782a9 rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x9d3850e1 gnttab_alloc_grant_references -EXPORT_SYMBOL_GPL vmlinux 0x9d458ddf crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0x9d62c898 unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x9d851b14 sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x9d98172d tps65217_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported -EXPORT_SYMBOL_GPL vmlinux 0x9db295bf netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0x9e0d6473 regmap_field_write -EXPORT_SYMBOL_GPL vmlinux 0x9e36d0ca kick_process -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e54954e devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0x9e6328f5 acpi_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x9e68196f ping_close -EXPORT_SYMBOL_GPL vmlinux 0x9e84fdf9 elv_register -EXPORT_SYMBOL_GPL vmlinux 0x9e970bd5 rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0x9ebff902 start_thread -EXPORT_SYMBOL_GPL vmlinux 0x9ec3500a nd_device_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x9ecc30e2 gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9f0ab3d4 cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x9f2280d5 gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0x9f27e74a sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0x9f3cf810 cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0x9f3e57e4 iommu_map -EXPORT_SYMBOL_GPL vmlinux 0x9f5247a5 napi_hash_del -EXPORT_SYMBOL_GPL vmlinux 0x9f5b4ac3 xen_remap_domain_gfn_array -EXPORT_SYMBOL_GPL vmlinux 0x9f5e9465 rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0x9f889bda tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0x9f9ae03b efivar_entry_set_get_size -EXPORT_SYMBOL_GPL vmlinux 0x9fc5942a crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0x9fc6e39b usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0xa000552e irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0xa0208e02 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0xa06c3c32 gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xa06c9ffa kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0xa086dc01 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0xa0b8ef2d ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0xa0b90fb4 usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xa0e6e2aa arizona_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0xa0f6ec8b blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type -EXPORT_SYMBOL_GPL vmlinux 0xa113bcc5 irq_create_direct_mapping -EXPORT_SYMBOL_GPL vmlinux 0xa11b55b2 xen_start_info -EXPORT_SYMBOL_GPL vmlinux 0xa11bf4d6 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0xa126c98e device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0xa1369789 ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xa13773fe iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0xa1439122 __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xa14a1817 trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0xa14c840f key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end -EXPORT_SYMBOL_GPL vmlinux 0xa1719a87 mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa17301d9 pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0xa177c102 ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xa186ec14 ata_sff_data_xfer_noirq -EXPORT_SYMBOL_GPL vmlinux 0xa18b9e74 kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0xa1de2295 relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0xa1deac4f pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0xa1e5c2af ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0xa1ec596a raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xa1f79553 xen_create_contiguous_region -EXPORT_SYMBOL_GPL vmlinux 0xa210a542 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa21586c6 init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0xa22bf9f5 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0xa23a71dc tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0xa2593bce netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa2896ac4 find_module -EXPORT_SYMBOL_GPL vmlinux 0xa2a7e542 of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xa2b23a5c transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0xa2b9c993 clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xa2d4cf5e intel_scu_notifier -EXPORT_SYMBOL_GPL vmlinux 0xa2d6d8da adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xa31d1a37 devm_led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0xa34277b6 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0xa353fffc xenbus_rm -EXPORT_SYMBOL_GPL vmlinux 0xa3797444 dax_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0xa382f3ad crypto_ablkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register -EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3a6aa35 serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xa3ae5bcd usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0xa3b8b5cd ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3b9750a bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0xa3e58789 efivar_validate -EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0xa3e844ed fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0xa3ec5338 pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xa4038ae2 dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0xa40c73ff __ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0xa42d4e1d tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xa42dd2db virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0xa42df0e9 pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xa4353ed3 synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0xa452c297 hpet_mask_rtc_irq_bit -EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq -EXPORT_SYMBOL_GPL vmlinux 0xa466de38 acpi_processor_ffh_cstate_enter -EXPORT_SYMBOL_GPL vmlinux 0xa46d0d50 __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xa4709154 dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa49cd574 preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xa4b058d7 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa4b78407 unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xa4f26891 __blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0xa508f268 regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0xa520cdfd blk_queue_bypass_end -EXPORT_SYMBOL_GPL vmlinux 0xa531adb6 intel_svm_unbind_mm -EXPORT_SYMBOL_GPL vmlinux 0xa55c042a bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa5993ab4 __blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa5c1c9c0 acpi_match_device -EXPORT_SYMBOL_GPL vmlinux 0xa5cb5f01 acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0xa5cbc2ce pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0xa5e06a9a blkg_print_stat_bytes -EXPORT_SYMBOL_GPL vmlinux 0xa5eb0264 blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa5f53f62 reservation_object_get_fences_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa60fe13c regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0xa62892c6 efivar_sysfs_list -EXPORT_SYMBOL_GPL vmlinux 0xa640d7e7 mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0xa64c9dd6 ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0xa67611d8 __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xa6998a75 ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0xa6a140f8 da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6f75aac device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0xa7025d84 ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0xa712cb28 map_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xa71cd5ed max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0xa757cb5d pcc_mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xa7690761 unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xa787368d shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xa7d7ff99 bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0xa7d8d98d trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0xa7dcbe5f inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0xa7fae3cb alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xa7fb6136 power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xa801b359 efivar_entry_iter_begin -EXPORT_SYMBOL_GPL vmlinux 0xa810abd3 device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0xa832c203 blkcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0xa840c8fb wait_on_page_bit_killable_timeout -EXPORT_SYMBOL_GPL vmlinux 0xa8500b98 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa8708484 bio_trim -EXPORT_SYMBOL_GPL vmlinux 0xa88bd56d ata_eh_qc_retry -EXPORT_SYMBOL_GPL vmlinux 0xa898990c inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xa8a3c733 rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xa8c0a9c9 fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit -EXPORT_SYMBOL_GPL vmlinux 0xa9143342 find_iova -EXPORT_SYMBOL_GPL vmlinux 0xa9316b38 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa938d6e1 usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xa93f9107 __sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0xa959097a xenbus_dev_cancel -EXPORT_SYMBOL_GPL vmlinux 0xa974c1f8 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0xa979a04e gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0xa988711a platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0xa9b5fe18 crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xa9b74c15 acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xa9bf37b4 ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9e5dd2d trace_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xaa15f525 gnttab_foreach_grant_in_range -EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0xaa419523 __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0xaa65bf2c ata_do_eh -EXPORT_SYMBOL_GPL vmlinux 0xaaa06af9 remove_irq -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaabce590 rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0xaac46dc3 spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xaad9a64d usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xaaf2e51b blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xaafe8ad1 pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xab01acbe gnttab_request_free_callback -EXPORT_SYMBOL_GPL vmlinux 0xab0a1069 xen_unmap_domain_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0xab219617 iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0xab3901fa dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del -EXPORT_SYMBOL_GPL vmlinux 0xab681292 __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request -EXPORT_SYMBOL_GPL vmlinux 0xab7fd9f8 virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0xab945a16 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0xabc15ed5 register_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xac0be560 rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0xac1b8105 pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0xac3a1bc2 devm_regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xac97b48f hypervisor_kobj -EXPORT_SYMBOL_GPL vmlinux 0xac9ce195 kvm_async_pf_task_wait -EXPORT_SYMBOL_GPL vmlinux 0xacacb645 bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0xacafa8e7 vector_used_by_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xacb85a81 adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xacd1d9f2 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xacd964dc usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list -EXPORT_SYMBOL_GPL vmlinux 0xad0450de pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0xad05e92c rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0xad080b34 power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0xad34837c __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0xad43a320 pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0xad505f31 shmem_add_seals -EXPORT_SYMBOL_GPL vmlinux 0xad8d8ab0 xen_physdev_op_compat -EXPORT_SYMBOL_GPL vmlinux 0xadc2179d regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0xadcf3d14 usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0xade64347 regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0xae2ed049 rio_mport_send_doorbell -EXPORT_SYMBOL_GPL vmlinux 0xae369781 sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xae6782a4 irq_find_mapping -EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae78a3f0 sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0xae78f737 __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xae7b9571 da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae9b458e ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xaea24207 sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xaeb16bb2 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xaeb3beef uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0xaf0fbb4b user_read -EXPORT_SYMBOL_GPL vmlinux 0xaf484f8c __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0xaf4cd6d3 acpi_os_map_memory -EXPORT_SYMBOL_GPL vmlinux 0xaf5dc46e xen_find_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0xaf7536f4 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0xaf7981d6 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0xaf87ad65 rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0xaf9439db leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xaf96e446 blk_mq_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0xafa0eee3 eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0xafa4578d device_create_file -EXPORT_SYMBOL_GPL vmlinux 0xafad1914 ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0xafcba7d9 usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0xaff0b052 ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xb0054540 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0xb00d6c1c netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb0390be7 devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xb05bd37a do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0xb074996a device_del -EXPORT_SYMBOL_GPL vmlinux 0xb074bccb perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb08c21d2 ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb09bd4cc crypto_larval_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb09ead9f pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0bce4f0 __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0xb10470db put_pid -EXPORT_SYMBOL_GPL vmlinux 0xb1055dcd blk_add_request_payload -EXPORT_SYMBOL_GPL vmlinux 0xb110cbc8 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0xb1194a45 arizona_dev_exit -EXPORT_SYMBOL_GPL vmlinux 0xb11c0f74 pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0xb125de85 lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0xb129db15 user_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb133c0bb acpi_dev_resume_early -EXPORT_SYMBOL_GPL vmlinux 0xb13713cb rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read -EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb157c78a rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0xb172ffac efivars_sysfs_init -EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb18c4085 regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0xb192f935 phy_put -EXPORT_SYMBOL_GPL vmlinux 0xb1a5f2fe usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched -EXPORT_SYMBOL_GPL vmlinux 0xb1b1a4a6 ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0xb1be6d70 pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain -EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1ee1a45 agp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0xb1ef0762 debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0xb2122994 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb2298422 init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xb24586ba __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb26ae325 dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xb285b8f8 xen_in_preemptible_hcall -EXPORT_SYMBOL_GPL vmlinux 0xb2bb4272 digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0xb2c9513d rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xb2d9664e phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0xb2e5753d debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2f1e708 usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0xb2f6e767 sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0xb2fcdd23 input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0xb303c467 securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init -EXPORT_SYMBOL_GPL vmlinux 0xb34f1359 __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0xb3551e44 __mmu_notifier_invalidate_range -EXPORT_SYMBOL_GPL vmlinux 0xb37cbda1 usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0xb385bcd6 __add_pages -EXPORT_SYMBOL_GPL vmlinux 0xb388a3dd regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xb38ef3a3 crypto_alg_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb3ae471b bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xb3b09331 bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0xb3bd02f0 skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0xb3f3959b sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0xb40d8d8f __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xb454c0b2 crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0xb4557e67 __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xb45998a3 fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0xb45fa6c5 pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0xb46574f4 cpufreq_governor_dbs -EXPORT_SYMBOL_GPL vmlinux 0xb4afc18f find_symbol -EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4c05085 sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0xb4c433bc xen_swiotlb_map_sg_attrs -EXPORT_SYMBOL_GPL vmlinux 0xb4c7179c tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0xb4e14553 gnttab_query_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb4faec21 regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0xb5000562 clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0xb5147f39 regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0xb518aa4d watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xb53ea08c nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0xb5488567 mmput -EXPORT_SYMBOL_GPL vmlinux 0xb54d40db cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xb56ea7b8 ping_hash -EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited -EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table -EXPORT_SYMBOL_GPL vmlinux 0xb5cfe692 task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0xb5e896fb tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb5fb8160 rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xb5ff9b66 usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0xb6056d55 vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0xb61a8143 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0xb6230f1f gnttab_grant_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb62e6404 fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0xb63640ef ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0xb6457511 device_remove_property_set -EXPORT_SYMBOL_GPL vmlinux 0xb65162bd irq_create_strict_mappings -EXPORT_SYMBOL_GPL vmlinux 0xb66421b2 acpi_str_to_uuid -EXPORT_SYMBOL_GPL vmlinux 0xb6657b88 rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0xb691d87d zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0xb69b012d crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xb6b9e233 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0xb6bc49a9 __supported_pte_mask -EXPORT_SYMBOL_GPL vmlinux 0xb6c46018 scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb711d130 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xb718f2f9 sfi_table_parse -EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase -EXPORT_SYMBOL_GPL vmlinux 0xb74bff2b led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0xb75b88d6 extcon_update_state -EXPORT_SYMBOL_GPL vmlinux 0xb76b95f8 gpiochip_add -EXPORT_SYMBOL_GPL vmlinux 0xb78d8edb tpm2_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0xb7bca51b inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0xb7c12bae tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0xb7c67bfb tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time -EXPORT_SYMBOL_GPL vmlinux 0xb7dbea76 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0xb80ee687 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xb81fbf7d bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb86e9cc9 dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xb872ef05 regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xb876ffff devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xb88a44ed alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb89e3985 __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xb8b0cac4 register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain -EXPORT_SYMBOL_GPL vmlinux 0xb8c20689 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0xb8cb639e sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8d6f7fe lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0xb8dabd7e usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0xb8f45693 rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0xb9036c40 usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0xb9042152 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0xb911a533 screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0xb92427b4 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0xb96f75af perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0xb99d5837 xenbus_read -EXPORT_SYMBOL_GPL vmlinux 0xb9a48ba0 dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0xb9a5754e wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb9bfd068 dma_buf_kunmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0xb9c2f056 pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9c769d9 devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xba192f05 ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba433e07 pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0xba4924af usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xba5e1570 devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xba641bdd pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0xba6e2adc gov_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xba71ea19 serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0xba83257d devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xba83e380 unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xba8929ea percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xba94c685 cper_estatus_check -EXPORT_SYMBOL_GPL vmlinux 0xba97e27b xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0xba9a2a1f class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xba9f5da1 sis_info133_for_sata -EXPORT_SYMBOL_GPL vmlinux 0xbaa740f8 dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0xbaadca8a rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbacbc403 rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0xbae1c3c0 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0xbae5cdc4 efivars_kobject -EXPORT_SYMBOL_GPL vmlinux 0xbaefe076 regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xbaf2aaac crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb0d85cc ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xbb36a2ef crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0xbb4d4027 l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0xbb584061 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0xbb58b814 iomap_free -EXPORT_SYMBOL_GPL vmlinux 0xbb64352f handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0xbb7ca8e3 xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0xbb7cf9cb jump_label_rate_limit -EXPORT_SYMBOL_GPL vmlinux 0xbb8b4396 bdev_write_page -EXPORT_SYMBOL_GPL vmlinux 0xbb8f5c15 _submit_bh -EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info -EXPORT_SYMBOL_GPL vmlinux 0xbbbccc7c reservation_object_wait_timeout_rcu -EXPORT_SYMBOL_GPL vmlinux 0xbbd4f657 xen_pcpu_id -EXPORT_SYMBOL_GPL vmlinux 0xbbfbf5d1 gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xbc01a650 rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0xbc12f372 percpu_ida_for_each_free -EXPORT_SYMBOL_GPL vmlinux 0xbc244def __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0xbc40fafa pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xbc4217d4 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0xbc4e2b53 spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xbc695c49 clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc86c64a regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0xbca0201a sfi_mrtc_array -EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts -EXPORT_SYMBOL_GPL vmlinux 0xbcc00632 power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0xbcc01b3a dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcdbb148 virtqueue_get_avail -EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbcf6cdd1 apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0xbd236846 swiotlb_unmap_page -EXPORT_SYMBOL_GPL vmlinux 0xbd3412a8 ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0xbd3e0e87 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0xbd6323f6 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0xbd6726d1 ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0xbd7a4a6e cpu_tlbstate -EXPORT_SYMBOL_GPL vmlinux 0xbd86b127 usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xbdc08de0 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0xbdc8f67c regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0xbdd5f10f apei_hest_parse -EXPORT_SYMBOL_GPL vmlinux 0xbded7d63 crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xbdf08ac7 pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0xbdfb69a3 md_is_badblock -EXPORT_SYMBOL_GPL vmlinux 0xbe006056 trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xbe267ed3 extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0xbe31f3be pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe87f06b rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0xbe9e1c13 wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0xbea20eb6 scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbebf52e1 blk_set_queue_dying -EXPORT_SYMBOL_GPL vmlinux 0xbecaec7d __sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0xbee15c4c pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0xbee474ae bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbee6ae90 fuse_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbef0f398 xenbus_read_otherend_details -EXPORT_SYMBOL_GPL vmlinux 0xbef8b860 transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf057aa1 usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xbf400fd7 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xbf44444d i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xbf4bdddb perf_trace_buf_prepare -EXPORT_SYMBOL_GPL vmlinux 0xbf5c7c6a crypto_alloc_ablkcipher -EXPORT_SYMBOL_GPL vmlinux 0xbf7cc8fb iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xbf933d01 sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0xbf9b66d0 phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0xbfb1be70 hv_setup_vmbus_irq -EXPORT_SYMBOL_GPL vmlinux 0xbfb43010 xen_swiotlb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0xbfb4980a cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfc7b1e2 led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0xbfc907f8 mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0xbfcca601 blkdev_read_iter -EXPORT_SYMBOL_GPL vmlinux 0xbfd10bb7 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbff58aba rio_get_asm -EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 -EXPORT_SYMBOL_GPL vmlinux 0xc0031767 devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xc0170f45 pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0xc02bca5a regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc0900fcf acpi_os_get_iomem -EXPORT_SYMBOL_GPL vmlinux 0xc0a480f6 bus_set_iommu -EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0b7e78f ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0xc0e75cec visitor128 -EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc11665b6 __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0xc12e0ada srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0xc12e8919 usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0xc16209fe i2c_unlock_adapter -EXPORT_SYMBOL_GPL vmlinux 0xc164642e xenbus_otherend_changed -EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc17cb89a attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0xc17ebfbd extcon_register_interest -EXPORT_SYMBOL_GPL vmlinux 0xc18578ed process_srcu -EXPORT_SYMBOL_GPL vmlinux 0xc19d50de restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0xc1c6a8ce blk_mq_register_disk -EXPORT_SYMBOL_GPL vmlinux 0xc1c7b2d2 fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0xc1ce87f5 get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0xc1dd3787 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc2046d42 cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0xc25bb52c __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xc260e41e con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0xc26351f8 bind_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xc26753f3 thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xc269293c gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0xc276077a da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0xc276ebcd __get_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0xc287d96a kvm_set_posted_intr_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0xc2979ab2 bio_clone_mddev -EXPORT_SYMBOL_GPL vmlinux 0xc2c202b7 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0xc2e728dc ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xc2fe9dd0 rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0xc3122a2b cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xc33c97ad ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc36154fe perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xc38fde9d tcp_fetch_timewait_stamp -EXPORT_SYMBOL_GPL vmlinux 0xc3c003ff ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0xc3c7744f fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xc3c9fe41 wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xc3eaa113 led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc413e80f kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc42bb5f1 metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc42e550f usb_string -EXPORT_SYMBOL_GPL vmlinux 0xc4301831 usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc4764a9e ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0xc48911fc xen_swiotlb_sync_sg_for_device -EXPORT_SYMBOL_GPL vmlinux 0xc48aa3cb user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc4930b8e irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0xc49c8231 xenbus_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc4b3fbf1 srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc4b5161e devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0xc4d1aaf0 nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0xc4fc4c7b clk_register -EXPORT_SYMBOL_GPL vmlinux 0xc51fd457 wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0xc528c1ca gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0xc5397da6 xenbus_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0xc55ae83f usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc56daa4e regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0xc5710661 tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc5847822 clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0xc59b8525 request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0xc5b14269 debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0xc5c01c2f pci_try_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xc5c8249f crypto_create_tfm -EXPORT_SYMBOL_GPL vmlinux 0xc5cb212a unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0xc5d4ed3e serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0xc5da5e14 inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0xc5f1ab36 uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0xc5ff8160 fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0xc60151d0 nd_mapping_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xc608974c virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0xc609c616 cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0xc609ead8 serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0xc60e0b03 trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc62b94cb uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0xc62c102c pinctrl_dev_get_devname -EXPORT_SYMBOL_GPL vmlinux 0xc62d5def power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0xc63227bb device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0xc638bf71 usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6a9a4a4 usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0xc6ab63c6 hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xc6d42364 smpboot_register_percpu_thread_cpumask -EXPORT_SYMBOL_GPL vmlinux 0xc6dd0ca7 __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0xc6fa0f56 tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0xc6fdf71a generic_access_phys -EXPORT_SYMBOL_GPL vmlinux 0xc7002ac4 evtchn_make_refcounted -EXPORT_SYMBOL_GPL vmlinux 0xc705dfe0 ahash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put -EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xc74752fe find_vpid -EXPORT_SYMBOL_GPL vmlinux 0xc7531d72 devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc76a3d1f tpm_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xc771555f led_init_core -EXPORT_SYMBOL_GPL vmlinux 0xc77e3815 shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xc7888873 wbc_account_io -EXPORT_SYMBOL_GPL vmlinux 0xc798c26f usb_gen_phy_init -EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7a96667 thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xc7af9028 pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0xc7ba067a __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0xc7bf64cb regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer -EXPORT_SYMBOL_GPL vmlinux 0xc7dcea42 spi_sync -EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc7e5619a fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0xc7ed0c4b ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0xc7ee0057 blk_queue_flush_queueable -EXPORT_SYMBOL_GPL vmlinux 0xc80c0dba class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xc81b765d put_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0xc8426bfd device_show_int -EXPORT_SYMBOL_GPL vmlinux 0xc855811b power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xc86fd04b clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xc87cf0a8 sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0xc87e2d7a sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event -EXPORT_SYMBOL_GPL vmlinux 0xc8a1ab39 spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0xc8aabec0 add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0xc8b8d8c7 usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0xc90c0f0e bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xc945e84f input_class -EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc96ba564 gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0xc9705eeb has_newer_microcode -EXPORT_SYMBOL_GPL vmlinux 0xc97c3bd2 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0xc9928dec crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0xc9938924 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0xc9a591e3 fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0xc9a896fd iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xc9acc41b pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xc9b50baf crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler -EXPORT_SYMBOL_GPL vmlinux 0xc9cc7e59 serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0xc9ccaa3d pinctrl_utils_add_config -EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc9ee4287 crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0xca06f41f __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0xca4bc012 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xca52021c devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xca52828e ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0xca6c76aa wm5110_patch -EXPORT_SYMBOL_GPL vmlinux 0xca725b11 usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca81ea9a xenbus_transaction_end -EXPORT_SYMBOL_GPL vmlinux 0xca85f687 nd_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcb01a0b1 crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0xcb0853c7 key_type_user -EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb2fe6dd nl_table -EXPORT_SYMBOL_GPL vmlinux 0xcb31fa35 pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module -EXPORT_SYMBOL_GPL vmlinux 0xcb51b8f7 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0xcb66d1cd crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0xcb87014a ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0xcb91a8f5 register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xcba956d4 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0xcbbe0c7b acpi_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0xcbbee1a5 __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0xcbc903bf skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0xcbce1f9a sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0xcbcf2b85 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0xcbd33ec9 set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0xcbd48c3f hv_setup_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0xcc0b157e blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0xcc16cc32 devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc199cae pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0xcc1f6911 key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xcc531a57 get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0xcc579d5e regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule -EXPORT_SYMBOL_GPL vmlinux 0xcc86e49e wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0xcc934e84 unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0xcc978d4c pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0xcc9c4ec2 cpufreq_frequency_table_cpuinfo -EXPORT_SYMBOL_GPL vmlinux 0xccb55028 extcon_get_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd7e380 regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xccdfa744 nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0xcce73927 wm5110_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0xccea4e34 perf_get_x86_pmu_capability -EXPORT_SYMBOL_GPL vmlinux 0xcd0d80d2 regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0xcd1516df register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xcd1f7c85 sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0xcd208663 sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0xcd31abf5 regmap_read -EXPORT_SYMBOL_GPL vmlinux 0xcd3a95fc fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0xcd50fc59 virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0xcd574b20 pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0xcd5d4ef9 btree_update -EXPORT_SYMBOL_GPL vmlinux 0xcd681af9 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0xcd8ffa10 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq -EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs -EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcd9f78dc gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdcd7d67 pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0xcdd9be41 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0xcde34ce3 add_memory_resource -EXPORT_SYMBOL_GPL vmlinux 0xcdf1d885 serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0xce0b25ae bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xce12d037 btree_insert -EXPORT_SYMBOL_GPL vmlinux 0xce41e527 blkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0xce469242 irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce6e1c99 ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0xce899157 ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0xce915a8b get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0xcec64523 vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcef1dd0e perf_check_microcode -EXPORT_SYMBOL_GPL vmlinux 0xcef20cf8 skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0xcef8d824 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0xcefdcc16 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0xcf3b4f9e pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0xcf407622 perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0xcf42c74a dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0xcf513d77 relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain -EXPORT_SYMBOL_GPL vmlinux 0xcf837f87 sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0xcf867ad2 __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcf8ec45c dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0xcf91a351 regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0xcf93ff14 thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0xcfa363b1 ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xcfbc7b9a list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0xcfbc8315 da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0xcfd514ec hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcfe0b7a9 skcipher_geniv_exit -EXPORT_SYMBOL_GPL vmlinux 0xcff2e311 perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0xd0015fbe sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0xd00336e5 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0xd013bb07 find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate -EXPORT_SYMBOL_GPL vmlinux 0xd048ec15 efivar_entry_remove -EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd076a6ec bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0xd0850ff4 crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0xd08552c2 i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0c665bc i2c_lock_adapter -EXPORT_SYMBOL_GPL vmlinux 0xd0f9eea5 klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xd1151bf1 ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xd133efbb pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0xd1507e59 erst_clear -EXPORT_SYMBOL_GPL vmlinux 0xd156fbbd generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0xd15eb2c2 acpi_subsys_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xd16f7189 fuse_get_req_for_background -EXPORT_SYMBOL_GPL vmlinux 0xd1745218 regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd178a261 devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0xd17bcab9 fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0xd19cf35a dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xd19f4e4f ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0xd1a16817 lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xd1bcc067 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xd1c341a7 sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd1fb4c25 da903x_write -EXPORT_SYMBOL_GPL vmlinux 0xd1ff5d06 wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xd20bc3cd perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd2164f8a crypto_lookup_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xd2173dca ata_scsi_simulate -EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd21c32c2 __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0xd231dd09 page_cache_async_readahead -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd28285ef power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd2847148 dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0xd2aa3496 __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xd2aa559f blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0xd2aaeb4e kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0xd2c3527c __online_page_free -EXPORT_SYMBOL_GPL vmlinux 0xd2c58ab2 apei_exec_noop -EXPORT_SYMBOL_GPL vmlinux 0xd2d1927b hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0xd2d281ca ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0xd2e88de5 clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript -EXPORT_SYMBOL_GPL vmlinux 0xd310b2e4 __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xd31a2921 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0xd3201dd1 class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0xd346acd5 clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0xd3486feb pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0xd37b7fa7 device_init_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xd3a469bf usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xd3eacb53 handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0xd3fe01f0 __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd40d3ae1 uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xd42311f3 virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd45ea32f hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0xd461214e __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0xd4693d89 tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0xd474b721 trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0xd4979a36 ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0xd49f69c9 ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0xd4a6dc47 bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0xd4b16179 gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xd4b30939 __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4d17112 rhashtable_walk_init -EXPORT_SYMBOL_GPL vmlinux 0xd4d2d866 mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0xd4ffcfc7 inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0xd512b75b sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0xd5181f53 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0xd527e04b spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0xd544e902 pgprot_writecombine -EXPORT_SYMBOL_GPL vmlinux 0xd54ab4cd wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xd5573ec1 da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd55ea13c regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd58a8ca4 intel_svm_bind_mm -EXPORT_SYMBOL_GPL vmlinux 0xd5aa302e tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0xd5ad25ac devm_acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xd5b16c56 fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0xd5b5cc96 sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xd5b85c98 net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0xd5c1c378 gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0xd5d2f9ea isa_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xd5d9585d __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xd5dddedd tps65217_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xd5f7d2a0 mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh -EXPORT_SYMBOL_GPL vmlinux 0xd62ae287 rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd632a46c ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd635534d user_preparse -EXPORT_SYMBOL_GPL vmlinux 0xd63def7b led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0xd64c861f pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd697c1e9 acpi_dev_get_resources -EXPORT_SYMBOL_GPL vmlinux 0xd6a02594 pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0xd6b7289d dax_pmd_fault -EXPORT_SYMBOL_GPL vmlinux 0xd6b776c0 ip_tunnel_get_stats64 -EXPORT_SYMBOL_GPL vmlinux 0xd6d52f01 virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0xd6ed3a8e cper_next_record_id -EXPORT_SYMBOL_GPL vmlinux 0xd6f400d8 blk_queue_flush -EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries -EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0xd70b4e0c ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xd70d1080 relay_flush -EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state -EXPORT_SYMBOL_GPL vmlinux 0xd7367f46 gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end -EXPORT_SYMBOL_GPL vmlinux 0xd73ffb86 blkcipher_aead_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0xd743318b cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0xd75acd0e shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0xd764d265 inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0xd764e37b xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0xd767fa25 ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd776f614 usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xd7ab2c0c speedstep_detect_processor -EXPORT_SYMBOL_GPL vmlinux 0xd7ca76fe vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0xd7d0a2f1 debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xd7d645d1 rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0xd8090a6d phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xd8250a5c iounmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0xd8411307 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0xd8553f2f xenbus_alloc_evtchn -EXPORT_SYMBOL_GPL vmlinux 0xd85b6132 dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0xd8725607 adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd8c76c4b pv_info -EXPORT_SYMBOL_GPL vmlinux 0xd8d32080 usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0xd8ecef6d usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0xd8ef9864 gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0xd90763c9 usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0xd90b98f8 gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges -EXPORT_SYMBOL_GPL vmlinux 0xd92e0b2e mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0xd93b3da8 crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0xd9431a87 splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0xd94ab8c9 xen_register_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0xd94b737e erst_read -EXPORT_SYMBOL_GPL vmlinux 0xd94cdfeb pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0xd94fa823 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0xd952b874 dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd977050f power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0xd980039e platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0xd986dad1 kernel_fpu_begin -EXPORT_SYMBOL_GPL vmlinux 0xd9a4bb25 usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xd9ae9e87 ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd9be2fb5 power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0xd9e7b72c pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xda0d12a4 pci_reset_pri -EXPORT_SYMBOL_GPL vmlinux 0xda4e3fd1 blkg_print_stat_ios -EXPORT_SYMBOL_GPL vmlinux 0xda5c5c8d regulator_get -EXPORT_SYMBOL_GPL vmlinux 0xda6dd2d3 skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp -EXPORT_SYMBOL_GPL vmlinux 0xdaba81e2 ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0xdad2d6a0 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xdad67908 iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0xdad6db2f skb_gso_transport_seglen -EXPORT_SYMBOL_GPL vmlinux 0xdae2aec3 tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0xdae87d50 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdafa6a74 led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0xdb03e7b4 usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0xdb088cb1 pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xdb31b924 fuse_request_send_background -EXPORT_SYMBOL_GPL vmlinux 0xdb352083 ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xdb4fc9f0 system_trusted_keyring -EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0xdb63e5ec pinctrl_utils_dt_free_map -EXPORT_SYMBOL_GPL vmlinux 0xdb726291 pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0xdb82ea70 crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb906f38 dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xdb9c378f regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0xdba5567f shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0xdba8bc2e regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0xdbcdf17c extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xdbdccdc9 napi_hash_add -EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdbfd4cd7 gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall -EXPORT_SYMBOL_GPL vmlinux 0xdc51dcac pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0xdc57ef2f wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list -EXPORT_SYMBOL_GPL vmlinux 0xdc74c694 ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable -EXPORT_SYMBOL_GPL vmlinux 0xdc8341e2 ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0xdc8e3a12 pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdca6a448 regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0xdcbd6da5 ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0xdccc6920 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock -EXPORT_SYMBOL_GPL vmlinux 0xdd1bf79d blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0xdd28300d regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd4ab2e9 ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd5bcf62 wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0xdd5f75ec crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddcbae8c blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0xdde85006 tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0xddee833d crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0xddf65d52 thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xde156eb1 __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xde48047b hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0xde496106 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0xde4b50bb nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xde6be147 efivar_entry_find -EXPORT_SYMBOL_GPL vmlinux 0xde747356 intel_msic_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xde7efbc8 rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0xde8d2ccf sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xde8dd926 klist_next -EXPORT_SYMBOL_GPL vmlinux 0xde9375de to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0xde9463a6 freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xde9ddb86 ablkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0xdf0489ff sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep -EXPORT_SYMBOL_GPL vmlinux 0xdf325d5c tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0xdf466565 pci_restore_ats_state -EXPORT_SYMBOL_GPL vmlinux 0xdf4f147f pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0xdf5355bf usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0xdf53cdcc usb_phy_generic_register -EXPORT_SYMBOL_GPL vmlinux 0xdf622181 clk_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0xdf65184c debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0xdf66ca81 ucode_cpu_info -EXPORT_SYMBOL_GPL vmlinux 0xdf75282c inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0xdf9e4401 tps65217_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xdfb65719 devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0xdfe53b37 nf_unregister_afinfo -EXPORT_SYMBOL_GPL vmlinux 0xdfe8ab01 usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xdffc8c5f get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name -EXPORT_SYMBOL_GPL vmlinux 0xe0286dfc ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0xe04b7dfc clk_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xe04d59b6 fpu__activate_curr -EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved -EXPORT_SYMBOL_GPL vmlinux 0xe0a78829 regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0xe0b009e4 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq -EXPORT_SYMBOL_GPL vmlinux 0xe0d6a9cb pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0xe1083ae3 __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin -EXPORT_SYMBOL_GPL vmlinux 0xe11ad118 __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xe121cbb6 static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0xe13b1360 fat_detach -EXPORT_SYMBOL_GPL vmlinux 0xe14feff3 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0xe16fbd0d devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xe1761645 ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe17b7fec __online_page_increment_counters -EXPORT_SYMBOL_GPL vmlinux 0xe180b8bc sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xe1858c7f reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xe187a068 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xe1900fab of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0xe19b1585 apei_get_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0xe1b64232 usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports -EXPORT_SYMBOL_GPL vmlinux 0xe1c0981b fuse_request_send -EXPORT_SYMBOL_GPL vmlinux 0xe1f06f47 xen_remap_domain_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0xe22e4b63 usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0xe23d9ba6 metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0xe277069a device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xe2881d09 tcp_done -EXPORT_SYMBOL_GPL vmlinux 0xe289bd82 skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength -EXPORT_SYMBOL_GPL vmlinux 0xe2907bf9 ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0xe29349dc copy_reserved_iova -EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe2c96b16 rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0xe2d6d832 fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0xe2e0d71d crypto_alloc_instance2 -EXPORT_SYMBOL_GPL vmlinux 0xe2e8233f __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xe318e548 device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xe3197d1b fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0xe31e4e82 usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0xe32670de default_iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0xe3436042 component_del -EXPORT_SYMBOL_GPL vmlinux 0xe35d12e6 scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0xe3781628 __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xe3948ff4 acpi_walk_dep_device_list -EXPORT_SYMBOL_GPL vmlinux 0xe3abad5c irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0xe3ad3d88 __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler -EXPORT_SYMBOL_GPL vmlinux 0xe3bda663 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe3c1baab ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0xe3fb929d vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0xe3fdb9d5 posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe4111650 usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0xe41534ce bind_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0xe41548ab list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0xe418fde4 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe439815c erst_get_record_count -EXPORT_SYMBOL_GPL vmlinux 0xe4627408 devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe462ebe2 sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xe4666d9b __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xe47a1782 dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0xe4868a1a dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4a0d7af __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xe4c331b6 acpi_os_unmap_memory -EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto -EXPORT_SYMBOL_GPL vmlinux 0xe4e68bc8 apei_map_generic_address -EXPORT_SYMBOL_GPL vmlinux 0xe4f9e942 __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0xe4ffa1ac percpu_ida_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe514d401 usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0xe51d2f0c crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0xe51f6854 scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0xe53de23f aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xe5402098 subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xe545a811 get_xsave_addr -EXPORT_SYMBOL_GPL vmlinux 0xe5684260 fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0xe56b7541 mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq -EXPORT_SYMBOL_GPL vmlinux 0xe591c908 mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0xe5af7dd3 regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0xe5b8082b cper_estatus_check_header -EXPORT_SYMBOL_GPL vmlinux 0xe5e7f560 debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0xe5f463c6 usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0xe62e9d4f xen_swiotlb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0xe63bbb3f ablkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler -EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe661dc5c rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0xe6aae419 mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module -EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen -EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data -EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe72eb679 shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0xe733ac3e tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0xe73939da irq_map_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0xe7535f2d virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe772fc0a max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0xe79619e4 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0xe7dfd940 ahash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr -EXPORT_SYMBOL_GPL vmlinux 0xe8110d72 platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe8275bdd clk_register_gpio_gate -EXPORT_SYMBOL_GPL vmlinux 0xe8320c90 gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0xe83505c8 mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe84f8e83 acpi_processor_get_performance_info -EXPORT_SYMBOL_GPL vmlinux 0xe8558069 devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe86bcc9d securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xe8783c41 powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0xe88154f0 sock_update_netprioidx -EXPORT_SYMBOL_GPL vmlinux 0xe8ae6f8c virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0xe8d36fa3 crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0xe8d5b9ac init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0xe8d8066b sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0xe8ed2679 ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0xe8f60d56 blk_unprep_request -EXPORT_SYMBOL_GPL vmlinux 0xe8fe33f9 spi_master_suspend -EXPORT_SYMBOL_GPL vmlinux 0xe9033c63 usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0xe9091a32 driver_find -EXPORT_SYMBOL_GPL vmlinux 0xe91d7d0e bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0xe9200e80 devm_pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xe9243483 scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0xe9329bf3 debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0xe9387eff security_kernel_fw_from_file -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe96b2d82 bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0xe9898f44 sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0xe98dedc8 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0xe995075c tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xe9ad287e wm8350_device_exit -EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available -EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9e07851 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0xea419ca5 devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xea41ac58 regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0xea575dbd gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xea58ff7f ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0xea7b313c pwm_set_polarity -EXPORT_SYMBOL_GPL vmlinux 0xea84abf6 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xea99b795 __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0xeae5d16b skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0xeaee9b4f ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0xeb087413 iommu_domain_set_attr -EXPORT_SYMBOL_GPL vmlinux 0xeb09a848 uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xeb0a3591 pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0xeb175189 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0xeb1c9984 posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0xeb240d2a crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0xeb2798f7 xen_destroy_contiguous_region -EXPORT_SYMBOL_GPL vmlinux 0xeb279fd6 pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0xeb370805 __apei_exec_run -EXPORT_SYMBOL_GPL vmlinux 0xeb41a0c6 vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xeb6aa0ed ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0xeb833c22 xen_has_pv_disk_devices -EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xeba778ac usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0xebb3592b snmp_get_cpu_field64 -EXPORT_SYMBOL_GPL vmlinux 0xebcd6f71 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xebf6037d nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0xebf63a7c component_master_add -EXPORT_SYMBOL_GPL vmlinux 0xec0c5da1 sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare -EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del -EXPORT_SYMBOL_GPL vmlinux 0xec6117f2 clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0xec631f34 remove_memory -EXPORT_SYMBOL_GPL vmlinux 0xec6d9840 regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0xec81bceb crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0xecb4ea26 securityfs_create_dentry -EXPORT_SYMBOL_GPL vmlinux 0xecbc4b57 pci_intx -EXPORT_SYMBOL_GPL vmlinux 0xecca1115 pwm_config -EXPORT_SYMBOL_GPL vmlinux 0xecca3d49 pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0xeccb0e42 __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0xed06c5cb pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xed2a094b device_register -EXPORT_SYMBOL_GPL vmlinux 0xed375381 root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xed49d784 fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0xed4c04dc shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0xed50a8e5 fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0xed54d909 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0xed592e11 regmap_update_bits_check -EXPORT_SYMBOL_GPL vmlinux 0xed597834 efivars_register -EXPORT_SYMBOL_GPL vmlinux 0xed630fa6 pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xed6e93be usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0xed9711a8 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0xed9ce7ef inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0xeda21c4e regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0xedab3c79 usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0xedb04054 usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0xedbc6f67 gnttab_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0xedbccc19 tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0xedbd8309 blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0xedcdffd4 alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0xedea6f15 btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0xee24e467 regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible -EXPORT_SYMBOL_GPL vmlinux 0xee7ed26e ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0xee85eac1 __netpoll_free_async -EXPORT_SYMBOL_GPL vmlinux 0xeea2c36a ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xeed4011e usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xeee03934 transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0xeee4aede dummy_con -EXPORT_SYMBOL_GPL vmlinux 0xeee7cfa2 ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0xef0d6107 usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xef1139fb ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request -EXPORT_SYMBOL_GPL vmlinux 0xef409b74 kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0xef423fce regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef4e670d irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefa74136 devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0xefbcc768 scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0xeff5e90e fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0xf00fa64a bio_associate_blkcg -EXPORT_SYMBOL_GPL vmlinux 0xf026811d fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0xf02c7c43 xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0xf035702e rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0xf03ccc6f ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf0421ad5 __efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0xf054ac97 intel_msic_irq_read -EXPORT_SYMBOL_GPL vmlinux 0xf057c608 blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable -EXPORT_SYMBOL_GPL vmlinux 0xf069d92b wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xf08031e1 rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xf082c576 max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xf0837c2c tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0xf0999baa cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0xf0b2551b sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf0bc609a skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xf0c4cfa3 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0xf0e203c4 acpi_dev_gpio_irq_get -EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0xf10d5271 cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0xf126d4f3 n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0xf127d4f0 md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0xf175223d xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf1860f01 gpiochip_set_chained_irqchip -EXPORT_SYMBOL_GPL vmlinux 0xf1a7132c setup_irq -EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key -EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on -EXPORT_SYMBOL_GPL vmlinux 0xf1b551d9 ibft_addr -EXPORT_SYMBOL_GPL vmlinux 0xf1c892c1 public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0xf1d76c97 fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0xf1da8f64 page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0xf1fe0905 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0xf20182d2 blk_queue_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0xf2196393 tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf21fdc47 shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xf228a093 dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0xf2443298 component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0xf24a71d9 pinconf_generic_dump_config -EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0xf291252d alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0xf2abfbe5 phy_get -EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xf2c74c98 da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0xf2fc6de5 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0xf303f6df acpi_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support -EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xf30fda27 lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf356f469 uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf3579146 power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0xf3621405 blkg_stat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf38df2cc pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0xf3dd3ec1 atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf3eab1c6 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0xf3ebf4eb arch_apei_report_mem_error -EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xf41a0c08 ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0xf4393d9d kernfs_path -EXPORT_SYMBOL_GPL vmlinux 0xf442395c ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xf445a0dd regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xf44621f3 cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0xf44aae0f dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0xf48a54c1 cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask -EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh -EXPORT_SYMBOL_GPL vmlinux 0xf4b2aec0 pin_is_valid -EXPORT_SYMBOL_GPL vmlinux 0xf4cda459 scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0xf4f95721 wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf5023c4a __put_net -EXPORT_SYMBOL_GPL vmlinux 0xf502787d serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf558fc10 pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0xf56d1513 regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0xf57456f4 led_trigger_store -EXPORT_SYMBOL_GPL vmlinux 0xf5785b42 evtchn_get -EXPORT_SYMBOL_GPL vmlinux 0xf58ce54d vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0xf5945bac gnttab_free_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xf597ddde usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5c1d024 regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0xf5d7f17b get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0xf5e1da88 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf5fcfe12 do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xf615386f percpu_ida_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf6495509 xenbus_watch_pathfmt -EXPORT_SYMBOL_GPL vmlinux 0xf657e253 tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0xf66bde0a usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0xf6a4b8f0 devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0xf6b4f373 kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0xf6b5c5f4 iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str -EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6d98d0e user_update -EXPORT_SYMBOL_GPL vmlinux 0xf6e6167e regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf6f020ea tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0xf7016530 xenbus_gather -EXPORT_SYMBOL_GPL vmlinux 0xf714fe7d usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0xf72e1a54 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0xf736f6ef relay_reset -EXPORT_SYMBOL_GPL vmlinux 0xf738afa0 devm_regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xf74913d7 regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0xf7708232 sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0xf7a406ec rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0xf7b163cb clk_register_gpio_mux -EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xf7daadc3 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xf7fc44f9 clk_gpio_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0xf82a0880 pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf83afa21 xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0xf850a9a3 acpiphp_unregister_attention -EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xf890c3e6 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0xf894ba00 dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xf8bee792 xenbus_dev_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xf8c550e7 verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xf8ce5975 watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops -EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0xf900ae93 __module_address -EXPORT_SYMBOL_GPL vmlinux 0xf920e890 fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf9350ef6 dmi_kobj -EXPORT_SYMBOL_GPL vmlinux 0xf93887f5 acpi_subsys_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0xf939d0be ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0xf93f6099 vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf9628396 srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf9765833 dmi_match -EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9a45ee7 devm_clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf9b970ed fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf9bbd97f md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0xf9c5730f tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xf9d55733 device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0xf9d9264e xen_have_vector_callback -EXPORT_SYMBOL_GPL vmlinux 0xf9e3359c devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xf9f25e71 device_reset -EXPORT_SYMBOL_GPL vmlinux 0xf9f3dd2d devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start -EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched -EXPORT_SYMBOL_GPL vmlinux 0xfa37edd1 crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0xfa5edfca gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0xfa7d5110 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0xfa9c8831 devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xfa9e33f7 klist_init -EXPORT_SYMBOL_GPL vmlinux 0xfad87393 xen_swiotlb_dma_mapping_error -EXPORT_SYMBOL_GPL vmlinux 0xfb0629de usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0xfb16810f wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0xfb22e28b inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xfb25ce06 btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb64b230 acpi_processor_ffh_cstate_probe -EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb7198af rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xfb83db03 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xfb83fae9 pci_try_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbca5588 device_initialize -EXPORT_SYMBOL_GPL vmlinux 0xfbecaf7a ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc131d00 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0xfc1b1a66 platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0xfc20d1ca PageHuge -EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power -EXPORT_SYMBOL_GPL vmlinux 0xfc51cd46 sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0xfc75f73d xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0xfc787562 __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0xfc8fc956 ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0xfc968c8b apei_exec_write_register_value -EXPORT_SYMBOL_GPL vmlinux 0xfcaea8e8 scsi_internal_device_unblock -EXPORT_SYMBOL_GPL vmlinux 0xfcb19218 debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0xfcb44c6d xen_swiotlb_unmap_page -EXPORT_SYMBOL_GPL vmlinux 0xfcba00c7 handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0xfccc221d debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0xfd51b281 gnttab_end_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0xfd6272d3 tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xfd6ca856 crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0xfd6da64e ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable -EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack -EXPORT_SYMBOL_GPL vmlinux 0xfd8a27c6 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xfd9b6836 __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xfdabd9ab pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0xfdba3fb9 i2c_generic_gpio_recovery -EXPORT_SYMBOL_GPL vmlinux 0xfde33c2f cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0xfe720165 devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine -EXPORT_SYMBOL_GPL vmlinux 0xfe932724 thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfeb734af seq_release_net -EXPORT_SYMBOL_GPL vmlinux 0xfec4f11a evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfeddca4f power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0xfee02f24 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xff040d03 xenbus_free_evtchn -EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff131d5c ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff2ce747 machine_check_poll -EXPORT_SYMBOL_GPL vmlinux 0xff399843 usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0xff39f12f gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xff4ef9e5 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0xff59b73a cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xff76ceec ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xff7a15c0 usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0xff966d99 crypto_tfm_in_queue -EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0xffccaa05 tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0xffcdef54 powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0xffd9a68c smp_ops -EXPORT_SYMBOL_GPL vmlinux 0xffe56314 xhci_gen_setup reverted: --- linux-raspi2-4.4.0/debian.master/abi/4.4.0-89.112/i386/generic.compiler +++ linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-89.112/i386/generic.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 reverted: --- linux-raspi2-4.4.0/debian.master/abi/4.4.0-89.112/i386/generic.modules +++ linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-89.112/i386/generic.modules @@ -1,4756 +0,0 @@ -3c509 -3c515 -3c574_cs -3c589_cs -3c59x -3w-9xxx -3w-sas -3w-xxxx -53c700 -6lowpan -6pack -8021q -8139cp -8139too -8250_accent -8250_boca -8250_dw -8250_exar_st16c554 -8250_fintek -8250_fourport -8250_hub6 -8250_mid -8255 -8255_pci -8390 -8390p -842 -842_compress -842_decompress -88pm800 -88pm805 -88pm80x -88pm80x_onkey -88pm8607 -88pm860x-ts -88pm860x_battery -88pm860x_bl -88pm860x_charger -88pm860x_onkey -9p -9pnet -9pnet_rdma -9pnet_virtio -BusLogic -DAC960 -NCR53c406a -a100u2w -a3d -a8293 -aacraid -aat2870-regulator -aat2870_bl -ab3100 -ab3100-otp -abituguru -abituguru3 -ablk_helper -ac97_bus -acard-ahci -acecad -acenic -acer-wmi -acerhdf -acpi-als -acpi_extlog -acpi_ipmi -acpi_pad -acpi_power_meter -acpi_thermal_rel -acpiphp_ibm -acquirewdt -act2000 -act200l-sir -act8865-regulator -act_bpf -act_connmark -act_csum -act_gact -act_ipt -act_mirred -act_nat -act_pedit -act_police -act_simple -act_skbedit -act_vlan -actisys-sir -ad2s1200 -ad2s1210 -ad2s90 -ad5064 -ad525x_dpot -ad525x_dpot-i2c -ad525x_dpot-spi -ad5360 -ad5380 -ad5398 -ad5421 -ad5446 -ad5449 -ad5504 -ad5592r -ad5592r-base -ad5593r -ad5624r_spi -ad5686 -ad5755 -ad5764 -ad5791 -ad5933 -ad714x -ad714x-i2c -ad714x-spi -ad7150 -ad7152 -ad7192 -ad7266 -ad7280a -ad7291 -ad7298 -ad7303 -ad7314 -ad7414 -ad7418 -ad7476 -ad7606 -ad7746 -ad7780 -ad7791 -ad7793 -ad7816 -ad7877 -ad7879 -ad7879-i2c -ad7879-spi -ad7887 -ad7923 -ad799x -ad8366 -ad9523 -ad9832 -ad9834 -ad_sigma_delta -adc128d818 -adcxx -addi_apci_1032 -addi_apci_1500 -addi_apci_1516 -addi_apci_1564 -addi_apci_16xx -addi_apci_2032 -addi_apci_2200 -addi_apci_3120 -addi_apci_3501 -addi_apci_3xxx -addi_watchdog -ade7753 -ade7754 -ade7758 -ade7759 -ade7854 -ade7854-i2c -ade7854-spi -adf4350 -adfs -adi -adis16060 -adis16080 -adis16130 -adis16136 -adis16201 -adis16203 -adis16204 -adis16209 -adis16220 -adis16240 -adis16260 -adis16400 -adis16480 -adis_lib -adjd_s311 -adl_pci6208 -adl_pci7x3x -adl_pci8164 -adl_pci9111 -adl_pci9118 -adm1021 -adm1025 -adm1026 -adm1029 -adm1031 -adm1275 -adm8211 -adm9240 -adp5520-keys -adp5520_bl -adp5588-keys -adp5589-keys -adp8860_bl -adp8870_bl -adq12b -ads1015 -ads7828 -ads7846 -ads7871 -adt7310 -adt7316 -adt7316-i2c -adt7316-spi -adt7410 -adt7411 -adt7462 -adt7470 -adt7475 -adt7x10 -adummy -adutux -adv7170 -adv7175 -adv7180 -adv7511 -adv7604 -adv7842 -adv_pci1710 -adv_pci1723 -adv_pci1724 -adv_pci_dio -advansys -advantechwdt -adxl34x -adxl34x-i2c -adxl34x-spi -adxrs450 -aes-i586 -aesni-intel -af-rxrpc -af9013 -af9033 -af_alg -af_key -af_packet_diag -affs -ah4 -ah6 -aha152x -aha152x_cs -aha1542 -aha1740 -ahci -ahci_platform -aic79xx -aic7xxx -aic94xx -aim_cdev -aim_network -aim_sound -aim_v4l2 -aio_aio12_8 -aio_iiro_16 -aiptek -aircable -airo -airo_cs -airspy -ak8975 -al3320a -algif_aead -algif_hash -algif_rng -algif_skcipher -ali-agp -ali-ircc -alienware-wmi -alim1535_wdt -alim7101_wdt -altera-ci -altera-stapl -altera_jtaguart -altera_ps2 -altera_tse -altera_uart -alx -am53c974 -ambassador -amc6821 -amd -amd-rng -amd5536udc -amd64_edac_mod -amd76x_edac -amd76xrom -amd8111e -amd_freq_sensitivity -amdgpu -amilo-rfkill -amplc_dio200 -amplc_dio200_common -amplc_dio200_pci -amplc_pc236 -amplc_pc236_common -amplc_pc263 -amplc_pci224 -amplc_pci230 -amplc_pci236 -amplc_pci263 -ams369fg06 -analog -anatop-regulator -ansi_cprng -anubis -aoe -apanel -apds9300 -apds9802als -apds990x -apds9960 -apm -apple-gmux -apple_bl -appledisplay -applesmc -appletalk -appletouch -applicom -aquantia -ar5523 -ar7part -arc-rawmode -arc-rimi -arc4 -arc_ps2 -arc_uart -arcfb -arcmsr -arcnet -arizona-haptics -arizona-i2c -arizona-ldo1 -arizona-micsupp -arizona-spi -ark3116 -arkfb -arp_tables -arpt_mangle -arptable_filter -as102_fe -as3711-regulator -as3711_bl -as3935 -as5011 -asb100 -asc7621 -ascot2e -asix -ast -asus-laptop -asus-nb-wmi -asus-wmi -asus_atk0110 -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at24 -at25 -at76c50x-usb -at803x -at86rf230 -atbm8830 -aten -ath -ath10k_core -ath10k_pci -ath3k -ath5k -ath6kl_core -ath6kl_sdio -ath6kl_usb -ath9k -ath9k_common -ath9k_htc -ath9k_hw -ati-agp -ati_remote -ati_remote2 -atl1 -atl1c -atl1e -atl2 -atlas_btns -atm -atmel -atmel_cs -atmel_mxt_ts -atmel_pci -atmtcp -atp -atp870u -atusb -atxp1 -aty128fb -atyfb -au0828 -au8522_common -au8522_decoder -au8522_dig -aufs -auo-pixcir-ts -auo_k1900fb -auo_k1901fb -auo_k190x -auth_rpcgss -authenc -authencesn -autofs4 -avm_cs -avma1_cs -avmfritz -ax25 -ax88179_178a -axnet_cs -axp20x-pek -axp20x-regulator -axp20x_usb_power -axp288_adc -axp288_charger -axp288_fuel_gauge -b1 -b1dma -b1isa -b1pci -b1pcmcia -b2c2-flexcop -b2c2-flexcop-pci -b2c2-flexcop-usb -b43 -b43legacy -b44 -bas_gigaset -batman-adv -baycom_epp -baycom_par -baycom_ser_fdx -baycom_ser_hdx -bcache -bch -bcm-phy-lib -bcm203x -bcm3510 -bcm590xx -bcm590xx-regulator -bcm5974 -bcm7038_wdt -bcm7xxx -bcm87xx -bcma -bcma-hcd -bd6107 -bdc -bdc_pci -be2iscsi -be2net -befs -belkin_sa -bfa -bfs -bfusb -bh1750 -bh1770glc -bh1780gli -binfmt_aout -binfmt_misc -block2mtd -blocklayoutdriver -blowfish_common -blowfish_generic -bluecard_cs -bluetooth -bluetooth_6lowpan -bma150 -bma180 -bmc150-accel-core -bmc150-accel-i2c -bmc150-accel-spi -bmc150_magn -bmg160_core -bmg160_i2c -bmg160_spi -bmp085 -bmp085-i2c -bmp085-spi -bmp280 -bna -bnep -bnx2 -bnx2fc -bnx2i -bnx2x -bnxt_en -bonding -bpa10x -bpck -bpck6 -bpqether -bq2415x_charger -bq24190_charger -bq24257_charger -bq24735-charger -bq25890_charger -bq27xxx_battery -br2684 -br_netfilter -brcmfmac -brcmsmac -brcmutil -brd -bridge -broadcom -broadsheetfb -bsd_comp -bt3c_cs -bt819 -bt856 -bt866 -bt878 -btbcm -btcoexist -btintel -btmrvl -btmrvl_sdio -btqca -btrfs -btrtl -btsdio -bttv -btuart_cs -btusb -btwilink -bu21013_ts -budget -budget-av -budget-ci -budget-core -budget-patch -c101 -c2port-duramar2150 -c4 -c67x00 -c6xdigio -c_can -c_can_pci -c_can_platform -cachefiles -cadence_wdt -cafe_ccic -cafe_nand -caif -caif_hsi -caif_serial -caif_socket -caif_usb -caif_virtio -camellia_generic -can -can-bcm -can-dev -can-gw -can-raw -capi -capidrv -capmode -carl9170 -carminefb -cassini -cast5_generic -cast6_generic -cast_common -catc -cb710 -cb710-mmc -cb_das16_cs -cb_pcidas -cb_pcidas64 -cb_pcidda -cb_pcimdas -cb_pcimdda -cc10001_adc -cc2520 -cc770 -cc770_isa -cc770_platform -cciss -ccm -ccp -ccp-crypto -cdc-acm -cdc-phonet -cdc-wdm -cdc_eem -cdc_ether -cdc_mbim -cdc_ncm -cdc_subset -ceph -cfag12864b -cfag12864bfb -cfg80211 -cfi_cmdset_0001 -cfi_cmdset_0002 -cfi_cmdset_0020 -cfi_probe -cfi_util -cfspi_slave -ch -ch341 -ch7006 -ch9200 -chacha20_generic -chacha20poly1305 -chaoskey -chipreg -chnl_net -chromeos_laptop -chromeos_pstore -ci_hdrc -ci_hdrc_msm -ci_hdrc_pci -ci_hdrc_usb2 -ci_hdrc_zevio -cicada -cifs -cirrus -cirrusfb -ck804xrom -classmate-laptop -clip -clk-cdce706 -clk-palmas -clk-pwm -clk-s2mps11 -clk-si5351 -clk-twl6040 -clk-wm831x -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_rsvp -cls_rsvp6 -cls_tcindex -cls_u32 -cm109 -cm32181 -cm3232 -cm3323 -cm36651 -cm4000_cs -cm4040_cs -cma3000_d0x -cma3000_d0x_i2c -cmac -cmdlinepart -cmtp -cnic -cobalt -cobra -coda -com20020 -com20020-isa -com20020-pci -com20020_cs -com90io -com90xx -comedi -comedi_8254 -comedi_8255 -comedi_bond -comedi_isadma -comedi_parport -comedi_pci -comedi_pcmcia -comedi_test -comedi_usb -comm -compal-laptop -configfs -contec_pci_dio -cops -cordic -core -coretemp -cosa -cp210x -cpcihp_generic -cpcihp_zt5550 -cpia2 -cpqphp -cpsw_ale -cpu-notifier-error-inject -cpu5wdt -cpuid -cr_bllcd -cramfs -crc-ccitt -crc-itu-t -crc32 -crc32-pclmul -crc7 -crc8 -cros_ec -cros_ec_devs -cros_ec_i2c -cros_ec_keyb -cros_ec_lpc -cros_ec_spi -crvml -cryptd -crypto_user -cryptoloop -cs5345 -cs53l32a -cs5535-mfd -cs553x_nand -cs89x0 -csiostor -ct82c710 -ctr -cts -cuse -cw1200_core -cw1200_wlan_sdio -cw1200_wlan_spi -cx18 -cx18-alsa -cx22700 -cx22702 -cx231xx -cx231xx-alsa -cx231xx-dvb -cx2341x -cx23885 -cx24110 -cx24113 -cx24116 -cx24117 -cx24120 -cx24123 -cx25821 -cx25821-alsa -cx25840 -cx82310_eth -cx88-alsa -cx88-blackbird -cx88-dvb -cx88-vp3054-i2c -cx8800 -cx8802 -cx88xx -cxacru -cxd2099 -cxd2820r -cxd2841er -cxgb -cxgb3 -cxgb3i -cxgb4 -cxgb4i -cxgb4vf -cy8ctmg110_ts -cyapatp -cyber2000fb -cyberjack -cyclades -cypress_cy7c63 -cypress_firmware -cypress_m8 -cytherm -cyttsp4_core -cyttsp4_i2c -cyttsp4_spi -cyttsp_core -cyttsp_i2c -cyttsp_i2c_common -cyttsp_spi -da9030_battery -da9034-ts -da903x -da903x_bl -da9052-battery -da9052-hwmon -da9052-regulator -da9052_bl -da9052_onkey -da9052_tsi -da9052_wdt -da9055-hwmon -da9055-regulator -da9055_onkey -da9055_wdt -da9062-core -da9062-regulator -da9062_wdt -da9063-regulator -da9063_onkey -da9063_wdt -da9150-charger -da9150-core -da9150-fg -da9150-gpadc -da9210-regulator -da9211-regulator -dac02 -daqboard2000 -das08 -das08_cs -das08_isa -das08_pci -das16 -das16m1 -das1800 -das6402 -das800 -davicom -db9 -dc395x -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -dccp_probe -dcdbas -ddbridge -de2104x -de4x5 -decnet -deflate -defxx -dell-laptop -dell-led -dell-rbtn -dell-smm-hwmon -dell-smo8800 -dell-wmi -dell-wmi-aio -dell_rbu -denali -denali_dt -denali_pci -des_generic -designware_i2s -dgap -dgnc -dht11 -dib0070 -dib0090 -dib3000mb -dib3000mc -dib7000m -dib7000p -dib8000 -dibx000_common -digi_acceleport -diskonchip -diva_idi -diva_mnt -divacapi -divadidd -divas -dl2k -dlci -dlm -dln2 -dm-bio-prison -dm-bufio -dm-cache -dm-cache-cleaner -dm-cache-mq -dm-cache-smq -dm-crypt -dm-delay -dm-era -dm-flakey -dm-log -dm-log-userspace -dm-log-writes -dm-mirror -dm-multipath -dm-persistent-data -dm-queue-length -dm-raid -dm-region-hash -dm-round-robin -dm-service-time -dm-snapshot -dm-switch -dm-thin-pool -dm-verity -dm-zero -dm1105 -dm9601 -dme1737 -dmfe -dmi-sysfs -dmm32at -dmx3191d -dn_rtmsg -dnet -docg3 -docg4 -donauboe -dp83848 -dp83867 -dpt_i2o -drbd -drbg -drm -drm_kms_helper -drop_monitor -drv260x -drv2665 -drv2667 -drx39xyj -drxd -drxk -ds1621 -ds1682 -ds1wm -ds2482 -ds2490 -ds2760_battery -ds2780_battery -ds2781_battery -ds2782_battery -ds3000 -ds620 -dsbr100 -dscc4 -dss1_divert -dst -dst_ca -dstr -dt2801 -dt2811 -dt2814 -dt2815 -dt2817 -dt282x -dt3000 -dt3155 -dt9812 -dtc -dtl1_cs -dtlk -dummy -dummy-irq -dummy_stm -dvb-as102 -dvb-bt8xx -dvb-core -dvb-pll -dvb-ttpci -dvb-ttusb-budget -dvb-usb -dvb-usb-a800 -dvb-usb-af9005 -dvb-usb-af9005-remote -dvb-usb-af9015 -dvb-usb-af9035 -dvb-usb-anysee -dvb-usb-au6610 -dvb-usb-az6007 -dvb-usb-az6027 -dvb-usb-ce6230 -dvb-usb-cinergyT2 -dvb-usb-cxusb -dvb-usb-dib0700 -dvb-usb-dibusb-common -dvb-usb-dibusb-mb -dvb-usb-dibusb-mc -dvb-usb-digitv -dvb-usb-dtt200u -dvb-usb-dtv5100 -dvb-usb-dvbsky -dvb-usb-dw2102 -dvb-usb-ec168 -dvb-usb-friio -dvb-usb-gl861 -dvb-usb-gp8psk -dvb-usb-lmedm04 -dvb-usb-m920x -dvb-usb-mxl111sf -dvb-usb-nova-t-usb2 -dvb-usb-opera -dvb-usb-pctv452e -dvb-usb-rtl28xxu -dvb-usb-technisat-usb2 -dvb-usb-ttusb2 -dvb-usb-umt-010 -dvb-usb-vp702x -dvb-usb-vp7045 -dvb_usb_v2 -dw_dmac -dw_dmac_core -dw_dmac_pci -dw_wdt -dwc3 -dwc3-pci -dwmac-generic -dyna_pci10xx -dynapro -e100 -e1000 -e1000e -e3x0-button -e4000 -e752x_edac -e7xxx_edac -earth-pt1 -earth-pt3 -eata -ebt_802_3 -ebt_among -ebt_arp -ebt_arpreply -ebt_dnat -ebt_ip -ebt_ip6 -ebt_limit -ebt_log -ebt_mark -ebt_mark_m -ebt_nflog -ebt_pkttype -ebt_redirect -ebt_snat -ebt_stp -ebt_vlan -ebtable_broute -ebtable_filter -ebtable_nat -ebtables -ec100 -ec_bhf -ec_sys -echainiv -echo -edac_core -edac_mce_amd -edt-ft5x06 -eeepc-laptop -eeepc-wmi -eeprom -eeprom_93cx6 -eeprom_93xx46 -eeti_ts -efficeon-agp -efi-pstore -efi_test -efs -ehset -einj -elan_i2c -elo -elsa_cs -em28xx -em28xx-alsa -em28xx-dvb -em28xx-rc -em28xx-v4l -em_canid -em_cmp -em_ipset -em_meta -em_nbyte -em_text -em_u32 -emc1403 -emc2103 -emc6w201 -emi26 -emi62 -empeg -ems_pci -ems_pcmcia -ems_usb -emu10k1-gp -ena -enc28j60 -enclosure -encx24j600 -encx24j600-regmap -ene_ir -eni -enic -epat -epia -epic100 -eql -esas2r -esb2rom -esd_usb2 -esi-sir -esp4 -esp6 -esp_scsi -et1011c -et131x -ethoc -eurotechwdt -evbug -exofs -extcon-adc-jack -extcon-arizona -extcon-axp288 -extcon-gpio -extcon-max14577 -extcon-max77693 -extcon-max77843 -extcon-max8997 -extcon-palmas -extcon-rt8973a -extcon-sm5502 -extcon-usb-gpio -ezusb -f2fs -f71805f -f71808e_wdt -f71882fg -f75375s -f81232 -fakelb -fam15h_power -fan53555 -farsync -faulty -fb_agm1264k-fl -fb_bd663474 -fb_ddc -fb_hx8340bn -fb_hx8347d -fb_hx8353d -fb_hx8357d -fb_ili9163 -fb_ili9320 -fb_ili9325 -fb_ili9340 -fb_ili9341 -fb_ili9481 -fb_ili9486 -fb_pcd8544 -fb_ra8875 -fb_s6d02a1 -fb_s6d1121 -fb_ssd1289 -fb_ssd1306 -fb_ssd1331 -fb_ssd1351 -fb_st7735r -fb_st7789v -fb_sys_fops -fb_tinylcd -fb_tls8204 -fb_uc1611 -fb_uc1701 -fb_upd161704 -fb_watterott -fbtft -fbtft_device -fc0011 -fc0012 -fc0013 -fc2580 -fcoe -fcrypt -fdomain -fdomain_cs -fdp -fdp_i2c -fealnx -ff-memless -fintek-cir -firedtv -firestream -firewire-core -firewire-net -firewire-ohci -firewire-sbp2 -firewire-serial -fit2 -fit3 -fixed -fjes -fl512 -flexfb -floppy -fm10k -fm801-gp -fm_drv -fmc -fmc-chardev -fmc-fakedev -fmc-trivial -fmc-write-eeprom -fmvj18x_cs -fnic -forcedeth -fore_200e -fotg210-hcd -fotg210-udc -fou -fpga-mgr -freevxfs -friq -frpw -fsa9480 -fscache -fschmd -fsl_lpuart -ft6236 -ftdi-elan -ftdi_sio -ftl -fujitsu-laptop -fujitsu-tablet -fujitsu_ts -g450_pll -g760a -g762 -g_NCR5380 -g_NCR5380_mmio -g_acm_ms -g_audio -g_cdc -g_dbgp -g_ether -g_ffs -g_hid -g_mass_storage -g_midi -g_ncm -g_nokia -g_printer -g_serial -g_webcam -g_zero -gadgetfs -gamecon -gameport -garmin_gps -garp -gcm -gdmtty -gdmulte -gdmwm -gdth -gen_probe -generic -generic-adc-battery -generic_bl -genet -geneve -gennvm -geode-aes -geode-rng -gf128mul -gf2k -gfs2 -ghash-generic -gigaset -girbil-sir -gl518sm -gl520sm -gl620a -glue_helper -gluebi -gma500_gfx -go7007 -go7007-loader -go7007-usb -goku_udc -goodix -gp2ap002a00f -gp2ap020a00f -gpio -gpio-104-idio-16 -gpio-addr-flash -gpio-adp5520 -gpio-adp5588 -gpio-amd8111 -gpio-amdpt -gpio-arizona -gpio-beeper -gpio-charger -gpio-crystalcove -gpio-cs5535 -gpio-da9052 -gpio-da9055 -gpio-dln2 -gpio-dwapb -gpio-f7188x -gpio-fan -gpio-generic -gpio-ich -gpio-ir-recv -gpio-it87 -gpio-janz-ttl -gpio-kempld -gpio-lp3943 -gpio-max7300 -gpio-max7301 -gpio-max730x -gpio-max732x -gpio-mc33880 -gpio-mcp23s08 -gpio-ml-ioh -gpio-pca953x -gpio-pcf857x -gpio-pch -gpio-rdc321x -gpio-regulator -gpio-sch -gpio-sch311x -gpio-tps65912 -gpio-twl4030 -gpio-twl6040 -gpio-ucb1400 -gpio-viperboard -gpio-vx855 -gpio-wm831x -gpio-wm8350 -gpio-wm8994 -gpio_backlight -gpio_keys -gpio_keys_polled -gpio_mouse -gpio_tilt_polled -gr_udc -grace -gre -grip -grip_mp -gs_fpga -gs_usb -gsc_hpdi -gspca_benq -gspca_conex -gspca_cpia1 -gspca_dtcs033 -gspca_etoms -gspca_finepix -gspca_gl860 -gspca_jeilinj -gspca_jl2005bcd -gspca_kinect -gspca_konica -gspca_m5602 -gspca_main -gspca_mars -gspca_mr97310a -gspca_nw80x -gspca_ov519 -gspca_ov534 -gspca_ov534_9 -gspca_pac207 -gspca_pac7302 -gspca_pac7311 -gspca_se401 -gspca_sn9c2028 -gspca_sn9c20x -gspca_sonixb -gspca_sonixj -gspca_spca1528 -gspca_spca500 -gspca_spca501 -gspca_spca505 -gspca_spca506 -gspca_spca508 -gspca_spca561 -gspca_sq905 -gspca_sq905c -gspca_sq930x -gspca_stk014 -gspca_stk1135 -gspca_stv0680 -gspca_stv06xx -gspca_sunplus -gspca_t613 -gspca_topro -gspca_touptek -gspca_tv8532 -gspca_vc032x -gspca_vicam -gspca_xirlink_cit -gspca_zc3xx -gtco -guillemot -gunze -gx-suspmod -gx1fb -gxfb -gxt4500 -hackrf -hamachi -hampshire -hangcheck-timer -hanwang -hci -hci_uart -hci_vhci -hdaps -hdc100x -hdlc -hdlc_cisco -hdlc_fr -hdlc_ppp -hdlc_raw -hdlc_raw_eth -hdlc_x25 -hdlcdrv -hdm_dim2 -hdm_i2c -hdm_usb -hdpvr -he -hecubafb -hexium_gemini -hexium_orion -hfc4s8s_l1 -hfc_usb -hfcmulti -hfcpci -hfcsusb -hfs -hfsplus -hgafb -hi8435 -hid -hid-a4tech -hid-alps -hid-apple -hid-appleir -hid-aureal -hid-axff -hid-belkin -hid-betopff -hid-cherry -hid-chicony -hid-corsair -hid-cp2112 -hid-cypress -hid-dr -hid-elecom -hid-elo -hid-emsff -hid-ezkey -hid-gaff -hid-gembird -hid-generic -hid-gfrm -hid-gt683r -hid-gyration -hid-holtek-kbd -hid-holtek-mouse -hid-holtekff -hid-hyperv -hid-icade -hid-kensington -hid-keytouch -hid-kye -hid-lcpower -hid-lenovo -hid-logitech -hid-logitech-dj -hid-logitech-hidpp -hid-magicmouse -hid-microsoft -hid-monterey -hid-multitouch -hid-ntrig -hid-ortek -hid-penmount -hid-petalynx -hid-picolcd -hid-pl -hid-plantronics -hid-primax -hid-prodikeys -hid-rmi -hid-roccat -hid-roccat-arvo -hid-roccat-common -hid-roccat-isku -hid-roccat-kone -hid-roccat-koneplus -hid-roccat-konepure -hid-roccat-kovaplus -hid-roccat-lua -hid-roccat-pyra -hid-roccat-ryos -hid-roccat-savu -hid-saitek -hid-samsung -hid-sensor-accel-3d -hid-sensor-als -hid-sensor-custom -hid-sensor-gyro-3d -hid-sensor-hub -hid-sensor-iio-common -hid-sensor-incl-3d -hid-sensor-magn-3d -hid-sensor-press -hid-sensor-prox -hid-sensor-rotation -hid-sensor-trigger -hid-sjoy -hid-sony -hid-speedlink -hid-steelseries -hid-sunplus -hid-thingm -hid-tivo -hid-tmff -hid-topseed -hid-twinhan -hid-uclogic -hid-waltop -hid-wiimote -hid-xinmo -hid-zpff -hid-zydacron -hidp -hih6130 -hio -hisax -hisax_fcpcipnp -hisax_isac -hisax_st5481 -hisi504_nand -hmc5843_core -hmc5843_i2c -hmc5843_spi -hmc6352 -hopper -horizon -horus3a -hostap -hostap_cs -hostap_pci -hostap_plx -hostess_sv11 -hp-wireless -hp-wmi -hp100 -hp_accel -hpfs -hpilo -hpsa -hptiop -hpwdt -hsi -hsi_char -hso -hsr -hsu_dma -hsu_dma_pci -htc-pasic3 -htcpen -hts221 -hts221_i2c -hts221_spi -htu21 -huawei_cdc_ncm -hv_balloon -hv_netvsc -hv_storvsc -hv_utils -hv_vmbus -hwa-hc -hwa-rc -hwmon-vid -hx8357 -hyperv-keyboard -hyperv_fb -hysdn -i1480-dfu-usb -i1480-est -i2400m -i2400m-usb -i2c-algo-bit -i2c-algo-pca -i2c-ali1535 -i2c-ali1563 -i2c-ali15x3 -i2c-amd756 -i2c-amd756-s4882 -i2c-amd8111 -i2c-cbus-gpio -i2c-cros-ec-tunnel -i2c-designware-core -i2c-designware-pci -i2c-designware-platform -i2c-diolan-u2c -i2c-dln2 -i2c-eg20t -i2c-emev2 -i2c-gpio -i2c-hid -i2c-i801 -i2c-isch -i2c-ismt -i2c-kempld -i2c-matroxfb -i2c-mux -i2c-mux-gpio -i2c-mux-pca9541 -i2c-mux-pca954x -i2c-mux-pinctrl -i2c-mux-reg -i2c-nforce2 -i2c-nforce2-s4985 -i2c-ocores -i2c-parport -i2c-parport-light -i2c-pca-isa -i2c-pca-platform -i2c-piix4 -i2c-robotfuzz-osif -i2c-scmi -i2c-simtec -i2c-sis5595 -i2c-sis630 -i2c-sis96x -i2c-smbus -i2c-stub -i2c-taos-evm -i2c-tiny-usb -i2c-via -i2c-viapro -i2c-viperboard -i2c-xiic -i3000_edac -i3200_edac -i40e -i40evf -i5000_edac -i5100_edac -i5400_edac -i5500_temp -i5k_amb -i6300esb -i7300_edac -i740fb -i7core_edac -i810 -i810fb -i82092 -i82365 -i82860_edac -i82875p_edac -i82975x_edac -i915 -i915_bpo -iTCO_vendor_support -iTCO_wdt -ib700wdt -ib_addr -ib_cm -ib_core -ib_ipoib -ib_iser -ib_isert -ib_mad -ib_mthca -ib_sa -ib_srp -ib_srpt -ib_ucm -ib_umad -ib_uverbs -ibm_rtl -ibmaem -ibmasm -ibmasr -ibmpex -ibmphp -ichxrom -icn -icp_multi -icplus -ics932s401 -ideapad-laptop -ideapad_slidebar -idma64 -idmouse -idt77252 -idt_gen2 -idtcps -ie31200_edac -ie6xx_wdt -ieee802154 -ieee802154_6lowpan -ieee802154_socket -ifb -iforce -igb -igbvf -igorplugusb -iguanair -ii_pci20kc -iio-trig-interrupt -iio-trig-periodic-rtc -iio-trig-sysfs -iio_dummy -iio_hwmon -ila -ili210x -ili922x -ili9320 -imm -imon -ims-pcu -imx074 -in2000 -ina209 -ina2xx -industrialio -industrialio-buffer-cb -industrialio-triggered-buffer -industrialio-triggered-event -inet_diag -inexio -inftl -initio -input-leds -input-polldev -int3400_thermal -int3402_thermal -int3403_thermal -int340x_thermal_zone -int51x1 -intel-hid -intel-lpss -intel-lpss-acpi -intel-lpss-pci -intel-mid-touch -intel-mid_wdt -intel-rng -intel-rst -intel-smartconnect -intel-vbtn -intel_ips -intel_menlow -intel_mid_battery -intel_mid_powerbtn -intel_mid_thermal -intel_oaktrail -intel_pch_thermal -intel_pmc_ipc -intel_powerclamp -intel_punit_ipc -intel_qat -intel_quark_i2c_gpio -intel_rapl -intel_scu_ipcutil -intel_soc_dts_iosf -intel_soc_dts_thermal -intel_th -intel_th_gth -intel_th_msu -intel_th_pci -intel_th_pti -intel_th_sth -intel_vr_nor -intelfb -interact -interval_tree_test -inv-mpu6050 -io_edgeport -io_ti -ioc4 -iowarrior -ip6_gre -ip6_tables -ip6_tunnel -ip6_udp_tunnel -ip6_vti -ip6t_MASQUERADE -ip6t_NPT -ip6t_REJECT -ip6t_SYNPROXY -ip6t_ah -ip6t_eui64 -ip6t_frag -ip6t_hbh -ip6t_ipv6header -ip6t_mh -ip6t_rpfilter -ip6t_rt -ip6table_filter -ip6table_mangle -ip6table_nat -ip6table_raw -ip6table_security -ip_gre -ip_set -ip_set_bitmap_ip -ip_set_bitmap_ipmac -ip_set_bitmap_port -ip_set_hash_ip -ip_set_hash_ipmark -ip_set_hash_ipport -ip_set_hash_ipportip -ip_set_hash_ipportnet -ip_set_hash_mac -ip_set_hash_net -ip_set_hash_netiface -ip_set_hash_netnet -ip_set_hash_netport -ip_set_hash_netportnet -ip_set_list_set -ip_tables -ip_tunnel -ip_vs -ip_vs_dh -ip_vs_fo -ip_vs_ftp -ip_vs_lblc -ip_vs_lblcr -ip_vs_lc -ip_vs_nq -ip_vs_ovf -ip_vs_pe_sip -ip_vs_rr -ip_vs_sed -ip_vs_sh -ip_vs_wlc -ip_vs_wrr -ip_vti -ipack -ipaq -ipcomp -ipcomp6 -ipddp -iphase -ipheth -ipip -ipmi_devintf -ipmi_msghandler -ipmi_poweroff -ipmi_si -ipmi_ssif -ipmi_watchdog -ipoctal -ipr -ips -ipt_CLUSTERIP -ipt_ECN -ipt_MASQUERADE -ipt_REJECT -ipt_SYNPROXY -ipt_ah -ipt_rpfilter -iptable_filter -iptable_mangle -iptable_nat -iptable_raw -iptable_security -ipvlan -ipw -ipw2100 -ipw2200 -ipwireless -ipx -ir-hix5hd2 -ir-jvc-decoder -ir-kbd-i2c -ir-lirc-codec -ir-mce_kbd-decoder -ir-nec-decoder -ir-rc5-decoder -ir-rc6-decoder -ir-sanyo-decoder -ir-sharp-decoder -ir-sony-decoder -ir-usb -ir-xmp-decoder -ircomm -ircomm-tty -irda -irda-usb -iris -irlan -irnet -irqbypass -irtty-sir -isci -iscsi_boot_sysfs -iscsi_ibft -iscsi_target_mod -iscsi_tcp -isdn -isdn_bsdcomp -isdnhdlc -isicom -isight_firmware -isl29003 -isl29018 -isl29020 -isl29028 -isl29125 -isl6271a-regulator -isl6405 -isl6421 -isl6423 -isl9305 -isofs -isp116x-hcd -isp1362-hcd -isp1704_charger -isp1760 -it87 -it8712f_wdt -it87_wdt -it913x -itd1000 -ite-cir -itg3200 -iuu_phoenix -ivtv -ivtv-alsa -ivtvfb -iw_c2 -iw_cm -iw_cxgb3 -iw_cxgb4 -iw_nes -iwl3945 -iwl4965 -iwldvm -iwlegacy -iwlmvm -iwlwifi -ix2505v -ixgb -ixgbe -ixgbevf -janz-cmodio -janz-ican3 -jc42 -jedec_probe -jffs2 -jfs -jitterentropy_rng -jmb38x_ms -jme -joydev -joydump -jr3_pci -jsa1212 -jsm -k10temp -k8temp -kafs -kalmia -kaweth -kb3886_bl -kbic -kbtab -kcomedilib -ke_counter -kempld-core -kempld_wdt -kernelcapi -keyspan -keyspan_pda -keyspan_remote -keywrap -kfifo_buf -khazad -kingsun-sir -kl5kusb105 -kmx61 -kobil_sct -ks0108 -ks0127 -ks8842 -ks8851 -ks8851_mll -ks959-sir -ksdazzle-sir -ksz884x -ktti -kvaser_pci -kvaser_usb -kvm -kvm-amd -kvm-intel -kxcjk-1013 -kxsd9 -kxtj9 -kyrofb -l1oip -l2tp_core -l2tp_debugfs -l2tp_eth -l2tp_ip -l2tp_ip6 -l2tp_netlink -l2tp_ppp -l440gx -l4f00242t03 -l64781 -lan78xx -lanai -lance -lapb -lapbether -latch-addr-flash -lattice-ecp3-config -lcd -ld9040 -ldusb -lec -led-class-flash -leds-88pm860x -leds-adp5520 -leds-bd2802 -leds-blinkm -leds-clevo-mail -leds-da903x -leds-da9052 -leds-dac124s085 -leds-gpio -leds-lm3530 -leds-lm3533 -leds-lm355x -leds-lm3642 -leds-lp3944 -leds-lp5521 -leds-lp5523 -leds-lp5562 -leds-lp55xx-common -leds-lp8501 -leds-lp8788 -leds-lp8860 -leds-lt3593 -leds-max8997 -leds-mc13783 -leds-menf21bmc -leds-net48xx -leds-ot200 -leds-pca9532 -leds-pca955x -leds-pca963x -leds-pwm -leds-regulator -leds-ss4200 -leds-tca6507 -leds-tlc591xx -leds-wm831x-status -leds-wm8350 -leds-wrap -ledtrig-backlight -ledtrig-camera -ledtrig-default-on -ledtrig-gpio -ledtrig-heartbeat -ledtrig-oneshot -ledtrig-timer -ledtrig-transient -legousbtower -lg-vl600 -lg2160 -lgdt3305 -lgdt3306a -lgdt330x -lgs8gxx -lib80211 -lib80211_crypt_ccmp -lib80211_crypt_tkip -lib80211_crypt_wep -libahci -libahci_platform -libceph -libcomposite -libcrc32c -libcxgbi -libertas -libertas_cs -libertas_sdio -libertas_spi -libertas_tf -libertas_tf_usb -libfc -libfcoe -libipw -libiscsi -libiscsi_tcp -libore -libosd -libsas -lightning -lineage-pem -linear -lirc_bt829 -lirc_dev -lirc_imon -lirc_parallel -lirc_sasem -lirc_serial -lirc_sir -lirc_zilog -lis3l02dq -lis3lv02d -lis3lv02d_i2c -litelink-sir -lkkbd -llc -llc2 -lm25066 -lm3533-als -lm3533-core -lm3533-ctrlbank -lm3533_bl -lm3630a_bl -lm3639_bl -lm63 -lm70 -lm73 -lm75 -lm77 -lm78 -lm80 -lm83 -lm8323 -lm8333 -lm85 -lm87 -lm90 -lm92 -lm93 -lm95234 -lm95241 -lm95245 -lmc -lms283gf05 -lms501kf03 -lnbh25 -lnbp21 -lnbp22 -lockd -locktorture -logibm -longhaul -longrun -lp -lp3943 -lp3971 -lp3972 -lp855x_bl -lp8727_charger -lp872x -lp8755 -lp8788-buck -lp8788-charger -lp8788-ldo -lp8788_adc -lp8788_bl -lpc_ich -lpc_sch -lpddr_cmds -lpfc -lru_cache -lrw -ltc2941-battery-gauge -ltc2945 -ltc2978 -ltc3589 -ltc4151 -ltc4215 -ltc4222 -ltc4245 -ltc4260 -ltc4261 -ltpc -ltr501 -ltv350qv -lv5207lp -lvstest -lxfb -lxt -lz4 -lz4_compress -lz4hc -lz4hc_compress -m25p80 -m2m-deinterlace -m52790 -m62332 -m88ds3103 -m88rs2000 -m88rs6000t -mISDN_core -mISDN_dsp -mISDNinfineon -mISDNipac -mISDNisar -m_can -ma600-sir -mac-celtic -mac-centeuro -mac-croatian -mac-cyrillic -mac-gaelic -mac-greek -mac-iceland -mac-inuit -mac-roman -mac-romanian -mac-turkish -mac80211 -mac80211_hwsim -mac802154 -mac_hid -macb -machzwd -macmodes -macvlan -macvtap -mag3110 -magellan -mailbox-altera -mantis -mantis_core -map_absent -map_funcs -map_ram -map_rom -marvell -matrix-keymap -matrix_keypad -matrox_w1 -matroxfb_DAC1064 -matroxfb_Ti3026 -matroxfb_accel -matroxfb_base -matroxfb_crtc2 -matroxfb_g450 -matroxfb_maven -matroxfb_misc -max1027 -max1111 -max11801_ts -max1363 -max14577 -max14577_charger -max1586 -max16064 -max16065 -max1619 -max1668 -max17040_battery -max17042_battery -max197 -max20751 -max2165 -max3100 -max31790 -max3421-hcd -max34440 -max517 -max63xx_wdt -max6639 -max6642 -max6650 -max6697 -max6875 -max7359_keypad -max77693 -max77693-haptic -max77693_charger -max8649 -max8660 -max8688 -max8903_charger -max8907 -max8907-regulator -max8925-regulator -max8925_bl -max8925_onkey -max8925_power -max8952 -max8973-regulator -max8997 -max8997_charger -max8997_haptic -max8998 -max8998_charger -mb862xxfb -mb86a16 -mb86a20s -mc13783-adc -mc13783-pwrbutton -mc13783-regulator -mc13783_ts -mc13892-regulator -mc13xxx-core -mc13xxx-i2c -mc13xxx-regulator-core -mc13xxx-spi -mc44s803 -mcb -mcb-pci -mce-inject -mce_amd_inj -mceusb -mcp2120-sir -mcp251x -mcp3021 -mcp320x -mcp3422 -mcp4531 -mcp4725 -mcp4922 -mcryptd -mcs5000_ts -mcs7780 -mcs7830 -mcs_touchkey -mct_u232 -md-cluster -md4 -mdacon -mdc800 -mdio -mdio-bcm-unimac -mdio-bitbang -mdio-gpio -mdio-xgene -me4000 -me_daq -media -megaraid -megaraid_mbox -megaraid_mm -megaraid_sas -mei -mei-me -mei-txe -mei_phy -memory-notifier-error-inject -memstick -men_z135_uart -men_z188_adc -mena21_wdt -menf21bmc -menf21bmc_hwmon -menf21bmc_wdt -metro-usb -metronomefb -meye -mf6x4 -mga -michael_mic -micrel -microchip -microread -microread_i2c -microread_mei -microtek -mii -minix -mip6 -mite -mixcomwd -mk712 -mkiss -mlx4_core -mlx4_en -mlx4_ib -mlx5_core -mlx5_ib -mlx90614 -mlxsw_core -mlxsw_pci -mma8450 -mma8452 -mma9551 -mma9551_core -mma9553 -mmc35240 -mmc_block -mms114 -mn88472 -mn88473 -mos7720 -mos7840 -mostcore -moxa -mpc624 -mpl115 -mpl3115 -mpls_gso -mpls_iptunnel -mpls_router -mpoa -mpr121_touchkey -mpt3sas -mptbase -mptctl -mptfc -mptlan -mptsas -mptscsih -mptspi -mpu3050 -mrf24j40 -mrp -ms5611_core -ms5611_i2c -ms5611_spi -ms5637 -ms_block -ms_sensors_i2c -msdos -msi-laptop -msi-wmi -msi001 -msi2500 -msp3400 -mspro_block -msr -mt2060 -mt2063 -mt20xx -mt2131 -mt2266 -mt29f_spinand -mt312 -mt352 -mt6311-regulator -mt6397-core -mt6397-regulator -mt7601u -mt9m001 -mt9m111 -mt9t031 -mt9t112 -mt9v011 -mt9v022 -mtd -mtd_blkdevs -mtd_dataflash -mtdblock -mtdblock_ro -mtdoops -mtdram -mtdswap -mtip32xx -mtk-sd -mtouch -multipath -multiq3 -musb_hdrc -mv_u3d_core -mv_udc -mvmdio -mvsas -mvumi -mwave -mwifiex -mwifiex_pcie -mwifiex_sdio -mwifiex_usb -mwl8k -mxb -mxc4005 -mxl111sf-demod -mxl111sf-tuner -mxl301rf -mxl5005s -mxl5007t -mxm-wmi -mxser -mxuport -myri10ge -n2 -n411 -n_gsm -n_hdlc -n_r3964 -n_tracerouter -n_tracesink -nand -nand_bch -nand_ecc -nand_ids -nandsim -national -natsemi -nau7802 -navman -nb8800 -nbd -nci -nci_spi -nci_uart -ncpfs -nct6683 -nct6775 -nct7802 -nct7904 -nd_blk -nd_btt -nd_pmem -ne -ne2k-pci -neofb -net1080 -net2272 -net2280 -netconsole -netjet -netlink_diag -netrom -nettel -netup-unidvb -netxen_nic -newtonkbd -nf_conntrack -nf_conntrack_amanda -nf_conntrack_broadcast -nf_conntrack_ftp -nf_conntrack_h323 -nf_conntrack_ipv4 -nf_conntrack_ipv6 -nf_conntrack_irc -nf_conntrack_netbios_ns -nf_conntrack_netlink -nf_conntrack_pptp -nf_conntrack_proto_dccp -nf_conntrack_proto_gre -nf_conntrack_proto_sctp -nf_conntrack_proto_udplite -nf_conntrack_sane -nf_conntrack_sip -nf_conntrack_snmp -nf_conntrack_tftp -nf_defrag_ipv4 -nf_defrag_ipv6 -nf_dup_ipv4 -nf_dup_ipv6 -nf_log_arp -nf_log_bridge -nf_log_common -nf_log_ipv4 -nf_log_ipv6 -nf_nat -nf_nat_amanda -nf_nat_ftp -nf_nat_h323 -nf_nat_ipv4 -nf_nat_ipv6 -nf_nat_irc -nf_nat_masquerade_ipv4 -nf_nat_masquerade_ipv6 -nf_nat_pptp -nf_nat_proto_dccp -nf_nat_proto_gre -nf_nat_proto_sctp -nf_nat_proto_udplite -nf_nat_redirect -nf_nat_sip -nf_nat_snmp_basic -nf_nat_tftp -nf_reject_ipv4 -nf_reject_ipv6 -nf_synproxy_core -nf_tables -nf_tables_arp -nf_tables_bridge -nf_tables_inet -nf_tables_ipv4 -nf_tables_ipv6 -nf_tables_netdev -nfc -nfc_digital -nfcmrvl -nfcmrvl_i2c -nfcmrvl_spi -nfcmrvl_uart -nfcmrvl_usb -nfcsim -nfcwilink -nfit -nfnetlink -nfnetlink_acct -nfnetlink_cthelper -nfnetlink_cttimeout -nfnetlink_log -nfnetlink_queue -nfs -nfs_acl -nfs_layout_flexfiles -nfs_layout_nfsv41_files -nfsd -nfsv2 -nfsv3 -nfsv4 -nft_chain_nat_ipv4 -nft_chain_nat_ipv6 -nft_chain_route_ipv4 -nft_chain_route_ipv6 -nft_compat -nft_counter -nft_ct -nft_dup_ipv4 -nft_dup_ipv6 -nft_exthdr -nft_hash -nft_limit -nft_log -nft_masq -nft_masq_ipv4 -nft_masq_ipv6 -nft_meta -nft_meta_bridge -nft_nat -nft_queue -nft_rbtree -nft_redir -nft_redir_ipv4 -nft_redir_ipv6 -nft_reject -nft_reject_bridge -nft_reject_inet -nft_reject_ipv4 -nft_reject_ipv6 -nftl -ngene -nhc_dest -nhc_fragment -nhc_hop -nhc_ipv6 -nhc_mobility -nhc_routing -nhc_udp -ni65 -ni_6527 -ni_65xx -ni_660x -ni_670x -ni_at_a2150 -ni_at_ao -ni_atmio -ni_atmio16d -ni_daq_700 -ni_daq_dio24 -ni_labpc -ni_labpc_common -ni_labpc_cs -ni_labpc_isadma -ni_labpc_pci -ni_mio_cs -ni_pcidio -ni_pcimio -ni_tio -ni_tiocmd -ni_usb6501 -nicstar -nilfs2 -niu -nlmon -nls_ascii -nls_cp1250 -nls_cp1251 -nls_cp1255 -nls_cp737 -nls_cp775 -nls_cp850 -nls_cp852 -nls_cp855 -nls_cp857 -nls_cp860 -nls_cp861 -nls_cp862 -nls_cp863 -nls_cp864 -nls_cp865 -nls_cp866 -nls_cp869 -nls_cp874 -nls_cp932 -nls_cp936 -nls_cp949 -nls_cp950 -nls_euc-jp -nls_iso8859-13 -nls_iso8859-14 -nls_iso8859-15 -nls_iso8859-2 -nls_iso8859-3 -nls_iso8859-4 -nls_iso8859-5 -nls_iso8859-6 -nls_iso8859-7 -nls_iso8859-9 -nls_koi8-r -nls_koi8-ru -nls_koi8-u -nls_utf8 -nmclan_cs -nosy -notifier-error-inject -nouveau -nozomi -ns558 -ns83820 -nsc-ircc -nsc_gpio -nsp32 -nsp_cs -ntb -ntb_netdev -ntb_pingpong -ntb_tool -ntb_transport -ntc_thermistor -ntfs -null_blk -nuvoton-cir -nv_tco -nvidiafb -nvme -nvmem_core -nvram -nxp-nci -nxp-nci_i2c -nxt200x -nxt6000 -objlayoutdriver -ocfb -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -ocrdma -of_xilinx_wdt -old_belkin-sir -omfs -omninet -on20 -on26 -onenand -opencores-kbd -openvswitch -oprofile -opt3001 -opticon -option -or51132 -or51211 -orinoco -orinoco_cs -orinoco_nortel -orinoco_plx -orinoco_tmd -orinoco_usb -osd -osdblk -osst -oti6858 -ov2640 -ov5642 -ov6650 -ov7640 -ov7670 -ov772x -ov9640 -ov9740 -overlay -oxu210hp-hcd -p4-clockmod -p54common -p54pci -p54spi -p54usb -p8022 -p8023 -pa12203001 -padlock-aes -padlock-sha -palmas-pwrbutton -palmas-regulator -panasonic-laptop -pandora_bl -panel -paride -parkbd -parport -parport_ax88796 -parport_cs -parport_pc -parport_serial -pas16 -pata_acpi -pata_ali -pata_amd -pata_artop -pata_atiixp -pata_atp867x -pata_cmd640 -pata_cmd64x -pata_cs5520 -pata_cs5530 -pata_cs5535 -pata_cs5536 -pata_cypress -pata_efar -pata_hpt366 -pata_hpt37x -pata_hpt3x2n -pata_hpt3x3 -pata_isapnp -pata_it8213 -pata_it821x -pata_jmicron -pata_legacy -pata_marvell -pata_mpiix -pata_netcell -pata_ninja32 -pata_ns87410 -pata_ns87415 -pata_oldpiix -pata_opti -pata_optidma -pata_pcmcia -pata_pdc2027x -pata_pdc202xx_old -pata_piccolo -pata_platform -pata_radisys -pata_rdc -pata_rz1000 -pata_sc1200 -pata_sch -pata_serverworks -pata_sil680 -pata_sl82c105 -pata_triflex -pata_via -pc110pad -pc300too -pc87360 -pc8736x_gpio -pc87413_wdt -pc87427 -pcap-regulator -pcap_keys -pcap_ts -pcbc -pcbit -pcd -pcf50633 -pcf50633-adc -pcf50633-backlight -pcf50633-charger -pcf50633-gpio -pcf50633-input -pcf50633-regulator -pcf8574_keypad -pcf8591 -pch_can -pch_dma -pch_gbe -pch_phub -pch_uart -pch_udc -pci -pci-stub -pci200syn -pcips2 -pcl711 -pcl724 -pcl726 -pcl730 -pcl812 -pcl816 -pcl818 -pcm3724 -pcmad -pcmcia -pcmcia_core -pcmcia_rsrc -pcmciamtd -pcmda12 -pcmmio -pcmuio -pcnet32 -pcnet_cs -pcrypt -pcspkr -pcwd -pcwd_pci -pcwd_usb -pd -pd6729 -pda_power -pdc_adma -peak_pci -peak_pcmcia -peak_usb -pegasus -penmount -percpu_test -pf -pfuze100-regulator -pg -phantom -phonet -phram -phy-bcm-kona-usb2 -phy-exynos-usb2 -phy-gpio-vbus-usb -phy-isp1301 -phy-pxa-28nm-hsic -phy-pxa-28nm-usb2 -phy-tahvo -phy-tusb1210 -physmap -pinctrl-broxton -pinctrl-intel -pinctrl-sunrisepoint -pixcir_i2c_ts -pkcs7_test_key -pktcdvd -pktgen -pl2303 -plat-ram -plat_nand -platform_lcd -plip -plusb -pluto2 -plx_pci -pm-notifier-error-inject -pm2fb -pm3fb -pm80xx -pm8941-wled -pmbus -pmbus_core -pmc551 -pmcraid -pn533 -pn544 -pn544_i2c -pn544_mei -pn_pep -poly1305_generic -port100 -powermate -powernow-k6 -powernow-k7 -powr1220 -ppa -ppdev -ppp_async -ppp_deflate -ppp_mppe -ppp_synctty -pppoatm -pppoe -pppox -pps-gpio -pps-ldisc -pps_core -pps_parport -pptp -prism2_usb -processor_thermal_device -ps2mult -psmouse -psnap -pt -pti -ptp -ptp_pch -pulsedlight-lidar-lite-v2 -punit_atom_debug -pvpanic -pvrusb2 -pwc -pwm-beeper -pwm-lp3943 -pwm-lpss -pwm-lpss-pci -pwm-lpss-platform -pwm-pca9685 -pwm-regulator -pwm-twl -pwm-twl-led -pwm_bl -pxa27x_udc -qat_dh895xcc -qat_dh895xccvf -qcaux -qcom-spmi-iadc -qcom-spmi-vadc -qcom_spmi-regulator -qcserial -qed -qede -qinfo_probe -qla1280 -qla2xxx -qla3xxx -qla4xxx -qlcnic -qlge -qlogic_cs -qlogicfas -qlogicfas408 -qm1d1c0042 -qmi_wwan -qnx4 -qnx6 -qsemi -qt1010 -qt1070 -qt2160 -quatech2 -quatech_daqp_cs -quota_tree -quota_v1 -quota_v2 -qxl -r128 -r592 -r6040 -r8152 -r8169 -r8188eu -r8192e_pci -r8192u_usb -r820t -r82600_edac -r852 -r8712u -r8723au -r8a66597-hcd -r8a66597-udc -radeon -radeonfb -radio-aimslab -radio-aztech -radio-bcm2048 -radio-cadet -radio-gemtek -radio-i2c-si470x -radio-isa -radio-keene -radio-ma901 -radio-maxiradio -radio-miropcm20 -radio-mr800 -radio-platform-si4713 -radio-raremono -radio-rtrack2 -radio-sf16fmi -radio-sf16fmr2 -radio-shark -radio-si476x -radio-tea5764 -radio-terratec -radio-timb -radio-trust -radio-typhoon -radio-usb-si470x -radio-usb-si4713 -radio-wl1273 -radio-zoltrix -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid6test -raid_class -ramoops -raw -ray_cs -rbd -rbtree_test -rc-adstech-dvb-t-pci -rc-alink-dtu-m -rc-anysee -rc-apac-viewcomp -rc-asus-pc39 -rc-asus-ps3-100 -rc-ati-tv-wonder-hd-600 -rc-ati-x10 -rc-avermedia -rc-avermedia-a16d -rc-avermedia-cardbus -rc-avermedia-dvbt -rc-avermedia-m135a -rc-avermedia-m733a-rm-k6 -rc-avermedia-rm-ks -rc-avertv-303 -rc-azurewave-ad-tu700 -rc-behold -rc-behold-columbus -rc-budget-ci-old -rc-cinergy -rc-cinergy-1400 -rc-core -rc-delock-61959 -rc-dib0700-nec -rc-dib0700-rc5 -rc-digitalnow-tinytwin -rc-digittrade -rc-dm1105-nec -rc-dntv-live-dvb-t -rc-dntv-live-dvbt-pro -rc-dvbsky -rc-em-terratec -rc-encore-enltv -rc-encore-enltv-fm53 -rc-encore-enltv2 -rc-evga-indtube -rc-eztv -rc-flydvb -rc-flyvideo -rc-fusionhdtv-mce -rc-gadmei-rm008z -rc-genius-tvgo-a11mce -rc-gotview7135 -rc-hauppauge -rc-imon-mce -rc-imon-pad -rc-iodata-bctv7e -rc-it913x-v1 -rc-it913x-v2 -rc-kaiomy -rc-kworld-315u -rc-kworld-pc150u -rc-kworld-plus-tv-analog -rc-leadtek-y04g0051 -rc-lirc -rc-lme2510 -rc-loopback -rc-manli -rc-medion-x10 -rc-medion-x10-digitainer -rc-medion-x10-or2x -rc-msi-digivox-ii -rc-msi-digivox-iii -rc-msi-tvanywhere -rc-msi-tvanywhere-plus -rc-nebula -rc-nec-terratec-cinergy-xs -rc-norwood -rc-npgtech -rc-pctv-sedna -rc-pinnacle-color -rc-pinnacle-grey -rc-pinnacle-pctv-hd -rc-pixelview -rc-pixelview-002t -rc-pixelview-mk12 -rc-pixelview-new -rc-powercolor-real-angel -rc-proteus-2309 -rc-purpletv -rc-pv951 -rc-rc6-mce -rc-real-audio-220-32-keys -rc-reddo -rc-snapstream-firefly -rc-streamzap -rc-su3000 -rc-tbs-nec -rc-technisat-ts35 -rc-technisat-usb2 -rc-terratec-cinergy-c-pci -rc-terratec-cinergy-s2-hd -rc-terratec-cinergy-xs -rc-terratec-slim -rc-terratec-slim-2 -rc-tevii-nec -rc-tivo -rc-total-media-in-hand -rc-total-media-in-hand-02 -rc-trekstor -rc-tt-1500 -rc-twinhan-dtv-cab-ci -rc-twinhan1027 -rc-videomate-m1f -rc-videomate-s350 -rc-videomate-tv-pvr -rc-winfast -rc-winfast-usbii-deluxe -rc5t583-regulator -rdc321x-southbridge -rdma_cm -rdma_ucm -rds -rds_rdma -rds_tcp -realtek -redboot -redrat3 -reed_solomon -regmap-spmi -regulator-haptic -reiserfs -remoteproc -retu-mfd -retu-pwrbutton -retu_wdt -rfc1051 -rfc1201 -rfcomm -rfd_ftl -rfkill-gpio -rfkill-regulator -rio-scan -rio500 -rionet -rivafb -rj54n1cb0c -rmd128 -rmd160 -rmd256 -rmd320 -rn5t618 -rn5t618-regulator -rn5t618_wdt -rndis_host -rndis_wlan -rocket -rohm_bu21023 -romfs -rose -rotary_encoder -rp2 -rpcrdma -rpcsec_gss_krb5 -rpr0521 -rrpc -rsi_91x -rsi_sdio -rsi_usb -rsxx -rt2400pci -rt2500pci -rt2500usb -rt2800lib -rt2800mmio -rt2800pci -rt2800usb -rt2x00lib -rt2x00mmio -rt2x00pci -rt2x00usb -rt5033 -rt5033-regulator -rt5033_battery -rt61pci -rt73usb -rt9455_charger -rtc-88pm80x -rtc-88pm860x -rtc-ab-b5ze-s3 -rtc-ab3100 -rtc-abx80x -rtc-bq32k -rtc-bq4802 -rtc-da9052 -rtc-da9055 -rtc-da9063 -rtc-ds1286 -rtc-ds1305 -rtc-ds1307 -rtc-ds1343 -rtc-ds1347 -rtc-ds1374 -rtc-ds1390 -rtc-ds1511 -rtc-ds1553 -rtc-ds1672 -rtc-ds1685 -rtc-ds1742 -rtc-ds2404 -rtc-ds3232 -rtc-ds3234 -rtc-em3027 -rtc-fm3130 -rtc-hid-sensor-time -rtc-isl12022 -rtc-isl12057 -rtc-isl1208 -rtc-lp8788 -rtc-m41t80 -rtc-m41t93 -rtc-m41t94 -rtc-m48t35 -rtc-m48t59 -rtc-m48t86 -rtc-max6900 -rtc-max6902 -rtc-max8907 -rtc-max8925 -rtc-max8997 -rtc-max8998 -rtc-mc13xxx -rtc-mcp795 -rtc-mrst -rtc-msm6242 -rtc-mt6397 -rtc-palmas -rtc-pcap -rtc-pcf2123 -rtc-pcf2127 -rtc-pcf50633 -rtc-pcf85063 -rtc-pcf8523 -rtc-pcf8563 -rtc-pcf8583 -rtc-r9701 -rtc-rc5t583 -rtc-rp5c01 -rtc-rs5c348 -rtc-rs5c372 -rtc-rv3029c2 -rtc-rv8803 -rtc-rx4581 -rtc-rx8025 -rtc-rx8581 -rtc-s35390a -rtc-s5m -rtc-stk17ta8 -rtc-tps6586x -rtc-tps65910 -rtc-tps80031 -rtc-twl -rtc-v3020 -rtc-wm831x -rtc-wm8350 -rtc-x1205 -rtd520 -rti800 -rti802 -rtl2830 -rtl2832 -rtl2832_sdr -rtl8150 -rtl8187 -rtl8188ee -rtl818x_pci -rtl8192c-common -rtl8192ce -rtl8192cu -rtl8192de -rtl8192ee -rtl8192se -rtl8723-common -rtl8723ae -rtl8723be -rtl8821ae -rtl8xxxu -rtl_pci -rtl_usb -rtllib -rtllib_crypt_ccmp -rtllib_crypt_tkip -rtllib_crypt_wep -rtlwifi -rts5208 -rtsx_pci -rtsx_pci_ms -rtsx_pci_sdmmc -rtsx_usb -rtsx_usb_ms -rtsx_usb_sdmmc -rx51_battery -rxkad -s1d13xxxfb -s2250 -s2255drv -s2io -s2mpa01 -s2mps11 -s3fb -s3fwrn5 -s3fwrn5_i2c -s526 -s5h1409 -s5h1411 -s5h1420 -s5m8767 -s626 -s6e63m0 -s921 -saa6588 -saa6752hs -saa7110 -saa7115 -saa7127 -saa7134 -saa7134-alsa -saa7134-dvb -saa7134-empress -saa7134-go7007 -saa7146 -saa7146_vv -saa7164 -saa717x -saa7185 -saa7706h -safe_serial -salsa20-i586 -salsa20_generic -samsung-keypad -samsung-laptop -samsung-q10 -samsung-sxgbe -sata_inic162x -sata_mv -sata_nv -sata_promise -sata_qstor -sata_sil -sata_sil24 -sata_sis -sata_svw -sata_sx4 -sata_uli -sata_via -sata_vsc -savage -savagefb -sb1000 -sbc60xxwdt -sbc7240_wdt -sbc8360 -sbc_epx_c3 -sbc_fitpc2_wdt -sbc_gxx -sbni -sbp_target -sbs -sbs-battery -sbshc -sc -sc1200wdt -sc16is7xx -sc92031 -sca3000 -scb2_flash -scc -sch311x_wdt -sch5627 -sch5636 -sch56xx-common -sch_atm -sch_cbq -sch_choke -sch_codel -sch_drr -sch_dsmark -sch_fq -sch_fq_codel -sch_gred -sch_hfsc -sch_hhf -sch_htb -sch_ingress -sch_mqprio -sch_multiq -sch_netem -sch_pie -sch_plug -sch_prio -sch_qfq -sch_red -sch_sfb -sch_sfq -sch_tbf -sch_teql -scsi_debug -scsi_dh_alua -scsi_dh_emc -scsi_dh_hp_sw -scsi_dh_rdac -scsi_transport_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -scsi_transport_srp -sctp -sctp_probe -scx200 -scx200_acb -scx200_docflash -scx200_gpio -scx200_hrt -scx200_wdt -sdhci -sdhci-acpi -sdhci-pci -sdhci-pltfm -sdio_uart -sdla -sdricoh_cs -sealevel -sedlbauer_cs -seed -sensorhub -seqiv -ser_gigaset -serial2002 -serial_cs -serio_raw -sermouse -serpent-sse2-i586 -serpent_generic -serport -ses -sfc -sfi-cpufreq -sh_veu -shark2 -shpchp -sht15 -sht21 -shtc1 -si2157 -si2165 -si2168 -si21xx -si4713 -si476x-core -si7005 -si7020 -sidewinder -sierra -sierra_net -sil164 -sim710 -sir-dev -sis -sis-agp -sis190 -sis5595 -sis900 -sisfb -sisusbvga -sit -sja1000 -sja1000_isa -sja1000_platform -skfp -skge -sky2 -sky81452 -sky81452-backlight -sky81452-regulator -sl811-hcd -sl811_cs -slcan -slicoss -slip -slram -sm501 -sm501fb -sm712fb -sm750fb -sm_common -sm_ftl -smb347-charger -smc-ultra -smc9194 -smc91c92_cs -smipcie -smm665 -smsc -smsc-ircc2 -smsc37b787_wdt -smsc47b397 -smsc47m1 -smsc47m192 -smsc75xx -smsc911x -smsc9420 -smsc95xx -smscufx -smsdvb -smsmdtv -smssdio -smsusb -snd -snd-ac97-codec -snd-ad1816a -snd-ad1848 -snd-ad1889 -snd-adlib -snd-ak4113 -snd-ak4114 -snd-ak4117 -snd-ak4xxx-adda -snd-ali5451 -snd-aloop -snd-als100 -snd-als300 -snd-als4000 -snd-asihpi -snd-atiixp -snd-atiixp-modem -snd-au8810 -snd-au8820 -snd-au8830 -snd-aw2 -snd-azt1605 -snd-azt2316 -snd-azt2320 -snd-azt3328 -snd-bcd2000 -snd-bebob -snd-bt87x -snd-ca0106 -snd-cmi8328 -snd-cmi8330 -snd-cmipci -snd-compress -snd-cs4231 -snd-cs4236 -snd-cs4281 -snd-cs46xx -snd-cs5530 -snd-cs5535audio -snd-cs8427 -snd-ctxfi -snd-darla20 -snd-darla24 -snd-dice -snd-dummy -snd-echo3g -snd-emu10k1 -snd-emu10k1-synth -snd-emu10k1x -snd-emu8000-synth -snd-emux-synth -snd-ens1370 -snd-ens1371 -snd-es1688 -snd-es1688-lib -snd-es18xx -snd-es1938 -snd-es1968 -snd-firewire-digi00x -snd-firewire-lib -snd-firewire-tascam -snd-fireworks -snd-fm801 -snd-gina20 -snd-gina24 -snd-gus-lib -snd-gusclassic -snd-gusextreme -snd-gusmax -snd-hda-codec -snd-hda-codec-analog -snd-hda-codec-ca0110 -snd-hda-codec-ca0132 -snd-hda-codec-cirrus -snd-hda-codec-cmedia -snd-hda-codec-conexant -snd-hda-codec-generic -snd-hda-codec-hdmi -snd-hda-codec-idt -snd-hda-codec-realtek -snd-hda-codec-si3054 -snd-hda-codec-via -snd-hda-core -snd-hda-ext-core -snd-hda-intel -snd-hdsp -snd-hdspm -snd-hrtimer -snd-hwdep -snd-i2c -snd-ice1712 -snd-ice1724 -snd-ice17xx-ak4xxx -snd-indigo -snd-indigodj -snd-indigodjx -snd-indigoio -snd-indigoiox -snd-intel-sst-acpi -snd-intel-sst-core -snd-intel-sst-pci -snd-intel8x0 -snd-intel8x0m -snd-interwave -snd-interwave-stb -snd-isight -snd-jazz16 -snd-korg1212 -snd-layla20 -snd-layla24 -snd-lola -snd-lx6464es -snd-maestro3 -snd-mia -snd-miro -snd-mixart -snd-mixer-oss -snd-mona -snd-mpu401 -snd-mpu401-uart -snd-msnd-classic -snd-msnd-lib -snd-msnd-pinnacle -snd-mtpav -snd-mts64 -snd-nm256 -snd-opl3-lib -snd-opl3-synth -snd-opl3sa2 -snd-opl4-lib -snd-opl4-synth -snd-opti92x-ad1848 -snd-opti92x-cs4231 -snd-opti93x -snd-oxfw -snd-oxygen -snd-oxygen-lib -snd-pcm -snd-pcm-dmaengine -snd-pcm-oss -snd-pcsp -snd-pcxhr -snd-pdaudiocf -snd-portman2x4 -snd-pt2258 -snd-rawmidi -snd-riptide -snd-rme32 -snd-rme96 -snd-rme9652 -snd-sb-common -snd-sb16 -snd-sb16-csp -snd-sb16-dsp -snd-sb8 -snd-sb8-dsp -snd-sbawe -snd-sc6000 -snd-scs1x -snd-seq -snd-seq-device -snd-seq-dummy -snd-seq-midi -snd-seq-midi-emul -snd-seq-midi-event -snd-seq-virmidi -snd-serial-u16550 -snd-sis7019 -snd-soc-ac97 -snd-soc-adau1701 -snd-soc-ak4104 -snd-soc-ak4554 -snd-soc-ak4613 -snd-soc-ak4642 -snd-soc-ak5386 -snd-soc-alc5623 -snd-soc-core -snd-soc-cs35l32 -snd-soc-cs4265 -snd-soc-cs4270 -snd-soc-cs4271 -snd-soc-cs4271-i2c -snd-soc-cs4271-spi -snd-soc-cs42l51 -snd-soc-cs42l51-i2c -snd-soc-cs42l52 -snd-soc-cs42l56 -snd-soc-cs42l73 -snd-soc-cs42xx8 -snd-soc-cs42xx8-i2c -snd-soc-cs4349 -snd-soc-dmic -snd-soc-es8328 -snd-soc-fsl-asrc -snd-soc-fsl-esai -snd-soc-fsl-sai -snd-soc-fsl-spdif -snd-soc-fsl-ssi -snd-soc-gtm601 -snd-soc-imx-audmux -snd-soc-max98090 -snd-soc-pcm1681 -snd-soc-pcm1792a-codec -snd-soc-pcm512x -snd-soc-pcm512x-i2c -snd-soc-pcm512x-spi -snd-soc-rl6231 -snd-soc-rl6347a -snd-soc-rt286 -snd-soc-rt5631 -snd-soc-rt5640 -snd-soc-rt5645 -snd-soc-rt5660 -snd-soc-rt5670 -snd-soc-sgtl5000 -snd-soc-si476x -snd-soc-sigmadsp -snd-soc-sigmadsp-i2c -snd-soc-simple-card -snd-soc-skl -snd-soc-skl-ipc -snd-soc-skl_rt286 -snd-soc-sn95031 -snd-soc-spdif-rx -snd-soc-spdif-tx -snd-soc-ssm2602 -snd-soc-ssm2602-i2c -snd-soc-ssm2602-spi -snd-soc-ssm4567 -snd-soc-sst-acpi -snd-soc-sst-baytrail-pcm -snd-soc-sst-broadwell -snd-soc-sst-byt-max98090-mach -snd-soc-sst-byt-rt5640-mach -snd-soc-sst-bytcr-rt5640 -snd-soc-sst-bytcr-rt5660 -snd-soc-sst-cht-bsw-max98090_ti -snd-soc-sst-cht-bsw-rt5645 -snd-soc-sst-cht-bsw-rt5672 -snd-soc-sst-dsp -snd-soc-sst-haswell -snd-soc-sst-haswell-pcm -snd-soc-sst-ipc -snd-soc-sst-mfld-platform -snd-soc-sta32x -snd-soc-sta350 -snd-soc-sti-sas -snd-soc-tas2552 -snd-soc-tas5086 -snd-soc-tas571x -snd-soc-tfa9879 -snd-soc-tlv320aic23 -snd-soc-tlv320aic23-i2c -snd-soc-tlv320aic23-spi -snd-soc-tlv320aic31xx -snd-soc-tlv320aic3x -snd-soc-tpa6130a2 -snd-soc-ts3a227e -snd-soc-wm8510 -snd-soc-wm8523 -snd-soc-wm8580 -snd-soc-wm8711 -snd-soc-wm8728 -snd-soc-wm8731 -snd-soc-wm8737 -snd-soc-wm8741 -snd-soc-wm8750 -snd-soc-wm8753 -snd-soc-wm8770 -snd-soc-wm8776 -snd-soc-wm8804 -snd-soc-wm8804-i2c -snd-soc-wm8804-spi -snd-soc-wm8903 -snd-soc-wm8962 -snd-soc-wm8978 -snd-soc-xtfpga-i2s -snd-sonicvibes -snd-sscape -snd-tea6330t -snd-timer -snd-trident -snd-ua101 -snd-usb-6fire -snd-usb-audio -snd-usb-caiaq -snd-usb-hiface -snd-usb-line6 -snd-usb-pod -snd-usb-podhd -snd-usb-toneport -snd-usb-us122l -snd-usb-usx2y -snd-usb-variax -snd-usbmidi-lib -snd-util-mem -snd-via82xx -snd-via82xx-modem -snd-virmidi -snd-virtuoso -snd-vx-lib -snd-vx222 -snd-vxpocket -snd-wavefront -snd-wss-lib -snd-ymfpci -snic -soc_button_array -soc_camera -soc_camera_platform -soc_mediabus -softdog -softing -softing_cs -solo6x10 -solos-pci -sony-btf-mpx -sony-laptop -sonypi -soundcore -sp2 -sp5100_tco -sp8870 -sp887x -spaceball -spaceorb -sparse-keymap -spcp8x5 -speakup -speakup_acntpc -speakup_acntsa -speakup_apollo -speakup_audptr -speakup_bns -speakup_decext -speakup_decpc -speakup_dectlk -speakup_dtlk -speakup_dummy -speakup_keypc -speakup_ltlk -speakup_soft -speakup_spkout -speakup_txprt -spectrum_cs -speedfax -speedtch -spi-altera -spi-bitbang -spi-butterfly -spi-cadence -spi-dln2 -spi-dw -spi-dw-midpci -spi-dw-mmio -spi-gpio -spi-lm70llp -spi-nor -spi-oc-tiny -spi-pxa2xx-pci -spi-pxa2xx-platform -spi-sc18is602 -spi-tle62x0 -spi-topcliff-pch -spi-xcomm -spi-zynqmp-gqspi -spi_ks8995 -spidev -spmi -sr9700 -sr9800 -ssb -ssb-hcd -ssfdc -ssp_accel_sensor -ssp_gyro_sensor -ssp_iio -sst25l -sstfb -ssu100 -ssv_dnp -st -st-nci -st-nci_i2c -st-nci_spi -st1232 -st21nfca_hci -st21nfca_i2c -st_accel -st_accel_i2c -st_accel_spi -st_drv -st_gyro -st_gyro_i2c -st_gyro_spi -st_magn -st_magn_i2c -st_magn_spi -st_pressure -st_pressure_i2c -st_pressure_spi -st_sensors -st_sensors_i2c -st_sensors_spi -starfire -stb0899 -stb6000 -stb6100 -ste10Xp -ste_modem_rproc -stex -stinger -stir4200 -stk1160 -stk3310 -stk8312 -stk8ba50 -stkwebcam -stm_console -stm_core -stmmac -stmmac-platform -stowaway -stp -streamzap -stv0288 -stv0297 -stv0299 -stv0367 -stv0900 -stv090x -stv6110 -stv6110x -sun4i-codec -sundance -sungem -sungem_phy -sunhme -suni -sunkbd -sunrpc -sur40 -surfacepro3_button -svgalib -sworks-agp -sx8 -sx8654 -sx9500 -sym53c416 -sym53c500_cs -sym53c8xx -symbolserial -synaptics_i2c -synaptics_i2c_rmi4 -synaptics_usb -synclink -synclink_cs -synclink_gt -synclinkmp -syscopyarea -sysfillrect -sysimgblt -sysv -t128 -t1isa -t1pci -t5403 -target_core_file -target_core_iblock -target_core_mod -target_core_pscsi -target_core_user -tc1100-wmi -tc74 -tc90522 -tca6416-keypad -tca8418_keypad -tcic -tcm_fc -tcm_loop -tcm_qla2xxx -tcm_usb_gadget -tcp_bic -tcp_cdg -tcp_dctcp -tcp_diag -tcp_highspeed -tcp_htcp -tcp_hybla -tcp_illinois -tcp_lp -tcp_probe -tcp_scalable -tcp_vegas -tcp_veno -tcp_westwood -tcp_yeah -tcrypt -tcs3414 -tcs3472 -tda10021 -tda10023 -tda10048 -tda1004x -tda10071 -tda10086 -tda18212 -tda18218 -tda18271 -tda18271c2dd -tda665x -tda7432 -tda8083 -tda8261 -tda826x -tda827x -tda8290 -tda9840 -tda9887 -tda998x -tdfx -tdfxfb -tdo24m -tea -tea575x -tea5761 -tea5767 -tea6415c -tea6420 -team -team_mode_activebackup -team_mode_broadcast -team_mode_loadbalance -team_mode_random -team_mode_roundrobin -tef6862 -tehuti -tekram-sir -teles_cs -teranetics -test-hexdump -test-kstrtox -test-string_helpers -test_bpf -test_firmware -test_module -test_power -test_printf -test_static_key_base -test_static_keys -test_udelay -test_user_copy -tg3 -tgr192 -thinkpad_acpi -thmc50 -thunderbolt -ti-adc081c -ti-adc128s052 -ti_am335x_adc -ti_am335x_tsc -ti_am335x_tscadc -ti_dac7512 -ti_usb_3410_5052 -tifm_7xx1 -tifm_core -tifm_ms -tifm_sd -timb_dma -timberdale -timblogiw -timbuart -timeriomem-rng -tipc -tlan -tlclk -tm6000 -tm6000-alsa -tm6000-dvb -tmdc -tmem -tmp006 -tmp102 -tmp103 -tmp401 -tmp421 -toim3232-sir -topstar-laptop -torture -toshiba-wmi -toshiba_acpi -toshiba_bluetooth -toshiba_haps -toshsd -touchit213 -touchright -touchwin -tpci200 -tpm-rng -tpm_atmel -tpm_crb -tpm_i2c_atmel -tpm_i2c_infineon -tpm_i2c_nuvoton -tpm_infineon -tpm_nsc -tpm_st33zp24 -tpm_st33zp24_i2c -tpm_st33zp24_spi -tps40422 -tps51632-regulator -tps6105x -tps6105x-regulator -tps62360-regulator -tps65010 -tps65023-regulator -tps6507x -tps6507x-regulator -tps6507x-ts -tps65090-charger -tps65090-regulator -tps65217_bl -tps65217_charger -tps65218 -tps65218-pwrbutton -tps6524x-regulator -tps6586x-regulator -tps65910-regulator -tps65912-regulator -tps80031-regulator -trancevibrator -trf7970a -tridentfb -ts2020 -ts_bm -ts_fsm -ts_kmp -tsc2004 -tsc2005 -tsc2007 -tsc200x-core -tsc40 -tscan1 -tsi568 -tsi57x -tsi721_mport -tsl2550 -tsl2563 -tsl2583 -tsl2x7x_core -tsl4531 -tsys01 -tsys02d -ttm -ttpci-eeprom -ttusb_dec -ttusbdecfe -ttusbir -tua6100 -tua9001 -tulip -tuner -tuner-simple -tuner-types -tuner-xc2028 -tunnel4 -tunnel6 -turbografx -tvaudio -tveeprom -tvp5150 -tw2804 -tw68 -tw9903 -tw9906 -tw9910 -twidjoy -twl-regulator -twl4030-madc -twl4030-madc-hwmon -twl4030-pwrbutton -twl4030-vibra -twl4030_charger -twl4030_keypad -twl4030_madc_battery -twl4030_wdt -twl6030-gpadc -twl6040-vibra -twofish-i586 -twofish_common -twofish_generic -typhoon -u132-hcd -u14-34f -uPD98402 -u_ether -u_serial -uartlite -uas -ubi -ubifs -ucb1400_core -ucb1400_ts -ucd9000 -ucd9200 -uda1342 -udc-core -udf -udl -udlfb -udp_diag -udp_tunnel -ueagle-atm -ufs -ufshcd -ufshcd-pci -ufshcd-pltfrm -uhid -uio -uio_aec -uio_cif -uio_dmem_genirq -uio_mf624 -uio_netx -uio_pci_generic -uio_pdrv_genirq -uio_pruss -uio_sercos3 -uli526x -ulpi -ultrastor -umc -umem -ums-alauda -ums-cypress -ums-datafab -ums-eneub6250 -ums-freecom -ums-isd200 -ums-jumpshot -ums-karma -ums-onetouch -ums-realtek -ums-sddr09 -ums-sddr55 -ums-usbat -unix_diag -upd64031a -upd64083 -us5182d -usb-serial-simple -usb-storage -usb3503 -usb8xxx -usb_8dev -usb_debug -usb_f_acm -usb_f_ecm -usb_f_ecm_subset -usb_f_eem -usb_f_fs -usb_f_hid -usb_f_mass_storage -usb_f_midi -usb_f_ncm -usb_f_obex -usb_f_phonet -usb_f_printer -usb_f_rndis -usb_f_serial -usb_f_ss_lb -usb_f_uac1 -usb_f_uac2 -usb_f_uvc -usb_gigaset -usb_wwan -usbatm -usbdux -usbduxfast -usbduxsigma -usbhid -usbip-core -usbip-host -usbkbd -usblcd -usbled -usblp -usbmon -usbmouse -usbnet -usbserial -usbsevseg -usbtest -usbtmc -usbtouchscreen -usbtv -usbvision -usdhi6rol0 -userio -userspace-consumer -ushc -usnic_verbs -uss720 -uvcvideo -uvesafb -uwb -v4l2-common -v4l2-dv-timings -v4l2-flash-led-class -v4l2-mem2mem -vboxguest -vboxsf -vboxvideo -vcan -vcnl4000 -ven_rsi_91x -ven_rsi_sdio -ven_rsi_usb -ves1820 -ves1x93 -veth -vfio -vfio-pci -vfio_iommu_type1 -vfio_virqfd -vga16fb -vgastate -vgem -vgg2432a4 -vhci-hcd -vhost -vhost_net -vhost_scsi -via -via-camera -via-cputemp -via-ircc -via-rhine -via-rng -via-sdmmc -via-velocity -via686a -via_wdt -viafb -video -videobuf-core -videobuf-dma-contig -videobuf-dma-sg -videobuf-dvb -videobuf-vmalloc -videobuf2-core -videobuf2-dma-contig -videobuf2-dma-sg -videobuf2-dvb -videobuf2-memops -videobuf2-v4l2 -videobuf2-vmalloc -videocodec -videodev -vim2m -viperboard -viperboard_adc -virt-dma -virtio-gpu -virtio-rng -virtio_input -virtio_scsi -virtual -visor -vitesse -vivid -vlsi_ir -vmac -vme_ca91cx42 -vme_pio2 -vme_tsi148 -vme_user -vme_vmivme7805 -vmk80xx -vmlfb -vmw_balloon -vmw_pvscsi -vmw_vmci -vmw_vsock_vmci_transport -vmwgfx -vmxnet3 -vp27smpx -vport-geneve -vport-gre -vport-vxlan -vpx3220 -vrf -vringh -vsock -vsxxxaa -vt1211 -vt6655_stage -vt6656_stage -vt8231 -vt8623fb -vub300 -vx855 -vxge -vxlan -vz89x -w1-gpio -w1_bq27000 -w1_ds2406 -w1_ds2408 -w1_ds2413 -w1_ds2423 -w1_ds2431 -w1_ds2433 -w1_ds2760 -w1_ds2780 -w1_ds2781 -w1_ds28e04 -w1_smem -w1_therm -w5100 -w5300 -w6692 -w83627ehf -w83627hf -w83627hf_wdt -w83781d -w83791d -w83792d -w83793 -w83795 -w83877f_wdt -w83977af_ir -w83977f_wdt -w83l785ts -w83l786ng -wacom -wacom_i2c -wacom_serial4 -wacom_w8001 -wafer5823wdt -walkera0701 -wanxl -warrior -wbsd -wcn36xx -wd -wd7000 -wd719x -wdt -wdt87xx_i2c -wdt_pci -whc-rc -whci -whci-hcd -whiteheat -wil6210 -wimax -winbond-840 -winbond-cir -wire -wishbone-serial -wistron_btns -wl1251 -wl1251_sdio -wl1251_spi -wl1273-core -wl12xx -wl18xx -wl3501_cs -wlcore -wlcore_sdio -wlcore_spi -wm831x-dcdc -wm831x-hwmon -wm831x-isink -wm831x-ldo -wm831x-on -wm831x-ts -wm831x_backup -wm831x_bl -wm831x_power -wm831x_wdt -wm8350-hwmon -wm8350-regulator -wm8350_power -wm8350_wdt -wm8400-regulator -wm8739 -wm8775 -wm8994-core -wm8994-irq -wm8994-regmap -wm8994-regulator -wm97xx-ts -wmi -wp512 -wusb-cbaf -wusb-wa -wusbcore -x25 -x25_asy -x38_edac -x86_pkg_temp_thermal -x_tables -xc4000 -xc5000 -xcbc -xen-blkback -xen-evtchn -xen-fbfront -xen-gntalloc -xen-gntdev -xen-kbdfront -xen-netback -xen-pciback -xen-pcifront -xen-privcmd -xen-scsiback -xen-scsifront -xen-tpmfront -xen_wdt -xenfs -xfrm4_mode_beet -xfrm4_mode_transport -xfrm4_mode_tunnel -xfrm4_tunnel -xfrm6_mode_beet -xfrm6_mode_ro -xfrm6_mode_transport -xfrm6_mode_tunnel -xfrm6_tunnel -xfrm_algo -xfrm_ipcomp -xfrm_user -xfs -xgifb -xhci-plat-hcd -xillybus_core -xillybus_pcie -xirc2ps_cs -xircom_cb -xor -xpad -xr_usb_serial_common -xsens_mt -xt_AUDIT -xt_CHECKSUM -xt_CLASSIFY -xt_CONNSECMARK -xt_CT -xt_DSCP -xt_HL -xt_HMARK -xt_IDLETIMER -xt_LED -xt_LOG -xt_NETMAP -xt_NFLOG -xt_NFQUEUE -xt_RATEEST -xt_REDIRECT -xt_SECMARK -xt_TCPMSS -xt_TCPOPTSTRIP -xt_TEE -xt_TPROXY -xt_TRACE -xt_addrtype -xt_bpf -xt_cgroup -xt_cluster -xt_comment -xt_connbytes -xt_connlabel -xt_connlimit -xt_connmark -xt_conntrack -xt_cpu -xt_dccp -xt_devgroup -xt_dscp -xt_ecn -xt_esp -xt_hashlimit -xt_helper -xt_hl -xt_ipcomp -xt_iprange -xt_ipvs -xt_l2tp -xt_length -xt_limit -xt_mac -xt_mark -xt_multiport -xt_nat -xt_nfacct -xt_osf -xt_owner -xt_physdev -xt_pkttype -xt_policy -xt_quota -xt_rateest -xt_realm -xt_recent -xt_sctp -xt_set -xt_socket -xt_state -xt_statistic -xt_string -xt_tcpmss -xt_tcpudp -xt_time -xt_u32 -xtkbd -xts -xusbatm -xz_dec_test -yam -yealink -yellowfin -yenta_socket -yurex -z85230 -zatm -zaurus -zd1201 -zd1211rw -zforce_ts -zhenhua -zl10036 -zl10039 -zl10353 -zl6100 -zlib -zr36016 -zr36050 -zr36060 -zr36067 -zr364xx -zram -zynq-fpga reverted: --- linux-raspi2-4.4.0/debian.master/abi/4.4.0-89.112/i386/lowlatency +++ linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-89.112/i386/lowlatency @@ -1,18868 +0,0 @@ -EXPORT_SYMBOL arch/x86/kvm/kvm 0x1fc7a1d4 kvm_cpu_has_pending_timer -EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x254e5667 scx200_gpio_base -EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x35a3c008 scx200_gpio_configure -EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x8cfa375c scx200_gpio_shadow -EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x907665bd scx200_cb_base -EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe -EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble -EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL crypto/mcryptd 0x2d7e229d mcryptd_arm_flusher -EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/acpi/nfit 0xa7e9a159 to_nfit_uuid -EXPORT_SYMBOL drivers/acpi/video 0x6de7f7ff acpi_video_get_backlight_type -EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister -EXPORT_SYMBOL drivers/acpi/video 0x7eac0974 acpi_video_get_edid -EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register -EXPORT_SYMBOL drivers/acpi/video 0xe92ca535 acpi_video_set_dmi_backlight_type -EXPORT_SYMBOL drivers/atm/suni 0x1a126d2a suni_init -EXPORT_SYMBOL drivers/atm/uPD98402 0xa68ecfb2 uPD98402_init -EXPORT_SYMBOL drivers/bcma/bcma 0x1cf5c26d bcma_core_dma_translation -EXPORT_SYMBOL drivers/bcma/bcma 0x3d598999 bcma_core_irq -EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str -EXPORT_SYMBOL drivers/block/paride/paride 0x2ce10b0c pi_connect -EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x435808ac pi_init -EXPORT_SYMBOL drivers/block/paride/paride 0x49df667c pi_read_block -EXPORT_SYMBOL drivers/block/paride/paride 0x4ec39485 pi_write_block -EXPORT_SYMBOL drivers/block/paride/paride 0x51e6f7e0 pi_release -EXPORT_SYMBOL drivers/block/paride/paride 0x5b3726cf paride_unregister -EXPORT_SYMBOL drivers/block/paride/paride 0xa2dd3d4a pi_write_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xad6d1014 paride_register -EXPORT_SYMBOL drivers/block/paride/paride 0xb041c162 pi_do_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -EXPORT_SYMBOL drivers/block/paride/paride 0xbd7aa79f pi_disconnect -EXPORT_SYMBOL drivers/block/paride/paride 0xcd35b418 pi_read_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xf49a56aa pi_schedule_claimed -EXPORT_SYMBOL drivers/bluetooth/btbcm 0xdec1a6bd btbcm_patchram -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1315bf96 ipmi_smi_add_proc_entry -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fae3bac ipmi_addr_src_to_str -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x83f0dca0 ipmi_get_smi_info -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xcf0eaab4 ipmi_smi_watcher_register -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd679a613 ipmi_register_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf7b28dd8 ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg -EXPORT_SYMBOL drivers/char/nsc_gpio 0x428dbcdd nsc_gpio_read -EXPORT_SYMBOL drivers/char/nsc_gpio 0xd329fb63 nsc_gpio_dump -EXPORT_SYMBOL drivers/char/nsc_gpio 0xf6316cdf nsc_gpio_write -EXPORT_SYMBOL drivers/char/nvram 0x0f28cb91 nvram_read_byte -EXPORT_SYMBOL drivers/char/nvram 0x17ff2c1d __nvram_read_byte -EXPORT_SYMBOL drivers/char/nvram 0x2adec1e0 __nvram_check_checksum -EXPORT_SYMBOL drivers/char/nvram 0x7da28f12 nvram_check_checksum -EXPORT_SYMBOL drivers/char/nvram 0x9ce3f83f nvram_write_byte -EXPORT_SYMBOL drivers/char/nvram 0xa8813189 __nvram_write_byte -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x2f3471c5 st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x771f35b3 st33zp24_remove -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x8166f092 st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xd3ccca7c st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x3726a2b4 xillybus_init_endpoint -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x7c50154d xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xf6aeb4ea xillybus_endpoint_remove -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x1a1203fb dw_dma_get_src_addr -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x1f633947 dw_dma_get_dst_addr -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xac717d84 dw_dma_cyclic_free -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xbe4ab300 dw_dma_cyclic_prep -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xdf6f6889 dw_dma_cyclic_start -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xfa75bf36 dw_dma_cyclic_stop -EXPORT_SYMBOL drivers/edac/edac_core 0x2cb58c78 edac_mc_find -EXPORT_SYMBOL drivers/firewire/firewire-core 0x02c2f355 fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0x04dd92ce fw_core_add_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x05fd7a99 fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0efe8286 fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0x17510e7f fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x34283399 fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3f4a7df9 fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x41369a00 fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d5d4eca fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x627a51e3 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x668a6eaf fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6805e640 fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x69ab1b78 fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6e840ac3 fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7cfb726c fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e431b14 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8033824e fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0x909d9b77 fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x98a1b894 fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9c1048c3 fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa9c886d5 fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbb8bf30a fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd152357e fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd41f028b fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd962a2b5 fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0xdb491cfa fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0xea19a149 fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0xec9c1418 fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf3b931e8 fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firmware/dcdbas 0xa75079d6 dcdbas_smi_request -EXPORT_SYMBOL drivers/fmc/fmc 0x1c5735af fmc_show_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0x1c5de978 fmc_driver_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0x3f7a354f fmc_reprogram -EXPORT_SYMBOL drivers/fmc/fmc 0x4255cb73 fmc_device_unregister_n -EXPORT_SYMBOL drivers/fmc/fmc 0x8f14bcdf fmc_device_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0x93aed2be fmc_find_sdb_device -EXPORT_SYMBOL drivers/fmc/fmc 0x98a7123d fmc_device_register -EXPORT_SYMBOL drivers/fmc/fmc 0xa7243c45 fmc_device_register_n -EXPORT_SYMBOL drivers/fmc/fmc 0xbaf9cafc fmc_scan_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0xeaf2b64d fmc_free_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0xffc12ffa fmc_driver_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x001f70c0 drm_mode_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x02971593 drm_legacy_addbufs_pci -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05595b75 drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x063f1af2 drm_mode_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0667c653 drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x067696a5 drm_mm_dump_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0x072852c3 drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07b9f35e drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fe5aa4 drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x085dcd1f drm_prime_sg_to_page_addr_arrays -EXPORT_SYMBOL drivers/gpu/drm/drm 0x099d6938 drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a54df81 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a62c136 drm_legacy_ioremap_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a65bbe5 drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a69e2dd drm_agp_unbind -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b514f20 drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cca192e drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d6ae3e0 drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eb9432c drm_mode_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f0a8a4b drm_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f5cb4e9 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f9bc673 drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fccafb1 drm_global_item_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd26d62 drm_legacy_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1128922c drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0x116b2473 drm_agp_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0x125913c6 drm_legacy_ioremap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1333e73c drm_legacy_idlelock_take -EXPORT_SYMBOL drivers/gpu/drm/drm 0x134e0702 drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x13891dde drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x13d535da drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15286ecb drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x156a93d2 drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1579accd drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1624c771 drm_platform_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16ab825a drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16cf20ff drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19edb63a drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a1c2d6c drm_modeset_backoff_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a724c1a drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a9ac711 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b0f05a2 drm_bridge_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b9ec7a9 drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bae409f drm_bridge_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c466c63 drm_gem_dumb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1eb4d839 drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1feaac99 drm_pcie_get_max_link_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x200d6e66 drm_legacy_idlelock_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2179dfbb drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x218c9872 drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2213bdc8 drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23d1bcf3 drm_pci_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2523fb34 drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25507d22 drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2649706b drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26d65fba drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26f88c05 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2767e003 drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28844574 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x289eb389 drm_pci_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28a8aff4 drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28d900dd drm_vblank_pre_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b1a4635 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bed3bbf drm_legacy_rmmap_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bfa3ab8 drm_legacy_ioremapfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c451e8e drm_bridge_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c505b7d drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c870e26 drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x310da1af drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31da2a6f drm_vblank_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3406fa91 drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34176c21 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3437de52 drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x346127a7 drm_global_item_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3486cba4 drm_connector_unplug_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x362f694e drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3879856d drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38d77ee0 drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x39988d25 drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a305852 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3baaed43 drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bc1f00a drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c2e5f97 drm_calc_vbltimestamp_from_scanoutpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c33ca56 drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3db531a8 drm_agp_bind_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e42c008 drm_select_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f0c0afc drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x40d1febc drm_mode_validate_basic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41cdc5ac drm_property_unreference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4218c63e drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x425fea93 drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0x434d04c5 drm_get_pci_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x46374329 drm_pcie_get_speed_cap_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x475c6d98 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x478a8aa4 drm_panel_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47b77195 drm_bridge_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47bb3c76 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4964b2db drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a0b5599 drm_agp_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c5bef41 drm_atomic_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d660afa drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d74eb4d drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dabafa9 drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dd87dd1 drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f59fb0b drm_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fde40d4 drm_atomic_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51c683ae drm_framebuffer_reference -EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x529e6504 drm_modeset_unlock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53e84e6c drm_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53edbc86 drm_property_reference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55b71ba7 drm_mode_create_dirty_info_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5682197c drm_mode_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58a59542 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58c4414d drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59b54b22 drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59d364ab drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59f4e454 drm_agp_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b73ca09 drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c363a7e drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c9adcef drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cca3515 drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5df12de7 drm_dev_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5dff594d drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f46ccd2 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6013ed0f drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x627c64a3 drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62e88eca drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x637e69b4 drm_legacy_rmmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x63efee3e drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x642eefac drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64e4bc47 drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x650b8bf9 drm_dev_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65f2fde7 drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65f7ef88 drm_vblank_no_hw_counter -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66843f55 drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x671d6a10 drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x671e529e drm_mode_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6885a171 drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6996a597 drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6abe894e drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b8b2d45 drm_atomic_legacy_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f4670e4 drm_pci_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x70632cb2 drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71eb7870 drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7354d42b drm_vblank_post_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74143bf2 drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76c21c72 drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x790e02e1 drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0x797b293a drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b0df464 drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7be32e00 drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c29ed10 drm_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d5f2a40 drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d7552fa drm_legacy_addmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e41bf2a drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fa206aa drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fa9d7b3 drm_agp_bind -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80ce4d72 drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81209905 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8121c0f8 drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82d9dfd8 drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83f08b02 drm_agp_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8434f219 drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x84b19c7e drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x84d7c712 drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x85035913 drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x88590b96 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89a78f0f drm_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89f44d2b drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b414b1b drm_modeset_legacy_acquire_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c5c21e9 drm_mode_hsync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8df16d4f drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e9ed882 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eb9c81b drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90030e61 drm_agp_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x912e710e drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95c9236a drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x97c83d8a drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9898e95b drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x98f1ab59 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x992131b9 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x995280af drm_modeset_lock_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9986bf6c drm_ati_pcigart_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99ece71c drm_crtc_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ca3ff9d drm_platform_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cae155c drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d0fdc71 drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e1b780d drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0c1a015 drm_modeset_lock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa10d4f1b drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa13cd453 drm_atomic_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa18ee000 drm_edid_to_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c228a0 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3018f28 drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4034720 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5bd8bad drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7234876 drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa98219e8 drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9acdf68 drm_agp_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xacca57a7 drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xacd3ab54 drm_mode_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xadb07e36 drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf216467 drm_pci_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb33becf4 drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3779731 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3c0177a drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb40d9904 drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5dd0648 drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb64d4e99 drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6b2c69c drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba4607b9 drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb0571a7 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb2c2ffd drm_plane_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd86591c drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbedb2b83 drm_atomic_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf58db60 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0717d30 drm_bridge_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc10d7597 drm_pci_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc532f657 drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc63a0bcb drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc65e2bd7 drm_irq_install -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6b75045 drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8656ca5 drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc91d2f60 drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc93f6238 drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb653437 drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc1ded28 drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdad0316 drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce4b0b86 drm_bridge_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf8e9765 drm_atomic_clean_old_fb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd175c3c0 drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1b932fb drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd20fec6b drm_encoder_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd28c3234 drm_irq_uninstall -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd410df54 drm_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd58cb85a drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5a6051f drm_panel_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5c10181 drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd75f48fe drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd77bfcc9 drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd90ba58a drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9ce027d drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdabb9674 drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb03e0ae drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb5969ee drm_legacy_addbufs_agp -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc8fe2a4 drm_unplug_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd36235d drm_ati_pcigart_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xddb5e66d drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde60a27c drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdff69fad drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe11f0644 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1d5358d drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2531be6 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2e8be5b drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe49b57f0 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4e17069 drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe522d4ba drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5506c68 drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe569980f drm_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5de1eb1 drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe92f9fb1 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe931e130 drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9ada530 drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9e5cfdd drm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xecb71bfa drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef003c59 drm_connector_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf04d0da9 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf06d7289 drm_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf07d2f13 drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf191fdd8 drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1f4e7e2 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf39e5da3 drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4b95636 drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5820ea7 drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7bafbb4 drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7e7ae1d drm_crtc_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf81e44ba drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9d8109f drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb3af9aa drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb7067f0 drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbf34871 drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbfa60f4 drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfee166ab drm_framebuffer_unreference -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffe0af23 drm_legacy_getsarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00b5d817 drm_plane_helper_check_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00c8d1fe drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00f48216 drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01e96344 drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02521cd1 drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x036f4f11 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x037cd5e1 drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04a3a3f4 drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ae9bf06 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b4ee744 drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b8b647e drm_primary_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0bb9069e drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0bb98991 drm_dp_link_power_down -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c7179c3 drm_fb_helper_unlink_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d1c81eb drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d20a779 drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0de7425b drm_plane_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e427f82 drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0eeb2918 drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10a16f8f drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14301b50 __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17cb4f35 drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1877ca47 drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18a4162c drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ce15bb3 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x211153ad drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a7a9624 drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34168c1b drm_has_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34361074 drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34e7a03f drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c713a02 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ce973d7 drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e9cac04 drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x401491b9 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41631036 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41ce953a drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4476f422 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4844225c drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a744fee drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4fc6ad34 drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x506895f2 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x509cc846 drm_dp_aux_register_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51d496e9 drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x536aaaef drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x544cb75d drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54b4a6f8 drm_atomic_helper_legacy_gamma_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57c2016f drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e4105e2 drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x618fe926 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62bc9a1a drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6400cb62 drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x660411c2 drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6906686b drm_primary_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ce1c174 drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f2be92c drm_helper_crtc_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7374f9a9 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75d6c677 drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x777115cf __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78254064 __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78bf1ee3 drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bdb5fe1 drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c1f9850 drm_dp_mst_port_has_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f64ff44 drm_fb_helper_fill_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8268dd2e drm_helper_probe_single_connector_modes_nomerge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82c06f49 drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84bbf712 drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86220cb8 drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x886f5e33 drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b86b628 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c6bf956 drm_fb_helper_single_add_all_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c9363b8 drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ca8cefd drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8fc467f1 drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x904180db drm_fb_helper_fill_fix -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91e6d678 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9491117a drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x958acec8 drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x966bd849 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97c727ad drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c9ed865 drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa12d771b drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa19468ca drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa33899ec drm_fb_helper_add_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4f222c6 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa597a55c __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa636e1e0 drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa91ddad8 drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9d267bb drm_helper_crtc_mode_set_base -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa05773a drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaaf53d76 drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaafaa3af drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab950d1a drm_fb_helper_release_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaba40067 drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xafe3e995 drm_dp_link_probe -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb16bb068 drm_dp_link_configure -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3cafd85 drm_atomic_helper_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5b7c701 drm_dp_aux_unregister_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb69d8283 drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6c8ee1b drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7e54594 drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8124eb7 drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb88f5fe9 drm_atomic_helper_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb16cdf8 drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbdd9e1f7 drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfe17c2f drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc16ff8ee drm_plane_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1b5d4d0 drm_dp_link_power_up -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc223d30e drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4b81c0b drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5db6f7b drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6ac1d1c drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6ef5e8a drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc76d433e __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc84851f0 drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc84ecb18 drm_helper_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8f34044 __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9142a68 drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9215cd7 drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9e95617 drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc126ad4 drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xced14220 drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0eb2502 drm_atomic_helper_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd10057c4 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd32676e5 drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3b47c12 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd684bbe2 drm_atomic_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdaf5512a drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe059dca8 drm_kms_helper_poll_enable_locked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4436826 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7564d2d drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7b051da drm_atomic_helper_framebuffer_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe91931ff drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb2de872 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeea4f4b3 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf108e12d drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1ad6477 drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6b5caf1 drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf735722f drm_pick_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8a72c5f drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa9ca4cd drm_fb_helper_remove_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb80dea7 drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffc66f66 drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x05c66deb ttm_bo_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0bab7f47 ttm_read_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0eff5ff7 ttm_bo_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132b05be ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x15a1f5cb ttm_object_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x16470b62 ttm_prime_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1940e4cd ttm_write_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x19eb1c33 ttm_mem_io_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1b109e30 ttm_bo_synccpu_write_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1eabf673 ttm_mem_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x212da2a4 ttm_agp_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x213305dd ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2241c9ed ttm_bo_init_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x22ec80fe ttm_vt_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x24765c33 ttm_read_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x266d8a60 ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x28fe6cf6 ttm_bo_add_to_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2aa81ce8 ttm_bo_move_ttm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2bf5737f ttm_bo_del_sub_from_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2cfc471b ttm_tt_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x32f2fd91 ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x367bedee ttm_dma_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x388595eb ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3babd517 ttm_page_alloc_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3c9985f5 ttm_bo_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x515c7aa2 ttm_bo_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x57740361 ttm_mem_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x59c1c236 ttm_fbdev_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cf59609 ttm_bo_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67b1d568 ttm_bo_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x68a5815a ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x69cbc4dc ttm_mem_global_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c8dc6bf ttm_vt_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6e875de9 ttm_lock_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6f61e4b5 ttm_agp_tt_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x77db7f68 ttm_bo_clean_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x79929145 ttm_mem_io_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d556712 ttm_bo_evict_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x81a58602 ttm_bo_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x836d8fd0 ttm_suspend_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x861ddd31 ttm_dma_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86b7e5a5 ttm_mem_io_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89bc37bd ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8bfa85a1 ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d22da47 ttm_bo_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8e9c9959 ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x91ac4fb5 ttm_bo_synccpu_write_grab -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x92dae9ad ttm_bo_dma_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x946d9ea3 ttm_write_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x95304034 ttm_bo_swapout_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x983dd465 ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d0eb91 ttm_ref_object_add -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa503b530 ttm_tt_set_placement_caching -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb3c1280a ttm_mem_io_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb450808c ttm_bo_manager_func -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbca82ef4 ttm_bo_mem_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbd7271fa ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc9a1bfd9 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcaf172fd ttm_pool_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf49f835 ttm_suspend_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf5cdde0 ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xddb733d1 ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xde12ed06 ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe4af5d7d ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe782f4a6 ttm_agp_tt_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeabf2086 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xec9b658e ttm_mem_global_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf86b299b ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbdf48fe ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfef32d54 ttm_pool_populate -EXPORT_SYMBOL drivers/hv/hv_vmbus 0xb99f265d vmbus_recvpacket -EXPORT_SYMBOL drivers/hv/hv_vmbus 0xccaa4611 vmbus_sendpacket_ctl -EXPORT_SYMBOL drivers/hv/hv_vmbus 0xdea56a49 vmbus_sendpacket -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0e2a6864 sch56xx_read_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0f5877d4 sch56xx_read_virtual_reg16 -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe5022f95 sch56xx_read_virtual_reg12 -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xed1d2a08 sch56xx_write_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xfeaa4006 sch56xx_watchdog_register -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x5904e9c3 i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x70d3b6c7 i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xe367ae0f i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x71ce23b2 i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x835b20f3 i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xa5a05953 amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0455482d mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x45509bac mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x57927224 mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6ec4d1f5 mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7a05b37d mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8a3e6c71 mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x904f4085 mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x93aaa8b9 mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa648d57f mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa813131b mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xaac7e902 mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xcd195f95 mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xce1d5bf6 mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd48676b0 mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe105d206 mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xff3eb428 mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x04a4f0cc st_accel_common_probe -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xa2cd9372 st_accel_common_remove -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xc546edd4 iio_triggered_buffer_setup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xfe1b1754 iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x3b15611c iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x5eed82a2 devm_iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xa77ce1bc iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xe1f799a0 devm_iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x1784f8fe hid_sensor_write_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x37e29607 hid_sensor_read_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x4d6b4a90 hid_sensor_parse_common_attributes -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x60c9f91f hid_sensor_read_poll_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xa3939614 hid_sensor_write_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xa4bf7641 hid_sensor_read_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x85e0885e hid_sensor_setup_trigger -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xbab6b14d hid_sensor_pm_ops -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xd6e8cede hid_sensor_power_state -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xec443175 hid_sensor_remove_trigger -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x23a54fc5 ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3bd889d0 ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3ecb10ee ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x4b8d48e7 ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x4d6ec77a ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8ad21cb4 ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xcf9b0e32 ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xd295bd09 ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xe6ef36d8 ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x14e5953e ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x521d5db7 ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x94701a8c ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xce642725 ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xeeab8420 ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x23a3f0f9 ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x86c1ef18 ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x92510b0d ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0c7a2c93 st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x23af4b67 st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x495222e9 st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4b548639 st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x53044272 st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x56730d07 st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5fbca739 st_sensors_check_device_support -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x78b70a30 st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9cd0d072 st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9dc63224 st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa95db46a st_sensors_get_buffer_element -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xab7ee179 st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb9fac031 st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xcc4fc1dd st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xcccbb522 st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd59fe045 st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe424a84a st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x8ddec7a8 st_sensors_match_acpi_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xd0d19a67 st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xa47a87fd st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x7c0ad57c st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xe82fd854 st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x2daf312d hts221_probe -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x76d270db adis_enable_irq -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xec74788f adis_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/industrialio 0x1a62bd14 iio_triggered_buffer_postenable -EXPORT_SYMBOL drivers/iio/industrialio 0x1e8f506e iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x22068f10 iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x367b6bda iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0x3b8c6ef7 iio_triggered_buffer_predisable -EXPORT_SYMBOL drivers/iio/industrialio 0x3c3c4ba5 iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x4a3a2665 iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0x69972c25 iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0x942cae6e iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0xaa463f38 iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xae7172e0 iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0xc31a1604 iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0xcc3b3757 iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0xd77e99d3 iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0xdb81453e iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xdeda2f40 iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xf3f47627 iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x1a11af76 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x402e3be8 iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xe67c54e8 st_magn_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xf40e5b74 st_magn_common_probe -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xd0c799af ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x89c04e22 st_press_common_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xe5f238b3 st_press_common_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x049ace30 rdma_addr_find_smac_by_sgid -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1375905e rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1edc4064 rdma_addr_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x829bc119 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x88b2f18d rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x9d9cabc5 rdma_addr_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xe75b27ae rdma_copy_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x00a206b2 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x19405cac ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x236e33b8 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x343cfa68 ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3abd5525 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x417b3dc4 ib_send_cm_apr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x64a1fc63 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69403791 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6ba90cde cm_class -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7a3ed8d4 ib_send_cm_lap -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8979358c ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x93c21aaa ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa54a9f87 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xad120b1e ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd4259197 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd5ca19b5 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe0991f60 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfc474d47 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07263cda ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e7b6dbf ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f615637 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x101370b7 ib_get_dma_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10355291 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11e491bb ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1270b63f ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1aedb29d ib_destroy_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x206e347b ib_query_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22223038 ib_modify_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22e09727 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2469e949 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25cea9ee ib_destroy_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2698614e ib_find_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b1fc2bc ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b36dddb ib_get_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2dea9b0c ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e90ce4e ib_alloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fbe84d6 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3184ad20 ib_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x356b0ed0 ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37668d82 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x383f2949 ib_destroy_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x388ccb30 ibnl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b97322b ibnl_add_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x448ef10f ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48a1a731 ib_dealloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e7bc1fd ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4eb30108 ib_create_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4fa5122d ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x562cf585 ibnl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x579a1507 ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e2d3614 ib_init_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e6fe7d4 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6010e807 ib_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6048b3b4 ib_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6dca62e1 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73ecadc0 ib_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x770daef1 ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77193c21 ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77d01fa3 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a9e41a8 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x842dc4ff ib_umem_odp_map_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85d3a017 ib_create_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89dae69b ib_alloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92f4985c ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96d80f0f ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9878d9a4 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f8c741e ib_dealloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa69012c8 ib_fmr_pool_map_phys -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa83d9083 ib_create_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa288799 ib_dealloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xadc14af9 ib_create_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae8cf97d ib_umem_page_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2f502c5 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4e70899 ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6965a59 ib_find_cached_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7e15705 ib_destroy_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc86ff1e ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd466301 ib_fmr_pool_unmap -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbdebcfb3 ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbec68bbb ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4035108 ib_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc55a0515 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca1ee526 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcaea3a7b ib_query_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb4767ba ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb821230 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf763eda ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2dabe41 ib_find_gid_by_filter -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd870ed41 ib_dealloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd91a38d3 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb2c0a9b ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde69eb65 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1e8b94f ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe662388a ib_resolve_eth_dmac -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe94d3975 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9caa492 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeae3d360 ib_dereg_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4ed71a6 ib_get_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7577894 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8588fd2 ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf88a412e ib_alloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x18b00402 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2ad63917 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x32f38174 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x52e597a5 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x611f126b ib_redirect_mad_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x72435af9 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x8a46edc1 ib_register_mad_snoop -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x9ecfcb88 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xb5b28b75 ib_cancel_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc42f82a2 ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xcc589648 ib_process_mad_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xe79d1636 ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xefbee6cb ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x05f51c4a ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x082f04d3 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x1cf86852 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x287d1e73 ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x356d8747 ib_sa_service_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x567b118c ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x770592c5 ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xa6469b0d ib_init_ah_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xae8ff231 ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xe6150284 ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xecbc928a ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x577315ef ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9dd8a261 ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x01982323 iwpm_register_pid_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x15c82ec2 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3e124c4b iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x51478fd3 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7daed754 iwpm_mapping_error_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x85bc59e2 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa19e49d7 iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xade9400a iwpm_add_and_query_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xaf5f4d6b iwpm_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb7ec77c3 iwpm_add_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd804eef8 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xea39df3d iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf18e4f75 iwpm_ack_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfb76b24c iwpm_remote_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfbd75a47 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0071bb5e rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x015041cd rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0a6b9f94 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0e62b76c rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3d897d13 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x69e8a324 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x75ba7c0f rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x76ab22bf rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x79b37b41 rdma_set_ib_paths -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb31fa16e rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xba7553c6 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc42df211 rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcc7e62a1 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe079e815 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xeb0b1a0a rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xef035fe1 rdma_create_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf0335747 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf1f4f4b1 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf696801d rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf79d91ff rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf9bb28b1 rdma_connect -EXPORT_SYMBOL drivers/input/gameport/gameport 0x1ff6caea gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0x2be28207 __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x661e01ee gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x6a5f550c gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0x876c6cd0 gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0xb30dcc10 gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0xc262b428 gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0xe096b96c __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xedf7e829 gameport_unregister_port -EXPORT_SYMBOL drivers/input/input-polldev 0x46ea379a input_free_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x74d32ac6 input_unregister_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x761bc259 devm_input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xb4502e91 input_register_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xf68275a3 input_allocate_polled_device -EXPORT_SYMBOL drivers/input/matrix-keymap 0x1caa6772 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x1d0c24e3 ad714x_enable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xe2b7c0c6 ad714x_disable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xe7c3ee58 ad714x_probe -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x3780b207 cma3000_init -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/sparse-keymap 0x187855fc sparse_keymap_free -EXPORT_SYMBOL drivers/input/sparse-keymap 0x294abe64 sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0x54990ab2 sparse_keymap_setup -EXPORT_SYMBOL drivers/input/sparse-keymap 0x5caf3b55 sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x89710808 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xea3242da sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x95db72e8 ad7879_pm_ops -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xd84c6199 ad7879_probe -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x02cbfb97 capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x483c666e capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6a59a9dd capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7def4a37 attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7f7d8fb1 capi_ctr_resume_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x85dea34e capi20_put_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa7c4fd6c capi_message2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaaa1cdf6 capi_ctr_suspend_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc10fe128 cdebbuf_free -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xdd530708 detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe48b0172 capi20_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8ad9bd1 capi_cmsg2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf67713e5 capi20_register -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0748f302 avmcard_dma_free -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x635a2291 b1_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x696317ee b1_getrevision -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x70d56069 b1_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x75878719 b1_load_config -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x7731e5f9 b1ctl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x7fc73e33 b1_free_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x9e4342e1 b1_alloc_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xa0d4f64c b1_load_t4file -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xaed7223b b1_parse_version -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xc963cef5 avmcard_dma_alloc -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd54b7f98 b1_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd985bc6f b1_loaded -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd9b7c9a9 b1_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xed8adf4c b1_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x43d10c74 b1dma_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x6a5dfb9d b1dma_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x6f9c1417 b1dma_reset -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x7094bc56 t1pci_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x85081828 b1dma_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x8827d05b b1dma_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xcd52c9c8 b1dmactl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xf448591b b1dma_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xfeab5710 b1pciv4_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0x29562993 b1pcmcia_delcard -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x1b4e65fa mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x2e35c329 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xabf2302d mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xf71350e8 mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x35e045b6 mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xe93d52db mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6fe1ca04 FsmDelTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9f987c85 FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xa1bc94b9 FsmInitTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xe9c6f9ea hisax_init_pcmcia -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x0c632481 isacsx_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x1bb4eb12 isacsx_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3e5da0c7 isac_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x57427696 isac_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x97611639 isac_init -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x453020b8 register_isdn -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xa441bb1d isdn_ppp_unregister_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xc68f667a isdn_ppp_register_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1aa45768 get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x22bda571 mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x28e0994b recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29391345 queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2bab496d bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x338467c2 mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x38e03c3a dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x44d4fc72 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x48b22db6 mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5abcb211 mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x634159ba recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x64b46a8d recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6ead1f25 mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x868a2b8f get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8aa0fbcb create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x989d1c23 mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x994cba89 recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbafc0ffd mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc6284a33 mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcd3c93d7 mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd17b98f4 recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd463a44f bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfb13d68d mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/md/bcache/bcache 0x10dc0d06 bch_bset_insert -EXPORT_SYMBOL drivers/md/bcache/bcache 0x6223abc4 closure_sync -EXPORT_SYMBOL drivers/md/bcache/bcache 0x66d28e22 bch_btree_iter_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x6969b5d8 bch_bset_init_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7b55ca4f bch_bset_fix_invalidated_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7f2a56c0 bch_bset_sort_state_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x9e8b3cee bch_btree_keys_alloc -EXPORT_SYMBOL drivers/md/bcache/bcache 0xab2d2b84 bch_btree_insert_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0xad29a6f5 bch_bset_build_written_tree -EXPORT_SYMBOL drivers/md/bcache/bcache 0xaec09a2b bch_bkey_try_merge -EXPORT_SYMBOL drivers/md/bcache/bcache 0xaf77343c bch_btree_keys_free -EXPORT_SYMBOL drivers/md/bcache/bcache 0xba2b5a3b closure_put -EXPORT_SYMBOL drivers/md/bcache/bcache 0xbc10b909 closure_sub -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc04554f7 bch_btree_iter_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0xca580595 bch_btree_keys_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0xcfd815d6 closure_wait -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe47e0829 __bch_bset_search -EXPORT_SYMBOL drivers/md/bcache/bcache 0xecf7cef9 bch_btree_sort_lazy -EXPORT_SYMBOL drivers/md/bcache/bcache 0xfbf30701 bch_btree_sort_partial -EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers -EXPORT_SYMBOL drivers/md/dm-bufio 0xa7978f56 dm_bufio_forget -EXPORT_SYMBOL drivers/md/dm-log 0x5206141f dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0x53a51b07 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0x5e1b55f4 dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0xa0ebc203 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x1477999e dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0x299a78cf dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x45c1d740 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x986e8a2c dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0x9f134877 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0xfa67fbb6 dm_exception_store_create -EXPORT_SYMBOL drivers/md/raid456 0xcce1455e raid5_set_cache_size -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0a1cacea flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1465f183 flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1ba6cdf4 flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x324b860a flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3f32d569 flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4b53947d flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4ed3bec8 flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6b03c751 flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x92d7f545 flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x954e5050 flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb7913675 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe962524d flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf9a9280a flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update -EXPORT_SYMBOL drivers/media/common/cx2341x 0x30cb4cd7 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x39c25b47 cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0x90c416a2 cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cx2341x 0x931b6074 cx2341x_handler_setup -EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0xeefc639d cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x320ff03a cypress_load_firmware -EXPORT_SYMBOL drivers/media/common/tveeprom 0xcce128bf tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/common/tveeprom 0xfbc749ed tveeprom_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x09ee27c1 dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1e5f0bdd dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2013f532 dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2907e8ed dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2a79a27b dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2cf288a0 dvb_ringbuffer_flush_spinlock_wakeup -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3ee8cfed dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x43afa556 dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4672414b dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4c23f0e6 dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4dc6b123 dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5411b29c dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x58c0b3ca dvb_ringbuffer_read_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5a6f883d dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x60c5f691 dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x70de704a dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7b01edcf dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x86a17fc0 dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x89abce5d dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x89d18cfb dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8ae37ce4 dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x96bccda5 dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9ab4d06a dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa029d070 dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa721b95c dvb_dmx_swfilter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa7e5f2b1 dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xaa4ca35e dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xae552ae6 dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc37e96c4 dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc645fbc3 dvb_ringbuffer_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcad56403 dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcbcdd375 dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe33b5ee5 dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe7d43d1b dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebd38af9 dvb_ringbuffer_flush -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfa436cac dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfd4881cd dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfedb98ab dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x64c14474 af9013_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x15869558 ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x12fdfcba atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x065e0613 au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0d3740a7 au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x20f18b68 au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x44facfd1 au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x60ae5288 au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x86273137 au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x956f401e au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xbfd74ff1 au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd1fab3dd au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xb0a2791f au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xabe6724f bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x23ede090 cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xe5d3b71b cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xec742c4c cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x33e7a37b cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x4ae46f6e cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xa7b07ef2 cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x0540657b cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x5b13a3b0 cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xb05e43b3 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xbf1ff9e5 cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x2ce72ffb cxd2841er_attach_t -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xc6a4454f cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xd4f67657 cxd2841er_attach_c -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x21500a42 dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x2b5f8f83 dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x340c779a dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x73419376 dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x91a1feb0 dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x121fd1a7 dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1958804c dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x233d6774 dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4b425b49 dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4c3a5c0e dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x542b779d dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x706ee6bb dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x72ce419c dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xaf3a6333 dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd9bd03bb dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe288b894 dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xea0d14d0 dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xeeb0ab1e dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xef31a6b3 dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xffe28818 dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x8b5a431f dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x10a97a13 dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x16ee9153 dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x1b7af093 dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x51676f36 dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x95e19398 dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xb772af49 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x23f36341 dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x6a68ccff dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x72aae85e dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xc68a843f dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x3f522756 dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x6b593106 dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x058cac56 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x222051df dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x5f66379a dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x83737851 dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc5474348 dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xcdd33ca1 drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x55422ad4 drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x9a7776d4 drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xbbfd477a ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x049e62fd dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xce3ecbe2 ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x2d14bc21 horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x38ccedf8 isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x3b517704 isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x43cba8f3 isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x768e269f itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x7808ce30 ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x32e08fc8 l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x0bca7b82 lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x6683a4ec lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xca787060 lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x993c77f0 lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xc82dda77 lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xf1e2eeed lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x15ff0b29 lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x63b03761 lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x58570041 lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x8cfb5360 m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xddc90f77 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x0fe8830c m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x7f42ad99 mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x55cc0c5f mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x8fb44256 mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x1f69f4ab mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x4a281967 nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xfd04ed19 nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xf1f6e952 or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x807daf91 or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xdcad0a66 s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x469ba138 s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xab1db31f s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xab41c76d s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x389e4b99 s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0xef234c3d si2165_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x5a84d5c4 si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x4ed285d9 sp8870_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x1d674718 sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xa3f8c509 stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xe4b14cf0 stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xefe94d9d stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x7ae62d27 stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x4cba0c29 stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xfe2e1b43 stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x1ca8753b stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x1ff14d21 stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x615fcd79 stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x5a71137d stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x85639baa stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x20bc5b2c stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x031ce3de tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x2588a48b tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x67cb4574 tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x47f26fdc tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x73e7c7b4 tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xf6e8a4a3 tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xcca8243e tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x4e57e0cc tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x5e95e086 tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x91797373 tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x998c2297 ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x2f7bd131 tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x14717cf8 ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x5435cca8 ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x8c96d06a zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x94127f21 zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x0c3e851c zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x181a9432 flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x19153e35 flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x7e2449c0 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xadfd7878 flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xbf7f3d38 flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc41825fa flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xcae25ec5 flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x03155405 bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x6b9e1d11 bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x84e7605f bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xf53c1eae bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x2261061b bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8b0618ef bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xc5420b42 bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x096769bd dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x306f3864 dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4721c6a6 read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4a41d196 rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8ca0f5a6 dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa5105251 dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa942c57b dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xbac837e9 dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xfa50f736 write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x1d23498a dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x337fc59f cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x34ff5a4a cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x4d71453c cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x6a1bf85e cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x95e71871 cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x54292877 altera_ci_init -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x0b59841c cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x201bae3a cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x356f812b cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x4c41ba35 cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x607eb0d0 cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x83a56cc3 cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xbfe91c78 cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x979bd4d1 vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xebff41c8 vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x00aec444 cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x424d627b cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x56b90699 cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x8730f308 cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x2b64b6d8 cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x4b7d481a cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x55c1102e cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x6d40efee cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd8da14fd cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xec15ac9a cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xf4b23c0f cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0b1383dd cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0e7536d1 cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x29a07951 cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3b178831 cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x526901db cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x526d7a47 cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5f79822a cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x628fa09c cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x72cd66b7 cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8a438826 cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8eb1297e cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xaab08567 cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb065dad4 cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbe8b73bd cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc1915dab cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xccd34cfb cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd6a21978 cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdcbdff96 cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf5c62314 cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf703f665 cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x03ac4231 ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1828e6de ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1c6d3c36 ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x219a0466 ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4c0fb100 ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x66146269 ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6e289759 ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8660eccc ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x99cb536d ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa6c81529 ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb17faa8c ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xba35d9f2 ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc75ff045 ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcb975666 ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xde5bb955 ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf739895d ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfef1be57 ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x035495d9 saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0e7e74c5 saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x21aad9f3 saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2a638f23 saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x35e79fc9 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x39d639ef saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7ce00d69 saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xafd05760 saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc90e3725 saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe7ac296b saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xeb00ff02 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf0bd8d17 saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x46255d18 ttpci_eeprom_parse_mac -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x2690c193 videocodec_register -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x539e27be videocodec_detach -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x67510ded videocodec_attach -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x978b6509 videocodec_unregister -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x2848e67d soc_camera_power_off -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x410471bc soc_camera_apply_board_flags -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x6f82c710 soc_camera_power_init -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x9764f976 soc_camera_host_unregister -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xaa86d7f2 soc_camera_host_register -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xc83f7233 soc_camera_power_on -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xf4086295 soc_camera_xlate_by_fourcc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc -EXPORT_SYMBOL drivers/media/radio/tea575x 0x16590821 snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0x5b8c3c13 snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0xa96a0434 snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xadcd7b0b snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0xb114864e snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0xea6fd6e0 snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xf998b20c snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x2d39fbb8 lirc_dev_fop_ioctl -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x305b7ae6 lirc_dev_fop_close -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xa5f71e21 lirc_register_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xb115cd49 lirc_get_pdata -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xbecbcece lirc_dev_fop_read -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xbfea9280 lirc_dev_fop_open -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xee9a2864 lirc_dev_fop_write -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xf27f7879 lirc_dev_fop_poll -EXPORT_SYMBOL drivers/media/rc/rc-core 0x23dc2fc9 ir_raw_handler_register -EXPORT_SYMBOL drivers/media/rc/rc-core 0xd518adf2 ir_raw_handler_unregister -EXPORT_SYMBOL drivers/media/tuners/fc0011 0xe9d38ea3 fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0x53a406ed fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x7f17c643 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xcb0fb65a fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xdefd093b fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/max2165 0xb06df1ef max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xb59bcf04 mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0xe744bb35 mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0xdf0c0c10 mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0x661934aa mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xa98acf7c mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0x1fb63780 qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0x14468333 tda18218_attach -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x885618d6 xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0x7a21ff16 xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0x03a71db4 xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x3653af79 cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xc9bdd0ea cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x246c4398 dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x59c85ab5 dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8fc5f183 dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa3be0572 dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa4ead05c dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd8ed1712 dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd9564c64 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf38fa620 dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf8069bbe dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x24fdbf00 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x61c93b2b usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x78effc77 dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7feee2e5 dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x9513d38f dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe6d22977 dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf0f1a6fa dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x4f121452 af9005_rc_decode -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x0281dbfe dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x09bcfaea dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x118a44a1 dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1b203834 dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x23789cb0 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x44029078 dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x46381a71 dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4b3b3b7d dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x64060415 dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd24123bb dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf27fd245 dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xf6e8d9ed em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xfb823361 em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x0a06fc08 go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x162af9ca go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x2b7e37ed go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x80208fff go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x959912f4 go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa9402da6 go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xac39cd5f go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd12bdca0 go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd1a86616 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x315f5c53 gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x3f922209 gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5f0ba4ca gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x6e48b0d3 gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x7aabc0fd gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x95976363 gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa5425b4e gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xdea1bda6 gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x5c9e621b tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x6f20e1b8 tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x7fdde9c5 tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x1c5ac64e ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x379dc784 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x080ac921 v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x4c59b663 v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x78189700 v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x515e9e20 videobuf_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x54c0db4e videobuf_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x7f1504f3 videobuf_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x8c6398e3 videobuf_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x9a570c9c videobuf_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xad214270 videobuf_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x3d426922 vb2_verify_memory_type -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x757e43f5 vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x01c78d8a vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x0dab108f vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x1d621594 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x243fb030 vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x5bef9480 vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x60c92c7b vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0x5300d841 vb2_querybuf -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0d6328cc v4l2_subdev_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0d828310 v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0db5df6d v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0ebffc9c v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0fc85481 v4l2_ctrl_add_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1111e9ab v4l2_subdev_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x13a313ee __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x164b369e v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x187282a3 __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x188582a5 v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x18abbecc v4l2_subdev_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1aa66f31 v4l2_subdev_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1afc1b96 v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1da1fc75 v4l2_clk_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x23010816 v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2d94758c v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x311d71ef v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x31c07050 v4l2_clk_set_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x392fb007 v4l2_subdev_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b814d59 v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x43643988 video_usercopy -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45cc45a3 v4l2_clk_get -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4f7d7cdc v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x50d247ea v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x52fa38e0 v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x59841e0e video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5b378097 v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5bb506d5 v4l2_clk_enable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5e21f2c0 v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x60beaf07 v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x63a11e97 v4l2_clk_disable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x679f798f v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x693de07c __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6a6e5f4b video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6ce19df8 video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7313d1f7 v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7452c2ea v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7579614d v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x75edf3b7 v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a7c9e65 video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7cf98b6d v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7f25fd19 v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x85c5fcbd __v4l2_clk_register_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x88da7dea __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89ef6fa8 v4l2_clk_put -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x936d0c02 video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9436cc8e v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x94fe7b37 v4l2_clk_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa4c6e2c3 v4l2_subdev_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaa831d4b v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaba8fe6d v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xade89fcb v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbe833d43 v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbf567355 v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc181a504 v4l2_subdev_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc59660e4 v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc7cdda68 v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc9a3e00b v4l2_clk_unregister_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcb9e2b0a v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd12f560f v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd1f46aff v4l2_clk_get_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd328e2bc v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd6cfb245 v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd8ebe529 v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xee37a2ed v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xefe7126a __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xffbcf54c video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xffca77a4 v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/memstick/core/memstick 0x03641862 memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x401f0965 memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x447d593f memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x55cabdbe memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x76bf8d6e memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0x7e8d1afc memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0x882f31a6 memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x892db96a memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xa5987a36 memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xace61a8b memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xd10a13d2 memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xf11154c2 memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xf5a2af16 memstick_remove_host -EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x03e9f1e3 mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x047e6098 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x17621fbf mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x186c993d mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1dcc131c mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1ebeced2 mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1f22d2dc mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1ff26c6d mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x22e44896 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2a0b3a7c mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x398500a2 mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3d635fcf mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3f24379f mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x40fd82cf mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5e4ba8f9 mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6ead5a60 mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x75147a73 mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x79d46460 mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x888e68f6 mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8ac6b3e4 mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8eb4dab5 mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x938b9b97 mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x93f88873 mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x977ab711 mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x985252ea mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x988059f8 mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e021c0 mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc53ca8f5 mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe3d1c710 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x00763b72 mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x03354ae4 mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x120309e6 mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1d98f9a8 mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1f315ae4 mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2091efe5 mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x21bc734a mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3ebd281e mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x488f00a5 mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x51c4e05a mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x65349002 mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x691df5a2 mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6cb5d55a mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7057c469 mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x725d3ae5 mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x73453c1b mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x768fb366 mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x80122850 mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9b14030e mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa40afe2e mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xac3f99d7 mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc1080a03 mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcf98933e mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd45f83d6 mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe13bba1f mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe3fe6e0c mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf5dbce13 mptscsih_scandv_complete -EXPORT_SYMBOL drivers/mfd/cros_ec 0x11fab0e6 cros_ec_register -EXPORT_SYMBOL drivers/mfd/cros_ec 0x4f8553df cros_ec_suspend -EXPORT_SYMBOL drivers/mfd/cros_ec 0x5c8af493 cros_ec_resume -EXPORT_SYMBOL drivers/mfd/cros_ec 0xe16116af cros_ec_remove -EXPORT_SYMBOL drivers/mfd/dln2 0x4d5982ae dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0x55c8aad5 dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xed1ded4f dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x150ff376 pasic3_write_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xc8f31ea6 pasic3_read_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0168ebe5 mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x139a97bc mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x258d2918 mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x424bfe3e mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4777afc3 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x585dcb21 mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6afbc15a mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb03ddff3 mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe948641b mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf65a9f51 mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf6f40216 mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 -EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 -EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib -EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led -EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw -EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x4935fdd7 wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x61fc1e16 wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x255f3106 wm1811_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x880788b2 wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xba3d332b wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xd22265e6 wm8994_base_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x279c407f ad_dpot_remove -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x63501826 ad_dpot_probe -EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x075983d1 altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x68a2dcba c2port_device_register -EXPORT_SYMBOL drivers/misc/c2port/core 0xf20269c4 c2port_device_unregister -EXPORT_SYMBOL drivers/misc/ioc4 0x417bfa21 ioc4_unregister_submodule -EXPORT_SYMBOL drivers/misc/ioc4 0x66b55ef8 ioc4_register_submodule -EXPORT_SYMBOL drivers/misc/mei/mei 0x0b3c2389 __tracepoint_mei_reg_write -EXPORT_SYMBOL drivers/misc/mei/mei 0xafdfce69 __tracepoint_mei_reg_read -EXPORT_SYMBOL drivers/misc/tifm_core 0x07e30dd9 tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x2d040836 tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x2efacfde tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x38781904 tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x4d580dd5 tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x5b8e0003 tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x6c901170 tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x85510bae tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0x8c735c03 tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xc8682355 tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xe09de813 tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xe7bee087 tifm_has_ms_pif -EXPORT_SYMBOL drivers/mmc/card/mmc_block 0xf3cf706b mmc_cleanup_queue -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x091f482e cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x99bffa5b cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x9b8c4ed4 cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xa4333c0d cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xad32cb4f cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xbdff43f5 cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xf86f8bf3 cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x05538aad register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x6258f6aa map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x7ff45a61 unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xd11b1ba4 do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x6a5f662d mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xfaee8b96 lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x6603e300 simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0x7c58b455 mtd_concat_create -EXPORT_SYMBOL drivers/mtd/mtd 0xa961ce6d mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/nand/denali 0xd496b7df denali_remove -EXPORT_SYMBOL drivers/mtd/nand/denali 0xffc1ec5a denali_init -EXPORT_SYMBOL drivers/mtd/nand/nand 0x048bad93 nand_scan_ident -EXPORT_SYMBOL drivers/mtd/nand/nand 0x2080e627 nand_unlock -EXPORT_SYMBOL drivers/mtd/nand/nand 0x71d8db1f nand_lock -EXPORT_SYMBOL drivers/mtd/nand/nand 0x8a19e93a nand_scan_bbt -EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/nand 0xb3cc491f nand_scan -EXPORT_SYMBOL drivers/mtd/nand/nand 0xbf39173a nand_scan_tail -EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x58001155 nand_bch_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x7e8c59dc nand_bch_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xddb1be49 nand_bch_init -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x320eff7e nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xe4fab054 nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x8cfcf75c nand_flash_ids -EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x1e1c8824 onenand_addr -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xb4f6e71c onenand_default_bbt -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xcbccda0c flexonenand_region -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xe5b0a2d5 onenand_scan_bbt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2a408ec0 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6d577915 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7fdc276c alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8a058a6c arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x93161a27 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa0ea4685 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa18ee1ca arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc50544d4 arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe2e86643 arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf8e53df3 arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x0719d28b com20020_check -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xd0052f0d com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xe5e8830e com20020_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x09a05c5e ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x18c2c87e ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1f3b40f8 NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x2482961d ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x2dbdb3e4 ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x319e59fc __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x797d70fe ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe0241047 ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe6f0862d ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xfe9305af ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x36adcd95 eip_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x7775d14d __alloc_eip_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x84e9d897 eip_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x97b1929e NS8390p_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x99c03fd7 eip_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xb65b12de eip_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xbb708287 eip_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xcf55767a eip_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xdb3f2cb3 eip_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xdd8f699c eip_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xe54a7e35 eip_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0xdef69722 bnx2x_schedule_sp_rtnl -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xf25ce586 cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0c852513 cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1424c8b7 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x161224e9 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x211672e8 cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x48d609e6 cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5611be29 cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x87663803 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9375e353 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x99f70c0e cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa1ce2e49 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xaea4da75 cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb9fe054d dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbf1e3ce0 t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc2eb258b t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd23ff93a cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfcdda4cd cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0eed30f8 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x200fa00d cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2ada3742 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x31bfcff7 cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3273364c cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x35770a07 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x35d51ca9 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x35e9a2d1 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x402313d3 cxgb4_dcb_enabled -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x45ebda2f cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x57707dfc cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5841fce6 cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5937ae70 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6089ff8b cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6bdfec7b cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7bbb63d5 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7d759822 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa566097f cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaed9933b cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb5006252 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc1ec57ea cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc91fb542 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcad627da cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcdf86bd5 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcf4d6f82 cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd3e6e1f3 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd8b20f02 cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xda41fc20 cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe93083b3 cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xedad6185 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf00760e0 t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf8b303be cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfb27b60a cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfe333f6e cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x0373d8bd vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x1437bdcb vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x16e2c4e9 vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x90fe64d4 vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xb88e77d2 vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xddcee763 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x117245d5 be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x498861ef be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03c2f60f mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c186d48 mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0caa29bd mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1033cbe8 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1dcc549d mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31ed314c mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x428fbfba mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45f166f7 mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53d35ae5 mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55cbf330 mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ab41c7a mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d24af31 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ab51ece mlx4_test_interrupts -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72401751 mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76ba2402 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x824206b6 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89b89b0d mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a40c679 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8cee5f5a mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9992500d set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa148a141 mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb75deeb8 get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb970174b mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfe77fa0 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2a876e7 mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc33bd660 mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc432706c mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcce0e414 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce67d406 mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2d93542 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde276a53 mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe178bd76 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe904ea8a mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2d6ef50 mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf33f5bd0 mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3bfd72d mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe88a99e mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfec29257 mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x005de532 mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07e6b50b mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0857aabd mlx5_get_flow_table_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08faae68 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a64c0b3 mlx5_unmap_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb7287e mlx5_del_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10556023 mlx5_core_destroy_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18ff4e83 mlx5_core_query_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e0ee850 mlx5_core_create_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2023d57a mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24030846 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2af60bab mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c76e20f mlx5_modify_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3158955a mlx5_core_dump_fill_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b613dbf mlx5_query_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c961d6f mlx5_alloc_map_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4624610b mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51cccf40 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x527096ce mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5690d793 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58eae71c mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c3ef216 mlx5_core_get_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63e83ad9 mlx5_get_protocol_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ad14857 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x929e2597 mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa71f20de mlx5_register_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4c0238a mlx5_cmd_comp_handler -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4844985 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9058406 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcdf79016 mlx5_unregister_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8416efb mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd880ad40 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdba5d681 mlx5_core_arm_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde337d7e mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6af33e4 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7920d4a mlx5_cmd_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9a042d1 mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefdbc365 mlx5_cmd_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf14c5b97 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2b9cc33 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf359236b mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc728a49 mlx5_add_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x196a1d31 mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3cf430d0 mlxsw_core_skb_transmit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x61c046bb mlxsw_core_skb_receive -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbed80b12 mlxsw_core_bus_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc502a561 mlxsw_core_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xca2495b7 mlxsw_core_rx_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcb5c8545 mlxsw_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe46eb95d mlxsw_core_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee8e0771 mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x28fc9f53 qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa209d1af qed_get_protocol_version -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x7af54987 hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x94172635 hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x9d0bd555 hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xf8364c52 hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xfa32e377 hdlcdrv_register -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x024530d7 irda_register_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x0f9d81c6 sirdev_set_dtr_rts -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x10c2a610 sirdev_set_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x15e78832 sirdev_receive -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x174286e5 sirdev_put_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x34037e43 sirdev_raw_write -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x652d1805 sirdev_write_complete -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x7b47e1b0 irda_unregister_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xd240d5c2 sirdev_get_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xed10c29e sirdev_raw_read -EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl -EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart -EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag -EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe -EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok -EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage -EXPORT_SYMBOL drivers/net/mii 0x1d13e27e mii_check_link -EXPORT_SYMBOL drivers/net/mii 0x3ad30078 mii_check_media -EXPORT_SYMBOL drivers/net/mii 0x3e93bba3 generic_mii_ioctl -EXPORT_SYMBOL drivers/net/mii 0x4521cac6 mii_ethtool_gset -EXPORT_SYMBOL drivers/net/mii 0x83ef6215 mii_check_gmii_support -EXPORT_SYMBOL drivers/net/mii 0xa6b8b099 mii_nway_restart -EXPORT_SYMBOL drivers/net/mii 0xcea6423b mii_link_ok -EXPORT_SYMBOL drivers/net/mii 0xd788af3f mii_ethtool_sset -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x2ae268a3 free_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xb6c43f60 alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x13f86b03 xgene_mdio_rgmii_write -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x372be1fc xgene_mdio_rgmii_read -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xc3907221 xgene_enet_phy_register -EXPORT_SYMBOL drivers/net/phy/vitesse 0x6227591e vsc824x_add_skew -EXPORT_SYMBOL drivers/net/ppp/pppox 0x89b40d16 register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0x8ce5a3b2 pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0x97b25477 pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0x0a769c82 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x09816f94 team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0x28dbaa8d team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0x55214d57 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0x8d8d8413 team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0xa23700f2 team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0xb06e95c9 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0xd82c4218 team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0xff2448ac team_option_inst_set_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0x1887c570 usbnet_manage_power -EXPORT_SYMBOL drivers/net/usb/usbnet 0x4b341289 usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0xcf34cd22 cdc_parse_cdc_header -EXPORT_SYMBOL drivers/net/usb/usbnet 0xff866c1f usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/wan/hdlc 0x1c697323 unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0x48807ab0 hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0x4e02a403 register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x6471056e alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0x6b06eb5f hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0x87986a12 attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xba232620 hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0xbcab5a41 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xdaa73afd hdlc_change_mtu -EXPORT_SYMBOL drivers/net/wan/hdlc 0xe8930a96 unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xef9a791c hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/z85230 0x0f7971a8 z8530_channel_load -EXPORT_SYMBOL drivers/net/wan/z85230 0x10c78988 z8530_dead_port -EXPORT_SYMBOL drivers/net/wan/z85230 0x1293420b z8530_sync_dma_open -EXPORT_SYMBOL drivers/net/wan/z85230 0x18077ab1 z8530_queue_xmit -EXPORT_SYMBOL drivers/net/wan/z85230 0x305eb5d4 z8530_sync_close -EXPORT_SYMBOL drivers/net/wan/z85230 0x39e260cd z8530_sync_txdma_close -EXPORT_SYMBOL drivers/net/wan/z85230 0x5cd24d29 z8530_hdlc_kilostream -EXPORT_SYMBOL drivers/net/wan/z85230 0x837e75c0 z8530_init -EXPORT_SYMBOL drivers/net/wan/z85230 0x940f7d16 z8530_describe -EXPORT_SYMBOL drivers/net/wan/z85230 0x96101258 z8530_shutdown -EXPORT_SYMBOL drivers/net/wan/z85230 0xb29400de z8530_sync_txdma_open -EXPORT_SYMBOL drivers/net/wan/z85230 0xb80d32d2 z8530_sync_open -EXPORT_SYMBOL drivers/net/wan/z85230 0xb912dd2f z8530_sync -EXPORT_SYMBOL drivers/net/wan/z85230 0xcffb41d4 z8530_sync_dma_close -EXPORT_SYMBOL drivers/net/wan/z85230 0xd4ffebf0 z8530_interrupt -EXPORT_SYMBOL drivers/net/wan/z85230 0xd53c96f4 z8530_null_rx -EXPORT_SYMBOL drivers/net/wan/z85230 0xe3d80064 z8530_hdlc_kilostream_85230 -EXPORT_SYMBOL drivers/net/wan/z85230 0xfa2f2905 z8530_nop -EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0xa4a974b9 i2400m_unknown_barker -EXPORT_SYMBOL drivers/net/wireless/airo 0xac1b925f reset_airo_card -EXPORT_SYMBOL drivers/net/wireless/airo 0xe570b29c init_airo_card -EXPORT_SYMBOL drivers/net/wireless/airo 0xe7f4e12f stop_airo_card -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x02d4c016 ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1b9084c4 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2568eca2 dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x34c02379 ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x45963578 ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5c1b5317 ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x890c0c6f ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb25ea2b8 ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc5bd4446 ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd5262061 ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe8c3b3c4 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb073c30 ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x003353b9 ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0b6d60ca ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x101f99ad ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x134c978d ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x74c2c2af ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x785d0fc9 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x813cdda6 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x91b35f04 ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa5750968 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb65851ae ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdcc87140 ath10k_debug_get_new_fw_crash_data -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe3a7f7de ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xed66b0c3 ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf7d034b2 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfaa97a0f ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0f00b104 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x19b8948a ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x376f846c ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4205bf0f ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x44532abb ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4ee05c0c ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5dc680da ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x649615d5 ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8cea3ef8 ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa041de0c ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xbb943293 ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x059956ab ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0c83d089 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1d0f7f97 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2478d5a4 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4fb8b5ad ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5b160dc2 ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x612f4da5 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x61e26eb0 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x625522d0 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7e560483 ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8ef82f2b ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9905096f ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9ffe2c1b ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa16c1ecd ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa8caed4a ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb9cfff73 ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbc6e39ce ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc3766924 ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd0d23a2b ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd5aae75f ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe642c4dd ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf0dcdefd ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf7a56c5f ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00017d68 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x008191eb ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00fcb41a ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x021281dc ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0571b8eb ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x06bd6c26 ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08815cd1 ath9k_hw_cfg_gpio_input -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08b6f67d ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e5fc4b6 ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ee3cf44 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13bab558 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16158aba ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16f7347a ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x173a314a ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19572ff4 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x221f380d ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27925c39 ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2839fba9 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x31ce1319 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x39784613 ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a3b69dc ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b2c7832 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d171073 ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d592ed7 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d599db9 ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x439312b3 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x49604485 ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4aeb7601 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4cecc421 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x501c4c19 ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54b55d45 ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x56cfdc5b ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a35910b ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c0b3807 ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c482d49 ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5de4fa1f ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5fa416b6 ath9k_hw_cfg_output -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6c58fe7a ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d8332db ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e028d73 ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f80966e ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x701d9623 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7041090a ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x738cc871 ath9k_hw_request_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x79c88d8e ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d6a56a6 ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x826fbc31 ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8678dd00 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x87bb0aa9 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8a37f0c1 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d108d5a ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d198f96 ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x90c11c50 ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x915a5189 ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x933bb8f7 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x95d75763 ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x95f7bf75 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x96e6211b ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9c04aa94 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9c675655 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d5afd7c ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d673f14 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9dc1dd22 ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9dee4195 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9df274af ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9e65ffe5 ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9e665d35 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa1186e7f ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa37af883 ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6a363f9 ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa9d65389 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad9a5c8a ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xadbf21af ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb014ed4a ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb11b852c ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1a79a32 ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb27cb3bc ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb31bacce ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb61f7513 ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7fcbe6f ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb9a65fc1 ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc5904ab ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbf096bb3 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc2714444 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc9d3de95 ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcadd0712 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcceb2791 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcef0e789 ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf1c6ce7 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd0394a4a ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6c46081 ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd8dd3004 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xde529099 ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdeedb9ba ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf250c22 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf6b99ba ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0620260 ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe1332e2b ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe3115780 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe712ddb2 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0b10c0f ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf1be3c9f ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf64d22c3 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff18d45b ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffe47973 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/atmel 0x3301a22b stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel 0xa92c5d08 atmel_open -EXPORT_SYMBOL drivers/net/wireless/atmel 0xd7836feb init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x1f063340 brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x2aa672a3 brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3a5c9f92 brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x74502128 brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x74fe97e6 brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x84fef047 brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x85d5fe8c brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xa1a80809 brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xa52dd1f6 brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xb0972635 brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xcddc511d brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xf36a7741 brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xfe10c788 brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0011fa9a hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x05dcbe8a hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0a1e02cd hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1a85fd3b hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x278c58b6 hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3649a2ff hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3b4a9a72 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4e01505d hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x51b9e2d4 hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6eedb00e hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7968d57b hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7a243120 hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x80fc4256 hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8696807e hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x891be1f5 hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9df89cc7 hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa8a7962d hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb7733e33 hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbc1a0f6c hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd42e20a3 hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd72f323d hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd7e92369 hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd8c26ab5 hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xdb384479 hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xdb64038b hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x06ab64d6 libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x07617b7a libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x098b81bc libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0cba000f libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0dd93a88 libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2233a3ed libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2b6a0efb libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x32771e91 libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5ccbfcbe libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x62e50d14 libipw_change_mtu -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7959e37b libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x83b72784 free_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x95803835 libipw_rx -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x97cd798e alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x986daa17 libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x9ce2d2ca libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa79cad3b libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa8b5ff77 libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc7abf43b libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd3647d44 libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe0975c23 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x00410815 _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x01c85611 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0710b3b9 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0df1d4cc il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x12c56821 il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x12ca0a62 il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x12f13d1d il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x139c45c5 il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1bab1e0c il_apm_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1e8939fe il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2242972f il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x22c72ec6 il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x24d9a770 il_leds_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x24ddd60b il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x25d2c25d il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x282311b2 il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2920887e il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2948d33a il_init_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x29d1bb0b il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2acd89c2 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2cb671f4 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2f763611 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2faecf92 il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x341760d0 il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x35fab9a4 il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3a3930a6 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3dd2e8ca il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x44119853 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x462edd36 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x48650f36 il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4939eb0b il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4ac05b51 il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4fc3620c il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x56fa55a6 il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x57c635e1 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x59609385 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5da3ed44 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5ed1f795 il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x614514d5 il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x62597c81 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6272391c il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6290ccd7 il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x63f9e988 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6867373d il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x730d14dc _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x75ed8d3f il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x78928526 il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7a071879 il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7bfe5d20 il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7d16fe9a il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7d367cd2 il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7e08063c il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x83449ed5 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x834ea043 il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x84b8856d il_update_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x866417e6 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8a0844d3 il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8bda812f il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8dbb5878 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8e60fdcc il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x930233d1 il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x974b8eac il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x97e60744 il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x99d472ca il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9bf29856 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9c2cbd47 il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9c3f440c il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9e40e3ad il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9f0a0a01 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa0e7a0ad il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa1411683 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa2159774 il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa25da20f il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa3d66ce1 il_set_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa958478b il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb1b97c32 il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb2fdbeb9 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb4ea6e31 il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb6b6bcdd il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xba6109ec il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbbf77b5d il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbfef0682 il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc0079077 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc1c5ff76 il_force_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc631a462 il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcc51aa38 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcd0cc839 il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd6280201 il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdc2ec5f9 il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xddf3717f il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe12d8e6d il_free_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe18bfe9c il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe8299f57 il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe8660aab il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xecfab3bf il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf600d0f4 il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf98b1ff7 il_set_rate -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfcfd8282 il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x08c6664d __tracepoint_iwlwifi_dev_iowrite8 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x4379786d __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x95a8ab3c __tracepoint_iwlwifi_dev_iowrite32 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xa2b6ec39 __tracepoint_iwlwifi_dev_ucode_error -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xb69add1f __tracepoint_iwlwifi_dev_ioread32 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xcd60e86e __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xd4f50457 __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x02cf7fcf hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x1d24bc74 orinoco_get_stats -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x21c5f5e2 orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x3b8c7d78 orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x3edf63ea orinoco_up -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x47ef6983 orinoco_open -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x68c9a1da orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x6ef59f02 orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x7705ec08 orinoco_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x7e26396e alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xa3e5591b orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc9b72e9f orinoco_down -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xcf2ec716 __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe16d08e0 orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xf9daf631 __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xfd8579dd orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffeaf196 free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xc430ec86 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x06006cc7 rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x085d83f9 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x160e732b _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x206a175d rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x215d6391 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x22ce8a81 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x269fcb0b rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2c9a6e6d rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x32efb503 rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4200a1be _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4669782e _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x527fee17 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5b3c2c46 rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5ea3f1c5 rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6e60ad97 rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7d44b58f rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8adc038b rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9808aef1 rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9936deb8 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9e8970f6 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa31aef75 rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa3456b5f _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa38b4a49 _rtl92c_store_pwrIndex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa8a9a570 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xac1699a9 rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaf5d68e7 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb710fdb8 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb8dc6ccc _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbdb54b12 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc147a656 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc74e7606 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcd45e7ff _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcd5e567c rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xceee0c64 rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd325b395 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd7427cf2 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdbc1ca56 _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xddcef2da rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xde649529 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdfc3a138 rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe7f66921 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x2770b95b rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x754ac363 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xaa3dedca rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xf171427d rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x1693513a rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x7596c22c rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x77f99ec5 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x8d7f80a5 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x06f9c3e6 rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1c7202ee rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1ec42d38 rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x24173711 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2efd5f2f rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x37304399 rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3a71d135 rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3d927ea0 rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4ff838dc rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x51bdc99f rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x51da1899 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6d7f8901 rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7b5c5ea0 rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x98db1f96 rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x99c13c9e rtl_wowlan_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9cc38c0d efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xafc04518 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb0dacb94 rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb505226d rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb6ead96e rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc4cc3bf0 rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcd5eb38f rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdbcf9354 efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdc0caa99 rtl_ps_set_rf_state -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdceabbf9 rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe7da329f rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf0477f51 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf532b2f3 rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x063be548 wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x9bba2f4f wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xd07dc0b2 wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xfa12a40d wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x5cde949f fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x75a551b2 fdp_nci_recv_frame -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x945a3a48 fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0x18504640 microread_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0xaf24eac3 microread_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x49a6f0a0 nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x77eb3fb3 nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xa6814609 nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xbfdaf2f3 pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xd94d8e44 pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x02783acc s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x29177e68 s3fwrn5_recv_frame -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf069118f s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x22179177 st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2720e44d ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x673a718b ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x78f65d5d ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xbc98ad07 st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xbeed06c4 ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc9245847 ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe84c7727 st_nci_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf5210e0e st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfa03af02 ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfdfea0c3 st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x038a91e9 st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1a6e2f34 st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2b859a08 st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x31bea9f3 st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4ed6ac16 st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5026ecd7 st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x70e17e28 st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x753fe37b st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8dbeb735 st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa628700a st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa9c8e00b st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbc8a28a7 st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc0664185 st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc3b93bed st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xca4fffc5 st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd5f22798 st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xedd65c75 st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf77e549f st21nfca_hci_se_io -EXPORT_SYMBOL drivers/ntb/ntb 0x4c83055a ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0x6a0ce429 __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0x7f1b480e ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0x9b9ca226 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0xa36ab724 ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xb2631d8c ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xe796f816 ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0xf76e23ae ntb_unregister_client -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x1b629aa3 nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x9e182b71 nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x38a8da9d devm_nvmem_cell_put -EXPORT_SYMBOL drivers/parport/parport 0x005a1053 parport_register_device -EXPORT_SYMBOL drivers/parport/parport 0x018f3e3c parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0x10916465 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0x10fc3fa6 parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0x141c6737 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x2d11d37d parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x466da342 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0x46749d5f parport_release -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x5327aab9 parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0x5a23cae0 parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x5ff687d4 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0x65fe9fdb parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0x68172d5f parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0x7c138fbb parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0x89fc152e parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x8ad35b37 parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0xa283ce54 parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0xa5c8809a parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0xa7896a07 __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0xa8326cb3 parport_write -EXPORT_SYMBOL drivers/parport/parport 0xbedc6e9c parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0xc3742d14 parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0xc7636001 parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0xca2aa5f0 parport_read -EXPORT_SYMBOL drivers/parport/parport 0xcdd4fbc6 parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xd47f4b56 parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0xd4d7ea50 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xd57106ae parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0xec46e76a parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0xedda5e1a parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xfb2a4e69 parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0xfd2b5af9 parport_claim -EXPORT_SYMBOL drivers/parport/parport_pc 0x01b6ee01 parport_pc_unregister_port -EXPORT_SYMBOL drivers/parport/parport_pc 0x1dfdec1a parport_pc_probe_port -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x05541e1a pcmcia_fixup_iowidth -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x06154728 pcmcia_register_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x19c404b6 pcmcia_request_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1f673964 pcmcia_map_mem_page -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x45be717c pcmcia_request_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x50bf4765 pcmcia_get_mac_from_cis -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x527f7917 pcmcia_get_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6a8227dc pcmcia_write_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x774c9e5c pcmcia_release_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x85c942ba pcmcia_disable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8a340d9f __pcmcia_request_exclusive_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8dc707a1 pcmcia_read_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x922b9955 pcmcia_loop_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x97f9faa8 pcmcia_enable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa34180ab pcmcia_unregister_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa44a06c1 pcmcia_fixup_vpp -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc022929e pcmcia_request_io -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc6e728a1 pcmcia_dev_present -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf2601434 pcmcia_loop_config -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x02978a4a pcmcia_socket_class -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0c6663e8 pcmcia_reset_card -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x26f64fae pcmcia_parse_events -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x2c21c8f3 pcmcia_put_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x307b8258 pcmcia_parse_uevents -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x34addaf9 pccard_register_pcmcia -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7a30b5e4 pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb84d9fa0 pcmcia_socket_list_rwsem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xbe0fe7fb pcmcia_get_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe1288319 pcmcia_unregister_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe2bc9343 pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x64183bd6 pccard_nonstatic_ops -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x7e9d3766 pccard_static_ops -EXPORT_SYMBOL drivers/platform/x86/intel_ips 0xf97d7d0e i915_bpo_enabled -EXPORT_SYMBOL drivers/platform/x86/intel_punit_ipc 0x3a0b563a intel_punit_ipc_simple_command -EXPORT_SYMBOL drivers/platform/x86/sony-laptop 0x5bb1e117 sony_pic_camera_command -EXPORT_SYMBOL drivers/pps/pps_core 0x9c09c4a9 pps_lookup_dev -EXPORT_SYMBOL drivers/pps/pps_core 0xb27f4be4 pps_unregister_source -EXPORT_SYMBOL drivers/pps/pps_core 0xb4c966cb pps_register_source -EXPORT_SYMBOL drivers/pps/pps_core 0xf47b9d3d pps_event -EXPORT_SYMBOL drivers/ptp/ptp 0x19d1a4ae ptp_clock_event -EXPORT_SYMBOL drivers/ptp/ptp 0xbb05b5e3 ptp_clock_unregister -EXPORT_SYMBOL drivers/ptp/ptp 0xc703987f ptp_clock_register -EXPORT_SYMBOL drivers/ptp/ptp 0xc70e81cf ptp_clock_index -EXPORT_SYMBOL drivers/ptp/ptp 0xd79e9d37 ptp_find_pin -EXPORT_SYMBOL drivers/ptp/ptp_pch 0x11e0040a pch_set_station_address -EXPORT_SYMBOL drivers/ptp/ptp_pch 0x12f4e60f pch_ch_event_write -EXPORT_SYMBOL drivers/ptp/ptp_pch 0x1d9108e6 pch_src_uuid_hi_read -EXPORT_SYMBOL drivers/ptp/ptp_pch 0x2bb7a402 pch_ch_event_read -EXPORT_SYMBOL drivers/ptp/ptp_pch 0x433584fb pch_rx_snap_read -EXPORT_SYMBOL drivers/ptp/ptp_pch 0x732f45b1 pch_ch_control_write -EXPORT_SYMBOL drivers/ptp/ptp_pch 0x9f124ed3 pch_ch_control_read -EXPORT_SYMBOL drivers/ptp/ptp_pch 0xa15508cb pch_src_uuid_lo_read -EXPORT_SYMBOL drivers/ptp/ptp_pch 0xce696282 pch_tx_snap_read -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x0b78a2e4 rproc_get_by_phandle -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x10ff8804 rproc_vq_interrupt -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x368d72d5 rproc_add -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x4f5b3bc1 rproc_boot -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x84534752 rproc_da_to_va -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x8a625303 rproc_shutdown -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xb24c0c73 rproc_del -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xf266fc95 rproc_report_crash -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xf4e8e0ad rproc_put -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xff62dff7 rproc_alloc -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xfd02a01a ds1685_rtc_poweroff -EXPORT_SYMBOL drivers/scsi/53c700 0x3d9cece0 NCR_700_intr -EXPORT_SYMBOL drivers/scsi/53c700 0x44d0daa6 NCR_700_detect -EXPORT_SYMBOL drivers/scsi/53c700 0xe3e879d2 NCR_700_release -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x2afa5815 scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x868b3606 scsi_esp_template -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xabf2c77b scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xded3386f scsi_esp_register -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x084c7270 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x297cd86f fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2e740508 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4c42cd99 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6a8243b3 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6be315a3 fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7a393b66 fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x813fc895 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8c729ecb fcoe_ctlr_destroy_store -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xac381779 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xac86906a fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf5b57e51 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0879f01c fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0c77d089 fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0c9ed383 fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0fc0ae77 fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1219d76d fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1370172c fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x18359ff2 fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x19e92260 fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1cc8cf03 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2471b92f fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x281ac850 fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2a706953 fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x300f04c1 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x385f6d4d fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3c4e37f2 fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4a649926 fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x542704f5 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x57d89f37 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6261b1b0 fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x65a0560d fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69ae3313 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69f23838 fc_rport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6aac9ed2 fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6d9da737 fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7d92a953 fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7df0013b fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x81daec00 libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x850d8b1d fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8e45a459 fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8f100743 fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x960f5b13 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x98a67f9d fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa0b22001 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaac78ebb fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xac762e66 fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb051d8a3 _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb318db48 fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb4fe5a30 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb9fb1119 fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbdd46b5f fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc07fbe6c fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc374a505 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc8c06681 fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd0ac37d6 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd107a0a9 fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe225c230 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe31010c0 fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfccb788b fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfd40a570 fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfec43507 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4f708a68 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x6ad2413d sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x74fd87b6 sas_wait_eh -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xe8bfede1 sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xb2d0ad7d mraid_mm_register_adp -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00bb5969 osd_req_decode_sense_full -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x03c46d56 osd_req_list_collection_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x113d7c49 osd_req_add_set_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x14044a8c osd_req_read_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x14b80b9c osd_execute_request_async -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x155a56f9 osd_req_flush_obsd -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1f5ed4b8 osd_dev_fini -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2501000a osd_req_read_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x297955e3 osd_req_set_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2b026215 osd_req_remove_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2fa03613 osd_req_create_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3016a2ea osd_req_add_get_attr_page -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x45669193 osd_req_list_partition_collections -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x49792f35 osd_req_remove_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x58232227 osd_req_write_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x58c29b04 osd_req_read -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5be02d74 osd_req_list_partition_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5d979d2f osd_req_list_dev_partitions -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x65664b99 osd_req_get_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6d7dd2bf osd_end_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x765594cd osd_req_write -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x84970340 osd_req_create_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa68b17b9 osd_dev_init -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa791216c osd_req_flush_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb70aa2fe osd_execute_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb94c3201 osd_auto_detect_ver -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc4bb519b osd_req_add_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc7f0356e osd_req_flush_collection -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd36fbf38 osd_req_read_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe01b91b4 osd_finalize_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe9626337 osd_req_flush_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xeeaaa3e5 osd_req_write_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf06e9ab9 osd_req_format -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf6d323b7 osd_req_write_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf9726a07 osd_req_decode_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfff3d428 osd_start_request -EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0x682abce4 osduld_put_device -EXPORT_SYMBOL drivers/scsi/osd/osd 0x72ace220 osduld_path_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0xcb61d4d3 osduld_device_same -EXPORT_SYMBOL drivers/scsi/osd/osd 0xd0afdc03 osduld_device_info -EXPORT_SYMBOL drivers/scsi/osd/osd 0xda531afa osduld_register_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0xf015fd6b osduld_info_lookup -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x30475eca qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x53208a87 qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x601bdbd2 qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7d320c5e qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x863b2b0d qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x87202d7b qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9d59f721 qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xaea536ef qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcc42ef1a qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd19bfa1b qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf0605cb0 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf9a23ae4 qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1802dcce qlogicfas408_disable_ints -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1ae43e35 qlogicfas408_biosparam -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x2587883b qlogicfas408_info -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3cac5951 qlogicfas408_bus_reset -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xdc3fad6f qlogicfas408_queuecommand -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf790e4de qlogicfas408_abort -EXPORT_SYMBOL drivers/scsi/raid_class 0x489cd2da raid_class_attach -EXPORT_SYMBOL drivers/scsi/raid_class 0x4d9b6291 raid_component_add -EXPORT_SYMBOL drivers/scsi/raid_class 0xc4ad8966 raid_class_release -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x03e78870 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x05970db3 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x265f2778 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x482c6235 fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x60c0406b fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x675942ba fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xaae6aa4c fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xab3da28c fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc11f6578 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc4bdb8a2 fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd1c4e2f2 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe61a32ca fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe97bfefd scsi_is_fc_vport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0a519819 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x152a1a1a sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x163c416e sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1c66e1e7 sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x28afe514 sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3d501bc7 sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4891eb9f sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x49e50511 sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4d786f41 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5a16de65 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5c52d54f sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6c01de23 sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x76c97483 scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fda09b2 sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x86a44e38 sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x872da3ed sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x95e8d275 scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcde1ba14 sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcf72128a sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd8c41f37 sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdbea998f scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdf64b484 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe1072b63 sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe2d32210 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf7244b52 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf9bce323 sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfb5e54e5 sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfce968a2 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x608541ae spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7eb1dd14 spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x9e9560ea spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xb3f8b3fc spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe4a772d8 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x6ecc18c8 srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x96b962c2 srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xb826f393 srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xdcf1a105 srp_rport_put -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x2ca37d7f ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x3df5d1ce ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x7da36cb8 ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xabc274dd ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xae9323df ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xcf65420a ufshcd_runtime_idle -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xf071e500 ufshcd_alloc_host -EXPORT_SYMBOL drivers/ssb/ssb 0x03344fd6 ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0x0ae6eb24 ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0x0cd75d2d ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x1f8ffcee ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x362d70ee ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0x3beb3368 ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x43b55696 ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0x4db3b532 ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0x54638aab ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x585ea514 __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0x7287ce91 ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x7f3b2afd ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x85356885 ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0x8643b293 ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0x8b0320c9 ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0x8df78b8b ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0x9a7753c1 ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0xaa902341 ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xcf4881f6 ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xe1069f3e ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x02ac9487 fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0311ded9 fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x07fe2f7b fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x094844c3 fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0e209fa3 fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x137c2c10 fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x187f0bf8 fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x195d6ea6 fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1ef0c917 fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x29dfb41a fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2cc4ca66 fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3316fc03 fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4933045b fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5b46bb9e fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7bcb0afb fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa3b8186e fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xab8655a2 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb055ceec fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc55fc167 fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd02e9c85 fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeb09695f fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xee1f8713 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf529c5e2 fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf8745ec7 fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x63d00716 fwtty_port_put -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xab929228 fwtty_port_get -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x1561bb94 adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x175eea42 hmc5843_common_resume -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x68948cf2 hmc5843_common_remove -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x6a532fc8 hmc5843_common_suspend -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xe24e7de4 hmc5843_common_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x8fd3d23c ade7854_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xc719e356 ade7854_remove -EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0x98c10592 cxd2099_attach -EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x953f8076 most_deliver_netinfo -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x02991a20 rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x035876c3 RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x09d0f704 rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x10b536b0 rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x197ae133 alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1b01bcaf rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1b136afd free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2b26298b rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3389ff20 rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x34ab1e04 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3c75d7b0 rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3f2e2287 rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x430f7fc1 notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4518ba90 rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x56333709 rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5a7dcfcb rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x633f1087 rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6b6d2acb rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6ce2ca33 Dot11d_Channelmap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x72cedf22 rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x738c36b1 rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x831d1024 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x85cf2807 rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x878c8353 rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8fa9fd98 rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x94cf0933 dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x95c65225 rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x969d2b52 rtllib_wpa_supplicant_ioctl -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x97360e80 rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x98791041 rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9fc4ae31 rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa087c140 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa54e044d rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaaf1da33 rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xabe2eaa7 rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb57d22f8 rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb8183258 rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb85862a9 rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc4f4d213 HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc7faeaa4 rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc8a23347 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd3313d8c rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd6d8df73 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd9d43c18 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xee78b3b8 rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xef1239a2 rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xefc224ad rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf86c63f8 rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfb22e297 rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfc3262ce rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0277925c SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x041ee992 ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x046c8467 ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0cb817ee ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0ef07710 ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0fd288b6 ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x145958f3 Dot11d_Reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1ddd1e3a ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x22d7770f ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x239ed8af ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2c5afc45 ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3950ca72 ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x396803c5 ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3f937359 ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x417dd285 ToLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x47fb9836 ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4a7bdaee ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4d15e03e ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x738b666c ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x742b7551 HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x74821469 ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7bf33e7f ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x815c5141 ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x820caa46 ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x87497bad DOT11D_GetMaxTxPwrInDbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x88b96b48 ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x94b4c0be ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x98c95b45 ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9b76c97a ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9ca1bfc4 Dot11d_UpdateCountryIe -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa4943094 IsLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa642fff1 ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa8d72fc2 ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xabbf8118 ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb1752619 ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb5e64750 ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb8f115c6 ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbd69b44a ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc0370789 ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc6571c98 ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcaad463b ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcd3713b7 Dot11d_Init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcebee80b ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf4c2491 ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcfde745d ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd0a43ab4 ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd4c633d2 ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd572d45b ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe2eaa08e ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe3f70d9b notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xea94a406 ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeb53a015 ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xee616adc ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfb204da4 ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xff50119e DOT11D_ScanComplete -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0362c90b iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x097dcae4 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x19d707eb iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x273b3289 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x40b7e633 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4844a639 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4a198a4c iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4a9aceb1 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6a6f311a iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6e5cd777 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6eea4cb3 iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7aff1772 iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x86113dd2 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8ee04288 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x913d3989 iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x966fb58f iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa88f1350 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xba4f6e5c iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbdb7c31d iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbfb148e3 iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc39ea4f7 iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc6db0932 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcc712a74 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd9cd8742 iscsit_set_unsoliticed_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdbd97e9b iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe01aa680 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xea050631 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf5db71a8 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0e3b93d1 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0x162ccf10 target_sess_cmd_list_set_waiting -EXPORT_SYMBOL drivers/target/target_core_mod 0x2297dd9f transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x240025e5 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x24421bab target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x258a515b core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x280519de passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x2858481e transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x32d7c126 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x330c51e1 core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0x37423809 target_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x3977cb27 core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x3980be3b transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0x3e5a7832 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x3f23f21e target_get_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x40350ec4 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x41da567f target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x4385a04a transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x45cabd11 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x46038878 core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x487d7995 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0x496fecf3 transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x4a3938d4 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x500d627e sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x5380f07c transport_check_aborted_status -EXPORT_SYMBOL drivers/target/target_core_mod 0x6309e225 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x663cdc2f transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x698ee35e target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x69bc73c6 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x721e72d9 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x75574bbb target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x7a125986 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x7a8bb167 transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x821fcb42 target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x85830cce target_setup_cmd_from_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x8a5ccc89 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0x8b07b557 target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x8f66c5c0 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x9202ecf1 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x92bbe2b4 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x97e3371a sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x9cfbab57 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x9f82b28b target_submit_cmd_map_sgls -EXPORT_SYMBOL drivers/target/target_core_mod 0xa00faa96 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0xa5363cfc transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xaab0414e target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0xb7c0a51f transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xb91997d5 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xbad544eb transport_init_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0xbd0a155f core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xc0d814fc target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0xcaaa72a6 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xd23b8ab3 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xd2e4891c target_put_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xd620febb target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0xd64d8232 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xdc847c04 target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0xde99c613 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0xe01fc74f target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xe10420cb transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xe2f1d5c8 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xe5947fe1 transport_init_se_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xe60a1522 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0xebbb6701 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0xed7fecee spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf060ba93 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0xfb0d7456 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xfdd1ad20 sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0xff153b0c target_submit_cmd -EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x1887763e acpi_thermal_rel_misc_device_add -EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x5007fc2c acpi_parse_art -EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x86c998e6 acpi_thermal_rel_misc_device_remove -EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0xdf707fab acpi_parse_trt -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x2bd60753 usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x2ca3063f usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x03d01ac6 sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1552e617 usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x156c8511 usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1de66e61 usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x263baa3c usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x36078a13 usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3b9b7b45 usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x86523d76 usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x885f7085 usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9bbc94cd usb_wwan_ioctl -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb16de2d0 usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe9ac7eff usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xec2dd7de usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x60795f84 usb_serial_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xd2efe46c usb_serial_resume -EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user -EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x2e91ca97 vringh_iov_pull_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x367ce26a vringh_iov_push_user -EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user -EXPORT_SYMBOL drivers/vhost/vringh 0x59f824d9 vringh_getdesc_user -EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x7bda5e6d vringh_iov_push_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x821e9390 vringh_iov_pull_user -EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user -EXPORT_SYMBOL drivers/vhost/vringh 0x937e412c vringh_getdesc_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user -EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user -EXPORT_SYMBOL drivers/video/backlight/lcd 0xb9ace0c2 lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xc73d68ab lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xd4cfae9c devm_lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xf358336d devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1b557a3b svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1c488403 svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x39f2f407 svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4b3c27ec svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x5a417c2f svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x67ff881f svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc27c2e20 svga_tilecopy -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x6d2b693c sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xd60987e7 sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xf1402b09 sys_imageblit -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x1d3b5c3a cyber2000fb_attach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x35258781 mac_find_mode -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x04dc35c7 matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x08a6aabd matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x70b041f1 g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x46fa6651 matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x9470f370 matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x988f5564 DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xab0da29c DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x58576061 matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xbbc176ef matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x7592393d matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xd84358ec matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xead8f80b matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xf0c96714 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x1e42dc60 matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x93cb4ec5 matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x1e525a1f matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x6db37a36 matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x90248474 matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x93ec6b59 matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xfe15f848 matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0xb4d7c3df mb862xxfb_init_accel -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free -EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga -EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x6028f22d w1_ds2760_write -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x6331920f w1_ds2760_store_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xe0734b84 w1_ds2760_recall_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xe48ad25b w1_ds2760_read -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x2c9bff10 w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x60fdbf9b w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x4038bdcc w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xa45e3a68 w1_ds2781_io -EXPORT_SYMBOL drivers/w1/wire 0x090cca91 w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0x26ed4f8e w1_add_master_device -EXPORT_SYMBOL drivers/w1/wire 0x2c7ce44c w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0x9bcd2a3c w1_register_family -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x04e133fc iTCO_vendor_check_noreboot_on -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xa78bd894 iTCO_vendor_pre_set_heartbeat -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xb5f20875 iTCO_vendor_pre_keepalive -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xc4f657bf iTCO_vendor_pre_stop -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xdc6effc9 iTCO_vendor_pre_start -EXPORT_SYMBOL fs/configfs/configfs 0x0dc2d7b3 configfs_depend_item -EXPORT_SYMBOL fs/configfs/configfs 0x0ea6978f config_group_init -EXPORT_SYMBOL fs/configfs/configfs 0x1e9649e6 configfs_register_default_group -EXPORT_SYMBOL fs/configfs/configfs 0x376b0680 configfs_unregister_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0x55aea2c3 configfs_unregister_group -EXPORT_SYMBOL fs/configfs/configfs 0x61580ac5 config_group_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0x63fb31c8 config_group_find_item -EXPORT_SYMBOL fs/configfs/configfs 0x6f15a494 configfs_unregister_default_group -EXPORT_SYMBOL fs/configfs/configfs 0x8b016b91 configfs_undepend_item -EXPORT_SYMBOL fs/configfs/configfs 0x8c85e46a configfs_register_group -EXPORT_SYMBOL fs/configfs/configfs 0x9399309b config_item_put -EXPORT_SYMBOL fs/configfs/configfs 0xcd70269a config_item_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0xd47047b0 config_item_set_name -EXPORT_SYMBOL fs/configfs/configfs 0xd9f2c959 configfs_register_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0xe5486ca4 config_item_get -EXPORT_SYMBOL fs/exofs/libore 0x09a4430f ore_get_rw_state -EXPORT_SYMBOL fs/exofs/libore 0x1809a52c extract_attr_from_ios -EXPORT_SYMBOL fs/exofs/libore 0x21de8fc2 ore_remove -EXPORT_SYMBOL fs/exofs/libore 0x27bab962 ore_write -EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout -EXPORT_SYMBOL fs/exofs/libore 0x38e576dc ore_truncate -EXPORT_SYMBOL fs/exofs/libore 0x3c5775dc ore_get_io_state -EXPORT_SYMBOL fs/exofs/libore 0x426ce200 ore_read -EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info -EXPORT_SYMBOL fs/exofs/libore 0x5684103f ore_create -EXPORT_SYMBOL fs/exofs/libore 0x676d84f7 ore_check_io -EXPORT_SYMBOL fs/exofs/libore 0x7fd95b47 ore_put_io_state -EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length -EXPORT_SYMBOL fs/fscache/fscache 0x110c151d fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0x13654763 fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0x1602d95a __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x193b903d fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0x1a5910f4 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0x2ecf8a14 fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0x321c70dc __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x3558c035 fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0x384234c7 __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0x3debd539 fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0x49744247 fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0x4cc99045 fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0x4ed92f7f __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x54312108 __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0x59944b1c __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0x5cbff141 __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0x6da8373b fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x790fe3e9 __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x79eca732 fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0x7b4a0f65 fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0x7b57ca03 __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0x7f318340 fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0x96671372 __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x97b64bb2 __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x9987cc0a __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0x9bdf323e fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0xa1f07b91 __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0xa41ce70c __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xa7802a11 fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0xa8941efb __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0xb9296118 __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xc326a8ec __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0xccef7e24 __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xd0be335c fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0xd2feff9a __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0xda331f9e fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0xe70434ea fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0xebeed94b __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0xecb30021 __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0xf0ae3435 fscache_mark_pages_cached -EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x29b34d11 qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0x38b3e8e7 qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x53f160e1 qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x7b684d8b qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x981e2eb1 qtree_delete_dquot -EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq -EXPORT_SYMBOL lib/crc-ccitt 0x3771b461 crc_ccitt -EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table -EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table -EXPORT_SYMBOL lib/crc-itu-t 0xf5b4a948 crc_itu_t -EXPORT_SYMBOL lib/crc7 0x66213969 crc7_be -EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table -EXPORT_SYMBOL lib/crc8 0x41248eaf crc8 -EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb -EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb -EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c -EXPORT_SYMBOL lib/lru_cache 0x03f599c7 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0x4feade4b lc_create -EXPORT_SYMBOL lib/lru_cache 0x56fc3ea0 lc_put -EXPORT_SYMBOL lib/lru_cache 0x619ed575 lc_try_get -EXPORT_SYMBOL lib/lru_cache 0x84e0214b lc_committed -EXPORT_SYMBOL lib/lru_cache 0x98878622 lc_seq_dump_details -EXPORT_SYMBOL lib/lru_cache 0xb0adb4a6 lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0xbbe7c23c lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0xc48fa976 lc_set -EXPORT_SYMBOL lib/lru_cache 0xc6e4cd46 lc_reset -EXPORT_SYMBOL lib/lru_cache 0xcb990a55 lc_try_lock -EXPORT_SYMBOL lib/lru_cache 0xcea6747e lc_destroy -EXPORT_SYMBOL lib/lru_cache 0xd212c9f0 lc_get -EXPORT_SYMBOL lib/lru_cache 0xeb13128b lc_del -EXPORT_SYMBOL lib/lru_cache 0xf460a486 lc_is_used -EXPORT_SYMBOL lib/lru_cache 0xf5ea5f5c lc_index_of -EXPORT_SYMBOL lib/lru_cache 0xf6acec20 lc_find -EXPORT_SYMBOL lib/lz4/lz4_compress 0xcbc5d521 lz4_compress -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x26c3aa22 lz4hc_compress -EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul -EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp -EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv -EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page -EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi -EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul -EXPORT_SYMBOL net/6lowpan/6lowpan 0x52a793d3 lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0x65eec8aa lowpan_netdev_setup -EXPORT_SYMBOL net/6lowpan/6lowpan 0x8fffb4e0 lowpan_nhc_del -EXPORT_SYMBOL net/802/p8022 0x23679a16 register_8022_client -EXPORT_SYMBOL net/802/p8022 0xa3889aff unregister_8022_client -EXPORT_SYMBOL net/802/p8023 0x1ffebc73 make_8023_client -EXPORT_SYMBOL net/802/p8023 0x8fae84bf destroy_8023_client -EXPORT_SYMBOL net/802/psnap 0x07f7c839 unregister_snap_client -EXPORT_SYMBOL net/802/psnap 0xa0822601 register_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x02309c3a p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0x0e609607 p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0x11c3fe90 p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x19468218 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0x19f78472 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x1ba3840f p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x1db7a816 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0x21ec674c p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x279744c3 p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x2b441693 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x2bc09c5e p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0x3117ffa1 v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0x32c79e0a p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0x341fad50 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0x34379c91 p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get -EXPORT_SYMBOL net/9p/9pnet 0x373946d8 p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0x39094801 p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0x4a5e94e6 p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x4bd189ce p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x5a1db2ff p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x5e080f86 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x6a1b5045 p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x6cb375ea p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x736f8ef2 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x78e01a0d p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x830af003 p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0x93a9418d v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0x9426c7ee v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x96338705 p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0x96524b03 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x98102047 p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0xa5150f0b p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0xaa9245ae p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0xb488f2ce p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xb7bf0149 p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xbc28869e v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0xbeabbed4 p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0xc196154f p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0xc5d60c30 p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy -EXPORT_SYMBOL net/9p/9pnet 0xe08dcc22 p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xf24e2230 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create -EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put -EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check -EXPORT_SYMBOL net/appletalk/appletalk 0x1d24a7d6 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0x7a5e52d8 atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0x8d8bab61 aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0xda60df5f alloc_ltalkdev -EXPORT_SYMBOL net/atm/atm 0x099ebcc7 atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0x1a5556a6 vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x3c476835 atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x8b0f8608 atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0x8c6313fe atm_charge -EXPORT_SYMBOL net/atm/atm 0x8ddbfc86 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xa7f3c58a deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xb2aae3dd atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0xbbcf95bf atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0xc909564c atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0xcfd779d5 vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0xd7ce2bd1 vcc_release_async -EXPORT_SYMBOL net/atm/atm 0xdefbab25 register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xe466fcc9 atm_dev_register -EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/ax25/ax25 0x137b25cb ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0x1477bf03 ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x23bc001f ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x715ede49 ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0x78290916 ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0x81d5f59f ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xcb29c643 ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0xd31dfa22 ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0476ceb6 l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x10facbcd hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1304d644 bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1ed2a076 l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2d3b3428 hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3375e6a8 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3fce92ac bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4368cae7 hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4e4071f2 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4e86d708 bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4f95e2e2 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5772e0c6 l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5fa54641 bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6276df8c hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0x66091a4d hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x67b90da0 hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x725fc06e hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0x777885d3 hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7996b1ec bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7bbd30e4 hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7c424557 hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x811f2e70 l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8209cce4 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x83de5999 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9f441320 bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa0f4b125 hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa6c81db3 bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa7564537 hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa83391e9 __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0188b8d bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb37dadbd bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbc24b122 __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcccf3ff7 bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcfb9b080 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd050d8f0 hci_alloc_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd189a9a4 hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd3eabe99 hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdeccf220 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0xec6cf8a4 hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf4dba71c bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfa62de08 bt_accept_unlink -EXPORT_SYMBOL net/bridge/bridge 0x33bd650a br_should_route_hook -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x62a9dc1a ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x9478ede6 ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xd84c67cc ebt_register_table -EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x22e646e9 caif_disconnect_client -EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative -EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info -EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer -EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x4e31ee72 get_cfcnfg -EXPORT_SYMBOL net/caif/caif 0x5ee3fb7f cfcnfg_add_phy_layer -EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head -EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x909931ce caif_enroll_dev -EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head -EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio -EXPORT_SYMBOL net/caif/caif 0xad9f0635 caif_connect_client -EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/can/can 0x022489fb can_proto_register -EXPORT_SYMBOL net/can/can 0x1a017870 can_send -EXPORT_SYMBOL net/can/can 0x2185ba5c can_rx_register -EXPORT_SYMBOL net/can/can 0x78d178c0 can_rx_unregister -EXPORT_SYMBOL net/can/can 0x8c282324 can_proto_unregister -EXPORT_SYMBOL net/can/can 0xbad5ba93 can_ioctl -EXPORT_SYMBOL net/ceph/libceph 0x01557c65 ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x02f703b2 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init -EXPORT_SYMBOL net/ceph/libceph 0x0c98f696 osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0x152ed9bc ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0x19539a25 ceph_osdc_create_event -EXPORT_SYMBOL net/ceph/libceph 0x1a0e6118 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x1e4360da ceph_oloc_oid_to_pg -EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup -EXPORT_SYMBOL net/ceph/libceph 0x241d01d1 ceph_calc_pg_primary -EXPORT_SYMBOL net/ceph/libceph 0x259779b8 ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0x25e9f8b7 ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0x26282448 ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x28d69360 ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x2a26d9ee osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0x30a7fc2b ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x3cac2f95 ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0x3e3c8ad1 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0x3e938725 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x3f81b30f ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0x3f9be401 ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0x3fdc5117 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options -EXPORT_SYMBOL net/ceph/libceph 0x4278804e ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0x43cd5ead ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part -EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0x44ef223f osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x4601ede6 ceph_monc_request_next_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x47a9920e ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x4881b083 ceph_osdc_cancel_event -EXPORT_SYMBOL net/ceph/libceph 0x4c91bfff ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode -EXPORT_SYMBOL net/ceph/libceph 0x56808d17 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x5c06bc37 ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x5e81462a ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x66714a37 ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0x681a87f8 osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x69c130bc ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x7168b552 ceph_osdc_writepages -EXPORT_SYMBOL net/ceph/libceph 0x724943a5 ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x7a25440e ceph_osdc_set_request_linger -EXPORT_SYMBOL net/ceph/libceph 0x7b3d3851 ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x7d12785f __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x81b75b77 ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x83a30798 osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x84b28927 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0x879ab4d6 ceph_auth_update_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x8957eae5 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x8b4bfe4f ceph_get_direct_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x8be305c5 osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x909a8c07 osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x914f1ace ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x9719fd25 ceph_osdc_build_request -EXPORT_SYMBOL net/ceph/libceph 0x9945d1e5 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup -EXPORT_SYMBOL net/ceph/libceph 0x9c994ea7 ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xa1ebde8f ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xa641475a osd_req_op_cls_response_data -EXPORT_SYMBOL net/ceph/libceph 0xaa1c9958 ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0xaa5b707d ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb19dc152 ceph_pagelist_reserve -EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit -EXPORT_SYMBOL net/ceph/libceph 0xb6fa58e4 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0xb7d08461 ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xbb75a8ce ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xc0a4aa50 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0xc43f8543 osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup -EXPORT_SYMBOL net/ceph/libceph 0xc668fb4a ceph_monc_do_get_version -EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0xc99a1155 ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0xc9a94976 ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init -EXPORT_SYMBOL net/ceph/libceph 0xca42e8c0 ceph_osdc_readpages -EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips -EXPORT_SYMBOL net/ceph/libceph 0xcbaad058 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0xccb6dee2 ceph_messenger_init -EXPORT_SYMBOL net/ceph/libceph 0xd1c58e2c ceph_osdc_put_event -EXPORT_SYMBOL net/ceph/libceph 0xd20afc7a osd_req_op_watch_init -EXPORT_SYMBOL net/ceph/libceph 0xd231026f ceph_monc_got_mdsmap -EXPORT_SYMBOL net/ceph/libceph 0xd2b746f7 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode -EXPORT_SYMBOL net/ceph/libceph 0xd5383217 ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xd6d3cc52 ceph_auth_create_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xd813625e ceph_pagelist_append -EXPORT_SYMBOL net/ceph/libceph 0xd8406fa5 ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0xdd9eb32e ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0xde0eb6ba ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0xe2d9fec5 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0xe2e7b77d ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xe414a9e6 osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xe4eb526a ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0xe4fa63b6 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0xe52e8b7c ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0xe55d9bcd ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0xe945f4e4 ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0xea3d06a1 ceph_messenger_fini -EXPORT_SYMBOL net/ceph/libceph 0xeab669a0 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0xeefbb9db ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0xfee869b9 ceph_client_id -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x2a1d142a dccp_req_err -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x49e640a2 dccp_syn_ack_timeout -EXPORT_SYMBOL net/ieee802154/ieee802154 0x06877ef5 wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0x2a6e8dec wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0x53d235a5 wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0x7899850c wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0xae938453 wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0xc3187bf7 wpan_phy_unregister -EXPORT_SYMBOL net/ipv4/fou 0x0c07b4a3 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0xa1569369 fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0xccca8d0d gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0xed741d6f gue_encap_hlen -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x23d22531 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x3e24fa22 ip_tunnel_dst_reset_all -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x462dca21 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x6e2b1b49 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x9815f385 ip_tunnel_encap -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xe1f3bbdc ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x49a49334 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xa0c82f5e arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xbef92194 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x5fd1266b ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x95b057a4 ipt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xd76f3853 ipt_do_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x1fc5c422 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0x4605eeef xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x535da5f7 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb815ca95 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xdb1279cd ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe324b541 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe6f922e5 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x62cb648b ip6t_unregister_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x698f2b4f ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xb98ce3c8 ip6t_register_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x4d9d56b7 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/tunnel6 0xee7234cc xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x00789199 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x03d198f7 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x0a04f034 ircomm_flow_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x20f7e015 ircomm_connect_response -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x5c47ff64 ircomm_data_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x6d3c80d4 ircomm_control_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x74f49493 ircomm_connect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x8a1faeed ircomm_open -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x8ec4fae0 ircomm_disconnect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xb3cba3d8 ircomm_close -EXPORT_SYMBOL net/irda/irda 0x045e88f7 iriap_close -EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value -EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service -EXPORT_SYMBOL net/irda/irda 0x0963c24b irias_add_string_attrib -EXPORT_SYMBOL net/irda/irda 0x09939c11 irias_add_integer_attrib -EXPORT_SYMBOL net/irda/irda 0x12443524 irlmp_connect_request -EXPORT_SYMBOL net/irda/irda 0x1ddad5e9 irlap_close -EXPORT_SYMBOL net/irda/irda 0x1e6e39c8 alloc_irdadev -EXPORT_SYMBOL net/irda/irda 0x23bbc2ce irias_find_object -EXPORT_SYMBOL net/irda/irda 0x27add674 irttp_data_request -EXPORT_SYMBOL net/irda/irda 0x2b432980 hashbin_get_next -EXPORT_SYMBOL net/irda/irda 0x3033cd50 irlmp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda -EXPORT_SYMBOL net/irda/irda 0x37f9d91b irlmp_data_request -EXPORT_SYMBOL net/irda/irda 0x385847aa irias_delete_object -EXPORT_SYMBOL net/irda/irda 0x38b0e131 irttp_flow_request -EXPORT_SYMBOL net/irda/irda 0x3d128807 async_wrap_skb -EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value -EXPORT_SYMBOL net/irda/irda 0x46b00fdf irias_insert_object -EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service -EXPORT_SYMBOL net/irda/irda 0x5ab74da4 async_unwrap_char -EXPORT_SYMBOL net/irda/irda 0x612baf9c irttp_connect_response -EXPORT_SYMBOL net/irda/irda 0x639a403d irda_device_set_media_busy -EXPORT_SYMBOL net/irda/irda 0x6725964d irttp_open_tsap -EXPORT_SYMBOL net/irda/irda 0x67ab1032 irttp_dup -EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies -EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client -EXPORT_SYMBOL net/irda/irda 0x70a3f20f hashbin_lock_find -EXPORT_SYMBOL net/irda/irda 0x7508d714 iriap_getvaluebyclass_request -EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client -EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client -EXPORT_SYMBOL net/irda/irda 0x7c1504a5 irttp_udata_request -EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert -EXPORT_SYMBOL net/irda/irda 0x84289719 irttp_connect_request -EXPORT_SYMBOL net/irda/irda 0x885969b7 irda_notify_init -EXPORT_SYMBOL net/irda/irda 0x8868222e irlmp_close_lsap -EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack -EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all -EXPORT_SYMBOL net/irda/irda 0x98a8b3b4 hashbin_delete -EXPORT_SYMBOL net/irda/irda 0x9ccbdfca hashbin_insert -EXPORT_SYMBOL net/irda/irda 0xa4bf4866 iriap_open -EXPORT_SYMBOL net/irda/irda 0xac3dc858 irias_add_octseq_attrib -EXPORT_SYMBOL net/irda/irda 0xaeeff2b5 hashbin_find -EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value -EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute -EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request -EXPORT_SYMBOL net/irda/irda 0xc40de448 irlap_open -EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma -EXPORT_SYMBOL net/irda/irda 0xdad6bf65 irttp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0xdc0196c2 hashbin_remove -EXPORT_SYMBOL net/irda/irda 0xddfdca1d irlmp_connect_response -EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint -EXPORT_SYMBOL net/irda/irda 0xe1ba6308 irias_new_object -EXPORT_SYMBOL net/irda/irda 0xe329462a hashbin_get_first -EXPORT_SYMBOL net/irda/irda 0xeb78333e hashbin_remove_this -EXPORT_SYMBOL net/irda/irda 0xec242b93 hashbin_new -EXPORT_SYMBOL net/irda/irda 0xeccee2b0 irlmp_open_lsap -EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries -EXPORT_SYMBOL net/irda/irda 0xf34b452b irttp_close_tsap -EXPORT_SYMBOL net/l2tp/l2tp_core 0xc2a8c05e l2tp_recv_common -EXPORT_SYMBOL net/l2tp/l2tp_ip 0x704216d5 l2tp_ioctl -EXPORT_SYMBOL net/lapb/lapb 0x2d817d68 lapb_register -EXPORT_SYMBOL net/lapb/lapb 0x420e564b lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0x543188d1 lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0x59f2db53 lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0x9276a882 lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0xbdbcc411 lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0xc2434858 lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0xea04df31 lapb_data_request -EXPORT_SYMBOL net/llc/llc 0x0d3a198a llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0x191d0e1a llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0x2a59eab4 llc_sap_open -EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0xab3e87c0 llc_add_pack -EXPORT_SYMBOL net/llc/llc 0xc1aa4fb8 llc_sap_close -EXPORT_SYMBOL net/llc/llc 0xca5bef8e llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0xf04274b8 llc_sap_find -EXPORT_SYMBOL net/mac80211/mac80211 0x01d92d9f ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x063d6582 ieee80211_tx_status_noskb -EXPORT_SYMBOL net/mac80211/mac80211 0x06eca063 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x07d26bd0 ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x07d79190 ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x099fc62f ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0x0df00aaa ieee80211_stop_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x0f49b26f ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x10fd30ce ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x1e364f75 ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x1e8db92d ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0x21ea4cf3 ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x22761cde ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x23d94156 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x24300d33 ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0x260175ac ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x28edd7ad ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x2ca3fee3 ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x2d0e9ebf ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0x2d3e6f37 ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x301075fb ieee80211_get_key_tx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x35e0672c ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x37aa44d5 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x3b857d7b ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x47b2c73c ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0x48782806 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x4cf25452 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0x565cbcec ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x5791c356 ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x5a6c7af1 ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0x6171948c ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x6380d513 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0x650f30fb ieee80211_csa_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0x679444b4 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x6bf0d77b __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x6e4095a1 ieee80211_start_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x6e678800 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x70de7bec ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0x749fa993 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0x75c8afc6 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x76dc2c00 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x78190d2c ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x7cd5d268 ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x7cdad410 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x8284a527 ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0x8583c882 ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x86a30f22 rate_control_send_low -EXPORT_SYMBOL net/mac80211/mac80211 0x8812eb03 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x89bb5d85 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x8e250269 __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x927d2d18 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x93644949 ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x9a04b1ea ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0xa0cdd5e4 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0xa1609daa ieee80211_csa_update_counter -EXPORT_SYMBOL net/mac80211/mac80211 0xa2839ae4 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xab6e7eb0 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0xaebca47f ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xb1c560e1 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0xb3fe5593 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xb90e26de ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0xc02d6128 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xc11ed429 ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xc4e6c734 rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xc6e382a9 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0xc75b69d5 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xca472df1 ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0xd0a56915 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0xd3f31f14 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0xd4768410 wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0xe0a39351 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xe17e8291 ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xe2b63bcb ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0xe3c90f3f ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xe759d272 ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0xe8961aca __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xedacf656 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0xf01d9f73 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0xf6035ae7 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0xf68b74be ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xfb260758 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0xfe4ec9eb ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0x00b39cc3 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x5507578a ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x83684422 ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x8a9be67d ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x9f6e94d1 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0xb200f5cc ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xbc303647 ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0xc7b774c5 ieee802154_wake_queue -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x09da788b ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x39038fdc register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x59d29581 ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5ac54c1a ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6a1fd86f ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x98ad62cd ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa0682f36 ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb2d5debb ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb6c135ba register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc006a4f4 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc3e5e415 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd6eeb735 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf1e95525 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfdb057f5 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x243da70f __nf_ct_ext_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x56e6da59 nf_conntrack_untracked -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x6c1b112b __nf_ct_ext_add_length -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x029dabe1 nf_nat_used_tuple -EXPORT_SYMBOL net/netfilter/nf_nat 0x150d6e08 nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0x1ac768c6 __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x97614347 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0xc2676874 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xf12175f4 nf_xfrm_me_harder -EXPORT_SYMBOL net/netfilter/x_tables 0x198ba23e xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x5fa3da68 xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0x6afc6726 xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x8ed971c0 xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xadf8b887 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0xb740d01d xt_find_target -EXPORT_SYMBOL net/netfilter/x_tables 0xc62aa169 xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xd5354efa xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xdb5b4b61 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0xefcbe023 xt_register_match -EXPORT_SYMBOL net/nfc/hci/hci 0x0ce8e41c nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x23b8ae8a nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0x328dffd7 nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x36ed016c nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x493d9eea nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0x5bf82406 nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0x5f04a0d8 nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0x7622cfcc nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0x771ac460 nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xa84c73d9 nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xc2a2860e nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0xc3ba5842 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0xcb358a6a nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xceac15cf nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xcf88be63 nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0xd84de3ee nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0xde65c293 nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0xe5697b54 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0xe7aef083 nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0xf7eb45e9 nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0xfa2290b1 nfc_hci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x0afeba66 nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x0c7382ef nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x0e8cf572 nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0x1441de7a nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0x2b205d55 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0x383d7f73 nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x3a1cec1e nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x3a41f6fd nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0x3f607959 nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0x446b7429 nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0x482c7d35 nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0x4c3409d1 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0x5e7afe8b nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x5ee00955 nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x7bb095d8 nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x89bed6f6 nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0x8b73b7b9 nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0xa5dc8ec3 nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0xa695b2dc nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0xa8e0cca2 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0xac2de6a5 nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0xb3ff74c1 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xbedf8ca4 nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0xc03d877d nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0xcb8e6103 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0xd80f627e nci_get_conn_info_by_id -EXPORT_SYMBOL net/nfc/nci/nci 0xf677f6dd nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xfef3dcc1 nci_hci_send_event -EXPORT_SYMBOL net/nfc/nfc 0x07d03342 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0x09e8a0e4 nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0x124ede7a nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0x145a30ba nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x224a4d6c __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0x28c57c00 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x3bc23f78 nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x4415c8cf nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0x47851434 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0x4a6d68ef nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0x51414276 nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0x533255b7 nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0x5e24394c nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x67ace31e nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0x8311125f nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0x8cc75a3d nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0x9aacbb21 nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0xb2fde5dd nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xbfe1dca8 nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0xdca30d9e nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0xe7cb8a43 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0xec53cd14 nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0xf2485404 nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0xf30dc659 nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc_digital 0x17ae4567 nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x55686be9 nfc_digital_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xdbc1abed nfc_digital_free_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xf6119817 nfc_digital_register_device -EXPORT_SYMBOL net/phonet/phonet 0x0ee135c2 pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0x151a4722 pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0x27020935 phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0x2d60254a phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0x389f032f pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0x543fa752 pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0xb3c77842 phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0xd8858ed7 phonet_proto_register -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x105de38a rxrpc_kernel_intercept_rx_messages -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x121eadc3 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x2d8605f6 rxrpc_kernel_accept_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x50542a90 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x5c03e2d5 rxrpc_kernel_get_error_number -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x768838d5 rxrpc_kernel_data_delivered -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x812f79f9 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x9082d3b9 rxrpc_kernel_get_abort_code -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xac9fe374 rxrpc_kernel_free_skb -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xcd3746da rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd3486f7c rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe3fbc145 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe8ea632f rxrpc_kernel_is_data_last -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf3dc844c rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xff8a0402 rxrpc_kernel_reject_call -EXPORT_SYMBOL net/sctp/sctp 0x87a109e9 sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x3ff76a3d gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x7d2a568e gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xb186eab7 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/sunrpc 0x2af42612 xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0x68d8a823 xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0xe34db2eb svc_pool_stats_open -EXPORT_SYMBOL net/wimax/wimax 0x4cb60cd6 wimax_reset -EXPORT_SYMBOL net/wimax/wimax 0xe4f73eee wimax_rfkill -EXPORT_SYMBOL net/wireless/cfg80211 0x056e7a19 regulatory_set_wiphy_regd_sync_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x0cf117fd cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x0d678671 wiphy_rfkill_set_hw_state -EXPORT_SYMBOL net/wireless/cfg80211 0x0dbefd77 wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0x0fb5ce0f cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0x118326f4 cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0x118bd24e ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x16b03bd0 cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0x178ecc00 cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0x1d77c20f cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0x1dee7c79 cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x254407bf cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x28b4d64e cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0x28e70c95 cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x29a9ce10 ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0x2b0f639f cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x2e01ac90 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0x2e2b4f73 cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x2f5a32ed cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0x313792ad cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0x31e37c41 cfg80211_sched_scan_stopped_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x3785c893 cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0x389f4af1 wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0x3a4af8e0 wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x3f97bca7 cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0x40a972fc cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0x419b81ef cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x43149cf2 cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x43187bcd cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x438e253f cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x4b95b3d4 regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0x4c8bb094 cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x4eb2aea0 cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0x4f5b5739 cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x556ace0c wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0x55718c84 cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x592f2ed0 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0x607f8280 cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x650c1032 cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x67328ccd cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x68361bb3 cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x81c7c678 cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0x827e9490 cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x83467c09 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x851bc53a cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0x878dea7f cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x905d388a cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x93f498d6 cfg80211_report_obss_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x966ff54d ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x987f5e1d freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0x99007d1d cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x99178f5a regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0x99f433d9 cfg80211_rx_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xa00c859a cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xa1425906 ieee80211_channel_to_frequency -EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xa46a1e46 cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xa9200c08 cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0xa92c47aa __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xb6b26fae wiphy_rfkill_stop_polling -EXPORT_SYMBOL net/wireless/cfg80211 0xbb9260f1 cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0xc0710f1e ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0xc1f54d20 cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0xc3313c4e cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0xc6bf5f57 cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xccc1dc7c cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0xcd09cdd4 cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0xcee91dd3 cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0xcf99f4dd cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0xd3569e5e cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0xd5257f42 cfg80211_roamed_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xd76073d0 __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdc704400 wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0xe2c82a75 ieee80211_data_to_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0xe6f814fd cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xe71a09d4 cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xe866d876 cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0xeb6d7c6c ieee80211_ie_split -EXPORT_SYMBOL net/wireless/cfg80211 0xece856a5 wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0xef083424 ieee80211_data_from_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xf2234978 cfg80211_connect_result -EXPORT_SYMBOL net/wireless/cfg80211 0xf3770408 cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xf37de654 __ieee80211_get_channel -EXPORT_SYMBOL net/wireless/cfg80211 0xf67f02ff cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0xf79a55c6 cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0xfc89826b __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie -EXPORT_SYMBOL net/wireless/lib80211 0x62578b9b lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x67297754 lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x898cb7b4 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0x9a5e8247 lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0xd52c23f2 lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0xeef7e77e lib80211_unregister_crypto_ops -EXPORT_SYMBOL sound/ac97_bus 0x1a4fbef3 ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xda286cee snd_mixer_oss_ioctl_card -EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x63938a9c snd_seq_event_port_attach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x70e459fb snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x889ec160 snd_seq_kernel_client_write_poll -EXPORT_SYMBOL sound/core/seq/snd-seq 0x9f4d5dda snd_seq_kernel_client_enqueue_blocking -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x3c1c614a snd_seq_device_new -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x205395a0 snd_midi_event_encode_byte -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x614705ff snd_midi_event_no_status -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x7746bb9b snd_midi_event_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x79794472 snd_midi_event_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x991c0f60 snd_midi_event_reset_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xef8fa3d2 snd_midi_event_free -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xf3f0324e snd_midi_event_reset_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xf6fdda44 snd_midi_event_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x99065460 snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x08f791b5 snd_component_add -EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program -EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer -EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x1b6ca1f2 snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0x1c3511c6 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0x1d470988 snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0x1f3d6851 snd_device_register -EXPORT_SYMBOL sound/core/snd 0x2191ef99 snd_cards -EXPORT_SYMBOL sound/core/snd 0x2359a636 _snd_ctl_add_slave -EXPORT_SYMBOL sound/core/snd 0x2434547a snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0x2e32fe69 snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x5ec02f50 snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0x602c96f0 copy_to_user_fromio -EXPORT_SYMBOL sound/core/snd 0x60af3c5c snd_device_free -EXPORT_SYMBOL sound/core/snd 0x6615b89c snd_device_new -EXPORT_SYMBOL sound/core/snd 0x6bd24b13 snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable -EXPORT_SYMBOL sound/core/snd 0x7498a54c snd_power_wait -EXPORT_SYMBOL sound/core/snd 0x768fb11e snd_register_device -EXPORT_SYMBOL sound/core/snd 0x7828989b snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0x7ed2f5e3 snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0x819dda58 snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0x8b6448f9 snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0x8ded1d2b snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x950934c1 snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0x96bacdfe snd_card_free -EXPORT_SYMBOL sound/core/snd 0x9afc04d3 snd_card_new -EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id -EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb334a0ae snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0xb88592f4 snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0xbe5f72ce snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0xc30ab60b snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0xc6e22013 snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0xc9b73b56 snd_info_register -EXPORT_SYMBOL sound/core/snd 0xcb143a2a snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0xce3ca308 copy_from_user_toio -EXPORT_SYMBOL sound/core/snd 0xd1807ff6 snd_seq_root -EXPORT_SYMBOL sound/core/snd 0xd1eb32e9 snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0xd2665301 snd_jack_report -EXPORT_SYMBOL sound/core/snd 0xd2a2a1c0 snd_jack_new -EXPORT_SYMBOL sound/core/snd 0xd5bbb8ba snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0xd6287051 snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0xdcf2bb70 snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0xddef05f8 snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0xe5409c7d snd_card_register -EXPORT_SYMBOL sound/core/snd 0xe6cf8f9d snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0xe885863f snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0xed376616 snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0xf53b7773 snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0xf636b612 snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0xf8b0e6ef snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0xf92baf25 snd_card_disconnect -EXPORT_SYMBOL sound/core/snd-hwdep 0x36c13c2a snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any -EXPORT_SYMBOL sound/core/snd-pcm 0x02e5d1f6 snd_pcm_lib_writev -EXPORT_SYMBOL sound/core/snd-pcm 0x049a8515 snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x06ca9f77 snd_dma_alloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x070ae6ea snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x12f50156 snd_pcm_sgbuf_ops_page -EXPORT_SYMBOL sound/core/snd-pcm 0x1736fbd3 snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0x19698e20 snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x20424e2a snd_sgbuf_get_chunk_size -EXPORT_SYMBOL sound/core/snd-pcm 0x2197907f snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0x23563e9c snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0x28dcb7cf snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0x2b9d5688 snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0x2bfa9d58 snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x2c2f8411 snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x2dea94e0 snd_pcm_lib_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x3400941d snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0x364ff9db snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x394feae0 snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x3a9dfed4 snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x3b91f3af snd_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x3bc5921a snd_pcm_lib_mmap_iomem -EXPORT_SYMBOL sound/core/snd-pcm 0x447c0d07 snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x4c7ac09a snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0x4d9b6d35 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x4f184cb5 snd_pcm_lib_readv -EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x52443dbc snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0x52d6494d snd_pcm_notify -EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL sound/core/snd-pcm 0x58025373 snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x5e40810a snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0x5e4205aa snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL sound/core/snd-pcm 0x668443f3 snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width -EXPORT_SYMBOL sound/core/snd-pcm 0x6e546760 snd_pcm_hw_rule_noresample -EXPORT_SYMBOL sound/core/snd-pcm 0x6e87af6a snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x731b7750 snd_pcm_mmap_data -EXPORT_SYMBOL sound/core/snd-pcm 0x8298fd58 snd_pcm_lib_read -EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0xa31c37bc snd_pcm_new_internal -EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xac7b52ab snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0xad4f44e1 snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0xade88e76 snd_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xb65e34f3 snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xc555db4a snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0xc78fccd2 snd_pcm_limit_hw_rates -EXPORT_SYMBOL sound/core/snd-pcm 0xcd664124 snd_pcm_lib_write -EXPORT_SYMBOL sound/core/snd-pcm 0xd18dfa7e snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0xd3fb7aba snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0xd68a0059 snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL sound/core/snd-pcm 0xddd4d895 snd_pcm_suspend -EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xeac4fe11 snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xf01c1fa3 snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xf364d778 snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xf9ae04da _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xfe2d5f8f snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x0bd84681 snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x3b1a1a4f snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x434d9238 snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x5e4e287c snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0x68500534 snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0x7d34b84d snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0x980ad008 snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x984bb8ea snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x98dc9c0d snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0x9c740803 __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x9e46e4a2 snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0x9ecfdc29 snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0xa281dbcb snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0xb1952d03 snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0xb798b213 snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd735d017 snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe171f1e5 __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe21ac3d7 snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0xef870fec snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-timer 0x0273d50f snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0x362bffbc snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0x657294a5 snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0x68099623 snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0x9332995f snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0x95c88c15 snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0xa759e2d7 snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0xb9115bd8 snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0xc87534cd snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0xd2b1ec4f snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0xd3477a02 snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0xdbe9d348 snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0xfc926d30 snd_timer_pause -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x5cb527ca snd_mpu401_uart_new -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x072ea67b snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x15e46df8 snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1a74e6c3 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x3628f46e snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xbc4dfa1e snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc2ce4b62 snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xdc29ccc8 snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xfd3700bf snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xffed11a0 snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x5495fd5f snd_opl4_write_memory -EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x6e062567 snd_opl4_read -EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x8ea8f4ec snd_opl4_write -EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0xb97ce257 snd_opl4_read_memory -EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0xc4481930 snd_opl4_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x16eb4052 snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x39cbae96 snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x40619ae3 snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6e285bbf snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x99a6df18 snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xaffbc86f snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1ee0329 snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xfc418412 snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xfcab3dbe snd_vx_check_reg_bit -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x03ab94d2 iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1daf01db amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1e111df1 cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x272d3cc1 amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2b8a7e04 amdtp_stream_stop -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2dc40013 iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x32e99e66 fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x38ee2252 fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x398579c0 amdtp_stream_start -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5185e78e fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x529df882 avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5659c4e2 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5812b75f cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x624840f4 fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x640cb01e amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6634409e amdtp_stream_pcm_pointer -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6eaa0525 cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6fa573d6 amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x79dff555 fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7c15dc7d fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x89b3b9c6 amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9a51672c snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaa4bc6a0 snd_fw_async_midi_port_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xccbd8dfa amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdb6249ea amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe360e55a amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe47856d6 avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe622ab4e snd_fw_async_midi_port_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe68dadb2 cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe6ad599b avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe6e4494f cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfb231b06 fcp_avc_transaction -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x925647f4 snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xa2b3d295 snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x00de007a snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2cdc9b6b snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x6d253bee snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x9966b2df snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x9b816b0f snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xad666fc0 snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd8593105 snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xfa5000b2 snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x260fe1f6 snd_ak4117_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xb77101f3 snd_ak4117_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xc49e3022 snd_ak4117_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xc4e4c68f snd_ak4117_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xd9a46656 snd_ak4117_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xf61bf989 snd_ak4117_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x21cbd180 snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x2a326709 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x2f56fb7f snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xb9a18bac snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xb7da7b91 snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xe10af9ca snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x2b07ffc8 snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x32e9d81a snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x4022b87a snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x7742e1e8 snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xd334bb55 snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xd3eec367 snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x1fac63f8 snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x2c9260c7 snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x3d2b349f snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0x6ee489a5 snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0x8d910549 snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xfe53c4d6 snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-tea6330t 0x3a60cdeb snd_tea6330t_update_mixer -EXPORT_SYMBOL sound/i2c/snd-tea6330t 0x5244464a snd_tea6330t_detect -EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0x30d76e83 snd_es1688_create -EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0x74c561c8 snd_es1688_mixer_write -EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0x770039cc snd_es1688_mixer -EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0xad8e5682 snd_es1688_reset -EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0xd876f912 snd_es1688_pcm -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x0365e51b snd_gus_dram_read -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x069406a6 snd_gf1_write8 -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x0dbb0e00 snd_gf1_mem_alloc -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x0e7c7d4a snd_gus_use_inc -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x154ed210 snd_gf1_pcm_new -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x19c8c2a6 snd_gf1_peek -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x1c1ce117 snd_gus_interrupt -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x290c0059 snd_gf1_alloc_voice -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x2a16b6d3 snd_gf1_i_write8 -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x2dd1ca31 snd_gf1_look8 -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x3e77abee snd_gf1_dram_addr -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x46db8d67 snd_gf1_lvol_to_gvol_raw -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x4c7c9c83 snd_gus_initialize -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x4e3d30e7 snd_gf1_free_voice -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x5753b50b snd_gus_dram_write -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x606bfe9a snd_gf1_i_look8 -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x64d58f42 snd_gf1_ctrl_stop -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x70e5175b snd_gf1_write16 -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x74d8d3c7 snd_gf1_mem_free -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x81afa030 snd_gf1_translate_freq -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x8309f923 snd_gf1_stop_voice -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xa7f1fa4f snd_gf1_mem_xfree -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xa92915cc snd_gf1_look16 -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xc43a5527 snd_gf1_atten_table -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xd670a495 snd_gf1_write_addr -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xd7bea0fb snd_gus_use_dec -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xd85aef84 snd_gf1_poke -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xe0a76dea snd_gf1_i_look16 -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xeb04999f snd_gf1_rawmidi_new -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xec36c035 snd_gf1_delay -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xece04f63 snd_gus_create -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xf60d4940 snd_gf1_new_mixer -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xf7dba1ac snd_gf1_mem_lock -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x0e096be3 snd_msnd_init_queue -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x2394e6bc snd_msndmix_new -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x29bf9d18 snd_msnd_DAPQ -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x3703aa4c snd_msndmix_force_recsrc -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x3bf86807 snd_msnd_pcm -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x75026b24 snd_msndmidi_input_read -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x8e125197 snd_msnd_upload_host -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x90a45a16 snd_msnd_send_dsp_cmd -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xc4081c97 snd_msnd_DARQ -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xc9a09691 snd_msnd_dsp_halt -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xdcc0aea2 snd_msnd_send_word -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xe9eee0c6 snd_msndmix_setup -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xf64f968f snd_msnd_disable_irq -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xf82d2033 snd_msnd_enable_irq -EXPORT_SYMBOL sound/isa/opti9xx/snd-miro 0x5a48847a snd_aci_get_aci -EXPORT_SYMBOL sound/isa/opti9xx/snd-miro 0x9be82869 snd_aci_cmd -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x0d6322fa snd_sbdsp_command -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x1360b887 snd_sbmixer_suspend -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x401680d8 snd_sbmixer_new -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5188e908 snd_sbdsp_reset -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5b6fbb57 snd_sbmixer_resume -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x97594911 snd_sbmixer_write -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xb786cbdb snd_sbdsp_get_byte -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xdac7b5a7 snd_sbmixer_read -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xe5b0a6ab snd_sbdsp_create -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xf7b654a4 snd_sbmixer_add_ctl -EXPORT_SYMBOL sound/isa/sb/snd-sb16-csp 0x219fd679 snd_sb_csp_new -EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0x8b626e47 snd_sb16dsp_pcm -EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xc32e4f74 snd_sb16dsp_get_pcm_ops -EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xe0b3f690 snd_sb16dsp_interrupt -EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xfefe1004 snd_sb16dsp_configure -EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x38ce7298 snd_sb8dsp_pcm -EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0xaaebe7a6 snd_sb8dsp_interrupt -EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0xb5fb2ace snd_sb8dsp_midi -EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0xe7c6d8e3 snd_sb8dsp_midi_interrupt -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x43469669 snd_emu8000_update_chorus_mode -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x53cafe30 snd_emu8000_poke_dw -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x681fe245 snd_emu8000_init_fm -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x6e8c843a snd_emu8000_update_equalizer -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x71fa4c4d snd_emu8000_dma_chan -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x94cb148a snd_emu8000_poke -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x987dc73f snd_emu8000_peek -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xb25ad229 snd_emu8000_load_chorus_fx -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xc0c89b2a snd_emu8000_peek_dw -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xc43260db snd_emu8000_update_reverb_mode -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xf6fd5ab5 snd_emu8000_load_reverb_fx -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x02cc54bc snd_wss_get_double -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x19e254ed snd_wss_put_single -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x36aac945 snd_wss_info_double -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x43a41d08 snd_wss_out -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x45a43889 snd_wss_mixer -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x54b2cde2 snd_cs4236_ext_in -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x5d72c88d snd_wss_mce_down -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x631c609a snd_wss_chip_id -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x66bae1d2 snd_wss_info_single -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x6cf74273 snd_wss_get_single -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x779da6a1 snd_wss_in -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x77d94222 snd_wss_put_double -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x7b202637 snd_wss_interrupt -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x8019a775 snd_wss_get_pcm_ops -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x80d8e220 snd_wss_timer -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x9f477c4c snd_wss_pcm -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xa831c979 snd_wss_mce_up -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xc8bab4bc snd_wss_create -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xf31a7df5 snd_cs4236_ext_out -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xf82c42da snd_wss_overrange -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0aaecc21 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0d9d7c70 snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0f5c25f8 snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x145d85bc snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x19eb46d4 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4c8ae85d snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x55ec4f33 snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x58ef319f snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x92201615 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x98a0b0d4 snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9cc64c83 snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbf13b9cc snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdb664aab snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe2f5ace0 snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe6bf81ad snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf4ee6fcb snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf733c603 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0x5445d6cd hpi_send_recv -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x00748a57 snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x22ce1078 snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x3d458608 snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4e9dda47 snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x632199f3 snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x6bb53d8c snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb297ea8b snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xfeca2901 snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xffbc83a4 snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x26ac2863 snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x3e3e077f snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xe8425144 snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0205fcf0 oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1ae91e65 oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x25599566 oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2960cbcf oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x318889bd oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x42ba060b oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4e32fd5c oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5d008c8c oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x63814f38 oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x72abead6 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x80ff9f6d oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x820a7cec oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x85565f98 oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8cd51e26 oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb0722217 oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcfdcfbd9 oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd0e39245 oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe255a4ce oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf3898612 oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf392b900 oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf7783cae oxygen_pci_remove -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x12bcde56 snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x18d46df2 snd_trident_stop_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x9a8e5cf2 snd_trident_write_voice_regs -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xcc967da6 snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xf5e9005b snd_trident_start_voice -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x6b7bdd66 tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x788105e0 tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-dsp 0x3e5d208e sst_dma_new -EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-dsp 0xdc045797 sst_dma_free -EXPORT_SYMBOL sound/soc/snd-soc-core 0x1417a0b1 snd_soc_alloc_ac97_codec -EXPORT_SYMBOL sound/soundcore 0x0bc93f19 register_sound_dsp -EXPORT_SYMBOL sound/soundcore 0x303ae27a register_sound_special_device -EXPORT_SYMBOL sound/soundcore 0x3cde7f2d register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x96d0a67d sound_class -EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0xcaef09f8 register_sound_special -EXPORT_SYMBOL sound/soundcore 0xcc17786e register_sound_midi -EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x28f3b46c snd_emux_new -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x519ebb54 snd_emux_free -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x95fccf2c snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xa4188983 snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xa7a38e01 snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xe61fdf37 snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/snd-util-mem 0x1952b668 snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x555b4e28 __snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0x58323fcd snd_util_memhdr_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x658e82c0 snd_util_mem_avail -EXPORT_SYMBOL sound/synth/snd-util-mem 0x6f99c447 __snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x85321ae8 __snd_util_memblk_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0xbe93127f snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0xcec31c86 snd_util_memhdr_new -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xa47a30c8 snd_usbmidi_create -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect -EXPORT_SYMBOL ubuntu/hio/hio 0x0a78f96a ssd_bm_status -EXPORT_SYMBOL ubuntu/hio/hio 0x0e5e5d4a ssd_get_pciaddr -EXPORT_SYMBOL ubuntu/hio/hio 0x1494a73e ssd_reset -EXPORT_SYMBOL ubuntu/hio/hio 0x321e4bc3 ssd_register_event_notifier -EXPORT_SYMBOL ubuntu/hio/hio 0x52085a66 ssd_set_wmode -EXPORT_SYMBOL ubuntu/hio/hio 0x69b2d13d ssd_get_label -EXPORT_SYMBOL ubuntu/hio/hio 0x6bf0f3ed ssd_set_otprotect -EXPORT_SYMBOL ubuntu/hio/hio 0x8cc84ffd ssd_unregister_event_notifier -EXPORT_SYMBOL ubuntu/hio/hio 0xa7e0e2ab ssd_submit_pbio -EXPORT_SYMBOL ubuntu/hio/hio 0xd8b6f665 ssd_get_version -EXPORT_SYMBOL ubuntu/hio/hio 0xe7d2d5b9 ssd_get_temperature -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x002d778d VBoxGuest_RTMpNotificationDeregister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0064d4f7 VBoxGuest_RTSemFastMutexCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x00712528 VBoxGuest_RTAssertMsg2Weak -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x01795170 VBoxGuest_RTMpGetCoreCount -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x03d8513f VBoxGuest_RTThreadSetName -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x05626dc7 VBoxGuest_RTR0MemObjReserveKernelTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0665bcaa VBoxGuest_RTAssertSetMayPanic -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x06ab676b VBoxGuest_RTLogPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0823cb2f VBoxGuest_RTMemAllocTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x08b98b3c VBoxGuest_RTMpCpuIdFromSetIndex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x08d7a261 VBoxGuest_RTThreadSelfName -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x09458185 VBoxGuest_RTR0MemAreKrnlAndUsrDifferent -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0b14ec2c VBoxGuest_RTThreadCreateF -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0b628628 VBoxGuest_RTSemEventMultiDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0b94344b VBoxGuest_g_pszRTAssertExpr -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0d1abebe VBoxGuest_RTLogFlush -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0dfb68c6 VBoxGuest_RTSemEventWait -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0e1a390f VBoxGuest_RTStrToInt8Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x104391d1 VBoxGuest_RTSemMutexDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x113a02d9 VBoxGuest_RTMpOnPair -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x127e9d01 VBoxGuest_RTTimerRequestSystemGranularity -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x143fba5b VBoxGuest_RTThreadPreemptDisable -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x14835127 VBoxGuest_RTAssertMsg2AddWeak -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x16d72922 VBoxGuest_RTR0MemObjIsMapping -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x17d84704 VBoxGuest_RTSpinlockCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x187c16e2 VBoxGuest_RTLogCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x19087f6f VBoxGuest_RTSemEventMultiWaitEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1a79fedb VBoxGuest_RTSemMutexRequestNoResumeDebug -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1abe7e93 VBoxGuest_RTThreadGetNative -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1ad481e4 VBoxGuest_RTLogLogger -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1d042132 VBoxGuest_RTMemContFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1e7216d7 VBoxGuest_RTThreadFromNative -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1efa8169 VBoxGuest_RTThreadUserSignal -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1f152547 VBoxGuest_RTMpGetMaxCpuId -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1fc40aab VBoxGuest_RTR0MemObjReserveUserTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x21b1ee43 VBoxGuest_RTThreadSleepNoLog -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x221205d1 VBoxGuest_RTThreadSetType -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2280771d VBoxGuestIDCCall -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x22bd51c7 VBoxGuest_RTErrConvertToErrno -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x23a552fd VBoxGuest_RTMpIsCpuOnline -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x246391eb VBoxGuest_RTStrToUInt16Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x25938e5f VBoxGuest_RTLogWriteDebugger -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x267da4c4 VBoxGuest_RTThreadIsMain -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x27740cb3 VBoxGuest_RTStrToUInt8Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2902013c VBoxGuest_RTTimerGetSystemGranularity -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x29066860 VBoxGuest_RTStrConvertHexBytes -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2972116c VBoxGuest_RTThreadPreemptIsEnabled -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x29bf3685 VBoxGuest_RTThreadGetName -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2b015c38 VBoxGuest_RTMpOnAll -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2b5f52a8 VBoxGuest_RTMpCurSetIndexAndId -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2bad2a8e VBoxGuest_RTStrToInt16 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2c5b3002 VBoxGuest_RTErrConvertFromErrno -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2d27c026 VBoxGuest_RTSemEventWaitExDebug -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2e136d3c VBoxGuest_RTR0MemObjAllocPhysExTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x309de102 VBoxGuest_RTMpCpuId -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3519743a VBoxGuest_RTMpCurSetIndex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3534ed69 VBoxGuest_RTMemAllocVarTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x353b64a3 VBoxGuest_RTSemMutexRelease -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x353e5a81 VBoxGuest_RTSemEventMultiReset -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x365d44f1 VBoxGuest_RTR0MemObjMapKernelExTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x36e780e0 VBoxGuest_RTStrToUInt8Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x37b2d47a VBoxGuest_RTStrPrintf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x39df70a0 VBoxGuest_RTStrPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3a29bcdb VBoxGuest_RTThreadIsInitialized -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3a77155a VBoxGuest_RTMpOnPairIsConcurrentExecSupported -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3b0a3d87 VBoxGuest_RTMemAllocZVarTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3d00f113 VBoxGuest_g_u32RTAssertLine -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3ed3a918 VBoxGuest_RTAssertMsg1 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3f452f12 VBoxGuest_RTR0MemObjAllocPageTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3f8d56e7 VBoxGuest_RTMemDupTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4002b8b4 VBoxGuest_RTTimeSpecToString -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x405901ff VBoxGuest_RTStrFormatTypeRegister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x428e3456 VBoxGuest_RTR0Term -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x428eb5ba VBoxGuest_RTMemTmpAllocZTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x42c5bff2 VBoxGuest_RTLogRelLogger -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x432b6724 VBoxGuest_RTR0MemObjAllocPhysNCTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x433ceadb VBoxGuest_RTLogWriteStdOut -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4453e900 VBoxGuest_RTR0MemObjProtect -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4484f9ee VBoxGuest_RTTimerStart -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x44ce618e VBoxGuest_RTMemAllocExTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x453e64fb VBoxGuest_RTSemEventMultiSignal -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x45933412 VBoxGuest_RTStrToInt8Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4597652f VBoxGuest_RTStrFormat -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x45d332ae VBoxGuest_RTMemReallocTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x46b36f60 VBoxGuest_RTTimeSpecFromString -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4819f15e VBoxGuest_RTThreadWait -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x48487b79 VBoxGuest_RTLogDefaultInstanceEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4983ea42 VBoxGuest_RTAssertShouldPanic -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4aca506e VBoxGuest_RTStrToUInt32Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4d0161ca VBoxGuest_RTLogBackdoorPrintf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4d47859f VBoxGuest_RTR0MemKernelCopyTo -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4e6d6986 VBoxGuest_RTStrToUInt16 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4e7faa59 VBoxGuest_RTStrToInt64 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x503f488a VBoxGuest_RTLogRelSetDefaultInstance -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5045b702 VBoxGuest_RTLogGetDestinations -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5118e8ae VBoxGuest_RTStrToUInt64 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x52041f46 VBoxGuest_RTThreadPreemptIsPossible -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x53602f45 VBoxGuest_RTMemTmpFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x539dd662 VBoxGuest_RTTimeSystemMilliTS -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x53b772da VBoxGuest_RTAssertSetQuiet -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x543527dc VBoxGuest_RTLogWriteStdErr -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5460fc01 VBoxGuest_RTTimeImplode -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x54abe5d4 VBoxGuest_RTSemMutexRequestNoResume -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x54e45046 VBoxGuest_RTR0MemObjAllocLowTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x55c48692 VBoxGuest_RTMpIsCpuWorkPending -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x57280c42 VBoxGuest_RTR0MemExecDonate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x57406d20 VBoxGuest_RTR0ProcHandleSelf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5929b954 VBoxGuest_RTPowerSignalEvent -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5936a317 VBoxGuest_RTR0MemObjAddress -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x59390acb VBoxGuest_RTTimeIsLeapYear -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5ad3216a VBoxGuest_RTR0MemKernelIsValidAddr -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5b0eaa4d VBoxGuest_RTThreadWaitNoResume -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5c15981f VBoxGuest_RTMemContAlloc -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5ca67994 VBoxGuest_RTLogDestinations -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x613042f7 VBoxGuest_RTR0MemObjMapUserTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x622a261f VBoxGuest_RTPowerNotificationRegister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x622bf330 VBoxGuest_RTMemAllocZTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x62fd45a8 VBoxGuest_RTTimeNanoTS -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x63ba9fd2 VBoxGuest_RTLogGetDefaultInstance -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x64655cd4 VBoxGuest_RTSemEventMultiWaitExDebug -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x64af2463 VBoxGuest_RTStrToInt32 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x650e77e8 VBoxGuest_RTMpGetCount -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x651c778b VBoxGuest_RTSemEventMultiCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6549a3e0 VBoxGuest_RTTimeFromString -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x65b04e5d VBoxGuest_RTStrToUInt64Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x687ae6ac VBoxGuest_RTStrToUInt64Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6a930d21 VBoxGuest_RTTimerCanDoHighResolution -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6bcedab4 VBoxGuest_RTThreadPreemptIsPending -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6c17021e VBoxGuest_RTThreadUserReset -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6c2df755 VBoxGuest_RTAssertMsg1Weak -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6ca5b4ec VBoxGuest_RTSemEventMultiGetResolution -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6f8ed216 VBoxGuest_RTStrToUInt16Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6fd2e761 VBoxGuest_RTTimeNormalize -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x713f25d5 VBoxGuestIDCClose -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x715699a0 VBoxGuest_RTSpinlockDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x72d1c8f4 VBoxGuestIDCOpen -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x73a23c8b VBoxGuest_RTLogRelPrintf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x73f65247 VBoxGuest_RTStrToInt32Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x744623d2 VBoxGuest_RTSemMutexCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x753d3a3a VBoxGuest_RTLogFormatV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x755479c2 VBoxGuest_RTR0MemObjLockKernelTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x75bee68e VBoxGuest_RTThreadIsSelfKnown -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x76608be1 VBoxGuest_RTSemSpinMutexCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x766a8684 VBoxGuest_RTThreadCreateV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x76b885fb VBoxGuest_RTLogGetDefaultInstanceEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x76bb35b9 VBoxGuest_RTLogLoggerEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x76dbecb7 VBoxGuest_RTProcSelf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x77248ef3 VBoxGuest_RTR0MemObjLockUserTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7841b10d VBoxGuest_RTMpIsCpuPossible -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x78ad2401 VBoxGuest_RTStrToInt8 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x797e701f VBoxGuest_RTLogCreateEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x79aefc0b VBoxGuest_RTTimeNow -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7ac53b51 VBoxGuest_RTR0MemUserCopyFrom -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7ae3b63b VBoxGuest_RTStrToUInt32 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7b423f4c VBoxGuest_RTLogGetFlags -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7cef940f VBoxGuest_RTStrToUInt8 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x80162938 VBoxGuest_RTStrFormatV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8229caac VBoxGuest_RTThreadUserWait -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x847577ac VBoxGuest_RTMpGetOnlineCount -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x84e86094 VBoxGuest_RTStrPrintfExV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x854806f2 VBoxGuest_RTSpinlockAcquire -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8587f091 VBoxGuest_RTR0MemUserCopyTo -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x85afce7f VBoxGuest_RTMpNotificationRegister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x867199c4 VBoxGuest_RTMpPokeCpu -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x86f9f023 VBoxGuest_RTSemFastMutexRequest -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x87abe8dd VBoxGuest_RTR0MemObjSize -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8ab21a95 VBoxGuest_RTSemSpinMutexDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8b4fd3ef VBoxGuest_RTTimeSystemNanoTS -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8ff5c8e5 VBoxGuest_RTSemEventMultiWaitNoResume -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x937cd6a2 VBoxGuest_RTLogComPrintf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9474d99a VBoxGuest_RTSemFastMutexDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x951fbe81 VBoxGuest_RTLogLoggerV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x953b2ba4 VBoxGuest_RTLogSetDefaultInstance -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x983f332c VBoxGuest_RTSemSpinMutexRequest -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9853901a VBoxGuest_RTAssertMsg2Add -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x98a8f55f VBoxGuest_RTMpGetPresentCoreCount -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9909ff3d VBoxGuest_g_pszRTAssertFunction -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x993cc778 VBoxGuest_RTLogRelSetBuffering -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x99ee476f VBoxGuest_RTThreadYield -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9b02b021 VBoxGuest_RTThreadSleep -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9be73ec4 VBoxGuest_RTMpCpuIdToSetIndex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9dc75797 VBoxGuest_RTLogBackdoorPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9e97ef59 VBoxGuest_RTSemEventWaitNoResume -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9eb3db26 VBoxGuest_RTR0MemObjAllocPhysTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa21775d1 VBoxGuest_RTSemFastMutexRelease -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa2c23601 VBoxGuest_RTR0MemObjAllocContTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa3ff74bf VBoxGuest_RTStrToInt16Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa52847a2 VBoxGuest_RTR0MemUserIsValidAddr -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa5655a80 VBoxGuest_RTTimerReleaseSystemGranularity -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa582aeba VBoxGuest_RTMemExecFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa5f0f1ad VBoxGuest_RTAssertMsg2 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa61aa915 VBoxGuest_RTR0MemObjFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa6209fc7 VBoxGuest_RTLogPrintf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa74258ab VBoxGuest_RTTimeExplode -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa8a47d40 VBoxGuest_RTLogLoggerExV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xaaab8c57 VBoxGuest_RTLogRelGetDefaultInstanceEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xaadc0b5d VBoxGuest_RTTimerChangeInterval -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xab5ee692 VBoxGuest_RTLogWriteUser -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xab871924 VBoxGuest_RTThreadPreemptIsPendingTrusty -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xacaac41d VBoxGuest_g_szRTAssertMsg1 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xadb5cc54 VBoxGuest_RTStrFormatTypeSetUser -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xae21ae1f VBoxGuest_RTThreadCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb2f248c6 VBoxGuest_RTStrCopyP -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb33ca348 VBoxGuest_RTLogRelPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb3f592b9 VBoxGuest_RTThreadNativeSelf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb4227efb VBoxGuest_RTTimeToString -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb42ea0e3 VBoxGuest_g_pszRTAssertFile -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb5676d46 VBoxGuest_RTLogSetCustomPrefixCallback -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb5ec2977 VBoxGuest_RTStrToInt16Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb6fc848a VBoxGuest_RTStrToUInt32Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb9a86152 VBoxGuest_RTStrFormatNumber -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb9e03c35 VBoxGuest_RTTimerStop -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xba349142 VBoxGuest_RTR0MemObjEnterPhysTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbaa97421 VBoxGuest_g_szRTAssertMsg2 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbaf6967f VBoxGuest_RTR0MemObjGetPagePhysAddr -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbba29a48 VBoxGuest_RTR0MemObjAddressR3 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbbbc6e84 VBoxGuest_RTSemMutexRequest -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbbccb0c7 VBoxGuest_RTTimeMilliTS -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbc7fbd2a VBoxGuest_RTLogFlushRC -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbcd1b6de VBoxGuest_RTSemSpinMutexRelease -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbd0aa67d VBoxGuest_RTLogFlags -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbeed82c5 VBoxGuest_RTSemEventDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbf5b421e VBoxGuest_RTLogComPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc272f283 VBoxGuest_RTLogGroupSettings -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc2e0f25a VBoxGuest_RTMemTmpAllocTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc312f533 VBoxGuest_RTMpIsCpuPresent -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc4b8857d VBoxGuest_RTThreadPreemptRestore -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc4c265c6 VBoxGuest_RTMpGetPresentCount -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc5151dcf VBoxGuest_RTLogDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc56f27ff VBoxGuest_RTR0Init -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc57a9c9b VBoxGuest_RTStrToInt32Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc636859e VBoxGuest_RTThreadUserWaitNoResume -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc6b243bf VBoxGuest_RTTimerDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc7601bb1 VBoxGuest_RTSemEventMultiWait -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc9978a5f VBoxGuest_RTAssertMsg2V -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcb6463c6 VBoxGuest_RTStrFormatTypeDeregister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcdbc5e5d VBoxGuest_RTSemEventCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcdd40e5b VBoxGuest_RTMpOnOthers -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xceb98390 VBoxGuest_RTMpOnSpecific -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd032523c VBoxGuest_RTThreadGetType -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd1c8b171 VBoxGuest_RTStrCopyEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd2ebb507 VBoxGuest_RTMpGetPresentSet -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd38c5d55 VBoxGuest_RTLogCloneRC -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd4f35c7d VBoxGuest_RTSemSpinMutexTryRequest -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd63c8527 VBoxGuest_RTMemFreeEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd76ab832 VBoxGuest_RTMemDupExTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd8730925 VBoxGuest_RTLogRelLoggerV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdd31359f VBoxGuest_RTLogSetDefaultInstanceThread -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdd699fb2 VBoxGuest_RTSemMutexIsOwned -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xde296aea VBoxGuest_RTAssertAreQuiet -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdead7a1c VBoxGuest_RTLogSetBuffering -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdfaa7e65 VBoxGuest_RTSemEventSignal -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe0453bfd VBoxGuest_RTTimerCreateEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe0afcea8 VBoxGuest_RTR0AssertPanicSystem -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe0ebf12c VBoxGuest_RTAssertMsg2WeakV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe16047ab VBoxGuest_RTLogDefaultInstance -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe19acf09 VBoxGuest_RTStrCopy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe208c712 VBoxGuest_RTLogGetGroupSettings -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe2aa3ed6 VBoxGuest_RTR0MemKernelCopyFrom -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe4104f8b VBoxGuest_RTLogFlushToLogger -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe46f3670 VBoxGuest_RTLogRelGetDefaultInstance -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe47b5364 VBoxGuest_RTSemEventGetResolution -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe5908cc3 VBoxGuest_RTStrToInt64Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe59fc65c VBoxGuest_RTLogWriteCom -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe6a00917 VBoxGuest_RTThreadIsInInterrupt -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xebbe4bc3 VBoxGuest_RTThreadIsSelfAlive -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xecd69ee8 VBoxGuest_RTAssertMsg2AddWeakV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xed0424f7 VBoxGuest_RTMemFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xed92363f VBoxGuest_RTR0MemObjMapKernelTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf244ec46 VBoxGuest_RTSemMutexRequestDebug -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf2e6e2c5 VBoxGuest_RTStrPrintfEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf3cd37e7 VBoxGuest_RTSemEventWaitEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf450a3d4 VBoxGuest_RTLogCreateExV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf722f7d1 VBoxGuest_RTMemExecAllocTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf7c384ae VBoxGuest_RTStrToInt64Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf81b13f5 VBoxGuest_RTPowerNotificationDeregister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfb5ca767 VBoxGuest_RTSpinlockRelease -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfcfe8381 VBoxGuest_RTMpGetOnlineSet -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfe4fce41 VBoxGuest_RTAssertMayPanic -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfe5c0dc7 VBoxGuest_RTAssertMsg2AddV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfec59082 VBoxGuest_RTLogDumpPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfec8da5c VBoxGuest_RTMpOnAllIsConcurrentSafe -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xffc16d99 VBoxGuest_RTMpGetSet -EXPORT_SYMBOL vmlinux 0x001ccc6a blk_queue_prep_rq -EXPORT_SYMBOL vmlinux 0x00212194 xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x0024f169 swiotlb_map_sg -EXPORT_SYMBOL vmlinux 0x0027930e user_path_at_empty -EXPORT_SYMBOL vmlinux 0x0027a9ee input_unregister_handler -EXPORT_SYMBOL vmlinux 0x0027e791 clk_get -EXPORT_SYMBOL vmlinux 0x0036d9d1 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0x004a3970 abx500_get_register_page_interruptible -EXPORT_SYMBOL vmlinux 0x0066651f gnttab_alloc_pages -EXPORT_SYMBOL vmlinux 0x00b8c3a7 mempool_alloc -EXPORT_SYMBOL vmlinux 0x00b954e8 swiotlb_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00df6589 dev_mc_flush -EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve -EXPORT_SYMBOL vmlinux 0x0108f1d9 __sb_start_write -EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr -EXPORT_SYMBOL vmlinux 0x01250c93 udp_seq_open -EXPORT_SYMBOL vmlinux 0x012d87f7 xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0x0139b504 cpu_current_top_of_stack -EXPORT_SYMBOL vmlinux 0x013a6d71 udp_proc_register -EXPORT_SYMBOL vmlinux 0x016313b2 set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer -EXPORT_SYMBOL vmlinux 0x01a89c13 dev_printk -EXPORT_SYMBOL vmlinux 0x01c50db6 tcp_proto_cgroup -EXPORT_SYMBOL vmlinux 0x01d64da1 noop_qdisc -EXPORT_SYMBOL vmlinux 0x01d8c6a4 elv_register_queue -EXPORT_SYMBOL vmlinux 0x01dcd194 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x020b244f sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check -EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu -EXPORT_SYMBOL vmlinux 0x023d1d5c unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x02499439 inode_init_always -EXPORT_SYMBOL vmlinux 0x025a12f5 __dax_fault -EXPORT_SYMBOL vmlinux 0x0260ebf3 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x026dba89 remap_vmalloc_range_partial -EXPORT_SYMBOL vmlinux 0x026e9a70 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x027aea27 pipe_lock -EXPORT_SYMBOL vmlinux 0x0280adfe misc_register -EXPORT_SYMBOL vmlinux 0x02934b4c phy_drivers_register -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0x02a5ac2d ppp_input -EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table -EXPORT_SYMBOL vmlinux 0x02c3da01 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0x02e82520 mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string -EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact -EXPORT_SYMBOL vmlinux 0x02f0e1f9 fbcon_set_rotate -EXPORT_SYMBOL vmlinux 0x0311ac01 uart_update_timeout -EXPORT_SYMBOL vmlinux 0x03163977 vm_mmap -EXPORT_SYMBOL vmlinux 0x0330cfd3 proc_mkdir -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x03651ce1 blk_mq_start_request -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x038ccdd1 fb_pan_display -EXPORT_SYMBOL vmlinux 0x038d542b pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0x03ca5790 phy_write_mmd_indirect -EXPORT_SYMBOL vmlinux 0x03f8f5f8 vm_insert_mixed -EXPORT_SYMBOL vmlinux 0x03fbd5c1 netif_wake_subqueue -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x04067b44 blk_queue_resize_tags -EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg -EXPORT_SYMBOL vmlinux 0x0426ba24 idr_for_each -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x0469437a ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x04806d8e bio_clone_fast -EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display -EXPORT_SYMBOL vmlinux 0x049cad05 ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x04afd4fb release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x04c3bb04 nvm_dev_dma_free -EXPORT_SYMBOL vmlinux 0x04d098d0 read_cache_page -EXPORT_SYMBOL vmlinux 0x04d36ce3 dump_truncate -EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi -EXPORT_SYMBOL vmlinux 0x04d8e721 component_match_add -EXPORT_SYMBOL vmlinux 0x04dc5dbb agp_generic_type_to_mask_type -EXPORT_SYMBOL vmlinux 0x04ddab38 agp_allocate_memory -EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol -EXPORT_SYMBOL vmlinux 0x05086d85 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match -EXPORT_SYMBOL vmlinux 0x0515a8fe scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x0550769a xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x055ae76f dev_get_by_name -EXPORT_SYMBOL vmlinux 0x0565a940 __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x056b446f inet_frag_find -EXPORT_SYMBOL vmlinux 0x057596c1 pci_iomap -EXPORT_SYMBOL vmlinux 0x059512c4 xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0x05c4b3b4 devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0x05ca816f fixed_phy_update_state -EXPORT_SYMBOL vmlinux 0x05ccf54c set_pages_array_wb -EXPORT_SYMBOL vmlinux 0x05ceed7a km_state_notify -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x062d25ce jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0x06314c60 tcp_filter -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x0639b6e3 __kernel_write -EXPORT_SYMBOL vmlinux 0x063a3a7c security_path_chmod -EXPORT_SYMBOL vmlinux 0x065c7184 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x065e9833 devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0x065ee03c sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0x0660cef7 __breadahead -EXPORT_SYMBOL vmlinux 0x066ba499 irq_set_chip -EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx -EXPORT_SYMBOL vmlinux 0x068c7263 ioremap_cache -EXPORT_SYMBOL vmlinux 0x0692e941 mmc_hw_reset -EXPORT_SYMBOL vmlinux 0x06ab1b5b bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x06c0dae5 __kernel_fpu_end -EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn -EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 -EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x0736873d vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0x073c01a9 unlink_framebuffer -EXPORT_SYMBOL vmlinux 0x075e152e blk_init_queue -EXPORT_SYMBOL vmlinux 0x07608604 acpi_get_vendor_resource -EXPORT_SYMBOL vmlinux 0x0762ac2d xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x0783176d vfs_mknod -EXPORT_SYMBOL vmlinux 0x078822e4 gen_pool_create -EXPORT_SYMBOL vmlinux 0x078ac149 xfrm_register_km -EXPORT_SYMBOL vmlinux 0x079c7a40 __bio_clone_fast -EXPORT_SYMBOL vmlinux 0x079ce3b0 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free -EXPORT_SYMBOL vmlinux 0x07a4e3d2 tcp_disconnect -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07d50a24 csum_partial -EXPORT_SYMBOL vmlinux 0x07e6e34a tcf_exts_validate -EXPORT_SYMBOL vmlinux 0x07f4e245 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x08397862 d_instantiate_no_diralias -EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x08434a1b param_ops_ullong -EXPORT_SYMBOL vmlinux 0x085749a5 param_set_uint -EXPORT_SYMBOL vmlinux 0x085ebdbf tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x08660847 lwtunnel_encap_del_ops -EXPORT_SYMBOL vmlinux 0x08785c7d devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0x0897287b acpi_disable_all_gpes -EXPORT_SYMBOL vmlinux 0x08a9f595 pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0x08d495af nf_register_hooks -EXPORT_SYMBOL vmlinux 0x08e0f271 tty_devnum -EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0x09384293 dma_find_channel -EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key -EXPORT_SYMBOL vmlinux 0x095ad405 nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0x096d1ad2 dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x0978d581 pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0x09798083 padata_register_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x09893811 kmalloc_dma_caches -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x09c1a5ff passthru_features_check -EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09df3f3e pci_get_subsys -EXPORT_SYMBOL vmlinux 0x09e62cfe blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0x09e88526 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0x09ee8c8d mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x0a25406a __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x0a290432 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class -EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr -EXPORT_SYMBOL vmlinux 0x0a373226 crc32_le_shift -EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell -EXPORT_SYMBOL vmlinux 0x0a53776a filemap_fdatawait -EXPORT_SYMBOL vmlinux 0x0a632fc9 ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0x0a661faa lg_local_unlock -EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0a8c3f01 devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aaab9e1 bioset_create_nobvec -EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0af8cf98 devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x0b0792aa bitmap_start_sync -EXPORT_SYMBOL vmlinux 0x0b082a0d i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0x0b10ece8 param_ops_ulong -EXPORT_SYMBOL vmlinux 0x0b11a133 pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x0b164e33 mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b1d589c nvm_set_rqd_ppalist -EXPORT_SYMBOL vmlinux 0x0b2712ef mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0x0b2ae650 dev_get_flags -EXPORT_SYMBOL vmlinux 0x0b2fb1be gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x0b3c9415 inode_sub_rsv_space -EXPORT_SYMBOL vmlinux 0x0b3eddb1 make_kgid -EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init -EXPORT_SYMBOL vmlinux 0x0b5006f7 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0x0b5a54d2 fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister -EXPORT_SYMBOL vmlinux 0x0b6d8364 try_module_get -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b772283 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0x0b79c6df acpi_pm_device_run_wake -EXPORT_SYMBOL vmlinux 0x0b905c66 __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x0bb8b8a5 pci_biosrom_size -EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bc8a363 scsi_target_resume -EXPORT_SYMBOL vmlinux 0x0bd2199e remove_proc_entry -EXPORT_SYMBOL vmlinux 0x0bd4b214 km_query -EXPORT_SYMBOL vmlinux 0x0be7d4b5 skb_push -EXPORT_SYMBOL vmlinux 0x0bf73ca6 inet_frags_exit_net -EXPORT_SYMBOL vmlinux 0x0c15e917 tcp_read_sock -EXPORT_SYMBOL vmlinux 0x0c281e63 sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat -EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features -EXPORT_SYMBOL vmlinux 0x0c62d9ce blk_requeue_request -EXPORT_SYMBOL vmlinux 0x0c69c353 _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0x0c85e488 devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x0c96cb29 tcp_make_synack -EXPORT_SYMBOL vmlinux 0x0c9999bc netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x0ca11604 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0x0ca7b7a8 acpi_check_region -EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0x0cbb22e4 open_exec -EXPORT_SYMBOL vmlinux 0x0cc3b679 phy_read_mmd_indirect -EXPORT_SYMBOL vmlinux 0x0cdb7d12 __kernel_fpu_begin -EXPORT_SYMBOL vmlinux 0x0cdf81aa secpath_dup -EXPORT_SYMBOL vmlinux 0x0cffde5d inet_sendmsg -EXPORT_SYMBOL vmlinux 0x0d041a98 lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0x0d11fbb9 __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0x0d3dda14 acpi_get_type -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d977aa1 nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft -EXPORT_SYMBOL vmlinux 0x0da9a58b __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x0dab5d40 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex -EXPORT_SYMBOL vmlinux 0x0dcda11b max8925_reg_write -EXPORT_SYMBOL vmlinux 0x0dd599df __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x0dddbf54 tcf_em_unregister -EXPORT_SYMBOL vmlinux 0x0de18095 set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x0dee1b60 key_task_permission -EXPORT_SYMBOL vmlinux 0x0e0d850e xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x0e155eb0 devm_memremap -EXPORT_SYMBOL vmlinux 0x0e2e5aff input_inject_event -EXPORT_SYMBOL vmlinux 0x0e488fbd jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x0e4d685f xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0x0e4dff0d netlink_capable -EXPORT_SYMBOL vmlinux 0x0e59229e setup_new_exec -EXPORT_SYMBOL vmlinux 0x0e5b83cf __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x0e693799 mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec -EXPORT_SYMBOL vmlinux 0x0e7917d2 param_get_long -EXPORT_SYMBOL vmlinux 0x0e8f37fb __d_drop -EXPORT_SYMBOL vmlinux 0x0e99a6ff lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0x0eaf451e hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x0eb867d8 __mutex_init -EXPORT_SYMBOL vmlinux 0x0eb9dc04 sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x0ec0ffbf elevator_alloc -EXPORT_SYMBOL vmlinux 0x0ec2603a nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy -EXPORT_SYMBOL vmlinux 0x0ef5420f tty_port_hangup -EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups -EXPORT_SYMBOL vmlinux 0x0f186f19 generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x0f1aa3c4 phy_ethtool_gset -EXPORT_SYMBOL vmlinux 0x0f1c172f tty_port_init -EXPORT_SYMBOL vmlinux 0x0f28c37d __sock_create -EXPORT_SYMBOL vmlinux 0x0f462070 inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec -EXPORT_SYMBOL vmlinux 0x0f59a33b iov_iter_zero -EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size -EXPORT_SYMBOL vmlinux 0x0f730c3c kmem_cache_create -EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fb32393 input_set_abs_params -EXPORT_SYMBOL vmlinux 0x0fcfb1f9 netdev_notice -EXPORT_SYMBOL vmlinux 0x0fd00a68 acpi_clear_event -EXPORT_SYMBOL vmlinux 0x0fd0cff8 nf_register_hook -EXPORT_SYMBOL vmlinux 0x0fe3445a agp_free_memory -EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress -EXPORT_SYMBOL vmlinux 0x10050c28 get_super_thawed -EXPORT_SYMBOL vmlinux 0x102bcf78 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x102c56de irq_regs -EXPORT_SYMBOL vmlinux 0x102c6644 __blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x103823ea param_set_charp -EXPORT_SYMBOL vmlinux 0x1063d756 dev_driver_string -EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x108f5024 cdrom_open -EXPORT_SYMBOL vmlinux 0x1091836a forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x10c43ad9 crypto_sha256_update -EXPORT_SYMBOL vmlinux 0x10d73826 get_unmapped_area -EXPORT_SYMBOL vmlinux 0x10deb641 file_update_time -EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu -EXPORT_SYMBOL vmlinux 0x10f1ffbd blk_mq_add_to_requeue_list -EXPORT_SYMBOL vmlinux 0x10fd21f4 seq_path -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x11145431 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0x11160e05 kern_path -EXPORT_SYMBOL vmlinux 0x111935dc inet6_offloads -EXPORT_SYMBOL vmlinux 0x1134e328 truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0x1135260f netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x1185b39f tty_port_tty_get -EXPORT_SYMBOL vmlinux 0x1186c72c netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0x118f2c27 request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x119355d4 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned -EXPORT_SYMBOL vmlinux 0x11a37f27 to_ndd -EXPORT_SYMBOL vmlinux 0x11b94a75 filp_open -EXPORT_SYMBOL vmlinux 0x11c121f2 dquot_drop -EXPORT_SYMBOL vmlinux 0x11dd01ad intel_scu_ipc_command -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin -EXPORT_SYMBOL vmlinux 0x11fa9772 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0x11fac0f3 ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier -EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const -EXPORT_SYMBOL vmlinux 0x121b4e4b memremap -EXPORT_SYMBOL vmlinux 0x1250c7e1 _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0x126a969c ihold -EXPORT_SYMBOL vmlinux 0x1273ec1a netdev_boot_setup_check -EXPORT_SYMBOL vmlinux 0x127b6f1f bio_init -EXPORT_SYMBOL vmlinux 0x129278c0 scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0x12989c66 generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x12a1dfa3 gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0x12a2700d agp3_generic_tlbflush -EXPORT_SYMBOL vmlinux 0x12a2f670 scsi_add_device -EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range -EXPORT_SYMBOL vmlinux 0x12b0ba75 kill_litter_super -EXPORT_SYMBOL vmlinux 0x12b1b62f inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x12ba4079 mmc_free_host -EXPORT_SYMBOL vmlinux 0x12c330a3 iget5_locked -EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc -EXPORT_SYMBOL vmlinux 0x12de4012 tcf_register_action -EXPORT_SYMBOL vmlinux 0x12e21d64 block_invalidatepage -EXPORT_SYMBOL vmlinux 0x12ee31e4 udp6_set_csum -EXPORT_SYMBOL vmlinux 0x1304cc31 netpoll_send_skb_on_dev -EXPORT_SYMBOL vmlinux 0x1319449d secure_modules -EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x13307fde vsscanf -EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc -EXPORT_SYMBOL vmlinux 0x133a82e7 tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0x134e09aa pci_read_vpd -EXPORT_SYMBOL vmlinux 0x135f7e4f udp_poll -EXPORT_SYMBOL vmlinux 0x13673266 get_tz_trend -EXPORT_SYMBOL vmlinux 0x1369ead4 fsnotify_put_mark -EXPORT_SYMBOL vmlinux 0x136b1c7d write_inode_now -EXPORT_SYMBOL vmlinux 0x1373db61 serio_unregister_driver -EXPORT_SYMBOL vmlinux 0x13916393 shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0x1392647d dev_load -EXPORT_SYMBOL vmlinux 0x1395aa52 blk_end_request_all -EXPORT_SYMBOL vmlinux 0x13a4d4c0 unload_nls -EXPORT_SYMBOL vmlinux 0x13c4458b scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13d11900 sget -EXPORT_SYMBOL vmlinux 0x13e1b9ca generic_write_checks -EXPORT_SYMBOL vmlinux 0x13e57847 get_user_pages_locked -EXPORT_SYMBOL vmlinux 0x13e88441 pci_get_device -EXPORT_SYMBOL vmlinux 0x13e93847 simple_open -EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation -EXPORT_SYMBOL vmlinux 0x13f48c68 netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0x13f9de34 cpu_info -EXPORT_SYMBOL vmlinux 0x14037dec security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0x1420b379 kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0x143eb10e kdb_current_task -EXPORT_SYMBOL vmlinux 0x144602cd neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0x145b7d14 set_trace_device -EXPORT_SYMBOL vmlinux 0x145f7c4e ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0x14650066 phy_device_create -EXPORT_SYMBOL vmlinux 0x148b380c inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x14aa5b06 __i2c_transfer -EXPORT_SYMBOL vmlinux 0x14b02a7d vm_iomap_memory -EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x14ee0ba6 i2c_register_driver -EXPORT_SYMBOL vmlinux 0x14f80a1f sk_prot_clear_portaddr_nulls -EXPORT_SYMBOL vmlinux 0x150324cf i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0x150389d6 acpi_processor_power_init_bm_check -EXPORT_SYMBOL vmlinux 0x150f6a52 tcp_destroy_cgroup -EXPORT_SYMBOL vmlinux 0x1547bfd6 __wait_on_bit -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x15697e2f __pagevec_lru_add -EXPORT_SYMBOL vmlinux 0x156a8a59 down_trylock -EXPORT_SYMBOL vmlinux 0x15799c11 _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0x158ab7df i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x1599214a __nd_driver_register -EXPORT_SYMBOL vmlinux 0x15a16e52 mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15bcd25d tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0x15c91762 wait_for_key_construction -EXPORT_SYMBOL vmlinux 0x15e7bcb8 tty_unthrottle -EXPORT_SYMBOL vmlinux 0x160ea4c8 sfi_disabled -EXPORT_SYMBOL vmlinux 0x161086f0 release_sock -EXPORT_SYMBOL vmlinux 0x1616cb30 acpi_evaluate_dsm -EXPORT_SYMBOL vmlinux 0x161d5bc6 abort_creds -EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null -EXPORT_SYMBOL vmlinux 0x1670834d kmap -EXPORT_SYMBOL vmlinux 0x167c10ea xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 -EXPORT_SYMBOL vmlinux 0x16809afc param_ops_int -EXPORT_SYMBOL vmlinux 0x1683a50b radix_tree_delete -EXPORT_SYMBOL vmlinux 0x168b07d9 truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0x16a489d2 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0x16c3fb48 pci_clear_master -EXPORT_SYMBOL vmlinux 0x16c83f3d dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0x16dc4d1f fence_init -EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16ef8dcd set_groups -EXPORT_SYMBOL vmlinux 0x17091da3 d_find_alias -EXPORT_SYMBOL vmlinux 0x170c25ee acpi_get_next_object -EXPORT_SYMBOL vmlinux 0x1718ae40 prepare_creds -EXPORT_SYMBOL vmlinux 0x172152d3 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0x17268364 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x1757e000 ps2_command -EXPORT_SYMBOL vmlinux 0x176180ad eth_gro_receive -EXPORT_SYMBOL vmlinux 0x177bc11d inode_change_ok -EXPORT_SYMBOL vmlinux 0x179651ac _raw_read_lock -EXPORT_SYMBOL vmlinux 0x179737da generic_show_options -EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator -EXPORT_SYMBOL vmlinux 0x17c4372e scsi_report_opcode -EXPORT_SYMBOL vmlinux 0x17cf79dd pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x17d9a246 fsnotify_get_group -EXPORT_SYMBOL vmlinux 0x17de7ee4 module_put -EXPORT_SYMBOL vmlinux 0x17ee42b8 devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip -EXPORT_SYMBOL vmlinux 0x17fb6773 tcp_child_process -EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken -EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask -EXPORT_SYMBOL vmlinux 0x18605866 fget -EXPORT_SYMBOL vmlinux 0x1861394d agp_generic_remove_memory -EXPORT_SYMBOL vmlinux 0x18792b10 nf_register_sockopt -EXPORT_SYMBOL vmlinux 0x188054c5 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc -EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x18cda81d dup_iter -EXPORT_SYMBOL vmlinux 0x18d3a711 fb_firmware_edid -EXPORT_SYMBOL vmlinux 0x18d6706c netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x18d96501 atomic64_dec_if_positive_cx8 -EXPORT_SYMBOL vmlinux 0x18e30b6f d_delete -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18f133bf elv_rb_del -EXPORT_SYMBOL vmlinux 0x18f8c394 agp_backend_acquire -EXPORT_SYMBOL vmlinux 0x1901710f mb_cache_entry_release -EXPORT_SYMBOL vmlinux 0x190186b2 padata_do_serial -EXPORT_SYMBOL vmlinux 0x1916e38c _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x191d4d5e vfs_unlink -EXPORT_SYMBOL vmlinux 0x1932df32 genphy_soft_reset -EXPORT_SYMBOL vmlinux 0x193d1ab2 textsearch_register -EXPORT_SYMBOL vmlinux 0x19599ad8 md_write_start -EXPORT_SYMBOL vmlinux 0x195ea613 __inode_permission -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19c37f49 __frontswap_load -EXPORT_SYMBOL vmlinux 0x19cfc2b2 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x19d76c3f inode_init_owner -EXPORT_SYMBOL vmlinux 0x19f46edd input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0x1a06b1e9 devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0x1a208d7e cdev_init -EXPORT_SYMBOL vmlinux 0x1a2d6041 touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x1a42a3dc scsi_block_requests -EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled -EXPORT_SYMBOL vmlinux 0x1a60e503 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch -EXPORT_SYMBOL vmlinux 0x1a97ff88 keyring_clear -EXPORT_SYMBOL vmlinux 0x1aa3e2ec finish_no_open -EXPORT_SYMBOL vmlinux 0x1aafde8a end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0x1adb91bf __init_rwsem -EXPORT_SYMBOL vmlinux 0x1ae09f75 _raw_write_unlock_irq -EXPORT_SYMBOL vmlinux 0x1aeebe4d __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x1afb1aaa acpi_mark_gpe_for_wake -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b1b526c open_check_o_direct -EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents -EXPORT_SYMBOL vmlinux 0x1b3a58d8 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x1b3f3b70 __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0x1b505662 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0x1b50a55c framebuffer_release -EXPORT_SYMBOL vmlinux 0x1b560274 pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x1b570d23 acpi_warning -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b7b7372 dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug -EXPORT_SYMBOL vmlinux 0x1b890d66 nvm_unregister_target -EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip -EXPORT_SYMBOL vmlinux 0x1b928606 inet_select_addr -EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer -EXPORT_SYMBOL vmlinux 0x1bde8566 block_commit_write -EXPORT_SYMBOL vmlinux 0x1be1dd26 lg_global_lock -EXPORT_SYMBOL vmlinux 0x1c114a6a vm_event_states -EXPORT_SYMBOL vmlinux 0x1c13ef9b thaw_super -EXPORT_SYMBOL vmlinux 0x1c1de364 __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x1c267fbc rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0x1c30488d mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x1c4260d8 copy_page_to_iter -EXPORT_SYMBOL vmlinux 0x1c4d69be get_task_exe_file -EXPORT_SYMBOL vmlinux 0x1c4f10ac posix_lock_file -EXPORT_SYMBOL vmlinux 0x1c5902f8 in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x1c686b97 kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0x1c6a33b1 uart_remove_one_port -EXPORT_SYMBOL vmlinux 0x1c787f0c devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x1c7aced8 inet6_getname -EXPORT_SYMBOL vmlinux 0x1c8a04b0 acpi_reset -EXPORT_SYMBOL vmlinux 0x1c95da20 vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0x1c9a3cba kthread_stop -EXPORT_SYMBOL vmlinux 0x1cb47014 __pci_register_driver -EXPORT_SYMBOL vmlinux 0x1cea28c0 set_page_dirty -EXPORT_SYMBOL vmlinux 0x1cf4790d kernel_param_unlock -EXPORT_SYMBOL vmlinux 0x1d0cf2f8 register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x1d101aec inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0x1d1087b9 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0x1d160d5e ___pskb_trim -EXPORT_SYMBOL vmlinux 0x1d608814 start_tty -EXPORT_SYMBOL vmlinux 0x1d6ad94d block_truncate_page -EXPORT_SYMBOL vmlinux 0x1d730cb1 scsi_remove_target -EXPORT_SYMBOL vmlinux 0x1d7a0e8f find_lock_entry -EXPORT_SYMBOL vmlinux 0x1d8abffb __page_symlink -EXPORT_SYMBOL vmlinux 0x1d9ee140 clocksource_unregister -EXPORT_SYMBOL vmlinux 0x1da5ac00 vm_insert_page -EXPORT_SYMBOL vmlinux 0x1db28e86 skb_append -EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1ddbaf21 may_umount_tree -EXPORT_SYMBOL vmlinux 0x1de74f72 acpi_execute_simple_method -EXPORT_SYMBOL vmlinux 0x1deb08b7 dev_mc_add -EXPORT_SYMBOL vmlinux 0x1df15a0a vmalloc_to_page -EXPORT_SYMBOL vmlinux 0x1df55302 sk_net_capable -EXPORT_SYMBOL vmlinux 0x1e02d996 nvm_register_mgr -EXPORT_SYMBOL vmlinux 0x1e036c98 acpi_set_gpe -EXPORT_SYMBOL vmlinux 0x1e047854 warn_slowpath_fmt -EXPORT_SYMBOL vmlinux 0x1e095254 mpage_readpages -EXPORT_SYMBOL vmlinux 0x1e0c2be4 ioremap_wc -EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev -EXPORT_SYMBOL vmlinux 0x1e2d4086 dmam_alloc_noncoherent -EXPORT_SYMBOL vmlinux 0x1e44a22a take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x1e57fa0c nf_log_register -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e75bc82 dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x1e92b14d jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector -EXPORT_SYMBOL vmlinux 0x1edca132 gen_replace_estimator -EXPORT_SYMBOL vmlinux 0x1eebf1a9 textsearch_destroy -EXPORT_SYMBOL vmlinux 0x1efdd169 __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0x1efdd992 vfs_symlink -EXPORT_SYMBOL vmlinux 0x1f10bf2a msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0x1f2cb4fd pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0x1f31309f pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x1f3d1dd6 tcp_poll -EXPORT_SYMBOL vmlinux 0x1f3daa95 scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x1f62afb3 pci_disable_link_state -EXPORT_SYMBOL vmlinux 0x1f68b42b I_BDEV -EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0x1f7f17fa invalidate_partition -EXPORT_SYMBOL vmlinux 0x1f9429bd sock_no_getname -EXPORT_SYMBOL vmlinux 0x1fb7f80c md_cluster_mod -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fc03382 dev_add_offload -EXPORT_SYMBOL vmlinux 0x1fc510cc uart_register_driver -EXPORT_SYMBOL vmlinux 0x1fc70e07 filemap_write_and_wait -EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fd902ec xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag -EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region -EXPORT_SYMBOL vmlinux 0x1ffaca7d dma_ops -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x2005e68a acpi_remove_fixed_event_handler -EXPORT_SYMBOL vmlinux 0x2006798e register_xen_selfballooning -EXPORT_SYMBOL vmlinux 0x20092385 acpi_enter_sleep_state_s4bios -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x201b0ac0 lg_global_unlock -EXPORT_SYMBOL vmlinux 0x20205f64 trace_print_array_seq -EXPORT_SYMBOL vmlinux 0x202f4e92 acpi_extract_package -EXPORT_SYMBOL vmlinux 0x20358b8b find_inode_nowait -EXPORT_SYMBOL vmlinux 0x203b51b3 set_user_nice -EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool -EXPORT_SYMBOL vmlinux 0x20525341 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x20664eae fddi_type_trans -EXPORT_SYMBOL vmlinux 0x206788ab request_key_async -EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq -EXPORT_SYMBOL vmlinux 0x208739f6 acpi_load_table -EXPORT_SYMBOL vmlinux 0x2098d6dd netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20ae58d0 __tracepoint_fence_emit -EXPORT_SYMBOL vmlinux 0x20b9ae06 tty_hung_up_p -EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf -EXPORT_SYMBOL vmlinux 0x20c6192f intel_scu_ipc_ioread32 -EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x20f8309b tty_lock -EXPORT_SYMBOL vmlinux 0x20fb248a max8925_bulk_write -EXPORT_SYMBOL vmlinux 0x2167db87 nla_reserve -EXPORT_SYMBOL vmlinux 0x216cc630 eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x217d7be5 tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0x218d373b fb_show_logo -EXPORT_SYMBOL vmlinux 0x21938902 swiotlb_sync_single_for_device -EXPORT_SYMBOL vmlinux 0x21a701fe fence_signal -EXPORT_SYMBOL vmlinux 0x21b5494c iov_iter_advance -EXPORT_SYMBOL vmlinux 0x21b81b79 parent_mem_cgroup -EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set -EXPORT_SYMBOL vmlinux 0x21e992a5 ida_simple_get -EXPORT_SYMBOL vmlinux 0x21eeb12e generic_setlease -EXPORT_SYMBOL vmlinux 0x21f4eafa input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x21f81cb4 __scsi_print_sense -EXPORT_SYMBOL vmlinux 0x2207a57f prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x2207f389 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x222f6207 __nla_reserve -EXPORT_SYMBOL vmlinux 0x224d3ca3 d_alloc_name -EXPORT_SYMBOL vmlinux 0x22509018 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0x2256fafa div64_u64_rem -EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits -EXPORT_SYMBOL vmlinux 0x2270de96 sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint -EXPORT_SYMBOL vmlinux 0x227d370c blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0x22946cd2 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0x22954e58 __bread_gfp -EXPORT_SYMBOL vmlinux 0x229f78ee dquot_scan_active -EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22b8b50b mmc_alloc_host -EXPORT_SYMBOL vmlinux 0x22bd1cfa blk_integrity_register -EXPORT_SYMBOL vmlinux 0x22beb95d page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x22dfdd06 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x22fc4f3a trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x23048374 tcf_unregister_action -EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs -EXPORT_SYMBOL vmlinux 0x23299226 __skb_gso_segment -EXPORT_SYMBOL vmlinux 0x232d18ec rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0x23360e66 skb_vlan_push -EXPORT_SYMBOL vmlinux 0x2353eca1 phy_connect_direct -EXPORT_SYMBOL vmlinux 0x23570b92 bitmap_unplug -EXPORT_SYMBOL vmlinux 0x23690b32 pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0x236f13ba iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x238b1097 skb_checksum_help -EXPORT_SYMBOL vmlinux 0x2396aa3c generic_removexattr -EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x23a5876e vfs_create -EXPORT_SYMBOL vmlinux 0x23b36f81 mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0x23b751b4 vme_master_mmap -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23c46007 nobh_write_end -EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress -EXPORT_SYMBOL vmlinux 0x23cb741c udp_set_csum -EXPORT_SYMBOL vmlinux 0x23eaa62a kfree_put_link -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x2400b7bc __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x2404feee dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0x24102a8f kernel_sendpage -EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x24537bb7 cpu_tss -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x2464c0b9 pm860x_set_bits -EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf -EXPORT_SYMBOL vmlinux 0x248a90a4 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0x24900b58 mapping_tagged -EXPORT_SYMBOL vmlinux 0x24930512 generic_update_time -EXPORT_SYMBOL vmlinux 0x249d4aff __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x249d799a blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0x24a267da inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0x24d6ce3a scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0x24dc0cd6 unlock_buffer -EXPORT_SYMBOL vmlinux 0x24dc33be phy_attach_direct -EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function -EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register -EXPORT_SYMBOL vmlinux 0x253c5e60 inet_add_protocol -EXPORT_SYMBOL vmlinux 0x2544c12d sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0x254bcacb dqput -EXPORT_SYMBOL vmlinux 0x25522cb4 key_put -EXPORT_SYMBOL vmlinux 0x255f6e0c napi_gro_frags -EXPORT_SYMBOL vmlinux 0x256c36f4 inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0x256e4dc7 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x2595e98c __getblk_slow -EXPORT_SYMBOL vmlinux 0x25b2acbb bdev_stack_limits -EXPORT_SYMBOL vmlinux 0x25b6e12e mmc_can_trim -EXPORT_SYMBOL vmlinux 0x25d833ef blk_queue_free_tags -EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25f77717 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x2636042f blk_put_request -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux -EXPORT_SYMBOL vmlinux 0x2651b7ef block_write_end -EXPORT_SYMBOL vmlinux 0x2655c89c md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0x265762a7 security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0x265c3e17 dquot_destroy -EXPORT_SYMBOL vmlinux 0x268cc6a2 sys_close -EXPORT_SYMBOL vmlinux 0x26a503cc blk_finish_request -EXPORT_SYMBOL vmlinux 0x26aa7eea page_follow_link_light -EXPORT_SYMBOL vmlinux 0x26b3cfcc nf_setsockopt -EXPORT_SYMBOL vmlinux 0x26b92a6f skb_free_datagram -EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0x26bc8ee7 cdev_add -EXPORT_SYMBOL vmlinux 0x26bcfa9c acpi_evaluate_ost -EXPORT_SYMBOL vmlinux 0x26c0f2a7 vga_switcheroo_unregister_client -EXPORT_SYMBOL vmlinux 0x26c16d96 set_anon_super -EXPORT_SYMBOL vmlinux 0x26cb34a2 mempool_create -EXPORT_SYMBOL vmlinux 0x26cd204f qdisc_list_add -EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min -EXPORT_SYMBOL vmlinux 0x26eadfbd get_gendisk -EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler -EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0x275bef41 i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0x27604177 netdev_master_upper_dev_link_private -EXPORT_SYMBOL vmlinux 0x2767d3f2 arp_tbl -EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x27882b9b ida_simple_remove -EXPORT_SYMBOL vmlinux 0x279e9c4b iov_iter_npages -EXPORT_SYMBOL vmlinux 0x27ae7d0c ec_transaction -EXPORT_SYMBOL vmlinux 0x27bb7980 dma_sync_wait -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27be2ed2 clocksource_change_rating -EXPORT_SYMBOL vmlinux 0x27c4dd60 pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0x27e06c4e fget_raw -EXPORT_SYMBOL vmlinux 0x27eb2004 xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0x27fa6775 pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x27fbb8d1 phy_detach -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x282884e1 devm_release_resource -EXPORT_SYMBOL vmlinux 0x284a2696 __secpath_destroy -EXPORT_SYMBOL vmlinux 0x28511692 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x286aa788 inet_frags_init -EXPORT_SYMBOL vmlinux 0x287c6fee vfs_whiteout -EXPORT_SYMBOL vmlinux 0x28939897 give_up_console -EXPORT_SYMBOL vmlinux 0x28982971 release_firmware -EXPORT_SYMBOL vmlinux 0x28984da2 consume_skb -EXPORT_SYMBOL vmlinux 0x289d8a90 lock_sock_fast -EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x28a5deb6 devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x28b715a6 isapnp_cfg_end -EXPORT_SYMBOL vmlinux 0x28d673fb xfrm_input -EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available -EXPORT_SYMBOL vmlinux 0x29127a3b twl6040_reg_read -EXPORT_SYMBOL vmlinux 0x293b4a0b filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0x29459aa2 rt6_lookup -EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0x2960c69c x86_hyper_xen -EXPORT_SYMBOL vmlinux 0x29640e53 lookup_bdev -EXPORT_SYMBOL vmlinux 0x296f25b2 tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x2977055d pci_find_pcie_root_port -EXPORT_SYMBOL vmlinux 0x29787586 sock_no_getsockopt -EXPORT_SYMBOL vmlinux 0x2987b192 replace_mount_options -EXPORT_SYMBOL vmlinux 0x29bb4c07 jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0x29bdf447 tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x29cc5626 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0x29dfb488 genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x29e1bd08 __block_write_begin -EXPORT_SYMBOL vmlinux 0x29ecba14 of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0x29fdda53 kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0x2a0a88f5 sock_create_lite -EXPORT_SYMBOL vmlinux 0x2a1ec6b3 __ethtool_get_settings -EXPORT_SYMBOL vmlinux 0x2a2f50fa jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2a3d50a2 skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x2a479f27 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x2a565a25 wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0x2a5def2f intel_scu_ipc_iowrite32 -EXPORT_SYMBOL vmlinux 0x2a8ad21a kobject_set_name -EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp -EXPORT_SYMBOL vmlinux 0x2aa18544 __inet_hash -EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy -EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat -EXPORT_SYMBOL vmlinux 0x2ad06e81 dev_change_proto_down -EXPORT_SYMBOL vmlinux 0x2ad98b91 pci_find_capability -EXPORT_SYMBOL vmlinux 0x2addc716 vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0x2af36f9d neigh_app_ns -EXPORT_SYMBOL vmlinux 0x2af440ca serio_rescan -EXPORT_SYMBOL vmlinux 0x2afdb485 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x2afe166a sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x2b22c5c3 blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 -EXPORT_SYMBOL vmlinux 0x2b53c601 devfreq_resume_device -EXPORT_SYMBOL vmlinux 0x2b62db6a balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0x2b68bd7a pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0x2b6a77d8 devm_gpio_free -EXPORT_SYMBOL vmlinux 0x2b8a1c65 filemap_fault -EXPORT_SYMBOL vmlinux 0x2b8f0a2d mdiobus_write -EXPORT_SYMBOL vmlinux 0x2b94a4a1 generic_getxattr -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency -EXPORT_SYMBOL vmlinux 0x2bade453 sock_no_ioctl -EXPORT_SYMBOL vmlinux 0x2bb55d6e acpi_remove_notify_handler -EXPORT_SYMBOL vmlinux 0x2bbf5a29 tty_unregister_device -EXPORT_SYMBOL vmlinux 0x2bc3f200 __get_user_pages -EXPORT_SYMBOL vmlinux 0x2bfeb410 acpi_get_handle -EXPORT_SYMBOL vmlinux 0x2c002a80 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x2c06e087 dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x2c160e6e flow_cache_fini -EXPORT_SYMBOL vmlinux 0x2c22798c lwtunnel_input -EXPORT_SYMBOL vmlinux 0x2c2487c7 blkdev_put -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c2a2c3d pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x2c5a11b6 netif_device_attach -EXPORT_SYMBOL vmlinux 0x2c7ae0ba scsi_host_get -EXPORT_SYMBOL vmlinux 0x2c920de0 sk_alloc -EXPORT_SYMBOL vmlinux 0x2c9c3484 xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x2ca319a6 wrmsrl_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x2ca7a371 save_mount_options -EXPORT_SYMBOL vmlinux 0x2cadd9a8 read_cache_pages -EXPORT_SYMBOL vmlinux 0x2caedf33 kernel_write -EXPORT_SYMBOL vmlinux 0x2cb49a3b udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0x2cc40ecf fence_remove_callback -EXPORT_SYMBOL vmlinux 0x2cc87804 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0x2cca767f tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0x2cdbfef5 uart_get_divisor -EXPORT_SYMBOL vmlinux 0x2cdd230b pcim_iomap -EXPORT_SYMBOL vmlinux 0x2ce90c6e input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x2cf31c27 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d144e21 rdmsrl_on_cpu -EXPORT_SYMBOL vmlinux 0x2d1ebf6e ioctl_by_bdev -EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d37342e cpu_online_mask -EXPORT_SYMBOL vmlinux 0x2d458469 unlock_new_inode -EXPORT_SYMBOL vmlinux 0x2d5a86d3 sb_set_blocksize -EXPORT_SYMBOL vmlinux 0x2d6c7f01 inet6_del_offload -EXPORT_SYMBOL vmlinux 0x2d719a59 netlink_unicast -EXPORT_SYMBOL vmlinux 0x2d758878 scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0x2d7fb3c6 generic_listxattr -EXPORT_SYMBOL vmlinux 0x2d836412 elv_rb_former_request -EXPORT_SYMBOL vmlinux 0x2d8b4a58 pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0x2dae47d0 get_io_context -EXPORT_SYMBOL vmlinux 0x2dba3bee pcim_enable_device -EXPORT_SYMBOL vmlinux 0x2dc7c7a8 path_get -EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu -EXPORT_SYMBOL vmlinux 0x2dd2b802 put_page -EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink -EXPORT_SYMBOL vmlinux 0x2ddbe413 dev_change_carrier -EXPORT_SYMBOL vmlinux 0x2dedc4c2 acpi_format_exception -EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write -EXPORT_SYMBOL vmlinux 0x2dff47bb swiotlb_alloc_coherent -EXPORT_SYMBOL vmlinux 0x2e0016e9 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0x2e0499c4 __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put -EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies -EXPORT_SYMBOL vmlinux 0x2e2d3e96 tcp_recvmsg -EXPORT_SYMBOL vmlinux 0x2e2dc3aa __tracepoint_fence_annotate_wait_on -EXPORT_SYMBOL vmlinux 0x2e2f834c nvm_submit_ppa -EXPORT_SYMBOL vmlinux 0x2e40fa72 key_payload_reserve -EXPORT_SYMBOL vmlinux 0x2e4140fa inode_reclaim_rsv_space -EXPORT_SYMBOL vmlinux 0x2e427a3d dev_activate -EXPORT_SYMBOL vmlinux 0x2e829246 kill_fasync -EXPORT_SYMBOL vmlinux 0x2e832f1b search_binary_handler -EXPORT_SYMBOL vmlinux 0x2e8a80b1 input_register_handler -EXPORT_SYMBOL vmlinux 0x2e90bafb inet_csk_accept -EXPORT_SYMBOL vmlinux 0x2eb3f31a fput -EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x2ed14054 nf_unregister_hooks -EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource -EXPORT_SYMBOL vmlinux 0x2f0c8207 sb_min_blocksize -EXPORT_SYMBOL vmlinux 0x2f30f36f devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device -EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag -EXPORT_SYMBOL vmlinux 0x2f841ae5 twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0x2f962e1d sg_miter_next -EXPORT_SYMBOL vmlinux 0x2fa6da06 inet_frag_kill -EXPORT_SYMBOL vmlinux 0x2fa754a2 mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0x2fab456a udp_disconnect -EXPORT_SYMBOL vmlinux 0x2fb5b881 vmap -EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fb8da7c dst_init -EXPORT_SYMBOL vmlinux 0x2fca9456 __pci_enable_wake -EXPORT_SYMBOL vmlinux 0x2fcc3438 sock_no_shutdown -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2fefafb6 devm_gpiod_get_index -EXPORT_SYMBOL vmlinux 0x2ff7ba02 jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0x2ff8ae36 ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x2ffb2e24 cfb_imageblit -EXPORT_SYMBOL vmlinux 0x3003d964 nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0x301d86db rtnl_notify -EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command -EXPORT_SYMBOL vmlinux 0x3027b7f8 __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0x30313157 sock_create_kern -EXPORT_SYMBOL vmlinux 0x304d6ce3 amd_northbridges -EXPORT_SYMBOL vmlinux 0x305e718c first_ec -EXPORT_SYMBOL vmlinux 0x306396df __cleancache_put_page -EXPORT_SYMBOL vmlinux 0x307384f7 scm_fp_dup -EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable -EXPORT_SYMBOL vmlinux 0x307c54cd iov_iter_fault_in_readable -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30b04526 ida_init -EXPORT_SYMBOL vmlinux 0x30c3d516 lockref_put_return -EXPORT_SYMBOL vmlinux 0x30dfba16 __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0x30f688a7 neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x31089e4e dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x310917fe sort -EXPORT_SYMBOL vmlinux 0x310a1b07 blkdev_fsync -EXPORT_SYMBOL vmlinux 0x31296437 scsi_execute_req_flags -EXPORT_SYMBOL vmlinux 0x312d1bfc pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0x3133a979 param_get_int -EXPORT_SYMBOL vmlinux 0x3137c4d2 __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0x31380354 getrawmonotonic64 -EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present -EXPORT_SYMBOL vmlinux 0x3147857d default_red -EXPORT_SYMBOL vmlinux 0x31493dab inet_bind -EXPORT_SYMBOL vmlinux 0x316bbddd cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear -EXPORT_SYMBOL vmlinux 0x3191f109 __krealloc -EXPORT_SYMBOL vmlinux 0x31d1efa2 PDE_DATA -EXPORT_SYMBOL vmlinux 0x31e76b57 recalibrate_cpu_khz -EXPORT_SYMBOL vmlinux 0x31ec44a0 _raw_read_unlock_bh -EXPORT_SYMBOL vmlinux 0x31f0bb78 __kmap_atomic_idx -EXPORT_SYMBOL vmlinux 0x31f7f4b9 ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0x3202435a wrmsr_safe_regs -EXPORT_SYMBOL vmlinux 0x3204b120 phy_register_fixup -EXPORT_SYMBOL vmlinux 0x32233587 dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src -EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom -EXPORT_SYMBOL vmlinux 0x3268aabf seq_release_private -EXPORT_SYMBOL vmlinux 0x326cdcfa tcf_exts_change -EXPORT_SYMBOL vmlinux 0x327fadac xfrm_prepare_input -EXPORT_SYMBOL vmlinux 0x3290d164 netdev_update_features -EXPORT_SYMBOL vmlinux 0x32916f31 md_set_array_sectors -EXPORT_SYMBOL vmlinux 0x32984d80 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x329e2a89 kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0x32b5fa2f mem_section -EXPORT_SYMBOL vmlinux 0x32d5b76b bitmap_endwrite -EXPORT_SYMBOL vmlinux 0x32d74309 __dquot_transfer -EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x32e00dd1 bitmap_end_sync -EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string -EXPORT_SYMBOL vmlinux 0x32f3ef86 pci_dev_driver -EXPORT_SYMBOL vmlinux 0x32ff434a cdrom_mode_select -EXPORT_SYMBOL vmlinux 0x3313990f input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0x333f10ef tcf_hash_check -EXPORT_SYMBOL vmlinux 0x33740a4a clk_add_alias -EXPORT_SYMBOL vmlinux 0x337f607b gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x3388da3e fbcon_rotate_cw -EXPORT_SYMBOL vmlinux 0x338a344f phy_connect -EXPORT_SYMBOL vmlinux 0x338cd8f8 dev_close -EXPORT_SYMBOL vmlinux 0x338ef676 register_md_personality -EXPORT_SYMBOL vmlinux 0x339804e3 register_shrinker -EXPORT_SYMBOL vmlinux 0x339f2831 ilookup5 -EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x33d27f41 eth_header_cache_update -EXPORT_SYMBOL vmlinux 0x33d55ffa nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x33d7f87c mmc_remove_host -EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x33deeb9a bioset_free -EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x33f792a7 nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0x33f91746 devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0x341aab31 security_d_instantiate -EXPORT_SYMBOL vmlinux 0x342f60fe apm_info -EXPORT_SYMBOL vmlinux 0x3436f104 param_set_short -EXPORT_SYMBOL vmlinux 0x34460d4b bitmap_startwrite -EXPORT_SYMBOL vmlinux 0x344f84cb pnp_is_active -EXPORT_SYMBOL vmlinux 0x3464e888 max8925_bulk_read -EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin -EXPORT_SYMBOL vmlinux 0x347013de nla_validate -EXPORT_SYMBOL vmlinux 0x34763859 scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0x3497fd2f vlan_uses_dev -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34b5a437 netif_skb_features -EXPORT_SYMBOL vmlinux 0x34b6095a param_set_long -EXPORT_SYMBOL vmlinux 0x34b8d6a8 invalidate_bdev -EXPORT_SYMBOL vmlinux 0x34c47e2a copy_page_from_iter -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x3502c833 netif_carrier_off -EXPORT_SYMBOL vmlinux 0x35082b39 sock_no_listen -EXPORT_SYMBOL vmlinux 0x350c46d5 tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x35118245 dma_common_get_sgtable -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x352cdf7c neigh_table_clear -EXPORT_SYMBOL vmlinux 0x3531da0a rtmsg_ifinfo -EXPORT_SYMBOL vmlinux 0x35368b42 jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x353de98f cmdline_parts_parse -EXPORT_SYMBOL vmlinux 0x353e21e3 acpi_bios_warning -EXPORT_SYMBOL vmlinux 0x3541ce6e nd_region_acquire_lane -EXPORT_SYMBOL vmlinux 0x35580e3c mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x359b88fc nvm_unregister_mgr -EXPORT_SYMBOL vmlinux 0x35a0dabd lock_rename -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35b03722 pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0x35cfe8f2 scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0x35e1e1d7 put_disk -EXPORT_SYMBOL vmlinux 0x35ea788d nf_nat_decode_session_hook -EXPORT_SYMBOL vmlinux 0x35ed7c39 jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x35ffb1a9 dev_trans_start -EXPORT_SYMBOL vmlinux 0x36082b85 devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x361e2a18 pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x362bb1d5 led_set_brightness -EXPORT_SYMBOL vmlinux 0x362dbb20 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x363a8164 seq_read -EXPORT_SYMBOL vmlinux 0x364c53d2 __find_get_block -EXPORT_SYMBOL vmlinux 0x364f76a1 inet_addr_type -EXPORT_SYMBOL vmlinux 0x365d8268 bio_split -EXPORT_SYMBOL vmlinux 0x367ba856 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x368d30da tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc -EXPORT_SYMBOL vmlinux 0x36c6af51 intel_scu_ipc_iowrite8 -EXPORT_SYMBOL vmlinux 0x36cc1e3a tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x36e57852 pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0x36fdda67 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x370f9850 efi -EXPORT_SYMBOL vmlinux 0x371a3764 flush_old_exec -EXPORT_SYMBOL vmlinux 0x373a41e1 unregister_console -EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x374f4028 inet_del_offload -EXPORT_SYMBOL vmlinux 0x37556a11 tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0x3779c289 unlock_rename -EXPORT_SYMBOL vmlinux 0x37945a6b seq_printf -EXPORT_SYMBOL vmlinux 0x379dee5f trace_print_symbols_seq_u64 -EXPORT_SYMBOL vmlinux 0x37a40563 i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x37b5cce3 tcp_prequeue -EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37c664dd padata_unregister_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date -EXPORT_SYMBOL vmlinux 0x37e40384 dentry_path_raw -EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 -EXPORT_SYMBOL vmlinux 0x37edb122 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x38099e13 wrmsrl_on_cpu -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x381ccc13 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x38427830 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x3855d144 inet_accept -EXPORT_SYMBOL vmlinux 0x385c3fc8 blkdev_get -EXPORT_SYMBOL vmlinux 0x3860326c blk_integrity_merge_bio -EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x388799f6 unregister_kmmio_probe -EXPORT_SYMBOL vmlinux 0x38965298 mpage_readpage -EXPORT_SYMBOL vmlinux 0x38a3c6a3 dquot_initialize -EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list -EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38b94eaf __alloc_skb -EXPORT_SYMBOL vmlinux 0x38b97768 nf_log_set -EXPORT_SYMBOL vmlinux 0x38bc6643 vfs_getattr -EXPORT_SYMBOL vmlinux 0x38c39592 bdput -EXPORT_SYMBOL vmlinux 0x38c9c654 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0x38d19300 nvm_dev_factory -EXPORT_SYMBOL vmlinux 0x38dfcc9f dev_get_nest_level -EXPORT_SYMBOL vmlinux 0x38e31626 input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0x38e45b33 fbcon_rotate_ccw -EXPORT_SYMBOL vmlinux 0x38f0101a netif_rx_ni -EXPORT_SYMBOL vmlinux 0x3906d2d4 mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages -EXPORT_SYMBOL vmlinux 0x3909b25b clkdev_alloc -EXPORT_SYMBOL vmlinux 0x3925aa98 lro_flush_all -EXPORT_SYMBOL vmlinux 0x39395eb9 tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x393de488 d_invalidate -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x39567a42 devm_gpiod_get_optional -EXPORT_SYMBOL vmlinux 0x395e4399 iget_locked -EXPORT_SYMBOL vmlinux 0x3972e289 sk_stream_write_space -EXPORT_SYMBOL vmlinux 0x39755275 __destroy_inode -EXPORT_SYMBOL vmlinux 0x3975f8d9 sk_mc_loop -EXPORT_SYMBOL vmlinux 0x39793a85 arp_xmit -EXPORT_SYMBOL vmlinux 0x398a86ed nd_integrity_init -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x399c9a96 force_sig -EXPORT_SYMBOL vmlinux 0x399e86c7 tcf_hash_cleanup -EXPORT_SYMBOL vmlinux 0x39a055f3 acpi_remove_gpe_handler -EXPORT_SYMBOL vmlinux 0x39a20d6f netdev_warn -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39c556bd vfs_statfs -EXPORT_SYMBOL vmlinux 0x39f1c2f4 ida_get_new_above -EXPORT_SYMBOL vmlinux 0x39f1d7f3 mntget -EXPORT_SYMBOL vmlinux 0x3a01f12c acl_by_type -EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify -EXPORT_SYMBOL vmlinux 0x3a0b2c07 d_instantiate -EXPORT_SYMBOL vmlinux 0x3a1ac054 set_normalized_timespec64 -EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush -EXPORT_SYMBOL vmlinux 0x3a382843 pci_get_slot -EXPORT_SYMBOL vmlinux 0x3a3cb602 dst_release -EXPORT_SYMBOL vmlinux 0x3a67cdce __insert_inode_hash -EXPORT_SYMBOL vmlinux 0x3a718f62 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region -EXPORT_SYMBOL vmlinux 0x3aafe185 security_mmap_file -EXPORT_SYMBOL vmlinux 0x3af9ab0f netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0x3af9cd9e tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x3afd0563 freezing_slow_path -EXPORT_SYMBOL vmlinux 0x3b201620 machine_real_restart -EXPORT_SYMBOL vmlinux 0x3b57eb1f free_user_ns -EXPORT_SYMBOL vmlinux 0x3b5c542a sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b6f6cd2 udp_table -EXPORT_SYMBOL vmlinux 0x3b920b2d abx500_startup_irq_enabled -EXPORT_SYMBOL vmlinux 0x3b9b6cf8 kmalloc_caches -EXPORT_SYMBOL vmlinux 0x3bb5114a prepare_to_wait -EXPORT_SYMBOL vmlinux 0x3bc1bd17 mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0x3bcb339e mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x3bec3269 __nd_iostat_start -EXPORT_SYMBOL vmlinux 0x3bec6ac5 generic_read_dir -EXPORT_SYMBOL vmlinux 0x3bf4429e bio_add_pc_page -EXPORT_SYMBOL vmlinux 0x3c031bac param_get_byte -EXPORT_SYMBOL vmlinux 0x3c0fc2ea dev_queue_xmit -EXPORT_SYMBOL vmlinux 0x3c114938 dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0x3c285b9a tcp_init_sock -EXPORT_SYMBOL vmlinux 0x3c2e774c gen_pool_add_virt -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c4ddc1b blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0x3c5077e4 clk_register_clkdevs -EXPORT_SYMBOL vmlinux 0x3c587492 generic_pipe_buf_confirm -EXPORT_SYMBOL vmlinux 0x3c745511 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull -EXPORT_SYMBOL vmlinux 0x3c876ec5 disk_stack_limits -EXPORT_SYMBOL vmlinux 0x3c9306da device_get_mac_address -EXPORT_SYMBOL vmlinux 0x3cb3931b sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x3cb54b6c cpufreq_global_kobject -EXPORT_SYMBOL vmlinux 0x3cbbbef8 inet_frag_destroy -EXPORT_SYMBOL vmlinux 0x3cd062b0 elevator_init -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3cee17cb mmc_read_bkops_status -EXPORT_SYMBOL vmlinux 0x3cf81a49 security_path_mkdir -EXPORT_SYMBOL vmlinux 0x3d1346e6 current_task -EXPORT_SYMBOL vmlinux 0x3d1391e2 _raw_read_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x3d1e7350 mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0x3d2c4c02 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x3d63481b generic_shutdown_super -EXPORT_SYMBOL vmlinux 0x3d6b19e7 cfb_copyarea -EXPORT_SYMBOL vmlinux 0x3d7c1ed7 msrs_alloc -EXPORT_SYMBOL vmlinux 0x3d9e1c55 xfrm_register_mode -EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start -EXPORT_SYMBOL vmlinux 0x3da19c2c neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x3da47add inode_needs_sync -EXPORT_SYMBOL vmlinux 0x3da4900a stop_tty -EXPORT_SYMBOL vmlinux 0x3da9a87b param_set_ulong -EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3df5a1bd blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x3df5de90 lock_fb_info -EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e28fb61 cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0x3e2ae3a8 acpi_release_global_lock -EXPORT_SYMBOL vmlinux 0x3e3ac71a frontswap_register_ops -EXPORT_SYMBOL vmlinux 0x3e3c6f01 eth_header_cache -EXPORT_SYMBOL vmlinux 0x3e654f49 acpi_decode_pld_buffer -EXPORT_SYMBOL vmlinux 0x3e6d4c1c sock_kfree_s -EXPORT_SYMBOL vmlinux 0x3e722aeb kthread_create_on_node -EXPORT_SYMBOL vmlinux 0x3e7aff17 posix_test_lock -EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource -EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get -EXPORT_SYMBOL vmlinux 0x3ea61732 ip_route_input_noref -EXPORT_SYMBOL vmlinux 0x3ea8ccd5 dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0x3ec40c8d __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0x3ed556c8 crypto_sha512_update -EXPORT_SYMBOL vmlinux 0x3ef78d80 vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x3eff5ac2 intel_scu_ipc_writev -EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep -EXPORT_SYMBOL vmlinux 0x3f20ca97 rtc_lock -EXPORT_SYMBOL vmlinux 0x3f21707f module_layout -EXPORT_SYMBOL vmlinux 0x3f220d88 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x3f257516 security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0x3f28cfb5 __frontswap_test -EXPORT_SYMBOL vmlinux 0x3f3d9f12 serio_unregister_port -EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f52b46d tty_register_driver -EXPORT_SYMBOL vmlinux 0x3f5e87da dmam_pool_create -EXPORT_SYMBOL vmlinux 0x3f616ce2 queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0x3f7ad9fa ps2_init -EXPORT_SYMBOL vmlinux 0x3fa03cee phy_start -EXPORT_SYMBOL vmlinux 0x3faac9c8 nlmsg_notify -EXPORT_SYMBOL vmlinux 0x3fb5cad9 input_unregister_device -EXPORT_SYMBOL vmlinux 0x3fc0a4ba inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x3fec048f sg_next -EXPORT_SYMBOL vmlinux 0x3fecb184 submit_bio_wait -EXPORT_SYMBOL vmlinux 0x3fff658d inet_listen -EXPORT_SYMBOL vmlinux 0x402b8281 __request_module -EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev -EXPORT_SYMBOL vmlinux 0x403d1e7c tcp_parse_options -EXPORT_SYMBOL vmlinux 0x40480671 nd_btt_probe -EXPORT_SYMBOL vmlinux 0x405069ce tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump -EXPORT_SYMBOL vmlinux 0x405a93f9 scsi_host_put -EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds -EXPORT_SYMBOL vmlinux 0x406d2d87 key_validate -EXPORT_SYMBOL vmlinux 0x407c05e5 vfs_fsync_range -EXPORT_SYMBOL vmlinux 0x40836ce5 proto_register -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x4097fa45 acpi_read_bit_register -EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x40991aa2 d_set_d_op -EXPORT_SYMBOL vmlinux 0x40a17998 ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x40a2d1dd dm_table_get_size -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40b4c120 sock_get_timestampns -EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0x40c3f909 __nla_put -EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40c89d46 acpi_get_table_by_index -EXPORT_SYMBOL vmlinux 0x40cac468 netdev_change_features -EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40ec73d8 import_iovec -EXPORT_SYMBOL vmlinux 0x4102fc8f pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x4110f15e pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0x412879cd invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0x412c3d3b tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x41586d77 agp_enable -EXPORT_SYMBOL vmlinux 0x415b5b34 pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0x4167e407 phy_init_eee -EXPORT_SYMBOL vmlinux 0x4179aaad dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0x41862ad4 vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0x41889c71 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x41926457 inode_set_flags -EXPORT_SYMBOL vmlinux 0x41b4f289 scsi_print_command -EXPORT_SYMBOL vmlinux 0x41bd660a dev_emerg -EXPORT_SYMBOL vmlinux 0x41bee8ac simple_statfs -EXPORT_SYMBOL vmlinux 0x41c42cf3 tcf_action_exec -EXPORT_SYMBOL vmlinux 0x41e2e11b km_new_mapping -EXPORT_SYMBOL vmlinux 0x41ed7ed3 ab3100_event_register -EXPORT_SYMBOL vmlinux 0x41f976a8 seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x42172a83 elv_unregister_queue -EXPORT_SYMBOL vmlinux 0x42245f26 writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x42350e8d ucs2_strlen -EXPORT_SYMBOL vmlinux 0x4241b236 user_revoke -EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x4248b15a qdisc_destroy -EXPORT_SYMBOL vmlinux 0x424b0cae is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force -EXPORT_SYMBOL vmlinux 0x426d6708 locks_copy_conflock -EXPORT_SYMBOL vmlinux 0x4279955a alloc_file -EXPORT_SYMBOL vmlinux 0x4280c1ff elv_dispatch_add_tail -EXPORT_SYMBOL vmlinux 0x428848dd migrate_page -EXPORT_SYMBOL vmlinux 0x428b9f9d simple_rename -EXPORT_SYMBOL vmlinux 0x4292364c schedule -EXPORT_SYMBOL vmlinux 0x429630a9 pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0x42a189cd pci_release_regions -EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x42aee405 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0x42c8de35 ioremap_nocache -EXPORT_SYMBOL vmlinux 0x42dd43a7 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x430108b3 inode_init_once -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x4332ad64 d_rehash -EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 -EXPORT_SYMBOL vmlinux 0x437797dc rwsem_wake -EXPORT_SYMBOL vmlinux 0x437f4d74 iov_iter_init -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x439d120b lwtunnel_build_state -EXPORT_SYMBOL vmlinux 0x43aa487a skb_set_owner_w -EXPORT_SYMBOL vmlinux 0x43aa60bc __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x43abe470 acpi_bus_get_device -EXPORT_SYMBOL vmlinux 0x43b3c7e6 pv_mmu_ops -EXPORT_SYMBOL vmlinux 0x43b4350e scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0x43ba0f3c simple_transaction_set -EXPORT_SYMBOL vmlinux 0x43c3bf61 dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0x43c5c00e nvm_register_target -EXPORT_SYMBOL vmlinux 0x43e6f0a1 dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0x43edb394 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x440425be led_update_brightness -EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed -EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0x44438b96 hex2bin -EXPORT_SYMBOL vmlinux 0x44613dc8 vfs_iter_write -EXPORT_SYMBOL vmlinux 0x44621a70 inet_frag_maybe_warn_overflow -EXPORT_SYMBOL vmlinux 0x44819d95 udp_lib_get_port -EXPORT_SYMBOL vmlinux 0x4482badb netdev_all_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x448e085f prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x449bb87c mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0x449fe84b acpi_set_firmware_waking_vectors -EXPORT_SYMBOL vmlinux 0x44a96f8c ilookup -EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz -EXPORT_SYMBOL vmlinux 0x44b14c6e vga_switcheroo_get_client_state -EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x44b4be1c blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0x44c02e5f blk_delay_queue -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44ecc7e3 neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x45011c6c dm_put_device -EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle -EXPORT_SYMBOL vmlinux 0x4523cf1d input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x454ae52a dev_disable_lro -EXPORT_SYMBOL vmlinux 0x45617300 ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x457dde48 twl6040_set_pll -EXPORT_SYMBOL vmlinux 0x459f86a9 tty_port_close_end -EXPORT_SYMBOL vmlinux 0x45a57df3 pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource -EXPORT_SYMBOL vmlinux 0x45dee454 bdi_init -EXPORT_SYMBOL vmlinux 0x45df95c9 truncate_pagecache -EXPORT_SYMBOL vmlinux 0x45f05767 skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0x45f3db51 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0x4621e41d mount_single -EXPORT_SYMBOL vmlinux 0x462913cd devm_gpio_request -EXPORT_SYMBOL vmlinux 0x4629334c __preempt_count -EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy -EXPORT_SYMBOL vmlinux 0x462b2ddb igrab -EXPORT_SYMBOL vmlinux 0x464cd8c5 max8925_set_bits -EXPORT_SYMBOL vmlinux 0x464d78e9 jbd2_journal_file_inode -EXPORT_SYMBOL vmlinux 0x465854c3 loop_register_transfer -EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0x46648ebd simple_write_end -EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set -EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x4673c4f3 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0x46841be5 tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0x46954070 tty_throttle -EXPORT_SYMBOL vmlinux 0x46b46100 agp_find_bridge -EXPORT_SYMBOL vmlinux 0x46b6e232 pci_disable_msi -EXPORT_SYMBOL vmlinux 0x46cd4825 __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg -EXPORT_SYMBOL vmlinux 0x4702b6f2 nf_unregister_hook -EXPORT_SYMBOL vmlinux 0x4716ad15 scsi_verify_blk_ioctl -EXPORT_SYMBOL vmlinux 0x472fdd67 bio_put -EXPORT_SYMBOL vmlinux 0x473be4ed kernel_getsockname -EXPORT_SYMBOL vmlinux 0x4740b3bc xen_arch_unregister_cpu -EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x474c9bc8 kernel_setsockopt -EXPORT_SYMBOL vmlinux 0x4759b6c1 dev_uc_flush -EXPORT_SYMBOL vmlinux 0x475e7ac5 phy_device_free -EXPORT_SYMBOL vmlinux 0x475f010b acpi_purge_cached_objects -EXPORT_SYMBOL vmlinux 0x47684cac sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0x478b9f0d seq_dentry -EXPORT_SYMBOL vmlinux 0x478d10b2 ht_destroy_irq -EXPORT_SYMBOL vmlinux 0x478e314a free_netdev -EXPORT_SYMBOL vmlinux 0x4792d500 i8042_install_filter -EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit -EXPORT_SYMBOL vmlinux 0x47a2fe8a ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0x47a37d2a cros_ec_cmd_xfer -EXPORT_SYMBOL vmlinux 0x47a5bb8e tcp_release_cb -EXPORT_SYMBOL vmlinux 0x47aaf3f8 __blk_run_queue -EXPORT_SYMBOL vmlinux 0x47acebd3 vme_master_request -EXPORT_SYMBOL vmlinux 0x47b93337 fb_set_cmap -EXPORT_SYMBOL vmlinux 0x47c45d25 netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0x47c9ce37 pcim_pin_device -EXPORT_SYMBOL vmlinux 0x47eff5f8 dm_unregister_target -EXPORT_SYMBOL vmlinux 0x47f05eb0 udp_del_offload -EXPORT_SYMBOL vmlinux 0x47f9e4a7 vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0x48014c3c udplite_prot -EXPORT_SYMBOL vmlinux 0x480f3117 pci_add_new_bus -EXPORT_SYMBOL vmlinux 0x48117c78 kernel_sock_ioctl -EXPORT_SYMBOL vmlinux 0x48180be6 tty_port_close_start -EXPORT_SYMBOL vmlinux 0x481902c1 fb_is_primary_device -EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open -EXPORT_SYMBOL vmlinux 0x481cb9ab acpi_enter_sleep_state_prep -EXPORT_SYMBOL vmlinux 0x4831ba66 sk_ns_capable -EXPORT_SYMBOL vmlinux 0x4834d61e cros_ec_prepare_tx -EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days -EXPORT_SYMBOL vmlinux 0x486360f0 netdev_features_change -EXPORT_SYMBOL vmlinux 0x486a6eaf lru_cache_add_file -EXPORT_SYMBOL vmlinux 0x487d387e bio_uncopy_user -EXPORT_SYMBOL vmlinux 0x48960a7f netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0x489e2786 netif_napi_del -EXPORT_SYMBOL vmlinux 0x48a5a564 blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0x48a62149 wireless_send_event -EXPORT_SYMBOL vmlinux 0x48a9d6bf __inet_stream_connect -EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48cbd619 inet_ioctl -EXPORT_SYMBOL vmlinux 0x48e2c31d csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x494a55ff scsi_device_get -EXPORT_SYMBOL vmlinux 0x49582b22 mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init -EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data -EXPORT_SYMBOL vmlinux 0x4967cce7 con_is_bound -EXPORT_SYMBOL vmlinux 0x496c6d5b padata_free -EXPORT_SYMBOL vmlinux 0x498580e1 param_get_string -EXPORT_SYMBOL vmlinux 0x4989daf2 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x49b0130a ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan -EXPORT_SYMBOL vmlinux 0x49cb858a scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x49d0990d tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x49f3080a dmam_free_noncoherent -EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many -EXPORT_SYMBOL vmlinux 0x4a107e21 __dev_get_by_name -EXPORT_SYMBOL vmlinux 0x4a48f1ed clear_nlink -EXPORT_SYMBOL vmlinux 0x4a5a29bc isapnp_protocol -EXPORT_SYMBOL vmlinux 0x4a619f83 memcpy -EXPORT_SYMBOL vmlinux 0x4ab90678 kill_bdev -EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk -EXPORT_SYMBOL vmlinux 0x4abc730b netdev_info -EXPORT_SYMBOL vmlinux 0x4ac6cc19 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource -EXPORT_SYMBOL vmlinux 0x4ade1fce pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x4ae37300 iov_iter_kvec -EXPORT_SYMBOL vmlinux 0x4af4e60b put_io_context -EXPORT_SYMBOL vmlinux 0x4afa11da always_delete_dentry -EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize -EXPORT_SYMBOL vmlinux 0x4b00dc6d nvm_erase_blk -EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure -EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0x4b1fecc5 ps2_drain -EXPORT_SYMBOL vmlinux 0x4b42483e sock_get_timestamp -EXPORT_SYMBOL vmlinux 0x4b5eae05 neigh_xmit -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b61ce2f netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0x4b667176 lg_local_lock_cpu -EXPORT_SYMBOL vmlinux 0x4b9695e7 key_link -EXPORT_SYMBOL vmlinux 0x4b97d149 tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0x4b9dfb04 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0x4ba91748 mmc_flush_cache -EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get -EXPORT_SYMBOL vmlinux 0x4bb0778e vm_stat -EXPORT_SYMBOL vmlinux 0x4bbc7f88 tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0x4bcf03a4 radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x4be85a03 memweight -EXPORT_SYMBOL vmlinux 0x4bf85cd8 vga_switcheroo_set_dynamic_switch -EXPORT_SYMBOL vmlinux 0x4c0472ea eth_change_mtu -EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance -EXPORT_SYMBOL vmlinux 0x4c125c5f n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0x4c1d6079 pci_dev_put -EXPORT_SYMBOL vmlinux 0x4c29dcbf cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr -EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf -EXPORT_SYMBOL vmlinux 0x4c507c71 kill_pgrp -EXPORT_SYMBOL vmlinux 0x4c7f57ce dev_set_group -EXPORT_SYMBOL vmlinux 0x4c878322 iosf_mbi_modify -EXPORT_SYMBOL vmlinux 0x4c8f45bf done_path_create -EXPORT_SYMBOL vmlinux 0x4c9625d0 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0x4c9b4354 scsi_remove_device -EXPORT_SYMBOL vmlinux 0x4cb8a767 nf_ct_attach -EXPORT_SYMBOL vmlinux 0x4cc2650c blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0x4cd91047 pci_disable_msix -EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval -EXPORT_SYMBOL vmlinux 0x4ce53b7c d_lookup -EXPORT_SYMBOL vmlinux 0x4cea8302 ___preempt_schedule_notrace -EXPORT_SYMBOL vmlinux 0x4cfbfe8c pci_set_dma_seg_boundary -EXPORT_SYMBOL vmlinux 0x4d045584 agp_generic_alloc_pages -EXPORT_SYMBOL vmlinux 0x4d0f4f6c pci_get_class -EXPORT_SYMBOL vmlinux 0x4d28104c flow_cache_init -EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask -EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated -EXPORT_SYMBOL vmlinux 0x4d4aa462 sync_blockdev -EXPORT_SYMBOL vmlinux 0x4d5d9039 __nlmsg_put -EXPORT_SYMBOL vmlinux 0x4d7a5f0d blk_start_queue -EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4dbdb387 d_walk -EXPORT_SYMBOL vmlinux 0x4dcaf770 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x4ded5404 blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse -EXPORT_SYMBOL vmlinux 0x4dfdadc1 mutex_trylock -EXPORT_SYMBOL vmlinux 0x4e04c4e3 pci_scan_bus -EXPORT_SYMBOL vmlinux 0x4e161064 qdisc_list_del -EXPORT_SYMBOL vmlinux 0x4e216337 inet6_bind -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e543594 bdi_destroy -EXPORT_SYMBOL vmlinux 0x4e580ba0 i2c_add_adapter -EXPORT_SYMBOL vmlinux 0x4e5c2afe posix_unblock_lock -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6b608c pci_request_region -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e95eb7a xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset -EXPORT_SYMBOL vmlinux 0x4ed63eaa fifo_set_limit -EXPORT_SYMBOL vmlinux 0x4ef4d86b dquot_quota_off -EXPORT_SYMBOL vmlinux 0x4f12d811 __wait_on_buffer -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f2f6794 vme_register_driver -EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse -EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command -EXPORT_SYMBOL vmlinux 0x4f582372 nvm_erase_ppa -EXPORT_SYMBOL vmlinux 0x4f6041ef dns_query -EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday -EXPORT_SYMBOL vmlinux 0x4f6b400b _copy_from_user -EXPORT_SYMBOL vmlinux 0x4f6b7606 ppp_dev_name -EXPORT_SYMBOL vmlinux 0x4f783f30 acpi_read -EXPORT_SYMBOL vmlinux 0x4f8b5ddb _copy_to_user -EXPORT_SYMBOL vmlinux 0x4fa783b9 inet6_add_offload -EXPORT_SYMBOL vmlinux 0x4fb4b1c3 register_filesystem -EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command -EXPORT_SYMBOL vmlinux 0x4fecaec2 i2c_clients_command -EXPORT_SYMBOL vmlinux 0x4ff6bb07 skb_queue_tail -EXPORT_SYMBOL vmlinux 0x4ff8a767 pci_map_biosrom -EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security -EXPORT_SYMBOL vmlinux 0x502f8fcf i2c_put_adapter -EXPORT_SYMBOL vmlinux 0x50529870 acpi_get_gpe_status -EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x5079d1d4 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0x5082deab dquot_quota_on -EXPORT_SYMBOL vmlinux 0x5087c926 pci_fixup_device -EXPORT_SYMBOL vmlinux 0x5088f16a agp_copy_info -EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method -EXPORT_SYMBOL vmlinux 0x50a06f28 dm_register_target -EXPORT_SYMBOL vmlinux 0x50b3359a nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x50b66bcb radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x50bba577 mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del -EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x50eedeb8 printk -EXPORT_SYMBOL vmlinux 0x5106b710 simple_lookup -EXPORT_SYMBOL vmlinux 0x511202bb __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0x51719973 dq_data_lock -EXPORT_SYMBOL vmlinux 0x51771982 xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x517f01f4 input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x5186518f profile_pc -EXPORT_SYMBOL vmlinux 0x518ce7d1 pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0x519da1f2 phy_driver_register -EXPORT_SYMBOL vmlinux 0x519de790 simple_transaction_get -EXPORT_SYMBOL vmlinux 0x51a428a6 sock_no_accept -EXPORT_SYMBOL vmlinux 0x51ac2c3a eisa_bus_type -EXPORT_SYMBOL vmlinux 0x51b52659 input_reset_device -EXPORT_SYMBOL vmlinux 0x51c3045c inet_put_port -EXPORT_SYMBOL vmlinux 0x51c3d8e5 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled -EXPORT_SYMBOL vmlinux 0x51e037c3 blk_start_queue_async -EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup -EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str -EXPORT_SYMBOL vmlinux 0x52095e19 acpi_get_data -EXPORT_SYMBOL vmlinux 0x520b3464 __ip_dev_find -EXPORT_SYMBOL vmlinux 0x520d6baa scsi_cmd_get_serial -EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0x521c1029 qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0x5221d841 mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0x52371881 register_console -EXPORT_SYMBOL vmlinux 0x523c9edc skb_copy -EXPORT_SYMBOL vmlinux 0x52463adf tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x524fc2cd mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0x525e026f acpi_os_unmap_generic_address -EXPORT_SYMBOL vmlinux 0x5271218d vme_lm_request -EXPORT_SYMBOL vmlinux 0x5276789d mmc_get_card -EXPORT_SYMBOL vmlinux 0x52770822 __dquot_free_space -EXPORT_SYMBOL vmlinux 0x52851f3c set_security_override -EXPORT_SYMBOL vmlinux 0x528bbde3 writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x5292a683 blk_end_request_cur -EXPORT_SYMBOL vmlinux 0x529bd4af genl_notify -EXPORT_SYMBOL vmlinux 0x52af562a __crc32c_le -EXPORT_SYMBOL vmlinux 0x52b792e7 sk_capable -EXPORT_SYMBOL vmlinux 0x52bc1585 is_nd_btt -EXPORT_SYMBOL vmlinux 0x52cb8098 simple_fill_super -EXPORT_SYMBOL vmlinux 0x52fc6744 handle_edge_irq -EXPORT_SYMBOL vmlinux 0x530b1e4c rdmsr_on_cpus -EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid -EXPORT_SYMBOL vmlinux 0x53245515 intel_gmch_probe -EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x534b0573 skb_dequeue -EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off -EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0x5375677c sync_inode_metadata -EXPORT_SYMBOL vmlinux 0x53867179 param_get_charp -EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x53aff607 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0x53b5bf52 cdrom_ioctl -EXPORT_SYMBOL vmlinux 0x53bd49b6 mdiobus_free -EXPORT_SYMBOL vmlinux 0x53c233d3 nvdimm_revalidate_disk -EXPORT_SYMBOL vmlinux 0x53f75712 tty_name -EXPORT_SYMBOL vmlinux 0x53fea6ad generic_ro_fops -EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x540d10a5 security_task_getsecid -EXPORT_SYMBOL vmlinux 0x54371489 bio_unmap_user -EXPORT_SYMBOL vmlinux 0x543777dc security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x5441c40e nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x544b0c11 acpi_lid_notifier_register -EXPORT_SYMBOL vmlinux 0x54612bb9 pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0x5464d3f6 acpi_remove_sci_handler -EXPORT_SYMBOL vmlinux 0x549745e6 tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0x54988ce5 submit_bio -EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul -EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window -EXPORT_SYMBOL vmlinux 0x54c64c91 bio_integrity_advance -EXPORT_SYMBOL vmlinux 0x54d179ad xfrm_lookup -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54f24d1a fence_default_wait -EXPORT_SYMBOL vmlinux 0x551b19db nf_hook_slow -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x551bedc7 fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x55280a80 eth_mac_addr -EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu -EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat -EXPORT_SYMBOL vmlinux 0x5584bc90 inet_add_offload -EXPORT_SYMBOL vmlinux 0x559f0dff input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x559fce34 kobject_put -EXPORT_SYMBOL vmlinux 0x55b80aac padata_alloc -EXPORT_SYMBOL vmlinux 0x55bbc74f iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0x55ce4ac0 i2c_use_client -EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x55db3f7b blk_get_request -EXPORT_SYMBOL vmlinux 0x55e60a36 queued_spin_unlock_wait -EXPORT_SYMBOL vmlinux 0x55fccb69 processors -EXPORT_SYMBOL vmlinux 0x5614ed17 nd_region_release_lane -EXPORT_SYMBOL vmlinux 0x562618ba ps2_end_command -EXPORT_SYMBOL vmlinux 0x56263596 twl6040_get_pll -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0x5641419b wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x5642d7ac scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x56630ad0 __genl_register_family -EXPORT_SYMBOL vmlinux 0x56668e4e bioset_integrity_free -EXPORT_SYMBOL vmlinux 0x5676910c sk_stream_error -EXPORT_SYMBOL vmlinux 0x5676a3e5 intel_scu_ipc_ioread8 -EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56da3ab4 posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x56e7322c vme_dma_list_add -EXPORT_SYMBOL vmlinux 0x56ea2eac sock_update_memcg -EXPORT_SYMBOL vmlinux 0x56ed78d6 dquot_get_state -EXPORT_SYMBOL vmlinux 0x56fe079d i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0x5705088a __vmalloc -EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt -EXPORT_SYMBOL vmlinux 0x572e99a5 kunmap_high -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x5751f825 padata_do_parallel -EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x5759fc94 end_page_writeback -EXPORT_SYMBOL vmlinux 0x575af70c on_each_cpu_mask -EXPORT_SYMBOL vmlinux 0x57673ae4 unregister_cdrom -EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x579fbcd2 cpu_possible_mask -EXPORT_SYMBOL vmlinux 0x57b0be48 mmc_can_erase -EXPORT_SYMBOL vmlinux 0x57ba72ab fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x57c51a6b blk_stack_limits -EXPORT_SYMBOL vmlinux 0x57fee591 generic_file_fsync -EXPORT_SYMBOL vmlinux 0x58008a02 mmc_power_restore_host -EXPORT_SYMBOL vmlinux 0x58072afb skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x5823bd68 starget_for_each_device -EXPORT_SYMBOL vmlinux 0x58324461 agp_generic_destroy_page -EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x58420b7d dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0x584738f9 rdmsr_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x5851d7ce set_disk_ro -EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep -EXPORT_SYMBOL vmlinux 0x585aa1f1 blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0x58604e4d alloc_iova_mem -EXPORT_SYMBOL vmlinux 0x586103be acpi_setup_gpe_for_wake -EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat -EXPORT_SYMBOL vmlinux 0x58838c3a kmap_high -EXPORT_SYMBOL vmlinux 0x589f46e7 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x58b49432 mfd_remove_devices -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58df0053 pci_set_master -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58ee758e free_cgroup_ns -EXPORT_SYMBOL vmlinux 0x58fef6f8 ist_info -EXPORT_SYMBOL vmlinux 0x5908da0a proc_remove -EXPORT_SYMBOL vmlinux 0x591a3480 pci_assign_resource -EXPORT_SYMBOL vmlinux 0x5944d015 __cachemode2pte_tbl -EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map -EXPORT_SYMBOL vmlinux 0x598128be seq_write -EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x59917d65 dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release -EXPORT_SYMBOL vmlinux 0x59b7c472 generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x59bc9609 acpi_write_bit_register -EXPORT_SYMBOL vmlinux 0x59c988bb mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a11e0b6 bio_copy_kern -EXPORT_SYMBOL vmlinux 0x5a2ffe4e d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 -EXPORT_SYMBOL vmlinux 0x5a4e156d backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x5a53a11c simple_readpage -EXPORT_SYMBOL vmlinux 0x5a593c6b ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0x5a60ce68 ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0x5a72421f blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x5a82c44a complete_and_exit -EXPORT_SYMBOL vmlinux 0x5ac376a5 acpi_install_fixed_event_handler -EXPORT_SYMBOL vmlinux 0x5adb2561 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get -EXPORT_SYMBOL vmlinux 0x5b00a667 security_dentry_init_security -EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem -EXPORT_SYMBOL vmlinux 0x5b3ebc97 vme_slave_request -EXPORT_SYMBOL vmlinux 0x5b4fe1a5 i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0x5b8b1550 mmc_align_data_size -EXPORT_SYMBOL vmlinux 0x5b95abbb __neigh_event_send -EXPORT_SYMBOL vmlinux 0x5b9f1942 mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0x5ba63611 security_inode_readlink -EXPORT_SYMBOL vmlinux 0x5bc8d583 copy_from_user_overflow -EXPORT_SYMBOL vmlinux 0x5bcff91a pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0x5bd87be7 freeze_super -EXPORT_SYMBOL vmlinux 0x5bf4af8e vme_unregister_driver -EXPORT_SYMBOL vmlinux 0x5bfbdee2 inet6_protos -EXPORT_SYMBOL vmlinux 0x5c0442fd acpi_gbl_FADT -EXPORT_SYMBOL vmlinux 0x5c09fca5 devm_gpio_request_one -EXPORT_SYMBOL vmlinux 0x5c112429 inc_nlink -EXPORT_SYMBOL vmlinux 0x5c1ab2b3 param_ops_short -EXPORT_SYMBOL vmlinux 0x5c1b26d2 kthread_bind -EXPORT_SYMBOL vmlinux 0x5c3f4b3f pcie_get_minimum_link -EXPORT_SYMBOL vmlinux 0x5c545234 ucs2_strncmp -EXPORT_SYMBOL vmlinux 0x5c55279c bio_copy_data -EXPORT_SYMBOL vmlinux 0x5c6f761f mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0x5c933ccd generic_permission -EXPORT_SYMBOL vmlinux 0x5c9ff6c3 input_set_keycode -EXPORT_SYMBOL vmlinux 0x5ccaa92f skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0x5cd9c8a0 jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0x5cdcf53a t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5cf6cb45 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0x5cfec7d4 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x5d1864c0 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x5d1d1218 ps2_sendbyte -EXPORT_SYMBOL vmlinux 0x5d2e0057 x86_hyper_ms_hyperv -EXPORT_SYMBOL vmlinux 0x5d339015 skb_split -EXPORT_SYMBOL vmlinux 0x5d34ae70 lock_sock_nested -EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain -EXPORT_SYMBOL vmlinux 0x5d6dadc6 page_cache_next_hole -EXPORT_SYMBOL vmlinux 0x5d74dbcf pnp_range_reserved -EXPORT_SYMBOL vmlinux 0x5d8475e0 completion_done -EXPORT_SYMBOL vmlinux 0x5d97d902 thaw_bdev -EXPORT_SYMBOL vmlinux 0x5da316fd neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0x5da9f5a3 i2c_master_send -EXPORT_SYMBOL vmlinux 0x5db7be0a register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x5db97f1c pci_release_region -EXPORT_SYMBOL vmlinux 0x5ddd2e41 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0x5de140a6 scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x5dfa6186 fb_set_suspend -EXPORT_SYMBOL vmlinux 0x5dffb9b0 x86_hyper_vmware -EXPORT_SYMBOL vmlinux 0x5e228aef del_gendisk -EXPORT_SYMBOL vmlinux 0x5e2f16d1 __skb_get_hash -EXPORT_SYMBOL vmlinux 0x5e564013 swiotlb_map_sg_attrs -EXPORT_SYMBOL vmlinux 0x5e5d5da0 i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x5e757f77 neigh_lookup -EXPORT_SYMBOL vmlinux 0x5e832d80 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0x5e8398d6 skb_pull -EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5ef5ee82 __ip_select_ident -EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 -EXPORT_SYMBOL vmlinux 0x5f02fda4 splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f102065 generic_perform_write -EXPORT_SYMBOL vmlinux 0x5f1a4ccf intel_scu_ipc_update_register -EXPORT_SYMBOL vmlinux 0x5f22b338 cdev_del -EXPORT_SYMBOL vmlinux 0x5f3767d4 xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0x5f3d9727 vfs_llseek -EXPORT_SYMBOL vmlinux 0x5f4dc2bf ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0x5f532881 block_write_full_page -EXPORT_SYMBOL vmlinux 0x5f56577f __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0x5f700f74 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0x5fa15d96 padata_set_cpumasks -EXPORT_SYMBOL vmlinux 0x5fa25131 linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x5fa61902 seq_hex_dump -EXPORT_SYMBOL vmlinux 0x5fa9c996 cros_ec_check_result -EXPORT_SYMBOL vmlinux 0x5fac7a9b phy_find_first -EXPORT_SYMBOL vmlinux 0x5fb2e8ef idr_init -EXPORT_SYMBOL vmlinux 0x5fc3a8be pci_scan_slot -EXPORT_SYMBOL vmlinux 0x5fd268cb radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0x5fd835b7 qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat -EXPORT_SYMBOL vmlinux 0x5ff51380 sk_dst_check -EXPORT_SYMBOL vmlinux 0x5ff72698 pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0x6002244f dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool -EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x600d8b26 param_get_uint -EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x602ed00d acpi_current_gpe_count -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x603c2d94 mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0x604316d8 acpi_finish_gpe -EXPORT_SYMBOL vmlinux 0x6045a3af mb_cache_entry_insert -EXPORT_SYMBOL vmlinux 0x6052d355 jbd2_journal_load -EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number -EXPORT_SYMBOL vmlinux 0x60856063 nobh_writepage -EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector -EXPORT_SYMBOL vmlinux 0x60980d77 agp_generic_insert_memory -EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL vmlinux 0x60b86f61 sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x60bedc75 tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x60d1c1c7 ata_port_printk -EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x610aaa40 mempool_destroy -EXPORT_SYMBOL vmlinux 0x611b4365 uart_resume_port -EXPORT_SYMBOL vmlinux 0x611b9de3 fsnotify_add_mark -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x612e6e0e kernel_param_lock -EXPORT_SYMBOL vmlinux 0x614d9f49 netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x615237b9 vme_register_bridge -EXPORT_SYMBOL vmlinux 0x617b486e dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0x61b1eeea vm_insert_pfn -EXPORT_SYMBOL vmlinux 0x61b3560c cmdline_parts_set -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61c291dc blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x61ef8a15 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0x62049256 acpi_disable -EXPORT_SYMBOL vmlinux 0x6206085b cdrom_media_changed -EXPORT_SYMBOL vmlinux 0x62128203 lookup_one_len -EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x6220b4a2 crc32_le -EXPORT_SYMBOL vmlinux 0x6225637e md5_transform -EXPORT_SYMBOL vmlinux 0x6226b9fa machine_to_phys_mapping -EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x62296295 pnp_stop_dev -EXPORT_SYMBOL vmlinux 0x6237f6b5 acpi_enable_event -EXPORT_SYMBOL vmlinux 0x6241a2ab __copy_from_user_ll_nocache -EXPORT_SYMBOL vmlinux 0x6255100f fs_bio_set -EXPORT_SYMBOL vmlinux 0x625c0c5c dev_notice -EXPORT_SYMBOL vmlinux 0x6267d76e netlink_ack -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x62769411 locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x62bd2a91 pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0x62c89c02 pci_lost_interrupt -EXPORT_SYMBOL vmlinux 0x62ca14f9 blk_rq_init -EXPORT_SYMBOL vmlinux 0x62d36e5e rtnl_unicast -EXPORT_SYMBOL vmlinux 0x62d5c975 inet6_register_icmp_sender -EXPORT_SYMBOL vmlinux 0x62e52a84 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x62e6add1 irq_to_desc -EXPORT_SYMBOL vmlinux 0x62ec85ce devm_memunmap -EXPORT_SYMBOL vmlinux 0x62ef7646 copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled -EXPORT_SYMBOL vmlinux 0x631a2b03 tty_write_room -EXPORT_SYMBOL vmlinux 0x632db954 km_policy_notify -EXPORT_SYMBOL vmlinux 0x63378d43 mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0x634b5caa netdev_err -EXPORT_SYMBOL vmlinux 0x63500160 xfrm6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x636a5691 acpi_register_ioapic -EXPORT_SYMBOL vmlinux 0x63721516 gen_pool_alloc -EXPORT_SYMBOL vmlinux 0x637e7839 pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0x637fcc38 scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0x6388591c down_timeout -EXPORT_SYMBOL vmlinux 0x63a01291 acpi_leave_sleep_state_prep -EXPORT_SYMBOL vmlinux 0x63a44fb3 devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0x63a59dea nf_log_unset -EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63c9be6a inode_dio_wait -EXPORT_SYMBOL vmlinux 0x63d174f1 sock_wake_async -EXPORT_SYMBOL vmlinux 0x63d57a95 gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63ef1823 param_get_bool -EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user -EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x642b0843 sock_alloc_file -EXPORT_SYMBOL vmlinux 0x64351bc5 vfs_readv -EXPORT_SYMBOL vmlinux 0x644452ba scsi_print_sense -EXPORT_SYMBOL vmlinux 0x6449fd41 acpi_install_address_space_handler -EXPORT_SYMBOL vmlinux 0x6461c008 gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x646bde41 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x6470fdce tcf_em_register -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x64a4b84d cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x64ab0e98 wait_for_completion -EXPORT_SYMBOL vmlinux 0x64be4831 seq_putc -EXPORT_SYMBOL vmlinux 0x64d2a398 blk_queue_stack_limits -EXPORT_SYMBOL vmlinux 0x64dbb9cb skb_queue_purge -EXPORT_SYMBOL vmlinux 0x64e9f8f6 path_nosuid -EXPORT_SYMBOL vmlinux 0x64eae7ad set_memory_array_wb -EXPORT_SYMBOL vmlinux 0x64f6c522 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x64f9261c dma_pool_create -EXPORT_SYMBOL vmlinux 0x64fa7693 __acpi_handle_debug -EXPORT_SYMBOL vmlinux 0x65022a93 dst_alloc -EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth -EXPORT_SYMBOL vmlinux 0x651a4139 test_taint -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x654d21a8 eisa_driver_register -EXPORT_SYMBOL vmlinux 0x6558ffed neigh_parms_release -EXPORT_SYMBOL vmlinux 0x655db2b2 sock_create -EXPORT_SYMBOL vmlinux 0x655f1ab0 set_memory_array_wc -EXPORT_SYMBOL vmlinux 0x6565d33f scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x657cb181 crypto_sha1_update -EXPORT_SYMBOL vmlinux 0x65862df6 revalidate_disk -EXPORT_SYMBOL vmlinux 0x65863fd5 current_fs_time -EXPORT_SYMBOL vmlinux 0x65a295bb atomic64_xchg_cx8 -EXPORT_SYMBOL vmlinux 0x65a36a72 inet6_release -EXPORT_SYMBOL vmlinux 0x65b72967 csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0x65b77a5a blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0x65b992ac xen_alloc_p2m_entry -EXPORT_SYMBOL vmlinux 0x65d4bcf8 try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier -EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x65fbb554 call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0x661c771f pid_task -EXPORT_SYMBOL vmlinux 0x66276847 simple_getattr -EXPORT_SYMBOL vmlinux 0x66355efc vprintk -EXPORT_SYMBOL vmlinux 0x663f7cd0 acpi_install_table_handler -EXPORT_SYMBOL vmlinux 0x6662f0f9 bdi_setup_and_register -EXPORT_SYMBOL vmlinux 0x667e4e80 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x668eb393 netlink_broadcast -EXPORT_SYMBOL vmlinux 0x669bf80b proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x66d804b1 percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0x66f18107 may_umount -EXPORT_SYMBOL vmlinux 0x670b3e96 mmc_erase -EXPORT_SYMBOL vmlinux 0x670ba442 vme_new_dma_list -EXPORT_SYMBOL vmlinux 0x6726de2c pci_iomap_range -EXPORT_SYMBOL vmlinux 0x6727cc02 register_gifconf -EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 -EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges -EXPORT_SYMBOL vmlinux 0x67412201 phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0x67499cc4 down_write -EXPORT_SYMBOL vmlinux 0x674fc0c3 nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create -EXPORT_SYMBOL vmlinux 0x679d900b __skb_checksum -EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67c40994 xfrm4_rcv_cb -EXPORT_SYMBOL vmlinux 0x67c59c81 inode_permission -EXPORT_SYMBOL vmlinux 0x67d4a8d1 insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0x67d96eb6 agp_generic_alloc_by_type -EXPORT_SYMBOL vmlinux 0x67feb347 sg_miter_skip -EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x680ec266 _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0x683b06f1 cancel_dirty_page -EXPORT_SYMBOL vmlinux 0x683d7079 kernel_read -EXPORT_SYMBOL vmlinux 0x683dd8bf netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x685eca19 i2c_master_recv -EXPORT_SYMBOL vmlinux 0x68663758 dev_alert -EXPORT_SYMBOL vmlinux 0x686a2ae1 blk_complete_request -EXPORT_SYMBOL vmlinux 0x6879990c agp_generic_alloc_user -EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages -EXPORT_SYMBOL vmlinux 0x68a0e2d1 xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0x68ac015d ll_rw_block -EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x68ba9477 phy_get_eee_err -EXPORT_SYMBOL vmlinux 0x68dabc03 security_path_mknod -EXPORT_SYMBOL vmlinux 0x68e87dc5 bh_submit_read -EXPORT_SYMBOL vmlinux 0x68f5d8bc __dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x68f894cb mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x691001b5 acpi_evaluate_integer -EXPORT_SYMBOL vmlinux 0x6920d472 netlink_set_err -EXPORT_SYMBOL vmlinux 0x694e595c ata_dev_printk -EXPORT_SYMBOL vmlinux 0x69537aac set_pages_array_uc -EXPORT_SYMBOL vmlinux 0x6961937f sync_filesystem -EXPORT_SYMBOL vmlinux 0x6965954c vc_resize -EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 -EXPORT_SYMBOL vmlinux 0x6995a69f unregister_binfmt -EXPORT_SYMBOL vmlinux 0x69a02536 mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be -EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource -EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint -EXPORT_SYMBOL vmlinux 0x69e5c24d lease_modify -EXPORT_SYMBOL vmlinux 0x69e9da10 would_dump -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a1b2587 mark_page_accessed -EXPORT_SYMBOL vmlinux 0x6a1b3f1b key_revoke -EXPORT_SYMBOL vmlinux 0x6a27bfce csum_partial_copy_generic -EXPORT_SYMBOL vmlinux 0x6a2e9592 seq_pad -EXPORT_SYMBOL vmlinux 0x6a32f2e5 kill_block_super -EXPORT_SYMBOL vmlinux 0x6a4f5bc0 mmc_set_blockcount -EXPORT_SYMBOL vmlinux 0x6a51dc07 fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a60277d acpi_buffer_to_resource -EXPORT_SYMBOL vmlinux 0x6a61149f param_ops_byte -EXPORT_SYMBOL vmlinux 0x6a61bb0d simple_transaction_read -EXPORT_SYMBOL vmlinux 0x6a6a3234 kmap_atomic_prot -EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable -EXPORT_SYMBOL vmlinux 0x6a8469ff scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x6a8e7f57 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0x6a91404b blk_rq_map_user -EXPORT_SYMBOL vmlinux 0x6a9243d4 blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0x6a9ae232 mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0x6aafbb43 eth_header_parse -EXPORT_SYMBOL vmlinux 0x6abfc772 scsi_device_put -EXPORT_SYMBOL vmlinux 0x6ac21631 security_path_unlink -EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be -EXPORT_SYMBOL vmlinux 0x6ad85887 acpi_enable_gpe -EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device -EXPORT_SYMBOL vmlinux 0x6ade3a20 pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0x6ae10db5 phy_attach -EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x6b084bf5 pcim_iounmap -EXPORT_SYMBOL vmlinux 0x6b0b241d jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0x6b126d77 xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname -EXPORT_SYMBOL vmlinux 0x6b351511 d_tmpfile -EXPORT_SYMBOL vmlinux 0x6b4bd456 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x6b74b9be bit_waitqueue -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bc7c558 pcie_set_mps -EXPORT_SYMBOL vmlinux 0x6bcf066d _raw_read_lock_irq -EXPORT_SYMBOL vmlinux 0x6bd401b9 __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x6bd42a7e nf_log_trace -EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x6bf1c17f pv_lock_ops -EXPORT_SYMBOL vmlinux 0x6bf2596b __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x6c034e33 dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer -EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn -EXPORT_SYMBOL vmlinux 0x6c2e3320 strncmp -EXPORT_SYMBOL vmlinux 0x6c37398d blk_put_queue -EXPORT_SYMBOL vmlinux 0x6c3c855d input_allocate_device -EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat -EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c65c17b skb_insert -EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min -EXPORT_SYMBOL vmlinux 0x6ca2fdf4 mfd_cell_enable -EXPORT_SYMBOL vmlinux 0x6ca6b9b2 devm_gpiod_get_index_optional -EXPORT_SYMBOL vmlinux 0x6cccc62a release_pages -EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy -EXPORT_SYMBOL vmlinux 0x6cdf1448 bio_map_kern -EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x6d1d5d9b iosf_mbi_write -EXPORT_SYMBOL vmlinux 0x6d1f5ad1 input_grab_device -EXPORT_SYMBOL vmlinux 0x6d1ff343 neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x6d25fde8 mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d2e079e poll_schedule_timeout -EXPORT_SYMBOL vmlinux 0x6d2fb77b pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0x6d3264dc d_prune_aliases -EXPORT_SYMBOL vmlinux 0x6d334118 __get_user_8 -EXPORT_SYMBOL vmlinux 0x6d33b490 devm_request_resource -EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x6d3568d3 locks_remove_posix -EXPORT_SYMBOL vmlinux 0x6d42b12c flush_signals -EXPORT_SYMBOL vmlinux 0x6d5313c1 arch_dma_alloc_attrs -EXPORT_SYMBOL vmlinux 0x6d63bad2 security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0x6d6edebb tcp_sendpage -EXPORT_SYMBOL vmlinux 0x6d9885cd locks_init_lock -EXPORT_SYMBOL vmlinux 0x6dbb5208 udp_sendmsg -EXPORT_SYMBOL vmlinux 0x6dc0c9dc down_interruptible -EXPORT_SYMBOL vmlinux 0x6dc32f26 dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x6dc6dd56 down -EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6dfbfc70 unregister_md_personality -EXPORT_SYMBOL vmlinux 0x6e4651aa ping_prot -EXPORT_SYMBOL vmlinux 0x6e499a16 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x6e5c8359 path_is_under -EXPORT_SYMBOL vmlinux 0x6e6514ed radix_tree_insert -EXPORT_SYMBOL vmlinux 0x6e65a4f1 acpi_get_hp_hw_control_from_firmware -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e8d065f bio_integrity_free -EXPORT_SYMBOL vmlinux 0x6e92948d abx500_event_registers_startup_state_get -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6eaaba90 sk_reset_timer -EXPORT_SYMBOL vmlinux 0x6eb38809 ipv6_select_ident -EXPORT_SYMBOL vmlinux 0x6ed4b96c security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0x6ee9bfe4 redraw_screen -EXPORT_SYMBOL vmlinux 0x6ef66e8a _raw_read_lock_bh -EXPORT_SYMBOL vmlinux 0x6ef8c9ba neigh_resolve_output -EXPORT_SYMBOL vmlinux 0x6f06c159 pci_restore_state -EXPORT_SYMBOL vmlinux 0x6f0ae3ed __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0x6f1bf786 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x6f1bfb7c inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0x6f1c64df inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash -EXPORT_SYMBOL vmlinux 0x6f2e4f46 __cond_resched_lock -EXPORT_SYMBOL vmlinux 0x6f321be1 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0x6f34a336 param_ops_invbool -EXPORT_SYMBOL vmlinux 0x6f43f3c5 pnp_unregister_driver -EXPORT_SYMBOL vmlinux 0x6f556bdb acpi_get_gpe_device -EXPORT_SYMBOL vmlinux 0x6f55bacc vfs_setpos -EXPORT_SYMBOL vmlinux 0x6f7b2ff6 input_release_device -EXPORT_SYMBOL vmlinux 0x6f88b443 sock_sendmsg -EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x6f8d4d98 sock_init_data -EXPORT_SYMBOL vmlinux 0x6fab2003 scsi_host_alloc -EXPORT_SYMBOL vmlinux 0x6fb48d4f mount_pseudo -EXPORT_SYMBOL vmlinux 0x6fb70020 netdev_crit -EXPORT_SYMBOL vmlinux 0x6fbd87dc file_ns_capable -EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag -EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6feb2039 acpi_write -EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier -EXPORT_SYMBOL vmlinux 0x7029f11b iommu_tbl_pool_init -EXPORT_SYMBOL vmlinux 0x7048abad dquot_enable -EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq -EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma -EXPORT_SYMBOL vmlinux 0x705f7813 nd_device_register -EXPORT_SYMBOL vmlinux 0x7062b4cd cmdline_parts_free -EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync -EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x707f93dd preempt_schedule -EXPORT_SYMBOL vmlinux 0x70814150 __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x7088ce72 printk_emit -EXPORT_SYMBOL vmlinux 0x708a79f7 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x70965c3a filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x70aaf7b7 dev_uc_add -EXPORT_SYMBOL vmlinux 0x70bb5758 __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0x70c48e5c jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0x70d1f8f3 strncat -EXPORT_SYMBOL vmlinux 0x70d8ab82 acpi_acquire_global_lock -EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x712ed37b radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x714886da kobject_init -EXPORT_SYMBOL vmlinux 0x715024ac phy_device_register -EXPORT_SYMBOL vmlinux 0x715b6c48 param_set_ullong -EXPORT_SYMBOL vmlinux 0x715cd007 blk_run_queue_async -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev -EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71c4408a dev_deactivate -EXPORT_SYMBOL vmlinux 0x71f65175 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x720c7d37 udp_ioctl -EXPORT_SYMBOL vmlinux 0x7212325e nf_log_unregister -EXPORT_SYMBOL vmlinux 0x721a801e mntput -EXPORT_SYMBOL vmlinux 0x7236310a mem_cgroup_end_page_stat -EXPORT_SYMBOL vmlinux 0x7252b57b tty_hangup -EXPORT_SYMBOL vmlinux 0x72597436 dev_uc_sync -EXPORT_SYMBOL vmlinux 0x727f6149 dev_addr_add -EXPORT_SYMBOL vmlinux 0x72828b4a tty_port_open -EXPORT_SYMBOL vmlinux 0x72aca763 reservation_object_add_shared_fence -EXPORT_SYMBOL vmlinux 0x72ae2ace input_open_device -EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma -EXPORT_SYMBOL vmlinux 0x72d58de9 kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0x72e66392 skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x7303bd00 up_write -EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config -EXPORT_SYMBOL vmlinux 0x732dc4bd ipv4_specific -EXPORT_SYMBOL vmlinux 0x7335e47e pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf -EXPORT_SYMBOL vmlinux 0x734956ba tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x7357bbef pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0x7359a862 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay -EXPORT_SYMBOL vmlinux 0x7364fec6 set_pages_array_wc -EXPORT_SYMBOL vmlinux 0x736d0677 sock_no_bind -EXPORT_SYMBOL vmlinux 0x737e8786 netpoll_cleanup -EXPORT_SYMBOL vmlinux 0x738714db ida_pre_get -EXPORT_SYMBOL vmlinux 0x738803e6 strnlen -EXPORT_SYMBOL vmlinux 0x738b2dcf twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0x7394402b swiotlb_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0x739c8b95 uart_add_one_port -EXPORT_SYMBOL vmlinux 0x73bdbf9b block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable -EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy -EXPORT_SYMBOL vmlinux 0x73ff24c0 nvm_get_blk -EXPORT_SYMBOL vmlinux 0x73ff3ef9 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x7409637d agp_generic_mask_memory -EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi -EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x7413793a EISA_bus -EXPORT_SYMBOL vmlinux 0x74255256 cap_mmap_file -EXPORT_SYMBOL vmlinux 0x74294963 blk_rq_set_block_pc -EXPORT_SYMBOL vmlinux 0x743b4ae3 atomic64_inc_not_zero_cx8 -EXPORT_SYMBOL vmlinux 0x744006ac vme_bus_num -EXPORT_SYMBOL vmlinux 0x745f20a3 idr_is_empty -EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x7473dd65 nvm_put_blk_unlocked -EXPORT_SYMBOL vmlinux 0x747e8387 find_vma -EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x74b0b2dc inet_frags_fini -EXPORT_SYMBOL vmlinux 0x74bb020a __scm_send -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74e07e48 rwsem_down_write_failed -EXPORT_SYMBOL vmlinux 0x74e5c98f ucs2_strnlen -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74edaab9 cont_write_begin -EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv -EXPORT_SYMBOL vmlinux 0x75271716 save_processor_state -EXPORT_SYMBOL vmlinux 0x7531e3dc acpi_get_event_resources -EXPORT_SYMBOL vmlinux 0x7538b132 agp_off -EXPORT_SYMBOL vmlinux 0x7541037c dquot_quota_sync -EXPORT_SYMBOL vmlinux 0x7541f1a7 dst_discard_out -EXPORT_SYMBOL vmlinux 0x754f0f59 __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x7587410c neigh_seq_next -EXPORT_SYMBOL vmlinux 0x758f24eb ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0x758fe7d8 padata_start -EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 -EXPORT_SYMBOL vmlinux 0x75bc549a x86_cpu_to_apicid -EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc -EXPORT_SYMBOL vmlinux 0x75c8e732 genphy_update_link -EXPORT_SYMBOL vmlinux 0x75d21809 vprintk_emit -EXPORT_SYMBOL vmlinux 0x75fbdefd acpi_remove_address_space_handler -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x760c830b nonseekable_open -EXPORT_SYMBOL vmlinux 0x76295ad2 bmap -EXPORT_SYMBOL vmlinux 0x762add85 atomic64_inc_return_cx8 -EXPORT_SYMBOL vmlinux 0x7641860a tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x764bd77c request_resource -EXPORT_SYMBOL vmlinux 0x764cee67 padata_stop -EXPORT_SYMBOL vmlinux 0x7650ecd2 mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0x765aaad2 nla_append -EXPORT_SYMBOL vmlinux 0x7669cc76 dev_get_iflink -EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc -EXPORT_SYMBOL vmlinux 0x7684d904 neigh_table_init -EXPORT_SYMBOL vmlinux 0x7692aa06 abx500_set_register_interruptible -EXPORT_SYMBOL vmlinux 0x769e06d7 smp_call_function_many -EXPORT_SYMBOL vmlinux 0x76a6e932 serio_close -EXPORT_SYMBOL vmlinux 0x76aeab08 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0x76b1bc55 nvm_free_rqd_ppalist -EXPORT_SYMBOL vmlinux 0x76ce31be inode_get_bytes -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint -EXPORT_SYMBOL vmlinux 0x76d9bf11 crc32_be -EXPORT_SYMBOL vmlinux 0x76f6c5ef kmalloc_order -EXPORT_SYMBOL vmlinux 0x76f92b9b scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0x770a0036 isapnp_cfg_begin -EXPORT_SYMBOL vmlinux 0x770ef532 rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x773fcee9 __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir -EXPORT_SYMBOL vmlinux 0x776e4040 serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x777e4c2c d_add_ci -EXPORT_SYMBOL vmlinux 0x77968b3c inet_shutdown -EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll -EXPORT_SYMBOL vmlinux 0x77b8227d write_cache_pages -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77e08cd1 pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x77e371e1 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x77ea14fa mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x77ec5fea vlan_vid_del -EXPORT_SYMBOL vmlinux 0x780e51bd blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0x780fdfd1 intel_enable_gtt -EXPORT_SYMBOL vmlinux 0x781046b6 param_ops_bint -EXPORT_SYMBOL vmlinux 0x781223c9 iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0x7818ff00 proc_douintvec -EXPORT_SYMBOL vmlinux 0x78235176 scsi_dma_map -EXPORT_SYMBOL vmlinux 0x782567ec memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0x7834ad07 single_open -EXPORT_SYMBOL vmlinux 0x7838de77 pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t -EXPORT_SYMBOL vmlinux 0x783b977a kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0x78423b49 netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x784515a1 unregister_framebuffer -EXPORT_SYMBOL vmlinux 0x7856fefb param_set_ushort -EXPORT_SYMBOL vmlinux 0x7857880b agp_unbind_memory -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x78a0319a simple_transaction_release -EXPORT_SYMBOL vmlinux 0x78a5ff8a fence_add_callback -EXPORT_SYMBOL vmlinux 0x78aa8341 dquot_resume -EXPORT_SYMBOL vmlinux 0x78aef09c vga_tryget -EXPORT_SYMBOL vmlinux 0x78c7cf93 register_netdevice -EXPORT_SYMBOL vmlinux 0x78d63f3b swiotlb_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78e739aa up -EXPORT_SYMBOL vmlinux 0x78e866a9 unregister_nls -EXPORT_SYMBOL vmlinux 0x78ef60b8 init_task -EXPORT_SYMBOL vmlinux 0x79068fda acpi_install_method -EXPORT_SYMBOL vmlinux 0x790da7d8 kern_path_create -EXPORT_SYMBOL vmlinux 0x79127c20 scsi_execute -EXPORT_SYMBOL vmlinux 0x791ed1c9 rename_lock -EXPORT_SYMBOL vmlinux 0x79363c41 eisa_driver_unregister -EXPORT_SYMBOL vmlinux 0x7941407e jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x794a98ef dm_put_table_device -EXPORT_SYMBOL vmlinux 0x79679064 bd_set_size -EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0x79a95a16 pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79e449d2 ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x79fd5d60 tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0x7a16d1cf agp_put_bridge -EXPORT_SYMBOL vmlinux 0x7a23add9 led_blink_set -EXPORT_SYMBOL vmlinux 0x7a2add7d current_kernel_time64 -EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number -EXPORT_SYMBOL vmlinux 0x7a33a8b1 devfreq_add_device -EXPORT_SYMBOL vmlinux 0x7a3944b3 scsi_scan_target -EXPORT_SYMBOL vmlinux 0x7a4128a8 skb_find_text -EXPORT_SYMBOL vmlinux 0x7a4497db kzfree -EXPORT_SYMBOL vmlinux 0x7a4648bf load_nls -EXPORT_SYMBOL vmlinux 0x7a5e6cb9 devm_clk_put -EXPORT_SYMBOL vmlinux 0x7a68e00d __getblk_gfp -EXPORT_SYMBOL vmlinux 0x7a81480b jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0x7a82cb47 rdmsrl_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x7a84eb29 ppp_input_error -EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7ac5f7a7 phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0x7accce24 kobject_del -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7aec9089 clear_user -EXPORT_SYMBOL vmlinux 0x7af01c1b tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf -EXPORT_SYMBOL vmlinux 0x7b04cf92 jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x7b05c834 alloc_fcdev -EXPORT_SYMBOL vmlinux 0x7b082d38 backlight_force_update -EXPORT_SYMBOL vmlinux 0x7b116748 dev_mc_unsync -EXPORT_SYMBOL vmlinux 0x7b134ddf acpi_get_name -EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array -EXPORT_SYMBOL vmlinux 0x7b1ade38 lz4_decompress -EXPORT_SYMBOL vmlinux 0x7b241d22 twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0x7b26adda unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0x7b359c74 bio_integrity_endio -EXPORT_SYMBOL vmlinux 0x7b44121a inet_stream_ops -EXPORT_SYMBOL vmlinux 0x7b52a859 wrmsr_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap -EXPORT_SYMBOL vmlinux 0x7b635087 pnp_possible_config -EXPORT_SYMBOL vmlinux 0x7b7a93b3 padata_set_cpumask -EXPORT_SYMBOL vmlinux 0x7b7c26b7 dev_uc_unsync -EXPORT_SYMBOL vmlinux 0x7b7dd072 memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0x7b904713 param_ops_ushort -EXPORT_SYMBOL vmlinux 0x7bac99a5 seq_vprintf -EXPORT_SYMBOL vmlinux 0x7bad7a1a acpi_walk_resources -EXPORT_SYMBOL vmlinux 0x7baf2673 tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x7bc66242 dst_destroy -EXPORT_SYMBOL vmlinux 0x7bed4f94 blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x7c1372e8 panic -EXPORT_SYMBOL vmlinux 0x7c16ca97 ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c250a3c xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c53f26a tcf_hash_insert -EXPORT_SYMBOL vmlinux 0x7c61340c __release_region -EXPORT_SYMBOL vmlinux 0x7c63ab0b kernel_bind -EXPORT_SYMBOL vmlinux 0x7c831c2e phy_driver_unregister -EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read -EXPORT_SYMBOL vmlinux 0x7ca42468 ip_ct_attach -EXPORT_SYMBOL vmlinux 0x7ca50bf8 fsnotify_destroy_mark -EXPORT_SYMBOL vmlinux 0x7cb07b20 __sk_dst_check -EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down -EXPORT_SYMBOL vmlinux 0x7cb41d38 bio_integrity_enabled -EXPORT_SYMBOL vmlinux 0x7cb57566 nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0x7cb74216 generic_file_open -EXPORT_SYMBOL vmlinux 0x7cbb1ade sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0x7cc0dabc generic_fillattr -EXPORT_SYMBOL vmlinux 0x7cdc9213 blk_queue_end_tag -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7ce83365 acpi_remove_table_handler -EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7cfe51ad xfrm4_prepare_output -EXPORT_SYMBOL vmlinux 0x7d0ac428 md_error -EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies -EXPORT_SYMBOL vmlinux 0x7d31aa39 __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0x7d3a124d param_get_short -EXPORT_SYMBOL vmlinux 0x7d438318 pci_iounmap -EXPORT_SYMBOL vmlinux 0x7d56548c end_buffer_async_write -EXPORT_SYMBOL vmlinux 0x7d588a92 __serio_register_driver -EXPORT_SYMBOL vmlinux 0x7d5c6eb9 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug -EXPORT_SYMBOL vmlinux 0x7d74982e key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0x7d8489ce seq_escape -EXPORT_SYMBOL vmlinux 0x7d8a3a87 tty_set_operations -EXPORT_SYMBOL vmlinux 0x7d8a4ab6 napi_gro_flush -EXPORT_SYMBOL vmlinux 0x7d8fd50d peernet2id_alloc -EXPORT_SYMBOL vmlinux 0x7d94f746 acpi_os_write_port -EXPORT_SYMBOL vmlinux 0x7d96cea3 wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0x7da85af3 ps2_begin_command -EXPORT_SYMBOL vmlinux 0x7db11b61 prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0x7dbc2e57 mmiotrace_printk -EXPORT_SYMBOL vmlinux 0x7de369a4 blk_queue_invalidate_tags -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7dfaa661 devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0x7e0491ed sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x7e0e349d bio_clone_bioset -EXPORT_SYMBOL vmlinux 0x7e53487b xfrm_state_add -EXPORT_SYMBOL vmlinux 0x7e5c35b1 gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0x7e69c7c7 __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x7e7fc3fb __wake_up_bit -EXPORT_SYMBOL vmlinux 0x7e80d946 get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x7e9324f8 vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x7ead89e8 param_ops_string -EXPORT_SYMBOL vmlinux 0x7eaf8f23 fb_prepare_logo -EXPORT_SYMBOL vmlinux 0x7ec9bed0 twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0x7ecb001b __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x7ecc707d agp_generic_free_by_type -EXPORT_SYMBOL vmlinux 0x7edb114b phy_device_remove -EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x7ee73c0c memcg_socket_limit_enabled -EXPORT_SYMBOL vmlinux 0x7ef864de tcp_proc_unregister -EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f10b2b2 nd_device_unregister -EXPORT_SYMBOL vmlinux 0x7f170291 request_key -EXPORT_SYMBOL vmlinux 0x7f2008c7 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f3d551a jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0x7f4e7a59 mmc_stop_bkops -EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done -EXPORT_SYMBOL vmlinux 0x7f6e0bb1 skb_clone_sk -EXPORT_SYMBOL vmlinux 0x7f7a7030 mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0x7f889436 i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0x7f8d38bd freeze_bdev -EXPORT_SYMBOL vmlinux 0x7f99be99 pnp_release_card_device -EXPORT_SYMBOL vmlinux 0x7faaf9f6 dma_supported -EXPORT_SYMBOL vmlinux 0x7fc804dc __scsi_alloc_queue -EXPORT_SYMBOL vmlinux 0x7fd87cbb block_write_begin -EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7ff4c845 dma_release_declared_memory -EXPORT_SYMBOL vmlinux 0x805b0944 devm_gpiod_put -EXPORT_SYMBOL vmlinux 0x805b7980 dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x808228bb pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0x8090cb2d from_kuid -EXPORT_SYMBOL vmlinux 0x8092647d scsi_cmd_ioctl -EXPORT_SYMBOL vmlinux 0x809388ca idr_destroy -EXPORT_SYMBOL vmlinux 0x80a0102a dev_remove_offload -EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80d2f2bf alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80d9ca85 paravirt_ticketlocks_enabled -EXPORT_SYMBOL vmlinux 0x80e9a1db skb_unlink -EXPORT_SYMBOL vmlinux 0x80eb423b acpi_get_object_info -EXPORT_SYMBOL vmlinux 0x80f3bddf seq_file_path -EXPORT_SYMBOL vmlinux 0x80fd50a0 d_make_root -EXPORT_SYMBOL vmlinux 0x81144f9d idr_find_slowpath -EXPORT_SYMBOL vmlinux 0x81191596 textsearch_prepare -EXPORT_SYMBOL vmlinux 0x8131e9c8 do_truncate -EXPORT_SYMBOL vmlinux 0x813b6b5a vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0x81472677 acpi_get_table -EXPORT_SYMBOL vmlinux 0x8149eae9 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x814ce4bc blk_mq_abort_requeue_list -EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x815c56d0 cpu_present_mask -EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page -EXPORT_SYMBOL vmlinux 0x816e8b13 put_cmsg -EXPORT_SYMBOL vmlinux 0x817ca9ec ip_options_compile -EXPORT_SYMBOL vmlinux 0x819e3f99 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0x81c9e0ac blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x81d23007 pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x81d52ce3 jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x81e79a9f dev_err -EXPORT_SYMBOL vmlinux 0x81f450f5 seq_puts -EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill -EXPORT_SYMBOL vmlinux 0x8212721d xenbus_dev_request_and_reply -EXPORT_SYMBOL vmlinux 0x821d13da generic_key_instantiate -EXPORT_SYMBOL vmlinux 0x82277cc8 get_disk -EXPORT_SYMBOL vmlinux 0x8235805b memmove -EXPORT_SYMBOL vmlinux 0x82524b3c scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun -EXPORT_SYMBOL vmlinux 0x827f82af genphy_config_aneg -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes -EXPORT_SYMBOL vmlinux 0x829534b3 fence_free -EXPORT_SYMBOL vmlinux 0x829ba629 ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched -EXPORT_SYMBOL vmlinux 0x82af267c register_qdisc -EXPORT_SYMBOL vmlinux 0x82c09361 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0x82e9f00b __generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x82f8248d follow_pfn -EXPORT_SYMBOL vmlinux 0x830e547b ioremap_prot -EXPORT_SYMBOL vmlinux 0x8329e6f0 memset -EXPORT_SYMBOL vmlinux 0x832fa791 __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x833c03aa acpi_enable_all_runtime_gpes -EXPORT_SYMBOL vmlinux 0x8343f839 revert_creds -EXPORT_SYMBOL vmlinux 0x834e80c5 inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x8372cd2f __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x8382e59a acpi_walk_resource_buffer -EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x83a4e699 param_ops_long -EXPORT_SYMBOL vmlinux 0x83ab6465 d_splice_alias -EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init -EXPORT_SYMBOL vmlinux 0x83c24adb jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83c7350c agp_create_memory -EXPORT_SYMBOL vmlinux 0x83e50a5b page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x83f02413 pnp_register_driver -EXPORT_SYMBOL vmlinux 0x83f53dce iunique -EXPORT_SYMBOL vmlinux 0x83fd4816 scsi_device_resume -EXPORT_SYMBOL vmlinux 0x84060081 xen_poll_irq_timeout -EXPORT_SYMBOL vmlinux 0x840aef32 shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x84156c75 poll_freewait -EXPORT_SYMBOL vmlinux 0x8417f512 acpi_update_all_gpes -EXPORT_SYMBOL vmlinux 0x848f29fc migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0x849e69aa from_kuid_munged -EXPORT_SYMBOL vmlinux 0x84cd1699 sg_miter_stop -EXPORT_SYMBOL vmlinux 0x84e57df5 dma_mark_declared_memory_occupied -EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload -EXPORT_SYMBOL vmlinux 0x85162318 netif_device_detach -EXPORT_SYMBOL vmlinux 0x8526c35a remove_wait_queue -EXPORT_SYMBOL vmlinux 0x8540324c jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0x85511412 mark_info_dirty -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x857582f7 acpi_enable_all_wakeup_gpes -EXPORT_SYMBOL vmlinux 0x857d2eee scsi_mode_sense -EXPORT_SYMBOL vmlinux 0x858a5f70 icmp_send -EXPORT_SYMBOL vmlinux 0x858b3fe3 free_iova_mem -EXPORT_SYMBOL vmlinux 0x8595db7a kill_anon_super -EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85c2802c mmc_power_save_host -EXPORT_SYMBOL vmlinux 0x85d7f263 inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85ed145b pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x86182550 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0x861e22a4 acpi_map_cpu -EXPORT_SYMBOL vmlinux 0x86256eed tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0x8638309d sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x863da7a9 netpoll_setup -EXPORT_SYMBOL vmlinux 0x8649f73c cfb_fillrect -EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x865d263c tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x86a4889a kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0x86b02695 param_set_invbool -EXPORT_SYMBOL vmlinux 0x86c35ebf d_drop -EXPORT_SYMBOL vmlinux 0x86e262c9 devm_get_gpiod_from_child -EXPORT_SYMBOL vmlinux 0x86e63ef7 mdiobus_scan -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x87031d23 devm_clk_get -EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags -EXPORT_SYMBOL vmlinux 0x876ae99e uart_unregister_driver -EXPORT_SYMBOL vmlinux 0x876dafc3 ec_write -EXPORT_SYMBOL vmlinux 0x877bc78e elv_rq_merge_ok -EXPORT_SYMBOL vmlinux 0x877d3cad blk_recount_segments -EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale -EXPORT_SYMBOL vmlinux 0x878cd015 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0x878d027f __free_pages -EXPORT_SYMBOL vmlinux 0x879c796c wake_up_process -EXPORT_SYMBOL vmlinux 0x87a8e24b dev_set_mac_address -EXPORT_SYMBOL vmlinux 0x87aaddf8 wrmsr_safe_regs_on_cpu -EXPORT_SYMBOL vmlinux 0x87b29080 dcache_dir_close -EXPORT_SYMBOL vmlinux 0x87d31ac6 xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0x87d54bed scmd_printk -EXPORT_SYMBOL vmlinux 0x87f3b314 agp_backend_release -EXPORT_SYMBOL vmlinux 0x88023f3b vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0x880fe97f input_register_device -EXPORT_SYMBOL vmlinux 0x881c213a devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0x882a97d9 atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x88bf002a ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0x88bfa4d7 mmc_interrupt_hpi -EXPORT_SYMBOL vmlinux 0x88d0a3f9 phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0x892b26a0 set_memory_nx -EXPORT_SYMBOL vmlinux 0x894c2541 inetdev_by_index -EXPORT_SYMBOL vmlinux 0x895164ba zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0x89557a0f generic_file_splice_read -EXPORT_SYMBOL vmlinux 0x8957ce94 soft_cursor -EXPORT_SYMBOL vmlinux 0x895d3e4a km_is_alive -EXPORT_SYMBOL vmlinux 0x896c50b7 md_update_sb -EXPORT_SYMBOL vmlinux 0x89a16861 cdrom_release -EXPORT_SYMBOL vmlinux 0x89a3b429 dcache_dir_open -EXPORT_SYMBOL vmlinux 0x89a84b29 tcp_splice_read -EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x89d91734 nd_namespace_blk_validate -EXPORT_SYMBOL vmlinux 0x89f8c0fd blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0x8a0b12c6 complete_all -EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies -EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a4d30f4 unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning -EXPORT_SYMBOL vmlinux 0x8a66ad52 acpi_bus_register_driver -EXPORT_SYMBOL vmlinux 0x8a6944f9 percpu_counter_set -EXPORT_SYMBOL vmlinux 0x8a77ebd5 phy_suspend -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a80d7a5 acpi_error -EXPORT_SYMBOL vmlinux 0x8a8991fc locks_copy_lock -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8ae946c3 sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0x8aefe1c2 pci_claim_resource -EXPORT_SYMBOL vmlinux 0x8b0263be mmc_request_done -EXPORT_SYMBOL vmlinux 0x8b03a62b tcp_gro_complete -EXPORT_SYMBOL vmlinux 0x8b141f9a netdev_printk -EXPORT_SYMBOL vmlinux 0x8b18496f __copy_to_user_ll -EXPORT_SYMBOL vmlinux 0x8b284fc7 nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x8b2a1e71 locks_mandatory_area -EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last -EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b9360b0 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0x8b9547bd scsi_remove_host -EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup -EXPORT_SYMBOL vmlinux 0x8bb324e9 fsync_bdev -EXPORT_SYMBOL vmlinux 0x8bb4d467 posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0x8bcd683f remove_arg_zero -EXPORT_SYMBOL vmlinux 0x8c090e08 __skb_get_hash_flowi4 -EXPORT_SYMBOL vmlinux 0x8c093878 pnp_start_dev -EXPORT_SYMBOL vmlinux 0x8c097505 dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 -EXPORT_SYMBOL vmlinux 0x8c1c4a27 down_write_trylock -EXPORT_SYMBOL vmlinux 0x8c3f5d66 scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x8c580cb9 mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x8c6552af inet_getname -EXPORT_SYMBOL vmlinux 0x8c673836 follow_down_one -EXPORT_SYMBOL vmlinux 0x8c6f0499 __napi_complete -EXPORT_SYMBOL vmlinux 0x8c848b3e dev_open -EXPORT_SYMBOL vmlinux 0x8c889d50 __lock_page -EXPORT_SYMBOL vmlinux 0x8c8c677e dqget -EXPORT_SYMBOL vmlinux 0x8c93fb45 blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x8ca53916 bio_chain -EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep -EXPORT_SYMBOL vmlinux 0x8cd03332 dma_declare_coherent_memory -EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending -EXPORT_SYMBOL vmlinux 0x8cdbe935 sock_no_connect -EXPORT_SYMBOL vmlinux 0x8ce90992 devm_ioremap -EXPORT_SYMBOL vmlinux 0x8d030ede adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x8d26e8a9 neigh_direct_output -EXPORT_SYMBOL vmlinux 0x8d34c811 icmpv6_send -EXPORT_SYMBOL vmlinux 0x8d4f2350 lwtunnel_cmp_encap -EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d5c7121 unregister_shrinker -EXPORT_SYMBOL vmlinux 0x8d617207 netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x8d638a85 blk_integrity_compare -EXPORT_SYMBOL vmlinux 0x8d649b41 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0x8d6b2ce1 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x8d6f81b4 __div64_32 -EXPORT_SYMBOL vmlinux 0x8d72495b __getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d838d91 ida_remove -EXPORT_SYMBOL vmlinux 0x8d8d96c6 acpi_get_sleep_type_data -EXPORT_SYMBOL vmlinux 0x8da1a3cb acpi_remove_interface -EXPORT_SYMBOL vmlinux 0x8daf8c42 dql_init -EXPORT_SYMBOL vmlinux 0x8db44985 dquot_acquire -EXPORT_SYMBOL vmlinux 0x8dc30825 vfs_writev -EXPORT_SYMBOL vmlinux 0x8dc6e564 restore_processor_state -EXPORT_SYMBOL vmlinux 0x8dda8eb7 dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0x8dde5ace mmc_register_driver -EXPORT_SYMBOL vmlinux 0x8ddf0da9 max8998_bulk_read -EXPORT_SYMBOL vmlinux 0x8de7989c debugfs_create_automount -EXPORT_SYMBOL vmlinux 0x8dfcacd5 have_submounts -EXPORT_SYMBOL vmlinux 0x8e002cda acpi_remove_gpe_block -EXPORT_SYMBOL vmlinux 0x8e08137a tcp_check_req -EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x8e7a6841 arp_create -EXPORT_SYMBOL vmlinux 0x8e888ec3 cpumask_next_and -EXPORT_SYMBOL vmlinux 0x8e921a37 genphy_suspend -EXPORT_SYMBOL vmlinux 0x8e9ccaa9 filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler -EXPORT_SYMBOL vmlinux 0x8eb8f3ab pagecache_write_begin -EXPORT_SYMBOL vmlinux 0x8ec15c4f dev_get_stats -EXPORT_SYMBOL vmlinux 0x8ec6f890 nobh_truncate_page -EXPORT_SYMBOL vmlinux 0x8eccc13e i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0x8ecfd68d acpi_processor_notify_smm -EXPORT_SYMBOL vmlinux 0x8ed0823f sk_wait_data -EXPORT_SYMBOL vmlinux 0x8f073bcc clkdev_add -EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus -EXPORT_SYMBOL vmlinux 0x8f5af992 posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0x8f611bd4 inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x8f649f74 gen_new_estimator -EXPORT_SYMBOL vmlinux 0x8f899e75 skb_clone -EXPORT_SYMBOL vmlinux 0x8f920734 blk_mq_can_queue -EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 -EXPORT_SYMBOL vmlinux 0x8fa34955 nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0x8fa87c7a netpoll_send_udp -EXPORT_SYMBOL vmlinux 0x8fbe860e kernel_getpeername -EXPORT_SYMBOL vmlinux 0x8fc224f9 drop_super -EXPORT_SYMBOL vmlinux 0x8fc93117 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0x8fd1152e _raw_write_unlock -EXPORT_SYMBOL vmlinux 0x8fe59cef convert_art_to_tsc -EXPORT_SYMBOL vmlinux 0x8feccda7 bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x8ff4079b pv_irq_ops -EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 -EXPORT_SYMBOL vmlinux 0x90189441 acpi_match_device_ids -EXPORT_SYMBOL vmlinux 0x90252c60 ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x903393b9 acpi_device_hid -EXPORT_SYMBOL vmlinux 0x904409c6 acpi_set_firmware_waking_vector -EXPORT_SYMBOL vmlinux 0x90695906 vme_free_consistent -EXPORT_SYMBOL vmlinux 0x906cea04 pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0x907da5e0 mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0x908575fe queued_write_lock_slowpath -EXPORT_SYMBOL vmlinux 0x90871f13 phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0x90cebee6 xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x90ee056f sget_userns -EXPORT_SYMBOL vmlinux 0x90f9ddda vfs_rename -EXPORT_SYMBOL vmlinux 0x90fece7c acpi_pm_device_sleep_state -EXPORT_SYMBOL vmlinux 0x912e865d dma_common_mmap -EXPORT_SYMBOL vmlinux 0x9131c7ca sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x9142570a jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 -EXPORT_SYMBOL vmlinux 0x9152f991 sock_i_ino -EXPORT_SYMBOL vmlinux 0x9153894f alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0x915d531c vga_put -EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb -EXPORT_SYMBOL vmlinux 0x9161464e neigh_event_ns -EXPORT_SYMBOL vmlinux 0x91715312 sprintf -EXPORT_SYMBOL vmlinux 0x9174c77a __inode_add_bytes -EXPORT_SYMBOL vmlinux 0x91829e03 write_dirty_buffer -EXPORT_SYMBOL vmlinux 0x918a5347 fd_install -EXPORT_SYMBOL vmlinux 0x91936bc0 free_page_put_link -EXPORT_SYMBOL vmlinux 0x91967e8e xen_selfballoon_init -EXPORT_SYMBOL vmlinux 0x91a54906 mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0x91ab8bd6 iov_iter_copy_from_user_atomic -EXPORT_SYMBOL vmlinux 0x91be94dd ip_check_defrag -EXPORT_SYMBOL vmlinux 0x91c7de73 phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 -EXPORT_SYMBOL vmlinux 0x92230bfd jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x922c7e00 kunmap -EXPORT_SYMBOL vmlinux 0x9235ef36 try_to_writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x926dd8a1 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0x9286b2eb inet_recvmsg -EXPORT_SYMBOL vmlinux 0x92897e3d default_idle -EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm -EXPORT_SYMBOL vmlinux 0x92b2fb1c skb_seq_read -EXPORT_SYMBOL vmlinux 0x92b7c740 tty_check_change -EXPORT_SYMBOL vmlinux 0x92eef4e5 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0x92f6767f lg_local_lock -EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x9304ef22 unregister_netdev -EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x9308dc57 scm_detach_fds -EXPORT_SYMBOL vmlinux 0x9310dcc2 seq_release -EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0x93246ab4 touch_atime -EXPORT_SYMBOL vmlinux 0x932493a8 iosf_mbi_read -EXPORT_SYMBOL vmlinux 0x932693a0 sock_setsockopt -EXPORT_SYMBOL vmlinux 0x9370b242 scsi_unregister -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x938f5910 kill_pid -EXPORT_SYMBOL vmlinux 0x93920944 iterate_dir -EXPORT_SYMBOL vmlinux 0x939963f1 pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x93a6c299 scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93c71423 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0x93d41166 kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0x93dc1ca4 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0x93e1a120 vfs_getxattr_alloc -EXPORT_SYMBOL vmlinux 0x93f9c451 simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages -EXPORT_SYMBOL vmlinux 0x93fdf6c2 dquot_commit -EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int -EXPORT_SYMBOL vmlinux 0x940f9cf6 kblockd_schedule_delayed_work -EXPORT_SYMBOL vmlinux 0x9411d106 vfs_write -EXPORT_SYMBOL vmlinux 0x9436f393 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x94447121 sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0x9453ab89 simple_nosetlease -EXPORT_SYMBOL vmlinux 0x946d159b sockfd_lookup -EXPORT_SYMBOL vmlinux 0x94950b98 wait_iff_congested -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x94b541b5 cpu_active_mask -EXPORT_SYMBOL vmlinux 0x94b66724 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0x94cdc901 iterate_mounts -EXPORT_SYMBOL vmlinux 0x94cf733b inet_register_protosw -EXPORT_SYMBOL vmlinux 0x94de0183 crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0x94eea794 getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x94f08f68 tso_count_descs -EXPORT_SYMBOL vmlinux 0x94f643be phy_init_hw -EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x95237a40 pipe_unlock -EXPORT_SYMBOL vmlinux 0x952a2fd8 inet_sendpage -EXPORT_SYMBOL vmlinux 0x95395301 acpi_exception -EXPORT_SYMBOL vmlinux 0x953d8e45 serio_open -EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init -EXPORT_SYMBOL vmlinux 0x9558985a skb_checksum_setup -EXPORT_SYMBOL vmlinux 0x9579430c param_get_ushort -EXPORT_SYMBOL vmlinux 0x957cf6b7 bdgrab -EXPORT_SYMBOL vmlinux 0x9586e66b pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0x959a6fb5 swiotlb_dma_mapping_error -EXPORT_SYMBOL vmlinux 0x95a66653 rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0x95bd6e26 acpi_install_sci_handler -EXPORT_SYMBOL vmlinux 0x95dd7e91 phy_ethtool_sset -EXPORT_SYMBOL vmlinux 0x95fed23b grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0x95fef03b unmap_underlying_metadata -EXPORT_SYMBOL vmlinux 0x960dfaf5 radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0x9614e361 skb_copy_bits -EXPORT_SYMBOL vmlinux 0x9622093d blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0x96262761 up_read -EXPORT_SYMBOL vmlinux 0x96380f1f generic_start_io_acct -EXPORT_SYMBOL vmlinux 0x963dc37c seq_open_private -EXPORT_SYMBOL vmlinux 0x9644cedf tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x965d144c mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x9689fa99 key_type_keyring -EXPORT_SYMBOL vmlinux 0x96913d20 fbcon_set_tileops -EXPORT_SYMBOL vmlinux 0x9697ca47 pci_enable_device -EXPORT_SYMBOL vmlinux 0x96bd0ead pv_cpu_ops -EXPORT_SYMBOL vmlinux 0x96c769c7 sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x96c7efb4 vga_switcheroo_fini_domain_pm_ops -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96deeee7 request_firmware -EXPORT_SYMBOL vmlinux 0x96f282a1 create_empty_buffers -EXPORT_SYMBOL vmlinux 0x96f38f77 remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0x97013770 blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x9722730c nvm_get_blk_unlocked -EXPORT_SYMBOL vmlinux 0x9730f7ba audit_log_start -EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier -EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x977131a6 lease_get_mtime -EXPORT_SYMBOL vmlinux 0x978961f4 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x978e5af8 __frontswap_store -EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state -EXPORT_SYMBOL vmlinux 0x979c9990 dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x97c5bd0a acpi_unload_parent_table -EXPORT_SYMBOL vmlinux 0x97c9ee81 blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0x97de0ddd acpi_install_gpe_block -EXPORT_SYMBOL vmlinux 0x97e1b258 blk_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x97ed88d5 dev_mc_init -EXPORT_SYMBOL vmlinux 0x97f9e141 file_path -EXPORT_SYMBOL vmlinux 0x9814c7a5 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x981fbaab xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint -EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x9878745c _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0x988ed85d set_memory_x -EXPORT_SYMBOL vmlinux 0x98a6fd4d dmam_release_declared_memory -EXPORT_SYMBOL vmlinux 0x98cb01fe fb_get_mode -EXPORT_SYMBOL vmlinux 0x98e3002b blk_run_queue -EXPORT_SYMBOL vmlinux 0x98e3007a sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x98e68eca cancel_delayed_work -EXPORT_SYMBOL vmlinux 0x990364cf bdev_read_only -EXPORT_SYMBOL vmlinux 0x990e08e6 seq_open -EXPORT_SYMBOL vmlinux 0x990fb340 sync_inode -EXPORT_SYMBOL vmlinux 0x99233c32 cpu_core_map -EXPORT_SYMBOL vmlinux 0x992f70e5 blk_queue_bounce -EXPORT_SYMBOL vmlinux 0x9935dfeb netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x993712e2 mem_map -EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x9950e868 kernel_connect -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x9960e9a2 blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0x9968e7de xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x996c29ea pci_bus_get -EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99a6853b neigh_ifdown -EXPORT_SYMBOL vmlinux 0x99c2a1c9 tcp_prot -EXPORT_SYMBOL vmlinux 0x99c4aced jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering -EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99e1856e kobject_add -EXPORT_SYMBOL vmlinux 0x99ea1b48 vfs_rmdir -EXPORT_SYMBOL vmlinux 0x99eb1fc2 nvm_submit_io -EXPORT_SYMBOL vmlinux 0x9a03fd1c jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval -EXPORT_SYMBOL vmlinux 0x9a33b647 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x9a3c353b no_llseek -EXPORT_SYMBOL vmlinux 0x9a3d4d7a dm_ratelimit_state -EXPORT_SYMBOL vmlinux 0x9a540a07 tty_vhangup -EXPORT_SYMBOL vmlinux 0x9a6a83f9 cmos_lock -EXPORT_SYMBOL vmlinux 0x9a779b64 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0x9a823b1f dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x9a873a29 dquot_release -EXPORT_SYMBOL vmlinux 0x9a937499 set_bh_page -EXPORT_SYMBOL vmlinux 0x9aa27f55 inet_dgram_connect -EXPORT_SYMBOL vmlinux 0x9ac17729 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0x9ad60292 scsi_print_result -EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach -EXPORT_SYMBOL vmlinux 0x9b111c9b __ps2_command -EXPORT_SYMBOL vmlinux 0x9b1b1d76 dquot_transfer -EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page -EXPORT_SYMBOL vmlinux 0x9b6ea28c blk_fetch_request -EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize -EXPORT_SYMBOL vmlinux 0x9b7dbcd0 blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0x9b860e8f fddi_change_mtu -EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x9ba146bf wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x9ba18e2e agp_generic_alloc_page -EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split -EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put -EXPORT_SYMBOL vmlinux 0x9bc83699 mem_cgroup_begin_page_stat -EXPORT_SYMBOL vmlinux 0x9bd974d6 phy_disconnect -EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x9c08407b mmc_release_host -EXPORT_SYMBOL vmlinux 0x9c1aa420 iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0x9c1cb791 register_quota_format -EXPORT_SYMBOL vmlinux 0x9c1d4f3b generic_writepages -EXPORT_SYMBOL vmlinux 0x9c28de67 agp_bridge -EXPORT_SYMBOL vmlinux 0x9c2c944a __copy_from_user_ll_nocache_nozero -EXPORT_SYMBOL vmlinux 0x9c4736e2 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x9c630f7a ip_defrag -EXPORT_SYMBOL vmlinux 0x9c6a160e phy_start_aneg -EXPORT_SYMBOL vmlinux 0x9c8387b8 tso_build_data -EXPORT_SYMBOL vmlinux 0x9c9e8654 pnp_activate_dev -EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cb6f568 pnpbios_protocol -EXPORT_SYMBOL vmlinux 0x9cdaf84e mfd_cell_disable -EXPORT_SYMBOL vmlinux 0x9ce169af neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x9ce4deb5 __napi_schedule -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d25962f trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x9d26a2c0 setattr_copy -EXPORT_SYMBOL vmlinux 0x9d33ef5e acpi_enable -EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init -EXPORT_SYMBOL vmlinux 0x9d3fdc67 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0x9d518cf4 kmem_cache_size -EXPORT_SYMBOL vmlinux 0x9d70d160 unregister_key_type -EXPORT_SYMBOL vmlinux 0x9d947eea key_reject_and_link -EXPORT_SYMBOL vmlinux 0x9da6ecb6 devm_gpiod_get_array -EXPORT_SYMBOL vmlinux 0x9dc277db nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0x9dd241f2 xfrm6_rcv_cb -EXPORT_SYMBOL vmlinux 0x9dfe7307 lz4_decompress_unknownoutputsize -EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e363b6b acpi_disable_gpe -EXPORT_SYMBOL vmlinux 0x9e379042 __lock_buffer -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e5ed3b7 uart_suspend_port -EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read -EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value -EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay -EXPORT_SYMBOL vmlinux 0x9e96375d dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9ea0c91f proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0x9eaf4194 dev_base_lock -EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource -EXPORT_SYMBOL vmlinux 0x9ed38752 mount_ns -EXPORT_SYMBOL vmlinux 0x9eda4718 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x9efcbcc6 tcp_close -EXPORT_SYMBOL vmlinux 0x9f0ab7dc __cleancache_get_page -EXPORT_SYMBOL vmlinux 0x9f136d72 md_reload_sb -EXPORT_SYMBOL vmlinux 0x9f248507 pci_enable_device_io -EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f49ec1b dump_emit -EXPORT_SYMBOL vmlinux 0x9f59e594 textsearch_unregister -EXPORT_SYMBOL vmlinux 0x9f5d12b6 brioctl_set -EXPORT_SYMBOL vmlinux 0x9f5e629f __splice_from_pipe -EXPORT_SYMBOL vmlinux 0x9f6a6e1c register_key_type -EXPORT_SYMBOL vmlinux 0x9f7ba1ac udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x9f8fc958 __devm_release_region -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9f9b46ca put_tty_driver -EXPORT_SYMBOL vmlinux 0x9f9f2668 __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x9fc2eefa __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0x9fd048cc pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed -EXPORT_SYMBOL vmlinux 0xa042b6f2 nvm_put_blk -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa0445fcc dentry_unhash -EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xa056e137 __skb_tx_hash -EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xa06c62cd put_filp -EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init -EXPORT_SYMBOL vmlinux 0xa07ff416 acpi_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa0a63371 jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0dc0d0d dev_set_mtu -EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem -EXPORT_SYMBOL vmlinux 0xa0eec981 security_path_truncate -EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa0ffdd3a dev_add_pack -EXPORT_SYMBOL vmlinux 0xa104e243 delete_from_page_cache -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa114c39d mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xa12b6300 __register_binfmt -EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts -EXPORT_SYMBOL vmlinux 0xa15e5acd agp_generic_enable -EXPORT_SYMBOL vmlinux 0xa1749662 touch_buffer -EXPORT_SYMBOL vmlinux 0xa1781be0 vlan_vid_add -EXPORT_SYMBOL vmlinux 0xa18eb164 ilookup5_nowait -EXPORT_SYMBOL vmlinux 0xa19de3fd boot_cpu_data -EXPORT_SYMBOL vmlinux 0xa1a4530d registered_fb -EXPORT_SYMBOL vmlinux 0xa1a8d702 pcie_get_mps -EXPORT_SYMBOL vmlinux 0xa1a942f7 led_blink_set_oneshot -EXPORT_SYMBOL vmlinux 0xa1afc91c dev_addr_del -EXPORT_SYMBOL vmlinux 0xa1b6c1d6 i2c_transfer -EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode -EXPORT_SYMBOL vmlinux 0xa1ba43a9 param_set_int -EXPORT_SYMBOL vmlinux 0xa1bfb3d0 lro_receive_skb -EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched -EXPORT_SYMBOL vmlinux 0xa1cab5cd simple_dentry_operations -EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create -EXPORT_SYMBOL vmlinux 0xa1ea23fd pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold -EXPORT_SYMBOL vmlinux 0xa20e3722 ppp_channel_index -EXPORT_SYMBOL vmlinux 0xa220a660 dma_alloc_from_coherent -EXPORT_SYMBOL vmlinux 0xa22fad05 max8998_bulk_write -EXPORT_SYMBOL vmlinux 0xa2439a4d seq_lseek -EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0xa291111f __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0xa2922709 d_move -EXPORT_SYMBOL vmlinux 0xa294a024 vme_slot_num -EXPORT_SYMBOL vmlinux 0xa29661e1 mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0xa2a17b96 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0xa2e69062 __vfs_write -EXPORT_SYMBOL vmlinux 0xa2ff7555 pnpacpi_protocol -EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set -EXPORT_SYMBOL vmlinux 0xa3366810 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0xa34fcb2d mempool_create_node -EXPORT_SYMBOL vmlinux 0xa350a8f8 set_memory_array_uc -EXPORT_SYMBOL vmlinux 0xa36f81ed update_region -EXPORT_SYMBOL vmlinux 0xa372074b tso_build_hdr -EXPORT_SYMBOL vmlinux 0xa376cbf8 phy_stop -EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get -EXPORT_SYMBOL vmlinux 0xa393ea54 inet_del_protocol -EXPORT_SYMBOL vmlinux 0xa3a16bcd set_pages_nx -EXPORT_SYMBOL vmlinux 0xa3a18de9 lwtunnel_output -EXPORT_SYMBOL vmlinux 0xa3c1cafe eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0xa3c58d65 rwsem_down_read_failed -EXPORT_SYMBOL vmlinux 0xa3c5d16b rwsem_downgrade_wake -EXPORT_SYMBOL vmlinux 0xa3dcbfd3 register_sysctl_paths -EXPORT_SYMBOL vmlinux 0xa3e73f8e single_open_size -EXPORT_SYMBOL vmlinux 0xa3f1bf3b dev_uc_init -EXPORT_SYMBOL vmlinux 0xa3f94649 agp_generic_create_gatt_table -EXPORT_SYMBOL vmlinux 0xa41b57f7 tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf -EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset -EXPORT_SYMBOL vmlinux 0xa47b8ec5 blk_mq_map_queue -EXPORT_SYMBOL vmlinux 0xa4a06362 bio_endio -EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep -EXPORT_SYMBOL vmlinux 0xa4bf0e36 __mdiobus_register -EXPORT_SYMBOL vmlinux 0xa4c922e5 dget_parent -EXPORT_SYMBOL vmlinux 0xa4d4e200 blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush -EXPORT_SYMBOL vmlinux 0xa4d60e28 dump_skip -EXPORT_SYMBOL vmlinux 0xa503f59f dquot_operations -EXPORT_SYMBOL vmlinux 0xa5175fb9 mmc_put_card -EXPORT_SYMBOL vmlinux 0xa51cdfe8 __FIXADDR_TOP -EXPORT_SYMBOL vmlinux 0xa5251579 alloc_xenballooned_pages -EXPORT_SYMBOL vmlinux 0xa5252ca6 nf_reinject -EXPORT_SYMBOL vmlinux 0xa5505cec __module_get -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa55b336c follow_down -EXPORT_SYMBOL vmlinux 0xa57fcdad __remove_inode_hash -EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes -EXPORT_SYMBOL vmlinux 0xa5afe528 ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0xa5b48a65 __blk_end_request -EXPORT_SYMBOL vmlinux 0xa5c16574 blk_alloc_queue_node -EXPORT_SYMBOL vmlinux 0xa5d43746 netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0xa5f1d3bf dev_mc_del_global -EXPORT_SYMBOL vmlinux 0xa6009fc5 vga_client_register -EXPORT_SYMBOL vmlinux 0xa606b7b1 dev_alloc_name -EXPORT_SYMBOL vmlinux 0xa6134b05 rtnl_create_link -EXPORT_SYMBOL vmlinux 0xa618ca65 tcf_hash_create -EXPORT_SYMBOL vmlinux 0xa61979d1 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0xa62e6e4f acpi_get_table_with_size -EXPORT_SYMBOL vmlinux 0xa631ef0c mmc_start_bkops -EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember -EXPORT_SYMBOL vmlinux 0xa64b37b8 register_netdev -EXPORT_SYMBOL vmlinux 0xa655007e pnp_device_attach -EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa684b315 scsi_init_io -EXPORT_SYMBOL vmlinux 0xa68632f1 __pagevec_release -EXPORT_SYMBOL vmlinux 0xa68a01e9 md_unregister_thread -EXPORT_SYMBOL vmlinux 0xa68b2d58 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0xa68c714e param_array_ops -EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0xa69bb947 sock_no_sendpage -EXPORT_SYMBOL vmlinux 0xa6a67e45 __starget_for_each_device -EXPORT_SYMBOL vmlinux 0xa6bbd805 __wake_up -EXPORT_SYMBOL vmlinux 0xa6bd63ca acpi_bios_error -EXPORT_SYMBOL vmlinux 0xa6eb645c deactivate_locked_super -EXPORT_SYMBOL vmlinux 0xa6fdc1be init_buffer -EXPORT_SYMBOL vmlinux 0xa6fee3c1 request_key_async_with_auxdata -EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function -EXPORT_SYMBOL vmlinux 0xa70e59a6 free_task -EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi -EXPORT_SYMBOL vmlinux 0xa71fb47c ps2_handle_ack -EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 -EXPORT_SYMBOL vmlinux 0xa7425308 security_path_symlink -EXPORT_SYMBOL vmlinux 0xa746c995 max8998_read_reg -EXPORT_SYMBOL vmlinux 0xa75c5464 keyring_search -EXPORT_SYMBOL vmlinux 0xa766b274 mount_bdev -EXPORT_SYMBOL vmlinux 0xa76bf4ce pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0xa78552df nf_log_packet -EXPORT_SYMBOL vmlinux 0xa787fdae i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0xa788f1a0 i8253_lock -EXPORT_SYMBOL vmlinux 0xa7ac47e4 ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0xa7cf6c2f atomic64_dec_return_cx8 -EXPORT_SYMBOL vmlinux 0xa7dacb73 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0xa7e4a7b7 current_in_userns -EXPORT_SYMBOL vmlinux 0xa7efac65 md_done_sync -EXPORT_SYMBOL vmlinux 0xa8186b1d pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0xa8260436 mmc_start_req -EXPORT_SYMBOL vmlinux 0xa840d929 genlmsg_put -EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa849bd8a jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0xa863a742 __dev_get_by_index -EXPORT_SYMBOL vmlinux 0xa8650e36 sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0xa8721b97 system_state -EXPORT_SYMBOL vmlinux 0xa893c725 blk_sync_queue -EXPORT_SYMBOL vmlinux 0xa89f2995 tcp_init_cgroup -EXPORT_SYMBOL vmlinux 0xa8ba3dd6 make_kuid -EXPORT_SYMBOL vmlinux 0xa8c376c4 inet_release -EXPORT_SYMBOL vmlinux 0xa8c97e07 d_set_fallthru -EXPORT_SYMBOL vmlinux 0xa8d9318f simple_empty -EXPORT_SYMBOL vmlinux 0xa8eb6750 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send -EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion -EXPORT_SYMBOL vmlinux 0xa9455180 xfrm_init_replay -EXPORT_SYMBOL vmlinux 0xa95dd9f8 pnp_request_card_device -EXPORT_SYMBOL vmlinux 0xa965e702 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa99f5c1d vga_switcheroo_register_audio_client -EXPORT_SYMBOL vmlinux 0xa9a830df try_to_release_page -EXPORT_SYMBOL vmlinux 0xa9a8e17f arch_phys_wc_add -EXPORT_SYMBOL vmlinux 0xa9ab74e7 dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0xa9cfea6b x86_hyper -EXPORT_SYMBOL vmlinux 0xa9eb9973 thermal_cdev_update -EXPORT_SYMBOL vmlinux 0xaa0722d3 jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0xaa0c0631 dev_change_flags -EXPORT_SYMBOL vmlinux 0xaa11a008 sock_no_setsockopt -EXPORT_SYMBOL vmlinux 0xaa170583 key_invalidate -EXPORT_SYMBOL vmlinux 0xaa32d172 pci_disable_device -EXPORT_SYMBOL vmlinux 0xaa5892c0 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0xaa5bd08d __pv_queued_spin_lock_slowpath -EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r -EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa8fea18 acpi_processor_register_performance -EXPORT_SYMBOL vmlinux 0xaabd1606 ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0xaad00d24 param_ops_uint -EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state -EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable -EXPORT_SYMBOL vmlinux 0xaaf99030 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0xab0dd03e sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0xab38f8ea generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0xab551fad acpi_get_data_full -EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off -EXPORT_SYMBOL vmlinux 0xab65ed80 set_memory_uc -EXPORT_SYMBOL vmlinux 0xab67cc45 blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0xab694444 bsearch -EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog -EXPORT_SYMBOL vmlinux 0xab770678 rdmsr_safe_regs_on_cpu -EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab83b9c9 input_event -EXPORT_SYMBOL vmlinux 0xab91eb8c vme_dma_request -EXPORT_SYMBOL vmlinux 0xaba3159c gen_pool_destroy -EXPORT_SYMBOL vmlinux 0xaba3ad0c radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0xaba7666c pci_bus_put -EXPORT_SYMBOL vmlinux 0xabc0c45e blk_get_queue -EXPORT_SYMBOL vmlinux 0xabc61cd4 dev_crit -EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev -EXPORT_SYMBOL vmlinux 0xabcc5516 vme_bus_type -EXPORT_SYMBOL vmlinux 0xabda2d6d skb_store_bits -EXPORT_SYMBOL vmlinux 0xabfcb4c3 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac25a7b2 blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0xac29863a kern_unmount -EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear -EXPORT_SYMBOL vmlinux 0xac42777e blk_queue_find_tag -EXPORT_SYMBOL vmlinux 0xac44ccd8 inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0xac61e513 mb_cache_entry_alloc -EXPORT_SYMBOL vmlinux 0xac65b67d iov_iter_alignment -EXPORT_SYMBOL vmlinux 0xac93ad6c dev_addr_flush -EXPORT_SYMBOL vmlinux 0xac99a5ea alloc_disk_node -EXPORT_SYMBOL vmlinux 0xaca4e8a8 dev_warn -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacb99769 ida_destroy -EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xaced0519 qdisc_reset -EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad0d3429 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0xad133625 abx500_get_chip_id -EXPORT_SYMBOL vmlinux 0xad20cbbb check_disk_change -EXPORT_SYMBOL vmlinux 0xad251cdb xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0xad547243 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xad591bf7 pci_scan_single_device -EXPORT_SYMBOL vmlinux 0xad621d42 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0xad63c6a9 d_instantiate_unique -EXPORT_SYMBOL vmlinux 0xad690698 install_exec_creds -EXPORT_SYMBOL vmlinux 0xad698f77 dqstats -EXPORT_SYMBOL vmlinux 0xad6e4bb6 mempool_free -EXPORT_SYMBOL vmlinux 0xad6fdf85 bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0xad731fb1 skb_trim -EXPORT_SYMBOL vmlinux 0xad81cbdf fbcon_rotate_ud -EXPORT_SYMBOL vmlinux 0xad836222 bioset_integrity_create -EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event -EXPORT_SYMBOL vmlinux 0xad917c88 tso_start -EXPORT_SYMBOL vmlinux 0xade1e206 kernel_accept -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae044bc7 panic_notifier_list -EXPORT_SYMBOL vmlinux 0xae20101b proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0xae3f9b3a scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0xae445c7e blk_queue_split -EXPORT_SYMBOL vmlinux 0xae49501b dma_release_from_coherent -EXPORT_SYMBOL vmlinux 0xae68fe35 uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0xae6ba98d kfree_skb_partial -EXPORT_SYMBOL vmlinux 0xae77a595 radix_tree_gang_lookup_slot -EXPORT_SYMBOL vmlinux 0xae7bfa9b twl6040_reg_write -EXPORT_SYMBOL vmlinux 0xae7d825d pci_save_state -EXPORT_SYMBOL vmlinux 0xae7e64f1 scsi_device_set_state -EXPORT_SYMBOL vmlinux 0xae85a27e radix_tree_lookup -EXPORT_SYMBOL vmlinux 0xae8eebe5 sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0xae9e956f __bforget -EXPORT_SYMBOL vmlinux 0xaea976a8 acpi_check_resource_conflict -EXPORT_SYMBOL vmlinux 0xaead915c input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact -EXPORT_SYMBOL vmlinux 0xaec80422 inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0xaeeb90c1 console_stop -EXPORT_SYMBOL vmlinux 0xaf009558 phy_stop_interrupts -EXPORT_SYMBOL vmlinux 0xaf15fe0f ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0xaf25e5e5 vfs_fsync -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf4a08a9 alloc_fddidev -EXPORT_SYMBOL vmlinux 0xaf4ae5ec mmc_can_discard -EXPORT_SYMBOL vmlinux 0xaf4b1540 acpi_get_irq_routing_table -EXPORT_SYMBOL vmlinux 0xaf5cfe5e netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0xaf611eac amd_nb_misc_ids -EXPORT_SYMBOL vmlinux 0xaf6c3d05 ht_create_irq -EXPORT_SYMBOL vmlinux 0xaf732c20 mmc_can_reset -EXPORT_SYMBOL vmlinux 0xaf74e321 input_flush_device -EXPORT_SYMBOL vmlinux 0xafb6ec25 udp_add_offload -EXPORT_SYMBOL vmlinux 0xaff78452 iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0xb00cb23c param_set_bool -EXPORT_SYMBOL vmlinux 0xb01b1db8 intel_gtt_insert_sg_entries -EXPORT_SYMBOL vmlinux 0xb01e717b __scm_destroy -EXPORT_SYMBOL vmlinux 0xb02bd591 _raw_read_unlock_irq -EXPORT_SYMBOL vmlinux 0xb05ac3aa __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb069a523 clkdev_drop -EXPORT_SYMBOL vmlinux 0xb0731d98 __devcgroup_inode_permission -EXPORT_SYMBOL vmlinux 0xb0817468 netif_carrier_on -EXPORT_SYMBOL vmlinux 0xb081b9c3 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0a4cb60 page_readlink -EXPORT_SYMBOL vmlinux 0xb0b203f0 blk_execute_rq -EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0xb0b68450 genphy_aneg_done -EXPORT_SYMBOL vmlinux 0xb0c3699f __mmc_claim_host -EXPORT_SYMBOL vmlinux 0xb0cb131d empty_aops -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0e22437 agp_generic_destroy_pages -EXPORT_SYMBOL vmlinux 0xb0eb41ff iommu_tbl_range_free -EXPORT_SYMBOL vmlinux 0xb0ebd17c posix_acl_fix_xattr_userns -EXPORT_SYMBOL vmlinux 0xb0ee5adb bitmap_close_sync -EXPORT_SYMBOL vmlinux 0xb10651bf mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0xb10820e4 _raw_read_unlock -EXPORT_SYMBOL vmlinux 0xb111680a scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0xb1196a49 drop_nlink -EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on -EXPORT_SYMBOL vmlinux 0xb12b08ee input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0xb12be019 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb14d0667 bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xb160188b override_creds -EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table -EXPORT_SYMBOL vmlinux 0xb168f7b1 get_agp_version -EXPORT_SYMBOL vmlinux 0xb1697882 sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0xb16dbcb3 phy_set_max_speed -EXPORT_SYMBOL vmlinux 0xb187b3a8 lg_lock_init -EXPORT_SYMBOL vmlinux 0xb19c6438 dev_mc_del -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1ca9c9c register_cdrom -EXPORT_SYMBOL vmlinux 0xb1cb625e ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xb1cfad22 rdmsr_on_cpu -EXPORT_SYMBOL vmlinux 0xb1d70a4a tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0xb1e510ba ip6_expire_frag_queue -EXPORT_SYMBOL vmlinux 0xb21254ac mmc_can_sanitize -EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu -EXPORT_SYMBOL vmlinux 0xb226f9e0 devm_ioremap_nocache -EXPORT_SYMBOL vmlinux 0xb22926da vga_switcheroo_register_client -EXPORT_SYMBOL vmlinux 0xb2455026 serio_reconnect -EXPORT_SYMBOL vmlinux 0xb24b64c3 ps2_handle_response -EXPORT_SYMBOL vmlinux 0xb255b5da xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0xb2638f5a pnp_find_card -EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0xb2723b1c pnp_get_resource -EXPORT_SYMBOL vmlinux 0xb289ddb1 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0xb2b5eb72 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xb2b7332f input_close_device -EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xb2bedcc7 mdio_bus_type -EXPORT_SYMBOL vmlinux 0xb2c1d9c0 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0xb2c8744b locks_free_lock -EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on -EXPORT_SYMBOL vmlinux 0xb2d5a552 complete -EXPORT_SYMBOL vmlinux 0xb2db5dec __neigh_create -EXPORT_SYMBOL vmlinux 0xb2f74fb6 intel_gmch_remove -EXPORT_SYMBOL vmlinux 0xb2f785e4 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 -EXPORT_SYMBOL vmlinux 0xb309df6f blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0xb313a902 netif_rx -EXPORT_SYMBOL vmlinux 0xb31ea816 tcp_md5_hash_header -EXPORT_SYMBOL vmlinux 0xb3284531 acpi_dbg_layer -EXPORT_SYMBOL vmlinux 0xb32d7b7e radix_tree_tagged -EXPORT_SYMBOL vmlinux 0xb34cb9d5 netif_receive_skb -EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit -EXPORT_SYMBOL vmlinux 0xb391ddf7 ata_std_end_eh -EXPORT_SYMBOL vmlinux 0xb39fc72e i8042_remove_filter -EXPORT_SYMBOL vmlinux 0xb3b49714 dquot_quotactl_ops -EXPORT_SYMBOL vmlinux 0xb3c58f9d buffer_migrate_page -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3e0590d acpi_set_current_resources -EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb4088ebe __skb_get_hash_flowi6 -EXPORT_SYMBOL vmlinux 0xb40eed31 nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0xb4154a9a from_kprojid -EXPORT_SYMBOL vmlinux 0xb4156ca8 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0xb41d7c1c console_start -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb4296eef blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0xb4390f9a mcount -EXPORT_SYMBOL vmlinux 0xb43bc88f to_nd_btt -EXPORT_SYMBOL vmlinux 0xb43d9a05 nf_getsockopt -EXPORT_SYMBOL vmlinux 0xb44842fa max8925_reg_read -EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem -EXPORT_SYMBOL vmlinux 0xb45578b8 memscan -EXPORT_SYMBOL vmlinux 0xb46ea697 simple_pin_fs -EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0xb4863883 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0xb4a42b75 page_waitqueue -EXPORT_SYMBOL vmlinux 0xb4f2dbc0 vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0xb5229392 cpu_sibling_map -EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range -EXPORT_SYMBOL vmlinux 0xb53123f2 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0xb53704a6 datagram_poll -EXPORT_SYMBOL vmlinux 0xb55b81bc rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0xb56ae713 devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xb56c2ba8 nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0xb5724f9e audit_log_task_info -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb576475e xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0xb578a39e get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0xb58f44e2 pci_enable_msi_range -EXPORT_SYMBOL vmlinux 0xb59b5844 file_remove_privs -EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5b16a4d down_read_trylock -EXPORT_SYMBOL vmlinux 0xb5c6e1eb user_path_create -EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free -EXPORT_SYMBOL vmlinux 0xb5dbd16a __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0xb601c191 setup_arg_pages -EXPORT_SYMBOL vmlinux 0xb61df369 swiotlb_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one -EXPORT_SYMBOL vmlinux 0xb62c192e get_empty_filp -EXPORT_SYMBOL vmlinux 0xb65535f6 wireless_spy_update -EXPORT_SYMBOL vmlinux 0xb65be698 sock_wmalloc -EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif -EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit -EXPORT_SYMBOL vmlinux 0xb6b094fe account_page_dirtied -EXPORT_SYMBOL vmlinux 0xb6cbe6ca km_policy_expired -EXPORT_SYMBOL vmlinux 0xb6cdce2d pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0xb6e41883 memcmp -EXPORT_SYMBOL vmlinux 0xb6ed1e53 strncpy -EXPORT_SYMBOL vmlinux 0xb6fad99a netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0xb71765be inet6_unregister_icmp_sender -EXPORT_SYMBOL vmlinux 0xb7195cf7 serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0xb7242b58 blk_free_tags -EXPORT_SYMBOL vmlinux 0xb726b069 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0xb74341b8 get_user_pages -EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xb75615af set_pages_x -EXPORT_SYMBOL vmlinux 0xb758b225 acpi_disable_event -EXPORT_SYMBOL vmlinux 0xb75b73b8 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0xb764fe29 tty_unlock -EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb77b7284 notify_change -EXPORT_SYMBOL vmlinux 0xb780af72 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xb782485a lwtunnel_fill_encap -EXPORT_SYMBOL vmlinux 0xb78b25f6 abx500_mask_and_set_register_interruptible -EXPORT_SYMBOL vmlinux 0xb79ec15d mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7db1e9a blk_alloc_queue -EXPORT_SYMBOL vmlinux 0xb7f55ecc atomic64_add_return_cx8 -EXPORT_SYMBOL vmlinux 0xb8095c31 pnp_register_card_driver -EXPORT_SYMBOL vmlinux 0xb8156ab3 udp_prot -EXPORT_SYMBOL vmlinux 0xb81960ca snprintf -EXPORT_SYMBOL vmlinux 0xb82c01f6 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0xb82cceb3 pci_set_dma_max_seg_size -EXPORT_SYMBOL vmlinux 0xb8370414 sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0xb83deeba mount_nodev -EXPORT_SYMBOL vmlinux 0xb844461e dev_addr_init -EXPORT_SYMBOL vmlinux 0xb8658841 uart_write_wakeup -EXPORT_SYMBOL vmlinux 0xb8735bbd iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 -EXPORT_SYMBOL vmlinux 0xb8854ac8 sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0xb88a621a ppp_unit_number -EXPORT_SYMBOL vmlinux 0xb89f330d netdev_emerg -EXPORT_SYMBOL vmlinux 0xb8a3a5ae mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0xb8b6a76c __percpu_counter_add -EXPORT_SYMBOL vmlinux 0xb8bc4e96 nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 -EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0xb8fdcd10 mempool_resize -EXPORT_SYMBOL vmlinux 0xb91972ce blk_mq_delay_queue -EXPORT_SYMBOL vmlinux 0xb92d8105 inet6_register_protosw -EXPORT_SYMBOL vmlinux 0xb94b2b1b blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0xb95476f9 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0xb981e065 generic_file_mmap -EXPORT_SYMBOL vmlinux 0xb9841861 security_inode_init_security -EXPORT_SYMBOL vmlinux 0xb9ae00b7 vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0xb9b3f956 inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0xb9b7d4ae path_put -EXPORT_SYMBOL vmlinux 0xb9c5e551 zero_fill_bio -EXPORT_SYMBOL vmlinux 0xb9ca060f proc_symlink -EXPORT_SYMBOL vmlinux 0xb9cfe8bc blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0xb9e2bef3 scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xb9ff5c77 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0xba0b8bd9 pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0xba100881 follow_up -EXPORT_SYMBOL vmlinux 0xba19be17 get_acl -EXPORT_SYMBOL vmlinux 0xba2a9023 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0xba2af0bd agp_collect_device_status -EXPORT_SYMBOL vmlinux 0xba2d8594 ec_read -EXPORT_SYMBOL vmlinux 0xba36c25b kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba746b05 capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0xba8b03aa tty_do_resize -EXPORT_SYMBOL vmlinux 0xba9537f7 input_register_handle -EXPORT_SYMBOL vmlinux 0xbab7aff3 param_set_bint -EXPORT_SYMBOL vmlinux 0xbabb5bf9 kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0xbabd35e6 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0xbac3cbf2 ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0xbac9404b dump_trace -EXPORT_SYMBOL vmlinux 0xbae4bd07 devm_kvasprintf -EXPORT_SYMBOL vmlinux 0xbaea3a14 genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0xbb01dc7f page_symlink -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb08ebd4 devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0xbb2c3fa2 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb52b4e0 __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xbb5af937 generic_block_bmap -EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xbb7fb076 scsi_ioctl_reset -EXPORT_SYMBOL vmlinux 0xbb826f4c from_kgid_munged -EXPORT_SYMBOL vmlinux 0xbb8b28b8 ata_link_printk -EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font -EXPORT_SYMBOL vmlinux 0xbba70a2d _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0xbbb02f43 pci_reenable_device -EXPORT_SYMBOL vmlinux 0xbbbfec4a __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0xbbd31b94 filp_close -EXPORT_SYMBOL vmlinux 0xbbeb1ec6 ioremap_wt -EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit -EXPORT_SYMBOL vmlinux 0xbc2863e0 agp_generic_free_gatt_table -EXPORT_SYMBOL vmlinux 0xbc2f4c42 dentry_open -EXPORT_SYMBOL vmlinux 0xbc435770 dump_stack -EXPORT_SYMBOL vmlinux 0xbc4d7a52 udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0xbc5772f2 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0xbc618141 single_release -EXPORT_SYMBOL vmlinux 0xbc75db96 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0xbc80e9ef bio_integrity_prep -EXPORT_SYMBOL vmlinux 0xbca34d49 vme_irq_handler -EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user -EXPORT_SYMBOL vmlinux 0xbd35c0ed get_phy_device -EXPORT_SYMBOL vmlinux 0xbd3ef520 i2c_del_adapter -EXPORT_SYMBOL vmlinux 0xbd4b18f7 read_dev_sector -EXPORT_SYMBOL vmlinux 0xbd51f699 __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0xbd81e852 pci_remove_bus -EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug -EXPORT_SYMBOL vmlinux 0xbdaf5b07 acpi_os_read_port -EXPORT_SYMBOL vmlinux 0xbdbf3592 mmc_detect_change -EXPORT_SYMBOL vmlinux 0xbdd5f990 hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0xbdd6cb37 kmap_atomic -EXPORT_SYMBOL vmlinux 0xbdd95d2e d_alloc -EXPORT_SYMBOL vmlinux 0xbdf6a5cc dmam_alloc_coherent -EXPORT_SYMBOL vmlinux 0xbdf8bd80 pci_find_bus -EXPORT_SYMBOL vmlinux 0xbe05a4ce security_path_rename -EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp -EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto -EXPORT_SYMBOL vmlinux 0xbe33e191 path_noexec -EXPORT_SYMBOL vmlinux 0xbe3d093f scsi_cmd_blk_ioctl -EXPORT_SYMBOL vmlinux 0xbe57f287 bdi_register -EXPORT_SYMBOL vmlinux 0xbe620704 set_binfmt -EXPORT_SYMBOL vmlinux 0xbe6aa7cf clear_inode -EXPORT_SYMBOL vmlinux 0xbe6f17d1 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0xbe8c37d9 intel_scu_ipc_simple_command -EXPORT_SYMBOL vmlinux 0xbebf53d5 simple_unlink -EXPORT_SYMBOL vmlinux 0xbec30d05 x86_match_cpu -EXPORT_SYMBOL vmlinux 0xbee17b85 neigh_for_each -EXPORT_SYMBOL vmlinux 0xbee43783 cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0xbee4d4b7 neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbf0abfe2 file_open_root -EXPORT_SYMBOL vmlinux 0xbf0ccee2 i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0xbf332cb4 mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0xbf3b8c26 i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0xbf5bf828 check_disk_size_change -EXPORT_SYMBOL vmlinux 0xbf63294a scsi_register_interface -EXPORT_SYMBOL vmlinux 0xbf760f7d i2c_del_driver -EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0xbf8b39e9 isapnp_present -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep -EXPORT_SYMBOL vmlinux 0xbfe1eeea unregister_filesystem -EXPORT_SYMBOL vmlinux 0xbfe6f427 _raw_spin_unlock_irq -EXPORT_SYMBOL vmlinux 0xbfeb2943 dm_kobject_release -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xc01eed33 __copy_from_user_ll_nozero -EXPORT_SYMBOL vmlinux 0xc02a6896 blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0xc059953a scsi_ioctl -EXPORT_SYMBOL vmlinux 0xc05e355f idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xc068440e __kfifo_alloc -EXPORT_SYMBOL vmlinux 0xc06ad80b generic_delete_inode -EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write -EXPORT_SYMBOL vmlinux 0xc08e905f jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0xc094ff76 swiotlb_dma_supported -EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit -EXPORT_SYMBOL vmlinux 0xc0cd3b13 ___ratelimit -EXPORT_SYMBOL vmlinux 0xc0d5dc91 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0xc11d7eac vfs_writef -EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten -EXPORT_SYMBOL vmlinux 0xc13025ee con_copy_unimap -EXPORT_SYMBOL vmlinux 0xc137f0df cdev_alloc -EXPORT_SYMBOL vmlinux 0xc13b2c8b dmam_declare_coherent_memory -EXPORT_SYMBOL vmlinux 0xc1429336 commit_creds -EXPORT_SYMBOL vmlinux 0xc169132c fasync_helper -EXPORT_SYMBOL vmlinux 0xc1b6acc7 blk_init_queue_node -EXPORT_SYMBOL vmlinux 0xc1b78abc get_thermal_instance -EXPORT_SYMBOL vmlinux 0xc1cf5512 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1e080d8 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla -EXPORT_SYMBOL vmlinux 0xc211d5a2 do_splice_to -EXPORT_SYMBOL vmlinux 0xc21cd5ba read_code -EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup -EXPORT_SYMBOL vmlinux 0xc2790ce0 jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0xc280a525 __copy_from_user_ll -EXPORT_SYMBOL vmlinux 0xc291cd55 __alloc_pages_nodemask -EXPORT_SYMBOL vmlinux 0xc2a26a64 mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xc2c6b0a6 deactivate_super -EXPORT_SYMBOL vmlinux 0xc2d711e1 krealloc -EXPORT_SYMBOL vmlinux 0xc2e4be39 pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2f7f813 sk_stop_timer -EXPORT_SYMBOL vmlinux 0xc33c93c7 devfreq_interval_update -EXPORT_SYMBOL vmlinux 0xc34600ea __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0xc353045c pci_enable_msix -EXPORT_SYMBOL vmlinux 0xc35b979d pci_pme_active -EXPORT_SYMBOL vmlinux 0xc367e3e8 generic_file_read_iter -EXPORT_SYMBOL vmlinux 0xc37dbbc7 pci_request_regions -EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 -EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0xc3c50ef1 scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0xc3d9a1d3 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0xc3ebaf47 pci_pme_capable -EXPORT_SYMBOL vmlinux 0xc3fa6a59 memchr -EXPORT_SYMBOL vmlinux 0xc400d4ac set_create_files_as -EXPORT_SYMBOL vmlinux 0xc40a099f i2c_get_adapter -EXPORT_SYMBOL vmlinux 0xc41f0516 node_states -EXPORT_SYMBOL vmlinux 0xc420787c napi_get_frags -EXPORT_SYMBOL vmlinux 0xc42455b2 prepare_binprm -EXPORT_SYMBOL vmlinux 0xc435ed50 proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0xc47446e2 generic_setxattr -EXPORT_SYMBOL vmlinux 0xc479aae0 __tcf_hash_release -EXPORT_SYMBOL vmlinux 0xc47da15d ip_route_me_harder -EXPORT_SYMBOL vmlinux 0xc47f7cc1 __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0xc47f8e5c netdev_notify_peers -EXPORT_SYMBOL vmlinux 0xc486cdd2 __dst_free -EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup -EXPORT_SYMBOL vmlinux 0xc49c18a2 qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0xc4a88701 noop_llseek -EXPORT_SYMBOL vmlinux 0xc4aaac2b __sb_end_write -EXPORT_SYMBOL vmlinux 0xc4df5cc1 _dev_info -EXPORT_SYMBOL vmlinux 0xc4e1b11e seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0xc5012264 blk_queue_dma_pad -EXPORT_SYMBOL vmlinux 0xc5137552 x86_bios_cpu_apicid -EXPORT_SYMBOL vmlinux 0xc51c389f mutex_unlock -EXPORT_SYMBOL vmlinux 0xc51d6647 set_nlink -EXPORT_SYMBOL vmlinux 0xc5462085 proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 -EXPORT_SYMBOL vmlinux 0xc560907b sk_free -EXPORT_SYMBOL vmlinux 0xc56e7b66 ip_getsockopt -EXPORT_SYMBOL vmlinux 0xc586d0f9 scsi_register -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc5a0e012 netlink_kernel_release -EXPORT_SYMBOL vmlinux 0xc5b72490 pci_unregister_driver -EXPORT_SYMBOL vmlinux 0xc5c70543 genphy_resume -EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot -EXPORT_SYMBOL vmlinux 0xc5db99e2 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xc605f8f9 __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0xc60ca6a9 default_file_splice_read -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc650834b tty_port_put -EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes -EXPORT_SYMBOL vmlinux 0xc66a5ed7 mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0xc66acf3f mmc_gpio_request_cd -EXPORT_SYMBOL vmlinux 0xc66d5d49 netpoll_print_options -EXPORT_SYMBOL vmlinux 0xc67a09fe intel_gtt_get -EXPORT_SYMBOL vmlinux 0xc6849840 pnp_find_dev -EXPORT_SYMBOL vmlinux 0xc6b23120 intel_scu_ipc_iowrite16 -EXPORT_SYMBOL vmlinux 0xc6b368d3 acpi_gpe_count -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6e65e49 tcp_connect -EXPORT_SYMBOL vmlinux 0xc7201edb neigh_destroy -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc73e2edb tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass -EXPORT_SYMBOL vmlinux 0xc768de19 cpu_all_bits -EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc78f68d1 eth_gro_complete -EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7ccf2a5 get_task_io_context -EXPORT_SYMBOL vmlinux 0xc7db0520 twl6040_set_bits -EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn -EXPORT_SYMBOL vmlinux 0xc7fc79c9 dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0xc7fcc5bf acpi_resource_to_address64 -EXPORT_SYMBOL vmlinux 0xc803b1d8 skb_append_datato_frags -EXPORT_SYMBOL vmlinux 0xc80588f6 iput -EXPORT_SYMBOL vmlinux 0xc81c3fa4 ns_capable -EXPORT_SYMBOL vmlinux 0xc8276a79 nf_hooks_needed -EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape -EXPORT_SYMBOL vmlinux 0xc83756f6 find_get_entry -EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0xc83b5879 xattr_full_name -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc86d6799 ___preempt_schedule -EXPORT_SYMBOL vmlinux 0xc871129b softnet_data -EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc873a793 inet_offloads -EXPORT_SYMBOL vmlinux 0xc886102e inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xc8bc041d blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0xc8ca3710 alloc_buffer_head -EXPORT_SYMBOL vmlinux 0xc8cf648f vga_switcheroo_client_fb_set -EXPORT_SYMBOL vmlinux 0xc8e8033f __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0xc8f3fe66 tcp_conn_request -EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen -EXPORT_SYMBOL vmlinux 0xc91ef5a1 pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0xc9245d97 vfs_read -EXPORT_SYMBOL vmlinux 0xc92af029 set_pages_wb -EXPORT_SYMBOL vmlinux 0xc92baafa netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0xc9416284 __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0xc947b840 pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0xc95f9ea1 __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc96866e3 agp_alloc_bridge -EXPORT_SYMBOL vmlinux 0xc9786096 pci_set_mwi -EXPORT_SYMBOL vmlinux 0xc98c945e udp_proc_unregister -EXPORT_SYMBOL vmlinux 0xc99aa29c blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc99f6aae dma_spin_lock -EXPORT_SYMBOL vmlinux 0xc9a2741b ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0xc9a2c07b tcp_seq_open -EXPORT_SYMBOL vmlinux 0xc9af14d9 generic_write_end -EXPORT_SYMBOL vmlinux 0xc9c8fa79 tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0xc9f717e2 tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0xc9fc34cd qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0xc9fef317 add_wait_queue -EXPORT_SYMBOL vmlinux 0xca0cb934 address_space_init_once -EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy -EXPORT_SYMBOL vmlinux 0xca24b725 __elv_add_request -EXPORT_SYMBOL vmlinux 0xca26def3 phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0xca394fd5 simple_setattr -EXPORT_SYMBOL vmlinux 0xca41eaa3 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0xca4359b3 napi_consume_skb -EXPORT_SYMBOL vmlinux 0xca6656b6 skb_tx_error -EXPORT_SYMBOL vmlinux 0xca70a3e5 md_finish_reshape -EXPORT_SYMBOL vmlinux 0xca731e40 dm_io -EXPORT_SYMBOL vmlinux 0xca752845 vme_irq_free -EXPORT_SYMBOL vmlinux 0xca82bd13 kmem_cache_free -EXPORT_SYMBOL vmlinux 0xca8820b6 blk_peek_request -EXPORT_SYMBOL vmlinux 0xca8acc78 acpi_dbg_level -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xcaa5f3a2 qdisc_watchdog_schedule_ns -EXPORT_SYMBOL vmlinux 0xcaafc3e0 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0xcabb666d md_check_recovery -EXPORT_SYMBOL vmlinux 0xcad78973 poll_initwait -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcaf50b32 skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0xcb01efec kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb0f4e88 dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0xcb124428 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0xcb1a1c25 sync_inodes_sb -EXPORT_SYMBOL vmlinux 0xcb65dd7c vme_register_error_handler -EXPORT_SYMBOL vmlinux 0xcb718ac7 nd_iostat_end -EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power -EXPORT_SYMBOL vmlinux 0xcb81921f sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0xcb99adf3 iterate_fd -EXPORT_SYMBOL vmlinux 0xcba39b64 fb_set_var -EXPORT_SYMBOL vmlinux 0xcbaad12c page_cache_prev_hole -EXPORT_SYMBOL vmlinux 0xcbae6c7a acpi_lid_notifier_unregister -EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0xcbeac4be hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0xcc080d46 pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0xcc1e6006 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc4d1bfb atomic64_read_cx8 -EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc741786 security_inode_permission -EXPORT_SYMBOL vmlinux 0xcc807083 vfs_readf -EXPORT_SYMBOL vmlinux 0xcc82add3 _raw_read_lock_irqsave -EXPORT_SYMBOL vmlinux 0xcc838223 __pte2cachemode_tbl -EXPORT_SYMBOL vmlinux 0xcc85e68b md_write_end -EXPORT_SYMBOL vmlinux 0xcc8d3f4f acpi_os_execute -EXPORT_SYMBOL vmlinux 0xcc8dc32c netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0xcc9bbe27 swiotlb_unmap_sg -EXPORT_SYMBOL vmlinux 0xcca02b4b nvm_generic_to_addr_mode -EXPORT_SYMBOL vmlinux 0xccacf8ee xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor -EXPORT_SYMBOL vmlinux 0xcce55c62 tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0xcce81e7c task_tgid_nr_ns -EXPORT_SYMBOL vmlinux 0xccfa764a mdiobus_read -EXPORT_SYMBOL vmlinux 0xccfef64f skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0xcd0b684b lwtunnel_get_encap_size -EXPORT_SYMBOL vmlinux 0xcd0bbdb6 md_flush_request -EXPORT_SYMBOL vmlinux 0xcd0c8474 qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0xcd103752 uart_match_port -EXPORT_SYMBOL vmlinux 0xcd13dc7c ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd2e49da napi_disable -EXPORT_SYMBOL vmlinux 0xcd46d090 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0xcd5c87c1 __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0xcd5cdd10 iterate_supers_type -EXPORT_SYMBOL vmlinux 0xcd62e080 lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0xcd8b3610 pskb_expand_head -EXPORT_SYMBOL vmlinux 0xcd9211bf pci_write_vpd -EXPORT_SYMBOL vmlinux 0xcdaa0f5b cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0xcdb142cd dcb_getapp -EXPORT_SYMBOL vmlinux 0xcdb4d00f call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdcd31a7 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0xcdd5e7ea scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0xcde5301d xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0xce02292e jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0xce022d20 __seq_open_private -EXPORT_SYMBOL vmlinux 0xce037bc8 get_fs_type -EXPORT_SYMBOL vmlinux 0xce247caf __register_nls -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce2c45cc wait_for_completion_io -EXPORT_SYMBOL vmlinux 0xce4904a4 acpi_leave_sleep_state -EXPORT_SYMBOL vmlinux 0xce4dedb9 netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce5d10d7 __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0xce6cd6f5 generic_error_remove_page -EXPORT_SYMBOL vmlinux 0xce6fc217 md_register_thread -EXPORT_SYMBOL vmlinux 0xce8f60b2 mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0xce9dc96f block_page_mkwrite -EXPORT_SYMBOL vmlinux 0xce9e41e9 lockref_get -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xcec33930 posix_acl_valid -EXPORT_SYMBOL vmlinux 0xcec770b5 xfrm_garbage_collect -EXPORT_SYMBOL vmlinux 0xcedc63b1 gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0xcedfc84d lockref_mark_dead -EXPORT_SYMBOL vmlinux 0xcee9a8ae __blk_end_request_cur -EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 -EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcf08f5a6 free_xenballooned_pages -EXPORT_SYMBOL vmlinux 0xcf181f43 copy_to_iter -EXPORT_SYMBOL vmlinux 0xcf234190 pnp_unregister_card_driver -EXPORT_SYMBOL vmlinux 0xcf243c35 __vfs_read -EXPORT_SYMBOL vmlinux 0xcf2b193b set_cached_acl -EXPORT_SYMBOL vmlinux 0xcf6cfe1f msrs_free -EXPORT_SYMBOL vmlinux 0xcf78231d __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0xcf8b8a09 sock_edemux -EXPORT_SYMBOL vmlinux 0xcfcbd74d skb_pad -EXPORT_SYMBOL vmlinux 0xcfcd2cbb devm_ioport_map -EXPORT_SYMBOL vmlinux 0xcfe05d4d register_kmmio_probe -EXPORT_SYMBOL vmlinux 0xcfeb8db4 netlink_net_capable -EXPORT_SYMBOL vmlinux 0xcffc65fb make_kprojid -EXPORT_SYMBOL vmlinux 0xd008ed65 jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0xd05145ec dquot_alloc -EXPORT_SYMBOL vmlinux 0xd0568203 ata_print_version -EXPORT_SYMBOL vmlinux 0xd0574e42 d_obtain_root -EXPORT_SYMBOL vmlinux 0xd05c4294 pm860x_reg_write -EXPORT_SYMBOL vmlinux 0xd05fed75 security_file_permission -EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond -EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc -EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init -EXPORT_SYMBOL vmlinux 0xd0a90e79 kset_register -EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces -EXPORT_SYMBOL vmlinux 0xd0d8621b strlen -EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0xd0f0739c jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format -EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first -EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key -EXPORT_SYMBOL vmlinux 0xd157cc0d padata_remove_cpu -EXPORT_SYMBOL vmlinux 0xd15c33fe phy_print_status -EXPORT_SYMBOL vmlinux 0xd1652a93 acpi_info -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd185b8c6 filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0xd1878704 sock_wfree -EXPORT_SYMBOL vmlinux 0xd196c9be kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xd1c84dfb hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings -EXPORT_SYMBOL vmlinux 0xd204b1e5 get_cached_acl -EXPORT_SYMBOL vmlinux 0xd2064e2f idr_replace -EXPORT_SYMBOL vmlinux 0xd20b0d30 inet_confirm_addr -EXPORT_SYMBOL vmlinux 0xd20f3020 _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xd222c0c7 __generic_file_fsync -EXPORT_SYMBOL vmlinux 0xd22de0d8 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xd25d4b22 blk_stop_queue -EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd25debb8 copy_strings_kernel -EXPORT_SYMBOL vmlinux 0xd2780495 arp_send -EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd294284d bdget -EXPORT_SYMBOL vmlinux 0xd2af138b reservation_ww_class -EXPORT_SYMBOL vmlinux 0xd2cb6ecd cad_pid -EXPORT_SYMBOL vmlinux 0xd2d36ed6 x86_dma_fallback_dev -EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2e1e29d get_super -EXPORT_SYMBOL vmlinux 0xd2e6a582 acpi_processor_preregister_performance -EXPORT_SYMBOL vmlinux 0xd2e95b31 init_net -EXPORT_SYMBOL vmlinux 0xd2ea97ce __put_cred -EXPORT_SYMBOL vmlinux 0xd2f034b1 udp6_csum_init -EXPORT_SYMBOL vmlinux 0xd30f28dd ppp_register_channel -EXPORT_SYMBOL vmlinux 0xd314d0da __xfrm_init_state -EXPORT_SYMBOL vmlinux 0xd33afcff phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0xd33dbb06 pagevec_lookup_tag -EXPORT_SYMBOL vmlinux 0xd33f9147 ab3100_event_unregister -EXPORT_SYMBOL vmlinux 0xd36524eb proc_create_mount_point -EXPORT_SYMBOL vmlinux 0xd36bd82e blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0xd36c4ce1 dm_get_device -EXPORT_SYMBOL vmlinux 0xd37776d0 zpool_register_driver -EXPORT_SYMBOL vmlinux 0xd38fbf6a should_remove_suid -EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xd3bd4572 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0xd3c5c0f1 ip_do_fragment -EXPORT_SYMBOL vmlinux 0xd3e70c5d is_bad_inode -EXPORT_SYMBOL vmlinux 0xd3f11277 dquot_free_inode -EXPORT_SYMBOL vmlinux 0xd407296f xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xd411c268 netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0xd44da3be page_put_link -EXPORT_SYMBOL vmlinux 0xd45df7b1 __brelse -EXPORT_SYMBOL vmlinux 0xd462f2f3 mutex_lock -EXPORT_SYMBOL vmlinux 0xd46421b6 send_sig -EXPORT_SYMBOL vmlinux 0xd4802e5a mmc_add_host -EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system -EXPORT_SYMBOL vmlinux 0xd485a7bf jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0xd49ceada pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0xd4a3297b lwtunnel_state_alloc -EXPORT_SYMBOL vmlinux 0xd4abec6e kern_path_mountpoint -EXPORT_SYMBOL vmlinux 0xd4c8d128 pci_platform_rom -EXPORT_SYMBOL vmlinux 0xd4c951e6 eth_type_trans -EXPORT_SYMBOL vmlinux 0xd4d37ec8 unlock_page -EXPORT_SYMBOL vmlinux 0xd4d53a73 blk_queue_init_tags -EXPORT_SYMBOL vmlinux 0xd4efb892 blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0xd50821df serio_interrupt -EXPORT_SYMBOL vmlinux 0xd50fef48 acpi_detach_data -EXPORT_SYMBOL vmlinux 0xd5136cdd eth_validate_addr -EXPORT_SYMBOL vmlinux 0xd51f395a pci_unmap_rom -EXPORT_SYMBOL vmlinux 0xd52bf01c scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0xd531e22c update_devfreq -EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0xd55c0a66 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0xd56a5ed7 nvm_register -EXPORT_SYMBOL vmlinux 0xd56f358a skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0xd577af6e set_wb_congested -EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames -EXPORT_SYMBOL vmlinux 0xd5ab76a7 xfrm_state_insert -EXPORT_SYMBOL vmlinux 0xd5cf600b skb_make_writable -EXPORT_SYMBOL vmlinux 0xd5d31ce4 tc_classify -EXPORT_SYMBOL vmlinux 0xd5e3764f kfree_skb_list -EXPORT_SYMBOL vmlinux 0xd5eb96af abx500_remove_ops -EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0xd60aebd2 __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0xd61b6006 scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout -EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode -EXPORT_SYMBOL vmlinux 0xd662c592 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd6889da4 bio_alloc_pages -EXPORT_SYMBOL vmlinux 0xd68e1d1b _raw_read_trylock -EXPORT_SYMBOL vmlinux 0xd69173bc __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0xd69f09ae tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0xd6aee594 simple_dname -EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace -EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz -EXPORT_SYMBOL vmlinux 0xd6d601e9 generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0xd6ea297b loop_backing_file -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd710c17b tty_mutex -EXPORT_SYMBOL vmlinux 0xd712239c __ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0xd730959d seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xd74414bf blk_make_request -EXPORT_SYMBOL vmlinux 0xd757b1d2 dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function -EXPORT_SYMBOL vmlinux 0xd7946c38 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write -EXPORT_SYMBOL vmlinux 0xd7bdacc4 __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0xd7c98a0c rfkill_alloc -EXPORT_SYMBOL vmlinux 0xd7cd5f76 __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi -EXPORT_SYMBOL vmlinux 0xd7e46515 blk_integrity_merge_rq -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7fac5c6 end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0xd7fd7c41 blk_queue_softirq_done -EXPORT_SYMBOL vmlinux 0xd80e3a27 tcf_destroy_chain -EXPORT_SYMBOL vmlinux 0xd811b2c7 ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0xd845cf95 nla_put -EXPORT_SYMBOL vmlinux 0xd85833cb __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0xd864f6b0 dquot_commit_info -EXPORT_SYMBOL vmlinux 0xd8699b1e agp_alloc_page_array -EXPORT_SYMBOL vmlinux 0xd88d576e kmap_to_page -EXPORT_SYMBOL vmlinux 0xd89a7cad __f_setown -EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd8a897b5 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8ade6a2 __devm_request_region -EXPORT_SYMBOL vmlinux 0xd8dad3ec reservation_object_reserve_shared -EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xd8e424fa tcp_enter_memory_pressure -EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region -EXPORT_SYMBOL vmlinux 0xd8eb4d05 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0xd8f4fd33 neigh_seq_start -EXPORT_SYMBOL vmlinux 0xd8fb9b63 mb_cache_shrink -EXPORT_SYMBOL vmlinux 0xd9091363 acpi_install_notify_handler -EXPORT_SYMBOL vmlinux 0xd92e2dca tcp_hashinfo -EXPORT_SYMBOL vmlinux 0xd936d3f6 dump_page -EXPORT_SYMBOL vmlinux 0xd94322e7 acpi_evaluate_reference -EXPORT_SYMBOL vmlinux 0xd94c76c1 km_state_expired -EXPORT_SYMBOL vmlinux 0xd9596409 param_get_invbool -EXPORT_SYMBOL vmlinux 0xd966ddc2 __do_once_done -EXPORT_SYMBOL vmlinux 0xd969b2c7 amd_e400_c1e_detected -EXPORT_SYMBOL vmlinux 0xd96d1d3a inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu -EXPORT_SYMBOL vmlinux 0xd97e3d77 iget_failed -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd990a402 devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xd996f6f7 generic_pipe_buf_steal -EXPORT_SYMBOL vmlinux 0xd9a6e9c6 add_random_ready_callback -EXPORT_SYMBOL vmlinux 0xd9a783e4 filemap_flush -EXPORT_SYMBOL vmlinux 0xd9a8361c serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0xd9cd1530 mount_subtree -EXPORT_SYMBOL vmlinux 0xd9d3bcd3 _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler -EXPORT_SYMBOL vmlinux 0xd9dccf46 bioset_create -EXPORT_SYMBOL vmlinux 0xda08c0d7 pcibios_get_irq_routing_table -EXPORT_SYMBOL vmlinux 0xda1b2af4 napi_complete_done -EXPORT_SYMBOL vmlinux 0xda1cc86b ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda3d9682 max8998_update_reg -EXPORT_SYMBOL vmlinux 0xda5398ed __serio_register_port -EXPORT_SYMBOL vmlinux 0xda624ccc audit_log -EXPORT_SYMBOL vmlinux 0xda7242b1 elv_add_request -EXPORT_SYMBOL vmlinux 0xda761e2a set_pages_uc -EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0xda8fd495 isapnp_write_byte -EXPORT_SYMBOL vmlinux 0xdaa57ec3 totalhigh_pages -EXPORT_SYMBOL vmlinux 0xdab65ff3 cros_ec_cmd_xfer_status -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdade174a downgrade_write -EXPORT_SYMBOL vmlinux 0xdae011e1 crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0xdae80100 _raw_spin_unlock -EXPORT_SYMBOL vmlinux 0xdaeaea36 acpi_bus_get_status -EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg -EXPORT_SYMBOL vmlinux 0xdb281d9a devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0xdb2e1eb4 xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xdb2f6c70 rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0xdb474a7b blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb6ac432 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0xdb72b55a block_read_full_page -EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb7f021f param_ops_charp -EXPORT_SYMBOL vmlinux 0xdb89d9b7 param_set_copystring -EXPORT_SYMBOL vmlinux 0xdb9fdd44 finish_open -EXPORT_SYMBOL vmlinux 0xdbac3f5e bio_add_page -EXPORT_SYMBOL vmlinux 0xdbbb35a0 blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0xdbcc2056 dcb_setapp -EXPORT_SYMBOL vmlinux 0xdbd37b96 phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0xdbe69b59 nvm_dev_dma_alloc -EXPORT_SYMBOL vmlinux 0xdc038ad1 tcp_req_err -EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc2cbacd find_get_pages_tag -EXPORT_SYMBOL vmlinux 0xdc314369 vga_get -EXPORT_SYMBOL vmlinux 0xdc3bf66f tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 -EXPORT_SYMBOL vmlinux 0xdc43f908 __invalidate_device -EXPORT_SYMBOL vmlinux 0xdc48a93b register_sysctl_table -EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc57f532 acpi_install_gpe_handler -EXPORT_SYMBOL vmlinux 0xdc7cc5a0 __kfree_skb -EXPORT_SYMBOL vmlinux 0xdc813cbf pci_select_bars -EXPORT_SYMBOL vmlinux 0xdc82f72e scsi_register_driver -EXPORT_SYMBOL vmlinux 0xdc87af45 skb_checksum -EXPORT_SYMBOL vmlinux 0xdca4c08d mmc_wait_for_app_cmd -EXPORT_SYMBOL vmlinux 0xdca8c6a7 tty_free_termios -EXPORT_SYMBOL vmlinux 0xdcb8e796 mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0xdcdd9b38 dev_uc_del -EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat -EXPORT_SYMBOL vmlinux 0xdd3748cc new_inode -EXPORT_SYMBOL vmlinux 0xdd51b088 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0xdd5bac7d down_read -EXPORT_SYMBOL vmlinux 0xdd6e3472 ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0xdda42d43 fb_find_mode -EXPORT_SYMBOL vmlinux 0xddb37d02 proc_dointvec -EXPORT_SYMBOL vmlinux 0xddbebc90 jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0xddbf07bf vfs_iter_read -EXPORT_SYMBOL vmlinux 0xddc56185 xfrm_unregister_mode -EXPORT_SYMBOL vmlinux 0xddec1068 pci_dev_get -EXPORT_SYMBOL vmlinux 0xddef849d bio_advance -EXPORT_SYMBOL vmlinux 0xde16dc16 tboot -EXPORT_SYMBOL vmlinux 0xde18fe27 kernel_getsockopt -EXPORT_SYMBOL vmlinux 0xde1d1672 __get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xde34a452 sock_rfree -EXPORT_SYMBOL vmlinux 0xde3da700 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0xde51cbc4 unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0xde572db9 blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages -EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size -EXPORT_SYMBOL vmlinux 0xdea2eb04 param_ops_bool -EXPORT_SYMBOL vmlinux 0xdeb7106f sock_recvmsg -EXPORT_SYMBOL vmlinux 0xdec2deb6 pcim_iomap_table -EXPORT_SYMBOL vmlinux 0xded0440c netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0xded0d2c7 inet_stream_connect -EXPORT_SYMBOL vmlinux 0xded931f3 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0xdedb6611 try_wait_for_completion -EXPORT_SYMBOL vmlinux 0xdee458a7 bio_phys_segments -EXPORT_SYMBOL vmlinux 0xdeeefea3 blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0xdef7fdc0 pci_match_id -EXPORT_SYMBOL vmlinux 0xdf03e9f6 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0xdf0562c9 devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xdf0da3cc acpi_get_devices -EXPORT_SYMBOL vmlinux 0xdf12a927 acpi_check_dsm -EXPORT_SYMBOL vmlinux 0xdf1427e5 idr_remove -EXPORT_SYMBOL vmlinux 0xdf217148 sock_from_file -EXPORT_SYMBOL vmlinux 0xdf2468c2 skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf34a85f blk_mq_all_tag_busy_iter -EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update -EXPORT_SYMBOL vmlinux 0xdf4026c5 inode_set_bytes -EXPORT_SYMBOL vmlinux 0xdf4fc797 __register_nmi_handler -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf5ca5b1 pci_bus_type -EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol -EXPORT_SYMBOL vmlinux 0xdf79dcc3 pnp_disable_dev -EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay -EXPORT_SYMBOL vmlinux 0xdf9266c1 insert_inode_locked -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdf952b46 bdget_disk -EXPORT_SYMBOL vmlinux 0xdf960052 send_sig_info -EXPORT_SYMBOL vmlinux 0xdf999ba0 generic_file_write_iter -EXPORT_SYMBOL vmlinux 0xdf9a3615 load_nls_default -EXPORT_SYMBOL vmlinux 0xdfae4798 elv_dispatch_sort -EXPORT_SYMBOL vmlinux 0xdfb8228b generic_make_request -EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init -EXPORT_SYMBOL vmlinux 0xdfcc7751 simple_rmdir -EXPORT_SYMBOL vmlinux 0xdfd3a075 wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xe001535d simple_dir_operations -EXPORT_SYMBOL vmlinux 0xe005af03 truncate_setsize -EXPORT_SYMBOL vmlinux 0xe02519ee skb_vlan_untag -EXPORT_SYMBOL vmlinux 0xe026ba80 dquot_disable -EXPORT_SYMBOL vmlinux 0xe03512a1 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0xe03edefc account_page_redirty -EXPORT_SYMBOL vmlinux 0xe03fd45a xfrm6_prepare_output -EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone -EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool -EXPORT_SYMBOL vmlinux 0xe09c8c39 tcf_hash_search -EXPORT_SYMBOL vmlinux 0xe0a16a20 intel_scu_ipc_i2c_cntrl -EXPORT_SYMBOL vmlinux 0xe0ac3593 inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0xe0ac8bd2 acpi_bus_generate_netlink_event -EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0e89a16 __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0xe10cc175 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0xe1177ca2 xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0xe1348cde zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors -EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xe18b5a22 __module_put_and_exit -EXPORT_SYMBOL vmlinux 0xe1c9c23b twl6040_power -EXPORT_SYMBOL vmlinux 0xe1f7e91b bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0xe1f940a5 input_get_keycode -EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xe20391cb proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0xe22c5ead mpage_writepages -EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe247d70f vme_dma_list_free -EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 -EXPORT_SYMBOL vmlinux 0xe259ae9e _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xe25a1156 cros_ec_query_all -EXPORT_SYMBOL vmlinux 0xe278c247 alloc_disk -EXPORT_SYMBOL vmlinux 0xe27a34c4 generic_file_llseek -EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t -EXPORT_SYMBOL vmlinux 0xe2b8d87a d_obtain_alias -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2e4392e simple_link -EXPORT_SYMBOL vmlinux 0xe2e5cec2 netdev_alert -EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user -EXPORT_SYMBOL vmlinux 0xe2f2a23f mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0xe2f2ba34 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup -EXPORT_SYMBOL vmlinux 0xe303f9ec param_set_byte -EXPORT_SYMBOL vmlinux 0xe3197208 proc_dostring -EXPORT_SYMBOL vmlinux 0xe319eb24 acpi_pci_osc_control_set -EXPORT_SYMBOL vmlinux 0xe32382f7 vfs_mkdir -EXPORT_SYMBOL vmlinux 0xe3399a75 native_queued_spin_lock_slowpath -EXPORT_SYMBOL vmlinux 0xe35ba4c1 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xe35cc8f7 do_SAK -EXPORT_SYMBOL vmlinux 0xe366f636 xfrm_input_resume -EXPORT_SYMBOL vmlinux 0xe36dfbe3 dquot_file_open -EXPORT_SYMBOL vmlinux 0xe373dfb9 d_path -EXPORT_SYMBOL vmlinux 0xe388194c fsnotify_init_mark -EXPORT_SYMBOL vmlinux 0xe39742b8 napi_gro_receive -EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0xe3bccf9a jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0xe3c6b724 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xe3e25afd pagevec_lookup -EXPORT_SYMBOL vmlinux 0xe3e3be1e arch_debugfs_dir -EXPORT_SYMBOL vmlinux 0xe42b98ad vga_switcheroo_init_domain_pm_optimus_hdmi_audio -EXPORT_SYMBOL vmlinux 0xe43879d2 __break_lease -EXPORT_SYMBOL vmlinux 0xe445db4a acpi_check_address_range -EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 -EXPORT_SYMBOL vmlinux 0xe4c17741 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array -EXPORT_SYMBOL vmlinux 0xe50f8287 xfrm_init_state -EXPORT_SYMBOL vmlinux 0xe50f904f intel_scu_ipc_ioread16 -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe530d757 acpi_clear_gpe -EXPORT_SYMBOL vmlinux 0xe54d8fb6 con_set_default_unimap -EXPORT_SYMBOL vmlinux 0xe56cf129 kset_unregister -EXPORT_SYMBOL vmlinux 0xe56d044e proto_unregister -EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton -EXPORT_SYMBOL vmlinux 0xe5815f8a _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set -EXPORT_SYMBOL vmlinux 0xe590c5eb vm_map_ram -EXPORT_SYMBOL vmlinux 0xe594f6c4 __netif_schedule -EXPORT_SYMBOL vmlinux 0xe596c838 sock_efree -EXPORT_SYMBOL vmlinux 0xe59e5be7 backlight_device_register -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5c979f0 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xe5fddc4f devm_gpiod_get_array_optional -EXPORT_SYMBOL vmlinux 0xe6162877 down_killable -EXPORT_SYMBOL vmlinux 0xe61b03a6 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0xe6250664 vfs_link -EXPORT_SYMBOL vmlinux 0xe64d98fe rdmsr_safe_regs -EXPORT_SYMBOL vmlinux 0xe6597702 migrate_page_copy -EXPORT_SYMBOL vmlinux 0xe664e68e mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size -EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe6a4851e dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0xe6b793c0 wait_on_page_bit -EXPORT_SYMBOL vmlinux 0xe6d575e4 __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0xe6d5c69c cleancache_register_ops -EXPORT_SYMBOL vmlinux 0xe6d64eda pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0xe6d791fc cdrom_check_events -EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update -EXPORT_SYMBOL vmlinux 0xe6f37055 pci_choose_state -EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock -EXPORT_SYMBOL vmlinux 0xe70ae3f5 tty_port_close -EXPORT_SYMBOL vmlinux 0xe716baed acpi_unregister_ioapic -EXPORT_SYMBOL vmlinux 0xe75a6f12 ip6_xmit -EXPORT_SYMBOL vmlinux 0xe75ea898 mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0xe781b5f6 intel_scu_ipc_readv -EXPORT_SYMBOL vmlinux 0xe78749e2 f_setown -EXPORT_SYMBOL vmlinux 0xe7a4bbfd cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx -EXPORT_SYMBOL vmlinux 0xe7ad9b4a da903x_query_status -EXPORT_SYMBOL vmlinux 0xe7ae652e __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xe7b6315e kblockd_schedule_delayed_work_on -EXPORT_SYMBOL vmlinux 0xe7be4050 i2c_verify_client -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe80c306f nobh_write_begin -EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0xe846bee6 genphy_config_init -EXPORT_SYMBOL vmlinux 0xe855c94c scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0xe8628be4 __blk_end_request_all -EXPORT_SYMBOL vmlinux 0xe87025f0 acpi_evaluate_object_typed -EXPORT_SYMBOL vmlinux 0xe8707456 tcp_rcv_established -EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss -EXPORT_SYMBOL vmlinux 0xe87b2edd sg_copy_buffer -EXPORT_SYMBOL vmlinux 0xe891b53a simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0xe8945fd3 netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0xe8a182ba pci_request_region_exclusive -EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0xe8b04cbd vc_cons -EXPORT_SYMBOL vmlinux 0xe8b58254 unregister_qdisc -EXPORT_SYMBOL vmlinux 0xe8b68849 wrmsr_on_cpus -EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xe8d61ce7 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0xe8db8dd2 _raw_write_lock -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe93f6042 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr -EXPORT_SYMBOL vmlinux 0xe9682f97 sock_no_poll -EXPORT_SYMBOL vmlinux 0xe96ddec5 blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0xe997667b wrmsr_on_cpu -EXPORT_SYMBOL vmlinux 0xe9acfac4 tcf_hash_new_index -EXPORT_SYMBOL vmlinux 0xe9b812cd reservation_object_add_excl_fence -EXPORT_SYMBOL vmlinux 0xe9c06b98 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0xe9c1d71a abx500_register_ops -EXPORT_SYMBOL vmlinux 0xe9d1ce9c register_framebuffer -EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xe9f75dd6 dev_remove_pack -EXPORT_SYMBOL vmlinux 0xea02330f generic_readlink -EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len -EXPORT_SYMBOL vmlinux 0xea0bc4aa default_llseek -EXPORT_SYMBOL vmlinux 0xea19b6ff ip6_frag_init -EXPORT_SYMBOL vmlinux 0xea2b52ec __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xea3f725d _raw_write_lock_irqsave -EXPORT_SYMBOL vmlinux 0xea41454e mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0xea6a9820 bio_integrity_trim -EXPORT_SYMBOL vmlinux 0xea7987f1 key_update -EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table -EXPORT_SYMBOL vmlinux 0xea7b8a44 acpi_install_interface -EXPORT_SYMBOL vmlinux 0xea90bdd3 acpi_attach_data -EXPORT_SYMBOL vmlinux 0xeabe6dfa param_get_ullong -EXPORT_SYMBOL vmlinux 0xeacaa440 swiotlb_free_coherent -EXPORT_SYMBOL vmlinux 0xeae2cbfe ipv6_push_nfrag_opts -EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay -EXPORT_SYMBOL vmlinux 0xeb0bf70d add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb3c77bb dma_async_device_register -EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xeb62c757 do_splice_from -EXPORT_SYMBOL vmlinux 0xeb69b324 skb_vlan_pop -EXPORT_SYMBOL vmlinux 0xeb7c47b0 udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0xeb86c322 inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0xeb8bebe9 call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0xeb8c6144 neigh_connected_output -EXPORT_SYMBOL vmlinux 0xeb9333fc xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0xebe703e9 dmam_free_coherent -EXPORT_SYMBOL vmlinux 0xebff5cf5 fence_signal_locked -EXPORT_SYMBOL vmlinux 0xec02927f abx500_get_register_interruptible -EXPORT_SYMBOL vmlinux 0xec04ec8f pagecache_get_page -EXPORT_SYMBOL vmlinux 0xec0b6e12 fb_validate_mode -EXPORT_SYMBOL vmlinux 0xec1aa6ef memzero_explicit -EXPORT_SYMBOL vmlinux 0xec1acc3e fb_class -EXPORT_SYMBOL vmlinux 0xec26d17e write_one_page -EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec655c8e proc_set_user -EXPORT_SYMBOL vmlinux 0xec7f34d0 clear_wb_congested -EXPORT_SYMBOL vmlinux 0xeca2689f generic_end_io_acct -EXPORT_SYMBOL vmlinux 0xeca5c733 neigh_changeaddr -EXPORT_SYMBOL vmlinux 0xeca8da27 blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0xecb08d60 keyring_alloc -EXPORT_SYMBOL vmlinux 0xecbcb8bb radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0xeccc8ba2 scsi_rescan_device -EXPORT_SYMBOL vmlinux 0xeccd3e0c acpi_handle_printk -EXPORT_SYMBOL vmlinux 0xecd1522b vga_switcheroo_init_domain_pm_ops -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecf6ce2e __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0xecf8c0a9 dev_printk_emit -EXPORT_SYMBOL vmlinux 0xed10ad45 netdev_state_change -EXPORT_SYMBOL vmlinux 0xed5974e0 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xed598ca6 mutex_lock_killable -EXPORT_SYMBOL vmlinux 0xed8f0e08 sock_kmalloc -EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic -EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xedabe312 tcp_ioctl -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedf1effc sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee429f23 dev_mc_sync -EXPORT_SYMBOL vmlinux 0xee42fcff __get_page_tail -EXPORT_SYMBOL vmlinux 0xee663539 __register_chrdev -EXPORT_SYMBOL vmlinux 0xee6bd65a pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xee7b11a1 kobject_get -EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices -EXPORT_SYMBOL vmlinux 0xee893262 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee94016e page_address -EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeec2c7cf ucs2_as_utf8 -EXPORT_SYMBOL vmlinux 0xeed54e88 tcp_shutdown -EXPORT_SYMBOL vmlinux 0xeef161aa groups_free -EXPORT_SYMBOL vmlinux 0xeef8e4a8 vme_irq_generate -EXPORT_SYMBOL vmlinux 0xef0355da iommu_tbl_range_alloc -EXPORT_SYMBOL vmlinux 0xef2fc3a1 agp_bind_memory -EXPORT_SYMBOL vmlinux 0xef34e1c4 md_cluster_ops -EXPORT_SYMBOL vmlinux 0xef5340cd sock_i_uid -EXPORT_SYMBOL vmlinux 0xef874420 max8998_write_reg -EXPORT_SYMBOL vmlinux 0xef89117e gnttab_free_pages -EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override -EXPORT_SYMBOL vmlinux 0xefa3d5eb dentry_update_name_case -EXPORT_SYMBOL vmlinux 0xefa7e708 acpi_device_set_power -EXPORT_SYMBOL vmlinux 0xefbc7902 module_refcount -EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xefda8d99 abort_exclusive_wait -EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0xefe099c3 acpi_get_event_status -EXPORT_SYMBOL vmlinux 0xefeb5e4e ip_setsockopt -EXPORT_SYMBOL vmlinux 0xeff34979 security_path_chown -EXPORT_SYMBOL vmlinux 0xeffee072 dev_get_by_index -EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf0050117 redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0xf01a03d5 set_blocksize -EXPORT_SYMBOL vmlinux 0xf03c52bd blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0xf062576b ucs2_utf8size -EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be -EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier -EXPORT_SYMBOL vmlinux 0xf08242c2 finish_wait -EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag -EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int -EXPORT_SYMBOL vmlinux 0xf0a2d187 blk_init_tags -EXPORT_SYMBOL vmlinux 0xf0b23479 __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0xf0c86d45 sk_receive_skb -EXPORT_SYMBOL vmlinux 0xf0d9aeef padata_alloc_possible -EXPORT_SYMBOL vmlinux 0xf0e44784 simple_write_begin -EXPORT_SYMBOL vmlinux 0xf0eaffce _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0xf0eb8991 mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort -EXPORT_SYMBOL vmlinux 0xf1015cb1 skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info -EXPORT_SYMBOL vmlinux 0xf10b7d16 simple_follow_link -EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 -EXPORT_SYMBOL vmlinux 0xf11543ff find_first_zero_bit -EXPORT_SYMBOL vmlinux 0xf1398e2e lg_local_unlock_cpu -EXPORT_SYMBOL vmlinux 0xf1477f5e pcibios_set_irq_routing -EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init -EXPORT_SYMBOL vmlinux 0xf16840b8 vme_irq_request -EXPORT_SYMBOL vmlinux 0xf16e250b skb_copy_expand -EXPORT_SYMBOL vmlinux 0xf175998b __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0xf175dd9d proc_create_data -EXPORT_SYMBOL vmlinux 0xf18242e1 atomic64_set_cx8 -EXPORT_SYMBOL vmlinux 0xf18988a9 phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0xf19145d4 lwtunnel_encap_add_ops -EXPORT_SYMBOL vmlinux 0xf192c8e3 dump_align -EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps -EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf19ca145 nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0xf1a0ba91 iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0xf1a56fd0 pcie_set_readrq -EXPORT_SYMBOL vmlinux 0xf1c67180 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1dbe652 make_bad_inode -EXPORT_SYMBOL vmlinux 0xf1dde99a do_splice_direct -EXPORT_SYMBOL vmlinux 0xf1deabf2 div64_u64 -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf1ebfdf0 vga_con -EXPORT_SYMBOL vmlinux 0xf20adf09 genphy_read_status -EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq -EXPORT_SYMBOL vmlinux 0xf21843e7 xfrm_find_acq -EXPORT_SYMBOL vmlinux 0xf21a5530 simple_release_fs -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf24b4812 mfd_add_devices -EXPORT_SYMBOL vmlinux 0xf25711c7 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0xf27d3b61 input_unregister_handle -EXPORT_SYMBOL vmlinux 0xf28ed6e2 machine_to_phys_nr -EXPORT_SYMBOL vmlinux 0xf28fb028 xen_biovec_phys_mergeable -EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered -EXPORT_SYMBOL vmlinux 0xf2b041f5 skb_put -EXPORT_SYMBOL vmlinux 0xf2b536bd blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0xf2b745e0 add_disk -EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2d086f5 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0xf2db5f3d tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0xf2db6abe dev_set_allmulti -EXPORT_SYMBOL vmlinux 0xf307e46a bdi_register_dev -EXPORT_SYMBOL vmlinux 0xf3110708 blk_queue_start_tag -EXPORT_SYMBOL vmlinux 0xf312cb9d ucs2_strsize -EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform -EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user -EXPORT_SYMBOL vmlinux 0xf33f6ddd sk_common_release -EXPORT_SYMBOL vmlinux 0xf3433116 pci_map_rom -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf3486c89 mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf381273d dput -EXPORT_SYMBOL vmlinux 0xf389d339 complete_request_key -EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0xf3986b06 acpi_os_map_generic_address -EXPORT_SYMBOL vmlinux 0xf3caf302 rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0xf3d8b4d9 __quota_error -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3e89f8f inode_add_rsv_space -EXPORT_SYMBOL vmlinux 0xf3f9a13d __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0xf3fefd16 i2c_release_client -EXPORT_SYMBOL vmlinux 0xf4065f00 d_genocide -EXPORT_SYMBOL vmlinux 0xf40b2297 __crypto_memneq -EXPORT_SYMBOL vmlinux 0xf412b9e3 fbcon_set_bitops -EXPORT_SYMBOL vmlinux 0xf413828e skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0xf414f127 proc_set_size -EXPORT_SYMBOL vmlinux 0xf421e3e3 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0xf430aaad get_mm_exe_file -EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep -EXPORT_SYMBOL vmlinux 0xf452444c __scsi_add_device -EXPORT_SYMBOL vmlinux 0xf46e6f08 ether_setup -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf48ad315 bprm_change_interp -EXPORT_SYMBOL vmlinux 0xf49272c7 ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0xf4a20d43 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0xf4a5c213 avail_to_resrv_perfctr_nmi_bit -EXPORT_SYMBOL vmlinux 0xf4ac75fa sg_miter_start -EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4d5aab5 free_buffer_head -EXPORT_SYMBOL vmlinux 0xf4e75292 mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0xf4ea8d08 dcache_readdir -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf502d273 acpi_get_current_resources -EXPORT_SYMBOL vmlinux 0xf5105cd0 mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0xf51a7780 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0xf51ae235 touch_nmi_watchdog -EXPORT_SYMBOL vmlinux 0xf5317a26 inet6_ioctl -EXPORT_SYMBOL vmlinux 0xf536d22e acpi_set_gpe_wake_mask -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf560f094 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0xf57f77b1 gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0xf59583d1 remap_pfn_range -EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set -EXPORT_SYMBOL vmlinux 0xf5af8e38 scsi_host_lookup -EXPORT_SYMBOL vmlinux 0xf5b10e67 acpi_install_global_event_handler -EXPORT_SYMBOL vmlinux 0xf5b17f4e blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0xf5c0b4ba skb_queue_head -EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xf5dad531 contig_page_data -EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command -EXPORT_SYMBOL vmlinux 0xf5f453ba tty_port_destroy -EXPORT_SYMBOL vmlinux 0xf5fc6595 param_get_ulong -EXPORT_SYMBOL vmlinux 0xf6228c0d from_kgid -EXPORT_SYMBOL vmlinux 0xf6276c40 security_path_rmdir -EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl -EXPORT_SYMBOL vmlinux 0xf661adbc pnp_device_detach -EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xf6892ea5 nvm_end_io -EXPORT_SYMBOL vmlinux 0xf6899c5a acpi_get_possible_resources -EXPORT_SYMBOL vmlinux 0xf69024fe init_special_inode -EXPORT_SYMBOL vmlinux 0xf693a145 irq_stat -EXPORT_SYMBOL vmlinux 0xf6a092a1 scsi_scan_host -EXPORT_SYMBOL vmlinux 0xf6a75d91 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6f1fe81 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf710fcaf fsnotify_put_group -EXPORT_SYMBOL vmlinux 0xf726d02f atomic64_add_unless_cx8 -EXPORT_SYMBOL vmlinux 0xf72fc700 bdi_register_owner -EXPORT_SYMBOL vmlinux 0xf745cb16 atomic64_sub_return_cx8 -EXPORT_SYMBOL vmlinux 0xf7584a9c find_font -EXPORT_SYMBOL vmlinux 0xf75f9ae9 d_alloc_pseudo -EXPORT_SYMBOL vmlinux 0xf764868a udplite_table -EXPORT_SYMBOL vmlinux 0xf78834ce md_integrity_register -EXPORT_SYMBOL vmlinux 0xf788424d register_sysctl -EXPORT_SYMBOL vmlinux 0xf7891779 gen_pool_free -EXPORT_SYMBOL vmlinux 0xf790b5de __ht_create_irq -EXPORT_SYMBOL vmlinux 0xf79e97cd acpi_get_physical_device_location -EXPORT_SYMBOL vmlinux 0xf7aa922c neigh_update -EXPORT_SYMBOL vmlinux 0xf7bc1c71 mpage_writepage -EXPORT_SYMBOL vmlinux 0xf7c4a7ef scsi_host_set_state -EXPORT_SYMBOL vmlinux 0xf7e39aab del_random_ready_callback -EXPORT_SYMBOL vmlinux 0xf7e511e2 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0xf7e8bc63 tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0xf7f51f0b submit_bh -EXPORT_SYMBOL vmlinux 0xf8050fac acpi_evaluate_object -EXPORT_SYMBOL vmlinux 0xf805c0d3 key_unlink -EXPORT_SYMBOL vmlinux 0xf80e568c dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf81d98f0 skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0xf8205ade d_find_any_alias -EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area -EXPORT_SYMBOL vmlinux 0xf82a2e05 blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf842f03f elevator_exit -EXPORT_SYMBOL vmlinux 0xf85d8e9f inode_claim_rsv_space -EXPORT_SYMBOL vmlinux 0xf862dc8c pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0xf866d493 misc_deregister -EXPORT_SYMBOL vmlinux 0xf87c92c6 find_get_pages_contig -EXPORT_SYMBOL vmlinux 0xf88e0ee2 acpi_get_table_header -EXPORT_SYMBOL vmlinux 0xf8a37ca1 buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0xf8af3dd4 __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0xf8b5f310 ppp_register_compressor -EXPORT_SYMBOL vmlinux 0xf8d6a15a pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0xf8dc3292 devm_gpiod_get -EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xf8f522f9 dentry_needs_remove_privs -EXPORT_SYMBOL vmlinux 0xf926f3d7 skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run -EXPORT_SYMBOL vmlinux 0xf93bc7b4 mmc_gpio_request_ro -EXPORT_SYMBOL vmlinux 0xf9540dfa mmc_of_parse -EXPORT_SYMBOL vmlinux 0xf96ad018 xfrm_state_update -EXPORT_SYMBOL vmlinux 0xf97a323f pci_set_power_state -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9c1b057 blk_start_request -EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf -EXPORT_SYMBOL vmlinux 0xfa114414 netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0xfa12caa2 bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0xfa368908 xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0xfa472ecb mmc_fixup_device -EXPORT_SYMBOL vmlinux 0xfa48544d eth_header -EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa632127 acpi_bus_unregister_driver -EXPORT_SYMBOL vmlinux 0xfa7c6228 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0xfa7d8c23 mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0xfa835e2a bio_reset -EXPORT_SYMBOL vmlinux 0xfa9e60b4 nvm_addr_to_generic_mode -EXPORT_SYMBOL vmlinux 0xfaa2db47 __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xfabb3645 elevator_change -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfacabc90 devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr -EXPORT_SYMBOL vmlinux 0xfae79fe9 netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0xfb0443fb acpi_get_parent -EXPORT_SYMBOL vmlinux 0xfb10f2c5 phy_resume -EXPORT_SYMBOL vmlinux 0xfb2486c1 nf_afinfo -EXPORT_SYMBOL vmlinux 0xfb28de91 fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0xfb443b6d blk_register_region -EXPORT_SYMBOL vmlinux 0xfb56566d bdevname -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb80c7a0 acpi_walk_namespace -EXPORT_SYMBOL vmlinux 0xfb90c68d elv_rb_find -EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 -EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock -EXPORT_SYMBOL vmlinux 0xfbc1b364 inet6_del_protocol -EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbd4bbdc pneigh_lookup -EXPORT_SYMBOL vmlinux 0xfbd71298 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0xfbe25736 blk_queue_make_request -EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem -EXPORT_SYMBOL vmlinux 0xfc03d32c kfree_skb -EXPORT_SYMBOL vmlinux 0xfc0639d5 inode_add_bytes -EXPORT_SYMBOL vmlinux 0xfc13fb14 ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0xfc153ce3 skb_orphan_partial -EXPORT_SYMBOL vmlinux 0xfc2727a5 read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap -EXPORT_SYMBOL vmlinux 0xfc3a839f devm_free_irq -EXPORT_SYMBOL vmlinux 0xfc562165 acpi_run_osc -EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0xfc734327 queued_read_lock_slowpath -EXPORT_SYMBOL vmlinux 0xfc872fd1 get_ibs_caps -EXPORT_SYMBOL vmlinux 0xfc978704 flow_cache_lookup -EXPORT_SYMBOL vmlinux 0xfc983df9 netif_napi_add -EXPORT_SYMBOL vmlinux 0xfca31a8a __check_sticky -EXPORT_SYMBOL vmlinux 0xfcac0d40 acpi_install_interface_handler -EXPORT_SYMBOL vmlinux 0xfcac84b0 blk_end_request -EXPORT_SYMBOL vmlinux 0xfcb4ef35 phy_start_interrupts -EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0xfcd0caac input_set_capability -EXPORT_SYMBOL vmlinux 0xfcd445f3 filemap_map_pages -EXPORT_SYMBOL vmlinux 0xfcd505f8 blk_queue_unprep_rq -EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns -EXPORT_SYMBOL vmlinux 0xfcdd165d tty_kref_put -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcf4a7a3 dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0xfd18e820 build_skb -EXPORT_SYMBOL vmlinux 0xfd1aacbb unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xfd26c643 kernel_listen -EXPORT_SYMBOL vmlinux 0xfd334f04 fb_blank -EXPORT_SYMBOL vmlinux 0xfd33b5fa cmdline_parts_find -EXPORT_SYMBOL vmlinux 0xfd3ecd41 vga_switcheroo_register_handler -EXPORT_SYMBOL vmlinux 0xfd468208 mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0xfd4bc774 tty_register_device -EXPORT_SYMBOL vmlinux 0xfd6d8eac elv_rb_add -EXPORT_SYMBOL vmlinux 0xfd71d757 copy_from_iter -EXPORT_SYMBOL vmlinux 0xfd86075f xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0xfd862d68 set_device_ro -EXPORT_SYMBOL vmlinux 0xfd88ace2 sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0xfd8a10ec unregister_quota_format -EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xfdad73ff dma_mmap_from_coherent -EXPORT_SYMBOL vmlinux 0xfdb0567e __ww_mutex_lock -EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be -EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0xfdc07bfa sock_register -EXPORT_SYMBOL vmlinux 0xfdf41364 devm_gpiod_put_array -EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0xfdfd6c90 add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe047ce6 acpi_enter_sleep_state -EXPORT_SYMBOL vmlinux 0xfe13c522 acpi_install_gpe_raw_handler -EXPORT_SYMBOL vmlinux 0xfe169dd6 vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0xfe1c67f3 km_report -EXPORT_SYMBOL vmlinux 0xfe215bb7 forget_cached_acl -EXPORT_SYMBOL vmlinux 0xfe252872 sock_release -EXPORT_SYMBOL vmlinux 0xfe37d518 devm_iounmap -EXPORT_SYMBOL vmlinux 0xfe5d30e9 _raw_write_trylock -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0xfe85f566 padata_add_cpu -EXPORT_SYMBOL vmlinux 0xfe8ce871 fsnotify_alloc_group -EXPORT_SYMBOL vmlinux 0xfe99b790 in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 -EXPORT_SYMBOL vmlinux 0xfea0cd7b key_alloc -EXPORT_SYMBOL vmlinux 0xfea7fee0 xfrm_register_type -EXPORT_SYMBOL vmlinux 0xfeca7590 radix_tree_range_tag_if_tagged -EXPORT_SYMBOL vmlinux 0xfecd4ff7 pagecache_write_end -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfee182f0 tcp_proc_register -EXPORT_SYMBOL vmlinux 0xfee34719 devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0xfef2c78f idr_get_next -EXPORT_SYMBOL vmlinux 0xff00d029 set_posix_acl -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff206ab6 ip6_frag_match -EXPORT_SYMBOL vmlinux 0xff23d3b5 serio_bus -EXPORT_SYMBOL vmlinux 0xff28ae79 tty_schedule_flip -EXPORT_SYMBOL vmlinux 0xff3366af input_free_device -EXPORT_SYMBOL vmlinux 0xff480992 dump_fpu -EXPORT_SYMBOL vmlinux 0xff4a72c2 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff72c1a3 genl_unregister_family -EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource -EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy -EXPORT_SYMBOL vmlinux 0xff96b9d3 cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0xff988916 inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0xffab44b6 pcie_port_service_register -EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function -EXPORT_SYMBOL vmlinux 0xffe6be4b security_path_link -EXPORT_SYMBOL vmlinux 0xffeaa722 noop_fsync -EXPORT_SYMBOL vmlinux 0xffffa8b4 sock_no_mmap -EXPORT_SYMBOL_GPL arch/x86/crypto/aes-i586 0x7060bf0a crypto_aes_encrypt_x86 -EXPORT_SYMBOL_GPL arch/x86/crypto/aes-i586 0xe409b491 crypto_aes_decrypt_x86 -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x37effbff glue_ctr_crypt_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x56b39ec2 glue_cbc_decrypt_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x7b52a371 glue_xts_crypt_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x8f02ac4d glue_xts_crypt_128bit_one -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x95bf5db9 glue_cbc_encrypt_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x9dcf6530 glue_ecb_crypt_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-i586 0x28afd262 twofish_enc_blk -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-i586 0x6f068d90 twofish_dec_blk -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0017da21 kvm_vcpu_is_reset_bsp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00aaf935 kvm_disable_tdp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0151dfee kvm_flush_remote_tlbs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0592bc26 gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0752f272 kvm_get_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x08214fe4 kvm_rdpmc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0826f504 kvm_mmu_invlpg -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x085aa3b7 kvm_requeue_exception -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x086b9280 kvm_get_dirty_log_protect -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0978db52 kvm_requeue_exception_e -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0caddde7 kvm_read_guest_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1062eb30 kvm_mmu_load -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x109300a2 kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x112cbab8 kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x13674675 kvm_inject_realmode_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x152d29c8 __kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x175aea24 kvm_write_guest_virt_system -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1b5f0798 kvm_mtrr_valid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1cc4321a kvm_arch_unregister_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1dbd4dbe reprogram_counter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1e700d9a kvm_apic_write_nodecode -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1fc53aa0 kvm_io_bus_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x203ec62c kvm_write_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20de5193 kvm_disable_largepages -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2124f042 kvm_read_guest_virt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2163c8b9 reprogram_fixed_counter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2340b230 kvm_emulate_wbinvd -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25190dcb kvm_x86_ops -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x274fd2d9 kvm_vcpu_halt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x296ef7d9 kvm_lapic_set_eoi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2ad02946 kvm_get_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c78b8d4 __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f636c31 kvm_spurious_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2fbdda8e kvm_mmu_clear_dirty_pt_masked -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3145f603 cpuid_query_maxphyaddr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x317f9e6b kvm_enable_efer_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x322e36ce kvm_set_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x325efa56 kvm_vcpu_uninit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x36ff21fc __tracepoint_kvm_nested_vmexit_inject -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3849ae3e __tracepoint_kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x384e1e65 kvm_read_guest_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x388cab08 kvm_set_cr8 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3bde4641 kvm_set_cr0 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3d6bd4d9 __x86_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e094575 __tracepoint_kvm_pml_full -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e1f72e0 kvm_vcpu_cache -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x40ce1e45 __tracepoint_kvm_inj_virq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x40df48d3 kvm_intr_is_single_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x43f4230c __tracepoint_kvm_write_tsc_offset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4530403a kvm_emulate_cpuid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4564c5be kvm_mmu_unprotect_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45fc4e0a kvm_is_visible_gfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4794bdd7 kvm_debugfs_dir -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x479c5fce kvm_mmu_sync_roots -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x490d8585 kvm_lmsw -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a4f8fb0 kvm_clear_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4ab1b452 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e79fd95 kvm_set_rflags -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x50590835 kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x51a01f25 kvm_get_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x536d3e71 kvm_vcpu_kick -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x536d5b03 kvm_mmu_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x537b0c4d gfn_to_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x54b8e8af kvm_read_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x569bfc33 x86_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x57df6801 kvm_arch_has_assigned_device -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x588a4b66 kvm_arch_register_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5a5213ce kvm_init_shadow_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5b1715a4 kvm_mmu_unprotect_page_virt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5b257e5f gfn_to_hva -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5cbfd873 kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x60539e53 kvm_release_page_clean -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x611efc8e kvm_vcpu_gfn_to_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x64020e10 kvm_set_shared_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x669da1fd kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68138a79 __tracepoint_kvm_nested_intercepts -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x683215bf kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x69546899 kvm_get_apic_base -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ae431e5 kvm_put_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6dcd4698 kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6e49e9b4 kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ff2c3d8 kvm_init_shadow_ept_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7032ba5b kvm_set_msi_irq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7223a2e3 gfn_to_pfn_prot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x724a0138 kvm_get_cr8 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x72ffc58e kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7663821f kvm_apic_set_eoi_accelerated -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x76d2c1e2 kvm_set_cr3 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x77022502 kvm_vcpu_block -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7aa64803 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7b3b5073 kvm_get_rflags -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c299523 load_pdptrs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c59e22e __tracepoint_kvm_ple_window -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7cf83b6e kvm_apic_update_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ee04f05 kvm_mmu_unload -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7fab4d60 kvm_task_switch -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7fb3f613 kvm_mmu_slot_set_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x80ecfb6b __tracepoint_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x80f32ef8 kvm_get_msr_common -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x831327da kvm_max_guest_tsc_khz -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x856f3863 kvm_cpuid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x88167bbc kvm_set_xcr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x88d2f80e mark_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x89fca4a7 reprogram_gp_counter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ce4f3ab kvm_enable_tdp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8da01274 kvm_get_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8e1cd06f kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x910c712a kvm_after_handle_nmi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x92d713dd __tracepoint_kvm_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9484bb88 kvm_find_cpuid_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x955ab82b handle_mmio_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9788d5dc kvm_require_cpl -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x982cd932 __tracepoint_kvm_nested_vmrun -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a216313 kvm_define_shared_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9c171a59 __tracepoint_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9ccb5c5a vcpu_load -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e0a65d0 __tracepoint_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa028543d kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa0ec3a0a gfn_to_hva_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa3b9ca2b kvm_get_cs_db_l_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa8f440d3 kvm_vcpu_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa8f7c597 kvm_irq_has_notifier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaa9155db kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xac83d87f kvm_set_msr_common -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xacf7f97c gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xad263655 kvm_read_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1c34cf9 kvm_before_handle_nmi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1d0dcca kvm_emulate_halt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb57ab06a kvm_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb71642ed kvm_write_guest_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb73acd9b kvm_write_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb80afec4 kvm_scale_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb80c1160 kvm_complete_insn_gp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba08e1f3 kvm_is_linear_rip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba9c83ad x86_emulate_instruction -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba9ed435 kvm_mmu_set_mmio_spte_mask -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbbca72af kvm_arch_start_assignment -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbc18b215 kvm_mtrr_get_guest_memory_type -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc13b6ed0 kvm_require_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc1a0cebb kvm_cpu_has_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc23f3bc8 __tracepoint_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc2dbe553 reset_shadow_zero_bits_mask -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc445b76a kvm_queue_exception -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc4b2a9fd kvm_read_guest_page_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc56d75ce __kvm_apic_update_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc599bc18 kvm_max_tsc_scaling_ratio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc709e098 kvm_clear_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc82254ea kvm_get_dirty_log -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xceb7bd1e kvm_inject_pending_timer_irqs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0459e67 kvm_has_tsc_control -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0b2727a kvm_mmu_set_mask_ptes -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd264e66e kvm_fast_pio_out -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd3d3dee4 kvm_mmu_slot_leaf_clear_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd6ac9e1c kvm_vcpu_reload_apic_access_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd791c0e1 kvm_arch_has_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd7cfb3c5 kvm_set_cr4 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd7eb738b __tracepoint_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd92c2659 kvm_cpu_get_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd93bbd46 gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd994b5d6 kvm_queue_exception_e -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd9b72e5e kvm_release_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda11af86 __tracepoint_kvm_nested_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda54538c vcpu_put -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde9c017c __tracepoint_kvm_invlpga -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe1a05ce0 gfn_to_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe4039454 kvm_inject_nmi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe43f82b4 kvm_mmu_reset_context -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe62797e0 kvm_get_linear_rip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe7a02d9b kvm_set_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xec2a31c0 kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xed0b07de kvm_arch_end_assignment -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeec14f8d kvm_read_l1_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef733d4e kvm_set_apic_base -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2f286c4 kvm_tsc_scaling_ratio_frac_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf3d16296 kvm_mmu_slot_largepage_remove_write_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf6d02fad kvm_emulate_hypercall -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfac773e3 kvm_write_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfb2f1828 gfn_to_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfc99fa54 kvm_valid_efer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfd646060 kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfdc68132 __tracepoint_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfed2873a gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xff66c9b4 kvm_inject_page_fault -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x01c45e0a __ablk_encrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x20191b13 ablk_set_key -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x2c3eae69 ablk_decrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x2cb2aac5 ablk_encrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x5f698128 ablk_init_common -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x772fa06f ablk_init -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x7d686d2a ablk_exit -EXPORT_SYMBOL_GPL crypto/af_alg 0x11badcb8 af_alg_wait_for_completion -EXPORT_SYMBOL_GPL crypto/af_alg 0x1e1cbbef af_alg_link_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x2cb440b4 af_alg_complete -EXPORT_SYMBOL_GPL crypto/af_alg 0x4443f1dc af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x5b100932 af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x622fa13c af_alg_cmsg_send -EXPORT_SYMBOL_GPL crypto/af_alg 0x69d87970 af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x855a501d af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0xac466664 af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0xd54d7fa0 af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xe891a5cd af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x2090d681 async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x28d5e88d async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x31da77a6 async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x269c3c41 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x29e3e820 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x5f1383ce __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x612ff802 async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb9f253eb async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xc6487fe5 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x6e3ddfe6 async_xor_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xfbb6a235 async_xor -EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0xea29a6d7 blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x2bf007ce cast5_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x6912d838 cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt -EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 -EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 -EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 -EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x238a444c crypto_chacha20_setkey -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0xbbe06b7b crypto_chacha20_crypt -EXPORT_SYMBOL_GPL crypto/cryptd 0x241c231d cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x29ccc229 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x3ea3b9dd cryptd_alloc_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x8c33f8ba cryptd_free_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x996204ca cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xa952a0df cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xacca2a16 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0xbeedcefe cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xc6f1cbef cryptd_ablkcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xebeebd5c cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey -EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey -EXPORT_SYMBOL_GPL crypto/lrw 0x28eb9869 lrw_crypt -EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table -EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table -EXPORT_SYMBOL_GPL crypto/mcryptd 0x14bdd4d3 mcryptd_flusher -EXPORT_SYMBOL_GPL crypto/mcryptd 0x3764bda9 mcryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/mcryptd 0x7436041e shash_ahash_mcryptd_finup -EXPORT_SYMBOL_GPL crypto/mcryptd 0x7556885b shash_ahash_mcryptd_update -EXPORT_SYMBOL_GPL crypto/mcryptd 0xbf632c6a mcryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0xc146bc31 shash_ahash_mcryptd_final -EXPORT_SYMBOL_GPL crypto/mcryptd 0xd87e8322 shash_ahash_mcryptd_digest -EXPORT_SYMBOL_GPL crypto/mcryptd 0xf12623f7 mcryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0xf9c9a7e5 mcryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x1a6b378d crypto_poly1305_final -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x860fc78a crypto_poly1305_init -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x8e415d77 crypto_poly1305_update -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xf676708e crypto_poly1305_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8fbbff99 serpent_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0x6ecc09ab twofish_setkey -EXPORT_SYMBOL_GPL crypto/xts 0x4bedb601 xts_crypt -EXPORT_SYMBOL_GPL drivers/acpi/nfit 0x3d4e07f0 acpi_nfit_attribute_groups -EXPORT_SYMBOL_GPL drivers/acpi/nfit 0xe256379f acpi_nfit_init -EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x1c8984c7 acpi_smbus_unregister_callback -EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x87bd07bd acpi_smbus_register_callback -EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0xb9a141b0 acpi_smbus_read -EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0xe1372311 acpi_smbus_write -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1a65c676 ahci_qc_issue -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1ae3a51b ahci_do_softreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1b151d2c ahci_sdev_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x29919355 ahci_host_activate -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x38576a15 ahci_reset_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x444ceaa9 ahci_port_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x477bf265 ahci_error_handler -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x532ecac8 ahci_dev_classify -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x73061aae ahci_check_ready -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x77861619 ahci_set_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7aeac01a ahci_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7b77cfd3 ahci_stop_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x81839a33 ahci_save_initial_config -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8511b2bd ahci_kick_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x98cb41f7 ahci_reset_em -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9d06b98e ahci_init_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9dfc5106 ahci_shost_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9fb6ea3f ahci_handle_port_intr -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb0090988 ahci_start_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc34d183a ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc34e3502 ahci_print_info -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc8b357ff ahci_start_fis_rx -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe207bb0a ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x054a6555 ahci_platform_disable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2e460722 ahci_platform_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7300c12b ahci_platform_enable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x76f5d9b7 ahci_platform_init_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7917dd5e ahci_platform_suspend_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x797e30d2 ahci_platform_suspend -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7b1b4170 ahci_platform_enable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x835d32a0 ahci_platform_resume_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x85440fb5 ahci_platform_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x895b20a8 ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x89b349c9 ahci_platform_disable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc7a51074 ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xeac01378 ahci_platform_get_resources -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xd5a00498 __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x02ff9464 cfag12864b_isinited -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x0ecb2e5d cfag12864b_disable -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x305dc3c6 cfag12864b_isenabled -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x3389f926 cfag12864b_enable -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x9522a342 cfag12864b_getrate -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0xc48e9d95 cfag12864b_buffer -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x73b0deac __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x8c64739d __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x8f03dc94 __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xa49a7801 __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0041f0c8 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0446d4bd bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x12f1fcde bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1f1c0d8f bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x333b2b31 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4ae816d1 bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4c0b2644 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4cb7a553 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5ca44ffd bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6bc6f5ee bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6e3cb521 bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7877ed7b bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x83962801 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8b73f3da bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x965bcd04 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa1174d1a bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbf46f4c4 bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc541191c bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd3959ed0 bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd56a4dfd bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xecf0bd8a __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xed494991 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf5a992c3 bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfd37a9ab bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x21d5c5b7 btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x5e51106b btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x9b752fa7 btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xbb3f0b59 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xecb40f38 btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf9d3d95f btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x36686c96 btintel_secure_send -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3e66d619 btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x436edcd2 btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x49964544 btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5bf35147 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x70fd1494 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa22e5ae7 btintel_hw_error -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb9a6020d btintel_set_event_mask -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc512a834 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcf549e04 btintel_set_diag_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe442b4f7 btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x27683f61 btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2c2325aa btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x41dd23bf btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x59cca4f4 btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6742c4f4 btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6e87aab9 btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7836a0de btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x90962f13 btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xaa9eb3de btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xdc0744d7 btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe0b832b8 btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x097c3f0a qca_uart_setup_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xcb3ca9cf qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xbe73167b btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xa2f3bcd9 h4_recv_buf -EXPORT_SYMBOL_GPL drivers/char/scx200_gpio 0xa37366ed scx200_gpio_ops -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x04773b60 ccp_present -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xa5a58eba ccp_enqueue_cmd -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x035b0f77 adf_enable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x05150d30 adf_send_admin_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x066db72c adf_enable_pf2vf_interrupts -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x119b1a42 adf_dev_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x121b8073 adf_init_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1931d0e7 adf_dev_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1d438784 adf_sriov_configure -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x205c9001 adf_enable_vf2pf_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2e31b189 adf_iov_putmsg -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x30211c4d adf_dev_get -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x389f842c adf_update_ring_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3ba37c66 adf_cfg_add_key_value_param -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3fb98bc5 adf_disable_pf2vf_interrupts -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4c12ea06 adf_response_handler -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5dd987f7 adf_service_unregister -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x62cac7f4 adf_disable_sriov -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x665636d9 adf_dev_stop -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x68209834 adf_devmgr_in_reset -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x696ebffc adf_dev_start -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6adf802d adf_service_register -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x73a49534 adf_devmgr_rm_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x76e98826 adf_dev_in_use -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x79ab8740 adf_cfg_section_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x89de69e7 adf_init_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9646d0a6 adf_cleanup_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x98065869 adf_dev_started -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9c10d2ec adf_disable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa4161b05 adf_dev_put -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xac2499df adf_disable_vf2pf_interrupts -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb3b335f8 adf_devmgr_add_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc44ed892 adf_cfg_dev_remove -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcc3b167a adf_clean_vf_map -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xce44c904 adf_init_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xda02019f adf_devmgr_pci_to_accel_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf287fa64 adf_cfg_dev_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf7e37d2a adf_exit_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf886a977 adf_devmgr_update_class_index -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfb8f4d73 adf_exit_admin_comms -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x27a38a14 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4ed9e355 dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7e2e22c1 dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x8292f10c dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x8fd9c8e6 dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x34237b78 hsu_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x37e48106 hsu_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x4be9a416 hsu_dma_irq -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x66ed802a vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xf5ba1276 vchan_find_desc -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xf8090b9b vchan_init -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xfcd27f30 vchan_tx_submit -EXPORT_SYMBOL_GPL drivers/edac/amd64_edac_mod 0x51ea74c5 amd64_get_dram_hole_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1d733f2a find_mci_by_dev -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2f4b535e edac_pci_handle_pe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x50105c4c edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5455e9b7 edac_pci_reset_delay_period -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x63c769ff edac_mc_del_mc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x73a25f7a edac_pci_handle_npe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x78960306 edac_device_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7ddf5051 edac_pci_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8ad915b5 edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8ed9bbf1 edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x99000aa7 edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9aeb1690 edac_device_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9f9c052e edac_mc_free -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb445a787 edac_pci_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb884929e edac_device_handle_ue -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xcddd9448 edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xce70f82c edac_device_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd4274a94 edac_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xdbf0f1af edac_mc_alloc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xdd35db85 edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xedfab1f5 edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf14eaa17 edac_device_handle_ce -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xffe828f3 edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x14878009 amd_report_gart_errors -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x1d34e996 pp_msgs -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x81d75507 amd_register_ecc_decoder -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xb30b7e56 amd_decode_mce -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xd3cc2686 amd_unregister_ecc_decoder -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x02661e80 fpga_mgr_buf_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1ab0d5d8 fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc9f096d5 fpga_mgr_firmware_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe89ac76a of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xef149bcd fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf44a971f fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0x013fbdac cs5535_gpio_set -EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0x93f8fe67 cs5535_gpio_set_irq -EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0xc0bb404a cs5535_gpio_setup_event -EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0xd3bd9300 cs5535_gpio_isset -EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0xe07c0954 cs5535_gpio_clear -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x679c7a01 bgpio_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x76815a21 bgpio_init -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x7e746333 __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x8c742a27 __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0fedc165 drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1e02f871 drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xebed1157 drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x05876c69 i915_gpu_busy -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x08a7896d i915_gpu_raise -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x402468e9 i915_gpu_lower -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x500858b9 i915_read_mch_val -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0xe7237b0b i915_gpu_turbo_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x2afd6721 ttm_dma_page_alloc_debugfs -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x8c6b8395 ttm_dma_unpopulate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xd582fa9c ttm_dma_populate -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x085f0a44 hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0c01ed61 hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0c247bf9 hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x17370e54 hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x17680431 hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1e3fb6e9 hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x27dfcf1f hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3496a551 hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4c5489b6 hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x518fc51e hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x549d9ccc hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x550d0e3a hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5aa3a8d1 __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5ea4eeac hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x61881b39 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6425981a hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x65af3d46 hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7373d2e5 hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0x73d040a0 hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0x78b2dad0 hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x89520b31 hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b96aeac hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9e6c1ffc hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9e74dd7c hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb2a824e6 hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc076a45a hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc30429d2 hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc43906fe hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc5eaaf59 hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xced36797 hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe2fd3740 hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe4050bb2 hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf0aa5ae4 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf0d0e546 __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf48edc67 hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfecabf75 hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x86c3109d roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x101651a0 roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x1ae7a9de roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x831bb128 roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xb90612bf roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xe0301cbf roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xf5fb257f roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x100ceb70 sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1058c4c3 sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1cd19cc6 sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4042c479 hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4f71f49c sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7bfb9f69 sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x925ec196 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xdb235981 sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xeb493301 sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x9eed71a6 hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0e3aee36 hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1bb5266e hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x28187f99 hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x28ecca4a hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2d279929 hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x36f05280 hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x40d49dba hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4b23808c hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6a84c24e hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6ef430e2 hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x75e70ac0 hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa6e0b946 hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb2850742 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xda860501 hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdef66be2 hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe043d042 hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfffd5997 hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x08c29318 vmbus_hvsock_device_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1a25cd8a hv_do_hypercall -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2052cd85 __vmbus_driver_register -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x25a0a3d2 vmbus_cpu_number_to_vp_number -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3248e0ab vmbus_sendpacket_mpb_desc -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x358fafa5 vmbus_prep_negotiate_resp -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3a887c01 vmbus_set_event -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x40735b2e vmbus_teardown_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x59e9faf7 vmbus_driver_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x70afb2a4 vmbus_sendpacket_pagebuffer -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7916c84d vmbus_are_subchannels_present -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x86ff5fa6 hyperv_cs -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x87756595 vmbus_establish_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8c96939d vmbus_set_sc_create_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb459e5b7 vmbus_get_outgoing_channel -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb67af813 vmbus_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc13589e5 vmbus_sendpacket_pagebuffer_ctl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc498ca66 vmbus_sendpacket_multipagebuffer -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd072c8bc vmbus_allocate_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd662345d vmbus_open -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdb2f6047 vmbus_free_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdc7a837a vmbus_setevent -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xde35ad53 vmbus_set_chn_rescind_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xeadb5fcc vmbus_send_tl_connect_request -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf262383f vmbus_recvpacket_raw -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x2d9bc2f0 adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x848d92ae adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x8c703b24 adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0f22e128 pmbus_get_driver_info -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x17b338ff pmbus_check_byte_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x1a61ca31 pmbus_do_probe -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x210e0197 pmbus_write_byte -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x314b9c4d pmbus_write_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x54897ddf pmbus_do_remove -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x59d6e838 pmbus_check_word_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x690ebdbd pmbus_update_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x9b9193f5 pmbus_read_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xabe5d7f0 pmbus_clear_cache -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb3470ab9 pmbus_write_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xc3b1f210 pmbus_regulator_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xc6a55cab pmbus_clear_faults -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe0133fbb pmbus_read_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xfc19b692 pmbus_set_page -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0a3945d6 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x1c24b887 intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x348c2aed intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x533285a8 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6d2aa746 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7d427a16 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc9dca769 intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x039de14b stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2e24106f stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4c5dfb36 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x99f2e93f stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xfe22e548 stm_unregister_device -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x0581d42b i2c_dw_disable_int -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x39ae9f5b i2c_dw_read_comp_param -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x4390f53f i2c_dw_disable -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x8fd91aab i2c_dw_init -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xf2912e3b i2c_dw_probe -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0x65c7b249 nforce2_smbus -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x29ff222e i2c_add_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x80014cd9 i2c_del_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x62589b7c i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x6c06b56f i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x278a4df1 bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x7fc29190 bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xd045a2ab bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x338a5fd0 ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x67af5bd0 ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x795895d9 ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x7da64f32 ad_sd_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x9ba0f15b ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xaeef298c ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xbecb4768 ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd418fd36 ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xf13851ea ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x755e4338 iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xa854c481 iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x0bdd5f21 ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x981439f6 ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x498381d3 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x5f9e7921 bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xe663d8b2 bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x17ac6f43 adis_reset -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x246dfc2d adis_write_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x24b5b593 adis_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x37fbc801 adis_init -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x38230445 adis_remove_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x5290b069 adis_initial_startup -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x5668e06e adis_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x5a3f5822 adis_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x98ad4730 adis_check_status -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc500963b adis_read_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xeda6bca8 adis_update_scan_mode -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf1d77585 adis_probe_trigger -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x00d59f46 iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x017b233d iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x01b60a73 devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0ad66a1f iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0d89c291 devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x14f22bf9 iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3b8f17e7 devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4b003651 iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4e3b9930 devm_iio_device_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x515be43a iio_update_demux -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5cfff0ce iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x63371bd1 iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x66a84dff devm_iio_trigger_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x84956922 iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9fe99e97 iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa1633540 iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa980024c iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaa8b862c iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xabd0de13 iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb1a57bd1 iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb88c16ac iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc599762f devm_iio_device_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcb05eb80 iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcb8b7869 iio_scan_mask_query -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd2ee43f5 iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd5b2d274 iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdd9229fd iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xee923038 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xeeebced9 iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf2160d6d iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfa7d267d iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xbda84a94 input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x937af151 adxl34x_probe -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x218a9394 cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x2ff74d80 cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x6c6b5ad8 cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x074d4cbd cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x688dbb25 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xf39d0c03 cyttsp_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x476415f4 cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xafa4a2c7 cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x7eb7639a tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xb7526800 tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xd6421938 tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xea6c0ef4 tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0573c1ef wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x23f7fe4a wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3adfc876 wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3e49e310 wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x49e088c3 wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5f79916f wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x672fae32 wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x96f4e53f wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xba061d82 wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xcb747b5a wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xef5dfed4 wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xff4083be wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x08419dee ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1e5caf97 ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2530a3bd ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x61852daf ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6a86550c ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x71da8c85 ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x8f3bad07 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xbc9f79fa ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xbcf3c181 ipack_device_init -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x07893a55 gigaset_handle_modem_response -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x26cab5b5 gigaset_blockdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x39098b7a gigaset_add_event -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x48abb783 gigaset_if_receive -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x5b345c3f gigaset_skb_rcvd -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x72dc906e gigaset_fill_inbuf -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7989dac0 gigaset_shutdown -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7de986c6 gigaset_isdn_rcv_err -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8b587be4 gigaset_m10x_send_skb -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x9033cc2b gigaset_initcs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x95e0d0a7 gigaset_skb_sent -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x9809e386 gigaset_m10x_input -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa7901825 gigaset_initdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc573a272 gigaset_start -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xdf16316b gigaset_freecs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe5989908 gigaset_stop -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe9a84d65 gigaset_freedriver -EXPORT_SYMBOL_GPL drivers/leds/dell-led 0x86fd1ffb dell_app_wmi_led_set -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x106faf3c led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x2ac65fcf led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x3587320e led_classdev_flash_register -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7065dcd2 led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xbab53a0d led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xbd70d880 led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x16aadb29 lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x32258c32 lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x401c0ffc lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x45b47edc lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x6c74d34c lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7a094ca9 lp55xx_unregister_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8080acd3 lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8c9669c9 lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9a5ddaa6 lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe35276b3 lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf3b19170 lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x0c891e02 mcb_alloc_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x50dd30ad mcb_get_irq -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x628d7316 mcb_bus_add_devices -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x809848fe mcb_unregister_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xa27e1a01 mcb_alloc_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xaa40f966 mcb_free_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xacee2bfb mcb_request_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc493a360 __mcb_register_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc4c8270f chameleon_parse_cells -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xcb40b21a mcb_release_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd6ad7dc9 mcb_device_register -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xde22c1a0 mcb_bus_put -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf691ede9 mcb_bus_get -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x00b74659 __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2a1a7a99 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x374f45ea __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3a4dfef7 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x48991e9c __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4f124797 __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x614e860f __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x647af374 __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6724de29 __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6726a0c1 __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x68f1ea6d __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7114cfcc __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x78c57fa5 __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7cb4bd6f __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x816ebfe0 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x833b99dd __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8afe3e2b __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x912566ef __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x92c55e92 __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9c59320b __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa7004101 __tracepoint_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaf2376ac __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb3942afe __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb4cffcbb __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb9c28744 __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc0bd3171 __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc773563c __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd81ad8c9 __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe30b6b2a __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6169c53 __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfcb52b5f __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2ea6db1a dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x572db2ae dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6fcd6b16 dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x764d73df dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x93316922 dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x977a5429 dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc5fbc38c dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xcc2a87c7 dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe90428e6 dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x22163b69 dm_bufio_release_move -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x317c4666 dm_bufio_client_create -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x3909d3a8 dm_bufio_prefetch -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x594952bd dm_bufio_read -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x62a23587 dm_bufio_get_device_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9b2b253a dm_bufio_get -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xdc69e37a dm_bufio_get_block_number -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe004ee92 dm_bufio_new -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x1ae0bcf2 dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x889c4a35 dm_cache_policy_get_version -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x9996a69d dm_cache_policy_get_hint_size -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xac27cd4b dm_cache_policy_get_name -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xc775eecc dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xc8e6cb53 dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xcd1a6515 dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x0a674400 dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x7fed3ba9 dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x09472122 dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x20f3026b dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x2b8789c6 dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x351aead6 dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa8813ad6 dm_rh_region_to_sector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc66ce277 dm_rh_get_region_size -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcab63c3d dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcb1b4e74 dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xdd38b0d0 dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xe1dfc67a dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf37a3cfe dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11eab9fe dm_bm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x150c85ce dm_tm_open_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x16fcfa94 dm_block_manager_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2e730a21 dm_bm_checksum -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x33c03da6 dm_sm_disk_open -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x619701dc dm_sm_disk_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9b4b5b29 dm_bm_write_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2507774 dm_tm_shadow_block -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbcfdc290 dm_tm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbe0497aa dm_tm_create_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xead1e727 dm_bm_write_lock_zero -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize -EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x12e58bfe saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x326c840f saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x365cc74d saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4d6ee066 saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4fea2924 saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x80350ce5 saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x90943807 saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb143e499 saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd61a25da saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xebe89b40 saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0a4cf0d9 saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x8b0cefa8 saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xa67c9482 saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xb0fba427 saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xb92f50b3 saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xdb63334b saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xdde8ebb5 saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3c8c56f3 sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4613210c sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x49ca1749 smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x55fa8644 sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x562a05ac smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6e64e7b1 smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x765097f4 smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x89216182 smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9e67429c smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa5dbbb8e smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb22e0ab6 sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb28da67c smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcdae8e7c smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdb0bc08a sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe648a2b0 smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf1815b06 smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf858a9fb smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x34b6b34b as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x283f0c72 cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x40735183 tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/media 0x2149e1c1 media_entity_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/media 0x26a3692c media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/media 0x35657454 media_entity_init -EXPORT_SYMBOL_GPL drivers/media/media 0x37dfd318 media_entity_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/media 0x5c4f9080 media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/media 0x5e3b6fc9 media_entity_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/media 0x632ad004 media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/media 0x641d9a6d media_entity_put -EXPORT_SYMBOL_GPL drivers/media/media 0x6acf3122 media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/media 0x734ddc78 media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/media 0xa58c05c5 media_entity_get -EXPORT_SYMBOL_GPL drivers/media/media 0xb15b2d85 media_entity_cleanup -EXPORT_SYMBOL_GPL drivers/media/media 0xb91a8b1f __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0xc162816c media_entity_create_link -EXPORT_SYMBOL_GPL drivers/media/media 0xc50bfe14 media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/media 0xd8c28b02 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/media 0xe28f89e7 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0xe83f3237 media_entity_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xa793103c cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x08f11d93 mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1a26822d mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2b4cdd14 mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2ccd69aa mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4003d46a mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x480f7654 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5767f41f mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x85989355 mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x95aa8221 mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x989f79d7 mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xad2e3e58 mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb9879998 mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc5acb093 mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd2c890e6 mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd7feef9c mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe47a69f3 mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe7fad7e2 mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf7c44527 mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf901f432 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x033ac1c4 saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0f74a038 saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x180e3c92 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2269c489 saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2f147fcb saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x38e03d5d saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3e1504de saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3f61164c saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x50b33d4b saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7f3f7c41 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x82217765 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x838d6752 saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa1d70270 saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb1b5737c saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd0a100ab saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe0773679 saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe536ee1e saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf3f20f89 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xff911acd saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x1594b444 ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x321fab03 ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x6e32a475 ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7f6b9c0f ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x8c79c6df ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xbe91f842 ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xdfad6003 ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x017e8273 radio_isa_probe -EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x24c5187d radio_isa_remove -EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x42e6d9dc radio_isa_match -EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x533e3a36 radio_isa_pnp_remove -EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x8f718bf2 radio_isa_pnp_probe -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x129fe070 radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xd2b5dd78 radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0a5fa32b rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0ea5f0c7 rc_open -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x130ab93c rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x168e43e8 rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x37c163e3 rc_map_get -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x397bd34f rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4672ec03 ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x51878f6a ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5f78a71c rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6a06e14f rc_close -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7c017065 rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7eb890ca rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x86a9f0cb ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x887cf47d rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa2aeff8b ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb99c1e67 rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc28901b1 rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd65c13c2 ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf05278a9 rc_keydown -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x0fe9202c mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x8f479ddc microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x6146989b mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x6043d0b4 r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x5749cf7d tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x949950c3 tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x2d1de457 tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x4f89b107 tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x72ae992d tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x3bc97167 tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xd0d97c16 tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x932fd20f tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xd247db39 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x2c42f5d2 simple_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x019bfdb1 cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0856bce1 cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2b6fcd98 cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x34892a95 cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4c6244e7 cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x64c9091b cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x64eb75d8 cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7b508da0 cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x80e7fbe9 cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x873846a7 cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x951c749f cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa3d17f0f cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa5f9151f cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb55689af cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc4231e9e cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc9676fba is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcd80e52a cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xdc06379a cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe234f6e4 cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe58c23f7 cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xb8c50d72 mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x96412ff3 mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x02d0a563 em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2f0118f9 em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2fbf7da8 em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x34cff70f em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x79ae71c0 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9090cf96 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9f182e23 em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa957e66c em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb16efa79 em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcf565135 em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcfe7bfc0 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd117f1fe em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdae6e730 em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdd6282eb em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xddcc2c98 em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe3d7239e em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf71e7b2b em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfa8ac689 em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x6d50e5d6 tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xa7c8a9e1 tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xcc52905b tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xf72bdbd9 tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x2da115e0 v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x8a9fbf3c v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xaeaa80a8 v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xc5ec6b59 v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xcb6a9097 v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xef8d8340 v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08982d59 v4l2_match_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x21290e9d v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x319a7268 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0375d84d v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x05cb0fb6 v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x06de9771 v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x07799bf2 v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0b57fbb0 v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1809e82b v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x185cbbb8 v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x20f8f24a v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4ac5737e v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4ec0310d v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5fdd5f7f v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x65c0973e v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x671d59a1 v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6e383fee v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x741a4c56 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x821b3f30 v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x850fbce0 v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8cbbd801 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xad255195 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc643dd08 v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xce76192b v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdb391c68 v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe2b2e46e v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe766a511 v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xefbbdb99 v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf67534ff v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf949c279 v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x13ae4fed videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x18ed21e4 videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2273e5f8 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x26a4d1ac videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x34e66730 videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x58987bc0 videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6c36e79a videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x721af42b videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x72f15678 videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x775ed472 videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x89cff48e videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x91a096c6 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x95960077 videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9bdcb963 videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9e3cca8c videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9f4e408e videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa2183204 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa9111552 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa9eecc89 videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb1d1fae8 videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbc731b3d __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc9ab2235 videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcd7da53d videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd1af5dfd videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0x01225006 videobuf_queue_dma_contig_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0x20069b2d videobuf_dma_contig_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0x8e353c5f videobuf_to_dma_contig -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x2bb7e3f4 videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x5f497cd7 videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa825c75b videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xe7632bd8 videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xf90c91c1 videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x3d078163 videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x5aebd4dd videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xf2e58add videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x069dcb29 vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x3eefb100 vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x46f87d24 vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x692049dc vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x733cb3fa vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x8076cde8 vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x90dccb3e vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x97c6f093 vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa15f818c vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa2d7ac6c vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xab0e92fc vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xad2a4740 vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xbc6aefd3 vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xbf3f0d29 vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd696295c vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xdd0b9ef7 vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe18d575f vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xecbdd435 vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x2b39382a vb2_dma_contig_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xdb944cdf vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x4748b7be vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x5abdc878 vb2_dma_sg_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd30ec30f vb2_dma_sg_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0x2aa094eb vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x003fccc1 vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0554c4c6 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x08a4db04 vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x08aeb093 vb2_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x111675d9 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x16278c85 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1d211a8e vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x231c7ce5 vb2_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2502b7c1 vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x31acb92b vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3dcbc725 vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x48daf4b8 vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4fabef68 vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x51a383d7 vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x66b889e0 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7a722a07 _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7b36bc8b vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x88b718ec vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x89990858 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x905bb484 vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x927ebe83 vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9512fb7c vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9e30794a vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa538d050 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xab23fa71 vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xac9e6a53 vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb143ff35 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb909b030 vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbe128e1b vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdc511a8b vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe3311794 vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe9c4161d vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x5543ac01 vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0399e653 v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x07f286c2 v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x085c1c98 __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x09281f01 v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0faf4094 v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1959de22 v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1fbc3061 v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x21e70541 v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x284b9d59 v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x28d20b15 __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x31e3d76e __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3740e82b __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x597d0e95 v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6305c4db v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6db0e0e6 v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x70952bb3 v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7a85f5d7 __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x81aea06c v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8fa601e9 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x918c315d v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x98545b10 __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xae44dc01 v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xba162dcc v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc8add7e9 v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd3615782 v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd77aae16 v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd87bb32b v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdabc9a18 v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xde7eaa2c v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe329b537 v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe6aa1ce1 v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeab333c1 v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeb6c8b60 v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeff96e3e v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5956f8c __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf8358ccd v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x36672552 pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x5a618382 pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x9b34a1d7 pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x22abefd0 da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x26a0349e da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2dc2b85f da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x47027025 da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x5725e9d6 da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x58c1372b da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x715f87b6 da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x032e2c10 intel_lpss_prepare -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x58d3c5cc intel_lpss_resume -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x7802a8ad intel_lpss_suspend -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x7aafc1e7 intel_lpss_remove -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xafb1be6a intel_lpss_probe -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1564a26c kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x2998bf18 kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x2c7aecb0 kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x4c6ac53c kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x690cd4f5 kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x6ddf3b1c kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe2747d08 kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe807a720 kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x40e9a5d9 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x60aab8f6 lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xe1b414a0 lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x0c028d96 lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x320c7a93 lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x52eacf8a lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x97d016fe lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x9f1c2f97 lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa9f7e187 lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xcc73a6a3 lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x4b15c01c lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xc814b30c lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xd49df287 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x03720276 mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x14e20ff7 mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x16affa7c mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x43c84956 mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x51c7bc3e mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7dff1992 mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x373324ff pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5e47f6cd pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x61e4ec96 pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x787c54fa pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa2fe73de pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb5ff690e pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbcc865b6 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xda6c6b4f pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xde3cbbec pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf77c82f2 pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xfe39ac39 pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x7f70bfb4 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xa1127863 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x0dd75d60 pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x23e4c461 pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x64fef09d pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd3ed210d pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xf5f6eff4 pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0c93ddfa rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0d524337 rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x108d726d rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x17218211 rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x17801ad3 rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x43112d2e rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x50024e53 rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x67d5af65 rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7223b3af rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7a552632 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x86ee9928 rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8879ff4b rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x95055d14 rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa7b8c424 rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa8686f2b rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb1febcda rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc6573d4b rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc78eb594 rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc94e6374 rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd764c317 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe02d7ab9 rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe790992d rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf1659ff2 rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf22177b5 rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x02337c02 rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x05fe9ffa rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x0c41c620 rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x57b9bb6e rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x6587a86c rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x90805115 rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x9e6b48d5 rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xa7b2cc3d rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb58a1eb5 rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xba0ffb6e rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xbfe96fb4 rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xc6ff274f rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xd8849dc3 rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x02d57464 si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0a5bc62e si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0d164fa6 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0df24b29 si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x12ec1047 si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1aa473f2 si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1bea64a3 si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x209e7874 si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x220ad8c8 si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x26a1c3c0 si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2eb9fecb si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x37bf4cf7 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x50ed3357 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5376ad39 si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x57940d2b si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5ac438f8 devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5ce68efa si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6a6efa54 si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x761400dc si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7656f939 si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x797752ca si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7c87ad24 si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9a08df64 si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa4a94880 si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb55cd4b3 si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc5f41c73 si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc787efb1 si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xce065ebd si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcf8a3dc5 si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd3520621 si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xee42a50a si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf21efd5a si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf57a3836 si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf7092506 si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x31119d93 sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x4914f886 sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x5e6c1da5 sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x92858748 sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xbc183c8a sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x0bea5140 am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x551bc397 am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xd47138ff am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xf3684905 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x3dd8bf2d tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x5a1fadfe tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x83c3e275 tps65218_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xf88b3b78 tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x1e221f9a ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x2e11219c bmp085_detect -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x6dd0aa06 bmp085_probe -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xa22a2d6e bmp085_regmap_config -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xce792532 bmp085_remove -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x1093c840 cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x2ee62a31 cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x67f9a39a cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xcf868cf7 cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x0deec31e enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x83f5c079 enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x8f466c33 enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x9c5c4252 enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb30fcc00 enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb95d4ced enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xdeb0ac8a enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xec51980d enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x0900bfe9 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x27a609ab lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x40a6f69e lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x44123cf9 lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4a3e2203 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x73f1f42d lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc88b7896 lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf3ec957b lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x04358c84 mei_irq_read_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0b6825fb mei_register -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1ab7bd92 mei_cldev_set_drvdata -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x23cb1d16 __mei_cldev_driver_register -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x25108b69 mei_cldev_disable -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x33da5cd6 mei_write_is_idle -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x42055601 mei_cldev_register_event_cb -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x47b53bb1 mei_cldev_enabled -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6a0e6325 mei_cldev_send -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6c3f63c9 mei_cldev_uuid -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6d0a5597 mei_irq_write_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x759a3a63 mei_restart -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7a421451 mei_cldev_ver -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8244a308 mei_stop -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8567b32b mei_deregister -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x92740ffd mei_irq_compl_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x984b796e mei_cldev_recv -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9a4f4881 mei_device_init -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa9803111 mei_start -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb43b3662 mei_reset -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xba95d8ce mei_cldev_get_drvdata -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbc07f92d mei_cldev_driver_unregister -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xca067fab mei_cldev_enable -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xcd5aacc8 mei_hbm_pg -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xda27124f mei_fw_status2str -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe33e8bf6 mei_hbm_pg_resume -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfb349423 mei_cancel_work -EXPORT_SYMBOL_GPL drivers/misc/pti 0x19f09b98 pti_release_masterchannel -EXPORT_SYMBOL_GPL drivers/misc/pti 0x23bde487 pti_request_masterchannel -EXPORT_SYMBOL_GPL drivers/misc/pti 0x52a78e81 pti_writedata -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x98206a1e st_register -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xee4aba47 st_unregister -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x0f6680ea vmci_qpair_produce_buf_ready -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1152e318 vmci_qpair_get_produce_indexes -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1280c5e6 vmci_qpair_peekv -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x13aa5a5d vmci_datagram_create_handle -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1872c7af vmci_qpair_produce_free_space -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1a195863 vmci_context_get_priv_flags -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x2e30d970 vmci_qpair_dequeue -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3ef56cd5 vmci_qpair_alloc -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4b630dac vmci_get_context_id -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4ea2ccbc vmci_qpair_peek -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x50a255c9 vmci_doorbell_create -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x612df9ae vmci_qpair_detach -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x677c36d0 vmci_is_context_owner -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x69ef87ff vmci_datagram_destroy_handle -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x6cc1a5f7 vmci_datagram_create_handle_priv -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x722d488a vmci_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x7d540b50 vmci_qpair_consume_free_space -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x8b8ad67a vmci_qpair_enqueue -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9624c58c vmci_datagram_send -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9973b9b2 vmci_qpair_consume_buf_ready -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9d16164a vmci_send_datagram -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xccbb53d1 vmci_doorbell_notify -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xcf5ed7ef vmci_event_subscribe -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xd4f4e876 vmci_qpair_enquev -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xdac94780 vmci_qpair_get_consume_indexes -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe7e7c107 vmci_doorbell_destroy -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xef5b542f vmci_qpair_dequev -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x12c77ab0 sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2a5c036d sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2fd0bc10 sdhci_enable_irq_wakeups -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x35a40dc1 sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3a21d713 sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x438a8a8d sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x543cb6f6 sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5c93e19f sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x61c8f077 sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x71f60c74 sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7867dc01 sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x862df4af sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9ffe08d5 sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb8030bfb sdhci_send_command -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x03c2ace0 sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x19ec243f sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x5111207c sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x55cf7ce1 sdhci_get_of_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x74ae6b45 sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb1d05607 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb81f40cd sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb936c0a7 sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xdcd3dc03 sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x1a1b63b3 cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x2532465b cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xe7054625 cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x1ed93784 cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x608b7c54 cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xed20f802 cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x944897c0 cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x60e2cb1e cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x802dd34b cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x94c83f47 cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x03c061fb mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x136c7640 mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x13c32718 __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x170de4fb get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x174a91ed mtd_erase_callback -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x27c85ecd __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x396250d4 register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x44151c14 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x482560ef mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4c4318af mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4e6e1635 mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5ef435a9 mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6119dcd7 mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x63c0d514 mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6b26283c __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6b8ec091 deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6f7a6dec mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x71308f53 kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7a8c03c7 unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x85b22031 mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x89c6c2c6 mount_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x91892cc9 mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9a5e15ed get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9d2f1edd register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa23254c4 mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa5f66972 mtd_is_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa7444478 mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xad3d1429 mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb16732e7 mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc8786e93 mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xccb46be7 mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xda2424cf mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe0c4325e mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe1eebc8e mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe3a42d6d put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe53f5353 mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe97a36cb mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xee5f327f mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xef537d66 mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf2a158da mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf2a9f379 mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfc4db86c mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x0a40bca2 del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x43226f54 register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x6ac15e20 add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa5eefb76 deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xbae286ff mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x1792ea2f nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x6310ff72 nand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0xa7324972 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x2ead7d5b onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x82e46cd4 onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xafe17640 spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x221eca4c ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x56a8677e ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x73686c44 ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7d6ac04a ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8c1d92cc ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x988111f0 ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x999042ea ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xac36c02a ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xbaaaaa1e ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc4fb1e67 ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xceb72cfe ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd62c61f1 ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf124fe3b ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf3822ed5 ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x3d3a6656 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xda7a9116 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1804b8f7 register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x55d4e753 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x87c8e2ca unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x900c65fd free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xa5726aa8 c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xdb6ce4d9 c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x07fe585e alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x19bce736 unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x2199185d alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x2c46614d can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x30c0d269 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x56dc60ab register_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x59d879bb can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x62178131 can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7227ebee open_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9345fb04 alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9ee9853b devm_can_led_init -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa2ece240 can_led_event -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa47b3e54 can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb72e65e9 free_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc5466122 close_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc89cd1f7 can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xfcf49124 alloc_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xfcf9b39c safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x1eac667c alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x291b49f0 register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x88330c13 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xa3bea24d free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x043e2abc register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x16551cf1 alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x628d4b1c free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x77db9ea4 unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0018645b mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x003a0746 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x039196ab mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0549b5c9 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ffceabd mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11ee60b7 mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1403c1e9 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1532bc28 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x171b78dd mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18b915d8 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1fa56e2a mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20c0a4fe mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20eba06d mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2179437f mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23693717 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28b66343 mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29cc1ee1 mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2aefc1bb mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ccbb6d4 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f39694c mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x304c3a92 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30594be9 mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30f4738a mlx4_fmr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x312011cb mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f028639 mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f1aaf24 mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4058631b mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4122c850 mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4424f86a mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4457c923 mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f2ac213 mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f76e0b4 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x513ed7c0 mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x533b9837 mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x550e490b mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55e723b6 mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59b7fbb2 mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59cee75e mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5cda7277 mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5cdecb63 __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f2bd07e mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x626fad5c __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x637b035e mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63dc6044 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6786b8ab mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68409052 mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68920712 mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x706a5911 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x720b5bbb mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7319938c mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x737f2e56 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7566893d mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75e275ea mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x767f5dcb mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78c4939c mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79a550e1 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7bec9471 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c3da420 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x844d80df mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x876f9515 mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87b28f7b __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x888b64fd mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a02a4dc mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a53f644 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a647748 mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a86d3cb mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93d76bfc mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x946c0251 mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97b333ea mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98d917f2 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b80d4da mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c4eca4a mlx4_map_phys_fmr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e22a050 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2720ce3 mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa372a4b7 mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3b2e001 mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa722f665 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa729d828 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9404ffc mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaaea379c mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab5bfc19 mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac783f86 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xacf65ad0 mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xade1a2a7 mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae1b4156 mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf589f24 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb30bc2d6 mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb894ba63 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd10c12b mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0da4910 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2bda631 mlx4_fmr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc318012a mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5490e06 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5b1f23c mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6b17803 mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7d07836 mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7dd27dd mlx4_fmr_unmap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9af2a1d mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce0d79cd mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf35cb8e mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcfff8c4d mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd33cc7ca mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd63ac412 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd66f8526 mlx4_fmr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7f8c2e8 mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd832629f mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb44fa9d mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc523c93 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc7ee809 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe095f39d mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3e0e287 mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe432cb98 mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4444caa mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe77c087b mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7f79897 mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe836b5b6 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9864ece mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef6a0936 mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf040305b mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1c99105 mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf51e7c8f mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6a8b504 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc1ef57d mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd6d212a __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x065d3722 mlx5_create_map_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07b5fa2d mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0823cfc1 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f9280d5 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x182a4172 mlx5_query_vport_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c3f3cc4 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2573d923 mlx5_core_destroy_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a505ea0 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e20f0c9 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2fe8d23c mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31c67849 mlx5_core_page_fault_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3faa8619 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x401d9d3b mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44ae8a82 mlx5_query_port_proto_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49add10b mlx5_core_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a5bfdcb mlx5_core_xrcd_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bcbd864 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4de6b742 mlx5_destroy_unmap_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50397fc8 mlx5_core_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x514f6363 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54c95fcb mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59ddcf90 mlx5_query_port_link_width_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b2022fa mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x602bc5a4 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x661a7df1 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68e5a277 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x756fc247 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79f7c92c mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8255b806 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82c9212f mlx5_core_mad_ifc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x946ad9b7 mlx5_core_eq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96f44f38 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99bd53f9 mlx5_query_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c829c36 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa357451c mlx5_query_port_proto_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7f4373d mlx5_set_port_proto -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf61280c mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba92cf0a mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda90f617 mlx5_core_create_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdcdfebaa mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdfa9263d mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf10dccdc mlx5_query_port_proto_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7bc677c mlx5_core_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7dcc49b mlx5_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8df8443 mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x368d3d71 regmap_encx24j600_spi_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x7417df8b devm_regmap_init_encx24j600 -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xd4ab3625 regmap_encx24j600_spi_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x43cc2133 stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x4dd7b22b stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x9071f6db stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x9f9c6a70 stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x1dae545b stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x25944437 stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x862b9ee4 stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xfd3d5398 stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x063cb776 cpsw_ale_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x12a5b40d cpsw_ale_set_allmulti -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x1853d83d cpsw_ale_start -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x1edca4ae cpsw_ale_stop -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x2a3a1c2c cpsw_ale_dump -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x374c3b85 cpsw_ale_flush_multicast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x561d903d cpsw_ale_del_ucast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x6b307ab9 cpsw_ale_add_ucast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x741b5756 cpsw_ale_control_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x77ec5c14 cpsw_ale_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x8fdd7312 cpsw_ale_del_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x92feccc5 cpsw_ale_add_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x9450167f cpsw_ale_del_mcast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xdc0ec681 cpsw_ale_control_get -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xee8ebc59 cpsw_ale_add_mcast -EXPORT_SYMBOL_GPL drivers/net/geneve 0x7940a7b6 geneve_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/geneve 0x8d364e35 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x1de156e9 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x2895516a macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x52e55eab macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xb772dccd macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvtap 0x1e755744 macvtap_get_socket -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x47ecc370 bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x76cdf739 bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x93f1732e bcm_phy_enable_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9a1c3988 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xaf56cec8 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc97937a2 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe7fe5d71 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xea01e2ce bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xeb0c9ecc bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xeb177aa6 bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x07198e89 usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x1064e9b1 usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xd3c36024 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xe863f166 usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x03d178b7 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0441629d cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1eb224e0 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7087a6db cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x71817157 cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7e14da36 cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x944b9500 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9cdca6f3 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xea0e937d cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x1098d040 generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x2cf77a8c rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x35d627b7 rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x4936ccc1 rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x509e8197 rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf6e5b10c rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x022b2369 usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x09a1ae93 usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1c166e77 usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2b41aafc usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x30f0bf6f usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x33c62301 usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x47d3b5c2 usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4c0bd6b1 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x62682612 usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x69579961 usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x811ed468 usbnet_set_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x82d8a6f3 usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8841d0ee usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8e8715ab usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x93bf0855 usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x974a776e usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x99f7fb45 usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb43c338c usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc1975af2 usbnet_get_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc7ee480d usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc81366be usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcb3b7cfc usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcbbaa767 usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd1d0b036 usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd55fd631 usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdc999e4f usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdde26f08 usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe08cd829 usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe197aa41 usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe424373f usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe9cd068f usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf6930ada usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x14777376 vxlan_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x5afcaa99 vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0b2a6ff6 i2400m_is_boot_barker -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1502b52c i2400m_release -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x19c88780 i2400m_error_recovery -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1e6ed7ed i2400m_init -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3ecb9dbf i2400m_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x40629bfc i2400m_netdev_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4d139c25 i2400m_cmd_enter_powersave -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5a23c310 i2400m_post_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x65fc759a i2400m_pre_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x81db8a11 i2400m_dev_reset_handle -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8bde47c8 i2400m_rx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8db763c6 i2400m_tx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8fcf5c28 i2400m_tx_msg_sent -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa0776316 i2400m_dev_bootstrap -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xca03bc9a i2400m_tx_msg_get -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd9c0af79 i2400m_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x4507e0ae cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xe643c4d4 cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xf12e9953 cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xfb23d37b cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x458df1ee libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x0f7dad30 il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x4e23af80 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x9e86e7bf il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xe9aca62f il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xff57c260 _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0ce0d27e iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x15a3b43e iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1b074767 iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1d6323fb iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1d928af4 iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2a931baa iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x31c9c964 iwl_write_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x390074e0 __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4530d906 iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4611a587 __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4cfa84c8 iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4dd9235e __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x512a2413 iwl_init_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5ee5ab54 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x67b4e092 iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x6c543a69 __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x6da7987c iwl_opmode_register -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7fd4f57f iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x99d13f27 iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb8979af3 iwl_notification_wait_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb928772c iwl_nvm_check_version -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc4a8fc91 iwl_notification_wait_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc5c65520 __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd49b4b3e iwl_remove_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xdae349ea iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xee67b592 iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf0f17743 iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf692c74b iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf8f5c820 iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf9f75f20 iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xfddfdfab iwl_parse_eeprom_data -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x17697b4f lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x1d2fa14d lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x383e608a lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x57acec63 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x72bf7cad lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x7ba99c2f lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x7d4bd9d6 __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x7d754784 lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb94ec494 lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xbe5b8c11 lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xd054213c lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xd50f6081 lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe251477e lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe68d2056 lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xef2ba71a lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf97271a4 lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x0e3e8bcf lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x35834f92 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x48163fb9 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x4e6dcf5c __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x6886537a lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x801741e2 lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x9a6e874c lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xecb9bd90 lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x0152dbb9 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x0d98b1ad mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x14cdc33c mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x157b1bec _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x3c7d80cd mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x42bd8366 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x5732bcd8 mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x59ff6f2b mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x5b683a55 mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x62588614 mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x86190260 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x86334e26 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x984b1c6c mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa40ff482 mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xbb328bf7 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xd86b891c mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xda7849bf mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf241b6cd mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf4a98e6e mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x0b2e72ad p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x288e399e p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x6260c869 p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x66432e48 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x6fcbfac4 p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x7f9a1ce2 p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x80fae0a0 p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xb55a2023 p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xcbdb7e0b p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x33d0e847 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x501a742f dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x507e6ae5 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd5b0f3f8 dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0503a48f rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x093455f7 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0fa2531b rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1ff12e4a rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x22b5f2f2 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2b7c47cc rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x32e7fcfa rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3d1d1220 rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4253b3f7 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x432539c2 rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x49545d97 rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5700cd44 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5ff366ca rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x62aa6fae rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6bd8cc40 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7d9ef5f9 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x82f96bd7 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8cee5f77 rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8d38c0c8 rtl8723_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8fcf51e5 rtl8723_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x99667f2a rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc8ba3d4c rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd83b92d3 rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdfd1f95b rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe4290d74 rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe5abf74a rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe90c4dd6 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x080c51ee rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x19b57fb4 rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3c56ed48 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54333780 rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x662a8047 rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x83a913d1 rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x88ea0c19 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9670976f rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa41d558c rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xae5b0fda rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xafcdc668 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb6a438be rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb97c0179 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc0a020b7 rtl_attribute_group -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd0d3261d rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd775ffe1 rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe1adbb26 rtl_dbgp_flag_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe268923d rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf7c39d9a rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfb9dfa30 rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x5b950234 rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x8305525e rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xa6e119da rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xc58e2464 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0eed6653 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x107cd4b7 rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1089ae89 rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x28841656 rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2b58fc14 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x305ca273 rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x373c9065 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x39df59f8 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3a4b41df rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3e105bf9 rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3f3bbb71 rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x417c790f rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x43347769 rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x457e6332 rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x45d8ccb3 rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4aa4b9ec rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4c46d32d rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5a0345e4 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x60bb6f3e rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6d5613ff rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7082fd2a rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x86c159f8 rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x91e7dc88 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9a324a1f rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa011990e rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xadfa7d55 rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xaf4eb02a rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb7df31d6 rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb88d90b8 rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc8fbb02f rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd459aa99 rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe080bc5e rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe2442f9d rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe46c2f7d rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe9235d04 rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe934e148 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xed1c5991 rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfda9d5e0 rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0388ed61 rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x263d47bb rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x26a41a97 rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x307737b2 rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x35b90994 rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x3c1a46f0 rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x54daf2b8 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x72c94d53 rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x79efeb39 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x7d0bf498 rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x8b4e44f5 rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xa62863c9 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xbb88be04 rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x06437146 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x064ac8e7 rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0d7ab0fc rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x17c46c00 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1cc3deaf rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x242f4fb2 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x24a31d18 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x263385a3 rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2b3f791b rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2bb15f0c rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x42304e58 rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4ba2f21e rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4e048d3c rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x54074fef rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x557ad7ff rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5a9c595d rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x618bad21 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x648f4239 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6752058b rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x71f9571d rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x767fad83 rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7790b912 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8866c752 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8e186ad3 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8fa7359f rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8fb6a5f6 rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9d2522da rt2x00mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa125f27f rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa743504b rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa9bc748c rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xacf95049 rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xaf28d5c1 rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xaf3125bc rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb1c61125 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb32251fb rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb9f7f06c rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xba9ce1ed rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc98ece16 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd0a93201 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd5f6617b rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe462bfba rt2x00mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf13b22e6 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf25388fd rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf2f86d79 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf8f0f9cf rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfd7c917c rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x32c7107b rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x40b1d136 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x5d8e101d rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x74212c68 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x8110ab54 rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x45a179d7 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x50b151de rt2x00pci_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x95c4573c rt2x00pci_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xddb89c87 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x282f1166 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2b3fe14a rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2b75d8f1 rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x3719e3a8 rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x3bfe4fc5 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x9ec23548 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xa5b2eefc rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xaf8e0474 rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb3daa9ce rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xbc5059fb rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc4f9f470 rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc85362b3 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe6a98696 rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xed90fa28 rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf12acf71 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf48ee990 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x13232e39 wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x5341e8ef wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xd181e2ba wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06069f0d wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x08269545 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1943ba94 wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1a60eacf wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1b51f7f6 wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2035d2de wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x23e05c05 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x304f4b88 wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x391a13cb wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4364241a wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x46ff6bf0 wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4b2bcad3 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4d3a0f42 wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4d4da3b1 wl1271_ps_elp_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4e4fdf1b wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4ea81bfd wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x51fa702c wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x550859bc wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x557c0201 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x56998a04 wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x576b4c8e wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x57752a58 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5bcb7c7b wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x67c24908 wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6b18e567 wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x84c8bc8c wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8b116a70 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x915591e2 wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91da5146 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9320cde9 wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9dd20f5f wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbc0d6623 wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbeec00bd wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc08946a0 wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc11f578d wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc3f2e0c5 wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc544925a wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcd18434e wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd34a05bb wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdc9a5a32 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdea5052c wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdef219f4 wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xec14d3c0 wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf7362038 wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfff892b8 wl1271_ps_elp_sleep -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x4c4a67de mei_phy_ops -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x7c0d2b51 nfc_mei_phy_free -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x9092d8c9 nfc_mei_phy_alloc -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x4f6f4a13 nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xbc5c58ab nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xc28ca0cb nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xfd4dffb9 nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x069b6641 st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x0d9e7ae3 st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x1b67c1af st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x240216a2 st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x291cf68f st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x3de97caf st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x70b1ba6d st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf251f786 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x12cf6512 ntb_transport_unregister_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x6a9a3443 ntb_transport_register_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd84c8828 ntb_transport_create_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x121e45a6 nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x20976152 nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x36ec8a8a nvmem_device_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3aa12eee nvmem_register -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x68758fda nvmem_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x747503ef devm_nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xb87f27d5 devm_nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc96fb674 nvmem_device_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xccc422c3 devm_nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe18960ba nvmem_device_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe9a7fe16 nvmem_cell_read -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x2c2028d7 intel_pinctrl_probe -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x515d28bd intel_pinctrl_remove -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x54efd494 intel_pinctrl_resume -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0xc2582926 intel_pinctrl_suspend -EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x316f5de5 asus_wmi_unregister_driver -EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x959db485 asus_wmi_register_driver -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-rbtn 0x51552fca dell_rbtn_notifier_unregister -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-rbtn 0xa060fe7d dell_rbtn_notifier_register -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_ips 0x46809fa9 ips_link_to_i915_driver -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x56235c72 intel_pmc_ipc_command -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x75068282 intel_pmc_ipc_raw_cmd -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xdea07053 intel_pmc_ipc_simple_command -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_punit_ipc 0xa6c87106 intel_punit_ipc_command -EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x232b5238 mxm_wmi_supported -EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x61cdf799 mxm_wmi_call_mxds -EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0xe26032eb mxm_wmi_call_mxmx -EXPORT_SYMBOL_GPL drivers/platform/x86/thinkpad_acpi 0x706cdcef tpacpi_led_set -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x3ecf6cfc wmi_install_notify_handler -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x64ebe677 wmi_query_block -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xa9b7afd8 wmi_set_block -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xb5a6ebe2 wmi_remove_notify_handler -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc5e3dddf wmi_get_event_data -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc9d4d6d1 wmi_has_guid -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xe2426710 wmi_evaluate_method -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x111812ae pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x687a7015 pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x90f45a41 pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0x6365870a pwm_lpss_byt_info -EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xafcf8794 pwm_lpss_bxt_info -EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xb0a94ebb pwm_lpss_probe -EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xb563cdb0 pwm_lpss_remove -EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xc34d815f pwm_lpss_bsw_info -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x257e8127 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x41d665de mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x4795c231 mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x53286f5e wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x7349c784 wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa2fda085 wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa96a6359 wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd007c115 wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf2012ab1 wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x85ee846e wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x016b6f9f cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x02b56792 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0f80d87d cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x11641e75 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x15875cdd cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1cfee021 cxgbi_ddp_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2041363a cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x24cb64d5 cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2c4a8d61 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2fcec15a cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3d5a950a cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x444a47ad cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x489d1477 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4f0929fc cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4feddafc cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x50837494 cxgbi_ddp_ppod_set -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x568a8f4a cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5b4325dd cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5c753012 cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5e0b1b97 cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5ecadc9a cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x65f6f197 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6b310363 cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6baef32e cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7937360b cxgbi_ddp_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x810c36b8 cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x867149a0 cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x86e07bfc cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x871d054d cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8e924ffa cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x98d1b24b cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa06a7a90 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa5aec778 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xae47a28d cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbd6685e9 cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbfa7f84c cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc6a93bd8 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc84e1bd4 cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcdac5c82 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd96f77e5 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe7a14654 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xec6a8a5a cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xed7d78aa cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xefa9b555 cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf4edde73 cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf66998a8 cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1a2bd0aa fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3149434a fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3daeeaae fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x47dc33d4 fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4b6f8c8c fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x65ea0665 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6bc7d5ab __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x75ff2a4a fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x82e6c6b6 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9d264cc9 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa83d421b fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb7c9b1af fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc5b1cbb1 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe595a687 fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf54ccaa2 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf8c695be fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x43298f83 iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x6a1993ea iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x829821ac iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xcf140147 iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xdf23addd iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe618f59f iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0bbf372f iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x11bdc66e iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1516ec9d iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x223b8d2d iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2553d5d1 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x27cdd1cf iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2ccbc985 __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2ce39237 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x39456b36 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x39541cf8 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3d72adee iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x40d08bec iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x51410fae iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6bda9ae3 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x725a2ee6 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x74d8e42f iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x77af1991 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x783c5cae iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x83284775 iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8b129473 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9a8cfb80 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9d756748 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9dd1451d iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xafe06c30 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb46f558d iscsi_eh_target_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbe725c82 iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf23342f iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc319e2d2 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc3f1af3d iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc648e38f iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcc2bb193 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd37ba36d iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdb28c5b2 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe63ecb0a iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe9ab5c2d iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xed710eb4 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf19af50b iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf5fa5edf iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf6fc9116 iscsi_conn_queue_work -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf8632532 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfb928508 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfde2875a iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x388a39db iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3abc1781 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3dfbfc40 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3fd4969a iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x49d6e93e iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5b7cc1cf iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x65e57538 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7cb1186b iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7d2684d4 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x87a5ccf0 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x87a857b2 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x915eca54 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xad4ce8a2 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb98ff1aa iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd1cf87ce iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf51d0112 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf5826766 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x038303e8 sas_eh_bus_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x07c3c5e2 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0c8b054b sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0d915da2 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1f807d49 sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2bbb0306 sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x36fe39fd sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x387c466f sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3d53666d sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x52427a06 sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5b61b5ad sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5ff500f1 sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x628b7dde sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6a379d97 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x85287707 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8bcfdc87 sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x90d75b56 sas_domain_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9a8447fd sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa826f9b0 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xae50dad4 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd422d476 sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd5bcedc4 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd76eb663 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf650fc16 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x20ba4443 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x23008933 iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x28490ce8 iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x319ee775 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x31bf8dfc iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x31fa1659 iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x32da9e5f iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3a7d4dd8 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x40013d0a iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5384c974 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x54fb567a iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5f5f6b37 iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x70864bc2 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x797f5fd5 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x903cb246 iscsi_is_flashnode_conn_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x929b7153 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x980aeb1c iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x982a4bd9 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9deeb0a1 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa65c82f2 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa9f42fe iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xacb3a45a iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb2c26f11 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb3b051f0 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb95edb58 iscsi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb9859955 iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xca745a78 iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4e90c4e iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xda6c113c iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xde8fb284 iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdfc6eb8d iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe00e21d3 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe0aa9ade iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe66aa7f7 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe8d973f6 iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeeb27fcb iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xef646c0b iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf4a8e093 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfaa65f7c iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfc662a7a iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x37279f30 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xa1e0ae3a sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xb8e2ef35 sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xeb4a7204 sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xb81e84f0 spi_populate_tag_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x45123279 srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x5b5cce38 srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x9297aecd srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x9c45349d srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xc06faa0d srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xfd54d1e2 srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x06dbde84 ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x2a04e685 ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x4b0ae493 ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x69d19304 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xd666ef60 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xe0fda755 ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xf69ebd10 ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x004693d9 ufshcd_pltfrm_runtime_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x36bcdcc3 ufshcd_pltfrm_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x4fd1a2fe ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x5ac201ff ufshcd_pltfrm_runtime_idle -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x72ad291c ufshcd_pltfrm_shutdown -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xae6b18e7 ufshcd_pltfrm_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xca5da82b ufshcd_pltfrm_runtime_resume -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x4b8d0dbf spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x6138b1cf spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x6754dc36 spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xdcbed487 spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xf2c57180 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x054c7f6c dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x96422db3 dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xa25a1114 dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xf8f49520 dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x159998a8 spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x31ef6137 spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x65cf6dfa __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x72140ea8 spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7700d946 spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7e04fd21 spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x82fa6888 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x844ed872 spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8a901752 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8ea4bea8 spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb111c7b5 spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb6743aa7 spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb79f7ff0 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbdb560b2 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc472df3c spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc599e8a3 spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe7a23343 spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xebcb51d9 spmi_command_reset -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xe1c59a8b ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x042a02bf comedi_dev_put -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0735a870 comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x101b50a6 comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x15d076f3 comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2628e6d6 __comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x292c454b comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2d2dbd95 comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x568f6d3c comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x585c25c1 comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x602967e1 comedi_timeout -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x61d92331 comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x65a90d75 comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x695d2038 comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6efc9248 comedi_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7781bf24 comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x79b38283 comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x88f03ec8 comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8b6964d9 comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8bda787a comedi_event -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa043f446 comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa3645e3c comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb53dfbef comedi_handle_events -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb60525b6 comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb8ffe95b comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc269b147 comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc50c3702 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc77bcb4e comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdf53d3c4 comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe07105c1 comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xed73e31d comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf030ec17 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf1284912 comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf4752e5d comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf5ecbb2b comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf9768cf0 comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x162f0751 comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x6fbea797 comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x914d149b comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xb47efe88 comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xc8d17e01 comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xcf1fd9c7 comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xd1041683 comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xf845dfbd comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x30a20c67 comedi_pcmcia_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x30b0d420 comedi_pcmcia_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x636f25a3 comedi_pcmcia_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x779881b7 comedi_pcmcia_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x8f4d99c9 comedi_pcmcia_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xa934c7cb comedi_to_pcmcia_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xbadd6353 comedi_pcmcia_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x0234ad89 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x0d94dcce comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x5a0650d0 comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x76784348 comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xd68bfbd8 comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xdc83d5f5 comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x60879bbd addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x84ec4313 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xf3f8680c amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x7f37577a amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x18feb0c1 comedi_8254_load -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x640e7382 comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6b33a7d2 comedi_8254_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x889a2661 comedi_8254_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x8a27f64b comedi_8254_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xa2409fb3 comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb5a642f7 comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xbdce3d45 comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xd029af1e comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xd1bd1f16 comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xec350212 comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xfb575a97 comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xfc87ed5f comedi_8254_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x12f3ab2c subdev_8255_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x31fd6fbb subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x5bdb5ff9 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x0d68fcd9 comedi_isadma_poll -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x18589fae comedi_isadma_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x6815a033 comedi_isadma_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa3d01a85 comedi_isadma_program -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa7ebb8a3 comedi_isadma_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x39b8403d das08_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x01fabff2 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0667afcd mite_prep_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x1ef03aa7 mite_dma_tcr -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x21eed8a3 mite_done -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2fa0bfe2 mite_free_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4d878fa1 mite_bytes_read_from_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6080aa8c mite_bytes_written_to_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x66cab54c mite_sync_output_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x69eb26b2 mite_get_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7225af25 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x799e5f5f mite_release_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9750981e mite_setup2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x98de80b9 mite_bytes_read_from_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa07272f8 mite_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb3d86b78 mite_buf_change -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb5d9a594 mite_bytes_written_to_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc42719a5 mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd4638671 mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe7e4a1ea mite_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf959a991 mite_sync_input_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfcc36dd5 mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x18034ef1 labpc_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x8b4bb574 labpc_common_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x1b2e8a73 labpc_free_dma_chan -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x5d351745 labpc_handle_dma_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x636af58a labpc_setup_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x63f04c92 labpc_init_dma_chan -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x6d56edca labpc_drain_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x042a7aee ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x2ebf0a09 ni_tio_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x41148f98 ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x6f1861e8 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x9c2f0a5e ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xb0cf1499 ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xe90d7386 ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xee76474e ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x39933eca ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x3f143ece ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x9363aca2 ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xa3231cba ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xb4b61e8c ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xd27720d0 ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x09a355bf comedi_open -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x12a277bb comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x223604a5 comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x78ef59c7 comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x80d134e6 comedi_close -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xa3c1ed25 comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xbfe606b1 comedi_dio_config -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xc551c565 adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x017da883 most_deregister_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x1427b972 most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x4a7a98be most_deregister_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x62beddd7 most_stop_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x907476a9 most_register_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x9340a83a most_get_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x9ee62723 most_register_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xb3313761 most_start_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xb79cf30a most_submit_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xbd754ee7 most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xc8be9c9c most_put_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xfee63f5e channel_has_mbo -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e300fbe spk_synth_immediate -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2ab8daa7 speakup_info -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4658d2a3 spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8b3aeb81 speakup_event -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbe16ee31 synth_add -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd2562966 spk_synth_flush -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd8d5c6d6 spk_serial_synth_probe -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd93c3283 spk_var_show -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe0c59347 synth_remove -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xeca89107 spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xf84cbcbc spk_var_store -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xfea1aedd spk_do_catch_up -EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0x621b6b62 int340x_thermal_zone_remove -EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0xf8c2d02b int340x_thermal_zone_add -EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x68b1edb7 intel_soc_dts_iosf_add_read_only_critical_trip -EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x9e80d899 intel_soc_dts_iosf_exit -EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0xa1c1cd73 intel_soc_dts_iosf_init -EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0xb13fdca0 intel_soc_dts_iosf_interrupt_handler -EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain -EXPORT_SYMBOL_GPL drivers/uio/uio 0x25344da4 __uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xc94536e4 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xde39be9b uio_event_notify -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xd99abcf4 usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xfde85212 usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xa9195b35 ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xabf7e8bd ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x3519881e ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x35644a16 ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x55d68d73 ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6240b331 ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xe2ca2594 ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xfdd2c330 ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0a75a0e5 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2c830d57 gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x341e6267 gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x36786169 gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6b25af22 gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x765a8034 gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x83ac8f11 gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8c8442d2 gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8f129ccc gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8fb3a603 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x93de01bb gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9b5b91bc gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9e055571 gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb84e5525 gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd3497876 gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x503bed82 gserial_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x8c812fe8 gserial_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x4f83a2f9 ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x8e9565c2 ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x9f14f0ce ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0108de78 fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0b994e7e fsg_store_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x29892ae8 fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x29c9bf44 fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2b3d640e fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2bd7b6b6 fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x546c7f99 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7de00104 fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8840f330 fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x88bc6ed4 fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x987bc0cf fsg_config_from_params -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa0b3c3d2 fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc73c717c fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc9b85a37 fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1b61c36 fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd468f882 fsg_common_set_ops -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xdb1af29e fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf73e9cb4 fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x05a0cb87 rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x17c86f1e rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2faf8ca0 rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3d06cdc9 rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4e486a79 rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x68f1208b rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6f397aff rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7f145681 rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x925d1d84 rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb6a82145 rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcccb3928 rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xceda2556 rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd0de56d1 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd6ce784a rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf38b1ac1 rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x051d3ea9 usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x19f50a5b usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x279f994f usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2ea79e08 usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x30540742 usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3176ce95 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x38ed5423 usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x41ae11c7 usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x45769dcb usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4db88084 usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4fc434a5 usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x541f1eb1 usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x576847bf usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x600a3083 usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6e805616 unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x72478afa usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7247ad50 usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x75d3f07b usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x76683d9b usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7bf5a20f usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8168464a usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x916bc599 usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9a6a0e3c usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9b67885c usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb2ff1ecc usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdf3df679 usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe01ac0ce usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe3490f03 usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xeaf1f379 usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xebeefd89 config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x18272959 usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1934ee3c usb_udc_attach_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x20dad3fa usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x22336b52 usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2b7781b2 usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2e18e771 usb_gadget_probe_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4622a9e1 usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x799f7fec usb_gadget_map_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4744dba usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb70e6882 gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbda71f0b usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xda67af6a usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe0382555 usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf4643b02 usb_add_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x3db0c486 ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xe522adae ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0ad8c08d usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x346beca9 usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x3da43502 ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x77ea9fda usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x79c3f08a usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe62b4108 usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xea8467c7 usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xee107d25 usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xee6c0b98 usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x73de9a5d musb_interrupt -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x2cd71b4b isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x37afc316 usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1ff85022 usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x34f65fb0 usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4976251b usb_serial_handle_sysrq_char -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4c7ee766 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5bbf6d67 usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x66e140f1 usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8e97a1b3 usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9013f1ce usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9248050e usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa46e34ae usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa4820533 usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa87ae5ba usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xab3d4669 usb_serial_handle_break -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xafec6be6 usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc7827fc1 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe65a3c2f usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xeec73b57 usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf27d02cc usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf9d1adb6 usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfba596e9 usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xff344412 usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x060f3133 usb_stor_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x07f56024 usb_stor_bulk_srb -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0d42abae usb_stor_bulk_transfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2d7f64a0 usb_stor_bulk_transfer_sg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x30878aef usb_stor_Bulk_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x33274156 fill_inquiry_response -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x34c1baed usb_stor_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x574b1dfa usb_stor_access_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5f21ed02 usb_stor_pre_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x72a6f879 usb_stor_disconnect -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x80c27853 usb_stor_CB_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x812ac4b4 usb_stor_adjust_quirks -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x836a65f3 usb_stor_set_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x851c0446 usb_stor_host_template_init -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8a0ce5f4 usb_stor_probe2 -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x91c743af usb_stor_ctrl_transfer -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa3aa6f48 usb_stor_reset_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa6ed31b4 usb_stor_Bulk_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xaaeab986 usb_stor_control_msg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd1c431e2 usb_stor_post_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd3ac7be8 usb_stor_suspend -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd8fb195d usb_stor_probe1 -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf7cb3954 usb_stor_CB_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xfe2d2b45 usb_stor_transparent_scsi_command -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x310b4828 usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x334d4d98 dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x700dd835 usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7bd4524a usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7cd8ef97 usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x98ebd57b usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa64cda4b usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xad01e782 usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc2f1b95c usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xca94a86c usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xcda40c2b usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xea72da39 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x4fad3ced wa_dti_start -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x527f8f70 wa_urb_enqueue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x52b37e08 rpipe_clear_feature_stalled -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x76108433 __wa_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x910867f7 wa_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x969804ef rpipe_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc543b60e wa_process_errored_transfers_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xe30d18c1 wa_urb_dequeue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf4654c3f wa_urb_enqueue_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x187d61ff wusbhc_rh_start_port_reset -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x2e7a28f4 wusbhc_rh_control -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3e08fda3 wusbhc_rh_status_data -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4548b9fe wusbhc_mmcie_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x483e9f30 wusbhc_handle_dn -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x654a74e8 wusbhc_mmcie_rm -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x8890bddf wusbhc_b_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x92342062 wusbhc_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xabe9e63d wusbhc_giveback_urb -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xba74cb12 wusbhc_chid_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xc364d2e7 wusbhc_b_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe1895bd0 wusbhc_reset_all -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xed3f1fcc wusbhc_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf6306e14 __wusb_dev_get_by_usb_dev -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x1988c60d i1480_cmd -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x80dcec52 i1480_fw_upload -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xd63433f1 i1480_rceb_check -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x0328e008 umc_device_unregister -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x048be83c umc_driver_unregister -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x205e63b0 umc_bus_type -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x2606728a umc_controller_reset -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x2a3b205e umc_match_pci_id -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x3a6469c8 umc_device_create -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xb7ea0773 __umc_driver_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xd9a0d3d3 umc_device_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b8aad57 uwb_est_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x11ba492d uwb_rc_ie_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x125dba35 uwb_pal_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1ec6f1aa uwb_rc_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x246a1af1 uwb_rc_ie_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3da50130 uwb_rc_mac_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3efed452 uwb_rc_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4020f50d uwb_rsv_establish -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4b388fd5 uwb_rc_alloc -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4f54a508 uwb_rc_neh_error -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5c699930 uwb_pal_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6e21004b uwb_dev_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7426ba12 uwb_rc_vcmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7ce657aa uwb_rsv_get_usable_mas -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dcfcd23 uwb_ie_next -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8374946d uwb_rsv_destroy -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8478a261 uwb_rsv_create -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8613796b uwb_dev_for_each -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x89b3d7ff uwb_rc_pre_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x93719c42 uwb_rsv_terminate -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x95068d2f uwb_rc_cmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9e19a28a uwb_rc_cmd_async -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa759f534 uwb_rsv_modify -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb2139ef1 uwb_rc_post_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb5ff0416 uwb_rc_dev_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb8262317 uwb_est_find_size -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbc1a423b uwb_radio_stop -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbc3218c3 uwb_radio_start -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc856bf50 uwb_rc_neh_grok -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc862d070 uwb_rc_put -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd1262b0a uwb_rc_reset_all -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd253b9eb uwb_pal_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdb6dc3cd uwb_rc_get_by_dev -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xde7c0388 uwb_notifs_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe3630d3b uwb_rsv_accept -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xeafcbd07 __uwb_rc_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xeb0f7335 uwb_rc_get_by_grandpa -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xecc9750d uwb_notifs_deregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfa227ea6 uwb_rc_init -EXPORT_SYMBOL_GPL drivers/uwb/whci 0x183e3e9e whci_wait_for -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7f27ef71 vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa729f8a8 vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd0890274 vfio_group_get_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe029e740 vfio_add_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe5b4bc6b vfio_del_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf1e5398b vfio_device_get_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x20f1aac8 vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xc046165c vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x048ca1a0 vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x06833859 vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x12695099 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2a9a9971 vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x32f60b66 vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x408f12b2 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x41ffcf4d vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x45bc7c98 vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4cb96f77 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5163bb0b vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5cb30e14 vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x61ae18de vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x64f85469 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x674aecea vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9b436d54 vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa4a85faf vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xad6e55e5 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbc51823f vhost_init_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc1abf37e vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc468ed1b vhost_work_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc8472bf1 vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd136ac27 vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd4f9fca4 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd853b5eb vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xda3ebae4 vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xda763ede vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe118241e vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe57b82ee vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe986641b vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf29e6cad vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/video/backlight/apple_bl 0x2c63e051 apple_bl_register -EXPORT_SYMBOL_GPL drivers/video/backlight/apple_bl 0xdab0f892 apple_bl_unregister -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x0846049b ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x4fcdf642 ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x65430b44 ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x79a0dc22 ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x8d3e79af ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9c997658 ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa4dc5feb ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x07cd2887 auok190x_common_probe -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x1529429e auok190x_send_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x2bc8195f auok190x_pm -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x3d727676 auok190x_common_remove -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x5e00e141 auok190x_send_cmdargs_pixels_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x76eff718 auok190x_send_cmdargs_pixels -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xa27516a4 auok190x_send_command -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xc285823f auok190x_send_command_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xf533b3a1 auok190x_read_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xfbd5bf3e auok190x_send_cmdargs_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xeb4e79de fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x19ddab1d fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x4677611e fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x6b068eff sis_malloc_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xfa6e4236 sis_free_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x016e6c20 vmlfb_unregister_subsys -EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x90c018c6 vmlfb_register_subsys -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x22a7af24 viafb_dma_copy_out_sg -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x292da7a2 viafb_irq_enable -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x30cc9311 viafb_request_dma -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x31469540 viafb_pm_unregister -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x79e6190a viafb_irq_disable -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xb4f863e6 viafb_pm_register -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xcaefb732 viafb_release_dma -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xe2366dc0 viafb_find_i2c_adapter -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xfff2dfd2 viafb_gpio_lookup -EXPORT_SYMBOL_GPL drivers/w1/wire 0x087f8661 w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x2316654a w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xa3ee7599 w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xbd5a84ec w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0xc136cd68 w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xc340ebe1 w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0xcc76adb5 w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xee1cd931 w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0xfca9036c w1_read_8 -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xe2ef251a xen_privcmd_fops -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x0079de8e dlm_posix_get -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x463bfada dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xaab81cc4 dlm_posix_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock -EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x49d82f77 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4a075b5c nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x857a2f36 nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9cf02700 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb766cdb3 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xbf329733 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd42bf059 nlmclnt_done -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01154a26 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01e2acbb nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x072c0a50 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07feb7dd nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x090ecb8a nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09e49c0b nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a22b72b nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b79576b nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x122e9242 nfs_clone_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15056e92 nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1652b43e nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16d75b7e nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x185df6da nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b609d91 nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ea78935 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x209f7f14 nfs_remount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20bb538a nfs_pgio_data_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x249474e6 nfs_fill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2560af38 nfs_file_splice_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25eb780d nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29e6592e nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a6db670 nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2bcdb7a6 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2bd4adf4 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e8bcaef nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31b14010 nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x342da407 nfs_fs_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x38b6f6ff nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3cb0ac68 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f5ac9e5 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f98b08b nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x402baa95 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40489a04 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4100278c nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x412028ed nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x428f90b0 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46ab0917 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48a29b89 nfs_file_fsync_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a84849e nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ac23023 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ae95df7 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b58ab62 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4bfe0599 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d147b08 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e1b4ea4 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4eeda826 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57c9bdd8 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58027d35 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59a7c6ca nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ca097bd nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5cb59488 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d851bbc nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ef16c76 nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60b5d980 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64b6f7c1 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68d590b6 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b58d134 nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b741e49 nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e1c2e33 nfs_destroy_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f74c03e nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c90e6be nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7cc1cc3e nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7dbf0b85 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f25a2b6 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x807627c1 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83d1b995 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87ca6e88 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89a93a7d nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a2c7e4f nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d460c0c nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9024e11c nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91477d0e nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x921cdb49 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x94b9a51d nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95928275 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9862235d nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98a7696e nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c076496 nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c4a5ffa nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e195d0f nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa42dd04f nfs_try_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa51a5908 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa64aa2a8 nfs_fs_mount_common -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa869d14e nfs_pageio_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa14361 nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab284ee4 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xabad0b33 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae596ba9 nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaefd6d88 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0ffee9b nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb2be0778 nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8735097 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8a04d80 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb912d08d nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba80c4d4 nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe81d79f nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7b4870c nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8a1d045 nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8a540f7 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc90c4657 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9c628c0 unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca01ecc8 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcbf68e90 nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc10846f nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce09b742 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3313156 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8168740 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda0f22bf nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd68c638 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf3bc4c1 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdff559b9 nfs_set_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0a714e8 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9922e11 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xecd2dab9 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3702ace nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf390f361 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5f390b0 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf78ad140 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7c857eb nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7f556e2 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf87e05f2 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf91ad0c6 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9950f6d nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd1962b4 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe19f420 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff7f4a0f nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xeafdf91f nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x00906296 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02858046 pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0382674d pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x083c6de2 pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0c421936 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ce68458 pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18c54545 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1911f9fd nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1ea84945 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x225d08b5 _pnfs_return_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x26bcfe97 pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x286e7a87 nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2bef8de6 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2db2673c pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2f25da08 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x358658bd nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x35b5d6a4 nfs40_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x400f073f nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x41a8af76 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x469c5e59 nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48cddcb6 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x54ef644e pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5dbe26c0 pnfs_put_lseg_locked -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5edd7f84 __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5fb9ef84 pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6312cbb2 pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63ad7acf pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x68d24b6c pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c12b8d0 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7285df96 nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7d4caacb nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7dcf2536 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7f9f74d5 pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x816248e8 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x855affd7 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c75e9f7 pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8f499d23 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x91a1131c pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x91aeb713 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x93206ea8 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9530bbf3 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9774f6f0 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9e8af5be nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9fc703fb pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa3dd7cda nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb1a02a17 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4c07caf pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb6621260 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb9edd3bf pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbaf024a5 nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc63860a pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbed359cc nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc047c510 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc669308c pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcdd5ead7 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd576bffd __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdcd466fb pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdde40254 nfs41_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdee45a7c nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe8d2cdc2 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed7eafc3 nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1e6d6c5c opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x32dc907e locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x61d62c0f locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x20978fe0 nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xc65a459f nfsacl_decode -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1cb231d0 mlog_not_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x23382d8a o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x419d480c o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x8d31bc39 o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa9f5379a o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbebf2e18 o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfa93afc o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc85823d1 o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf9492c93 o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x39cebb57 dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x48d7bdd1 dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x5330e568 dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x734b84d5 dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7f1dce53 dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x84ed6d52 dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x89ae48d9 ocfs2_plock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe540588a ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xf82c0181 ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq -EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures -EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats -EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb -EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random -EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait -EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop -EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end -EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init -EXPORT_SYMBOL_GPL kernel/torture 0x7cf8a6c3 _torture_create_kthread -EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init -EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin -EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin -EXPORT_SYMBOL_GPL kernel/torture 0xd9eefd1a torture_shuffle_task_register -EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init -EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end -EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init -EXPORT_SYMBOL_GPL kernel/torture 0xef6b0da8 _torture_stop_kthread -EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping -EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress -EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress -EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch -EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch -EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch -EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x0ee77bd9 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x68d7e051 notifier_err_inject_init -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x021957e1 raid6_datap_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x0f8a2742 raid6_2data_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xd4cb6873 raid6_call -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x201d8ea3 encode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x29fa419f decode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x57861324 base_inv_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x57d39367 base_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x882ce5fc base_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x9e0112d0 base_inv_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xaedfbb15 base_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xc8fca8a6 base_inv_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xd11741a1 base_inv_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xe3d900b5 base_old_false_key -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xba76a5cc lowpan_header_compress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xde1abafc lowpan_header_decompress -EXPORT_SYMBOL_GPL net/802/garp 0x05112c0d garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0x16f3ff12 garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0x839464a6 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xbc8a3887 garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0xc4c03c8b garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xd14b8ee2 garp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x14bdab20 mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x3d90cad7 mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0x674c3d8f mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x7c1d5f88 mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0x9f832427 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0xa7547d5c mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/stp 0x0444d3f1 stp_proto_register -EXPORT_SYMBOL_GPL net/802/stp 0x2522eab3 stp_proto_unregister -EXPORT_SYMBOL_GPL net/9p/9pnet 0xc66e3405 p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/9p/9pnet 0xcd696895 p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier -EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier -EXPORT_SYMBOL_GPL net/ax25/ax25 0x94ca4f51 ax25_register_pid -EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast -EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0c679a2a l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x2485caab l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7cd24f75 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x95794ab3 l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xbf1f19e6 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xce3a639b bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd6d036ac l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xff04067d l2cap_chan_send -EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable -EXPORT_SYMBOL_GPL net/bridge/bridge 0x12aef5af br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3709654f br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4db9ae9c br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4e26a06e nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x59d897ea br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7b71ffe5 br_deliver -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9fa97836 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd77b0860 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x27c2c17d nft_bridge_ip6hdr_validate -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x3900db5d nft_bridge_iphdr_validate -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0a59d97f dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0f34b412 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0x11da303d dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x134c09d6 dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x23672cd0 dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3871c4c4 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x463b9ebe dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x464d290d dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4c6167a2 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4e2d4d99 dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x519a23bd dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x548c1155 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x68be465d dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6e057a1a dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7733679f dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7b0151aa dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8047276a dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8556f51c dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9106e0c6 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9bcaa6ab dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa6ac738c dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa76a4aa2 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb26c7032 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb50f119e dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc69c0e7f dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc91045d2 dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0xce926b49 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0xda01bd9c dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0xda4405c2 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xda530d3c dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xdc7eba9e dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe3f6559b dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0xed4473e6 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0xed9b6bc3 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4bd6bc77 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa192a097 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb315fc4f dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb87e72e2 dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc7693bc1 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf4f56ff9 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x33718197 ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xa910bcc1 ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xdefa5e8d ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xea6769b8 ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ipv4/gre 0x65de1bd7 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0x9544a0b1 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x032e684c inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x0db9fbe3 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x247a95ec inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4171e380 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5a4a1fdd inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xbe8e8dcc inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x8ca15fb1 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x07d8a1fd ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x12923fc3 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x22781916 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x29b17b82 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2fbdc33e ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x33a6680c ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4a77223f ip_tunnel_ioctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4e6ee18e ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5e312848 ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x900bf5df ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa92d9aff ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb0b21f05 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb1b51833 ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd78a794e ip_tunnel_delete_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xea46fe50 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x5a2eac92 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xff14a1b6 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x509b742b nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x0eadadee nf_nat_ipv4_local_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x96745352 nf_nat_ipv4_in -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xbc9f6b85 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xdb3b6cd4 nf_nat_ipv4_out -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xeb1cb449 nf_nat_ipv4_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x11db0fbf nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x4e02430f nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x7b2d9f17 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x997c56be nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc7367d99 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc8c06bde nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x466d9370 nft_af_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x0091e6fe tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x0b35283e tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x277f0839 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc14c0324 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xe9cad06e tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x189872c0 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x3f9ab676 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x44da0c8d udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xbeba8625 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x3f064942 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x5c8610d3 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x8c73d167 ip6_tnl_dst_init -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xa6b818a8 ip6_tnl_dst_get -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xaa25d498 ip6_tnl_dst_destroy -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xe865369d ip6_tnl_dst_reset -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xfb1251fb ip6_tnl_dst_set -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x603cea3d udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xd44911eb udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x81bef9ea ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x504b67fe nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x633c8938 nf_ct_frag6_consume_orig -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x401b06bf nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x16ea7acc nf_nat_ipv6_in -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x65f58690 nf_nat_ipv6_out -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xdc8650ee nf_nat_ipv6_local_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xdd22daea nf_nat_ipv6_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xeaebc007 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x4be0be02 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x5ee51b63 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x731127ad nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x734518b2 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc6b09f8c nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xfd45a619 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x21ef6260 nft_af_ipv6 -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0ad27f0e l2tp_session_find_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0e63a616 l2tp_tunnel_closeall -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1ac0f543 l2tp_tunnel_find_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x30272daf l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x65eb4c5e l2tp_session_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x69ac5fd1 l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6c1690d2 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6e828504 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7e3ffe0e l2tp_tunnel_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8a7e96ee l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xafca2411 l2tp_session_queue_purge -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb709e1a6 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc6f87a2f l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc98cd7c8 __l2tp_session_unhash -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd2239d80 l2tp_session_free -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe43d1df5 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x377b28ca l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x33afd28d ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3ca21d60 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x667029bd ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6b9da9bf ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7ea8d467 ieee80211_iterate_active_interfaces_rtnl -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7ee79d76 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8e595a16 ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8ea67951 ieee80211_set_key_tx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9c1355b8 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9f6ef102 ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa0dc77a8 ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb9d6c602 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc402a581 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcb30ced9 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe652dc39 ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xeb5cd4ce ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xebdf8959 ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfad07f7b ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x40cd5301 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x419e9fdd nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x9f8b1687 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xff233702 mpls_dev_mtu -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x061814b1 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x078ad0d0 ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1aed206c ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1af9ce2a ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2e59359a ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3a4917b7 ip_set_get_ip_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3e5308a4 ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x43b4eecf ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8c0314ab ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x98ed47eb ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9a70ad6d ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb2c3c10d ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xca033786 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcab3e2a3 ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc899373 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfa54cdde ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x3a64d639 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x84687998 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc55598d6 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xff42a190 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x01a9ef22 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x05661616 nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x05cb080e __nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06a6d496 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0b147b21 nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0b1b53a3 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1497885b nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15715fcc nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x16d0c7d7 __nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1780fe4d nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x19f38411 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1d3ff2ce nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x254d20d5 nf_ct_expect_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x26ca626c nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3530ff85 nf_ct_l3proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3830f280 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b8b21a6 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41afcb2c __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x449c6a4b nf_ct_l4proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44c75a05 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x45960ed6 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x46bce96e nfnetlink_parse_nat_setup_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4c4ec322 nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4d680626 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4eb28a19 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5013e429 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x54b34473 nf_ct_get_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x54de570d nf_connlabel_match -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x56985763 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x57336049 nf_ct_iterate_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5771de25 nf_ct_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5828192b nf_ct_l4proto_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x63d1d4e8 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x67119656 nf_ct_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x69a0db11 nf_ct_l4proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a18dc58 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6fdb98ec nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x791fdf11 nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x84f13da4 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8951b2f1 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9038ffee nf_conntrack_l4proto_udp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x942ede76 nf_conntrack_l3proto_generic -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x97fa3e81 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x988d35f7 nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c1c820d nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c3e6be0 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9d196bdb nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa14160de seq_print_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa17ba548 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa20e9d6c nf_conntrack_l4proto_udp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa4635a05 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa54b98dd nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa9b8ec83 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb1bb25ba nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb1cd2b4f nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb41e710e nf_conntrack_set_hashsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb44c41ac nf_ct_l4proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb5560ea2 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba2254bf nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbaee49be __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb2acd7f nf_ct_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc78a305 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbdfb2804 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbebd2e53 nf_ct_l3protos -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbf7593aa __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc01804f5 nf_conntrack_l4proto_tcp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc229829c nf_ct_l3proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc3a11848 nf_connlabel_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc49767a6 nf_ct_expect_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc9bddc9d nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc5124af nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcf716340 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc9bb963 nf_ct_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf5cbd67 nf_ct_l3proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf09716f2 nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf22e6677 nf_conntrack_l4proto_tcp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf505173a nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf68cfc56 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf6d54e67 nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf9d43285 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x01520c69 nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xedec5ab5 nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xae07bd29 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x09558d29 set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4a33bdd9 nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7bdffc94 set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8395c80d get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x9bd455e2 set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa6d4555d nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa735bc5a set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe6069b26 nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xeb974be8 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf3af248c nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x04f21b3f nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x1a2675e0 nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x23c6d719 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x3ed44fc0 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x61dc2a81 nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xd527db91 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xf9a98d17 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x061fe376 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x18d0c266 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2adf53b9 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x33f1edef nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x560e5984 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xdd3051f6 ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xed655039 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xb285139a nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x7ef6a444 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x356cf550 nf_log_dump_udp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x3864ddc4 nf_log_dump_sk_uid_gid -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xefd39e1e nf_log_dump_tcp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xf728422f nf_log_dump_packet_common -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x058cead7 nf_nat_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0c8ba6fe nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x45ab5fe0 nf_nat_l4proto_unique_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5af8346d nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x84cd39f3 nf_nat_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x85766c76 nf_nat_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x97c39aa9 nf_nat_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9882e72c nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb0a9bd8b __nf_nat_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x224deef0 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xbd18e948 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x57974401 synproxy_tstamp_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8841d39b synproxy_build_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xdff5186d synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x05978faf nft_unregister_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x08104244 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0f8ee19f nft_register_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x15cddf02 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1d3e364f nft_validate_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e7eb118 nft_register_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3c47404a nft_register_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x61aa803f nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x625a8f82 nft_unregister_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x67ee4b41 nft_set_gc_batch_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6f9f566e nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x70f18557 nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa9f51ef1 nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb1995982 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc22031f2 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd9de96b0 nft_unregister_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfdbf608d nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x411eb455 nfnetlink_alloc_skb -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5a3dd2ae nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x795207d5 nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa31d4e93 nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xb87f8566 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd10c634e nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xea4a4c77 nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x296bda10 nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xc6baf0ea nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xd0e2292d nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x453a8c9f nfulnl_log_packet -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x2e5cdb0b nft_masq_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xaebcc776 nft_masq_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xd2f07201 nft_masq_init -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x43afb35f nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x54d40a21 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x64b4d6f1 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xeabc972a nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xeee6c1e3 nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xf6e465d5 nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x68b81f0e nft_redir_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x6f878412 nft_redir_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xb224d6a7 nft_redir_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x2fe0d828 nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xd787eaa1 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x13918fc2 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3ea44fff xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x56ebcf47 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x76ba73f6 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x79e65cdf xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7aac840b xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8ae62bb0 xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8c87eb02 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9da4116d xt_hook_link -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa12e9d3f xt_hook_unlink -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd09c15b3 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdb3253d3 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdc81b731 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf58891b4 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x4c32c169 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xb7459345 xt_rateest_put -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x1b23fb74 nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x307e61ec nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x58264432 nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x22b6ea12 nci_uart_unregister -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x268be254 nci_uart_set_config -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xd5cf6079 nci_uart_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3832a14c __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x48539c5a ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x486928f1 ovs_netdev_detach_dev -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x82859523 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9a3b976f ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc36a2059 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xcb0a6529 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd6a41211 ovs_vport_deferred_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe6a89d58 ovs_vport_receive -EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x17c57f65 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x1d93eba8 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x227430b4 rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0x22f6eb5e rds_send_get_message -EXPORT_SYMBOL_GPL net/rds/rds 0x26c74486 rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0x27820cb2 rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x42e1c8ca rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0x48c81306 rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x56a1d0df rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x5da930e1 rds_page_copy_user -EXPORT_SYMBOL_GPL net/rds/rds 0x5dbde50d rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0x6f4a96bd rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x7a210042 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x7b42b55f rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0x7f3d478b rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0x866c8669 rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0x9662a43f rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xb3a7aff1 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0xb4d7464e rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0xb5cd378c rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0xb7627742 rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xbe81119e rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xdbb12b23 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0xde673448 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xd6d6048a rxrpc_unregister_security -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xf8b73b7f rxrpc_register_security -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x199fa16c svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x4a1b6e3d gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf70a1874 gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x018da503 xdr_skb_read_bits -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01fd7a3a svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05c56b07 svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06e4c6bf xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07e8716a rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08453e6f xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0886ad50 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09590581 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a979576 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bfa2267 rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0eb66c33 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ec45c76 csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10cdf7d1 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12c6ab82 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x148f0f40 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1730bf65 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1832fe53 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1852d8a3 rpc_lookup_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ea0b15e rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f908253 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20c6b4cf xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x218c5a3a xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28eeb384 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x291ab988 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a7e9b4f rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a953a69 rpc_lookup_cred_nonblock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2cde4576 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f1ed7e1 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f441f93 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3082aaaf rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31b5fbcf svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33eea8c0 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x346c3f6e rpcauth_key_timeout_notify -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x350508b8 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x352b5699 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x354eea4a rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bbe9ea7 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c46572e rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e85852f rpcauth_cred_key_to_expire -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4146d3e0 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x437124b4 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x452e94dd rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45680096 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4587454d rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x464b9e00 xprt_lock_and_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4659be0b rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4683f1c9 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47e6d964 rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a13aa0e svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b4e3d94 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bfe67f7 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d56389a xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e007101 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ec8d49b svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ece162d cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f610556 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x504ba1eb rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50cf9bcb svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x512e1c1c xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x536e774d svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x575dd5fc rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57736150 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5803d960 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5aacc443 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c87bcf2 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cdc7756 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x606223ec read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6087818a rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x629b6aef svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62fd3343 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6315ef4f rpc_get_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6348bdd8 rpc_print_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63d3ceae xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6452aefd svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69e3d9fb rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bd6576f rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cebfc4a rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6da59503 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e729a43 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e9aef33 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fcf831d rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74e378b6 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x751604f6 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75914404 rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x760214a2 svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7755c6ab xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7846b3ad svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7879c03f xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79ee6ed2 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79efed70 xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a797834 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b52a163 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c5b3561 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c98e56a svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c9e022b rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d1cb8dd rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x800ce86b rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8063f144 svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80a906b7 rpc_protocol -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81bfa6db rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8226984d _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83ab5a06 xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8481d999 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85e8578c rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x864cfd89 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x869060e2 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x872539f1 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8739599f bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x876e931d xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b582404 svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b896a13 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8be8b02d xdr_set_scratch_buffer -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c87fcee xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cd8cb56 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e381ca3 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e520842 xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ed7a0a7 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f8bac0d svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x907c9b1f rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x915093b9 xprt_set_retrans_timeout_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x948b2197 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9561d454 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x971d0375 svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97cdcd80 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99a2b1e0 rpc_lookup_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99a4b690 xdr_partial_copy_from_skb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a55e0e3 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b5dc959 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1221180 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1417df9 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae39846a xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf981539 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0f6358e svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb290f37f rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb30ab4a3 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3345d50 cache_seq_stop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4431afc rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6ff1090 svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb78a5770 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8d29137 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9ff9cb3 rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba35bb46 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb28b58f xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcf7024c cache_seq_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcfa1610 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd6122d7 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd6cd91e rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd8ce435 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf3b33cd svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf45e189 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf491173 __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbffe2049 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2d20afd xdr_buf_read_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5b13059 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5c0f09d rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc63b36f4 rpc_rmdir -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc644716e svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7c81375 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc88bb122 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd038b2d7 xprt_set_retrans_timeout_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd096abc9 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd14c8eb9 rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4192ca6 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb1661fc svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb7e5854 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd53cbac svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddba6ade xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde6173c6 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0c7ae8e rpc_task_reset_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe13216eb rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1487c66 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe16f1751 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe280b1f4 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5c304d1 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe63cb7f0 cache_seq_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6555479 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7ce492c rpcauth_generic_bind_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8ab45a3 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebd37e0f svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebd5b4a9 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebdac125 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecb11de9 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecee3800 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed23e58e svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0984765 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf17e59ea rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1cdccff svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf28c73df rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2e83bde xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4c3f316 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf51c3536 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf80d4c02 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf89683c5 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9160a05 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc21567e rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc66cb21 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc69299e sunrpc_cache_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffc32fc7 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0fbedb92 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x36192147 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x438ce3f8 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b39af19 __vsock_create -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59f8e7ea __vsock_core_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x74e91915 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x826bb2b5 vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x82e8f35b vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8ba0209a vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8c878c2e vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8d2c1884 vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcd75c921 vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xddd2d783 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xde69aecc vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf593c40a vsock_pending_work -EXPORT_SYMBOL_GPL net/wimax/wimax 0x39c3bc45 wimax_dev_init -EXPORT_SYMBOL_GPL net/wimax/wimax 0x4334b088 wimax_report_rfkill_hw -EXPORT_SYMBOL_GPL net/wimax/wimax 0x585f1c07 wimax_msg -EXPORT_SYMBOL_GPL net/wimax/wimax 0x65195faf wimax_state_change -EXPORT_SYMBOL_GPL net/wimax/wimax 0x8163dac1 wimax_msg_data_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0x87e3e051 wimax_msg_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0x89a59ee2 wimax_msg_send -EXPORT_SYMBOL_GPL net/wimax/wimax 0x9e1049a0 wimax_state_get -EXPORT_SYMBOL_GPL net/wimax/wimax 0xab412a7b wimax_dev_add -EXPORT_SYMBOL_GPL net/wimax/wimax 0xbb358b06 wimax_report_rfkill_sw -EXPORT_SYMBOL_GPL net/wimax/wimax 0xc4871b9c wimax_msg_alloc -EXPORT_SYMBOL_GPL net/wimax/wimax 0xe8a44146 wimax_dev_rm -EXPORT_SYMBOL_GPL net/wimax/wimax 0xf04b5a35 wimax_msg_data -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x034cd0ba cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x05160e45 cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2f00be90 cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x35e9f348 cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x366f2ced cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x370d32c0 cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4a1ac8df cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4d69d985 cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5f97114a cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x66fe0a55 cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x70f4a2ff cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7cf76c71 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf837788f cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x12e51971 ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x496e5b64 ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x6526d381 ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xb38dc895 ipcomp_init_state -EXPORT_SYMBOL_GPL sound/ac97_bus 0xe38faac2 snd_ac97_reset -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x1a29c2af snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x1d3484ac __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/core/snd 0x60f9d491 snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0x62b626e9 snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0x7f174698 snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd 0xb6979f67 snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd 0xc7cae0f8 snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0xd08ba3a6 snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0xe724ef9e snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd-compress 0xc61096a8 snd_compress_deregister -EXPORT_SYMBOL_GPL sound/core/snd-compress 0xf36abab2 snd_compress_register -EXPORT_SYMBOL_GPL sound/core/snd-compress 0xf83fc95e snd_compress_new -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x0638581c snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x0dec2aa5 _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x14261818 snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x3730f607 snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5b1a5cdd snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7a88aaed snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x80220f2c snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8ad19174 snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x98901a8e snd_pcm_stream_lock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x09df6578 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2943da7c snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x4c066188 snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x68c99416 snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x87b95355 snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8e68b16d snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9f4119eb snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xab167fbe snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb19d607b snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe66b37ad snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xfd8be80f snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x017ce317 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0baf4324 amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x3ce178d8 amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8c5bf941 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xbd5de420 amdtp_am824_set_pcm_format -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc8f2d9cc amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd899726b amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x105cf4cd snd_hdac_ext_bus_link_power_down -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x18942be1 snd_hdac_ext_stream_spbcap_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1901a100 snd_hdac_ext_bus_ppcap_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x19c4c8b7 snd_hdac_stream_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1c6f55ac snd_hdac_ext_bus_exit -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1d7afe38 snd_hdac_link_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2b25d2dd snd_hdac_ext_bus_device_exit -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2cba92c5 snd_hdac_ext_link_stream_clear -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2f59044e snd_hdac_ext_link_stream_start -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3ec3e318 snd_hdac_ext_stream_decouple -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x42b407f5 snd_hdac_ext_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x50c3b912 snd_hdac_ext_stop_streams -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6226622d snd_hdac_ext_stream_init_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x630b2891 snd_hdac_ext_link_stream_reset -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x73e45ade snd_hda_ext_driver_register -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7a0bd44c snd_hdac_ext_bus_get_ml_capabilities -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8baefc3d snd_hda_ext_driver_unregister -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x96109853 snd_hdac_ext_stream_get_spbmaxfifo -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa39f09bd snd_hdac_ext_bus_get_link -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb3639db3 snd_hdac_ext_stream_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbd11c531 snd_hdac_ext_bus_device_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc1c11308 snd_hdac_ext_link_set_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd01d65d0 snd_hdac_ext_stream_release -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd2ff97e9 snd_hdac_ext_bus_device_remove -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd690efba snd_hdac_ext_bus_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xda9139aa snd_hdac_ext_bus_link_power_down_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xdce454cd snd_hdac_ext_bus_ppcap_int_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xee4ab04c snd_hdac_ext_stream_set_spib -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf23bf7c0 snd_hdac_ext_link_clear_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf2cdc6be snd_hdac_ext_bus_link_power_up -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xfba2271f snd_hdac_ext_link_stream_setup -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xfbe745b0 snd_hdac_ext_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x046aad9f snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x07419e6c _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0fbaa6c8 snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x10fc5a92 snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1302f957 snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1572ccab snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x15dd6456 snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x16d3adca snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x19f3a26b snd_hdac_i915_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1c80ae03 snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1f7c2d4d snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1fa71c13 snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1fe2939b snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2026e619 snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x28377246 snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2978e130 snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2f92c7ea snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b765451 snd_hdac_i915_init_bpo -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bdafcb6 snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3f51a691 snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x470db53b snd_hdac_bus_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x475c4ec6 snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x49e17563 snd_hdac_bus_remove_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4e79ce51 snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4fbdaac4 snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5298d6fa snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x53dbeb80 snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5970220f snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5a85f513 snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x600e973f snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x62f9c85a snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x63ceff16 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x63e04483 snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6828cb67 snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6d60be61 snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6e79ed25 snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6ede75ad snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73187668 snd_hdac_i915_register_notifier -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x737ef407 snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x74693549 snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7857439d snd_hdac_bus_add_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7a744ab7 snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7e5c8355 snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7eb829f2 snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ef15789 snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7f52aac2 snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x823b2875 snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x82b26c07 snd_hdac_make_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x853aad97 snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x866be43c snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x88759925 snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8a3dc705 snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8c18e55f snd_hdac_bus_queue_event -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x906f9931 snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x90943f6e snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9251cb3b snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa3733c65 snd_hdac_refresh_widget_sysfs -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa890fbbd snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaecf63b7 snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf751c63 snd_hdac_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb0161673 snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb14e3f14 snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb1c9acc7 snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb9253a48 snd_hdac_i915_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbdb4d512 snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbf5ff70d snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc43b6248 snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xccd54bc0 snd_hdac_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd1c06817 snd_hdac_set_codec_wakeup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd689e358 snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe7f0caeb snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xea55e527 snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeae90b13 snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xec6057ed snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeff2019e snd_hdac_display_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf05cf9ca snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf6217a71 snd_hdac_get_display_clk -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfd0742d6 snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x102705cd snd_ak4113_create -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x2c67dd29 snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x3093df93 snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x392f0c75 snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x9eac1933 snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xf2ea003e snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04e1bb39 snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x053bfd10 snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05e10d57 snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0894b5ab snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a70039c azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b4c9be2 azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b69dcd7 azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0bc328bd snd_hda_mixer_bind_ctls_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f13ec49 snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1679ad90 snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18585a9a snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1886872e snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19b2e000 snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1a1a9dd6 snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1a4a02e8 snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x239a9147 snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2719efce snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a57f344 snd_hda_register_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ba33b85 snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2c76814c snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x31027239 snd_hda_mixer_bind_ctls_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x339a1b7d snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34d54252 snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a4f9a96 snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b032063 snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d02e917 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d1b4eac snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3dcb5961 snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f5fa2a0 snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x40e359b1 snd_hda_jack_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4467d513 snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x45bf671c azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x469182a2 snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47d01eb6 snd_hda_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x496342c8 snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4db51d32 snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e6b1039 snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e81da88 snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f6f3d8a snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x519fb2f6 __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52fedf4e snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5680f9c5 snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5872a6f6 snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5880da46 snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5966bbd4 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5be09b7c snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5de6026f snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f922b17 snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6069133d snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63bc0fad snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a13c89d snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ff51e0e snd_hda_bind_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x739f28b8 azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7440800c snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74899b88 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7724856a azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7796a917 snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x779c15af snd_hda_bind_vol -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a323d60 azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8128e4af snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x81331c8d snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x81f1bdec __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x85dcc406 azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89527127 snd_hda_jack_tbl_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8bf9a96f snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e298c72 snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x910d9bad snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x92460a43 snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x937a8c0b snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9945180f snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b972fdc snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e5cfc23 snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e7dbf9a snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f6a6081 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f826d95 snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa0e5e993 azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa225d7ce snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa26d379a snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3e20cca snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa66268ce snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa687583a snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa73fbf57 hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac6ff143 snd_hda_jack_detect_enable_callback -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf913bc7 snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb180a8d9 is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb19a8778 snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb279a839 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4c5da1d _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb76cf7f0 __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7cdf9cf snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbb885ece snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc69ddd9 snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd631d62 snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd70fd12 snd_hda_jack_detect_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbda75c1e snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc0270818 snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc224f4af snd_hda_mixer_bind_ctls_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc41b9e07 snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc474fed3 snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7a5a3e8 snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb462d55 azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcbae96e6 snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcd6d9218 snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce69fff2 snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xceb81d9d snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xceefd793 azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf1e8e7c snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf29954d snd_hda_mixer_bind_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0553c12 snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd1159b7b snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8a38806 snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda66475c snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdeca85fc snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf5adc22 snd_hda_mixer_bind_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe301f46e snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea946696 snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeaebf809 snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeec5f20d snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xefb18231 snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xefbe634a snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf26f2c25 query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf5e8cfc9 snd_hda_mixer_bind_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf9c7e205 hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfae70a6d snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x06743fa1 snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x08db1c26 snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0ff422a3 snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1e4aca0f snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x201def1a snd_hda_parse_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x33397e59 snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x33eff8ef snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x418c4f3b snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4aaaa9c5 snd_hda_get_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5344693c snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x66ea840b snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7e4b1bf2 snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x87937cf9 snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8aad29bb snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8af7834b snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8b492b38 snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xaf60b1a2 snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xeb3fa8b2 snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xeca85695 snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf59fe043 snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf99b752d snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x8137f9f0 cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xeb8a3e83 cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x15fab8c2 cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x5f6c7624 cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x16d6bfd4 cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x5bd6ce8c cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcf5e951c cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xc79a5c89 es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xf0d7c9ee es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x927184d8 max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xa7ffa4fa pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xad5c508e pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xafdfbe75 pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xb581556e pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xa7aa810f rl6347a_hw_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xade4bf4c rl6347a_hw_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt286 0x32e38bd0 rt286_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xc836db20 rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x52b1cc85 rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x9b332ef7 rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x42af8e41 rt5670_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x7eaf90a6 rt5670_jack_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x80ab4be5 rt5670_jack_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x921151e1 rt5670_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x32c501da devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x480dc557 sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x76eef0ee sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xc8c500fb sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xd7822d22 sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xabb4c780 devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sn95031 0x0e658761 sn95031_jack_detection -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x163f4317 ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x33e690a5 ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x42f6e8ab tpa6130a2_stereo_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x52445441 tpa6130a2_add_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xbc8492ee ts3a227e_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x163237e2 wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x1f4d9f3b wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x45be46bf wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x4e1ba55f wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x44bda364 wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x4cc2b866 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x7e57e7bb fsl_asrc_get_dma_channel -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xbb7b7695 fsl_asrc_platform -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x30693bb7 imx_audmux_v1_configure_port -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x58631dab imx_audmux_v2_configure_port -EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-mfld-platform 0x406baa50 sst_register_dsp -EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-mfld-platform 0x77755f8e sst_unregister_dsp -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x1e7df859 intel_sst_pm -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x65dcc566 sst_configure_runtime_pm -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x7e62b356 sst_alloc_drv_context -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xab14edd5 relocate_imr_addr_mrfld -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xacd9c6a2 sst_context_init -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xe3762adc sst_context_cleanup -EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x3fab3edb sst_byt_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x4a58656d sst_byt_dsp_boot -EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x99e5bb3f sst_byt_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0xd335e4e7 sst_byt_dsp_suspend_late -EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0xebb0053c sst_byt_dsp_wait_for_ready -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0201d61f sst_dsp_shim_write_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x038eb0e3 sst_module_runtime_free -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0e1e6b5a sst_dsp_ipc_msg_tx -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1b5e8b82 sst_shim32_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x231f203a sst_memcpy_toio_32 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x27aa105a sst_fw_free -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2b604ded sst_alloc_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3169bc5d sst_dsp_wake -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x32f9094e sst_module_runtime_save -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3702d6c4 sst_dsp_shim_update_bits_forced_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3cda9029 sst_module_runtime_restore -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3e5741e5 sst_dsp_dma_copyto -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3f6dc8c0 sst_fw_free_all -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x40ed4239 sst_free_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x44faa927 sst_dsp_dma_get_channel -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x46686c78 sst_dsp_sleep -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4a045773 sst_shim32_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4bdafa3b sst_fw_unload -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4cbd60ec sst_dsp_shim_read64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4df8e5c2 sst_dsp_stall -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4e7a70f7 sst_module_free -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x515311af sst_dsp_shim_update_bits -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x526ed6c1 sst_dsp_outbox_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x55cf3598 sst_dsp_shim_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x59ded2e3 sst_dsp_register_poll -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5b3fb526 sst_dsp_shim_write64_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5c09626a sst_dsp_inbox_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5c7b56e8 sst_module_alloc_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x636d5dd2 sst_module_runtime_new -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x787bcf9f sst_memcpy_fromio_32 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x78d8a56f sst_dsp_get_offset -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7b859af4 sst_dsp_dma_put_channel -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x829b2ca4 sst_dsp_new -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x87398d97 sst_dsp_ipc_msg_rx -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8a2cc0ca sst_mem_block_unregister_all -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8f167165 sst_block_free_scratch -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9458f949 sst_dsp_outbox_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x978cf9c6 sst_dsp_shim_update_bits64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9849ed7b sst_dsp_shim_write64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x991fc3ac sst_module_free_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9d07029f sst_dsp_boot -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9f6abfc7 sst_dsp_mailbox_init -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa5ead2ad sst_dsp_shim_update_bits_forced -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xac2d78aa sst_dsp_dma_copyfrom -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xaeaef971 sst_module_runtime_free_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb9233645 sst_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbad11e38 sst_dsp_shim_read_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbcec5387 sst_shim32_read64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc7f40147 sst_dsp_reset -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc81020e5 sst_module_get_from_id -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xcae0edcb sst_module_runtime_get_from_id -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xcb517ee8 sst_dsp_dump -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xcb9b0bb0 sst_fw_reload -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xcc9ec012 sst_block_alloc_scratch -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd633efea sst_dsp_shim_update_bits_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd9a2c94c sst_shim32_write64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe05740cd sst_dsp_shim_read64_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe579680a sst_fw_new -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xef2e0ed1 sst_dsp_shim_update_bits64_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf0c1f628 sst_dsp_inbox_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf55f3a24 sst_mem_block_register -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf632c8fe sst_dsp_shim_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf75faf42 sst_module_runtime_alloc_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xfe1746c0 sst_module_new -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x0fbb05ba sst_ipc_tx_msg_reply_complete -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x396c99ed sst_ipc_init -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x5233ff1f sst_ipc_tx_message_wait -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x63ab19dd sst_ipc_reply_find_msg -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x6cfa979c sst_ipc_tx_message_nowait -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x76b1df56 sst_ipc_drop_all -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xe16c9089 sst_ipc_fini -EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0xd1f69f64 sst_hsw_device_set_config -EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0xf7c0b447 sst_hsw_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0xf9b0eb3d sst_hsw_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x0e405444 skl_ipc_init_instance -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x2b363615 is_skl_dsp_running -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x61771f7f skl_dsp_wake -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x6982dc08 skl_ipc_delete_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x6c506aa3 skl_ipc_set_dx -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x92aa668d skl_ipc_set_pipeline_state -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x9491e196 skl_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x9b967a5d skl_sst_dsp_cleanup -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xa3232039 skl_dsp_sleep -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xab3fe32b skl_ipc_save_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xc1bcc6c7 skl_sst_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xca537ec7 skl_ipc_create_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xcd76a777 skl_ipc_bind_unbind -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xd17d8a53 skl_ipc_set_large_config -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xef2e7934 skl_ipc_restore_pipeline -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0272962d devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0517e2bb snd_soc_tplg_component_load -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x065a480e snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06b291d3 snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x075e3d1a snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a0487bc snd_soc_add_platform_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c52b13e snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f9b1748 dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x102b18cc snd_soc_lookup_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x134c3bda snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13bd0d72 snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1868155d snd_soc_tplg_widget_remove_all -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1914d937 snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19d23318 snd_soc_tplg_widget_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b2c560b snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c6dd3b3 snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d684415 snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1eb329f8 snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ef0aec5 snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f616559 snd_soc_new_compress -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20538b9c snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x209174ae snd_soc_unregister_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20fd5e1c snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24be5ea5 snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24de160b snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26205736 snd_soc_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x269cc0d3 snd_soc_tplg_component_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26cec547 snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29dcb34b dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b3f7d01 snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2bc548ca snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d8eb5b7 snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e9d1d58 snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x300118e5 snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33025a96 snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x349bbe3f snd_soc_platform_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x37d2ad1e snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c606144 snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ea27fd5 snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3edbe67d snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x421c81c9 snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44e3c455 devm_snd_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x479a58e1 snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48ecc982 snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4af84491 snd_soc_codec_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b18b54a snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4cdc46f7 snd_soc_register_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e144367 snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5489a6ad snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x570c9350 snd_soc_of_parse_audio_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5770189a snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x585b646b snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58dd55e7 snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b6c3cfa snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b9bf670 snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e4326ae snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62097ba3 snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62be0266 snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65151f4d snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x675cd2b1 devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69ddf2ac snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c8bd441 snd_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d3b7306 snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70d9eb87 snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x722b0c30 dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7305fdec snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75987560 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x76136a86 snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77a08a9c snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7aec83c9 snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c13d3e6 snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d60b408 dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e925299 snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x805ab6d7 snd_soc_dpcm_be_set_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x821912ca snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83f33a79 snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84752173 snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x869f885e snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87d5e4b2 snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a0b3c2a snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c5c148b snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90a3c6b0 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92f8fe0f snd_soc_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x969779a1 snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96a74fdb snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x995bcf16 snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a7a1f94 snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9aef1843 snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c358381 snd_soc_dpcm_be_get_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f1d2036 snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2a93406 snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa5c6bfa9 snd_soc_get_dai_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa5d14662 snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6b4278b snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa702a87c snd_soc_platform_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa77e8d79 snd_soc_free_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa891f0a2 snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa5491ef snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xafc6b422 snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb033cec3 snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0bfa975 snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb23fe7e0 snd_soc_new_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb407d308 snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5785f03 snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5e3a625 snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb63045c8 snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7f59aa0 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb980c630 snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9d93e67 snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb4f16b3 snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbbf15dd9 snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd5ea12e snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd687f8a snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc19b33d4 snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc49a1618 snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5b37049 snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc69d412f snd_soc_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb347326 snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc9eeef7 snd_soc_add_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd5ae651 snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf649521 snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd2a11bf9 snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd360aa53 snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3d51c2f soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd4ff2c9c snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5e16503 snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd65629c8 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd65f1821 snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6eb269b snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6f45dcf snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd71f6618 snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9970fb0 snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda1f3d22 dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc500517 snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf5fcac3 snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1c18f38 snd_soc_codec_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe23075fa snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe32cb0bd snd_soc_unregister_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4c625ac snd_soc_remove_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6f54e25 snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe70fb1b5 snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe757aadf snd_soc_add_codec_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8fc4daa devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9cbb85d snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec910f28 snd_soc_platform_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed0f74cc snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf265787d snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3f6d038 snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf435a957 snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5f9a5a2 snd_soc_of_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6fe3645 snd_soc_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfee87d07 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfeea8c6d snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffd19d6f snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x06360461 line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1639115a line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x500911de line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5802102a line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5f979a64 line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x697cbe61 line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x82a9d215 line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x88a910f1 line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9a53d26e line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9e14a46b line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb4b3e6ae line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb762fac2 line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbfa748ab line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc4544669 line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe7a1de8c line6_suspend -EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x08003b2f i915_bpo_gpu_turbo_disable -EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x0d97d346 i915_bpo_gpu_raise -EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x358a54ae i915_bpo_gpu_busy -EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x451432c2 i915_bpo_gpu_lower -EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x7d4de94c i915_bpo_read_mch_val -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x1e678bb2 dot11_pkt_type -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x25efd3cb ven_rsi_mac80211_detach -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x30a68dc4 rsi_hci_recv_pkt -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x320e865b rsi_send_rx_filter_frame -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x42b7a8e6 rsi_send_rfmode_frame -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x437447f4 rsi_hex_dump -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x45ca198c ven_rsi_dbg -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x5209bb98 ven_rsi_91x_init -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x53aff912 ven_rsi_91x_deinit -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x683e53ff rsi_deregister_bt -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x69271153 rsi_default_ps_params -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x74518f80 rsi_hal_device_init -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x7b4f7d6e rsi_config_wowlan -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x8f42bbd3 ven_rsi_read_pkt -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xc310a319 rsi_hci_detach -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xc7f3ad96 rsi_hci_attach -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xd65a8c23 rsi_init_dbgfs -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xf1d6d26c rsi_remove_dbgfs -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x3fe35aea irq_bypass_unregister_consumer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x418873cc irq_bypass_register_producer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x888c5be5 irq_bypass_register_consumer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0xf6e772c3 irq_bypass_unregister_producer -EXPORT_SYMBOL_GPL vmlinux 0x0008e843 of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x001138c2 od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x0019908d __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x001d2285 ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x0034f3b6 xen_has_pv_nic_devices -EXPORT_SYMBOL_GPL vmlinux 0x003d8cae wbc_account_io -EXPORT_SYMBOL_GPL vmlinux 0x004643ec device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0x0053b7ae ata_acpi_stm -EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x006a27e4 ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0x006d152a page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0x006f9f14 shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0x00816f91 __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x00866735 input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0x0087421c spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0x00891d1a serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0x0093d1a4 devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x0099c470 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x00a393cd regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x00a43998 tps65912_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x00aa10e0 usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before -EXPORT_SYMBOL_GPL vmlinux 0x01072c15 crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0x011ca14a device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish -EXPORT_SYMBOL_GPL vmlinux 0x0137a2f5 device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0x01659ad4 edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x0170cb6c efivar_work -EXPORT_SYMBOL_GPL vmlinux 0x017f65ee sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok -EXPORT_SYMBOL_GPL vmlinux 0x018a449a sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0x01a4cf08 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0x01ab9f8b policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0x01c8c392 sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0x01defb29 ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01e56d65 scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0x01edd296 da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x01f9f198 efivars_unregister -EXPORT_SYMBOL_GPL vmlinux 0x01fac906 acpi_processor_get_performance_info -EXPORT_SYMBOL_GPL vmlinux 0x02195cd9 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x026d8774 inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x027bd98d disk_part_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x02a67d5e irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x02cb019e crypto_givcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x02db60d6 usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0x02ef1636 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0x02f31a84 adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x0325e576 sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x034477b3 ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0x0358b0cc dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0x036cc216 xfrm_inner_extract_output -EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0x03e0f7d0 rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode -EXPORT_SYMBOL_GPL vmlinux 0x03e8a35b perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0x03f3c7e2 dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x041d52c5 pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0x041efe20 sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0x0435774f __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x045e54ee scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0x0463c352 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x047a7c6e device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x047cbca8 sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0x047e65d1 __online_page_free -EXPORT_SYMBOL_GPL vmlinux 0x0480ead3 pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x0485655f amd_get_nodes_per_socket -EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x0492c137 virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0x04a5dfa1 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0x04a9aa78 __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x04b8b391 pci_cleanup_aer_uncorrect_error_status -EXPORT_SYMBOL_GPL vmlinux 0x04baefec debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x04bf26af ioremap_page_range -EXPORT_SYMBOL_GPL vmlinux 0x04c3f2c1 gnttab_empty_grant_references -EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04cc910e mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0x04da85b0 __srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x04e18688 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0x04e92f9d fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0x04ecfb5c set_memory_wt -EXPORT_SYMBOL_GPL vmlinux 0x04ef50c5 watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x04f4bd8d percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x04f4d9ef rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0x04f8289d dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x04fae671 dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0x052f3d8c crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x05306bfe for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0x053649dc debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x056da04c fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0x057b0425 usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0x0590c8c1 tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0x05972930 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0x05a88c35 crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0x05c08484 xen_xlate_remap_gfn_array -EXPORT_SYMBOL_GPL vmlinux 0x05c1706d find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0x05c4985c unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x05e5c0bf kill_pid_info_as_cred -EXPORT_SYMBOL_GPL vmlinux 0x060595f1 pinctrl_remove_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x06129c1f tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x061663f8 nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x0663eab5 pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0x06650c6e relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0x0667ea8d nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x066bf930 xenbus_grant_ring -EXPORT_SYMBOL_GPL vmlinux 0x069296a5 iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x06963c36 intel_msic_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio -EXPORT_SYMBOL_GPL vmlinux 0x06e1e9d0 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x07032f9e trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0x071ee624 __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x073a338b fpstate_init -EXPORT_SYMBOL_GPL vmlinux 0x073c87c2 skcipher_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x074d363d __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x07937b85 sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0x0796d1f6 ata_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x07a4f537 x86_vector_domain -EXPORT_SYMBOL_GPL vmlinux 0x07abd7ea regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char -EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07f300c3 smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x0811c73d regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0x08163b58 ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x08225ff0 usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0x082975da iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x082b2737 acpi_subsys_freeze -EXPORT_SYMBOL_GPL vmlinux 0x0834d086 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0x08394d7b usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x083a780b posix_timers_register_clock -EXPORT_SYMBOL_GPL vmlinux 0x0846a4b1 fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0x085d3bcb regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0x08794ef9 swiotlb_tbl_map_single -EXPORT_SYMBOL_GPL vmlinux 0x087c5e76 nvdimm_bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x08a9028c scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x08c3e81f sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x08c43e40 uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0x08e82770 usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0x08f10258 gnttab_unmap_refs_sync -EXPORT_SYMBOL_GPL vmlinux 0x08fabd20 pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0x09041b0c blkcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0x091c0dd3 udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x0926830b bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x092b2dff usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0x0941a9bd mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0943a2f2 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x0962d0e8 irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0x097179a0 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x097af78d clk_register -EXPORT_SYMBOL_GPL vmlinux 0x0984aa5e cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0x09a8c1c1 irq_create_mapping -EXPORT_SYMBOL_GPL vmlinux 0x09b39c2a device_del -EXPORT_SYMBOL_GPL vmlinux 0x09df97fe da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0x09f55ec8 acpi_bind_one -EXPORT_SYMBOL_GPL vmlinux 0x0a452753 pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x0a4fde00 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0a554594 rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x0a662256 xenbus_map_ring -EXPORT_SYMBOL_GPL vmlinux 0x0ab9748e crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0x0ac4e294 i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x0acc3492 led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0x0ad9b52b pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0x0ae844cc blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x0af817ab hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0x0afd4610 zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b127dd0 thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x0b2c886d ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0x0b2e2904 devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x0b413434 pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0x0b4ece6d relay_open -EXPORT_SYMBOL_GPL vmlinux 0x0b5213be regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add -EXPORT_SYMBOL_GPL vmlinux 0x0b689927 acpiphp_register_attention -EXPORT_SYMBOL_GPL vmlinux 0x0b703a3c devres_release -EXPORT_SYMBOL_GPL vmlinux 0x0b7db843 ping_hash -EXPORT_SYMBOL_GPL vmlinux 0x0b9144fb bio_clone_mddev -EXPORT_SYMBOL_GPL vmlinux 0x0ba3440f thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0x0ba4c51f usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL vmlinux 0x0babfe3c ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0x0bcf91ab bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x0bf1850b bpf_prog_realloc -EXPORT_SYMBOL_GPL vmlinux 0x0bf61305 iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0c215df6 xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x0c6186e1 anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range -EXPORT_SYMBOL_GPL vmlinux 0x0c80e3fe efivar_init -EXPORT_SYMBOL_GPL vmlinux 0x0c9311cd wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x0cadeafd led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x0d059e64 static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0x0d3bb14a dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d6e0f42 device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x0d7eccad system_trusted_keyring -EXPORT_SYMBOL_GPL vmlinux 0x0d95ee7b scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0x0dcb148c da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x0dceafad acpi_dma_request_slave_chan_by_name -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0df925f6 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels -EXPORT_SYMBOL_GPL vmlinux 0x0e08410b __get_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x0e12f949 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release -EXPORT_SYMBOL_GPL vmlinux 0x0e246bdf devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x0e347e38 extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0e6736e8 bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0e67f611 dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0x0e753421 single_open_net -EXPORT_SYMBOL_GPL vmlinux 0x0e8a183c mddev_congested -EXPORT_SYMBOL_GPL vmlinux 0x0ebb7797 led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0x0f248d27 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0f289ac1 look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain -EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x0f4a1b08 pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0x0f511407 pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0x0f587805 pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0x0f5e6f7f pinctrl_add_gpio_ranges -EXPORT_SYMBOL_GPL vmlinux 0x0f6e4206 gnttab_unmap_refs_async -EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0x0f7c78e9 clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x0f99b0f9 fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0x0fa138de xen_hvm_need_lapic -EXPORT_SYMBOL_GPL vmlinux 0x0fa2ee69 wm8400_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x0fc01e9f static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi -EXPORT_SYMBOL_GPL vmlinux 0x0fe2d570 xenbus_directory -EXPORT_SYMBOL_GPL vmlinux 0x0ff93d1b regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x101079fb sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x10365f62 devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x10386e8d fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x1058d5d7 xen_remap_domain_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0x10694622 phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x107d5035 wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0x108ac056 tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0x1094eb59 scsi_internal_device_block -EXPORT_SYMBOL_GPL vmlinux 0x10958079 _submit_bh -EXPORT_SYMBOL_GPL vmlinux 0x10ada43e ata_acpi_cbl_80wire -EXPORT_SYMBOL_GPL vmlinux 0x10d00d96 dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x10d12524 ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0x10d947cd dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x10fae22b ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer -EXPORT_SYMBOL_GPL vmlinux 0x110be16c xen_swiotlb_set_dma_mask -EXPORT_SYMBOL_GPL vmlinux 0x110ce9cc bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0x1125d7cb usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0x112684bc wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0x113875f6 __sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x113b303a ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x113c7c75 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0x1152f405 dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x1165fc75 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0x1169966d devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x116e2442 rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0x1173f12c sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x117f369e xenbus_dev_remove -EXPORT_SYMBOL_GPL vmlinux 0x11ba8aef debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x11beef14 blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x11c32290 phy_create -EXPORT_SYMBOL_GPL vmlinux 0x11cc9af0 gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0x11d44384 ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0x11f25cf7 crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0x120cad5c phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0x121bf62a __ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x12230521 regmap_update_bits_check -EXPORT_SYMBOL_GPL vmlinux 0x1235472c regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0x12365e8c percpu_ida_free -EXPORT_SYMBOL_GPL vmlinux 0x1240814f ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x124fe57d pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0x1254a6f2 nd_mapping_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x125508e6 dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0x125cca9b _gpiochip_irqchip_add -EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x12866bbf sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0x1286bd7a ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0x129c7592 pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x12a4ac78 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0x12ca8e17 io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x12cdc060 pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0x12ea3c14 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0x12f2c3f0 blkdev_write_iter -EXPORT_SYMBOL_GPL vmlinux 0x12ff3d71 task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0x130bd388 check_tsc_disabled -EXPORT_SYMBOL_GPL vmlinux 0x13141b34 rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x1324147c xenbus_map_ring_valloc -EXPORT_SYMBOL_GPL vmlinux 0x133dec2b acpi_node_get_property_reference -EXPORT_SYMBOL_GPL vmlinux 0x13415657 regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x1345c375 perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0x13594ea3 tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x136256a8 rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x13884360 tpm2_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init -EXPORT_SYMBOL_GPL vmlinux 0x138e7ead raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0x13908498 __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0x1396999c pm_runtime_get_if_in_use -EXPORT_SYMBOL_GPL vmlinux 0x139c45ac irq_find_matching_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen -EXPORT_SYMBOL_GPL vmlinux 0x13b89dee pinctrl_request_gpio -EXPORT_SYMBOL_GPL vmlinux 0x13d3b698 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x13da9193 tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0x13f51fc3 ms_hyperv -EXPORT_SYMBOL_GPL vmlinux 0x142f240e pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x14328924 filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0x1449672f blk_mq_free_hctx_request -EXPORT_SYMBOL_GPL vmlinux 0x145784d1 gdt_page -EXPORT_SYMBOL_GPL vmlinux 0x14625174 usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0x146920bb handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0x14697f35 pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0x148290d3 pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0x14b4bf9e spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x14b71d9a virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0x14c2804d i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0x14d30728 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0x14df5887 ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0x14f17dcf device_add_property_set -EXPORT_SYMBOL_GPL vmlinux 0x14fb4cb6 devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x15010e1f arbitrary_virt_to_machine -EXPORT_SYMBOL_GPL vmlinux 0x15021d85 i2c_unlock_adapter -EXPORT_SYMBOL_GPL vmlinux 0x151383fa device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x151fbea6 relay_reset -EXPORT_SYMBOL_GPL vmlinux 0x15514246 ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0x15568631 lookup_address -EXPORT_SYMBOL_GPL vmlinux 0x158773aa crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x15a6ea1e wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0x15ac617d syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x15b0606e e820_any_mapped -EXPORT_SYMBOL_GPL vmlinux 0x15b18e55 ablkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x15b6521f da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x15b9bcd4 devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0x15ce9756 fuse_put_request -EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started -EXPORT_SYMBOL_GPL vmlinux 0x15f6e756 crypto_attr_alg2 -EXPORT_SYMBOL_GPL vmlinux 0x15fcee3b fuse_get_req_for_background -EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x1617034a ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x16183914 crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1647d7ab __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0x164934f4 pgprot_writethrough -EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress -EXPORT_SYMBOL_GPL vmlinux 0x16523d9f cm_notify_event -EXPORT_SYMBOL_GPL vmlinux 0x1658160a napi_by_id -EXPORT_SYMBOL_GPL vmlinux 0x168ba45b class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x1691045c mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x16c9d3f0 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x16de648c nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0x16e215c6 wm8997_patch -EXPORT_SYMBOL_GPL vmlinux 0x16ed5301 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0x16f9ce7b ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x172817ee list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x172d489f ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0x173e0f14 anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x175628a0 device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x1757fcc3 clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub -EXPORT_SYMBOL_GPL vmlinux 0x177aa27d rio_lock_device -EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online -EXPORT_SYMBOL_GPL vmlinux 0x183b9102 usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0x183d0a53 da903x_write -EXPORT_SYMBOL_GPL vmlinux 0x1849c4cc max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt -EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert -EXPORT_SYMBOL_GPL vmlinux 0x1891a505 da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0x18929f95 usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0x18b56b16 kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x18f5728b component_master_del -EXPORT_SYMBOL_GPL vmlinux 0x18f5e50e arch_apei_enable_cmcff -EXPORT_SYMBOL_GPL vmlinux 0x18f83fab gnttab_grant_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0x18fa32ed led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x18fe2a09 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0x190757d8 spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0x19136f06 pci_msi_set_desc -EXPORT_SYMBOL_GPL vmlinux 0x19241463 regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0x192df7de transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x19495ed4 ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore -EXPORT_SYMBOL_GPL vmlinux 0x1980953b crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0x1990f8ff pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19c51db8 ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x19c56950 skcipher_geniv_exit -EXPORT_SYMBOL_GPL vmlinux 0x19c592ff sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x1a1c4082 mod_delayed_work_on -EXPORT_SYMBOL_GPL vmlinux 0x1a2551d5 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0x1a2f0789 crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0x1a418547 __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x1a418d04 powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0x1a532f12 rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x1a6a36cd ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0x1a8b09cb i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table -EXPORT_SYMBOL_GPL vmlinux 0x1aa28a7d crypto_larval_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1ab826f6 find_module -EXPORT_SYMBOL_GPL vmlinux 0x1ac174fe devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing -EXPORT_SYMBOL_GPL vmlinux 0x1ae2e1d0 regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x1aefcbe5 irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0x1b1f2bda speedstep_get_freqs -EXPORT_SYMBOL_GPL vmlinux 0x1b38b3c6 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read -EXPORT_SYMBOL_GPL vmlinux 0x1b6b7908 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0x1b876568 rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return -EXPORT_SYMBOL_GPL vmlinux 0x1ba1f381 tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0x1ba51e2f i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0x1bb8399a blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x1bbbbdf4 pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0x1bbe6d2a __compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x1c031ee4 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0x1c05c9bc blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0x1c0b2797 msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0x1c0e2d14 elv_register -EXPORT_SYMBOL_GPL vmlinux 0x1c3d4399 ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1c44e434 pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c59fa75 blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase -EXPORT_SYMBOL_GPL vmlinux 0x1c6325ed find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x1c6660c7 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0x1c68a79a ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x1c7b2f63 crypto_unregister_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 -EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1ca3c6f8 ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x1cb3d791 tps65217_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x1cb79923 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x1cdd5440 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0x1ced2eee sched_setattr -EXPORT_SYMBOL_GPL vmlinux 0x1cf59c18 tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d459685 xstate_size -EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings -EXPORT_SYMBOL_GPL vmlinux 0x1d70a411 regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x1d739e1c xen_set_callback_via -EXPORT_SYMBOL_GPL vmlinux 0x1d74cbbb usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x1d7cb586 clk_register_fixed_rate_with_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x1d9e16a8 ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1daafd11 to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0x1dac1078 class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1de74685 power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0x1dee572f queue_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0x1def880e bind_interdomain_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x1df372bf irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0x1df3b9e0 generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0x1df48755 usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x1e10f8f0 kallsyms_on_each_symbol -EXPORT_SYMBOL_GPL vmlinux 0x1e218be6 perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1e2f8e13 spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0x1e3605ed component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0x1e4f08be blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1e6e540b regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e7c6b40 gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0x1e7dc591 get_dcookie -EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1e92bae1 pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x1e92c7a8 intel_scu_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1eb28c4a irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ed1996e scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0x1f17d92c spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x1f306c7f fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0x1f3e5770 fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0x1f486bf6 regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0x1f7b0ad2 debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0x1f7f6fac register_jprobe -EXPORT_SYMBOL_GPL vmlinux 0x1f839540 xenbus_dev_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f855bd3 irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x1f9b86d3 phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0x1fa5b19a preempt_schedule_notrace -EXPORT_SYMBOL_GPL vmlinux 0x1fabdd82 sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x1fccc288 unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0x1fefdbe8 bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0x200cc695 __free_iova -EXPORT_SYMBOL_GPL vmlinux 0x2032d753 regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0x2037d81d register_mce_write_callback -EXPORT_SYMBOL_GPL vmlinux 0x2046bbee wm8998_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x204e66e6 percpu_ida_free_tags -EXPORT_SYMBOL_GPL vmlinux 0x204ed241 ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x207608ba led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0x208adf63 pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0x2093cc37 vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0x209ec764 xen_event_channel_op_compat -EXPORT_SYMBOL_GPL vmlinux 0x209f18d9 ping_proc_register -EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0x20bd3461 handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0x20c6e760 sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0x20e40f6f register_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x20f935a0 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x20f9f5ea rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x20fa27d5 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0x2116cbf3 usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0x2126e284 ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0x2133ed36 page_endio -EXPORT_SYMBOL_GPL vmlinux 0x217382a1 xenbus_unmap_ring_vfree -EXPORT_SYMBOL_GPL vmlinux 0x21925348 gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21d156e2 xenbus_probe_node -EXPORT_SYMBOL_GPL vmlinux 0x21e479b3 sdio_run_irqs -EXPORT_SYMBOL_GPL vmlinux 0x220698a5 rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x22097428 devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0x221b7949 file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x221e4518 ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x224358f7 inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0x224e21a9 xenbus_dev_error -EXPORT_SYMBOL_GPL vmlinux 0x22627b51 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x22936bce find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 -EXPORT_SYMBOL_GPL vmlinux 0x2299ec81 perf_assign_events -EXPORT_SYMBOL_GPL vmlinux 0x22a7ac2f __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0x22d045c1 efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0x22d822ab acpi_dev_get_property -EXPORT_SYMBOL_GPL vmlinux 0x22ebc234 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0x22f04ea8 devm_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x23048011 __intel_mid_cpu_chip -EXPORT_SYMBOL_GPL vmlinux 0x2309ad8c xattr_getsecurity -EXPORT_SYMBOL_GPL vmlinux 0x230e87d9 rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0x2310424a pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x2338dc0c irq_map_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x2359ea1f sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x2366a2c0 errata -EXPORT_SYMBOL_GPL vmlinux 0x2375b79b spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x238987c9 usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0x23906f00 mmput -EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x23a79d49 skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0x23bc30f6 vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x23be4101 tps65912_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x23eb81e8 iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x240580a9 xenbus_probe -EXPORT_SYMBOL_GPL vmlinux 0x24224730 usb_acpi_set_power_state -EXPORT_SYMBOL_GPL vmlinux 0x2430050d devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0x2454e8a1 pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x2469810f __rcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x24811492 tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0x249921fa ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0x24a42f5a proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0x24a89749 srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key -EXPORT_SYMBOL_GPL vmlinux 0x24c7698a xenbus_write -EXPORT_SYMBOL_GPL vmlinux 0x24e1d590 securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x24e5113f xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24ec51ee tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x24f19564 device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset -EXPORT_SYMBOL_GPL vmlinux 0x24f45195 usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x24ff698f ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0x251127c8 regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x2527da4d rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x252c09be injectm -EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x253fbed6 crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x2545c170 unregister_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0x255300fc fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x2555e66a __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x255d97d9 kernfs_path -EXPORT_SYMBOL_GPL vmlinux 0x2560f660 __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0x2576d141 pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x25795e05 blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x258dd7a3 devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0x2590c853 relay_flush -EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr -EXPORT_SYMBOL_GPL vmlinux 0x25fe17b1 gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x26085a7e pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x2622cffc dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x2628d8d1 crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0x262d1f1b ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock -EXPORT_SYMBOL_GPL vmlinux 0x263eecb7 regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x264ae4c6 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x26685772 regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x266cbda8 inet6_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0x269360f3 register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x26965721 slow_virt_to_phys -EXPORT_SYMBOL_GPL vmlinux 0x26b3c701 __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26e1051e tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x26e72c6a mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0x26fd64ee security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0x270592ac ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x271576d6 ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0x27449350 fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x27556c5e ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0x278463a4 xenbus_unmap_ring -EXPORT_SYMBOL_GPL vmlinux 0x27856103 ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0x279cb985 apei_exec_pre_map_gars -EXPORT_SYMBOL_GPL vmlinux 0x27a66e22 xen_swiotlb_map_page -EXPORT_SYMBOL_GPL vmlinux 0x27b63002 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info -EXPORT_SYMBOL_GPL vmlinux 0x27d335de devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27f5d392 sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x28018b88 pwm_disable -EXPORT_SYMBOL_GPL vmlinux 0x28084a7d reserve_iova -EXPORT_SYMBOL_GPL vmlinux 0x28247f32 dma_buf_vmap -EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x283381a2 usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x286b831a get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x2890771b digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x28c33ba5 single_release_net -EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices -EXPORT_SYMBOL_GPL vmlinux 0x28efeef9 dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x2911817e fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0x29213614 reservation_object_test_signaled_rcu -EXPORT_SYMBOL_GPL vmlinux 0x2935e4b1 ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x293f073e vrtc_cmos_write -EXPORT_SYMBOL_GPL vmlinux 0x2946789f pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x29634e69 acpi_subsys_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x29665f4f iommu_present -EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0x29c4b30e skb_gso_transport_seglen -EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29f35aa0 bdev_read_page -EXPORT_SYMBOL_GPL vmlinux 0x2a13190d bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x2a174d16 dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0x2a4c5aff scsi_device_from_queue -EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2a6dac9c dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0x2a6dc6bf blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x2a859f1a ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x2a9377ba devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x2aa6ecc3 usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x2aba15fe of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x2abe8ad7 regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0x2acb241b devm_rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2ad013fe smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x2af3f288 __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x2af63321 acpi_dev_resource_address_space -EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0x2b2dceca usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0x2b36abe7 inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0x2b3f125a srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2b4664b4 regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x2b4fb50d fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0x2b52922f unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x2b5fe4d3 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0x2b61899f ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x2b63f21c sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x2b67f096 speedstep_get_frequency -EXPORT_SYMBOL_GPL vmlinux 0x2b703dd8 sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0x2b8ddf65 iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0x2b91b5bf shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0x2b96316a efivar_variable_is_removable -EXPORT_SYMBOL_GPL vmlinux 0x2be3668a rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc -EXPORT_SYMBOL_GPL vmlinux 0x2c06b879 extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0x2c1fb771 acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c3d9b0a pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x2c630bd1 usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0x2c6a0410 xen_set_domain_pte -EXPORT_SYMBOL_GPL vmlinux 0x2c7d9c64 xen_store_interface -EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c91766c crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x2cbc5c47 usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x2cc49ccc pskb_put -EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq -EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d262c81 scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x2d2da749 crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0x2d2f3ef5 usb_phy_generic_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers -EXPORT_SYMBOL_GPL vmlinux 0x2d88c63f md_new_event -EXPORT_SYMBOL_GPL vmlinux 0x2d9f2ce3 sched_clock_idle_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x2dc39154 iommu_domain_get_attr -EXPORT_SYMBOL_GPL vmlinux 0x2dd83dbc gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x2dde08e2 fib_select_path -EXPORT_SYMBOL_GPL vmlinux 0x2de681b6 system_verify_data -EXPORT_SYMBOL_GPL vmlinux 0x2e0dcb57 pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e24c997 __class_register -EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2e304a1c usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0x2e3a8ee4 ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0x2e43b1e3 usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0x2e43caec pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x2e4bd2f7 usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0x2e60c4c9 usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0x2e8ff647 regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0x2ea22838 dax_fault -EXPORT_SYMBOL_GPL vmlinux 0x2ea230cc __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x2eab643d regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ebf09bc __put_net -EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x2ed0a411 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x2ed6a3f8 debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x2eda9148 dm_get_table_device -EXPORT_SYMBOL_GPL vmlinux 0x2eebe0d1 alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0x2f0628c5 pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2f07b926 iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0x2f0b88a9 vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f143bf9 acpi_subsys_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x2f28bd94 gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0x2f409574 __get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register -EXPORT_SYMBOL_GPL vmlinux 0x2f57d31a ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x2f69d2de devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x2f8049de irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x2f90da7e trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0x2f9b66de pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x2fd71fd9 kobject_move -EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake -EXPORT_SYMBOL_GPL vmlinux 0x2fdcddb9 rio_request_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x300778f7 fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x303d9d9c mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0x3054a99f gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x30635782 cpu_has_xfeatures -EXPORT_SYMBOL_GPL vmlinux 0x30715fd6 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x307f8df2 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0x30a29d61 clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x30a3a0fc __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x30b784c7 crypto_ahash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x30b896c4 usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0x30bdea7c shmem_add_seals -EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock -EXPORT_SYMBOL_GPL vmlinux 0x310d9629 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0x3113ac94 __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x31190c3a spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x3126e986 ping_err -EXPORT_SYMBOL_GPL vmlinux 0x314f75d9 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x3151d0f1 n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0x31655fba clk_gpio_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0x31660c8d ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0x3170262c debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0x31adfd9f dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x31b46180 led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0x31b46d1a wm5102_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x31c01a14 scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put -EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31e358f3 mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0x31e57435 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0x31ed5fe4 sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x321d6c17 gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x324242ed irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x32557712 init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x3257feb9 phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0x325e677c gnttab_grant_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x32633f62 fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0x3263d968 gnttab_map_refs -EXPORT_SYMBOL_GPL vmlinux 0x326ef5bb usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0x32754cb5 adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0x32807ba3 xenbus_switch_state -EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update -EXPORT_SYMBOL_GPL vmlinux 0x328c2035 __efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0x32924a4d scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x32933320 usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0x3296eba9 dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x329c6ed1 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0x329f055d devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x32a0bdd9 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0x32a138bc exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec -EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32c9db09 ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0x32e1fc48 virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x32e3b076 mxcsr_feature_mask -EXPORT_SYMBOL_GPL vmlinux 0x32e48351 gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0x32e73167 clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x32fc3f2a crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x331ddde4 get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0x333228ec intel_msic_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x335f6f9d xenbus_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition -EXPORT_SYMBOL_GPL vmlinux 0x3362b03c xen_p2m_size -EXPORT_SYMBOL_GPL vmlinux 0x33655159 xen_pcpu_hotplug_sync -EXPORT_SYMBOL_GPL vmlinux 0x3368ebc1 device_remove_property_set -EXPORT_SYMBOL_GPL vmlinux 0x33822e24 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0x338ed625 mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0x33b61d5d __mmu_notifier_invalidate_range_end -EXPORT_SYMBOL_GPL vmlinux 0x33b6c7fe gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0x33b96e5d apei_exec_write_register -EXPORT_SYMBOL_GPL vmlinux 0x33cdf694 pcc_mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x340704da irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0x34116836 cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x3421ed4f dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x34331d5e nd_fletcher64 -EXPORT_SYMBOL_GPL vmlinux 0x344d0545 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0x344fdc20 pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x3465f6bb tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0x34676294 dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0x347682ce snmp_fold_field64 -EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get -EXPORT_SYMBOL_GPL vmlinux 0x3489a8b8 register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x349eb5c0 power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x34ae1595 tpm2_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x34afe7d5 sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0x34c1a188 rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0x34ee491f cpufreq_table_validate_and_show -EXPORT_SYMBOL_GPL vmlinux 0x35129c51 modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched -EXPORT_SYMBOL_GPL vmlinux 0x351c8d02 ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0x351f496f thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x35257c0f ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x352650ee gnttab_batch_map -EXPORT_SYMBOL_GPL vmlinux 0x354eca9f pci_enable_pri -EXPORT_SYMBOL_GPL vmlinux 0x3576860b get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0x357f1cea ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0x3581f995 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x358824d7 pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x35910f72 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x359c2444 devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x35d58493 __mmu_notifier_invalidate_range_start -EXPORT_SYMBOL_GPL vmlinux 0x35dcd1f7 trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x35de5ebf __efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0x35e3faa1 acpi_device_update_power -EXPORT_SYMBOL_GPL vmlinux 0x35f6c878 sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x36014d08 tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x3620890e rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0x36241c14 uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0x3631020d __pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x366ab738 ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36a42699 devm_acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x36b14a27 regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled -EXPORT_SYMBOL_GPL vmlinux 0x36b9e0a1 blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x36ba2551 intel_scu_devices_destroy -EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x36e566cb ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x36e5dc73 scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0x36eaee3d rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x36f58283 simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0x37073adb pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x371480cd blk_set_queue_dying -EXPORT_SYMBOL_GPL vmlinux 0x371f3a6d regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x372bc150 arizona_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x37341d11 crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0x37350e71 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0x373a8775 pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x375021ed dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0x375a2b2c debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0x376809e4 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x377a102d regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x379677cd pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x379b3dc5 component_master_add_child -EXPORT_SYMBOL_GPL vmlinux 0x37a0b783 blk_queue_dma_drain -EXPORT_SYMBOL_GPL vmlinux 0x37a1e8a7 pwm_can_sleep -EXPORT_SYMBOL_GPL vmlinux 0x37c27a07 __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x37d2612b hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x38069362 md_run -EXPORT_SYMBOL_GPL vmlinux 0x380e30d7 raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x383fad7a led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0x3843c321 led_trigger_show -EXPORT_SYMBOL_GPL vmlinux 0x38558058 usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end -EXPORT_SYMBOL_GPL vmlinux 0x387596b2 pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0x3879e648 tcp_peer_is_proven -EXPORT_SYMBOL_GPL vmlinux 0x38849e63 __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x3886ec35 of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x388f76aa skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0x389e5cdc tpm2_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38f62d9c cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x38f787fe regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x38fff317 attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x390576e9 xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0x3923b897 ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x39326669 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0x39652507 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x397551ca devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x3975ab8c rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0x39b2f57d free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current -EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module -EXPORT_SYMBOL_GPL vmlinux 0x39e6f7d6 pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0x39efad45 devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0x39f752c9 arizona_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x3a08d429 attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0x3a1f1f99 fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0x3a1f3e14 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0x3a277622 ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0x3a383b97 sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0x3a39cfdc pci_intx_mask_supported -EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a6afa4e bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0x3a6bcd3e ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x3a6f6cab __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn -EXPORT_SYMBOL_GPL vmlinux 0x3a850441 __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3ab7d0cd add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x3ac6cd0f pci_reset_bridge_secondary_bus -EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3ad6cb2e devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x3adb52f3 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x3af05521 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0x3b547bc9 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x3b6ba364 pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x3b7145bb apei_exec_read_register_value -EXPORT_SYMBOL_GPL vmlinux 0x3b8ef6c1 fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x3b984964 replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0x3bc9f53a vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x3bd37a3c use_mm -EXPORT_SYMBOL_GPL vmlinux 0x3becbdc2 cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0x3c00a3e2 aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x3c299b6a crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0x3c531043 rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x3c8fd058 max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag -EXPORT_SYMBOL_GPL vmlinux 0x3c93ea25 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0x3c9ddb19 ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x3ca112da blkcipher_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x3ca1eb64 usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0x3cb851de skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x3cb85e86 cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0x3cbd37d4 ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0x3ccc1bdc regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3cf2ade2 devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x3d15d2fb usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0x3d201c21 __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d39ac8f pcc_mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x3d4cda3d dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0x3d56a64a tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x3d78dda9 iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0x3d7ea99a gnttab_grant_foreign_transfer -EXPORT_SYMBOL_GPL vmlinux 0x3d7fbbe3 wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x3daccfd7 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x3db6a3d2 platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab -EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3dd44903 spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x3dd4d279 nd_device_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x3dd4d3a7 bprintf -EXPORT_SYMBOL_GPL vmlinux 0x3de425ce acpi_dev_get_resources -EXPORT_SYMBOL_GPL vmlinux 0x3de82941 blkcipher_aead_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3deac062 driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0x3e1bc377 devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x3e270198 regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x3e3ae830 udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3e54b244 btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3e58194f tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0x3e587a06 ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x3e5adac3 regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e757637 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0x3ea37c57 disk_map_sector_rcu -EXPORT_SYMBOL_GPL vmlinux 0x3ea3d639 virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup -EXPORT_SYMBOL_GPL vmlinux 0x3eb046cc i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x3ee2a2c8 platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0x3f229c4c oops_begin -EXPORT_SYMBOL_GPL vmlinux 0x3f4f4897 ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x3f4f6c45 dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0x3f84d4c9 gnttab_release_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x3fa34ab1 spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0x3fa61b84 pci_try_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x3fbb0d36 powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0x3fbd8548 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0x3fc89e4d bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0x3fce7e03 virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0x3fd4f879 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0x3fdbb8e5 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release -EXPORT_SYMBOL_GPL vmlinux 0x4010b80f pmc_atom_read -EXPORT_SYMBOL_GPL vmlinux 0x401e84c8 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0x40541f62 ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources -EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x407c7151 usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x408212ba hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0x40ab254a __pci_complete_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x40b1da23 virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x40de8343 crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x40e0e204 usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x40f09d3a tps65912_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x4101151b usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x410ec278 crypto_alg_lookup -EXPORT_SYMBOL_GPL vmlinux 0x41371451 rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0x417a54d4 rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x418620b4 xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0x418710e7 mce_inject_log -EXPORT_SYMBOL_GPL vmlinux 0x41aeaeb6 ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x41d22def ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x41db7d59 acpi_ec_add_query_handler -EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x4209fc89 ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x4213a51a efivar_entry_set_safe -EXPORT_SYMBOL_GPL vmlinux 0x42452c5f tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done -EXPORT_SYMBOL_GPL vmlinux 0x424ae8f4 nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0x425d1105 crypto_create_tfm -EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags -EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x42b1ad48 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x42c989ff iomap_atomic_prot_pfn -EXPORT_SYMBOL_GPL vmlinux 0x42e33a9a cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x42f4a180 mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x43060279 tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0x4334f56f platform_bus -EXPORT_SYMBOL_GPL vmlinux 0x434ab3a0 xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x434b158a subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x4388c867 usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x43910065 tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0x4395953e usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key -EXPORT_SYMBOL_GPL vmlinux 0x43b43852 blk_mq_tags_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x43ce92c7 kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift -EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x441306fe class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x441fa356 irq_ts_save -EXPORT_SYMBOL_GPL vmlinux 0x443d4099 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0x444eb281 bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x446cf88b usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x446ed7a4 blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x44839818 rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x449a8f99 efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0x44a18c35 intel_svm_bind_mm -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44c25298 cpufreq_frequency_table_target -EXPORT_SYMBOL_GPL vmlinux 0x44d112dd xenbus_dev_cancel -EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats -EXPORT_SYMBOL_GPL vmlinux 0x4501c4b8 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x4512b086 intel_scu_devices_create -EXPORT_SYMBOL_GPL vmlinux 0x451e19d8 fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state -EXPORT_SYMBOL_GPL vmlinux 0x454f1cb4 efi_query_variable_store -EXPORT_SYMBOL_GPL vmlinux 0x455a3d60 usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x4588bbf3 cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0x45acce03 ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0x45b7d6a0 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x45cd4dc0 xen_swiotlb_sync_single_for_device -EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page -EXPORT_SYMBOL_GPL vmlinux 0x45ea6b61 gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x45eafadf __dax_pmd_fault -EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x460295cc virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x460f31aa rodata_test_data -EXPORT_SYMBOL_GPL vmlinux 0x4617ad98 acpi_os_map_iomem -EXPORT_SYMBOL_GPL vmlinux 0x46196f1a tps65912_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x464f3735 pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0x466494e3 crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0x466e91a6 devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x466fc956 power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0x4678157d pci_bus_sem -EXPORT_SYMBOL_GPL vmlinux 0x46875a63 apic -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x46aa3bc8 regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x46afc3e2 iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0x46c2661e acpi_dev_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x46fd833a xenbus_frontend_closed -EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x474e779e mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x47606045 blk_queue_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4766bce2 swiotlb_unmap_page -EXPORT_SYMBOL_GPL vmlinux 0x476a7a26 __blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x47a08cce sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47ad9e6f pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw -EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47e23bd5 pci_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x47e92a67 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x47f7f11e sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x47fff110 relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0x480e33cd ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0x4811a8cf transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire -EXPORT_SYMBOL_GPL vmlinux 0x4833c255 ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0x4842133f pinctrl_force_default -EXPORT_SYMBOL_GPL vmlinux 0x484bb756 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0x4862bd8c cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x48682db9 perf_guest_get_msrs -EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh -EXPORT_SYMBOL_GPL vmlinux 0x4870e159 pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0x4877829f fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0x4884c141 event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0x48853748 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x488dbd90 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x48b06963 devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x48e5cc88 l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0x48f0daea ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x48f579d3 serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0x49020f36 efivar_entry_set -EXPORT_SYMBOL_GPL vmlinux 0x490a8df6 x86_platform -EXPORT_SYMBOL_GPL vmlinux 0x490d4175 bio_associate_blkcg -EXPORT_SYMBOL_GPL vmlinux 0x4923b010 blk_queue_bypass_start -EXPORT_SYMBOL_GPL vmlinux 0x49826771 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x49ac2f79 device_property_present -EXPORT_SYMBOL_GPL vmlinux 0x49c482d0 driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0x49dd4b07 ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49f96cbe trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x4a085c8a driver_register -EXPORT_SYMBOL_GPL vmlinux 0x4a21ca72 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0x4a26b0a8 gpiochip_remove_pin_ranges -EXPORT_SYMBOL_GPL vmlinux 0x4a335b7b rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x4a3c3cf9 microcode_sanity_check -EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data -EXPORT_SYMBOL_GPL vmlinux 0x4a452227 nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name -EXPORT_SYMBOL_GPL vmlinux 0x4a7a194e fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0x4a84d100 acpi_ec_remove_query_handler -EXPORT_SYMBOL_GPL vmlinux 0x4a9ec50d debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0x4aaac11a md_stop -EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0x4afb573b vrtc_cmos_read -EXPORT_SYMBOL_GPL vmlinux 0x4b04315e devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0x4b0cd7b9 cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0x4b29ae87 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x4b337b11 skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0x4b37d3ec ata_acpi_gtm -EXPORT_SYMBOL_GPL vmlinux 0x4b3b3782 pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x4b5571ec sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0x4b9ebce7 __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0x4ba22ca4 blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0x4bad44b4 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0x4bb20617 iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0x4bb63304 scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x4bc5edc1 gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x4bd4c88b get_device -EXPORT_SYMBOL_GPL vmlinux 0x4bf76cd0 crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0x4bfafae3 md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0x4c1fc172 ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x4c2a472b __static_cpu_has_safe -EXPORT_SYMBOL_GPL vmlinux 0x4c2eab4f sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0x4c38f7bf pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4c41f418 usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x4c48f690 sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4c62fc13 edac_subsys -EXPORT_SYMBOL_GPL vmlinux 0x4c6f432e acpiphp_unregister_attention -EXPORT_SYMBOL_GPL vmlinux 0x4c74ee9c usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table -EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d1b7cec virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x4d9f0ce4 ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0x4dc65b55 usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x4dc715ac devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4de7fe81 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x4df333e0 pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0x4e1ea947 __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path -EXPORT_SYMBOL_GPL vmlinux 0x4e2c2dd2 pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x4e2df1d6 component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0x4e3b0406 device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x4e57723d apei_read -EXPORT_SYMBOL_GPL vmlinux 0x4e74e625 gnttab_batch_copy -EXPORT_SYMBOL_GPL vmlinux 0x4e97a832 tcp_death_row -EXPORT_SYMBOL_GPL vmlinux 0x4e9f6a21 rio_get_device -EXPORT_SYMBOL_GPL vmlinux 0x4eb6ead4 xenbus_dev_fatal -EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0x4f3bbe9d xen_swiotlb_sync_single_for_cpu -EXPORT_SYMBOL_GPL vmlinux 0x4f468a95 dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0x4f46f97e devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x4f47f49c devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x4f4bf92c net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x4f53e9ad module_mutex -EXPORT_SYMBOL_GPL vmlinux 0x4f63edaf anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f6d15bb efivar_entry_size -EXPORT_SYMBOL_GPL vmlinux 0x4f7a95a7 cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0x4f812e2f smpboot_register_percpu_thread_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x4fb528b2 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4ffde3b8 regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0x5012defb mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0x501a2d13 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi -EXPORT_SYMBOL_GPL vmlinux 0x503890b2 adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0x5046049a vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x50680dd6 debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0x50718ae9 acpi_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0x507de8c6 add_memory -EXPORT_SYMBOL_GPL vmlinux 0x5080c352 trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test -EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x50b1ba71 devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0x50c7193f pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50e7fb16 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x51035f84 posix_timer_event -EXPORT_SYMBOL_GPL vmlinux 0x51131e61 pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x5128de0b exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0x5130f650 reservation_object_get_fences_rcu -EXPORT_SYMBOL_GPL vmlinux 0x51468405 dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val -EXPORT_SYMBOL_GPL vmlinux 0x5159a066 mnt_clone_write -EXPORT_SYMBOL_GPL vmlinux 0x51719489 tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x517c9a8c arizona_dev_exit -EXPORT_SYMBOL_GPL vmlinux 0x518415f5 cpu_tlbstate -EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq -EXPORT_SYMBOL_GPL vmlinux 0x51966b51 __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x51c49458 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x51d2d579 pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0x51fc8c4e phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL vmlinux 0x523c57f9 find_symbol -EXPORT_SYMBOL_GPL vmlinux 0x5251938d pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x5252ae35 tpm_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x5255123d i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x52593708 inet_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0x526280c7 trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0x527e4c56 efivar_entry_add -EXPORT_SYMBOL_GPL vmlinux 0x528015a9 pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0x528162a3 sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0x52924f20 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0x529e492f ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x52a60095 get_kernel_page -EXPORT_SYMBOL_GPL vmlinux 0x52b61c4e devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x52c111b2 trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x52d8c375 clk_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x52ebe2b6 wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x52f102db __percpu_ida_init -EXPORT_SYMBOL_GPL vmlinux 0x5326c04b regmap_update_bits_async -EXPORT_SYMBOL_GPL vmlinux 0x533e085b regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x5359cb54 dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x5369cd6d xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x537f39e1 fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0x538726f3 regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late -EXPORT_SYMBOL_GPL vmlinux 0x53b0292e sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0x53c12383 balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x53c21989 __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x53cc3d40 tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x53d0cdea syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x53e65c3f vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0x53f93612 unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x540e28ce blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x542eed01 usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0x54482523 spi_async -EXPORT_SYMBOL_GPL vmlinux 0x54575938 pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time -EXPORT_SYMBOL_GPL vmlinux 0x5477a7dd fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x54b94de7 irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x54cdfee3 sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x54d0c9cc devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0x54d406fa __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0x54d468f1 pm_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0x54d519ec irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x54d55f36 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x54dc3654 phy_exit -EXPORT_SYMBOL_GPL vmlinux 0x54fdc47d pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0x5505b8bf devm_pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled -EXPORT_SYMBOL_GPL vmlinux 0x55170b04 blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x55454aa2 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x55526907 xen_features -EXPORT_SYMBOL_GPL vmlinux 0x55607628 rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0x5567003a blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x55aa1064 usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x55b785ee task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0x55c6cec9 fuse_get_req -EXPORT_SYMBOL_GPL vmlinux 0x55d56ce1 scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x55edd53d unregister_jprobes -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x55ef15df __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x56198d11 raw_seq_open -EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x5629958b regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable -EXPORT_SYMBOL_GPL vmlinux 0x563bcabd debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x5654f836 erst_get_record_id_next -EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen -EXPORT_SYMBOL_GPL vmlinux 0x56715f68 rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0x567b4486 extcon_unregister_interest -EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map -EXPORT_SYMBOL_GPL vmlinux 0x56947347 dmi_walk -EXPORT_SYMBOL_GPL vmlinux 0x56a63db3 balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x56a8ba5a aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x56c5baf5 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up -EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x570e2aa1 wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x571286e1 regmap_field_write -EXPORT_SYMBOL_GPL vmlinux 0x571e751c ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0x572e2909 usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x575ac26c kthread_park -EXPORT_SYMBOL_GPL vmlinux 0x575b5d51 nd_blk_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x5769328d trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x576b94cb tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0x57769071 wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0x5779d445 xenbus_exists -EXPORT_SYMBOL_GPL vmlinux 0x57822cf8 pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x578faed4 xen_swiotlb_unmap_sg_attrs -EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57a86f2b __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0x57bb5d71 pwm_enable -EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags -EXPORT_SYMBOL_GPL vmlinux 0x57d95653 ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x57d98c5a reservation_object_wait_timeout_rcu -EXPORT_SYMBOL_GPL vmlinux 0x57f8062c acpi_dev_resource_io -EXPORT_SYMBOL_GPL vmlinux 0x585144cb bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0x585704ab aer_recover_queue -EXPORT_SYMBOL_GPL vmlinux 0x587bd46f alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0x588c79ac wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname -EXPORT_SYMBOL_GPL vmlinux 0x58bac738 pwm_request -EXPORT_SYMBOL_GPL vmlinux 0x58bf559f iommu_domain_window_enable -EXPORT_SYMBOL_GPL vmlinux 0x58ebd1ad wm8400_block_read -EXPORT_SYMBOL_GPL vmlinux 0x58ec0d9d xenbus_read_otherend_details -EXPORT_SYMBOL_GPL vmlinux 0x58f2dca6 __class_create -EXPORT_SYMBOL_GPL vmlinux 0x58fafe4f crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0x59063a20 phy_init -EXPORT_SYMBOL_GPL vmlinux 0x590bd77f ata_eh_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x590f890a ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0x594cde67 trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0x5953edaa serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0x5958cb38 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0x5960aaff pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0x59688cf7 atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x597e89c0 __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x59b73d96 acpi_register_gsi -EXPORT_SYMBOL_GPL vmlinux 0x59cffe86 xen_find_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0x59d08c7b phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x5a0a6493 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x5a157bce uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5a2b1b67 gnttab_free_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x5a425e2f ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0x5a441084 blkg_stat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x5a53ea64 put_pid -EXPORT_SYMBOL_GPL vmlinux 0x5a65c37b devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x5a699c6a fpu__save -EXPORT_SYMBOL_GPL vmlinux 0x5a6e6494 pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq -EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a8e3241 cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0x5a8e751d sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0x5a98a8b3 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5a9bc877 rt_mutex_destroy -EXPORT_SYMBOL_GPL vmlinux 0x5ab314a0 smp_ops -EXPORT_SYMBOL_GPL vmlinux 0x5ac57803 restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x5ad11d47 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0x5ae48bb6 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0x5af03a28 gnttab_claim_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x5af60ba6 usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x5b1899f8 free_iova -EXPORT_SYMBOL_GPL vmlinux 0x5b1e599b iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x5b32cfed lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0x5b457df6 unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x5b7dab07 virtqueue_get_used -EXPORT_SYMBOL_GPL vmlinux 0x5ba7b1f5 blkg_print_stat_bytes_recursive -EXPORT_SYMBOL_GPL vmlinux 0x5babf842 register_jprobes -EXPORT_SYMBOL_GPL vmlinux 0x5bce0ce0 rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x5bce8ca1 __atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5bdfec62 usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x5bea2ef9 pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0x5bf2ff47 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5bfdf483 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x5c04de02 securityfs_create_dentry -EXPORT_SYMBOL_GPL vmlinux 0x5c1ecb6d phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5c55275d perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker -EXPORT_SYMBOL_GPL vmlinux 0x5c69625b fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5cc46a14 md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x5ccb7442 extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x5ccd6d31 ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5cdcf723 arizona_set_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x5cf1ee36 isa_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x5d11f655 list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user -EXPORT_SYMBOL_GPL vmlinux 0x5d288e99 usb_gen_phy_init -EXPORT_SYMBOL_GPL vmlinux 0x5d366dec gnttab_cancel_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x5d37849c device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0x5d387021 led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5d4328f7 ahash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x5d4b54f0 gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0x5d4dcd42 spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0x5d5ca512 tasklet_hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x5d6197c4 scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x5d69f8e0 tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0x5d864829 acpi_create_platform_device -EXPORT_SYMBOL_GPL vmlinux 0x5d889553 preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x5d904623 tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0x5d9425cb __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid -EXPORT_SYMBOL_GPL vmlinux 0x5de96c5d pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x5e15db83 tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0x5e2041c2 regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0x5e3db18a regmap_write -EXPORT_SYMBOL_GPL vmlinux 0x5e4374ec gnttab_unmap_refs -EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl -EXPORT_SYMBOL_GPL vmlinux 0x5e574976 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x5e5bcf44 devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0x5e7730fe shmem_get_seals -EXPORT_SYMBOL_GPL vmlinux 0x5e77ba35 do_machine_check -EXPORT_SYMBOL_GPL vmlinux 0x5e817007 x86_hyper_kvm -EXPORT_SYMBOL_GPL vmlinux 0x5e855342 pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x5ec49220 hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5ecbd622 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x5eeea83e crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0x5f054113 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0x5f060241 __xenbus_register_frontend -EXPORT_SYMBOL_GPL vmlinux 0x5f28fda7 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable -EXPORT_SYMBOL_GPL vmlinux 0x5f6c2cfa md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0x5f780eac tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0x5fa5af97 xenbus_register_driver_common -EXPORT_SYMBOL_GPL vmlinux 0x5fc27be9 acpi_dev_irq_flags -EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt -EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x6018ea60 pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x60277a60 spi_master_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6035b78e fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x60368a51 extcon_get_cable_state -EXPORT_SYMBOL_GPL vmlinux 0x603c32a1 rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush -EXPORT_SYMBOL_GPL vmlinux 0x6065e9c1 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x608f69a4 regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x60930d37 save_mc_for_early -EXPORT_SYMBOL_GPL vmlinux 0x609f19b4 skcipher_geniv_init -EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60cd73ed pv_apic_ops -EXPORT_SYMBOL_GPL vmlinux 0x60cef609 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x60d9201b ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x60d9ed54 save_stack_trace_tsk -EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq -EXPORT_SYMBOL_GPL vmlinux 0x60eb9e7e usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x60f4222f crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0x610299d6 rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0x613880cb tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x614b16c4 gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x615905d9 extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x615b4c40 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x61a82914 regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0x61b0f0c9 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x61bc02fc power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x61cba0d6 __add_pages -EXPORT_SYMBOL_GPL vmlinux 0x61cde409 acpi_dev_resource_memory -EXPORT_SYMBOL_GPL vmlinux 0x620b6fcb init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0x621d58f1 usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x623803c8 hest_disable -EXPORT_SYMBOL_GPL vmlinux 0x624bd8b3 __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x62864923 pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x629541c7 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x62a1c981 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0x630478ae class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x631b34cd inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x63467ba3 i2c_new_probed_device -EXPORT_SYMBOL_GPL vmlinux 0x634b38be dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0x63526dee xen_xenbus_fops -EXPORT_SYMBOL_GPL vmlinux 0x635ec980 apei_exec_post_unmap_gars -EXPORT_SYMBOL_GPL vmlinux 0x6379c09f kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0x6388aaef usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0x6393cacc wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x6396fe13 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x63aef704 usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x63b5c7b1 register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x63b7db59 register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x63c57493 sock_update_netprioidx -EXPORT_SYMBOL_GPL vmlinux 0x63e06ad6 __online_page_set_limits -EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str -EXPORT_SYMBOL_GPL vmlinux 0x63ec72c7 acpi_kobj -EXPORT_SYMBOL_GPL vmlinux 0x64090656 device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0x640b4137 blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0x642a4e53 usb_bus_list_lock -EXPORT_SYMBOL_GPL vmlinux 0x642b8fd3 irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0x64318593 acpi_dev_filter_resource_type -EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched -EXPORT_SYMBOL_GPL vmlinux 0x6443d209 rtc_irq_set_state -EXPORT_SYMBOL_GPL vmlinux 0x64841cf9 mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0x64a70cfc io_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x64b7069e apei_mce_report_mem_error -EXPORT_SYMBOL_GPL vmlinux 0x64e24a5e memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x64eda0bb cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0x65062e1e bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup -EXPORT_SYMBOL_GPL vmlinux 0x653026dc tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0x6536953b btree_last -EXPORT_SYMBOL_GPL vmlinux 0x653cb02d intel_msic_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x65496fc8 usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x65690cde __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x65727576 tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0x65798e94 request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0x65835d65 inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x658c8186 amd_get_nb_id -EXPORT_SYMBOL_GPL vmlinux 0x658f1391 pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0x65bdc55a crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0x65c2b8a6 usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65f5e1b4 led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x6625a661 __rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0x662ba35f rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0x6636084c bdev_write_page -EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x664bdd9f crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0x6656f163 crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0x665e630f dma_buf_kmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0x665ecab0 pv_time_ops -EXPORT_SYMBOL_GPL vmlinux 0x666225f2 crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x667fde72 mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x668692ba xen_register_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0x668d7773 pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0x66b2be2b irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x66d4131f disk_get_part -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66e5436d ping_close -EXPORT_SYMBOL_GPL vmlinux 0x66ff48c0 pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0x6701306f crypto_register_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x670fecaa param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target -EXPORT_SYMBOL_GPL vmlinux 0x67497d0a ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy -EXPORT_SYMBOL_GPL vmlinux 0x677886ad regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x678763a1 ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x678f3db4 crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x6790f599 crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x67979c7e regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0x6799cdbe regmap_field_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x67a8cd56 splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0x67f5421b ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0x67fc4353 pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0x680ff8fc serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0x681c77d4 pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0x682e6bb0 hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x6834ac43 srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x6834c54c regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x683c85ad __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x6849940e extcon_set_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0x684b63b9 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x684d36a0 skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x68517a07 posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0x68851ac0 da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x68956406 static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x689d2d0b swiotlb_tbl_sync_single -EXPORT_SYMBOL_GPL vmlinux 0x68a657e5 get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x68ebc8f1 is_dock_device -EXPORT_SYMBOL_GPL vmlinux 0x68ee4598 pci_intx -EXPORT_SYMBOL_GPL vmlinux 0x68ef0acd xenbus_watch_path -EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0x69573f56 acpi_pci_find_root -EXPORT_SYMBOL_GPL vmlinux 0x69610247 usb_phy_generic_register -EXPORT_SYMBOL_GPL vmlinux 0x696134aa dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0x699b0d5e irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x699cc6fc devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x69d1a626 crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x6a020516 rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0x6a0926f1 get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0x6a0f16b3 clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a2a6a19 disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x6a336283 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x6a3512cc regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a5c9487 usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x6a65f151 md_ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x6a72f855 max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x6a75b69f pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x6a787ca3 fuse_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a875762 perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x6a95ddd9 fuse_request_send_background -EXPORT_SYMBOL_GPL vmlinux 0x6aa5069f scsi_internal_device_unblock -EXPORT_SYMBOL_GPL vmlinux 0x6aa868b8 shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0x6ab1b8bb usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x6ab6dbc6 thermal_generate_netlink_event -EXPORT_SYMBOL_GPL vmlinux 0x6acad21f acpi_get_cpuid -EXPORT_SYMBOL_GPL vmlinux 0x6ae6b836 rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x6b020a22 pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority -EXPORT_SYMBOL_GPL vmlinux 0x6b18ab9b crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0x6b6b3123 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b8a7389 __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x6bc755f4 pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x6be676d9 ahash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x6bf1b90d dmi_memdev_name -EXPORT_SYMBOL_GPL vmlinux 0x6bf2196e __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x6c02805c device_create_vargs -EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x6c1251fd apei_exec_read_register -EXPORT_SYMBOL_GPL vmlinux 0x6c1fab37 __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0x6c209eab __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0x6c2e0578 inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data -EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c5fcfaf set_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x6c6538df init_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6c6ad9f6 power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x6c73ae15 dma_buf_kmap -EXPORT_SYMBOL_GPL vmlinux 0x6c7c760f nd_region_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions -EXPORT_SYMBOL_GPL vmlinux 0x6ca011ec disk_part_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x6ca2ed87 lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq -EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0x6ce93ecf usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0x6cfafab9 nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0x6d20c615 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d3a0bb0 gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x6d3ba906 ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0x6d46ba7b gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0x6d49c674 udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x6d7100e0 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0x6dac0acb hugetlb_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x6dd1715d pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x6dd2beef gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x6dd3ee8c usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x6de4c699 rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0x6dea49c1 regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy -EXPORT_SYMBOL_GPL vmlinux 0x6e065aa5 crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0x6e09fff0 subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x6e45eb07 ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0x6e51afc8 percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x6e58ddf0 gnttab_end_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x6e6a5570 apei_get_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x6e6caad4 pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0x6e782c23 iomap_create_wc -EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e85b00b local_touch_nmi -EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6e8a1f9a dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0x6e8aee29 sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x6e8c87e3 spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0x6ea7e4f6 find_vpid -EXPORT_SYMBOL_GPL vmlinux 0x6f07da5c pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0x6f1010a6 acpi_driver_match_device -EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x6f2f60b6 acpi_gpiochip_free_interrupts -EXPORT_SYMBOL_GPL vmlinux 0x6f3add1d sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x6f3b6f1c rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0x6f402ba6 acpi_dev_resource_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x6f4e6a0c regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x6f597c2d disk_part_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x6f68d8ba ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x6f6dc8f3 usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto -EXPORT_SYMBOL_GPL vmlinux 0x6faa9b5e debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0x6faae9b5 gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x7016a897 exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0x701900d8 blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x70201233 unregister_jprobe -EXPORT_SYMBOL_GPL vmlinux 0x704e7bb5 to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0x707930c2 driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0x708b8020 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated -EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70cf8966 i2c_lock_adapter -EXPORT_SYMBOL_GPL vmlinux 0x70ea5397 acpi_dma_request_slave_chan_by_index -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x71143255 acpi_gpiochip_request_interrupts -EXPORT_SYMBOL_GPL vmlinux 0x714e83a7 tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x715d1aa3 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x7162eaaf flush_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0x7198ceb8 __blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0x719b7aba acpi_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab -EXPORT_SYMBOL_GPL vmlinux 0x71e866ee gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x71f33cf3 dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x722ee560 trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0x723ef5ff dm_get_rq_mapinfo -EXPORT_SYMBOL_GPL vmlinux 0x72515d5a snprint_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x726e6a1f blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0x7273c04e bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x727ee3cf sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0x728cac56 wm5102_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x72975844 gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x729cadc8 sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x72a066d3 transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0x72a23a71 percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0x72b719ca irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x72cf714d klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x72d97223 regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x72ec858e rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0x72ef48e2 pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0x72f6982f arizona_dev_init -EXPORT_SYMBOL_GPL vmlinux 0x72f75fb5 gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0x73013896 xenbus_printf -EXPORT_SYMBOL_GPL vmlinux 0x7306e359 wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type -EXPORT_SYMBOL_GPL vmlinux 0x734f0276 __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x73560d86 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0x735e580d mmu_notifier_unregister_no_release -EXPORT_SYMBOL_GPL vmlinux 0x7369c640 rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x7373b2d1 da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x738ac640 led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0x738fd248 intel_msic_reg_update -EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0x73c3e374 pinctrl_dev_get_name -EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x73caa89c rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x73d788d0 zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0x73e12e47 pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0x73e7a044 crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x73f45e6c unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0x73fc5461 sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0x740aef1a pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0x742c75ea devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x743b58e4 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini -EXPORT_SYMBOL_GPL vmlinux 0x744ddced napi_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x744dea27 regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7468b74e __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x746b8e10 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0x74889b01 sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74b7f671 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x74b9f79b hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74be1dd2 metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x74c08941 kvm_async_pf_task_wake -EXPORT_SYMBOL_GPL vmlinux 0x74c90271 spi_setup -EXPORT_SYMBOL_GPL vmlinux 0x74d007c2 perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x74d449ef da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x74deb10c used_vectors -EXPORT_SYMBOL_GPL vmlinux 0x74e7d070 xenbus_probe_devices -EXPORT_SYMBOL_GPL vmlinux 0x75024055 regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0x7517ef09 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm -EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x7540b261 usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x755b2984 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x7571274e blk_queue_flush_queueable -EXPORT_SYMBOL_GPL vmlinux 0x75751265 gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0x7585d909 ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0x75874f00 xenbus_dev_changed -EXPORT_SYMBOL_GPL vmlinux 0x75888b00 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x758f101c pwmchip_add_with_polarity -EXPORT_SYMBOL_GPL vmlinux 0x7595a9c6 swiotlb_map_page -EXPORT_SYMBOL_GPL vmlinux 0x75a0075e unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0x75c2b9f1 memalloc_socks -EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x75d96aaa arizona_clk32k_enable -EXPORT_SYMBOL_GPL vmlinux 0x75e0a2a2 devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0x75f62cb2 devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x75fc4aef ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0x761227be ping_seq_fops -EXPORT_SYMBOL_GPL vmlinux 0x762081db unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x762a5de0 da903x_update -EXPORT_SYMBOL_GPL vmlinux 0x762b4fdc regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x763df98d cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0x7666ea4a skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0x767b9bde nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x76878ac6 usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0x76910575 ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0x769cea32 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x76a4934d user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x76a7201b ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x76ed68f9 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x76f3c206 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x76f8f65a devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x770cf981 tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x771ca702 sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0x771f6350 blkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x77394230 napi_hash_del -EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x775a6ef5 kvm_read_and_reset_pf_reason -EXPORT_SYMBOL_GPL vmlinux 0x778b675a pmc_atom_write -EXPORT_SYMBOL_GPL vmlinux 0x778cc6c7 gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x7790adc0 aout_dump_debugregs -EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77b8401a ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0x77ba686c event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0x77c16418 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0x77dc7f09 unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x77fe6517 genlmsg_new_unicast -EXPORT_SYMBOL_GPL vmlinux 0x77ff18f0 crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x7802c08d pci_get_hp_params -EXPORT_SYMBOL_GPL vmlinux 0x78151326 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x7829e9a5 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x782b7963 rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0x783e9192 ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x78575bee atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x785cf1c3 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x7874b5ec unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x78955f02 cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0x78a7804e fat_detach -EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0x78b2ced9 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0x78cb7a6a skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x78e84890 kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x78ee6fba wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0x7910bee9 crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0x7938464e gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x79429427 ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off -EXPORT_SYMBOL_GPL vmlinux 0x79489f86 mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x7984963a usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss -EXPORT_SYMBOL_GPL vmlinux 0x79a71c48 kernel_stack_pointer -EXPORT_SYMBOL_GPL vmlinux 0x79b84b1b intel_svm_unbind_mm -EXPORT_SYMBOL_GPL vmlinux 0x79d7493f kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0x79dc2b5b devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x79ddd9a9 cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped -EXPORT_SYMBOL_GPL vmlinux 0x7a038d31 usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0x7a093833 set_memory_array_wt -EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x7a450e8a xenbus_match -EXPORT_SYMBOL_GPL vmlinux 0x7a6dd905 nd_numa_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x7a7ea1f5 ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x7a90ca37 ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read -EXPORT_SYMBOL_GPL vmlinux 0x7ac678d9 blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0x7ac7410d devres_add -EXPORT_SYMBOL_GPL vmlinux 0x7ac7cea5 task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x7ac8e5b0 acpi_gsi_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x7ad0f173 usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0x7aff31d1 rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x7b1d3e74 dma_request_slave_channel_reason -EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set -EXPORT_SYMBOL_GPL vmlinux 0x7b202401 usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x7b26325e ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x7b2b8b98 shash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x7b477df8 ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0x7b699f70 spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x7b84bf3f tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x7b87d483 clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7bf96f0d led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7bff4171 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x7c41838f extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7c598b24 invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0x7c5f4d2c pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x7c7621a9 i2c_generic_gpio_recovery -EXPORT_SYMBOL_GPL vmlinux 0x7c89d12a pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7cc03858 bio_alloc_mddev -EXPORT_SYMBOL_GPL vmlinux 0x7cc18fcf ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cee1628 regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d133548 handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x7d4068eb sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0x7d4f4db7 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d9c2402 __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7db8a1c5 gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0x7dc2c84d crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x7dc978ba tps65217_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0x7e183f13 tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x7e35c7b0 ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x7e5036b9 sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e75dce0 dax_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0x7ece7d94 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x7ef61ab0 driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x7efa36ae __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x7f09fbf4 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature -EXPORT_SYMBOL_GPL vmlinux 0x7f378c40 perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0x7f43af36 device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x7f4ccea8 srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x7f598f44 unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x7f73d368 __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x7f74f6f8 gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7fb04154 component_add -EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8004115f devres_find -EXPORT_SYMBOL_GPL vmlinux 0x80184043 trace_buffer_unlock_commit_regs -EXPORT_SYMBOL_GPL vmlinux 0x801ddab2 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0x8022bcff device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x8024ef81 tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0x803cd0cc pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x805ea36b spi_alloc_master -EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x80750822 thermal_notify_framework -EXPORT_SYMBOL_GPL vmlinux 0x807c08c5 blocking_notifier_chain_cond_register -EXPORT_SYMBOL_GPL vmlinux 0x808a0200 clk_debugfs_add_file -EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x809529fd alloc_iova -EXPORT_SYMBOL_GPL vmlinux 0x80968bd2 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0x80a76e33 devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x80c603f2 ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80d45178 pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x80f8589f trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x811974ce pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x81198b37 spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x8164c141 fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0x81744910 percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0x8191c781 clear_foreign_p2m_mapping -EXPORT_SYMBOL_GPL vmlinux 0x81ce03c9 __blk_put_request -EXPORT_SYMBOL_GPL vmlinux 0x81e80354 md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0x81ff76f0 put_device -EXPORT_SYMBOL_GPL vmlinux 0x820d63a8 bus_register -EXPORT_SYMBOL_GPL vmlinux 0x8223a46a devres_get -EXPORT_SYMBOL_GPL vmlinux 0x822ad4c7 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0x823b2387 pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x824660ee to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0x825464e1 gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x8272dccf sg_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x82978442 call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x82bbae90 class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x82c6a453 crypto_alloc_ablkcipher -EXPORT_SYMBOL_GPL vmlinux 0x82c77ef7 sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0x82cb9417 gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x82d1e7fd device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82dbec19 erst_write -EXPORT_SYMBOL_GPL vmlinux 0x82e208a9 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x82f73d9e pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x82fe7ca8 crypto_tfm_in_queue -EXPORT_SYMBOL_GPL vmlinux 0x831221cc platform_device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0x8334e749 acpi_dev_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x834d9d93 phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x836666ce alarm_init -EXPORT_SYMBOL_GPL vmlinux 0x8371a959 pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0x83874a17 iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0x83ba5fbb hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x83bf01f0 acpi_dev_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x83cbf8c0 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x8414f491 regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0x841b27ad dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x8422d0d7 ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0x84376155 pci_ats_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge -EXPORT_SYMBOL_GPL vmlinux 0x844d1e1d ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0x845b6971 validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x84619a7c noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x8462bdcf btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0x8465ff8d cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0x848448fd ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x8496029d usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x84b5bf2b pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0x84c685ae securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x84c81997 blk_queue_flush -EXPORT_SYMBOL_GPL vmlinux 0x84cb193f get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x84d0e951 regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x84d6f014 pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x84d7fad6 dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0x84e839a9 acpi_os_unmap_iomem -EXPORT_SYMBOL_GPL vmlinux 0x85029527 ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x8507067b netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read -EXPORT_SYMBOL_GPL vmlinux 0x852372e9 ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0x85445e83 pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0x854630f8 serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0x855bbdbb rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x85778e62 wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x8582a1cd nvdimm_blk_region_create -EXPORT_SYMBOL_GPL vmlinux 0x8586b9f8 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x858737ec fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x859381fe palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0x85991157 extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x85c642f4 pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x85cb2c45 xen_has_pv_devices -EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq -EXPORT_SYMBOL_GPL vmlinux 0x85f03b79 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0x860c335b xenbus_dev_is_online -EXPORT_SYMBOL_GPL vmlinux 0x8614876a bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod -EXPORT_SYMBOL_GPL vmlinux 0x862cf8c0 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x86370567 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0x8648ed0a rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x8652110e pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0x8654be58 hv_remove_vmbus_irq -EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq -EXPORT_SYMBOL_GPL vmlinux 0x8674edc2 regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x86819bc6 irq_ts_restore -EXPORT_SYMBOL_GPL vmlinux 0x8685f32e set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x8688d399 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x868bfcd3 blk_mq_cancel_requeue_work -EXPORT_SYMBOL_GPL vmlinux 0x8696f8e5 crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x869a9a13 tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0x86a51007 gnttab_end_foreign_transfer -EXPORT_SYMBOL_GPL vmlinux 0x86ae25a4 rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0x86b200ad crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x86ba0edf regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0x86bfeff5 ata_scsi_simulate -EXPORT_SYMBOL_GPL vmlinux 0x86dc3c3c spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0x86e9dd94 irq_domain_add_simple -EXPORT_SYMBOL_GPL vmlinux 0x86edd8fc usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x86f3cdd4 pci_msi_prepare -EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared -EXPORT_SYMBOL_GPL vmlinux 0x87338d7d kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error -EXPORT_SYMBOL_GPL vmlinux 0x874c4e23 regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0x8757e142 serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0x876a3a00 devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x87922f39 subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0x87924fd5 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x879d2afa ip_tunnel_get_stats64 -EXPORT_SYMBOL_GPL vmlinux 0x87bc7476 tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x87bea516 virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0x87dde339 tpm_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x87f581df ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0x88136838 wm8997_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x8824ba01 dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x8831f8b1 kmap_atomic_pfn -EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x8847f799 arizona_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x8851c7ad dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x88be7c33 rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0x88c12a8d regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x88c3d9ca devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0x88e39181 tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0x88f4007a relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x891933b1 io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames -EXPORT_SYMBOL_GPL vmlinux 0x891a5f83 ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x891f8c44 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x892db19a da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x893fb585 crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x89567a3c rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0x8956aeae apei_exec_ctx_init -EXPORT_SYMBOL_GPL vmlinux 0x8965509c security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0x896e5444 __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x8970fab6 pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x8972bfb8 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x89ca30d4 unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x8a1d15d1 platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x8a553f55 ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x8a559846 gnttab_setup_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod -EXPORT_SYMBOL_GPL vmlinux 0x8a56e2e9 gpiochip_set_chained_irqchip -EXPORT_SYMBOL_GPL vmlinux 0x8a5f86ce fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x8a78989f irq_from_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control -EXPORT_SYMBOL_GPL vmlinux 0x8a89f020 sched_setscheduler_nocheck -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8abdd951 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x8ac293c6 srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x8aceeed4 ping_proc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8ad03194 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x8ad61748 fat_scan -EXPORT_SYMBOL_GPL vmlinux 0x8b04668e bind_interdomain_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b2427c6 crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x8b556e7e xen_swiotlb_sync_sg_for_cpu -EXPORT_SYMBOL_GPL vmlinux 0x8b627f9a ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0x8b760ead acpi_bus_trim -EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x8b8655ef rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x8b870811 nl_table -EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0x8b982d6c nvdimm_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x8b9c93d1 crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0x8ba7527b rtc_irq_register -EXPORT_SYMBOL_GPL vmlinux 0x8baf3b2b console_drivers -EXPORT_SYMBOL_GPL vmlinux 0x8bb47e23 __xenbus_register_backend -EXPORT_SYMBOL_GPL vmlinux 0x8bc41382 fpu__restore -EXPORT_SYMBOL_GPL vmlinux 0x8bf4a299 __ablkcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x8bf7f528 usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c06a108 xenbus_transaction_start -EXPORT_SYMBOL_GPL vmlinux 0x8c40a416 wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x8c580516 sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status -EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c98c5ba class_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8c9d1661 arch_phys_wc_index -EXPORT_SYMBOL_GPL vmlinux 0x8ca314c5 each_symbol_section -EXPORT_SYMBOL_GPL vmlinux 0x8cc5168d __securityfs_setup_d_inode -EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params -EXPORT_SYMBOL_GPL vmlinux 0x8cd9f935 setup_APIC_eilvt -EXPORT_SYMBOL_GPL vmlinux 0x8cdf03c6 spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0x8cf72ad8 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x8d0ac4fe rhashtable_insert_rehash -EXPORT_SYMBOL_GPL vmlinux 0x8d18e953 crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d4316de cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0x8d522714 __rcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x8d55a360 regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0x8d5ca9d0 fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0x8d77720f acpi_unbind_one -EXPORT_SYMBOL_GPL vmlinux 0x8d897eed device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0x8dcb0f07 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x8de999c1 ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0x8e0b053a platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0x8e123d31 ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x8e1aa9a8 devm_mdiobus_alloc_size -EXPORT_SYMBOL_GPL vmlinux 0x8e1e7f94 wait_on_page_bit_killable_timeout -EXPORT_SYMBOL_GPL vmlinux 0x8e272ef8 debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0x8e2bfee1 led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x8e38aa82 wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x8e3d111e bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0x8e5a9efd debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x8e648634 rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0x8e80b7b8 cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x8ea57634 pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x8eb97f92 iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8ebd51de tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0x8ef4916e subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0x8efda6d6 thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x8f03b648 device_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f0b00e7 __online_page_increment_counters -EXPORT_SYMBOL_GPL vmlinux 0x8f111822 gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0x8f558af2 device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8f875e3c rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0x8fdff86b wm5110_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x8feb2cf7 sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0x8feea51e get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0x8ffbd14c irqd_cfg -EXPORT_SYMBOL_GPL vmlinux 0x9009602a acpi_bus_get_ejd -EXPORT_SYMBOL_GPL vmlinux 0x9014570b fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9019c6f4 sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0x9022d5bc memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x9024bff5 mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x903091c1 dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x903bb65b acpi_dev_resource_ext_address_space -EXPORT_SYMBOL_GPL vmlinux 0x9047c11a trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0x90562599 usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0x90580fde skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x905ec4fa xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x9083d39d metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x90bfe76c xen_unmap_domain_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0x90c0c66b regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x90d10830 mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0x90d30dd6 page_cache_async_readahead -EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify -EXPORT_SYMBOL_GPL vmlinux 0x90df28f9 netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0x90e04835 xen_swiotlb_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x90e4694b proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0x9106059c pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0x912cc8bb ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0x91404537 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x91504546 key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x91a7ed07 fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0x91b0ba62 regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x91bcd048 dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x91c0470b usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91de4dcd cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x91f48346 regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0x91fac601 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0x923be00d iommu_domain_window_disable -EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x9277f6b4 led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0x92a1024e fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x92c5cfa4 __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92e92113 devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x92f6e4b6 __ktime_divns -EXPORT_SYMBOL_GPL vmlinux 0x930d81c1 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x9312d80e evtchn_put -EXPORT_SYMBOL_GPL vmlinux 0x931ddfd4 crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x931ff3e5 subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x933f9c77 pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x937f9bca __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x93982ffc sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x93a9702d do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0x93b61fa2 gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x93bf2fcd __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x93c6c860 pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x93ddb021 sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x94307682 dax_pfn_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0x9432b036 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x943e0b58 blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0x943e887e nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event -EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x948630d6 clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0x948fee3f rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0x94a5fcf2 task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0x94c318be apei_exec_collect_resources -EXPORT_SYMBOL_GPL vmlinux 0x94c813c7 ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0x94d7a8db posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x94e121bd usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop -EXPORT_SYMBOL_GPL vmlinux 0x94f23101 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x94f8ef63 ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x95116f34 mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x953b6f7a __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0x953c9fd3 serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x95411309 xenbus_dev_probe -EXPORT_SYMBOL_GPL vmlinux 0x9550c3cc fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x9564ecbd rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x9583be18 dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x958ec10e pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x959d70a8 to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0x95af6c6f crypto_blkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95bf1b9f da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x95d8c09c thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x95ebb846 rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0x95f178f9 fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0x96091cc9 reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x962dfe45 devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x963e0ee7 usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x9644b2fc usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0x964add15 xenbus_scanf -EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x96637d64 crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0x96705fbb pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x96cb60ee attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0x96e1abc5 btree_init -EXPORT_SYMBOL_GPL vmlinux 0x96eef7b8 __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x96f22ff4 regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0x970cdd68 list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0x970e5e70 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x9711ddc3 debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0x972a4b96 class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x973ab8ad cper_estatus_print -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x9766974b platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0x97c02628 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0x97d20b38 scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97f97179 bus_find_device_by_name -EXPORT_SYMBOL_GPL vmlinux 0x97f9c868 __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0x981113a9 inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x9833d313 extcon_set_cable_state -EXPORT_SYMBOL_GPL vmlinux 0x983ddd19 root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9860b3dc regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0x986420a1 mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x9868743f register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x988e90d6 crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0x988fcecd devm_regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9893238c ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x989c3f33 __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0x989eb047 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on -EXPORT_SYMBOL_GPL vmlinux 0x991e7b9d device_init_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x993a75fd xen_xlate_unmap_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0x99487928 split_page -EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x9965ad13 arizona_clk32k_disable -EXPORT_SYMBOL_GPL vmlinux 0x9973add9 __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range -EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x9986a934 acpi_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0x99b754e7 crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x99bf1395 ablkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x99c4d911 scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0x99ce0592 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x99fa4c43 gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0x9a10da89 __tracepoint_extlog_mem_event -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a11bcc9 regulator_can_change_voltage -EXPORT_SYMBOL_GPL vmlinux 0x9a2c6e54 usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0x9a387401 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck -EXPORT_SYMBOL_GPL vmlinux 0x9a8c4258 serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x9aaa63d3 pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9ac550be uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9afcbdfd regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x9b524aa0 dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0x9b720312 acpi_target_system_state -EXPORT_SYMBOL_GPL vmlinux 0x9b8f5661 debugfs_remove_recursive -EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus -EXPORT_SYMBOL_GPL vmlinux 0x9ba32fc8 usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0x9ba3e692 blk_queue_bypass_end -EXPORT_SYMBOL_GPL vmlinux 0x9bcd1cba of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x9bd72b78 apei_write -EXPORT_SYMBOL_GPL vmlinux 0x9bda41b0 pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0x9be233d5 __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x9be9b0cd ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9c09dc5c nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x9c0fd79b tpm2_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x9c29178b da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0x9c2e4b66 acpi_unregister_gsi -EXPORT_SYMBOL_GPL vmlinux 0x9c38c94f device_find_child -EXPORT_SYMBOL_GPL vmlinux 0x9c3ce8f1 gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0x9c443cf2 rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0x9c462261 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0x9c59e0bc pwm_free -EXPORT_SYMBOL_GPL vmlinux 0x9c6783c7 device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0x9cb393ec regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9cc58e63 shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x9ccdf526 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0x9cefca8d efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0x9d06688b register_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0x9d180ff1 blk_unprep_request -EXPORT_SYMBOL_GPL vmlinux 0x9d1f0861 device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0x9d2782a9 rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x9d3850e1 gnttab_alloc_grant_references -EXPORT_SYMBOL_GPL vmlinux 0x9d53a46f tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0x9d6105c2 generic_access_phys -EXPORT_SYMBOL_GPL vmlinux 0x9d62c898 unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported -EXPORT_SYMBOL_GPL vmlinux 0x9de09db4 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x9de0fbfd aead_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0x9dea30b7 remove_irq -EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0x9dff6d55 regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0x9e0ad819 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x9e150c03 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0x9e3610cd regmap_fields_write -EXPORT_SYMBOL_GPL vmlinux 0x9e44c4e3 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e54954e devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0x9e6a521d pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x9e970bd5 rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0x9ebff902 start_thread -EXPORT_SYMBOL_GPL vmlinux 0x9ec89f52 __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ef9da77 ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0x9f0a4828 dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0x9f32716b usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0x9f3d9d92 crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0x9f3e57e4 iommu_map -EXPORT_SYMBOL_GPL vmlinux 0x9f3f4e91 regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x9f419903 ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0x9f5d8021 fsnotify -EXPORT_SYMBOL_GPL vmlinux 0x9f5e9465 rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0x9f5fae51 debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x9f62a543 pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x9f889e92 scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x9f9ae03b efivar_entry_set_get_size -EXPORT_SYMBOL_GPL vmlinux 0x9faa5419 crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9ffd465d __bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0xa000552e irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0xa0161de2 pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0xa0208e02 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0xa02840bd do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xa02b5e8f thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0xa04cde07 trace_call_bpf -EXPORT_SYMBOL_GPL vmlinux 0xa050a483 sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0xa06b9451 ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0xa06c9ffa kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0xa086b6a9 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0xa086dc01 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0xa0b74e3a ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0xa0c4bcf3 debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0xa0dd507e task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0xa0e4aeed ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xa0ee894a crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0xa0f9f764 evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type -EXPORT_SYMBOL_GPL vmlinux 0xa113bcc5 irq_create_direct_mapping -EXPORT_SYMBOL_GPL vmlinux 0xa11b55b2 xen_start_info -EXPORT_SYMBOL_GPL vmlinux 0xa11bbbfa usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0xa1213162 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0xa13773fe iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0xa14a1817 trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0xa151f58c posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end -EXPORT_SYMBOL_GPL vmlinux 0xa1719a87 mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa17301d9 pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0xa19c39bf agp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0xa1b6ec8c tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0xa1d3afb6 pci_hp_change_slot_info -EXPORT_SYMBOL_GPL vmlinux 0xa1f6ce51 __sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0xa1f79553 xen_create_contiguous_region -EXPORT_SYMBOL_GPL vmlinux 0xa210a542 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa2159209 ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0xa231a6c1 nd_blk_region_to_dimm -EXPORT_SYMBOL_GPL vmlinux 0xa24232ae __remove_pages -EXPORT_SYMBOL_GPL vmlinux 0xa2472d16 acpi_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0xa24a984f usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa2881262 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xa28b5254 dma_buf_kunmap -EXPORT_SYMBOL_GPL vmlinux 0xa28bf03f cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa2a7e542 of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xa2b23a5c transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0xa2b9c993 clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xa2ba48d9 ata_do_eh -EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xa2cb16ff trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0xa2ce9829 blk_mq_request_started -EXPORT_SYMBOL_GPL vmlinux 0xa2e854eb ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xa2ee03f0 regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0xa2f19974 register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xa30c4ff6 pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0xa31d1a37 devm_led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0xa31e02f1 usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0xa34277b6 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0xa34577d5 device_create -EXPORT_SYMBOL_GPL vmlinux 0xa34c48e2 __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0xa34ecde7 spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0xa353fffc xenbus_rm -EXPORT_SYMBOL_GPL vmlinux 0xa3637bb5 platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register -EXPORT_SYMBOL_GPL vmlinux 0xa389f236 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3b21b93 usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0xa3b90338 vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0xa3b92831 debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3b9750a bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0xa3d0a3a1 trace_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xa3d2a9ca usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0xa3e58789 efivar_validate -EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0xa3ec5338 pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xa3ec76f1 ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xa41029d9 dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0xa425067d uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xa42d0739 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0xa42dd2db virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0xa4353ed3 synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0xa452c297 hpet_mask_rtc_irq_bit -EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq -EXPORT_SYMBOL_GPL vmlinux 0xa466de38 acpi_processor_ffh_cstate_enter -EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa4b058d7 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa4deceef pm_complete_with_resume_check -EXPORT_SYMBOL_GPL vmlinux 0xa4f8fc36 invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0xa508f268 regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0xa50a1684 serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0xa51f84a7 xenbus_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xa558a919 crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0xa55c042a bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa569357f gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0xa58eaed4 crypto_ahash_type -EXPORT_SYMBOL_GPL vmlinux 0xa5970cd0 fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0xa5a0a47e gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xa5cbe04d blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xa5d14d14 usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0xa5df5908 nd_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0xa62892c6 efivar_sysfs_list -EXPORT_SYMBOL_GPL vmlinux 0xa62ea6c6 regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xa6424cbd crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6d3649d blkg_print_stat_ios_recursive -EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa759feed ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0xa7690761 unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xa76fd8e1 blkg_print_stat_ios -EXPORT_SYMBOL_GPL vmlinux 0xa7859f68 uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0xa78a12c6 rtc_irq_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa796cc37 usb_acpi_power_manageable -EXPORT_SYMBOL_GPL vmlinux 0xa7bb3b97 device_create_file -EXPORT_SYMBOL_GPL vmlinux 0xa7dd93a3 set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0xa7de51b4 ata_eh_qc_retry -EXPORT_SYMBOL_GPL vmlinux 0xa7fae3cb alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xa7fb6136 power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xa7fe1b3c device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0xa8015518 dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0xa801b359 efivar_entry_iter_begin -EXPORT_SYMBOL_GPL vmlinux 0xa8142955 irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa86efcc6 wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa8747d6f regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0xa885d5d1 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0xa89d7993 acpi_initialize_hp_context -EXPORT_SYMBOL_GPL vmlinux 0xa8a3c733 rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xa8dfb81f regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0xa8e5c679 i2c_new_device -EXPORT_SYMBOL_GPL vmlinux 0xa8fb21c5 sched_setscheduler -EXPORT_SYMBOL_GPL vmlinux 0xa901ba7d ata_base_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit -EXPORT_SYMBOL_GPL vmlinux 0xa9143342 find_iova -EXPORT_SYMBOL_GPL vmlinux 0xa91aa116 relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa96438fd dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0xa974c1f8 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0xa979a04e gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0xa9a39752 tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0xa9bab4ba gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0xa9c1153a dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaa0bc4cc gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xaa15f525 gnttab_foreach_grant_in_range -EXPORT_SYMBOL_GPL vmlinux 0xaa1a03ff pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xaa23dee8 nvdimm_bus_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0xaa5e8453 wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0xaa9edf68 serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaabbb648 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xaabce590 rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0xaad66ad1 usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xaafe8ad1 pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xab01acbe gnttab_request_free_callback -EXPORT_SYMBOL_GPL vmlinux 0xab1013ae devm_acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0xab219617 iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0xab24d2c3 device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del -EXPORT_SYMBOL_GPL vmlinux 0xab681292 __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request -EXPORT_SYMBOL_GPL vmlinux 0xab768de1 crypto_alloc_instance2 -EXPORT_SYMBOL_GPL vmlinux 0xab7fd9f8 virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0xab885541 __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0xab9110fb crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0xab945a16 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0xab975de6 ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xaba4cc58 clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xac0be560 rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0xac19350a simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xac1b8105 pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0xac2aa676 netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0xac36748b gpiochip_add -EXPORT_SYMBOL_GPL vmlinux 0xac3a1bc2 devm_regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xac71e262 wakeup_source_prepare -EXPORT_SYMBOL_GPL vmlinux 0xac97b48f hypervisor_kobj -EXPORT_SYMBOL_GPL vmlinux 0xac9ce195 kvm_async_pf_task_wait -EXPORT_SYMBOL_GPL vmlinux 0xacafa8e7 vector_used_by_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xacbfa657 tps65217_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xacbfdfb4 acpi_get_pci_dev -EXPORT_SYMBOL_GPL vmlinux 0xacd708d8 pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0xacdcce67 pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list -EXPORT_SYMBOL_GPL vmlinux 0xad0450de pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0xad080b34 power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0xad1221a3 crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0xad279bbc __blkdev_driver_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xad3d4ba4 dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0xad4354e4 yield_to -EXPORT_SYMBOL_GPL vmlinux 0xad593d07 usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0xad66bf84 fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0xad8d8ab0 xen_physdev_op_compat -EXPORT_SYMBOL_GPL vmlinux 0xad95282f apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0xadcd510f register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xadd16721 setup_irq -EXPORT_SYMBOL_GPL vmlinux 0xadd4a869 elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0xadf3a4ac debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0xae1d159c page_cache_sync_readahead -EXPORT_SYMBOL_GPL vmlinux 0xae2ed049 rio_mport_send_doorbell -EXPORT_SYMBOL_GPL vmlinux 0xae369781 sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xae4f19c4 tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xae56bed8 tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0xae6782a4 irq_find_mapping -EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae6b8d11 __module_address -EXPORT_SYMBOL_GPL vmlinux 0xae750eba crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae84f419 nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xae8dcdc3 __netpoll_free_async -EXPORT_SYMBOL_GPL vmlinux 0xae929bd4 fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0xaebeea3b blkg_dev_name -EXPORT_SYMBOL_GPL vmlinux 0xaec1ef8d iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0xaec4a5d5 i2c_new_dummy -EXPORT_SYMBOL_GPL vmlinux 0xaecdfe87 regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xaed6a2a4 thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0xaf0081d8 smpboot_update_cpumask_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0xaf075c2c ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0xaf08243d ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0xaf4cd6d3 acpi_os_map_memory -EXPORT_SYMBOL_GPL vmlinux 0xaf688523 nf_queue_entry_release_refs -EXPORT_SYMBOL_GPL vmlinux 0xaf9439db leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xafd68c25 usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0xafeb2978 pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0xafec9ec3 ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0xaff43516 shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xb0019dc8 call_filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0xb01158f5 blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb0390be7 devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xb060d623 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb08729c2 inode_congested -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0bce4f0 __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0xb0be5c4d __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0xb0be96ef adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb0e9c49b sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0xb1205cc6 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0xb12220f4 cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0xb13713cb rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read -EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb172ffac efivars_sysfs_init -EXPORT_SYMBOL_GPL vmlinux 0xb1834817 key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb192f935 phy_put -EXPORT_SYMBOL_GPL vmlinux 0xb1a5f2fe usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched -EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain -EXPORT_SYMBOL_GPL vmlinux 0xb1c5a6d2 device_add -EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb20e5acb crypto_init_shash_spawn -EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb22a4b8f ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0xb24586ba __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0xb24f9866 ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb2a6f337 xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xb2c9513d rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xb2d9664e phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0xb2d975cc ata_sff_data_xfer_noirq -EXPORT_SYMBOL_GPL vmlinux 0xb2e71101 seq_open_net -EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2f8aa90 md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init -EXPORT_SYMBOL_GPL vmlinux 0xb3b72ca4 locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0xb3cfa787 regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0xb3f3959b sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0xb3f6f25f kern_mount_data -EXPORT_SYMBOL_GPL vmlinux 0xb40d8d8f __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xb418b9cf dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0xb44e47f6 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0xb4557e67 __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xb45fa6c5 pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0xb4632676 set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xb46f0fa1 regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0xb4ace27b of_css -EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4c433bc xen_swiotlb_map_sg_attrs -EXPORT_SYMBOL_GPL vmlinux 0xb4e14553 gnttab_query_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb518aa4d watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xb53d7dc0 shash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0xb5404448 ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0xb54d40db cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xb5761836 __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0xb579ff5a sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited -EXPORT_SYMBOL_GPL vmlinux 0xb592bf90 xen_remap_domain_gfn_array -EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table -EXPORT_SYMBOL_GPL vmlinux 0xb5c4b031 acpi_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xb5e896fb tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0xb5eff9ea ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb5fb8160 rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xb5fed43c flush_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0xb61a8143 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0xb6230f1f gnttab_grant_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb63981a6 simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0xb65162bd irq_create_strict_mappings -EXPORT_SYMBOL_GPL vmlinux 0xb65e369d pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0xb66421b2 acpi_str_to_uuid -EXPORT_SYMBOL_GPL vmlinux 0xb66d58ae wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xb6831e29 ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0xb68ee39b usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0xb69d7bb3 crypto_alloc_pcomp -EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xb6b73878 ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0xb6b9d471 __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0xb6bc49a9 __supported_pte_mask -EXPORT_SYMBOL_GPL vmlinux 0xb6bedc2e crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0xb6cfde1d fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb711d130 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xb718f2f9 sfi_table_parse -EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase -EXPORT_SYMBOL_GPL vmlinux 0xb7364a5d pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0xb74bff2b led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0xb758319d rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb75b88d6 extcon_update_state -EXPORT_SYMBOL_GPL vmlinux 0xb76c35e6 devm_mdiobus_free -EXPORT_SYMBOL_GPL vmlinux 0xb790945a pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0xb7bca51b inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0xb7c3cbd0 perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0xb7d0d06a crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time -EXPORT_SYMBOL_GPL vmlinux 0xb7d9ad4b i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0xb7e22e5d usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0xb876ffff devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xb8811f24 nf_register_afinfo -EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb89e3985 __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xb8b0cac4 register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain -EXPORT_SYMBOL_GPL vmlinux 0xb8b3c3b8 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0xb8cb639e sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8d9d374 usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xb8ea050d usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0xb8f45693 rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0xb8f4755f usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0xb91975f9 fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0xb92427b4 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0xb94f1b24 get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0xb9547d82 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0xb9783e9a nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0xb99d5837 xenbus_read -EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb9be6b93 vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9c769d9 devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9e8618f ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0xb9f27771 regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xba0f67d7 pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0xba111604 regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba433e07 pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0xba5e1570 devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xba6df6ea dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0xba73ce62 usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0xba8213d9 blk_queue_rq_timed_out -EXPORT_SYMBOL_GPL vmlinux 0xba8929ea percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xba94c685 cper_estatus_check -EXPORT_SYMBOL_GPL vmlinux 0xba9a2a1f class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xbaadca8a rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbae5cdc4 efivars_kobject -EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb1c327b get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0xbb4a7b1b uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0xbb58b814 iomap_free -EXPORT_SYMBOL_GPL vmlinux 0xbb59ddbf tps65217_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xbb5b08b4 blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0xbb630b18 fat_attach -EXPORT_SYMBOL_GPL vmlinux 0xbb7cf9cb jump_label_rate_limit -EXPORT_SYMBOL_GPL vmlinux 0xbb7e49ce pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0xbb8124c9 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xbba03100 usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info -EXPORT_SYMBOL_GPL vmlinux 0xbbc8af69 ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0xbbd4f657 xen_pcpu_id -EXPORT_SYMBOL_GPL vmlinux 0xbc04ee81 debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0xbc12f372 percpu_ida_for_each_free -EXPORT_SYMBOL_GPL vmlinux 0xbc38e605 ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0xbc4217d4 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0xbc5b2b78 cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0xbc695c49 clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc7f4b6e blkg_print_stat_bytes -EXPORT_SYMBOL_GPL vmlinux 0xbc871c14 regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0xbca0201a sfi_mrtc_array -EXPORT_SYMBOL_GPL vmlinux 0xbca5549b skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbcb5ecee skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts -EXPORT_SYMBOL_GPL vmlinux 0xbcc00632 power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcd69fb2 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0xbcdbb148 virtqueue_get_avail -EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbce25301 device_register -EXPORT_SYMBOL_GPL vmlinux 0xbcf4ad3e screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0xbd182b05 debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xbd3e0e87 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd40fcda ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0xbd86b127 usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xbd95c1d9 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0xbdc08de0 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0xbdd5f10f apei_hest_parse -EXPORT_SYMBOL_GPL vmlinux 0xbdddb5cd __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xbded7fd5 sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0xbdeff382 alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0xbdfa16e0 serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0xbdfb69a3 md_is_badblock -EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xbe267ed3 extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0xbe399558 percpu_up_read -EXPORT_SYMBOL_GPL vmlinux 0xbe480c1e __pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0xbe546f74 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0xbe58e4ab usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe788600 device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0xbe87f06b rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbec69bca cpufreq_governor_dbs -EXPORT_SYMBOL_GPL vmlinux 0xbecc6006 scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0xbee474ae bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbeeca971 __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0xbef8b860 transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf32fb1d get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0xbf4bdddb perf_trace_buf_prepare -EXPORT_SYMBOL_GPL vmlinux 0xbf518e2b regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0xbf7cc8fb iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xbf9b66d0 phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0xbfaa1ea3 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0xbfb1be70 hv_setup_vmbus_irq -EXPORT_SYMBOL_GPL vmlinux 0xbfb43010 xen_swiotlb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfc7b1e2 led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0xbfcca291 usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfd10bb7 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0xbfd4b536 usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xbfdb31de cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0xbfdf0f69 pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbff58aba rio_get_asm -EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 -EXPORT_SYMBOL_GPL vmlinux 0xc0031767 devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xc0198da4 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xc019dd44 ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0xc068a862 dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0xc084b098 crypto_ablkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc0900fcf acpi_os_get_iomem -EXPORT_SYMBOL_GPL vmlinux 0xc0a480f6 bus_set_iommu -EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0ab1bd3 fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0xc0e75cec visitor128 -EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc0fd2148 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xc10fd22a __inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0xc116bddd sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xc11cf059 br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0xc12e0ada srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0xc13c254d regmap_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xc15441d9 tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0xc164642e xenbus_otherend_changed -EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc17cb89a attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0xc17ebfbd extcon_register_interest -EXPORT_SYMBOL_GPL vmlinux 0xc17fc416 tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0xc18578ed process_srcu -EXPORT_SYMBOL_GPL vmlinux 0xc1b57c47 irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0xc1c1de52 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0xc1dd3787 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc1f4d980 ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0xc1fb46c1 cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xc1fd531b skb_segment -EXPORT_SYMBOL_GPL vmlinux 0xc2005b09 xenbus_dev_groups -EXPORT_SYMBOL_GPL vmlinux 0xc22637ec tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc24b8e34 ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0xc2507ab9 raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0xc25bb52c __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xc25df14d __blk_run_queue_uncond -EXPORT_SYMBOL_GPL vmlinux 0xc26351f8 bind_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xc276077a da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0xc27a86b2 regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0xc287d96a kvm_set_posted_intr_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0xc2c8d851 devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0xc2dd07f8 regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0xc2e728dc ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xc306eae8 xen_unregister_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0xc30a4ad3 percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0xc3122a2b cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xc3336430 acpi_subsys_prepare -EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc3428fd7 cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0xc36b55bd usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xc38dcb43 rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xc38f0b35 ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0xc39056fe gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0xc39953a7 inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0xc3ad8689 part_round_stats -EXPORT_SYMBOL_GPL vmlinux 0xc3affdd7 crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xc3b20b61 usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xc3c7744f fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xc3c9fe41 wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xc3df36da acpi_match_device -EXPORT_SYMBOL_GPL vmlinux 0xc3e597dc dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0xc3e90ff0 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc3eaa113 led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc3f5a5a7 serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc42c1a3b gov_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xc4462292 ata_eh_thaw_port -EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc4787d14 l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0xc48911fc xen_swiotlb_sync_sg_for_device -EXPORT_SYMBOL_GPL vmlinux 0xc48aa3cb user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc48faa88 devm_usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0xc4930b8e irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0xc4958e61 platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xc4ad979d gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0xc4aff0d0 irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xc4b5161e devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0xc5076ac4 device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0xc5397da6 xenbus_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0xc54cf45b platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc5914a16 usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0xc608974c virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0xc609c616 cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0xc615f163 rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc62c102c pinctrl_dev_get_devname -EXPORT_SYMBOL_GPL vmlinux 0xc62d5def power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0xc62fa02b lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6ab63c6 hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xc6d493a0 regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0xc6f59de4 unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xc7002ac4 evtchn_make_refcounted -EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put -EXPORT_SYMBOL_GPL vmlinux 0xc70e002b wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xc7331d60 ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xc7410e86 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0xc7531d72 devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc771555f led_init_core -EXPORT_SYMBOL_GPL vmlinux 0xc783e5a5 regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0xc79bc455 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7b33d33 kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer -EXPORT_SYMBOL_GPL vmlinux 0xc7dbf565 desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc7eb480c inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0xc7f631d9 uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0xc80c0dba class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xc8164a67 xenbus_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc81b765d put_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0xc855811b power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xc871a3dd dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0xc8782c46 devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xc87e2d7a sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event -EXPORT_SYMBOL_GPL vmlinux 0xc8954314 ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0xc89f1520 pci_try_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0xc8ced272 __init_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0xc8f9375d pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0xc8fa4caa usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0xc90c0f0e bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xc928e675 ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0xc953dadb ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc96380e3 regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0xc9705eeb has_newer_microcode -EXPORT_SYMBOL_GPL vmlinux 0xc978234e vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0xc9a896fd iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler -EXPORT_SYMBOL_GPL vmlinux 0xc9c459ea ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xc9ccaa3d pinctrl_utils_add_config -EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xca06f41f __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0xca29c16e wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0xca31584d do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xca4bc012 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xca52021c devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xca542e37 trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0xca6c76aa wm5110_patch -EXPORT_SYMBOL_GPL vmlinux 0xca6e570b usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca81ea9a xenbus_transaction_end -EXPORT_SYMBOL_GPL vmlinux 0xcaa51aeb inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xcaa7882d usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcacc6e3f crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0xcad93f33 kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0xcaf720e9 pstore_register -EXPORT_SYMBOL_GPL vmlinux 0xcafce819 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0xcb14756c regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb18d523 sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0xcb31fa35 pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module -EXPORT_SYMBOL_GPL vmlinux 0xcb51b8f7 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0xcb56ad40 dax_pmd_fault -EXPORT_SYMBOL_GPL vmlinux 0xcb87014a ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0xcb8bf7d1 cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0xcb913092 user_describe -EXPORT_SYMBOL_GPL vmlinux 0xcb9a0425 blk_mq_register_disk -EXPORT_SYMBOL_GPL vmlinux 0xcba50b6c wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0xcbbee1a5 __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0xcbd48c3f hv_setup_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0xcbd870e8 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0xcc03424e dm_disk -EXPORT_SYMBOL_GPL vmlinux 0xcc0f38df usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0xcc1382d8 device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xcc1bd859 pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcc4ae361 init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule -EXPORT_SYMBOL_GPL vmlinux 0xcc8ea1a9 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0xcc9c4ec2 cpufreq_frequency_table_cpuinfo -EXPORT_SYMBOL_GPL vmlinux 0xcca888e8 __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xccb55028 extcon_get_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccdfd7b8 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xcce73927 wm5110_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0xccea4e34 perf_get_x86_pmu_capability -EXPORT_SYMBOL_GPL vmlinux 0xcd1516df register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xcd4afc60 pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0xcd50fc59 virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0xcd5d4ef9 btree_update -EXPORT_SYMBOL_GPL vmlinux 0xcd810b73 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xcd85e3fb ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0xcd8ffa10 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0xcd9092bf register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq -EXPORT_SYMBOL_GPL vmlinux 0xcd931e66 rtc_irq_set_freq -EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs -EXPORT_SYMBOL_GPL vmlinux 0xcd9a3ff9 ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcda5f1fc ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdc8c85c xen_pci_frontend -EXPORT_SYMBOL_GPL vmlinux 0xcdc9598b platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcde34ce3 add_memory_resource -EXPORT_SYMBOL_GPL vmlinux 0xce0b25ae bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xce12d037 btree_insert -EXPORT_SYMBOL_GPL vmlinux 0xce1424e3 ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0xce37b7e3 skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xce469242 irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0xce4cda1b platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcef1dd0e perf_check_microcode -EXPORT_SYMBOL_GPL vmlinux 0xcf140a86 gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0xcf2cd6cb pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0xcf3b4f9e pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain -EXPORT_SYMBOL_GPL vmlinux 0xcf867ad2 __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcf8ecff0 thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xcfbc7b9a list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0xcfd514ec hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd0015fbe sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xd03fd964 ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate -EXPORT_SYMBOL_GPL vmlinux 0xd0464396 __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0xd048ec15 efivar_entry_remove -EXPORT_SYMBOL_GPL vmlinux 0xd05aa9b5 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd06823db pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0xd081d4f5 print_context_stack -EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0f01298 blkdev_read_iter -EXPORT_SYMBOL_GPL vmlinux 0xd0f1cbbf usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0xd0f9eea5 klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xd122ce5d put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xd133efbb pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0xd135b7e8 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0xd1507e59 erst_clear -EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xd16f6cc5 blk_mq_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0xd1745218 regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd178a261 devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0xd1be1173 __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd1fc31e7 tcp_done -EXPORT_SYMBOL_GPL vmlinux 0xd1ff5d06 wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd21c32c2 __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0xd25ae3ab pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0xd264726a serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd28285ef power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd2949176 irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0xd2aaeb4e kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0xd2b879ca kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0xd2c58ab2 apei_exec_noop -EXPORT_SYMBOL_GPL vmlinux 0xd2d1927b hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0xd2d84fe5 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0xd2e88de5 clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript -EXPORT_SYMBOL_GPL vmlinux 0xd3201dd1 class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0xd33fdcf5 sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0xd343cc30 acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0xd346acd5 clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0xd3492d6c bio_associate_current -EXPORT_SYMBOL_GPL vmlinux 0xd38473af gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xd3b883a6 usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xd3f72517 xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd40744f8 ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0xd4074d90 unregister_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xd41058f2 input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0xd4171c64 skcipher_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xd42311f3 virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0xd42ad6a4 bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0xd4325cd3 seq_release_net -EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd45ea32f hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0xd4963223 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd4a6dc47 bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0xd4b30939 __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4d61e6a rt_mutex_timed_lock -EXPORT_SYMBOL_GPL vmlinux 0xd4ed71d9 mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0xd4f07ff1 regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xd51e1f4c spi_unregister_master -EXPORT_SYMBOL_GPL vmlinux 0xd52c8949 max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0xd52e6b6e map_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xd544bede __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xd544e902 pgprot_writecombine -EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd56fb029 tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0xd59138da sis_info133_for_sata -EXPORT_SYMBOL_GPL vmlinux 0xd5b5cc96 sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xd5b85c98 net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0xd5d2f9ea isa_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xd5e7071a ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0xd5fc4c31 platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh -EXPORT_SYMBOL_GPL vmlinux 0xd62ae287 rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd635534d user_preparse -EXPORT_SYMBOL_GPL vmlinux 0xd6362a96 device_show_int -EXPORT_SYMBOL_GPL vmlinux 0xd63def7b led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0xd670f938 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd6980f10 __mmu_notifier_invalidate_range -EXPORT_SYMBOL_GPL vmlinux 0xd6a447d4 rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0xd6d52f01 virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0xd6ed3a8e cper_next_record_id -EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries -EXPORT_SYMBOL_GPL vmlinux 0xd7009e28 input_class -EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0xd7135d8f scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state -EXPORT_SYMBOL_GPL vmlinux 0xd7367f46 gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end -EXPORT_SYMBOL_GPL vmlinux 0xd74b1d64 pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0xd764d265 inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xd79fbc5c sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0xd7ab2c0c speedstep_detect_processor -EXPORT_SYMBOL_GPL vmlinux 0xd7b41085 __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xd7c2de30 rhashtable_walk_start -EXPORT_SYMBOL_GPL vmlinux 0xd7ca76fe vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0xd7d645d1 rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0xd7e51f6f ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xd8090a6d phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xd8250a5c iounmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0xd83698e3 scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0xd8553f2f xenbus_alloc_evtchn -EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd88e543e da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0xd8c76c4b pv_info -EXPORT_SYMBOL_GPL vmlinux 0xd8fa1cf5 acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xd91386ef ref_module -EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges -EXPORT_SYMBOL_GPL vmlinux 0xd92ea773 register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0xd9441f90 devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0xd94b737e erst_read -EXPORT_SYMBOL_GPL vmlinux 0xd94cdfeb pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0xd94fa823 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0xd969a797 wm8350_device_exit -EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd97160db handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0xd977050f power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0xd986dad1 kernel_fpu_begin -EXPORT_SYMBOL_GPL vmlinux 0xd9abfb76 wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0xd9be2fb5 power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0xd9d55e7d driver_attach -EXPORT_SYMBOL_GPL vmlinux 0xd9e36eb6 irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xd9f0712e usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xda0d12a4 pci_reset_pri -EXPORT_SYMBOL_GPL vmlinux 0xda630131 securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp -EXPORT_SYMBOL_GPL vmlinux 0xdac04717 dax_clear_blocks -EXPORT_SYMBOL_GPL vmlinux 0xdad67908 iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0xdadbc867 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0xdae28055 alloc_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdafa6a74 led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0xdb00e7d7 ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xdb060015 usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0xdb0619ee spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0xdb088cb1 pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xdb22ce71 __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xdb5ff5b7 wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0xdb63e5ec pinctrl_utils_dt_free_map -EXPORT_SYMBOL_GPL vmlinux 0xdb726291 pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0xdb739b07 blkg_prfill_stat -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdba75cf4 sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0xdbad9e62 usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xdbc7420a netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0xdbcdf17c extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall -EXPORT_SYMBOL_GPL vmlinux 0xdc2dc36c device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list -EXPORT_SYMBOL_GPL vmlinux 0xdc6fa847 regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable -EXPORT_SYMBOL_GPL vmlinux 0xdc907d72 xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9f07e1 clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdca54e0b device_rename -EXPORT_SYMBOL_GPL vmlinux 0xdca9f4e7 ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0xdcbb3510 __nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0xdccb672f get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock -EXPORT_SYMBOL_GPL vmlinux 0xdd1cb034 shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0xdd228b2b acpi_subsys_resume_early -EXPORT_SYMBOL_GPL vmlinux 0xdd26baf7 wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0xdd28300d regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0xdd38c505 tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd721bec gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0xdda96d92 acpi_subsys_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0xddb1108a acpi_subsys_suspend -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0xde02eca7 blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0xde14bbdf regmap_fields_force_write -EXPORT_SYMBOL_GPL vmlinux 0xde19e0a8 pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xde1bab73 sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0xde1eea51 ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0xde220f25 thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xde340421 adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xde5f0777 usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0xde6be147 efivar_entry_find -EXPORT_SYMBOL_GPL vmlinux 0xde747356 intel_msic_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xde8dd926 klist_next -EXPORT_SYMBOL_GPL vmlinux 0xde9463a6 freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xdea097da ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xdea18b10 PageHuge -EXPORT_SYMBOL_GPL vmlinux 0xdecd492c serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0xdecea258 nf_unregister_afinfo -EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf1389dd preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep -EXPORT_SYMBOL_GPL vmlinux 0xdf466565 pci_restore_ats_state -EXPORT_SYMBOL_GPL vmlinux 0xdf4f0b78 pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0xdf622181 clk_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0xdf66ca81 ucode_cpu_info -EXPORT_SYMBOL_GPL vmlinux 0xdf75282c inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0xdf7daf46 bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xdfb65719 devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0xdfb79ffa print_context_stack_bp -EXPORT_SYMBOL_GPL vmlinux 0xdfbf3cf1 __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xdfd933ed perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0xdff8bbe2 trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name -EXPORT_SYMBOL_GPL vmlinux 0xe02e5381 device_move -EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0xe04b7dfc clk_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xe04d59b6 fpu__activate_curr -EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0xe077c2f3 ata_acpi_gtm_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xe085bb4e handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved -EXPORT_SYMBOL_GPL vmlinux 0xe091a567 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq -EXPORT_SYMBOL_GPL vmlinux 0xe0d6a9cb pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0xe0ecb56d crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0xe0effa2e sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0xe0fa0149 tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0xe1083ae3 __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin -EXPORT_SYMBOL_GPL vmlinux 0xe11a7e4e acpi_dev_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xe11b18bb inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xe121cbb6 static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0xe14fcf5d pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0xe14feff3 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0xe16fbd0d devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xe171e824 __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe182a825 md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe1858c7f reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xe1900fab of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0xe19eec0b net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0xe1abcfb0 input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0xe1b02d4d md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports -EXPORT_SYMBOL_GPL vmlinux 0xe1d796fb cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0xe1e44d76 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0xe1f37e2f dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0xe211724d crypto_init_ahash_spawn -EXPORT_SYMBOL_GPL vmlinux 0xe2224a50 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0xe225535a ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0xe23af1d4 init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0xe24e2df6 dax_do_io -EXPORT_SYMBOL_GPL vmlinux 0xe25a671e tpm2_startup -EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength -EXPORT_SYMBOL_GPL vmlinux 0xe28d6462 usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0xe2900056 dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0xe29349dc copy_reserved_iova -EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe29922a2 shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0xe2bbef9d eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0xe2bc8e32 device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xe2c96b16 rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0xe2f53083 key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xe30a0004 ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xe32670de default_iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0xe33cb023 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0xe3436042 component_del -EXPORT_SYMBOL_GPL vmlinux 0xe34c1818 kick_process -EXPORT_SYMBOL_GPL vmlinux 0xe3781628 __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xe38e16f4 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0xe3948ff4 acpi_walk_dep_device_list -EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler -EXPORT_SYMBOL_GPL vmlinux 0xe3bda663 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe3be648a fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0xe3e2f401 bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0xe3e83d3c __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0xe40959ad x509_request_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0xe41534ce bind_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0xe418fde4 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0xe42c6d33 __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe4314fe9 swiotlb_tbl_unmap_single -EXPORT_SYMBOL_GPL vmlinux 0xe439815c erst_get_record_count -EXPORT_SYMBOL_GPL vmlinux 0xe439a9c4 tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0xe44a4bab pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xe453e385 ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0xe4627408 devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe4661f52 serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xe47e8b90 pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0xe4868a1a dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xe48ad2fc ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4a02613 acpi_pci_check_ejectable -EXPORT_SYMBOL_GPL vmlinux 0xe4a0d7af __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xe4c331b6 acpi_os_unmap_memory -EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto -EXPORT_SYMBOL_GPL vmlinux 0xe4d1bba8 inet_hash -EXPORT_SYMBOL_GPL vmlinux 0xe4d3577a __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0xe4e68bc8 apei_map_generic_address -EXPORT_SYMBOL_GPL vmlinux 0xe4f7d9e4 ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xe4fd67d3 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xe4ffa1ac percpu_ida_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe511bbed vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0xe512fc6a usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0xe514d401 usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0xe530dc40 wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0xe5381b3c usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0xe5402098 subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xe545a811 get_xsave_addr -EXPORT_SYMBOL_GPL vmlinux 0xe54acdf2 ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0xe55d994e bsg_request_fn -EXPORT_SYMBOL_GPL vmlinux 0xe56b7541 mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0xe575980d tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe57a2909 regmap_fields_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xe57e5d68 devm_spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe588853c sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq -EXPORT_SYMBOL_GPL vmlinux 0xe591c908 mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0xe5a28a7d gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xe5b8082b cper_estatus_check_header -EXPORT_SYMBOL_GPL vmlinux 0xe5caec7b crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0xe61171f1 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0xe62e9d4f xen_swiotlb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler -EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe661dc5c rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0xe66772e4 ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0xe67121e3 crypto_init_spawn2 -EXPORT_SYMBOL_GPL vmlinux 0xe6b989a7 usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0xe6c1d41b usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module -EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen -EXPORT_SYMBOL_GPL vmlinux 0xe6eea95b l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xe6f2c90a unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data -EXPORT_SYMBOL_GPL vmlinux 0xe7069031 acpi_dev_gpio_irq_get -EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe7287ed8 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0xe750b116 regmap_write_bits -EXPORT_SYMBOL_GPL vmlinux 0xe7535f2d virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0xe75806ee ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0xe766bda7 usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe76de568 rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0xe772e646 rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe7814f07 sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0xe7a6354e cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr -EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe8275bdd clk_register_gpio_gate -EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe8783c41 powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0xe8a5a807 skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0xe8ae6f8c virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0xe8b1adf6 xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0xe8c4ed4f cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0xe8fb33c9 dbs_check_cpu -EXPORT_SYMBOL_GPL vmlinux 0xe9091a32 driver_find -EXPORT_SYMBOL_GPL vmlinux 0xe910455d tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0xe91d7d0e bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0xe9200e80 devm_pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe97b9629 ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xe9a83967 device_store_int -EXPORT_SYMBOL_GPL vmlinux 0xe9b92a85 sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available -EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea135b1c dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xea215d3a register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0xea3da2b8 posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0xea419ca5 devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xea423d91 ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xea7b313c pwm_set_polarity -EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xea906502 device_attach -EXPORT_SYMBOL_GPL vmlinux 0xea99b795 __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0xea9d66cf bpf_prog_get -EXPORT_SYMBOL_GPL vmlinux 0xeaac440e to_nd_blk_region -EXPORT_SYMBOL_GPL vmlinux 0xeabdba65 crypto_lookup_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xeae49564 pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0xeaf2fd67 ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0xeafa700b ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0xeafcb681 fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0xeb087413 iommu_domain_set_attr -EXPORT_SYMBOL_GPL vmlinux 0xeb2798f7 xen_destroy_contiguous_region -EXPORT_SYMBOL_GPL vmlinux 0xeb279fd6 pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0xeb370805 __apei_exec_run -EXPORT_SYMBOL_GPL vmlinux 0xeb41a0c6 vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xeb4b5b91 gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xeb648690 rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0xeb833c22 xen_has_pv_disk_devices -EXPORT_SYMBOL_GPL vmlinux 0xeb8e95a8 sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xebaab432 posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0xebb3592b snmp_get_cpu_field64 -EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xebf63a7c component_master_add -EXPORT_SYMBOL_GPL vmlinux 0xec11c7f0 regmap_read -EXPORT_SYMBOL_GPL vmlinux 0xec16bafb fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0xec1984b6 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare -EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del -EXPORT_SYMBOL_GPL vmlinux 0xec3e38b5 da903x_read -EXPORT_SYMBOL_GPL vmlinux 0xec631f34 remove_memory -EXPORT_SYMBOL_GPL vmlinux 0xec7fc9b2 usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0xec8237a8 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0xecaf22d9 __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0xecbda5d8 unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xecbe676f blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0xecca1115 pwm_config -EXPORT_SYMBOL_GPL vmlinux 0xecca3d49 pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0xecd08c20 device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xecec7df1 clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0xed06c5cb pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xed2ad903 add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0xed597834 efivars_register -EXPORT_SYMBOL_GPL vmlinux 0xed5b7616 inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0xed9711a8 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0xed9ce7ef inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0xeda21c4e regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0xedb96aee nd_blk_region_set_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xedbc6f67 gnttab_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0xedc29cd8 usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xedc5f8ce usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0xedcdffd4 alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0xede3c095 blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0xedea6f15 btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0xee096b95 set_pages_array_wt -EXPORT_SYMBOL_GPL vmlinux 0xee1e6fdd pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xee20d8d0 relay_close -EXPORT_SYMBOL_GPL vmlinux 0xee24e467 regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0xee31932a xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0xee33b249 __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0xee34a684 blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible -EXPORT_SYMBOL_GPL vmlinux 0xee6fb45b spi_master_resume -EXPORT_SYMBOL_GPL vmlinux 0xeed381be usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0xeee03934 transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0xeee4aede dummy_con -EXPORT_SYMBOL_GPL vmlinux 0xeeea84df platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0xeeedc3a5 __module_text_address -EXPORT_SYMBOL_GPL vmlinux 0xef0a0adf max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request -EXPORT_SYMBOL_GPL vmlinux 0xef409b74 kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef4e670d irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xef66ab6b user_read -EXPORT_SYMBOL_GPL vmlinux 0xef6ba1e6 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef7559d1 usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0xef82af80 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0xef9cb7f8 sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefa4a7b8 dio_end_io -EXPORT_SYMBOL_GPL vmlinux 0xefa4fb8c __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xefa74136 devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0xefb3a734 dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0xefda12c3 dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xefe1b170 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0xeffaa6c5 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0xf006ed66 regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xf0084980 fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0xf0102eb1 ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0xf01d5427 fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf029c116 blkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0xf035702e rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0xf036b752 wait_for_tpm_stat -EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0xf0421ad5 __efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0xf054ac97 intel_msic_irq_read -EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable -EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xf07cb570 ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0xf08031e1 rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xf080bfea dma_buf_kunmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xf0c4cfa3 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0xf0d9f1f2 ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0xf0e523f1 dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0xf0f20e04 security_kernel_fw_from_file -EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0xf10c7231 ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0xf152204d inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0xf162424e cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xf16ac703 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf186017e ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key -EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on -EXPORT_SYMBOL_GPL vmlinux 0xf1b551d9 ibft_addr -EXPORT_SYMBOL_GPL vmlinux 0xf1bf8b05 pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xf1c892c1 public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0xf1f06ed1 __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xf2138d1e __netlink_alloc_skb -EXPORT_SYMBOL_GPL vmlinux 0xf2196393 tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf240f69e usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xf2443298 component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0xf24a71d9 pinconf_generic_dump_config -EXPORT_SYMBOL_GPL vmlinux 0xf2674709 xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0xf28512b6 __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xf291252d alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0xf2abfbe5 phy_get -EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xf2b2eb12 vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0xf2c74c98 da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0xf2ce53ef debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xf2e085da regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support -EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xf30fda27 lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0xf3101bc6 devm_clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf3579146 power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0xf3767615 clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf388916c blk_add_request_payload -EXPORT_SYMBOL_GPL vmlinux 0xf396eecf bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf3b2b888 ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0xf3dd3ec1 atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf3ebf4eb arch_apei_report_mem_error -EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xf41a8e3e kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0xf4215ce1 mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xf433e532 regmap_update_bits_check_async -EXPORT_SYMBOL_GPL vmlinux 0xf43435a9 bdev_direct_access -EXPORT_SYMBOL_GPL vmlinux 0xf43e9c62 ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xf44621f3 cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask -EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh -EXPORT_SYMBOL_GPL vmlinux 0xf49c0634 device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0xf4b2aec0 pin_is_valid -EXPORT_SYMBOL_GPL vmlinux 0xf4b884d3 tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0xf5434963 irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0xf545acd7 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf558fc10 pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0xf57456f4 led_trigger_store -EXPORT_SYMBOL_GPL vmlinux 0xf5785b42 evtchn_get -EXPORT_SYMBOL_GPL vmlinux 0xf5945bac gnttab_free_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5ca5edb sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0xf5e1da88 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf5fbb87e ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0xf5ffac45 ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0xf615386f percpu_ida_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf6238a66 sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf6495509 xenbus_watch_pathfmt -EXPORT_SYMBOL_GPL vmlinux 0xf658a0a6 nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0xf6811fb9 wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0xf69385c9 crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xf6a4b8f0 devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str -EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf6f929c0 rhashtable_walk_init -EXPORT_SYMBOL_GPL vmlinux 0xf7016530 xenbus_gather -EXPORT_SYMBOL_GPL vmlinux 0xf72e1a54 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0xf7336350 mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0xf738afa0 devm_regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xf75e74c7 crypto_init_spawn -EXPORT_SYMBOL_GPL vmlinux 0xf776df49 con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0xf77e2a5e __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0xf784c611 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0xf79c052b gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0xf7a406ec rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0xf7b163cb clk_register_gpio_mux -EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xf7daadc3 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xf7fc44f9 clk_gpio_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0xf8221fab pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0xf82a0880 pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf8434ec7 ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xf85edfa3 nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0xf86e8bb2 blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xf885749d user_update -EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xf894ba00 dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xf8c550e7 verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xf8ce5975 watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0xf8cff3e3 regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops -EXPORT_SYMBOL_GPL vmlinux 0xf8ec38dc key_type_user -EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0xf920e890 fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf9350ef6 dmi_kobj -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf960096a pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0xf963fb37 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0xf9765833 dmi_match -EXPORT_SYMBOL_GPL vmlinux 0xf98ee984 tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr -EXPORT_SYMBOL_GPL vmlinux 0xf9992a90 thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9a6f8f3 aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0xf9bc7287 crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xf9d9264e xen_have_vector_callback -EXPORT_SYMBOL_GPL vmlinux 0xf9e3359c devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xf9f25e71 device_reset -EXPORT_SYMBOL_GPL vmlinux 0xf9f3dd2d devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start -EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched -EXPORT_SYMBOL_GPL vmlinux 0xfa60b1d8 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0xfa7a7dbc clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0xfa7d5110 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0xfa9c8831 devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xfa9e33f7 klist_init -EXPORT_SYMBOL_GPL vmlinux 0xfac497a4 uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xfad87393 xen_swiotlb_dma_mapping_error -EXPORT_SYMBOL_GPL vmlinux 0xfaf143f2 tcp_fetch_timewait_stamp -EXPORT_SYMBOL_GPL vmlinux 0xfb2348ef bio_trim -EXPORT_SYMBOL_GPL vmlinux 0xfb25ce06 btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0xfb2b6ddc agp_remove_bridge -EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb40ce05 dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xfb4a016f ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0xfb64b230 acpi_processor_ffh_cstate_probe -EXPORT_SYMBOL_GPL vmlinux 0xfb685b88 devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb7198af rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xfb83db03 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xfb926a72 dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0xfba081a1 acpi_is_pnp_device -EXPORT_SYMBOL_GPL vmlinux 0xfba8837f __rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfbae8f58 dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc1000cf ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0xfc187569 blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0xfc326a63 xhci_run -EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power -EXPORT_SYMBOL_GPL vmlinux 0xfc6420fb lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0xfc708d34 sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0xfc85ad6d scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0xfc877f1a usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0xfc88ce7f sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0xfc968c8b apei_exec_write_register_value -EXPORT_SYMBOL_GPL vmlinux 0xfcb44c6d xen_swiotlb_unmap_page -EXPORT_SYMBOL_GPL vmlinux 0xfcc0d9b1 usb_string -EXPORT_SYMBOL_GPL vmlinux 0xfd13e5f4 crypto_alloc_instance -EXPORT_SYMBOL_GPL vmlinux 0xfd43d884 __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xfd4608fb acpi_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0xfd4d9781 mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfd5123a0 ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0xfd51b281 gnttab_end_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable -EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack -EXPORT_SYMBOL_GPL vmlinux 0xfd9b6836 __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xfda5ca66 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0xfdabd9ab pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0xfdd52de6 usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0xfdd91b53 fuse_request_send -EXPORT_SYMBOL_GPL vmlinux 0xfe038234 wakeup_source_drop -EXPORT_SYMBOL_GPL vmlinux 0xfe165ea7 inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xfe2a9fc5 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0xfe392427 dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0xfe64ce6c __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0xfe6dbeb2 gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0xfe720165 devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine -EXPORT_SYMBOL_GPL vmlinux 0xfe750480 rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0xfe7b0960 __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfeb14fb9 regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0xfeca7b23 crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfed91985 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0xfeddca4f power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0xfee02f24 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xff040d03 xenbus_free_evtchn -EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff1c707d sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff2ce747 machine_check_poll -EXPORT_SYMBOL_GPL vmlinux 0xff4ef9e5 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0xff5e48b4 set_foreign_p2m_mapping -EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xff66b05f fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0xff6879cd input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0xff84480d xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0xff88d473 usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0xff91696c crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0xffc91bdb adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xffc9c1dd wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0xffcdef54 powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0xfff397a7 sata_pmp_error_handler reverted: --- linux-raspi2-4.4.0/debian.master/abi/4.4.0-89.112/i386/lowlatency.compiler +++ linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-89.112/i386/lowlatency.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 reverted: --- linux-raspi2-4.4.0/debian.master/abi/4.4.0-89.112/i386/lowlatency.modules +++ linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-89.112/i386/lowlatency.modules @@ -1,4755 +0,0 @@ -3c509 -3c515 -3c574_cs -3c589_cs -3c59x -3w-9xxx -3w-sas -3w-xxxx -53c700 -6lowpan -6pack -8021q -8139cp -8139too -8250_accent -8250_boca -8250_dw -8250_exar_st16c554 -8250_fintek -8250_fourport -8250_hub6 -8250_mid -8255 -8255_pci -8390 -8390p -842 -842_compress -842_decompress -88pm800 -88pm805 -88pm80x -88pm80x_onkey -88pm8607 -88pm860x-ts -88pm860x_battery -88pm860x_bl -88pm860x_charger -88pm860x_onkey -9p -9pnet -9pnet_rdma -9pnet_virtio -BusLogic -DAC960 -NCR53c406a -a100u2w -a3d -a8293 -aacraid -aat2870-regulator -aat2870_bl -ab3100 -ab3100-otp -abituguru -abituguru3 -ablk_helper -ac97_bus -acard-ahci -acecad -acenic -acer-wmi -acerhdf -acpi-als -acpi_extlog -acpi_ipmi -acpi_pad -acpi_power_meter -acpi_thermal_rel -acpiphp_ibm -acquirewdt -act2000 -act200l-sir -act8865-regulator -act_bpf -act_connmark -act_csum -act_gact -act_ipt -act_mirred -act_nat -act_pedit -act_police -act_simple -act_skbedit -act_vlan -actisys-sir -ad2s1200 -ad2s1210 -ad2s90 -ad5064 -ad525x_dpot -ad525x_dpot-i2c -ad525x_dpot-spi -ad5360 -ad5380 -ad5398 -ad5421 -ad5446 -ad5449 -ad5504 -ad5592r -ad5592r-base -ad5593r -ad5624r_spi -ad5686 -ad5755 -ad5764 -ad5791 -ad5933 -ad714x -ad714x-i2c -ad714x-spi -ad7150 -ad7152 -ad7192 -ad7266 -ad7280a -ad7291 -ad7298 -ad7303 -ad7314 -ad7414 -ad7418 -ad7476 -ad7606 -ad7746 -ad7780 -ad7791 -ad7793 -ad7816 -ad7877 -ad7879 -ad7879-i2c -ad7879-spi -ad7887 -ad7923 -ad799x -ad8366 -ad9523 -ad9832 -ad9834 -ad_sigma_delta -adc128d818 -adcxx -addi_apci_1032 -addi_apci_1500 -addi_apci_1516 -addi_apci_1564 -addi_apci_16xx -addi_apci_2032 -addi_apci_2200 -addi_apci_3120 -addi_apci_3501 -addi_apci_3xxx -addi_watchdog -ade7753 -ade7754 -ade7758 -ade7759 -ade7854 -ade7854-i2c -ade7854-spi -adf4350 -adfs -adi -adis16060 -adis16080 -adis16130 -adis16136 -adis16201 -adis16203 -adis16204 -adis16209 -adis16220 -adis16240 -adis16260 -adis16400 -adis16480 -adis_lib -adjd_s311 -adl_pci6208 -adl_pci7x3x -adl_pci8164 -adl_pci9111 -adl_pci9118 -adm1021 -adm1025 -adm1026 -adm1029 -adm1031 -adm1275 -adm8211 -adm9240 -adp5520-keys -adp5520_bl -adp5588-keys -adp5589-keys -adp8860_bl -adp8870_bl -adq12b -ads1015 -ads7828 -ads7846 -ads7871 -adt7310 -adt7316 -adt7316-i2c -adt7316-spi -adt7410 -adt7411 -adt7462 -adt7470 -adt7475 -adt7x10 -adummy -adutux -adv7170 -adv7175 -adv7180 -adv7511 -adv7604 -adv7842 -adv_pci1710 -adv_pci1723 -adv_pci1724 -adv_pci_dio -advansys -advantechwdt -adxl34x -adxl34x-i2c -adxl34x-spi -adxrs450 -aes-i586 -aesni-intel -af-rxrpc -af9013 -af9033 -af_alg -af_key -af_packet_diag -affs -ah4 -ah6 -aha152x -aha152x_cs -aha1542 -aha1740 -ahci -ahci_platform -aic79xx -aic7xxx -aic94xx -aim_cdev -aim_network -aim_sound -aim_v4l2 -aio_aio12_8 -aio_iiro_16 -aiptek -aircable -airo -airo_cs -airspy -ak8975 -al3320a -algif_aead -algif_hash -algif_rng -algif_skcipher -ali-agp -ali-ircc -alienware-wmi -alim1535_wdt -alim7101_wdt -altera-ci -altera-stapl -altera_jtaguart -altera_ps2 -altera_tse -altera_uart -alx -am53c974 -ambassador -amc6821 -amd -amd-rng -amd5536udc -amd64_edac_mod -amd76x_edac -amd76xrom -amd8111e -amd_freq_sensitivity -amdgpu -amilo-rfkill -amplc_dio200 -amplc_dio200_common -amplc_dio200_pci -amplc_pc236 -amplc_pc236_common -amplc_pc263 -amplc_pci224 -amplc_pci230 -amplc_pci236 -amplc_pci263 -ams369fg06 -analog -anatop-regulator -ansi_cprng -anubis -aoe -apanel -apds9300 -apds9802als -apds990x -apds9960 -apm -apple-gmux -apple_bl -appledisplay -applesmc -appletalk -appletouch -applicom -aquantia -ar5523 -ar7part -arc-rawmode -arc-rimi -arc4 -arc_ps2 -arc_uart -arcfb -arcmsr -arcnet -arizona-haptics -arizona-i2c -arizona-ldo1 -arizona-micsupp -arizona-spi -ark3116 -arkfb -arp_tables -arpt_mangle -arptable_filter -as102_fe -as3711-regulator -as3711_bl -as3935 -as5011 -asb100 -asc7621 -ascot2e -asix -ast -asus-laptop -asus-nb-wmi -asus-wmi -asus_atk0110 -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at24 -at25 -at76c50x-usb -at803x -at86rf230 -atbm8830 -aten -ath -ath10k_core -ath10k_pci -ath3k -ath5k -ath6kl_core -ath6kl_sdio -ath6kl_usb -ath9k -ath9k_common -ath9k_htc -ath9k_hw -ati-agp -ati_remote -ati_remote2 -atl1 -atl1c -atl1e -atl2 -atlas_btns -atm -atmel -atmel_cs -atmel_mxt_ts -atmel_pci -atmtcp -atp -atp870u -atusb -atxp1 -aty128fb -atyfb -au0828 -au8522_common -au8522_decoder -au8522_dig -aufs -auo-pixcir-ts -auo_k1900fb -auo_k1901fb -auo_k190x -auth_rpcgss -authenc -authencesn -autofs4 -avm_cs -avma1_cs -avmfritz -ax25 -ax88179_178a -axnet_cs -axp20x-pek -axp20x-regulator -axp20x_usb_power -axp288_adc -axp288_charger -axp288_fuel_gauge -b1 -b1dma -b1isa -b1pci -b1pcmcia -b2c2-flexcop -b2c2-flexcop-pci -b2c2-flexcop-usb -b43 -b43legacy -b44 -bas_gigaset -batman-adv -baycom_epp -baycom_par -baycom_ser_fdx -baycom_ser_hdx -bcache -bch -bcm-phy-lib -bcm203x -bcm3510 -bcm590xx -bcm590xx-regulator -bcm5974 -bcm7038_wdt -bcm7xxx -bcm87xx -bcma -bcma-hcd -bd6107 -bdc -bdc_pci -be2iscsi -be2net -befs -belkin_sa -bfa -bfs -bfusb -bh1750 -bh1770glc -bh1780gli -binfmt_aout -binfmt_misc -block2mtd -blocklayoutdriver -blowfish_common -blowfish_generic -bluecard_cs -bluetooth -bluetooth_6lowpan -bma150 -bma180 -bmc150-accel-core -bmc150-accel-i2c -bmc150-accel-spi -bmc150_magn -bmg160_core -bmg160_i2c -bmg160_spi -bmp085 -bmp085-i2c -bmp085-spi -bmp280 -bna -bnep -bnx2 -bnx2fc -bnx2i -bnx2x -bnxt_en -bonding -bpa10x -bpck -bpck6 -bpqether -bq2415x_charger -bq24190_charger -bq24257_charger -bq24735-charger -bq25890_charger -bq27xxx_battery -br2684 -br_netfilter -brcmfmac -brcmsmac -brcmutil -brd -bridge -broadcom -broadsheetfb -bsd_comp -bt3c_cs -bt819 -bt856 -bt866 -bt878 -btbcm -btcoexist -btintel -btmrvl -btmrvl_sdio -btqca -btrfs -btrtl -btsdio -bttv -btuart_cs -btusb -btwilink -bu21013_ts -budget -budget-av -budget-ci -budget-core -budget-patch -c101 -c2port-duramar2150 -c4 -c67x00 -c6xdigio -c_can -c_can_pci -c_can_platform -cachefiles -cadence_wdt -cafe_ccic -cafe_nand -caif -caif_hsi -caif_serial -caif_socket -caif_usb -caif_virtio -camellia_generic -can -can-bcm -can-dev -can-gw -can-raw -capi -capidrv -capmode -carl9170 -carminefb -cassini -cast5_generic -cast6_generic -cast_common -catc -cb710 -cb710-mmc -cb_das16_cs -cb_pcidas -cb_pcidas64 -cb_pcidda -cb_pcimdas -cb_pcimdda -cc10001_adc -cc2520 -cc770 -cc770_isa -cc770_platform -cciss -ccm -ccp -ccp-crypto -cdc-acm -cdc-phonet -cdc-wdm -cdc_eem -cdc_ether -cdc_mbim -cdc_ncm -cdc_subset -ceph -cfag12864b -cfag12864bfb -cfg80211 -cfi_cmdset_0001 -cfi_cmdset_0002 -cfi_cmdset_0020 -cfi_probe -cfi_util -cfspi_slave -ch -ch341 -ch7006 -ch9200 -chacha20_generic -chacha20poly1305 -chaoskey -chipreg -chnl_net -chromeos_laptop -chromeos_pstore -ci_hdrc -ci_hdrc_msm -ci_hdrc_pci -ci_hdrc_usb2 -ci_hdrc_zevio -cicada -cifs -cirrus -cirrusfb -ck804xrom -classmate-laptop -clip -clk-cdce706 -clk-palmas -clk-pwm -clk-s2mps11 -clk-si5351 -clk-twl6040 -clk-wm831x -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_rsvp -cls_rsvp6 -cls_tcindex -cls_u32 -cm109 -cm32181 -cm3232 -cm3323 -cm36651 -cm4000_cs -cm4040_cs -cma3000_d0x -cma3000_d0x_i2c -cmac -cmdlinepart -cmtp -cnic -cobalt -cobra -coda -com20020 -com20020-isa -com20020-pci -com20020_cs -com90io -com90xx -comedi -comedi_8254 -comedi_8255 -comedi_bond -comedi_isadma -comedi_parport -comedi_pci -comedi_pcmcia -comedi_test -comedi_usb -comm -compal-laptop -configfs -contec_pci_dio -cops -cordic -core -coretemp -cosa -cp210x -cpcihp_generic -cpcihp_zt5550 -cpia2 -cpqphp -cpsw_ale -cpu-notifier-error-inject -cpu5wdt -cpuid -cr_bllcd -cramfs -crc-ccitt -crc-itu-t -crc32 -crc32-pclmul -crc7 -crc8 -cros_ec -cros_ec_devs -cros_ec_i2c -cros_ec_keyb -cros_ec_lpc -cros_ec_spi -crvml -cryptd -crypto_user -cryptoloop -cs5345 -cs53l32a -cs5535-mfd -cs553x_nand -cs89x0 -csiostor -ct82c710 -ctr -cts -cuse -cw1200_core -cw1200_wlan_sdio -cw1200_wlan_spi -cx18 -cx18-alsa -cx22700 -cx22702 -cx231xx -cx231xx-alsa -cx231xx-dvb -cx2341x -cx23885 -cx24110 -cx24113 -cx24116 -cx24117 -cx24120 -cx24123 -cx25821 -cx25821-alsa -cx25840 -cx82310_eth -cx88-alsa -cx88-blackbird -cx88-dvb -cx88-vp3054-i2c -cx8800 -cx8802 -cx88xx -cxacru -cxd2099 -cxd2820r -cxd2841er -cxgb -cxgb3 -cxgb3i -cxgb4 -cxgb4i -cxgb4vf -cy8ctmg110_ts -cyapatp -cyber2000fb -cyberjack -cyclades -cypress_cy7c63 -cypress_firmware -cypress_m8 -cytherm -cyttsp4_core -cyttsp4_i2c -cyttsp4_spi -cyttsp_core -cyttsp_i2c -cyttsp_i2c_common -cyttsp_spi -da9030_battery -da9034-ts -da903x -da903x_bl -da9052-battery -da9052-hwmon -da9052-regulator -da9052_bl -da9052_onkey -da9052_tsi -da9052_wdt -da9055-hwmon -da9055-regulator -da9055_onkey -da9055_wdt -da9062-core -da9062-regulator -da9062_wdt -da9063-regulator -da9063_onkey -da9063_wdt -da9150-charger -da9150-core -da9150-fg -da9150-gpadc -da9210-regulator -da9211-regulator -dac02 -daqboard2000 -das08 -das08_cs -das08_isa -das08_pci -das16 -das16m1 -das1800 -das6402 -das800 -davicom -db9 -dc395x -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -dccp_probe -dcdbas -ddbridge -de2104x -de4x5 -decnet -deflate -defxx -dell-laptop -dell-led -dell-rbtn -dell-smm-hwmon -dell-smo8800 -dell-wmi -dell-wmi-aio -dell_rbu -denali -denali_dt -denali_pci -des_generic -designware_i2s -dgap -dgnc -dht11 -dib0070 -dib0090 -dib3000mb -dib3000mc -dib7000m -dib7000p -dib8000 -dibx000_common -digi_acceleport -diskonchip -diva_idi -diva_mnt -divacapi -divadidd -divas -dl2k -dlci -dlm -dln2 -dm-bio-prison -dm-bufio -dm-cache -dm-cache-cleaner -dm-cache-mq -dm-cache-smq -dm-crypt -dm-delay -dm-era -dm-flakey -dm-log -dm-log-userspace -dm-log-writes -dm-mirror -dm-multipath -dm-persistent-data -dm-queue-length -dm-raid -dm-region-hash -dm-round-robin -dm-service-time -dm-snapshot -dm-switch -dm-thin-pool -dm-verity -dm-zero -dm1105 -dm9601 -dme1737 -dmfe -dmi-sysfs -dmm32at -dmx3191d -dn_rtmsg -dnet -docg3 -docg4 -donauboe -dp83848 -dp83867 -dpt_i2o -drbd -drbg -drm -drm_kms_helper -drop_monitor -drv260x -drv2665 -drv2667 -drx39xyj -drxd -drxk -ds1621 -ds1682 -ds1wm -ds2482 -ds2490 -ds2760_battery -ds2780_battery -ds2781_battery -ds2782_battery -ds3000 -ds620 -dsbr100 -dscc4 -dss1_divert -dst -dst_ca -dstr -dt2801 -dt2811 -dt2814 -dt2815 -dt2817 -dt282x -dt3000 -dt3155 -dt9812 -dtc -dtl1_cs -dtlk -dummy -dummy-irq -dummy_stm -dvb-as102 -dvb-bt8xx -dvb-core -dvb-pll -dvb-ttpci -dvb-ttusb-budget -dvb-usb -dvb-usb-a800 -dvb-usb-af9005 -dvb-usb-af9005-remote -dvb-usb-af9015 -dvb-usb-af9035 -dvb-usb-anysee -dvb-usb-au6610 -dvb-usb-az6007 -dvb-usb-az6027 -dvb-usb-ce6230 -dvb-usb-cinergyT2 -dvb-usb-cxusb -dvb-usb-dib0700 -dvb-usb-dibusb-common -dvb-usb-dibusb-mb -dvb-usb-dibusb-mc -dvb-usb-digitv -dvb-usb-dtt200u -dvb-usb-dtv5100 -dvb-usb-dvbsky -dvb-usb-dw2102 -dvb-usb-ec168 -dvb-usb-friio -dvb-usb-gl861 -dvb-usb-gp8psk -dvb-usb-lmedm04 -dvb-usb-m920x -dvb-usb-mxl111sf -dvb-usb-nova-t-usb2 -dvb-usb-opera -dvb-usb-pctv452e -dvb-usb-rtl28xxu -dvb-usb-technisat-usb2 -dvb-usb-ttusb2 -dvb-usb-umt-010 -dvb-usb-vp702x -dvb-usb-vp7045 -dvb_usb_v2 -dw_dmac -dw_dmac_core -dw_dmac_pci -dw_wdt -dwc3 -dwc3-pci -dwmac-generic -dyna_pci10xx -dynapro -e100 -e1000 -e1000e -e3x0-button -e4000 -e752x_edac -e7xxx_edac -earth-pt1 -earth-pt3 -eata -ebt_802_3 -ebt_among -ebt_arp -ebt_arpreply -ebt_dnat -ebt_ip -ebt_ip6 -ebt_limit -ebt_log -ebt_mark -ebt_mark_m -ebt_nflog -ebt_pkttype -ebt_redirect -ebt_snat -ebt_stp -ebt_vlan -ebtable_broute -ebtable_filter -ebtable_nat -ebtables -ec100 -ec_bhf -ec_sys -echainiv -echo -edac_core -edac_mce_amd -edt-ft5x06 -eeepc-laptop -eeepc-wmi -eeprom -eeprom_93cx6 -eeprom_93xx46 -eeti_ts -efficeon-agp -efi-pstore -efi_test -efs -ehset -einj -elan_i2c -elo -elsa_cs -em28xx -em28xx-alsa -em28xx-dvb -em28xx-rc -em28xx-v4l -em_canid -em_cmp -em_ipset -em_meta -em_nbyte -em_text -em_u32 -emc1403 -emc2103 -emc6w201 -emi26 -emi62 -empeg -ems_pci -ems_pcmcia -ems_usb -emu10k1-gp -ena -enc28j60 -enclosure -encx24j600 -encx24j600-regmap -ene_ir -eni -enic -epat -epia -epic100 -eql -esas2r -esb2rom -esd_usb2 -esi-sir -esp4 -esp6 -esp_scsi -et1011c -et131x -ethoc -eurotechwdt -evbug -exofs -extcon-adc-jack -extcon-arizona -extcon-axp288 -extcon-gpio -extcon-max14577 -extcon-max77693 -extcon-max77843 -extcon-max8997 -extcon-palmas -extcon-rt8973a -extcon-sm5502 -extcon-usb-gpio -ezusb -f2fs -f71805f -f71808e_wdt -f71882fg -f75375s -f81232 -fakelb -fam15h_power -fan53555 -farsync -faulty -fb_agm1264k-fl -fb_bd663474 -fb_ddc -fb_hx8340bn -fb_hx8347d -fb_hx8353d -fb_hx8357d -fb_ili9163 -fb_ili9320 -fb_ili9325 -fb_ili9340 -fb_ili9341 -fb_ili9481 -fb_ili9486 -fb_pcd8544 -fb_ra8875 -fb_s6d02a1 -fb_s6d1121 -fb_ssd1289 -fb_ssd1306 -fb_ssd1331 -fb_ssd1351 -fb_st7735r -fb_st7789v -fb_sys_fops -fb_tinylcd -fb_tls8204 -fb_uc1611 -fb_uc1701 -fb_upd161704 -fb_watterott -fbtft -fbtft_device -fc0011 -fc0012 -fc0013 -fc2580 -fcoe -fcrypt -fdomain -fdomain_cs -fdp -fdp_i2c -fealnx -ff-memless -fintek-cir -firedtv -firestream -firewire-core -firewire-net -firewire-ohci -firewire-sbp2 -firewire-serial -fit2 -fit3 -fixed -fjes -fl512 -flexfb -floppy -fm10k -fm801-gp -fm_drv -fmc -fmc-chardev -fmc-fakedev -fmc-trivial -fmc-write-eeprom -fmvj18x_cs -fnic -forcedeth -fore_200e -fotg210-hcd -fotg210-udc -fou -fpga-mgr -freevxfs -friq -frpw -fsa9480 -fscache -fschmd -fsl_lpuart -ft6236 -ftdi-elan -ftdi_sio -ftl -fujitsu-laptop -fujitsu-tablet -fujitsu_ts -g450_pll -g760a -g762 -g_NCR5380 -g_NCR5380_mmio -g_acm_ms -g_audio -g_cdc -g_dbgp -g_ether -g_ffs -g_hid -g_mass_storage -g_midi -g_ncm -g_nokia -g_printer -g_serial -g_webcam -g_zero -gadgetfs -gamecon -gameport -garmin_gps -garp -gcm -gdmtty -gdmulte -gdmwm -gdth -gen_probe -generic -generic-adc-battery -generic_bl -genet -geneve -gennvm -geode-aes -geode-rng -gf128mul -gf2k -gfs2 -ghash-generic -gigaset -girbil-sir -gl518sm -gl520sm -gl620a -glue_helper -gluebi -gma500_gfx -go7007 -go7007-loader -go7007-usb -goku_udc -goodix -gp2ap002a00f -gp2ap020a00f -gpio -gpio-104-idio-16 -gpio-addr-flash -gpio-adp5520 -gpio-adp5588 -gpio-amd8111 -gpio-amdpt -gpio-arizona -gpio-beeper -gpio-charger -gpio-crystalcove -gpio-cs5535 -gpio-da9052 -gpio-da9055 -gpio-dln2 -gpio-dwapb -gpio-f7188x -gpio-fan -gpio-generic -gpio-ich -gpio-ir-recv -gpio-it87 -gpio-janz-ttl -gpio-kempld -gpio-lp3943 -gpio-max7300 -gpio-max7301 -gpio-max730x -gpio-max732x -gpio-mc33880 -gpio-mcp23s08 -gpio-ml-ioh -gpio-pca953x -gpio-pcf857x -gpio-pch -gpio-rdc321x -gpio-regulator -gpio-sch -gpio-sch311x -gpio-tps65912 -gpio-twl4030 -gpio-twl6040 -gpio-ucb1400 -gpio-viperboard -gpio-vx855 -gpio-wm831x -gpio-wm8350 -gpio-wm8994 -gpio_backlight -gpio_keys -gpio_keys_polled -gpio_mouse -gpio_tilt_polled -gr_udc -grace -gre -grip -grip_mp -gs_fpga -gs_usb -gsc_hpdi -gspca_benq -gspca_conex -gspca_cpia1 -gspca_dtcs033 -gspca_etoms -gspca_finepix -gspca_gl860 -gspca_jeilinj -gspca_jl2005bcd -gspca_kinect -gspca_konica -gspca_m5602 -gspca_main -gspca_mars -gspca_mr97310a -gspca_nw80x -gspca_ov519 -gspca_ov534 -gspca_ov534_9 -gspca_pac207 -gspca_pac7302 -gspca_pac7311 -gspca_se401 -gspca_sn9c2028 -gspca_sn9c20x -gspca_sonixb -gspca_sonixj -gspca_spca1528 -gspca_spca500 -gspca_spca501 -gspca_spca505 -gspca_spca506 -gspca_spca508 -gspca_spca561 -gspca_sq905 -gspca_sq905c -gspca_sq930x -gspca_stk014 -gspca_stk1135 -gspca_stv0680 -gspca_stv06xx -gspca_sunplus -gspca_t613 -gspca_topro -gspca_touptek -gspca_tv8532 -gspca_vc032x -gspca_vicam -gspca_xirlink_cit -gspca_zc3xx -gtco -guillemot -gunze -gx-suspmod -gx1fb -gxfb -gxt4500 -hackrf -hamachi -hampshire -hangcheck-timer -hanwang -hci -hci_uart -hci_vhci -hdaps -hdc100x -hdlc -hdlc_cisco -hdlc_fr -hdlc_ppp -hdlc_raw -hdlc_raw_eth -hdlc_x25 -hdlcdrv -hdm_dim2 -hdm_i2c -hdm_usb -hdpvr -he -hecubafb -hexium_gemini -hexium_orion -hfc4s8s_l1 -hfc_usb -hfcmulti -hfcpci -hfcsusb -hfs -hfsplus -hgafb -hi8435 -hid -hid-a4tech -hid-alps -hid-apple -hid-appleir -hid-aureal -hid-axff -hid-belkin -hid-betopff -hid-cherry -hid-chicony -hid-corsair -hid-cp2112 -hid-cypress -hid-dr -hid-elecom -hid-elo -hid-emsff -hid-ezkey -hid-gaff -hid-gembird -hid-generic -hid-gfrm -hid-gt683r -hid-gyration -hid-holtek-kbd -hid-holtek-mouse -hid-holtekff -hid-hyperv -hid-icade -hid-kensington -hid-keytouch -hid-kye -hid-lcpower -hid-lenovo -hid-logitech -hid-logitech-dj -hid-logitech-hidpp -hid-magicmouse -hid-microsoft -hid-monterey -hid-multitouch -hid-ntrig -hid-ortek -hid-penmount -hid-petalynx -hid-picolcd -hid-pl -hid-plantronics -hid-primax -hid-prodikeys -hid-rmi -hid-roccat -hid-roccat-arvo -hid-roccat-common -hid-roccat-isku -hid-roccat-kone -hid-roccat-koneplus -hid-roccat-konepure -hid-roccat-kovaplus -hid-roccat-lua -hid-roccat-pyra -hid-roccat-ryos -hid-roccat-savu -hid-saitek -hid-samsung -hid-sensor-accel-3d -hid-sensor-als -hid-sensor-custom -hid-sensor-gyro-3d -hid-sensor-hub -hid-sensor-iio-common -hid-sensor-incl-3d -hid-sensor-magn-3d -hid-sensor-press -hid-sensor-prox -hid-sensor-rotation -hid-sensor-trigger -hid-sjoy -hid-sony -hid-speedlink -hid-steelseries -hid-sunplus -hid-thingm -hid-tivo -hid-tmff -hid-topseed -hid-twinhan -hid-uclogic -hid-waltop -hid-wiimote -hid-xinmo -hid-zpff -hid-zydacron -hidp -hih6130 -hio -hisax -hisax_fcpcipnp -hisax_isac -hisax_st5481 -hisi504_nand -hmc5843_core -hmc5843_i2c -hmc5843_spi -hmc6352 -hopper -horizon -horus3a -hostap -hostap_cs -hostap_pci -hostap_plx -hostess_sv11 -hp-wireless -hp-wmi -hp100 -hp_accel -hpfs -hpilo -hpsa -hptiop -hpwdt -hsi -hsi_char -hso -hsr -hsu_dma -hsu_dma_pci -htc-pasic3 -htcpen -hts221 -hts221_i2c -hts221_spi -htu21 -huawei_cdc_ncm -hv_balloon -hv_netvsc -hv_storvsc -hv_utils -hv_vmbus -hwa-hc -hwa-rc -hwmon-vid -hx8357 -hyperv-keyboard -hyperv_fb -hysdn -i1480-dfu-usb -i1480-est -i2400m -i2400m-usb -i2c-algo-bit -i2c-algo-pca -i2c-ali1535 -i2c-ali1563 -i2c-ali15x3 -i2c-amd756 -i2c-amd756-s4882 -i2c-amd8111 -i2c-cbus-gpio -i2c-cros-ec-tunnel -i2c-designware-core -i2c-designware-pci -i2c-designware-platform -i2c-diolan-u2c -i2c-dln2 -i2c-eg20t -i2c-emev2 -i2c-gpio -i2c-hid -i2c-i801 -i2c-isch -i2c-ismt -i2c-kempld -i2c-matroxfb -i2c-mux -i2c-mux-gpio -i2c-mux-pca9541 -i2c-mux-pca954x -i2c-mux-pinctrl -i2c-mux-reg -i2c-nforce2 -i2c-nforce2-s4985 -i2c-ocores -i2c-parport -i2c-parport-light -i2c-pca-isa -i2c-pca-platform -i2c-piix4 -i2c-robotfuzz-osif -i2c-scmi -i2c-simtec -i2c-sis5595 -i2c-sis630 -i2c-sis96x -i2c-smbus -i2c-stub -i2c-taos-evm -i2c-tiny-usb -i2c-via -i2c-viapro -i2c-viperboard -i2c-xiic -i3000_edac -i3200_edac -i40e -i40evf -i5000_edac -i5100_edac -i5400_edac -i5500_temp -i5k_amb -i6300esb -i7300_edac -i740fb -i7core_edac -i810fb -i82092 -i82365 -i82860_edac -i82875p_edac -i82975x_edac -i915 -i915_bpo -iTCO_vendor_support -iTCO_wdt -ib700wdt -ib_addr -ib_cm -ib_core -ib_ipoib -ib_iser -ib_isert -ib_mad -ib_mthca -ib_sa -ib_srp -ib_srpt -ib_ucm -ib_umad -ib_uverbs -ibm_rtl -ibmaem -ibmasm -ibmasr -ibmpex -ibmphp -ichxrom -icn -icp_multi -icplus -ics932s401 -ideapad-laptop -ideapad_slidebar -idma64 -idmouse -idt77252 -idt_gen2 -idtcps -ie31200_edac -ie6xx_wdt -ieee802154 -ieee802154_6lowpan -ieee802154_socket -ifb -iforce -igb -igbvf -igorplugusb -iguanair -ii_pci20kc -iio-trig-interrupt -iio-trig-periodic-rtc -iio-trig-sysfs -iio_dummy -iio_hwmon -ila -ili210x -ili922x -ili9320 -imm -imon -ims-pcu -imx074 -in2000 -ina209 -ina2xx -industrialio -industrialio-buffer-cb -industrialio-triggered-buffer -industrialio-triggered-event -inet_diag -inexio -inftl -initio -input-leds -input-polldev -int3400_thermal -int3402_thermal -int3403_thermal -int340x_thermal_zone -int51x1 -intel-hid -intel-lpss -intel-lpss-acpi -intel-lpss-pci -intel-mid-touch -intel-mid_wdt -intel-rng -intel-rst -intel-smartconnect -intel-vbtn -intel_ips -intel_menlow -intel_mid_battery -intel_mid_powerbtn -intel_mid_thermal -intel_oaktrail -intel_pch_thermal -intel_pmc_ipc -intel_powerclamp -intel_punit_ipc -intel_qat -intel_quark_i2c_gpio -intel_rapl -intel_scu_ipcutil -intel_soc_dts_iosf -intel_soc_dts_thermal -intel_th -intel_th_gth -intel_th_msu -intel_th_pci -intel_th_pti -intel_th_sth -intel_vr_nor -intelfb -interact -interval_tree_test -inv-mpu6050 -io_edgeport -io_ti -ioc4 -iowarrior -ip6_gre -ip6_tables -ip6_tunnel -ip6_udp_tunnel -ip6_vti -ip6t_MASQUERADE -ip6t_NPT -ip6t_REJECT -ip6t_SYNPROXY -ip6t_ah -ip6t_eui64 -ip6t_frag -ip6t_hbh -ip6t_ipv6header -ip6t_mh -ip6t_rpfilter -ip6t_rt -ip6table_filter -ip6table_mangle -ip6table_nat -ip6table_raw -ip6table_security -ip_gre -ip_set -ip_set_bitmap_ip -ip_set_bitmap_ipmac -ip_set_bitmap_port -ip_set_hash_ip -ip_set_hash_ipmark -ip_set_hash_ipport -ip_set_hash_ipportip -ip_set_hash_ipportnet -ip_set_hash_mac -ip_set_hash_net -ip_set_hash_netiface -ip_set_hash_netnet -ip_set_hash_netport -ip_set_hash_netportnet -ip_set_list_set -ip_tables -ip_tunnel -ip_vs -ip_vs_dh -ip_vs_fo -ip_vs_ftp -ip_vs_lblc -ip_vs_lblcr -ip_vs_lc -ip_vs_nq -ip_vs_ovf -ip_vs_pe_sip -ip_vs_rr -ip_vs_sed -ip_vs_sh -ip_vs_wlc -ip_vs_wrr -ip_vti -ipack -ipaq -ipcomp -ipcomp6 -ipddp -iphase -ipheth -ipip -ipmi_devintf -ipmi_msghandler -ipmi_poweroff -ipmi_si -ipmi_ssif -ipmi_watchdog -ipoctal -ipr -ips -ipt_CLUSTERIP -ipt_ECN -ipt_MASQUERADE -ipt_REJECT -ipt_SYNPROXY -ipt_ah -ipt_rpfilter -iptable_filter -iptable_mangle -iptable_nat -iptable_raw -iptable_security -ipvlan -ipw -ipw2100 -ipw2200 -ipwireless -ipx -ir-hix5hd2 -ir-jvc-decoder -ir-kbd-i2c -ir-lirc-codec -ir-mce_kbd-decoder -ir-nec-decoder -ir-rc5-decoder -ir-rc6-decoder -ir-sanyo-decoder -ir-sharp-decoder -ir-sony-decoder -ir-usb -ir-xmp-decoder -ircomm -ircomm-tty -irda -irda-usb -iris -irlan -irnet -irqbypass -irtty-sir -isci -iscsi_boot_sysfs -iscsi_ibft -iscsi_target_mod -iscsi_tcp -isdn -isdn_bsdcomp -isdnhdlc -isicom -isight_firmware -isl29003 -isl29018 -isl29020 -isl29028 -isl29125 -isl6271a-regulator -isl6405 -isl6421 -isl6423 -isl9305 -isofs -isp116x-hcd -isp1362-hcd -isp1704_charger -isp1760 -it87 -it8712f_wdt -it87_wdt -it913x -itd1000 -ite-cir -itg3200 -iuu_phoenix -ivtv -ivtv-alsa -ivtvfb -iw_c2 -iw_cm -iw_cxgb3 -iw_cxgb4 -iw_nes -iwl3945 -iwl4965 -iwldvm -iwlegacy -iwlmvm -iwlwifi -ix2505v -ixgb -ixgbe -ixgbevf -janz-cmodio -janz-ican3 -jc42 -jedec_probe -jffs2 -jfs -jitterentropy_rng -jmb38x_ms -jme -joydev -joydump -jr3_pci -jsa1212 -jsm -k10temp -k8temp -kafs -kalmia -kaweth -kb3886_bl -kbic -kbtab -kcomedilib -ke_counter -kempld-core -kempld_wdt -kernelcapi -keyspan -keyspan_pda -keyspan_remote -keywrap -kfifo_buf -khazad -kingsun-sir -kl5kusb105 -kmx61 -kobil_sct -ks0108 -ks0127 -ks8842 -ks8851 -ks8851_mll -ks959-sir -ksdazzle-sir -ksz884x -ktti -kvaser_pci -kvaser_usb -kvm -kvm-amd -kvm-intel -kxcjk-1013 -kxsd9 -kxtj9 -kyrofb -l1oip -l2tp_core -l2tp_debugfs -l2tp_eth -l2tp_ip -l2tp_ip6 -l2tp_netlink -l2tp_ppp -l440gx -l4f00242t03 -l64781 -lan78xx -lanai -lance -lapb -lapbether -latch-addr-flash -lattice-ecp3-config -lcd -ld9040 -ldusb -lec -led-class-flash -leds-88pm860x -leds-adp5520 -leds-bd2802 -leds-blinkm -leds-clevo-mail -leds-da903x -leds-da9052 -leds-dac124s085 -leds-gpio -leds-lm3530 -leds-lm3533 -leds-lm355x -leds-lm3642 -leds-lp3944 -leds-lp5521 -leds-lp5523 -leds-lp5562 -leds-lp55xx-common -leds-lp8501 -leds-lp8788 -leds-lp8860 -leds-lt3593 -leds-max8997 -leds-mc13783 -leds-menf21bmc -leds-net48xx -leds-ot200 -leds-pca9532 -leds-pca955x -leds-pca963x -leds-pwm -leds-regulator -leds-ss4200 -leds-tca6507 -leds-tlc591xx -leds-wm831x-status -leds-wm8350 -leds-wrap -ledtrig-backlight -ledtrig-camera -ledtrig-default-on -ledtrig-gpio -ledtrig-heartbeat -ledtrig-oneshot -ledtrig-timer -ledtrig-transient -legousbtower -lg-vl600 -lg2160 -lgdt3305 -lgdt3306a -lgdt330x -lgs8gxx -lib80211 -lib80211_crypt_ccmp -lib80211_crypt_tkip -lib80211_crypt_wep -libahci -libahci_platform -libceph -libcomposite -libcrc32c -libcxgbi -libertas -libertas_cs -libertas_sdio -libertas_spi -libertas_tf -libertas_tf_usb -libfc -libfcoe -libipw -libiscsi -libiscsi_tcp -libore -libosd -libsas -lightning -lineage-pem -linear -lirc_bt829 -lirc_dev -lirc_imon -lirc_parallel -lirc_sasem -lirc_serial -lirc_sir -lirc_zilog -lis3l02dq -lis3lv02d -lis3lv02d_i2c -litelink-sir -lkkbd -llc -llc2 -lm25066 -lm3533-als -lm3533-core -lm3533-ctrlbank -lm3533_bl -lm3630a_bl -lm3639_bl -lm63 -lm70 -lm73 -lm75 -lm77 -lm78 -lm80 -lm83 -lm8323 -lm8333 -lm85 -lm87 -lm90 -lm92 -lm93 -lm95234 -lm95241 -lm95245 -lmc -lms283gf05 -lms501kf03 -lnbh25 -lnbp21 -lnbp22 -lockd -locktorture -logibm -longhaul -longrun -lp -lp3943 -lp3971 -lp3972 -lp855x_bl -lp8727_charger -lp872x -lp8755 -lp8788-buck -lp8788-charger -lp8788-ldo -lp8788_adc -lp8788_bl -lpc_ich -lpc_sch -lpddr_cmds -lpfc -lru_cache -lrw -ltc2941-battery-gauge -ltc2945 -ltc2978 -ltc3589 -ltc4151 -ltc4215 -ltc4222 -ltc4245 -ltc4260 -ltc4261 -ltpc -ltr501 -ltv350qv -lv5207lp -lvstest -lxfb -lxt -lz4 -lz4_compress -lz4hc -lz4hc_compress -m25p80 -m2m-deinterlace -m52790 -m62332 -m88ds3103 -m88rs2000 -m88rs6000t -mISDN_core -mISDN_dsp -mISDNinfineon -mISDNipac -mISDNisar -m_can -ma600-sir -mac-celtic -mac-centeuro -mac-croatian -mac-cyrillic -mac-gaelic -mac-greek -mac-iceland -mac-inuit -mac-roman -mac-romanian -mac-turkish -mac80211 -mac80211_hwsim -mac802154 -mac_hid -macb -machzwd -macmodes -macvlan -macvtap -mag3110 -magellan -mailbox-altera -mantis -mantis_core -map_absent -map_funcs -map_ram -map_rom -marvell -matrix-keymap -matrix_keypad -matrox_w1 -matroxfb_DAC1064 -matroxfb_Ti3026 -matroxfb_accel -matroxfb_base -matroxfb_crtc2 -matroxfb_g450 -matroxfb_maven -matroxfb_misc -max1027 -max1111 -max11801_ts -max1363 -max14577 -max14577_charger -max1586 -max16064 -max16065 -max1619 -max1668 -max17040_battery -max17042_battery -max197 -max20751 -max2165 -max3100 -max31790 -max3421-hcd -max34440 -max517 -max63xx_wdt -max6639 -max6642 -max6650 -max6697 -max6875 -max7359_keypad -max77693 -max77693-haptic -max77693_charger -max8649 -max8660 -max8688 -max8903_charger -max8907 -max8907-regulator -max8925-regulator -max8925_bl -max8925_onkey -max8925_power -max8952 -max8973-regulator -max8997 -max8997_charger -max8997_haptic -max8998 -max8998_charger -mb862xxfb -mb86a16 -mb86a20s -mc13783-adc -mc13783-pwrbutton -mc13783-regulator -mc13783_ts -mc13892-regulator -mc13xxx-core -mc13xxx-i2c -mc13xxx-regulator-core -mc13xxx-spi -mc44s803 -mcb -mcb-pci -mce-inject -mce_amd_inj -mceusb -mcp2120-sir -mcp251x -mcp3021 -mcp320x -mcp3422 -mcp4531 -mcp4725 -mcp4922 -mcryptd -mcs5000_ts -mcs7780 -mcs7830 -mcs_touchkey -mct_u232 -md-cluster -md4 -mdacon -mdc800 -mdio -mdio-bcm-unimac -mdio-bitbang -mdio-gpio -mdio-xgene -me4000 -me_daq -media -megaraid -megaraid_mbox -megaraid_mm -megaraid_sas -mei -mei-me -mei-txe -mei_phy -memory-notifier-error-inject -memstick -men_z135_uart -men_z188_adc -mena21_wdt -menf21bmc -menf21bmc_hwmon -menf21bmc_wdt -metro-usb -metronomefb -meye -mf6x4 -mga -michael_mic -micrel -microchip -microread -microread_i2c -microread_mei -microtek -mii -minix -mip6 -mite -mixcomwd -mk712 -mkiss -mlx4_core -mlx4_en -mlx4_ib -mlx5_core -mlx5_ib -mlx90614 -mlxsw_core -mlxsw_pci -mma8450 -mma8452 -mma9551 -mma9551_core -mma9553 -mmc35240 -mmc_block -mms114 -mn88472 -mn88473 -mos7720 -mos7840 -mostcore -moxa -mpc624 -mpl115 -mpl3115 -mpls_gso -mpls_iptunnel -mpls_router -mpoa -mpr121_touchkey -mpt3sas -mptbase -mptctl -mptfc -mptlan -mptsas -mptscsih -mptspi -mpu3050 -mrf24j40 -mrp -ms5611_core -ms5611_i2c -ms5611_spi -ms5637 -ms_block -ms_sensors_i2c -msdos -msi-laptop -msi-wmi -msi001 -msi2500 -msp3400 -mspro_block -msr -mt2060 -mt2063 -mt20xx -mt2131 -mt2266 -mt29f_spinand -mt312 -mt352 -mt6311-regulator -mt6397-core -mt6397-regulator -mt7601u -mt9m001 -mt9m111 -mt9t031 -mt9t112 -mt9v011 -mt9v022 -mtd -mtd_blkdevs -mtd_dataflash -mtdblock -mtdblock_ro -mtdoops -mtdram -mtdswap -mtip32xx -mtk-sd -mtouch -multipath -multiq3 -musb_hdrc -mv_u3d_core -mv_udc -mvmdio -mvsas -mvumi -mwave -mwifiex -mwifiex_pcie -mwifiex_sdio -mwifiex_usb -mwl8k -mxb -mxc4005 -mxl111sf-demod -mxl111sf-tuner -mxl301rf -mxl5005s -mxl5007t -mxm-wmi -mxser -mxuport -myri10ge -n2 -n411 -n_gsm -n_hdlc -n_r3964 -n_tracerouter -n_tracesink -nand -nand_bch -nand_ecc -nand_ids -nandsim -national -natsemi -nau7802 -navman -nb8800 -nbd -nci -nci_spi -nci_uart -ncpfs -nct6683 -nct6775 -nct7802 -nct7904 -nd_blk -nd_btt -nd_pmem -ne -ne2k-pci -neofb -net1080 -net2272 -net2280 -netconsole -netjet -netlink_diag -netrom -nettel -netup-unidvb -netxen_nic -newtonkbd -nf_conntrack -nf_conntrack_amanda -nf_conntrack_broadcast -nf_conntrack_ftp -nf_conntrack_h323 -nf_conntrack_ipv4 -nf_conntrack_ipv6 -nf_conntrack_irc -nf_conntrack_netbios_ns -nf_conntrack_netlink -nf_conntrack_pptp -nf_conntrack_proto_dccp -nf_conntrack_proto_gre -nf_conntrack_proto_sctp -nf_conntrack_proto_udplite -nf_conntrack_sane -nf_conntrack_sip -nf_conntrack_snmp -nf_conntrack_tftp -nf_defrag_ipv4 -nf_defrag_ipv6 -nf_dup_ipv4 -nf_dup_ipv6 -nf_log_arp -nf_log_bridge -nf_log_common -nf_log_ipv4 -nf_log_ipv6 -nf_nat -nf_nat_amanda -nf_nat_ftp -nf_nat_h323 -nf_nat_ipv4 -nf_nat_ipv6 -nf_nat_irc -nf_nat_masquerade_ipv4 -nf_nat_masquerade_ipv6 -nf_nat_pptp -nf_nat_proto_dccp -nf_nat_proto_gre -nf_nat_proto_sctp -nf_nat_proto_udplite -nf_nat_redirect -nf_nat_sip -nf_nat_snmp_basic -nf_nat_tftp -nf_reject_ipv4 -nf_reject_ipv6 -nf_synproxy_core -nf_tables -nf_tables_arp -nf_tables_bridge -nf_tables_inet -nf_tables_ipv4 -nf_tables_ipv6 -nf_tables_netdev -nfc -nfc_digital -nfcmrvl -nfcmrvl_i2c -nfcmrvl_spi -nfcmrvl_uart -nfcmrvl_usb -nfcsim -nfcwilink -nfit -nfnetlink -nfnetlink_acct -nfnetlink_cthelper -nfnetlink_cttimeout -nfnetlink_log -nfnetlink_queue -nfs -nfs_acl -nfs_layout_flexfiles -nfs_layout_nfsv41_files -nfsd -nfsv2 -nfsv3 -nfsv4 -nft_chain_nat_ipv4 -nft_chain_nat_ipv6 -nft_chain_route_ipv4 -nft_chain_route_ipv6 -nft_compat -nft_counter -nft_ct -nft_dup_ipv4 -nft_dup_ipv6 -nft_exthdr -nft_hash -nft_limit -nft_log -nft_masq -nft_masq_ipv4 -nft_masq_ipv6 -nft_meta -nft_meta_bridge -nft_nat -nft_queue -nft_rbtree -nft_redir -nft_redir_ipv4 -nft_redir_ipv6 -nft_reject -nft_reject_bridge -nft_reject_inet -nft_reject_ipv4 -nft_reject_ipv6 -nftl -ngene -nhc_dest -nhc_fragment -nhc_hop -nhc_ipv6 -nhc_mobility -nhc_routing -nhc_udp -ni65 -ni_6527 -ni_65xx -ni_660x -ni_670x -ni_at_a2150 -ni_at_ao -ni_atmio -ni_atmio16d -ni_daq_700 -ni_daq_dio24 -ni_labpc -ni_labpc_common -ni_labpc_cs -ni_labpc_isadma -ni_labpc_pci -ni_mio_cs -ni_pcidio -ni_pcimio -ni_tio -ni_tiocmd -ni_usb6501 -nicstar -nilfs2 -niu -nlmon -nls_ascii -nls_cp1250 -nls_cp1251 -nls_cp1255 -nls_cp737 -nls_cp775 -nls_cp850 -nls_cp852 -nls_cp855 -nls_cp857 -nls_cp860 -nls_cp861 -nls_cp862 -nls_cp863 -nls_cp864 -nls_cp865 -nls_cp866 -nls_cp869 -nls_cp874 -nls_cp932 -nls_cp936 -nls_cp949 -nls_cp950 -nls_euc-jp -nls_iso8859-13 -nls_iso8859-14 -nls_iso8859-15 -nls_iso8859-2 -nls_iso8859-3 -nls_iso8859-4 -nls_iso8859-5 -nls_iso8859-6 -nls_iso8859-7 -nls_iso8859-9 -nls_koi8-r -nls_koi8-ru -nls_koi8-u -nls_utf8 -nmclan_cs -nosy -notifier-error-inject -nouveau -nozomi -ns558 -ns83820 -nsc-ircc -nsc_gpio -nsp32 -nsp_cs -ntb -ntb_netdev -ntb_pingpong -ntb_tool -ntb_transport -ntc_thermistor -ntfs -null_blk -nuvoton-cir -nv_tco -nvidiafb -nvme -nvmem_core -nvram -nxp-nci -nxp-nci_i2c -nxt200x -nxt6000 -objlayoutdriver -ocfb -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -ocrdma -of_xilinx_wdt -old_belkin-sir -omfs -omninet -on20 -on26 -onenand -opencores-kbd -openvswitch -oprofile -opt3001 -opticon -option -or51132 -or51211 -orinoco -orinoco_cs -orinoco_nortel -orinoco_plx -orinoco_tmd -orinoco_usb -osd -osdblk -osst -oti6858 -ov2640 -ov5642 -ov6650 -ov7640 -ov7670 -ov772x -ov9640 -ov9740 -overlay -oxu210hp-hcd -p4-clockmod -p54common -p54pci -p54spi -p54usb -p8022 -p8023 -pa12203001 -padlock-aes -padlock-sha -palmas-pwrbutton -palmas-regulator -panasonic-laptop -pandora_bl -panel -paride -parkbd -parport -parport_ax88796 -parport_cs -parport_pc -parport_serial -pas16 -pata_acpi -pata_ali -pata_amd -pata_artop -pata_atiixp -pata_atp867x -pata_cmd640 -pata_cmd64x -pata_cs5520 -pata_cs5530 -pata_cs5535 -pata_cs5536 -pata_cypress -pata_efar -pata_hpt366 -pata_hpt37x -pata_hpt3x2n -pata_hpt3x3 -pata_isapnp -pata_it8213 -pata_it821x -pata_jmicron -pata_legacy -pata_marvell -pata_mpiix -pata_netcell -pata_ninja32 -pata_ns87410 -pata_ns87415 -pata_oldpiix -pata_opti -pata_optidma -pata_pcmcia -pata_pdc2027x -pata_pdc202xx_old -pata_piccolo -pata_platform -pata_radisys -pata_rdc -pata_rz1000 -pata_sc1200 -pata_sch -pata_serverworks -pata_sil680 -pata_sl82c105 -pata_triflex -pata_via -pc110pad -pc300too -pc87360 -pc8736x_gpio -pc87413_wdt -pc87427 -pcap-regulator -pcap_keys -pcap_ts -pcbc -pcbit -pcd -pcf50633 -pcf50633-adc -pcf50633-backlight -pcf50633-charger -pcf50633-gpio -pcf50633-input -pcf50633-regulator -pcf8574_keypad -pcf8591 -pch_can -pch_dma -pch_gbe -pch_phub -pch_uart -pch_udc -pci -pci-stub -pci200syn -pcips2 -pcl711 -pcl724 -pcl726 -pcl730 -pcl812 -pcl816 -pcl818 -pcm3724 -pcmad -pcmcia -pcmcia_core -pcmcia_rsrc -pcmciamtd -pcmda12 -pcmmio -pcmuio -pcnet32 -pcnet_cs -pcrypt -pcspkr -pcwd -pcwd_pci -pcwd_usb -pd -pd6729 -pda_power -pdc_adma -peak_pci -peak_pcmcia -peak_usb -pegasus -penmount -percpu_test -pf -pfuze100-regulator -pg -phantom -phonet -phram -phy-bcm-kona-usb2 -phy-exynos-usb2 -phy-gpio-vbus-usb -phy-isp1301 -phy-pxa-28nm-hsic -phy-pxa-28nm-usb2 -phy-tahvo -phy-tusb1210 -physmap -pinctrl-broxton -pinctrl-intel -pinctrl-sunrisepoint -pixcir_i2c_ts -pkcs7_test_key -pktcdvd -pktgen -pl2303 -plat-ram -plat_nand -platform_lcd -plip -plusb -pluto2 -plx_pci -pm-notifier-error-inject -pm2fb -pm3fb -pm80xx -pm8941-wled -pmbus -pmbus_core -pmc551 -pmcraid -pn533 -pn544 -pn544_i2c -pn544_mei -pn_pep -poly1305_generic -port100 -powermate -powernow-k6 -powernow-k7 -powr1220 -ppa -ppdev -ppp_async -ppp_deflate -ppp_mppe -ppp_synctty -pppoatm -pppoe -pppox -pps-gpio -pps-ldisc -pps_core -pps_parport -pptp -prism2_usb -processor_thermal_device -ps2mult -psmouse -psnap -pt -pti -ptp -ptp_pch -pulsedlight-lidar-lite-v2 -punit_atom_debug -pvpanic -pvrusb2 -pwc -pwm-beeper -pwm-lp3943 -pwm-lpss -pwm-lpss-pci -pwm-lpss-platform -pwm-pca9685 -pwm-regulator -pwm-twl -pwm-twl-led -pwm_bl -pxa27x_udc -qat_dh895xcc -qat_dh895xccvf -qcaux -qcom-spmi-iadc -qcom-spmi-vadc -qcom_spmi-regulator -qcserial -qed -qede -qinfo_probe -qla1280 -qla2xxx -qla3xxx -qla4xxx -qlcnic -qlge -qlogic_cs -qlogicfas -qlogicfas408 -qm1d1c0042 -qmi_wwan -qnx4 -qnx6 -qsemi -qt1010 -qt1070 -qt2160 -quatech2 -quatech_daqp_cs -quota_tree -quota_v1 -quota_v2 -qxl -r128 -r592 -r6040 -r8152 -r8169 -r8188eu -r8192e_pci -r8192u_usb -r820t -r82600_edac -r852 -r8712u -r8723au -r8a66597-hcd -r8a66597-udc -radeon -radeonfb -radio-aimslab -radio-aztech -radio-bcm2048 -radio-cadet -radio-gemtek -radio-i2c-si470x -radio-isa -radio-keene -radio-ma901 -radio-maxiradio -radio-miropcm20 -radio-mr800 -radio-platform-si4713 -radio-raremono -radio-rtrack2 -radio-sf16fmi -radio-sf16fmr2 -radio-shark -radio-si476x -radio-tea5764 -radio-terratec -radio-timb -radio-trust -radio-typhoon -radio-usb-si470x -radio-usb-si4713 -radio-wl1273 -radio-zoltrix -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid6test -raid_class -ramoops -raw -ray_cs -rbd -rbtree_test -rc-adstech-dvb-t-pci -rc-alink-dtu-m -rc-anysee -rc-apac-viewcomp -rc-asus-pc39 -rc-asus-ps3-100 -rc-ati-tv-wonder-hd-600 -rc-ati-x10 -rc-avermedia -rc-avermedia-a16d -rc-avermedia-cardbus -rc-avermedia-dvbt -rc-avermedia-m135a -rc-avermedia-m733a-rm-k6 -rc-avermedia-rm-ks -rc-avertv-303 -rc-azurewave-ad-tu700 -rc-behold -rc-behold-columbus -rc-budget-ci-old -rc-cinergy -rc-cinergy-1400 -rc-core -rc-delock-61959 -rc-dib0700-nec -rc-dib0700-rc5 -rc-digitalnow-tinytwin -rc-digittrade -rc-dm1105-nec -rc-dntv-live-dvb-t -rc-dntv-live-dvbt-pro -rc-dvbsky -rc-em-terratec -rc-encore-enltv -rc-encore-enltv-fm53 -rc-encore-enltv2 -rc-evga-indtube -rc-eztv -rc-flydvb -rc-flyvideo -rc-fusionhdtv-mce -rc-gadmei-rm008z -rc-genius-tvgo-a11mce -rc-gotview7135 -rc-hauppauge -rc-imon-mce -rc-imon-pad -rc-iodata-bctv7e -rc-it913x-v1 -rc-it913x-v2 -rc-kaiomy -rc-kworld-315u -rc-kworld-pc150u -rc-kworld-plus-tv-analog -rc-leadtek-y04g0051 -rc-lirc -rc-lme2510 -rc-loopback -rc-manli -rc-medion-x10 -rc-medion-x10-digitainer -rc-medion-x10-or2x -rc-msi-digivox-ii -rc-msi-digivox-iii -rc-msi-tvanywhere -rc-msi-tvanywhere-plus -rc-nebula -rc-nec-terratec-cinergy-xs -rc-norwood -rc-npgtech -rc-pctv-sedna -rc-pinnacle-color -rc-pinnacle-grey -rc-pinnacle-pctv-hd -rc-pixelview -rc-pixelview-002t -rc-pixelview-mk12 -rc-pixelview-new -rc-powercolor-real-angel -rc-proteus-2309 -rc-purpletv -rc-pv951 -rc-rc6-mce -rc-real-audio-220-32-keys -rc-reddo -rc-snapstream-firefly -rc-streamzap -rc-su3000 -rc-tbs-nec -rc-technisat-ts35 -rc-technisat-usb2 -rc-terratec-cinergy-c-pci -rc-terratec-cinergy-s2-hd -rc-terratec-cinergy-xs -rc-terratec-slim -rc-terratec-slim-2 -rc-tevii-nec -rc-tivo -rc-total-media-in-hand -rc-total-media-in-hand-02 -rc-trekstor -rc-tt-1500 -rc-twinhan-dtv-cab-ci -rc-twinhan1027 -rc-videomate-m1f -rc-videomate-s350 -rc-videomate-tv-pvr -rc-winfast -rc-winfast-usbii-deluxe -rc5t583-regulator -rdc321x-southbridge -rdma_cm -rdma_ucm -rds -rds_rdma -rds_tcp -realtek -redboot -redrat3 -reed_solomon -regmap-spmi -regulator-haptic -reiserfs -remoteproc -retu-mfd -retu-pwrbutton -retu_wdt -rfc1051 -rfc1201 -rfcomm -rfd_ftl -rfkill-gpio -rfkill-regulator -rio-scan -rio500 -rionet -rivafb -rj54n1cb0c -rmd128 -rmd160 -rmd256 -rmd320 -rn5t618 -rn5t618-regulator -rn5t618_wdt -rndis_host -rndis_wlan -rocket -rohm_bu21023 -romfs -rose -rotary_encoder -rp2 -rpcrdma -rpcsec_gss_krb5 -rpr0521 -rrpc -rsi_91x -rsi_sdio -rsi_usb -rsxx -rt2400pci -rt2500pci -rt2500usb -rt2800lib -rt2800mmio -rt2800pci -rt2800usb -rt2x00lib -rt2x00mmio -rt2x00pci -rt2x00usb -rt5033 -rt5033-regulator -rt5033_battery -rt61pci -rt73usb -rt9455_charger -rtc-88pm80x -rtc-88pm860x -rtc-ab-b5ze-s3 -rtc-ab3100 -rtc-abx80x -rtc-bq32k -rtc-bq4802 -rtc-da9052 -rtc-da9055 -rtc-da9063 -rtc-ds1286 -rtc-ds1305 -rtc-ds1307 -rtc-ds1343 -rtc-ds1347 -rtc-ds1374 -rtc-ds1390 -rtc-ds1511 -rtc-ds1553 -rtc-ds1672 -rtc-ds1685 -rtc-ds1742 -rtc-ds2404 -rtc-ds3232 -rtc-ds3234 -rtc-em3027 -rtc-fm3130 -rtc-hid-sensor-time -rtc-isl12022 -rtc-isl12057 -rtc-isl1208 -rtc-lp8788 -rtc-m41t80 -rtc-m41t93 -rtc-m41t94 -rtc-m48t35 -rtc-m48t59 -rtc-m48t86 -rtc-max6900 -rtc-max6902 -rtc-max8907 -rtc-max8925 -rtc-max8997 -rtc-max8998 -rtc-mc13xxx -rtc-mcp795 -rtc-mrst -rtc-msm6242 -rtc-mt6397 -rtc-palmas -rtc-pcap -rtc-pcf2123 -rtc-pcf2127 -rtc-pcf50633 -rtc-pcf85063 -rtc-pcf8523 -rtc-pcf8563 -rtc-pcf8583 -rtc-r9701 -rtc-rc5t583 -rtc-rp5c01 -rtc-rs5c348 -rtc-rs5c372 -rtc-rv3029c2 -rtc-rv8803 -rtc-rx4581 -rtc-rx8025 -rtc-rx8581 -rtc-s35390a -rtc-s5m -rtc-stk17ta8 -rtc-tps6586x -rtc-tps65910 -rtc-tps80031 -rtc-twl -rtc-v3020 -rtc-wm831x -rtc-wm8350 -rtc-x1205 -rtd520 -rti800 -rti802 -rtl2830 -rtl2832 -rtl2832_sdr -rtl8150 -rtl8187 -rtl8188ee -rtl818x_pci -rtl8192c-common -rtl8192ce -rtl8192cu -rtl8192de -rtl8192ee -rtl8192se -rtl8723-common -rtl8723ae -rtl8723be -rtl8821ae -rtl8xxxu -rtl_pci -rtl_usb -rtllib -rtllib_crypt_ccmp -rtllib_crypt_tkip -rtllib_crypt_wep -rtlwifi -rts5208 -rtsx_pci -rtsx_pci_ms -rtsx_pci_sdmmc -rtsx_usb -rtsx_usb_ms -rtsx_usb_sdmmc -rx51_battery -rxkad -s1d13xxxfb -s2250 -s2255drv -s2io -s2mpa01 -s2mps11 -s3fb -s3fwrn5 -s3fwrn5_i2c -s526 -s5h1409 -s5h1411 -s5h1420 -s5m8767 -s626 -s6e63m0 -s921 -saa6588 -saa6752hs -saa7110 -saa7115 -saa7127 -saa7134 -saa7134-alsa -saa7134-dvb -saa7134-empress -saa7134-go7007 -saa7146 -saa7146_vv -saa7164 -saa717x -saa7185 -saa7706h -safe_serial -salsa20-i586 -salsa20_generic -samsung-keypad -samsung-laptop -samsung-q10 -samsung-sxgbe -sata_inic162x -sata_mv -sata_nv -sata_promise -sata_qstor -sata_sil -sata_sil24 -sata_sis -sata_svw -sata_sx4 -sata_uli -sata_via -sata_vsc -savage -savagefb -sb1000 -sbc60xxwdt -sbc7240_wdt -sbc8360 -sbc_epx_c3 -sbc_fitpc2_wdt -sbc_gxx -sbni -sbp_target -sbs -sbs-battery -sbshc -sc -sc1200wdt -sc16is7xx -sc92031 -sca3000 -scb2_flash -scc -sch311x_wdt -sch5627 -sch5636 -sch56xx-common -sch_atm -sch_cbq -sch_choke -sch_codel -sch_drr -sch_dsmark -sch_fq -sch_fq_codel -sch_gred -sch_hfsc -sch_hhf -sch_htb -sch_ingress -sch_mqprio -sch_multiq -sch_netem -sch_pie -sch_plug -sch_prio -sch_qfq -sch_red -sch_sfb -sch_sfq -sch_tbf -sch_teql -scsi_debug -scsi_dh_alua -scsi_dh_emc -scsi_dh_hp_sw -scsi_dh_rdac -scsi_transport_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -scsi_transport_srp -sctp -sctp_probe -scx200 -scx200_acb -scx200_docflash -scx200_gpio -scx200_hrt -scx200_wdt -sdhci -sdhci-acpi -sdhci-pci -sdhci-pltfm -sdio_uart -sdla -sdricoh_cs -sealevel -sedlbauer_cs -seed -sensorhub -seqiv -ser_gigaset -serial2002 -serial_cs -serio_raw -sermouse -serpent-sse2-i586 -serpent_generic -serport -ses -sfc -sfi-cpufreq -sh_veu -shark2 -shpchp -sht15 -sht21 -shtc1 -si2157 -si2165 -si2168 -si21xx -si4713 -si476x-core -si7005 -si7020 -sidewinder -sierra -sierra_net -sil164 -sim710 -sir-dev -sis -sis-agp -sis190 -sis5595 -sis900 -sisfb -sisusbvga -sit -sja1000 -sja1000_isa -sja1000_platform -skfp -skge -sky2 -sky81452 -sky81452-backlight -sky81452-regulator -sl811-hcd -sl811_cs -slcan -slicoss -slip -slram -sm501 -sm501fb -sm712fb -sm750fb -sm_common -sm_ftl -smb347-charger -smc-ultra -smc9194 -smc91c92_cs -smipcie -smm665 -smsc -smsc-ircc2 -smsc37b787_wdt -smsc47b397 -smsc47m1 -smsc47m192 -smsc75xx -smsc911x -smsc9420 -smsc95xx -smscufx -smsdvb -smsmdtv -smssdio -smsusb -snd -snd-ac97-codec -snd-ad1816a -snd-ad1848 -snd-ad1889 -snd-adlib -snd-ak4113 -snd-ak4114 -snd-ak4117 -snd-ak4xxx-adda -snd-ali5451 -snd-aloop -snd-als100 -snd-als300 -snd-als4000 -snd-asihpi -snd-atiixp -snd-atiixp-modem -snd-au8810 -snd-au8820 -snd-au8830 -snd-aw2 -snd-azt1605 -snd-azt2316 -snd-azt2320 -snd-azt3328 -snd-bcd2000 -snd-bebob -snd-bt87x -snd-ca0106 -snd-cmi8328 -snd-cmi8330 -snd-cmipci -snd-compress -snd-cs4231 -snd-cs4236 -snd-cs4281 -snd-cs46xx -snd-cs5530 -snd-cs5535audio -snd-cs8427 -snd-ctxfi -snd-darla20 -snd-darla24 -snd-dice -snd-dummy -snd-echo3g -snd-emu10k1 -snd-emu10k1-synth -snd-emu10k1x -snd-emu8000-synth -snd-emux-synth -snd-ens1370 -snd-ens1371 -snd-es1688 -snd-es1688-lib -snd-es18xx -snd-es1938 -snd-es1968 -snd-firewire-digi00x -snd-firewire-lib -snd-firewire-tascam -snd-fireworks -snd-fm801 -snd-gina20 -snd-gina24 -snd-gus-lib -snd-gusclassic -snd-gusextreme -snd-gusmax -snd-hda-codec -snd-hda-codec-analog -snd-hda-codec-ca0110 -snd-hda-codec-ca0132 -snd-hda-codec-cirrus -snd-hda-codec-cmedia -snd-hda-codec-conexant -snd-hda-codec-generic -snd-hda-codec-hdmi -snd-hda-codec-idt -snd-hda-codec-realtek -snd-hda-codec-si3054 -snd-hda-codec-via -snd-hda-core -snd-hda-ext-core -snd-hda-intel -snd-hdsp -snd-hdspm -snd-hrtimer -snd-hwdep -snd-i2c -snd-ice1712 -snd-ice1724 -snd-ice17xx-ak4xxx -snd-indigo -snd-indigodj -snd-indigodjx -snd-indigoio -snd-indigoiox -snd-intel-sst-acpi -snd-intel-sst-core -snd-intel-sst-pci -snd-intel8x0 -snd-intel8x0m -snd-interwave -snd-interwave-stb -snd-isight -snd-jazz16 -snd-korg1212 -snd-layla20 -snd-layla24 -snd-lola -snd-lx6464es -snd-maestro3 -snd-mia -snd-miro -snd-mixart -snd-mixer-oss -snd-mona -snd-mpu401 -snd-mpu401-uart -snd-msnd-classic -snd-msnd-lib -snd-msnd-pinnacle -snd-mtpav -snd-mts64 -snd-nm256 -snd-opl3-lib -snd-opl3-synth -snd-opl3sa2 -snd-opl4-lib -snd-opl4-synth -snd-opti92x-ad1848 -snd-opti92x-cs4231 -snd-opti93x -snd-oxfw -snd-oxygen -snd-oxygen-lib -snd-pcm -snd-pcm-dmaengine -snd-pcm-oss -snd-pcsp -snd-pcxhr -snd-pdaudiocf -snd-portman2x4 -snd-pt2258 -snd-rawmidi -snd-riptide -snd-rme32 -snd-rme96 -snd-rme9652 -snd-sb-common -snd-sb16 -snd-sb16-csp -snd-sb16-dsp -snd-sb8 -snd-sb8-dsp -snd-sbawe -snd-sc6000 -snd-scs1x -snd-seq -snd-seq-device -snd-seq-dummy -snd-seq-midi -snd-seq-midi-emul -snd-seq-midi-event -snd-seq-virmidi -snd-serial-u16550 -snd-sis7019 -snd-soc-ac97 -snd-soc-adau1701 -snd-soc-ak4104 -snd-soc-ak4554 -snd-soc-ak4613 -snd-soc-ak4642 -snd-soc-ak5386 -snd-soc-alc5623 -snd-soc-core -snd-soc-cs35l32 -snd-soc-cs4265 -snd-soc-cs4270 -snd-soc-cs4271 -snd-soc-cs4271-i2c -snd-soc-cs4271-spi -snd-soc-cs42l51 -snd-soc-cs42l51-i2c -snd-soc-cs42l52 -snd-soc-cs42l56 -snd-soc-cs42l73 -snd-soc-cs42xx8 -snd-soc-cs42xx8-i2c -snd-soc-cs4349 -snd-soc-dmic -snd-soc-es8328 -snd-soc-fsl-asrc -snd-soc-fsl-esai -snd-soc-fsl-sai -snd-soc-fsl-spdif -snd-soc-fsl-ssi -snd-soc-gtm601 -snd-soc-imx-audmux -snd-soc-max98090 -snd-soc-pcm1681 -snd-soc-pcm1792a-codec -snd-soc-pcm512x -snd-soc-pcm512x-i2c -snd-soc-pcm512x-spi -snd-soc-rl6231 -snd-soc-rl6347a -snd-soc-rt286 -snd-soc-rt5631 -snd-soc-rt5640 -snd-soc-rt5645 -snd-soc-rt5660 -snd-soc-rt5670 -snd-soc-sgtl5000 -snd-soc-si476x -snd-soc-sigmadsp -snd-soc-sigmadsp-i2c -snd-soc-simple-card -snd-soc-skl -snd-soc-skl-ipc -snd-soc-skl_rt286 -snd-soc-sn95031 -snd-soc-spdif-rx -snd-soc-spdif-tx -snd-soc-ssm2602 -snd-soc-ssm2602-i2c -snd-soc-ssm2602-spi -snd-soc-ssm4567 -snd-soc-sst-acpi -snd-soc-sst-baytrail-pcm -snd-soc-sst-broadwell -snd-soc-sst-byt-max98090-mach -snd-soc-sst-byt-rt5640-mach -snd-soc-sst-bytcr-rt5640 -snd-soc-sst-bytcr-rt5660 -snd-soc-sst-cht-bsw-max98090_ti -snd-soc-sst-cht-bsw-rt5645 -snd-soc-sst-cht-bsw-rt5672 -snd-soc-sst-dsp -snd-soc-sst-haswell -snd-soc-sst-haswell-pcm -snd-soc-sst-ipc -snd-soc-sst-mfld-platform -snd-soc-sta32x -snd-soc-sta350 -snd-soc-sti-sas -snd-soc-tas2552 -snd-soc-tas5086 -snd-soc-tas571x -snd-soc-tfa9879 -snd-soc-tlv320aic23 -snd-soc-tlv320aic23-i2c -snd-soc-tlv320aic23-spi -snd-soc-tlv320aic31xx -snd-soc-tlv320aic3x -snd-soc-tpa6130a2 -snd-soc-ts3a227e -snd-soc-wm8510 -snd-soc-wm8523 -snd-soc-wm8580 -snd-soc-wm8711 -snd-soc-wm8728 -snd-soc-wm8731 -snd-soc-wm8737 -snd-soc-wm8741 -snd-soc-wm8750 -snd-soc-wm8753 -snd-soc-wm8770 -snd-soc-wm8776 -snd-soc-wm8804 -snd-soc-wm8804-i2c -snd-soc-wm8804-spi -snd-soc-wm8903 -snd-soc-wm8962 -snd-soc-wm8978 -snd-soc-xtfpga-i2s -snd-sonicvibes -snd-sscape -snd-tea6330t -snd-timer -snd-trident -snd-ua101 -snd-usb-6fire -snd-usb-audio -snd-usb-caiaq -snd-usb-hiface -snd-usb-line6 -snd-usb-pod -snd-usb-podhd -snd-usb-toneport -snd-usb-us122l -snd-usb-usx2y -snd-usb-variax -snd-usbmidi-lib -snd-util-mem -snd-via82xx -snd-via82xx-modem -snd-virmidi -snd-virtuoso -snd-vx-lib -snd-vx222 -snd-vxpocket -snd-wavefront -snd-wss-lib -snd-ymfpci -snic -soc_button_array -soc_camera -soc_camera_platform -soc_mediabus -softdog -softing -softing_cs -solo6x10 -solos-pci -sony-btf-mpx -sony-laptop -sonypi -soundcore -sp2 -sp5100_tco -sp8870 -sp887x -spaceball -spaceorb -sparse-keymap -spcp8x5 -speakup -speakup_acntpc -speakup_acntsa -speakup_apollo -speakup_audptr -speakup_bns -speakup_decext -speakup_decpc -speakup_dectlk -speakup_dtlk -speakup_dummy -speakup_keypc -speakup_ltlk -speakup_soft -speakup_spkout -speakup_txprt -spectrum_cs -speedfax -speedtch -spi-altera -spi-bitbang -spi-butterfly -spi-cadence -spi-dln2 -spi-dw -spi-dw-midpci -spi-dw-mmio -spi-gpio -spi-lm70llp -spi-nor -spi-oc-tiny -spi-pxa2xx-pci -spi-pxa2xx-platform -spi-sc18is602 -spi-tle62x0 -spi-topcliff-pch -spi-xcomm -spi-zynqmp-gqspi -spi_ks8995 -spidev -spmi -sr9700 -sr9800 -ssb -ssb-hcd -ssfdc -ssp_accel_sensor -ssp_gyro_sensor -ssp_iio -sst25l -sstfb -ssu100 -ssv_dnp -st -st-nci -st-nci_i2c -st-nci_spi -st1232 -st21nfca_hci -st21nfca_i2c -st_accel -st_accel_i2c -st_accel_spi -st_drv -st_gyro -st_gyro_i2c -st_gyro_spi -st_magn -st_magn_i2c -st_magn_spi -st_pressure -st_pressure_i2c -st_pressure_spi -st_sensors -st_sensors_i2c -st_sensors_spi -starfire -stb0899 -stb6000 -stb6100 -ste10Xp -ste_modem_rproc -stex -stinger -stir4200 -stk1160 -stk3310 -stk8312 -stk8ba50 -stkwebcam -stm_console -stm_core -stmmac -stmmac-platform -stowaway -stp -streamzap -stv0288 -stv0297 -stv0299 -stv0367 -stv0900 -stv090x -stv6110 -stv6110x -sun4i-codec -sundance -sungem -sungem_phy -sunhme -suni -sunkbd -sunrpc -sur40 -surfacepro3_button -svgalib -sworks-agp -sx8 -sx8654 -sx9500 -sym53c416 -sym53c500_cs -sym53c8xx -symbolserial -synaptics_i2c -synaptics_i2c_rmi4 -synaptics_usb -synclink -synclink_cs -synclink_gt -synclinkmp -syscopyarea -sysfillrect -sysimgblt -sysv -t128 -t1isa -t1pci -t5403 -target_core_file -target_core_iblock -target_core_mod -target_core_pscsi -target_core_user -tc1100-wmi -tc74 -tc90522 -tca6416-keypad -tca8418_keypad -tcic -tcm_fc -tcm_loop -tcm_qla2xxx -tcm_usb_gadget -tcp_bic -tcp_cdg -tcp_dctcp -tcp_diag -tcp_highspeed -tcp_htcp -tcp_hybla -tcp_illinois -tcp_lp -tcp_probe -tcp_scalable -tcp_vegas -tcp_veno -tcp_westwood -tcp_yeah -tcrypt -tcs3414 -tcs3472 -tda10021 -tda10023 -tda10048 -tda1004x -tda10071 -tda10086 -tda18212 -tda18218 -tda18271 -tda18271c2dd -tda665x -tda7432 -tda8083 -tda8261 -tda826x -tda827x -tda8290 -tda9840 -tda9887 -tda998x -tdfx -tdfxfb -tdo24m -tea -tea575x -tea5761 -tea5767 -tea6415c -tea6420 -team -team_mode_activebackup -team_mode_broadcast -team_mode_loadbalance -team_mode_random -team_mode_roundrobin -tef6862 -tehuti -tekram-sir -teles_cs -teranetics -test-hexdump -test-kstrtox -test-string_helpers -test_bpf -test_firmware -test_module -test_power -test_printf -test_static_key_base -test_static_keys -test_udelay -test_user_copy -tg3 -tgr192 -thinkpad_acpi -thmc50 -thunderbolt -ti-adc081c -ti-adc128s052 -ti_am335x_adc -ti_am335x_tsc -ti_am335x_tscadc -ti_dac7512 -ti_usb_3410_5052 -tifm_7xx1 -tifm_core -tifm_ms -tifm_sd -timb_dma -timberdale -timblogiw -timbuart -timeriomem-rng -tipc -tlan -tlclk -tm6000 -tm6000-alsa -tm6000-dvb -tmdc -tmem -tmp006 -tmp102 -tmp103 -tmp401 -tmp421 -toim3232-sir -topstar-laptop -torture -toshiba-wmi -toshiba_acpi -toshiba_bluetooth -toshiba_haps -toshsd -touchit213 -touchright -touchwin -tpci200 -tpm-rng -tpm_atmel -tpm_crb -tpm_i2c_atmel -tpm_i2c_infineon -tpm_i2c_nuvoton -tpm_infineon -tpm_nsc -tpm_st33zp24 -tpm_st33zp24_i2c -tpm_st33zp24_spi -tps40422 -tps51632-regulator -tps6105x -tps6105x-regulator -tps62360-regulator -tps65010 -tps65023-regulator -tps6507x -tps6507x-regulator -tps6507x-ts -tps65090-charger -tps65090-regulator -tps65217_bl -tps65217_charger -tps65218 -tps65218-pwrbutton -tps6524x-regulator -tps6586x-regulator -tps65910-regulator -tps65912-regulator -tps80031-regulator -trancevibrator -trf7970a -tridentfb -ts2020 -ts_bm -ts_fsm -ts_kmp -tsc2004 -tsc2005 -tsc2007 -tsc200x-core -tsc40 -tscan1 -tsi568 -tsi57x -tsi721_mport -tsl2550 -tsl2563 -tsl2583 -tsl2x7x_core -tsl4531 -tsys01 -tsys02d -ttm -ttpci-eeprom -ttusb_dec -ttusbdecfe -ttusbir -tua6100 -tua9001 -tulip -tuner -tuner-simple -tuner-types -tuner-xc2028 -tunnel4 -tunnel6 -turbografx -tvaudio -tveeprom -tvp5150 -tw2804 -tw68 -tw9903 -tw9906 -tw9910 -twidjoy -twl-regulator -twl4030-madc -twl4030-madc-hwmon -twl4030-pwrbutton -twl4030-vibra -twl4030_charger -twl4030_keypad -twl4030_madc_battery -twl4030_wdt -twl6030-gpadc -twl6040-vibra -twofish-i586 -twofish_common -twofish_generic -typhoon -u132-hcd -u14-34f -uPD98402 -u_ether -u_serial -uartlite -uas -ubi -ubifs -ucb1400_core -ucb1400_ts -ucd9000 -ucd9200 -uda1342 -udc-core -udf -udl -udlfb -udp_diag -udp_tunnel -ueagle-atm -ufs -ufshcd -ufshcd-pci -ufshcd-pltfrm -uhid -uio -uio_aec -uio_cif -uio_dmem_genirq -uio_mf624 -uio_netx -uio_pci_generic -uio_pdrv_genirq -uio_pruss -uio_sercos3 -uli526x -ulpi -ultrastor -umc -umem -ums-alauda -ums-cypress -ums-datafab -ums-eneub6250 -ums-freecom -ums-isd200 -ums-jumpshot -ums-karma -ums-onetouch -ums-realtek -ums-sddr09 -ums-sddr55 -ums-usbat -unix_diag -upd64031a -upd64083 -us5182d -usb-serial-simple -usb-storage -usb3503 -usb8xxx -usb_8dev -usb_debug -usb_f_acm -usb_f_ecm -usb_f_ecm_subset -usb_f_eem -usb_f_fs -usb_f_hid -usb_f_mass_storage -usb_f_midi -usb_f_ncm -usb_f_obex -usb_f_phonet -usb_f_printer -usb_f_rndis -usb_f_serial -usb_f_ss_lb -usb_f_uac1 -usb_f_uac2 -usb_f_uvc -usb_gigaset -usb_wwan -usbatm -usbdux -usbduxfast -usbduxsigma -usbhid -usbip-core -usbip-host -usbkbd -usblcd -usbled -usblp -usbmon -usbmouse -usbnet -usbserial -usbsevseg -usbtest -usbtmc -usbtouchscreen -usbtv -usbvision -usdhi6rol0 -userio -userspace-consumer -ushc -usnic_verbs -uss720 -uvcvideo -uvesafb -uwb -v4l2-common -v4l2-dv-timings -v4l2-flash-led-class -v4l2-mem2mem -vboxguest -vboxsf -vboxvideo -vcan -vcnl4000 -ven_rsi_91x -ven_rsi_sdio -ven_rsi_usb -ves1820 -ves1x93 -veth -vfio -vfio-pci -vfio_iommu_type1 -vfio_virqfd -vga16fb -vgastate -vgem -vgg2432a4 -vhci-hcd -vhost -vhost_net -vhost_scsi -via -via-camera -via-cputemp -via-ircc -via-rhine -via-rng -via-sdmmc -via-velocity -via686a -via_wdt -viafb -video -videobuf-core -videobuf-dma-contig -videobuf-dma-sg -videobuf-dvb -videobuf-vmalloc -videobuf2-core -videobuf2-dma-contig -videobuf2-dma-sg -videobuf2-dvb -videobuf2-memops -videobuf2-v4l2 -videobuf2-vmalloc -videocodec -videodev -vim2m -viperboard -viperboard_adc -virt-dma -virtio-gpu -virtio-rng -virtio_input -virtio_scsi -virtual -visor -vitesse -vivid -vlsi_ir -vmac -vme_ca91cx42 -vme_pio2 -vme_tsi148 -vme_user -vme_vmivme7805 -vmk80xx -vmlfb -vmw_balloon -vmw_pvscsi -vmw_vmci -vmw_vsock_vmci_transport -vmwgfx -vmxnet3 -vp27smpx -vport-geneve -vport-gre -vport-vxlan -vpx3220 -vrf -vringh -vsock -vsxxxaa -vt1211 -vt6655_stage -vt6656_stage -vt8231 -vt8623fb -vub300 -vx855 -vxge -vxlan -vz89x -w1-gpio -w1_bq27000 -w1_ds2406 -w1_ds2408 -w1_ds2413 -w1_ds2423 -w1_ds2431 -w1_ds2433 -w1_ds2760 -w1_ds2780 -w1_ds2781 -w1_ds28e04 -w1_smem -w1_therm -w5100 -w5300 -w6692 -w83627ehf -w83627hf -w83627hf_wdt -w83781d -w83791d -w83792d -w83793 -w83795 -w83877f_wdt -w83977af_ir -w83977f_wdt -w83l785ts -w83l786ng -wacom -wacom_i2c -wacom_serial4 -wacom_w8001 -wafer5823wdt -walkera0701 -wanxl -warrior -wbsd -wcn36xx -wd -wd7000 -wd719x -wdt -wdt87xx_i2c -wdt_pci -whc-rc -whci -whci-hcd -whiteheat -wil6210 -wimax -winbond-840 -winbond-cir -wire -wishbone-serial -wistron_btns -wl1251 -wl1251_sdio -wl1251_spi -wl1273-core -wl12xx -wl18xx -wl3501_cs -wlcore -wlcore_sdio -wlcore_spi -wm831x-dcdc -wm831x-hwmon -wm831x-isink -wm831x-ldo -wm831x-on -wm831x-ts -wm831x_backup -wm831x_bl -wm831x_power -wm831x_wdt -wm8350-hwmon -wm8350-regulator -wm8350_power -wm8350_wdt -wm8400-regulator -wm8739 -wm8775 -wm8994-core -wm8994-irq -wm8994-regmap -wm8994-regulator -wm97xx-ts -wmi -wp512 -wusb-cbaf -wusb-wa -wusbcore -x25 -x25_asy -x38_edac -x86_pkg_temp_thermal -x_tables -xc4000 -xc5000 -xcbc -xen-blkback -xen-evtchn -xen-fbfront -xen-gntalloc -xen-gntdev -xen-kbdfront -xen-netback -xen-pciback -xen-pcifront -xen-privcmd -xen-scsiback -xen-scsifront -xen-tpmfront -xen_wdt -xenfs -xfrm4_mode_beet -xfrm4_mode_transport -xfrm4_mode_tunnel -xfrm4_tunnel -xfrm6_mode_beet -xfrm6_mode_ro -xfrm6_mode_transport -xfrm6_mode_tunnel -xfrm6_tunnel -xfrm_algo -xfrm_ipcomp -xfrm_user -xfs -xgifb -xhci-plat-hcd -xillybus_core -xillybus_pcie -xirc2ps_cs -xircom_cb -xor -xpad -xr_usb_serial_common -xsens_mt -xt_AUDIT -xt_CHECKSUM -xt_CLASSIFY -xt_CONNSECMARK -xt_CT -xt_DSCP -xt_HL -xt_HMARK -xt_IDLETIMER -xt_LED -xt_LOG -xt_NETMAP -xt_NFLOG -xt_NFQUEUE -xt_RATEEST -xt_REDIRECT -xt_SECMARK -xt_TCPMSS -xt_TCPOPTSTRIP -xt_TEE -xt_TPROXY -xt_TRACE -xt_addrtype -xt_bpf -xt_cgroup -xt_cluster -xt_comment -xt_connbytes -xt_connlabel -xt_connlimit -xt_connmark -xt_conntrack -xt_cpu -xt_dccp -xt_devgroup -xt_dscp -xt_ecn -xt_esp -xt_hashlimit -xt_helper -xt_hl -xt_ipcomp -xt_iprange -xt_ipvs -xt_l2tp -xt_length -xt_limit -xt_mac -xt_mark -xt_multiport -xt_nat -xt_nfacct -xt_osf -xt_owner -xt_physdev -xt_pkttype -xt_policy -xt_quota -xt_rateest -xt_realm -xt_recent -xt_sctp -xt_set -xt_socket -xt_state -xt_statistic -xt_string -xt_tcpmss -xt_tcpudp -xt_time -xt_u32 -xtkbd -xts -xusbatm -xz_dec_test -yam -yealink -yellowfin -yenta_socket -yurex -z85230 -zatm -zaurus -zd1201 -zd1211rw -zforce_ts -zhenhua -zl10036 -zl10039 -zl10353 -zl6100 -zlib -zr36016 -zr36050 -zr36060 -zr36067 -zr364xx -zram -zynq-fpga reverted: --- linux-raspi2-4.4.0/debian.master/abi/4.4.0-89.112/powerpc/powerpc-e500mc +++ linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-89.112/powerpc/powerpc-e500mc @@ -1,17296 +0,0 @@ -EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe -EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble -EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL crypto/mcryptd 0xa8cfd13e mcryptd_arm_flusher -EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/atm/suni 0x4834b19a suni_init -EXPORT_SYMBOL drivers/atm/uPD98402 0x33497a96 uPD98402_init -EXPORT_SYMBOL drivers/bcma/bcma 0x17026b10 bcma_core_irq -EXPORT_SYMBOL drivers/bcma/bcma 0xef0975c0 bcma_core_dma_translation -EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str -EXPORT_SYMBOL drivers/block/paride/paride 0x0656ef75 pi_write_regr -EXPORT_SYMBOL drivers/block/paride/paride 0x28bc2527 pi_write_block -EXPORT_SYMBOL drivers/block/paride/paride 0x2c7db204 pi_read_regr -EXPORT_SYMBOL drivers/block/paride/paride 0x3de04ffb paride_unregister -EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x61a02ca9 pi_release -EXPORT_SYMBOL drivers/block/paride/paride 0x7788d82d pi_read_block -EXPORT_SYMBOL drivers/block/paride/paride 0x8ec0a252 paride_register -EXPORT_SYMBOL drivers/block/paride/paride 0xa29a2c58 pi_init -EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -EXPORT_SYMBOL drivers/block/paride/paride 0xba34c6f2 pi_connect -EXPORT_SYMBOL drivers/block/paride/paride 0xe3017575 pi_disconnect -EXPORT_SYMBOL drivers/block/paride/paride 0xf9404333 pi_schedule_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0xfbca8a8e pi_do_claimed -EXPORT_SYMBOL drivers/bluetooth/btbcm 0x09ca2d5f btbcm_patchram -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fae3bac ipmi_addr_src_to_str -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x73b1efbe ipmi_smi_add_proc_entry -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x74c47cc2 ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80b0d94b ipmi_register_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xbc2fb908 ipmi_get_smi_info -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe863376b ipmi_smi_watcher_register -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x0328286f st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x2287a9f1 st33zp24_remove -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x953ec304 st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xecd13912 st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x3d7e11f2 xillybus_endpoint_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x43b44dc0 xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x6fc18631 xillybus_init_endpoint -EXPORT_SYMBOL drivers/crypto/caam/caam 0x1c758e97 caam_get_era -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x09fc4e44 caam_jr_strstatus -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x15983dcd caam_jr_enqueue -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x1862981e gen_split_key -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x4ea69828 split_key_done -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x632a3ab0 caam_jr_free -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xd9dd8fe6 caam_jr_alloc -EXPORT_SYMBOL drivers/crypto/talitos 0x72431728 talitos_submit -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x40f064c4 dw_dma_get_src_addr -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x6241de9d dw_dma_get_dst_addr -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x7e2cbc25 dw_dma_cyclic_prep -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x7e353daf dw_dma_cyclic_start -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x92852041 dw_dma_cyclic_free -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xefc04a0a dw_dma_cyclic_stop -EXPORT_SYMBOL drivers/edac/edac_core 0xfacc11b9 edac_mc_find -EXPORT_SYMBOL drivers/edac/mpc85xx_edac 0xc9bd2347 mpc85xx_pci_err_probe -EXPORT_SYMBOL drivers/firewire/firewire-core 0x011fd197 fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0490f04d fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0x04dd92ce fw_core_add_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x07785095 fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2a0a7af4 fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2d7cc449 fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2e6d6c5a fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x38b6d143 fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3d6cdc12 fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x434499c5 fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x45b730b6 fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4674098c fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0x49f6e211 fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d5d4eca fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x52d5c444 fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5a8917da fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5b74a1b1 fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x69770012 fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e431b14 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9132de5f fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x988a483d fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9fafe118 fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa65c9350 fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xcfc00c2a fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd176fec7 fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe5854526 fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0xed9a7fbe fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf8bc9459 fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0xfce71cfa fw_iso_context_create -EXPORT_SYMBOL drivers/fmc/fmc 0x08ceb9bc fmc_driver_register -EXPORT_SYMBOL drivers/fmc/fmc 0x28b4dc1c fmc_driver_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0x37685031 fmc_show_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0x488018b0 fmc_device_unregister_n -EXPORT_SYMBOL drivers/fmc/fmc 0x5d9aa820 fmc_device_register_n -EXPORT_SYMBOL drivers/fmc/fmc 0x5f50d10d fmc_find_sdb_device -EXPORT_SYMBOL drivers/fmc/fmc 0x8ffb7abb fmc_device_register -EXPORT_SYMBOL drivers/fmc/fmc 0xa4476284 fmc_scan_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0xb9124774 fmc_reprogram -EXPORT_SYMBOL drivers/fmc/fmc 0xbf03515d fmc_free_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0xf2b7aa4c fmc_device_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0061c59d drm_agp_bind -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0065ebba drm_bridge_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x010fa384 drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x02127b7c drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x021eb63c drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0515cefd drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07b69bdd drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08654c8f drm_legacy_addbufs_agp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x088e836f drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x089f286e drm_of_component_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09cb786c drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0aea73a0 drm_gem_dumb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b5493fe drm_legacy_addmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c725923 drm_legacy_ioremap_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e2bbf46 drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fb3f540 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fccafb1 drm_global_item_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10ddac18 drm_legacy_ioremapfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10ee3f9f drm_modeset_lock_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12704e6b drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x130bf992 drm_ati_pcigart_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x13b87133 drm_panel_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x154a7d95 drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1645570d drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x174f34a9 drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17bdeba6 drm_agp_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17ea7f25 drm_calc_vbltimestamp_from_scanoutpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a044145 drm_select_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b1015ff drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b31c33e drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c3b2173 drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d707205 drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d7e4b10 of_drm_find_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f820529 drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20473e77 drm_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x206abcc2 drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2120918a drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x221b3f01 drm_legacy_idlelock_take -EXPORT_SYMBOL drivers/gpu/drm/drm 0x224350a5 drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2277eeb9 drm_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22db6aed drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x236d6a04 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x237bbf26 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25c2fa9b drm_agp_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26a7c1dd drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x280323d2 drm_mode_hsync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28706724 drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28e30df5 drm_dev_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a135881 drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cffc915 drm_vblank_post_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d609feb drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f67a421 drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fa770fc drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x310b776d drm_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32347470 drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3368118c drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x33dd9e14 drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x346127a7 drm_global_item_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35bf337e drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35fb8ac9 drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37071fc6 drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x383d201f drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x389c015f drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b271b14 drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b580510 drm_legacy_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c65ec0e drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c7352ce drm_modeset_unlock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d38f784 drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d572a05 drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d8283c8 drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3dab549e drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e9499ac drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x40c8f3ac drm_pci_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x435f4942 drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x45c54054 drm_agp_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x45c658f1 drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x466a3428 drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x490713f0 drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49581529 drm_atomic_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b2b171e drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c696f3a drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e417191 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e63cf16 drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f00bf21 drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50404e3d drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x513b93fb drm_mode_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51db353a drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51f49e30 drm_agp_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x536107b0 drm_pci_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54744d59 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5538bbe3 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5726421e drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5768bcc3 drm_edid_to_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0x576ec95f drm_legacy_idlelock_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x586db943 drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x591342b8 drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59e9f878 drm_framebuffer_unreference -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5afcf163 drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b46db80 drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e19731e drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f8fce4d drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60445344 drm_crtc_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60b7040c drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62eabae8 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x63288c5d drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x63934378 drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64ef2e81 drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65294d00 drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65ac6c8b drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x665b3765 drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x672287a4 drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67d4a455 drm_modeset_legacy_acquire_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x686f493e drm_legacy_getsarea -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x69355b74 drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a845c70 drm_mode_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ebb220e drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ebeb416 drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6eecefdb drm_pci_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f78fc5e drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x703a1ca8 drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x719d40c6 drm_vblank_pre_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72692dc3 drm_agp_unbind -EXPORT_SYMBOL drivers/gpu/drm/drm 0x728c469e drm_prime_sg_to_page_addr_arrays -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7318315e drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7402d17c drm_crtc_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74581254 drm_legacy_addbufs_pci -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74a55e5c drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x761b212e drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7627ee21 drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x770ff21d drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x776b5384 drm_of_find_possible_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0x776c6374 drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78ceaf96 drm_get_pci_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x798f9ebd drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79b52bf7 drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a61006d drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ada79c8 drm_unplug_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b23734c drm_mode_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bdc855b drm_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bf8b103 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cd16c10 drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ce440e4 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e00b3a5 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x813dcad0 drm_agp_bind_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x815ffdfb drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x821da027 drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82308f63 drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8266575f drm_pci_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82f69d1f drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83407db8 drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x837c85bb drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x838bf83d drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x85242556 drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x88b50a0d drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8923e6b3 drm_pcie_get_max_link_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8990ef46 drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a34f7cb drm_bridge_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b9d4844 drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8becb91c drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d560255 drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8db02191 drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ef793da drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f2d8803 drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9006338c drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x900be7fc drm_bridge_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90d4234a drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9358150f drm_plane_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93a36cc2 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93fbf1df drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9498e4ac drm_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95c5b2d7 drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x967d54d7 drm_legacy_rmmap_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x97064a60 drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x973f2a66 drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a3a5efe of_drm_find_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a5c0249 drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ac5a270 drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9acb2ddc drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9adc1c27 drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b18cf7e drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c6e4b43 drm_irq_install -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce22621 drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d0eccc2 drm_atomic_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1077c3e drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1775670 drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa313605e drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa335d2d8 drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4d792a3 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8490924 drm_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa86c960a drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae6bbf3f drm_pcie_get_speed_cap_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf248f6b drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb046807a drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11119c0 drm_irq_uninstall -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1cdf7a7 drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1f46009 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22b1b3e drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3c0a945 drm_encoder_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5dd0539 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6f08390 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7c9d5d2 drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8942728 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb919b7b5 drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9981305 drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9b453df drm_atomic_clean_old_fb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba143c78 drm_atomic_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbcf45f2 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc96608e drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd37feda drm_mode_create_dirty_info_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe06c37b drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe393c19 drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf828063 drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc005821a drm_platform_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc052c3da drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0574b7c drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0b63845 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0db716c drm_legacy_rmmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0fb306b drm_atomic_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc117071a drm_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc15671f9 drm_property_reference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1aa6f76 drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2aac5d2 drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2d1252d drm_mm_dump_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3052360 drm_property_unreference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3395f06 drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3805afb drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc44eef6b drm_mode_validate_basic -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7ec7210 drm_bridge_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbb01e8b drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc33de99 drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcca1bb7b drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce6ad97b drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf33b120 drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcff666af drm_mode_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0f30b43 drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd20cb953 drm_dev_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd29255fb drm_modeset_backoff_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2b11715 drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd541dccb drm_bridge_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8cfe7f1 drm_atomic_legacy_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd990727c drm_platform_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc10f6c5 drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcc3c427 drm_connector_unplug_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd0aba8c drm_ati_pcigart_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd16ee03 drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd514d69 drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde2dbb12 drm_bridge_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf45839b drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf8a6a5f drm_agp_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0b7dd11 drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1dd104a drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe295bad3 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2ffd7a5 drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe319a499 drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe39cd3a2 drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe39fb9a5 drm_vblank_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3e9a525 drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4a329de drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9879b7e drm_mode_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe99cf27a drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea579262 drm_panel_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb87c5ef drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec469bb6 drm_mode_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec679379 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed42929a drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed9ad946 drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xedba6549 drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xedf23e29 drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeebe3392 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0e69584 drm_legacy_ioremap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b098be drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf22bab2f drm_modeset_lock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf365815b drm_agp_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5a29c00 drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5e90377 drm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7b99d67 drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7fa5791 drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8ffa980 drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf93ee08d drm_connector_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf95818f2 drm_vblank_no_hw_counter -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf994951f drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb0b9de3 drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc0ccafb drm_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc54f7eb drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf4e10f drm_pci_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd4b5fcf drm_framebuffer_reference -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd6db958 drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdac91b6 drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02e2a7a4 drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x042a2a34 drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04e8680a drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0807fb92 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0bbc952b drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0bf7f70e drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ca75126 drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0eb42f7b drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12eff202 drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13a74b22 drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1984fbd5 drm_plane_helper_check_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a647336 drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b3cd3d7 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1da5c480 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2546ee24 drm_atomic_helper_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2635fcd9 drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x265f8b02 drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27cd8799 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x282efce7 drm_primary_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29735248 drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29d79757 drm_atomic_helper_legacy_gamma_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b85a119 drm_dp_link_power_up -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e4be81c drm_fb_helper_single_add_all_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x307cc991 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30cd1b45 drm_fb_helper_fill_fix -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x323f1f96 drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x329b6328 drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33bdd516 drm_helper_crtc_mode_set_base -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35b14188 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35f74318 drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x388df988 drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392ae5ed drm_fb_helper_add_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x415725b8 drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x423a28eb drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x430cc44b __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45532351 drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46a9c501 drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b7e233b drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e591bcf drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ec3da4a drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ee00261 drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4efb5ccc drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f14517e drm_helper_probe_single_connector_modes_nomerge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f973e09 drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x512274c1 drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52b8714b drm_pick_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5457103d drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54696a56 drm_dp_aux_register_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56e94df0 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5891d236 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x596ca651 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59888139 drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d3a8593 drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fb46eab drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64b88be9 drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6616871e drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66aa51e5 drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68332a0e drm_dp_link_power_down -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x691db6cf __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6926d01f drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b7d22fb drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c7b1c64 drm_fb_helper_release_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6cf9a439 drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x709d3bd8 drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71999de0 drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x724d29fc drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7312bede drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x737655f6 drm_primary_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b364996 drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c2412ca drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d759141 drm_helper_crtc_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e11de11 drm_atomic_helper_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e6ca459 drm_has_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7feea024 drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8090da85 drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x820351c5 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x827f72ea drm_atomic_helper_framebuffer_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8462ad71 drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ba0dbb0 drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c207d53 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x931301da drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x949becf6 drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94e29054 drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x967107da drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96b53bd6 drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96ce32df drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9af03397 drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9da87a5f drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9fab0b1c drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa24e15ba drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2f65214 drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5782391 drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6c33bd2 drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7278f4b drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d92736 drm_dp_aux_unregister_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac204fd8 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac7d498a drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaee57f7c drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1f9e892 drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2ed6f2a drm_dp_link_probe -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2ff72c4 __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb45ced19 drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5999bbc drm_fb_helper_fill_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb72daa11 drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb74d0ab1 drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8e8e2c7 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb99bcf5b drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbce94b6 drm_helper_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf11114d drm_fb_helper_remove_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3a22557 drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc66157fd drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6f27779 drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc889acaa drm_fb_helper_unlink_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8dbe0c7 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc90a189e drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb65e544 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce7ac34e drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf3287ea drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2a0e348 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2f1f57c drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd81201cc drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8570c8e drm_atomic_helper_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd874f832 drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda86be1c drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb036f64 drm_kms_helper_poll_enable_locked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbd20365 drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdcfe3030 drm_plane_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd4fd05e drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfe69d5f drm_atomic_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0be2c0e drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe15a57c4 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe50d62f1 drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7eee476 drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7fd23f8 __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe93807cf drm_dp_link_configure -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9e38b70 drm_dp_mst_port_has_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec6a7abe drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee0d85ad drm_plane_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf411044b drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb67082d drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfcb351de __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfdd4a382 drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x10a04c30 ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132b05be ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1693bc73 ttm_mem_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x16b45731 ttm_bo_init_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x178814fa ttm_bo_mem_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1b28b6e1 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1b2ec1c2 ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x206aa0b5 ttm_page_alloc_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x22d291cd ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2657df02 ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x30453fb7 ttm_mem_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x33620e59 ttm_bo_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x34ef6c3c ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3defa93c ttm_fbdev_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x40a8c407 ttm_bo_evict_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x42c6d134 ttm_mem_io_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x447da44d ttm_bo_manager_func -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x46918f95 ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4918cd2f ttm_mem_io_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4df8f590 ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4ee2b189 ttm_agp_tt_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a8fdfea ttm_vt_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5b76cca5 ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5be0a36d ttm_pool_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cf59609 ttm_bo_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5dce326d ttm_bo_clean_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x625441d4 ttm_bo_dma_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x64b1d5bc ttm_tt_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67b1d568 ttm_bo_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x69ac913a ttm_bo_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6ab825aa ttm_dma_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x72132264 ttm_prime_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x73c408d9 ttm_mem_io_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7600c51a ttm_bo_add_to_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d55da85 ttm_read_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fe2bb81 ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84a13931 ttm_write_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x850e4114 ttm_pool_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x85f6006d ttm_mem_io_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8676e9e7 ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89a443de ttm_write_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d14adbf ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x92a7f8b4 ttm_bo_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9726d937 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d0eb91 ttm_ref_object_add -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9aae0f5a ttm_mem_global_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9c077158 ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9e0a552b ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9ea872f9 ttm_bo_swapout_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa2a129fd ttm_suspend_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa73de2a9 ttm_vt_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae96cec7 ttm_agp_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaf657cf1 ttm_bo_synccpu_write_grab -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb23a93ec ttm_object_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb5162b84 ttm_bo_synccpu_write_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb586c01f ttm_bo_move_ttm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb83c6470 ttm_lock_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb941522c ttm_dma_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbbc2a533 ttm_bo_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5f0c2da ttm_read_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd2aef0a0 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd35b1604 ttm_bo_del_sub_from_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd7f51742 ttm_suspend_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd9c5b5fe ttm_tt_set_placement_caching -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xea4c49a4 ttm_bo_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf0eadb4a ttm_bo_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf277f272 ttm_agp_tt_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf3de236f ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf582c1ab ttm_mem_global_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfeae82b7 ttm_bo_kunmap -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x2b82592c i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x64e95fcb i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xfd5e3adc i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xeefd25ed i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xf9ea5ee3 i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x7713b3cb amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0940bb23 mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x438b6b1d mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4874ca2d mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6184e8c8 mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x61e8ce4c mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x63b085d9 mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6d1f062c mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8a24bc24 mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa886bf44 mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xacfb71d3 mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb2cb9002 mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbe59bed0 mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd0074ffa mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd9d49e4b mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe4997ec5 mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfb77bdca mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x775adfe3 st_accel_common_remove -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xd1d7aa43 st_accel_common_probe -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x72458510 iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xcf135c86 iio_triggered_buffer_setup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x209185a1 iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x62c6724c iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xf1e255a7 devm_iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xfebe5d2e devm_iio_kfifo_free -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x7d6be5cc hid_sensor_read_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x859d449c hid_sensor_write_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xa7650c3b hid_sensor_read_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc696d167 hid_sensor_parse_common_attributes -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xcdaf5643 hid_sensor_write_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xed82ee09 hid_sensor_read_poll_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x05010e93 hid_sensor_pm_ops -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x54f1c209 hid_sensor_power_state -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x8678042e hid_sensor_remove_trigger -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xe395719c hid_sensor_setup_trigger -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x1543ebc2 ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x1e076cf6 ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x48c17799 ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x547516cc ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x5f19eb19 ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x922ccd37 ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xa9e1660c ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xfa06c607 ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xfbef8d9c ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x0bcd2d20 ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x0d651f6b ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x5c7227e0 ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x81b51e2d ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xdae30146 ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x52a2b1bb ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xddfee644 ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xef84f5f0 ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x02f79bcf st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x03d2436a st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x152d391f st_sensors_check_device_support -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x25617b13 st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2b35b1fa st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x78247478 st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x89b4b4d9 st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9d5dd863 st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9f0f355d st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa626d7ad st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa8e0eb23 st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xaf520d0c st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xba0e01a7 st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xcb51bfe5 st_sensors_get_buffer_element -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xdb9275e1 st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe7545488 st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xeec6e60f st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xeef8e786 st_sensors_of_i2c_probe -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xf120c6e7 st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xc811ec32 st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x3b121be1 st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x580fb7be st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x1ad2a68f hts221_probe -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xd336e85c adis_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xd4f177c8 adis_enable_irq -EXPORT_SYMBOL drivers/iio/industrialio 0x0bcab05f iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0x1f270150 iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x3342dc43 iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x3935b51a iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0x46443d65 iio_triggered_buffer_postenable -EXPORT_SYMBOL drivers/iio/industrialio 0x54296470 iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x7d60586c iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xa2c64a6a iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xbec68efc iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0xcd15215b iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0xd462fbe4 iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xd7219c3f iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0xda3aaa51 iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0xdad3e13a iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xdddb9718 iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xe2a54f65 iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0xe4c349f6 iio_triggered_buffer_predisable -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x06a23d31 iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x876235a8 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x4185de19 st_magn_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x73b9a7c3 st_magn_common_remove -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x30475544 ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x62a7e8d1 st_press_common_remove -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xf6cdd11e st_press_common_probe -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x049ace30 rdma_addr_find_smac_by_sgid -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x06870867 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1ea5767b rdma_addr_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x32a8402c rdma_addr_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xaea3ecea rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xde1926bf rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xf9f49af7 rdma_copy_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0ccb56c1 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x12602937 ib_send_cm_lap -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x29e0c276 cm_class -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2a1f376b ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x42b10a71 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x494490f7 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x54051573 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5898ca5d ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x59df5eaf ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6485a81a ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x70156a0c ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x711ed065 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7320956e ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x84a83c0b ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8e3e7ec0 ib_send_cm_apr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa3c7ef58 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd185eea9 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf9abe616 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x050659de ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0809e56a ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e698ece ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10ff49cd ib_fmr_pool_map_phys -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13fb8a24 ib_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16836c8a ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17296363 ib_umem_odp_map_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17c71f86 ib_get_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18f6d30f ib_query_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ad84eff ib_create_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1dfec6f9 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23c69378 ib_dereg_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25d36683 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26fbc406 ib_init_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32010a74 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x347e8af9 ibnl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x357b56d8 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bc0a040 ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x404a6dbf ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41abbb78 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46d3bd97 ib_dealloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e2ba176 ib_dealloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4fa49cd2 ib_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x517ca46e ib_dealloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x543d42d8 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54aa9a87 ib_resolve_eth_dmac -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56fc2f37 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59f1cf1d ib_create_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5cc37fa1 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d6e8dd8 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5dcffd40 ib_get_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62b23709 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x670f4e95 ib_find_gid_by_filter -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x677266b7 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68f2d8bf ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69bf474f ib_get_dma_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6efa7726 ib_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70759501 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79a27d95 ib_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86d4307f ib_query_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x881d9c52 ib_fmr_pool_unmap -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88580513 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91dc0b65 ib_umem_page_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9409131d ib_destroy_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x961c47ee ibnl_add_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97a8f37f ib_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a266efe ib_alloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ba489ef ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa009f1b0 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0490f60 ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0c0b95a ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2c9e867 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3ade859 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab24be80 ib_modify_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad11c13a ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf10e685 ib_destroy_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3b0fa90 ibnl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb66240dc ib_create_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb72e3153 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb781eb18 ib_dealloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbec24c92 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1115c05 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2134da4 ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc62e84f3 ib_create_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca846262 ib_destroy_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc9b431f ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce7ab89c ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0290f8a ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd18ef204 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd639ee9a ib_find_cached_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd665a07b ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb425801 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9db8bd3 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9f5520c ib_destroy_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef498ea9 ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf216d7b2 ib_alloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3f2e98f ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf46f27eb ib_alloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5c54b69 ib_find_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8053b6e ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfca5f0aa ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd1f6ec1 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfdb03be8 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x03be32a2 ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x26fbf480 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x342194f2 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x470643cb ib_register_mad_snoop -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x914fee6c ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x91b5ab2d ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xaf4cc55e ib_cancel_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xba55a734 ib_process_mad_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc6c2314b ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xd09f0e6e ib_redirect_mad_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xf8d9f157 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xfdbb0a73 ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xff6af5e9 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5328d7a6 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x6058ec39 ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x692a2131 ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x7e637529 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x844a85a0 ib_init_ah_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9a1cd50d ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9eaa534e ib_sa_service_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xa0d7f8d0 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xb5e658a2 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xe69c6609 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf6e3da78 ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x07d538e7 ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6bd64392 ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x03f9ae16 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x133c7557 iwpm_add_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x262901dd iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x292020ea iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x31c36bc9 iwpm_add_and_query_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x32a2fa8b iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x32a64953 iwpm_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x567ea47c iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x76ea5cba iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x83f7f1c3 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x923abe6e iwpm_remote_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa53276a6 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd4b90a3d iwpm_mapping_error_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd65bf40e iwpm_ack_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xdc853c4d iwpm_register_pid_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0ea439ba rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2652c698 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3024863d rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x431c8390 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x539ddb42 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6667f864 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7ea6ba54 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8556263b rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa497d1e3 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbc733643 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbf5488c6 rdma_create_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd3de6555 rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd4ae58cb rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd8fa831c rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdd5b88b2 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe55a80ea rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xee87c868 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xef2970d2 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf0e9b94c rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf997cec5 rdma_set_ib_paths -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfc5fcc77 rdma_create_qp -EXPORT_SYMBOL drivers/input/gameport/gameport 0x1c126c1b gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0x784154a9 gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0x83d73fef __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x87e79da0 __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x8de15bc7 gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x9108e0da gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0xc9f278df gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xd5f21be1 gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0xd8853d58 gameport_start_polling -EXPORT_SYMBOL drivers/input/input-polldev 0x118e29db input_free_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x48115adc input_unregister_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x811e0b05 input_register_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xcd9904fd input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xe85da8df devm_input_allocate_polled_device -EXPORT_SYMBOL drivers/input/matrix-keymap 0x255270da matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0xd4a23ede ad714x_enable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xee460b25 ad714x_disable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xf0f06357 ad714x_probe -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xa0d0ec39 cma3000_init -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/sparse-keymap 0x1805c7e4 sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0x2b0588fc sparse_keymap_setup -EXPORT_SYMBOL drivers/input/sparse-keymap 0x39237f63 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x3d64ea1e sparse_keymap_free -EXPORT_SYMBOL drivers/input/sparse-keymap 0xbbfc31e5 sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xd1f31383 sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x990b8458 ad7879_pm_ops -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xf55239e1 ad7879_probe -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x20e08675 capi_ctr_suspend_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31827e14 capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x3a2d225b capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x66454fa5 attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6e0c2850 capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x991ceaac capi20_put_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa7c4fd6c capi_message2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb5c77e82 capi20_register -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xbdb64af5 detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc10fe128 cdebbuf_free -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc687948a capi_ctr_resume_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8ad9bd1 capi_cmsg2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf58ab3d3 capi20_release -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x02efca3b avmcard_dma_free -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x11c23c62 b1_loaded -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2b500537 b1_parse_version -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x32e84bad b1_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x3a9079e4 b1_load_t4file -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x4e525906 b1_load_config -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x63653f8a b1_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x6caff2e2 avmcard_dma_alloc -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x856a0399 b1_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x9772efe0 b1ctl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xbdc56185 b1_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xc8ce5ea7 b1_alloc_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xc9104896 b1_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd87a2a0c b1_free_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfb32dac3 b1_getrevision -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x11df3f19 b1dma_reset -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x6740b6f5 b1pciv4_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x6d278fe4 b1dma_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x7d01a99a b1dma_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x8be9e4a8 b1dma_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xa4ccd74a b1dma_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xc22d5e0f t1pci_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xc8076023 b1dma_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xcb9fa977 b1dmactl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0x29562993 b1pcmcia_delcard -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x1b121e73 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x3ee57a5b mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x6e5b2c68 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xb3ea33a5 mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x741891a8 mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xcdfa5ad2 mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6fe1ca04 FsmDelTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9f987c85 FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xa1bc94b9 FsmInitTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xddfe6684 hisax_init_pcmcia -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x0ae9a015 isac_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x0f9f681c isac_init -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xba586ba0 isacsx_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xc768bbc3 isac_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xff00121d isacsx_irq -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x297c4881 register_isdn -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x457a5112 isdn_ppp_unregister_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xf4204d0e isdn_ppp_register_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0083c46e get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a8cae6 recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x056bf7f8 mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x15d0ae35 mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x20171455 mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x23c88074 mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2a45046f create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3a665d18 mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3dd0f0e7 dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x43e106c4 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6e79dde1 recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7c13afd2 mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x837fae87 bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x899cc596 recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a1534e8 mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8eaf2379 mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9783bd8b recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9a2443f5 bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xaa90a58e mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbadcea32 queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbb36ef4b mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd27bf3e2 recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfdb04d35 get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/md/bcache/bcache 0x0c4d0956 bch_btree_sort_lazy -EXPORT_SYMBOL drivers/md/bcache/bcache 0x10dc0d06 bch_bset_insert -EXPORT_SYMBOL drivers/md/bcache/bcache 0x66d28e22 bch_btree_iter_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x6969b5d8 bch_bset_init_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0x74c1aac4 closure_put -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7b55ca4f bch_bset_fix_invalidated_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0x9e8b3cee bch_btree_keys_alloc -EXPORT_SYMBOL drivers/md/bcache/bcache 0xab2d2b84 bch_btree_insert_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0xad29a6f5 bch_bset_build_written_tree -EXPORT_SYMBOL drivers/md/bcache/bcache 0xaec09a2b bch_bkey_try_merge -EXPORT_SYMBOL drivers/md/bcache/bcache 0xaf77343c bch_btree_keys_free -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc04554f7 bch_btree_iter_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc0b9ef00 bch_btree_sort_partial -EXPORT_SYMBOL drivers/md/bcache/bcache 0xca580595 bch_btree_keys_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0xd26b6d5c closure_sync -EXPORT_SYMBOL drivers/md/bcache/bcache 0xde65fa4e closure_wait -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe47e0829 __bch_bset_search -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe528a44d closure_sub -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe67c2d16 bch_bset_sort_state_init -EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers -EXPORT_SYMBOL drivers/md/dm-bufio 0xa7978f56 dm_bufio_forget -EXPORT_SYMBOL drivers/md/dm-log 0x7eb427a8 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0xb6457a0f dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0xb83bcdd4 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0xbfe5bb2d dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x16296347 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x1c391418 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x402bd307 dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0x69f893e1 dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0x8f6fa34c dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0xd0ca4f55 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/raid456 0x6aceec48 raid5_set_cache_size -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x025731cb flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0824bece flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0e9b6cac flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x256ec563 flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x555f6ec0 flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x59da7c11 flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x65d1b371 flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x81aabefc flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8976e039 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd1eb7589 flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe49b168c flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe764710d flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf7e94c6d flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/cx2341x 0x0f2615a1 cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update -EXPORT_SYMBOL drivers/media/common/cx2341x 0x30cb4cd7 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcc8d87bd cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cx2341x 0xce4bbe28 cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0xe2f27d6c cx2341x_handler_setup -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x9b0f810c cypress_load_firmware -EXPORT_SYMBOL drivers/media/common/tveeprom 0x463852dd tveeprom_read -EXPORT_SYMBOL drivers/media/common/tveeprom 0x75be339d tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x061176d5 dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0e402b3f dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0eb106d4 dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x167682b4 dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x19591134 dvb_ringbuffer_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1f842b7e dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2155224c dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x22d6ce4a dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x24a56cd6 dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x28ee2ae8 dvb_ringbuffer_flush -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x30d56acf dvb_dmx_swfilter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3c3894d8 dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3c5a5269 dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3f7224d5 dvb_ringbuffer_read_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4d3b9a9c dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4f7c1e21 dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x524ba3c5 dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5a6167d3 dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5ca7ed07 dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x65886421 dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6c1fb370 dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x78d62338 dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7ba5d8bd dvb_ringbuffer_flush_spinlock_wakeup -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x82c82a39 dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8419fc19 dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8e47dce5 dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9d8b88d5 dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9ed83d68 dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xae8963e2 dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb506a15a dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb84528d2 dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbcaa4b01 dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc0515a19 dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc5dedb3d dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd50032a2 dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd9174756 dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdb576668 dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfddf4670 dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0xac4da4a0 af9013_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x8ccec2c5 ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xd5f06a51 atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0af07be3 au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3b0bbde4 au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x6a56692b au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb0bf75a3 au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb844c75a au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb9cb6356 au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xce6d433f au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xda282415 au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xdd14f87b au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x34482fd9 au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xe3a8596a bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x8481380c cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x16b0e6fd cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x4b18f4d0 cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x1c347230 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x7db58786 cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x0ab6aaf4 cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xdafd488c cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x02fcbe4f cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x56b3c549 cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x2508fc10 cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x28b824dc cxd2841er_attach_t -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xc2fb4e68 cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xd0a97d70 cxd2841er_attach_c -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x491f0073 dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x505723b3 dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x7fa5f6b6 dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xc843eba2 dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xde1e5edb dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0b2f1474 dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x14ec2494 dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1504a201 dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2e7a1231 dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3ebb02da dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x41901b82 dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x65f00dce dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xae922434 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb7c9627a dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc0bd72c1 dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd7b3bda3 dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xddbcef0d dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe05a3a17 dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe427c8d3 dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe8290b09 dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x52a8dc36 dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x0838bf89 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x22af8315 dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x5adf5029 dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x713f5dab dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xc0b13fae dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xc1ad6793 dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x01ea5ca3 dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x42895816 dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x5494972a dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x98d92a12 dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x103afc77 dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xa558e9f2 dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x417ed8fe dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x43552718 dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x50d7b5b9 dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc8c610fb dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xf4f944d3 dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x5eaa37b4 drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x7cc40a26 drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x024a72c7 drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x090adb59 ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x07bd7a08 dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x6b302182 ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xb45cebbc horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x256c9e07 isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xf685528f isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xa29b8da3 isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0xacae888d itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xfff35954 ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x17c24a07 l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xd6084f2e lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x565e66a6 lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x471068c3 lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xbe23d2d0 lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xaab60be5 lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xe58f2fd8 lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x74d3ac71 lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xafa0d13a lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xf9bee56a lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x26941f7c m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xb5267a20 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x88e88853 m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x66326093 mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xce23fd0b mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x9bd98363 mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x66648148 mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xf2a01c75 nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xbced7485 nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x497eec40 or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xc6da75a0 or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x1421eab2 s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x30bb599c s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x19bf4ee3 s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x2f5577ac s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xbcb3791f s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0x74be97de si2165_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xa9e78422 si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0xea345e82 sp8870_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xb9819c43 sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xec4aa30c stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xbf917069 stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x71df794d stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x724ea0b6 stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x791a111e stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x6cd86310 stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x05d8b831 stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x0681802b stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xc9aaad40 stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x90f49315 stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x90d65682 stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x79cca7ae stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x175425b5 tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xa288afd4 tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x014958c2 tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x82197dc3 tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xb60cd5ab tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x711333c7 tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xf9208dcf tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xe93b3850 tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x9af90a58 tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x0f1a0f10 tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x01b12684 ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x745beda8 tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xf255f664 ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xcfda3dfc ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xe8c4e084 zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x6a80fb9e zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xad78bc8d zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x0f1a304e flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x33ee8bc2 flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x61900b21 flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xa154fe3a flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xae8bf065 flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb4f08249 flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xe3a716e8 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x179bcd6c bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x339e5805 bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x5a81a451 bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x842664d2 bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x0c31d11a bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x6ca28768 bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xb7643593 bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x33c192b9 dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3b451a30 dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x45674a31 write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x464397b9 read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x55fd78e8 dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x94d35370 dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc20d1031 dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xfaf6fec1 rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xff4597a4 dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xd6b9ca79 dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x06c7ed4d cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x12b702c3 cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x629272e0 cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x731d0224 cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xfde62800 cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xb320c789 altera_ci_init -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x5d83e516 cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x5db20712 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x62912359 cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x6e138238 cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x8fbab07e cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xbf8edde8 cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd578ca57 cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x3d13ec10 vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x51a33888 vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x1b5d9fa9 cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x6f9110a7 cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x7d79fe0a cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xdd948bf8 cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x024f1e61 cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x3ab8571a cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x80827058 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x8f1eaf1e cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xc17f8605 cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe4e06769 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe83d85f8 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x03b79587 cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0a8178b8 cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1848d6df cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x25aede79 cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4d6a417e cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5dac62c3 cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x72467c11 cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7c132083 cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x844452c9 cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x87ddc63a cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x96c0b5fa cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xaef0d418 cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb3cfeeaf cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb8506753 cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc53665d1 cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcd1b1987 cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd37d00ac cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd6e60f3a cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf8ed81ed cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfb466640 cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1ec608d1 ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2376007d ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3b49086b ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3d459583 ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4905b775 ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x498bde44 ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4bcdc4e8 ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x50f2edf0 ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x53f6d526 ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x58cad26c ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5a1109b1 ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x995d9f4e ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa2230aa9 ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbb78c49b ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc8800e75 ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd8734673 ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xde95b326 ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x202d26d5 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x224dd389 saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3312e7cf saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x494bf153 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x91c8dee6 saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x97689060 saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xad86a69b saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xae775f14 saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc4ed7de0 saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xcdf483ae saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe52990c6 saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xfa115801 saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x62d0285c ttpci_eeprom_parse_mac -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x55bc7992 videocodec_attach -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x8a12dec1 videocodec_detach -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x8cb256ed videocodec_unregister -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x997848e6 videocodec_register -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x25e7503f soc_camera_power_init -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x2bf52c5a soc_camera_power_on -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x2eb79833 soc_camera_apply_board_flags -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x5896f279 soc_camera_power_off -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x7e350341 soc_camera_host_unregister -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xb70c0401 soc_camera_xlate_by_fourcc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xee4b25c3 soc_camera_host_register -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc -EXPORT_SYMBOL drivers/media/radio/tea575x 0x57f03038 snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x8249f40c snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0x84aeeceb snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0x8acf21c0 snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xb74f3d1e snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0xd4f00236 snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0xec8b7892 snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x2c757d28 lirc_dev_fop_open -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x38b5076e lirc_dev_fop_close -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x6ab70c99 lirc_dev_fop_read -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xc0830579 lirc_register_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xc1dc637e lirc_get_pdata -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xc8c5e97e lirc_dev_fop_ioctl -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xe2bb46f7 lirc_dev_fop_poll -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xfaebb3cf lirc_dev_fop_write -EXPORT_SYMBOL drivers/media/rc/rc-core 0x3c7050d8 ir_raw_handler_register -EXPORT_SYMBOL drivers/media/rc/rc-core 0xea3d3123 ir_raw_handler_unregister -EXPORT_SYMBOL drivers/media/tuners/fc0011 0x33a77eb5 fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0x18e89c81 fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x17e985cc fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xc3918a8e fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xd1d5fb21 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/max2165 0x3b5e152f max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xd906b518 mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0x240667b0 mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0x1c4ed095 mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0xafd03940 mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x31b7cb6f mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0xd67f3a6a qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0x01f34e1b tda18218_attach -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0xff1905b9 xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0x0c0107b2 xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0x87b3ad75 xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x1681f213 cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xf9e5bed3 cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x060e36bf dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x12f127a0 dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1686c76f dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x27d70378 dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x626abbff dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x73530866 dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x857d4ff7 dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8ffcd2a1 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xfe4647c6 dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1acc5aae usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x4126622d dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x67ca8e64 dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x6dc20786 dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x719107aa dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7abdb929 dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x95e3439a dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x069b4bb4 af9005_rc_decode -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x11af7c49 dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1ed56f81 dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x261e7f82 dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2cff3409 dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5fd0a2b8 dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x67af9909 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x69663bf3 dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7c26b016 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7f4f980f dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x81d96c7d dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa6679896 dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xcbaf7982 em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xe483b836 em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x18327a65 go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x21635c46 go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3b327d36 go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6722409b go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7791b89f go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb4bdf2e1 go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc878191a go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xce4f5a47 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xea579649 go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x1f8f6b4f gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5e45ba6c gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5ea52793 gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x6fc81f67 gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x97f1f140 gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa739fd8e gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xbdc6dcd7 gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf483d077 gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x1135ab64 tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x4753d16c tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x7b4c9e90 tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x0db152c0 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x2676530a ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x8860c236 v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xbb51647f v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xc46382a9 v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x18857844 videobuf_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x3f8b919e videobuf_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x6cc21e88 videobuf_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x80dae9c5 videobuf_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xa3f4a868 videobuf_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xdb9d4d8d videobuf_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x3294e65d vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x4b6cb6b5 vb2_verify_memory_type -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x02d1547e vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x76531e9b vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x8ad9b312 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x9d4004c0 vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xb078d689 vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xeee4a1b8 vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0x215fb3ab vb2_querybuf -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0067446d __v4l2_clk_register_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x08739293 v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0903b2fc __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x09c85a41 v4l2_subdev_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0a3830ce v4l2_clk_get -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0ff97277 v4l2_ctrl_add_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x10833eab __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1561d91c v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1a82d521 v4l2_clk_put -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x213ae3bd v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2d36ad37 video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2d8df4a0 v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2e9c6e13 video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x30b0118a v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x30e01cff v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x31160da9 v4l2_subdev_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x312c6791 v4l2_of_parse_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315bcb02 v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3190080e v4l2_clk_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3ad11031 v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x439a1273 v4l2_subdev_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x44374da1 v4l2_of_parse_link -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x473e4aa5 v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4a2eeb01 v4l2_of_free_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4c03155b v4l2_clk_unregister_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x51cce9e5 v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5442adf8 video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5a27fc1b v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5ca4384f v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5d5aaf6b v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x60b34136 v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6780415c v4l2_clk_enable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6dd798f3 __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6de392f9 v4l2_subdev_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7351ba2c v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x75f3adc5 v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7f81ef81 v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x801e4e16 v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8262dcbd v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8d48297e v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8dd2772d v4l2_clk_disable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8e790572 v4l2_of_put_link -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9cabfb41 v4l2_subdev_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa13951bb v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa46d8ca6 v4l2_clk_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa60e9228 v4l2_of_alloc_parse_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa7fd163b v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa9419aa3 video_usercopy -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb82a069a v4l2_subdev_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc192df86 v4l2_clk_set_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc474d485 v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc7ff7987 v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc94ef12e video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcb675a6a v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcca06f7b v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xce0b4246 v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcebe811b video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd3982fb7 video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd482e9ef v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd77ac1e5 v4l2_subdev_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xda0276a4 v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc528081 v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdcd67765 v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdf1dff09 v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2586b7a __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe28f6275 v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe88de812 v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xee6047ff v4l2_clk_get_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xef1a8538 v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf1a5ea9d v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfb9b1214 v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfe613ce1 v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xff73aaa4 __video_register_device -EXPORT_SYMBOL drivers/memstick/core/memstick 0x0e8aaa0f memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0x2f8b84fb memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0x509705e0 memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x6bf23fc1 memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x8effed1a memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xa5987a36 memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xaa593483 memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xc89ad5c2 memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xcc81111e memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xd4b074ba memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xe4664d54 memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xebae6bc9 memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xf1025e73 memstick_new_req -EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x00e26c55 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x035b95f8 mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0429d6f1 mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1e051afc mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x28cfdc0e mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x30900ac0 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3f303023 mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3f6e3422 mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x40b794f6 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x43d3acc6 mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5d0c02fa mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x679fd08e mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x67ac3f02 mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6887dce3 mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x713fe66f mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x780dbd22 mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x78657f37 mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x94e8056b mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9b3619e3 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9babb04b mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa262d4bc mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xba7daeb8 mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc4ac4a96 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc699442c mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xca3f476f mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd6ebbf47 mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdbefa500 mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe204c5da mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xeaf184ed mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x00b2cfca mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1070bf54 mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x293c3948 mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x33fa2ea6 mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3c97623d mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3dd398db mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4443e8f1 mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x543c40ec mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x67f7b753 mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6ce533cf mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x854a338d mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa45b9178 mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xab0b6e81 mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb30094ab mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xba730f1e mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbf5686e4 mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc1ad1590 mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc8ead2ce mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcb68232e mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcb9bd56a mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcf571183 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcf9ff621 mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd91e8baa mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe1dee262 mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xea6c048c mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf612de38 mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xffbe17ee mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/mfd/dln2 0x2f5e48b5 dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0x686e8f07 dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xcecc5de3 dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x548d74d9 pasic3_write_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xa55ae877 pasic3_read_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x19d8ae4a mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x40345707 mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5783e046 mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x579f4fe9 mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x731ddf5d mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x73b54829 mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x74bab8a0 mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7dae0f28 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8d6c20c4 mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd71bcb19 mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe17398f4 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 -EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 -EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib -EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led -EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw -EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x1c3a3bc5 wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x42147979 wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x0bf23736 wm1811_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x8ccf45a3 wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x9490351b wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xa6aa8e82 wm8994_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x6cf5fe44 ad_dpot_remove -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xdf1527ca ad_dpot_probe -EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x37cbc168 altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x3b7b1ec6 c2port_device_unregister -EXPORT_SYMBOL drivers/misc/c2port/core 0xdc7e4cdf c2port_device_register -EXPORT_SYMBOL drivers/misc/ioc4 0x1c9466a8 ioc4_register_submodule -EXPORT_SYMBOL drivers/misc/ioc4 0xe9ca73ec ioc4_unregister_submodule -EXPORT_SYMBOL drivers/misc/tifm_core 0x23f84122 tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x42f45dde tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0x5f21f41e tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x5fea3ba8 tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x9d63f483 tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xa4783ad9 tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xb36c139e tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0xc43aa835 tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0xe4903d88 tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0xe5652fba tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0xe6afaca6 tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xf28aa237 tifm_free_adapter -EXPORT_SYMBOL drivers/mmc/card/mmc_block 0xc4247d78 mmc_cleanup_queue -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x4989d717 cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x5bb2408b cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x609b4cd8 cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc27ebe8e cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd288f221 cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xecb83459 cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xefd0c0a0 cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xa5a7df62 register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xba287ded do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xdac29e52 map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xedea7f54 unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x2e0fdd78 mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x72ab3ae9 lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xe20342be simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0x3bcdcb42 mtd_concat_create -EXPORT_SYMBOL drivers/mtd/mtd 0xb1dee1f5 mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/nand/denali 0x86e735d3 denali_init -EXPORT_SYMBOL drivers/mtd/nand/denali 0xe0ed3c85 denali_remove -EXPORT_SYMBOL drivers/mtd/nand/nand 0x13792863 nand_scan_ident -EXPORT_SYMBOL drivers/mtd/nand/nand 0x3fbe4c68 nand_scan_bbt -EXPORT_SYMBOL drivers/mtd/nand/nand 0x4fa9885b nand_unlock -EXPORT_SYMBOL drivers/mtd/nand/nand 0x867ceaeb nand_scan_tail -EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/nand 0xd9ca86ee nand_scan -EXPORT_SYMBOL drivers/mtd/nand/nand 0xeec3ffd9 nand_lock -EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x84a33e4e nand_bch_init -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xa10f16ad nand_bch_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xa431d14f nand_bch_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x731f5175 nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xcc1c5bb3 nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x8cfcf75c nand_flash_ids -EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x1495b888 flexonenand_region -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x9789adfc onenand_scan_bbt -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xa7af6ab8 onenand_default_bbt -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xe96b92f9 onenand_addr -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1ba9cc9c arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x470d60fd arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x63fa125f arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x68f97864 arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6c15fb30 alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7069f782 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7ca218d6 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x94eae941 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9e695d7d arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xdd70d7d4 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x1829237f com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xcde2ee79 com20020_netdev_ops -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xcf0db72a com20020_check -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1b8779b4 ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4ce3f5b0 __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5d15952a ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x67d62e08 ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6a04791f ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x74733028 ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb01cfe93 ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb97d6a2b ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe6a292ec NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf6dd79cd ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0x0e827bbe bnx2x_schedule_sp_rtnl -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xa2cc8647 cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x02b398e1 cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x02d5d7c6 cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1ab6b553 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2a368c6c cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x41ac401f cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x68a54d5d cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7914f09c dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7f30a8ea cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9402fee9 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9ae4a9d3 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc183a71b cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xccfc118c t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe13abd6e t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xed3a473d cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf7ba3f66 t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfafe2bc0 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0518c944 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0c43a498 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x21f7edba cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x259c6973 t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x262ed93f cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x29ce4dbc cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x303b7dbf cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3b2ec69e cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3b880136 cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x448f4d31 cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x47279879 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4d8992cc cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x538c309a cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x757509fe cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x75fb6243 cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x774d1662 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7cec4f09 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x807f9a2e cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x87778583 cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8b77e54b cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa46621db cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa5be256c cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa7687039 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8e91f65 cxgb4_dcb_enabled -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xac68af2f cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbfdc219a cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcb4a313f cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd45f3e80 cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xda8deaac cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe037e155 cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe6085f5d cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf2b39704 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf53cfb95 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf9649b6b cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x05fa1a36 vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x70f6b463 vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x8d32d390 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xaeaa4382 vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xbe0a83db vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xe14f83d0 vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x28a07655 be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xe22c7ad6 be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/freescale/gianfar_driver 0x79f28897 gfar_phc_index -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02036284 mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0800f796 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09b6c5e3 set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1bc17a55 mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2efc204b get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x313cf0a0 mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34720578 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3798a0b6 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3bdc8c52 mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x403beeea mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x494e9665 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54e083cb mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x571676b3 mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59cc2523 mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e8163c7 mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6804d274 mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x757849cb mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x757f5325 mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ac338d2 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89bf168a mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89ec936f set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b2a9597 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92266727 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96748806 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4b28a1e mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xacbecc02 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf573e72 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5dca144 mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3359b6c mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6bc56e2 mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd4f18c4 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcdf3003c mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce37e25b mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2c2be0d mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3c73703 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4afd874 mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8b21e11 mlx4_test_interrupts -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1ac2760 mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0857aabd mlx5_get_flow_table_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08852ee8 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x095acbb8 mlx5_unmap_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb7287e mlx5_del_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14ac7a90 mlx5_query_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16531739 mlx5_cmd_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1971c057 mlx5_core_query_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2414b482 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c5bb085 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2cbdf461 mlx5_cmd_comp_handler -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e13c37b mlx5_modify_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a036cda mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d40e8c8 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d92ae4e mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x501e791c mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52c546d5 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5546b529 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e3d3c05 mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66b7d260 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b16f319 mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6be39111 mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6fbca29a mlx5_alloc_map_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x741b5f36 mlx5_core_destroy_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74851dcd mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74a39198 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7540fb0f mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76af8232 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82b4111e mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa254372e mlx5_core_get_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf2924ab mlx5_unregister_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb07de901 mlx5_get_protocol_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0a9a7f4 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb189de53 mlx5_register_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1b9da03 mlx5_cmd_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6368984 mlx5_core_arm_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8cb1b37 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8d31f57 mlx5_core_dump_fill_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6f6355a mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3d0cebd mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6af33e4 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc728a49 mlx5_add_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffecdf2a mlx5_core_create_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2b3c56b0 mlxsw_core_bus_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x355cdbf6 mlxsw_core_rx_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3787d88f mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5b37b26e mlxsw_core_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x798defa3 mlxsw_core_skb_transmit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7f262344 mlxsw_core_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcb5c8545 mlxsw_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee8e0771 mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf8d81f32 mlxsw_core_skb_receive -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa209d1af qed_get_protocol_version -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xafb260d7 qed_get_eth_ops -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x1e0fde04 hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x63307473 hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x753cedd3 hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xbdff3775 hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xc5f44da4 hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x16951d82 sirdev_put_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x4f6f2616 irda_register_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x5597c701 sirdev_raw_write -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x56a0b211 sirdev_get_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x77507c06 sirdev_raw_read -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x829d74dd sirdev_receive -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x8a0f9c20 sirdev_set_dtr_rts -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x91000f29 irda_unregister_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x933c5418 sirdev_set_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xf1761997 sirdev_write_complete -EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl -EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart -EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag -EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe -EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok -EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage -EXPORT_SYMBOL drivers/net/mii 0x158ad9d7 mii_check_gmii_support -EXPORT_SYMBOL drivers/net/mii 0x5ab1471f mii_check_link -EXPORT_SYMBOL drivers/net/mii 0x668d2b46 mii_ethtool_gset -EXPORT_SYMBOL drivers/net/mii 0x8a682862 mii_link_ok -EXPORT_SYMBOL drivers/net/mii 0x92550115 mii_check_media -EXPORT_SYMBOL drivers/net/mii 0xb491bb2c generic_mii_ioctl -EXPORT_SYMBOL drivers/net/mii 0xca653e67 mii_ethtool_sset -EXPORT_SYMBOL drivers/net/mii 0xece8608d mii_nway_restart -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x2eb6e668 free_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xc14b18b0 alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x0d5bdc2d xgene_mdio_rgmii_write -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x6186fa7c xgene_enet_phy_register -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x9427be37 xgene_mdio_rgmii_read -EXPORT_SYMBOL drivers/net/phy/vitesse 0x96b3430d vsc824x_add_skew -EXPORT_SYMBOL drivers/net/ppp/pppox 0x624b131c register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0x6faf38d1 pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0x9420f58d pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0x7167632d sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x43509f6e team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0x5773f1a1 team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x5b94fe39 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0x630facdd team_options_register -EXPORT_SYMBOL drivers/net/team/team 0xa689c666 team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0xc7ab029e team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0xd03fb1de team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0xed2f61d0 team_options_change_check -EXPORT_SYMBOL drivers/net/usb/usbnet 0x4e43740f usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0x57ad8674 cdc_parse_cdc_header -EXPORT_SYMBOL drivers/net/usb/usbnet 0x93c3c333 usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0xe2135bfe usbnet_manage_power -EXPORT_SYMBOL drivers/net/wan/hdlc 0x13a4d21e unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0x19036203 attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x1b65f1fe unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x1cbe73c1 hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0x642aa421 register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x65f6e0a7 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x79520954 hdlc_change_mtu -EXPORT_SYMBOL drivers/net/wan/hdlc 0x94d25cd7 hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0xb7559df2 hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0xbda48ddd hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0xcbce2be9 alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x490e7780 i2400m_unknown_barker -EXPORT_SYMBOL drivers/net/wireless/airo 0x497a1979 reset_airo_card -EXPORT_SYMBOL drivers/net/wireless/airo 0x80570828 stop_airo_card -EXPORT_SYMBOL drivers/net/wireless/airo 0xae9e0788 init_airo_card -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2edba0db ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x68ba5608 ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x793ec832 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x86df368c ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x86e11aed ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9cdf5d1d ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa17d146b ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa3e01193 dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xca30caa6 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd616f40f ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf5a60f8a ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfbfc400f ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0899f5b1 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x18ddf079 ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1a919c6c ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4f50c933 ath10k_debug_get_new_fw_crash_data -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x51bbedc0 ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5487ff54 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7db22de0 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x801d7651 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8c9270d4 ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x900f6372 ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9a0c50fd ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xaa278e1b ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xab7d2e2a ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xba137bed ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd21c9c83 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x093844eb ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1ffb50e4 ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x50ef525f ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7912007c ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x86fee20a ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x889cfd63 ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd10d8c93 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd28d087e ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe7040df4 ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe9eeb86e ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xebeb1c81 ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x00a2a501 ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x021b1d66 ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x05490dcb ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0734d945 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x129ea30e ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1accb95b ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x39b62d78 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x43efce05 ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x46562fbc ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x60a08191 ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x61895c2d ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6383c9bc ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7b46ca64 ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x99be2775 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9cd80327 ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xab330b96 ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb0b0609b ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc8123890 ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcb4ad571 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd7f6f91e ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xde7dfe87 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xec00dfe6 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfb112c57 ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01212a41 ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01f7dad2 ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04db530b ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x06c86a44 ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08b6d427 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0a59d0cb ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0abca2a3 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c1cbb9b ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d9aac75 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x12570831 ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1710e1ec ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b615dbd ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1dbd67fc ath9k_hw_request_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1f18fe03 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1f256783 ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1f8e9384 ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x22e07545 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x22fdbaed ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25f3a307 ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x28d12716 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x29142b23 ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x297f4d98 ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x29f55541 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2db0bbb4 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x31522566 ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3378ecd9 ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x373c0043 ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3892dfb0 ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x408f493c ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x41850e44 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48d2a7bb ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x498c063c ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x49b9fb3e ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4bf36f36 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4dc5844d ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e0d9098 ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5460080f ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54e4cc19 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x55018636 ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5562273e ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x56f8457d ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x586f0ac7 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5de189e9 ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5e8692ed ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x64843f35 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x668bf504 ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x67511640 ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d899ecf ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f330e30 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x71f7ec74 ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x78862066 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7af2e4e1 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7cc68be6 ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81832845 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8430c1d9 ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x853ab092 ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8795a6ab ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x88fdbaf3 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8ab2ad73 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8bfa2b10 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8de3748a ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92264952 ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x94d4c796 ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x958d73d9 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x96313918 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9639a188 ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9773949f ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9944607f ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a4ab14c ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a95dc62 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9abd1917 ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9c56e242 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d51d5d3 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa32c6466 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6ea4a66 ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa8fedc7f ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa90d6286 ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad8556e0 ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad8ee484 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf3762b9 ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb5f7ab5d ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc114c6a3 ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc2246162 ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3b45f0f ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc5db45a8 ath9k_hw_cfg_gpio_input -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc5dd6a53 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc9dd343c ath9k_hw_cfg_output -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1f4cf1a ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd2d96dea ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd396f044 ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd422e630 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6ae933d ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6f8df47 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xda4f5015 ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xddf8fd59 ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe45cc6dc ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe55d05e5 ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xea6f0b9c ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xed5c6526 ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0803b77 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf75e24b5 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf8b93cdf ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfbc2fb39 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfcb6eacb ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfcb8a782 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/atmel 0x0250faad init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel 0x68837a92 atmel_open -EXPORT_SYMBOL drivers/net/wireless/atmel 0xb5778b76 stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x122ef041 brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x1ea5916a brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x49986748 brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x66459afc brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x8c18c116 brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x940feaa3 brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xad0adda5 brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xae00d95b brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xbbb67be5 brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xc58670a3 brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xc9191102 brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xe3313f09 brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xe657be66 brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x08446ad7 hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x13426923 hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x195ee120 hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1b044fb0 hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2963a70d hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3038eed6 hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x39d9401b hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3d483363 hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3f11f2fc hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4f9b7b7d hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6fd8f81e hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8177a719 hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8ea0ca8f hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x92b33b0b hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9bdb984d hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9e101bed hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa31ca9f8 hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xabd2bfb2 hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb0fc89e6 hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc9764191 hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xcfb0f76d hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd2c6e2ef hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xdcef322d hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe473d6f9 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf85cdc29 hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0e00aaaa libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2060e4b3 alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2a0f8228 free_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2e105a64 libipw_change_mtu -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x3a236e20 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x3ef3c183 libipw_rx -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4eb7e89c libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4f445efb libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5c2cc35f libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x65f18578 libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7041b11b libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x71d847c0 libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x932b2d0a libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa463fc7b libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc6a11bb1 libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc8dffea6 libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd8de588f libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xdb1dfeda libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xdc8e6b7d libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe9c3a45c libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf59b6be2 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x02368fc8 il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x050b90b3 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0645125b il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x06b6c073 il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x06ed07dc il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0ea0c549 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1014bb83 il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x11135af8 il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1519fd83 il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x151e4168 il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x182bd363 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1a94644b il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1ba08397 il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1f93adad il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2079dc0e il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x236e2e15 il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2453547f il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x260ad634 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2917a317 il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2f4850c8 il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x302b6c48 il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x34a0ce3c il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x35ad0f33 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x36b662f0 il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3c85d04c il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3d741e90 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3d896d49 il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x433867ed il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x45ade93f il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x46584e6b il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4c188c09 il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4cc96eb2 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4d941a95 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x501fabf9 il_set_rate -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x50e3d2f9 il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x52b71744 il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x52c388f3 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x54996d29 il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x549f571f il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x56c9b518 il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5741714e il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x595f341e il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5b1b748c il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5ec1bc23 il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5f1e2269 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5ffd9f3f il_mac_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x66f7c93d il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6a29bdcd il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6c0bce74 il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6c330dee il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6f0f1395 il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x73519667 il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7433d145 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x76a3e1ab il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x78549e75 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x79333343 il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7b1a1360 il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8e8c4315 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x93814143 il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x962e94a1 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x98e8af73 il_leds_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9b8f6d2c il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9f0cea73 il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa016a673 il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa0b4f93d il_init_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa3479140 il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa4ce97c3 il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa7dc4cdb il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb2aee983 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb509b89d il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb72ca744 il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbdc52dca il_free_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc0377177 il_force_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc10a5473 il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc11f0015 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc1c70020 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc3832a56 il_apm_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc51b0489 il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc60b125c il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc8991ba9 il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xce057909 il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd1e73acb il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd316e36c il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdb744d6a il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe2312c71 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe3f32ed1 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe84b064e il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe8a1bebe il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xedd8b002 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xef0a40bb il_set_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf2785418 il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf6faf579 _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf7dd1f54 il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf7f7f0a4 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf8bd8fef il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfadb2423 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfba03580 il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfc93b0b4 il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x08c6664d __tracepoint_iwlwifi_dev_iowrite8 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x4379786d __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x95a8ab3c __tracepoint_iwlwifi_dev_iowrite32 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xa2b6ec39 __tracepoint_iwlwifi_dev_ucode_error -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xb69add1f __tracepoint_iwlwifi_dev_ioread32 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xcd60e86e __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xd4f50457 __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x0f850c07 orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x188f05e8 orinoco_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x3d342370 __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x3d5f012f orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x420aa2ad orinoco_down -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5dea5bf1 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5ef78a87 orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5f182255 orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x6421e312 free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x8944532f alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xab6bedb9 orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb7b0d075 orinoco_get_stats -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xbef25f29 orinoco_up -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xbfb567ee orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc10039f2 orinoco_open -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd6a6d299 __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd95ed0b0 orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x121405ed rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x05d37170 rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x11e23894 rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1e0f36c7 rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2e4c73b1 _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x313fdd10 _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3a852557 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x43783888 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x43d1bbfd rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x48ab3424 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5a5ad61d _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x65882f42 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x67ae3aab _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6fa623e4 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x70b12ecd _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x78dcdd03 rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fe8852d rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x961c573d rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x971f37dd rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x99b0fdb1 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9fd0c735 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa3b3858c rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa48c3379 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xad802262 rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xade2660b rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb1985b46 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb68d73f4 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc66f84f4 rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc6858784 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc7db08b1 rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc8949630 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcd912cac rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcfede1a8 rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd7866042 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd82ff1e3 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdb311ad4 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdc0f8c74 rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe3dfe811 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe65b439b rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf64fd289 _rtl92c_store_pwrIndex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf81bc59f rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf9f9ea1d _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x1d93d1fd rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x27705db2 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x3906d4ae rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x859a5299 rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x25121a54 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x56c7bf44 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xa885a1b8 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xaebf4011 rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x01122309 rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0396e5b6 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b231c5a rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x11f05c18 efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2a32430f rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2c62d9f8 rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x354089da rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x39a4f879 rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x517b6f1e rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7df16e1c rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8b3f1826 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x92a41006 rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97b27be5 rtl_ps_set_rf_state -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9e2e33dc rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa2fd5296 rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb01b0ca3 rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc22670b7 rtl_wowlan_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc96fe628 rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc9b3047d rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xce2b327d rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xda1339ce efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe7e6b3a6 rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeba178a7 rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebc318e2 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeedd5e1a rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf646af00 rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf7538618 rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfb7b3ab2 rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x33afd568 wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x4749c3ce wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x77dff5e1 wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x9c68e55c wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x32cff37b fdp_nci_recv_frame -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x3aa19369 fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xf529bf00 fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0x6cadef20 microread_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0x9a183a0a microread_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x56edfab8 nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xba1ed8fd nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xba8422c7 nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x5d671975 pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xafa6f760 pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x7836576a s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xbf5cfbc8 s3fwrn5_recv_frame -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xd09f711f s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x015c01e9 st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x18b4dbba ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x33d6f591 ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x45272e26 ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5d3ef77b ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x617ad4ed ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa443216d st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xbc8b6377 st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xde52c73f st_nci_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe4a5d805 ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfd99c276 st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x01b053c1 st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x03018d20 st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x21a11fbc st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2ccd721d st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x40b7db2f st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4b4a4dcf st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4b4b8e31 st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4c83fa23 st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x56ffe7c5 st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5728ad40 st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6e329b3f st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa923b9f8 st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc4838533 st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdb999b87 st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xde983e25 st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe6b3ea8b st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe7dedb10 st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf8334752 st21nfca_dep_init -EXPORT_SYMBOL drivers/ntb/ntb 0x5d9cb5f2 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0x6bd5430f ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0x8d306dcd __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0x93e1b785 ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0xa159112b ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0xbd72f9ef ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0xe6efd7ca ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xfd9662c5 ntb_clear_ctx -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x0b87db27 nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x9a3a4047 nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x2306a345 devm_nvmem_cell_put -EXPORT_SYMBOL drivers/parport/parport 0x00c481e1 parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0x02a2edc5 parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0x1c358ac5 parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0x24731060 __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0x27e9233f parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x357e3cef parport_release -EXPORT_SYMBOL drivers/parport/parport 0x37d099f1 parport_read -EXPORT_SYMBOL drivers/parport/parport 0x3bda7c89 parport_register_device -EXPORT_SYMBOL drivers/parport/parport 0x3be841a8 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0x3ce4a013 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0x3f01c5c8 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x471aef3d parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0x47920434 parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x5430e09a parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x5e7bf9e7 parport_claim -EXPORT_SYMBOL drivers/parport/parport 0x67394841 parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0x6d3c9daf parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0x77d32668 parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0x95f63644 parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0xb552ee05 parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0xb5dc90e0 parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0xb9523d71 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0xba0d2218 parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xc1b30eb0 parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xc2d33029 parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0xd02d0bf1 parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0xd7030387 parport_write -EXPORT_SYMBOL drivers/parport/parport 0xd95be847 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xe61bac7c parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0xe710b002 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0xf2df8830 parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0xfc5d3792 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport_pc 0x1009795b parport_pc_probe_port -EXPORT_SYMBOL drivers/parport/parport_pc 0x6e1212f4 parport_pc_unregister_port -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x00d2a873 __pcmcia_request_exclusive_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x097b19f5 pcmcia_unregister_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0c4e9388 pcmcia_dev_present -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0f8653bf pcmcia_request_io -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1c239710 pcmcia_write_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x22b40b2e pcmcia_release_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x389b59f6 pcmcia_map_mem_page -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3b6376d3 pcmcia_fixup_vpp -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5ec39ffb pcmcia_request_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x93c73d1a pcmcia_fixup_iowidth -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa81b9ff6 pcmcia_read_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xbe20c7e9 pcmcia_get_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc4345d61 pcmcia_request_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc6ee9745 pcmcia_loop_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xcc0fc320 pcmcia_enable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xcd7bd6d0 pcmcia_loop_config -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xed8666fe pcmcia_register_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf2e8d1b2 pcmcia_get_mac_from_cis -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf66c0171 pcmcia_disable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0aa30e03 pcmcia_reset_card -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x11a7e31c pcmcia_unregister_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x12418c3d pcmcia_parse_uevents -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x4fd2b0f5 pcmcia_socket_class -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5e3289ad pcmcia_put_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x62bb5d76 pcmcia_socket_list_rwsem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x76b9194f pcmcia_get_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7ea02904 pccard_register_pcmcia -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf20abe2 pcmcia_parse_events -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xdb1a138a pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xdd24126e pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x9885a92a pccard_static_ops -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xe346441d pccard_nonstatic_ops -EXPORT_SYMBOL drivers/pps/pps_core 0x90b564ca pps_unregister_source -EXPORT_SYMBOL drivers/pps/pps_core 0x9881831b pps_event -EXPORT_SYMBOL drivers/pps/pps_core 0x9ba4b42d pps_register_source -EXPORT_SYMBOL drivers/pps/pps_core 0xa48c5cd8 pps_lookup_dev -EXPORT_SYMBOL drivers/ptp/ptp 0x5603b39e ptp_find_pin -EXPORT_SYMBOL drivers/ptp/ptp 0x97444523 ptp_clock_event -EXPORT_SYMBOL drivers/ptp/ptp 0xbd2a2eda ptp_clock_unregister -EXPORT_SYMBOL drivers/ptp/ptp 0xdb3654ab ptp_clock_index -EXPORT_SYMBOL drivers/ptp/ptp 0xe32de71d ptp_clock_register -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x22b8483d rproc_report_crash -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x24040c7b rproc_shutdown -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x3d6c2367 rproc_boot -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x3f834fd1 rproc_alloc -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x4ef3817f rproc_vq_interrupt -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x79e19c5f rproc_put -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x9a459eaf rproc_del -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x9fea05d8 rproc_da_to_va -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xab4ab69e rproc_get_by_phandle -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xfacfdce1 rproc_add -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x62865707 ds1685_rtc_poweroff -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x45024b2f scsi_esp_register -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x7bd3fcc1 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xb299a13d scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xdc98dd38 scsi_esp_template -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x20394c65 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x21be21e5 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x612bc140 fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6bcf702b fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6dade120 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6f81beaf fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x89d9acc2 fcoe_ctlr_destroy_store -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x93c57795 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9ea73318 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xac3f4991 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc430d724 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xef0018ad fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x006c13ea fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x062397f4 fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0c2192bd fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1c5cff8b fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x21e94d58 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x240d5091 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x278694d1 fc_rport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2ab35d03 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x363ccc4f fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3cd0ce75 fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5159b40b fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x536c938d fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5390438d fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x542704f5 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x62dc1cbf fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x66d7f020 fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69ae3313 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6a225689 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6aac9ed2 fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6eb8e582 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6f2b4c39 fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7472bdc1 fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7a7aea69 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x87d41ebd fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8f1a17b1 fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8f4c4b5c fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x91defada libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9acdbe04 fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa0b22001 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa3abf50b fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb051d8a3 _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb318db48 fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb3df11e1 fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb9fe0038 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xba3a71b4 fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc0c54715 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc9f41c07 fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcdf1f637 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd107a0a9 fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd53de3db fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdc42ecf2 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe18e90f9 fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe2181378 fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe673c9ca fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeada3c67 fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xed44b3aa fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xee3c5916 fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf383011c fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf4cdae57 fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfb9c6582 fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x1cc3c03c sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x3ee4228a sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4d0d2e50 sas_wait_eh -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xff513e88 sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x5377189f mraid_mm_register_adp -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x040da55e osd_req_list_collection_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0dc69e1d osd_req_read_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x181d1ef7 osd_req_add_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1e603a2c osd_req_flush_collection -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1ecce528 osd_req_write_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2ed76d8d osd_req_remove_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3e369351 osd_req_flush_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x40349bd5 osd_req_create_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4165da0b osd_dev_fini -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x528f386b osd_execute_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5e3ecd7c osd_end_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5f72ee88 osd_req_set_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x614caee0 osd_dev_init -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x62fb1b01 osd_req_list_partition_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x67098934 osd_req_flush_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x742433c4 osd_req_get_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x795123e4 osd_req_list_dev_partitions -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7ad6aa4a osd_req_write_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7d52b8ac osd_req_create_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x89abb940 osd_execute_request_async -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x89c4bc11 osd_req_write_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8a730af2 osd_req_flush_obsd -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x916bfda8 osd_req_add_get_attr_page -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9222dce2 osd_finalize_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9c2415b1 osd_req_decode_sense_full -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9ec07d10 osd_req_read_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa4a37fb1 osd_req_remove_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb7e7204e osd_req_list_partition_collections -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb91aae29 osd_req_read_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcfb8bf03 osd_req_add_set_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd0937ef2 osd_auto_detect_ver -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd8061716 osd_req_decode_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xda394943 osd_req_write -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe2983713 osd_start_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xeaa48021 osd_req_format -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf1027f6a osd_req_read -EXPORT_SYMBOL drivers/scsi/osd/osd 0x3503fb70 osduld_device_info -EXPORT_SYMBOL drivers/scsi/osd/osd 0x48e3f65e osduld_info_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0x6221f53b osduld_put_device -EXPORT_SYMBOL drivers/scsi/osd/osd 0x62b46de1 osduld_path_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0x6c5cba65 osduld_register_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0xfb88f9f1 osduld_device_same -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x13cb5cb7 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1a9899b9 qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x498aa6b0 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6d443b25 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x758b8f59 qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x80e7119d qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x91efda27 qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9f181d05 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb59f33e7 qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd8f9ca3a qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xdf6d8957 qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe30b08cb qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x28a49f75 qlogicfas408_bus_reset -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x352ef9fe qlogicfas408_queuecommand -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x45df6384 qlogicfas408_abort -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x88f1f6c2 qlogicfas408_disable_ints -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xa8a3e1c8 qlogicfas408_info -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xefd42b9a qlogicfas408_biosparam -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup -EXPORT_SYMBOL drivers/scsi/raid_class 0x3f22c620 raid_class_release -EXPORT_SYMBOL drivers/scsi/raid_class 0x8a52b60a raid_class_attach -EXPORT_SYMBOL drivers/scsi/raid_class 0x91e65592 raid_component_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0554f622 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1b23f81d fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x29ac04a5 fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2d2a8736 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3b5b5b20 fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x49253d5f fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5d3d6b1d fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8227abb3 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8e2c83c3 fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8e95cb18 scsi_is_fc_vport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9aebc0b0 fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd865945c fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xefb8ceff fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x00465a76 sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x08edc76d sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x09feba7d sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x17fc28f1 sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1e4959aa sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1ef707ed sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2ac78a4d scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3065cc50 sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3437294b sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x44b6c5be sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4c9c28d6 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x686ce3a2 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6a6e6983 sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7019337a sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7334628b scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7cc438a8 sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x82ea4c25 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa19aabac sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa24a9a19 sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb0a655ed sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbebad380 sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcc3031c0 sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd14b5d63 sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdefa54d8 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe451c329 sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe85d97be sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xef51af03 sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfdb6ba28 scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x21e537e6 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x395cca31 spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x863aee7d spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x8f518c76 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc8144fb2 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x38eba87f srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x5e692d81 srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x60880684 srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x8271c5be srp_rport_put -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x00b4ddf7 ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x18d28e1f ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x45bfb28e ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x5c433dba ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xc6c8ac21 ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xe765a41b ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xefb4a511 ufshcd_runtime_idle -EXPORT_SYMBOL drivers/ssb/ssb 0x0f5b6ecd ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0x1902c905 ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0x1d1ab231 ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0x26192a8f ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0x261bf95f ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x34d453c2 ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0x35e2d028 ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x3eb79988 ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0x5d264647 ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x71e61636 ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0x774854ac ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x81092a5c __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0x857ad0e3 ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x9017ab3f ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xc0b4e5ad ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0xc1413bdc ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0xd45a4497 ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xd943a123 ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0xf5d96c82 ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0xfa6b177f ssb_bus_unregister -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x06d679b9 fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0efaf89d fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x29e89318 fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2ea43f48 fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3a1f8ebb fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3a8ce2ac fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4e5eb109 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x61446bcc fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6f1f5802 fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x75b29de9 fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x87cd8be7 fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x90efd434 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x917c55da fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x97fab10d fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa478dbc7 fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb9e5cf1c fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbf17a6ef fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc4d5c6c6 fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcc2d03b8 fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xda5aceda fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe310659c fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf876ab57 fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf9558abe fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfbfe16b9 fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x9fb1c51c fwtty_port_put -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xc3dc603a fwtty_port_get -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x05178d4e adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x10519f10 hmc5843_common_suspend -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x92702bcf hmc5843_common_resume -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x9afd6709 hmc5843_common_remove -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xa0992248 hmc5843_common_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x2be32dcc ade7854_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x7376f007 ade7854_remove -EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0xe3a653be cxd2099_attach -EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x0d1ee70c most_deliver_netinfo -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x045b497c rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x06406f5c rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0f9697e1 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1261123b rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1b7fa579 rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1db15f8b rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2129e907 rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2d0dd4e5 rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2df7f237 rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2f2b4dc1 rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x35c82be6 rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x376c796e alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3a968abb rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x40bb38d5 rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x46874a1c rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x47c58dfa rtllib_wpa_supplicant_ioctl -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4c47f9b8 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4f44965d rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4f712d38 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6a09a3cb notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6e65e890 rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x71f9ca01 RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x80eb5daf rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x90f447c4 rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x92f94616 rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x946e54a4 rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9ef980f0 rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa46c0d21 rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa6a7d120 rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa812a32e rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa88bf16c rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xae450b9e rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb17f2ae2 rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbd057639 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc14eb048 free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc1bc4f7a rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc3b359ef Dot11d_Channelmap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc531a153 dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc531f0df rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc6c5da94 rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcc2de8c2 rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xce6fe033 rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcf5cf72d HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xda8ef8f8 rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdb589da2 rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdc113a5d rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xed5f5820 rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf5731e09 rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf6cf3898 rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf9567db0 rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0132c86e ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x041ee992 ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0e15ab63 ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1ccab106 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1cebef1d ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d62cf7a ToLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x26a3cdb4 ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2ef0b659 ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x396eaf70 ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4a2dac2a DOT11D_ScanComplete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x547dbfda Dot11d_Init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5754c768 ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x57f1f38a ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x58bbc2fd ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5d17b234 SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5d1f2a3b ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61072961 ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x628d0cab ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x66cdb024 Dot11d_Reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x70dcd2af ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x71cfed7e ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x71f274fe ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x772b825d ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7ad3ceec ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x815c4071 ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8a883d43 ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8c3900e1 ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8e796838 ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8ec079e4 IsLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9194846e ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x964b7094 ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x965209ba DOT11D_GetMaxTxPwrInDbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9e5a255f ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9e5df5e1 ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa00a323e ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa550e4e0 ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa8286ff2 ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa9d85484 ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb1a2c6e8 ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb7b7cc32 HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc196195c ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc7be7db6 ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcbb05d90 ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcdbe5fc1 ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf4c2491 ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd5739d9f ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdf8e6869 ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdff95fe0 ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe1821949 ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe30c0b30 ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe4fd7374 ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe6ed857c ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeda9bc50 ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf1a16561 ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf2d6686f Dot11d_UpdateCountryIe -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x08cb4604 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0e73c324 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x124affff iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x13152ae8 iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x16de784b iscsit_set_unsoliticed_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2b6dded3 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6eaa660e iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6f3e44ff iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x70ab14b8 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x72f43855 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x78290038 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x82ce4c3f iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x85d1f40d iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x87a54b10 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9042c26e iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x92714e49 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9e4d5f16 iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9e95a275 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xabfd69a6 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb724ca7e iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbd98d948 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbe51b47f iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbfa755f8 iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xda0ff029 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdd273a5e iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe5be290e iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf10fa9f3 iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfd508915 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x03fd9acb sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x05eadb94 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x0645fbad core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x09f0fbf1 target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x0ddefe1b transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x16f77646 target_sess_cmd_list_set_waiting -EXPORT_SYMBOL drivers/target/target_core_mod 0x188fcc2a target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x1b190e0b target_get_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x27a035a4 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x298cfbf6 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x2a248d8d core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x2a6760b7 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0x2a894dce __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x2b26fe7f sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x2cec21cf transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x3228d92f transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x3678e026 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x48b2d15f transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0x4bb6bf66 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x4c091a04 target_submit_cmd_map_sgls -EXPORT_SYMBOL drivers/target/target_core_mod 0x4c226da1 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x4d92fa46 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x52b8e9c2 target_setup_cmd_from_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x579a619f transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x58357034 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x5a924cf2 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x5dfd96b4 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x610243b5 target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x6554f12d transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x6a2266f0 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x6a8686c4 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x6faa1c49 transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x70cd5c9f target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x76d9684c target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x7b03432f sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x7c4e6b0c core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x83acbdcd transport_check_aborted_status -EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x8601c5c5 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x88713d0a transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x8a8a5370 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0x954f1a19 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x9c6f6591 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xa6f9e326 target_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xa7313a88 core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xaa4f3f09 sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0xb7d6a9c3 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0xbac1d91a target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xbc59c4f8 core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0xbe0abe2b target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0xc1e8e796 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xc40576f1 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xc6b86bd6 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xc99e4de1 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xd7b15977 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xdbac71c5 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xdbd12cb7 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0xdc22e20d target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xdd02f938 transport_init_se_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xddeeb1e0 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0xeb728a0a target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xeb791d76 transport_init_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0xec427d71 transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xee2735ae spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0xefb67c61 target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf22d7e16 target_put_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xf28e2cb8 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0xf951f93c target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xfd1ede87 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0xfd414385 target_to_linux_sector -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x29c45ebb usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x5c5c79c3 usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x3f82dd90 sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x00547d7d usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0ed37a7d usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x18b619df usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x21038859 usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4fcf50b4 usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x675fbd00 usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x679bb517 usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6dc30f4f usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7da7d448 usb_wwan_ioctl -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa58a5266 usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xab30937a usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xbf711a44 usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x3934ac32 usb_serial_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xd4d9ddd9 usb_serial_resume -EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user -EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x2e91ca97 vringh_iov_pull_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x367ce26a vringh_iov_push_user -EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user -EXPORT_SYMBOL drivers/vhost/vringh 0x59f824d9 vringh_getdesc_user -EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x7bda5e6d vringh_iov_push_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x821e9390 vringh_iov_pull_user -EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user -EXPORT_SYMBOL drivers/vhost/vringh 0x937e412c vringh_getdesc_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user -EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user -EXPORT_SYMBOL drivers/video/backlight/lcd 0x29782251 lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x30e59f84 lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0x6e482461 devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x8c0b8b09 devm_lcd_device_register -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0300c05c svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0d309787 svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x2a83460f svga_tilecopy -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x392c5647 svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x73015f3f svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x86674e62 svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xeadb2c14 svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xd054331b cyber2000fb_attach -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xa7f178f3 matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xae766e4f g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xfce3bcd8 matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x25755fea matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x82d9f961 DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x8a35a6f2 DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xb2b357e2 matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x0c995c37 matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x5cc2e015 matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x516d6829 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x59538e59 matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x8efea152 matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xcec847a0 matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x85515dc1 matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xe59a0f4f matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x2aea214e matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x46730dac matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x5f518be6 matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x77305397 matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x7ef76eb8 matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0xb4fc2447 mb862xxfb_init_accel -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free -EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga -EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/virt/fsl_hypervisor 0x45fd1882 fsl_hv_failover_unregister -EXPORT_SYMBOL drivers/virt/fsl_hypervisor 0x77c9b191 fsl_hv_failover_register -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x689e2907 w1_ds2760_recall_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xd29068a3 w1_ds2760_read -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xe869c843 w1_ds2760_store_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xf02beb9e w1_ds2760_write -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xa4f29d87 w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xf9d7910b w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x975cb5dc w1_ds2781_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xab49b60a w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/wire 0x31a5b49c w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0x499a0bea w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0x68747c43 w1_add_master_device -EXPORT_SYMBOL drivers/w1/wire 0x7e27af05 w1_unregister_family -EXPORT_SYMBOL fs/configfs/configfs 0x23fc71d6 configfs_unregister_default_group -EXPORT_SYMBOL fs/configfs/configfs 0x26a473c5 configfs_unregister_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0x2aa50095 config_group_init -EXPORT_SYMBOL fs/configfs/configfs 0x2eed866d config_item_set_name -EXPORT_SYMBOL fs/configfs/configfs 0x3e10ace9 configfs_undepend_item -EXPORT_SYMBOL fs/configfs/configfs 0x483adab2 configfs_register_group -EXPORT_SYMBOL fs/configfs/configfs 0x84f22962 configfs_register_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0x9cbee106 configfs_register_default_group -EXPORT_SYMBOL fs/configfs/configfs 0xb2bbacb3 config_item_put -EXPORT_SYMBOL fs/configfs/configfs 0xb357e5df config_item_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0xb61e8cc1 config_item_get -EXPORT_SYMBOL fs/configfs/configfs 0xc16883ce config_group_find_item -EXPORT_SYMBOL fs/configfs/configfs 0xcd3c00b3 configfs_depend_item -EXPORT_SYMBOL fs/configfs/configfs 0xdd1be9fb configfs_unregister_group -EXPORT_SYMBOL fs/configfs/configfs 0xf6a61a62 config_group_init_type_name -EXPORT_SYMBOL fs/exofs/libore 0x0ac9dcb9 ore_put_io_state -EXPORT_SYMBOL fs/exofs/libore 0x0ff45f22 ore_check_io -EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout -EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info -EXPORT_SYMBOL fs/exofs/libore 0x54a84128 ore_remove -EXPORT_SYMBOL fs/exofs/libore 0x54f4e147 ore_read -EXPORT_SYMBOL fs/exofs/libore 0x63be6c15 extract_attr_from_ios -EXPORT_SYMBOL fs/exofs/libore 0x6b4d91ab ore_truncate -EXPORT_SYMBOL fs/exofs/libore 0x7634bbd2 ore_get_rw_state -EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length -EXPORT_SYMBOL fs/exofs/libore 0xb969c2d0 ore_write -EXPORT_SYMBOL fs/exofs/libore 0xb99ae700 ore_get_io_state -EXPORT_SYMBOL fs/exofs/libore 0xf1a03be8 ore_create -EXPORT_SYMBOL fs/fscache/fscache 0x0066fd4d __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0x0160db7b __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0x031776bf fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0x04c3471a __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x13d10030 __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x181b52b0 fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0x1f56563e __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x1fe28088 fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0x21750a1c fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0x2a40e68b __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x382869ff __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0x384f9df3 fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0x3eb28dc8 __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x4317780c __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0x45ef785e __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x5ac3f0eb fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0x5d79ceaa fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0x60f046f5 __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x66279c99 __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0x6b0e39bb __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0x72453d95 fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x86025962 fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0x94159976 fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0x966bad02 __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x986b72c6 fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0x9fcaae80 fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0xa57aadd4 fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0xa89cf96b __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xaa4930cd __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xad7d81b4 __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xbbfffaf3 __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0xbe21bc09 __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xbe7b66bf fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0xc9f89bee fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0xcd193659 __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0xd17d943c fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0xdb3ebb54 fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0xdf5da795 __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xf1d2edf2 fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0xf8593b23 fscache_enqueue_operation -EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x6ca6824b qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0x849b2e11 qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xc80b119a qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xd0160401 qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xe119d31c qtree_delete_dquot -EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq -EXPORT_SYMBOL lib/crc-ccitt 0x3771b461 crc_ccitt -EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table -EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table -EXPORT_SYMBOL lib/crc-itu-t 0xf5b4a948 crc_itu_t -EXPORT_SYMBOL lib/crc7 0x66213969 crc7_be -EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table -EXPORT_SYMBOL lib/crc8 0x41248eaf crc8 -EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb -EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb -EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c -EXPORT_SYMBOL lib/lru_cache 0x03f599c7 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0x4feade4b lc_create -EXPORT_SYMBOL lib/lru_cache 0x56fc3ea0 lc_put -EXPORT_SYMBOL lib/lru_cache 0x619ed575 lc_try_get -EXPORT_SYMBOL lib/lru_cache 0x6bc0c010 lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0x84e0214b lc_committed -EXPORT_SYMBOL lib/lru_cache 0xbbe7c23c lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0xc48fa976 lc_set -EXPORT_SYMBOL lib/lru_cache 0xc6e4cd46 lc_reset -EXPORT_SYMBOL lib/lru_cache 0xcb990a55 lc_try_lock -EXPORT_SYMBOL lib/lru_cache 0xcea6747e lc_destroy -EXPORT_SYMBOL lib/lru_cache 0xd212c9f0 lc_get -EXPORT_SYMBOL lib/lru_cache 0xeb13128b lc_del -EXPORT_SYMBOL lib/lru_cache 0xf460a486 lc_is_used -EXPORT_SYMBOL lib/lru_cache 0xf5ea5f5c lc_index_of -EXPORT_SYMBOL lib/lru_cache 0xf6acec20 lc_find -EXPORT_SYMBOL lib/lru_cache 0xfb2700b5 lc_seq_dump_details -EXPORT_SYMBOL lib/lz4/lz4_compress 0xcbc5d521 lz4_compress -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x26c3aa22 lz4hc_compress -EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul -EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp -EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv -EXPORT_SYMBOL lib/raid6/raid6_pq 0x7456cc61 raid6_empty_zero_page -EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi -EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul -EXPORT_SYMBOL net/6lowpan/6lowpan 0x39777fe3 lowpan_netdev_setup -EXPORT_SYMBOL net/6lowpan/6lowpan 0x3f53004e lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0x642d2612 lowpan_nhc_add -EXPORT_SYMBOL net/802/p8022 0x736d6edb unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0xfe20bdd7 register_8022_client -EXPORT_SYMBOL net/802/p8023 0x4fe9c7cd destroy_8023_client -EXPORT_SYMBOL net/802/p8023 0xd89d83ee make_8023_client -EXPORT_SYMBOL net/802/psnap 0x73a527f1 unregister_snap_client -EXPORT_SYMBOL net/802/psnap 0x7face786 register_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x041aacb5 p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x0c86f4e8 p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0x0f630f6f p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x10477b72 p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x1d8fac91 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x1ea7a3e4 p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x300a140d p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get -EXPORT_SYMBOL net/9p/9pnet 0x364daeac p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0x37a3a9a6 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x3c18ab00 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x3dc26c12 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0x4902fc63 p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x4f653a74 p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0x54f6db9d p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x5727ada6 p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0x6269d86b p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0x7513bf25 p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0x782509d8 p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x8541c015 p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x8a71f2a8 p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x8b824974 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x92b6733f v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0x9d559cca p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0xa0af5f64 v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0xa231ba56 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0xa32043e9 p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0xa5a13a2c p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0xa8a469be p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0xaa802306 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0xb63ba171 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0xb7408d27 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0xb7517a4d p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0xb8d693f2 p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy -EXPORT_SYMBOL net/9p/9pnet 0xc966bae4 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xcfed26a6 p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xdbe9b514 p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0xde8a8362 p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0xe16e15cd v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0xe2c6ad11 p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0xe50feb75 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create -EXPORT_SYMBOL net/9p/9pnet 0xf4b2ca62 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put -EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check -EXPORT_SYMBOL net/appletalk/appletalk 0x150b4562 alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0x3a66197f atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0x478abdf3 aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0x53a5937f atrtr_get_dev -EXPORT_SYMBOL net/atm/atm 0x07866086 atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0x0805bd2b atm_charge -EXPORT_SYMBOL net/atm/atm 0x09376a6e atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x3021aa5d atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x47e75a0c atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0x6ad29de2 atm_dev_register -EXPORT_SYMBOL net/atm/atm 0x79b9de56 deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xa03c0e61 vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xb0fcc1ef register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xca87b453 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0xd2e0b143 vcc_release_async -EXPORT_SYMBOL net/atm/atm 0xe7ec4729 vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0xee01cfae atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/atm/atm 0xffb2f36c atm_dev_release_vccs -EXPORT_SYMBOL net/ax25/ax25 0x1793ef14 ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0x1c8c1c85 ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x2cd29666 ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0x3db4827b ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x485474fc ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x8d9dddcf ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0x922a6a9e ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xcf2128d2 ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/bluetooth/bluetooth 0x031e57b7 bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0ce273a3 l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0x10da7a0a bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0x13a38821 hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x14d17ab8 hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x17875f8b hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x19148060 bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1aa049ad __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1b237d2a hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x251f422e l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0x27195e70 bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x28ba7936 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0x33180daf bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x37946068 bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3ed555de l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4980e22e hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5083088a bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x640266fa l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x654d5202 hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6c529797 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0x782a0f8e __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7e565c07 hci_alloc_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8cf7fc39 l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9a4d7696 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9fb619de hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa320cb0c hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa97e198c bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0fa18b3 bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb5ef873c bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb64535e2 bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb6d30de8 hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb87522b6 hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb879f4e9 bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb9c44f87 bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe0980462 hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe53bb8b7 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe733466d bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf37f7940 hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf3a9fc71 hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf6f49454 hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf84e33c5 hci_reset_dev -EXPORT_SYMBOL net/bridge/bridge 0xcac1f073 br_should_route_hook -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x47fc831b ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x99bf185b ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xb3643fe8 ebt_unregister_table -EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative -EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info -EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer -EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x4ae1f426 caif_disconnect_client -EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head -EXPORT_SYMBOL net/caif/caif 0x6ef613e5 caif_enroll_dev -EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head -EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio -EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xc09aa018 get_cfcnfg -EXPORT_SYMBOL net/caif/caif 0xcca00bf0 caif_connect_client -EXPORT_SYMBOL net/caif/caif 0xe6902114 cfcnfg_add_phy_layer -EXPORT_SYMBOL net/can/can 0x11e24dfa can_send -EXPORT_SYMBOL net/can/can 0x332d2798 can_rx_register -EXPORT_SYMBOL net/can/can 0x5b62d413 can_proto_register -EXPORT_SYMBOL net/can/can 0x679af3b5 can_proto_unregister -EXPORT_SYMBOL net/can/can 0x99bd34f3 can_rx_unregister -EXPORT_SYMBOL net/can/can 0xf8fa9523 can_ioctl -EXPORT_SYMBOL net/ceph/libceph 0x003825b4 osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x0060d326 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0x04d3e62b osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init -EXPORT_SYMBOL net/ceph/libceph 0x0986ce28 ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0x0d650c9a ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0x0de22968 ceph_auth_create_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x0e0568d5 osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x0ea8201d ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0x11d98dcc ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x1457ed0c ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x1804b512 ceph_osdc_readpages -EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup -EXPORT_SYMBOL net/ceph/libceph 0x22a1453a ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x2607edc4 ceph_messenger_fini -EXPORT_SYMBOL net/ceph/libceph 0x267012fa ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x274ffeca osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0x29fb9e20 ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0x2b42f3bc ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x2bd05cff ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x2ffed2c8 ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x30943b7c ceph_osdc_create_event -EXPORT_SYMBOL net/ceph/libceph 0x34b02a57 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x35747337 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x35aaff22 ceph_oloc_oid_to_pg -EXPORT_SYMBOL net/ceph/libceph 0x37667c0d ceph_osdc_cancel_event -EXPORT_SYMBOL net/ceph/libceph 0x3982d5c3 osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options -EXPORT_SYMBOL net/ceph/libceph 0x4288e87e __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part -EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0x443d1ad9 ceph_monc_got_mdsmap -EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x473e4281 ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0x47a9920e ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x47c8bc3c ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0x48828f41 ceph_get_direct_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x4b4b133f ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0x4cb22346 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0x4dbc2f0d osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0x4eb95aa4 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0x4fa01847 ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0x52472deb ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode -EXPORT_SYMBOL net/ceph/libceph 0x555d4172 ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x5859e645 ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x6190ee61 ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x6c9b9702 ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0x6fcc8f83 ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0x70d3f5c7 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x7334d767 ceph_osdc_set_request_linger -EXPORT_SYMBOL net/ceph/libceph 0x73c99463 osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x7435fdea ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x7b423214 ceph_calc_pg_primary -EXPORT_SYMBOL net/ceph/libceph 0x7bc534e6 ceph_monc_request_next_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x7eb090d2 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x7ee05dc1 ceph_auth_update_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x7f8851ba osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x810b7ddd ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x843e6669 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0x85de1797 osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0x8817bc69 ceph_osdc_writepages -EXPORT_SYMBOL net/ceph/libceph 0x8918d714 ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0x8fb42608 ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x8ffec8f2 ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x951cfa44 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup -EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xa0955e30 ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0xa1739b30 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0xa1ebde8f ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xa33f0295 ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xa3996e6e ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0xa3b737c6 ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xa852e9b0 ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0xab716f75 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xaed5ed86 ceph_osdc_build_request -EXPORT_SYMBOL net/ceph/libceph 0xafae9229 osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xafedec04 ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xb00a14a7 osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0xb19dc152 ceph_pagelist_reserve -EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit -EXPORT_SYMBOL net/ceph/libceph 0xb954cfc7 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0xbfed8cf9 ceph_client_id -EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup -EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init -EXPORT_SYMBOL net/ceph/libceph 0xca7b09d1 ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips -EXPORT_SYMBOL net/ceph/libceph 0xd0a3a308 ceph_monc_do_get_version -EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode -EXPORT_SYMBOL net/ceph/libceph 0xd5383217 ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xd813625e ceph_pagelist_append -EXPORT_SYMBOL net/ceph/libceph 0xde0eb6ba ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0xe5559619 ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0xe55d9bcd ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0xe67cc870 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xe7d2e3e9 osd_req_op_watch_init -EXPORT_SYMBOL net/ceph/libceph 0xe90fefeb osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0xebeb792a ceph_osdc_put_event -EXPORT_SYMBOL net/ceph/libceph 0xf2a31efe osd_req_op_cls_response_data -EXPORT_SYMBOL net/ceph/libceph 0xfde1692d ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0xff72efe4 ceph_messenger_init -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x7316a6b8 dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xadbe873a dccp_req_err -EXPORT_SYMBOL net/ieee802154/ieee802154 0x018a2030 wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0x671367ca wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0x7a813dce wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0x955e4a17 wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0xf011e33d wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0xf32785f2 wpan_phy_unregister -EXPORT_SYMBOL net/ipv4/fou 0x0c07b4a3 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x820eb6b7 gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0xd6534d1a fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0xed741d6f gue_encap_hlen -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x0baf5a8d ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xa9c2b633 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xbc3e60e3 ip_tunnel_dst_reset_all -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xbd67d1bd ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xc3fbc48f ip_tunnel_encap -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xfbee5c35 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x3bac3ec5 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x735d5e74 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x7ae96cb7 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x01312b4f ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x59d1fba4 ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xd41f86cf ipt_unregister_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x19700b2e xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0xc044cb7c xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x5151dd57 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0ccbdb26 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x570a4c03 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa3e45097 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe4c0ce5a ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x9456701c ip6t_unregister_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xde266906 ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xfab752e8 ip6t_register_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x1137400d xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0xdbbdf716 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x33b90449 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x9871ad3d xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x100e4cae ircomm_disconnect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x5902708e ircomm_data_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x6bbd1fd1 ircomm_close -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x82b7cce3 ircomm_control_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x885fbc88 ircomm_flow_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x8b51beef ircomm_connect_response -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xdc7bb183 ircomm_open -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xfc7f3055 ircomm_connect_request -EXPORT_SYMBOL net/irda/irda 0x0064e0ea hashbin_get_first -EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value -EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service -EXPORT_SYMBOL net/irda/irda 0x0a50cbfb irda_device_set_media_busy -EXPORT_SYMBOL net/irda/irda 0x158778e1 iriap_close -EXPORT_SYMBOL net/irda/irda 0x163f004b irda_notify_init -EXPORT_SYMBOL net/irda/irda 0x1e6cade0 irias_add_integer_attrib -EXPORT_SYMBOL net/irda/irda 0x24dd4726 irttp_data_request -EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda -EXPORT_SYMBOL net/irda/irda 0x3b9545c1 irttp_dup -EXPORT_SYMBOL net/irda/irda 0x3e396025 iriap_open -EXPORT_SYMBOL net/irda/irda 0x3e56064f hashbin_new -EXPORT_SYMBOL net/irda/irda 0x3eed5cf5 irlmp_open_lsap -EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value -EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service -EXPORT_SYMBOL net/irda/irda 0x52b5a1fc irttp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0x5dc5a36d irlap_open -EXPORT_SYMBOL net/irda/irda 0x601bda46 hashbin_remove -EXPORT_SYMBOL net/irda/irda 0x62d267c9 irlmp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0x640ed173 irlap_close -EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies -EXPORT_SYMBOL net/irda/irda 0x6b5fbcef hashbin_get_next -EXPORT_SYMBOL net/irda/irda 0x6e0ab3c7 irias_add_string_attrib -EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client -EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client -EXPORT_SYMBOL net/irda/irda 0x788e1621 irttp_flow_request -EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client -EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert -EXPORT_SYMBOL net/irda/irda 0x85d88217 irias_delete_object -EXPORT_SYMBOL net/irda/irda 0x8e696fed alloc_irdadev -EXPORT_SYMBOL net/irda/irda 0x8f98857d irlmp_data_request -EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack -EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all -EXPORT_SYMBOL net/irda/irda 0x988de71e irlmp_connect_response -EXPORT_SYMBOL net/irda/irda 0xa131bbab irlmp_close_lsap -EXPORT_SYMBOL net/irda/irda 0xa1d41e58 hashbin_delete -EXPORT_SYMBOL net/irda/irda 0xaa557515 irias_new_object -EXPORT_SYMBOL net/irda/irda 0xb23f056b iriap_getvaluebyclass_request -EXPORT_SYMBOL net/irda/irda 0xb3991d44 irttp_udata_request -EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value -EXPORT_SYMBOL net/irda/irda 0xba99c5fd irttp_open_tsap -EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute -EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request -EXPORT_SYMBOL net/irda/irda 0xc5beb62b irttp_connect_request -EXPORT_SYMBOL net/irda/irda 0xc68e43be irias_add_octseq_attrib -EXPORT_SYMBOL net/irda/irda 0xc8221666 irttp_close_tsap -EXPORT_SYMBOL net/irda/irda 0xcc536918 irlmp_connect_request -EXPORT_SYMBOL net/irda/irda 0xcea8806f irttp_connect_response -EXPORT_SYMBOL net/irda/irda 0xcead7dbb hashbin_find -EXPORT_SYMBOL net/irda/irda 0xd2108314 hashbin_insert -EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma -EXPORT_SYMBOL net/irda/irda 0xddd904f5 async_unwrap_char -EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint -EXPORT_SYMBOL net/irda/irda 0xe166813a async_wrap_skb -EXPORT_SYMBOL net/irda/irda 0xe3463529 hashbin_lock_find -EXPORT_SYMBOL net/irda/irda 0xe3bde43e irias_insert_object -EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries -EXPORT_SYMBOL net/irda/irda 0xf0a694a1 irias_find_object -EXPORT_SYMBOL net/irda/irda 0xf5876b95 hashbin_remove_this -EXPORT_SYMBOL net/l2tp/l2tp_core 0x8e92ec2f l2tp_recv_common -EXPORT_SYMBOL net/l2tp/l2tp_ip 0xcb954ca4 l2tp_ioctl -EXPORT_SYMBOL net/lapb/lapb 0x0b41907c lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0x7556f6ba lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0xa41dbe76 lapb_register -EXPORT_SYMBOL net/lapb/lapb 0xa9f5d3b1 lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0xaaec3940 lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0xdb58e9b2 lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0xdeefe59a lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0xf927a9e6 lapb_disconnect_request -EXPORT_SYMBOL net/llc/llc 0x1762362d llc_sap_close -EXPORT_SYMBOL net/llc/llc 0x2734a127 llc_add_pack -EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x3ca35eed llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0x4e0cb528 llc_sap_open -EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x53c9a767 llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0x8ba47c57 llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0xa5d26c82 llc_sap_find -EXPORT_SYMBOL net/mac80211/mac80211 0x02166686 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x038c6d4d ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x0cbedfa5 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x21a02fd2 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x21a5a378 ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x245427c8 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0x270d6735 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x27d4bc6b __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x28193038 ieee80211_start_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x2b5ec8fc ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x2c748246 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x33968b2b ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x39c93887 ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x3a5a04b8 ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0x40b2504b ieee80211_csa_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0x45914a63 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x489b4259 ieee80211_tx_status_noskb -EXPORT_SYMBOL net/mac80211/mac80211 0x4a504dea ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x57062e47 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x57cf903b ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x58c54b29 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0x59d3579e ieee80211_stop_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x5eb574e8 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x5fba356f ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x601e89c7 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0x6204c68b ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x62a35ec1 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x67077fb3 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0x672fd590 ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x6940d343 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x69de096c ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x6cf05a20 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x6db97885 ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x6dc393f2 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x709d439a ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x71463f86 ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x72ea3ed2 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0x76b9ef28 ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x772754ef ieee80211_csa_update_counter -EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x78aebaa6 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x79ebb6a3 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0x8067b27e ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x88241d7b ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0x90bb950e ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0xa1878981 ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xa3459c6e ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0xa3d2a342 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xaa6883db ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xaec1ea0c rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xb1aaef91 ieee80211_get_key_tx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0xb3c6f52f ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xb3e5c2c5 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0xb582e1c0 ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0xb7227076 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0xbfac1266 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xc23b87d7 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xc3e8ab06 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xc5c7e0d0 ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0xc80e9e19 ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xcf62013b ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xcf99edc6 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0xd04a7892 wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xd1243335 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0xd15d677b ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0xd3980783 ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xd6846eae ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0xd7df3180 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xd893f655 ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xde5d1d39 rate_control_send_low -EXPORT_SYMBOL net/mac80211/mac80211 0xdea6db2d ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0xdfa527e6 ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xe0b923de ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0xe3272e91 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xe43b8e0a ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xe987b052 ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0xeb9bde5f ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xeccfb504 ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0xed0f3c28 ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xed5cccd0 ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xf4a0512a ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0xf4b8ebdd ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0xfbefe522 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac802154/mac802154 0x2b51e4a2 ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x3366ac70 ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x41002f0b ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x56c3abb3 ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x6717d84e ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x705c0f3b ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xa41b17fd ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0xd9400a9a ieee802154_xmit_complete -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2258cc5a register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x243e5534 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x355f2471 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x35c31f68 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x35cab1a5 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x71bb82f5 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x90e03928 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb4b1f4f1 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc66dc8f5 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc90e36ed register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcc86945b ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xed0071db ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xef7adad7 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfc277dfd ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x444adbf5 __nf_ct_ext_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xbb7a3a10 __nf_ct_ext_add_length -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xdc3ab292 nf_conntrack_untracked -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x312dffcc nf_xfrm_me_harder -EXPORT_SYMBOL net/netfilter/nf_nat 0x40ee3d93 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x8328b93a nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0xc4393e84 __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xd3c83aaa nf_nat_used_tuple -EXPORT_SYMBOL net/netfilter/nf_nat 0xeb7c76b5 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/x_tables 0x42b30e92 xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0x44518a96 xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x5ad92ef3 xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xa2550871 xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xb427026c xt_find_target -EXPORT_SYMBOL net/netfilter/x_tables 0xbd7d434c xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0xc54645ae xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xe8e093c1 xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0xebb9c766 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0xf300db27 xt_unregister_matches -EXPORT_SYMBOL net/nfc/hci/hci 0x0223ab25 nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x1ec15f5a nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x2e860567 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0x34c54241 nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0x3d699ac2 nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0x3e5ca35b nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x5133e5f4 nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0x52df9353 nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0x53d5789b nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x6f717c9f nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0x7ca061fa nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0x7f31ad34 nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x89181a14 nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xa4b3e8cd nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0xa7043ade nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0xad0130eb nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0xb2dc16af nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0xb570959b nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xbe9285ce nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0xc3a872f9 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0xdaf1d85d nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x01dafd4d nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x0946ef71 nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x120ad57e nci_get_conn_info_by_id -EXPORT_SYMBOL net/nfc/nci/nci 0x2ac9b72d nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0x40bc83a5 nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0x4544e98b nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0x5111e647 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0x678f7cbf nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x718d7de4 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0x7f60dd17 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0x805fd683 nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x8f1e35c7 nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0x95f5e722 nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0xb916e495 nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xb9626e16 nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xc3a99f0d nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0xc57974f4 nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0xc80833bb nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0xca3deaf9 nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0xdf2b72ed nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0xdf89fcbd nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0xe4331003 nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0xe7955799 nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xea45cfa8 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0xf51a6c29 nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0xf8092dfe nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0xf842e95c nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xfb8f11d7 nci_recv_frame -EXPORT_SYMBOL net/nfc/nfc 0x04092f94 nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x08ba1c14 nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0x0ab9d053 nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0x2d073c86 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0x33122b6e nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x39b8acf7 nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0x4f1ec2df nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0x7b6773db nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0x87f47429 nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0x8b143500 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0xa8970b05 nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0xabd6cdf1 nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0xb2190343 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0xb66255a0 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0xbdc983e3 nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0xc2d039c2 nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0xc693ed38 nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xd14b80c8 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0xd218dd19 nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0xd29aa870 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0xd7090743 nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0xe39bcf9b nfc_class -EXPORT_SYMBOL net/nfc/nfc 0xf4fb0521 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0xfc5b241e nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x112b67ee nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x3e766efe nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x713bb273 nfc_digital_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x918646e7 nfc_digital_free_device -EXPORT_SYMBOL net/phonet/phonet 0x61b799cc pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0x709e6478 pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0x73ecbfab phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0xad478098 pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0xb05ca378 phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0xb39ff15f phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0xd0b5b485 phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0xd3f05bb2 pn_sock_get_port -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x46a831cc rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x50385da9 rxrpc_kernel_is_data_last -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x580e4b96 rxrpc_kernel_intercept_rx_messages -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x58a65a51 rxrpc_kernel_reject_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x5cef9545 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x6837bd10 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x85449999 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x870da920 rxrpc_kernel_get_abort_code -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x917d1338 rxrpc_kernel_free_skb -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb63d7b89 rxrpc_kernel_get_error_number -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xbba749f2 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xda2bf040 rxrpc_kernel_accept_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe0b5ca44 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xeef7a3a3 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf9d0a3f0 rxrpc_kernel_data_delivered -EXPORT_SYMBOL net/sctp/sctp 0x2af8a13a sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x04c94067 gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x729a6cf7 gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xdb8b40d2 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/sunrpc 0x2754e301 xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0x354cd017 xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0xa53e464d svc_pool_stats_open -EXPORT_SYMBOL net/wimax/wimax 0xb6a87f97 wimax_reset -EXPORT_SYMBOL net/wimax/wimax 0xe235504a wimax_rfkill -EXPORT_SYMBOL net/wireless/cfg80211 0x03ea3b67 wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0x07966ae2 cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x07b18829 wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0x09a3465e cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x0c5a8b5e cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x1530c507 cfg80211_roamed_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x1675d8b9 cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x18469ed5 cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0x1b5528f5 cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x229dc8c8 cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0x2406c1d0 cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x2526b850 cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x27b6b83b cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0x29c4062d cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x2c8c73cf cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x2d8de7f2 ieee80211_data_from_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0x2db03130 cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x2dc01626 cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x30b685c4 cfg80211_report_obss_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x330b2eba cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x33be5b84 cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0x375ae85a cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0x38cac762 cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x3967be91 cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x3c1ef54e cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x3c40ba97 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x5093b029 __ieee80211_get_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x517439fe cfg80211_rx_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x52a7a788 cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x584f5232 regulatory_set_wiphy_regd_sync_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x5e240c41 freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0x5e481a52 cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x61323aeb wiphy_rfkill_stop_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x64fa89fb __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x650c1bb0 cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0x682c19be cfg80211_sched_scan_stopped_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6c62850a cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0x70c53e56 cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x71fa3d10 wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0x772a0dae cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x788b025f cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0x7893ab2f cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0x7b57d185 cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0x7c149d55 cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x813ef113 cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0x8443ff99 wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x8e2579a2 ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0x9188cd4e cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x941f030c __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x943b5d66 cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0x966ff54d ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x9d30c742 cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0x9ec40153 cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0xa1425906 ieee80211_channel_to_frequency -EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xa485f147 cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0xa4be62d9 cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0xa5f4121c cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0xa6ad8b23 cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0xa76d300d wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0xa8f09aeb cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0xaca517d5 cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0xaedda917 cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xb145caee cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0xb2389d8c wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0xb39f60ed ieee80211_data_to_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0xb48bcd87 cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0xb6fcd24d cfg80211_connect_result -EXPORT_SYMBOL net/wireless/cfg80211 0xb780bc35 ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0xb7a51090 cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xc09219de cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0xc1ec2bf9 cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0xc2d40907 cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0xc7f5e2a4 cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xcc61c6e4 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0xd68f9c1c cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0xd9ab85d1 cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0xdacf8686 regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xe1fdf509 __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xe23e654d regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0xe88eb867 cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xea43dd7c cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0xeb6d7c6c ieee80211_ie_split -EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xf0de4472 wiphy_rfkill_set_hw_state -EXPORT_SYMBOL net/wireless/cfg80211 0xf124257c cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xf9f7dac9 cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie -EXPORT_SYMBOL net/wireless/lib80211 0x097b160a lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x3a4db359 lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x6020b2e0 lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xd5dae180 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0xf16f271c lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0xf8924de5 lib80211_crypt_info_free -EXPORT_SYMBOL sound/ac97_bus 0xa54c51ac ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x7ddf19f4 snd_mixer_oss_ioctl_card -EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl -EXPORT_SYMBOL sound/core/seq/snd-seq 0x25175b58 snd_seq_kernel_client_enqueue_blocking -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6655a9f1 snd_seq_kernel_client_write_poll -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x884dfe2f snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x91a8cbed snd_seq_event_port_attach -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x9d80d161 snd_seq_device_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x072d978b snd_midi_event_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x13a17752 snd_midi_event_reset_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x2eed26bf snd_midi_event_no_status -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x4d5ca523 snd_midi_event_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x592f6e9b snd_midi_event_free -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xd7c7afcc snd_midi_event_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe60fb228 snd_midi_event_reset_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xecbde43c snd_midi_event_encode_byte -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xe01244f8 snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x04cf651d snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0x0d7ae82a snd_card_register -EXPORT_SYMBOL sound/core/snd 0x0da20c99 snd_device_free -EXPORT_SYMBOL sound/core/snd 0x1736cd6e snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program -EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer -EXPORT_SYMBOL sound/core/snd 0x194f5041 snd_power_wait -EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x1a94fbde snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0x1d7dfc3d snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0x2093f84b snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0x20f8b916 snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x2a69d7df snd_jack_report -EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0x2e18d0c4 snd_jack_new -EXPORT_SYMBOL sound/core/snd 0x33cf2fd8 snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0x34a6de8c snd_card_new -EXPORT_SYMBOL sound/core/snd 0x34de000d snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x54cd09fa snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0x56cb80e9 snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0x5d1081b4 snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0x5ee1727f snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0x602c96f0 copy_to_user_fromio -EXPORT_SYMBOL sound/core/snd 0x69bd209e snd_device_new -EXPORT_SYMBOL sound/core/snd 0x6c1a4f39 snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable -EXPORT_SYMBOL sound/core/snd 0x8140c7eb snd_device_register -EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0x8602e9ba snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0x89d3b35d snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x93d915d6 snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0x9644dce3 snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0x96c32a22 snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0x99901e10 snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0x9ad20aec _snd_ctl_add_slave -EXPORT_SYMBOL sound/core/snd 0x9ae2e879 snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0x9d977c37 snd_component_add -EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id -EXPORT_SYMBOL sound/core/snd 0xacf0a676 snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0xae09c843 snd_register_device -EXPORT_SYMBOL sound/core/snd 0xaf81aefd snd_card_free -EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb3d628df snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0xba06adaf snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0xc427caa1 snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0xc65a6707 snd_cards -EXPORT_SYMBOL sound/core/snd 0xce325afd snd_info_register -EXPORT_SYMBOL sound/core/snd 0xce3ca308 copy_from_user_toio -EXPORT_SYMBOL sound/core/snd 0xd8825c40 snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0xdee4d485 snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0xf044384d snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0xf0792ac1 snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0xf0f89512 snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0xf3e004ef snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0xfa427eaa snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0xfc237f5a snd_seq_root -EXPORT_SYMBOL sound/core/snd-hwdep 0x5e376e9d snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any -EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x0834a43f snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0x0becd577 snd_pcm_new_internal -EXPORT_SYMBOL sound/core/snd-pcm 0x105770b0 snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0x10ff6141 snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x241b0b1a snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0x25d0ecee snd_pcm_lib_mmap_iomem -EXPORT_SYMBOL sound/core/snd-pcm 0x3017313f snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x30cf38ee snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x36edb461 snd_dma_alloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x37ae6d4a snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0x37e99a8a snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x397567d4 snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x3b91f3af snd_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x3ee64de6 snd_pcm_lib_read -EXPORT_SYMBOL sound/core/snd-pcm 0x4cf1ad66 snd_pcm_lib_write -EXPORT_SYMBOL sound/core/snd-pcm 0x4d9b6d35 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL sound/core/snd-pcm 0x58805ca5 snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width -EXPORT_SYMBOL sound/core/snd-pcm 0x68be4561 snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x742c82c4 snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x7f67555a snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL sound/core/snd-pcm 0x84f0f7af snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0x85289043 snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0x85dc97d6 snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x88a88b16 snd_pcm_notify -EXPORT_SYMBOL sound/core/snd-pcm 0x8ece81d2 snd_pcm_hw_rule_noresample -EXPORT_SYMBOL sound/core/snd-pcm 0x8eebb97d snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0x9f72c013 snd_pcm_mmap_data -EXPORT_SYMBOL sound/core/snd-pcm 0xa2fbd9f4 snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL sound/core/snd-pcm 0xa748662e snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0xa8ef8e16 snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xade88e76 snd_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xb1d6586f snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xbc04e217 _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xbc2c65d5 snd_pcm_lib_readv -EXPORT_SYMBOL sound/core/snd-pcm 0xc21d35f7 snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xc3d88c22 snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0xcd71a1bb snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0xd1925678 snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0xd28cb0b1 snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0xd2ace546 snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xd8df46fb snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0xdafb1c96 snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0xdc06cf77 snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xddd3a3a6 snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0xdefdf078 snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0xe03ef1f1 snd_pcm_lib_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xe8eacb19 snd_pcm_limit_hw_rates -EXPORT_SYMBOL sound/core/snd-pcm 0xed7592ad snd_pcm_suspend -EXPORT_SYMBOL sound/core/snd-pcm 0xef447068 snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0xf2421f44 snd_pcm_lib_writev -EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1c84c51a snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x37162829 __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x41b9d935 snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x437bbc82 snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x494202b0 snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x51dc9aed snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x59c62633 snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x6038e796 snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0x753b415d snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x9baf17c7 snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0xa60d93c5 snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0xb6b78a40 __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe012230f snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0xedc0dc03 snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf1ea969d snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf3736ece snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf3ce7b6b snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf7cb6bd0 snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0xffee1981 snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-timer 0x24df0067 snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0x2df7d331 snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0x387fcc33 snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0x41bb32a0 snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0x5f181f29 snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0x623c0c72 snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0x62cc7a9b snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0x794d38b7 snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0x906052fe snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0xa09389c3 snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0xbf742c5d snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0xcd2087d3 snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0xd3554690 snd_timer_global_new -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xfae2e8ed snd_mpu401_uart_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x25780077 snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x354fbaa2 snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x3b0c67c3 snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa9508a84 snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xab05c4c5 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc083f32c snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd870fa88 snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xef165f0d snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf6e0a47e snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x06e08444 snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1aac228b snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x685d3696 snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6f7706d8 snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x74666e29 snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa59bbdbe snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc87841e3 snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe06be0d4 snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf40750a8 snd_vx_resume -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x13431555 amdtp_stream_start -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x17e57954 fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2cac4a9d amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x31acc2d1 amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3a8b222a amdtp_stream_stop -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3eae936d fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x42f77452 cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4c87b1e6 avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x523de0c1 amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x57c2ba39 cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5ddd246a snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5ee01869 fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x69d23e91 amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6e468f33 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x717606b0 fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x732e3603 amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7739b892 iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x807cb42c fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8533e317 iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x892c0959 amdtp_stream_pcm_pointer -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9555433e snd_fw_async_midi_port_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x99c6c1ee amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9e7350eb cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa0c63de2 avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa1355d37 avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbef7c91d fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc92fab83 amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd0d9b8bd cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd1145371 snd_fw_async_midi_port_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd5b196d4 cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd6ed9b3a fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xeec619d1 amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x2871abad snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x4e1e91b0 snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1f688f2f snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x25af5129 snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x43f31f1b snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x59523959 snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x66a45d21 snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7c71e57d snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x87bd4445 snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf21e3f9e snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x0a23ef28 snd_ak4117_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x1561c4fa snd_ak4117_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x3a185c93 snd_ak4117_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x7c4d5965 snd_ak4117_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xa860e542 snd_ak4117_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xb2bfc5ce snd_ak4117_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x14e30e84 snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x1fe2e626 snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xafa0ea63 snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xbc615330 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x297c28d6 snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x9587e972 snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x2ffbc6ca snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x4a032e03 snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x685f4b9f snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xa6948336 snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xbcf4607e snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xf3a753ba snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-i2c 0x0b1b33b1 snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0x3636b723 snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x45d7c2a1 snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0xa0322d72 snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xe56c3e54 snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0xeee30dd3 snd_i2c_bus_create -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x1e7e2b06 snd_sbmixer_suspend -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x24863d56 snd_sbmixer_add_ctl -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x26c1360e snd_sbdsp_get_byte -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x286bdaa2 snd_sbdsp_command -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x471332b7 snd_sbmixer_new -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x6eefa373 snd_sbmixer_resume -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x8d191ba8 snd_sbmixer_write -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x9433ce1d snd_sbdsp_create -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xc401d42f snd_sbmixer_read -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xe05af358 snd_sbdsp_reset -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x05b12695 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0ea29e35 snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1c31cd65 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1ecd7796 snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2a482f11 snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x30b809ea snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x34ceeb4a snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x49006980 snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4b2ffb2d snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x582b69d2 snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x88f6f46e snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8cb81167 snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9beb783f snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb29d0adc snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc5daa4c5 snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xca3902b1 snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd43ae3ec snd_ac97_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x0cb1d8ba snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x10bb634c snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1984fcc6 snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4c06bd20 snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x8c09fc04 snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x8e9cf5da snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb19a977e snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc53f00f8 snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd719f436 snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x2e0c5288 snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x4455444d snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x7659f091 snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x02cbe577 oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0c0ea8e5 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1f5b6f74 oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x33cbd9e3 oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x361f956c oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3c000de1 oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3ec3c65b oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x597aa143 oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5c1f1bb2 oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x70f982fc oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7b9ead94 oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa3cb3c1c oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa528e988 oxygen_pci_remove -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xad2ea122 oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xad707fd0 oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc1170fa7 oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd1881fe1 oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd2fb8b32 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd6e76689 oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe78b7392 oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xeb731bcc oxygen_pci_pm -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x416e2005 snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xa2838595 snd_trident_stop_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xbeaca5f2 snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xd8a8f0dd snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xdf8c2a7d snd_trident_write_voice_regs -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x47d8b083 tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x5f865896 tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/snd-soc-core 0x1861baa6 snd_soc_alloc_ac97_codec -EXPORT_SYMBOL sound/soundcore 0x04c41394 register_sound_special -EXPORT_SYMBOL sound/soundcore 0x1585299f register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x92e7e838 sound_class -EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0x9d094729 register_sound_midi -EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xcd33cadb register_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xea68592a register_sound_special_device -EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x000561f1 snd_emux_free -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x1ebf63a5 snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x60ba444c snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x6ebe37c5 snd_emux_new -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x8aeb38bf snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xb64e8b03 snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/snd-util-mem 0x00437200 snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0x1ed173e3 __snd_util_memblk_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0x2b4a4b28 snd_util_memhdr_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0x3a7f51e9 snd_util_memhdr_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0xa98db295 snd_util_mem_avail -EXPORT_SYMBOL sound/synth/snd-util-mem 0xd1a1752c snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0xeee3cdba __snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0xf4c23c44 __snd_util_mem_alloc -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x07f3d4f2 snd_usbmidi_create -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect -EXPORT_SYMBOL vmlinux 0x002d5989 mem_cgroup_end_page_stat -EXPORT_SYMBOL vmlinux 0x005658b1 noop_qdisc -EXPORT_SYMBOL vmlinux 0x00686148 dma_common_get_sgtable -EXPORT_SYMBOL vmlinux 0x006ac8d0 scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0x007f6945 unlock_buffer -EXPORT_SYMBOL vmlinux 0x00adc840 arp_xmit -EXPORT_SYMBOL vmlinux 0x00cc37b3 mb_cache_entry_insert -EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve -EXPORT_SYMBOL vmlinux 0x01135f48 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr -EXPORT_SYMBOL vmlinux 0x0118442a bdi_destroy -EXPORT_SYMBOL vmlinux 0x015b13b3 tcp_shutdown -EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer -EXPORT_SYMBOL vmlinux 0x017541fb remap_vmalloc_range_partial -EXPORT_SYMBOL vmlinux 0x017df685 vm_insert_pfn -EXPORT_SYMBOL vmlinux 0x019405de sk_stream_write_space -EXPORT_SYMBOL vmlinux 0x01adf0de i2c_transfer -EXPORT_SYMBOL vmlinux 0x01bd4b17 netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x01e3bb1f register_cdrom -EXPORT_SYMBOL vmlinux 0x01eec83c __skb_checksum -EXPORT_SYMBOL vmlinux 0x0205ec52 generic_setxattr -EXPORT_SYMBOL vmlinux 0x020cada5 udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0x0223e862 kernel_getsockname -EXPORT_SYMBOL vmlinux 0x0248a33d lock_sock_fast -EXPORT_SYMBOL vmlinux 0x025b1bb8 d_instantiate_unique -EXPORT_SYMBOL vmlinux 0x0262f8da netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table -EXPORT_SYMBOL vmlinux 0x02bd670c ata_print_version -EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string -EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact -EXPORT_SYMBOL vmlinux 0x02fbf0dd d_make_root -EXPORT_SYMBOL vmlinux 0x031fb72c of_get_pci_address -EXPORT_SYMBOL vmlinux 0x032b09b1 mach_ppa8548 -EXPORT_SYMBOL vmlinux 0x032fafd9 of_get_next_child -EXPORT_SYMBOL vmlinux 0x03345456 param_ops_byte -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x033684f8 netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x03559fe9 blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x035bee56 override_creds -EXPORT_SYMBOL vmlinux 0x0365938d pci_bus_put -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x036c3bdd mount_nodev -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x0381ec9f bio_copy_kern -EXPORT_SYMBOL vmlinux 0x03b9baae init_buffer -EXPORT_SYMBOL vmlinux 0x03e87181 fsnotify_init_mark -EXPORT_SYMBOL vmlinux 0x03ee1abe bio_integrity_prep -EXPORT_SYMBOL vmlinux 0x03ef5c8e xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x04074f48 ioremap -EXPORT_SYMBOL vmlinux 0x04141dd8 request_key_async_with_auxdata -EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg -EXPORT_SYMBOL vmlinux 0x042ba174 kunmap_high -EXPORT_SYMBOL vmlinux 0x042e656c padata_do_serial -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x046d24e0 sock_no_mmap -EXPORT_SYMBOL vmlinux 0x047f4d8e write_one_page -EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display -EXPORT_SYMBOL vmlinux 0x04afd4fb release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x04d96e9c netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol -EXPORT_SYMBOL vmlinux 0x04f1041d lockref_get -EXPORT_SYMBOL vmlinux 0x04f901b1 devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0x0510231d nf_nat_decode_session_hook -EXPORT_SYMBOL vmlinux 0x051798d5 genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range -EXPORT_SYMBOL vmlinux 0x051b7d14 bio_alloc_pages -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x0530dede _raw_write_trylock -EXPORT_SYMBOL vmlinux 0x05357cf5 tcf_register_action -EXPORT_SYMBOL vmlinux 0x056efe8b dev_queue_xmit -EXPORT_SYMBOL vmlinux 0x058835ea pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0x05a514a1 _insl_ns -EXPORT_SYMBOL vmlinux 0x05c2ce19 alloc_buffer_head -EXPORT_SYMBOL vmlinux 0x05d03efc scsi_host_lookup -EXPORT_SYMBOL vmlinux 0x05d53f91 vm_mmap -EXPORT_SYMBOL vmlinux 0x05e1c979 ppp_input_error -EXPORT_SYMBOL vmlinux 0x05e2040e scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0x05eaefc4 sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0x05ed05ba vme_dma_list_add -EXPORT_SYMBOL vmlinux 0x05f76fcb phy_find_first -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x0629482c key_invalidate -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x065c7184 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x066954d1 of_translate_address -EXPORT_SYMBOL vmlinux 0x0672caa3 dma_direct_ops -EXPORT_SYMBOL vmlinux 0x0675c7eb atomic64_cmpxchg -EXPORT_SYMBOL vmlinux 0x067ac8a6 gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx -EXPORT_SYMBOL vmlinux 0x068f3394 xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x06f528f6 sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x06f54c58 inet_release -EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn -EXPORT_SYMBOL vmlinux 0x07192b87 xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0x071ae0e4 swiotlb_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 -EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x074e9213 down_killable -EXPORT_SYMBOL vmlinux 0x07583a7e param_set_int -EXPORT_SYMBOL vmlinux 0x0758dfa3 __sb_end_write -EXPORT_SYMBOL vmlinux 0x07757ab0 phy_device_free -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07e74da9 scsi_host_put -EXPORT_SYMBOL vmlinux 0x07ec09e1 generic_update_time -EXPORT_SYMBOL vmlinux 0x07f3980f page_readlink -EXPORT_SYMBOL vmlinux 0x0807fdf4 netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x08351a01 proc_symlink -EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x084f1bbf file_open_root -EXPORT_SYMBOL vmlinux 0x08532747 give_up_console -EXPORT_SYMBOL vmlinux 0x0856b5de __scsi_print_sense -EXPORT_SYMBOL vmlinux 0x085abf56 writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x086d8cdd irq_stat -EXPORT_SYMBOL vmlinux 0x0873cc1f cfb_imageblit -EXPORT_SYMBOL vmlinux 0x0880aef2 fb_set_var -EXPORT_SYMBOL vmlinux 0x088a45c8 netdev_info -EXPORT_SYMBOL vmlinux 0x0890be1e audit_log -EXPORT_SYMBOL vmlinux 0x08caa5a3 md_update_sb -EXPORT_SYMBOL vmlinux 0x08dd2f4d __get_page_tail -EXPORT_SYMBOL vmlinux 0x08df9457 neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0x0911af87 pcim_pin_device -EXPORT_SYMBOL vmlinux 0x0914a5ab gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x09158098 __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x0936e942 pagevec_lookup_tag -EXPORT_SYMBOL vmlinux 0x094e4410 bioset_create_nobvec -EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key -EXPORT_SYMBOL vmlinux 0x095ad5c3 blk_queue_bounce -EXPORT_SYMBOL vmlinux 0x0963be1e pcie_set_readrq -EXPORT_SYMBOL vmlinux 0x09676b39 pci_remove_bus -EXPORT_SYMBOL vmlinux 0x097eee8d add_random_ready_callback -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x0999c3bf dev_remove_pack -EXPORT_SYMBOL vmlinux 0x09bbbb91 trace_print_symbols_seq_u64 -EXPORT_SYMBOL vmlinux 0x09bc7a00 elevator_exit -EXPORT_SYMBOL vmlinux 0x09c2915a ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0x09c3980d d_path -EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x09c67afb flex_array_get -EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x0a0b802e sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x0a10e703 abx500_get_register_page_interruptible -EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class -EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr -EXPORT_SYMBOL vmlinux 0x0a35bff6 key_type_keyring -EXPORT_SYMBOL vmlinux 0x0a373226 crc32_le_shift -EXPORT_SYMBOL vmlinux 0x0a39900d elv_rb_find -EXPORT_SYMBOL vmlinux 0x0a42363b max8925_set_bits -EXPORT_SYMBOL vmlinux 0x0a44730e done_path_create -EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell -EXPORT_SYMBOL vmlinux 0x0a579549 clk_add_alias -EXPORT_SYMBOL vmlinux 0x0a581a0e __napi_complete -EXPORT_SYMBOL vmlinux 0x0a65d0dd unregister_qdisc -EXPORT_SYMBOL vmlinux 0x0a7c6005 of_find_node_opts_by_path -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b2536ce input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x0b3d8a3f of_find_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init -EXPORT_SYMBOL vmlinux 0x0b4904d9 vc_cons -EXPORT_SYMBOL vmlinux 0x0b4aaeeb kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister -EXPORT_SYMBOL vmlinux 0x0b654e82 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x0b6f21f0 devm_request_resource -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0baea183 zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active -EXPORT_SYMBOL vmlinux 0x0bc1c818 jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bc6020a __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0x0bd71484 misc_deregister -EXPORT_SYMBOL vmlinux 0x0c082eff security_path_link -EXPORT_SYMBOL vmlinux 0x0c12e626 __debugger_bpt -EXPORT_SYMBOL vmlinux 0x0c35c8bd mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0x0c3da317 inet_frags_init -EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat -EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features -EXPORT_SYMBOL vmlinux 0x0c64793f xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x0c9b6089 nvram_get_size -EXPORT_SYMBOL vmlinux 0x0c9bc0b5 of_parse_phandle_with_args -EXPORT_SYMBOL vmlinux 0x0c9c6fc4 vfs_mkdir -EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0x0cfc1837 read_code -EXPORT_SYMBOL vmlinux 0x0d00824e netlink_ack -EXPORT_SYMBOL vmlinux 0x0d49d7cb qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x0d4f5fb6 pci_restore_state -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d5c4a0f mutex_unlock -EXPORT_SYMBOL vmlinux 0x0d5e629b bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0x0d5e64eb nvm_erase_ppa -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d629720 nf_log_unset -EXPORT_SYMBOL vmlinux 0x0d7a750a scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0x0d80fd5a scsi_cmd_get_serial -EXPORT_SYMBOL vmlinux 0x0d967601 skb_queue_head -EXPORT_SYMBOL vmlinux 0x0d9abc59 scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0x0d9e12d1 lwtunnel_cmp_encap -EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft -EXPORT_SYMBOL vmlinux 0x0dc0ace0 idr_find_slowpath -EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex -EXPORT_SYMBOL vmlinux 0x0dc7c679 ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0x0dc8577b del_random_ready_callback -EXPORT_SYMBOL vmlinux 0x0dcaec28 vm_insert_mixed -EXPORT_SYMBOL vmlinux 0x0dd1b9c6 __bread_gfp -EXPORT_SYMBOL vmlinux 0x0dd4cda4 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0x0dde7cc7 single_open -EXPORT_SYMBOL vmlinux 0x0dedd454 pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0x0df4f941 __inode_add_bytes -EXPORT_SYMBOL vmlinux 0x0df93650 tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0x0e2891b1 mmc_register_driver -EXPORT_SYMBOL vmlinux 0x0e3ce7e8 param_get_charp -EXPORT_SYMBOL vmlinux 0x0e50381b tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0x0e53a2cc pagevec_lookup -EXPORT_SYMBOL vmlinux 0x0e64aaae dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec -EXPORT_SYMBOL vmlinux 0x0e6e8eba sync_filesystem -EXPORT_SYMBOL vmlinux 0x0e8f30f6 _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0x0eaebffc __generic_file_fsync -EXPORT_SYMBOL vmlinux 0x0eaf451e hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ec7eca5 inet_sendpage -EXPORT_SYMBOL vmlinux 0x0ecebfc0 udp_disconnect -EXPORT_SYMBOL vmlinux 0x0edb4681 irq_to_desc -EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy -EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups -EXPORT_SYMBOL vmlinux 0x0efdb4e8 tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0x0f0b6429 __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x0f1ed5b0 open_check_o_direct -EXPORT_SYMBOL vmlinux 0x0f1f6343 devm_iounmap -EXPORT_SYMBOL vmlinux 0x0f2839f0 trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x0f28cb91 nvram_read_byte -EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec -EXPORT_SYMBOL vmlinux 0x0f5faa7e wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x0f69331d blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size -EXPORT_SYMBOL vmlinux 0x0f71b821 blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0x0f7217c1 make_bad_inode -EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x0f8069c0 blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x0fb2bd88 register_md_personality -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0ff81876 bio_split -EXPORT_SYMBOL vmlinux 0x100a7f09 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0x1011af2f sockfd_lookup -EXPORT_SYMBOL vmlinux 0x10307114 of_graph_get_remote_port -EXPORT_SYMBOL vmlinux 0x103d5d1a backlight_device_register -EXPORT_SYMBOL vmlinux 0x10412a41 ppp_register_compressor -EXPORT_SYMBOL vmlinux 0x10476670 dentry_open -EXPORT_SYMBOL vmlinux 0x1057d747 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0x105b05a4 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x106d84ec jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x109b7956 remove_proc_entry -EXPORT_SYMBOL vmlinux 0x10b676af dmam_pool_create -EXPORT_SYMBOL vmlinux 0x10c3c37f bdev_stack_limits -EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu -EXPORT_SYMBOL vmlinux 0x10f9ac2b blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x110c3d67 __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0x11145431 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0x1145067f param_ops_bint -EXPORT_SYMBOL vmlinux 0x11460153 jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0x11481f05 freeze_bdev -EXPORT_SYMBOL vmlinux 0x114ca5aa tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0x115554b5 free_task -EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn -EXPORT_SYMBOL vmlinux 0x116d674d fsnotify_add_mark -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x117f1f77 single_open_size -EXPORT_SYMBOL vmlinux 0x1182d83a cpuidle_disable -EXPORT_SYMBOL vmlinux 0x1187dc70 mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned -EXPORT_SYMBOL vmlinux 0x11ac6a97 complete_request_key -EXPORT_SYMBOL vmlinux 0x11b37047 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x11b7862c devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x11c3c7ed ps2_handle_ack -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin -EXPORT_SYMBOL vmlinux 0x11f88ed5 skb_orphan_partial -EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const -EXPORT_SYMBOL vmlinux 0x121b4e4b memremap -EXPORT_SYMBOL vmlinux 0x122125ab input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x123967ab dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x123c2213 iov_iter_kvec -EXPORT_SYMBOL vmlinux 0x1249506f fb_firmware_edid -EXPORT_SYMBOL vmlinux 0x1249cd2a param_ops_string -EXPORT_SYMBOL vmlinux 0x12505ecb tso_start -EXPORT_SYMBOL vmlinux 0x1264875c simple_transaction_set -EXPORT_SYMBOL vmlinux 0x129402a5 nvm_dev_dma_alloc -EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range -EXPORT_SYMBOL vmlinux 0x12b594f1 skb_clone_sk -EXPORT_SYMBOL vmlinux 0x12c49f72 arp_create -EXPORT_SYMBOL vmlinux 0x12c85662 netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc -EXPORT_SYMBOL vmlinux 0x12e25424 mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0x12fc8aa1 alloc_disk -EXPORT_SYMBOL vmlinux 0x13172e80 flush_tlb_page -EXPORT_SYMBOL vmlinux 0x1319449d secure_modules -EXPORT_SYMBOL vmlinux 0x13205536 deactivate_super -EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x13307fde vsscanf -EXPORT_SYMBOL vmlinux 0x13424434 page_address -EXPORT_SYMBOL vmlinux 0x134c40e3 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x1350ea7e eth_header_cache_update -EXPORT_SYMBOL vmlinux 0x13657ce3 unregister_shrinker -EXPORT_SYMBOL vmlinux 0x13773364 inode_set_bytes -EXPORT_SYMBOL vmlinux 0x1387dcd9 tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x13b2e6b8 fsnotify_put_group -EXPORT_SYMBOL vmlinux 0x13cbea95 km_state_notify -EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13de0c20 init_task -EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation -EXPORT_SYMBOL vmlinux 0x1407c6e7 kmap_prot -EXPORT_SYMBOL vmlinux 0x1408f5aa dev_change_carrier -EXPORT_SYMBOL vmlinux 0x1413e64e bio_integrity_advance -EXPORT_SYMBOL vmlinux 0x1419d1d6 mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0x1420b379 kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0x1431fbf3 block_commit_write -EXPORT_SYMBOL vmlinux 0x14621146 bioset_create -EXPORT_SYMBOL vmlinux 0x14738f9e swiotlb_sync_single_for_device -EXPORT_SYMBOL vmlinux 0x14827722 __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0x149f4c21 ___pskb_trim -EXPORT_SYMBOL vmlinux 0x14a69dd7 seq_printf -EXPORT_SYMBOL vmlinux 0x14ab56d2 iov_iter_copy_from_user_atomic -EXPORT_SYMBOL vmlinux 0x14c23e7e dmam_free_coherent -EXPORT_SYMBOL vmlinux 0x14c91f42 mach_p1023_rdb -EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x14d6e6a2 phys_mem_access_prot -EXPORT_SYMBOL vmlinux 0x14df6047 neigh_lookup -EXPORT_SYMBOL vmlinux 0x15049aef ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0x1527d762 vfs_statfs -EXPORT_SYMBOL vmlinux 0x15333b74 flush_old_exec -EXPORT_SYMBOL vmlinux 0x15373e35 of_find_all_nodes -EXPORT_SYMBOL vmlinux 0x153e0b18 devfreq_interval_update -EXPORT_SYMBOL vmlinux 0x154373f7 tcf_em_unregister -EXPORT_SYMBOL vmlinux 0x1548fdd3 i2c_master_send -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x1565e68e i2c_master_recv -EXPORT_SYMBOL vmlinux 0x1598cfe4 scsi_register_interface -EXPORT_SYMBOL vmlinux 0x159c6ade bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0x15a96210 request_key -EXPORT_SYMBOL vmlinux 0x15b79da9 dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15d3fd60 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x15d649ca ip_ct_attach -EXPORT_SYMBOL vmlinux 0x15de62ea pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0x15ea325a scsi_report_opcode -EXPORT_SYMBOL vmlinux 0x15f1084a md_flush_request -EXPORT_SYMBOL vmlinux 0x160236de pci_find_hose_for_OF_device -EXPORT_SYMBOL vmlinux 0x1605e352 inet_addr_type -EXPORT_SYMBOL vmlinux 0x161d0033 proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0x161ee677 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0x162a2f1d blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0x1630e88e ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0x1634d340 param_get_ullong -EXPORT_SYMBOL vmlinux 0x165024ab dump_align -EXPORT_SYMBOL vmlinux 0x16540bbc __cmpdi2 -EXPORT_SYMBOL vmlinux 0x16689ea4 kmap_high -EXPORT_SYMBOL vmlinux 0x1683a50b radix_tree_delete -EXPORT_SYMBOL vmlinux 0x168a53cf seq_escape -EXPORT_SYMBOL vmlinux 0x16989aaa netpoll_print_options -EXPORT_SYMBOL vmlinux 0x16db821e pcie_get_mps -EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16e7d7ee inode_sub_rsv_space -EXPORT_SYMBOL vmlinux 0x1702453e tty_free_termios -EXPORT_SYMBOL vmlinux 0x170a96b5 skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0x17400719 scmd_printk -EXPORT_SYMBOL vmlinux 0x1741b8e6 pci_domain_nr -EXPORT_SYMBOL vmlinux 0x17634c6c nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0x17648396 dev_base_lock -EXPORT_SYMBOL vmlinux 0x1768fb86 vme_irq_generate -EXPORT_SYMBOL vmlinux 0x177403d1 param_ops_ushort -EXPORT_SYMBOL vmlinux 0x1788f540 pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x17a8e6cf crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0x17aa156a __ucmpdi2 -EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator -EXPORT_SYMBOL vmlinux 0x17b1cf7d thaw_super -EXPORT_SYMBOL vmlinux 0x17beab60 unlock_new_inode -EXPORT_SYMBOL vmlinux 0x17c0bda3 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x17dba3fd xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x17dd449b netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0x17e28473 fsl_upm_run_pattern -EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip -EXPORT_SYMBOL vmlinux 0x17f53d7c of_mdio_parse_addr -EXPORT_SYMBOL vmlinux 0x1801cc7a serio_reconnect -EXPORT_SYMBOL vmlinux 0x18137482 of_graph_get_remote_port_parent -EXPORT_SYMBOL vmlinux 0x18173d48 pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0x1823ca14 kernel_param_unlock -EXPORT_SYMBOL vmlinux 0x182480b6 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken -EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0x1845fcae mach_qemu_e500 -EXPORT_SYMBOL vmlinux 0x1846ce22 get_cached_acl -EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask -EXPORT_SYMBOL vmlinux 0x18506ab1 param_set_invbool -EXPORT_SYMBOL vmlinux 0x18592331 input_grab_device -EXPORT_SYMBOL vmlinux 0x185cd88c netdev_features_change -EXPORT_SYMBOL vmlinux 0x186dbfb7 devm_gpio_request_one -EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc -EXPORT_SYMBOL vmlinux 0x188d5686 blk_mq_start_request -EXPORT_SYMBOL vmlinux 0x188d7d04 pci_pme_active -EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x189da3ae lwtunnel_state_alloc -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18e82fd8 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x1911dc3f unregister_console -EXPORT_SYMBOL vmlinux 0x19451e40 netif_wake_subqueue -EXPORT_SYMBOL vmlinux 0x196a50b5 jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19afb2c7 __generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x19ba1dc7 fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19c06822 wait_on_page_bit -EXPORT_SYMBOL vmlinux 0x19e8cad5 register_console -EXPORT_SYMBOL vmlinux 0x1a01bf88 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x1a025cfd sock_release -EXPORT_SYMBOL vmlinux 0x1a20b15a sk_net_capable -EXPORT_SYMBOL vmlinux 0x1a32e4ee param_ops_invbool -EXPORT_SYMBOL vmlinux 0x1a578347 blk_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x1a6557a2 serio_rescan -EXPORT_SYMBOL vmlinux 0x1a8380ee generic_key_instantiate -EXPORT_SYMBOL vmlinux 0x1aaed20a dquot_initialize -EXPORT_SYMBOL vmlinux 0x1ab06ac1 pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0x1af03515 pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0x1af62a99 panic_notifier_list -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b132009 rename_lock -EXPORT_SYMBOL vmlinux 0x1b13b740 inet_del_protocol -EXPORT_SYMBOL vmlinux 0x1b19e1ef qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0x1b1d687e tty_set_operations -EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents -EXPORT_SYMBOL vmlinux 0x1b3b6278 switch_mmu_context -EXPORT_SYMBOL vmlinux 0x1b3da57b lwtunnel_fill_encap -EXPORT_SYMBOL vmlinux 0x1b4ee44e uart_update_timeout -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b7df968 dmam_alloc_noncoherent -EXPORT_SYMBOL vmlinux 0x1b7e1cd0 __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug -EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip -EXPORT_SYMBOL vmlinux 0x1b921df6 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0x1b99d849 mmc_hw_reset -EXPORT_SYMBOL vmlinux 0x1bb1c7dc no_llseek -EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer -EXPORT_SYMBOL vmlinux 0x1bc4ff03 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0x1bca2b59 load_fp_state -EXPORT_SYMBOL vmlinux 0x1c2617fa sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0x1c42890b pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x1c48de8f __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0x1c73dcfe unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x1c79f153 textsearch_unregister -EXPORT_SYMBOL vmlinux 0x1c80de9c ip_send_check -EXPORT_SYMBOL vmlinux 0x1ca270fa kernel_bind -EXPORT_SYMBOL vmlinux 0x1cdcd75a swiotlb_map_sg_attrs -EXPORT_SYMBOL vmlinux 0x1cea3d27 iget5_locked -EXPORT_SYMBOL vmlinux 0x1d0df79c xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0x1d32db92 bio_init -EXPORT_SYMBOL vmlinux 0x1d6e62b0 get_task_io_context -EXPORT_SYMBOL vmlinux 0x1d707337 max8998_bulk_read -EXPORT_SYMBOL vmlinux 0x1d78da1c con_set_default_unimap -EXPORT_SYMBOL vmlinux 0x1d83d58a vme_irq_free -EXPORT_SYMBOL vmlinux 0x1daee28a percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0x1dc04bd7 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0x1dc6c7ca dquot_free_inode -EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1df2c879 dquot_transfer -EXPORT_SYMBOL vmlinux 0x1e142f13 __ip_dev_find -EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev -EXPORT_SYMBOL vmlinux 0x1e6543d8 dquot_commit_info -EXPORT_SYMBOL vmlinux 0x1e6bc242 __dev_get_by_name -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e779d1b sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0x1e785c7e sk_common_release -EXPORT_SYMBOL vmlinux 0x1e918a60 netdev_update_features -EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1ea3a617 __page_symlink -EXPORT_SYMBOL vmlinux 0x1eac49bf simple_dentry_operations -EXPORT_SYMBOL vmlinux 0x1eb9ea17 pci_enable_device -EXPORT_SYMBOL vmlinux 0x1ec08e47 phy_device_create -EXPORT_SYMBOL vmlinux 0x1ec483c2 local_flush_tlb_mm -EXPORT_SYMBOL vmlinux 0x1ecc7980 __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0x1ed67cf5 lwtunnel_encap_del_ops -EXPORT_SYMBOL vmlinux 0x1edd0d9b input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0x1ee946ce tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0x1ef38c86 tty_schedule_flip -EXPORT_SYMBOL vmlinux 0x1f065161 path_noexec -EXPORT_SYMBOL vmlinux 0x1f147f75 ppp_channel_index -EXPORT_SYMBOL vmlinux 0x1f2efedd genl_unregister_family -EXPORT_SYMBOL vmlinux 0x1f3df5d8 set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x1f48507e d_set_d_op -EXPORT_SYMBOL vmlinux 0x1f5784a4 register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x1f6a1e04 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0x1f7752dd bio_integrity_enabled -EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0x1f8456bc nvm_submit_ppa -EXPORT_SYMBOL vmlinux 0x1fa4ac30 qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0x1fb2040b pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fe472b7 generic_error_remove_page -EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag -EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x200671dd rtmsg_ifinfo -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x20127b0e framebuffer_release -EXPORT_SYMBOL vmlinux 0x2023243f padata_remove_cpu -EXPORT_SYMBOL vmlinux 0x20267b1d pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x203b4d4b mmc_remove_host -EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool -EXPORT_SYMBOL vmlinux 0x204e3111 generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x205275a0 tcf_exts_validate -EXPORT_SYMBOL vmlinux 0x206687ad cpm_muram_alloc_fixed -EXPORT_SYMBOL vmlinux 0x206b6529 sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x206c74ab __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq -EXPORT_SYMBOL vmlinux 0x208c6f4c send_sig_info -EXPORT_SYMBOL vmlinux 0x209e6327 scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20aac157 phy_drivers_register -EXPORT_SYMBOL vmlinux 0x20ae58d0 __tracepoint_fence_emit -EXPORT_SYMBOL vmlinux 0x20b79bc7 sock_no_getsockopt -EXPORT_SYMBOL vmlinux 0x20c0cd7b tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf -EXPORT_SYMBOL vmlinux 0x20d5f387 load_nls -EXPORT_SYMBOL vmlinux 0x20d85a91 inet_add_offload -EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x20f7a374 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x2146229a simple_fill_super -EXPORT_SYMBOL vmlinux 0x214d4370 blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0x214fafd8 neigh_direct_output -EXPORT_SYMBOL vmlinux 0x2167db87 nla_reserve -EXPORT_SYMBOL vmlinux 0x216e1b22 nf_log_packet -EXPORT_SYMBOL vmlinux 0x216f717b vfs_getattr -EXPORT_SYMBOL vmlinux 0x2184e738 __cleancache_put_page -EXPORT_SYMBOL vmlinux 0x218d124e xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0x21b0c72a elv_add_request -EXPORT_SYMBOL vmlinux 0x21bc32e3 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x21c335d9 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0x21cdd94c mount_bdev -EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set -EXPORT_SYMBOL vmlinux 0x21f19335 fence_remove_callback -EXPORT_SYMBOL vmlinux 0x21f3dc15 cpm_command -EXPORT_SYMBOL vmlinux 0x22054037 pagecache_write_end -EXPORT_SYMBOL vmlinux 0x2217daa8 napi_gro_receive -EXPORT_SYMBOL vmlinux 0x222054d2 __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x222f6207 __nla_reserve -EXPORT_SYMBOL vmlinux 0x22421749 touch_buffer -EXPORT_SYMBOL vmlinux 0x2250dd5c tcp_proc_register -EXPORT_SYMBOL vmlinux 0x2256fafa div64_u64_rem -EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits -EXPORT_SYMBOL vmlinux 0x226f7142 udp_set_csum -EXPORT_SYMBOL vmlinux 0x22755747 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint -EXPORT_SYMBOL vmlinux 0x2278e94b slhc_remember -EXPORT_SYMBOL vmlinux 0x22983c67 nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0x229e0046 __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x22ab2893 security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22dfdd06 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x22e0e2dc __dquot_free_space -EXPORT_SYMBOL vmlinux 0x22ed593e mmc_wait_for_app_cmd -EXPORT_SYMBOL vmlinux 0x22f9cbd7 nd_region_release_lane -EXPORT_SYMBOL vmlinux 0x230fbe77 fbcon_set_tileops -EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs -EXPORT_SYMBOL vmlinux 0x232528a1 security_file_permission -EXPORT_SYMBOL vmlinux 0x2334b68b vme_slave_request -EXPORT_SYMBOL vmlinux 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL vmlinux 0x2346f64c should_remove_suid -EXPORT_SYMBOL vmlinux 0x235e90f3 __wake_up_bit -EXPORT_SYMBOL vmlinux 0x2390c280 xfrm_state_update -EXPORT_SYMBOL vmlinux 0x239aa2af mmc_release_host -EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23bf5df7 km_is_alive -EXPORT_SYMBOL vmlinux 0x23c7b904 kmap_atomic_prot -EXPORT_SYMBOL vmlinux 0x23e1abc1 vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0x23ebe5e3 mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x23f2243d mempool_free -EXPORT_SYMBOL vmlinux 0x23f692d7 bdev_read_only -EXPORT_SYMBOL vmlinux 0x23f980d0 nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x240bc952 ps2_end_command -EXPORT_SYMBOL vmlinux 0x241c4064 tcf_action_exec -EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x2458b9f7 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x245b134f uart_resume_port -EXPORT_SYMBOL vmlinux 0x247ddb98 crypto_sha512_update -EXPORT_SYMBOL vmlinux 0x247debb2 cdrom_check_events -EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf -EXPORT_SYMBOL vmlinux 0x2484955f __invalidate_device -EXPORT_SYMBOL vmlinux 0x24855cba __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x24856730 jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x249d4aff __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x24a5b4ee nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0x24c08a1f netpoll_cleanup -EXPORT_SYMBOL vmlinux 0x24c7f5ef genphy_config_aneg -EXPORT_SYMBOL vmlinux 0x24d8f8ec default_llseek -EXPORT_SYMBOL vmlinux 0x24f00380 ida_init -EXPORT_SYMBOL vmlinux 0x24f82fac rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function -EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x250e3c39 tcp_init_sock -EXPORT_SYMBOL vmlinux 0x251b4472 __breadahead -EXPORT_SYMBOL vmlinux 0x251b79f8 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0x251e7c3b cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register -EXPORT_SYMBOL vmlinux 0x252c45e4 unlink_framebuffer -EXPORT_SYMBOL vmlinux 0x253b5a64 __blk_end_request_cur -EXPORT_SYMBOL vmlinux 0x254cf13a generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x2552a141 __free_pages -EXPORT_SYMBOL vmlinux 0x25540afa blk_queue_end_tag -EXPORT_SYMBOL vmlinux 0x255554aa pci_disable_link_state -EXPORT_SYMBOL vmlinux 0x256c5cd5 napi_complete_done -EXPORT_SYMBOL vmlinux 0x256cb99c of_clk_get_by_name -EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string -EXPORT_SYMBOL vmlinux 0x2575a115 tcp_proc_unregister -EXPORT_SYMBOL vmlinux 0x25769068 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x257ca3a5 nf_getsockopt -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x25873bb1 agp_backend_release -EXPORT_SYMBOL vmlinux 0x259c8d0e pci_map_rom -EXPORT_SYMBOL vmlinux 0x25a3f89a netdev_master_upper_dev_link_private -EXPORT_SYMBOL vmlinux 0x25a6991d __skb_gso_segment -EXPORT_SYMBOL vmlinux 0x25b6cbdd mmc_fixup_device -EXPORT_SYMBOL vmlinux 0x25d2179a pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0x25dd40e4 __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25f3bd2e atomic64_xchg -EXPORT_SYMBOL vmlinux 0x260bb131 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x26217e3f scsi_print_sense -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x263df8d6 seq_read -EXPORT_SYMBOL vmlinux 0x26427f83 tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x26477c07 __vmalloc -EXPORT_SYMBOL vmlinux 0x26482a8e agp_generic_create_gatt_table -EXPORT_SYMBOL vmlinux 0x264be4d1 mmc_can_reset -EXPORT_SYMBOL vmlinux 0x26503c4e of_mm_gpiochip_add -EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux -EXPORT_SYMBOL vmlinux 0x266ff04f __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0x26b39364 tcp_prequeue -EXPORT_SYMBOL vmlinux 0x26b760c4 slhc_init -EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0x26bd2ff4 lwtunnel_input -EXPORT_SYMBOL vmlinux 0x26cb01a8 blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min -EXPORT_SYMBOL vmlinux 0x26f4a3a5 msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0x270950b0 sock_no_accept -EXPORT_SYMBOL vmlinux 0x2734be4a __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0x273a811e bio_unmap_user -EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0x2771d7ff ida_get_new_above -EXPORT_SYMBOL vmlinux 0x27730a8e eth_gro_complete -EXPORT_SYMBOL vmlinux 0x277d3f2c simple_setattr -EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x279123ab end_buffer_async_write -EXPORT_SYMBOL vmlinux 0x27b77dd9 dcache_dir_open -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27c0ee84 agp_allocate_memory -EXPORT_SYMBOL vmlinux 0x27c99836 inet_frags_fini -EXPORT_SYMBOL vmlinux 0x27cde7d1 proc_create_mount_point -EXPORT_SYMBOL vmlinux 0x27d5f161 lookup_bdev -EXPORT_SYMBOL vmlinux 0x27e1a049 printk -EXPORT_SYMBOL vmlinux 0x27edccef set_binfmt -EXPORT_SYMBOL vmlinux 0x28058c31 module_layout -EXPORT_SYMBOL vmlinux 0x2809de8b tcp_proto_cgroup -EXPORT_SYMBOL vmlinux 0x280c72ea netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0x28132ab6 get_acl -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x28196799 neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0x28373fee param_get_long -EXPORT_SYMBOL vmlinux 0x28377845 seq_open_private -EXPORT_SYMBOL vmlinux 0x28666dee pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0x288c1893 devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0x2893f1d1 task_tgid_nr_ns -EXPORT_SYMBOL vmlinux 0x289db3ee idr_remove -EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x28a7beba __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x28d4751c ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x28e6ce45 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x28ebedbf simple_lookup -EXPORT_SYMBOL vmlinux 0x28f784f5 __debugger_break_match -EXPORT_SYMBOL vmlinux 0x290430de skb_pad -EXPORT_SYMBOL vmlinux 0x29365558 of_find_property -EXPORT_SYMBOL vmlinux 0x2936c091 kern_path -EXPORT_SYMBOL vmlinux 0x294963f8 pci_pme_capable -EXPORT_SYMBOL vmlinux 0x2949e165 dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0x295e95c1 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0x296b4f13 rt6_lookup -EXPORT_SYMBOL vmlinux 0x29aa33f9 devm_gpio_request -EXPORT_SYMBOL vmlinux 0x29ac98a8 page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x29f5c381 cdrom_open -EXPORT_SYMBOL vmlinux 0x29fdda53 kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0x2a24c496 posix_acl_valid -EXPORT_SYMBOL vmlinux 0x2a2ac62e __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2a387c9d i2c_use_client -EXPORT_SYMBOL vmlinux 0x2a3f6d64 __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0x2a42366f ip6_expire_frag_queue -EXPORT_SYMBOL vmlinux 0x2a4f31f7 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0x2a6fc902 blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0x2a8653f8 padata_start -EXPORT_SYMBOL vmlinux 0x2a9208ef powerpc_debugfs_root -EXPORT_SYMBOL vmlinux 0x2a968433 blk_rq_set_block_pc -EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp -EXPORT_SYMBOL vmlinux 0x2aa1d2d2 ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0x2aa6ce53 alloc_disk_node -EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy -EXPORT_SYMBOL vmlinux 0x2ac8adea skb_set_owner_w -EXPORT_SYMBOL vmlinux 0x2aceda72 sync_blockdev -EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat -EXPORT_SYMBOL vmlinux 0x2ae02a76 input_set_keycode -EXPORT_SYMBOL vmlinux 0x2af665ab xfrm4_rcv_cb -EXPORT_SYMBOL vmlinux 0x2af6f792 blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0x2b00f0e5 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x2b100792 pcim_iounmap -EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 -EXPORT_SYMBOL vmlinux 0x2b31d8d9 param_set_uint -EXPORT_SYMBOL vmlinux 0x2b4ea2ca md_cluster_ops -EXPORT_SYMBOL vmlinux 0x2b8455bb blk_queue_start_tag -EXPORT_SYMBOL vmlinux 0x2b947ea0 max8998_write_reg -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2ba39530 serio_close -EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency -EXPORT_SYMBOL vmlinux 0x2bc1e9aa dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x2bda517e mutex_lock_killable -EXPORT_SYMBOL vmlinux 0x2be0f12d dql_completed -EXPORT_SYMBOL vmlinux 0x2be1c3ea skb_seq_read -EXPORT_SYMBOL vmlinux 0x2be2244a blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0x2bf85175 tcf_em_register -EXPORT_SYMBOL vmlinux 0x2bf87f66 __register_chrdev -EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c441db7 ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0x2c62cfcb bdi_setup_and_register -EXPORT_SYMBOL vmlinux 0x2c6ae18c lease_modify -EXPORT_SYMBOL vmlinux 0x2c7b1fca down_timeout -EXPORT_SYMBOL vmlinux 0x2c959051 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x2ca23f69 phy_connect -EXPORT_SYMBOL vmlinux 0x2cd5e37e mpage_writepages -EXPORT_SYMBOL vmlinux 0x2cdbfc9b tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0x2ce95fa3 phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0x2cf7d5e7 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d153c1a of_gpio_simple_xlate -EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d37342e cpu_online_mask -EXPORT_SYMBOL vmlinux 0x2d5691e2 kern_path_create -EXPORT_SYMBOL vmlinux 0x2d690243 generic_listxattr -EXPORT_SYMBOL vmlinux 0x2d7a9fe6 jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0x2dce60a8 bio_add_pc_page -EXPORT_SYMBOL vmlinux 0x2dd17e8b nd_device_register -EXPORT_SYMBOL vmlinux 0x2de305f2 netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0x2e06b9b5 ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0x2e11e21d phy_stop -EXPORT_SYMBOL vmlinux 0x2e1b1660 generic_permission -EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put -EXPORT_SYMBOL vmlinux 0x2e22102a rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0x2e23babf sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x2e2ab9de netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies -EXPORT_SYMBOL vmlinux 0x2e2dc3aa __tracepoint_fence_annotate_wait_on -EXPORT_SYMBOL vmlinux 0x2e478cd8 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0x2e52bfdd xfrm_state_add -EXPORT_SYMBOL vmlinux 0x2e77953b phy_get_eee_err -EXPORT_SYMBOL vmlinux 0x2e8d9e20 sock_alloc_file -EXPORT_SYMBOL vmlinux 0x2e94246a __cleancache_get_page -EXPORT_SYMBOL vmlinux 0x2ea073fb generic_ro_fops -EXPORT_SYMBOL vmlinux 0x2ea585b9 pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0x2eabed27 agp_generic_free_by_type -EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x2ee64d3c sock_rfree -EXPORT_SYMBOL vmlinux 0x2ee9e6e9 register_key_type -EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0x2ef70ead xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0x2ef7fe33 generic_file_mmap -EXPORT_SYMBOL vmlinux 0x2f032fa2 of_find_node_by_name -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource -EXPORT_SYMBOL vmlinux 0x2f1505e3 copy_from_iter -EXPORT_SYMBOL vmlinux 0x2f16d259 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag -EXPORT_SYMBOL vmlinux 0x2f5f2a57 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0x2f6c6ce2 of_find_backlight_by_node -EXPORT_SYMBOL vmlinux 0x2f7104fc icmp_send -EXPORT_SYMBOL vmlinux 0x2f73bfc2 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0x2f75d92f mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0x2faf5388 dev_mc_init -EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fc3821e fb_show_logo -EXPORT_SYMBOL vmlinux 0x2fcef3b3 tty_unregister_device -EXPORT_SYMBOL vmlinux 0x2fd209c6 nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0x2fd61ff1 jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2ff29f29 seq_putc -EXPORT_SYMBOL vmlinux 0x300f0ab2 kset_register -EXPORT_SYMBOL vmlinux 0x30164629 sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command -EXPORT_SYMBOL vmlinux 0x302ff41b mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0x3032d9bd sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0x303356c1 devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0x3035610c request_firmware -EXPORT_SYMBOL vmlinux 0x303f01f5 swiotlb_unmap_sg -EXPORT_SYMBOL vmlinux 0x305dcfe1 __frontswap_load -EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x30a2b2ba sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30b8b35c cpu_to_chip_id -EXPORT_SYMBOL vmlinux 0x30dbfed4 pci_enable_msi_range -EXPORT_SYMBOL vmlinux 0x30e13fc1 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0x30ea7c85 scsi_unregister -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x310917fe sort -EXPORT_SYMBOL vmlinux 0x3112ab22 cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0x312694c2 wait_for_key_construction -EXPORT_SYMBOL vmlinux 0x312919fd __serio_register_port -EXPORT_SYMBOL vmlinux 0x31380354 getrawmonotonic64 -EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present -EXPORT_SYMBOL vmlinux 0x3147857d default_red -EXPORT_SYMBOL vmlinux 0x31581ef9 pci_claim_resource -EXPORT_SYMBOL vmlinux 0x31625170 tcp_splice_read -EXPORT_SYMBOL vmlinux 0x3173ff92 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear -EXPORT_SYMBOL vmlinux 0x3191f109 __krealloc -EXPORT_SYMBOL vmlinux 0x31a6c821 tty_mutex -EXPORT_SYMBOL vmlinux 0x31a7e0c9 generic_fillattr -EXPORT_SYMBOL vmlinux 0x31a9700e pci_disable_msix -EXPORT_SYMBOL vmlinux 0x31ca5f10 sock_kfree_s -EXPORT_SYMBOL vmlinux 0x31cd5c80 __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x31e49f6f mount_subtree -EXPORT_SYMBOL vmlinux 0x31f0bb78 __kmap_atomic_idx -EXPORT_SYMBOL vmlinux 0x320ae5dd netif_carrier_on -EXPORT_SYMBOL vmlinux 0x322f2b38 inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x323391ab serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0x323b23c4 sg_miter_start -EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src -EXPORT_SYMBOL vmlinux 0x326ac0bc i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0x3279b80a fget -EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy -EXPORT_SYMBOL vmlinux 0x328c727c mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0x32a66dbf fb_get_mode -EXPORT_SYMBOL vmlinux 0x32b33c89 fixed_phy_update_state -EXPORT_SYMBOL vmlinux 0x32be1286 setattr_copy -EXPORT_SYMBOL vmlinux 0x32c2f714 kfree_skb -EXPORT_SYMBOL vmlinux 0x32cf4f1e dquot_destroy -EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x32fca408 pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0x330803f0 i2c_register_driver -EXPORT_SYMBOL vmlinux 0x3314aa66 lock_rename -EXPORT_SYMBOL vmlinux 0x332438cb xfrm_garbage_collect -EXPORT_SYMBOL vmlinux 0x33396ee4 inet6_del_protocol -EXPORT_SYMBOL vmlinux 0x333f7ffe generic_make_request -EXPORT_SYMBOL vmlinux 0x3341e5a7 inet_add_protocol -EXPORT_SYMBOL vmlinux 0x334cf83b del_gendisk -EXPORT_SYMBOL vmlinux 0x3361d5ba nobh_writepage -EXPORT_SYMBOL vmlinux 0x337ae587 blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0x337ee4d8 dev_addr_init -EXPORT_SYMBOL vmlinux 0x3382df37 submit_bio_wait -EXPORT_SYMBOL vmlinux 0x3393f86a dev_crit -EXPORT_SYMBOL vmlinux 0x33986132 dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0x33ada0dc jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page -EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x33cfde9d tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x33d9f9ff blk_run_queue_async -EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x33dc1210 jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0x33eb2823 dev_mc_unsync -EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x33f66cd7 devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x3408b165 devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0x3425d2dd ihold -EXPORT_SYMBOL vmlinux 0x34324518 cdrom_media_changed -EXPORT_SYMBOL vmlinux 0x343e43d0 dev_uc_flush -EXPORT_SYMBOL vmlinux 0x344adbd5 init_cdrom_command -EXPORT_SYMBOL vmlinux 0x34575445 tty_port_close_end -EXPORT_SYMBOL vmlinux 0x3463f5eb param_get_uint -EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin -EXPORT_SYMBOL vmlinux 0x347013de nla_validate -EXPORT_SYMBOL vmlinux 0x347d5fcd xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34b3ffe0 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x34bd6d1a tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0x34bfdd2a sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x34dd2bb7 sock_init_data -EXPORT_SYMBOL vmlinux 0x34e82963 pci_choose_state -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x34fa2e67 vlan_vid_del -EXPORT_SYMBOL vmlinux 0x34fafc4f rtnl_create_link -EXPORT_SYMBOL vmlinux 0x3513f20b blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x352246a4 pci_read_vpd -EXPORT_SYMBOL vmlinux 0x35310f34 lwtunnel_build_state -EXPORT_SYMBOL vmlinux 0x353de98f cmdline_parts_parse -EXPORT_SYMBOL vmlinux 0x354b5283 unlock_page -EXPORT_SYMBOL vmlinux 0x354dbf6b poll_initwait -EXPORT_SYMBOL vmlinux 0x35519874 inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x355352fe textsearch_prepare -EXPORT_SYMBOL vmlinux 0x355e613e __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x355f3309 tcp_enter_memory_pressure -EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x359846a3 path_nosuid -EXPORT_SYMBOL vmlinux 0x359ebfbf tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35abba49 get_user_pages -EXPORT_SYMBOL vmlinux 0x35b3f03a mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0x35b93973 mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0x35eac7b2 bio_add_page -EXPORT_SYMBOL vmlinux 0x35fe7b45 ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x360366d8 xfrm_find_acq -EXPORT_SYMBOL vmlinux 0x36072855 mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0x361530cf unregister_framebuffer -EXPORT_SYMBOL vmlinux 0x3618cb2d ida_destroy -EXPORT_SYMBOL vmlinux 0x362155f3 nvm_erase_blk -EXPORT_SYMBOL vmlinux 0x36243a10 phy_start_interrupts -EXPORT_SYMBOL vmlinux 0x3632a02a abx500_get_chip_id -EXPORT_SYMBOL vmlinux 0x36457428 nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0x3660ce55 rtnl_unicast -EXPORT_SYMBOL vmlinux 0x366f6d27 idr_destroy -EXPORT_SYMBOL vmlinux 0x367ba856 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x367c2cea udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0x367ee275 md_integrity_register -EXPORT_SYMBOL vmlinux 0x36b0e732 try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc -EXPORT_SYMBOL vmlinux 0x36c7a91b i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0x36fdda67 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x371d2130 check_legacy_ioport -EXPORT_SYMBOL vmlinux 0x373e2298 dev_get_by_index -EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x374e6af9 truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0x37532a52 downgrade_write -EXPORT_SYMBOL vmlinux 0x37547d8a blk_start_queue -EXPORT_SYMBOL vmlinux 0x377cf0fd clk_get -EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x37b13ec3 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37d245f0 genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0x37d689a2 padata_unregister_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x37e0153d flex_array_prealloc -EXPORT_SYMBOL vmlinux 0x37e4fc76 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 -EXPORT_SYMBOL vmlinux 0x37f5e7fd tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x380ace2f nd_integrity_init -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x381ccc13 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x383ed2c5 pci_request_regions -EXPORT_SYMBOL vmlinux 0x384f6067 dev_disable_lro -EXPORT_SYMBOL vmlinux 0x386f8fa0 cdrom_mode_select -EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x389377d6 iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0x389442d9 blk_alloc_queue -EXPORT_SYMBOL vmlinux 0x38973ab4 ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x38a1547d of_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list -EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38b825d1 idr_replace -EXPORT_SYMBOL vmlinux 0x38bed315 skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0x38f584c3 ip_setsockopt -EXPORT_SYMBOL vmlinux 0x38fb9933 tty_std_termios -EXPORT_SYMBOL vmlinux 0x393515d6 genphy_suspend -EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x393f1682 d_find_alias -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x395dc819 mach_c293_pcie -EXPORT_SYMBOL vmlinux 0x3974669a uart_get_divisor -EXPORT_SYMBOL vmlinux 0x39958a21 touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x39a9a6c3 dev_get_stats -EXPORT_SYMBOL vmlinux 0x39ae2d4b param_ops_charp -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39c08721 kobject_set_name -EXPORT_SYMBOL vmlinux 0x39cdf63c wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0x39d5f47b of_match_device -EXPORT_SYMBOL vmlinux 0x39e4012e write_inode_now -EXPORT_SYMBOL vmlinux 0x39e63736 pci_save_state -EXPORT_SYMBOL vmlinux 0x39f2e1d5 filp_close -EXPORT_SYMBOL vmlinux 0x3a052bd8 skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0x3a1098a2 devm_memunmap -EXPORT_SYMBOL vmlinux 0x3a18f6fc set_user_nice -EXPORT_SYMBOL vmlinux 0x3a1ac054 set_normalized_timespec64 -EXPORT_SYMBOL vmlinux 0x3a1b81d6 agp_generic_mask_memory -EXPORT_SYMBOL vmlinux 0x3a400fb5 simple_open -EXPORT_SYMBOL vmlinux 0x3a685915 __seq_open_private -EXPORT_SYMBOL vmlinux 0x3a7bfa93 cfb_fillrect -EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region -EXPORT_SYMBOL vmlinux 0x3aa72cb8 vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0x3aad2ba7 uart_match_port -EXPORT_SYMBOL vmlinux 0x3ae48f46 md_set_array_sectors -EXPORT_SYMBOL vmlinux 0x3af074ca blk_queue_prep_rq -EXPORT_SYMBOL vmlinux 0x3afa7bb0 __genl_register_family -EXPORT_SYMBOL vmlinux 0x3b094191 key_alloc -EXPORT_SYMBOL vmlinux 0x3b235d16 key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0x3b3e7249 devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0x3b4317a4 __ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x3b4fe5c8 truncate_pagecache -EXPORT_SYMBOL vmlinux 0x3b615a21 wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0x3b63624f __get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b6ad1e7 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x3b96894d netlink_net_capable -EXPORT_SYMBOL vmlinux 0x3bc98dfe pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0x3be64f92 i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x3be9802a d_instantiate -EXPORT_SYMBOL vmlinux 0x3beafdf7 __vfs_write -EXPORT_SYMBOL vmlinux 0x3bfca69f pci_dev_driver -EXPORT_SYMBOL vmlinux 0x3c03f5db skb_insert -EXPORT_SYMBOL vmlinux 0x3c0ae0a0 devm_ioremap_nocache -EXPORT_SYMBOL vmlinux 0x3c2fe605 blk_queue_init_tags -EXPORT_SYMBOL vmlinux 0x3c3d0a78 nf_unregister_hooks -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c4a1f5a vme_dma_list_free -EXPORT_SYMBOL vmlinux 0x3c59c712 i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0x3c652b24 proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull -EXPORT_SYMBOL vmlinux 0x3c85b364 of_get_address -EXPORT_SYMBOL vmlinux 0x3c902424 netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0x3ca9e24a pm860x_set_bits -EXPORT_SYMBOL vmlinux 0x3cb2c937 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0x3cb3931b sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x3cc4b0dc lg_lock_init -EXPORT_SYMBOL vmlinux 0x3cce04c9 generic_write_checks -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3d1e50e9 pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0x3d216838 __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x3d301402 i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x3d35670b read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0x3d4a2833 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x3d526f28 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x3d850e7e set_bh_page -EXPORT_SYMBOL vmlinux 0x3d97dcd5 mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0x3d9dee45 get_thermal_instance -EXPORT_SYMBOL vmlinux 0x3dc02a4e flex_array_free_parts -EXPORT_SYMBOL vmlinux 0x3dcaeee7 locks_copy_lock -EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3de0ccbe mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e195624 sock_no_sendpage -EXPORT_SYMBOL vmlinux 0x3e1eefd7 kill_fasync -EXPORT_SYMBOL vmlinux 0x3e63a4df pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0x3e6aafb6 pci_match_id -EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource -EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get -EXPORT_SYMBOL vmlinux 0x3e985822 key_reject_and_link -EXPORT_SYMBOL vmlinux 0x3e9eb1ac __dax_fault -EXPORT_SYMBOL vmlinux 0x3ea2a196 inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0x3eb1515a sb_set_blocksize -EXPORT_SYMBOL vmlinux 0x3ebb4a89 security_path_rename -EXPORT_SYMBOL vmlinux 0x3ed0cea8 neigh_app_ns -EXPORT_SYMBOL vmlinux 0x3ed26525 dev_trans_start -EXPORT_SYMBOL vmlinux 0x3eeb709e inode_reclaim_rsv_space -EXPORT_SYMBOL vmlinux 0x3efff90e dev_addr_add -EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep -EXPORT_SYMBOL vmlinux 0x3f1eb247 fb_prepare_logo -EXPORT_SYMBOL vmlinux 0x3f1fe3b8 jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x3f220d88 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x3f2d4447 scm_fp_dup -EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f616ce2 queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0x3f7a21d9 uart_suspend_port -EXPORT_SYMBOL vmlinux 0x3fb1cf71 proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x3fd9d3e4 phy_connect_direct -EXPORT_SYMBOL vmlinux 0x3fe0d1c0 slhc_free -EXPORT_SYMBOL vmlinux 0x3febd529 i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0x3fec048f sg_next -EXPORT_SYMBOL vmlinux 0x3ff8e495 lg_local_unlock_cpu -EXPORT_SYMBOL vmlinux 0x401859bb vfs_rmdir -EXPORT_SYMBOL vmlinux 0x401b4ed7 fsnotify_get_group -EXPORT_SYMBOL vmlinux 0x4022142f __blk_end_request -EXPORT_SYMBOL vmlinux 0x402b8281 __request_module -EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev -EXPORT_SYMBOL vmlinux 0x40399e4c pci_dev_put -EXPORT_SYMBOL vmlinux 0x4056aeb3 unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump -EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds -EXPORT_SYMBOL vmlinux 0x40623544 tty_hangup -EXPORT_SYMBOL vmlinux 0x406d8a18 inet6_bind -EXPORT_SYMBOL vmlinux 0x406ddab2 udp_prot -EXPORT_SYMBOL vmlinux 0x4079d40b scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x4083c6f8 md_done_sync -EXPORT_SYMBOL vmlinux 0x40958bbd blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x409ab9ed zero_fill_bio -EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x40a2d1dd dm_table_get_size -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0x40c3f909 __nla_put -EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40d7f0df nvm_register -EXPORT_SYMBOL vmlinux 0x40dc15b6 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0x40f1ad10 tb_ticks_per_jiffy -EXPORT_SYMBOL vmlinux 0x41131fd4 of_parse_phandle -EXPORT_SYMBOL vmlinux 0x4130b8c3 inet6_unregister_icmp_sender -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x4159c38f ioremap_wc -EXPORT_SYMBOL vmlinux 0x416c171f mount_ns -EXPORT_SYMBOL vmlinux 0x41862ad4 vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x419ad090 pci_unregister_driver -EXPORT_SYMBOL vmlinux 0x41c7030f __vfs_read -EXPORT_SYMBOL vmlinux 0x41dd9d96 try_module_get -EXPORT_SYMBOL vmlinux 0x41e47bda nvm_register_mgr -EXPORT_SYMBOL vmlinux 0x41f2bb31 of_root -EXPORT_SYMBOL vmlinux 0x41fe1d0a dup_iter -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x42370283 __break_lease -EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x424bee26 __frontswap_store -EXPORT_SYMBOL vmlinux 0x424c2a77 scsi_print_result -EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force -EXPORT_SYMBOL vmlinux 0x4297e537 __inet_hash -EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x42a8cfb5 pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0x42f7cfe3 dst_init -EXPORT_SYMBOL vmlinux 0x42fce228 kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0x4300c3f9 phy_write_mmd_indirect -EXPORT_SYMBOL vmlinux 0x43028d17 xfrm_lookup -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x431d65a7 i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0x431f3a7d dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0x4324999f pci_lost_interrupt -EXPORT_SYMBOL vmlinux 0x4329854a phy_ethtool_sset -EXPORT_SYMBOL vmlinux 0x432edbda mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0x433d9c3f save_mount_options -EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x4368ae49 blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 -EXPORT_SYMBOL vmlinux 0x43700fed cdev_init -EXPORT_SYMBOL vmlinux 0x4373a9d7 pci_add_new_bus -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x43a01f90 complete_all -EXPORT_SYMBOL vmlinux 0x43a33872 __netif_schedule -EXPORT_SYMBOL vmlinux 0x43a87e69 sock_no_setsockopt -EXPORT_SYMBOL vmlinux 0x43dd2517 rfkill_alloc -EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x44084111 pci_get_subsys -EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed -EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0x4438def3 abx500_mask_and_set_register_interruptible -EXPORT_SYMBOL vmlinux 0x44438b96 hex2bin -EXPORT_SYMBOL vmlinux 0x445d5e1a param_array_ops -EXPORT_SYMBOL vmlinux 0x44774b18 inode_init_always -EXPORT_SYMBOL vmlinux 0x4479bad4 serio_interrupt -EXPORT_SYMBOL vmlinux 0x4497ab29 scsi_execute_req_flags -EXPORT_SYMBOL vmlinux 0x44990ab0 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0x449a94f6 brioctl_set -EXPORT_SYMBOL vmlinux 0x449da695 eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0x44a3f2af new_inode -EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x44c8b25a led_blink_set -EXPORT_SYMBOL vmlinux 0x44d7103b put_disk -EXPORT_SYMBOL vmlinux 0x44d906c5 d_splice_alias -EXPORT_SYMBOL vmlinux 0x44e56c1a __dquot_transfer -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44eb192e wait_for_completion -EXPORT_SYMBOL vmlinux 0x4502ad6f param_ops_int -EXPORT_SYMBOL vmlinux 0x45102159 ata_port_printk -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x45409fa0 posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x45449948 mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0x45631bac kill_anon_super -EXPORT_SYMBOL vmlinux 0x45698d57 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x4574eb28 blk_recount_segments -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x4593f39c jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0x45950452 dquot_disable -EXPORT_SYMBOL vmlinux 0x459ee3ac i2c_release_client -EXPORT_SYMBOL vmlinux 0x459f7138 __register_nls -EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource -EXPORT_SYMBOL vmlinux 0x45b5f90c ilookup5 -EXPORT_SYMBOL vmlinux 0x45bda3f7 backlight_force_update -EXPORT_SYMBOL vmlinux 0x45c6e63f pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0x45cd3942 inode_claim_rsv_space -EXPORT_SYMBOL vmlinux 0x45d9284d blk_mq_map_queue -EXPORT_SYMBOL vmlinux 0x45e99648 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x45f68f92 scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x45ff6422 ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x4612c59d down_trylock -EXPORT_SYMBOL vmlinux 0x46168d24 mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0x461ebfa0 __copy_tofrom_user -EXPORT_SYMBOL vmlinux 0x462345e1 xmon -EXPORT_SYMBOL vmlinux 0x4625d4da fbcon_rotate_ud -EXPORT_SYMBOL vmlinux 0x4629d33a param_set_short -EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy -EXPORT_SYMBOL vmlinux 0x464f2264 input_set_capability -EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set -EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x466d7d15 follow_down -EXPORT_SYMBOL vmlinux 0x46abd7a4 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x46b7a432 param_set_bool -EXPORT_SYMBOL vmlinux 0x46bf0fee mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0x46d009ac phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0x46d12956 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0x46e841e8 __ethtool_get_settings -EXPORT_SYMBOL vmlinux 0x46edea9f blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0x46f0e0d1 clocksource_change_rating -EXPORT_SYMBOL vmlinux 0x46fdbabc xfrm_register_mode -EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg -EXPORT_SYMBOL vmlinux 0x4700b263 blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x471223a3 scsi_device_put -EXPORT_SYMBOL vmlinux 0x4727efbc mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x4744c9da __scm_send -EXPORT_SYMBOL vmlinux 0x475f5a5a nf_hook_slow -EXPORT_SYMBOL vmlinux 0x47608718 fence_init -EXPORT_SYMBOL vmlinux 0x47610e17 dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0x4767122a phy_start -EXPORT_SYMBOL vmlinux 0x4771883a scsi_register -EXPORT_SYMBOL vmlinux 0x477a8df3 skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0x477ceab2 mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit -EXPORT_SYMBOL vmlinux 0x47a55f13 vfs_mknod -EXPORT_SYMBOL vmlinux 0x47bcbea2 unregister_netdev -EXPORT_SYMBOL vmlinux 0x47be2789 scsi_rescan_device -EXPORT_SYMBOL vmlinux 0x47be28f8 make_kprojid -EXPORT_SYMBOL vmlinux 0x47cfccd3 blk_fetch_request -EXPORT_SYMBOL vmlinux 0x47d89bfe mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x47e10cff mmc_can_sanitize -EXPORT_SYMBOL vmlinux 0x48404b9a remove_wait_queue -EXPORT_SYMBOL vmlinux 0x4853e665 iov_iter_advance -EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days -EXPORT_SYMBOL vmlinux 0x485fbd52 neigh_for_each -EXPORT_SYMBOL vmlinux 0x4868cadf skb_put -EXPORT_SYMBOL vmlinux 0x487a5a35 udp6_set_csum -EXPORT_SYMBOL vmlinux 0x488c1bb0 tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0x48a024c0 mfd_add_devices -EXPORT_SYMBOL vmlinux 0x48a771c5 cpu_core_map -EXPORT_SYMBOL vmlinux 0x48af0ae6 tty_port_tty_get -EXPORT_SYMBOL vmlinux 0x48b17e76 sock_register -EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48cf12c3 scsi_device_resume -EXPORT_SYMBOL vmlinux 0x48df60cf serio_bus -EXPORT_SYMBOL vmlinux 0x48e20662 iov_iter_fault_in_readable -EXPORT_SYMBOL vmlinux 0x490169e1 release_firmware -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x490d61aa input_flush_device -EXPORT_SYMBOL vmlinux 0x4946f9b1 udp_sendmsg -EXPORT_SYMBOL vmlinux 0x494b0831 pci_reenable_device -EXPORT_SYMBOL vmlinux 0x4957fa00 bmap -EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init -EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data -EXPORT_SYMBOL vmlinux 0x4974218c reservation_object_add_excl_fence -EXPORT_SYMBOL vmlinux 0x4981d9a9 clear_wb_congested -EXPORT_SYMBOL vmlinux 0x4983cde5 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0x498cdda2 input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x499e5758 __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x49a4b88c acl_by_type -EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x49b7334e pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x49b8f96d pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0x49cd3ba0 mark_info_dirty -EXPORT_SYMBOL vmlinux 0x49d0e14d i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0x49d3c37b param_set_bint -EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many -EXPORT_SYMBOL vmlinux 0x4a21c98f devm_gpiod_get_array_optional -EXPORT_SYMBOL vmlinux 0x4a2a1a28 skb_queue_tail -EXPORT_SYMBOL vmlinux 0x4a2c3636 mmc_add_host -EXPORT_SYMBOL vmlinux 0x4a372d71 dst_alloc -EXPORT_SYMBOL vmlinux 0x4a71a9fa vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0x4a911f7c send_sig -EXPORT_SYMBOL vmlinux 0x4a9ee675 thermal_cdev_update -EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk -EXPORT_SYMBOL vmlinux 0x4ac25a87 eth_type_trans -EXPORT_SYMBOL vmlinux 0x4ac62dc3 blk_queue_resize_tags -EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource -EXPORT_SYMBOL vmlinux 0x4ad46eb7 dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize -EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure -EXPORT_SYMBOL vmlinux 0x4b0a8d3f skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0x4b1a9aab twl6040_get_pll -EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0x4b1fdac2 filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x4b2a2f56 dm_io -EXPORT_SYMBOL vmlinux 0x4b2db42d vfs_llseek -EXPORT_SYMBOL vmlinux 0x4b324100 blk_mq_all_tag_busy_iter -EXPORT_SYMBOL vmlinux 0x4b3539d4 proc_mkdir -EXPORT_SYMBOL vmlinux 0x4b40d173 skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0x4b50a62e elv_register_queue -EXPORT_SYMBOL vmlinux 0x4b50a7cc jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b6d3a0e netdev_notice -EXPORT_SYMBOL vmlinux 0x4b7cd837 d_add_ci -EXPORT_SYMBOL vmlinux 0x4b8326ff ida_remove -EXPORT_SYMBOL vmlinux 0x4b86634c uart_register_driver -EXPORT_SYMBOL vmlinux 0x4b91c246 __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0x4ba26970 eth_mac_addr -EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get -EXPORT_SYMBOL vmlinux 0x4bb0778e vm_stat -EXPORT_SYMBOL vmlinux 0x4bc963a3 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x4bcc7830 max8925_bulk_write -EXPORT_SYMBOL vmlinux 0x4bcf03a4 radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x4bd6406d mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0x4be52ec9 blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0x4be85a03 memweight -EXPORT_SYMBOL vmlinux 0x4bed99b3 __percpu_counter_add -EXPORT_SYMBOL vmlinux 0x4bfc8965 netif_skb_features -EXPORT_SYMBOL vmlinux 0x4c11435a _raw_read_lock_bh -EXPORT_SYMBOL vmlinux 0x4c23efdc nf_reinject -EXPORT_SYMBOL vmlinux 0x4c29dcbf cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr -EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf -EXPORT_SYMBOL vmlinux 0x4c59aaee balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0x4c620fd0 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0x4c6573cc nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0x4c831cad __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x4cb81013 nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0x4cba27f8 vga_put -EXPORT_SYMBOL vmlinux 0x4ccb5cac scsi_block_requests -EXPORT_SYMBOL vmlinux 0x4cd945da write_dirty_buffer -EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval -EXPORT_SYMBOL vmlinux 0x4cf9766c skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0x4cfadc11 dev_deactivate -EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask -EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated -EXPORT_SYMBOL vmlinux 0x4d4ca0e0 put_page -EXPORT_SYMBOL vmlinux 0x4d60243e blk_put_request -EXPORT_SYMBOL vmlinux 0x4d6b0368 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0x4d71004a __cpm2_setbrg -EXPORT_SYMBOL vmlinux 0x4d791953 mempool_resize -EXPORT_SYMBOL vmlinux 0x4d87e223 blk_end_request_cur -EXPORT_SYMBOL vmlinux 0x4d8954fa inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4da4734c proto_unregister -EXPORT_SYMBOL vmlinux 0x4db7bfdb neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x4dc22608 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x4dc4dff7 proc_create_data -EXPORT_SYMBOL vmlinux 0x4dcbea07 generic_setlease -EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x4deb230f vfs_read -EXPORT_SYMBOL vmlinux 0x4deb6574 blk_queue_softirq_done -EXPORT_SYMBOL vmlinux 0x4dec6038 memscan -EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse -EXPORT_SYMBOL vmlinux 0x4e036581 km_policy_notify -EXPORT_SYMBOL vmlinux 0x4e1799bb __sk_dst_check -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e417c2a mb_cache_entry_alloc -EXPORT_SYMBOL vmlinux 0x4e49e1b0 make_kuid -EXPORT_SYMBOL vmlinux 0x4e53e7fc neigh_event_ns -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e77551c vme_irq_handler -EXPORT_SYMBOL vmlinux 0x4e7d602a blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0x4e878f35 mntget -EXPORT_SYMBOL vmlinux 0x4e9dffb5 ip_fast_csum -EXPORT_SYMBOL vmlinux 0x4ec24202 dquot_alloc -EXPORT_SYMBOL vmlinux 0x4edc872c do_splice_to -EXPORT_SYMBOL vmlinux 0x4edd7bb5 __secpath_destroy -EXPORT_SYMBOL vmlinux 0x4efaf16d blk_free_tags -EXPORT_SYMBOL vmlinux 0x4f195001 linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse -EXPORT_SYMBOL vmlinux 0x4f58ed80 filp_open -EXPORT_SYMBOL vmlinux 0x4f6041ef dns_query -EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday -EXPORT_SYMBOL vmlinux 0x4f70014b cdrom_release -EXPORT_SYMBOL vmlinux 0x4f76d7fb mmc_free_host -EXPORT_SYMBOL vmlinux 0x4f9b215b tcp_close -EXPORT_SYMBOL vmlinux 0x4fabec95 bio_copy_data -EXPORT_SYMBOL vmlinux 0x4facddae try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x4fd5f42e abx500_set_register_interruptible -EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command -EXPORT_SYMBOL vmlinux 0x4fe44a4d inode_change_ok -EXPORT_SYMBOL vmlinux 0x4fe99583 atomic64_dec_if_positive -EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security -EXPORT_SYMBOL vmlinux 0x501907e4 dm_put_device -EXPORT_SYMBOL vmlinux 0x501c4403 dev_addr_flush -EXPORT_SYMBOL vmlinux 0x5043bff5 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x5053f61c twl6040_set_pll -EXPORT_SYMBOL vmlinux 0x505579d2 blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x50668f3d iunique -EXPORT_SYMBOL vmlinux 0x5068aaba skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x506e1ed5 tcf_hash_create -EXPORT_SYMBOL vmlinux 0x508135d9 iov_iter_alignment -EXPORT_SYMBOL vmlinux 0x5084a8c7 scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0x508c27e0 free_user_ns -EXPORT_SYMBOL vmlinux 0x509817cf vprintk_emit -EXPORT_SYMBOL vmlinux 0x509c13b1 __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x50a6a8dc scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0x50aabee4 fsnotify_alloc_group -EXPORT_SYMBOL vmlinux 0x50ad897f pipe_unlock -EXPORT_SYMBOL vmlinux 0x50b3359a nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x50b66bcb radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x50f0b148 ip6_frag_init -EXPORT_SYMBOL vmlinux 0x50fa1920 reservation_object_add_shared_fence -EXPORT_SYMBOL vmlinux 0x50fc6a41 blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0x512932e6 sock_setsockopt -EXPORT_SYMBOL vmlinux 0x5139939b xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x513d40ea loop_backing_file -EXPORT_SYMBOL vmlinux 0x515dc259 ps2_handle_response -EXPORT_SYMBOL vmlinux 0x515e24a7 flush_instruction_cache -EXPORT_SYMBOL vmlinux 0x519b0da3 finish_wait -EXPORT_SYMBOL vmlinux 0x51a4e792 devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0x51bb9894 napi_disable -EXPORT_SYMBOL vmlinux 0x51d5e4e5 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup -EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str -EXPORT_SYMBOL vmlinux 0x5203ff73 path_put -EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0x525c0ca6 bdgrab -EXPORT_SYMBOL vmlinux 0x5260463f ata_link_printk -EXPORT_SYMBOL vmlinux 0x5261c991 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x52668c46 dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0x5276cafe __insert_inode_hash -EXPORT_SYMBOL vmlinux 0x52814e28 tty_register_driver -EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x529f7f92 fb_validate_mode -EXPORT_SYMBOL vmlinux 0x52a158fb of_node_get -EXPORT_SYMBOL vmlinux 0x52af562a __crc32c_le -EXPORT_SYMBOL vmlinux 0x52d3ddb7 i8042_remove_filter -EXPORT_SYMBOL vmlinux 0x52f1026c rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x52f38910 pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0x531dd0f1 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0x5362787e cpufreq_power_cooling_register -EXPORT_SYMBOL vmlinux 0x5393d240 fb_class -EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x53ad1630 i2c_clients_command -EXPORT_SYMBOL vmlinux 0x53be5560 security_path_mknod -EXPORT_SYMBOL vmlinux 0x53c11efe netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x53c6026c dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0x53c80417 ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x53d01962 cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0x53d79613 ip_options_compile -EXPORT_SYMBOL vmlinux 0x53ebab1b _outsl_ns -EXPORT_SYMBOL vmlinux 0x53fe3482 inet_frag_kill -EXPORT_SYMBOL vmlinux 0x54017252 bioset_integrity_create -EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x5412c7c7 up -EXPORT_SYMBOL vmlinux 0x5418dd3b xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0x542bf40b of_io_request_and_map -EXPORT_SYMBOL vmlinux 0x5430fee1 flush_signals -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x544ace3e blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0x544f4d4d pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0x548d9f28 kmalloc_caches -EXPORT_SYMBOL vmlinux 0x548eb08e jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul -EXPORT_SYMBOL vmlinux 0x54b07f8d seq_write -EXPORT_SYMBOL vmlinux 0x54b460e6 jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window -EXPORT_SYMBOL vmlinux 0x54c673ab input_free_device -EXPORT_SYMBOL vmlinux 0x54c99454 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0x54de8ca6 ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0x54e04d50 find_get_pages_contig -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu -EXPORT_SYMBOL vmlinux 0x5544b0e8 padata_set_cpumask -EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat -EXPORT_SYMBOL vmlinux 0x5568c553 complete -EXPORT_SYMBOL vmlinux 0x5577ef9e udp_table -EXPORT_SYMBOL vmlinux 0x558b2b17 phy_attach -EXPORT_SYMBOL vmlinux 0x55a5fe2b sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x55fa396e dump_emit -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0x563a8dc4 dcb_setapp -EXPORT_SYMBOL vmlinux 0x563d503b of_phy_connect -EXPORT_SYMBOL vmlinux 0x5646fbc7 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x56716c30 dput -EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames -EXPORT_SYMBOL vmlinux 0x56948456 tcp_sendpage -EXPORT_SYMBOL vmlinux 0x569b21c7 sync_inode -EXPORT_SYMBOL vmlinux 0x569f4254 mutex_trylock -EXPORT_SYMBOL vmlinux 0x56b08189 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x56bee447 tty_port_open -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56f592ab blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x575af70c on_each_cpu_mask -EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x577d479d vfs_whiteout -EXPORT_SYMBOL vmlinux 0x57873b20 ppp_dev_name -EXPORT_SYMBOL vmlinux 0x579485a1 d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x579fbcd2 cpu_possible_mask -EXPORT_SYMBOL vmlinux 0x57a6de8c dentry_unhash -EXPORT_SYMBOL vmlinux 0x57a7c4b9 nvm_get_blk -EXPORT_SYMBOL vmlinux 0x57a8d670 tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x57ae095f decrementer_clockevent -EXPORT_SYMBOL vmlinux 0x57afdf7f md_check_recovery -EXPORT_SYMBOL vmlinux 0x57b437e1 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0x57c18596 arp_send -EXPORT_SYMBOL vmlinux 0x57c51a6b blk_stack_limits -EXPORT_SYMBOL vmlinux 0x57cb18dd tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x57e83dac blk_execute_rq -EXPORT_SYMBOL vmlinux 0x57f20106 pci_scan_single_device -EXPORT_SYMBOL vmlinux 0x58018e97 con_is_bound -EXPORT_SYMBOL vmlinux 0x58071f69 mark_page_accessed -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x582b5740 mmc_align_data_size -EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x583fc05d inet_dgram_connect -EXPORT_SYMBOL vmlinux 0x5846e6ec agp_alloc_bridge -EXPORT_SYMBOL vmlinux 0x5848c707 kernel_getsockopt -EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep -EXPORT_SYMBOL vmlinux 0x58623807 proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat -EXPORT_SYMBOL vmlinux 0x5894f222 get_task_exe_file -EXPORT_SYMBOL vmlinux 0x58a3a1b1 iterate_supers_type -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58c43194 vga_get -EXPORT_SYMBOL vmlinux 0x58c8ae5f block_read_full_page -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58e5829f netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x5907832c find_inode_nowait -EXPORT_SYMBOL vmlinux 0x590d3149 ipv6_push_nfrag_opts -EXPORT_SYMBOL vmlinux 0x591241d0 register_sysctl_table -EXPORT_SYMBOL vmlinux 0x5929b293 kill_pgrp -EXPORT_SYMBOL vmlinux 0x59312b1f blk_complete_request -EXPORT_SYMBOL vmlinux 0x5932b12d clkdev_drop -EXPORT_SYMBOL vmlinux 0x593bd7b2 __init_rwsem -EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map -EXPORT_SYMBOL vmlinux 0x594cb874 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x594de991 input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0x595b99de netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x595d0946 empty_zero_page -EXPORT_SYMBOL vmlinux 0x59604c98 find_vma -EXPORT_SYMBOL vmlinux 0x596a7e67 blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x59921178 nvm_unregister_target -EXPORT_SYMBOL vmlinux 0x5992d372 starget_for_each_device -EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release -EXPORT_SYMBOL vmlinux 0x59b3378a completion_done -EXPORT_SYMBOL vmlinux 0x59b6d7d7 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x59b89320 netlink_capable -EXPORT_SYMBOL vmlinux 0x59bfd7ac sock_no_poll -EXPORT_SYMBOL vmlinux 0x59c66c92 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0x59c782ff pci_get_class -EXPORT_SYMBOL vmlinux 0x59c85e3a get_io_context -EXPORT_SYMBOL vmlinux 0x59c99ba8 generic_start_io_acct -EXPORT_SYMBOL vmlinux 0x59ca851f kmalloc_dma_caches -EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a2472e4 kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0x5a4239c8 mmc_request_done -EXPORT_SYMBOL vmlinux 0x5a5d0600 pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0x5a6d0ee1 dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x5a6d2be4 fbcon_rotate_cw -EXPORT_SYMBOL vmlinux 0x5aa81da8 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0x5abff974 seq_open -EXPORT_SYMBOL vmlinux 0x5ad39957 bdget -EXPORT_SYMBOL vmlinux 0x5af8630f generic_show_options -EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get -EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem -EXPORT_SYMBOL vmlinux 0x5b367392 padata_alloc -EXPORT_SYMBOL vmlinux 0x5b9828c5 dma_spin_lock -EXPORT_SYMBOL vmlinux 0x5bb85451 generic_getxattr -EXPORT_SYMBOL vmlinux 0x5bed14d4 param_get_short -EXPORT_SYMBOL vmlinux 0x5bf0b14b local_flush_tlb_page -EXPORT_SYMBOL vmlinux 0x5bf11c56 nonseekable_open -EXPORT_SYMBOL vmlinux 0x5bf9f2a5 __skb_get_hash_flowi6 -EXPORT_SYMBOL vmlinux 0x5bfe7add pci_set_dma_max_seg_size -EXPORT_SYMBOL vmlinux 0x5c37f319 _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x5c381198 security_path_mkdir -EXPORT_SYMBOL vmlinux 0x5c3858f0 swiotlb_dma_mapping_error -EXPORT_SYMBOL vmlinux 0x5c3f1185 netif_carrier_off -EXPORT_SYMBOL vmlinux 0x5c68669d devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0x5c9b7462 unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x5c9f3f9c udp_proc_unregister -EXPORT_SYMBOL vmlinux 0x5ca6cf67 d_set_fallthru -EXPORT_SYMBOL vmlinux 0x5cbb4665 blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0x5cc32bdc bitmap_copy_le -EXPORT_SYMBOL vmlinux 0x5cdb1f35 of_platform_device_create -EXPORT_SYMBOL vmlinux 0x5cdcf53a t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0x5ceacfdd block_write_full_page -EXPORT_SYMBOL vmlinux 0x5cf09ae9 pci_find_bus -EXPORT_SYMBOL vmlinux 0x5cf26fa3 start_tty -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5cf8dc68 scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x5d2cb3dc d_drop -EXPORT_SYMBOL vmlinux 0x5d361e02 sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0x5d38c59a scsi_remove_device -EXPORT_SYMBOL vmlinux 0x5d3ba6fa netdev_emerg -EXPORT_SYMBOL vmlinux 0x5d3e6abc rwsem_down_write_failed -EXPORT_SYMBOL vmlinux 0x5d3f79de file_remove_privs -EXPORT_SYMBOL vmlinux 0x5d4632c4 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain -EXPORT_SYMBOL vmlinux 0x5d58efa0 convert_ifc_address -EXPORT_SYMBOL vmlinux 0x5d5b2fbd dm_get_device -EXPORT_SYMBOL vmlinux 0x5d61eac3 read_cache_page -EXPORT_SYMBOL vmlinux 0x5d7b79db genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x5dad8831 pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0x5db40819 devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0x5dc4178f blkdev_get -EXPORT_SYMBOL vmlinux 0x5dee14d1 bio_uncopy_user -EXPORT_SYMBOL vmlinux 0x5defc042 shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0x5df38941 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0x5dfeab60 genphy_config_init -EXPORT_SYMBOL vmlinux 0x5e254de9 sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x5e268f00 unlock_rename -EXPORT_SYMBOL vmlinux 0x5e27321b register_sysctl_paths -EXPORT_SYMBOL vmlinux 0x5e2a3e8f netdev_err -EXPORT_SYMBOL vmlinux 0x5e3a8a9c __wake_up -EXPORT_SYMBOL vmlinux 0x5e5e4eac mb_cache_shrink -EXPORT_SYMBOL vmlinux 0x5e8354da __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes -EXPORT_SYMBOL vmlinux 0x5e88aac9 eth_change_mtu -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5ea86879 tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0x5eb0401e proc_dostring -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ebaf7f2 sg_miter_skip -EXPORT_SYMBOL vmlinux 0x5ece2171 __scm_destroy -EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5eff4608 posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 -EXPORT_SYMBOL vmlinux 0x5f03091a dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f387249 ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0x5f43284b make_kgid -EXPORT_SYMBOL vmlinux 0x5f57bf8b elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0x5f6238f6 d_alloc_name -EXPORT_SYMBOL vmlinux 0x5f73db36 mfd_cell_disable -EXPORT_SYMBOL vmlinux 0x5f754e5a memset -EXPORT_SYMBOL vmlinux 0x5f7bcb2d mem_map -EXPORT_SYMBOL vmlinux 0x5f81abb9 tty_register_device -EXPORT_SYMBOL vmlinux 0x5f8a2728 isa_io_base -EXPORT_SYMBOL vmlinux 0x5fa6e9b9 blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0x5fb19d86 tcp_seq_open -EXPORT_SYMBOL vmlinux 0x5fb5a46e inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0x5fbe0d80 pci_scan_bus -EXPORT_SYMBOL vmlinux 0x5fd268cb radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat -EXPORT_SYMBOL vmlinux 0x5ffbc440 __serio_register_driver -EXPORT_SYMBOL vmlinux 0x60046ac9 generic_file_read_iter -EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool -EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x60283267 dev_remove_offload -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x60555362 lwtunnel_get_encap_size -EXPORT_SYMBOL vmlinux 0x605d2702 unregister_cdrom -EXPORT_SYMBOL vmlinux 0x60608289 fddi_type_trans -EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number -EXPORT_SYMBOL vmlinux 0x6071525b nd_device_unregister -EXPORT_SYMBOL vmlinux 0x6073732c cur_cpu_spec -EXPORT_SYMBOL vmlinux 0x607c2499 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector -EXPORT_SYMBOL vmlinux 0x609e66e1 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60a9c2e7 dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0x60ae9e3b bitmap_end_sync -EXPORT_SYMBOL vmlinux 0x60b02a6d nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0x60b86f61 sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x60b966f5 invalidate_partition -EXPORT_SYMBOL vmlinux 0x60cdc776 netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x60eecbeb xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x60f78bdf inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x61016949 of_get_cpu_node -EXPORT_SYMBOL vmlinux 0x610b2ee3 pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0x61250ce3 kfree_skb_list -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x61318b01 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0x613b933b uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0x614832de twl6040_reg_write -EXPORT_SYMBOL vmlinux 0x615c3095 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0x616190d7 vme_master_request -EXPORT_SYMBOL vmlinux 0x61a2af7b generic_pipe_buf_confirm -EXPORT_SYMBOL vmlinux 0x61a3cf6a nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x61b3560c cmdline_parts_set -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61c83f08 of_device_register -EXPORT_SYMBOL vmlinux 0x61eef2c9 _insb -EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x622039f1 bio_chain -EXPORT_SYMBOL vmlinux 0x6220b4a2 crc32_le -EXPORT_SYMBOL vmlinux 0x6225637e md5_transform -EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x623a82e5 padata_set_cpumasks -EXPORT_SYMBOL vmlinux 0x62401e4a bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x624a2613 copy_page_to_iter -EXPORT_SYMBOL vmlinux 0x62538167 slhc_toss -EXPORT_SYMBOL vmlinux 0x6255f3f3 ip_do_fragment -EXPORT_SYMBOL vmlinux 0x625859b3 pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0x625f6701 machine_id -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x627a85d3 generic_delete_inode -EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x628c0376 mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0x62c19874 seq_lseek -EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled -EXPORT_SYMBOL vmlinux 0x63742f6f __bio_clone_fast -EXPORT_SYMBOL vmlinux 0x637d91e5 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0x6381c383 lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x638943c0 check_disk_change -EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63a8ecd2 locks_remove_posix -EXPORT_SYMBOL vmlinux 0x63af7a7e dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63d6f8f5 skb_clone -EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63f998ba sock_edemux -EXPORT_SYMBOL vmlinux 0x63fb94cf agp_put_bridge -EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user -EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x6424dff1 input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0x64503b95 from_kuid_munged -EXPORT_SYMBOL vmlinux 0x64565307 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0x648b3b2c filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0x6497f0d5 sys_copyarea -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x64a4b84d cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x64a70ed9 param_ops_ullong -EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth -EXPORT_SYMBOL vmlinux 0x651a4139 test_taint -EXPORT_SYMBOL vmlinux 0x6535397f scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x65400222 __irq_offset_value -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x6565d33f scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x6569b633 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x65776cb8 xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0x6583f7f8 of_graph_get_next_endpoint -EXPORT_SYMBOL vmlinux 0x65bb58a2 _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x65c55eb6 i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0x65c92156 bd_set_size -EXPORT_SYMBOL vmlinux 0x65ca8932 elv_dispatch_add_tail -EXPORT_SYMBOL vmlinux 0x65d0f9a8 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier -EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65e3b8cc pci_bus_type -EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x65f5894a elv_rb_former_request -EXPORT_SYMBOL vmlinux 0x661b0ec0 inet_bind -EXPORT_SYMBOL vmlinux 0x66725ecc devm_gpio_free -EXPORT_SYMBOL vmlinux 0x66739fa1 account_page_redirty -EXPORT_SYMBOL vmlinux 0x667c597a swiotlb_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0x6684145c __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0x66944144 down_write_trylock -EXPORT_SYMBOL vmlinux 0x66d5a0bb netlink_broadcast -EXPORT_SYMBOL vmlinux 0x66e85780 dev_set_mtu -EXPORT_SYMBOL vmlinux 0x66ecd85a get_super -EXPORT_SYMBOL vmlinux 0x66f1fefa tcp_child_process -EXPORT_SYMBOL vmlinux 0x672a8b94 dst_discard_out -EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges -EXPORT_SYMBOL vmlinux 0x674a1b54 set_nlink -EXPORT_SYMBOL vmlinux 0x6760ee04 pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create -EXPORT_SYMBOL vmlinux 0x67a63276 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0x67af93d4 tty_devnum -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67c3af1e register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x67e16ac8 mb_cache_entry_release -EXPORT_SYMBOL vmlinux 0x67e1df50 blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0x68085cc2 nf_ct_attach -EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x680c63cd sk_stop_timer -EXPORT_SYMBOL vmlinux 0x682db84c skb_find_text -EXPORT_SYMBOL vmlinux 0x683c968f component_match_add -EXPORT_SYMBOL vmlinux 0x68416fcb fifo_create_dflt -EXPORT_SYMBOL vmlinux 0x6841dc58 sock_from_file -EXPORT_SYMBOL vmlinux 0x684aace3 down_read_trylock -EXPORT_SYMBOL vmlinux 0x68609857 complete_and_exit -EXPORT_SYMBOL vmlinux 0x6864a022 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x686e6026 vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x687ea151 dma_async_device_register -EXPORT_SYMBOL vmlinux 0x6895740a netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages -EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x68bc53fc skb_copy -EXPORT_SYMBOL vmlinux 0x68c8eab4 devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0x68cd14af security_path_rmdir -EXPORT_SYMBOL vmlinux 0x68e0a3f5 skb_pull -EXPORT_SYMBOL vmlinux 0x68e487a2 simple_transaction_release -EXPORT_SYMBOL vmlinux 0x68f8a5e4 fbcon_rotate_ccw -EXPORT_SYMBOL vmlinux 0x68f8e478 scsi_execute -EXPORT_SYMBOL vmlinux 0x6916a76d redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0x691d0099 udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x692e72e1 key_link -EXPORT_SYMBOL vmlinux 0x69345bee submit_bh -EXPORT_SYMBOL vmlinux 0x6942c1e1 tty_throttle -EXPORT_SYMBOL vmlinux 0x694472fa i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0x69580ba6 inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x696d3e18 gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x6977b6c4 alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0x697efe6d of_dev_put -EXPORT_SYMBOL vmlinux 0x6980890b nd_btt_probe -EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be -EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource -EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint -EXPORT_SYMBOL vmlinux 0x69ba6e0c scsi_remove_target -EXPORT_SYMBOL vmlinux 0x69d7e5b8 __debugger_ipi -EXPORT_SYMBOL vmlinux 0x69f233e7 adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a1b1a50 handle_edge_irq -EXPORT_SYMBOL vmlinux 0x6a1c7336 forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x6a2d3f26 __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a74c5a9 vme_register_bridge -EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable -EXPORT_SYMBOL vmlinux 0x6a80a3f5 cpm_muram_free -EXPORT_SYMBOL vmlinux 0x6a840369 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0x6aa744a8 tty_port_destroy -EXPORT_SYMBOL vmlinux 0x6ab66677 seq_puts -EXPORT_SYMBOL vmlinux 0x6ac0ecaa xfrm6_rcv_cb -EXPORT_SYMBOL vmlinux 0x6ac3702b dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be -EXPORT_SYMBOL vmlinux 0x6ad161ad xfrm_prepare_input -EXPORT_SYMBOL vmlinux 0x6ad7f0ed dm_register_target -EXPORT_SYMBOL vmlinux 0x6ad7f4f5 mem_cgroup_begin_page_stat -EXPORT_SYMBOL vmlinux 0x6ad8efa2 devm_ioport_map -EXPORT_SYMBOL vmlinux 0x6ae11224 set_anon_super -EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x6b07be82 twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname -EXPORT_SYMBOL vmlinux 0x6b2bdf2b vfs_create -EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b33b917 __sb_start_write -EXPORT_SYMBOL vmlinux 0x6b4ab7db max8925_bulk_read -EXPORT_SYMBOL vmlinux 0x6b656024 register_framebuffer -EXPORT_SYMBOL vmlinux 0x6b66c889 fence_free -EXPORT_SYMBOL vmlinux 0x6b902d58 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x6b90e56d abx500_remove_ops -EXPORT_SYMBOL vmlinux 0x6bc1edea pskb_expand_head -EXPORT_SYMBOL vmlinux 0x6bc2eedd tty_kref_put -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bc6fe0d netdev_all_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x6bd003ec ppp_register_channel -EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x6bdf8dd1 mmc_power_save_host -EXPORT_SYMBOL vmlinux 0x6bff751b __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer -EXPORT_SYMBOL vmlinux 0x6c1106b3 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn -EXPORT_SYMBOL vmlinux 0x6c25fd3e elv_rb_add -EXPORT_SYMBOL vmlinux 0x6c30ed6d ata_dev_printk -EXPORT_SYMBOL vmlinux 0x6c37ecc4 twl6040_reg_read -EXPORT_SYMBOL vmlinux 0x6c4e5c1a always_delete_dentry -EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat -EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min -EXPORT_SYMBOL vmlinux 0x6ca1d1a4 atomic64_read -EXPORT_SYMBOL vmlinux 0x6ca2d99f input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x6cb01e47 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x6cb37127 flex_array_clear -EXPORT_SYMBOL vmlinux 0x6cc59c16 __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x6cc8ab4b kmap_to_page -EXPORT_SYMBOL vmlinux 0x6cca8226 gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy -EXPORT_SYMBOL vmlinux 0x6cead845 napi_gro_flush -EXPORT_SYMBOL vmlinux 0x6cf08df5 request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x6d166fd2 phy_device_register -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d632c91 cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0x6d740223 flex_array_put -EXPORT_SYMBOL vmlinux 0x6d7a87c0 iov_iter_init -EXPORT_SYMBOL vmlinux 0x6d9103d5 __blk_run_queue -EXPORT_SYMBOL vmlinux 0x6d9aa430 vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0x6da7913b mmc_erase -EXPORT_SYMBOL vmlinux 0x6da928f4 _insw_ns -EXPORT_SYMBOL vmlinux 0x6dab1ee2 n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0x6dbc96ad __lock_buffer -EXPORT_SYMBOL vmlinux 0x6dd1442b build_skb -EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform -EXPORT_SYMBOL vmlinux 0x6df01ab9 __getblk_gfp -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6df7c8fe __devcgroup_inode_permission -EXPORT_SYMBOL vmlinux 0x6dfc5129 __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0x6e03bfa0 scsi_ioctl_reset -EXPORT_SYMBOL vmlinux 0x6e0de05a blk_run_queue -EXPORT_SYMBOL vmlinux 0x6e334798 udp_proc_register -EXPORT_SYMBOL vmlinux 0x6e336a70 generic_readlink -EXPORT_SYMBOL vmlinux 0x6e379526 kernstart_addr -EXPORT_SYMBOL vmlinux 0x6e546a1c in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x6e6514ed radix_tree_insert -EXPORT_SYMBOL vmlinux 0x6e718054 nvm_end_io -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e758fd8 skb_copy_bits -EXPORT_SYMBOL vmlinux 0x6e75c00d km_report -EXPORT_SYMBOL vmlinux 0x6e7a1d85 inode_init_owner -EXPORT_SYMBOL vmlinux 0x6e7ecee8 pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0x6e8ed231 param_get_string -EXPORT_SYMBOL vmlinux 0x6e914756 simple_rename -EXPORT_SYMBOL vmlinux 0x6e9b067d padata_alloc_possible -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6ea3d387 mdiobus_free -EXPORT_SYMBOL vmlinux 0x6ea87368 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x6eb22197 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x6eb74dff proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x6ecdf86b skb_checksum -EXPORT_SYMBOL vmlinux 0x6ecf78d2 skb_make_writable -EXPORT_SYMBOL vmlinux 0x6edff0cf devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0x6ee605fe twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0x6efe2016 crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0x6efe3c95 __bforget -EXPORT_SYMBOL vmlinux 0x6efe7c0e iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash -EXPORT_SYMBOL vmlinux 0x6f3b04d7 param_set_ullong -EXPORT_SYMBOL vmlinux 0x6f4bd16c _dev_info -EXPORT_SYMBOL vmlinux 0x6f524772 put_cmsg -EXPORT_SYMBOL vmlinux 0x6f549101 user_path_at_empty -EXPORT_SYMBOL vmlinux 0x6f6759c1 proc_set_size -EXPORT_SYMBOL vmlinux 0x6f6d09ba bioset_integrity_free -EXPORT_SYMBOL vmlinux 0x6f741365 iput -EXPORT_SYMBOL vmlinux 0x6f7e7975 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x6fa41408 try_to_release_page -EXPORT_SYMBOL vmlinux 0x6fa75335 netpoll_send_skb_on_dev -EXPORT_SYMBOL vmlinux 0x6fb757cc qdisc_list_add -EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag -EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fcce395 crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0x6fd7c04d mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0x6fdfa3b2 skb_dequeue -EXPORT_SYMBOL vmlinux 0x6fe45ef3 page_waitqueue -EXPORT_SYMBOL vmlinux 0x70023d40 vme_bus_type -EXPORT_SYMBOL vmlinux 0x70059da8 inet6_protos -EXPORT_SYMBOL vmlinux 0x700da556 qdisc_list_del -EXPORT_SYMBOL vmlinux 0x7011e6a4 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x7013a99b __scsi_alloc_queue -EXPORT_SYMBOL vmlinux 0x703aee26 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0x703bb8b2 locks_free_lock -EXPORT_SYMBOL vmlinux 0x704aac8a input_close_device -EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq -EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma -EXPORT_SYMBOL vmlinux 0x705ee9cc jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0x70610a20 abort_creds -EXPORT_SYMBOL vmlinux 0x7062b4cd cmdline_parts_free -EXPORT_SYMBOL vmlinux 0x70679c38 tcf_exts_change -EXPORT_SYMBOL vmlinux 0x7068ea84 migrate_page_copy -EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync -EXPORT_SYMBOL vmlinux 0x707408bd tty_hung_up_p -EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x70810386 neigh_table_init -EXPORT_SYMBOL vmlinux 0x70874a14 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0x708d996b param_get_invbool -EXPORT_SYMBOL vmlinux 0x70a4707d mmc_can_trim -EXPORT_SYMBOL vmlinux 0x70a666ab wake_up_process -EXPORT_SYMBOL vmlinux 0x70b5e0c5 pci_device_from_OF_node -EXPORT_SYMBOL vmlinux 0x70c2ed6f mdio_bus_type -EXPORT_SYMBOL vmlinux 0x70d888b7 __debugger_fault_handler -EXPORT_SYMBOL vmlinux 0x70d9f301 vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0x70ecb5e5 skb_vlan_untag -EXPORT_SYMBOL vmlinux 0x70ed5acf md_reload_sb -EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x712ed37b radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x71392362 kfree_put_link -EXPORT_SYMBOL vmlinux 0x7142c0a5 blk_start_request -EXPORT_SYMBOL vmlinux 0x714690ea nf_afinfo -EXPORT_SYMBOL vmlinux 0x71664c7f cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0x716bf61f mach_bsc9132_qds -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev -EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71c90087 memcmp -EXPORT_SYMBOL vmlinux 0x71dddb7c swiotlb_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x71ddffc0 neigh_parms_release -EXPORT_SYMBOL vmlinux 0x71e166dd agp_backend_acquire -EXPORT_SYMBOL vmlinux 0x71f0ba2c jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x71f65175 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x7209a045 free_cgroup_ns -EXPORT_SYMBOL vmlinux 0x72321928 blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0x72587648 bio_integrity_free -EXPORT_SYMBOL vmlinux 0x727107ef xfrm_register_type -EXPORT_SYMBOL vmlinux 0x727837bb peernet2id_alloc -EXPORT_SYMBOL vmlinux 0x72a1857c vfs_write -EXPORT_SYMBOL vmlinux 0x72a2c64f flush_icache_user_range -EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma -EXPORT_SYMBOL vmlinux 0x72b5685b pci_set_mwi -EXPORT_SYMBOL vmlinux 0x72b6fa56 fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x72ceaf2a of_node_put -EXPORT_SYMBOL vmlinux 0x72d4c23c fsl_get_sys_freq -EXPORT_SYMBOL vmlinux 0x72d58de9 kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x72f274dd csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config -EXPORT_SYMBOL vmlinux 0x731c82cf cleancache_register_ops -EXPORT_SYMBOL vmlinux 0x732e1bcb inet_shutdown -EXPORT_SYMBOL vmlinux 0x73381f81 dmam_free_noncoherent -EXPORT_SYMBOL vmlinux 0x73384056 mach_corenet_generic -EXPORT_SYMBOL vmlinux 0x733b2383 next_tlbcam_idx -EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf -EXPORT_SYMBOL vmlinux 0x734408c8 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0x735c025f skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x735d8503 add_wait_queue -EXPORT_SYMBOL vmlinux 0x73710a3e dqstats -EXPORT_SYMBOL vmlinux 0x73979de6 atomic64_or -EXPORT_SYMBOL vmlinux 0x73b9b68a poll_schedule_timeout -EXPORT_SYMBOL vmlinux 0x73caf2b0 alloc_fddidev -EXPORT_SYMBOL vmlinux 0x73ddad2a nf_log_trace -EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy -EXPORT_SYMBOL vmlinux 0x73e2b716 dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x7448e6a2 dma_set_mask -EXPORT_SYMBOL vmlinux 0x74691b93 __neigh_create -EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x747d7299 ilookup5_nowait -EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x74882671 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0x74887a9b __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0x749e02ac phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0x74a8641a vfs_fsync -EXPORT_SYMBOL vmlinux 0x74a9fa58 nf_register_hook -EXPORT_SYMBOL vmlinux 0x74baea4a d_move -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74c32991 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x74c87918 mmc_interrupt_hpi -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv -EXPORT_SYMBOL vmlinux 0x7510b541 ps2_begin_command -EXPORT_SYMBOL vmlinux 0x7516c525 check_disk_size_change -EXPORT_SYMBOL vmlinux 0x751df7a4 noop_fsync -EXPORT_SYMBOL vmlinux 0x751f3488 tcp_check_req -EXPORT_SYMBOL vmlinux 0x751f9c07 input_register_handle -EXPORT_SYMBOL vmlinux 0x7538b132 agp_off -EXPORT_SYMBOL vmlinux 0x75440454 pagecache_get_page -EXPORT_SYMBOL vmlinux 0x755278ce inet_dgram_ops -EXPORT_SYMBOL vmlinux 0x7553bb7b lro_flush_all -EXPORT_SYMBOL vmlinux 0x755c9dd9 generic_removexattr -EXPORT_SYMBOL vmlinux 0x756aaf22 pci_enable_msix -EXPORT_SYMBOL vmlinux 0x756dd160 start_thread -EXPORT_SYMBOL vmlinux 0x757eaf0a registered_fb -EXPORT_SYMBOL vmlinux 0x757f088f cpm_muram_offset -EXPORT_SYMBOL vmlinux 0x7581dcd0 xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0x7591a017 mdiobus_write -EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 -EXPORT_SYMBOL vmlinux 0x75994700 add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0x75a42b5f lookup_one_len -EXPORT_SYMBOL vmlinux 0x75a4a39b __module_get -EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc -EXPORT_SYMBOL vmlinux 0x75c342a5 nvm_get_blk_unlocked -EXPORT_SYMBOL vmlinux 0x75ce14e1 __dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x75dbfcb8 inet_del_offload -EXPORT_SYMBOL vmlinux 0x75f08fdc sock_recvmsg -EXPORT_SYMBOL vmlinux 0x75f1ab2e __elv_add_request -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x7611e957 gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x764bd77c request_resource -EXPORT_SYMBOL vmlinux 0x76569d16 fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0x765aaad2 nla_append -EXPORT_SYMBOL vmlinux 0x7678693a mpage_readpages -EXPORT_SYMBOL vmlinux 0x76786b6c __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0x768f2d30 mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0x769e06d7 smp_call_function_many -EXPORT_SYMBOL vmlinux 0x76a7927e key_unlink -EXPORT_SYMBOL vmlinux 0x76ab05a8 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0x76b1c2cb vme_new_dma_list -EXPORT_SYMBOL vmlinux 0x76b6a9d0 inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0x76c0cbd9 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0x76cbe5a4 mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0x76ccd206 ns_capable -EXPORT_SYMBOL vmlinux 0x76cff93e tcf_hash_check -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint -EXPORT_SYMBOL vmlinux 0x76d563b8 __block_write_begin -EXPORT_SYMBOL vmlinux 0x76d9bf11 crc32_be -EXPORT_SYMBOL vmlinux 0x76e48c41 input_allocate_device -EXPORT_SYMBOL vmlinux 0x76f5184f qdisc_reset -EXPORT_SYMBOL vmlinux 0x76f6c5ef kmalloc_order -EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x77229ede vfs_readf -EXPORT_SYMBOL vmlinux 0x7724563e mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0x77481cdb vc_resize -EXPORT_SYMBOL vmlinux 0x776f011d is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0x7787e3b6 module_refcount -EXPORT_SYMBOL vmlinux 0x778d1532 blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0x77988820 dev_change_flags -EXPORT_SYMBOL vmlinux 0x7799741a rtnl_notify -EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll -EXPORT_SYMBOL vmlinux 0x779e9101 mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0x77a12e2a inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0x77a491c1 generic_read_dir -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77cb2cd4 seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0x77e0c6b0 validate_sp -EXPORT_SYMBOL vmlinux 0x77e64b53 pci_find_pcie_root_port -EXPORT_SYMBOL vmlinux 0x77ec993d input_register_device -EXPORT_SYMBOL vmlinux 0x782567ec memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0x7825c5dd security_inode_permission -EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t -EXPORT_SYMBOL vmlinux 0x783b977a kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0x7851288e finish_open -EXPORT_SYMBOL vmlinux 0x785caca7 nf_register_hooks -EXPORT_SYMBOL vmlinux 0x7860208d file_path -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x78afc428 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0x78d22fde netlink_kernel_release -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78fb0e0c proc_remove -EXPORT_SYMBOL vmlinux 0x792623b4 xfrm_register_km -EXPORT_SYMBOL vmlinux 0x79474497 vme_irq_request -EXPORT_SYMBOL vmlinux 0x7955a997 inode_dio_wait -EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0x798337cb skb_unlink -EXPORT_SYMBOL vmlinux 0x7998c778 __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79c0288d __wait_on_buffer -EXPORT_SYMBOL vmlinux 0x79ca70d1 blk_register_region -EXPORT_SYMBOL vmlinux 0x79d9f59d dev_notice -EXPORT_SYMBOL vmlinux 0x79da76f1 kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0x7a14becc devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0x7a1a7c8e xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x7a2535f3 import_iovec -EXPORT_SYMBOL vmlinux 0x7a2add7d current_kernel_time64 -EXPORT_SYMBOL vmlinux 0x7a35bb4c sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0x7a3a020f fifo_set_limit -EXPORT_SYMBOL vmlinux 0x7a4497db kzfree -EXPORT_SYMBOL vmlinux 0x7a522064 dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0x7a709446 textsearch_destroy -EXPORT_SYMBOL vmlinux 0x7a7f9659 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0x7a8975cb free_netdev -EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7a97f3a5 input_unregister_handle -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7aa7fa2d jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x7ab6b3ee netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7ad0ba42 dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0x7ade3af0 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x7adfedc6 __neigh_event_send -EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf -EXPORT_SYMBOL vmlinux 0x7b116c2e crypto_sha1_update -EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array -EXPORT_SYMBOL vmlinux 0x7b1ade38 lz4_decompress -EXPORT_SYMBOL vmlinux 0x7b2359f4 blk_put_queue -EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0x7b2c2a48 tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0x7b4c0be7 vfs_symlink -EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap -EXPORT_SYMBOL vmlinux 0x7b687846 register_shrinker -EXPORT_SYMBOL vmlinux 0x7b793a63 pcim_enable_device -EXPORT_SYMBOL vmlinux 0x7b811fea blk_sync_queue -EXPORT_SYMBOL vmlinux 0x7b85a61c i2c_verify_client -EXPORT_SYMBOL vmlinux 0x7ba7d31d sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0x7bb19fc7 netdev_alert -EXPORT_SYMBOL vmlinux 0x7bbd6ac2 read_dev_sector -EXPORT_SYMBOL vmlinux 0x7bc79518 tcp_destroy_cgroup -EXPORT_SYMBOL vmlinux 0x7bc8f259 phy_device_remove -EXPORT_SYMBOL vmlinux 0x7be16c35 max8998_bulk_write -EXPORT_SYMBOL vmlinux 0x7be4827c pci_dram_offset -EXPORT_SYMBOL vmlinux 0x7be75a93 skb_trim -EXPORT_SYMBOL vmlinux 0x7beef68c twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0x7c003aef _raw_read_lock_irq -EXPORT_SYMBOL vmlinux 0x7c1372e8 panic -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c219975 commit_creds -EXPORT_SYMBOL vmlinux 0x7c284cae sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0x7c2ee4e0 phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c61340c __release_region -EXPORT_SYMBOL vmlinux 0x7c9291d1 csum_partial_copy_generic -EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read -EXPORT_SYMBOL vmlinux 0x7c9ba756 mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0x7ca3b632 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down -EXPORT_SYMBOL vmlinux 0x7cb9faa3 vfs_getxattr_alloc -EXPORT_SYMBOL vmlinux 0x7cc1c52f agp_generic_destroy_page -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d0ff35b pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies -EXPORT_SYMBOL vmlinux 0x7d2e13a4 of_create_pci_dev -EXPORT_SYMBOL vmlinux 0x7d332409 devm_gpiod_get_index -EXPORT_SYMBOL vmlinux 0x7d35174b security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0x7d3910fb touch_atime -EXPORT_SYMBOL vmlinux 0x7d566c88 __put_cred -EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug -EXPORT_SYMBOL vmlinux 0x7d784d09 d_alloc -EXPORT_SYMBOL vmlinux 0x7d9a45dd kernel_listen -EXPORT_SYMBOL vmlinux 0x7da25571 contig_page_data -EXPORT_SYMBOL vmlinux 0x7da5d07a pci_get_device -EXPORT_SYMBOL vmlinux 0x7db3dbbd inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0x7dcc1ba5 pci_set_dma_seg_boundary -EXPORT_SYMBOL vmlinux 0x7dcc6603 inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x7dd0b61c fb_blank -EXPORT_SYMBOL vmlinux 0x7dd4d3c5 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0x7de31563 unregister_filesystem -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7dfd2eff inet_sock_destruct -EXPORT_SYMBOL vmlinux 0x7e2366d5 d_lookup -EXPORT_SYMBOL vmlinux 0x7e31a9f0 tty_name -EXPORT_SYMBOL vmlinux 0x7e347f09 simple_release_fs -EXPORT_SYMBOL vmlinux 0x7e351ff6 bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x7e37393a igrab -EXPORT_SYMBOL vmlinux 0x7e4fc49f dquot_commit -EXPORT_SYMBOL vmlinux 0x7e5707ef up_write -EXPORT_SYMBOL vmlinux 0x7e6703fa xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0x7e688bf5 iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x7e747859 open_exec -EXPORT_SYMBOL vmlinux 0x7e7df026 memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0x7e7fba25 xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x7e87227e slhc_compress -EXPORT_SYMBOL vmlinux 0x7e8b52bd have_submounts -EXPORT_SYMBOL vmlinux 0x7e9d1da2 vme_register_error_handler -EXPORT_SYMBOL vmlinux 0x7e9f1f2e get_agp_version -EXPORT_SYMBOL vmlinux 0x7e9f5049 blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0x7eb41f4e inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x7ecb001b __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x7ed57142 sock_no_connect -EXPORT_SYMBOL vmlinux 0x7ede65a7 dentry_path_raw -EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x7ee73c0c memcg_socket_limit_enabled -EXPORT_SYMBOL vmlinux 0x7ef3bfab d_tmpfile -EXPORT_SYMBOL vmlinux 0x7ef7eb8f mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f0aaeba max8925_reg_write -EXPORT_SYMBOL vmlinux 0x7f1c475f dquot_get_state -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f3777a6 from_kprojid -EXPORT_SYMBOL vmlinux 0x7f37979c of_find_matching_node_and_match -EXPORT_SYMBOL vmlinux 0x7f3bbef1 udplite_prot -EXPORT_SYMBOL vmlinux 0x7f49a7b0 down_read -EXPORT_SYMBOL vmlinux 0x7f5826bf cdrom_ioctl -EXPORT_SYMBOL vmlinux 0x7f5990d0 fsnotify_put_mark -EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done -EXPORT_SYMBOL vmlinux 0x7f6bb6e2 max8925_reg_read -EXPORT_SYMBOL vmlinux 0x7f839210 nvm_set_rqd_ppalist -EXPORT_SYMBOL vmlinux 0x7f9cfe21 nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0x7fa6371b scsi_scan_host -EXPORT_SYMBOL vmlinux 0x7fad3466 bio_map_kern -EXPORT_SYMBOL vmlinux 0x7fb97986 mmc_put_card -EXPORT_SYMBOL vmlinux 0x7fcab5c0 __nd_driver_register -EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fec409a input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x7fffc7ef do_truncate -EXPORT_SYMBOL vmlinux 0x80224e26 pci_enable_device_io -EXPORT_SYMBOL vmlinux 0x8074fa27 gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x80815468 elv_unregister_queue -EXPORT_SYMBOL vmlinux 0x80831e1d phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0x80a49d98 mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0x80ad1b36 pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0x80b5a9e6 security_d_instantiate -EXPORT_SYMBOL vmlinux 0x80c4c5c8 bioset_free -EXPORT_SYMBOL vmlinux 0x80c9b183 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80f9940c mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0x80fc99c7 set_groups -EXPORT_SYMBOL vmlinux 0x810f402e nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x81129e22 unregister_binfmt -EXPORT_SYMBOL vmlinux 0x812fb320 simple_transaction_get -EXPORT_SYMBOL vmlinux 0x81466f65 xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x814d66a1 elevator_init -EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x815c56d0 cpu_present_mask -EXPORT_SYMBOL vmlinux 0x816396f0 tcp_parse_options -EXPORT_SYMBOL vmlinux 0x8166c2b9 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x8169d8e9 pci_release_region -EXPORT_SYMBOL vmlinux 0x817e9b49 inet_register_protosw -EXPORT_SYMBOL vmlinux 0x819c41f8 ps2_init -EXPORT_SYMBOL vmlinux 0x81a07f4e _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0x81ab8948 may_umount_tree -EXPORT_SYMBOL vmlinux 0x81b7a9f3 __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x81cb6bb1 __nd_iostat_start -EXPORT_SYMBOL vmlinux 0x81cd0991 kernel_connect -EXPORT_SYMBOL vmlinux 0x81d33fc0 posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0x81d34475 scsi_cmd_blk_ioctl -EXPORT_SYMBOL vmlinux 0x81da0c4c noop_llseek -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81e75c52 mntput -EXPORT_SYMBOL vmlinux 0x81e93697 vga_client_register -EXPORT_SYMBOL vmlinux 0x81f00e23 blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill -EXPORT_SYMBOL vmlinux 0x8224b795 tty_port_init -EXPORT_SYMBOL vmlinux 0x822c5a8c fence_add_callback -EXPORT_SYMBOL vmlinux 0x8235e85b fsync_bdev -EXPORT_SYMBOL vmlinux 0x824710bd fddi_change_mtu -EXPORT_SYMBOL vmlinux 0x824759f1 secpath_dup -EXPORT_SYMBOL vmlinux 0x824e25f1 md_write_start -EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x828547e4 __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes -EXPORT_SYMBOL vmlinux 0x82a2ee4c blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0x82a66f19 buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0x82ac0fda blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched -EXPORT_SYMBOL vmlinux 0x82c1145a of_find_i2c_device_by_node -EXPORT_SYMBOL vmlinux 0x82cd540a atomic64_and -EXPORT_SYMBOL vmlinux 0x82e5a238 vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x8320e4dd blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0x832fa791 __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x833ae349 kmem_cache_size -EXPORT_SYMBOL vmlinux 0x8340dd81 inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0x83539af6 bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0x835c1855 blk_queue_find_tag -EXPORT_SYMBOL vmlinux 0x8372cd2f __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x83755bb9 inet_accept -EXPORT_SYMBOL vmlinux 0x837a0681 set_page_dirty -EXPORT_SYMBOL vmlinux 0x8389f662 vga_tryget -EXPORT_SYMBOL vmlinux 0x838ef723 netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x838fcd4f kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init -EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83c8d676 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0x842dfe77 pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0x84333816 inet_select_addr -EXPORT_SYMBOL vmlinux 0x8438ac64 bio_clone_bioset -EXPORT_SYMBOL vmlinux 0x843a359f twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0x8442d7f5 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0x8442fcf6 phy_register_fixup -EXPORT_SYMBOL vmlinux 0x844404cf ISA_DMA_THRESHOLD -EXPORT_SYMBOL vmlinux 0x845cbb93 devm_gpiod_put -EXPORT_SYMBOL vmlinux 0x84689e73 tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x846ba2fb __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0x8495556b release_pages -EXPORT_SYMBOL vmlinux 0x849669e5 tcf_hash_cleanup -EXPORT_SYMBOL vmlinux 0x849c9719 netdev_warn -EXPORT_SYMBOL vmlinux 0x84b183ae strncmp -EXPORT_SYMBOL vmlinux 0x84bd69bf dq_data_lock -EXPORT_SYMBOL vmlinux 0x84cb8b1a of_platform_bus_probe -EXPORT_SYMBOL vmlinux 0x84f7ae82 input_reset_device -EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload -EXPORT_SYMBOL vmlinux 0x8531992f fs_bio_set -EXPORT_SYMBOL vmlinux 0x85429bf3 input_set_abs_params -EXPORT_SYMBOL vmlinux 0x85450bca do_splice_from -EXPORT_SYMBOL vmlinux 0x8566bac7 iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x859f9f67 security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85bdfa81 param_get_ulong -EXPORT_SYMBOL vmlinux 0x85bf44ed xfrm_unregister_mode -EXPORT_SYMBOL vmlinux 0x85d484c1 blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85ebcec5 netif_rx_ni -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85f76cbb mdiobus_scan -EXPORT_SYMBOL vmlinux 0x85fa0dc0 inet6_getname -EXPORT_SYMBOL vmlinux 0x85ffbf22 dcache_dir_close -EXPORT_SYMBOL vmlinux 0x86018def __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0x86182550 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0x862f934b ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0x864de2d8 param_get_ushort -EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0x866a04c7 genphy_read_status -EXPORT_SYMBOL vmlinux 0x8687cd2d disk_stack_limits -EXPORT_SYMBOL vmlinux 0x86897ebf fb_pan_display -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x8690b5b9 qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x86a4889a kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0x86aaf2d1 keyring_clear -EXPORT_SYMBOL vmlinux 0x86c67be2 up_read -EXPORT_SYMBOL vmlinux 0x86ccfa0a pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x86cd9dde dquot_enable -EXPORT_SYMBOL vmlinux 0x86d022e7 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x87075c28 key_task_permission -EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags -EXPORT_SYMBOL vmlinux 0x873c8352 mmc_start_req -EXPORT_SYMBOL vmlinux 0x87579de4 tty_lock -EXPORT_SYMBOL vmlinux 0x875afacc genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale -EXPORT_SYMBOL vmlinux 0x87cca441 pci_bus_get -EXPORT_SYMBOL vmlinux 0x87f9031a take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x88007aba blk_queue_free_tags -EXPORT_SYMBOL vmlinux 0x8808cca6 PDE_DATA -EXPORT_SYMBOL vmlinux 0x880a616e netif_receive_skb -EXPORT_SYMBOL vmlinux 0x880ed172 vfs_rename -EXPORT_SYMBOL vmlinux 0x88279f25 cpm_muram_alloc -EXPORT_SYMBOL vmlinux 0x882891b0 of_n_addr_cells -EXPORT_SYMBOL vmlinux 0x883df17a cont_write_begin -EXPORT_SYMBOL vmlinux 0x884371d2 uart_unregister_driver -EXPORT_SYMBOL vmlinux 0x8843fddb __starget_for_each_device -EXPORT_SYMBOL vmlinux 0x88695f45 of_find_node_with_property -EXPORT_SYMBOL vmlinux 0x88742e51 xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x8874f60d dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x8879bbea softnet_data -EXPORT_SYMBOL vmlinux 0x8890ab7f fsl_ifc_ctrl_dev -EXPORT_SYMBOL vmlinux 0x889c486f deactivate_locked_super -EXPORT_SYMBOL vmlinux 0x88a3d219 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0x88a7b8e8 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x88dcaee9 filemap_fault -EXPORT_SYMBOL vmlinux 0x88f8c69c clear_inode -EXPORT_SYMBOL vmlinux 0x890011db ata_std_end_eh -EXPORT_SYMBOL vmlinux 0x8909cbfa tty_port_close_start -EXPORT_SYMBOL vmlinux 0x890a7bf1 param_set_long -EXPORT_SYMBOL vmlinux 0x8912e121 param_set_byte -EXPORT_SYMBOL vmlinux 0x891fbb10 mempool_destroy -EXPORT_SYMBOL vmlinux 0x893e5529 rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0x893e9e4d nvm_free_rqd_ppalist -EXPORT_SYMBOL vmlinux 0x89797060 _raw_read_lock -EXPORT_SYMBOL vmlinux 0x89958baa mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0x8995cc74 security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0x89a340bc blk_finish_request -EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0x89b8c1fc blk_init_queue_node -EXPORT_SYMBOL vmlinux 0x89d1f37f dev_mc_add -EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x89df28d7 vfs_iter_write -EXPORT_SYMBOL vmlinux 0x89ec2afd xfrm_state_insert -EXPORT_SYMBOL vmlinux 0x89f596f7 dquot_acquire -EXPORT_SYMBOL vmlinux 0x89f5eedf tcf_destroy_chain -EXPORT_SYMBOL vmlinux 0x8a14f5b0 skb_split -EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies -EXPORT_SYMBOL vmlinux 0x8a2f7be8 tcf_hash_insert -EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a4d59c7 set_blocksize -EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning -EXPORT_SYMBOL vmlinux 0x8a585431 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0x8a5beb10 kernel_sendpage -EXPORT_SYMBOL vmlinux 0x8a769b4d iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a853bba pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x8a86d7f8 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8aac11f1 kobject_add -EXPORT_SYMBOL vmlinux 0x8ab4079e atomic64_add -EXPORT_SYMBOL vmlinux 0x8afafe78 eth_gro_receive -EXPORT_SYMBOL vmlinux 0x8aff29c4 dget_parent -EXPORT_SYMBOL vmlinux 0x8b1217ae unmap_underlying_metadata -EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last -EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x8b5b673a mmc_flush_cache -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b6f2e58 agp_generic_enable -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b85f7bd pci_select_bars -EXPORT_SYMBOL vmlinux 0x8b99902a scsi_dma_map -EXPORT_SYMBOL vmlinux 0x8ba210a9 security_dentry_init_security -EXPORT_SYMBOL vmlinux 0x8baa70d2 dev_load -EXPORT_SYMBOL vmlinux 0x8bae71a1 keyring_search -EXPORT_SYMBOL vmlinux 0x8bb5b3cc devm_gpiod_get -EXPORT_SYMBOL vmlinux 0x8bcad5f5 pcie_port_service_register -EXPORT_SYMBOL vmlinux 0x8bd76682 phy_set_max_speed -EXPORT_SYMBOL vmlinux 0x8bddf512 inet_listen -EXPORT_SYMBOL vmlinux 0x8bf2ae1f fsl_lbc_addr -EXPORT_SYMBOL vmlinux 0x8bfee241 nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x8c0ddade netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0x8c119a3b simple_nosetlease -EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 -EXPORT_SYMBOL vmlinux 0x8c533c3c of_get_min_tck -EXPORT_SYMBOL vmlinux 0x8c536459 __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x8c542e0e neigh_connected_output -EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x8c85c695 dqput -EXPORT_SYMBOL vmlinux 0x8c9677a5 md_unregister_thread -EXPORT_SYMBOL vmlinux 0x8cbf0cff generic_file_open -EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep -EXPORT_SYMBOL vmlinux 0x8ccdcf1d dquot_scan_active -EXPORT_SYMBOL vmlinux 0x8cdb16e5 is_bad_inode -EXPORT_SYMBOL vmlinux 0x8cdf3a08 mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0x8ce1ac2c skb_queue_purge -EXPORT_SYMBOL vmlinux 0x8d015dd4 __bswapdi2 -EXPORT_SYMBOL vmlinux 0x8d070907 devm_kvasprintf -EXPORT_SYMBOL vmlinux 0x8d26a900 napi_gro_frags -EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d635820 register_quota_format -EXPORT_SYMBOL vmlinux 0x8d6b2ce1 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x8d72495b __getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d77e4ef __lock_page -EXPORT_SYMBOL vmlinux 0x8d884727 d_invalidate -EXPORT_SYMBOL vmlinux 0x8da37eb7 md_register_thread -EXPORT_SYMBOL vmlinux 0x8db00974 tcf_unregister_action -EXPORT_SYMBOL vmlinux 0x8dc5218c mmc_alloc_host -EXPORT_SYMBOL vmlinux 0x8dc7d113 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x8dca0cc6 blkdev_put -EXPORT_SYMBOL vmlinux 0x8de0b5ac mempool_create -EXPORT_SYMBOL vmlinux 0x8e224482 consume_skb -EXPORT_SYMBOL vmlinux 0x8e5cb0c5 uart_write_wakeup -EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x8e82c3ce scsi_device_get -EXPORT_SYMBOL vmlinux 0x8e888ec3 cpumask_next_and -EXPORT_SYMBOL vmlinux 0x8e8a0e2b blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x8e8d58da diu_ops -EXPORT_SYMBOL vmlinux 0x8e90cc3d ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x8ec04552 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0x8ee94c5b pci_iomap_range -EXPORT_SYMBOL vmlinux 0x8ef98991 of_translate_dma_address -EXPORT_SYMBOL vmlinux 0x8f06249c con_copy_unimap -EXPORT_SYMBOL vmlinux 0x8f2e5b09 blk_end_request -EXPORT_SYMBOL vmlinux 0x8f334870 dev_uc_add -EXPORT_SYMBOL vmlinux 0x8f567734 led_set_brightness -EXPORT_SYMBOL vmlinux 0x8f5e3766 nvdimm_revalidate_disk -EXPORT_SYMBOL vmlinux 0x8f64f111 generic_write_end -EXPORT_SYMBOL vmlinux 0x8f803e32 skb_copy_expand -EXPORT_SYMBOL vmlinux 0x8f85f835 prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x8f949e2b pci_disable_device -EXPORT_SYMBOL vmlinux 0x8fa434e3 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0x8fb9dbee jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0x8fbade31 neigh_ifdown -EXPORT_SYMBOL vmlinux 0x8fbf37e0 profile_pc -EXPORT_SYMBOL vmlinux 0x8fbf7a0d proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0x8fc0aca9 __pagevec_lru_add -EXPORT_SYMBOL vmlinux 0x8fc15bf6 iommu_tbl_range_free -EXPORT_SYMBOL vmlinux 0x8fced70c sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0x8ff9a883 follow_up -EXPORT_SYMBOL vmlinux 0x8ffda858 agp_copy_info -EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 -EXPORT_SYMBOL vmlinux 0x902df6f0 udp_seq_open -EXPORT_SYMBOL vmlinux 0x902e8ca0 buffer_migrate_page -EXPORT_SYMBOL vmlinux 0x9031427a md_finish_reshape -EXPORT_SYMBOL vmlinux 0x903a6da2 sock_sendmsg -EXPORT_SYMBOL vmlinux 0x90433e9e mac_find_mode -EXPORT_SYMBOL vmlinux 0x9054641a poll_freewait -EXPORT_SYMBOL vmlinux 0x90695906 vme_free_consistent -EXPORT_SYMBOL vmlinux 0x90812ad8 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0x90a0903d inet_frag_find -EXPORT_SYMBOL vmlinux 0x90a8e733 netif_rx -EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0x90d33363 get_disk -EXPORT_SYMBOL vmlinux 0x90d38ae6 twl6040_power -EXPORT_SYMBOL vmlinux 0x9135f1ce scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 -EXPORT_SYMBOL vmlinux 0x914a5bf6 locks_copy_conflock -EXPORT_SYMBOL vmlinux 0x915e1208 tb_ticks_per_usec -EXPORT_SYMBOL vmlinux 0x91715312 sprintf -EXPORT_SYMBOL vmlinux 0x9175c2f3 phy_suspend -EXPORT_SYMBOL vmlinux 0x918c06b5 scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0x919d1163 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x91ae8f97 netif_device_attach -EXPORT_SYMBOL vmlinux 0x91cfa487 sg_miter_next -EXPORT_SYMBOL vmlinux 0x91d2c897 scsi_ioctl -EXPORT_SYMBOL vmlinux 0x91dee03a vme_slot_num -EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 -EXPORT_SYMBOL vmlinux 0x920c60c9 neigh_update -EXPORT_SYMBOL vmlinux 0x921ada35 i2c_put_adapter -EXPORT_SYMBOL vmlinux 0x9225b8d8 pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0x92333eca generic_pipe_buf_steal -EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x92431005 tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0x9244c68c simple_link -EXPORT_SYMBOL vmlinux 0x92640372 kmem_cache_create -EXPORT_SYMBOL vmlinux 0x9269b50b max8998_read_reg -EXPORT_SYMBOL vmlinux 0x928cbf0e nf_log_set -EXPORT_SYMBOL vmlinux 0x92a47640 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm -EXPORT_SYMBOL vmlinux 0x92df30f7 block_write_end -EXPORT_SYMBOL vmlinux 0x92ef2402 to_ndd -EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x9306b31d mmc_can_erase -EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0x932d98c1 cpm_muram_dma -EXPORT_SYMBOL vmlinux 0x933ab1d1 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0x9362d687 mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0x9363d2de filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x9387a6b3 iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0x939a5d2a register_gifconf -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93bc0bee alloc_file -EXPORT_SYMBOL vmlinux 0x93c896fc md_write_end -EXPORT_SYMBOL vmlinux 0x93cae10a blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x93e0638f xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x93ebc165 gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0x93f57924 phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages -EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int -EXPORT_SYMBOL vmlinux 0x940a01c1 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x940f9cf6 kblockd_schedule_delayed_work -EXPORT_SYMBOL vmlinux 0x941bdf20 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x943c2203 dquot_quotactl_ops -EXPORT_SYMBOL vmlinux 0x943c827f of_get_ibm_chip_id -EXPORT_SYMBOL vmlinux 0x94549c67 pid_task -EXPORT_SYMBOL vmlinux 0x947a02b0 skb_append_datato_frags -EXPORT_SYMBOL vmlinux 0x9486506f simple_empty -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x949883bf __frontswap_test -EXPORT_SYMBOL vmlinux 0x94992793 generic_file_llseek -EXPORT_SYMBOL vmlinux 0x94b541b5 cpu_active_mask -EXPORT_SYMBOL vmlinux 0x94eea794 getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x94fc9032 pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0x9508964a mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x950fce72 pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0x9514151a _mcount -EXPORT_SYMBOL vmlinux 0x9524b0ae _outsb -EXPORT_SYMBOL vmlinux 0x953977f7 filemap_map_pages -EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init -EXPORT_SYMBOL vmlinux 0x954c4133 mount_single -EXPORT_SYMBOL vmlinux 0x954cec2a inode_set_flags -EXPORT_SYMBOL vmlinux 0x95c63339 prepare_creds -EXPORT_SYMBOL vmlinux 0x95e722ef blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x95ee33ef __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x960dfaf5 radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0x961e8482 tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0x9634df63 inet_recvmsg -EXPORT_SYMBOL vmlinux 0x963adc4d led_blink_set_oneshot -EXPORT_SYMBOL vmlinux 0x963c8702 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0x963ee5c8 genl_notify -EXPORT_SYMBOL vmlinux 0x964c275d kernel_getpeername -EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x96ae9d4f clear_user_page -EXPORT_SYMBOL vmlinux 0x96c834a7 ab3100_event_unregister -EXPORT_SYMBOL vmlinux 0x96cca30e xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96dbce34 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0x96e4330f bdi_register_dev -EXPORT_SYMBOL vmlinux 0x96f83ae3 agp_bridge -EXPORT_SYMBOL vmlinux 0x97111631 dmam_alloc_coherent -EXPORT_SYMBOL vmlinux 0x97255bdf strlen -EXPORT_SYMBOL vmlinux 0x9726d2c8 blk_init_tags -EXPORT_SYMBOL vmlinux 0x97303dab sync_inodes_sb -EXPORT_SYMBOL vmlinux 0x973d0eeb iget_locked -EXPORT_SYMBOL vmlinux 0x9748927f _outsw_ns -EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x977cf784 to_nd_btt -EXPORT_SYMBOL vmlinux 0x97818392 sock_wake_async -EXPORT_SYMBOL vmlinux 0x978b3c1b simple_statfs -EXPORT_SYMBOL vmlinux 0x978f4a47 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state -EXPORT_SYMBOL vmlinux 0x97b3c085 vlan_vid_add -EXPORT_SYMBOL vmlinux 0x97c7eedc page_cache_next_hole -EXPORT_SYMBOL vmlinux 0x97ce91ff mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0x97db3eec led_update_brightness -EXPORT_SYMBOL vmlinux 0x97fa3df0 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x981461d6 ether_setup -EXPORT_SYMBOL vmlinux 0x9814c7a5 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x9838d891 pci_set_master -EXPORT_SYMBOL vmlinux 0x983c11ee ping_prot -EXPORT_SYMBOL vmlinux 0x9845880b blk_queue_stack_limits -EXPORT_SYMBOL vmlinux 0x98593082 vm_insert_page -EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x9873e2a9 capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0x9890175a prepare_binprm -EXPORT_SYMBOL vmlinux 0x9894e21c replace_mount_options -EXPORT_SYMBOL vmlinux 0x989cd729 mmc_detect_change -EXPORT_SYMBOL vmlinux 0x98ad18da netif_schedule_queue -EXPORT_SYMBOL vmlinux 0x98c2e16b jbd2_journal_load -EXPORT_SYMBOL vmlinux 0x98c7feb7 qdisc_destroy -EXPORT_SYMBOL vmlinux 0x98d97ace dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x98e68eca cancel_delayed_work -EXPORT_SYMBOL vmlinux 0x98fe7882 DMA_MODE_READ -EXPORT_SYMBOL vmlinux 0x99112892 devm_gpiod_put_array -EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x993ee5f6 of_get_mac_address -EXPORT_SYMBOL vmlinux 0x994f444f jbd2_journal_file_inode -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x995d05b9 netif_napi_add -EXPORT_SYMBOL vmlinux 0x996120ba generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x99697780 dentry_needs_remove_privs -EXPORT_SYMBOL vmlinux 0x9970c01f sk_free -EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x999b88dc forget_cached_acl -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99af1a4b dev_mc_flush -EXPORT_SYMBOL vmlinux 0x99afe916 _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0x99b56e6a pcibios_fixup_bus -EXPORT_SYMBOL vmlinux 0x99bb8806 memmove -EXPORT_SYMBOL vmlinux 0x99bc8bb4 tcp_md5_hash_header -EXPORT_SYMBOL vmlinux 0x99c67975 blk_integrity_merge_bio -EXPORT_SYMBOL vmlinux 0x99c88d30 tcp_rcv_established -EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering -EXPORT_SYMBOL vmlinux 0x99de958d free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0x9a06eaff xfrm_input_resume -EXPORT_SYMBOL vmlinux 0x9a0a0c81 bdevname -EXPORT_SYMBOL vmlinux 0x9a0cd836 mmc_read_bkops_status -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval -EXPORT_SYMBOL vmlinux 0x9a38a1b7 inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x9a397840 dev_close -EXPORT_SYMBOL vmlinux 0x9a4447e8 msi_bitmap_alloc_hwirqs -EXPORT_SYMBOL vmlinux 0x9a56077d phy_ethtool_gset -EXPORT_SYMBOL vmlinux 0x9a8228bf search_binary_handler -EXPORT_SYMBOL vmlinux 0x9a92ec99 ppp_unit_number -EXPORT_SYMBOL vmlinux 0x9aa4bc24 d_instantiate_no_diralias -EXPORT_SYMBOL vmlinux 0x9ab0a51b simple_readpage -EXPORT_SYMBOL vmlinux 0x9ab149a7 __ip_select_ident -EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach -EXPORT_SYMBOL vmlinux 0x9afaa03e vm_map_ram -EXPORT_SYMBOL vmlinux 0x9afdb02d bio_phys_segments -EXPORT_SYMBOL vmlinux 0x9b007ea4 __devm_release_region -EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page -EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize -EXPORT_SYMBOL vmlinux 0x9b80c455 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x9ba5cdb9 bitmap_endwrite -EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split -EXPORT_SYMBOL vmlinux 0x9bcb50af truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0x9bd343d2 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x9c015869 xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x9c0a8c3e pci_disable_msi -EXPORT_SYMBOL vmlinux 0x9c106817 d_obtain_root -EXPORT_SYMBOL vmlinux 0x9c121c14 phy_read_mmd_indirect -EXPORT_SYMBOL vmlinux 0x9c1a929a clear_nlink -EXPORT_SYMBOL vmlinux 0x9c2d6df2 input_release_device -EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x9c75698b grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0x9c832c2a mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0x9ca3b122 tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0x9ca59395 netdev_boot_setup_check -EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cb56704 phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0x9cb79a1f bio_endio -EXPORT_SYMBOL vmlinux 0x9cc85d9f proto_register -EXPORT_SYMBOL vmlinux 0x9cde5925 __register_binfmt -EXPORT_SYMBOL vmlinux 0x9ce269e7 inode_init_once -EXPORT_SYMBOL vmlinux 0x9ce3f83f nvram_write_byte -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d14983a ppc_enable_pmcs -EXPORT_SYMBOL vmlinux 0x9d1a8f2e serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0x9d1d8110 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0x9d26839f key_payload_reserve -EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init -EXPORT_SYMBOL vmlinux 0x9d50d39a kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x9d5f2766 vme_lm_request -EXPORT_SYMBOL vmlinux 0x9d669763 memcpy -EXPORT_SYMBOL vmlinux 0x9d6a54c2 flex_array_get_ptr -EXPORT_SYMBOL vmlinux 0x9d72229b fsl_ifc_find -EXPORT_SYMBOL vmlinux 0x9d7ce8dd _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0x9dccbec1 i8042_install_filter -EXPORT_SYMBOL vmlinux 0x9dd4a322 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0x9dee9a84 cpm2_immr -EXPORT_SYMBOL vmlinux 0x9dfe7307 lz4_decompress_unknownoutputsize -EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e1a3f29 read_cache_pages -EXPORT_SYMBOL vmlinux 0x9e2c54cd copy_to_iter -EXPORT_SYMBOL vmlinux 0x9e44229c of_get_next_available_child -EXPORT_SYMBOL vmlinux 0x9e476240 scsi_cmd_ioctl -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e54ad1e tcp_init_cgroup -EXPORT_SYMBOL vmlinux 0x9e5886cc ip_route_input_noref -EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e66e0d2 kdb_current_task -EXPORT_SYMBOL vmlinux 0x9e6bc64b __alloc_pages_nodemask -EXPORT_SYMBOL vmlinux 0x9e70b07c lwtunnel_output -EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value -EXPORT_SYMBOL vmlinux 0x9e7a6ffc load_nls_default -EXPORT_SYMBOL vmlinux 0x9e7adad3 inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0x9e8f6d8e copy_page_from_iter -EXPORT_SYMBOL vmlinux 0x9e92295c napi_consume_skb -EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9ea51f5b freezing_slow_path -EXPORT_SYMBOL vmlinux 0x9ebd09e0 lock_sock_nested -EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource -EXPORT_SYMBOL vmlinux 0x9ed87fd8 vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x9eda4718 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x9efb21aa register_netdevice -EXPORT_SYMBOL vmlinux 0x9f05e388 seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0x9f3712df xattr_full_name -EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f512115 key_put -EXPORT_SYMBOL vmlinux 0x9f661b42 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x9f6f8866 get_fs_type -EXPORT_SYMBOL vmlinux 0x9f774ae1 is_nd_btt -EXPORT_SYMBOL vmlinux 0x9f8377b6 xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0x9f87c594 of_get_ddr_timings -EXPORT_SYMBOL vmlinux 0x9f911629 idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9fdb7934 seq_path -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0xa02f6b95 of_n_size_cells -EXPORT_SYMBOL vmlinux 0xa041a858 of_match_node -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa047bc0d phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xa04c40ed pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xa06740ec bprm_change_interp -EXPORT_SYMBOL vmlinux 0xa06a22e0 of_get_parent -EXPORT_SYMBOL vmlinux 0xa06b359b neigh_resolve_output -EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init -EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa0aa86ea phy_driver_register -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0b3ad12 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0xa0d2fbf2 jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0xa0d5b404 get_gendisk -EXPORT_SYMBOL vmlinux 0xa0d9dd6d udp_ioctl -EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0e35d67 follow_pfn -EXPORT_SYMBOL vmlinux 0xa0e87d21 prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem -EXPORT_SYMBOL vmlinux 0xa0fb8439 devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa0fc8adc nf_unregister_hook -EXPORT_SYMBOL vmlinux 0xa105fc22 update_region -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa10cea11 dev_emerg -EXPORT_SYMBOL vmlinux 0xa10fc64d giveup_fpu -EXPORT_SYMBOL vmlinux 0xa1164066 jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0xa119d24c __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0xa15b4fdd of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0xa173e39b add_disk -EXPORT_SYMBOL vmlinux 0xa1860952 input_register_handler -EXPORT_SYMBOL vmlinux 0xa18d3536 __devm_request_region -EXPORT_SYMBOL vmlinux 0xa1ab0683 nobh_write_begin -EXPORT_SYMBOL vmlinux 0xa1b0abf0 input_open_device -EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode -EXPORT_SYMBOL vmlinux 0xa1c5e06d devfreq_resume_device -EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched -EXPORT_SYMBOL vmlinux 0xa1c99385 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0xa1d4380a phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create -EXPORT_SYMBOL vmlinux 0xa1f8fe75 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold -EXPORT_SYMBOL vmlinux 0xa24c6784 pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0xa25a6f4b tcp_getsockopt -EXPORT_SYMBOL vmlinux 0xa268c55c vlan_uses_dev -EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0xa2a9b16d bio_clone_fast -EXPORT_SYMBOL vmlinux 0xa2b35396 sock_wfree -EXPORT_SYMBOL vmlinux 0xa2bbed37 crash_shutdown_register -EXPORT_SYMBOL vmlinux 0xa2d1e812 ip_route_me_harder -EXPORT_SYMBOL vmlinux 0xa2d2291c backlight_device_unregister -EXPORT_SYMBOL vmlinux 0xa2d9199c cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0xa2fdbcbe fence_default_wait -EXPORT_SYMBOL vmlinux 0xa303d1ff dm_ratelimit_state -EXPORT_SYMBOL vmlinux 0xa30d78ef devm_get_gpiod_from_child -EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set -EXPORT_SYMBOL vmlinux 0xa352d709 dev_uc_unsync -EXPORT_SYMBOL vmlinux 0xa3681407 jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0xa3688964 pci_scan_slot -EXPORT_SYMBOL vmlinux 0xa36e903e rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0xa36f1645 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0xa37b221e md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0xa381944f dql_reset -EXPORT_SYMBOL vmlinux 0xa38b4530 jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0xa38e691a ioremap_bot -EXPORT_SYMBOL vmlinux 0xa39b4cf2 udelay -EXPORT_SYMBOL vmlinux 0xa39cace3 bdi_init -EXPORT_SYMBOL vmlinux 0xa3abc422 abort_exclusive_wait -EXPORT_SYMBOL vmlinux 0xa3abeaf3 phy_driver_unregister -EXPORT_SYMBOL vmlinux 0xa3b76660 netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0xa3bc1eb7 param_get_byte -EXPORT_SYMBOL vmlinux 0xa3d2a6c6 posix_unblock_lock -EXPORT_SYMBOL vmlinux 0xa3dbb7a7 xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xa3e75545 flush_tlb_kernel_range -EXPORT_SYMBOL vmlinux 0xa4126f4d csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0xa418e11c rwsem_down_read_failed -EXPORT_SYMBOL vmlinux 0xa4235beb devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xa424b532 pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf -EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset -EXPORT_SYMBOL vmlinux 0xa4924684 reservation_object_reserve_shared -EXPORT_SYMBOL vmlinux 0xa4a94d26 find_next_bit_le -EXPORT_SYMBOL vmlinux 0xa4b300d3 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0xa4b5beeb netdev_crit -EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep -EXPORT_SYMBOL vmlinux 0xa4cccb36 swiotlb_dma_supported -EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush -EXPORT_SYMBOL vmlinux 0xa4dae10d vga_con -EXPORT_SYMBOL vmlinux 0xa500e1f7 neigh_seq_next -EXPORT_SYMBOL vmlinux 0xa5189e41 user_revoke -EXPORT_SYMBOL vmlinux 0xa52ad8b9 __d_drop -EXPORT_SYMBOL vmlinux 0xa536beac dma_pool_create -EXPORT_SYMBOL vmlinux 0xa540afff pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa56b8ab2 flex_array_free -EXPORT_SYMBOL vmlinux 0xa587685a update_devfreq -EXPORT_SYMBOL vmlinux 0xa59412cd pipe_lock -EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes -EXPORT_SYMBOL vmlinux 0xa5a3ff3f xfrm_init_state -EXPORT_SYMBOL vmlinux 0xa5ac80c3 of_find_compatible_node -EXPORT_SYMBOL vmlinux 0xa5b59b2d phy_init_eee -EXPORT_SYMBOL vmlinux 0xa5c690bd pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0xa5f20eec agp_generic_insert_memory -EXPORT_SYMBOL vmlinux 0xa61fdb57 sget_userns -EXPORT_SYMBOL vmlinux 0xa63248ba abx500_get_register_interruptible -EXPORT_SYMBOL vmlinux 0xa6410fd0 sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0xa653bf8a end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0xa65972b8 _memcpy_toio -EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa68bcd31 cfb_copyarea -EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0xa6c26f67 __module_put_and_exit -EXPORT_SYMBOL vmlinux 0xa6df8e11 security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function -EXPORT_SYMBOL vmlinux 0xa70f9939 tty_do_resize -EXPORT_SYMBOL vmlinux 0xa720678c lg_global_lock -EXPORT_SYMBOL vmlinux 0xa732a2e8 wait_iff_congested -EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 -EXPORT_SYMBOL vmlinux 0xa74f4e9b ida_simple_get -EXPORT_SYMBOL vmlinux 0xa7697098 __skb_get_hash -EXPORT_SYMBOL vmlinux 0xa78d9eb7 slhc_uncompress -EXPORT_SYMBOL vmlinux 0xa79c55f7 twl6040_set_bits -EXPORT_SYMBOL vmlinux 0xa7a28908 __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0xa7b6cb5e of_get_next_parent -EXPORT_SYMBOL vmlinux 0xa7bfd922 of_device_unregister -EXPORT_SYMBOL vmlinux 0xa7c0023e nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0xa7e1a92c sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0xa7e94902 kmap_pte -EXPORT_SYMBOL vmlinux 0xa7ea6809 copy_strings_kernel -EXPORT_SYMBOL vmlinux 0xa808a46c of_device_is_big_endian -EXPORT_SYMBOL vmlinux 0xa8147822 iommu_tbl_range_alloc -EXPORT_SYMBOL vmlinux 0xa81ef024 filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xa8209dcd inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0xa82468c7 security_path_truncate -EXPORT_SYMBOL vmlinux 0xa842af3f tso_build_data -EXPORT_SYMBOL vmlinux 0xa842f67e pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa84e30d8 tcp_req_err -EXPORT_SYMBOL vmlinux 0xa8721b97 system_state -EXPORT_SYMBOL vmlinux 0xa879e5a0 devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0xa887f0c5 set_device_ro -EXPORT_SYMBOL vmlinux 0xa89464b7 __ashldi3 -EXPORT_SYMBOL vmlinux 0xa8f8cab9 unregister_nls -EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send -EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion -EXPORT_SYMBOL vmlinux 0xa9273e1a epapr_hypercall_start -EXPORT_SYMBOL vmlinux 0xa94a9280 dentry_update_name_case -EXPORT_SYMBOL vmlinux 0xa9571d6d DMA_MODE_WRITE -EXPORT_SYMBOL vmlinux 0xa95f208c ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa9889285 blk_integrity_register -EXPORT_SYMBOL vmlinux 0xa98c9cb0 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0xa99d47bc stop_tty -EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0xa9c906a3 security_task_getsecid -EXPORT_SYMBOL vmlinux 0xaa07c6c6 km_query -EXPORT_SYMBOL vmlinux 0xaa200afd dev_add_offload -EXPORT_SYMBOL vmlinux 0xaa2e91b3 nd_iostat_end -EXPORT_SYMBOL vmlinux 0xaa4287b0 inet6_del_offload -EXPORT_SYMBOL vmlinux 0xaa448570 mmc_of_parse -EXPORT_SYMBOL vmlinux 0xaa46e87e lg_local_unlock -EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r -EXPORT_SYMBOL vmlinux 0xaa6e4df5 _raw_write_lock_irqsave -EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa7f8d01 mmc_get_card -EXPORT_SYMBOL vmlinux 0xaa86f5ac pci_request_region -EXPORT_SYMBOL vmlinux 0xaa9293ca input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0xaa938c02 nobh_truncate_page -EXPORT_SYMBOL vmlinux 0xaa944c31 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0xaaab8067 cpu_sibling_map -EXPORT_SYMBOL vmlinux 0xaab6d623 kernel_param_lock -EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state -EXPORT_SYMBOL vmlinux 0xaadaa3c7 trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0xaae40606 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0xab0f6b33 sock_wmalloc -EXPORT_SYMBOL vmlinux 0xab228e31 csum_tcpudp_magic -EXPORT_SYMBOL vmlinux 0xab648ca2 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0xab694444 bsearch -EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog -EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab83fcaf sys_imageblit -EXPORT_SYMBOL vmlinux 0xaba2ee05 misc_register -EXPORT_SYMBOL vmlinux 0xaba3ad0c radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0xaba73a41 nobh_write_end -EXPORT_SYMBOL vmlinux 0xaba9284f of_find_net_device_by_node -EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev -EXPORT_SYMBOL vmlinux 0xabdf5f54 bio_put -EXPORT_SYMBOL vmlinux 0xabfcb4c3 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xabfe6835 phy_start_aneg -EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable -EXPORT_SYMBOL vmlinux 0xac0ca20e bitmap_unplug -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac1c8843 dump_page -EXPORT_SYMBOL vmlinux 0xac26b820 _raw_write_lock -EXPORT_SYMBOL vmlinux 0xac4cc1bc lockref_mark_dead -EXPORT_SYMBOL vmlinux 0xac5deaac fasync_helper -EXPORT_SYMBOL vmlinux 0xac6c2e5b of_find_node_by_type -EXPORT_SYMBOL vmlinux 0xac979252 inet6_register_icmp_sender -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacc3e016 phy_disconnect -EXPORT_SYMBOL vmlinux 0xacc5b5d2 csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton -EXPORT_SYMBOL vmlinux 0xacd00d01 inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0xacd0bdf7 kobject_get -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad28ff72 notify_change -EXPORT_SYMBOL vmlinux 0xad329f1a textsearch_register -EXPORT_SYMBOL vmlinux 0xad375fbb elevator_change -EXPORT_SYMBOL vmlinux 0xad3f94fa blk_get_request -EXPORT_SYMBOL vmlinux 0xad450384 blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0xad547243 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xad59796f pm860x_reg_write -EXPORT_SYMBOL vmlinux 0xad62dc84 of_dev_get -EXPORT_SYMBOL vmlinux 0xad64f53d __pagevec_release -EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event -EXPORT_SYMBOL vmlinux 0xad961743 __wait_on_bit -EXPORT_SYMBOL vmlinux 0xadc1e004 jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0xadc446d1 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0xadc7d258 generic_block_fiemap -EXPORT_SYMBOL vmlinux 0xaddce86e simple_follow_link -EXPORT_SYMBOL vmlinux 0xaddd4770 __debugger_iabr_match -EXPORT_SYMBOL vmlinux 0xadf0811d get_baudrate -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae2190b8 __brelse -EXPORT_SYMBOL vmlinux 0xae358236 fence_signal -EXPORT_SYMBOL vmlinux 0xae545f06 _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xae77a595 radix_tree_gang_lookup_slot -EXPORT_SYMBOL vmlinux 0xae7b554f bdi_register_owner -EXPORT_SYMBOL vmlinux 0xae7c0c25 page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0xae8415a2 ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0xae85a27e radix_tree_lookup -EXPORT_SYMBOL vmlinux 0xae9bfef8 kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0xaea9743d dev_uc_sync -EXPORT_SYMBOL vmlinux 0xaeab1009 __ww_mutex_lock -EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact -EXPORT_SYMBOL vmlinux 0xaf063510 _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0xaf0b81c2 lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0xaf156a97 blk_mq_add_to_requeue_list -EXPORT_SYMBOL vmlinux 0xaf2d872c prepare_to_wait -EXPORT_SYMBOL vmlinux 0xaf393731 phy_stop_interrupts -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf473afb skb_free_datagram -EXPORT_SYMBOL vmlinux 0xaf473c83 flush_tlb_range -EXPORT_SYMBOL vmlinux 0xaf52ea3e inet_offloads -EXPORT_SYMBOL vmlinux 0xaf70dd43 invalidate_bdev -EXPORT_SYMBOL vmlinux 0xaf9340a7 tcf_hash_new_index -EXPORT_SYMBOL vmlinux 0xafb0fd09 gen_pool_create -EXPORT_SYMBOL vmlinux 0xafd05cf9 inet6_ioctl -EXPORT_SYMBOL vmlinux 0xafd3d33c sget -EXPORT_SYMBOL vmlinux 0xaffb4dc4 mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0xafff3d1d mempool_alloc -EXPORT_SYMBOL vmlinux 0xb00f02a2 pagecache_write_begin -EXPORT_SYMBOL vmlinux 0xb016da80 dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0xb0229eb9 __kernel_write -EXPORT_SYMBOL vmlinux 0xb02411a2 inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xb04241b4 ida_simple_remove -EXPORT_SYMBOL vmlinux 0xb04a5443 mmc_gpio_request_cd -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb072c767 nd_namespace_blk_validate -EXPORT_SYMBOL vmlinux 0xb081b9c3 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0xb08399a3 scsi_host_get -EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0xb0b6b142 devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0xb0c2bc28 jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0xb0cdc6bc jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0f29264 clk_register_clkdevs -EXPORT_SYMBOL vmlinux 0xb107960c passthru_features_check -EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb1463e7c security_path_symlink -EXPORT_SYMBOL vmlinux 0xb15bd8fa tb_ticks_per_sec -EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table -EXPORT_SYMBOL vmlinux 0xb18b3410 tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0xb19673bc cdev_del -EXPORT_SYMBOL vmlinux 0xb1987d36 mfd_remove_devices -EXPORT_SYMBOL vmlinux 0xb19ddfe2 agp_generic_destroy_pages -EXPORT_SYMBOL vmlinux 0xb1a180fa __scsi_add_device -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1c6e787 wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xb1f0f54a netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0xb21b014f fd_install -EXPORT_SYMBOL vmlinux 0xb232325d vfs_unlink -EXPORT_SYMBOL vmlinux 0xb233762c atomic64_set -EXPORT_SYMBOL vmlinux 0xb24b5a7d lease_get_mtime -EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0xb27a631b serial8250_do_pm -EXPORT_SYMBOL vmlinux 0xb27c7066 blk_queue_unprep_rq -EXPORT_SYMBOL vmlinux 0xb2b16c9f mutex_lock -EXPORT_SYMBOL vmlinux 0xb2b91114 from_kuid -EXPORT_SYMBOL vmlinux 0xb2ba2749 sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on -EXPORT_SYMBOL vmlinux 0xb3196de6 mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0xb32d7b7e radix_tree_tagged -EXPORT_SYMBOL vmlinux 0xb3382494 fence_signal_locked -EXPORT_SYMBOL vmlinux 0xb3454f7a sock_get_timestampns -EXPORT_SYMBOL vmlinux 0xb34cef8d seq_pad -EXPORT_SYMBOL vmlinux 0xb364d7a4 blk_rq_init -EXPORT_SYMBOL vmlinux 0xb36f2658 nvm_dev_dma_free -EXPORT_SYMBOL vmlinux 0xb3773869 dst_destroy -EXPORT_SYMBOL vmlinux 0xb37995d7 page_symlink -EXPORT_SYMBOL vmlinux 0xb38253fe md_error -EXPORT_SYMBOL vmlinux 0xb382c48e flush_dcache_page -EXPORT_SYMBOL vmlinux 0xb385284d jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0xb3853c73 dquot_release -EXPORT_SYMBOL vmlinux 0xb38765ba dev_driver_string -EXPORT_SYMBOL vmlinux 0xb3a60a3f blk_rq_map_user -EXPORT_SYMBOL vmlinux 0xb3a89eb7 tty_check_change -EXPORT_SYMBOL vmlinux 0xb3ac1ec7 blk_integrity_merge_rq -EXPORT_SYMBOL vmlinux 0xb3b67f40 blk_end_request_all -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3f42e7a inet_sendmsg -EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb4010f6e pci_clear_mwi -EXPORT_SYMBOL vmlinux 0xb422bc1b sock_update_memcg -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb42e7e8b inode_needs_sync -EXPORT_SYMBOL vmlinux 0xb43578c5 bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0xb4367b38 xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem -EXPORT_SYMBOL vmlinux 0xb4584628 migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0xb46b95d5 set_cached_acl -EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0xb4884071 security_mmap_file -EXPORT_SYMBOL vmlinux 0xb494fbcb xfrm6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0xb49febbf skb_vlan_pop -EXPORT_SYMBOL vmlinux 0xb4aa53d8 inode_get_bytes -EXPORT_SYMBOL vmlinux 0xb4ac5cfd pm860x_reg_read -EXPORT_SYMBOL vmlinux 0xb4b8e671 of_phy_register_fixed_link -EXPORT_SYMBOL vmlinux 0xb505015c get_pci_dma_ops -EXPORT_SYMBOL vmlinux 0xb51b7c08 mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0xb532a7cc set_wb_congested -EXPORT_SYMBOL vmlinux 0xb532f3a3 revert_creds -EXPORT_SYMBOL vmlinux 0xb551d0d8 sock_get_timestamp -EXPORT_SYMBOL vmlinux 0xb55758ce neigh_changeaddr -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb574c0b7 skb_vlan_push -EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5a752de put_tty_driver -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5c7b388 redraw_screen -EXPORT_SYMBOL vmlinux 0xb5d9454c printk_emit -EXPORT_SYMBOL vmlinux 0xb5e2da2d vfs_link -EXPORT_SYMBOL vmlinux 0xb5f79eca abx500_startup_irq_enabled -EXPORT_SYMBOL vmlinux 0xb60d7946 block_truncate_page -EXPORT_SYMBOL vmlinux 0xb618d647 pci_request_region_exclusive -EXPORT_SYMBOL vmlinux 0xb61bd96b security_inode_readlink -EXPORT_SYMBOL vmlinux 0xb6224746 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one -EXPORT_SYMBOL vmlinux 0xb63c45b3 nd_region_acquire_lane -EXPORT_SYMBOL vmlinux 0xb6763a4b from_kgid -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif -EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit -EXPORT_SYMBOL vmlinux 0xb6ba1268 account_page_dirtied -EXPORT_SYMBOL vmlinux 0xb6f45411 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0xb7086517 jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0xb718de11 security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0xb7224b90 dump_skip -EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xb753bcc8 __ashrdi3 -EXPORT_SYMBOL vmlinux 0xb75a5349 kill_block_super -EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb79101aa of_graph_get_port_by_id -EXPORT_SYMBOL vmlinux 0xb79a4e1a store_fp_state -EXPORT_SYMBOL vmlinux 0xb79ec15d mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0xb7a6cb11 tty_port_put -EXPORT_SYMBOL vmlinux 0xb7a99781 __irq_regs -EXPORT_SYMBOL vmlinux 0xb7bac5e6 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7d24860 mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0xb7e943a3 mmc_start_bkops -EXPORT_SYMBOL vmlinux 0xb7f7abcd param_ops_bool -EXPORT_SYMBOL vmlinux 0xb816f147 dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0xb81960ca snprintf -EXPORT_SYMBOL vmlinux 0xb8269c8e gen_pool_destroy -EXPORT_SYMBOL vmlinux 0xb82e38ba page_put_link -EXPORT_SYMBOL vmlinux 0xb8370414 sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0xb83fbb25 set_posix_acl -EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 -EXPORT_SYMBOL vmlinux 0xb8854ac8 sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0xb885519c posix_lock_file -EXPORT_SYMBOL vmlinux 0xb8946f03 pcim_iomap -EXPORT_SYMBOL vmlinux 0xb89fcbd2 parent_mem_cgroup -EXPORT_SYMBOL vmlinux 0xb8a21f0c jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0xb8a82fcd blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0xb8a9c2b7 blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0xb8ba4a4d gen_new_estimator -EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0xb9142442 inet6_register_protosw -EXPORT_SYMBOL vmlinux 0xb919cbc4 inet6_offloads -EXPORT_SYMBOL vmlinux 0xb931e1de d_find_any_alias -EXPORT_SYMBOL vmlinux 0xb9373518 freeze_super -EXPORT_SYMBOL vmlinux 0xb93c388a msi_bitmap_free_hwirqs -EXPORT_SYMBOL vmlinux 0xb9a653ab block_invalidatepage -EXPORT_SYMBOL vmlinux 0xb9b9c26f jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0xb9c39289 __alloc_skb -EXPORT_SYMBOL vmlinux 0xb9de23cf iterate_mounts -EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xb9ef36bc fixed_size_llseek -EXPORT_SYMBOL vmlinux 0xba3b907d __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0xba4157ba d_rehash -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba5e9e39 call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0xba603686 lwtunnel_encap_add_ops -EXPORT_SYMBOL vmlinux 0xba6898b7 scsi_is_target_device -EXPORT_SYMBOL vmlinux 0xba78c1a8 dev_uc_del -EXPORT_SYMBOL vmlinux 0xba8cfa90 phy_init_hw -EXPORT_SYMBOL vmlinux 0xbaa3d584 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0xbac3cbf2 ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0xbad090dd generic_block_bmap -EXPORT_SYMBOL vmlinux 0xbadade79 flush_tlb_mm -EXPORT_SYMBOL vmlinux 0xbae27628 pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb13d20c get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xbb22c76b kmem_cache_free -EXPORT_SYMBOL vmlinux 0xbb2cd6d4 lock_fb_info -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb457e49 dump_truncate -EXPORT_SYMBOL vmlinux 0xbb461483 tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0xbb52b4e0 __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xbb57bdee in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xbb8084cc sk_dst_check -EXPORT_SYMBOL vmlinux 0xbb94471e dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0xbb9823b3 inet_frag_destroy -EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font -EXPORT_SYMBOL vmlinux 0xbbacd516 jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0xbbbbf294 netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0xbbc2f9dd nvm_generic_to_addr_mode -EXPORT_SYMBOL vmlinux 0xbbf41c5e alloc_anon_inode -EXPORT_SYMBOL vmlinux 0xbbf79835 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0xbc130e47 devm_clk_get -EXPORT_SYMBOL vmlinux 0xbc14965b dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0xbc316de4 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0xbc92e4fb dev_warn -EXPORT_SYMBOL vmlinux 0xbc99f5ca serio_unregister_driver -EXPORT_SYMBOL vmlinux 0xbc9a7aa7 dev_mc_del -EXPORT_SYMBOL vmlinux 0xbc9b34af tcp_conn_request -EXPORT_SYMBOL vmlinux 0xbcb2d484 pci_clear_master -EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user -EXPORT_SYMBOL vmlinux 0xbcc90e49 xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0xbcfc06f9 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0xbd02e2ba blk_init_queue -EXPORT_SYMBOL vmlinux 0xbd5eeaac d_walk -EXPORT_SYMBOL vmlinux 0xbd803510 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0xbd904c42 padata_do_parallel -EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug -EXPORT_SYMBOL vmlinux 0xbd9e5d49 __lshrdi3 -EXPORT_SYMBOL vmlinux 0xbda76df1 cpufreq_global_kobject -EXPORT_SYMBOL vmlinux 0xbdebb098 blk_peek_request -EXPORT_SYMBOL vmlinux 0xbdf4e94a sk_receive_skb -EXPORT_SYMBOL vmlinux 0xbdf9692c device_get_mac_address -EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp -EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto -EXPORT_SYMBOL vmlinux 0xbe1cc38a __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0xbe1d23a0 delete_from_page_cache -EXPORT_SYMBOL vmlinux 0xbe565032 elv_rq_merge_ok -EXPORT_SYMBOL vmlinux 0xbe8feafe inet_frag_maybe_warn_overflow -EXPORT_SYMBOL vmlinux 0xbebabbe3 datagram_poll -EXPORT_SYMBOL vmlinux 0xbecb9de7 param_ops_short -EXPORT_SYMBOL vmlinux 0xbecbc9b4 pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0xbedd04ef tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0xbef0825c blk_queue_make_request -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbefb8cf2 key_revoke -EXPORT_SYMBOL vmlinux 0xbf146162 vm_event_states -EXPORT_SYMBOL vmlinux 0xbf26bf81 genphy_update_link -EXPORT_SYMBOL vmlinux 0xbf3d350e sock_efree -EXPORT_SYMBOL vmlinux 0xbf49949b fget_raw -EXPORT_SYMBOL vmlinux 0xbf4e2982 register_netdev -EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0xbf880d7d blk_queue_invalidate_tags -EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk -EXPORT_SYMBOL vmlinux 0xbf92477b mmc_can_discard -EXPORT_SYMBOL vmlinux 0xbf925c42 idr_init -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfb6e9cb init_net -EXPORT_SYMBOL vmlinux 0xbfb8b0b7 _raw_read_lock_irqsave -EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep -EXPORT_SYMBOL vmlinux 0xbfcc17a6 ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0xbfe03990 skb_append -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xc006500e eth_header_parse -EXPORT_SYMBOL vmlinux 0xc009d7e4 iov_iter_npages -EXPORT_SYMBOL vmlinux 0xc00e93ee page_cache_prev_hole -EXPORT_SYMBOL vmlinux 0xc00f6f47 xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0xc013c688 seq_vprintf -EXPORT_SYMBOL vmlinux 0xc01cbecc blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0xc02c6e87 phy_attach_direct -EXPORT_SYMBOL vmlinux 0xc0533715 path_is_under -EXPORT_SYMBOL vmlinux 0xc068440e __kfifo_alloc -EXPORT_SYMBOL vmlinux 0xc07177d3 swiotlb_free_coherent -EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc07f0e4a tty_write_room -EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write -EXPORT_SYMBOL vmlinux 0xc089c30c ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0xc096965f fbcon_set_bitops -EXPORT_SYMBOL vmlinux 0xc097e0f5 __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0xc09a7595 pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit -EXPORT_SYMBOL vmlinux 0xc0c6341c devfreq_add_governor -EXPORT_SYMBOL vmlinux 0xc0d78b1d dm_put_table_device -EXPORT_SYMBOL vmlinux 0xc0e2a11b agp_generic_alloc_page -EXPORT_SYMBOL vmlinux 0xc0e43474 __find_get_block -EXPORT_SYMBOL vmlinux 0xc0e61f0a clkdev_alloc -EXPORT_SYMBOL vmlinux 0xc107f707 jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten -EXPORT_SYMBOL vmlinux 0xc11f576a keyring_alloc -EXPORT_SYMBOL vmlinux 0xc1273c8a vfs_readv -EXPORT_SYMBOL vmlinux 0xc12ed05d unregister_quota_format -EXPORT_SYMBOL vmlinux 0xc13a10dc flex_array_alloc -EXPORT_SYMBOL vmlinux 0xc142df6c file_ns_capable -EXPORT_SYMBOL vmlinux 0xc14a50c9 eth_header -EXPORT_SYMBOL vmlinux 0xc16e2204 inet_frags_exit_net -EXPORT_SYMBOL vmlinux 0xc171db80 simple_rmdir -EXPORT_SYMBOL vmlinux 0xc17e87b6 mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0xc18c0dec netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0xc18fe1cd generic_file_splice_read -EXPORT_SYMBOL vmlinux 0xc1942458 param_set_ulong -EXPORT_SYMBOL vmlinux 0xc1af995d km_new_mapping -EXPORT_SYMBOL vmlinux 0xc1b3ab32 agp_find_bridge -EXPORT_SYMBOL vmlinux 0xc1c04dc3 netdev_printk -EXPORT_SYMBOL vmlinux 0xc1c27300 migrate_page -EXPORT_SYMBOL vmlinux 0xc1c5f3ae padata_add_cpu -EXPORT_SYMBOL vmlinux 0xc1c8c31c of_mm_gpiochip_remove -EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1dcf85d i2c_get_adapter -EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla -EXPORT_SYMBOL vmlinux 0xc1eba391 dma_sync_wait -EXPORT_SYMBOL vmlinux 0xc222222b ipv6_select_ident -EXPORT_SYMBOL vmlinux 0xc2395f25 sock_no_listen -EXPORT_SYMBOL vmlinux 0xc23c1366 dquot_quota_sync -EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup -EXPORT_SYMBOL vmlinux 0xc24a8b13 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0xc2521542 page_follow_link_light -EXPORT_SYMBOL vmlinux 0xc2625bae __napi_schedule -EXPORT_SYMBOL vmlinux 0xc26a1aed call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0xc27327fc blk_alloc_queue_node -EXPORT_SYMBOL vmlinux 0xc29ff741 __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0xc2a0d10e of_device_get_match_data -EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xc2b6b541 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0xc2bb16a0 pci_platform_rom -EXPORT_SYMBOL vmlinux 0xc2bb1fe4 neigh_xmit -EXPORT_SYMBOL vmlinux 0xc2c0b7c8 gen_pool_alloc -EXPORT_SYMBOL vmlinux 0xc2cf44fd mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0xc2d711e1 krealloc -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2fab19c ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0xc2fcf5e1 zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0xc3094b50 dm_unregister_target -EXPORT_SYMBOL vmlinux 0xc3281608 i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0xc355c061 tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0xc368849f nvram_sync -EXPORT_SYMBOL vmlinux 0xc37014a6 agp_free_memory -EXPORT_SYMBOL vmlinux 0xc3853dd5 zpool_register_driver -EXPORT_SYMBOL vmlinux 0xc3854ded param_ops_uint -EXPORT_SYMBOL vmlinux 0xc3b246f7 pneigh_lookup -EXPORT_SYMBOL vmlinux 0xc3c1080d neigh_table_clear -EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0xc3d34f14 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0xc3de189c thaw_bdev -EXPORT_SYMBOL vmlinux 0xc3e838cd blk_integrity_compare -EXPORT_SYMBOL vmlinux 0xc3e87b3a put_filp -EXPORT_SYMBOL vmlinux 0xc3f6d78e eth_header_cache -EXPORT_SYMBOL vmlinux 0xc4166831 vme_bus_num -EXPORT_SYMBOL vmlinux 0xc41a84d3 unregister_md_personality -EXPORT_SYMBOL vmlinux 0xc41f0516 node_states -EXPORT_SYMBOL vmlinux 0xc442ab74 dev_change_proto_down -EXPORT_SYMBOL vmlinux 0xc4566c30 request_key_async -EXPORT_SYMBOL vmlinux 0xc45755de find_next_zero_bit_le -EXPORT_SYMBOL vmlinux 0xc468d4a5 sk_alloc -EXPORT_SYMBOL vmlinux 0xc4707f91 i2c_del_adapter -EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr -EXPORT_SYMBOL vmlinux 0xc476a27d kern_unmount -EXPORT_SYMBOL vmlinux 0xc47ca3ef get_mm_exe_file -EXPORT_SYMBOL vmlinux 0xc47cdf9c _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup -EXPORT_SYMBOL vmlinux 0xc49f5f65 phy_resume -EXPORT_SYMBOL vmlinux 0xc4b8d05c devm_memremap -EXPORT_SYMBOL vmlinux 0xc4bcd5a2 dev_get_flags -EXPORT_SYMBOL vmlinux 0xc4c62370 pci_release_regions -EXPORT_SYMBOL vmlinux 0xc4c696b9 pci_set_power_state -EXPORT_SYMBOL vmlinux 0xc4dc36a7 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0xc4e1d9a7 __check_sticky -EXPORT_SYMBOL vmlinux 0xc4e66d66 try_to_writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0xc4f81a7d of_phy_find_device -EXPORT_SYMBOL vmlinux 0xc4fb0e08 serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0xc50ff8a0 blk_requeue_request -EXPORT_SYMBOL vmlinux 0xc5426519 ps2_drain -EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 -EXPORT_SYMBOL vmlinux 0xc55a63ee of_count_phandle_with_args -EXPORT_SYMBOL vmlinux 0xc55de23c percpu_counter_set -EXPORT_SYMBOL vmlinux 0xc59486f4 force_sig -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc59f600b fib_default_rule_add -EXPORT_SYMBOL vmlinux 0xc5ade8d5 phy_print_status -EXPORT_SYMBOL vmlinux 0xc5b549c0 vfs_iter_read -EXPORT_SYMBOL vmlinux 0xc5d30b82 kernel_sock_ioctl -EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot -EXPORT_SYMBOL vmlinux 0xc5dbf9e8 audit_log_task_info -EXPORT_SYMBOL vmlinux 0xc5dfed7f nf_log_unregister -EXPORT_SYMBOL vmlinux 0xc5e65e4f of_get_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0xc5ecbff9 ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0xc5f1bb88 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0xc5fbd527 devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xc61e9769 kobject_put -EXPORT_SYMBOL vmlinux 0xc626e0f9 __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes -EXPORT_SYMBOL vmlinux 0xc65b391d ppp_input -EXPORT_SYMBOL vmlinux 0xc663b075 __ioremap -EXPORT_SYMBOL vmlinux 0xc69301d4 iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0xc6b22c71 __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6e4a9e5 scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0xc6f48407 __blk_end_request_all -EXPORT_SYMBOL vmlinux 0xc704a3c9 pneigh_enqueue -EXPORT_SYMBOL vmlinux 0xc70ae8cb ndisc_mc_map -EXPORT_SYMBOL vmlinux 0xc7128e77 sk_prot_clear_portaddr_nulls -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc723dddd locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0xc73aa1c2 scsi_scan_target -EXPORT_SYMBOL vmlinux 0xc740753f wireless_spy_update -EXPORT_SYMBOL vmlinux 0xc7440c2a kthread_bind -EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass -EXPORT_SYMBOL vmlinux 0xc768de19 cpu_all_bits -EXPORT_SYMBOL vmlinux 0xc77d77a4 padata_free -EXPORT_SYMBOL vmlinux 0xc77fc787 security_inode_init_security -EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc7898275 flex_array_shrink -EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc -EXPORT_SYMBOL vmlinux 0xc79c69a5 ps2_command -EXPORT_SYMBOL vmlinux 0xc7a41acf blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7b9c2cf kill_litter_super -EXPORT_SYMBOL vmlinux 0xc7c09aa2 pci_scan_bridge -EXPORT_SYMBOL vmlinux 0xc7cab966 __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0xc7d00914 generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0xc7d552f2 remove_arg_zero -EXPORT_SYMBOL vmlinux 0xc7e6e49e vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0xc7e70d1e tso_count_descs -EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn -EXPORT_SYMBOL vmlinux 0xc808ed71 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0xc8276a79 nf_hooks_needed -EXPORT_SYMBOL vmlinux 0xc82afed3 neigh_destroy -EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape -EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc84bef82 elv_dispatch_sort -EXPORT_SYMBOL vmlinux 0xc8571bcb idr_for_each -EXPORT_SYMBOL vmlinux 0xc85a8b65 skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0xc85f3416 dev_alert -EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table -EXPORT_SYMBOL vmlinux 0xc8a7e018 dev_activate -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8b3768f sock_create_lite -EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xc901ccc1 inet_stream_connect -EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen -EXPORT_SYMBOL vmlinux 0xc9226099 __destroy_inode -EXPORT_SYMBOL vmlinux 0xc93fbc54 wait_for_completion_io -EXPORT_SYMBOL vmlinux 0xc94647f1 bitmap_startwrite -EXPORT_SYMBOL vmlinux 0xc9484af0 sock_i_uid -EXPORT_SYMBOL vmlinux 0xc94f8f85 nlmsg_notify -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc96f7b2f kill_bdev -EXPORT_SYMBOL vmlinux 0xc97af5ac input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9cab197 of_device_is_available -EXPORT_SYMBOL vmlinux 0xc9e0de24 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0xc9f12750 jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0xc9ff0c64 dev_printk -EXPORT_SYMBOL vmlinux 0xca03bda2 vfs_setpos -EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy -EXPORT_SYMBOL vmlinux 0xca27164e scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0xca2b1cd6 ida_pre_get -EXPORT_SYMBOL vmlinux 0xca41eaa3 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0xca4656dc vfs_fsync_range -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xcaad8b23 dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0xcab006aa tcp_filter -EXPORT_SYMBOL vmlinux 0xcab67068 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0xcacd272d atomic64_sub_return -EXPORT_SYMBOL vmlinux 0xcace6297 idr_is_empty -EXPORT_SYMBOL vmlinux 0xcae191b7 get_user_pages_locked -EXPORT_SYMBOL vmlinux 0xcaed82c1 alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb093ae0 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0xcb1d7f05 inode_permission -EXPORT_SYMBOL vmlinux 0xcb2a94dd sock_no_shutdown -EXPORT_SYMBOL vmlinux 0xcb474fe9 pci_find_capability -EXPORT_SYMBOL vmlinux 0xcb587039 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0xcb595646 mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xcb5d0ef2 d_alloc_pseudo -EXPORT_SYMBOL vmlinux 0xcb8b5600 inet_ioctl -EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0xcbd92541 udp_poll -EXPORT_SYMBOL vmlinux 0xcbe7ac03 skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xcbeac4be hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0xcbface03 set_create_files_as -EXPORT_SYMBOL vmlinux 0xcbfb3286 create_empty_buffers -EXPORT_SYMBOL vmlinux 0xcbfe4d7f bio_reset -EXPORT_SYMBOL vmlinux 0xcc09b7a3 __skb_get_hash_flowi4 -EXPORT_SYMBOL vmlinux 0xcc0d330f iterate_fd -EXPORT_SYMBOL vmlinux 0xcc17504d _raw_read_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc4aa9b1 filemap_flush -EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc650652 get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0xcc671efb of_iomap -EXPORT_SYMBOL vmlinux 0xcc76f8cc fsnotify_destroy_mark -EXPORT_SYMBOL vmlinux 0xcc8a4e80 bio_advance -EXPORT_SYMBOL vmlinux 0xccb1ff95 xfrm6_prepare_output -EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor -EXPORT_SYMBOL vmlinux 0xccdf90ab skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0xccfd00d6 copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0xccfef64f skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0xcd0529c7 _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0xcd13dc7c ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd2bc16f devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xcd3a7eb5 iget_failed -EXPORT_SYMBOL vmlinux 0xcd3be6cd vme_unregister_driver -EXPORT_SYMBOL vmlinux 0xcd47ba72 netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0xcd4d056d nvm_addr_to_generic_mode -EXPORT_SYMBOL vmlinux 0xcd504825 __quota_error -EXPORT_SYMBOL vmlinux 0xcd7ede2a seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xcd7f01b5 security_path_chmod -EXPORT_SYMBOL vmlinux 0xcd83e19c tty_unthrottle -EXPORT_SYMBOL vmlinux 0xcd86c87f __cond_resched_lock -EXPORT_SYMBOL vmlinux 0xcd8d868b kill_pid -EXPORT_SYMBOL vmlinux 0xcd92387a pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdfbe4a8 pci_assign_resource -EXPORT_SYMBOL vmlinux 0xce0a44e4 __nlmsg_put -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce38fba3 skb_checksum_help -EXPORT_SYMBOL vmlinux 0xce3e4563 address_space_init_once -EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce9a0cc6 param_set_charp -EXPORT_SYMBOL vmlinux 0xce9d29c8 mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xceada6f8 tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0xcebcc6cb generic_shutdown_super -EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 -EXPORT_SYMBOL vmlinux 0xcef5dcc6 free_page_put_link -EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcf00940e netdev_state_change -EXPORT_SYMBOL vmlinux 0xcf1d7646 isa_mem_base -EXPORT_SYMBOL vmlinux 0xcf47e58d generic_file_fsync -EXPORT_SYMBOL vmlinux 0xcf8d0e6b uart_remove_one_port -EXPORT_SYMBOL vmlinux 0xcfb3804e pci_dev_get -EXPORT_SYMBOL vmlinux 0xd016b5a5 agp3_generic_tlbflush -EXPORT_SYMBOL vmlinux 0xd04d5083 blk_get_queue -EXPORT_SYMBOL vmlinux 0xd05ec6e3 flow_cache_fini -EXPORT_SYMBOL vmlinux 0xd062c3fb neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0xd071b217 sock_create_kern -EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond -EXPORT_SYMBOL vmlinux 0xd0868922 i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc -EXPORT_SYMBOL vmlinux 0xd09c382c param_get_bool -EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init -EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces -EXPORT_SYMBOL vmlinux 0xd0bb5a38 devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xd0da05e3 revalidate_disk -EXPORT_SYMBOL vmlinux 0xd0e70100 __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format -EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first -EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key -EXPORT_SYMBOL vmlinux 0xd12b94ff ppc_md -EXPORT_SYMBOL vmlinux 0xd146c563 pci_unmap_rom -EXPORT_SYMBOL vmlinux 0xd14e1e4e netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0xd16cec6f pcie_set_mps -EXPORT_SYMBOL vmlinux 0xd177d286 kernel_read -EXPORT_SYMBOL vmlinux 0xd17f39d2 i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd196c9be kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xd19a8178 dev_get_nest_level -EXPORT_SYMBOL vmlinux 0xd1a13ce0 sk_reset_timer -EXPORT_SYMBOL vmlinux 0xd1ae6d65 scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0xd1c84dfb hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1e18a4a swiotlb_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0xd1e3f3c4 unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0xd215b22c dqget -EXPORT_SYMBOL vmlinux 0xd22fae4e tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0xd2539293 ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xd259e8fc kern_path_mountpoint -EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd25ed1d7 rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0xd2609d85 alloc_fcdev -EXPORT_SYMBOL vmlinux 0xd264f55c splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd28fc7be of_get_child_by_name -EXPORT_SYMBOL vmlinux 0xd2af138b reservation_ww_class -EXPORT_SYMBOL vmlinux 0xd2b55ad2 pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0xd2c7b1b2 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2edc0f4 seq_hex_dump -EXPORT_SYMBOL vmlinux 0xd2fc19bd proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0xd30a92b3 empty_aops -EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd31daba4 get_tz_trend -EXPORT_SYMBOL vmlinux 0xd33ef59a __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0xd34780ec scsi_target_resume -EXPORT_SYMBOL vmlinux 0xd35480c4 of_get_named_gpio_flags -EXPORT_SYMBOL vmlinux 0xd35511ab jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0xd374df94 blk_mq_can_queue -EXPORT_SYMBOL vmlinux 0xd385790a vm_iomap_memory -EXPORT_SYMBOL vmlinux 0xd38a8ffc dev_add_pack -EXPORT_SYMBOL vmlinux 0xd38cbfcb dev_get_iflink -EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xd4167784 blk_stop_queue -EXPORT_SYMBOL vmlinux 0xd4221fa0 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0xd44b7e21 to_tm -EXPORT_SYMBOL vmlinux 0xd44ef244 sock_kmalloc -EXPORT_SYMBOL vmlinux 0xd451e866 inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0xd45b6f01 simple_write_end -EXPORT_SYMBOL vmlinux 0xd48c329e vfs_writev -EXPORT_SYMBOL vmlinux 0xd4b63fe5 dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0xd501fa63 of_find_node_by_phandle -EXPORT_SYMBOL vmlinux 0xd510aa6d iter_file_splice_write -EXPORT_SYMBOL vmlinux 0xd52eafa4 simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0xd53eef85 mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0xd54d0c2e jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0xd54d2424 udp_add_offload -EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0xd55be386 filemap_fdatawait -EXPORT_SYMBOL vmlinux 0xd55e9644 netif_device_detach -EXPORT_SYMBOL vmlinux 0xd5739f80 vfs_writef -EXPORT_SYMBOL vmlinux 0xd580d631 tcp_release_cb -EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames -EXPORT_SYMBOL vmlinux 0xd5a79bc6 __pci_register_driver -EXPORT_SYMBOL vmlinux 0xd5ad2191 get_phy_device -EXPORT_SYMBOL vmlinux 0xd5b1febf tty_vhangup -EXPORT_SYMBOL vmlinux 0xd5e8444a __div64_32 -EXPORT_SYMBOL vmlinux 0xd5ef871a writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0xd5f15868 generic_writepages -EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0xd606503d register_sysctl -EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0xd62097ef submit_bio -EXPORT_SYMBOL vmlinux 0xd627480b strncat -EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout -EXPORT_SYMBOL vmlinux 0xd633da07 da903x_query_status -EXPORT_SYMBOL vmlinux 0xd638e1ec dquot_quota_off -EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode -EXPORT_SYMBOL vmlinux 0xd664587a __inet_stream_connect -EXPORT_SYMBOL vmlinux 0xd6657613 icmpv6_send -EXPORT_SYMBOL vmlinux 0xd67c650c tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0xd67db729 tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0xd6824282 frontswap_register_ops -EXPORT_SYMBOL vmlinux 0xd683d6cd pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0xd685b1ba install_exec_creds -EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd69b30e0 atomic64_add_unless -EXPORT_SYMBOL vmlinux 0xd6a3b43c blk_delay_queue -EXPORT_SYMBOL vmlinux 0xd6b6f55d audit_log_start -EXPORT_SYMBOL vmlinux 0xd6cfafd4 scsi_device_set_state -EXPORT_SYMBOL vmlinux 0xd6d63e9d lg_local_lock_cpu -EXPORT_SYMBOL vmlinux 0xd6de949a get_super_thawed -EXPORT_SYMBOL vmlinux 0xd6e6bc07 dma_find_channel -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd7033b0b cancel_dirty_page -EXPORT_SYMBOL vmlinux 0xd71328b7 ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0xd7191b95 tty_port_hangup -EXPORT_SYMBOL vmlinux 0xd7204aed dm_kobject_release -EXPORT_SYMBOL vmlinux 0xd736cf8c mmc_gpio_request_ro -EXPORT_SYMBOL vmlinux 0xd7430bce elv_rb_del -EXPORT_SYMBOL vmlinux 0xd75287e6 fb_set_suspend -EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function -EXPORT_SYMBOL vmlinux 0xd75dfde3 vme_register_driver -EXPORT_SYMBOL vmlinux 0xd76175e2 scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0xd761a383 ioremap_prot -EXPORT_SYMBOL vmlinux 0xd77905f4 input_inject_event -EXPORT_SYMBOL vmlinux 0xd792b64e inetdev_by_index -EXPORT_SYMBOL vmlinux 0xd794a42c unregister_key_type -EXPORT_SYMBOL vmlinux 0xd796f506 current_in_userns -EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write -EXPORT_SYMBOL vmlinux 0xd7b42b31 skb_push -EXPORT_SYMBOL vmlinux 0xd7b6b5a2 trace_print_array_seq -EXPORT_SYMBOL vmlinux 0xd7cb6052 agp_alloc_page_array -EXPORT_SYMBOL vmlinux 0xd7d6d062 mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7eb7422 dev_set_group -EXPORT_SYMBOL vmlinux 0xd8332c73 setup_new_exec -EXPORT_SYMBOL vmlinux 0xd83d9d16 kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0xd845cf95 nla_put -EXPORT_SYMBOL vmlinux 0xd84739b4 crypto_sha256_update -EXPORT_SYMBOL vmlinux 0xd84c43a6 lockref_put_return -EXPORT_SYMBOL vmlinux 0xd84c90a0 genlmsg_put -EXPORT_SYMBOL vmlinux 0xd84e2635 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0xd85833cb __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0xd8650338 bio_integrity_trim -EXPORT_SYMBOL vmlinux 0xd89aad56 write_cache_pages -EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8abcb7f md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0xd8b3a4bb kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0xd8cd0150 max8998_update_reg -EXPORT_SYMBOL vmlinux 0xd8d72841 tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0xd8d74be6 flow_cache_lookup -EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region -EXPORT_SYMBOL vmlinux 0xd8fb95b8 sock_no_bind -EXPORT_SYMBOL vmlinux 0xd8feda43 pcim_iomap_table -EXPORT_SYMBOL vmlinux 0xd9075ad5 qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0xd90f6f8e sock_i_ino -EXPORT_SYMBOL vmlinux 0xd91816af neigh_seq_start -EXPORT_SYMBOL vmlinux 0xd920ff83 scsi_host_set_state -EXPORT_SYMBOL vmlinux 0xd92828e7 pci_write_vpd -EXPORT_SYMBOL vmlinux 0xd92e0bcd blk_queue_dma_pad -EXPORT_SYMBOL vmlinux 0xd92edc81 param_get_int -EXPORT_SYMBOL vmlinux 0xd9498b22 proc_dointvec -EXPORT_SYMBOL vmlinux 0xd966ddc2 __do_once_done -EXPORT_SYMBOL vmlinux 0xd96dfb0a __mdiobus_register -EXPORT_SYMBOL vmlinux 0xd973eb2d scm_detach_fds -EXPORT_SYMBOL vmlinux 0xd97e8ee2 dev_uc_init -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd988f94d i2c_del_driver -EXPORT_SYMBOL vmlinux 0xd9986fa5 scsi_remove_host -EXPORT_SYMBOL vmlinux 0xd9bac924 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0xd9bdbbfc path_get -EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen -EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler -EXPORT_SYMBOL vmlinux 0xda071950 md_cluster_mod -EXPORT_SYMBOL vmlinux 0xda18a86f kobject_del -EXPORT_SYMBOL vmlinux 0xda276ac6 scsi_register_driver -EXPORT_SYMBOL vmlinux 0xda2bcfab __ps2_command -EXPORT_SYMBOL vmlinux 0xda346970 abx500_register_ops -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0xda8baa20 inode_add_rsv_space -EXPORT_SYMBOL vmlinux 0xda93a93a scsi_verify_blk_ioctl -EXPORT_SYMBOL vmlinux 0xda975092 atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0xdaa57ec3 totalhigh_pages -EXPORT_SYMBOL vmlinux 0xdabb7615 pcie_get_minimum_link -EXPORT_SYMBOL vmlinux 0xdabc1ea8 fsl_lbc_find -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdb01198e fsl_upm_find -EXPORT_SYMBOL vmlinux 0xdb3df711 rwsem_downgrade_wake -EXPORT_SYMBOL vmlinux 0xdb5540ad may_umount -EXPORT_SYMBOL vmlinux 0xdb643300 agp_enable -EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb6e1343 nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb822208 scsi_add_device -EXPORT_SYMBOL vmlinux 0xdb8bf072 __tcf_hash_release -EXPORT_SYMBOL vmlinux 0xdba75580 agp_collect_device_status -EXPORT_SYMBOL vmlinux 0xdbabf2cd skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0xdbb60e4d cdev_alloc -EXPORT_SYMBOL vmlinux 0xdbe6efda __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc2088ec find_lock_entry -EXPORT_SYMBOL vmlinux 0xdc214961 fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0xdc2ed82f tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 -EXPORT_SYMBOL vmlinux 0xdc4266d8 mmc_set_blockcount -EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc5fd9c9 dev_open -EXPORT_SYMBOL vmlinux 0xdc679017 blkdev_fsync -EXPORT_SYMBOL vmlinux 0xdc68c171 of_clk_get -EXPORT_SYMBOL vmlinux 0xdc9498dd down -EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close -EXPORT_SYMBOL vmlinux 0xdcbb7890 find_get_pages_tag -EXPORT_SYMBOL vmlinux 0xdcbc67d2 d_delete -EXPORT_SYMBOL vmlinux 0xdcd2b1df sync_inode_metadata -EXPORT_SYMBOL vmlinux 0xdcdee616 __mutex_init -EXPORT_SYMBOL vmlinux 0xdce8e285 nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat -EXPORT_SYMBOL vmlinux 0xdd0ed6b2 single_release -EXPORT_SYMBOL vmlinux 0xdd131a70 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0xdd195366 blk_start_queue_async -EXPORT_SYMBOL vmlinux 0xdd1e0048 generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0xdd21d4de d_genocide -EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr -EXPORT_SYMBOL vmlinux 0xdd554094 tcp_make_synack -EXPORT_SYMBOL vmlinux 0xdd59f76d register_qdisc -EXPORT_SYMBOL vmlinux 0xdd5e860f mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0xdd9030af current_stack_pointer -EXPORT_SYMBOL vmlinux 0xdda0f5ac fb_find_mode -EXPORT_SYMBOL vmlinux 0xddab87b7 insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0xdde48a55 ab3100_event_register -EXPORT_SYMBOL vmlinux 0xde41138e gen_replace_estimator -EXPORT_SYMBOL vmlinux 0xde446ec0 tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0xde47434f tcp_prot -EXPORT_SYMBOL vmlinux 0xde48e9ca _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xde512963 sg_miter_stop -EXPORT_SYMBOL vmlinux 0xde5d4e55 pci_fixup_device -EXPORT_SYMBOL vmlinux 0xde65eed6 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0xde6b5df7 scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0xde8c8fa2 ip6_xmit -EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages -EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size -EXPORT_SYMBOL vmlinux 0xdeafabcf remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0xdeb2f15c bdget_disk -EXPORT_SYMBOL vmlinux 0xded29202 ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0xded931f3 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0xdf0332f7 eth_validate_addr -EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update -EXPORT_SYMBOL vmlinux 0xdf3c7a3d of_device_alloc -EXPORT_SYMBOL vmlinux 0xdf4c3741 agp_generic_alloc_by_type -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf57fe4f ip_getsockopt -EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol -EXPORT_SYMBOL vmlinux 0xdf7daa58 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0xdf8b92be dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdf98cedc vme_dma_request -EXPORT_SYMBOL vmlinux 0xdf9b59fa udp_del_offload -EXPORT_SYMBOL vmlinux 0xdfb930d7 scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0xdfd6e23a input_unregister_device -EXPORT_SYMBOL vmlinux 0xdfdf1bf6 tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0xdff43ed4 __debugger -EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone -EXPORT_SYMBOL vmlinux 0xe06dff9d xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xe079c508 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool -EXPORT_SYMBOL vmlinux 0xe08bc399 shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0xe08c7590 devm_ioremap -EXPORT_SYMBOL vmlinux 0xe09b693b of_device_is_compatible -EXPORT_SYMBOL vmlinux 0xe0ad3214 tcp_read_sock -EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0baa478 input_unregister_handler -EXPORT_SYMBOL vmlinux 0xe0dccbde eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0xe0e93249 __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0xe135f46b napi_get_frags -EXPORT_SYMBOL vmlinux 0xe1444035 simple_transaction_read -EXPORT_SYMBOL vmlinux 0xe15d18b6 ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0xe16916ba dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0xe16f7140 set_disk_ro -EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xe1941663 try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xe195cc6b neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0xe19dd7d1 user_path_create -EXPORT_SYMBOL vmlinux 0xe1b72509 seq_release_private -EXPORT_SYMBOL vmlinux 0xe1d11770 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0xe1d7be37 scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0xe1ee8bf4 sk_stream_error -EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xe218d1ee nvm_unregister_mgr -EXPORT_SYMBOL vmlinux 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 -EXPORT_SYMBOL vmlinux 0xe256896e xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0xe2661c23 fbcon_set_rotate -EXPORT_SYMBOL vmlinux 0xe26899c8 simple_dname -EXPORT_SYMBOL vmlinux 0xe2845cdf proc_douintvec -EXPORT_SYMBOL vmlinux 0xe28fc4bb __mmc_claim_host -EXPORT_SYMBOL vmlinux 0xe29191d2 bdi_register -EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t -EXPORT_SYMBOL vmlinux 0xe2be5498 lg_global_unlock -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2d96a46 put_io_context -EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user -EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup -EXPORT_SYMBOL vmlinux 0xe2fe7ddc simple_dir_operations -EXPORT_SYMBOL vmlinux 0xe318d706 sk_wait_data -EXPORT_SYMBOL vmlinux 0xe34c5595 kset_unregister -EXPORT_SYMBOL vmlinux 0xe354724e devfreq_add_device -EXPORT_SYMBOL vmlinux 0xe388f1fb module_put -EXPORT_SYMBOL vmlinux 0xe3923ab1 simple_pin_fs -EXPORT_SYMBOL vmlinux 0xe3972fc8 genphy_resume -EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0xe3c65b63 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0xe3c931ea from_kgid_munged -EXPORT_SYMBOL vmlinux 0xe3d46833 pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0xe3d5caf4 fsl_lbc_ctrl_dev -EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xe3d7da27 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0xe3edd613 proc_set_user -EXPORT_SYMBOL vmlinux 0xe40e4d0e devm_gpiod_get_array -EXPORT_SYMBOL vmlinux 0xe410560d serio_unregister_port -EXPORT_SYMBOL vmlinux 0xe4121bdf dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0xe41493ad input_get_keycode -EXPORT_SYMBOL vmlinux 0xe417f988 free_buffer_head -EXPORT_SYMBOL vmlinux 0xe42371fd xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0xe42940ab sock_create -EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 -EXPORT_SYMBOL vmlinux 0xe4a57a48 dev_get_by_name -EXPORT_SYMBOL vmlinux 0xe4c1691a simple_write_begin -EXPORT_SYMBOL vmlinux 0xe4c17741 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0xe4da1dd2 ilookup -EXPORT_SYMBOL vmlinux 0xe4e28a06 simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array -EXPORT_SYMBOL vmlinux 0xe4ecb6ca devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0xe4fe8ca1 _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0xe513c52c flush_dcache_icache_page -EXPORT_SYMBOL vmlinux 0xe51e22aa seq_file_path -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe524dca7 block_write_begin -EXPORT_SYMBOL vmlinux 0xe530eef0 security_path_chown -EXPORT_SYMBOL vmlinux 0xe554c0a2 blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xe557c747 end_page_writeback -EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton -EXPORT_SYMBOL vmlinux 0xe57b7811 scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0xe5860369 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set -EXPORT_SYMBOL vmlinux 0xe58fa800 qdisc_watchdog_schedule_ns -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5e45f0f pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0xe5e59100 inc_nlink -EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xe5f98cc6 __blkdev_reread_part -EXPORT_SYMBOL vmlinux 0xe607a9f6 bitmap_start_sync -EXPORT_SYMBOL vmlinux 0xe62bc70a pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0xe640cd8f dev_printk_emit -EXPORT_SYMBOL vmlinux 0xe65ef7d6 locks_mandatory_area -EXPORT_SYMBOL vmlinux 0xe66452ab dql_init -EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size -EXPORT_SYMBOL vmlinux 0xe6964e0a loop_register_transfer -EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe6af3d2c tty_unlock -EXPORT_SYMBOL vmlinux 0xe6dd236d clear_pages -EXPORT_SYMBOL vmlinux 0xe6e6ffc1 scsi_is_host_device -EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update -EXPORT_SYMBOL vmlinux 0xe6f9935d nf_setsockopt -EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock -EXPORT_SYMBOL vmlinux 0xe708d61c seq_dentry -EXPORT_SYMBOL vmlinux 0xe711a46f inet6_release -EXPORT_SYMBOL vmlinux 0xe7194a39 vme_master_mmap -EXPORT_SYMBOL vmlinux 0xe723574a drop_nlink -EXPORT_SYMBOL vmlinux 0xe74834f5 __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0xe74d8400 __kfree_skb -EXPORT_SYMBOL vmlinux 0xe7527ebc neigh_seq_stop -EXPORT_SYMBOL vmlinux 0xe75f4d72 wireless_send_event -EXPORT_SYMBOL vmlinux 0xe7852f12 devm_gpiod_get_index_optional -EXPORT_SYMBOL vmlinux 0xe7905404 of_scan_pci_bridge -EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx -EXPORT_SYMBOL vmlinux 0xe7b6315e kblockd_schedule_delayed_work_on -EXPORT_SYMBOL vmlinux 0xe7ce7439 _memcpy_fromio -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7f94c7f skb_tx_error -EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0xe82cc752 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0xe831cd9b tcp_ioctl -EXPORT_SYMBOL vmlinux 0xe844dba9 netif_napi_del -EXPORT_SYMBOL vmlinux 0xe85a1eb5 I_BDEV -EXPORT_SYMBOL vmlinux 0xe8793594 blk_make_request -EXPORT_SYMBOL vmlinux 0xe87b2edd sg_copy_buffer -EXPORT_SYMBOL vmlinux 0xe8802b67 mach_twr_p1025 -EXPORT_SYMBOL vmlinux 0xe8979136 current_fs_time -EXPORT_SYMBOL vmlinux 0xe89b9d20 tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0xe8aba5b6 padata_stop -EXPORT_SYMBOL vmlinux 0xe8b0cb98 seq_release -EXPORT_SYMBOL vmlinux 0xe8b2a468 udp_lib_get_port -EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xe8d27855 agp_create_memory -EXPORT_SYMBOL vmlinux 0xe8d5054c dquot_operations -EXPORT_SYMBOL vmlinux 0xe8ef4c6a devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xe8f754d2 get_unmapped_area -EXPORT_SYMBOL vmlinux 0xe8fda3e4 tc_classify -EXPORT_SYMBOL vmlinux 0xe907d957 bdput -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe917a1ad inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xe9341d23 tcp_disconnect -EXPORT_SYMBOL vmlinux 0xe9378d58 idr_get_next -EXPORT_SYMBOL vmlinux 0xe94a0aa8 flow_cache_init -EXPORT_SYMBOL vmlinux 0xe94b858f bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe959e6aa __i2c_transfer -EXPORT_SYMBOL vmlinux 0xe96b5629 param_set_ushort -EXPORT_SYMBOL vmlinux 0xe97d124e ip6_frag_match -EXPORT_SYMBOL vmlinux 0xe98e06e3 __getblk_slow -EXPORT_SYMBOL vmlinux 0xe98ec558 genphy_soft_reset -EXPORT_SYMBOL vmlinux 0xe9931290 blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0xe9baec9d tty_port_close -EXPORT_SYMBOL vmlinux 0xe9c1c3bc param_ops_ulong -EXPORT_SYMBOL vmlinux 0xe9db8f1d add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len -EXPORT_SYMBOL vmlinux 0xea18c7e0 agp_bind_memory -EXPORT_SYMBOL vmlinux 0xea336d9b do_SAK -EXPORT_SYMBOL vmlinux 0xea567742 agp_generic_type_to_mask_type -EXPORT_SYMBOL vmlinux 0xea6c5f6c pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0xea7987f1 key_update -EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table -EXPORT_SYMBOL vmlinux 0xea7d591f of_mdio_find_bus -EXPORT_SYMBOL vmlinux 0xea968c96 ___ratelimit -EXPORT_SYMBOL vmlinux 0xea9de1ea jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0xeab68c1f dev_err -EXPORT_SYMBOL vmlinux 0xeaccffbf scsi_host_alloc -EXPORT_SYMBOL vmlinux 0xeacd71b3 ioctl_by_bdev -EXPORT_SYMBOL vmlinux 0xead18fe8 hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0xeadb6daf tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0xeae5cb51 set_security_override -EXPORT_SYMBOL vmlinux 0xeaf1a650 param_ops_long -EXPORT_SYMBOL vmlinux 0xeb192442 __get_user_pages -EXPORT_SYMBOL vmlinux 0xeb360715 netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xeb5d3a8f xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0xeb6099d2 nvm_register_target -EXPORT_SYMBOL vmlinux 0xeb79c650 call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0xeb7a961c pci_iounmap -EXPORT_SYMBOL vmlinux 0xeb8d93b5 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0xeb921240 netlink_unicast -EXPORT_SYMBOL vmlinux 0xeb941906 padata_register_cpumask_notifier -EXPORT_SYMBOL vmlinux 0xeba6163a mount_pseudo -EXPORT_SYMBOL vmlinux 0xebca88f6 ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0xec138d7d skb_store_bits -EXPORT_SYMBOL vmlinux 0xec1aa6ef memzero_explicit -EXPORT_SYMBOL vmlinux 0xec1c13da nvm_put_blk_unlocked -EXPORT_SYMBOL vmlinux 0xec28fca1 of_phy_attach -EXPORT_SYMBOL vmlinux 0xec340dd0 uart_add_one_port -EXPORT_SYMBOL vmlinux 0xec39a9f0 sk_ns_capable -EXPORT_SYMBOL vmlinux 0xec3e61dc agp_generic_free_gatt_table -EXPORT_SYMBOL vmlinux 0xec44d267 netdev_change_features -EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec4ed5c5 d_prune_aliases -EXPORT_SYMBOL vmlinux 0xec5d2211 of_phy_is_fixed_link -EXPORT_SYMBOL vmlinux 0xec729119 sock_no_getname -EXPORT_SYMBOL vmlinux 0xec957061 debugfs_create_automount -EXPORT_SYMBOL vmlinux 0xec969fcc agp_generic_alloc_pages -EXPORT_SYMBOL vmlinux 0xecbcb8bb radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0xecd982a2 __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecebbb94 console_stop -EXPORT_SYMBOL vmlinux 0xecfcff07 insert_inode_locked -EXPORT_SYMBOL vmlinux 0xecfd654c dcb_getapp -EXPORT_SYMBOL vmlinux 0xed2142ec devm_gpiod_get_optional -EXPORT_SYMBOL vmlinux 0xed2cd134 dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xed7463e4 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic -EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xed9fecd9 kernel_write -EXPORT_SYMBOL vmlinux 0xeda505d0 of_mdiobus_register -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedc410d0 udplite_table -EXPORT_SYMBOL vmlinux 0xeddf74d2 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long -EXPORT_SYMBOL vmlinux 0xedfc2fec ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0xee071ca5 iterate_dir -EXPORT_SYMBOL vmlinux 0xee0e56f5 phy_detach -EXPORT_SYMBOL vmlinux 0xee2cf0f5 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee421480 inet_stream_ops -EXPORT_SYMBOL vmlinux 0xee4308d6 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0xee5f17f5 blk_mq_abort_requeue_list -EXPORT_SYMBOL vmlinux 0xee87f15a tcp_poll -EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeed56852 __pci_enable_wake -EXPORT_SYMBOL vmlinux 0xeeed4245 devm_free_irq -EXPORT_SYMBOL vmlinux 0xeef12968 mmc_stop_bkops -EXPORT_SYMBOL vmlinux 0xeef161aa groups_free -EXPORT_SYMBOL vmlinux 0xeefbd9b6 input_event -EXPORT_SYMBOL vmlinux 0xef1b3624 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0xef261380 drop_super -EXPORT_SYMBOL vmlinux 0xef307605 inet_csk_accept -EXPORT_SYMBOL vmlinux 0xef4e68ce arp_tbl -EXPORT_SYMBOL vmlinux 0xefb09e52 netlink_set_err -EXPORT_SYMBOL vmlinux 0xefbc4530 dquot_resume -EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xefd3a595 posix_test_lock -EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0xefde1bbe flush_dcache_range -EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf0161fa6 iov_iter_zero -EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0xf02a3bfe mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0xf02ea22a __f_setown -EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be -EXPORT_SYMBOL vmlinux 0xf07fc147 kthread_stop -EXPORT_SYMBOL vmlinux 0xf07ffe1b pci_iomap -EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag -EXPORT_SYMBOL vmlinux 0xf08edc3c mpage_writepage -EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int -EXPORT_SYMBOL vmlinux 0xf0e183c9 rtnl_configure_link -EXPORT_SYMBOL vmlinux 0xf0e69093 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort -EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info -EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 -EXPORT_SYMBOL vmlinux 0xf11cd6ce down_interruptible -EXPORT_SYMBOL vmlinux 0xf13291cb sock_no_ioctl -EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init -EXPORT_SYMBOL vmlinux 0xf147f89c tcp_recvmsg -EXPORT_SYMBOL vmlinux 0xf15c48cf ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0xf1835c3b ip_check_defrag -EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps -EXPORT_SYMBOL vmlinux 0xf195fe38 sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf19befc8 release_sock -EXPORT_SYMBOL vmlinux 0xf1a6d73e init_special_inode -EXPORT_SYMBOL vmlinux 0xf1a77aad cdev_add -EXPORT_SYMBOL vmlinux 0xf1b87710 __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0xf1bfca62 ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1deabf2 div64_u64 -EXPORT_SYMBOL vmlinux 0xf1e03431 cap_mmap_file -EXPORT_SYMBOL vmlinux 0xf1e2c3ac kthread_create_on_node -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf1f3b1ea scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq -EXPORT_SYMBOL vmlinux 0xf2177f1b set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0xf22881e8 lg_local_lock -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf259aaaa f_setown -EXPORT_SYMBOL vmlinux 0xf279b11d bh_submit_read -EXPORT_SYMBOL vmlinux 0xf28546d9 serio_open -EXPORT_SYMBOL vmlinux 0xf295fa3b blk_mq_delay_queue -EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered -EXPORT_SYMBOL vmlinux 0xf2a15a55 nf_register_sockopt -EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2e0a245 tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0xf2e46612 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0xf2eb6ad8 inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0xf3055a59 of_cpufreq_power_cooling_register -EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform -EXPORT_SYMBOL vmlinux 0xf322a206 bit_waitqueue -EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf34bdf57 ipv4_specific -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf38543f1 tcf_hash_search -EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf39c8543 generic_perform_write -EXPORT_SYMBOL vmlinux 0xf3a4b66d __dst_free -EXPORT_SYMBOL vmlinux 0xf3a9f45f pci_get_slot -EXPORT_SYMBOL vmlinux 0xf3ac9ec8 find_get_entry -EXPORT_SYMBOL vmlinux 0xf3db0ed4 neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0xf3dee954 tso_build_hdr -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf400e2d2 file_update_time -EXPORT_SYMBOL vmlinux 0xf40b2297 __crypto_memneq -EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep -EXPORT_SYMBOL vmlinux 0xf4449388 timer_interrupt -EXPORT_SYMBOL vmlinux 0xf445ef2f mfd_cell_enable -EXPORT_SYMBOL vmlinux 0xf46cd91f __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0xf4730a33 ll_rw_block -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf495de9e fb_set_cmap -EXPORT_SYMBOL vmlinux 0xf49dba20 udp6_csum_init -EXPORT_SYMBOL vmlinux 0xf4aae6df tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0xf4b85d48 inode_add_bytes -EXPORT_SYMBOL vmlinux 0xf4bcfed1 locks_init_lock -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4c25852 elevator_alloc -EXPORT_SYMBOL vmlinux 0xf4e5705e i2c_add_adapter -EXPORT_SYMBOL vmlinux 0xf4eef396 gen_pool_free -EXPORT_SYMBOL vmlinux 0xf4f12e15 console_start -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf509072c devm_release_resource -EXPORT_SYMBOL vmlinux 0xf5222143 _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0xf52321e0 atomic64_sub -EXPORT_SYMBOL vmlinux 0xf52b03f2 tcp_connect -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf53f3c7a posix_acl_fix_xattr_userns -EXPORT_SYMBOL vmlinux 0xf55313a0 gen_pool_add_virt -EXPORT_SYMBOL vmlinux 0xf553fe16 blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0xf56a3625 dev_addr_del -EXPORT_SYMBOL vmlinux 0xf56d64d7 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0xf5708df1 netlink_ns_capable -EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set -EXPORT_SYMBOL vmlinux 0xf5a62ecc _memset_io -EXPORT_SYMBOL vmlinux 0xf5ba77e7 mdiobus_read -EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xf5e1558d crash_shutdown_unregister -EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command -EXPORT_SYMBOL vmlinux 0xf5ee7450 filemap_write_and_wait -EXPORT_SYMBOL vmlinux 0xf5f3630e mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0xf60c27f7 swiotlb_alloc_coherent -EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl -EXPORT_SYMBOL vmlinux 0xf64370b5 agp_unbind_memory -EXPORT_SYMBOL vmlinux 0xf6519949 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0xf666fb06 blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0xf6711ff2 generic_end_io_acct -EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton -EXPORT_SYMBOL vmlinux 0xf6789a40 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xf68bf717 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6f219e3 agp_generic_remove_memory -EXPORT_SYMBOL vmlinux 0xf6f63263 simple_unlink -EXPORT_SYMBOL vmlinux 0xf6f7149f sk_capable -EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf7030b99 netpoll_setup -EXPORT_SYMBOL vmlinux 0xf70384d7 __debugger_sstep -EXPORT_SYMBOL vmlinux 0xf71521ba atomic64_add_return -EXPORT_SYMBOL vmlinux 0xf73c20f6 dcache_readdir -EXPORT_SYMBOL vmlinux 0xf7584a9c find_font -EXPORT_SYMBOL vmlinux 0xf77588f5 __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0xf78b342d generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0xf790f69a blk_queue_split -EXPORT_SYMBOL vmlinux 0xf7a1d03b ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0xf7b85bfb param_set_copystring -EXPORT_SYMBOL vmlinux 0xf7bc59da dquot_file_open -EXPORT_SYMBOL vmlinux 0xf7c9cf0c cad_pid -EXPORT_SYMBOL vmlinux 0xf7cdc736 clkdev_add -EXPORT_SYMBOL vmlinux 0xf7d0567f bio_integrity_endio -EXPORT_SYMBOL vmlinux 0xf7d9b054 follow_down_one -EXPORT_SYMBOL vmlinux 0xf7f40961 mpage_readpage -EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf81e726c setup_arg_pages -EXPORT_SYMBOL vmlinux 0xf8227012 __sock_create -EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area -EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf8347e2b dev_alloc_name -EXPORT_SYMBOL vmlinux 0xf84d5c7a pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0xf857b0ea blkdev_reread_part -EXPORT_SYMBOL vmlinux 0xf85dd961 vmap -EXPORT_SYMBOL vmlinux 0xf867c777 sys_fillrect -EXPORT_SYMBOL vmlinux 0xf8841435 km_policy_expired -EXPORT_SYMBOL vmlinux 0xf886ba79 nf_log_register -EXPORT_SYMBOL vmlinux 0xf88c3833 pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0xf88f795e swiotlb_map_sg -EXPORT_SYMBOL vmlinux 0xf8e398fc memstart_addr -EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xf9228003 get_immrbase -EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run -EXPORT_SYMBOL vmlinux 0xf93601b1 tcp_hashinfo -EXPORT_SYMBOL vmlinux 0xf93f1bcf dquot_quota_on -EXPORT_SYMBOL vmlinux 0xf94afb7d dst_release -EXPORT_SYMBOL vmlinux 0xf97dbdde truncate_setsize -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9b16a53 kernel_setsockopt -EXPORT_SYMBOL vmlinux 0xf9c10b49 end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0xf9e18417 rwsem_wake -EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf -EXPORT_SYMBOL vmlinux 0xf9f53a27 d_obtain_alias -EXPORT_SYMBOL vmlinux 0xf9f8bd77 inet_put_port -EXPORT_SYMBOL vmlinux 0xf9f9f729 iommu_tbl_pool_init -EXPORT_SYMBOL vmlinux 0xfa130057 __skb_tx_hash -EXPORT_SYMBOL vmlinux 0xfa2c9d54 devm_clk_put -EXPORT_SYMBOL vmlinux 0xfa47116f mmc_power_restore_host -EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa5eb9af lro_receive_skb -EXPORT_SYMBOL vmlinux 0xfa5f5d75 mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0xfa8d29a8 of_parse_phandle_with_fixed_args -EXPORT_SYMBOL vmlinux 0xfaa76478 dev_mc_sync -EXPORT_SYMBOL vmlinux 0xfaaf9c9f kobject_init -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr -EXPORT_SYMBOL vmlinux 0xfae99709 __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0xfaee6c18 dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0xfafe804f dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0xfaff1f52 tcp_gro_complete -EXPORT_SYMBOL vmlinux 0xfb06d524 lru_cache_add_file -EXPORT_SYMBOL vmlinux 0xfb0742b7 mapping_tagged -EXPORT_SYMBOL vmlinux 0xfb271bc7 __splice_from_pipe -EXPORT_SYMBOL vmlinux 0xfb2dfafd bio_flush_dcache_pages -EXPORT_SYMBOL vmlinux 0xfb341308 of_get_property -EXPORT_SYMBOL vmlinux 0xfb63fcee security_path_unlink -EXPORT_SYMBOL vmlinux 0xfb6a54c2 nvm_submit_io -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 -EXPORT_SYMBOL vmlinux 0xfba56df1 of_graph_get_endpoint_by_regs -EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock -EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbcb87ee soft_cursor -EXPORT_SYMBOL vmlinux 0xfbcbb8eb down_write -EXPORT_SYMBOL vmlinux 0xfbda196e sb_min_blocksize -EXPORT_SYMBOL vmlinux 0xfbfa7cf7 dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0xfbfec009 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem -EXPORT_SYMBOL vmlinux 0xfc220278 mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap -EXPORT_SYMBOL vmlinux 0xfc3b160f mempool_create_node -EXPORT_SYMBOL vmlinux 0xfc54f2d4 of_find_device_by_node -EXPORT_SYMBOL vmlinux 0xfc62c6ef sk_mc_loop -EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0xfc686875 do_splice_direct -EXPORT_SYMBOL vmlinux 0xfc693a4e irq_set_chip -EXPORT_SYMBOL vmlinux 0xfc6b1084 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0xfc9ce31b tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0xfca18012 default_file_splice_read -EXPORT_SYMBOL vmlinux 0xfcb09593 key_validate -EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0xfccbd794 agp_generic_alloc_user -EXPORT_SYMBOL vmlinux 0xfcce0d8e dquot_drop -EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns -EXPORT_SYMBOL vmlinux 0xfceb16e9 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcf84a93 atomic64_xor -EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0xfd0ce366 unload_nls -EXPORT_SYMBOL vmlinux 0xfd214817 abx500_event_registers_startup_state_get -EXPORT_SYMBOL vmlinux 0xfd33b5fa cmdline_parts_find -EXPORT_SYMBOL vmlinux 0xfd34fc46 dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0xfd4104a5 dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0xfd46198a input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0xfd4f0385 km_state_expired -EXPORT_SYMBOL vmlinux 0xfd52c299 remap_pfn_range -EXPORT_SYMBOL vmlinux 0xfd545750 inet_getname -EXPORT_SYMBOL vmlinux 0xfd836bd4 xfrm4_prepare_output -EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xfdb025a4 clocksource_unregister -EXPORT_SYMBOL vmlinux 0xfdb1c2b4 kernel_accept -EXPORT_SYMBOL vmlinux 0xfdb6cedc _raw_read_unlock_bh -EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be -EXPORT_SYMBOL vmlinux 0xfdbc64ff would_dump -EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0xfdbfa938 __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0xfded48ed enable_kernel_fp -EXPORT_SYMBOL vmlinux 0xfdf6ca6e nvm_put_blk -EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe08d0e8 fput -EXPORT_SYMBOL vmlinux 0xfe09fd52 ps2_sendbyte -EXPORT_SYMBOL vmlinux 0xfe214595 get_empty_filp -EXPORT_SYMBOL vmlinux 0xfe352309 register_filesystem -EXPORT_SYMBOL vmlinux 0xfe4c9926 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0xfe822d55 get_brgfreq -EXPORT_SYMBOL vmlinux 0xfebaf532 __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xfebf319a scsi_init_io -EXPORT_SYMBOL vmlinux 0xfeca7590 radix_tree_range_tag_if_tagged -EXPORT_SYMBOL vmlinux 0xfecc53b7 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfeeacc01 mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0xff048cf5 pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff2068e8 vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0xff2db98a dma_common_mmap -EXPORT_SYMBOL vmlinux 0xff2fb508 simple_getattr -EXPORT_SYMBOL vmlinux 0xff412199 inet6_add_offload -EXPORT_SYMBOL vmlinux 0xff50296d __inode_permission -EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff6a17a6 nvm_dev_factory -EXPORT_SYMBOL vmlinux 0xff6dea25 smp_hw_index -EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource -EXPORT_SYMBOL vmlinux 0xff80dd59 ip_defrag -EXPORT_SYMBOL vmlinux 0xff8dc43d blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy -EXPORT_SYMBOL vmlinux 0xff9b7ee9 xfrm_init_replay -EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0xffbd0885 ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0xffcc9741 finish_no_open -EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function -EXPORT_SYMBOL vmlinux 0xffed28ba xfrm_input -EXPORT_SYMBOL vmlinux 0xfffee54a scsi_print_command -EXPORT_SYMBOL_GPL crypto/af_alg 0x39ff504f af_alg_link_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x536f725b af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x53eaf9f4 af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x58716898 af_alg_wait_for_completion -EXPORT_SYMBOL_GPL crypto/af_alg 0x6afe568d af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x74565983 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0x881441d9 af_alg_cmsg_send -EXPORT_SYMBOL_GPL crypto/af_alg 0x8cd7fceb af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0xb3c1fad8 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0xb5f8aad5 af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xe0ca3106 af_alg_complete -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x9ef1553f async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x0697acf5 async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x3996b4cf async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xb0cb6474 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xfc648fc5 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x0e308939 async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x1f0bf1b5 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x47e92a4a async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xd1221188 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xb60382a9 async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xe5868cd8 async_xor_val -EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0x37ba4144 blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x0411a227 cast5_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x2509986d cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt -EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 -EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 -EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 -EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x36560862 crypto_chacha20_crypt -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0xacd542c7 crypto_chacha20_setkey -EXPORT_SYMBOL_GPL crypto/cryptd 0x37f700a6 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x42bfcf2d cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x588c9fc6 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x5ca43a94 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x67f8eb72 cryptd_alloc_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x7aedf414 cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xbcc5ec0c cryptd_ablkcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xc25d524c cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0xcfdf7a2a cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xdbfc641d cryptd_free_ablkcipher -EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey -EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey -EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table -EXPORT_SYMBOL_GPL crypto/lrw 0x3d279d8a lrw_crypt -EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table -EXPORT_SYMBOL_GPL crypto/mcryptd 0x0816f7dd mcryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0x14bdd4d3 mcryptd_flusher -EXPORT_SYMBOL_GPL crypto/mcryptd 0x1a02c852 mcryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/mcryptd 0x31e4c5c3 shash_ahash_mcryptd_final -EXPORT_SYMBOL_GPL crypto/mcryptd 0x52916554 mcryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0x72198877 mcryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/mcryptd 0xaa8dc197 shash_ahash_mcryptd_update -EXPORT_SYMBOL_GPL crypto/mcryptd 0xc58f93a8 shash_ahash_mcryptd_digest -EXPORT_SYMBOL_GPL crypto/mcryptd 0xc8ea18c4 shash_ahash_mcryptd_finup -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x0346a12a crypto_poly1305_final -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x2eeab5f0 crypto_poly1305_init -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x43a4dacd crypto_poly1305_setkey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xd59da1b5 crypto_poly1305_update -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0xaf491083 serpent_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0x37d8940a twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey -EXPORT_SYMBOL_GPL crypto/xts 0x15a901e8 xts_crypt -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x009dc2e8 ahci_handle_port_intr -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0298271d ahci_error_handler -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0d49a85e ahci_save_initial_config -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x137c0d70 ahci_reset_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2a80370c ahci_do_softreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x47fd1b1a ahci_host_activate -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5d888ec3 ahci_set_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x60d528e2 ahci_sdev_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x77595d2c ahci_qc_issue -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7c0105c1 ahci_reset_em -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7e08dc11 ahci_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x85ec11eb ahci_start_fis_rx -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8b300da1 ahci_init_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8f5f1fb0 ahci_dev_classify -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9a86a3b5 ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa66bcbb8 ahci_start_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xac6e3766 ahci_check_ready -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb821925b ahci_port_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbd77c1c8 ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe15b7e84 ahci_shost_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xeba424ca ahci_kick_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xecbd8d5b ahci_stop_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xfbaa8a78 ahci_print_info -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x105b706a ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3a3ad56c ahci_platform_suspend -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x63163ce0 ahci_platform_enable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6b3fba2b ahci_platform_disable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7fb11ece ahci_platform_enable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x86fb6a23 ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x882bf088 ahci_platform_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x88742519 ahci_platform_get_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd1fbb1f1 ahci_platform_resume_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd603d984 ahci_platform_disable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xddd36ea4 ahci_platform_suspend_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe25a3246 ahci_platform_init_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xfd40b52b ahci_platform_resume -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x9b70b607 __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x7c1933fc sis_info133_for_sata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x43949123 __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x83dc3aa4 __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x84220ed2 __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xe2eb7fdf __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x02c7895a bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x046860b2 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x084987a2 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1f9bb90c bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x211343b6 bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2a12a9f3 bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2f2d6fb6 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x31461758 bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x34a7e6a7 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3aafc308 bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3f0faa8d bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3f2d56cf bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x50a5b591 bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5838b29e bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x719223e3 bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7c4e2307 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9cb20da7 __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa13a85ee bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa3949b11 bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaa71f600 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc9828b43 bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd0964107 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd650f336 bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdab1c4b3 bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x5fe260b8 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x77889e38 btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x929bf510 btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb9a879d7 btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc227c904 btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd2a375c7 btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1034ebc0 btintel_set_event_mask -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x20040b11 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x36aa89a1 btintel_set_diag_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x388ba653 btintel_secure_send -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x55c9ccf8 btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x76e5c3d0 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9fa7d4b0 btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbc50438f btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe202386d btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe478ecc0 btintel_hw_error -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xeeef2079 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x03039756 btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0541134e btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0643ee7d btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0bfd0b5a btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2a1b231d btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6592cfb7 btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6956d773 btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7217125e btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x80830c87 btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xba6d284b btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd62b93eb btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x2576abe4 qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x96127def qca_uart_setup_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xbcee539e btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xaca230bd h4_recv_buf -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x0894398b dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x202cb3f8 dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf396d973 dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf41bf2a8 dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xfc8cfd7d dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/fsldma 0xd6dd2cae fsl_dma_external_start -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x09d0c45b hsu_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x2405b33d hsu_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xbe290e48 hsu_dma_irq -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x532258d6 vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x873416c3 vchan_tx_submit -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xf680d823 vchan_init -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xf7328939 vchan_find_desc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0337a4f6 edac_device_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x12e6334e edac_pci_reset_delay_period -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x24e55008 edac_pci_handle_pe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x25ad9f88 edac_pci_handle_npe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x26f4948e edac_device_handle_ce -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2bc6a09f edac_device_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2e70c9f2 edac_mc_free -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x314aeab4 edac_mc_del_mc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x35118ece edac_device_handle_ue -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x396391c0 edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4bffcf83 edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8971c33e edac_mc_alloc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8dde4554 edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9483826b edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9da26caf edac_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb3688ac8 edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb81d4598 edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbd7dde07 edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd3aba6db edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd589b5d4 edac_device_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf516131b edac_pci_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xfc1f196e edac_pci_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xfc2f2ab1 find_mci_by_dev -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2894a598 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2b0f5931 fpga_mgr_firmware_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3c63720b fpga_mgr_buf_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x46023b66 fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x57247149 fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x81a7f2d3 of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x354757fa bgpio_init -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xf909cbfd bgpio_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x1db60dcc __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x45eb1300 __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6cc77b86 of_get_drm_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7c8d920b drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7efd8d46 drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd9fbdb6b drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdaffbca7 drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfd30d0c3 drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x1a83a4fa ttm_dma_page_alloc_debugfs -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x615178be ttm_dma_unpopulate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x70f03301 ttm_dma_populate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x172a072b hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2a39d961 hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2f6479e4 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3188eb52 hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3fc68ad8 hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4e0411bd hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5820332e hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5f383f59 hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5f675f72 __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6267291a hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6372f154 hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6f8f69b6 hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6ff91cb1 hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x72d7d765 hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x748a9c25 hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7805a741 hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x786da2fb hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x80eab233 hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8228fc9b hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x89c28cc3 hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x92004356 hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9aa23378 hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9cc0c117 hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9f94fd30 hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa1eac54b hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb99096f5 hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbbfb0d14 hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc7d35aa1 hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xca5deb31 hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd952128c __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe87768e8 hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe9375b39 hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xed315375 hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xede42952 hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf053eed3 hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf840ef1a hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x606e250c roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x13973b01 roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x3772e25d roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x4e325729 roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x502976e5 roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x65359f33 roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x7dd0bae2 roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x161d6902 sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x173e29e1 sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x3c718418 sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x62986570 sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x64b30e37 sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x8403ae37 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9f12ef25 sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xcce063ed hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf512bdc0 sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xb2d085bc hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x131404c9 hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2fd77d60 hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x340789bd hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x35b1a85a hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x51305de0 hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x52e44bd2 hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x857ee47c hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x87c26bb4 hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8f50c3e7 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x933193b0 hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9abed76f hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa83a7cb6 hsi_add_clients_from_dt -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xab8cc509 hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb2ad9698 hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbd017a6b hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbd9fe68d hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc4e1b673 hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc931b412 hsi_event -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x603f43c0 adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x6bf0348a adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xb912353c adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x11cd19d6 pmbus_regulator_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3d11899e pmbus_write_byte -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4048a9ba pmbus_check_word_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x45c6d45c pmbus_check_byte_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x54aedb0d pmbus_read_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x60366345 pmbus_get_driver_info -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x6f1a7ed3 pmbus_update_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x79dd5457 pmbus_read_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x93600504 pmbus_clear_faults -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x9cddbf5b pmbus_clear_cache -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x9e69e330 pmbus_write_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x9ea3ef4d pmbus_set_page -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb98ab392 pmbus_do_remove -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xd458dbbb pmbus_write_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xd527b3ed pmbus_do_probe -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x40a492c9 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4a8bc48d intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6c01e69d intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb1f187f8 intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xbf5e2d8e intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xdd08e1db intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf190a718 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x66196af5 stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x76b8adb0 stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7866faeb stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xbed1c7ab stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe357cc16 stm_unregister_device -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x14a906cb i2c_dw_disable -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x7118ba87 i2c_dw_probe -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x7e11bc7a i2c_dw_disable_int -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xcb649910 i2c_dw_read_comp_param -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xf9eeeb95 i2c_dw_init -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x47566ac2 i2c_del_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x6414bb6f i2c_add_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x7b40fec6 i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xf3203977 i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x50482ee6 bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x749ea47c bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xa4dc56e2 bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x1aa091a8 ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x419212c4 ad_sd_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x56bd4db5 ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x951ba19e ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xae08be91 ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xc5573a44 ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xdda7e5c4 ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe1b8a24e ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe8cf400e ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x55d75421 iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xb48fa23c iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x17584c1f ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xbcc17563 ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x83e8372c bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x86c213d6 bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xb06da6d9 bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0527ba57 adis_write_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x10e07e33 adis_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x253a0832 adis_check_status -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x55c4d877 adis_init -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x5b13ce03 adis_probe_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x792ca427 adis_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x8e3ea84d adis_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x9a296bb4 adis_reset -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc2f43a81 adis_update_scan_mode -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xcdd6b60e adis_remove_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xea5459fd adis_initial_startup -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xee3fc7e3 adis_read_reg -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0aa2fcea iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x12931a30 devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1bf8cca4 devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x217faaf1 iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2846b334 devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2cce8246 iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2fe25f20 iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3c686a87 devm_iio_device_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x520ce023 iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5dfa59f9 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6aca2975 iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6cca41c9 iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x72d32cd5 devm_iio_device_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7542ce4f devm_iio_trigger_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x768686b4 iio_scan_mask_query -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x77886432 iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7cee64c2 iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x94f09bea iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x96513e93 iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xac1a8633 iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xae593e2d iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb6b4fdfa iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbd8b4ff1 iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbfcea9a2 iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc199154c iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd866d4f3 iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdc262737 iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdd67add4 iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xee2aeab5 iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xef84262f iio_update_demux -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf60d6110 iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x2782288c input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x7b857c63 matrix_keypad_parse_of_params -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe2d1473e adxl34x_probe -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x209b1b6b cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x2387284e cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xcb52df5c cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x1537e829 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x749f9230 cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xc3f35db1 cyttsp_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x6595c1f5 cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xa4a0eaf9 cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x4f38ad5d tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xa2af0483 tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xd2536b6a tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xe311fa16 tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x27d78a9b wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2a877f7a wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x37396220 wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x38f6efd8 wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5ffcf8bc wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x70a52c41 wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x84db4a94 wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8ad53ae9 wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb13cd6bd wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd6216e2d wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf1fca197 wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xfb9362be wm9713_codec -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x379d2766 ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x43be46d8 ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4865ad03 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x52e8c65b ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x584a8c57 ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6622b88f ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa75d950a ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xdfa8b2e7 ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xfd915e12 ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0088e7c0 gigaset_add_event -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x16f84a88 gigaset_initdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x170229f6 gigaset_handle_modem_response -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x2f0a3a80 gigaset_skb_sent -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3a267efa gigaset_freecs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4187c2cc gigaset_fill_inbuf -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x518543aa gigaset_shutdown -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x78a6de04 gigaset_stop -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x82de0c0a gigaset_if_receive -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb0a2211a gigaset_start -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb0aa658a gigaset_initcs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb50b028d gigaset_m10x_send_skb -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb98b4fa3 gigaset_blockdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xbd1bc486 gigaset_freedriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc2402916 gigaset_isdn_rcv_err -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe029088b gigaset_skb_rcvd -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xeae2cc1b gigaset_m10x_input -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x14de6262 led_classdev_flash_register -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x29c0373c led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x3d622b39 led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x63f22031 led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x6c616b89 led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x78d7cc0f led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x0c269fe4 lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2cc4b4e6 lp55xx_unregister_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x638e2246 lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x6b3f078d lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7429cdc7 lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x97475b78 lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9ba3db78 lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xaa9f6be5 lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc844a974 lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xcc5ab572 lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xdd114226 lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x0a0527be wf_register_client -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x259ef226 wf_register_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x2aa7a321 wf_get_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x5c58093f wf_unregister_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x5ef16309 wf_put_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x75147afa wf_set_overtemp -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x8f0d84aa wf_unregister_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xba06a604 wf_get_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xbcace2a5 wf_unregister_client -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xcfbe4cd2 wf_put_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xec395730 wf_register_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xed82a14f wf_clear_overtemp -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x0a6ed5fd mcb_unregister_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x17dfe571 mcb_bus_put -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x2adfb0f2 mcb_free_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x2b4a31c0 mcb_bus_get -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4ee65db2 mcb_alloc_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x6155c159 __mcb_register_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x615f15fe mcb_get_irq -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x704cc8d9 mcb_alloc_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8f2bc57c mcb_release_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xcffaa6c8 mcb_request_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd7fc53b0 chameleon_parse_cells -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf1dd3935 mcb_bus_add_devices -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xfd2ab1de mcb_device_register -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x00b74659 __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2a1a7a99 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x374f45ea __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3a4dfef7 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x48991e9c __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4f124797 __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x614e860f __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x647af374 __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6724de29 __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6726a0c1 __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x68f1ea6d __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7114cfcc __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x78c57fa5 __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7cb4bd6f __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x816ebfe0 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x833b99dd __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8afe3e2b __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x912566ef __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x92c55e92 __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9c59320b __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa7004101 __tracepoint_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaf2376ac __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb3942afe __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb4cffcbb __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb9c28744 __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc0bd3171 __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc773563c __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd81ad8c9 __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe30b6b2a __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6169c53 __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfcb52b5f __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x087c8b3c dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x301a1231 dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3a3bbc27 dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x544966cb dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x69d527c0 dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa514f101 dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe95d345b dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf020af00 dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf79c430c dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x22163b69 dm_bufio_release_move -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x3909d3a8 dm_bufio_prefetch -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x594952bd dm_bufio_read -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x62a23587 dm_bufio_get_device_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9b2b253a dm_bufio_get -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xaaab5f6d dm_bufio_client_create -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xdc69e37a dm_bufio_get_block_number -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe004ee92 dm_bufio_new -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x0ec54a11 dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x207c9652 dm_cache_policy_get_version -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x36c118b7 dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa237c33d dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xc8cac81b dm_cache_policy_get_name -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xf6f0b6ce dm_cache_policy_get_hint_size -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xf756ae4c dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x0f4156f6 dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x42a2a8a5 dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x09472122 dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x19fc6a45 dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x525347b3 dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d1fca71 dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa8813ad6 dm_rh_region_to_sector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xb1f31828 dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xb744a0ae dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc66ce277 dm_rh_get_region_size -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcab63c3d dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf37a3cfe dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfeb9a416 dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11eab9fe dm_bm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x150c85ce dm_tm_open_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2e730a21 dm_bm_checksum -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x33c03da6 dm_sm_disk_open -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x619701dc dm_sm_disk_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x71291285 dm_block_manager_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9b4b5b29 dm_bm_write_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2507774 dm_tm_shadow_block -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbcfdc290 dm_tm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbe0497aa dm_tm_create_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xead1e727 dm_bm_write_lock_zero -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize -EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x05803628 saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x10ccc63c saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2a9fed93 saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x3c86893d saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4c8dff74 saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x622b99b2 saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6526f7ec saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9bd4ce08 saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc216307f saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd36d325c saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x04526a33 saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x1163ee47 saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x14b7669c saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x209f0fdd saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x3acbec88 saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x6ceafb20 saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x81977a45 saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x11c31556 smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x12a6904b smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1affc58a smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x26f7f3d2 smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4193dabd smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x68a23f64 smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x75d25848 sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8d2be7ab smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x94ce8069 smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9900acfc smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa59c59e5 smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc30968de sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd35be83f sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xda92fece sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdd36514b smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe0c0a098 smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe69817ea sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x1e573788 as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x8f53d4ee cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xc4774f87 tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/media 0x0a2892d1 media_entity_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/media 0x2477f31f media_entity_init -EXPORT_SYMBOL_GPL drivers/media/media 0x329e421d media_entity_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/media 0x39da6bbb media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/media 0x46b1121b media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/media 0x6a699c61 media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/media 0x6aa2d72f media_entity_create_link -EXPORT_SYMBOL_GPL drivers/media/media 0x719f8a5a media_entity_cleanup -EXPORT_SYMBOL_GPL drivers/media/media 0x72bff82d media_entity_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/media 0x76c7e0b1 media_entity_put -EXPORT_SYMBOL_GPL drivers/media/media 0x7ace7202 media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/media 0x7b37f6be media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/media 0xaf248741 media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/media 0xc7cca396 media_entity_get -EXPORT_SYMBOL_GPL drivers/media/media 0xcd5d73e3 __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0xcd7f51e0 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0xdc418744 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/media 0xfcf6dfc4 media_entity_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xd6b4bdad cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x041be900 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x044be9e6 mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x18cdcfa1 mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1ae8c9df mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x32eb2322 mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4d3a9e92 mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5977b028 mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7f33156d mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x808b898f mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa38e102f mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xacc3f4de mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb57e2664 mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb5fd178c mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xba49c05d mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc007f25c mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcc499f67 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe00a46bf mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe0e63379 mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfcdc601e mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x05957024 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4a32f5ee saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x711dfb4b saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7c7f163b saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8160049e saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x879b9052 saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x91829dbb saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x91a4d7c0 saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa5d8b7f2 saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb6313036 saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbd446417 saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc5fa4698 saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc6da54a3 saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd1233f81 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd292ae4d saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdda4abe6 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe5c8982f saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfbda1855 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfe31d323 saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x11de4686 ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x25e7e546 ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x5f0bc71a ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x73f532df ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb0cf620f ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xf1c776a5 ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xffe07ca2 ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0b2585ce xvip_get_format_by_fourcc -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0e373ad2 xvip_init_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x13950661 xvip_clr_or_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x4339cc51 xvip_enum_frame_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x490bd11c xvip_get_format_by_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x4f681cf7 xvip_enum_mbus_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x8fedc35a xvip_cleanup_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xc4c6d739 xvip_clr_and_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xf965c88f xvip_of_get_format -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x70a902f3 xvtc_of_get -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x45940f1c radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x8189aae2 radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x03dc6149 rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x22491d24 rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x392cba02 rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4539a676 rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x45dd693f rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4f349f1f ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x65d4571c rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x72c93142 rc_close -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7684ea57 rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9514d2e4 ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x97df4d0f rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9a7a1d9f ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa8c3d59a rc_map_get -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb982404c ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc60e2e9e rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd23f2d53 rc_open -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd622469a rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf6f64a1b ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfced93eb rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x63745a30 mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x06cf9600 microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x583d77d0 mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x9acc2469 r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x999e6975 tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0xf884a3d8 tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x3004e2e8 tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x37d3e05b tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x794b0b1e tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xc55bf5d8 tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xe80bfb91 tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x2cd55f86 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x4a23c0a8 tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x9ce6fdb1 simple_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2b87b675 cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x31ff5857 cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3c190217 cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4b04d88a cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5012857f cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x597b9de2 cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x68fb8c39 cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x708d93f0 cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x71e7f630 cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7579b236 cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x77448618 cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbc0b2191 cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc6472204 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc71fa084 cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcc1f5b56 is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd0998f36 cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd268fdd5 cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe7c13dfe cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfdccfae0 cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfe24b8b9 cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xbad8b787 mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x6fd7fb96 mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0334d4bd em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x16f82d10 em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x26758371 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x32b5d6c0 em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3b78fc10 em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x50f14126 em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x513e8eec em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x53f9e4e7 em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5e799b89 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x76267048 em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9850ece7 em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbeee5946 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc255a41d em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc51e7ddf em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcb04c180 em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcee7c154 em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf07da825 em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf94049db em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x34c2d36f tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x792e9ac7 tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x90385715 tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xab081b4b tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x07f3c864 v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x349e03e4 v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x9bfa65e5 v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xa07e1756 v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xcbbccbf1 v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xff08f7eb v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08982d59 v4l2_match_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x31b3f412 v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x49436c0a v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x046e7fec v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x067a6815 v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x10d0160e v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1424a2f2 v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1efb18a3 v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x366dd39f v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3a01aed8 v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x410adeb2 v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4f2aece4 v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x56a6c1f2 v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5f7baf53 v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x68df034f v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x791121d3 v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7a381dd5 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x96971e28 v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb0244b39 v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb1165435 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb59d32f0 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb65b04b0 v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc0e57409 v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd591fe44 v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd9a767df v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe8929f50 v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xea410b68 v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xeb47fc45 v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf291a559 v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xff0ea147 v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x07416d1e videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x15a509dd videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x17445980 videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x287ffefb videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x45f1d75e videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4c2e2868 videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4ce13718 videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x53c9636a videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x612992b2 videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6388ab87 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6e50eeeb videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x764e3630 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x883ef1ab videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8a09eaba __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9a0f9879 videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xab336f87 videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc80ca2d4 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd1572039 videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd74eb78c videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe080c48b videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe4de7476 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf310c420 videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf892df8b videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf8eabba7 videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x2b74be8f videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x7ec526fa videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x82c09ddc videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa825c75b videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xfbe9ca95 videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x7fa26630 videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xc3f50cab videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xdfb78771 videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x22b6a6bd vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x231f14f4 vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2bab0100 vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x33ba1220 vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x40cd6763 vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x642f06e0 vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x70b854b3 vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7a59b1f6 vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x80009e8a vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x95d560e4 vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xafda0b09 vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb45a7b6e vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xbbb57c2f vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xce99d291 vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd064ba85 vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd7764515 vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xdc5ad82e vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf234313d vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x96660137 vb2_dma_contig_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xd5d7c6c0 vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x3819b9ab vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x89f66494 vb2_dma_sg_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd30ec30f vb2_dma_sg_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0x8803bbdf vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x07910b42 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x08acb0d4 vb2_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x128ec694 vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x14b57959 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x17b90287 vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2d44aa8a vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2f056d0a vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3112449b vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3160924f vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x48e6048f vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4d7fb941 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4d8e5a32 vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5a8dad30 vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5c6ce48c vb2_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6025b872 vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x614881e1 vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7235daff vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7807d6ec vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7d199a44 vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8103ea1e vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8799b35f vb2_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8c70c2e3 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x927aaf40 vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9440e9ce vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9d81cf90 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa57ef520 vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbc7307c2 vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xcc4048b6 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xceefbf91 vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd8de01b0 vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe86edfde vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xffcc9625 _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x38e119e4 vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x00b48ff9 v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x014ef133 v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x05555f1d v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x085c1c98 __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0cecf440 v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1d3c6ba7 v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1e23a1dd v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x28d20b15 __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x31e3d76e __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3740e82b __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3bd82e38 v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3cc7fabb v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3ff34cca v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4a766e0b v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6036edfd v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x65b94b92 v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74193181 v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7a85f5d7 __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8ac28bff v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8fa601e9 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x98545b10 __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa51d19ce v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa5d5bc78 v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa7aea4b5 v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbfbde32c v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc82b42a4 v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd20a9405 v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd57b5093 v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd8e50779 v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xec9a2bbf v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xed64dd83 v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xefe9f746 v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5956f8c __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5a1c759 v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf6166b9a v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfe1875bd v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x2e089529 pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x5f9e7757 pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x7c46228c pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x100046aa da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2e6a7276 da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x62c81f11 da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x8ae1840a da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xa35eb918 da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xa739ceca da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xd9f7ea61 da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0d059cdf kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x5abe06b3 kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x76e652f7 kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x9aef8a51 kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xa53f3d18 kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xaeee34f7 kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xbd5a9311 kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf0f41729 kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x1c26e28b lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x64941d0f lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x7b34c339 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x75bba791 lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa451efe5 lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xafdcc176 lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xb6273c7a lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xb86375db lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xcf0447a0 lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xdce8a1da lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x0eb613a7 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x23d5422e lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xd1e81a1e lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x6fe5f9df mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x890d0c53 mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xa252fac6 mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc9b74773 mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xd5b10906 mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xdbb8b21b mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x00623621 pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x10132ba9 pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x23fdaffb pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2cceea28 pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4e8b92f3 pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x62b4fe9a pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x80f5621c pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x83153670 pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa94fd397 pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xcf74118c pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd22f8f77 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x03d5816f pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x6ecacc57 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x23355c0b pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x6d170c26 pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xc7ff34e1 pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xef427a1a pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xfa3bf1fd pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x1c57552e rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x42bffa05 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x43f8034f rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x733b7562 rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7fe7c189 rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x81de0b82 rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8823dbff rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8839d8a5 rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8ba6d904 rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9e578f4c rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9e8e82ca rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa2b8a75f rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa54ab339 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa71f203c rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc79556da rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xcb3ac6eb rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xcb48e721 rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xce4309ba rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe8acea1a rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xedcbcda5 rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xeea4e323 rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf05ab4e6 rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf4ea3369 rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf68ac8a8 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x23b311b7 rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x23b51000 rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x2d7c12a6 rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x43aa554c rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x4e6733e2 rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x80221126 rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xa44afb8d rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xa45e96da rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xae092ff2 rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb8459a52 rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe6fee765 rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xefcb7856 rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xf87912cd rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0dec1e6a si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x176783e1 si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x228a96c0 si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x24e3e513 si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x251540ce si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2cf56728 si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2d345751 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3342fd06 si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x35ccee73 si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x36e3a379 si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3a64494b si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3f88a6a9 si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4a344610 si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x50a76341 si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5250d4f8 si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6c69a888 si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x82d9b647 si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8393094c si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x88e4cf92 devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x93bb3084 si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x99ed2c77 si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb3e20d39 si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb76a2d11 si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbd3a17c5 si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbef6cd49 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc933fd57 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcd2c1302 si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcf11e9f3 si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd334e0c4 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdba3720d si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xef9275d0 si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf624eee8 si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf7733ccc si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf99a0f7c si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x1615a2e6 sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x2e2320c7 sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x45cca280 sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xe4fc8300 sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xf84ea50a sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x53154ced am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xb0b51045 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xce1d6154 am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xe39299b6 am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x5928ac50 tps65218_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xbb5cb9c6 tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xf2aaf1b5 tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xfc12bb28 tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xc72914e8 ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x42d51adf bmp085_probe -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x9a44ff82 bmp085_detect -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xbd8509a8 bmp085_remove -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xcede6a3f bmp085_regmap_config -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x2fdee6c5 cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x457be3b4 cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x8824100b cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xf9c8273f cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x30f7b59c enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x316f7028 enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x6cbe35c8 enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x86747c42 enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x87501cda enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x8d90b52b enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x97e240f0 enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xaa38845e enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1b7417ea lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x2078a074 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x31cf1249 lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x43475131 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x49df0d2e lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6de750cf lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc9d3d228 lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd4450e9e lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x98206a1e st_register -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xee4aba47 st_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x05dd557f sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0f0cd532 sdhci_send_command -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x29d4f62e sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x31ba45cb sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5c9c8484 sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x63391eb7 sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x89ab213d sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x94fa07fe sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa668e99e sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc42bd28b sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcb29cc19 sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xde36d17b sdhci_enable_irq_wakeups -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe5bf529c sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf2bd49d6 sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0f0849db sdhci_get_of_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x142bef05 sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x397351e6 sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x60d89122 sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x67bba21b sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa373ac55 sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd18e37d4 sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd895b59a sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xdf5318b7 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x07213fc7 cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x38081a2f cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xc5163fb9 cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x279c88db cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x59cec30b cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xd465475d cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xb65bee5c cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x10cada67 cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xb4ffbfde cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xfc6ce8fe cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x05dae63e register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0c35797b mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0d8da2fe mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x10dce20f mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1658a33e mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3647b242 mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3ba8007b mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x40286852 put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4986c989 mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4cbec806 mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4eee4072 mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x52d6c1e7 mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x52f76ac7 mtd_is_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x53271585 mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x53590493 get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x54f21a44 mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5c22eee6 __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5fd7d7c0 mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6e6976d0 mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x71535254 mount_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7f6f979f mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7fdc1777 kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8531b668 __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x87548533 __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x90002e87 mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x90562c80 mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x96e8ab85 deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x99fb1104 mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9b759451 register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa09cbc9c get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa90d76a0 mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb65a43e7 mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbb7bcdff mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbc134eb9 mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbd35bb69 mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbf360a20 unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcbafb9fe mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcd77bf47 mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd38f789c mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd3a07716 mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfacfbcfd mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfbb943b9 mtd_erase_callback -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x34e84a6c register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x493800f1 del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x4af16eb0 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xbe6b09af add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xd19ba070 deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x368b46a8 nand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xb9e42188 nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x4f412e80 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x170f01b5 onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x18b5e862 onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xd073e033 spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1b365851 ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x245ab5ad ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2a3c8f99 ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x320863f5 ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42ad7d5d ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x488bf459 ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x81cf99cb ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9b67288e ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xab578262 ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb0b4f45c ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc80d48de ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcd878445 ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe7919e77 ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf8eb4619 ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x6076d1f7 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xa779e5c5 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x296e87e0 unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x2cefd756 register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x2fe61adc alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x60482f4b c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x89116161 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xdaf48480 c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x00c52f57 safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0ac97ffd devm_can_led_init -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0c3ad394 open_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0cecc2c5 alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0d618c12 can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x48ec2113 unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x4af6f14f close_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x6593e5fe can_led_event -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x71537821 alloc_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x73eacbf7 can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7c38536f alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7dd3db92 can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x90634042 can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa19309ea can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb32b1862 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc2ed2ff0 free_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xdb4d17cb register_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xf90736f2 alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x0379028c register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x13d6a8b8 alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x2daa01f1 free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xc35cb4cc unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x025b2ba9 unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xc51fec76 alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xd020b230 register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xd3b8cae2 free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xc5f072d3 arc_emac_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xdd467491 arc_emac_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x011945de mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04100f1f mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x060ffad6 mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06205a27 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x068b7e90 mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d2b8536 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19351112 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a1864db mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ed3fcfe mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x224fe7f3 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23cc175d mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24b2feab mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2647e5de mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x272bf8ea mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x277ff546 mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28950385 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30c1b7fb mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x360dad12 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3858bc71 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d027cd3 mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3fc0bbcb mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3fcd5352 mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40a1478f mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40de5d24 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4228f74b mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x437963a9 mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x456fa1cb mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4be1ee8b mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d410d41 mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4dc4c889 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5065e8a0 mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x509196b6 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x532fd37c mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x557c6ef2 mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56fa5dcc __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x591745ff mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e8e3435 mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63860886 mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65008b5c mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6534032b mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68af418d mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68e272fb mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a4167a1 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a9a5f79 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b25580e mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d2ca206 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e482dd5 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fc8ede9 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70163ba2 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7291131c mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x740fadfe mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78c2e198 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b454423 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c24c643 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d6aeeba mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fd337e8 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x810de08b mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81cb0d7f mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x839c3de0 mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85310850 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87350a64 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88860b58 __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89bd0aa6 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91468518 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91497ff5 mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x935b2a43 mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9603c971 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98005889 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98cf1dad mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ae7abaa mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9de8cf44 mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f4dec50 mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9feb7708 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa227aaf2 mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa37916f9 mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa45acb0d mlx4_fmr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa56f88ec mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa981f3f9 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac774bd8 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xafa1feeb mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb31f986e mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb881911f mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb04658f mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb78052d mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbcb7b6b2 mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbce9fa90 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd67fc94 mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0020654 mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc232b055 mlx4_map_phys_fmr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2a28ccd mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5da16a2 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca37b1ac __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcaa4465b __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0487612 mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2be4586 mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7f6c4ad mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd86b16f0 mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda8da23b mlx4_fmr_unmap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc24811c mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc7a917c mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd4c95ad mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf49f7d7 mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf7cc7a2 mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0be421b mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2505347 mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe425007a mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe47394d9 mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6ed81f3 mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe751cc56 mlx4_fmr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed75f1e5 mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef092118 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0bbe843 mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf16fe349 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf33d356b mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3b75857 mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf509105a mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf564eaf6 mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf599883d mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7c535dc mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7daf8e7 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa8f07a8 mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcd4f273 mlx4_fmr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd84694a mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xffc4f343 mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x072c9098 mlx5_query_vport_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x096edb3e mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d40af30 mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17d85976 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2bb19780 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x302353bd mlx5_core_create_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x426e6573 mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42714dec mlx5_core_eq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44377c02 mlx5_create_map_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x462d8acf mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x489660d9 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ec2e9d9 mlx5_core_xrcd_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4fe6c9cc mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52027f32 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56dbdcdf mlx5_core_mad_ifc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x615c5181 mlx5_query_port_proto_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x639ac04e mlx5_core_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6735692d mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6debbe48 mlx5_core_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ec1926b mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x701c67c6 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7444f635 mlx5_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b4fa9e8 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fc31796 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84c4ccce mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85ee3032 mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88499959 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eed4c3 mlx5_core_page_fault_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98c94a39 mlx5_query_port_link_width_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa41e8782 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac5fb6c3 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac80a6a8 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7f9041b mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb96b1420 mlx5_query_port_proto_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbfe3f391 mlx5_core_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc12b3ae4 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc86d3b50 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc96016cc mlx5_core_destroy_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd04f359a mlx5_destroy_unmap_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4f9516f mlx5_query_port_proto_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6e106af mlx5_set_port_proto -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xebd4fcb8 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef472a78 mlx5_query_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3fb0420 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffee6262 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x368d3d71 regmap_encx24j600_spi_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xd4ab3625 regmap_encx24j600_spi_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xdd0890a7 devm_regmap_init_encx24j600 -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x226fd364 stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x85c90d29 stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xa95157bc stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xbcefe73c stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x03d832b5 stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x18053277 stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x4e4d29d6 stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xf15d211f stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x13fffa17 cpsw_ale_control_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x31d7b397 cpsw_ale_set_allmulti -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x349a2124 cpsw_ale_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x4638c836 cpsw_ale_start -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x4b40e2c7 cpsw_ale_add_mcast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x5be7755f cpsw_ale_del_mcast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x690c5a4d cpsw_ale_del_ucast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x788b8ed3 cpsw_ale_control_get -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x8b2d4fdc cpsw_ale_dump -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x9b56ed95 cpsw_ale_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xab143952 cpsw_ale_flush_multicast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xcb613301 cpsw_ale_add_ucast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xd1706b8c cpsw_ale_add_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xd45a951e cpsw_ale_del_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xef535bb5 cpsw_ale_stop -EXPORT_SYMBOL_GPL drivers/net/geneve 0xa9535678 geneve_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/geneve 0xd4d91e10 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x0afe29b8 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x26533569 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x654d858f macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x6fb4aefd macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvtap 0xdc204a74 macvtap_get_socket -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x25685384 bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3ff76c95 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4824fd60 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5b525c56 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x61fd1adb bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9b91ca53 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa29a6713 bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa48d1179 bcm_phy_enable_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf1741d79 bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfd6f3bc7 bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0xd59a2c9a mdio_mux_init -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x2ba258ca usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xa717ea02 usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xcd23610a usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xe82e4e7e usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1227d21e cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2b75ef7b cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8a5741ac cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8ed304ec cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x997b726b cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9c0e3a8a cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa13def3e cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc66bcb84 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd7f19faa cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x10722494 rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x126c064c rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x16a01f9a generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x517ee834 rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5c43bc08 rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xba24eb8c rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x08e85609 usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0f721131 usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x27a5f91e usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x27f838db usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x29b9abd4 usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3014ca29 usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x380a3943 usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3c5461c9 usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3d0b01b2 usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x40b64b57 usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x474a67ae usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4be79a4e usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4d8111b8 usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x54571952 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5ba25742 usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x65023eb2 usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6ae04d59 usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6bddc1d6 usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7bae2ca9 usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7bb27e27 usbnet_set_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8c3723e0 usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x95a27da4 usbnet_get_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa0de57d4 usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa0df0b74 usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb68cce3e usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc21d3896 usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc81e79f6 usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xca5eaef0 usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd6dde0d5 usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdc7714d7 usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe41b8d0f usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xea4d5cff usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x2ad0120b vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x7dfe0d7d vxlan_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1084456c i2400m_tx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1bfbbeb2 i2400m_tx_msg_sent -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x27036853 i2400m_dev_bootstrap -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2b9643a8 i2400m_release -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x33c28e0a i2400m_error_recovery -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x66d7fa6d i2400m_init -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x691769bf i2400m_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x6f7a0957 i2400m_pre_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x7a2beabb i2400m_tx_msg_get -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8870be5d i2400m_netdev_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8e9aaf7b i2400m_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x9628ec90 i2400m_is_boot_barker -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x97e5e246 i2400m_cmd_enter_powersave -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc636c6e0 i2400m_dev_reset_handle -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc76e76cf i2400m_rx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe10299d4 i2400m_post_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x2b2b8037 cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x72069176 cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x96a47ff9 cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x997b41bb cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x21c0777d libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x12f8728f il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x6aafa914 il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x798bdb50 _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x9fcef5e5 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xee2f314a il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x002b2e74 iwl_init_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0125e49d iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0d556623 iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0f48dcb7 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1433de76 __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x19ce5f30 __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1ef4312b iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x249ee1f2 iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x26ff13d5 iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4a7d7d5c iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7079f56f iwl_write_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x721096d5 iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x829fd38d iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8614786c __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x87458c33 iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8c201cd3 iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa077751a iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa3b997a6 iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb16ca99f iwl_opmode_register -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb2967531 iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xbc34c357 iwl_parse_eeprom_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xbde2f473 __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc6525bef iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc67c31ed iwl_notification_wait_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xcd103c93 iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd544fdaa iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe0d3442b iwl_remove_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf5aea4a7 iwl_notification_wait_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf5cbcdec iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf7360989 __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf7f4016e iwl_nvm_check_version -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x1db833c7 lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x1e3988f3 lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x2f97457f lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x57744091 lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5d7a25c3 lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x6a946060 lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x71634e44 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x842bfc00 lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x93f421ff lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x94058fd0 lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9ee774d5 lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa610bd55 lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xbbf04fcc lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xbd5adcfa __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe75f042e lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xfc87aa12 lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x0966880f lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x4a96b417 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x4e244e7e lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x87b1ddd4 __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc06cb299 lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xdedb3ca6 lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xf4558494 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xf8f7fa59 lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x0e64f96f mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x14704ec0 mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x248566b9 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x266ff418 mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x38a6ca25 mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x3de09c23 mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x4b06c87b mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x6486e929 mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x667aa1d5 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x69880c60 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x7441ba98 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x77147d23 mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x7bfa28f3 mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x834bf85e mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8393960c mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8c24adb3 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x946761e0 mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xe3b65d6a mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf7b89200 mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x2139cd86 p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x28d8884e p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x449be005 p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x50b4acc1 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x6055099d p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xb30d9f67 p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xc0b1f55c p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xea7ab63b p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xfb567c58 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x44737030 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x58c9d078 dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x969f5a0b dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe947451f dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0ba9c0da rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0eb63a89 rtl8723_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x14441443 rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1d895cd5 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1de9d89c rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2149eabe rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x233c1c12 rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2bd120c1 rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2fc6dd5c rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3742a6cb rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3980abb6 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4416deaa rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x561be076 rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x634b87f5 rtl8723_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x83cc6437 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x86032568 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x881cb656 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8c6f3cef rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9ee18534 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa2b8088e rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa7132397 rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb12aff21 rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb68b848f rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdcae1424 rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe162d4eb rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf4d659d3 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfefc1eb0 rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d0b6636 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1938c9e7 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x35a3df9f rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3c143297 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x49d3d357 rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x605c946a rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x708f1669 rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x73ed6cd3 rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x778878fd rtl_attribute_group -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7a6dac53 rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7d8a0d07 rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9a3065ff rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9fa0ebaa rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xac4441c0 rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xae27ef53 rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xba74ec7b rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbec1f3f6 rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc6964af0 rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xec2348c8 rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf9a00ac3 rtl_dbgp_flag_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x219175e3 rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x4b9a5def rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x613816c4 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x9f5ffe21 rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x05b00000 rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1058708e rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x12c98124 rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x15e1cf72 rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x38935e50 rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3e838977 rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x492bd0a9 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4a78d9c0 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4e2fc18f rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x56643983 rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x64b2e338 rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6c40c1e9 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7045f0c3 rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x75d662df rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7808ddc7 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7a10f32d rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8cb6aafe rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x92fb8066 rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9659ca5c rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa3db0cc2 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xacde4181 rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xad13e21b rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb2f83246 rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb6a1cbae rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb8532303 rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbf99d831 rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xca98ed1f rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcc35860f rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd2fa2420 rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe0291eea rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe0cd3490 rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xebffc620 rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xecb6bfb5 rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xecd8bbfb rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf01ba592 rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf319e63a rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf8dc28d7 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfb9ccf76 rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x018d556c rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x3086b3f1 rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x3af0f0fe rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x47e5185a rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x59436d67 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5c00880d rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x6111eb2d rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x74388ef0 rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x765f73e8 rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x782882ac rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x78dead21 rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xda78d36e rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xf4cc002b rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x00dc08ff rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x01fbda14 rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x03b2d9a8 rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0d6b3063 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1fb14a87 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x216823be rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x22a21458 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x241a73ff rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2e02c393 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x370d1d01 rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x38a7c4d2 rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3bc02889 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3c012db5 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x417fd108 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4b3f2fed rt2x00mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x53d12713 rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x564d1998 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x589c05eb rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5cfcfb8c rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5d590c29 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x62bd9bb3 rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6ea5c0ae rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x70e90395 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x75f4474f rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x826e5ec4 rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8bab3f47 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x935d4b72 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9cb6831a rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9db42405 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa62ec5c3 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa6f5db53 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb6119380 rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc1358f5a rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc4b6c67c rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcccaf5da rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd8cf63d0 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdced48fa rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe2a1605f rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xeb2ba395 rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xeb4d32f4 rt2x00mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf08b75e3 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf138e583 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf7a553cb rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfd51b320 rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfe007f41 rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfef2cde9 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x0f107986 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x303f5ea9 rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x473cb41c rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xa8464498 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xd311898e rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x376b6350 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x520a747f rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x93d2136c rt2x00pci_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xf0576594 rt2x00pci_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x00dd9062 rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x010c0a9a rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1edb62bd rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1fb5294f rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x61311bfe rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x614ca5d0 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x6f7623ab rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x7f7fe1c0 rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x844d7793 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x912e675e rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x91a48624 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xad094a46 rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc7ecb4a4 rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd31d16ca rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xdca006dd rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xfcc0fea0 rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x5af019b6 wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xa8a64194 wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xb783340a wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x049baac0 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06174e6f wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1a2fd405 wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x299e689e wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2a6f6beb wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2d277a8a wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2f644976 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3092db06 wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x35c3158b wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x41269a0b wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x42312e13 wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4c7562c0 wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4d1725bd wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x61904ce1 wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6b77f00f wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6ee9566a wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x70354fba wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x70529b40 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x785abc4b wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7a4120a0 wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7f9f680a wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x80525a70 wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x83394fdb wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x86eeb8a7 wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8d38d34b wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91da5146 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9641a5f6 wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa1ed00ae wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xac839795 wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb818a5d0 wl1271_ps_elp_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb8d041bd wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbd15fa76 wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbeae14f4 wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbee43775 wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc101540a wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc11e1068 wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc28a5c77 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc32315bc wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcac33180 wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdb454d8a wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe9fb9a1f wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xef04319d wl1271_ps_elp_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf004da6c wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf0dd2021 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf238468f wlcore_remove -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x1cf59e1d nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x49dbf2a3 nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x4f8e71bb nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xb1d08161 nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x228e7583 st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x2615959a st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4e0cf17c st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x63de3663 st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x69cc1e46 st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xd46930bf st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xd5329e26 st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xfe8d9734 st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x7f91e5af ntb_transport_unregister_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82af4774 ntb_transport_register_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xa8fbd4cd ntb_transport_create_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x0e44e5a2 devm_nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x36ec8a8a nvmem_device_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4476dc25 nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x68758fda nvmem_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x6ee42014 devm_nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xa59828cf nvmem_register -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xaa62dc67 devm_nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xade3ee87 of_nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc96fb674 nvmem_device_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xdf9bf3fc of_nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe10d1075 nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe18960ba nvmem_device_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe9a7fe16 nvmem_cell_read -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x9dd89133 pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xa76198a0 pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xf7f7566f pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x1d4ebdd7 mc13xxx_parse_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x5c86ee08 mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x77486b5f mc13xxx_get_num_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x9a378301 mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xab114a31 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x10c9efa4 wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x331358f7 wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4369a1cf wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x5d5a8dbc wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x84098367 wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xab2c3a17 wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x9ec5e557 wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x00fdff2a cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x08f5f4c1 cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0a5fe5aa cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0f8d7d5f cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1f02b3c5 cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x242e3634 cxgbi_ddp_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x39f3ae54 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3acaa26b cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3b472343 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3f6819d9 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x46fb7e9f cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4c116825 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4d91f1fd cxgbi_ddp_ppod_set -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4de725ee cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5b20e540 cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5f0a2f47 cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x60d226b1 cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x66644c73 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x694e6ff8 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6dbece05 cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6e85b41f cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6edd5489 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6ef4aaf3 cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7bc2be33 cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7f00889b cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8450ef99 cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8a2d087c cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8fa5f08a cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9a31cb4c cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9b8632b6 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa39e43c4 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa707cedc cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaa2f99bb cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb1ca14e6 cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbe4cc1ed cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbe83da1b cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc3f6749d cxgbi_ddp_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc746e026 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcad54579 cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd5390f49 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe21ada65 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe51c228e cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe659c89c cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe7fa874a cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xea3a9a3c cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfba730cd cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x00c47ede fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2dab67b4 fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4538bb2e fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x48229556 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4ede7028 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5d78db2b fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6e4fcfc7 fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6f485646 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8d98317b fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8d9fecc2 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9477de8f fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9d25f87f fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa5bc4684 fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xab56a2fe fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf20a4c65 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf28985ff __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0eaf44b4 iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x377e8a38 iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x512ee7f1 iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x79f93cd9 iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe0061a68 iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xf13ca013 iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x13937444 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x28649a68 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2bca6cfc iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x391de066 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x393ada4e iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3cb2ca5b iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x410d9dbe iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x439c9566 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4d03da5d iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x516a5976 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x52344afb iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5b3231bb __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5ffc7ca4 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x60d45f88 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x64e7402b iscsi_eh_target_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6709f927 iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x689825d3 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6fb3025b iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x712d9b19 iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x748f14c5 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x75e37b5b iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7df5c63f iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x83260f22 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8763333f iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8ca02b42 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x94bb8d41 iscsi_conn_queue_work -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9659d921 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa81b077d iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xac3b03cc iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaca70c4f iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xae1998b4 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaf759249 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb05350bb __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc23f62fa iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd344008a iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xde20d58c iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdffbc2fe iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe977b64b iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf3b8616c __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfb0d388c iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfd84650a iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfd9a1e48 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0a229c6d iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0aafe878 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0b2174a7 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x13fe5649 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x25da2df5 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x30946463 iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x54be5a22 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x560ddaa5 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x568863d9 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x622cc2eb iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x78c0a81f iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x79b2279e iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8d72ae9b iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x99c59462 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc4af5ba5 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc7b4c0f4 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd0ee95b8 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0108d2e1 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x02b1f134 sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0dce3897 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x25a7f953 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2ecdff85 sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3bb5ff9c sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4715ad12 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x47941a9e sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x50fc3d83 sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5934da7d sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5fb744c4 sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6180f972 sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6fe39823 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x84e87274 sas_domain_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9ce81104 sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa2c438f4 sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb291bf3b sas_eh_bus_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbed6f23b sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd7648787 sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdf00a746 sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdfcea3d1 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe4d15ffe sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xecd321d4 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfab917fd sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x08bdafd5 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1cd884af iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x22759e24 iscsi_is_flashnode_conn_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x241accd4 iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x27aca4f4 iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x37f053d0 iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3b024ca9 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3b13b0f1 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3f67c948 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x420f8110 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x50160e5c iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x51773633 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x58a3c290 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x60704ce9 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x60a1b724 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x60bbea15 iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x684c2523 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6bbd0217 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71d8fe3b iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9308e109 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa652883b iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa662b798 iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb18da07c iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb984beb5 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbb1abde7 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbe73a1ec iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbf3c62e1 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc2dc3cd2 iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc3b7d695 iscsi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc5f124da iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc8c52a99 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcc0205b4 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xda059f43 iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdbe68a32 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe6239a3d iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7c319fb iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf9fb9a76 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfb2ce8fe iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfc5421e6 iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfe30f847 iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x42ad3c0a sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x58e3dea5 sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x80753210 sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xc5541759 sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xdffb79db spi_populate_tag_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x04eba796 srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x05a7cc99 srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x6d9f2b43 srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xa8d2fa39 srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xc55cd227 srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf580406e srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xab5c5a20 ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xb42c35c7 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xc5e1c575 ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xc75f75f7 ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xcf3a189f ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xd429ab53 ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xf68a7ffe ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x044ef206 ufshcd_pltfrm_runtime_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x05dee46c ufshcd_pltfrm_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x35897dca ufshcd_pltfrm_shutdown -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x931bc84d ufshcd_pltfrm_runtime_idle -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xac77688d ufshcd_pltfrm_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xe71004cc ufshcd_pltfrm_runtime_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xe90760e1 ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x3b0fcc36 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x4a9ee6d1 spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x4ef0dbd0 spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x6d0c8e65 spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xf12ddf17 spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x128ec933 dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x1809c5a8 dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x53cdf921 dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xb882b941 dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1349aa43 __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1f7a061d spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x31b227fd spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x32489e4a spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x514285e1 spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x64df943b spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x756f9c61 spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x77dce746 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x92420fec spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb63176c5 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xca4637af spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcf4e76a2 spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd1edd96b spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd8ff0219 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd975e62a spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe5e195d8 spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf6dfd75b spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfe049356 spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x1391fe1d ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x050f2f0d comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x11925233 comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x15bb6e64 comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1a80b8e7 comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1aef53de comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2e6b92c8 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x32546188 comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x42286334 comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x45e55a4c comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5430c2d6 comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5f2d132c comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x631a4dc0 comedi_event -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6463e54e comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6d3d11cf comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6f4f55cc comedi_dev_put -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x70b7a8c0 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x72b1100e comedi_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x80f94856 comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x881dbc6f comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x94a85922 comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x99c42137 comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa0ff36fc comedi_timeout -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa1ffd2e6 comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xaad746ab comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xab0794fc comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xac231859 comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb0c3d5f8 comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb8a06622 comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xba2126cb comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd13749cc comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd2544d91 comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe49dbdb2 comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xea6ef941 comedi_handle_events -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf370a371 comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf6529eb5 __comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x14b426ae comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x17fab27c comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x250b1c96 comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x4e4412d0 comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x6db0ac7a comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x7a5de269 comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xa70e42eb comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xdc8b5c2a comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x157997f4 comedi_pcmcia_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x2802f2be comedi_pcmcia_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x3094f946 comedi_to_pcmcia_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x3d125288 comedi_pcmcia_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x8785aa8b comedi_pcmcia_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x9718d7dd comedi_pcmcia_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xf65d4542 comedi_pcmcia_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x27bff8c2 comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x2b47a901 comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x326805f8 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x4bb6ecc0 comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x9fdfff29 comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xebba6b1b comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x72dbf867 addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xacaadc08 amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xd791d600 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0xedf7951c amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x03693dc2 comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x277d274b comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x34e77278 comedi_8254_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x3f76de59 comedi_8254_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x47d7db6d comedi_8254_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x716d2a5c comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x831f8d4e comedi_8254_load -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x91e0da9b comedi_8254_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xa7f3fb6e comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xc538a458 comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xd12128da comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xd71368f1 comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xf18796e8 comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x5f98a6ce subdev_8255_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xa311e9c4 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xf4a49e67 subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x0d68fcd9 comedi_isadma_poll -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x6815a033 comedi_isadma_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x6db0bcb1 comedi_isadma_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa3d01a85 comedi_isadma_program -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa7ebb8a3 comedi_isadma_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0xf4907076 das08_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x1040f201 mite_buf_change -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x19c6239e mite_prep_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x1a190592 mite_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x383d914c mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x3fc937f3 mite_sync_input_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x45368c88 mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4cf4791d mite_release_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4ddb5707 mite_bytes_read_from_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x57359c55 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x58deb2a1 mite_free_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5d15ab92 mite_dma_tcr -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5ed36cf5 mite_get_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x64dd51aa mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x65a56e07 mite_setup2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7fff9f10 mite_bytes_written_to_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x921a867e mite_done -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9e01ce62 mite_sync_output_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc1cb9c48 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xdf582e95 mite_bytes_read_from_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe3c4139d mite_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xed7ce682 mite_bytes_written_to_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x132d2d94 labpc_common_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xa6392e1f labpc_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x10898249 labpc_handle_dma_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x1b380730 labpc_setup_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x27b8a959 labpc_init_dma_chan -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x5311d4bb labpc_free_dma_chan -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x623d43dc labpc_drain_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x029c6fe8 ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x11bf76d4 ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x63b319d3 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x6b151282 ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x832a5e2b ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x95cdf826 ni_tio_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xb5e90a1b ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xcf31b49c ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x058814fa ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x1b2ae9ec ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x758ad692 ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xc9d75f64 ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xcfd516c8 ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xfbe7716e ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x1a9cd3cc comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x232daf1b comedi_open -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x39c0a260 comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x6fe8ef91 comedi_close -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x7137c0d8 comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xabd64a79 comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xce4c4937 comedi_dio_config -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xcde14790 adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x11810d26 most_get_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x136ecce8 most_register_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x2dca5209 most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x31d47ca3 most_put_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x6ddd00b8 most_deregister_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x73151621 most_start_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xa781d25c most_submit_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xc5711adb channel_has_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xcfc3c32c most_stop_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xd0426536 most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xeda6ef6d most_deregister_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xeec3a495 most_register_interface -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0af076bc spk_var_show -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0ef1d765 speakup_info -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1e244685 spk_do_catch_up -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x53fa2aa3 spk_synth_immediate -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x5fb50a1b spk_serial_synth_probe -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6ae610e0 spk_synth_flush -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6e20005e spk_var_store -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x81252647 synth_remove -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9fbc3fac synth_add -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xafe8a5ce spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb35aaab9 speakup_event -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe671446f spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in -EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain -EXPORT_SYMBOL_GPL drivers/uio/uio 0x0cf866fb __uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xcef741e4 uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0xd7610d04 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xb24f42f8 usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xe2279bd2 usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x3c2de9c2 ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x5d66d45f ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x7292f4d6 imx_usbmisc_init -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x873a2f76 imx_usbmisc_init_post -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xed2b3ff4 imx_usbmisc_set_wakeup -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6e38f72e ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x94d0e9d6 ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x992fb2af ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x9e6484e3 ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xb190e99a ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xceb22e4b ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x067a1bf0 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0c184f87 gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1352c108 gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2bbeac3e gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x37854391 gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x55f92a1f gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6f8a33f4 gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x71770b05 gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x73ab73f0 gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x84087510 gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x84429667 gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xaa2ef58f gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xaf2c3586 gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb767413d gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbd1c5dcf gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x733a094e gserial_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x88301c4f gserial_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x1e43a028 ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x4cf6000f ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x5349af2c ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b806752 fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x20f2600a fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x28206e73 fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2add8e4f fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x49609e0f fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x546c7f99 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x59d14f65 fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7065c687 fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x731aa5d5 fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x78fd7c5e fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x987bc0cf fsg_config_from_params -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xae1f6ade fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb27c980e fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc4aa304c fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd468f882 fsg_common_set_ops -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xed9804ca fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf3d619a6 fsg_store_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4fa771d fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3ef524bd rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x552fa506 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6c7f03ae rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x85dd5a9e rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x89c9a6d7 rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9475dff2 rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb2b2f858 rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc94eb464 rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcc510b9c rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcf73a63c rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd92d8076 rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xda222f72 rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdeed2b95 rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe8313fc6 rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xed0ce442 rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0129594a usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0492e793 usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x06c6a40b usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0e37fab6 usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x10341c8d usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1320c6e5 usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1471e6ba usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x192847d3 usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2be37dd4 usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x391a1deb usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3fd5102f usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4792dda6 usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4b41d749 usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x53589e78 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x607cdcca usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6bfff0f7 usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6ce8f8cd usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x74f993e5 config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7caf6fa9 usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x83b0a1ca usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8a7bc7b7 usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8b2391ca usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9075bcf9 usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa68809c4 usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xaa74feee usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb06a25d3 usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb63b6491 unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcf3a515a usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe552a195 usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfa17aece usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x05192257 usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x08fe8eef usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0a9650de usb_udc_attach_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1586d0fe usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1c35afc9 usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2193f861 usb_add_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2e2ddf1d usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5320df7e usb_gadget_map_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x73cf2cd6 gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x78bfdae7 usb_gadget_probe_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x78d481e8 usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4744dba usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa789aefc usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xad3dfb8a usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x4417ef61 ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x4532df09 ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x411d110e usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x6481b4b0 usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8e2e2530 usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa8ab0979 usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb689ee74 usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xbcf94fe0 usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe7b272c8 usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf39a7f51 usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf4c63799 ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xe23debcc musb_interrupt -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x8a1b947a isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xe84cfe01 usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x042fdb04 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0c96ff0d usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1e9249f1 usb_serial_handle_break -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1f88daab usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2095a034 usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x54d31b8e usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5f2e3aed usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x64bedee9 usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x66d046f3 usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6a2cb569 usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6cdbf036 usb_serial_handle_sysrq_char -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7926de28 usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9e67bae7 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa83ecc5d usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xba2aaa03 usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbdc8db4e usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd41bb4ea usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdb89d8a5 usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf39c1fb5 usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf42c1836 usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf707831d usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0008cc0f usb_stor_access_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x154ca944 fill_inquiry_response -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x25cdd116 usb_stor_set_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x348b459b usb_stor_CB_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4499e7d9 usb_stor_CB_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4c312b13 usb_stor_Bulk_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x50fea875 usb_stor_bulk_srb -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x54d4b1eb usb_stor_disconnect -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x723f6ffc usb_stor_post_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x78283b4c usb_stor_probe1 -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa3e766ea usb_stor_bulk_transfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa55662ed usb_stor_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xaf35961b usb_stor_ctrl_transfer -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb204db1a usb_stor_probe2 -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb50d420e usb_stor_pre_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb7806d2f usb_stor_control_msg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbb3dab66 usb_stor_adjust_quirks -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc10a3881 usb_stor_transparent_scsi_command -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc8cbdac2 usb_stor_Bulk_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe3a2804e usb_stor_host_template_init -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xeb5f7db7 usb_stor_suspend -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xeddcea7b usb_stor_reset_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf36a8399 usb_stor_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf8b94152 usb_stor_bulk_transfer_sg -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x06f23cf4 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x16b886b9 usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1af3c292 usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2ad27972 usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3aeee9c1 usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6216d041 dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x71e2b2b6 usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x72dd9482 usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x94e2536f usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9a46595e usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc8d1deec usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf5aa66f9 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x09c84656 rpipe_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0ac8756c wa_urb_enqueue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x4786dba4 wa_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x91b1a75f wa_dti_start -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xb0fe309b rpipe_clear_feature_stalled -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc543b60e wa_process_errored_transfers_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xd489a8df __wa_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf4654c3f wa_urb_enqueue_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xfa131743 wa_urb_dequeue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x02957743 wusbhc_reset_all -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x2b35e361 wusbhc_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3c421f1f wusbhc_rh_control -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x5a5827ec wusbhc_chid_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x657f3eba wusbhc_giveback_urb -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x68ea83d8 wusbhc_mmcie_rm -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x91da4997 wusbhc_b_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa5454a1d wusbhc_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xac4380f4 wusbhc_handle_dn -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xbcba6b4b wusbhc_mmcie_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xbf11cf33 wusbhc_b_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xcb67ec74 __wusb_dev_get_by_usb_dev -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xdcb96025 wusbhc_rh_start_port_reset -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xeb132303 wusbhc_rh_status_data -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x2af1cff2 i1480_rceb_check -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x5c5b3c06 i1480_cmd -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xf6b76df2 i1480_fw_upload -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x76f601af umc_device_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x978bb4c3 umc_device_create -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xca096406 umc_device_unregister -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xdb81f089 __umc_driver_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xe15b9d2c umc_controller_reset -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xecac9d59 umc_bus_type -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xee88642f umc_driver_unregister -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xf12b5343 umc_match_pci_id -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x09a422b1 uwb_rc_cmd_async -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b8aad57 uwb_est_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0dfa8f2d uwb_rc_ie_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1b493da5 uwb_dev_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1d746cf6 uwb_rc_vcmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1e84daee uwb_rc_get_by_dev -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1ebc8bd4 uwb_pal_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x205b84c1 uwb_rsv_destroy -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x270f1c2d uwb_rc_alloc -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x42680c80 uwb_rc_ie_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4b6362e8 uwb_rc_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4c659106 uwb_est_find_size -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4f3668ec uwb_pal_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x557942ce uwb_rc_neh_grok -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x56744668 uwb_rc_pre_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x58e71cb6 uwb_radio_stop -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6f9e61f9 uwb_rsv_establish -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7859e49e uwb_rc_put -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7a01fbc7 uwb_rc_get_by_grandpa -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dcfcd23 uwb_ie_next -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x81d4ed99 uwb_rc_cmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x89d53bda uwb_notifs_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8e64c563 uwb_rc_reset_all -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98233590 uwb_radio_start -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa1ce4dad uwb_rc_post_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa3385527 uwb_rsv_get_usable_mas -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa35c673c __uwb_rc_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xab9485e7 uwb_rc_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb07ff1e6 uwb_rsv_accept -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd7ddb66d uwb_rc_dev_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdecdb8c4 uwb_rsv_terminate -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdfbe1939 uwb_rc_mac_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe14bb130 uwb_rsv_create -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe85fa615 uwb_rc_neh_error -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xeb9573c4 uwb_notifs_deregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xed0fe5f6 uwb_rc_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf1cb3686 uwb_pal_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf4b9859f uwb_dev_for_each -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfa0a30a5 uwb_rsv_modify -EXPORT_SYMBOL_GPL drivers/uwb/whci 0xcb830891 whci_wait_for -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0550d08e vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0c61a84d vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x16da80ca vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1a66c7f6 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1de2e52a vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x485374de vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x544ebb9b vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x689e93e8 vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6a62b6dd vhost_init_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6cc36f1f vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x81f9e819 vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x828a430d vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8599dd64 vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8804ce29 vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x90bd8884 vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x93cd79b3 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa1d5756b vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa9f2b370 vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaddfeae2 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb05ac9c2 vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb0f81e37 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb41a9223 vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbd5f33f3 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbe1c0078 vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc4ffa146 vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc7029e3c vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xddba16e7 vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe4b02cd7 vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xeac2021c vhost_work_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfe7e9ae4 vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x1d2f5540 ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x3b3a659d ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x74782dfd ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x8585ebf7 ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x8c68947e ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa13f0e6a ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xf30ad0b8 ili9320_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x3f9a1599 auok190x_pm -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x4bbbf921 auok190x_send_cmdargs_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x70300fae auok190x_send_cmdargs_pixels -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x81c1a0f6 auok190x_read_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xa2a82dba auok190x_common_probe -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xab344c44 auok190x_send_command -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xad405582 auok190x_send_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xb5742e77 auok190x_send_command_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xd9ddab7f auok190x_common_remove -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xfe2797ef auok190x_send_cmdargs_pixels_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x9b70d211 fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x492e8ab0 sis_free_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x5b226970 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/w1/wire 0x0bd39303 w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0x14d8043d w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x1b6a256f w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x31c918b2 w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x7f75b76c w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0x9fe6f56e w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xb6f588f0 w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xc6c5bac1 w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0xf9b55294 w1_write_8 -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x1c8d4932 dlm_posix_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x8401df99 dlm_posix_get -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xed306ee8 dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7b2e41c6 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa0405a30 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xbaeec520 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe397c115 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe51fd7a1 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf49dd99d nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xfb3d071c nlmclnt_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x021a914a nfs_fs_mount_common -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04bd3b8d nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c0f82e6 nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f4671f1 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16517afe nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x175d9e53 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19cab3c1 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b60d072 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e2b49b1 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x224074d7 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x243970a8 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24f73b68 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x297743d8 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29d3d93f nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c5ae528 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cbcf764 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cc0a116 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d6768bb nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2fa2adb6 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31053c2c nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31aa3c26 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x384b895b nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x398b9925 unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39b5aa2a nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39ba9304 nfs_set_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c1a9683 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d46740b nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40b773aa nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x417b8459 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41e89c29 nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42d58261 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cba21a5 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e43e678 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4fa2cd53 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50940c47 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52797e4b nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x552a117d nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57bb4d0f nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b36bc07 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c005f50 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c2dd041 nfs_clone_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d88abb4 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64969673 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65de67b1 nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66cba4fa nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69532bd0 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ebc1a9a nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f9b56e0 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72491ced nfs_remount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75810508 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x769f45d7 nfs_file_fsync_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76cf1522 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7cccaa47 nfs_fill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7dca4263 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f25a2b6 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f79b71d nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82089e2c nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84d343cd nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88747557 nfs_fs_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88b80778 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8bbd95f0 nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c78854e nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d40fcbd nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e349999 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92383b08 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92a58021 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x94a091b8 nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x955a8d5a nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9733b14e nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97e51d2e nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99287892 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9933c5d9 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a8cb4de nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b1b4baf nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b3e7dfe nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b7e72cc nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e1bdc26 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9fa008d5 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1659254 nfs_try_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1caf7d7 nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2fa547c register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3a3b1fa nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa99dcbb1 nfs_destroy_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9c269c8 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9f9a576 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa14361 nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac5b83f9 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0a761d5 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb15cb789 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb418da29 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6378a91 nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb64b883d nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7faba96 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7fad132 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba16005f nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcee5b13 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd337032 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc38f021c nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5e6a310 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc737afad nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8949c5e nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc89958c3 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd00c6ac nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda43a1a9 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb767ace nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdcfe04f3 nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd4888fb nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf427ebf nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe04a41ea nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0ff2ced nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe5ff0374 nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe60ceaad nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe917efde get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea6d5c24 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeca247ea nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed247c40 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef1f0e05 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef8c14c3 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf13e9086 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf15e6741 nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf27c40f3 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf74927c4 nfs_file_splice_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7f556e2 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf93727bd nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9e7a0d0 nfs_pageio_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfeb02bc0 nfs_pgio_data_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x0373856a nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x00b5422a pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0a9621f3 pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0c9ca215 nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0cf2e8e8 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0e5769e8 pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x114e4288 pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x13dcd523 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1fd74b32 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x23fe11c3 pnfs_put_lseg_locked -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x24046417 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x274e4536 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27fe6a72 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2cfc61f4 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x35f02ae1 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3cd7b7ef nfs41_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d3ec81c nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3f482885 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x46b76ad5 pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48cddcb6 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4de57ae2 pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5132c58f pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x53324c88 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5edd7f84 __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6186acf9 nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6ce0de17 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x712584b8 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x74c21715 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x76f9209e nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x79c8abd1 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a94777d nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7faf26ad nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x813c20ba pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x870e4123 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c6b1491 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8d16cd21 nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x955bd81f pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9b681a65 nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9f8aea5b nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbe8e567a pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbeeb3e28 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc1b7f72c nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4edc3a0 nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7957cfd pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcbd462f6 nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xce6085ec nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xced55e8d pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xceea8116 pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd207f0b6 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd2149dd7 pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd576bffd __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd5c70132 nfs40_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd62f497a nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd75105dd pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd86a5504 _pnfs_return_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd8c21f6e nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdefb05cb pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf1602ba9 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf448789e pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf5d4d2e2 pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfa2153c0 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe61a0e3 pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x9ce7e9db locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xe8bcf783 locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xf4d13e62 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x5b9a80d3 nfsacl_decode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xb30e329e nfsacl_encode -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0c29fa07 o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1cb231d0 mlog_not_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x25674542 o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x48c15b9d o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4bc19d22 o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa9f5379a o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd27ffda7 o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xda78433a o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xebea4198 o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x35c027dc dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x82f123f9 dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc2d6c8f4 dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd03a06dd dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xda66c76a dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xf97085f6 dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x59468d6b ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x755ec287 ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe04af9c4 ocfs2_plock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version -EXPORT_SYMBOL_GPL kernel/torture 0x1125b9b1 _torture_stop_kthread -EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq -EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures -EXPORT_SYMBOL_GPL kernel/torture 0x3a56baf4 _torture_create_kthread -EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats -EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb -EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random -EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait -EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop -EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end -EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init -EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init -EXPORT_SYMBOL_GPL kernel/torture 0xc089811d torture_shuffle_task_register -EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin -EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin -EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init -EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end -EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init -EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping -EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress -EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress -EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch -EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch -EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch -EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x28a727c0 notifier_err_inject_init -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x9930b937 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x021957e1 raid6_datap_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x0f8a2742 raid6_2data_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xd4cb6873 raid6_call -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x201d8ea3 encode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x29fa419f decode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x57861324 base_inv_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x57d39367 base_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x882ce5fc base_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x9e0112d0 base_inv_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xaedfbb15 base_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xc8fca8a6 base_inv_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xd11741a1 base_inv_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xe3d900b5 base_old_false_key -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x4a23a720 lowpan_header_decompress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xc8c9bcf1 lowpan_header_compress -EXPORT_SYMBOL_GPL net/802/garp 0x2719c1ba garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0x4253f920 garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0x7bb66d12 garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0x8aae103c garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0x947b4088 garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xfba204f3 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x037fad7d mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0x1a46a5a6 mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x55e88d00 mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x9a7148fc mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xb20bbb2c mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0xb6f5a9d4 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/stp 0xa49f95be stp_proto_register -EXPORT_SYMBOL_GPL net/802/stp 0xf00dfe4e stp_proto_unregister -EXPORT_SYMBOL_GPL net/9p/9pnet 0x5d6bbc9a p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/9p/9pnet 0xdeed0554 p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier -EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier -EXPORT_SYMBOL_GPL net/ax25/ax25 0xa21e5312 ax25_register_pid -EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast -EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x121cd38e l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x294326a1 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x81519a49 l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x912ca6eb bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xaba550c5 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xaef90a46 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xbdc9a016 l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc103c274 l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable -EXPORT_SYMBOL_GPL net/bridge/bridge 0x470dd7bb nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x6267e43c br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x82e3a77e br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x93f36c78 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xadca1e08 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe0960781 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xeed36b8e br_deliver -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf96973da br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x81fc696c nft_bridge_iphdr_validate -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x92829023 nft_bridge_ip6hdr_validate -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0a991bb8 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x10ce21c1 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x11bc29e5 dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1722bc31 dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x18e8c305 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1a363bf4 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1a9f4f57 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x21321fea dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x33ee0b1a dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4e00b445 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x50c83d87 dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x635a77aa dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6ddd2a4b inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x700d3e5a dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7cb7e0c9 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x88453ad7 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x96733075 dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x994231d4 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9e383f99 dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9f1bda62 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa1ad83b9 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xaaa81c87 dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb326db92 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb7af0856 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbe6f3806 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbf476f94 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc0b7b890 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc93fc8c0 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcfd3e1a6 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd4748744 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd638691a dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe4059e06 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe4909c48 dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe72511c2 dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x09598037 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x14bd6ad1 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x2ad6e3a2 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6690b8cf dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x945cbd55 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf4a91e95 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4c2c5363 ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x7f7069e3 ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xa1fe8962 ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xbfc29a0a ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd58dfa29 ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ipv4/gre 0x40cbae9d gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xe5d4107c gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2f8b2af3 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4a4ae02d inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4d4fc93c inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5403cb99 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xef46ab37 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfcdcbe21 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xfd809b9c gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0d29a69d ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x152f2107 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1c0f3a4f ip_tunnel_delete_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4d3dbf2c ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5497a712 ip_tunnel_ioctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5cb83950 ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x62887b09 ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6311de28 ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6d15f016 ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x74437bbb ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x84cb292e ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xad0400c2 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb0f7e2c8 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc5b3465e __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf4e74fc2 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x1bfd1315 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x762a8049 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x7c1a066a nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x302122c4 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x310641a0 nf_nat_ipv4_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x6d1ca2ad nf_nat_ipv4_local_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xdb132623 nf_nat_ipv4_in -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xf4c7ad19 nf_nat_ipv4_out -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x565c508e nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x324b867e nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x37db0219 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x5561ca93 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa97ebf61 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc3ac3760 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x127e717d nft_af_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x04b81a83 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x227f91cc tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x7be26ac8 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa7afb429 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xfe0aa1a3 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7e83d11e udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x8c0ea7df udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x8d07e665 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb1104de9 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x2b2f1df3 ip6_tnl_dst_destroy -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x4b893a35 ip6_tnl_dst_init -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x835da4ae ip6_tnl_dst_set -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xb1b9b7ea ip6_tnl_dst_get -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xb5f4b3c1 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xe00d732a ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xee20b105 ip6_tnl_dst_reset -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x45840e2f udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x853a825d udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xbb1438f8 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x144b536d nf_ct_frag6_consume_orig -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x38c154a1 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x6e798b09 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x1f7dc607 nf_nat_ipv6_local_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x5c55e668 nf_nat_ipv6_in -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x71c2d81f nf_nat_ipv6_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x9fe1170c nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xa54837d3 nf_nat_ipv6_out -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0xad0d6eef nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x12c8ba17 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x9cb4b9aa nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa45288d2 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb6b0f5e0 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xccda499c nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0xec144141 nft_af_ipv6 -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x003b5ccc l2tp_session_find_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1198281c l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3964255d l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4fee0ac7 __l2tp_session_unhash -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5d953f74 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6dba985b l2tp_session_queue_purge -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7259fe3c l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8cccc5b9 l2tp_tunnel_closeall -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x900f73cc l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9a324da0 l2tp_session_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb1ee52f1 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcb9ca9d1 l2tp_session_free -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd75a714f l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd9e865e9 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf194806f l2tp_tunnel_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf7c1dbec l2tp_tunnel_find_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x8a902197 l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x301516f5 ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x325a3de4 ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3d207923 ieee80211_iterate_active_interfaces_rtnl -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4360c2b7 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4c18bb95 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4cb2caff ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5cbbcc29 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5d9c8b8a ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5e7b90d7 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6963a244 ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7144f465 ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x75ce6e7d ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xad0efcfd ieee80211_set_key_tx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbc0a0775 ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd29030a2 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd5e32b73 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe1f41cfc ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf9fa191d ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x56e0cd66 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8fdee6fc mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xbffdf79c mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xefc7274f nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0e8fdf08 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x29724bd4 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x33af2bab ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4cb3b00c ip_set_get_ip_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5b8bf786 ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7538c39e ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7a475ec0 ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8840854f ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xabf09094 ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xae185d27 ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc1ad5210 ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd1954b23 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd1acb64c ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe60e766a ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf95bc8de ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfe4dadef ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x32776a57 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x3bf24db0 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x81c3e2dd ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x89c233b3 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06bbc751 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a426864 nf_conntrack_l4proto_tcp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x13011be0 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x14daf692 __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15aab2d1 nf_ct_expect_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x18052925 nf_ct_l4proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ca0cfdd nf_ct_l4proto_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1db43e70 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x254b055d nf_ct_iterate_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25ebb657 nf_ct_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2934d4c3 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b7647cf nf_conntrack_l3proto_generic -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2cede6b3 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2d245792 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2df03870 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x38740ae6 nf_conntrack_l4proto_tcp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c051c28 nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3da76c05 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3db2f259 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3dd97d1e nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41ebce6e nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44fcad2d nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4534354e nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4685b208 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4753dccc nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x48c37ef4 nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x512a7c79 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x52c3fa4c nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x53af52d7 nf_ct_l3protos -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59a38505 nf_ct_l3proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59f5db76 nf_ct_expect_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5bc386e1 nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62d0b03b nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x63c3f037 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6b48952c nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6ed569c7 __nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x708a2aac nf_connlabel_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x70e1ed27 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74de08a3 __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7543ec47 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x772588f3 nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x79b267c9 nf_conntrack_set_hashsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7acab951 nf_ct_l3proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x844c192e nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x85003e26 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a66c4fc nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8b0b9797 nf_conntrack_l4proto_udp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ef816c8 nf_ct_l4proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f7aae25 nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x928ca05c nf_ct_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x94c1a291 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9f7972b1 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa15625be nfnetlink_parse_nat_setup_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa18d2e87 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab844087 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xabdff441 nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xac09e6bb nf_connlabel_match -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xae425229 nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb0e28077 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb34652b8 nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb4d86889 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb5a44067 seq_print_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb93df515 nf_conntrack_l4proto_udp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb3933e0 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb3a714f nf_ct_get_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc151aef nf_ct_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc0ec1fec nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc42924bb nf_ct_l3proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd1f43851 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd623dd97 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd7246a47 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd8106f4f __nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc6ce88a __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4d520c7 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe72b47e9 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea3bf079 nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf70f510c nf_ct_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf997b724 nf_ct_l4proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa3065ea nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff40b965 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xeeefe500 nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x1bc786ae nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x28768163 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1037010a nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x39596f8c nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4c9c7011 set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5b713112 set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6ea6420e set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8e7beb20 set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x9ccadc56 nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xcff61c29 nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xddabee28 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf1bc246a nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xc21e6ccd nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x31fac4c7 nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x3f8f654b nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x6e190743 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x758a8880 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x6f509fa8 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xd63352a8 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1846b5be ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1cb13c96 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x85155537 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8cb43b1e ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x90baea05 ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc6957f01 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd263ef03 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xed867d7e nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xad88bced nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x0b1b3ef1 nf_log_dump_packet_common -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x96f80865 nf_log_dump_sk_uid_gid -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xb22a152f nf_log_dump_udp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xfcbac332 nf_log_dump_tcp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x21f43cce nf_nat_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x23540ca4 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x35642a4f nf_nat_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5ed0976a __nf_nat_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7eb80c8d nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x830d25ca nf_nat_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc88cde67 nf_nat_l4proto_unique_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd3e6f638 nf_nat_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf073a0e4 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x0fac475c nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x4992efb3 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5f339439 synproxy_build_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd1737d59 synproxy_tstamp_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe9c97e08 synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x10d313a9 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4fd7343f nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x50ad0f08 nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x577d7669 nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6ba69bf9 nft_unregister_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6e686910 nft_set_gc_batch_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x78bc925d nft_register_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x87f7697e nft_unregister_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8afd1110 nft_register_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb02af73e nft_unregister_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb05c0043 nft_register_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb626eacd nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xccf57e27 nft_validate_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe155e3f6 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe8a4c7e5 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf68c2761 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfe288cf2 nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x04577fde nfnetlink_alloc_skb -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x14f08cee nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1ba39608 nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x72f94297 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa7caa52d nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xbcaa8953 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xff178d30 nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x2007451f nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xba99f70e nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xeaece4ad nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x540c3279 nfulnl_log_packet -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x11ae490b nft_masq_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x1c402ce9 nft_masq_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xb9c7878b nft_masq_init -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x2540e78f nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x4c880834 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x519c7e9e nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x69c9d9fa nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x7af58f66 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xc06ec202 nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x7319cb02 nft_redir_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xcc778093 nft_redir_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xe2e72054 nft_redir_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6cdb9748 nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe530d578 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e6ede6 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0fb68664 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x22ea53fd xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x33596092 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x385412f1 xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x47bb2ac1 xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x66a24639 xt_hook_link -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7a777a59 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7f8fcc64 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8759e7f5 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8767fc04 xt_hook_unlink -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8ae62bb0 xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1468e86 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xde6bd3e3 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x00204983 xt_rateest_put -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x482b6a12 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x722559ea nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xbc91885a nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xc543073c nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x31f93d1a nci_uart_set_config -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x76b3cede nci_uart_register -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xc236e3a0 nci_uart_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x4f503965 ovs_netdev_detach_dev -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6ba03b2f ovs_vport_receive -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7bf253ab ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7c60f37e ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x80d57446 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8aabc206 ovs_vport_deferred_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb2e10ae7 ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb3eb39e3 ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf8d3987f __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x19bc0949 rds_send_get_message -EXPORT_SYMBOL_GPL net/rds/rds 0x222069ca rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x342bb41d rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x51e5ec05 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0x536d3333 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0x564306e5 rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0x5880ecd8 rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x5b9c80a3 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0x5c362b0e rds_page_copy_user -EXPORT_SYMBOL_GPL net/rds/rds 0x5c5431e4 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x6ac3863a rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0x6c6af320 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x73d136a7 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0x85059059 rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0x8a6efe58 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x8fd21433 rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x97f8812b rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0xc2d9c252 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc71ce1f0 rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0xc9207876 rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0xcbcf1a41 rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0xdd2dacb1 rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xe7b2f5f7 rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xf77136d7 rds_recv_incoming -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xb22a42e1 rxrpc_register_security -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xfb6ea592 rxrpc_unregister_security -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x305bf636 gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x4568bdf9 svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x943deaee gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01393afa rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01a79bb2 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0419fdf2 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05500796 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x077bcd7a svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b49fc72 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0da06165 rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0de0195a rpc_rmdir -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e3b6cb9 xdr_skb_read_bits -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ee75346 cache_seq_stop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1054905b svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12fb9b93 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14e15f43 rpc_task_reset_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x177c01ec rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17bf8c12 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17c6c4b1 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1aa297f4 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bcbb134 rpc_lookup_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c1626bf rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2410787b sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25f2d91d svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26521565 svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x268cf154 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x281d9fdb xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d2601cc xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f003e90 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32852ef1 xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34607639 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34e436e9 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37ab2bbe cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38f7e551 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39db9617 xdr_buf_read_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d1503e0 svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d57c117 rpc_get_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ed0e3c0 xprt_set_retrans_timeout_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42090492 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43b9453e rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x440cd174 rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x455376bd sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46782894 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x476bdf12 svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x486747ae rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x488b3c33 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49bdc1cb rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b2bee50 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bc1b4de rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c46e5cf rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e47edb9 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5063a64c rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50f5bb37 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53726999 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5513a619 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x558941e5 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56c2fb1e xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57026c7e svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59bc7438 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a351641 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a5d25d4 svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5aeddac5 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f0b19c0 rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f351f10 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f61a7fa auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6002300c xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x606c177a xdr_set_scratch_buffer -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60ca4b10 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61c23605 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x630a033b xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63f46a5e csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6545d544 xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65f61b91 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6652f852 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67683071 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67abc263 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x684ff3cb rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6939605b xprt_set_retrans_timeout_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a0512f4 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6aa3d4e8 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bc9e40e svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c5e965d svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c871266 rpcauth_cred_key_to_expire -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cb6ba72 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cf75161 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e0b2323 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70d89b2e rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71d25960 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75912c22 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75be192f rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79a71e2a unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c7a85d0 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cf22486 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7eec29b8 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f2180c4 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80de2c40 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80e70fa0 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x846268be rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x851de28f xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8af3c6c0 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c616c51 svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cfdc937 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d663008 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e57c38f sunrpc_cache_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fad16a5 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90c47723 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92e7291f svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93ebecb8 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94ebebaa xdr_partial_copy_from_skb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95907207 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95ec974b rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96228b7b cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x966af353 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96e8d3d8 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x977ecf4f xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9799b7ea __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x979ba39e rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x983d7750 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ad94a9f xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9bedfefd rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9dceab68 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ef449af rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ef7bb2e svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa036fd99 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2fb978f rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3289ea1 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5a86dca cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa65faaca xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7d704c5 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7e4df13 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaabd473e rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad7a668c xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae1dee52 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaeece4f7 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4062568 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4620ee6 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4974e65 rpc_print_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4b99ed3 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4c89c40 svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5e7a0a1 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5ec0a52 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6ee7841 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb87089c2 xprt_lock_and_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb899ba70 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb064920 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb49323c xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc21726d rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc29e56d rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcbf58a5 cache_seq_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdcfe310 cache_seq_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf09966c xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf27509b svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc05deef3 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3ba295c xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4b68dc4 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc578c949 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca98592a rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd5414e8 rpcauth_generic_bind_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcef8330b rpc_lookup_cred_nonblock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf7838aa rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd137b82c xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1af29df rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd28fa283 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd310258b rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3b7785e rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3ecbeed rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd403492f svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd62ed6f7 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd651e8a2 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7f3c3a8 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb2b604d rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc4afc27 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd6b720e rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe025c982 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1a14b21 rpc_protocol -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe39cda91 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3bf7443 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe50ca004 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe55acb4e xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6f2f932 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7d11bf2 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9e68697 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebc9dbd5 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec9069af auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeed475f0 rpcauth_key_timeout_notify -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef0c21e4 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf20fcf79 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3f5e38c rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5a0fcc5 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf626ad00 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7bef0b6 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7cddaec rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf880acdb rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9f1e569 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9fcef25 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa5d2523 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbdd0644 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc9c32bd rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfcdeeccf svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdfa9315 rpc_lookup_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe6ed396 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x02b05123 vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x041ae2b4 __vsock_core_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1d12a775 vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x39010c93 vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4abaece4 vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x73ba813f vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x74e91915 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x915cd55d __vsock_create -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9b4f7dfd vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc55c5b38 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd7bc137e vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe9bdf87a vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xea4a4e3d vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xead94cba vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf593c40a vsock_pending_work -EXPORT_SYMBOL_GPL net/wimax/wimax 0x0828c358 wimax_msg_data_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0x1a674f1c wimax_dev_add -EXPORT_SYMBOL_GPL net/wimax/wimax 0x249ab574 wimax_msg_data -EXPORT_SYMBOL_GPL net/wimax/wimax 0x385b997d wimax_msg -EXPORT_SYMBOL_GPL net/wimax/wimax 0x479c52cc wimax_msg_alloc -EXPORT_SYMBOL_GPL net/wimax/wimax 0x578ef40f wimax_dev_init -EXPORT_SYMBOL_GPL net/wimax/wimax 0x99bba314 wimax_report_rfkill_hw -EXPORT_SYMBOL_GPL net/wimax/wimax 0xa0492c1d wimax_state_change -EXPORT_SYMBOL_GPL net/wimax/wimax 0xa9f72f5e wimax_dev_rm -EXPORT_SYMBOL_GPL net/wimax/wimax 0xc187d1f1 wimax_report_rfkill_sw -EXPORT_SYMBOL_GPL net/wimax/wimax 0xce6f6704 wimax_msg_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0xd83f93bf wimax_msg_send -EXPORT_SYMBOL_GPL net/wimax/wimax 0xe11acca3 wimax_state_get -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x03dedf31 cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x066b05bc cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0e76daf2 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1356eee8 cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x39dc56cd cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4831ac13 cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x493eb8f3 cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x79240b98 cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8e675a59 cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb344eefa cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbf4ae310 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xedcc6099 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf89f97e0 cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x8d030647 ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x94a712e3 ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xb341f2a4 ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xc5543f19 ipcomp_destroy -EXPORT_SYMBOL_GPL sound/ac97_bus 0x444098ee snd_ac97_reset -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x127de235 snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x46a3f8cd __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/core/snd 0x3bbe8613 snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd 0x59f2f17c snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0x5f4df66b snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd 0x81abbf31 snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0x8c810010 snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0x9c28bcb4 snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd 0xac0de607 snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x2a780333 snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x34728d6c snd_pcm_stream_lock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x34e762c0 snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x3cd72784 _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5dc5c44b snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6b3bbfd0 snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x715b5553 snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7bfd6e62 snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x99ba004f snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x018c189f snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x573ce276 snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x65d89d74 snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8f2710de snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x93d219dc snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc10136d3 snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd3df5c7f snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd8e7d258 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe53b6c49 snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf3ea26f6 snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xfac65c0f snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x04fc4e43 amdtp_am824_set_pcm_format -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2e7dd30c amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x5bb5edef amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9aa1adda amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xaa58c07a amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb48ea476 amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf60561a7 amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x00747800 snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x190405f0 snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1fff0ee7 snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2ebf8fb5 snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x32d9977e snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x343ca5ab snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3cfe6967 snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3dfb74af snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3e1bcda8 snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x42f98cb7 snd_hdac_bus_add_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x44c5282d snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x474fdb2f snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4caaa62b snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x50a06edc snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x51316b95 snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x51378f17 snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x54bb29e3 snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x55f4637c _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5abdea96 snd_hdac_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5ad592fd snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5d10afdc snd_hdac_refresh_widget_sysfs -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5e12ffb9 snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5f3db043 snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x607a00a9 snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x610b40b4 snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x62a5b9b5 snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x633a3dcb snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x641e5d23 snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x677e4d71 snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x718637b0 snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x71d07bfc snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7514613b snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x75dda70a snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7f762f0b snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x801c6005 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x83cc1815 snd_hdac_bus_remove_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x84cfe58c snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8fcdbb88 snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x93704c09 snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x94571bc0 snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x94818be4 snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x94b158e4 snd_hdac_bus_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x95cd12fa snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x95ce2c0b snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9645b607 snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x984d493b snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9e23862f snd_hdac_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa79f0c33 snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa7f6ebd6 snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaa32c4cf snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xae32e75d snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb48a77ca snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xba07e9b6 snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbc6708ad snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe83ae3a snd_hdac_bus_queue_event -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc30cbc40 snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc79224a5 snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xccb6c6af snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xce4c0528 snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd1d69172 snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd36e21b6 snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd547e022 snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4c5adf2 snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe868d771 snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb06f8f2 snd_hdac_make_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xed2cfdeb snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xee280d5b snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xef101984 snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf3ae8fec snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf607b55d snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfdb69bed snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x0ff3ccc5 snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x122bd638 snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x1c17ff1d snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x1c5ccaa2 snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x8576c3ee snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xf5695726 snd_ak4113_create -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x009c5de3 snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x03c7c8cb snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x03cb7e3d snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x088bce09 snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a93b87b snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b85c622 azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c23d7d0 hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0fe4af8f azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x100f39d3 snd_hda_bind_vol -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x106d401b azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15dce3ae azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16e992a7 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x17b1b577 snd_hda_register_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19d72b66 snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1bf20817 snd_hda_mixer_bind_ctls_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x20947a37 snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x20ce714f snd_hda_mixer_bind_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2193ae95 snd_hda_bind_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2480d443 snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x250cea38 snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2827c8b8 snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2aeff891 snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ec8c6e8 snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2f75cda1 snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x340819e4 snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3596760c snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3c2df41e snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d2b6a5a snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e0e4363 snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f516ae6 snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x40751630 snd_hda_mixer_bind_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x40db3042 __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x42319790 snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x463fe6d7 snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x483c93a8 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4942a37d snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c8457fd snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4d2438b9 snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f3aa0b6 snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5231b03b is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x54c7820b azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58046023 snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b68780a snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5cab4f45 snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x60273a9c snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x617c4985 query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x65e05076 __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67fa3019 snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x68df1b48 snd_hda_jack_detect_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ccc0829 snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e8c31c5 azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70f99997 snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x71de671d snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72aa4cbf snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72aab441 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72b6b71a snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x730c560b _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x76ac90f8 snd_hda_jack_detect_enable_callback -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77511d12 snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7873d274 __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7956758f snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a326cc7 snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b496f68 snd_hda_mixer_bind_ctls_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x82773353 snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x83badda2 snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x849ae9dd snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x87a30a33 snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8917d998 hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8aeb020d snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8de62c58 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f14d5a9 snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x91e657fd azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x935f1068 snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93a473fa snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93e6fec0 snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x94e115fe snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9560ae26 azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9722b03a snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x97d38c3f snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c3ec2f3 snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3446a45 snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa499207e snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4b2bdbf snd_hda_jack_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac0e0403 snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac8ac905 snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xafa48357 snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1fbd277 snd_hda_mixer_bind_ctls_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4aaeff7 snd_hda_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb50d61fd snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb68d0106 snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9afff02 snd_hda_jack_tbl_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbdb5c9aa snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbdf68b6c snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc21790aa snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc384b7e1 snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc50e5480 snd_hda_mixer_bind_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc744bd29 snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc802b555 snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc89c98b8 snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9490b9d azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca2ee0fc snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xccf1fa2a snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd1e4ccb1 snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xde412389 snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xde6fb943 snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xded3bcdd snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe0ed8137 snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe1ac2f45 snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe4378a53 snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe63c0954 snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe681624b snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe774ae01 snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe7d6b7ce snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe9875d46 snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe98f2a8c snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe9e883af snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef24c210 snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2362543 azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf420d9c9 azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf799d745 snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf9f669e5 snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfa4b1269 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc68aa67 snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xff1f050b snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x10f7ff7b snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1d8b7255 snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x42ac5082 snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x53f133f5 snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5fe529ca snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x66b85dfb snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6df4b9a6 snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x717ef8ad snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x752857ce snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x795667a7 snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8f3a0c57 snd_hda_parse_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9ce1795c snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xab2d9428 snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb7603429 snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xca39443f snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd5da033e snd_hda_get_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdb805a3d snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdd88d388 snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe0c0a68a snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe9a30ccd snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf1f9638a snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7b56c9a5 cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x973bcd0d cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x472e82fd cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xe4e4202a cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x05770f43 cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x6b397e13 cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x9adb6cf3 cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x0579949d es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xab2588b7 es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x0e090360 pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x18579a02 pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xa90c0bf3 pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xec7ac304 pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x0ed713a7 sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x190c5fa0 sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x3a9dc5f0 sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xb6b325a3 sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xb9f2db25 devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xcd1118f2 devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xf2eb32da ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xf82252e3 ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x9cf55d0b tpa6130a2_stereo_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xa8a33b71 tpa6130a2_add_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x8d60e5a1 ts3a227e_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x2061dd32 wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x73f24b05 wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xd8fd9c41 wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xf834c739 wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xe33427ed wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x62852864 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x301140df fsl_asrc_get_dma_channel -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xfa25a983 fsl_asrc_platform -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x30693bb7 imx_audmux_v1_configure_port -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x58631dab imx_audmux_v2_configure_port -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02a4d1d7 snd_soc_dpcm_be_get_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x057b9d69 snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06a6e240 snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a864213 snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c9d2e79 snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d162090 snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d25bf5a snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f60f75f snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0fcb6cbb snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0fd92c20 dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1046ca3e soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x107e8045 snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12beaa83 snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13b8c2d0 snd_soc_of_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x16faa216 snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18b04183 snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1aa9e52e snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b09322f devm_snd_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1bb09eee snd_soc_platform_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2109c431 snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21dd1471 snd_soc_remove_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23514dee snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23b278a0 snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x261521ba snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a71ef16 snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ab60f59 snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c87ee0a snd_soc_unregister_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2dbf5ac4 snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x322e5c34 snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3432f2d9 snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x358cba8e snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36e83076 snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x376708b2 snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b465c57 snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3bfa3be2 snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c50c498 snd_soc_codec_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d9815da snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ebf93a4 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4125d4ce snd_soc_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4153c5b7 snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x462e6138 snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46b8aec8 snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x475836e5 snd_soc_platform_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47f09964 snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48c34127 snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c4d7f5a snd_soc_unregister_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d340a31 snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d5e1f5c snd_soc_of_parse_audio_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4db810e0 snd_soc_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4dbb304e snd_soc_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4dc9ccf0 snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e78a017 snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5036cf8c snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52496ffe snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55094bb0 snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x559bcbc2 snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5892cf17 snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5bbef4cb snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e7d2408 dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f089c28 snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61a3890e dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63229db0 snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65842d47 snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65b773f6 snd_soc_lookup_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66862412 dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x669413f3 snd_soc_add_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66a4fc4a snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e9c6045 snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6eb1b2d5 snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f8918b7 snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70b0fb0e snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71244e16 snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7426235d snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x750af102 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7522d8e2 snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79034840 snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7929c939 snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d3b5f73 snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e6f0679 snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e7d4c36 snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7fe894e9 snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86ced99c snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x88e5d29e snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8df27eee snd_soc_codec_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f9a8757 snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x91a3abed snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x929da391 snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97863519 snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98bbc1a3 snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9bf8f4a2 snd_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d45b60c dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9de786b8 snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa23303f7 snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8be1d38 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac063bb0 snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad688a94 snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae3410b8 snd_soc_add_platform_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf58805a snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6043a55 snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb71595ef snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb77ef6fa snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7f863dd devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba1606d2 snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba8dd9c8 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb8ccfea snd_soc_get_dai_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbcf37876 snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe872cd7 devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf2122f2 snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf2462ae snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1207f41 snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5a77aa0 snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5dbf518 snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc68901be snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb934fd1 snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc5ecdc0 snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce25904a snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd079dd1d snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd89e2903 snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdaecef00 snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc02fe93 snd_soc_dpcm_be_set_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc301630 snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc481f09 snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xddec3398 snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf224399 snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1906030 snd_soc_free_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2d7d74c snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4a16f4a snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe539f7ad snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5b20629 snd_soc_new_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe91b5fbc snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9bc131c snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea4d70c1 devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeaec44d5 snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb78b028 snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xebc9b592 snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeca7300d snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xecf87f48 snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed87447f snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf088d770 snd_soc_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3f577da snd_soc_add_codec_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4ad2876 snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf51d70e4 snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf65c3e0d snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf74adce2 snd_soc_platform_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf916af85 snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9d64962 snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc18f277 snd_soc_register_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffe66a96 snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x00075a34 line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x06f960ef line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0fa28351 line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x247779eb line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3b568a79 line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5110d282 line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7393c3ab line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x912f6b5c line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbd74d929 line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbf8732be line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc59a87ca line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xce1c93fb line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf2d88ffe line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf31856f1 line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf784ac8d line6_version_request_async -EXPORT_SYMBOL_GPL vmlinux 0x0000b2bb fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x002a0e13 sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0x00313fbc rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x003ae689 fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0x0051466c pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0x009752f6 ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0x00fc6425 device_rename -EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before -EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish -EXPORT_SYMBOL_GPL vmlinux 0x012457ea page_cache_async_readahead -EXPORT_SYMBOL_GPL vmlinux 0x0125115f tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x012e3ce8 ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0x012f283d arizona_clk32k_disable -EXPORT_SYMBOL_GPL vmlinux 0x0165d966 ata_base_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x0195fba9 btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0x01a4cfe1 kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x01d08ec3 ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x021bb769 kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL vmlinux 0x021ebfda btree_update -EXPORT_SYMBOL_GPL vmlinux 0x02302571 platform_bus -EXPORT_SYMBOL_GPL vmlinux 0x0270d1a6 fsl_spi_cpm_bufs -EXPORT_SYMBOL_GPL vmlinux 0x02739b3e extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0298dcbb devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0x029acbae usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x02ac07bb component_master_add_child -EXPORT_SYMBOL_GPL vmlinux 0x02d4cd43 __mmu_notifier_invalidate_range_start -EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id -EXPORT_SYMBOL_GPL vmlinux 0x033387bf blk_queue_flush -EXPORT_SYMBOL_GPL vmlinux 0x03365013 syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x03782f4c crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x0391b0dd file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x0398f0e6 sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode -EXPORT_SYMBOL_GPL vmlinux 0x03e64204 wm8400_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x03e9eee3 nd_blk_region_set_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x04489b91 cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x0495018d io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0x04a1fee5 cpufreq_frequency_table_cpuinfo -EXPORT_SYMBOL_GPL vmlinux 0x04a2ff75 mmput -EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0x04b15be0 blk_queue_rq_timed_out -EXPORT_SYMBOL_GPL vmlinux 0x04b5549c __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x04c4c609 ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04d4b5e2 tps65912_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x04f4bd8d percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x051dcdff gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x0525c7e5 irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x05306bfe for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0x05433745 ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x056a7b2c rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0x05712a85 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x05741149 __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x05830e5d ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0x058de820 shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0x05e7399b class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x05f6fb68 fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0x05f77661 mpc8xxx_spi_rx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0x06078d55 register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x0618bba2 usb_bus_list_lock -EXPORT_SYMBOL_GPL vmlinux 0x061dee59 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x06256b34 dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x062ba819 ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x062ec212 fat_detach -EXPORT_SYMBOL_GPL vmlinux 0x064b6215 crypto_ablkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x06d204de da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x06eb6e41 usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x06ed7f53 irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0x06f3a379 sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x06fdbf27 reservation_object_wait_timeout_rcu -EXPORT_SYMBOL_GPL vmlinux 0x0705bb45 cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0x0734abef power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x073ac67e pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x07803c46 power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char -EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07cd1300 __bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x07e69a80 kvm_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x07f300c3 smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0x0822dc9a inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x084b71d9 pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0x088b210d device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x08917a57 regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x08af40c2 pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0x08cf9443 of_clk_del_provider -EXPORT_SYMBOL_GPL vmlinux 0x08dba1bb spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x091b3685 cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0x091bbde9 page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0x091c824a machine_power_off -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x094a36ad dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x0962d0e8 irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0972c293 dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0x098404ed debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0x09871084 ping_proc_register -EXPORT_SYMBOL_GPL vmlinux 0x0990cc98 lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0x09eba4bf pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x09f5cb1c crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0x0a3fab12 perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0x0a51ae5b virq_to_hw -EXPORT_SYMBOL_GPL vmlinux 0x0a646281 shmem_get_seals -EXPORT_SYMBOL_GPL vmlinux 0x0aeca08a regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x0afd4610 zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b167eed __mmu_notifier_invalidate_range_end -EXPORT_SYMBOL_GPL vmlinux 0x0b23322f generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0x0b33252e pwm_request -EXPORT_SYMBOL_GPL vmlinux 0x0b4ad29c power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0x0b5cf884 devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x0b60c275 of_alias_get_id -EXPORT_SYMBOL_GPL vmlinux 0x0b631cff dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x0b7a8624 blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0x0bb256c1 pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0x0bb29419 of_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x0bb562bc set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x0bc44c7e tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0x0be93a5e crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0x0bfa0972 crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0c130a9b rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x0c6c7524 bio_trim -EXPORT_SYMBOL_GPL vmlinux 0x0c6dee45 kvm_read_guest_cached -EXPORT_SYMBOL_GPL vmlinux 0x0c959b78 virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x0cf6e130 blkg_print_stat_bytes -EXPORT_SYMBOL_GPL vmlinux 0x0d059e64 static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d6ce0a1 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0x0d706d2e rh_set_owner -EXPORT_SYMBOL_GPL vmlinux 0x0d73a952 GregorianDay -EXPORT_SYMBOL_GPL vmlinux 0x0d7ae40b device_add -EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x0d835550 kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x0d86fdc8 bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0x0da8c75b power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x0db86929 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0x0dcb5026 usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0de06988 cpu_first_thread_of_core -EXPORT_SYMBOL_GPL vmlinux 0x0df7c801 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x0e019f40 usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0x0e0b2a61 phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x0e424972 phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0x0e89eb11 device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0x0e9ddef0 thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x0eac421b get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0x0ec7cb79 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x0ee62e22 __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0x0ef65ca4 __srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x0f1dae2d nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0x0f289ac1 look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0x0f2a2fef pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0x0f2e5a8d ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x0f33cfa2 perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0x0f3f60d1 dev_pm_opp_set_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x0f3f8cbe wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0x0f45f275 cm_notify_event -EXPORT_SYMBOL_GPL vmlinux 0x0f47c6b7 __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0x0f70e4be pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0x0f8f2dcf extcon_get_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0x0fa6f43d gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0x0fc01e9f static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x0fc1bf32 debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x0fc67bd9 tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0x0fd1a9bd device_init_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x0fd28380 dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x0fd56cd7 usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0x0fee6883 to_of_pinfo -EXPORT_SYMBOL_GPL vmlinux 0x0ff00db3 blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x10025b98 __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x1049b943 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0x105022f9 tpm2_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x106ad422 aead_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0x106e4829 flush_fp_to_thread -EXPORT_SYMBOL_GPL vmlinux 0x108c33ac i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0x10b18d7f ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0x10b3862a virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x10b62fd8 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x10b6d87e pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0x10c46285 kvm_write_guest_cached -EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x10fb27e9 rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0x11021072 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1109dfdc bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x1114011d threads_shift -EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0x118a5820 devres_add -EXPORT_SYMBOL_GPL vmlinux 0x11970044 debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x11b470ed sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x11be5a2d iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0x11d44e97 kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0x11d97b0d pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x11de1f28 virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x11e83165 of_mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x11eae901 dma_buf_kmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0x11ed2d41 dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x122df8cc nd_mapping_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x1256ba63 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x127a3bf0 crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x12903b09 dm_get_table_device -EXPORT_SYMBOL_GPL vmlinux 0x12914c67 edac_subsys -EXPORT_SYMBOL_GPL vmlinux 0x12b1ae1a ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x12ca8e17 io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x12d6b4dd tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x12f5fb66 devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x1306d4ad regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0x130832dc zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x13212081 bio_clone_mddev -EXPORT_SYMBOL_GPL vmlinux 0x133a9f36 trace_call_bpf -EXPORT_SYMBOL_GPL vmlinux 0x1354e09d wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x136a4ee6 btree_init -EXPORT_SYMBOL_GPL vmlinux 0x136d6900 ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0x137bd293 rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen -EXPORT_SYMBOL_GPL vmlinux 0x13b68e14 regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0x13cfcfae pwm_put -EXPORT_SYMBOL_GPL vmlinux 0x13cff350 ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0x13e5ea13 __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0x14158748 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0x141c0686 irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x142f240e pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x1461323f device_add_property_set -EXPORT_SYMBOL_GPL vmlinux 0x147c5ed1 ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x14b01a94 crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x14e138f4 alloc_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x14ed7123 da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0x1504194e tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0x151b9333 spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0x151bc284 ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0x151d3003 pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0x1522480f nd_region_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x15310696 of_irq_to_resource_table -EXPORT_SYMBOL_GPL vmlinux 0x154d94dd __rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0x15768022 platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x15a82bf1 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0x15c21e5e nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x15c6adbc serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x15db5bee rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0x15dd2c44 ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x15deb8ab vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0x15e58f50 crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x15e8e849 device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started -EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x16419f82 pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress -EXPORT_SYMBOL_GPL vmlinux 0x167493cb ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0x16ae0331 genlmsg_new_unicast -EXPORT_SYMBOL_GPL vmlinux 0x16ae36f0 ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x16db2702 dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0x16fc0f9c __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x170964ce gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x170a0397 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0x170bd74d system_trusted_keyring -EXPORT_SYMBOL_GPL vmlinux 0x17148841 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x1776f305 regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x1781087f dev_pm_opp_of_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x178415c3 regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0x178e226f stmpe_block_read -EXPORT_SYMBOL_GPL vmlinux 0x17c12654 rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x17df4343 unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0x17ec237b pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0x181447c3 unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x181c1bd9 of_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x18384f7a palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0x1849a1f3 dev_pm_opp_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x184c1c38 usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x18575b1f tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert -EXPORT_SYMBOL_GPL vmlinux 0x188493b0 class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x18cf00f1 arizona_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x18d8eb78 securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x18dbe5e7 cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0x18e76623 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x19016776 sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0x1902dfa7 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x194bb614 kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x1973b10f virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0x1990f8ff pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x1992f61c ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x199eb80a scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19d7b0c6 crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0x19e09ff9 scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x1a1c4082 mod_delayed_work_on -EXPORT_SYMBOL_GPL vmlinux 0x1a1fb371 replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0x1a516983 tcp_fetch_timewait_stamp -EXPORT_SYMBOL_GPL vmlinux 0x1a552ca1 to_nd_blk_region -EXPORT_SYMBOL_GPL vmlinux 0x1a655706 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0x1a6dd424 gfn_to_pfn_prot -EXPORT_SYMBOL_GPL vmlinux 0x1a6e3bdc usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x1a79ef28 uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0x1a84143d regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0x1a8c5907 btree_insert -EXPORT_SYMBOL_GPL vmlinux 0x1a9230f5 stmpe_enable -EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table -EXPORT_SYMBOL_GPL vmlinux 0x1aa3ba20 tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1aa4eb06 wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing -EXPORT_SYMBOL_GPL vmlinux 0x1aed8976 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x1b0a5f69 usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0x1b114834 spi_alloc_master -EXPORT_SYMBOL_GPL vmlinux 0x1b28ca0a __find_linux_pte_or_hugepte -EXPORT_SYMBOL_GPL vmlinux 0x1b3df8e6 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x1b4a15aa task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x1b4ebf98 pwm_set_polarity -EXPORT_SYMBOL_GPL vmlinux 0x1b5009fc cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read -EXPORT_SYMBOL_GPL vmlinux 0x1b64616f usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x1b8b43f2 skcipher_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return -EXPORT_SYMBOL_GPL vmlinux 0x1bb38b65 dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0x1bf7178f class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x1bff303e security_kernel_fw_from_file -EXPORT_SYMBOL_GPL vmlinux 0x1c09862a ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0x1c2125c7 devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0x1c2a0f6f arizona_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x1c2f4186 powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0x1c426abf thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase -EXPORT_SYMBOL_GPL vmlinux 0x1c7162cf register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x1c7648b3 power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 -EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1c8d9b67 tps65217_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x1cbb7364 pstore_register -EXPORT_SYMBOL_GPL vmlinux 0x1cc1949b pci_try_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x1ccb465b irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x1cdd5440 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0x1cf82066 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x1d1616f0 pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d3c15cd usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0x1d50a6de pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x1d8a1996 of_pci_parse_bus_range -EXPORT_SYMBOL_GPL vmlinux 0x1d8b1b8f led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0x1d9f3963 sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x1daaa974 usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0x1de87306 __put_net -EXPORT_SYMBOL_GPL vmlinux 0x1df585c2 of_irq_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x1dfbcf4c mpic_msgr_disable -EXPORT_SYMBOL_GPL vmlinux 0x1e0db397 trace_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0x1e20316b ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x1e263dcd extcon_set_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1e5e173f sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1e974d27 scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0x1ea3e0ba tc3589x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ec345cf spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0x1ec7bf3e of_devfreq_cooling_register_power -EXPORT_SYMBOL_GPL vmlinux 0x1f053dfa ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0x1f096fe0 crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0x1f116614 xattr_getsecurity -EXPORT_SYMBOL_GPL vmlinux 0x1f1285d7 single_open_net -EXPORT_SYMBOL_GPL vmlinux 0x1f1e3902 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0x1f431ffb ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x1f4337a3 of_thermal_is_trip_valid -EXPORT_SYMBOL_GPL vmlinux 0x1f44ee16 dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x1f91fa0f get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x1f9b4744 __rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1fd4f299 dax_do_io -EXPORT_SYMBOL_GPL vmlinux 0x1fe6aae9 stmpe_disable -EXPORT_SYMBOL_GPL vmlinux 0x1feb2bdc kvm_read_guest -EXPORT_SYMBOL_GPL vmlinux 0x1fef6b0f md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0x2006a05e sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0x200e2b49 pci_bus_sem -EXPORT_SYMBOL_GPL vmlinux 0x20459fe1 dax_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0x2066cd3b sdio_run_irqs -EXPORT_SYMBOL_GPL vmlinux 0x20693313 usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0x206d167f usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0x208f8a63 dma_buf_kunmap -EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0x20befb51 of_pci_range_parser_one -EXPORT_SYMBOL_GPL vmlinux 0x20de5193 kvm_disable_largepages -EXPORT_SYMBOL_GPL vmlinux 0x2108934b pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x21214c48 ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0x2123434f sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0x212e8b4d gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0x2163dae9 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0x218d92de serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0x21972aa4 device_create_vargs -EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21bf1338 usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0x21c7f460 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21d1bf22 dev_pm_opp_free_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x21dd88c5 wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0x21df6ed4 regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x21fc143a da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x21ffb4ce blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x22920065 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 -EXPORT_SYMBOL_GPL vmlinux 0x2296cd8a crypto_alloc_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x22a7b390 uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0x22be0fb4 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0x22cffcd6 __blk_put_request -EXPORT_SYMBOL_GPL vmlinux 0x22e1f3f3 mpc8xxx_spi_tx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x22f306ff tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x23246a16 scsi_internal_device_unblock -EXPORT_SYMBOL_GPL vmlinux 0x233981ff irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0x2346d778 ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0x23492b2e gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x23623452 register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x23930b18 ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x23a1fec1 ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0x23ae22ce devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x23cfa2a4 call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x23dd20e2 blkg_print_stat_ios -EXPORT_SYMBOL_GPL vmlinux 0x23eb217b mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x23fc830e debugfs_remove_recursive -EXPORT_SYMBOL_GPL vmlinux 0x2402fb26 l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0x244142b1 ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0x2442f224 ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0x247b48f1 shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x24848fca __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0x249f8168 of_clk_parent_fill -EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key -EXPORT_SYMBOL_GPL vmlinux 0x24accb4e __blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0x24aee52f ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x24b4c23a bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0x24b78627 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset -EXPORT_SYMBOL_GPL vmlinux 0x24f990dd ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0x25022dbc irq_find_matching_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x256466d0 usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL vmlinux 0x256666ac nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0x25b3fbc6 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x25d45267 clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0x25d8748a ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x26005d54 crypto_alloc_ablkcipher -EXPORT_SYMBOL_GPL vmlinux 0x26085a7e pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x261c91e4 pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0x2627a08a tpm2_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x2629231c map_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock -EXPORT_SYMBOL_GPL vmlinux 0x263a4fca gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x265eb2a0 swiotlb_map_page -EXPORT_SYMBOL_GPL vmlinux 0x26669653 phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0x2668e21f gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x2686ef54 regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0x268ac8a7 usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0x268efd43 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x2691412e boot_cpuid_phys -EXPORT_SYMBOL_GPL vmlinux 0x269651ff da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x26c24c46 pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x26c81c0d usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26e1051e tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x26f7e781 crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x26f826c7 i2c_lock_adapter -EXPORT_SYMBOL_GPL vmlinux 0x26fb59df of_property_count_elems_of_size -EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL vmlinux 0x271231c0 ata_scsi_simulate -EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x27555ab2 pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0x2799d2ee pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x279d5eca tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x27a3ab86 __sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x27ae020f phy_get -EXPORT_SYMBOL_GPL vmlinux 0x27afbedf exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0x27b85279 power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0x27bb5afd fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info -EXPORT_SYMBOL_GPL vmlinux 0x27dd19b9 blk_queue_flush_queueable -EXPORT_SYMBOL_GPL vmlinux 0x27f39a18 cpu_add_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27f730ae scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x27fa1234 policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x281cd241 phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0x282beacf ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x285a5f9d percpu_ida_free -EXPORT_SYMBOL_GPL vmlinux 0x286ec054 of_usb_host_tpl_support -EXPORT_SYMBOL_GPL vmlinux 0x288ac044 rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x28abe02d pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0x28ca580b tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0x290d8314 relay_flush -EXPORT_SYMBOL_GPL vmlinux 0x29699b2c subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0x296cc86a devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x297324d0 ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x297f5be7 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0x29a0448e fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0x29c481d6 mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x29e2488b wm5102_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x29e8d225 sched_setscheduler_nocheck -EXPORT_SYMBOL_GPL vmlinux 0x29e954a1 of_dma_configure -EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29ef0b18 of_property_read_string_helper -EXPORT_SYMBOL_GPL vmlinux 0x2a17e7e7 devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x2a1e97cb device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x2a2d3ebc debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x2a508eb9 debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0x2a5cb245 dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2a915be2 blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0x2aadc0ea gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x2ac4475c devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x2ae93dce __module_address -EXPORT_SYMBOL_GPL vmlinux 0x2af5a576 dma_buf_vmap -EXPORT_SYMBOL_GPL vmlinux 0x2b014ae6 rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0x2b185916 rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0x2b30f1f8 pci_ats_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x2b3f3fca pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x2b403f16 vcpu_put -EXPORT_SYMBOL_GPL vmlinux 0x2b5c303b smp_send_reschedule -EXPORT_SYMBOL_GPL vmlinux 0x2b6a0169 led_trigger_show -EXPORT_SYMBOL_GPL vmlinux 0x2b7a574f md_is_badblock -EXPORT_SYMBOL_GPL vmlinux 0x2b8b52ab ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0x2ba2c676 cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0x2bb05911 da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0x2bbc6e47 simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x2bde179e kvm_vcpu_init -EXPORT_SYMBOL_GPL vmlinux 0x2bf66f83 md_stop -EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc -EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c4b59c8 regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0x2c55e6a4 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c97c085 unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2c991966 usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0x2cb13d2c sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0x2cc8367b of_clk_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x2cdb3099 devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x2ce266b6 tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0x2ce915c2 blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq -EXPORT_SYMBOL_GPL vmlinux 0x2ce9991b led_trigger_store -EXPORT_SYMBOL_GPL vmlinux 0x2cf55a2b dax_clear_blocks -EXPORT_SYMBOL_GPL vmlinux 0x2d1a57c1 pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d31c810 ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0x2d31e3b7 rtc_irq_set_freq -EXPORT_SYMBOL_GPL vmlinux 0x2d33e76e debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0x2d36c57b rh_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2d3a7b86 rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d579e49 dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers -EXPORT_SYMBOL_GPL vmlinux 0x2d63cdf0 power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2d6d3360 serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x2d6dc1ec cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x2db28df0 blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0x2dc5a6d1 btree_last -EXPORT_SYMBOL_GPL vmlinux 0x2dd22211 crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0x2de681b6 system_verify_data -EXPORT_SYMBOL_GPL vmlinux 0x2e146076 dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2e3048e9 blkdev_read_iter -EXPORT_SYMBOL_GPL vmlinux 0x2e3d8ce3 gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0x2e3ddbb7 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x2e5bfe9d pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0x2e8e9217 pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0x2e90b05f blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x2ec81a5a relay_close -EXPORT_SYMBOL_GPL vmlinux 0x2ecc1d7f of_clk_add_provider -EXPORT_SYMBOL_GPL vmlinux 0x2ed5b5af split_page -EXPORT_SYMBOL_GPL vmlinux 0x2edbfed4 dio_end_io -EXPORT_SYMBOL_GPL vmlinux 0x2f07bdbf pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f16fab2 crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x2f280faf thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x2f2c0e19 fuse_put_request -EXPORT_SYMBOL_GPL vmlinux 0x2f2eb901 ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0x2f2f2257 aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register -EXPORT_SYMBOL_GPL vmlinux 0x2f46d968 of_irq_parse_pci -EXPORT_SYMBOL_GPL vmlinux 0x2f4c3be9 wakeup_source_prepare -EXPORT_SYMBOL_GPL vmlinux 0x2f539515 rio_get_asm -EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x2f6dd1dc tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0x2fb20d30 mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0x2fb9fe00 regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0x2fc4c251 dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0x2fd9036f dev_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0x2ff5f60c ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0x2ffb5ff7 btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0x3022e762 usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0x3031fbad usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x303ac24d irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x306c6a88 pskb_put -EXPORT_SYMBOL_GPL vmlinux 0x309d4bc5 rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x30ad80ba srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x30b77f90 get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x30e7b695 blkg_prfill_stat -EXPORT_SYMBOL_GPL vmlinux 0x30ebdacd rtc_irq_set_state -EXPORT_SYMBOL_GPL vmlinux 0x30fba381 bio_alloc_mddev -EXPORT_SYMBOL_GPL vmlinux 0x3108b071 device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock -EXPORT_SYMBOL_GPL vmlinux 0x310c89e9 spi_master_suspend -EXPORT_SYMBOL_GPL vmlinux 0x310e70db shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x313d4b96 usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0x314013a3 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x3141c828 usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0x314f75d9 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x31513038 gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x31c06277 wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put -EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31cc01df tpm_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x31d6b486 pci_intx -EXPORT_SYMBOL_GPL vmlinux 0x31e5c63f usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0x31e6c816 shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0x32093850 ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0x322c5b06 kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x324446c2 ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0x3286e775 regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x328737a0 nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update -EXPORT_SYMBOL_GPL vmlinux 0x32924a4d scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x32a3a6b1 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x32a607ad rtc_irq_register -EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec -EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32c7a735 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0x330168f1 regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x3320cad2 xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x33253900 extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x33472d46 to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0x33480bfe __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x33493446 rhashtable_walk_init -EXPORT_SYMBOL_GPL vmlinux 0x334b2a60 mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition -EXPORT_SYMBOL_GPL vmlinux 0x337786fa usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x338c1ab3 ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0x338e5cd8 fb_sys_read -EXPORT_SYMBOL_GPL vmlinux 0x339f4958 bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0x33a6657f usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0x33b43ce7 dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x33b871f0 skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x33d45158 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x33eec84f gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0x340789ab __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x340d5346 trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x340ddfb0 dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x34331d5e nd_fletcher64 -EXPORT_SYMBOL_GPL vmlinux 0x3438a5cd mnt_clone_write -EXPORT_SYMBOL_GPL vmlinux 0x3442b798 rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0x347682ce snmp_fold_field64 -EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get -EXPORT_SYMBOL_GPL vmlinux 0x3486a9ce debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0x34994822 clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x349cb83c get_kernel_page -EXPORT_SYMBOL_GPL vmlinux 0x349d329e pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x34cebc5c arizona_dev_exit -EXPORT_SYMBOL_GPL vmlinux 0x34d0fbd1 devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x34e3a54a of_clk_src_simple_get -EXPORT_SYMBOL_GPL vmlinux 0x34e4eaa1 reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x34eb2a2f md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0x34eda012 regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched -EXPORT_SYMBOL_GPL vmlinux 0x35329f5f __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x353fce3e gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0x3543be92 tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0x35540ca2 tps65912_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x35923dd5 spi_setup -EXPORT_SYMBOL_GPL vmlinux 0x35a7e347 unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x35b25510 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x35ba2f12 regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x35cd4527 sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x35d95786 wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0x35de4a5a generic_access_phys -EXPORT_SYMBOL_GPL vmlinux 0x35ea1653 device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x35f6b39c __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x36049313 skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0x3608a968 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0x361500d2 extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x3640e560 regulator_can_change_voltage -EXPORT_SYMBOL_GPL vmlinux 0x3640f590 pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x36584580 hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0x366342cf blk_mq_tags_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x3688e177 sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x368e4e47 __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0x36932093 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0x369b2f77 of_irq_get_byname -EXPORT_SYMBOL_GPL vmlinux 0x369c6836 max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36a64e5c percpu_ida_free_tags -EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x36da47e5 pwm_config -EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x36ffd4d9 sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x371d6f77 percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0x371dbd7c gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0x373a480c dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x376c743b regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0x3791bbdd da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x37bea0ef fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0x37d204df fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0x37d2c2c5 rh_dump_blk -EXPORT_SYMBOL_GPL vmlinux 0x37d402c6 ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x37e95e17 preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x37ebf947 metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x3808c623 bpf_prog_get -EXPORT_SYMBOL_GPL vmlinux 0x381426f0 digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0x3826a9fa usb_gen_phy_init -EXPORT_SYMBOL_GPL vmlinux 0x3834f759 pm_runtime_get_if_in_use -EXPORT_SYMBOL_GPL vmlinux 0x38364f79 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x3848f9ec __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x384a6981 __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0x384f6758 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy -EXPORT_SYMBOL_GPL vmlinux 0x386adf4d devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x387193b5 irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0x38743bf9 regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0x38891d44 rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x38c49d0d sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38fb0702 ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x39132e0a iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0x39161780 input_class -EXPORT_SYMBOL_GPL vmlinux 0x39166de9 usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0x391a82c7 pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0x39366aa8 __tracepoint_kvm_ppc_instr -EXPORT_SYMBOL_GPL vmlinux 0x393fb5c9 devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x395235ed ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0x3961b362 regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x3964e2bd sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0x3975e3b5 disk_get_part -EXPORT_SYMBOL_GPL vmlinux 0x39822268 __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x39c49d52 single_release_net -EXPORT_SYMBOL_GPL vmlinux 0x39c4dc0f __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current -EXPORT_SYMBOL_GPL vmlinux 0x39db1b2f __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module -EXPORT_SYMBOL_GPL vmlinux 0x39fc58a3 nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a86b91f ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3ab86bab subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3ade666c ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x3b05f681 tps65217_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x3b1829bf irq_find_mapping -EXPORT_SYMBOL_GPL vmlinux 0x3b1dd9fe adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x3b2d7882 crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0x3b372810 blkg_print_stat_ios_recursive -EXPORT_SYMBOL_GPL vmlinux 0x3b411c47 regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0x3b583bf1 dev_pm_opp_find_freq_floor -EXPORT_SYMBOL_GPL vmlinux 0x3bc4effe devm_led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0x3beda22a ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x3c0c5d9b fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0x3c48d7ec ping_seq_fops -EXPORT_SYMBOL_GPL vmlinux 0x3c7893d0 ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x3c7be5ff posix_timers_register_clock -EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag -EXPORT_SYMBOL_GPL vmlinux 0x3ca193f6 cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0x3cb73004 rio_request_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3cd65c7b put_pid -EXPORT_SYMBOL_GPL vmlinux 0x3ce3bf3b __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0x3d20408b uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x3d2d3ffe ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x3d3191b8 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d4ce84e pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x3d5c0644 __pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x3d683722 sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x3d85f7bc tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0x3d9befa4 ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0x3da70dd9 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x3daccfd7 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match -EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab -EXPORT_SYMBOL_GPL vmlinux 0x3dd1b4ee of_pci_msi_chip_remove -EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3dd4d3a7 bprintf -EXPORT_SYMBOL_GPL vmlinux 0x3dda9e9c hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0x3de3e18c nd_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3e03ad51 kvm_is_visible_gfn -EXPORT_SYMBOL_GPL vmlinux 0x3e1f72e0 kvm_vcpu_cache -EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x3e4d6ade mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x3e5ce921 virtqueue_get_avail -EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e757637 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0x3e9ecd1a serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0x3e9ff6b2 fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0x3ea6ebb6 platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x3eebb80f blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0x3ef77af4 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0x3f195170 tps65912_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x3f19a849 sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x3f1cb321 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0x3f37fa0d dev_pm_opp_get_notifier -EXPORT_SYMBOL_GPL vmlinux 0x3f9a776d thermal_notify_framework -EXPORT_SYMBOL_GPL vmlinux 0x3f9e6337 usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0x3fdbb8e5 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x3fdd6214 cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0x4002c320 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x40060923 reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x40077a0f clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0x401d8b6b spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0x40240402 regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0x4024d225 __blk_run_queue_uncond -EXPORT_SYMBOL_GPL vmlinux 0x402cd4b7 hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources -EXPORT_SYMBOL_GPL vmlinux 0x406840e3 device_reset -EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x4088e05e skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0x40a5c068 tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0x40ac6eb8 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x40da1437 nvdimm_bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x40e81dbd fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x4122c3a0 __pci_complete_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x414b3110 dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x41798400 devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x4198885c power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0x41b3f8ab nd_blk_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x41bfa9ce task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x41dc7fcf of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0x41ddd46b usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0x41deb853 usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x41e1d6eb regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x41e3611b sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0x41e7ae27 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0x41eaa8ad usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0x41f8a077 extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done -EXPORT_SYMBOL_GPL vmlinux 0x4258675c crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0x4264330a pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0x427a066b trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x42854fc8 virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0x42a479c7 da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x42b82767 cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0x42c0ca1a led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x42e2935d devres_release -EXPORT_SYMBOL_GPL vmlinux 0x42e33a9a cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x42e465c7 disk_map_sector_rcu -EXPORT_SYMBOL_GPL vmlinux 0x42ebcf3e usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0x430ec5eb pci_enable_pri -EXPORT_SYMBOL_GPL vmlinux 0x4313f6a0 perf_trace_buf_prepare -EXPORT_SYMBOL_GPL vmlinux 0x4327fa2b sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x437885a8 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x43911505 of_prop_next_u32 -EXPORT_SYMBOL_GPL vmlinux 0x43963707 of_dma_get_range -EXPORT_SYMBOL_GPL vmlinux 0x43969dbe rh_alloc_fixed -EXPORT_SYMBOL_GPL vmlinux 0x4396eebb pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x4399b73b bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x439b7422 key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key -EXPORT_SYMBOL_GPL vmlinux 0x43a5bbc1 pcibios_free_controller_deferred -EXPORT_SYMBOL_GPL vmlinux 0x43b466b0 gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x43d2d8af extcon_set_cable_state -EXPORT_SYMBOL_GPL vmlinux 0x43dc5e1d thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0x43f51127 ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift -EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x43fd0b66 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x4412cbcc noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x441b0550 inet_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0x442fcf3b __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x4445ccbb skcipher_geniv_init -EXPORT_SYMBOL_GPL vmlinux 0x44581035 pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x44939b24 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x44949235 rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0x4496f077 inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x44a014b7 ip_tunnel_get_stats64 -EXPORT_SYMBOL_GPL vmlinux 0x44b397d1 root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44cdda0e usb_phy_generic_unregister -EXPORT_SYMBOL_GPL vmlinux 0x44e44e3e task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0x450c5e72 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0x45311adf devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0x453805ac devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x453ae472 devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0x453cc05b __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x454ffcb6 __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x4564f716 __module_text_address -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x457fd0fd cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0x4586a89a irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x45959f6a pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0x45bd74e9 device_move -EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x45d785c0 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0x45d9e602 of_fdt_unflatten_tree -EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x4602de57 pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x4608ee3b dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x461912d4 ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x46219978 led_init_core -EXPORT_SYMBOL_GPL vmlinux 0x46358273 dax_fault -EXPORT_SYMBOL_GPL vmlinux 0x46361bd5 ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x4645b82f rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0x4645d2b7 dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0x46661bda trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0x466742c0 spi_async -EXPORT_SYMBOL_GPL vmlinux 0x467e1395 sched_setattr -EXPORT_SYMBOL_GPL vmlinux 0x4688c96a usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x46911df2 stmpe_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x46b65a6b crypto_larval_lookup -EXPORT_SYMBOL_GPL vmlinux 0x46d6f17c key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0x46dfff7f securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x470f5d27 regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x472aac13 __class_register -EXPORT_SYMBOL_GPL vmlinux 0x4730fa06 crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x473de771 of_pci_msi_chip_add -EXPORT_SYMBOL_GPL vmlinux 0x473fedd4 pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x47435c67 device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0x4749f60d user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x47767e20 gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x479071d2 trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47b2c8f4 wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x47ddb63c gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47fdcef0 pwm_free -EXPORT_SYMBOL_GPL vmlinux 0x4811ee87 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x4828fe12 apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0x485a0e46 rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL vmlinux 0x4862bd8c cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x4866925f serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh -EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0x4882513e blkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x4885528c wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0x48988e07 raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x48a7cd83 xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0x48addf19 ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0x48aebd1a fuse_get_req -EXPORT_SYMBOL_GPL vmlinux 0x48c603a4 md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0x48d892e5 of_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x48ff59e2 get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0x491802f0 fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0x4921a942 kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0x496fabc6 pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x49c04139 crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0x49dc1026 page_endio -EXPORT_SYMBOL_GPL vmlinux 0x49def99b led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0x49df62c7 rio_lock_device -EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49efdd25 ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0x49fa4029 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0x4a360e58 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0x4a42a9cd part_round_stats -EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name -EXPORT_SYMBOL_GPL vmlinux 0x4a8ee6c3 spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0x4a971100 max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x4a9b1335 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0x4aca51b2 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0x4accc01e blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0x4ae39872 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x4ae8c705 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x4aec1a0b virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x4af3dc36 __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x4b09b135 kvm_vcpu_uninit -EXPORT_SYMBOL_GPL vmlinux 0x4b223473 driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0x4b2a4df6 usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0x4b808c05 __securityfs_setup_d_inode -EXPORT_SYMBOL_GPL vmlinux 0x4b81b9f1 kvm_read_guest_atomic -EXPORT_SYMBOL_GPL vmlinux 0x4b872061 fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0x4b89bb5c clk_gpio_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0x4b92b087 clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x4b98827c rh_init -EXPORT_SYMBOL_GPL vmlinux 0x4bc2c4c3 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0x4bc3055a irq_create_mapping -EXPORT_SYMBOL_GPL vmlinux 0x4bd4bdc0 spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0x4bdecf6d find_symbol -EXPORT_SYMBOL_GPL vmlinux 0x4bec5835 hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0x4c107309 blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0x4c1d719d virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0x4c4e2992 of_usb_update_otg_caps -EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4c6d9290 ping_close -EXPORT_SYMBOL_GPL vmlinux 0x4c6f08b5 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table -EXPORT_SYMBOL_GPL vmlinux 0x4c7903f8 rtc_irq_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4c7f0734 gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x4c8343b7 input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0x4c915657 cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x4caa48d8 clk_register_gpio_mux -EXPORT_SYMBOL_GPL vmlinux 0x4cbde3e8 PageHuge -EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d424b67 usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0x4d45e006 rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x4d58fbb0 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0x4d73616e crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0x4d8615dd pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x4d9abc43 regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0x4daa5049 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4de7fe81 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0x4e18547f clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x4e215dc6 uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path -EXPORT_SYMBOL_GPL vmlinux 0x4e2c2dd2 pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x4e3627d4 fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0x4e69bfd5 ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x4e9f12dd sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0x4ea4160f spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4ef96772 pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0x4f3bd3d2 xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0x4f4bf92c net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x4f690de2 mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f70f89e skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0x4f843440 crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0x4f8da562 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x4f931817 gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x4f9d03b4 page_cache_sync_readahead -EXPORT_SYMBOL_GPL vmlinux 0x4fa0fbb6 cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x4face35a pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0x4fb717bc ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0x4fbd907c da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0x4fd88b99 ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x500e5f83 i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0x50331802 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0x503f61b2 leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0x503f6648 virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0x5057449b dev_pm_opp_find_freq_exact -EXPORT_SYMBOL_GPL vmlinux 0x507079d5 _gpiochip_irqchip_add -EXPORT_SYMBOL_GPL vmlinux 0x507596d8 hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x5077111c __get_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x5085ae10 wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test -EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x50aeeb32 fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0x50bcd040 fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x50bd96b9 rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x50be4543 fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50f82222 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x5104fe20 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x51402cb0 vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0x51422fee of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x51467922 alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val -EXPORT_SYMBOL_GPL vmlinux 0x51719489 tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5189969c sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x51966b51 __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x51b12506 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x51b65a26 rtc_lock -EXPORT_SYMBOL_GPL vmlinux 0x51b6fb2f regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0x51d42b13 tpm2_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x51e12933 crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0x5206c07f gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL vmlinux 0x5214e35a hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5237281b ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x524af48e device_create_file -EXPORT_SYMBOL_GPL vmlinux 0x52558aef ata_eh_thaw_port -EXPORT_SYMBOL_GPL vmlinux 0x525f2b51 pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x52644025 ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x5286571a blkg_print_stat_bytes_recursive -EXPORT_SYMBOL_GPL vmlinux 0x528db92e pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0x52924f20 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0x5309b3e8 get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x53142ce6 ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0x5332b9be pci_restore_ats_state -EXPORT_SYMBOL_GPL vmlinux 0x5335dd11 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x5351ea13 dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0x5356e5e0 serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x53779d11 device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x5389ddd9 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x53933c7e regmap_field_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x53a8cf77 pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x53b19f8b dma_buf_kmap -EXPORT_SYMBOL_GPL vmlinux 0x53c1cfab ata_do_eh -EXPORT_SYMBOL_GPL vmlinux 0x53d6d571 bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0x53e03609 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x53e9ed48 pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0x540c02ba user_describe -EXPORT_SYMBOL_GPL vmlinux 0x5415dec3 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x542018c3 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x5424b491 blocking_notifier_chain_cond_register -EXPORT_SYMBOL_GPL vmlinux 0x542e1c5b hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0x5449be0c tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5458f581 scsi_device_from_queue -EXPORT_SYMBOL_GPL vmlinux 0x545e0d99 fsl_spi_cpm_free -EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x5468719f pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0x546c5565 ppc_tb_freq -EXPORT_SYMBOL_GPL vmlinux 0x5471cf9b srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x54726437 of_prop_next_string -EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time -EXPORT_SYMBOL_GPL vmlinux 0x54873fe4 securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x5496582a sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0x549ea56b pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x54b5e679 of_pci_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0x54c3b512 pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0x54d2e452 to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0x54d468f1 pm_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0x54e4baed debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x54edfefd usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x54f28cc2 anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0x55221b66 ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0x55262cf3 devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5543afa3 phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x554fefca scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0x5554dfdd ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0x55596704 get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x556fd957 ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0x556fe8b7 cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x55a08ec9 crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x55a44e23 crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0x55a8d0df of_irq_get -EXPORT_SYMBOL_GPL vmlinux 0x55b70208 nd_numa_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x55c09ab9 perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x55c55ecf regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x55c74e0f mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x55ca884f bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0x55d45d53 cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x55f51ef3 alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x5610e8ea usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0x561cffa0 __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x5633c8e0 sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0x563ed09f wait_for_tpm_stat -EXPORT_SYMBOL_GPL vmlinux 0x5659bce6 __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen -EXPORT_SYMBOL_GPL vmlinux 0x566607ff unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0x567fdff0 tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map -EXPORT_SYMBOL_GPL vmlinux 0x56b4c9df da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x56bd1139 watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up -EXPORT_SYMBOL_GPL vmlinux 0x56d81ad8 inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0x56ddc44f find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0x56e07ea3 bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x56e8c2d0 inet_hash -EXPORT_SYMBOL_GPL vmlinux 0x570399a0 device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x5709163b irq_create_direct_mapping -EXPORT_SYMBOL_GPL vmlinux 0x570f7a5c put_device -EXPORT_SYMBOL_GPL vmlinux 0x571cb99c ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0x572010b4 gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0x57242259 ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0x573b268f ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0x573d058d l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0x57448d22 regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x574a9e0a gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x5765e54c dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0x57707a15 ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags -EXPORT_SYMBOL_GPL vmlinux 0x57d84bc8 power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0x57e0f9d2 device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0x57f607ae usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0x5820a602 regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0x58261be2 cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x582b6eaf regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x585161ac gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0x58755e97 tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x587abfd8 serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0x5892f832 release_pmc_hardware -EXPORT_SYMBOL_GPL vmlinux 0x589ddf52 skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname -EXPORT_SYMBOL_GPL vmlinux 0x58aac72c dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0x58ada9a6 od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x58c9b08c usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0x58c9b23b device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0x591cb0c5 usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x592e1a3e bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0x59304016 rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x5934c23d screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0x593b0a50 __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x59b0e177 unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x59d85ec9 pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x59dbf02c net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x5a05d8f3 ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x5a14e34f clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x5a26a379 nf_register_afinfo -EXPORT_SYMBOL_GPL vmlinux 0x5a648773 pcibios_finish_adding_to_bus -EXPORT_SYMBOL_GPL vmlinux 0x5a65c37b devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq -EXPORT_SYMBOL_GPL vmlinux 0x5a772244 cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5aaa14ad udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5aec0abb irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0x5b0ba72a srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5b1da1af invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0x5b2348ec ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x5b32d78c irq_domain_add_simple -EXPORT_SYMBOL_GPL vmlinux 0x5b88c540 regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bd722fa mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5c042c48 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x5c2b99fc dm_get_rq_mapinfo -EXPORT_SYMBOL_GPL vmlinux 0x5c2dd93f posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0x5c588a06 wm8997_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c87c8a8 regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x5c914c24 usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5cac77d0 sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x5ce943cd isa_bridge_pcidev -EXPORT_SYMBOL_GPL vmlinux 0x5cf06300 gfn_to_memslot -EXPORT_SYMBOL_GPL vmlinux 0x5cf9fe24 rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0x5d0cc6e5 ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x5d103802 mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user -EXPORT_SYMBOL_GPL vmlinux 0x5d2573a8 xhci_run -EXPORT_SYMBOL_GPL vmlinux 0x5d54e0af phy_init -EXPORT_SYMBOL_GPL vmlinux 0x5d5ebc04 da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5d9425cb __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x5d9e2ec7 napi_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x5da1bf59 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0x5da57e56 gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5dac0c25 spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0x5dbc154b sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0x5dc64b22 ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0x5dc6a024 crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x5dcbb460 register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0x5df061a3 class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x5e024781 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x5e2d02ca fat_attach -EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl -EXPORT_SYMBOL_GPL vmlinux 0x5e6833c4 perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0x5e7013c9 mpc8xxx_spi_rx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x5e7f1329 get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x5e9e6c6f of_get_fb_videomode -EXPORT_SYMBOL_GPL vmlinux 0x5eac0041 skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x5ec38c04 ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0x5ed11412 swiotlb_tbl_map_single -EXPORT_SYMBOL_GPL vmlinux 0x5ed5a232 spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0x5ee45e01 phy_exit -EXPORT_SYMBOL_GPL vmlinux 0x5f141064 blkg_stat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x5f21fdf9 __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x5f226722 thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x5f3d4256 trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0x5f4998f5 vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0x5f532712 ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x5f6a75fa xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x5f8741e5 led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0x5f9384e0 xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0x5f944b27 pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0x5fb49daf ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0x5fc90b2f fsl_spi_cpm_init -EXPORT_SYMBOL_GPL vmlinux 0x5fd8ef95 devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x5fdf9bb2 usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0x5fe53e4a max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x602ee1e6 ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0x6035b78e fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x6041d9fd pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush -EXPORT_SYMBOL_GPL vmlinux 0x6065e0b9 sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0x607f3438 ata_eh_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x609f3dc5 tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL_GPL vmlinux 0x60a74bb7 ping_proc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x60b1ca58 kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0x60c52a54 trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq -EXPORT_SYMBOL_GPL vmlinux 0x60f5ed09 regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0x6102f0ce ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0x61093546 of_thermal_get_ntrips -EXPORT_SYMBOL_GPL vmlinux 0x610f7394 pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0x612f68fa devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0x6136765a inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x61423e29 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x6143632e ata_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x6193ff04 virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0x61a90c54 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0x61abd947 inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0x61c55fb9 led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0x61d0b6e3 __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x620ddd66 percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0x62158a1b md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0x6215f03b ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0x622b29c4 regmap_field_write -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x62433959 ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x625c185f tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x628f1dc7 dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x62ac64cd device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x62bcd146 device_del -EXPORT_SYMBOL_GPL vmlinux 0x62d59c9e trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0x62e3703a __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0x62f6b917 gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0x62fd0dfd __ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0x63025dc2 regmap_update_bits_check_async -EXPORT_SYMBOL_GPL vmlinux 0x6305c694 tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x631c760e regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0x633ffd63 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x634e68d3 bsg_request_fn -EXPORT_SYMBOL_GPL vmlinux 0x635b15c7 inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x63a3d9c2 wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x63b2c885 sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0x63baa3fd clk_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0x63df86e0 bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0x63eb29b2 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0x63f4adcf arizona_set_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x63faf7ce sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x64014f21 cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x640e8581 dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0x6428da4f rh_attach_region -EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched -EXPORT_SYMBOL_GPL vmlinux 0x64480df6 pci_hp_change_slot_info -EXPORT_SYMBOL_GPL vmlinux 0x644a2a2d fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x646116c1 module_mutex -EXPORT_SYMBOL_GPL vmlinux 0x64688dc7 __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x647cd339 of_fixed_factor_clk_setup -EXPORT_SYMBOL_GPL vmlinux 0x648dfcb9 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x6494d57e pci_intx_mask_supported -EXPORT_SYMBOL_GPL vmlinux 0x64a570f0 bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x64a70cfc io_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x64adb40c pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0x64b2dcd5 spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0x64e24a5e memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x65311eef of_dma_router_register -EXPORT_SYMBOL_GPL vmlinux 0x65317c25 kvm_clear_guest -EXPORT_SYMBOL_GPL vmlinux 0x6531eb6b phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0x65416e1c sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0x65690cde __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x656cea9e elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0x658424d2 tps65912_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x6584833e fsl_spi_cpm_irq -EXPORT_SYMBOL_GPL vmlinux 0x658dc3c8 __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0x65bf82f1 nvdimm_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65e253b9 crypto_ahash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x65f17143 regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x65f6c009 find_vpid -EXPORT_SYMBOL_GPL vmlinux 0x660d2a51 pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0x66109e96 edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x66485c9e power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x664fb757 of_reserved_mem_device_release -EXPORT_SYMBOL_GPL vmlinux 0x6669c41a skb_gso_transport_seglen -EXPORT_SYMBOL_GPL vmlinux 0x667d393e hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x668208a6 devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x669b00eb ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0x669da1fd kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL vmlinux 0x66afb53b unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x66d1fab0 cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66fc3821 usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0x67380a6f rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x67416c14 regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy -EXPORT_SYMBOL_GPL vmlinux 0x67614c8d sched_setscheduler -EXPORT_SYMBOL_GPL vmlinux 0x6761c830 kvmppc_handle_store -EXPORT_SYMBOL_GPL vmlinux 0x678db171 shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x67da6b55 tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x6820b3d9 fuse_request_send -EXPORT_SYMBOL_GPL vmlinux 0x682e6bb0 hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x6831b0d3 class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0x68608a41 __inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0x68956406 static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x68a308b8 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0x68f54db9 rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x6905be38 regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x693d0a4a syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0x69586527 usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x696152d3 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x69679f89 kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL vmlinux 0x6975b162 device_attach -EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x697cbbb4 threads_per_core -EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0x69ab121d __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x69b02b60 pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0x69c7597c xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0x69cc4dc1 unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x69e33b83 of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x6a14250b md_run -EXPORT_SYMBOL_GPL vmlinux 0x6a3ab4f8 ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0x6a4b6aca regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x6a7142bc dev_pm_opp_of_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a8f6b80 regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6ab3781f trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x6ad9eca0 fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0x6ada03a4 filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0x6ada89c7 wm5102_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x6ae45cd9 arizona_dev_init -EXPORT_SYMBOL_GPL vmlinux 0x6af35d50 attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x6b2516a6 phy_put -EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0x6b44517f __init_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0x6b48a910 switch_booke_debug_regs -EXPORT_SYMBOL_GPL vmlinux 0x6b4ed06e dev_pm_opp_init_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x6b59b5be srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b9bca12 usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0x6bb3c035 kvm_vcpu_gfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0x6bbc35c1 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x6bc713ec alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0x6bd11935 rio_get_device -EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x6c10642d devm_rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6c209eab __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0x6c36b938 cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0x6c3be018 bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0x6c3ddf86 uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c6a0f98 tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x6c72ee5d devm_regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x6c800bc3 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq -EXPORT_SYMBOL_GPL vmlinux 0x6cb59691 ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0x6cd82261 device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0x6cd932e6 __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0x6d2988c4 kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d351899 netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x6d74237c __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x6dac0acb hugetlb_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x6db1eaf8 kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0x6dc1e878 ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0x6dc782b0 dm_disk -EXPORT_SYMBOL_GPL vmlinux 0x6dd4774b serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0x6dd5529d bus_find_device_by_name -EXPORT_SYMBOL_GPL vmlinux 0x6de6ea9f usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0x6deb9bcc regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy -EXPORT_SYMBOL_GPL vmlinux 0x6e426429 devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0x6e51afc8 percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6e95b0f0 i2c_generic_gpio_recovery -EXPORT_SYMBOL_GPL vmlinux 0x6e9b8c6c inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x6ec345be of_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x6ef2e038 unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0x6ef3a99e i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x6f257894 proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0x6f43dbcf ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x6f6cfaca virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto -EXPORT_SYMBOL_GPL vmlinux 0x6f9f8987 regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0x6fa9e3a9 blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x7001ff93 pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0x70177656 power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x701b74a1 of_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x7021ea01 add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x7031028a devm_mdiobus_alloc_size -EXPORT_SYMBOL_GPL vmlinux 0x7036d512 device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x704efbb9 rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x7078a3ef ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0x70856c42 usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x709b92c3 crypto_init_ahash_spawn -EXPORT_SYMBOL_GPL vmlinux 0x70a10d26 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x70a2fd7a rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0x70acdf76 __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x70af9075 regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x70b5a87a disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x70b92d6a sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated -EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70d24914 pci_reset_pri -EXPORT_SYMBOL_GPL vmlinux 0x70f68460 each_symbol_section -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x710cddbe ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0x711182fa regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x71186be6 of_fixed_clk_setup -EXPORT_SYMBOL_GPL vmlinux 0x71302878 mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x71339e6a ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0x71373d87 get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x7148fdde do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0x715b08bd fsnotify -EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x716b95d5 fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0x716dea58 devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x71882c86 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71a770d8 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x71b0cc9b wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0x71b6a36d crypto_ahash_type -EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab -EXPORT_SYMBOL_GPL vmlinux 0x720ea408 phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x721ac595 ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0x723a30c4 fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0x724584a4 blk_unprep_request -EXPORT_SYMBOL_GPL vmlinux 0x72515d5a snprint_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x72675ed0 kvmppc_pr_ops -EXPORT_SYMBOL_GPL vmlinux 0x726a703f devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0x726ce980 debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x7276a310 dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x7277e924 usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x7282ce30 mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0x72954d7b register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x729e6ef8 bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0x72a27bc9 wakeup_source_drop -EXPORT_SYMBOL_GPL vmlinux 0x72b71b72 regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x72bd0145 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x72e8d96a rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x730bf0ac kvm_vcpu_block -EXPORT_SYMBOL_GPL vmlinux 0x731b7ab9 __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0x732b8364 devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x7347e824 regmap_update_bits_check -EXPORT_SYMBOL_GPL vmlinux 0x73640c36 bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7369969d xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0x73a3ede2 raw_seq_open -EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73ad78e4 max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x73d14381 ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x740e6f38 tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x74194090 __pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x7435c7a9 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x743fb822 of_get_nand_ecc_strength -EXPORT_SYMBOL_GPL vmlinux 0x7445a75e devfreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x744dd81c led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7468b74e __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0x74a39bad pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74d007c2 perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x74e08627 __netlink_alloc_skb -EXPORT_SYMBOL_GPL vmlinux 0x74e2f8ec gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL vmlinux 0x74e5c138 max_gen_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0x74e7089a crypto_register_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x74ee3a10 wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0x75054d6c reservation_object_get_fences_rcu -EXPORT_SYMBOL_GPL vmlinux 0x7515fee0 md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0x75200002 mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x75329035 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0x7543c096 crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x7576d9bc usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x7579643f crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only -EXPORT_SYMBOL_GPL vmlinux 0x75a2c26b serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0x75a2d4d6 devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x75b02cd5 pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0x75b22197 bdev_read_page -EXPORT_SYMBOL_GPL vmlinux 0x75c2b9f1 memalloc_socks -EXPORT_SYMBOL_GPL vmlinux 0x75c9d8c3 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x75d8e9a9 tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0x75f2a044 usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x760decd7 ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x760ff8f0 fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0x761d4d0c rio_mport_send_doorbell -EXPORT_SYMBOL_GPL vmlinux 0x761ed6ec hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x762c0858 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x762d888d device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x764b2249 usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x76864d8c sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0x76904259 pcibios_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x76934ef2 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x76a6ba54 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL vmlinux 0x76c99992 rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x76ed26cb fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0x7703741d devres_get -EXPORT_SYMBOL_GPL vmlinux 0x770cf981 tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x77108e4e shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7763b800 usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0x77801eef smpboot_update_cpumask_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x77a568d8 ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77c40ceb cpu_remove_dev_attr_group -EXPORT_SYMBOL_GPL vmlinux 0x77c9a514 skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x77d3c3cb bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0x78045aec dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0x78151326 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x781c3d24 rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x781d00af thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x78459300 __compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x785cf1c3 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x787a3146 crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x78820cd0 inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x78a8ef17 crypto_alg_lookup -EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0x78dd6fcc pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0x79065ae5 uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0x79216184 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x7934a4de fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off -EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x7976d070 rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x79a36f9d serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0x79a89e60 ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x79c480da rh_dump -EXPORT_SYMBOL_GPL vmlinux 0x79dc2b5b devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x79dd0292 tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79e20057 adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x79ea9ce5 free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x7a29e5f0 trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x7a3dba26 cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x7a5bde2b gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x7a687c3c gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x7a7bb563 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x7a8949df dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x7a912528 wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0x7aa64803 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL vmlinux 0x7aadb25d blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read -EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x7b17bc70 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set -EXPORT_SYMBOL_GPL vmlinux 0x7b285f33 wm8998_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x7b9b49e6 list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x7ba09e27 raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0x7babc452 sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0x7bd5875d unregister_jprobe -EXPORT_SYMBOL_GPL vmlinux 0x7be10948 rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7bf89b56 ata_eh_qc_retry -EXPORT_SYMBOL_GPL vmlinux 0x7c05b369 regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x7c247039 scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0x7c363ea9 tpm2_startup -EXPORT_SYMBOL_GPL vmlinux 0x7c4ef717 regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0x7c5c5ff3 class_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7cafa192 fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0x7cc4204e crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x7cc53c36 rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7cd907ca kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0x7ce75ec1 scsi_internal_device_block -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7ceca3b4 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d10095f register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d65dd8a tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x7d83b09a pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7db71404 crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x7dc1e388 alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0x7dcdad2a usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x7dd057b4 rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0x7dd12fac register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7deedb1a regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0x7dfbec59 thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0x7dfeabb5 ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0x7dfede0a device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0x7e16fa2c __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0x7e17ba7b klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x7e2aa0ca driver_register -EXPORT_SYMBOL_GPL vmlinux 0x7e38bb90 transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0x7e53a098 sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0x7e56a0b3 ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0x7e62bf01 of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0x7e63fcd7 device_show_int -EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e6dbce8 sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x7e80cdc5 usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0x7e9f75ff pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x7eb0b0f4 regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0x7edebeff hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0x7eee505d attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0x7f008202 btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature -EXPORT_SYMBOL_GPL vmlinux 0x7f3dc62c crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0x7f45e8dd blk_queue_bypass_end -EXPORT_SYMBOL_GPL vmlinux 0x7f6113a8 regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x7f7bc710 klist_next -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f82f065 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0x7f84ce67 of_scan_bus -EXPORT_SYMBOL_GPL vmlinux 0x7f9635f0 rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0x7fa8ecdf pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0x7fbbebe3 regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x801c3569 lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0x8029d39a crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x8092c525 pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0x809765f6 gfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0x80b48b68 security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x810d9377 devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x811b3a31 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x81568858 sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0x816344db __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x81c5b234 regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x81cccd10 ref_module -EXPORT_SYMBOL_GPL vmlinux 0x81d1e120 get_device -EXPORT_SYMBOL_GPL vmlinux 0x81dc5404 debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0x81e3c0dd kvm_vcpu_kick -EXPORT_SYMBOL_GPL vmlinux 0x81f367d9 of_irq_parse_raw -EXPORT_SYMBOL_GPL vmlinux 0x820e5da8 crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x822445b7 regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0x822ad4c7 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0x823363c4 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0x825bec12 clk_debugfs_add_file -EXPORT_SYMBOL_GPL vmlinux 0x825c5816 regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0x8283b3f2 pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x8294290e tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x82c42db9 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0x82cdd3a1 crypto_init_spawn -EXPORT_SYMBOL_GPL vmlinux 0x82d4624a validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82de48f2 serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0x83004b06 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x8308e855 blk_mq_cancel_requeue_work -EXPORT_SYMBOL_GPL vmlinux 0x83168c84 srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x8325fdba pwm_enable -EXPORT_SYMBOL_GPL vmlinux 0x832e55b9 perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0x83572c1f kvmppc_handle_load -EXPORT_SYMBOL_GPL vmlinux 0x836d61d0 atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0x8399b646 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0x83a5c73e flush_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0x83eba8d4 save_stack_trace_tsk -EXPORT_SYMBOL_GPL vmlinux 0x83ebb402 dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0x83ebc9e4 devm_power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x8412ad7b tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x84142b99 br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0x8415bf15 of_regulator_match -EXPORT_SYMBOL_GPL vmlinux 0x841da239 unregister_jprobes -EXPORT_SYMBOL_GPL vmlinux 0x84239b84 class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x84330fa1 power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x844b3846 __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x8458bc58 __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0x846e693f regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x846f40de __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x849b8c99 dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x84a5b4f3 kvmppc_sanity_check -EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x84b86956 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x84b97ede driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0x84cbf9f4 usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0x84cc1561 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x84e9cf27 nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0x84fccd54 of_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x850cebef adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x85143d0c ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read -EXPORT_SYMBOL_GPL vmlinux 0x852f65a2 devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x854149e1 devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0x854c1215 devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x85554bf7 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x85766a0d list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0x85830230 led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0x858737ec fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x85a0a37f pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0x85ae5fd9 dev_pm_opp_get_max_clock_latency -EXPORT_SYMBOL_GPL vmlinux 0x85b55471 find_module -EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x85f8de9c of_dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x86005e5f posix_timer_event -EXPORT_SYMBOL_GPL vmlinux 0x8606ee1f dma_request_slave_channel_reason -EXPORT_SYMBOL_GPL vmlinux 0x860a5444 ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x860af9db bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x860fbe5c arizona_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod -EXPORT_SYMBOL_GPL vmlinux 0x86204433 skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x864bb141 scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0x8652110e pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0x866bd535 dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x868629ba ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x8688ac00 devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x868a8928 crypto_tfm_in_queue -EXPORT_SYMBOL_GPL vmlinux 0x86b25ecf anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x86dc1431 relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x87221fe5 rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0x873c15d0 virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0x873c5e06 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error -EXPORT_SYMBOL_GPL vmlinux 0x87447e1e trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0x8754ad76 __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x876f5301 of_dma_is_coherent -EXPORT_SYMBOL_GPL vmlinux 0x8774a9ec platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x877ac329 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x879c05d6 sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0x87a04c9e gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x87b3515e sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x87d25ec1 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0x8804af3d usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0x88215618 tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0x883868c5 crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0x88733678 uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0x889cf725 clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88b24003 bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x88d77cb9 blk_add_request_payload -EXPORT_SYMBOL_GPL vmlinux 0x88fb9a4f trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x892914ec pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x8965f313 usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0x89b12c8f wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x89dbf5b0 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x89ede527 platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0x89f1ce76 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0x89f48040 clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x8a0bb18d dev_pm_opp_enable -EXPORT_SYMBOL_GPL vmlinux 0x8a200b7d ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0x8a3879e1 pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode -EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod -EXPORT_SYMBOL_GPL vmlinux 0x8a5f86ce fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x8ab8266a ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8ad39d59 gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x8ad719a4 devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x8ae7cce7 bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x8b13b4b9 wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b2160d0 crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x8b3f1ead power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0x8b50f03d fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x8b5ff72a pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0x8b70e8ea __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0x8b71b752 __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x8b820e1e vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0x8baeb45e ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0x8bc8dce1 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0x8bc92dc8 devm_mdiobus_free -EXPORT_SYMBOL_GPL vmlinux 0x8bd07d98 transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8bea2c54 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x8bebf430 seq_release_net -EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c17fb55 posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x8c371d93 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0x8c3f6c8e show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x8c5da2bf regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status -EXPORT_SYMBOL_GPL vmlinux 0x8c6cd6ea scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x8c7384df agp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c83c4cb subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x8c9a00d5 ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0x8ca78161 regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x8cb6a5a5 put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params -EXPORT_SYMBOL_GPL vmlinux 0x8d20ea2b tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0x8d362582 of_thermal_get_trip_points -EXPORT_SYMBOL_GPL vmlinux 0x8d494994 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x8d5ffbc7 of_pci_get_host_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x8da01274 kvm_get_pfn -EXPORT_SYMBOL_GPL vmlinux 0x8da3d27a gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x8dab4462 inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0x8dc73941 device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x8dcb019a bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0x8dd2bd4e of_devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x8dfbd20c sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0x8dfd5821 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x8e0acdc0 of_clk_get_parent_name -EXPORT_SYMBOL_GPL vmlinux 0x8e13ed25 srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x8e1cd06f kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL vmlinux 0x8e2b25c2 videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x8e40cb18 debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0x8e4984f4 vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x8e54f28d devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x8eb5058a blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0x8ee491df tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8ee7ee3d regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x8ee84aa8 kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f0de55c blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0x8f1879fc ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0x8f2bc7b4 sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0x8f584d67 skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x8f588cc8 component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8f7103f0 ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0x8f9672f0 fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0x8fa3e875 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0x8fbeb583 class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x8fcb0b38 __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0x8fced602 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0x8fd154e7 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x8fda5150 __kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0x8fdf223d sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0x8ff1aa3b led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0x8ffb9962 sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x900953d7 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0x9022d5bc memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x90378b68 ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x9052e07f rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x9077d5ea usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x907c44f6 watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x908448a3 pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0x9089e246 handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x90af2364 tc3589x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x90b36d9d sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0x90cebed5 register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x91103b9e mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x912a0136 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0x914711ac devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x914ba6a5 kvm_irq_has_notifier -EXPORT_SYMBOL_GPL vmlinux 0x91768d7f ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0x91792e62 pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x919e8c8e irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x91ae9fe4 usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0x91c1fae7 ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91e72365 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x926ad50c i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x9282c8d4 use_mm -EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x92bb9d29 clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x92c6348c rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92dbf0e8 regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x92f6e4b6 __ktime_divns -EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x93331047 device_register -EXPORT_SYMBOL_GPL vmlinux 0x93520fa9 fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x93595a55 posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9365d415 of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x939daf20 crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0x93a2cb47 reserve_pmc_hardware -EXPORT_SYMBOL_GPL vmlinux 0x93bf2fcd __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x93cd1faa of_reconfig_get_state_change -EXPORT_SYMBOL_GPL vmlinux 0x93d6c591 blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x940068b3 clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x94281de0 sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x9432b036 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x94332c48 __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0x943a14d8 __percpu_ida_init -EXPORT_SYMBOL_GPL vmlinux 0x946cd7b5 init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0x947ce2b8 rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0x94c8b7b6 cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0x94d6e374 fuse_get_req_for_background -EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop -EXPORT_SYMBOL_GPL vmlinux 0x94f4637f bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0x94f572e5 sg_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x9507866d debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0x951ad51a mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x951ed87c usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x957a3668 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0x957a4b35 pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x959fad20 task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0x95b30886 pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x960025c7 led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0x960372fa device_store_int -EXPORT_SYMBOL_GPL vmlinux 0x96066b57 ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0x961be035 devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x962409fb __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x962b57a4 devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9655b911 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x9656c82b shmem_add_seals -EXPORT_SYMBOL_GPL vmlinux 0x9676e96b devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x969d7014 led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0x969e5336 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0x969ed573 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x96b67606 sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0x96dec2f8 kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0x97290ea3 _submit_bh -EXPORT_SYMBOL_GPL vmlinux 0x974b2870 ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0x9752cc02 dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x97687b41 devm_pwm_put -EXPORT_SYMBOL_GPL vmlinux 0x97762bd3 usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0x978332af trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x9789ddfa wm5110_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x979100b9 kvm_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x97b4806f desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0x97b48df5 sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x97c53d68 __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97f32993 virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0x97f43ec6 devm_regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x98006fb9 kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL vmlinux 0x9807d85e pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0x981c6661 blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0x982cd486 __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x983c7494 rh_detach_region -EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x985b8f2e component_del -EXPORT_SYMBOL_GPL vmlinux 0x9878cfd6 inode_congested -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9879c36b firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0x9882e891 usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0x9892d5d4 phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0x98976331 tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0x989eb047 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x98a08f61 alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0x98b0355e usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x98b89426 bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x98bc1585 pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0x98de437d regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0x98eb33b2 crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0x98ee92ab kvmppc_emulate_instruction -EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on -EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x9979a202 fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0x997b88b2 nd_device_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range -EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x999055fd perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0x99b8903d __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x99b9e21b tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x99bf3a4d public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0x99c856a6 inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x99ce0592 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x99dca800 extcon_register_interest -EXPORT_SYMBOL_GPL vmlinux 0x99ea4f3b subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x99eab883 wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x99ee1fcd scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a4310d1 kvm_write_guest -EXPORT_SYMBOL_GPL vmlinux 0x9a49d937 __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x9a6b69f0 bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0x9a6e18e1 __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck -EXPORT_SYMBOL_GPL vmlinux 0x9a8ff43b lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x9aad6540 klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x9ac6124f kvm_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x9ae3a119 scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9af152ac usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0x9af9f2f2 bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x9b1913c2 swiotlb_unmap_page -EXPORT_SYMBOL_GPL vmlinux 0x9b31da8e spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0x9b582909 blk_mq_request_started -EXPORT_SYMBOL_GPL vmlinux 0x9b6cbbd4 __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0x9b991980 devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x9b9b8617 pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x9bb98742 rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0x9be233d5 __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9bf0533f gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x9c08531f is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0x9c4292f7 pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0x9c7359fd devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x9c7a9539 __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x9c90f1a2 ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0x9cb7a4ef cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0x9cb8cce0 crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0x9cc2c10b gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ceac92b shash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x9d450a5d pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x9d5a781b led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9d7ff882 gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x9d987896 sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x9d99e015 sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x9dac62e1 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported -EXPORT_SYMBOL_GPL vmlinux 0x9dafedb5 vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0x9db07fc3 mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0x9db391e6 __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0x9db3e7e1 mpic_subsys -EXPORT_SYMBOL_GPL vmlinux 0x9dc2e3f4 blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x9dc529e9 regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x9dcab596 regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x9dd6de34 sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0x9df9ab2f device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0x9dfe1838 ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x9e199090 __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e4b1978 of_irq_find_parent -EXPORT_SYMBOL_GPL vmlinux 0x9e874e26 elv_register -EXPORT_SYMBOL_GPL vmlinux 0x9e93d422 of_get_nand_bus_width -EXPORT_SYMBOL_GPL vmlinux 0x9ea4b950 pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x9eaf821d kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL vmlinux 0x9eb29fbe device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x9ed1b404 pwm_can_sleep -EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ef6177f ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9efbbd8b ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x9f07cbde fsl_rio_mcheck_exception -EXPORT_SYMBOL_GPL vmlinux 0x9f0e7297 arizona_of_get_type -EXPORT_SYMBOL_GPL vmlinux 0x9f2599f7 regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0x9f28d50c locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0x9f2a72e4 blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x9f56cb46 tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0x9f56e7f6 usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0x9f6f4045 rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x9f7f3166 pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x9f98d9f0 irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x9faa6778 usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x9fb7223f of_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x9fbaef9d ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0x9fc7e76b pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0x9fccb57a thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fe136f8 usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x9fe288d3 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9ff8c5c1 component_master_del -EXPORT_SYMBOL_GPL vmlinux 0xa015a0ca pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0xa01971cc ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0xa01fe106 inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0xa0208e02 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0xa03b8e40 ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0xa04a0ca4 __mmu_notifier_invalidate_range -EXPORT_SYMBOL_GPL vmlinux 0xa05c72d1 ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0xa0946d2a dummy_con -EXPORT_SYMBOL_GPL vmlinux 0xa09563d4 regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa0a27fff pci_address_to_pio -EXPORT_SYMBOL_GPL vmlinux 0xa0cc8b7b wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xa0d05fe6 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xa0d0b6c5 scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0xa0d13f04 dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0xa0d6c7b2 devm_spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0xa0db918a uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0xa0e3c4e8 usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0xa10722a6 dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0xa1290287 ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0xa12b55f1 adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0xa13c6147 mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0xa1441ad6 fuse_request_send_background -EXPORT_SYMBOL_GPL vmlinux 0xa152f602 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xa1583310 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0xa17c2752 blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xa18426bd devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0xa1cc83bf dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0xa1d69c81 pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0xa1dc0ee7 dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0xa1f2e6b6 inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xa1f3c1bc ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0xa224e971 blkcipher_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0xa23d8254 devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xa251bd29 clk_register_divider -EXPORT_SYMBOL_GPL vmlinux 0xa2560d50 of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xa25724f0 usb_string -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa28aaf29 rh_create -EXPORT_SYMBOL_GPL vmlinux 0xa2948397 devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xa2adde7c kvm_release_page_clean -EXPORT_SYMBOL_GPL vmlinux 0xa2af4d1a ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xa2c5086e dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xa2d14bf8 kvm_clear_guest_page -EXPORT_SYMBOL_GPL vmlinux 0xa2d1b49f swiotlb_tbl_unmap_single -EXPORT_SYMBOL_GPL vmlinux 0xa2e9c734 __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0xa3225776 regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0xa3687a1b nd_blk_region_to_dimm -EXPORT_SYMBOL_GPL vmlinux 0xa378d2b9 wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xa37d6de6 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register -EXPORT_SYMBOL_GPL vmlinux 0xa398e4a5 pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xa39d5eea ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3a2d9af walk_system_ram_range -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3ca2bb5 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0xa3dfb086 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0xa3e2c592 irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0xa40e9537 tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0xa417be9e regmap_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xa46387e8 task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0xa4676fe0 usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0xa46f08d2 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa4a7ccfe virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0xa4b058d7 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa4c47ab9 metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0xa4cc765a mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0xa4d8a181 dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xa4ec0cbb ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa4f33e96 usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0xa4fe4e4a regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xa503c34c fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0xa507ec6d wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0xa50eb881 pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0xa51d9099 devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xa54bda7f rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0xa5534f8e usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xa56a3f50 tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0xa56f8a3a skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0xa5753c3a pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0xa58ecb96 da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xa5916301 gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0xa5ad158c adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0xa5add9a9 regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xa5b00659 ppc_proc_freq -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa5efe460 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0xa5f10a00 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0xa60b7240 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0xa6316a8a nvdimm_bus_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xa65458ed gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xa6a41cb9 crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6b7df16 input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0xa6c00311 security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0xa6e0e70e __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6e94c57 of_console_check -EXPORT_SYMBOL_GPL vmlinux 0xa6f13b57 pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xa6f58cb0 key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0xa72072f5 blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0xa73d9d1d sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0xa75c6d7d kthread_park -EXPORT_SYMBOL_GPL vmlinux 0xa76704f1 of_irq_parse_one -EXPORT_SYMBOL_GPL vmlinux 0xa77269c2 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0xa788c152 mpc8xxx_spi_tx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0xa78f6586 stmpe_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xa7a218bc __nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0xa7caddb8 mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0xa7d857ed sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0xa7f9377c usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xa841a1cd gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa851f7d4 blk_mq_register_disk -EXPORT_SYMBOL_GPL vmlinux 0xa86ab3a6 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0xa8a5a418 debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xa8fd4a92 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa9082399 blkg_dev_name -EXPORT_SYMBOL_GPL vmlinux 0xa91603b1 init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xa924b32f shash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa93acff8 clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0xa96bee23 tpm2_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0xa976e618 usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0xa97a1074 blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xa992d403 device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0xa999e3f1 gov_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xa9a92c94 dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0xa9abd1e1 rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xa9aef2e1 gfn_to_hva_memslot -EXPORT_SYMBOL_GPL vmlinux 0xa9b50248 rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xa9b9e6b8 invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9ee2d18 spi_unregister_master -EXPORT_SYMBOL_GPL vmlinux 0xaa0ceb2e xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0xaa17a2e2 rh_alloc_align -EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0xaa2ad0f4 tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xaa41af46 devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xaa4ddddd dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0xaa51132f usb_phy_generic_register -EXPORT_SYMBOL_GPL vmlinux 0xaa5e86cb of_cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xaa662f22 ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xaa75503d usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xaa7752e3 crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0xaaa307c1 __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaad6542d mddev_init -EXPORT_SYMBOL_GPL vmlinux 0xaaf81c2d crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0xaafd3330 devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0xaafe8ad1 pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0xab2f34f3 regmap_write_bits -EXPORT_SYMBOL_GPL vmlinux 0xab3f177b pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0xab454a16 generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0xab58747e devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xab59d373 kvmppc_free_lpid -EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del -EXPORT_SYMBOL_GPL vmlinux 0xab694d7d rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request -EXPORT_SYMBOL_GPL vmlinux 0xab945a16 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0xaba12c13 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0xaba3ec2e usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0xabaf3d7d da903x_update -EXPORT_SYMBOL_GPL vmlinux 0xabb29179 pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xabb51f3a kallsyms_on_each_symbol -EXPORT_SYMBOL_GPL vmlinux 0xabbadeed dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabe258c4 vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xac01f8d2 of_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0xac0430fa extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0xac2c85b7 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0xac598a83 ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0xac621fb5 regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0xac66b6fb device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xac8bd56f __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xaca00de1 set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list -EXPORT_SYMBOL_GPL vmlinux 0xad070fec mmu_notifier_unregister_no_release -EXPORT_SYMBOL_GPL vmlinux 0xad1fcf1f devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0xad52fa11 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0xad6649ae sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0xad6a018a n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0xad73b1b0 of_gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0xad7f2206 mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0xad84cbc0 rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xadb2ba40 cpu_remove_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0xadb61090 init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0xadcbeb68 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0xae045f2b sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0xae1593a8 fsl_spi_cpm_reinit_txrx -EXPORT_SYMBOL_GPL vmlinux 0xae4b85cf usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0xae51b6dc posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0xae625ddd hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae81922b of_overlay_destroy_all -EXPORT_SYMBOL_GPL vmlinux 0xae869c76 usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0xaf138edd __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0xaf2832d7 request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0xaf357cc5 transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0xaf57abfb usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0xaf93ae02 __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xaf96eee5 fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0xaf983160 ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0xafa46687 ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0xafcd60d7 transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0xaff9d29e tps65217_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xaff9d649 devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0xb026602c extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xb04e145d attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb058747a ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb0913148 btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0xb097f5d7 vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0xb09c2a43 rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0bd7d28 crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0xb0c6c292 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0xb0c8ebf0 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0xb0e108fb gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0xb0f8e67f stmpe_set_altfunc -EXPORT_SYMBOL_GPL vmlinux 0xb12ff25a skcipher_geniv_exit -EXPORT_SYMBOL_GPL vmlinux 0xb13a5d4e ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read -EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb1802957 ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched -EXPORT_SYMBOL_GPL vmlinux 0xb1ad663e dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0xb1b81646 ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1bfe761 pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain -EXPORT_SYMBOL_GPL vmlinux 0xb1c69858 msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0xb1d11721 call_filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1fb6aa4 regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xb2003bb9 subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xb205e931 relay_reset -EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb2256567 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xb24b61c1 securityfs_create_dentry -EXPORT_SYMBOL_GPL vmlinux 0xb267edbc regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0xb2750f00 rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0xb2754fab attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0xb279948f rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0xb292e258 device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb29fe80e dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0xb2be8d02 kern_mount_data -EXPORT_SYMBOL_GPL vmlinux 0xb2c1554b of_get_nand_ecc_mode -EXPORT_SYMBOL_GPL vmlinux 0xb2c7f3c6 ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0xb2ed72e1 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0xb317d4eb of_clk_get_parent_count -EXPORT_SYMBOL_GPL vmlinux 0xb387d49a pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0xb3eda6be list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0xb40d8d8f __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xb418dcd3 scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xb426ef89 i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0xb4330518 kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0xb445e7b6 tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0xb488588e tb_to_ns -EXPORT_SYMBOL_GPL vmlinux 0xb4b04650 regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4cbcf2e do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xb4d567ec component_add -EXPORT_SYMBOL_GPL vmlinux 0xb4decbd2 usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xb4e70ebf usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb4f1fb33 spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0xb50dbefc usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xb5439a8c __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xb54d40db cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xb54e5e9a component_master_add -EXPORT_SYMBOL_GPL vmlinux 0xb562dece inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0xb56bf195 irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xb56e9ba9 regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited -EXPORT_SYMBOL_GPL vmlinux 0xb5954bf6 simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xb5a0abcd ahash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table -EXPORT_SYMBOL_GPL vmlinux 0xb5aa10af atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb5c8edf4 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0xb5e797d9 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0xb5e896fb tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0xb5f0f370 smpboot_register_percpu_thread_cpumask -EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb5f8ca0e ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb5fe12da rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0xb60b5707 of_i8042_aux_irq -EXPORT_SYMBOL_GPL vmlinux 0xb60be09f nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0xb620c892 add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb639bc86 __blkdev_driver_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xb639fcd8 thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0xb654538a regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0xb65f92e6 dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0xb6874b26 blkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xb68e5ed2 phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb691037f trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xb6b0248e tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xb6cafd7f crypto_init_spawn2 -EXPORT_SYMBOL_GPL vmlinux 0xb6cc067a ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xb6d30c39 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0xb6e33489 serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb6f5260f dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0xb7088e66 agp_remove_bridge -EXPORT_SYMBOL_GPL vmlinux 0xb711d130 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xb7137e05 da903x_read -EXPORT_SYMBOL_GPL vmlinux 0xb718c640 inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0xb7248ead component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase -EXPORT_SYMBOL_GPL vmlinux 0xb73f3985 gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xb767fa71 __ablkcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0xb76ddfa5 usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0xb7838e37 max_gen_clk_probe -EXPORT_SYMBOL_GPL vmlinux 0xb786e77d percpu_ida_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb78bab97 ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0xb79ac1fb usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0xb79cb874 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0xb79fb656 register_jprobe -EXPORT_SYMBOL_GPL vmlinux 0xb7b9f6d2 wm8997_patch -EXPORT_SYMBOL_GPL vmlinux 0xb7bc7f4a ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0xb7c2f5a2 pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0xb7dbc7af rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xb7e174ba wait_on_page_bit_killable_timeout -EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0xb802466a xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0xb8073188 remove_irq -EXPORT_SYMBOL_GPL vmlinux 0xb809b9ee md_ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xb80f02e5 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0xb8138e3f blk_set_queue_dying -EXPORT_SYMBOL_GPL vmlinux 0xb84b5f0d cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0xb883206b hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb88818e0 perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb8bd9e00 rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0xb8c8ee40 pcibios_free_controller -EXPORT_SYMBOL_GPL vmlinux 0xb8cbf9cc locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8e494f2 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0xb92222d2 scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0xb92427b4 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0xb9343954 __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xb94bcc67 bdev_direct_access -EXPORT_SYMBOL_GPL vmlinux 0xb96b3bc6 of_get_display_timings -EXPORT_SYMBOL_GPL vmlinux 0xb971ffd3 ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb98a3db9 devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xb99465f5 extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0xb9b40afd of_get_videomode -EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb9ba7f9e regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9cd32bd regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9fbc4b5 of_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xba177bf5 device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0xba1dc1e1 ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0xba295e3e devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba2eeaf7 console_drivers -EXPORT_SYMBOL_GPL vmlinux 0xba3bd81b tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xba8929ea percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xba8f0836 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0xba940a2b dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0xbaa44af8 regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbacd2015 regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0xbaf4f01a phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0xbafb520b devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0xbafb8c86 clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb1d8f9c usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0xbb352d4c ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0xbb3ee416 ping_hash -EXPORT_SYMBOL_GPL vmlinux 0xbb574539 gpiochip_set_chained_irqchip -EXPORT_SYMBOL_GPL vmlinux 0xbb6e2de0 device_create -EXPORT_SYMBOL_GPL vmlinux 0xbb72e14f tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0xbb7cf9cb jump_label_rate_limit -EXPORT_SYMBOL_GPL vmlinux 0xbb884e42 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbb8febd5 cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0xbb904ac4 tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0xbbb497b9 of_pci_find_msi_chip_by_node -EXPORT_SYMBOL_GPL vmlinux 0xbbdf2c00 find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xbbeb5913 setup_irq -EXPORT_SYMBOL_GPL vmlinux 0xbbf19809 transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0xbbf44343 extcon_update_state -EXPORT_SYMBOL_GPL vmlinux 0xbc1bb6e6 pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xbc1c5f4c disk_part_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xbc4f138a crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc6ff3dc led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0xbc78ebc2 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xbc7baee4 trace_buffer_unlock_commit_regs -EXPORT_SYMBOL_GPL vmlinux 0xbc81d9cb rt_mutex_destroy -EXPORT_SYMBOL_GPL vmlinux 0xbc8ac72c seq_open_net -EXPORT_SYMBOL_GPL vmlinux 0xbc96780d inet6_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0xbcac5006 devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbcbfce89 blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd48a334 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0xbd92035c regmap_fields_write -EXPORT_SYMBOL_GPL vmlinux 0xbda2d332 nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0xbda4631c gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0xbdb53df7 dev_pm_opp_add -EXPORT_SYMBOL_GPL vmlinux 0xbdc16b9f crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0xbdc7ce6f kvmppc_hv_ops -EXPORT_SYMBOL_GPL vmlinux 0xbdcfbdb7 devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0xbde2768a unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0xbde8dc00 tasklet_hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0xbdfaff0b dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xbe216863 rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0xbe42ffcb clk_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xbe4cae70 __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0xbe532130 sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0xbe57e6c0 ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0xbe666a99 param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbeac8351 device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xbedb1ef9 pci_cleanup_aer_uncorrect_error_status -EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0xbeefef50 clk_gpio_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0xbef46ea2 clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0xbef58b4d pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf082457 pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xbf1bd150 bio_associate_current -EXPORT_SYMBOL_GPL vmlinux 0xbf1cc04b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0xbf275813 gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xbf455462 gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xbf4cb795 kvm_release_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0xbf63e6a9 __blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xbf6a28fc get_dcookie -EXPORT_SYMBOL_GPL vmlinux 0xbf6cd0db of_get_nand_ecc_step_size -EXPORT_SYMBOL_GPL vmlinux 0xbfac4bef scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xbfbc2398 inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfdb36db rhashtable_walk_start -EXPORT_SYMBOL_GPL vmlinux 0xbfdbfc1a dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0xbfe2a8ed crypto_unregister_pcomp -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 -EXPORT_SYMBOL_GPL vmlinux 0xc00aab2e devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0xc02bec3c usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xc037d561 register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xc041e865 pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0xc0544f07 crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0xc061367e mpic_msgr_get -EXPORT_SYMBOL_GPL vmlinux 0xc0630504 of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xc0641076 gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xc065a455 cpu_core_index_of_thread -EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc08a2de3 __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xc08c4514 of_property_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0xc0973e67 nf_unregister_afinfo -EXPORT_SYMBOL_GPL vmlinux 0xc09dfeb2 reservation_object_test_signaled_rcu -EXPORT_SYMBOL_GPL vmlinux 0xc09f98b2 powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0aaf74d napi_hash_del -EXPORT_SYMBOL_GPL vmlinux 0xc0c566b6 sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0xc0cf529d clk_register_fixed_rate_with_accuracy -EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0xc0e75cec visitor128 -EXPORT_SYMBOL_GPL vmlinux 0xc0e86ff4 pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0xc0edadf5 spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc128acb3 tc3589x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xc1359ce7 sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0xc143069b sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xc16a77f8 kvmppc_st -EXPORT_SYMBOL_GPL vmlinux 0xc1710a73 crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc18578ed process_srcu -EXPORT_SYMBOL_GPL vmlinux 0xc1895387 crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xc1a9cd5f swiotlb_tbl_sync_single -EXPORT_SYMBOL_GPL vmlinux 0xc1c03ea4 crypto_givcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xc1d3c27e irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0xc1d7fccf gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0xc1dd3787 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc1df506d anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0xc1e98ecd ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xc1e9a9e7 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc259c72e usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0xc27e4ce9 regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0xc29fa958 ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xc2a17527 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0xc2acdb9c driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc2bf8b00 sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0xc2c25342 usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xc2c4a393 crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0xc2d5d2ab rq_flush_dcache_pages -EXPORT_SYMBOL_GPL vmlinux 0xc2dcc051 kvm_put_kvm -EXPORT_SYMBOL_GPL vmlinux 0xc2e728dc ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xc2f9e5c4 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xc2ff7c47 cpufreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc30b600d gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0xc310506e sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0xc33c5c94 dev_pm_opp_get_freq -EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xc389011e pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0xc39f07c0 dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0xc3c7744f fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xc3dce974 blkcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0xc3e5e483 unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xc3f54cb0 get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc4436e0d sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc47f8759 class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xc48aa3cb user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc49a6fb3 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0xc49bcc75 sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xc4a1910e usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0xc4a20df5 of_display_timings_exist -EXPORT_SYMBOL_GPL vmlinux 0xc4ac440f debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0xc4b74310 kick_process -EXPORT_SYMBOL_GPL vmlinux 0xc4cba6e6 bpf_prog_realloc -EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0xc4de3873 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0xc4f07e87 crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0xc505da99 tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0xc507f06a of_resolve_phandles -EXPORT_SYMBOL_GPL vmlinux 0xc50d8c15 device_property_present -EXPORT_SYMBOL_GPL vmlinux 0xc52ca085 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0xc52f21ad verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc5774b96 ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0xc58a1687 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xc58b8866 devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0xc5a2c19f idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc5b65595 kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL vmlinux 0xc5be5715 kobject_move -EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0xc5e33296 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xc5f402f3 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0xc5fe127e mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xc606cd3c boot_cpuid -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc627431a alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xc650bdc5 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc663d003 simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0xc67edaaa pcibios_scan_phb -EXPORT_SYMBOL_GPL vmlinux 0xc682f45c pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0xc68aa252 __atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6b4b208 crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xc70e4b59 kvmppc_claim_lpid -EXPORT_SYMBOL_GPL vmlinux 0xc7192290 i2c_new_device -EXPORT_SYMBOL_GPL vmlinux 0xc71ad6be of_reserved_mem_device_init -EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xc7558376 subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0xc7680fcc of_modalias_node -EXPORT_SYMBOL_GPL vmlinux 0xc78b5a13 of_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xc7967b6b tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7b42be1 __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer -EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc824a922 con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0xc8298253 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0xc8373212 fb_sys_write -EXPORT_SYMBOL_GPL vmlinux 0xc83a24f7 sock_update_netprioidx -EXPORT_SYMBOL_GPL vmlinux 0xc83a3721 clk_register_gpio_gate -EXPORT_SYMBOL_GPL vmlinux 0xc83b703c virtqueue_get_used -EXPORT_SYMBOL_GPL vmlinux 0xc869eddc register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xc8757481 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0xc87b5ce4 scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xc87e2d7a sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0xc8c06bae kill_pid_info_as_cred -EXPORT_SYMBOL_GPL vmlinux 0xc8c15b64 of_get_display_timing -EXPORT_SYMBOL_GPL vmlinux 0xc8d43c22 do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xc9163e8a percpu_ida_for_each_free -EXPORT_SYMBOL_GPL vmlinux 0xc9189897 relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0xc92db597 pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0xc92e095a ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xc937cf50 blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc95c8755 eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level -EXPORT_SYMBOL_GPL vmlinux 0xc97e9bff register_jprobes -EXPORT_SYMBOL_GPL vmlinux 0xc98be57d ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0xc998c505 da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0xc9a7c1da serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0xc9c23b46 disk_part_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xc9cc3510 devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xc9cdadae crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0xc9dd54f6 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0xc9de0604 usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xc9df437f dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0xc9df75ab sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xca06f41f __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0xca6a2edc tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xca6ceb10 wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0xca6f6da6 pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca926f68 pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcac0a114 blk_mq_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0xcacc5468 gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xcad649bd usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xcb0c9beb gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module -EXPORT_SYMBOL_GPL vmlinux 0xcb525a55 xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0xcb5ee621 hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0xcb70aa42 rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0xcb862665 usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0xcb98b658 netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0xcbb52ad7 wm8350_device_exit -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbe90424 disk_part_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xcbecb3c5 devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0xcc0774e0 fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0xcc09eec1 pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0xcc0f1009 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcc1595cc i2c_new_dummy -EXPORT_SYMBOL_GPL vmlinux 0xcc1b373f __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcc2ba30d list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0xcc44961f kvmppc_alloc_lpid -EXPORT_SYMBOL_GPL vmlinux 0xcc5d93b4 crypto_create_tfm -EXPORT_SYMBOL_GPL vmlinux 0xcc6139b8 sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0xcc75eb48 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule -EXPORT_SYMBOL_GPL vmlinux 0xcc964977 mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd29844 __netpoll_free_async -EXPORT_SYMBOL_GPL vmlinux 0xccd2e471 pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0xcce74f9a virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0xccfb3851 crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0xcd04e2a5 ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0xcd1645c2 trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0xcd174e3e irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0xcd402bb5 nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0xcd43928e regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0xcd6492ab trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0xcd778ca9 mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0xcd85c167 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0xcd85c531 napi_by_id -EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq -EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs -EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcda3e845 of_pci_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdcecf7a pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0xcde3142d fib_select_path -EXPORT_SYMBOL_GPL vmlinux 0xcdf18841 blk_queue_bypass_start -EXPORT_SYMBOL_GPL vmlinux 0xcdf7ae3b rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xcdfe4d72 vcpu_load -EXPORT_SYMBOL_GPL vmlinux 0xce15a370 tpm_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0xce18b483 regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0xce35e8f4 gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0xce3d82bf spi_master_resume -EXPORT_SYMBOL_GPL vmlinux 0xce55e0a5 ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce9986c0 xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0xcead748e led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0xceb92534 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xcecf143f of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0xced1f0c9 platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcee28ba5 clk_register -EXPORT_SYMBOL_GPL vmlinux 0xcee6bacc ping_err -EXPORT_SYMBOL_GPL vmlinux 0xcefec392 xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0xcf170bc1 pwmchip_add_with_polarity -EXPORT_SYMBOL_GPL vmlinux 0xcf175674 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xcf276ff9 rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xcf4abae0 usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0xcf52e927 tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain -EXPORT_SYMBOL_GPL vmlinux 0xcf5a7914 led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0xcf67097d blk_queue_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0xcf81419f to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0xcf867ad2 __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0xcfd3221a clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0xcfe6d02c rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0xcffa33df ablkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0xd002424e devm_usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0xd011d61b virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0xd02a1d0f thermal_generate_netlink_event -EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xd0459226 pci_reset_bridge_secondary_bus -EXPORT_SYMBOL_GPL vmlinux 0xd05d873f irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd0662664 __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd06f9662 rhashtable_insert_rehash -EXPORT_SYMBOL_GPL vmlinux 0xd0806dbb virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0xd0ae0b8e clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0c58c50 debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0xd0ff7eec set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xd10e1a8b regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0xd11e308a usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xd130ec9c regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xd131fdcb crypto_attr_alg2 -EXPORT_SYMBOL_GPL vmlinux 0xd133efbb pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0xd13c865d tps65217_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xd1444eac spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xd154da6f ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xd1c40236 event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0xd1e6fe5d fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd2006bbb __get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0xd209779b pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd2219cc2 rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd239de06 tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0xd2405497 pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0xd2481ef9 early_find_capability -EXPORT_SYMBOL_GPL vmlinux 0xd2590baa debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd281d05f usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xd2aaeb4e kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0xd2df0207 ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript -EXPORT_SYMBOL_GPL vmlinux 0xd2faa3b7 scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0xd34c9d16 kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0xd35837c8 dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xd36df666 device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xd38a70a9 ahash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0xd39c2a91 pm_complete_with_resume_check -EXPORT_SYMBOL_GPL vmlinux 0xd39f2085 pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0xd3a4ecc7 devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0xd3aef41d regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xd3af33eb key_type_user -EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xd3bdfc55 mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xd3debde1 devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4037e2c kernfs_path -EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xd447cb0a led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd45291f0 cpufreq_frequency_table_target -EXPORT_SYMBOL_GPL vmlinux 0xd458c450 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0xd477fd35 thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0xd4b0ae8b device_remove_property_set -EXPORT_SYMBOL_GPL vmlinux 0xd4b11cb6 wm5110_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd4b30939 __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0xd4bd3b53 of_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4c3773b queue_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0xd4cfe830 rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0xd516d2e2 to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0xd5294f87 crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xd55b964a wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xd55e2ab8 tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0xd57ff020 phy_create -EXPORT_SYMBOL_GPL vmlinux 0xd59fe323 smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0xd5b85c98 net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xd5bac22c kvmppc_prepare_to_enter -EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0xd5de632e gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh -EXPORT_SYMBOL_GPL vmlinux 0xd623c09b watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xd635534d user_preparse -EXPORT_SYMBOL_GPL vmlinux 0xd63c6290 gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0xd669fe4a crypto_alloc_instance2 -EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd69851c6 devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xd6bf864e user_update -EXPORT_SYMBOL_GPL vmlinux 0xd6cb78b1 spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0xd6dd490e inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries -EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0xd7362ef1 ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0xd73d8deb extcon_get_cable_state -EXPORT_SYMBOL_GPL vmlinux 0xd7645836 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xd78f63c9 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0xd7a11ecb mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0xd7a58ff4 cpufreq_table_validate_and_show -EXPORT_SYMBOL_GPL vmlinux 0xd7b75cf7 x509_request_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0xd7de0422 thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd7e87ff6 ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0xd7f6ce20 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0xd7fbcefb serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0xd7fc3e98 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xd83521cb ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0xd86103e4 __class_create -EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd880fc63 ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0xd8e3bf03 mpc8xxx_spi_rx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0xd8fa9eaa vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xd90a03cc led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0xd928daeb cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd9386384 crypto_alloc_instance -EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0xd94aa457 display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd98caec9 input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0xd999219f ata_sff_data_xfer_noirq -EXPORT_SYMBOL_GPL vmlinux 0xd9c4f4bb usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0xd9c9124a fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0xd9d06092 devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xd9d83291 crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xda0a4d22 mpic_msgr_enable -EXPORT_SYMBOL_GPL vmlinux 0xda417634 relay_open -EXPORT_SYMBOL_GPL vmlinux 0xda4bfb8e of_property_read_u32_index -EXPORT_SYMBOL_GPL vmlinux 0xda5e0f5e __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0xda897d08 usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xda8cb2e5 threads_core_mask -EXPORT_SYMBOL_GPL vmlinux 0xdae14f78 rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0xdae715e0 videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xdae7aba9 kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0xdaf2bb89 regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xdaf34a0b device_find_child -EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdb045de0 balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0xdb088cb1 pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xdb0c12e7 kvm_init -EXPORT_SYMBOL_GPL vmlinux 0xdb0d0a4b uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdb244f03 pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0xdb32e52b __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0xdb422b90 usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0xdb443891 dev_pm_opp_get_opp_count -EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xdb550c7f __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xdb6c39d5 blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0xdb853350 dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0xdb89f50e sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb91ebc3 sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0xdb9ceb40 vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0xdba198d4 usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0xdbba9b8b regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xdbc8085b ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0xdbdfe20f __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0xdbebeb9b component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0xdbf66fd7 sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdbfa3f27 rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0xdc07ce92 kvm_io_bus_write -EXPORT_SYMBOL_GPL vmlinux 0xdc11de09 power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0xdc19f1a9 bio_associate_blkcg -EXPORT_SYMBOL_GPL vmlinux 0xdc1c379d __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0xdc22a424 pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable -EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdcaf9b5e netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0xdcc1325a pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0xdcc9d439 device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xdcce0a1d input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0xdcd1915c ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdcdec6cf inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xdd0e9acb usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock -EXPORT_SYMBOL_GPL vmlinux 0xdd243c74 usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd56c812 ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xdd57a42c sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0xdd58b8b7 rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0xdd5c53d9 __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0xdd729424 usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0xdd808c19 irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0xdd8cab8d handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0xdd960140 fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0xddd62002 sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xddfdfe4b fsl8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0xde1dbf83 nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xde1fe851 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0xde29c532 ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0xde337588 find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0xde34246a led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xde556499 usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0xde6343d0 balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0xde7869cd crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0xde9463a6 freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xde9fd9a2 tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0xdeb582cc nf_queue_entry_release_refs -EXPORT_SYMBOL_GPL vmlinux 0xdeb61f84 usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0xdefaa822 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf1c74ab unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0xdf2cca38 rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xdf37be50 pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xdf40d536 splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0xdf8c1d80 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0xdfa5ae48 md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0xdfc170a5 usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xdfea630f usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name -EXPORT_SYMBOL_GPL vmlinux 0xe0151b68 dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0xe01b3960 ablkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xe01d4a13 sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0xe03100fa regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xe036b3e9 mpic_msgr_put -EXPORT_SYMBOL_GPL vmlinux 0xe037603c clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0xe06f98f3 regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xe07021da vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved -EXPORT_SYMBOL_GPL vmlinux 0xe091c0e9 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0xe0a2401c pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0xe0acc6a6 exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0b4e347 wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xe0c0bf0d rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0xe0eb214d perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0xe1083ae3 __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0xe1118601 ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0xe11cd49c usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0xe121cbb6 static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0xe12e33c8 handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0xe14a0e81 wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xe155330f scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0xe15da232 of_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0xe169792d irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe19eb1c4 percpu_ida_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe1b23ae4 tcp_death_row -EXPORT_SYMBOL_GPL vmlinux 0xe1b75c7a fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports -EXPORT_SYMBOL_GPL vmlinux 0xe1ca5031 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xe1ccdacd fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0xe1d8d7e0 wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0xe1deca9f irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0xe1e1daf5 rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xe2231b76 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0xe2369736 dev_pm_opp_get_suspend_opp -EXPORT_SYMBOL_GPL vmlinux 0xe23b6342 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xe24b8177 pcibios_claim_one_bus -EXPORT_SYMBOL_GPL vmlinux 0xe25777db device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength -EXPORT_SYMBOL_GPL vmlinux 0xe2ae0a1a dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0xe2b476f4 ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0xe2dd4eb2 regmap_fields_force_write -EXPORT_SYMBOL_GPL vmlinux 0xe2e8c1f3 percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xe317dbeb regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0xe34c41d0 unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xe37a8b16 regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0xe3952c99 ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0xe3a10b08 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0xe3ac5984 debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0xe3b2b892 regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0xe3cf13a2 mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0xe3cfcc87 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0xe3dcafdd of_irq_parse_and_map_pci -EXPORT_SYMBOL_GPL vmlinux 0xe3eb5945 max_gen_clk_ops -EXPORT_SYMBOL_GPL vmlinux 0xe3ed196f nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0xe405b354 pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0xe40fe093 aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xe4117d45 wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0xe419df48 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xe41a4a4b ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe4421a02 init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xe442375a irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0xe456c72a transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xe49125fb kvmppc_ld -EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4a0d7af __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xe4a26f4a cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0xe4aa89d4 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0xe4c031f8 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto -EXPORT_SYMBOL_GPL vmlinux 0xe4da4df2 ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0xe4f69d80 irq_map_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xe4fa1a9a dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0xe5002e6c virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0xe524d6a8 tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0xe548eaa6 platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xe552759b platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0xe5622595 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xe56cfdc8 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0xe56f019b inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0xe579ab3f gpiochip_add -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq -EXPORT_SYMBOL_GPL vmlinux 0xe596ace7 fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0xe5c0e47d trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0xe5e27448 fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0xe5e6fb87 __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xe610282e unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0xe630e558 unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0xe63810f4 event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe659d8b8 i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xe65a8480 of_dma_xlate_by_chan_id -EXPORT_SYMBOL_GPL vmlinux 0xe65f2a38 md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0xe66405ef clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0xe69edba1 rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module -EXPORT_SYMBOL_GPL vmlinux 0xe6d8ba6f usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen -EXPORT_SYMBOL_GPL vmlinux 0xe6e1ca0e irq_of_parse_and_map -EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xe7145917 usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0xe71ae3c7 devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0xe72b27c3 wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0xe755aacc __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe7722ffe __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0xe77e781e dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0xe78e905c scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0xe791ca8b regmap_write -EXPORT_SYMBOL_GPL vmlinux 0xe7964247 arizona_of_get_named_gpio -EXPORT_SYMBOL_GPL vmlinux 0xe7b03f11 devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe7c02b87 rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xe7c9780a usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xe7f18b3c threads_per_subcore -EXPORT_SYMBOL_GPL vmlinux 0xe7f5d625 regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr -EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe81d0604 debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0xe8305e07 of_get_nand_on_flash_bbt -EXPORT_SYMBOL_GPL vmlinux 0xe834f406 blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0xe842b40d pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe85c55e7 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe864fe94 platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0xe878f8a9 usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xe8a66aa4 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0xe8ba0751 kvmppc_kvm_pv -EXPORT_SYMBOL_GPL vmlinux 0xe8cd170d anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0xe91d2c7a usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0xe929975a input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe954ab5c pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0xe95a02bb get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0xe9634f14 mddev_congested -EXPORT_SYMBOL_GPL vmlinux 0xe9723879 rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xe97d7af9 usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0xe996cfbe usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0xe99b5707 netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0xe99ceb13 iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9d49f38 __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe9e7b406 dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0xe9ec9c66 ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0xe9f10440 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0xe9f8dd5e pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xe9fa9517 bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea38ff49 dev_pm_opp_of_cpumask_add_table -EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0xea4ef581 regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xea501c8c spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0xea562954 dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0xea8997ee bus_register -EXPORT_SYMBOL_GPL vmlinux 0xea8ec579 driver_attach -EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xeaa654ea wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0xeaea27fe __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xeaff5f4b regmap_fields_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xeb1fec1f platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xeb34f953 raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xeb4762df crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0xeb6bb8d3 kvm_get_dirty_log -EXPORT_SYMBOL_GPL vmlinux 0xeb8ae736 klist_init -EXPORT_SYMBOL_GPL vmlinux 0xeb915da0 netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0xeb997a50 phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xeba5d018 rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xeba8d390 power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0xebabda34 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xebb3592b snmp_get_cpu_field64 -EXPORT_SYMBOL_GPL vmlinux 0xebd33c15 of_overlay_create -EXPORT_SYMBOL_GPL vmlinux 0xebd6d767 irq_create_strict_mappings -EXPORT_SYMBOL_GPL vmlinux 0xebdb31d4 analyse_instr -EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xebfd701c adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare -EXPORT_SYMBOL_GPL vmlinux 0xec22cc28 iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del -EXPORT_SYMBOL_GPL vmlinux 0xec271476 kvm_get_kvm -EXPORT_SYMBOL_GPL vmlinux 0xec9ded90 fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0xed06c5cb pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xed0f960a bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0xed2739f8 crypto_init_shash_spawn -EXPORT_SYMBOL_GPL vmlinux 0xed341652 kvm_flush_remote_tlbs -EXPORT_SYMBOL_GPL vmlinux 0xed3a7264 fuse_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0xed5c868b devm_clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0xed6ab04c tc3589x_block_write -EXPORT_SYMBOL_GPL vmlinux 0xed75a567 regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0xed7e90f2 pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0xeda84c3c crypto_blkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xedcdab73 sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0xede73165 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0xedf259d0 of_platform_default_populate -EXPORT_SYMBOL_GPL vmlinux 0xedfceae8 blk_mq_free_hctx_request -EXPORT_SYMBOL_GPL vmlinux 0xee012cbb fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0xee26fb2e cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0xee3352ef ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0xee5fe638 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0xee6285e9 usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible -EXPORT_SYMBOL_GPL vmlinux 0xeec06ce9 pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0xeec0d36c nvdimm_blk_region_create -EXPORT_SYMBOL_GPL vmlinux 0xeec44866 shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xeeef2c94 extcon_unregister_interest -EXPORT_SYMBOL_GPL vmlinux 0xef1e818f user_read -EXPORT_SYMBOL_GPL vmlinux 0xef212a89 debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0xef3566b5 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xef409b74 kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0xef437436 xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef60309a irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefa5ee9e serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0xefc257f4 powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0xefc93289 devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xefd349ce devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xefe3d540 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xefe6a220 of_pci_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0xeff537c3 dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xeff75a2b wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xf0069c4d rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0xf02b61f4 blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xf07adb24 bdev_write_page -EXPORT_SYMBOL_GPL vmlinux 0xf087d18d spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0xf09cd1e1 cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0xf0aadde9 dev_pm_opp_remove -EXPORT_SYMBOL_GPL vmlinux 0xf0b6a95a pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xf0e2ab73 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0xf0f4aab3 gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0xf11e52b6 crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xf158f170 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf186ee62 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0xf1926c41 wm8400_block_read -EXPORT_SYMBOL_GPL vmlinux 0xf1978871 evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0xf1a62b6f of_i8042_kbd_irq -EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key -EXPORT_SYMBOL_GPL vmlinux 0xf1b2f2a1 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on -EXPORT_SYMBOL_GPL vmlinux 0xf1b98881 stmpe_block_write -EXPORT_SYMBOL_GPL vmlinux 0xf1e5831d dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0xf1f57148 device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0xf1f6cd6b tc3589x_block_read -EXPORT_SYMBOL_GPL vmlinux 0xf2196393 tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf23c298b wbc_account_io -EXPORT_SYMBOL_GPL vmlinux 0xf2454e96 of_css -EXPORT_SYMBOL_GPL vmlinux 0xf2513e48 crypto_lookup_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0xf27f805c udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xf2ad592a sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0xf2d3f9ff cpu_add_dev_attr_group -EXPORT_SYMBOL_GPL vmlinux 0xf2dbf889 rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0xf2dc2893 usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xf2e575a5 fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0xf3012f6c rh_free -EXPORT_SYMBOL_GPL vmlinux 0xf306c260 usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support -EXPORT_SYMBOL_GPL vmlinux 0xf30b2578 usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xf30fda27 lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf31911f6 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf345fbb8 dev_pm_opp_of_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0xf355d50a usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0xf3599b46 extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xf3765a33 dax_pfn_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf3937458 nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xf3a65c1a pci_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3bcc4db tcp_peer_is_proven -EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0xf3d0e948 led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf3d64995 virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0xf3dce33a debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xf3e3ee22 irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xf428a181 ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xf42b7721 ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask -EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh -EXPORT_SYMBOL_GPL vmlinux 0xf4b333d1 synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0xf4b3f12f xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0xf4d20340 posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0xf4da3546 kvmppc_init_lpid -EXPORT_SYMBOL_GPL vmlinux 0xf4e12ba2 usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0xf52949ad wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xf5414a8c irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf551d556 crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf5598a78 kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0xf55d80f5 skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0xf56bff08 cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xf574cd12 dma_buf_kunmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0xf57eb02f ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5bcf1b2 __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0xf5daeb64 dbs_check_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf5e7f053 rh_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf5f04abd rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xf608e0c2 devm_regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf60a3e56 crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0xf624f8d8 cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0xf63b3341 stmpe_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xf6404928 __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xf659551f platform_device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0xf65adcef regmap_read -EXPORT_SYMBOL_GPL vmlinux 0xf67139d2 regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0xf6740ac0 usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0xf6785a52 ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0xf67a0529 ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xf6829a00 dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0xf697578e of_get_regulator_init_data -EXPORT_SYMBOL_GPL vmlinux 0xf69bdf3e sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0xf6a391b8 __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xf6ad203b relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0xf6af9900 devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf6eb7abe nl_table -EXPORT_SYMBOL_GPL vmlinux 0xf6f82ad5 cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0xf6f8ec02 crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0xf71c687f pwm_disable -EXPORT_SYMBOL_GPL vmlinux 0xf71defa8 kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL vmlinux 0xf71e9fca crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf751b8f5 devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xf75b893e platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0xf75d72d0 vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0xf77cff44 percpu_up_read -EXPORT_SYMBOL_GPL vmlinux 0xf78a8e12 da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0xf790924a driver_find -EXPORT_SYMBOL_GPL vmlinux 0xf79c7ddc mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0xf7b287f4 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xf8bfa424 get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0xf8c3b7d3 ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xf8cff31d fsl_spi_cpm_bufs_complete -EXPORT_SYMBOL_GPL vmlinux 0xf8e561e4 pci_try_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xf8e571a6 devres_find -EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops -EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8f779f4 rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0xf91c26e1 sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0xf91eac65 gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0xf91eb880 dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0xf9277bda flush_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf95610a8 rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0xf9567406 fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xf9600731 sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0xf963abc6 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0xf9669594 dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0xf98f6641 xfrm_inner_extract_output -EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9ae9adf rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0xf9c2471f rt_mutex_timed_lock -EXPORT_SYMBOL_GPL vmlinux 0xf9c28142 usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xf9e55f58 blk_queue_dma_drain -EXPORT_SYMBOL_GPL vmlinux 0xf9ed13f4 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xf9fdf2c7 __sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start -EXPORT_SYMBOL_GPL vmlinux 0xfa26fdfb cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0xfa313983 md_new_event -EXPORT_SYMBOL_GPL vmlinux 0xfa47e8ca fat_scan -EXPORT_SYMBOL_GPL vmlinux 0xfa62829e ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0xfa63ffd9 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xfa964472 mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0xfaa0c192 vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0xfaa71d9e usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0xfaaa81b6 driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0xfab60503 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0xfac1b813 ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0xfad4ea45 blkdev_write_iter -EXPORT_SYMBOL_GPL vmlinux 0xfadc4f0a usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0xfae6f89d da903x_write -EXPORT_SYMBOL_GPL vmlinux 0xfafbdeb8 kvmppc_emulate_mmio -EXPORT_SYMBOL_GPL vmlinux 0xfb207ff9 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0xfb24868c __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xfb2b2510 of_get_pci_domain_nr -EXPORT_SYMBOL_GPL vmlinux 0xfb2bfcab da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb52b77d __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0xfb5ce5bf device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xfb5d5fbe usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xfb64e47d pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xfb6cdd12 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb83db03 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xfb9023aa udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0xfb9258fc preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfba1a016 ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbd088b7 of_usb_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xfbd6cba5 device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xfbec442f sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0xfbfaaf21 i2c_new_probed_device -EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc3e811b blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0xfc4eedf3 i2c_unlock_adapter -EXPORT_SYMBOL_GPL vmlinux 0xfc5c0069 yield_to -EXPORT_SYMBOL_GPL vmlinux 0xfcac5a51 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfcb305ea of_clk_src_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0xfcb89ce1 powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0xfcba196c mpc8xxx_spi_tx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0xfcc73ad8 skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0xfcc8beb7 __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0xfcd9da5b of_pci_get_devfn -EXPORT_SYMBOL_GPL vmlinux 0xfcd9f25c regmap_update_bits_async -EXPORT_SYMBOL_GPL vmlinux 0xfcfe3cc3 debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0xfd237d87 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0xfd445138 usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xfd45bbb8 rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfd50328d tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack -EXPORT_SYMBOL_GPL vmlinux 0xfd835003 fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xfd8d5037 tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xfdb4317d clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0xfdcbdf51 class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfdd9e083 gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0xfde514d0 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0xfde591e2 skcipher_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0xfdea92bb arizona_clk32k_enable -EXPORT_SYMBOL_GPL vmlinux 0xfe339027 pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0xfe3c2e81 cpufreq_governor_dbs -EXPORT_SYMBOL_GPL vmlinux 0xfe65cc94 i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xfe7787d8 crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0xfe80c6b9 wm5110_patch -EXPORT_SYMBOL_GPL vmlinux 0xfe904234 ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfead904c ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0xfeb22dab trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfed1aae5 usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0xfef71aa4 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff489d2f sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0xff4aa9bb blkcipher_aead_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0xff54efdf ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0xff5ece86 pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xff6c61e2 ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0xff74f678 max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xff8862d7 rh_get_stats -EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0xffd70518 blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0xffe2ebcc handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0xffe4d1c2 cpuidle_unregister_driver reverted: --- linux-raspi2-4.4.0/debian.master/abi/4.4.0-89.112/powerpc/powerpc-e500mc.compiler +++ linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-89.112/powerpc/powerpc-e500mc.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 reverted: --- linux-raspi2-4.4.0/debian.master/abi/4.4.0-89.112/powerpc/powerpc-e500mc.modules +++ linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-89.112/powerpc/powerpc-e500mc.modules @@ -1,4332 +0,0 @@ -3c574_cs -3c589_cs -3c59x -3w-9xxx -3w-sas -3w-xxxx -6lowpan -6pack -8021q -8139cp -8139too -8250_dw -8250_mid -8255 -8255_pci -8390 -842 -842_compress -842_decompress -88pm800 -88pm805 -88pm80x -88pm80x_onkey -88pm8607 -88pm860x-ts -88pm860x_battery -88pm860x_bl -88pm860x_charger -88pm860x_onkey -9p -9pnet -9pnet_rdma -9pnet_virtio -BusLogic -DAC960 -a100u2w -a3d -a8293 -aacraid -aat2870-regulator -aat2870_bl -ab3100 -ab3100-otp -ac97_bus -acard-ahci -acecad -acenic -act200l-sir -act8865-regulator -act_bpf -act_connmark -act_csum -act_gact -act_ipt -act_mirred -act_nat -act_pedit -act_police -act_simple -act_skbedit -act_vlan -actisys-sir -ad2s1200 -ad2s1210 -ad2s90 -ad5064 -ad525x_dpot -ad525x_dpot-i2c -ad525x_dpot-spi -ad5360 -ad5380 -ad5398 -ad5421 -ad5446 -ad5449 -ad5504 -ad5592r -ad5592r-base -ad5593r -ad5624r_spi -ad5686 -ad5755 -ad5764 -ad5791 -ad5933 -ad714x -ad714x-i2c -ad714x-spi -ad7150 -ad7152 -ad7192 -ad7266 -ad7280a -ad7291 -ad7298 -ad7303 -ad7314 -ad7414 -ad7418 -ad7476 -ad7606 -ad7746 -ad7780 -ad7791 -ad7793 -ad7816 -ad7877 -ad7879 -ad7879-i2c -ad7879-spi -ad7887 -ad7923 -ad799x -ad8366 -ad9523 -ad9832 -ad9834 -ad_sigma_delta -adc128d818 -adcxx -addi_apci_1032 -addi_apci_1500 -addi_apci_1516 -addi_apci_1564 -addi_apci_16xx -addi_apci_2032 -addi_apci_2200 -addi_apci_3120 -addi_apci_3501 -addi_apci_3xxx -addi_watchdog -ade7753 -ade7754 -ade7758 -ade7759 -ade7854 -ade7854-i2c -ade7854-spi -adf4350 -adfs -adi -adis16060 -adis16080 -adis16130 -adis16136 -adis16201 -adis16203 -adis16204 -adis16209 -adis16220 -adis16240 -adis16260 -adis16400 -adis16480 -adis_lib -adjd_s311 -adl_pci6208 -adl_pci7x3x -adl_pci8164 -adl_pci9111 -adl_pci9118 -adm1021 -adm1025 -adm1026 -adm1029 -adm1031 -adm1275 -adm8211 -adm9240 -adp5520-keys -adp5520_bl -adp5588-keys -adp5589-keys -adp8860_bl -adp8870_bl -adq12b -ads1015 -ads7828 -ads7846 -ads7871 -adt7310 -adt7316 -adt7316-i2c -adt7316-spi -adt7410 -adt7411 -adt7462 -adt7470 -adt7475 -adt7x10 -adummy -adutux -adv7170 -adv7175 -adv7511 -adv7604 -adv7842 -adv_pci1710 -adv_pci1723 -adv_pci1724 -adv_pci_dio -advansys -adxl34x -adxl34x-i2c -adxl34x-spi -adxrs450 -af-rxrpc -af9013 -af9033 -af_alg -af_key -af_packet_diag -affs -ah4 -ah6 -aha152x_cs -ahci -ahci_ceva -ahci_platform -ahci_qoriq -aic79xx -aic7xxx -aic94xx -aim_cdev -aim_network -aim_sound -aim_v4l2 -aio_aio12_8 -aio_iiro_16 -aiptek -aircable -airo -airo_cs -airspy -ak8975 -al3320a -algif_aead -algif_hash -algif_rng -algif_skcipher -ali-ircc -alim7101_wdt -altera-ci -altera-stapl -altera_jtaguart -altera_ps2 -altera_tse -altera_uart -alx -am53c974 -ambassador -amc6821 -amd -amd5536udc -amd8111e -amdgpu -amplc_dio200 -amplc_dio200_common -amplc_dio200_pci -amplc_pc236 -amplc_pc236_common -amplc_pc263 -amplc_pci224 -amplc_pci230 -amplc_pci236 -amplc_pci263 -ams369fg06 -analog -anatop-regulator -ansi_cprng -anubis -aoe -apbps2 -apds9300 -apds9802als -apds990x -apds9960 -appledisplay -appletalk -appletouch -applicom -aquantia -ar1021_i2c -ar5523 -ar7part -arc-rawmode -arc-rimi -arc4 -arc_emac -arc_ps2 -arc_uart -arcmsr -arcnet -arizona-haptics -arizona-i2c -arizona-ldo1 -arizona-micsupp -arizona-spi -ark3116 -arkfb -arp_tables -arpt_mangle -arptable_filter -as102_fe -as3711-regulator -as3711_bl -as3722-regulator -as3935 -as5011 -asc7621 -ascot2e -asix -ast -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at24 -at25 -at76c50x-usb -at803x -at86rf230 -ata_generic -ata_piix -atbm8830 -aten -ath -ath10k_core -ath10k_pci -ath3k -ath5k -ath6kl_core -ath6kl_sdio -ath6kl_usb -ath9k -ath9k_common -ath9k_htc -ath9k_hw -ati_remote -ati_remote2 -atl1 -atl1c -atl1e -atl2 -atm -atmel -atmel-flexcom -atmel-hlcdc -atmel_cs -atmel_mxt_ts -atmel_pci -atmtcp -atp870u -atusb -atxp1 -atyfb -au0828 -au8522_common -au8522_decoder -au8522_dig -aufs -auo-pixcir-ts -auo_k1900fb -auo_k1901fb -auo_k190x -auth_rpcgss -authenc -authencesn -autofs4 -avm_cs -avma1_cs -avmfritz -ax25 -ax88179_178a -axnet_cs -axp20x-pek -axp20x-regulator -axp20x_usb_power -axp288_adc -axp288_charger -axp288_fuel_gauge -b1 -b1dma -b1pci -b1pcmcia -b2c2-flexcop -b2c2-flexcop-pci -b2c2-flexcop-usb -b43 -b43legacy -b44 -bas_gigaset -batman-adv -baycom_epp -baycom_par -baycom_ser_fdx -baycom_ser_hdx -bcache -bch -bcm-keypad -bcm-phy-lib -bcm203x -bcm3510 -bcm590xx -bcm590xx-regulator -bcm5974 -bcm7038_wdt -bcm7xxx -bcm87xx -bcma -bcma-hcd -bcmsysport -bd6107 -bdc -bdc_pci -be2iscsi -be2net -befs -belkin_sa -bfa -bfs -bfusb -bh1750 -bh1770glc -bh1780gli -binfmt_misc -block2mtd -blocklayoutdriver -blowfish_common -blowfish_generic -bluecard_cs -bluetooth -bluetooth_6lowpan -bma150 -bma180 -bmc150-accel-core -bmc150-accel-i2c -bmc150-accel-spi -bmc150_magn -bmg160_core -bmg160_i2c -bmg160_spi -bmp085 -bmp085-i2c -bmp085-spi -bmp280 -bna -bnep -bnx2 -bnx2fc -bnx2i -bnx2x -bnxt_en -bonding -bpa10x -bpck -bpck6 -bpqether -bq2415x_charger -bq24190_charger -bq24257_charger -bq24735-charger -bq25890_charger -bq27xxx_battery -br2684 -br_netfilter -brcmfmac -brcmsmac -brcmutil -brd -bridge -broadcom -broadsheetfb -bsd_comp -bt3c_cs -bt819 -bt856 -bt866 -bt878 -btbcm -btcoexist -btintel -btmrvl -btmrvl_sdio -btqca -btrfs -btrtl -btsdio -bttv -btuart_cs -btusb -btwilink -bu21013_ts -budget -budget-av -budget-ci -budget-core -budget-patch -c4 -c67x00 -c6xdigio -c_can -c_can_pci -c_can_platform -caam -caam_jr -caamalg -caamhash -caamrng -cachefiles -cadence_wdt -cafe_ccic -cafe_nand -caif -caif_hsi -caif_serial -caif_socket -caif_usb -caif_virtio -camellia_generic -can -can-bcm -can-dev -can-gw -can-raw -cap11xx -capi -capidrv -capmode -carl9170 -carminefb -cassini -cast5_generic -cast6_generic -cast_common -catc -cb710 -cb710-mmc -cb_das16_cs -cb_pcidas -cb_pcidas64 -cb_pcidda -cb_pcimdas -cb_pcimdda -cc10001_adc -cc2520 -cc770 -cc770_isa -cc770_platform -cciss -ccm -cdc-acm -cdc-phonet -cdc-wdm -cdc_eem -cdc_ether -cdc_mbim -cdc_ncm -cdc_subset -ceph -cfg80211 -cfi_cmdset_0001 -cfi_cmdset_0002 -cfi_cmdset_0020 -cfi_probe -cfi_util -cfspi_slave -ch -ch341 -ch7006 -ch9200 -chacha20_generic -chacha20poly1305 -chaoskey -chipone_icn8318 -chipreg -chnl_net -ci_hdrc -ci_hdrc_imx -ci_hdrc_msm -ci_hdrc_pci -ci_hdrc_usb2 -ci_hdrc_zevio -cicada -cifs -cirrus -cirrusfb -clip -clk-cdce706 -clk-cdce925 -clk-max77686 -clk-max77802 -clk-palmas -clk-pwm -clk-rk808 -clk-s2mps11 -clk-si514 -clk-si5351 -clk-si570 -clk-twl6040 -clk-wm831x -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_rsvp -cls_rsvp6 -cls_tcindex -cls_u32 -cm109 -cm32181 -cm3232 -cm3323 -cm36651 -cm4000_cs -cm4040_cs -cma3000_d0x -cma3000_d0x_i2c -cmac -cmdlinepart -cmtp -cnic -cobalt -cobra -coda -colibri-vf50-ts -com20020 -com20020-pci -com20020_cs -com90io -com90xx -comedi -comedi_8254 -comedi_8255 -comedi_bond -comedi_isadma -comedi_parport -comedi_pci -comedi_pcmcia -comedi_test -comedi_usb -comm -configfs -contec_pci_dio -cordic -core -cp210x -cpia2 -cpm_uart -cpsw_ale -cpu-notifier-error-inject -cramfs -crc-ccitt -crc-itu-t -crc32 -crc7 -crc8 -cryptd -crypto_user -cryptoloop -cs5345 -cs53l32a -csiostor -ctr -cts -cuse -cw1200_core -cw1200_wlan_sdio -cw1200_wlan_spi -cx18 -cx18-alsa -cx22700 -cx22702 -cx231xx -cx231xx-alsa -cx231xx-dvb -cx2341x -cx23885 -cx24110 -cx24113 -cx24116 -cx24117 -cx24120 -cx24123 -cx25821 -cx25821-alsa -cx25840 -cx82310_eth -cx88-alsa -cx88-blackbird -cx88-dvb -cx88-vp3054-i2c -cx8800 -cx8802 -cx88xx -cxacru -cxd2099 -cxd2820r -cxd2841er -cxgb -cxgb3 -cxgb3i -cxgb4 -cxgb4i -cxgb4vf -cy8ctmg110_ts -cyapatp -cyber2000fb -cyberjack -cyclades -cypress_cy7c63 -cypress_firmware -cypress_m8 -cytherm -cyttsp4_core -cyttsp4_i2c -cyttsp4_spi -cyttsp_core -cyttsp_i2c -cyttsp_i2c_common -cyttsp_spi -da9030_battery -da9034-ts -da903x -da903x_bl -da9052-battery -da9052-hwmon -da9052-regulator -da9052_bl -da9052_onkey -da9052_tsi -da9052_wdt -da9055-hwmon -da9055-regulator -da9055_onkey -da9055_wdt -da9062-core -da9062-regulator -da9062_wdt -da9063-regulator -da9063_onkey -da9063_wdt -da9150-charger -da9150-core -da9150-fg -da9150-gpadc -da9210-regulator -da9211-regulator -dac02 -daqboard2000 -das08 -das08_cs -das08_isa -das08_pci -das16 -das16m1 -das1800 -das6402 -das800 -davicom -db9 -dc395x -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -dccp_probe -ddbridge -de2104x -de4x5 -decnet -deflate -defxx -denali -denali_dt -denali_pci -des_generic -designware_i2s -dgap -dgnc -dht11 -dib0070 -dib0090 -dib3000mb -dib3000mc -dib7000m -dib7000p -dib8000 -dibx000_common -digi_acceleport -digicolor-usart -diskonchip -diva_idi -diva_mnt -divacapi -divadidd -divas -dl2k -dlci -dlm -dln2 -dm-bio-prison -dm-bufio -dm-cache -dm-cache-cleaner -dm-cache-mq -dm-cache-smq -dm-crypt -dm-delay -dm-era -dm-flakey -dm-log -dm-log-userspace -dm-log-writes -dm-mirror -dm-multipath -dm-persistent-data -dm-queue-length -dm-raid -dm-region-hash -dm-round-robin -dm-service-time -dm-snapshot -dm-switch -dm-thin-pool -dm-verity -dm-zero -dm1105 -dm9601 -dmfe -dmm32at -dmx3191d -dn_rtmsg -dnet -docg3 -docg4 -donauboe -dp83848 -dp83867 -dpt_i2o -drbd -drbg -drm -drm_kms_helper -drop_monitor -drv260x -drv2665 -drv2667 -drx39xyj -drxd -drxk -ds1621 -ds1682 -ds1wm -ds2482 -ds2490 -ds2760_battery -ds2780_battery -ds2781_battery -ds2782_battery -ds3000 -ds620 -dsbr100 -dscc4 -dss1_divert -dst -dst_ca -dstr -dt2801 -dt2811 -dt2814 -dt2815 -dt2817 -dt282x -dt3000 -dt3155 -dt9812 -dtl1_cs -dummy -dummy-irq -dummy_stm -dvb-as102 -dvb-bt8xx -dvb-core -dvb-pll -dvb-ttpci -dvb-ttusb-budget -dvb-usb -dvb-usb-a800 -dvb-usb-af9005 -dvb-usb-af9005-remote -dvb-usb-af9015 -dvb-usb-af9035 -dvb-usb-anysee -dvb-usb-au6610 -dvb-usb-az6007 -dvb-usb-az6027 -dvb-usb-ce6230 -dvb-usb-cinergyT2 -dvb-usb-cxusb -dvb-usb-dib0700 -dvb-usb-dibusb-common -dvb-usb-dibusb-mb -dvb-usb-dibusb-mc -dvb-usb-digitv -dvb-usb-dtt200u -dvb-usb-dtv5100 -dvb-usb-dvbsky -dvb-usb-dw2102 -dvb-usb-ec168 -dvb-usb-friio -dvb-usb-gl861 -dvb-usb-gp8psk -dvb-usb-lmedm04 -dvb-usb-m920x -dvb-usb-mxl111sf -dvb-usb-nova-t-usb2 -dvb-usb-opera -dvb-usb-pctv452e -dvb-usb-rtl28xxu -dvb-usb-technisat-usb2 -dvb-usb-ttusb2 -dvb-usb-umt-010 -dvb-usb-vp702x -dvb-usb-vp7045 -dvb_usb_v2 -dw_dmac -dw_dmac_core -dw_dmac_pci -dw_wdt -dwc3 -dwc3-pci -dwc_eth_qos -dwmac-generic -dwmac-ipq806x -dwmac-lpc18xx -dwmac-meson -dwmac-rk -dwmac-socfpga -dwmac-sti -dwmac-sunxi -dyna_pci10xx -dynapro -e100 -e1000 -e1000e -e3x0-button -e4000 -earth-pt1 -earth-pt3 -eata -ebt_802_3 -ebt_among -ebt_arp -ebt_arpreply -ebt_dnat -ebt_ip -ebt_ip6 -ebt_limit -ebt_log -ebt_mark -ebt_mark_m -ebt_nflog -ebt_pkttype -ebt_redirect -ebt_snat -ebt_stp -ebt_vlan -ebtable_broute -ebtable_filter -ebtable_nat -ebtables -ec100 -echainiv -echo -edac_core -edt-ft5x06 -eeprom -eeprom_93cx6 -eeprom_93xx46 -eeti_ts -efs -egalax_ts -ehset -elan_i2c -elo -elsa_cs -em28xx -em28xx-alsa -em28xx-dvb -em28xx-rc -em28xx-v4l -em_canid -em_cmp -em_ipset -em_meta -em_nbyte -em_text -em_u32 -emac_arc -emac_rockchip -emc1403 -emc2103 -emc6w201 -emi26 -emi62 -empeg -ems_pci -ems_pcmcia -ems_usb -emu10k1-gp -enc28j60 -enclosure -encx24j600 -encx24j600-regmap -eni -enic -epat -epia -epic100 -eql -esas2r -esd_usb2 -esi-sir -esp4 -esp6 -esp_scsi -et1011c -et131x -ethoc -evbug -exofs -extcon-adc-jack -extcon-arizona -extcon-axp288 -extcon-gpio -extcon-max14577 -extcon-max77693 -extcon-max77843 -extcon-max8997 -extcon-palmas -extcon-rt8973a -extcon-sm5502 -extcon-usb-gpio -ezusb -f2fs -f75375s -f81232 -fakelb -fan53555 -farsync -faulty -fb_agm1264k-fl -fb_bd663474 -fb_ddc -fb_hx8340bn -fb_hx8347d -fb_hx8353d -fb_hx8357d -fb_ili9163 -fb_ili9320 -fb_ili9325 -fb_ili9340 -fb_ili9341 -fb_ili9481 -fb_ili9486 -fb_pcd8544 -fb_ra8875 -fb_s6d02a1 -fb_s6d1121 -fb_ssd1289 -fb_ssd1306 -fb_ssd1331 -fb_ssd1351 -fb_st7735r -fb_st7789v -fb_tinylcd -fb_tls8204 -fb_uc1611 -fb_uc1701 -fb_upd161704 -fb_watterott -fbtft -fbtft_device -fc0011 -fc0012 -fc0013 -fc2580 -fcoe -fcrypt -fdomain -fdomain_cs -fdp -fdp_i2c -fealnx -ff-memless -firedtv -firestream -firewire-core -firewire-net -firewire-ohci -firewire-sbp2 -firewire-serial -fit2 -fit3 -fixed -fl512 -flexcan -flexfb -floppy -fm10k -fm801-gp -fm_drv -fmc -fmc-chardev -fmc-fakedev -fmc-trivial -fmc-write-eeprom -fmvj18x_cs -forcedeth -fore_200e -fotg210-hcd -fotg210-udc -fou -fpga-mgr -freevxfs -friq -frpw -fs_enet -fsa9480 -fscache -fsl-corenet-cf -fsl-diu-fb -fsl-edma -fsl_elbc_nand -fsl_hypervisor -fsl_ifc_nand -fsl_lpuart -fsl_pq_mdio -fsl_qe_udc -fsl_upm -fsl_usb2_udc -fsldma -ft6236 -ftdi-elan -ftdi_sio -ftl -fujitsu_ts -g450_pll -g760a -g762 -g_acm_ms -g_audio -g_cdc -g_dbgp -g_ether -g_ffs -g_hid -g_mass_storage -g_midi -g_ncm -g_nokia -g_printer -g_serial -g_webcam -g_zero -gadgetfs -gamecon -gameport -garmin_gps -garp -gcm -gdmtty -gdmulte -gdmwm -gdth -gen_probe -generic -generic-adc-battery -generic_bl -genet -geneve -gennvm -gf128mul -gf2k -gfs2 -ghash-generic -gianfar_driver -gianfar_ptp -gigaset -girbil-sir -gl518sm -gl520sm -gl620a -gluebi -go7007 -go7007-loader -go7007-usb -goku_udc -goodix -gp2ap002a00f -gp2ap020a00f -gpio -gpio-74x164 -gpio-74xx-mmio -gpio-addr-flash -gpio-adnp -gpio-adp5520 -gpio-adp5588 -gpio-altera -gpio-amd8111 -gpio-arizona -gpio-beeper -gpio-charger -gpio-crystalcove -gpio-da9052 -gpio-da9055 -gpio-dln2 -gpio-dwapb -gpio-fan -gpio-generic -gpio-grgpio -gpio-ir-recv -gpio-janz-ttl -gpio-kempld -gpio-lp3943 -gpio-max7300 -gpio-max7301 -gpio-max730x -gpio-max732x -gpio-mc33880 -gpio-mcp23s08 -gpio-ml-ioh -gpio-pca953x -gpio-pcf857x -gpio-rdc321x -gpio-regulator -gpio-syscon -gpio-tps65912 -gpio-twl4030 -gpio-twl6040 -gpio-ucb1400 -gpio-viperboard -gpio-vx855 -gpio-wm831x -gpio-wm8350 -gpio-wm8994 -gpio_backlight -gpio_keys -gpio_keys_polled -gpio_mouse -gpio_tilt_polled -gpio_wdt -gr_udc -grace -grcan -gre -grip -grip_mp -gs_fpga -gs_usb -gsc_hpdi -gspca_benq -gspca_conex -gspca_cpia1 -gspca_dtcs033 -gspca_etoms -gspca_finepix -gspca_gl860 -gspca_jeilinj -gspca_jl2005bcd -gspca_kinect -gspca_konica -gspca_m5602 -gspca_main -gspca_mars -gspca_mr97310a -gspca_nw80x -gspca_ov519 -gspca_ov534 -gspca_ov534_9 -gspca_pac207 -gspca_pac7302 -gspca_pac7311 -gspca_se401 -gspca_sn9c2028 -gspca_sn9c20x -gspca_sonixb -gspca_sonixj -gspca_spca1528 -gspca_spca500 -gspca_spca501 -gspca_spca505 -gspca_spca506 -gspca_spca508 -gspca_spca561 -gspca_sq905 -gspca_sq905c -gspca_sq930x -gspca_stk014 -gspca_stk1135 -gspca_stv0680 -gspca_stv06xx -gspca_sunplus -gspca_t613 -gspca_topro -gspca_touptek -gspca_tv8532 -gspca_vc032x -gspca_vicam -gspca_xirlink_cit -gspca_zc3xx -gtco -guillemot -gunze -gxt4500 -hackrf -hamachi -hampshire -hanwang -hci -hci_uart -hci_vhci -hdc100x -hdlc -hdlc_cisco -hdlc_fr -hdlc_ppp -hdlc_raw -hdlc_raw_eth -hdlc_x25 -hdlcdrv -hdm_dim2 -hdm_i2c -hdm_usb -hdpvr -he -hexium_gemini -hexium_orion -hfc4s8s_l1 -hfc_usb -hfcmulti -hfcpci -hfcsusb -hfs -hfsplus -hi6421-pmic-core -hi6421-regulator -hi8435 -hid -hid-a4tech -hid-alps -hid-apple -hid-appleir -hid-aureal -hid-axff -hid-belkin -hid-betopff -hid-cherry -hid-chicony -hid-corsair -hid-cp2112 -hid-cypress -hid-dr -hid-elecom -hid-elo -hid-emsff -hid-ezkey -hid-gaff -hid-gembird -hid-generic -hid-gfrm -hid-gt683r -hid-gyration -hid-holtek-kbd -hid-holtek-mouse -hid-holtekff -hid-icade -hid-kensington -hid-keytouch -hid-kye -hid-lcpower -hid-lenovo -hid-logitech -hid-logitech-dj -hid-logitech-hidpp -hid-magicmouse -hid-microsoft -hid-monterey -hid-multitouch -hid-ntrig -hid-ortek -hid-penmount -hid-petalynx -hid-picolcd -hid-pl -hid-plantronics -hid-primax -hid-prodikeys -hid-rmi -hid-roccat -hid-roccat-arvo -hid-roccat-common -hid-roccat-isku -hid-roccat-kone -hid-roccat-koneplus -hid-roccat-konepure -hid-roccat-kovaplus -hid-roccat-lua -hid-roccat-pyra -hid-roccat-ryos -hid-roccat-savu -hid-saitek -hid-samsung -hid-sensor-accel-3d -hid-sensor-als -hid-sensor-custom -hid-sensor-gyro-3d -hid-sensor-hub -hid-sensor-iio-common -hid-sensor-incl-3d -hid-sensor-magn-3d -hid-sensor-press -hid-sensor-prox -hid-sensor-rotation -hid-sensor-trigger -hid-sjoy -hid-sony -hid-speedlink -hid-steelseries -hid-sunplus -hid-thingm -hid-tivo -hid-tmff -hid-topseed -hid-twinhan -hid-uclogic -hid-waltop -hid-wiimote -hid-xinmo -hid-zpff -hid-zydacron -hidp -hih6130 -hisax -hisax_fcpcipnp -hisax_isac -hisax_st5481 -hisi504_nand -hmc5843_core -hmc5843_i2c -hmc5843_spi -hmc6352 -hopper -horizon -horus3a -hostap -hostap_cs -hostap_pci -hostap_plx -hp100 -hpfs -hpilo -hpsa -hptiop -hsi -hsi_char -hso -hsr -hsu_dma -htc-pasic3 -hts221 -hts221_i2c -hts221_spi -htu21 -huawei_cdc_ncm -hwa-hc -hwa-rc -hwmon-vid -hx8357 -hysdn -i1480-dfu-usb -i1480-est -i2400m -i2400m-usb -i2c-algo-bit -i2c-algo-pca -i2c-ali1535 -i2c-ali1563 -i2c-ali15x3 -i2c-amd756 -i2c-amd8111 -i2c-arb-gpio-challenge -i2c-cbus-gpio -i2c-cpm -i2c-designware-core -i2c-designware-pci -i2c-designware-platform -i2c-diolan-u2c -i2c-dln2 -i2c-emev2 -i2c-gpio -i2c-hid -i2c-i801 -i2c-isch -i2c-kempld -i2c-matroxfb -i2c-mpc -i2c-mux -i2c-mux-gpio -i2c-mux-pca9541 -i2c-mux-pca954x -i2c-mux-reg -i2c-nforce2 -i2c-ocores -i2c-parport -i2c-parport-light -i2c-pca-platform -i2c-piix4 -i2c-rk3x -i2c-robotfuzz-osif -i2c-simtec -i2c-sis5595 -i2c-sis630 -i2c-sis96x -i2c-smbus -i2c-stub -i2c-taos-evm -i2c-tiny-usb -i2c-via -i2c-viapro -i2c-viperboard -i2c-xiic -i40e -i40evf -i5k_amb -i6300esb -i740fb -i82092 -ib_addr -ib_cm -ib_core -ib_ipoib -ib_iser -ib_isert -ib_mad -ib_mthca -ib_sa -ib_srp -ib_srpt -ib_ucm -ib_umad -ib_uverbs -ibmaem -ibmpex -icp_multi -icplus -ics932s401 -ideapad_slidebar -idma64 -idmouse -idt77252 -idt_gen2 -idtcps -ieee802154 -ieee802154_6lowpan -ieee802154_socket -ifb -iforce -igb -igbvf -igorplugusb -iguanair -ii_pci20kc -iio-trig-interrupt -iio-trig-periodic-rtc -iio-trig-sysfs -iio_dummy -iio_hwmon -ila -ili210x -ili922x -ili9320 -imm -imon -ims-pcu -imx074 -imx6ul_tsc -imx_thermal -ina209 -ina2xx -industrialio -industrialio-buffer-cb -industrialio-triggered-buffer -industrialio-triggered-event -inet_diag -inexio -inftl -initio -input-leds -input-polldev -int51x1 -intel_th -intel_th_gth -intel_th_msu -intel_th_pci -intel_th_pti -intel_th_sth -intel_vr_nor -interact -interval_tree_test -inv-mpu6050 -io_edgeport -io_ti -ioc4 -iowarrior -ip6_gre -ip6_tables -ip6_tunnel -ip6_udp_tunnel -ip6_vti -ip6t_MASQUERADE -ip6t_NPT -ip6t_REJECT -ip6t_SYNPROXY -ip6t_ah -ip6t_eui64 -ip6t_frag -ip6t_hbh -ip6t_ipv6header -ip6t_mh -ip6t_rpfilter -ip6t_rt -ip6table_filter -ip6table_mangle -ip6table_nat -ip6table_raw -ip6table_security -ip_gre -ip_set -ip_set_bitmap_ip -ip_set_bitmap_ipmac -ip_set_bitmap_port -ip_set_hash_ip -ip_set_hash_ipmark -ip_set_hash_ipport -ip_set_hash_ipportip -ip_set_hash_ipportnet -ip_set_hash_mac -ip_set_hash_net -ip_set_hash_netiface -ip_set_hash_netnet -ip_set_hash_netport -ip_set_hash_netportnet -ip_set_list_set -ip_tables -ip_tunnel -ip_vs -ip_vs_dh -ip_vs_fo -ip_vs_ftp -ip_vs_lblc -ip_vs_lblcr -ip_vs_lc -ip_vs_nq -ip_vs_ovf -ip_vs_pe_sip -ip_vs_rr -ip_vs_sed -ip_vs_sh -ip_vs_wlc -ip_vs_wrr -ip_vti -ipack -ipaq -ipcomp -ipcomp6 -ipddp -iphase -ipheth -ipip -ipmi_devintf -ipmi_msghandler -ipmi_poweroff -ipmi_si -ipmi_ssif -ipmi_watchdog -ipoctal -ipr -ips -ipt_CLUSTERIP -ipt_ECN -ipt_MASQUERADE -ipt_REJECT -ipt_SYNPROXY -ipt_ah -ipt_rpfilter -iptable_filter -iptable_mangle -iptable_nat -iptable_raw -iptable_security -ipvlan -ipw -ipw2100 -ipw2200 -ipwireless -ipx -ir-hix5hd2 -ir-jvc-decoder -ir-kbd-i2c -ir-lirc-codec -ir-mce_kbd-decoder -ir-nec-decoder -ir-rc5-decoder -ir-rc6-decoder -ir-sanyo-decoder -ir-sharp-decoder -ir-sony-decoder -ir-usb -ir-xmp-decoder -ircomm -ircomm-tty -irda -irda-usb -irlan -irnet -irtty-sir -iscsi_boot_sysfs -iscsi_target_mod -iscsi_tcp -isdn -isdn_bsdcomp -isdnhdlc -isicom -isight_firmware -isl29003 -isl29018 -isl29020 -isl29028 -isl29125 -isl6271a-regulator -isl6405 -isl6421 -isl6423 -isl9305 -isofs -isp116x-hcd -isp1362-hcd -isp1704_charger -isp1760 -it913x -itd1000 -itg3200 -iuu_phoenix -ivtv -ivtv-alsa -ivtvfb -iw_c2 -iw_cm -iw_cxgb3 -iw_cxgb4 -iw_nes -iwl3945 -iwl4965 -iwldvm -iwlegacy -iwlmvm -iwlwifi -ix2505v -ixgb -ixgbe -ixgbevf -janz-cmodio -janz-ican3 -jc42 -jedec_probe -jffs2 -jfs -jitterentropy_rng -jmb38x_ms -jme -joydev -joydump -jr3_pci -jsa1212 -jsm -kafs -kalmia -kaweth -kbic -kbtab -kcomedilib -ke_counter -kempld-core -kempld_wdt -kernelcapi -keyspan -keyspan_pda -keyspan_remote -keywrap -kfifo_buf -khazad -kingsun-sir -kl5kusb105 -kmx61 -kobil_sct -ks0108 -ks0127 -ks8842 -ks8851 -ks8851_mll -ks959-sir -ksdazzle-sir -ksz884x -ktti -kvaser_pci -kvaser_usb -kxcjk-1013 -kxsd9 -kxtj9 -kyrofb -l1oip -l2tp_core -l2tp_debugfs -l2tp_eth -l2tp_ip -l2tp_ip6 -l2tp_netlink -l2tp_ppp -l4f00242t03 -l64781 -lan78xx -lanai -lapb -lapbether -latch-addr-flash -lattice-ecp3-config -lcd -ld9040 -ldusb -lec -led-class-flash -leds-88pm860x -leds-adp5520 -leds-bcm6328 -leds-bcm6358 -leds-bd2802 -leds-blinkm -leds-da903x -leds-da9052 -leds-dac124s085 -leds-gpio -leds-ktd2692 -leds-lm3530 -leds-lm3533 -leds-lm355x -leds-lm3642 -leds-lp3944 -leds-lp5521 -leds-lp5523 -leds-lp5562 -leds-lp55xx-common -leds-lp8501 -leds-lp8788 -leds-lp8860 -leds-lt3593 -leds-max77693 -leds-max8997 -leds-mc13783 -leds-menf21bmc -leds-pca9532 -leds-pca955x -leds-pca963x -leds-pwm -leds-regulator -leds-tca6507 -leds-tlc591xx -leds-wm831x-status -leds-wm8350 -ledtrig-backlight -ledtrig-camera -ledtrig-default-on -ledtrig-gpio -ledtrig-heartbeat -ledtrig-oneshot -ledtrig-timer -ledtrig-transient -legousbtower -lg-vl600 -lg2160 -lgdt3305 -lgdt3306a -lgdt330x -lgs8gxx -lib80211 -lib80211_crypt_ccmp -lib80211_crypt_tkip -lib80211_crypt_wep -libahci -libahci_platform -libceph -libcomposite -libcrc32c -libcxgbi -libertas -libertas_cs -libertas_sdio -libertas_spi -libertas_tf -libertas_tf_usb -libfc -libfcoe -libipw -libiscsi -libiscsi_tcp -libore -libosd -libsas -lightning -lineage-pem -linear -lirc_bt829 -lirc_dev -lirc_imon -lirc_parallel -lirc_sasem -lirc_serial -lirc_sir -lirc_zilog -lis3l02dq -lis3lv02d -lis3lv02d_i2c -lis3lv02d_spi -litelink-sir -lkkbd -ll_temac -llc -llc2 -lm25066 -lm3533-als -lm3533-core -lm3533-ctrlbank -lm3533_bl -lm3630a_bl -lm3639_bl -lm63 -lm70 -lm73 -lm75 -lm77 -lm78 -lm80 -lm83 -lm8323 -lm8333 -lm85 -lm87 -lm90 -lm92 -lm93 -lm95234 -lm95241 -lm95245 -lmc -lms283gf05 -lms501kf03 -lnbh25 -lnbp21 -lnbp22 -lockd -locktorture -lp -lp3943 -lp3971 -lp3972 -lp855x_bl -lp8727_charger -lp872x -lp8755 -lp8788-buck -lp8788-charger -lp8788-ldo -lp8788_adc -lp8788_bl -lpc_ich -lpc_sch -lpddr_cmds -lpfc -lru_cache -lrw -ltc2941-battery-gauge -ltc2945 -ltc2978 -ltc3589 -ltc4151 -ltc4215 -ltc4222 -ltc4245 -ltc4260 -ltc4261 -ltr501 -ltv350qv -lv5207lp -lvstest -lxt -lz4 -lz4_compress -lz4hc -lz4hc_compress -m25p80 -m2m-deinterlace -m52790 -m62332 -m88ds3103 -m88rs2000 -m88rs6000t -mISDN_core -mISDN_dsp -mISDNinfineon -mISDNipac -mISDNisar -m_can -ma600-sir -mac-celtic -mac-centeuro -mac-croatian -mac-cyrillic -mac-gaelic -mac-greek -mac-iceland -mac-inuit -mac-roman -mac-romanian -mac-turkish -mac80211 -mac80211_hwsim -mac802154 -mac_hid -macb -macvlan -macvtap -mag3110 -magellan -mailbox-altera -mailbox-test -mantis -mantis_core -map_absent -map_funcs -map_ram -map_rom -marvell -matrix-keymap -matrix_keypad -matrox_w1 -matroxfb_DAC1064 -matroxfb_Ti3026 -matroxfb_accel -matroxfb_base -matroxfb_crtc2 -matroxfb_g450 -matroxfb_maven -matroxfb_misc -max1027 -max1111 -max11801_ts -max1363 -max14577 -max14577_charger -max1586 -max16064 -max16065 -max1619 -max1668 -max17040_battery -max17042_battery -max197 -max20751 -max2165 -max3100 -max31790 -max3421-hcd -max34440 -max517 -max5821 -max63xx_wdt -max6639 -max6642 -max6650 -max6697 -max6875 -max7359_keypad -max77686 -max77693 -max77693-haptic -max77693_charger -max77802 -max8649 -max8660 -max8688 -max8903_charger -max8907 -max8907-regulator -max8925-regulator -max8925_bl -max8925_onkey -max8925_power -max8952 -max8973-regulator -max8997 -max8997_charger -max8997_haptic -max8998 -max8998_charger -mb862xxfb -mb86a16 -mb86a20s -mc13783-adc -mc13783-pwrbutton -mc13783-regulator -mc13783_ts -mc13892-regulator -mc13xxx-core -mc13xxx-i2c -mc13xxx-regulator-core -mc13xxx-spi -mc44s803 -mcb -mcb-pci -mceusb -mcp2120-sir -mcp251x -mcp3021 -mcp320x -mcp3422 -mcp4531 -mcp4725 -mcp4922 -mcryptd -mcs5000_ts -mcs7780 -mcs7830 -mcs_touchkey -mct_u232 -md-cluster -md4 -md5-ppc -mdc800 -mdio -mdio-bcm-unimac -mdio-bitbang -mdio-gpio -mdio-mux -mdio-mux-gpio -mdio-mux-mmioreg -mdio-xgene -me4000 -me_daq -media -megaraid -megaraid_mbox -megaraid_mm -megaraid_sas -memstick -men_z135_uart -men_z188_adc -mena21_wdt -menf21bmc -menf21bmc_hwmon -menf21bmc_wdt -metro-usb -metronomefb -mf6x4 -mga -michael_mic -micrel -microchip -microread -microread_i2c -microtek -mii -mii-bitbang -minix -mip6 -mite -mk712 -mkiss -mlx4_core -mlx4_en -mlx4_ib -mlx5_core -mlx5_ib -mlx90614 -mlxsw_core -mlxsw_pci -mma8450 -mma8452 -mma9551 -mma9551_core -mma9553 -mmc35240 -mmc_block -mms114 -mn88472 -mn88473 -mos7720 -mos7840 -mostcore -moxa -mpc624 -mpc85xx_edac -mpl115 -mpl3115 -mpls_gso -mpls_iptunnel -mpls_router -mpoa -mpr121_touchkey -mpt3sas -mptbase -mptctl -mptfc -mptlan -mptsas -mptscsih -mptspi -mpu3050 -mrf24j40 -mrp -ms5611_core -ms5611_i2c -ms5611_spi -ms5637 -ms_block -ms_sensors_i2c -msdos -msi001 -msi2500 -msp3400 -mspro_block -mt2060 -mt2063 -mt20xx -mt2131 -mt2266 -mt29f_spinand -mt312 -mt352 -mt6311-regulator -mt6397-core -mt6397-regulator -mt7601u -mt9m001 -mt9m111 -mt9t031 -mt9t112 -mt9v011 -mt9v022 -mtd -mtd_blkdevs -mtd_dataflash -mtdblock -mtdblock_ro -mtdoops -mtdram -mtdswap -mtip32xx -mtk-sd -mtouch -multipath -multiq3 -musb_hdrc -mv643xx_eth -mv_u3d_core -mv_udc -mvmdio -mvsas -mvumi -mwifiex -mwifiex_pcie -mwifiex_sdio -mwifiex_usb -mwl8k -mxb -mxc4005 -mxl111sf-demod -mxl111sf-tuner -mxl301rf -mxl5005s -mxl5007t -mxser -mxuport -myri10ge -n_gsm -n_hdlc -n_r3964 -n_tracerouter -n_tracesink -nand -nand_bch -nand_ecc -nand_ids -nandsim -national -natsemi -nau7802 -navman -nb8800 -nbd -nci -nci_spi -nci_uart -ncpfs -nct7802 -nct7904 -nd_blk -nd_btt -nd_pmem -ne2k-pci -neofb -net1080 -net2272 -net2280 -netconsole -netjet -netlink_diag -netrom -netup-unidvb -netxen_nic -newtonkbd -nf_conntrack -nf_conntrack_amanda -nf_conntrack_broadcast -nf_conntrack_ftp -nf_conntrack_h323 -nf_conntrack_ipv4 -nf_conntrack_ipv6 -nf_conntrack_irc -nf_conntrack_netbios_ns -nf_conntrack_netlink -nf_conntrack_pptp -nf_conntrack_proto_dccp -nf_conntrack_proto_gre -nf_conntrack_proto_sctp -nf_conntrack_proto_udplite -nf_conntrack_sane -nf_conntrack_sip -nf_conntrack_snmp -nf_conntrack_tftp -nf_defrag_ipv4 -nf_defrag_ipv6 -nf_dup_ipv4 -nf_dup_ipv6 -nf_log_arp -nf_log_bridge -nf_log_common -nf_log_ipv4 -nf_log_ipv6 -nf_nat -nf_nat_amanda -nf_nat_ftp -nf_nat_h323 -nf_nat_ipv4 -nf_nat_ipv6 -nf_nat_irc -nf_nat_masquerade_ipv4 -nf_nat_masquerade_ipv6 -nf_nat_pptp -nf_nat_proto_dccp -nf_nat_proto_gre -nf_nat_proto_sctp -nf_nat_proto_udplite -nf_nat_redirect -nf_nat_sip -nf_nat_snmp_basic -nf_nat_tftp -nf_reject_ipv4 -nf_reject_ipv6 -nf_synproxy_core -nf_tables -nf_tables_arp -nf_tables_bridge -nf_tables_inet -nf_tables_ipv4 -nf_tables_ipv6 -nf_tables_netdev -nfc -nfc_digital -nfcmrvl -nfcmrvl_i2c -nfcmrvl_spi -nfcmrvl_uart -nfcmrvl_usb -nfcsim -nfcwilink -nfnetlink -nfnetlink_acct -nfnetlink_cthelper -nfnetlink_cttimeout -nfnetlink_log -nfnetlink_queue -nfs -nfs_acl -nfs_layout_flexfiles -nfs_layout_nfsv41_files -nfsd -nfsv2 -nfsv3 -nfsv4 -nft_chain_nat_ipv4 -nft_chain_nat_ipv6 -nft_chain_route_ipv4 -nft_chain_route_ipv6 -nft_compat -nft_counter -nft_ct -nft_dup_ipv4 -nft_dup_ipv6 -nft_exthdr -nft_hash -nft_limit -nft_log -nft_masq -nft_masq_ipv4 -nft_masq_ipv6 -nft_meta -nft_meta_bridge -nft_nat -nft_queue -nft_rbtree -nft_redir -nft_redir_ipv4 -nft_redir_ipv6 -nft_reject -nft_reject_bridge -nft_reject_inet -nft_reject_ipv4 -nft_reject_ipv6 -nftl -ngene -nhc_dest -nhc_fragment -nhc_hop -nhc_ipv6 -nhc_mobility -nhc_routing -nhc_udp -ni_6527 -ni_65xx -ni_660x -ni_670x -ni_at_a2150 -ni_at_ao -ni_atmio -ni_atmio16d -ni_daq_700 -ni_daq_dio24 -ni_labpc -ni_labpc_common -ni_labpc_cs -ni_labpc_isadma -ni_labpc_pci -ni_mio_cs -ni_pcidio -ni_pcimio -ni_tio -ni_tiocmd -ni_usb6501 -nicstar -nilfs2 -niu -nlmon -nls_ascii -nls_cp1250 -nls_cp1251 -nls_cp1255 -nls_cp737 -nls_cp775 -nls_cp850 -nls_cp852 -nls_cp855 -nls_cp857 -nls_cp860 -nls_cp861 -nls_cp862 -nls_cp863 -nls_cp864 -nls_cp865 -nls_cp866 -nls_cp869 -nls_cp874 -nls_cp932 -nls_cp936 -nls_cp949 -nls_cp950 -nls_euc-jp -nls_iso8859-13 -nls_iso8859-14 -nls_iso8859-15 -nls_iso8859-2 -nls_iso8859-3 -nls_iso8859-4 -nls_iso8859-5 -nls_iso8859-6 -nls_iso8859-7 -nls_iso8859-9 -nls_koi8-r -nls_koi8-ru -nls_koi8-u -nls_utf8 -nmclan_cs -nosy -notifier-error-inject -nouveau -nozomi -nps_enet -ns558 -ns83820 -nsc-ircc -nsp32 -nsp_cs -ntb -ntb_netdev -ntb_pingpong -ntb_tool -ntb_transport -ntc_thermistor -ntfs -null_blk -nvidiafb -nvme -nvmem_core -nxp-nci -nxp-nci_i2c -nxp-ptn3460 -nxt200x -nxt6000 -objlayoutdriver -ocfb -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -ocrdma -of_xilinx_wdt -ofpart -old_belkin-sir -omap4-keypad -omfs -omninet -on20 -on26 -onenand -opencores-kbd -openvswitch -oprofile -opt3001 -opticon -option -or51132 -or51211 -orinoco -orinoco_cs -orinoco_nortel -orinoco_plx -orinoco_tmd -orinoco_usb -osd -osdblk -osst -oti6858 -ov2640 -ov5642 -ov6650 -ov7640 -ov7670 -ov772x -ov9640 -ov9740 -overlay -oxu210hp-hcd -p54common -p54pci -p54spi -p54usb -p8022 -p8023 -pa12203001 -palmas-pwrbutton -palmas-regulator -pandora_bl -panel -panel-lg-lg4573 -panel-samsung-ld9040 -panel-samsung-s6e8aa0 -panel-sharp-lq101r1sx01 -panel-simple -parade-ps8622 -paride -parkbd -parport -parport_ax88796 -parport_cs -parport_pc -parport_serial -pata_ali -pata_amd -pata_artop -pata_atiixp -pata_atp867x -pata_cmd640 -pata_cmd64x -pata_cypress -pata_efar -pata_hpt366 -pata_hpt37x -pata_hpt3x2n -pata_hpt3x3 -pata_it8213 -pata_it821x -pata_jmicron -pata_legacy -pata_marvell -pata_mpiix -pata_netcell -pata_ninja32 -pata_ns87410 -pata_ns87415 -pata_of_platform -pata_oldpiix -pata_opti -pata_optidma -pata_pcmcia -pata_pdc2027x -pata_pdc202xx_old -pata_piccolo -pata_platform -pata_radisys -pata_rdc -pata_rz1000 -pata_sch -pata_serverworks -pata_sil680 -pata_sis -pata_sl82c105 -pata_triflex -pata_via -pc300too -pcap-regulator -pcap_keys -pcap_ts -pcbc -pcd -pcf50633 -pcf50633-adc -pcf50633-backlight -pcf50633-charger -pcf50633-gpio -pcf50633-input -pcf50633-regulator -pcf8574_keypad -pcf8591 -pch_udc -pci -pci-stub -pci200syn -pcips2 -pcl711 -pcl724 -pcl726 -pcl730 -pcl812 -pcl816 -pcl818 -pcm3724 -pcmad -pcmcia -pcmcia_core -pcmcia_rsrc -pcmciamtd -pcmda12 -pcmmio -pcmuio -pcnet32 -pcnet_cs -pcrypt -pcwd_pci -pcwd_usb -pd -pd6729 -pda_power -pdc_adma -peak_pci -peak_pcmcia -peak_usb -pegasus -penmount -percpu_test -pf -pfuze100-regulator -pg -phantom -phonet -phram -phy-bcm-kona-usb2 -phy-exynos-usb2 -phy-gpio-vbus-usb -phy-isp1301 -phy-pxa-28nm-hsic -phy-pxa-28nm-usb2 -phy-tahvo -phy-tusb1210 -physmap -physmap_of -pixcir_i2c_ts -pkcs7_test_key -pktcdvd -pktgen -pl2303 -plat-ram -plat_nand -platform_lcd -plip -plusb -pluto2 -plx_pci -pm-notifier-error-inject -pm2fb -pm3fb -pm80xx -pm8941-wled -pmbus -pmbus_core -pmc551 -pmcraid -pn533 -pn544 -pn544_i2c -pn_pep -poly1305_generic -port100 -powermate -powr1220 -ppa -ppdev -ppp_async -ppp_deflate -ppp_mppe -ppp_synctty -pppoatm -pppoe -pppox -pps-gpio -pps-ldisc -pps_core -pps_parport -pptp -prism2_usb -ps2mult -psmouse -psnap -pt -ptp -pulsedlight-lidar-lite-v2 -pvrusb2 -pwc -pwm-atmel-hlcdc -pwm-beeper -pwm-fan -pwm-fsl-ftm -pwm-lp3943 -pwm-pca9685 -pwm-regulator -pwm-twl -pwm-twl-led -pwm_bl -pxa27x_udc -qcaspi -qcaux -qcom-spmi-iadc -qcom-spmi-temp-alarm -qcom-spmi-vadc -qcom_spmi-regulator -qcserial -qed -qede -qinfo_probe -qla1280 -qla2xxx -qla3xxx -qla4xxx -qlcnic -qlge -qlogic_cs -qlogicfas408 -qm1d1c0042 -qmi_wwan -qnx4 -qnx6 -qoriq-cpufreq -qsemi -qt1010 -qt1070 -qt2160 -quatech2 -quatech_daqp_cs -quota_tree -quota_v1 -quota_v2 -qxl -r128 -r592 -r6040 -r8152 -r8169 -r8188eu -r8192e_pci -r8192u_usb -r820t -r852 -r8712u -r8723au -r8a66597-hcd -r8a66597-udc -radeon -radeonfb -radio-bcm2048 -radio-i2c-si470x -radio-keene -radio-ma901 -radio-maxiradio -radio-mr800 -radio-platform-si4713 -radio-raremono -radio-shark -radio-si476x -radio-tea5764 -radio-usb-si470x -radio-usb-si4713 -radio-wl1273 -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid6test -raid_class -ramoops -raw -ray_cs -rbd -rbtree_test -rc-adstech-dvb-t-pci -rc-alink-dtu-m -rc-anysee -rc-apac-viewcomp -rc-asus-pc39 -rc-asus-ps3-100 -rc-ati-tv-wonder-hd-600 -rc-ati-x10 -rc-avermedia -rc-avermedia-a16d -rc-avermedia-cardbus -rc-avermedia-dvbt -rc-avermedia-m135a -rc-avermedia-m733a-rm-k6 -rc-avermedia-rm-ks -rc-avertv-303 -rc-azurewave-ad-tu700 -rc-behold -rc-behold-columbus -rc-budget-ci-old -rc-cinergy -rc-cinergy-1400 -rc-core -rc-delock-61959 -rc-dib0700-nec -rc-dib0700-rc5 -rc-digitalnow-tinytwin -rc-digittrade -rc-dm1105-nec -rc-dntv-live-dvb-t -rc-dntv-live-dvbt-pro -rc-dvbsky -rc-em-terratec -rc-encore-enltv -rc-encore-enltv-fm53 -rc-encore-enltv2 -rc-evga-indtube -rc-eztv -rc-flydvb -rc-flyvideo -rc-fusionhdtv-mce -rc-gadmei-rm008z -rc-genius-tvgo-a11mce -rc-gotview7135 -rc-hauppauge -rc-imon-mce -rc-imon-pad -rc-iodata-bctv7e -rc-it913x-v1 -rc-it913x-v2 -rc-kaiomy -rc-kworld-315u -rc-kworld-pc150u -rc-kworld-plus-tv-analog -rc-leadtek-y04g0051 -rc-lirc -rc-lme2510 -rc-loopback -rc-manli -rc-medion-x10 -rc-medion-x10-digitainer -rc-medion-x10-or2x -rc-msi-digivox-ii -rc-msi-digivox-iii -rc-msi-tvanywhere -rc-msi-tvanywhere-plus -rc-nebula -rc-nec-terratec-cinergy-xs -rc-norwood -rc-npgtech -rc-pctv-sedna -rc-pinnacle-color -rc-pinnacle-grey -rc-pinnacle-pctv-hd -rc-pixelview -rc-pixelview-002t -rc-pixelview-mk12 -rc-pixelview-new -rc-powercolor-real-angel -rc-proteus-2309 -rc-purpletv -rc-pv951 -rc-rc6-mce -rc-real-audio-220-32-keys -rc-reddo -rc-snapstream-firefly -rc-streamzap -rc-su3000 -rc-tbs-nec -rc-technisat-ts35 -rc-technisat-usb2 -rc-terratec-cinergy-c-pci -rc-terratec-cinergy-s2-hd -rc-terratec-cinergy-xs -rc-terratec-slim -rc-terratec-slim-2 -rc-tevii-nec -rc-tivo -rc-total-media-in-hand -rc-total-media-in-hand-02 -rc-trekstor -rc-tt-1500 -rc-twinhan-dtv-cab-ci -rc-twinhan1027 -rc-videomate-m1f -rc-videomate-s350 -rc-videomate-tv-pvr -rc-winfast -rc-winfast-usbii-deluxe -rc5t583-regulator -rdc321x-southbridge -rdma_cm -rdma_ucm -rds -rds_rdma -rds_tcp -realtek -redboot -redrat3 -reed_solomon -regmap-spmi -regulator-haptic -reiserfs -remoteproc -retu-mfd -retu-pwrbutton -retu_wdt -rfc1051 -rfc1201 -rfcomm -rfd_ftl -rfkill-gpio -rfkill-regulator -rio-scan -rio500 -rionet -rivafb -rj54n1cb0c -rk808 -rk808-regulator -rmd128 -rmd160 -rmd256 -rmd320 -rn5t618 -rn5t618-regulator -rn5t618_wdt -rndis_host -rndis_wlan -rocket -rohm_bu21023 -romfs -rose -rotary_encoder -rp2 -rpcrdma -rpcsec_gss_krb5 -rpr0521 -rrpc -rsi_91x -rsi_sdio -rsi_usb -rsxx -rt2400pci -rt2500pci -rt2500usb -rt2800lib -rt2800mmio -rt2800pci -rt2800usb -rt2x00lib -rt2x00mmio -rt2x00pci -rt2x00usb -rt5033 -rt5033-regulator -rt5033_battery -rt61pci -rt73usb -rt9455_charger -rtc-88pm80x -rtc-88pm860x -rtc-ab-b5ze-s3 -rtc-ab3100 -rtc-abx80x -rtc-as3722 -rtc-bq32k -rtc-bq4802 -rtc-cmos -rtc-da9052 -rtc-da9055 -rtc-da9063 -rtc-ds1286 -rtc-ds1305 -rtc-ds1307 -rtc-ds1343 -rtc-ds1347 -rtc-ds1374 -rtc-ds1390 -rtc-ds1511 -rtc-ds1553 -rtc-ds1672 -rtc-ds1685 -rtc-ds1742 -rtc-ds2404 -rtc-ds3234 -rtc-em3027 -rtc-fm3130 -rtc-generic -rtc-hid-sensor-time -rtc-hym8563 -rtc-isl12022 -rtc-isl12057 -rtc-isl1208 -rtc-lp8788 -rtc-m41t80 -rtc-m41t93 -rtc-m41t94 -rtc-m48t35 -rtc-m48t59 -rtc-m48t86 -rtc-max6900 -rtc-max6902 -rtc-max77686 -rtc-max77802 -rtc-max8907 -rtc-max8925 -rtc-max8997 -rtc-max8998 -rtc-mc13xxx -rtc-mcp795 -rtc-msm6242 -rtc-mt6397 -rtc-palmas -rtc-pcap -rtc-pcf2123 -rtc-pcf2127 -rtc-pcf50633 -rtc-pcf85063 -rtc-pcf8523 -rtc-pcf8563 -rtc-pcf8583 -rtc-r9701 -rtc-rc5t583 -rtc-rk808 -rtc-rp5c01 -rtc-rs5c348 -rtc-rs5c372 -rtc-rv3029c2 -rtc-rv8803 -rtc-rx4581 -rtc-rx8025 -rtc-rx8581 -rtc-s35390a -rtc-s5m -rtc-snvs -rtc-stk17ta8 -rtc-tps6586x -rtc-tps65910 -rtc-tps80031 -rtc-twl -rtc-v3020 -rtc-wm831x -rtc-wm8350 -rtc-x1205 -rtc-zynqmp -rtc_cmos_setup -rtd520 -rti800 -rti802 -rtl2830 -rtl2832 -rtl2832_sdr -rtl8150 -rtl8187 -rtl8188ee -rtl818x_pci -rtl8192c-common -rtl8192ce -rtl8192cu -rtl8192de -rtl8192ee -rtl8192se -rtl8723-common -rtl8723ae -rtl8723be -rtl8821ae -rtl8xxxu -rtl_pci -rtl_usb -rtllib -rtllib_crypt_ccmp -rtllib_crypt_tkip -rtllib_crypt_wep -rtlwifi -rts5208 -rtsx_pci -rtsx_pci_ms -rtsx_pci_sdmmc -rtsx_usb -rtsx_usb_ms -rtsx_usb_sdmmc -rx51_battery -rxkad -s1d13xxxfb -s2250 -s2255drv -s2io -s2mpa01 -s2mps11 -s3fb -s3fwrn5 -s3fwrn5_i2c -s526 -s5h1409 -s5h1411 -s5h1420 -s5m8767 -s626 -s6e63m0 -s921 -saa6588 -saa6752hs -saa7110 -saa7115 -saa7127 -saa7134 -saa7134-alsa -saa7134-dvb -saa7134-empress -saa7134-go7007 -saa7146 -saa7146_vv -saa7164 -saa717x -saa7185 -saa7706h -safe_serial -salsa20_generic -samsung-keypad -samsung-sxgbe -sata_fsl -sata_inic162x -sata_mv -sata_nv -sata_promise -sata_qstor -sata_sil -sata_sil24 -sata_sis -sata_sx4 -sata_uli -sata_via -sata_vsc -savage -savagefb -sbp_target -sbs-battery -sc16is7xx -sc92031 -sca3000 -sch_atm -sch_cbq -sch_choke -sch_codel -sch_drr -sch_dsmark -sch_fq -sch_fq_codel -sch_gred -sch_hfsc -sch_hhf -sch_htb -sch_ingress -sch_mqprio -sch_multiq -sch_netem -sch_pie -sch_plug -sch_prio -sch_qfq -sch_red -sch_sfb -sch_sfq -sch_tbf -sch_teql -scsi_debug -scsi_dh_alua -scsi_dh_emc -scsi_dh_hp_sw -scsi_dh_rdac -scsi_transport_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -scsi_transport_srp -sctp -sctp_probe -sdhci -sdhci-of-arasan -sdhci-of-at91 -sdhci-of-esdhc -sdhci-of-hlwd -sdhci-pci -sdhci-pltfm -sdhci_f_sdh30 -sdio_uart -sdricoh_cs -sedlbauer_cs -seed -sensorhub -seqiv -ser_gigaset -serial2002 -serial_cs -serio_raw -sermouse -serpent_generic -serport -ses -sfc -sgy_cts1000 -sh_veu -sha1-powerpc -shark2 -shpchp -sht15 -sht21 -shtc1 -si2157 -si2165 -si2168 -si21xx -si4713 -si476x-core -si7005 -si7020 -sidewinder -sierra -sierra_net -sil164 -sir-dev -sis -sis190 -sis5595 -sis900 -sisfb -sisusbvga -sit -sja1000 -sja1000_isa -sja1000_platform -skfp -skge -sky2 -sky81452 -sky81452-backlight -sky81452-regulator -sl811-hcd -sl811_cs -slcan -slip -slram -sm501 -sm501fb -sm712fb -sm750fb -sm_common -sm_ftl -smb347-charger -smc91c92_cs -smipcie -smm665 -smsc -smsc-ircc2 -smsc47m192 -smsc75xx -smsc911x -smsc9420 -smsc95xx -smscufx -smsdvb -smsmdtv -smssdio -smsusb -snd -snd-ac97-codec -snd-ad1889 -snd-ak4113 -snd-ak4114 -snd-ak4117 -snd-ak4xxx-adda -snd-ali5451 -snd-aloop -snd-als300 -snd-als4000 -snd-atiixp -snd-atiixp-modem -snd-au8810 -snd-au8820 -snd-au8830 -snd-aw2 -snd-azt3328 -snd-bcd2000 -snd-bebob -snd-bt87x -snd-ca0106 -snd-cmipci -snd-cs4281 -snd-cs46xx -snd-cs8427 -snd-ctxfi -snd-darla20 -snd-darla24 -snd-dice -snd-dummy -snd-echo3g -snd-emu10k1 -snd-emu10k1-synth -snd-emu10k1x -snd-emux-synth -snd-ens1370 -snd-ens1371 -snd-es1938 -snd-es1968 -snd-firewire-digi00x -snd-firewire-lib -snd-firewire-tascam -snd-fireworks -snd-fm801 -snd-gina20 -snd-gina24 -snd-hda-codec -snd-hda-codec-analog -snd-hda-codec-ca0110 -snd-hda-codec-ca0132 -snd-hda-codec-cirrus -snd-hda-codec-cmedia -snd-hda-codec-conexant -snd-hda-codec-generic -snd-hda-codec-hdmi -snd-hda-codec-idt -snd-hda-codec-realtek -snd-hda-codec-si3054 -snd-hda-codec-via -snd-hda-core -snd-hda-intel -snd-hdsp -snd-hdspm -snd-hrtimer -snd-hwdep -snd-i2c -snd-ice1712 -snd-ice1724 -snd-ice17xx-ak4xxx -snd-indigo -snd-indigodj -snd-indigodjx -snd-indigoio -snd-indigoiox -snd-intel8x0 -snd-intel8x0m -snd-isight -snd-korg1212 -snd-layla20 -snd-layla24 -snd-lola -snd-lx6464es -snd-maestro3 -snd-mia -snd-mixart -snd-mixer-oss -snd-mona -snd-mpu401 -snd-mpu401-uart -snd-mtpav -snd-mts64 -snd-nm256 -snd-opl3-lib -snd-opl3-synth -snd-oxfw -snd-oxygen -snd-oxygen-lib -snd-pcm -snd-pcm-dmaengine -snd-pcm-oss -snd-pcxhr -snd-pdaudiocf -snd-portman2x4 -snd-pt2258 -snd-rawmidi -snd-riptide -snd-rme32 -snd-rme96 -snd-rme9652 -snd-sb-common -snd-scs1x -snd-seq -snd-seq-device -snd-seq-dummy -snd-seq-midi -snd-seq-midi-emul -snd-seq-midi-event -snd-seq-virmidi -snd-serial-u16550 -snd-soc-ac97 -snd-soc-adau1701 -snd-soc-ak4104 -snd-soc-ak4554 -snd-soc-ak4613 -snd-soc-ak4642 -snd-soc-ak5386 -snd-soc-alc5623 -snd-soc-core -snd-soc-cs35l32 -snd-soc-cs4265 -snd-soc-cs4270 -snd-soc-cs4271 -snd-soc-cs4271-i2c -snd-soc-cs4271-spi -snd-soc-cs42l51 -snd-soc-cs42l51-i2c -snd-soc-cs42l52 -snd-soc-cs42l56 -snd-soc-cs42l73 -snd-soc-cs42xx8 -snd-soc-cs42xx8-i2c -snd-soc-cs4349 -snd-soc-es8328 -snd-soc-fsl-asrc -snd-soc-fsl-esai -snd-soc-fsl-sai -snd-soc-fsl-spdif -snd-soc-fsl-ssi -snd-soc-gtm601 -snd-soc-imx-audmux -snd-soc-pcm1681 -snd-soc-pcm1792a-codec -snd-soc-pcm512x -snd-soc-pcm512x-i2c -snd-soc-pcm512x-spi -snd-soc-rt5631 -snd-soc-sgtl5000 -snd-soc-si476x -snd-soc-sigmadsp -snd-soc-sigmadsp-i2c -snd-soc-simple-card -snd-soc-spdif-rx -snd-soc-spdif-tx -snd-soc-ssm2602 -snd-soc-ssm2602-i2c -snd-soc-ssm2602-spi -snd-soc-ssm4567 -snd-soc-sta32x -snd-soc-sta350 -snd-soc-sti-sas -snd-soc-tas2552 -snd-soc-tas5086 -snd-soc-tas571x -snd-soc-tfa9879 -snd-soc-tlv320aic23 -snd-soc-tlv320aic23-i2c -snd-soc-tlv320aic23-spi -snd-soc-tlv320aic31xx -snd-soc-tlv320aic3x -snd-soc-tpa6130a2 -snd-soc-ts3a227e -snd-soc-wm8510 -snd-soc-wm8523 -snd-soc-wm8580 -snd-soc-wm8711 -snd-soc-wm8728 -snd-soc-wm8731 -snd-soc-wm8737 -snd-soc-wm8741 -snd-soc-wm8750 -snd-soc-wm8753 -snd-soc-wm8770 -snd-soc-wm8776 -snd-soc-wm8804 -snd-soc-wm8804-i2c -snd-soc-wm8804-spi -snd-soc-wm8903 -snd-soc-wm8962 -snd-soc-wm8978 -snd-soc-xtfpga-i2s -snd-sonicvibes -snd-timer -snd-trident -snd-ua101 -snd-usb-6fire -snd-usb-audio -snd-usb-caiaq -snd-usb-hiface -snd-usb-line6 -snd-usb-pod -snd-usb-podhd -snd-usb-toneport -snd-usb-usx2y -snd-usb-variax -snd-usbmidi-lib -snd-util-mem -snd-via82xx -snd-via82xx-modem -snd-virmidi -snd-virtuoso -snd-vx-lib -snd-vx222 -snd-vxpocket -snd-ymfpci -snic -soc_button_array -soc_camera -soc_camera_platform -soc_mediabus -softdog -softing -softing_cs -solo6x10 -solos-pci -sony-btf-mpx -soundcore -sp2 -sp8870 -sp887x -spaceball -spaceorb -sparse-keymap -spcp8x5 -speakup -speakup_acntsa -speakup_apollo -speakup_audptr -speakup_bns -speakup_decext -speakup_dectlk -speakup_dummy -speakup_ltlk -speakup_soft -speakup_spkout -speakup_txprt -spectrum_cs -speedfax -speedtch -spi-altera -spi-bitbang -spi-butterfly -spi-cadence -spi-dln2 -spi-dw -spi-dw-midpci -spi-dw-mmio -spi-gpio -spi-lm70llp -spi-nor -spi-oc-tiny -spi-pxa2xx-pci -spi-pxa2xx-platform -spi-sc18is602 -spi-tle62x0 -spi-xcomm -spi-zynqmp-gqspi -spi_ks8995 -spidev -spmi -sr9700 -sr9800 -ssb -ssb-hcd -ssd1307fb -ssfdc -ssp_accel_sensor -ssp_gyro_sensor -ssp_iio -sst25l -ssu100 -st -st-nci -st-nci_i2c -st-nci_spi -st1232 -st21nfca_hci -st21nfca_i2c -st_accel -st_accel_i2c -st_accel_spi -st_drv -st_gyro -st_gyro_i2c -st_gyro_spi -st_magn -st_magn_i2c -st_magn_spi -st_pressure -st_pressure_i2c -st_pressure_spi -st_sensors -st_sensors_i2c -st_sensors_spi -starfire -stb0899 -stb6000 -stb6100 -ste10Xp -ste_modem_rproc -stex -stinger -stir4200 -stk1160 -stk3310 -stk8312 -stk8ba50 -stkwebcam -stm_console -stm_core -stmmac -stmmac-platform -stmpe-keypad -stmpe-ts -stowaway -stp -streamzap -stv0288 -stv0297 -stv0299 -stv0367 -stv0900 -stv090x -stv6110 -stv6110x -sun4i-codec -sundance -sungem -sungem_phy -sunhme -suni -sunkbd -sunrpc -sur40 -svgalib -sx8 -sx8654 -sx9500 -sym53c500_cs -sym53c8xx -symbolserial -synaptics_i2c -synaptics_i2c_rmi4 -synaptics_usb -synclink -synclink_cs -synclink_gt -synclinkmp -sysv -t1pci -t5403 -talitos -target_core_file -target_core_iblock -target_core_mod -target_core_pscsi -target_core_user -tc3589x-keypad -tc74 -tc90522 -tca6416-keypad -tca8418_keypad -tcm_fc -tcm_loop -tcm_qla2xxx -tcm_usb_gadget -tcp_bic -tcp_cdg -tcp_dctcp -tcp_diag -tcp_highspeed -tcp_htcp -tcp_hybla -tcp_illinois -tcp_lp -tcp_probe -tcp_scalable -tcp_vegas -tcp_veno -tcp_westwood -tcp_yeah -tcrypt -tcs3414 -tcs3472 -tda10021 -tda10023 -tda10048 -tda1004x -tda10071 -tda10086 -tda18212 -tda18218 -tda18271 -tda18271c2dd -tda665x -tda7432 -tda8083 -tda8261 -tda826x -tda827x -tda8290 -tda9840 -tda9887 -tda998x -tdfx -tdfxfb -tdo24m -tea -tea575x -tea5761 -tea5767 -tea6415c -tea6420 -team -team_mode_activebackup -team_mode_broadcast -team_mode_loadbalance -team_mode_random -team_mode_roundrobin -tef6862 -tehuti -tekram-sir -teles_cs -teranetics -test-hexdump -test-kstrtox -test-string_helpers -test_bpf -test_firmware -test_module -test_power -test_printf -test_static_key_base -test_static_keys -test_udelay -test_user_copy -tg3 -tgr192 -thmc50 -thunderbolt -ti-adc081c -ti-adc128s052 -ti_am335x_adc -ti_am335x_tsc -ti_am335x_tscadc -ti_dac7512 -ti_usb_3410_5052 -tifm_7xx1 -tifm_core -tifm_ms -tifm_sd -timeriomem-rng -tipc -tlan -tm6000 -tm6000-alsa -tm6000-dvb -tmdc -tmp006 -tmp102 -tmp103 -tmp401 -tmp421 -toim3232-sir -torture -toshsd -touchit213 -touchright -touchwin -tpci200 -tpm-rng -tpm_atmel -tpm_i2c_atmel -tpm_i2c_infineon -tpm_i2c_nuvoton -tpm_st33zp24 -tpm_st33zp24_i2c -tpm_st33zp24_spi -tps40422 -tps51632-regulator -tps6105x -tps6105x-regulator -tps62360-regulator -tps65010 -tps65023-regulator -tps6507x -tps6507x-regulator -tps6507x-ts -tps65090-charger -tps65090-regulator -tps65217_bl -tps65217_charger -tps65218 -tps65218-pwrbutton -tps65218-regulator -tps6524x-regulator -tps6586x-regulator -tps65910-regulator -tps65912-regulator -tps80031-regulator -trancevibrator -trf7970a -tridentfb -ts2020 -ts_bm -ts_fsm -ts_kmp -tsc2004 -tsc2005 -tsc2007 -tsc200x-core -tsc40 -tsi568 -tsi57x -tsi721_mport -tsl2550 -tsl2563 -tsl2583 -tsl2x7x_core -tsl4531 -tsys01 -tsys02d -ttm -ttpci-eeprom -ttusb_dec -ttusbdecfe -ttusbir -tua6100 -tua9001 -tulip -tuner -tuner-simple -tuner-types -tuner-xc2028 -tunnel4 -tunnel6 -turbografx -tvaudio -tveeprom -tvp5150 -tw2804 -tw68 -tw9903 -tw9906 -tw9910 -twidjoy -twl-regulator -twl4030-madc -twl4030-madc-hwmon -twl4030-pwrbutton -twl4030-vibra -twl4030_charger -twl4030_keypad -twl4030_madc_battery -twl4030_wdt -twl6030-gpadc -twl6040-vibra -twofish_common -twofish_generic -typhoon -u132-hcd -uPD98402 -u_ether -u_serial -uartlite -uas -ubi -ubifs -ucb1400_core -ucb1400_ts -ucd9000 -ucd9200 -uda1342 -udc-core -udc-xilinx -udf -udl -udp_diag -udp_tunnel -ueagle-atm -ufs -ufshcd -ufshcd-pci -ufshcd-pltfrm -uhid -uio -uio_aec -uio_cif -uio_dmem_genirq -uio_fsl_elbc_gpcm -uio_mf624 -uio_netx -uio_pci_generic -uio_pdrv_genirq -uio_pruss -uio_sercos3 -uli526x -ulpi -umc -umem -ums-alauda -ums-cypress -ums-datafab -ums-eneub6250 -ums-freecom -ums-isd200 -ums-jumpshot -ums-karma -ums-onetouch -ums-realtek -ums-sddr09 -ums-sddr55 -ums-usbat -unix_diag -upd64031a -upd64083 -us5182d -usb-serial-simple -usb-storage -usb3503 -usb8xxx -usb_8dev -usb_debug -usb_f_acm -usb_f_ecm -usb_f_ecm_subset -usb_f_eem -usb_f_fs -usb_f_hid -usb_f_mass_storage -usb_f_midi -usb_f_ncm -usb_f_obex -usb_f_phonet -usb_f_printer -usb_f_rndis -usb_f_serial -usb_f_ss_lb -usb_f_uac1 -usb_f_uac2 -usb_f_uvc -usb_gigaset -usb_wwan -usbatm -usbdux -usbduxfast -usbduxsigma -usbhid -usbip-core -usbip-host -usbkbd -usblcd -usbled -usblp -usbmisc_imx -usbmon -usbmouse -usbnet -usbserial -usbsevseg -usbtest -usbtmc -usbtouchscreen -usbtv -usbvision -usdhi6rol0 -userio -userspace-consumer -ushc -uss720 -uvcvideo -uvesafb -uwb -v4l2-common -v4l2-dv-timings -v4l2-flash-led-class -v4l2-mem2mem -vcan -vcnl4000 -ves1820 -ves1x93 -veth -vf610_adc -vga16fb -vgastate -vgem -vgg2432a4 -vhci-hcd -vhost -vhost_net -vhost_scsi -via -via-ircc -via-rhine -via-sdmmc -via-velocity -via686a -videobuf-core -videobuf-dma-sg -videobuf-dvb -videobuf-vmalloc -videobuf2-core -videobuf2-dma-contig -videobuf2-dma-sg -videobuf2-dvb -videobuf2-memops -videobuf2-v4l2 -videobuf2-vmalloc -videocodec -videodev -vim2m -viperboard -viperboard_adc -virt-dma -virtio-gpu -virtio-rng -virtio_input -virtio_scsi -virtual -visor -vitesse -vivid -vlsi_ir -vmac -vme_ca91cx42 -vme_pio2 -vme_tsi148 -vme_user -vme_vmivme7805 -vmk80xx -vmxnet3 -vp27smpx -vport-geneve -vport-gre -vport-vxlan -vpx3220 -vrf -vringh -vsock -vsxxxaa -vt6655_stage -vt6656_stage -vt8231 -vt8623fb -vub300 -vx855 -vxge -vxlan -vz89x -w1-gpio -w1_bq27000 -w1_ds2406 -w1_ds2408 -w1_ds2413 -w1_ds2423 -w1_ds2431 -w1_ds2433 -w1_ds2760 -w1_ds2780 -w1_ds2781 -w1_ds28e04 -w1_smem -w1_therm -w5100 -w5300 -w6692 -w83781d -w83791d -w83792d -w83793 -w83795 -w83977af_ir -w83l785ts -w83l786ng -wacom -wacom_i2c -wacom_serial4 -wacom_w8001 -walkera0701 -wanxl -warrior -wbsd -wcn36xx -wd719x -wdt87xx_i2c -wdt_pci -whc-rc -whci -whci-hcd -whiteheat -wil6210 -wimax -winbond-840 -windfarm_core -wire -wishbone-serial -wl1251 -wl1251_sdio -wl1251_spi -wl1273-core -wl12xx -wl18xx -wl3501_cs -wlcore -wlcore_sdio -wlcore_spi -wm831x-dcdc -wm831x-hwmon -wm831x-isink -wm831x-ldo -wm831x-on -wm831x-ts -wm831x_backup -wm831x_bl -wm831x_power -wm831x_wdt -wm8350-hwmon -wm8350-regulator -wm8350_power -wm8350_wdt -wm8400-regulator -wm8739 -wm8775 -wm8994-core -wm8994-irq -wm8994-regmap -wm8994-regulator -wm97xx-ts -wp512 -wusb-cbaf -wusb-wa -wusbcore -x25 -x25_asy -x_tables -xc4000 -xc5000 -xcbc -xfrm4_mode_beet -xfrm4_mode_transport -xfrm4_mode_tunnel -xfrm4_tunnel -xfrm6_mode_beet -xfrm6_mode_ro -xfrm6_mode_transport -xfrm6_mode_tunnel -xfrm6_tunnel -xfrm_algo -xfrm_ipcomp -xfrm_user -xfs -xgifb -xhci-plat-hcd -xilinx-tpg -xilinx-video -xilinx-vtc -xilinx_emaclite -xilinx_ps2 -xilinx_uartps -xillybus_core -xillybus_of -xillybus_pcie -xirc2ps_cs -xircom_cb -xor -xpad -xr_usb_serial_common -xsens_mt -xt_AUDIT -xt_CHECKSUM -xt_CLASSIFY -xt_CONNSECMARK -xt_CT -xt_DSCP -xt_HL -xt_HMARK -xt_IDLETIMER -xt_LED -xt_LOG -xt_NETMAP -xt_NFLOG -xt_NFQUEUE -xt_RATEEST -xt_REDIRECT -xt_SECMARK -xt_TCPMSS -xt_TCPOPTSTRIP -xt_TEE -xt_TPROXY -xt_TRACE -xt_addrtype -xt_bpf -xt_cgroup -xt_cluster -xt_comment -xt_connbytes -xt_connlabel -xt_connlimit -xt_connmark -xt_conntrack -xt_cpu -xt_dccp -xt_devgroup -xt_dscp -xt_ecn -xt_esp -xt_hashlimit -xt_helper -xt_hl -xt_ipcomp -xt_iprange -xt_ipvs -xt_l2tp -xt_length -xt_limit -xt_mac -xt_mark -xt_multiport -xt_nat -xt_nfacct -xt_osf -xt_owner -xt_physdev -xt_pkttype -xt_policy -xt_quota -xt_rateest -xt_realm -xt_recent -xt_sctp -xt_set -xt_socket -xt_state -xt_statistic -xt_string -xt_tcpmss -xt_tcpudp -xt_time -xt_u32 -xtkbd -xts -xusbatm -xz_dec_test -yam -yealink -yellowfin -yenta_socket -yurex -zatm -zaurus -zd1201 -zd1211rw -zforce_ts -zhenhua -zl10036 -zl10039 -zl10353 -zl6100 -zlib -zr36016 -zr36050 -zr36060 -zr36067 -zr364xx -zram -zynq-fpga reverted: --- linux-raspi2-4.4.0/debian.master/abi/4.4.0-89.112/powerpc/powerpc-smp +++ linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-89.112/powerpc/powerpc-smp @@ -1,17106 +0,0 @@ -EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe -EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble -EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL crypto/mcryptd 0xa8cfd13e mcryptd_arm_flusher -EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/atm/suni 0x5e0b0b9c suni_init -EXPORT_SYMBOL drivers/atm/uPD98402 0x21e0b8b2 uPD98402_init -EXPORT_SYMBOL drivers/bcma/bcma 0x49dba867 bcma_core_irq -EXPORT_SYMBOL drivers/bcma/bcma 0x8fd17214 bcma_core_dma_translation -EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str -EXPORT_SYMBOL drivers/block/paride/paride 0x29fefcc3 pi_connect -EXPORT_SYMBOL drivers/block/paride/paride 0x304989be paride_unregister -EXPORT_SYMBOL drivers/block/paride/paride 0x355efce7 pi_release -EXPORT_SYMBOL drivers/block/paride/paride 0x35d60b3b pi_read_block -EXPORT_SYMBOL drivers/block/paride/paride 0x38424542 pi_disconnect -EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x7ad35c7d pi_init -EXPORT_SYMBOL drivers/block/paride/paride 0x8c54fbcc paride_register -EXPORT_SYMBOL drivers/block/paride/paride 0xb1011532 pi_write_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -EXPORT_SYMBOL drivers/block/paride/paride 0xb4e9f7c1 pi_write_block -EXPORT_SYMBOL drivers/block/paride/paride 0xd3d15923 pi_schedule_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0xdba353d9 pi_read_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xdc1c941c pi_do_claimed -EXPORT_SYMBOL drivers/bluetooth/btbcm 0x1ba69a9b btbcm_patchram -EXPORT_SYMBOL drivers/char/apm-emulation 0x129e74f2 apm_get_power_status -EXPORT_SYMBOL drivers/char/apm-emulation 0xdf3329b8 apm_queue_event -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fae3bac ipmi_addr_src_to_str -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7116d290 ipmi_smi_watcher_register -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8a28268c ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x9f663b72 ipmi_register_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa9ee0bb1 ipmi_get_smi_info -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe70dd133 ipmi_smi_add_proc_entry -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x2011b177 st33zp24_remove -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x3eb76363 st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x5a92c590 st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x61a61da5 st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x044844e0 xillybus_endpoint_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x94f42a8b xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xf538f50d xillybus_init_endpoint -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x47e3f71e dw_dma_cyclic_free -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x4f68f0c0 dw_dma_cyclic_prep -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x950689eb dw_dma_get_src_addr -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xaa019878 dw_dma_get_dst_addr -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xdccc64d8 dw_dma_cyclic_stop -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xe6e017d3 dw_dma_cyclic_start -EXPORT_SYMBOL drivers/edac/edac_core 0xba0c95b9 edac_mc_find -EXPORT_SYMBOL drivers/firewire/firewire-core 0x03af8d77 fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0x04dd92ce fw_core_add_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x07d50a8c fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0x10606589 fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x11e8a967 fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0x21abf743 fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x346999ff fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4a940dba fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4b3954d5 fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d5d4eca fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5cbaca18 fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6961d781 fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6c14886d fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6d013af8 fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x705f3109 fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x70601db1 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7413e7f1 fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e431b14 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x87b4672f fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9f1e82f7 fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0xaf9cf506 fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb04a5092 fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbd222873 fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbda49d70 fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc700073b fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe978f29d fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0xed2620a5 fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf607b766 fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf6a59b4a fw_schedule_bus_reset -EXPORT_SYMBOL drivers/fmc/fmc 0x36c372be fmc_driver_register -EXPORT_SYMBOL drivers/fmc/fmc 0x439ce651 fmc_device_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0x55a5b925 fmc_free_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0x71395d69 fmc_device_unregister_n -EXPORT_SYMBOL drivers/fmc/fmc 0x753daab8 fmc_scan_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0x783684ea fmc_driver_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0x9add5cc6 fmc_reprogram -EXPORT_SYMBOL drivers/fmc/fmc 0xa1661545 fmc_find_sdb_device -EXPORT_SYMBOL drivers/fmc/fmc 0xe1537b3b fmc_device_register -EXPORT_SYMBOL drivers/fmc/fmc 0xebff255d fmc_show_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0xff94fb65 fmc_device_register_n -EXPORT_SYMBOL drivers/gpu/drm/drm 0x00eb9773 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x01526cec drm_connector_unplug_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x016ecf8b drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x018b245a drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x039c18c7 drm_bridge_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04543876 drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05c1a878 drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08586457 drm_irq_uninstall -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08800dfa drm_legacy_ioremapfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09816511 drm_agp_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09ad95b2 drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a89be7f drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ba6d707 drm_atomic_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ce1fd7a drm_legacy_ioremap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d97de54 drm_agp_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0dd99e5b drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f0b61a9 drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f3ecf09 drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fccafb1 drm_global_item_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1071b138 drm_calc_vbltimestamp_from_scanoutpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x122ab803 drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x126e0009 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12990038 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x132926d5 drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1588eb6d drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15911c8c drm_agp_bind -EXPORT_SYMBOL drivers/gpu/drm/drm 0x164a9edc drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x176c2658 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17c26256 drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17e29ee0 drm_bridge_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18137e74 drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18835d2b drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19965431 drm_framebuffer_reference -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a4495d7 drm_legacy_addbufs_agp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1aab9b34 drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c163766 drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d9615de drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd9d1fa drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ec205b6 drm_platform_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ece7ad5 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2063fc2e drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x224350a5 drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x228c4674 drm_unplug_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2505158b drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x252e9f73 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2541a705 drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x260b5f3c drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2616dd30 drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x261beb51 drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26bd28df drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27033be2 drm_encoder_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2756e2da drm_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2aa1c05e drm_vblank_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b81ae73 drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d57c380 drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e0e5b03 drm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ee74db6 drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f569507 drm_atomic_legacy_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x300cc62a drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30517614 drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30e96f68 drm_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x311f2978 drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3253a9f4 drm_mode_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x331dab3d drm_modeset_lock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x33409159 drm_legacy_addmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x346127a7 drm_global_item_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34c8a32b drm_edid_to_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35e3ec5f drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35e57da6 drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x361c0b3f drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0x379a9a72 drm_modeset_backoff_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37d6cafb drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x389c015f drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38bd6784 drm_of_component_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x393fc7d8 drm_legacy_idlelock_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a19ba1b drm_atomic_clean_old_fb -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d5ccefe drm_panel_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d8283c8 drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d9f69f4 drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3df0805e drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e8799ce drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4093628b drm_property_reference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42f21018 drm_mode_validate_basic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x430bd676 drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x431d8e6f drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x443f658e drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x44772fb1 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x46559db8 drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x46757c83 drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x475e0ea5 drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x486a6490 drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x489be956 drm_plane_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48bdaa38 drm_get_pci_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48c141be drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4947ed47 drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a1a1f6b drm_mode_hsync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b379e99 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bdbb056 drm_atomic_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c799d2f drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d803561 drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50ae2108 drm_platform_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51682ded drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51da6807 drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51db353a drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x521899fd drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x532fe010 drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53ac6c66 drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5491d11f drm_crtc_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54e2200e drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x576e32ae drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58961d8d drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a268d54 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ad38dba drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b5a8d83 drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cf3812c drm_legacy_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d865671 drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e49a12d drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ef89ff1 drm_bridge_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f05bd4d drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60731d6a of_drm_find_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm 0x61e09e06 drm_mode_create_dirty_info_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6282dea2 drm_agp_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x630ea75f drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x656a06e0 drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6628ef6c drm_modeset_legacy_acquire_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x685ed55b drm_legacy_ioremap_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x686fe5b0 drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68f60d2b drm_pci_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a08f241 drm_legacy_idlelock_take -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bd5a3a6 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c9f4668 drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e008b6f drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x70c31756 drm_framebuffer_unreference -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7162c1e3 drm_mode_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7294ed4d drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7318315e drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76adaca1 drm_mode_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76b1012f drm_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76cc780f drm_panel_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a9c9bb5 drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e90081d drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8075618b drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80f03d6c drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81d5d9be of_drm_find_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82ff02e5 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x837c85bb drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x860b8aa5 drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86bef0b7 drm_agp_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86f381a0 drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x87c7f5d6 drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a3e230c drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8af33a7f drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b2232d4 drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b9d01d4 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ce51fc7 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8db0df4f drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90769c45 drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90d4503b drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91ae50f3 drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x920c449e drm_mode_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93ae9582 drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93ef855d drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9476ae88 drm_agp_bind_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x97ce2d01 drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x98179b93 drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99a7194b drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c015996 drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c29af72 drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d3d7720 drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d567e1f drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ea68098 drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f28689e drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa02938ad drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa05a434f drm_agp_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0a81236 drm_prime_sg_to_page_addr_arrays -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2174f03 drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa295859f drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa33193fd drm_ati_pcigart_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa335d2d8 drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3e3f79a drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa54f6e34 drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa72401c9 drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7bb19cd drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa843b8b1 drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa85f8cd8 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa967535d drm_bridge_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab227727 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac86fc51 drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad355dc4 drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xada38bfb drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xadd54a2d drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae377d30 drm_bridge_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae452d6d drm_of_find_possible_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaedcaf53 drm_mode_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf9d7937 drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb07d056c drm_pcie_get_max_link_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1020cb9 drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb166ba63 drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb20cd26c drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2d4a330 drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4863fae drm_mm_dump_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb657a78a drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb75a34ad drm_atomic_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb78ae5f3 drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb79e8e80 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8bd6efc drm_property_unreference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8deafc2 drm_vblank_no_hw_counter -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbae937ca drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb5dd223 drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc424d90 drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbca59d56 drm_pci_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdfd56da drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbec62e36 drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfe988dd drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc03ebe0a drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc09d2156 drm_connector_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc255922b drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc32678c0 drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc46ce141 drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc494dc6d drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5170209 drm_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc76681e7 drm_pci_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7673406 drm_bridge_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7dd9798 drm_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc979f333 drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9cc5cda drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb536fc2 drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbb5b53f drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc78f490 drm_mode_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcddad599 drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce5834f4 drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcef06a27 drm_dev_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf19517a drm_legacy_getsarea -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd03e1111 drm_vblank_post_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd04a9e93 drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd068ed11 drm_agp_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0c4a7e1 drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2422725 drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2c79434 drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2d9217d drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4b5eab1 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4dafc61 drm_legacy_rmmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd84ed423 drm_crtc_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd852121b drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xda066db5 drm_legacy_rmmap_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc80028d drm_ati_pcigart_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd6d12a8 drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xddc97ca2 drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf4c4cfb drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe137cabe drm_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe17da843 drm_gem_dumb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2ffd7a5 drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe30e88d8 drm_modeset_lock_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe31065a6 drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe32a287e drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe33abd1c drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe360d3b2 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3679205 drm_modeset_unlock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe400c1b1 drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4345b9d drm_legacy_addbufs_pci -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe49dafac drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5643777 drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5e95fd3 drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe60827f1 drm_pcie_get_speed_cap_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe85e60bf drm_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8ba4a31 drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8e12c94 drm_irq_install -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe95b2b58 drm_select_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9665599 drm_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeaf82fbb drm_agp_unbind -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb87c5ef drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec035ab0 drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec05a824 drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec3fb11c drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xee1f1024 drm_pci_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xee7dec66 drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xefaf35fe drm_dev_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf09f291e drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b098be drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf30d971f drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3ea3df5 drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf493cad4 drm_vblank_pre_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6c96ed5 drm_atomic_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7b91aee drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8935289 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfac6f1e9 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfba18495 drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc4af8b3 drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfffbecd7 drm_pci_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0046d90f drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0053c1c9 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01c9d739 drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02cdcd7c drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x047c6f33 drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04a1615b __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04c688bc drm_helper_probe_single_connector_modes_nomerge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x064609fa drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09af865a drm_fb_helper_single_add_all_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a52a108 drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b93e5b7 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b9f1c45 drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0bf2683a drm_atomic_helper_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0da42792 drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ef211ed drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f30bfe5 drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x108179ce drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1373bf34 drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1383d287 drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13e142c6 drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15094ece drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1566b23c drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19e9f457 drm_helper_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a53c26e drm_fb_helper_add_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d26355f drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e98e0ea drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ef3e0c2 drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f9902f8 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25103320 drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x265af4da drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29a1a868 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2aba8a63 drm_atomic_helper_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2bd9203e drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c46f8dc drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x300266dd drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3098bc8a drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x315eb69f drm_dp_link_configure -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x352ccf1c drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x388f1f07 drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b677977 drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3da674db drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e20283f drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ec38f2c drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f3e2bee drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x411d8c9e drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42253ad8 drm_helper_crtc_mode_set_base -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43faba7b drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45b41bcb drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45efa9d7 drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48cb88eb drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4990a50c drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49b231f5 __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a594770 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e6d5c6c drm_plane_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4fe6ad41 drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52ee4878 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x532457d2 drm_atomic_helper_legacy_gamma_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5716ee2d drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ba96e5d drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e92dcab drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6069ebf8 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6076125e drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63a0dffd drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64cc07f3 drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x652d8ba5 drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65515310 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x672721e8 drm_helper_crtc_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6818c3df drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68df1922 drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a247e17 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6fb1e7e9 drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x700ca305 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711d97eb drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73b04296 drm_fb_helper_remove_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77162fe9 drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78ffeca3 drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b6aed22 drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bc86a9b drm_fb_helper_unlink_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7cab15ec drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f13a5dc drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fb1728f drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81112aa9 drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8248d4cf drm_has_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83108861 drm_primary_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85a4d57d drm_dp_link_power_down -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85f9893d drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86e0e4a9 drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86e66d3a drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8722fcb2 drm_atomic_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87333994 drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88bd557d drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x890938a8 drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d53dc7b drm_kms_helper_poll_enable_locked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f881211 drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91a9ed89 drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94fd4993 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95fe50e3 drm_fb_helper_fill_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9724d9ba drm_atomic_helper_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b92da8a drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e3afebe drm_dp_link_power_up -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2faaa1f drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9a3d1e2 drm_plane_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9e5b90b drm_dp_aux_register_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaaf4534d drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xabdb89e8 drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3b10400 drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8ae64ac drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb95dc791 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba400c80 drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbec878e3 drm_fb_helper_release_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf1d36fa drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3dab5bf drm_fb_helper_fill_fix -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4906f2b drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc604c475 drm_primary_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6efc861 drm_dp_mst_port_has_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7bb5ad5 __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc868cfab drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbdb695d drm_dp_link_probe -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce98a1a2 __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf409b10 drm_pick_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7439656 drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd92396b8 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda87a8e2 __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdcf29883 drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdeab6f37 drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfdf12e0 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0879346 drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe172f01c drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1a13b38 drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe83b94e7 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xebc35058 drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xecd9f1c5 drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedf428d2 drm_plane_helper_check_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0cfd779 drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf132ffbf drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf17f15b5 drm_dp_aux_unregister_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf21f4f52 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf24e9926 drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3ee8343 drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4bcf453 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf82c8e6e drm_atomic_helper_framebuffer_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbaded6b drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x04da80ee ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x05e550d5 ttm_bo_synccpu_write_grab -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x062fe0ee ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0a1d6ffc ttm_bo_dma_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132b05be ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x13c4fe71 ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1d3a013e ttm_mem_io_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1daeff25 ttm_mem_io_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x20060d98 ttm_bo_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x20072287 ttm_mem_global_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2293cbcc ttm_bo_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x238cd3d0 ttm_bo_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x25c461ac ttm_bo_evict_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2626df5a ttm_mem_global_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x340f172f ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3c6472b1 ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3ea02b72 ttm_prime_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4215724f ttm_page_alloc_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x48826bac ttm_bo_move_ttm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4a4c05a0 ttm_bo_synccpu_write_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4f77ca1e ttm_bo_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x52af543e ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x533cf084 ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x546eb157 ttm_fbdev_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x547de248 ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a8fdfea ttm_vt_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5b599916 ttm_dma_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cf59609 ttm_bo_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67b1d568 ttm_bo_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6814de70 ttm_agp_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c012161 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6e1fd020 ttm_mem_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x70b4772c ttm_tt_set_placement_caching -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x730dca8b ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x73d02ec1 ttm_bo_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x785dc03e ttm_bo_manager_func -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7c4b4ff5 ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d55da85 ttm_read_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x807a0d95 ttm_mem_io_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x817e6b63 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84a13931 ttm_write_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8833cb0f ttm_agp_tt_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89a443de ttm_write_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8cc208c8 ttm_agp_tt_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d14adbf ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8dfd0715 ttm_bo_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9645138a ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9694deeb ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99633a83 ttm_tt_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d0eb91 ttm_ref_object_add -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa2a129fd ttm_suspend_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa73de2a9 ttm_vt_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb83c6470 ttm_lock_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xba79f8ff ttm_pool_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbe312ad5 ttm_pool_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc45aa874 ttm_bo_mem_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc46049ff ttm_bo_del_sub_from_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc48a41f5 ttm_bo_swapout_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc4936a35 ttm_dma_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc571405c ttm_bo_clean_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5f0c2da ttm_read_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcbb73422 ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf36d102 ttm_mem_io_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd692aff5 ttm_bo_init_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd7f51742 ttm_suspend_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdce3a3cf ttm_object_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe1e92458 ttm_bo_add_to_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf3820df1 ttm_mem_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfa52d445 ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfac14a06 ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x09300e1a i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x46401967 i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xa8d4c4ad i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x7508e0b5 i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xeea7f362 i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xb3d4d818 amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0086984a mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x124494df mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1a854cdd mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x234dd0c9 mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5793a77a mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x72300cdb mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x74b4006a mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7807c0dd mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7f9b28ca mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8345377b mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8bb8fe30 mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x95a835ae mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9dc7e583 mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd5d33b5a mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xef39844c mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfb2d6342 mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x39709b29 st_accel_common_remove -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xcd225a4e st_accel_common_probe -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x595af9fe iio_triggered_buffer_setup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x5a2c9a3a iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x019f7e24 iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x052ca146 devm_iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x5f82f2aa iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x72c2e953 devm_iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x17828506 hid_sensor_read_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x2a545e58 hid_sensor_write_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x38c1b3c4 hid_sensor_write_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x586d662e hid_sensor_read_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x61a1d982 hid_sensor_read_poll_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x9bbe814f hid_sensor_parse_common_attributes -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x0d4ff815 hid_sensor_pm_ops -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x5ac86a30 hid_sensor_setup_trigger -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xda0643c4 hid_sensor_remove_trigger -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xebbc541e hid_sensor_power_state -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x01118dc5 ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x15122980 ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x1519f9d6 ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x1969a977 ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2b9a90eb ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3d920e96 ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x6bcf4792 ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xdc1988ab ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf0b7d6a7 ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x3bb11ed6 ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xb3e2906e ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xc6743ad6 ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xcd72142d ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xeacbc386 ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x3c2c8016 ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x5307f5c2 ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xcf27ef92 ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x081329e8 st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x15d69531 st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1bf1ac15 st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1ee8857c st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x23ece8e9 st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2574e31c st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x29d6c40b st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3856b938 st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5d2b797d st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x635fc7ef st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x660ce052 st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x67efe126 st_sensors_check_device_support -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x6fc48bbd st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x826dcd4b st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9125259e st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x940c90e6 st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xcc001f16 st_sensors_get_buffer_element -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x8f825604 st_sensors_of_i2c_probe -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xa5e61150 st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xc4630f54 st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x9731d58a st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xa0ea2adc st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/humidity/hts221 0xde9ba360 hts221_probe -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x8dc3600f adis_enable_irq -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x9488666b adis_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/industrialio 0x0c6877ae iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0x19f12b93 iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0x1a6be0b8 iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x2c944d4a iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x2d969ec6 iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x36888d8b iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x40ca0f35 iio_triggered_buffer_postenable -EXPORT_SYMBOL drivers/iio/industrialio 0x45749962 iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x4b7a4f1b iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0x53db87f0 iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0x5a856f5a iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x7618868a iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x781c351e iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x8e61aefa iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0xbef9ed99 iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0xc1850e6f iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xfd82aa0c iio_triggered_buffer_predisable -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x09dfa086 iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x754aa08f iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x0e6a9bee st_magn_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xf2f5f4df st_magn_common_probe -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x819092cf ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x21d1a0d5 st_press_common_remove -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xdb5ed199 st_press_common_probe -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x049ace30 rdma_addr_find_smac_by_sgid -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1ea5767b rdma_addr_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x32a8402c rdma_addr_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x617528b8 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xd244d39d rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xea0144c9 rdma_copy_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xea06186c rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x037f3787 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0498c93c ib_send_cm_apr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0bf8d338 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0c078f00 ib_send_cm_lap -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2d9361d0 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x32ffe38e ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6568dda3 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x73ed0b86 cm_class -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8a90c7a0 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa14f3c17 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xadfbf5ad ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb89afa35 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc8ad7e6b ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd5b3daa8 ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xda40b59d ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe523c58d ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf877d8d1 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf8a2b6c3 ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0631d7af ib_dealloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ce874da ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1030eb67 ib_find_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11e5c9f0 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19d02f9d ib_query_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1bfedffa ib_destroy_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ce14b66 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f822b97 ib_alloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x200208b6 ib_create_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x203937f9 ib_umem_page_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2084d88c ib_dealloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26cc232a ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x295561cd ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fa19101 ib_get_dma_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x344b90a0 ib_create_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34580940 ib_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3882c594 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40b23c15 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42c915b7 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4348b7b0 ib_dealloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x442b6995 ib_init_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44ca3d30 ib_alloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44db1045 ibnl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48f0f4ba ib_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ca837a2 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4daf6627 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x537a7f10 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54fc4c51 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c3620e8 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f3b916b ib_dereg_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60ab1d68 ib_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b7bc1ac ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6efa0e22 ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72f470fd ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74fec50a ib_destroy_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a8c1cb9 ib_find_cached_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7cc1d643 ib_get_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8454db42 ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8515f9c1 ib_get_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88c12dbd ib_query_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89db17dd ib_alloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b0515b0 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ca87c07 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90d6f467 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91fa087e ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93cedd6b ib_fmr_pool_map_phys -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a45cf90 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c461fc3 ibnl_add_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9dc7578f ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9fbdc2e8 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9fecb98b ib_find_gid_by_filter -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa158f45e ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3345ef3 ib_destroy_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaeeaef3f ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf0bc30d ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf8b76f4 ib_fmr_pool_unmap -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2a5c5e3 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3106919 ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb49a8e14 ib_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4d724d3 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5cd9fad ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7d188ce ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb88aea70 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93fc0a6 ib_create_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbbe2947d ib_resolve_eth_dmac -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe0f7675 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc022760a ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2e04fcb ibnl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6528732 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8fc52a0 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda8eeb0a ib_dealloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe13da455 ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe37a469f ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3b12480 ib_create_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5708da7 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8c37e16 ib_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec2f9a7e ib_destroy_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5da0d28 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf764073a ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf821e17b ib_modify_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9385f37 ib_umem_odp_map_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfea4c8e9 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff6465e0 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x1793506e ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x1d3ae6a5 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x42327eaa ib_redirect_mad_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x432e1f4b ib_process_mad_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x4574a5fe ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x5f473628 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6e678932 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7dab1e8c ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x8740edd0 ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x8b065c3b ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc7a39be2 ib_register_mad_snoop -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xe926ea8f ib_cancel_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xf5ec178f ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x32b0a7c8 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5328d7a6 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x77c6aa1e ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x879d9b07 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x88e819ee ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x96c69819 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9a1cd50d ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xa6469cac ib_init_ah_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xa8f921ea ib_sa_service_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xaed99867 ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xc2fec03a ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x27ce3e3c ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x948c0c4b ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x013d2169 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0d1cc2fe iwpm_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x31adc0a8 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3481c540 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3d42933d iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3eb7910b iwpm_ack_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x42f12ecc iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4b1946ea iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x66da2f03 iwpm_mapping_error_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa0e84551 iwpm_remote_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb0f8cb35 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xec9d540d iwpm_add_and_query_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf34e9f31 iwpm_add_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfd6f2691 iwpm_register_pid_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xff36a33a iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x039d9af8 rdma_set_ib_paths -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0ac7bac0 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x10af1894 rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x14229cb8 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x19f5582e rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2fc57ea6 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x310fd654 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3e4faa53 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x497797f0 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x535f9eac rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x55c433e6 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7ba44dcc rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x876ef957 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa25f50df rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa5dcbfb3 rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xab2cd2bd rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb1b2dede rdma_create_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb5186d54 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd80ad1be rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe9ef3b3d rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfae94e7b rdma_accept -EXPORT_SYMBOL drivers/input/gameport/gameport 0x1e7bbaba gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x2ee877fb gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0x3d7e073e gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0x44629d8b __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x687b6f6a gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x9ffbd652 gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0xac98ff00 gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0xc0d0a3fc __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0xfc55e4a6 gameport_close -EXPORT_SYMBOL drivers/input/input-polldev 0x5eb6dfbb devm_input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x62abce6d input_unregister_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x685b4ae6 input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x7cc4cbf7 input_register_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xbf1cd4f6 input_free_polled_device -EXPORT_SYMBOL drivers/input/matrix-keymap 0x875f97af matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x1e80bd0b ad714x_enable -EXPORT_SYMBOL drivers/input/misc/ad714x 0x49c64dd4 ad714x_probe -EXPORT_SYMBOL drivers/input/misc/ad714x 0x9029bf4a ad714x_disable -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x12f67bed cma3000_init -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/sparse-keymap 0x01d4e257 sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0x29cd0660 sparse_keymap_setup -EXPORT_SYMBOL drivers/input/sparse-keymap 0x72555ca6 sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0xbc71ea39 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xc2455835 sparse_keymap_free -EXPORT_SYMBOL drivers/input/sparse-keymap 0xf55ce2bb sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x7920df34 ad7879_pm_ops -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x9eb07d44 ad7879_probe -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x1cd9a357 capi20_put_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x1ee650d0 capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2420b139 detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x27ed3528 capi_ctr_suspend_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x36d26781 capi_ctr_resume_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x663a2c17 capi20_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x68056bda attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71bf7238 capi20_register -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa7c4fd6c capi_message2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc10fe128 cdebbuf_free -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc5420cb4 capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd066fd45 capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8ad9bd1 capi_cmsg2str -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x1a0b5b7e b1_parse_version -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x218c43e6 b1_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x37d15098 b1_alloc_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x3ce43a0a b1_loaded -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x4070bf07 b1_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x54a244b4 avmcard_dma_free -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x775094e0 b1ctl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x7ef65bbc b1_getrevision -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x95878bdb b1_load_t4file -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xa89d4a40 avmcard_dma_alloc -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xa8dd63b6 b1_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb0f0ff40 b1_free_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb3972a5e b1_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe08c8639 b1_load_config -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe6aa19bb b1_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x1aa38a52 b1dma_reset -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x450721c0 b1dma_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x6b9f9721 b1dma_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x7068cb96 b1dma_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x91d39964 b1dma_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xb3777ecb b1pciv4_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd234484e b1dmactl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd8500553 b1dma_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xdf2bcddd t1pci_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0x29562993 b1pcmcia_delcard -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x56878c84 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x6d49185b mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x74038466 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xaedf19ff mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x161ccfbd mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x62600a6c mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6fe1ca04 FsmDelTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x94671706 hisax_init_pcmcia -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9f987c85 FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xa1bc94b9 FsmInitTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x377c0392 isacsx_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x9d00331d isac_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xbfbd9406 isacsx_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xd6f8dcfe isac_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xdec3d36a isac_init -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x201efeb4 register_isdn -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x3623b6a6 isdn_ppp_unregister_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xca6cd489 isdn_ppp_register_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x13cc3f2a mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1577c899 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x27ccac86 mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2f92c9db mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3ac39d10 mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x569ca0e7 queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5da6e34a recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x72b1ccfb mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a1d8552 mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9b7215a7 bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9dd6ae0d mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa0365e50 mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa294f757 create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa3030fe2 recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa8819f49 mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb2098d43 recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc7a682ef get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc87a8b6d dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcd769131 mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5c21de4 bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xebb4d62e recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf69db387 get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfe45dcdf recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/md/bcache/bcache 0x0c4d0956 bch_btree_sort_lazy -EXPORT_SYMBOL drivers/md/bcache/bcache 0x10dc0d06 bch_bset_insert -EXPORT_SYMBOL drivers/md/bcache/bcache 0x15f5d031 closure_sub -EXPORT_SYMBOL drivers/md/bcache/bcache 0x562548da closure_wait -EXPORT_SYMBOL drivers/md/bcache/bcache 0x66d28e22 bch_btree_iter_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x6969b5d8 bch_bset_init_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7b55ca4f bch_bset_fix_invalidated_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0x82eda3b8 closure_put -EXPORT_SYMBOL drivers/md/bcache/bcache 0x9e8b3cee bch_btree_keys_alloc -EXPORT_SYMBOL drivers/md/bcache/bcache 0xab2d2b84 bch_btree_insert_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0xad29a6f5 bch_bset_build_written_tree -EXPORT_SYMBOL drivers/md/bcache/bcache 0xaec09a2b bch_bkey_try_merge -EXPORT_SYMBOL drivers/md/bcache/bcache 0xaf77343c bch_btree_keys_free -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc04554f7 bch_btree_iter_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc0b9ef00 bch_btree_sort_partial -EXPORT_SYMBOL drivers/md/bcache/bcache 0xca580595 bch_btree_keys_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe47e0829 __bch_bset_search -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe4b49fdf closure_sync -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe67c2d16 bch_bset_sort_state_init -EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers -EXPORT_SYMBOL drivers/md/dm-bufio 0xa7978f56 dm_bufio_forget -EXPORT_SYMBOL drivers/md/dm-log 0x1cc33576 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0x644b4c40 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0x7f10f4be dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0xa97b3726 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x04793551 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x0ff09e86 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0xad685a6d dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0xd483090c dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0xe52cfb89 dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0xf5045165 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/raid456 0xae2a4a49 raid5_set_cache_size -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0ecdf560 flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x13920412 flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1a5a00f1 flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x26745d5d flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x592a783d flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x67c535be flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x760d4cfd flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x78970c03 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x79799a9f flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb3b832f9 flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc4309b03 flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xcb3f7eae flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd1bd1795 flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/cx2341x 0x073856a4 cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update -EXPORT_SYMBOL drivers/media/common/cx2341x 0x30cb4cd7 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0xba7b4ac7 cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu -EXPORT_SYMBOL drivers/media/common/cx2341x 0xc8d8c2cc cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0xd79ce117 cx2341x_handler_setup -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0xaaf556c4 cypress_load_firmware -EXPORT_SYMBOL drivers/media/common/tveeprom 0x0d6a295c tveeprom_read -EXPORT_SYMBOL drivers/media/common/tveeprom 0xee069a3a tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0a9bef39 dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x19591134 dvb_ringbuffer_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x200c759e dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x22d6ce4a dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x28ee2ae8 dvb_ringbuffer_flush -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3abe9eba dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3f7224d5 dvb_ringbuffer_read_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4240aaa7 dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x440cbdc2 dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x44aa1f51 dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4d3b9a9c dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x532cf04d dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6312a121 dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6427f9fc dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x65886421 dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6657a7d4 dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x76489abe dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x78d62338 dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7ba5d8bd dvb_ringbuffer_flush_spinlock_wakeup -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7c5b836f dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x86b5cacd dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8e47dce5 dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9dde17f7 dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbffe2e45 dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc776d01f dvb_dmx_swfilter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xca849d5f dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd1a0469c dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd3ad0aef dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdb576668 dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xde75f5ec dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdff85e60 dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe2ec8277 dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xef0da71a dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf99e8970 dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfbc2ed80 dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfca975ac dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfd9bba12 dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xff62fd0b dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x5f38fee2 af9013_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x579e23ef ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x8d22c5ff atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x10f28360 au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x18b729ee au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x4b5f8c71 au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x61f1630c au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa5f16e60 au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xbceefa7e au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xc46b656b au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xc6c2fbbd au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xdd4885a9 au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x482d8b71 au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x4a86535a bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x3a7a8c38 cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x508ffc1a cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xf5e340e4 cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x4b62f9b7 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xa78e3d92 cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x0fc4a2b5 cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x7c9a2506 cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x0e57ca20 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xaff3243b cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xd5a8de90 cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x4f2699fa cxd2841er_attach_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x5d74aae2 cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xb737c056 cxd2841er_attach_t -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x063717c8 dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x3b29c41f dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x3bb8b199 dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xa940b65f dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xbdf88851 dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x12ef8a56 dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x16bd74ad dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x232ab904 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x461bb7e8 dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x47ccef9d dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4fa6ae40 dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x59290e6a dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x705058c3 dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9aef36f9 dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc66bdeae dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc831565c dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd68923d6 dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd8097638 dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe0e31af6 dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe8b4eb78 dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xd18182ca dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x1c15d404 dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x2c210cb8 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x82c3e1f1 dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa7ce90c2 dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xae9089e7 dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xea3e58e5 dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x088ff522 dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x2bcc24b3 dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xace1f957 dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xafb155b4 dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xd0157b47 dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x98a55a22 dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x567973d0 dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x92e103eb dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc20b4ef9 dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc9f4f273 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xf731ef38 dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x0f1ef50a drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x7467d77c drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xee56d306 drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x75536a25 ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x698eaf97 dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x66c2c458 ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x6f0c0a96 horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x4c7bfd9e isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x965bef8f isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x08b05ba5 isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0xfa0a1622 itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x53e09318 ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xbc757c97 l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x0d32a28b lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xa2e562ff lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x3d1ff470 lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xa44130be lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x2b3af399 lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x39e55967 lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x0676e084 lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x6572cbe2 lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x2891d6a9 lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x1d3d90a2 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xf57b0de5 m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x3db9def2 m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x549a7e05 mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xd3d0c9ba mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x47b3f5dc mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x3b7a8321 mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xec324c1b nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xd4c983ec nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x57ecbc2e or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x055c6425 or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xe754b0f0 s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xf59133dc s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x0762dbfe s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x15143a8c s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x8cb35659 s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0xdb65802d si2165_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xefd89ec5 si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x9cd9294e sp8870_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xcf6ceb8f sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x7b38af2e stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x1df3e655 stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xc599c115 stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xf3d7300b stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xeab8178c stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xb68c0191 stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x34299ebd stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x3770a6a7 stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x33c86536 stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xf7c9ff4d stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x3b2f590f stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x0c14c8c1 stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xfb09ffdb tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x17d9f975 tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x7279c1af tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x8085cde3 tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xb490658b tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xdd00f98b tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x3f460ae9 tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x57c08c64 tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x240b5aa9 tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x6937acf0 tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xedad8745 ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xd6397b94 tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x5b4a5875 ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xd229094d ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x548678e6 zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x6f67b5bd zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x46ba9f11 zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x0d8e70d9 flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x0ee5be31 flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x304694b1 flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x3f3ce4d1 flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x69a451c0 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x8a9c3361 flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xa9ddbf20 flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x6eb84ff6 bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x9f10db1b bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xb772fedf bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd82cdddd bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x1b1eb371 bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x22ebc48c bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x689adccc bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x36604c0b rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x61ebf150 dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x6a95dcca dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa931da27 dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb356aeab dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd055be72 write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xda790cd8 read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xdd403cae dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe153a589 dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x72569ca3 dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x33e6981e cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x6b05e9f5 cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x73ced074 cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xa12c4cc4 cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xc670df0b cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xea7a5708 altera_ci_init -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x0d70d320 cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x1c7a5083 cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x579ba79c cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xa0cc9999 cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf37a736c cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf4dbf2cd cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xfc03da5a cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x9cb2ef1e vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xa28ca200 vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x0ed5ca50 cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x4d16718e cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x8e2161ea cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xf86f4bab cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x45bb3284 cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x4c26a911 cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x8db39698 cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x964976ed cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe1b79310 cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xf68fff44 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xfe133446 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x08f66003 cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0d6100d3 cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1cd8e567 cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2079dd91 cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2c012b0c cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x32dc92c6 cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x45790ae9 cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4644bb2c cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x54554de0 cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x76c85dd4 cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x79196b4e cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7db3c140 cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x80a0fc4a cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x86eebb01 cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb460d179 cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xba69122b cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc94e55a0 cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc9db4887 cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcc869229 cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd4171120 cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0175f4c7 ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0f67b717 ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x35d16472 ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x38eefb3d ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x50a0f8d1 ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7523c000 ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9630c2d1 ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9995fa23 ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb62205a5 ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xba8e0e4a ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbb4e4549 ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc68d2d9f ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xca97129b ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xca9c6e09 ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xdaa8cb30 ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfa20dbb1 ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xff2b4611 ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x03966391 saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x33020b77 saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x35c28bc7 saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x36144b81 saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3edb3ee0 saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x44d91a8d saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4d6b485b saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8356850c saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa729bc24 saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xaadc0e68 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe5b4bfd6 saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf5491d42 saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x29a16393 ttpci_eeprom_parse_mac -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x09fc590c videocodec_attach -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x801c12b9 videocodec_unregister -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x8bad0cf6 videocodec_register -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x9c366670 videocodec_detach -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x86d23270 soc_camera_host_register -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x873a4fb6 soc_camera_power_off -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x8b2de211 soc_camera_xlate_by_fourcc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x8c1c2065 soc_camera_host_unregister -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xa746a974 soc_camera_apply_board_flags -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xb1888365 soc_camera_power_on -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xeeb54d43 soc_camera_power_init -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc -EXPORT_SYMBOL drivers/media/radio/tea575x 0x21d43bcc snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x4bf279cc snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0x5f55b7df snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0x7de196f1 snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0xbc781565 snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0xd07f1662 snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xe503e4b5 snd_tea575x_exit -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x13076c2c lirc_dev_fop_read -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x30a4d0ae lirc_get_pdata -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xa229fb5f lirc_register_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xac125b52 lirc_dev_fop_ioctl -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xd0f291a6 lirc_dev_fop_close -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xd74aeead lirc_dev_fop_poll -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xdb7e04de lirc_dev_fop_open -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xece5ee04 lirc_dev_fop_write -EXPORT_SYMBOL drivers/media/rc/rc-core 0x9a7b6da4 ir_raw_handler_unregister -EXPORT_SYMBOL drivers/media/rc/rc-core 0xf5d04eef ir_raw_handler_register -EXPORT_SYMBOL drivers/media/tuners/fc0011 0x99416f30 fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0x3e988227 fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x538483c1 fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x8a488b96 fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x92ea31cf fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/max2165 0x7f7ac03f max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x657dc536 mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0x3e068877 mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0x064e3f52 mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0x42e24fde mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xddab6aae mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0x3b4d4cf4 qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0xaa0a4196 tda18218_attach -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0xdc6ce380 xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0xc92b6df2 xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0xaf840127 xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x70ee6b0d cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xc4cd511b cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x2c0f5bc8 dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x32bfbaad dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x43027553 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x446a1579 dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5167cc96 dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x964b4149 dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xadcf68c9 dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb9ac8c47 dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xdd631f6b dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x265ec6df dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x5ed3b91a dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x82e709b7 dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x84c8aece dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc290bbbe usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc70e8b42 dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xee7744c0 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x2a4e209b af9005_rc_decode -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2f0256ea dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2f076990 dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3b78c670 dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5f1a5501 dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7e8ee5d5 dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x88c88388 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb1c862bb dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc44601fb dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xcd6ebb90 dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe3a67e30 dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfc5ec8c1 dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x6749b4f5 em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x9697a1c8 em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x17b491ea go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x2737940e go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x2905034b go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x37bdc313 go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x56d2da93 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa3c837e9 go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xad80eff5 go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc3a25e01 go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xdd6546fb go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x30d0e296 gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x3536d82e gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5f0429d3 gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9f77d912 gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb3df5bc7 gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc0f806d6 gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xcf56e0c9 gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd79f22fc gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x82e94e85 tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xa2260bdf tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xf920f35a tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x8f2e61f0 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xa4e9603a ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xbc62f930 v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xd5e98159 v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xec766b2f v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x3b4f46f1 videobuf_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x3bed1824 videobuf_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x60f4cdb3 videobuf_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x71f237c4 videobuf_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x765d1b6a videobuf_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xcf1270b5 videobuf_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x5412ded4 vb2_verify_memory_type -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xd67129f1 vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x0f2adbb6 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x16ba7449 vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x8a296cb7 vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x9f887cda vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xe04997b8 vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xff510bef vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0x1723d762 vb2_querybuf -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x07d7581c v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0a2fea82 v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0a67ac4b v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x146a3454 v4l2_of_alloc_parse_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1d9eec28 __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x26ccc8e0 v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28f6f82a v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2acffd9a v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2c2bbebd v4l2_clk_unregister_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x31a5d868 video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x31bd7044 v4l2_of_parse_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x321538a0 v4l2_clk_get_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32aa5877 v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32f1be45 v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3316745b __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3d57cb26 __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4775f473 v4l2_of_parse_link -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4a4ed459 v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b3f4716 __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4d9da842 v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5018c2a0 v4l2_clk_put -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x52fe4229 v4l2_of_put_link -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x530fc537 v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5605ce20 v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x58c0d440 v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x59ee2726 video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5c4e0037 v4l2_subdev_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5e9f3a5b v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x60f4006b v4l2_ctrl_add_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6328a29b v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6618ed47 v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x69897a92 video_usercopy -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7359c338 v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7359cb6f __v4l2_clk_register_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7adb8fd2 v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7b1c7293 video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7c1f2665 v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7e0ef09f v4l2_subdev_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7ef7743a v4l2_clk_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fe13417 v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8062222f v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x81a95078 v4l2_subdev_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x90d8c31f video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa1e8dad7 v4l2_clk_set_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa59e3101 v4l2_subdev_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa7cff77e v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaad44c28 v4l2_subdev_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xabf82180 v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xafc522bd v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb1330341 v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb1e9aca0 v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xba0b854b v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbac4ae8b video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc855f07 v4l2_subdev_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbe6b4e5d v4l2_of_free_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc0c4eb45 v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcde00167 v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd2e39dbd v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd4b2fb08 __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd66eafae v4l2_clk_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd6e5392e v4l2_clk_get -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdecc9105 v4l2_clk_enable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe11b700d v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe5dc1f94 video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe6968ecc v4l2_subdev_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe732d040 v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeada232f v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeeaf6b71 v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf2cdc03e v4l2_clk_disable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf45e3072 v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf5621d12 v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf803ec5b v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfc34b3c6 v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/memstick/core/memstick 0x39b59809 memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5b5c17c8 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x829adf5f memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x897bed48 memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x8c9b5da4 memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xa29ee459 memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xae4bfdf3 memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xbbe01d56 memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0xc0add04c memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xd4baf157 memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xe86152aa memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xebc2fd2d memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xec87a2ed memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0xf758db85 memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0686df9c mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0cbbc1c8 mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0ee6e6e9 mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x20c19913 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x25333cb4 mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2baaef31 mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x388fbb7e mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x39f4faad mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4d1a4dbd mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4f277a3b mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x57731664 mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5d0140ab mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x61cf8639 mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6858291f mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7b408697 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x813e8983 mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x82166437 mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x906625cf mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x914a0986 mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x922606d6 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xae42b824 mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb1f8e1b1 mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb9722dc0 mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc4e768ca mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd575d716 mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd62543e5 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdb3558dd mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe62fac7f mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xeb6cbb50 mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0fd9bcf8 mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x10240952 mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2d61c569 mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2ee43cc9 mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2fe2f9bf mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x334327b7 mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3cc41bc4 mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3db999e1 mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x423e6d6a mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x524577f8 mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7b3b3def mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7d27a6bc mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x87a6e17e mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x88ab2b04 mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8a66314d mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8ed3dd3a mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9538fd29 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa05a7ac6 mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa829f46d mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xab2f4581 mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xaff9272e mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcad6757c mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdbb22f14 mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe2f2ac75 mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe3d715d7 mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe5c22193 mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf6e15ecc mptscsih_bus_reset -EXPORT_SYMBOL drivers/mfd/dln2 0x53a824a4 dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0x682c95a0 dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xdeee930a dln2_transfer -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x3ef8b18f pasic3_read_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x6a3448cd pasic3_write_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0d9a1b74 mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x212e1e2d mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6c1acb9c mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x70b86ed4 mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x833b91db mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x84cd5104 mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xad8648ed mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc81fcf5f mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xce52c44f mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xcf26341f mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf25e929a mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 -EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 -EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib -EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led -EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw -EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x6c76867b wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0xc97a373b wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x17d1240d wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x25eb9f94 wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x38d583c9 wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xba899db9 wm1811_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x09f6659e ad_dpot_probe -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x702b7430 ad_dpot_remove -EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x37cbc168 altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x3c6b0e2d c2port_device_unregister -EXPORT_SYMBOL drivers/misc/c2port/core 0xbac1380c c2port_device_register -EXPORT_SYMBOL drivers/misc/ioc4 0x67c8ccd5 ioc4_register_submodule -EXPORT_SYMBOL drivers/misc/ioc4 0xe2886e10 ioc4_unregister_submodule -EXPORT_SYMBOL drivers/misc/tifm_core 0x1940be32 tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x3f0cd07a tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x6dba8c50 tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x7e6a62b8 tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x886dc88e tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x9257b797 tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0xa1245115 tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xa22b64f7 tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0xaa400602 tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0xbfab9e1f tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xeed05089 tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0xf2c08c61 tifm_free_adapter -EXPORT_SYMBOL drivers/mmc/card/mmc_block 0x8bc6d57f mmc_cleanup_queue -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x195d525f cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x1aa48160 cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x293f294c cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7cc5f928 cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x9a211a3c cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xca173321 cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xeedd3364 cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x264a710b register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x625d59ee unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xa07d2265 map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xaf9f8790 do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xdb6caeb7 mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xa6167879 lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xf371e2b6 simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0x59dbed4c mtd_concat_create -EXPORT_SYMBOL drivers/mtd/mtd 0xd7fd226a mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/nand/denali 0x59e13ea5 denali_remove -EXPORT_SYMBOL drivers/mtd/nand/denali 0xeff9f486 denali_init -EXPORT_SYMBOL drivers/mtd/nand/nand 0x681284bf nand_lock -EXPORT_SYMBOL drivers/mtd/nand/nand 0x76594269 nand_scan_tail -EXPORT_SYMBOL drivers/mtd/nand/nand 0x7e28d0c5 nand_scan -EXPORT_SYMBOL drivers/mtd/nand/nand 0x894b32f1 nand_unlock -EXPORT_SYMBOL drivers/mtd/nand/nand 0x8d087a93 nand_scan_bbt -EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/nand 0x9c52d7cd nand_scan_ident -EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x85916b3d nand_bch_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x93c649d4 nand_bch_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xd9da3e86 nand_bch_init -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xd49938e4 nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xf5120453 nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x8cfcf75c nand_flash_ids -EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x6c095cd1 flexonenand_region -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x9698618b onenand_scan_bbt -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xcf3709b1 onenand_default_bbt -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xd15b8bbe onenand_addr -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x03382d4a arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1451e245 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x262bcf03 arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x60a57906 arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6183c669 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6453a676 arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6ff4a10b alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x76e78248 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x859055b8 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa9903e0f arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x5904f31d com20020_check -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x6bee3a3b com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xb1fc50d4 com20020_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5b97bc4e ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x61965cae ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x87c1e647 ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x95ba72fa ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xcf6eee11 ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd8712547 ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xde94041e __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xed6021f3 NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf1879108 ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xfae83cc1 ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0x6149edd1 bnx2x_schedule_sp_rtnl -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xdca9bc52 cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x08e36392 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0b05e42c cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4dbe8698 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x514498cd cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x599044da cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5e5755c7 cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5f18ba3e t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7c2d75d0 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x83db458b t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x91f2a8cf cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9c5c0049 t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xaaaf7300 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbda7795f cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd54b9251 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdc048030 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe1827c2c cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x076fbe28 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x08304fe7 cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0c26505c cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0d505ec6 cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1b78d03a cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x209b13ae t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x26f93a5c cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2fa71497 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x37a090c3 cxgb4_dcb_enabled -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4059e1bf cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4956e81b cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5091585a cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5e73f103 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6542b9a7 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x690f0cc1 cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6988ce11 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6c8afb26 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6ce3ad3b cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9874d089 cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9d305c59 cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa61b46c1 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa7394294 cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaafbf9f7 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb7700992 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc12d0b60 cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcf0a26fd cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd45f6cba cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd829fa30 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd9308a5d cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdbffac51 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe24305ad cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe33bb61b cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xeb0f160e cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf5346df5 cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x17e7699e vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x226a75ab vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x5db9384d vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x8bcdace1 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xe0f2eca7 vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xfbe8a5b8 vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x60df8509 be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x610a563f be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01943bac mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01e51368 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10617876 get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11594f37 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12b42f96 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b5f0bef mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d8a7b25 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x348c70aa mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e1ad8de mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x463f0df6 mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ffcdccf mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x547a29f8 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55b148a8 mlx4_test_interrupts -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5755ccc1 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6044b7cb mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x655c98dd set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b58e2c8 mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72019cc4 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7410c75f mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7752a9ca mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fe54094 mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8136953b mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f8337f8 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95f838b0 mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c1720b6 mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa041974b mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa55f1111 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa4c4d63 mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1c6c705 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb34604bc mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbae5cff0 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb6fee8d mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbda83bf1 mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1c141c0 mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8744a06 set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5f3192b mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed2afe79 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7cdc589 mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01165484 mlx5_core_get_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07667822 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0857aabd mlx5_get_flow_table_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0bc261dc mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb7287e mlx5_del_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f39c61a mlx5_unmap_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17c92064 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b3eb64b mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d013eac mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40daa128 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4abdc0dc mlx5_modify_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c98d1bc mlx5_unregister_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e8da409 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50502de2 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x546874de mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54a4a852 mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f691d43 mlx5_core_create_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6333fa4b mlx5_cmd_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67804d49 mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x788bc025 mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x821ab7b8 mlx5_get_protocol_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82324a3c mlx5_core_destroy_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84d02ee7 mlx5_core_query_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91a75fc0 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9386c918 mlx5_cmd_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5d2df3f mlx5_alloc_map_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6bb3d1f mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc539f0a6 mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc931f4de mlx5_cmd_comp_handler -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6a4cda6 mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdde67fbb mlx5_query_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde4b8749 mlx5_core_dump_fill_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe18d1a92 mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe369bccd mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5400610 mlx5_register_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6af33e4 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec97955a mlx5_core_arm_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xecbbbd91 mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4cf2c2e mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf70d3f5d mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa0d4324 mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc728a49 mlx5_add_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1cb16084 mlxsw_core_rx_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x58e335c6 mlxsw_core_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6a9d8ef1 mlxsw_core_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7bfb0529 mlxsw_core_skb_transmit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8c92142f mlxsw_core_bus_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc031ca7a mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcb5c8545 mlxsw_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd4f62d46 mlxsw_core_skb_receive -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee8e0771 mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa209d1af qed_get_protocol_version -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xc538eb2f qed_get_eth_ops -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x49c9e571 hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x53275ccd hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x58034c04 hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xd263d735 hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xfe48d341 hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x196ea9d7 sirdev_put_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x3c35b8e4 sirdev_receive -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x6bb77039 irda_register_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x7c8ae485 sirdev_set_dtr_rts -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x84f853d2 irda_unregister_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x851c39ff sirdev_raw_read -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x863a457e sirdev_get_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xa9561bff sirdev_write_complete -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xb1bfc081 sirdev_set_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xce339119 sirdev_raw_write -EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl -EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart -EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag -EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe -EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok -EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage -EXPORT_SYMBOL drivers/net/mii 0x0828a562 mii_nway_restart -EXPORT_SYMBOL drivers/net/mii 0x0cdc787d mii_ethtool_gset -EXPORT_SYMBOL drivers/net/mii 0x503b5c6d mii_check_link -EXPORT_SYMBOL drivers/net/mii 0x6e2d66f7 generic_mii_ioctl -EXPORT_SYMBOL drivers/net/mii 0x99d0c143 mii_check_gmii_support -EXPORT_SYMBOL drivers/net/mii 0xdb996f1f mii_ethtool_sset -EXPORT_SYMBOL drivers/net/mii 0xf5b4cdb6 mii_link_ok -EXPORT_SYMBOL drivers/net/mii 0xfe86b455 mii_check_media -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xb7130257 free_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xf4e57ace alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x62930de6 xgene_mdio_rgmii_write -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x656fbfe9 xgene_mdio_rgmii_read -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x79086b44 xgene_enet_phy_register -EXPORT_SYMBOL drivers/net/phy/vitesse 0xfdd4701d vsc824x_add_skew -EXPORT_SYMBOL drivers/net/ppp/pppox 0x0be4a037 pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0x5981fba8 register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0x9d4d8420 pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0x1c633b22 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x01f225ad team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0x28474b62 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0x3e94c922 team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x4743bf4f team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0x9f600f01 team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0xa771d606 team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0xcf9722f5 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0xe65009ce team_modeop_port_enter -EXPORT_SYMBOL drivers/net/usb/usbnet 0x22089e20 cdc_parse_cdc_header -EXPORT_SYMBOL drivers/net/usb/usbnet 0x47698e88 usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0x554f7c30 usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0x7de31b72 usbnet_manage_power -EXPORT_SYMBOL drivers/net/wan/hdlc 0x22f1c9cb hdlc_change_mtu -EXPORT_SYMBOL drivers/net/wan/hdlc 0x42f26b85 unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x5362228b detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x5f030a8c register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x8d5122c9 hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0x982abf64 attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xa2a55b1f unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0xa87e15a1 alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0xb77dc82e hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0xd3467b1a hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0xe084d91b hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x6d877d06 i2400m_unknown_barker -EXPORT_SYMBOL drivers/net/wireless/airo 0x22831f69 reset_airo_card -EXPORT_SYMBOL drivers/net/wireless/airo 0x8615edda init_airo_card -EXPORT_SYMBOL drivers/net/wireless/airo 0xfc6b3a94 stop_airo_card -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0e63b268 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2680d97b dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x57991a66 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x58f95cf9 ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x62a3ebb6 ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x837d2bb3 ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x905ff0d1 ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x93919c38 ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9e85c666 ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xbee0c177 ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe4331e8b ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xebc004cd ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x10b30a12 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x22a84b4b ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x36173d65 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x434c892c ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x47d2f9ae ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x660db388 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7317c99f ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x77da701f ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x960578ee ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x98e3b7b4 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa351cd92 ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa5c89f33 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xacf9b93f ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb654fe46 ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb6d0d18d ath10k_debug_get_new_fw_crash_data -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3d637a8c ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3f087e39 ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4b013feb ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x53557238 ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x69d2ce1e ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7cda4aa2 ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa1184c97 ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa4acd3ed ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa517876c ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa827c796 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc945e642 ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x01591fb1 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x08c7f2c8 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0a3969c0 ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x143f1507 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1613f90b ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1ced402e ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x26e5d096 ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4ce513ff ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6118df0b ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x72f39c4a ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8ec532ac ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa3a11cad ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaaffa8fe ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xabf5f1ae ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb750c4a9 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb76500fe ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb9848a6d ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xce27e8bb ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdb189f88 ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdbf4ec90 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdf3b7f1b ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xecbc0b81 ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf1b14f6c ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01e21f6c ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05643a5e ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x09d6e53c ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x09e1692d ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0dbf127b ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f1089af ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11d4411a ath9k_hw_cfg_output -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1319e038 ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x134662c3 ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x153a5113 ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x18e1d348 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19afa8f9 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a838606 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x20870bf2 ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x244c6cb2 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27420e4c ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2787d730 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x29f8cc0c ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a0e454a ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e954a32 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f888e28 ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x302873a8 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x326d3f3f ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x374004e0 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3c304ef6 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d6755bb ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4153df13 ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x41e2ab36 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x441b2e78 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x47157d97 ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48b4dd87 ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b26dd86 ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c5b10e2 ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4dfd23d0 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53a0bf7e ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54f34c6f ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x579bc1fb ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c308020 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5d0c71e6 ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5f98a809 ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x65f728f8 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66601cc8 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x67eb4ccf ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x686165fe ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b51b9cb ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d4badb0 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7060e1ec ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x73c8f038 ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x78487b5a ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7e612878 ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f27d8dd ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f936df2 ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x80848a76 ath9k_hw_request_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x80c22106 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85eb66ad ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x89adad62 ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8e6adde9 ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x94362a03 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x974bd96f ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98136bdb ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98244adc ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x994f9863 ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9955bb40 ath9k_hw_cfg_gpio_input -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x995b59cd ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9bea6438 ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa528ef09 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa89361d5 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad7f9b06 ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaffb63c4 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1a48c57 ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb69da15f ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6e4176f ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb96517c3 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbb5d41b3 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc0f8814 ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd2a3bfc ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd645fe0 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbdcb6a07 ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc09a0dec ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc36c727d ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc82fc8e9 ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcaf459f7 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc7d1a2e ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1541006 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1da1357 ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd5b3de78 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6754be7 ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd70efd20 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd7775ad4 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd7ceb1c9 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0292f4d ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe5ffdf2c ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe7ae6254 ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe82bd5d9 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xebdf8e8b ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xed9c203f ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeed184c5 ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf206f931 ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf246a160 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf47c6476 ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf55bf79a ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf81bdc51 ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf9d12cbc ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfaaa665a ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe83c839 ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/atmel 0xab9054b4 stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel 0xe7099d57 init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel 0xf6088d85 atmel_open -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x1e0f2340 brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x259ecb6c brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x2bd44c57 brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f7877e7 brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x458f755a brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x70dd67fe brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x87f38ca0 brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xc3b6d7bd brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd394afbe brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd413d90a brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd72daf12 brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xda537ccc brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xf0bff895 brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1d1e7e85 hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1f15fc42 hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x20a9e961 hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x275b2433 hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x356c58d2 hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3953294f hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x439a901d hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x455e253a hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7cd4a2a0 hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8257e1cb hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x99a1c1d6 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9ba8be81 hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbaa15e09 hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbdd31335 hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xcd4eecdf hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xcef62d57 hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd22e5db3 hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd8171a31 hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe92b36fe hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xeae34b20 hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xeb8b7370 hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf03e5f84 hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xfd3b0a0d hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xfd478ae6 hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xff173974 hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x00250ea6 libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x016e527f libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x27d7efc1 libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x303206b8 libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x3150d43a alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x45d0f93e libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5b5d997f libipw_change_mtu -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x60b7bd89 libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x623f4ffe libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x663fbc05 free_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x6d3e0bde libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x96a7d2d9 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa4db721f libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xaf2096d9 libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xca7ac3f3 libipw_rx -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xcfc1d75a libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd245e29e libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe333feef libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xeb7c3e37 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xef4e37be libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xff0fa236 libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x00cf9d99 il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x01a78984 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x01d6d4ec il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x02b4ff31 il_apm_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x04670a94 il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x067076d6 il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x068e7e9d il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x09b8c66e il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0be437ff il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x11fff9e7 il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x13064ba8 il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x158f65c8 il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1707b320 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x171ece6e il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x18330092 il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1890d57b il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1a044056 il_free_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x201f0fe9 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x20d853cf il_mac_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x22fa32e8 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x25abf2e9 il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x29642fa0 il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x29bd1208 il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2e935e46 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x369511ef il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3712dd0f il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x38d94a55 il_force_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x39b9b85f il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3da62e58 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3ef9af1d il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3fd0bfd3 il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x40d0eb6b il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x42ea7fbc il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4a1598b9 il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4a229496 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4c3ac897 il_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x510dffa2 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x523f07da il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x52f7bfb6 il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x56d2038a il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x571086c5 il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5a7ce817 il_set_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5fc0f24d il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6278f999 il_set_rate -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x63ecb310 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6401d447 il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6d6dab88 il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6df22c7d il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6e5b16f6 il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7073e506 il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x728b67ea il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x79488986 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7ac34b7b _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7da12bc1 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x85e38a85 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x86232868 il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8725b8e5 il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x878f13b9 il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8edfafa5 il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x96a7a2d2 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9a4c9fb4 il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa2e4491f il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa3334ad1 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa769ac83 il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa97dbda9 il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xacfd67b2 il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xaf52742b il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xafbc563e il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb26794ae il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb622dc4d il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb6f4164a il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb789fde6 il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xba54c075 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbb773d1e il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbc0c1e78 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbcf1e643 il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc0789b2f il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc1f0e18e il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc37cc70d il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc5d012cf il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc76e73bf il_leds_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc7970e0d il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xca558b74 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcbe3030b il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcca0d6ee il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcd88a55e il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd180ed0a il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd53f385d il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd7edcb7c il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd912e2c9 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe4da2554 il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe5b6dd22 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe6b36769 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xeb761007 il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xec3d8fe3 il_init_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xed168c16 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf6687540 il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfaf30d14 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfe93cfc0 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x08c6664d __tracepoint_iwlwifi_dev_iowrite8 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x4379786d __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x95a8ab3c __tracepoint_iwlwifi_dev_iowrite32 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xa2b6ec39 __tracepoint_iwlwifi_dev_ucode_error -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xb69add1f __tracepoint_iwlwifi_dev_ioread32 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xcd60e86e __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xd4f50457 __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x12f6e380 orinoco_down -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x12fb9d2b orinoco_up -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x1bbf874f orinoco_get_stats -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x2bcb421b orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x32f957b6 orinoco_open -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x34cd3dd1 alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x38a5cd58 __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x407cf594 free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x4bd72750 __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x4dd3aa1e orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5dea5bf1 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x7389157e orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x79533f21 orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb999cb4e orinoco_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xbfa3af0f orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc4c35617 orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffc74b4a orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x9da128bb rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x030d4b47 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x095dba52 _rtl92c_store_pwrIndex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x116ee760 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x24b70612 _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x26baa7b3 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2a297460 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3868b9f8 rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3ba5f664 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x46105dcf _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4f4ec741 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x505b2fce rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x52422de1 _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x52f8ac80 rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x53f25b9d rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x57513578 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5ac30b59 rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5d7db89d rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x65d895a7 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6693e67a rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x689d4573 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6d112c8c _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6d53a995 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x723d1b09 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7493a5c6 rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x835547fc _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8cced514 rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8f2047cb rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8f51d1c6 rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9402ce26 rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9cd795e5 rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa1529b38 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa98ad6b0 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaa6b3939 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb0da5915 rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc5f8a9d9 _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe1dae5d0 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe59367d1 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe9217281 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf41f3127 rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfceb9f29 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfdcd043a rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x2755085d rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x4b4f2108 rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xa0973ab2 rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xfb51e504 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x4bf147a8 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x945732e6 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xe8c86e51 rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xe930d7a2 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0e239381 rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1897031c efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x19070b41 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x23bb774b rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2aed160c rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4513f0b3 rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5167b3cc efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x52d02e4e rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x52fd9da2 rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5af5789f rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x62c3dc72 rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7872b2a2 rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7bb7728b rtl_wowlan_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x93de0eef rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaa687f4e rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb10110b9 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb5efdffe rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbca38db3 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc28f471f rtl_ps_set_rf_state -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcbd8f17e rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd567fde5 rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd7cd5aff rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xddfec4d8 rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe044e696 rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf0ae41d7 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf101af8c rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf1a0e089 rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf33e51b8 rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x102a9a5b wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x214600ab wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x6e88685b wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xf3ea8bfe wlcore_tx_complete -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x1576c061 fdp_nci_recv_frame -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x4601d4ac fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xe5f58e94 fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0x2fa69af1 microread_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0xc2e4196a microread_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x004f40b9 nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x46f6be39 nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x4df8726b nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x4b8114eb pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xb4d5fe47 pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x0be48935 s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x952e51eb s3fwrn5_recv_frame -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xc2b88116 s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2c544ae6 st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2e0fa7ad st_nci_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3948fb39 ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3fa193bd ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x72599ae8 ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x73e1f623 st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x76ffe242 ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x81222179 st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xadeb2b91 ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd4028ace ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xded579a0 st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x14acda78 st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1ff944c8 st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5aec77b0 st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x691efd1b st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6aad3034 st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7190edf8 st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x85249cca st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x92748964 st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x93964ae0 st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x93c2c8c3 st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x94022d8a st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9d9c2a6b st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa6d4f3ba st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc130d84b st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe218fef1 st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe77a0bb1 st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf9ba98ff st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfc0044b8 st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/ntb/ntb 0x2d681c67 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0x3fee1d10 __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0x434411c6 ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0x469e29df ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x861d0554 ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0x961ce860 ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0xa344f3f4 ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0xf5ec5445 ntb_clear_ctx -EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x8aee9ba8 devm_nvmem_cell_put -EXPORT_SYMBOL drivers/parport/parport 0x04960b79 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0x2869db1a parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x3b8aa285 parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x58cf6b2f parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x62b11a96 parport_claim -EXPORT_SYMBOL drivers/parport/parport 0x6b6cf44e parport_write -EXPORT_SYMBOL drivers/parport/parport 0x73eec752 parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x793d98f5 parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0x7bf2f2a5 parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0x805e6337 parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0x8315219c parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0x88b9f476 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0x8a4cd3cd parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0x8d368d92 parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0x8d9cc537 parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0x8e34f5d4 parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x8e5b6bc6 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0xb0346e0a parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xb5e54a5f parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0xbc5d283f parport_read -EXPORT_SYMBOL drivers/parport/parport 0xbef6fbc5 parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xc34de181 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0xc64520a5 parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0xcf09eeaf parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0xd76f1895 parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0xebb37242 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xed95373f parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0xf0500041 parport_release -EXPORT_SYMBOL drivers/parport/parport 0xf5931c0d parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0xf5ec82b5 __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0xfb0d54fe parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0xfd945813 parport_register_device -EXPORT_SYMBOL drivers/parport/parport_pc 0x180395e9 parport_pc_unregister_port -EXPORT_SYMBOL drivers/parport/parport_pc 0x6770b2c6 parport_pc_probe_port -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1b3c18bb pcmcia_loop_config -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3ece2e73 pcmcia_dev_present -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3fd4ec9a pcmcia_get_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5a6a944d pcmcia_enable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5c1719a9 pcmcia_map_mem_page -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x606193f3 pcmcia_request_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6c4b4143 pcmcia_request_io -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7b67c46d pcmcia_disable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x87c6c771 pcmcia_get_mac_from_cis -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x90ad7ac8 pcmcia_write_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9304afd8 pcmcia_request_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x934a11e1 pcmcia_fixup_iowidth -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc8fa423b pcmcia_fixup_vpp -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xcdb29b77 pcmcia_register_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd0426e56 pcmcia_unregister_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdd9151a6 pcmcia_release_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe79a1755 pcmcia_read_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xee941a2c pcmcia_loop_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xfb9b16c2 __pcmcia_request_exclusive_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x09286c9c pcmcia_get_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x242f64e9 pcmcia_socket_list_rwsem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3c07aca7 pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x40bfcf0f pcmcia_unregister_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x64b9dc55 pcmcia_reset_card -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x6e86f512 pcmcia_parse_events -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x73ef1026 pcmcia_socket_class -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7ffe2a59 pcmcia_put_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x8d6b324f pccard_register_pcmcia -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd92584c8 pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf11746cc pcmcia_parse_uevents -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x272d4ec4 pccard_nonstatic_ops -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x885041c0 pccard_static_ops -EXPORT_SYMBOL drivers/pps/pps_core 0x02ffa867 pps_register_source -EXPORT_SYMBOL drivers/pps/pps_core 0x1384f451 pps_unregister_source -EXPORT_SYMBOL drivers/pps/pps_core 0xd7ba1dde pps_event -EXPORT_SYMBOL drivers/pps/pps_core 0xff6add8c pps_lookup_dev -EXPORT_SYMBOL drivers/ptp/ptp 0x23ee7921 ptp_find_pin -EXPORT_SYMBOL drivers/ptp/ptp 0x34e161a1 ptp_clock_event -EXPORT_SYMBOL drivers/ptp/ptp 0x9a22aac3 ptp_clock_index -EXPORT_SYMBOL drivers/ptp/ptp 0xf3475b71 ptp_clock_register -EXPORT_SYMBOL drivers/ptp/ptp 0xfaef12c3 ptp_clock_unregister -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x0bf50964 rproc_vq_interrupt -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x13616096 rproc_boot -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x37b00818 rproc_del -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x66461eea rproc_put -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x83f44c3b rproc_alloc -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xbaf50437 rproc_da_to_va -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xc4463887 rproc_shutdown -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xdadab189 rproc_get_by_phandle -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xf45018b2 rproc_add -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xfdf70ad2 rproc_report_crash -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x70018274 ds1685_rtc_poweroff -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x1994db3b scsi_esp_template -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x22027537 scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x9c14b46f scsi_esp_register -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xef556277 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x08225ca6 fcoe_ctlr_destroy_store -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0f7b2cf5 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x195b95d6 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x421c48c6 fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x48dda317 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x64df3cc8 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x89dc1bb3 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc4755fdb fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xcf146a1a fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd0105938 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd0e4b829 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfefe1d8e fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x13b3f615 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1e7ae005 fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1e7b63a8 fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22236963 fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2f4e4cb1 fc_rport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2ff1364f fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3a3bb950 fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3f24c3e5 fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4014d148 fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x412be67b fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x46a8af41 fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x489dc5da fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4bd1ff3f fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x50f7a328 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x542704f5 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x594989e2 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x664273d4 fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69ae3313 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6aac9ed2 fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x71623de0 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x72062ca3 fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x73e53534 fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x744a13df fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x79c5ecf9 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7d658f1a fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x82233ff7 fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x846197b0 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x885971b9 fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8b0c6e61 fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x96b3430e fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa0b22001 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xade2c035 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xae84e1dd fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb051d8a3 _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb318db48 fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbfb89029 fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc24aff9e fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc475d1af fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc759017b fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcf9da8c0 fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd107a0a9 fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd21ea8ad libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xda5515c6 fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xda988617 fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdde305db fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xea6e4457 fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0a411c5 fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf57edb23 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf91ca76f fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xffd45579 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x36519215 sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x6dce73c9 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xecaac2f1 sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xfbba5a25 sas_wait_eh -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x26ae37ef mraid_mm_register_adp -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0dde8737 osd_req_format -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0eb42185 osd_req_create_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1b4ffc8f osd_req_create_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1d3a5f1f osd_req_read_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x26ebbacd osd_req_read_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2990f3dd osd_auto_detect_ver -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x36857631 osd_req_decode_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x37116c17 osd_req_remove_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x37a93a50 osd_req_write -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3e7d89c5 osd_req_write_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x40221a12 osd_req_get_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4577dee3 osd_req_list_partition_collections -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x48f85722 osd_start_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x577e323a osd_req_read_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5c9789df osd_execute_request_async -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x65a4221b osd_execute_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6da8f2f8 osd_req_flush_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x701ca0a7 osd_req_add_set_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x731da866 osd_req_list_partition_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7d8ee694 osd_req_set_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7f75b997 osd_req_list_dev_partitions -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x86cc7a46 osd_req_flush_collection -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x962c2c2f osd_req_flush_obsd -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x98971330 osd_dev_fini -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9d7293e6 osd_req_flush_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xaa32eb40 osd_req_write_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xac1d76eb osd_req_write_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc0a3a1ae osd_req_add_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd42f4592 osd_req_list_collection_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd646ed6c osd_req_decode_sense_full -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd852e90a osd_req_add_get_attr_page -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xebd8267b osd_req_remove_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xee548b21 osd_finalize_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf1422058 osd_dev_init -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf29b05d5 osd_end_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfd524496 osd_req_read -EXPORT_SYMBOL drivers/scsi/osd/osd 0x3f5f2c16 osduld_info_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0x5030f319 osduld_path_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0x599751b0 osduld_device_same -EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0x7c64067f osduld_put_device -EXPORT_SYMBOL drivers/scsi/osd/osd 0x7e6d4525 osduld_device_info -EXPORT_SYMBOL drivers/scsi/osd/osd 0xb9926811 osduld_register_test -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x090af5f8 qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2ead5622 qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x355af371 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3ae1575e qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x64bb39ef qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x76887557 qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7bcd65a5 qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7ed57fc8 qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8ce031ee qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc76cb2c5 qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe35716cb qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfac6ce91 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x224d42d8 qlogicfas408_info -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3f6d5844 qlogicfas408_abort -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x4a4c3da0 qlogicfas408_biosparam -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xb019d6d8 qlogicfas408_bus_reset -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xd3396415 qlogicfas408_queuecommand -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xeca4731f qlogicfas408_disable_ints -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup -EXPORT_SYMBOL drivers/scsi/raid_class 0x34f3207b raid_class_release -EXPORT_SYMBOL drivers/scsi/raid_class 0x71b501a4 raid_class_attach -EXPORT_SYMBOL drivers/scsi/raid_class 0xe43ef886 raid_component_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x28742e1c scsi_is_fc_vport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2cdfdffb fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3d294960 fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x48279094 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x48b385ea fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x48e0cc06 fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x51197e15 fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x55dc8939 fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x863656b8 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x91ef03aa scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x94d49021 fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbe0cd8e5 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe70bd5de fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x116c6bd7 sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x16eabec9 sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1f1f12da sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x250609d1 sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x259ea980 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2dd80a36 scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5ff86329 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x621ecd30 sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6a55c575 sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6d41a565 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x74bae2fc sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x836fa2a7 sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8c3d5a10 sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8ca223de sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa7c6ae1c scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb57491d6 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb7fecc5a sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc6a233d2 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc9685784 sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd071684d sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd0e5bd3b sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd8522158 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd8ccff64 sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdb7e0b67 scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xddf60a7d sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe4a15624 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfa5e1682 sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfcaf2536 sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x2f48fa3f spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x685217a8 spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x74abf455 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x9fe5ebc9 spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa64addab spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x335aeff7 srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x5326b9d5 srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x53539d66 srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x8f404a85 srp_rport_get -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x07bcc26f ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x14d2658d ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x2847f906 ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x86fe5d9b ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x8947fe20 ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x8b9253a9 ufshcd_runtime_idle -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xe18929c8 ufshcd_system_resume -EXPORT_SYMBOL drivers/ssb/ssb 0x4bc502ac ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0x4bcc3c1f ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x5114a51c ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0x5f9c9799 ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0x73260dc7 ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0x7521a08b ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x83467e0a ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0x893a99bc ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0x8d82d448 ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0xa28efebf ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0xaf380d1b ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0xb7a0eb81 ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xc3ef3872 ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xe831cec7 ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0xed70bd95 ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0xed8a3a8b ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0xede2b7f4 ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0xeec3bb3b ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0xf37c2ad8 __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0xf5cacc98 ssb_pcihost_register -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0a2bbd63 fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x14718d98 fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x19a5e042 fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x23d40185 fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x24bf4dcb fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2525c0a2 fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4137b1f0 fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x48b69f40 fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4c662c8f fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x52bc9791 fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x57911b75 fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5e05e3a9 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x677ffa97 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x81d287c5 fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8e166938 fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8edec608 fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x94ba0099 fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9c5dd071 fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb3fe3550 fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb9ab78ec fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdc227905 fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdd867952 fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeddbc6ae fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf60722db fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x716c7735 fwtty_port_put -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x88b79f92 fwtty_port_get -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x984f97dc adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x04e3e91f hmc5843_common_probe -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x1edfc15d hmc5843_common_remove -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xb0cbe6ce hmc5843_common_suspend -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xec0461f7 hmc5843_common_resume -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x49561d3d ade7854_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x724418f5 ade7854_remove -EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0x0589251d cxd2099_attach -EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x1e32f82d most_deliver_netinfo -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0ac25049 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0c5161e3 rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0ce63520 dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x11ae8561 rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x20149853 rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x20521000 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3c4c90dc HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3cf62f3e rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x428fa513 rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x44bfd78e rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4ebd569a rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4fcde3f0 Dot11d_Channelmap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5402a9ec rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x56d2f004 rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5b758b24 free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x607a0913 rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6ea44665 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8a4b68aa rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8ce8b1c2 rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9050920b rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x91a74e46 rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9a24b297 rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9a3d6bb2 rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9ec23362 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa26527cd rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa4de9435 rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa674e19a rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa71282b9 rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa74d52b2 rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa75e1204 rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb1143662 alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb4acc5d8 rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb4f315d3 rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb5caa6fb rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc6430470 rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc90e299b rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc999068e rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcfbcfb5b rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcfd00127 rtllib_wpa_supplicant_ioctl -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd6e8432d notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdc02bc3a rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xde68535d RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xde8e56fb rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe25dd169 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe2c86b2c rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf3a8c612 rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf4249478 rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfb31f65e rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfde52999 rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xff2d7658 rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x030d03c4 ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x03889e41 ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x03d625a9 ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x041ee992 ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x07ffd92b ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x08ec7138 ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0bb41aff ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0ea3ee5c ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x10a1d793 ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1849d5f2 ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1a8aa3e5 ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1bf41f7b HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x243175f1 IsLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x29d2aee0 ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3fc03cdb ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4178fd9b DOT11D_ScanComplete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4bde3543 ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4e19c0cb ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x517fc935 Dot11d_UpdateCountryIe -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5ba9e251 Dot11d_Init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x663b8d72 ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x69a7a2a9 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6b66f9dc DOT11D_GetMaxTxPwrInDbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6c3193ea ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6ccc0993 ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7ea15520 ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7f2be716 ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x84f04105 Dot11d_Reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8768225f ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9060de7d ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x95bc104e ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x97d5898b ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9c2cf469 ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa2a10f83 ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa5c11033 ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa6f9d68d ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa7804ead ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc062d415 ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc0845b85 ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc099899d ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc38b1ac6 ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc5f8206e ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc7a8a4fc ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf4c2491 ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcfbb14d8 ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd07f29b6 ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd8b660ba ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe72f8c93 ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe89e615d ToLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf142a2e7 ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf64b3a42 ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf6d3b270 ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf739f190 ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf99ff4e2 SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfb4ec68d ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x038e4106 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0b95b894 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0e2382bf iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x193945d8 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1b789549 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1ffca3e1 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2a5f4ee9 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3caf0673 iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4175d2a4 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x48647d0c iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x487a18af iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5bb191e7 iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x69af3f75 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6a4a6c6f iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6c53ad19 iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8bf4c42e iscsit_set_unsoliticed_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x90021b80 iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa5d5edae iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa637c89b iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa7a5d780 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xba0d5dbc iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbce6bb74 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc2958b99 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd1d30e43 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xde335289 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe4841feb iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf00c9be8 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfda037e0 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/target_core_mod 0x022667ba target_sess_cmd_list_set_waiting -EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x036e2bbd target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x047a5c5c transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x05f2f9fe transport_init_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x060b8ad0 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x0c5e6c46 transport_init_se_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x12b71a1a core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x14ffad77 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x197a8a27 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x19fe4d34 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x1df61ac2 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x27597441 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x2af33cd2 sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0x2b300fac target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x3393c9da transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x33e679bf sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x382226f1 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x3c1e2170 transport_check_aborted_status -EXPORT_SYMBOL drivers/target/target_core_mod 0x42bfc1f1 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x43da1d21 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x49049058 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x49dfacbd transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x4e901423 transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0x5176fa12 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x56e265f4 target_submit_cmd_map_sgls -EXPORT_SYMBOL drivers/target/target_core_mod 0x5b9ad0f0 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x5c225f00 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x62afad74 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x6e998c76 target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x7bce4c6b target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x7da824d5 target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x7e73c27a transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x7ef5028b target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x8a654a8b target_get_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x8c34efa6 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x90f389a9 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0x92c8a12b transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x94071043 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0x948df877 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x9650b7cb sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x9916fe74 core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x99b41e00 target_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x9a95c797 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0xa1d2667f transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0xa34ec99f sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0xa5b07af8 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xb63ffb96 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xb93b49c1 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xb9c95986 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xbd0d3a24 core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0xc353612d target_setup_cmd_from_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xc65dbce8 target_put_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xc748e615 transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xcd12dd1d target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0xcfcbd60f core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0xd015d640 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0xd0b6ae16 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xd560657b spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0xd575628f core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xd6a10cd1 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xd703abde spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0xdf73f675 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xe085a47e sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0xe5c7621c sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xeb7c6035 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf775d979 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0xf8ec3c06 target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0xfb649979 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xfcd8f430 transport_generic_new_cmd -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x892f975c usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xef800d2c usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x92283db9 sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x080ac98d usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x23195e1f usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x38a4ae99 usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3decd336 usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5dd8e381 usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6041eec7 usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x71bbae00 usb_wwan_ioctl -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7f84083d usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8dfa63d1 usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd014f0da usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xdc3910fe usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf034d233 usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x9a588822 usb_serial_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xb710af22 usb_serial_resume -EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user -EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x2e91ca97 vringh_iov_pull_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x367ce26a vringh_iov_push_user -EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user -EXPORT_SYMBOL drivers/vhost/vringh 0x59f824d9 vringh_getdesc_user -EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x7bda5e6d vringh_iov_push_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x821e9390 vringh_iov_pull_user -EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user -EXPORT_SYMBOL drivers/vhost/vringh 0x937e412c vringh_getdesc_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user -EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user -EXPORT_SYMBOL drivers/video/backlight/lcd 0x46f423f4 lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xa640718b devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xd99d19f2 lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xebf65fae devm_lcd_device_register -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0a272391 svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1f8cccc4 svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x2de1c63b svga_tilecopy -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4aae45c8 svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x830ac304 svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x88d39182 svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb1ac80fe svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x60887ffd sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xad1d3d00 sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xd5f57bb5 sys_imageblit -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x2d59cca6 cyber2000fb_attach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x3563c0f4 matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x4ca3f8dc matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xf6335cb9 g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x130da9ed DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x24e6b57d matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x7f2a87df DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xc0f093ef matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x72464a1f matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x45026113 matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x5ab7e0a9 matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x8018b482 matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xa57253d4 matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xcf561a23 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xb7f45e95 matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xda3ec49e matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x27d7bbbe matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x2a401c4c matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x3846faf7 matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x6843650e matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xa9f2cb2e matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0xd1f6d82f mb862xxfb_init_accel -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free -EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga -EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x0d9feae1 w1_ds2760_recall_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x49e14d15 w1_ds2760_store_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x58cb4dfb w1_ds2760_read -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x5d504df2 w1_ds2760_write -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x9b3e29b4 w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x9c7254e2 w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x318d2d2b w1_ds2781_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xebe55e00 w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/wire 0x5dd102f1 w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0x876577b1 w1_add_master_device -EXPORT_SYMBOL drivers/w1/wire 0x96f24525 w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0xf6d1ea26 w1_unregister_family -EXPORT_SYMBOL fs/configfs/configfs 0x2e609e00 configfs_register_default_group -EXPORT_SYMBOL fs/configfs/configfs 0x3455a66f config_item_put -EXPORT_SYMBOL fs/configfs/configfs 0x3cfc99ea config_item_set_name -EXPORT_SYMBOL fs/configfs/configfs 0x556bab73 config_item_get -EXPORT_SYMBOL fs/configfs/configfs 0x71f9f2b1 config_item_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0x736dbc58 config_group_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0x747cd72d configfs_register_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0x7495c12a configfs_unregister_default_group -EXPORT_SYMBOL fs/configfs/configfs 0x76948dec configfs_depend_item -EXPORT_SYMBOL fs/configfs/configfs 0x7ab4c10f configfs_unregister_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0x8709440b config_group_find_item -EXPORT_SYMBOL fs/configfs/configfs 0x8b9ac7d4 configfs_register_group -EXPORT_SYMBOL fs/configfs/configfs 0x8be692da configfs_undepend_item -EXPORT_SYMBOL fs/configfs/configfs 0xdc7c4aa1 config_group_init -EXPORT_SYMBOL fs/configfs/configfs 0xfabf91db configfs_unregister_group -EXPORT_SYMBOL fs/exofs/libore 0x0937d662 ore_read -EXPORT_SYMBOL fs/exofs/libore 0x15a40e5f ore_create -EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout -EXPORT_SYMBOL fs/exofs/libore 0x35458aa1 ore_write -EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info -EXPORT_SYMBOL fs/exofs/libore 0x696b2ba0 ore_truncate -EXPORT_SYMBOL fs/exofs/libore 0x7d9cea08 ore_get_io_state -EXPORT_SYMBOL fs/exofs/libore 0x96d96a72 ore_put_io_state -EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length -EXPORT_SYMBOL fs/exofs/libore 0xb514a7b1 extract_attr_from_ios -EXPORT_SYMBOL fs/exofs/libore 0xbc9dc45c ore_check_io -EXPORT_SYMBOL fs/exofs/libore 0xfab03bb4 ore_remove -EXPORT_SYMBOL fs/exofs/libore 0xfdedd128 ore_get_rw_state -EXPORT_SYMBOL fs/fscache/fscache 0x196259af __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x21b629b8 __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x2aad77ff __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0x31cad2dc fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0x41a5a704 __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x420ca046 __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0x47e869e0 fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0x4fe0535e fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0x514af078 fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0x52665c9b fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0x5ae200f7 __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x5d2f9e7d __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0x5db0c3d0 __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x650ddb3e __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0x6c657b8f fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0x6cdc9a1c __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x72453d95 fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0x73b7e231 fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x7736ed2a __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x7951ea35 fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0x7b609e5e fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0x7ebfd621 __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x8abd01c7 __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0x9411ba08 fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0x960e3f7b __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x994ad226 fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0x99752f69 fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0x9987aee1 __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0xae107634 __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xb697ce5d __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xbec06410 fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0xc4fa3265 fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0xc6b4fe4e fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0xc88c4e71 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0xcf80dcb4 __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xcfcd8eda fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0xcff2bc49 fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0xd754806d __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0xe31e5069 __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0xf92a21ce __fscache_check_consistency -EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x020393c4 qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x040f4161 qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x38174d3c qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0x64de8924 qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x7b612b38 qtree_write_dquot -EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq -EXPORT_SYMBOL lib/crc-ccitt 0x3771b461 crc_ccitt -EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table -EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table -EXPORT_SYMBOL lib/crc-itu-t 0xf5b4a948 crc_itu_t -EXPORT_SYMBOL lib/crc7 0x66213969 crc7_be -EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table -EXPORT_SYMBOL lib/crc8 0x41248eaf crc8 -EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb -EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb -EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c -EXPORT_SYMBOL lib/lru_cache 0x03f599c7 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0x2763e461 lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0x4feade4b lc_create -EXPORT_SYMBOL lib/lru_cache 0x56fc3ea0 lc_put -EXPORT_SYMBOL lib/lru_cache 0x619ed575 lc_try_get -EXPORT_SYMBOL lib/lru_cache 0x84e0214b lc_committed -EXPORT_SYMBOL lib/lru_cache 0xa278b15d lc_seq_dump_details -EXPORT_SYMBOL lib/lru_cache 0xbbe7c23c lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0xc48fa976 lc_set -EXPORT_SYMBOL lib/lru_cache 0xc6e4cd46 lc_reset -EXPORT_SYMBOL lib/lru_cache 0xcb990a55 lc_try_lock -EXPORT_SYMBOL lib/lru_cache 0xcea6747e lc_destroy -EXPORT_SYMBOL lib/lru_cache 0xd212c9f0 lc_get -EXPORT_SYMBOL lib/lru_cache 0xeb13128b lc_del -EXPORT_SYMBOL lib/lru_cache 0xf460a486 lc_is_used -EXPORT_SYMBOL lib/lru_cache 0xf5ea5f5c lc_index_of -EXPORT_SYMBOL lib/lru_cache 0xf6acec20 lc_find -EXPORT_SYMBOL lib/lz4/lz4_compress 0xcbc5d521 lz4_compress -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x26c3aa22 lz4hc_compress -EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul -EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp -EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv -EXPORT_SYMBOL lib/raid6/raid6_pq 0x7456cc61 raid6_empty_zero_page -EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi -EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul -EXPORT_SYMBOL net/6lowpan/6lowpan 0xc0e05997 lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0xd3e152f0 lowpan_netdev_setup -EXPORT_SYMBOL net/6lowpan/6lowpan 0xf67cf7f6 lowpan_nhc_add -EXPORT_SYMBOL net/802/p8022 0x04f8e0b1 unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0x3024cc93 register_8022_client -EXPORT_SYMBOL net/802/p8023 0x09132846 make_8023_client -EXPORT_SYMBOL net/802/p8023 0xff9a0bec destroy_8023_client -EXPORT_SYMBOL net/802/psnap 0x1028a967 unregister_snap_client -EXPORT_SYMBOL net/802/psnap 0x55d0e4a2 register_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x041aacb5 p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x0f630f6f p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x19ee91f0 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x245b9b35 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x2bcaa893 p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x2f43e12f p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0x352d53a7 p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get -EXPORT_SYMBOL net/9p/9pnet 0x3ae6a516 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x3dc26c12 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0x3ebef0de p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x3ee30646 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x42f11877 p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0x49eb4b61 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x4c6807bd p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x51842c40 p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0x5605d74e p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x5f597d3f p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0x74316d3f v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0x758b598f p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0x7a6641c6 p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0x9378b683 p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0x9727c9db p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x9bb458d2 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0xaa93fb84 p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0xb1d7abca p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0xb33aa291 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xb4dd9872 p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy -EXPORT_SYMBOL net/9p/9pnet 0xc82396b0 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0xc8d6895b p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0xcbbcd7cf v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0xcfc5c0c6 p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0xd3083257 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xe5cc785f p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0xea0e2892 p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0xed500ba8 p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0xf0321b25 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0xf2102faf p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0xf42eb0bb p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create -EXPORT_SYMBOL net/9p/9pnet 0xf70bc26a p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put -EXPORT_SYMBOL net/9p/9pnet 0xfa2dc34b p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check -EXPORT_SYMBOL net/9p/9pnet 0xfd718f85 v9fs_register_trans -EXPORT_SYMBOL net/appletalk/appletalk 0x01f60ef1 atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0x8dada854 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0xbb48d4ec aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0xff0ffea0 alloc_ltalkdev -EXPORT_SYMBOL net/atm/atm 0x0e8d1723 atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x343e21c6 vcc_release_async -EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x6412e487 register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x7ca750ad atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0x80cdbfce atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0x889b1d58 deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x99650ac8 atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xbca6538d atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0xc73ed417 vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0xc7a62c32 atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0xca87b453 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0xd56a6bab atm_charge -EXPORT_SYMBOL net/atm/atm 0xdb222725 atm_dev_register -EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/atm/atm 0xf6c8450f vcc_insert_socket -EXPORT_SYMBOL net/ax25/ax25 0x187a6485 ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x6d9f05f1 ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0x98aa6fd7 ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0xb5d66931 ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xc5870bfd ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0xc846d64b ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xdc4f9c94 ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0xe2203d51 ax25_listen_release -EXPORT_SYMBOL net/bluetooth/bluetooth 0x00de5fa7 hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0x10a7fb5a hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x13b2ce58 bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1411598f bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0x16c78153 bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1ae0854c bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2514da31 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2837e9e6 hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3504e074 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3900a38c hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3e8c6f23 hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3f5a890b bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0x451fc4b7 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4c21a76f l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4ed9daea hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x54fc181b bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x57fd83a7 bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5f615c25 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6442ad82 hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x64f535bd bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6a911e07 hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6b2bb990 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno -EXPORT_SYMBOL net/bluetooth/bluetooth 0x99e8fd52 __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9f162098 __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9f64d42c hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa86dfc69 bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa8c696a0 hci_alloc_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xaf0f869a bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xba6b4a04 bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbd405eb9 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbe3cf6bd hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc2f12075 l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc570552f hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd138fef0 bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd44290be l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdb28221e hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdc38aa38 hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdccbb590 hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe390401b hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe7b9314e bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf9bc23a2 l2cap_chan_close -EXPORT_SYMBOL net/bridge/bridge 0x1c1097fe br_should_route_hook -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x5201ac14 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x557e3f36 ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x7e61aae6 ebt_register_table -EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative -EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info -EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer -EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x5c60c9ad caif_connect_client -EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head -EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head -EXPORT_SYMBOL net/caif/caif 0x9c9649b0 cfcnfg_add_phy_layer -EXPORT_SYMBOL net/caif/caif 0x9ccc3356 caif_enroll_dev -EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio -EXPORT_SYMBOL net/caif/caif 0xad725cde get_cfcnfg -EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xfaeb3565 caif_disconnect_client -EXPORT_SYMBOL net/can/can 0x5d76d387 can_proto_unregister -EXPORT_SYMBOL net/can/can 0x69de216c can_proto_register -EXPORT_SYMBOL net/can/can 0xbfefab50 can_send -EXPORT_SYMBOL net/can/can 0xd6ff2f14 can_rx_unregister -EXPORT_SYMBOL net/can/can 0xdd31fd94 can_rx_register -EXPORT_SYMBOL net/can/can 0xeaf33d90 can_ioctl -EXPORT_SYMBOL net/ceph/libceph 0x062c180c ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x06a4026e ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init -EXPORT_SYMBOL net/ceph/libceph 0x0addb506 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0x0c8de0df ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0x0eb58d07 ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x0f127106 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x12147279 ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x15dc47f5 ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x18b8a892 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x1ddea8a9 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup -EXPORT_SYMBOL net/ceph/libceph 0x22ffe34c osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x235ccaf1 ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x24b9b6bf ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0x2674e4a0 ceph_messenger_fini -EXPORT_SYMBOL net/ceph/libceph 0x280c4a67 ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0x28f2a7e0 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x2a52f08e ceph_osdc_set_request_linger -EXPORT_SYMBOL net/ceph/libceph 0x2a89f1c9 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x2b068369 osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0x2d3e4d14 ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x2f2ba402 ceph_monc_got_mdsmap -EXPORT_SYMBOL net/ceph/libceph 0x31bc7189 osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x31fab0aa ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0x3325e1ad osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x34556016 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x3d7d9f7e ceph_auth_create_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options -EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part -EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x469b5aba ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0x47a9920e ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x48bd1097 ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0x4a7a3720 ceph_oloc_oid_to_pg -EXPORT_SYMBOL net/ceph/libceph 0x4e05873d ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode -EXPORT_SYMBOL net/ceph/libceph 0x537d4d47 ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x5530e64e ceph_client_id -EXPORT_SYMBOL net/ceph/libceph 0x5720b5b4 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x5b6376ee ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x5c6481e7 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x6005e710 ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x648dcff7 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x699e63b7 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x6bde954e ceph_osdc_cancel_event -EXPORT_SYMBOL net/ceph/libceph 0x6bf29dd0 ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0x72bd2f52 ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0x7582567d osd_req_op_watch_init -EXPORT_SYMBOL net/ceph/libceph 0x821415da ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x891125b6 osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x8b0b2119 ceph_osdc_put_event -EXPORT_SYMBOL net/ceph/libceph 0x8b769cd5 ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup -EXPORT_SYMBOL net/ceph/libceph 0x9a7cda80 ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xa0a992aa osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0xa1ebde8f ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xa23ccdd8 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0xa3658838 ceph_get_direct_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xa4312d3b ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0xa69c6014 ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0xa836acaf osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0xac706004 ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0xaca9ef1f ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0xae25b9cf osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xaf59e487 ceph_osdc_writepages -EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb16d8e68 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0xb19dc152 ceph_pagelist_reserve -EXPORT_SYMBOL net/ceph/libceph 0xb3c48a05 ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit -EXPORT_SYMBOL net/ceph/libceph 0xb6e82a3a ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0xb9cbe1a8 ceph_osdc_readpages -EXPORT_SYMBOL net/ceph/libceph 0xbbdf1580 ceph_auth_update_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xbf1b70e0 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0xc317f1ed ceph_messenger_init -EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup -EXPORT_SYMBOL net/ceph/libceph 0xc635253d ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init -EXPORT_SYMBOL net/ceph/libceph 0xca3dfc6f ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0xca579357 ceph_osdc_create_event -EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips -EXPORT_SYMBOL net/ceph/libceph 0xcbf967c5 ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode -EXPORT_SYMBOL net/ceph/libceph 0xd35adfcc osd_req_op_cls_response_data -EXPORT_SYMBOL net/ceph/libceph 0xd3706773 ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0xd51e2b14 ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0xd5383217 ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xd813625e ceph_pagelist_append -EXPORT_SYMBOL net/ceph/libceph 0xd9677475 ceph_monc_request_next_osdmap -EXPORT_SYMBOL net/ceph/libceph 0xde0eb6ba ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0xe1e4035a osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xe3853f3a osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0xe3b151b3 ceph_osdc_build_request -EXPORT_SYMBOL net/ceph/libceph 0xe55d9bcd ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0xe8abdbfb ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0xed8bf618 ceph_monc_do_get_version -EXPORT_SYMBOL net/ceph/libceph 0xf35042ec ceph_calc_pg_primary -EXPORT_SYMBOL net/ceph/libceph 0xf59de47e osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xf9d5ae37 __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0xfd631a15 osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x4c160815 dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x7c91ea8f dccp_req_err -EXPORT_SYMBOL net/ieee802154/ieee802154 0x0aa4c76d wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0x0ddef498 wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0x1584155b wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0x652938e0 wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0x71869e6f wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0xfa1e507f wpan_phy_register -EXPORT_SYMBOL net/ipv4/fou 0x0c07b4a3 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x416f176e gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0xdfec9b91 fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0xed741d6f gue_encap_hlen -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x1cdb201e ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x2cd5e01d ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x421faff9 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x7a839dee ip_tunnel_dst_reset_all -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xa635a135 ip_tunnel_encap -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf540637a ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x1e6d8a19 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x26ab18e8 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x9219b00a arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x24582f97 ipt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x4c97ca45 ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xfd229777 ipt_do_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x80774d96 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/tunnel4 0xaf1ae2c7 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x66330b06 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xabafa694 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd0119ff3 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xdfa12010 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xfd5e5f5a ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x2147f419 ip6t_unregister_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x7dad3f3a ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xd41a3a13 ip6t_register_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x129e2fef xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0xb9313b5b xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x889f0072 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x975e3419 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x01f14acd ircomm_flow_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x1b16057a ircomm_disconnect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x78a3c3a0 ircomm_open -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x8e7882fb ircomm_control_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x9be1ee72 ircomm_connect_response -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xbf8af793 ircomm_connect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xe45f5dcc ircomm_data_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xec7d04e0 ircomm_close -EXPORT_SYMBOL net/irda/irda 0x0064e0ea hashbin_get_first -EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value -EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service -EXPORT_SYMBOL net/irda/irda 0x18e6bf10 alloc_irdadev -EXPORT_SYMBOL net/irda/irda 0x1c1df3d6 irttp_udata_request -EXPORT_SYMBOL net/irda/irda 0x1e6cade0 irias_add_integer_attrib -EXPORT_SYMBOL net/irda/irda 0x2233afe8 irttp_connect_request -EXPORT_SYMBOL net/irda/irda 0x2e1d6174 irttp_flow_request -EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda -EXPORT_SYMBOL net/irda/irda 0x385fea64 iriap_getvaluebyclass_request -EXPORT_SYMBOL net/irda/irda 0x3e56064f hashbin_new -EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value -EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service -EXPORT_SYMBOL net/irda/irda 0x5e9fbf59 irttp_dup -EXPORT_SYMBOL net/irda/irda 0x5f25884c irda_device_set_media_busy -EXPORT_SYMBOL net/irda/irda 0x601bda46 hashbin_remove -EXPORT_SYMBOL net/irda/irda 0x62fbef26 iriap_close -EXPORT_SYMBOL net/irda/irda 0x69816067 irttp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies -EXPORT_SYMBOL net/irda/irda 0x6b5fbcef hashbin_get_next -EXPORT_SYMBOL net/irda/irda 0x6d23f966 iriap_open -EXPORT_SYMBOL net/irda/irda 0x6e0ab3c7 irias_add_string_attrib -EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client -EXPORT_SYMBOL net/irda/irda 0x743f1c7f irda_notify_init -EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client -EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client -EXPORT_SYMBOL net/irda/irda 0x7bf111c0 irlmp_close_lsap -EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert -EXPORT_SYMBOL net/irda/irda 0x7f559d4f irlmp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0x84fa59d1 irttp_connect_response -EXPORT_SYMBOL net/irda/irda 0x85d88217 irias_delete_object -EXPORT_SYMBOL net/irda/irda 0x88b4cfc9 irttp_close_tsap -EXPORT_SYMBOL net/irda/irda 0x88d04c9c irlmp_connect_response -EXPORT_SYMBOL net/irda/irda 0x8ca27ef6 irttp_data_request -EXPORT_SYMBOL net/irda/irda 0x8f625d5c irlap_open -EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack -EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all -EXPORT_SYMBOL net/irda/irda 0x9759746f irlmp_open_lsap -EXPORT_SYMBOL net/irda/irda 0xa1d41e58 hashbin_delete -EXPORT_SYMBOL net/irda/irda 0xaa557515 irias_new_object -EXPORT_SYMBOL net/irda/irda 0xb7787292 irlap_close -EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value -EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute -EXPORT_SYMBOL net/irda/irda 0xbd0987ed irttp_open_tsap -EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request -EXPORT_SYMBOL net/irda/irda 0xc68e43be irias_add_octseq_attrib -EXPORT_SYMBOL net/irda/irda 0xc886b4f9 irlmp_data_request -EXPORT_SYMBOL net/irda/irda 0xc9d3f61c irlmp_connect_request -EXPORT_SYMBOL net/irda/irda 0xcead7dbb hashbin_find -EXPORT_SYMBOL net/irda/irda 0xd2108314 hashbin_insert -EXPORT_SYMBOL net/irda/irda 0xd98667f5 async_unwrap_char -EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint -EXPORT_SYMBOL net/irda/irda 0xe3463529 hashbin_lock_find -EXPORT_SYMBOL net/irda/irda 0xe3bde43e irias_insert_object -EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries -EXPORT_SYMBOL net/irda/irda 0xf0a694a1 irias_find_object -EXPORT_SYMBOL net/irda/irda 0xf39b7fe0 irda_setup_dma -EXPORT_SYMBOL net/irda/irda 0xf3b3aab6 async_wrap_skb -EXPORT_SYMBOL net/irda/irda 0xf5876b95 hashbin_remove_this -EXPORT_SYMBOL net/l2tp/l2tp_core 0x241c1006 l2tp_recv_common -EXPORT_SYMBOL net/l2tp/l2tp_ip 0x072dbd21 l2tp_ioctl -EXPORT_SYMBOL net/lapb/lapb 0x0a2ee054 lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0x5928eada lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0x692a5182 lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0xb2e594f5 lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0xdd078af7 lapb_register -EXPORT_SYMBOL net/lapb/lapb 0xe53ee5dd lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0xed4cfdb9 lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0xf247f7d5 lapb_data_request -EXPORT_SYMBOL net/llc/llc 0x03dd9a3c llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0x2d9067b7 llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x40a8b1e2 llc_sap_open -EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0xc6cb9491 llc_add_pack -EXPORT_SYMBOL net/llc/llc 0xe918340a llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0xe950815b llc_sap_close -EXPORT_SYMBOL net/llc/llc 0xff9d7eed llc_sap_find -EXPORT_SYMBOL net/mac80211/mac80211 0x02166686 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x034a8633 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x05346f75 ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x062174ad ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0x08665d63 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0x0da311d9 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x0f9112eb ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x1b92a20c ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x1be139d4 ieee80211_csa_update_counter -EXPORT_SYMBOL net/mac80211/mac80211 0x1def8afb ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x1e3a4cd4 ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0x1e7c0a81 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x2260f9d5 ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0x24a96a5a ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x25b35a58 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0x27cae126 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x2852e58d ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x28f4429f ieee80211_start_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x2b5e6a59 ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0x2de4c11b ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x3070c118 ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0x393154cd ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x39c436fe __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x39f1bf8b ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x3c57d25a ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0x4485a0fd ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0x4624dfe6 ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0x47768144 __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x48bbb911 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0x4d4d6043 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x5d2ff59e ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x5f42c0c6 ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x67f14ae5 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x69de096c ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x6a1393ec ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x6adb55d4 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x6ba98747 rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x70977274 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x736b60e3 ieee80211_tx_status_noskb -EXPORT_SYMBOL net/mac80211/mac80211 0x74b2217e ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x75c8119f ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x76b9ef28 ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x7717484d ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x781ea095 rate_control_send_low -EXPORT_SYMBOL net/mac80211/mac80211 0x78e6698f ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x832381ba ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x86b8a988 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x8d2e9cf0 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0x8daf4a5e ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0x8e81828f ieee80211_stop_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x9248e9b3 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x9724d1d1 ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0xa1965d95 ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xa46a12dd ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0xa9d3ead6 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xaea1952a __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xb1aaef91 ieee80211_get_key_tx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0xb4c45cdd ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0xb5e5af89 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xbd3ad5bf ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0xc2194b5e ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xc335a3e4 wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xc4c45a01 ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xc5983bd5 ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xca9c5230 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0xd71a0868 ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0xdb6904d6 ieee80211_csa_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0xdbd65ca7 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xdbd7b146 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0xe000090d ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0xe4959328 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xe7515b6b ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xe82bceb5 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xe88647c7 ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xe9d76da9 ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xead3059b ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xf1661e65 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0xf4dd8a4e ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0xf5819b24 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0xfa4d20f2 ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xfae36ceb ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xffa37df2 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac802154/mac802154 0x153a64a7 ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x3dff5352 ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x5924e87b ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x8612b83f ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x99944a62 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x9a94c4f4 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0xa9d1962a ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xb7bbb537 ieee802154_stop_queue -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1442b852 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x20fc4bb2 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x36adc091 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x40744923 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x450d219a ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x585f2330 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x67c31edf ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x69af0f6d register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x75b2bd55 register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x91b47973 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9bad9a11 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9e2d72eb ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe466a6da ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf21659e4 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x2ad3851c __nf_ct_ext_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x7efd7b53 __nf_ct_ext_add_length -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xf4616cb1 nf_conntrack_untracked -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x243bde28 nf_nat_used_tuple -EXPORT_SYMBOL net/netfilter/nf_nat 0x6b75a34c nf_xfrm_me_harder -EXPORT_SYMBOL net/netfilter/nf_nat 0x95d877ad __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xb78b57f7 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xd132ad5d nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0xf56b0867 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/x_tables 0x09091e83 xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x1dca3ea7 xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0x2c3160cc xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x608f516e xt_find_target -EXPORT_SYMBOL net/netfilter/x_tables 0x785cdcf7 xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xb466650f xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xcf4a9973 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0xd1af772f xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xe37f85e8 xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xfb8ba430 xt_unregister_match -EXPORT_SYMBOL net/nfc/hci/hci 0x0813f2d7 nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x08294989 nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x0cd5ddc2 nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0x11a74e32 nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0x15433fa5 nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0x2eda92a9 nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0x34a78d9f nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x3f8b5bcf nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x51fce9cc nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0x54c446c2 nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0x714a70e8 nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x835fbab1 nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0x8a8a74c1 nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0x8c470b75 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0x8d4ed373 nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0x9e0ac8a7 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0xa326559d nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0xa5dc3d5f nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xbe41f55e nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xe9997b8b nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xfb483522 nfc_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x093dc6f9 nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x09cbcb0c nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0x1490196c nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0x16b3e010 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0x1799d12d nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0x37bcb743 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0x3b7da7b3 nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0x3e7db3a7 nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x520b9310 nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x6893fd51 nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0x6c5746f6 nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x6df41fc1 nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0x73d9080c nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x7d9a7087 nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x7e2545cb nci_get_conn_info_by_id -EXPORT_SYMBOL net/nfc/nci/nci 0x94c5accd nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x98692b57 nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0xa03f666a nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xa58241f6 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0xa628e2e4 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0xa70990e3 nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0xac480b87 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xbe5b6052 nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0xd8049564 nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0xee82f33a nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0xf719f746 nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0xf81f0bb4 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0xfa610716 nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nfc 0x074280c4 nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0x0d52a338 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0x12ddd1e8 nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x2120404c nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0x27b93800 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0x3bff6296 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x447fa046 nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x6316879e nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0x657f3f7a nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0x6cf7621e nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0x6d94d111 nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0x77036e22 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0x79ce3a1b nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0x9c37b9c4 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0xa242faa3 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0xa513be17 nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xcc619387 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0xd6f3b6a2 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0xd77a2114 nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0xde4a8177 nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0xdfeae9c1 nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0xe99de81b nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0xfcf2996b nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0xff020010 nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc_digital 0x167a422c nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x1a5d31f1 nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x4d8eaf86 nfc_digital_free_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xca811551 nfc_digital_allocate_device -EXPORT_SYMBOL net/phonet/phonet 0x1e3131d3 phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0x43e9c788 pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0x93f9e803 pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0x9a372de1 pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0x9aa1b35f phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0xcc4ce245 phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0xd65b0ba1 phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0xe61b0b48 pn_sock_hash -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x04992380 rxrpc_kernel_get_error_number -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x18cc5823 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x2a67085c rxrpc_kernel_get_abort_code -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x3c1f7a5e rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x455464f1 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x57d28bea rxrpc_kernel_data_delivered -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x5e7087d2 rxrpc_kernel_intercept_rx_messages -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x833ecd01 rxrpc_kernel_accept_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x98ef0311 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x99c18b61 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xa5351aaa rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb4517243 rxrpc_kernel_free_skb -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xbc3b3935 rxrpc_kernel_reject_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xcb3ae797 rxrpc_kernel_is_data_last -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf00a055d rxrpc_get_null_key -EXPORT_SYMBOL net/sctp/sctp 0xcf9cec26 sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x0f5a6f85 gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x40cad9a6 gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x55bcfefc gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/sunrpc 0x2a65d908 xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0x8686c568 xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0xaddf00e8 svc_pool_stats_open -EXPORT_SYMBOL net/wimax/wimax 0x0d15e407 wimax_rfkill -EXPORT_SYMBOL net/wimax/wimax 0x8d7cc419 wimax_reset -EXPORT_SYMBOL net/wireless/cfg80211 0x031493f8 cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0x0510c7d2 ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x0c883aaa wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0x0e9cad15 cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0x1ed79d07 freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0x249a0464 cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0x28100986 cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x29169890 cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x29df3fd8 ieee80211_data_from_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0x2aa14a3c cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x345ea2a2 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x35d414da wiphy_rfkill_stop_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x36493b25 cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0x382ce19d wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x3fb59b26 regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0x40f395a3 cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0x427fe403 cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x446dc105 regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0x45c9b104 cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0x47703aba cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x4b15ad08 cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x4c848e59 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x52403475 regulatory_set_wiphy_regd_sync_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x52d0b21d cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x52e9e1f8 __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x55967237 cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0x572f334e cfg80211_report_obss_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x597aa8b7 cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x64028fda cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x66aec2a1 __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x66afea79 cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6a0d1755 wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0x6e94f9c2 cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0x71c8f2b5 cfg80211_rx_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x72128e02 ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x72773c2f cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x73f6c988 cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0x7be4df67 wiphy_rfkill_set_hw_state -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7fafe2f7 wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x8032d908 cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0x8111215b cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0x820c044c cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x85fb84ce cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0x864c69a2 ieee80211_data_to_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0x88ad6e3b cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x8a3782fe cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x966ff54d ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x97aaa781 cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x9d750406 cfg80211_sched_scan_stopped_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x9f05c4bb cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xa05a3d53 cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xa1425906 ieee80211_channel_to_frequency -EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xa27295a4 cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xa29d95e9 cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0xa2dd9278 cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xaf9b41cf cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0xb0ef8a86 cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xb1deb012 wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0xb5bc66de cfg80211_connect_result -EXPORT_SYMBOL net/wireless/cfg80211 0xbe6fcb0b cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xbfe837d3 cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xc4e54e33 cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xc99d1a93 cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0xcec6492b cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xd02ce769 cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0xd2c2d2e8 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0xd32ffaf7 cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xd335dd14 cfg80211_roamed_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xd7967ed8 cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdee5250c cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xe03d97ba __ieee80211_get_channel -EXPORT_SYMBOL net/wireless/cfg80211 0xe3b6d267 cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xe9a0f75d cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0xeb6d7c6c ieee80211_ie_split -EXPORT_SYMBOL net/wireless/cfg80211 0xecfdc54c cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xedb0f81c cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xf059c8f7 cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0xf064eb0b cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xf15ed524 cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0xf1f84a86 cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xf2d755d2 wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0xf53bdb56 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0xf59a8e8e cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0xf77e326e __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xf9e47a3c cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie -EXPORT_SYMBOL net/wireless/lib80211 0x06b6d2a9 lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x14764762 lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0x1957a112 lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x33181208 lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0x771830d9 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0xe750fce1 lib80211_unregister_crypto_ops -EXPORT_SYMBOL sound/ac97_bus 0x205088f4 ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x39013b57 snd_mixer_oss_ioctl_card -EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl -EXPORT_SYMBOL sound/core/seq/snd-seq 0x2261d347 snd_seq_kernel_client_enqueue_blocking -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x474d7999 snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x83c88292 snd_seq_kernel_client_write_poll -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0xf351921f snd_seq_event_port_attach -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x97c40f93 snd_seq_device_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x072d978b snd_midi_event_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x13a17752 snd_midi_event_reset_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x2eed26bf snd_midi_event_no_status -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x4d5ca523 snd_midi_event_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x592f6e9b snd_midi_event_free -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xd7c7afcc snd_midi_event_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe60fb228 snd_midi_event_reset_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xecbde43c snd_midi_event_encode_byte -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xc827bb4c snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x088045d1 snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0x0cc8f364 snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0x10982dab snd_register_device -EXPORT_SYMBOL sound/core/snd 0x1320d66c snd_seq_root -EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program -EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer -EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x205667ce snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0x22f664b4 snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x25fafaca snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0x328ab71b snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0x328df55d snd_card_register -EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x4049c2db snd_jack_new -EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x4f4d13d0 snd_card_free -EXPORT_SYMBOL sound/core/snd 0x54b2ad09 snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0x5572a263 snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0x56805f8b snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0x56ee3bef snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0x589ec57f snd_jack_report -EXPORT_SYMBOL sound/core/snd 0x58fe8f27 snd_info_register -EXPORT_SYMBOL sound/core/snd 0x59b3f895 snd_device_free -EXPORT_SYMBOL sound/core/snd 0x5ff004e8 snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0x602c96f0 copy_to_user_fromio -EXPORT_SYMBOL sound/core/snd 0x60ab9483 snd_cards -EXPORT_SYMBOL sound/core/snd 0x60ef5efc snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0x6e5d3726 snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable -EXPORT_SYMBOL sound/core/snd 0x73d561dd snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0x76c241c1 snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0x76d9d8f0 snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0x83d76b83 _snd_ctl_add_slave -EXPORT_SYMBOL sound/core/snd 0x8550130d snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x9e66a554 snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0xa01ea4a6 snd_device_register -EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id -EXPORT_SYMBOL sound/core/snd 0xa137f76d snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0xa8877b80 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb90242d3 snd_device_new -EXPORT_SYMBOL sound/core/snd 0xce3ca308 copy_from_user_toio -EXPORT_SYMBOL sound/core/snd 0xd1157735 release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0xd3f8da6d snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0xd6a69642 snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0xda3e0297 snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0xdaed541d snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0xdb3839c8 snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0xdbfb9e44 snd_card_new -EXPORT_SYMBOL sound/core/snd 0xe2062dd5 snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0xe2e80543 snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0xe59f975e snd_power_wait -EXPORT_SYMBOL sound/core/snd 0xe9c69ea3 snd_component_add -EXPORT_SYMBOL sound/core/snd 0xec75ca68 snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0xef1942f1 snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0xf429a7ec snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0xfaa30e6b snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd-hwdep 0x366e577e snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any -EXPORT_SYMBOL sound/core/snd-pcm 0x03dc6753 snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x043a0dd9 snd_pcm_lib_mmap_iomem -EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x0c265f79 snd_pcm_new_internal -EXPORT_SYMBOL sound/core/snd-pcm 0x1193d595 snd_pcm_suspend -EXPORT_SYMBOL sound/core/snd-pcm 0x17b401a3 snd_pcm_notify -EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x1ee7c433 snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x22fc0934 snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x27c5a7bd snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL sound/core/snd-pcm 0x2c3778b2 snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0x2d00b0ba snd_pcm_lib_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x3194f26d snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0x34c60d85 snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x37c63582 snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0x37e21b74 snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x3b91f3af snd_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x3e8ff6de snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x4cb4720d snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x4d94e1d9 snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x4d9b6d35 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x4db2069f snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x521b714c snd_pcm_lib_read -EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL sound/core/snd-pcm 0x55aa98d4 snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0x55f3ba5e snd_pcm_lib_write -EXPORT_SYMBOL sound/core/snd-pcm 0x597d9ea3 snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0x5dc28e05 snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x6196d354 snd_pcm_mmap_data -EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width -EXPORT_SYMBOL sound/core/snd-pcm 0x6c8929cf snd_pcm_hw_rule_noresample -EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x758ca240 snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0x7b173952 snd_pcm_lib_readv -EXPORT_SYMBOL sound/core/snd-pcm 0x833d7fec snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x88b70061 snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0x8ff2558a snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0x90fcd758 snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x9190ef74 snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0x932bb04c snd_pcm_limit_hw_rates -EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0xa173ac22 snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL sound/core/snd-pcm 0xa98965fd snd_dma_alloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xade88e76 snd_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xb532ae55 snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0xb91a22e4 snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xba39387b snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0xc1bdba23 snd_pcm_lib_writev -EXPORT_SYMBOL sound/core/snd-pcm 0xcd808ef2 snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0xd6bc32f1 snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xd80d325b snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xe0c631b3 snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xe5f5cece snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0xe8173870 _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xf3585122 snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xfd0ff0d0 snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x0470ec73 snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x2019ce08 snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x249a10d7 snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0x25db9b39 snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x2802e5a9 __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x2f388b44 snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x30f02152 __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x336f5cea snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0x351e5fbf snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0x3e56f043 snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0x41e05df0 snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0x43025aab snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4c23af0c snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0xa7501d1e snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xdc092efc snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe1c67af2 snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe871a59e snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf181b52c snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xfdf291f2 snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-timer 0x09a58d98 snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0x12df6a6f snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0x36a0edb5 snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0x3ad941b0 snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0x413b743a snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0x4451dfac snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0x5842d134 snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0x6108c02a snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0x8f9c3fc3 snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0xa0011cac snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0xa12e7656 snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0xc0eb1c1d snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0xd1105759 snd_timer_notify -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x40d38079 snd_mpu401_uart_new -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x15c46a4d snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x392b4216 snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x52a836af snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6d3b817d snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6d90b5bb snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb16633f2 snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb46ad5ee snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xbb644c7e snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xcd4a6f3e snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1cef3d62 snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6cc58f96 snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8d5c9290 snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa96bae2d snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa9a8e7c1 snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc8ee2ceb snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xcb41420c snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xcdadb8cf snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xceb614a8 snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x04da48cb amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x05560b44 iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1e6dd09b avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x22769930 cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2b90a743 amdtp_stream_stop -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x30a37bb4 fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3e14da09 avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3e1ddd69 fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x45d11f14 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4bcbfc8e cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x52d1b071 amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x54f66b7c fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6ea21ac1 iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x72a80689 cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7a163865 amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x84165edc amdtp_stream_start -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x84375ed5 amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9828d656 snd_fw_async_midi_port_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9898d585 fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa03e5cdb snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xafedfc02 snd_fw_async_midi_port_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbee0016f fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd6d9b5e1 avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd76060a1 amdtp_stream_pcm_pointer -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdda01dc4 cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdea3bdf7 fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe16f1bbe cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe3451357 amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe60608b8 fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xec4771de amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf189a729 amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf9690cb0 amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x5624f866 snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x8e0046fd snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x246ff77a snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x4a7f20bf snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb10ab97c snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xcf58deef snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd10796e8 snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd58d43c6 snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xe2f5bfd9 snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xe7d34a81 snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x43251090 snd_ak4117_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x577b10ba snd_ak4117_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x96ad87d9 snd_ak4117_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xabb9c5b5 snd_ak4117_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xbafc513e snd_ak4117_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xbb2d6684 snd_ak4117_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x13bb7a67 snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x7aa38e0a snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xcc34c9e8 snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xe3b427a8 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x04c99af4 snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x6e462dcc snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x2f64d578 snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x5a7f66ee snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x61fc7d00 snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x6602af9d snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xbbc1c73b snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xe66bafa5 snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-i2c 0x34d850b3 snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x8b075210 snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x8f98062b snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0xcb7aea4f snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0xcd103d76 snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xf0bd3c0d snd_i2c_device_free -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x1be2c48e snd_sbmixer_suspend -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x57cedff7 snd_sbmixer_read -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x814681d0 snd_sbmixer_write -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x834ed1d1 snd_sbmixer_resume -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x8763a8fe snd_sbdsp_command -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xb7d57985 snd_sbdsp_get_byte -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xbc4b8f03 snd_sbmixer_new -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xf7611da0 snd_sbdsp_create -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xf9ddfff7 snd_sbdsp_reset -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xf9ffc7d9 snd_sbmixer_add_ctl -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0021cfe2 snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x057fac68 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x19503339 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3811e01a snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x39507793 snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3a43f0ef snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x41d2e337 snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4d235fdf snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x54af461c snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x773b29ff snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8a23aafc snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb98c31de snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbd53aac7 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc0a53aa0 snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc9d3c16b snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd6385308 snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe394868c snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4b39dbfa snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x5a594ead snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x75dae76e snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x789b34cd snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x879200a6 snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xab392291 snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xaf4305d5 snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xdcd867ef snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xea6a9ac1 snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x86ac0e44 snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x8e708139 snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xa8e1d0c4 snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x05d0b7e5 oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2793c59e oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x39de7930 oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3c079ef2 oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3d8e6528 oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x478d1c75 oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6121b346 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6430ba6f oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6b6cd66d oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x822f5ceb oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x839ae6b3 oxygen_pci_remove -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x97f42657 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x98c056ea oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa183b0a9 oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc39baccc oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc5553a66 oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcda28222 oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcfe63854 oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd0354509 oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xea0e9c02 oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf93086cf oxygen_pci_pm -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x647d40a2 snd_trident_write_voice_regs -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x6bcb8245 snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xd441257f snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xe757910e snd_trident_stop_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xeba57396 snd_trident_alloc_voice -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x327aca61 tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xd424156a tlv320aic23_probe -EXPORT_SYMBOL sound/soc/snd-soc-core 0x7db13df6 snd_soc_alloc_ac97_codec -EXPORT_SYMBOL sound/soundcore 0x2a2496ba register_sound_dsp -EXPORT_SYMBOL sound/soundcore 0x46625c3f register_sound_special_device -EXPORT_SYMBOL sound/soundcore 0x6c21e546 register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x797e5003 register_sound_midi -EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0x9d350cd1 register_sound_special -EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xe455613e sound_class -EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x00c55795 snd_emux_free -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x2aee54dd snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x32e98696 snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x83132aec snd_emux_new -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xbabffcaa snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xbd2119b5 snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/snd-util-mem 0x42585ce1 __snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0x474995e6 snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x8e8b4290 snd_util_memhdr_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0x918c5e50 snd_util_mem_avail -EXPORT_SYMBOL sound/synth/snd-util-mem 0xd4c240ee snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0xf3cecd07 snd_util_memhdr_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0xfd432319 __snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0xffbb132b __snd_util_memblk_new -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x4129e494 snd_usbmidi_create -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect -EXPORT_SYMBOL vmlinux 0x0020f877 i2c_put_adapter -EXPORT_SYMBOL vmlinux 0x00398f03 __secpath_destroy -EXPORT_SYMBOL vmlinux 0x003ed69a __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0x00506a49 uart_suspend_port -EXPORT_SYMBOL vmlinux 0x0054dc09 blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x0064f4d8 pmac_resume_agp_for_card -EXPORT_SYMBOL vmlinux 0x00692612 down_write -EXPORT_SYMBOL vmlinux 0x007c4575 d_lookup -EXPORT_SYMBOL vmlinux 0x007ccf9f jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0x008293c4 crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0x00893cbb dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0x009224f4 pci_save_state -EXPORT_SYMBOL vmlinux 0x00a113df __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x00aa25aa tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x00b6ab86 nf_log_register -EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00dbddaa key_link -EXPORT_SYMBOL vmlinux 0x00e0a2e3 zpool_register_driver -EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve -EXPORT_SYMBOL vmlinux 0x0102f2c9 __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x010540d8 netif_napi_add -EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr -EXPORT_SYMBOL vmlinux 0x01157d90 phy_device_remove -EXPORT_SYMBOL vmlinux 0x012a97fc xor_altivec_4 -EXPORT_SYMBOL vmlinux 0x013c73b2 lro_flush_all -EXPORT_SYMBOL vmlinux 0x014027bc max8998_read_reg -EXPORT_SYMBOL vmlinux 0x0147f347 scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0x01494a23 blk_make_request -EXPORT_SYMBOL vmlinux 0x0161adc4 pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x0164002e blk_queue_stack_limits -EXPORT_SYMBOL vmlinux 0x01640441 sock_release -EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer -EXPORT_SYMBOL vmlinux 0x017c72b8 jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0x0186e2de smp_call_function_many -EXPORT_SYMBOL vmlinux 0x0192b25d neigh_direct_output -EXPORT_SYMBOL vmlinux 0x01bd6f86 no_llseek -EXPORT_SYMBOL vmlinux 0x01e60c99 ip6_frag_init -EXPORT_SYMBOL vmlinux 0x02067d04 fddi_change_mtu -EXPORT_SYMBOL vmlinux 0x02178b88 bdev_stack_limits -EXPORT_SYMBOL vmlinux 0x021dad4b mpage_readpages -EXPORT_SYMBOL vmlinux 0x021e3aa1 tty_do_resize -EXPORT_SYMBOL vmlinux 0x02361a21 finish_open -EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x027713db blk_get_request -EXPORT_SYMBOL vmlinux 0x027e8c9c icmp_send -EXPORT_SYMBOL vmlinux 0x029706b3 blk_mq_add_to_requeue_list -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table -EXPORT_SYMBOL vmlinux 0x02d26de7 remap_pfn_range -EXPORT_SYMBOL vmlinux 0x02df080e ipv4_specific -EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string -EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact -EXPORT_SYMBOL vmlinux 0x02f67d9d security_file_permission -EXPORT_SYMBOL vmlinux 0x03026e8e netpoll_send_skb_on_dev -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x034dc8d9 iov_iter_zero -EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x03b26b70 pci_pme_active -EXPORT_SYMBOL vmlinux 0x03e5459c xfrm_init_replay -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg -EXPORT_SYMBOL vmlinux 0x04318618 dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x043d5218 nf_log_set -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x0454bcc2 get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0x04617472 ip_do_fragment -EXPORT_SYMBOL vmlinux 0x046fa788 down_read -EXPORT_SYMBOL vmlinux 0x0476b525 dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display -EXPORT_SYMBOL vmlinux 0x04af4e01 __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x04afd4fb release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x04b3788a pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0x04bfe31d abx500_register_ops -EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol -EXPORT_SYMBOL vmlinux 0x04f1041d lockref_get -EXPORT_SYMBOL vmlinux 0x04fb0a11 request_key -EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x052dd06f lwtunnel_state_alloc -EXPORT_SYMBOL vmlinux 0x0530dede _raw_write_trylock -EXPORT_SYMBOL vmlinux 0x05464f9f skb_checksum -EXPORT_SYMBOL vmlinux 0x05552320 __mutex_init -EXPORT_SYMBOL vmlinux 0x05582289 __serio_register_driver -EXPORT_SYMBOL vmlinux 0x0572ab86 serio_reconnect -EXPORT_SYMBOL vmlinux 0x05750398 of_phy_attach -EXPORT_SYMBOL vmlinux 0x05780519 xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0x05a514a1 _insl_ns -EXPORT_SYMBOL vmlinux 0x05a82a38 i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x05d117a1 dst_init -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x0656c115 seq_putc -EXPORT_SYMBOL vmlinux 0x065c7184 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x06710967 i8042_remove_filter -EXPORT_SYMBOL vmlinux 0x0672fdfb param_set_uint -EXPORT_SYMBOL vmlinux 0x0675c7eb atomic64_cmpxchg -EXPORT_SYMBOL vmlinux 0x06764d3b sock_create -EXPORT_SYMBOL vmlinux 0x067ac8a6 gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx -EXPORT_SYMBOL vmlinux 0x069a70c7 __scm_send -EXPORT_SYMBOL vmlinux 0x06cdb696 mdiobus_read -EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn -EXPORT_SYMBOL vmlinux 0x0713f0b7 __ethtool_get_settings -EXPORT_SYMBOL vmlinux 0x071abe04 genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 -EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x07400d5b fs_bio_set -EXPORT_SYMBOL vmlinux 0x074b007e pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0x074e9213 down_killable -EXPORT_SYMBOL vmlinux 0x0754182f md_write_start -EXPORT_SYMBOL vmlinux 0x075a532d tty_port_close -EXPORT_SYMBOL vmlinux 0x075ef021 bio_alloc_pages -EXPORT_SYMBOL vmlinux 0x075f0f65 of_cpufreq_power_cooling_register -EXPORT_SYMBOL vmlinux 0x07797a08 qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0x07941a45 pci_disable_device -EXPORT_SYMBOL vmlinux 0x079534c9 scsi_host_get -EXPORT_SYMBOL vmlinux 0x07978807 d_obtain_root -EXPORT_SYMBOL vmlinux 0x07a341d9 tcp_proc_register -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07abcaad mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x07b86794 generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x07cbc11e __skb_get_hash_flowi6 -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07e06c9b genlmsg_put -EXPORT_SYMBOL vmlinux 0x07eeb2cf genphy_config_init -EXPORT_SYMBOL vmlinux 0x08045ffd i8042_install_filter -EXPORT_SYMBOL vmlinux 0x081f336b twl6040_set_pll -EXPORT_SYMBOL vmlinux 0x082ac963 simple_follow_link -EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x0854a99c xfrm6_rcv_cb -EXPORT_SYMBOL vmlinux 0x08703e12 jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0x0887292f nf_getsockopt -EXPORT_SYMBOL vmlinux 0x08b0a4aa of_find_node_by_name -EXPORT_SYMBOL vmlinux 0x08cf44a1 of_find_net_device_by_node -EXPORT_SYMBOL vmlinux 0x08df9457 neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0x08f002c5 free_user_ns -EXPORT_SYMBOL vmlinux 0x09040b16 dquot_acquire -EXPORT_SYMBOL vmlinux 0x091bbfc0 set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0x09317c16 single_open -EXPORT_SYMBOL vmlinux 0x0944d512 tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key -EXPORT_SYMBOL vmlinux 0x0965065a ata_dev_printk -EXPORT_SYMBOL vmlinux 0x0979d926 simple_getattr -EXPORT_SYMBOL vmlinux 0x0980d575 end_page_writeback -EXPORT_SYMBOL vmlinux 0x09834ef8 param_ops_bint -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x098d3de4 dqget -EXPORT_SYMBOL vmlinux 0x09bbbb91 trace_print_symbols_seq_u64 -EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x09c60337 __dax_fault -EXPORT_SYMBOL vmlinux 0x09c67afb flex_array_get -EXPORT_SYMBOL vmlinux 0x09c6fe7b sg_miter_stop -EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0x09c94d68 keyring_clear -EXPORT_SYMBOL vmlinux 0x09cfcc0b jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x0a08aa6f sync_inode_metadata -EXPORT_SYMBOL vmlinux 0x0a0acfec set_bh_page -EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class -EXPORT_SYMBOL vmlinux 0x0a2ecf33 netif_receive_skb -EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr -EXPORT_SYMBOL vmlinux 0x0a373226 crc32_le_shift -EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell -EXPORT_SYMBOL vmlinux 0x0a543f76 nf_nat_decode_session_hook -EXPORT_SYMBOL vmlinux 0x0a7aca28 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0x0a7c2889 sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0x0a7e2512 i2c_add_adapter -EXPORT_SYMBOL vmlinux 0x0a8285e0 blk_alloc_queue_node -EXPORT_SYMBOL vmlinux 0x0a961c58 ilookup5_nowait -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aa7429a agp_free_memory -EXPORT_SYMBOL vmlinux 0x0abbca7e elevator_exit -EXPORT_SYMBOL vmlinux 0x0abd6af9 __kernel_write -EXPORT_SYMBOL vmlinux 0x0ac70542 simple_write_begin -EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0ad1e5ca bio_integrity_clone -EXPORT_SYMBOL vmlinux 0x0ad5919f skb_pull -EXPORT_SYMBOL vmlinux 0x0adbd43a devm_gpio_free -EXPORT_SYMBOL vmlinux 0x0ae29570 register_key_type -EXPORT_SYMBOL vmlinux 0x0aed5a8e writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x0afc5991 pcim_iounmap -EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b22e104 cfb_fillrect -EXPORT_SYMBOL vmlinux 0x0b29a9b1 pagevec_lookup -EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init -EXPORT_SYMBOL vmlinux 0x0b52ef56 bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister -EXPORT_SYMBOL vmlinux 0x0b66debe key_alloc -EXPORT_SYMBOL vmlinux 0x0b67970f kmem_cache_size -EXPORT_SYMBOL vmlinux 0x0b683f3c param_get_long -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b820bd7 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0x0bb6b69c vme_register_bridge -EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0be2b941 jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0x0bef0afb phy_suspend -EXPORT_SYMBOL vmlinux 0x0bf31298 pcie_get_mps -EXPORT_SYMBOL vmlinux 0x0c12e626 __debugger_bpt -EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat -EXPORT_SYMBOL vmlinux 0x0c4b277b filemap_flush -EXPORT_SYMBOL vmlinux 0x0c5217d5 cdrom_media_changed -EXPORT_SYMBOL vmlinux 0x0c53e5f1 agp_find_bridge -EXPORT_SYMBOL vmlinux 0x0c540188 kern_path_mountpoint -EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features -EXPORT_SYMBOL vmlinux 0x0c636e13 pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x0c6eac05 ns_capable -EXPORT_SYMBOL vmlinux 0x0c7dc942 skb_clone_sk -EXPORT_SYMBOL vmlinux 0x0c9b6089 nvram_get_size -EXPORT_SYMBOL vmlinux 0x0ca0a4db dquot_release -EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0x0cba9ca3 dev_addr_init -EXPORT_SYMBOL vmlinux 0x0cbc5921 blk_end_request -EXPORT_SYMBOL vmlinux 0x0ccafbba skb_free_datagram -EXPORT_SYMBOL vmlinux 0x0ccd06a4 sock_no_getname -EXPORT_SYMBOL vmlinux 0x0ccf589f tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0x0d0468ae generic_removexattr -EXPORT_SYMBOL vmlinux 0x0d16bb0c mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0x0d2a3186 fsnotify_destroy_mark -EXPORT_SYMBOL vmlinux 0x0d3411a9 kmap_high -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d6a9efc cdev_add -EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft -EXPORT_SYMBOL vmlinux 0x0da225f1 cdev_alloc -EXPORT_SYMBOL vmlinux 0x0da5d9f9 mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0x0dbf38b8 mol_trampoline -EXPORT_SYMBOL vmlinux 0x0dc0ace0 idr_find_slowpath -EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex -EXPORT_SYMBOL vmlinux 0x0dc1b4d1 nf_log_packet -EXPORT_SYMBOL vmlinux 0x0dd5e6ce pci_find_pcie_root_port -EXPORT_SYMBOL vmlinux 0x0e0738bc kernel_getsockname -EXPORT_SYMBOL vmlinux 0x0e15265b sock_wfree -EXPORT_SYMBOL vmlinux 0x0e1b200f of_node_get -EXPORT_SYMBOL vmlinux 0x0e1e034b nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x0e235e83 phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0x0e2fce48 pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0x0e3bee74 pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0x0e5266b6 inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec -EXPORT_SYMBOL vmlinux 0x0e723c57 keyring_search -EXPORT_SYMBOL vmlinux 0x0e7d6ca2 skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x0e8dd44e swiotlb_free_coherent -EXPORT_SYMBOL vmlinux 0x0e8f30f6 _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0x0e90a2b1 set_wb_congested -EXPORT_SYMBOL vmlinux 0x0e925228 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0x0e9d07b2 pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x0eaf451e hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ee4cc70 blk_free_tags -EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy -EXPORT_SYMBOL vmlinux 0x0ef20db1 kernstart_addr -EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups -EXPORT_SYMBOL vmlinux 0x0f00db9d dcb_getapp -EXPORT_SYMBOL vmlinux 0x0f1090ee fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x0f20d948 inode_set_flags -EXPORT_SYMBOL vmlinux 0x0f28cb91 nvram_read_byte -EXPORT_SYMBOL vmlinux 0x0f39bb6e iget5_locked -EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec -EXPORT_SYMBOL vmlinux 0x0f531e3e inet_frags_init -EXPORT_SYMBOL vmlinux 0x0f53d97d dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0x0f54dc95 fixed_phy_update_state -EXPORT_SYMBOL vmlinux 0x0f575316 mmc_stop_bkops -EXPORT_SYMBOL vmlinux 0x0f5faa7e wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size -EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x0f7d3bfd skb_trim -EXPORT_SYMBOL vmlinux 0x0f86b0d5 da903x_query_status -EXPORT_SYMBOL vmlinux 0x0f8ae2c8 __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fb706b5 xfrm4_rcv_cb -EXPORT_SYMBOL vmlinux 0x0fce0b22 of_get_ddr_timings -EXPORT_SYMBOL vmlinux 0x0fdb267c of_get_min_tck -EXPORT_SYMBOL vmlinux 0x100e9776 qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0x102af6ab vga_put -EXPORT_SYMBOL vmlinux 0x10366598 pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0x104bb4fc redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0x1051eef7 sock_no_listen -EXPORT_SYMBOL vmlinux 0x105d44ed inet_offloads -EXPORT_SYMBOL vmlinux 0x106470a5 save_mount_options -EXPORT_SYMBOL vmlinux 0x106da639 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x10748ad3 generic_delete_inode -EXPORT_SYMBOL vmlinux 0x1079b1e0 iget_failed -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x108033d9 block_write_begin -EXPORT_SYMBOL vmlinux 0x10a3ee17 kmap_atomic_prot -EXPORT_SYMBOL vmlinux 0x10c27ef6 skb_copy -EXPORT_SYMBOL vmlinux 0x10e45a44 dquot_quota_off -EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x110f59ff generic_pipe_buf_confirm -EXPORT_SYMBOL vmlinux 0x11145431 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0x11631827 dquot_get_state -EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn -EXPORT_SYMBOL vmlinux 0x1164c1e6 bdput -EXPORT_SYMBOL vmlinux 0x11663cec adb_register -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x117325bc kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0x1182d83a cpuidle_disable -EXPORT_SYMBOL vmlinux 0x119b5613 scsi_report_opcode -EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned -EXPORT_SYMBOL vmlinux 0x11e8e470 blk_queue_prep_rq -EXPORT_SYMBOL vmlinux 0x11ed101f ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin -EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const -EXPORT_SYMBOL vmlinux 0x1210a973 scm_detach_fds -EXPORT_SYMBOL vmlinux 0x12924837 of_get_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x129a5a11 dentry_update_name_case -EXPORT_SYMBOL vmlinux 0x129eeb32 padata_register_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range -EXPORT_SYMBOL vmlinux 0x12b346e3 from_kgid -EXPORT_SYMBOL vmlinux 0x12bd991b max8998_bulk_read -EXPORT_SYMBOL vmlinux 0x12d27284 tcp_proc_unregister -EXPORT_SYMBOL vmlinux 0x12d37b82 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0x12da2011 phy_stop_interrupts -EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc -EXPORT_SYMBOL vmlinux 0x12dc2f3a skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0x12ded1c1 sock_rfree -EXPORT_SYMBOL vmlinux 0x12e5ef0c rtas_set_power_level -EXPORT_SYMBOL vmlinux 0x12fd8633 file_open_root -EXPORT_SYMBOL vmlinux 0x12ff235f cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0x12ff4d89 scsi_execute -EXPORT_SYMBOL vmlinux 0x1319449d secure_modules -EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x13284aaf dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0x13307fde vsscanf -EXPORT_SYMBOL vmlinux 0x1331330e reservation_object_add_excl_fence -EXPORT_SYMBOL vmlinux 0x13377d77 inet6_register_protosw -EXPORT_SYMBOL vmlinux 0x134c4df9 mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0x1350d435 cpufreq_power_cooling_register -EXPORT_SYMBOL vmlinux 0x136a9487 mb_cache_entry_insert -EXPORT_SYMBOL vmlinux 0x136eba95 softnet_data -EXPORT_SYMBOL vmlinux 0x137135fa nonseekable_open -EXPORT_SYMBOL vmlinux 0x137bfa63 pci_restore_state -EXPORT_SYMBOL vmlinux 0x13909d44 ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0x13abb4f1 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13d4044f netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation -EXPORT_SYMBOL vmlinux 0x1407c6e7 kmap_prot -EXPORT_SYMBOL vmlinux 0x1420b379 kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0x14249609 xfrm_find_acq -EXPORT_SYMBOL vmlinux 0x1425044f default_llseek -EXPORT_SYMBOL vmlinux 0x1427df1e seq_pad -EXPORT_SYMBOL vmlinux 0x1437fe6d netdev_crit -EXPORT_SYMBOL vmlinux 0x143e92e0 sock_init_data -EXPORT_SYMBOL vmlinux 0x1455a038 tty_set_operations -EXPORT_SYMBOL vmlinux 0x145d29ea cdrom_ioctl -EXPORT_SYMBOL vmlinux 0x1463d891 __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x147d5895 input_set_abs_params -EXPORT_SYMBOL vmlinux 0x14afd46d tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0x14b2514d add_random_ready_callback -EXPORT_SYMBOL vmlinux 0x14c713dd mmc_hw_reset -EXPORT_SYMBOL vmlinux 0x14c72dbc free_netdev -EXPORT_SYMBOL vmlinux 0x14c76067 __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x14e8ca83 agp3_generic_tlbflush -EXPORT_SYMBOL vmlinux 0x14ed7bc2 nf_ct_attach -EXPORT_SYMBOL vmlinux 0x14fffe14 vfs_read -EXPORT_SYMBOL vmlinux 0x151c5240 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x1545620c copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x1549292e simple_open -EXPORT_SYMBOL vmlinux 0x154b0a0d __serio_register_port -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x156763dc dcache_dir_close -EXPORT_SYMBOL vmlinux 0x15690773 security_path_unlink -EXPORT_SYMBOL vmlinux 0x157e563c devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0x15aa8486 fbcon_set_bitops -EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15be8a8e param_get_short -EXPORT_SYMBOL vmlinux 0x15d3fd60 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x15e0b75d mmc_erase -EXPORT_SYMBOL vmlinux 0x15ecdcdb sock_no_setsockopt -EXPORT_SYMBOL vmlinux 0x160bd45c rtas_token -EXPORT_SYMBOL vmlinux 0x16178867 cap_mmap_file -EXPORT_SYMBOL vmlinux 0x161d0033 proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0x162b6643 nvm_dev_dma_alloc -EXPORT_SYMBOL vmlinux 0x1642b9f6 capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0x16540bbc __cmpdi2 -EXPORT_SYMBOL vmlinux 0x16696422 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0x166e822a param_set_charp -EXPORT_SYMBOL vmlinux 0x166ebf0f of_device_get_match_data -EXPORT_SYMBOL vmlinux 0x1683a50b radix_tree_delete -EXPORT_SYMBOL vmlinux 0x1683f204 nf_register_hook -EXPORT_SYMBOL vmlinux 0x16994cfb param_set_invbool -EXPORT_SYMBOL vmlinux 0x16a08b86 scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0x16a75f6d xfrm_init_state -EXPORT_SYMBOL vmlinux 0x16a98a65 unregister_binfmt -EXPORT_SYMBOL vmlinux 0x16b86584 of_device_register -EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16eebd2e ip6_frag_match -EXPORT_SYMBOL vmlinux 0x16f2ee76 md_cluster_mod -EXPORT_SYMBOL vmlinux 0x16f4920b lock_sock_fast -EXPORT_SYMBOL vmlinux 0x171e74aa scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x17478177 blk_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x174afb1a __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0x17648396 dev_base_lock -EXPORT_SYMBOL vmlinux 0x17a46057 __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x17aa156a __ucmpdi2 -EXPORT_SYMBOL vmlinux 0x17aaac0d genphy_soft_reset -EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator -EXPORT_SYMBOL vmlinux 0x17c969ac input_flush_device -EXPORT_SYMBOL vmlinux 0x17d843ea neigh_update -EXPORT_SYMBOL vmlinux 0x17e28473 fsl_upm_run_pattern -EXPORT_SYMBOL vmlinux 0x17f1452e ___pskb_trim -EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip -EXPORT_SYMBOL vmlinux 0x17f40b94 __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x1806adaa sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken -EXPORT_SYMBOL vmlinux 0x182b3b7b pcim_iomap_table -EXPORT_SYMBOL vmlinux 0x183e01d3 genl_unregister_family -EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask -EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc -EXPORT_SYMBOL vmlinux 0x188c5cfa kernel_connect -EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x189af3bc ps2_sendbyte -EXPORT_SYMBOL vmlinux 0x18a24b6f __alloc_skb -EXPORT_SYMBOL vmlinux 0x18bfa2e9 input_set_keycode -EXPORT_SYMBOL vmlinux 0x18c2227f cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x19382458 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x1943ce09 kernel_listen -EXPORT_SYMBOL vmlinux 0x195ac51d dev_get_by_index -EXPORT_SYMBOL vmlinux 0x19610e1f cpu_all_bits -EXPORT_SYMBOL vmlinux 0x196f21d0 unregister_framebuffer -EXPORT_SYMBOL vmlinux 0x1978a024 scsi_device_resume -EXPORT_SYMBOL vmlinux 0x1980e6d0 security_path_mknod -EXPORT_SYMBOL vmlinux 0x198382be mmc_fixup_device -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x199f1cf4 cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x19ba1dc7 fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x19bcfd12 netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19daf983 mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0x1a023a88 nvm_unregister_mgr -EXPORT_SYMBOL vmlinux 0x1a4f3034 dev_warn -EXPORT_SYMBOL vmlinux 0x1a6c995c con_set_default_unimap -EXPORT_SYMBOL vmlinux 0x1a706f9c nvm_addr_to_generic_mode -EXPORT_SYMBOL vmlinux 0x1a72302a get_unmapped_area -EXPORT_SYMBOL vmlinux 0x1a7cd230 d_set_d_op -EXPORT_SYMBOL vmlinux 0x1aad4fe4 input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0x1ab14eef dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x1ac77dd3 free_page_put_link -EXPORT_SYMBOL vmlinux 0x1af3580e sock_get_timestampns -EXPORT_SYMBOL vmlinux 0x1af62a99 panic_notifier_list -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b132009 rename_lock -EXPORT_SYMBOL vmlinux 0x1b604c99 dmam_alloc_noncoherent -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug -EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip -EXPORT_SYMBOL vmlinux 0x1bb1dc39 param_ops_ushort -EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer -EXPORT_SYMBOL vmlinux 0x1bb790b5 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0x1bc4ff03 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0x1bca2b59 load_fp_state -EXPORT_SYMBOL vmlinux 0x1be362ee bd_set_size -EXPORT_SYMBOL vmlinux 0x1bf21cd1 param_ops_byte -EXPORT_SYMBOL vmlinux 0x1c052c24 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0x1c097c2a nvm_register_mgr -EXPORT_SYMBOL vmlinux 0x1c13e367 I_BDEV -EXPORT_SYMBOL vmlinux 0x1c5b2c15 pmu_wait_complete -EXPORT_SYMBOL vmlinux 0x1c80de9c ip_send_check -EXPORT_SYMBOL vmlinux 0x1ca65ef9 __generic_file_fsync -EXPORT_SYMBOL vmlinux 0x1cb26022 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x1cd9087a sk_prot_clear_portaddr_nulls -EXPORT_SYMBOL vmlinux 0x1cfe13dc buffer_migrate_page -EXPORT_SYMBOL vmlinux 0x1d13a864 blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0x1d1b3baa lro_receive_skb -EXPORT_SYMBOL vmlinux 0x1d1c79a0 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x1d37940f kernel_bind -EXPORT_SYMBOL vmlinux 0x1d4b1aed dev_mc_add -EXPORT_SYMBOL vmlinux 0x1d4df22e follow_down_one -EXPORT_SYMBOL vmlinux 0x1d65f523 unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x1d7d513a module_refcount -EXPORT_SYMBOL vmlinux 0x1d840f77 ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0x1d9eed36 nvm_dev_dma_free -EXPORT_SYMBOL vmlinux 0x1d9f3977 set_page_dirty -EXPORT_SYMBOL vmlinux 0x1da87acd sk_capable -EXPORT_SYMBOL vmlinux 0x1daee28a percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0x1db495d8 phy_set_max_speed -EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1dd85b78 km_is_alive -EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev -EXPORT_SYMBOL vmlinux 0x1e43f613 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0x1e4810f5 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e7d3e72 noop_qdisc -EXPORT_SYMBOL vmlinux 0x1e8c12c2 param_ops_string -EXPORT_SYMBOL vmlinux 0x1e9967ed udp_poll -EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1ead2ef4 max8925_set_bits -EXPORT_SYMBOL vmlinux 0x1ec0159c inet6_del_protocol -EXPORT_SYMBOL vmlinux 0x1ed301af tcp_proto_cgroup -EXPORT_SYMBOL vmlinux 0x1f1095ab unlock_new_inode -EXPORT_SYMBOL vmlinux 0x1f118f2b dentry_open -EXPORT_SYMBOL vmlinux 0x1f26a337 blk_queue_split -EXPORT_SYMBOL vmlinux 0x1f281d23 prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0x1fa9e6d6 of_platform_device_create -EXPORT_SYMBOL vmlinux 0x1fb3f11d iov_iter_init -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag -EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x1fef3e87 nvm_submit_io -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x20030ecd ioremap -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x20421305 on_each_cpu_mask -EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool -EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq -EXPORT_SYMBOL vmlinux 0x20a00f12 key_task_permission -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20ae58d0 __tracepoint_fence_emit -EXPORT_SYMBOL vmlinux 0x20b754a3 fsnotify_add_mark -EXPORT_SYMBOL vmlinux 0x20bf2756 param_set_short -EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf -EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x210f1fa3 devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0x211f6269 tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0x2155fe86 inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x2157965d vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x2167db87 nla_reserve -EXPORT_SYMBOL vmlinux 0x216b54d7 tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x2178611e pci_get_class -EXPORT_SYMBOL vmlinux 0x217a7b12 complete_request_key -EXPORT_SYMBOL vmlinux 0x21815d60 napi_disable -EXPORT_SYMBOL vmlinux 0x2183de51 rwsem_wake -EXPORT_SYMBOL vmlinux 0x218bf0b0 lwtunnel_fill_encap -EXPORT_SYMBOL vmlinux 0x21afd68a dev_printk_emit -EXPORT_SYMBOL vmlinux 0x21c1e66f ip_route_input_noref -EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set -EXPORT_SYMBOL vmlinux 0x21e3276c dev_addr_del -EXPORT_SYMBOL vmlinux 0x21e44003 inet_shutdown -EXPORT_SYMBOL vmlinux 0x21f19335 fence_remove_callback -EXPORT_SYMBOL vmlinux 0x220c8205 sock_wmalloc -EXPORT_SYMBOL vmlinux 0x2220e337 vfs_fsync_range -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x222f6207 __nla_reserve -EXPORT_SYMBOL vmlinux 0x2234a163 xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x22441f51 ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0x225021f5 scsi_device_get -EXPORT_SYMBOL vmlinux 0x2256fafa div64_u64_rem -EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits -EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint -EXPORT_SYMBOL vmlinux 0x2278e94b slhc_remember -EXPORT_SYMBOL vmlinux 0x22acb78d dump_page -EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22b74f9b bdi_setup_and_register -EXPORT_SYMBOL vmlinux 0x22b975f3 abx500_event_registers_startup_state_get -EXPORT_SYMBOL vmlinux 0x22bcc782 set_posix_acl -EXPORT_SYMBOL vmlinux 0x22d6c13e get_task_io_context -EXPORT_SYMBOL vmlinux 0x22d6ed4a devfreq_interval_update -EXPORT_SYMBOL vmlinux 0x22dce17d module_layout -EXPORT_SYMBOL vmlinux 0x22dfdd06 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x22e2bbc0 netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs -EXPORT_SYMBOL vmlinux 0x231e7dce update_region -EXPORT_SYMBOL vmlinux 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL vmlinux 0x235e90f3 __wake_up_bit -EXPORT_SYMBOL vmlinux 0x237af1b0 __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0x237e2184 d_path -EXPORT_SYMBOL vmlinux 0x237f3711 tcp_parse_options -EXPORT_SYMBOL vmlinux 0x23a1d5de skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x23b580da ps2_command -EXPORT_SYMBOL vmlinux 0x23b77337 inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23f2243d mempool_free -EXPORT_SYMBOL vmlinux 0x23f5efec dmam_alloc_coherent -EXPORT_SYMBOL vmlinux 0x23f7149e pci_select_bars -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x2404ee12 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0x2420b882 fb_firmware_edid -EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x245b313b qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x245dad7e dev_alloc_name -EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf -EXPORT_SYMBOL vmlinux 0x24855cba __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x24942491 seq_open_private -EXPORT_SYMBOL vmlinux 0x249d4aff __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x24aa839b tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x24acd963 unregister_cdrom -EXPORT_SYMBOL vmlinux 0x24bdf52e inet_accept -EXPORT_SYMBOL vmlinux 0x24c81c14 locks_free_lock -EXPORT_SYMBOL vmlinux 0x24f00380 ida_init -EXPORT_SYMBOL vmlinux 0x24f5eb6f of_n_addr_cells -EXPORT_SYMBOL vmlinux 0x24fa9d8b get_thermal_instance -EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function -EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x251bcf5e nvm_get_blk_unlocked -EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register -EXPORT_SYMBOL vmlinux 0x2527a087 vme_slave_set -EXPORT_SYMBOL vmlinux 0x252e652f in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x2537d7d0 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0x25532b7d of_get_next_child -EXPORT_SYMBOL vmlinux 0x2562c2da copy_from_iter -EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x258c849a cancel_dirty_page -EXPORT_SYMBOL vmlinux 0x25bc4221 page_follow_link_light -EXPORT_SYMBOL vmlinux 0x25bdab14 inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0x25cf43c1 elevator_alloc -EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25f3bd2e atomic64_xchg -EXPORT_SYMBOL vmlinux 0x25fdfdd8 kill_anon_super -EXPORT_SYMBOL vmlinux 0x261c34bf serio_open -EXPORT_SYMBOL vmlinux 0x2638f436 agp_generic_type_to_mask_type -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x26477c07 __vmalloc -EXPORT_SYMBOL vmlinux 0x264f25fc agp_generic_mask_memory -EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux -EXPORT_SYMBOL vmlinux 0x26565c26 tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x265f5f76 of_phy_register_fixed_link -EXPORT_SYMBOL vmlinux 0x268509a5 inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x26952256 pci_clear_master -EXPORT_SYMBOL vmlinux 0x26ab0f8e bprm_change_interp -EXPORT_SYMBOL vmlinux 0x26b4bff7 iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0x26b760c4 slhc_init -EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0x26c1bce7 rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x26cbfe89 phy_start_aneg -EXPORT_SYMBOL vmlinux 0x26d2a605 input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x26daf2e0 lookup_bdev -EXPORT_SYMBOL vmlinux 0x26e374d7 filp_close -EXPORT_SYMBOL vmlinux 0x26e4cba2 __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x26e6624b elv_register_queue -EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min -EXPORT_SYMBOL vmlinux 0x2709f27e blk_alloc_queue -EXPORT_SYMBOL vmlinux 0x271c6afa scsi_remove_target -EXPORT_SYMBOL vmlinux 0x272c9acd pmu_battery_count -EXPORT_SYMBOL vmlinux 0x27353ad3 _dev_info -EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x274b799f skb_insert -EXPORT_SYMBOL vmlinux 0x2753a61d ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x2758026e tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0x2769c98b mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0x276ae2f5 md_finish_reshape -EXPORT_SYMBOL vmlinux 0x2771d7ff ida_get_new_above -EXPORT_SYMBOL vmlinux 0x27755bac __bread_gfp -EXPORT_SYMBOL vmlinux 0x277b3335 blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x27a5a764 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x27a8ab51 blk_sync_queue -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27d6feb8 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0x27e1a049 printk -EXPORT_SYMBOL vmlinux 0x27e37c17 alloc_fcdev -EXPORT_SYMBOL vmlinux 0x27e55b4a of_dev_put -EXPORT_SYMBOL vmlinux 0x280aa739 commit_creds -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x2823cf23 security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0x28265a0b pci_write_vpd -EXPORT_SYMBOL vmlinux 0x28289c10 xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0x28609dec dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x289db3ee idr_remove -EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x28a74b12 nf_setsockopt -EXPORT_SYMBOL vmlinux 0x28a7beba __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x28ae3820 page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x28b61cac blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0x28be5f6f alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x28c8a50b rfkill_alloc -EXPORT_SYMBOL vmlinux 0x28d24c01 adb_client_list -EXPORT_SYMBOL vmlinux 0x28db4852 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0x28e6755b tty_register_driver -EXPORT_SYMBOL vmlinux 0x28e6ce45 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x28f771c2 sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0x28f784f5 __debugger_break_match -EXPORT_SYMBOL vmlinux 0x29039c12 file_update_time -EXPORT_SYMBOL vmlinux 0x292a4651 down_read_trylock -EXPORT_SYMBOL vmlinux 0x292eaf84 devm_gpiod_put -EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0x29558a36 mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0x2970d092 dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0x2979689c pcie_port_service_register -EXPORT_SYMBOL vmlinux 0x29b47fb4 agp_unbind_memory -EXPORT_SYMBOL vmlinux 0x29d5da4d __skb_checksum -EXPORT_SYMBOL vmlinux 0x29fc210c put_tty_driver -EXPORT_SYMBOL vmlinux 0x29fdda53 kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0x2a12dc5c of_find_compatible_node -EXPORT_SYMBOL vmlinux 0x2a16b2b6 __module_get -EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a387684 of_graph_get_endpoint_by_regs -EXPORT_SYMBOL vmlinux 0x2a4adb74 input_release_device -EXPORT_SYMBOL vmlinux 0x2a5cea0a xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x2a6cf967 single_release -EXPORT_SYMBOL vmlinux 0x2a7cac99 pci_add_resource -EXPORT_SYMBOL vmlinux 0x2a9b94b8 jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp -EXPORT_SYMBOL vmlinux 0x2aa4c4cb do_truncate -EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy -EXPORT_SYMBOL vmlinux 0x2ac243e1 lwtunnel_output -EXPORT_SYMBOL vmlinux 0x2acc344a scsi_cmd_get_serial -EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat -EXPORT_SYMBOL vmlinux 0x2ad01ed1 __brelse -EXPORT_SYMBOL vmlinux 0x2ae389c1 __get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x2b0f0738 scsi_execute_req_flags -EXPORT_SYMBOL vmlinux 0x2b12925d cpumask_next_and -EXPORT_SYMBOL vmlinux 0x2b13b1ee agp_backend_release -EXPORT_SYMBOL vmlinux 0x2b2ab0cd of_device_is_compatible -EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 -EXPORT_SYMBOL vmlinux 0x2b2dc764 mfd_cell_disable -EXPORT_SYMBOL vmlinux 0x2b37bf60 __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0x2b396a1d blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0x2b403371 setattr_copy -EXPORT_SYMBOL vmlinux 0x2b4d0f9f kunmap_high -EXPORT_SYMBOL vmlinux 0x2b6cbb48 blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0x2b7f23df nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2ba6d275 inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency -EXPORT_SYMBOL vmlinux 0x2baad4a8 mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0x2bc0dbea security_path_truncate -EXPORT_SYMBOL vmlinux 0x2bdfd2a5 setup_new_exec -EXPORT_SYMBOL vmlinux 0x2be2d08a pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0x2befd0b0 blk_run_queue_async -EXPORT_SYMBOL vmlinux 0x2bf7644e bio_integrity_free -EXPORT_SYMBOL vmlinux 0x2c021975 phy_print_status -EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c25be52 __ps2_command -EXPORT_SYMBOL vmlinux 0x2c2eb601 dcache_dir_open -EXPORT_SYMBOL vmlinux 0x2c57aa53 devfreq_add_device -EXPORT_SYMBOL vmlinux 0x2c64086b try_module_get -EXPORT_SYMBOL vmlinux 0x2c67c600 dquot_resume -EXPORT_SYMBOL vmlinux 0x2c7b1fca down_timeout -EXPORT_SYMBOL vmlinux 0x2ca564c7 dcb_setapp -EXPORT_SYMBOL vmlinux 0x2cbe1d1b mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0x2cc2151c tty_vhangup -EXPORT_SYMBOL vmlinux 0x2d0de688 brioctl_set -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d2dcbd1 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d3a883c i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0x2d49582a bitmap_start_sync -EXPORT_SYMBOL vmlinux 0x2d75754a generic_read_dir -EXPORT_SYMBOL vmlinux 0x2d882c25 seq_vprintf -EXPORT_SYMBOL vmlinux 0x2d9f1d5c twl6040_power -EXPORT_SYMBOL vmlinux 0x2daf0f25 km_policy_expired -EXPORT_SYMBOL vmlinux 0x2e0864de setup_arg_pages -EXPORT_SYMBOL vmlinux 0x2e19026b tty_port_close_end -EXPORT_SYMBOL vmlinux 0x2e2b0606 netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies -EXPORT_SYMBOL vmlinux 0x2e2dc3aa __tracepoint_fence_annotate_wait_on -EXPORT_SYMBOL vmlinux 0x2e320f90 neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0x2e455046 neigh_ifdown -EXPORT_SYMBOL vmlinux 0x2e4b94e9 simple_unlink -EXPORT_SYMBOL vmlinux 0x2e4f932a load_nls -EXPORT_SYMBOL vmlinux 0x2e726fd3 dquot_commit_info -EXPORT_SYMBOL vmlinux 0x2e73ec21 blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0x2e96add7 migrate_page_copy -EXPORT_SYMBOL vmlinux 0x2e9a3a87 security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0x2ea20989 generic_start_io_acct -EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x2ec755f2 mmc_free_host -EXPORT_SYMBOL vmlinux 0x2ec92bd9 ps2_init -EXPORT_SYMBOL vmlinux 0x2ee541dd handle_edge_irq -EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f117152 bio_clone_fast -EXPORT_SYMBOL vmlinux 0x2f1d4d7a scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0x2f34e11b input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x2f3edc05 generic_perform_write -EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag -EXPORT_SYMBOL vmlinux 0x2f523ca0 neigh_changeaddr -EXPORT_SYMBOL vmlinux 0x2f5470f9 wireless_spy_update -EXPORT_SYMBOL vmlinux 0x2f7035b1 phy_read_mmd_indirect -EXPORT_SYMBOL vmlinux 0x2f9d863f forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x2fa84b93 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x2fae96de rtas_data_buf_lock -EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fba8e8b f_setown -EXPORT_SYMBOL vmlinux 0x2fc20ee6 devm_release_resource -EXPORT_SYMBOL vmlinux 0x2fe1c7ac proc_mkdir -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2fe36103 open_exec -EXPORT_SYMBOL vmlinux 0x2fecbe05 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x2fee9be6 generic_ro_fops -EXPORT_SYMBOL vmlinux 0x300f0ab2 kset_register -EXPORT_SYMBOL vmlinux 0x3010b6f8 input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0x30162604 i2c_register_driver -EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command -EXPORT_SYMBOL vmlinux 0x302ccca7 genphy_suspend -EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0x303c544e mach_chrp -EXPORT_SYMBOL vmlinux 0x303fd8ed devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x304bce80 request_key_async_with_auxdata -EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable -EXPORT_SYMBOL vmlinux 0x308a9f01 validate_sp -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x309c24e8 inode_permission -EXPORT_SYMBOL vmlinux 0x30a10349 kdb_current_task -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30b8b35c cpu_to_chip_id -EXPORT_SYMBOL vmlinux 0x30d097b7 bio_copy_kern -EXPORT_SYMBOL vmlinux 0x30d31e60 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0x30d7834f filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x30e38336 rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0x30e663a3 __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0x30ea722a flow_cache_fini -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x3104bc24 dquot_disable -EXPORT_SYMBOL vmlinux 0x310917fe sort -EXPORT_SYMBOL vmlinux 0x31147e86 netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0x31188cf7 mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0x311edfe0 mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0x312f4eb9 sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0x31380354 getrawmonotonic64 -EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present -EXPORT_SYMBOL vmlinux 0x3147857d default_red -EXPORT_SYMBOL vmlinux 0x315a97c1 mpage_writepage -EXPORT_SYMBOL vmlinux 0x315cfe97 generic_end_io_acct -EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear -EXPORT_SYMBOL vmlinux 0x31824c3c path_nosuid -EXPORT_SYMBOL vmlinux 0x3191f109 __krealloc -EXPORT_SYMBOL vmlinux 0x3195ef3a init_net -EXPORT_SYMBOL vmlinux 0x31987ce0 agp_generic_alloc_pages -EXPORT_SYMBOL vmlinux 0x31a9f77f pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0x31b37f9a blk_stop_queue -EXPORT_SYMBOL vmlinux 0x31c76f0a vme_irq_request -EXPORT_SYMBOL vmlinux 0x31d225ba padata_unregister_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x31f0bb78 __kmap_atomic_idx -EXPORT_SYMBOL vmlinux 0x320e956e dev_mc_flush -EXPORT_SYMBOL vmlinux 0x3214e979 shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0x3219795e tty_port_open -EXPORT_SYMBOL vmlinux 0x321ecce1 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0x32459b52 pci_enable_device_io -EXPORT_SYMBOL vmlinux 0x324d4a78 create_empty_buffers -EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src -EXPORT_SYMBOL vmlinux 0x32663a32 inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0x3279de39 unregister_quota_format -EXPORT_SYMBOL vmlinux 0x327b9c1b pmu_poll_adb -EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy -EXPORT_SYMBOL vmlinux 0x3298e9ca pci_scan_single_device -EXPORT_SYMBOL vmlinux 0x32b0120f jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0x32e4b34e inet_frag_kill -EXPORT_SYMBOL vmlinux 0x32e73ad6 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0x32fbec50 sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0x3317c81c blkdev_get -EXPORT_SYMBOL vmlinux 0x33203562 genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x33209226 lwtunnel_input -EXPORT_SYMBOL vmlinux 0x3335c164 dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x3340faae seq_open -EXPORT_SYMBOL vmlinux 0x334e6ebc pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0x3367cd91 inet_release -EXPORT_SYMBOL vmlinux 0x3372b073 ps2_begin_command -EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page -EXPORT_SYMBOL vmlinux 0x33c02370 pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x33cc21ad sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x33dc8a38 pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x340d5db8 param_ops_int -EXPORT_SYMBOL vmlinux 0x34168b8f delete_from_page_cache -EXPORT_SYMBOL vmlinux 0x341dbfa3 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x342c74c9 devm_free_irq -EXPORT_SYMBOL vmlinux 0x343bd310 input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0x344adbd5 init_cdrom_command -EXPORT_SYMBOL vmlinux 0x344b3a30 cpufreq_global_kobject -EXPORT_SYMBOL vmlinux 0x3461835d of_find_backlight_by_node -EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin -EXPORT_SYMBOL vmlinux 0x347013de nla_validate -EXPORT_SYMBOL vmlinux 0x348c5026 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0x348da9b5 pcie_set_readrq -EXPORT_SYMBOL vmlinux 0x34925cfc of_find_i2c_device_by_node -EXPORT_SYMBOL vmlinux 0x349c743f tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34bd15a2 simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x34e4412e ping_prot -EXPORT_SYMBOL vmlinux 0x34f05a06 inet6_protos -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x34f567bd update_devfreq -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x3520ca09 __pagevec_lru_add -EXPORT_SYMBOL vmlinux 0x353de98f cmdline_parts_parse -EXPORT_SYMBOL vmlinux 0x35497b3d fbcon_rotate_ccw -EXPORT_SYMBOL vmlinux 0x3556114b blk_queue_resize_tags -EXPORT_SYMBOL vmlinux 0x355d220c module_put -EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x35734ef0 pci_get_device -EXPORT_SYMBOL vmlinux 0x3583d015 blkdev_put -EXPORT_SYMBOL vmlinux 0x35a03254 jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35c24ccf input_grab_device -EXPORT_SYMBOL vmlinux 0x35c2da63 scsi_add_device -EXPORT_SYMBOL vmlinux 0x35c32767 xor_altivec_2 -EXPORT_SYMBOL vmlinux 0x35f5d735 mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x35fbd6a1 __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0x3606e1bd filemap_write_and_wait -EXPORT_SYMBOL vmlinux 0x3618cb2d ida_destroy -EXPORT_SYMBOL vmlinux 0x361db9fb blk_queue_start_tag -EXPORT_SYMBOL vmlinux 0x3627161e dev_driver_string -EXPORT_SYMBOL vmlinux 0x362efb87 set_blocksize -EXPORT_SYMBOL vmlinux 0x36335cde pci_device_from_OF_node -EXPORT_SYMBOL vmlinux 0x363820e2 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0x363b1476 override_creds -EXPORT_SYMBOL vmlinux 0x36419f6f tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x366f6d27 idr_destroy -EXPORT_SYMBOL vmlinux 0x367ba856 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x36964564 abx500_mask_and_set_register_interruptible -EXPORT_SYMBOL vmlinux 0x36a7d8a3 pagecache_get_page -EXPORT_SYMBOL vmlinux 0x36b0e732 try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc -EXPORT_SYMBOL vmlinux 0x36c8c828 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x36eb3f1b from_kuid_munged -EXPORT_SYMBOL vmlinux 0x36fdda67 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x370545d9 dump_skip -EXPORT_SYMBOL vmlinux 0x3710b847 tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0x371d2130 check_legacy_ioport -EXPORT_SYMBOL vmlinux 0x371f2f13 scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0x372bc87d vfs_link -EXPORT_SYMBOL vmlinux 0x37383edd rtas_get_power_level -EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x3753825c lease_get_mtime -EXPORT_SYMBOL vmlinux 0x3769633b sk_net_capable -EXPORT_SYMBOL vmlinux 0x3769c240 devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0x37998ed1 param_array_ops -EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x37b2adcf find_get_entry -EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37d60c29 generic_fillattr -EXPORT_SYMBOL vmlinux 0x37e0153d flex_array_prealloc -EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 -EXPORT_SYMBOL vmlinux 0x37eec7fd balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x37f6fee5 fsl_lbc_find -EXPORT_SYMBOL vmlinux 0x3804c30f call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0x380658a0 sock_register -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x381cd139 of_phy_is_fixed_link -EXPORT_SYMBOL vmlinux 0x383b8ee4 dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x386234bb dma_direct_ops -EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x388997b9 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x38982c3e __getblk_slow -EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list -EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38b825d1 idr_replace -EXPORT_SYMBOL vmlinux 0x38dc80b0 remove_proc_entry -EXPORT_SYMBOL vmlinux 0x38ddab5c migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0x38fb9933 tty_std_termios -EXPORT_SYMBOL vmlinux 0x3903e4c1 i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0x390aba8c of_device_is_available -EXPORT_SYMBOL vmlinux 0x390ecc4f bdget_disk -EXPORT_SYMBOL vmlinux 0x391b29ab __break_lease -EXPORT_SYMBOL vmlinux 0x39241a6a scsi_host_put -EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x3960a592 of_get_address -EXPORT_SYMBOL vmlinux 0x39653e79 phy_attach -EXPORT_SYMBOL vmlinux 0x3967ed62 d_prune_aliases -EXPORT_SYMBOL vmlinux 0x39907a7f jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x3993a1c0 blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x3999fbbe __blk_end_request_cur -EXPORT_SYMBOL vmlinux 0x39a3dc8d inet_sendpage -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39c08721 kobject_set_name -EXPORT_SYMBOL vmlinux 0x39c81857 __ip_select_ident -EXPORT_SYMBOL vmlinux 0x39cdf63c wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0x39f6a5c9 udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0x3a1479dc of_graph_get_port_by_id -EXPORT_SYMBOL vmlinux 0x3a1ac054 set_normalized_timespec64 -EXPORT_SYMBOL vmlinux 0x3a242597 register_framebuffer -EXPORT_SYMBOL vmlinux 0x3a2b0dcd udp_add_offload -EXPORT_SYMBOL vmlinux 0x3a30c472 xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x3a4a5823 netdev_state_change -EXPORT_SYMBOL vmlinux 0x3a64345b pci_request_region -EXPORT_SYMBOL vmlinux 0x3a6b3651 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0x3a7b67c2 blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0x3a8ca5bc swiotlb_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region -EXPORT_SYMBOL vmlinux 0x3aa9ab32 xfrm_unregister_mode -EXPORT_SYMBOL vmlinux 0x3aaac311 agp_generic_destroy_page -EXPORT_SYMBOL vmlinux 0x3b15df4f __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0x3b486f28 find_vma -EXPORT_SYMBOL vmlinux 0x3b615a21 wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b7d7b63 tty_port_tty_get -EXPORT_SYMBOL vmlinux 0x3b8b7621 __nlmsg_put -EXPORT_SYMBOL vmlinux 0x3ba8445c inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x3bab109b xfrm_lookup -EXPORT_SYMBOL vmlinux 0x3bb1d13b dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0x3c05f938 blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0x3c2af76c __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0x3c356340 km_state_expired -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c42056e request_key_async -EXPORT_SYMBOL vmlinux 0x3c4de405 dev_get_iflink -EXPORT_SYMBOL vmlinux 0x3c524ffd blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0x3c567f88 input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x3c652b24 proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0x3c6f4dd7 xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0x3c72f1ed rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0x3c733495 key_validate -EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull -EXPORT_SYMBOL vmlinux 0x3c8f56ae jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x3cacd361 of_get_named_gpio_flags -EXPORT_SYMBOL vmlinux 0x3cc4b0dc lg_lock_init -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3ceab76c blk_end_request_cur -EXPORT_SYMBOL vmlinux 0x3cec948d iommu_tbl_range_alloc -EXPORT_SYMBOL vmlinux 0x3d0eca31 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x3d14c592 unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x3d36e96d eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x3d549e86 kernel_read -EXPORT_SYMBOL vmlinux 0x3d5c4308 unlock_page -EXPORT_SYMBOL vmlinux 0x3d6be70d simple_transaction_read -EXPORT_SYMBOL vmlinux 0x3d9da257 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x3dc02a4e flex_array_free_parts -EXPORT_SYMBOL vmlinux 0x3dc2598f dev_add_offload -EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3dd07317 add_disk -EXPORT_SYMBOL vmlinux 0x3de380ca find_get_pages_tag -EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e1023e9 empty_aops -EXPORT_SYMBOL vmlinux 0x3e11a2e6 __destroy_inode -EXPORT_SYMBOL vmlinux 0x3e1c39c5 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x3e3576f6 __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x3e7058a8 mem_cgroup_begin_page_stat -EXPORT_SYMBOL vmlinux 0x3e8f5d60 mmc_can_discard -EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0x3e9e25bb skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0x3ead1d17 __devm_release_region -EXPORT_SYMBOL vmlinux 0x3eb502fe dev_change_proto_down -EXPORT_SYMBOL vmlinux 0x3ebfa3bb xfrm_register_mode -EXPORT_SYMBOL vmlinux 0x3ee93306 thermal_cdev_update -EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep -EXPORT_SYMBOL vmlinux 0x3f17a817 inet_sendmsg -EXPORT_SYMBOL vmlinux 0x3f215b5c unmap_underlying_metadata -EXPORT_SYMBOL vmlinux 0x3f220d88 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x3f24d195 simple_write_end -EXPORT_SYMBOL vmlinux 0x3f31ab6e seq_puts -EXPORT_SYMBOL vmlinux 0x3f406a3b enable_kernel_altivec -EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f47854e pm860x_set_bits -EXPORT_SYMBOL vmlinux 0x3f52b465 blk_mq_map_queue -EXPORT_SYMBOL vmlinux 0x3f56e7ba copy_to_iter -EXPORT_SYMBOL vmlinux 0x3f616ce2 queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0x3f64255a km_policy_notify -EXPORT_SYMBOL vmlinux 0x3f766093 vme_master_request -EXPORT_SYMBOL vmlinux 0x3fa336a3 param_get_int -EXPORT_SYMBOL vmlinux 0x3fb0df52 netlink_set_err -EXPORT_SYMBOL vmlinux 0x3fb1cf71 proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x3fb265c6 pci_set_master -EXPORT_SYMBOL vmlinux 0x3fd79d0c xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x3fdfd303 vlan_uses_dev -EXPORT_SYMBOL vmlinux 0x3fe0d1c0 slhc_free -EXPORT_SYMBOL vmlinux 0x3ff12599 swiotlb_sync_single_for_device -EXPORT_SYMBOL vmlinux 0x3ff8e495 lg_local_unlock_cpu -EXPORT_SYMBOL vmlinux 0x40143fd6 phy_driver_unregister -EXPORT_SYMBOL vmlinux 0x401a8652 scsi_register_driver -EXPORT_SYMBOL vmlinux 0x402b8281 __request_module -EXPORT_SYMBOL vmlinux 0x4048b474 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x404e4203 xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump -EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds -EXPORT_SYMBOL vmlinux 0x4064eb4b __put_cred -EXPORT_SYMBOL vmlinux 0x406891a4 mmc_add_host -EXPORT_SYMBOL vmlinux 0x4075d3fa __netif_schedule -EXPORT_SYMBOL vmlinux 0x408804cd mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0x408bc7f6 security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0x408c0a0c account_page_redirty -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x40a2d1dd dm_table_get_size -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40bfe137 kernel_sendpage -EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0x40c3f909 __nla_put -EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d1d073 devm_gpiod_get_array -EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40df67b7 powerpc_debugfs_root -EXPORT_SYMBOL vmlinux 0x40e3f096 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0x40f1ad10 tb_ticks_per_jiffy -EXPORT_SYMBOL vmlinux 0x40ffd803 padata_add_cpu -EXPORT_SYMBOL vmlinux 0x41100e64 neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0x4136742a param_get_charp -EXPORT_SYMBOL vmlinux 0x413d54dd tty_port_init -EXPORT_SYMBOL vmlinux 0x41458ee2 sb_set_blocksize -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x41562049 free_buffer_head -EXPORT_SYMBOL vmlinux 0x415d27cf __skb_tx_hash -EXPORT_SYMBOL vmlinux 0x416416b1 of_create_pci_dev -EXPORT_SYMBOL vmlinux 0x416d507c pci_scan_bus -EXPORT_SYMBOL vmlinux 0x4170e0be skb_find_text -EXPORT_SYMBOL vmlinux 0x4182a92b pm860x_reg_write -EXPORT_SYMBOL vmlinux 0x418677ab genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x418cad19 skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0x419503fe xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x41afac93 simple_pin_fs -EXPORT_SYMBOL vmlinux 0x41b9c88f i2c_verify_client -EXPORT_SYMBOL vmlinux 0x41d56419 xfrm_state_add -EXPORT_SYMBOL vmlinux 0x41f3eca8 devm_gpio_request_one -EXPORT_SYMBOL vmlinux 0x420f5b0a tcp_gro_complete -EXPORT_SYMBOL vmlinux 0x4210b557 sk_receive_skb -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x421d966f dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0x423f6a47 default_file_splice_read -EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x42574a3f tcf_register_action -EXPORT_SYMBOL vmlinux 0x42585e32 of_get_pci_address -EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force -EXPORT_SYMBOL vmlinux 0x425c1fca security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0x426536d7 dquot_operations -EXPORT_SYMBOL vmlinux 0x42727de3 dev_mc_unsync -EXPORT_SYMBOL vmlinux 0x4280037c find_lock_entry -EXPORT_SYMBOL vmlinux 0x42800d43 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0x428372c6 i2c_transfer -EXPORT_SYMBOL vmlinux 0x429be6d3 remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x42a5af22 mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0x42aff851 console_stop -EXPORT_SYMBOL vmlinux 0x42bc1021 phy_start -EXPORT_SYMBOL vmlinux 0x42ee7929 param_set_int -EXPORT_SYMBOL vmlinux 0x42fb4141 inet6_ioctl -EXPORT_SYMBOL vmlinux 0x42fce228 kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x4304820d i2c_use_client -EXPORT_SYMBOL vmlinux 0x430caacd md_flush_request -EXPORT_SYMBOL vmlinux 0x4325eb4a phy_ethtool_gset -EXPORT_SYMBOL vmlinux 0x434372ca inet_add_protocol -EXPORT_SYMBOL vmlinux 0x4350179a ppp_register_compressor -EXPORT_SYMBOL vmlinux 0x43502255 d_make_root -EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x43580511 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0x43623d2c macio_dev_get -EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 -EXPORT_SYMBOL vmlinux 0x4374cf2a mntput -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x43a01f90 complete_all -EXPORT_SYMBOL vmlinux 0x43b1139f mmc_remove_host -EXPORT_SYMBOL vmlinux 0x43b7323c nvm_dev_factory -EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x4407fcd2 clear_inode -EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed -EXPORT_SYMBOL vmlinux 0x441acfca gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x4434771c __register_chrdev -EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0x443a85a3 find_inode_nowait -EXPORT_SYMBOL vmlinux 0x44438b96 hex2bin -EXPORT_SYMBOL vmlinux 0x4462fd7a __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x446fcf99 __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x44729d47 phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0x44928349 netdev_err -EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x44b9799e sock_from_file -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44eb192e wait_for_completion -EXPORT_SYMBOL vmlinux 0x450329f6 fddi_type_trans -EXPORT_SYMBOL vmlinux 0x450a55cc trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x452f429b __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x458d98f7 ps2_handle_ack -EXPORT_SYMBOL vmlinux 0x458fbe96 blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0x45a84a8f eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x45b96e7e posix_acl_fix_xattr_userns -EXPORT_SYMBOL vmlinux 0x45eab777 tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0x4608ed46 bio_flush_dcache_pages -EXPORT_SYMBOL vmlinux 0x460bf652 generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x4612c59d down_trylock -EXPORT_SYMBOL vmlinux 0x461ebfa0 __copy_tofrom_user -EXPORT_SYMBOL vmlinux 0x462345e1 xmon -EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy -EXPORT_SYMBOL vmlinux 0x462ba569 skb_clone -EXPORT_SYMBOL vmlinux 0x462dbe8d of_find_matching_node_and_match -EXPORT_SYMBOL vmlinux 0x463f6aca bmap -EXPORT_SYMBOL vmlinux 0x46422cd4 neigh_resolve_output -EXPORT_SYMBOL vmlinux 0x465757c3 cpu_present_mask -EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set -EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x466dfeb8 skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0x46937996 ppp_dev_name -EXPORT_SYMBOL vmlinux 0x4698666d mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0x46a309e0 bio_integrity_enabled -EXPORT_SYMBOL vmlinux 0x46a66a50 blk_queue_find_tag -EXPORT_SYMBOL vmlinux 0x46d12956 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0x46d89940 __skb_get_hash_flowi4 -EXPORT_SYMBOL vmlinux 0x46f9461b cad_pid -EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg -EXPORT_SYMBOL vmlinux 0x47142871 param_get_invbool -EXPORT_SYMBOL vmlinux 0x4717babb phy_ethtool_sset -EXPORT_SYMBOL vmlinux 0x472db335 mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0x473f8b61 ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x475cd3b3 locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0x47608718 fence_init -EXPORT_SYMBOL vmlinux 0x4782c950 bio_clone_bioset -EXPORT_SYMBOL vmlinux 0x47867e69 scsi_unregister -EXPORT_SYMBOL vmlinux 0x47923be3 fsync_bdev -EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x4798b317 bio_integrity_advance -EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit -EXPORT_SYMBOL vmlinux 0x47b6857c blk_run_queue -EXPORT_SYMBOL vmlinux 0x47d89dbd of_get_property -EXPORT_SYMBOL vmlinux 0x47f3d4e8 kernel_getpeername -EXPORT_SYMBOL vmlinux 0x47f8c416 pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0x4815f5d5 tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0x481ce6ce cpu_active_mask -EXPORT_SYMBOL vmlinux 0x48312389 pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0x483ac45d flush_signals -EXPORT_SYMBOL vmlinux 0x48404b9a remove_wait_queue -EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days -EXPORT_SYMBOL vmlinux 0x4881efab pmac_get_partition -EXPORT_SYMBOL vmlinux 0x488de002 padata_alloc_possible -EXPORT_SYMBOL vmlinux 0x489efad0 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48d98619 ppp_input_error -EXPORT_SYMBOL vmlinux 0x48e138e8 page_readlink -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x4909b841 padata_free -EXPORT_SYMBOL vmlinux 0x490db032 skb_store_bits -EXPORT_SYMBOL vmlinux 0x49219563 __vfs_write -EXPORT_SYMBOL vmlinux 0x49309e57 ip_getsockopt -EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init -EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data -EXPORT_SYMBOL vmlinux 0x49805316 set_disk_ro -EXPORT_SYMBOL vmlinux 0x498cfcd7 netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x49a59e7f new_inode -EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x49bb20d3 filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0x49c1ed67 read_cache_pages -EXPORT_SYMBOL vmlinux 0x49c775b9 d_drop -EXPORT_SYMBOL vmlinux 0x49c8d1d2 vfs_readf -EXPORT_SYMBOL vmlinux 0x49d1f420 mmc_register_driver -EXPORT_SYMBOL vmlinux 0x49dd1611 __bio_clone_fast -EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many -EXPORT_SYMBOL vmlinux 0x4a315c38 bdi_destroy -EXPORT_SYMBOL vmlinux 0x4a381a8a phy_attach_direct -EXPORT_SYMBOL vmlinux 0x4a61e669 tty_port_put -EXPORT_SYMBOL vmlinux 0x4a6afd80 param_ops_charp -EXPORT_SYMBOL vmlinux 0x4aa22c72 tcp_hashinfo -EXPORT_SYMBOL vmlinux 0x4aaf27fa iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk -EXPORT_SYMBOL vmlinux 0x4ac898a1 phy_connect -EXPORT_SYMBOL vmlinux 0x4af82673 i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize -EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure -EXPORT_SYMBOL vmlinux 0x4b14bac8 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0x4b471669 rtnl_create_link -EXPORT_SYMBOL vmlinux 0x4b5020da sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b8326ff ida_remove -EXPORT_SYMBOL vmlinux 0x4b83b717 pci_get_slot -EXPORT_SYMBOL vmlinux 0x4b8ee8fb uart_get_divisor -EXPORT_SYMBOL vmlinux 0x4b91189d end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0x4b98d83b block_read_full_page -EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get -EXPORT_SYMBOL vmlinux 0x4bb0778e vm_stat -EXPORT_SYMBOL vmlinux 0x4bbbe7df sock_no_ioctl -EXPORT_SYMBOL vmlinux 0x4bbf51a9 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0x4bcf03a4 radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x4bd3e78f pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x4be85a03 memweight -EXPORT_SYMBOL vmlinux 0x4bed99b3 __percpu_counter_add -EXPORT_SYMBOL vmlinux 0x4c03cf06 send_sig -EXPORT_SYMBOL vmlinux 0x4c11435a _raw_read_lock_bh -EXPORT_SYMBOL vmlinux 0x4c29dcbf cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr -EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf -EXPORT_SYMBOL vmlinux 0x4c3e5452 flush_old_exec -EXPORT_SYMBOL vmlinux 0x4c565aa8 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x4c77ecfb giveup_altivec -EXPORT_SYMBOL vmlinux 0x4c7f23fa devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x4ca1749e phy_stop -EXPORT_SYMBOL vmlinux 0x4caac915 bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x4cbdd4fc inet_frags_exit_net -EXPORT_SYMBOL vmlinux 0x4cc123dd pci_claim_resource -EXPORT_SYMBOL vmlinux 0x4cc2b813 from_kgid_munged -EXPORT_SYMBOL vmlinux 0x4cd7605a pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval -EXPORT_SYMBOL vmlinux 0x4cea2b52 ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0x4cfda89d km_state_notify -EXPORT_SYMBOL vmlinux 0x4d0bd9ac vm_map_ram -EXPORT_SYMBOL vmlinux 0x4d0c816f tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0x4d1701a5 mmc_can_reset -EXPORT_SYMBOL vmlinux 0x4d1a7437 udp_lib_get_port -EXPORT_SYMBOL vmlinux 0x4d291b13 skb_put -EXPORT_SYMBOL vmlinux 0x4d39c2fb i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask -EXPORT_SYMBOL vmlinux 0x4d45a284 mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated -EXPORT_SYMBOL vmlinux 0x4d5d1f2c touch_buffer -EXPORT_SYMBOL vmlinux 0x4d641927 input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x4d788f2a bdi_init -EXPORT_SYMBOL vmlinux 0x4d791953 mempool_resize -EXPORT_SYMBOL vmlinux 0x4d83b295 sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4db31b8c dmam_pool_create -EXPORT_SYMBOL vmlinux 0x4db48a23 generic_file_open -EXPORT_SYMBOL vmlinux 0x4db7bfdb neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x4dec6038 memscan -EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse -EXPORT_SYMBOL vmlinux 0x4e002a30 mmc_flush_cache -EXPORT_SYMBOL vmlinux 0x4e172763 alloc_disk_node -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e395e46 vfs_create -EXPORT_SYMBOL vmlinux 0x4e3aaa3b iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0x4e493bed tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e76e7f4 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0x4e90d126 sock_no_mmap -EXPORT_SYMBOL vmlinux 0x4e9dffb5 ip_fast_csum -EXPORT_SYMBOL vmlinux 0x4ec54937 kfree_put_link -EXPORT_SYMBOL vmlinux 0x4f1ccafe pci_choose_state -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f33f299 scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse -EXPORT_SYMBOL vmlinux 0x4f565327 agp_enable -EXPORT_SYMBOL vmlinux 0x4f5a9f40 debugfs_create_automount -EXPORT_SYMBOL vmlinux 0x4f5e1457 mem_cgroup_end_page_stat -EXPORT_SYMBOL vmlinux 0x4f6041ef dns_query -EXPORT_SYMBOL vmlinux 0x4f68b73d __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday -EXPORT_SYMBOL vmlinux 0x4f7f389f dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0x4fb4d47a sk_stream_error -EXPORT_SYMBOL vmlinux 0x4fbec49a vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0x4fdd9138 get_super_thawed -EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command -EXPORT_SYMBOL vmlinux 0x4fe99583 atomic64_dec_if_positive -EXPORT_SYMBOL vmlinux 0x4fec25ea __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security -EXPORT_SYMBOL vmlinux 0x5011add2 tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x50178e33 scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0x5028f832 sget -EXPORT_SYMBOL vmlinux 0x5057f54e mb_cache_shrink -EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x507f24eb xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x508058a3 inode_get_bytes -EXPORT_SYMBOL vmlinux 0x508167c3 blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0x50920bde sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0x509817cf vprintk_emit -EXPORT_SYMBOL vmlinux 0x50ad4382 bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x50b3359a nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x50b66bcb radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x50ba52b6 pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0x50ca8819 simple_transaction_release -EXPORT_SYMBOL vmlinux 0x50d30f47 bio_advance -EXPORT_SYMBOL vmlinux 0x50d52dfa generic_block_bmap -EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x51172617 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0x515a9d65 skb_queue_head -EXPORT_SYMBOL vmlinux 0x515e24a7 flush_instruction_cache -EXPORT_SYMBOL vmlinux 0x519b0da3 finish_wait -EXPORT_SYMBOL vmlinux 0x51a8a5d6 call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0x51df4133 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0x51e936bc __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup -EXPORT_SYMBOL vmlinux 0x51f8f943 devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x51fe397e napi_gro_frags -EXPORT_SYMBOL vmlinux 0x5201d9ed dev_disable_lro -EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str -EXPORT_SYMBOL vmlinux 0x5203d418 dput -EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0x522c019e flush_dcache_icache_page -EXPORT_SYMBOL vmlinux 0x524f28d3 mfd_cell_enable -EXPORT_SYMBOL vmlinux 0x526e49b7 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0x527830ff pmac_xpram_read -EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x5292963e mmc_interrupt_hpi -EXPORT_SYMBOL vmlinux 0x52af562a __crc32c_le -EXPORT_SYMBOL vmlinux 0x52d204b0 max8925_bulk_read -EXPORT_SYMBOL vmlinux 0x52dc510d of_get_next_available_child -EXPORT_SYMBOL vmlinux 0x52dcec3e devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x52eaaf06 pci_platform_rom -EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x531440d5 PDE_DATA -EXPORT_SYMBOL vmlinux 0x532c3243 scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x534ab02e rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0x534e3131 phy_register_fixup -EXPORT_SYMBOL vmlinux 0x5354ea29 scsi_print_result -EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0x537fca6e dev_crit -EXPORT_SYMBOL vmlinux 0x53818ce7 nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x5397a444 framebuffer_release -EXPORT_SYMBOL vmlinux 0x53afb9d9 register_netdev -EXPORT_SYMBOL vmlinux 0x53beed52 up_write -EXPORT_SYMBOL vmlinux 0x53c0a767 end_buffer_async_write -EXPORT_SYMBOL vmlinux 0x53ebab1b _outsl_ns -EXPORT_SYMBOL vmlinux 0x53f19527 dentry_path_raw -EXPORT_SYMBOL vmlinux 0x53f600fd xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x5412c7c7 up -EXPORT_SYMBOL vmlinux 0x54354462 input_register_handler -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x54408d60 __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x5441b77e sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x545cbcde dev_get_stats -EXPORT_SYMBOL vmlinux 0x54977ebe ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul -EXPORT_SYMBOL vmlinux 0x54b13b8b blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0x54b331e8 mpage_writepages -EXPORT_SYMBOL vmlinux 0x54bb24a4 abx500_get_register_interruptible -EXPORT_SYMBOL vmlinux 0x54be691e iov_iter_fault_in_readable -EXPORT_SYMBOL vmlinux 0x54c1ef74 redraw_screen -EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window -EXPORT_SYMBOL vmlinux 0x54d5fe13 mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54ee36a8 search_binary_handler -EXPORT_SYMBOL vmlinux 0x54f763bb uart_add_one_port -EXPORT_SYMBOL vmlinux 0x55061b5a __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x552d148e mmc_detect_change -EXPORT_SYMBOL vmlinux 0x55340727 of_find_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu -EXPORT_SYMBOL vmlinux 0x55431125 phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0x55467ede fsl_upm_find -EXPORT_SYMBOL vmlinux 0x5553b3a2 page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat -EXPORT_SYMBOL vmlinux 0x5568c553 complete -EXPORT_SYMBOL vmlinux 0x5570a7ec __inet_stream_connect -EXPORT_SYMBOL vmlinux 0x5570abd9 sock_i_uid -EXPORT_SYMBOL vmlinux 0x5571ee3f __lock_page -EXPORT_SYMBOL vmlinux 0x5577ef9e udp_table -EXPORT_SYMBOL vmlinux 0x5586efd4 param_set_bint -EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x55f31033 netdev_warn -EXPORT_SYMBOL vmlinux 0x55fded72 bio_init -EXPORT_SYMBOL vmlinux 0x5613ffbe __page_symlink -EXPORT_SYMBOL vmlinux 0x561dc89c flush_icache_user_range -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0x566a0e7f kernel_param_lock -EXPORT_SYMBOL vmlinux 0x567a2b32 set_groups -EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames -EXPORT_SYMBOL vmlinux 0x5694c84e mount_pseudo -EXPORT_SYMBOL vmlinux 0x56bb9d30 get_disk -EXPORT_SYMBOL vmlinux 0x56c2b95b rtas_progress -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x57561fbc dqput -EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x577541bb simple_transaction_set -EXPORT_SYMBOL vmlinux 0x5793495f netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0x57947588 pcibios_fixup_bus -EXPORT_SYMBOL vmlinux 0x57a3b5b4 blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0x57b89604 tty_check_change -EXPORT_SYMBOL vmlinux 0x57c51a6b blk_stack_limits -EXPORT_SYMBOL vmlinux 0x57c8703f dev_uc_init -EXPORT_SYMBOL vmlinux 0x57c8da35 pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x57d27ae7 of_node_put -EXPORT_SYMBOL vmlinux 0x57d5553c wireless_send_event -EXPORT_SYMBOL vmlinux 0x57def19f blk_peek_request -EXPORT_SYMBOL vmlinux 0x57ed595b netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x57f5ca5f fb_prepare_logo -EXPORT_SYMBOL vmlinux 0x581163ce security_d_instantiate -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x58262db5 page_symlink -EXPORT_SYMBOL vmlinux 0x58316801 nvm_put_blk_unlocked -EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep -EXPORT_SYMBOL vmlinux 0x585823c1 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0x58623807 proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x58677d8b blk_queue_unprep_rq -EXPORT_SYMBOL vmlinux 0x5867dee7 pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0x5875047b jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat -EXPORT_SYMBOL vmlinux 0x589fb448 make_bad_inode -EXPORT_SYMBOL vmlinux 0x58a24c6f blk_queue_free_tags -EXPORT_SYMBOL vmlinux 0x58a5e4ab qdisc_destroy -EXPORT_SYMBOL vmlinux 0x58af0d66 genphy_config_aneg -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58eab74c scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0x58fa2eaa force_sig -EXPORT_SYMBOL vmlinux 0x58fd6933 mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0x58fd946e tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0x58ffd5c7 ab3100_event_unregister -EXPORT_SYMBOL vmlinux 0x59020098 devm_gpiod_put_array -EXPORT_SYMBOL vmlinux 0x591241d0 register_sysctl_table -EXPORT_SYMBOL vmlinux 0x592487b0 tcf_hash_cleanup -EXPORT_SYMBOL vmlinux 0x5937d898 pid_task -EXPORT_SYMBOL vmlinux 0x59489954 md_write_end -EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map -EXPORT_SYMBOL vmlinux 0x595d0946 empty_zero_page -EXPORT_SYMBOL vmlinux 0x5974b47d kill_bdev -EXPORT_SYMBOL vmlinux 0x597e2519 eth_header_parse -EXPORT_SYMBOL vmlinux 0x5985c9a8 dev_mc_del -EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release -EXPORT_SYMBOL vmlinux 0x59b3378a completion_done -EXPORT_SYMBOL vmlinux 0x59d8223a ioport_resource -EXPORT_SYMBOL vmlinux 0x59e2f645 clear_wb_congested -EXPORT_SYMBOL vmlinux 0x59ff2e70 input_open_device -EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a49bf4c scm_fp_dup -EXPORT_SYMBOL vmlinux 0x5a55ad84 __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x5a7cd984 kthread_create_on_node -EXPORT_SYMBOL vmlinux 0x5a831b20 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x5a951dad ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x5aa4ec4a loop_backing_file -EXPORT_SYMBOL vmlinux 0x5aa75bfe jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0x5aaf1c10 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0x5ac1ef86 generic_listxattr -EXPORT_SYMBOL vmlinux 0x5ace8e33 icmpv6_send -EXPORT_SYMBOL vmlinux 0x5ad65a0a submit_bh -EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get -EXPORT_SYMBOL vmlinux 0x5affb9ae ip_ct_attach -EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem -EXPORT_SYMBOL vmlinux 0x5b2eec49 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0x5b38ca5c inet_getname -EXPORT_SYMBOL vmlinux 0x5b43f1f1 rtas_service_present -EXPORT_SYMBOL vmlinux 0x5b46c839 phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0x5b496a0c d_delete -EXPORT_SYMBOL vmlinux 0x5b6d8079 pci_lost_interrupt -EXPORT_SYMBOL vmlinux 0x5b7ba326 pci_set_mwi -EXPORT_SYMBOL vmlinux 0x5b9828c5 dma_spin_lock -EXPORT_SYMBOL vmlinux 0x5b9de2f7 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0x5ba58434 fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x5bb9daec __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0x5bbb42f1 pipe_unlock -EXPORT_SYMBOL vmlinux 0x5bed12b2 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0x5bf093d8 abx500_get_register_page_interruptible -EXPORT_SYMBOL vmlinux 0x5bf7a30d sock_no_socketpair -EXPORT_SYMBOL vmlinux 0x5c265cba sg_init_one -EXPORT_SYMBOL vmlinux 0x5c37f319 _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x5c39c86f bitmap_endwrite -EXPORT_SYMBOL vmlinux 0x5c3c7962 xfrm4_prepare_output -EXPORT_SYMBOL vmlinux 0x5c3ee3a1 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0x5c6fe2fd ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0x5c9b126b skb_copy_bits -EXPORT_SYMBOL vmlinux 0x5c9e103a of_count_phandle_with_args -EXPORT_SYMBOL vmlinux 0x5cb94618 inet_ioctl -EXPORT_SYMBOL vmlinux 0x5cc32bdc bitmap_copy_le -EXPORT_SYMBOL vmlinux 0x5ccb9746 __get_page_tail -EXPORT_SYMBOL vmlinux 0x5cd6799f serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x5cdcf53a t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0x5ce349b3 nvm_end_io -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5d0338be skb_checksum_setup -EXPORT_SYMBOL vmlinux 0x5d225fd6 neigh_xmit -EXPORT_SYMBOL vmlinux 0x5d4f0c8b blk_queue_bounce -EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain -EXPORT_SYMBOL vmlinux 0x5d594e8a device_get_mac_address -EXPORT_SYMBOL vmlinux 0x5d6e30da netif_wake_subqueue -EXPORT_SYMBOL vmlinux 0x5d722046 bio_unmap_user -EXPORT_SYMBOL vmlinux 0x5d76b88b dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0x5d7bf66c ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x5d7c5d29 devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0x5dca6d25 remove_arg_zero -EXPORT_SYMBOL vmlinux 0x5e05e825 i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0x5e15c00c inode_init_once -EXPORT_SYMBOL vmlinux 0x5e17b31e do_SAK -EXPORT_SYMBOL vmlinux 0x5e27321b register_sysctl_paths -EXPORT_SYMBOL vmlinux 0x5e2db1ed inet_register_protosw -EXPORT_SYMBOL vmlinux 0x5e3a8a9c __wake_up -EXPORT_SYMBOL vmlinux 0x5e3cdffc bio_integrity_prep -EXPORT_SYMBOL vmlinux 0x5e4c6759 __module_put_and_exit -EXPORT_SYMBOL vmlinux 0x5e696e7f dev_set_mac_address -EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5eb0401e proc_dostring -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ec50fb1 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x5ec71e01 __blk_end_request -EXPORT_SYMBOL vmlinux 0x5ecee1c6 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5ed30a47 scsi_host_set_state -EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 -EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f1bec1e blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x5f4cf761 netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x5f5ec071 netif_device_detach -EXPORT_SYMBOL vmlinux 0x5f5f292e pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0x5f754e5a memset -EXPORT_SYMBOL vmlinux 0x5f807a84 d_add_ci -EXPORT_SYMBOL vmlinux 0x5f8a2728 isa_io_base -EXPORT_SYMBOL vmlinux 0x5fc256fd blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x5fc4c3e4 bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0x5fd268cb radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat -EXPORT_SYMBOL vmlinux 0x5fe26280 tcp_ioctl -EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool -EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x600c585c qdisc_list_add -EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x602b424e devm_ioremap_nocache -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x6037d77a up_read -EXPORT_SYMBOL vmlinux 0x603b263c tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x603c6fd7 mfd_remove_devices -EXPORT_SYMBOL vmlinux 0x6052b149 sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0x605e06e3 dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0x606234b1 fbcon_rotate_cw -EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number -EXPORT_SYMBOL vmlinux 0x6073732c cur_cpu_spec -EXPORT_SYMBOL vmlinux 0x607e08fa d_instantiate -EXPORT_SYMBOL vmlinux 0x608f2bee generic_getxattr -EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector -EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60d51c56 ab3100_event_register -EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x61001364 seq_dentry -EXPORT_SYMBOL vmlinux 0x6105a9b8 finish_no_open -EXPORT_SYMBOL vmlinux 0x61163247 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x6145d1d5 write_cache_pages -EXPORT_SYMBOL vmlinux 0x614faf41 tty_port_hangup -EXPORT_SYMBOL vmlinux 0x6164ab33 ether_setup -EXPORT_SYMBOL vmlinux 0x616b825d dql_init -EXPORT_SYMBOL vmlinux 0x616d04d1 uart_write_wakeup -EXPORT_SYMBOL vmlinux 0x616ddeaa uart_match_port -EXPORT_SYMBOL vmlinux 0x617ba9b0 proc_create_data -EXPORT_SYMBOL vmlinux 0x6192d03c register_gifconf -EXPORT_SYMBOL vmlinux 0x61b3560c cmdline_parts_set -EXPORT_SYMBOL vmlinux 0x61b35f32 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61c03eaa eth_header_cache -EXPORT_SYMBOL vmlinux 0x61ee75a4 path_noexec -EXPORT_SYMBOL vmlinux 0x61eef2c9 _insb -EXPORT_SYMBOL vmlinux 0x61f1af3a bh_submit_read -EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x6220b4a2 crc32_le -EXPORT_SYMBOL vmlinux 0x62230028 kern_unmount -EXPORT_SYMBOL vmlinux 0x6225637e md5_transform -EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x622d421b ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0x623a73bc thaw_super -EXPORT_SYMBOL vmlinux 0x623d7182 _chrp_type -EXPORT_SYMBOL vmlinux 0x62538167 slhc_toss -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x628332e8 pmu_power_flags -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x629ac36a __pci_register_driver -EXPORT_SYMBOL vmlinux 0x62a6fc96 pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0x62b519e4 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0x62c2650b devm_gpiod_get_index -EXPORT_SYMBOL vmlinux 0x62c423d8 devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0x62e5e9e8 set_user_nice -EXPORT_SYMBOL vmlinux 0x630eb1b0 iterate_supers_type -EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled -EXPORT_SYMBOL vmlinux 0x632a4497 inet_csk_accept -EXPORT_SYMBOL vmlinux 0x6333360b __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0x634ff9e9 inode_add_rsv_space -EXPORT_SYMBOL vmlinux 0x63669b53 dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x6381c383 lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x63a5e1ac genphy_resume -EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63dff56d register_md_personality -EXPORT_SYMBOL vmlinux 0x63e22e4c pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63f81afd input_free_device -EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user -EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure -EXPORT_SYMBOL vmlinux 0x64126e98 vfs_mkdir -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x64245c6a d_splice_alias -EXPORT_SYMBOL vmlinux 0x6438a70d skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x643d1a33 input_unregister_device -EXPORT_SYMBOL vmlinux 0x644d9479 nf_log_trace -EXPORT_SYMBOL vmlinux 0x64508047 sk_common_release -EXPORT_SYMBOL vmlinux 0x64565307 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0x645dc03f tcf_exts_change -EXPORT_SYMBOL vmlinux 0x645fa519 param_get_string -EXPORT_SYMBOL vmlinux 0x646cc6ab pmu_poll -EXPORT_SYMBOL vmlinux 0x647a0b8e inet_recvmsg -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x64b379ac inet_frag_destroy -EXPORT_SYMBOL vmlinux 0x64b82edb dev_set_group -EXPORT_SYMBOL vmlinux 0x64be8782 devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x64cf1afa cleancache_register_ops -EXPORT_SYMBOL vmlinux 0x650696fb done_path_create -EXPORT_SYMBOL vmlinux 0x650ec6a7 macio_request_resources -EXPORT_SYMBOL vmlinux 0x65105f81 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth -EXPORT_SYMBOL vmlinux 0x6517ada4 vme_dma_request -EXPORT_SYMBOL vmlinux 0x651a4139 test_taint -EXPORT_SYMBOL vmlinux 0x651e167e vfs_symlink -EXPORT_SYMBOL vmlinux 0x651f455c tty_kref_put -EXPORT_SYMBOL vmlinux 0x6524dbbe eth_header -EXPORT_SYMBOL vmlinux 0x6526c1d1 generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x65400222 __irq_offset_value -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x6540ac76 mmc_can_erase -EXPORT_SYMBOL vmlinux 0x65568ccb tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0x656c6d4a vfs_rmdir -EXPORT_SYMBOL vmlinux 0x656ccddf inet_frags_fini -EXPORT_SYMBOL vmlinux 0x656dde79 inet6_getname -EXPORT_SYMBOL vmlinux 0x65721a29 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0x659e9bd1 nvm_free_rqd_ppalist -EXPORT_SYMBOL vmlinux 0x65a3f59b bio_add_pc_page -EXPORT_SYMBOL vmlinux 0x65b6e9f6 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x65bb58a2 _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x65d474a1 iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x65d9641a mpage_readpage -EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier -EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65deeae3 skb_pad -EXPORT_SYMBOL vmlinux 0x65e128ac cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x66140827 napi_get_frags -EXPORT_SYMBOL vmlinux 0x66227eae vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0x663c065a iov_iter_alignment -EXPORT_SYMBOL vmlinux 0x6642a92f stop_tty -EXPORT_SYMBOL vmlinux 0x6649d6e8 netpoll_cleanup -EXPORT_SYMBOL vmlinux 0x666de973 sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0x6673d048 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x668a8b4d kmap_to_page -EXPORT_SYMBOL vmlinux 0x669b1f77 xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0x66b11e35 md_check_recovery -EXPORT_SYMBOL vmlinux 0x66cbf14b pmac_xpram_write -EXPORT_SYMBOL vmlinux 0x66f33bd7 input_event -EXPORT_SYMBOL vmlinux 0x66fc0259 seq_lseek -EXPORT_SYMBOL vmlinux 0x67016c1d md_register_thread -EXPORT_SYMBOL vmlinux 0x672882b2 gen_pool_add_virt -EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges -EXPORT_SYMBOL vmlinux 0x6752f5f5 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x6768805a skb_orphan_partial -EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create -EXPORT_SYMBOL vmlinux 0x677f0270 param_get_ushort -EXPORT_SYMBOL vmlinux 0x679a4771 netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x679cd8cb netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67c568ea read_dev_sector -EXPORT_SYMBOL vmlinux 0x67d57cc4 netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0x67df3f66 devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0x67f30e86 init_task -EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x6817c6e8 inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0x68328de6 jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0x6855c7b8 swiotlb_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x68609857 complete_and_exit -EXPORT_SYMBOL vmlinux 0x6862d131 param_ops_ullong -EXPORT_SYMBOL vmlinux 0x687360f3 mount_subtree -EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x688db64c tty_unregister_driver -EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages -EXPORT_SYMBOL vmlinux 0x68ae8d22 inode_init_always -EXPORT_SYMBOL vmlinux 0x68b792f5 drop_super -EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x68cc0a80 soft_cursor -EXPORT_SYMBOL vmlinux 0x68e3ea73 sock_sendmsg -EXPORT_SYMBOL vmlinux 0x691b8227 rtnl_notify -EXPORT_SYMBOL vmlinux 0x691ef2ec gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x692f524b get_pci_dma_ops -EXPORT_SYMBOL vmlinux 0x6941efd8 set_anon_super -EXPORT_SYMBOL vmlinux 0x6953a247 skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x698d19d3 dquot_quota_sync -EXPORT_SYMBOL vmlinux 0x699f4cbc fbcon_set_tileops -EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be -EXPORT_SYMBOL vmlinux 0x69a3517a dma_common_mmap -EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint -EXPORT_SYMBOL vmlinux 0x69b5c341 __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0x69b90533 dev_queue_xmit -EXPORT_SYMBOL vmlinux 0x69bb7b89 sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0x69c3671e ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0x69d7e5b8 __debugger_ipi -EXPORT_SYMBOL vmlinux 0x69d8ad0a filp_open -EXPORT_SYMBOL vmlinux 0x69dd8904 dget_parent -EXPORT_SYMBOL vmlinux 0x69ecfdc8 bdget -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a079f35 pci_domain_nr -EXPORT_SYMBOL vmlinux 0x6a0dcf04 pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x6a3e34de mutex_unlock -EXPORT_SYMBOL vmlinux 0x6a436caa zero_fill_bio -EXPORT_SYMBOL vmlinux 0x6a447323 rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x6a49f523 netif_device_attach -EXPORT_SYMBOL vmlinux 0x6a521f04 kern_path_create -EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a637b9e scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable -EXPORT_SYMBOL vmlinux 0x6a9069fd vfs_llseek -EXPORT_SYMBOL vmlinux 0x6ac131de nobh_truncate_page -EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be -EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x6b096f97 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0x6b1b08ad skb_checksum_help -EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname -EXPORT_SYMBOL vmlinux 0x6b1e1f03 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x6b1f7590 jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b4f43fb bioset_integrity_create -EXPORT_SYMBOL vmlinux 0x6b538c24 pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0x6b5bfefa swiotlb_dma_mapping_error -EXPORT_SYMBOL vmlinux 0x6b66c889 fence_free -EXPORT_SYMBOL vmlinux 0x6b692e5d xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0x6b870a71 jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0x6b8b0451 dev_remove_pack -EXPORT_SYMBOL vmlinux 0x6ba06119 kfree_skb_list -EXPORT_SYMBOL vmlinux 0x6ba6a027 splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0x6baa6dc4 task_tgid_nr_ns -EXPORT_SYMBOL vmlinux 0x6bbb1e7b phy_device_free -EXPORT_SYMBOL vmlinux 0x6bc15957 __frontswap_store -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bda0860 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x6bde3dea skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0x6bff08df datagram_poll -EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer -EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn -EXPORT_SYMBOL vmlinux 0x6c2018f2 inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x6c260d55 sg_miter_start -EXPORT_SYMBOL vmlinux 0x6c26393d backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x6c33d0fd check_disk_size_change -EXPORT_SYMBOL vmlinux 0x6c3da51e keyring_alloc -EXPORT_SYMBOL vmlinux 0x6c4886c0 netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat -EXPORT_SYMBOL vmlinux 0x6c5f55a9 tcp_init_sock -EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min -EXPORT_SYMBOL vmlinux 0x6c73def3 jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x6c7bc1f0 inode_set_bytes -EXPORT_SYMBOL vmlinux 0x6c800d3f devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x6c80f303 path_get -EXPORT_SYMBOL vmlinux 0x6c8d730a zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x6ca1d1a4 atomic64_read -EXPORT_SYMBOL vmlinux 0x6ca1dfd2 kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x6cb15889 __scsi_alloc_queue -EXPORT_SYMBOL vmlinux 0x6cb37127 flex_array_clear -EXPORT_SYMBOL vmlinux 0x6cb9b4bf of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0x6cbaccbc pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0x6cca9f47 nf_log_unset -EXPORT_SYMBOL vmlinux 0x6cd20f1c __napi_complete -EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy -EXPORT_SYMBOL vmlinux 0x6cdef95b led_blink_set -EXPORT_SYMBOL vmlinux 0x6ce9daa5 mem_map -EXPORT_SYMBOL vmlinux 0x6ceb1b74 ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0x6cfaa94b __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0x6d05f38b neigh_lookup -EXPORT_SYMBOL vmlinux 0x6d0ee505 bioset_create -EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x6d1397b0 xfrm_input -EXPORT_SYMBOL vmlinux 0x6d14a65b __dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x6d16f38b blkdev_fsync -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d29e472 skb_append -EXPORT_SYMBOL vmlinux 0x6d2dd4b9 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0x6d65bb5c mmc_of_parse -EXPORT_SYMBOL vmlinux 0x6d6fd222 dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0x6d740223 flex_array_put -EXPORT_SYMBOL vmlinux 0x6d7db613 sock_edemux -EXPORT_SYMBOL vmlinux 0x6d7f39aa locks_init_lock -EXPORT_SYMBOL vmlinux 0x6da928f4 _insw_ns -EXPORT_SYMBOL vmlinux 0x6dc82730 ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6e03126b mmc_start_req -EXPORT_SYMBOL vmlinux 0x6e07d3d3 blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0x6e1a8f64 __quota_error -EXPORT_SYMBOL vmlinux 0x6e2e340c tty_throttle -EXPORT_SYMBOL vmlinux 0x6e35fd2e d_invalidate -EXPORT_SYMBOL vmlinux 0x6e3968a3 passthru_features_check -EXPORT_SYMBOL vmlinux 0x6e3b819f sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x6e3e7297 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x6e45d8a6 user_revoke -EXPORT_SYMBOL vmlinux 0x6e6514ed radix_tree_insert -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e8cc8bc seq_printf -EXPORT_SYMBOL vmlinux 0x6e99df8d xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x6e9c71a4 get_agp_version -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6eb68864 init_buffer -EXPORT_SYMBOL vmlinux 0x6eb74dff proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x6ec327ff simple_fill_super -EXPORT_SYMBOL vmlinux 0x6ec8a823 serio_interrupt -EXPORT_SYMBOL vmlinux 0x6ecd7bb2 dm_register_target -EXPORT_SYMBOL vmlinux 0x6ef10f3d grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0x6f15b23f blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash -EXPORT_SYMBOL vmlinux 0x6f25dd94 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0x6f2ac9f9 __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x6f33a460 vlan_vid_add -EXPORT_SYMBOL vmlinux 0x6f34ab90 sg_miter_next -EXPORT_SYMBOL vmlinux 0x6f381391 blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0x6f425bb3 proto_register -EXPORT_SYMBOL vmlinux 0x6f5d5669 pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x6f5ec540 set_nlink -EXPORT_SYMBOL vmlinux 0x6f6cdf88 cdrom_release -EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x6f914017 skb_vlan_push -EXPORT_SYMBOL vmlinux 0x6f92e2c4 tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag -EXPORT_SYMBOL vmlinux 0x6fc0f690 security_mmap_file -EXPORT_SYMBOL vmlinux 0x6fc8dd55 nf_reinject -EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x700afe75 of_root -EXPORT_SYMBOL vmlinux 0x7015daec padata_do_parallel -EXPORT_SYMBOL vmlinux 0x70248c47 xfrm_state_update -EXPORT_SYMBOL vmlinux 0x702d46a5 vme_slot_num -EXPORT_SYMBOL vmlinux 0x70455804 jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0x704ed4a5 crypto_sha512_update -EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq -EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma -EXPORT_SYMBOL vmlinux 0x7062b4cd cmdline_parts_free -EXPORT_SYMBOL vmlinux 0x706cade4 padata_alloc -EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync -EXPORT_SYMBOL vmlinux 0x706e3af1 vga_client_register -EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x70957abb dev_load -EXPORT_SYMBOL vmlinux 0x70978a20 unregister_key_type -EXPORT_SYMBOL vmlinux 0x70aa3afb pci_iomap_range -EXPORT_SYMBOL vmlinux 0x70aff1f0 kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0x70d888b7 __debugger_fault_handler -EXPORT_SYMBOL vmlinux 0x70d97bf7 import_iovec -EXPORT_SYMBOL vmlinux 0x70e84bd2 read_cache_page -EXPORT_SYMBOL vmlinux 0x70eaa3c5 d_alloc -EXPORT_SYMBOL vmlinux 0x70f86c70 pmu_queue_request -EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match -EXPORT_SYMBOL vmlinux 0x71197ca5 pmac_register_agp_pm -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x712ed37b radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x713240bf peernet2id_alloc -EXPORT_SYMBOL vmlinux 0x714e3f59 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0x716ad4b7 get_tz_trend -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x71a19cc9 phys_mem_access_prot -EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev -EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71adc279 pci_find_bus -EXPORT_SYMBOL vmlinux 0x71b69dfd unregister_md_personality -EXPORT_SYMBOL vmlinux 0x71c90087 memcmp -EXPORT_SYMBOL vmlinux 0x71d93068 udp_sendmsg -EXPORT_SYMBOL vmlinux 0x71f113ff mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0x71f65175 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x71fccf6c tcp_shutdown -EXPORT_SYMBOL vmlinux 0x71fe8d77 sock_no_connect -EXPORT_SYMBOL vmlinux 0x71ffe171 add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0x721cf5bd kmalloc_dma_caches -EXPORT_SYMBOL vmlinux 0x722087ee register_cdrom -EXPORT_SYMBOL vmlinux 0x7236a53f __get_user_pages -EXPORT_SYMBOL vmlinux 0x726f3883 vme_slave_request -EXPORT_SYMBOL vmlinux 0x728807d7 nvm_erase_blk -EXPORT_SYMBOL vmlinux 0x72a0e6f2 __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x72afa016 i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma -EXPORT_SYMBOL vmlinux 0x72b54931 phy_detach -EXPORT_SYMBOL vmlinux 0x72b6fa56 fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x72d58de9 kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0x72e1b907 skb_queue_purge -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x72f2d33b fb_set_var -EXPORT_SYMBOL vmlinux 0x7310784b ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config -EXPORT_SYMBOL vmlinux 0x73224d27 blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf -EXPORT_SYMBOL vmlinux 0x7341253c napi_consume_skb -EXPORT_SYMBOL vmlinux 0x73435327 del_gendisk -EXPORT_SYMBOL vmlinux 0x734994c1 swiotlb_map_sg -EXPORT_SYMBOL vmlinux 0x734da9b2 phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0x735d8503 add_wait_queue -EXPORT_SYMBOL vmlinux 0x736ad3ea netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0x73710a3e dqstats -EXPORT_SYMBOL vmlinux 0x7379570b pci_set_power_state -EXPORT_SYMBOL vmlinux 0x737fcea9 do_splice_direct -EXPORT_SYMBOL vmlinux 0x73979de6 atomic64_or -EXPORT_SYMBOL vmlinux 0x739e40a9 tc_classify -EXPORT_SYMBOL vmlinux 0x73b9ee5a max8998_bulk_write -EXPORT_SYMBOL vmlinux 0x73c89e95 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy -EXPORT_SYMBOL vmlinux 0x7401294c set_create_files_as -EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x741145f1 set_security_override -EXPORT_SYMBOL vmlinux 0x7428c43e dst_destroy -EXPORT_SYMBOL vmlinux 0x74309ed5 mdio_bus_type -EXPORT_SYMBOL vmlinux 0x745dec98 neigh_for_each -EXPORT_SYMBOL vmlinux 0x7463ca22 bitmap_unplug -EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x7485e93b kfree_skb -EXPORT_SYMBOL vmlinux 0x749810fb netdev_info -EXPORT_SYMBOL vmlinux 0x74b1867a twl6040_get_pll -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74d7c708 tcp_conn_request -EXPORT_SYMBOL vmlinux 0x74dbb837 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x74df689f mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74fc82d3 lock_rename -EXPORT_SYMBOL vmlinux 0x74fe8730 sys_ctrler -EXPORT_SYMBOL vmlinux 0x7502c0c0 try_to_writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv -EXPORT_SYMBOL vmlinux 0x7538b132 agp_off -EXPORT_SYMBOL vmlinux 0x75469341 dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0x75506ecc simple_empty -EXPORT_SYMBOL vmlinux 0x755bb473 pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0x756dd160 start_thread -EXPORT_SYMBOL vmlinux 0x75745ea8 netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0x757b9a91 page_address -EXPORT_SYMBOL vmlinux 0x757cdc99 mmc_gpio_request_cd -EXPORT_SYMBOL vmlinux 0x758421af sock_no_accept -EXPORT_SYMBOL vmlinux 0x75936382 adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 -EXPORT_SYMBOL vmlinux 0x75994700 add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0x75a4ea63 blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0x75aba1eb simple_release_fs -EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc -EXPORT_SYMBOL vmlinux 0x75d9764b mntget -EXPORT_SYMBOL vmlinux 0x75e2ec4a iput -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x760f2e0c dma_find_channel -EXPORT_SYMBOL vmlinux 0x762d8eef netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0x7638c3ab sk_dst_check -EXPORT_SYMBOL vmlinux 0x763c930e netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x765314e0 jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0x7655c9b2 __kfree_skb -EXPORT_SYMBOL vmlinux 0x765aaad2 nla_append -EXPORT_SYMBOL vmlinux 0x768857fe dm_io -EXPORT_SYMBOL vmlinux 0x768b1178 scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0x768c68a3 parent_mem_cgroup -EXPORT_SYMBOL vmlinux 0x76b4759b md_unregister_thread -EXPORT_SYMBOL vmlinux 0x76cd31d1 __dst_free -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint -EXPORT_SYMBOL vmlinux 0x76d618cf ip_check_defrag -EXPORT_SYMBOL vmlinux 0x76d9bf11 crc32_be -EXPORT_SYMBOL vmlinux 0x76f6c5ef kmalloc_order -EXPORT_SYMBOL vmlinux 0x76fc58b3 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0x76fda1ea vfs_mknod -EXPORT_SYMBOL vmlinux 0x772dec11 generic_make_request -EXPORT_SYMBOL vmlinux 0x7736e4ff __scm_destroy -EXPORT_SYMBOL vmlinux 0x775a130e __sg_free_table -EXPORT_SYMBOL vmlinux 0x776f1fe7 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x777898f2 register_filesystem -EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll -EXPORT_SYMBOL vmlinux 0x779d2b64 nvm_get_blk -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77d7072e current_fs_time -EXPORT_SYMBOL vmlinux 0x77e166cc ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0x77f633d4 generic_file_fsync -EXPORT_SYMBOL vmlinux 0x77f68c20 gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0x77fcac63 scsi_ioctl -EXPORT_SYMBOL vmlinux 0x7818980e agp_collect_device_status -EXPORT_SYMBOL vmlinux 0x782567ec memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t -EXPORT_SYMBOL vmlinux 0x783b977a kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0x7866e90d dev_change_flags -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x788fe103 iomem_resource -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x78b44457 pci_enable_device -EXPORT_SYMBOL vmlinux 0x78b7c882 scsi_print_command -EXPORT_SYMBOL vmlinux 0x78c3034c __scsi_add_device -EXPORT_SYMBOL vmlinux 0x78c8c139 posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x78cb439e sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0x78cdc7b4 iunique -EXPORT_SYMBOL vmlinux 0x78cff768 sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78e610d6 dquot_drop -EXPORT_SYMBOL vmlinux 0x7909d420 deactivate_super -EXPORT_SYMBOL vmlinux 0x791df421 agp_generic_alloc_user -EXPORT_SYMBOL vmlinux 0x7955e416 pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0x7955f668 devm_ioremap -EXPORT_SYMBOL vmlinux 0x795bb051 simple_nosetlease -EXPORT_SYMBOL vmlinux 0x7964836e param_set_ushort -EXPORT_SYMBOL vmlinux 0x796bf6ca seq_path -EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0x798703de ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0x79a87728 sock_no_shutdown -EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79b2539f vlan_vid_del -EXPORT_SYMBOL vmlinux 0x79bffb27 sync_filesystem -EXPORT_SYMBOL vmlinux 0x79cd7164 fbcon_set_rotate -EXPORT_SYMBOL vmlinux 0x79d7bc8b padata_set_cpumask -EXPORT_SYMBOL vmlinux 0x79e3df99 of_get_next_parent -EXPORT_SYMBOL vmlinux 0x79e7ea55 tcp_destroy_cgroup -EXPORT_SYMBOL vmlinux 0x79f13b2b skb_seq_read -EXPORT_SYMBOL vmlinux 0x7a14bb17 pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x7a2add7d current_kernel_time64 -EXPORT_SYMBOL vmlinux 0x7a33faa7 ps2_handle_response -EXPORT_SYMBOL vmlinux 0x7a375aa7 jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0x7a4497db kzfree -EXPORT_SYMBOL vmlinux 0x7a4c9b7d udp_disconnect -EXPORT_SYMBOL vmlinux 0x7a6271bb jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0x7a7ef8b6 mmc_power_restore_host -EXPORT_SYMBOL vmlinux 0x7a82962f serio_close -EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7aa9364b load_nls_default -EXPORT_SYMBOL vmlinux 0x7aae179b __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7af0e7e4 napi_gro_receive -EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf -EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array -EXPORT_SYMBOL vmlinux 0x7b1ade38 lz4_decompress -EXPORT_SYMBOL vmlinux 0x7b1b14ad console_start -EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0x7b317627 skb_make_writable -EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap -EXPORT_SYMBOL vmlinux 0x7b61cbde dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x7b6759a9 simple_dname -EXPORT_SYMBOL vmlinux 0x7badf8c6 __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x7be4827c pci_dram_offset -EXPORT_SYMBOL vmlinux 0x7c003aef _raw_read_lock_irq -EXPORT_SYMBOL vmlinux 0x7c01e931 i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0x7c0455ec abx500_remove_ops -EXPORT_SYMBOL vmlinux 0x7c1372e8 panic -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c2482d4 xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x7c34aa5b scsi_target_resume -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c464557 input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x7c652230 __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0x7c8cb302 drop_nlink -EXPORT_SYMBOL vmlinux 0x7c9291d1 csum_partial_copy_generic -EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read -EXPORT_SYMBOL vmlinux 0x7caa6b9b mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down -EXPORT_SYMBOL vmlinux 0x7cc83752 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7ce563e3 vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0x7ceed068 simple_readpage -EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies -EXPORT_SYMBOL vmlinux 0x7d35f688 pci_request_region_exclusive -EXPORT_SYMBOL vmlinux 0x7d3fbe0b security_path_rename -EXPORT_SYMBOL vmlinux 0x7d677f56 ipv6_push_nfrag_opts -EXPORT_SYMBOL vmlinux 0x7d6ed8ff dm_get_device -EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug -EXPORT_SYMBOL vmlinux 0x7d77df46 __ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x7d881303 cdrom_check_events -EXPORT_SYMBOL vmlinux 0x7d8aab32 component_match_add -EXPORT_SYMBOL vmlinux 0x7d9a00ba sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x7dac0290 dquot_quotactl_ops -EXPORT_SYMBOL vmlinux 0x7dc02b1d dquot_commit -EXPORT_SYMBOL vmlinux 0x7dc97879 rtas_get_error_log_max -EXPORT_SYMBOL vmlinux 0x7ddee76b backlight_device_register -EXPORT_SYMBOL vmlinux 0x7de0409d mmc_align_data_size -EXPORT_SYMBOL vmlinux 0x7de6435b simple_rename -EXPORT_SYMBOL vmlinux 0x7de9108e bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0x7def5992 eth_validate_addr -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7e1e5605 tty_mutex -EXPORT_SYMBOL vmlinux 0x7e24a5b7 get_super -EXPORT_SYMBOL vmlinux 0x7e4e6e3b jbd2_journal_load -EXPORT_SYMBOL vmlinux 0x7e58b7e8 put_cmsg -EXPORT_SYMBOL vmlinux 0x7e6caa28 kill_pgrp -EXPORT_SYMBOL vmlinux 0x7e6fe028 bdi_register -EXPORT_SYMBOL vmlinux 0x7e87227e slhc_compress -EXPORT_SYMBOL vmlinux 0x7e919a17 sock_no_getsockopt -EXPORT_SYMBOL vmlinux 0x7eb7185b register_quota_format -EXPORT_SYMBOL vmlinux 0x7ec6af05 key_revoke -EXPORT_SYMBOL vmlinux 0x7ec9c93f macio_unregister_driver -EXPORT_SYMBOL vmlinux 0x7ee59de0 vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x7ee73c0c memcg_socket_limit_enabled -EXPORT_SYMBOL vmlinux 0x7eed816e jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x7effdca8 md_cluster_ops -EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f3e5238 ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0x7f5696c9 __skb_get_hash -EXPORT_SYMBOL vmlinux 0x7f60dffc __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done -EXPORT_SYMBOL vmlinux 0x7f687c79 scsi_rescan_device -EXPORT_SYMBOL vmlinux 0x7f788c58 i2c_del_driver -EXPORT_SYMBOL vmlinux 0x7f79b6fe block_invalidatepage -EXPORT_SYMBOL vmlinux 0x7fab37b0 current_in_userns -EXPORT_SYMBOL vmlinux 0x7fca781e fifo_set_limit -EXPORT_SYMBOL vmlinux 0x7fd56c27 __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x8004f660 __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0x8009c2e4 param_set_long -EXPORT_SYMBOL vmlinux 0x800b1b34 jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0x801bde26 vm_insert_pfn -EXPORT_SYMBOL vmlinux 0x801e0e5b pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0x80439f78 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0x80619d61 blk_register_region -EXPORT_SYMBOL vmlinux 0x806266da of_translate_dma_address -EXPORT_SYMBOL vmlinux 0x80759b9a mac_find_mode -EXPORT_SYMBOL vmlinux 0x80b3a3ac fsnotify_init_mark -EXPORT_SYMBOL vmlinux 0x80c41e9c frontswap_register_ops -EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80cabcd3 vm_event_states -EXPORT_SYMBOL vmlinux 0x80d422d6 scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80f3f5e7 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x80f7f52e neigh_app_ns -EXPORT_SYMBOL vmlinux 0x8100ff61 bioset_free -EXPORT_SYMBOL vmlinux 0x81246c17 abx500_set_register_interruptible -EXPORT_SYMBOL vmlinux 0x8130e769 tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x8135cad9 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x81819480 cpu_sibling_map -EXPORT_SYMBOL vmlinux 0x81a07f4e _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0x81ac24c1 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x81ac5cf6 d_genocide -EXPORT_SYMBOL vmlinux 0x81ae9ebb __inode_permission -EXPORT_SYMBOL vmlinux 0x81bafa58 scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0x81c0a84f rtas_set_indicator -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill -EXPORT_SYMBOL vmlinux 0x820d57f9 blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0x8218ec2e skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0x822c5a8c fence_add_callback -EXPORT_SYMBOL vmlinux 0x824ca97e blk_init_queue -EXPORT_SYMBOL vmlinux 0x825d0287 atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun -EXPORT_SYMBOL vmlinux 0x827b43ac __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x82857433 scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes -EXPORT_SYMBOL vmlinux 0x829af419 blk_integrity_register -EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched -EXPORT_SYMBOL vmlinux 0x82cd540a atomic64_and -EXPORT_SYMBOL vmlinux 0x82d28154 tty_port_close_start -EXPORT_SYMBOL vmlinux 0x82d8cafb uart_resume_port -EXPORT_SYMBOL vmlinux 0x82e5a238 vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x82ede44c netdev_update_features -EXPORT_SYMBOL vmlinux 0x82f6c4ad blk_mq_all_tag_busy_iter -EXPORT_SYMBOL vmlinux 0x832fa791 __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x83504650 audit_log -EXPORT_SYMBOL vmlinux 0x8372cd2f __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x838859dd mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x83a06a2a dev_get_flags -EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init -EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83d073ca pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0x83f85469 tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0x8430836e phy_driver_register -EXPORT_SYMBOL vmlinux 0x844404cf ISA_DMA_THRESHOLD -EXPORT_SYMBOL vmlinux 0x84530cda kernel_getsockopt -EXPORT_SYMBOL vmlinux 0x8470ad73 iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0x84a69fdc vme_slave_get -EXPORT_SYMBOL vmlinux 0x84b183ae strncmp -EXPORT_SYMBOL vmlinux 0x84bd69bf dq_data_lock -EXPORT_SYMBOL vmlinux 0x84c9423f get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x84d77c4a iterate_fd -EXPORT_SYMBOL vmlinux 0x84ddb0e8 dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0x84f0e7cd pci_scan_slot -EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload -EXPORT_SYMBOL vmlinux 0x8541bccc intercept_table -EXPORT_SYMBOL vmlinux 0x854e1c0b sg_nents -EXPORT_SYMBOL vmlinux 0x855a1ee4 of_scan_pci_bridge -EXPORT_SYMBOL vmlinux 0x855aa51b xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0x856349b1 mount_nodev -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x857a9f4d elv_unregister_queue -EXPORT_SYMBOL vmlinux 0x85834aa1 tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x858502f6 xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x85874166 pcim_iomap -EXPORT_SYMBOL vmlinux 0x85a4de67 sk_stop_timer -EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85b651a9 serio_rescan -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85ea45b5 inet_frag_find -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x86095b75 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x86182550 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0x86269d41 neigh_destroy -EXPORT_SYMBOL vmlinux 0x86360e2f misc_register -EXPORT_SYMBOL vmlinux 0x8643717b param_set_bool -EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0x867d8ce6 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x86967843 pci_remove_bus -EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x86a4889a kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0x86a8d30b vme_bus_type -EXPORT_SYMBOL vmlinux 0x86aebbd7 vme_master_mmap -EXPORT_SYMBOL vmlinux 0x86db1cbb rtas_flash_term_hook -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags -EXPORT_SYMBOL vmlinux 0x871ece12 inet6_add_offload -EXPORT_SYMBOL vmlinux 0x8745bbfb phy_start_interrupts -EXPORT_SYMBOL vmlinux 0x874e9511 tso_build_hdr -EXPORT_SYMBOL vmlinux 0x875ad9cc uart_unregister_driver -EXPORT_SYMBOL vmlinux 0x875b71c5 sk_mc_loop -EXPORT_SYMBOL vmlinux 0x877e965d xfrm6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x87848875 revalidate_disk -EXPORT_SYMBOL vmlinux 0x87881701 write_inode_now -EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale -EXPORT_SYMBOL vmlinux 0x87a9c910 mmc_gpio_request_ro -EXPORT_SYMBOL vmlinux 0x87ab4d37 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x87b7a816 __genl_register_family -EXPORT_SYMBOL vmlinux 0x87bebd83 blk_execute_rq -EXPORT_SYMBOL vmlinux 0x87c62cdb macio_release_resources -EXPORT_SYMBOL vmlinux 0x87eeed85 mark_page_accessed -EXPORT_SYMBOL vmlinux 0x87f0b644 flow_cache_init -EXPORT_SYMBOL vmlinux 0x87fd2a6f tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0x8826c866 __insert_inode_hash -EXPORT_SYMBOL vmlinux 0x883437ac dev_uc_flush -EXPORT_SYMBOL vmlinux 0x8835b122 d_instantiate_no_diralias -EXPORT_SYMBOL vmlinux 0x8862254a __cleancache_put_page -EXPORT_SYMBOL vmlinux 0x886afe7c padata_start -EXPORT_SYMBOL vmlinux 0x88937e52 prepare_binprm -EXPORT_SYMBOL vmlinux 0x88a7b8e8 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x88ae0b81 tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0x88b5a75a d_find_any_alias -EXPORT_SYMBOL vmlinux 0x88b8aee6 open_check_o_direct -EXPORT_SYMBOL vmlinux 0x88c0ed29 msi_bitmap_free_hwirqs -EXPORT_SYMBOL vmlinux 0x88cd005c always_delete_dentry -EXPORT_SYMBOL vmlinux 0x88e12d5e sock_create_kern -EXPORT_SYMBOL vmlinux 0x88e5b62a devm_gpiod_get -EXPORT_SYMBOL vmlinux 0x88eadd49 dev_uc_add -EXPORT_SYMBOL vmlinux 0x88f63e95 put_io_context -EXPORT_SYMBOL vmlinux 0x8902fd50 file_path -EXPORT_SYMBOL vmlinux 0x8908ddcd linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x890fbaec devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0x891fbb10 mempool_destroy -EXPORT_SYMBOL vmlinux 0x89353988 tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0x893c463f eth_change_mtu -EXPORT_SYMBOL vmlinux 0x89554056 ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0x895d3b60 ihold -EXPORT_SYMBOL vmlinux 0x89797060 _raw_read_lock -EXPORT_SYMBOL vmlinux 0x898c5804 qdisc_reset -EXPORT_SYMBOL vmlinux 0x89a2bb54 dmam_free_noncoherent -EXPORT_SYMBOL vmlinux 0x89b1ce85 phy_disconnect -EXPORT_SYMBOL vmlinux 0x89b3107b isa_mem_base -EXPORT_SYMBOL vmlinux 0x89c362dd kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0x89c53fe3 __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x89cc91bd agp_generic_free_gatt_table -EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x89e987bc nvm_register -EXPORT_SYMBOL vmlinux 0x89fa7bb6 mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x8a00c89a swiotlb_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0x8a0d2256 __pagevec_release -EXPORT_SYMBOL vmlinux 0x8a0e01fd generic_pipe_buf_steal -EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies -EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning -EXPORT_SYMBOL vmlinux 0x8a5acf7d dquot_enable -EXPORT_SYMBOL vmlinux 0x8a5c1f72 pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x8a656263 dev_printk -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8aa3f971 tcp_prot -EXPORT_SYMBOL vmlinux 0x8aac11f1 kobject_add -EXPORT_SYMBOL vmlinux 0x8ab4079e atomic64_add -EXPORT_SYMBOL vmlinux 0x8ac28c62 dma_set_mask -EXPORT_SYMBOL vmlinux 0x8acfa3c6 find_get_pages_contig -EXPORT_SYMBOL vmlinux 0x8ad7e7d0 pci_unmap_rom -EXPORT_SYMBOL vmlinux 0x8ade86a1 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0x8ae74dec inet6_bind -EXPORT_SYMBOL vmlinux 0x8af7e255 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0x8af80779 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0x8b3300a5 __dev_get_by_name -EXPORT_SYMBOL vmlinux 0x8b340c5e padata_set_cpumasks -EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b896c89 blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0x8b929d38 freeze_bdev -EXPORT_SYMBOL vmlinux 0x8b9b1706 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0x8b9bd81d eth_gro_receive -EXPORT_SYMBOL vmlinux 0x8bab4984 page_cache_next_hole -EXPORT_SYMBOL vmlinux 0x8bb04e0a eth_type_trans -EXPORT_SYMBOL vmlinux 0x8bdfa553 of_find_node_by_type -EXPORT_SYMBOL vmlinux 0x8be600ed lwtunnel_build_state -EXPORT_SYMBOL vmlinux 0x8be8a85a vme_unregister_driver -EXPORT_SYMBOL vmlinux 0x8bff6ff7 kill_fasync -EXPORT_SYMBOL vmlinux 0x8c137d50 __sk_dst_check -EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 -EXPORT_SYMBOL vmlinux 0x8c241355 inet_del_protocol -EXPORT_SYMBOL vmlinux 0x8c320921 key_payload_reserve -EXPORT_SYMBOL vmlinux 0x8c3b0688 mutex_lock_killable -EXPORT_SYMBOL vmlinux 0x8c5012f1 xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x8c66a7f0 tcp_prequeue -EXPORT_SYMBOL vmlinux 0x8c70f4b0 block_write_end -EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep -EXPORT_SYMBOL vmlinux 0x8cd31456 scsi_print_sense -EXPORT_SYMBOL vmlinux 0x8d015dd4 __bswapdi2 -EXPORT_SYMBOL vmlinux 0x8d093b5f netpoll_setup -EXPORT_SYMBOL vmlinux 0x8d1319a2 cfb_imageblit -EXPORT_SYMBOL vmlinux 0x8d20685f scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0x8d29502c put_filp -EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d6b2ce1 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x8d6cffe3 __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0x8d72495b __getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d9f608c ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0x8da22db8 scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0x8da7b8fc blk_delay_queue -EXPORT_SYMBOL vmlinux 0x8da8a349 ps2_drain -EXPORT_SYMBOL vmlinux 0x8daae7db tcf_em_unregister -EXPORT_SYMBOL vmlinux 0x8de0b5ac mempool_create -EXPORT_SYMBOL vmlinux 0x8df5da63 memstart_addr -EXPORT_SYMBOL vmlinux 0x8e141e6f mfd_add_devices -EXPORT_SYMBOL vmlinux 0x8e2cda7a scmd_printk -EXPORT_SYMBOL vmlinux 0x8e4f8bfa mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0x8e50ec2c tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x8e56a962 simple_setattr -EXPORT_SYMBOL vmlinux 0x8e6ce600 scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x8e75cf3b inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x8ea2910a in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x8eaffe14 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x8eb09113 pmac_suspend_agp_for_card -EXPORT_SYMBOL vmlinux 0x8ebc9ffa noop_fsync -EXPORT_SYMBOL vmlinux 0x8ec04552 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0x8ec5b4c6 swiotlb_dma_supported -EXPORT_SYMBOL vmlinux 0x8ed29d6e vfs_iter_read -EXPORT_SYMBOL vmlinux 0x8f399ec2 scsi_register -EXPORT_SYMBOL vmlinux 0x8f40b3b2 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x8f545142 replace_mount_options -EXPORT_SYMBOL vmlinux 0x8f736c21 key_put -EXPORT_SYMBOL vmlinux 0x8f7ae29c get_io_context -EXPORT_SYMBOL vmlinux 0x8f7b6a62 pci_reenable_device -EXPORT_SYMBOL vmlinux 0x8f85f835 prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x8f8eab97 sb_min_blocksize -EXPORT_SYMBOL vmlinux 0x8f8fbac8 forget_cached_acl -EXPORT_SYMBOL vmlinux 0x8fa2a2c6 pcie_set_mps -EXPORT_SYMBOL vmlinux 0x8fa91730 dst_release -EXPORT_SYMBOL vmlinux 0x8fb368f8 neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x8fbf37e0 profile_pc -EXPORT_SYMBOL vmlinux 0x8fc15bf6 iommu_tbl_range_free -EXPORT_SYMBOL vmlinux 0x8fd443d7 address_space_init_once -EXPORT_SYMBOL vmlinux 0x8ff458e2 ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x8ffa29e0 mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 -EXPORT_SYMBOL vmlinux 0x900d7df1 xattr_full_name -EXPORT_SYMBOL vmlinux 0x902e00a6 elv_rb_del -EXPORT_SYMBOL vmlinux 0x902ecd23 devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0x9030c02b mapping_tagged -EXPORT_SYMBOL vmlinux 0x905d8698 sock_get_timestamp -EXPORT_SYMBOL vmlinux 0x909909e1 udp6_set_csum -EXPORT_SYMBOL vmlinux 0x90a319d1 security_path_rmdir -EXPORT_SYMBOL vmlinux 0x90a6a944 audit_log_start -EXPORT_SYMBOL vmlinux 0x90be64ef max8925_reg_write -EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0x90c9edba of_find_node_with_property -EXPORT_SYMBOL vmlinux 0x90cea519 sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x90ebeb06 tcp_sendpage -EXPORT_SYMBOL vmlinux 0x90f1b023 msi_bitmap_alloc_hwirqs -EXPORT_SYMBOL vmlinux 0x90f904ea pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0x9102f903 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x910e248c swiotlb_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x911468c2 xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x9122f88b tcp_read_sock -EXPORT_SYMBOL vmlinux 0x912557ce rtas_busy_delay -EXPORT_SYMBOL vmlinux 0x91407a97 tso_build_data -EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 -EXPORT_SYMBOL vmlinux 0x915d6a5a touch_atime -EXPORT_SYMBOL vmlinux 0x915e1208 tb_ticks_per_usec -EXPORT_SYMBOL vmlinux 0x91621d6a allocate_resource -EXPORT_SYMBOL vmlinux 0x9168c033 rtas_get_sensor -EXPORT_SYMBOL vmlinux 0x91715312 sprintf -EXPORT_SYMBOL vmlinux 0x917f310b elv_dispatch_sort -EXPORT_SYMBOL vmlinux 0x919c19ba xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x919d1163 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x91c8850e __sb_start_write -EXPORT_SYMBOL vmlinux 0x91cf4d65 clear_user_page -EXPORT_SYMBOL vmlinux 0x91e11e74 blk_start_queue -EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 -EXPORT_SYMBOL vmlinux 0x91fcd98c bio_endio -EXPORT_SYMBOL vmlinux 0x9214f6e2 __mdiobus_register -EXPORT_SYMBOL vmlinux 0x921ae8c3 key_invalidate -EXPORT_SYMBOL vmlinux 0x9220b54e ata_port_printk -EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x9243f5de devfreq_resume_device -EXPORT_SYMBOL vmlinux 0x928e3442 dst_discard_out -EXPORT_SYMBOL vmlinux 0x92988eff vme_dma_list_add -EXPORT_SYMBOL vmlinux 0x92a636be mmc_set_blockcount -EXPORT_SYMBOL vmlinux 0x92a8fa72 pci_disable_msix -EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm -EXPORT_SYMBOL vmlinux 0x92b2b005 arp_xmit -EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x93072164 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0x9309de94 cuda_request -EXPORT_SYMBOL vmlinux 0x931cdd20 of_match_device -EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0x9330cb9f sg_alloc_table -EXPORT_SYMBOL vmlinux 0x935cbbd5 dev_uc_unsync -EXPORT_SYMBOL vmlinux 0x936524bc twl6040_reg_write -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x93836d80 netif_carrier_off -EXPORT_SYMBOL vmlinux 0x9393ba52 crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93b712a9 sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x93d7d233 freeze_super -EXPORT_SYMBOL vmlinux 0x93e61e8a blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0x93e93334 of_device_alloc -EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages -EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int -EXPORT_SYMBOL vmlinux 0x9405ecd7 generic_permission -EXPORT_SYMBOL vmlinux 0x940a2344 vfs_whiteout -EXPORT_SYMBOL vmlinux 0x940eecac is_bad_inode -EXPORT_SYMBOL vmlinux 0x940f9cf6 kblockd_schedule_delayed_work -EXPORT_SYMBOL vmlinux 0x941de56b alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0x9422d38f pipe_lock -EXPORT_SYMBOL vmlinux 0x945b16e8 sock_create_lite -EXPORT_SYMBOL vmlinux 0x94884e4b uart_register_driver -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x949d7f5e param_set_byte -EXPORT_SYMBOL vmlinux 0x94b2590f vme_free_consistent -EXPORT_SYMBOL vmlinux 0x94cbd061 dql_reset -EXPORT_SYMBOL vmlinux 0x94d165eb bio_copy_data -EXPORT_SYMBOL vmlinux 0x94d7495a i2c_del_adapter -EXPORT_SYMBOL vmlinux 0x94da2b46 inet_frag_maybe_warn_overflow -EXPORT_SYMBOL vmlinux 0x94ed52aa blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0x94eea794 getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x9500f58a __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x9511d13d jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0x9514151a _mcount -EXPORT_SYMBOL vmlinux 0x9523a9cb input_get_keycode -EXPORT_SYMBOL vmlinux 0x9524b0ae _outsb -EXPORT_SYMBOL vmlinux 0x95276667 d_rehash -EXPORT_SYMBOL vmlinux 0x953bb616 xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init -EXPORT_SYMBOL vmlinux 0x954d9fdc tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x95da9761 mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0x95dc5816 blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0x96028311 iterate_mounts -EXPORT_SYMBOL vmlinux 0x960a59b2 __frontswap_load -EXPORT_SYMBOL vmlinux 0x960dfaf5 radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0x96131bb3 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x9629c90f blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0x962aa646 security_task_getsecid -EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x96573d08 mount_ns -EXPORT_SYMBOL vmlinux 0x966960eb of_get_mac_address -EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x96a525a7 scsi_cmd_ioctl -EXPORT_SYMBOL vmlinux 0x96b13a52 __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x96c13886 disk_stack_limits -EXPORT_SYMBOL vmlinux 0x96c74930 touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96cd2e31 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x96d0a8a4 blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0x96d23c3b agp_allocate_memory -EXPORT_SYMBOL vmlinux 0x96dbcca2 ioremap_prot -EXPORT_SYMBOL vmlinux 0x96dce98c resource_list_create_entry -EXPORT_SYMBOL vmlinux 0x97255bdf strlen -EXPORT_SYMBOL vmlinux 0x9727a1db page_cache_prev_hole -EXPORT_SYMBOL vmlinux 0x973e1c3b cdrom_mode_select -EXPORT_SYMBOL vmlinux 0x9748927f _outsw_ns -EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x975984a9 user_path_at_empty -EXPORT_SYMBOL vmlinux 0x977dde82 scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x979111ba __blk_end_request_all -EXPORT_SYMBOL vmlinux 0x9793bbbc reservation_object_reserve_shared -EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state -EXPORT_SYMBOL vmlinux 0x979aa5eb blk_rq_map_user -EXPORT_SYMBOL vmlinux 0x97ad64db sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x97d29065 km_report -EXPORT_SYMBOL vmlinux 0x97dd04e4 filemap_fault -EXPORT_SYMBOL vmlinux 0x97ee65bc vfs_writef -EXPORT_SYMBOL vmlinux 0x97fd6b01 __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0x9814c7a5 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x9845fc47 __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x98500d9f pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0x985ce737 mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0x98697056 uart_remove_one_port -EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x9871b174 nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0x98765acf fsnotify_put_group -EXPORT_SYMBOL vmlinux 0x987a871e flush_tlb_mm -EXPORT_SYMBOL vmlinux 0x98b192db ip_defrag -EXPORT_SYMBOL vmlinux 0x98bb8641 km_new_mapping -EXPORT_SYMBOL vmlinux 0x98c424d4 seq_hex_dump -EXPORT_SYMBOL vmlinux 0x98e68eca cancel_delayed_work -EXPORT_SYMBOL vmlinux 0x98fe7882 DMA_MODE_READ -EXPORT_SYMBOL vmlinux 0x9905562f blk_get_queue -EXPORT_SYMBOL vmlinux 0x9919f582 invalidate_partition -EXPORT_SYMBOL vmlinux 0x991eb7e7 wake_up_process -EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x9944658d vc_resize -EXPORT_SYMBOL vmlinux 0x9945575d __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x9951b8ef blk_rq_init -EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x9997c4e8 lock_sock_nested -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99afe916 _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0x99bb8806 memmove -EXPORT_SYMBOL vmlinux 0x99bc1d10 file_remove_privs -EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering -EXPORT_SYMBOL vmlinux 0x99dae75a neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0x99dcf71c kernel_sock_ioctl -EXPORT_SYMBOL vmlinux 0x99edb710 netlink_ack -EXPORT_SYMBOL vmlinux 0x9a051377 param_ops_ulong -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval -EXPORT_SYMBOL vmlinux 0x9a3533f1 generic_writepages -EXPORT_SYMBOL vmlinux 0x9a357722 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0x9a54c074 tcp_child_process -EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach -EXPORT_SYMBOL vmlinux 0x9af366fd scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x9b03b931 phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0x9b202980 __check_sticky -EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page -EXPORT_SYMBOL vmlinux 0x9b3b34c4 pci_bus_get -EXPORT_SYMBOL vmlinux 0x9b4b7e9b nobh_write_begin -EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize -EXPORT_SYMBOL vmlinux 0x9b71b625 devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0x9b741310 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0x9b9a41c0 rwsem_down_read_failed -EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split -EXPORT_SYMBOL vmlinux 0x9bbbd2ef kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0x9bce482f __release_region -EXPORT_SYMBOL vmlinux 0x9bd77500 vmap -EXPORT_SYMBOL vmlinux 0x9bd94abb request_firmware -EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x9bebafc5 bdgrab -EXPORT_SYMBOL vmlinux 0x9c08ec3a cdev_init -EXPORT_SYMBOL vmlinux 0x9c25a74a dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0x9c2b4545 ata_std_end_eh -EXPORT_SYMBOL vmlinux 0x9c30cd9f netdev_all_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x9c314e22 blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0x9c3c8001 deactivate_locked_super -EXPORT_SYMBOL vmlinux 0x9c51e18e devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0x9c5b9d1a __dquot_transfer -EXPORT_SYMBOL vmlinux 0x9c7887cf dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cc70a2f sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x9ce3f83f nvram_write_byte -EXPORT_SYMBOL vmlinux 0x9ce7b4e4 swiotlb_map_sg_attrs -EXPORT_SYMBOL vmlinux 0x9ce9782b kill_pid -EXPORT_SYMBOL vmlinux 0x9cf9f93c kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d0e49aa devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0x9d14983a ppc_enable_pmcs -EXPORT_SYMBOL vmlinux 0x9d1daf72 fb_show_logo -EXPORT_SYMBOL vmlinux 0x9d2cd2ad dma_common_get_sgtable -EXPORT_SYMBOL vmlinux 0x9d342000 tty_port_destroy -EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init -EXPORT_SYMBOL vmlinux 0x9d669763 memcpy -EXPORT_SYMBOL vmlinux 0x9d6a54c2 flex_array_get_ptr -EXPORT_SYMBOL vmlinux 0x9d7ce8dd _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0x9d8a6f0d from_kuid -EXPORT_SYMBOL vmlinux 0x9db5e90e skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0x9db8a74c __devm_request_region -EXPORT_SYMBOL vmlinux 0x9dfe7307 lz4_decompress_unknownoutputsize -EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e1aa3ff of_mdiobus_register -EXPORT_SYMBOL vmlinux 0x9e1cfc90 ioremap_wc -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e60c5ff ip_options_compile -EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e672ff6 scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value -EXPORT_SYMBOL vmlinux 0x9e8d000e __sb_end_write -EXPORT_SYMBOL vmlinux 0x9e8de950 netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0x9e97375d rtas_busy_delay_time -EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9ea0c3e2 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0x9eca0d0f blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x9ecdc75b security_inode_permission -EXPORT_SYMBOL vmlinux 0x9eda4718 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x9ef32813 revert_creds -EXPORT_SYMBOL vmlinux 0x9ef8f6c3 agp_put_bridge -EXPORT_SYMBOL vmlinux 0x9f0a9d43 down_write_trylock -EXPORT_SYMBOL vmlinux 0x9f1e26d8 netif_carrier_on -EXPORT_SYMBOL vmlinux 0x9f409b71 set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f79d771 unregister_nls -EXPORT_SYMBOL vmlinux 0x9f871af8 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0x9f911629 idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0x9f942d76 notify_change -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9fb4ba2b tcp_filter -EXPORT_SYMBOL vmlinux 0x9fbfd7c6 tty_schedule_flip -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0xa013bf33 vme_register_driver -EXPORT_SYMBOL vmlinux 0xa01d6a28 of_device_is_big_endian -EXPORT_SYMBOL vmlinux 0xa039502b make_kgid -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init -EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa08f9a8e bio_uncopy_user -EXPORT_SYMBOL vmlinux 0xa0a62cc4 tso_start -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0b18e04 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0xa0c15780 twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0xa0c85339 swiotlb_unmap_sg -EXPORT_SYMBOL vmlinux 0xa0d97589 arp_create -EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0db19d1 block_truncate_page -EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem -EXPORT_SYMBOL vmlinux 0xa0fa3c82 remap_vmalloc_range_partial -EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa10ad437 tcf_exts_validate -EXPORT_SYMBOL vmlinux 0xa10c5a13 blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0xa11421fb vfs_getxattr_alloc -EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xa140143d mmc_get_card -EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0xa168c06b textsearch_register -EXPORT_SYMBOL vmlinux 0xa181bd4d gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0xa1afee83 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode -EXPORT_SYMBOL vmlinux 0xa1b849b5 jbd2_journal_file_inode -EXPORT_SYMBOL vmlinux 0xa1c2c036 ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched -EXPORT_SYMBOL vmlinux 0xa1c99385 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create -EXPORT_SYMBOL vmlinux 0xa1e6d160 __seq_open_private -EXPORT_SYMBOL vmlinux 0xa1f8fe75 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold -EXPORT_SYMBOL vmlinux 0xa210153a of_parse_phandle_with_fixed_args -EXPORT_SYMBOL vmlinux 0xa2323725 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0xa232cde5 mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0xa25a62f5 poll_freewait -EXPORT_SYMBOL vmlinux 0xa262dd60 __invalidate_device -EXPORT_SYMBOL vmlinux 0xa2653dd1 ipv6_select_ident -EXPORT_SYMBOL vmlinux 0xa266b13d dev_uc_sync -EXPORT_SYMBOL vmlinux 0xa2683c9f blk_start_request -EXPORT_SYMBOL vmlinux 0xa26cc031 kthread_stop -EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0xa2928a84 seq_file_path -EXPORT_SYMBOL vmlinux 0xa29ceff0 dump_truncate -EXPORT_SYMBOL vmlinux 0xa2bbed37 crash_shutdown_register -EXPORT_SYMBOL vmlinux 0xa2cc82b9 d_set_fallthru -EXPORT_SYMBOL vmlinux 0xa2d0f54d dm_unregister_target -EXPORT_SYMBOL vmlinux 0xa2e2a5d6 acl_by_type -EXPORT_SYMBOL vmlinux 0xa2f88f84 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0xa2fdbcbe fence_default_wait -EXPORT_SYMBOL vmlinux 0xa303d1ff dm_ratelimit_state -EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set -EXPORT_SYMBOL vmlinux 0xa323ea66 mdiobus_unregister -EXPORT_SYMBOL vmlinux 0xa32b1780 call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0xa32b6bec mmc_wait_for_app_cmd -EXPORT_SYMBOL vmlinux 0xa35e81f3 migrate_page -EXPORT_SYMBOL vmlinux 0xa38e691a ioremap_bot -EXPORT_SYMBOL vmlinux 0xa39b4cf2 udelay -EXPORT_SYMBOL vmlinux 0xa3abc422 abort_exclusive_wait -EXPORT_SYMBOL vmlinux 0xa3dcb8bf inet_addr_type -EXPORT_SYMBOL vmlinux 0xa3e75545 flush_tlb_kernel_range -EXPORT_SYMBOL vmlinux 0xa402059d alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf -EXPORT_SYMBOL vmlinux 0xa45056cf tty_lock -EXPORT_SYMBOL vmlinux 0xa4546acd tcp_md5_hash_header -EXPORT_SYMBOL vmlinux 0xa45f65d0 __cleancache_get_page -EXPORT_SYMBOL vmlinux 0xa46d72f3 dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset -EXPORT_SYMBOL vmlinux 0xa471e26b netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0xa4804054 __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0xa48945c0 dev_add_pack -EXPORT_SYMBOL vmlinux 0xa49cbb34 bitmap_startwrite -EXPORT_SYMBOL vmlinux 0xa4a94d26 find_next_bit_le -EXPORT_SYMBOL vmlinux 0xa4b24401 inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep -EXPORT_SYMBOL vmlinux 0xa4cb66be dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush -EXPORT_SYMBOL vmlinux 0xa4eb7ff8 devm_get_gpiod_from_child -EXPORT_SYMBOL vmlinux 0xa4f61db7 unlock_buffer -EXPORT_SYMBOL vmlinux 0xa507a1fa rwsem_downgrade_wake -EXPORT_SYMBOL vmlinux 0xa5116458 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0xa51aa19a md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0xa52e372a __pci_enable_wake -EXPORT_SYMBOL vmlinux 0xa551a5c2 truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa559ffb8 iov_iter_advance -EXPORT_SYMBOL vmlinux 0xa55e762b __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0xa56b8ab2 flex_array_free -EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes -EXPORT_SYMBOL vmlinux 0xa5a59dc8 mach_powermac -EXPORT_SYMBOL vmlinux 0xa5a633b9 sg_last -EXPORT_SYMBOL vmlinux 0xa5a807c1 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0xa5aa70a8 gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0xa5b420e7 of_get_parent -EXPORT_SYMBOL vmlinux 0xa5bd4930 blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0xa5bd6534 locks_remove_posix -EXPORT_SYMBOL vmlinux 0xa5cef8ad release_resource -EXPORT_SYMBOL vmlinux 0xa5d7e80c pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0xa5e034bc ip6_xmit -EXPORT_SYMBOL vmlinux 0xa5e36aef udp_proc_register -EXPORT_SYMBOL vmlinux 0xa5e9570f pci_release_regions -EXPORT_SYMBOL vmlinux 0xa605d0ba bioset_integrity_free -EXPORT_SYMBOL vmlinux 0xa60fa81c genphy_update_link -EXPORT_SYMBOL vmlinux 0xa631dc68 udp_proc_unregister -EXPORT_SYMBOL vmlinux 0xa652c4ef __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0xa658003b __f_setown -EXPORT_SYMBOL vmlinux 0xa65972b8 _memcpy_toio -EXPORT_SYMBOL vmlinux 0xa661e584 ppp_unit_number -EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0xa67c4704 inet6_offloads -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0xa6994701 __i2c_transfer -EXPORT_SYMBOL vmlinux 0xa6995937 user_path_create -EXPORT_SYMBOL vmlinux 0xa6a3236e devm_request_resource -EXPORT_SYMBOL vmlinux 0xa6e04a86 proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0xa6e05b09 pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0xa6e54092 ilookup5 -EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function -EXPORT_SYMBOL vmlinux 0xa700fc90 scsi_block_requests -EXPORT_SYMBOL vmlinux 0xa70a3ad0 netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0xa720678c lg_global_lock -EXPORT_SYMBOL vmlinux 0xa7300937 security_inode_readlink -EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 -EXPORT_SYMBOL vmlinux 0xa73ac7ac kernel_recvmsg -EXPORT_SYMBOL vmlinux 0xa74f4e9b ida_simple_get -EXPORT_SYMBOL vmlinux 0xa78d72d9 jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0xa78d9eb7 slhc_uncompress -EXPORT_SYMBOL vmlinux 0xa7a5f688 pci_bus_type -EXPORT_SYMBOL vmlinux 0xa7bda48f tcp_check_req -EXPORT_SYMBOL vmlinux 0xa7cd1948 jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0xa7d1ea37 make_kuid -EXPORT_SYMBOL vmlinux 0xa7de82e5 simple_rmdir -EXPORT_SYMBOL vmlinux 0xa7ea9e45 dev_addr_flush -EXPORT_SYMBOL vmlinux 0xa7f5c6c6 tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0xa7f8dde2 netdev_boot_setup_check -EXPORT_SYMBOL vmlinux 0xa7f8f498 posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0xa8089b4f netlink_capable -EXPORT_SYMBOL vmlinux 0xa80b58df __neigh_create -EXPORT_SYMBOL vmlinux 0xa80c3fce lookup_one_len -EXPORT_SYMBOL vmlinux 0xa81582cd wait_on_page_bit -EXPORT_SYMBOL vmlinux 0xa81e2a0c netdev_change_features -EXPORT_SYMBOL vmlinux 0xa81e3fb1 give_up_console -EXPORT_SYMBOL vmlinux 0xa82d8e35 elv_dispatch_add_tail -EXPORT_SYMBOL vmlinux 0xa83ae8c2 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0xa83bf1c5 path_put -EXPORT_SYMBOL vmlinux 0xa842427e insert_inode_locked -EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa85b6cf3 generic_write_checks -EXPORT_SYMBOL vmlinux 0xa861ab6e __ioremap -EXPORT_SYMBOL vmlinux 0xa867c605 __inode_add_bytes -EXPORT_SYMBOL vmlinux 0xa868fbc3 pci_get_subsys -EXPORT_SYMBOL vmlinux 0xa86d9ead seq_escape -EXPORT_SYMBOL vmlinux 0xa8721b97 system_state -EXPORT_SYMBOL vmlinux 0xa8760c9f take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xa87d1132 nf_unregister_hook -EXPORT_SYMBOL vmlinux 0xa8804438 vfs_path_lookup -EXPORT_SYMBOL vmlinux 0xa89464b7 __ashldi3 -EXPORT_SYMBOL vmlinux 0xa8aa5a45 nf_hook_slow -EXPORT_SYMBOL vmlinux 0xa8b3b388 pci_alloc_dev -EXPORT_SYMBOL vmlinux 0xa8ee01cb udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send -EXPORT_SYMBOL vmlinux 0xa911e8f9 pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion -EXPORT_SYMBOL vmlinux 0xa922956e fput -EXPORT_SYMBOL vmlinux 0xa9273e1a epapr_hypercall_start -EXPORT_SYMBOL vmlinux 0xa9282581 iterate_dir -EXPORT_SYMBOL vmlinux 0xa9353d7e vc_cons -EXPORT_SYMBOL vmlinux 0xa936b6e0 fsl_lbc_ctrl_dev -EXPORT_SYMBOL vmlinux 0xa94a6b27 bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xa9571d6d DMA_MODE_WRITE -EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa976fbe6 tcp_recvmsg -EXPORT_SYMBOL vmlinux 0xa9b3efc3 irq_set_chip -EXPORT_SYMBOL vmlinux 0xa9b7b2e6 register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0xa9bcfd26 qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0xa9c8f6bb devm_gpio_request -EXPORT_SYMBOL vmlinux 0xa9d5d904 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0xa9d647f5 locks_mandatory_area -EXPORT_SYMBOL vmlinux 0xa9d6ba00 generic_error_remove_page -EXPORT_SYMBOL vmlinux 0xa9db2065 of_graph_get_remote_port -EXPORT_SYMBOL vmlinux 0xa9e42a90 would_dump -EXPORT_SYMBOL vmlinux 0xa9f38061 nvm_unregister_target -EXPORT_SYMBOL vmlinux 0xa9f4162a __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0xaa039ac5 phy_init_hw -EXPORT_SYMBOL vmlinux 0xaa10033d security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0xaa10f465 rtmsg_ifinfo -EXPORT_SYMBOL vmlinux 0xaa439963 dma_pool_create -EXPORT_SYMBOL vmlinux 0xaa46e87e lg_local_unlock -EXPORT_SYMBOL vmlinux 0xaa4df512 pmu_batteries -EXPORT_SYMBOL vmlinux 0xaa6558d7 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r -EXPORT_SYMBOL vmlinux 0xaa6e4df5 _raw_write_lock_irqsave -EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa6fe8df inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xaaa08391 of_graph_get_remote_port_parent -EXPORT_SYMBOL vmlinux 0xaaaeee6f genl_notify -EXPORT_SYMBOL vmlinux 0xaab75729 of_find_device_by_node -EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state -EXPORT_SYMBOL vmlinux 0xaadaa3c7 trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0xaade7b1f skb_vlan_untag -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0xab228e31 csum_tcpudp_magic -EXPORT_SYMBOL vmlinux 0xab48a326 posix_test_lock -EXPORT_SYMBOL vmlinux 0xab4b49b7 csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0xab694444 bsearch -EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog -EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab85e1fa agp_alloc_bridge -EXPORT_SYMBOL vmlinux 0xab88c180 i2c_master_recv -EXPORT_SYMBOL vmlinux 0xab8bb407 rtnl_unicast -EXPORT_SYMBOL vmlinux 0xaba3ad0c radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0xaba891f2 of_n_size_cells -EXPORT_SYMBOL vmlinux 0xaba97b73 mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0xabad6421 jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0xabb836ad generic_show_options -EXPORT_SYMBOL vmlinux 0xabbc83a5 inode_needs_sync -EXPORT_SYMBOL vmlinux 0xabbfc923 arp_tbl -EXPORT_SYMBOL vmlinux 0xabc891ba mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev -EXPORT_SYMBOL vmlinux 0xabd6ca26 blk_queue_make_request -EXPORT_SYMBOL vmlinux 0xabea5b53 pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0xabed29cf proto_unregister -EXPORT_SYMBOL vmlinux 0xabfcb4c3 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xabfe49ea inetdev_by_index -EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable -EXPORT_SYMBOL vmlinux 0xac132d94 set_device_ro -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac26b820 _raw_write_lock -EXPORT_SYMBOL vmlinux 0xac4cc1bc lockref_mark_dead -EXPORT_SYMBOL vmlinux 0xac7923a2 secpath_dup -EXPORT_SYMBOL vmlinux 0xac899bb2 d_move -EXPORT_SYMBOL vmlinux 0xac969529 __ip_dev_find -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacc5b5d2 csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0xacc7e60d __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton -EXPORT_SYMBOL vmlinux 0xacd0bdf7 kobject_get -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad50cebb i8253_lock -EXPORT_SYMBOL vmlinux 0xad547243 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event -EXPORT_SYMBOL vmlinux 0xad961743 __wait_on_bit -EXPORT_SYMBOL vmlinux 0xad99e599 __block_write_begin -EXPORT_SYMBOL vmlinux 0xadbe5ac5 bio_phys_segments -EXPORT_SYMBOL vmlinux 0xadc485f3 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0xadcda092 jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0xaddd4770 __debugger_iabr_match -EXPORT_SYMBOL vmlinux 0xadf32f09 lock_fb_info -EXPORT_SYMBOL vmlinux 0xadf42bd5 __request_region -EXPORT_SYMBOL vmlinux 0xadf78fdd bio_integrity_trim -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae06b437 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0xae1b4e95 blk_mq_can_queue -EXPORT_SYMBOL vmlinux 0xae216f82 scsi_host_lookup -EXPORT_SYMBOL vmlinux 0xae25c4b1 read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0xae358236 fence_signal -EXPORT_SYMBOL vmlinux 0xae49a8ab xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0xae545f06 _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xae6d503e bio_integrity_endio -EXPORT_SYMBOL vmlinux 0xae73289a mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0xae77a595 radix_tree_gang_lookup_slot -EXPORT_SYMBOL vmlinux 0xae7e902b __register_nls -EXPORT_SYMBOL vmlinux 0xae85a27e radix_tree_lookup -EXPORT_SYMBOL vmlinux 0xaeaf210b bitmap_end_sync -EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact -EXPORT_SYMBOL vmlinux 0xaec66890 generic_file_mmap -EXPORT_SYMBOL vmlinux 0xaed0af9a get_cached_acl -EXPORT_SYMBOL vmlinux 0xaed673c2 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0xaefa6f10 dquot_initialize -EXPORT_SYMBOL vmlinux 0xaefb8f80 dma_sync_wait -EXPORT_SYMBOL vmlinux 0xaefda62c devm_iounmap -EXPORT_SYMBOL vmlinux 0xaf063510 _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0xaf0b81c2 lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0xaf11af82 nobh_write_end -EXPORT_SYMBOL vmlinux 0xaf2d872c prepare_to_wait -EXPORT_SYMBOL vmlinux 0xaf2dea1f con_is_bound -EXPORT_SYMBOL vmlinux 0xaf31e34a param_ops_bool -EXPORT_SYMBOL vmlinux 0xaf326561 ip_setsockopt -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf47027f key_unlink -EXPORT_SYMBOL vmlinux 0xaf665992 nf_unregister_hooks -EXPORT_SYMBOL vmlinux 0xaf8a84b6 sync_blockdev -EXPORT_SYMBOL vmlinux 0xaf8dba33 pagevec_lookup_tag -EXPORT_SYMBOL vmlinux 0xaf8e388a simple_lookup -EXPORT_SYMBOL vmlinux 0xaf929bad of_phy_find_device -EXPORT_SYMBOL vmlinux 0xaf9340a7 tcf_hash_new_index -EXPORT_SYMBOL vmlinux 0xafa0bfac mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0xafaed86f downgrade_write -EXPORT_SYMBOL vmlinux 0xafb0fd09 gen_pool_create -EXPORT_SYMBOL vmlinux 0xafb2d677 i2c_release_client -EXPORT_SYMBOL vmlinux 0xafb448d9 devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0xafc89524 ps2_end_command -EXPORT_SYMBOL vmlinux 0xafd52fc7 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0xafe3a9eb d_walk -EXPORT_SYMBOL vmlinux 0xafe77047 sock_no_sendpage -EXPORT_SYMBOL vmlinux 0xafe794ad scsi_remove_device -EXPORT_SYMBOL vmlinux 0xafff3d1d mempool_alloc -EXPORT_SYMBOL vmlinux 0xb0080dbf unregister_shrinker -EXPORT_SYMBOL vmlinux 0xb0150e77 inet6_unregister_icmp_sender -EXPORT_SYMBOL vmlinux 0xb02639c4 cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0xb04241b4 ida_simple_remove -EXPORT_SYMBOL vmlinux 0xb043c17d sock_kmalloc -EXPORT_SYMBOL vmlinux 0xb04dfa5c dev_activate -EXPORT_SYMBOL vmlinux 0xb055d672 freezing_slow_path -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb07412fb pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0xb081b9c3 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0xb0899e6f devm_gpiod_get_array_optional -EXPORT_SYMBOL vmlinux 0xb08d6e2a mount_bdev -EXPORT_SYMBOL vmlinux 0xb0936f1c mmc_release_host -EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0xb0b4f8a7 vfs_unlink -EXPORT_SYMBOL vmlinux 0xb0b91098 page_waitqueue -EXPORT_SYMBOL vmlinux 0xb0ba20e1 vme_new_dma_list -EXPORT_SYMBOL vmlinux 0xb0c46f8c ip_queue_xmit -EXPORT_SYMBOL vmlinux 0xb0c85afd block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0xb0dc2943 scsi_ioctl_reset -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0e1fd5f i2c_clients_command -EXPORT_SYMBOL vmlinux 0xb0f046db dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0xb0f2232f of_phy_connect -EXPORT_SYMBOL vmlinux 0xb1082f3c __register_binfmt -EXPORT_SYMBOL vmlinux 0xb128a1f6 qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb149a781 mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0xb1573a06 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0xb15bd8fa tb_ticks_per_sec -EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xb171bd7b sk_ns_capable -EXPORT_SYMBOL vmlinux 0xb1860bab xfrm_register_type -EXPORT_SYMBOL vmlinux 0xb1a83647 vme_dma_list_free -EXPORT_SYMBOL vmlinux 0xb1a9448e dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1c6e787 wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0xb1cd3910 mmc_start_bkops -EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xb1d5944c tcp_init_cgroup -EXPORT_SYMBOL vmlinux 0xb1fd064b __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xb20f0384 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0xb22caadb poll_schedule_timeout -EXPORT_SYMBOL vmlinux 0xb233762c atomic64_set -EXPORT_SYMBOL vmlinux 0xb257982e devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0xb275a12c mutex_lock -EXPORT_SYMBOL vmlinux 0xb2785a26 mdiobus_scan -EXPORT_SYMBOL vmlinux 0xb27be6d4 pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0xb27f29f1 mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0xb2904c80 macio_dev_put -EXPORT_SYMBOL vmlinux 0xb2947aa6 netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0xb2a1419c copy_strings_kernel -EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on -EXPORT_SYMBOL vmlinux 0xb2d8ca2e iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0xb2e35455 tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0xb2f57a60 scsi_init_io -EXPORT_SYMBOL vmlinux 0xb3246b7c request_firmware_nowait -EXPORT_SYMBOL vmlinux 0xb32d7b7e radix_tree_tagged -EXPORT_SYMBOL vmlinux 0xb3343632 posix_acl_valid -EXPORT_SYMBOL vmlinux 0xb3382494 fence_signal_locked -EXPORT_SYMBOL vmlinux 0xb34f5096 ppp_register_channel -EXPORT_SYMBOL vmlinux 0xb381e6ef bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0xb384808a phy_device_create -EXPORT_SYMBOL vmlinux 0xb391682b of_parse_phandle_with_args -EXPORT_SYMBOL vmlinux 0xb3acf259 simple_dentry_operations -EXPORT_SYMBOL vmlinux 0xb3c64c74 elv_add_request -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3eb3c4d get_mm_exe_file -EXPORT_SYMBOL vmlinux 0xb3ec7be5 md_integrity_register -EXPORT_SYMBOL vmlinux 0xb3ee999f gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb40ca514 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb42ffb1d blk_init_queue_node -EXPORT_SYMBOL vmlinux 0xb44c5807 bio_add_page -EXPORT_SYMBOL vmlinux 0xb44edd0f tcp_close -EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem -EXPORT_SYMBOL vmlinux 0xb45f3cea gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0xb496afd4 abx500_startup_irq_enabled -EXPORT_SYMBOL vmlinux 0xb4a48fd1 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0xb4d22626 neigh_seq_next -EXPORT_SYMBOL vmlinux 0xb4db3926 of_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0xb4ef4b7b param_ops_invbool -EXPORT_SYMBOL vmlinux 0xb50330a4 unregister_qdisc -EXPORT_SYMBOL vmlinux 0xb53a4336 kmap_pte -EXPORT_SYMBOL vmlinux 0xb5544ee2 cont_write_begin -EXPORT_SYMBOL vmlinux 0xb56a735f try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xb56fca9d input_register_handle -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb5775b06 dev_get_nest_level -EXPORT_SYMBOL vmlinux 0xb57bec97 simple_statfs -EXPORT_SYMBOL vmlinux 0xb57e6694 neigh_table_init -EXPORT_SYMBOL vmlinux 0xb5976e7b __skb_gso_segment -EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5b1fb76 blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0xb5b27b31 clocksource_unregister -EXPORT_SYMBOL vmlinux 0xb5c46ac9 agp_generic_remove_memory -EXPORT_SYMBOL vmlinux 0xb5c4f6f3 scsi_scan_host -EXPORT_SYMBOL vmlinux 0xb5d9454c printk_emit -EXPORT_SYMBOL vmlinux 0xb5feb99c free_task -EXPORT_SYMBOL vmlinux 0xb6048bce inode_add_bytes -EXPORT_SYMBOL vmlinux 0xb60bcbab tcp_seq_open -EXPORT_SYMBOL vmlinux 0xb6178cb2 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0xb629679a pci_dev_put -EXPORT_SYMBOL vmlinux 0xb634c92e tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0xb64a49ca neigh_parms_release -EXPORT_SYMBOL vmlinux 0xb677aa33 sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb686e3c2 inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif -EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb697ff8e inet_stream_connect -EXPORT_SYMBOL vmlinux 0xb69f62e2 flush_tlb_page -EXPORT_SYMBOL vmlinux 0xb6a31d4f xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit -EXPORT_SYMBOL vmlinux 0xb6d8605d write_one_page -EXPORT_SYMBOL vmlinux 0xb6e08fa6 cdrom_open -EXPORT_SYMBOL vmlinux 0xb7005161 vfs_statfs -EXPORT_SYMBOL vmlinux 0xb71e828f dev_deactivate -EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xb74f4db4 truncate_pagecache -EXPORT_SYMBOL vmlinux 0xb753bcc8 __ashrdi3 -EXPORT_SYMBOL vmlinux 0xb76f4138 tcf_hash_check -EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb784123c udp_set_csum -EXPORT_SYMBOL vmlinux 0xb79119e1 dentry_unhash -EXPORT_SYMBOL vmlinux 0xb79a4e1a store_fp_state -EXPORT_SYMBOL vmlinux 0xb79ec15d mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0xb7a99781 __irq_regs -EXPORT_SYMBOL vmlinux 0xb7af3bdb d_tmpfile -EXPORT_SYMBOL vmlinux 0xb7b5442a pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0xb7bb66de nf_register_sockopt -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7d6691b __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0xb7df96fd inet_stream_ops -EXPORT_SYMBOL vmlinux 0xb7e38ad1 build_skb -EXPORT_SYMBOL vmlinux 0xb81960ca snprintf -EXPORT_SYMBOL vmlinux 0xb8269c8e gen_pool_destroy -EXPORT_SYMBOL vmlinux 0xb8339dc0 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0xb85b05a1 bioset_create_nobvec -EXPORT_SYMBOL vmlinux 0xb86b6d42 ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 -EXPORT_SYMBOL vmlinux 0xb89c9b04 inet6_del_offload -EXPORT_SYMBOL vmlinux 0xb8a85054 get_fs_type -EXPORT_SYMBOL vmlinux 0xb8ba4a4d gen_new_estimator -EXPORT_SYMBOL vmlinux 0xb8c402ab of_find_node_by_phandle -EXPORT_SYMBOL vmlinux 0xb8cd44e0 __splice_from_pipe -EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0xb8ed5dca dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0xb8f9fe7f xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0xb9138d8b bio_split -EXPORT_SYMBOL vmlinux 0xb92a903d vfs_writev -EXPORT_SYMBOL vmlinux 0xb92c4b2d csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0xb97e598b kmalloc_caches -EXPORT_SYMBOL vmlinux 0xb99dcf0e pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0xb9be1b6a ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0xb9d82423 get_task_exe_file -EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xb9f92df1 md_error -EXPORT_SYMBOL vmlinux 0xba389a5a dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0xba3cc159 vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0xba41dcd2 scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba4e6f14 neigh_table_clear -EXPORT_SYMBOL vmlinux 0xba5be180 mmc_put_card -EXPORT_SYMBOL vmlinux 0xba604a77 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0xba6a226a put_page -EXPORT_SYMBOL vmlinux 0xba74897f may_umount_tree -EXPORT_SYMBOL vmlinux 0xba9da891 simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0xbaa9973b proc_create_mount_point -EXPORT_SYMBOL vmlinux 0xbac3cbf2 ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb144852 inode_sub_rsv_space -EXPORT_SYMBOL vmlinux 0xbb16c372 pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb528cd6 sk_wait_data -EXPORT_SYMBOL vmlinux 0xbb52b4e0 __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xbb6d8955 input_reset_device -EXPORT_SYMBOL vmlinux 0xbb81723f inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xbb905298 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0xbb93e52e tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font -EXPORT_SYMBOL vmlinux 0xbba6a120 of_mm_gpiochip_add -EXPORT_SYMBOL vmlinux 0xbbb6c274 of_find_node_opts_by_path -EXPORT_SYMBOL vmlinux 0xbbf79835 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0xbc0d8d15 tcf_unregister_action -EXPORT_SYMBOL vmlinux 0xbc17d15e blk_queue_end_tag -EXPORT_SYMBOL vmlinux 0xbc26bbb6 memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0xbc316de4 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0xbc394b30 padata_do_serial -EXPORT_SYMBOL vmlinux 0xbc81b55a of_get_cpu_node -EXPORT_SYMBOL vmlinux 0xbc88e6db dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0xbc8a0423 scsi_device_put -EXPORT_SYMBOL vmlinux 0xbc94e6ca nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0xbcb9a734 udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user -EXPORT_SYMBOL vmlinux 0xbce0d0c7 scsi_scan_target -EXPORT_SYMBOL vmlinux 0xbceb97f5 dev_mc_sync -EXPORT_SYMBOL vmlinux 0xbcf150f9 xor_altivec_5 -EXPORT_SYMBOL vmlinux 0xbcf49a77 blk_integrity_merge_rq -EXPORT_SYMBOL vmlinux 0xbd08be7e bdev_read_only -EXPORT_SYMBOL vmlinux 0xbd418691 generic_key_instantiate -EXPORT_SYMBOL vmlinux 0xbd48a5c1 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0xbd5cb7cb dev_mc_init -EXPORT_SYMBOL vmlinux 0xbd5e6952 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0xbd803510 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0xbd8d541d flush_hash_pages -EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug -EXPORT_SYMBOL vmlinux 0xbd9e5d49 __lshrdi3 -EXPORT_SYMBOL vmlinux 0xbda7cf1b netpoll_print_options -EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp -EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto -EXPORT_SYMBOL vmlinux 0xbe2c5c99 md_done_sync -EXPORT_SYMBOL vmlinux 0xbe575eec alloc_buffer_head -EXPORT_SYMBOL vmlinux 0xbe5b7724 blk_init_tags -EXPORT_SYMBOL vmlinux 0xbe63ee40 request_resource -EXPORT_SYMBOL vmlinux 0xbe8212ad abort_creds -EXPORT_SYMBOL vmlinux 0xbe8ae2f8 netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0xbe8d6ac0 __mmc_claim_host -EXPORT_SYMBOL vmlinux 0xbe9b5ead dma_async_device_register -EXPORT_SYMBOL vmlinux 0xbea3f47f tcp_poll -EXPORT_SYMBOL vmlinux 0xbeb43a45 blk_start_queue_async -EXPORT_SYMBOL vmlinux 0xbeda63e0 i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0xbedc2c32 blk_queue_init_tags -EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbf2856a7 __blk_run_queue -EXPORT_SYMBOL vmlinux 0xbf48a839 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0xbf64c6eb start_tty -EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0xbf81f27a phy_write_mmd_indirect -EXPORT_SYMBOL vmlinux 0xbf8831ab pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk -EXPORT_SYMBOL vmlinux 0xbf925c42 idr_init -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfa37957 locks_copy_lock -EXPORT_SYMBOL vmlinux 0xbfa61389 textsearch_unregister -EXPORT_SYMBOL vmlinux 0xbfab0a02 phy_device_register -EXPORT_SYMBOL vmlinux 0xbfb8b0b7 _raw_read_lock_irqsave -EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep -EXPORT_SYMBOL vmlinux 0xbfda859c inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xc00fbb24 scsi_dma_map -EXPORT_SYMBOL vmlinux 0xc0236209 security_path_chown -EXPORT_SYMBOL vmlinux 0xc02da927 pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0xc043ab56 inode_change_ok -EXPORT_SYMBOL vmlinux 0xc05119fe sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0xc0619d6a sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0xc068440e __kfifo_alloc -EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc07ac9ac mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0xc07caade pci_unregister_driver -EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write -EXPORT_SYMBOL vmlinux 0xc0966626 pcim_enable_device -EXPORT_SYMBOL vmlinux 0xc099994c twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit -EXPORT_SYMBOL vmlinux 0xc0b52788 devm_kvasprintf -EXPORT_SYMBOL vmlinux 0xc0bd361d __getblk_gfp -EXPORT_SYMBOL vmlinux 0xc0d00224 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0xc0d84ced cuda_poll -EXPORT_SYMBOL vmlinux 0xc0e2af86 swiotlb_alloc_coherent -EXPORT_SYMBOL vmlinux 0xc0edb454 padata_remove_cpu -EXPORT_SYMBOL vmlinux 0xc1029d58 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0xc102c344 of_platform_bus_probe -EXPORT_SYMBOL vmlinux 0xc106ced2 md_update_sb -EXPORT_SYMBOL vmlinux 0xc11a9248 dquot_destroy -EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten -EXPORT_SYMBOL vmlinux 0xc136be30 inode_claim_rsv_space -EXPORT_SYMBOL vmlinux 0xc13a10dc flex_array_alloc -EXPORT_SYMBOL vmlinux 0xc14b0364 nf_afinfo -EXPORT_SYMBOL vmlinux 0xc1782a4d kmem_cache_free -EXPORT_SYMBOL vmlinux 0xc1844564 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0xc194b3b2 elv_rb_add -EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1dd4a7f adb_request -EXPORT_SYMBOL vmlinux 0xc1e34ebc pci_release_region -EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla -EXPORT_SYMBOL vmlinux 0xc1f3d8e6 skb_unlink -EXPORT_SYMBOL vmlinux 0xc22a95fa eth_mac_addr -EXPORT_SYMBOL vmlinux 0xc2315c25 __starget_for_each_device -EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup -EXPORT_SYMBOL vmlinux 0xc251b24c vfs_readv -EXPORT_SYMBOL vmlinux 0xc268bd3e scsi_verify_blk_ioctl -EXPORT_SYMBOL vmlinux 0xc27de913 scsi_host_alloc -EXPORT_SYMBOL vmlinux 0xc2835121 param_get_bool -EXPORT_SYMBOL vmlinux 0xc29e4e9d crypto_sha256_update -EXPORT_SYMBOL vmlinux 0xc29f0cea pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xc2c0b7c8 gen_pool_alloc -EXPORT_SYMBOL vmlinux 0xc2d711e1 krealloc -EXPORT_SYMBOL vmlinux 0xc2dc506b vfs_setpos -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc3303ee6 submit_bio_wait -EXPORT_SYMBOL vmlinux 0xc34155e9 sg_miter_skip -EXPORT_SYMBOL vmlinux 0xc354e89c dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0xc368849f nvram_sync -EXPORT_SYMBOL vmlinux 0xc3747ae2 sock_setsockopt -EXPORT_SYMBOL vmlinux 0xc3a0f948 vga_get -EXPORT_SYMBOL vmlinux 0xc3b88a93 copy_page_to_iter -EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0xc3e46540 elv_rq_merge_ok -EXPORT_SYMBOL vmlinux 0xc3fc3d7b input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0xc40b23cb jbd2_journal_start -EXPORT_SYMBOL vmlinux 0xc40bb197 nobh_writepage -EXPORT_SYMBOL vmlinux 0xc41f0516 node_states -EXPORT_SYMBOL vmlinux 0xc448c702 i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0xc4516955 bdi_register_dev -EXPORT_SYMBOL vmlinux 0xc45755de find_next_zero_bit_le -EXPORT_SYMBOL vmlinux 0xc45e692f inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0xc4612e81 dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0xc4645d34 get_gendisk -EXPORT_SYMBOL vmlinux 0xc465854b skb_append_datato_frags -EXPORT_SYMBOL vmlinux 0xc47cdf9c _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0xc48cb5cb skb_push -EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup -EXPORT_SYMBOL vmlinux 0xc4b4a60a send_sig_info -EXPORT_SYMBOL vmlinux 0xc4edc9e9 posix_lock_file -EXPORT_SYMBOL vmlinux 0xc5042b5f cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0xc510f40a dev_close -EXPORT_SYMBOL vmlinux 0xc516b970 read_code -EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 -EXPORT_SYMBOL vmlinux 0xc55bea42 tcp_mtup_init -EXPORT_SYMBOL vmlinux 0xc55de23c percpu_counter_set -EXPORT_SYMBOL vmlinux 0xc5707f3b init_special_inode -EXPORT_SYMBOL vmlinux 0xc5718627 sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0xc57e071b dev_notice -EXPORT_SYMBOL vmlinux 0xc58397b5 sget_userns -EXPORT_SYMBOL vmlinux 0xc59776f6 netlink_broadcast -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc5a578d1 macio_enable_devres -EXPORT_SYMBOL vmlinux 0xc5adbacc blk_queue_invalidate_tags -EXPORT_SYMBOL vmlinux 0xc5b9d9f3 sock_alloc_file -EXPORT_SYMBOL vmlinux 0xc5bdfa5c unregister_netdev -EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot -EXPORT_SYMBOL vmlinux 0xc5f4a665 netdev_notice -EXPORT_SYMBOL vmlinux 0xc5f80f77 mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xc61e9769 kobject_put -EXPORT_SYMBOL vmlinux 0xc6280e1d xfrm_prepare_input -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc63bc1c6 get_acl -EXPORT_SYMBOL vmlinux 0xc6499100 __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0xc65537d0 memremap -EXPORT_SYMBOL vmlinux 0xc658dd95 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes -EXPORT_SYMBOL vmlinux 0xc65da7f2 __dquot_free_space -EXPORT_SYMBOL vmlinux 0xc6752d95 skb_set_owner_w -EXPORT_SYMBOL vmlinux 0xc678f40c inode_dio_wait -EXPORT_SYMBOL vmlinux 0xc6906086 iov_iter_kvec -EXPORT_SYMBOL vmlinux 0xc690af7d dev_trans_start -EXPORT_SYMBOL vmlinux 0xc6a35765 xfrm6_prepare_output -EXPORT_SYMBOL vmlinux 0xc6b22c71 __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0xc6b7a3f9 cfb_copyarea -EXPORT_SYMBOL vmlinux 0xc6bf97e4 follow_up -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6cff8fc i2c_master_send -EXPORT_SYMBOL vmlinux 0xc6d92209 pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0xc6ebcf4b __bforget -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass -EXPORT_SYMBOL vmlinux 0xc76b9025 unlink_framebuffer -EXPORT_SYMBOL vmlinux 0xc772a7f1 fasync_helper -EXPORT_SYMBOL vmlinux 0xc7754c20 blk_end_request_all -EXPORT_SYMBOL vmlinux 0xc77ecb1a note_scsi_host -EXPORT_SYMBOL vmlinux 0xc7804a17 cdev_del -EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc781f71d scsi_device_set_state -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc7898275 flex_array_shrink -EXPORT_SYMBOL vmlinux 0xc78dac97 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0xc795e23e cpu_core_map -EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7bb95b2 __generic_block_fiemap -EXPORT_SYMBOL vmlinux 0xc7c73325 serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0xc7d44e40 of_match_node -EXPORT_SYMBOL vmlinux 0xc7db3f4c input_set_capability -EXPORT_SYMBOL vmlinux 0xc7eadbb2 fd_install -EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn -EXPORT_SYMBOL vmlinux 0xc7ffd47e jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0xc805bbf8 ata_link_printk -EXPORT_SYMBOL vmlinux 0xc807eb6c tty_write_room -EXPORT_SYMBOL vmlinux 0xc818dc7b led_update_brightness -EXPORT_SYMBOL vmlinux 0xc81afc3a lwtunnel_encap_del_ops -EXPORT_SYMBOL vmlinux 0xc823d5c4 nvm_generic_to_addr_mode -EXPORT_SYMBOL vmlinux 0xc8276a79 nf_hooks_needed -EXPORT_SYMBOL vmlinux 0xc82edfd6 sk_alloc -EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape -EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc8571bcb idr_for_each -EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc875782b lru_cache_add_file -EXPORT_SYMBOL vmlinux 0xc87c5987 inode_init_owner -EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc8926f64 __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xc8ca3552 pci_iomap -EXPORT_SYMBOL vmlinux 0xc8caaeb8 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0xc8cd70da pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xc8e4f061 phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0xc8ea9f4a n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0xc8f963e3 kill_block_super -EXPORT_SYMBOL vmlinux 0xc8fd4380 __scsi_print_sense -EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen -EXPORT_SYMBOL vmlinux 0xc93fbc54 wait_for_completion_io -EXPORT_SYMBOL vmlinux 0xc958b5a7 __breadahead -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc9705b82 input_close_device -EXPORT_SYMBOL vmlinux 0xc9734a32 phy_get_eee_err -EXPORT_SYMBOL vmlinux 0xc9836c22 tcp_rcv_established -EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9b52654 elevator_change -EXPORT_SYMBOL vmlinux 0xc9b8c308 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0xc9d1f1c5 macio_release_resource -EXPORT_SYMBOL vmlinux 0xc9e4920c decrementer_clockevent -EXPORT_SYMBOL vmlinux 0xc9e6db50 iov_iter_npages -EXPORT_SYMBOL vmlinux 0xc9ef1651 __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0xc9f81041 flush_tlb_range -EXPORT_SYMBOL vmlinux 0xc9f854c1 ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0xc9ff3af9 skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy -EXPORT_SYMBOL vmlinux 0xca17ce4b blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0xca2b1cd6 ida_pre_get -EXPORT_SYMBOL vmlinux 0xca2f7541 of_get_child_by_name -EXPORT_SYMBOL vmlinux 0xca3278a9 neigh_seq_start -EXPORT_SYMBOL vmlinux 0xca3b28c6 store_vr_state -EXPORT_SYMBOL vmlinux 0xca41eaa3 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0xca494b47 contig_page_data -EXPORT_SYMBOL vmlinux 0xca4b38bd put_disk -EXPORT_SYMBOL vmlinux 0xca570ccd submit_bio -EXPORT_SYMBOL vmlinux 0xca6806ad ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0xca69f8de mark_info_dirty -EXPORT_SYMBOL vmlinux 0xca77ea8f invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0xca825895 pmu_suspend -EXPORT_SYMBOL vmlinux 0xca8de2c5 blk_integrity_compare -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xcab0f14c __devcgroup_inode_permission -EXPORT_SYMBOL vmlinux 0xcacd272d atomic64_sub_return -EXPORT_SYMBOL vmlinux 0xcace6297 idr_is_empty -EXPORT_SYMBOL vmlinux 0xcacea129 mdiobus_free -EXPORT_SYMBOL vmlinux 0xcad08e48 mmu_hash_lock -EXPORT_SYMBOL vmlinux 0xcaf2a0d7 iov_iter_copy_from_user_atomic -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcaf4730c get_phy_device -EXPORT_SYMBOL vmlinux 0xcaffed76 blk_put_request -EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb24955d generic_shutdown_super -EXPORT_SYMBOL vmlinux 0xcb2f05aa starget_for_each_device -EXPORT_SYMBOL vmlinux 0xcb31ff54 input_unregister_handler -EXPORT_SYMBOL vmlinux 0xcb5c413d security_path_mkdir -EXPORT_SYMBOL vmlinux 0xcb91a792 netdev_notify_peers -EXPORT_SYMBOL vmlinux 0xcb9815f7 fb_blank -EXPORT_SYMBOL vmlinux 0xcbb4ba76 blk_put_queue -EXPORT_SYMBOL vmlinux 0xcbb5ed65 crypto_sha1_update -EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0xcbeac4be hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0xcbfee61c blk_mq_delay_queue -EXPORT_SYMBOL vmlinux 0xcc17504d _raw_read_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xcc240e0c dev_uc_del -EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc567428 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0xcc6eade7 xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xcc6f43ae mmc_request_done -EXPORT_SYMBOL vmlinux 0xcc8b20d0 mb_cache_entry_release -EXPORT_SYMBOL vmlinux 0xcc9db905 pci_find_hose_for_OF_device -EXPORT_SYMBOL vmlinux 0xcca84b49 register_console -EXPORT_SYMBOL vmlinux 0xccb9b64e tcf_hash_search -EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor -EXPORT_SYMBOL vmlinux 0xccc2edb0 filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0xcce72a5d eth_gro_complete -EXPORT_SYMBOL vmlinux 0xccfef64f skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0xcd0529c7 _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0xcd0f4d2c param_ops_short -EXPORT_SYMBOL vmlinux 0xcd13dc7c ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0xcd25f8ff jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd32847f rtas -EXPORT_SYMBOL vmlinux 0xcd40ec7e agp_copy_info -EXPORT_SYMBOL vmlinux 0xcd41cf83 __neigh_event_send -EXPORT_SYMBOL vmlinux 0xcd45748b agp_generic_enable -EXPORT_SYMBOL vmlinux 0xcd5778af bdi_register_owner -EXPORT_SYMBOL vmlinux 0xcd5877a6 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0xcd5dbc6c gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0xcd6db8a9 seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0xcd7009aa udp_seq_open -EXPORT_SYMBOL vmlinux 0xcd76bc6e generic_file_splice_read -EXPORT_SYMBOL vmlinux 0xcd7ede2a seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xcd86c87f __cond_resched_lock -EXPORT_SYMBOL vmlinux 0xcd8744fa param_get_ulong -EXPORT_SYMBOL vmlinux 0xcdc00bbf agp_generic_alloc_by_type -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcde15da4 __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0xcdf0c34e blk_mq_start_request -EXPORT_SYMBOL vmlinux 0xce0b2f3a check_disk_change -EXPORT_SYMBOL vmlinux 0xce1e9514 mmc_read_bkops_status -EXPORT_SYMBOL vmlinux 0xce209931 lwtunnel_cmp_encap -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce409cda pmac_set_early_video_resume -EXPORT_SYMBOL vmlinux 0xce43758c phy_resume -EXPORT_SYMBOL vmlinux 0xce592dbc pci_add_new_bus -EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce670a7c tcp_release_cb -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xcef22c37 unregister_filesystem -EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 -EXPORT_SYMBOL vmlinux 0xcefa702e scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcefda5d7 sock_no_poll -EXPORT_SYMBOL vmlinux 0xcf0e809c devm_ioport_map -EXPORT_SYMBOL vmlinux 0xcf5920de bio_put -EXPORT_SYMBOL vmlinux 0xcf81a513 mmc_power_save_host -EXPORT_SYMBOL vmlinux 0xcfb2de8e pci_pme_capable -EXPORT_SYMBOL vmlinux 0xcfb3b2bd dm_kobject_release -EXPORT_SYMBOL vmlinux 0xcfc05db4 security_path_symlink -EXPORT_SYMBOL vmlinux 0xcfcf69c5 __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0xcff6cf19 phy_find_first -EXPORT_SYMBOL vmlinux 0xcff81f0c __d_drop -EXPORT_SYMBOL vmlinux 0xd02f7d99 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0xd03ab3e0 serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond -EXPORT_SYMBOL vmlinux 0xd078199e generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0xd0857409 max8998_update_reg -EXPORT_SYMBOL vmlinux 0xd085cd37 sockfd_lookup -EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc -EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init -EXPORT_SYMBOL vmlinux 0xd0a45fa5 pmu_enable_irled -EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces -EXPORT_SYMBOL vmlinux 0xd0c16364 pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0xd0c2c4de dev_addr_add -EXPORT_SYMBOL vmlinux 0xd0c9659d sk_stream_write_space -EXPORT_SYMBOL vmlinux 0xd0d5aba8 scsi_register_interface -EXPORT_SYMBOL vmlinux 0xd0de901a vmalloc_to_page -EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format -EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first -EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key -EXPORT_SYMBOL vmlinux 0xd10607be md_set_array_sectors -EXPORT_SYMBOL vmlinux 0xd1262886 rtas_data_buf -EXPORT_SYMBOL vmlinux 0xd13fcc8a pci_iounmap -EXPORT_SYMBOL vmlinux 0xd1599283 uart_update_timeout -EXPORT_SYMBOL vmlinux 0xd15d3b8f blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xd174e70b insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0xd17c5511 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd196af4b mmc_alloc_host -EXPORT_SYMBOL vmlinux 0xd196c9be kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xd1a5b8f7 key_type_keyring -EXPORT_SYMBOL vmlinux 0xd1adf17a set_binfmt -EXPORT_SYMBOL vmlinux 0xd1b3f313 mmc_can_trim -EXPORT_SYMBOL vmlinux 0xd1b5b00a writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0xd1bbd7f5 dquot_alloc -EXPORT_SYMBOL vmlinux 0xd1c84dfb hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0xd1c9280f vme_irq_free -EXPORT_SYMBOL vmlinux 0xd1ce6332 mount_single -EXPORT_SYMBOL vmlinux 0xd1d5325b ata_print_version -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1de0a8b inode_reclaim_rsv_space -EXPORT_SYMBOL vmlinux 0xd1e3f3c4 unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0xd1fe2788 pci_set_dma_max_seg_size -EXPORT_SYMBOL vmlinux 0xd21ac06a follow_pfn -EXPORT_SYMBOL vmlinux 0xd2481164 pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0xd2529e13 pci_enable_msi_range -EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd26476e3 rwsem_down_write_failed -EXPORT_SYMBOL vmlinux 0xd26551bf free_cgroup_ns -EXPORT_SYMBOL vmlinux 0xd2785df3 set_cached_acl -EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd28da2cb do_splice_to -EXPORT_SYMBOL vmlinux 0xd28e9803 uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0xd294fb23 proc_set_user -EXPORT_SYMBOL vmlinux 0xd29c1657 __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0xd2a941d4 sg_init_table -EXPORT_SYMBOL vmlinux 0xd2af138b reservation_ww_class -EXPORT_SYMBOL vmlinux 0xd2b54e03 xfrm_state_insert -EXPORT_SYMBOL vmlinux 0xd2b8756a xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2dd0bff xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0xd2f53fd3 release_sock -EXPORT_SYMBOL vmlinux 0xd2fc19bd proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0xd3187da4 pcibios_align_resource -EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd33b2c37 ppc_md -EXPORT_SYMBOL vmlinux 0xd33fd72b pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0xd3590fc5 tcp_disconnect -EXPORT_SYMBOL vmlinux 0xd35c1080 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0xd375ce39 xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0xd3a4d3fc scsi_remove_host -EXPORT_SYMBOL vmlinux 0xd3a774b6 wait_iff_congested -EXPORT_SYMBOL vmlinux 0xd3ad595e audit_log_task_info -EXPORT_SYMBOL vmlinux 0xd3b1086f dentry_needs_remove_privs -EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xd3e6f60d cpu_possible_mask -EXPORT_SYMBOL vmlinux 0xd409383c pmu_request -EXPORT_SYMBOL vmlinux 0xd40c1ffa netdev_printk -EXPORT_SYMBOL vmlinux 0xd4121009 netif_rx -EXPORT_SYMBOL vmlinux 0xd418e1c0 adjust_resource -EXPORT_SYMBOL vmlinux 0xd422affd sock_i_ino -EXPORT_SYMBOL vmlinux 0xd43a5be0 elv_rb_former_request -EXPORT_SYMBOL vmlinux 0xd43ab3b4 tty_hung_up_p -EXPORT_SYMBOL vmlinux 0xd443896f dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0xd4464e8b agp_create_memory -EXPORT_SYMBOL vmlinux 0xd44b7e21 to_tm -EXPORT_SYMBOL vmlinux 0xd495e40e __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0xd4c1a9ac blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xd4cd39d2 __sock_create -EXPORT_SYMBOL vmlinux 0xd4d32e76 register_shrinker -EXPORT_SYMBOL vmlinux 0xd4e4c026 inet_put_port -EXPORT_SYMBOL vmlinux 0xd4edb546 dev_get_by_name -EXPORT_SYMBOL vmlinux 0xd4f3e773 d_instantiate_unique -EXPORT_SYMBOL vmlinux 0xd4f3f795 of_iomap -EXPORT_SYMBOL vmlinux 0xd4fac22f d_alloc_name -EXPORT_SYMBOL vmlinux 0xd51864d3 twl6040_reg_read -EXPORT_SYMBOL vmlinux 0xd52697dd __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0xd5297a03 seq_release_private -EXPORT_SYMBOL vmlinux 0xd5346c3c vm_insert_mixed -EXPORT_SYMBOL vmlinux 0xd539ff02 dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0xd5678633 napi_complete_done -EXPORT_SYMBOL vmlinux 0xd580a774 skb_queue_tail -EXPORT_SYMBOL vmlinux 0xd58c7f88 ll_rw_block -EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames -EXPORT_SYMBOL vmlinux 0xd59ca041 pci_enable_msix -EXPORT_SYMBOL vmlinux 0xd59d482e skb_copy_expand -EXPORT_SYMBOL vmlinux 0xd5bf2afc switch_mmu_context -EXPORT_SYMBOL vmlinux 0xd5d15927 fb_class -EXPORT_SYMBOL vmlinux 0xd5d8eb6e xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0xd5e6f492 tcp_make_synack -EXPORT_SYMBOL vmlinux 0xd5e8444a __div64_32 -EXPORT_SYMBOL vmlinux 0xd5e9c138 generic_update_time -EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0xd5fbfdd4 elv_rb_find -EXPORT_SYMBOL vmlinux 0xd605f20f udp_ioctl -EXPORT_SYMBOL vmlinux 0xd606503d register_sysctl -EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0xd627480b strncat -EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout -EXPORT_SYMBOL vmlinux 0xd6303e98 macio_request_resource -EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode -EXPORT_SYMBOL vmlinux 0xd64fe59a ip6_expire_frag_queue -EXPORT_SYMBOL vmlinux 0xd655495b tcf_destroy_chain -EXPORT_SYMBOL vmlinux 0xd675f7ea param_set_copystring -EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd69b295b block_write_full_page -EXPORT_SYMBOL vmlinux 0xd69b30e0 atomic64_add_unless -EXPORT_SYMBOL vmlinux 0xd69cec30 pci_dev_driver -EXPORT_SYMBOL vmlinux 0xd6ab82e8 neigh_connected_output -EXPORT_SYMBOL vmlinux 0xd6b3f633 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0xd6cb7a25 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0xd6d056d1 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0xd6d63e9d lg_local_lock_cpu -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd71ec5ba dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function -EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write -EXPORT_SYMBOL vmlinux 0xd7b6b5a2 trace_print_array_seq -EXPORT_SYMBOL vmlinux 0xd7ca8986 __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7ebfd74 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0xd8077d9f ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0xd81b3b06 dev_remove_offload -EXPORT_SYMBOL vmlinux 0xd8272bbf kernel_write -EXPORT_SYMBOL vmlinux 0xd845cf95 nla_put -EXPORT_SYMBOL vmlinux 0xd84c43a6 lockref_put_return -EXPORT_SYMBOL vmlinux 0xd84de9d7 do_splice_from -EXPORT_SYMBOL vmlinux 0xd8518d99 copy_page_from_iter -EXPORT_SYMBOL vmlinux 0xd87ab7e3 pci_map_rom -EXPORT_SYMBOL vmlinux 0xd88474eb fbcon_rotate_ud -EXPORT_SYMBOL vmlinux 0xd88df70e devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0xd88e19be write_dirty_buffer -EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8b60cfe proc_set_size -EXPORT_SYMBOL vmlinux 0xd8b9c656 pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region -EXPORT_SYMBOL vmlinux 0xd8e77ef1 devm_memremap -EXPORT_SYMBOL vmlinux 0xd8ed5a4a __tcf_hash_release -EXPORT_SYMBOL vmlinux 0xd92514ca agp_special_page -EXPORT_SYMBOL vmlinux 0xd92fe844 __ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0xd93c9aea inet_select_addr -EXPORT_SYMBOL vmlinux 0xd9416c31 blk_fetch_request -EXPORT_SYMBOL vmlinux 0xd9498b22 proc_dointvec -EXPORT_SYMBOL vmlinux 0xd94ce5ef generic_readlink -EXPORT_SYMBOL vmlinux 0xd959bdb2 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0xd966ddc2 __do_once_done -EXPORT_SYMBOL vmlinux 0xd96a21a2 fb_set_cmap -EXPORT_SYMBOL vmlinux 0xd96bdde6 devm_gpiod_get_optional -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd995348d of_gpio_simple_xlate -EXPORT_SYMBOL vmlinux 0xd9a17249 dump_emit -EXPORT_SYMBOL vmlinux 0xd9bac924 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen -EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler -EXPORT_SYMBOL vmlinux 0xd9e5ad87 follow_down -EXPORT_SYMBOL vmlinux 0xda08f104 page_put_link -EXPORT_SYMBOL vmlinux 0xda09e799 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0xda18a86f kobject_del -EXPORT_SYMBOL vmlinux 0xda1db642 d_find_alias -EXPORT_SYMBOL vmlinux 0xda2630b0 make_kprojid -EXPORT_SYMBOL vmlinux 0xda38d04d blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda4bf58c tty_devnum -EXPORT_SYMBOL vmlinux 0xda56b068 netlink_ns_capable -EXPORT_SYMBOL vmlinux 0xda5bad8d i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0xda7265ed qdisc_watchdog_schedule_ns -EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0xda8ba535 fsnotify_get_group -EXPORT_SYMBOL vmlinux 0xdaa57ec3 totalhigh_pages -EXPORT_SYMBOL vmlinux 0xdac12083 __frontswap_test -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdafc19e4 unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xdafcb0bc get_user_pages -EXPORT_SYMBOL vmlinux 0xdb01e0e0 security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0xdb039bf3 dquot_scan_active -EXPORT_SYMBOL vmlinux 0xdb060caa serio_unregister_port -EXPORT_SYMBOL vmlinux 0xdb43056a param_ops_uint -EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb776e87 giveup_fpu -EXPORT_SYMBOL vmlinux 0xdb7a2acd __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0xdbb98fef seq_release -EXPORT_SYMBOL vmlinux 0xdbc743eb pagecache_write_begin -EXPORT_SYMBOL vmlinux 0xdbe6e92b pci_set_dma_seg_boundary -EXPORT_SYMBOL vmlinux 0xdc014299 param_get_uint -EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0xdc13b39e posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc214961 fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0xdc26a8ac mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xdc272faf udplite_prot -EXPORT_SYMBOL vmlinux 0xdc29e383 sock_no_bind -EXPORT_SYMBOL vmlinux 0xdc2fac29 vm_iomap_memory -EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 -EXPORT_SYMBOL vmlinux 0xdc49df34 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc551ab1 tty_unregister_device -EXPORT_SYMBOL vmlinux 0xdc692004 tcp_splice_read -EXPORT_SYMBOL vmlinux 0xdc7f08d0 generic_file_read_iter -EXPORT_SYMBOL vmlinux 0xdc942659 pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0xdc9498dd down -EXPORT_SYMBOL vmlinux 0xdc98a0e0 sock_efree -EXPORT_SYMBOL vmlinux 0xdc9bb825 tty_name -EXPORT_SYMBOL vmlinux 0xdcaf093e account_page_dirtied -EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close -EXPORT_SYMBOL vmlinux 0xdcb04920 mb_cache_entry_alloc -EXPORT_SYMBOL vmlinux 0xdcb217f7 agp_generic_alloc_page -EXPORT_SYMBOL vmlinux 0xdcefb9a5 pmu_resume -EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat -EXPORT_SYMBOL vmlinux 0xdd261421 sk_reset_timer -EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr -EXPORT_SYMBOL vmlinux 0xdd5c5a07 release_pages -EXPORT_SYMBOL vmlinux 0xdd72b967 netlink_unicast -EXPORT_SYMBOL vmlinux 0xdd750007 of_get_ibm_chip_id -EXPORT_SYMBOL vmlinux 0xdd783ce8 tcp_connect -EXPORT_SYMBOL vmlinux 0xdd8fa288 flow_cache_lookup -EXPORT_SYMBOL vmlinux 0xdd9030af current_stack_pointer -EXPORT_SYMBOL vmlinux 0xdd98e304 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0xddc1b8ed lwtunnel_get_encap_size -EXPORT_SYMBOL vmlinux 0xddca045b skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0xdde7d47c mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0xde095cdd iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0xde100be0 param_get_byte -EXPORT_SYMBOL vmlinux 0xde13a2ea tcp_req_err -EXPORT_SYMBOL vmlinux 0xde41138e gen_replace_estimator -EXPORT_SYMBOL vmlinux 0xde48ba71 inet_del_offload -EXPORT_SYMBOL vmlinux 0xde48e9ca _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xde5271c0 truncate_setsize -EXPORT_SYMBOL vmlinux 0xde6b0365 tty_register_device -EXPORT_SYMBOL vmlinux 0xde6f6a33 filemap_map_pages -EXPORT_SYMBOL vmlinux 0xde710f1a __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xde7ea40f agp_alloc_page_array -EXPORT_SYMBOL vmlinux 0xde819d66 udp6_csum_init -EXPORT_SYMBOL vmlinux 0xde8867db pci_find_capability -EXPORT_SYMBOL vmlinux 0xde91448c load_vr_state -EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages -EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size -EXPORT_SYMBOL vmlinux 0xde9c6fb2 phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0xdea21230 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0xded15c89 mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0xded73764 security_inode_init_security -EXPORT_SYMBOL vmlinux 0xdf02bdf5 of_io_request_and_map -EXPORT_SYMBOL vmlinux 0xdf1354ea pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update -EXPORT_SYMBOL vmlinux 0xdf3ebc9f generic_file_llseek -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol -EXPORT_SYMBOL vmlinux 0xdf740aec unlock_rename -EXPORT_SYMBOL vmlinux 0xdf772561 shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0xdf8affea fget -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdfa1ac41 d_alloc_pseudo -EXPORT_SYMBOL vmlinux 0xdfe53602 twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0xdfea0249 mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0xdff3256f udp_del_offload -EXPORT_SYMBOL vmlinux 0xdff43ed4 __debugger -EXPORT_SYMBOL vmlinux 0xdff56e64 adb_poll -EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xdffb5c8e truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0xe00037a1 blk_recount_segments -EXPORT_SYMBOL vmlinux 0xe0056c52 end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0xe00eb137 igrab -EXPORT_SYMBOL vmlinux 0xe0141e4a __blkdev_reread_part -EXPORT_SYMBOL vmlinux 0xe02705cf loop_register_transfer -EXPORT_SYMBOL vmlinux 0xe03497f1 blk_queue_dma_pad -EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone -EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xe07de9eb mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0xe086b88b bio_chain -EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool -EXPORT_SYMBOL vmlinux 0xe094ef39 sg_next -EXPORT_SYMBOL vmlinux 0xe09b359b pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0xe0a0b395 of_mdio_find_bus -EXPORT_SYMBOL vmlinux 0xe0a76aa5 tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0xe0a7b9a4 vme_register_error_handler -EXPORT_SYMBOL vmlinux 0xe0adb4a9 pci_disable_msi -EXPORT_SYMBOL vmlinux 0xe0af3c94 __elv_add_request -EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0b34da0 nvm_erase_ppa -EXPORT_SYMBOL vmlinux 0xe0b89a97 xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0xe0ccdb5f pci_match_id -EXPORT_SYMBOL vmlinux 0xe105c46a input_register_device -EXPORT_SYMBOL vmlinux 0xe10f6616 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0xe135d879 neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0xe1374027 filemap_fdatawait -EXPORT_SYMBOL vmlinux 0xe153373b dm_put_device -EXPORT_SYMBOL vmlinux 0xe16aae9d tcp_enter_memory_pressure -EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xe18a6336 agp_backend_acquire -EXPORT_SYMBOL vmlinux 0xe1b1e811 skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0xe1bb8f28 input_unregister_handle -EXPORT_SYMBOL vmlinux 0xe1caef67 inet_add_offload -EXPORT_SYMBOL vmlinux 0xe1e107eb blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0xe1f6e765 tty_hangup -EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xe21e589c backlight_force_update -EXPORT_SYMBOL vmlinux 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe24b7dca consume_skb -EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 -EXPORT_SYMBOL vmlinux 0xe2612050 poll_initwait -EXPORT_SYMBOL vmlinux 0xe2617130 pcie_get_minimum_link -EXPORT_SYMBOL vmlinux 0xe268af08 blk_requeue_request -EXPORT_SYMBOL vmlinux 0xe27d71cf vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0xe2845cdf proc_douintvec -EXPORT_SYMBOL vmlinux 0xe2897208 pci_request_regions -EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t -EXPORT_SYMBOL vmlinux 0xe2a69d84 agp_generic_free_by_type -EXPORT_SYMBOL vmlinux 0xe2be5498 lg_global_unlock -EXPORT_SYMBOL vmlinux 0xe2c392e7 tty_unlock -EXPORT_SYMBOL vmlinux 0xe2c49ba4 nvm_submit_ppa -EXPORT_SYMBOL vmlinux 0xe2c72be2 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0xe2d24b2c sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user -EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup -EXPORT_SYMBOL vmlinux 0xe34c5595 kset_unregister -EXPORT_SYMBOL vmlinux 0xe37afa72 unload_nls -EXPORT_SYMBOL vmlinux 0xe384716d from_kprojid -EXPORT_SYMBOL vmlinux 0xe389892d ppp_input -EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0xe3d6c1f3 posix_unblock_lock -EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xe3d9c91a mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0xe3e73bc4 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0xe3e9b8c4 generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0xe4086de1 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0xe41577b5 __alloc_pages_nodemask -EXPORT_SYMBOL vmlinux 0xe41ae0a5 iget_locked -EXPORT_SYMBOL vmlinux 0xe460d597 of_translate_address -EXPORT_SYMBOL vmlinux 0xe4652e69 agp_generic_create_gatt_table -EXPORT_SYMBOL vmlinux 0xe48411ad nlmsg_notify -EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 -EXPORT_SYMBOL vmlinux 0xe4b870ee skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0xe4c17741 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0xe4d9ada3 d_obtain_alias -EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array -EXPORT_SYMBOL vmlinux 0xe4edc88a xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0xe4fd9332 del_random_ready_callback -EXPORT_SYMBOL vmlinux 0xe4fe8ca1 _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0xe512ddb0 pci_fixup_device -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe52a9d00 seq_read -EXPORT_SYMBOL vmlinux 0xe5537432 ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0xe55aa145 kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0xe570133a mmc_can_sanitize -EXPORT_SYMBOL vmlinux 0xe573c127 devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0xe576aea9 ioctl_by_bdev -EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton -EXPORT_SYMBOL vmlinux 0xe58649a5 xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set -EXPORT_SYMBOL vmlinux 0xe5ad6e46 xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xe5ade494 serio_bus -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5d5fe17 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xe5f89741 register_netdevice -EXPORT_SYMBOL vmlinux 0xe6331de9 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0xe642a59d nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0xe66f3ddb misc_deregister -EXPORT_SYMBOL vmlinux 0xe68046fe dev_change_carrier -EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size -EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe6a376a8 should_remove_suid -EXPORT_SYMBOL vmlinux 0xe6b1fdc2 inet_bind -EXPORT_SYMBOL vmlinux 0xe6c09d11 textsearch_destroy -EXPORT_SYMBOL vmlinux 0xe6dd236d clear_pages -EXPORT_SYMBOL vmlinux 0xe6dfb162 ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update -EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock -EXPORT_SYMBOL vmlinux 0xe7005f51 tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0xe71e615f dup_iter -EXPORT_SYMBOL vmlinux 0xe744d698 mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0xe757958c filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xe75fc754 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0xe77b5cd1 jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0xe782ffc8 vme_irq_generate -EXPORT_SYMBOL vmlinux 0xe78d39e1 fb_get_mode -EXPORT_SYMBOL vmlinux 0xe79c38d9 serio_unregister_driver -EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx -EXPORT_SYMBOL vmlinux 0xe7b6315e kblockd_schedule_delayed_work_on -EXPORT_SYMBOL vmlinux 0xe7bf317d fsl_lbc_addr -EXPORT_SYMBOL vmlinux 0xe7ce7439 _memcpy_fromio -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe8051a71 i2c_get_adapter -EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0xe82cc752 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0xe840a47e agp_generic_insert_memory -EXPORT_SYMBOL vmlinux 0xe849acaa pskb_expand_head -EXPORT_SYMBOL vmlinux 0xe84dd56b clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0xe859a810 vfs_iter_write -EXPORT_SYMBOL vmlinux 0xe8720a7c mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0xe87630d8 blk_complete_request -EXPORT_SYMBOL vmlinux 0xe89058e1 devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xe890ed98 param_set_ulong -EXPORT_SYMBOL vmlinux 0xe8a5f967 xfrm_input_resume -EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0xe8b30821 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xe8ca6826 dst_alloc -EXPORT_SYMBOL vmlinux 0xe8de44b6 blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0xe8e4f09a napi_gro_flush -EXPORT_SYMBOL vmlinux 0xe8f397d7 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0xe907a8f3 security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0xe912dfb3 of_device_unregister -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe922f2d0 of_find_property -EXPORT_SYMBOL vmlinux 0xe9289640 seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0xe9378d58 idr_get_next -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe95d564c invalidate_bdev -EXPORT_SYMBOL vmlinux 0xe9a45280 inet6_register_icmp_sender -EXPORT_SYMBOL vmlinux 0xe9a8165b __vfs_read -EXPORT_SYMBOL vmlinux 0xe9c92230 alloc_disk -EXPORT_SYMBOL vmlinux 0xe9daa19f kthread_bind -EXPORT_SYMBOL vmlinux 0xe9deeb51 inet6_release -EXPORT_SYMBOL vmlinux 0xe9e8a83d nvm_put_blk -EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len -EXPORT_SYMBOL vmlinux 0xea17683a tcf_hash_insert -EXPORT_SYMBOL vmlinux 0xea464c91 nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0xea4cd1d9 __find_get_block -EXPORT_SYMBOL vmlinux 0xea7987f1 key_update -EXPORT_SYMBOL vmlinux 0xea8c6ab2 neigh_event_ns -EXPORT_SYMBOL vmlinux 0xea968c96 ___ratelimit -EXPORT_SYMBOL vmlinux 0xeab3439e vm_mmap -EXPORT_SYMBOL vmlinux 0xeacb6f6e blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0xeacf6d83 jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0xeafe31a1 param_get_ullong -EXPORT_SYMBOL vmlinux 0xeb1c37d2 security_path_link -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb4b73b3 locks_copy_conflock -EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xeb575478 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0xeb78985f kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0xeb80ea82 single_open_size -EXPORT_SYMBOL vmlinux 0xeb8d93b5 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0xeb93c93a __napi_schedule -EXPORT_SYMBOL vmlinux 0xeba2a1f7 rtas_indicator_present -EXPORT_SYMBOL vmlinux 0xebc60a1e blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0xebc7a9e5 i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0xebcac679 agp_bridge -EXPORT_SYMBOL vmlinux 0xebd18deb sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0xebd8f6aa input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0xebd93ef8 eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0xebf6e769 blk_finish_request -EXPORT_SYMBOL vmlinux 0xec06e23c unregister_console -EXPORT_SYMBOL vmlinux 0xec11aeaf fb_set_suspend -EXPORT_SYMBOL vmlinux 0xec1aa6ef memzero_explicit -EXPORT_SYMBOL vmlinux 0xec5e0d16 tcp_sync_mss -EXPORT_SYMBOL vmlinux 0xec5f86c8 vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0xec768e8e vga_con -EXPORT_SYMBOL vmlinux 0xec7fca83 ip_route_me_harder -EXPORT_SYMBOL vmlinux 0xec94ae97 generic_setxattr -EXPORT_SYMBOL vmlinux 0xec9926a2 register_qdisc -EXPORT_SYMBOL vmlinux 0xeca5fa29 __inet_hash -EXPORT_SYMBOL vmlinux 0xeca64635 devm_memunmap -EXPORT_SYMBOL vmlinux 0xecb513b6 netif_napi_del -EXPORT_SYMBOL vmlinux 0xecbb926f xor_altivec_3 -EXPORT_SYMBOL vmlinux 0xecbcb8bb radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0xecce3bfc machine_id -EXPORT_SYMBOL vmlinux 0xecd982a2 __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecedf798 clocksource_change_rating -EXPORT_SYMBOL vmlinux 0xecf8a803 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0xed1af45b mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0xed260256 bdevname -EXPORT_SYMBOL vmlinux 0xed394019 release_firmware -EXPORT_SYMBOL vmlinux 0xed3945e0 tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0xed419016 netlink_net_capable -EXPORT_SYMBOL vmlinux 0xed433dcf mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0xed47cee0 inet_dgram_connect -EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xed59ff75 dquot_transfer -EXPORT_SYMBOL vmlinux 0xed866e02 rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic -EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xedb54d94 kernel_setsockopt -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedbd776b vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedc410d0 udplite_table -EXPORT_SYMBOL vmlinux 0xedcbe1f6 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0xede1e88b security_path_chmod -EXPORT_SYMBOL vmlinux 0xedf11da6 skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long -EXPORT_SYMBOL vmlinux 0xedf857e6 xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0xee000379 vme_lm_request -EXPORT_SYMBOL vmlinux 0xee128bad get_user_pages_locked -EXPORT_SYMBOL vmlinux 0xee160edd nf_log_unregister -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee3496c3 dma_pool_alloc -EXPORT_SYMBOL vmlinux 0xee43330d flush_dcache_page -EXPORT_SYMBOL vmlinux 0xee59412f adb_try_handler_change -EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee92419c pci_disable_link_state -EXPORT_SYMBOL vmlinux 0xee986d21 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeeb766ea simple_dir_operations -EXPORT_SYMBOL vmlinux 0xeebdac51 xfrm_register_km -EXPORT_SYMBOL vmlinux 0xeee4f666 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0xeee61add pci_bus_put -EXPORT_SYMBOL vmlinux 0xeef0abe1 netdev_alert -EXPORT_SYMBOL vmlinux 0xeef161aa groups_free -EXPORT_SYMBOL vmlinux 0xef153a6f bio_reset -EXPORT_SYMBOL vmlinux 0xef20d4b4 generic_setlease -EXPORT_SYMBOL vmlinux 0xef2549d0 install_exec_creds -EXPORT_SYMBOL vmlinux 0xef26138a dev_mc_del_global -EXPORT_SYMBOL vmlinux 0xef4c15f3 blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0xef514562 tty_unthrottle -EXPORT_SYMBOL vmlinux 0xef59671b nf_register_hooks -EXPORT_SYMBOL vmlinux 0xef67be28 reservation_object_add_shared_fence -EXPORT_SYMBOL vmlinux 0xef6c9d50 clear_nlink -EXPORT_SYMBOL vmlinux 0xef80491a vm_insert_page -EXPORT_SYMBOL vmlinux 0xefb82286 pci_dev_get -EXPORT_SYMBOL vmlinux 0xefbea4b6 thaw_bdev -EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0xefde1bbe flush_dcache_range -EXPORT_SYMBOL vmlinux 0xefeeb7f5 mutex_trylock -EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf01047b1 rt6_lookup -EXPORT_SYMBOL vmlinux 0xf042b2ef ilookup -EXPORT_SYMBOL vmlinux 0xf0519a32 agp_bind_memory -EXPORT_SYMBOL vmlinux 0xf055ad49 wait_for_key_construction -EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be -EXPORT_SYMBOL vmlinux 0xf089d2e3 xfrm_garbage_collect -EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag -EXPORT_SYMBOL vmlinux 0xf08eb2c2 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int -EXPORT_SYMBOL vmlinux 0xf0a7b104 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0xf0b0631f mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0xf0be2c2c __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0xf0c007a6 inc_nlink -EXPORT_SYMBOL vmlinux 0xf0cfcaa7 sock_kfree_s -EXPORT_SYMBOL vmlinux 0xf0ee8ddf xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort -EXPORT_SYMBOL vmlinux 0xf0f54904 blk_rq_set_block_pc -EXPORT_SYMBOL vmlinux 0xf100de73 input_allocate_device -EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info -EXPORT_SYMBOL vmlinux 0xf10c7e4d pci_clear_mwi -EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 -EXPORT_SYMBOL vmlinux 0xf11cd6ce down_interruptible -EXPORT_SYMBOL vmlinux 0xf120872a dql_completed -EXPORT_SYMBOL vmlinux 0xf1330ece kern_path -EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init -EXPORT_SYMBOL vmlinux 0xf17cc5bf simple_transaction_get -EXPORT_SYMBOL vmlinux 0xf1875f22 inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0xf187f34c of_graph_get_next_endpoint -EXPORT_SYMBOL vmlinux 0xf189900f __lock_buffer -EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps -EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf19e9355 cpu_online_mask -EXPORT_SYMBOL vmlinux 0xf1a3f054 __wait_on_buffer -EXPORT_SYMBOL vmlinux 0xf1ae5a14 md_reload_sb -EXPORT_SYMBOL vmlinux 0xf1b3e350 tcf_em_register -EXPORT_SYMBOL vmlinux 0xf1b9c0c7 file_ns_capable -EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1deabf2 div64_u64 -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq -EXPORT_SYMBOL vmlinux 0xf2124bb1 try_to_release_page -EXPORT_SYMBOL vmlinux 0xf21be61c scsi_cmd_blk_ioctl -EXPORT_SYMBOL vmlinux 0xf21c3c04 input_inject_event -EXPORT_SYMBOL vmlinux 0xf22881e8 lg_local_lock -EXPORT_SYMBOL vmlinux 0xf22e8858 dev_emerg -EXPORT_SYMBOL vmlinux 0xf2322613 udp_prot -EXPORT_SYMBOL vmlinux 0xf237eed7 param_ops_long -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf241ee4d agp_generic_destroy_pages -EXPORT_SYMBOL vmlinux 0xf2577c5d have_submounts -EXPORT_SYMBOL vmlinux 0xf27563cb irq_stat -EXPORT_SYMBOL vmlinux 0xf27bf674 vga_tryget -EXPORT_SYMBOL vmlinux 0xf295b9d0 vme_irq_handler -EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered -EXPORT_SYMBOL vmlinux 0xf2a6fdb0 noop_llseek -EXPORT_SYMBOL vmlinux 0xf2b2710e get_empty_filp -EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform -EXPORT_SYMBOL vmlinux 0xf31bb78a sock_recvmsg -EXPORT_SYMBOL vmlinux 0xf322a206 bit_waitqueue -EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf35456d8 mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0xf35d6490 genphy_read_status -EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf38bdd63 tcf_action_exec -EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf39de80d max8925_reg_read -EXPORT_SYMBOL vmlinux 0xf3a323b5 sync_inodes_sb -EXPORT_SYMBOL vmlinux 0xf3c7c466 lease_modify -EXPORT_SYMBOL vmlinux 0xf3e058ba __free_pages -EXPORT_SYMBOL vmlinux 0xf3e495ab skb_split -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3f115a1 elevator_init -EXPORT_SYMBOL vmlinux 0xf3ff53c0 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0xf40b2297 __crypto_memneq -EXPORT_SYMBOL vmlinux 0xf41e1f8f vme_bus_num -EXPORT_SYMBOL vmlinux 0xf43f20b6 netif_rx_ni -EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep -EXPORT_SYMBOL vmlinux 0xf4449388 timer_interrupt -EXPORT_SYMBOL vmlinux 0xf45d689e kmem_cache_create -EXPORT_SYMBOL vmlinux 0xf46bd241 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0xf4718d62 key_reject_and_link -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf4889b36 qdisc_list_del -EXPORT_SYMBOL vmlinux 0xf4924585 register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xf494c5e6 of_mdio_parse_addr -EXPORT_SYMBOL vmlinux 0xf4afd8ac alloc_fddidev -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4e6cd8d phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0xf4eef396 gen_pool_free -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf4f4484d pci_read_vpd -EXPORT_SYMBOL vmlinux 0xf5222143 _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0xf52321e0 atomic64_sub -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf54c51a2 dma_pool_free -EXPORT_SYMBOL vmlinux 0xf54fcafe flush_hash_entry -EXPORT_SYMBOL vmlinux 0xf572abe2 alloc_file -EXPORT_SYMBOL vmlinux 0xf5834dd0 scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0xf58b898e phy_drivers_register -EXPORT_SYMBOL vmlinux 0xf59bb5f9 vfs_fsync -EXPORT_SYMBOL vmlinux 0xf5a305fb i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0xf5a62ecc _memset_io -EXPORT_SYMBOL vmlinux 0xf5b2ad05 dquot_file_open -EXPORT_SYMBOL vmlinux 0xf5b5bd90 d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0xf5b85cdc blk_queue_softirq_done -EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xf5c32367 zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0xf5da50fb led_blink_set_oneshot -EXPORT_SYMBOL vmlinux 0xf5e1558d crash_shutdown_unregister -EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command -EXPORT_SYMBOL vmlinux 0xf5eda685 blk_integrity_merge_bio -EXPORT_SYMBOL vmlinux 0xf60a6c93 pci_assign_resource -EXPORT_SYMBOL vmlinux 0xf620d42f dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl -EXPORT_SYMBOL vmlinux 0xf664b436 netdev_master_upper_dev_link_private -EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton -EXPORT_SYMBOL vmlinux 0xf6789a40 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf69480f6 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0xf69a6983 kernel_param_unlock -EXPORT_SYMBOL vmlinux 0xf69b4272 proc_symlink -EXPORT_SYMBOL vmlinux 0xf6b9cfbb inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table -EXPORT_SYMBOL vmlinux 0xf6ddefa0 skb_tx_error -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6f421b8 mdiobus_write -EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf70384d7 __debugger_sstep -EXPORT_SYMBOL vmlinux 0xf703c14f buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0xf71521ba atomic64_add_return -EXPORT_SYMBOL vmlinux 0xf738461c tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0xf75828a6 of_parse_phandle -EXPORT_SYMBOL vmlinux 0xf7584a9c find_font -EXPORT_SYMBOL vmlinux 0xf774b65b nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0xf7845b08 of_dev_get -EXPORT_SYMBOL vmlinux 0xf789052e max8998_write_reg -EXPORT_SYMBOL vmlinux 0xf7a3301c dump_align -EXPORT_SYMBOL vmlinux 0xf7bd35f6 sock_update_memcg -EXPORT_SYMBOL vmlinux 0xf7d5a3c4 dev_set_mtu -EXPORT_SYMBOL vmlinux 0xf7d61253 fb_pan_display -EXPORT_SYMBOL vmlinux 0xf7f21645 prepare_creds -EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf8172d4a simple_link -EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area -EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf830d731 registered_fb -EXPORT_SYMBOL vmlinux 0xf83f4579 vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0xf860b367 generic_write_end -EXPORT_SYMBOL vmlinux 0xf86368c7 mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0xf8683691 inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0xf876d515 nvm_set_rqd_ppalist -EXPORT_SYMBOL vmlinux 0xf8778ed7 textsearch_prepare -EXPORT_SYMBOL vmlinux 0xf87f1727 vfs_getattr -EXPORT_SYMBOL vmlinux 0xf88532d3 pneigh_lookup -EXPORT_SYMBOL vmlinux 0xf8917dff hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0xf897e56b jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0xf8a2364e ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xf91866de nvm_register_target -EXPORT_SYMBOL vmlinux 0xf91ee3f8 path_is_under -EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run -EXPORT_SYMBOL vmlinux 0xf9412c9b dquot_free_inode -EXPORT_SYMBOL vmlinux 0xf956aaff kernel_accept -EXPORT_SYMBOL vmlinux 0xf9889867 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9b3c91b bio_map_kern -EXPORT_SYMBOL vmlinux 0xf9da94a4 sk_free -EXPORT_SYMBOL vmlinux 0xf9df5398 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0xf9e69190 msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf -EXPORT_SYMBOL vmlinux 0xf9f9f729 iommu_tbl_pool_init -EXPORT_SYMBOL vmlinux 0xfa182387 max8925_bulk_write -EXPORT_SYMBOL vmlinux 0xfa26ee89 dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0xfa49d178 netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0xfa4f80ec dmam_free_coherent -EXPORT_SYMBOL vmlinux 0xfa515238 fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0xfa575a3c generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa5ec70c remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0xfa826f94 sync_inode -EXPORT_SYMBOL vmlinux 0xfa8fd73f param_set_ullong -EXPORT_SYMBOL vmlinux 0xfaa331a9 scsicam_bios_param -EXPORT_SYMBOL vmlinux 0xfaaf9c9f kobject_init -EXPORT_SYMBOL vmlinux 0xfab0677b __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0xfab9c8c9 seq_write -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xface6c36 blk_mq_abort_requeue_list -EXPORT_SYMBOL vmlinux 0xfad8cb13 blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xfad8d7ee blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0xfadb5750 pmu_unlock -EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr -EXPORT_SYMBOL vmlinux 0xfafb2eb3 fsnotify_put_mark -EXPORT_SYMBOL vmlinux 0xfafc9b1a mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0xfb01a456 ppp_channel_index -EXPORT_SYMBOL vmlinux 0xfb0fa005 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0xfb1b4512 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0xfb1faf37 key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0xfb39d97a twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0xfb44795d mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0xfb6a7150 fsnotify_alloc_group -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb7e7518 dm_put_table_device -EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 -EXPORT_SYMBOL vmlinux 0xfb949e87 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0xfb9a9b30 tso_count_descs -EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock -EXPORT_SYMBOL vmlinux 0xfbb65e65 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0xfbb8a31a proc_remove -EXPORT_SYMBOL vmlinux 0xfbbd3cd8 of_find_all_nodes -EXPORT_SYMBOL vmlinux 0xfbc0163e kill_litter_super -EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbc860d2 mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0xfbe7c771 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0xfbf63bb9 irq_to_desc -EXPORT_SYMBOL vmlinux 0xfbfbb1a1 fb_find_mode -EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem -EXPORT_SYMBOL vmlinux 0xfc0c5ec7 dcache_readdir -EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap -EXPORT_SYMBOL vmlinux 0xfc3b160f mempool_create_node -EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0xfc7c3baa tty_free_termios -EXPORT_SYMBOL vmlinux 0xfc7e7912 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0xfc92ce9f __init_rwsem -EXPORT_SYMBOL vmlinux 0xfca53b5e netdev_features_change -EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0xfcce7357 security_dentry_init_security -EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcf84a93 atomic64_xor -EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0xfd0c5038 adb_unregister -EXPORT_SYMBOL vmlinux 0xfd1c204b eth_header_cache_update -EXPORT_SYMBOL vmlinux 0xfd32065d padata_stop -EXPORT_SYMBOL vmlinux 0xfd33b5fa cmdline_parts_find -EXPORT_SYMBOL vmlinux 0xfd509f00 skb_dequeue -EXPORT_SYMBOL vmlinux 0xfd5d3251 pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0xfd679465 phy_connect_direct -EXPORT_SYMBOL vmlinux 0xfd7379a5 netif_skb_features -EXPORT_SYMBOL vmlinux 0xfd7428fd block_commit_write -EXPORT_SYMBOL vmlinux 0xfd7aceeb pcim_pin_device -EXPORT_SYMBOL vmlinux 0xfd879a6f fb_validate_mode -EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xfd9f3a17 led_set_brightness -EXPORT_SYMBOL vmlinux 0xfd9f75d5 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0xfdb6cedc _raw_read_unlock_bh -EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be -EXPORT_SYMBOL vmlinux 0xfdbb594f lwtunnel_encap_add_ops -EXPORT_SYMBOL vmlinux 0xfdc2a76d netdev_emerg -EXPORT_SYMBOL vmlinux 0xfdc3192f tcf_hash_create -EXPORT_SYMBOL vmlinux 0xfdc74a75 devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xfdc9625d fget_raw -EXPORT_SYMBOL vmlinux 0xfde6d8e0 phy_init_eee -EXPORT_SYMBOL vmlinux 0xfdec0ea8 dquot_quota_on -EXPORT_SYMBOL vmlinux 0xfded48ed enable_kernel_fp -EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe1bb180 inet_listen -EXPORT_SYMBOL vmlinux 0xfe48e058 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0xfe550af2 twl6040_set_bits -EXPORT_SYMBOL vmlinux 0xfe5b22d3 macio_register_driver -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe6ca78b devm_gpiod_get_index_optional -EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0xfe87d9a6 scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0xfeac36ff of_mm_gpiochip_remove -EXPORT_SYMBOL vmlinux 0xfec10122 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0xfec3b7db vfs_rename -EXPORT_SYMBOL vmlinux 0xfeca7590 radix_tree_range_tag_if_tagged -EXPORT_SYMBOL vmlinux 0xfecefd65 netlink_kernel_release -EXPORT_SYMBOL vmlinux 0xfed02c05 dev_alert -EXPORT_SYMBOL vmlinux 0xfed059a4 con_copy_unimap -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfee28c3f may_umount -EXPORT_SYMBOL vmlinux 0xfeff0d7c km_query -EXPORT_SYMBOL vmlinux 0xff14080e arp_send -EXPORT_SYMBOL vmlinux 0xff1765c7 rtas_call -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff390f79 pagecache_write_end -EXPORT_SYMBOL vmlinux 0xff4ad4bd vfs_write -EXPORT_SYMBOL vmlinux 0xff56f014 sock_wake_async -EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff6dea25 smp_hw_index -EXPORT_SYMBOL vmlinux 0xff7f57e6 dev_open -EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy -EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function -EXPORT_SYMBOL vmlinux 0xffdb82bc sg_free_table -EXPORT_SYMBOL vmlinux 0xffde88ec dev_err -EXPORT_SYMBOL vmlinux 0xffeb7cf4 pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0xfffe5a2e abx500_get_chip_id -EXPORT_SYMBOL_GPL crypto/af_alg 0x2179bf82 af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x2a19946e af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x39ad0b40 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0x58716898 af_alg_wait_for_completion -EXPORT_SYMBOL_GPL crypto/af_alg 0xa06561ee af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0xb463360d af_alg_complete -EXPORT_SYMBOL_GPL crypto/af_alg 0xbd6161a6 af_alg_cmsg_send -EXPORT_SYMBOL_GPL crypto/af_alg 0xc7f5e353 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0xd5114600 af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xee87bb82 af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xf7a20dc7 af_alg_link_sg -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xecf60698 async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x8756a61a async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xe62c2d22 async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x2f47a9cc async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xe40d64a1 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x6dcf2253 async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xc366a635 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xc5cd5520 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xf8207538 async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x4820b5d3 async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x54371a01 async_xor_val -EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0xbbb43f9c blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x3ef873ec cast5_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0xa2d8745a cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 -EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 -EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 -EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x098383ea crypto_chacha20_setkey -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x5338516c crypto_chacha20_crypt -EXPORT_SYMBOL_GPL crypto/cryptd 0x0a430a3e cryptd_free_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x1086344d cryptd_ablkcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x36394bf0 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x38d278bd cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x406faad5 cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x4739fc89 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x5646e0db cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0xcafa0273 cryptd_alloc_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xd6ecd46f cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xdf1dd121 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey -EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey -EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table -EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table -EXPORT_SYMBOL_GPL crypto/lrw 0xfab22c5c lrw_crypt -EXPORT_SYMBOL_GPL crypto/mcryptd 0x14bdd4d3 mcryptd_flusher -EXPORT_SYMBOL_GPL crypto/mcryptd 0x1ce69522 mcryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/mcryptd 0x1e8b6582 mcryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0x2de09852 shash_ahash_mcryptd_finup -EXPORT_SYMBOL_GPL crypto/mcryptd 0x30f36e8d shash_ahash_mcryptd_digest -EXPORT_SYMBOL_GPL crypto/mcryptd 0x3b696716 shash_ahash_mcryptd_final -EXPORT_SYMBOL_GPL crypto/mcryptd 0x5d2d47a4 mcryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0xb958b4cf mcryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/mcryptd 0xd23683c6 shash_ahash_mcryptd_update -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x229bffe9 crypto_poly1305_init -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x60047fb3 crypto_poly1305_update -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xdf6b271a crypto_poly1305_setkey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xf7f933fc crypto_poly1305_final -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x0a9ed553 serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt -EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0xda763333 twofish_setkey -EXPORT_SYMBOL_GPL crypto/xts 0xc3c80906 xts_crypt -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x06517406 ahci_reset_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x094d2a4d ahci_set_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0fde8127 ahci_qc_issue -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x113d9def ahci_print_info -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x18ce01f0 ahci_do_softreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x36141b03 ahci_start_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x37e4efc2 ahci_handle_port_intr -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3bd3b613 ahci_kick_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4d700b69 ahci_sdev_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5b50b499 ahci_reset_em -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5eaa1a60 ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x61210667 ahci_init_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8a9e7e60 ahci_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x95f2e4cd ahci_start_fis_rx -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9a4ae965 ahci_check_ready -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9b1c810f ahci_shost_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xaa5907e6 ahci_port_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xaae03674 ahci_stop_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xaf41626e ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb28bd30e ahci_error_handler -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc3941685 ahci_dev_classify -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdc16e708 ahci_save_initial_config -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe7b44f29 ahci_host_activate -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x008f53c6 ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x040058ce ahci_platform_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x1d90bef0 ahci_platform_suspend_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5bdef65f ahci_platform_resume_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x70675ed7 ahci_platform_enable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x88bf68c8 ahci_platform_disable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x88fdabea ahci_platform_init_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa0a14208 ahci_platform_get_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xce8bc4ff ahci_platform_suspend -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd1ad7016 ahci_platform_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xea4b9271 ahci_platform_disable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf1ba8e54 ahci_platform_enable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf94f894f ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xa952056c __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x578e570d sis_info133_for_sata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x3aec6fe4 __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x6bf08a24 __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x7e232ca4 __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xe516f2f1 __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x137f28d1 bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x18952200 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1fed8d75 bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2a43678b bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2f78349f bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4ca5d10e bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5319e30d bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x531d9731 bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7e022a2c bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x875f1626 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x876cb1d6 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8e0bb9f7 __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa050da1c bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa2dd3422 bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa558717d bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa7b3e64b bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb230dd94 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbbdca2f8 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbdb2ee2e bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc43aac3f bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc8852d80 bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc93296ea bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xebdd55ff bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xff1da1f2 bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x0d0432a3 btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x292ed2c5 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3ebfd29f btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3f2e79f8 btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xa35a70ef btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xbfdba50d btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1475cbb2 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x19474437 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1970cd15 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x304706fe btintel_set_diag_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x344446cf btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x359f1534 btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x40e2260a btintel_secure_send -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6b5c72b7 btintel_hw_error -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x80e03374 btintel_set_event_mask -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbec765b4 btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xce48e650 btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x17ddd3f0 btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2e365d30 btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x522d4fa8 btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x600f2dca btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x755018b6 btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7c33c3c2 btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9f4223ad btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xaa96a922 btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xddcfb4fb btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xebc2a7a2 btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf5216a62 btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x36a45306 qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x9bb7b69f qca_uart_setup_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xa9150c68 btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x52b0c014 h4_recv_buf -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x047b568f dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x642b111a dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7889bbd7 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x8f733eec dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf3269e47 dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x130cd81b hsu_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x43015c1d hsu_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xa5ddd220 hsu_dma_irq -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x033ae241 vchan_tx_submit -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x8279a3dd vchan_find_desc -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xb17ee7c7 vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xf61a4f98 vchan_init -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x01abafed edac_pci_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x171beb6f edac_device_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1f787665 edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2cb8a03b edac_device_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3bfc790f edac_device_handle_ce -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3d560ee2 edac_mc_alloc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3ed7dc19 edac_mc_free -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4b744904 find_mci_by_dev -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x75511f20 edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7b5c2f13 edac_pci_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7efb07a9 edac_pci_handle_npe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x90113aab edac_pci_handle_pe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x962a6007 edac_pci_reset_delay_period -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9ac5b79d edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9e23af7c edac_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb0bef12c edac_device_handle_ue -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb662eac5 edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbb6c096a edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc04dcd6a edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc35615bf edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd77564ca edac_mc_del_mc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd7a5dfe7 edac_device_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf2ab0ebd edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x32b260be of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7130dfb2 fpga_mgr_firmware_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x93440bbe fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe80080f4 fpga_mgr_buf_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xed4e034b fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xfdb2bac2 fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x2fab746c bgpio_init -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xcb0c276d bgpio_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x69c58c4d __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xc8e8f463 __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0f468154 drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7a382d19 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x87b093fd drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x880836ce of_get_drm_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf295a6b3 drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfdda0509 drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x5a005e90 ttm_dma_page_alloc_debugfs -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x5a95f422 ttm_dma_unpopulate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x77090b3c ttm_dma_populate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x136b4a66 hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1556ccdd hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1fbb2ecc hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x202913d7 hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2a0ee235 hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x30c0e33a hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x36ce8d47 hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3c879c6a hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4963ab40 __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4fe4b76b __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x51afd32d hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5c1812c9 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6895cf56 hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6b8bab28 hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6d5d6813 hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x70eda606 hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x71aa0639 hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7637fc22 hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x90beb9ed hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0x984ec630 hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x99574fb4 hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa0498b2b hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa19727c5 hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa449478e hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbeed6420 hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbf8c9706 hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc1119505 hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcaae41e2 hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcdeec999 hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd2fbfac7 hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd66fe981 hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd8793b4d hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe4722e97 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe4d1d2df hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe4d4cb1a hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xffcc5286 hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0xb914e3bb roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x2a8f89c9 roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x4a8ba32a roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x4f0a0bee roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x5964b1d3 roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x9bade568 roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xa0136af9 roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x38a31003 sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x48105f54 sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x99b174b6 sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa0910fe2 hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb481dee3 sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd2ddebff sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd76b7e6f sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xed7f25cd sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xef7ec2ce sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x8e4af445 hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x04ea5d9a hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0bcc92e4 hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0fb80faf hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x17cd4839 hsi_add_clients_from_dt -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x364e6ac8 hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x421a7ce7 hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x42dad4a1 hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5588c92c hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x713011fe hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8467954c hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9ceaba50 hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb7a965cd hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb7edd002 hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc6e7de4d hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcbd6ffe8 hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd07e91fc hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd74265de hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xea23e9ff hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x59a724a8 adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x675b5ed4 adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xcc3e1715 adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x13624947 pmbus_clear_cache -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x458ca895 pmbus_write_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x49929468 pmbus_do_probe -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x631d8f45 pmbus_update_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x71b5fc9b pmbus_regulator_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x7eeb2c3a pmbus_check_byte_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x822c7f72 pmbus_clear_faults -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8713d7dc pmbus_write_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x9445e71e pmbus_check_word_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x9b3f5bb5 pmbus_read_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x9b853f97 pmbus_set_page -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa400aed4 pmbus_write_byte -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xaa496f45 pmbus_do_remove -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xd8d5422c pmbus_read_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xdafd0b48 pmbus_get_driver_info -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x160affe5 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x1eed4b6d intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x39fe41e8 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x51c83da0 intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x9619b7cf intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb0166576 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb40d74de intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x006ef981 stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x1023eb54 stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2358e7f2 stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4a2c0399 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x6af18bc9 stm_source_write -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x14de32fb i2c_dw_read_comp_param -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x556f0c4f i2c_dw_probe -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x61a2fa02 i2c_dw_init -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x9505f36f i2c_dw_disable_int -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xdac98d39 i2c_dw_disable -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x68082aa2 i2c_del_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x9397206f i2c_add_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x547d18cd i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xf5b425e1 i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x36591032 bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x4d0b5e5e bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xc284b662 bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x0df40629 ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x19ab48de ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x1e78f5f6 ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x35e56702 ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x48f9d7ae ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x5793d35c ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x5f06ad94 ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x8cee1b4d ad_sd_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xfcf146ea ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x23ee70c1 iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xd93547a5 iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x80cb799b ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xef45d0a1 ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x0caf47bc bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x853614ba bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xd3cde420 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x05bba798 adis_write_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x192e5bcc adis_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x256ef241 adis_update_scan_mode -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x265c28ab adis_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x2ee67725 adis_reset -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x3b24d866 adis_init -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x5ac421ee adis_remove_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x8a15d10a adis_read_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x8efe7d53 adis_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x901a9624 adis_check_status -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xcdf7c214 adis_initial_startup -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf2e88eba adis_probe_trigger -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x01d85141 iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x02154c5f iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x05e8f2a6 devm_iio_device_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0fde88dd iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2d03d28b devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3d10bcd5 iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x406ab23e iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x40ccda94 iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x45e3d58e iio_update_demux -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4a15ca68 iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4abbfa08 iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dcd98e3 iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5397166f devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x57fbaf20 iio_scan_mask_query -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6f3d4dc8 devm_iio_device_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x81686148 iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x84d00432 iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8af411e4 iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8e1b2352 iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9bd77c70 iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa1018dee iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa5f470e7 iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb203fea1 devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb5e2e864 iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbf191b41 iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbf734817 iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc898ec24 iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd02ea0c0 iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe291f6f5 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe7c38428 devm_iio_trigger_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfb5d9045 iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x44dc29ca input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x7fe3b59d matrix_keypad_parse_of_params -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xef581cc4 adxl34x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x13c066e7 cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x989666fa cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xbb4f1365 cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x4d4ca9fd cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xa5ef761e cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xf79c4d97 cyttsp_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x0f714b5c cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x6ca3cb23 cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x6a5e16fb tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x98e4df7d tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xa7257592 tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xcc7bf151 tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0974dd6b wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x09e5806c wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2276da2d wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x61170fe7 wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x76239a07 wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9f2f26f2 wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xadbd0f79 wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb0031223 wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbecf3e49 wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc6204214 wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd984ecb6 wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf2474df9 wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x01d6a882 ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x3a3a53e8 ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x42db1251 ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4fecbe64 ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x60709526 ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x783270ab ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa2c0cb11 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc2565fd1 ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xfccb80a9 ipack_device_init -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x01cc8890 gigaset_freecs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x135e6d6b gigaset_initcs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x13692d89 gigaset_initdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3efc6e11 gigaset_m10x_send_skb -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4083422b gigaset_freedriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x546eb983 gigaset_start -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x5d945769 gigaset_skb_rcvd -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x6fdf8924 gigaset_isdn_rcv_err -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7dc95dbd gigaset_m10x_input -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x87e0a8e1 gigaset_blockdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x9670cef2 gigaset_handle_modem_response -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x9984d8f5 gigaset_stop -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd75a3960 gigaset_fill_inbuf -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe3df3c08 gigaset_add_event -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe8684f78 gigaset_shutdown -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xee8d5757 gigaset_if_receive -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf20cd141 gigaset_skb_sent -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x06703e6d led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1b1be622 led_classdev_flash_register -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x42f7ad0c led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x781d007e led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb4d59a6a led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb5c43da4 led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x4d4c7391 lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x521368cf lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x584b0bcc lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x5eb9e52d lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x6787ca0c lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7516842e lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9435bb4c lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x964d90c4 lp55xx_unregister_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xae7c2a57 lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xcbfe1039 lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf3f164f8 lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x0a0527be wf_register_client -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x42465db1 wf_put_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x4d941917 wf_register_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x65482e93 wf_register_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x6e6eb5b5 wf_get_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x75147afa wf_set_overtemp -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x9f1b3bff wf_unregister_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xbcace2a5 wf_unregister_client -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xc6b2b6c4 wf_get_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xdf228e3c wf_put_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xe492e2d1 wf_unregister_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xed82a14f wf_clear_overtemp -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x11364404 mcb_bus_put -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x236b1c8f mcb_free_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x3f457042 mcb_device_register -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x3fb1ebc0 mcb_get_irq -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4ae5dfa3 __mcb_register_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x66b2edc9 chameleon_parse_cells -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x9dbdc548 mcb_bus_get -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xad33a154 mcb_alloc_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb13b0e0c mcb_request_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xceebb2b7 mcb_alloc_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe1164271 mcb_bus_add_devices -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf225cb54 mcb_release_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf78ce176 mcb_unregister_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf9cca8f3 mcb_release_mem -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x00b74659 __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2a1a7a99 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x374f45ea __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3a4dfef7 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x48991e9c __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4f124797 __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x614e860f __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x647af374 __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6724de29 __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6726a0c1 __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x68f1ea6d __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7114cfcc __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x78c57fa5 __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7cb4bd6f __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x816ebfe0 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x833b99dd __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8afe3e2b __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x912566ef __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x92c55e92 __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9c59320b __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa7004101 __tracepoint_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaf2376ac __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb3942afe __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb4cffcbb __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb9c28744 __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc0bd3171 __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc773563c __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd81ad8c9 __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe30b6b2a __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6169c53 __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfcb52b5f __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x15344a1b dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2a1341aa dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2cbb3b3a dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8702b74a dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb8ecdd8e dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd0f1527e dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe0ffcdc6 dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe7cb9c99 dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf9c51efb dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x22163b69 dm_bufio_release_move -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x3909d3a8 dm_bufio_prefetch -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x594952bd dm_bufio_read -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x62a23587 dm_bufio_get_device_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x85248655 dm_bufio_client_create -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9b2b253a dm_bufio_get -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xdc69e37a dm_bufio_get_block_number -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe004ee92 dm_bufio_new -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x4fa95865 dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x6e302031 dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7bc8ba1e dm_cache_policy_get_hint_size -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x8698c501 dm_cache_policy_get_version -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa5bb3f3a dm_cache_policy_get_name -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xaa70b770 dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xddd3564d dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x29c5a9bd dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xcc8a8725 dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x09472122 dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x17afcb8e dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x2c2fedd3 dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4d0256fa dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x86da51c7 dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x90af8900 dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa8813ad6 dm_rh_region_to_sector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc66ce277 dm_rh_get_region_size -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcab63c3d dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd7dc265d dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf37a3cfe dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11eab9fe dm_bm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x150c85ce dm_tm_open_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2e730a21 dm_bm_checksum -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x33c03da6 dm_sm_disk_open -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x565969ee dm_block_manager_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x619701dc dm_sm_disk_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9b4b5b29 dm_bm_write_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2507774 dm_tm_shadow_block -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbcfdc290 dm_tm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbe0497aa dm_tm_create_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xead1e727 dm_bm_write_lock_zero -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize -EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2d790f5e saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4b649168 saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4c1d8576 saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x5ec43fb2 saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x891087e5 saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x903cf79c saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x940d0cd1 saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x998d5eb0 saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa06f14d2 saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd75ed35f saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x1d5df55d saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x544acaf7 saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x616d4237 saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x8b8b5e7c saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xa19f80ea saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xd44f2baa saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xd96f0898 saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x24be9250 smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2d9aec2e smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3770b838 sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3c8a5ff6 smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x49b21b62 smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x59c26c23 smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6b702852 sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7b72aba3 sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8b292aef smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xaa0af285 smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb5eb5c77 smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbf8c9a5d sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc6c69389 smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd3f972a1 sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe1c68590 smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe2238e4e smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf4ad04ba smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xc13e72ff as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x31a860da cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xe807073d tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/media 0x07f5d0be __media_device_register -EXPORT_SYMBOL_GPL drivers/media/media 0x1fcabad6 media_entity_create_link -EXPORT_SYMBOL_GPL drivers/media/media 0x328c9039 media_entity_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/media 0x52411254 media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/media 0x5ebf79af media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0x6805cc60 media_entity_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/media 0x6ba04ce0 media_entity_init -EXPORT_SYMBOL_GPL drivers/media/media 0x779c683e media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/media 0x8259b149 media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/media 0x8a59619b media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/media 0x973b8cbb media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/media 0xa15a967f media_entity_cleanup -EXPORT_SYMBOL_GPL drivers/media/media 0xa1dad81e __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0xaad77391 media_entity_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/media 0xb3cb7bdd media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/media 0xe1f0dbde media_entity_get -EXPORT_SYMBOL_GPL drivers/media/media 0xe388b83e media_entity_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/media 0xef2e5636 media_entity_put -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x81c823ec cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0b3744e8 mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x117e098a mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2bd18d47 mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2f3b6c2a mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6ad580a5 mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6eab28dc mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x77dcc7a1 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7c0a269d mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x99393714 mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa3381a1b mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa53f41a4 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xad4ff173 mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc080cccb mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc45a58b1 mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc5347df2 mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xea1a0d08 mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf2b9f8bd mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf6abd164 mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xff3550fd mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x066a0aa3 saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3029c137 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3cf42b40 saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x440b19e9 saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4a7ef950 saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6c32a42c saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6d218286 saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6d34dad9 saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x74f38e47 saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x75fde4e2 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7a2a2b24 saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x83b588c6 saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x83e0aae1 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8d059cfd saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9f3bc9f2 saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb5de43e4 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbb5eb047 saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc408ff99 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfd8fb522 saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x0d775c26 ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x1f8e6564 ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x2e8d9e1f ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x5777e31c ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x57b80c9b ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x66c8eac6 ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x8df61aef ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x07e39f31 xvip_enum_mbus_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0b2585ce xvip_get_format_by_fourcc -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x129e8f42 xvip_clr_or_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x490bd11c xvip_get_format_by_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x629fe44b xvip_enum_frame_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x9dbc23bf xvip_clr_and_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb747d38a xvip_cleanup_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xbf794722 xvip_of_get_format -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xf355b182 xvip_init_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x514c3123 xvtc_of_get -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x27d45efc radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xade2909e radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x03dc6149 rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x079d751b rc_close -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2b3ed95e ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x43b88430 ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x57fc3ae7 rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5c7d9560 ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x69c3ecde rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6a4b1615 rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8bbb700e rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8f12b07d rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x908e6b4d rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa5638281 rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa8c3d59a rc_map_get -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc60e2e9e rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc9c78aab ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd404ad2e rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdf73cbf8 ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe6097d0e rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe6e1038c rc_open -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xdf0f2a1e mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x29028811 microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x699a9e97 mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x8ee61422 r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xd5a1c318 tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x2fc5eec2 tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x345ba8dc tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xe88ed444 tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xb8c15da4 tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xc0bcbbfb tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xe7227f57 tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x293211a5 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xbb83595c tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x452c7ced simple_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x19428e86 cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x24d97faa cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x30ff7b3c cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x331b64df cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x36f43682 cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3ff179d4 cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4156a3fb cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5226538e cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5a8f5cd7 cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x66e884af cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9840fe2c cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa0ef5c7f cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa809539a is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xac9d0f7e cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb423180c cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcad844a3 cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd6b7e7fd cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd74a0e3a cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xef53098b cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf52c0aca cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xd6f31f6b mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xc4ae60e8 mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1df05a65 em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1febcd7e em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x22361ad8 em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3374317f em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x347d31e7 em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3ff6eaaf em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4baa96e8 em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x57a35723 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x61412fc3 em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8570f57c em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8f1a3c00 em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921918ce em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa25e0657 em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa7f38010 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xad631b2c em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc12a2f2c em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe18ec2b5 em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe3637dc6 em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x12a8969e tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x29d31d07 tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x3df0c678 tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xadee8b19 tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x3e5d80dc v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x6f5c53ce v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x95b34424 v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xc4e27e7d v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xd6625c4e v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xd7976d0d v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08982d59 v4l2_match_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xddccc84d v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xee359a8c v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0b624d39 v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x23d82492 v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2a56f14b v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2b0c48d7 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3acfb881 v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4613734a v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x49eaed3c v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4c98b532 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5030feee v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x66fc18ca v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x67d77623 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6f72b43c v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7a1d46b5 v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x84ad818e v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8c4e91a4 v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa36dddc1 v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xafe2ecde v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb5b140a8 v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc74cd323 v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc799106b v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc896ae47 v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcade719a v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcffc8995 v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe87e57a8 v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf93b2dd5 v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf93c533d v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf9c04d41 v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0728454b videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0f577a5f videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x20540a9c __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x271d3194 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2a1b1fe9 videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2b7616a3 videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x628e28dd videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6a0dc643 videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7f16901f videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x99fd93af videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xac5f53ba videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xaef2d3f7 videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb37458f8 videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xba6fb0bb videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbc57662f videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbcfe4821 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbe89adf1 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdb204c42 videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdd12d471 videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe69f05ec videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xebb422ec videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xee48f399 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf755eca3 videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfe0f54d9 videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x1f91c5af videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa825c75b videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xb81285d1 videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xe182788a videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xfb531d75 videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x40fd75e0 videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x76d206ab videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xb8cdc350 videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x01439739 vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x055e0e38 vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x122940ef vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1489d325 vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2720e648 vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2b59407b vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2f9a6721 vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x3034746c vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x3459bb93 vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x883e7017 vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x8aca72bf vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x9916597c vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xafd64a23 vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc709dab1 vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc8c3ef2b vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd23c8f7d vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd374afb2 vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe7825861 vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x323fa640 vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x81d46d56 vb2_dma_contig_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x380f6dc7 vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xbe7244d0 vb2_dma_sg_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd30ec30f vb2_dma_sg_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0xfa3b6adb vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x098ca268 vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0abec6fe vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2199dcde vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x27f7bff1 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x295bbe14 vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2be7dd71 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2ee00ac8 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x38341dd2 vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3bea8df2 vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3c1b704d vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3c71c72f vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4671a2c0 _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5a0d3558 vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5aac9cac vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x623ab132 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x671b1932 vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x882c9ec0 vb2_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x912fc371 vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x988bec0b vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa04654e7 vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa21c83e6 vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa59f3407 vb2_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb57f0b8f vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb9a4fe61 vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc0ba0184 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc54df832 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc611630f vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc7d95744 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc973a17e vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd5b2c8b9 vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdea07dc1 vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf7fce07b vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x7ce52243 vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x085c1c98 __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x12338302 v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x22845839 v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x28d20b15 __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2cded248 v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x31e3d76e __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x337db8c1 v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3740e82b __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3d48d092 v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x46a39ac1 v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x490084d8 v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4b2137ec v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4c2a3859 v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4f4dac90 v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5f1df070 v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x705346cc v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7a85f5d7 __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x85c367fd v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8fa601e9 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x98545b10 __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9ad99ee9 v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9c03377a v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa0456ce4 v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb04ef31c v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb558834e v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb899145f v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbc847c5b v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbc8c0150 v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcfe1a529 v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd04ada84 v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd1691fe0 v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd25c1538 v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe16262ef v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe8c13e00 v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xebd80a4b v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5956f8c __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x25e68b65 pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xb0f7d754 pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xc30bf7fa pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x068e3714 da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x8a22333d da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x94f255d7 da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xc8634649 da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xdcaba63c da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xef33e1e7 da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xf12b86af da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x02654910 kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x062fc836 kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x14347e39 kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1d0dc34f kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x325235c5 kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x82c46ff9 kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x91a049cd kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xbc2d011b kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x72fcd5dd lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x9b9b6f41 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xee2e81b5 lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x3112f87a lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x633343c7 lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x656ac6a2 lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x6804b673 lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x9aefbf9e lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa167648d lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xe1075ae1 lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x4a6dc338 lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x676ca8b1 lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x7f7adc17 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x23c9d399 mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x31c626f1 mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x717c6dd1 mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xea396689 mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xef0eb344 mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xf52c69aa mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0a9aaa0a pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0c75cca6 pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1b5e9a34 pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x21e244ab pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7998dfa9 pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7b733a2d pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7c16c6dd pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa1a9ae56 pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb4bc490e pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd517a256 pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf5ddde1d pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x529feaac pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xaf777857 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x1cad1595 pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x6efe3807 pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x990ba840 pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd0ee3d62 pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xf5f48701 pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0d0a39d3 rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2d1735cc rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3b13c5f4 rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4512a8bc rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4c2c94ad rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x574683d7 rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5c270f26 rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x65fda084 rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x68823552 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x6d8f358e rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x76b18790 rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7d1f8a5c rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7deff181 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8a15c2eb rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8be3330f rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x909f87ec rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa9405c3c rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xbe4953b8 rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc4db9c6d rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xcc1b7a37 rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd5b72666 rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe2071b16 rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xedee75ff rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xeedfa70d rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x088a5b23 rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x15441767 rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x21e904de rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x268edf35 rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x5cb03f35 rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x6c50e0d2 rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x91462500 rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x9b463765 rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xa1193121 rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb34d3d8b rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe6b9b3d3 rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe8516a59 rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xedf0294e rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0a13ff5a si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0dc066de si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1c93a17b devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1cc89b57 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x228e7513 si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x28ffb940 si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x33717a8c si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3955340d si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x486d5988 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4b00f20c si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4b33dcc7 si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4b6a0a9c si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4c36af5a si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x58a4916a si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5a84e17d si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x63d15e16 si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6f185deb si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x762c30b7 si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7800e297 si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x81c2672f si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x83864899 si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x888edcff si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8ffa19b8 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9669ed5e si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9c4a7518 si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa828dc96 si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb1f77ecb si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb7f388b6 si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbd95f05d si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcfc5c6af si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe35017ea si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe3e996bc si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xedcdbc1a si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf7d5e77a si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x2ebee1b2 sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x5b22d9f9 sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x893df476 sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x8f625191 sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x9c53aa28 sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x34708242 am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x485d8065 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xbff730f3 am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xc4bfd6bf am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x75e78263 tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x9dc334ae tps65218_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xcbdaf6c2 tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xd83d41d8 tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x30933348 ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x382046f6 bmp085_remove -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x7950d8c9 bmp085_detect -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xad7f50d2 bmp085_regmap_config -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xfa1061b1 bmp085_probe -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x1efb1008 cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x92b4cd60 cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xc65ecae9 cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xe7d54c09 cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x154f21d7 enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x258b6159 enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x6f2044f7 enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb5c0e45e enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xc9549a62 enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd668886f enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe268326c enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe696d488 enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4ae3bd09 lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x713ce112 lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa369b461 lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa404a831 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xbdd8f4c4 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xcaee1991 lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xdc401b13 lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xde87585d lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x98206a1e st_register -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xee4aba47 st_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x07e54e5f sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0f350848 sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3a06c6c2 sdhci_send_command -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x416b7ea1 sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x609726b0 sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x678eeaa3 sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6fe5f5e9 sdhci_enable_irq_wakeups -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7b4ee2ac sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x801838b7 sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8d18a952 sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa1061433 sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbb74ec04 sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd4c306ea sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xee495d3a sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0188403d sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0eb37881 sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x3d9bdcb0 sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x45e14ecb sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x5c37af9e sdhci_get_of_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x6c1a5d77 sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8967a8b5 sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8a1ab0aa sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xdfd9ff77 sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x1dde2335 cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xdfe9234b cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xe0c006a3 cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x0cad5bd1 cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x8106df87 cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xff549457 cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x6e93f2d0 cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x07af92d1 cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x23d6b692 cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xff013ff8 cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0114910a mount_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x083cfdff mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0a1ffd23 put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0e206f2b __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x12cd63ce mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1853f9e4 mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1d383e2f mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x23e0d95c mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x37778aa3 unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3e8a9993 mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x41c1d911 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x48b9200f mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x495e7987 mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4ee4cd99 mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x56f91466 mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5f01f589 mtd_erase_callback -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x723fad4d kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x79dd9479 mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7b80d5f4 mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8cf9d2ae mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x917afaab mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x95605ae5 mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x95b3fa9f mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa5afbc25 get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa6978459 mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa7203d82 get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbc4eef18 mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc3300a8c __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc3a4b062 mtd_is_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc9a37133 mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd0fae5d0 mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd2f303f7 __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd50f9a14 mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd9ae0d7b mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdc5c82d2 mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe0e46b75 mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe67cf447 mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xeaa5fe7d mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xed08cdcf mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xeeb4daec deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xeeca85b7 register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf0c5acdd register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x3bc96952 register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x6448933c del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x654419a8 add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x971b70e8 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa98e1349 deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x187760e2 nand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xf60919b4 nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x6c963380 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x5769165a onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x9a6c822b onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x2919fa2a spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x020af9d7 ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x32a3ae31 ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3737af41 ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4168135d ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6614086a ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x790cf3b8 ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa43caac9 ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb5d744cd ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xbd869f6b ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xbec0222d ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd416d403 ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe01f62b9 ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xebf39c7a ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xedaba9d9 ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x005b90c8 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x3d0fee8f arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x12b2ecde c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x3e913fd5 unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x7d6e752b c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x8a992f10 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd1d27609 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe7385735 register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x1dbad13f can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x1ec932ab can_led_event -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x20de7b6f can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x55c250a2 register_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x56d9d523 alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5a1ec3b7 alloc_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x63ae3d1e free_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x6ae65fdb can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x74695795 close_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xabe78393 open_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb03444a8 alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb2b9e94f can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xbf8ba458 can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xbfca8222 alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xdf00a507 devm_can_led_init -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe4f459dc safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xee72036d can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xf3e430ca unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x8a7b9286 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x909a4178 alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xa688ac3b free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xb4c22e7b register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x24c370b8 register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x47062e56 unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xd70ccffb free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xd733e2a8 alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x25b81ab7 arc_emac_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xde66aa21 arc_emac_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x009b3ad2 mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x015506f6 mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03ec70b2 mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0708dcb7 mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07229041 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0dcf2e07 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f027d51 mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x103ff54b mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x114a0bdd mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1280595f mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15171c38 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15609205 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16b61c11 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1aebf08d mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e18cbde mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21e5c3f3 mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22fc29ab mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2598ba80 mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2734957b mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x289068d6 mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x292861a6 mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ab51685 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b3ad136 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2dca99ec __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e5ede65 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30966828 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36e7db1c mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39b56cfd mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d7652c4 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d865157 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4095ea00 mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x415293cf mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41dd16d9 mlx4_map_phys_fmr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42960eda mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44da1d6b mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f12e3b0 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x503fdeea mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x510b6b00 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51371c39 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5285c7fb mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52ae9a0a mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x530cd64f mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5524083c mlx4_fmr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55ac061b mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55cb166f mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c95f210 __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f0b518e mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62c58152 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67cc1607 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b04c87b mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c06d13c mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ddc55e8 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e6da2b2 __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f85f81c mlx4_fmr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71d6070b mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73624a9e mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75f7e2dc mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78cbf206 mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c04ed1d mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c77c325 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7da1ed95 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8286a295 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84f9acd2 mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88542f19 mlx4_fmr_unmap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88bcb64b mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88dd6287 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a6e5260 mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b30c455 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8cf3658b mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ff555fb mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95272564 __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95d2c514 mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x975d2a3a mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ac72856 mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b4f2bcc mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9fae8da9 mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa05f873b mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0d73153 mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1033fec mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1a3fb94 mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2c5045f mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3e19966 mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa415877b mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7110c76 mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8914553 mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa93417f6 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab9bc35d mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xadc888d7 mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaeb9c1bc mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xafdf9c77 mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb12544ed mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb30c4800 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5fe1e1f mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9907520 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb1c7ed0 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbee6ceee mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4a05e84 mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcadfd15e mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce4e7df3 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce9dd1d3 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd12507e4 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd13b2c34 mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd21fc80d mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda1a56da mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb470fac mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0d178f1 mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe26f79da mlx4_fmr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3d64c4a mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe55efc79 mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9518021 mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebb1881f mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeebdb34d mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xefd39369 mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf323ae11 mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5a6e8a7 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5bc7aa3 mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7d7b878 mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa3b2c8b mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfab54940 mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd111a49 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd8194a9 mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe953d06 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff21d2ff mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xffe939b2 mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02f15a08 mlx5_core_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07c4fd15 mlx5_query_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0cc81332 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f38116a mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1192d6b9 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1889c8e6 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18b6f48f mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a8d9868 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b115113 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a14ecce mlx5_create_map_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x472bac9b mlx5_query_vport_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x492a21d6 mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49416914 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a420ba6 mlx5_core_page_fault_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4badb50b mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5400aa1f mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55b861da mlx5_core_destroy_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58fc1503 mlx5_core_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ddeae0e mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x656f2f1d mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d141b23 mlx5_query_port_link_width_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e3c7fe5 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81a7138d mlx5_set_port_proto -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83031d8c mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83d4469f mlx5_core_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x859525a0 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b8a2d58 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9cc55c32 mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d69495c mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f617cd6 mlx5_core_eq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa068d462 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa49108a1 mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6939236 mlx5_core_xrcd_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9a80a2c mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb03defac mlx5_destroy_unmap_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5dc702a mlx5_query_port_proto_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd1e6a8b mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5719c41 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd93620b9 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdac1fa76 mlx5_query_port_proto_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbd1e297 mlx5_core_mad_ifc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1645528 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2ca79b5 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4a757bd mlx5_core_create_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6f395cc mlx5_query_port_proto_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf75e766c mlx5_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x368d3d71 regmap_encx24j600_spi_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x861bc584 devm_regmap_init_encx24j600 -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xd4ab3625 regmap_encx24j600_spi_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x1a42b76d stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x8e6807af stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x9010e763 stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xb6185a01 stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x884b313d stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x9a88bb23 stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xb57e1d2c stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xefef655e stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x17df7fe6 cpsw_ale_del_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x32410df0 cpsw_ale_del_mcast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x32a5cf0a cpsw_ale_flush_multicast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x370e1722 cpsw_ale_control_get -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x4298c84e cpsw_ale_add_mcast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x65a5331e cpsw_ale_start -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x67bf3c14 cpsw_ale_add_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x7decc0c5 cpsw_ale_set_allmulti -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x97a7f956 cpsw_ale_stop -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xb1cf597d cpsw_ale_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xbc76a5ed cpsw_ale_add_ucast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xc78293e5 cpsw_ale_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xc82d66da cpsw_ale_del_ucast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xcbaf2561 cpsw_ale_dump -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xd28128e3 cpsw_ale_control_set -EXPORT_SYMBOL_GPL drivers/net/geneve 0x8ce0977b geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/geneve 0xbdd77a83 geneve_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x002b65b6 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x0a45b54f macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x2a1a51f7 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xd237ba79 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvtap 0x96250d72 macvtap_get_socket -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0a97602b bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0c0f4bd3 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x29d4ddf1 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3ab1518b bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x590c9824 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xabc3afa0 bcm_phy_enable_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xafd44852 bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc52428b1 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe87320e6 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xeddebe09 bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x21dffad3 mdio_mux_init -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x25fb44d8 usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x511277b3 usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x9d8e6280 usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xc9322f7e usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0479567f cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x09ee0a09 cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2b67bdd8 cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x42838b61 cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x4da754d4 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x4f9ea242 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x62c4a568 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xaa4643bd cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xec16d384 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x2bdea18d rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x58153d2e rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x705d4723 rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa467f86e generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf6cdfdc6 rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xfc8f5e79 rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x036f0ad9 usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0781d196 usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x12cb1040 usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1920c8ae usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x19529bca usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2d7172e6 usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x41468912 usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4f19c20e usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4feea48e usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x515da4b2 usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x54572e28 usbnet_get_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5aafb3d1 usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5e06d899 usbnet_set_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6427c99a usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6cdab88a usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x71a59420 usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7422e1c2 usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x78c07a30 usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x87070953 usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x87194dff usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x89aff6f9 usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9307eaf5 usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa0643951 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb183732c usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbc8b4a22 usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc9e897be usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdde86649 usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe263f0bc usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe4b6b982 usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe556a5cf usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe8c58456 usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xeba754cb usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x29a4d8ad vxlan_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/vxlan 0xa298b584 vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x34bc466c i2400m_rx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4b58886c i2400m_post_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4cbd4cbc i2400m_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x72aac2d6 i2400m_init -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x77078645 i2400m_tx_msg_sent -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x77a00eda i2400m_dev_bootstrap -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x92393278 i2400m_netdev_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xaad853b3 i2400m_cmd_enter_powersave -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xadce5945 i2400m_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb97fb3ac i2400m_pre_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xbb1406a3 i2400m_tx_msg_get -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc9c1eafd i2400m_dev_reset_handle -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xcec3cee5 i2400m_release -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xefe73e11 i2400m_is_boot_barker -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf90b2f93 i2400m_tx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xfc9637b5 i2400m_error_recovery -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x40fe83e5 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xaaf82e3b cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xb026a9a4 cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xeabe66a1 cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x6b5f2c69 libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x1f84f5ec il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x6086825a _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x9dfbd3a3 il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xc367af35 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xdaf4cbf8 il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x002b2e74 iwl_init_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x00fa813b __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0d556623 iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0f48dcb7 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x23a59713 iwl_write_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x276db7fb __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x288e471b __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x29915d89 iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2a768f0f __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2fe09b7e iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3b5e3a06 iwl_nvm_check_version -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4313841b iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x49594c35 iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4c52708a iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x54a40390 iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x58d10e1f iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x616dd162 iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x68aa4497 iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x79c07e1a iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x80add612 iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x80cbc0bd iwl_parse_eeprom_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa44d5842 __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa71df00c iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xafbd9afb iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb7baa0fa iwl_opmode_register -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc67c31ed iwl_notification_wait_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe0d3442b iwl_remove_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe25d4444 iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe64afd7a iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf2a60ff3 iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf5aea4a7 iwl_notification_wait_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x04eacaa3 lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x0d8ef98d lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x26fad257 __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x44c59e07 lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x450bf772 lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x48bc6652 lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5d2b3f7d lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x64828b6c lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x783f5ae9 lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x7a5fc258 lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x8a8b7093 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9e5f779f lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa8bfef0d lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa8fe3c52 lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xbcd9c6cf lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xde6da592 lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x5c8974f2 lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x78c2e9c8 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x7b8369ea lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x8e90dd57 lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xaa815491 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc8e1ef30 __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xd720ae1a lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xe7207c2d lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x0900198c mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x307eb66e mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x3c4f5728 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x45fe5ad3 mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x49204254 mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x4c47f153 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x68e90410 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x7139e720 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x866c3afc mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x87bb84dd mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8c5eabb0 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x903978dd mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x90c6a02f mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x91dcf704 mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa0cf33bc mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xae62140c mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xaec3fc5a mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xdcf88239 mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xe2cfbcf2 mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x17b48123 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x1d1cabce p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x467c7489 p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x659d8f5f p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x697ab36f p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xe176f1e6 p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xe417f48e p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xf010bfdd p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xf42a4dc4 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1c8c9b37 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2b14af30 dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4d85475a dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6f069629 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x041fd54b rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x066ed8d9 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x07682558 rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0a1e4db6 rtl8723_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0c881a01 rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1b378571 rtl8723_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2266b1fa rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x32f7be29 rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x367c3275 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3c3d3328 rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x406aaffc rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4204fbcb rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x421cc24e rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6b2b6fe6 rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x77ba8960 rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x810df773 rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x83dd8f22 rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9123c4f0 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9699adeb rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb2a9fdd4 rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb68e8864 rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb7227b54 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc99a5a79 rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xce91346a rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcf45ba38 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe644b506 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfd8008ea rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d0b6636 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d9d4f83 rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x21ab388f rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x21f74635 rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x23a3d431 rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d6fa7b1 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3a5cf0e0 rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x55c8ec4a rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5e04efb1 rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5ea20930 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6fdfee3f rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7e9be9ab rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x834ebe59 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8c3777ce rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9eb8de8e rtl_attribute_group -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa3cee9bb rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xab9036aa rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb32bed52 rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc8c39381 rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcc1d442e rtl_dbgp_flag_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7170d5a4 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x76eb7feb rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xbe5a5f64 rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xf6cdebfb rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x043d7d53 rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x04ad08fa rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x08af3f48 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0a70b057 rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1335e0cf rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x16907742 rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x19748ec5 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2c30b18f rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2cf5fbb5 rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x33a450f0 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x356ced5f rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3a07234e rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3b97e18c rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3c334262 rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x43be3668 rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x451d6046 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4a98f0d7 rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5448e722 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x57764530 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6d46beac rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7abb1bac rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x90be94be rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9ef21585 rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9fe488c2 rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xac1ad6f7 rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb594d00c rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbc3f4ed2 rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc0451f3e rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xccf2391e rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd8f9e47c rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe14d0b03 rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe935ad89 rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xeb917a38 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xef03c88f rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf04147cd rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf1d7e205 rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf7c8c5d0 rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfd854f32 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x04636d39 rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0643e9e6 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x1a3bc664 rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x231e1db8 rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x380aa433 rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x414b7106 rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5099c6df rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x592bf5fa rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5938407c rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x7ddb6eef rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x866071c5 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc5687810 rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc9a4aa3e rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x00bb8be3 rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0e1edaf5 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0f400900 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x11afe91e rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x15f96b96 rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2af12714 rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x320a1570 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x39c303b8 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3c8b2a96 rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x427f7768 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x47d32266 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4cc759f5 rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4f8ee53b rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x51cc6ae9 rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5c51f671 rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5f7beb69 rt2x00mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6024316f rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x619791bd rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6a53c03c rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6b0f80ff rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6cf34c71 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6fee9979 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x833daeb1 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x87baa4fa rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8c3d0ce8 rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8fc4a777 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x904bef95 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9973082c rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x99b38231 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa3c660a2 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa94b8226 rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xaf538d6e rt2x00mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb4d65282 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb54f86e0 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc2e9e961 rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcd264054 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd17cd0a9 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd45157a5 rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd5dfb1c2 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd868413c rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xda0709d0 rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdf3cf941 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe205d2d2 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe2a5c324 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe33f369f rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf0bc123a rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x0b441316 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x2a681386 rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x357a64b6 rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x80cf6a87 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xfdbe13c3 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x1158072f rt2x00pci_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xbaf4f57e rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xbb4e2152 rt2x00pci_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xf8987502 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x00b2a567 rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x01c4e275 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1089dad7 rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1b320bd7 rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1ba74e67 rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1efaef52 rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2483142a rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x37294038 rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x3b9a4844 rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x4e2e2888 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xba20ab10 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xbe05ca6a rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xbfbd6d9a rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc5dbe1fc rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc6dad466 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xfafc148f rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x39104276 wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x3fb80d56 wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xb82c0122 wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x01139886 wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x084c6394 wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0a67de6b wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0b585750 wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x109d09a3 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1616de8c wl1271_ps_elp_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x19b7a2c0 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20018e2c wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x25401b37 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x295cae5f wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2f875635 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x362140a1 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3d14dfbc wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x428ab62a wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x43e6f3b2 wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x44ae4f4b wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x456df884 wl1271_ps_elp_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x52ca09ca wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x54068ce9 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5a284789 wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5d764be2 wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6ed642df wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x70a116cb wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x71055b89 wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x759a23d4 wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x84e3c793 wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x86ca9e7d wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x881c799b wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8d70ceea wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91da5146 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x949ce3cb wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x97938904 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa37b598b wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaa403169 wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaf1f76e4 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbde7a388 wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd618840b wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe09a692a wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe1a5df6b wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe1c484b8 wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe36d35a5 wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xead40f18 wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xee0618a9 wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf798b9da wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfa6d5854 wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x02421088 nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x97790bb4 nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xcd3f16fa nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xe659863d nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x0441035b st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x04583edc st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x37375539 st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x580a2220 st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x9ff2342c st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xd46d4ae0 st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xdc073697 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf153c811 st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0caab2f6 ntb_transport_unregister_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x8b8a8c2e ntb_transport_register_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xec50d7fb ntb_transport_create_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x0f0b8a22 devm_nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x19c0d6e7 of_nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x24e19f2d nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x36ec8a8a nvmem_device_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3bd1ffbe nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x598dff7c devm_nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x68758fda nvmem_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xa87704e5 nvmem_register -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xb8539d0c of_nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc96fb674 nvmem_device_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe18960ba nvmem_device_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe9a7fe16 nvmem_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe9e8bbea devm_nvmem_device_put -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x19e413f8 pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x73cd5ebb pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x978ebd9a pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x08808c9d mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x4b9778b7 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x7ab0f96c mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x7f1bbdf2 mc13xxx_get_num_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xad89a71d mc13xxx_parse_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x051b5c12 wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x28e87467 wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x352543fc wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x47584dc9 wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x92344bf3 wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xaed5555d wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x85f6654c wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x033d5bcd cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0d3bb17e cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0d6f428e cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0e645c1a cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x109348c4 cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x17901f39 cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1e001c76 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x236dd158 cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x26a9ca99 cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x293e6689 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2bc0411f cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2e2dbab8 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3349cf45 cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x346d543c cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x370b78b1 cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3b4cddbe cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3caaff3a cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3f2e0509 cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4a11df92 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x55c133e4 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5b5ffb18 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5e5a2d0c cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x75aead39 cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7c5e2fd7 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x933a435c cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9356fa3b cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x956c5604 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9b25ead5 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9f7c922a cxgbi_ddp_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa0b1645a cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa0e0b1ee cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xac1fe16a cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc00a208e cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc2874652 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc3538ac1 cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc89ba1da cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcf728b76 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdc40dc4d cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xde7d8704 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdee4e2c3 cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe0199fbf cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe31becbe cxgbi_ddp_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe41fc38d cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf1ecbddb cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfe16fbde cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfe7b24bd cxgbi_ddp_ppod_set -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x19fd0b26 fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x29cf8347 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x34fbec6e fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x360077e3 fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3f3a9bd9 fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5a09e21b fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5f759369 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6f5f1830 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7d213303 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x80ba3191 fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa457c3d7 fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb206e455 fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbca15a23 fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbe8ef5da fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc67d9871 fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd538e6f1 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x22e2a0ad iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x306138a4 iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x5383fe95 iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x6f7b0ee5 iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xab67fecb iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xcb9d2d0b iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x00cb0cde iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x085ceaf0 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x198b4054 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x245e4200 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2b9084ae iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2df63886 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x34e25354 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x36288757 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x38f0137f iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x39764690 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3ccb4737 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3cdc31e8 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3ee79911 iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x42d8b518 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x42fa9368 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x45dfdb78 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x48b80536 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x53b3e90c iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x549d9844 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5744f8ca iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x64b97db9 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x66355906 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6a465d4f iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6c73eaf8 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6f536922 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6f96bf5c iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x834cf383 iscsi_conn_queue_work -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x875eba5b __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8b1bc9df iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8bd0410c iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8dd1186d iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xac22ed30 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xae22816c __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb416c2df iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc17a5ef8 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc465bced iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc6549292 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc6dba684 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc90d4877 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdefaf536 iscsi_eh_target_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe07c2e40 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf9719748 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x019bf25c iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x09ec2ebd iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x18b0f4b8 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2b1f013f iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2d2843da iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3ac0623d iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5f69c633 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6492c081 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8b2b6788 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8f2e26d8 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa13a61c6 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa268f2a2 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa80aa835 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc640862b iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xde4cb13e iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdf617536 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xeae26ab4 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x073d6820 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0fe95550 sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1ec5cb97 sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2500ba7d sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2696ed98 sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2803aae0 sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2ff31818 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3134a61a sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x37924490 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x45e32f92 sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4e73a87c sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x59b0c141 sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6cc9cd74 sas_eh_bus_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7e7df9f2 sas_domain_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7feddbb6 sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8ac1b1d3 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x936d25b3 sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9ba9695e sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xabdb6cb2 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb120632f sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc5783e2d sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcff90b49 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd5eaa480 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe9e435db sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x03d0b02e iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x065812c5 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x095b5139 iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0ada15af iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1d90e9cf iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x20f43464 iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x21379e8f iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3e038055 iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4030070d iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x41423e5a iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x47a694a2 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x55857c22 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5803078e iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x58de75f0 iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5ec1d8d0 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x66d47e18 iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x68a67d55 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x72338352 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x73d7674f iscsi_is_flashnode_conn_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x73f17625 iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7697b4d6 iscsi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x76f921ab iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x78827e00 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7c1b3594 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8640e38b iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x89e33fd8 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8c1e8a5e iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x91c03586 iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa2e6f884 iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa4dd543f iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa7715837 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb157903e iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb5792493 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb7a09373 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb97696cc iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbde76845 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc309d34a iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xda869e90 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfb5ab67e iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfda3101c iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x0544a625 sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xa5688272 sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xa81d7bd9 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd983d325 sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x8daa6d38 spi_populate_tag_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x14e22728 srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x38cca0b1 srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x65f3857b srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x75740915 srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x93caf7b0 srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xd3da38d5 srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x0dc4b998 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x13293fd0 ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x327ec126 ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xa015a28f ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xa123a275 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xa1943386 ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xe9e033dc ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x15aec507 ufshcd_pltfrm_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x63816eec ufshcd_pltfrm_shutdown -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x63a5223f ufshcd_pltfrm_runtime_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x8c8b54c1 ufshcd_pltfrm_runtime_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x9466569b ufshcd_pltfrm_runtime_idle -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xa4ffe7b8 ufshcd_pltfrm_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xad461837 ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x77511d5b spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x7eb0e687 spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xac3b5949 spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xc7b94ee4 spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xd1a34366 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x16884dd5 dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x86c0333f dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x90ec99a4 dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xc324245d dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0f6ef4a5 spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x277a8e8c spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2f385923 spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x440c987a spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x453591c5 spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6e33f5ac spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x740dd306 spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x783acb09 spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7b5ce111 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9c247dee spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa9d0d8a2 spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbd234903 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbd76b911 spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc3f34fe2 __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd4e4e7a7 spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe2c8df8a spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe37d4de0 spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe85af963 spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xbd28048d ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0a30c74e comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1000f499 comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1285cf49 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1d04e680 comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1d594ed8 comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2153141b comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2c1d5ec3 comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x34b3c454 comedi_dev_put -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x35141267 comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3f42d9b1 comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x409c3303 comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x40c2b9c1 comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x52a785ef comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x530c18a5 comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x532132b6 comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6f5e108e comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7b0a4100 comedi_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7b9ca3e4 comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7e010ec2 comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8643ad99 comedi_event -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8c4abbbe comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9024d626 comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x931a708d comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x96a98e29 comedi_timeout -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa11f61e2 comedi_handle_events -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa828e4eb comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xad55d020 comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc4055b1b comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xce2ad310 comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd4ce0236 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd8299644 comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb963491 __comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe89f9b23 comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe947a59c comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf235ff1d comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x243dc711 comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x5366d9ae comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x540e0748 comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x5b7ac0e7 comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xa4d9ad2b comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xac01c9ce comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xb3788075 comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xc055cbc5 comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x437c8cf2 comedi_pcmcia_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x81a6d6a4 comedi_to_pcmcia_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x94624dca comedi_pcmcia_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x9ec9cbc1 comedi_pcmcia_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xb9787451 comedi_pcmcia_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xc93f1ecb comedi_pcmcia_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xee319d98 comedi_pcmcia_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x6e353923 comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x79cde4f3 comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x84bdc080 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x957098e0 comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xca2b296a comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xf98f9326 comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x28815a2a addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x23d48d9e amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x71e9fae8 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0xd7a2e0ec amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x06a08099 comedi_8254_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x5617c4c7 comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x5785f228 comedi_8254_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x673f7c4a comedi_8254_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x72ced722 comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x73d98c4a comedi_8254_load -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x8fd598d9 comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xc487ab92 comedi_8254_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xd9ab76cc comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xdd9d3465 comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xe465bc59 comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xee606dc9 comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xf29c321c comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x444657db subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x52d6ce59 subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xa2c9be6c subdev_8255_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x0ab7ffd8 comedi_isadma_poll -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x28f2221b comedi_isadma_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x3789f086 comedi_isadma_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x7040990c comedi_isadma_program -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa228e27e comedi_isadma_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x12e8950b das08_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0b98fc82 mite_done -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x1094ce4c mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x13f282c9 mite_get_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x17ef4b23 mite_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x392b0943 mite_bytes_written_to_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x3c050516 mite_bytes_read_from_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x45ea9c97 mite_sync_input_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x667bd682 mite_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x686832a1 mite_bytes_written_to_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6d463ef4 mite_bytes_read_from_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x727a69af mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x90eb288e mite_setup2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9c420ab2 mite_sync_output_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9c9e3169 mite_buf_change -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xbe3d902d mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc14d5fe5 mite_release_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd2cd0ef7 mite_dma_tcr -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe6f21240 mite_free_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xebbfac79 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xec3962fa mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf8f4a3ec mite_prep_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x169322fe labpc_common_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x9b16753a labpc_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x0fcb7adb labpc_free_dma_chan -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x6ad5648f labpc_drain_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x7e5a266f labpc_handle_dma_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xa44486ea labpc_init_dma_chan -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xdd998912 labpc_setup_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x01eb25c9 ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x12ebae5e ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x41c5c303 ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x7465a0a3 ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xa28f17be ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xb7eb2b23 ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xc49cb886 ni_tio_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xdb99e574 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xb589e4db ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xb90833b5 ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xdd709a05 ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xe3c888f7 ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xe69d9cfd ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xee512d66 ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x2cfb0297 comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x5926fa5b comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x5b54bb39 comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x7db27a5f comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x80aa6880 comedi_open -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xa804f28c comedi_dio_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xd67e1955 comedi_close -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xe4d713b3 adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x0231dc9e most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x07f3995b channel_has_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x0e7ab641 most_put_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x2aca1d72 most_get_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x40a2487c most_deregister_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x9eec5260 most_start_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xd24ebfbb most_submit_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xd78c29ad most_deregister_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xe2165a0d most_stop_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xef6617e4 most_register_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xfc77dba0 most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xfd5a2571 most_register_interface -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0ef1d765 speakup_info -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x16b2cbe5 spk_synth_flush -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x57caf90e spk_serial_synth_probe -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x5b6fd3f1 spk_var_store -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8d3753b8 synth_remove -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x983082a0 synth_add -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb35aaab9 speakup_event -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbfe749d6 spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc561c9d3 spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xcfaa1cb3 spk_synth_immediate -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe2ec6016 spk_var_show -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xfad944d8 spk_do_catch_up -EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain -EXPORT_SYMBOL_GPL drivers/uio/uio 0x29d446fc uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0xa466314b __uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xbfcd2d89 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x193a0c15 usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x8bb04352 usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xe88887d2 ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xf8a9f5ec ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x038e1192 imx_usbmisc_init -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x12e55423 imx_usbmisc_init_post -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x849b3e1a imx_usbmisc_set_wakeup -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x290d0cb8 ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x339143d3 ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x42673f2d ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x4905ea44 ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xa2085c05 ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xec014ff8 ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x04e4bfbf gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x06b3645b gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x16a44d26 gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x21372e25 gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x23539b4f gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3412b46c gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3c7be026 gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x497e6993 gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc2e14637 gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc589d66b gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd643f509 gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd66d4d50 gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd7f351f1 gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe644ff8a gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe99f4277 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x692041fb gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xa3897ad6 gserial_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xa9cfc807 gserial_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xfb39f842 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x0cbac216 ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x4d0ead73 ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xd922f02c ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0193856e fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x09d68470 fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1c9a603e fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x28f8fa3e fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4168f9af fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x44acfa93 fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x461cfb62 fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x546c7f99 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5ac7e556 fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x65d0a05f fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x69bb689c fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x85be7ca3 fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x987bc0cf fsg_config_from_params -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc20bbf29 fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xce943682 fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd468f882 fsg_common_set_ops -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe50ba088 fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xef486e0f fsg_store_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x212f9b6e rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x26718582 rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x26b3a124 rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6007ee49 rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x74de3af8 rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7b332b0d rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x82b1680c rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x95950108 rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb1927c01 rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb5deb9ec rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xda01917b rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xda23fccb rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe1ae1c1f rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe22dfd01 rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf97c96eb rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x00bc0e08 usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0179dc91 usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0547136d usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0b5b3781 usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1f92cedb usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2830e25e usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2b575264 usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x38c71ce0 usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4358e185 usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4496aa0e usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4b6b8dd2 usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x51273e6f usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5588d794 usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5ddd43f6 config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5fb6014e usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6b5066a5 usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6bf7d603 usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x77be8703 usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x82f3560e usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x874d181d usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x895d6498 usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8a0a12dc usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8afee11e unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8f856728 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9080114e usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xabf6b4ef usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb02ae625 usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb0dbd98c usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe176247e usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe3a52516 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xed304326 usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf51291ce usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1451bcf8 gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x204108b4 usb_udc_attach_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2a71bce5 usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4ea9a733 usb_gadget_probe_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5eadc517 usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x621357a1 usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7dbfd519 usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaca6d1dc usb_gadget_map_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc4ab7568 usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc9c4441d usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe1ac8da3 usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe8e9a35a usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf01090ad usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf34cd4c7 usb_add_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x864d3643 ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xc9f6ce97 ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x15bf4032 usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x32aee268 usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x49a7c031 usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5255ee18 usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5a09cf9d usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5bbbc95f ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x69c6c405 usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x80c075dc usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd1ad92a2 usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xf3e5fdea musb_interrupt -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x9770038f isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x381c3185 usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x09fd97bf usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0a649c31 usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x15305fe3 usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x39ec7e5c usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3fae5a7e usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x46a874b4 usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x535bd0d0 usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x56cb8020 usb_serial_handle_break -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x62f89df7 usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6c4bc557 usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6cbf6546 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6df0193c usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6facbea7 usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8a7ae2d5 usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8c4e9318 usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb23cf081 usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb3fd444d usb_serial_handle_sysrq_char -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc7478db0 usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc94a6beb usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd527de95 usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe1bb07e7 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0607e90e usb_stor_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x26792d95 usb_stor_access_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x29ac631c usb_stor_ctrl_transfer -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x36c0f4e2 usb_stor_bulk_transfer_sg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x375572cf fill_inquiry_response -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3cf44017 usb_stor_bulk_transfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x48ba5031 usb_stor_transparent_scsi_command -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x64d3a090 usb_stor_host_template_init -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6cfce202 usb_stor_probe2 -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7437e1c3 usb_stor_pre_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x79cf2042 usb_stor_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x910b4b04 usb_stor_adjust_quirks -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x925af3cb usb_stor_reset_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x95d6fd20 usb_stor_probe1 -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9a18d697 usb_stor_bulk_srb -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa4b73465 usb_stor_CB_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc0c857da usb_stor_control_msg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xcdd32bb1 usb_stor_set_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd333dae7 usb_stor_suspend -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xdab4f690 usb_stor_Bulk_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xdf045e99 usb_stor_CB_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe251b9b4 usb_stor_disconnect -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf2855450 usb_stor_Bulk_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf79e7449 usb_stor_post_reset -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1b55e908 usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x233810dc usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x430b66ee usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x434063e7 usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x57c855c6 usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x63a0956a usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x87906d47 usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9a9cc350 usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa44acd48 dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xdeac1c32 usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf6608941 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xfa5e90b9 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x1989418f rpipe_clear_feature_stalled -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x2ee5eb9b rpipe_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x5ca07abf wa_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xa5982173 wa_urb_dequeue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xa9a83084 wa_urb_enqueue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xbf569f16 __wa_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc543b60e wa_process_errored_transfers_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xee50b7d3 wa_dti_start -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf4654c3f wa_urb_enqueue_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0166aac8 wusbhc_b_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x044979d0 wusbhc_reset_all -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3ec437d8 wusbhc_mmcie_rm -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3ff25358 wusbhc_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x479bbf7c wusbhc_chid_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x5f4ec476 wusbhc_rh_control -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7b44c36d wusbhc_handle_dn -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f9cbcca wusbhc_giveback_urb -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x8aae882b wusbhc_rh_status_data -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x95ce94a6 wusbhc_b_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xc395e4cd wusbhc_rh_start_port_reset -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd25f4c01 wusbhc_mmcie_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe1b15dbd wusbhc_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfba5fb26 __wusb_dev_get_by_usb_dev -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x69b49d88 i1480_fw_upload -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xb51a5ca5 i1480_rceb_check -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xcff2582d i1480_cmd -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x21956035 umc_device_unregister -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x37fa68d0 umc_device_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x442d3cc1 __umc_driver_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x511ae61b umc_driver_unregister -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x7a309e0c umc_match_pci_id -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xb5f71cbb umc_bus_type -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xbc11bdf0 umc_device_create -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xfac0d94f umc_controller_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0060c372 uwb_rc_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0070677e uwb_rsv_create -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b8aad57 uwb_est_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x111f43e8 uwb_rc_get_by_dev -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x165f5ea6 uwb_rsv_get_usable_mas -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x19859568 uwb_pal_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1bdafbd3 uwb_rsv_modify -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1da412ec uwb_rc_cmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x324dd76c uwb_rsv_destroy -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3f0d6328 uwb_rc_cmd_async -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4cfc81eb uwb_rc_post_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d802a65 uwb_rc_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5283ad10 uwb_pal_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x59b5ac92 uwb_rc_ie_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5b5a5c7a uwb_rc_vcmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x600f7d19 uwb_rc_mac_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x68c69514 uwb_rsv_establish -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x70ac119b uwb_notifs_deregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x70c13981 uwb_rsv_terminate -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x76a89a1f uwb_rsv_accept -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x78e7dd43 uwb_dev_for_each -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dcfcd23 uwb_ie_next -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7ef10207 uwb_rc_get_by_grandpa -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8587051c uwb_est_find_size -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8809eb1c uwb_rc_dev_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8bc3c6de uwb_rc_put -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8d5e6770 uwb_rc_ie_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x968d89d9 uwb_radio_stop -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9a87981f uwb_rc_neh_grok -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa445a989 uwb_rc_reset_all -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xabb77ed3 __uwb_rc_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb1061fd4 uwb_radio_start -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb8173515 uwb_rc_pre_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc0b541f8 uwb_notifs_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xcea3453a uwb_pal_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xcfe0e12e uwb_rc_alloc -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd2747136 uwb_rc_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf9fe7c44 uwb_dev_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfe82c8ad uwb_rc_neh_error -EXPORT_SYMBOL_GPL drivers/uwb/whci 0x98d0a7f6 whci_wait_for -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0a01249d vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0c1be22d vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x28e67949 vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x37e6d9e7 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3e389b1d vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x41e8920a vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x558b8283 vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x661e7dac vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x68012882 vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x746d6e85 vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x81bcd114 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x886c5342 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x95d1d677 vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa6acbc55 vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xad86326f vhost_work_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb0f81e37 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb168d5bb vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb8880a8e vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb944d034 vhost_init_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc33d1f6c vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc6d9bf3e vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc9601dab vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe579d3ca vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe8a5e04f vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe9efb62a vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xea5ec785 vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xefcbf055 vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf09c3205 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf4bfdbc0 vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfe99f45a vhost_poll_start -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x08a89586 ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x326a9265 ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x68d6ee15 ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x94021bc1 ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x940dbdeb ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xb22ed8c5 ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xfdb86782 ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x082cf847 auok190x_send_cmdargs_pixels_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x1be91fd5 auok190x_send_cmdargs_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x4cad4bd2 auok190x_common_probe -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x5cf20387 auok190x_send_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x8606becb auok190x_send_command_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x8c86294f auok190x_pm -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x9df122b3 auok190x_common_remove -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xab089736 auok190x_send_cmdargs_pixels -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xb7d1f440 auok190x_send_command -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xd03e4b0c auok190x_read_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x629c02d7 fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xa3f859f7 fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xd201bb95 fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x052d53eb sis_free_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x7a4e80e7 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/w1/wire 0x0c556361 w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x1dbb2596 w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0x54e15a4d w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x8d51c7ef w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0x90510929 w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x949c7a7e w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xcd9b5f38 w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0xcf754ddd w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0xe0f7101e w1_touch_block -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x0c635519 dlm_posix_get -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x513af3ef dlm_posix_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc3b9331a dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock -EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x2690be18 nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x53af73c9 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x632a54f8 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa0bd6b93 nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xac5e58c3 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xee6392f8 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xfce7e6a5 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x029f669b nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x033be489 nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05b0dddb nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05ff6d68 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07e27d5c nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a125bee nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ad8a6f0 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c14c0f0 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f00f070 nfs_fs_mount_common -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11218680 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18b75d78 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2336605c nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x237f651b nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x241da659 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x245bbd04 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26754db7 nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29bd2770 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a6b77ce put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a7114ca nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f1f14e6 nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f60818f nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32f5990e nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x393964a4 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4670ddfd nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49deb56a register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b7d2757 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c8623e3 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d33e4d8 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ee11a43 nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f281c93 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4fc9be8a nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5167826e nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51e3f901 nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5215d9a0 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52631773 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5dac2713 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f5155d8 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x611243d5 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6187d9cb nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63367d8d nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66083572 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66f6559f nfs_set_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x676245ba nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e1571b6 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72ec33ed nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76b91309 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76edbb26 nfs_file_splice_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7732a67f nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x778224d3 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7925581d nfs_destroy_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a262ccb nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ada1b75 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b9ae862 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7bebf430 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e5c4826 nfs_fs_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f25a2b6 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80b55e76 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80fc3a5b nfs_file_fsync_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8569a6b7 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89bffc70 nfs_pgio_data_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a3f3051 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b851c8f nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9050a618 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90bd0200 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x944ffb13 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95a02256 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95b54573 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96c4ae35 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98114649 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98a0ddfd nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f3d5379 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa199cf7c nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2c6f4d1 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa48483a1 nfs_try_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa61c66aa nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6958f38 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6e7911e nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa90d4950 nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa14361 nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb06af14d nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb170e617 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb25cf806 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8692d29 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8c787f3 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbae5162d nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbbf5ff53 nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc251991 nfs_pageio_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbddbe520 nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe4b8df7 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe59215b nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0d4dedf unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc120d62e nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc36fc10c nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3d3e8e3 nfs_fill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc69aa19f nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb0c9fe8 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb5a4942 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd73aeec nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf2263be nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1909912 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd44108ea nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5c2caea nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6d7ad77 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd75e7d21 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda8e9806 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc4b1db0 nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd20a548 nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd515f18 nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde098afe nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe23d543b nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3e0081e nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe467a702 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe68f17b0 nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea5215f2 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb9d1257 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xecc20d4f nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed4a0440 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed9492b7 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1b0f772 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf383a548 nfs_clone_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf738fff3 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf75a898e nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf777bae1 nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7f556e2 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8ab8542 nfs_remount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xffdc664a nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x7c57d9b0 nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x01e97633 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0b4bfffe nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0d1f6154 pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x13080525 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1d9ec948 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1ffe9827 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x21c17762 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2ba30b02 nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e38a524 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x33889c02 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x367a01ff nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4043fd29 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x41b208a7 pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x44afde2d pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x45250139 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48c736be pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48cddcb6 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x50d928b5 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x588c07e7 pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5b1b57c8 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5b4b89b7 pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5d5c1cd0 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5edd7f84 __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c8ef69b pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b0aa67d nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b3c5190 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b84177e nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7ccd6f47 nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x87820c0b pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x88cad38a nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8cafa3ab nfs41_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8e950bf7 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96d47447 pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x977dcd07 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9c7d6dc2 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa04aa0c1 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa43982b8 pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa7c916c6 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab5f9543 nfs40_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb2bdbfe9 pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb42f1caf nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb69ba528 pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb8040bb3 pnfs_put_lseg_locked -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbb607447 _pnfs_return_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbd165b9b pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbd3aaca7 pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4197671 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc499047b nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc889368a nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcbecff92 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf24d1e7 nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0624b8f nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd2391ae6 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd48718f1 pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd576bffd __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd64c20fc pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe0ae3ce3 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xecf9e9bb pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf396341d nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf410f7a1 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf9b51239 pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x013f1bf7 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x3d5e7544 locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xa73344b7 locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x777ce1ba nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xaa61b059 nfsacl_decode -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1cb231d0 mlog_not_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x2ae52ecd o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x60cfe0aa o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x774faf1d o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9784473e o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa9c67a1b o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa9f5379a o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc471d144 o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf3da37d0 o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x255d43dd dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x3728352f dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4a66a79d dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x674492d2 dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x996599a4 dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xbb695ce0 dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x267b822f ocfs2_plock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x49664ca1 ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x8c71aa38 ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version -EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq -EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures -EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats -EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb -EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random -EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0x5f7bff43 torture_shuffle_task_register -EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait -EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop -EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end -EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init -EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init -EXPORT_SYMBOL_GPL kernel/torture 0xbe6b05d6 _torture_create_kthread -EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin -EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin -EXPORT_SYMBOL_GPL kernel/torture 0xd0e28ea9 _torture_stop_kthread -EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init -EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end -EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init -EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping -EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress -EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress -EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch -EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch -EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch -EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x3292b98b notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x45d01df9 notifier_err_inject_init -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x021957e1 raid6_datap_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x0f8a2742 raid6_2data_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xd4cb6873 raid6_call -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x201d8ea3 encode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x29fa419f decode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x57861324 base_inv_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x57d39367 base_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x882ce5fc base_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x9e0112d0 base_inv_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xaedfbb15 base_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xc8fca8a6 base_inv_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xd11741a1 base_inv_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xe3d900b5 base_old_false_key -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x05cb0970 lowpan_header_decompress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x4faf4556 lowpan_header_compress -EXPORT_SYMBOL_GPL net/802/garp 0x53e95889 garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0x56b80a94 garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0x7c3b565a garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x8acece4f garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xba6d352d garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0xc740e506 garp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x1d76fee7 mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x2bd859fc mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0x393b9137 mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x4f610ad9 mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x833ae593 mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0xb47f5797 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/stp 0x2430e254 stp_proto_register -EXPORT_SYMBOL_GPL net/802/stp 0x3ffbc60f stp_proto_unregister -EXPORT_SYMBOL_GPL net/9p/9pnet 0x9eff032d p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/9p/9pnet 0xe9c5aec0 p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier -EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier -EXPORT_SYMBOL_GPL net/ax25/ax25 0x4c1332be ax25_register_pid -EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast -EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x08785d78 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0a02f95e l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x1bc9de27 bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x421115fd l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x47123661 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x495683c0 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x675d6087 l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x80066cdf l2cap_chan_send -EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable -EXPORT_SYMBOL_GPL net/bridge/bridge 0x0d088e87 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x2e164c39 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x2e2ce435 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x57c5852c br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0x90c2363b br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb3918ae9 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xcbfe4504 br_deliver -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe69dcaeb nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x32e340df nft_bridge_iphdr_validate -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x9256ca7c nft_bridge_ip6hdr_validate -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1b1b1bf6 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d4e5054 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x24abd59a dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x264aa490 dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x29f222b8 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2ae82d9a dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x30d100d5 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x35d27bc0 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3bab6d76 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3c97b4d0 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4d14d39e dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5e4060bb dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x68baa2ff inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7cd13884 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fa35758 dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7ff9ef49 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x80a8d02a dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8f3957c5 dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9004e803 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa1580170 dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb297edeb dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb35c6acb dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb5e82d99 dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc0b7b890 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc3e38b0d dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc5086e39 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc647601f dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc74aa7c4 dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd41d5a45 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0xdc28411e dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xdf660bee dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe472cb32 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe64e9b6f dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf457577d dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1e531f41 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x297d62c0 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x2e2499de dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x49bd7be3 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x74a1bac2 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x8141397a dccp_v4_connect -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x0a0565d6 ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x1057a76a ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x13f6321a ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xa7312211 ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd58dfa29 ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ipv4/gre 0xa320db64 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xae0ef785 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3ae397f0 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5f646c90 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x62ba520b inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6caed486 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6fa3603c inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa131e2ca inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x91a8efb7 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0bb8669e ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1b684c90 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x26cec1cc ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x29b80923 ip_tunnel_delete_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x30b6379d ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x31a1d9d6 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x34f74a95 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x56290321 ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5a2cfb5f ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x664ed90c ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x99ce52c8 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xafd1658e __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb09145e8 ip_tunnel_ioctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd5beffe0 ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xec85fd6a ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x8e8d3726 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x5ac1a97f ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x57c3b391 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x126f766d nf_nat_ipv4_out -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x2aa73bea nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x62ae08c1 nf_nat_ipv4_local_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x76c68623 nf_nat_ipv4_in -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xa82fbb46 nf_nat_ipv4_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x46cd4588 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x30c5f2e1 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3c7fa36f nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x807fe7f9 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x8c34845e nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xd57ffa11 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0xeebf7af9 nft_af_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x073b2bf3 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x215e3daa tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x328a1a4b tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xdf2c61c3 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xed6f3576 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x53a9cd28 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x98f6921e udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xce995b1e udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe3f36b18 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x29b02575 ip6_tnl_dst_set -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x2d14fed5 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x486884bb ip6_tnl_dst_init -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x4936e3d4 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x6a2b2e88 ip6_tnl_dst_get -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x7a666d54 ip6_tnl_dst_destroy -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd87bddfa ip6_tnl_dst_reset -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x724c024c udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xc7db332f udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x85e3a0ca ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xa0d65ed0 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xb0b6c3e8 nf_ct_frag6_consume_orig -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x3fe5ca64 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x950a9b21 nf_nat_ipv6_in -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xb2553138 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xb36d2f22 nf_nat_ipv6_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xc7720cf6 nf_nat_ipv6_local_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xf139d458 nf_nat_ipv6_out -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0xfa1e8d41 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x042d4b3c nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x30c85a3e nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6be3d974 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x85564e1a nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xebaf26fd nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x88b70d5e nft_af_ipv6 -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0b86c87f l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0ea8000c l2tp_tunnel_closeall -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2717814e l2tp_session_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2ff007bb l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3b424809 l2tp_tunnel_find_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4cb222a1 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x584e45c8 l2tp_session_queue_purge -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6899687b l2tp_session_free -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8bf5990d l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8e42a507 __l2tp_session_unhash -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa20237d5 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa9f4681f l2tp_tunnel_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb8d9858d l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xba07b3c8 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe7a706cf l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfde9d29f l2tp_session_find_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xb9bdd855 l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1159fa2a ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x29ab0ddb ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2d7f98b2 ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x301516f5 ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x45b9cff2 ieee80211_iterate_active_interfaces_rtnl -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x498ae2db ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4a91aa0d ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x927506a5 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x93cae325 ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9db107ce ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa36992d6 ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa4f32c75 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xad0efcfd ieee80211_set_key_tx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbe22ef5b ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc8ba9036 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd9125121 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe335284b ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf9fa191d ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x4615175b mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7cff528b mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xa52bbaab nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc4adb4dd mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x07ff47c4 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x28a42057 ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x31ac79fb ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x33c3fde8 ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x36ebe0f7 ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x614618b9 ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x70691e62 ip_set_get_ip_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8bdf64ab ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x96782108 ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x99f5199d ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9a8aaeb7 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb6e184dd ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc0974350 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc6545f67 ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc7fd58aa ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf03665df ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x07365f77 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x4e9a0506 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x6a98e194 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xb0430413 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0780e117 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x114e1bc0 nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x14314243 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15f8755d nf_ct_l3proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x16143dcc nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x17d1d602 nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x243ec5ad nf_ct_expect_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2588ebc9 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b38c936 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2d5ccb0a nf_ct_l3proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2e2805f5 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2fdfbbca nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31e26668 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36f2c3f4 nf_connlabel_match -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3cd32743 __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x46dde551 nf_conntrack_l4proto_tcp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47d29cad nf_ct_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4a56bb2d nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b789b3a nf_ct_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4c20e719 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4d53681d nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4fef3bce nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x527d6f84 nf_ct_l3protos -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x53ea2e1d nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x556dfd12 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x560d21a0 nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x57cedd00 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d307d49 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x612f2840 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x63fe551e nf_ct_l3proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6619ba42 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x670d9a97 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x678d72df nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x690b95ad nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6ab1e84a nf_conntrack_l3proto_generic -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6b7f954a nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6cb91d85 nf_ct_expect_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e5d7a2c nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x72403dd6 nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x733ae6f5 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74eb87d3 nf_conntrack_l4proto_tcp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c279183 nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7cc60e96 nf_ct_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x81804d4c seq_print_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x847b83e8 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x88bedda8 nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a66c4fc nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8b26bca6 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8dcdecee nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8dd47564 nf_ct_l4proto_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x958a7c60 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x98c9e911 nf_conntrack_l4proto_udp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa0bfbbe8 nf_ct_l4proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7e5015e nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa8f1f34d nf_ct_l4proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa2965d5 nf_connlabel_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaaff8b93 nf_conntrack_l4proto_udp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xae049794 nf_ct_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb79ce315 __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbaeb1487 nfnetlink_parse_nat_setup_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbaef39d1 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc1c05a5d __nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc919a98b nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd4a1592b nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd5a5268f nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda533dcb nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda6e3590 __nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb69bb1d nf_conntrack_set_hashsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf7a9b27 nf_ct_iterate_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6884338 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe7b3468a nf_ct_l4proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe7ec6be8 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea87baa0 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeca74e95 nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee33b9e6 __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2b47f5a nf_ct_get_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf63bd132 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf74d788c nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa6db584 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff40b965 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x0e4b93ef nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xe25c6ddd nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x2b300fc3 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x00603e3d get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x2f81196f set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4bf5e76c set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7294ede0 set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x78f59a57 set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x83d484ec nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x900643f1 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x9abc5c12 nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xdd32f031 nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe5c168fa nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x95d53e64 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x24b99fb9 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x56989f1a nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x7b68e287 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x7f3b9cd1 nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x15b4ba20 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x7d2dd3d2 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x11b798c3 ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x25a2343d nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x25a86578 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x58364dfa ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xafceaf63 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc1cb7ead ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd0432473 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xeaa6959b nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x3684e8f1 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x8d1428dc nf_log_dump_udp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xb69acef3 nf_log_dump_sk_uid_gid -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xc69948c4 nf_log_dump_packet_common -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xdbd25a74 nf_log_dump_tcp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1857e967 nf_nat_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1dffc701 nf_nat_l4proto_unique_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1f60bdb9 nf_nat_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3473034a __nf_nat_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6ffc9e99 nf_nat_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa9422473 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb4dbd9dd nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd6940aa5 nf_nat_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xdd28f605 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x2582d868 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x58291ff9 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5c1eb4a4 synproxy_tstamp_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5f339439 synproxy_build_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90e600f9 synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x000e95cd nft_register_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x14d1db09 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4ba0811a nft_validate_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x579a92d0 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x63272b0d nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6d63d313 nft_unregister_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8c41c4c4 nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x95bcc0f3 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x977c8d0c nft_register_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb03d098d nft_set_gc_batch_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc077a08f nft_unregister_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcec3188f nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd71298d8 nft_unregister_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe600cd2c nft_register_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe60e955c nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xede090a9 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf99ec445 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x268c19fc nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x71bed094 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x77df399e nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x86fecda1 nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa40788dd nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xaa588979 nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xddd66127 nfnetlink_alloc_skb -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x2d89f484 nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x849b820a nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xa5fddc57 nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0xcd95b019 nfulnl_log_packet -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x3be0c4c5 nft_masq_init -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x3f86d46a nft_masq_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xd6a5b248 nft_masq_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x76bd8987 nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x7b747a99 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x9bc4beac nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xa39eb068 nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb10d13bb nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xd33a0adf nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x108a0343 nft_redir_init -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x190cab87 nft_redir_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xb6b6adf3 nft_redir_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x21a5960e nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xfdb7d045 nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x032ec094 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x07496dae xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x230ed448 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x41e51fba xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x469ef1f9 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4cdaad0f xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5c849975 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x74400549 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8ae62bb0 xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc5ac8cff xt_hook_unlink -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcc254ad1 xt_hook_link -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd2c1fed6 xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfc828847 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xff628737 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x00204983 xt_rateest_put -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x482b6a12 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x59979eb0 nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x811e8659 nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xc7b4b4f3 nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x18bae67f nci_uart_set_config -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x2009ea44 nci_uart_register -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xd83a6c78 nci_uart_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3352b33c ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3622ccff ovs_vport_deferred_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3d18bab9 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x4819d1b4 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6937e215 ovs_vport_receive -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6962addf ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x96b7f3de __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc3e40b4e ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc6147a58 ovs_netdev_detach_dev -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id -EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x0977910a rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x2da35ed5 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x2fd958bc rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x2fedd969 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x3b17844e rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0x4622b59b rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x4c70b216 rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x5bfbbbdf rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0x65b81cad rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0x6ac3863a rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0x7194834a rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x76e3ef32 rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0x77de74ad rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x80756350 rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0x80d63804 rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x80d7ffd8 rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0x8c2ba7a7 rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0x9137a0b4 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc68c9a42 rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xcefcb3a2 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0xd7a98625 rds_send_get_message -EXPORT_SYMBOL_GPL net/rds/rds 0xd805b776 rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0xda2c3a2d rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0xdf60ebad rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0xf9e1ddb0 rds_page_copy_user -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x2f1fe7cd rxrpc_register_security -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x6336b500 rxrpc_unregister_security -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x35f15397 gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x908de199 gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x9b3725ad svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0015be10 rpc_lookup_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03b75712 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04c8c98f rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0607dc17 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07d2cbf3 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x090e11bc svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x096e18c1 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0984dc39 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a8f4bb5 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0da06165 rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e8a203e sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f2a780f svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12cd1e32 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1304071b xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13a6b3ec rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x144c1d65 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16b631cb rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16cbc3d7 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16f62c4e rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x177c01ec rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x179ce266 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ab23862 svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c901a9e rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e4724da svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fb901ee rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2048907d cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x212278b1 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2137cd7c rpcauth_cred_key_to_expire -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23dd8dc9 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x265caeea rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2671e0bc rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27193b15 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x272527c5 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27afcbde svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27bc1f37 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27c17313 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2950aaa8 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a23212a svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2cb08237 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d611cea rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e5922f0 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fe6a94a xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x314bb273 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3180df64 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35912cf5 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3eba4913 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3edb4a21 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f19f093 xdr_partial_copy_from_skb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fee9b46 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x468ee243 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x487825a1 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48b0c8ac xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48bdd68f rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a932427 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d1566bb xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d73ae13 xdr_skb_read_bits -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f289985 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fb308a0 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50378f7a xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51337804 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x513a9637 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52e082a0 rpc_get_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x536ea294 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58a8e72e xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59864eba auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a447063 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a591ab8 xdr_buf_read_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5af39474 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b6f0cdb svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c195b56 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c71e636 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d54534b xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ee3a795 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f3a09d7 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fa96f32 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fe16606 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x611b083a rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65ee8ef7 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6719ff7d rpc_print_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x678d3ca0 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67dbdaef cache_seq_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67fbf078 rpc_rmdir -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69589613 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x696077b0 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a53556c xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a7fe8a6 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c678896 xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ef663ee rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72da8893 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73152c4a xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73ce26db xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x746d5e7f rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74eef4e3 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7541e527 rpc_lookup_cred_nonblock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7942516a cache_seq_stop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a8ed850 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b72c2a5 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c84f08d __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cd817a9 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e9d8d6f rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f18d437 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f33f67d rpc_task_reset_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f996329 xprt_set_retrans_timeout_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83a33141 xprt_lock_and_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83c9c5b7 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x846b86f3 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bf6eb51 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8dfea1a9 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e7dd552 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f2cb1f0 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f724611 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91ec27ea rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93a7c3fa rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93d1adbf cache_seq_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94b5ef08 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95a248ab rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x964aa006 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96cb43b8 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x977b5e2e auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x999a9bd6 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a77ef3d rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b03355c xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b79d0ab rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cd18949 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ef449af rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0119e2c xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1401b42 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1aef378 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4094822 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa51e4149 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa76aca32 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa84871c9 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9df5059 rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab9f6161 svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabee0379 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac270ef0 xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad2c522b rpc_protocol -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad2d9ddc rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaee2d464 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb099c600 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0fc7b6d xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb336607e xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb35b3fb8 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3b4c6cd xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb42eed94 rpcauth_generic_bind_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4454561 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb55c7778 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb653a753 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8071b30 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb984fa5c svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb8de063 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcf223b3 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf7ca292 cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfdba449 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc00d5c61 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2657182 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5d5278b rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc665160c csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc67ca113 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8599854 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc897791a svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb079ef3 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc19de6e rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc76e381 rpc_lookup_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd13db731 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd23ddc0a rpcauth_key_timeout_notify -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd33a02a5 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd51ed3f2 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7dfcf8c rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7f3c3a8 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdaac6bab rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbbe408d svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd6b720e rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddd52370 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde988720 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfc84dfc unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe30b106c rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe47bf569 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe53c3b8d xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5d90123 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe88f31e1 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeaf13fdc svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb086a16 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xededfab2 xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef0c21e4 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0e8ed28 sunrpc_cache_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2064479 xdr_set_scratch_buffer -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3feb5b6 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf72fa52d svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8a893aa xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9842996 xprt_set_retrans_timeout_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa434ffe svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfab3b7e4 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfba2175f rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd60b973 svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd916cdc svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfeb18197 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffd6f13d rpc_clone_client -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0cf0b144 __vsock_create -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2d2b20a3 vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x327e1640 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5112fcf0 vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x697180d8 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x74e91915 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x84dda092 __vsock_core_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8c4f660c vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bcfabb2 vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9c30a382 vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa58cf3c0 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xca7fc234 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcce85c04 vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd0225ff9 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf593c40a vsock_pending_work -EXPORT_SYMBOL_GPL net/wimax/wimax 0x0b7c0932 wimax_report_rfkill_hw -EXPORT_SYMBOL_GPL net/wimax/wimax 0x2f1bd690 wimax_msg_alloc -EXPORT_SYMBOL_GPL net/wimax/wimax 0x37724c99 wimax_msg_data_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0x4a9979c7 wimax_msg -EXPORT_SYMBOL_GPL net/wimax/wimax 0x5f94eb1f wimax_msg_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0x60ee2462 wimax_dev_add -EXPORT_SYMBOL_GPL net/wimax/wimax 0x905ad96f wimax_dev_init -EXPORT_SYMBOL_GPL net/wimax/wimax 0xa476b298 wimax_state_get -EXPORT_SYMBOL_GPL net/wimax/wimax 0xb51d0db2 wimax_state_change -EXPORT_SYMBOL_GPL net/wimax/wimax 0xc43fdc5e wimax_msg_send -EXPORT_SYMBOL_GPL net/wimax/wimax 0xd66e9b5b wimax_msg_data -EXPORT_SYMBOL_GPL net/wimax/wimax 0xe3246764 wimax_dev_rm -EXPORT_SYMBOL_GPL net/wimax/wimax 0xf4407f26 wimax_report_rfkill_sw -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x299636ab cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x368a678b cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3ac9a0c1 cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x72e16b23 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7d3487ad cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7d7fc9af cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x81e49e32 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x88d9aa50 cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb64cb3c4 cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc0bb5442 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc5dcf5cd cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xcc17257c cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe0ae7f93 cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x027238d9 ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x038cd9b4 ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x64e51a27 ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xe907fcaf ipcomp_output -EXPORT_SYMBOL_GPL sound/ac97_bus 0x577d944b snd_ac97_reset -EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x1834bfeb pmf_gpio_methods -EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x1b6b7819 aoa_codec_unregister -EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x404ce441 aoa_fabric_unlink_codec -EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x4173e569 aoa_fabric_unregister -EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x564dc32d aoa_fabric_register -EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x5d135bf2 ftr_gpio_methods -EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x84e8fd1b aoa_codec_register -EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xad8441d4 aoa_snd_device_new -EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xad8a831f aoa_snd_ctl_add -EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xf5cc1d9c aoa_get_card -EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x0a47bccd soundbus_add_one -EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x1de8fa4d soundbus_dev_put -EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x4632ef29 soundbus_remove_one -EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x5a6ac76e soundbus_unregister_driver -EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x6b06fb2d soundbus_register_driver -EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0xb5114c2c soundbus_dev_get -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x25eed31f __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xb1dd729c snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/snd 0x39523f74 snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0x44f6ba00 snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd 0x71c659c1 snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0x7ac7d4eb snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0x7f3b3a98 snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd 0xc3a339bb snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd 0xd8d5690d snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x285fa649 snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x424cec48 snd_pcm_stream_lock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x58c5b729 snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6ee4d0aa snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7336a19f snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x82cf00c2 snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x95190b40 snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe602a0c9 _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xeea7b785 snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x06bd8ac7 snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x23e2e548 snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x24fa0411 snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x26e3bc14 snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x29b52a08 snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2c9e6bde snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x45ce0c20 snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x82f421e1 snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9d7616b3 snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb42cb725 snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc4e5ba4e snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1c82de25 amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x64b4e620 amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x77c5c458 amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xab235dc1 amdtp_am824_set_pcm_format -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xac83a6db amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xbce4e3dd amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf3ea5909 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x04ff6b50 snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x067d4907 snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0b29208c snd_hdac_bus_remove_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x13ec1396 snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x14f5f12f snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1699cfa7 snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x173da215 snd_hdac_bus_queue_event -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x18d2d933 snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x275975d4 snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2f9ed8bb snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3c061269 snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3c31a938 snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3d217ad3 snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3f7f95c7 snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4586d620 snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x51037130 snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x52e1c13c snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x531175d6 snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5af8b143 snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5d8b7882 snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5e4e08ac snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6174b396 snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x68c6d94d snd_hdac_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6b1b5277 snd_hdac_refresh_widget_sysfs -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6b7d1f53 snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6baa0e54 snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6d38ecaf snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x72a51feb snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x74318406 snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7515da7b snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x752486f3 snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7c6d4862 snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x80812d18 snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x84ead9a4 snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x87974ecc snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x87e347df snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x89edbcd5 snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8bdb16ab snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x90602231 snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x917a20e0 snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x95126e08 snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x95c96d12 snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9c353af6 snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9dd0778e snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9eab6d80 _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9fbe531c snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa1123fc9 snd_hdac_make_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa2bd2228 snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa3b397e1 snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa41b5ec9 snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb80232c8 snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd25f086 snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd694bb4 snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd7c8ab7 snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc119ff06 snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc1b143a7 snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc1bf3ee6 snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcf08c49d snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd0dd74d1 snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd18447ca snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd68224e0 snd_hdac_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd738afa9 snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd98fe39a snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdfb2c343 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe43874ad snd_hdac_bus_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4fd71a2 snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf1a99440 snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf417cc27 snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf83fdf0b snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfdea2065 snd_hdac_bus_add_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfff8dbdc snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x02180cfe snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x2bb9753a snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x3fbff877 snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x40f0ff81 snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xf6271c5c snd_ak4113_create -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xfca431ff snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x03f4bf56 snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0481821d snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x07824ba7 snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x079936a0 snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0905a3c0 snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x09dd0d40 snd_hda_jack_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a490d56 snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e9944f4 snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10ad9452 snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10e5798b snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x113c3479 snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x129d611d snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13a88f0c snd_hda_jack_detect_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x14e1e994 snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15b7afd7 snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16699ae3 snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1af5052f snd_hda_bind_vol -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d4f6c83 snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e535e6a snd_hda_jack_detect_enable_callback -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1f8ced72 snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1fca7290 azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x210e6760 snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x22e6dd01 snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x238a95ce snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x23c3581e snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24190772 snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x25393e51 __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2552da3d snd_hda_jack_tbl_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x25eaa4aa snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2f32ee05 query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30e598ee snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x31ac41a7 snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x31c26716 snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x36fff320 snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x371e6845 snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b207e27 snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d647e3a azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x40d832c6 snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x457e44a9 snd_hda_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x477f40f3 snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4d6fbe9a snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x518d7310 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52afe1bd snd_hda_mixer_bind_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x537d6664 snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55d6194b snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x57ae086f snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d50231e is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f2dc0f0 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x608f498c snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x66125579 __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b8dee20 snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c204f6e snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x701ed591 azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x712b2521 hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x717dbf8d snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x721d1e9c snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x73fd82b2 snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x761b3b04 snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77e2b154 snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a942775 snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7acb4dc7 snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b560032 snd_hda_mixer_bind_ctls_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ba78c21 azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d363156 snd_hda_mixer_bind_ctls_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f73ac24 snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x801f4a3e snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8025f903 snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x82c64a39 snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86086cdc snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x87309e82 snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x87c7a7fd snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89b2fdbc snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e3c8227 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e996211 hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9059b44f snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9166901a snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9241fa2b snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x925e246c snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x946096bb azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96a41dfe snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x982249af snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98245455 _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a632c3b snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9bf0c458 snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ff04697 snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8386db4 snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa9cbe23d snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa04c696 snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xab3c47be snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xae585cd0 snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaeaf25a0 snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0a83f8b snd_hda_register_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4666905 snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb5403427 azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb64688c9 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9992d05 snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc2933bc6 snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc295452f snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc39237c5 snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc4e31f0b __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc53b9c3d snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9a18a38 snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9a325bf azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca82b190 snd_hda_mixer_bind_ctls_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce962247 snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd028dcae snd_hda_mixer_bind_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda05660a snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb01751b snd_hda_bind_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xddbfe8f7 snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xddf648a0 azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf57f1cf snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe0dbf718 snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe1b5c27b azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe2c432b0 snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe2fc4b92 snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe37b501f snd_hda_mixer_bind_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3d736f6 snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe850b58d azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeeb3dc48 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf24c4465 snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf585f3b1 snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf9467ea2 snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfa91af75 snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfdf3ec04 azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x07275992 snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x19a4b26c snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1f61d06e snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2d491d5f snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3e88bc32 snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4d94503f snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4e80e609 snd_hda_parse_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x52fd7310 snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x61414d11 snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x66a93241 snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7d5624bf snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x802e5018 snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x93c16a73 snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9d5c6166 snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb878d402 snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xcfac28a9 snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd3fd2b57 snd_hda_get_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdfc7fa0c snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf4e44f28 snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfb7485fb snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfc2fe3d7 snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x3eaa214b cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x8decf9b2 cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x0e71418c cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x8aed997d cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x25150b62 cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x52f75040 cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xdd2c5f64 cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xe025ab21 es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xeed96059 es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x0364460d pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x291a977e pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x80e06188 pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xe49c62c6 pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x1bd8dfca devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x4f9e2d70 sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x544afad0 sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x812d28a3 sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xca1037b5 sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x834b67a7 devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xb51c014d ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xe2934e4b ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x72460c31 tpa6130a2_stereo_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xde737814 tpa6130a2_add_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x197bac3a ts3a227e_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x16b85897 wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x360ea3eb wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xaf113473 wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xd0c2e2db wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x8d75c3c2 wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x68ea4d97 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x12e7f312 fsl_asrc_get_dma_channel -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xd3865d3e fsl_asrc_platform -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x30693bb7 imx_audmux_v1_configure_port -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x58631dab imx_audmux_v2_configure_port -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x01a1abd5 snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x028e8930 snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07224f3c snd_soc_add_codec_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0853ded2 snd_soc_get_dai_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09423157 snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ad6cacc snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b7fa374 snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0bbf00f4 snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0cb6fba8 snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ef5df94 snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13c22aab devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17d84d2b snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x181a4c20 snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18214292 snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18ee041c snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x197d345a snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a504473 snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c4698fb dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1de6363b snd_soc_platform_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e5ec86f snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20b2d07b snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x211f1381 snd_soc_platform_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x215bfae6 snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22197768 snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23386776 snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26374ff7 dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x27ad0e1e snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29fcae6f snd_soc_of_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2aa829fd snd_soc_add_platform_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c969291 snd_soc_lookup_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x30688497 snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3426ef48 snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x342fa94c snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x346bfbd3 snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3843cf2e snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3bc1efe1 snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3dea1497 snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e2386af snd_soc_of_parse_audio_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f5661ea snd_soc_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4094133a snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42154d8a snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4258d754 snd_soc_unregister_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42afb226 snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43522f50 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x437a17dc snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4701cd85 snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47a8cdb4 snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ad9af49 snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d8f0d58 snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d9d4ede snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x513fca85 snd_soc_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51621259 snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52c5f2da snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55f2f000 snd_soc_remove_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5676998e snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5907c815 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x592c90f7 snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5dd1e8da snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f8d4d6f snd_soc_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x642fb6a8 snd_soc_register_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65d5a6d4 soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66f852af snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c89f341 snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7052dfd9 snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x720d77a1 dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73fd8d0f devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74977734 snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74f537f6 snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x758214a3 snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7684fdab snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77d847df snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79021bff snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a6f1ff3 snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ca1e6c0 snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x804e6ae0 snd_soc_unregister_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x827065a5 snd_soc_dpcm_be_set_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84db6f31 snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a6f7af5 snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8bdc7d77 snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c857ece snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f1e0ec0 snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9083eb9e snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x91a65eb5 snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94e37bcc snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9596ffa9 snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98fd276e snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99d4a13d dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a09567b snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d72b87d snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0431167 snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa093d9b4 snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa154e315 snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2fc91d6 snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa657ad73 snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6a1f6f2 snd_soc_dpcm_be_get_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9682033 snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad2b9b99 snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf2f8f00 snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb1198b10 snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb249ea81 snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3023cd2 snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb41f1108 snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb523fed9 snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6097dd8 snd_soc_new_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb64972ac snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbcf66f23 snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd624a0a snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfb2686a snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2fd4639 snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3cd86ab snd_soc_codec_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6f05ac9 snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6f2e4ec snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc78e71e7 snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7bd652d snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7e11800 snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc908b576 snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcafa479d snd_soc_platform_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcbf9ce69 snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd376b30f snd_soc_free_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3c1d151 snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5bdc3bd snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd80d91c1 snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd88f3670 snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9a35568 snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda89efcc snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdcd529c0 snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf6b8997 snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe26cb04e devm_snd_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2e2f4f6 snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5f56012 snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6533045 snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe73541e7 snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8072fbb snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea6f841c snd_soc_codec_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee74f3dc dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xefceb1c0 snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0d190c2 snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1caf277 snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2663dd4 snd_soc_add_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf28e9689 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf39e42bc snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf67ad1c4 snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6a793c5 snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfab71be1 snd_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfca7a491 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfcbf20f0 snd_soc_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfdadc56d devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfdbf7cb4 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0c04b496 line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0fe638e7 line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x344d454d line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3fd95311 line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4504a4d0 line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4fe7136c line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x554caf61 line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5fe0505b line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb06d670e line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbaa026c1 line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xce15c567 line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xcedc6c8f line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd88249a0 line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe61c943a line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf681cdce line6_probe -EXPORT_SYMBOL_GPL vmlinux 0x002f4994 ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0x0040fdc9 da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x006cd378 device_init_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0x00cd81ea usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x00d032f4 gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x00e62a0d kern_mount_data -EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0x00f36c23 pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before -EXPORT_SYMBOL_GPL vmlinux 0x0109cfaf blk_queue_rq_timed_out -EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish -EXPORT_SYMBOL_GPL vmlinux 0x0120ee21 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x0126af62 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x013288da device_store_int -EXPORT_SYMBOL_GPL vmlinux 0x0158b331 nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0x016e780a of_resolve_phandles -EXPORT_SYMBOL_GPL vmlinux 0x0180acdc pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0x018f0405 __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0x0195fba9 btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0x01b67c2b component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0x01b8eb05 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x01bd5ec2 sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0x01d3c0e1 da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01e3a27d xfrm_inner_extract_output -EXPORT_SYMBOL_GPL vmlinux 0x021ebfda btree_update -EXPORT_SYMBOL_GPL vmlinux 0x02266ded clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x0232b73b arizona_set_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x02807ee2 irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x0293ba44 power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x02c03826 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0x02c83928 usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0x02da39f2 ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x02fbefff blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x02fef360 gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id -EXPORT_SYMBOL_GPL vmlinux 0x032b1d8f regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x032bfb47 noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0x03a48208 get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x03b6df43 flush_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0x03c3032f sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0x03d0eb1e regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode -EXPORT_SYMBOL_GPL vmlinux 0x03e5dec2 gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x03ea45db extcon_set_cable_state -EXPORT_SYMBOL_GPL vmlinux 0x03f6a322 fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0x03ff41b2 sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0x040eefdc shmem_add_seals -EXPORT_SYMBOL_GPL vmlinux 0x0418f697 __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0x041f7397 bdev_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x042e3afd rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0x043e2c37 devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0x044f20db crypto_unregister_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x04769092 mpc8xxx_spi_rx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x049ca56d dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x049ec1ce inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x04a436f1 ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0x04b5549c __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04ccea8f blk_mq_cancel_requeue_work -EXPORT_SYMBOL_GPL vmlinux 0x04d1351f fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x04f4bd8d percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x050356a1 wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0x0511385c ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0x05224213 pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0x052a1248 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0x05306bfe for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0x05420535 subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x055d3d23 phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0x057c5500 ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0x058b4158 class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0x058f7593 dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x05eab43e devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x05f7cc30 extcon_get_cable_state -EXPORT_SYMBOL_GPL vmlinux 0x05f7e04c dax_do_io -EXPORT_SYMBOL_GPL vmlinux 0x0602dcc7 led_trigger_show -EXPORT_SYMBOL_GPL vmlinux 0x061dee59 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x06322011 devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x0644849b regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x064a9db0 ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x06aa8dbb anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x06b3a1cd set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x06cb0d15 pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0x06da7cc6 devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0x06f09be8 rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0x06f979c3 blk_mq_tags_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x07569876 pci_cleanup_aer_uncorrect_error_status -EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x076c12ce usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x0778cacc usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x078be6c8 rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char -EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07daebfc flush_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0x07e21cf6 ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x07f3d207 sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0x08304595 gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x08362871 kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0x084b3c0d ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x08931b49 mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x0895e4f8 xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0x08b8cc52 gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x08bc16c0 pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x08c3dba6 of_pci_find_msi_chip_by_node -EXPORT_SYMBOL_GPL vmlinux 0x08dba350 sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x08e0499d mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x08e16d89 tps65912_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x09136027 __netlink_alloc_skb -EXPORT_SYMBOL_GPL vmlinux 0x091c824a machine_power_off -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x09253ad8 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0x0927b157 wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0952ab9b tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x09703ec3 perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0x0981c587 __ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0x098485b3 ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0x09c1db33 ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0x09cab94e __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x09d1808d blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0x09fb65c5 rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0x09fffa9a led_init_core -EXPORT_SYMBOL_GPL vmlinux 0x0a118763 wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x0a124931 bpf_prog_get -EXPORT_SYMBOL_GPL vmlinux 0x0a158216 mpc8xxx_spi_tx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x0a2cd6d1 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x0a51ae5b virq_to_hw -EXPORT_SYMBOL_GPL vmlinux 0x0a5a03a5 fuse_get_req_for_background -EXPORT_SYMBOL_GPL vmlinux 0x0a713e9f relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0x0ad1570c shash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x0af2d6c8 lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0x0af92141 pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0x0afd4610 zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0x0b054777 irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b0d2c01 __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0b345f6f usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x0b42ae90 usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0x0b5eac94 of_pci_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0x0b72ed5a fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0x0b79af42 xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0x0be1ae64 ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x0be1bdfb uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0x0bf1735f ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0c1332cb ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0x0c19759c spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x0c2e013f regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0x0c40bf49 usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0x0c450e01 agp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0x0c59d20e device_attach -EXPORT_SYMBOL_GPL vmlinux 0x0c6688a8 usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0x0c6edb8a register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x0ca0a5a2 led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x0cb2228b blocking_notifier_chain_cond_register -EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x0cc55a36 of_get_regulator_init_data -EXPORT_SYMBOL_GPL vmlinux 0x0cc97286 __sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x0d059e64 static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0x0d1832ce arizona_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x0d1b2178 regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0x0d3601c9 md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d73a952 GregorianDay -EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x0d818d69 of_pci_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x0dac389e ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0x0db9c1b6 bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x0dba4f50 irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0de06988 cpu_first_thread_of_core -EXPORT_SYMBOL_GPL vmlinux 0x0de550c9 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0x0de92f91 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x0decf774 of_irq_parse_one -EXPORT_SYMBOL_GPL vmlinux 0x0e0be4e5 usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x0e0c9aba power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x0e2fb7c3 of_property_count_elems_of_size -EXPORT_SYMBOL_GPL vmlinux 0x0e5a4833 pci_bus_sem -EXPORT_SYMBOL_GPL vmlinux 0x0e758c87 root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0ec85e00 fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0x0eea181d device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x0f16c01a kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0x0f289ac1 look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x0f4191c8 elv_register -EXPORT_SYMBOL_GPL vmlinux 0x0f465637 powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0x0f55ceb8 set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0x0f56bb33 usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x0f6bace8 bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0x0fa6ff5f cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0x0fb2a4e4 blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0x0fb3036b wm8997_patch -EXPORT_SYMBOL_GPL vmlinux 0x0fc01e9f static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x0fc3fb2b iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0x0fe39864 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x0fe54b91 usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x0ffb8542 virtqueue_get_avail -EXPORT_SYMBOL_GPL vmlinux 0x0ffc23e5 mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0x1005ceed wm8400_block_read -EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x1025e8ae usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0x10266be8 ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0x105c8129 power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0x1067bfdf device_create_file -EXPORT_SYMBOL_GPL vmlinux 0x10832457 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x1095421b skcipher_geniv_init -EXPORT_SYMBOL_GPL vmlinux 0x10a0b312 of_irq_get -EXPORT_SYMBOL_GPL vmlinux 0x10c4b8b1 regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x10ec4815 of_irq_to_resource_table -EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x10f5bab9 __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x10fa5b97 skcipher_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1100078b __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0x1114011d threads_shift -EXPORT_SYMBOL_GPL vmlinux 0x11287138 set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x112fbc2b irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0x113ecc36 register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x115d16e6 __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x1160f656 ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0x1160f88a dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0x1168e16e ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0x11820a97 pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0x118dcaae usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0x11946724 pcibios_free_controller_deferred -EXPORT_SYMBOL_GPL vmlinux 0x11b20ccb tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1222d762 adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x12237072 cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0x12337332 dma_buf_kmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0x12480e57 cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0x124be9be device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x12a4c4ef devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0x12b00f5c pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x12b30780 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x12ca8e17 io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x12cf45c5 led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0x12e5952c validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x12ec109d bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x1327d1a5 ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1332639b device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x13354608 scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0x1337635a early_find_capability -EXPORT_SYMBOL_GPL vmlinux 0x13476dae device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x134e04fd regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0x13513937 posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x1352a36c tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x136a4ee6 btree_init -EXPORT_SYMBOL_GPL vmlinux 0x13874540 phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x13bb9963 ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x13cd3ee3 regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0x13d3fe89 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0x13e5ea13 __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0x13f09b51 ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x13f7932b devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x13ff4076 ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0x14258c6f ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0x1427e96f rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0x142f240e pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x14467ebd tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0x145fa512 ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0x14680dc3 usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0x146840bb fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1489a360 pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x1493de94 __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x14a4fe1d gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x14b1e62c bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0x14b6ca3e ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0x14caa055 get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x14cfd311 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0x14f17e8d __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x15079f19 i2c_new_probed_device -EXPORT_SYMBOL_GPL vmlinux 0x152d9fbb unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x15449ed4 __blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x159debe1 fuse_put_request -EXPORT_SYMBOL_GPL vmlinux 0x15b4024c show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x15c21e5e nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started -EXPORT_SYMBOL_GPL vmlinux 0x15f0ada7 regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x162141ee add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress -EXPORT_SYMBOL_GPL vmlinux 0x167fcdb1 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0x16a3ac75 aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x16a893a9 dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0x16ab15aa of_property_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0x16addbba gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x16cce4b9 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x16ed532f usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0x170a0397 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0x170fbd56 arizona_dev_exit -EXPORT_SYMBOL_GPL vmlinux 0x173dd044 sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0x17405494 mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0x177653ee regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x17798326 crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0x177b6951 rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x178ac8f4 dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x17a80d54 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0x1827dbda ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x18570516 pmac_i2c_xfer -EXPORT_SYMBOL_GPL vmlinux 0x1857fcca regmap_fields_force_write -EXPORT_SYMBOL_GPL vmlinux 0x1865e3c1 dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert -EXPORT_SYMBOL_GPL vmlinux 0x188fc453 __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x189643c8 perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0x189d65c2 dax_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0x18d800de blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0x1902dfa7 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x190fa2af tps65217_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x19153449 tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x19220fa7 fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x1933c07f blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x19417a26 driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x194d467d dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x195ec000 wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0x197758f7 irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0x198dce56 sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x1990f8ff pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x199b0dda ping_proc_register -EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19ad2ee6 task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x19b72635 blk_mq_free_hctx_request -EXPORT_SYMBOL_GPL vmlinux 0x19c8740a bdev_read_page -EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x1a1c4082 mod_delayed_work_on -EXPORT_SYMBOL_GPL vmlinux 0x1a2253b2 sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0x1a2d4aea inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0x1a692213 register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x1a6abea6 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0x1a8c5907 btree_insert -EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table -EXPORT_SYMBOL_GPL vmlinux 0x1a9c816b sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x1ab5943a xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x1ab84679 xhci_run -EXPORT_SYMBOL_GPL vmlinux 0x1abac3c0 blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0x1ac5ac09 cpu_add_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing -EXPORT_SYMBOL_GPL vmlinux 0x1adeeddf get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0x1ae202fe iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0x1aec5b38 gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x1b070bca vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0x1b0d2c11 sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0x1b1216e0 ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read -EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return -EXPORT_SYMBOL_GPL vmlinux 0x1bb14657 regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0x1bb9a855 led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0x1bf33454 spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0x1c037419 pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0x1c2260ad of_irq_get_byname -EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c575426 of_console_check -EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c62c0bc gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 -EXPORT_SYMBOL_GPL vmlinux 0x1c854d6f rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1cb08bfc shash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x1cdd5440 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0x1cebef0b serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0x1cf7c44c ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x1cf82066 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x1cf85224 security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0x1d08189f regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d4d6f0a spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings -EXPORT_SYMBOL_GPL vmlinux 0x1d70984f percpu_up_read -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x1d977b2a dm_get_rq_mapinfo -EXPORT_SYMBOL_GPL vmlinux 0x1da1c9be blkdev_write_iter -EXPORT_SYMBOL_GPL vmlinux 0x1dc0abd4 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x1dc3df43 tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0x1dcb89ca swiotlb_tbl_sync_single -EXPORT_SYMBOL_GPL vmlinux 0x1dda10b3 stmpe_enable -EXPORT_SYMBOL_GPL vmlinux 0x1ddf7f7c of_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x1dfbcf4c mpic_msgr_disable -EXPORT_SYMBOL_GPL vmlinux 0x1dfd6b64 usb_phy_generic_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1e12b90b crypto_alloc_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x1e470b34 vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0x1e4f03cc blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x1e5740f0 __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1e5b7b6b ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0x1e78db65 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1e91891b unlock_media_bay -EXPORT_SYMBOL_GPL vmlinux 0x1ea132d0 tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x1ea3e64d crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebe814f sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ee17dcb pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1eec3c77 unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x1f185dc7 devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0x1f18f6fb pci_ats_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x1f1a8715 rhashtable_insert_rehash -EXPORT_SYMBOL_GPL vmlinux 0x1f753807 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0x1f7fcfb4 sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0x1f826743 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x1f9f8919 crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x1fa5531b regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0x1faf462b regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0x1fb46a32 device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x1fc18f82 pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x1fca9865 dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0x1fd22189 ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0x1fd33c90 debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0x1fe016fd find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0x1fefbfee devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2014cd02 sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x20381fba class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2049bab8 __destroy_context -EXPORT_SYMBOL_GPL vmlinux 0x208bbadb __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0x20ac5497 udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x20aed767 arizona_of_get_named_gpio -EXPORT_SYMBOL_GPL vmlinux 0x20bad7a2 devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x20c9fcdd cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0x20cfed14 ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x20d1fd38 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0x20f726c5 blkg_stat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x210a154a pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x21175c17 relay_close -EXPORT_SYMBOL_GPL vmlinux 0x21220d6a device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x2128ec12 pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0x213d4218 crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x21476f7d dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0x214ec0be led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0x21516587 usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0x217ce4d0 gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0x2197f67d wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x219c494e tpm_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x21abddd1 usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0x21ad030e inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x21ca74b0 irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21db7d59 dma_request_slave_channel_reason -EXPORT_SYMBOL_GPL vmlinux 0x2215c777 __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0x2219cdd6 ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x221e6aa7 task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0x2228c63e relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0x223d9b97 device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x226bbd29 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x228e4491 pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x2292dbb5 gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 -EXPORT_SYMBOL_GPL vmlinux 0x22f70a85 mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x232394a4 skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x23254467 usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0x23434e14 devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x23a17474 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0x23b34bdb user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x23cb28a4 pcibios_scan_phb -EXPORT_SYMBOL_GPL vmlinux 0x23cfa2a4 call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x23d74717 usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x23f684b4 i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0x2406dae3 pci_address_to_pio -EXPORT_SYMBOL_GPL vmlinux 0x240cd829 gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0x2426389f transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x243245a5 skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0x243b9e7a of_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x244376e3 __compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x248180ff rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0x248680ea devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0x248c35e4 sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x24a2c103 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x24a39a52 dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key -EXPORT_SYMBOL_GPL vmlinux 0x24d53d11 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset -EXPORT_SYMBOL_GPL vmlinux 0x2504558c pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x250532d0 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x251868ee tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x2583880d usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0x259f0afa ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0x25ae9f15 fsnotify -EXPORT_SYMBOL_GPL vmlinux 0x25e1ab04 crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x25e7c6d8 sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0x25ff93b7 extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x26085a7e pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x260a50b4 xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x260a6689 ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x261acd60 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0x262c1c88 of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock -EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x265b01fc ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x266fe9e4 adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0x267217d0 mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x268efd43 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x2691412e boot_cpuid_phys -EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x26c2ab35 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26e1051e tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x26f4ea4a evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0x26f6b3eb register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x26fc2ce5 device_show_int -EXPORT_SYMBOL_GPL vmlinux 0x26fe544f shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x271e3ddf pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x2722c1d2 rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x2728e9d1 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x27306e85 regmap_write -EXPORT_SYMBOL_GPL vmlinux 0x2734ff7e device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0x27425071 inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x274a0b22 __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x2756d7a1 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x275eaa8c of_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x276e8936 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0x2790b960 crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0x279ba620 fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info -EXPORT_SYMBOL_GPL vmlinux 0x27caed93 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x27eb0bd3 tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x287e9c73 device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x28a421c8 pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0x28a4fc87 extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x28ae087c tc3589x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x28b9efe3 rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0x28be7c5d pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x28f13445 stmpe_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x28fb1005 vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x2940df6c ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0x294e5702 sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0x2964965b of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x29691840 crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0x2986beec ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0x2996fbf5 crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0x29b84d8b of_thermal_get_trip_points -EXPORT_SYMBOL_GPL vmlinux 0x29e1c566 usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29f3c9db pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x29fe9794 macio_find -EXPORT_SYMBOL_GPL vmlinux 0x2a3e6b28 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0x2a4b2f8b cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2ad1a519 ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0x2b031c27 attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0x2b448a5f dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x2b5c303b smp_send_reschedule -EXPORT_SYMBOL_GPL vmlinux 0x2b6e2500 tps65912_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x2b7a574f md_is_badblock -EXPORT_SYMBOL_GPL vmlinux 0x2b7f2abf device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x2b9158e2 unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0x2b998af1 crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0x2bc73e0c ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x2beef0d4 phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0x2c0e3d92 flush_altivec_to_thread -EXPORT_SYMBOL_GPL vmlinux 0x2c1060ae ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0x2c114c75 __bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c2f5412 pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c4d8662 get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c8ff7f7 arizona_clk32k_disable -EXPORT_SYMBOL_GPL vmlinux 0x2c93779a blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x2c97c085 unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2c984c83 tps65217_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x2cbf876e usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0x2cc3e675 pmac_i2c_close -EXPORT_SYMBOL_GPL vmlinux 0x2cdfeea3 pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq -EXPORT_SYMBOL_GPL vmlinux 0x2d01df73 arizona_clk32k_enable -EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d25b9c1 thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2d383035 regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d472697 ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers -EXPORT_SYMBOL_GPL vmlinux 0x2d5f6003 __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x2d702c11 virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0x2d845153 __securityfs_setup_d_inode -EXPORT_SYMBOL_GPL vmlinux 0x2d85719d sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x2d9cf524 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2dba9ddd cpufreq_table_validate_and_show -EXPORT_SYMBOL_GPL vmlinux 0x2dc5a6d1 btree_last -EXPORT_SYMBOL_GPL vmlinux 0x2dd5f295 regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0x2de15443 virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0x2de379be dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0x2de681b6 system_verify_data -EXPORT_SYMBOL_GPL vmlinux 0x2de8ea35 gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x2e0a990c led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0x2e0ee7b2 generic_access_phys -EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2e3e1cd2 devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x2e40db56 gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x2ea5cc82 register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x2ea9ee20 kill_pid_info_as_cred -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ec2208a bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2ed58aec regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0x2eef3638 pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x2ef4d512 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0x2ef6b5bf smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f327c91 bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x2f3a9c79 tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0x2f3b4d7b dma_buf_kunmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register -EXPORT_SYMBOL_GPL vmlinux 0x2f4d4f25 regmap_field_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x2f5f708e arizona_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x2f68bd65 ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0x2f6b3166 ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0x2fa54043 serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake -EXPORT_SYMBOL_GPL vmlinux 0x2fe81213 rt_mutex_timed_lock -EXPORT_SYMBOL_GPL vmlinux 0x2ffb5ff7 btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0x300774dd debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0x3033c756 scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0x304d6c24 regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x30670fd0 cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0x3067d786 md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0x307ac4d8 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0x309224ba cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x30b3defb simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x30c489b5 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock -EXPORT_SYMBOL_GPL vmlinux 0x311d64cd gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x3126f1ed pmf_do_functions -EXPORT_SYMBOL_GPL vmlinux 0x31337db0 ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0x314013a3 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x314398ad platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x314f336f perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0x314f75d9 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x316113ba ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0x31948af9 devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put -EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31f1818c ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x320516ad sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0x32123103 pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x32251cc0 regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x322c5b06 kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x32859d29 regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x3287327f trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update -EXPORT_SYMBOL_GPL vmlinux 0x32a498d3 pci_enable_pri -EXPORT_SYMBOL_GPL vmlinux 0x32adf849 __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x32b49367 gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32cf307a platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0x32d2df07 devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x32e8d899 devres_get -EXPORT_SYMBOL_GPL vmlinux 0x330b7b06 trace_buffer_unlock_commit_regs -EXPORT_SYMBOL_GPL vmlinux 0x3332e924 usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x3345623c usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0x3349e169 genlmsg_new_unicast -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition -EXPORT_SYMBOL_GPL vmlinux 0x3372be06 ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0x337786fa usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x33a6e009 usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0x33e545df class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x33e7b7bd regmap_fields_write -EXPORT_SYMBOL_GPL vmlinux 0x340d5346 trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x341bed8c rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x342a57b0 sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0x346c3b4e ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0x347191d6 usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x347682ce snmp_fold_field64 -EXPORT_SYMBOL_GPL vmlinux 0x347b7919 adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get -EXPORT_SYMBOL_GPL vmlinux 0x348a5808 regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x3495ca0f pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x34b8547d crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x34eaa3ab crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0x350d243e regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched -EXPORT_SYMBOL_GPL vmlinux 0x351db97b pmac_i2c_match_adapter -EXPORT_SYMBOL_GPL vmlinux 0x3543095a pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x35c836aa pstore_register -EXPORT_SYMBOL_GPL vmlinux 0x35cf121c crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0x35d14896 of_get_nand_ecc_step_size -EXPORT_SYMBOL_GPL vmlinux 0x35d27938 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x35e70efe ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x362bbd45 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0x3635d7ae crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0x363c5a58 usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x36584580 hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0x36600acf crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x368c3c45 mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x368d965d tpm2_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x369ab809 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36a8473a sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x36be338e usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0x36c0b647 ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x3701481f of_dma_router_register -EXPORT_SYMBOL_GPL vmlinux 0x3720492e __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x372164e3 usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3748c6d5 crypto_init_spawn2 -EXPORT_SYMBOL_GPL vmlinux 0x3751d32a ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0x37605557 mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0x378b8679 __blk_put_request -EXPORT_SYMBOL_GPL vmlinux 0x37b03d6c da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x37ee8f0e crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0x37f78a59 ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0x37fa6edf pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0x37fc8a41 reservation_object_get_fences_rcu -EXPORT_SYMBOL_GPL vmlinux 0x3811fab2 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0x3814516c regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0x38364f79 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x3846b48f thermal_notify_framework -EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy -EXPORT_SYMBOL_GPL vmlinux 0x3868afff dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0x389b3600 pmf_get_function -EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x39083c63 transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x39190bf7 tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0x392861d2 rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x3935cb67 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0x3946dd9b usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0x39632fe2 blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0x398de491 spi_master_resume -EXPORT_SYMBOL_GPL vmlinux 0x3996879c sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0x39c87921 mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current -EXPORT_SYMBOL_GPL vmlinux 0x39db1b2f __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x39dfad44 fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module -EXPORT_SYMBOL_GPL vmlinux 0x3a1917be get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x3a241906 rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0x3a373a60 wakeup_source_drop -EXPORT_SYMBOL_GPL vmlinux 0x3a37aeda dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0x3a4a5d96 pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a6e4a30 blk_mq_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x3a84db4b vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3ab0186a __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3ac8de53 get_kernel_page -EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3ad1084f sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x3ad5e04c __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0x3af4bcbe serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x3b14f0d3 input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0x3b6b01a3 pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0x3b8bf9f8 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0x3bc88935 ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x3be067a0 sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x3be41fa4 dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x3c40796a regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x3c484b99 pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x3c7e71bc ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x3c8e816f spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag -EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3cdb3e25 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d46145c crypto_register_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x3d68b393 sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0x3d837c35 wm5102_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x3daccfd7 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match -EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab -EXPORT_SYMBOL_GPL vmlinux 0x3dd0b2c8 tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3dd4d3a7 bprintf -EXPORT_SYMBOL_GPL vmlinux 0x3ddd1928 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x3de27534 sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3dec7901 fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0x3df3c176 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x3e429809 crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0x3e4b8902 rio_lock_device -EXPORT_SYMBOL_GPL vmlinux 0x3e568e97 devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e80bcbf fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0x3eb78e7f devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x3ecb9ac0 trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0x3edda0be subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0x3ee16fdf class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x3eeb9baa __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x3ef90479 crypto_init_spawn -EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0x3f07bb9d percpu_ida_free_tags -EXPORT_SYMBOL_GPL vmlinux 0x3f12cd9f ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x3f16da4e fuse_request_send -EXPORT_SYMBOL_GPL vmlinux 0x3f1cb321 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0x3f47affb firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0x3f530f57 rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x3f62c019 dm_get_table_device -EXPORT_SYMBOL_GPL vmlinux 0x3f8db004 rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x3f9a5d67 rhashtable_walk_start -EXPORT_SYMBOL_GPL vmlinux 0x3f9cb442 ablkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x3f9e2180 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0x3fbfeec5 crypto_init_ahash_spawn -EXPORT_SYMBOL_GPL vmlinux 0x3fc00976 ping_seq_fops -EXPORT_SYMBOL_GPL vmlinux 0x3fc4b15d regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x3fdbb8e5 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x40027974 driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0x4005e6af blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0x403c3a38 ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0x404a34fa pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0x405b52ff devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources -EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x40a608bf alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x40b5bfc1 __blkdev_driver_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x40caf257 fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x41162f4c metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x41424028 da903x_read -EXPORT_SYMBOL_GPL vmlinux 0x415f1428 exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0x416e1a34 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0x417e5bd2 get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x41a7c762 sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0x41aa026c __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0x41aa33a5 usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x41d3ac68 ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x41d7fd20 pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0x41f31845 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x42290e5a tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0x42361032 usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0x42367721 of_irq_find_parent -EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags -EXPORT_SYMBOL_GPL vmlinux 0x426994a0 dma_buf_kmap -EXPORT_SYMBOL_GPL vmlinux 0x427a066b trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x427d96e2 ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x4283074b raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x42919cf0 posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x42b364ef scatterwalk_done -EXPORT_SYMBOL_GPL vmlinux 0x42bdc70d i2c_lock_adapter -EXPORT_SYMBOL_GPL vmlinux 0x42d1478f rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0x42dcc114 da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x42e33a9a cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x42e57285 rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x4313f6a0 perf_trace_buf_prepare -EXPORT_SYMBOL_GPL vmlinux 0x43178b16 i2c_generic_gpio_recovery -EXPORT_SYMBOL_GPL vmlinux 0x432e7ef9 pmf_call_function -EXPORT_SYMBOL_GPL vmlinux 0x4349ff34 device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x434c565e netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4352226a device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0x4357a9c8 task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0x435ac5ae mpc8xxx_spi_tx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x435e5331 pmf_unregister_irq_client -EXPORT_SYMBOL_GPL vmlinux 0x4364db59 rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x436cd480 tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key -EXPORT_SYMBOL_GPL vmlinux 0x43aa8006 debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x43b3e57e devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0x43bd5353 pmf_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x43c9bada ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x43d13be2 ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift -EXPORT_SYMBOL_GPL vmlinux 0x4412c371 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0x44228f8c gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x443fdbf2 cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x4454a1c1 wm5110_patch -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x44871fe3 regmap_write_bits -EXPORT_SYMBOL_GPL vmlinux 0x4491244b pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0x449f7a15 napi_hash_del -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44c27b03 of_get_nand_bus_width -EXPORT_SYMBOL_GPL vmlinux 0x44d39637 stmpe_block_read -EXPORT_SYMBOL_GPL vmlinux 0x44eff47d percpu_ida_free -EXPORT_SYMBOL_GPL vmlinux 0x44f052fc scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0x44f62869 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0x451ff850 scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x452ff997 spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0x4534451d virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0x4542cb33 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x45606e41 sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x4578612e input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0x458b9e81 input_class -EXPORT_SYMBOL_GPL vmlinux 0x45984a01 dma_buf_vmap -EXPORT_SYMBOL_GPL vmlinux 0x45a5c8de usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0x45a8159f ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x45c140b6 pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x45da5362 rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x461544f2 wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x46438545 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x46661bda trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0x4668dc4d device_rename -EXPORT_SYMBOL_GPL vmlinux 0x4688c96a usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x46921490 scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0x4699fe7c ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x469c1535 pmf_find_function -EXPORT_SYMBOL_GPL vmlinux 0x46a19902 extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x46b1f0ca dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x46b9baa3 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0x470cc5b7 palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x47733b9c __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47bba9c8 gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0x47c5e8d7 pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0x47e2edc3 __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0x47f4b6ff regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0x47fe3420 usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x48389204 inet6_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0x4839beb8 wm8997_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x483bea48 wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0x4845963e usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0x48529b65 usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x48577abf blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0x4862bd8c cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh -EXPORT_SYMBOL_GPL vmlinux 0x4870fb74 unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x48783db8 __class_create -EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0x487d939b regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0x4883df35 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0x48dee0e3 sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x48eb0a00 dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0x48eb7af0 put_device -EXPORT_SYMBOL_GPL vmlinux 0x48f1e780 power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0x48f97578 blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x49169035 irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0x49218a4f tc3589x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x492d48cb rtc_irq_unregister -EXPORT_SYMBOL_GPL vmlinux 0x493e5ee8 gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0x4943a338 __init_new_context -EXPORT_SYMBOL_GPL vmlinux 0x49756a52 devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0x49768030 usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0x49771793 pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x498f41c8 uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x49935aeb blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0x499b09f2 thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0x49d613b7 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4a2547c2 threads_core_mask -EXPORT_SYMBOL_GPL vmlinux 0x4a399605 inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name -EXPORT_SYMBOL_GPL vmlinux 0x4a51c89c rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x4a5e4f6b inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x4a6228d9 usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0x4a6ede0e rq_flush_dcache_pages -EXPORT_SYMBOL_GPL vmlinux 0x4a7bf108 da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x4a7f02d1 cpu_remove_dev_attr_group -EXPORT_SYMBOL_GPL vmlinux 0x4a81cd64 irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x4a8802ef pwmchip_add_with_polarity -EXPORT_SYMBOL_GPL vmlinux 0x4a8c2314 rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0x4ab47865 virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0x4ab5a976 pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0x4acff348 rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x4ad0a62f debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x4ae8c705 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x4af92639 pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0x4b2189d2 power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0x4b5117ae devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0x4b6991d8 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x4b730c46 rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0x4b7d827d io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0x4b91ac9d tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x4bab9735 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x4bb6c904 pwm_disable -EXPORT_SYMBOL_GPL vmlinux 0x4bca1113 pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0x4bd88b7f crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x4bdee344 do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x4bf213a9 of_dma_get_range -EXPORT_SYMBOL_GPL vmlinux 0x4c1592a5 class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x4c2f39f7 inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table -EXPORT_SYMBOL_GPL vmlinux 0x4c98b853 rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x4c9f2809 i2c_new_device -EXPORT_SYMBOL_GPL vmlinux 0x4cb37284 fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0x4cbc80ae usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0x4cca70b8 policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0x4cfa07ac mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0x4cfd5ee2 wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d097bbc bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x4d37c134 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x4d51474c cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0x4d6afd0d uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x4d95bb33 ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0x4daafc4e pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x4dc08f96 mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0x4dc392d2 regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4ddae606 phy_put -EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4de7fe81 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x4df57383 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0x4e095ff1 nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0x4e2001fe blkcipher_aead_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path -EXPORT_SYMBOL_GPL vmlinux 0x4e2c2dd2 pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x4e2d0f07 mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x4e2e88da sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0x4e3f21f6 mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0x4e4b5e37 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0x4e643369 sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0x4e7b7725 apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0x4e845672 rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0x4ea065f2 dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0x4ebd201b ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4ef4e8a5 dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4f06c45e kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0x4f260b21 usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0x4f319e51 elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4f31e259 ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0x4f4bf92c net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x4f4cc19c put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f6f8f5b pci_intx_mask_supported -EXPORT_SYMBOL_GPL vmlinux 0x4f8c8df6 __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0x4fc3d701 ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x507596d8 hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test -EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x50b4ab22 crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0x50bdaadc pci_try_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x50d3b2c1 usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50e988f9 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x51031092 gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x51467922 alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x5152a532 alloc_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x51554d8f phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0x515f7170 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0x516f947b gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0x51719489 tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x51966b51 __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x519a519a perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0x51ad61fe ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0x51b0fc31 irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0x51b65a26 rtc_lock -EXPORT_SYMBOL_GPL vmlinux 0x51cde943 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x51de03c1 device_del -EXPORT_SYMBOL_GPL vmlinux 0x51f8d957 fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL vmlinux 0x52178345 rtc_irq_set_freq -EXPORT_SYMBOL_GPL vmlinux 0x521da325 usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0x522706fa fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0x5230d919 phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x523462b0 ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0x52433865 virtqueue_get_used -EXPORT_SYMBOL_GPL vmlinux 0x524bdd9d crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0x52500745 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0x525363c8 md_run -EXPORT_SYMBOL_GPL vmlinux 0x525ce95c skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x5264b6e5 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x528c562b rtc_irq_register -EXPORT_SYMBOL_GPL vmlinux 0x529c7e93 of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x52c0d5d8 scatterwalk_bytes_sglen -EXPORT_SYMBOL_GPL vmlinux 0x52e87f11 posix_timers_register_clock -EXPORT_SYMBOL_GPL vmlinux 0x53024020 disk_map_sector_rcu -EXPORT_SYMBOL_GPL vmlinux 0x530314d6 rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0x5325ab92 tcp_peer_is_proven -EXPORT_SYMBOL_GPL vmlinux 0x5335dd11 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x5362e57a sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0x537b2297 unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x5383a425 debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x538be641 blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x539f6f5d ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0x53a7e416 fat_attach -EXPORT_SYMBOL_GPL vmlinux 0x53d21256 debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0x53df7ad5 dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x5423eb89 sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x54659db7 tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0x546c5565 ppc_tb_freq -EXPORT_SYMBOL_GPL vmlinux 0x546f0ee7 component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0x5471cf9b srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time -EXPORT_SYMBOL_GPL vmlinux 0x54883ca7 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x548b2631 __get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x54b1e012 ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x54be8f13 rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0x54c7507b sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0x54d468f1 pm_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0x54ec388c ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x54ee6959 pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x55431d26 blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0x554d67de platform_device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0x55542f93 da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x556fe8b7 cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x55770ffb splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x55ba4d87 init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0x55bd1881 __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0x55d76bcc scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x55d78d89 dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x55f51ef3 alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x55f6b2c4 led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x564ab34e fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x565b480b scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen -EXPORT_SYMBOL_GPL vmlinux 0x5662e8a1 devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x566483c4 dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0x567f60e6 of_mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x5686a1dd usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x56908255 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x56a82c01 extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x56d54de2 ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up -EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x56f17b9d usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0x5727005e skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x57313bfa shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x57433c79 pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0x5756e018 init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x576edee1 srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0x5777e32c fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0x57874808 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags -EXPORT_SYMBOL_GPL vmlinux 0x57cac280 get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0x57edf92a __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x57f15885 pm_runtime_get_if_in_use -EXPORT_SYMBOL_GPL vmlinux 0x57feabfe da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x580966b2 pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5832cefe cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0x5854a755 rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0x587f7e44 regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x588dbd4f gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0x589065ca hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5892f832 release_pmc_hardware -EXPORT_SYMBOL_GPL vmlinux 0x5893da64 transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x589cc895 ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname -EXPORT_SYMBOL_GPL vmlinux 0x58a6e19e of_irq_parse_pci -EXPORT_SYMBOL_GPL vmlinux 0x58d26f87 cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0x58e050c8 ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x58f07495 of_irq_parse_raw -EXPORT_SYMBOL_GPL vmlinux 0x58f51b65 ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0x58f731d3 led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0x590f887b sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0x593b0a50 __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x595b89a8 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x596cc383 of_prop_next_u32 -EXPORT_SYMBOL_GPL vmlinux 0x596fe49a ip_tunnel_get_stats64 -EXPORT_SYMBOL_GPL vmlinux 0x59728c54 filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0x59948a71 rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x59a54b9b relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x59a7393a subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x59afe7b9 scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x59bead09 usb_gen_phy_init -EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x59ec06db blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x5a12b851 pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x5a24a516 tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x5a33862b uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0x5a3a8e2a scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0x5a3f03a9 bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0x5a421a8f ahash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x5a65c37b devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x5a702ccd percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq -EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a939032 inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x5a9f8cf7 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0x5acfde42 gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x5ad54b13 i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0x5b21cb78 devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0x5b3c56da get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0x5b48b458 crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0x5b7d5f16 of_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x5b8c5879 _submit_bh -EXPORT_SYMBOL_GPL vmlinux 0x5ba92749 __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x5bb70f84 phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5bf8c471 blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5bf97b63 sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0x5bfd97c4 ata_eh_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x5c23ffa5 usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0x5c300950 generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0x5c30c1c3 __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x5c50363c bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c617297 serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x5c63b3ac device_create -EXPORT_SYMBOL_GPL vmlinux 0x5c9c9075 pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5cb2afc6 srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5cc148ea input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x5ce2579e usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user -EXPORT_SYMBOL_GPL vmlinux 0x5d14dbb4 pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0x5d3313b2 crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x5d3e73cc crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0x5d51bcf7 scatterwalk_start -EXPORT_SYMBOL_GPL vmlinux 0x5d581b9e single_release_net -EXPORT_SYMBOL_GPL vmlinux 0x5d5ca255 tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0x5d7bec6a xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0x5d8f2285 trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x5d9425cb __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x5d951d5e led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5db097be ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x5dc003f4 disk_part_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x5dd6aea7 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0x5de2a707 rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x5e03cad8 regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x5e2875c5 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl -EXPORT_SYMBOL_GPL vmlinux 0x5e5450e9 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x5e56bbf1 usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0x5e6dc5dd cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0x5e73fb55 __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0x5ec846b9 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x5edc69b1 platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5ee3f5b4 ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0x5ee49825 component_del -EXPORT_SYMBOL_GPL vmlinux 0x5ef0ab38 component_master_del -EXPORT_SYMBOL_GPL vmlinux 0x5f0506a2 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x5f3d18df wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x5f630d8c fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0x5fe403ac inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0x5fe7814c pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x5feb809d mpc8xxx_spi_tx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0x6003e38a pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x601074fa event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0x6035b78e fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x603c7db6 rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x6040a8b3 sock_update_netprioidx -EXPORT_SYMBOL_GPL vmlinux 0x60435094 ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0x604d4224 xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush -EXPORT_SYMBOL_GPL vmlinux 0x60568194 max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x605e4e75 watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL_GPL vmlinux 0x60a3b868 ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0x60dff26d tpm2_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq -EXPORT_SYMBOL_GPL vmlinux 0x61047b8b devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x6107bcc1 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x610826a9 tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x610ae766 unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0x6120ec37 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x6125b794 init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0x6127f4eb percpu_ida_for_each_free -EXPORT_SYMBOL_GPL vmlinux 0x6150be02 regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x6168cbf3 __put_net -EXPORT_SYMBOL_GPL vmlinux 0x616bd5da blkcipher_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x61739071 regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x61808107 of_thermal_get_ntrips -EXPORT_SYMBOL_GPL vmlinux 0x61962243 __pci_complete_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x619ab614 phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0x61a90c54 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0x61bf8d9d pmac_low_i2c_unlock -EXPORT_SYMBOL_GPL vmlinux 0x61d09234 napi_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x61da6c60 thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0x6210299e scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x6216bd73 percpu_ida_destroy -EXPORT_SYMBOL_GPL vmlinux 0x62216af6 crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x625049ad task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0x627a61cc crypto_create_tfm -EXPORT_SYMBOL_GPL vmlinux 0x629c7279 skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x62aa3808 usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0x62b89975 driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x62b97bc9 watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x62c45179 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x62d59c9e trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0x62ed8eb4 wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x63051135 of_thermal_is_trip_valid -EXPORT_SYMBOL_GPL vmlinux 0x6311266c sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0x6315f147 __rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x631dc2c0 devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x6369db51 thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x636fa58a rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0x63823a50 dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x638dbb57 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x6391166a virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0x63ad21c0 register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x63c1596c srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x63f63878 of_usb_host_tpl_support -EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x6422dd6b regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0x6430a69c gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched -EXPORT_SYMBOL_GPL vmlinux 0x6453f77c pmac_has_backlight_type -EXPORT_SYMBOL_GPL vmlinux 0x648abc17 gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x64a07f2e securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x64a70cfc io_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x64b44b11 rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0x64b94f13 pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x64d1777f usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0x64d5a29c crypto_attr_alg2 -EXPORT_SYMBOL_GPL vmlinux 0x64d5f89e ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x64e24a5e memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x64fb99bb device_remove_property_set -EXPORT_SYMBOL_GPL vmlinux 0x650acea1 crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0x6512f4a2 add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x651bf961 __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x65690cde __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x656f5058 usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0x657f9399 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0x659dc030 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65ceb57d uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x65d61fd4 ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x66271cac rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x6652937b virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0x667d393e hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6684b0cd nf_register_afinfo -EXPORT_SYMBOL_GPL vmlinux 0x668a8590 pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x669e92f3 sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0x66afb53b unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x66b927a0 sched_setattr -EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66d9474a of_property_read_u32_index -EXPORT_SYMBOL_GPL vmlinux 0x66da5960 vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x66e8e4f2 pci_intx -EXPORT_SYMBOL_GPL vmlinux 0x67163ae5 transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x6729cbce ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0x67332871 thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x673956c3 usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0x674082e4 crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0x67414a55 ping_err -EXPORT_SYMBOL_GPL vmlinux 0x6748e31b ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy -EXPORT_SYMBOL_GPL vmlinux 0x6775f805 dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0x67843914 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0x67880d4c fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0x678816c5 skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x67af0690 blk_queue_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x67dc8dc5 virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x67e98e32 ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6820c9f6 devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x682596ef tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0x687f3b56 rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0x68956406 static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x68bedf45 __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0x68f537c0 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0x690bb08c led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0x691e8465 blk_queue_dma_drain -EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x6923d079 __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x693a5559 __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0x696721ec crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x697ad6c4 dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x697cbbb4 threads_per_core -EXPORT_SYMBOL_GPL vmlinux 0x69870530 usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0x69903eec skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0x69a1854c fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0x69a6e696 trace_call_bpf -EXPORT_SYMBOL_GPL vmlinux 0x69ab121d __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x69b0f77b pwm_request -EXPORT_SYMBOL_GPL vmlinux 0x69d364b6 sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0x69db226f ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0x69dfa7dd __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0x69f8de4f pcibios_claim_one_bus -EXPORT_SYMBOL_GPL vmlinux 0x6a1b4951 rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0x6a1b6a50 devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0x6a268086 regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x6a4342dc da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a5378b0 gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x6a5d9fbd ahash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a899386 wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6a8c3850 pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x6ab3781f trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x6acab0ce usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0x6b1f92ab tc3589x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0x6b52f4e7 perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x6b53d425 rio_get_device -EXPORT_SYMBOL_GPL vmlinux 0x6b710923 usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0x6b7cb10c security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0x6b817b4d aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6bfab78e __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x6c209eab __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0x6c308023 usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x6c455bdf pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c4cf604 kallsyms_on_each_symbol -EXPORT_SYMBOL_GPL vmlinux 0x6c591ef5 pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq -EXPORT_SYMBOL_GPL vmlinux 0x6cb153d6 virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0x6cb44f12 dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0x6cd99f08 pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0x6cf9ecea ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0x6cfdab42 tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0x6d1cbac9 rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d3792c7 dummy_con -EXPORT_SYMBOL_GPL vmlinux 0x6d47087b of_cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x6d595db7 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0x6d74237c __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x6d96faa7 usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x6db3aba4 tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x6db99028 ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0x6dbf1261 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x6debb23e page_endio -EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy -EXPORT_SYMBOL_GPL vmlinux 0x6e508303 bus_find_device_by_name -EXPORT_SYMBOL_GPL vmlinux 0x6e51afc8 percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x6e634b56 driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0x6e6878fc adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x6e70b0e9 __mmu_notifier_invalidate_range_start -EXPORT_SYMBOL_GPL vmlinux 0x6e7b3400 tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6e9f1f8e usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x6ea45c30 event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0x6ea98ae1 tc3589x_block_write -EXPORT_SYMBOL_GPL vmlinux 0x6eacfc59 kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0x6eb840c9 perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0x6f15ddd5 skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x6f19bf1a cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x6f1a91ba locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x6f325032 usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0x6f432732 replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0x6f496b8d wm8998_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x6f62a7c9 anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto -EXPORT_SYMBOL_GPL vmlinux 0x6f828803 ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x6fc2c51e cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x6fee8f4e mddev_congested -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6ff7faa9 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x6ff81432 register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x700e3a8b ata_do_eh -EXPORT_SYMBOL_GPL vmlinux 0x70553e5c devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x70766778 device_create_vargs -EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0x7095d840 blk_queue_flush -EXPORT_SYMBOL_GPL vmlinux 0x7095daeb wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x7095f2b3 tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x70b5a87a disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated -EXPORT_SYMBOL_GPL vmlinux 0x70c95921 extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70d1bcf6 rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x70de6468 put_pid -EXPORT_SYMBOL_GPL vmlinux 0x70ea3a04 simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0x70f1df70 kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0x710442fd reservation_object_test_signaled_rcu -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x712c47c4 aead_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0x712dcb76 iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0x714588c0 dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x71505b20 virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x716f28de device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0x71c0d660 dax_pfn_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0x71d8a1b8 pmac_backlight_mutex -EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab -EXPORT_SYMBOL_GPL vmlinux 0x72118930 regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x72189a01 ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0x72495381 devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0x724fb735 of_property_read_string_helper -EXPORT_SYMBOL_GPL vmlinux 0x72515d5a snprint_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x72543572 dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x727c555b tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x728a5f54 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0x728ab0ea pmf_call_one -EXPORT_SYMBOL_GPL vmlinux 0x7296ccef regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0x72ad1bfd ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0x72e05dc5 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x72e21f37 usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0x73624ab8 crypto_alloc_instance2 -EXPORT_SYMBOL_GPL vmlinux 0x736bfa8c ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x736c7091 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x737b4549 devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0x739aa1a1 pmac_i2c_setmode -EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x73cc92e5 regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x73d4b64d ata_sff_data_xfer_noirq -EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x73ddd3a0 component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0x74374728 bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0x7439a1a5 fsl8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7468b74e __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0x7499de58 regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74b965d6 platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74bdfcad devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x74d007c2 perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x74d18b33 tps65912_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x750fcc47 regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x75113f58 skcipher_geniv_exit -EXPORT_SYMBOL_GPL vmlinux 0x75183c65 trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x75189177 __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x75329035 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0x7552ffcb serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0x7568adf9 cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0x756db445 md_new_event -EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only -EXPORT_SYMBOL_GPL vmlinux 0x759522e8 of_alias_get_id -EXPORT_SYMBOL_GPL vmlinux 0x7599523f tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0x7599ea70 scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0x75c2b9f1 memalloc_socks -EXPORT_SYMBOL_GPL vmlinux 0x75c9d8c3 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x75d17d0b pmac_i2c_open -EXPORT_SYMBOL_GPL vmlinux 0x75da1f95 pci_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x75f2a044 usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x75f47061 inode_congested -EXPORT_SYMBOL_GPL vmlinux 0x760be1bb seq_release_net -EXPORT_SYMBOL_GPL vmlinux 0x761ed6ec hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x762c0858 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x7670df58 regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x76753350 driver_find -EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x76872d23 debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x768bd29e n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0x76987bfd usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x76990e42 ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0x76cd23cf usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0x76e149b2 usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0x76fa9d1b led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0x770cf981 tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x770db4b5 gov_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x77228066 virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x772a4fce regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x772ae69d sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0x772faf54 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x7786604c ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0x778fd2e1 device_register -EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77ce3949 power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x77e11603 power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0x77eab213 crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0x77edfe9a irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0x780356ab tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x780512c1 dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0x78082c2e usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0x780842c9 bio_trim -EXPORT_SYMBOL_GPL vmlinux 0x780f9681 ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x78151326 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x7829fab8 class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0x782dab06 get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x785cf1c3 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x788197e2 regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0x78d17d54 __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x78dd113f sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x78e4bf14 regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0x790086e3 extcon_get_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0x790d9e62 spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0x7917358c __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x79273ade crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0x792f91dc power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x793c598c of_pci_range_parser_one -EXPORT_SYMBOL_GPL vmlinux 0x793cda54 platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off -EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x79527d15 wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x796fb027 transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x799198ba pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0x79bc4c33 blkg_print_stat_ios -EXPORT_SYMBOL_GPL vmlinux 0x79c119b2 regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x79c6c354 rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x79dc2b5b devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79eed2d9 dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x7a034cd5 debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0x7a29e5f0 trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x7a4878ee sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0x7a8c7ce5 irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x7a900e00 relay_reset -EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read -EXPORT_SYMBOL_GPL vmlinux 0x7aef7b71 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x7af28e6e ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x7afaeebd usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set -EXPORT_SYMBOL_GPL vmlinux 0x7b207c21 xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0x7b39c3d0 regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0x7b3ecd6e dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x7b432398 sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0x7b4a5c49 vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0x7b573315 spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x7b9b49e6 list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x7bd5875d unregister_jprobe -EXPORT_SYMBOL_GPL vmlinux 0x7bd7cb9d serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0x7be7fa12 posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0x7cb86b72 wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x7cb8eb81 pci_restore_ats_state -EXPORT_SYMBOL_GPL vmlinux 0x7cc2bd74 phy_init -EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7ce48cff pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7d02716c of_pci_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0x7d19c594 fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d5a1e5d gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x7d77704a crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x7d788cfa wait_on_page_bit_killable_timeout -EXPORT_SYMBOL_GPL vmlinux 0x7d973a91 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7db84411 get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0x7db97e59 rio_get_asm -EXPORT_SYMBOL_GPL vmlinux 0x7dc1e388 alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0x7dd12fac register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x7dd577b4 spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7df6f95f rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x7e17ba7b klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x7e1a17b4 rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7e1a20f0 rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0x7e3af502 find_module -EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e80d612 crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0x7e974ecc sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0x7e975549 param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x7e9806c6 raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0x7e9a0918 usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0x7eb27a0c devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x7ebbbd79 wm5102_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x7ebeb5c6 of_prop_next_string -EXPORT_SYMBOL_GPL vmlinux 0x7ec29f1c __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x7edebeff hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0x7ee4e0cd gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x7ef2a88d dio_end_io -EXPORT_SYMBOL_GPL vmlinux 0x7f008202 btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0x7f21d285 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature -EXPORT_SYMBOL_GPL vmlinux 0x7f463fd3 ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0x7f72657d mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x7f7bc710 klist_next -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f8199df dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7f8c409d percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0x7f9ae3ec find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7fcd2063 device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x7fd36589 __module_text_address -EXPORT_SYMBOL_GPL vmlinux 0x7fd59cb3 __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0x7fe35f38 scsi_internal_device_block -EXPORT_SYMBOL_GPL vmlinux 0x7ff34155 tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0x7ffc057d dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x80094d1a ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x804ea02d __find_linux_pte_or_hugepte -EXPORT_SYMBOL_GPL vmlinux 0x80509946 pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x807a4b7f ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0x80842a54 extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0x8088afe5 regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x8089849d usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x809312b8 devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0x80a4e3f9 nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x80ade189 rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x80c15f52 ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80d0e26f device_add -EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80e5b2e0 shmem_get_seals -EXPORT_SYMBOL_GPL vmlinux 0x80e8faa6 blkcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x81062ac9 adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x811f3196 sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0x812036fe securityfs_create_dentry -EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0x81537f81 of_dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x8162e5fe pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x8178fd19 regmap_update_bits_async -EXPORT_SYMBOL_GPL vmlinux 0x81919fd5 trace_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0x81a30f55 mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x81d37418 zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0x81f0af08 usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0x81fc2ef8 device_reset -EXPORT_SYMBOL_GPL vmlinux 0x821d05e9 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x8228800e shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x82289279 stmpe_block_write -EXPORT_SYMBOL_GPL vmlinux 0x822ad4c7 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0x8276c98b led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0x82781daa dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0x8287f42f ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0x82c2756d ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x82ca6a4d md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x830691c8 ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x8310e120 ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0x8311ddb6 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x8315d9aa wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x8319260a srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x831d5069 debugfs_remove_recursive -EXPORT_SYMBOL_GPL vmlinux 0x834b30e0 napi_by_id -EXPORT_SYMBOL_GPL vmlinux 0x836d61d0 atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x837cd5c0 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0x83a172be shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x83c34f4b power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0x83e3b23f gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x83e8e944 wm5110_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x83fdcc66 pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0x84142067 dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0x841da239 unregister_jprobes -EXPORT_SYMBOL_GPL vmlinux 0x841f1b2b pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x842c46d0 sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x84365a70 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0x844bb8ae regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x84643b1f bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0x8476e497 bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x849df294 rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0x84ab32aa dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x84ba5674 tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x8507871a subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x851508ad clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read -EXPORT_SYMBOL_GPL vmlinux 0x85283f30 hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0x8528f188 scsi_internal_device_unblock -EXPORT_SYMBOL_GPL vmlinux 0x854e7f08 da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0x855126e2 blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0x855ca980 cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x858737ec fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x858f9c4e crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x85e2c659 regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0x85fd6bb2 device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x8601c9bf ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x860d9954 public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0x8612b633 regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod -EXPORT_SYMBOL_GPL vmlinux 0x86207944 rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x863efd6d led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0x8652110e pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0x865380f1 spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x867298c0 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x8680ae4f pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x86941e31 ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x86c78b64 regulator_can_change_voltage -EXPORT_SYMBOL_GPL vmlinux 0x86c9c469 usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x86ed4ff7 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x86f95733 crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0x86fb469a usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x86fc2726 sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error -EXPORT_SYMBOL_GPL vmlinux 0x87447e1e trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0x874cccd5 crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x87726ff4 mpc8xxx_spi_rx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x8791c586 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0x87a2b42e pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0x87c62053 pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0x87cf89bd mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0x87df230f sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x87fd6f45 of_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x8804af3d usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0x8842f0da of_scan_bus -EXPORT_SYMBOL_GPL vmlinux 0x88569b31 mnt_clone_write -EXPORT_SYMBOL_GPL vmlinux 0x887a1ecf dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x887c61f3 crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x889665f3 hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x88974d18 dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x88b666d7 wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0x88ea12f9 pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x88ea7ef3 bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0x88f1a686 smpboot_update_cpumask_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x88fc09fc pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x89014fc5 regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x89257b13 usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x8936a264 i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x893733cb ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x893ee198 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x89458826 regmap_read -EXPORT_SYMBOL_GPL vmlinux 0x895a5dee crypto_ahash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x896d6ebc devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x89a52ebc raw_seq_open -EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x89bcf339 tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0x89dbf5b0 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x89eb5507 blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x89edc36e swiotlb_map_page -EXPORT_SYMBOL_GPL vmlinux 0x89f7cc36 platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode -EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod -EXPORT_SYMBOL_GPL vmlinux 0x8a5f86ce fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x8a64a5a7 __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x8a64acd9 uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0x8a65b984 scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0x8a6a09bb usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0x8a77c380 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8accedc9 mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0x8ae5b993 smpboot_register_percpu_thread_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x8b2ef0fe flush_fp_to_thread -EXPORT_SYMBOL_GPL vmlinux 0x8b6187eb wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0x8b70e8ea __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0x8b7ae5e7 tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0x8baeb47a ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x8bb5ba80 ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0x8bb8611d blkg_print_stat_bytes_recursive -EXPORT_SYMBOL_GPL vmlinux 0x8bc4156f sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x8bd718b6 fat_detach -EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c3ad069 sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x8c3c9dca ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x8c51fb8b dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status -EXPORT_SYMBOL_GPL vmlinux 0x8c6837ce regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x8c741822 save_stack_trace_tsk -EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c900724 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x8cb60870 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params -EXPORT_SYMBOL_GPL vmlinux 0x8cf5e6fd do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0x8d22b450 of_get_pci_domain_nr -EXPORT_SYMBOL_GPL vmlinux 0x8d362c7e fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0x8d43ac48 mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8d5261ca part_round_stats -EXPORT_SYMBOL_GPL vmlinux 0x8d7dfe00 regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x8d8519d8 kick_process -EXPORT_SYMBOL_GPL vmlinux 0x8da17b42 scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x8dab4462 inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0x8dfd5821 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x8e13ed25 srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x8e2b25c2 videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x8e2fb206 ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x8e323d68 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0x8e6af0c8 of_reconfig_get_state_change -EXPORT_SYMBOL_GPL vmlinux 0x8e789c1a __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x8e7a7f3d fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0x8ea9f271 pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x8ece68fd percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0x8ee84aa8 kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x8ef6074e rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f08fa19 sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0x8f2dcc0c debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x8f4bbde1 rio_request_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x8f507c09 debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0x8f638600 devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8f7b0e11 usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x8fa6b5a9 dm_disk -EXPORT_SYMBOL_GPL vmlinux 0x8fb4d1be ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x8fced602 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0x9022d5bc memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x9026716e phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x90566e60 crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x90667aec i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0x90751cca wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0x9077d5ea usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x90bc771d tpm2_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x90ccb725 cpufreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x90cf9762 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0x90d22a7b dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0x90d3e4e7 ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x90d9c2c6 virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0x90f30944 tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0x91150899 ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x912bf6fb pmac_i2c_get_adapter -EXPORT_SYMBOL_GPL vmlinux 0x915906fd pwm_put -EXPORT_SYMBOL_GPL vmlinux 0x916a3677 crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x91719887 skb_gso_transport_seglen -EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x919d71c5 fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0x91a16f7c dax_clear_blocks -EXPORT_SYMBOL_GPL vmlinux 0x91a32bff devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x91b3a845 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91dbdae4 __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x9215cec7 ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0x922eae32 rio_mport_send_doorbell -EXPORT_SYMBOL_GPL vmlinux 0x92423d43 securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x9252aee4 device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0x925946b5 mmput -EXPORT_SYMBOL_GPL vmlinux 0x92960569 list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x92c89fea usb_string -EXPORT_SYMBOL_GPL vmlinux 0x92c9c99d ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x92cca41a aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0x92cccde6 ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92f6e4b6 __ktime_divns -EXPORT_SYMBOL_GPL vmlinux 0x93161eb6 crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x931ff308 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x93260a50 gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x932d6a6b stmpe_set_altfunc -EXPORT_SYMBOL_GPL vmlinux 0x933dd9dc of_usb_update_otg_caps -EXPORT_SYMBOL_GPL vmlinux 0x935cd512 extcon_register_interest -EXPORT_SYMBOL_GPL vmlinux 0x936421e7 sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x93a2cb47 reserve_pmc_hardware -EXPORT_SYMBOL_GPL vmlinux 0x93bcce38 system_trusted_keyring -EXPORT_SYMBOL_GPL vmlinux 0x93bf2fcd __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x93c23366 tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0x93c31140 pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x93cfc711 crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x93da5a40 usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0x940faa44 of_get_nand_ecc_mode -EXPORT_SYMBOL_GPL vmlinux 0x941d94c1 tpm2_startup -EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x9425562b device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0x942d41b2 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0x9432b036 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x94464ca0 blk_queue_bypass_start -EXPORT_SYMBOL_GPL vmlinux 0x944badcf ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0x9456bd14 pmf_do_irq -EXPORT_SYMBOL_GPL vmlinux 0x94716326 phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x94a1e1fa key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop -EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x9533b861 devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x9546f1d1 max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x95481def i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x95850daf ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95e3b208 pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x961f119b wait_for_tpm_stat -EXPORT_SYMBOL_GPL vmlinux 0x9620001d call_filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9655b911 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x96afc3ba console_drivers -EXPORT_SYMBOL_GPL vmlinux 0x96c1c4f6 ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0x96c90c08 crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0x96d2f6b3 regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x96dce8f2 rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0x96e02119 pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0x96e7e324 usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0x9748a683 thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x978b0f04 usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0x97b6feb0 wm8350_device_exit -EXPORT_SYMBOL_GPL vmlinux 0x97cf9043 __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0x97d4f45e __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x97d7bc93 of_get_fb_videomode -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97dff559 input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0x980aa1f6 pwm_can_sleep -EXPORT_SYMBOL_GPL vmlinux 0x982af0ec ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x982cd486 __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0x98326b98 class_destroy -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x98420872 virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9854d478 rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x989eb047 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x98b11378 mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0x98bf2403 tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x98c2b60a devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x98cc61a1 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on -EXPORT_SYMBOL_GPL vmlinux 0x990bc9d5 sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x990cbf1c tc3589x_block_read -EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x99349b00 ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0x99522628 tcp_fetch_timewait_stamp -EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x995e4897 reservation_object_wait_timeout_rcu -EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range -EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x9990601e pcibios_free_controller -EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0x99ae3a03 blk_set_queue_dying -EXPORT_SYMBOL_GPL vmlinux 0x99b4928d devm_regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x99ce0592 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x99e9ca22 crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0x99fcfd46 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x9a05a85c pwm_config -EXPORT_SYMBOL_GPL vmlinux 0x9a08aa25 simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a331edb __pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x9a49d937 __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x9a5a5f90 __init_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0x9a670d6c dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck -EXPORT_SYMBOL_GPL vmlinux 0x9aad6540 klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x9aae2383 ping_hash -EXPORT_SYMBOL_GPL vmlinux 0x9abb1e29 arizona_of_get_type -EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9ac23561 anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9b152129 of_get_nand_on_flash_bbt -EXPORT_SYMBOL_GPL vmlinux 0x9b21adba inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9b34dfc4 tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0x9b3744fa rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0x9b3991cd __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x9b449081 rtc_irq_set_state -EXPORT_SYMBOL_GPL vmlinux 0x9b8c2b9e devm_mdiobus_free -EXPORT_SYMBOL_GPL vmlinux 0x9b9de381 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x9ba69b2a gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0x9ba7bf20 power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0x9bab1885 driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x9bce0746 of_css -EXPORT_SYMBOL_GPL vmlinux 0x9be233d5 __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x9bea2888 blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9bfe19f9 pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0x9c3d2215 extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x9c54badd metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x9ca90460 regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ccfa832 rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x9cfcd519 regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x9d11cbb0 adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x9d3eb5fc spi_unregister_master -EXPORT_SYMBOL_GPL vmlinux 0x9d5691af wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0x9d7e87e2 devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported -EXPORT_SYMBOL_GPL vmlinux 0x9db4f67f handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0x9dbffd4b cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x9dda20c8 cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0x9de62ea1 virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x9deb7390 virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0x9dfa7878 __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0x9e0a78cb devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0x9e1a578f __sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x9e31dc6c sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e4b4a08 blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x9e4d2f21 usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0x9e96712f max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9eeb102c pmac_i2c_get_controller -EXPORT_SYMBOL_GPL vmlinux 0x9eeb961b __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x9f05b7b8 pcibios_finish_adding_to_bus -EXPORT_SYMBOL_GPL vmlinux 0x9f5a5f5a syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x9f65e63c perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9f79ac1e platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0x9f8c3acd dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0x9fcdbf4e gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0xa0182f3e serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0xa02a97e6 pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0xa03e9a45 pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0xa03fafb8 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0xa04ba6ef xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0xa051060e usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0xa07b7971 devm_regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa09d8ecf usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0xa0a944db __ablkcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0xa0ab0239 isa_bridge_pcidev -EXPORT_SYMBOL_GPL vmlinux 0xa0abcd4a spi_master_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa0cb1c3c dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0xa111ef42 crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0xa11327f3 pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0xa11e12b6 rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0xa12159f8 __pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xa1471d98 irq_map_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xa15a2820 blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xa15d8c49 get_device -EXPORT_SYMBOL_GPL vmlinux 0xa15e97ed blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0xa18bfc76 dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0xa1ec18df nf_queue_entry_release_refs -EXPORT_SYMBOL_GPL vmlinux 0xa1f22acf bus_register -EXPORT_SYMBOL_GPL vmlinux 0xa1fbfc3a inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0xa208363d regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0xa2287b76 usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0xa232d21d gpiochip_add -EXPORT_SYMBOL_GPL vmlinux 0xa23dddae pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0xa2436c31 regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa2a86e43 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xa2c901b5 pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0xa2ea1d6c usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0xa2f1af26 class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xa367d258 yield_to -EXPORT_SYMBOL_GPL vmlinux 0xa36d0357 pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register -EXPORT_SYMBOL_GPL vmlinux 0xa39691da rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3a2d9af walk_system_ram_range -EXPORT_SYMBOL_GPL vmlinux 0xa3abfecd dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3cd3492 of_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0xa3d9a9b1 pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0xa40c9cdd ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xa4168a93 crypto_alloc_ablkcipher -EXPORT_SYMBOL_GPL vmlinux 0xa422b0f9 regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xa42beb1b skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0xa433eb0b rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xa441d87a ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0xa4437b35 pci_hp_change_slot_info -EXPORT_SYMBOL_GPL vmlinux 0xa44cf575 scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0xa45b5aae class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xa476f5c3 pmac_i2c_find_bus -EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa48b2690 udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0xa4a22fc4 __inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0xa4b058d7 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa4c33b5e pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0xa4dcbdf6 dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0xa4f61525 seq_open_net -EXPORT_SYMBOL_GPL vmlinux 0xa4f6eb26 rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0xa4ff48bf scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0xa51876bd devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xa51d3aa3 blk_queue_bypass_end -EXPORT_SYMBOL_GPL vmlinux 0xa53c8b81 irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0xa57552ed ata_base_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xa577ca4d uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0xa5a127a8 vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0xa5a624ab crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa5b00659 ppc_proc_freq -EXPORT_SYMBOL_GPL vmlinux 0xa5da3b23 regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa5e9e3d4 perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0xa5ee598a device_move -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa5efe460 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0xa5f48723 irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xa5f6b015 crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0xa60343e7 irq_of_parse_and_map -EXPORT_SYMBOL_GPL vmlinux 0xa60f0696 led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa6135287 __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0xa62d9cdf da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xa677a44d usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0xa685a8b9 find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xa69d4798 stmpe_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6b55f04 split_page -EXPORT_SYMBOL_GPL vmlinux 0xa6cbde74 pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6ef74bc ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0xa74cc36a netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0xa754f4b7 devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xa7687697 fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0xa76b4966 fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0xa77269c2 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0xa77c5cb7 ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0xa78f13bb of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0xa79bd4eb ata_eh_thaw_port -EXPORT_SYMBOL_GPL vmlinux 0xa7ba0208 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0xa7c790ec powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0xa7d73182 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0xa7dc5706 sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0xa8055590 da903x_write -EXPORT_SYMBOL_GPL vmlinux 0xa8072387 bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa828539c br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0xa83b003c led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0xa847c5cd con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa8542a07 debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0xa85f44c4 gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xa8794b62 led_trigger_store -EXPORT_SYMBOL_GPL vmlinux 0xa888bd00 of_dma_is_coherent -EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xa8bc892d tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0xa8d5b3cc vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0xa8d6a7f2 pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xa91603b1 init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xa924b702 fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0xa92a97b9 pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa9858812 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0xa98a68d4 gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0xa9b2f3d4 of_pci_get_devfn -EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9e704a2 fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa9e9693a power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0xaa0c1d40 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0xaa17addc virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0xaa233d05 ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0xaa269160 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0xaa4488c6 devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0xaa5a76a0 ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0xaa628a94 watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0xaa63d11c devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaab61647 netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0xaab92fe0 tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0xaac408fa leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xaafe8ad1 pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0xab30b74c pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0xab381b33 list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0xab3eacc6 bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del -EXPORT_SYMBOL_GPL vmlinux 0xab69bcc2 cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0xab6b6658 dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request -EXPORT_SYMBOL_GPL vmlinux 0xab7aea74 regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xab7d839a __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0xab86fc20 handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0xab945a16 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0xaba52c45 cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabf58a34 __blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0xac15332a usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0xac1afb79 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0xac43000a inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0xac570f81 inet_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0xac5a1869 crypto_alloc_instance -EXPORT_SYMBOL_GPL vmlinux 0xac5add06 __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xac84f65d debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0xacacbd50 arizona_request_irq -EXPORT_SYMBOL_GPL vmlinux 0xacc6e6ce devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xacce9863 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list -EXPORT_SYMBOL_GPL vmlinux 0xad00032b serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0xad0bc22b gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0xad1c82f2 tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0xad3cd130 ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0xad40bf82 devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xad4edd90 sched_setscheduler -EXPORT_SYMBOL_GPL vmlinux 0xad660154 __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xad73b1b0 of_gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0xad7cfa83 ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0xad9fe3ff user_update -EXPORT_SYMBOL_GPL vmlinux 0xadb5ec4a tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0xadd78b48 irq_create_strict_mappings -EXPORT_SYMBOL_GPL vmlinux 0xadf65d5c __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0xae03869c tcp_death_row -EXPORT_SYMBOL_GPL vmlinux 0xae0a0cdd attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0xae0a412b fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0xae41d4de usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0xae4c635f of_fdt_unflatten_tree -EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae81922b of_overlay_destroy_all -EXPORT_SYMBOL_GPL vmlinux 0xae86c6e6 blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0xae944544 shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0xae9a7874 spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0xaeaaf6c6 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0xaeab28de of_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xaee52b12 find_vpid -EXPORT_SYMBOL_GPL vmlinux 0xaf0dd6cb sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0xaf1c5921 platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xaf21fca2 pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0xafb5fb12 cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xafc0ee64 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0xafdf217b invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0xaffb29e4 debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xb00cb183 devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xb01c2c2e rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xb0328558 pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xb040891c irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xb0729635 virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0xb0913148 btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0xb0aa3552 devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0d5109e device_add_property_set -EXPORT_SYMBOL_GPL vmlinux 0xb0ee14d1 handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read -EXPORT_SYMBOL_GPL vmlinux 0xb1416abf da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb151889b unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0xb16c392b of_reserved_mem_device_init -EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched -EXPORT_SYMBOL_GPL vmlinux 0xb1ad11ff ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain -EXPORT_SYMBOL_GPL vmlinux 0xb1d70e9a spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb208c50c ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb2256567 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xb261c112 pm_complete_with_resume_check -EXPORT_SYMBOL_GPL vmlinux 0xb2a3c518 disk_get_part -EXPORT_SYMBOL_GPL vmlinux 0xb2b465bb inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2f877ef subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0xb2f95f54 xattr_getsecurity -EXPORT_SYMBOL_GPL vmlinux 0xb32e5064 rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0xb33824b2 __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb3407e02 single_open_net -EXPORT_SYMBOL_GPL vmlinux 0xb3649a03 sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0xb372d98a extcon_update_state -EXPORT_SYMBOL_GPL vmlinux 0xb39b1626 get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0xb3a5a710 wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xb3bcce51 regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0xb3c660df power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xb3ce64d7 regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0xb3fca495 component_master_add -EXPORT_SYMBOL_GPL vmlinux 0xb40d8d8f __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xb4172664 request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0xb417b38f crypto_alg_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb418d153 usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xb426167a md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0xb43051b8 usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0xb433e899 tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0xb4548c24 cpufreq_frequency_table_cpuinfo -EXPORT_SYMBOL_GPL vmlinux 0xb463b6fa ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0xb484907f regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0xb488588e tb_to_ns -EXPORT_SYMBOL_GPL vmlinux 0xb48f3376 pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0xb49ac3c8 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xb4a33cfb sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4d3b4b3 xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb5137c0e clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0xb51b1037 fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb526b0dc unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xb532d5c0 device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xb5489c7a stmpe_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xb54d40db cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xb567dfdf extcon_set_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited -EXPORT_SYMBOL_GPL vmlinux 0xb58ded9b lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xb5954515 devres_find -EXPORT_SYMBOL_GPL vmlinux 0xb597c680 crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xb59cf84b arizona_dev_init -EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table -EXPORT_SYMBOL_GPL vmlinux 0xb5aa10af atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb5b760e6 pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0xb5c8edf4 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0xb5d37405 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0xb5d9e659 thermal_generate_netlink_event -EXPORT_SYMBOL_GPL vmlinux 0xb5e42a2c pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0xb5e896fb tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0xb5eb09af tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xb5f07c1d usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb5f56087 sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0xb6014bba crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0xb60b5707 of_i8042_aux_irq -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb63b00f8 task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0xb63cc754 subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xb6420281 regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0xb65d7be1 __srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xb6652557 spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0xb684355b device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb691037f trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0xb6947f38 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0xb6a080fb ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xb6c38497 usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0xb6c571c0 da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0xb6e75671 usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb6f94588 unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0xb70afeaf page_cache_sync_readahead -EXPORT_SYMBOL_GPL vmlinux 0xb711d130 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xb7160468 netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0xb739990e thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0xb79fb656 register_jprobe -EXPORT_SYMBOL_GPL vmlinux 0xb7a33b5d pmac_i2c_get_bus_node -EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0xb809b9ee md_ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xb80f02e5 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0xb822d799 ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xb823f40f _gpiochip_irqchip_add -EXPORT_SYMBOL_GPL vmlinux 0xb82bdd00 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xb8772d0d regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0xb883206b hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb8a12e97 bsg_request_fn -EXPORT_SYMBOL_GPL vmlinux 0xb8b72eb1 devres_add -EXPORT_SYMBOL_GPL vmlinux 0xb8c38931 regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8dcb8f7 ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0xb8e329a8 serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0xb92427b4 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0xb92d35ca sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0xb92ea375 i2c_unlock_adapter -EXPORT_SYMBOL_GPL vmlinux 0xb963ead7 sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0xb96b3bc6 of_get_display_timings -EXPORT_SYMBOL_GPL vmlinux 0xb97b8a13 __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb98d332d rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0xb9a1c9f3 gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0xb9b2e736 devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb9b40afd of_get_videomode -EXPORT_SYMBOL_GPL vmlinux 0xb9b6560e ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb9c220c3 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xba158769 rtas_cancel_event_scan -EXPORT_SYMBOL_GPL vmlinux 0xba1aa97e usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0xba1cfcf1 mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba3c72ca mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0xba8929ea percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xba998572 xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0xbaa2cf73 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0xbaa462d2 crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbad966e2 fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0xbadf0011 spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb4a41ff blkg_dev_name -EXPORT_SYMBOL_GPL vmlinux 0xbb571d75 inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0xbb690b4d pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0xbb7c868e verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xbb7cf9cb jump_label_rate_limit -EXPORT_SYMBOL_GPL vmlinux 0xbbaa7590 of_irq_parse_and_map_pci -EXPORT_SYMBOL_GPL vmlinux 0xbbc31e52 class_find_device -EXPORT_SYMBOL_GPL vmlinux 0xbbcb56d1 irq_find_mapping -EXPORT_SYMBOL_GPL vmlinux 0xbbe78c1a dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xbc0ecf4c tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbc427156 blk_add_request_payload -EXPORT_SYMBOL_GPL vmlinux 0xbc4f95d8 sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc7794c8 devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0xbc7f26c5 usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xbc883818 ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xbc932be5 usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0xbca42fe3 device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbccf9184 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0xbcd7e159 digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0xbcde06a5 pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0xbce1b771 gpiochip_set_chained_irqchip -EXPORT_SYMBOL_GPL vmlinux 0xbce49494 usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL vmlinux 0xbd0be233 page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0xbd201dd5 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd434aae udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0xbd881265 irq_create_mapping -EXPORT_SYMBOL_GPL vmlinux 0xbdae43c4 usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0xbdbfd420 pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0xbdce3505 screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0xbdce4933 ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xbdd2d344 devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0xbde3cfbe phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0xbde8a5d9 rhashtable_walk_init -EXPORT_SYMBOL_GPL vmlinux 0xbde8dc00 tasklet_hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0xbe101311 vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xbe2712bc percpu_ida_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbe4eee36 pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe903a4e cpufreq_governor_dbs -EXPORT_SYMBOL_GPL vmlinux 0xbe958909 dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0xbee6087a __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0xbeffa91e trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf0b4a60 user_read -EXPORT_SYMBOL_GPL vmlinux 0xbf0eaf2d usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0xbf110f07 securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xbf1cc04b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0xbf24e16e evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0xbf253961 da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xbf3a065c pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0xbf7c21bb __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0xbf8e6e9e debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0xbf94a7ec component_master_add_child -EXPORT_SYMBOL_GPL vmlinux 0xbfa83b1f ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xbfa94e53 device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0xbfb5f2ee ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfda454e power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbfe5c3af fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 -EXPORT_SYMBOL_GPL vmlinux 0xc02bec3c usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xc0426e01 check_media_bay -EXPORT_SYMBOL_GPL vmlinux 0xc043b232 dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0xc04c0616 crypto_ablkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xc059e7ae lock_media_bay -EXPORT_SYMBOL_GPL vmlinux 0xc061367e mpic_msgr_get -EXPORT_SYMBOL_GPL vmlinux 0xc065a455 cpu_core_index_of_thread -EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc090e373 da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0xc09819f7 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0cc3744 ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0xc0d02808 wm5110_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0xc0e160b2 device_initialize -EXPORT_SYMBOL_GPL vmlinux 0xc0e75cec visitor128 -EXPORT_SYMBOL_GPL vmlinux 0xc0e97330 devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc0eb1687 do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc13df88d crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0xc1436e5e dax_fault -EXPORT_SYMBOL_GPL vmlinux 0xc1521987 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0xc159db87 rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc17d7efb devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0xc18578ed process_srcu -EXPORT_SYMBOL_GPL vmlinux 0xc1a2b334 ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xc1afdb3f class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc1b0d789 regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xc1ce6ff1 devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xc1dd3787 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc1f25e80 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc237704f blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0xc26ce353 ata_sg_init -EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0xc28868c7 crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0xc29b0fa1 sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xc2b5f5d6 net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0xc2c25342 usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xc2e728dc ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xc30b3a36 scatterwalk_map -EXPORT_SYMBOL_GPL vmlinux 0xc30df23e ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0xc3138341 ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0xc3158c55 devm_spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0xc31ff73d pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc35411c0 ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xc359db4c regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0xc35bd289 cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0xc36ddb55 sched_setscheduler_nocheck -EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xc37d4d24 lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0xc391bbb2 edac_subsys -EXPORT_SYMBOL_GPL vmlinux 0xc39c3c97 devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xc3b54a8c module_mutex -EXPORT_SYMBOL_GPL vmlinux 0xc3ba188d device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0xc3c7744f fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xc3ca137b mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0xc3fb2b0f usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xc4126bb7 vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0xc41a2507 device_find_child -EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc42f03a2 rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0xc431ebcf platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xc4329899 register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc46c7448 crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc474ebb6 l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0xc48aa3cb user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc48c0a7f vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0xc4a20df5 of_display_timings_exist -EXPORT_SYMBOL_GPL vmlinux 0xc4ad601b devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xc4bb1f94 usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0xc4bf1e15 irq_domain_add_simple -EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0xc4d35b42 blkdev_read_iter -EXPORT_SYMBOL_GPL vmlinux 0xc4d65992 scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0xc510f539 regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0xc516ea86 rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xc51fb795 ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc58a1687 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xc5a2c19f idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc5b60a82 pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0xc5b638bb tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0xc5be5715 kobject_move -EXPORT_SYMBOL_GPL vmlinux 0xc5ec4de5 ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0xc5ef2aa7 __mmu_notifier_invalidate_range_end -EXPORT_SYMBOL_GPL vmlinux 0xc5f36107 fuse_request_send_background -EXPORT_SYMBOL_GPL vmlinux 0xc606cd3c boot_cpuid -EXPORT_SYMBOL_GPL vmlinux 0xc612a40b debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc627431a alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xc63a62f9 find_symbol -EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc66c4a51 devm_pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xc68217e1 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xc68aa252 __atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc6a3d58a gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0xc6aba7da wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0xc6d601ce ping_close -EXPORT_SYMBOL_GPL vmlinux 0xc6e3e5b3 regmap_field_write -EXPORT_SYMBOL_GPL vmlinux 0xc708c1ae scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xc70ee975 pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xc713c41c device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xc71c541a spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0xc7275d6c wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xc7356d61 usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xc7386bd8 sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xc754207b cm_notify_event -EXPORT_SYMBOL_GPL vmlinux 0xc7645de7 pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0xc778534c mmu_notifier_unregister_no_release -EXPORT_SYMBOL_GPL vmlinux 0xc785d570 __mmu_notifier_invalidate_range -EXPORT_SYMBOL_GPL vmlinux 0xc787ad62 ablkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xc7919f5f relay_open -EXPORT_SYMBOL_GPL vmlinux 0xc795500b kthread_park -EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7b617a2 ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer -EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xc87e2d7a sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0xc8c15b64 of_get_display_timing -EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0xc8f9f818 usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xc91308d3 tps65217_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0xc92807ec usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xc92e7c18 of_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xc935cb96 debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0xc9428be7 skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0xc947631e phy_get -EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc96a1260 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0xc9714e3e tps65912_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xc977c067 crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level -EXPORT_SYMBOL_GPL vmlinux 0xc97e9bff register_jprobes -EXPORT_SYMBOL_GPL vmlinux 0xc990c680 devres_release -EXPORT_SYMBOL_GPL vmlinux 0xc9d19654 pci_reset_pri -EXPORT_SYMBOL_GPL vmlinux 0xc9e70e06 regmap_fields_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc9f253ad __rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0xca06f41f __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0xca1449f6 of_usb_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xca214ad6 regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xca2d6d83 sg_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xca3088bf crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0xca42feb5 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0xca4698e2 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0xca58e4de kernfs_path -EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca7d8f9e crypto_givcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xca9be356 usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcacb1486 gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xcad3de7a tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0xcad73c06 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0xcaecde2b dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xcaee51b0 cpufreq_frequency_table_target -EXPORT_SYMBOL_GPL vmlinux 0xcaefd634 usb_phy_generic_register -EXPORT_SYMBOL_GPL vmlinux 0xcb0f7768 of_irq_to_resource -EXPORT_SYMBOL_GPL vmlinux 0xcb122565 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0xcb12375c nf_unregister_afinfo -EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb210167 ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0xcb30e918 regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0xcb30f25a usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module -EXPORT_SYMBOL_GPL vmlinux 0xcb5ee621 hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0xcb61e32b tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0xcb75c39a bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcb79c2ae powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0xcb7e8cd0 regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0xcb8bc130 regmap_update_bits_check -EXPORT_SYMBOL_GPL vmlinux 0xcb8cc8ff of_regulator_match -EXPORT_SYMBOL_GPL vmlinux 0xcb989438 iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0xcbb31d4f mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0xcbd864be of_reserved_mem_device_release -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0xcbf7edab fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0xcc0f1009 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcc19d1ec inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xcc2ba30d list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0xcc55fa15 pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xcc590216 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xcc6e75f9 l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule -EXPORT_SYMBOL_GPL vmlinux 0xcc9c4f63 ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0xcc9fa812 mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0xccbcb446 fuse_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0xccc42ecd tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xcceb9134 usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xccf6c4a4 kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xcd05bfbc each_symbol_section -EXPORT_SYMBOL_GPL vmlinux 0xcd103683 of_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xcd13a5ba uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0xcd1645c2 trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0xcd495042 regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0xcd4cec63 blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xcd649280 dma_buf_kunmap -EXPORT_SYMBOL_GPL vmlinux 0xcd6492ab trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq -EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs -EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcd9d7a37 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdb91e2d of_dma_configure -EXPORT_SYMBOL_GPL vmlinux 0xcdbddd5b dbs_check_cpu -EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdec71aa pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcdf67c1e usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0xcdfb17cb __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xce407f5d inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce7f48ce xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0xce9b51a3 ata_eh_qc_retry -EXPORT_SYMBOL_GPL vmlinux 0xcedb4889 file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcf322e9b wm8400_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xcf495ffb pcibios_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain -EXPORT_SYMBOL_GPL vmlinux 0xcf5b868d pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0xcf62d6bd sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xcf6b6d3b od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0xcf790927 cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0xcf867ad2 __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcf87596b inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xcf88f85b map_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xcfbbe373 dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0xcfe46774 fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0xcfef875f vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0xd0202515 da903x_update -EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xd04710a6 crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0xd04c0764 pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd079218b rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0xd0860b2f rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xd0b00481 pwm_set_polarity -EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0d612b2 serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0xd10dfac3 desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0xd11858c4 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0xd133efbb pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0xd15a958e setup_irq -EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xd1822f0b cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xd1b6679c phy_exit -EXPORT_SYMBOL_GPL vmlinux 0xd1b69071 devm_usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0xd1d51cd3 blk_mq_register_disk -EXPORT_SYMBOL_GPL vmlinux 0xd1d7074f ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0xd1e1383c debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xd1e36662 phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xd1ee72b3 devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd1fe0ced fuse_get_req -EXPORT_SYMBOL_GPL vmlinux 0xd20490f9 raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd20d1c07 devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0xd216a8ac sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd21d0144 devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xd22dce6c crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0xd2362392 __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd28af796 irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0xd290869e ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0xd29a105b of_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xd2a9b56b rt_mutex_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd2aaeb4e kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0xd2b361a3 pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0xd2b3a7cd gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xd2d6a5bc crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript -EXPORT_SYMBOL_GPL vmlinux 0xd2fa625f wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0xd343cc10 bpf_prog_realloc -EXPORT_SYMBOL_GPL vmlinux 0xd363bfec of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xd36d8f51 swiotlb_tbl_unmap_single -EXPORT_SYMBOL_GPL vmlinux 0xd381a76b key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xd39bcfde pci_reset_bridge_secondary_bus -EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd41378fe irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xd426ba17 of_pci_parse_bus_range -EXPORT_SYMBOL_GPL vmlinux 0xd43d7481 scsi_device_from_queue -EXPORT_SYMBOL_GPL vmlinux 0xd43e63b8 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd453edef of_pci_msi_chip_add -EXPORT_SYMBOL_GPL vmlinux 0xd464287e tpm_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0xd47870b4 ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0xd4b30939 __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0xd4bf670f spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4c2a4dd of_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0xd4c31731 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0xd4d933b2 bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xd51a98e6 regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xd52873b6 ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0xd54971b0 crypto_tfm_in_queue -EXPORT_SYMBOL_GPL vmlinux 0xd556dc72 rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xd5597f60 rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0xd577f3e6 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xd58e043c ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0xd596ef59 queue_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0xd5b85c98 net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0xd5c9004f transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0xd5f2430e devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xd608d9ba debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0xd609861a xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh -EXPORT_SYMBOL_GPL vmlinux 0xd6113f0c spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0xd624e9b7 usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xd635534d user_preparse -EXPORT_SYMBOL_GPL vmlinux 0xd636f69e usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xd655692b ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd681e20a i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0xd68eb888 mpic_subsys -EXPORT_SYMBOL_GPL vmlinux 0xd6aeef90 __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0xd6d1a4f9 devm_regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xd6ed8259 bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries -EXPORT_SYMBOL_GPL vmlinux 0xd705054f pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0xd71da5d4 uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xd73ef20c crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0xd7624621 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xd782391b __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xd785050b ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0xd7867bcc devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0xd79beb87 irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0xd7b8df26 irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0xd7fc3e98 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0xd807e7f9 pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0xd80e9003 sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0xd814987c bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0xd818549e ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xd82cb66c skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0xd8399511 led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xd87c6d9d reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xd87f7f7d exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd8a35bbe use_mm -EXPORT_SYMBOL_GPL vmlinux 0xd8bb28e9 platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0xd8e40f4b blk_unprep_request -EXPORT_SYMBOL_GPL vmlinux 0xd8ea9402 blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xd8f76815 rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xd8fbf24b device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0xd8fd4265 free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xd90f6d3f sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0xd93ba565 mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0xd94aa457 display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0xd962971b fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd97c8f27 dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0xd99ef66d __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0xd9bfdb42 skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xda09e833 driver_register -EXPORT_SYMBOL_GPL vmlinux 0xda0a4d22 mpic_msgr_enable -EXPORT_SYMBOL_GPL vmlinux 0xda132784 crypto_blkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xda164c01 x509_request_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0xda2529e3 cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xda58c5e3 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0xda79a78c inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xda9421d4 debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0xda9db12e regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xdab3a014 cpu_remove_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0xdac575e4 crypto_init_shash_spawn -EXPORT_SYMBOL_GPL vmlinux 0xdae715e0 videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0xdaf2dec9 ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdb088cb1 pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xdb1fc470 devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xdb77e53c pwm_free -EXPORT_SYMBOL_GPL vmlinux 0xdb7a9e42 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xdb8739a5 pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb8cda05 i2c_new_dummy -EXPORT_SYMBOL_GPL vmlinux 0xdb8e8fbb relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0xdb95e52d of_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0xdba4fd47 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0xdbb9abc1 ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0xdbc5c276 smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0xdbd88275 pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0xdbf78b03 crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdc1365fb irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0xdc1c379d __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0xdc32ccc7 pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdc41cfcc devm_led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0xdc461430 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0xdc520eb4 ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0xdc58a752 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable -EXPORT_SYMBOL_GPL vmlinux 0xdc855b26 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9ad59e virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdccae802 handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0xdcd764c3 regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xdcde1670 fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0xdd10b50e scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock -EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd4876fc page_cache_async_readahead -EXPORT_SYMBOL_GPL vmlinux 0xdd50e046 hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd556f0e ref_module -EXPORT_SYMBOL_GPL vmlinux 0xdd729424 usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0xdd7b4f5c bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0xdd828af2 attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0xdd927a5f dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0xdd9becf9 serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0xdd9fc71b regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0xddaaad71 crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0xddab2ad0 gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0xdde4a0d1 regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0xddef0859 sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0xde01812f regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0xde01f916 usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0xde0a9612 disk_part_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xde2219b3 transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0xde472797 usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xde538899 pskb_put -EXPORT_SYMBOL_GPL vmlinux 0xde9463a6 freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xdead0159 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xdeb022fc fat_scan -EXPORT_SYMBOL_GPL vmlinux 0xdefc60f6 of_pci_get_host_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf2c919e key_type_user -EXPORT_SYMBOL_GPL vmlinux 0xdf7a26f3 ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0xdfa6eb16 ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0xdfa8ee25 __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0xdfa8f161 pci_try_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xdfabb876 device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0xdfdc359a unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xdfe4b78f skcipher_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0xdfedade2 usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name -EXPORT_SYMBOL_GPL vmlinux 0xe0255f00 ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0xe036b3e9 mpic_msgr_put -EXPORT_SYMBOL_GPL vmlinux 0xe04c1ce7 regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xe060a717 __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0xe07ca631 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0xe088112f get_dcookie -EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved -EXPORT_SYMBOL_GPL vmlinux 0xe08bf2b1 power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0xe0ad7d2d inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0xe0b617a0 pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0xe0c13884 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0xe0c96c21 cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0xe0cb9b2e cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0xe1083ae3 __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0xe1205e9e pmac_low_i2c_lock -EXPORT_SYMBOL_GPL vmlinux 0xe121cbb6 static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0xe1264e40 crypto_ahash_type -EXPORT_SYMBOL_GPL vmlinux 0xe14426b4 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0xe14f6131 regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0xe14fb353 stmpe_disable -EXPORT_SYMBOL_GPL vmlinux 0xe17257d1 cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe18d8dec of_overlay_create -EXPORT_SYMBOL_GPL vmlinux 0xe1a6bd9b fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0xe1b7d9e1 of_platform_default_populate -EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports -EXPORT_SYMBOL_GPL vmlinux 0xe1cd4704 dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0xe1ef3418 irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0xe1fdf945 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0xe2147785 max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0xe23b6342 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xe25c6147 pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength -EXPORT_SYMBOL_GPL vmlinux 0xe28a8915 md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe29944b5 usb_bus_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xe2bb677a sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0xe2d92369 extcon_unregister_interest -EXPORT_SYMBOL_GPL vmlinux 0xe3016e6c crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xe30b381d fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xe31edfb6 of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0xe33fbb75 gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0xe36f46ee debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0xe3722ace wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0xe3b8fdaa usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0xe3d62914 eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0xe4299aff device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe4325c19 ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0xe43d1b91 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xe45fd652 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xe477d992 alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0xe48a7a3a crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0xe4944bfb fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4a0d7af __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xe4c031f8 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto -EXPORT_SYMBOL_GPL vmlinux 0xe51b7a42 gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xe5576600 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq -EXPORT_SYMBOL_GPL vmlinux 0xe5adce51 ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0xe5b2e004 regmap_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xe5d5c84f irq_find_matching_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xe5db22cd of_pci_msi_chip_remove -EXPORT_SYMBOL_GPL vmlinux 0xe5e9f2e6 devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xe606d5b3 ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0xe62cad62 gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe65a0942 scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0xe671f33c pmac_i2c_get_channel -EXPORT_SYMBOL_GPL vmlinux 0xe692164d usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xe6a2a3fd skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0xe6b3cedb __module_address -EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module -EXPORT_SYMBOL_GPL vmlinux 0xe6cf2ce9 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen -EXPORT_SYMBOL_GPL vmlinux 0xe6e6dfa1 vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xe7145917 usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0xe7302f3e devm_power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0xe759234b tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0xe75ccf9b tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0xe7617ade regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe76c1248 xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0xe7725218 inet_hash -EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0xe7d4d256 ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0xe7f18b3c threads_per_subcore -EXPORT_SYMBOL_GPL vmlinux 0xe7f1fa05 inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0xe7f20bb5 thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xe7f241b5 usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr -EXPORT_SYMBOL_GPL vmlinux 0xe8090cba dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe82b8017 __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe85c55e7 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe89f3b0d rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe8a0e96c pmac_i2c_adapter_to_bus -EXPORT_SYMBOL_GPL vmlinux 0xe8a31d6f sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0xe8b8e9aa irq_create_direct_mapping -EXPORT_SYMBOL_GPL vmlinux 0xe9002225 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0xe90116a2 kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0xe91cac7d device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0xe927ade2 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe93f4058 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xe9554fc7 rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xe9731816 of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xe9960f69 md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0xe9a9983e thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9d64e6b power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0xe9e7e218 blkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0xe9fcbdf9 __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea1a72b4 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0xea2615df usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xea2876ef pmf_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xea3d7121 wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0xea4eba21 regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0xea5033e8 blkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xea57c99b pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xea92ec8f class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0xeab761dc regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0xeacdcd13 led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0xeae5b46c rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0xeb0de811 sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0xeb309aca ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0xeb3de213 pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xeb4ebfab rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xeb675940 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0xeb6d7d40 __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0xeb8ae736 klist_init -EXPORT_SYMBOL_GPL vmlinux 0xeb90e7ea sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0xeb944231 ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0xeb979991 usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xebad6d7c __get_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xebb3592b snmp_get_cpu_field64 -EXPORT_SYMBOL_GPL vmlinux 0xebc3845a ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0xebd42c72 fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xebdb31d4 analyse_instr -EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xebf5a80b rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0xec167a63 serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare -EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del -EXPORT_SYMBOL_GPL vmlinux 0xec4794a8 bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0xec53053b regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0xec770d0a cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0xec94bfad of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0xeca173c9 led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0xecac825e ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0xecbe918b register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0xecca41f1 blkg_prfill_stat -EXPORT_SYMBOL_GPL vmlinux 0xecd068d3 spi_alloc_master -EXPORT_SYMBOL_GPL vmlinux 0xecd198a3 devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0xecdd0306 spi_setup -EXPORT_SYMBOL_GPL vmlinux 0xed06c5cb pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xed3e33ee __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xed4b1641 ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0xed6d8b4e xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xed739918 syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0xed7ee946 swiotlb_unmap_page -EXPORT_SYMBOL_GPL vmlinux 0xed9e7f2c ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0xede00b2d of_modalias_node -EXPORT_SYMBOL_GPL vmlinux 0xedee3d4a ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0xee1e9bf7 dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xee25a28c unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0xee31f5d6 kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0xee45e7b1 pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0xee54a1f8 serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible -EXPORT_SYMBOL_GPL vmlinux 0xeea31a75 dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0xeea8bdaf pm_relax -EXPORT_SYMBOL_GPL vmlinux 0xeedfa566 disk_part_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xef409b74 kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef5300bb __class_register -EXPORT_SYMBOL_GPL vmlinux 0xef5e4154 __netpoll_free_async -EXPORT_SYMBOL_GPL vmlinux 0xef6015ae cpu_add_dev_attr_group -EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef755822 powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0xef81a444 sdio_run_irqs -EXPORT_SYMBOL_GPL vmlinux 0xef828a58 serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0xef8cc16f devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xef906dc3 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0xef9ae4b6 pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefb01094 user_describe -EXPORT_SYMBOL_GPL vmlinux 0xefdf0b6c kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0xefe5acec sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0xf0162f2b rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0xf01e43f7 md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0xf05fdaa0 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0xf063843d xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xf08ef47f i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xf0a188d9 pwm_enable -EXPORT_SYMBOL_GPL vmlinux 0xf0c1d7d7 pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xf0da1963 swiotlb_tbl_map_single -EXPORT_SYMBOL_GPL vmlinux 0xf0f53cab scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0xf10a7591 devm_mdiobus_alloc_size -EXPORT_SYMBOL_GPL vmlinux 0xf1114b89 fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0xf112f327 wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0xf14eca2c __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xf158f170 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0xf15ebff9 pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xf15f82f6 pmac_backlight -EXPORT_SYMBOL_GPL vmlinux 0xf1776c73 irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xf177fe96 key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf1a62b6f of_i8042_kbd_irq -EXPORT_SYMBOL_GPL vmlinux 0xf1a98d81 cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key -EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on -EXPORT_SYMBOL_GPL vmlinux 0xf1b6e5d9 spi_async -EXPORT_SYMBOL_GPL vmlinux 0xf1c02784 crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0xf1ec3554 bio_associate_current -EXPORT_SYMBOL_GPL vmlinux 0xf201ad88 cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xf2196393 tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf234a10c regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0xf2442727 vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0xf257b355 bio_alloc_mddev -EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support -EXPORT_SYMBOL_GPL vmlinux 0xf30c128c tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xf30fda27 lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf340ab0c balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0xf34aa090 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0xf3547a41 bio_associate_blkcg -EXPORT_SYMBOL_GPL vmlinux 0xf36d670a md_stop -EXPORT_SYMBOL_GPL vmlinux 0xf3786aa7 bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf3a010bc debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0xf3aab1d7 reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3b4d6fc unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0xf3d3d222 pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xf4222fc3 posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf423c63b add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0xf451b513 ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0xf464f212 blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0xf4711787 pmf_put_function -EXPORT_SYMBOL_GPL vmlinux 0xf471665d security_kernel_fw_from_file -EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask -EXPORT_SYMBOL_GPL vmlinux 0xf4957b75 bdev_write_page -EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh -EXPORT_SYMBOL_GPL vmlinux 0xf4b333d1 synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0xf4bde991 __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf50572c0 of_dma_xlate_by_chan_id -EXPORT_SYMBOL_GPL vmlinux 0xf50d123c blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0xf5232a6a remove_irq -EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf55147a3 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf596215d inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5bcf1b2 __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0xf5df6694 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xf6094b2f wakeup_source_prepare -EXPORT_SYMBOL_GPL vmlinux 0xf6238802 pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0xf627b53c balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0xf62b2195 max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xf6396c87 bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0xf639e9b8 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0xf64bc920 usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0xf66632c6 mpc8xxx_spi_rx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0xf6671e26 platform_bus -EXPORT_SYMBOL_GPL vmlinux 0xf6753954 rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xf691ead5 wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xf693b2ec shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0xf6b76508 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0xf6bb3cb8 scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6e11a93 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0xf6e51a92 edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf728196e ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0xf7896918 nl_table -EXPORT_SYMBOL_GPL vmlinux 0xf7b3c94b ata_scsi_simulate -EXPORT_SYMBOL_GPL vmlinux 0xf7d4e963 devm_rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf7e83eee posix_timer_event -EXPORT_SYMBOL_GPL vmlinux 0xf7e9bf7c blk_queue_flush_queueable -EXPORT_SYMBOL_GPL vmlinux 0xf7f9d583 fib_select_path -EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf841ab62 device_property_present -EXPORT_SYMBOL_GPL vmlinux 0xf842157c mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0xf8456b92 ping_proc_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf846506f irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf8499401 cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0xf8660faa crypto_larval_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xf886c9cc posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xf8a0030e simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0xf8aea3d0 debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xf8b04818 dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops -EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8fafd78 regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0xf91a5351 msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0xf91eac65 gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0xf9289482 mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf93df553 crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xf949db9f serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0xf94f4e38 wbc_account_io -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf95a79fd pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0xf95eda8f devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0xf960d3e6 relay_flush -EXPORT_SYMBOL_GPL vmlinux 0xf96e0cd3 i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0xf98553d6 attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf98877df wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xf9f6509a usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0xfa011ebb usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xfa09daab wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa5a073a bio_clone_mddev -EXPORT_SYMBOL_GPL vmlinux 0xfa6272be blk_mq_request_started -EXPORT_SYMBOL_GPL vmlinux 0xfa76a6e7 irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0xfa774507 skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xfaa48d24 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0xfaa81d38 scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0xfaad2dc6 tpm2_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0xfaae8d4b rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xfab60503 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0xfaebb3b7 rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0xfaf33ef4 blkg_print_stat_ios_recursive -EXPORT_SYMBOL_GPL vmlinux 0xfaf5bd51 unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0xfb016424 __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xfb022931 __blk_run_queue_uncond -EXPORT_SYMBOL_GPL vmlinux 0xfb0324fa agp_remove_bridge -EXPORT_SYMBOL_GPL vmlinux 0xfb2b0d7f __percpu_ida_init -EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb425796 devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xfb525dfc pmac_i2c_get_type -EXPORT_SYMBOL_GPL vmlinux 0xfb52b77d __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0xfb5ec580 blkg_print_stat_bytes -EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb7c8d8c usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0xfb91836e cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0xfb922865 regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0xfba7e742 bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0xfbb02220 fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0xfbb4b46a rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbd169a2 thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xfbd678db proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0xfbe32542 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc106103 trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0xfc3c835a ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xfc3e637d shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0xfc531d04 regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xfc567169 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0xfc594748 fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0xfc65b51b invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0xfcabcb53 crypto_lookup_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xfcb52242 tps65217_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xfcffb4e1 pmac_i2c_get_flags -EXPORT_SYMBOL_GPL vmlinux 0xfd099e5b led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0xfd10adb4 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0xfd1674cb bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0xfd4071ce regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0xfd53bfe8 subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack -EXPORT_SYMBOL_GPL vmlinux 0xfdb01c6a extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0xfdd9e083 gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0xfde753f5 of_get_nand_ecc_strength -EXPORT_SYMBOL_GPL vmlinux 0xfe151481 device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0xfe266cc7 phy_create -EXPORT_SYMBOL_GPL vmlinux 0xfe391ecc pmf_register_irq_client -EXPORT_SYMBOL_GPL vmlinux 0xfe66c92c pmac_i2c_get_dev_addr -EXPORT_SYMBOL_GPL vmlinux 0xfe7cc393 pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfeba0cca rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff065733 component_add -EXPORT_SYMBOL_GPL vmlinux 0xff1440c2 regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0xff510308 to_of_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xff80969c regmap_update_bits_check_async -EXPORT_SYMBOL_GPL vmlinux 0xff81e5c2 spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0xfff5f718 thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfffa5a9c ping_recvmsg reverted: --- linux-raspi2-4.4.0/debian.master/abi/4.4.0-89.112/powerpc/powerpc-smp.compiler +++ linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-89.112/powerpc/powerpc-smp.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 reverted: --- linux-raspi2-4.4.0/debian.master/abi/4.4.0-89.112/powerpc/powerpc-smp.modules +++ linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-89.112/powerpc/powerpc-smp.modules @@ -1,4317 +0,0 @@ -3c574_cs -3c589_cs -3c59x -3w-9xxx -3w-sas -3w-xxxx -6lowpan -6pack -8021q -8139cp -8139too -8250_dw -8250_mid -8255 -8255_pci -8390 -842 -842_compress -842_decompress -88pm800 -88pm805 -88pm80x -88pm80x_onkey -88pm8607 -88pm860x-ts -88pm860x_battery -88pm860x_bl -88pm860x_charger -88pm860x_onkey -9p -9pnet -9pnet_rdma -9pnet_virtio -BusLogic -DAC960 -a100u2w -a3d -a8293 -aacraid -aat2870-regulator -aat2870_bl -ab3100 -ab3100-otp -ac97_bus -acard-ahci -acecad -acenic -act200l-sir -act8865-regulator -act_bpf -act_connmark -act_csum -act_gact -act_ipt -act_mirred -act_nat -act_pedit -act_police -act_simple -act_skbedit -act_vlan -actisys-sir -ad2s1200 -ad2s1210 -ad2s90 -ad5064 -ad525x_dpot -ad525x_dpot-i2c -ad525x_dpot-spi -ad5360 -ad5380 -ad5398 -ad5421 -ad5446 -ad5449 -ad5504 -ad5592r -ad5592r-base -ad5593r -ad5624r_spi -ad5686 -ad5755 -ad5764 -ad5791 -ad5933 -ad714x -ad714x-i2c -ad714x-spi -ad7150 -ad7152 -ad7192 -ad7266 -ad7280a -ad7291 -ad7298 -ad7303 -ad7314 -ad7414 -ad7418 -ad7476 -ad7606 -ad7746 -ad7780 -ad7791 -ad7793 -ad7816 -ad7877 -ad7879 -ad7879-i2c -ad7879-spi -ad7887 -ad7923 -ad799x -ad8366 -ad9523 -ad9832 -ad9834 -ad_sigma_delta -adc128d818 -adcxx -addi_apci_1032 -addi_apci_1500 -addi_apci_1516 -addi_apci_1564 -addi_apci_16xx -addi_apci_2032 -addi_apci_2200 -addi_apci_3120 -addi_apci_3501 -addi_apci_3xxx -addi_watchdog -ade7753 -ade7754 -ade7758 -ade7759 -ade7854 -ade7854-i2c -ade7854-spi -adf4350 -adfs -adi -adis16060 -adis16080 -adis16130 -adis16136 -adis16201 -adis16203 -adis16204 -adis16209 -adis16220 -adis16240 -adis16260 -adis16400 -adis16480 -adis_lib -adjd_s311 -adl_pci6208 -adl_pci7x3x -adl_pci8164 -adl_pci9111 -adl_pci9118 -adm1021 -adm1025 -adm1026 -adm1029 -adm1031 -adm1275 -adm8211 -adm9240 -adp5520-keys -adp5520_bl -adp5588-keys -adp5589-keys -adp8860_bl -adp8870_bl -adq12b -ads1015 -ads7828 -ads7846 -ads7871 -adt7310 -adt7316 -adt7316-i2c -adt7316-spi -adt7410 -adt7411 -adt7462 -adt7470 -adt7475 -adt7x10 -adummy -adutux -adv7170 -adv7175 -adv7511 -adv7604 -adv7842 -adv_pci1710 -adv_pci1723 -adv_pci1724 -adv_pci_dio -advansys -adxl34x -adxl34x-i2c -adxl34x-spi -adxrs450 -af-rxrpc -af9013 -af9033 -af_alg -af_key -af_packet_diag -affs -ah4 -ah6 -aha152x_cs -ahci -ahci_ceva -ahci_platform -ahci_qoriq -aic79xx -aic7xxx -aic94xx -aim_cdev -aim_network -aim_sound -aim_v4l2 -aio_aio12_8 -aio_iiro_16 -aiptek -aircable -airo -airo_cs -airport -airspy -ak8975 -al3320a -algif_aead -algif_hash -algif_rng -algif_skcipher -ali-ircc -alim7101_wdt -altera-ci -altera-stapl -altera_jtaguart -altera_ps2 -altera_tse -altera_uart -alx -am53c974 -ambassador -amc6821 -amd -amd5536udc -amd8111e -amdgpu -amplc_dio200 -amplc_dio200_common -amplc_dio200_pci -amplc_pc236 -amplc_pc236_common -amplc_pc263 -amplc_pci224 -amplc_pci230 -amplc_pci236 -amplc_pci263 -ams -ams369fg06 -analog -anatop-regulator -ans-lcd -ansi_cprng -anubis -aoe -apbps2 -apds9300 -apds9802als -apds990x -apds9960 -apm-emulation -apm-power -apm_emu -apm_power -appledisplay -appletalk -appletouch -applicom -aquantia -ar1021_i2c -ar5523 -ar7part -arc-rawmode -arc-rimi -arc4 -arc_emac -arc_ps2 -arc_uart -arcmsr -arcnet -arizona-haptics -arizona-i2c -arizona-ldo1 -arizona-micsupp -arizona-spi -ark3116 -arkfb -arp_tables -arpt_mangle -arptable_filter -as102_fe -as3711-regulator -as3711_bl -as3722-regulator -as3935 -as5011 -asc7621 -ascot2e -asix -ast -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at24 -at25 -at76c50x-usb -at803x -at86rf230 -ata_generic -ata_piix -atbm8830 -aten -ath -ath10k_core -ath10k_pci -ath3k -ath5k -ath6kl_core -ath6kl_sdio -ath6kl_usb -ath9k -ath9k_common -ath9k_htc -ath9k_hw -ati_remote -ati_remote2 -atl1 -atl1c -atl1e -atl2 -atm -atmel -atmel-flexcom -atmel-hlcdc -atmel_cs -atmel_mxt_ts -atmel_pci -atmtcp -atp870u -atusb -atxp1 -atyfb -au0828 -au8522_common -au8522_decoder -au8522_dig -aufs -auo-pixcir-ts -auo_k1900fb -auo_k1901fb -auo_k190x -auth_rpcgss -authenc -authencesn -autofs4 -avm_cs -avma1_cs -avmfritz -ax25 -ax88179_178a -axnet_cs -axp20x-pek -axp20x-regulator -axp20x_usb_power -axp288_adc -axp288_charger -axp288_fuel_gauge -b1 -b1dma -b1pci -b1pcmcia -b2c2-flexcop -b2c2-flexcop-pci -b2c2-flexcop-usb -b43 -b43legacy -b44 -bas_gigaset -batman-adv -baycom_epp -baycom_par -baycom_ser_fdx -baycom_ser_hdx -bcache -bch -bcm-phy-lib -bcm203x -bcm3510 -bcm590xx -bcm590xx-regulator -bcm5974 -bcm7038_wdt -bcm7xxx -bcm87xx -bcma -bcma-hcd -bcmsysport -bd6107 -bdc -bdc_pci -be2iscsi -be2net -befs -belkin_sa -bfa -bfs -bfusb -bh1750 -bh1770glc -bh1780gli -binfmt_misc -block2mtd -blocklayoutdriver -blowfish_common -blowfish_generic -bluecard_cs -bluetooth -bluetooth_6lowpan -bma150 -bma180 -bmac -bmc150-accel-core -bmc150-accel-i2c -bmc150-accel-spi -bmc150_magn -bmg160_core -bmg160_i2c -bmg160_spi -bmp085 -bmp085-i2c -bmp085-spi -bmp280 -bna -bnep -bnx2 -bnx2fc -bnx2i -bnx2x -bnxt_en -bonding -bpa10x -bpck -bpck6 -bpqether -bq2415x_charger -bq24190_charger -bq24257_charger -bq24735-charger -bq25890_charger -bq27xxx_battery -br2684 -br_netfilter -brcmfmac -brcmsmac -brcmutil -brd -bridge -broadcom -broadsheetfb -bsd_comp -bt3c_cs -bt819 -bt856 -bt866 -bt878 -btbcm -btcoexist -btintel -btmrvl -btmrvl_sdio -btqca -btrfs -btrtl -btsdio -bttv -btuart_cs -btusb -btwilink -bu21013_ts -budget -budget-av -budget-ci -budget-core -budget-patch -c4 -c67x00 -c6xdigio -c_can -c_can_pci -c_can_platform -cachefiles -cadence_wdt -cafe_ccic -cafe_nand -caif -caif_hsi -caif_serial -caif_socket -caif_usb -caif_virtio -camellia_generic -can -can-bcm -can-dev -can-gw -can-raw -cap11xx -capi -capidrv -capmode -carl9170 -carminefb -cassini -cast5_generic -cast6_generic -cast_common -catc -cb710 -cb710-mmc -cb_das16_cs -cb_pcidas -cb_pcidas64 -cb_pcidda -cb_pcimdas -cb_pcimdda -cc2520 -cc770 -cc770_isa -cc770_platform -cciss -ccm -cdc-acm -cdc-phonet -cdc-wdm -cdc_eem -cdc_ether -cdc_mbim -cdc_ncm -cdc_subset -ceph -cfg80211 -cfi_cmdset_0001 -cfi_cmdset_0002 -cfi_cmdset_0020 -cfi_probe -cfi_util -cfspi_slave -ch -ch341 -ch7006 -ch9200 -chacha20_generic -chacha20poly1305 -chaoskey -chipone_icn8318 -chipreg -chnl_net -ci_hdrc -ci_hdrc_imx -ci_hdrc_msm -ci_hdrc_pci -ci_hdrc_usb2 -ci_hdrc_zevio -cicada -cifs -cirrus -cirrusfb -clip -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_rsvp -cls_rsvp6 -cls_tcindex -cls_u32 -cm109 -cm32181 -cm3232 -cm3323 -cm36651 -cm4000_cs -cm4040_cs -cma3000_d0x -cma3000_d0x_i2c -cmac -cmdlinepart -cmtp -cnic -cobalt -cobra -coda -colibri-vf50-ts -com20020 -com20020-pci -com20020_cs -com90io -com90xx -comedi -comedi_8254 -comedi_8255 -comedi_bond -comedi_isadma -comedi_parport -comedi_pci -comedi_pcmcia -comedi_test -comedi_usb -comm -configfs -contec_pci_dio -cordic -core -cp210x -cpia2 -cpsw_ale -cpu-notifier-error-inject -cramfs -crc-ccitt -crc-itu-t -crc32 -crc7 -crc8 -cryptd -crypto_user -cryptoloop -cs5345 -cs53l32a -csiostor -ctr -cts -cuse -cw1200_core -cw1200_wlan_sdio -cw1200_wlan_spi -cx18 -cx18-alsa -cx22700 -cx22702 -cx231xx -cx231xx-alsa -cx231xx-dvb -cx2341x -cx23885 -cx24110 -cx24113 -cx24116 -cx24117 -cx24120 -cx24123 -cx25821 -cx25821-alsa -cx25840 -cx82310_eth -cx88-alsa -cx88-blackbird -cx88-dvb -cx88-vp3054-i2c -cx8800 -cx8802 -cx88xx -cxacru -cxd2099 -cxd2820r -cxd2841er -cxgb -cxgb3 -cxgb3i -cxgb4 -cxgb4i -cxgb4vf -cy8ctmg110_ts -cyapatp -cyber2000fb -cyberjack -cyclades -cypress_cy7c63 -cypress_firmware -cypress_m8 -cytherm -cyttsp4_core -cyttsp4_i2c -cyttsp4_spi -cyttsp_core -cyttsp_i2c -cyttsp_i2c_common -cyttsp_spi -da9030_battery -da9034-ts -da903x -da903x_bl -da9052-battery -da9052-hwmon -da9052-regulator -da9052_bl -da9052_onkey -da9052_tsi -da9052_wdt -da9055-hwmon -da9055-regulator -da9055_onkey -da9055_wdt -da9062-core -da9062-regulator -da9062_wdt -da9063-regulator -da9063_onkey -da9063_wdt -da9150-charger -da9150-core -da9150-fg -da9150-gpadc -da9210-regulator -da9211-regulator -dac02 -daqboard2000 -das08 -das08_cs -das08_isa -das08_pci -das16 -das16m1 -das1800 -das6402 -das800 -davicom -db9 -dc395x -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -dccp_probe -ddbridge -de2104x -de4x5 -decnet -deflate -defxx -denali -denali_pci -des_generic -dgap -dgnc -dht11 -dib0070 -dib0090 -dib3000mb -dib3000mc -dib7000m -dib7000p -dib8000 -dibx000_common -digi_acceleport -digicolor-usart -diskonchip -diva_idi -diva_mnt -divacapi -divadidd -divas -dl2k -dlci -dlm -dln2 -dm-bio-prison -dm-bufio -dm-cache -dm-cache-cleaner -dm-cache-mq -dm-cache-smq -dm-crypt -dm-delay -dm-era -dm-flakey -dm-log -dm-log-userspace -dm-log-writes -dm-mirror -dm-multipath -dm-persistent-data -dm-queue-length -dm-raid -dm-region-hash -dm-round-robin -dm-service-time -dm-snapshot -dm-switch -dm-thin-pool -dm-verity -dm-zero -dm1105 -dm9601 -dmfe -dmm32at -dmx3191d -dn_rtmsg -dnet -docg3 -docg4 -donauboe -dp83848 -dp83867 -dpt_i2o -drbd -drbg -drm -drm_kms_helper -drop_monitor -drv260x -drv2665 -drv2667 -drx39xyj -drxd -drxk -ds1621 -ds1682 -ds1wm -ds2482 -ds2490 -ds2760_battery -ds2780_battery -ds2781_battery -ds2782_battery -ds3000 -ds620 -dsbr100 -dscc4 -dss1_divert -dst -dst_ca -dstr -dt2801 -dt2811 -dt2814 -dt2815 -dt2817 -dt282x -dt3000 -dt3155 -dt9812 -dtl1_cs -dummy -dummy-irq -dummy_stm -dvb-as102 -dvb-bt8xx -dvb-core -dvb-pll -dvb-ttpci -dvb-ttusb-budget -dvb-usb -dvb-usb-a800 -dvb-usb-af9005 -dvb-usb-af9005-remote -dvb-usb-af9015 -dvb-usb-af9035 -dvb-usb-anysee -dvb-usb-au6610 -dvb-usb-az6007 -dvb-usb-az6027 -dvb-usb-ce6230 -dvb-usb-cinergyT2 -dvb-usb-cxusb -dvb-usb-dib0700 -dvb-usb-dibusb-common -dvb-usb-dibusb-mb -dvb-usb-dibusb-mc -dvb-usb-digitv -dvb-usb-dtt200u -dvb-usb-dtv5100 -dvb-usb-dvbsky -dvb-usb-dw2102 -dvb-usb-ec168 -dvb-usb-friio -dvb-usb-gl861 -dvb-usb-gp8psk -dvb-usb-lmedm04 -dvb-usb-m920x -dvb-usb-mxl111sf -dvb-usb-nova-t-usb2 -dvb-usb-opera -dvb-usb-pctv452e -dvb-usb-rtl28xxu -dvb-usb-technisat-usb2 -dvb-usb-ttusb2 -dvb-usb-umt-010 -dvb-usb-vp702x -dvb-usb-vp7045 -dvb_usb_v2 -dw_dmac -dw_dmac_core -dw_dmac_pci -dw_wdt -dwc3 -dwc3-pci -dwc_eth_qos -dwmac-generic -dwmac-ipq806x -dwmac-lpc18xx -dwmac-meson -dwmac-rk -dwmac-socfpga -dwmac-sti -dwmac-sunxi -dyna_pci10xx -dynapro -e100 -e1000 -e1000e -e3x0-button -e4000 -earth-pt1 -earth-pt3 -eata -ebt_802_3 -ebt_among -ebt_arp -ebt_arpreply -ebt_dnat -ebt_ip -ebt_ip6 -ebt_limit -ebt_log -ebt_mark -ebt_mark_m -ebt_nflog -ebt_pkttype -ebt_redirect -ebt_snat -ebt_stp -ebt_vlan -ebtable_broute -ebtable_filter -ebtable_nat -ebtables -ec100 -echainiv -echo -edac_core -edt-ft5x06 -eeprom -eeprom_93cx6 -eeprom_93xx46 -eeti_ts -efs -egalax_ts -ehset -elan_i2c -elo -elsa_cs -em28xx -em28xx-alsa -em28xx-dvb -em28xx-rc -em28xx-v4l -em_canid -em_cmp -em_ipset -em_meta -em_nbyte -em_text -em_u32 -emac_arc -emac_rockchip -emc1403 -emc2103 -emc6w201 -emi26 -emi62 -empeg -ems_pci -ems_pcmcia -ems_usb -emu10k1-gp -enc28j60 -enclosure -encx24j600 -encx24j600-regmap -eni -enic -epat -epia -epic100 -eql -esas2r -esd_usb2 -esi-sir -esp4 -esp6 -esp_scsi -et1011c -et131x -ethoc -evbug -exofs -extcon-adc-jack -extcon-arizona -extcon-axp288 -extcon-gpio -extcon-max14577 -extcon-max77693 -extcon-max77843 -extcon-max8997 -extcon-palmas -extcon-rt8973a -extcon-sm5502 -extcon-usb-gpio -ezusb -f2fs -f75375s -f81232 -fakelb -fan53555 -farsync -faulty -fb_agm1264k-fl -fb_bd663474 -fb_ddc -fb_hx8340bn -fb_hx8347d -fb_hx8353d -fb_hx8357d -fb_ili9163 -fb_ili9320 -fb_ili9325 -fb_ili9340 -fb_ili9341 -fb_ili9481 -fb_ili9486 -fb_pcd8544 -fb_ra8875 -fb_s6d02a1 -fb_s6d1121 -fb_ssd1289 -fb_ssd1306 -fb_ssd1331 -fb_ssd1351 -fb_st7735r -fb_st7789v -fb_sys_fops -fb_tinylcd -fb_tls8204 -fb_uc1611 -fb_uc1701 -fb_upd161704 -fb_watterott -fbtft -fbtft_device -fc0011 -fc0012 -fc0013 -fc2580 -fcoe -fcrypt -fdomain -fdomain_cs -fdp -fdp_i2c -fealnx -ff-memless -firedtv -firestream -firewire-core -firewire-net -firewire-ohci -firewire-sbp2 -firewire-serial -fit2 -fit3 -fixed -fl512 -flexcan -flexfb -floppy -fm10k -fm801-gp -fm_drv -fmc -fmc-chardev -fmc-fakedev -fmc-trivial -fmc-write-eeprom -fmvj18x_cs -forcedeth -fore_200e -fotg210-hcd -fotg210-udc -fou -fpga-mgr -freevxfs -friq -frpw -fsa9480 -fscache -fsl-edma -fsl_elbc_nand -fsl_lpuart -ft6236 -ftdi-elan -ftdi_sio -ftl -fujitsu_ts -fusb300_udc -g450_pll -g760a -g762 -g_acm_ms -g_audio -g_cdc -g_dbgp -g_ether -g_ffs -g_hid -g_mass_storage -g_midi -g_ncm -g_nokia -g_printer -g_serial -g_webcam -g_zero -gadgetfs -gamecon -gameport -garmin_gps -garp -gcm -gdmtty -gdmulte -gdmwm -gdth -gen_probe -generic -generic-adc-battery -generic_bl -genet -geneve -gennvm -gf128mul -gf2k -gfs2 -ghash-generic -gigaset -girbil-sir -gl518sm -gl520sm -gl620a -gluebi -go7007 -go7007-loader -go7007-usb -goku_udc -goodix -gp2ap002a00f -gp2ap020a00f -gpio -gpio-74x164 -gpio-74xx-mmio -gpio-addr-flash -gpio-adnp -gpio-adp5520 -gpio-adp5588 -gpio-altera -gpio-amd8111 -gpio-arizona -gpio-beeper -gpio-charger -gpio-crystalcove -gpio-da9052 -gpio-da9055 -gpio-dln2 -gpio-dwapb -gpio-fan -gpio-generic -gpio-grgpio -gpio-ir-recv -gpio-janz-ttl -gpio-kempld -gpio-lp3943 -gpio-max7300 -gpio-max7301 -gpio-max730x -gpio-max732x -gpio-mc33880 -gpio-mcp23s08 -gpio-ml-ioh -gpio-pca953x -gpio-pcf857x -gpio-rdc321x -gpio-regulator -gpio-syscon -gpio-tps65912 -gpio-twl4030 -gpio-twl6040 -gpio-ucb1400 -gpio-viperboard -gpio-vx855 -gpio-wm831x -gpio-wm8350 -gpio-wm8994 -gpio_backlight -gpio_keys -gpio_keys_polled -gpio_mouse -gpio_tilt_polled -gpio_wdt -gr_udc -grace -grcan -gre -grip -grip_mp -gs_fpga -gs_usb -gsc_hpdi -gspca_benq -gspca_conex -gspca_cpia1 -gspca_dtcs033 -gspca_etoms -gspca_finepix -gspca_gl860 -gspca_jeilinj -gspca_jl2005bcd -gspca_kinect -gspca_konica -gspca_m5602 -gspca_main -gspca_mars -gspca_mr97310a -gspca_nw80x -gspca_ov519 -gspca_ov534 -gspca_ov534_9 -gspca_pac207 -gspca_pac7302 -gspca_pac7311 -gspca_se401 -gspca_sn9c2028 -gspca_sn9c20x -gspca_sonixb -gspca_sonixj -gspca_spca1528 -gspca_spca500 -gspca_spca501 -gspca_spca505 -gspca_spca506 -gspca_spca508 -gspca_spca561 -gspca_sq905 -gspca_sq905c -gspca_sq930x -gspca_stk014 -gspca_stk1135 -gspca_stv0680 -gspca_stv06xx -gspca_sunplus -gspca_t613 -gspca_topro -gspca_touptek -gspca_tv8532 -gspca_vc032x -gspca_vicam -gspca_xirlink_cit -gspca_zc3xx -gtco -guillemot -gunze -gxt4500 -hackrf -hamachi -hampshire -hanwang -hci -hci_uart -hci_vhci -hdc100x -hdlc -hdlc_cisco -hdlc_fr -hdlc_ppp -hdlc_raw -hdlc_raw_eth -hdlc_x25 -hdlcdrv -hdm_dim2 -hdm_i2c -hdm_usb -hdpvr -he -hexium_gemini -hexium_orion -hfc4s8s_l1 -hfc_usb -hfcmulti -hfcpci -hfcsusb -hfs -hfsplus -hi6421-pmic-core -hi6421-regulator -hi8435 -hid -hid-a4tech -hid-alps -hid-apple -hid-appleir -hid-aureal -hid-axff -hid-belkin -hid-betopff -hid-cherry -hid-chicony -hid-corsair -hid-cp2112 -hid-cypress -hid-dr -hid-elecom -hid-elo -hid-emsff -hid-ezkey -hid-gaff -hid-gembird -hid-generic -hid-gfrm -hid-gt683r -hid-gyration -hid-holtek-kbd -hid-holtek-mouse -hid-holtekff -hid-icade -hid-kensington -hid-keytouch -hid-kye -hid-lcpower -hid-lenovo -hid-logitech -hid-logitech-dj -hid-logitech-hidpp -hid-magicmouse -hid-microsoft -hid-monterey -hid-multitouch -hid-ntrig -hid-ortek -hid-penmount -hid-petalynx -hid-picolcd -hid-pl -hid-plantronics -hid-primax -hid-prodikeys -hid-rmi -hid-roccat -hid-roccat-arvo -hid-roccat-common -hid-roccat-isku -hid-roccat-kone -hid-roccat-koneplus -hid-roccat-konepure -hid-roccat-kovaplus -hid-roccat-lua -hid-roccat-pyra -hid-roccat-ryos -hid-roccat-savu -hid-saitek -hid-samsung -hid-sensor-accel-3d -hid-sensor-als -hid-sensor-custom -hid-sensor-gyro-3d -hid-sensor-hub -hid-sensor-iio-common -hid-sensor-incl-3d -hid-sensor-magn-3d -hid-sensor-press -hid-sensor-prox -hid-sensor-rotation -hid-sensor-trigger -hid-sjoy -hid-sony -hid-speedlink -hid-steelseries -hid-sunplus -hid-thingm -hid-tivo -hid-tmff -hid-topseed -hid-twinhan -hid-uclogic -hid-waltop -hid-wiimote -hid-xinmo -hid-zpff -hid-zydacron -hidp -hifn_795x -hih6130 -hisax -hisax_fcpcipnp -hisax_isac -hisax_st5481 -hisi504_nand -hmc5843_core -hmc5843_i2c -hmc5843_spi -hmc6352 -hopper -horizon -horus3a -hostap -hostap_cs -hostap_pci -hostap_plx -hp100 -hpfs -hpilo -hpsa -hptiop -hsi -hsi_char -hso -hsr -hsu_dma -htc-pasic3 -hts221 -hts221_i2c -hts221_spi -htu21 -huawei_cdc_ncm -hwa-hc -hwa-rc -hwmon-vid -hx8357 -hysdn -i1480-dfu-usb -i1480-est -i2400m -i2400m-usb -i2c-algo-bit -i2c-algo-pca -i2c-ali1535 -i2c-ali1563 -i2c-ali15x3 -i2c-amd756 -i2c-amd8111 -i2c-arb-gpio-challenge -i2c-cbus-gpio -i2c-designware-core -i2c-designware-pci -i2c-designware-platform -i2c-diolan-u2c -i2c-dln2 -i2c-gpio -i2c-hid -i2c-hydra -i2c-i801 -i2c-isch -i2c-kempld -i2c-matroxfb -i2c-mpc -i2c-mux -i2c-mux-gpio -i2c-mux-pca9541 -i2c-mux-pca954x -i2c-mux-reg -i2c-nforce2 -i2c-ocores -i2c-parport -i2c-parport-light -i2c-pca-platform -i2c-piix4 -i2c-robotfuzz-osif -i2c-simtec -i2c-sis5595 -i2c-sis630 -i2c-sis96x -i2c-smbus -i2c-stub -i2c-taos-evm -i2c-tiny-usb -i2c-via -i2c-viapro -i2c-viperboard -i2c-xiic -i40e -i40evf -i5k_amb -i6300esb -i740fb -i82092 -ib_addr -ib_cm -ib_core -ib_ipoib -ib_iser -ib_isert -ib_mad -ib_mthca -ib_sa -ib_srp -ib_srpt -ib_ucm -ib_umad -ib_uverbs -ibmaem -ibmpex -icp_multi -icplus -ics932s401 -ideapad_slidebar -idma64 -idmouse -idt77252 -idt_gen2 -idtcps -ieee802154 -ieee802154_6lowpan -ieee802154_socket -ifb -iforce -igb -igbvf -igorplugusb -iguanair -ii_pci20kc -iio-trig-interrupt -iio-trig-periodic-rtc -iio-trig-sysfs -iio_dummy -iio_hwmon -ila -ili210x -ili922x -ili9320 -imm -imon -ims-pcu -imx074 -imx6ul_tsc -imx_thermal -ina209 -ina2xx -industrialio -industrialio-buffer-cb -industrialio-triggered-buffer -industrialio-triggered-event -inet_diag -inexio -inftl -initio -input-leds -input-polldev -int51x1 -intel_th -intel_th_gth -intel_th_msu -intel_th_pci -intel_th_pti -intel_th_sth -intel_vr_nor -interact -interval_tree_test -inv-mpu6050 -io_edgeport -io_ti -ioc4 -iowarrior -ip6_gre -ip6_tables -ip6_tunnel -ip6_udp_tunnel -ip6_vti -ip6t_MASQUERADE -ip6t_NPT -ip6t_REJECT -ip6t_SYNPROXY -ip6t_ah -ip6t_eui64 -ip6t_frag -ip6t_hbh -ip6t_ipv6header -ip6t_mh -ip6t_rpfilter -ip6t_rt -ip6table_filter -ip6table_mangle -ip6table_nat -ip6table_raw -ip6table_security -ip_gre -ip_set -ip_set_bitmap_ip -ip_set_bitmap_ipmac -ip_set_bitmap_port -ip_set_hash_ip -ip_set_hash_ipmark -ip_set_hash_ipport -ip_set_hash_ipportip -ip_set_hash_ipportnet -ip_set_hash_mac -ip_set_hash_net -ip_set_hash_netiface -ip_set_hash_netnet -ip_set_hash_netport -ip_set_hash_netportnet -ip_set_list_set -ip_tables -ip_tunnel -ip_vs -ip_vs_dh -ip_vs_fo -ip_vs_ftp -ip_vs_lblc -ip_vs_lblcr -ip_vs_lc -ip_vs_nq -ip_vs_ovf -ip_vs_pe_sip -ip_vs_rr -ip_vs_sed -ip_vs_sh -ip_vs_wlc -ip_vs_wrr -ip_vti -ipack -ipaq -ipcomp -ipcomp6 -ipddp -iphase -ipheth -ipip -ipmi_devintf -ipmi_msghandler -ipmi_poweroff -ipmi_si -ipmi_ssif -ipmi_watchdog -ipoctal -ipr -ips -ipt_CLUSTERIP -ipt_ECN -ipt_MASQUERADE -ipt_REJECT -ipt_SYNPROXY -ipt_ah -ipt_rpfilter -iptable_filter -iptable_mangle -iptable_nat -iptable_raw -iptable_security -ipvlan -ipw -ipw2100 -ipw2200 -ipwireless -ipx -ir-hix5hd2 -ir-jvc-decoder -ir-kbd-i2c -ir-lirc-codec -ir-mce_kbd-decoder -ir-nec-decoder -ir-rc5-decoder -ir-rc6-decoder -ir-sanyo-decoder -ir-sharp-decoder -ir-sony-decoder -ir-usb -ir-xmp-decoder -ircomm -ircomm-tty -irda -irda-usb -irlan -irnet -irtty-sir -iscsi_boot_sysfs -iscsi_target_mod -iscsi_tcp -isdn -isdn_bsdcomp -isdnhdlc -isicom -isight_firmware -isl29003 -isl29018 -isl29020 -isl29028 -isl29125 -isl6271a-regulator -isl6405 -isl6421 -isl6423 -isl9305 -isofs -isp116x-hcd -isp1362-hcd -isp1704_charger -isp1760 -it913x -itd1000 -itg3200 -iuu_phoenix -ivtv -ivtv-alsa -ivtvfb -iw_c2 -iw_cm -iw_cxgb3 -iw_cxgb4 -iw_nes -iwl3945 -iwl4965 -iwldvm -iwlegacy -iwlmvm -iwlwifi -ix2505v -ixgb -ixgbe -ixgbevf -janz-cmodio -janz-ican3 -jc42 -jedec_probe -jffs2 -jfs -jitterentropy_rng -jmb38x_ms -jme -joydev -joydump -jr3_pci -jsa1212 -jsm -kafs -kalmia -kaweth -kbic -kbtab -kcomedilib -ke_counter -kempld-core -kempld_wdt -kernelcapi -keyspan -keyspan_pda -keyspan_remote -keywrap -kfifo_buf -khazad -kingsun-sir -kl5kusb105 -kmx61 -kobil_sct -ks0108 -ks0127 -ks8842 -ks8851 -ks8851_mll -ks959-sir -ksdazzle-sir -ksz884x -ktti -kvaser_pci -kvaser_usb -kxcjk-1013 -kxsd9 -kxtj9 -kyrofb -l1oip -l2tp_core -l2tp_debugfs -l2tp_eth -l2tp_ip -l2tp_ip6 -l2tp_netlink -l2tp_ppp -l4f00242t03 -l64781 -lan78xx -lanai -lapb -lapbether -latch-addr-flash -lattice-ecp3-config -lcd -ld9040 -ldusb -lec -led-class-flash -leds-88pm860x -leds-adp5520 -leds-bcm6328 -leds-bcm6358 -leds-bd2802 -leds-blinkm -leds-da903x -leds-da9052 -leds-dac124s085 -leds-gpio -leds-ktd2692 -leds-lm3530 -leds-lm3533 -leds-lm355x -leds-lm3642 -leds-lp3944 -leds-lp5521 -leds-lp5523 -leds-lp5562 -leds-lp55xx-common -leds-lp8501 -leds-lp8788 -leds-lp8860 -leds-lt3593 -leds-max77693 -leds-max8997 -leds-mc13783 -leds-menf21bmc -leds-pca9532 -leds-pca955x -leds-pca963x -leds-pwm -leds-regulator -leds-tca6507 -leds-tlc591xx -leds-wm831x-status -leds-wm8350 -ledtrig-backlight -ledtrig-camera -ledtrig-default-on -ledtrig-gpio -ledtrig-heartbeat -ledtrig-oneshot -ledtrig-timer -ledtrig-transient -legousbtower -lg-vl600 -lg2160 -lgdt3305 -lgdt3306a -lgdt330x -lgs8gxx -lib80211 -lib80211_crypt_ccmp -lib80211_crypt_tkip -lib80211_crypt_wep -libahci -libahci_platform -libceph -libcomposite -libcrc32c -libcxgbi -libertas -libertas_cs -libertas_sdio -libertas_spi -libertas_tf -libertas_tf_usb -libfc -libfcoe -libipw -libiscsi -libiscsi_tcp -libore -libosd -libsas -lightning -lineage-pem -linear -lirc_bt829 -lirc_dev -lirc_imon -lirc_parallel -lirc_sasem -lirc_serial -lirc_sir -lirc_zilog -lis3l02dq -lis3lv02d -lis3lv02d_i2c -lis3lv02d_spi -litelink-sir -lkkbd -ll_temac -llc -llc2 -lm25066 -lm3533-als -lm3533-core -lm3533-ctrlbank -lm3533_bl -lm3630a_bl -lm3639_bl -lm63 -lm70 -lm73 -lm75 -lm77 -lm78 -lm80 -lm83 -lm8323 -lm8333 -lm85 -lm87 -lm90 -lm92 -lm93 -lm95234 -lm95241 -lm95245 -lmc -lms283gf05 -lms501kf03 -lnbh25 -lnbp21 -lnbp22 -lockd -locktorture -lp -lp3943 -lp3971 -lp3972 -lp855x_bl -lp8727_charger -lp872x -lp8755 -lp8788-buck -lp8788-charger -lp8788-ldo -lp8788_adc -lp8788_bl -lpc_ich -lpc_sch -lpddr_cmds -lpfc -lru_cache -lrw -ltc2941-battery-gauge -ltc2945 -ltc2978 -ltc3589 -ltc4151 -ltc4215 -ltc4222 -ltc4245 -ltc4260 -ltc4261 -ltr501 -ltv350qv -lv5207lp -lvstest -lxt -lz4 -lz4_compress -lz4hc -lz4hc_compress -m25p80 -m2m-deinterlace -m52790 -m62332 -m88ds3103 -m88rs2000 -m88rs6000t -mISDN_core -mISDN_dsp -mISDNinfineon -mISDNipac -mISDNisar -m_can -ma600-sir -mac-celtic -mac-centeuro -mac-croatian -mac-cyrillic -mac-gaelic -mac-greek -mac-iceland -mac-inuit -mac-roman -mac-romanian -mac-turkish -mac53c94 -mac80211 -mac80211_hwsim -mac802154 -mac_hid -macb -mace -macvlan -macvtap -mag3110 -magellan -mailbox-altera -mailbox-test -mantis -mantis_core -map_absent -map_funcs -map_ram -map_rom -marvell -matrix-keymap -matrix_keypad -matrox_w1 -matroxfb_DAC1064 -matroxfb_Ti3026 -matroxfb_accel -matroxfb_base -matroxfb_crtc2 -matroxfb_g450 -matroxfb_maven -matroxfb_misc -max1027 -max1111 -max11801_ts -max1363 -max14577 -max14577_charger -max1586 -max16064 -max16065 -max1619 -max1668 -max17040_battery -max17042_battery -max197 -max20751 -max2165 -max3100 -max31790 -max3421-hcd -max34440 -max517 -max5821 -max63xx_wdt -max6639 -max6642 -max6650 -max6697 -max6875 -max7359_keypad -max77686 -max77693 -max77693-haptic -max77693_charger -max77802 -max8649 -max8660 -max8688 -max8903_charger -max8907 -max8907-regulator -max8925-regulator -max8925_bl -max8925_onkey -max8925_power -max8952 -max8973-regulator -max8997 -max8997_charger -max8997_haptic -max8998 -max8998_charger -mb862xxfb -mb86a16 -mb86a20s -mc13783-adc -mc13783-pwrbutton -mc13783-regulator -mc13783_ts -mc13892-regulator -mc13xxx-core -mc13xxx-i2c -mc13xxx-regulator-core -mc13xxx-spi -mc44s803 -mcb -mcb-pci -mceusb -mcp2120-sir -mcp251x -mcp3021 -mcp320x -mcp3422 -mcp4531 -mcp4725 -mcp4922 -mcryptd -mcs5000_ts -mcs7780 -mcs7830 -mcs_touchkey -mct_u232 -md-cluster -md4 -md5-ppc -mdc800 -mdio -mdio-bcm-unimac -mdio-bitbang -mdio-gpio -mdio-mux -mdio-mux-gpio -mdio-mux-mmioreg -mdio-xgene -me4000 -me_daq -media -megaraid -megaraid_mbox -megaraid_mm -megaraid_sas -memstick -men_z135_uart -men_z188_adc -mena21_wdt -menf21bmc -menf21bmc_hwmon -menf21bmc_wdt -mesh -metro-usb -metronomefb -mf6x4 -mga -michael_mic -micrel -microchip -microread -microread_i2c -microtek -mii -minix -mip6 -mite -mk712 -mkiss -mlx4_core -mlx4_en -mlx4_ib -mlx5_core -mlx5_ib -mlx90614 -mlxsw_core -mlxsw_pci -mma8450 -mma8452 -mma9551 -mma9551_core -mma9553 -mmc35240 -mmc_block -mms114 -mn88472 -mn88473 -mos7720 -mos7840 -mostcore -moxa -mpc624 -mpl115 -mpl3115 -mpls_gso -mpls_iptunnel -mpls_router -mpoa -mpr121_touchkey -mpt3sas -mptbase -mptctl -mptfc -mptlan -mptsas -mptscsih -mptspi -mpu3050 -mrf24j40 -mrp -ms5611_core -ms5611_i2c -ms5611_spi -ms5637 -ms_block -ms_sensors_i2c -msdos -msi001 -msi2500 -msp3400 -mspro_block -mt2060 -mt2063 -mt20xx -mt2131 -mt2266 -mt29f_spinand -mt312 -mt352 -mt6311-regulator -mt6397-core -mt6397-regulator -mt7601u -mt9m001 -mt9m111 -mt9t031 -mt9t112 -mt9v011 -mt9v022 -mtd -mtd_blkdevs -mtd_dataflash -mtdblock -mtdblock_ro -mtdoops -mtdram -mtdswap -mtip32xx -mtk-sd -mtouch -multipath -multiq3 -musb_hdrc -mv643xx_eth -mv_u3d_core -mv_udc -mvmdio -mvsas -mvumi -mwifiex -mwifiex_pcie -mwifiex_sdio -mwifiex_usb -mwl8k -mxb -mxc4005 -mxl111sf-demod -mxl111sf-tuner -mxl301rf -mxl5005s -mxl5007t -mxser -mxuport -myri10ge -n_gsm -n_hdlc -n_r3964 -n_tracerouter -n_tracesink -nand -nand_bch -nand_ecc -nand_ids -nandsim -national -natsemi -nau7802 -navman -nb8800 -nbd -nci -nci_spi -nci_uart -ncpfs -nct7802 -nct7904 -ne2k-pci -neofb -net1080 -net2272 -net2280 -netconsole -netjet -netlink_diag -netrom -netup-unidvb -netxen_nic -newtonkbd -nf_conntrack -nf_conntrack_amanda -nf_conntrack_broadcast -nf_conntrack_ftp -nf_conntrack_h323 -nf_conntrack_ipv4 -nf_conntrack_ipv6 -nf_conntrack_irc -nf_conntrack_netbios_ns -nf_conntrack_netlink -nf_conntrack_pptp -nf_conntrack_proto_dccp -nf_conntrack_proto_gre -nf_conntrack_proto_sctp -nf_conntrack_proto_udplite -nf_conntrack_sane -nf_conntrack_sip -nf_conntrack_snmp -nf_conntrack_tftp -nf_defrag_ipv4 -nf_defrag_ipv6 -nf_dup_ipv4 -nf_dup_ipv6 -nf_log_arp -nf_log_bridge -nf_log_common -nf_log_ipv4 -nf_log_ipv6 -nf_nat -nf_nat_amanda -nf_nat_ftp -nf_nat_h323 -nf_nat_ipv4 -nf_nat_ipv6 -nf_nat_irc -nf_nat_masquerade_ipv4 -nf_nat_masquerade_ipv6 -nf_nat_pptp -nf_nat_proto_dccp -nf_nat_proto_gre -nf_nat_proto_sctp -nf_nat_proto_udplite -nf_nat_redirect -nf_nat_sip -nf_nat_snmp_basic -nf_nat_tftp -nf_reject_ipv4 -nf_reject_ipv6 -nf_synproxy_core -nf_tables -nf_tables_arp -nf_tables_bridge -nf_tables_inet -nf_tables_ipv4 -nf_tables_ipv6 -nf_tables_netdev -nfc -nfc_digital -nfcmrvl -nfcmrvl_i2c -nfcmrvl_spi -nfcmrvl_uart -nfcmrvl_usb -nfcsim -nfcwilink -nfnetlink -nfnetlink_acct -nfnetlink_cthelper -nfnetlink_cttimeout -nfnetlink_log -nfnetlink_queue -nfs -nfs_acl -nfs_layout_flexfiles -nfs_layout_nfsv41_files -nfsd -nfsv2 -nfsv3 -nfsv4 -nft_chain_nat_ipv4 -nft_chain_nat_ipv6 -nft_chain_route_ipv4 -nft_chain_route_ipv6 -nft_compat -nft_counter -nft_ct -nft_dup_ipv4 -nft_dup_ipv6 -nft_exthdr -nft_hash -nft_limit -nft_log -nft_masq -nft_masq_ipv4 -nft_masq_ipv6 -nft_meta -nft_meta_bridge -nft_nat -nft_queue -nft_rbtree -nft_redir -nft_redir_ipv4 -nft_redir_ipv6 -nft_reject -nft_reject_bridge -nft_reject_inet -nft_reject_ipv4 -nft_reject_ipv6 -nftl -ngene -nhc_dest -nhc_fragment -nhc_hop -nhc_ipv6 -nhc_mobility -nhc_routing -nhc_udp -ni_6527 -ni_65xx -ni_660x -ni_670x -ni_at_a2150 -ni_at_ao -ni_atmio -ni_atmio16d -ni_daq_700 -ni_daq_dio24 -ni_labpc -ni_labpc_common -ni_labpc_cs -ni_labpc_isadma -ni_labpc_pci -ni_mio_cs -ni_pcidio -ni_pcimio -ni_tio -ni_tiocmd -ni_usb6501 -nicstar -nilfs2 -niu -nlmon -nls_ascii -nls_cp1250 -nls_cp1251 -nls_cp1255 -nls_cp737 -nls_cp775 -nls_cp850 -nls_cp852 -nls_cp855 -nls_cp857 -nls_cp860 -nls_cp861 -nls_cp862 -nls_cp863 -nls_cp864 -nls_cp865 -nls_cp866 -nls_cp869 -nls_cp874 -nls_cp932 -nls_cp936 -nls_cp949 -nls_cp950 -nls_euc-jp -nls_iso8859-13 -nls_iso8859-14 -nls_iso8859-15 -nls_iso8859-2 -nls_iso8859-3 -nls_iso8859-4 -nls_iso8859-5 -nls_iso8859-6 -nls_iso8859-7 -nls_iso8859-9 -nls_koi8-r -nls_koi8-ru -nls_koi8-u -nls_utf8 -nmclan_cs -nosy -notifier-error-inject -nouveau -nozomi -nps_enet -ns558 -ns83820 -nsc-ircc -nsp32 -nsp_cs -ntb -ntb_netdev -ntb_pingpong -ntb_tool -ntb_transport -ntc_thermistor -ntfs -null_blk -nvidiafb -nvme -nvmem_core -nxp-nci -nxp-nci_i2c -nxp-ptn3460 -nxt200x -nxt6000 -objlayoutdriver -ocfb -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -ocrdma -of_xilinx_wdt -ofpart -old_belkin-sir -omap4-keypad -omfs -omninet -on20 -on26 -onenand -opencores-kbd -openvswitch -oprofile -opt3001 -opticon -option -or51132 -or51211 -orinoco -orinoco_cs -orinoco_nortel -orinoco_plx -orinoco_tmd -orinoco_usb -osd -osdblk -osst -oti6858 -ov2640 -ov5642 -ov6650 -ov7640 -ov7670 -ov772x -ov9640 -ov9740 -overlay -oxu210hp-hcd -p54common -p54pci -p54spi -p54usb -p8022 -p8023 -pa12203001 -palmas-pwrbutton -palmas-regulator -pandora_bl -panel -panel-lg-lg4573 -panel-samsung-ld9040 -panel-samsung-s6e8aa0 -panel-sharp-lq101r1sx01 -panel-simple -parade-ps8622 -paride -parkbd -parport -parport_ax88796 -parport_cs -parport_pc -parport_serial -pata_ali -pata_amd -pata_artop -pata_atiixp -pata_atp867x -pata_cmd640 -pata_cmd64x -pata_cypress -pata_efar -pata_hpt366 -pata_hpt37x -pata_hpt3x2n -pata_hpt3x3 -pata_it8213 -pata_it821x -pata_jmicron -pata_legacy -pata_marvell -pata_mpiix -pata_netcell -pata_ninja32 -pata_ns87410 -pata_ns87415 -pata_of_platform -pata_oldpiix -pata_opti -pata_optidma -pata_pcmcia -pata_pdc2027x -pata_pdc202xx_old -pata_piccolo -pata_platform -pata_radisys -pata_rdc -pata_rz1000 -pata_sch -pata_serverworks -pata_sil680 -pata_sis -pata_sl82c105 -pata_triflex -pata_via -pc300too -pcap-regulator -pcap_keys -pcap_ts -pcbc -pcd -pcf50633 -pcf50633-adc -pcf50633-backlight -pcf50633-charger -pcf50633-gpio -pcf50633-input -pcf50633-regulator -pcf8574_keypad -pcf8591 -pch_udc -pci -pci-stub -pci200syn -pcips2 -pcl711 -pcl724 -pcl726 -pcl730 -pcl812 -pcl816 -pcl818 -pcm3724 -pcmad -pcmcia -pcmcia_core -pcmcia_rsrc -pcmciamtd -pcmda12 -pcmmio -pcmuio -pcnet32 -pcnet_cs -pcrypt -pcspkr -pcwd_pci -pcwd_usb -pd -pd6729 -pda_power -pdc_adma -peak_pci -peak_pcmcia -peak_usb -pegasus -penmount -percpu_test -pf -pfuze100-regulator -pg -phantom -phonet -phram -phy-bcm-kona-usb2 -phy-exynos-usb2 -phy-gpio-vbus-usb -phy-isp1301 -phy-pxa-28nm-hsic -phy-pxa-28nm-usb2 -phy-tahvo -phy-tusb1210 -physmap -physmap_of -pixcir_i2c_ts -pkcs7_test_key -pktcdvd -pktgen -pl2303 -plat-ram -plat_nand -platform_lcd -plip -plusb -pluto2 -plx_pci -pm-notifier-error-inject -pm2fb -pm3fb -pm80xx -pm8941-wled -pmbus -pmbus_core -pmc551 -pmcraid -pmu_battery -pn533 -pn544 -pn544_i2c -pn_pep -poly1305_generic -port100 -powermate -powr1220 -ppa -ppdev -ppp_async -ppp_deflate -ppp_mppe -ppp_synctty -pppoatm -pppoe -pppox -pps-gpio -pps-ldisc -pps_core -pps_parport -pptp -prism2_usb -ps2mult -psmouse -psnap -pt -ptp -pulsedlight-lidar-lite-v2 -pvrusb2 -pwc -pwm-beeper -pwm-fan -pwm-fsl-ftm -pwm-lp3943 -pwm-pca9685 -pwm-regulator -pwm-twl -pwm-twl-led -pwm_bl -pxa27x_udc -qcaspi -qcaux -qcom-spmi-iadc -qcom-spmi-temp-alarm -qcom-spmi-vadc -qcom_spmi-regulator -qcserial -qed -qede -qinfo_probe -qla1280 -qla2xxx -qla3xxx -qla4xxx -qlcnic -qlge -qlogic_cs -qlogicfas408 -qm1d1c0042 -qmi_wwan -qnx4 -qnx6 -qsemi -qt1010 -qt1070 -qt2160 -quatech2 -quatech_daqp_cs -quota_tree -quota_v1 -quota_v2 -qxl -r128 -r592 -r6040 -r8152 -r8169 -r8188eu -r8192e_pci -r8192u_usb -r820t -r852 -r8712u -r8723au -r8a66597-hcd -r8a66597-udc -rack-meter -radeon -radeonfb -radio-bcm2048 -radio-i2c-si470x -radio-keene -radio-ma901 -radio-maxiradio -radio-mr800 -radio-platform-si4713 -radio-raremono -radio-shark -radio-si476x -radio-tea5764 -radio-usb-si470x -radio-usb-si4713 -radio-wl1273 -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid6test -raid_class -ramoops -raw -ray_cs -rbd -rbtree_test -rc-adstech-dvb-t-pci -rc-alink-dtu-m -rc-anysee -rc-apac-viewcomp -rc-asus-pc39 -rc-asus-ps3-100 -rc-ati-tv-wonder-hd-600 -rc-ati-x10 -rc-avermedia -rc-avermedia-a16d -rc-avermedia-cardbus -rc-avermedia-dvbt -rc-avermedia-m135a -rc-avermedia-m733a-rm-k6 -rc-avermedia-rm-ks -rc-avertv-303 -rc-azurewave-ad-tu700 -rc-behold -rc-behold-columbus -rc-budget-ci-old -rc-cinergy -rc-cinergy-1400 -rc-core -rc-delock-61959 -rc-dib0700-nec -rc-dib0700-rc5 -rc-digitalnow-tinytwin -rc-digittrade -rc-dm1105-nec -rc-dntv-live-dvb-t -rc-dntv-live-dvbt-pro -rc-dvbsky -rc-em-terratec -rc-encore-enltv -rc-encore-enltv-fm53 -rc-encore-enltv2 -rc-evga-indtube -rc-eztv -rc-flydvb -rc-flyvideo -rc-fusionhdtv-mce -rc-gadmei-rm008z -rc-genius-tvgo-a11mce -rc-gotview7135 -rc-hauppauge -rc-imon-mce -rc-imon-pad -rc-iodata-bctv7e -rc-it913x-v1 -rc-it913x-v2 -rc-kaiomy -rc-kworld-315u -rc-kworld-pc150u -rc-kworld-plus-tv-analog -rc-leadtek-y04g0051 -rc-lirc -rc-lme2510 -rc-loopback -rc-manli -rc-medion-x10 -rc-medion-x10-digitainer -rc-medion-x10-or2x -rc-msi-digivox-ii -rc-msi-digivox-iii -rc-msi-tvanywhere -rc-msi-tvanywhere-plus -rc-nebula -rc-nec-terratec-cinergy-xs -rc-norwood -rc-npgtech -rc-pctv-sedna -rc-pinnacle-color -rc-pinnacle-grey -rc-pinnacle-pctv-hd -rc-pixelview -rc-pixelview-002t -rc-pixelview-mk12 -rc-pixelview-new -rc-powercolor-real-angel -rc-proteus-2309 -rc-purpletv -rc-pv951 -rc-rc6-mce -rc-real-audio-220-32-keys -rc-reddo -rc-snapstream-firefly -rc-streamzap -rc-su3000 -rc-tbs-nec -rc-technisat-ts35 -rc-technisat-usb2 -rc-terratec-cinergy-c-pci -rc-terratec-cinergy-s2-hd -rc-terratec-cinergy-xs -rc-terratec-slim -rc-terratec-slim-2 -rc-tevii-nec -rc-tivo -rc-total-media-in-hand -rc-total-media-in-hand-02 -rc-trekstor -rc-tt-1500 -rc-twinhan-dtv-cab-ci -rc-twinhan1027 -rc-videomate-m1f -rc-videomate-s350 -rc-videomate-tv-pvr -rc-winfast -rc-winfast-usbii-deluxe -rc5t583-regulator -rdc321x-southbridge -rdma_cm -rdma_ucm -rds -rds_rdma -rds_tcp -realtek -redboot -redrat3 -reed_solomon -regmap-spmi -regulator-haptic -reiserfs -remoteproc -retu-mfd -retu-pwrbutton -retu_wdt -rfc1051 -rfc1201 -rfcomm -rfd_ftl -rfkill-gpio -rfkill-regulator -rio-scan -rio500 -rionet -rivafb -rj54n1cb0c -rk808 -rk808-regulator -rmd128 -rmd160 -rmd256 -rmd320 -rn5t618 -rn5t618-regulator -rn5t618_wdt -rndis_host -rndis_wlan -rocket -rohm_bu21023 -romfs -rose -rotary_encoder -rp2 -rpcrdma -rpcsec_gss_krb5 -rpr0521 -rrpc -rsi_91x -rsi_sdio -rsi_usb -rsxx -rt2400pci -rt2500pci -rt2500usb -rt2800lib -rt2800mmio -rt2800pci -rt2800usb -rt2x00lib -rt2x00mmio -rt2x00pci -rt2x00usb -rt5033 -rt5033-regulator -rt5033_battery -rt61pci -rt73usb -rt9455_charger -rtc-88pm80x -rtc-88pm860x -rtc-ab-b5ze-s3 -rtc-ab3100 -rtc-abx80x -rtc-as3722 -rtc-bq32k -rtc-bq4802 -rtc-cmos -rtc-da9052 -rtc-da9055 -rtc-da9063 -rtc-ds1286 -rtc-ds1305 -rtc-ds1307 -rtc-ds1343 -rtc-ds1347 -rtc-ds1374 -rtc-ds1390 -rtc-ds1511 -rtc-ds1553 -rtc-ds1672 -rtc-ds1685 -rtc-ds1742 -rtc-ds2404 -rtc-ds3232 -rtc-ds3234 -rtc-em3027 -rtc-fm3130 -rtc-generic -rtc-hid-sensor-time -rtc-hym8563 -rtc-isl12022 -rtc-isl12057 -rtc-isl1208 -rtc-lp8788 -rtc-m41t80 -rtc-m41t93 -rtc-m41t94 -rtc-m48t35 -rtc-m48t59 -rtc-m48t86 -rtc-max6900 -rtc-max6902 -rtc-max77686 -rtc-max77802 -rtc-max8907 -rtc-max8925 -rtc-max8997 -rtc-max8998 -rtc-mc13xxx -rtc-mcp795 -rtc-msm6242 -rtc-mt6397 -rtc-palmas -rtc-pcap -rtc-pcf2123 -rtc-pcf2127 -rtc-pcf50633 -rtc-pcf85063 -rtc-pcf8523 -rtc-pcf8563 -rtc-pcf8583 -rtc-r9701 -rtc-rc5t583 -rtc-rk808 -rtc-rp5c01 -rtc-rs5c348 -rtc-rs5c372 -rtc-rv3029c2 -rtc-rv8803 -rtc-rx4581 -rtc-rx8025 -rtc-rx8581 -rtc-s35390a -rtc-s5m -rtc-snvs -rtc-stk17ta8 -rtc-tps6586x -rtc-tps65910 -rtc-tps80031 -rtc-twl -rtc-v3020 -rtc-wm831x -rtc-wm8350 -rtc-x1205 -rtc-zynqmp -rtc_cmos_setup -rtd520 -rti800 -rti802 -rtl2830 -rtl2832 -rtl2832_sdr -rtl8150 -rtl8187 -rtl8188ee -rtl818x_pci -rtl8192c-common -rtl8192ce -rtl8192cu -rtl8192de -rtl8192ee -rtl8192se -rtl8723-common -rtl8723ae -rtl8723be -rtl8821ae -rtl8xxxu -rtl_pci -rtl_usb -rtllib -rtllib_crypt_ccmp -rtllib_crypt_tkip -rtllib_crypt_wep -rtlwifi -rts5208 -rtsx_pci -rtsx_pci_ms -rtsx_pci_sdmmc -rtsx_usb -rtsx_usb_ms -rtsx_usb_sdmmc -rx51_battery -rxkad -s1d13xxxfb -s2250 -s2255drv -s2io -s2mpa01 -s2mps11 -s3fb -s3fwrn5 -s3fwrn5_i2c -s526 -s5h1409 -s5h1411 -s5h1420 -s5m8767 -s626 -s6e63m0 -s921 -saa6588 -saa6752hs -saa7110 -saa7115 -saa7127 -saa7134 -saa7134-alsa -saa7134-dvb -saa7134-empress -saa7134-go7007 -saa7146 -saa7146_vv -saa7164 -saa717x -saa7185 -saa7706h -safe_serial -salsa20_generic -samsung-sxgbe -sata_inic162x -sata_mv -sata_nv -sata_promise -sata_qstor -sata_sil -sata_sil24 -sata_sis -sata_sx4 -sata_uli -sata_via -sata_vsc -savage -savagefb -sbp_target -sbs-battery -sc16is7xx -sc92031 -sca3000 -sch_atm -sch_cbq -sch_choke -sch_codel -sch_drr -sch_dsmark -sch_fq -sch_fq_codel -sch_gred -sch_hfsc -sch_hhf -sch_htb -sch_ingress -sch_mqprio -sch_multiq -sch_netem -sch_pie -sch_plug -sch_prio -sch_qfq -sch_red -sch_sfb -sch_sfq -sch_tbf -sch_teql -scsi_debug -scsi_dh_alua -scsi_dh_emc -scsi_dh_hp_sw -scsi_dh_rdac -scsi_transport_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -scsi_transport_srp -sctp -sctp_probe -sdhci -sdhci-of-arasan -sdhci-of-at91 -sdhci-of-esdhc -sdhci-of-hlwd -sdhci-pci -sdhci-pltfm -sdhci_f_sdh30 -sdio_uart -sdricoh_cs -sedlbauer_cs -seed -sensorhub -seqiv -ser_gigaset -serial2002 -serial_cs -serio_raw -sermouse -serpent_generic -serport -ses -sfc -sh_veu -sha1-powerpc -shark2 -shpchp -sht15 -sht21 -shtc1 -si2157 -si2165 -si2168 -si21xx -si4713 -si476x-core -si7005 -si7020 -sidewinder -sierra -sierra_net -sil164 -sir-dev -sis -sis190 -sis5595 -sis900 -sisfb -sisusbvga -sit -sja1000 -sja1000_isa -sja1000_platform -skfp -skge -sky2 -sky81452 -sky81452-backlight -sky81452-regulator -sl811-hcd -sl811_cs -slcan -slip -slram -sm501 -sm501fb -sm712fb -sm750fb -sm_common -sm_ftl -smb347-charger -smc91c92_cs -smipcie -smm665 -smsc -smsc-ircc2 -smsc47m192 -smsc75xx -smsc911x -smsc9420 -smsc95xx -smscufx -smsdvb -smsmdtv -smssdio -smsusb -snd -snd-ac97-codec -snd-ad1889 -snd-ak4113 -snd-ak4114 -snd-ak4117 -snd-ak4xxx-adda -snd-ali5451 -snd-aloop -snd-als300 -snd-als4000 -snd-aoa -snd-aoa-codec-onyx -snd-aoa-codec-tas -snd-aoa-codec-toonie -snd-aoa-fabric-layout -snd-aoa-i2sbus -snd-aoa-soundbus -snd-atiixp -snd-atiixp-modem -snd-au8810 -snd-au8820 -snd-au8830 -snd-aw2 -snd-azt3328 -snd-bcd2000 -snd-bebob -snd-bt87x -snd-ca0106 -snd-cmipci -snd-cs4281 -snd-cs46xx -snd-cs8427 -snd-ctxfi -snd-darla20 -snd-darla24 -snd-dice -snd-dummy -snd-echo3g -snd-emu10k1 -snd-emu10k1-synth -snd-emu10k1x -snd-emux-synth -snd-ens1370 -snd-ens1371 -snd-es1938 -snd-es1968 -snd-firewire-digi00x -snd-firewire-lib -snd-firewire-tascam -snd-fireworks -snd-fm801 -snd-gina20 -snd-gina24 -snd-hda-codec -snd-hda-codec-analog -snd-hda-codec-ca0110 -snd-hda-codec-ca0132 -snd-hda-codec-cirrus -snd-hda-codec-cmedia -snd-hda-codec-conexant -snd-hda-codec-generic -snd-hda-codec-hdmi -snd-hda-codec-idt -snd-hda-codec-realtek -snd-hda-codec-si3054 -snd-hda-codec-via -snd-hda-core -snd-hda-intel -snd-hdsp -snd-hdspm -snd-hrtimer -snd-hwdep -snd-i2c -snd-ice1712 -snd-ice1724 -snd-ice17xx-ak4xxx -snd-indigo -snd-indigodj -snd-indigodjx -snd-indigoio -snd-indigoiox -snd-intel8x0 -snd-intel8x0m -snd-isight -snd-korg1212 -snd-layla20 -snd-layla24 -snd-lola -snd-lx6464es -snd-maestro3 -snd-mia -snd-mixart -snd-mixer-oss -snd-mona -snd-mpu401 -snd-mpu401-uart -snd-mtpav -snd-mts64 -snd-nm256 -snd-opl3-lib -snd-opl3-synth -snd-oxfw -snd-oxygen -snd-oxygen-lib -snd-pcm -snd-pcm-dmaengine -snd-pcm-oss -snd-pcxhr -snd-pdaudiocf -snd-portman2x4 -snd-powermac -snd-pt2258 -snd-rawmidi -snd-riptide -snd-rme32 -snd-rme96 -snd-rme9652 -snd-sb-common -snd-scs1x -snd-seq -snd-seq-device -snd-seq-dummy -snd-seq-midi -snd-seq-midi-emul -snd-seq-midi-event -snd-seq-virmidi -snd-serial-u16550 -snd-soc-ac97 -snd-soc-adau1701 -snd-soc-ak4104 -snd-soc-ak4554 -snd-soc-ak4613 -snd-soc-ak4642 -snd-soc-ak5386 -snd-soc-alc5623 -snd-soc-core -snd-soc-cs35l32 -snd-soc-cs4265 -snd-soc-cs4270 -snd-soc-cs4271 -snd-soc-cs4271-i2c -snd-soc-cs4271-spi -snd-soc-cs42l51 -snd-soc-cs42l51-i2c -snd-soc-cs42l52 -snd-soc-cs42l56 -snd-soc-cs42l73 -snd-soc-cs42xx8 -snd-soc-cs42xx8-i2c -snd-soc-cs4349 -snd-soc-es8328 -snd-soc-fsl-asrc -snd-soc-fsl-esai -snd-soc-fsl-sai -snd-soc-fsl-spdif -snd-soc-fsl-ssi -snd-soc-gtm601 -snd-soc-imx-audmux -snd-soc-pcm1681 -snd-soc-pcm1792a-codec -snd-soc-pcm512x -snd-soc-pcm512x-i2c -snd-soc-pcm512x-spi -snd-soc-rt5631 -snd-soc-sgtl5000 -snd-soc-si476x -snd-soc-sigmadsp -snd-soc-sigmadsp-i2c -snd-soc-simple-card -snd-soc-spdif-rx -snd-soc-spdif-tx -snd-soc-ssm2602 -snd-soc-ssm2602-i2c -snd-soc-ssm2602-spi -snd-soc-ssm4567 -snd-soc-sta32x -snd-soc-sta350 -snd-soc-sti-sas -snd-soc-tas2552 -snd-soc-tas5086 -snd-soc-tas571x -snd-soc-tfa9879 -snd-soc-tlv320aic23 -snd-soc-tlv320aic23-i2c -snd-soc-tlv320aic23-spi -snd-soc-tlv320aic31xx -snd-soc-tlv320aic3x -snd-soc-tpa6130a2 -snd-soc-ts3a227e -snd-soc-wm8510 -snd-soc-wm8523 -snd-soc-wm8580 -snd-soc-wm8711 -snd-soc-wm8728 -snd-soc-wm8731 -snd-soc-wm8737 -snd-soc-wm8741 -snd-soc-wm8750 -snd-soc-wm8753 -snd-soc-wm8770 -snd-soc-wm8776 -snd-soc-wm8804 -snd-soc-wm8804-i2c -snd-soc-wm8804-spi -snd-soc-wm8903 -snd-soc-wm8962 -snd-soc-wm8978 -snd-soc-xtfpga-i2s -snd-sonicvibes -snd-timer -snd-trident -snd-ua101 -snd-usb-6fire -snd-usb-audio -snd-usb-caiaq -snd-usb-hiface -snd-usb-line6 -snd-usb-pod -snd-usb-podhd -snd-usb-toneport -snd-usb-usx2y -snd-usb-variax -snd-usbmidi-lib -snd-util-mem -snd-via82xx -snd-via82xx-modem -snd-virmidi -snd-virtuoso -snd-vx-lib -snd-vx222 -snd-vxpocket -snd-ymfpci -snic -soc_button_array -soc_camera -soc_camera_platform -soc_mediabus -softdog -softing -softing_cs -solo6x10 -solos-pci -sony-btf-mpx -soundcore -sp2 -sp8870 -sp887x -spaceball -spaceorb -sparse-keymap -spcp8x5 -speakup -speakup_acntsa -speakup_apollo -speakup_audptr -speakup_bns -speakup_decext -speakup_dectlk -speakup_dummy -speakup_ltlk -speakup_soft -speakup_spkout -speakup_txprt -spectrum_cs -speedfax -speedtch -spi-altera -spi-bitbang -spi-butterfly -spi-cadence -spi-dln2 -spi-dw -spi-dw-midpci -spi-dw-mmio -spi-gpio -spi-lm70llp -spi-nor -spi-oc-tiny -spi-pxa2xx-platform -spi-sc18is602 -spi-tle62x0 -spi-xcomm -spi-zynqmp-gqspi -spi_ks8995 -spidev -spmi -sr9700 -sr9800 -ssb -ssb-hcd -ssd1307fb -ssfdc -ssp_accel_sensor -ssp_gyro_sensor -ssp_iio -sst25l -ssu100 -st -st-nci -st-nci_i2c -st-nci_spi -st1232 -st21nfca_hci -st21nfca_i2c -st_accel -st_accel_i2c -st_accel_spi -st_drv -st_gyro -st_gyro_i2c -st_gyro_spi -st_magn -st_magn_i2c -st_magn_spi -st_pressure -st_pressure_i2c -st_pressure_spi -st_sensors -st_sensors_i2c -st_sensors_spi -starfire -stb0899 -stb6000 -stb6100 -ste10Xp -ste_modem_rproc -stex -stinger -stir4200 -stk1160 -stk3310 -stk8312 -stk8ba50 -stkwebcam -stm_console -stm_core -stmmac -stmmac-platform -stmpe-keypad -stmpe-ts -stowaway -stp -streamzap -stv0288 -stv0297 -stv0299 -stv0367 -stv0900 -stv090x -stv6110 -stv6110x -sun4i-codec -sundance -sungem -sungem_phy -sunhme -suni -sunkbd -sunrpc -sur40 -svgalib -swim3 -sx8 -sx8654 -sx9500 -sym53c500_cs -sym53c8xx -symbolserial -synaptics_i2c -synaptics_i2c_rmi4 -synaptics_usb -synclink -synclink_cs -synclink_gt -synclinkmp -syscopyarea -sysfillrect -sysimgblt -sysv -t1pci -t5403 -target_core_file -target_core_iblock -target_core_mod -target_core_pscsi -target_core_user -tc3589x-keypad -tc74 -tc90522 -tca6416-keypad -tca8418_keypad -tcm_fc -tcm_loop -tcm_qla2xxx -tcm_usb_gadget -tcp_bic -tcp_cdg -tcp_dctcp -tcp_diag -tcp_highspeed -tcp_htcp -tcp_hybla -tcp_illinois -tcp_lp -tcp_probe -tcp_scalable -tcp_vegas -tcp_veno -tcp_westwood -tcp_yeah -tcrypt -tcs3414 -tcs3472 -tda10021 -tda10023 -tda10048 -tda1004x -tda10071 -tda10086 -tda18212 -tda18218 -tda18271 -tda18271c2dd -tda665x -tda7432 -tda8083 -tda8261 -tda826x -tda827x -tda8290 -tda9840 -tda9887 -tda998x -tdfx -tdfxfb -tdo24m -tea -tea575x -tea5761 -tea5767 -tea6415c -tea6420 -team -team_mode_activebackup -team_mode_broadcast -team_mode_loadbalance -team_mode_random -team_mode_roundrobin -tef6862 -tehuti -tekram-sir -teles_cs -teranetics -test-hexdump -test-kstrtox -test-string_helpers -test_bpf -test_firmware -test_module -test_power -test_printf -test_static_key_base -test_static_keys -test_udelay -test_user_copy -tg3 -tgr192 -therm_windtunnel -thmc50 -thunderbolt -ti-adc081c -ti-adc128s052 -ti_am335x_adc -ti_am335x_tsc -ti_am335x_tscadc -ti_dac7512 -ti_usb_3410_5052 -tifm_7xx1 -tifm_core -tifm_ms -tifm_sd -timeriomem-rng -tipc -tlan -tm6000 -tm6000-alsa -tm6000-dvb -tmdc -tmp006 -tmp102 -tmp103 -tmp401 -tmp421 -toim3232-sir -torture -toshsd -touchit213 -touchright -touchwin -tpci200 -tpm-rng -tpm_atmel -tpm_i2c_atmel -tpm_i2c_infineon -tpm_i2c_nuvoton -tpm_st33zp24 -tpm_st33zp24_i2c -tpm_st33zp24_spi -tps40422 -tps51632-regulator -tps6105x -tps6105x-regulator -tps62360-regulator -tps65010 -tps65023-regulator -tps6507x -tps6507x-regulator -tps6507x-ts -tps65090-charger -tps65090-regulator -tps65217_bl -tps65217_charger -tps65218 -tps65218-pwrbutton -tps65218-regulator -tps6524x-regulator -tps6586x-regulator -tps65910-regulator -tps65912-regulator -tps80031-regulator -trancevibrator -trf7970a -tridentfb -ts2020 -ts_bm -ts_fsm -ts_kmp -tsc2004 -tsc2005 -tsc2007 -tsc200x-core -tsc40 -tsi568 -tsi57x -tsi721_mport -tsl2550 -tsl2563 -tsl2583 -tsl2x7x_core -tsl4531 -tsys01 -tsys02d -ttm -ttpci-eeprom -ttusb_dec -ttusbdecfe -ttusbir -tua6100 -tua9001 -tulip -tuner -tuner-simple -tuner-types -tuner-xc2028 -tunnel4 -tunnel6 -turbografx -tvaudio -tveeprom -tvp5150 -tw2804 -tw68 -tw9903 -tw9906 -tw9910 -twidjoy -twl-regulator -twl4030-madc -twl4030-madc-hwmon -twl4030-pwrbutton -twl4030-vibra -twl4030_charger -twl4030_keypad -twl4030_madc_battery -twl4030_wdt -twl6030-gpadc -twl6040-vibra -twofish_common -twofish_generic -typhoon -u132-hcd -uPD98402 -u_ether -u_serial -uartlite -uas -ubi -ubifs -ucb1400_core -ucb1400_ts -ucd9000 -ucd9200 -uda1342 -udc-core -udc-xilinx -udf -udl -udlfb -udp_diag -udp_tunnel -ueagle-atm -ufs -ufshcd -ufshcd-pci -ufshcd-pltfrm -uhid -uio -uio_aec -uio_cif -uio_dmem_genirq -uio_fsl_elbc_gpcm -uio_mf624 -uio_netx -uio_pci_generic -uio_pdrv_genirq -uio_pruss -uio_sercos3 -uli526x -ulpi -umc -umem -ums-alauda -ums-cypress -ums-datafab -ums-eneub6250 -ums-freecom -ums-isd200 -ums-jumpshot -ums-karma -ums-onetouch -ums-realtek -ums-sddr09 -ums-sddr55 -ums-usbat -uninorth-agp -unix_diag -upd64031a -upd64083 -us5182d -usb-serial-simple -usb-storage -usb3503 -usb8xxx -usb_8dev -usb_debug -usb_f_acm -usb_f_ecm -usb_f_ecm_subset -usb_f_eem -usb_f_fs -usb_f_hid -usb_f_mass_storage -usb_f_midi -usb_f_ncm -usb_f_obex -usb_f_phonet -usb_f_printer -usb_f_rndis -usb_f_serial -usb_f_ss_lb -usb_f_uac1 -usb_f_uac2 -usb_f_uvc -usb_gigaset -usb_wwan -usbatm -usbdux -usbduxfast -usbduxsigma -usbhid -usbip-core -usbip-host -usbkbd -usblcd -usbled -usblp -usbmisc_imx -usbmon -usbmouse -usbnet -usbserial -usbsevseg -usbtest -usbtmc -usbtouchscreen -usbtv -usbvision -usdhi6rol0 -userio -userspace-consumer -ushc -uss720 -uvcvideo -uvesafb -uwb -v4l2-common -v4l2-dv-timings -v4l2-flash-led-class -v4l2-mem2mem -vcan -vcnl4000 -ves1820 -ves1x93 -veth -vf610_adc -vga16fb -vgastate -vgem -vgg2432a4 -vhci-hcd -vhost -vhost_net -vhost_scsi -via -via-ircc -via-rhine -via-sdmmc -via-velocity -via686a -videobuf-core -videobuf-dma-sg -videobuf-dvb -videobuf-vmalloc -videobuf2-core -videobuf2-dma-contig -videobuf2-dma-sg -videobuf2-dvb -videobuf2-memops -videobuf2-v4l2 -videobuf2-vmalloc -videocodec -videodev -vim2m -viperboard -viperboard_adc -virt-dma -virtio-gpu -virtio-rng -virtio_input -virtio_scsi -virtual -visor -vitesse -vivid -vlsi_ir -vmac -vme_ca91cx42 -vme_pio2 -vme_tsi148 -vme_user -vme_vmivme7805 -vmk80xx -vmxnet3 -vp27smpx -vport-geneve -vport-gre -vport-vxlan -vpx3220 -vrf -vringh -vsock -vsxxxaa -vt6655_stage -vt6656_stage -vt8231 -vt8623fb -vub300 -vx855 -vxge -vxlan -vz89x -w1-gpio -w1_bq27000 -w1_ds2406 -w1_ds2408 -w1_ds2413 -w1_ds2423 -w1_ds2431 -w1_ds2433 -w1_ds2760 -w1_ds2780 -w1_ds2781 -w1_ds28e04 -w1_smem -w1_therm -w5100 -w5300 -w6692 -w83781d -w83791d -w83792d -w83793 -w83795 -w83977af_ir -w83l785ts -w83l786ng -wacom -wacom_i2c -wacom_serial4 -wacom_w8001 -walkera0701 -wanxl -warrior -wbsd -wcn36xx -wd719x -wdrtas -wdt87xx_i2c -wdt_pci -whc-rc -whci -whci-hcd -whiteheat -wil6210 -wimax -winbond-840 -windfarm_core -wire -wishbone-serial -wl1251 -wl1251_sdio -wl1251_spi -wl1273-core -wl12xx -wl18xx -wl3501_cs -wlcore -wlcore_sdio -wlcore_spi -wm831x-dcdc -wm831x-hwmon -wm831x-isink -wm831x-ldo -wm831x-on -wm831x-ts -wm831x_backup -wm831x_bl -wm831x_power -wm831x_wdt -wm8350-hwmon -wm8350-regulator -wm8350_power -wm8350_wdt -wm8400-regulator -wm8739 -wm8775 -wm8994-core -wm8994-irq -wm8994-regmap -wm8994-regulator -wm97xx-ts -wp512 -wusb-cbaf -wusb-wa -wusbcore -x25 -x25_asy -x_tables -xc4000 -xc5000 -xcbc -xfrm4_mode_beet -xfrm4_mode_transport -xfrm4_mode_tunnel -xfrm4_tunnel -xfrm6_mode_beet -xfrm6_mode_ro -xfrm6_mode_transport -xfrm6_mode_tunnel -xfrm6_tunnel -xfrm_algo -xfrm_ipcomp -xfrm_user -xfs -xgifb -xhci-plat-hcd -xilinx-tpg -xilinx-video -xilinx-vtc -xilinx_emaclite -xilinx_ps2 -xilinx_uartps -xillybus_core -xillybus_of -xillybus_pcie -xirc2ps_cs -xircom_cb -xor -xpad -xr_usb_serial_common -xsens_mt -xt_AUDIT -xt_CHECKSUM -xt_CLASSIFY -xt_CONNSECMARK -xt_CT -xt_DSCP -xt_HL -xt_HMARK -xt_IDLETIMER -xt_LED -xt_LOG -xt_NETMAP -xt_NFLOG -xt_NFQUEUE -xt_RATEEST -xt_REDIRECT -xt_SECMARK -xt_TCPMSS -xt_TCPOPTSTRIP -xt_TEE -xt_TPROXY -xt_TRACE -xt_addrtype -xt_bpf -xt_cgroup -xt_cluster -xt_comment -xt_connbytes -xt_connlabel -xt_connlimit -xt_connmark -xt_conntrack -xt_cpu -xt_dccp -xt_devgroup -xt_dscp -xt_ecn -xt_esp -xt_hashlimit -xt_helper -xt_hl -xt_ipcomp -xt_iprange -xt_ipvs -xt_l2tp -xt_length -xt_limit -xt_mac -xt_mark -xt_multiport -xt_nat -xt_nfacct -xt_osf -xt_owner -xt_physdev -xt_pkttype -xt_policy -xt_quota -xt_rateest -xt_realm -xt_recent -xt_sctp -xt_set -xt_socket -xt_state -xt_statistic -xt_string -xt_tcpmss -xt_tcpudp -xt_time -xt_u32 -xtkbd -xts -xusbatm -xz_dec_test -yam -yealink -yellowfin -yenta_socket -yurex -zatm -zaurus -zd1201 -zd1211rw -zforce_ts -zhenhua -zl10036 -zl10039 -zl10353 -zl6100 -zlib -zr36016 -zr36050 -zr36060 -zr36067 -zr364xx -zram -zynq-fpga reverted: --- linux-raspi2-4.4.0/debian.master/abi/4.4.0-89.112/powerpc/powerpc64-emb +++ linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-89.112/powerpc/powerpc64-emb @@ -1,17230 +0,0 @@ -EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe -EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble -EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL crypto/mcryptd 0x6310e901 mcryptd_arm_flusher -EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/atm/suni 0x062628d2 suni_init -EXPORT_SYMBOL drivers/bcma/bcma 0x49cad14e bcma_core_dma_translation -EXPORT_SYMBOL drivers/bcma/bcma 0x99516e11 bcma_core_irq -EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str -EXPORT_SYMBOL drivers/block/paride/paride 0x23be247d pi_write_block -EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x46054c39 pi_schedule_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x4614d00b pi_disconnect -EXPORT_SYMBOL drivers/block/paride/paride 0x46841343 pi_init -EXPORT_SYMBOL drivers/block/paride/paride 0x89eee10d pi_connect -EXPORT_SYMBOL drivers/block/paride/paride 0xa4cc69fd paride_register -EXPORT_SYMBOL drivers/block/paride/paride 0xb021cb39 pi_read_block -EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -EXPORT_SYMBOL drivers/block/paride/paride 0xd208d392 paride_unregister -EXPORT_SYMBOL drivers/block/paride/paride 0xd2c02693 pi_release -EXPORT_SYMBOL drivers/block/paride/paride 0xe05f0bae pi_read_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xf4e5eb29 pi_do_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0xf98b23e7 pi_write_regr -EXPORT_SYMBOL drivers/bluetooth/btbcm 0xe52554e5 btbcm_patchram -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fae3bac ipmi_addr_src_to_str -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x46ea69cd ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4847efa4 ipmi_smi_watcher_register -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4b9b8489 ipmi_register_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8768c048 ipmi_smi_add_proc_entry -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xdec07997 ipmi_get_smi_info -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xc91320a0 st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xcacb19cb st33zp24_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x855968f9 xillybus_endpoint_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xb4c092ee xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xcf222f73 xillybus_init_endpoint -EXPORT_SYMBOL drivers/crypto/caam/caam 0x1c758e97 caam_get_era -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x034afc31 caam_jr_strstatus -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x11dda270 caam_jr_enqueue -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x18fd9606 caam_jr_alloc -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x39e01870 split_key_done -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x3c32a9cf caam_jr_free -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xb8ab0343 gen_split_key -EXPORT_SYMBOL drivers/crypto/talitos 0x4d0285ad talitos_submit -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x21a6f9ca dw_dma_cyclic_prep -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x2f2b08e1 dw_dma_cyclic_stop -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x7d208499 dw_dma_get_dst_addr -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x9d7b34c8 dw_dma_cyclic_free -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xa782a26e dw_dma_cyclic_start -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xad6edf57 dw_dma_get_src_addr -EXPORT_SYMBOL drivers/edac/edac_core 0x2edf7aba edac_mc_find -EXPORT_SYMBOL drivers/edac/mpc85xx_edac 0xea96c6d1 mpc85xx_pci_err_probe -EXPORT_SYMBOL drivers/firewire/firewire-core 0x04d0f641 fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x07010ab2 fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0c990a3e fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0f7d6af8 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x32e39e8b fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a0d6563 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3d893841 fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0x44e9fa08 fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4f6c83b3 fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x645b715f fw_core_add_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7b724f09 fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x81cd5709 fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86848869 fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8bfd8c62 fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa25b0644 fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0xaa3e4757 fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0xaf1c2743 fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0xafc38e03 fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbda7df9c fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbddcad14 fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc9342eb1 fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd6e0b5ac fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xddd5aa5a fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe9bb8bf8 fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf1cbffa2 fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf476bf33 fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0xfab0e828 fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xfd0598ce fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xfe5df2f2 fw_bus_type -EXPORT_SYMBOL drivers/fmc/fmc 0x0ce780a8 fmc_reprogram -EXPORT_SYMBOL drivers/fmc/fmc 0x15e6590e fmc_device_register -EXPORT_SYMBOL drivers/fmc/fmc 0x19190323 fmc_scan_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0x26e2ec90 fmc_free_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0x36b49e28 fmc_show_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0x57bb62f6 fmc_device_unregister_n -EXPORT_SYMBOL drivers/fmc/fmc 0x919296b2 fmc_device_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0x9495a8d7 fmc_driver_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0x9746427a fmc_find_sdb_device -EXPORT_SYMBOL drivers/fmc/fmc 0xf04c9453 fmc_device_register_n -EXPORT_SYMBOL drivers/fmc/fmc 0xfb41722b fmc_driver_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x00d7677f drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x00f7180a drm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x032d579c drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x035f1bb2 drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x037d35ef drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03819ba5 drm_vblank_pre_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04798dc5 drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x050cb95d drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06f89259 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07732786 drm_legacy_ioremap_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08477aed drm_panel_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a80f5ff drm_crtc_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c442278 drm_bridge_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ccf0769 drm_pcie_get_max_link_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d02eb5d drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d37c845 drm_property_unreference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0dedbd40 drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10d11b5b drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12042ac4 drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x127f458e drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12c399ae drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x130f6df4 drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x141f7361 drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x149ccaf6 drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16fb5e48 drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17e9faed drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19acb4cf drm_legacy_addbufs_pci -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19e4430f drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19e87fb3 drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1acbf80d drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b98a594 drm_ati_pcigart_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bd3cbd6 drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f2ec495 drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21d47d85 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25a9493a drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2713d4fd drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x271e5d43 drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27e3dce5 drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27ff8ff6 drm_legacy_ioremapfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0x283274dc drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28dcddeb drm_atomic_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a267cc drm_panel_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f7e4bf4 drm_of_find_possible_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30a10c69 drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30a5eaa4 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x318338d4 drm_bridge_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32c98481 drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32cb9679 drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32eee9a2 drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x33edb37f drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3495d751 drm_bridge_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34c905ae drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35ddafdc drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3678516e drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x369351e1 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x398da18d drm_irq_install -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cd3b062 drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ced5c9c drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3dad2472 drm_agp_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3df4162f drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e90d221 drm_legacy_rmmap_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x407bb80f drm_pci_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x40967bae drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x410830ee drm_select_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0x414670ac drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4157de1d drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41f5ac08 drm_encoder_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4298da95 drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x451f3807 drm_modeset_lock_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4529ec8b drm_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4671344f drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x46e43cd9 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47660bfa drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47b8f31e drm_gem_dumb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47f4ca11 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48a15f86 drm_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x498bd21a drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49f93de9 drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a4bea67 drm_connector_unplug_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a5860d0 drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ae3ff5f drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c81f11a drm_calc_vbltimestamp_from_scanoutpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c9ce8e0 drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4eae82e5 drm_agp_bind -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fab0208 drm_property_reference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50415671 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x506d37e6 drm_framebuffer_unreference -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e4f0cd drm_connector_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x516a6502 drm_modeset_legacy_acquire_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5173f1c8 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51db353a drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x52ada2f6 drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53078746 drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54a96865 drm_legacy_idlelock_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55d53723 drm_mode_validate_basic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x56c5c509 drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x599757d6 drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b693683 drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7318dc drm_global_item_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ddb86fb drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fe26d56 drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x625fed2c drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64241b9d drm_atomic_legacy_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x675a338f drm_mode_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6798163c drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68862da9 of_drm_find_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68ed607c drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a7ee8c0 drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c3a006e drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c5a542a drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6df5b65e drm_agp_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef760c4 drm_prime_sg_to_page_addr_arrays -EXPORT_SYMBOL drivers/gpu/drm/drm 0x704bf914 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x716f30db drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x725ed6e5 drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72b04085 drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72f48d51 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7318315e drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74d11678 drm_plane_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7517167b drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0x75ef1437 drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76171f1b drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x764d2f89 drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76ec0def drm_atomic_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x77199e68 drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x77fe7a67 drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7876989e drm_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78b1de93 drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79332383 drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7936ecb0 drm_mode_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79bc6a29 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f40c095 drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fb9e0fe drm_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x837c85bb drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8529e8c9 drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x859edb7c drm_agp_unbind -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x877f85de drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8906a9d8 drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89365bb9 drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89aaa127 drm_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89b710d1 drm_atomic_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b15427b drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8be88cac drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d48d1ba drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d6a748d drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e15f986 drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90d49267 drm_agp_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91a8ef69 drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x926303e7 drm_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x937f1ca6 drm_mode_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93f3c204 drm_unplug_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9400b28b drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x949de0fd drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94d76d95 drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x958a7a90 drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95d7da3b drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x961c40ab drm_legacy_getsarea -EXPORT_SYMBOL drivers/gpu/drm/drm 0x96b14685 drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x972edf76 drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9787e0cc drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x997e5b9e drm_agp_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99a99d53 drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9aa5289f drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c1ecfa4 drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c565d1d drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d04612e drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d4c8002 drm_framebuffer_reference -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e09abe3 drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e362c85 drm_mode_create_dirty_info_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e7c4c9e drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9edc907a drm_bridge_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa03b8684 drm_legacy_addmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa04ce6e7 drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0daa833 drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1be19cc drm_legacy_idlelock_take -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3eb09ea drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5808907 drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5a532dd drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5cf00da drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa68f2cb8 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6ad11ca drm_atomic_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8e42fd6 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab96eb46 drm_dev_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac7d4d41 drm_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaef36cab drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf1d962b drm_legacy_addbufs_agp -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22ee10a drm_mode_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb23e0be5 drm_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb248eed3 drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb251e647 drm_agp_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb30ed531 drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb31adc9b drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4672608 drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb47743f8 drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4dbf42f drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb51cd268 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5540008 drm_global_item_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb58f4a97 drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5e14edc drm_agp_bind_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5f14cb4 drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb65d2e10 drm_pci_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7983853 drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7ee53c5 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb80ad02e drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb91e6e21 drm_modeset_backoff_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb94dccb1 drm_platform_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbaa8772d drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb580ebf drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcccb6ec drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcedb602 drm_vblank_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdc7fc89 drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbebd2e68 drm_pcie_get_speed_cap_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfdde349 drm_compat_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0a75f01 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1638117 drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc326fa3e of_drm_find_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3c6109a drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3f4ea58 drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4721dad drm_dev_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5fc4c8d drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc71885c3 drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8c5a051 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca3b5521 drm_pci_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcaa13fd2 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb6df2b3 drm_modeset_unlock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce4e12b6 drm_ati_pcigart_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcede7b0c drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf429845 drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd302551b drm_platform_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd35155eb drm_bridge_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3df8d1b drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4e20e84 drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4f05a10 drm_crtc_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd59f2df6 drm_get_pci_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd75fe65c drm_mode_hsync -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd77b5599 drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd78e1e10 drm_atomic_clean_old_fb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a905b0 drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8bf8983 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0xda7b3a45 drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb8a660b drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc899908 drm_bridge_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcbdeaf5 drm_vblank_post_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdddfbddd drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde6ffdde drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xded697c7 drm_mode_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdeed18e5 drm_agp_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfe2cbb3 drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0544c88 drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe07691be drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0ae121a drm_legacy_ioremap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0fa9878 drm_legacy_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe27833a6 drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2adc0d3 drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2cf71bc drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2ffd7a5 drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe382be02 drm_modeset_lock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4bc8558 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4bf98aa drm_pci_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe66ec388 drm_mode_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7f30314 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe96ac483 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe97a9e80 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9b4a142 drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea352842 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea4d4686 drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb748de9 drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb9dc8bb drm_mm_dump_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeba8e5fc drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf03a355e drm_vblank_no_hw_counter -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf05fab3b drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf09204ad drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf174fddf drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b098be drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1dc6747 drm_of_component_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf216bf59 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf27c88b5 drm_pci_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf35ed630 drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf51894a8 drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5f7d4ee drm_edid_to_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6e3a852 drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf844f1fa drm_legacy_rmmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9b6540a drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9e33733 drm_irq_uninstall -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9f06335 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa79bb67 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfafd1ce9 drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc500f9f drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd137642 drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x049ab2fc drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a0e9559 drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0cb4e289 drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11234b36 drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12de7ad7 drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x131deae2 drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13273db5 drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14e08256 drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15e77f2f drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x165a2b33 __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1887988c drm_atomic_helper_legacy_gamma_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18cc4769 drm_fb_helper_release_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19a4ffe2 drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b435b0c drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b932216 drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1bca2a77 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c0b122a drm_dp_link_probe -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c744f46 drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ef92711 drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f55c284 drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21bf178a drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25d6a16b drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26df5499 drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26f33054 drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x271d6b93 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2829a72e drm_dp_aux_register_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x296b7f6f drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a5c7930 drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b40fe50 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c0e90df drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e5e29ba __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f374fb9 drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ff9fe6d drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3067af67 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x309cdacd drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3457e319 drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35e7e03a drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c68d810 drm_fb_helper_add_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d661eb4 drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f1755da drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f274a30 drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f6fc442 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40edf9b3 drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41a171bb drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x433a199b drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43f62ece drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4604fab9 drm_helper_crtc_mode_set_base -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x485f7853 drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4899246d drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48e3cbe9 drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d9336af drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53bd9853 drm_primary_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56f28dab drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59878335 drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5da840bb drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e195e76 drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f0eea4e drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x614e8daa drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x645a9a8c drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65c9285c drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a7ca2ee drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6adcef97 drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6afd331a drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6db1cbb5 drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ef5022b drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7298f9f6 drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76dd53f9 drm_atomic_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78a0ad9c drm_plane_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85070a46 drm_fb_helper_unlink_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x857c9916 __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8723afbb drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87596dd4 drm_fb_helper_fill_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b496763 drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b538e58 drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bac9343 drm_dp_link_power_up -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bac9918 drm_pick_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8cd7b0ff drm_has_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8fb59374 drm_dp_aux_unregister_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90727177 drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91587748 drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x922d3f42 drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x925f6806 drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x933356df drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x956c1893 drm_plane_helper_check_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x957976d0 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95e05438 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x961440b0 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98190847 drm_helper_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98ad6770 drm_atomic_helper_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ac46164 drm_plane_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0221ed6 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa14f3659 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa502c8d9 drm_dp_link_configure -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa624678 drm_primary_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaef662e5 drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf0075d9 drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf16dc61 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb101712e drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2c8d611 drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6d3e71a drm_fb_helper_remove_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb82b1cac drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba5d9059 drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb65c62f drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbdca11d2 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe9f4a86 drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf08cb72 drm_kms_helper_poll_enable_locked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf5c764e drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc14bfeaf __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc27882e1 drm_fb_helper_single_add_all_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6623f05 __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7ade662 drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcabbdd1a drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb197064 drm_helper_probe_single_connector_modes_nomerge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbfaff67 drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc4d3dff drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd0be3df drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0274685 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd07c2f50 drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd35e10e1 drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd542162c drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd621a75d drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6f09bad drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd751f59e drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbbc7ea0 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd7ae4ac drm_fb_helper_fill_fix -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf686953 drm_helper_crtc_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1b18091 drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4d60dd5 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe51fd347 drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe59a2d5c drm_atomic_helper_framebuffer_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6614bf9 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec844d7f drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed91dcb1 drm_dp_mst_port_has_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeeb76e67 drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeed72a6e drm_atomic_helper_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0492235 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4abae5b drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf60b1e93 drm_atomic_helper_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf675818c drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6e3b5eb drm_dp_link_power_down -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff174df2 drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff2503ad drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x10ff2c46 ttm_tt_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1260b065 ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x126d181f ttm_bo_add_to_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1352c8fa ttm_bo_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x17e4d3f8 ttm_agp_tt_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1804305b ttm_pool_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2f32ce4c ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3485836a ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x437614f3 ttm_mem_io_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x45406fdf ttm_bo_synccpu_write_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x46447e81 ttm_page_alloc_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x48e55a3f ttm_bo_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4b853d9b ttm_bo_move_ttm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e8dd264 ttm_bo_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4f0f7438 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x564e1aee ttm_bo_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a8fdfea ttm_vt_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6052860c ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x60d295a7 ttm_agp_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6603c9fe ttm_bo_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6bbea853 ttm_mem_io_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6bd3c987 ttm_bo_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c0eebdf ttm_mem_global_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x71250ac4 ttm_bo_del_sub_from_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7303ae77 ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x78e5cac7 ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x79be5b90 ttm_bo_init_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d55da85 ttm_read_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fedbfbd ttm_mem_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x81bd01eb ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84a13931 ttm_write_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89a443de ttm_write_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8b2b06b2 ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d14adbf ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d2375af ttm_tt_set_placement_caching -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d89fcee ttm_bo_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8df0b4f8 ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x90acc486 ttm_fbdev_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x941a7053 ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94ac2a2c ttm_object_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9625c55d ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d0eb91 ttm_ref_object_add -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9a308d34 ttm_mem_io_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9dbdcb9f ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa1486746 ttm_prime_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa2a129fd ttm_suspend_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa73de2a9 ttm_vt_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaf3c94d5 ttm_bo_swapout_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb59f5390 ttm_bo_mem_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb7de69de ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb809e51f ttm_bo_manager_func -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb83c6470 ttm_lock_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb9b1b714 ttm_bo_evict_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5f0c2da ttm_read_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xccffd860 ttm_bo_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf4b961f ttm_pool_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcfcfaf60 ttm_bo_clean_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd1f2090d ttm_mem_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd6c9a8c2 ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd7f51742 ttm_suspend_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdb8cd055 ttm_dma_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe1108490 ttm_bo_dma_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe1a8cfb8 ttm_agp_tt_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe7fc9b5f ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xea0300bd ttm_dma_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xec22a160 ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf4cefef6 ttm_mem_io_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf874a5e0 ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf900facd ttm_mem_global_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xffe4f695 ttm_bo_synccpu_write_grab -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x1403b36b i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x628ebcda i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xe5614f7d i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x597b94bb i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x5c82bcdc i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x5d8caa4a amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1219d7ca mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x2e154bfa mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x442ac305 mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4dc81932 mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5293ed6c mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5edfe397 mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5f65ab99 mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x61781d6c mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x622d6da8 mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x74882109 mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7cf72689 mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7e09f2cb mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x847c34b3 mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8db1349b mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9483bee2 mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb34404dc mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x93605a11 st_accel_common_probe -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xa615c864 st_accel_common_remove -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x1567ec60 iio_triggered_buffer_setup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x7be72e2f iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x28e59ae6 devm_iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x70081514 iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xc1adcb1e iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xc80243b2 devm_iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x35804321 hid_sensor_write_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x4d9e9e19 hid_sensor_read_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x5bc0f699 hid_sensor_write_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x5e885462 hid_sensor_parse_common_attributes -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xafacf2a9 hid_sensor_read_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xcd1cd15d hid_sensor_read_poll_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x4c70d61d hid_sensor_setup_trigger -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x885dc56f hid_sensor_pm_ops -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x8c1aa37d hid_sensor_remove_trigger -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xee7978cf hid_sensor_power_state -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x0fb886b6 ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3eae4109 ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x7ab7c863 ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x7f81c084 ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8ee1a332 ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xae0a7e53 ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc4ce6fab ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf437e3a7 ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xfdfc5b04 ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x0e39b503 ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x145b3514 ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x56d51b3a ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xd035d82c ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xe74c379f ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x0fcea9fa ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x60f5be93 ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x718818e9 ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0fa127c1 st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1c20309a st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x26f271c0 st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x29297a8e st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2a1425ca st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5af9b356 st_sensors_check_device_support -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7bf33a24 st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8466f831 st_sensors_get_buffer_element -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x852db36b st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8727f0a0 st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb9953f1a st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbc70a1bb st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbfe81a21 st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xcbe7a475 st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd4f8ad7c st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd944fcfb st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe671e220 st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x4ebba2d7 st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x98ac0335 st_sensors_of_i2c_probe -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xbb1163d8 st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x0bb320b3 st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xc2d5729a st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/humidity/hts221 0xde5ae908 hts221_probe -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x4d8a3e4a adis_enable_irq -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xf7f85c73 adis_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/industrialio 0x05cd53ba iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x11c9e8d0 iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x124a3c18 iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0x1fd63486 iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0x21c31828 iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x3916a6d4 iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0x39999082 iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0x4a584c13 iio_triggered_buffer_postenable -EXPORT_SYMBOL drivers/iio/industrialio 0x5fa51d4a iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x724fdcff iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x7621d5f9 iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x79286e50 iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0x93e39412 iio_triggered_buffer_predisable -EXPORT_SYMBOL drivers/iio/industrialio 0x96606b53 iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0x9de9a761 iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0xcff8cabd iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xef206e73 iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x0f00e898 iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xd1e264a2 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x6260b603 st_magn_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x82c0be97 st_magn_common_remove -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xe7c0c13f ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x1e1eea7b st_press_common_remove -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x25e74a26 st_press_common_probe -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x049ace30 rdma_addr_find_smac_by_sgid -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1ea5767b rdma_addr_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x32a8402c rdma_addr_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x5b89acc9 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xd04c57e3 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xdacc3457 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xf144f694 rdma_copy_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0aae5f56 cm_class -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x137bd702 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x17e1b922 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2d914698 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5691958d ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6aa3ee7e ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6be38c99 ib_send_cm_apr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7b98aac9 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7edb574b ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x91b78595 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x94253c14 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbe676216 ib_send_cm_lap -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xce3b394b ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdce7f54f ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf0d074c7 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf9eefc92 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfd1d3c90 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfed94b69 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x002bd3db ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0165087e ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02e28ac9 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0447bfce ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04777cc9 ib_create_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0cae003a ib_dealloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e8af102 ib_create_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e917ee3 ibnl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f0a9644 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1444badf ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16981105 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16edd250 ib_query_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x208938c7 ib_destroy_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21878e45 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x243b4d42 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2564bc7e ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25b726c1 ib_umem_page_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25dda8e0 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26c8893d ib_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x279677b5 ib_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x291cfb39 ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c294571 ib_destroy_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35600cda ib_fmr_pool_unmap -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3600c834 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x382d38c5 ib_dereg_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3936eb81 ib_fmr_pool_map_phys -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a3816f0 ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d6a9648 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x425278c9 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x492ca039 ib_create_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49716b57 ib_dealloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b60a328 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4bf19627 ib_resolve_eth_dmac -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ee2ba01 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5374afdd ib_query_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55913d51 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5742f67e ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5778301a ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59004fc7 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a42bcc5 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e9124a4 ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ff0c42c ibnl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b62cba9 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e9f23c4 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75f3781d ib_modify_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76d4a45f ib_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8202d187 ib_alloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x832bf1bc ib_dealloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8330c48e ib_alloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8336403d rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83fea803 ib_create_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85774a99 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x866c2ff7 ib_get_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87b1481d ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93d3073a ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94b03cce ib_find_cached_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9919eff6 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e950cdf ib_dealloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ecc6c8a ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa17a4b1a ib_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5544b76 ib_find_gid_by_filter -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa926bbbb ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac067fb9 ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad4836dc ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf8df6e9 ib_find_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf94b8ef ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1cb2615 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb21de8ea ib_get_dma_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6e66085 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8fc1be1 ib_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5d176c9 ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7c2382e ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd18374b7 ib_destroy_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7fbfe64 ibnl_add_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2c6db94 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe559fc32 ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5c4114b ib_destroy_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5f6c356 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeed7f6d0 ib_alloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef5d824f ib_get_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf129c172 ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1c5d5f5 ib_init_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb57a540 ib_umem_odp_map_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x1171be47 ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x1277d5fb ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x13489661 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f23ea8c ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x43cf2ef2 ib_process_mad_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x59cf8314 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6a4f6df1 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7e1659d7 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc325028f ib_cancel_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xd7239eef ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xda68d813 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xef8eaaa8 ib_redirect_mad_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xf3dad4e2 ib_register_mad_snoop -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x02cb47bf ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x083ccdcd ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x14fdcfd8 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x1af0b105 ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x1d8c3b79 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5328d7a6 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x8ba67a00 ib_sa_service_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9a1cd50d ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xa5494d33 ib_init_ah_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xd8c48cbe ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xdfc3b589 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xabe78b5b ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe5461a4a ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0d16523a iwpm_mapping_error_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x11ad03c2 iwpm_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1654a35a iwpm_add_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x17990074 iwpm_ack_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x44a25785 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4a69227c iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x87267c0b iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9076a9a1 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa9cbc243 iwpm_remote_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xab0b8f73 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xac882a1c iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb43eb0d1 iwpm_add_and_query_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc58493a3 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xdc555768 iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf2d5040c iwpm_register_pid_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x32f7e839 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4333d3c9 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x43613d41 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4d223f7d rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4d77fc57 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5080f90c rdma_create_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5a62b877 rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x635ae97f rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x79a971f7 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7a880596 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7e809158 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7ee9ea48 rdma_set_ib_paths -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x82093181 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x82e948bc rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8bdff4fd rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x93e67830 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x94a0ea0f rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa4501991 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa4eb5974 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb1472d29 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xff890d6c rdma_init_qp_attr -EXPORT_SYMBOL drivers/input/gameport/gameport 0x3b2da785 __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x6fda7773 gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0x71c13203 __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x8db22d5c gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x912e7468 gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x9a8a81e1 gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x9a8b2f16 gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x9f133fc7 gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0xdb1d2af7 gameport_set_phys -EXPORT_SYMBOL drivers/input/input-polldev 0x4f67db6b input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x7f0cc7de input_free_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xaa78a30c input_register_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xf7315c3e devm_input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xfae91d6a input_unregister_polled_device -EXPORT_SYMBOL drivers/input/matrix-keymap 0x2b62c689 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x48b25de8 ad714x_probe -EXPORT_SYMBOL drivers/input/misc/ad714x 0x8b45a6db ad714x_disable -EXPORT_SYMBOL drivers/input/misc/ad714x 0x95934a10 ad714x_enable -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xc8eb6470 cma3000_init -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/sparse-keymap 0x0294ec29 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x0f5031e1 sparse_keymap_setup -EXPORT_SYMBOL drivers/input/sparse-keymap 0x30f21db2 sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0xac183f03 sparse_keymap_free -EXPORT_SYMBOL drivers/input/sparse-keymap 0xaeda9a5d sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0xf394c923 sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x3a9b2f0d ad7879_probe -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xe9ba7543 ad7879_pm_ops -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x0003f2df attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x0eb419dc capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x29aac2d8 capi20_put_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x3979a78f capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x3d33cf10 capi20_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x40a7ded5 capi_ctr_resume_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7292ab34 cdebbuf_free -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x72a25a72 capi_cmsg2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x815d4948 capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9258916f detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xbb560bdf capi20_register -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd9039a80 capi_ctr_suspend_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfd552f7a capi_message2str -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0eff15db b1_alloc_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x106c53ee b1_parse_version -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x12194114 avmcard_dma_free -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x14edbbe9 b1_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x4a8027f4 b1_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x4ec7da16 avmcard_dma_alloc -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x742decd3 b1_loaded -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x787ba31b b1_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x890f178c b1_getrevision -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x8e73a62b b1_load_t4file -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x8ee64243 b1_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xbf9e7d8b b1_load_config -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd7293071 b1_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe48b39e0 b1ctl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xea0ef800 b1_free_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x17b480bd b1dma_reset -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x4f45b7f8 b1dma_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x7bfc8ac3 b1dma_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x9690a55f b1dma_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x9df0f682 b1pciv4_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xa40f69f4 b1dma_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xa72e0e81 b1dma_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xb010687d t1pci_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xdf1116d7 b1dmactl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0x29562993 b1pcmcia_delcard -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x3e24ddf1 mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x449f84f9 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x79ee21d4 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x7f3fac7b mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xbd223799 mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xf26aaf73 mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x1a008b52 hisax_init_pcmcia -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6fe1ca04 FsmDelTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9f987c85 FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xa1bc94b9 FsmInitTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x0f2b7d58 isac_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x33e4360e isac_init -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xb7747c18 isacsx_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xc71c29d7 isac_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xdb290a1e isacsx_irq -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x1d384cea register_isdn -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x34e134b3 isdn_ppp_register_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x3ec22a62 isdn_ppp_unregister_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0482822d recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0b4c1c21 mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0bf4ba68 bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1819d11e mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1ba544ac mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x260b16fa mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x320ae19f recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x426681f7 queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x441ad32f mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4a3036a7 bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x75eccbc9 dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x80779c7d mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9946b50c get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9a239699 recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9e179fac mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa28b8868 mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa7151cc9 mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xaaf856f1 mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbe0aeceb recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbe6d5a38 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdacd4de4 get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdc71d5b4 create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf8a87b41 recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/md/bcache/bcache 0x12440cda closure_sync -EXPORT_SYMBOL drivers/md/bcache/bcache 0x1d89bd11 bch_btree_sort_partial -EXPORT_SYMBOL drivers/md/bcache/bcache 0x1f529ce8 bch_bset_build_written_tree -EXPORT_SYMBOL drivers/md/bcache/bcache 0x26481f26 bch_btree_sort_lazy -EXPORT_SYMBOL drivers/md/bcache/bcache 0x440b4830 bch_btree_iter_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0x44a37d62 bch_btree_iter_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x490aed4e closure_wait -EXPORT_SYMBOL drivers/md/bcache/bcache 0x4f4ba90b closure_sub -EXPORT_SYMBOL drivers/md/bcache/bcache 0x5b59b856 bch_btree_insert_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7daccb73 bch_btree_keys_alloc -EXPORT_SYMBOL drivers/md/bcache/bcache 0x8833b0e8 bch_btree_keys_free -EXPORT_SYMBOL drivers/md/bcache/bcache 0xa3c5c702 bch_bset_fix_invalidated_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0xca5df778 __bch_bset_search -EXPORT_SYMBOL drivers/md/bcache/bcache 0xce47a6d9 bch_btree_keys_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0xd2813054 bch_bset_insert -EXPORT_SYMBOL drivers/md/bcache/bcache 0xdf892351 bch_bkey_try_merge -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe597a979 closure_put -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe67c2d16 bch_bset_sort_state_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0xec6f33d0 bch_bset_init_next -EXPORT_SYMBOL drivers/md/dm-bufio 0x268682d2 dm_bufio_forget -EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers -EXPORT_SYMBOL drivers/md/dm-log 0x0af102e5 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0x4d398ca4 dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0x7f55f476 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0xb0699e44 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x08d5377a dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0x3ed9a1ef dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0x7f0d9cd6 dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0xca1f719e dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0xf5af8ca4 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0xfa342a50 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/raid456 0x7a6e733e raid5_set_cache_size -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0a873512 flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1c1a509d flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1ceb30bd flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2f3ab35a flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x399f89b4 flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x54610c93 flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x684070f6 flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x70afcdeb flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x878d06e2 flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb3fbdbc7 flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xba7091a1 flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xbc5832d9 flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdec91456 flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update -EXPORT_SYMBOL drivers/media/common/cx2341x 0x30cb4cd7 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0x416272eb cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cx2341x 0x429d33a6 cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cx2341x 0x5b29bb95 cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0xd8594270 cx2341x_handler_setup -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x7d8e14af cypress_load_firmware -EXPORT_SYMBOL drivers/media/common/tveeprom 0xa06314e5 tveeprom_read -EXPORT_SYMBOL drivers/media/common/tveeprom 0xef82faf6 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x19ed189c dvb_dmx_swfilter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x27d8c8b8 dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2dc7fa94 dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x32706276 dvb_ringbuffer_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x330a872a dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x36c1a4ff dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x46567604 dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4a8cf33d dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4f53f6dd dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x537ef246 dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x56ae40b8 dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5c0ea535 dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6336dbf2 dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6595063d dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6977f644 dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x70af1058 dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x78db694b dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7f4f9b54 dvb_ringbuffer_flush -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x85a5e7d3 dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9f8878a0 dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9fce90f9 dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa3259590 dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa5deb162 dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac8978ad dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3e10dca dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb8ddf4b8 dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb8f3c2f0 dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbc314a2e dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc680ae9a dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcf589e8c dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd497d52e dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd65a3979 dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd8f7184c dvb_ringbuffer_flush_spinlock_wakeup -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdd4c3f84 dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xde3c50d1 dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe490cb65 dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf28e7431 dvb_ringbuffer_read_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfbaa7e01 dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x4788273e af9013_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xb9c05ec1 ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x9386b7e9 atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x09de2579 au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x116d608b au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x18907949 au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x24cad014 au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x33f1b1f0 au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5c219101 au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x987c353f au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe600b6ba au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xfcf361c7 au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x0a564613 au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x58e5a3a9 bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xb2102320 cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xf1fd126b cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x7d89effc cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x7c60b30b cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xbd43ce4c cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x3ee158bb cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x46c0bc47 cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x3858f35b cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xa462bb6c cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x80776132 cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x0cbdc5d9 cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x1eeff6c1 cxd2841er_attach_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xe6feaf6d cxd2841er_attach_t -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x04c6e4d1 dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x5c653ec8 dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x7a105754 dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x95408ff2 dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xec4f4357 dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x14b826cb dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x32a43ceb dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4685dbc1 dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4b14f2e4 dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x51056093 dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x759888e8 dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7764d7c8 dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7eac0dc8 dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7f094f31 dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8a64dfd0 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9a80cfa6 dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9ae2c6cb dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc9b255f6 dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd69eea1a dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xeeef86fe dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xd056cedb dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x18c903e9 dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x4c52b987 dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x55375459 dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x76d0c51d dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xdbada041 dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xf723f8a3 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x5c905908 dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xa7867197 dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xa879477b dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xf91dceb7 dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xb100c20a dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xd210e48a dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x015f2a80 dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x318708e0 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x6da76a90 dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x766d6465 dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc408743b dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x860b9b1c drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xf5f7b4f5 drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x3f6e63b2 drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x2e7d5a34 ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x28c11d1b dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xd798e413 ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x815277b8 horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xc67e6044 isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x72146f36 isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x4c17a6f0 isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x59771983 itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x3a0f69b8 ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x94967bcb l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xe2fa2dea lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x13c07d75 lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xc4d85ac5 lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xf47abb10 lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x4bac8319 lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x7b8c5cd0 lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x0526fdf9 lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x962dbb9d lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xcc6f9c46 lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xc51ba8d2 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xf01f0790 m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x8b1192bf m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xb56bd6fb mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xf5c23690 mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x05daf06b mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xe979e995 mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x7efb5989 nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xec01d544 nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xc525a9bc or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xfa543d35 or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xffe4692c s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xc15027d4 s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x231b03f7 s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xfbe1ee08 s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x9bdc5768 s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0xd084d206 si2165_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x4eaa70b4 si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x3e4a922d sp8870_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x6dff50ec sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x2bacfc0e stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xe8c121f2 stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xd5b9a402 stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x3db64034 stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xf1231e40 stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xef138fa9 stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xd5d83643 stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xd6810e59 stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x2e3be43d stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x5a609c03 stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0xa183ee5a stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xfc6cb0de stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x8a9fd961 tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xa171b538 tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x39b1c8a7 tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x4be6b183 tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x7ff319eb tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xb4ef032b tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xf8fbb553 tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xdfaa237c tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xd10f0f61 tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xdf36387c tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x3c9537f1 ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x230bbc33 tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x93f691b1 ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xf43bf667 ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xa793beb6 zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x526445ea zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x07c1abed zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x4f2d34d4 flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x60977a31 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x61602d02 flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb8d29dc3 flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc56b6e01 flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xcbc493c6 flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xef152b51 flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x110b0490 bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xa1a5881a bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xa7f378c9 bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd2553b54 bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x4605a6ea bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x82bc8ba6 bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xa56061f8 bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x0aca1699 dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x2352b747 dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3132512e dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x456168a8 write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x52aa7043 dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5baaeea8 rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8e3cce0e read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb97da50d dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xbfd6ace2 dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x980fd1e5 dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x41edfb41 cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x5d9bc8da cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x7ffdf865 cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe8c5368f cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xf35a7c08 cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xade36081 altera_ci_init -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x15570f92 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x1d6abe9e cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x8ac451a0 cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x97c0d40f cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc0f65a5d cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9bb9290 cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf6e721df cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x10942d8d vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xa8b64a62 vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xc91c457e cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xf1b7448d cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xf27a9dd6 cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xf63df9d3 cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x0b757a14 cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x87af941f cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xc323f138 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xded44ccc cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe904ce55 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xeb2f38cc cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xfc323205 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0f06a226 cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1a7ace69 cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1d3a5663 cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3c5f29c6 cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3eae6ee4 cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x405c513b cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5fd3100e cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x641730c9 cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x653b460e cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7825ebb9 cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7a4083fa cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7d050a10 cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x854bb158 cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x97d9c925 cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb59a3dc8 cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc23a3940 cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc26de599 cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcaa7826e cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd7a56f2b cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdf808edf cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x13ee5b91 ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2018da5e ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2882fdd0 ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2da2bab1 ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2ed2e396 ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4757d6c8 ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4eacf453 ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5dfd3945 ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5ebd52e5 ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x70220d84 ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x72d6d8b6 ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x88723471 ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x978020cf ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa1b1df26 ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbcfabb59 ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd53ee421 ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe16b5bdf ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0ae990e4 saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0b745dab saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x10bc7680 saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x21cfc932 saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3d20e1c8 saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5bfa878e saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6dc8ddb6 saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x819432d4 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8e03df8a saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb0c4a85c saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe8472f73 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf0560372 saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xfe58121e ttpci_eeprom_parse_mac -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x179f6cf5 soc_camera_host_unregister -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x47984644 soc_camera_apply_board_flags -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x4b163106 soc_camera_host_register -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x4c3a210a soc_camera_power_init -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x52e30fe8 soc_camera_xlate_by_fourcc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xd8650e65 soc_camera_power_off -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xe62b3f03 soc_camera_power_on -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc -EXPORT_SYMBOL drivers/media/radio/tea575x 0x010e2dcc snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0x5d207c75 snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0x5e559237 snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x9aa10710 snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0x9b8920df snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0xba826490 snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xcf4c4443 snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x15ce8de4 lirc_dev_fop_close -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x3df065f1 lirc_dev_fop_ioctl -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x7b4f2c06 lirc_dev_fop_poll -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x7b6b5314 lirc_dev_fop_read -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x8bfeb902 lirc_dev_fop_open -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x8c4d4ba4 lirc_get_pdata -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x8ef963e1 lirc_dev_fop_write -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xf9eef1e9 lirc_register_driver -EXPORT_SYMBOL drivers/media/rc/rc-core 0x22dd85bf ir_raw_handler_unregister -EXPORT_SYMBOL drivers/media/rc/rc-core 0x800dfaaf ir_raw_handler_register -EXPORT_SYMBOL drivers/media/tuners/fc0011 0xb284a384 fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0x1a3e4271 fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x175210d3 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x7d2e1d7b fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xf0f4ffd9 fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/max2165 0xb4b5460f max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xbee01e1f mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0xb70e4d19 mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0x8f46fa3c mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0x2c2a86e0 mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x0c93da1a mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0x558585ca qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0x30a6f6c3 tda18218_attach -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0xcaf91aeb xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0xfdea79fa xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0x530734d1 xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x26484d2f cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xcf17ffef cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0f38197e dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1807bbb8 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x250e3a0b dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3545a4f6 dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x9987189c dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb1a556c2 dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc27630a6 dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xe2cfbecc dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xe3dfe55a dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x152db800 dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x16bb3701 dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x3e228792 dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x73ca7003 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xa369f8f4 dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xa3b6b33f usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe8007c3e dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x54e71e74 af9005_rc_decode -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x053dcc4e dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x286b6390 dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3618c2ee dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x44749dae dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7763a509 dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x80889f24 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8a182676 dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9d2794f3 dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc80b9250 dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xec0d1836 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf270b0f3 dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xb375506b em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xecc9756b em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x0b808df0 go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1fcb355c go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x29fcfc38 go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4e4ddf3e go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x542e659b go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x755b562f go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa54a3267 go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc9c4e80a go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xca792770 go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x04b40e4e gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2b646646 gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x81455f2b gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xcac6e8df gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xcf066bea gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe6596860 gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe744be0c gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xffc8dfc9 gspca_resume -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x736d6f94 tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xbc5c3c14 tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xd7ce0660 tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x47ce84c7 ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x6c09850d ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x481b1528 v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x769ce708 v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x9ef7f649 v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x61618988 videobuf_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x89f728dc videobuf_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xa065eff3 videobuf_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xc8555058 videobuf_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xeb9cfcd6 videobuf_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xfd68d32a videobuf_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xede7a5a3 vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xf1c19d39 vb2_verify_memory_type -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x209ec524 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x2b2841ae vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x4629f1a0 vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x4b4207ca vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xa0a178a9 vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xb614c9ff vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0x9e49d09f vb2_querybuf -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0063a1c3 v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0902f3c5 v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x147ed0c2 v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x15f4db06 v4l2_subdev_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x194d92d0 v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1cf4e8d7 v4l2_of_parse_link -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x233b3262 v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x25a85cea v4l2_clk_disable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x29c1ce28 video_usercopy -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x29c20585 video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2d1a50a1 v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2e932121 video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32230ceb v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x35006117 __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x370d0f89 v4l2_subdev_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3a5eae28 v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b3ee928 v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3e17cb06 v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x403eb86e __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4174b18d v4l2_of_alloc_parse_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x445b1ad9 v4l2_clk_get_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4e84fbe0 video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x50dd8075 v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x543df53d v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x56e2472a v4l2_clk_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x56f54d33 v4l2_subdev_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5c34a658 v4l2_clk_get -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5ddd2560 v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5df79e23 v4l2_of_put_link -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x60211baf v4l2_clk_enable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x636465e6 v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x639c02db v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x658abd60 v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6986580a v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6c664b18 v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6ca34627 v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x81df196a __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x880b2480 v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8f81806e v4l2_subdev_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x912ee613 v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9a26400e v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa2ef395a __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa9ece34d v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaafc4380 v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xad2702da video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xadd85961 v4l2_subdev_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb3a31f10 v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb503ee94 video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb8689c76 v4l2_clk_set_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb889a70e v4l2_subdev_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb8ebc49a v4l2_clk_unregister_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbaecec6d v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc8cefba1 v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcacd2a74 v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcde83e6d __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xce342b1c v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcfcd4311 v4l2_clk_put -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd9c298a7 v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdb800cdd v4l2_clk_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdbbba5bb v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe1deb69a video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe4ab5e2d v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe53e4b44 v4l2_of_parse_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe5c8d3fd v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe649a6a5 v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xebf1bbfa v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeea19da0 v4l2_subdev_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf6731a8e __v4l2_clk_register_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf6d64ae3 v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf713c470 v4l2_ctrl_add_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf8851d81 v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfbe4380d v4l2_of_free_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfd5bb2a1 v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/memstick/core/memstick 0x079989ad memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x0e9e4ca6 memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x4f5230a4 memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x576989c1 memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x72153c42 memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0x758bf4e3 memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x9a34a57c memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xc12b7313 memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xd1317682 memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc07e67e memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xde7570c0 memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xe135e177 memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xeeaa287a memstick_add_host -EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x00cbaddd mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x03323e12 mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x053758ff mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x09b1416d mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x10a23462 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1ed431ee mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1f7ef81e mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2e6939bc mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x30c84e18 mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x465dbb58 mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5495b272 mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7b536a1d mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7c52c204 mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x90eb2030 mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x99197642 mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaf0697c1 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb16d4dd7 mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb721dd0a mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xba0dafb8 mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbe943a28 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc52d1621 mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc5561c6f mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc5c3b0e8 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xde8a7972 mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe3711d29 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe4b839f6 mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xebc77a47 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xef0302b3 mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfbf1c91f mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0f37fc30 mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1722d03c mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1c93c868 mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2593c7c5 mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2857b873 mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3901252f mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4227e62c mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x48e90de8 mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x498333b6 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4b753480 mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5f48c7d1 mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x629659fa mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x65c2fda4 mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x69c124cf mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6ef5f1ea mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8818cf82 mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9bdc9035 mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xac40cc87 mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb15dd00c mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb4a06e5c mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbbdef82f mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbd54413b mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xea1f54e7 mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xea8ddb42 mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xebc67ce5 mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf346ec96 mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfcdc506e mptscsih_event_process -EXPORT_SYMBOL drivers/mfd/dln2 0x3757826a dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xcad31547 dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0xd516b675 dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x85a6360f pasic3_write_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x9c8b5d3d pasic3_read_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2c4745e7 mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3074dcc1 mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x36934196 mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6e3a3f0c mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7e53a224 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8a16335c mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9998d7cd mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb91c65dc mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xbb44e46c mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xbb8766c1 mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfc4f0375 mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 -EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 -EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib -EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led -EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw -EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x17fff5b6 wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0xb91e7c70 wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x4f03a917 wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x7d39128e wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xe25b10a3 wm1811_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xf1d9540e wm8994_base_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x35b12dd5 ad_dpot_remove -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x9227abcf ad_dpot_probe -EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x30b3ae49 altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x202ecbdc c2port_device_unregister -EXPORT_SYMBOL drivers/misc/c2port/core 0x843052d1 c2port_device_register -EXPORT_SYMBOL drivers/misc/ioc4 0x4bd19af3 ioc4_unregister_submodule -EXPORT_SYMBOL drivers/misc/ioc4 0xb72598fa ioc4_register_submodule -EXPORT_SYMBOL drivers/misc/tifm_core 0x15676339 tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0x1bb2fdf0 tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x2e4ee652 tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x3f69aaec tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x4ce5617c tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x607f8b65 tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0x7277fa0a tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x77feb9f4 tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x9e442db0 tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0xa8c2ec46 tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0xb8fbda47 tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xc85eba53 tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0xe0bde051 tifm_unregister_driver -EXPORT_SYMBOL drivers/mmc/card/mmc_block 0x49f6c3e2 mmc_cleanup_queue -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x1b61330a mmc_spi_get_pdata -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xfd28674a mmc_spi_put_pdata -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x34de6fbe cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x590a8025 cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x736b37ab cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x8c793f66 cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc4bcb96f cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe0354460 cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe38ee409 cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x0ede7009 unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x2d076da3 map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x95ff9922 do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xadb094c1 register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xa149c0f1 mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x66e2d04c lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xad65d19e simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0xac84a7e1 mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/mtd 0xb92083ac mtd_concat_create -EXPORT_SYMBOL drivers/mtd/nand/denali 0x161baa8b denali_init -EXPORT_SYMBOL drivers/mtd/nand/denali 0x31582edc denali_remove -EXPORT_SYMBOL drivers/mtd/nand/nand 0x48b18dea nand_scan_tail -EXPORT_SYMBOL drivers/mtd/nand/nand 0x6c3631e7 nand_unlock -EXPORT_SYMBOL drivers/mtd/nand/nand 0x6eaa315c nand_scan_ident -EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/nand 0x991aad30 nand_lock -EXPORT_SYMBOL drivers/mtd/nand/nand 0xa9514c0d nand_scan_bbt -EXPORT_SYMBOL drivers/mtd/nand/nand 0xcd0744c6 nand_scan -EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xdb9bd23a nand_bch_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xe49d0fb9 nand_bch_init -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xeefefa1a nand_bch_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x32a72218 nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x41e06f2d nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x8cfcf75c nand_flash_ids -EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x0ac49776 onenand_addr -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x2eb11aa0 onenand_default_bbt -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x964e3d34 flexonenand_region -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xd3727c0d onenand_scan_bbt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x006e44a9 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x22b81612 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2a09d9a3 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4e60a544 arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x80a698e2 arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa7e462a3 arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc4a3ab0d arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf2e6df9a arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf7f09668 alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf86004c2 arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x3011bead com20020_check -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xd58558b4 com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xf85ece29 com20020_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x168d4cbf ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3c47e51c ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x464cdd8e ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4edfc845 ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x57b9da39 ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8aab9ad1 __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9a2dddb6 ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xbec88bc1 NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xca34f65e ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf03d963a ei_open -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0x5f1ba86a bnx2x_schedule_sp_rtnl -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xa3dffaee cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x0d8be5fd bgx_lmac_rx_tx_enable -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x285bde59 bgx_get_rx_stats -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x42264715 bgx_get_lmac_count -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x6dc1648d bgx_get_lmac_mac -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc397f585 bgx_lmac_internal_loopback -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc82be691 bgx_get_map -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xe48ca42a bgx_get_tx_stats -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf101d1b2 bgx_get_lmac_link_state -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf9508980 bgx_set_lmac_mac -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x14b825a5 cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2425ffda cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3ea5b3d4 cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x469050d5 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5040baaf cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x632e8101 t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x725a918b cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7c02cdbc cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8a5a2810 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8ff41cac t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa2c60e1c t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa57935d5 cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbb476d14 t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc1eea5eb cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd4c6b078 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdb019d52 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x00f8c447 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x06b1e992 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0c43a498 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x15a47ab5 cxgb4_dcb_enabled -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1d5758cd cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2e6010ff cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x35e3ca19 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3b880136 cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4d8992cc cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5113b712 cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x53416bb9 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x538c309a cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5a5d9f68 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6a5943ab cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6d4a4878 cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x807f9a2e cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x86a12a41 cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x88dfebf1 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x893253ba cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x90101ec4 cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa46621db cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb210dbc8 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb77f1b7c cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbe7018bf cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc53e419e cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd1892c97 cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe9f505b5 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xefe72239 cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf402b942 cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf745d419 t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf776ed37 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfa0beabb cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfd013965 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfec4f60d cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x480f00fa vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x5a020439 vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7693c8d6 vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7c036fb0 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa442bd8c vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xdc4a8075 vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xc0ce042e be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xe515e01f be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/freescale/gianfar_driver 0x79f28897 gfar_phc_index -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x003aaeab mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01419b83 mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0652ce5a mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1209b8d4 mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x120ba0a6 mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15afd5cb mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x171b2078 mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e491966 mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2376f800 mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28d1eae1 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x292c1b4f mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ab0fc17 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ff8446e get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32d1d4a6 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46054886 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46125e44 mlx4_test_interrupts -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46ebea66 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b4bd625 mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f989636 mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x689a22b8 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c1a70c5 set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6dde2a28 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x739c1d7e mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8359d6a5 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x966e05ed mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9efc12cf mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa82f991b mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb35407bd mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb93c377 mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbee67b1b mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcac387df mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8fdd835 mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6476625 mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef02d11d mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf48ac135 mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6be54d4 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7b6179d mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe4638ce mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x039232b9 mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0857aabd mlx5_get_flow_table_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb7287e mlx5_del_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x101a61e8 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11dd5027 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13e80783 mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23d8d344 mlx5_core_arm_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30faf496 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36ae4919 mlx5_register_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38809fe3 mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ff97439 mlx5_cmd_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x419439d6 mlx5_core_create_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x455d158a mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48e08ded mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bc19c8a mlx5_core_dump_fill_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bd262d2 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c2051ff mlx5_unregister_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72a1f37b mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c8cc985 mlx5_cmd_comp_handler -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x801ec5c6 mlx5_modify_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85a8eebc mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87a80926 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b75d76e mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ce870dd mlx5_core_query_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e7a3a84 mlx5_core_destroy_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91b4b07e mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91ee140e mlx5_query_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93d6f789 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96c7f879 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c46a9ea mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f04e235 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9cbe066 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9f4aae3 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab428924 mlx5_alloc_map_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb158279b mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb84e7fef mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbfe6b9a1 mlx5_unmap_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbd46e85 mlx5_cmd_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6af33e4 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4bbed14 mlx5_get_protocol_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7b2c146 mlx5_core_get_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc728a49 mlx5_add_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x05a8de9a mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2d07a992 mlxsw_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x337477e9 mlxsw_core_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x645eb7c4 mlxsw_core_skb_receive -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77ce7c11 mlxsw_core_rx_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbdd5563e mlxsw_core_skb_transmit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe116fff0 mlxsw_core_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xebee0981 mlxsw_core_bus_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee8e0771 mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa209d1af qed_get_protocol_version -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xb71ba202 qed_get_eth_ops -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x2ce73e35 hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x6c22b6e5 hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xb324292c hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xe553d906 hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xf8b3e785 hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x2a4fdac9 sirdev_set_dtr_rts -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x3228e224 sirdev_get_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x3b668297 sirdev_raw_write -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x44a047af irda_register_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x6abe8f02 sirdev_raw_read -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x78e9e71b sirdev_write_complete -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x80ac58de sirdev_put_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x9a908810 irda_unregister_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xf24f31e9 sirdev_set_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xf9e94021 sirdev_receive -EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl -EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart -EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag -EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe -EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok -EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage -EXPORT_SYMBOL drivers/net/mii 0x19d4486d mii_check_gmii_support -EXPORT_SYMBOL drivers/net/mii 0x361da760 mii_link_ok -EXPORT_SYMBOL drivers/net/mii 0x53c6a595 mii_check_media -EXPORT_SYMBOL drivers/net/mii 0x5832006b mii_ethtool_gset -EXPORT_SYMBOL drivers/net/mii 0x67a4fda4 mii_check_link -EXPORT_SYMBOL drivers/net/mii 0xb2294fa8 generic_mii_ioctl -EXPORT_SYMBOL drivers/net/mii 0xc402437f mii_nway_restart -EXPORT_SYMBOL drivers/net/mii 0xd444cae8 mii_ethtool_sset -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xb0a9b852 alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xfd4b41b2 free_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x6a5ba00e cavium_mdiobus_read -EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0xe33fd470 cavium_mdiobus_write -EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x14a3d490 xgene_mdio_rgmii_read -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x548dd95d xgene_enet_phy_register -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x825607d3 xgene_mdio_rgmii_write -EXPORT_SYMBOL drivers/net/phy/vitesse 0xd9638c06 vsc824x_add_skew -EXPORT_SYMBOL drivers/net/ppp/pppox 0x00f53201 pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0x695741e7 pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0x82012ea9 register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0x4826511e sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x08f4e449 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0x4d80edc2 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0x4ecaa0a8 team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0x57797b34 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0x5ba007f5 team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0x7490c977 team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x8105c917 team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0xee2744e8 team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/usb/usbnet 0x00ac02f0 usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0xab6ece87 usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0xdbf1327f usbnet_manage_power -EXPORT_SYMBOL drivers/net/usb/usbnet 0xea237d6f cdc_parse_cdc_header -EXPORT_SYMBOL drivers/net/wan/hdlc 0x22bab4a2 hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0x2a7ab584 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x332c64c9 attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x40ad7a24 hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0x7cb0fcd9 alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0x8039d668 unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0x8c520e8b hdlc_change_mtu -EXPORT_SYMBOL drivers/net/wan/hdlc 0xc9a702ee hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0xdccc01c3 unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xf6b2bc56 register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xffa9719e hdlc_open -EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x1b4ad27c i2400m_unknown_barker -EXPORT_SYMBOL drivers/net/wireless/airo 0x5419aae1 init_airo_card -EXPORT_SYMBOL drivers/net/wireless/airo 0x5ab70448 stop_airo_card -EXPORT_SYMBOL drivers/net/wireless/airo 0xe8971342 reset_airo_card -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2aea4195 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2be8903c ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4e449146 ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x510a723b ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x55d17f9c ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x71d6d497 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x859890c0 ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb58c29c0 ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb5c53ddf ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd541d8fe ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd5b3e015 ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe54eacf1 dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x14896169 ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1cedaa7b ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1ebc8302 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7eb58acc ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8e29b02e ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x94d5b314 ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9a5d92f2 ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb455bba1 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbd87ef1d ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc58b2a96 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd7d4a994 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd8639e51 ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe26fbb55 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe956556f ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf11d2536 ath10k_debug_get_new_fw_crash_data -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0aa18bd0 ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x26f6f1e2 ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2b59de3a ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x42865969 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4c76a3ad ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x506ff36c ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x58ca4629 ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa662f0ab ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xad417ec1 ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc4f93def ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe479a65e ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x00b3371a ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x08069b6c ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1896b58a ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1a853385 ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1e9b6933 ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x26085708 ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x29fc372d ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2da659a9 ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3130da5b ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x51201293 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x749c9615 ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7bfaced0 ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8bd6cc05 ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8da908f1 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8daa886d ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9e8def40 ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa2f57585 ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa8933eeb ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xac32d565 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2ce3bc2 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe83f0970 ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf0a22049 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf4e4614e ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04dc8864 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x06a9cb34 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x07e63e2b ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c8f9faf ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e463fe9 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13c340a5 ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1490793d ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17431e20 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x195b4f78 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1fd7f2b4 ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ffadc09 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x206edf7e ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x22f7b398 ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25fd4376 ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x292dd43c ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d822b5d ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e1d19db ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e24ead9 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f6d5f18 ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f7331e4 ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x30ce42b9 ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x34706692 ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37ac5c4a ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a50a6c5 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a59719f ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4055d519 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4174f76c ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4a823e02 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b79a779 ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c0475ef ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c724f66 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c75e553 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x56cb0437 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x57df8723 ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x595a3fa2 ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5e656a71 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x604488b2 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x62428069 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x67f92550 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6c76ad3c ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7010041b ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x72e3954f ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x73ab91cd ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x763276a0 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x766c6265 ath9k_hw_request_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x773a0f3d ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x799a74cb ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d04b626 ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81464cb5 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8220c9c1 ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8592dbea ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x861d418c ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x86cb6b94 ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8702bc11 ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x888081c2 ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8cb0db37 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d7cb3fd ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9219df41 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92c442aa ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x95a1c134 ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x968d1deb ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ba861eb ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa03d0a4b ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3d644d3 ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa570f064 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6868fed ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa9926b2d ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa6c14f8 ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad7cdc9b ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb5e776de ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb90b3a31 ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb9722d1d ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbb77ff6c ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe1f32c0 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe9fef00 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbff14f25 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3410a9f ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3577deb ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc398424c ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc806b70f ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc83ea5bd ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcbf263ec ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcdc006d1 ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd0c8a62f ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd3b1149f ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd61a6b50 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd7a97f3c ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd8296b0e ath9k_hw_cfg_gpio_input -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9462319 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9f002b5 ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdbb5d3b6 ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd1ba8ad ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe2d4bcb9 ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe504bd72 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe65c82bf ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe7e6b188 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xebfffc97 ath9k_hw_cfg_output -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeda91cfd ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeea94070 ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeee2d4c4 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf13ed509 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf4106c78 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf4a88849 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb7fc14c ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd2ad1f0 ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/atmel 0x67e6dc9d atmel_open -EXPORT_SYMBOL drivers/net/wireless/atmel 0xf5e703ac init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel 0xf89ef4bd stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x08f94c6c brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x16795af3 brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x28d5e859 brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x34a42ca5 brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3e89de65 brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x506d6075 brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x6e15c214 brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x95f3be5e brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9809222d brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xc1a7f1ed brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xc3d3c969 brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xcd0a0bd8 brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd5d76ac6 brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0cc0c1bc hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0e100752 hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1723ac32 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2e43e1eb hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x31a93d0a hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x338e472b hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x38570d42 hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x56063d2e hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5f57c5d2 hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x68e0d8f2 hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6b3536e4 hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7c9daecf hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x886e95e6 hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8c414a7a hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x914909c5 hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x92b081ae hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb055c28b hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb6111de2 hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd3a420d8 hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe6303dc6 hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xea2ca6dd hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xea7369b5 hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xed25bdf6 hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xee481e58 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf0d68587 hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf9613914 hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x115a0b8c libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x1265efe3 alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x16343449 libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x1788934a libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2a941a78 libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4f9e7095 libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x50c99b15 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5bf67d00 libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5ff75b83 libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7f7e8663 libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x9b68dc9e libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa1f6773d libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb080df63 libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb7295884 libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb74b9043 libipw_change_mtu -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xbb9b845b free_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc12113a9 libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xce685cdf libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe2292d7b libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe7075f7e libipw_rx -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf866bd2d libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x00acf57a il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x039b21b9 il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x05cb4a21 il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x06850f42 il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x07c95b59 il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x088a0434 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0ad9d287 il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0e1887af il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0e70d48b il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x10f0be8b il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x129ae8f1 il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x13f73947 il_set_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x179e45c8 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x189b6493 il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x19590409 il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1d8c12f3 il_apm_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1f209826 il_free_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x223127be il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x22a6d407 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x23156592 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x243e7570 il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x27cb4708 il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2893a1f0 il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x29d874e8 il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3135d2a0 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3307d94f il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3bd41459 il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x40105a35 il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x43b98a35 il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x442a28c9 il_force_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4570f776 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4966d3e6 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x502f1210 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x519d89d6 il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x51be87d8 il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x52faf3cb il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x545349dc il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x572d7ae1 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5d4d745d il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5f259d1c il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x613f657f il_leds_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6be45828 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6f87f9f1 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x721a7593 il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x75b691cd il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7c4e3244 il_set_rate -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7d938b0a il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x84637320 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8d757014 il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8f715910 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x94af1c6a il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x96d8a659 il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9a15ecc7 il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9a1e9bef il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9a42b0d9 il_init_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9a63ed47 _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9a82a303 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9a90b17d il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa5cf3617 il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa63e51cc il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xaa67b4ea il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xab0e559c il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xace26c86 il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xada9313e il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb0f163e9 il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb69d7f80 il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7f199ce il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xba6b71ef il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbe571bec il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbf240748 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbf42f81f il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc01fb563 il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc2115098 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc2acd20d il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc3205265 il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc78316b8 il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xca7c78a0 il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcbc869b3 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcc9d5b02 il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd119c319 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd8423c89 il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd95945fc il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdc88be78 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdfd2cfb0 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe263d35a il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe407b3cc il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe69ef493 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe95dec5c il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xeb11937e il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xec620753 il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf4c211d4 il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf74f2a08 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf86bc3ca il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfc82c00b il_update_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfcd2d3f1 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfe0fd683 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xff66d6a0 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x1b06ce78 __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x2447a6ab __tracepoint_iwlwifi_dev_iowrite8 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x314a20a8 __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x5e9c24ff __tracepoint_iwlwifi_dev_ucode_error -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x8c8ab242 __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x9a1b1df9 __tracepoint_iwlwifi_dev_ioread32 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xdced6db1 __tracepoint_iwlwifi_dev_iowrite32 -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x0ecb238d orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x15dbf0a3 orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x1c7da0a2 orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x4865b377 orinoco_get_stats -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5b3af66b orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5dea5bf1 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x6d166c44 orinoco_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x6f2239ea alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x6fc0c7ec orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x7640230d orinoco_up -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x7b7d15bc __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb945d1b0 orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xbb61578c orinoco_down -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd4958131 orinoco_open -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd65a76ed __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd7ea9961 orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xfd2c8f7e free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xd999c4a7 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x03f65659 rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x064d2733 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0d7bbb51 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0f4d58cd _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x10634eb3 rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x15a8b84d rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2423469d rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2d53139e rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2dca9ead rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2eda6c58 rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x304c06da _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x34fb8a20 _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3c6e600e rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4c50c719 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4e95b05d _rtl92c_store_pwrIndex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5262bff2 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5c3fd0fd rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x64f4c5bd _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6cecbf05 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7df69ef6 _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x82810d46 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x836fee09 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8f6100a4 rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9013f602 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9381a12b _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x94d3d648 rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9c4b9758 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa2b92b8d rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa2c6f993 rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa7209983 rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa84f81ec rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaec4d3d7 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb0515e0c rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3e2d2e5 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb6f211b6 rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc9160639 _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd0bfc56f rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdda5e639 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe15da388 _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe38f4232 rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf661d4bb rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x45396bd7 rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xb9138fee rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x02c7c60e rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x36da3110 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xb7b0c713 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xf408a48a rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x055a6fad rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1018f685 rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x130355dc rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1f878402 rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2fdbbc95 rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3697ede5 rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x370eeff7 rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4a040034 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4d9ab7e1 rtl_ps_set_rf_state -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x52d716a4 rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x554fc059 rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5c572a52 rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x653e6194 efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x70d4efd7 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ecc15fa rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ff564fe rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9ba44fb1 rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa77f60de rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb526d234 rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb7b1c5b0 rtl_wowlan_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb888cde8 rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc40f9c58 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc983ee80 rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcca8d534 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xccb22f94 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd40a7ea8 efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfc471260 rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfe574ebd rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x842bf85c wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xae6f6940 wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xd6527378 wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xdbfa400a wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xd414fb82 fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xd8ba902c fdp_nci_recv_frame -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xdb0008b3 fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0x50b944ab microread_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0x78c91dea microread_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x5964a49b nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x6e35bf51 nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xbb2951e0 nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x05e776ce pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x9fd925c2 pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x5434d5b6 s3fwrn5_recv_frame -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x8c913d72 s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x8fee277a s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1e338329 st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1e3a826d ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2469aaf6 st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4adc5dc3 ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x50a1afe5 st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x65f352a3 ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7be93500 st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x93639a44 st_nci_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9ceb07bb ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb12eb69c ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb6b88961 ndlc_close -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x05536ba2 st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1b79724a st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x23828c6d st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x270f5e0a st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x433c6efa st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x44b539bb st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x48ffc689 st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x579a45ce st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5c567146 st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5e317060 st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x78fa8502 st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9b76d317 st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa5ea7c10 st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb39c2e78 st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb7ec3b30 st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf3dee2db st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfcc765dd st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xffa98981 st21nfca_se_deinit -EXPORT_SYMBOL drivers/ntb/ntb 0x0a7d419f ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x1267121a ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0x746a15d9 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0x93fb36c2 ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0x983529c7 __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0xd03eb818 ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xd20a4a84 ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0xdf2e06e1 ntb_db_event -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x22b28575 nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xaae5a119 nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x8d3117b7 devm_nvmem_cell_put -EXPORT_SYMBOL drivers/parport/parport 0x0da6b061 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0x0e7e98a4 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0x0f0d95d0 parport_read -EXPORT_SYMBOL drivers/parport/parport 0x1d9c6e07 parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0x1de1257e parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x1f47c544 parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0x27aa9072 parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0x299072c2 parport_write -EXPORT_SYMBOL drivers/parport/parport 0x3f89f19f parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0x40b9c237 parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x5698b5eb parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x57176372 parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x5ff6bfd2 parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0x64351fbf parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0x739df46b parport_release -EXPORT_SYMBOL drivers/parport/parport 0x7bb61a54 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0x9251d452 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0x9ac3d80f parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0x9ded6557 parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0xa18f0665 parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xa5471a6e parport_claim -EXPORT_SYMBOL drivers/parport/parport 0xb49071da parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xbb7238de parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0xbd4c6d9b parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xbdcb4a61 parport_register_device -EXPORT_SYMBOL drivers/parport/parport 0xbf138880 parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0xc7af099e parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0xcb3faecd parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0xd0954999 parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0xe9e2b2ef __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0xecb950c0 parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0xffe9e14f parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport_pc 0x352f7d0d parport_pc_unregister_port -EXPORT_SYMBOL drivers/parport/parport_pc 0x881b1830 parport_pc_probe_port -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x07b7a5fe pcmcia_request_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0a0d235a pcmcia_fixup_vpp -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x14638769 __pcmcia_request_exclusive_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x223db6c8 pcmcia_fixup_iowidth -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3c7d57e0 pcmcia_read_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5049bf8b pcmcia_disable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x55279e98 pcmcia_get_mac_from_cis -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6306527e pcmcia_request_io -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7e1f1310 pcmcia_loop_config -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8161f349 pcmcia_dev_present -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x899d6e92 pcmcia_unregister_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x951e89a4 pcmcia_release_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa617a70a pcmcia_request_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc0b54df9 pcmcia_enable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc8010ac9 pcmcia_loop_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe5a73066 pcmcia_write_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf2104f22 pcmcia_map_mem_page -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf54cd140 pcmcia_get_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf93bc8fc pcmcia_register_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0e8dc678 pcmcia_parse_uevents -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x117c052a pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1e49c060 pcmcia_socket_list_rwsem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x23061af9 pcmcia_parse_events -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x25121320 pcmcia_get_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3a92c17f pcmcia_socket_class -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7519234e pcmcia_unregister_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x94e804d0 pcmcia_put_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x9f6757d4 pcmcia_reset_card -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xead8b34a pccard_register_pcmcia -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xefb52ea1 pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x36c158c0 pccard_static_ops -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x3b2544b0 pccard_nonstatic_ops -EXPORT_SYMBOL drivers/pps/pps_core 0x3cd6d777 pps_unregister_source -EXPORT_SYMBOL drivers/pps/pps_core 0x5aa7ca07 pps_lookup_dev -EXPORT_SYMBOL drivers/pps/pps_core 0x778be030 pps_event -EXPORT_SYMBOL drivers/pps/pps_core 0x7c0a31bc pps_register_source -EXPORT_SYMBOL drivers/ptp/ptp 0x10bfea76 ptp_find_pin -EXPORT_SYMBOL drivers/ptp/ptp 0x39950feb ptp_clock_event -EXPORT_SYMBOL drivers/ptp/ptp 0xb39b87a1 ptp_clock_register -EXPORT_SYMBOL drivers/ptp/ptp 0xb70f2e85 ptp_clock_unregister -EXPORT_SYMBOL drivers/ptp/ptp 0xc9317307 ptp_clock_index -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x0aaabc1e rproc_put -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x36dfeb09 rproc_da_to_va -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x4e84cac8 rproc_get_by_phandle -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x5b8d5caa rproc_boot -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x82ffbb54 rproc_vq_interrupt -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xc82afcc4 rproc_report_crash -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xd08b8efc rproc_add -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xef373808 rproc_shutdown -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xeff80603 rproc_alloc -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xf8bc537f rproc_del -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x6e9cccb7 ds1685_rtc_poweroff -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x51f25532 scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x5888b96f scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xe1570444 scsi_esp_template -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xfb1454fb scsi_esp_register -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1819dc30 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2d3fbc59 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2ecad256 fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4a78a249 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5bc6ca73 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x631e9c4c fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x765b610a fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x87fee636 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa80dcc13 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xaad30e6c fcoe_ctlr_destroy_store -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb4cd27a3 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc4f72f47 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x029db91e fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x045aebaa fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x064d5184 fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x09f65dac fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x108e6e3f fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1432bc01 libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1719a0a0 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1a2551fb fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27f1fc0a fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x387d808d fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3e927106 fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x403d0cc1 fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4466f81c fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x47a813c2 fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4a50509e fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4d3c05af fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x535dd67f fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5900c11b fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5bdecc9a fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5da67883 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x618202d4 fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x61932751 fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x64bc7230 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x68a8f571 fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x695e23c1 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6b2ba960 fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6dc83bdc _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7039d393 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x78fee3d6 fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7bc72ba2 fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ce48ac9 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8294999f fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8669013f fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8c2ce69f fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9e61f376 fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa219001b fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb1b91c5f fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb6fcabb8 fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb74cdb99 fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb7ccae5a fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xba36e35d fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc583e5b6 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcaf15966 fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xda3c4d20 fc_rport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe3899863 fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe451173f fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0b4dae9 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf6c47522 fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf7a100d2 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfdf45492 fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x2efc3e45 sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x404aca33 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x810f723e sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xd8a45e35 sas_wait_eh -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x019c11de mraid_mm_register_adp -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x03743eb8 osd_req_flush_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x09bbe7b7 osd_req_decode_sense_full -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0daff969 osd_req_remove_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1ea96d36 osd_req_add_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x20debe9b osd_req_format -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x20ee7f60 osd_req_create_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x20f808b1 osd_req_read_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2a98aafb osd_req_decode_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2ad4c202 osd_req_flush_obsd -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2f026470 osd_req_list_partition_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x37f593e4 osd_execute_request_async -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3d938ed4 osd_req_read_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x40ce4c5a osd_req_set_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x42997001 osd_req_add_set_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x46763699 osd_dev_fini -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4b66e8cf osd_req_get_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4c4c508f osd_auto_detect_ver -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x65046829 osd_end_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6e0c383a osd_dev_init -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x700fe743 osd_req_write_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x725eaaf7 osd_req_list_collection_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x76e8e36a osd_req_list_dev_partitions -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x790fb5e7 osd_req_write_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x80ff4cd6 osd_req_read -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8639bb82 osd_finalize_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x86e036d1 osd_start_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9821332f osd_req_write_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9f2b4366 osd_req_create_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa1d5ce4a osd_req_flush_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc174742b osd_execute_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc1f2bb49 osd_req_flush_collection -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc2027251 osd_req_write -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcf9be8ad osd_req_add_get_attr_page -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xeb581975 osd_req_remove_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf607a9a1 osd_req_read_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf647c3bd osd_req_list_partition_collections -EXPORT_SYMBOL drivers/scsi/osd/osd 0x25fafb4c osduld_device_same -EXPORT_SYMBOL drivers/scsi/osd/osd 0x311eeaf2 osduld_info_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0x5404aeff osduld_path_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0xa8a048a0 osduld_register_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0xa94cf5a2 osduld_device_info -EXPORT_SYMBOL drivers/scsi/osd/osd 0xe1809e4b osduld_put_device -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x048c2488 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x143c48a6 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x209463f6 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x28852383 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2bb3d3af qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6a9bbb75 qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x89466707 qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x94cf34ba qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb4bd8c04 qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xde1a47cd qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe263a9f2 qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf8ca5014 qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x18b5f5ba qlogicfas408_biosparam -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x2464a6de qlogicfas408_info -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x5917402f qlogicfas408_queuecommand -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x83e9be7a qlogicfas408_abort -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x957317c8 qlogicfas408_bus_reset -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xfae8155e qlogicfas408_disable_ints -EXPORT_SYMBOL drivers/scsi/raid_class 0x10a2e0ac raid_class_attach -EXPORT_SYMBOL drivers/scsi/raid_class 0x979ef6fe raid_component_add -EXPORT_SYMBOL drivers/scsi/raid_class 0xefaf3794 raid_class_release -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0d868239 fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x206ad62e fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4225bef4 fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4761167c fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x49b4cc96 scsi_is_fc_vport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6de371d2 fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x91797158 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x98597397 fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbbc63359 fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc00505a1 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd4a08722 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd96fe5dd fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf5be3d65 fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x05fc5d1c sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1595ce7f sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2243c0c2 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x260132ad sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x294c292d sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2b3c1f65 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3f6e2562 sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4d41e94e sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x521161ae scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x56e82812 sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5735d963 sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x57c651de scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x58f9bd84 scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x67e45c77 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6aad8fcf sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7d7f4e9c sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8f76ceec sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9ef0c0b3 sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xadfcbfb7 sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb81fc4fc sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc878338a sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc8b8537f sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcfbe1fc4 sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe18b9885 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xea0d9b90 sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xeb3a7e1a sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf2a41f2d sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfc9f0b8c sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3ead9146 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x473e61c6 spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x57a91726 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x83b56396 spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x99db7969 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x28f86d33 srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x3f7b482d srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xd0592783 srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xf32ce340 srp_rport_put -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x2c43ae17 ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x50c14913 ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x6f699264 ufshcd_runtime_idle -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x990d4e87 ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xb14ec8e1 ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xd6c8e563 ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xf438cef8 ufshcd_system_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x14bc13ef ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0x1bd5f216 ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x1ff7c1ba ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0x48216697 ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x4b02553d ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x5ec983d3 ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0x6e450079 ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0x749df1a0 ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0x7a758618 __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0x8d1c5fb0 ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0x94318532 ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0x95660040 ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x9e591ffe ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0xa51cff3f ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0xb391007e ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0xba528cd2 ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0xbf847cd1 ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xc1f73009 ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xdf695f29 ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0xea512d7c ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x010706ed fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0ad11c76 fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x22ffa60a fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x323e5b97 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3412879a fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3414232e fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5723a67a fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x60ee681d fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7177dd8b fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x784aca61 fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x893bd728 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8a769a45 fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8d98231b fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x97d4b358 fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x99fd9d0a fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9c5611e2 fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xad1f6f62 fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xaee40a32 fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xaefbddcb fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb6ce964f fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc23a0e36 fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc5b8e2b5 fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcc7d99a6 fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcfed250b fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x34b21d89 fwtty_port_get -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xc3058f35 fwtty_port_put -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x3e476ade adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x4a37500f hmc5843_common_suspend -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x71973a9b hmc5843_common_remove -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x9d221163 hmc5843_common_resume -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xaa2340a7 hmc5843_common_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xa4a20b96 ade7854_remove -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xfff5c3af ade7854_probe -EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0xd215df6f cxd2099_attach -EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0xff45138f most_deliver_netinfo -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0371e6a6 RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x06475e8c rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x06679b5c rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0d0a41c4 rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0f5dc67d rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1c920c3a rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x217a1872 rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x25ddb120 rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2d6412c9 rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2fa51f25 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3535e843 Dot11d_Channelmap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x361cb6fc rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3a32d1eb rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3f7cc604 rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x51b443bb rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x58052ba7 rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x672d122f rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6c713f34 rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6c8ef5f9 rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x718b2c78 dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x72683296 rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7ae9e1e8 free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7be3a021 rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x81b0f4a2 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x874b36c1 rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8d22071d rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x99e69f43 rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9fc7eb50 notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa712ea74 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa8fde15f rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xab671aa0 rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xace4303b rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb6304336 alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbde9c234 rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe8ff778 rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc30351d4 rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xca7319c0 rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xceceeba8 rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd29b1c2a rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd429d70e rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd9f6c6b2 rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdab901a8 HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdb6fd317 rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xde173289 rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xde8bc161 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdfafb741 rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xebf5dcae rtllib_wpa_supplicant_ioctl -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf7f46059 rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf9e2a95a rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfeeb459c rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x02dd5c9e ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x075e6129 ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x096371b5 Dot11d_UpdateCountryIe -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f099f61 ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x139946f7 Dot11d_Init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x18967e0c ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1a91fc00 Dot11d_Reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x21f83ece ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x22aa1839 ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x234c7b81 ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x26f75c1e ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3092f89a ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x33de725e ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3cc13fa6 ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3d641aad ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3fe6c511 ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x408a35a5 ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x41c681ef ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x42313dcb ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x42c7e2d0 ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x469e1c4b ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4f34f45c ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61ea895d ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x650bfd24 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x837a8063 ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x84f6d6e1 ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x87c6e849 ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9d89db8e ToLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9ef44c8a ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa8cf2664 ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa9219203 ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xac926243 ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb1ac1430 ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb82fb4db ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb9264c3e ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbaa75d06 DOT11D_GetMaxTxPwrInDbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbb648eed ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbc114b9c HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbf39caca ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc0986827 ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc3f14185 ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc6e80723 ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xca58f179 ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcc48c67a SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd3e3abc5 DOT11D_ScanComplete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe0fb459a IsLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe34eb788 ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe713f3af ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe7c90aff ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeac7acec ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeb69ec82 ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xedea2ffa ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf783fd61 ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf8aef0b2 ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfce6efc1 ieee80211_rx_rsl -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x01d803e3 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x021b3d01 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1f213b86 iscsit_set_unsoliticed_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2185e397 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x382ae558 iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4284568b iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x589ace66 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5e0fe65f iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x62b89050 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x65a1fb9c iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x69a81f83 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6c738c38 iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6ce63e87 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x93fd5454 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9fcebc7f iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa5d1d94a iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xae2b0618 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xafaa1e0c iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb4692d91 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb4f70ee1 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb922e5ec iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xba26281e iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcc6ab604 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcf67a762 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd82f546f iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd87650f5 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf7c5da7a iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfe8cdfe7 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/target_core_mod 0x01c2a060 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x03761346 target_sess_cmd_list_set_waiting -EXPORT_SYMBOL drivers/target/target_core_mod 0x0dedb629 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0x11b94abe transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x1bfddf24 target_put_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x1c1a14b2 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x1de0aa43 transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0x1e00f594 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x1e6ff78f core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x1f0bdf70 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x2203ea08 target_setup_cmd_from_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x236a5f61 core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x253030da transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x2a55cb6b transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x2ddc8ffa __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x3405abe9 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x3bb194ae core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x3bd6881c target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x422a4498 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x4c9b5753 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x4ed35486 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x52800ace passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x52a27ea7 core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0x56190077 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x597262b8 transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x5bcd1f28 target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x5c776572 target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x5d214e8c sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x677711bb target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0x73265dee sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x74be25e1 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x757c83be target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x76af33d7 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x7ec3da3f transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x81005f5d transport_check_aborted_status -EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x86a286d4 target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x86b25e3c target_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x878b693c transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x8b49f415 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x8c21e3b4 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x948948dc target_get_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x9b1a7d17 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x9e313ba2 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0xa4931a87 transport_init_se_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xa6d35225 core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xa7d5d07d target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xa927e859 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xaa9b2e7f target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xaf9108c5 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xb3e5d3da spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0xb61113fd spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xb6dacbb6 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xb97bdb87 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xc3f36fb1 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0xc8136131 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0xcc719d4e target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xcd2c290e target_submit_cmd_map_sgls -EXPORT_SYMBOL drivers/target/target_core_mod 0xd2c10630 sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0xd3a43d5d transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0xdb3f0984 target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xdb42b36b target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xddabad25 transport_init_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0xe9a63dde spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0xebfe4100 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xed542e28 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf85d4293 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xf874f260 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xfc553a3c transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0xfe5a104b target_show_dynamic_sessions -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x36cfd51a usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xaa80cda0 usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xa65c44fc sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1c84c32e usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2ce10d6b usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x31f5288f usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x393c37eb usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3fae1372 usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x40f0e945 usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc275b6cc usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd73276ad usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xdc29ec12 usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xeac5d410 usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf147c141 usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf572bb51 usb_wwan_ioctl -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xc53b50f4 usb_serial_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xf026860f usb_serial_resume -EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user -EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user -EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user -EXPORT_SYMBOL drivers/vhost/vringh 0x3c71c418 vringh_getdesc_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user -EXPORT_SYMBOL drivers/vhost/vringh 0x5fedea44 vringh_getdesc_user -EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user -EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user -EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user -EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern -EXPORT_SYMBOL drivers/video/backlight/lcd 0x3c26df77 lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0x53135f2d devm_lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0x536343b2 lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x9f683c79 devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x330dcbc1 svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4b8fbba3 svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6c493a67 svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc0ca2e31 svga_tilecopy -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc1de830d svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xcb982c18 svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe64fee9b svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xbaab10be cyber2000fb_attach -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x179b9f4e g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x682543a2 matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xfb294b44 matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x368606d3 DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x498621dc DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x9182ceee matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xf95b15ed matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xd5d1be50 matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x9d9badcb matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x19647012 matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x21108b83 matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x34ba8d05 matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xd27395f5 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x55e16477 matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xf34b0922 matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xb453fb3e matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xd530f4bc matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xf2089ba4 matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xf3a21fb3 matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xf3aae4a8 matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0xbffa6ab6 mb862xxfb_init_accel -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free -EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga -EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/virt/fsl_hypervisor 0x45fd1882 fsl_hv_failover_unregister -EXPORT_SYMBOL drivers/virt/fsl_hypervisor 0x77c9b191 fsl_hv_failover_register -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x3cc0aabf w1_ds2760_write -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x5ad67d6c w1_ds2760_read -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xf2757413 w1_ds2760_recall_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xfad062cd w1_ds2760_store_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x17cd4f6e w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x625dcdf4 w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x42146ee3 w1_ds2781_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x428539b8 w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/wire 0x1b4a874d w1_add_master_device -EXPORT_SYMBOL drivers/w1/wire 0x36f217d2 w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0x5f3c70a5 w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0x89901517 w1_register_family -EXPORT_SYMBOL fs/configfs/configfs 0x21d189ec configfs_undepend_item -EXPORT_SYMBOL fs/configfs/configfs 0x3a38748a configfs_unregister_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0x47691aa1 configfs_register_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0x682e570e config_item_put -EXPORT_SYMBOL fs/configfs/configfs 0x6943e6d9 config_item_set_name -EXPORT_SYMBOL fs/configfs/configfs 0x7b7e0fb3 configfs_unregister_default_group -EXPORT_SYMBOL fs/configfs/configfs 0x84a4b2ab configfs_depend_item -EXPORT_SYMBOL fs/configfs/configfs 0x853084ce configfs_unregister_group -EXPORT_SYMBOL fs/configfs/configfs 0x86a6d162 config_group_find_item -EXPORT_SYMBOL fs/configfs/configfs 0x915f9c76 config_item_get -EXPORT_SYMBOL fs/configfs/configfs 0xa27d7b37 config_group_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0xa937fe28 configfs_register_group -EXPORT_SYMBOL fs/configfs/configfs 0xdf6b1cbe configfs_register_default_group -EXPORT_SYMBOL fs/configfs/configfs 0xe13c5ac8 config_item_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0xeafa8672 config_group_init -EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout -EXPORT_SYMBOL fs/exofs/libore 0x3160e9b7 ore_get_io_state -EXPORT_SYMBOL fs/exofs/libore 0x338d7d65 extract_attr_from_ios -EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info -EXPORT_SYMBOL fs/exofs/libore 0x46bd7267 ore_remove -EXPORT_SYMBOL fs/exofs/libore 0x4e950d2b ore_get_rw_state -EXPORT_SYMBOL fs/exofs/libore 0x662142fe ore_put_io_state -EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length -EXPORT_SYMBOL fs/exofs/libore 0xa4dd5697 ore_check_io -EXPORT_SYMBOL fs/exofs/libore 0xaed3cb93 ore_truncate -EXPORT_SYMBOL fs/exofs/libore 0xcf3e2f08 ore_create -EXPORT_SYMBOL fs/exofs/libore 0xe4e764a1 ore_write -EXPORT_SYMBOL fs/exofs/libore 0xe869f2b1 ore_read -EXPORT_SYMBOL fs/fscache/fscache 0x029ddcbf __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x16f430b0 __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x2119f87e __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0x21bec79e __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x258d2d5b fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0x319daa21 fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0x325f9913 fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0x3624985b fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0x3776690e __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x4008be38 __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x45a794ff fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0x4dcf368d fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0x4e775bc6 __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x55bee8df fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0x5b75327e __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0x5efb46a1 fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0x66951835 fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0x722d2654 fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0x72453d95 fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x76eceff3 __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0x7dbd159a __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0x853e4475 __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x8b473411 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0x8f176989 fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0x96c255b7 fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0x9efc0e4c fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0xa381dc5a __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xa9258835 fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0xa9805632 __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0xaa8e838a fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0xabfb823f __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0xb0c315c5 __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0xb2fb3830 __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0xb6ef4f61 __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xbe4d954f fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0xc0d3a9cd fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0xc69ed237 __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xc70c19b4 __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0xce68349f __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0xe9044304 __fscache_acquire_cookie -EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x55c0594c qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0x5dc3eff5 qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x8da37e81 qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xdd8c466e qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xf8d6bb6f qtree_release_dquot -EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq -EXPORT_SYMBOL lib/crc-ccitt 0x1a703ba1 crc_ccitt -EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table -EXPORT_SYMBOL lib/crc-itu-t 0x6d356209 crc_itu_t -EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table -EXPORT_SYMBOL lib/crc7 0x56329ecc crc7_be -EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table -EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb -EXPORT_SYMBOL lib/crc8 0xd09b2cba crc8 -EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb -EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c -EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy -EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get -EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed -EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of -EXPORT_SYMBOL lib/lru_cache 0x309a9449 lc_seq_dump_details -EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset -EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used -EXPORT_SYMBOL lib/lru_cache 0x546c1a9d lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del -EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get -EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create -EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock -EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set -EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find -EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put -EXPORT_SYMBOL lib/lz4/lz4_compress 0x0c222eb5 lz4_compress -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x682a23e0 lz4hc_compress -EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul -EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp -EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv -EXPORT_SYMBOL lib/raid6/raid6_pq 0x7456cc61 raid6_empty_zero_page -EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi -EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul -EXPORT_SYMBOL net/6lowpan/6lowpan 0xb182b870 lowpan_netdev_setup -EXPORT_SYMBOL net/6lowpan/6lowpan 0xe9093a19 lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0xec430b5d lowpan_nhc_del -EXPORT_SYMBOL net/802/p8022 0x7370850d register_8022_client -EXPORT_SYMBOL net/802/p8022 0x76f541a2 unregister_8022_client -EXPORT_SYMBOL net/802/p8023 0x571c8767 destroy_8023_client -EXPORT_SYMBOL net/802/p8023 0xadd86a8f make_8023_client -EXPORT_SYMBOL net/802/psnap 0x1ea12149 unregister_snap_client -EXPORT_SYMBOL net/802/psnap 0x36051ab3 register_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x00d43c47 p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0x046c2437 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x091ab9c4 p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x0a7c1a02 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x10ceea3d p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x1156bcc7 p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x13f9c702 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0x14283936 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x21046567 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get -EXPORT_SYMBOL net/9p/9pnet 0x37317f2c p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x3853b21c p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0x38e32f4e p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x3aeaa2d6 p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x3c9cc69f p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0x3cfa139b p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x3deb9c1b p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x42ed8731 p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0x455f9468 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x479568ab p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0x481ae683 p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0x493c4ff1 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x4e8c2ddc p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x53d58a07 p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x5c54db09 p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0x628bbe53 p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x81984d77 p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x8227658f p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0x85a6054f p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x87f73ff5 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0x8e0a1125 p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x8ea3459f p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x9900cd5e v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0x9c0e753f p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x9e1a6b90 p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0xa3606ee6 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0xab4e450f p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xaf5c94bc p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0xb4fcb096 p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0xbebf4ed3 v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy -EXPORT_SYMBOL net/9p/9pnet 0xd6554d78 p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0xdd291e57 p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create -EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put -EXPORT_SYMBOL net/9p/9pnet 0xf9682d56 v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check -EXPORT_SYMBOL net/appletalk/appletalk 0x3b978262 aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0x564901db alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0xbd91ce74 atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0xe3308c39 atalk_find_dev_addr -EXPORT_SYMBOL net/atm/atm 0x0fe19cb2 vcc_release_async -EXPORT_SYMBOL net/atm/atm 0x161bd7ed atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0x21435af2 vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0x292b7b8d atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x313ab18d atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0x35a4ab06 atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x4ad67545 atm_dev_register -EXPORT_SYMBOL net/atm/atm 0x5fbf465a deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x8e0797fd register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xa4810754 atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0xa7129364 atm_charge -EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xc357c698 atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0xca87b453 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0xe5e92826 vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/ax25/ax25 0x029a21da ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0x176630df ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x250c9935 ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x7dae531e ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0x900f3830 ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0xa1a75864 ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xdebd063a ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0xf2b2685f ax25_send_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0x04da71d1 hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1c610bd8 l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1ce0bd51 hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x26741f8a hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2ae90d12 bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2b3665f2 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2c30d47d hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x379b6eaf l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err -EXPORT_SYMBOL net/bluetooth/bluetooth 0x480c5bd2 bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4ec958a7 bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4fb3dc22 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x52ae7154 l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x53662004 hci_alloc_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x552cb2d4 hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5a9ff887 bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5cb7d902 hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x78492ccc hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x808ed8c3 hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x84df6e9d bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x898ab19e bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8bd43a84 hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9179366a l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9646c762 __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa8c951fe hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa9dd8d92 bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0xac3bc580 hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xafe28c40 bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb78e6eb6 __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xba2fdc39 l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbd89c52a l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbea28d4d hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcb8c6d7f bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap -EXPORT_SYMBOL net/bluetooth/bluetooth 0xccadf793 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd1bb507c bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe887d24d hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xec790c77 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0xecf5cc13 bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0xee29b94f bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf2603244 hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf74be355 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf82e49f8 hci_register_dev -EXPORT_SYMBOL net/bridge/bridge 0xca1ae95f br_should_route_hook -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x04e4d8cd ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x611856ea ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xee256614 ebt_unregister_table -EXPORT_SYMBOL net/caif/caif 0x0352224e get_cfcnfg -EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative -EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info -EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer -EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head -EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head -EXPORT_SYMBOL net/caif/caif 0x9b6acc8a cfcnfg_add_phy_layer -EXPORT_SYMBOL net/caif/caif 0x9cb1e147 caif_enroll_dev -EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio -EXPORT_SYMBOL net/caif/caif 0xa0e13731 caif_connect_client -EXPORT_SYMBOL net/caif/caif 0xb714c7a5 caif_disconnect_client -EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/can/can 0x02cf4f88 can_ioctl -EXPORT_SYMBOL net/can/can 0x4d7b96eb can_rx_unregister -EXPORT_SYMBOL net/can/can 0x5de839d7 can_rx_register -EXPORT_SYMBOL net/can/can 0x76c219e7 can_proto_unregister -EXPORT_SYMBOL net/can/can 0xdc860432 can_send -EXPORT_SYMBOL net/can/can 0xeeaec1da can_proto_register -EXPORT_SYMBOL net/ceph/libceph 0x0345b6ee ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init -EXPORT_SYMBOL net/ceph/libceph 0x0d72a3c9 osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x103fc08d ceph_osdc_create_event -EXPORT_SYMBOL net/ceph/libceph 0x1042e778 osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x15813b76 ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0x15b9cb71 osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0x16a9702f osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0x1d809de5 __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x1e698d7b ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup -EXPORT_SYMBOL net/ceph/libceph 0x21c60751 ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x24d897df ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x26030ca8 ceph_osdc_cancel_event -EXPORT_SYMBOL net/ceph/libceph 0x2804d76f ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x2a686f53 ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x3abf0560 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options -EXPORT_SYMBOL net/ceph/libceph 0x4151d403 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0x419cb09b ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part -EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x468a895f ceph_auth_update_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x4791eb0f ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0x4a60bacb ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode -EXPORT_SYMBOL net/ceph/libceph 0x54bf712d ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x5523009d ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0x556ccd88 ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x586a34e1 ceph_get_direct_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x58eb92fd ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x5b57155f ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0x5b945825 ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x5c3738a0 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x63a01101 ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x641794e5 ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x670acb93 osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x67ae77e6 ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x6fcdafef ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0x71982442 ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0x72b055f8 ceph_monc_do_get_version -EXPORT_SYMBOL net/ceph/libceph 0x7b40c8a8 ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x7b9518af ceph_monc_request_next_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x7efd50ae osd_req_op_watch_init -EXPORT_SYMBOL net/ceph/libceph 0x826ee5a3 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x8278b22f ceph_osdc_put_event -EXPORT_SYMBOL net/ceph/libceph 0x827a935c ceph_osdc_set_request_linger -EXPORT_SYMBOL net/ceph/libceph 0x864f66d0 ceph_osdc_build_request -EXPORT_SYMBOL net/ceph/libceph 0x8806bc64 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x88c68c84 ceph_oloc_oid_to_pg -EXPORT_SYMBOL net/ceph/libceph 0x88f68d18 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0x89d78246 osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x8b2479a0 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x8c171504 ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x922027ce osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x94409429 ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x95045030 ceph_messenger_init -EXPORT_SYMBOL net/ceph/libceph 0x989c5515 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x993f292b osd_req_op_cls_response_data -EXPORT_SYMBOL net/ceph/libceph 0x995b9793 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup -EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0x9fa0a2a1 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0xa000ddcc ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xa16abb84 ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0xa411da57 ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xac9a1eb8 ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb07d49f4 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit -EXPORT_SYMBOL net/ceph/libceph 0xb8a1a371 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0xb902ff49 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0xb9086362 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0xb9fffb97 ceph_osdc_writepages -EXPORT_SYMBOL net/ceph/libceph 0xbbdb1f15 osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xbd2837c0 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0xbdf90edd ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xc2dcef92 ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup -EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init -EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips -EXPORT_SYMBOL net/ceph/libceph 0xcdbfd9b5 ceph_messenger_fini -EXPORT_SYMBOL net/ceph/libceph 0xcf91f6fa ceph_osdc_readpages -EXPORT_SYMBOL net/ceph/libceph 0xd0de3bb5 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode -EXPORT_SYMBOL net/ceph/libceph 0xd5b041f8 ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0xd66898c3 ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0xd7acd83f ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xdc4405d7 ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0xdccedfe9 ceph_calc_pg_primary -EXPORT_SYMBOL net/ceph/libceph 0xe1029f86 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0xe3b042ca ceph_pagelist_append -EXPORT_SYMBOL net/ceph/libceph 0xe44c9647 ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0xe657d308 ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0xe7cd5feb osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0xeaf1f04f ceph_client_id -EXPORT_SYMBOL net/ceph/libceph 0xeb3d5c31 ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0xf19fd79d ceph_auth_create_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xf33675b8 ceph_monc_got_mdsmap -EXPORT_SYMBOL net/ceph/libceph 0xf35cb4d9 ceph_pagelist_reserve -EXPORT_SYMBOL net/ceph/libceph 0xfd92ebc1 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0xffcb47d7 ceph_con_keepalive -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x15d24201 dccp_req_err -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x3c941d7a dccp_syn_ack_timeout -EXPORT_SYMBOL net/ieee802154/ieee802154 0x0c0d647e wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0x4c8ea7bc wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0x829393d4 wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0x88f36f49 wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0x9e1ce016 wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0xa9314fdd wpan_phy_register -EXPORT_SYMBOL net/ipv4/fou 0x3106aeb4 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x8b49dd30 fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0xd0750778 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0xf1aa79d2 gue_build_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x2f0ce93c ip_tunnel_encap -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x466258ae ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x7660c261 ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xd241d45e ip_tunnel_dst_reset_all -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xd8da5a9f ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf379c245 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x26c8ac47 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xb44a8ca2 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xe94f8621 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x02534e49 ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x12e92800 ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xf575915b ipt_unregister_table -EXPORT_SYMBOL net/ipv4/tunnel4 0xa8788a3b xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0xb404fc47 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x58431547 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x13bcf5b1 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x3d5f30c9 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xaf3be6f7 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xfe5f4ac2 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x2b5bf2b6 ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x59498ec4 ip6t_unregister_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xca095981 ip6t_do_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x56eddc42 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0xeddf2a43 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x893dbdfa xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xf719cbda xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x154e63df ircomm_close -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x3dcac5f3 ircomm_flow_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x5d742f2d ircomm_connect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x7ec04ff9 ircomm_connect_response -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x8d6b9503 ircomm_disconnect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x8f3409fa ircomm_control_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xe1056367 ircomm_open -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xe83bb4ae ircomm_data_request -EXPORT_SYMBOL net/irda/irda 0x0064e0ea hashbin_get_first -EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value -EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service -EXPORT_SYMBOL net/irda/irda 0x1509a3ed irlap_close -EXPORT_SYMBOL net/irda/irda 0x17e8d1be irttp_connect_response -EXPORT_SYMBOL net/irda/irda 0x1e6cade0 irias_add_integer_attrib -EXPORT_SYMBOL net/irda/irda 0x2759eba9 irttp_flow_request -EXPORT_SYMBOL net/irda/irda 0x288481ef irttp_close_tsap -EXPORT_SYMBOL net/irda/irda 0x2c5c37c0 irlmp_connect_response -EXPORT_SYMBOL net/irda/irda 0x2e11bf9e irlmp_close_lsap -EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda -EXPORT_SYMBOL net/irda/irda 0x39e4ddaf iriap_open -EXPORT_SYMBOL net/irda/irda 0x3e56064f hashbin_new -EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value -EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service -EXPORT_SYMBOL net/irda/irda 0x5f947e43 irda_device_set_media_busy -EXPORT_SYMBOL net/irda/irda 0x601bda46 hashbin_remove -EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies -EXPORT_SYMBOL net/irda/irda 0x6b5fbcef hashbin_get_next -EXPORT_SYMBOL net/irda/irda 0x6e0ab3c7 irias_add_string_attrib -EXPORT_SYMBOL net/irda/irda 0x70357fff irlmp_connect_request -EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client -EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client -EXPORT_SYMBOL net/irda/irda 0x766eb32b async_unwrap_char -EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client -EXPORT_SYMBOL net/irda/irda 0x7e648480 async_wrap_skb -EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert -EXPORT_SYMBOL net/irda/irda 0x85d88217 irias_delete_object -EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack -EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all -EXPORT_SYMBOL net/irda/irda 0xa1d41e58 hashbin_delete -EXPORT_SYMBOL net/irda/irda 0xa5f81cb8 irlmp_data_request -EXPORT_SYMBOL net/irda/irda 0xa83625a4 irttp_udata_request -EXPORT_SYMBOL net/irda/irda 0xaa557515 irias_new_object -EXPORT_SYMBOL net/irda/irda 0xaff0ebd5 irlmp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value -EXPORT_SYMBOL net/irda/irda 0xbb7c514a iriap_close -EXPORT_SYMBOL net/irda/irda 0xbbf604a9 iriap_getvaluebyclass_request -EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute -EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request -EXPORT_SYMBOL net/irda/irda 0xc63d1e05 irttp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0xc68e43be irias_add_octseq_attrib -EXPORT_SYMBOL net/irda/irda 0xcb2327a1 irttp_connect_request -EXPORT_SYMBOL net/irda/irda 0xcead7dbb hashbin_find -EXPORT_SYMBOL net/irda/irda 0xd0c01e52 alloc_irdadev -EXPORT_SYMBOL net/irda/irda 0xd2108314 hashbin_insert -EXPORT_SYMBOL net/irda/irda 0xd3523568 irttp_data_request -EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma -EXPORT_SYMBOL net/irda/irda 0xdb9a97ee irlmp_open_lsap -EXPORT_SYMBOL net/irda/irda 0xdcbca933 irda_notify_init -EXPORT_SYMBOL net/irda/irda 0xddee3d0c irttp_dup -EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint -EXPORT_SYMBOL net/irda/irda 0xe1fe2dbe irttp_open_tsap -EXPORT_SYMBOL net/irda/irda 0xe3463529 hashbin_lock_find -EXPORT_SYMBOL net/irda/irda 0xe3bde43e irias_insert_object -EXPORT_SYMBOL net/irda/irda 0xed181d3b irlap_open -EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries -EXPORT_SYMBOL net/irda/irda 0xf0a694a1 irias_find_object -EXPORT_SYMBOL net/irda/irda 0xf5876b95 hashbin_remove_this -EXPORT_SYMBOL net/l2tp/l2tp_core 0x5b842219 l2tp_recv_common -EXPORT_SYMBOL net/l2tp/l2tp_ip 0x0166e416 l2tp_ioctl -EXPORT_SYMBOL net/lapb/lapb 0x09ade354 lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0x53453d5f lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0x5a0fb8ee lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0x5ebc2b46 lapb_register -EXPORT_SYMBOL net/lapb/lapb 0x86751c69 lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0xa7da0575 lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0xb5acc58f lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0xe941ac0b lapb_setparms -EXPORT_SYMBOL net/llc/llc 0x0ae188c4 llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x586b047d llc_sap_close -EXPORT_SYMBOL net/llc/llc 0x90ad0cc1 llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0xba2003b0 llc_sap_open -EXPORT_SYMBOL net/llc/llc 0xba641ff4 llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0xc922c66a llc_add_pack -EXPORT_SYMBOL net/llc/llc 0xede58ea7 llc_sap_find -EXPORT_SYMBOL net/mac80211/mac80211 0x01e21604 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0x073a2850 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0x085c2934 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x0bd609f2 ieee80211_get_key_tx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x0e036b35 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0x0e387d76 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0x10263352 ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x12b8326e ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0x19976cd8 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x20fc8b80 ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x2f896088 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x33054a7d ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x33d6b1f8 ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0x39476562 ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0x3aa17b4b ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x3b366293 ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0x419c0202 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x41bfb1e3 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0x48b9de5e ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x4ab45347 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0x4c2b011a ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x4c6d34c7 ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x4cf5e291 ieee80211_tx_status_noskb -EXPORT_SYMBOL net/mac80211/mac80211 0x4e3f7880 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0x518b82e2 wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x55f97e4f ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x56cf3c34 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x5926d602 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x5bcc0a36 ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x5dd45ea3 ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0x5e1144f7 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x60bcef39 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x640a9e45 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x6a20ff7a ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0x6b9ddc17 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x6e25ea88 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x6e4e63a5 ieee80211_start_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x70282e9a __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x71b1e607 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x74273801 ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x7a6260c2 ieee80211_stop_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x7bad4ca4 __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x7d19ab8d ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0x7fdb14ab ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x80288887 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0x80b08cd4 ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x82f80580 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0x8677a058 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x87805ae8 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x8a266cf8 ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x8de9d823 ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x9371f09c ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x9b7791f8 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x9b9f7db6 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x9c81e1e7 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xa0c2006a ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0xa0ec4df5 ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xa290fbb2 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0xa38b00bd ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xa774aebd ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0xaa4be3f7 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0xaad9f42b ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0xadde1ea6 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0xae08da8e ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xb161d9f4 rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xb2e23094 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xb2ecaa31 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xbb341f51 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0xc0fcf9ea rate_control_send_low -EXPORT_SYMBOL net/mac80211/mac80211 0xc14fa312 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xc83da40d ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xca0176b7 ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xd38b924b ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0xd5876b54 ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0xd8d3653e ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xdbb031a7 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xe125f111 ieee80211_csa_update_counter -EXPORT_SYMBOL net/mac80211/mac80211 0xe164fab3 ieee80211_csa_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0xe6b8a057 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0xe81d641f ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xf1ebb0f7 ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0xfdc0ea7e ieee80211_probereq_get -EXPORT_SYMBOL net/mac802154/mac802154 0x00fc793d ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x08540022 ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x2ab95ee5 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x6b063e71 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x9b0cace9 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0xb422df83 ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0xbf292b1f ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0xfce9746f ieee802154_alloc_hw -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0edde25f ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x254c86a4 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2e92856a ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4dbccae9 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x53bc5f2e ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x54197743 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6c31ea98 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x88b30890 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8ab2e285 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb039aa92 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc7b4e50d register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcf23147d ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf0be3130 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf1d2fb09 ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xc25d9398 __nf_ct_ext_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xe7511c1f nf_conntrack_untracked -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xedf644e1 __nf_ct_ext_add_length -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x114e0b61 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x293dd2bb nf_xfrm_me_harder -EXPORT_SYMBOL net/netfilter/nf_nat 0x727b09f9 nf_nat_used_tuple -EXPORT_SYMBOL net/netfilter/nf_nat 0x910d1110 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0xb06969df nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0xf5e2ebbd __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/x_tables 0x05ec27bd xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0x253e8b44 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x5c211d0a xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x608042c8 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0x72391398 xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x89f6a4ae xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xb69a9fca xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0xc5c153ba xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xcb588e56 xt_find_target -EXPORT_SYMBOL net/netfilter/x_tables 0xd44d6fde xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xe8895c33 xt_unregister_match -EXPORT_SYMBOL net/nfc/hci/hci 0x0314bd8d nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x0441df42 nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x18b3efac nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0x19aa68ad nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0x26fa38ad nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0x32f1d1e3 nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x55d3536d nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0x69e67d88 nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0x6d872e7b nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x71804ad9 nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x806491fd nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0x902fd358 nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0x96dfc86a nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0x9b040e93 nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0xa2de723b nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0xa4b1310c nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xb57cff23 nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xdc6847b1 nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0xebb11043 nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0xf95dd921 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0xfd1cebdf nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x09320693 nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0x0ca1dcc6 nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0x14ceed95 nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0x1d4b328f nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0x1fb0818e nci_get_conn_info_by_id -EXPORT_SYMBOL net/nfc/nci/nci 0x243be79e nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x377b334a nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x4857dc32 nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x489d7c67 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0x50548def nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x5965d2b8 nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0x60c8be8c nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0x653d741d nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x6855acd5 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0x6cdb7523 nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0x6f767ba4 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x79ddf2d7 nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x9c6626ff nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0xa790bc0d nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0xb07541c3 nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0xb909a8f5 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xc21eaa06 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0xca77e71a nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0xd73e250d nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0xd749a280 nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xda4b8c91 nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xf6bc4de1 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0xfe4ad00b nci_send_cmd -EXPORT_SYMBOL net/nfc/nfc 0x012b8ec4 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0x0265c2ba nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0x0bb55b20 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x0ef2aeae nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0x10570dd7 nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0x1e3d962b nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0x2277a72b nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0x243a3164 nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x25c57b0a nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0x31027241 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0x44a95bb5 nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0x85ad4193 nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0x872ce2d0 nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0xad126892 nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0xb2252d5a nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0xb877bd2c __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0xb9582068 nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0xc500acf0 nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0xc9a3618b nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xcb04a210 nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xcb086818 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0xdfbbc41f nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0xe4df8129 nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0xf88ec9cc nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x1d501b10 nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x20222090 nfc_digital_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x21197e20 nfc_digital_free_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xa1634eb9 nfc_digital_register_device -EXPORT_SYMBOL net/phonet/phonet 0x01c4e78b phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0x230f67e3 pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0x2b3158c8 pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0x40b2f1d7 phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0x8a66617e pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0xbb57ad84 phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0xceafadbe pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0xea6eaa5a phonet_stream_ops -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x0cebc7c6 rxrpc_kernel_get_abort_code -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x0d240dca key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x103352ca rxrpc_kernel_free_skb -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1dac448e rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x345690f3 rxrpc_kernel_accept_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4aec65b3 rxrpc_kernel_get_error_number -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x629c92bc rxrpc_kernel_is_data_last -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x7d570d3f rxrpc_kernel_intercept_rx_messages -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x845bd52c rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xa268d4c5 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xa91bca3a rxrpc_kernel_reject_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc18bde5f rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc6f8dc0c rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd0c532b5 rxrpc_kernel_data_delivered -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf34e445b rxrpc_get_null_key -EXPORT_SYMBOL net/sctp/sctp 0x2b04b76b sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x3ede14de gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x439a2e18 gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x55bceee3 gss_mech_put -EXPORT_SYMBOL net/sunrpc/sunrpc 0xb16d35bc svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0xb45a61c0 xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0xbb8249c7 xdr_truncate_encode -EXPORT_SYMBOL net/wimax/wimax 0x09132ce1 wimax_rfkill -EXPORT_SYMBOL net/wimax/wimax 0x379bf4be wimax_reset -EXPORT_SYMBOL net/wireless/cfg80211 0x00536f61 cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0x0398a038 cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x0619366d cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x070fadcc cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x07356db9 cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x11b3f6b6 cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0x1458aef8 cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x14819d23 cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0x150bce6a cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x15b526a3 cfg80211_roamed_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x15c5ff5c cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x18fc506d cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0x1c7a7160 cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x1c9a73cb cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x1cec3250 cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0x21f0aebc cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x22950cab cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x25b52984 cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0x295004e5 cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x2bace103 wiphy_rfkill_set_hw_state -EXPORT_SYMBOL net/wireless/cfg80211 0x3092f1b5 cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x31ad1bf8 cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0x373f5777 cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x37af700c wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x3af269de wiphy_rfkill_stop_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x40b8274c __ieee80211_get_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x41aec85d ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x42132dcb cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x430e586f cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x4696d015 cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0x478b3baa wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x4d55dcc9 cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x4e5fdc4f cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x527956d6 __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x56c9d895 cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0x56f1842e cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0x591431bd __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x5b805e59 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x62ff0732 ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0x6876acef cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6b63724c ieee80211_data_to_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0x712293d8 cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0x7123431b wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0x74e9be46 cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x79937682 cfg80211_report_obss_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7f2d65b4 regulatory_set_wiphy_regd_sync_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x8030d1bf cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x809961e4 cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0x82ec9de0 cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0x83206246 cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x8839ae52 cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x8f5bcd5d cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x91d7a142 ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x9a977d14 regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0xa1425906 ieee80211_channel_to_frequency -EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xa1ffc00c cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0xa74dfa86 cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0xa984b5c0 wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0xa9ab1126 cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xadfe489e __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xb48e7012 cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0xb6006bce cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xbbc5ed4a cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0xbe53e429 ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0xc2dd6c1d cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xc34e30ae cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0xc410d67b cfg80211_connect_result -EXPORT_SYMBOL net/wireless/cfg80211 0xc6106ed2 cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0xc6e2d324 wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xcac2b1a4 wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0xce4fd311 regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0xd18a6f63 cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0xd4abfd34 cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0xd50b0a22 ieee80211_ie_split -EXPORT_SYMBOL net/wireless/cfg80211 0xd6297128 cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0xd8056378 cfg80211_rx_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xd81b2a4f cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdba819dc cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0xe4d9bdec cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xeacf5fe8 cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0xec11a514 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xf1dd8469 cfg80211_sched_scan_stopped_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0xf50a168b freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0xfa6a44f0 ieee80211_data_from_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0xfc8aaa5d cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie -EXPORT_SYMBOL net/wireless/lib80211 0x36f8b4df lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0x44f1aa9d lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x83063d82 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0x9e348935 lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xbd01aac5 lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0xe7db7306 lib80211_unregister_crypto_ops -EXPORT_SYMBOL sound/ac97_bus 0x5730628a ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xc872bb7b snd_mixer_oss_ioctl_card -EXPORT_SYMBOL sound/core/seq/snd-seq 0x19f3ded8 snd_seq_event_port_attach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl -EXPORT_SYMBOL sound/core/seq/snd-seq 0x302e1d08 snd_seq_kernel_client_enqueue_blocking -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x5bcd82d5 snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xc990815c snd_seq_kernel_client_write_poll -EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x47820d55 snd_seq_device_new -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x072d978b snd_midi_event_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x13a17752 snd_midi_event_reset_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x2eed26bf snd_midi_event_no_status -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x4d5ca523 snd_midi_event_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x592f6e9b snd_midi_event_free -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xd7c7afcc snd_midi_event_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe60fb228 snd_midi_event_reset_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xecbde43c snd_midi_event_encode_byte -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x2ee774b7 snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x026aa012 snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0x04c44fed snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0x0c382d42 _snd_ctl_add_slave -EXPORT_SYMBOL sound/core/snd 0x0d466193 snd_cards -EXPORT_SYMBOL sound/core/snd 0x0ecf1a5c snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0x11a914a4 snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0x1262a930 snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program -EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer -EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x1b0b57a7 snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0x1d447263 snd_component_add -EXPORT_SYMBOL sound/core/snd 0x20e3f811 snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x29b072d3 snd_ctl_register_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x2a1d4a8d snd_device_register -EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0x30465795 snd_card_free -EXPORT_SYMBOL sound/core/snd 0x30e02eca snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio -EXPORT_SYMBOL sound/core/snd 0x34bb4aa2 snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x3c9b9576 snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0x4846c2e7 snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x4da34a22 snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0x533a6730 snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0x62f36732 snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0x6739dde3 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable -EXPORT_SYMBOL sound/core/snd 0x729cbe24 snd_seq_root -EXPORT_SYMBOL sound/core/snd 0x7955a36c snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0x821d3b1e snd_card_new -EXPORT_SYMBOL sound/core/snd 0x8338585a snd_jack_report -EXPORT_SYMBOL sound/core/snd 0x86947983 snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0x871994e3 snd_device_new -EXPORT_SYMBOL sound/core/snd 0x87f9a617 snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0x8ba6e1bc snd_info_register -EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x938f3d4b snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0x94eee791 snd_card_register -EXPORT_SYMBOL sound/core/snd 0x9cd20f60 snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0x9f315ba9 snd_device_free -EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id -EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb43c0195 snd_ctl_unregister_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0xb90a01e5 snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0xb9465694 snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0xba826197 snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0xba92d02f snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0xbc809dee snd_jack_new -EXPORT_SYMBOL sound/core/snd 0xbd17751f snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0xc648a344 snd_register_device -EXPORT_SYMBOL sound/core/snd 0xd48279bf snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0xe14c2a3c snd_power_wait -EXPORT_SYMBOL sound/core/snd 0xe948e739 snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0xf3c88f7f snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0xf7f97596 snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0xfdd9adb9 snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0xfe2b4090 snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio -EXPORT_SYMBOL sound/core/snd-hwdep 0x431fbf70 snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-pcm 0x014fa99a snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any -EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x065fc6e9 snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0x06b310c9 snd_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x146bb3ed snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x158f833e snd_pcm_mmap_data -EXPORT_SYMBOL sound/core/snd-pcm 0x1ac3f70d snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x212ff174 snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0x22204b62 snd_pcm_notify -EXPORT_SYMBOL sound/core/snd-pcm 0x222acbc9 snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0x294e7c6b snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x356c0f14 snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x38922c30 snd_pcm_limit_hw_rates -EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x4508274b snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0x46804519 snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0x469d1a05 snd_pcm_lib_read -EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x51358b6c snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL sound/core/snd-pcm 0x5348b21b snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL sound/core/snd-pcm 0x55086b73 _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x5898dcba snd_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x5d048f6e snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0x5ddf8594 snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x5e623837 snd_pcm_suspend -EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL sound/core/snd-pcm 0x66f0b9c8 snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0x674b2502 snd_pcm_new_internal -EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width -EXPORT_SYMBOL sound/core/snd-pcm 0x6b0a04eb snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x759be45c snd_pcm_lib_writev -EXPORT_SYMBOL sound/core/snd-pcm 0x76cb373e snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0x78fbfdfc snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0x80cbb66b snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x8a0b305b snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0x8fe1f0ac snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0x97df1a4a snd_dma_alloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xa04b2607 snd_pcm_lib_write -EXPORT_SYMBOL sound/core/snd-pcm 0xa125b32d snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xb12e316a snd_pcm_hw_rule_noresample -EXPORT_SYMBOL sound/core/snd-pcm 0xb16bfbcf snd_pcm_lib_mmap_iomem -EXPORT_SYMBOL sound/core/snd-pcm 0xb57a36c2 snd_pcm_lib_readv -EXPORT_SYMBOL sound/core/snd-pcm 0xb6a3b8a2 snd_pcm_lib_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xbf0ff023 snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xbf7f9199 snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0xc239d808 snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0xc8ec12e3 snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0xd0924705 snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xdd828cc1 snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0xe3e9e89a snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xeec1991c snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xf10694b2 snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xf87b963e snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0xfb9dadb3 snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x084af4a4 snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x09940a13 __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x0e1c0758 snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1028d4a0 snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0x3ac828f1 snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x3b9191a6 snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0x41c783ce snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0x41db7381 snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x43afe86b snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4943b578 snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x5d7448da __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x685b0abe snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0x83578482 snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0xa6498da8 snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0xbc878d19 snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd2980f2f snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd96468f9 snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe3b5e967 snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe43c8c08 snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-timer 0x19db4255 snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0x33050598 snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0x36dedbcf snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0x38ce131a snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0x3a092348 snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0x71702855 snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0x773464b3 snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0xa978da31 snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0xbed36fed snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0xcbe24634 snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0xd80beaa6 snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0xdc0fb9a4 snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0xe56b39f5 snd_timer_global_register -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x1b4b6fbc snd_mpu401_uart_new -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x28d4c62e snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x3732e9c6 snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x5e2ed27f snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x773fe8bb snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xadf97a0e snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xaeb79379 snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd1cca2e8 snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd8ea1df5 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe0ade145 snd_opl3_reset -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x0d7d09a6 snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x24c53221 snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x679ac996 snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x785905fe snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7affb01e snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7e6c9396 snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x98584b0e snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb82c55a2 snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xbc58a20b snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x004baa5e iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x03417aca snd_fw_async_midi_port_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0bb521e2 fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x14d5942e amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x15145a1f fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1cf7b958 fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2621316f amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x26d3a1d5 fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x295a16c5 fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2edd2b72 amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2feeb9f2 amdtp_stream_start -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3bf8e89c iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3dfc93a0 avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x42da0989 amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4887d3e0 amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4bc8b623 cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x591e5ac9 amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5fbd87b9 cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x761620d5 amdtp_stream_stop -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x79c8541b cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7b0d7cd3 cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7e64c60d fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x81002c90 snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x89b9a7fc amdtp_stream_pcm_pointer -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x98782259 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa53810dc cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaac259b6 fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaefe61a1 amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdee28630 snd_fw_async_midi_port_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xef881df7 avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf475467b amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfd29e476 avc_general_get_sig_fmt -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x3d77df9d snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x9c1d3821 snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x01253b21 snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x69c272a2 snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x909c4a11 snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x96c351e1 snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xabff02d0 snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd18c73c4 snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xdb7c3628 snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xee76ce5a snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x0ae49873 snd_ak4117_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x84a0b046 snd_ak4117_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x88102562 snd_ak4117_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xf2412d90 snd_ak4117_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xfe37b68f snd_ak4117_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xff8b3a3e snd_ak4117_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x098d886e snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x27dd51b9 snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xb792679d snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xf131e986 snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x595173b8 snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xa7db60c7 snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x0df339e3 snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x5d380a44 snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x7a74c17a snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x9706bf6c snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xa238e37e snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xec53db15 snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-i2c 0x1d8c83da snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x2fb070f8 snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0x7bd97c43 snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x9dcce7fa snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0xd3708912 snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xd5bdb0ea snd_i2c_bus_create -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x052586d7 snd_sbdsp_command -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x3ac3fb66 snd_sbmixer_resume -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x549ad556 snd_sbmixer_read -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x71b3194e snd_sbmixer_suspend -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x7b668743 snd_sbdsp_create -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x85546db7 snd_sbmixer_write -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x92f5e5bb snd_sbmixer_add_ctl -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x9450dd9e snd_sbdsp_reset -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa76f3e6a snd_sbmixer_new -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xaf37e340 snd_sbdsp_get_byte -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0d520cec snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x172f7884 snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x18036bc2 snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x40c3c4de snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x52209ce0 snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x54cda4aa snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5a61dddb snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x68d893f5 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x69cd9f31 snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x78b15184 snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xafe0f1d8 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc791c89d snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd7fd6c33 snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd825035a snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe50671fa snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf473a116 snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf49ad816 snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1561ed95 snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x3a7cc3b3 snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4bc0f25c snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x625348f2 snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x783f7962 snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x984ed366 snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xab6f630b snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xceeb1028 snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xcf7952aa snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xc2161fda snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xec8a168b snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xf4101063 snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x011a74a1 oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x15016542 oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x15e80b6e oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x24103bc5 oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x60ad173a oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x66a9c622 oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x68a17b49 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x77f133e9 oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x92cd38e3 oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9400fd3e oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9f366ff5 oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xaa3d7bb7 oxygen_pci_remove -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xac7ff16b oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xba76540c oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbc6c53f3 oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc7bb78f0 oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd1ab6121 oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xde9158c7 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe29404fd oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf90a70a1 oxygen_write32_masked -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x26908c7b snd_trident_stop_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x2e6cb686 snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x336f10d1 snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x42648024 snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xddaf7deb snd_trident_write_voice_regs -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x37fb9e2c tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x9b920675 tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/snd-soc-core 0x9accfeb9 snd_soc_alloc_ac97_codec -EXPORT_SYMBOL sound/soundcore 0x11076d33 register_sound_midi -EXPORT_SYMBOL sound/soundcore 0x56d72465 register_sound_special_device -EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x809344ca register_sound_special -EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0xb0e02789 sound_class -EXPORT_SYMBOL sound/soundcore 0xbfc1ad07 register_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi -EXPORT_SYMBOL sound/soundcore 0xffec905d register_sound_mixer -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x06137d65 snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x34917faf snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x3b7ae087 snd_emux_free -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x52a2762e snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x6f60fb81 snd_emux_new -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x85c4fc72 snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/snd-util-mem 0x683c9cdc __snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x7260b5a6 snd_util_mem_avail -EXPORT_SYMBOL sound/synth/snd-util-mem 0x746e9872 snd_util_memhdr_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x760f84c6 snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0x990194bd snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x9f0f4a34 snd_util_memhdr_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0xc74d4d4c __snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0xcc968515 __snd_util_memblk_new -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x689bd5b3 snd_usbmidi_create -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect -EXPORT_SYMBOL vmlinux 0x002a9c37 blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0x002e3733 sg_miter_stop -EXPORT_SYMBOL vmlinux 0x0043bb23 phy_start_aneg -EXPORT_SYMBOL vmlinux 0x004e3def vm_mmap -EXPORT_SYMBOL vmlinux 0x005707c3 jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0x005f128a eth_gro_complete -EXPORT_SYMBOL vmlinux 0x0070cd1f queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0x0085e1f1 __do_once_done -EXPORT_SYMBOL vmlinux 0x00baa12d bio_reset -EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00f7ebf9 dev_change_flags -EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve -EXPORT_SYMBOL vmlinux 0x010f6bc0 cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr -EXPORT_SYMBOL vmlinux 0x0114950f tcp_check_req -EXPORT_SYMBOL vmlinux 0x01216bfa blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0x012782c4 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x012a97fc xor_altivec_4 -EXPORT_SYMBOL vmlinux 0x01498490 kill_pid -EXPORT_SYMBOL vmlinux 0x015b098a dev_set_group -EXPORT_SYMBOL vmlinux 0x016952d1 xfrm_state_insert -EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer -EXPORT_SYMBOL vmlinux 0x018a0612 tty_mutex -EXPORT_SYMBOL vmlinux 0x0193ddfc rt6_lookup -EXPORT_SYMBOL vmlinux 0x01a76b72 md_cluster_mod -EXPORT_SYMBOL vmlinux 0x01b972ff blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0x01be5535 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0x01c8a63e vfs_write -EXPORT_SYMBOL vmlinux 0x01d86f31 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0x01e97368 bio_clone_bioset -EXPORT_SYMBOL vmlinux 0x0245bef2 bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0x024a4d2f __destroy_inode -EXPORT_SYMBOL vmlinux 0x024bf827 radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x026d2de5 simple_dir_operations -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table -EXPORT_SYMBOL vmlinux 0x02b24e47 set_create_files_as -EXPORT_SYMBOL vmlinux 0x02e09da4 neigh_ifdown -EXPORT_SYMBOL vmlinux 0x02e9089d xfrm6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string -EXPORT_SYMBOL vmlinux 0x02eda3ba netpoll_print_options -EXPORT_SYMBOL vmlinux 0x02f19494 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x0301cb03 __pagevec_lru_add -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x0338fe3d nf_register_sockopt -EXPORT_SYMBOL vmlinux 0x0339cdcb twl6040_set_bits -EXPORT_SYMBOL vmlinux 0x033ff454 do_truncate -EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x035c51dc md_update_sb -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x0382ee52 md_integrity_register -EXPORT_SYMBOL vmlinux 0x0395af1e pci_set_mwi -EXPORT_SYMBOL vmlinux 0x03a9bfa3 bio_put -EXPORT_SYMBOL vmlinux 0x03bae28b generic_file_open -EXPORT_SYMBOL vmlinux 0x03c0ddc0 of_match_device -EXPORT_SYMBOL vmlinux 0x03e3b264 dev_change_carrier -EXPORT_SYMBOL vmlinux 0x03f65fde of_count_phandle_with_args -EXPORT_SYMBOL vmlinux 0x03f6a737 seq_release_private -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x04074f48 ioremap -EXPORT_SYMBOL vmlinux 0x041023aa acl_by_type -EXPORT_SYMBOL vmlinux 0x04202217 kern_unmount -EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg -EXPORT_SYMBOL vmlinux 0x0425501f compat_nf_setsockopt -EXPORT_SYMBOL vmlinux 0x04328e85 tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x04473c2e simple_rmdir -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display -EXPORT_SYMBOL vmlinux 0x04905a0f devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x04c34bad padata_unregister_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol -EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize -EXPORT_SYMBOL vmlinux 0x04f586eb md_write_start -EXPORT_SYMBOL vmlinux 0x05084d7e skb_split -EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x05259021 netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x0530dede _raw_write_trylock -EXPORT_SYMBOL vmlinux 0x0544447f bio_add_pc_page -EXPORT_SYMBOL vmlinux 0x0553d45a noop_llseek -EXPORT_SYMBOL vmlinux 0x055c8559 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x056061bd search_binary_handler -EXPORT_SYMBOL vmlinux 0x056c35cb xfrm_input -EXPORT_SYMBOL vmlinux 0x056d40ac input_open_device -EXPORT_SYMBOL vmlinux 0x0571482b of_mdio_parse_addr -EXPORT_SYMBOL vmlinux 0x0572738e page_cache_prev_hole -EXPORT_SYMBOL vmlinux 0x05922ff7 empty_aops -EXPORT_SYMBOL vmlinux 0x05940717 key_unlink -EXPORT_SYMBOL vmlinux 0x05a514a1 _insl_ns -EXPORT_SYMBOL vmlinux 0x05ad4bfb fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0x05c448ab compat_sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x05d38ebc param_get_int -EXPORT_SYMBOL vmlinux 0x05e00746 update_region -EXPORT_SYMBOL vmlinux 0x05f9b552 scsi_device_set_state -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x0638e3f4 tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x063aaa1e kdb_current_task -EXPORT_SYMBOL vmlinux 0x065e3201 flush_dcache_page -EXPORT_SYMBOL vmlinux 0x06686d9e local_flush_tlb_mm -EXPORT_SYMBOL vmlinux 0x066bc2d2 pci_reenable_device -EXPORT_SYMBOL vmlinux 0x067ac8a6 gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx -EXPORT_SYMBOL vmlinux 0x06854fd7 d_find_alias -EXPORT_SYMBOL vmlinux 0x06bbf5c4 security_path_link -EXPORT_SYMBOL vmlinux 0x06c49a84 jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x06d17358 pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0x06eae873 udp_del_offload -EXPORT_SYMBOL vmlinux 0x06f19bc4 filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x06f98985 __i2c_transfer -EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn -EXPORT_SYMBOL vmlinux 0x07072514 dquot_get_state -EXPORT_SYMBOL vmlinux 0x0711e793 swiotlb_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0x07171f8c fsl_ifc_ctrl_dev -EXPORT_SYMBOL vmlinux 0x071adabe xfrm6_rcv_cb -EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 -EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x07485537 abx500_register_ops -EXPORT_SYMBOL vmlinux 0x074e9213 down_killable -EXPORT_SYMBOL vmlinux 0x0768a2ed textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x0790240d jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07a9ef84 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x07b9909d devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07e6da9f dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0x07fde336 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x07fede07 eth_change_mtu -EXPORT_SYMBOL vmlinux 0x08121962 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0x08198ea0 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x083b3223 dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x08618d67 inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x086d8cdd irq_stat -EXPORT_SYMBOL vmlinux 0x08720432 sock_from_file -EXPORT_SYMBOL vmlinux 0x08894ec6 __sb_end_write -EXPORT_SYMBOL vmlinux 0x08a4793d nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0x08a7b16b netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0x08bf6bd0 blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0x08efb998 del_gendisk -EXPORT_SYMBOL vmlinux 0x091896c8 nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0x091a3e4b napi_gro_frags -EXPORT_SYMBOL vmlinux 0x09317d12 add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0x0934a8cd generic_end_io_acct -EXPORT_SYMBOL vmlinux 0x094fda26 override_creds -EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key -EXPORT_SYMBOL vmlinux 0x09673ede simple_write_begin -EXPORT_SYMBOL vmlinux 0x09828f0f page_readlink -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x09a1e0fd dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x09ab55d6 __get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x09bbbf73 devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x09c67afb flex_array_get -EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09dd0f1a migrate_page_copy -EXPORT_SYMBOL vmlinux 0x09e65cc6 mmc_power_restore_host -EXPORT_SYMBOL vmlinux 0x0a0acc54 put_disk -EXPORT_SYMBOL vmlinux 0x0a1fc862 d_splice_alias -EXPORT_SYMBOL vmlinux 0x0a245987 i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class -EXPORT_SYMBOL vmlinux 0x0a2eb33d lwtunnel_input -EXPORT_SYMBOL vmlinux 0x0a3c6541 bdevname -EXPORT_SYMBOL vmlinux 0x0a3f7d2e forget_cached_acl -EXPORT_SYMBOL vmlinux 0x0a441e42 __genl_register_family -EXPORT_SYMBOL vmlinux 0x0a53cbdf clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x0a57863e cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x0a5f80f3 ip_defrag -EXPORT_SYMBOL vmlinux 0x0a6609e2 blk_mq_start_request -EXPORT_SYMBOL vmlinux 0x0a683443 of_find_property -EXPORT_SYMBOL vmlinux 0x0a7b2df9 ns_capable -EXPORT_SYMBOL vmlinux 0x0a7c91f1 mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0x0a836865 module_layout -EXPORT_SYMBOL vmlinux 0x0a839e6d pci_release_region -EXPORT_SYMBOL vmlinux 0x0a839fd5 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0x0a8ce790 dentry_open -EXPORT_SYMBOL vmlinux 0x0a925e4e pci_iounmap -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0ad98595 crypto_sha1_update -EXPORT_SYMBOL vmlinux 0x0ae539b6 i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0x0ae66dc3 udp_ioctl -EXPORT_SYMBOL vmlinux 0x0af52a5e max8998_bulk_read -EXPORT_SYMBOL vmlinux 0x0b084145 mmc_put_card -EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b23d752 agp_generic_type_to_mask_type -EXPORT_SYMBOL vmlinux 0x0b32ebd0 kernel_getsockopt -EXPORT_SYMBOL vmlinux 0x0b38f000 serio_rescan -EXPORT_SYMBOL vmlinux 0x0b38f522 passthru_features_check -EXPORT_SYMBOL vmlinux 0x0b43ea7f irq_to_desc -EXPORT_SYMBOL vmlinux 0x0b44c13f textsearch_destroy -EXPORT_SYMBOL vmlinux 0x0b462749 tcp_splice_read -EXPORT_SYMBOL vmlinux 0x0b5477dd xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b78cac9 mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0x0b9a8e53 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x0bb91d4e cfb_fillrect -EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bc5235c security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0x0bd8a346 vga_con -EXPORT_SYMBOL vmlinux 0x0be6fb55 give_up_console -EXPORT_SYMBOL vmlinux 0x0c21d019 flush_delayed_work -EXPORT_SYMBOL vmlinux 0x0c35b9fa xfrm_find_acq -EXPORT_SYMBOL vmlinux 0x0c42d7cf find_get_pages_tag -EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat -EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features -EXPORT_SYMBOL vmlinux 0x0c5cce97 nvm_get_blk_unlocked -EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -EXPORT_SYMBOL vmlinux 0x0c6f5858 __skb_get_hash_flowi6 -EXPORT_SYMBOL vmlinux 0x0c9aec6a phy_drivers_register -EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0x0caef359 mmc_stop_bkops -EXPORT_SYMBOL vmlinux 0x0cb12ff0 iunique -EXPORT_SYMBOL vmlinux 0x0cbaa94c get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0x0ccc38e7 mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0x0d0e3679 jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x0d10ea14 ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0x0d1876c9 nf_hook_slow -EXPORT_SYMBOL vmlinux 0x0d303571 serio_reconnect -EXPORT_SYMBOL vmlinux 0x0d46480c mac_find_mode -EXPORT_SYMBOL vmlinux 0x0d4f30bd pagevec_lookup_tag -EXPORT_SYMBOL vmlinux 0x0d50df1b iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d5f3bdc fbcon_set_tileops -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d6b7c35 mmc_remove_host -EXPORT_SYMBOL vmlinux 0x0d6c963c copy_from_user -EXPORT_SYMBOL vmlinux 0x0d7b8aaf pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0x0d85b7ca seq_vprintf -EXPORT_SYMBOL vmlinux 0x0d9d46e6 of_get_next_child -EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft -EXPORT_SYMBOL vmlinux 0x0da4787b d_make_root -EXPORT_SYMBOL vmlinux 0x0dac644e vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0x0dc0ace0 idr_find_slowpath -EXPORT_SYMBOL vmlinux 0x0dcc4361 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x0dd582bc pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0x0e068279 sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x0e498ab3 input_set_keycode -EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec -EXPORT_SYMBOL vmlinux 0x0e6dec39 inode_set_flags -EXPORT_SYMBOL vmlinux 0x0e713738 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x0e8f30f6 _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0x0ea1873a mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0x0ea3cad9 vfs_unlink -EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups -EXPORT_SYMBOL vmlinux 0x0f017b48 path_noexec -EXPORT_SYMBOL vmlinux 0x0f134899 skb_make_writable -EXPORT_SYMBOL vmlinux 0x0f170437 devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x0f23fe2e fsnotify_put_mark -EXPORT_SYMBOL vmlinux 0x0f2647a3 fbcon_rotate_ccw -EXPORT_SYMBOL vmlinux 0x0f308595 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec -EXPORT_SYMBOL vmlinux 0x0f54b0c5 blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0x0f59c0d3 devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0x0f5faa7e wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x0f69176b sock_no_poll -EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size -EXPORT_SYMBOL vmlinux 0x0f75e0f5 __kfree_skb -EXPORT_SYMBOL vmlinux 0x0f766e32 set_blocksize -EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x0f81278c zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0x0f921759 rwsem_wake -EXPORT_SYMBOL vmlinux 0x0fa85cbb skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fc215a4 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x0fd7ec15 abx500_get_register_page_interruptible -EXPORT_SYMBOL vmlinux 0x0fe2ef22 poll_freewait -EXPORT_SYMBOL vmlinux 0x0fea413c kobject_del -EXPORT_SYMBOL vmlinux 0x0fedd8c2 of_gpio_simple_xlate -EXPORT_SYMBOL vmlinux 0x101618f5 read_cache_pages -EXPORT_SYMBOL vmlinux 0x102922c0 gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x103871ee compat_ip_getsockopt -EXPORT_SYMBOL vmlinux 0x103d8dc5 netif_carrier_on -EXPORT_SYMBOL vmlinux 0x106541e7 agp_generic_alloc_user -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x10950ee1 radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x10b24c94 mmc_can_erase -EXPORT_SYMBOL vmlinux 0x10bbce67 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x10c7f436 clk_add_alias -EXPORT_SYMBOL vmlinux 0x10ccfdd7 vm_insert_page -EXPORT_SYMBOL vmlinux 0x10d0d6c4 security_path_truncate -EXPORT_SYMBOL vmlinux 0x10e686b9 sget_userns -EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu -EXPORT_SYMBOL vmlinux 0x11087bd9 inode_add_rsv_space -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x110c4e59 udp_add_offload -EXPORT_SYMBOL vmlinux 0x110e30d4 mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0x113ddb02 nvm_unregister_mgr -EXPORT_SYMBOL vmlinux 0x11465676 i2c_get_adapter -EXPORT_SYMBOL vmlinux 0x11603ad7 padata_remove_cpu -EXPORT_SYMBOL vmlinux 0x11623a60 agp_generic_mask_memory -EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x1170bd8c nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0x117c5a09 netif_carrier_off -EXPORT_SYMBOL vmlinux 0x1182d83a cpuidle_disable -EXPORT_SYMBOL vmlinux 0x11939301 md_unregister_thread -EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned -EXPORT_SYMBOL vmlinux 0x11b43641 seq_putc -EXPORT_SYMBOL vmlinux 0x11d4b492 make_kgid -EXPORT_SYMBOL vmlinux 0x11d94ede ppp_dev_name -EXPORT_SYMBOL vmlinux 0x11e655d8 simple_empty -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin -EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const -EXPORT_SYMBOL vmlinux 0x1239ed8a __put_cred -EXPORT_SYMBOL vmlinux 0x123d75a6 request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x123f82f3 getrawmonotonic64 -EXPORT_SYMBOL vmlinux 0x1245f5df mmc_register_driver -EXPORT_SYMBOL vmlinux 0x125b26aa dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0x12815847 of_device_is_big_endian -EXPORT_SYMBOL vmlinux 0x1286dae6 inet6_offloads -EXPORT_SYMBOL vmlinux 0x128e32c2 prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0x1293e88c bdi_register_owner -EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range -EXPORT_SYMBOL vmlinux 0x12aa54cb loop_register_transfer -EXPORT_SYMBOL vmlinux 0x12cba7db devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0x12cdb65b seq_dentry -EXPORT_SYMBOL vmlinux 0x12cfe45b ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x12dfeb12 vprintk_emit -EXPORT_SYMBOL vmlinux 0x12e8d120 xfrm6_prepare_output -EXPORT_SYMBOL vmlinux 0x13053759 sys_imageblit -EXPORT_SYMBOL vmlinux 0x1319449d secure_modules -EXPORT_SYMBOL vmlinux 0x13215eac mem_section -EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x13307fde vsscanf -EXPORT_SYMBOL vmlinux 0x1345f9d5 blk_queue_free_tags -EXPORT_SYMBOL vmlinux 0x13547ab8 finish_open -EXPORT_SYMBOL vmlinux 0x13613d59 __pagevec_release -EXPORT_SYMBOL vmlinux 0x136ddf00 do_SAK -EXPORT_SYMBOL vmlinux 0x137fdc0f ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0x13a49be3 paca -EXPORT_SYMBOL vmlinux 0x13bc5fbe inet_stream_connect -EXPORT_SYMBOL vmlinux 0x13c1c694 tcp_init_sock -EXPORT_SYMBOL vmlinux 0x13c93494 max8925_bulk_read -EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13ecbf3c input_release_device -EXPORT_SYMBOL vmlinux 0x13f70ea0 udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0x13ff80b6 dev_uc_init -EXPORT_SYMBOL vmlinux 0x1413e317 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0x1419c065 netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0x14241049 bdi_init -EXPORT_SYMBOL vmlinux 0x1467f919 set_binfmt -EXPORT_SYMBOL vmlinux 0x146aaac1 dev_mc_add -EXPORT_SYMBOL vmlinux 0x14bc3be3 tcp_conn_request -EXPORT_SYMBOL vmlinux 0x14bf261d swiotlb_map_sg -EXPORT_SYMBOL vmlinux 0x14c640a3 fb_get_mode -EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x14e97244 mmc_set_blockcount -EXPORT_SYMBOL vmlinux 0x150a7a95 tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0x1515bb92 ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0x15209a52 phy_driver_register -EXPORT_SYMBOL vmlinux 0x152c6cb9 free_buffer_head -EXPORT_SYMBOL vmlinux 0x1533137e inet_getname -EXPORT_SYMBOL vmlinux 0x15360c99 kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x15450fef sock_i_ino -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x15598d96 posix_acl_fix_xattr_userns -EXPORT_SYMBOL vmlinux 0x155d35b2 i2c_del_driver -EXPORT_SYMBOL vmlinux 0x156515c5 fb_class -EXPORT_SYMBOL vmlinux 0x15662358 jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0x156f0e1d sk_dst_check -EXPORT_SYMBOL vmlinux 0x159bd01c skb_free_datagram -EXPORT_SYMBOL vmlinux 0x15a4e826 __dquot_transfer -EXPORT_SYMBOL vmlinux 0x15a90b1b phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15c302e1 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0x15cdc4bd __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0x15d3fd60 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x15dac9f2 devm_gpiod_put_array -EXPORT_SYMBOL vmlinux 0x15db0c05 locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0x15dd0dc4 agp_enable -EXPORT_SYMBOL vmlinux 0x15f81e1b __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x15fdf15e netlink_ack -EXPORT_SYMBOL vmlinux 0x1614cd9b jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0x161b7b1d dqput -EXPORT_SYMBOL vmlinux 0x163a2897 disk_stack_limits -EXPORT_SYMBOL vmlinux 0x16459801 bitmap_startwrite -EXPORT_SYMBOL vmlinux 0x1653b5d1 uart_remove_one_port -EXPORT_SYMBOL vmlinux 0x166b1048 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0x1670c011 unregister_quota_format -EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump -EXPORT_SYMBOL vmlinux 0x16a85f4b __frontswap_store -EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16e7e70c inet_frags_fini -EXPORT_SYMBOL vmlinux 0x17113515 generic_start_io_acct -EXPORT_SYMBOL vmlinux 0x1743414f __debugger_fault_handler -EXPORT_SYMBOL vmlinux 0x175f980b of_get_ibm_chip_id -EXPORT_SYMBOL vmlinux 0x17648396 dev_base_lock -EXPORT_SYMBOL vmlinux 0x177613d5 rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x1793f685 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0x17a0079c agp_generic_insert_memory -EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator -EXPORT_SYMBOL vmlinux 0x17be29b2 qdisc_list_add -EXPORT_SYMBOL vmlinux 0x17c33ab2 tcp_ioctl -EXPORT_SYMBOL vmlinux 0x17e28473 fsl_upm_run_pattern -EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip -EXPORT_SYMBOL vmlinux 0x17fc8739 eth_header_cache -EXPORT_SYMBOL vmlinux 0x180520fa clear_user_page -EXPORT_SYMBOL vmlinux 0x18159d83 __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0x1816f363 of_get_min_tck -EXPORT_SYMBOL vmlinux 0x181fc037 nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken -EXPORT_SYMBOL vmlinux 0x183e1cee inet6_add_protocol -EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask -EXPORT_SYMBOL vmlinux 0x1857aa39 proc_dointvec -EXPORT_SYMBOL vmlinux 0x1861b8e7 tcf_hash_insert -EXPORT_SYMBOL vmlinux 0x18662e24 blk_end_request_cur -EXPORT_SYMBOL vmlinux 0x1870a079 sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x188a0c72 tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc -EXPORT_SYMBOL vmlinux 0x188faa27 dentry_update_name_case -EXPORT_SYMBOL vmlinux 0x18959eeb pci_dev_driver -EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x189e2ba4 security_file_permission -EXPORT_SYMBOL vmlinux 0x18a0da55 swiotlb_map_sg_attrs -EXPORT_SYMBOL vmlinux 0x18b33c6c thermal_cdev_update -EXPORT_SYMBOL vmlinux 0x18b842c8 ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0x18bccfef ip_route_input_noref -EXPORT_SYMBOL vmlinux 0x18d14521 kernel_sock_ioctl -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18ea3cfb iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0x18f828a0 dm_put_table_device -EXPORT_SYMBOL vmlinux 0x18fb8681 default_file_splice_read -EXPORT_SYMBOL vmlinux 0x19072f58 md_cluster_ops -EXPORT_SYMBOL vmlinux 0x19171e6f ps2_sendbyte -EXPORT_SYMBOL vmlinux 0x197ff0a5 unlock_page -EXPORT_SYMBOL vmlinux 0x199ec4fb arch_spin_unlock_wait -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19a31860 __alloc_skb -EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x19ba1dc7 fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x19bba666 audit_log -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19be354d km_report -EXPORT_SYMBOL vmlinux 0x19ccdee7 tcp_proto_cgroup -EXPORT_SYMBOL vmlinux 0x19d8b41a inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x19ef47c0 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0x1a024c58 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0x1a148d9f neigh_event_ns -EXPORT_SYMBOL vmlinux 0x1a1eb5b7 copy_page_from_iter -EXPORT_SYMBOL vmlinux 0x1a22e069 napi_disable -EXPORT_SYMBOL vmlinux 0x1a246066 sys_copyarea -EXPORT_SYMBOL vmlinux 0x1a3b84a5 unregister_nls -EXPORT_SYMBOL vmlinux 0x1a4b9c61 bio_add_page -EXPORT_SYMBOL vmlinux 0x1a7f3f23 inet_stream_ops -EXPORT_SYMBOL vmlinux 0x1aa1f57b nf_log_unset -EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1ac98309 skb_queue_purge -EXPORT_SYMBOL vmlinux 0x1aece2b5 inet6_release -EXPORT_SYMBOL vmlinux 0x1af077d3 devfreq_interval_update -EXPORT_SYMBOL vmlinux 0x1af62a99 panic_notifier_list -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b03af12 tty_unregister_device -EXPORT_SYMBOL vmlinux 0x1b132009 rename_lock -EXPORT_SYMBOL vmlinux 0x1b1550c2 devm_get_gpiod_from_child -EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents -EXPORT_SYMBOL vmlinux 0x1b245f29 ip_check_defrag -EXPORT_SYMBOL vmlinux 0x1b4c1b79 dev_alert -EXPORT_SYMBOL vmlinux 0x1b51af23 param_set_bool -EXPORT_SYMBOL vmlinux 0x1b5c5bf0 uart_unregister_driver -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b81dadb cdrom_release -EXPORT_SYMBOL vmlinux 0x1b823f17 pci_choose_state -EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug -EXPORT_SYMBOL vmlinux 0x1b86a510 dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip -EXPORT_SYMBOL vmlinux 0x1b9498d3 __wait_on_buffer -EXPORT_SYMBOL vmlinux 0x1b99228f input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x1bade72d pneigh_lookup -EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer -EXPORT_SYMBOL vmlinux 0x1bbb844d dquot_acquire -EXPORT_SYMBOL vmlinux 0x1bbc4625 scsi_cmd_get_serial -EXPORT_SYMBOL vmlinux 0x1bc4ff03 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0x1bc5cd45 dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x1bca2b59 load_fp_state -EXPORT_SYMBOL vmlinux 0x1bd26de0 mmc_add_host -EXPORT_SYMBOL vmlinux 0x1bf17137 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0x1bfec830 __iounmap_at -EXPORT_SYMBOL vmlinux 0x1c20a76f scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0x1c2b1c28 neigh_direct_output -EXPORT_SYMBOL vmlinux 0x1c2b49f2 free_page_put_link -EXPORT_SYMBOL vmlinux 0x1c2cccee d_genocide -EXPORT_SYMBOL vmlinux 0x1c3e02e4 memcmp -EXPORT_SYMBOL vmlinux 0x1c47f965 sync_inode -EXPORT_SYMBOL vmlinux 0x1c80de9c ip_send_check -EXPORT_SYMBOL vmlinux 0x1ca1136f pci_get_class -EXPORT_SYMBOL vmlinux 0x1ca816e4 skb_queue_head -EXPORT_SYMBOL vmlinux 0x1cb2f450 of_find_all_nodes -EXPORT_SYMBOL vmlinux 0x1cb8b776 skb_pad -EXPORT_SYMBOL vmlinux 0x1cbbc9a1 simple_fill_super -EXPORT_SYMBOL vmlinux 0x1ccf4d92 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0x1cdce70a blk_rq_init -EXPORT_SYMBOL vmlinux 0x1ce1b0d6 sk_reset_timer -EXPORT_SYMBOL vmlinux 0x1cf2e0d5 iterate_supers_type -EXPORT_SYMBOL vmlinux 0x1d1056e5 crc32_be -EXPORT_SYMBOL vmlinux 0x1d1cf275 linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x1d24c8cc of_find_net_device_by_node -EXPORT_SYMBOL vmlinux 0x1d8cde13 ip_ct_attach -EXPORT_SYMBOL vmlinux 0x1dbc4d0c proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0x1dcc262d dev_addr_del -EXPORT_SYMBOL vmlinux 0x1dcd92ce dev_get_by_name -EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1ded4b6a flush_tlb_mm -EXPORT_SYMBOL vmlinux 0x1df45a91 ip_getsockopt -EXPORT_SYMBOL vmlinux 0x1dfe74d1 tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0x1e06368c netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x1e0dadb6 dns_query -EXPORT_SYMBOL vmlinux 0x1e16da28 inet_frag_maybe_warn_overflow -EXPORT_SYMBOL vmlinux 0x1e25cd84 nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev -EXPORT_SYMBOL vmlinux 0x1e2e51c4 __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0x1e37ac7e scsi_print_command -EXPORT_SYMBOL vmlinux 0x1e3d8812 kobject_get -EXPORT_SYMBOL vmlinux 0x1e44ec3a scsi_block_requests -EXPORT_SYMBOL vmlinux 0x1e6a18bb sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e771b96 qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0x1e85f2eb nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1ed88907 release_pages -EXPORT_SYMBOL vmlinux 0x1f00259f padata_add_cpu -EXPORT_SYMBOL vmlinux 0x1f0305db bioset_create -EXPORT_SYMBOL vmlinux 0x1f1ded9d phy_start -EXPORT_SYMBOL vmlinux 0x1f29174c input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x1f306e0b __inet_hash -EXPORT_SYMBOL vmlinux 0x1f6ce67a sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x1f7075fb unload_nls -EXPORT_SYMBOL vmlinux 0x1f75c92b current_fs_time -EXPORT_SYMBOL vmlinux 0x1f9cfdee dev_mc_init -EXPORT_SYMBOL vmlinux 0x1fa84c54 jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0x1fa99810 capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0x1fae31e8 dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fca32ac tcp_enter_memory_pressure -EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fd7ce01 __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag -EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region -EXPORT_SYMBOL vmlinux 0x1ff923b0 of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x202528dd generic_pipe_buf_steal -EXPORT_SYMBOL vmlinux 0x20307bf0 blk_integrity_register -EXPORT_SYMBOL vmlinux 0x20369ee3 inode_permission -EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool -EXPORT_SYMBOL vmlinux 0x205410fa __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq -EXPORT_SYMBOL vmlinux 0x209cde01 phy_find_first -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20b18288 __devcgroup_inode_permission -EXPORT_SYMBOL vmlinux 0x20b2eb4b posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0x20b83e67 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf -EXPORT_SYMBOL vmlinux 0x20c77a67 netdev_all_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x20f6b756 simple_release_fs -EXPORT_SYMBOL vmlinux 0x21197d6c pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0x211f68f1 getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x2124f162 mpage_writepage -EXPORT_SYMBOL vmlinux 0x213dde91 cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0x21766334 param_array_ops -EXPORT_SYMBOL vmlinux 0x2178acf5 ps2_command -EXPORT_SYMBOL vmlinux 0x219531d0 pci_platform_rom -EXPORT_SYMBOL vmlinux 0x219b4eed ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x21dc9ab0 netpoll_setup -EXPORT_SYMBOL vmlinux 0x21df2cdc blk_mq_delay_queue -EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set -EXPORT_SYMBOL vmlinux 0x21eec49f submit_bh -EXPORT_SYMBOL vmlinux 0x21f19335 fence_remove_callback -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x22365194 elv_rb_find -EXPORT_SYMBOL vmlinux 0x223a2626 dev_driver_string -EXPORT_SYMBOL vmlinux 0x223ad772 pci_disable_msi -EXPORT_SYMBOL vmlinux 0x223ade9b netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x2242ec65 kernel_write -EXPORT_SYMBOL vmlinux 0x2259548b devm_kvasprintf -EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits -EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint -EXPORT_SYMBOL vmlinux 0x2278e94b slhc_remember -EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22b8d6cb fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x22d99e43 cdrom_mode_select -EXPORT_SYMBOL vmlinux 0x22db5f77 __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x22e18d78 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x230c433a tty_register_ldisc -EXPORT_SYMBOL vmlinux 0x230e5675 genlmsg_put -EXPORT_SYMBOL vmlinux 0x2312a6c3 console_start -EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs -EXPORT_SYMBOL vmlinux 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL vmlinux 0x235e90f3 __wake_up_bit -EXPORT_SYMBOL vmlinux 0x236f9269 device_get_mac_address -EXPORT_SYMBOL vmlinux 0x237cf3d9 request_firmware -EXPORT_SYMBOL vmlinux 0x23863795 tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0x23993f41 flow_cache_fini -EXPORT_SYMBOL vmlinux 0x239b4a45 ip6_frag_init -EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x23a9bcef blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x23b2a6f7 generic_file_mmap -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0x23ce387c parent_mem_cgroup -EXPORT_SYMBOL vmlinux 0x23f2243d mempool_free -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x2414cf4b jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0x241b3322 fb_validate_mode -EXPORT_SYMBOL vmlinux 0x241dd78d ps2_begin_command -EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x2437f0ad rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x2457e066 netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x245b2124 d_path -EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf -EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x2496433e ioctl_by_bdev -EXPORT_SYMBOL vmlinux 0x24b5e198 vme_register_driver -EXPORT_SYMBOL vmlinux 0x24c13969 nd_device_register -EXPORT_SYMBOL vmlinux 0x24d6b4a6 cur_cpu_spec -EXPORT_SYMBOL vmlinux 0x24eaf0c4 fsnotify_get_group -EXPORT_SYMBOL vmlinux 0x24f00380 ida_init -EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function -EXPORT_SYMBOL vmlinux 0x24fe96c9 vfs_link -EXPORT_SYMBOL vmlinux 0x25238fb8 twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register -EXPORT_SYMBOL vmlinux 0x254b6de3 pm860x_reg_write -EXPORT_SYMBOL vmlinux 0x2556c394 ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string -EXPORT_SYMBOL vmlinux 0x257e08fa i2c_verify_client -EXPORT_SYMBOL vmlinux 0x257e0d29 single_open -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x2586eac5 skb_copy -EXPORT_SYMBOL vmlinux 0x2589ddbe register_qdisc -EXPORT_SYMBOL vmlinux 0x25c34b4f dmam_pool_create -EXPORT_SYMBOL vmlinux 0x25c66741 mb_cache_entry_alloc -EXPORT_SYMBOL vmlinux 0x25d73467 pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x25e7e13a giveup_fpu -EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25fc3a6d nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x26477c07 __vmalloc -EXPORT_SYMBOL vmlinux 0x264a5a0d account_page_redirty -EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux -EXPORT_SYMBOL vmlinux 0x26535935 __tcf_hash_release -EXPORT_SYMBOL vmlinux 0x2665d53a key_create_or_update -EXPORT_SYMBOL vmlinux 0x266b916a dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x2688fcf9 dquot_scan_active -EXPORT_SYMBOL vmlinux 0x26950f03 mmc_gpio_request_cd -EXPORT_SYMBOL vmlinux 0x26a8f638 local_flush_tlb_page -EXPORT_SYMBOL vmlinux 0x26b340bf nf_log_unregister -EXPORT_SYMBOL vmlinux 0x26b760c4 slhc_init -EXPORT_SYMBOL vmlinux 0x26bedaf3 jbd2_journal_load -EXPORT_SYMBOL vmlinux 0x26c24a46 page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min -EXPORT_SYMBOL vmlinux 0x26ea60e0 iov_iter_fault_in_readable -EXPORT_SYMBOL vmlinux 0x26f2819a nf_log_set -EXPORT_SYMBOL vmlinux 0x27288456 inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0x2763389b pci_scan_bus -EXPORT_SYMBOL vmlinux 0x27646df3 start_thread -EXPORT_SYMBOL vmlinux 0x2771d7ff ida_get_new_above -EXPORT_SYMBOL vmlinux 0x277a5a94 gen_replace_estimator -EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x27a107ff tcp_release_cb -EXPORT_SYMBOL vmlinux 0x27b4d0be pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27df9af6 free_netdev -EXPORT_SYMBOL vmlinux 0x27e1a049 printk -EXPORT_SYMBOL vmlinux 0x27e7495d blk_rq_map_user -EXPORT_SYMBOL vmlinux 0x280c3430 blk_queue_prep_rq -EXPORT_SYMBOL vmlinux 0x2812aa9f pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x2822dbfc sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x282ad971 kmem_cache_create -EXPORT_SYMBOL vmlinux 0x28318305 snprintf -EXPORT_SYMBOL vmlinux 0x286ac627 security_path_symlink -EXPORT_SYMBOL vmlinux 0x28775080 pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0x287975ce nvm_register_mgr -EXPORT_SYMBOL vmlinux 0x287ec207 xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0x2889c23a __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0x2894131a setup_arg_pages -EXPORT_SYMBOL vmlinux 0x289db3ee idr_remove -EXPORT_SYMBOL vmlinux 0x289eaea3 blk_queue_start_tag -EXPORT_SYMBOL vmlinux 0x28a2b29f radix_tree_range_tag_if_tagged -EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x28abfe6e scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x28e6ce45 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x28f4d8ac ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0x28f73f95 inet_frags_exit_net -EXPORT_SYMBOL vmlinux 0x2934869d get_super_thawed -EXPORT_SYMBOL vmlinux 0x29359d85 input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0x2942e452 i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0x2949735e pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x294e1184 of_translate_dma_address -EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0x2955eaf5 of_device_register -EXPORT_SYMBOL vmlinux 0x29685cd3 led_set_brightness -EXPORT_SYMBOL vmlinux 0x296f6b27 __getblk_slow -EXPORT_SYMBOL vmlinux 0x29bae1e6 xfrm_garbage_collect -EXPORT_SYMBOL vmlinux 0x29e294d4 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x2a0eacbd __skb_get_hash -EXPORT_SYMBOL vmlinux 0x2a109a16 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0x2a1fccc9 kernel_read -EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2a467e54 vga_get -EXPORT_SYMBOL vmlinux 0x2a48da53 dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0x2a48e939 twl6040_get_pll -EXPORT_SYMBOL vmlinux 0x2a6dd124 of_find_node_by_type -EXPORT_SYMBOL vmlinux 0x2a968ce4 scsi_add_device -EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy -EXPORT_SYMBOL vmlinux 0x2ab3ae40 mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0x2ac09dd5 __nla_put -EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat -EXPORT_SYMBOL vmlinux 0x2afbd9f9 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x2b2108f7 pci_find_capability -EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 -EXPORT_SYMBOL vmlinux 0x2b303a92 make_kprojid -EXPORT_SYMBOL vmlinux 0x2b3f8ed6 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0x2b4991ec xmon -EXPORT_SYMBOL vmlinux 0x2b5e4c5d md_reload_sb -EXPORT_SYMBOL vmlinux 0x2b5ee6ef filemap_flush -EXPORT_SYMBOL vmlinux 0x2b6b24eb pagecache_write_end -EXPORT_SYMBOL vmlinux 0x2b743643 input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0x2b86dcb0 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x2b995e69 __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency -EXPORT_SYMBOL vmlinux 0x2bb8e668 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0x2bdd6e28 node_states -EXPORT_SYMBOL vmlinux 0x2be0f12d dql_completed -EXPORT_SYMBOL vmlinux 0x2c134395 param_ops_bool -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c4f3e4e __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x2c5712f0 vfs_writef -EXPORT_SYMBOL vmlinux 0x2c69f5f7 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0x2c7b1fca down_timeout -EXPORT_SYMBOL vmlinux 0x2c7def22 sock_rfree -EXPORT_SYMBOL vmlinux 0x2c855090 pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x2c8a1a79 kern_path_mountpoint -EXPORT_SYMBOL vmlinux 0x2c8e45dc d_obtain_alias -EXPORT_SYMBOL vmlinux 0x2c8fd026 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0x2c900036 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x2cc0db88 tty_free_termios -EXPORT_SYMBOL vmlinux 0x2cd08f26 scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x2cf651eb notify_change -EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0x2d0549d2 netlink_unicast -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d37342e cpu_online_mask -EXPORT_SYMBOL vmlinux 0x2d5f71ce param_get_ulong -EXPORT_SYMBOL vmlinux 0x2d951d21 devm_gpio_request -EXPORT_SYMBOL vmlinux 0x2daee7ff msi_bitmap_free_hwirqs -EXPORT_SYMBOL vmlinux 0x2db475ab skb_store_bits -EXPORT_SYMBOL vmlinux 0x2dcb4e02 fbcon_rotate_ud -EXPORT_SYMBOL vmlinux 0x2dd8dd9a blk_mq_all_tag_busy_iter -EXPORT_SYMBOL vmlinux 0x2ddc660f i2c_release_client -EXPORT_SYMBOL vmlinux 0x2deb4c23 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0x2e0d2f7f queue_work_on -EXPORT_SYMBOL vmlinux 0x2e1776fc devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put -EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat -EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies -EXPORT_SYMBOL vmlinux 0x2e321279 __nd_driver_register -EXPORT_SYMBOL vmlinux 0x2e4ac1fb may_umount -EXPORT_SYMBOL vmlinux 0x2e5327b6 serio_unregister_port -EXPORT_SYMBOL vmlinux 0x2e57164a get_pci_dma_ops -EXPORT_SYMBOL vmlinux 0x2e593a27 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0x2e690665 pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0x2e8d5d0a inet_frag_kill -EXPORT_SYMBOL vmlinux 0x2ec6d428 jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x2ecdc955 user_revoke -EXPORT_SYMBOL vmlinux 0x2eee438a blk_queue_resize_tags -EXPORT_SYMBOL vmlinux 0x2ef629b4 netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource -EXPORT_SYMBOL vmlinux 0x2f12c154 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0x2f169124 vga_put -EXPORT_SYMBOL vmlinux 0x2f287f0d copy_to_user -EXPORT_SYMBOL vmlinux 0x2f350be5 proc_mkdir -EXPORT_SYMBOL vmlinux 0x2f3ac027 pcie_set_mps -EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag -EXPORT_SYMBOL vmlinux 0x2f5f2a57 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0x2f688752 dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0x2f7ab1c6 __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0x2fac3e40 fb_set_cmap -EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2ff18e70 mmc_align_data_size -EXPORT_SYMBOL vmlinux 0x300a99ef agp_unbind_memory -EXPORT_SYMBOL vmlinux 0x3015d619 dquot_file_open -EXPORT_SYMBOL vmlinux 0x301e90e1 machine_id -EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command -EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0x304beb0a generic_key_instantiate -EXPORT_SYMBOL vmlinux 0x304e72d6 pcie_port_service_register -EXPORT_SYMBOL vmlinux 0x3052ada0 agp_generic_remove_memory -EXPORT_SYMBOL vmlinux 0x305b8211 tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x306f78c6 vfs_readv -EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x309c9e1f simple_readpage -EXPORT_SYMBOL vmlinux 0x309df6da kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30a8160a inetdev_by_index -EXPORT_SYMBOL vmlinux 0x30b8b35c cpu_to_chip_id -EXPORT_SYMBOL vmlinux 0x30ce9393 mmc_free_host -EXPORT_SYMBOL vmlinux 0x30d905ee scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x30e2a732 swiotlb_unmap_sg -EXPORT_SYMBOL vmlinux 0x30e92a18 devm_gpiod_get -EXPORT_SYMBOL vmlinux 0x3100bed3 find_get_entry -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x310588c1 agp_generic_destroy_page -EXPORT_SYMBOL vmlinux 0x310b9e9f netlink_kernel_release -EXPORT_SYMBOL vmlinux 0x310f02ec memremap -EXPORT_SYMBOL vmlinux 0x3121ec34 set_disk_ro -EXPORT_SYMBOL vmlinux 0x3137c1aa import_iovec -EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present -EXPORT_SYMBOL vmlinux 0x3147857d default_red -EXPORT_SYMBOL vmlinux 0x317204ed uart_resume_port -EXPORT_SYMBOL vmlinux 0x3173ab7e phy_stop -EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear -EXPORT_SYMBOL vmlinux 0x317ac1f4 no_llseek -EXPORT_SYMBOL vmlinux 0x3185f0c2 nf_setsockopt -EXPORT_SYMBOL vmlinux 0x31896048 i2c_clients_command -EXPORT_SYMBOL vmlinux 0x3196d00e buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0x31972adc dcb_getapp -EXPORT_SYMBOL vmlinux 0x31ccfb77 blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x31e1191f pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0x323b6ce4 dquot_drop -EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src -EXPORT_SYMBOL vmlinux 0x32559772 write_inode_now -EXPORT_SYMBOL vmlinux 0x326101d7 twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0x3277304e dquot_operations -EXPORT_SYMBOL vmlinux 0x3288520d nvm_dev_dma_free -EXPORT_SYMBOL vmlinux 0x328b205c xfrm_lookup -EXPORT_SYMBOL vmlinux 0x328d32da unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x32a9d942 of_phy_register_fixed_link -EXPORT_SYMBOL vmlinux 0x32c7728e kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x32ee73db serio_bus -EXPORT_SYMBOL vmlinux 0x32f2aa67 of_get_property -EXPORT_SYMBOL vmlinux 0x33005cec devm_request_resource -EXPORT_SYMBOL vmlinux 0x330574ff dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x3314b80f sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0x3330a51f remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0x333cb37c __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0x33542602 scsi_rescan_device -EXPORT_SYMBOL vmlinux 0x3395fc27 input_unregister_handler -EXPORT_SYMBOL vmlinux 0x33a6659a pci_find_bus -EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page -EXPORT_SYMBOL vmlinux 0x33bd0514 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x33d09cf9 phy_device_create -EXPORT_SYMBOL vmlinux 0x33d65d8d key_invalidate -EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r -EXPORT_SYMBOL vmlinux 0x34143a1c netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0x3419c739 dmam_alloc_noncoherent -EXPORT_SYMBOL vmlinux 0x3424256f pci_enable_msix -EXPORT_SYMBOL vmlinux 0x34252313 jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x343bccf2 blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0x344adbd5 init_cdrom_command -EXPORT_SYMBOL vmlinux 0x344c5834 submit_bio -EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin -EXPORT_SYMBOL vmlinux 0x34680f23 udp_sendmsg -EXPORT_SYMBOL vmlinux 0x347013de nla_validate -EXPORT_SYMBOL vmlinux 0x34880937 blk_queue_unprep_rq -EXPORT_SYMBOL vmlinux 0x349a7466 pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34ae39de bio_alloc_pages -EXPORT_SYMBOL vmlinux 0x34b59562 devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x34d21085 mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x34fecb3a send_sig_info -EXPORT_SYMBOL vmlinux 0x3502162a request_key_async -EXPORT_SYMBOL vmlinux 0x3506c3ee devm_gpiod_get_optional -EXPORT_SYMBOL vmlinux 0x350768c0 mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x352797a9 pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0x352b2da8 udp_proc_register -EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy -EXPORT_SYMBOL vmlinux 0x35404842 set_posix_acl -EXPORT_SYMBOL vmlinux 0x35445b29 ping_prot -EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x356924cb udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x3572062d xfrm_user_policy -EXPORT_SYMBOL vmlinux 0x3573386a mark_info_dirty -EXPORT_SYMBOL vmlinux 0x358f1c29 nd_btt_probe -EXPORT_SYMBOL vmlinux 0x359268b8 scsi_host_set_state -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35c32767 xor_altivec_2 -EXPORT_SYMBOL vmlinux 0x35dff67f __frontswap_load -EXPORT_SYMBOL vmlinux 0x36069202 mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0x3618cb2d ida_destroy -EXPORT_SYMBOL vmlinux 0x362f9df8 migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0x3632be8e jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0x366e7415 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0x366f6d27 idr_destroy -EXPORT_SYMBOL vmlinux 0x3670642a path_get -EXPORT_SYMBOL vmlinux 0x3683222b input_reset_device -EXPORT_SYMBOL vmlinux 0x36846332 cdrom_open -EXPORT_SYMBOL vmlinux 0x369e1115 kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0x36a29216 netdev_notice -EXPORT_SYMBOL vmlinux 0x36b0e732 try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x36b99a09 ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0x36bb9e85 read_dev_sector -EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc -EXPORT_SYMBOL vmlinux 0x36dec98c find_get_pages_contig -EXPORT_SYMBOL vmlinux 0x36e35f57 add_random_ready_callback -EXPORT_SYMBOL vmlinux 0x36f173c6 __getblk_gfp -EXPORT_SYMBOL vmlinux 0x371d2130 check_legacy_ioport -EXPORT_SYMBOL vmlinux 0x37299c8e jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0x37344510 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x3763cf8c pci_map_rom -EXPORT_SYMBOL vmlinux 0x376abdad elv_rb_add -EXPORT_SYMBOL vmlinux 0x378b61a0 blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0x3793eddf inet6_del_protocol -EXPORT_SYMBOL vmlinux 0x37a1fcaa __inode_add_bytes -EXPORT_SYMBOL vmlinux 0x37a8a86f input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37da352b sock_wake_async -EXPORT_SYMBOL vmlinux 0x37e0153d flex_array_prealloc -EXPORT_SYMBOL vmlinux 0x37e65af8 inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x382dfd47 file_update_time -EXPORT_SYMBOL vmlinux 0x3831561e scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0x385e6008 nvm_register_target -EXPORT_SYMBOL vmlinux 0x3869cc10 agp_bind_memory -EXPORT_SYMBOL vmlinux 0x386c876e sockfd_lookup -EXPORT_SYMBOL vmlinux 0x38717c0e rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list -EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38ad3270 mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0x38b0a894 tty_port_hangup -EXPORT_SYMBOL vmlinux 0x38b4581a get_unmapped_area -EXPORT_SYMBOL vmlinux 0x38b825d1 idr_replace -EXPORT_SYMBOL vmlinux 0x38bebcef pci_set_power_state -EXPORT_SYMBOL vmlinux 0x38bfee64 __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x38c9fc23 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0x38d04fbc tcp_read_sock -EXPORT_SYMBOL vmlinux 0x38d11730 phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0x38d82697 inode_reclaim_rsv_space -EXPORT_SYMBOL vmlinux 0x38dcd558 crypto_sha256_update -EXPORT_SYMBOL vmlinux 0x38e17af9 qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0x38ee9be5 generic_file_llseek -EXPORT_SYMBOL vmlinux 0x38fb9933 tty_std_termios -EXPORT_SYMBOL vmlinux 0x3929cd01 __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x393d4de9 crc32_le -EXPORT_SYMBOL vmlinux 0x39429111 wireless_spy_update -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x3972fbb4 make_bad_inode -EXPORT_SYMBOL vmlinux 0x39732482 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0x39982158 mpage_readpages -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39b63572 mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x39b7b653 agp_generic_destroy_pages -EXPORT_SYMBOL vmlinux 0x39ccd346 dst_release -EXPORT_SYMBOL vmlinux 0x39cdf63c wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0x39cf2e2b __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0x39d1673d iov_iter_alignment -EXPORT_SYMBOL vmlinux 0x3a2ad543 unregister_shrinker -EXPORT_SYMBOL vmlinux 0x3a2c9572 pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0x3a958994 submit_bio_wait -EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region -EXPORT_SYMBOL vmlinux 0x3ab81530 input_inject_event -EXPORT_SYMBOL vmlinux 0x3ac69a16 max8998_bulk_write -EXPORT_SYMBOL vmlinux 0x3ad7c941 blk_queue_split -EXPORT_SYMBOL vmlinux 0x3b25f7ac blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0x3b28d3e9 scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0x3b597b96 sock_create_lite -EXPORT_SYMBOL vmlinux 0x3b615a21 wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b6612b2 blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0x3b6a8c72 genphy_update_link -EXPORT_SYMBOL vmlinux 0x3b769c52 tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0x3b7aa2f4 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0x3ba999fd generic_write_checks -EXPORT_SYMBOL vmlinux 0x3bd9a5d3 nvm_dev_factory -EXPORT_SYMBOL vmlinux 0x3be00d62 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0x3c3fcc7b sock_get_timestampns -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c483012 radix_tree_delete -EXPORT_SYMBOL vmlinux 0x3c617c8f __register_chrdev -EXPORT_SYMBOL vmlinux 0x3c6e532d __ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull -EXPORT_SYMBOL vmlinux 0x3c866f80 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0x3ca6d73f skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x3ca7693d i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0x3ca7ad34 ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x3cc4b0dc lg_lock_init -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3d1d84c5 iov_iter_advance -EXPORT_SYMBOL vmlinux 0x3d414a43 scsi_remove_target -EXPORT_SYMBOL vmlinux 0x3d77731b blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0x3d7ab1bb compat_ip_setsockopt -EXPORT_SYMBOL vmlinux 0x3d8ef2c4 dev_uc_del -EXPORT_SYMBOL vmlinux 0x3da2c86f inode_init_always -EXPORT_SYMBOL vmlinux 0x3da827ab dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0x3daece8a arp_tbl -EXPORT_SYMBOL vmlinux 0x3db96580 mem_map -EXPORT_SYMBOL vmlinux 0x3dbf36c9 sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x3dc02a4e flex_array_free_parts -EXPORT_SYMBOL vmlinux 0x3dc1eeac agp_generic_alloc_pages -EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3dddf1d1 put_filp -EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e163761 unregister_filesystem -EXPORT_SYMBOL vmlinux 0x3e434811 vm_insert_mixed -EXPORT_SYMBOL vmlinux 0x3e868d1b kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource -EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get -EXPORT_SYMBOL vmlinux 0x3ea90a05 load_nls_default -EXPORT_SYMBOL vmlinux 0x3eb1c400 dm_kobject_release -EXPORT_SYMBOL vmlinux 0x3eb534e1 compat_tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x3ec8b976 xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x3ecdb1f4 keyring_search -EXPORT_SYMBOL vmlinux 0x3efff087 i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep -EXPORT_SYMBOL vmlinux 0x3f3bf8a5 blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x3f406a3b enable_kernel_altivec -EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f45f839 kthread_create_on_node -EXPORT_SYMBOL vmlinux 0x3f6b1ce8 dev_deactivate -EXPORT_SYMBOL vmlinux 0x3f8da983 kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x3fc0facd netlink_set_err -EXPORT_SYMBOL vmlinux 0x3fc32da5 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x3fe0d1c0 slhc_free -EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight -EXPORT_SYMBOL vmlinux 0x3fec048f sg_next -EXPORT_SYMBOL vmlinux 0x3ff8e495 lg_local_unlock_cpu -EXPORT_SYMBOL vmlinux 0x40143375 of_find_compatible_node -EXPORT_SYMBOL vmlinux 0x40207014 ilookup -EXPORT_SYMBOL vmlinux 0x402b8281 __request_module -EXPORT_SYMBOL vmlinux 0x403423e5 tty_port_tty_get -EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev -EXPORT_SYMBOL vmlinux 0x4042b000 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds -EXPORT_SYMBOL vmlinux 0x408121e0 alloc_disk -EXPORT_SYMBOL vmlinux 0x40896ac8 __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40f4c676 nf_log_trace -EXPORT_SYMBOL vmlinux 0x40f922a9 generic_writepages -EXPORT_SYMBOL vmlinux 0x41006c16 con_copy_unimap -EXPORT_SYMBOL vmlinux 0x4105930c abx500_get_register_interruptible -EXPORT_SYMBOL vmlinux 0x411c142a inet_ioctl -EXPORT_SYMBOL vmlinux 0x413437bd uart_get_divisor -EXPORT_SYMBOL vmlinux 0x413da4e6 __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0x41444584 copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x41574411 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0x4159c38f ioremap_wc -EXPORT_SYMBOL vmlinux 0x415bf5e2 dev_queue_xmit -EXPORT_SYMBOL vmlinux 0x41604b90 xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x417d219d sg_miter_next -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x41a3fbf1 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x41baf194 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0x41ca1118 icmp_send -EXPORT_SYMBOL vmlinux 0x41cf400d posix_acl_valid -EXPORT_SYMBOL vmlinux 0x41d641dc flush_tlb_range -EXPORT_SYMBOL vmlinux 0x420eb193 force_sig -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x42246bca tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0x4231616c pci_unmap_rom -EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force -EXPORT_SYMBOL vmlinux 0x425b3568 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x4263534d d_rehash -EXPORT_SYMBOL vmlinux 0x427b0784 blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x42897d3b pci_find_hose_for_OF_device -EXPORT_SYMBOL vmlinux 0x429bc4fa blk_mq_can_queue -EXPORT_SYMBOL vmlinux 0x429dc7bf netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0x42a1442b clocksource_unregister -EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x42dfd2e5 pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x42e8d512 nf_register_hooks -EXPORT_SYMBOL vmlinux 0x42e90abb dev_remove_offload -EXPORT_SYMBOL vmlinux 0x42ed22c9 netdev_update_features -EXPORT_SYMBOL vmlinux 0x42f417ea call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0x42f6e383 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x43110852 xfrm4_rcv_cb -EXPORT_SYMBOL vmlinux 0x4333d258 alloc_file -EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 -EXPORT_SYMBOL vmlinux 0x43787b1a blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x43a01f90 complete_all -EXPORT_SYMBOL vmlinux 0x43a78649 gen_pool_add_virt -EXPORT_SYMBOL vmlinux 0x43b5837b open_check_o_direct -EXPORT_SYMBOL vmlinux 0x43d2e552 dcache_readdir -EXPORT_SYMBOL vmlinux 0x43dc9a3f of_graph_get_remote_port -EXPORT_SYMBOL vmlinux 0x43e140e9 blk_free_tags -EXPORT_SYMBOL vmlinux 0x43eb3945 __nlmsg_put -EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x43fa6ed9 phy_suspend -EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed -EXPORT_SYMBOL vmlinux 0x44129e2d tcp_prot -EXPORT_SYMBOL vmlinux 0x444d797a cdrom_ioctl -EXPORT_SYMBOL vmlinux 0x445c9835 ip6_frag_match -EXPORT_SYMBOL vmlinux 0x446587e1 read_code -EXPORT_SYMBOL vmlinux 0x448eac3e kmemdup -EXPORT_SYMBOL vmlinux 0x44a6d352 kobject_put -EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x44bc8f07 devm_gpiod_get_index_optional -EXPORT_SYMBOL vmlinux 0x44cccd4b skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44eb192e wait_for_completion -EXPORT_SYMBOL vmlinux 0x44fdef63 __neigh_create -EXPORT_SYMBOL vmlinux 0x450a02bd __quota_error -EXPORT_SYMBOL vmlinux 0x4530aec5 compat_sock_get_timestamp -EXPORT_SYMBOL vmlinux 0x453b75b3 __dst_free -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x45447122 of_dev_put -EXPORT_SYMBOL vmlinux 0x454b7eb2 of_clk_get -EXPORT_SYMBOL vmlinux 0x45687c14 of_mm_gpiochip_add -EXPORT_SYMBOL vmlinux 0x45712743 unlock_new_inode -EXPORT_SYMBOL vmlinux 0x45756671 scsi_host_alloc -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x45902480 phy_register_fixup -EXPORT_SYMBOL vmlinux 0x459f374a freeze_super -EXPORT_SYMBOL vmlinux 0x45a1ff54 pci_request_regions -EXPORT_SYMBOL vmlinux 0x45a55ec8 __iounmap -EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource -EXPORT_SYMBOL vmlinux 0x45ab6c44 xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x45b43bc1 nf_log_packet -EXPORT_SYMBOL vmlinux 0x45c709a7 blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0x45d4c90c __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0x45f130f0 inode_set_bytes -EXPORT_SYMBOL vmlinux 0x46077485 write_cache_pages -EXPORT_SYMBOL vmlinux 0x4612c59d down_trylock -EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x461ebfa0 __copy_tofrom_user -EXPORT_SYMBOL vmlinux 0x46231ebb try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x464c50a0 xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set -EXPORT_SYMBOL vmlinux 0x466598a7 phy_resume -EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0x46877f43 udp_poll -EXPORT_SYMBOL vmlinux 0x46a0782c page_symlink -EXPORT_SYMBOL vmlinux 0x46c2ad37 unlock_rename -EXPORT_SYMBOL vmlinux 0x46c3d491 bio_clone_fast -EXPORT_SYMBOL vmlinux 0x46d12956 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0x46dc1caf mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x46dc7a46 pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg -EXPORT_SYMBOL vmlinux 0x472b3c9b fsl_lbc_ctrl_dev -EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x474462cc __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x47608718 fence_init -EXPORT_SYMBOL vmlinux 0x47682078 put_io_context -EXPORT_SYMBOL vmlinux 0x47923504 security_path_mkdir -EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x479a8c5b dput -EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit -EXPORT_SYMBOL vmlinux 0x479f74bc blk_put_request -EXPORT_SYMBOL vmlinux 0x47a1d582 uart_register_driver -EXPORT_SYMBOL vmlinux 0x47c236ad simple_statfs -EXPORT_SYMBOL vmlinux 0x47c41ad6 mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x47e1c5bb dev_emerg -EXPORT_SYMBOL vmlinux 0x48069654 inet6_register_icmp_sender -EXPORT_SYMBOL vmlinux 0x48272dcd pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0x4829a47e memcpy -EXPORT_SYMBOL vmlinux 0x48352198 from_kuid -EXPORT_SYMBOL vmlinux 0x4835ac25 md_finish_reshape -EXPORT_SYMBOL vmlinux 0x48404b9a remove_wait_queue -EXPORT_SYMBOL vmlinux 0x4841bdee strnchr -EXPORT_SYMBOL vmlinux 0x48525e5c sock_no_setsockopt -EXPORT_SYMBOL vmlinux 0x485671a0 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x48598636 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days -EXPORT_SYMBOL vmlinux 0x486c4aad dcache_dir_close -EXPORT_SYMBOL vmlinux 0x487e7473 max8998_read_reg -EXPORT_SYMBOL vmlinux 0x488966ce pagecache_get_page -EXPORT_SYMBOL vmlinux 0x489133bf generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x48a771c5 cpu_core_map -EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48cdd879 d_invalidate -EXPORT_SYMBOL vmlinux 0x48cef0de scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x48e72d35 of_get_pci_address -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x491a8230 blk_mq_map_queue -EXPORT_SYMBOL vmlinux 0x492c9932 sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x492f50d9 tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x494e2b77 new_inode -EXPORT_SYMBOL vmlinux 0x49532991 mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0x4954a691 csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init -EXPORT_SYMBOL vmlinux 0x495dc4f8 param_ops_invbool -EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data -EXPORT_SYMBOL vmlinux 0x496c6a04 devm_gpio_request_one -EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x49b5e27e shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0x49b77676 __d_drop -EXPORT_SYMBOL vmlinux 0x49e73267 delete_from_page_cache -EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many -EXPORT_SYMBOL vmlinux 0x4a03e117 jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x4a12700c i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0x4a22317f i2c_register_driver -EXPORT_SYMBOL vmlinux 0x4a398d45 tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0x4a641172 pci_get_slot -EXPORT_SYMBOL vmlinux 0x4a641409 bdget -EXPORT_SYMBOL vmlinux 0x4a73f1f7 dev_notice -EXPORT_SYMBOL vmlinux 0x4a7d44c2 ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0x4a846c51 blk_execute_rq -EXPORT_SYMBOL vmlinux 0x4a8644a4 set_device_ro -EXPORT_SYMBOL vmlinux 0x4a8961f5 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x4a985db9 padata_register_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x4a9afd05 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk -EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource -EXPORT_SYMBOL vmlinux 0x4ad2931e pci_domain_nr -EXPORT_SYMBOL vmlinux 0x4ad6d189 bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0x4ae5be63 tcp_recvmsg -EXPORT_SYMBOL vmlinux 0x4af0aa8f devm_memremap -EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize -EXPORT_SYMBOL vmlinux 0x4b03c6a2 devm_memunmap -EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure -EXPORT_SYMBOL vmlinux 0x4b201f96 tty_unlock -EXPORT_SYMBOL vmlinux 0x4b21847f mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0x4b2c9218 complete_request_key -EXPORT_SYMBOL vmlinux 0x4b306b8f __blk_end_request_all -EXPORT_SYMBOL vmlinux 0x4b4d8e79 pci_dev_put -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b8326ff ida_remove -EXPORT_SYMBOL vmlinux 0x4b8b7113 dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0x4b934c4b neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0x4b97c0cd napi_consume_skb -EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get -EXPORT_SYMBOL vmlinux 0x4bd7788d pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0x4be8ab25 page_follow_link_light -EXPORT_SYMBOL vmlinux 0x4beae18d mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0x4beb53de mmc_interrupt_hpi -EXPORT_SYMBOL vmlinux 0x4bec4680 sync_filesystem -EXPORT_SYMBOL vmlinux 0x4c081a7d nf_ip_checksum -EXPORT_SYMBOL vmlinux 0x4c11435a _raw_read_lock_bh -EXPORT_SYMBOL vmlinux 0x4c19d75a serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x4c24b05f mount_nodev -EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf -EXPORT_SYMBOL vmlinux 0x4c3f1f69 __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0x4c752e04 skb_find_text -EXPORT_SYMBOL vmlinux 0x4ca37e3b devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0x4ca9669f scnprintf -EXPORT_SYMBOL vmlinux 0x4cc27185 devm_gpiod_get_array -EXPORT_SYMBOL vmlinux 0x4cca260e vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0x4ccccbf6 of_n_size_cells -EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval -EXPORT_SYMBOL vmlinux 0x4cdecd32 mark_page_accessed -EXPORT_SYMBOL vmlinux 0x4cfbf0ec __module_put_and_exit -EXPORT_SYMBOL vmlinux 0x4d0f015b genphy_config_aneg -EXPORT_SYMBOL vmlinux 0x4d3ab29f bio_integrity_advance -EXPORT_SYMBOL vmlinux 0x4d50a6b8 wait_for_key_construction -EXPORT_SYMBOL vmlinux 0x4d522bbb put_cmsg -EXPORT_SYMBOL vmlinux 0x4d578db2 scsi_report_opcode -EXPORT_SYMBOL vmlinux 0x4d5d8b31 __vfs_read -EXPORT_SYMBOL vmlinux 0x4d671f71 sk_common_release -EXPORT_SYMBOL vmlinux 0x4d6fa638 param_get_ullong -EXPORT_SYMBOL vmlinux 0x4d791953 mempool_resize -EXPORT_SYMBOL vmlinux 0x4d932704 dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4db07d64 fbcon_rotate_cw -EXPORT_SYMBOL vmlinux 0x4dcd8255 redraw_screen -EXPORT_SYMBOL vmlinux 0x4dcdf225 of_graph_get_endpoint_by_regs -EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x4de77062 sock_init_data -EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse -EXPORT_SYMBOL vmlinux 0x4df945c9 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x4e0fd2bf xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x4e1e349e ppp_unit_number -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e6449c4 remap_vmalloc_range_partial -EXPORT_SYMBOL vmlinux 0x4e64c1b5 devm_ioport_map -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e6eedc3 mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0x4e83006e lwtunnel_encap_del_ops -EXPORT_SYMBOL vmlinux 0x4e9cd393 reservation_object_add_excl_fence -EXPORT_SYMBOL vmlinux 0x4e9d7004 pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0x4e9dffb5 ip_fast_csum -EXPORT_SYMBOL vmlinux 0x4ea3d018 rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0x4eee733a pci_pme_capable -EXPORT_SYMBOL vmlinux 0x4f0bd085 input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x4f1cb2da filemap_fdatawait -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f1f504d inet_release -EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f28ddc9 blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0x4f29f971 sb_min_blocksize -EXPORT_SYMBOL vmlinux 0x4f2f99fc mfd_remove_devices -EXPORT_SYMBOL vmlinux 0x4f30d90d pcibios_fixup_bus -EXPORT_SYMBOL vmlinux 0x4f33294d tcp_seq_open -EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse -EXPORT_SYMBOL vmlinux 0x4f4e5a24 skb_seq_read -EXPORT_SYMBOL vmlinux 0x4f50df60 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x4f522959 blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0x4f664117 dma_iommu_ops -EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday -EXPORT_SYMBOL vmlinux 0x4f6ee9f0 __find_get_block -EXPORT_SYMBOL vmlinux 0x4f79dd6e nla_reserve -EXPORT_SYMBOL vmlinux 0x4fa2eaa7 default_llseek -EXPORT_SYMBOL vmlinux 0x4fac8f2e xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x4fc71fdd __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command -EXPORT_SYMBOL vmlinux 0x500671c2 __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security -EXPORT_SYMBOL vmlinux 0x502094dd sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0x50215616 blk_integrity_merge_bio -EXPORT_SYMBOL vmlinux 0x502286d7 nonseekable_open -EXPORT_SYMBOL vmlinux 0x50302eb7 copy_page_to_iter -EXPORT_SYMBOL vmlinux 0x505d8003 put_tty_driver -EXPORT_SYMBOL vmlinux 0x505db464 dma_pool_create -EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x509abeb8 blk_queue_end_tag -EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch -EXPORT_SYMBOL vmlinux 0x50ba769a kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0x50dce3f3 i2c_del_adapter -EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x510fa26e fddi_type_trans -EXPORT_SYMBOL vmlinux 0x51129d78 xfrm_prepare_input -EXPORT_SYMBOL vmlinux 0x51164ad9 cmdline_parts_set -EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0x511d093f mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0x51309ecf skb_append -EXPORT_SYMBOL vmlinux 0x513c8e0f kobject_set_name -EXPORT_SYMBOL vmlinux 0x516450a1 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x516875c9 i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0x5176d60e copy_to_iter -EXPORT_SYMBOL vmlinux 0x518e1f48 dev_activate -EXPORT_SYMBOL vmlinux 0x519b0da3 finish_wait -EXPORT_SYMBOL vmlinux 0x51a5a824 inet6_bind -EXPORT_SYMBOL vmlinux 0x51adb9b6 from_kgid_munged -EXPORT_SYMBOL vmlinux 0x51c3dea4 scsi_scan_target -EXPORT_SYMBOL vmlinux 0x51d310d9 adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str -EXPORT_SYMBOL vmlinux 0x520e3e3f mem_cgroup_end_page_stat -EXPORT_SYMBOL vmlinux 0x5214a796 xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0x522a808c mmc_get_card -EXPORT_SYMBOL vmlinux 0x522f3df1 sk_wait_data -EXPORT_SYMBOL vmlinux 0x525026d0 xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x52521355 generic_readlink -EXPORT_SYMBOL vmlinux 0x52686ed0 mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0x528801e9 dup_iter -EXPORT_SYMBOL vmlinux 0x5290cccf xfrm_init_state -EXPORT_SYMBOL vmlinux 0x5291b13d finish_no_open -EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x52aef990 would_dump -EXPORT_SYMBOL vmlinux 0x52c00050 sock_kmalloc -EXPORT_SYMBOL vmlinux 0x52f8b053 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x531d9c28 is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x534dec40 blk_get_request -EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0x536cc847 memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0x536f6ef8 inet6_add_offload -EXPORT_SYMBOL vmlinux 0x5377e556 hex2bin -EXPORT_SYMBOL vmlinux 0x5386edb1 path_put -EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x539b99f8 netlink_capable -EXPORT_SYMBOL vmlinux 0x539cfda3 iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x53af404f of_parse_phandle -EXPORT_SYMBOL vmlinux 0x53c9474a dquot_transfer -EXPORT_SYMBOL vmlinux 0x53dec40d param_get_short -EXPORT_SYMBOL vmlinux 0x53ebab1b _outsl_ns -EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x540c670d mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0x5412c7c7 up -EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x5436e4f4 nvm_free_rqd_ppalist -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x5442733d bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x544801a5 __pci_enable_wake -EXPORT_SYMBOL vmlinux 0x5451eebb kmem_cache_size -EXPORT_SYMBOL vmlinux 0x545c6382 dquot_destroy -EXPORT_SYMBOL vmlinux 0x54873686 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x548f1d79 mdiobus_free -EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul -EXPORT_SYMBOL vmlinux 0x54ba68bd dentry_needs_remove_privs -EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54f6fb8a ip_do_fragment -EXPORT_SYMBOL vmlinux 0x550b3a77 led_blink_set_oneshot -EXPORT_SYMBOL vmlinux 0x55152ff0 skb_pull -EXPORT_SYMBOL vmlinux 0x55188385 do_splice_to -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x551bf31b dquot_quota_sync -EXPORT_SYMBOL vmlinux 0x551e7a9f dev_set_mtu -EXPORT_SYMBOL vmlinux 0x55228417 seq_open_private -EXPORT_SYMBOL vmlinux 0x55257776 cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu -EXPORT_SYMBOL vmlinux 0x55532174 deactivate_super -EXPORT_SYMBOL vmlinux 0x55585847 serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0x55615880 pci_save_state -EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat -EXPORT_SYMBOL vmlinux 0x5568c553 complete -EXPORT_SYMBOL vmlinux 0x5577ef9e udp_table -EXPORT_SYMBOL vmlinux 0x558ca53a mntput -EXPORT_SYMBOL vmlinux 0x559d8da4 bio_advance -EXPORT_SYMBOL vmlinux 0x55a81a77 proc_symlink -EXPORT_SYMBOL vmlinux 0x55b07357 security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0x55b6528e nvm_get_blk -EXPORT_SYMBOL vmlinux 0x55c2adc3 agp_allocate_memory -EXPORT_SYMBOL vmlinux 0x55c56388 dump_truncate -EXPORT_SYMBOL vmlinux 0x55c5661e of_get_next_available_child -EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x55e39e44 inet6_del_offload -EXPORT_SYMBOL vmlinux 0x560a63e2 sk_net_capable -EXPORT_SYMBOL vmlinux 0x562062aa netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x562b1339 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x564a0b68 pci_enable_msi_range -EXPORT_SYMBOL vmlinux 0x564e7863 set_nlink -EXPORT_SYMBOL vmlinux 0x5658c53a __mutex_init -EXPORT_SYMBOL vmlinux 0x565fdafb kernel_sendpage -EXPORT_SYMBOL vmlinux 0x56767382 dcache_dir_open -EXPORT_SYMBOL vmlinux 0x567e810b netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x5687ed20 find_lock_entry -EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56c8e724 of_get_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x56ce9dfc blk_start_queue -EXPORT_SYMBOL vmlinux 0x56d44531 mfd_cell_enable -EXPORT_SYMBOL vmlinux 0x56dc60b2 vme_irq_handler -EXPORT_SYMBOL vmlinux 0x56f6c7de lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x5701087a __serio_register_driver -EXPORT_SYMBOL vmlinux 0x5705b418 skb_trim -EXPORT_SYMBOL vmlinux 0x5712cbe3 dm_io -EXPORT_SYMBOL vmlinux 0x571def0f mmc_can_trim -EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt -EXPORT_SYMBOL vmlinux 0x573934bf clear_wb_congested -EXPORT_SYMBOL vmlinux 0x573c5186 phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0x574078a2 netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x57419025 kobject_init -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x574e5306 call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x575af70c on_each_cpu_mask -EXPORT_SYMBOL vmlinux 0x5766834a km_state_expired -EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x577d35f3 hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy -EXPORT_SYMBOL vmlinux 0x579fbcd2 cpu_possible_mask -EXPORT_SYMBOL vmlinux 0x57a18177 sk_stream_write_space -EXPORT_SYMBOL vmlinux 0x57ae095f decrementer_clockevent -EXPORT_SYMBOL vmlinux 0x57df18b0 generic_make_request -EXPORT_SYMBOL vmlinux 0x57e9d9b5 generic_file_splice_read -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x58218714 d_alloc_pseudo -EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x584f9625 peernet2id_alloc -EXPORT_SYMBOL vmlinux 0x58535e74 __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep -EXPORT_SYMBOL vmlinux 0x5858fec5 pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0x5861a5b5 param_ops_uint -EXPORT_SYMBOL vmlinux 0x58671cd7 security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0x58687e5a del_random_ready_callback -EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat -EXPORT_SYMBOL vmlinux 0x587ddec7 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x5881f8ea inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x58a62f1d pci_clear_master -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58e83820 touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x58ed466d cont_write_begin -EXPORT_SYMBOL vmlinux 0x591df26e in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x5932b12d clkdev_drop -EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map -EXPORT_SYMBOL vmlinux 0x595d0946 empty_zero_page -EXPORT_SYMBOL vmlinux 0x596c0d50 pci_iomap_range -EXPORT_SYMBOL vmlinux 0x5972d7c3 to_ndd -EXPORT_SYMBOL vmlinux 0x5974f4b7 dev_remove_pack -EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release -EXPORT_SYMBOL vmlinux 0x59aaf222 generic_block_bmap -EXPORT_SYMBOL vmlinux 0x59b3378a completion_done -EXPORT_SYMBOL vmlinux 0x59b3a5ac fbcon_set_bitops -EXPORT_SYMBOL vmlinux 0x59b4094f param_get_byte -EXPORT_SYMBOL vmlinux 0x59c186d3 mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0x59c6f628 i2c_master_send -EXPORT_SYMBOL vmlinux 0x59d703f4 vfs_rmdir -EXPORT_SYMBOL vmlinux 0x59d83d60 sync_blockdev -EXPORT_SYMBOL vmlinux 0x5a025f7b arch_local_irq_restore -EXPORT_SYMBOL vmlinux 0x5a0aaa12 proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a0be704 __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0x5a2cda3e trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0x5a35343c skb_clone_sk -EXPORT_SYMBOL vmlinux 0x5a4b9cea start_tty -EXPORT_SYMBOL vmlinux 0x5a6c7b2b dm_get_device -EXPORT_SYMBOL vmlinux 0x5a7e1bbb vfs_iter_read -EXPORT_SYMBOL vmlinux 0x5a921311 strncmp -EXPORT_SYMBOL vmlinux 0x5a951a8d tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x5a996321 elv_rq_merge_ok -EXPORT_SYMBOL vmlinux 0x5a9a62b6 udp6_set_csum -EXPORT_SYMBOL vmlinux 0x5a9d3346 scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove -EXPORT_SYMBOL vmlinux 0x5a9fbbd9 sock_setsockopt -EXPORT_SYMBOL vmlinux 0x5aaaadb3 register_gifconf -EXPORT_SYMBOL vmlinux 0x5ad6b40f scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x5ae7eca1 dquot_quota_off -EXPORT_SYMBOL vmlinux 0x5aeb0a62 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get -EXPORT_SYMBOL vmlinux 0x5b51071d vfs_llseek -EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap -EXPORT_SYMBOL vmlinux 0x5b6facd8 d_walk -EXPORT_SYMBOL vmlinux 0x5b7a0640 scsi_device_put -EXPORT_SYMBOL vmlinux 0x5b97f998 phy_ethtool_gset -EXPORT_SYMBOL vmlinux 0x5b9828c5 dma_spin_lock -EXPORT_SYMBOL vmlinux 0x5ba015d7 fb_find_mode -EXPORT_SYMBOL vmlinux 0x5ba1d90e trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x5bc10524 printk_emit -EXPORT_SYMBOL vmlinux 0x5bc58827 mdiobus_write -EXPORT_SYMBOL vmlinux 0x5bcd1af9 __napi_schedule -EXPORT_SYMBOL vmlinux 0x5bceebdc tty_register_device -EXPORT_SYMBOL vmlinux 0x5bd59e2f of_find_device_by_node -EXPORT_SYMBOL vmlinux 0x5c2efe2e padata_alloc -EXPORT_SYMBOL vmlinux 0x5c37f319 _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x5c42f41c scsi_verify_blk_ioctl -EXPORT_SYMBOL vmlinux 0x5c47f449 writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x5c4d648c tty_port_close_end -EXPORT_SYMBOL vmlinux 0x5c51be61 xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0x5c64c254 lease_modify -EXPORT_SYMBOL vmlinux 0x5c73919c dqget -EXPORT_SYMBOL vmlinux 0x5c851065 param_ops_charp -EXPORT_SYMBOL vmlinux 0x5c8e2531 in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x5ca4a849 serio_close -EXPORT_SYMBOL vmlinux 0x5cb04afd fs_bio_set -EXPORT_SYMBOL vmlinux 0x5cb608e4 kmem_cache_free -EXPORT_SYMBOL vmlinux 0x5cc32bdc bitmap_copy_le -EXPORT_SYMBOL vmlinux 0x5cee9d72 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0x5cf30e10 __debugger_ipi -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5d05f25d clear_nlink -EXPORT_SYMBOL vmlinux 0x5d0894f4 netdev_crit -EXPORT_SYMBOL vmlinux 0x5d0bab8c bio_integrity_free -EXPORT_SYMBOL vmlinux 0x5d0f3e60 agp_backend_release -EXPORT_SYMBOL vmlinux 0x5d28471c nf_afinfo -EXPORT_SYMBOL vmlinux 0x5d33b901 mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0x5d3bc494 neigh_connected_output -EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain -EXPORT_SYMBOL vmlinux 0x5d575651 tcp_prequeue -EXPORT_SYMBOL vmlinux 0x5d58efa0 convert_ifc_address -EXPORT_SYMBOL vmlinux 0x5d69980c cdrom_media_changed -EXPORT_SYMBOL vmlinux 0x5d69fe7c tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0x5d83d3b2 fifo_set_limit -EXPORT_SYMBOL vmlinux 0x5d8d5063 swiotlb_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x5d993dab __serio_register_port -EXPORT_SYMBOL vmlinux 0x5da0a902 of_get_ddr_timings -EXPORT_SYMBOL vmlinux 0x5da56749 param_get_string -EXPORT_SYMBOL vmlinux 0x5dbd4ca8 pci_pme_active -EXPORT_SYMBOL vmlinux 0x5dc8f88d input_unregister_handle -EXPORT_SYMBOL vmlinux 0x5dd226fc dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x5de22c1b sk_mc_loop -EXPORT_SYMBOL vmlinux 0x5df7264e __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0x5e15425b tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0x5e197d75 generic_write_end -EXPORT_SYMBOL vmlinux 0x5e235f2d eth_header_cache_update -EXPORT_SYMBOL vmlinux 0x5e290a31 inode_init_once -EXPORT_SYMBOL vmlinux 0x5e3a8a9c __wake_up -EXPORT_SYMBOL vmlinux 0x5e5ec423 __bforget -EXPORT_SYMBOL vmlinux 0x5e6c948c prepare_creds -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5e9da4be handle_edge_irq -EXPORT_SYMBOL vmlinux 0x5eaa85d8 d_delete -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ec34bfd truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5eddb914 lockref_put_return -EXPORT_SYMBOL vmlinux 0x5ee7f1c5 of_device_is_available -EXPORT_SYMBOL vmlinux 0x5eecdb90 mmc_request_done -EXPORT_SYMBOL vmlinux 0x5efef170 pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 -EXPORT_SYMBOL vmlinux 0x5f089416 dma_direct_ops -EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f2c57b4 udp_lib_get_port -EXPORT_SYMBOL vmlinux 0x5f3354d0 blkdev_get -EXPORT_SYMBOL vmlinux 0x5f419e0b __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0x5f8a2728 isa_io_base -EXPORT_SYMBOL vmlinux 0x5f8c367e drop_super -EXPORT_SYMBOL vmlinux 0x5fcb6fc2 tty_throttle -EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat -EXPORT_SYMBOL vmlinux 0x5fdd5a36 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x5ff78499 jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x60001a7f rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool -EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x60084138 twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x6051c442 tcp_proc_register -EXPORT_SYMBOL vmlinux 0x605da953 uart_add_one_port -EXPORT_SYMBOL vmlinux 0x60619db4 mfd_cell_disable -EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number -EXPORT_SYMBOL vmlinux 0x6087d579 stop_tty -EXPORT_SYMBOL vmlinux 0x608d2684 __elv_add_request -EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector -EXPORT_SYMBOL vmlinux 0x609166c3 neigh_changeaddr -EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60b9b16b inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x60db6807 dev_crit -EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x61157708 padata_set_cpumask -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x61398d81 prepare_binprm -EXPORT_SYMBOL vmlinux 0x614a9f2e neigh_lookup -EXPORT_SYMBOL vmlinux 0x614bb773 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x61545611 tcp_make_synack -EXPORT_SYMBOL vmlinux 0x615c2f2d inet_csk_accept -EXPORT_SYMBOL vmlinux 0x6182c15b bdi_register_dev -EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x61a09f98 inode_needs_sync -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61cc5e6d block_write_begin -EXPORT_SYMBOL vmlinux 0x61d45e70 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x61d565d3 neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0x61d69152 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x61dcf24a trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x61eef2c9 _insb -EXPORT_SYMBOL vmlinux 0x61ef6170 __tracepoint_fence_emit -EXPORT_SYMBOL vmlinux 0x61fad66b ata_port_printk -EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x6225637e md5_transform -EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x623060d1 vme_irq_generate -EXPORT_SYMBOL vmlinux 0x6231476c kernel_getsockname -EXPORT_SYMBOL vmlinux 0x623654a3 skb_tx_error -EXPORT_SYMBOL vmlinux 0x624ca287 kset_register -EXPORT_SYMBOL vmlinux 0x62538167 slhc_toss -EXPORT_SYMBOL vmlinux 0x62669903 pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x628913bd address_space_init_once -EXPORT_SYMBOL vmlinux 0x62ba0c16 check_disk_change -EXPORT_SYMBOL vmlinux 0x62d81dea devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0x62f53293 of_parse_phandle_with_fixed_args -EXPORT_SYMBOL vmlinux 0x62f8bf7e sync_inode_metadata -EXPORT_SYMBOL vmlinux 0x62fc172b jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0x630fc07e i2c_use_client -EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled -EXPORT_SYMBOL vmlinux 0x6329f5f4 xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x6331fd0e rtnl_create_link -EXPORT_SYMBOL vmlinux 0x63396aec __debugger_break_match -EXPORT_SYMBOL vmlinux 0x63647214 dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x63700c26 I_BDEV -EXPORT_SYMBOL vmlinux 0x6390f3f4 iget5_locked -EXPORT_SYMBOL vmlinux 0x63988df5 single_release -EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63b3d7e2 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0x63ba0bed from_kgid -EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63c71364 csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x63cbf984 bioset_integrity_create -EXPORT_SYMBOL vmlinux 0x63d0008f abx500_set_register_interruptible -EXPORT_SYMBOL vmlinux 0x63d77cf5 netif_rx -EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63f4b1ec inet_listen -EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user -EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x64207f43 kernel_connect -EXPORT_SYMBOL vmlinux 0x6424a1f8 phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0x6444c201 seq_file_path -EXPORT_SYMBOL vmlinux 0x6456adcc param_set_ullong -EXPORT_SYMBOL vmlinux 0x64829872 abx500_startup_irq_enabled -EXPORT_SYMBOL vmlinux 0x64856f34 kfree_skb -EXPORT_SYMBOL vmlinux 0x6486df1e clk_register_clkdevs -EXPORT_SYMBOL vmlinux 0x649627ab sg_miter_start -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x649d562d bio_integrity_prep -EXPORT_SYMBOL vmlinux 0x649d5868 mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x64a4b84d cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape -EXPORT_SYMBOL vmlinux 0x64cff9be cdev_del -EXPORT_SYMBOL vmlinux 0x64d8b488 blk_register_region -EXPORT_SYMBOL vmlinux 0x64de109b scsi_target_resume -EXPORT_SYMBOL vmlinux 0x64e05d40 kthread_stop -EXPORT_SYMBOL vmlinux 0x64f0cb29 scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth -EXPORT_SYMBOL vmlinux 0x65183715 memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0x651a4139 test_taint -EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp -EXPORT_SYMBOL vmlinux 0x65301918 mmc_erase -EXPORT_SYMBOL vmlinux 0x6531e0bf blk_queue_bounce -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x656a7101 fb_set_suspend -EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem -EXPORT_SYMBOL vmlinux 0x656dcf4e of_mdio_find_bus -EXPORT_SYMBOL vmlinux 0x657d4fb9 dev_alloc_name -EXPORT_SYMBOL vmlinux 0x65830318 nf_log_register -EXPORT_SYMBOL vmlinux 0x6589d9e2 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x65b6a12d pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0x65bb58a2 _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x65c792a5 sock_get_timestamp -EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier -EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x65e954e0 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x6637d3e3 add_disk -EXPORT_SYMBOL vmlinux 0x66382134 blk_rq_set_block_pc -EXPORT_SYMBOL vmlinux 0x66400411 devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x66408f57 pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0x665063a3 inet6_unregister_icmp_sender -EXPORT_SYMBOL vmlinux 0x6670fa29 mb_cache_entry_release -EXPORT_SYMBOL vmlinux 0x66754be3 gen_new_estimator -EXPORT_SYMBOL vmlinux 0x6697ac0e remove_arg_zero -EXPORT_SYMBOL vmlinux 0x66a2afcf pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0x66ca5a6c bdput -EXPORT_SYMBOL vmlinux 0x66d023a6 phy_ethtool_sset -EXPORT_SYMBOL vmlinux 0x66ddf223 agp_bridge -EXPORT_SYMBOL vmlinux 0x66f2fba5 filp_open -EXPORT_SYMBOL vmlinux 0x66f8743c tcp_md5_hash_header -EXPORT_SYMBOL vmlinux 0x671750be udp_proc_unregister -EXPORT_SYMBOL vmlinux 0x672a847e f_setown -EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges -EXPORT_SYMBOL vmlinux 0x6756f596 tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x675939a4 inet6_getname -EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create -EXPORT_SYMBOL vmlinux 0x67898c68 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0x67a694d8 sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x67a741b2 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67bfa6fe napi_gro_flush -EXPORT_SYMBOL vmlinux 0x67cb986f devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x67ce281b page_cache_next_hole -EXPORT_SYMBOL vmlinux 0x67e10ba7 flush_signals -EXPORT_SYMBOL vmlinux 0x67e74c32 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x67f8654d xfrm_init_replay -EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x68609857 complete_and_exit -EXPORT_SYMBOL vmlinux 0x68775a85 __neigh_event_send -EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x687e60b9 eth_mac_addr -EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages -EXPORT_SYMBOL vmlinux 0x68a2eba3 __scsi_alloc_queue -EXPORT_SYMBOL vmlinux 0x68a7a80c scsi_ioctl_reset -EXPORT_SYMBOL vmlinux 0x68ac3b44 blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x68d7ac09 __sock_create -EXPORT_SYMBOL vmlinux 0x68ffacfe compat_nf_getsockopt -EXPORT_SYMBOL vmlinux 0x6916e619 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x696d3e18 gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x697e3c51 neigh_parms_release -EXPORT_SYMBOL vmlinux 0x698d5756 unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be -EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource -EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint -EXPORT_SYMBOL vmlinux 0x69cb8cfb __devm_release_region -EXPORT_SYMBOL vmlinux 0x69d204c2 genphy_resume -EXPORT_SYMBOL vmlinux 0x69f4d471 hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0x6a021efb mount_subtree -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a1a54a5 vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0x6a1b165d blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0x6a233723 __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x6a5c378b down_write_trylock -EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask -EXPORT_SYMBOL vmlinux 0x6a689c32 security_d_instantiate -EXPORT_SYMBOL vmlinux 0x6a6f0106 get_user_pages -EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable -EXPORT_SYMBOL vmlinux 0x6a82227e of_node_get -EXPORT_SYMBOL vmlinux 0x6a9336ab neigh_resolve_output -EXPORT_SYMBOL vmlinux 0x6a96d30d bh_submit_read -EXPORT_SYMBOL vmlinux 0x6a9c44f8 tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be -EXPORT_SYMBOL vmlinux 0x6ad4d3ff dquot_quota_on -EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x6b0a1a26 dump_skip -EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname -EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b38cfb3 input_grab_device -EXPORT_SYMBOL vmlinux 0x6b53498a forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x6b5dfe73 __debugger_bpt -EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy -EXPORT_SYMBOL vmlinux 0x6b66c889 fence_free -EXPORT_SYMBOL vmlinux 0x6bbc994b blkdev_put -EXPORT_SYMBOL vmlinux 0x6bc2425c textsearch_prepare -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bcfccb9 inet_sendmsg -EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x6bdfd97b blk_queue_find_tag -EXPORT_SYMBOL vmlinux 0x6be18acf of_find_matching_node_and_match -EXPORT_SYMBOL vmlinux 0x6be276e2 ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x6bee389b grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0x6c05c035 pci_read_vpd -EXPORT_SYMBOL vmlinux 0x6c07919e pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer -EXPORT_SYMBOL vmlinux 0x6c23fdbd xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x6c2abbac jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0x6c32163d __blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x6c45ca9d bioset_create_nobvec -EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat -EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min -EXPORT_SYMBOL vmlinux 0x6cb37127 flex_array_clear -EXPORT_SYMBOL vmlinux 0x6cde9f25 blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0x6cee88a9 shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x6cf38112 nf_getsockopt -EXPORT_SYMBOL vmlinux 0x6cf7ced8 inode_init_owner -EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x6d12fbf7 msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0x6d1db7a4 tcp_sendpage -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d3765e9 dquot_initialize -EXPORT_SYMBOL vmlinux 0x6d3b3af4 of_match_node -EXPORT_SYMBOL vmlinux 0x6d6234c8 skb_copy_expand -EXPORT_SYMBOL vmlinux 0x6d740223 flex_array_put -EXPORT_SYMBOL vmlinux 0x6d740474 dump_align -EXPORT_SYMBOL vmlinux 0x6d7a6b9e dm_register_target -EXPORT_SYMBOL vmlinux 0x6d7ceb27 unregister_cdrom -EXPORT_SYMBOL vmlinux 0x6d7d8b94 pagevec_lookup -EXPORT_SYMBOL vmlinux 0x6da928f4 _insw_ns -EXPORT_SYMBOL vmlinux 0x6dc33204 blk_fetch_request -EXPORT_SYMBOL vmlinux 0x6dc7e8d6 netdev_emerg -EXPORT_SYMBOL vmlinux 0x6dd855b0 i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0x6ddbcb8c follow_up -EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6df3c0c1 pci_bus_get -EXPORT_SYMBOL vmlinux 0x6e3439c0 from_kuid_munged -EXPORT_SYMBOL vmlinux 0x6e5e53b7 jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e7f0fd2 cmdline_parts_parse -EXPORT_SYMBOL vmlinux 0x6e889eae call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6ea98097 of_mdiobus_register -EXPORT_SYMBOL vmlinux 0x6ead6b10 bio_copy_kern -EXPORT_SYMBOL vmlinux 0x6eb12484 mdiobus_read -EXPORT_SYMBOL vmlinux 0x6eedce5a xfrm_state_flush -EXPORT_SYMBOL vmlinux 0x6f0fd86a simple_rename -EXPORT_SYMBOL vmlinux 0x6f1d6eca downgrade_write -EXPORT_SYMBOL vmlinux 0x6f1ecc5d pci_assign_resource -EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash -EXPORT_SYMBOL vmlinux 0x6f5b495c free_user_ns -EXPORT_SYMBOL vmlinux 0x6f76f0c6 dquot_commit -EXPORT_SYMBOL vmlinux 0x6f791f54 kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x6f96ff95 ipv4_specific -EXPORT_SYMBOL vmlinux 0x6f9926f1 pcie_set_readrq -EXPORT_SYMBOL vmlinux 0x6f9e85ff netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag -EXPORT_SYMBOL vmlinux 0x6fbf4ca4 vmap -EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fcf0935 dev_trans_start -EXPORT_SYMBOL vmlinux 0x7010761b register_netdev -EXPORT_SYMBOL vmlinux 0x7028550c tty_schedule_flip -EXPORT_SYMBOL vmlinux 0x7028e3d7 __blk_run_queue -EXPORT_SYMBOL vmlinux 0x7039229c proto_register -EXPORT_SYMBOL vmlinux 0x703c7851 done_path_create -EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq -EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma -EXPORT_SYMBOL vmlinux 0x70588121 __generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync -EXPORT_SYMBOL vmlinux 0x707a9a45 blk_queue_init_tags -EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x70978fe6 get_fs_type -EXPORT_SYMBOL vmlinux 0x70ab8487 d_tmpfile -EXPORT_SYMBOL vmlinux 0x70b09a1c __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0x70b549a9 init_net -EXPORT_SYMBOL vmlinux 0x70d29eaa iterate_fd -EXPORT_SYMBOL vmlinux 0x70e707ff netdev_info -EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match -EXPORT_SYMBOL vmlinux 0x7100a787 mach_qemu_e500 -EXPORT_SYMBOL vmlinux 0x710499e0 skb_dequeue -EXPORT_SYMBOL vmlinux 0x71154e08 param_ops_long -EXPORT_SYMBOL vmlinux 0x711919d5 open_exec -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x712d62f0 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0x71643809 phy_set_max_speed -EXPORT_SYMBOL vmlinux 0x7169301a abx500_remove_ops -EXPORT_SYMBOL vmlinux 0x716b2074 swiotlb_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x717bb751 __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x719fd35e sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev -EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71c90d80 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x71d61c52 tcf_action_exec -EXPORT_SYMBOL vmlinux 0x7212f972 nvm_erase_blk -EXPORT_SYMBOL vmlinux 0x7223c478 dst_init -EXPORT_SYMBOL vmlinux 0x72335bd4 blk_requeue_request -EXPORT_SYMBOL vmlinux 0x725fd887 nla_append -EXPORT_SYMBOL vmlinux 0x72684eaa sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0x726f4dc8 xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0x72750111 ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0x727bac6d set_wb_congested -EXPORT_SYMBOL vmlinux 0x728a3d33 security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0x7291d5fa migrate_page -EXPORT_SYMBOL vmlinux 0x7292013e bprm_change_interp -EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma -EXPORT_SYMBOL vmlinux 0x72b6fa56 fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x72c98139 __arch_hweight64 -EXPORT_SYMBOL vmlinux 0x72d4c23c fsl_get_sys_freq -EXPORT_SYMBOL vmlinux 0x72d664c2 dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x72d716ae unregister_netdev -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x72f1a9b9 __cleancache_get_page -EXPORT_SYMBOL vmlinux 0x730d9a42 pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config -EXPORT_SYMBOL vmlinux 0x731a747a pci_io_base -EXPORT_SYMBOL vmlinux 0x732f16b6 unregister_md_personality -EXPORT_SYMBOL vmlinux 0x733436a8 flow_cache_init -EXPORT_SYMBOL vmlinux 0x733b2383 next_tlbcam_idx -EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf -EXPORT_SYMBOL vmlinux 0x7344dd95 vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x734bc508 bdgrab -EXPORT_SYMBOL vmlinux 0x735d8503 add_wait_queue -EXPORT_SYMBOL vmlinux 0x736905b0 msi_bitmap_alloc_hwirqs -EXPORT_SYMBOL vmlinux 0x736d4076 find_inode_nowait -EXPORT_SYMBOL vmlinux 0x73805344 invalidate_partition -EXPORT_SYMBOL vmlinux 0x73886f8e __devm_request_region -EXPORT_SYMBOL vmlinux 0x73add002 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0x73aeeb67 fb_firmware_edid -EXPORT_SYMBOL vmlinux 0x73b97e69 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0x73e88c36 xfrm4_prepare_output -EXPORT_SYMBOL vmlinux 0x73e8c45b mmc_can_reset -EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x741ef2b6 qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x744298b1 iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0x7445369b scsi_host_put -EXPORT_SYMBOL vmlinux 0x74552010 locks_copy_lock -EXPORT_SYMBOL vmlinux 0x74626683 __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x747690e4 security_path_rmdir -EXPORT_SYMBOL vmlinux 0x7478d29e of_get_address -EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x74a7ec23 i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0x74bf1485 i2c_add_adapter -EXPORT_SYMBOL vmlinux 0x74c02aec sock_wfree -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74ced58f set_groups -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x750361ab sock_no_ioctl -EXPORT_SYMBOL vmlinux 0x75113d2b param_set_long -EXPORT_SYMBOL vmlinux 0x751df90a try_to_release_page -EXPORT_SYMBOL vmlinux 0x752ecb20 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0x7532588a alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x7538b132 agp_off -EXPORT_SYMBOL vmlinux 0x75413acd qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0x7559d79c uart_update_timeout -EXPORT_SYMBOL vmlinux 0x7564d944 eth_type_trans -EXPORT_SYMBOL vmlinux 0x7570b33d sock_no_sendpage -EXPORT_SYMBOL vmlinux 0x75994700 add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0x75ae609c dquot_resume -EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc -EXPORT_SYMBOL vmlinux 0x75be6702 register_sysctl_paths -EXPORT_SYMBOL vmlinux 0x75be6b34 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0x75c0edaf simple_lookup -EXPORT_SYMBOL vmlinux 0x75cca3e1 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0x75ebc8a8 sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0x75f06ef1 netdev_warn -EXPORT_SYMBOL vmlinux 0x76013c53 scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x7617db59 xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x761ea4e6 tty_port_put -EXPORT_SYMBOL vmlinux 0x7645af6f sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x764bd77c request_resource -EXPORT_SYMBOL vmlinux 0x764d5b39 neigh_table_init -EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x7661510d sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0x768eb4fd elv_unregister_queue -EXPORT_SYMBOL vmlinux 0x769e06d7 smp_call_function_many -EXPORT_SYMBOL vmlinux 0x76ab145e jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint -EXPORT_SYMBOL vmlinux 0x76f6d1cd default_qdisc_ops -EXPORT_SYMBOL vmlinux 0x7714de00 kern_path_create -EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x772d95d2 of_platform_bus_probe -EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x7748367a remove_proc_entry -EXPORT_SYMBOL vmlinux 0x775637ac security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0x7763c416 max8925_set_bits -EXPORT_SYMBOL vmlinux 0x776b27eb do_splice_direct -EXPORT_SYMBOL vmlinux 0x778b3d61 dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll -EXPORT_SYMBOL vmlinux 0x779a3aec register_md_personality -EXPORT_SYMBOL vmlinux 0x77ac4490 mount_bdev -EXPORT_SYMBOL vmlinux 0x77bbf995 simple_getattr -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77cff9d1 n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0x77d5e573 mmc_start_bkops -EXPORT_SYMBOL vmlinux 0x77ebbe55 write_one_page -EXPORT_SYMBOL vmlinux 0x77fbe026 input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x7805d4c8 netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0x7809875e component_match_add -EXPORT_SYMBOL vmlinux 0x781ab4ac vme_slave_request -EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t -EXPORT_SYMBOL vmlinux 0x783cd15a scsi_ioctl -EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x7866c202 __brelse -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x788f9015 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x78a47316 netlink_net_capable -EXPORT_SYMBOL vmlinux 0x78a67955 tcf_exts_validate -EXPORT_SYMBOL vmlinux 0x78af32b5 generic_permission -EXPORT_SYMBOL vmlinux 0x78b9c59e cfb_imageblit -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78ef39a4 vlan_vid_add -EXPORT_SYMBOL vmlinux 0x7905dff6 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x792aa0aa mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0x79304edf blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0x79358607 simple_unlink -EXPORT_SYMBOL vmlinux 0x79360900 vfs_statfs -EXPORT_SYMBOL vmlinux 0x7944d408 kernel_param_unlock -EXPORT_SYMBOL vmlinux 0x79453055 tcp_gro_complete -EXPORT_SYMBOL vmlinux 0x79457d44 d_instantiate_unique -EXPORT_SYMBOL vmlinux 0x7965f1d6 inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0x7984eefc key_update -EXPORT_SYMBOL vmlinux 0x7985d043 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size -EXPORT_SYMBOL vmlinux 0x79a4f77a pci_remove_bus -EXPORT_SYMBOL vmlinux 0x79a54b90 module_refcount -EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79aa23fe posix_lock_file -EXPORT_SYMBOL vmlinux 0x79abdd2e eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x79d01db0 file_path -EXPORT_SYMBOL vmlinux 0x79d76163 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x7a003cd9 devm_release_resource -EXPORT_SYMBOL vmlinux 0x7a0e6efc jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x7a22ef5a __alloc_pages_nodemask -EXPORT_SYMBOL vmlinux 0x7a372963 alloc_disk_node -EXPORT_SYMBOL vmlinux 0x7a4497db kzfree -EXPORT_SYMBOL vmlinux 0x7a4f9e58 input_get_keycode -EXPORT_SYMBOL vmlinux 0x7a6cdedc do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7a7e14e1 audit_log_start -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7aa8ab7b eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7af6f3a8 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x7b0609d1 sock_create -EXPORT_SYMBOL vmlinux 0x7b16235f hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array -EXPORT_SYMBOL vmlinux 0x7b2aef6c __krealloc -EXPORT_SYMBOL vmlinux 0x7b3bb540 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0x7b3fcc6b starget_for_each_device -EXPORT_SYMBOL vmlinux 0x7b6a6b25 dev_addr_init -EXPORT_SYMBOL vmlinux 0x7b78f9c3 vm_insert_pfn -EXPORT_SYMBOL vmlinux 0x7b866f67 rwsem_down_write_failed -EXPORT_SYMBOL vmlinux 0x7ba013ae blk_integrity_merge_rq -EXPORT_SYMBOL vmlinux 0x7ba9350f pipe_unlock -EXPORT_SYMBOL vmlinux 0x7bac1d6e vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0x7bb63a10 writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x7bb756cc neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x7beb6c17 __skb_get_hash_flowi4 -EXPORT_SYMBOL vmlinux 0x7bfd9c92 scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x7c003aef _raw_read_lock_irq -EXPORT_SYMBOL vmlinux 0x7c02744b lock_rename -EXPORT_SYMBOL vmlinux 0x7c1372e8 panic -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c2ce6b3 __frontswap_test -EXPORT_SYMBOL vmlinux 0x7c2d098f krealloc -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c5310ec pci_set_dma_seg_boundary -EXPORT_SYMBOL vmlinux 0x7c5aaa5c generic_show_options -EXPORT_SYMBOL vmlinux 0x7c5b68b9 dma_async_device_register -EXPORT_SYMBOL vmlinux 0x7c61340c __release_region -EXPORT_SYMBOL vmlinux 0x7c6b16df sk_stop_timer -EXPORT_SYMBOL vmlinux 0x7c6d7fed register_sysctl -EXPORT_SYMBOL vmlinux 0x7c752c93 tcf_hash_cleanup -EXPORT_SYMBOL vmlinux 0x7c7777bd generic_setxattr -EXPORT_SYMBOL vmlinux 0x7c9291d1 csum_partial_copy_generic -EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read -EXPORT_SYMBOL vmlinux 0x7c9ac32e __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0x7cb97c48 tcp_close -EXPORT_SYMBOL vmlinux 0x7cc09f41 pci_select_bars -EXPORT_SYMBOL vmlinux 0x7cc9f3d3 inet_select_addr -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7ce85b30 phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0x7cebb1e5 of_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7d0611f3 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x7d0b1ab8 pci_get_subsys -EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies -EXPORT_SYMBOL vmlinux 0x7d2373f3 generic_ro_fops -EXPORT_SYMBOL vmlinux 0x7d268458 fget_raw -EXPORT_SYMBOL vmlinux 0x7d2ad2e9 inet6_protos -EXPORT_SYMBOL vmlinux 0x7d6f884c nf_register_hook -EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug -EXPORT_SYMBOL vmlinux 0x7d845d64 sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0x7d92998f __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0x7d992cdb mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0x7de5d383 request_key_async_with_auxdata -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7e0d4c92 genphy_suspend -EXPORT_SYMBOL vmlinux 0x7e10928f mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0x7e15590e touch_atime -EXPORT_SYMBOL vmlinux 0x7e296286 vc_cons -EXPORT_SYMBOL vmlinux 0x7e2efc54 pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0x7e37eb31 devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0x7e6f2170 of_phy_connect -EXPORT_SYMBOL vmlinux 0x7e801733 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0x7e871779 bio_integrity_trim -EXPORT_SYMBOL vmlinux 0x7e87227e slhc_compress -EXPORT_SYMBOL vmlinux 0x7ea92bf3 iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0x7eb5359c inc_nlink -EXPORT_SYMBOL vmlinux 0x7ec2193c input_set_abs_params -EXPORT_SYMBOL vmlinux 0x7ecb001b __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x7ecdc487 seq_hex_dump -EXPORT_SYMBOL vmlinux 0x7ed4f5bd inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x7ee84e5d register_key_type -EXPORT_SYMBOL vmlinux 0x7ee8b00d vme_master_request -EXPORT_SYMBOL vmlinux 0x7efebf5d pci_disable_device -EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f140fd3 keyring_clear -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f263ed9 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x7f31f361 unlock_buffer -EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done -EXPORT_SYMBOL vmlinux 0x7f91d52b phy_print_status -EXPORT_SYMBOL vmlinux 0x7fb3a7c8 tcp_connect -EXPORT_SYMBOL vmlinux 0x7fbd10d2 radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x7fce6a5e devm_ioremap -EXPORT_SYMBOL vmlinux 0x7fd189a8 __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x7fd1ea0c buffer_migrate_page -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fe38f48 sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x80114016 proc_remove -EXPORT_SYMBOL vmlinux 0x80470f18 phy_device_register -EXPORT_SYMBOL vmlinux 0x804ff861 abort_creds -EXPORT_SYMBOL vmlinux 0x80595d63 __ip_dev_find -EXPORT_SYMBOL vmlinux 0x8068c15c kblockd_schedule_delayed_work -EXPORT_SYMBOL vmlinux 0x80791a8c radix_tree_gang_lookup_slot -EXPORT_SYMBOL vmlinux 0x8083fb9a filp_close -EXPORT_SYMBOL vmlinux 0x80904e99 register_netdevice -EXPORT_SYMBOL vmlinux 0x80954ff7 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x80a5eee3 __kernel_write -EXPORT_SYMBOL vmlinux 0x80a863f6 check_disk_size_change -EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80d08878 xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80f0d9fc put_page -EXPORT_SYMBOL vmlinux 0x80f19a4e skb_vlan_push -EXPORT_SYMBOL vmlinux 0x80f2bb94 __dax_fault -EXPORT_SYMBOL vmlinux 0x81405384 misc_deregister -EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy -EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x815c56d0 cpu_present_mask -EXPORT_SYMBOL vmlinux 0x81a07f4e _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0x81ad572a mutex_trylock -EXPORT_SYMBOL vmlinux 0x81c9d87e i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0x81cbeba8 get_empty_filp -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill -EXPORT_SYMBOL vmlinux 0x82106a11 jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x822c5a8c fence_add_callback -EXPORT_SYMBOL vmlinux 0x822f014e agp_copy_info -EXPORT_SYMBOL vmlinux 0x82430c98 block_write_full_page -EXPORT_SYMBOL vmlinux 0x82458f7f radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x824bf6ac up_write -EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun -EXPORT_SYMBOL vmlinux 0x827081e6 blk_queue_softirq_done -EXPORT_SYMBOL vmlinux 0x82795695 agp_backend_acquire -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x8284d689 key_alloc -EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes -EXPORT_SYMBOL vmlinux 0x82ac3308 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched -EXPORT_SYMBOL vmlinux 0x82b49bae pcim_iounmap -EXPORT_SYMBOL vmlinux 0x82d1ec65 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x82e5a238 vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x83304794 bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x834ad02e __seq_open_private -EXPORT_SYMBOL vmlinux 0x834f4b8d sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x83553de9 blk_queue_dma_pad -EXPORT_SYMBOL vmlinux 0x83575e7f follow_down_one -EXPORT_SYMBOL vmlinux 0x835cb012 poll_schedule_timeout -EXPORT_SYMBOL vmlinux 0x83622b97 sk_stream_error -EXPORT_SYMBOL vmlinux 0x8364aefd pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x836ea693 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0x837536e3 netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x83858755 fsync_bdev -EXPORT_SYMBOL vmlinux 0x8388e14d of_find_i2c_device_by_node -EXPORT_SYMBOL vmlinux 0x838b99d9 security_path_rename -EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x83addded phy_read_mmd_indirect -EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init -EXPORT_SYMBOL vmlinux 0x83b6e2ad registered_fb -EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83ce2d69 fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x83d26817 unregister_framebuffer -EXPORT_SYMBOL vmlinux 0x83ea2e8b nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x84104dd4 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0x8428ffa6 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0x844b1aa5 locks_free_lock -EXPORT_SYMBOL vmlinux 0x844e3767 radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x84548a33 d_drop -EXPORT_SYMBOL vmlinux 0x84709263 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x84870a70 ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0x849fe807 csum_and_copy_from_user -EXPORT_SYMBOL vmlinux 0x84b30c19 set_bh_page -EXPORT_SYMBOL vmlinux 0x84bd69bf dq_data_lock -EXPORT_SYMBOL vmlinux 0x84e80dc8 scsi_remove_host -EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload -EXPORT_SYMBOL vmlinux 0x850433a9 fsnotify_put_group -EXPORT_SYMBOL vmlinux 0x85089fd5 agp_generic_free_gatt_table -EXPORT_SYMBOL vmlinux 0x85444352 dev_err -EXPORT_SYMBOL vmlinux 0x8545199a vfs_getattr -EXPORT_SYMBOL vmlinux 0x854b2631 phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0x855a0fe1 flush_old_exec -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x85676e4a lock_fb_info -EXPORT_SYMBOL vmlinux 0x856b89f8 bio_integrity_enabled -EXPORT_SYMBOL vmlinux 0x8574f948 of_graph_get_next_endpoint -EXPORT_SYMBOL vmlinux 0x85914295 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0x85aa36a4 qdisc_list_del -EXPORT_SYMBOL vmlinux 0x85ae6052 trace_print_array_seq -EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85cc258a genl_unregister_family -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x865b1789 of_n_addr_cells -EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0x867171ab pci_disable_msix -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x8693ca38 blk_start_request -EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x86b1b16e fb_prepare_logo -EXPORT_SYMBOL vmlinux 0x86b2008c __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0x86f2b0e6 devm_clk_get -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x870667c6 tty_port_destroy -EXPORT_SYMBOL vmlinux 0x8708d0e6 phy_device_free -EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags -EXPORT_SYMBOL vmlinux 0x87225f41 sget -EXPORT_SYMBOL vmlinux 0x8725b0a0 misc_register -EXPORT_SYMBOL vmlinux 0x872e7735 d_obtain_root -EXPORT_SYMBOL vmlinux 0x8734738b generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0x873a53ea __arch_hweight8 -EXPORT_SYMBOL vmlinux 0x873d6c44 blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0x873e89f0 ilookup5_nowait -EXPORT_SYMBOL vmlinux 0x8748eb99 input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0x876e63e8 simple_link -EXPORT_SYMBOL vmlinux 0x87793219 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale -EXPORT_SYMBOL vmlinux 0x87b8f08b pci_disable_link_state -EXPORT_SYMBOL vmlinux 0x87bb055f dquot_free_inode -EXPORT_SYMBOL vmlinux 0x87bd3697 jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0x87c57506 xfrm_register_type -EXPORT_SYMBOL vmlinux 0x87f5943a xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0x87f8f60b blk_delay_queue -EXPORT_SYMBOL vmlinux 0x88092a20 pcim_enable_device -EXPORT_SYMBOL vmlinux 0x882db37f neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x88321899 nvm_dev_dma_alloc -EXPORT_SYMBOL vmlinux 0x883fe461 tty_port_open -EXPORT_SYMBOL vmlinux 0x88582610 inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x887fa47e __getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x88ca2a31 file_ns_capable -EXPORT_SYMBOL vmlinux 0x890087d4 param_set_copystring -EXPORT_SYMBOL vmlinux 0x89159437 xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x891fbb10 mempool_destroy -EXPORT_SYMBOL vmlinux 0x89426c77 tty_unthrottle -EXPORT_SYMBOL vmlinux 0x895108f3 proc_dostring -EXPORT_SYMBOL vmlinux 0x896157d3 iterate_dir -EXPORT_SYMBOL vmlinux 0x896daad6 pci_fixup_device -EXPORT_SYMBOL vmlinux 0x89797060 _raw_read_lock -EXPORT_SYMBOL vmlinux 0x8989de37 of_dev_get -EXPORT_SYMBOL vmlinux 0x89a49d5c fb_pan_display -EXPORT_SYMBOL vmlinux 0x89aa8842 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0x89d25135 param_get_charp -EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies -EXPORT_SYMBOL vmlinux 0x8a322215 dev_change_proto_down -EXPORT_SYMBOL vmlinux 0x8a3fb639 create_empty_buffers -EXPORT_SYMBOL vmlinux 0x8a442fcc qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning -EXPORT_SYMBOL vmlinux 0x8a69e669 ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0x8a789ee0 da903x_query_status -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a8a9c55 nvm_erase_ppa -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8a9ec4be scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0x8aa1ee27 param_ops_bint -EXPORT_SYMBOL vmlinux 0x8ab1140d pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x8ab308bd tcp_rcv_established -EXPORT_SYMBOL vmlinux 0x8ab5a7f3 redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0x8ad29bde sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0x8addd734 __lock_page -EXPORT_SYMBOL vmlinux 0x8afaebe7 nla_put -EXPORT_SYMBOL vmlinux 0x8b0799f6 scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x8b10ff02 udp_seq_open -EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last -EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x8b4951a4 sock_sendmsg -EXPORT_SYMBOL vmlinux 0x8b4db880 tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0x8b4e450b register_filesystem -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b873560 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0x8baf3116 percpu_counter_set -EXPORT_SYMBOL vmlinux 0x8bd233bd abx500_get_chip_id -EXPORT_SYMBOL vmlinux 0x8bdd9ea2 inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0x8beb82b6 pagecache_write_begin -EXPORT_SYMBOL vmlinux 0x8bf2ae1f fsl_lbc_addr -EXPORT_SYMBOL vmlinux 0x8c04fb97 neigh_update -EXPORT_SYMBOL vmlinux 0x8c05c5d2 agp_generic_enable -EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 -EXPORT_SYMBOL vmlinux 0x8c1f95be udp_prot -EXPORT_SYMBOL vmlinux 0x8c2a0749 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0x8c4dfee6 skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0x8c577e33 is_nd_btt -EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x8c6b08e7 bitmap_end_sync -EXPORT_SYMBOL vmlinux 0x8c81bd06 i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0x8c9be2ff pcim_iomap -EXPORT_SYMBOL vmlinux 0x8cb5ef20 pci_lost_interrupt -EXPORT_SYMBOL vmlinux 0x8cb95e9c try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x8cbd31d0 phy_connect_direct -EXPORT_SYMBOL vmlinux 0x8cc4152c __generic_file_fsync -EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep -EXPORT_SYMBOL vmlinux 0x8cdcc59c ip6_xmit -EXPORT_SYMBOL vmlinux 0x8ce98e0d bdi_register -EXPORT_SYMBOL vmlinux 0x8ceafe92 param_ops_ulong -EXPORT_SYMBOL vmlinux 0x8d015dd4 __bswapdi2 -EXPORT_SYMBOL vmlinux 0x8d152d07 proc_set_user -EXPORT_SYMBOL vmlinux 0x8d227863 is_bad_inode -EXPORT_SYMBOL vmlinux 0x8d272769 rwsem_downgrade_wake -EXPORT_SYMBOL vmlinux 0x8d365b09 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d66f67f ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d784a52 thaw_super -EXPORT_SYMBOL vmlinux 0x8d7a5b28 tso_build_hdr -EXPORT_SYMBOL vmlinux 0x8d896f63 should_remove_suid -EXPORT_SYMBOL vmlinux 0x8d944cbb copy_in_user -EXPORT_SYMBOL vmlinux 0x8d94f9d7 update_devfreq -EXPORT_SYMBOL vmlinux 0x8da05809 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x8dadcc6a gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0x8db2661d phy_attach_direct -EXPORT_SYMBOL vmlinux 0x8dc29cd9 padata_free -EXPORT_SYMBOL vmlinux 0x8dc6c43f iov_iter_kvec -EXPORT_SYMBOL vmlinux 0x8dcc4e16 get_thermal_instance -EXPORT_SYMBOL vmlinux 0x8dda19bf simple_setattr -EXPORT_SYMBOL vmlinux 0x8de0b5ac mempool_create -EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv -EXPORT_SYMBOL vmlinux 0x8e063232 tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0x8e10036e mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0x8e4a5e9a neigh_xmit -EXPORT_SYMBOL vmlinux 0x8e5117a6 scsi_cmd_blk_ioctl -EXPORT_SYMBOL vmlinux 0x8e690081 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x8e6d8dc4 tso_count_descs -EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x8e888ec3 cpumask_next_and -EXPORT_SYMBOL vmlinux 0x8e8d58da diu_ops -EXPORT_SYMBOL vmlinux 0x8e8d97fc iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0x8e9b6b61 pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0x8eaa4f24 seq_pad -EXPORT_SYMBOL vmlinux 0x8eab3a7c swiotlb_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0x8ec04552 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0x8ec3607e d_find_any_alias -EXPORT_SYMBOL vmlinux 0x8eda8a1f blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0x8edffc27 tty_port_init -EXPORT_SYMBOL vmlinux 0x8eecad81 of_get_named_gpio_flags -EXPORT_SYMBOL vmlinux 0x8ef96add sock_release -EXPORT_SYMBOL vmlinux 0x8f008fbb sock_i_uid -EXPORT_SYMBOL vmlinux 0x8f03bc1c netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0x8f179580 __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x8f2ae0bd framebuffer_release -EXPORT_SYMBOL vmlinux 0x8f3cc73d xfrm_register_mode -EXPORT_SYMBOL vmlinux 0x8f40ed1a bio_unmap_user -EXPORT_SYMBOL vmlinux 0x8f4f1b2d swiotlb_free_coherent -EXPORT_SYMBOL vmlinux 0x8f56886b __vfs_write -EXPORT_SYMBOL vmlinux 0x8f7e3448 uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0x8f85f835 prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x8f887125 dev_close -EXPORT_SYMBOL vmlinux 0x8f96c474 phy_attach -EXPORT_SYMBOL vmlinux 0x8fa005aa dquot_alloc -EXPORT_SYMBOL vmlinux 0x8fc15bf6 iommu_tbl_range_free -EXPORT_SYMBOL vmlinux 0x8fca3b53 elv_register_queue -EXPORT_SYMBOL vmlinux 0x8fd120a2 genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0x8fd8ffa5 pci_write_vpd -EXPORT_SYMBOL vmlinux 0x8fe39fa0 pcie_get_minimum_link -EXPORT_SYMBOL vmlinux 0x8ff8685f iov_iter_zero -EXPORT_SYMBOL vmlinux 0x8ffd61b9 simple_dentry_operations -EXPORT_SYMBOL vmlinux 0x9016f3fa ether_setup -EXPORT_SYMBOL vmlinux 0x9019cb24 nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0x9022fe83 inet_put_port -EXPORT_SYMBOL vmlinux 0x9023a30a __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x902f69ed agp_create_memory -EXPORT_SYMBOL vmlinux 0x902fae31 bio_init -EXPORT_SYMBOL vmlinux 0x9044565b nvm_put_blk -EXPORT_SYMBOL vmlinux 0x904bd0f9 agp_alloc_page_array -EXPORT_SYMBOL vmlinux 0x9050b014 tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x906ee5ca alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0x90880036 nf_reinject -EXPORT_SYMBOL vmlinux 0x90cd32e5 seq_read -EXPORT_SYMBOL vmlinux 0x90cee4fc ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0x910e7b98 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0x912f54b4 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x913190eb ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0x913d0501 dev_mc_sync -EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 -EXPORT_SYMBOL vmlinux 0x91571f5b netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0x915e1208 tb_ticks_per_usec -EXPORT_SYMBOL vmlinux 0x9166fada strncpy -EXPORT_SYMBOL vmlinux 0x91715312 sprintf -EXPORT_SYMBOL vmlinux 0x919d1163 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x91a1bfb6 follow_down -EXPORT_SYMBOL vmlinux 0x91ab9678 tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x91ac822f vscnprintf -EXPORT_SYMBOL vmlinux 0x91ad7793 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0x91b75711 devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x91c1576c neigh_table_clear -EXPORT_SYMBOL vmlinux 0x91ccbd78 unregister_qdisc -EXPORT_SYMBOL vmlinux 0x91e778a7 soft_cursor -EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 -EXPORT_SYMBOL vmlinux 0x9218464c md_write_end -EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x925ea15e pci_enable_device_io -EXPORT_SYMBOL vmlinux 0x926fd3b6 agp_generic_alloc_page -EXPORT_SYMBOL vmlinux 0x92890630 pci_set_master -EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user -EXPORT_SYMBOL vmlinux 0x92929d83 dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x9292b074 mutex_lock_killable -EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm -EXPORT_SYMBOL vmlinux 0x92b5bf14 blk_run_queue_async -EXPORT_SYMBOL vmlinux 0x92cf2e3b noop_qdisc -EXPORT_SYMBOL vmlinux 0x92e3d1e1 ip_options_compile -EXPORT_SYMBOL vmlinux 0x92ef7310 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x93138929 pm860x_set_bits -EXPORT_SYMBOL vmlinux 0x9327f9e9 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0x932abf06 devm_ioremap_nocache -EXPORT_SYMBOL vmlinux 0x9330e635 vfs_writev -EXPORT_SYMBOL vmlinux 0x9337d3d4 dev_printk_emit -EXPORT_SYMBOL vmlinux 0x934ad71e __sb_start_write -EXPORT_SYMBOL vmlinux 0x936b88aa page_waitqueue -EXPORT_SYMBOL vmlinux 0x936f51a3 path_is_under -EXPORT_SYMBOL vmlinux 0x9376cb8f posix_unblock_lock -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x937e3cbb vga_tryget -EXPORT_SYMBOL vmlinux 0x93865d10 tso_build_data -EXPORT_SYMBOL vmlinux 0x9389bde2 cdrom_check_events -EXPORT_SYMBOL vmlinux 0x939f6f3c mmc_of_parse -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93cd1308 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x93e04c16 __ethtool_get_settings -EXPORT_SYMBOL vmlinux 0x93e8eb8a phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages -EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int -EXPORT_SYMBOL vmlinux 0x94231be0 alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0x94284315 clocksource_change_rating -EXPORT_SYMBOL vmlinux 0x943b5813 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x943dc80f csum_and_copy_to_user -EXPORT_SYMBOL vmlinux 0x9451f0e7 of_find_backlight_by_node -EXPORT_SYMBOL vmlinux 0x946a6123 neigh_seq_next -EXPORT_SYMBOL vmlinux 0x946f3d6f __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x94b541b5 cpu_active_mask -EXPORT_SYMBOL vmlinux 0x94bd1026 i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0x94be398b ip_setsockopt -EXPORT_SYMBOL vmlinux 0x94c537d8 nvm_end_io -EXPORT_SYMBOL vmlinux 0x94ceb21f pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x94ffb39e scm_detach_fds -EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x9514151a _mcount -EXPORT_SYMBOL vmlinux 0x951d1416 vm_map_ram -EXPORT_SYMBOL vmlinux 0x9524b0ae _outsb -EXPORT_SYMBOL vmlinux 0x953b6376 mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init -EXPORT_SYMBOL vmlinux 0x95605938 xattr_full_name -EXPORT_SYMBOL vmlinux 0x956848d5 of_create_pci_dev -EXPORT_SYMBOL vmlinux 0x956f539e dquot_quotactl_ops -EXPORT_SYMBOL vmlinux 0x959690d5 mdiobus_scan -EXPORT_SYMBOL vmlinux 0x9596e51f jbd2_journal_file_inode -EXPORT_SYMBOL vmlinux 0x95bb1301 tcp_destroy_cgroup -EXPORT_SYMBOL vmlinux 0x95c38143 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0x95c740ed xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x95c7f90c of_iomap -EXPORT_SYMBOL vmlinux 0x95d75b1b flush_icache_user_range -EXPORT_SYMBOL vmlinux 0x95fffe51 bmap -EXPORT_SYMBOL vmlinux 0x9607a233 sock_no_shutdown -EXPORT_SYMBOL vmlinux 0x960fb116 pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0x963c5cff blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0x96429dce mount_pseudo -EXPORT_SYMBOL vmlinux 0x9654b9e2 sock_no_connect -EXPORT_SYMBOL vmlinux 0x965cfdc0 dmam_free_coherent -EXPORT_SYMBOL vmlinux 0x9681046b have_submounts -EXPORT_SYMBOL vmlinux 0x96836427 __mdiobus_register -EXPORT_SYMBOL vmlinux 0x968b395e inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0x96900c8b tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x969987fc lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp -EXPORT_SYMBOL vmlinux 0x96b5ebb4 mount_single -EXPORT_SYMBOL vmlinux 0x96c0882f xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96d588fd vme_dma_list_add -EXPORT_SYMBOL vmlinux 0x970ecd8b neigh_app_ns -EXPORT_SYMBOL vmlinux 0x97240be5 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0x9741963d ps2_handle_ack -EXPORT_SYMBOL vmlinux 0x9748927f _outsw_ns -EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x97618996 eth_header -EXPORT_SYMBOL vmlinux 0x9765bf0c input_register_handle -EXPORT_SYMBOL vmlinux 0x9776bddd pci_request_region_exclusive -EXPORT_SYMBOL vmlinux 0x97771728 __ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x97868aef __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x978d719f ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state -EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update -EXPORT_SYMBOL vmlinux 0x97afba7b proc_douintvec -EXPORT_SYMBOL vmlinux 0x97cd1ede sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0x97d7f25f blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0x97da33ac bio_endio -EXPORT_SYMBOL vmlinux 0x97f423c6 i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0x98255810 vlan_vid_del -EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0x98320d77 dma_common_mmap -EXPORT_SYMBOL vmlinux 0x9836828d mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0x986648be simple_transaction_get -EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x987fc124 neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x98a105c5 nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0x98ad4bdb sk_free -EXPORT_SYMBOL vmlinux 0x98c68c41 __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x98ceef24 generic_file_fsync -EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen -EXPORT_SYMBOL vmlinux 0x98d0bc0e param_ops_byte -EXPORT_SYMBOL vmlinux 0x98d4c532 i8042_install_filter -EXPORT_SYMBOL vmlinux 0x98d4e2e2 dquot_release -EXPORT_SYMBOL vmlinux 0x98d8a6d1 dentry_unhash -EXPORT_SYMBOL vmlinux 0x98faacea uart_write_wakeup -EXPORT_SYMBOL vmlinux 0x990b781f __get_page_tail -EXPORT_SYMBOL vmlinux 0x99190842 phy_device_remove -EXPORT_SYMBOL vmlinux 0x99195078 vsnprintf -EXPORT_SYMBOL vmlinux 0x9921e924 generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x99385dfd blk_sync_queue -EXPORT_SYMBOL vmlinux 0x99388cd3 mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x9976b726 from_kprojid -EXPORT_SYMBOL vmlinux 0x99794bab mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99afe916 _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0x99cbc5a8 vfs_fsync -EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering -EXPORT_SYMBOL vmlinux 0x99d3a43c dm_table_get_size -EXPORT_SYMBOL vmlinux 0x99e98acf mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval -EXPORT_SYMBOL vmlinux 0x9a3528be dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0x9a5a1a44 scsi_execute_req_flags -EXPORT_SYMBOL vmlinux 0x9a67db43 of_get_next_parent -EXPORT_SYMBOL vmlinux 0x9aaab543 tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0x9abb367f tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x9ac535cb dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x9acc5718 mem_cgroup_begin_page_stat -EXPORT_SYMBOL vmlinux 0x9ad27040 dev_printk -EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach -EXPORT_SYMBOL vmlinux 0x9afb5056 mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0x9b02fd05 scsi_print_sense -EXPORT_SYMBOL vmlinux 0x9b0bb5bf pci_set_dma_max_seg_size -EXPORT_SYMBOL vmlinux 0x9b0fd75a proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0x9b16c01a vme_irq_free -EXPORT_SYMBOL vmlinux 0x9b241ce9 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page -EXPORT_SYMBOL vmlinux 0x9b5e317c mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0x9b7e85a6 gen_pool_alloc -EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x9ba4414c dquot_enable -EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split -EXPORT_SYMBOL vmlinux 0x9bba3ab6 fb_set_var -EXPORT_SYMBOL vmlinux 0x9bc82276 netif_receive_skb -EXPORT_SYMBOL vmlinux 0x9bd343d2 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0x9bd6e35c generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x9c075727 nf_ct_attach -EXPORT_SYMBOL vmlinux 0x9c16ac88 key_revoke -EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x9c615261 key_validate -EXPORT_SYMBOL vmlinux 0x9c99fff0 vfs_fsync_range -EXPORT_SYMBOL vmlinux 0x9c9cb157 inet_register_protosw -EXPORT_SYMBOL vmlinux 0x9c9d63c7 blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cc16842 dump_emit -EXPORT_SYMBOL vmlinux 0x9ccc8ad8 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0x9ce5f095 sk_alloc -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d14983a ppc_enable_pmcs -EXPORT_SYMBOL vmlinux 0x9d16f253 kfree_put_link -EXPORT_SYMBOL vmlinux 0x9d19743d devm_gpiod_get_index -EXPORT_SYMBOL vmlinux 0x9d3825b1 scsi_device_resume -EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init -EXPORT_SYMBOL vmlinux 0x9d3f417b PDE_DATA -EXPORT_SYMBOL vmlinux 0x9d4eac0e swiotlb_alloc_coherent -EXPORT_SYMBOL vmlinux 0x9d538bb2 giveup_altivec -EXPORT_SYMBOL vmlinux 0x9d58b170 param_set_bint -EXPORT_SYMBOL vmlinux 0x9d5e4725 dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0x9d6a54c2 flex_array_get_ptr -EXPORT_SYMBOL vmlinux 0x9d72229b fsl_ifc_find -EXPORT_SYMBOL vmlinux 0x9d7ce8dd _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0x9d7f84c4 truncate_pagecache -EXPORT_SYMBOL vmlinux 0x9d8d8a52 dmam_alloc_coherent -EXPORT_SYMBOL vmlinux 0x9d93d2f1 neigh_for_each -EXPORT_SYMBOL vmlinux 0x9d9fb5a6 sock_kfree_s -EXPORT_SYMBOL vmlinux 0x9da05e10 mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0x9db67837 of_graph_get_remote_port_parent -EXPORT_SYMBOL vmlinux 0x9dc5b175 d_instantiate_no_diralias -EXPORT_SYMBOL vmlinux 0x9dcf2c9c __pci_register_driver -EXPORT_SYMBOL vmlinux 0x9dd3278b vlan_uses_dev -EXPORT_SYMBOL vmlinux 0x9ddb2363 kobject_add -EXPORT_SYMBOL vmlinux 0x9dfcca55 down_write -EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e22e748 filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x9e2f8c90 lz4_decompress_unknownoutputsize -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e517f6f bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e71421c nvm_generic_to_addr_mode -EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value -EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9eba0665 sync_inodes_sb -EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource -EXPORT_SYMBOL vmlinux 0x9ec973d2 nd_region_release_lane -EXPORT_SYMBOL vmlinux 0x9ec9b683 pci_unregister_driver -EXPORT_SYMBOL vmlinux 0x9ece8f6e max8925_reg_write -EXPORT_SYMBOL vmlinux 0x9f0e1ab8 save_mount_options -EXPORT_SYMBOL vmlinux 0x9f26fd4c of_platform_device_create -EXPORT_SYMBOL vmlinux 0x9f29b6c9 security_path_chmod -EXPORT_SYMBOL vmlinux 0x9f2f4564 xfrm_state_add -EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f48e3f8 end_buffer_async_write -EXPORT_SYMBOL vmlinux 0x9f509b08 clk_get -EXPORT_SYMBOL vmlinux 0x9f58833f scsi_device_get -EXPORT_SYMBOL vmlinux 0x9f69077b netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x9f6ba7dc padata_start -EXPORT_SYMBOL vmlinux 0x9f718dc2 param_set_byte -EXPORT_SYMBOL vmlinux 0x9f7c1be8 skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0x9f8e42d7 agp_generic_alloc_by_type -EXPORT_SYMBOL vmlinux 0x9f911629 idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0x9f96216f vfs_whiteout -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9fc9fba2 neigh_seq_start -EXPORT_SYMBOL vmlinux 0x9fce3c8c tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9fef841b __netif_schedule -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0xa00b3a86 eth_validate_addr -EXPORT_SYMBOL vmlinux 0xa018cd5d dev_uc_flush -EXPORT_SYMBOL vmlinux 0xa02a8aed udp_set_csum -EXPORT_SYMBOL vmlinux 0xa041ae2f try_module_get -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xa06de7e0 crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr -EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init -EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa0912a17 netdev_change_features -EXPORT_SYMBOL vmlinux 0xa0a8304c compat_ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0dc512b pci_get_device -EXPORT_SYMBOL vmlinux 0xa0e6f526 blkdev_fsync -EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem -EXPORT_SYMBOL vmlinux 0xa0ecbfc4 generic_read_dir -EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa0ff74d6 udp_memory_allocated -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa112614a __inet_stream_connect -EXPORT_SYMBOL vmlinux 0xa112b02d xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0xa114f52c bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0xa15404a5 genphy_soft_reset -EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode -EXPORT_SYMBOL vmlinux 0xa1b97ad5 __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched -EXPORT_SYMBOL vmlinux 0xa1c80753 unregister_binfmt -EXPORT_SYMBOL vmlinux 0xa1c99385 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create -EXPORT_SYMBOL vmlinux 0xa1f8fe75 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0xa202a8e5 kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold -EXPORT_SYMBOL vmlinux 0xa229d22c scsi_unregister -EXPORT_SYMBOL vmlinux 0xa22ace4c seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0xa2312ae9 get_io_context -EXPORT_SYMBOL vmlinux 0xa2345903 __block_write_begin -EXPORT_SYMBOL vmlinux 0xa24b114e of_root -EXPORT_SYMBOL vmlinux 0xa24fcf1e jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0xa25031a5 sock_no_getname -EXPORT_SYMBOL vmlinux 0xa26f42e1 sock_efree -EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0xa28c7474 nd_iostat_end -EXPORT_SYMBOL vmlinux 0xa292d733 noop_fsync -EXPORT_SYMBOL vmlinux 0xa29f0912 inet_sendpage -EXPORT_SYMBOL vmlinux 0xa2a24a76 ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0xa2a335bd vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0xa2aba143 seq_write -EXPORT_SYMBOL vmlinux 0xa2bbed37 crash_shutdown_register -EXPORT_SYMBOL vmlinux 0xa2bf5097 md_error -EXPORT_SYMBOL vmlinux 0xa2ef35da install_exec_creds -EXPORT_SYMBOL vmlinux 0xa2fdbcbe fence_default_wait -EXPORT_SYMBOL vmlinux 0xa301f04e __splice_from_pipe -EXPORT_SYMBOL vmlinux 0xa301f248 devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0xa303d1ff dm_ratelimit_state -EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set -EXPORT_SYMBOL vmlinux 0xa332767a dev_get_stats -EXPORT_SYMBOL vmlinux 0xa34673fe proc_create_data -EXPORT_SYMBOL vmlinux 0xa370002e sk_receive_skb -EXPORT_SYMBOL vmlinux 0xa37cad35 serio_interrupt -EXPORT_SYMBOL vmlinux 0xa381944f dql_reset -EXPORT_SYMBOL vmlinux 0xa382a45d simple_pin_fs -EXPORT_SYMBOL vmlinux 0xa3840cec mmc_detect_change -EXPORT_SYMBOL vmlinux 0xa3890fc2 scsi_register -EXPORT_SYMBOL vmlinux 0xa39b4cf2 udelay -EXPORT_SYMBOL vmlinux 0xa3abc422 abort_exclusive_wait -EXPORT_SYMBOL vmlinux 0xa3d7c134 km_state_notify -EXPORT_SYMBOL vmlinux 0xa3e75545 flush_tlb_kernel_range -EXPORT_SYMBOL vmlinux 0xa3e8ddfe bio_flush_dcache_pages -EXPORT_SYMBOL vmlinux 0xa3ef9e5f elevator_change -EXPORT_SYMBOL vmlinux 0xa400a1bd make_kuid -EXPORT_SYMBOL vmlinux 0xa40d1bdb scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0xa4155f79 generic_getxattr -EXPORT_SYMBOL vmlinux 0xa42f47d7 dev_get_nest_level -EXPORT_SYMBOL vmlinux 0xa43bc4e6 of_device_alloc -EXPORT_SYMBOL vmlinux 0xa4511467 crc16 -EXPORT_SYMBOL vmlinux 0xa451a4cc tcp_req_err -EXPORT_SYMBOL vmlinux 0xa4691005 elevator_init -EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset -EXPORT_SYMBOL vmlinux 0xa4839c19 pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xa48b4fff commit_creds -EXPORT_SYMBOL vmlinux 0xa493f13c may_umount_tree -EXPORT_SYMBOL vmlinux 0xa4a4bd91 param_set_ulong -EXPORT_SYMBOL vmlinux 0xa4a4e291 register_framebuffer -EXPORT_SYMBOL vmlinux 0xa4a7349c zpool_register_driver -EXPORT_SYMBOL vmlinux 0xa4a94d26 find_next_bit_le -EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep -EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush -EXPORT_SYMBOL vmlinux 0xa4da0d50 mdio_bus_type -EXPORT_SYMBOL vmlinux 0xa4f1ae5c key_task_permission -EXPORT_SYMBOL vmlinux 0xa4f89612 pci_release_regions -EXPORT_SYMBOL vmlinux 0xa52ab42e tty_hangup -EXPORT_SYMBOL vmlinux 0xa53135b9 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0xa5394395 netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0xa5504314 input_register_device -EXPORT_SYMBOL vmlinux 0xa5520146 devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa55c6830 register_sysctl_table -EXPORT_SYMBOL vmlinux 0xa56ad3d0 init_special_inode -EXPORT_SYMBOL vmlinux 0xa56b8ab2 flex_array_free -EXPORT_SYMBOL vmlinux 0xa56f9a72 nvm_submit_io -EXPORT_SYMBOL vmlinux 0xa5829d31 bd_set_size -EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes -EXPORT_SYMBOL vmlinux 0xa5a3b389 follow_pfn -EXPORT_SYMBOL vmlinux 0xa5a51eee __crc32c_le -EXPORT_SYMBOL vmlinux 0xa5c03d6f kernel_param_lock -EXPORT_SYMBOL vmlinux 0xa6096554 ab3100_event_unregister -EXPORT_SYMBOL vmlinux 0xa62b68a4 register_cdrom -EXPORT_SYMBOL vmlinux 0xa62dfc0d genphy_aneg_done -EXPORT_SYMBOL vmlinux 0xa63322c6 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0xa634fa03 scsi_register_driver -EXPORT_SYMBOL vmlinux 0xa64e1eb5 kfree_skb_list -EXPORT_SYMBOL vmlinux 0xa65972b8 _memcpy_toio -EXPORT_SYMBOL vmlinux 0xa661d9c2 mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0xa67c71ce pcim_iomap_table -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa68cb81b param_get_invbool -EXPORT_SYMBOL vmlinux 0xa6c5016f fb_blank -EXPORT_SYMBOL vmlinux 0xa6db50f1 simple_nosetlease -EXPORT_SYMBOL vmlinux 0xa6e8ba8a __dquot_free_space -EXPORT_SYMBOL vmlinux 0xa6f1f1c5 lwtunnel_build_state -EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function -EXPORT_SYMBOL vmlinux 0xa7070e93 vc_resize -EXPORT_SYMBOL vmlinux 0xa720678c lg_global_lock -EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 -EXPORT_SYMBOL vmlinux 0xa743c3d0 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0xa74f4e9b ida_simple_get -EXPORT_SYMBOL vmlinux 0xa7738c5b splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0xa78d9eb7 slhc_uncompress -EXPORT_SYMBOL vmlinux 0xa799ea9f inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0xa7e9e6ab param_get_ushort -EXPORT_SYMBOL vmlinux 0xa7ebe9f2 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0xa80750cb dev_addr_flush -EXPORT_SYMBOL vmlinux 0xa810e780 get_task_io_context -EXPORT_SYMBOL vmlinux 0xa833b617 sock_alloc_file -EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa8460891 frontswap_register_ops -EXPORT_SYMBOL vmlinux 0xa84971fc led_update_brightness -EXPORT_SYMBOL vmlinux 0xa84fd625 blk_queue_stack_limits -EXPORT_SYMBOL vmlinux 0xa86b679f down_read -EXPORT_SYMBOL vmlinux 0xa8721b97 system_state -EXPORT_SYMBOL vmlinux 0xa88e0ccb netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0xa896aa03 dev_uc_unsync -EXPORT_SYMBOL vmlinux 0xa8cd8f85 __init_rwsem -EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send -EXPORT_SYMBOL vmlinux 0xa902d0dd of_find_node_by_name -EXPORT_SYMBOL vmlinux 0xa9039402 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xa913d12a pci_alloc_dev -EXPORT_SYMBOL vmlinux 0xa9140c11 sock_edemux -EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion -EXPORT_SYMBOL vmlinux 0xa916b694 strnlen -EXPORT_SYMBOL vmlinux 0xa9220a25 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0xa9273e1a epapr_hypercall_start -EXPORT_SYMBOL vmlinux 0xa93ba88e proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0xa93f8459 ppp_register_compressor -EXPORT_SYMBOL vmlinux 0xa95bc549 scsi_register_interface -EXPORT_SYMBOL vmlinux 0xa963fa1c sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa9929bc0 key_payload_reserve -EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes -EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0xa9d45614 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0xa9dcaf71 xfrm_register_km -EXPORT_SYMBOL vmlinux 0xaa125882 uart_match_port -EXPORT_SYMBOL vmlinux 0xaa1ca861 arp_create -EXPORT_SYMBOL vmlinux 0xaa21ddba pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0xaa36ae75 file_open_root -EXPORT_SYMBOL vmlinux 0xaa46e87e lg_local_unlock -EXPORT_SYMBOL vmlinux 0xaa6e4df5 _raw_write_lock_irqsave -EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa7acb95 __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0xaa93a675 seq_release -EXPORT_SYMBOL vmlinux 0xaaa83ee2 module_put -EXPORT_SYMBOL vmlinux 0xaaab8067 cpu_sibling_map -EXPORT_SYMBOL vmlinux 0xaabffe0d netif_rx_ni -EXPORT_SYMBOL vmlinux 0xaac14864 irq_set_chip -EXPORT_SYMBOL vmlinux 0xaac81ae1 phy_init_eee -EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state -EXPORT_SYMBOL vmlinux 0xaaf90c21 inet6_ioctl -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0xab228e31 csum_tcpudp_magic -EXPORT_SYMBOL vmlinux 0xab27e2f4 md_register_thread -EXPORT_SYMBOL vmlinux 0xab49813f vme_dma_list_free -EXPORT_SYMBOL vmlinux 0xab6632d7 fsnotify_destroy_mark -EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog -EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xabbf13a1 dev_uc_sync -EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev -EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable -EXPORT_SYMBOL vmlinux 0xac11e45d ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac26b820 _raw_write_lock -EXPORT_SYMBOL vmlinux 0xac3f7dbe tcp_init_cgroup -EXPORT_SYMBOL vmlinux 0xac469942 lwtunnel_get_encap_size -EXPORT_SYMBOL vmlinux 0xac5369fb of_device_unregister -EXPORT_SYMBOL vmlinux 0xac70b0fa vm_stat -EXPORT_SYMBOL vmlinux 0xac723f61 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0xac85f94d seq_printf -EXPORT_SYMBOL vmlinux 0xac92142d md_set_array_sectors -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacb7ddfb register_console -EXPORT_SYMBOL vmlinux 0xacc5b5d2 csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton -EXPORT_SYMBOL vmlinux 0xacd02076 free_task -EXPORT_SYMBOL vmlinux 0xacd3970a scsi_execute -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xacdb76e7 tcp_disconnect -EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xacfe4b5c truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0xad01744f kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad0fd4c6 __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0xad14b08d netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0xad164875 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xad186829 netif_wake_subqueue -EXPORT_SYMBOL vmlinux 0xad2af0c8 gen_pool_free -EXPORT_SYMBOL vmlinux 0xad4e439e __remove_inode_hash -EXPORT_SYMBOL vmlinux 0xad53d22b of_parse_phandle_with_args -EXPORT_SYMBOL vmlinux 0xad6b0659 xfrm_input_resume -EXPORT_SYMBOL vmlinux 0xad736b7a __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event -EXPORT_SYMBOL vmlinux 0xad961743 __wait_on_bit -EXPORT_SYMBOL vmlinux 0xadbe7bea generic_removexattr -EXPORT_SYMBOL vmlinux 0xadc7d0c1 ppc_md -EXPORT_SYMBOL vmlinux 0xadef7147 security_path_chown -EXPORT_SYMBOL vmlinux 0xadf1d474 blk_finish_request -EXPORT_SYMBOL vmlinux 0xadf2bb64 tcf_destroy_chain -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae04b94f __mmc_claim_host -EXPORT_SYMBOL vmlinux 0xae160c4b abx500_event_registers_startup_state_get -EXPORT_SYMBOL vmlinux 0xae1d47aa generic_file_direct_write -EXPORT_SYMBOL vmlinux 0xae358236 fence_signal -EXPORT_SYMBOL vmlinux 0xae545f06 _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xae5fbe59 mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0xae655a4f inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0xae67ae7e ppp_input_error -EXPORT_SYMBOL vmlinux 0xae7c2ec3 try_to_writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0xaeaf8e45 nvm_unregister_target -EXPORT_SYMBOL vmlinux 0xaecb0a3a __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0xaed66438 blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0xaefd1ef9 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0xaf063510 _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0xaf175221 dma_common_get_sgtable -EXPORT_SYMBOL vmlinux 0xaf2d872c prepare_to_wait -EXPORT_SYMBOL vmlinux 0xaf34260d pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf441a45 blk_mq_add_to_requeue_list -EXPORT_SYMBOL vmlinux 0xaf512a7c input_free_device -EXPORT_SYMBOL vmlinux 0xaf6786f1 devm_clk_put -EXPORT_SYMBOL vmlinux 0xaf6ae696 kstrndup -EXPORT_SYMBOL vmlinux 0xaf6d9089 netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0xaf6dee91 tty_register_driver -EXPORT_SYMBOL vmlinux 0xaf9340a7 tcf_hash_new_index -EXPORT_SYMBOL vmlinux 0xafa230ec sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0xafb0fd09 gen_pool_create -EXPORT_SYMBOL vmlinux 0xafccf89b __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xaff5becd skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xafff3d1d mempool_alloc -EXPORT_SYMBOL vmlinux 0xb03fccce vfs_mknod -EXPORT_SYMBOL vmlinux 0xb04241b4 ida_simple_remove -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb0634c2f __inode_permission -EXPORT_SYMBOL vmlinux 0xb0664980 max8998_write_reg -EXPORT_SYMBOL vmlinux 0xb067470a dev_set_mac_address -EXPORT_SYMBOL vmlinux 0xb082a5e1 tty_port_close -EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0b2acca __scsi_print_sense -EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0xb0b99777 dma_set_mask -EXPORT_SYMBOL vmlinux 0xb0bf89f3 unregister_console -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0f85dce inet_bind -EXPORT_SYMBOL vmlinux 0xb0fbaa9e devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xb0fdebdb mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0xb1142765 cdev_init -EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb137cf20 generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0xb1563904 vfs_iter_write -EXPORT_SYMBOL vmlinux 0xb15bd8fa tb_ticks_per_sec -EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xb1634a25 kill_pgrp -EXPORT_SYMBOL vmlinux 0xb163f974 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table -EXPORT_SYMBOL vmlinux 0xb165ef45 __irq_regs -EXPORT_SYMBOL vmlinux 0xb171b27e get_disk -EXPORT_SYMBOL vmlinux 0xb17e50a3 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0xb1a0ecef flow_cache_lookup -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1c6e787 wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xb1dbf0ff xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xb1ee5cc4 dst_discard_out -EXPORT_SYMBOL vmlinux 0xb1f382c9 xfrm_state_update -EXPORT_SYMBOL vmlinux 0xb1f9f44b eth_header_parse -EXPORT_SYMBOL vmlinux 0xb22402de bdi_setup_and_register -EXPORT_SYMBOL vmlinux 0xb244e5f7 tty_do_resize -EXPORT_SYMBOL vmlinux 0xb2492534 __ip_select_ident -EXPORT_SYMBOL vmlinux 0xb25039e9 napi_complete_done -EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0xb29dcc1b md_check_recovery -EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xb2d3c88c clear_inode -EXPORT_SYMBOL vmlinux 0xb2e1432d phy_detach -EXPORT_SYMBOL vmlinux 0xb2f4afd4 scsi_scan_host -EXPORT_SYMBOL vmlinux 0xb2f86877 gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0xb2fb0f2f nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xb2fc5736 swiotlb_dma_mapping_error -EXPORT_SYMBOL vmlinux 0xb30e0715 udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0xb3382494 fence_signal_locked -EXPORT_SYMBOL vmlinux 0xb33a4f40 rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0xb3508acc blk_end_request -EXPORT_SYMBOL vmlinux 0xb37b581a tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3dfbef3 netdev_err -EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb400962a arp_xmit -EXPORT_SYMBOL vmlinux 0xb416d7ba elevator_exit -EXPORT_SYMBOL vmlinux 0xb41f19f2 mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb424153a zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0xb429d009 dev_warn -EXPORT_SYMBOL vmlinux 0xb454c42b cdev_alloc -EXPORT_SYMBOL vmlinux 0xb45e596a poll_initwait -EXPORT_SYMBOL vmlinux 0xb4693801 nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0xb4702adc twl6040_reg_read -EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0xb47189b5 reservation_ww_class -EXPORT_SYMBOL vmlinux 0xb473e2c2 lockref_get -EXPORT_SYMBOL vmlinux 0xb4879f6d ata_std_end_eh -EXPORT_SYMBOL vmlinux 0xb48a51e3 inet_shutdown -EXPORT_SYMBOL vmlinux 0xb4a51971 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0xb4a560ed nvm_addr_to_generic_mode -EXPORT_SYMBOL vmlinux 0xb4b60e79 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0xb4b935c8 set_anon_super -EXPORT_SYMBOL vmlinux 0xb4c94939 dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0xb4d115a6 wait_on_page_bit -EXPORT_SYMBOL vmlinux 0xb4e15848 jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0xb4e74192 replace_mount_options -EXPORT_SYMBOL vmlinux 0xb4ead9a8 dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0xb4fd0182 thaw_bdev -EXPORT_SYMBOL vmlinux 0xb52360db blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0xb52e4f70 skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0xb53448f0 serio_open -EXPORT_SYMBOL vmlinux 0xb534becb xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0xb54275a0 inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0xb5457091 dget_parent -EXPORT_SYMBOL vmlinux 0xb5612292 phy_init_hw -EXPORT_SYMBOL vmlinux 0xb5618eca cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb5884cad security_path_unlink -EXPORT_SYMBOL vmlinux 0xb59a3130 locks_remove_posix -EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5dd0680 touch_buffer -EXPORT_SYMBOL vmlinux 0xb5dd9d73 vfs_create -EXPORT_SYMBOL vmlinux 0xb5e5f35a dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0xb5f41290 secpath_dup -EXPORT_SYMBOL vmlinux 0xb5f8d0ff param_set_uint -EXPORT_SYMBOL vmlinux 0xb5f98102 free_cgroup_ns -EXPORT_SYMBOL vmlinux 0xb5fc93db skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0xb5fd21bd __module_get -EXPORT_SYMBOL vmlinux 0xb60e4a66 compat_mc_setsockopt -EXPORT_SYMBOL vmlinux 0xb612b792 tty_devnum -EXPORT_SYMBOL vmlinux 0xb61c2f6a to_nd_btt -EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one -EXPORT_SYMBOL vmlinux 0xb6318fc2 copy_from_iter -EXPORT_SYMBOL vmlinux 0xb63193df __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0xb634a9d7 xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0xb641ae47 set_security_override -EXPORT_SYMBOL vmlinux 0xb665a19f input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0xb6760f1b inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb681070f blk_init_allocated_queue -EXPORT_SYMBOL vmlinux 0xb6901968 dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb697d986 __starget_for_each_device -EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit -EXPORT_SYMBOL vmlinux 0xb6c0bbed scsi_host_get -EXPORT_SYMBOL vmlinux 0xb6ca4074 tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0xb6dba78c devm_gpio_free -EXPORT_SYMBOL vmlinux 0xb6e8e0dd blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xb728a2b1 flush_dcache_icache_page -EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xb7558d57 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0xb761754a tcp_child_process -EXPORT_SYMBOL vmlinux 0xb76a4dee blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xb770be3e __percpu_counter_add -EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb772b8b7 fsnotify_add_mark -EXPORT_SYMBOL vmlinux 0xb79a4e1a store_fp_state -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7ca29cb devm_gpiod_get_array_optional -EXPORT_SYMBOL vmlinux 0xb7dce802 proto_unregister -EXPORT_SYMBOL vmlinux 0xb8006657 reservation_object_reserve_shared -EXPORT_SYMBOL vmlinux 0xb804bc93 seq_path -EXPORT_SYMBOL vmlinux 0xb814282b param_ops_ullong -EXPORT_SYMBOL vmlinux 0xb8269c8e gen_pool_destroy -EXPORT_SYMBOL vmlinux 0xb83d9e29 netpoll_cleanup -EXPORT_SYMBOL vmlinux 0xb8531235 scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 -EXPORT_SYMBOL vmlinux 0xb879b5a3 scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0xb87f08f2 block_read_full_page -EXPORT_SYMBOL vmlinux 0xb8ae46c6 ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0xb8bb1ea2 datagram_poll -EXPORT_SYMBOL vmlinux 0xb8f84944 end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0xb91da932 netdev_alert -EXPORT_SYMBOL vmlinux 0xb91f060f inode_claim_rsv_space -EXPORT_SYMBOL vmlinux 0xb9598958 pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0xb95eff77 pci_scan_single_device -EXPORT_SYMBOL vmlinux 0xb95f599d tty_vhangup -EXPORT_SYMBOL vmlinux 0xb977bdb6 drop_nlink -EXPORT_SYMBOL vmlinux 0xb98054ff phy_connect -EXPORT_SYMBOL vmlinux 0xb98cb9cc nobh_truncate_page -EXPORT_SYMBOL vmlinux 0xb98e5586 nvm_register -EXPORT_SYMBOL vmlinux 0xb9950656 dev_add_offload -EXPORT_SYMBOL vmlinux 0xb9a2ccae of_cpufreq_power_cooling_register -EXPORT_SYMBOL vmlinux 0xb9aae944 ipv6_push_nfrag_opts -EXPORT_SYMBOL vmlinux 0xb9b37e6f mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0xb9bb3254 con_set_default_unimap -EXPORT_SYMBOL vmlinux 0xb9cfe40a pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0xb9dd04df sock_no_mmap -EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xba068568 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0xba150c2e dev_addr_add -EXPORT_SYMBOL vmlinux 0xba20ed9e pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0xba339993 inode_sub_rsv_space -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba69ea46 ip_queue_xmit -EXPORT_SYMBOL vmlinux 0xba6be2a2 eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0xba6d7df9 twl6040_set_pll -EXPORT_SYMBOL vmlinux 0xba7019a3 __dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0xba70ef4a generic_file_read_iter -EXPORT_SYMBOL vmlinux 0xba762f59 rfkill_alloc -EXPORT_SYMBOL vmlinux 0xba7ad596 register_quota_format -EXPORT_SYMBOL vmlinux 0xba8b6dc1 pci_restore_state -EXPORT_SYMBOL vmlinux 0xba964d1d scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0xbaa8123c fsnotify_init_mark -EXPORT_SYMBOL vmlinux 0xbab62c18 twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0xbad410ae dm_put_device -EXPORT_SYMBOL vmlinux 0xbae01d9a dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0xbafc1f75 tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb17cc24 bio_split -EXPORT_SYMBOL vmlinux 0xbb1eb999 inet_recvmsg -EXPORT_SYMBOL vmlinux 0xbb1f9b5b param_set_int -EXPORT_SYMBOL vmlinux 0xbb34134a iov_shorten -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb3cfc65 sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0xbb42f5a8 jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xbb727bc7 dma_find_channel -EXPORT_SYMBOL vmlinux 0xbb83a7de uart_suspend_port -EXPORT_SYMBOL vmlinux 0xbb9420b0 blk_recount_segments -EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font -EXPORT_SYMBOL vmlinux 0xbbaeb559 memcg_socket_limit_enabled -EXPORT_SYMBOL vmlinux 0xbbb6b412 unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0xbbd042d7 km_is_alive -EXPORT_SYMBOL vmlinux 0xbbdf9833 user_path_create -EXPORT_SYMBOL vmlinux 0xbbe3d2a0 blk_put_queue -EXPORT_SYMBOL vmlinux 0xbbfc8984 iget_locked -EXPORT_SYMBOL vmlinux 0xbc02e106 elv_dispatch_sort -EXPORT_SYMBOL vmlinux 0xbc30b795 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0xbc316de4 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0xbc3f649c mmc_read_bkops_status -EXPORT_SYMBOL vmlinux 0xbc7714b7 flush_tlb_page -EXPORT_SYMBOL vmlinux 0xbc820bb0 blk_alloc_queue_node -EXPORT_SYMBOL vmlinux 0xbca20429 wake_up_process -EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user -EXPORT_SYMBOL vmlinux 0xbcc420b3 vfs_read -EXPORT_SYMBOL vmlinux 0xbcf150f9 xor_altivec_5 -EXPORT_SYMBOL vmlinux 0xbd09283a generic_shutdown_super -EXPORT_SYMBOL vmlinux 0xbd13bab2 __nla_reserve -EXPORT_SYMBOL vmlinux 0xbd22e1c6 ___pskb_trim -EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init -EXPORT_SYMBOL vmlinux 0xbd62916a pci_add_new_bus -EXPORT_SYMBOL vmlinux 0xbd6d79f1 __tracepoint_fence_annotate_wait_on -EXPORT_SYMBOL vmlinux 0xbd803510 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug -EXPORT_SYMBOL vmlinux 0xbd9299cd dump_page -EXPORT_SYMBOL vmlinux 0xbda1c62c netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0xbdb0bb3c tcf_hash_search -EXPORT_SYMBOL vmlinux 0xbdce32e3 iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0xbdd90eca udp_disconnect -EXPORT_SYMBOL vmlinux 0xbdda0fe9 __register_nls -EXPORT_SYMBOL vmlinux 0xbde6d703 pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0xbdf80b05 generic_delete_inode -EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto -EXPORT_SYMBOL vmlinux 0xbe64274b filemap_map_pages -EXPORT_SYMBOL vmlinux 0xbe93afd0 blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0xbee0769d get_user_pages_locked -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbf146162 vm_event_states -EXPORT_SYMBOL vmlinux 0xbf1cc134 tcp_parse_options -EXPORT_SYMBOL vmlinux 0xbf2c75a0 __register_binfmt -EXPORT_SYMBOL vmlinux 0xbf2db40d inet_frag_find -EXPORT_SYMBOL vmlinux 0xbf2ec66c devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0xbf3cbe67 block_commit_write -EXPORT_SYMBOL vmlinux 0xbf3f2a67 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0xbf4a798c __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0xbf61fe21 scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk -EXPORT_SYMBOL vmlinux 0xbf902260 sk_ns_capable -EXPORT_SYMBOL vmlinux 0xbf90ba1d netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0xbf925c42 idr_init -EXPORT_SYMBOL vmlinux 0xbf936018 udplite_prot -EXPORT_SYMBOL vmlinux 0xbf9bbf71 of_get_child_by_name -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfabfe59 __debugger_iabr_match -EXPORT_SYMBOL vmlinux 0xbfb5d93c security_inode_readlink -EXPORT_SYMBOL vmlinux 0xbfb78e9e jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0xbfb8b0b7 _raw_read_lock_irqsave -EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xc02c257a __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0xc0319c49 kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0xc0519e33 vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0xc0733a7b freeze_bdev -EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write -EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit -EXPORT_SYMBOL vmlinux 0xc0ac5af5 insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0xc0bc72b7 qdisc_watchdog_schedule_ns -EXPORT_SYMBOL vmlinux 0xc0c6e9b9 vme_irq_request -EXPORT_SYMBOL vmlinux 0xc0d33756 agp_generic_free_by_type -EXPORT_SYMBOL vmlinux 0xc0e61f0a clkdev_alloc -EXPORT_SYMBOL vmlinux 0xc0f2d725 sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0xc11bcf07 dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0xc120fab0 ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0xc133b8a9 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0xc13a10dc flex_array_alloc -EXPORT_SYMBOL vmlinux 0xc15a44c6 memzero_explicit -EXPORT_SYMBOL vmlinux 0xc1677527 generic_setlease -EXPORT_SYMBOL vmlinux 0xc16952c4 serio_unregister_driver -EXPORT_SYMBOL vmlinux 0xc16a8049 pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0xc1d1e549 lwtunnel_encap_add_ops -EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1def729 of_device_is_compatible -EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla -EXPORT_SYMBOL vmlinux 0xc1efa7bb kthread_bind -EXPORT_SYMBOL vmlinux 0xc1f6b9fd __check_sticky -EXPORT_SYMBOL vmlinux 0xc2004650 scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup -EXPORT_SYMBOL vmlinux 0xc25a121a iov_iter_npages -EXPORT_SYMBOL vmlinux 0xc2868b3f dev_uc_add -EXPORT_SYMBOL vmlinux 0xc28e5a7b of_phy_find_device -EXPORT_SYMBOL vmlinux 0xc28f2678 simple_transaction_set -EXPORT_SYMBOL vmlinux 0xc2993dad validate_sp -EXPORT_SYMBOL vmlinux 0xc29bf967 strspn -EXPORT_SYMBOL vmlinux 0xc2a21ac5 simple_transaction_release -EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xc2da8788 tcf_unregister_action -EXPORT_SYMBOL vmlinux 0xc2df2d3e tso_start -EXPORT_SYMBOL vmlinux 0xc2e50569 ilookup5 -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2f8791b xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0xc2fc9223 md_done_sync -EXPORT_SYMBOL vmlinux 0xc30aaca1 bio_map_kern -EXPORT_SYMBOL vmlinux 0xc30e5519 get_task_exe_file -EXPORT_SYMBOL vmlinux 0xc310b981 strnstr -EXPORT_SYMBOL vmlinux 0xc3278a5f nd_device_unregister -EXPORT_SYMBOL vmlinux 0xc33b197b deactivate_locked_super -EXPORT_SYMBOL vmlinux 0xc3519f29 of_get_parent -EXPORT_SYMBOL vmlinux 0xc3612c37 backlight_device_register -EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0xc3dbbb8a inet_accept -EXPORT_SYMBOL vmlinux 0xc3e0a71e netdev_boot_setup_check -EXPORT_SYMBOL vmlinux 0xc3e6b489 down_read_trylock -EXPORT_SYMBOL vmlinux 0xc3e84b00 neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0xc3fc21cb bitmap_endwrite -EXPORT_SYMBOL vmlinux 0xc403477c crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0xc4125293 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0xc41693ee jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0xc41fe978 debugfs_create_automount -EXPORT_SYMBOL vmlinux 0xc45755de find_next_zero_bit_le -EXPORT_SYMBOL vmlinux 0xc4623955 fddi_change_mtu -EXPORT_SYMBOL vmlinux 0xc47cdf9c _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0xc47d81f6 revalidate_disk -EXPORT_SYMBOL vmlinux 0xc48307db lz4_decompress -EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup -EXPORT_SYMBOL vmlinux 0xc4a789fc generic_listxattr -EXPORT_SYMBOL vmlinux 0xc4af811d wireless_send_event -EXPORT_SYMBOL vmlinux 0xc4e7621b blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0xc4f3dce8 seq_escape -EXPORT_SYMBOL vmlinux 0xc50487e4 bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xc51108c4 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0xc520992f elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0xc52845af param_ops_int -EXPORT_SYMBOL vmlinux 0xc52d962c rwsem_down_read_failed -EXPORT_SYMBOL vmlinux 0xc54c8ca7 locks_copy_conflock -EXPORT_SYMBOL vmlinux 0xc5503b82 blk_stop_queue -EXPORT_SYMBOL vmlinux 0xc5530640 build_skb -EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 -EXPORT_SYMBOL vmlinux 0xc55c29bd blk_get_queue -EXPORT_SYMBOL vmlinux 0xc55fb310 dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0xc5823061 __scm_destroy -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc5a477e6 dev_mc_flush -EXPORT_SYMBOL vmlinux 0xc5d4f04c up_read -EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot -EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xc5fdf82d skb_unlink -EXPORT_SYMBOL vmlinux 0xc601d9b9 vme_master_mmap -EXPORT_SYMBOL vmlinux 0xc6029244 __blk_end_request -EXPORT_SYMBOL vmlinux 0xc6121f06 mach_corenet_generic -EXPORT_SYMBOL vmlinux 0xc612fb17 ps2_handle_response -EXPORT_SYMBOL vmlinux 0xc61f1a69 page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0xc623491e tty_set_operations -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc63a78e0 devfreq_add_device -EXPORT_SYMBOL vmlinux 0xc642be78 mfd_add_devices -EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes -EXPORT_SYMBOL vmlinux 0xc663b075 __ioremap -EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif -EXPORT_SYMBOL vmlinux 0xc66cafba sk_capable -EXPORT_SYMBOL vmlinux 0xc6730afd nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0xc6772da2 radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0xc68d722d bio_phys_segments -EXPORT_SYMBOL vmlinux 0xc6c04000 skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6e2f6e7 nf_unregister_hook -EXPORT_SYMBOL vmlinux 0xc70479eb netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0xc707c5b6 vme_dma_request -EXPORT_SYMBOL vmlinux 0xc7091ae4 wait_iff_congested -EXPORT_SYMBOL vmlinux 0xc7110cda elv_add_request -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc72f1960 __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0xc737b185 skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass -EXPORT_SYMBOL vmlinux 0xc7591cf0 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0xc768de19 cpu_all_bits -EXPORT_SYMBOL vmlinux 0xc7757dfd agp_alloc_bridge -EXPORT_SYMBOL vmlinux 0xc77a61ad blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0xc77bd0f9 unmap_mapping_range -EXPORT_SYMBOL vmlinux 0xc77cb694 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc7898275 flex_array_shrink -EXPORT_SYMBOL vmlinux 0xc78a3775 blk_queue_make_request -EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7aac190 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0xc7b6f53b tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0xc7c96513 km_policy_notify -EXPORT_SYMBOL vmlinux 0xc7df3f68 get_phy_device -EXPORT_SYMBOL vmlinux 0xc7f24a19 dquot_commit_info -EXPORT_SYMBOL vmlinux 0xc8063983 __cleancache_put_page -EXPORT_SYMBOL vmlinux 0xc8214641 pci_iomap -EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0xc83f5cfc cmdline_parts_find -EXPORT_SYMBOL vmlinux 0xc841adf1 vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0xc842a8c3 block_write_end -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc8552477 cpufreq_power_cooling_register -EXPORT_SYMBOL vmlinux 0xc8571bcb idr_for_each -EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc88e3e38 input_unregister_device -EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xc8e37192 elv_rb_del -EXPORT_SYMBOL vmlinux 0xc8f7d8af truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0xc90fa73d genphy_setup_forced -EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen -EXPORT_SYMBOL vmlinux 0xc91d55a9 ppp_input -EXPORT_SYMBOL vmlinux 0xc924228b security_dentry_init_security -EXPORT_SYMBOL vmlinux 0xc933d040 blk_run_queue -EXPORT_SYMBOL vmlinux 0xc93fbc54 wait_for_completion_io -EXPORT_SYMBOL vmlinux 0xc94b78bc mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0xc951819c backlight_force_update -EXPORT_SYMBOL vmlinux 0xc9535120 lwtunnel_output -EXPORT_SYMBOL vmlinux 0xc95af27b mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc978479a xz_dec_run -EXPORT_SYMBOL vmlinux 0xc9913135 page_put_link -EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc99fa97a mpage_writepages -EXPORT_SYMBOL vmlinux 0xc9a662d3 xfrm_unregister_mode -EXPORT_SYMBOL vmlinux 0xc9e013e7 padata_set_cpumasks -EXPORT_SYMBOL vmlinux 0xc9f26c12 simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0xc9f4aa70 d_move -EXPORT_SYMBOL vmlinux 0xca00daf4 __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xca05985b __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0xca0e0efe d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy -EXPORT_SYMBOL vmlinux 0xca198e60 dev_disable_lro -EXPORT_SYMBOL vmlinux 0xca1edff5 neigh_seq_stop -EXPORT_SYMBOL vmlinux 0xca2b1cd6 ida_pre_get -EXPORT_SYMBOL vmlinux 0xca3b28c6 store_vr_state -EXPORT_SYMBOL vmlinux 0xca3b438a kill_bdev -EXPORT_SYMBOL vmlinux 0xca3bd887 __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0xca5ee09a vme_free_consistent -EXPORT_SYMBOL vmlinux 0xca7660e4 setup_new_exec -EXPORT_SYMBOL vmlinux 0xca832efe kmalloc_order -EXPORT_SYMBOL vmlinux 0xca86508f rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0xca865fa4 sg_miter_skip -EXPORT_SYMBOL vmlinux 0xca8df667 mmc_alloc_host -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xcaa85ed4 end_page_writeback -EXPORT_SYMBOL vmlinux 0xcace6297 idr_is_empty -EXPORT_SYMBOL vmlinux 0xcadd5b36 iput -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb102df9 param_set_ushort -EXPORT_SYMBOL vmlinux 0xcb1f38be blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0xcb496eee iget_failed -EXPORT_SYMBOL vmlinux 0xcb4a5e4e alloc_fcdev -EXPORT_SYMBOL vmlinux 0xcb4c219c devm_free_irq -EXPORT_SYMBOL vmlinux 0xcb6c68e5 ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0xcb936989 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0xcbb2c9e4 cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc40b75 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0xcbc72523 param_ops_ushort -EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0xcc17504d _raw_read_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xcc206416 compat_sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc30eb2a dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0xcc3330be pci_match_id -EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc8d42dd nf_unregister_hooks -EXPORT_SYMBOL vmlinux 0xcc9519db blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0xcca61af0 tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor -EXPORT_SYMBOL vmlinux 0xccf41aff vfs_mkdir -EXPORT_SYMBOL vmlinux 0xcd0529c7 _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0xcd20667a kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0xcd23c83a seq_lseek -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd2cd963 cfb_copyarea -EXPORT_SYMBOL vmlinux 0xcd57f7b0 radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0xcd5bbfff blk_queue_invalidate_tags -EXPORT_SYMBOL vmlinux 0xcd5c0d3f mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0xcd6a40c2 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0xcd77a034 __break_lease -EXPORT_SYMBOL vmlinux 0xcd7ede2a seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xcd81e4bc tcp_filter -EXPORT_SYMBOL vmlinux 0xcd86c87f __cond_resched_lock -EXPORT_SYMBOL vmlinux 0xcd8a3c62 netif_napi_add -EXPORT_SYMBOL vmlinux 0xcda5b271 pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdcee79f sock_create_kern -EXPORT_SYMBOL vmlinux 0xcdd3bf63 vme_bus_num -EXPORT_SYMBOL vmlinux 0xcde2d9b7 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0xcdfbb664 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xce07307a blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0xce122c99 release_firmware -EXPORT_SYMBOL vmlinux 0xce1d158c cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0xce214877 tty_hung_up_p -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce3a1c98 led_blink_set -EXPORT_SYMBOL vmlinux 0xce3b3f09 profile_pc -EXPORT_SYMBOL vmlinux 0xce438506 ps2_drain -EXPORT_SYMBOL vmlinux 0xce44d2aa mmc_flush_cache -EXPORT_SYMBOL vmlinux 0xce45e328 security_task_getsecid -EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce6880ce register_shrinker -EXPORT_SYMBOL vmlinux 0xce7850e1 crc32_le_shift -EXPORT_SYMBOL vmlinux 0xce852462 tty_name -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xceae504f cmdline_parts_free -EXPORT_SYMBOL vmlinux 0xcec886d8 param_get_long -EXPORT_SYMBOL vmlinux 0xced0c16e xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0xced2fbd1 xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0xced777cb proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0xcee64824 freezing_slow_path -EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 -EXPORT_SYMBOL vmlinux 0xcefaebd8 param_ops_string -EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcefde96d ppp_channel_index -EXPORT_SYMBOL vmlinux 0xcf12970e d_alloc_name -EXPORT_SYMBOL vmlinux 0xcf134f4e serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0xcf1fb1fd from_kprojid_munged -EXPORT_SYMBOL vmlinux 0xcf2ec14a vme_slot_num -EXPORT_SYMBOL vmlinux 0xcf461e88 eth_gro_receive -EXPORT_SYMBOL vmlinux 0xcf5ab98c inet_frags_init -EXPORT_SYMBOL vmlinux 0xcf81433e compat_ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0xcf8839b0 __free_pages -EXPORT_SYMBOL vmlinux 0xcf8c6bc7 iommu_tbl_range_alloc -EXPORT_SYMBOL vmlinux 0xcf976c87 kset_unregister -EXPORT_SYMBOL vmlinux 0xcfa2ec93 skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0xcfabe2a7 udp6_csum_init -EXPORT_SYMBOL vmlinux 0xcfc5e861 posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0xcfddce83 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0xcff6aa3a iterate_mounts -EXPORT_SYMBOL vmlinux 0xd00313c2 __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xd00c351e arp_send -EXPORT_SYMBOL vmlinux 0xd03e958c iov_iter_copy_from_user_atomic -EXPORT_SYMBOL vmlinux 0xd04ed39c vfs_rename -EXPORT_SYMBOL vmlinux 0xd051b73e block_truncate_page -EXPORT_SYMBOL vmlinux 0xd05bcf6c contig_page_data -EXPORT_SYMBOL vmlinux 0xd063e42b lock_sock_nested -EXPORT_SYMBOL vmlinux 0xd06e504e security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0xd06e7055 sock_no_bind -EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond -EXPORT_SYMBOL vmlinux 0xd0737eb6 vme_register_error_handler -EXPORT_SYMBOL vmlinux 0xd08f6239 sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc -EXPORT_SYMBOL vmlinux 0xd09b4c2b netdev_master_upper_dev_link_private -EXPORT_SYMBOL vmlinux 0xd0a2698f security_mmap_file -EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init -EXPORT_SYMBOL vmlinux 0xd0a84998 tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces -EXPORT_SYMBOL vmlinux 0xd0bd5cc4 icmpv6_send -EXPORT_SYMBOL vmlinux 0xd0d8804b mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0xd0eadc26 tty_check_change -EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0xd0f24443 ihold -EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format -EXPORT_SYMBOL vmlinux 0xd0f75bf7 input_flush_device -EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first -EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key -EXPORT_SYMBOL vmlinux 0xd1051e92 bdi_destroy -EXPORT_SYMBOL vmlinux 0xd10f5cc4 revert_creds -EXPORT_SYMBOL vmlinux 0xd122791f input_allocate_device -EXPORT_SYMBOL vmlinux 0xd125bc7e pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0xd1477426 inet_add_protocol -EXPORT_SYMBOL vmlinux 0xd151b4aa mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0xd15d2c66 pcie_get_mps -EXPORT_SYMBOL vmlinux 0xd16c86ad dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0xd16e341f d_lookup -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd1832aa8 lro_receive_skb -EXPORT_SYMBOL vmlinux 0xd18aaa85 sock_wmalloc -EXPORT_SYMBOL vmlinux 0xd19209ca key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0xd1ce1c56 of_find_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0xd1d78a60 sb_set_blocksize -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1edfdee security_path_mknod -EXPORT_SYMBOL vmlinux 0xd201d6f0 mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0xd20a930f inet_dgram_connect -EXPORT_SYMBOL vmlinux 0xd212a3fc md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0xd216db79 __bread_gfp -EXPORT_SYMBOL vmlinux 0xd237490d simple_dname -EXPORT_SYMBOL vmlinux 0xd242c960 tcf_exts_change -EXPORT_SYMBOL vmlinux 0xd24381af blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd2694389 set_page_dirty -EXPORT_SYMBOL vmlinux 0xd269d79e get_agp_version -EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd283c7bf dst_alloc -EXPORT_SYMBOL vmlinux 0xd2a1262b ata_dev_printk -EXPORT_SYMBOL vmlinux 0xd2b09ce5 __kmalloc -EXPORT_SYMBOL vmlinux 0xd2c10229 dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0xd2c97142 gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0xd2d107a0 inode_dio_wait -EXPORT_SYMBOL vmlinux 0xd2d5c369 balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2e94e36 __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd335a6ab truncate_setsize -EXPORT_SYMBOL vmlinux 0xd343eea9 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0xd3582af9 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0xd35b321d dev_get_by_index -EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0xd376699c lwtunnel_cmp_encap -EXPORT_SYMBOL vmlinux 0xd38f227a skb_insert -EXPORT_SYMBOL vmlinux 0xd39042dd md_flush_request -EXPORT_SYMBOL vmlinux 0xd3b0840c qdisc_destroy -EXPORT_SYMBOL vmlinux 0xd3b55285 __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xd3bdeaeb n_tty_compat_ioctl_helper -EXPORT_SYMBOL vmlinux 0xd3cc5415 of_scan_pci_bridge -EXPORT_SYMBOL vmlinux 0xd3f9b597 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0xd416388f key_reject_and_link -EXPORT_SYMBOL vmlinux 0xd44b7e21 to_tm -EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex -EXPORT_SYMBOL vmlinux 0xd4628ef3 key_type_keyring -EXPORT_SYMBOL vmlinux 0xd48293de tty_unregister_driver -EXPORT_SYMBOL vmlinux 0xd494df8e kill_fasync -EXPORT_SYMBOL vmlinux 0xd5271851 ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0xd54b3ceb rtmsg_ifinfo -EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0xd57f5529 seq_puts -EXPORT_SYMBOL vmlinux 0xd5826b4a inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xd594c32a blk_init_queue_node -EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames -EXPORT_SYMBOL vmlinux 0xd5950abc request_key -EXPORT_SYMBOL vmlinux 0xd59a1b44 qdisc_reset -EXPORT_SYMBOL vmlinux 0xd5af41f4 tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0xd5e62f2b mpage_readpage -EXPORT_SYMBOL vmlinux 0xd6135e8b inode_change_ok -EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0xd6206615 kmalloc_caches -EXPORT_SYMBOL vmlinux 0xd6290ba1 devfreq_resume_device -EXPORT_SYMBOL vmlinux 0xd62a9d68 inet_del_protocol -EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout -EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode -EXPORT_SYMBOL vmlinux 0xd65f94ab dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd68d9dd9 user_path_at_empty -EXPORT_SYMBOL vmlinux 0xd691b826 nobh_writepage -EXPORT_SYMBOL vmlinux 0xd6963227 remap_pfn_range -EXPORT_SYMBOL vmlinux 0xd6b55eac __insert_inode_hash -EXPORT_SYMBOL vmlinux 0xd6d63e9d lg_local_lock_cpu -EXPORT_SYMBOL vmlinux 0xd6e792a1 mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd6fd4053 __arch_hweight32 -EXPORT_SYMBOL vmlinux 0xd7153683 mdiobus_unregister -EXPORT_SYMBOL vmlinux 0xd716c411 mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0xd71a9c57 sock_no_listen -EXPORT_SYMBOL vmlinux 0xd721d057 nf_nat_decode_session_hook -EXPORT_SYMBOL vmlinux 0xd7295e98 dev_open -EXPORT_SYMBOL vmlinux 0xd73918e7 blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0xd745925b neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0xd74d5bc3 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function -EXPORT_SYMBOL vmlinux 0xd761a383 ioremap_prot -EXPORT_SYMBOL vmlinux 0xd78e7751 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0xd793d24d ata_print_version -EXPORT_SYMBOL vmlinux 0xd79907ba dev_get_iflink -EXPORT_SYMBOL vmlinux 0xd7b26d69 mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0xd7c5b328 devm_gpiod_put -EXPORT_SYMBOL vmlinux 0xd7de1a40 sk_prot_clear_portaddr_nulls -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7f59300 fasync_helper -EXPORT_SYMBOL vmlinux 0xd7f89220 skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0xd80051d1 d_add_ci -EXPORT_SYMBOL vmlinux 0xd807a76b simple_follow_link -EXPORT_SYMBOL vmlinux 0xd80ae170 input_set_capability -EXPORT_SYMBOL vmlinux 0xd8187278 cancel_dirty_page -EXPORT_SYMBOL vmlinux 0xd82b207a agp_put_bridge -EXPORT_SYMBOL vmlinux 0xd843ea82 blk_integrity_compare -EXPORT_SYMBOL vmlinux 0xd849b276 padata_alloc_possible -EXPORT_SYMBOL vmlinux 0xd84df5e0 sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0xd851cbd5 of_find_node_opts_by_path -EXPORT_SYMBOL vmlinux 0xd86ef78e skb_vlan_untag -EXPORT_SYMBOL vmlinux 0xd8921a61 phy_stop_interrupts -EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8aab812 mapping_tagged -EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region -EXPORT_SYMBOL vmlinux 0xd904029e lwtunnel_fill_encap -EXPORT_SYMBOL vmlinux 0xd9078530 dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0xd925f3aa blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0xd9396da3 invalidate_bdev -EXPORT_SYMBOL vmlinux 0xd93f3595 tty_lock -EXPORT_SYMBOL vmlinux 0xd95990c7 con_is_bound -EXPORT_SYMBOL vmlinux 0xd95d5de4 __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0xd96711b7 pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0xd97bb517 bio_copy_data -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd9996b7d skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0xd9b3877b nobh_write_end -EXPORT_SYMBOL vmlinux 0xd9bac924 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler -EXPORT_SYMBOL vmlinux 0xd9e42c26 gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0xd9f69a70 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0xd9fa668d audit_log_task_info -EXPORT_SYMBOL vmlinux 0xda239d09 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0xda262611 send_sig -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda458ab8 get_super -EXPORT_SYMBOL vmlinux 0xda47ac64 _dev_info -EXPORT_SYMBOL vmlinux 0xda4f4e74 bitmap_close_sync -EXPORT_SYMBOL vmlinux 0xda581324 filemap_write_and_wait -EXPORT_SYMBOL vmlinux 0xda74b3e6 phy_driver_unregister -EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0xda9091f6 end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0xda9fc7ae kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0xdaaf20c9 pci_bus_type -EXPORT_SYMBOL vmlinux 0xdabc1ea8 fsl_lbc_find -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdac545b9 lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0xdacebd95 init_buffer -EXPORT_SYMBOL vmlinux 0xdad7adff dqstats -EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell -EXPORT_SYMBOL vmlinux 0xdaeedcef nd_namespace_blk_validate -EXPORT_SYMBOL vmlinux 0xdb01198e fsl_upm_find -EXPORT_SYMBOL vmlinux 0xdb21316b skb_checksum -EXPORT_SYMBOL vmlinux 0xdb245948 dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0xdb3bcca6 cancel_delayed_work -EXPORT_SYMBOL vmlinux 0xdb3e0c03 kernel_setsockopt -EXPORT_SYMBOL vmlinux 0xdb4c736e simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0xdb59a934 __sk_dst_check -EXPORT_SYMBOL vmlinux 0xdb60e304 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb6f7199 jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0xdb72e015 param_set_charp -EXPORT_SYMBOL vmlinux 0xdb74c708 tty_write_room -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb7a2af4 mntget -EXPORT_SYMBOL vmlinux 0xdb7c2652 kern_path -EXPORT_SYMBOL vmlinux 0xdb81dc52 vfs_setpos -EXPORT_SYMBOL vmlinux 0xdb840801 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0xdba30a83 pid_task -EXPORT_SYMBOL vmlinux 0xdba5cb5e blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0xdbe0a0c9 param_ops_short -EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0xdc104bd1 tcp_getsockopt -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc214961 fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0xdc3c41a8 __crypto_memneq -EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 -EXPORT_SYMBOL vmlinux 0xdc4b9188 param_set_invbool -EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc753035 blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0xdc7c80f5 cdev_add -EXPORT_SYMBOL vmlinux 0xdc9498dd down -EXPORT_SYMBOL vmlinux 0xdca0cb99 release_sock -EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close -EXPORT_SYMBOL vmlinux 0xdcb1a44b sys_fillrect -EXPORT_SYMBOL vmlinux 0xdcb764ad memset -EXPORT_SYMBOL vmlinux 0xdcd3f6df xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0xdce73731 __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0xdcfb759e vme_bus_type -EXPORT_SYMBOL vmlinux 0xdd302ee5 sock_recvmsg -EXPORT_SYMBOL vmlinux 0xdd45c12d ip_mc_join_group -EXPORT_SYMBOL vmlinux 0xdd636ead __dev_get_by_name -EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy -EXPORT_SYMBOL vmlinux 0xdd719384 tcp_shutdown -EXPORT_SYMBOL vmlinux 0xdd72ce98 inode_add_bytes -EXPORT_SYMBOL vmlinux 0xdd9030af current_stack_pointer -EXPORT_SYMBOL vmlinux 0xdd955144 __debugger -EXPORT_SYMBOL vmlinux 0xdd9dc155 blk_start_queue_async -EXPORT_SYMBOL vmlinux 0xddb3769b lockref_mark_dead -EXPORT_SYMBOL vmlinux 0xddb5d754 filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0xddc21f61 vm_iomap_memory -EXPORT_SYMBOL vmlinux 0xddde40b8 inode_get_bytes -EXPORT_SYMBOL vmlinux 0xde00ca31 skb_push -EXPORT_SYMBOL vmlinux 0xde11cfad devm_iounmap -EXPORT_SYMBOL vmlinux 0xde3ef363 blk_peek_request -EXPORT_SYMBOL vmlinux 0xde3f2216 bdget_disk -EXPORT_SYMBOL vmlinux 0xde48e9ca _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0xde7063fc kernel_listen -EXPORT_SYMBOL vmlinux 0xde736099 of_device_get_match_data -EXPORT_SYMBOL vmlinux 0xde75e95d nvm_put_blk_unlocked -EXPORT_SYMBOL vmlinux 0xde7c86a5 __lock_buffer -EXPORT_SYMBOL vmlinux 0xde91448c load_vr_state -EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages -EXPORT_SYMBOL vmlinux 0xde94dca3 jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0xde97f4aa __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size -EXPORT_SYMBOL vmlinux 0xded27463 __f_setown -EXPORT_SYMBOL vmlinux 0xded77938 pci_find_pcie_root_port -EXPORT_SYMBOL vmlinux 0xdedcafdf always_delete_dentry -EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf494f97 find_vma -EXPORT_SYMBOL vmlinux 0xdf52bba3 single_open_size -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol -EXPORT_SYMBOL vmlinux 0xdf653ab4 scsi_dma_map -EXPORT_SYMBOL vmlinux 0xdf781023 inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0xdf8a60db ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdfa3f127 d_set_fallthru -EXPORT_SYMBOL vmlinux 0xdfa72a65 mmc_power_save_host -EXPORT_SYMBOL vmlinux 0xdfb3551c textsearch_register -EXPORT_SYMBOL vmlinux 0xdfbb2a72 nvm_set_rqd_ppalist -EXPORT_SYMBOL vmlinux 0xdfcaad0b agp_find_bridge -EXPORT_SYMBOL vmlinux 0xdfd48a26 inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0xdfd4a2ac input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0xdfd5d4f8 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0xdfd658e6 fget -EXPORT_SYMBOL vmlinux 0xdfd6e712 tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0xdfdf6e9e path_nosuid -EXPORT_SYMBOL vmlinux 0xdfee0b2a blk_init_queue -EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xdffea0be igrab -EXPORT_SYMBOL vmlinux 0xe010157d ipv6_select_ident -EXPORT_SYMBOL vmlinux 0xe01cfb0d scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0xe02425d6 mmc_release_host -EXPORT_SYMBOL vmlinux 0xe031e231 skb_checksum_help -EXPORT_SYMBOL vmlinux 0xe0459a23 blk_end_request_all -EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xe058de73 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0xe060912a nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone -EXPORT_SYMBOL vmlinux 0xe075c2eb param_set_short -EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool -EXPORT_SYMBOL vmlinux 0xe08e15b9 swiotlb_sync_single_for_device -EXPORT_SYMBOL vmlinux 0xe09c8685 mb_cache_shrink -EXPORT_SYMBOL vmlinux 0xe0adff9c genphy_config_init -EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0bceb01 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0xe0c6777f softnet_data -EXPORT_SYMBOL vmlinux 0xe0c9bbc5 account_page_dirtied -EXPORT_SYMBOL vmlinux 0xe0e298c0 blk_make_request -EXPORT_SYMBOL vmlinux 0xe0e34f55 dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0xe0ecfbba dentry_path_raw -EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -EXPORT_SYMBOL vmlinux 0xe11a863f posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0xe128dbca __blk_end_request_cur -EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0xe1436f31 mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0xe15f27cb kill_litter_super -EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xe17bf77b tcp_poll -EXPORT_SYMBOL vmlinux 0xe17e9111 inet_offloads -EXPORT_SYMBOL vmlinux 0xe1886d6b crypto_sha512_update -EXPORT_SYMBOL vmlinux 0xe18b667f cpufreq_global_kobject -EXPORT_SYMBOL vmlinux 0xe19f6d38 dm_unregister_target -EXPORT_SYMBOL vmlinux 0xe1b86729 i2c_put_adapter -EXPORT_SYMBOL vmlinux 0xe1c4bebf security_inode_init_security -EXPORT_SYMBOL vmlinux 0xe1c8f732 pipe_lock -EXPORT_SYMBOL vmlinux 0xe1d6a44c devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0xe1defc40 phy_write_mmd_indirect -EXPORT_SYMBOL vmlinux 0xe1ed8221 pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xe20372ae radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0xe20ab2b4 genl_notify -EXPORT_SYMBOL vmlinux 0xe21cc87d lease_get_mtime -EXPORT_SYMBOL vmlinux 0xe21dc5a7 __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0xe21ddcdb bioset_integrity_free -EXPORT_SYMBOL vmlinux 0xe220c073 ll_rw_block -EXPORT_SYMBOL vmlinux 0xe220ceb8 __debugger_sstep -EXPORT_SYMBOL vmlinux 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 -EXPORT_SYMBOL vmlinux 0xe24ecf0f twl6040_reg_write -EXPORT_SYMBOL vmlinux 0xe25c2c8a tcf_hash_check -EXPORT_SYMBOL vmlinux 0xe277eec3 copy_strings_kernel -EXPORT_SYMBOL vmlinux 0xe2966f2b cad_pid -EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t -EXPORT_SYMBOL vmlinux 0xe2af5b71 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0xe2b2f88e mmc_can_discard -EXPORT_SYMBOL vmlinux 0xe2ba05fb proc_create_mount_point -EXPORT_SYMBOL vmlinux 0xe2be5498 lg_global_unlock -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0xe2f4aa67 __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0xe317764d jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0xe31babb8 of_get_mac_address -EXPORT_SYMBOL vmlinux 0xe3309f7b tcf_em_register -EXPORT_SYMBOL vmlinux 0xe383bec1 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0xe3a53f4c sort -EXPORT_SYMBOL vmlinux 0xe3aad16b napi_get_frags -EXPORT_SYMBOL vmlinux 0xe3aaef04 nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xe3d8752e __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0xe3e4bb6b unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xe3ee923e keyring_alloc -EXPORT_SYMBOL vmlinux 0xe3f979bd mount_ns -EXPORT_SYMBOL vmlinux 0xe3fad866 of_mm_gpiochip_remove -EXPORT_SYMBOL vmlinux 0xe40a1105 netif_device_attach -EXPORT_SYMBOL vmlinux 0xe42f056f pskb_expand_head -EXPORT_SYMBOL vmlinux 0xe43e6f2e max8998_update_reg -EXPORT_SYMBOL vmlinux 0xe43f2cc8 skb_append_datato_frags -EXPORT_SYMBOL vmlinux 0xe44c16a0 blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0xe4528024 of_get_cpu_node -EXPORT_SYMBOL vmlinux 0xe478aa23 nlmsg_notify -EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 -EXPORT_SYMBOL vmlinux 0xe49a7dfc fifo_create_dflt -EXPORT_SYMBOL vmlinux 0xe49cb7d6 ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0xe4cd359e tcf_em_unregister -EXPORT_SYMBOL vmlinux 0xe4d79fdc skb_orphan_partial -EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array -EXPORT_SYMBOL vmlinux 0xe4eaab2e t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0xe4eddb95 elv_dispatch_add_tail -EXPORT_SYMBOL vmlinux 0xe4f1fd61 jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0xe4fe8ca1 _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe535668f dev_get_flags -EXPORT_SYMBOL vmlinux 0xe53749e7 security_inode_permission -EXPORT_SYMBOL vmlinux 0xe5409b78 __skb_checksum -EXPORT_SYMBOL vmlinux 0xe54df064 agp_generic_create_gatt_table -EXPORT_SYMBOL vmlinux 0xe5525054 pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0xe5578443 loop_backing_file -EXPORT_SYMBOL vmlinux 0xe55d6ca2 netdev_printk -EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton -EXPORT_SYMBOL vmlinux 0xe57d278a of_find_node_with_property -EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set -EXPORT_SYMBOL vmlinux 0xe5bbc54c genphy_read_status -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xe5f8db92 d_instantiate -EXPORT_SYMBOL vmlinux 0xe6190b85 block_invalidatepage -EXPORT_SYMBOL vmlinux 0xe62b2525 devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0xe643879c consume_skb -EXPORT_SYMBOL vmlinux 0xe65a73d7 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0xe66452ab dql_init -EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe69a9df4 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0xe69bd4ab ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0xe6a77109 skb_set_owner_w -EXPORT_SYMBOL vmlinux 0xe6aa61c1 scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0xe6ad1317 skb_clone -EXPORT_SYMBOL vmlinux 0xe6c41ba0 dev_load -EXPORT_SYMBOL vmlinux 0xe6cb0039 km_query -EXPORT_SYMBOL vmlinux 0xe6f05bc1 unmap_underlying_metadata -EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock -EXPORT_SYMBOL vmlinux 0xe7020940 seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0xe71d4f90 __nd_iostat_start -EXPORT_SYMBOL vmlinux 0xe71d5436 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0xe750266b nd_region_acquire_lane -EXPORT_SYMBOL vmlinux 0xe757aa81 phy_get_eee_err -EXPORT_SYMBOL vmlinux 0xe76f6cf6 of_io_request_and_map -EXPORT_SYMBOL vmlinux 0xe77408b5 d_alloc -EXPORT_SYMBOL vmlinux 0xe77e14fe nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx -EXPORT_SYMBOL vmlinux 0xe7bbfbbb netpoll_send_udp -EXPORT_SYMBOL vmlinux 0xe7c8ba02 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0xe7ce7439 _memcpy_fromio -EXPORT_SYMBOL vmlinux 0xe7cf9460 xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe80befe0 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0xe80cfc48 dev_add_pack -EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0xe82fdd22 __scsi_add_device -EXPORT_SYMBOL vmlinux 0xe830758d fsnotify_alloc_group -EXPORT_SYMBOL vmlinux 0xe83a7740 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0xe8424d67 kernel_bind -EXPORT_SYMBOL vmlinux 0xe84ed5bc bdev_stack_limits -EXPORT_SYMBOL vmlinux 0xe8995f6f phys_mem_access_prot -EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0xe8b654a8 vme_lm_request -EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xe8c438f3 proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0xe8e91a58 of_graph_get_port_by_id -EXPORT_SYMBOL vmlinux 0xe8eae77a tty_port_close_start -EXPORT_SYMBOL vmlinux 0xe8ef0ff0 current_kernel_time64 -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe9154cc1 param_get_bool -EXPORT_SYMBOL vmlinux 0xe922e4c5 of_phy_attach -EXPORT_SYMBOL vmlinux 0xe9344035 tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0xe9378d58 idr_get_next -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe95a7de8 nvm_submit_ppa -EXPORT_SYMBOL vmlinux 0xe980efff phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0xe99abf86 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0xe9a407a7 inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0xe9aaa925 mmc_wait_for_app_cmd -EXPORT_SYMBOL vmlinux 0xe9bd1ad5 agp_collect_device_status -EXPORT_SYMBOL vmlinux 0xe9ef5216 inet_addr_type -EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len -EXPORT_SYMBOL vmlinux 0xea11c1b6 get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xea16b716 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0xea18a7cc netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0xea2c1b1e abx500_mask_and_set_register_interruptible -EXPORT_SYMBOL vmlinux 0xea2d0cda tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0xea315f10 backlight_device_unregister -EXPORT_SYMBOL vmlinux 0xea477b83 alloc_buffer_head -EXPORT_SYMBOL vmlinux 0xea4bc710 neigh_destroy -EXPORT_SYMBOL vmlinux 0xea4ce729 tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0xea4fdcce of_node_put -EXPORT_SYMBOL vmlinux 0xea50ee57 iov_iter_init -EXPORT_SYMBOL vmlinux 0xea59cb66 vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0xea5a3fcc __page_symlink -EXPORT_SYMBOL vmlinux 0xea659992 cap_mmap_file -EXPORT_SYMBOL vmlinux 0xea70aa39 textsearch_unregister -EXPORT_SYMBOL vmlinux 0xea7a334f pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table -EXPORT_SYMBOL vmlinux 0xea82f44c xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0xea8e6c53 file_remove_privs -EXPORT_SYMBOL vmlinux 0xea968c96 ___ratelimit -EXPORT_SYMBOL vmlinux 0xea9aecc9 netlink_broadcast -EXPORT_SYMBOL vmlinux 0xeac609f8 dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0xeac8ee31 phy_start_interrupts -EXPORT_SYMBOL vmlinux 0xeacc46ac ps2_end_command -EXPORT_SYMBOL vmlinux 0xeaf7b7d9 padata_do_serial -EXPORT_SYMBOL vmlinux 0xeb2f84a9 devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0xeb34e6ac take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb40c1bd blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0xeb4384cd swiotlb_dma_supported -EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact -EXPORT_SYMBOL vmlinux 0xeb48540c tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0xeb60e8c4 twl6040_power -EXPORT_SYMBOL vmlinux 0xeb62d33a dev_mc_del -EXPORT_SYMBOL vmlinux 0xeb6c3285 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0xeb8867fa ab3100_event_register -EXPORT_SYMBOL vmlinux 0xeba48336 vme_new_dma_list -EXPORT_SYMBOL vmlinux 0xebb1bb72 blk_alloc_queue -EXPORT_SYMBOL vmlinux 0xebe1f173 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0xebea7d57 set_cached_acl -EXPORT_SYMBOL vmlinux 0xebefe8ea compat_mc_getsockopt -EXPORT_SYMBOL vmlinux 0xebf8148e skb_put -EXPORT_SYMBOL vmlinux 0xec04b905 scsi_cmd_ioctl -EXPORT_SYMBOL vmlinux 0xec0d74ac unregister_key_type -EXPORT_SYMBOL vmlinux 0xec147f6a setattr_copy -EXPORT_SYMBOL vmlinux 0xec199aa6 reservation_object_add_shared_fence -EXPORT_SYMBOL vmlinux 0xec205496 netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0xec2b7496 of_phy_is_fixed_link -EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec6c393f mmc_gpio_request_ro -EXPORT_SYMBOL vmlinux 0xec8e72d8 __bio_clone_fast -EXPORT_SYMBOL vmlinux 0xec9ff2e7 lwtunnel_state_alloc -EXPORT_SYMBOL vmlinux 0xecb1ec13 set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0xecb3ccb9 pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0xecbb926f xor_altivec_3 -EXPORT_SYMBOL vmlinux 0xecbd35c0 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xecd982a2 __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xecdfc1ea register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xece886ef pci_bus_put -EXPORT_SYMBOL vmlinux 0xed00dcfa task_tgid_nr_ns -EXPORT_SYMBOL vmlinux 0xed134eb7 simple_open -EXPORT_SYMBOL vmlinux 0xed218a17 blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0xed5564ac padata_stop -EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xed617ef4 dma_sync_wait -EXPORT_SYMBOL vmlinux 0xed9a4545 jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xedb985ad dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedc410d0 udplite_table -EXPORT_SYMBOL vmlinux 0xedcf304d pci_request_region -EXPORT_SYMBOL vmlinux 0xedd2215f brioctl_set -EXPORT_SYMBOL vmlinux 0xedf0ec68 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0xedf1f440 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long -EXPORT_SYMBOL vmlinux 0xee086c61 mutex_unlock -EXPORT_SYMBOL vmlinux 0xee0d0be8 get_acl -EXPORT_SYMBOL vmlinux 0xee0d7b87 padata_do_parallel -EXPORT_SYMBOL vmlinux 0xee1824f9 __get_user_pages -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee485745 inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0xee600516 load_nls -EXPORT_SYMBOL vmlinux 0xee602f61 atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee9c7b71 bdev_read_only -EXPORT_SYMBOL vmlinux 0xeea4d9b3 tcp_proc_unregister -EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeecf1b41 read_cache_page -EXPORT_SYMBOL vmlinux 0xeee1ad47 nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0xeef161aa groups_free -EXPORT_SYMBOL vmlinux 0xef0ffc27 of_translate_address -EXPORT_SYMBOL vmlinux 0xef15fcea inet_frag_destroy -EXPORT_SYMBOL vmlinux 0xef1ef81b scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xef25f4fe kernel_accept -EXPORT_SYMBOL vmlinux 0xef3c8152 vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0xef45a194 dst_destroy -EXPORT_SYMBOL vmlinux 0xef7753f2 mmc_start_req -EXPORT_SYMBOL vmlinux 0xef7fa957 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0xef9429fa simple_transaction_read -EXPORT_SYMBOL vmlinux 0xefa80845 alloc_fddidev -EXPORT_SYMBOL vmlinux 0xefae3edc agp_free_memory -EXPORT_SYMBOL vmlinux 0xefb55cd0 key_put -EXPORT_SYMBOL vmlinux 0xefc0966e __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0xefcdb31b pci_claim_resource -EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0xefde1bbe flush_dcache_range -EXPORT_SYMBOL vmlinux 0xeff84e97 input_close_device -EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf003f9c8 rtnl_notify -EXPORT_SYMBOL vmlinux 0xf0179458 fput -EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0xf03c6f11 register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xf0445334 get_gendisk -EXPORT_SYMBOL vmlinux 0xf0476fb9 scsi_host_lookup -EXPORT_SYMBOL vmlinux 0xf04c55d4 scsi_is_target_device -EXPORT_SYMBOL vmlinux 0xf04cbf2c seq_open -EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be -EXPORT_SYMBOL vmlinux 0xf06c122e security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0xf073edce ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0xf07fe9a0 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag -EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int -EXPORT_SYMBOL vmlinux 0xf09f06ce __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0xf0a217a9 vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0xf0a8237a radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0xf0c5cd55 ppp_register_channel -EXPORT_SYMBOL vmlinux 0xf0d08074 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0xf0d70b5d vme_unregister_driver -EXPORT_SYMBOL vmlinux 0xf0de5bfb __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort -EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info -EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 -EXPORT_SYMBOL vmlinux 0xf119615b max8925_bulk_write -EXPORT_SYMBOL vmlinux 0xf11cd6ce down_interruptible -EXPORT_SYMBOL vmlinux 0xf12f8a34 param_get_uint -EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init -EXPORT_SYMBOL vmlinux 0xf1537c9c lock_sock_fast -EXPORT_SYMBOL vmlinux 0xf16c9b0b mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0xf16df3a9 mmc_fixup_device -EXPORT_SYMBOL vmlinux 0xf183189b __ioremap_at -EXPORT_SYMBOL vmlinux 0xf188b9e8 compat_tcp_getsockopt -EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps -EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf1b64bfd powerpc_debugfs_root -EXPORT_SYMBOL vmlinux 0xf1b8c676 write_dirty_buffer -EXPORT_SYMBOL vmlinux 0xf1d63be5 skb_vlan_pop -EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1e75399 read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf1f70e4e input_event -EXPORT_SYMBOL vmlinux 0xf1fcc3dd tc_classify -EXPORT_SYMBOL vmlinux 0xf2060323 pci_enable_device -EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq -EXPORT_SYMBOL vmlinux 0xf217726d __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xf2185b28 locks_mandatory_area -EXPORT_SYMBOL vmlinux 0xf21b65f0 sock_no_accept -EXPORT_SYMBOL vmlinux 0xf22881e8 lg_local_lock -EXPORT_SYMBOL vmlinux 0xf229b700 sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0xf2365ebe i2c_master_recv -EXPORT_SYMBOL vmlinux 0xf23e8d9c bio_integrity_endio -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf2459939 dev_mc_unsync -EXPORT_SYMBOL vmlinux 0xf24967b7 agp3_generic_tlbflush -EXPORT_SYMBOL vmlinux 0xf24b6d2b xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0xf26aac78 mmc_hw_reset -EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered -EXPORT_SYMBOL vmlinux 0xf2a2b163 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0xf2ba1c6b of_clk_get_by_name -EXPORT_SYMBOL vmlinux 0xf2c20084 bitmap_unplug -EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf30dccbc __skb_tx_hash -EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform -EXPORT_SYMBOL vmlinux 0xf322a206 bit_waitqueue -EXPORT_SYMBOL vmlinux 0xf32f3710 fd_install -EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user -EXPORT_SYMBOL vmlinux 0xf33c89eb scmd_printk -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf35305c3 max8925_reg_read -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf3813b56 netif_napi_del -EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf38ea701 mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf3a3c267 generic_error_remove_page -EXPORT_SYMBOL vmlinux 0xf3c699d0 vme_register_bridge -EXPORT_SYMBOL vmlinux 0xf3cbbe76 pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0xf3dde195 __ps2_command -EXPORT_SYMBOL vmlinux 0xf3e02029 devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3fdf0b2 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0xf3ffd65d inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0xf4066a97 blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0xf41aad84 ip6_expire_frag_queue -EXPORT_SYMBOL vmlinux 0xf43f91f9 mmc_can_sanitize -EXPORT_SYMBOL vmlinux 0xf4408f05 scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep -EXPORT_SYMBOL vmlinux 0xf45ef7a2 do_splice_from -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf47cca72 blk_complete_request -EXPORT_SYMBOL vmlinux 0xf4995f11 insert_inode_locked -EXPORT_SYMBOL vmlinux 0xf49fd736 nd_integrity_init -EXPORT_SYMBOL vmlinux 0xf4b46c37 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0xf4bc8d09 mb_cache_entry_insert -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4e7730d generic_fillattr -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf51ae235 touch_nmi_watchdog -EXPORT_SYMBOL vmlinux 0xf51bf88b nf_hooks_needed -EXPORT_SYMBOL vmlinux 0xf5222143 _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0xf52423e5 filemap_fault -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf53e38ed pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0xf543dc46 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0xf55b3b3d __arch_hweight16 -EXPORT_SYMBOL vmlinux 0xf55ccae1 pcim_pin_device -EXPORT_SYMBOL vmlinux 0xf57cdc79 bitmap_start_sync -EXPORT_SYMBOL vmlinux 0xf581ee91 lru_cache_add_file -EXPORT_SYMBOL vmlinux 0xf5936c96 kill_anon_super -EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set -EXPORT_SYMBOL vmlinux 0xf5a62ecc _memset_io -EXPORT_SYMBOL vmlinux 0xf5aff767 phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0xf5b25e2d netif_device_detach -EXPORT_SYMBOL vmlinux 0xf5bca8da locks_init_lock -EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xf5d7016a inet6_register_protosw -EXPORT_SYMBOL vmlinux 0xf5da8f6d d_prune_aliases -EXPORT_SYMBOL vmlinux 0xf5e1558d crash_shutdown_unregister -EXPORT_SYMBOL vmlinux 0xf5e93b05 lookup_bdev -EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command -EXPORT_SYMBOL vmlinux 0xf61c6143 zero_fill_bio -EXPORT_SYMBOL vmlinux 0xf62a02e4 jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl -EXPORT_SYMBOL vmlinux 0xf63b9990 filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0xf65343c0 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0xf6713810 init_task -EXPORT_SYMBOL vmlinux 0xf675cdd7 netpoll_send_skb_on_dev -EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xf68e63c9 dcb_setapp -EXPORT_SYMBOL vmlinux 0xf6af25e6 km_policy_expired -EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table -EXPORT_SYMBOL vmlinux 0xf6e73e31 lookup_one_len -EXPORT_SYMBOL vmlinux 0xf6eba011 fb_show_logo -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6ee00d5 vga_client_register -EXPORT_SYMBOL vmlinux 0xf6fa8001 scsi_init_io -EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf742c4b1 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0xf746b677 skb_copy_bits -EXPORT_SYMBOL vmlinux 0xf7584a9c find_font -EXPORT_SYMBOL vmlinux 0xf76a0f02 blk_mq_abort_requeue_list -EXPORT_SYMBOL vmlinux 0xf773b686 kernel_getpeername -EXPORT_SYMBOL vmlinux 0xf781bd4c pci_scan_slot -EXPORT_SYMBOL vmlinux 0xf788f206 blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0xf78cbd09 proc_set_size -EXPORT_SYMBOL vmlinux 0xf7ad1ace inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0xf7b3cd7c dmam_free_noncoherent -EXPORT_SYMBOL vmlinux 0xf7b71cf4 key_link -EXPORT_SYMBOL vmlinux 0xf7c4fe0b tty_kref_put -EXPORT_SYMBOL vmlinux 0xf7cdc736 clkdev_add -EXPORT_SYMBOL vmlinux 0xf7cfc801 of_find_node_by_phandle -EXPORT_SYMBOL vmlinux 0xf7d6dbe2 nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0xf7d939f7 jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0xf7e7533b generic_pipe_buf_confirm -EXPORT_SYMBOL vmlinux 0xf7ef5f43 __skb_gso_segment -EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf812cff6 memscan -EXPORT_SYMBOL vmlinux 0xf825dbed ip_route_me_harder -EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area -EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82bc807 __napi_complete -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf84bb781 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0xf84cfb82 sock_register -EXPORT_SYMBOL vmlinux 0xf862fc1f vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0xf8755967 scm_fp_dup -EXPORT_SYMBOL vmlinux 0xf87a483c sock_update_memcg -EXPORT_SYMBOL vmlinux 0xf8887ebc tcf_hash_create -EXPORT_SYMBOL vmlinux 0xf894ea3d fixed_phy_update_state -EXPORT_SYMBOL vmlinux 0xf8b3df6b sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0xf8c74c6b nobh_write_begin -EXPORT_SYMBOL vmlinux 0xf8cd72f5 d_set_d_op -EXPORT_SYMBOL vmlinux 0xf8d04f09 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0xf8e50f82 console_stop -EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xf8f117bc __secpath_destroy -EXPORT_SYMBOL vmlinux 0xf8f5f461 scsi_remove_device -EXPORT_SYMBOL vmlinux 0xf90727af fbcon_set_rotate -EXPORT_SYMBOL vmlinux 0xf90eb422 generic_file_write_iter -EXPORT_SYMBOL vmlinux 0xf9228003 get_immrbase -EXPORT_SYMBOL vmlinux 0xf93601b1 tcp_hashinfo -EXPORT_SYMBOL vmlinux 0xf952f33a jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0xf981cd94 kmalloc_dma_caches -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9b54bb3 input_register_handler -EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat -EXPORT_SYMBOL vmlinux 0xf9cf89fc scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0xf9e6dc3d i8042_remove_filter -EXPORT_SYMBOL vmlinux 0xf9f9f729 iommu_tbl_pool_init -EXPORT_SYMBOL vmlinux 0xfa0d7e6e inet_add_offload -EXPORT_SYMBOL vmlinux 0xfa17033b simple_write_end -EXPORT_SYMBOL vmlinux 0xfa205d13 netdev_state_change -EXPORT_SYMBOL vmlinux 0xfa3b0e46 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa5ae61d lro_flush_all -EXPORT_SYMBOL vmlinux 0xfa7b2a43 nvdimm_revalidate_disk -EXPORT_SYMBOL vmlinux 0xfaa6dcfd i2c_transfer -EXPORT_SYMBOL vmlinux 0xfab6b0dc cleancache_register_ops -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr -EXPORT_SYMBOL vmlinux 0xfb26dd57 generic_update_time -EXPORT_SYMBOL vmlinux 0xfb50b903 pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0xfb64cddf kill_block_super -EXPORT_SYMBOL vmlinux 0xfb653638 posix_test_lock -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 -EXPORT_SYMBOL vmlinux 0xfb96db6e invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0xfba9b66c netif_skb_features -EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock -EXPORT_SYMBOL vmlinux 0xfbb50fbf km_new_mapping -EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbcbe8d5 get_cached_acl -EXPORT_SYMBOL vmlinux 0xfbe085be set_user_nice -EXPORT_SYMBOL vmlinux 0xfbea40d1 __percpu_counter_init -EXPORT_SYMBOL vmlinux 0xfbf2a993 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem -EXPORT_SYMBOL vmlinux 0xfc039b56 tcf_register_action -EXPORT_SYMBOL vmlinux 0xfc0f7c03 bio_uncopy_user -EXPORT_SYMBOL vmlinux 0xfc1cd3ff vfs_getxattr_alloc -EXPORT_SYMBOL vmlinux 0xfc3387de pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0xfc37c4dc rtnl_unicast -EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap -EXPORT_SYMBOL vmlinux 0xfc3b160f mempool_create_node -EXPORT_SYMBOL vmlinux 0xfc51fb28 get_tz_trend -EXPORT_SYMBOL vmlinux 0xfc6dc01e jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0xfc818ed2 inet_del_offload -EXPORT_SYMBOL vmlinux 0xfca90b09 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0xfcaa1179 unlink_framebuffer -EXPORT_SYMBOL vmlinux 0xfcb926cd kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0xfcbcdd07 __breadahead -EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0xfcc390ff netdev_features_change -EXPORT_SYMBOL vmlinux 0xfccc333b dquot_disable -EXPORT_SYMBOL vmlinux 0xfcd83f20 __scm_send -EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcf80369 ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0xfd24bc05 mutex_lock -EXPORT_SYMBOL vmlinux 0xfd2d96aa set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0xfd787d90 ps2_init -EXPORT_SYMBOL vmlinux 0xfd8367c5 sock_no_getsockopt -EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xfdb6cedc _raw_read_unlock_bh -EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be -EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0xfdc1f3f4 ata_link_printk -EXPORT_SYMBOL vmlinux 0xfded48ed enable_kernel_fp -EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe17047b kblockd_schedule_delayed_work_on -EXPORT_SYMBOL vmlinux 0xfe35aa4a percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0xfe5362f4 bio_chain -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe5ed923 pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0xfe8adf9b generic_perform_write -EXPORT_SYMBOL vmlinux 0xfe8c6bc5 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xfea119c9 skb_queue_tail -EXPORT_SYMBOL vmlinux 0xfeaddfae bioset_free -EXPORT_SYMBOL vmlinux 0xfecaada4 blk_init_tags -EXPORT_SYMBOL vmlinux 0xfecd961a napi_gro_receive -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfedd7e4b __invalidate_device -EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0xff02282f get_mm_exe_file -EXPORT_SYMBOL vmlinux 0xff0ee350 scsi_print_result -EXPORT_SYMBOL vmlinux 0xff19f5b8 current_in_userns -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff2c178e compat_sock_get_timestampns -EXPORT_SYMBOL vmlinux 0xff324466 phy_disconnect -EXPORT_SYMBOL vmlinux 0xff63add8 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource -EXPORT_SYMBOL vmlinux 0xff782a6b vfs_symlink -EXPORT_SYMBOL vmlinux 0xff82afee elv_rb_former_request -EXPORT_SYMBOL vmlinux 0xff868426 vfs_readf -EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy -EXPORT_SYMBOL vmlinux 0xff95e0d0 devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0xffa30465 elevator_alloc -EXPORT_SYMBOL vmlinux 0xffcb82a5 pci_dev_get -EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function -EXPORT_SYMBOL_GPL crypto/af_alg 0x1c15ef9a af_alg_link_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x2a5bab6b af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x4ac6dba7 af_alg_cmsg_send -EXPORT_SYMBOL_GPL crypto/af_alg 0x58716898 af_alg_wait_for_completion -EXPORT_SYMBOL_GPL crypto/af_alg 0x72e70417 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0x765ca73b af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x78fdcdcd af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x8ea1ae8c af_alg_complete -EXPORT_SYMBOL_GPL crypto/af_alg 0x8f89f843 af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xa28294e8 af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xd2ab5440 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x93a0d34d async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x461568bc async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x53c1b6c6 async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x0d79d613 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x816c5b37 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x61421e0b async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb667b23b async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xc26964d2 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xd006c25e async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x82e4b243 async_xor_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xde66c4a9 async_xor -EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0x67e4c994 blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0xbd177a76 cast5_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0xa34134f0 cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 -EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 -EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 -EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x6041175b crypto_chacha20_setkey -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x880e1c93 crypto_chacha20_crypt -EXPORT_SYMBOL_GPL crypto/cryptd 0x0a5297eb cryptd_alloc_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x0adcd3e0 cryptd_ablkcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x20f7ebd8 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0x2835395d cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x342d9d7a cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x400a1584 cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x45c29b1e cryptd_free_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x82d5006c cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x880e80d3 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xce625e43 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey -EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey -EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table -EXPORT_SYMBOL_GPL crypto/lrw 0x74222a7d lrw_crypt -EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table -EXPORT_SYMBOL_GPL crypto/mcryptd 0x0fcb7d7b shash_ahash_mcryptd_final -EXPORT_SYMBOL_GPL crypto/mcryptd 0x1510412b shash_ahash_mcryptd_update -EXPORT_SYMBOL_GPL crypto/mcryptd 0x8347667c mcryptd_flusher -EXPORT_SYMBOL_GPL crypto/mcryptd 0x85997593 mcryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/mcryptd 0x9d4ec094 shash_ahash_mcryptd_finup -EXPORT_SYMBOL_GPL crypto/mcryptd 0xa0bff331 mcryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/mcryptd 0xcdcd9ca5 shash_ahash_mcryptd_digest -EXPORT_SYMBOL_GPL crypto/mcryptd 0xd968951f mcryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0xe42db579 mcryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x5cdded32 crypto_poly1305_final -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x5f4201df crypto_poly1305_init -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x782e527f crypto_poly1305_update -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x95cc92cd crypto_poly1305_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbca157b9 serpent_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0x29c6e0aa twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey -EXPORT_SYMBOL_GPL crypto/xts 0x0f76382c xts_crypt -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x013daeb1 ahci_start_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x06fe6d55 ahci_init_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x102c5f34 ahci_sdev_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x17f0df81 ahci_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x329773fc ahci_handle_port_intr -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3763b4b0 ahci_check_ready -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3e955780 ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5c968ea4 ahci_set_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x627f2529 ahci_reset_em -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x78965b5b ahci_port_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x86ab6de7 ahci_start_fis_rx -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8e9bf012 ahci_shost_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x95efec48 ahci_stop_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x97617d0f ahci_error_handler -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa628c6de ahci_reset_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xafe07d6a ahci_save_initial_config -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb25a56d7 ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb85c6da4 ahci_qc_issue -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc09d47ff ahci_print_info -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc48d3985 ahci_kick_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xde9eed51 ahci_host_activate -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe732a7a7 ahci_do_softreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf69e0b65 ahci_dev_classify -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x18f9cfa6 ahci_platform_enable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x466a2f5d ahci_platform_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9edf9783 ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xaeb4cb89 ahci_platform_get_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xbf07ccd0 ahci_platform_enable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xec1f4dde ahci_platform_disable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xec4a91c5 ahci_platform_disable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf3513e35 ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xfb6758d9 ahci_platform_init_host -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x40549bb2 __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0xcbc593fe sis_info133_for_sata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x169ccfa3 __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x86a01b41 __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xb42b330d __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xb76c2252 __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1ff13e42 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x20aa6762 bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x239e6fca bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2a53f46e bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x42faca27 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5bcc1839 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x713ab5f9 bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x75872aa7 bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7fac6fbc bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8017b2ae bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x85455b0f bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x86682c15 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbee76035 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc21f7695 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc41fb1a6 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcc9c374a bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd7f5e230 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdc7439fe bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xea26063e bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xea7201e7 bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf483c29e bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf92065ce __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf9fe4ec9 bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfd32d2a0 bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x19a9d4c3 btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x546de0d1 btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x5e851abb btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xa0c4cea2 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb97411fc btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd3115f77 btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1e7c1c84 btintel_set_diag_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x21ba2e67 btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2fd90a52 btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5615a886 btintel_hw_error -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5d985bc6 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6b599ffb btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6be3794c btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x757e4f58 btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8e680512 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xac94af6d btintel_secure_send -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc9d163fc btintel_set_event_mask -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3a7c8d8b btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3afea7f5 btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5664cf7a btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6a71892f btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x74805416 btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x74c9c73c btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7cc4890a btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7e2b2902 btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x94b59b03 btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc9f975b7 btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xff2f2cda btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x4722b27c qca_uart_setup_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x69b08740 qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x68f48b22 btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xede7bf87 h4_recv_buf -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x00c6b55a dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x66f8731c dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x834a4a34 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x9c4b1afa dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf6967cac dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/fsldma 0x4f90f402 fsl_dma_external_start -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x0955b5fb hsu_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x7ab328d4 hsu_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xec6656f0 hsu_dma_irq -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x1ac8e571 vchan_tx_submit -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x43a96dca vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x4c5a5616 vchan_init -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x5125a157 vchan_find_desc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x17cc21d2 edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x30ae8cea edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x44a35b46 edac_device_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x55e070b6 edac_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x60110ea7 edac_mc_del_mc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x61c8c1d6 edac_device_handle_ue -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6203e826 edac_mc_free -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x630d9fc5 edac_pci_handle_pe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x64cdabf6 edac_mc_alloc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x78c0308b find_mci_by_dev -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x80133c8a edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa2b3a27c edac_pci_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xaafde48b edac_pci_reset_delay_period -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb0107a90 edac_pci_handle_npe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc1c6b7d1 edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc745e57f edac_device_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc8ed5fc5 edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd105ea1f edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd3c1011a edac_pci_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd614ffe6 edac_device_handle_ce -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd6574f6f edac_device_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe10dba5d edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xfd8b609b edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2a18ca10 fpga_mgr_buf_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5a3ce502 of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x654d4406 fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x89643197 fpga_mgr_firmware_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8caf3842 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9b6e586f fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x5567f7d0 bgpio_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x8d5ae746 bgpio_init -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x2c70b68b __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x8ccdcb2d __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x036e5594 drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4414f38e drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x50cd9064 drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc93e5f98 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfce0b01e drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xffc29ca9 of_get_drm_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x05633f30 ttm_dma_page_alloc_debugfs -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x43af8d61 ttm_dma_populate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xa6e3ddc6 ttm_dma_unpopulate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0fd0a2d6 hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0x24556c67 hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2c6ac441 hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x379378fc hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3c64ea6f hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x477e2b16 hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4c19b399 hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x51b5541a hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x542ba90a hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x57630164 hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5b50ad3e __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5dc1d05b hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6089d467 hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0x61b44576 hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6d64a148 hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6fd4e921 hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x702de728 hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7967fc8a hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7a1d571e hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7f0fe30c hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x82199dcb hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x92effa82 hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9b405965 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9b73824f hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9c67d991 hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0xafc0b694 hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc218bd7b __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc23fa21d hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc836016a hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xca26d935 hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe579374d hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe77c4a58 hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xebbe19b9 hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0xee5cbfd1 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf925c93c hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfc3f5cb0 hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0xc4418147 roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x10702424 roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x19b1a9eb roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x65230187 roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x8f6b02a3 roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xb11b5598 roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xb1800777 roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x3b503761 sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4d80fa98 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7d1ecfbb sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x8847496a sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x8c063f45 hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9d124773 sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc4fdb627 sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd7fd8073 sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xee298521 sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x7d96d9e7 hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0c10d965 hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x21236921 hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x259e3904 hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x36f5df63 hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3a8b2231 hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4b0739c3 hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6d20f10a hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6ef40ff8 hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x756c42df hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7b59f4cc hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7e55e465 hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x855f2910 hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x924ee0a5 hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9aa73343 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9e85bdc8 hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xaa502fd8 hsi_add_clients_from_dt -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd0c9d4c0 hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdd33b71b hsi_release_port -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xa7dbaa26 adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xc8d35ed7 adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x143f9b09 pmbus_do_probe -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x36986be9 pmbus_read_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4474102f pmbus_regulator_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x47628a1d pmbus_check_word_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x58539d6b pmbus_set_page -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x7976be5c pmbus_get_driver_info -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8ae267e1 pmbus_write_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8f8fc0c9 pmbus_read_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa5211896 pmbus_check_byte_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xad7b64c8 pmbus_clear_cache -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb218e5be pmbus_write_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xd4bd09d4 pmbus_write_byte -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe09f39bb pmbus_clear_faults -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xeddde256 pmbus_update_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xfe1edcde pmbus_do_remove -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x38adac51 intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5f871375 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x63de2aad intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7cf888f1 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x8027efb5 intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xcb8f92f6 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf3610c43 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x128b3d7e stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x308908dd stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5a9c70e4 stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x6e51000d stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd62975c1 stm_source_write -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x471f5bf6 i2c_dw_probe -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x4c188b86 i2c_dw_disable_int -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x52a98a98 i2c_dw_read_comp_param -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xd8d21c37 i2c_dw_disable -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xe27b1d6c i2c_dw_init -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x1abfe298 i2c_add_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x41137a41 i2c_del_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x7a4682ac i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xa904fd05 i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x147b9e6f bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x51740209 bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xe8efd083 bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x27307824 ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x51721ca8 ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x59b5d673 ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x63bcd605 ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x6f54c0c7 ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x78162b45 ad_sd_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x8ec5b401 ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xb4af02ec ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd75cb709 ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x8026a06c iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x9ad1e077 iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x333e6d27 ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x68d02059 ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x779a2cec bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xc2153657 bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xde799942 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x087fef0d adis_remove_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0b7d1cfb adis_init -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x2b5fb994 adis_reset -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x2f2a4f24 adis_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x3466e6df adis_check_status -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x5963f4df adis_read_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x8a33168b adis_write_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xbe7f93c2 adis_initial_startup -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xcfd0f036 adis_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xe925c474 adis_update_scan_mode -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xe9e3b7a5 adis_probe_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf0d32045 adis_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x05268d14 devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0e04dd4d iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x12ad9a3d iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1425ca44 iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3454704d iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3c71c7f0 iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3ca5cb78 iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5076f6be iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x50b74184 iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x54912a9d devm_iio_device_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6ebadcf4 devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x734d681c devm_iio_trigger_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x77992234 devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x790476b3 iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x81eee3ed iio_update_demux -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8d037f5c iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x90348086 iio_scan_mask_query -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9ba7b204 iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9d530ca7 iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9f1cc1fc iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb2f74b62 iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb3303aeb iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xba835e1d iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc2d264ae iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd4787aa2 iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdaaa69c5 iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe53bacbb iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe8a04593 devm_iio_device_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xed3aa942 iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf53f7c19 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf75bccfe iio_map_array_register -EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x00d7ff43 input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xa322048c matrix_keypad_parse_of_params -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x054bc038 adxl34x_probe -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x1d049c3f cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x68576f13 cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x9c1c3f9e cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x6b75db8e cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x85cb9636 cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xf00f3ed6 cyttsp_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x90f171e2 cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xb537471f cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x594ff76b tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x9a9f1f12 tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xa64f9e65 tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xc132c851 tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x26f8cace wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2c9f6cf5 wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2fee7530 wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x45d8f294 wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x50b25e6f wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x647fa23f wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6af44a94 wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6d30e121 wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x853c08d9 wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa8d5a2a1 wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb56bbffb wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xded7b778 wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x0526e0ad ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x086552e7 ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5cbc1ce2 ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7e2dd90b ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa0f966a5 ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa9b226f5 ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xbd99cf06 ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xce6ddd9c ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xd52edb44 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x17bb622a gigaset_handle_modem_response -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x57e27439 gigaset_initcs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x5de54efe gigaset_skb_sent -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x5ed1fb7f gigaset_fill_inbuf -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x68b49b94 gigaset_freecs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7667b032 gigaset_m10x_input -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7d25e9bf gigaset_blockdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7e421506 gigaset_isdn_rcv_err -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x9d43141d gigaset_initdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa662bd8c gigaset_start -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb261ce43 gigaset_shutdown -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb42b0c8e gigaset_m10x_send_skb -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb609558c gigaset_if_receive -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc16dacd0 gigaset_skb_rcvd -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc622c93d gigaset_stop -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd69dda68 gigaset_freedriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe862cdb6 gigaset_add_event -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x201289ae led_classdev_flash_register -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x3930c606 led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x5ff9789c led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x6c0aa4e9 led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xc3edb8c5 led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xe5444bef led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x03b92913 lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2a16e58f lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x64f3defc lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x744e534f lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9e554672 lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa700f387 lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb5935a3b lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xbf7fca22 lp55xx_unregister_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xdde1323d lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe105746a lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe84db660 lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x0a0527be wf_register_client -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x27ed1708 wf_register_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x3e1d2436 wf_get_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x5358f966 wf_register_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x75147afa wf_set_overtemp -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x821e3059 wf_put_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x84dcf55b wf_unregister_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x8e261675 wf_unregister_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xbcace2a5 wf_unregister_client -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xdae9943b wf_put_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xed82a14f wf_clear_overtemp -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xefacf7fc wf_get_sensor -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x30c859e6 mcb_free_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4b0d816e mcb_bus_add_devices -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4f752a6c mcb_get_irq -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x71fda5ef mcb_alloc_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x85b4b166 mcb_bus_get -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x93d9a250 mcb_unregister_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x9e8fffeb mcb_request_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xa82cc2cd chameleon_parse_cells -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xabee8588 mcb_bus_put -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb0d98723 mcb_release_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc9f62722 __mcb_register_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd117d5e7 mcb_device_register -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xdb0dcb21 mcb_alloc_dev -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x021811cf __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0f0677b8 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x10e6a889 __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1154f7a1 __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15aa8e40 __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x174c2a29 __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2205bcf9 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3fc7cb7f __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x469f38de __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4ba51ecf __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5b2a89c7 __tracepoint_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d950f2a __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5e21030c __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5ed04550 __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6eef9654 __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x74ab7b0f __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x84efb763 __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8fe32879 __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x91f02667 __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x93f7fc02 __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa1de5277 __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa81bf581 __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7d964de __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbbace2cd __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc6673631 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8a2f711 __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe3de2ba2 __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe902838d __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec919105 __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeea27f46 __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfad1ec73 __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0a43aa35 dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0cd28963 dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2a1a9578 dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6b5c002a dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7d49cad1 dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9b2c8ff6 dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xab3f9034 dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xcbfee0f0 dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe33098db dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aba7f5e dm_bufio_get_block_number -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7d15827f dm_bufio_client_create -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9310ba06 dm_bufio_release_move -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9c256008 dm_bufio_get_device_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa1d2413a dm_bufio_read -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa448e19f dm_bufio_prefetch -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xafbda3f3 dm_bufio_new -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcbb1bae2 dm_bufio_get -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x26b758a6 dm_cache_policy_get_name -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x81da4757 dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x868031cf dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xb229d9bc dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xb8dbe1ae dm_cache_policy_get_hint_size -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xc2fd39bd dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xcd585434 dm_cache_policy_get_version -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x34a6dc9b dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x42c2cdb0 dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4430764e dm_rh_region_to_sector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x45ab972a dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x529a4f07 dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x52c3e3d1 dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa68e1f06 dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbd099523 dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc2dbe23f dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcbd6bb4b dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd935fe5c dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfad9d53a dm_rh_get_region_size -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfc62ef4e dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x045c464b dm_block_manager_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x17c36f29 dm_bm_checksum -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42dbdfc3 dm_tm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49b35849 dm_sm_disk_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x55b4bd4d dm_tm_create_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x827a42f4 dm_tm_open_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9f624559 dm_sm_disk_open -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xafeda29f dm_bm_write_lock_zero -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd29923fb dm_tm_shadow_block -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf375d009 dm_bm_write_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf5455120 dm_bm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize -EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x10ad4854 saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x26404504 saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x28237741 saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x61b59566 saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x937da1ff saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa0319b64 saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xbe25a5f7 saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc9e55629 saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd62b275e saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xefc985c9 saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0c2eb2bf saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x1a9a3416 saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x2ee93b02 saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xd33b2c2d saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xd6f9c7dc saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xde79685a saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xe3c5ecc8 saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0b71c5f7 smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1c80795c smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1caed16e smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3804fce7 sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3c0caab1 sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3cfae1ec smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x702c2896 smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x704f5db0 smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x75364af4 smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x82663ee0 sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa0e6aa45 smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xae0a59ab smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbf1463b1 smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc924da1a smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe468b820 sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf5b59b91 smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf63a1312 sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x970c65c7 as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xb9c2cfc2 cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x8cfcf4a6 tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/media 0x11154e1d media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/media 0x1584f059 media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/media 0x1bb0ed2c __media_device_register -EXPORT_SYMBOL_GPL drivers/media/media 0x1e55f8ee media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/media 0x2f27fe71 media_entity_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/media 0x435d02b6 media_entity_cleanup -EXPORT_SYMBOL_GPL drivers/media/media 0x46cb089b media_entity_create_link -EXPORT_SYMBOL_GPL drivers/media/media 0x6cea88d4 media_entity_init -EXPORT_SYMBOL_GPL drivers/media/media 0x736af73b media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/media 0xa974374c media_entity_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/media 0xb7e228ee __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0xd38ca211 media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/media 0xe158b63e media_entity_get -EXPORT_SYMBOL_GPL drivers/media/media 0xe9bb04c9 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0xf7aefb46 media_entity_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/media 0xfa23bc19 media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/media 0xfe995a2b media_entity_put -EXPORT_SYMBOL_GPL drivers/media/media 0xff8f3828 media_entity_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x5c3c3a5a cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x01538266 mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x19f76610 mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x43fdec5e mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x51e72195 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5736bbf1 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x673e9fe6 mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6cb30d5f mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9ae22239 mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa004c628 mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa8505813 mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xab58920a mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xaf9e6fa5 mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xba4a95d8 mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbf652b67 mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc2a423aa mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd0beee61 mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd8ef5c0a mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf38a40ed mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf89be517 mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x02a9c5ad saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x051dd218 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x05672a9b saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x09792c03 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2aa00850 saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2b5fa218 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x55e06938 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6c763e9d saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8d861863 saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa03ae86b saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa5fd0337 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa966ca16 saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc491c840 saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xca3c1e62 saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd45b9e3b saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd5d1b6ca saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe77524d4 saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xecf779da saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf6ab426d saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x0227b71f ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x647803ce ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x76e219c3 ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x9bc56dbe ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xcb387b94 ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xdb269c7b ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xe1e80f92 ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x01885805 xvip_clr_and_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0a9f93d9 xvip_enum_frame_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0b2585ce xvip_get_format_by_fourcc -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x31bdc1b2 xvip_enum_mbus_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x490bd11c xvip_get_format_by_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x782ac58a xvip_init_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x9983d7dc xvip_cleanup_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x9ab90a85 xvip_of_get_format -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xad447fff xvip_clr_or_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xd4ddde3a xvtc_of_get -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x16429f18 radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x77a8cad2 radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x001c3fc4 rc_close -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x03dc6149 rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1b377269 rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x28cd6a6f rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3649daa4 rc_open -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x43368126 ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5dda4609 rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7285b482 ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8ca7dd67 ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x91a1acbc rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x939bc7c7 rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa8c3d59a rc_map_get -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb8818380 rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbc7e3fd7 rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbfe4ab9d ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc60e2e9e rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdb70117a ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe52469df rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf3c63290 rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x0492f137 mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x61458c9d microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x0f7723e3 mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x4fce58fc r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x10b4923d tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x02f39aca tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x3f21c551 tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xa0c8f08b tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x02faab98 tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xa9360267 tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xfdbf4bac tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x1431e1f2 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x5d61b5db tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x2c43e02d simple_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x17b8cc1b cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1f026eb6 cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2ce3210f cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x429ea392 cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x467fef7b cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x57955804 cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x71abe16e cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7d231da4 cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x939510c9 cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x98390b57 cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9b1e1c50 cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9c2399ea cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xae6b4bc3 cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb61c8cf7 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb689006c cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc1a7505b cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xdab2ec54 is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe1bea799 cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf1484a4f cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf1ccc5c3 cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xb8dc7d11 mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x6f0aa585 mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x16f5e7fe em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x25793ff3 em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2701d7ca em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2ff587bf em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3e8f8863 em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5a4d790b em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7c92aaa6 em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8075ec06 em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8f39f89b em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xae6036b9 em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb0948c70 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb1fbe283 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb3dc3caf em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc0069d9a em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc05b7f2e em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xde0ea283 em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe9b64064 em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf4e059cf em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x64bc779c tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x924dd613 tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xf51724ae tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xff9de2b5 tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x186e1198 v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x5f655b40 v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x5ff1d78c v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xaf34e2a4 v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf10d9771 v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf6b3c11e v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08982d59 v4l2_match_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x054c451f v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x2e717597 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1b651300 v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1cbdbce0 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3c948320 v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4004fac6 v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4b1c4a05 v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4caba545 v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x584c8b3f v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5a1d519a v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x60dc8a45 v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6b627810 v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7855e9b5 v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8287000e v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8cad3c58 v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9a1dd762 v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa28f8c22 v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa6c75c17 v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaad0e6ad v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb0229b17 v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb222faee v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb8b0e560 v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbb82b77e v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbcd35a1b v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc2ffb6ce v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd6472e74 v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdb81a63d v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf38b67b2 v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf70e5130 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x050e31c9 videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0e26e3c7 videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1a1897b9 videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x294178f9 videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x35eed246 videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x54772366 videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x609d141e videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x68c77a44 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6c440815 videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7caab808 videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x86cc3c60 videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x89ac798b videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb08b7d71 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb6d86bfe videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb704d2a8 videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc1860f56 videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd304bd22 videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd47ab690 videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd9b79337 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe0855be7 videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe4fada01 videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf10b2c09 videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf11a356c videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf8f07dc1 __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x3e93ab6f videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x52f0a748 videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x8ff5b729 videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xabcde7fd videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x4b307554 videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x4efc1747 videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x53fd5bed videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x0045ed8a vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x13d9cfe9 vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2879c10d vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x3a315a6e vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x3f2b7660 vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x5a4720d4 vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6e1ab240 vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6fd0a651 vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7e34d178 vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7e8a2dd1 vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x84817b40 vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x91346ea3 vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x97e0a33a vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa235de22 vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa496f217 vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe55b06a6 vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe850f8c2 vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xee85181f vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x1637d5e1 vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xf5acf8a6 vb2_dma_contig_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x44f9460e vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd30ec30f vb2_dma_sg_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd82316ac vb2_dma_sg_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0x1b64db05 vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x03f41437 vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x09cc5586 vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0d41aade vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x10c21b40 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x120d3879 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x191d50c7 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x490859ce vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x55f7e2bf vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x645bd414 vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6601bd8f vb2_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6dd71456 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7300c652 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x774d55f2 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x798ac343 vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7cd61dac _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8014eb65 vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x83058067 vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x86dcb357 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8d5267f4 vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8d930acf vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x920ba391 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x968791a5 vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9d4d9804 vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa8e3dd0c vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb1047b03 vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbc5f4e44 vb2_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc2cac462 vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xce6173ee vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xda73c5b3 vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdc33cceb vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xeed78e54 vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf3f1c09e vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x9e21ae7c vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x08a2ad40 v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x10e993f4 v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1210a33f v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x133adfc4 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x167263c8 v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1847b800 v4l2_compat_ioctl32 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1ef3a428 __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2011d9a0 v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x24dc5e73 v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ab9d732 __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4143ea9d v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e73fa8d __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x50eb3b0a v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x52065c79 v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5eacb1a6 v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x61c963ba v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x71bccbd7 v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74a017c5 __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7bfda7d4 __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7e28ca9c v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8879a7d0 v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8e2bb3a2 v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8ed829a9 v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9a1dad40 v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa9ca16fc v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaca2544a __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xae409bd7 v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xae514596 v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb10b47d9 v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6429d8b __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcfcbb499 v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xda5519be v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdc55deda v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe444db17 v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe9b6d74c v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xefdebf15 v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xff7a2f9e v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x1f206fc9 pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x471c718d pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x5083d216 pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x0609d0ef da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x3793ed6e da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x4e0f113f da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x67c43a0d da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x89f98a0a da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x8c56e62e da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x922d6c4c da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x06937210 kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x4b055106 kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x5f612c2d kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x68104bcb kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x81949114 kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x9d23ccfd kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x9dec0138 kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe62cf2dd kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x11577d68 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x14bb450a lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xf6694555 lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x1581b47b lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x59fb3030 lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x812bbd0a lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x85d129ac lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc67cd2f4 lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc758bf5a lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xedefcc0f lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x1f11f4e1 lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x32dc7584 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xa69a8996 lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x032d3a24 mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x395a31de mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x6bef8f96 mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x79e07afe mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xa9ad7379 mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xab76a285 mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x033747fd pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1fbf1560 pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3f5c037b pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x560e59ed pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5c7c8f2e pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x695324e1 pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xafe110a9 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbe87caff pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd65234f8 pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe5b4f45a pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf1b4d8dc pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x8e34db3a pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xcb32f4db pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x0164d5ae pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x466b8785 pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x4d6111bd pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x606e987c pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x72389358 pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x07b24033 rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0bada2be rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0e496b25 rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x1907f55f rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2417710b rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x30d4af52 rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x31630983 rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3c62cfe3 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x46d3ddb0 rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4cdf5996 rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4ff5fbf5 rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x50d1ff38 rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x672c0603 rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7919f1a4 rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8fab9a4d rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x90e99641 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa3295626 rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb1847e54 rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb7cc6f56 rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc307bdb6 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc4577456 rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc7289dcc rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe816dc6b rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xfddf3666 rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x0b028823 rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x1194f41f rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x2345c24d rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x31ffa124 rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x46fe7fa7 rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x54c69c39 rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x72f076bb rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x76d862d0 rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x7749e11b rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x8ebf2901 rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xc584a708 rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xd20f3267 rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xd431b971 rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0411f3b4 si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x04d6b2d8 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0b23a5f2 devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x21963e63 si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2a67e6bb si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2d523ca4 si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x317cc35f si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3a2be0c4 si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3b325e83 si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x433292b0 si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x48be9acd si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x48f6739b si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4e3cd81f si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5748a55d si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x585a4343 si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x67a37020 si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x688cbaf4 si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x74b037e9 si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x75e763ee si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x82d1cfd0 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x858f8c21 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x89825ff0 si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9957aebe si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xab32f306 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb367f053 si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb98ead33 si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbd2af0d6 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xce99eaf4 si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd4e57c64 si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdbfadfcf si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdce97f6e si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe165a91d si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf62999f1 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfcb45c3f si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x161716a8 sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x62cca67f sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x8a4db05b sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xc9bc7b59 sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xd1c2d0d8 sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x746397b6 am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x901e60a3 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xed516a18 am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xf312255a am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x5cae75b3 tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xa6ded2c3 tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xdfe94204 tps65218_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xfc639cd7 tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x69d54f98 ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x20160ea8 bmp085_remove -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x3d56843b bmp085_regmap_config -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x7d341f6e bmp085_detect -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xcf983b12 bmp085_probe -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x0abcc36f cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x1620327d cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xa24bfe61 cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xd2416a34 cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x0c5abba7 enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x0fc03100 enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x47926684 enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x8000982f enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb035bdd8 enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb5350271 enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb80d8a17 enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xba234f84 enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x03c1b5d7 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x2f9406d6 lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4b4184da lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5cdcff81 lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa663ef33 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xbd43b96a lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf481ea6a lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xff0afcec lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x611799db st_register -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xe73dfb4f st_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0e99dd28 sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0f4c1f2f sdhci_enable_irq_wakeups -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1b51acb8 sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3fc2cb39 sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x42d4fe41 sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x75d9afc4 sdhci_send_command -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8461910c sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9ae013ac sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9cdd9fbb sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc6001d8f sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd13cd611 sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe9480f63 sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf1c1f16e sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf65ce45f sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0f48444e sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x22ba3130 sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x4e0d1730 sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x5125a2bc sdhci_get_of_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x5ae981bf sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa38bb959 sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xadcf9393 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xddfb96f2 sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe57c86f8 sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x0fa94b22 cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xcd9e4b5c cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xf2b76eb4 cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x1eda33c6 cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x9371b790 cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xed23fc40 cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x7ce49ac7 cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x40167256 cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x8cc2403c cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xe064c0ae cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0ef0f413 mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x15c7a016 mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1fefcc00 put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x27823a0e mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3929d412 unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3ed3ecaf mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4a858a0c mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4eb79fac mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4fb4123c mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5cd96cf0 __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x624243aa deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6b2dc876 __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6db2dbe6 get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7b35bd62 get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7cb6fc49 __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x806c039f mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8baa793f mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8dfe01c7 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x92864940 mount_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x987411a0 mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9949f9fc mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9fbcc62b mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa0f77fde mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa16533de kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa26379b3 mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa3055ae8 mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa472afe9 mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa9f2ed4c mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc09b32ec mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc5b5b239 mtd_is_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc710f3a2 register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc8453405 mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcd916b3b mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd2008f35 mtd_erase_callback -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd7be44fa mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe1ff3c9d mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe6663851 mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xecfc6102 mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf6aba68c mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf777b88d register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfd0ac162 mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfde1659a mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x01759c61 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x120f0a16 del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x401c460a deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xdd0d1f39 register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xedb4e661 add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x5fc997ca nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x6f9ec53c nand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x21a89f17 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x5f01254f onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x8d663390 onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xda4af6cb spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x052c68fc ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x12bfbf8e ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x45c74652 ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4cd84a5e ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5d727357 ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6761fec8 ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x74ef1f26 ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7776750f ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7ccbfeb9 ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8b43a307 ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xbe99fed0 ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcce4e890 ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdbd37542 ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdc32a3cf ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x68b85a1e arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x9c73a3e4 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x0e06e8e2 c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x3af740f8 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x55ffd03e c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6b50c9e6 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xa02fbb89 register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xffcb4120 unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x01b0d949 alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x031b831a safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x2e98eaeb can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x40e99263 register_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x41f263b6 alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x441c89f2 alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x4775f52b free_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x48ef9918 can_led_event -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x50de0ccb unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x647cc80c open_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x827b3124 can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa5ea3369 can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xab49e45a alloc_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xac4e2a16 close_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb8bb66ec can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xdf0010ab devm_can_led_init -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe1490798 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe6e800db can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x26b819f7 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x4514429f free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x8cbe7153 register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xb5d3c224 alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x301da26d unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x6180a812 free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xb58c0723 alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xb91f98ec register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x17ccdd2d arc_emac_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xa25e3be4 arc_emac_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x006433c5 mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x038e79be mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0454c03b mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0484d291 mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04c653f8 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04cae0b6 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ccd6deb mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e861083 mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10d7d594 mlx4_fmr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15faca8b mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c390424 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ce2f52d mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x211f8b8d mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22339e5e mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35d2440d mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ae5b4b8 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b6f6393 mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3db405a5 mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e393d30 mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x400b3d79 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x406fd0a5 mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40b0c40a mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x416530ef mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41ea75af mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x435e9eb2 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44b9be07 __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47698be6 mlx4_fmr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47b85b96 mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48896a00 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a5934df mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b43c26b mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b4ab189 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x525ac412 mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53b745f2 __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53d07246 mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x556c223e mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x577d8549 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5abbc8a1 mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b13c78b mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68820de6 mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69199148 mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69aff182 mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ac11b8f mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6bc4508e mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f59533e mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fd1c43a mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7232a76f mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77775235 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7aece9ec mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b795ec2 mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ec99df2 mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f92a227 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85b614bd mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87221721 mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x879d23be mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88b9e8a8 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c6ab89a mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8cb62429 mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94f21f62 mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x979b0354 mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a8c026e mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c13372a __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9db8c738 mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e42d654 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f747254 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f80a9c7 mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa22a2787 mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa36a6bea mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5989635 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa80214c4 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8cae67c mlx4_map_phys_fmr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa117a3f mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac44502c mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xacac0e46 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xada61e4b mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb11b3cd9 mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5b148c6 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb645f720 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6b4ffa5 mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb73d6d92 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb80a9e05 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8cebdb0 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9a5e5a4 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba9d74cc mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbbe96b38 mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf20cc77 mlx4_fmr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc00c9a7e mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1c80343 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc260c03d mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3890ef6 mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3c0df7d mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc44e3bb7 mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc462145d mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc59ddb00 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5ccab53 mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6075809 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6f34c57 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8d7cb28 mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca1b9ace mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb19df00 mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb1a916f mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcdd396d3 mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce53bd01 mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2b9fe72 mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2d72d84 mlx4_fmr_unmap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd35a7336 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3dde7ee mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd52d6baa __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb4fda64 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0902afb mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe39e97e5 mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4337a73 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7fceb36 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe86c1063 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeadef4df mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebe2a79f mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec7bef71 mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed58abc7 mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xedfb5073 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf400213f mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf41f019a mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf50b2559 mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf55dd8f2 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf93c1745 mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x050c1a1d mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b07b87a mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x155f21b1 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18e2cb6d mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x209da1f5 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23b36f45 mlx5_query_vport_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23dbd950 mlx5_create_map_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2651ea05 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b68a2e3 mlx5_core_eq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x360f89f6 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ff933da mlx5_core_create_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47e94fdf mlx5_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c688d8c mlx5_core_mad_ifc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4cff1e21 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f4b37f4 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ff978dc mlx5_core_xrcd_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x628d2717 mlx5_query_port_proto_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77a91dd5 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7cb50ffe mlx5_query_port_proto_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82d0cfb1 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8634a68e mlx5_destroy_unmap_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a793e6f mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8cd04a2f mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d09bd3f mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ddbeb53 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ec6a36b mlx5_core_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f06466e mlx5_query_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x937de25a mlx5_query_port_proto_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ae54526 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9be8b10f mlx5_query_port_link_width_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c94cb84 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9fefe648 mlx5_core_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa111ec7e mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2e9d3f5 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6e78369 mlx5_core_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba386bc5 mlx5_core_page_fault_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc745615e mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd32ed077 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6b73dc8 mlx5_core_destroy_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8bc8089 mlx5_set_port_proto -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea422128 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea6b70ae mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec52f80c mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7db956a mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd858c09 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x5e28947e regmap_encx24j600_spi_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xac144314 regmap_encx24j600_spi_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xc385e022 devm_regmap_init_encx24j600 -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x011adba3 stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x05137526 stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x0ef602c8 stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xa3377186 stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x70efc765 stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x76e2570b stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xddb52ee1 stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xf5c732b1 stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x0bd113ad cpsw_ale_del_mcast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x1899eec2 cpsw_ale_stop -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x2d3536db cpsw_ale_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x34c33d75 cpsw_ale_del_ucast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x3cc70162 cpsw_ale_flush_multicast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x50342a30 cpsw_ale_add_ucast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x5db5bc43 cpsw_ale_control_get -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x8c06eaa5 cpsw_ale_start -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x9aa6b5a1 cpsw_ale_add_mcast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xa66e7bd8 cpsw_ale_add_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xb0ac2d12 cpsw_ale_dump -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xb6117a04 cpsw_ale_del_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xcdd09497 cpsw_ale_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xdaad1e23 cpsw_ale_set_allmulti -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xf710426f cpsw_ale_control_set -EXPORT_SYMBOL_GPL drivers/net/geneve 0x012b16d5 geneve_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/geneve 0xf81c7e7d geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x23e9f93c macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x2fefaa11 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x4fa7cef5 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xc8dafc58 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvtap 0x34556e11 macvtap_get_socket -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2262bf45 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x36ef8141 bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7988a1cc bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7ce61d8e bcm_phy_enable_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8b04aa4a bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa1aa0751 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbccf1080 bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xde721c36 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdeacccc7 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf4d237dd bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0xe777108c mdio_mux_init -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x192997ff usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x431de542 usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x59cb8dfe usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xe1365a46 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x141e50f1 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x546dfc38 cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x67a94198 cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7228ad7b cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9be7ae67 cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xbedb5349 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe264e624 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf5b89730 cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf9b7ea66 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x2531c803 rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x3fb84855 rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5d509053 rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa85cc0b1 rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xaab6156a rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xdfe05234 generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x08b7a876 usbnet_get_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0d11c352 usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0e7b9baa usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x13104cfe usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1b43ee21 usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1e6b8f6e usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x292f5aea usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3037173b usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x31a93510 usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3702920b usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3a4d5138 usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4a16e577 usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5b752e88 usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x79e467b2 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7c00a660 usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8f856928 usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9db058e6 usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa587f8b4 usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa5a76070 usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb0268204 usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb23c869a usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb8dbdc41 usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbd12a021 usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc5337cf8 usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd19d4426 usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd27a44bf usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd2cdccb2 usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdcaff3d1 usbnet_set_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe4074e5f usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe8e456fe usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfa74ee66 usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfe762105 usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x79bb107d vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan 0xd03bb8aa vxlan_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x579eb0dc i2400m_dev_reset_handle -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5f724129 i2400m_tx_msg_get -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x6ae2938b i2400m_post_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x710b9464 i2400m_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x7f622ea6 i2400m_release -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8eb6a66a i2400m_tx_msg_sent -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x90906457 i2400m_rx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x951caca1 i2400m_pre_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x952cbe40 i2400m_error_recovery -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa8be221a i2400m_netdev_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xac974918 i2400m_cmd_enter_powersave -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc16e6da9 i2400m_is_boot_barker -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc606251c i2400m_dev_bootstrap -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xcf29e962 i2400m_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe1189957 i2400m_init -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe555e5a9 i2400m_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x2e74a5cc cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x970a68f9 cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x9c7805cf cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xf44d37cb cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x641226fe libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x1dddcb3b il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x1ff705f7 il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x4a09dfa3 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x5cfd050d il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xf7983206 _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x002b2e74 iwl_init_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x05bb665e __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0d556623 iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0f48dcb7 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x12fe5bd9 iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2184351c iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x28b4570c iwl_write_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x36a3366b iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51871df0 iwl_nvm_check_version -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5f35cb60 __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x684399d8 iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7505f49c iwl_opmode_register -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7b1dbff4 iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x900482e5 iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9c5c7706 iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa356f1cb iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa97ac522 iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xac4ee368 iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb45705d6 __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb7e4896e iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xbbc06e63 iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xbd492a14 __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc6319ff2 iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc67c31ed iwl_notification_wait_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe04335e1 iwl_parse_eeprom_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe0d3442b iwl_remove_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf44aa738 iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf5aea4a7 iwl_notification_wait_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xfcf173fc __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xfe039ef1 iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xfe233b51 iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x041b9fcd lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x074d91f0 lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x15e63864 lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x1700b3ee lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x2367e8e8 lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x2a2dd028 lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x32f19878 lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x410353bb lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x4dbb9105 lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x69b1901b lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9b61eab3 lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa0770c2d lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc428f1f3 lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xd1a4b714 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xeb57091b lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xfa14b32d __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x0b4fead6 __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x2ccb16dd lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x348a7777 lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x73d130b8 lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xb22510e5 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xb977529c lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xf25a1e28 lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xfe3db1ca lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x32752c04 mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x39eeac58 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x4c606cdd mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x540fd155 mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x64811a6d mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x667c9226 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x6a3f1120 mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x6d4f4e7a mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x78fde8ae mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x80250a6e mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8f3808f2 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8f58c824 mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa1b0b97e _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xaed73850 mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb2d79609 mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xbf56ee65 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xcbc1f896 mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xd2c28cdb mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xeaa66882 mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x0a6610df p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x104d52ff p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x2b1bda95 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x65936a8f p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xaf6d5e16 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xc55ee0e6 p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xc6b44264 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xd8e2e4b6 p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xda2f9317 p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4e1955a6 dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb0658650 dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf2fdfdce dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf97a697c rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0bac5b0a rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x14e89d02 rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1e1db464 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2aa887ee rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2be20467 rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3fd012cd rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x410f0624 rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x431ec65a rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4775789a rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x60909915 rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x60b88074 rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x67f49775 rtl8723_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6d5a4b5e rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x830461b4 rtl8723_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8729f36e rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x87983527 rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x99472456 rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa89c678d rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xadd12ceb rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb4c587ae rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc01376b9 rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc305b794 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd0a5a9df rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe4f0f8fe rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xebedcb50 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf335f09b rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfca4437c rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d0b6636 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0f280002 rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x37a1ac96 rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x39c4a112 rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3f34273a rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x518b80fb rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x51ae2322 rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5b53a10c read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6179f027 rtl_attribute_group -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x62c13754 rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b4de810 rtl_lps_change_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7f30ff8b rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x86a94d63 rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8aaa0fdc rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97232886 rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc440528e rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcf25a587 rtl_dbgp_flag_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd46f5315 rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe6c2cbb3 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfd7a20ed rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xffc0abff rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x1c768415 rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x657711c7 rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x6b66b66b rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x976ad2a6 rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0affcd3f rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0b60af62 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x19f68eba rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2319d8a5 rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x24c334b4 rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x26748a67 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x36d18acf rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x39548be6 rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3a6fd53d rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x40607473 rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x43776c10 rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4c5bdbc6 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5a64cde9 rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5c75b642 rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x609b2d40 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x62848c32 rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x68c3ab73 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x68f34e9d rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x69e15a75 rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6b6e10c3 rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x756f01d8 rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x77e1dade rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7813c6d7 rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x883e491a rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8a3eac84 rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x92d6abaf rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa4d413be rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xabfdf0c9 rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc6ad9cf2 rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc6dee361 rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc722967d rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcc404966 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcd001abd rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xce8b0aef rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xdbf7ba5c rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe1e4d6be rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe6d0307a rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xefa745c1 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x03e71e77 rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x08fb082c rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fc535c5 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x36872ba3 rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x36e7f25a rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x3feaf921 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x671b35df rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x9a73af4e rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xa1fbfa89 rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xb66152e7 rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xbcc581e7 rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc8aa9622 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xcdaf73d1 rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x045ab680 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x096c7f24 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x09bbf530 rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0c59708f rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x102fafc1 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1b673a29 rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1d474738 rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1e070068 rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2bf38748 rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2d143538 rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3116c94d rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x321db587 rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4aac9e18 rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4d81f805 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5846399b rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5d612c89 rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x62684723 rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x643590d7 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x644ad95f rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x65a0ac66 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x68b6111f rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6f56a37a rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x76d74d32 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x82098c59 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x837c6892 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9a7b75e4 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9d73f4e6 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa53913fd rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb0fd58d6 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb5f7a711 rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbaf67a92 rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbf776951 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc0d8c29c rt2x00mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc1b1f081 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc97d1e13 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd5da3e02 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdc90492f rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xddb2aa2a rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdf3bc10f rt2x00mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdf8285b4 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdf8d08c9 rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe3a7a91a rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe72f034a rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xedf88d3a rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf508a46f rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf8a17f9a rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x728cc53a rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xba989886 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xe3406174 rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xf3ab2cf7 rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xf97692a5 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x27f19093 rt2x00pci_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x8483082f rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xfdb73eac rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xfe768f0c rt2x00pci_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x0486db0b rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1a203353 rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x480a2093 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x58f12253 rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x59e4e0ce rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x5f4a0e3e rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x6722fd8c rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x7efd11b5 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x7f82d2a4 rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xa9fb29be rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xad45f692 rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc9b0884f rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xde32390f rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe0e42c2e rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf7a9f6f8 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xfa452761 rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x76231e83 wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xcb135e2b wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xd30d9c73 wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0744188a wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x09029063 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x11317e73 wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x12de9190 wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2202bf6a wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2d734ac3 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x303c4c53 wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x36054da3 wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x46ad84a1 wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x58a09bb6 wl1271_ps_elp_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5c9a5c80 wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5e75d95b wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x76b8fb2d wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7a43d0ee wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x84b8a981 wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x881c40c1 wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8cbe1340 wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8d82a7f6 wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8fc5f43c wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9454255f wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x999f6bd6 wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa09ad7d1 wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa2a7901f wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa801f942 wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa9188cc7 wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xae4509c1 wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb1bb7828 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb805a0fa wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbfcdf8ff wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcfb8be21 wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd1f4350d wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd356120d wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd5539b4d wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd664049c wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd90cbe90 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd9f23b30 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdca51282 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdd55a99b wl1271_ps_elp_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xde608ff0 wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdf75867a wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe157760a wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe1cccdc6 wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe5abe31b wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xeab05aa6 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfa2a08f4 wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x01498988 nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x73e59c04 nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xcb50dc11 nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xce6a340c nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x11353c74 st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x38be7ac3 st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x5538dcfa st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x5c69fe01 st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x66242a67 st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa6a3c86d st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc90195f3 st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf1b126a1 st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30ee522d ntb_transport_create_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x95d9a740 ntb_transport_register_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xe439b14a ntb_transport_unregister_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x1d2975ac devm_nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x202d4ed6 nvmem_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x224f51bf nvmem_device_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x2d191cfe nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3866e217 nvmem_device_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x47745065 of_nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x5fbeac6b of_nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x62d84d99 devm_nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x99f018c4 nvmem_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xae935136 nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc697b0f7 nvmem_device_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xd1b39dfd devm_nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xdca1dcce nvmem_register -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x35d75519 pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x547bfde9 pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xe4d72dc1 pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x58ebb65c mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x6061fa91 mc13xxx_get_num_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xdba370f6 mc13xxx_parse_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xea0454c8 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xefa0bb24 mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x42fb5b45 wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x468c9571 wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4bcdb063 wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x7c6df7bb wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x9a634fdd wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xc78aac8c wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xe2a29f13 wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0308294c cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0835928e cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0a80f09f cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1c12eb63 cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2121ca63 cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x259f3bf0 cxgbi_ddp_ppod_set -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2882b957 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2c302c35 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2c68735a cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3d66515e cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3f88cd8c cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4466219a cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x44763d54 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4926f123 cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5fbfe3e9 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x689aab20 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x691c2dd6 cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x70b5276e cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x739cf137 cxgbi_ddp_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x784bef47 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7bcdc70d cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x800834ab cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x803e8ba7 cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8986d1ce cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x95db2582 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x97e2c0c3 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9b93b32b cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9c02e624 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa6b450c6 cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa7adbc08 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa7f55060 cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaaffc5e6 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xab8127f9 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb4ca2923 cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb632d81b cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbbf0caf5 cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc2c2c661 cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc662c92d cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xca6e61c7 cxgbi_ddp_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcfff16f6 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd60f8e16 cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd6fe5f29 cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd7b297ce cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xda61938b cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe1b9f4f9 cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfcdd7260 cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x084212fb fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0c20a1d4 fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1256fcf7 fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x14145f82 fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x22881d16 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5365eea3 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x57cf9b8c fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x63d78577 fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x74c342b5 fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7669da35 fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8d8f0a38 fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xad239184 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xaee8d710 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xcb0eca9c fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe2b6da32 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xeb870177 fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x2d5ff67a iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x4c017db4 iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x537c0e90 iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x6789b1a7 iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x6a7ed869 iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe4b6994f iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x00615328 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x081a56de iscsi_eh_target_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x10260540 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x110b55e7 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1427afa4 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x192bcede __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x21d1fef1 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x29131d5f iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2e3bd9f0 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2ef86a55 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x37d569f2 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x45d1ecab iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5de8c4be iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x63ac3f8b iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6a84123c iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7255f80a iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7844ae1f iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7d0d24f6 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x807508cb iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x816ee5f5 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x95929b7c iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x96f5bdaf iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9cf3cb8d iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaa258db0 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xafb8eb49 iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb138ef87 iscsi_conn_queue_work -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb22ac2e8 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xba8e64fa iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbc552447 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc444e86c iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc757aea0 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcda0b71e iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd7657139 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd783dabd iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd9974675 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdbd2c85d iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdf67b1e1 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe0bf4c74 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe4f44cc3 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe7b06e5d __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf27ccd60 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf78e6179 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x059b4d0e iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x098e0662 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x289b3631 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x29fa7da6 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2d5db343 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3a9baa50 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x500ef3bc iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6adda695 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6d486a0c iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6de9bb5b iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7561309d iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9436780c iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xacbe71f0 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xafd14a81 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb2d21215 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc0165e3a iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe94a36fa iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x07f60ec5 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2245c2f4 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x26b38d12 sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x29ffc6c4 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3417d891 sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x36a2114f sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x45b8b76a sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x469aeee8 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6bb42b46 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6f586d9d sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x953846fc sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9894214b sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x99ba93bd sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9a137180 sas_eh_bus_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9c6d0720 sas_domain_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9ea615e5 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa4f52364 sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc5a048b5 sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc8e5d58f sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd08ac8ef sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd874ae4b sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xedcdf3df sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf7b56b28 sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfbf4b64d sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x07f82973 iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0d3e0bfb iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0dfc44eb iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x12d54531 iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x159b2f27 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1a434b0e iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1afba17f iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1e3785b2 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2bde54e9 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3701d982 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3af4cd71 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x46da47fd iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4d7a34f1 iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x51cdcb58 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x576ca6cc iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x63da4eae iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x70aec1db iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x73d22abb iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7d742b00 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x823decfe iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x85bfce9f iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8d26fab5 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa24bd085 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa628be90 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab0a74f5 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcdab12d4 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd6939540 iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd6c73eab iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xde8c679f iscsi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xde8ec6e6 iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe0bfde41 iscsi_is_flashnode_conn_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe54258f7 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe54e11ed iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe6e134ce iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xec5b2575 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf0656be3 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf35cde10 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf64872dd iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf89ac616 iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xff258d3b iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x67f30e8e sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x7721a165 sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xaca6d180 sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xe055e434 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x7739d3de spi_populate_tag_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x12f8a436 srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1494065d srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x2943786a srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x5a8d10c9 srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x805cf22d srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x84f1fe66 srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x28d7e650 ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x30bb42f0 ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x30f1db59 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x59c67a69 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x9d802022 ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xa86efc11 ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xc61ccb4c ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x0db8851f ufshcd_pltfrm_runtime_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x11ae99a1 ufshcd_pltfrm_runtime_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x1feb7f0f ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xc5b7549c ufshcd_pltfrm_runtime_idle -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xd822db09 ufshcd_pltfrm_shutdown -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xe2e988fa ufshcd_pltfrm_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xf3d8960d ufshcd_pltfrm_resume -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x4738353c spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x4963f1ef spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x714d9841 spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x835fcab0 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xc9ba8022 spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x0da22b00 dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x4c274c04 dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xbb79764d dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xcf6bb5ba dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x07a80ae9 spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x107a5dc2 spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x392c83ad spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3e37ec80 __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x464dd598 spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5964087b spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5b4b5268 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x638bf4a7 spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x71609f43 spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x912ac379 spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x946316b8 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9a58f56a spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa94c343f spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xaed9ecba spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc95c9d05 spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe4df5605 spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf23bf70e spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf4471853 spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x718ae308 ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x002abb35 comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x098ac234 comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1295ab87 comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x12f6e320 comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2146f22f comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x35383699 comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x387569c0 comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x387f8393 comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3b66fbd8 comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4019b5a0 comedi_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x41e10a3a comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x44c98a0d comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x44e53871 comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x469182f5 comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x47c2923d comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4d544257 comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x51f7056b comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x53beed70 comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x55348500 __comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x56153831 comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5940f0dd comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x60f2da5f comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7ae446c3 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7d0581be comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7d920523 comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x83f3cf48 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x866fba16 comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x98e96e86 comedi_timeout -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9984cb9a comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9a4972e4 comedi_dev_put -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa74d32f7 comedi_event -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xaab15370 comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb3734835 comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd6487648 comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf78dc850 comedi_handle_events -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x22e33862 comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x2458dd66 comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x2cf66ecd comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x6eac2579 comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x7b3d2643 comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xb606b512 comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xe6c5a194 comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xf316e435 comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x16635a5a comedi_pcmcia_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x1aba2e79 comedi_to_pcmcia_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x568a6d4d comedi_pcmcia_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xb4a031b2 comedi_pcmcia_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xb716722a comedi_pcmcia_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xbd655ad6 comedi_pcmcia_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xbf2872fe comedi_pcmcia_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x009e6e7a comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x0764e9f7 comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x3a951eed comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x405e1656 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xdf25f4fb comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xea681b72 comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x7e50d1d9 addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x536ea694 amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x85c74dd6 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0xee7302a0 amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x07823426 comedi_8254_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x0858048b comedi_8254_load -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x266c35ae comedi_8254_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x4c40b095 comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x515a4f21 comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x7280a2f6 comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x7c60c37e comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x8c44de6c comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xbe289152 comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xcb748644 comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xe962c752 comedi_8254_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xfa6d6017 comedi_8254_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xfb698201 comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x46db82a1 subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x4bcdc29c subdev_8255_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xb1c76338 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x0d68fcd9 comedi_isadma_poll -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x6815a033 comedi_isadma_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa3d01a85 comedi_isadma_program -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa7ebb8a3 comedi_isadma_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xbd6990b9 comedi_isadma_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x80e3b842 das08_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x587c2744 mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5c0d5308 mite_setup2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6a535e44 mite_done -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x712ddad2 mite_free_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7b0c81ee mite_buf_change -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7da16a96 mite_bytes_read_from_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7dc58b10 mite_bytes_written_to_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x8e9f0a90 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x8fdafa5f mite_sync_output_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x92c4109f mite_prep_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x95c25534 mite_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x95cc6cae mite_get_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xcda5fc07 mite_bytes_read_from_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xcdc11d81 mite_bytes_written_to_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd3838341 mite_dma_tcr -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe2688533 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe92329c9 mite_release_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xee8b2f06 mite_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf2e890ad mite_sync_input_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfab32af2 mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfca6ec8e mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x481f14ed labpc_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xb8a8b3af labpc_common_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x12da4e34 labpc_drain_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x91822633 labpc_handle_dma_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x9708fd85 labpc_free_dma_chan -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xbfb5172c labpc_init_dma_chan -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xf97e7c74 labpc_setup_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x059f3fb3 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x0e331d1f ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x1ac1134b ni_tio_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x72ad5697 ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x7a594b5b ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x952c26f9 ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xc543f94a ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xd358318e ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x18a48091 ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x2b8197f8 ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x4493ad92 ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x91eccc5c ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xe5cdd541 ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xfca39511 ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x218709d6 comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x26997f32 comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x3df00393 comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x538e6fc8 comedi_close -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x81984200 comedi_dio_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xec0a9379 comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xfb1c4fa2 comedi_open -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x0cc3f8b3 most_register_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x0f08fad5 channel_has_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x17d26e50 most_stop_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x20e60084 most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x33a58b3c most_put_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x38e660db most_deregister_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x4527e115 most_get_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x4c8964e8 most_register_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x4d3a9761 most_start_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x9436c695 most_deregister_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xb2a974df most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xba73ca27 most_submit_mbo -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0ef1d765 speakup_info -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4311c751 spk_var_show -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x65eae71d spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6f73ab65 spk_serial_synth_probe -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x71f99064 spk_do_catch_up -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x7bf4bfe0 spk_synth_immediate -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9896cef2 spk_var_store -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb35aaab9 speakup_event -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbe0547c2 spk_synth_flush -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbf2b5a8f spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd094e844 synth_remove -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xfdede3df synth_add -EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain -EXPORT_SYMBOL_GPL drivers/uio/uio 0x169c351c uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0x402c6b1e __uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xa9451c7d uio_unregister_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x23b0aedb usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x88f86655 usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x5c039843 ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xa34d9b14 ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x1efa99ab imx_usbmisc_init_post -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xac1ae128 imx_usbmisc_init -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xd03415c7 imx_usbmisc_set_wakeup -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x071e3ae5 ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x09cf6325 ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6ad36ff7 ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x9fc5ff25 ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xa5a64848 ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xe0c92b81 ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x043af406 gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x073781c4 gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2e078791 gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5da6ba67 gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8644d7cf gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x87fa6b6b gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa223fda2 gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa86810c2 gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb1545d59 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc3d21599 gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc5e10e4f gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcbf5d392 gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xce8f427b gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe06d4896 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf1a9bba8 gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x981e0645 gserial_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd3f183af gserial_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x60799ffd ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x6c1f8746 ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xc58fa028 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x077695a1 fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0ee1416d fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x23280667 fsg_store_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4c2a8f6a fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x546c7f99 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6527af79 fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x65c71f3e fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8057bac2 fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x987bc0cf fsg_config_from_params -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9cff77c1 fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa50af4a7 fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xaab7c4d4 fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb53ecee0 fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc04ce1b1 fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd468f882 fsg_common_set_ops -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xec036e57 fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xeda40cd3 fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf69a9cc1 fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x03a3a09a rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x149c3486 rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1d20422b rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3b40ce8c rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4be80d94 rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x57d3d680 rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x62719cb0 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x66fe9f11 rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7432616d rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xaa17a25d rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xafc7af14 rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc1cb02e6 rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc50f66ba rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdc53d553 rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf92f9fb8 rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x09b7f813 usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x161d6a6f usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x17760524 usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x56bf830b usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5bd02120 usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6c2962c7 usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7eb21d12 usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x82c32cca usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x83369817 unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x845c8b63 usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x870ce18e usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8fc30de6 usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9642638f usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa38a8b0b usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa88516b8 usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa9bf46ad usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xaa5b9cb6 usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xae894959 config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbaf4adb8 usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbf22b955 usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc441b308 usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc6d53417 usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd4a2daa7 usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdb8bf068 usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdbd06a22 usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdf9484f9 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe2910d1b usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe9640558 usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xeb38bf03 usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xffde7a10 usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0777c7ab usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x101feed5 usb_gadget_probe_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x26c50832 usb_add_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2a3ab048 usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x41b62063 usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5b2fa1ba usb_udc_attach_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x61af983f usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x628f3018 usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x64cefd5e usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x95d60868 usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9ff9097d gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4744dba usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xae8bf20b usb_gadget_map_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdac3651f usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x19205fa4 ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x82edfe47 ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x6ae3c2ad usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7448c9b8 usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x830ba9e5 usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x88a4aaae usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x99641832 usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xcac2c0fd usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe7dc24f0 usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf74980cf ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xfae89876 usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xdd7660aa musb_interrupt -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xc1b8162a isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xd1f4ba2c usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1540fec5 usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1ad92033 usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2d76216a usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4063b9af usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x558904b6 usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x56219d46 usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5700744d usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6073df0d usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x64d6caf0 usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7532bc48 usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7e549c24 usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x82ef5a3f usb_serial_handle_break -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8d8ec48e usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8e7314cb usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x971b94e2 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb201084d usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbca78f49 usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc4ba5f97 usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe9013684 usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xea6707bd usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xed7db189 usb_serial_handle_sysrq_char -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x03b9d406 usb_stor_CB_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x145e1aef usb_stor_set_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1f82e3e7 usb_stor_post_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2fd6233b usb_stor_bulk_transfer_sg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x35dd7d7f usb_stor_bulk_transfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3ffaf87d fill_inquiry_response -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x45086af5 usb_stor_Bulk_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4d32d8db usb_stor_Bulk_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4f075828 usb_stor_access_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x50ef5cde usb_stor_disconnect -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x56547b94 usb_stor_probe2 -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x608f7747 usb_stor_suspend -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x66ad0da7 usb_stor_control_msg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x69e2bf20 usb_stor_transparent_scsi_command -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x845ed3cd usb_stor_adjust_quirks -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x87b9d381 usb_stor_host_template_init -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x94bf8864 usb_stor_probe1 -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbe1a1b4e usb_stor_CB_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc2ebb122 usb_stor_bulk_srb -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xcc7368c0 usb_stor_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xce70752b usb_stor_ctrl_transfer -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd1ed9515 usb_stor_pre_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xdf6a3bb0 usb_stor_reset_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf1d64ba9 usb_stor_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x50a082ee usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6a0d0853 usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7554b0c2 usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8425f8ef usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x87bb4e78 usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa421089b dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa460963d usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa7666429 usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa81e641b usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb6759204 usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbabde94d usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd0a950f4 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0bd816f0 wa_process_errored_transfers_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0fdbf408 rpipe_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x122f15ac wa_urb_enqueue_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x7e7d0481 rpipe_clear_feature_stalled -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x85d258d2 wa_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xbcfc0a58 wa_dti_start -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xd4f08a45 wa_urb_dequeue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xdd12c3e7 __wa_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xe5ef52e3 wa_urb_enqueue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x02ff15ae wusbhc_mmcie_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x24d99a9e wusbhc_mmcie_rm -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x2adc2430 wusbhc_b_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3d939e82 wusbhc_reset_all -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x6fa5c8bf wusbhc_handle_dn -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x795d92e0 wusbhc_b_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x867e4bbf wusbhc_rh_start_port_reset -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9084f719 wusbhc_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x922dd0d6 wusbhc_chid_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa1e04f0d wusbhc_rh_control -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb4f7eb88 wusbhc_giveback_urb -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb75bea4d wusbhc_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd6cfe31e __wusb_dev_get_by_usb_dev -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd80a7bf9 wusbhc_rh_status_data -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x3d1ea24c i1480_fw_upload -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xce6d4f3f i1480_cmd -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xf852cc41 i1480_rceb_check -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x3561e865 umc_driver_unregister -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x690b65ae umc_device_unregister -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x844e3099 umc_device_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xa2a4e1fb umc_bus_type -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xc60a4c53 __umc_driver_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xe4836ee2 umc_match_pci_id -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xe7e1446d umc_controller_reset -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xf558d09d umc_device_create -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0d0738fc uwb_rsv_establish -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0d78016e __uwb_addr_print -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0fc02440 uwb_est_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x126bf934 uwb_notifs_deregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x18276e94 uwb_rsv_accept -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1d9ad6a8 uwb_rc_pre_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1e9a7deb uwb_rsv_create -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1ed3cc0e uwb_rc_get_by_grandpa -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2322b3fe uwb_rc_put -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2b15fa6b uwb_rc_vcmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2b5ca220 uwb_notifs_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3d3f2f10 uwb_dev_for_each -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x41e00c00 __uwb_rc_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x55d765a1 uwb_rsv_terminate -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x677512fe uwb_radio_start -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6994b628 uwb_rc_neh_error -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6d444b60 uwb_rc_reset_all -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6ea8be1e uwb_rc_cmd_async -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x71a367a3 uwb_pal_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x75c002bb uwb_rc_dev_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x75d983b8 uwb_pal_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7947d372 uwb_rsv_get_usable_mas -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7b55f25c uwb_rc_mac_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x816b9e92 uwb_est_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x83656e48 uwb_rc_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9fcf48bc uwb_rc_alloc -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xac97316b uwb_ie_next -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xaef29c27 uwb_rc_post_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb0f795cb uwb_rsv_destroy -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbc017734 uwb_rc_get_by_dev -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xcd70bf6f uwb_rc_neh_grok -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xce7df178 uwb_rsv_modify -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd2410a56 uwb_rc_ie_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd31b2ad7 uwb_rc_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdbc509b1 uwb_est_find_size -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xddfdc86d uwb_rc_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe0cc2e89 uwb_rc_cmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe3fc11e8 uwb_rc_ie_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xeb543233 uwb_pal_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xed7ee567 uwb_dev_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf5b6b387 uwb_radio_stop -EXPORT_SYMBOL_GPL drivers/uwb/whci 0x269df071 whci_wait_for -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x167780eb vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1a761318 vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x206b9877 vhost_init_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x20a02265 vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x24fd04c9 vhost_work_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2725ec3f vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2a164757 vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x329e38d6 vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x35664808 vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3b4c2765 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4c0fafee vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x68d1d75c vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6c79f273 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6f31c926 vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x77cc97a4 vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7cb725e0 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x851210fe vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9c6fbb07 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa247f3cc vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xabc55a8d vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xacceae71 vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaeaea602 vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb0f81e37 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc491051f vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc6c0e4c1 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd4760ce9 vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf7478867 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf88e1008 vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfee86848 vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xffd81b9d vhost_log_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x4c851353 ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x699c7057 ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x78cac96c ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xdb9a74bd ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xddfa441f ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x2f72f2ba auok190x_send_cmdargs_pixels_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x356bc168 auok190x_send_command -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x423c095d auok190x_send_cmdargs_pixels -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x486261d4 auok190x_pm -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x48d9684c auok190x_common_probe -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x5be97cf7 auok190x_send_command_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x61a63698 auok190x_read_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xa9a92fae auok190x_send_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xd77c5774 auok190x_send_cmdargs_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xfd6afe59 auok190x_common_remove -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x3b6c9566 fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x20996472 sis_free_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xea9a8a46 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/w1/wire 0x287b7edb w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x45ec02af w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x50f4a5da w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0x511b477e w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0x66cf339b w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x83488f60 w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0xb0fe5a08 w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0xc97af7c1 w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xd3997c2c w1_read_block -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x2b5fa457 dlm_posix_get -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x59cd5555 dlm_posix_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xa7e568b3 dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock -EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x2c31f4d0 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x34510733 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7dd56340 nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8496566f nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa751f9d1 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc524e983 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe2437944 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x046ca05c nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05307edc nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0782b36d nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09b12946 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a93daef nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0cb17980 nfs_file_splice_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ed22da7 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ef24f0d nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f959566 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x111371e1 nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12c8d656 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x141c8918 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14bf085e nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18fcecc3 nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a1b13b8 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a1d1a32 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f36c869 nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f39945d nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1fbe93e6 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x202ef1bd nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x238a47d8 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x245583d6 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2db63059 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2fcc1e9a nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31560810 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31a96d15 unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33e51b95 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x345e3345 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3570bb4f nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35999929 nfs_file_fsync_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36089ea0 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e3df7e5 nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f544b96 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x403f4dff nfs_try_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x406587c1 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40665ebf nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40c5253f nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44b9af89 nfs_fs_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46657b92 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x476adb8f nfs_pageio_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a9fdb9a nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d5d1cb5 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f03fd3e nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x544c375c nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5775eef2 nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x579e0b3c nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5847235d nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5885d4a5 nfs_remount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c3cff48 nfs_destroy_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ec257d5 nfs_clone_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ff91663 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x624b798b nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x638cfb9f nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63d18bc6 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6490ec4b nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6513adc0 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x662e68e9 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x678349d5 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69c67b38 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a362fb8 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6acc5a90 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c93159d nfs_pgio_data_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f537e6f nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70eb5e8d nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78c12a62 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x799d9eba __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8150c04e nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81a98d0d nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8434ec6b nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88395ba9 nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88831b7a nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88ee6b28 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a449d04 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8bfc677e nfs_set_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d2706ab nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90b9b91b nfs_fill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93978666 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa01475e1 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa030f4c8 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1e5ecbc nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa33f8b59 nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa344a5e0 nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3d3ec85 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa57a7586 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5f93266 nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7e41d9b nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa80a291a nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab6e4dfc nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xadeb544d nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae302280 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaeb61e49 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb247807e nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb92988bf nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba93cb20 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbed5bd92 nfs_fs_mount_common -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc20b6c13 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5166d86 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc57b2c90 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6b259c0 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6c05ef3 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9deba3f nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcaa2a834 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb6ef626 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcbb2cdee nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc1320ff nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce08e858 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd323e607 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3bdf09a nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd68686bf nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6a7b0fd nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdba4b528 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde45a8c4 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0975c2f nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe150fe53 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3081119 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3c42e1c nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe5ac70af nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe936198d nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea3b6c54 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xedea0f06 nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf04a3256 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6bad571 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf87c150f nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfbf0c322 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff00e18f nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x74052b25 nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x07ff754e nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x09ea539f nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0aa29fb9 pnfs_put_lseg_locked -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1093b108 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x15dda741 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x24f15e0b pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c3b5c3c pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x34dcdbc3 pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36dc3b3e nfs41_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4b1e0646 pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4eb8757e pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4f97358a nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5094c932 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5563361d pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5658f6d0 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x571a85d7 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x58638eae pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5888725b pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a5dc64d nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5cc28bf7 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5e71815d nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5e9f531d pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x62bc6c4a pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x66957146 nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f3ea3c5 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x709cd5a4 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7438af99 _pnfs_return_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x74d83011 pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x784905ec nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a861ace pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7f15a883 nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7f557c8a nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fa4b6a4 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83bac94a pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8b6a3385 pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x929999ed pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9af48ead pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa4f1b49b nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa6911399 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xac76f7e7 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0480ef3 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0f28edc nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb2f41687 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb8b8036e pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbd9a97d9 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbe323e8f pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc1213d26 pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc1a4b885 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc746a533 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0b5b7dc __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdb5bb0c8 nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe32d6baf nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xecb3d95c nfs40_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeda13e4b pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf160cb4a nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7a02c7d pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7bf0938 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf9380e7f nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfaf1839c pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfcff583d pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfdbf3799 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x42912ee7 locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x7f5116f5 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xb1ebbb44 locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x0be3fc74 nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x753bb2e9 nfsacl_decode -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x03e9db70 o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36a28a9e o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x78384d38 o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb28d1c26 o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbc4b51d9 o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc17cf906 o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xdbe0e189 o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xe65b6437 o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x1a5b73e1 dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x1d3cabe6 dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x31173fdc dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x843082ef dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa0952c0b dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xe789224d dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x2a189918 ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x6f96fec5 ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe5107929 ocfs2_plock -EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq -EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures -EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats -EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb -EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random -EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait -EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop -EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end -EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init -EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init -EXPORT_SYMBOL_GPL kernel/torture 0xb02c6fcb _torture_stop_kthread -EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin -EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin -EXPORT_SYMBOL_GPL kernel/torture 0xda38ba64 _torture_create_kthread -EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init -EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end -EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init -EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping -EXPORT_SYMBOL_GPL kernel/torture 0xfc4c35b6 torture_shuffle_task_register -EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress -EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress -EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch -EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch -EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch -EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x0510d685 notifier_err_inject_init -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x055b01f8 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x201d8ea3 encode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x29fa419f decode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x0adcb055 base_inv_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x221df614 base_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x4da25bec base_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x63f42b6a base_inv_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x76203267 base_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xca3140ce base_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfa5eee0a base_inv_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfc02472a base_inv_true_key -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x2756553d lowpan_header_compress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xb22c4d71 lowpan_header_decompress -EXPORT_SYMBOL_GPL net/802/garp 0x0d823f46 garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0x22b373f1 garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0x5094c736 garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0x888371ab garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xc9444690 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xd12b739c garp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x173ebf8e mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0x3ff5e542 mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x4b29992d mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0xd978a17c mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0xdbb84ece mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0xef17b3ab mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/stp 0xa279e2ea stp_proto_register -EXPORT_SYMBOL_GPL net/802/stp 0xca634df1 stp_proto_unregister -EXPORT_SYMBOL_GPL net/9p/9pnet 0x1fa9f82e p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/9p/9pnet 0x5a605d95 p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier -EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier -EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast -EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr -EXPORT_SYMBOL_GPL net/ax25/ax25 0xe84e6f93 ax25_register_pid -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x33c9fe23 l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x81b36dad l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x85b4d6db bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x99877990 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x9b0d107f l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb5cee11c l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd05e9231 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe52ee635 l2cap_chan_send -EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable -EXPORT_SYMBOL_GPL net/bridge/bridge 0x01e726af br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4cff1442 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9af439ad br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9cc27803 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc0c5243e br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc4a61148 br_deliver -EXPORT_SYMBOL_GPL net/bridge/bridge 0xdeb6b384 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe3ca3274 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x0079784f nft_bridge_iphdr_validate -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0xe2663b9e nft_bridge_ip6hdr_validate -EXPORT_SYMBOL_GPL net/dccp/dccp 0x11ee515c dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1f293816 dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1f88fb81 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x21321fea dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x225faeaa dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x24d9cd3d dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2c6c4922 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2d9a4c59 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0x30b9e946 compat_dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x34ce8772 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x39dd2564 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3b3e6525 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3e362554 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3e6acb8d dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x51c277e0 dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x54beb51c dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5924a9d2 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5e85782b dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0x63cad52a dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6b08d348 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6c79b655 compat_dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x87ec038a dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8d30e275 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x95bad857 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x969f8ddb dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x96f47464 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc40104ba dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc6c54d38 dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcf1b786b dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcf23acb0 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd03798a6 dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd9974591 dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe4909c48 dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe704346d dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf4c37d47 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfc9b501c dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x0107154d dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x5d33da31 dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x7ec70629 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x97a02ad3 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x9b15730c dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc9a7a453 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x7ac9f649 ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x805f12f2 ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xccf484cc ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd58dfa29 ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xff1a9f1b ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ipv4/gre 0x38c259cd gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0x90788a3f gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3b9cc70a inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x40b54801 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8dbc4cd0 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc0299b53 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xcb925f71 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xedf81734 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x5eba4f73 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0adbead0 ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x117ee16a ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x12345605 ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1675311c ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x284355d0 ip_tunnel_delete_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4078febf ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x643ea4fb ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x715b422b ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x732a028e ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7b9fd129 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8709d4dc ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8f9f488b ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9fc84ee3 ip_tunnel_ioctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd8082a5a ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xdd635d70 ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x06bb90e9 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xa7a01386 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x19659f36 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x318f8abc nf_nat_ipv4_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x63305b18 nf_nat_ipv4_local_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x9f3d963b nf_nat_ipv4_in -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xe278fec5 nf_nat_ipv4_out -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xe516b287 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x9ab1b80e nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3b9fbfcb nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x7b35e69b nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa2044bbe nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xd08d14ca nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xef95ee4d nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0xfb0e914d nft_af_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x0dac69cb tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x1601fd8a tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x48299c4c tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x4b287949 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xba1a589a tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x3c4378b4 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x509848e2 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9dbec50b udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xeca109c7 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x15b005a8 ip6_tnl_dst_reset -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x479a5329 ip6_tnl_dst_destroy -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x5ddcb85d ip6_tnl_dst_set -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x670eb2d8 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x69ce230a ip6_tnl_dst_init -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x92d9b256 ip6_tnl_dst_get -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd0a38da3 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x34646820 udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x6b918a3f udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x360cba62 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xc58b0d75 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xdcb6b9b3 nf_ct_frag6_consume_orig -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x2e23e2ed nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x115c06a3 nf_nat_ipv6_out -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x1f396afa nf_nat_ipv6_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x6e2948d8 nf_nat_ipv6_in -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x721de033 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xed7bf07e nf_nat_ipv6_local_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0xe9cc85e6 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x08b646f7 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x5ca7e725 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x7c677d5a nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xabbc98f7 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb8e100b6 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x16927fc4 nft_af_ipv6 -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x04ae1685 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x10762cca l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x176007c1 l2tp_session_queue_purge -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1a8facec l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x27e0c376 l2tp_session_find_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3ee4fb94 l2tp_tunnel_find_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x47a7b6e7 l2tp_session_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4ea97124 l2tp_tunnel_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x82be1490 l2tp_session_free -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x96585da3 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc17767c5 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe3fc38f3 l2tp_tunnel_closeall -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf2f1cfa4 l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf5d5a1ef l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf7811d0a __l2tp_session_unhash -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf8828755 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x893766bf l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x00d68fc8 ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x02145c46 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x094cc7b2 ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0e0b357f ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x11e1f72f ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1f216d2c ieee80211_set_key_tx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x215f1e7d ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x58a151ae ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x842aa465 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8f8bb886 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x91f4c28d ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x96285e08 ieee80211_iterate_active_interfaces_rtnl -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa0a11ce7 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xafb21e59 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc3f789e2 ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd33dffc8 ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdb12b89c ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfcdd37da wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x10d5e8dc mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x3bd6b31e nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7f586b7b mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x9c8fcf28 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x11fda5bd ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x152f130b ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1f2cc785 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2a38ea28 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2a56b029 ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x45b94bcf ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x55af7385 ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x652762ae ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x65f06866 ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x746bd845 ip_set_get_ip_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7865a988 ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7ba5f771 ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9fd916e7 ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbc6cb368 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd0bd4983 ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd1c367a7 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x04c51710 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x4b510d6e register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x746113fa ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xfe043672 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x01758c1a nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x03be1a8d nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x043e68a3 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c46bddd nf_conntrack_l4proto_udp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0f18325d nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0f458dde nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11e609f6 nf_ct_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1248f33b nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x13545c58 nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x154fa5e7 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x16f98d40 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1c1ce5b1 nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1e39a9e0 nf_ct_l3proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3146bfff nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x328747c3 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d898e5d nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3e70df5f nf_conntrack_l4proto_udp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x45f01e5c nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x48f19553 nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x555761cc nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x564a248a nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x580d051c nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x581cacc3 __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59e0ced8 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59eb0a12 __nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5b27eea4 nf_ct_iterate_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5c598bbb __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x631d969a nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7261c041 nf_ct_expect_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x749fed63 nf_ct_l3proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74c3e979 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x772d264e nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x79940e0f nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7def1d61 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x801f3088 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x805d5170 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x812c7329 nf_ct_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x86b4ab31 nf_ct_l3proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x88442de0 nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a66c4fc nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e255242 nf_ct_l4proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90c6196d nf_ct_l4proto_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x97022946 nfnetlink_parse_nat_setup_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e13bbd9 nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa4a4e5f7 nf_connlabel_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xac573e52 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xac618e89 nf_ct_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xac6e98ef nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xae7458f3 nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf829c35 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb11f4670 nf_conntrack_l3proto_generic -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb1bb3f69 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb2bdf33a nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb3dceec6 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb4d57930 __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb7632429 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc3521fd nf_ct_l4proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbe6c26b3 nf_conntrack_set_hashsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc034d995 nf_conntrack_l4proto_tcp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc0d82c03 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc1b310b6 nf_ct_l4proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2698601 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc93185ea nf_connlabel_match -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc9af6703 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc759970 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd6df8c6 nf_ct_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd168dbc6 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd1ed0d31 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd26062be nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3a3e4a2 seq_print_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd41c642d __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdd044c1c nf_ct_get_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4ac61a7 nf_ct_expect_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4f67ddf nf_ct_l3protos -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb4df006 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf202bb17 nf_conntrack_l4proto_tcp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf68c53ca nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf98cb299 __nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa6038ae nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff40b965 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x4a5f61f5 nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xb1b76014 nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x5ebba1b3 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3b70056a set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5c5ee333 nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5e4e7b24 nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5eb842a6 nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x61e32c46 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x80df4d3b nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x92828f8e set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x97c99452 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xdadd8660 set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe36106ad set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x0c0b815f nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x1c733261 nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x7b23bd65 nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x850f64af nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xcb74b517 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x278b8563 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xcbf6d1de nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x27d55c29 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x6152d3d7 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x78a8cead nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x96b413eb ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb6e14369 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe1d0219f ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xfb7522b1 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xec7bdc64 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x4acda293 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x25819153 nf_log_dump_sk_uid_gid -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x90af0b1f nf_log_dump_udp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xccd64360 nf_log_dump_tcp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xf4b26350 nf_log_dump_packet_common -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1c4ada9b nf_nat_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1c921186 __nf_nat_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1e30612d nf_nat_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2647c458 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x34ff33d2 nf_nat_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x59d05b84 nf_nat_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x813acae4 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb3f52403 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc2216e4a nf_nat_l4proto_unique_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x583fb15a nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xbaf4d556 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x292281fe synproxy_tstamp_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5f339439 synproxy_build_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x68f8d89c synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0541b862 nft_unregister_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x15370024 nft_set_gc_batch_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1a4b4486 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2574c616 nft_unregister_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2d461dfd nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4792c6c7 nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x544ce412 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x638f640d nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8a0c81e5 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaf113682 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaf363650 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbd33c6f8 nft_register_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc1b05eb6 nft_unregister_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdb4668cb nft_register_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe738c1d9 nft_validate_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xecc0a987 nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf6febb21 nft_register_basechain -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x185738a9 nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x4061a5d0 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x966e43ea nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa53eea79 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa73c21fe nfnetlink_alloc_skb -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xae41851b nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe8dad18e nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x629950eb nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x9374ac90 nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xd5a55aa4 nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x8e680e52 nfulnl_log_packet -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x120e3dbe nft_masq_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x882bb1b4 nft_masq_init -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xcd442114 nft_masq_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x0a72e828 nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x6109242c nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x7eab9c7b nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x922634fd nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xcf2847f6 nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xd46d7350 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x17dc1fed nft_redir_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x7140cfa7 nft_redir_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xccddfb15 nft_redir_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x9a54e97c nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xfef104f8 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0426d4da xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0b2887e7 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x15b9abce xt_hook_link -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x161d1417 xt_compat_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1e8223bd xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2ee34481 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3686270d xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3d90c641 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f82f1f7 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x67c39fec xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x691a6d69 xt_compat_calc_jump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x73cee41e xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xad1c1075 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb3f3879f xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbdb0357a xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc1c97030 xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd22bbae5 xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdebb8492 xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0b4971b xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe229a8ba xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec24fd82 xt_compat_add_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xeda53a8e xt_hook_unlink -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xefc529a6 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfbd47a1a xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfbe200de xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x00204983 xt_rateest_put -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x482b6a12 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x31ba96c7 nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x452b6999 nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xda549e0b nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x14a4ba1d nci_uart_register -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x4ff9da3e nci_uart_set_config -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xd7d15b91 nci_uart_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x20400665 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x28543444 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x752a2a12 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8208a751 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc0bc00eb ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd15a297a ovs_vport_receive -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xdb5d327e ovs_netdev_detach_dev -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe37054d6 ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf015934a ovs_vport_deferred_free -EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x266f845d rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0x293343c0 rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x388caa54 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x41601ce0 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0x41b0066a rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0x46d52b35 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0x4c6d3b9a rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x562d4a15 rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x66061fb6 rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x67c609e1 rds_page_copy_user -EXPORT_SYMBOL_GPL net/rds/rds 0x6ac3863a rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x79eb5d80 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x7bc62829 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x7f400b71 rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0x9208190b rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x9cb99b7d rds_send_get_message -EXPORT_SYMBOL_GPL net/rds/rds 0xa794c08c rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xaffc50fd rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0xc1abd444 rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc99a65ea rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0xdd931504 rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0xdea6e4f0 rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0xeb636471 rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0xec0de82b rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0xf70dc8b2 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x22a5d024 rxrpc_register_security -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x986a4b4f rxrpc_unregister_security -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x777fc1d2 gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xa05dd341 svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xfa661eac gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x002f6ec1 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00321dee rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x010de315 rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0174fd05 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0270f5ac rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x028f3fc0 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04b5c851 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05f2e3e7 svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x082aa4a6 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0846580c svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x088bf2d0 rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0982f6e6 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09af7ce3 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bd346b2 xprt_set_retrans_timeout_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c4ab75b sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0da06165 rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fefc3c7 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12e3eb8e rpcauth_key_timeout_notify -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x177c01ec rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17b8da8a cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18e5fa41 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b8c3a65 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c972fb1 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c99ea7e rpc_task_reset_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ed39a92 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fac496e rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fb87f46 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20722e36 xdr_skb_read_bits -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x209e92f7 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23848f74 xprt_set_retrans_timeout_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x243f2c00 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24ed43b5 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25666dee rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25ce45be xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2638e856 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a731c9b rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2aac461e rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e9effe1 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ecbc153 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f47e168 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fd65ae5 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31990f8a xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a2a5f1e xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a72b692 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3aa74de0 xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b82b3ad cache_seq_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bd64b3c xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c2dcfcf cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d87c674 svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3dfd44bc xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f8ef40c svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x407a2f4e cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41747574 cache_seq_stop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42cd35a4 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45879b9d gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4588695c svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45e97826 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48b25805 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x495baf8a svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a04bdf6 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d83c186 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dc09515 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ff45c63 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50334688 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51f3c031 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52408a36 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58ecc13c svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a2ae861 xprt_lock_and_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a7b4f1b rpc_print_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a9a2e28 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b4c0a05 rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x601c27ec rpc_lookup_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63e9c1c1 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6552aa20 xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67990827 rpc_lookup_cred_nonblock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x689209c4 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x696a8610 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c81d51b rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d1072c6 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7128a1c5 rpcauth_cred_key_to_expire -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x721019fe svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x730abc38 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x749a325f rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7568baab xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x757b5b04 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7717423c xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a69509b rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b0a8704 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b5bf140 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b85c7fb rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ba505f6 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ce7d6c2 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d21351f svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d2745db svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80be04cb rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80ce1cd3 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x816bd5f0 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84091d9d rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84320f14 svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8445eb0a svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x884e994e xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89292c97 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89d0d779 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b8598f2 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cbe4436 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d8c6c9a xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f9bb326 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fc8b1d8 svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x921fbf89 xdr_set_scratch_buffer -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92250c28 svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9467b888 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a65e6ec rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9bf07d11 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d283ae6 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e6a562b rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e829ed1 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ef449af rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f8afd98 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa018efe0 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa069c829 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0a377b1 csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0ff3347 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa254fbf8 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa31fe170 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa66da6e7 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7c9f1a2 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8c5bce9 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa942f5ea auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa97acbfd rpc_get_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab428079 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabaa74a2 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadd25b7c write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae59a835 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaed9fddb xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaff4f8be sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb05dd7c7 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb06ddd63 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2166341 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbddf253b rpc_protocol -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe117caa svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe7bb8aa xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2047b65 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc480dd4c rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5521300 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc89c18e8 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc913072d rpcauth_generic_bind_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9a984ff rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcab4768b rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb8fd991 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccde66af svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce371a56 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd09a955d svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0c3dfd2 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd162bd98 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1e0c12a svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4a3e202 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4e78dfe rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7f3c3a8 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8c92f6d xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd93a65b8 cache_seq_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcafdc51 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd6b720e rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0793839 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe17b23b7 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1c1a179 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1c25e31 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1cfd7f1 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2ce4395 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3b77c3d svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe670985f rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe876649b svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8843c55 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe95a1dc0 rpc_lookup_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe991487b rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebcb70b7 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec95dafd svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeda578af xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef0c21e4 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0067db3 sunrpc_cache_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf020e64c xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf126d1fd cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3a56720 xdr_buf_read_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3d95527 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5070d8c __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf58d2f5c cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5d51549 rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6c29c8d rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf748a174 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf74f37d8 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7a789c0 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf92fbb40 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfaae9f32 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc8c680b svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd1ae363 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdd68c49 rpc_rmdir -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfddf0467 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe8d7211 xdr_partial_copy_from_skb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffa68484 rpc_release_client -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3e23d714 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x45349d86 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x453a976f vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5e096f9d vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8eef6378 vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x970b77bc vsock_pending_work -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa65c5756 vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa6abeb42 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa939d3b9 vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xac8804cd __vsock_core_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb71e2bd2 vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc125d971 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf5cf6029 vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfd382493 __vsock_create -EXPORT_SYMBOL_GPL net/wimax/wimax 0x02bd01b8 wimax_dev_add -EXPORT_SYMBOL_GPL net/wimax/wimax 0x037c4764 wimax_report_rfkill_sw -EXPORT_SYMBOL_GPL net/wimax/wimax 0x1f188aea wimax_msg -EXPORT_SYMBOL_GPL net/wimax/wimax 0x3e125323 wimax_msg_data -EXPORT_SYMBOL_GPL net/wimax/wimax 0x56fc6652 wimax_msg_alloc -EXPORT_SYMBOL_GPL net/wimax/wimax 0x67169090 wimax_msg_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0xa4c39b99 wimax_msg_send -EXPORT_SYMBOL_GPL net/wimax/wimax 0xa6b8baad wimax_state_get -EXPORT_SYMBOL_GPL net/wimax/wimax 0xa8485672 wimax_state_change -EXPORT_SYMBOL_GPL net/wimax/wimax 0xcce9b27e wimax_dev_init -EXPORT_SYMBOL_GPL net/wimax/wimax 0xd4ba605d wimax_msg_data_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0xde049bff wimax_dev_rm -EXPORT_SYMBOL_GPL net/wimax/wimax 0xea606dac wimax_report_rfkill_hw -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x20ac9601 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x225d21ee cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x406e309f cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x726464d0 cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9399858a cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x96c9851e cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa75e853b cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbdc9b3c3 cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xcccd3f74 cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xda6c11b1 cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xea73c7b1 cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xec67da55 cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfc60f6ab cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x09a1e513 ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x552f38d2 ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x860d1db8 ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xcd6913ee ipcomp_output -EXPORT_SYMBOL_GPL sound/ac97_bus 0xce7ef3c6 snd_ac97_reset -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x29653453 __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x74bbad0d snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/snd 0x11173093 snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd 0x44d437b2 snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd 0x66bfa8f7 snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd 0x7585ad1d snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0x7d7c7e04 snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0xd5ceb6e8 snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0xfbd30b83 snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x267e4feb snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x79c633d8 snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7bb3d880 snd_pcm_stream_lock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8a624415 snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d0ec001 snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9b14b31d snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb56e8663 _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc7ea15ef snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf0644e46 snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3a05d127 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x459e7d2c snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5321792a snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x66dfa3f9 snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x97e69837 snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9b269cee snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc30febfd snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd423cd78 snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe2e3fe2a snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe8947414 snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xea8dfc89 snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1f174a15 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x30a387cf amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4a1f37cb amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xafd8191c amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xbb938512 amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xbd139044 amdtp_am824_set_pcm_format -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf3c1b751 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05db408a snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0720c279 snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0a508c0c snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0bc16e8a snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0da1f144 snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0df8d45c snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0ecb7ff6 snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x126b0e8b snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x13de69f4 snd_hdac_bus_remove_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1471d22a snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x14af6ac3 snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1f23af98 snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x20c1c277 snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x210ff9df _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x26ad9e8c snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x26d5f464 snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x26f0d75d snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x298f1515 snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x29d13609 snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2a04b09e snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3109acfd snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x34dc4731 snd_hdac_bus_queue_event -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3c2cdd8d snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3e98b0e3 snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x42d26d59 snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x42e6188d snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x43be85c6 snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x48846654 snd_hdac_bus_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x488d5413 snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4b96de39 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4dd7c08a snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4e469a87 snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x54927d2b snd_hdac_make_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x56ac7ca5 snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5700dfe9 snd_hdac_bus_add_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5ad1a8c5 snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5cc313b7 snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5cc57eaf snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5f4e9f01 snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6e1408b5 snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x724af45f snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x754bd19a snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7a6f4055 snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7cd20857 snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fe41e54 snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x833ecf17 snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8565e64b snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8579930a snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x88ab5353 snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8d9df7ed snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa4a0e911 snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa887e194 snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xab9f1d05 snd_hdac_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xabbfbf9b snd_hdac_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xadce80e6 snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb0e5880e snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb1a09638 snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb399ef33 snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb6a2d8f6 snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb844ce35 snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb8b1938c snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xba263e6a snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbb34d3c4 snd_hdac_refresh_widget_sysfs -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe662900 snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe819d4d snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc8c1a8f0 snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcc23f784 snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdb503c1e snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xefd165e1 snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf7eb5c22 snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfc65a24a snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x3d121a96 snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x442f08f0 snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7179a7c1 snd_ak4113_create -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xc01f57ff snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xc5999c53 snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xc7e2eebe snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x037fcb46 snd_hda_register_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x047c5b3c snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05d6f527 snd_hda_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05d7931d snd_hda_jack_detect_enable_callback -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x06b61ca6 snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x08b1cc77 snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0975ac15 snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x09c7931e snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a397aae snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e50a25f snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f708a51 snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1125c9ee snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1424b328 snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15fb19fb snd_hda_mixer_bind_ctls_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1757d41e snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18226335 snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c4798f2 azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e17fe21 snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21fc1981 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x232e64ec snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24768d96 snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2abffb16 azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2c9ee257 snd_hda_bind_vol -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ca76d43 snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ca87049 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e869187 snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34ab2554 snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38218685 snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b25e61b _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d849617 snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3ea66d0c snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x404f0d3e azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x429584da snd_hda_mixer_bind_ctls_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4474ef89 snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46060e10 snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x472de055 snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47c7e41e snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c8f1323 snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5035ba34 snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x51195b0d snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x57e22759 snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58995233 snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59cdd6ca snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a83d40e snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b1d0f92 snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5ea00c55 snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x604967d7 snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x635a3be9 snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63c5b875 snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6466f4fb snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64d0f213 snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6530b188 snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6746190a snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67ea77d7 snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ab62d0b snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b97ed47 snd_hda_mixer_bind_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b9914aa snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6bec00b3 snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6cd39147 snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6fa8f01d hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70af0a86 snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x787ff646 azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c964bae snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d413bd7 snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84754099 snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86834356 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89a9e7e2 snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b69f9f4 __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b98c100 snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8da88419 snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ff92ba5 snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x94145661 snd_hda_mixer_bind_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x94c464df azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95cb77c0 snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96339c69 snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9722a7e2 __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x99a219b5 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9adb783c snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9bfdd8ca azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e46f07e snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa03e9b67 snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa09dac8c snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5b3c594 snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa96a6abb snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaac50b74 snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaaf7c93e snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xab9b794c snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xabf68d45 snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac373ff0 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0268727 query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb13462fe snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb3acfbb1 snd_hda_bind_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8e6f098 azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbadff86b snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc16b9ec4 __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc1c9dc91 snd_hda_jack_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc23f0581 snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc2730897 azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc31a7f98 snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc37acb40 snd_hda_mixer_bind_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7449910 snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc98f24ec snd_hda_jack_tbl_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca96858d snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcbf3ad18 snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce454141 snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce4f4a0e snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcfc5535e snd_hda_jack_detect_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd2b10078 hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4a2f922 snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4f617f5 azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9d73240 snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdabbda13 snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe05add48 azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe1c53e4c snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe1e7d803 snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3299b38 snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe4a5d677 snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xebc6b922 snd_hda_mixer_bind_ctls_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xece6b381 snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf51f36a5 snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf54f37aa azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7f331ad snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfa1521af snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc486155 is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1013b71d snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x20da705c snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2e67af61 snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x31e9eed5 snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x40297ac5 snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x42e22d92 snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4df9b52b snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5036046a snd_hda_parse_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5078df29 snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x68740b6c snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7825c13c snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7ce2b0c4 snd_hda_get_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x82494450 snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8ab2f0b6 snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xae189afe snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb01ab933 snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb2c3740b snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd420c562 snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe7811050 snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf770f8ab snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf9fd50e3 snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7532be4f cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x82d6d16d cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x2d84c412 cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x94dc60cc cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0f9da669 cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x415bc225 cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x77e12b13 cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x51b9faf2 es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x52a5907f es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x0853e34f pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x3c786b09 pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x7e314386 pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xb7997ed1 pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x379f2e0d sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x3c5bec68 sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x5d73876c sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x9140ed96 sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x98b8eb7f devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xfde6fa0f devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x320d90d7 ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x67adf840 ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x4c93e635 tpa6130a2_stereo_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x61abc46c tpa6130a2_add_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x850076e5 ts3a227e_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x182dbc7c wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x8a7253cd wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xafa278f3 wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xf5a365c2 wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xea38b65b wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xa008940b wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x256a60a6 fsl_asrc_get_dma_channel -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x429f48a5 fsl_asrc_platform -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x30693bb7 imx_audmux_v1_configure_port -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x58631dab imx_audmux_v2_configure_port -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0134f811 snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0714544e snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b13bb1b snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e8cb1bf snd_soc_unregister_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ee0ab80 snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10a3c46c snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10aa791d snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1260c5af snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13e9e8dd snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1796f51a snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x190880ff snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a363b1e snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ac557fc snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c52d6f3 snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22b189fc snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23c340bd snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2656d083 snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a6872a1 snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ab66590 snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2adff2cd snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b7bf50a snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2bf4fac1 snd_soc_add_platform_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e02dd6f snd_soc_codec_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e85ce25 snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2eb661d9 snd_soc_of_parse_audio_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ed91a59 snd_soc_free_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f45fe53 snd_soc_register_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31a5b01b snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33b162ff snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33f4e545 snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34e6df97 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x356e33df snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36227a8d snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36808d1a snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36d62920 snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x380e5f22 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38537218 dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3bd84ab8 snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d7fb853 snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3fc317bf snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x431988a3 snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x433fb164 snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x446142dd snd_soc_remove_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x469d919b snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c557ebf snd_soc_new_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d44c44e snd_soc_add_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f9c9ae1 snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53e72e3d snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5500aee0 snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x56d2a99e snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x579fcdb7 snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b7b4851 snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5bbf6481 snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d947f8d snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61a0c310 devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63e783f6 snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66a76e2d snd_soc_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6776cae1 snd_soc_dpcm_be_get_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x682c50ad snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69743719 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d9c8124 snd_soc_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f5adeda snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f8818a4 devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x701f9e40 snd_soc_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71a86e2b snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73aaf470 snd_soc_add_codec_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7491aeba snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x76bd2e26 snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78cf41f9 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78f77cc1 snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79092c2c snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a530a55 snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b56dada snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c0f1c64 snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d06ef80 snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f560316 snd_soc_get_dai_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7fb0fb2c snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x833b4f59 snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84375854 snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84ba015e dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x858983db snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85f53f19 snd_soc_platform_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ae52164 soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d10f6c8 snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e8cc02f snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f52a70b snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f8a236e snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9087ae3b snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92091ef6 snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92864805 snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x954a6d3a snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96efb1d0 snd_soc_platform_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97d3832b snd_soc_platform_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98b318eb snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x998052da snd_soc_lookup_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ae418b1 snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b56a53b snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e5049ed snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4678918 snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4b81f71 snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7097e70 snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa83752e9 snd_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa15e44f snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaded9c37 dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaee78ecc snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb15da941 snd_soc_of_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3404ac0 snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4df5a60 dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5e1e01f snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb81d35bd snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb824dcb9 snd_soc_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba3dcc4c snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba958404 snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc226e00d snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc628971a snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6c05e92 snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc87f275f snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca820319 snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcafea835 snd_soc_unregister_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb8ae08a snd_soc_codec_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc3d6bec snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcdda1fc9 snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce7a508c snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf5e500f snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1982ea9 snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd2141b20 devm_snd_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd24e276a snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3f647f7 snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd46ba20a snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd60da9d4 snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7fdaeea snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8de3eb3 dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdaa8882c snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf03dcec snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf0a0421 snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf6a1c84 snd_soc_dpcm_be_set_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0eb38fc devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe78a4b76 snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb61ee9b snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed0a73db snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed59e877 snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xedf90933 snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1c306a2 snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf282cad1 snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9365c13 snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffcb84d8 snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0015e3a1 line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2e835ead line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x321e8ae0 line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3e971285 line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4a6219d3 line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x52e33da3 line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x58bd0f06 line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6fadc5c0 line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x73d63706 line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x94cb1e3d line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9d083e33 line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbb80a706 line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf7b8e1e5 line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf7f2bb05 line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xff89ebf8 line6_read_data -EXPORT_SYMBOL_GPL vmlinux 0x0000dd4e gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0x0011549e crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x002e7f50 pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x0047aa23 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x0054078b __ablkcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x005569a7 add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x007b2bd5 driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x007f12d4 regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0x00b9093e gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x00d67567 clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0x00f88f5f crypto_alloc_instance2 -EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before -EXPORT_SYMBOL_GPL vmlinux 0x01165256 blk_mq_tags_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish -EXPORT_SYMBOL_GPL vmlinux 0x01331de9 sched_setscheduler_nocheck -EXPORT_SYMBOL_GPL vmlinux 0x01858844 ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x0187aef8 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x01937b15 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x0194ca3e perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x01c6e4ca crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01e79745 of_pci_range_parser_one -EXPORT_SYMBOL_GPL vmlinux 0x01ed9da9 do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x021ebfda btree_update -EXPORT_SYMBOL_GPL vmlinux 0x0221819c shmem_get_seals -EXPORT_SYMBOL_GPL vmlinux 0x0221ce19 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0x0227e5a2 __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0x026edede fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x027f065b tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0x02a3547f ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0x02ad4f7a of_get_display_timings -EXPORT_SYMBOL_GPL vmlinux 0x02cead42 ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x02d72870 usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x02ea41e2 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x0314fcea pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0x031ad0d9 usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0x031b8db4 tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0x031c384f task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id -EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x03830e65 fat_detach -EXPORT_SYMBOL_GPL vmlinux 0x0384f50e regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x03852e7c thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x038d5e48 regulator_can_change_voltage -EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0x03b0bce4 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode -EXPORT_SYMBOL_GPL vmlinux 0x03fad8ec fsl_spi_cpm_bufs -EXPORT_SYMBOL_GPL vmlinux 0x03fb9fa5 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x042432a0 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0x04318146 driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0x043c1f63 phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0x043db0a3 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0x045b59e3 rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0x0463f72b device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0x04b5549c __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x04bc0cc4 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0x04c17fdd led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x04e17047 rq_flush_dcache_pages -EXPORT_SYMBOL_GPL vmlinux 0x05102c1a dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0x05198ec1 tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x051b232f debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0x053494cb tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x055c7892 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0x057140b2 regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0x059b5677 ata_eh_qc_retry -EXPORT_SYMBOL_GPL vmlinux 0x05a10f36 usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0x05aa266b rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x05b5e9e3 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0x05fbdfba of_prop_next_u32 -EXPORT_SYMBOL_GPL vmlinux 0x060fd778 crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0x0613dccc __nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0x061525f7 ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0x061dee59 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x063cb539 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x06757efb crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0x069100b3 kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0x06b073e0 input_class -EXPORT_SYMBOL_GPL vmlinux 0x06c5a5e9 scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x06f105ff handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0x072633de kick_process -EXPORT_SYMBOL_GPL vmlinux 0x072d7da7 syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x074324e6 of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0x075209ad device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x077eedf8 __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x0780f549 cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char -EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07cc0d7d gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0x07dda8e2 debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0x07e3f9bd devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0x07ee5ec9 rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0x07f300c3 smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0x081a30ba cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0x08660f35 sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x08af951c usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec -EXPORT_SYMBOL_GPL vmlinux 0x08beeb53 crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x08f4e20e rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x08fb6a68 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x090e4a0f dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x091c824a machine_power_off -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x0926c6c6 fuse_get_req -EXPORT_SYMBOL_GPL vmlinux 0x092775ce sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x096134e2 powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0x0968126c posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0x096baba0 usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0x096d9454 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x09b7ec46 spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0x09be250c ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0x09cd4a1f handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x09d5643f irq_map_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x09dd8923 crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0x09f7ec87 pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x0a0147e4 bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0x0a35c58d tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x0a3d9f42 rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0x0a51ae5b virq_to_hw -EXPORT_SYMBOL_GPL vmlinux 0x0a575394 of_pci_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0x0a91170c thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0ac37156 of_clk_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x0afaeab7 ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b3f78ef debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x0b5200c0 regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x0b90fb79 dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0x0bafd9b7 tc3589x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x0bb189c6 sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0x0bcd7c6e i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0x0bd08f2e ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x0be0ba58 page_cache_async_readahead -EXPORT_SYMBOL_GPL vmlinux 0x0bf004bb udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0x0bf08305 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0c015cd7 ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0x0c037c34 crypto_alloc_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x0c0896d1 extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x0c653bcb __compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0x0c695fac br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0x0c89fefe extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0x0c9dc5aa devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0ca2a063 pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0x0cb04552 dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x0cbce648 seq_open_net -EXPORT_SYMBOL_GPL vmlinux 0x0cc090cf dma_buf_kunmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x0ce5d0f9 platform_bus -EXPORT_SYMBOL_GPL vmlinux 0x0d07311c vcpu_put -EXPORT_SYMBOL_GPL vmlinux 0x0d09c170 ping_err -EXPORT_SYMBOL_GPL vmlinux 0x0d0e5b07 mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0x0d384cd4 pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0x0d3f8a89 devm_usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d63ad3b dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0x0d706d2e rh_set_owner -EXPORT_SYMBOL_GPL vmlinux 0x0d73a952 GregorianDay -EXPORT_SYMBOL_GPL vmlinux 0x0d7bf198 rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x0da54351 __kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0x0db4419e ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0x0db6b74a da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0de06988 cpu_first_thread_of_core -EXPORT_SYMBOL_GPL vmlinux 0x0de0c5b1 crypto_unregister_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x0e097882 kvm_vcpu_init -EXPORT_SYMBOL_GPL vmlinux 0x0e113244 __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0x0e11d504 dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x0e1c526b ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x0e284527 debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x0e30dfea regmap_fields_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x0e53d155 device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0x0e58f3c0 ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0x0e61974e crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0x0ea41f64 pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x0ec9319a ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0x0ecf823a static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x0ef2856f __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x0ef62d4a sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0x0f0b381f crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x0f190372 spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0x0f312e86 cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x0f385551 skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x0f4fc0f2 rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0x0fa79320 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x0fb6335d gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x0ff6dcd5 pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x0ffa9447 __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0x10039d1f bio_trim -EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x102a0f9c regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x10303f26 usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x10706501 sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x1080ce77 input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0x1093be6e sched_setscheduler -EXPORT_SYMBOL_GPL vmlinux 0x1096774c __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x10ab5117 phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0x10b83ef1 debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0x10c58ef4 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0x10cdcdde ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x10f7e201 seq_release_net -EXPORT_SYMBOL_GPL vmlinux 0x10f85c49 devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0x10fa5413 sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0x11064a90 pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0x1114011d threads_shift -EXPORT_SYMBOL_GPL vmlinux 0x11428d0b pwm_config -EXPORT_SYMBOL_GPL vmlinux 0x114ca118 ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0x1157d222 get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x11664258 gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0x116b4639 debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0x117573ed __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0x118cb4dc gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0x11ca4d30 pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x11e5bc16 kobject_move -EXPORT_SYMBOL_GPL vmlinux 0x11ecd46e fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1208861e blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x124bbe09 udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x124c80ac debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x126667d5 trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0x12790d4b xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0x1295852c raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x12a7d009 sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x12ae711d dm_get_rq_mapinfo -EXPORT_SYMBOL_GPL vmlinux 0x12ec1a69 pci_cleanup_aer_uncorrect_error_status -EXPORT_SYMBOL_GPL vmlinux 0x12ef9adf of_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x12fb2a3d regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0x1303a571 wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x131ff177 thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0x133c0d43 wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x134cdf71 find_module -EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x136a4ee6 btree_init -EXPORT_SYMBOL_GPL vmlinux 0x138f9ccb blk_mq_request_started -EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen -EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0x13db1056 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x13e5ea13 __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0x1416e215 wm8400_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x141a7b12 mpc8xxx_spi_tx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x1435ea69 fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x1447a69c reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x145243f1 class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x14a0b405 scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x14b023d3 ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x14b9ca63 serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x14c9410f pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0x14dc49ad raw_seq_open -EXPORT_SYMBOL_GPL vmlinux 0x14e782d6 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x14fe3c29 rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x1500a0bd regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x150b9c5e crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0x15271cde devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x153d2146 __get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x1546945d skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x1550c3d4 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0x1550f9e8 pwm_set_polarity -EXPORT_SYMBOL_GPL vmlinux 0x15566f8b device_create -EXPORT_SYMBOL_GPL vmlinux 0x15724765 usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0x1577ad22 class_destroy -EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x15c21e5e nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x15d9ac55 devm_regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x15dd94f5 sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x15e78b79 of_property_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started -EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress -EXPORT_SYMBOL_GPL vmlinux 0x16697b72 pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0x167ace13 tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x16822541 dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0x168e69f2 clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x1699e6de register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x16b96cbf __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x16c7ba47 crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0x170aa2bd blkg_print_stat_bytes_recursive -EXPORT_SYMBOL_GPL vmlinux 0x171c2fe7 sched_setattr -EXPORT_SYMBOL_GPL vmlinux 0x171d9015 ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0x17200b9a vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0x174e11fa pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0x177167a3 verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x179156ab devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x17ab96f8 tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x17d28764 regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0x17e9e1ed gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x17eecab9 phy_exit -EXPORT_SYMBOL_GPL vmlinux 0x17f5ca5b anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x17f8c195 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0x1835ef7f rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1854265d devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert -EXPORT_SYMBOL_GPL vmlinux 0x1884bbe6 clk_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x18895651 sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0x18f1e833 ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x18fd61fd of_fdt_unflatten_tree -EXPORT_SYMBOL_GPL vmlinux 0x190c5b9a regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x19119803 __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x19510e5e kvm_get_dirty_log -EXPORT_SYMBOL_GPL vmlinux 0x195e3af2 class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x197e69f9 trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x1987e259 page_endio -EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19dc7ffd rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x19f923a2 setup_irq -EXPORT_SYMBOL_GPL vmlinux 0x1a11c3bb inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0x1a1e8a2c md_new_event -EXPORT_SYMBOL_GPL vmlinux 0x1a689aa3 kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x1a711eba inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x1a8c5907 btree_insert -EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table -EXPORT_SYMBOL_GPL vmlinux 0x1a9f96cd blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0x1aac594b sock_update_netprioidx -EXPORT_SYMBOL_GPL vmlinux 0x1aba1c4e crypto_create_tfm -EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing -EXPORT_SYMBOL_GPL vmlinux 0x1af37e7d usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0x1af61ed7 wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x1afcc8db arizona_dev_init -EXPORT_SYMBOL_GPL vmlinux 0x1b03cf79 of_clk_get_parent_count -EXPORT_SYMBOL_GPL vmlinux 0x1b064cf7 rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x1b0ff8e6 mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x1b50098a usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return -EXPORT_SYMBOL_GPL vmlinux 0x1bba42c3 ping_proc_register -EXPORT_SYMBOL_GPL vmlinux 0x1bca0de2 usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0x1bd821c2 tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x1bfbba07 clk_register_fixed_rate_with_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x1c066732 sg_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x1c127337 crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0x1c2ad10a srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x1c397668 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0x1c3dbb58 usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0x1c419217 irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0x1c48eea4 dev_pm_opp_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase -EXPORT_SYMBOL_GPL vmlinux 0x1c6c32a0 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 -EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1c87c82f wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x1c90e0c9 usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x1cd6fdff trace_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0x1cdb2147 zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0x1d0f0cbf powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0x1d106a16 to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d34407d sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0x1d4c7591 fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1d4fbaa3 of_get_pci_domain_nr -EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings -EXPORT_SYMBOL_GPL vmlinux 0x1d623bff scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0x1d6c4c0e i2c_new_probed_device -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x1dc6a5be perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x1dfbcf4c mpic_msgr_disable -EXPORT_SYMBOL_GPL vmlinux 0x1e0ec257 ata_eh_thaw_port -EXPORT_SYMBOL_GPL vmlinux 0x1e148624 driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1e19b7a3 shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x1e3ef0ba ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0x1e434bd6 irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0x1e49b59e of_dma_xlate_by_chan_id -EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1e63b0b9 devm_mdiobus_free -EXPORT_SYMBOL_GPL vmlinux 0x1e707906 rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e7dd016 regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x1e89560c security_kernel_fw_from_file -EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1e970383 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0x1eb17fc9 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebac2bd getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ecc368a cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x1ed29137 subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x1ee29636 led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0x1f3fd987 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x1f4037de md_stop -EXPORT_SYMBOL_GPL vmlinux 0x1f4a6f70 ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x1f5687a6 mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0x1f5b8cf6 sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0x1f783cbc register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8c7007 extcon_update_state -EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x1faa3c11 regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0x1fb47f73 __get_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x1fe18d3b sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0x1fe43e9c tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0x20009ccd debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x201ecb19 devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x2025b325 flush_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0x202634e4 pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0x202c9102 put_pid -EXPORT_SYMBOL_GPL vmlinux 0x2069b29e wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0x206b088e input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0x207adf60 regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x208b8bc7 fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0x208c75ef elv_register -EXPORT_SYMBOL_GPL vmlinux 0x20935881 md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0x20a0772a __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0x20de5193 kvm_disable_largepages -EXPORT_SYMBOL_GPL vmlinux 0x211bb938 xattr_getsecurity -EXPORT_SYMBOL_GPL vmlinux 0x211d3020 clk_debugfs_add_file -EXPORT_SYMBOL_GPL vmlinux 0x2131be3d __rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0x215b43c8 clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x21828817 mmu_notifier_unregister_no_release -EXPORT_SYMBOL_GPL vmlinux 0x21843645 gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21e95d32 nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0x220749d0 pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x22098a8f use_mm -EXPORT_SYMBOL_GPL vmlinux 0x221ac51e serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0x22209fb4 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x2236f452 tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x22529768 ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0x2255c122 mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x2274debf regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0x227ac713 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x227c021e gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x22959610 fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0x22962807 i2c_lock_adapter -EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 -EXPORT_SYMBOL_GPL vmlinux 0x22ddff69 ahash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x231390a1 rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x23331d43 regmap_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x23453aaa gfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0x235ea7c5 dev_pm_opp_of_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x2363109e pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x2394462b of_irq_parse_pci -EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x23b28337 blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x23b9e394 of_css -EXPORT_SYMBOL_GPL vmlinux 0x23bfd74a of_irq_parse_one -EXPORT_SYMBOL_GPL vmlinux 0x23c17028 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0x23cdc4e1 scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0x23e43fce raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x23f4509c of_alias_get_id -EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x23f7f041 reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x24011e14 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0x2403a618 get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0x2424442d napi_by_id -EXPORT_SYMBOL_GPL vmlinux 0x242f428c fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0x2438b818 unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0x243d2aca tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0x24484b4c devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x24489b79 phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0x2457f28c dbs_check_cpu -EXPORT_SYMBOL_GPL vmlinux 0x247d1206 md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0x247d3efe tps65912_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x247e1543 inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x248af38f ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x249ff17a crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key -EXPORT_SYMBOL_GPL vmlinux 0x24b1179e driver_register -EXPORT_SYMBOL_GPL vmlinux 0x24b6a173 sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0x24b8cd8d gpiochip_add -EXPORT_SYMBOL_GPL vmlinux 0x24bf6ebd of_get_regulator_init_data -EXPORT_SYMBOL_GPL vmlinux 0x24c5c3eb i2c_generic_gpio_recovery -EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset -EXPORT_SYMBOL_GPL vmlinux 0x2500c394 blkg_print_stat_ios_recursive -EXPORT_SYMBOL_GPL vmlinux 0x25049f71 rtc_irq_set_state -EXPORT_SYMBOL_GPL vmlinux 0x250fe101 fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x25204818 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x254b56ba ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0x254be5cc serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0x255a4e7a get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x257fbc9d uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0x2589c50b ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x258d99c3 subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x258fe9e3 usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0x25c20c39 dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0x25e35e61 tps65217_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x25f356bd usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0x26017f30 gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x2606b7c9 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x26128aca devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock -EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x26699df9 early_find_capability -EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x26af67f9 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26cc1c28 subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL vmlinux 0x2712a4c5 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x27368cde get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x27572313 nd_numa_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x275aa13b dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0x276b7d57 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0x27abc496 ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0x27c0c4be eventfd_ctx_read -EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info -EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27f6fa68 da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x2835ae7b stmpe_block_write -EXPORT_SYMBOL_GPL vmlinux 0x28391905 request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0x284ac8cb fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x285a5f9d percpu_ida_free -EXPORT_SYMBOL_GPL vmlinux 0x286a9285 shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x28851e9b of_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x2899e04f regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0x28b576ae iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x28b9d9df spi_unregister_master -EXPORT_SYMBOL_GPL vmlinux 0x28c2cd3e uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x28c46b4a wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x28d28faf irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0x28f90091 get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0x291cdca4 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0x292066ae nl_table -EXPORT_SYMBOL_GPL vmlinux 0x29262630 sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0x29651979 blkg_stat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x296e9991 ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0x29c7ad2f crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x29ce0f17 blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0x29e7f826 of_irq_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29f2fe9d gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x2a1099e0 scsi_internal_device_unblock -EXPORT_SYMBOL_GPL vmlinux 0x2a2fba59 inet6_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0x2a3d3fc5 ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x2a5fed28 usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x2aa02205 bio_alloc_mddev -EXPORT_SYMBOL_GPL vmlinux 0x2aa04277 usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0x2aa5aa91 mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x2aced672 clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x2ad22911 tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0x2af59198 __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x2afb4bf2 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0x2b0a3b73 devm_clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2b2407aa __class_register -EXPORT_SYMBOL_GPL vmlinux 0x2b272c80 of_usb_host_tpl_support -EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0x2b3cbb37 regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x2b5b7caa __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x2b5c303b smp_send_reschedule -EXPORT_SYMBOL_GPL vmlinux 0x2b5d5808 ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0x2b69c7b7 wm8350_device_exit -EXPORT_SYMBOL_GPL vmlinux 0x2b94acaf leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0x2bbd14e3 blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x2bdf28da trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc -EXPORT_SYMBOL_GPL vmlinux 0x2c0513f5 irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0x2c13287d component_master_del -EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c483e73 __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x2c7947d5 bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c7e26d5 debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2c9a9e38 kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x2cd0b218 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x2ce86ca2 skcipher_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq -EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0x2cf578f5 rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0x2d0be55f ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0x2d0d38c4 regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0x2d14c941 clk_register_gpio_mux -EXPORT_SYMBOL_GPL vmlinux 0x2d1687ec debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d28ae4a regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0x2d305040 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x2d36c57b rh_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d53fff7 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers -EXPORT_SYMBOL_GPL vmlinux 0x2d5d3af3 power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0x2d69203e pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0x2d6eecfb tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0x2db6e882 bdev_write_page -EXPORT_SYMBOL_GPL vmlinux 0x2dc5a6d1 btree_last -EXPORT_SYMBOL_GPL vmlinux 0x2e088455 pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0x2e155b22 wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x2e182b52 spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0x2e1da9fb probe_kernel_read -EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e236776 of_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2e80a50d kvm_read_guest -EXPORT_SYMBOL_GPL vmlinux 0x2ea233ee dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0x2ea8ac70 class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x2edd7ea1 component_master_add_child -EXPORT_SYMBOL_GPL vmlinux 0x2ee92ffa device_attach -EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f0e527b rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x2f17db2e usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0x2f30e144 ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register -EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x2f77f2d6 __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x2f818363 rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x2fbb916f ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0x2fc5699e mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x2fdedad0 max_gen_clk_probe -EXPORT_SYMBOL_GPL vmlinux 0x2ffb5ff7 btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0x3012bf49 fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0x3028e58d ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0x303e9e84 mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x3052cc40 subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x305888ee cpu_add_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x306a2a37 fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0x3080da63 wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0x309fac0d devres_get -EXPORT_SYMBOL_GPL vmlinux 0x30b6e60d irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x30e3fc16 regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock -EXPORT_SYMBOL_GPL vmlinux 0x3119766d put_device -EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x31348595 led_trigger_store -EXPORT_SYMBOL_GPL vmlinux 0x31351f0b cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0x314e89a0 md_run -EXPORT_SYMBOL_GPL vmlinux 0x3174e05e device_register -EXPORT_SYMBOL_GPL vmlinux 0x31787f8c rio_request_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x318e205d console_drivers -EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put -EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31d83f14 ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0x31d9cf1c ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0x31dd3851 crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval -EXPORT_SYMBOL_GPL vmlinux 0x32207a2b kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0x322d721e relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0x3249d7ff ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0x324ea30f exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0x325519f3 balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update -EXPORT_SYMBOL_GPL vmlinux 0x32914a0d attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0x329c96f8 n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec -EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32dcc04c clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x3311efd2 clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0x33263962 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0x333df3b6 rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x3343a8f6 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x33491cba skb_gso_transport_seglen -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition -EXPORT_SYMBOL_GPL vmlinux 0x336cb4a5 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0x337786fa usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x33a15eb7 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x33d20050 extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x33df1524 alloc_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x33e7b574 usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0x33f4cd9f blkg_prfill_stat -EXPORT_SYMBOL_GPL vmlinux 0x33fce244 devm_regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x342152af platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0x3426fb26 component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0x3461e108 uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0x34694a02 da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x346e2281 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get -EXPORT_SYMBOL_GPL vmlinux 0x34870329 kvm_io_bus_write -EXPORT_SYMBOL_GPL vmlinux 0x34966836 bio_clone_mddev -EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0x34a8da5f __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x34aa76d5 ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0x34b17287 pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0x34bbc174 crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0x34d782c2 usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x34ed6d13 zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched -EXPORT_SYMBOL_GPL vmlinux 0x3526d38e sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x35272081 sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0x352de0d6 fat_attach -EXPORT_SYMBOL_GPL vmlinux 0x3538a331 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x355e856d devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x358368ee blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x35a66cb4 gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x35bf2acd nd_fletcher64 -EXPORT_SYMBOL_GPL vmlinux 0x35f7d550 usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x35fa291c crypto_register_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x361e8977 usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x3621d768 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0x36254533 pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x3630fb0c __mmu_notifier_invalidate_range_start -EXPORT_SYMBOL_GPL vmlinux 0x3634a2b9 tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0x364162ed vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0x3644b9c1 transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x36479940 param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x3649108f ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0x36584580 hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0x366161dd sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0x368895d7 usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0x368e2142 mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0x368f1fea static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36a64e5c percpu_ida_free_tags -EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x36ca84da of_thermal_get_ntrips -EXPORT_SYMBOL_GPL vmlinux 0x36cb6e91 kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x36d887d1 blocking_notifier_chain_cond_register -EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x370121f4 task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0x370ba6e1 ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0x371dbd7c gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0x373207c3 balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x3736a25c ping_close -EXPORT_SYMBOL_GPL vmlinux 0x37b54266 serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0x37bfc3eb debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0x37c972e0 wm5110_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x37d2c2c5 rh_dump_blk -EXPORT_SYMBOL_GPL vmlinux 0x37d92b94 pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x37e0d56e crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0x37ef4a9d __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x38325605 irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0x3848b87e device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x384a6981 __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0x3854810c driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy -EXPORT_SYMBOL_GPL vmlinux 0x386af00f power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0x38790ad1 subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x388ef071 rio_lock_device -EXPORT_SYMBOL_GPL vmlinux 0x38b93431 regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0x38caf33e register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x392cc7e6 pci_intx -EXPORT_SYMBOL_GPL vmlinux 0x392fe739 look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0x3937f2d5 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0x394009e3 dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x39597d25 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x39bbf7c7 ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current -EXPORT_SYMBOL_GPL vmlinux 0x39d566ce __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0x39db1b2f __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module -EXPORT_SYMBOL_GPL vmlinux 0x39e747cd usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x39f39e71 dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0x39f3b830 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0x3a13117a clk_register_gpio_gate -EXPORT_SYMBOL_GPL vmlinux 0x3a1abcb6 __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a61f494 da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x3a6c7b80 metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x3a7be7ca nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0x3a7f1358 regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3abbd18d rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3acf8608 srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0x3ad0e201 scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x3ad8c277 agp_remove_bridge -EXPORT_SYMBOL_GPL vmlinux 0x3afedb58 arizona_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x3b09a078 percpu_up_read -EXPORT_SYMBOL_GPL vmlinux 0x3b0e7104 blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0x3b2e1360 of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0x3b4c47a9 kvm_vcpu_uninit -EXPORT_SYMBOL_GPL vmlinux 0x3b52a2a4 task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0x3b564309 ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0x3b92b1eb tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x3b993167 trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x3bac8219 gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0x3bbb03b7 ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x3bd95436 virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0x3bee869e dma_buf_kunmap -EXPORT_SYMBOL_GPL vmlinux 0x3bf7737b dev_pm_opp_init_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x3c28626f platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x3c4d4942 devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x3c5708be arizona_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x3c6a15fd ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x3c7a8d48 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x3c81593a nd_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x3c892b06 led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag -EXPORT_SYMBOL_GPL vmlinux 0x3ca02b7f blk_mq_free_hctx_request -EXPORT_SYMBOL_GPL vmlinux 0x3cc8e2b2 rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x3cd00c0c crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3cda27c3 devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3cdba35a crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0x3cdd0bf1 max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x3cf6f455 perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0x3cfe42bf __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x3d07ae6a ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x3d0f6b6f pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0x3d353a60 serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x3d56202e phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0x3d612305 iommu_direction_to_tce_perm -EXPORT_SYMBOL_GPL vmlinux 0x3d8f2571 pcibios_map_io_space -EXPORT_SYMBOL_GPL vmlinux 0x3d91c3a2 pcibios_add_pci_devices -EXPORT_SYMBOL_GPL vmlinux 0x3da4fd5f aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x3da65a04 class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x3da67a23 fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x3dbd2fdf wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match -EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab -EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3de09666 debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x3de94516 sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3deaf3cc ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x3dfc436e percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x3e0895cc edac_subsys -EXPORT_SYMBOL_GPL vmlinux 0x3e12fed5 uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0x3e1f72e0 kvm_vcpu_cache -EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x3e4712f3 kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0x3e528f46 crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e85ff43 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0x3ea864d3 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x3eaab0f6 devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x3ec9cd45 ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0x3edf807b debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x3f097ca9 cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x3f1cb321 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0x3f259063 kvmppc_hv_ops -EXPORT_SYMBOL_GPL vmlinux 0x3f2f6b26 dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x3f54a2e0 tpm2_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x3f60ff6b cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0x3f615398 ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x3f652425 swiotlb_unmap_page -EXPORT_SYMBOL_GPL vmlinux 0x3f72bf20 mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0x3f7917e0 phy_create -EXPORT_SYMBOL_GPL vmlinux 0x3f989559 stmpe_block_read -EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0x3fb14423 md_ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x3fc70e17 spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0x3fc8de32 irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x3fd2ce31 ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0x3fd96aa5 __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0x3fef7431 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x3ffde6d8 kvm_read_guest_atomic -EXPORT_SYMBOL_GPL vmlinux 0x4013d65b dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x40189d36 regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0x405afa8a perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0x405fb714 subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0x40641e1f crypto_lookup_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x406a6baf rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x4079ef75 crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0x408d9f8b kvm_init -EXPORT_SYMBOL_GPL vmlinux 0x40903a16 gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL vmlinux 0x40a305b2 elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0x40ac1081 __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x40e91a38 ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0x40ea5308 ata_do_eh -EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x41102607 platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0x411dd23f ablkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x4122dadd nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x413944a1 debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0x413b2b8c pci_reset_pri -EXPORT_SYMBOL_GPL vmlinux 0x4142432c irq_create_direct_mapping -EXPORT_SYMBOL_GPL vmlinux 0x414949de usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x41802da4 gov_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x41858553 led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0x41908b1c usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x419e4d4b rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0x41c149f9 srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x41daa52d da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x42005ea4 virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0x420d1a69 gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x420e9786 trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done -EXPORT_SYMBOL_GPL vmlinux 0x424ba508 simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0x4279d6a2 posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x427de547 pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x4285ec30 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0x428ad0d2 bio_associate_blkcg -EXPORT_SYMBOL_GPL vmlinux 0x42d4e42a nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x42d99873 do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x42dbc933 regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0x42f5ffe0 xfrm_inner_extract_output -EXPORT_SYMBOL_GPL vmlinux 0x432a638a regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0x4342f363 tps65912_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x434ea380 devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0x43613945 __sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x437af313 smpboot_update_cpumask_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x43917800 fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0x43969dbe rh_alloc_fixed -EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key -EXPORT_SYMBOL_GPL vmlinux 0x43b466b0 gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL vmlinux 0x43b73f70 __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x43e76386 rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0x43e899d5 ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x43f1e41b tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x43f4a887 irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift -EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x44042476 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x443be79b sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0x4463c9d8 of_dma_router_register -EXPORT_SYMBOL_GPL vmlinux 0x446785eb get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x446de2e0 of_clk_parent_fill -EXPORT_SYMBOL_GPL vmlinux 0x446e3c47 __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x44738205 blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x448926b8 rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x44aa77ac platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x44b3af27 tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44d319bf __blk_put_request -EXPORT_SYMBOL_GPL vmlinux 0x44daa809 pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0x4507c731 pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x450fb522 kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x45145805 clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0x4533fb58 device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x4550f780 blk_unprep_request -EXPORT_SYMBOL_GPL vmlinux 0x455a12c8 regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x4560ca6d mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4569e16a max_gen_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x4589cb62 stmpe_enable -EXPORT_SYMBOL_GPL vmlinux 0x458eaa2f call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x45b149d3 rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x45c179b6 phy_put -EXPORT_SYMBOL_GPL vmlinux 0x45ebe0d1 gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0x45ef8390 sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0x4600ed0c wm8400_block_read -EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x46101ba5 gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x461084bf crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x46118197 usb_string -EXPORT_SYMBOL_GPL vmlinux 0x4612ab98 pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x4669a82d of_get_nand_bus_width -EXPORT_SYMBOL_GPL vmlinux 0x4688c96a usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x46935038 pci_reset_bridge_secondary_bus -EXPORT_SYMBOL_GPL vmlinux 0x46a835be shash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x46b6717d led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x46bd28fd tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x470f79e9 dummy_con -EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x473040fd arizona_clk32k_disable -EXPORT_SYMBOL_GPL vmlinux 0x474cf0df rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x476b615b pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0x476ea658 clk_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0x4777c8c0 user_describe -EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x47892f1f pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x479e15e4 device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47b715dd thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x47c4f7fc nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0x47c7b6d7 virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0x47d6b58d __blk_run_queue_uncond -EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x4840e264 stmpe_disable -EXPORT_SYMBOL_GPL vmlinux 0x48445e52 get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh -EXPORT_SYMBOL_GPL vmlinux 0x48794c04 ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0x487ca35d wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x48975a01 clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x48fa38c6 sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0x49097882 sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x4915bf27 lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0x491ae061 da903x_read -EXPORT_SYMBOL_GPL vmlinux 0x49270121 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x495250a5 crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0x49558dab tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4968ae6e ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x4980b488 of_dma_configure -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x49924c6a attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x49dbdb6b kthread_park -EXPORT_SYMBOL_GPL vmlinux 0x49dcc1a7 kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL vmlinux 0x49dd3692 pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0x49df618b x509_request_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49eafc5d sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0x49f7d9ee crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x4a1b0e82 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0x4a21db4c of_irq_parse_raw -EXPORT_SYMBOL_GPL vmlinux 0x4a4b2b47 tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name -EXPORT_SYMBOL_GPL vmlinux 0x4a814880 remove_irq -EXPORT_SYMBOL_GPL vmlinux 0x4a819d9e pcibios_finish_adding_to_bus -EXPORT_SYMBOL_GPL vmlinux 0x4a828590 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0x4a8b209c perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0x4a90160e bprintf -EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0x4ad5aa6e trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0x4ad7d0e3 kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0x4ae22777 devfreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4ae8c705 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x4ae99ec7 of_prop_next_string -EXPORT_SYMBOL_GPL vmlinux 0x4af0d3b8 usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0x4b282ba3 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x4b5fd54b ping_seq_fops -EXPORT_SYMBOL_GPL vmlinux 0x4b62abf0 of_cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x4b6a1051 tps65217_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x4b89bb5c clk_gpio_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0x4b8dbd88 sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x4b9530e8 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x4b98827c rh_init -EXPORT_SYMBOL_GPL vmlinux 0x4b9fd216 tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0x4bb5b07c skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x4bbc6095 rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0x4bc15c1d dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x4bcb87ac ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4bd4772d nd_region_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x4bd85a22 smpboot_register_percpu_thread_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x4c23b56b platform_device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0x4c4a5b06 rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x4c4adc69 tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4c645f9e static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0x4c6737db __put_net -EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table -EXPORT_SYMBOL_GPL vmlinux 0x4c85f54a inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x4c881e9d ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0x4c8bb610 rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0x4c8e3e76 ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0x4ca4a7cd pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x4cae1f32 pcibios_free_controller_deferred -EXPORT_SYMBOL_GPL vmlinux 0x4cc590f3 rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x4cd15efa clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x4cd8ea5c blk_mq_register_disk -EXPORT_SYMBOL_GPL vmlinux 0x4cdcde04 kernfs_path -EXPORT_SYMBOL_GPL vmlinux 0x4ce87247 kill_pid_info_as_cred -EXPORT_SYMBOL_GPL vmlinux 0x4d01db37 devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x4d27eac1 unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x4d2defd2 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x4d330ab4 crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0x4d79d7c8 __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x4d8ae3fa wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x4dd27351 ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x4dd3119a pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4de353e7 kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0x4de51686 tcp_fetch_timewait_stamp -EXPORT_SYMBOL_GPL vmlinux 0x4dedc1d4 spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0x4e1f91bb blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path -EXPORT_SYMBOL_GPL vmlinux 0x4e571e09 pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0x4e5f3efa pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x4e78afec irq_domain_add_simple -EXPORT_SYMBOL_GPL vmlinux 0x4e832c17 blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0x4e881334 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0x4e925416 of_reserved_mem_device_init -EXPORT_SYMBOL_GPL vmlinux 0x4e941a29 kvmppc_sanity_check -EXPORT_SYMBOL_GPL vmlinux 0x4e9fa695 fsl8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x4ebde977 regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0x4ebeb8fd ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0x4ed24f13 ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0x4ededba3 wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x4eeddefe smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4ef71dd8 kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x4f05925c devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x4f186754 fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0x4f19ff24 mddev_congested -EXPORT_SYMBOL_GPL vmlinux 0x4f20103a __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x4f21e3b4 crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x4f2eec79 phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0x4f49f2b7 irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0x4f4e5a03 cm_notify_event -EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f85f680 pwm_can_sleep -EXPORT_SYMBOL_GPL vmlinux 0x4fc05133 cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fe116ac dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fe306ab ping_proc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4fe55984 ata_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x4febfd3a __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x4ff0fd02 scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0x501b503f gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL vmlinux 0x505af416 dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0x505b4229 gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0x507596d8 hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x50802c28 fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test -EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x5097e4b0 register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x509d2da7 ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0x509da414 validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x50a7767a devm_spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0x50b00588 relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0x50c3dd39 virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x50c7623f dev_pm_opp_set_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x50e3d38a cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50f6ce40 device_del -EXPORT_SYMBOL_GPL vmlinux 0x50facd59 extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x511d737f pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x511e345f blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0x51467922 alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x514871e8 generic_access_phys -EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val -EXPORT_SYMBOL_GPL vmlinux 0x5165439a cpufreq_table_validate_and_show -EXPORT_SYMBOL_GPL vmlinux 0x5169016a rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0x5171823a key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0x5192bdc6 md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0x51b4c460 ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x51b65a26 rtc_lock -EXPORT_SYMBOL_GPL vmlinux 0x51ba5db9 pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0x51bb516a pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x51c79602 clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x51fcd908 arizona_of_get_named_gpio -EXPORT_SYMBOL_GPL vmlinux 0x520415ec transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x5205e64d disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL vmlinux 0x5221f4bb tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0x522f538b tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x524e6efc ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0x526ac9d5 of_clk_src_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0x526b4321 power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0x52924f20 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0x52ae44bc ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0x52c10001 wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0x52c2df01 component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0x52d1e96f inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0x52e18366 virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0x52e3be98 crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x53125c2e handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0x531a3528 swiotlb_tbl_sync_single -EXPORT_SYMBOL_GPL vmlinux 0x532fce53 regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0x5335dd11 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x533a699a usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x535124c5 xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0x53570377 fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x538dbab0 fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0x538ee895 ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x53990314 mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0x53a4080b crypto_blkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x53ba8b0a xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0x53e034b9 led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0x540a937e usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0x540aa88c vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0x541714a0 pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x541ac361 uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 -EXPORT_SYMBOL_GPL vmlinux 0x54318981 tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0x5440e919 reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x545dbb48 arizona_of_get_type -EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x546c5565 ppc_tb_freq -EXPORT_SYMBOL_GPL vmlinux 0x546ed863 rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0x5471f20e of_pci_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time -EXPORT_SYMBOL_GPL vmlinux 0x547511e6 power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x547ae0d8 usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0x547dd303 inet_hash -EXPORT_SYMBOL_GPL vmlinux 0x5481f49e bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x54aa15f0 devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x54b6c342 devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x54bb7104 spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0x54d18f43 of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0x54e7b9c8 dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x54f15031 dev_pm_opp_get_opp_count -EXPORT_SYMBOL_GPL vmlinux 0x551e9735 ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0x55387e46 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5541e7a5 gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x55474410 posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x557fbce3 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5587fbef regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0x559bf1b4 sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x55a5f2ca ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0x55c5970c devm_mdiobus_alloc_size -EXPORT_SYMBOL_GPL vmlinux 0x55c8a433 relay_open -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x55f51ef3 alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x56127bb6 max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x5626d3db of_scan_bus -EXPORT_SYMBOL_GPL vmlinux 0x562a4293 device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x56348867 __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen -EXPORT_SYMBOL_GPL vmlinux 0x565caf59 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0x566ec448 dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map -EXPORT_SYMBOL_GPL vmlinux 0x568b0f73 regmap_field_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x56a7ebec init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x56d1fd56 dax_pfn_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up -EXPORT_SYMBOL_GPL vmlinux 0x56d81ad8 inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x56fb75bc list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0x57130ab0 unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x5715b549 vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0x57277580 perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0x5733f637 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0x57493a56 to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0x575c5f94 execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0x5769e3e2 ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0x57725151 stmpe_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x578c4012 device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags -EXPORT_SYMBOL_GPL vmlinux 0x57cd47b5 dev_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0x57dacbac fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0x58110346 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x58374e81 crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x58578e9b clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0x5892f832 release_pmc_hardware -EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname -EXPORT_SYMBOL_GPL vmlinux 0x58b9ad11 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0x58c2e106 device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x58ec7e9a usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0x58fa4d2e crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0x5940c18d ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0x5958c954 splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0x5995097a spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0x5996278f phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0x599e6cd2 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x59bac60e irq_create_strict_mappings -EXPORT_SYMBOL_GPL vmlinux 0x59c0439e __blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0x59c9d90d ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0x59cec8e7 devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x59df285f crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq -EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5ab1df04 relay_reset -EXPORT_SYMBOL_GPL vmlinux 0x5ab62f70 sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0x5adf708c regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0x5aec662d device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x5af4c9e2 thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0x5b15b868 power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x5b29ab74 fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5b2e29eb blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0x5b37afdf cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0x5b395b1b fb_sys_read -EXPORT_SYMBOL_GPL vmlinux 0x5b682546 devres_find -EXPORT_SYMBOL_GPL vmlinux 0x5b7f9cc3 dev_pm_opp_find_freq_floor -EXPORT_SYMBOL_GPL vmlinux 0x5b859e93 __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x5bb064a4 pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x5bbd2586 dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x5bc21175 regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bda4fd4 gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5c0cda39 wm5110_patch -EXPORT_SYMBOL_GPL vmlinux 0x5c176dcc usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x5c2efe28 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c792508 dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x5c82b8a0 dev_pm_opp_find_freq_exact -EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5cb57f2d of_irq_get -EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x5cc6d2c0 ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0x5cd08781 wait_for_tpm_stat -EXPORT_SYMBOL_GPL vmlinux 0x5cda3ad0 rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0x5d0b494f dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user -EXPORT_SYMBOL_GPL vmlinux 0x5d1af71e ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0x5d208228 ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x5d45df92 __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0x5d515543 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0x5d5616de rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x5d67a146 ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5dcbff7f irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0x5e1b3dcc sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl -EXPORT_SYMBOL_GPL vmlinux 0x5eb51432 pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0x5ec8d8a6 __init_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0x5edc5cd4 pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x5edd8454 nvdimm_bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5ee7542e reserve_pmc_hardware -EXPORT_SYMBOL_GPL vmlinux 0x5f226035 mod_delayed_work_on -EXPORT_SYMBOL_GPL vmlinux 0x5f851386 inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0x5f9110d1 kvm_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x5fb4e005 regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x60029d32 ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x60093952 power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x60390761 of_irq_parse_and_map_pci -EXPORT_SYMBOL_GPL vmlinux 0x60467b06 btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush -EXPORT_SYMBOL_GPL vmlinux 0x60602c59 queue_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0x60636f7e subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x607a714e tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0x6081b131 devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x6097927d ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0x609aefc5 of_pci_get_host_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL_GPL vmlinux 0x60c5a874 pwm_request -EXPORT_SYMBOL_GPL vmlinux 0x60cca309 __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x60dfeb99 bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq -EXPORT_SYMBOL_GPL vmlinux 0x60fb1599 init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0x6114071d pwmchip_add_with_polarity -EXPORT_SYMBOL_GPL vmlinux 0x6126c1ea cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0x613ca6d3 cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0x6154c1bb of_gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x615ba3cc bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0x6173128b arizona_clk32k_enable -EXPORT_SYMBOL_GPL vmlinux 0x6177447e rio_get_asm -EXPORT_SYMBOL_GPL vmlinux 0x618b8fcd dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0x619698c0 devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x61a90c54 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0x61d09f42 of_pci_msi_chip_remove -EXPORT_SYMBOL_GPL vmlinux 0x6211ca01 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0x6214b16c pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x62270cda stmpe_set_altfunc -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6248342c genlmsg_new_unicast -EXPORT_SYMBOL_GPL vmlinux 0x624cf45e flush_fp_to_thread -EXPORT_SYMBOL_GPL vmlinux 0x62547e11 devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x626d4440 digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0x626e485b flush_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0x62977ef4 pci_bus_sem -EXPORT_SYMBOL_GPL vmlinux 0x62b27a6d netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0x62b7a0b4 sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0x62bd5a6d __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x62c13aa0 __sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x62e418aa pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0x62f8b0e3 usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0x62fca1f3 register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x63118b62 bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6314a661 fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x6321c58e gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x63323446 cpufreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6338611f pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0x63798687 posix_timers_register_clock -EXPORT_SYMBOL_GPL vmlinux 0x637b0e04 __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x6384b64b unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x63a11c3e fsl_spi_cpm_free -EXPORT_SYMBOL_GPL vmlinux 0x63a95d8b dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0x63c59fcf bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x63d64bea pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0x63ea807f pci_intx_mask_supported -EXPORT_SYMBOL_GPL vmlinux 0x63f0e08e wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x63f14ebe io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x6408dd87 input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x6428da4f rh_attach_region -EXPORT_SYMBOL_GPL vmlinux 0x6431da36 sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0x643dd0d9 crypto_larval_lookup -EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched -EXPORT_SYMBOL_GPL vmlinux 0x64467b99 devres_add -EXPORT_SYMBOL_GPL vmlinux 0x646fe014 sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x6478b665 __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x64a42bbf iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0x64b3b05c crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0x64becd1d nf_unregister_afinfo -EXPORT_SYMBOL_GPL vmlinux 0x64c6482e da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x64e1e354 virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0x64e80dfb freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x653eb0a3 put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x654befd0 perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0x654df09b regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0x6555ec15 of_irq_to_resource_table -EXPORT_SYMBOL_GPL vmlinux 0x65730ef2 bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0x65839efe usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x65ae24d4 crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0x65c7de23 mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65ec01ce inode_congested -EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x6627f60d to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x663fbea0 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x6656a4d3 get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0x667ae5bf mnt_clone_write -EXPORT_SYMBOL_GPL vmlinux 0x668304a5 __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x669da1fd kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL vmlinux 0x66afb53b unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x66bc4973 debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x66d59fe1 rtc_irq_unregister -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66e6321c regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x6700cef4 __netlink_alloc_skb -EXPORT_SYMBOL_GPL vmlinux 0x670e8094 cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x672fd074 usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy -EXPORT_SYMBOL_GPL vmlinux 0x67680769 __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x67694294 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0x678a4105 synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x67b251c7 led_init_core -EXPORT_SYMBOL_GPL vmlinux 0x67f28396 spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x68242cba wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0x68273ac0 relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x687c490f devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x68846d5f regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x68a9c0a3 irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0x68c20839 swiotlb_tbl_map_single -EXPORT_SYMBOL_GPL vmlinux 0x6906e6a6 crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0x690efbeb sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x6914bf5b sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0x691715b9 regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval -EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x693da22f dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0x6955d3cd split_page -EXPORT_SYMBOL_GPL vmlinux 0x69633cfb device_show_int -EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x697cbbb4 threads_per_core -EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0x69a29423 vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0x69a2d303 __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0x69a3894c usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x69b6057b dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0x69cdbcfd bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0x6a1be597 usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x6a2b6536 kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL vmlinux 0x6a45276b bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a936feb system_verify_data -EXPORT_SYMBOL_GPL vmlinux 0x6a97becb cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x6acb8d84 ppc64_caches -EXPORT_SYMBOL_GPL vmlinux 0x6b05dce5 da903x_update -EXPORT_SYMBOL_GPL vmlinux 0x6b26f925 security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0x6b2dd5a0 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0x6b48a910 switch_booke_debug_regs -EXPORT_SYMBOL_GPL vmlinux 0x6b592ba6 devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b88772d pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x6bb6bba1 tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x6bf9337d inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x6c08a177 wait_on_page_bit_killable_timeout -EXPORT_SYMBOL_GPL vmlinux 0x6c230983 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x6c234ac3 blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0x6c4558c3 pstore_register -EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq -EXPORT_SYMBOL_GPL vmlinux 0x6ccc1362 class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0x6d14fa95 tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d5029f2 tc3589x_block_write -EXPORT_SYMBOL_GPL vmlinux 0x6d652238 power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x6d6db89d usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x6d74237c __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x6d75459a securityfs_create_dentry -EXPORT_SYMBOL_GPL vmlinux 0x6d7ac608 adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0x6ddf15f0 scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x6de06a08 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x6de8f3ee sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy -EXPORT_SYMBOL_GPL vmlinux 0x6e238cb4 bpf_prog_realloc -EXPORT_SYMBOL_GPL vmlinux 0x6e3707b2 ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x6e379526 kernstart_addr -EXPORT_SYMBOL_GPL vmlinux 0x6e49ab01 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x6e4d7cab skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0x6e5d8775 fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6ebb952f led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0x6ec7cfe9 policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0x6eda9e34 tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0x6efc54ac regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x6f2bc495 devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x6f36f65c thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x6f3cf6bd register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto -EXPORT_SYMBOL_GPL vmlinux 0x6f7ed436 pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x6f810cd0 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0x6f8513d8 serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x6f8ea739 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0x6fbc16ed ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6ff67754 fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0x6ffd86e6 crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x702fa9a8 find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x704b84df extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x705607b2 gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x7077a902 regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0x709e04da xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x70a789a2 net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x70aaba7c devm_pwm_put -EXPORT_SYMBOL_GPL vmlinux 0x70af6649 device_property_present -EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated -EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x71210905 ata_sff_data_xfer_noirq -EXPORT_SYMBOL_GPL vmlinux 0x712fbef7 hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x713a44e5 netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x7147c45a of_reserved_mem_device_release -EXPORT_SYMBOL_GPL vmlinux 0x7148f72c rio_get_device -EXPORT_SYMBOL_GPL vmlinux 0x71621fe0 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x71787003 debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71a770d8 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x71cab1fe usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab -EXPORT_SYMBOL_GPL vmlinux 0x7211d58b xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0x7217b6bd ref_module -EXPORT_SYMBOL_GPL vmlinux 0x721c1e69 dev_pm_opp_remove -EXPORT_SYMBOL_GPL vmlinux 0x722bfb47 crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0x724b4565 tpm2_startup -EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x72894ec9 of_pci_get_devfn -EXPORT_SYMBOL_GPL vmlinux 0x72dcb583 led_trigger_show -EXPORT_SYMBOL_GPL vmlinux 0x72e05342 syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x72e22739 gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x73056f7c ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x73166ea5 phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x7333b45a cpufreq_frequency_table_target -EXPORT_SYMBOL_GPL vmlinux 0x736ced9d crypto_alloc_ablkcipher -EXPORT_SYMBOL_GPL vmlinux 0x737f7dec rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0x73c5b2ba serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x73cb19df regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x73cf6403 device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x73dfa109 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0x73f3b154 devm_led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0x74002d9d __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x7402b45c get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0x740b2ca5 fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0x741383fa anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x743dd202 rhashtable_insert_rehash -EXPORT_SYMBOL_GPL vmlinux 0x7440ed6a spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0x744d0c4c sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x746b44b7 usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x746d17ca kvm_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0x74a37dcd kvmppc_emulate_instruction -EXPORT_SYMBOL_GPL vmlinux 0x74ad43c9 pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74d80e36 kvm_get_kvm -EXPORT_SYMBOL_GPL vmlinux 0x74d8a76a devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x74e63e81 pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x74f1b3ac wm5110_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 -EXPORT_SYMBOL_GPL vmlinux 0x751f47b8 shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x75329035 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0x75427bac regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x754c7d63 find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0x756cf6f4 bpf_prog_get -EXPORT_SYMBOL_GPL vmlinux 0x756db4c1 ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0x757b49d2 kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only -EXPORT_SYMBOL_GPL vmlinux 0x75a08fcc devm_power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x75a3aa78 rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x75b40258 devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x75c9d8c3 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x75d29a40 unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x75f2a044 usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x75fe3acd mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0x760e1210 usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x76122693 __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0x761ed6ec hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x7624f83c fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0x762c0858 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x76354781 fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0x765c130a rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0x7661456f securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x76821be7 agp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0x76929148 crypto_init_shash_spawn -EXPORT_SYMBOL_GPL vmlinux 0x76c83f25 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x76df7407 dma_buf_kmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0x76f0adf6 dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0x771031c0 of_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x771c1640 pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x775fb407 platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7770af30 gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x7789327e transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x778f119b gfn_to_memslot -EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77c620c9 xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0x77c6f8cf gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0x77f93850 device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x77fe3f64 extcon_unregister_interest -EXPORT_SYMBOL_GPL vmlinux 0x780fa054 extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x78200415 dma_request_slave_channel_reason -EXPORT_SYMBOL_GPL vmlinux 0x78204af2 pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x7820c817 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0x782a20dd ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0x782ec6c8 nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0x783ce6b6 ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0x783efca8 ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x78532c84 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x7877bf0a spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x78a3964a of_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0x78c80d97 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0x78cc5bec hugetlb_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x7908e823 ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x7908e992 crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x7910ab4f regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0x7911a4e5 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7930430a irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off -EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x795b6af0 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x799d84a4 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x799fe42d user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x79a307f0 wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x79ae0b74 extcon_register_interest -EXPORT_SYMBOL_GPL vmlinux 0x79c480da rh_dump -EXPORT_SYMBOL_GPL vmlinux 0x79c91a81 blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79f319ae regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0x79f52a07 usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x7a3c232e virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0x7a44ccb0 i2c_new_device -EXPORT_SYMBOL_GPL vmlinux 0x7a4dd82a skcipher_geniv_init -EXPORT_SYMBOL_GPL vmlinux 0x7a82897f pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0x7aa64803 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL vmlinux 0x7ab074d0 devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0x7ac4410a __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x7ac999aa gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x7ae8d7c3 serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0x7aecb62a crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x7b187006 vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0x7b1addea kvm_irq_has_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set -EXPORT_SYMBOL_GPL vmlinux 0x7b25e433 rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0x7b286fe6 vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x7b40c163 disk_get_part -EXPORT_SYMBOL_GPL vmlinux 0x7b497533 ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0x7b59e896 trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x7b62aa17 regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0x7b70ed5c pm_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0x7b9b49e6 list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x7ba615cc skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x7bc854fe preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x7be6911b invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0x7be9f652 ablkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x7beb0668 blk_queue_dma_drain -EXPORT_SYMBOL_GPL vmlinux 0x7bedab27 of_get_nand_on_flash_bbt -EXPORT_SYMBOL_GPL vmlinux 0x7bf0f810 bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0x7bf4753f device_create_vargs -EXPORT_SYMBOL_GPL vmlinux 0x7c004e17 user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0x7c1722f6 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0x7c242196 nd_device_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x7c3633d9 tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x7c50ad50 get_dcookie -EXPORT_SYMBOL_GPL vmlinux 0x7c6b733c shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7ca92138 mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7cacc96b sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x7cbef227 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x7cbfe2ae irq_create_mapping -EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7ce55ad6 mpc8xxx_spi_rx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7ced2cb0 sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0x7cedf677 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x7cfc13a9 gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d0e62dc kvmppc_handle_store -EXPORT_SYMBOL_GPL vmlinux 0x7d1b0a88 pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7d1fb1bb ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x7d369f9b dax_fault -EXPORT_SYMBOL_GPL vmlinux 0x7d481529 mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d69086b locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0x7d6acb96 usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7db66116 of_display_timings_exist -EXPORT_SYMBOL_GPL vmlinux 0x7dba26aa ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x7dbc3a5a invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0x7dc1e388 alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0x7dcb1590 pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0x7dcb7a03 regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7de2c348 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x7e17ba7b klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x7e29c032 xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x7e37d2ef skcipher_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7e3e6dfb perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0x7e51aa87 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e7f50a7 cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0x7e9ba347 wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x7ea1a2bc probe_kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x7eafd4df nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0x7edebeff hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0x7ee5203d usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x7f008202 btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0x7f13d491 pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x7f1be5ed of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature -EXPORT_SYMBOL_GPL vmlinux 0x7f303511 rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0x7f3412ce ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x7f3940c8 net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0x7f3ae4a2 map_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x7f54770e ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x7f6759ad ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x7f7a9683 kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x7f7bc710 klist_next -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f7f5742 usb_phy_generic_register -EXPORT_SYMBOL_GPL vmlinux 0x7f8e626f crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0x7f97e4a9 device_find_child -EXPORT_SYMBOL_GPL vmlinux 0x7f9b5162 devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x7fa7d93a kvm_flush_remote_tlbs -EXPORT_SYMBOL_GPL vmlinux 0x7fb771d2 mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7fc3ea06 of_property_read_u32_index -EXPORT_SYMBOL_GPL vmlinux 0x7fc5477c aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0x7fcaac2f __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x7fd0a84a class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x7fdef3ae crypto_tfm_in_queue -EXPORT_SYMBOL_GPL vmlinux 0x800898ad lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0x80152807 sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0x803f9652 spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0x804ea02d __find_linux_pte_or_hugepte -EXPORT_SYMBOL_GPL vmlinux 0x8055dda2 ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x80601f2a usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x8072213a adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x80961870 rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x80a97d40 ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80d22fad rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x80d53994 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x80fa3a3a hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x810a826e usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x8114b8d6 md_is_badblock -EXPORT_SYMBOL_GPL vmlinux 0x81156662 netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x81185501 of_property_count_elems_of_size -EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x8132c7a3 crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0x813e44ba xhci_run -EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0x8152e111 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x8162159f __securityfs_setup_d_inode -EXPORT_SYMBOL_GPL vmlinux 0x81b4add5 fuse_put_request -EXPORT_SYMBOL_GPL vmlinux 0x82150e01 of_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x8245039f pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0x8254f5b3 devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0x82597a2d phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x827643eb ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82e9c582 ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0x82f774f6 __class_create -EXPORT_SYMBOL_GPL vmlinux 0x830cf0d7 regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0x832b7d28 pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x835d64e2 of_fixed_clk_setup -EXPORT_SYMBOL_GPL vmlinux 0x835f097e cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0x836b2294 call_filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0x836d61d0 atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x83797099 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x837a68e8 scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0x8396210e pwm_free -EXPORT_SYMBOL_GPL vmlinux 0x8398d867 clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0x83b15f35 tps65912_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x83d825bf spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x83dfd63e file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x83ea63ce hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0x8400925b dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0x84251e18 device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0x84368bed __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x846be635 ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0x84793786 regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x849d0a53 pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x849f5ff5 crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x851522e2 crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read -EXPORT_SYMBOL_GPL vmlinux 0x855fda30 spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0x857112e5 debugfs_remove_recursive -EXPORT_SYMBOL_GPL vmlinux 0x85ad1d55 kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0x85b25678 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x85b52d99 driver_find -EXPORT_SYMBOL_GPL vmlinux 0x85b72e27 dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0x85b85598 led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x86010bdb ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0x8604699a devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x8606d7cf gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod -EXPORT_SYMBOL_GPL vmlinux 0x862d443d ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x8666a7c5 fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x866ec5eb tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x8678e2bb yield_to -EXPORT_SYMBOL_GPL vmlinux 0x868459c8 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x868aa4f4 regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0x86917114 devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x869eb50f crypto_ahash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x869fdf5f extcon_set_cable_state -EXPORT_SYMBOL_GPL vmlinux 0x86b05142 of_regulator_match -EXPORT_SYMBOL_GPL vmlinux 0x86b8a710 sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x86ce4b57 ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0x86daa6b5 blk_queue_flush -EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x86f8bdb2 kvmppc_handle_load -EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x86ff6dcf bus_register -EXPORT_SYMBOL_GPL vmlinux 0x8702e548 process_srcu -EXPORT_SYMBOL_GPL vmlinux 0x870b5949 usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0x870c24b4 crypto_alg_lookup -EXPORT_SYMBOL_GPL vmlinux 0x872199ab class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x8729cf5c ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error -EXPORT_SYMBOL_GPL vmlinux 0x874f6c9d pcibios_remove_pci_devices -EXPORT_SYMBOL_GPL vmlinux 0x87571e31 sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0x876a8ef8 platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0x8772e753 handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0x87847470 md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0x87913878 regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0x8792df7b crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0x8798b2c3 get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x87a78f92 dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0x87aeb979 rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x87bc8c0a dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x8804af3d usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x88051e54 reservation_object_test_signaled_rcu -EXPORT_SYMBOL_GPL vmlinux 0x88060b51 ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0x88281b88 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0x883bcd57 __module_text_address -EXPORT_SYMBOL_GPL vmlinux 0x884156d0 get_kernel_page -EXPORT_SYMBOL_GPL vmlinux 0x884d0a91 gfn_to_pfn_prot -EXPORT_SYMBOL_GPL vmlinux 0x88690178 gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0x889ecfeb dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x88bcf4ff cpufreq_governor_dbs -EXPORT_SYMBOL_GPL vmlinux 0x88d47cfc disk_part_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x88e36c5c clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x88e645e2 regmap_update_bits_check_async -EXPORT_SYMBOL_GPL vmlinux 0x88ff5ea8 sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x8965959f devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x8971a712 tpm2_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x8981dc2c cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0x898535f8 cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0x898cf8b9 spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0x89a2e791 wm5102_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x89b7b09a shash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x89da0c3b mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0x89dbf5b0 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x89ff73c4 user_update -EXPORT_SYMBOL_GPL vmlinux 0x8a14d565 of_fixed_factor_clk_setup -EXPORT_SYMBOL_GPL vmlinux 0x8a190bd6 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x8a1f4e1a attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode -EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod -EXPORT_SYMBOL_GPL vmlinux 0x8a58b1fa gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0x8a96e5a8 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0x8a9906cd key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0x8aaa6e6b netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8ae6b964 scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0x8b03c71a __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x8b0e8755 regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b6b77c6 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0x8b70e8ea __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x8b865c94 usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0x8ba5f62f kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0x8bb7cfe0 arizona_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x8bbfba1d vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x8bde3855 pci_restore_ats_state -EXPORT_SYMBOL_GPL vmlinux 0x8bdedc29 ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x8bf27de4 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0x8c019600 adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c2de6bd metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8c34ad27 __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0x8c3bbc71 debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0x8c5c34fe regmap_field_write -EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status -EXPORT_SYMBOL_GPL vmlinux 0x8c69fae7 usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c8f2f8f __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x8ca2f180 xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0x8cada242 tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x8cae54b5 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8cb507cb __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0x8cb76129 ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0x8cd40aa3 transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params -EXPORT_SYMBOL_GPL vmlinux 0x8cdf3118 ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x8cea765f memalloc_socks -EXPORT_SYMBOL_GPL vmlinux 0x8cfd1380 bsg_request_fn -EXPORT_SYMBOL_GPL vmlinux 0x8d07dd3b usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x8d105816 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0x8d10e311 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0x8d187bff regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0x8d1f64d3 devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8d21177c ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x8d2b1681 nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0x8d4f9709 fat_scan -EXPORT_SYMBOL_GPL vmlinux 0x8da01274 kvm_get_pfn -EXPORT_SYMBOL_GPL vmlinux 0x8daa708d ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x8dab4462 inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0x8db19ff1 shmem_add_seals -EXPORT_SYMBOL_GPL vmlinux 0x8dc20a69 scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0x8de5b155 pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0x8df1d6be regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0x8dfcfe95 rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x8dfd5821 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x8e01dff9 fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0x8e035d1f tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0x8e19a85b gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0x8e1cd06f kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL vmlinux 0x8e2b25c2 videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x8e32819b dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0x8e486878 usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0x8e503a76 ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0x8e617f3a filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0x8e63794e rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0x8e770c16 virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0x8ea6b4a9 devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x8ed5231e set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0x8ee51243 spi_master_suspend -EXPORT_SYMBOL_GPL vmlinux 0x8ef55d17 skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f09ddf8 __pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x8f26bbd0 dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0x8f4e659d da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x8f642b0b ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8fa43f29 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL vmlinux 0x8fbaa4bf eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0x8fced602 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0x8fd635bc kvm_read_guest_cached -EXPORT_SYMBOL_GPL vmlinux 0x8fe3cb30 inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0x8ff12ed3 component_add -EXPORT_SYMBOL_GPL vmlinux 0x90031ab6 power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x90099d0c dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0x90130208 nvdimm_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x903a527c inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x9061ef76 msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x9077d5ea usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x908d1225 pm_runtime_get_if_in_use -EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x90af0ffb kvm_vcpu_gfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0x90b1c0d0 pwm_enable -EXPORT_SYMBOL_GPL vmlinux 0x90c9bfbb __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x90cecac2 dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x90dbe0aa kvm_is_visible_gfn -EXPORT_SYMBOL_GPL vmlinux 0x90e8d67e unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0x90eb4510 da903x_write -EXPORT_SYMBOL_GPL vmlinux 0x910abead component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0x911587d2 serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0x9121ec3a __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x91634476 apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0x91707b05 regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x9175264c dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0x917549a4 virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0x91779abe gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x91a6722a blkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x91b08bc4 crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x91be01ac usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91f0a170 xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0x91f0c992 __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x91faf423 mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0x920cb98c regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x9226f6a8 ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0x922be9ff transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x9245da11 realmode_pfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x9253818e blk_queue_flush_queueable -EXPORT_SYMBOL_GPL vmlinux 0x92698d0f preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x926ca566 init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0x927640e0 __blkdev_driver_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x92a24f53 fsnotify -EXPORT_SYMBOL_GPL vmlinux 0x92c328a0 ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0x92c59c3f cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0x92d047a5 key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92fc72c3 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x9331dd80 blkcipher_aead_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x93354538 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x9376136f regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x937bc17b scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0x9380c524 serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0x939e7c32 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x93ac6995 cpu_add_dev_attr_group -EXPORT_SYMBOL_GPL vmlinux 0x93e148a1 devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x93eba7a6 tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x9432365e device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x943a14d8 __percpu_ida_init -EXPORT_SYMBOL_GPL vmlinux 0x94496b4d led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0x94789f56 usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x94b33ad1 bdev_read_page -EXPORT_SYMBOL_GPL vmlinux 0x94cd6e64 tps65217_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x94d972b7 unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x94dff343 fib_select_path -EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop -EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x95202b29 pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x9538cd09 crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x95629cf0 regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0x9584bb85 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0x958642ef device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x9594c014 da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0x9599ca66 i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x95b2d155 vcpu_load -EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95ecf404 mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0x96142988 regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x96432ead rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x964e009f sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9664a9ae vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x968d8c10 sdio_run_irqs -EXPORT_SYMBOL_GPL vmlinux 0x96b801a9 trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0x96d13b30 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x96d9fb56 pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0x971990b9 __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x971a0e39 register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x9735f061 register_jprobes -EXPORT_SYMBOL_GPL vmlinux 0x97381583 pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0x974bd287 irq_find_matching_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x975e9a10 serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x9766f34e fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0x976d2dae mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0x9771b152 stmpe_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x978ffe55 blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x97962918 virtqueue_get_avail -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x9801ed0a trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x980a911a ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0x980fa5f1 pci_ats_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x982cd486 __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x983c7494 rh_detach_region -EXPORT_SYMBOL_GPL vmlinux 0x98503165 wm8998_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x985ead3e inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x98643fed __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0x987268d9 kvm_write_guest -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x988077dc rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0x9893f372 blkg_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x98a02a70 register_jprobe -EXPORT_SYMBOL_GPL vmlinux 0x98aced22 stmpe_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x98b1d0f7 pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0x98d8b754 sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0x98e38520 crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0x98e3a7ff dma_buf_vmap -EXPORT_SYMBOL_GPL vmlinux 0x98e98c83 skcipher_geniv_exit -EXPORT_SYMBOL_GPL vmlinux 0x98f9f73d fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on -EXPORT_SYMBOL_GPL vmlinux 0x99192c88 ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x99287969 list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0x993bcbc7 tcp_peer_is_proven -EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x997343a6 pci_enable_pri -EXPORT_SYMBOL_GPL vmlinux 0x99771778 bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range -EXPORT_SYMBOL_GPL vmlinux 0x9982b0f5 unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0x99b6aef6 tps65912_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x99b9c509 mpc8xxx_spi_rx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x99bbbd89 pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x99d8d942 mpc8xxx_spi_tx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a1f9e4d max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0x9a498c07 virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x9a49d937 __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x9a7eb50f __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0x9a805f04 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck -EXPORT_SYMBOL_GPL vmlinux 0x9aad6540 klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x9ad06ca2 devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x9ad7d1f2 nvdimm_bus_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9aed14e0 sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x9b2d015e ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0x9b456fa2 i2c_new_dummy -EXPORT_SYMBOL_GPL vmlinux 0x9b5e9d63 pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x9b728182 blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0x9b8ad4bd to_nd_blk_region -EXPORT_SYMBOL_GPL vmlinux 0x9b964277 tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x9ba6e674 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0x9baefcf3 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9bb3950f task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0x9bca03ca ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x9be2adb3 dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9bfbbbc7 regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0x9c073039 sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0x9c1682aa pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x9c18e8ae thermal_notify_framework -EXPORT_SYMBOL_GPL vmlinux 0x9c4dca95 devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x9c50cf3b kvmppc_st -EXPORT_SYMBOL_GPL vmlinux 0x9c741de2 spi_setup -EXPORT_SYMBOL_GPL vmlinux 0x9ce47305 of_pci_msi_chip_add -EXPORT_SYMBOL_GPL vmlinux 0x9ce63b7e __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x9cf79673 usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0x9d22ecda crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x9d6b3fb6 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x9d7d628c fsl_rio_mcheck_exception -EXPORT_SYMBOL_GPL vmlinux 0x9d84ea8d trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0x9d8b01ba rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0x9d91616f crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported -EXPORT_SYMBOL_GPL vmlinux 0x9db2f2bc dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x9dbbd863 regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9ddda2ca virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x9ded4b03 exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0x9e2e645d _gpiochip_irqchip_add -EXPORT_SYMBOL_GPL vmlinux 0x9e3d81ea __mmu_notifier_invalidate_range_end -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e4f675d pci_hp_change_slot_info -EXPORT_SYMBOL_GPL vmlinux 0x9e8672f8 _submit_bh -EXPORT_SYMBOL_GPL vmlinux 0x9e88a234 extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9e8b4769 gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0x9ea614e7 nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0x9ea818f3 kvm_write_guest_cached -EXPORT_SYMBOL_GPL vmlinux 0x9eac2555 devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x9ec7b076 usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9f41d0a9 ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x9f4c85cb sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0x9f739330 tc3589x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x9f8915ee pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x9f8e6223 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x9fb58d61 of_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x9fcd2399 irq_find_mapping -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fd20178 __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0x9fd47b85 serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0xa0208e02 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0xa02a38e8 mmput -EXPORT_SYMBOL_GPL vmlinux 0xa040a1b8 pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xa08e46c4 component_master_add -EXPORT_SYMBOL_GPL vmlinux 0xa08eb670 blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0xa0a27fff pci_address_to_pio -EXPORT_SYMBOL_GPL vmlinux 0xa0b6152e sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xa0c7c8b5 of_resolve_phandles -EXPORT_SYMBOL_GPL vmlinux 0xa0d4d0d2 device_rename -EXPORT_SYMBOL_GPL vmlinux 0xa0e8cc2a usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0xa12a15ed device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xa171b5f2 bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0xa1933eac devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0xa1aa8d71 ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0xa1c220ef ata_eh_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0xa1d1770a pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0xa1d5070b tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0xa1e15cb9 sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0xa2057158 ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0xa21fe7de bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xa223969a rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xa22df663 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0xa22f095e regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0xa2403fa3 usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0xa24533eb bdev_direct_access -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa2718017 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa27db43a pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xa2813c86 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0xa28aaf29 rh_create -EXPORT_SYMBOL_GPL vmlinux 0xa291b273 isa_bridge_pcidev -EXPORT_SYMBOL_GPL vmlinux 0xa29caeb6 of_console_check -EXPORT_SYMBOL_GPL vmlinux 0xa2ac5519 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0xa2b8379d dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xa2fa20ad component_del -EXPORT_SYMBOL_GPL vmlinux 0xa31c116d page_cache_sync_readahead -EXPORT_SYMBOL_GPL vmlinux 0xa38437d5 ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xa384918b pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register -EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3a2d9af walk_system_ram_range -EXPORT_SYMBOL_GPL vmlinux 0xa3b323a2 usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3d665f7 ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xa3e16693 gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0xa4023822 devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xa47c20e1 dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa4e0dc45 i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0xa4f9f6ac pci_try_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xa51161ee sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xa512350c nf_register_afinfo -EXPORT_SYMBOL_GPL vmlinux 0xa52fdcf0 devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xa53e88e6 of_get_fb_videomode -EXPORT_SYMBOL_GPL vmlinux 0xa5586cd4 pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0xa595d6d7 usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xa5b00659 ppc_proc_freq -EXPORT_SYMBOL_GPL vmlinux 0xa5d1db32 scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0xa5d391da generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0xa5d973dd ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0xa5dc7df8 bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa5efe460 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0xa5f71440 skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xa5fe27df pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xa6239f72 bio_associate_current -EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0xa629b18a unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0xa643f382 blk_mq_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0xa658ab5a adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xa65b4654 pwm_disable -EXPORT_SYMBOL_GPL vmlinux 0xa660b844 device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0xa6635d59 lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0xa6647139 tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa68d6df2 cpufreq_frequency_table_cpuinfo -EXPORT_SYMBOL_GPL vmlinux 0xa6ac3857 rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xa6c5601b usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xa6c8095f __netpoll_free_async -EXPORT_SYMBOL_GPL vmlinux 0xa6cb2a2e dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xa6d7f77a of_clk_get_parent_name -EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa7257dd2 pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0xa74f5220 of_usb_update_otg_caps -EXPORT_SYMBOL_GPL vmlinux 0xa75c7b8b tpm2_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0xa75d99b8 rtc_irq_register -EXPORT_SYMBOL_GPL vmlinux 0xa77269c2 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0xa791040d regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0xa7a47d50 kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0xa7b9733a devres_release -EXPORT_SYMBOL_GPL vmlinux 0xa7bbeae3 pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xa7c05aff perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa7c37f92 __bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0xa7f47595 device_move -EXPORT_SYMBOL_GPL vmlinux 0xa80be735 rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0xa8204d92 tc3589x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa85a466a regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0xa860cbae rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xa92c6821 powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0xa92f83fd extcon_get_cable_state -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa93ed2be dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xa93faedf da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0xa952ce8f ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0xa95b2e80 __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0xa95d5603 add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0xa98652f4 transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0xa99975b1 gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0xa9aef2e1 gfn_to_hva_memslot -EXPORT_SYMBOL_GPL vmlinux 0xa9c51ad2 devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0xa9c90681 pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0xa9cb58cb kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0xa9cc128a thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9ce341e usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0xa9db751f pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9e54958 ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0xa9f3f97c tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0xaa0162e5 pcibios_scan_phb -EXPORT_SYMBOL_GPL vmlinux 0xaa0cd35d find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0xaa17a2e2 rh_alloc_align -EXPORT_SYMBOL_GPL vmlinux 0xaa20c65b ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0xaa458bbe iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0xaa73a733 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0xaa756b26 gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0xaa9af349 rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xaaa0a650 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaac03f33 attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0xaad82004 fsl_spi_cpm_init -EXPORT_SYMBOL_GPL vmlinux 0xaaff6a62 gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0xab05885e blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0xab05969b ata_base_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xab19f1dc ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0xab1a2fbe ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0xab5258d9 noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0xab567d31 percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xab59d373 kvmppc_free_lpid -EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del -EXPORT_SYMBOL_GPL vmlinux 0xab628321 regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request -EXPORT_SYMBOL_GPL vmlinux 0xab7dbd95 kvmppc_kvm_pv -EXPORT_SYMBOL_GPL vmlinux 0xab8a8c39 pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0xab8ee3ce fb_sys_write -EXPORT_SYMBOL_GPL vmlinux 0xaba2db15 trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xaba62095 securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xababc56c watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabf2d3cb dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0xabfca4ea __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0xac028c19 tc3589x_block_read -EXPORT_SYMBOL_GPL vmlinux 0xac13021d blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0xac1612eb sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0xac3002d8 __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xac409f92 usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0xac5d6573 blkdev_write_iter -EXPORT_SYMBOL_GPL vmlinux 0xacb118b3 aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0xacccd53b public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list -EXPORT_SYMBOL_GPL vmlinux 0xacfe997e powerpc_firmware_features -EXPORT_SYMBOL_GPL vmlinux 0xad38ceca regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0xad5820c7 devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0xada487bf blk_set_queue_dying -EXPORT_SYMBOL_GPL vmlinux 0xada6edc3 gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0xadc9c954 sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0xadd3e5d5 kvm_vcpu_kick -EXPORT_SYMBOL_GPL vmlinux 0xaddf0937 __ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0xade02826 sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0xaded9da1 perf_trace_buf_prepare -EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0xae1578eb regmap_update_bits_check -EXPORT_SYMBOL_GPL vmlinux 0xae1882c0 usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0xae23b8da key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xae56a48b platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae81922b of_overlay_destroy_all -EXPORT_SYMBOL_GPL vmlinux 0xae89ab6c ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0xae89eeb0 __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xae8bf43b blk_queue_bypass_start -EXPORT_SYMBOL_GPL vmlinux 0xae9dacd1 dax_clear_blocks -EXPORT_SYMBOL_GPL vmlinux 0xaea822c7 regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xaeb1b95f inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0xaebcc36f crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0xaee7d5da regulator_get -EXPORT_SYMBOL_GPL vmlinux 0xaef326ab evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0xaefb6b16 usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xaf112900 cpu_remove_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0xaf3d9e28 tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0xaf41521a fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0xaf4becdb usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xaf928620 debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0xaf962910 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0xafc35ae3 dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0xafdec1e1 ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0xafe21d8b uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0xafec180b fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0xafef3625 debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0xaff6be8a phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xaff83322 ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xb00b833e pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0xb0343373 kvm_release_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0xb03ccde1 sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xb0427a23 regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xb05cf5b3 tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb080315b ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0xb0823d93 ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xb0b83929 virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0c674e8 phy_get -EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0xb0ebdf0f debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0xb13c1e1d usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read -EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb14d7e99 regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched -EXPORT_SYMBOL_GPL vmlinux 0xb1b370bd __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain -EXPORT_SYMBOL_GPL vmlinux 0xb1c39f16 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0xb1c9497a ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb22429e6 trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0xb226d3a6 usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0xb23bc8f6 watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xb247ca6f posix_timer_event -EXPORT_SYMBOL_GPL vmlinux 0xb249453c devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xb2650988 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0xb265b2bd fsl_spi_cpm_bufs_complete -EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb26df3a4 max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0xb27f5db6 crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0xb2b9312b kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL vmlinux 0xb2cfba6e desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0xb3019925 crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy -EXPORT_SYMBOL_GPL vmlinux 0xb353dd40 crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0xb359170e task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0xb376094f pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0xb391c37d led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0xb3a20ece dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0xb3a71441 __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb3a79b88 kvm_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0xb3fa9bb4 kvmppc_emulate_mmio -EXPORT_SYMBOL_GPL vmlinux 0xb40f594f pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xb411a0e2 dev_pm_opp_enable -EXPORT_SYMBOL_GPL vmlinux 0xb4178f72 phy_init -EXPORT_SYMBOL_GPL vmlinux 0xb419d993 fuse_request_send -EXPORT_SYMBOL_GPL vmlinux 0xb41ecdba kvm_put_kvm -EXPORT_SYMBOL_GPL vmlinux 0xb488588e tb_to_ns -EXPORT_SYMBOL_GPL vmlinux 0xb491b007 gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0xb4977c2b cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xb4b476fe unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xb4b7534e set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4cb46b8 PageHuge -EXPORT_SYMBOL_GPL vmlinux 0xb4cb8ec0 fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb4cc6b39 kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL vmlinux 0xb4e5b786 do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb4ee3266 __inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0xb50ab3fb usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xb51e2c97 unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb52329a9 dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xb5398c6c of_irq_get_byname -EXPORT_SYMBOL_GPL vmlinux 0xb549ce43 shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0xb55ad457 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0xb562dece inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0xb56c0423 usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xb575d998 ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0xb5848bae __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited -EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table -EXPORT_SYMBOL_GPL vmlinux 0xb5aa10af atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb5af2819 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0xb5b46623 mpic_subsys -EXPORT_SYMBOL_GPL vmlinux 0xb5c8edf4 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0xb5db9e6d subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0xb5db9ec9 register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb600d511 __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0xb60b5707 of_i8042_aux_irq -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb628ce29 ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0xb65702b1 dax_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0xb668a4e3 ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xb67adf18 ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xb6a31d76 usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xb6abbb5e kvmppc_ld -EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xb6b907eb of_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xb6c2ff4a netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb6eabb3c pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb73116f1 skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase -EXPORT_SYMBOL_GPL vmlinux 0xb746cf77 lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xb748c411 blkcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0xb74c91e5 regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xb750fb42 of_get_nand_ecc_strength -EXPORT_SYMBOL_GPL vmlinux 0xb75aff8e devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xb7685aea nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0xb786e77d percpu_ida_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb7948e37 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0xb7a030bb to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0xb7c8d11f page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0xb7e06f79 gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0xb7e936b4 regmap_fields_force_write -EXPORT_SYMBOL_GPL vmlinux 0xb7f14ec2 gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0xb832ea7e sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0xb8383891 palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0xb83aa30a usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0xb84cbf7f pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0xb87af7c6 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb89e960b regmap_update_bits_async -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0xb90e4ec9 __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0xb925ec1d kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0xb92c4b1c device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0xb9321289 sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0xb93b593c security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0xb95d9a3b rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0xb974571c regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0xb986b51c pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xb99ed7f4 mpc8xxx_spi_rx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0xb9a2b7e7 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0xb9b9bb2b sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb9ba6f63 blkdev_read_iter -EXPORT_SYMBOL_GPL vmlinux 0xb9bbb893 adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0xb9bbc9f4 usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xb9c29703 devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9d7571a cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0xb9e9a83e simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0xba2387b7 dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0xba29fbb1 da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0xba2a7586 rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba2e781c vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0xba42a530 usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0xba52a195 dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0xba597640 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0xba80a666 pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0xba956fec kvm_release_page_clean -EXPORT_SYMBOL_GPL vmlinux 0xbaa5eed8 usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0xbaab164f rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbaba77a5 regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xbad091d4 swiotlb_map_page -EXPORT_SYMBOL_GPL vmlinux 0xbad82641 trace_buffer_unlock_commit_regs -EXPORT_SYMBOL_GPL vmlinux 0xbade19f6 mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0xbae9ff42 pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0xbafb8c86 clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xbb04b74f relay_close -EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb192798 fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0xbb5f5c97 rt_mutex_timed_lock -EXPORT_SYMBOL_GPL vmlinux 0xbb689f8d nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0xbb691bb0 ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0xbb6cb19e nvdimm_blk_region_create -EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0xbb72574d of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0xbb888f21 skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0xbbc351bd nd_blk_region_set_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xbbd1e52d crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0xbbdf0816 __rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbbecb64f inet_csk_compat_getsockopt -EXPORT_SYMBOL_GPL vmlinux 0xbbfa2409 vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0xbc3719fb crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0xbc3d7fdc __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc6fdf56 fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0xbc774db6 regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0xbc81fcc7 usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0xbc878ace ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbcb69b96 disk_part_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xbcb873b7 of_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcd52555 wbc_account_io -EXPORT_SYMBOL_GPL vmlinux 0xbd0f7bc8 uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0xbd2a7406 led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd43d0b1 sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0xbd606e38 regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbd6179f1 tps65217_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xbd671048 __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0xbd6e0302 pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0xbd805d39 udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0xbdde2634 tpm_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xbddfd04e alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0xbde0dab7 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0xbde40279 bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0xbde8dc00 tasklet_hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0xbdf07738 regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xbe1707f9 rhashtable_walk_start -EXPORT_SYMBOL_GPL vmlinux 0xbe184d78 transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xbe24e2aa power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0xbe29cf04 perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0xbe5f2c24 usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe8259fe crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbe9d4f57 dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbeb6f356 ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0xbebcd541 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xbec8d1c8 analyse_instr -EXPORT_SYMBOL_GPL vmlinux 0xbed22fa4 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0xbeef7af6 percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0xbeefef50 clk_gpio_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf1cc04b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0xbf1ef217 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0xbf20e450 wm8997_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0xbf4c570c user_read -EXPORT_SYMBOL_GPL vmlinux 0xbf91add8 irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfd19390 usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xbfe2af65 pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbff6bfa9 trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0xbffbe89e of_irq_find_parent -EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space -EXPORT_SYMBOL_GPL vmlinux 0xc02bec3c usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xc02c5198 blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0xc033c1af usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xc061367e mpic_msgr_get -EXPORT_SYMBOL_GPL vmlinux 0xc065a455 cpu_core_index_of_thread -EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0ad5ca9 event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0xc0cd2835 get_device -EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc0f26ba3 pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0xc114dbea blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0xc118c4dc ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0xc1249f54 regmap_write_bits -EXPORT_SYMBOL_GPL vmlinux 0xc12a9bfc dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0xc1630c2b mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc18afd9b bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0xc18cb7c7 scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xc192d369 regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xc1b1971e kern_mount_data -EXPORT_SYMBOL_GPL vmlinux 0xc1bdffe4 i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xc1d3a76e pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0xc1d3d335 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0xc1fe2177 __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0xc1fffcc7 pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xc20d272e ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc20f4499 pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0xc225d3bc devm_regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc2468443 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0xc24c8592 regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc24d2998 srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xc2593855 of_dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xc26b6bdc usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0xc2723a76 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xc277e1ec uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xc280138f crypto_attr_alg2 -EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0xc28161e4 rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0xc28689ca bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0xc28cdca9 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc292463a of_thermal_is_trip_valid -EXPORT_SYMBOL_GPL vmlinux 0xc2c25342 usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xc2d01f33 usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0xc2d2fed5 devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xc2d320b4 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0xc2f683c6 usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0xc321e3a4 devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xc3240278 percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc342565d kvmppc_prepare_to_enter -EXPORT_SYMBOL_GPL vmlinux 0xc357923c pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xc37aa1c4 device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc3888869 devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0xc38f36d9 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xc3a04506 devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc3bd0098 of_get_nand_ecc_mode -EXPORT_SYMBOL_GPL vmlinux 0xc3d6230e screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0xc3ee0f50 max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0xc3efa8b0 usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0xc3f94ef6 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xc420cb8a of_devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc42aeb1d __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc45f378c usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xc4673fba blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc4a16a61 unregister_jprobe -EXPORT_SYMBOL_GPL vmlinux 0xc4a7970b tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0xc4ba2b3e pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0xc4c91c38 dev_pm_opp_add -EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0xc5218b1d reservation_object_get_fences_rcu -EXPORT_SYMBOL_GPL vmlinux 0xc5395f82 devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0xc553243c gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc58a1687 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xc59e75b8 md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0xc5a2c19f idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc5a8e9eb virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0xc5b6a1c9 led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0xc5d4a541 bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0xc604c4ce device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0xc606cd3c boot_cpuid -EXPORT_SYMBOL_GPL vmlinux 0xc6081a45 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0xc60d7e78 wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0xc611ffe7 to_of_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xc617ce6f save_stack_trace_tsk -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc6226c4b powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0xc627431a alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xc633bb42 nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xc63e7d93 static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xc6407778 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xc642e5df i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xc646e7f2 device_store_int -EXPORT_SYMBOL_GPL vmlinux 0xc649a694 __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc64f313e blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc679741d cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xc6810ed7 dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc6882bdc mpc8xxx_spi_tx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0xc68aa252 __atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xc68e2a90 power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0xc6980fea device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6a75886 inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xc6b62d8a rtc_irq_set_freq -EXPORT_SYMBOL_GPL vmlinux 0xc6df8a5d find_vpid -EXPORT_SYMBOL_GPL vmlinux 0xc6e2f1bb __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xc6ec423c usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0xc6ee43c4 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0xc6f8385f cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0xc70e4b59 kvmppc_claim_lpid -EXPORT_SYMBOL_GPL vmlinux 0xc7134f17 nd_mapping_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xc74e29e9 spi_async -EXPORT_SYMBOL_GPL vmlinux 0xc763d615 sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0xc767c505 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0xc794fb1e flush_altivec_to_thread -EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7b48fdc gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer -EXPORT_SYMBOL_GPL vmlinux 0xc7d68291 sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0xc7d770fd rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xc7dcae1e __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc7e58d48 inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc7e8ff5f shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xc828e619 tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0xc8338514 bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0xc83777cf tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0xc83e744a __srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xc84d622d regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0xc858c3ca irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0xc85f3fe4 led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0xc86370d9 dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xc88caa66 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0xc89c2329 ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0xc8ab62d4 bus_find_device_by_name -EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0xc8b23909 ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xc8b9d892 crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0xc8cdd19d rhashtable_walk_init -EXPORT_SYMBOL_GPL vmlinux 0xc8cf403d __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0xc8d1ee61 regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0xc8f27de6 spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0xc8fae637 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xc90c05d2 pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xc9163e8a percpu_ida_for_each_free -EXPORT_SYMBOL_GPL vmlinux 0xc9298f94 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xc93e4772 virtqueue_get_used -EXPORT_SYMBOL_GPL vmlinux 0xc93f096d crypto_init_spawn -EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level -EXPORT_SYMBOL_GPL vmlinux 0xc997f5a6 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0xc9985887 ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0xc9a14a85 percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0xc9b605cc regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xc9e83db1 dev_pm_opp_free_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xca08db57 thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0xca1c1935 crypto_ahash_type -EXPORT_SYMBOL_GPL vmlinux 0xca299134 dev_pm_opp_get_freq -EXPORT_SYMBOL_GPL vmlinux 0xca5acf89 usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0xca68ee1d scsi_internal_device_block -EXPORT_SYMBOL_GPL vmlinux 0xca70af22 irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xca72ce6f ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0xca7713cb blkg_print_stat_ios -EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca7ed7cf scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0xca872718 serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xca9a26dd wm5102_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcb0da9c5 srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb206300 ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0xcb28950b regmap_read -EXPORT_SYMBOL_GPL vmlinux 0xcb3de428 devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module -EXPORT_SYMBOL_GPL vmlinux 0xcb5ee621 hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0xcb7a5391 __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0xcb8f8df4 pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0xcba1229b xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0xcbaad114 blkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xcbb62bf2 of_modalias_node -EXPORT_SYMBOL_GPL vmlinux 0xcbc887b1 ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0xcbd91cbc usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbeaf982 cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0xcbf62b7c __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xcc0d746d trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0xcc0f1009 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcc2ba30d list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0xcc44961f kvmppc_alloc_lpid -EXPORT_SYMBOL_GPL vmlinux 0xcc52deda sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0xcc578dc0 regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0xcc5f6dec regmap_fields_write -EXPORT_SYMBOL_GPL vmlinux 0xcc805564 get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0xcc81068d usb_bus_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule -EXPORT_SYMBOL_GPL vmlinux 0xcc8dc263 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0xcc9f7219 register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0xccbe91b8 of_overlay_create -EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd1cef4 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xccfc6a8c irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0xcd0db0e4 regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0xcd39512c relay_flush -EXPORT_SYMBOL_GPL vmlinux 0xcd5bb42e edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0xcd723fa9 tpm_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0xcd7d2c2c fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0xcd801ab1 xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq -EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs -EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcdac5695 arizona_dev_exit -EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdbe086e alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0xcdbe2c05 usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdd25f79 gpiochip_set_chained_irqchip -EXPORT_SYMBOL_GPL vmlinux 0xcde929b3 tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xce0a26cf rio_mport_send_doorbell -EXPORT_SYMBOL_GPL vmlinux 0xce151a36 for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0xce31a5c6 tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0xce4ac52d of_dma_is_coherent -EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce716604 ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xce923825 inet_csk_compat_setsockopt -EXPORT_SYMBOL_GPL vmlinux 0xcea0e94c spi_master_resume -EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0xcebc5b94 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0xced6997f tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0xcedfbd29 gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcef24b65 devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0xcef3e17f ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0xcf13dd14 vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0xcf205be8 device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0xcf397172 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain -EXPORT_SYMBOL_GPL vmlinux 0xcf56200f debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0xcf5d98cc kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0xcf7718d2 fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0xcf8cb4bd da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0xcfa1656b crypto_init_spawn2 -EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0xcfd3221a clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0xcfdad534 __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0xd00afcc9 dma_buf_kmap -EXPORT_SYMBOL_GPL vmlinux 0xd03955a7 mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xd03cf35e ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0xd0484c09 extcon_set_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0xd05ac4ac usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd07866ee cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0xd07943ce crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0xd093c352 spi_alloc_master -EXPORT_SYMBOL_GPL vmlinux 0xd09d368d kvm_clear_guest -EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0ca2f8a watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0xd0f015a9 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0xd0f29376 irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xd0fb7959 devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd10b5c5d gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0xd12d7cac pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xd13de677 usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0xd15424cc hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0xd1576fbf inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xd18fe1e4 pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0xd1a9e327 xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0xd1b59516 ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0xd1bda0dd regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xd1db1acd pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd1e8552f usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd1e8665b napi_hash_add -EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd205d0c1 single_open_net -EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd21790e1 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd22ae16d power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0xd22d72c2 ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0xd22fe2ac sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xd23efe55 devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0xd24f9834 fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xd25205ed hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd2570127 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0xd270d9ae extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd27a4099 scsi_device_from_queue -EXPORT_SYMBOL_GPL vmlinux 0xd2817892 __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xd283623d dm_get_table_device -EXPORT_SYMBOL_GPL vmlinux 0xd2d43900 usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript -EXPORT_SYMBOL_GPL vmlinux 0xd2f6df2f led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0xd30a08de wm8997_patch -EXPORT_SYMBOL_GPL vmlinux 0xd323dbb1 device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0xd32d90bf irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xd3693f85 of_usb_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xd39c1b1e tpm2_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0xd3a43577 kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0xd3a76d0b platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd404a937 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd40f598c virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xd421ae93 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0xd432ed6f i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0xd4487fd5 snprint_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd44e949e blk_add_request_payload -EXPORT_SYMBOL_GPL vmlinux 0xd452fdb2 cpu_remove_dev_attr_group -EXPORT_SYMBOL_GPL vmlinux 0xd4bd66a0 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4c47e9e unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0xd4e2a012 con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0xd52495ed blk_queue_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0xd5334fae napi_hash_del -EXPORT_SYMBOL_GPL vmlinux 0xd56b5f64 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0xd570d724 cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0xd57a2881 dax_do_io -EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0xd601d4d7 usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0xd6021b38 regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xd604bceb dev_pm_opp_get_max_clock_latency -EXPORT_SYMBOL_GPL vmlinux 0xd60903d8 each_symbol_section -EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh -EXPORT_SYMBOL_GPL vmlinux 0xd6273aa5 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0xd62af7d1 debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0xd652f721 pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0xd65c830c crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd682c367 phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd691b7ff usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0xd692ab89 of_clk_del_provider -EXPORT_SYMBOL_GPL vmlinux 0xd6b23874 usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xd6d9c42e pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0xd6e0760b unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0xd6e675b9 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0xd6ea2ff0 usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0xd6f6aaff usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0xd6fad4c9 ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries -EXPORT_SYMBOL_GPL vmlinux 0xd702578c irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0xd715852c devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0xd7321206 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xd78a4b04 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0xd7a4377c fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0xd7d1a957 ahash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0xd7d9829a rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0xd7e1ee3b irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xd7e4449e srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0xd7e94190 of_devfreq_cooling_register_power -EXPORT_SYMBOL_GPL vmlinux 0xd7f067ff device_create_file -EXPORT_SYMBOL_GPL vmlinux 0xd7fc3e98 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xd8233983 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0xd828a786 unregister_jprobes -EXPORT_SYMBOL_GPL vmlinux 0xd849cae9 regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0xd86cee5f ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xd87019d2 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd888befe blk_queue_bypass_end -EXPORT_SYMBOL_GPL vmlinux 0xd8b9ea8a rt_mutex_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd8c0d37c device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xd8d90066 irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0xd8e5c19e fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0xd8fc659d clk_register -EXPORT_SYMBOL_GPL vmlinux 0xd90dcdf2 dev_pm_opp_get_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd91f8838 dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0xd93e68d2 swiotlb_tbl_unmap_single -EXPORT_SYMBOL_GPL vmlinux 0xd93e8e0e of_get_videomode -EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0xd94aa457 display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0xd95608c5 regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0xd958d356 rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd9a37537 blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xd9b535a6 usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0xd9c39156 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0xd9c77ac6 sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0xd9c99170 skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0xd9d95d9d regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0xd9e23893 od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xd9f032b1 usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0xda0a4d22 mpic_msgr_enable -EXPORT_SYMBOL_GPL vmlinux 0xda0f021d da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xda260c75 root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xda401b33 replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0xda57284f module_mutex -EXPORT_SYMBOL_GPL vmlinux 0xda7acc5a blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xda8cb2e5 threads_core_mask -EXPORT_SYMBOL_GPL vmlinux 0xdacf6983 ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xdad5c52d free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xdae715e0 videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0xdaedcc97 of_pci_parse_bus_range -EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdb20c8b4 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xdb41f272 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xdb765e1f devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb91e05c tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0xdb9699a6 aead_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0xdbaf8779 device_reset -EXPORT_SYMBOL_GPL vmlinux 0xdbc82287 securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdc12aa73 tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0xdc1c379d __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0xdc290e9c rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0xdc29329a usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0xdc35bc92 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0xdc4f9386 gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xdc68460d tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0xdc7d5332 irq_of_parse_and_map -EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable -EXPORT_SYMBOL_GPL vmlinux 0xdc9ab852 ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0xdc9b5216 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdca79cf2 arizona_set_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0xdce9a9c8 input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0xdd134a35 vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0xdd1654c5 sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock -EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd57e2b5 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0xdd5a3295 rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0xdd5ddea7 ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdd729424 usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0xdd831bac thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xdd833572 usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xdd97eec7 nd_blk_region_to_dimm -EXPORT_SYMBOL_GPL vmlinux 0xddae1732 tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddc9642b is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0xde0aac4b ata_scsi_simulate -EXPORT_SYMBOL_GPL vmlinux 0xde0d12de unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0xde0e0087 pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xde3d5d9f pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xde5cacae clk_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xde638bd5 shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0xde642427 inet_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0xde6b605b io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0xde8dd1f8 tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0xde9c7a8d devm_rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xde9e2403 memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf26d1eb rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xdf4fa000 virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0xdf6c2641 regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0xdf80476d trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0xdf9512f1 usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0xdf969bb5 devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0xdfa6d5cf irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xdfda2008 pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name -EXPORT_SYMBOL_GPL vmlinux 0xe01683e0 debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0xe0338a46 bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0xe036b3e9 mpic_msgr_put -EXPORT_SYMBOL_GPL vmlinux 0xe03fd439 sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0xe0457185 ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0xe05fc344 pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0xe0755402 led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved -EXPORT_SYMBOL_GPL vmlinux 0xe0ad21e7 find_symbol -EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0bc9499 cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xe0ed2ba8 kallsyms_on_each_symbol -EXPORT_SYMBOL_GPL vmlinux 0xe12fc2f2 of_reconfig_get_state_change -EXPORT_SYMBOL_GPL vmlinux 0xe143ce4c usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0xe158b114 cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe190d223 regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0xe197c3bf l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe19eb1c4 percpu_ida_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe1b23ae4 tcp_death_row -EXPORT_SYMBOL_GPL vmlinux 0xe1b51f77 usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0xe1b8d4df disk_map_sector_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports -EXPORT_SYMBOL_GPL vmlinux 0xe1bea7a7 devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0xe20065b4 gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0xe206b552 of_thermal_get_trip_points -EXPORT_SYMBOL_GPL vmlinux 0xe23b6342 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength -EXPORT_SYMBOL_GPL vmlinux 0xe2965563 nd_blk_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xe2c04fc8 fsl_spi_cpm_reinit_txrx -EXPORT_SYMBOL_GPL vmlinux 0xe2e37528 i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0xe3006d9a adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe30266d5 device_remove_property_set -EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xe3190837 devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xe3250f72 rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0xe32b09fb ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xe361808b __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0xe36f64c7 ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xe38a5c0b netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0xe3d7750e btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0xe3df2850 devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0xe3eb5945 max_gen_clk_ops -EXPORT_SYMBOL_GPL vmlinux 0xe40493ce wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xe4232f99 clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0xe4401e42 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0xe44dae9b rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0xe45df17b pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xe46e4ee7 ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe49d189d class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xe4b9a2b1 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0xe4c031f8 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto -EXPORT_SYMBOL_GPL vmlinux 0xe4c8915a ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0xe50054cf usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xe5096d9b sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xe51c040f register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xe5206934 crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xe54907d4 regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0xe5540302 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xe554fd60 blkcipher_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe58d4d46 trace_call_bpf -EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq -EXPORT_SYMBOL_GPL vmlinux 0xe5c5db54 fuse_get_req_for_background -EXPORT_SYMBOL_GPL vmlinux 0xe5dc2a97 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0xe5e3a08c usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xe5f22bf2 mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xe5f8d7f1 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0xe636c2fe sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0xe6405049 da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe655a625 crypto_alloc_instance -EXPORT_SYMBOL_GPL vmlinux 0xe657b525 pskb_put -EXPORT_SYMBOL_GPL vmlinux 0xe6665a97 regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xe68839a4 ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe690f308 ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0xe6913fa6 devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xe6b8b801 phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module -EXPORT_SYMBOL_GPL vmlinux 0xe6df1076 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen -EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xe6f08e2e rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0xe6f82055 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0xe6fca6dc thermal_generate_netlink_event -EXPORT_SYMBOL_GPL vmlinux 0xe7158025 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0xe72b1760 usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0xe7419550 pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xe7462d71 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0xe7565f77 of_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xe75dedc0 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0xe768d444 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0xe79c336f device_add -EXPORT_SYMBOL_GPL vmlinux 0xe7c0ecd3 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xe7e9a327 unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0xe7f18b3c threads_per_subcore -EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr -EXPORT_SYMBOL_GPL vmlinux 0xe80719c4 wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xe80938f9 sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe81c171a ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xe823f80a crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0xe845d25d of_pci_find_msi_chip_by_node -EXPORT_SYMBOL_GPL vmlinux 0xe8476a00 simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe852f11a ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0xe85c55e7 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe863067c devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xe870ffb1 tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0xe88b01ef kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0xe89bd243 ata_sff_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xe8a1ca43 usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xe8a51a19 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0xe8cc636c dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xe8cf84dd of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xe8e826fe hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xe8f46963 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0xe8f840e9 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0xe920da6e of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xe93ab7ef pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe9451396 __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xe952d46a fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0xe97340ea pcibios_unmap_io_space -EXPORT_SYMBOL_GPL vmlinux 0xe97ed241 ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0xe98006eb trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0xe9896e56 rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0xe9b9a7d4 usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0xe9c5f11c of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xe9cbf90e kvm_clear_guest_page -EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9dcb02e hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xe9fd68dd dm_disk -EXPORT_SYMBOL_GPL vmlinux 0xea04bf65 dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea2f9f86 devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xea33e773 da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xea38ff49 dev_pm_opp_of_cpumask_add_table -EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0xea54427f class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xea628c20 bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0xea7b35d1 ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0xea7f6b83 usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0xea895817 devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xea929e39 posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xeaff6623 of_get_display_timing -EXPORT_SYMBOL_GPL vmlinux 0xeb0386f1 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0xeb0b1d6a of_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xeb11a93c spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0xeb410613 device_add_property_set -EXPORT_SYMBOL_GPL vmlinux 0xeb617336 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xeb70c8e6 crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0xeb7d183e jump_label_rate_limit -EXPORT_SYMBOL_GPL vmlinux 0xeb7e7f4a led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0xeb854cb0 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0xeb8ae736 klist_init -EXPORT_SYMBOL_GPL vmlinux 0xeb997240 system_trusted_keyring -EXPORT_SYMBOL_GPL vmlinux 0xebb5aadb pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xec11260f single_release_net -EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare -EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del -EXPORT_SYMBOL_GPL vmlinux 0xec4a2d54 dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0xec5d6936 sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xec784c2e dev_pm_opp_of_remove_table -EXPORT_SYMBOL_GPL vmlinux 0xec8d63c4 pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xec8e3d6f class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0xecb1af2e scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0xecc43c1a kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL vmlinux 0xecc641bf usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0xecca71ea dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0xecef1221 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0xed30e0ca regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0xed33b3f3 led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xed448284 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0xed4b2d22 raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0xed6dba9e __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xed7c90bf __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xed981a16 cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xedc1e430 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0xedce1467 part_round_stats -EXPORT_SYMBOL_GPL vmlinux 0xedf80c2e pcibios_claim_one_bus -EXPORT_SYMBOL_GPL vmlinux 0xee0e533c rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xee0ecd11 dev_pm_opp_get_suspend_opp -EXPORT_SYMBOL_GPL vmlinux 0xee273fbc regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0xee2ecbae __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0xee2f2122 __module_address -EXPORT_SYMBOL_GPL vmlinux 0xee34913b inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xee4470bb power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible -EXPORT_SYMBOL_GPL vmlinux 0xee74d8d9 sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0xeea58a2d md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0xeeac09ea rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0xeed187bd virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0xeee22cb8 io_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xeee5b0b6 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xef002610 usb_gen_phy_init -EXPORT_SYMBOL_GPL vmlinux 0xef026c54 __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0xef0e913e platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xef11cb35 __tracepoint_kvm_ppc_instr -EXPORT_SYMBOL_GPL vmlinux 0xef3b99c8 cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0xef491743 usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0xef4cefcd bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef6d007a sigset_from_compat -EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0xef93b299 __mmu_notifier_invalidate_range -EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefc1c072 of_dma_get_range -EXPORT_SYMBOL_GPL vmlinux 0xefddd0a8 fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0xf02f63ae sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0xf03e4296 __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0xf055bcd4 ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0xf056135a bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0xf06ca95b proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xf075fb1a nf_queue_entry_release_refs -EXPORT_SYMBOL_GPL vmlinux 0xf07f84cf pcibios_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0xf08500dc kvmppc_pr_ops -EXPORT_SYMBOL_GPL vmlinux 0xf0a5f69e regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xf0d70288 ip_tunnel_get_stats64 -EXPORT_SYMBOL_GPL vmlinux 0xf0f3d5f5 rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0xf10406c3 pci_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xf11b5bdd cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0xf1222d53 ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0xf13609ed usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0xf147e13d led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0xf14e4d24 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xf158f170 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0xf16fa667 cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xf1847948 pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf1941239 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0xf19d9fa7 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xf1a62b6f of_i8042_kbd_irq -EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key -EXPORT_SYMBOL_GPL vmlinux 0xf1b2f27f devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on -EXPORT_SYMBOL_GPL vmlinux 0xf1c345f1 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xf1c937ad __blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf1fde4dd hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf20c3222 thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf25f8557 kvm_vcpu_block -EXPORT_SYMBOL_GPL vmlinux 0xf26bf4a0 cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0xf2a05a2a dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xf2b1de99 inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0xf2fa9bff bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0xf3012f6c rh_free -EXPORT_SYMBOL_GPL vmlinux 0xf309e305 of_clk_add_provider -EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support -EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf3225d4e event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0xf32a10e6 dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf33dc43c sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xf345fbb8 dev_pm_opp_of_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0xf3464508 device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0xf3469120 fuse_request_send_background -EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf3964136 i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0xf3a713e9 rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0xf3c3de71 nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0xf3c7b1ab gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0xf3d66b67 blk_mq_cancel_requeue_work -EXPORT_SYMBOL_GPL vmlinux 0xf3dc9e2a power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0xf3dd8ce7 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xf427925e reservation_object_wait_timeout_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf42a8f8d crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0xf4315942 wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0xf445667e pcibios_free_controller -EXPORT_SYMBOL_GPL vmlinux 0xf44ebbe7 __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xf4524b5c ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xf48faff2 of_clk_src_simple_get -EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask -EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh -EXPORT_SYMBOL_GPL vmlinux 0xf49d01a7 set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xf4da3546 kvmppc_init_lpid -EXPORT_SYMBOL_GPL vmlinux 0xf4f8deb6 vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0xf5200b9c usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0xf523dcf2 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0xf5379771 net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf554f7cd sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xf55d3cb8 rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0xf562694c i2c_unlock_adapter -EXPORT_SYMBOL_GPL vmlinux 0xf57e8c82 ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0xf581b8de blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5bc860b power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf5bcf1b2 __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0xf5d1e3da usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0xf5e3d296 sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0xf5e7f053 rh_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf5ed2990 wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xf6670e05 xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xf6729306 xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0xf68209e4 crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0xf6828f8b dio_end_io -EXPORT_SYMBOL_GPL vmlinux 0xf6c0b531 regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf70e9fed serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0xf732a87c fuse_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf74a64c1 fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0xf79d543f of_platform_default_populate -EXPORT_SYMBOL_GPL vmlinux 0xf7a2de26 fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xf7ae1cfc usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0xf7b4acd9 phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf7c81ae0 md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0xf7c9204c extcon_get_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0xf7d90096 of_get_nand_ecc_step_size -EXPORT_SYMBOL_GPL vmlinux 0xf7d930ce ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0xf7e71715 class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf813b1bf regmap_write -EXPORT_SYMBOL_GPL vmlinux 0xf8225f77 blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf837e0eb unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xf84dec36 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0xf84fb967 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xf85a59e6 device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xf85cd5e3 usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xf87b7b96 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xf884857c usb_phy_generic_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xf88e164a usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0xf8a8a4d7 pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0xf8d9273e spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xf8dbda43 __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xf8e398fc memstart_addr -EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0xf9203a16 devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xf928625e blk_queue_rq_timed_out -EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf95972c0 mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0xf96e95b0 scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0xf974a7cf ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0xf98761c2 crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr -EXPORT_SYMBOL_GPL vmlinux 0xf99a32e5 ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9c02cdc irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xf9ddbcc8 ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xf9f5d2f3 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xf9fd30ec bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start -EXPORT_SYMBOL_GPL vmlinux 0xfa5999a9 kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL vmlinux 0xfa6b08b1 mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0xfa710206 of_pci_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0xfa746d1f uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec -EXPORT_SYMBOL_GPL vmlinux 0xfaac7b75 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0xfab60503 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0xfad8b8fb crypto_givcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xfadc468a __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0xfae52247 __pci_complete_power_transition -EXPORT_SYMBOL_GPL vmlinux 0xfaf85854 __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xfb0047f6 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xfb0657ee of_mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0xfb1b6b37 posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0xfb22bc6c cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0xfb321372 scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb39b76a cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0xfb46d1f0 sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0xfb52b77d __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfba7fd98 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbd35a2c driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0xfc023997 wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc0ae8b3 fsl_spi_cpm_irq -EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0xfc2879e5 da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0xfc3209f5 cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0xfc326134 ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0xfc47441a of_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xfc691929 pci_try_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xfc7941b0 raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0xfc8db20c pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0xfcaa75f9 l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0xfcabd493 ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0xfcd75af2 ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0xfcdf18d4 skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0xfce1c151 anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0xfceee8b7 scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xfd025798 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0xfd0c7443 pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0xfd15b405 ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0xfd2190af disk_part_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xfd401c1e of_property_read_string_helper -EXPORT_SYMBOL_GPL vmlinux 0xfd4e923e rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xfd57946e init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack -EXPORT_SYMBOL_GPL vmlinux 0xfd880e4c kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0xfd8ecb73 tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0xfda3fbec ping_hash -EXPORT_SYMBOL_GPL vmlinux 0xfda436f6 crypto_ablkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xfdb1137b skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0xfdc6c1fa platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfdf58d88 sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xfe06383d rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0xfe07e197 power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0xfe09df45 rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xfe50a72d rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfe5121d0 key_type_user -EXPORT_SYMBOL_GPL vmlinux 0xfe7c342f regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0xfe9383bc thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfea7a1b0 blkg_print_stat_bytes -EXPORT_SYMBOL_GPL vmlinux 0xfeae7b61 rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0xfec4025b fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfed7176d dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xfed830d8 usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0xfeea4e71 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff2dcd0b scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0xff461129 serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0xff5973a5 sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xff6d10cf crypto_init_ahash_spawn -EXPORT_SYMBOL_GPL vmlinux 0xff8862d7 rh_get_stats -EXPORT_SYMBOL_GPL vmlinux 0xffa005dc clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0xfff671f3 sock_diag_save_cookie reverted: --- linux-raspi2-4.4.0/debian.master/abi/4.4.0-89.112/powerpc/powerpc64-emb.compiler +++ linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-89.112/powerpc/powerpc64-emb.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 reverted: --- linux-raspi2-4.4.0/debian.master/abi/4.4.0-89.112/powerpc/powerpc64-emb.modules +++ linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-89.112/powerpc/powerpc64-emb.modules @@ -1,4308 +0,0 @@ -3c574_cs -3c589_cs -3c59x -3w-9xxx -3w-sas -3w-xxxx -6lowpan -6pack -8021q -8139cp -8139too -8250_dw -8250_mid -8255 -8255_pci -8390 -842 -842_compress -842_decompress -88pm800 -88pm805 -88pm80x -88pm80x_onkey -88pm8607 -88pm860x-ts -88pm860x_battery -88pm860x_bl -88pm860x_charger -88pm860x_onkey -9p -9pnet -9pnet_rdma -9pnet_virtio -DAC960 -a100u2w -a3d -a8293 -aacraid -aat2870-regulator -aat2870_bl -ab3100 -ab3100-otp -ac97_bus -acard-ahci -acecad -acenic -act200l-sir -act8865-regulator -act_bpf -act_connmark -act_csum -act_gact -act_ipt -act_mirred -act_nat -act_pedit -act_police -act_simple -act_skbedit -act_vlan -actisys-sir -ad2s1200 -ad2s1210 -ad2s90 -ad5064 -ad525x_dpot -ad525x_dpot-i2c -ad525x_dpot-spi -ad5360 -ad5380 -ad5398 -ad5421 -ad5446 -ad5449 -ad5504 -ad5592r -ad5592r-base -ad5593r -ad5624r_spi -ad5686 -ad5755 -ad5764 -ad5791 -ad5933 -ad714x -ad714x-i2c -ad714x-spi -ad7150 -ad7152 -ad7192 -ad7266 -ad7280a -ad7291 -ad7298 -ad7303 -ad7314 -ad7414 -ad7418 -ad7476 -ad7606 -ad7746 -ad7780 -ad7791 -ad7793 -ad7816 -ad7877 -ad7879 -ad7879-i2c -ad7879-spi -ad7887 -ad7923 -ad799x -ad8366 -ad9523 -ad9832 -ad9834 -ad_sigma_delta -adc128d818 -adcxx -addi_apci_1032 -addi_apci_1500 -addi_apci_1516 -addi_apci_1564 -addi_apci_16xx -addi_apci_2032 -addi_apci_2200 -addi_apci_3120 -addi_apci_3501 -addi_apci_3xxx -addi_watchdog -ade7753 -ade7754 -ade7758 -ade7759 -ade7854 -ade7854-i2c -ade7854-spi -adf4350 -adfs -adi -adis16060 -adis16080 -adis16130 -adis16136 -adis16201 -adis16203 -adis16204 -adis16209 -adis16220 -adis16240 -adis16260 -adis16400 -adis16480 -adis_lib -adjd_s311 -adl_pci6208 -adl_pci7x3x -adl_pci8164 -adl_pci9111 -adl_pci9118 -adm1021 -adm1025 -adm1026 -adm1029 -adm1031 -adm1275 -adm8211 -adm9240 -adp5520-keys -adp5520_bl -adp5588-keys -adp5589-keys -adp8860_bl -adp8870_bl -adq12b -ads1015 -ads7828 -ads7846 -ads7871 -adt7310 -adt7316 -adt7316-i2c -adt7316-spi -adt7410 -adt7411 -adt7462 -adt7470 -adt7475 -adt7x10 -adummy -adutux -adv7511 -adv7604 -adv7842 -adv_pci1710 -adv_pci1723 -adv_pci1724 -adv_pci_dio -advansys -adxl34x -adxl34x-i2c -adxl34x-spi -adxrs450 -af-rxrpc -af9013 -af9033 -af_alg -af_key -af_packet_diag -affs -ah4 -ah6 -aha152x_cs -ahci -ahci_ceva -ahci_platform -ahci_qoriq -aic79xx -aic7xxx -aic94xx -aim_cdev -aim_network -aim_sound -aim_v4l2 -aio_aio12_8 -aio_iiro_16 -aiptek -aircable -airo -airo_cs -airspy -ak8975 -al3320a -algif_aead -algif_hash -algif_rng -algif_skcipher -ali-ircc -alim7101_wdt -altera-ci -altera-stapl -altera_jtaguart -altera_ps2 -altera_tse -altera_uart -alx -am53c974 -amc6821 -amd -amd5536udc -amd8111e -amdgpu -amplc_dio200 -amplc_dio200_common -amplc_dio200_pci -amplc_pc236 -amplc_pc236_common -amplc_pc263 -amplc_pci224 -amplc_pci230 -amplc_pci236 -amplc_pci263 -ams369fg06 -analog -anatop-regulator -ansi_cprng -anubis -aoe -apbps2 -apds9300 -apds9802als -apds990x -apds9960 -appledisplay -appletalk -appletouch -applicom -aquantia -ar1021_i2c -ar5523 -ar7part -arc-rawmode -arc-rimi -arc4 -arc_emac -arc_ps2 -arc_uart -arcmsr -arcnet -arizona-haptics -arizona-i2c -arizona-ldo1 -arizona-micsupp -arizona-spi -ark3116 -arkfb -arp_tables -arpt_mangle -arptable_filter -as102_fe -as3711-regulator -as3711_bl -as3722-regulator -as3935 -as5011 -asc7621 -ascot2e -asix -ast -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at24 -at25 -at76c50x-usb -at803x -at86rf230 -ata_generic -ata_piix -atbm8830 -aten -ath -ath10k_core -ath10k_pci -ath3k -ath5k -ath6kl_core -ath6kl_sdio -ath6kl_usb -ath9k -ath9k_common -ath9k_htc -ath9k_hw -ati_remote -ati_remote2 -atl1 -atl1c -atl1e -atl2 -atm -atmel -atmel-flexcom -atmel-hlcdc -atmel_cs -atmel_mxt_ts -atmel_pci -atmtcp -atp870u -atusb -atxp1 -atyfb -au0828 -au8522_common -au8522_decoder -au8522_dig -aufs -auo-pixcir-ts -auo_k1900fb -auo_k1901fb -auo_k190x -auth_rpcgss -authenc -authencesn -autofs4 -avm_cs -avma1_cs -avmfritz -ax25 -ax88179_178a -axnet_cs -axp20x-pek -axp20x-regulator -axp20x_usb_power -axp288_adc -axp288_charger -axp288_fuel_gauge -b1 -b1dma -b1pci -b1pcmcia -b2c2-flexcop -b2c2-flexcop-pci -b2c2-flexcop-usb -b43 -b43legacy -b44 -bas_gigaset -batman-adv -baycom_par -baycom_ser_fdx -baycom_ser_hdx -bcache -bch -bcm-keypad -bcm-phy-lib -bcm203x -bcm3510 -bcm590xx -bcm590xx-regulator -bcm5974 -bcm7038_wdt -bcm7xxx -bcm87xx -bcma -bcma-hcd -bcmsysport -bd6107 -bdc -bdc_pci -be2iscsi -be2net -befs -belkin_sa -bfa -bfs -bfusb -bh1750 -bh1770glc -bh1780gli -binfmt_misc -block2mtd -blocklayoutdriver -blowfish_common -blowfish_generic -bluecard_cs -bluetooth -bluetooth_6lowpan -bma150 -bma180 -bmc150-accel-core -bmc150-accel-i2c -bmc150-accel-spi -bmc150_magn -bmg160_core -bmg160_i2c -bmg160_spi -bmp085 -bmp085-i2c -bmp085-spi -bmp280 -bna -bnep -bnx2 -bnx2fc -bnx2i -bnx2x -bnxt_en -bonding -bpa10x -bpck -bpqether -bq2415x_charger -bq24190_charger -bq24257_charger -bq24735-charger -bq25890_charger -bq27xxx_battery -br2684 -br_netfilter -brcmfmac -brcmsmac -brcmutil -brd -bridge -broadcom -broadsheetfb -bsd_comp -bt3c_cs -bt878 -btbcm -btcoexist -btintel -btmrvl -btmrvl_sdio -btqca -btrfs -btrtl -btsdio -bttv -btuart_cs -btusb -btwilink -bu21013_ts -budget -budget-av -budget-ci -budget-core -budget-patch -c4 -c67x00 -c6xdigio -c_can -c_can_pci -c_can_platform -caam -caam_jr -caamalg -caamhash -caamrng -cachefiles -cadence_wdt -cafe_ccic -cafe_nand -caif -caif_hsi -caif_serial -caif_socket -caif_usb -caif_virtio -camellia_generic -can -can-bcm -can-dev -can-gw -can-raw -cap11xx -capi -capidrv -capmode -carl9170 -carminefb -cassini -cast5_generic -cast6_generic -cast_common -catc -cb710 -cb710-mmc -cb_das16_cs -cb_pcidas -cb_pcidas64 -cb_pcidda -cb_pcimdas -cb_pcimdda -cc10001_adc -cc2520 -cc770 -cc770_isa -cc770_platform -cciss -ccm -cdc-acm -cdc-phonet -cdc-wdm -cdc_eem -cdc_ether -cdc_mbim -cdc_ncm -cdc_subset -ceph -cfg80211 -cfi_cmdset_0001 -cfi_cmdset_0002 -cfi_cmdset_0020 -cfi_probe -cfi_util -cfspi_slave -ch -ch341 -ch7006 -ch9200 -chacha20_generic -chacha20poly1305 -chaoskey -chipone_icn8318 -chipreg -chnl_net -ci_hdrc -ci_hdrc_imx -ci_hdrc_msm -ci_hdrc_pci -ci_hdrc_usb2 -ci_hdrc_zevio -cicada -cifs -cirrus -cirrusfb -clip -clk-cdce706 -clk-cdce925 -clk-max77686 -clk-max77802 -clk-palmas -clk-pwm -clk-rk808 -clk-s2mps11 -clk-si514 -clk-si5351 -clk-si570 -clk-twl6040 -clk-wm831x -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_rsvp -cls_rsvp6 -cls_tcindex -cls_u32 -cm109 -cm32181 -cm3232 -cm3323 -cm36651 -cm4000_cs -cm4040_cs -cma3000_d0x -cma3000_d0x_i2c -cmac -cmdlinepart -cmtp -cnic -cobalt -cobra -coda -colibri-vf50-ts -com20020 -com20020-pci -com20020_cs -com90io -com90xx -comedi -comedi_8254 -comedi_8255 -comedi_bond -comedi_isadma -comedi_parport -comedi_pci -comedi_pcmcia -comedi_test -comedi_usb -comm -configfs -contec_pci_dio -cordic -core -cp210x -cpc925_edac -cpia2 -cpsw_ale -cramfs -crc-ccitt -crc-itu-t -crc32 -crc7 -crc8 -cryptd -crypto_user -cryptoloop -cs5345 -cs53l32a -csiostor -ctr -cts -cuse -cw1200_core -cw1200_wlan_sdio -cw1200_wlan_spi -cx18 -cx18-alsa -cx22700 -cx22702 -cx231xx -cx231xx-alsa -cx231xx-dvb -cx2341x -cx23885 -cx24110 -cx24113 -cx24116 -cx24117 -cx24120 -cx24123 -cx25821 -cx25821-alsa -cx25840 -cx82310_eth -cx88-alsa -cx88-blackbird -cx88-dvb -cx88-vp3054-i2c -cx8800 -cx8802 -cx88xx -cxacru -cxd2099 -cxd2820r -cxd2841er -cxgb -cxgb3 -cxgb3i -cxgb4 -cxgb4i -cxgb4vf -cy8ctmg110_ts -cyapatp -cyber2000fb -cyberjack -cyclades -cypress_cy7c63 -cypress_firmware -cypress_m8 -cytherm -cyttsp4_core -cyttsp4_i2c -cyttsp4_spi -cyttsp_core -cyttsp_i2c -cyttsp_i2c_common -cyttsp_spi -da9030_battery -da9034-ts -da903x -da903x_bl -da9052-battery -da9052-hwmon -da9052-regulator -da9052_bl -da9052_onkey -da9052_tsi -da9052_wdt -da9055-hwmon -da9055-regulator -da9055_onkey -da9055_wdt -da9062-core -da9062-regulator -da9062_wdt -da9063-regulator -da9063_onkey -da9063_wdt -da9150-charger -da9150-core -da9150-fg -da9150-gpadc -da9210-regulator -da9211-regulator -dac02 -daqboard2000 -das08 -das08_cs -das08_isa -das08_pci -das16 -das16m1 -das1800 -das6402 -das800 -davicom -db9 -dc395x -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -dccp_probe -ddbridge -de2104x -de4x5 -decnet -deflate -defxx -denali -denali_dt -denali_pci -des_generic -designware_i2s -dgap -dgnc -dht11 -dib0070 -dib0090 -dib3000mb -dib3000mc -dib7000m -dib7000p -dib8000 -dibx000_common -digi_acceleport -digicolor-usart -diskonchip -diva_idi -diva_mnt -divacapi -divadidd -divas -dl2k -dlci -dlm -dln2 -dm-bio-prison -dm-bufio -dm-cache -dm-cache-cleaner -dm-cache-mq -dm-cache-smq -dm-crypt -dm-delay -dm-era -dm-flakey -dm-log -dm-log-userspace -dm-log-writes -dm-mirror -dm-multipath -dm-persistent-data -dm-queue-length -dm-raid -dm-region-hash -dm-round-robin -dm-service-time -dm-snapshot -dm-switch -dm-thin-pool -dm-verity -dm-zero -dm1105 -dm9601 -dmfe -dmm32at -dmx3191d -dn_rtmsg -dnet -docg3 -docg4 -dp83848 -dp83867 -drbd -drbg -drm -drm_kms_helper -drop_monitor -drv260x -drv2665 -drv2667 -drx39xyj -drxd -drxk -ds1621 -ds1682 -ds1wm -ds2482 -ds2490 -ds2760_battery -ds2780_battery -ds2781_battery -ds2782_battery -ds3000 -ds620 -dsbr100 -dscc4 -dss1_divert -dst -dst_ca -dstr -dt2801 -dt2811 -dt2814 -dt2815 -dt2817 -dt282x -dt3000 -dt3155 -dt9812 -dtl1_cs -dummy -dummy-irq -dummy_stm -dvb-as102 -dvb-bt8xx -dvb-core -dvb-pll -dvb-ttpci -dvb-ttusb-budget -dvb-usb -dvb-usb-a800 -dvb-usb-af9005 -dvb-usb-af9005-remote -dvb-usb-af9015 -dvb-usb-af9035 -dvb-usb-anysee -dvb-usb-au6610 -dvb-usb-az6007 -dvb-usb-az6027 -dvb-usb-ce6230 -dvb-usb-cinergyT2 -dvb-usb-cxusb -dvb-usb-dib0700 -dvb-usb-dibusb-common -dvb-usb-dibusb-mb -dvb-usb-dibusb-mc -dvb-usb-digitv -dvb-usb-dtt200u -dvb-usb-dtv5100 -dvb-usb-dvbsky -dvb-usb-dw2102 -dvb-usb-ec168 -dvb-usb-friio -dvb-usb-gl861 -dvb-usb-gp8psk -dvb-usb-lmedm04 -dvb-usb-m920x -dvb-usb-mxl111sf -dvb-usb-nova-t-usb2 -dvb-usb-opera -dvb-usb-pctv452e -dvb-usb-rtl28xxu -dvb-usb-technisat-usb2 -dvb-usb-ttusb2 -dvb-usb-umt-010 -dvb-usb-vp702x -dvb-usb-vp7045 -dvb_usb_v2 -dw_dmac -dw_dmac_core -dw_dmac_pci -dw_wdt -dwc3 -dwc3-pci -dwc_eth_qos -dwmac-generic -dwmac-ipq806x -dwmac-lpc18xx -dwmac-meson -dwmac-rk -dwmac-socfpga -dwmac-sti -dwmac-sunxi -dyna_pci10xx -dynapro -e100 -e1000 -e1000e -e3x0-button -e4000 -earth-pt1 -earth-pt3 -eata -ebt_802_3 -ebt_among -ebt_arp -ebt_arpreply -ebt_dnat -ebt_ip -ebt_ip6 -ebt_limit -ebt_log -ebt_mark -ebt_mark_m -ebt_nflog -ebt_pkttype -ebt_redirect -ebt_snat -ebt_stp -ebt_vlan -ebtable_broute -ebtable_filter -ebtable_nat -ebtables -ec100 -echainiv -echo -edac_core -edt-ft5x06 -eeprom -eeprom_93cx6 -eeprom_93xx46 -eeti_ts -efs -egalax_ts -ehset -elan_i2c -elo -elsa_cs -em28xx -em28xx-alsa -em28xx-dvb -em28xx-rc -em28xx-v4l -em_canid -em_cmp -em_ipset -em_meta -em_nbyte -em_text -em_u32 -emac_arc -emac_rockchip -emc1403 -emc2103 -emc6w201 -emi26 -emi62 -empeg -ems_pci -ems_pcmcia -ems_usb -emu10k1-gp -enc28j60 -enclosure -encx24j600 -encx24j600-regmap -eni -enic -epat -epia -epic100 -eql -esas2r -esd_usb2 -esi-sir -esp4 -esp6 -esp_scsi -et1011c -et131x -ethoc -evbug -exofs -extcon-adc-jack -extcon-arizona -extcon-axp288 -extcon-gpio -extcon-max14577 -extcon-max77693 -extcon-max77843 -extcon-max8997 -extcon-palmas -extcon-rt8973a -extcon-sm5502 -extcon-usb-gpio -ezusb -f2fs -f75375s -f81232 -fakelb -fan53555 -farsync -faulty -fb_agm1264k-fl -fb_bd663474 -fb_ddc -fb_hx8340bn -fb_hx8347d -fb_hx8353d -fb_hx8357d -fb_ili9163 -fb_ili9320 -fb_ili9325 -fb_ili9340 -fb_ili9341 -fb_ili9481 -fb_ili9486 -fb_pcd8544 -fb_ra8875 -fb_s6d02a1 -fb_s6d1121 -fb_ssd1289 -fb_ssd1306 -fb_ssd1331 -fb_ssd1351 -fb_st7735r -fb_st7789v -fb_tinylcd -fb_tls8204 -fb_uc1611 -fb_uc1701 -fb_upd161704 -fb_watterott -fbtft -fbtft_device -fc0011 -fc0012 -fc0013 -fc2580 -fcoe -fcrypt -fdomain -fdomain_cs -fdp -fdp_i2c -fealnx -ff-memless -firedtv -firewire-core -firewire-net -firewire-ohci -firewire-sbp2 -firewire-serial -fit2 -fit3 -fixed -fl512 -flexcan -flexfb -floppy -fm10k -fm801-gp -fm_drv -fmc -fmc-chardev -fmc-fakedev -fmc-trivial -fmc-write-eeprom -fmvj18x_cs -forcedeth -fore_200e -fotg210-hcd -fotg210-udc -fou -fpga-mgr -freevxfs -friq -frpw -fsa9480 -fscache -fsl-corenet-cf -fsl-diu-fb -fsl-edma -fsl_elbc_nand -fsl_hypervisor -fsl_ifc_nand -fsl_lpuart -fsl_pq_mdio -fsl_usb2_udc -fsldma -ft6236 -ftdi-elan -ftdi_sio -ftl -fujitsu_ts -g450_pll -g760a -g762 -g_acm_ms -g_audio -g_cdc -g_dbgp -g_ether -g_ffs -g_hid -g_mass_storage -g_midi -g_ncm -g_nokia -g_printer -g_serial -g_webcam -g_zero -gadgetfs -gamecon -gameport -garmin_gps -garp -gcm -gdmtty -gdmulte -gdmwm -gdth -gen_probe -generic -generic-adc-battery -generic_bl -genet -geneve -gennvm -genwqe_card -gf128mul -gf2k -gfs2 -ghash-generic -gianfar_driver -gianfar_ptp -gigaset -girbil-sir -gl518sm -gl520sm -gl620a -gluebi -go7007 -go7007-loader -go7007-usb -goku_udc -goodix -gp2ap002a00f -gp2ap020a00f -gpio -gpio-74x164 -gpio-74xx-mmio -gpio-addr-flash -gpio-adnp -gpio-adp5520 -gpio-adp5588 -gpio-altera -gpio-amd8111 -gpio-arizona -gpio-beeper -gpio-charger -gpio-crystalcove -gpio-da9052 -gpio-da9055 -gpio-dln2 -gpio-dwapb -gpio-fan -gpio-generic -gpio-grgpio -gpio-ir-recv -gpio-janz-ttl -gpio-kempld -gpio-lp3943 -gpio-max7300 -gpio-max7301 -gpio-max730x -gpio-max732x -gpio-mc33880 -gpio-mcp23s08 -gpio-ml-ioh -gpio-pca953x -gpio-pcf857x -gpio-rdc321x -gpio-regulator -gpio-syscon -gpio-tps65912 -gpio-twl4030 -gpio-twl6040 -gpio-ucb1400 -gpio-viperboard -gpio-vx855 -gpio-wm831x -gpio-wm8350 -gpio-wm8994 -gpio_backlight -gpio_keys -gpio_keys_polled -gpio_mouse -gpio_tilt_polled -gpio_wdt -gr_udc -grace -grcan -gre -grip -grip_mp -gs_fpga -gs_usb -gsc_hpdi -gspca_benq -gspca_conex -gspca_cpia1 -gspca_dtcs033 -gspca_etoms -gspca_finepix -gspca_gl860 -gspca_jeilinj -gspca_jl2005bcd -gspca_kinect -gspca_konica -gspca_m5602 -gspca_main -gspca_mars -gspca_mr97310a -gspca_nw80x -gspca_ov519 -gspca_ov534 -gspca_ov534_9 -gspca_pac207 -gspca_pac7302 -gspca_pac7311 -gspca_se401 -gspca_sn9c2028 -gspca_sn9c20x -gspca_sonixb -gspca_sonixj -gspca_spca1528 -gspca_spca500 -gspca_spca501 -gspca_spca505 -gspca_spca506 -gspca_spca508 -gspca_spca561 -gspca_sq905 -gspca_sq905c -gspca_sq930x -gspca_stk014 -gspca_stk1135 -gspca_stv0680 -gspca_stv06xx -gspca_sunplus -gspca_t613 -gspca_topro -gspca_touptek -gspca_tv8532 -gspca_vc032x -gspca_vicam -gspca_xirlink_cit -gspca_zc3xx -gtco -guillemot -gunze -gxt4500 -hackrf -hamachi -hampshire -hangcheck-timer -hanwang -hci -hci_uart -hci_vhci -hdc100x -hdlc -hdlc_cisco -hdlc_fr -hdlc_ppp -hdlc_raw -hdlc_raw_eth -hdlc_x25 -hdlcdrv -hdm_dim2 -hdm_i2c -hdm_usb -hdpvr -he -hexium_gemini -hexium_orion -hfc4s8s_l1 -hfc_usb -hfcmulti -hfcpci -hfcsusb -hfs -hfsplus -hi6421-pmic-core -hi6421-regulator -hi8435 -hid -hid-a4tech -hid-alps -hid-apple -hid-appleir -hid-aureal -hid-axff -hid-belkin -hid-betopff -hid-cherry -hid-chicony -hid-corsair -hid-cp2112 -hid-cypress -hid-dr -hid-elecom -hid-elo -hid-emsff -hid-ezkey -hid-gaff -hid-gembird -hid-generic -hid-gfrm -hid-gt683r -hid-gyration -hid-holtek-kbd -hid-holtek-mouse -hid-holtekff -hid-icade -hid-kensington -hid-keytouch -hid-kye -hid-lcpower -hid-lenovo -hid-logitech -hid-logitech-dj -hid-logitech-hidpp -hid-magicmouse -hid-microsoft -hid-monterey -hid-multitouch -hid-ntrig -hid-ortek -hid-penmount -hid-petalynx -hid-picolcd -hid-pl -hid-plantronics -hid-primax -hid-prodikeys -hid-rmi -hid-roccat -hid-roccat-arvo -hid-roccat-common -hid-roccat-isku -hid-roccat-kone -hid-roccat-koneplus -hid-roccat-konepure -hid-roccat-kovaplus -hid-roccat-lua -hid-roccat-pyra -hid-roccat-ryos -hid-roccat-savu -hid-saitek -hid-samsung -hid-sensor-accel-3d -hid-sensor-als -hid-sensor-custom -hid-sensor-gyro-3d -hid-sensor-hub -hid-sensor-iio-common -hid-sensor-incl-3d -hid-sensor-magn-3d -hid-sensor-press -hid-sensor-prox -hid-sensor-rotation -hid-sensor-trigger -hid-sjoy -hid-sony -hid-speedlink -hid-steelseries -hid-sunplus -hid-thingm -hid-tivo -hid-tmff -hid-topseed -hid-twinhan -hid-uclogic -hid-waltop -hid-wiimote -hid-xinmo -hid-zpff -hid-zydacron -hidp -hih6130 -hisax -hisax_fcpcipnp -hisax_isac -hisax_st5481 -hisi504_nand -hmc5843_core -hmc5843_i2c -hmc5843_spi -hmc6352 -hopper -horus3a -hostap -hostap_cs -hostap_pci -hostap_plx -hp100 -hpfs -hpilo -hpsa -hptiop -hsi -hsi_char -hso -hsr -hsu_dma -htc-pasic3 -hts221 -hts221_i2c -hts221_spi -htu21 -huawei_cdc_ncm -hwa-hc -hwa-rc -hwmon-vid -hx8357 -hysdn -i1480-dfu-usb -i1480-est -i2400m -i2400m-usb -i2c-algo-bit -i2c-algo-pca -i2c-ali1535 -i2c-ali1563 -i2c-ali15x3 -i2c-amd756 -i2c-amd8111 -i2c-arb-gpio-challenge -i2c-cbus-gpio -i2c-designware-core -i2c-designware-pci -i2c-designware-platform -i2c-diolan-u2c -i2c-dln2 -i2c-emev2 -i2c-gpio -i2c-hid -i2c-i801 -i2c-isch -i2c-kempld -i2c-matroxfb -i2c-mpc -i2c-mux -i2c-mux-gpio -i2c-mux-pca9541 -i2c-mux-pca954x -i2c-mux-reg -i2c-nforce2 -i2c-ocores -i2c-parport -i2c-parport-light -i2c-pca-platform -i2c-piix4 -i2c-rk3x -i2c-robotfuzz-osif -i2c-simtec -i2c-sis5595 -i2c-sis630 -i2c-sis96x -i2c-smbus -i2c-stub -i2c-taos-evm -i2c-tiny-usb -i2c-via -i2c-viapro -i2c-viperboard -i2c-xiic -i40e -i40evf -i5k_amb -i6300esb -i740fb -i82092 -ib_addr -ib_cm -ib_core -ib_ipoib -ib_iser -ib_isert -ib_mad -ib_mthca -ib_qib -ib_sa -ib_srp -ib_srpt -ib_ucm -ib_umad -ib_uverbs -ibmaem -ibmpex -icp_multi -icplus -ics932s401 -ideapad_slidebar -idma64 -idmouse -idt77252 -idt_gen2 -idtcps -ieee802154 -ieee802154_6lowpan -ieee802154_socket -ifb -iforce -igb -igbvf -igorplugusb -iguanair -ii_pci20kc -iio-trig-interrupt -iio-trig-periodic-rtc -iio-trig-sysfs -iio_dummy -iio_hwmon -ila -ili210x -ili922x -ili9320 -imm -imon -ims-pcu -imx074 -imx6ul_tsc -imx_thermal -ina209 -ina2xx -industrialio -industrialio-buffer-cb -industrialio-triggered-buffer -industrialio-triggered-event -inet_diag -inexio -inftl -initio -input-leds -input-polldev -int51x1 -intel_th -intel_th_gth -intel_th_msu -intel_th_pci -intel_th_pti -intel_th_sth -intel_vr_nor -interact -interval_tree_test -inv-mpu6050 -io_edgeport -io_ti -ioc4 -iowarrior -ip6_gre -ip6_tables -ip6_tunnel -ip6_udp_tunnel -ip6_vti -ip6t_MASQUERADE -ip6t_NPT -ip6t_REJECT -ip6t_SYNPROXY -ip6t_ah -ip6t_eui64 -ip6t_frag -ip6t_hbh -ip6t_ipv6header -ip6t_mh -ip6t_rpfilter -ip6t_rt -ip6table_filter -ip6table_mangle -ip6table_nat -ip6table_raw -ip6table_security -ip_gre -ip_set -ip_set_bitmap_ip -ip_set_bitmap_ipmac -ip_set_bitmap_port -ip_set_hash_ip -ip_set_hash_ipmark -ip_set_hash_ipport -ip_set_hash_ipportip -ip_set_hash_ipportnet -ip_set_hash_mac -ip_set_hash_net -ip_set_hash_netiface -ip_set_hash_netnet -ip_set_hash_netport -ip_set_hash_netportnet -ip_set_list_set -ip_tables -ip_tunnel -ip_vs -ip_vs_dh -ip_vs_fo -ip_vs_ftp -ip_vs_lblc -ip_vs_lblcr -ip_vs_lc -ip_vs_nq -ip_vs_ovf -ip_vs_pe_sip -ip_vs_rr -ip_vs_sed -ip_vs_sh -ip_vs_wlc -ip_vs_wrr -ip_vti -ipack -ipaq -ipcomp -ipcomp6 -ipddp -iphase -ipheth -ipip -ipmi_devintf -ipmi_msghandler -ipmi_poweroff -ipmi_si -ipmi_ssif -ipmi_watchdog -ipoctal -ipr -ips -ipt_CLUSTERIP -ipt_ECN -ipt_MASQUERADE -ipt_REJECT -ipt_SYNPROXY -ipt_ah -ipt_rpfilter -iptable_filter -iptable_mangle -iptable_nat -iptable_raw -iptable_security -ipvlan -ipw -ipw2100 -ipw2200 -ipwireless -ipx -ir-hix5hd2 -ir-jvc-decoder -ir-kbd-i2c -ir-lirc-codec -ir-mce_kbd-decoder -ir-nec-decoder -ir-rc5-decoder -ir-rc6-decoder -ir-sanyo-decoder -ir-sharp-decoder -ir-sony-decoder -ir-usb -ir-xmp-decoder -ircomm -ircomm-tty -irda -irda-usb -irlan -irnet -irtty-sir -iscsi_boot_sysfs -iscsi_target_mod -iscsi_tcp -isdn -isdn_bsdcomp -isdnhdlc -isicom -isight_firmware -isl29003 -isl29018 -isl29020 -isl29028 -isl29125 -isl6271a-regulator -isl6405 -isl6421 -isl6423 -isl9305 -isofs -isp116x-hcd -isp1362-hcd -isp1704_charger -isp1760 -it913x -itd1000 -itg3200 -iuu_phoenix -ivtv -ivtv-alsa -ivtvfb -iw_c2 -iw_cm -iw_cxgb3 -iw_cxgb4 -iw_nes -iwl3945 -iwl4965 -iwldvm -iwlegacy -iwlmvm -iwlwifi -ix2505v -ixgb -ixgbe -ixgbevf -janz-cmodio -janz-ican3 -jc42 -jedec_probe -jffs2 -jfs -jitterentropy_rng -jmb38x_ms -jme -joydev -joydump -jr3_pci -jsa1212 -jsm -kafs -kalmia -kaweth -kbic -kbtab -kcomedilib -ke_counter -kempld-core -kempld_wdt -kernelcapi -keyspan -keyspan_pda -keyspan_remote -keywrap -kfifo_buf -khazad -kingsun-sir -kl5kusb105 -kmx61 -kobil_sct -ks0108 -ks8842 -ks8851 -ks8851_mll -ks959-sir -ksdazzle-sir -ksz884x -ktti -kvaser_pci -kvaser_usb -kxcjk-1013 -kxsd9 -kxtj9 -kyrofb -l1oip -l2tp_core -l2tp_debugfs -l2tp_eth -l2tp_ip -l2tp_ip6 -l2tp_netlink -l2tp_ppp -l4f00242t03 -l64781 -lan78xx -lanai -lapb -lapbether -latch-addr-flash -lattice-ecp3-config -lcd -ld9040 -ldusb -lec -led-class-flash -leds-88pm860x -leds-adp5520 -leds-bcm6328 -leds-bcm6358 -leds-bd2802 -leds-blinkm -leds-da903x -leds-da9052 -leds-dac124s085 -leds-gpio -leds-ktd2692 -leds-lm3530 -leds-lm3533 -leds-lm355x -leds-lm3642 -leds-lp3944 -leds-lp5521 -leds-lp5523 -leds-lp5562 -leds-lp55xx-common -leds-lp8501 -leds-lp8788 -leds-lp8860 -leds-lt3593 -leds-max77693 -leds-max8997 -leds-mc13783 -leds-menf21bmc -leds-pca9532 -leds-pca955x -leds-pca963x -leds-pwm -leds-regulator -leds-tca6507 -leds-tlc591xx -leds-wm831x-status -leds-wm8350 -ledtrig-backlight -ledtrig-camera -ledtrig-default-on -ledtrig-gpio -ledtrig-heartbeat -ledtrig-oneshot -ledtrig-timer -ledtrig-transient -legousbtower -lg-vl600 -lg2160 -lgdt3305 -lgdt3306a -lgdt330x -lgs8gxx -lib80211 -lib80211_crypt_ccmp -lib80211_crypt_tkip -lib80211_crypt_wep -libahci -libahci_platform -libceph -libcomposite -libcrc32c -libcxgbi -libertas -libertas_cs -libertas_sdio -libertas_spi -libertas_tf -libertas_tf_usb -libfc -libfcoe -libipw -libiscsi -libiscsi_tcp -libore -libosd -libsas -lightning -lineage-pem -linear -liquidio -lirc_bt829 -lirc_dev -lirc_imon -lirc_parallel -lirc_sasem -lirc_serial -lirc_sir -lirc_zilog -lis3l02dq -lis3lv02d -lis3lv02d_i2c -lis3lv02d_spi -litelink-sir -lkkbd -ll_temac -llc -llc2 -lm25066 -lm3533-als -lm3533-core -lm3533-ctrlbank -lm3533_bl -lm3630a_bl -lm3639_bl -lm63 -lm70 -lm73 -lm75 -lm77 -lm78 -lm80 -lm83 -lm8323 -lm8333 -lm85 -lm87 -lm90 -lm92 -lm93 -lm95234 -lm95241 -lm95245 -lms283gf05 -lms501kf03 -lnbh25 -lnbp21 -lnbp22 -lockd -locktorture -lp -lp3943 -lp3971 -lp3972 -lp855x_bl -lp8727_charger -lp872x -lp8755 -lp8788-buck -lp8788-charger -lp8788-ldo -lp8788_adc -lp8788_bl -lpc_ich -lpc_sch -lpddr_cmds -lpfc -lru_cache -lrw -ltc2941-battery-gauge -ltc2945 -ltc2978 -ltc3589 -ltc4151 -ltc4215 -ltc4222 -ltc4245 -ltc4260 -ltc4261 -ltr501 -ltv350qv -lv5207lp -lvstest -lxt -lz4 -lz4_compress -lz4hc -lz4hc_compress -m25p80 -m2m-deinterlace -m52790 -m62332 -m88ds3103 -m88rs2000 -m88rs6000t -mISDN_core -mISDN_dsp -mISDNinfineon -mISDNipac -mISDNisar -m_can -ma600-sir -mac-celtic -mac-centeuro -mac-croatian -mac-cyrillic -mac-gaelic -mac-greek -mac-iceland -mac-inuit -mac-roman -mac-romanian -mac-turkish -mac80211 -mac80211_hwsim -mac802154 -mac_hid -macb -macvlan -macvtap -mag3110 -magellan -mailbox-altera -mailbox-test -mantis -mantis_core -map_absent -map_funcs -map_ram -map_rom -marvell -matrix-keymap -matrix_keypad -matrox_w1 -matroxfb_DAC1064 -matroxfb_Ti3026 -matroxfb_accel -matroxfb_base -matroxfb_crtc2 -matroxfb_g450 -matroxfb_maven -matroxfb_misc -max1027 -max1111 -max11801_ts -max1363 -max14577 -max14577_charger -max1586 -max16064 -max16065 -max1619 -max1668 -max17040_battery -max17042_battery -max197 -max20751 -max2165 -max3100 -max31790 -max3421-hcd -max34440 -max517 -max5821 -max63xx_wdt -max6639 -max6642 -max6650 -max6697 -max6875 -max7359_keypad -max77686 -max77693 -max77693-haptic -max77693_charger -max77802 -max8649 -max8660 -max8688 -max8903_charger -max8907 -max8907-regulator -max8925-regulator -max8925_bl -max8925_onkey -max8925_power -max8952 -max8973-regulator -max8997 -max8997_charger -max8997_haptic -max8998 -max8998_charger -mb862xxfb -mb86a16 -mb86a20s -mc13783-adc -mc13783-pwrbutton -mc13783-regulator -mc13783_ts -mc13892-regulator -mc13xxx-core -mc13xxx-i2c -mc13xxx-regulator-core -mc13xxx-spi -mc44s803 -mcb -mcb-pci -mceusb -mcp2120-sir -mcp251x -mcp3021 -mcp320x -mcp3422 -mcp4531 -mcp4725 -mcp4922 -mcryptd -mcs5000_ts -mcs7780 -mcs7830 -mcs_touchkey -mct_u232 -md-cluster -md4 -md5-ppc -mdc800 -mdio -mdio-bcm-unimac -mdio-bitbang -mdio-cavium -mdio-gpio -mdio-mux -mdio-mux-gpio -mdio-mux-mmioreg -mdio-octeon -mdio-thunder -mdio-xgene -me4000 -me_daq -media -megaraid -megaraid_mbox -megaraid_mm -megaraid_sas -memstick -men_z135_uart -men_z188_adc -mena21_wdt -menf21bmc -menf21bmc_hwmon -menf21bmc_wdt -metro-usb -metronomefb -mf6x4 -mga -michael_mic -micrel -microchip -microread -microread_i2c -microtek -mii -minix -mip6 -mite -mk712 -mkiss -mlx4_core -mlx4_en -mlx4_ib -mlx5_core -mlx5_ib -mlx90614 -mlxsw_core -mlxsw_pci -mma8450 -mma8452 -mma9551 -mma9551_core -mma9553 -mmc35240 -mmc_block -mmc_spi -mms114 -mn88472 -mn88473 -mos7720 -mos7840 -mostcore -moxa -mpc624 -mpc85xx_edac -mpl115 -mpl3115 -mpls_gso -mpls_iptunnel -mpls_router -mpoa -mpr121_touchkey -mpt3sas -mptbase -mptctl -mptfc -mptlan -mptsas -mptscsih -mptspi -mpu3050 -mrf24j40 -mrp -ms5611_core -ms5611_i2c -ms5611_spi -ms5637 -ms_block -ms_sensors_i2c -msdos -msi001 -msi2500 -msp3400 -mspro_block -mt2060 -mt2063 -mt20xx -mt2131 -mt2266 -mt29f_spinand -mt312 -mt352 -mt6311-regulator -mt6397-core -mt6397-regulator -mt7601u -mt9m001 -mt9m111 -mt9t031 -mt9t112 -mt9v011 -mt9v022 -mtd -mtd_blkdevs -mtd_dataflash -mtdblock -mtdblock_ro -mtdoops -mtdram -mtdswap -mtip32xx -mtk-sd -mtouch -multipath -multiq3 -musb_hdrc -mv_u3d_core -mv_udc -mvmdio -mvsas -mvumi -mwifiex -mwifiex_pcie -mwifiex_sdio -mwifiex_usb -mwl8k -mxb -mxc4005 -mxl111sf-demod -mxl111sf-tuner -mxl301rf -mxl5005s -mxl5007t -mxser -mxuport -myri10ge -n_gsm -n_hdlc -n_r3964 -n_tracerouter -n_tracesink -nand -nand_bch -nand_ecc -nand_ids -nandsim -national -natsemi -nau7802 -navman -nb8800 -nbd -nci -nci_spi -nci_uart -ncpfs -nct7802 -nct7904 -nd_blk -nd_btt -nd_pmem -ne2k-pci -neofb -net1080 -net2272 -net2280 -netconsole -netjet -netlink_diag -netrom -netup-unidvb -netxen_nic -newtonkbd -nf_conntrack -nf_conntrack_amanda -nf_conntrack_broadcast -nf_conntrack_ftp -nf_conntrack_h323 -nf_conntrack_ipv4 -nf_conntrack_ipv6 -nf_conntrack_irc -nf_conntrack_netbios_ns -nf_conntrack_netlink -nf_conntrack_pptp -nf_conntrack_proto_dccp -nf_conntrack_proto_gre -nf_conntrack_proto_sctp -nf_conntrack_proto_udplite -nf_conntrack_sane -nf_conntrack_sip -nf_conntrack_snmp -nf_conntrack_tftp -nf_defrag_ipv4 -nf_defrag_ipv6 -nf_dup_ipv4 -nf_dup_ipv6 -nf_log_arp -nf_log_bridge -nf_log_common -nf_log_ipv4 -nf_log_ipv6 -nf_nat -nf_nat_amanda -nf_nat_ftp -nf_nat_h323 -nf_nat_ipv4 -nf_nat_ipv6 -nf_nat_irc -nf_nat_masquerade_ipv4 -nf_nat_masquerade_ipv6 -nf_nat_pptp -nf_nat_proto_dccp -nf_nat_proto_gre -nf_nat_proto_sctp -nf_nat_proto_udplite -nf_nat_redirect -nf_nat_sip -nf_nat_snmp_basic -nf_nat_tftp -nf_reject_ipv4 -nf_reject_ipv6 -nf_synproxy_core -nf_tables -nf_tables_arp -nf_tables_bridge -nf_tables_inet -nf_tables_ipv4 -nf_tables_ipv6 -nf_tables_netdev -nfc -nfc_digital -nfcmrvl -nfcmrvl_i2c -nfcmrvl_spi -nfcmrvl_uart -nfcmrvl_usb -nfcsim -nfcwilink -nfnetlink -nfnetlink_acct -nfnetlink_cthelper -nfnetlink_cttimeout -nfnetlink_log -nfnetlink_queue -nfs -nfs_acl -nfs_layout_flexfiles -nfs_layout_nfsv41_files -nfsd -nfsv2 -nfsv3 -nfsv4 -nft_chain_nat_ipv4 -nft_chain_nat_ipv6 -nft_chain_route_ipv4 -nft_chain_route_ipv6 -nft_compat -nft_counter -nft_ct -nft_dup_ipv4 -nft_dup_ipv6 -nft_exthdr -nft_hash -nft_limit -nft_log -nft_masq -nft_masq_ipv4 -nft_masq_ipv6 -nft_meta -nft_meta_bridge -nft_nat -nft_queue -nft_rbtree -nft_redir -nft_redir_ipv4 -nft_redir_ipv6 -nft_reject -nft_reject_bridge -nft_reject_inet -nft_reject_ipv4 -nft_reject_ipv6 -nftl -ngene -nhc_dest -nhc_fragment -nhc_hop -nhc_ipv6 -nhc_mobility -nhc_routing -nhc_udp -ni_6527 -ni_65xx -ni_660x -ni_670x -ni_at_a2150 -ni_at_ao -ni_atmio -ni_atmio16d -ni_daq_700 -ni_daq_dio24 -ni_labpc -ni_labpc_common -ni_labpc_cs -ni_labpc_isadma -ni_labpc_pci -ni_mio_cs -ni_pcidio -ni_pcimio -ni_tio -ni_tiocmd -ni_usb6501 -nicpf -nicstar -nicvf -nilfs2 -niu -nlmon -nls_ascii -nls_cp1250 -nls_cp1251 -nls_cp1255 -nls_cp737 -nls_cp775 -nls_cp850 -nls_cp852 -nls_cp855 -nls_cp857 -nls_cp860 -nls_cp861 -nls_cp862 -nls_cp863 -nls_cp864 -nls_cp865 -nls_cp866 -nls_cp869 -nls_cp874 -nls_cp932 -nls_cp936 -nls_cp949 -nls_cp950 -nls_euc-jp -nls_iso8859-13 -nls_iso8859-14 -nls_iso8859-15 -nls_iso8859-2 -nls_iso8859-3 -nls_iso8859-4 -nls_iso8859-5 -nls_iso8859-6 -nls_iso8859-7 -nls_iso8859-9 -nls_koi8-r -nls_koi8-ru -nls_koi8-u -nls_utf8 -nmclan_cs -nosy -notifier-error-inject -nouveau -nozomi -nps_enet -ns558 -ns83820 -nsc-ircc -ntb -ntb_netdev -ntb_pingpong -ntb_tool -ntb_transport -ntc_thermistor -ntfs -null_blk -nvidiafb -nvme -nvmem_core -nxp-nci -nxp-nci_i2c -nxp-ptn3460 -nxt200x -nxt6000 -objlayoutdriver -ocfb -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -ocrdma -of_mmc_spi -of_xilinx_wdt -ofpart -old_belkin-sir -omap4-keypad -omfs -omninet -on20 -on26 -onenand -opencores-kbd -openvswitch -oprofile -opt3001 -opticon -option -or51132 -or51211 -orinoco -orinoco_cs -orinoco_nortel -orinoco_plx -orinoco_tmd -orinoco_usb -osd -osdblk -osst -oti6858 -ov2640 -ov5642 -ov6650 -ov7640 -ov7670 -ov772x -ov9640 -ov9740 -overlay -oxu210hp-hcd -p54common -p54pci -p54spi -p54usb -p8022 -p8023 -pa12203001 -palmas-pwrbutton -palmas-regulator -pandora_bl -panel -panel-lg-lg4573 -panel-samsung-ld9040 -panel-samsung-s6e8aa0 -panel-sharp-lq101r1sx01 -panel-simple -parade-ps8622 -paride -parkbd -parport -parport_ax88796 -parport_cs -parport_pc -parport_serial -pata_ali -pata_amd -pata_artop -pata_atiixp -pata_atp867x -pata_cmd640 -pata_cmd64x -pata_cypress -pata_efar -pata_hpt366 -pata_hpt37x -pata_hpt3x2n -pata_hpt3x3 -pata_it8213 -pata_it821x -pata_jmicron -pata_legacy -pata_marvell -pata_mpiix -pata_netcell -pata_ninja32 -pata_ns87410 -pata_ns87415 -pata_of_platform -pata_oldpiix -pata_opti -pata_optidma -pata_pcmcia -pata_pdc2027x -pata_pdc202xx_old -pata_piccolo -pata_platform -pata_radisys -pata_rdc -pata_rz1000 -pata_sch -pata_serverworks -pata_sil680 -pata_sis -pata_sl82c105 -pata_triflex -pata_via -pc300too -pcap-regulator -pcap_keys -pcap_ts -pcbc -pcd -pcf50633 -pcf50633-adc -pcf50633-backlight -pcf50633-charger -pcf50633-gpio -pcf50633-input -pcf50633-regulator -pcf8574_keypad -pcf8591 -pch_udc -pci -pci-stub -pci200syn -pcips2 -pcl711 -pcl724 -pcl726 -pcl730 -pcl812 -pcl816 -pcl818 -pcm3724 -pcmad -pcmcia -pcmcia_core -pcmcia_rsrc -pcmciamtd -pcmda12 -pcmmio -pcmuio -pcnet32 -pcnet_cs -pcrypt -pcwd_pci -pcwd_usb -pd -pd6729 -pda_power -pdc_adma -peak_pci -peak_pcmcia -peak_usb -pegasus -penmount -percpu_test -pf -pfuze100-regulator -pg -phantom -phonet -phram -phy-bcm-kona-usb2 -phy-exynos-usb2 -phy-gpio-vbus-usb -phy-isp1301 -phy-pxa-28nm-hsic -phy-pxa-28nm-usb2 -phy-tahvo -phy-tusb1210 -physmap -physmap_of -pixcir_i2c_ts -pkcs7_test_key -pktcdvd -pktgen -pl2303 -plat-ram -plat_nand -platform_lcd -plip -plusb -pluto2 -plx_pci -pm-notifier-error-inject -pm2fb -pm3fb -pm80xx -pm8941-wled -pmbus -pmbus_core -pmc551 -pmcraid -pn533 -pn544 -pn544_i2c -pn_pep -poly1305_generic -port100 -powermate -powr1220 -ppa -ppdev -ppp_async -ppp_deflate -ppp_mppe -ppp_synctty -pppoatm -pppoe -pppox -pps-gpio -pps-ldisc -pps_core -pps_parport -pptp -prism2_usb -ps2mult -psmouse -psnap -pt -ptp -pulsedlight-lidar-lite-v2 -pvrusb2 -pwc -pwm-atmel-hlcdc -pwm-beeper -pwm-fan -pwm-fsl-ftm -pwm-lp3943 -pwm-pca9685 -pwm-regulator -pwm-twl -pwm-twl-led -pwm_bl -pxa27x_udc -qcaspi -qcaux -qcom-spmi-iadc -qcom-spmi-temp-alarm -qcom-spmi-vadc -qcom_spmi-regulator -qcserial -qed -qede -qinfo_probe -qla1280 -qla2xxx -qla3xxx -qla4xxx -qlcnic -qlge -qlogic_cs -qlogicfas408 -qm1d1c0042 -qmi_wwan -qnx4 -qnx6 -qoriq-cpufreq -qsemi -qt1010 -qt1070 -qt2160 -quatech2 -quatech_daqp_cs -quota_tree -quota_v1 -quota_v2 -qxl -r128 -r592 -r6040 -r8152 -r8169 -r8188eu -r8192e_pci -r8192u_usb -r820t -r852 -r8712u -r8723au -r8a66597-hcd -r8a66597-udc -radeon -radeonfb -radio-bcm2048 -radio-i2c-si470x -radio-keene -radio-ma901 -radio-maxiradio -radio-mr800 -radio-platform-si4713 -radio-raremono -radio-shark -radio-si476x -radio-tea5764 -radio-usb-si470x -radio-usb-si4713 -radio-wl1273 -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid6test -raid_class -ramoops -raw -ray_cs -rbd -rbtree_test -rc-adstech-dvb-t-pci -rc-alink-dtu-m -rc-anysee -rc-apac-viewcomp -rc-asus-pc39 -rc-asus-ps3-100 -rc-ati-tv-wonder-hd-600 -rc-ati-x10 -rc-avermedia -rc-avermedia-a16d -rc-avermedia-cardbus -rc-avermedia-dvbt -rc-avermedia-m135a -rc-avermedia-m733a-rm-k6 -rc-avermedia-rm-ks -rc-avertv-303 -rc-azurewave-ad-tu700 -rc-behold -rc-behold-columbus -rc-budget-ci-old -rc-cinergy -rc-cinergy-1400 -rc-core -rc-delock-61959 -rc-dib0700-nec -rc-dib0700-rc5 -rc-digitalnow-tinytwin -rc-digittrade -rc-dm1105-nec -rc-dntv-live-dvb-t -rc-dntv-live-dvbt-pro -rc-dvbsky -rc-em-terratec -rc-encore-enltv -rc-encore-enltv-fm53 -rc-encore-enltv2 -rc-evga-indtube -rc-eztv -rc-flydvb -rc-flyvideo -rc-fusionhdtv-mce -rc-gadmei-rm008z -rc-genius-tvgo-a11mce -rc-gotview7135 -rc-hauppauge -rc-imon-mce -rc-imon-pad -rc-iodata-bctv7e -rc-it913x-v1 -rc-it913x-v2 -rc-kaiomy -rc-kworld-315u -rc-kworld-pc150u -rc-kworld-plus-tv-analog -rc-leadtek-y04g0051 -rc-lirc -rc-lme2510 -rc-loopback -rc-manli -rc-medion-x10 -rc-medion-x10-digitainer -rc-medion-x10-or2x -rc-msi-digivox-ii -rc-msi-digivox-iii -rc-msi-tvanywhere -rc-msi-tvanywhere-plus -rc-nebula -rc-nec-terratec-cinergy-xs -rc-norwood -rc-npgtech -rc-pctv-sedna -rc-pinnacle-color -rc-pinnacle-grey -rc-pinnacle-pctv-hd -rc-pixelview -rc-pixelview-002t -rc-pixelview-mk12 -rc-pixelview-new -rc-powercolor-real-angel -rc-proteus-2309 -rc-purpletv -rc-pv951 -rc-rc6-mce -rc-real-audio-220-32-keys -rc-reddo -rc-snapstream-firefly -rc-streamzap -rc-su3000 -rc-tbs-nec -rc-technisat-ts35 -rc-technisat-usb2 -rc-terratec-cinergy-c-pci -rc-terratec-cinergy-s2-hd -rc-terratec-cinergy-xs -rc-terratec-slim -rc-terratec-slim-2 -rc-tevii-nec -rc-tivo -rc-total-media-in-hand -rc-total-media-in-hand-02 -rc-trekstor -rc-tt-1500 -rc-twinhan-dtv-cab-ci -rc-twinhan1027 -rc-videomate-m1f -rc-videomate-s350 -rc-videomate-tv-pvr -rc-winfast -rc-winfast-usbii-deluxe -rc5t583-regulator -rdc321x-southbridge -rdma_cm -rdma_ucm -rds -rds_rdma -rds_tcp -realtek -redboot -redrat3 -reed_solomon -regmap-spmi -regulator-haptic -reiserfs -remoteproc -retu-mfd -retu-pwrbutton -retu_wdt -rfc1051 -rfc1201 -rfcomm -rfd_ftl -rfkill-gpio -rfkill-regulator -rio-scan -rio500 -rionet -rivafb -rj54n1cb0c -rk808 -rk808-regulator -rmd128 -rmd160 -rmd256 -rmd320 -rn5t618 -rn5t618-regulator -rn5t618_wdt -rndis_host -rndis_wlan -rocket -rohm_bu21023 -romfs -rose -rotary_encoder -rp2 -rpcrdma -rpcsec_gss_krb5 -rpr0521 -rrpc -rsi_91x -rsi_sdio -rsi_usb -rsxx -rt2400pci -rt2500pci -rt2500usb -rt2800lib -rt2800mmio -rt2800pci -rt2800usb -rt2x00lib -rt2x00mmio -rt2x00pci -rt2x00usb -rt5033 -rt5033-regulator -rt5033_battery -rt61pci -rt73usb -rt9455_charger -rtc-88pm80x -rtc-88pm860x -rtc-ab-b5ze-s3 -rtc-ab3100 -rtc-abx80x -rtc-as3722 -rtc-bq32k -rtc-bq4802 -rtc-cmos -rtc-da9052 -rtc-da9055 -rtc-da9063 -rtc-ds1286 -rtc-ds1305 -rtc-ds1307 -rtc-ds1343 -rtc-ds1347 -rtc-ds1374 -rtc-ds1390 -rtc-ds1511 -rtc-ds1553 -rtc-ds1672 -rtc-ds1685 -rtc-ds1742 -rtc-ds2404 -rtc-ds3234 -rtc-em3027 -rtc-fm3130 -rtc-generic -rtc-hid-sensor-time -rtc-hym8563 -rtc-isl12022 -rtc-isl12057 -rtc-isl1208 -rtc-lp8788 -rtc-m41t80 -rtc-m41t93 -rtc-m41t94 -rtc-m48t35 -rtc-m48t59 -rtc-m48t86 -rtc-max6900 -rtc-max6902 -rtc-max77686 -rtc-max77802 -rtc-max8907 -rtc-max8925 -rtc-max8997 -rtc-max8998 -rtc-mc13xxx -rtc-mcp795 -rtc-msm6242 -rtc-mt6397 -rtc-palmas -rtc-pcap -rtc-pcf2123 -rtc-pcf2127 -rtc-pcf50633 -rtc-pcf85063 -rtc-pcf8523 -rtc-pcf8563 -rtc-pcf8583 -rtc-r9701 -rtc-rc5t583 -rtc-rk808 -rtc-rp5c01 -rtc-rs5c348 -rtc-rs5c372 -rtc-rv3029c2 -rtc-rv8803 -rtc-rx4581 -rtc-rx8025 -rtc-rx8581 -rtc-s35390a -rtc-s5m -rtc-snvs -rtc-stk17ta8 -rtc-tps6586x -rtc-tps65910 -rtc-tps80031 -rtc-twl -rtc-v3020 -rtc-wm831x -rtc-wm8350 -rtc-x1205 -rtc-zynqmp -rtc_cmos_setup -rtd520 -rti800 -rti802 -rtl2830 -rtl2832 -rtl2832_sdr -rtl8150 -rtl8187 -rtl8188ee -rtl818x_pci -rtl8192c-common -rtl8192ce -rtl8192cu -rtl8192de -rtl8192ee -rtl8192se -rtl8723-common -rtl8723ae -rtl8723be -rtl8821ae -rtl8xxxu -rtl_pci -rtl_usb -rtllib -rtllib_crypt_ccmp -rtllib_crypt_tkip -rtllib_crypt_wep -rtlwifi -rts5208 -rtsx_pci -rtsx_pci_ms -rtsx_pci_sdmmc -rtsx_usb -rtsx_usb_ms -rtsx_usb_sdmmc -rx51_battery -rxkad -s1d13xxxfb -s2250 -s2255drv -s2io -s2mpa01 -s2mps11 -s3fb -s3fwrn5 -s3fwrn5_i2c -s526 -s5h1409 -s5h1411 -s5h1420 -s5m8767 -s626 -s6e63m0 -s921 -saa6588 -saa6752hs -saa7115 -saa7127 -saa7134 -saa7134-alsa -saa7134-dvb -saa7134-empress -saa7134-go7007 -saa7146 -saa7146_vv -saa7164 -saa717x -saa7706h -safe_serial -salsa20_generic -samsung-keypad -samsung-sxgbe -sata_fsl -sata_inic162x -sata_mv -sata_nv -sata_promise -sata_qstor -sata_sil -sata_sil24 -sata_sis -sata_sx4 -sata_uli -sata_via -sata_vsc -savage -savagefb -sbp_target -sbs-battery -sc16is7xx -sc92031 -sca3000 -sch_atm -sch_cbq -sch_choke -sch_codel -sch_drr -sch_dsmark -sch_fq -sch_fq_codel -sch_gred -sch_hfsc -sch_hhf -sch_htb -sch_ingress -sch_mqprio -sch_multiq -sch_netem -sch_pie -sch_plug -sch_prio -sch_qfq -sch_red -sch_sfb -sch_sfq -sch_tbf -sch_teql -scsi_debug -scsi_dh_alua -scsi_dh_emc -scsi_dh_hp_sw -scsi_dh_rdac -scsi_transport_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -scsi_transport_srp -sctp -sctp_probe -sdhci -sdhci-of-arasan -sdhci-of-at91 -sdhci-of-esdhc -sdhci-of-hlwd -sdhci-pci -sdhci-pltfm -sdhci_f_sdh30 -sdio_uart -sdricoh_cs -sedlbauer_cs -seed -sensorhub -seqiv -ser_gigaset -serial2002 -serial_cs -serio_raw -sermouse -serpent_generic -serport -ses -sfc -sh_veu -sha1-powerpc -shark2 -shpchp -sht15 -sht21 -shtc1 -si2157 -si2165 -si2168 -si21xx -si4713 -si476x-core -si7005 -si7020 -sidewinder -sierra -sierra_net -sil164 -sir-dev -sis -sis190 -sis5595 -sis900 -sisfb -sisusbvga -sit -sja1000 -sja1000_isa -sja1000_platform -skd -skfp -skge -sky2 -sky81452 -sky81452-backlight -sky81452-regulator -sl811-hcd -sl811_cs -slcan -slip -slram -sm501 -sm501fb -sm712fb -sm750fb -sm_common -sm_ftl -smb347-charger -smc91c92_cs -smipcie -smm665 -smsc -smsc-ircc2 -smsc47m192 -smsc75xx -smsc911x -smsc9420 -smsc95xx -smscufx -smsdvb -smsmdtv -smssdio -smsusb -snd -snd-ac97-codec -snd-ad1889 -snd-ak4113 -snd-ak4114 -snd-ak4117 -snd-ak4xxx-adda -snd-ali5451 -snd-aloop -snd-als300 -snd-als4000 -snd-atiixp -snd-atiixp-modem -snd-au8810 -snd-au8820 -snd-au8830 -snd-aw2 -snd-azt3328 -snd-bcd2000 -snd-bebob -snd-bt87x -snd-ca0106 -snd-cmipci -snd-cs4281 -snd-cs46xx -snd-cs8427 -snd-ctxfi -snd-darla20 -snd-darla24 -snd-dice -snd-dummy -snd-echo3g -snd-emu10k1 -snd-emu10k1-synth -snd-emu10k1x -snd-emux-synth -snd-ens1370 -snd-ens1371 -snd-es1938 -snd-es1968 -snd-firewire-digi00x -snd-firewire-lib -snd-firewire-tascam -snd-fireworks -snd-fm801 -snd-gina20 -snd-gina24 -snd-hda-codec -snd-hda-codec-analog -snd-hda-codec-ca0110 -snd-hda-codec-ca0132 -snd-hda-codec-cirrus -snd-hda-codec-cmedia -snd-hda-codec-conexant -snd-hda-codec-generic -snd-hda-codec-hdmi -snd-hda-codec-idt -snd-hda-codec-realtek -snd-hda-codec-si3054 -snd-hda-codec-via -snd-hda-core -snd-hda-intel -snd-hdsp -snd-hdspm -snd-hrtimer -snd-hwdep -snd-i2c -snd-ice1712 -snd-ice1724 -snd-ice17xx-ak4xxx -snd-indigo -snd-indigodj -snd-indigodjx -snd-indigoio -snd-indigoiox -snd-intel8x0 -snd-intel8x0m -snd-isight -snd-korg1212 -snd-layla20 -snd-layla24 -snd-lola -snd-lx6464es -snd-maestro3 -snd-mia -snd-mixart -snd-mixer-oss -snd-mona -snd-mpu401 -snd-mpu401-uart -snd-mtpav -snd-mts64 -snd-nm256 -snd-opl3-lib -snd-opl3-synth -snd-oxfw -snd-oxygen -snd-oxygen-lib -snd-pcm -snd-pcm-dmaengine -snd-pcm-oss -snd-pcxhr -snd-pdaudiocf -snd-portman2x4 -snd-pt2258 -snd-rawmidi -snd-riptide -snd-rme32 -snd-rme96 -snd-rme9652 -snd-sb-common -snd-scs1x -snd-seq -snd-seq-device -snd-seq-dummy -snd-seq-midi -snd-seq-midi-emul -snd-seq-midi-event -snd-seq-virmidi -snd-serial-u16550 -snd-soc-ac97 -snd-soc-adau1701 -snd-soc-ak4104 -snd-soc-ak4554 -snd-soc-ak4613 -snd-soc-ak4642 -snd-soc-ak5386 -snd-soc-alc5623 -snd-soc-core -snd-soc-cs35l32 -snd-soc-cs4265 -snd-soc-cs4270 -snd-soc-cs4271 -snd-soc-cs4271-i2c -snd-soc-cs4271-spi -snd-soc-cs42l51 -snd-soc-cs42l51-i2c -snd-soc-cs42l52 -snd-soc-cs42l56 -snd-soc-cs42l73 -snd-soc-cs42xx8 -snd-soc-cs42xx8-i2c -snd-soc-cs4349 -snd-soc-es8328 -snd-soc-fsl-asrc -snd-soc-fsl-esai -snd-soc-fsl-sai -snd-soc-fsl-spdif -snd-soc-fsl-ssi -snd-soc-gtm601 -snd-soc-imx-audmux -snd-soc-pcm1681 -snd-soc-pcm1792a-codec -snd-soc-pcm512x -snd-soc-pcm512x-i2c -snd-soc-pcm512x-spi -snd-soc-rt5631 -snd-soc-sgtl5000 -snd-soc-si476x -snd-soc-sigmadsp -snd-soc-sigmadsp-i2c -snd-soc-simple-card -snd-soc-spdif-rx -snd-soc-spdif-tx -snd-soc-ssm2602 -snd-soc-ssm2602-i2c -snd-soc-ssm2602-spi -snd-soc-ssm4567 -snd-soc-sta32x -snd-soc-sta350 -snd-soc-sti-sas -snd-soc-tas2552 -snd-soc-tas5086 -snd-soc-tas571x -snd-soc-tfa9879 -snd-soc-tlv320aic23 -snd-soc-tlv320aic23-i2c -snd-soc-tlv320aic23-spi -snd-soc-tlv320aic31xx -snd-soc-tlv320aic3x -snd-soc-tpa6130a2 -snd-soc-ts3a227e -snd-soc-wm8510 -snd-soc-wm8523 -snd-soc-wm8580 -snd-soc-wm8711 -snd-soc-wm8728 -snd-soc-wm8731 -snd-soc-wm8737 -snd-soc-wm8741 -snd-soc-wm8750 -snd-soc-wm8753 -snd-soc-wm8770 -snd-soc-wm8776 -snd-soc-wm8804 -snd-soc-wm8804-i2c -snd-soc-wm8804-spi -snd-soc-wm8903 -snd-soc-wm8962 -snd-soc-wm8978 -snd-soc-xtfpga-i2s -snd-sonicvibes -snd-timer -snd-trident -snd-ua101 -snd-usb-6fire -snd-usb-audio -snd-usb-caiaq -snd-usb-hiface -snd-usb-line6 -snd-usb-pod -snd-usb-podhd -snd-usb-toneport -snd-usb-usx2y -snd-usb-variax -snd-usbmidi-lib -snd-util-mem -snd-via82xx -snd-via82xx-modem -snd-virmidi -snd-virtuoso -snd-vx-lib -snd-vx222 -snd-vxpocket -snd-ymfpci -snic -soc_button_array -soc_camera -soc_camera_platform -soc_mediabus -softdog -softing -softing_cs -solo6x10 -solos-pci -sony-btf-mpx -soundcore -sp2 -sp8870 -sp887x -spaceball -spaceorb -sparse-keymap -spcp8x5 -speakup -speakup_acntsa -speakup_apollo -speakup_audptr -speakup_bns -speakup_decext -speakup_dectlk -speakup_dummy -speakup_ltlk -speakup_soft -speakup_spkout -speakup_txprt -spectrum_cs -speedfax -speedtch -spi-altera -spi-bitbang -spi-butterfly -spi-cadence -spi-dln2 -spi-dw -spi-dw-midpci -spi-dw-mmio -spi-gpio -spi-lm70llp -spi-nor -spi-oc-tiny -spi-pxa2xx-pci -spi-pxa2xx-platform -spi-sc18is602 -spi-tle62x0 -spi-xcomm -spi-zynqmp-gqspi -spi_ks8995 -spidev -spmi -sr9700 -sr9800 -ssb -ssb-hcd -ssd1307fb -ssfdc -ssp_accel_sensor -ssp_gyro_sensor -ssp_iio -sst25l -ssu100 -st -st-nci -st-nci_i2c -st-nci_spi -st1232 -st21nfca_hci -st21nfca_i2c -st_accel -st_accel_i2c -st_accel_spi -st_drv -st_gyro -st_gyro_i2c -st_gyro_spi -st_magn -st_magn_i2c -st_magn_spi -st_pressure -st_pressure_i2c -st_pressure_spi -st_sensors -st_sensors_i2c -st_sensors_spi -starfire -stb0899 -stb6000 -stb6100 -ste10Xp -ste_modem_rproc -stex -stinger -stir4200 -stk1160 -stk3310 -stk8312 -stk8ba50 -stkwebcam -stm_console -stm_core -stmmac -stmmac-platform -stmpe-keypad -stmpe-ts -stowaway -stp -streamzap -stv0288 -stv0297 -stv0299 -stv0367 -stv0900 -stv090x -stv6110 -stv6110x -sun4i-codec -sundance -sungem -sungem_phy -sunhme -suni -sunkbd -sunrpc -sur40 -svgalib -sx8 -sx8654 -sx9500 -sym53c500_cs -sym53c8xx -symbolserial -synaptics_i2c -synaptics_i2c_rmi4 -synaptics_usb -synclink -synclink_cs -synclink_gt -synclinkmp -sysv -t1pci -t5403 -talitos -target_core_file -target_core_iblock -target_core_mod -target_core_pscsi -target_core_user -tc3589x-keypad -tc74 -tc90522 -tca6416-keypad -tca8418_keypad -tcm_fc -tcm_loop -tcm_qla2xxx -tcm_usb_gadget -tcp_bic -tcp_cdg -tcp_dctcp -tcp_diag -tcp_highspeed -tcp_htcp -tcp_hybla -tcp_illinois -tcp_lp -tcp_probe -tcp_scalable -tcp_vegas -tcp_veno -tcp_westwood -tcp_yeah -tcrypt -tcs3414 -tcs3472 -tda10021 -tda10023 -tda10048 -tda1004x -tda10071 -tda10086 -tda18212 -tda18218 -tda18271 -tda18271c2dd -tda665x -tda7432 -tda8083 -tda8261 -tda826x -tda827x -tda8290 -tda9840 -tda9887 -tda998x -tdfx -tdfxfb -tdo24m -tea -tea575x -tea5761 -tea5767 -tea6415c -tea6420 -team -team_mode_activebackup -team_mode_broadcast -team_mode_loadbalance -team_mode_random -team_mode_roundrobin -tef6862 -tehuti -tekram-sir -teles_cs -teranetics -test-hexdump -test-kstrtox -test-string_helpers -test_bpf -test_firmware -test_module -test_power -test_printf -test_static_key_base -test_static_keys -test_udelay -test_user_copy -tg3 -tgr192 -thmc50 -thunder_bgx -thunderbolt -ti-adc081c -ti-adc128s052 -ti_am335x_adc -ti_am335x_tsc -ti_am335x_tscadc -ti_dac7512 -ti_usb_3410_5052 -tifm_7xx1 -tifm_core -tifm_ms -tifm_sd -timeriomem-rng -tipc -tlan -tm6000 -tm6000-alsa -tm6000-dvb -tmdc -tmp006 -tmp102 -tmp103 -tmp401 -tmp421 -toim3232-sir -torture -toshsd -touchit213 -touchright -touchwin -tpci200 -tpm-rng -tpm_atmel -tpm_i2c_atmel -tpm_i2c_infineon -tpm_i2c_nuvoton -tpm_st33zp24 -tpm_st33zp24_i2c -tpm_st33zp24_spi -tps40422 -tps51632-regulator -tps6105x -tps6105x-regulator -tps62360-regulator -tps65010 -tps65023-regulator -tps6507x -tps6507x-regulator -tps6507x-ts -tps65090-charger -tps65090-regulator -tps65217_bl -tps65217_charger -tps65218 -tps65218-pwrbutton -tps65218-regulator -tps6524x-regulator -tps6586x-regulator -tps65910-regulator -tps65912-regulator -tps80031-regulator -trancevibrator -trf7970a -tridentfb -ts2020 -ts_bm -ts_fsm -ts_kmp -tsc2004 -tsc2005 -tsc2007 -tsc200x-core -tsc40 -tsi568 -tsi57x -tsi721_mport -tsl2550 -tsl2563 -tsl2583 -tsl2x7x_core -tsl4531 -tsys01 -tsys02d -ttm -ttpci-eeprom -ttusb_dec -ttusbdecfe -ttusbir -tua6100 -tua9001 -tulip -tuner -tuner-simple -tuner-types -tuner-xc2028 -tunnel4 -tunnel6 -turbografx -tvaudio -tveeprom -tvp5150 -tw2804 -tw68 -tw9903 -tw9906 -tw9910 -twidjoy -twl-regulator -twl4030-madc -twl4030-madc-hwmon -twl4030-pwrbutton -twl4030-vibra -twl4030_charger -twl4030_keypad -twl4030_madc_battery -twl4030_wdt -twl6030-gpadc -twl6040-vibra -twofish_common -twofish_generic -typhoon -u132-hcd -u_ether -u_serial -uartlite -uas -ubi -ubifs -ucb1400_core -ucb1400_ts -ucd9000 -ucd9200 -uda1342 -udc-core -udc-xilinx -udf -udl -udp_diag -udp_tunnel -ueagle-atm -ufs -ufshcd -ufshcd-pci -ufshcd-pltfrm -uhid -uio -uio_aec -uio_cif -uio_dmem_genirq -uio_fsl_elbc_gpcm -uio_mf624 -uio_netx -uio_pci_generic -uio_pdrv_genirq -uio_pruss -uio_sercos3 -uli526x -ulpi -umc -umem -ums-alauda -ums-cypress -ums-datafab -ums-eneub6250 -ums-freecom -ums-isd200 -ums-jumpshot -ums-karma -ums-onetouch -ums-realtek -ums-sddr09 -ums-sddr55 -ums-usbat -unix_diag -upd64031a -upd64083 -us5182d -usb-serial-simple -usb-storage -usb3503 -usb8xxx -usb_8dev -usb_debug -usb_f_acm -usb_f_ecm -usb_f_ecm_subset -usb_f_eem -usb_f_fs -usb_f_hid -usb_f_mass_storage -usb_f_midi -usb_f_ncm -usb_f_obex -usb_f_phonet -usb_f_printer -usb_f_rndis -usb_f_serial -usb_f_ss_lb -usb_f_uac1 -usb_f_uac2 -usb_f_uvc -usb_gigaset -usb_wwan -usbatm -usbdux -usbduxfast -usbduxsigma -usbhid -usbip-core -usbip-host -usbkbd -usblcd -usbled -usblp -usbmisc_imx -usbmon -usbmouse -usbnet -usbserial -usbsevseg -usbtest -usbtmc -usbtouchscreen -usbtv -usbvision -usdhi6rol0 -userio -userspace-consumer -ushc -uss720 -uvcvideo -uvesafb -uwb -v4l2-common -v4l2-dv-timings -v4l2-flash-led-class -v4l2-mem2mem -vcan -vcnl4000 -ves1820 -ves1x93 -veth -vf610_adc -vga16fb -vgastate -vgem -vgg2432a4 -vhci-hcd -vhost -vhost_net -vhost_scsi -via -via-ircc -via-rhine -via-sdmmc -via-velocity -via686a -videobuf-core -videobuf-dma-sg -videobuf-dvb -videobuf-vmalloc -videobuf2-core -videobuf2-dma-contig -videobuf2-dma-sg -videobuf2-dvb -videobuf2-memops -videobuf2-v4l2 -videobuf2-vmalloc -videodev -vim2m -viperboard -viperboard_adc -virt-dma -virtio-gpu -virtio-rng -virtio_input -virtio_scsi -virtual -visor -vitesse -vivid -vlsi_ir -vmac -vme_pio2 -vme_tsi148 -vme_user -vme_vmivme7805 -vmk80xx -vmxnet3 -vp27smpx -vport-geneve -vport-gre -vport-vxlan -vrf -vringh -vsock -vsxxxaa -vt6655_stage -vt6656_stage -vt8231 -vt8623fb -vub300 -vx855 -vxge -vxlan -vz89x -w1-gpio -w1_bq27000 -w1_ds2406 -w1_ds2408 -w1_ds2413 -w1_ds2423 -w1_ds2431 -w1_ds2433 -w1_ds2760 -w1_ds2780 -w1_ds2781 -w1_ds28e04 -w1_smem -w1_therm -w5100 -w5300 -w6692 -w83781d -w83791d -w83792d -w83793 -w83795 -w83977af_ir -w83l785ts -w83l786ng -wacom -wacom_i2c -wacom_serial4 -wacom_w8001 -walkera0701 -wanxl -warrior -wbsd -wcn36xx -wd719x -wdt87xx_i2c -wdt_pci -whc-rc -whci -whci-hcd -whiteheat -wil6210 -wimax -winbond-840 -windfarm_core -wire -wishbone-serial -wl1251 -wl1251_sdio -wl1251_spi -wl1273-core -wl12xx -wl18xx -wl3501_cs -wlcore -wlcore_sdio -wlcore_spi -wm831x-dcdc -wm831x-hwmon -wm831x-isink -wm831x-ldo -wm831x-on -wm831x-ts -wm831x_backup -wm831x_bl -wm831x_power -wm831x_wdt -wm8350-hwmon -wm8350-regulator -wm8350_power -wm8350_wdt -wm8400-regulator -wm8739 -wm8775 -wm8994-core -wm8994-irq -wm8994-regmap -wm8994-regulator -wm97xx-ts -wp512 -wusb-cbaf -wusb-wa -wusbcore -x25 -x25_asy -x_tables -xc4000 -xc5000 -xcbc -xfrm4_mode_beet -xfrm4_mode_transport -xfrm4_mode_tunnel -xfrm4_tunnel -xfrm6_mode_beet -xfrm6_mode_ro -xfrm6_mode_transport -xfrm6_mode_tunnel -xfrm6_tunnel -xfrm_algo -xfrm_ipcomp -xfrm_user -xfs -xgifb -xhci-plat-hcd -xilinx-tpg -xilinx-video -xilinx-vtc -xilinx_ps2 -xilinx_uartps -xillybus_core -xillybus_of -xillybus_pcie -xirc2ps_cs -xircom_cb -xor -xpad -xr_usb_serial_common -xsens_mt -xt_AUDIT -xt_CHECKSUM -xt_CLASSIFY -xt_CONNSECMARK -xt_CT -xt_DSCP -xt_HL -xt_HMARK -xt_IDLETIMER -xt_LED -xt_LOG -xt_NETMAP -xt_NFLOG -xt_NFQUEUE -xt_RATEEST -xt_REDIRECT -xt_SECMARK -xt_TCPMSS -xt_TCPOPTSTRIP -xt_TEE -xt_TPROXY -xt_TRACE -xt_addrtype -xt_bpf -xt_cgroup -xt_cluster -xt_comment -xt_connbytes -xt_connlabel -xt_connlimit -xt_connmark -xt_conntrack -xt_cpu -xt_dccp -xt_devgroup -xt_dscp -xt_ecn -xt_esp -xt_hashlimit -xt_helper -xt_hl -xt_ipcomp -xt_iprange -xt_ipvs -xt_l2tp -xt_length -xt_limit -xt_mac -xt_mark -xt_multiport -xt_nat -xt_nfacct -xt_osf -xt_owner -xt_physdev -xt_pkttype -xt_policy -xt_quota -xt_rateest -xt_realm -xt_recent -xt_sctp -xt_set -xt_socket -xt_state -xt_statistic -xt_string -xt_tcpmss -xt_tcpudp -xt_time -xt_u32 -xtkbd -xts -xusbatm -xz_dec_test -yam -yealink -yellowfin -yenta_socket -yurex -zaurus -zd1201 -zd1211rw -zforce_ts -zhenhua -zl10036 -zl10039 -zl10353 -zl6100 -zlib -zr364xx -zram -zynq-fpga reverted: --- linux-raspi2-4.4.0/debian.master/abi/4.4.0-89.112/powerpc/powerpc64-smp +++ linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-89.112/powerpc/powerpc64-smp @@ -1,17803 +0,0 @@ -EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0x048d27cc hvcs_register_connection -EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0x536d329b hvcs_get_partner_info -EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0xc39c3704 hvcs_free_partner_info -EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0xd0a02396 hvcs_free_connection -EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe -EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble -EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL crypto/mcryptd 0x6310e901 mcryptd_arm_flusher -EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/atm/suni 0x45ff26a1 suni_init -EXPORT_SYMBOL drivers/bcma/bcma 0x44521424 bcma_core_irq -EXPORT_SYMBOL drivers/bcma/bcma 0xfefd83bf bcma_core_dma_translation -EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str -EXPORT_SYMBOL drivers/block/paride/paride 0x10a419da paride_unregister -EXPORT_SYMBOL drivers/block/paride/paride 0x18ee96df pi_init -EXPORT_SYMBOL drivers/block/paride/paride 0x1f67b5a3 paride_register -EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x4581460e pi_connect -EXPORT_SYMBOL drivers/block/paride/paride 0x7737d17f pi_do_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x789b1f66 pi_write_block -EXPORT_SYMBOL drivers/block/paride/paride 0x99567b9d pi_read_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xa76caf30 pi_write_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xa7a56754 pi_release -EXPORT_SYMBOL drivers/block/paride/paride 0xb182952f pi_read_block -EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -EXPORT_SYMBOL drivers/block/paride/paride 0xc3d20a6a pi_schedule_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0xfd4edfc8 pi_disconnect -EXPORT_SYMBOL drivers/bluetooth/btbcm 0xac324504 btbcm_patchram -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fae3bac ipmi_addr_src_to_str -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x59715ec7 ipmi_register_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x59d83ef9 ipmi_smi_watcher_register -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x76c0a3c9 ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x867a50ab ipmi_get_smi_info -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xc6f504a4 ipmi_smi_add_proc_entry -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x0b434d91 st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x556b221e st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xc205e20b st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xff772d10 st33zp24_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x467ba028 xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x90bd96e7 xillybus_init_endpoint -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xeac699a8 xillybus_endpoint_remove -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x1f7eb74e dw_dma_cyclic_stop -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x3d4eb9d9 dw_dma_get_src_addr -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x3fe49dd7 dw_dma_cyclic_start -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xa5722efd dw_dma_get_dst_addr -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xddce7709 dw_dma_cyclic_free -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xe233f3ab dw_dma_cyclic_prep -EXPORT_SYMBOL drivers/edac/edac_core 0x6196267d edac_mc_find -EXPORT_SYMBOL drivers/firewire/firewire-core 0x014a0ce0 fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x04d0f641 fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0f7d6af8 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0x17dfc0e7 fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1a11fbf1 fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a81e5cf fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3dd1f3a3 fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4311d67a fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x43750044 fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0x483bad31 fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4aa62314 fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5a627a9c fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5e75b51c fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x632816ba fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0x645b715f fw_core_add_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6ae69746 fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x75c08bc6 fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9064260e fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9bc9ac43 fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa0909e2b fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb09c2ce8 fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb934769f fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbb20abab fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbccf73d3 fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc8388475 fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd036841c fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xdcb8b583 fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe0209a20 fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe95615f4 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/fmc/fmc 0x1b1f5a2b fmc_find_sdb_device -EXPORT_SYMBOL drivers/fmc/fmc 0x36fbaa86 fmc_show_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0x371354f0 fmc_device_unregister_n -EXPORT_SYMBOL drivers/fmc/fmc 0x61c99d46 fmc_device_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0x651f7d7a fmc_device_register_n -EXPORT_SYMBOL drivers/fmc/fmc 0x7f709b5d fmc_device_register -EXPORT_SYMBOL drivers/fmc/fmc 0x9536b721 fmc_driver_register -EXPORT_SYMBOL drivers/fmc/fmc 0xaba8714e fmc_reprogram -EXPORT_SYMBOL drivers/fmc/fmc 0xabfeefb3 fmc_driver_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0xbe6db0b8 fmc_scan_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0xf1a97766 fmc_free_sdb_tree -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0099a866 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x010d95cb drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x013ce043 drm_legacy_addmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05d8e41f drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0647c47f drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x065167c5 drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06d55a67 drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09133508 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a3c412c drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ade2d1f drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0af51835 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ba7729c drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0caf7e72 drm_ati_pcigart_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d3cd2d9 drm_bridge_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d7dceb9 drm_legacy_ioremap_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ea4a256 drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10c231d0 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x117623bb drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x11c9d36d drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12085a3c drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12faa81a drm_framebuffer_reference -EXPORT_SYMBOL drivers/gpu/drm/drm 0x134e810f drm_connector_unplug_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x138e5d4c drm_atomic_legacy_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x149da881 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14b840a0 drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14e7f527 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14e8de9c drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1680a604 drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16ab1f9a drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x172d4858 drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x180d9fa8 drm_agp_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19e4430f drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a299fa4 drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bb27392 drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bd3cbd6 drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d3f87df drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd32f0e drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ef8d5ed drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fb79693 drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x206173fb drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x217ee6a5 drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21a2f8ff drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2593faa4 drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27ecc86c drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28115449 drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x294300ab drm_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2add3848 drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2beeb0e3 drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c0f397a drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d3e6fd8 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2de22313 drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3057095c drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3111b415 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31358c44 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x316328a9 drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31913076 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x321a916f drm_agp_bind_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a4971a drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x333968da drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3352c0f3 drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x355463e4 drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37147613 drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3880a211 drm_panel_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x39093c7b drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a845565 drm_agp_unbind -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b69ec72 drm_plane_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bca0773 drm_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d1cc3c5 drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d7f8bd8 drm_mode_create_dirty_info_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f227351 drm_bridge_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f5237c5 drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4027e62f drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x40cda96a drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x422268ed drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4349658f drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x43f7e569 drm_of_component_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x442507b2 drm_mode_hsync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x446922f8 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4485b5c3 drm_agp_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x44eaaf51 drm_mode_validate_basic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x45460d54 drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x457a5704 drm_legacy_getsarea -EXPORT_SYMBOL drivers/gpu/drm/drm 0x458adb90 drm_legacy_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4671344f drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x46dfc584 drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48567d88 drm_vblank_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48a5f66a drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x490ad5b4 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x497891ea drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b118bd9 drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d91fcee drm_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4db420fa drm_unplug_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x502a57a2 drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51db353a drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x52719493 drm_calc_vbltimestamp_from_scanoutpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x539d92a0 drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54331fab drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55059f8b drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x56ed76c5 drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x571c7a74 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57e2aa37 drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57f625dc drm_compat_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5819d6c1 drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a932f33 drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ab40e17 drm_prime_sg_to_page_addr_arrays -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bb63c9e drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cc05801 drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d35ca72 drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7318dc drm_global_item_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5daefae2 drm_property_reference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e9344d0 drm_bridge_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5efb5c4b drm_legacy_rmmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60f2d6d5 drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x61cb4c14 drm_mode_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6268704a drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x641eb16d drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64edd5c6 drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x675a19f2 drm_property_unreference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x683c86df drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68ed607c drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a1bbfe2 drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b2edc2d drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bba279a drm_modeset_unlock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bea90cb drm_pcie_get_speed_cap_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c1125ad drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d1774f2 drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d49bbbd drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d86613e drm_legacy_rmmap_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e93ea60 drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x704bf914 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x718bad30 drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x718c9b7f drm_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x720698e7 drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x727eac47 drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72bb906b drm_agp_bind -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7318315e drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x731d7a03 drm_atomic_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x73703410 drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x749b46cd drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7551f46e drm_pci_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x759b571b of_drm_find_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76ae287a drm_framebuffer_unreference -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7838bce2 drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79a37d5a drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79e0f9a2 drm_encoder_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ae1a68f drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b1e42a9 drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b6804e7 drm_vblank_pre_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bdbaec0 drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dff70e3 drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e500137 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c87814 drm_mode_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x837c85bb drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8380c130 drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83981f88 drm_crtc_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x853911fe drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x85d35185 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86d80669 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0x870ff264 drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x88535cff drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89da7188 drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a36bb82 drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a6a897a drm_mode_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ade8da0 drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8af21553 drm_pci_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c058a19 drm_mode_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cce52fa drm_connector_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d78edae drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ed236a0 drm_bridge_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f615b99 drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9094a3f0 drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x916148e9 drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91730387 drm_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91a9df35 drm_dev_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9399d8bd drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94373f74 drm_pci_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9634e9cc drm_modeset_lock_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x96484de6 drm_legacy_addbufs_agp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x96bc98d3 drm_of_find_possible_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0x979750bf drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x97d09469 drm_irq_install -EXPORT_SYMBOL drivers/gpu/drm/drm 0x97ea3e76 drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x98290e79 drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a436ce3 drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b1b7bf6 drm_vblank_no_hw_counter -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ba5b49f drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cbfcff8 drm_mm_dump_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d0aa811 drm_select_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d67cdc2 drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e4609dc drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1102f7a drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1118dc3 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1b6c589 drm_legacy_ioremap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1d85dd6 drm_pci_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2b74201 drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2f0f6af drm_irq_uninstall -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa40057a2 drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4048e59 drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa564d0bb drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7556685 drm_legacy_addbufs_pci -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa81db2dc drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9a9f9f6 drm_platform_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9ab9d92 drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9de9b14 drm_pci_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab6b0c23 drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab7d94fe drm_modeset_lock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad55a571 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2b7672d drm_crtc_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2de534e drm_legacy_idlelock_take -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb35a371c drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3a633fc drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5540008 drm_global_item_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6997f91 drm_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb76b7454 drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb90ed1a5 drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb944a250 drm_ati_pcigart_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb988f18e drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9b4c795 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcb60bb7 drm_vblank_post_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf6dfd63 drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0e5b19a drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc25a5efc drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3667626 drm_legacy_idlelock_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc42a5417 drm_pcie_get_max_link_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc59acaf5 drm_bridge_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5ce8820 drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7b1d9c3 drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc848c607 drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8a5d654 drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc91b6698 drm_atomic_clean_old_fb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1a0adfb drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2b7bbac drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd34e39fb drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd433111e drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4793fb6 drm_agp_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4d87639 drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd563cb5a drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5adba81 drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd77b9d26 drm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd86cd271 drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9057d26 drm_modeset_backoff_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd946129a drm_dev_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdaa23b8b drm_mode_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb1b4a34 of_drm_find_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbddefed drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc52dd57 drm_atomic_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc9a7399 drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcef3cb7 drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd6f5522 drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde76e5fa drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0xded2cf34 drm_panel_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfa5d62c drm_agp_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfcaa0cd drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2fe843f drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2ffd7a5 drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3bce834 drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4d7f3ec drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe50422c4 drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5a47f04 drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6c12fec drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7ac7a97 drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8c44f00 drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe97e5d1b drm_agp_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea3b6f46 drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeaab0db9 drm_atomic_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeae96791 drm_get_pci_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec17a9d6 drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed0f267e drm_modeset_legacy_acquire_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed3a9936 drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed8e34b6 drm_platform_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef51a3b9 drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef75fc23 drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0d4c78c drm_atomic_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0ef3ae0 drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b098be drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2080a30 drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6516606 drm_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf709cc39 drm_bridge_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7333585 drm_agp_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7357208 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7a04d49 drm_mode_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf84a4a72 drm_gem_dumb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8b7748b drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf944fb49 drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9b01f3a drm_legacy_ioremapfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd16175d drm_edid_to_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd317863 drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd969782 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff18b417 drm_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x026238f9 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x074e171a drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09099deb drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b4e4269 drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ce04426 drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0dbb13ac __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11bc5924 drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x143856ec __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14aeba5a drm_atomic_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14c13129 drm_fb_helper_fill_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19e7b004 drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1caa01cc drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ed1fdec drm_fb_helper_single_add_all_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x251a7006 drm_primary_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x253007a0 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x262a632e drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x278562e6 drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27c2b2dc drm_helper_crtc_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28438c8d drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2892effe drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28b8838d drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a3a794d drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a78684a drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x308fb582 drm_atomic_helper_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x360e93ea drm_helper_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37952e11 drm_fb_helper_add_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38a78102 drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a0b61d9 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a9a4730 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3aea3583 drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d380a61 drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3dce4088 drm_dp_mst_port_has_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41539132 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4262b1d4 drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4290c6e0 drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49c3f413 drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a9595d6 drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b796576 drm_atomic_helper_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d942066 drm_fb_helper_release_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e9d02a7 drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4fdf9deb drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52952dab __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x550238b3 drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59d0cbb6 drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b5a4793 drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c1b8218 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5cfab698 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5eb9d2ad drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fccf04f drm_dp_aux_unregister_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61e44ed4 drm_dp_link_probe -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6300425d drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65f65d3a drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x666e6939 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68b76933 drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a06795d drm_plane_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b182fe1 drm_fb_helper_fill_fix -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e55a4c6 drm_helper_probe_single_connector_modes_nomerge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e904674 drm_dp_link_configure -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f2e4295 drm_dp_link_power_up -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x724f5657 __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7407c780 drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74604dc5 drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74cba2a0 drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x756084a7 drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x778d0dbe __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x789def3d drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7afa0d0d __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d158932 drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d415de5 drm_fb_helper_unlink_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d9bd39c drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e691ed8 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80363f51 drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80982fda drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83dc05c3 drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x851bfb8c drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x862727a7 drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87c55d3c drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87d9f99e drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87f81982 drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8994f9ab drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89d605fc drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b6c7036 drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d53d530 drm_plane_helper_check_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91892da2 drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x922017e1 drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92a0e358 drm_has_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93b67cce drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95120f55 drm_atomic_helper_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9596b9ad drm_dp_link_power_down -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9603386e drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x962f4432 drm_kms_helper_poll_enable_locked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97a118e2 drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97e5658b drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98f55fdd drm_dp_aux_register_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9cc1df25 drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e4ac0ef drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e9dfd77 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0958d95 drm_atomic_helper_legacy_gamma_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa302f808 drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa875bc8e drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8b03e5f drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf738185 drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0e00088 drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb460711c drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6caa080 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7cba263 drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb87f21c7 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba05a909 drm_fb_helper_remove_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba22e7c3 drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe27a0bf drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfbc7bd6 drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc140c957 drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4bf6a6d drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc71e5ce7 __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9279455 drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf97c8bf drm_atomic_helper_framebuffer_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2f86004 drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd47c309b drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd622d759 drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8cfcfe7 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd5ce875 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe15a185d drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2700b4f drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5a8767d drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8f866f4 drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe99c183f drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb4894e6 drm_helper_crtc_mode_set_base -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed82b46a drm_primary_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed885105 drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef0f6bfb drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf054d661 drm_plane_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1f251bd drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf37962be drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf388f60d drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf455d9d3 drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf59c0774 drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa4bfd59 drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbd650a7 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd0d568a drm_pick_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd936be1 drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfdba6f29 drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe99ec4b drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x00f327d2 ttm_bo_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0cd85515 ttm_pool_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x110351ab ttm_mem_io_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x12678f08 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x167d3614 ttm_bo_manager_func -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1d0e90cb ttm_bo_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1dc0e347 ttm_mem_io_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2195e53e ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x24c89e06 ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x24f9c635 ttm_bo_clean_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x252cf702 ttm_bo_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x25958062 ttm_object_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2a85c227 ttm_mem_global_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2ddf156c ttm_agp_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2ecb5ccc ttm_prime_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x32eddbbb ttm_fbdev_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3ea30da3 ttm_mem_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4778d778 ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4b15718f ttm_agp_tt_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e8dd264 ttm_bo_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4f044f33 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x54bbd8f6 ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5500c19a ttm_bo_add_to_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x564e1aee ttm_bo_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x571c0e19 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a8fdfea ttm_vt_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5c076211 ttm_mem_global_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6015343d ttm_bo_mem_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6052860c ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x651725bf ttm_page_alloc_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x775f10ad ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x79870987 ttm_agp_tt_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d55da85 ttm_read_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fff26e0 ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x810d34bb ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x815cdd93 ttm_bo_move_ttm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x815da5eb ttm_bo_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8215cc9f ttm_dma_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84a13931 ttm_write_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89a443de ttm_write_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8bdc42e5 ttm_pool_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8c41a5ec ttm_tt_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d14adbf ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9203eabf ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x971e9f32 ttm_bo_dma_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x995290e9 ttm_bo_synccpu_write_grab -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d0eb91 ttm_ref_object_add -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9c5b596d ttm_dma_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9ff2f584 ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa2a129fd ttm_suspend_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa68fc153 ttm_mem_io_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa73de2a9 ttm_vt_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xab7c7792 ttm_bo_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaba13a32 ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb83c6470 ttm_lock_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbafa5cb8 ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbb1f5426 ttm_bo_init_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbbf444c0 ttm_mem_io_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc246fac5 ttm_tt_set_placement_caching -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5f0c2da ttm_read_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc62f7e66 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcc5f9cf9 ttm_mem_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd111c1d4 ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd2e5adca ttm_bo_synccpu_write_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd7f51742 ttm_suspend_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xddd012b2 ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe088dbe9 ttm_bo_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe1788151 ttm_bo_swapout_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeb375e84 ttm_bo_evict_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeec51674 ttm_bo_del_sub_from_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x147973fd i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x868baf2c i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x87e84014 i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x1ce5a873 i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xf09b25d0 i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xce8d8715 amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x25d76e35 mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x2c43adc7 mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x3f8d961a mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x48b7f5a7 mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4acb9a54 mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6143acd5 mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x78c517b5 mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7970849c mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7aae1c74 mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xab8ce04c mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc2436ecc mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc806229b mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xcb0cc28d mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd5f1ab26 mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd8ad1b1a mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xddf69ab8 mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x859c56ca st_accel_common_probe -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xb43742c5 st_accel_common_remove -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x1fb83782 iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x9ca4a11c iio_triggered_buffer_setup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x1835c480 iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x3a05d807 devm_iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x8b8224f6 iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xbf0516cd devm_iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x0f00d24a hid_sensor_write_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x562141ef hid_sensor_write_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x5a0247f0 hid_sensor_read_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x8fb535e9 hid_sensor_parse_common_attributes -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xf23aed72 hid_sensor_read_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xf5926f35 hid_sensor_read_poll_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x3f5a4ea9 hid_sensor_setup_trigger -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x8a77de5d hid_sensor_power_state -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xaaa409be hid_sensor_pm_ops -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xbba9f83d hid_sensor_remove_trigger -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x01ec8125 ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x42516433 ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x5a85b1d3 ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x6342a39d ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb5ac8969 ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb87aea61 ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb8ce4e06 ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xe18ea867 ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xfc69320f ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x38e17e1c ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x6f27ced3 ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xabbffe9b ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xda992dd6 ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xdc21ec6e ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x77d77a2b ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xb0dc3061 ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xc44f908e ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0a445982 st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1f2e4a39 st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x296a90c3 st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3cd5ac69 st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x42f4513e st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x457d14f9 st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x54f8788b st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9564917f st_sensors_check_device_support -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x97539e4b st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa749f4f9 st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa99961c8 st_sensors_get_buffer_element -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xacc1ab90 st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xaf315e27 st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd2116466 st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xdb8668df st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe4ae9ba9 st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf9ed30a4 st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x7f423a20 st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xfbe50cc0 st_sensors_of_i2c_probe -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xf1503a1d st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x1c87b355 st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xdcfa50cf st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x8e85f45a hts221_probe -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x195a6476 adis_enable_irq -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x8c012eb9 adis_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/industrialio 0x0366c383 iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x1e99cbdc iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x2f3734a2 iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0x4129801c iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x4b3e70ad iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0x4be5e0e2 iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x6207d549 iio_triggered_buffer_predisable -EXPORT_SYMBOL drivers/iio/industrialio 0x697f1bd2 iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0x6cce74c4 iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0x8921aba2 iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0x97a6d677 iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0xc0f11f8b iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xc7833059 iio_triggered_buffer_postenable -EXPORT_SYMBOL drivers/iio/industrialio 0xd23b6ee2 iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xe0ce20b0 iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xf302621a iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0xfb1ec6f4 iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x2a3999dc iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xf20d4f30 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x6a089ddd st_magn_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x8f95488f st_magn_common_probe -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x872a0d4a ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x31c1639f st_press_common_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xaf82ba8b st_press_common_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x049ace30 rdma_addr_find_smac_by_sgid -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x07428bbb rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1ea5767b rdma_addr_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x32a8402c rdma_addr_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x4217c0e8 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x93006435 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xaf3fd282 rdma_copy_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0a0fd2dc ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x181d1f6e ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2c32dc4f cm_class -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2f93ad11 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x514be2b6 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5ddecc7f ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6714e675 ib_send_cm_lap -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x68b30cd4 ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x774ec745 ib_send_cm_apr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7f54adb6 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa7af54c7 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbe256e34 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd3250843 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe21df04d ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xefb71311 ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf20b28df ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf476d390 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf6c2d2d1 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03f205c6 ib_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05b8021d ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x085e8f6f rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0bf91e0d ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0fa6eaaa ib_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11afee43 ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13ecac42 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14eade82 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1689a7d8 ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16e148c5 ib_create_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x186785a3 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x188006ae ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d454356 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a9a8f6c ib_create_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2aa36ea6 ibnl_add_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31e0c4b1 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x322b5bed ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33080d19 ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35338204 ib_create_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x360e560d ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38553cc1 ib_create_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d920b7f ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3dc5febd ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x411002d9 ib_alloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x428a4dfb ib_dealloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46f918ac ib_resolve_eth_dmac -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x487f538a ib_get_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b439c4a ib_fmr_pool_unmap -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x523a502c ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5644d1aa ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a82e5ee ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5dec4c42 ib_init_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63108178 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6458d1be ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68a678cf ib_destroy_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68f90966 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ae6c333 ib_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ce40255 ib_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8236ae5a ib_umem_odp_map_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89f54a8f ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d05f5a4 ib_dealloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d4768dd ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9074f6dc ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9195728a ib_umem_page_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93c5aacc ibnl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95fb5fae ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96f819b6 ib_dereg_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x974b0638 ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9dc0b85b ib_get_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e37bd60 ib_dealloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5916371 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa92fd317 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac99c47a ib_destroy_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xace7bca0 ib_query_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf4ac5ba ib_destroy_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1e5008c ib_fmr_pool_map_phys -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2fdb135 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb63fc948 ib_get_dma_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7b04948 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbca7b6a3 ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbcfbc70a ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc01c4787 ib_alloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc798e559 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8c78288 ib_dealloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca08dc57 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc9feae5 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcdf7320d ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce33ee30 ib_alloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0c4c343 ib_find_cached_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda8f4b80 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb143e59 ib_find_gid_by_filter -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe489de6e ib_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe49807ff ib_destroy_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7e72b8a ibnl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea682008 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeea58f54 ib_modify_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeeb68ecc ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef585cca ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf07a9307 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf15b4891 ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf51156d7 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf643535b ib_query_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf77ca5b8 ib_find_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x05ba3c4c ib_cancel_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x1ceaf361 ib_process_mad_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x54a24fb8 ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x61bbb763 ib_register_mad_snoop -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6fe00aa3 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x8cdb99c7 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x8e086a50 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x8f8e3310 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x96c6f6dc ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x99c07155 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xba3c5287 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc7c8890c ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xf97ca620 ib_redirect_mad_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x2607f366 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x2e23ec80 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x4f50b077 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5328d7a6 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5fa5dae6 ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x8bd9192a ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9a1cd50d ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xa12d837d ib_sa_service_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xc2fdb580 ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xcd8c1c80 ib_init_ah_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xe16b08ed ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8dba52fe ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd76992be ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x05f5a9cc iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x082fc40a iwpm_add_and_query_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x084229e3 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ffe10e3 iwpm_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2d4b5fc0 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x494ed125 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x511d8cdd iwpm_add_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x51c5e712 iwpm_register_pid_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5b6e87c7 iwpm_remote_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x64c5b53f iwpm_ack_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6e3f6e67 iwpm_mapping_error_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8d6e47c4 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd3461a50 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf0b7294e iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf44eca05 iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0a094fa7 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1f292363 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x20d42083 rdma_set_ib_paths -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2b2f9f97 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3529ea44 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3e19aec4 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x66e4aab2 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x74f8d290 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x773dd563 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x82d9c28a rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x850838a3 rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa9ab9765 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaa6ab101 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaab828d1 rdma_create_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc098fad2 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc8e96f1c rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd0367f7a rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd1da418e rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe2444381 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe74dbc9e rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf20ce271 rdma_join_multicast -EXPORT_SYMBOL drivers/input/gameport/gameport 0x1e504fc0 gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0x26fa6171 __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x6e20460f gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0x90101192 gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x9fdf0983 gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0xa6fd58ae gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xb82f95ad gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0xe2792776 __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xf91ff7fc gameport_stop_polling -EXPORT_SYMBOL drivers/input/input-polldev 0x2dfba557 input_unregister_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x7fda5d33 input_free_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x85acf476 input_register_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x8a56d441 devm_input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xde4b0e24 input_allocate_polled_device -EXPORT_SYMBOL drivers/input/matrix-keymap 0x156c7dae matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x6e2b3e15 ad714x_disable -EXPORT_SYMBOL drivers/input/misc/ad714x 0x716df73e ad714x_probe -EXPORT_SYMBOL drivers/input/misc/ad714x 0xf2f07712 ad714x_enable -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x726dbfce cma3000_init -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/sparse-keymap 0x69617fca sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0x76a3e788 sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0xc323be55 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xc631e7dc sparse_keymap_free -EXPORT_SYMBOL drivers/input/sparse-keymap 0xe8ad4688 sparse_keymap_setup -EXPORT_SYMBOL drivers/input/sparse-keymap 0xec35f41a sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x18423765 ad7879_probe -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x77a68a19 ad7879_pm_ops -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x0d98f287 capi20_put_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x41e99078 detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x43322879 capi20_register -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x46a4415e capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x55fc6be5 capi_ctr_resume_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x727ab8af capi_ctr_suspend_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7292ab34 cdebbuf_free -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x72a25a72 capi_cmsg2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x77559e1c capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb09a9498 capi20_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd5a53bcc capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfc4c3f9e attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfd552f7a capi_message2str -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0bb8d6ab b1_loaded -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2052af18 b1_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x46687812 b1_parse_version -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x488c3fe3 b1_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x4ec65821 b1_free_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x52fad1c1 avmcard_dma_alloc -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x681795a1 b1_load_config -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x77992a4e b1_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x7ad3a287 b1ctl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x811a5879 b1_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x83b2c42a b1_load_t4file -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x84380aff avmcard_dma_free -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xcf8aed4f b1_alloc_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd93c42f0 b1_getrevision -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf6cd8ed0 b1_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x10ec71f0 b1dma_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x1f6299f6 b1dma_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x47ee761d b1dma_reset -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x71f8d721 t1pci_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x9b438718 b1pciv4_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xc15e61d9 b1dma_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xcb072c37 b1dma_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd482d4c9 b1dmactl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xedf5a898 b1dma_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0x29562993 b1pcmcia_delcard -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x1a9a01c4 mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x8822a182 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xc8dc2cb5 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xffef3606 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x0aae293f mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x4e94911f mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6fe1ca04 FsmDelTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9f987c85 FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xa1bc94b9 FsmInitTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xb4fe24e0 hisax_init_pcmcia -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x0ea318f0 isacsx_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x30000724 isac_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x36a1ed1a isacsx_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xa601f565 isac_init -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xe63c1e6e isac_irq -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x30ff6b9e register_isdn -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xb6c11657 isdn_ppp_register_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xd2ec60a6 isdn_ppp_unregister_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06139c29 mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0a76d072 bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0e4da331 bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x135f345f mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x17a7555a mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x18ca0b1e mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x20cdd371 get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x22c04281 recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x40fdeee9 dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x455751d5 mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x46bdcbf2 recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4fb2fe78 mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4fde7606 mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x516b5757 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x617ed32e queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x75aa6d61 recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x97cbecbc mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa7cc9c7b mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xaf8f3569 create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb3f85c0c recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb8d8964b get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xeaece12f recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9c791de mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/md/bcache/bcache 0x1d89bd11 bch_btree_sort_partial -EXPORT_SYMBOL drivers/md/bcache/bcache 0x1f529ce8 bch_bset_build_written_tree -EXPORT_SYMBOL drivers/md/bcache/bcache 0x26481f26 bch_btree_sort_lazy -EXPORT_SYMBOL drivers/md/bcache/bcache 0x440b4830 bch_btree_iter_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0x44a37d62 bch_btree_iter_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x44e60b11 closure_sync -EXPORT_SYMBOL drivers/md/bcache/bcache 0x5b59b856 bch_btree_insert_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7daccb73 bch_btree_keys_alloc -EXPORT_SYMBOL drivers/md/bcache/bcache 0x8833b0e8 bch_btree_keys_free -EXPORT_SYMBOL drivers/md/bcache/bcache 0x8c3ebf2b closure_sub -EXPORT_SYMBOL drivers/md/bcache/bcache 0xa3c5c702 bch_bset_fix_invalidated_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0xb326360f closure_wait -EXPORT_SYMBOL drivers/md/bcache/bcache 0xca5df778 __bch_bset_search -EXPORT_SYMBOL drivers/md/bcache/bcache 0xce47a6d9 bch_btree_keys_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0xd2813054 bch_bset_insert -EXPORT_SYMBOL drivers/md/bcache/bcache 0xdf892351 bch_bkey_try_merge -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe67c2d16 bch_bset_sort_state_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0xec6f33d0 bch_bset_init_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0xfc4419bf closure_put -EXPORT_SYMBOL drivers/md/dm-bufio 0x268682d2 dm_bufio_forget -EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers -EXPORT_SYMBOL drivers/md/dm-log 0x3f3cf001 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0x556449cf dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0x676a8c4c dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0xfc78d19a dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x24da0be1 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x43a781c5 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x70cc89e9 dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0x835b85c9 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0xbcc32497 dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0xdfa18cc8 dm_snap_origin -EXPORT_SYMBOL drivers/md/raid456 0x4f056c9e raid5_set_cache_size -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0ecc77d3 flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1d94c15e flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x22bb3383 flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x68eb2c54 flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x76b23e4d flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x80a16563 flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x840b9b54 flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8aefbb86 flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9aa3983e flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xafbaf019 flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb780b562 flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc9c2c4ce flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfa85ec37 flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/cx2341x 0x1589057c cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update -EXPORT_SYMBOL drivers/media/common/cx2341x 0x30cb4cd7 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0xdba175f5 cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cx2341x 0xe19b544c cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cx2341x 0xf35d41fe cx2341x_handler_setup -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x01f0f314 cypress_load_firmware -EXPORT_SYMBOL drivers/media/common/tveeprom 0xb497d437 tveeprom_read -EXPORT_SYMBOL drivers/media/common/tveeprom 0xf7249ea2 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0019e0d6 dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x02f3ec75 dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08e9282b dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x117b011b dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x19548f00 dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x32706276 dvb_ringbuffer_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x365e0f3e dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3ed18dfc dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4d7b3633 dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5c0ea535 dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5ce020eb dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5d2c3c2d dvb_dmx_swfilter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x626a80c7 dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6cd74ff6 dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x70af1058 dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x72f5751c dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x78db694b dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7f4f9b54 dvb_ringbuffer_flush -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x85a5e7d3 dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x89ae39e7 dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8ebb257f dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x912e51a9 dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9444e9df dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa0b2970f dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xaa13818a dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcb520804 dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcb55c2e5 dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcf589e8c dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd0ac8299 dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd45f8b42 dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd8f7184c dvb_ringbuffer_flush_spinlock_wakeup -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdd23dc9f dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe1056d39 dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe667aaeb dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf28e7431 dvb_ringbuffer_read_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf44a8f44 dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfbaa7e01 dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfd967edd dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x48c16e3d af9013_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x87f746dd ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xfca2b58f atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2e7373cf au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x4a61d54b au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x605dfffa au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x6b3669b3 au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x6d50b4c8 au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x8db87c55 au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9346d758 au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x99b3a394 au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9ed00a79 au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xcb575898 au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x69c94277 bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x8974c7af cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x10d2997b cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x46ed0b73 cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x23fb9081 cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xa0673d37 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x9e421c22 cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x455915d3 cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x117bc841 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x7e73ef3c cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xa55b8fdb cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x55bd0240 cxd2841er_attach_t -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xadac5bec cxd2841er_attach_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xbffe68f4 cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x10fce403 dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x55f5e53c dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x9caffb69 dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xbc80a7ba dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xdb7d3495 dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1288dbe3 dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x15010e97 dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3c1473db dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4be988d7 dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6a568e24 dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x73e12373 dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7538e428 dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x779dbdb4 dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7ea8a4b5 dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb5ec9cea dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xba1e0af5 dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc4dd5c94 dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc5c2fa57 dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdff19d20 dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf2499684 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x0637db3f dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x0c1b8ca1 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x267ddea2 dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x3ed915ed dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x97c641da dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xcb36081d dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xee818267 dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xa1c68648 dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xa8e42e83 dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xaf930853 dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xc1bb15f4 dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x7fe18663 dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x5d94fc7a dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x0ec78335 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x12a012bb dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x200c995a dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x6bcc6dcf dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xb4a6cd41 dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xf514dea4 drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x39090633 drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x635174b6 drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x96933d53 ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xd4572c44 dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x92f4fbcb ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xbf656fa4 horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x164e212c isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x893cb562 isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xb280ea83 isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x786411c8 itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xd862e71d ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x507f7c45 l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xcdb1b568 lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xe47e0376 lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x55153863 lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xedae420f lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x49e40162 lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xb49bc6d7 lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x5571621c lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xfc507723 lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x25aa1544 lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x75e7f586 m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xc6ba1f44 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xb4d08a49 m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x0113e3ad mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x9dd446fa mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0xcacd6a6c mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xe1f2cd89 mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xd945390a nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xf9e503eb nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x629bc93f or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x4167e070 or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xf0ad202f s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xbb3d6b9b s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x0a3838ed s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x24d08b2a s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xbe0b5490 s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0x4411a586 si2165_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xaf85fba4 si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0xe3e35004 sp8870_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xb05692c5 sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x358c8e63 stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xcc631cd2 stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x500d1a6b stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x49a86b92 stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x2865fca4 stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x4cf840d9 stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x61a00315 stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x62f93b0f stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x2632c45d stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x964cfc13 stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x313bd6b3 stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x6f9461db stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xba3770b7 tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x9eb0adce tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xb6c98547 tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x830aec8c tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xb71f44e4 tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x56828d8e tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xbfd1bcce tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xe4cec7f3 tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xbabe4fc1 tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x590d7ecf tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x589a8fe1 ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x07a98113 tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xd445705d ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x9c2d860d ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x527156f7 zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x44fac319 zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x579d4676 zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x06a976af flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x1b6c3c17 flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x4bdd80bf flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x5396e008 flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x93520f15 flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xd98bb855 flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xe0eed106 flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x19bf3d6d bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x476dc8a6 bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xb419f1b8 bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xbe324db7 bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x38edc271 bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x85193e23 bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xc946205b bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3c06b74a dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x40edac24 dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x44ede152 rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5d59a231 dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x765217a5 dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc66be7d9 write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd97de399 dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe4e9feb8 read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe7437734 dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xd8b69336 dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x015ebe23 cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x4adeacb5 cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x56bbf5c1 cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x7e2711e4 cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xdd596709 cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xcbe66f87 altera_ci_init -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x21ae572c cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x6877c7cb cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7b23c00d cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xa741aff1 cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc3c569c1 cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc65c7482 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd195cd48 cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xb736bb6b vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xf8093363 vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x0b86a60b cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x29216236 cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x49e414f3 cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xcf71f4f6 cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x2c7f4bb7 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x529aecd0 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x8424873c cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd3cddbbd cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd8cf19f3 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xdfd8e8ec cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xef081407 cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1c75813e cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x287c3c97 cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x44c9a3a5 cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4bc5813f cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x56a3309a cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x582452e8 cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5ffdb92a cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7a0c541b cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7bdd51fb cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x847fc133 cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x94606297 cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9e8325a1 cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb9a76e67 cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc1cd5127 cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc1d5476e cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcc1fd755 cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd8bfcbc2 cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe01913ff cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe9aef339 cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xee38ff24 cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1245baee ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x254a9b99 ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5927d8a7 ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x688f399b ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x72deb35d ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x854c7c11 ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x94c85935 ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9c4dfd3b ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xacfb7e0c ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xadcf75ee ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb04c9826 ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb26c215c ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb5d69e63 ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc2983cbb ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcc9dd90f ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd34f3253 ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd64381c6 ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3a1a991c saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x42c5e85e saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x545590d2 saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x796d6db5 saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x83aa2292 saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x883a3e91 saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9e58772e saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xaa74f9d5 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb130c174 saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd6472b6d saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe89988d1 saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xfecdf378 saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x5f85a21a ttpci_eeprom_parse_mac -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x15ebf6ea soc_camera_apply_board_flags -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x1a209983 soc_camera_power_off -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x23c2f3c7 soc_camera_host_unregister -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x3e62cfe4 soc_camera_xlate_by_fourcc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x8817734b soc_camera_host_register -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xb896b2dd soc_camera_power_on -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xfebce28b soc_camera_power_init -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc -EXPORT_SYMBOL drivers/media/radio/tea575x 0x33587c69 snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x4b22a206 snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0x51f8e099 snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0x593590b7 snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0x5ad386f7 snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0x6103e35e snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xc640d7c4 snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x08a61800 lirc_register_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x1eb6e6c4 lirc_dev_fop_write -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x75e52f1a lirc_dev_fop_poll -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x7f229edc lirc_get_pdata -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x94589956 lirc_dev_fop_close -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xec2dc951 lirc_dev_fop_ioctl -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xec7b53be lirc_dev_fop_open -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xedd2ec32 lirc_dev_fop_read -EXPORT_SYMBOL drivers/media/rc/rc-core 0x61c04ed3 ir_raw_handler_register -EXPORT_SYMBOL drivers/media/rc/rc-core 0x7e4dc495 ir_raw_handler_unregister -EXPORT_SYMBOL drivers/media/tuners/fc0011 0xdd047ccc fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0x7b649143 fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x20321015 fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xab52546b fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xc1cf7e35 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/max2165 0x7f76d4dd max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x13ef8029 mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0xba3cbc04 mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0x82740b21 mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0xb7f2d304 mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x689c620a mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0xce5dd02e qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0xa01ece2a tda18218_attach -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0xe3c1b222 xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0x878735b5 xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0x8c3651f3 xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x32e63fc5 cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xab7db3b8 cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5f9d1f20 dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6c87b7ab dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6c919b53 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x79e1e4ce dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8b2c663f dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x9db62ff9 dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xaee3d8a7 dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc20689e1 dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf33cfef7 dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x2bee3bc8 usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x34986fc8 dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x3f1b3d72 dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x6c9559f1 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xb4f7a0f7 dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xea40e1e9 dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf1120348 dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x12f40974 af9005_rc_decode -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x080aed4d dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1b0fec79 dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x56d87bd6 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6ed93c3e dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x872be762 dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8dd81191 dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb74c8551 dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xcfc9b5ce dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe5c0558d dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xec5c5bed dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf7d868c0 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x376e3f0d em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x8a757401 em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1e6687d1 go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x28336876 go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x46ebed70 go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4729ef05 go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6d51e37e go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x94dab406 go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd16f83de go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd3fe2da8 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xdcc4e0b0 go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x0dc516ef gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x34b652bf gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x78169895 gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8d405e50 gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x90037415 gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xba98187c gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xccd01c15 gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xce1eddbb gspca_resume -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x29636405 tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x39733b68 tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xa16c1fdf tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x11c60879 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x3a0109b3 ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xa9f12c81 v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xcd38f13b v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf5f008a7 v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x5ce66cb1 videobuf_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x810c5a16 videobuf_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x93ed6fd8 videobuf_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xb192a1d5 videobuf_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xca3daba7 videobuf_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xd1162543 videobuf_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xda6ddc78 vb2_verify_memory_type -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xf0e81a0b vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x0138a354 vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x428a14b3 vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x80eb6137 vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x83a27c98 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xbce4b800 vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xd7b28dda vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0x9997ecf2 vb2_querybuf -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x00bcf819 __v4l2_clk_register_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0694386d v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x070c947c v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0946cfa5 video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0dfa5c9f v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0f17f1cc v4l2_of_put_link -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0f4d3640 v4l2_clk_set_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x10ade268 v4l2_clk_get -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x11db17c4 __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x19c7f0e9 v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1cd1c2cc v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x201a6438 v4l2_subdev_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x22a594ac __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x24708d56 v4l2_subdev_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x295b24d5 v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32eadfc2 v4l2_of_parse_link -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x345da784 v4l2_of_parse_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x34cbf3b2 video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3effc9e2 video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x40d1c728 v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x418d0162 v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x41e206d9 v4l2_subdev_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45930b7c v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4885037b v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4caedbee video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4f2af822 v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x53f92dd7 video_usercopy -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x54608eff v4l2_clk_unregister_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x55b75bad v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5616d876 __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x56c19edf v4l2_of_free_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x591dcc33 v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x68e8c8b0 v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x70af6852 v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x760ee988 video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x79b09439 v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a1b0f1f __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7b065066 v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7dcd72f3 v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7eca4860 v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7ffb126b v4l2_subdev_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x82423376 v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8f92a885 v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x939bda54 v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x96ca4e8b v4l2_subdev_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa3791c5a v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaac37403 v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xac7e2653 v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xac8b5eac v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xba0d83dd v4l2_clk_disable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc8f8537 v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbcc6474d v4l2_subdev_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbd993595 v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc0fabe70 v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc3cebfc8 v4l2_subdev_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc7956b89 v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcc1258ae v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcc9e76d4 v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcd290e0d v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd0f13bc3 v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd3c81050 v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd5b22ead v4l2_of_alloc_parse_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd9c8864a v4l2_clk_get_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdb01db84 __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc31f2ff v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe1823b0a v4l2_clk_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2a06e13 v4l2_clk_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe63fb0b6 v4l2_clk_put -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe99f9520 video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf13adb2d v4l2_ctrl_add_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf628285e v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf6d7edb7 v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfcf676af v4l2_clk_enable -EXPORT_SYMBOL drivers/memstick/core/memstick 0x20ee5c6f memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0x3b03a187 memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x45bfb83e memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x71ebdcd6 memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x73dbc19a memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x7baa623d memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x863d2d39 memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xb7ec433e memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xba1aa85f memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xc2f62fb0 memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc07e67e memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xde6ced5d memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xdf1bb9c1 memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0103fdaa mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0b975d4d mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0fcfcd75 mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x15b277a5 mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1b02599c mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2b2bb79a mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3494f031 mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4010c4a7 mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4581fd54 mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x50f5fc60 mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5f39fd39 mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fc531cf mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8155b071 mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x85fde834 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x86e6dfee mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x966c7ea7 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9692086c mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9a009b97 mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa7b9796d mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaaeaa85e mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb0205ad0 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb9ffe10d mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbc192eb0 mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbf9edc25 mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc44ae101 mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd56c6c36 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xed6eae28 mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfb72a0eb mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfd780757 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0844924e mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x13702e20 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1c1cf843 mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x37811dae mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x38ab21c4 mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x55fabf8d mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5640be15 mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x56500d24 mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x591fca48 mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x62f0b980 mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6526f62d mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8377a524 mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8c524fb9 mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8cc22e57 mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9823eb40 mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa068d003 mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb25e2fb4 mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc1c91081 mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc749f13c mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcc4b3be0 mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xce5bb392 mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd51b2e35 mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd6d217d1 mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe39f032a mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe779bc81 mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf7db4f3b mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfa1b0609 mptscsih_slave_configure -EXPORT_SYMBOL drivers/mfd/dln2 0x7b714f11 dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xc4221e7c dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xc85eb17c dln2_transfer -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xbab249d7 pasic3_read_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xf80106c4 pasic3_write_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x00e4f28b mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5a1ad321 mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9e1c493d mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9f4bc660 mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa28d1a11 mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb220ed71 mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb9ad0fc1 mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc13035a6 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xca8bf982 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xdff09af9 mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe5b3fe67 mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 -EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 -EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib -EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led -EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw -EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x6131d8a9 wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x986b5c9d wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x53bb659a wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x6181de03 wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xa90e8366 wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xfee3dc2e wm1811_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x3f17518b ad_dpot_remove -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xa88e9946 ad_dpot_probe -EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x30b3ae49 altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0xb28d47f2 c2port_device_unregister -EXPORT_SYMBOL drivers/misc/c2port/core 0xd11dfbe1 c2port_device_register -EXPORT_SYMBOL drivers/misc/ioc4 0x4aa7786c ioc4_register_submodule -EXPORT_SYMBOL drivers/misc/ioc4 0x4dd99026 ioc4_unregister_submodule -EXPORT_SYMBOL drivers/misc/tifm_core 0x0f00276f tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x11c0080e tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x159cb028 tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x2df5e7a9 tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x33e7a530 tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x6eebe5de tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x90a212da tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x9cfe1d8f tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xa8c2ec46 tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0xb07a63ca tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0xd0fe0f00 tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0xe5bb0d09 tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0xf1a3a3ec tifm_free_adapter -EXPORT_SYMBOL drivers/mmc/card/mmc_block 0x3c57f0cd mmc_cleanup_queue -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x528043b6 mmc_spi_get_pdata -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x982051bc mmc_spi_put_pdata -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x3ccf4024 cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x45caaf0f cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x52cce4ba cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x69d8d801 cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xaf8a86ee cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xbbcbfd06 cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xfc91299a cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x46e338aa register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x81451e02 unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x9756e4bb map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xc8ec034e do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x6e81e5cb mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x0c825f5c lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x2497105b simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0x38944c77 mtd_concat_create -EXPORT_SYMBOL drivers/mtd/mtd 0xf7c44c6e mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/nand/denali 0x22673c3a denali_init -EXPORT_SYMBOL drivers/mtd/nand/denali 0x56a1a3f9 denali_remove -EXPORT_SYMBOL drivers/mtd/nand/nand 0x238fcc02 nand_scan_bbt -EXPORT_SYMBOL drivers/mtd/nand/nand 0x33b3faf4 nand_scan -EXPORT_SYMBOL drivers/mtd/nand/nand 0x3c74a30f nand_lock -EXPORT_SYMBOL drivers/mtd/nand/nand 0x569f1387 nand_scan_tail -EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/nand 0xad13de77 nand_scan_ident -EXPORT_SYMBOL drivers/mtd/nand/nand 0xcd0444ca nand_unlock -EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x11a0ab26 nand_bch_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x45f54910 nand_bch_init -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xbb5eb5bc nand_bch_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xbf9e994f nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xe1f4d864 nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x8cfcf75c nand_flash_ids -EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x0e0d4df6 onenand_addr -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xa9781aee flexonenand_region -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xc33e2527 onenand_default_bbt -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xfe0dcc25 onenand_scan_bbt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x08cb02f5 arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6ccd5d75 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x769e4b1d arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8a38c78f arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x957d9ace alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa0e486c4 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb0b1df48 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xdbb6eef8 arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe5c8ca68 arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf8033696 arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x17bd18dd com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x195b27bd com20020_netdev_ops -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x27949caa com20020_check -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1407ae41 ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x46b36a08 ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5fa8b23a ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6b7a8ca6 ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6c20e72a ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa16608d8 ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa57ac5d6 NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd3ae4260 ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xdc0806ef __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf3d380b6 ei_open -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0xe0b8e54d bnx2x_schedule_sp_rtnl -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x0a239cdf cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x0d8be5fd bgx_lmac_rx_tx_enable -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x285bde59 bgx_get_rx_stats -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x42264715 bgx_get_lmac_count -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x6dc1648d bgx_get_lmac_mac -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc397f585 bgx_lmac_internal_loopback -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc82be691 bgx_get_map -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xe48ca42a bgx_get_tx_stats -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf101d1b2 bgx_get_lmac_link_state -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf9508980 bgx_set_lmac_mac -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x10750676 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x293cad69 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2b416a7a cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2bfe2a06 t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4c7c580f cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5ec32e11 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x603ef191 t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x673118c5 cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x714097a1 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x91d6b0c1 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xaf2a5ebf cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd02c1a3e cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd99ffea3 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe16e5578 cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf0ac2686 cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf9559cda t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x00cadbf4 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x00e8b1fd cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0e0bb389 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0e66b370 cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x114115ed cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x19061361 cxgb4_dcb_enabled -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1ce2cd3f cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2389d837 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x29fc3139 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2f7f2207 cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x328a17d1 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x36daf90f cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3705c178 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3b003cf3 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x444b6b1d cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4dc9aa13 t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6d248ae2 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x723ed6ca cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8168c67d cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8734f980 cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8738c2ad cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8bee7c70 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9470f021 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa6968037 cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb0687115 cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbfe4e4c1 cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc902e65f cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc9c2e799 cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd24829a9 cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd8fb6d82 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd9cb383a cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xde2534bf cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xee385512 cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xef30c82c cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x092b6d27 vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x43040372 vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa0bd8578 vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa25c0a06 vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa7ba824d enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xb35acba3 vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x11cc6988 be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xd49cdbef be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00a20d19 mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01c77122 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01ce4e3e mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04ab8b53 mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x068b857b mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x098701ec mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1346c8c1 set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1949dd0d mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1af26c71 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e1e69d6 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21c9ccd1 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ad8ada2 mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41013f5f mlx4_test_interrupts -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42985ffa mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42dfb9ae mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44cb2a6d get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x521db246 mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c63960c mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e32bb5d mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60334c35 mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6dae3617 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ed0b7b0 mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x786c9fe8 mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83ac6f42 mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84c02d02 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87a51760 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x894f6f59 mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90e8674b mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4857953 mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2be8db6 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6033913 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce346221 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde419ca4 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf277eee mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9f1fbce mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef8bb124 mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf93c7951 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbf3ebb8 mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x013e4d9f mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01f5784c mlx5_cmd_comp_handler -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04bc6266 mlx5_core_arm_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0857aabd mlx5_get_flow_table_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08e431ca mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb7287e mlx5_del_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f8cac3b mlx5_core_destroy_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1096fe1e mlx5_modify_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x110354f4 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e62039f mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f1f4105 mlx5_get_protocol_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22651f4c mlx5_unmap_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24a9ea66 mlx5_core_get_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3095a1af mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3814d882 mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a1fa0cd mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f388e2d mlx5_cmd_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94d5fb27 mlx5_core_create_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9622f98e mlx5_register_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c2a8cdc mlx5_query_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f56900a mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1037480 mlx5_alloc_map_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3ca386f mlx5_core_query_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa6b57f9 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1098951 mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5ac36f1 mlx5_cmd_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb808a9f mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce62ef32 mlx5_core_dump_fill_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf3c4815 mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd00c0437 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4fadfbd mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7de89ff mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8e743b2 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb512385 mlx5_unregister_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbf80e4e mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde6b32ab mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe01d4160 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e89cde mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6af33e4 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb9e1010 mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8a73152 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc728a49 mlx5_add_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1332714c mlxsw_core_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2d07a992 mlxsw_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x535b4ee6 mlxsw_core_skb_receive -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x594e3bee mlxsw_core_skb_transmit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x710ac954 mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7b93295 mlxsw_core_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcd0a9a41 mlxsw_core_bus_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd9956d29 mlxsw_core_rx_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee8e0771 mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x76f76fb7 qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa209d1af qed_get_protocol_version -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x1d0f1103 hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x494b7535 hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x62739f69 hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xa2764576 hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xbbcd69a2 hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x0d7781c5 irda_register_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x1717c35f irda_unregister_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x223a787a sirdev_raw_write -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x22560b82 sirdev_put_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x4dc93578 sirdev_write_complete -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x9dbe0fc6 sirdev_raw_read -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xba9dd62c sirdev_set_dtr_rts -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xd7422e3b sirdev_set_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xef0abf42 sirdev_get_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xf5ff7106 sirdev_receive -EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl -EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart -EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag -EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe -EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok -EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage -EXPORT_SYMBOL drivers/net/mii 0x0faa9fa6 mii_check_link -EXPORT_SYMBOL drivers/net/mii 0x1452e6ca generic_mii_ioctl -EXPORT_SYMBOL drivers/net/mii 0x71f672b0 mii_ethtool_sset -EXPORT_SYMBOL drivers/net/mii 0x82dd3563 mii_check_gmii_support -EXPORT_SYMBOL drivers/net/mii 0x937b1014 mii_link_ok -EXPORT_SYMBOL drivers/net/mii 0x998b0ce9 mii_nway_restart -EXPORT_SYMBOL drivers/net/mii 0xa4a14ad2 mii_check_media -EXPORT_SYMBOL drivers/net/mii 0xad555fd8 mii_ethtool_gset -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x2a2725de free_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xac371566 alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x6bdcfdd3 cavium_mdiobus_write -EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0xf2f38010 cavium_mdiobus_read -EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x745ccc83 xgene_mdio_rgmii_write -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x7c268608 xgene_enet_phy_register -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xf98a45fc xgene_mdio_rgmii_read -EXPORT_SYMBOL drivers/net/phy/vitesse 0x063fb9d2 vsc824x_add_skew -EXPORT_SYMBOL drivers/net/ppp/pppox 0x53a250cc pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0x7d6f67f9 register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xc75f13bf pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0xfcd9980a sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x200ef342 team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0x2bf4d12a team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0x589c3eb2 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0x5963f00c team_options_register -EXPORT_SYMBOL drivers/net/team/team 0x679d6acc team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0x7788fc39 team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x94951658 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0xb997dae2 team_options_change_check -EXPORT_SYMBOL drivers/net/usb/usbnet 0x3ec1377d usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0x6420fe5a usbnet_manage_power -EXPORT_SYMBOL drivers/net/usb/usbnet 0xc26a387b usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0xfa14b341 cdc_parse_cdc_header -EXPORT_SYMBOL drivers/net/wan/hdlc 0x2155a27c unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0x251a324f hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0x4089bdd0 alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0x53537002 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x5bfb05e0 hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0xa724e002 attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xca685d42 hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0xd30f523c register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xd706d2b5 hdlc_change_mtu -EXPORT_SYMBOL drivers/net/wan/hdlc 0xdca3bd78 hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0xdcd31a26 unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x3e6bcf1a i2400m_unknown_barker -EXPORT_SYMBOL drivers/net/wireless/airo 0xc748d26a reset_airo_card -EXPORT_SYMBOL drivers/net/wireless/airo 0xdd9ff83d init_airo_card -EXPORT_SYMBOL drivers/net/wireless/airo 0xe897af39 stop_airo_card -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x209fb392 ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x251a69c1 ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x260509de ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3f48a6e2 ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5bc62ff1 ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5fc187e7 ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x60274fbe dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7c931b4f ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb39d9b60 ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xba35c3d0 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe8a23541 ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf27fddaf ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x177f46e0 ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x186402ef ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1bdd949a ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2d4c82eb ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3034ac07 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3cb3387d ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x66884a8c ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x776c4656 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x82f03ce7 ath10k_debug_get_new_fw_crash_data -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8e261553 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9a5f1315 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb420c394 ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb4aa60e2 ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc6bc999e ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf6d77ea5 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x36f38e73 ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4ff5aa4c ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x54193ebf ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x78249e4a ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7d2d02ba ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x81f38e6c ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8c607f73 ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb041efbe ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb73d4ed9 ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xbeecf967 ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xfca17cb4 ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x03046b98 ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x177c906d ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1e7b6e94 ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x24355859 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x25f2583f ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x30007ad2 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3870807b ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x42384b74 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x460b750b ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x47f6033f ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4d2f4be0 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4fbcf99d ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x68eda380 ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7be7b8a0 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7f682acf ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x81c6e4cc ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9ef83310 ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaccd0845 ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb4f4505a ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xca6e75ef ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd5937f2f ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd79de779 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf927df89 ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0060d863 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0069775c ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x015ab023 ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04af3436 ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x073bd43a ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e095732 ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ebe98d5 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x103d8457 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x12bd36eb ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x138e8f8d ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17b90799 ath9k_hw_request_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17e03999 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1805908b ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19c668df ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ab2499a ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x20ad1619 ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x290f2604 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ab06048 ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ed7a68f ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x34e133e4 ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x356283a2 ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3c5468fa ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d8167b5 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3de61578 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3ed4a2f4 ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x43cafe11 ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45577e3e ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46b8eaeb ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b61b336 ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b9c2a5b ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x547cca04 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x551171de ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x58822b18 ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5970068c ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5abf197c ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5cfc9ac1 ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x613d9904 ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x653ff011 ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x67a7286f ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6a133f80 ath9k_hw_cfg_output -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b6e1611 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d47a246 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7352943f ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x74a9b73e ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7813003f ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x78553c78 ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a77934b ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ca2024d ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d81ecb8 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f18ed30 ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x80cba84b ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x816f6529 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x838a7452 ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x852cb484 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8af62346 ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8b00dce8 ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8ba6d712 ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c556a53 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8cf508b5 ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8f4199c8 ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91f25634 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x931cf443 ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x94681fe9 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x94ff9f89 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x96604b46 ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x97f79c01 ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98ed073c ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9910c2fa ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x992402dd ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a038878 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a417c56 ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ce8397e ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ecf2740 ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa0309fe7 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa1378dfe ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3d41ecc ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa48f1439 ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa4a3e653 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6081760 ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa62880f2 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6f30a82 ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa618852 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad5410ff ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf828496 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb30948a4 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3b9a4cc ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7aa70b9 ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb88cabb1 ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb8bee78e ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc10d0ed0 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc1862ec1 ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xca2a7a82 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd89ef12 ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe3caa82a ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe487c8cf ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe5ba8bc4 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe6be7285 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb8faa5d ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec7a2cde ath9k_hw_cfg_gpio_input -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xedfa316f ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf02803d6 ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf86810df ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf96869f7 ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffa66ffa ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffb2edb4 ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/atmel 0x983f180f stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel 0xa8d9b3a7 init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel 0xf1e5fc01 atmel_open -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x20dd9d1e brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x290e8e31 brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x35b9a61e brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x38c5acfb brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x437538d1 brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x62db39d9 brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x753e2c3a brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x84c9de9c brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x88c471cf brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x8fa0fc21 brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f909661 brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xa36ac62b brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xfa25f67f brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x01821b16 hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0c361bf5 hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0d22337c hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1057fe94 hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1522d206 hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1723ac32 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x17efa012 hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x252f4472 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3163c3dd hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3a7781dc hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x53bc9c95 hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x698d1372 hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x89128276 hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8c9ac2fa hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8f2f4418 hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa25a9737 hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa5f2f143 hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa849e9b9 hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xaab1a865 hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc67680f9 hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd8cd162e hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xda5d421c hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xdd67e4f5 hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe57dd8d8 hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xefbd9298 hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf7b108b8 hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0fc51a61 libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x143b8f1d libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x1c303b13 libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x1cccee97 libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x1e426ef4 libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x22384fe8 alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x36fa5603 libipw_rx -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4f684e07 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x52036125 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5586c856 libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x570c19fa libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5a79b61b libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x60eb7915 libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x65a5885b libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7a49274f libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7ab3a89c free_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x92f89438 libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xcffea3f5 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe88cfcdd libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf851bce4 libipw_change_mtu -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf9befa6a libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x019e8c58 il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x038e2172 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x05a1aef0 il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x05d33eca il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x08b803de il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x09222ee7 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0fa8d86c il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0fd3ff16 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1261711b il_set_rate -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x151541cb il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x15af2e35 il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x15e67893 il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x16581b06 il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x16888096 il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x169a8419 il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x16fd9230 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1e0088cf il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x20d40df8 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x22e3e6c6 il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2326e484 il_free_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x243e957a il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x24a0fd96 _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x257c2d39 il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3044c552 il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3940a532 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3a72c2e4 il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x413b8a46 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4347e2c9 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4428f870 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x44e1f80c il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x458c5992 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x54b50e83 il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x59f17bab il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5cdd8c8b il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5d937e40 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5e3c0c03 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5f602b3d il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x67d5e7fd il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x68902f04 il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6ad08dbd il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6c381449 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6e33b390 il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6e4e0853 il_apm_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6e5cbb89 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6ef0c25d il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x72edf4d7 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7a92ce73 il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7c0a4abe il_init_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x82c32a8f il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x84826405 il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x85416c8a il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x88bc2232 il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x88e1e45b il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x89d7ba49 il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8a7159e2 il_leds_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8bd86c05 il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8cd8571f il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8eb446c9 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8f70b72a il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8fe85a53 il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x91da4586 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x988e5a8b il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x99387e91 il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9a59d80d il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9c00b033 il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9d312c10 il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa20e7edd il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa384ed47 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa496571c il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa54f0742 il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa8f77cd5 il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xab9e84bb il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xaede8bbd il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb1f32639 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb54350b0 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbd14f50a il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbf06cbec il_update_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc6970051 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc9970588 il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcf35771e il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd6bce4d7 il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd9545615 il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdad0f768 il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe0854e87 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe2c1e32b il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe412db44 il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe6b85c8f il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe99957e4 il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xeb644a50 il_force_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xef6e8a7e il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf121764f il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf2e382c3 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf3efc6b5 il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfb056ebe il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfb503cd1 il_set_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfc54c168 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfcf11c79 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xff677b60 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x1b06ce78 __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x2447a6ab __tracepoint_iwlwifi_dev_iowrite8 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x314a20a8 __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x5e9c24ff __tracepoint_iwlwifi_dev_ucode_error -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x8c8ab242 __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x9a1b1df9 __tracepoint_iwlwifi_dev_ioread32 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xdced6db1 __tracepoint_iwlwifi_dev_iowrite32 -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x0c3cffd7 orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x0cde7a3e orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x2b1ce6f5 free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x42ded8b9 orinoco_up -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x59e97b22 alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5c37db5b orinoco_open -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5dea5bf1 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x6973475b orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x6e4dcde9 orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x7f087a2c __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x82fe45ad orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x97198cc1 orinoco_down -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xa60937dd orinoco_get_stats -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xa9f6ed9b __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb3860d37 orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd2592cf1 orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xde5c4d9b orinoco_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x5ddd6d01 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x04a7b39f rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1090a66d rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2d5c6d2e rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3458732a rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x35a20ebe rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3b8ed306 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x41066eb0 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x46876823 rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x49228fb1 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5028e014 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x58717dbe _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5e8c5711 rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x62711901 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6bf0c88e _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7438f4a0 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x833ba93f rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x88c92463 rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8f2a16cf rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x901467c2 _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x916a3925 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x956d2df7 _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x959d1b31 rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x960f8584 _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa21f0e9a rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa623f2e4 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa8d2fad9 rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb2343430 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb7291485 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb89249f6 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb9d91bb7 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbe47e61f rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc5a4758d _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcaa7bfd9 rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcd42e409 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdbdef566 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdde28b39 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe2603ffe _rtl92c_store_pwrIndex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe520dd6d rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe6deed2e rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe8f5912a rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf6217074 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x19bfee92 rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x6c339d5b rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x9b822426 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xa25c0aff rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x61e55826 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x8dd26879 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xcaf6ab5f rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xf07b1f8d rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x07bbc015 rtl_wowlan_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x19b6a372 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b906bd5 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x208bbc11 rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2a9138c4 rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x34da1093 rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x34fd1895 rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x351d6f86 rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3dc8690f rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x537d6c3d rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7b271c59 rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x875b1d49 rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8cff6f6e rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9000a9d6 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9b277012 rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xae31f42f rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbba06d84 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc245da42 rtl_ps_set_rf_state -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc653fd55 rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcdc0b2e7 rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd0be5795 rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd9d7a1e5 rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe06c90d1 rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe5752524 efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xef22898f rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf0edff8b rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf6127b4a efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfe3f0d5e rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x00a6ea67 wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x69c7b087 wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xe2000a19 wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xf96a4518 wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x42451b1d fdp_nci_recv_frame -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x5c43bd40 fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xcfd34100 fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0xbbb35479 microread_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0xc7e86a0d microread_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x1287a566 nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x2451a5bf nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xadfb6840 nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x3ecf13fc pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x60069512 pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x4ba5c4ea s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x77c14c63 s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xb4bcaedb s3fwrn5_recv_frame -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x02a79762 ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x07dafdb8 st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x218286a0 ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2d1907a2 st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3c004dbf st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7a321590 st_nci_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x949064aa ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9e8f0ffb ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xcdf4630c ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe7f1e822 ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf2bcb1e8 st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x00af0b7a st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x269f7f64 st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3cad028b st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x461101fb st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x51bd41f6 st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5ebdf937 st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7873e46f st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7f590e6c st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x918160cd st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9441cc3a st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa90ee8ec st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb60a3421 st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb84b63ec st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb87632b0 st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbc0434c7 st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe4b47719 st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf4033040 st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf9a25836 st21nfca_dep_deinit -EXPORT_SYMBOL drivers/ntb/ntb 0x6c1c34f6 ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x7040b9af ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0x753d031f ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0x7b62362b __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0x8a636a23 ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0x9fdc7467 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0xe9dd8edb ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0xeebf2f57 ntb_clear_ctx -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xe38461f8 nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xebe268a0 nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x8ef3ba3b devm_nvmem_cell_put -EXPORT_SYMBOL drivers/parport/parport 0x000f1ec4 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x088b043a parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0x0bf42dc7 parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0x1e6146f7 parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x309cc8b4 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0x33be42fc parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0x3b7ec57b parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x51e2a1f5 parport_release -EXPORT_SYMBOL drivers/parport/parport 0x52ac58d8 parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0x55756a0f parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0x55f2277b parport_read -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x5fad7ab3 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0x65bc7e6c parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0x6609f978 parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x6fd3b1d1 parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0x7a976901 parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0x7ee19733 parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0x8274d6e5 parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0x8507bb5c parport_register_device -EXPORT_SYMBOL drivers/parport/parport 0x86e6ba74 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x95137cb8 parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0x9888e247 parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xa4cd6cc0 parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0xa623df91 parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0xa953634c parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0xb7fb0e71 parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0xba52c779 parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0xcc6e40ef parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xce633f27 parport_claim -EXPORT_SYMBOL drivers/parport/parport 0xcf0b4888 __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0xecab2141 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0xf9b99682 parport_write -EXPORT_SYMBOL drivers/parport/parport_pc 0x4be841f7 parport_pc_unregister_port -EXPORT_SYMBOL drivers/parport/parport_pc 0x60248099 parport_pc_probe_port -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x044df45b __pcmcia_request_exclusive_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x144e2119 pcmcia_register_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1eb1d76d pcmcia_request_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1fde5f3e pcmcia_write_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2de86974 pcmcia_fixup_iowidth -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x36687a35 pcmcia_loop_config -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4d2355fd pcmcia_fixup_vpp -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x69714001 pcmcia_dev_present -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7d2ff74b pcmcia_request_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7d31f18d pcmcia_release_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x80553afd pcmcia_get_mac_from_cis -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x81cab6ca pcmcia_disable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x83caee8e pcmcia_request_io -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8576a3cc pcmcia_get_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x87815ba5 pcmcia_read_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc78597ad pcmcia_loop_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd71f0056 pcmcia_enable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf04ebac3 pcmcia_unregister_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf5549ab1 pcmcia_map_mem_page -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x025df2b5 pcmcia_socket_list_rwsem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x4a6cef34 pcmcia_reset_card -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x678e3744 pcmcia_unregister_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x6cc2b459 pcmcia_parse_events -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x6f80bf4e pcmcia_parse_uevents -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x9d54e29f pcmcia_socket_class -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x9e04a2e6 pccard_register_pcmcia -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xc91113eb pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe56e21aa pcmcia_get_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xee0d7adb pcmcia_put_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xfb23d2a4 pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x3fb4a1d1 pccard_static_ops -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xc3d052b9 pccard_nonstatic_ops -EXPORT_SYMBOL drivers/pps/pps_core 0x0169e976 pps_lookup_dev -EXPORT_SYMBOL drivers/pps/pps_core 0x5161eae0 pps_unregister_source -EXPORT_SYMBOL drivers/pps/pps_core 0xacab120a pps_register_source -EXPORT_SYMBOL drivers/pps/pps_core 0xeb9b73b5 pps_event -EXPORT_SYMBOL drivers/ptp/ptp 0x0450a89d ptp_clock_unregister -EXPORT_SYMBOL drivers/ptp/ptp 0x4934c587 ptp_clock_event -EXPORT_SYMBOL drivers/ptp/ptp 0x5fcb997b ptp_clock_index -EXPORT_SYMBOL drivers/ptp/ptp 0x981ffbc1 ptp_find_pin -EXPORT_SYMBOL drivers/ptp/ptp 0xbfe86ee3 ptp_clock_register -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x216905bc rproc_get_by_phandle -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x21c3986e rproc_vq_interrupt -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x347d60a3 rproc_report_crash -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x50b937ed rproc_add -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x6cb91e80 rproc_da_to_va -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xb0919043 rproc_put -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xc184c8f9 rproc_del -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xcc10ee9d rproc_shutdown -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xe0a4f0ba rproc_alloc -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xf72413e5 rproc_boot -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xe0c9c767 ds1685_rtc_poweroff -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x79a05ad0 scsi_esp_template -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x97793e23 scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x997e42c4 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x99ca18f1 scsi_esp_register -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0bcef96c fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x14f1fb79 fcoe_ctlr_destroy_store -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2b48133d fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x76c7114e fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x79acf71c fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x988dd705 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9ee890c0 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa2359ebb fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa976aff2 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb6a97b24 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfbd652dd fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfd183f94 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0beac291 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x14639686 fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22ce1233 fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27f1fc0a fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x28b5e62d fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2fc2ea54 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x34b1acb6 fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4072d5fe fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x488c4309 fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x48a262d5 fc_rport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4dcdad40 fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5174d815 fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5e545b43 libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5fbe43bc fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6dc83bdc _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x72184de1 fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7320e53c fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x78408fbe fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7cb9ffc0 fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ce48ac9 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x83b9911b fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8669013f fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x88a76144 fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x89a33c83 fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8f6a8c10 fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x98c191cf fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9c5fdbc8 fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa219001b fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa9232f89 fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa9f3c80d fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xacacd617 fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xad9563a1 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb1f0fb8b fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb42d5e61 fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb62b59c3 fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc0eea8d5 fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc583e5b6 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd35749ab fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd466cbda fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd7cc1503 fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xde9b0539 fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe9dbb638 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xedbc604f fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0b4dae9 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf196db21 fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf1ce4686 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf3aad196 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf6d2557b fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfc225d49 fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfd7f87d8 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x0c1a283f sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x76c597e2 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x9fbfa1b1 sas_wait_eh -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xb641e035 sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xb48fc63d mraid_mm_register_adp -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x073dd6b6 osd_execute_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x08620af1 osd_finalize_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x17d1e8a2 osd_req_read -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1b886a3f osd_req_write_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x22879d3c osd_req_list_collection_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x230d2d5b osd_req_get_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2c268ddf osd_start_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x34ca0a45 osd_req_remove_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x376295ea osd_req_flush_collection -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3bb4c643 osd_req_set_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3de72c07 osd_req_add_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x435f27bb osd_req_flush_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4af6c70f osd_req_remove_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x506a0237 osd_req_list_partition_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5093c129 osd_req_list_dev_partitions -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x51b14e20 osd_req_add_set_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x563df71a osd_req_add_get_attr_page -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x57097c96 osd_req_read_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5c6e6558 osd_req_flush_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x68764711 osd_req_create_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6d709f78 osd_req_format -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x73348402 osd_dev_fini -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x76c5b956 osd_req_read_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x792603b1 osd_auto_detect_ver -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x79ef967f osd_req_list_partition_collections -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x988ef4e5 osd_req_decode_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa893db01 osd_execute_request_async -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xaba80371 osd_req_write -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xad2eaaff osd_req_create_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb80fd754 osd_req_flush_obsd -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd221ac12 osd_end_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd36f3ca2 osd_req_read_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd983230c osd_req_write_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xefe7b451 osd_req_decode_sense_full -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf062fc8a osd_dev_init -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf1a73ac5 osd_req_write_kern -EXPORT_SYMBOL drivers/scsi/osd/osd 0x323e333e osduld_put_device -EXPORT_SYMBOL drivers/scsi/osd/osd 0x536e6f42 osduld_info_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0x8edc6e3f osduld_device_same -EXPORT_SYMBOL drivers/scsi/osd/osd 0x937f8436 osduld_register_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0xa44197c5 osduld_device_info -EXPORT_SYMBOL drivers/scsi/osd/osd 0xaec95e53 osduld_path_lookup -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x24948ef2 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x38e64d3e qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3c4290eb qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3d5b3086 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x588b6a65 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7580a3bd qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x77d8d3aa qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9286b3b9 qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb40bedd9 qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb40df7ab qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc6599424 qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe9057378 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x5367aa69 qlogicfas408_disable_ints -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x61bde6bf qlogicfas408_abort -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x8f385c1e qlogicfas408_bus_reset -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x9166f146 qlogicfas408_info -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe868907c qlogicfas408_biosparam -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe87103ad qlogicfas408_queuecommand -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup -EXPORT_SYMBOL drivers/scsi/raid_class 0x0c7c59d5 raid_class_attach -EXPORT_SYMBOL drivers/scsi/raid_class 0x8d1de94c raid_component_add -EXPORT_SYMBOL drivers/scsi/raid_class 0xda58e393 raid_class_release -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0dc41c26 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x14c00709 fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x16709e90 fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5f9a0e98 fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7817cd3a fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x797731d4 fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x95418006 fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9de4d7fa fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xaa844e5f scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb2264436 fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbd1d6534 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd0b0d68e fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf1df28ec scsi_is_fc_vport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x07963a96 sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0b49a8bb sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x156876e3 sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2ac9d027 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x327cde77 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x37313070 sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3d5ab7cc scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x40419a6d sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x593cb543 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5aadecb3 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5f852973 sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7aafa462 scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7ad257c2 sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7c9fa818 sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x81e0e273 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x95fd7038 scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9655fcb9 sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9730cc54 sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9928510f sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9c4e22ea sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaa134fcf sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xac8c6339 sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb802c028 sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbd0e8d8e sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc90ccdd5 sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf0af370d sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf100dfb0 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf574565b sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x0a572cdd spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x88f532f6 spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xabdc7323 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xf16e39b5 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xf8bbb073 spi_release_transport -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x0b77a36f ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x508640f2 ufshcd_runtime_idle -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x6cc89206 ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x86a6a595 ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xae0e5f84 ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xbdd1eeec ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xdfe1ac1e ufshcd_runtime_resume -EXPORT_SYMBOL drivers/ssb/ssb 0x082c191b ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0x20261201 ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0x22be9c2e ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x2e0556cc ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0x3acbc437 ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x4a2f04e3 ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x53b6da5e ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x752594e8 ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0x7e1887cd ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0x82d34178 ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x8f4dca72 ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x93f41c11 ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0x942d618d ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0xa28936b3 ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0xa332f8fb __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xd0e70fc5 ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xec1cf412 ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0xf057ed63 ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0xf8acff91 ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0xfca7e961 ssb_bus_resume -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x034b79fb fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x083d3522 fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x091d7d5f fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0e6d8226 fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x10d706f6 fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2016a795 fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x21607b8c fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2560d698 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2dd4c90c fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x33fe9597 fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3d15b796 fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4476150e fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5e28c518 fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x66b80b30 fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x70978cce fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7711675a fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb50de60a fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc01c46ad fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc96a1aba fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcd22de49 fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd13e9ebc fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe3379b75 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe95add46 fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf4bb71f0 fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x46e15f39 fwtty_port_put -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xcc182b0a fwtty_port_get -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x56b25a4a adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x4dcc6f2c hmc5843_common_resume -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x686c7d4e hmc5843_common_probe -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xb341805b hmc5843_common_suspend -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xbb915e30 hmc5843_common_remove -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x4357a782 ade7854_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xa7fc0189 ade7854_remove -EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0xaf83bbd3 cxd2099_attach -EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0xb9d8159b most_deliver_netinfo -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x06e801ed rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x08133ac0 free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0c692830 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0cd0140e RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1dab57ce rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1f132e2e rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x28886e8a rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2c31fd5b rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2cdc736e rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3011493d rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x37d34f75 rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4333ff5c rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4d5371ab rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x53c43bae rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5a1bccd8 rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5bfe7ddf rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6644f1e4 rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x67cd3536 rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6e4d5e44 rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6fbc7d18 rtllib_wpa_supplicant_ioctl -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x803c032b rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x85cf08ae rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8c340be9 alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8c860d63 rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8d5746ab rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9b849921 rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9c89da44 rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa10149ae rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa19fb965 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa2551060 rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa430b957 rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa8b9653e rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xac9dd5f4 rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaced78da rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xadba15bf rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb15bc4d6 Dot11d_Channelmap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc04537de HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc772e116 rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcaee7d4c rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcfdf8db5 rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd175d470 rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd7808494 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe287793c rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe3d579df rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe622192b rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xedcaf450 rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xef0f65a0 rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xef4be567 dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf50e535e notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf547091e rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x06710217 ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x08aef003 Dot11d_Reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0ae6b1ad ToLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0d17578c ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f099f61 ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x107dc86f ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x17211686 ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2459830e ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x24d9187d Dot11d_UpdateCountryIe -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x253d46e9 ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2a0c763e ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2be3de42 ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2c4506b5 ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x314987e7 ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x37a1a544 ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x38741227 ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x39656654 ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x40ca48da ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x45a14812 ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x45d7057d ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x46ff4a6b ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x47adb272 ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4ec5ef03 ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x53000f27 ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x55e4fa5d ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x591dcf07 ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x614369cc SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61ea895d ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x66effe66 ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x69deceb1 ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x79491ef4 ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x91819f97 ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x938e419a ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x93a5a4d5 HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x94db0b39 ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9ed35342 Dot11d_Init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9fd7ba2f ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa2bdb7ca ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaa0e3c2c DOT11D_ScanComplete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb32dd248 ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb9c0293d ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc2c71495 ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc37a2cb1 ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc4846534 ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf27d3ec notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd2595c41 ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xda90c652 ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdd289030 ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xde1888a9 DOT11D_GetMaxTxPwrInDbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdfbaebec IsLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe851ea4f ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xea616448 ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf0ff6ac7 ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf83d4b9d ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfcfc571a ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0b17bcfb iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0eeaa3c2 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x13bbbe22 iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x172c356f iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1b83be1e iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2410e7ec iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2dd3e03f iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x30f19a8e iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x38a5601b iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x460e4239 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4e6ead52 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x595d9f6e iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x62d83e0e iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x66287239 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6a4261c3 iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6e2f59f2 iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7c760d33 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8a91593d iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x977e68a3 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa70f6af4 iscsit_set_unsoliticed_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbddce0fb iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc238123c iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd7e4248b iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe302d030 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe755faea iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe7e60233 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe9ec3f2b iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf69e63b0 iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0590e9ad target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x064939e7 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x06c21969 core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0x07284603 core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x0845518f target_setup_cmd_from_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x098c54d2 sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0x09a8ec72 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x0f599c67 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x110c7c73 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0x16b29138 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x1c80d8a6 target_put_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x1e3cd3dc core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x274235ea target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x2d9e99da transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x2ffa648a transport_init_se_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x338ae9d2 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0x3802011e target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x3f47f560 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x4299c577 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x4311d641 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x46b06061 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x481de4a5 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x4c2224a4 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x4d1e6d5e target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x50698091 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0x5351f490 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x5c25cd8a target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x5ebbe3c9 target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x62bc433f sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x7c43e014 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x7c570d70 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x7df8adb8 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x7e33bc45 target_sess_cmd_list_set_waiting -EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x85d0a3c8 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x8629d7f2 target_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x8a80ef2c target_submit_cmd_map_sgls -EXPORT_SYMBOL drivers/target/target_core_mod 0x8c19ebb9 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x8ea1da17 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x914b0930 target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x97d83b43 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x9969438c target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x9b6c938d target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x9bcc4778 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0xa1d06d1c target_get_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xa4c86956 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xadd7ecdc core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xb7363976 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xb99f6ae7 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xba15134c target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xbb457022 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xbc65d48d target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xbe3b5999 transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xc1ae1303 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xc2da6521 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xc567fc6c transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0xcd8dad30 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0xd4e7a8e2 transport_init_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0xd5384a38 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xd5b8bf4f target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xdf06a737 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0xe1cb1fa7 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0xe41cc6ea target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xe7797c86 transport_check_aborted_status -EXPORT_SYMBOL drivers/target/target_core_mod 0xec8f2f10 target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf2d90e6a spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0xf2f2fa7c transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xf4875d71 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xf89b4647 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0xfadc7fc8 transport_generic_new_cmd -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x1de7cabe usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xa8569b4e usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xc11c7830 sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1f235861 usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x47568217 usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5ea7acd6 usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x612fc17b usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x662f53f4 usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x743d1f21 usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x795780d5 usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8b24c74e usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x90e7f106 usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9224013d usb_wwan_ioctl -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x992fbfcc usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf2ece7a9 usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x1d1ef0a0 usb_serial_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xf5340ba1 usb_serial_resume -EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user -EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user -EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user -EXPORT_SYMBOL drivers/vhost/vringh 0x3c71c418 vringh_getdesc_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user -EXPORT_SYMBOL drivers/vhost/vringh 0x5fedea44 vringh_getdesc_user -EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user -EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user -EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user -EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern -EXPORT_SYMBOL drivers/video/backlight/lcd 0xc9d0e50b devm_lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xdd778977 lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xf37d7384 lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xfa06e081 devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1da01c1c svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4e262489 svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x51cb7918 svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x990fc79b svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xae0d72c7 svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc07dd28a svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf46c1042 svga_tilecopy -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x193f436a cyber2000fb_attach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x9dbf6f28 matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xb6de3389 g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xf0dd891a matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x0a59f366 DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x17c17493 DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x30924415 matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xaf8d9b32 matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xd9719f71 matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x60dc7ecf matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x0b671233 matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x617c1cc2 matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xd17a172c matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xe830932a matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x41a7799d matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xeb0fdbd5 matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x1127f94b matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x522cf192 matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x53f92f59 matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xb852ac74 matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xe7cb62ba matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0xe51bc711 mb862xxfb_init_accel -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free -EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga -EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x2c2b6dac w1_ds2760_recall_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x4396a8d6 w1_ds2760_read -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x6b8d995d w1_ds2760_store_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xd1059231 w1_ds2760_write -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x65014bd7 w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xe1753dbc w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xada7fe73 w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xd0e52d22 w1_ds2781_io -EXPORT_SYMBOL drivers/w1/wire 0x01619f7e w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0x4d6bcba0 w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0x79e91586 w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0xa9441839 w1_add_master_device -EXPORT_SYMBOL fs/configfs/configfs 0x1c7ea6f7 configfs_register_group -EXPORT_SYMBOL fs/configfs/configfs 0x1f87ac90 config_item_put -EXPORT_SYMBOL fs/configfs/configfs 0x2794e904 configfs_unregister_default_group -EXPORT_SYMBOL fs/configfs/configfs 0x2a8005c0 config_item_set_name -EXPORT_SYMBOL fs/configfs/configfs 0x3964859c configfs_unregister_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0x4e691848 config_item_get -EXPORT_SYMBOL fs/configfs/configfs 0x534dbdb8 configfs_register_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0x53b83908 config_item_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0x5f96c284 config_group_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0x6cfd59d2 config_group_init -EXPORT_SYMBOL fs/configfs/configfs 0x7fc0b011 configfs_depend_item -EXPORT_SYMBOL fs/configfs/configfs 0x934fb1e9 config_group_find_item -EXPORT_SYMBOL fs/configfs/configfs 0xb1b6cab7 configfs_unregister_group -EXPORT_SYMBOL fs/configfs/configfs 0xd0211639 configfs_register_default_group -EXPORT_SYMBOL fs/configfs/configfs 0xe87ed15d configfs_undepend_item -EXPORT_SYMBOL fs/exofs/libore 0x159aa7e2 ore_check_io -EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout -EXPORT_SYMBOL fs/exofs/libore 0x42a0d775 extract_attr_from_ios -EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info -EXPORT_SYMBOL fs/exofs/libore 0x711fc750 ore_read -EXPORT_SYMBOL fs/exofs/libore 0x9dca7f8c ore_write -EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length -EXPORT_SYMBOL fs/exofs/libore 0xb503b310 ore_remove -EXPORT_SYMBOL fs/exofs/libore 0xc0b619f6 ore_get_io_state -EXPORT_SYMBOL fs/exofs/libore 0xd82196a7 ore_put_io_state -EXPORT_SYMBOL fs/exofs/libore 0xd93452c6 ore_get_rw_state -EXPORT_SYMBOL fs/exofs/libore 0xf470ea6d ore_create -EXPORT_SYMBOL fs/exofs/libore 0xf7a10800 ore_truncate -EXPORT_SYMBOL fs/fscache/fscache 0x029f614f fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0x04b73cac __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x0e6ff11b fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0x0fc5fbaf __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0x27257209 fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0x291bc682 fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0x2f0b8982 __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0x4096c5b7 fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0x47271998 fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0x4a0e9a13 fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0x4ad7a1f4 fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0x4c316078 __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x53c93b34 fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0x54d982e7 fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0x5d2af269 fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0x63aae1aa __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x6438a7cd __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x66f86678 fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0x70c78fa7 __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0x72453d95 fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x858b1717 fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0x8931b1d8 __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0x92c63af2 __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x9513a22c __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x971d88e0 __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xa3019561 __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0xaf40ffbb __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0xb056c584 __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xb6fb99c3 __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0xc1256f22 __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xcd01cbe7 fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0xdadb6805 __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0xdb8943a8 __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0xdb8e41a0 fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0xde319b10 fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0xe0610e77 __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0xe750d918 __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xedafd230 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0xf5b0d111 __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xff20e672 fscache_obtained_object -EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x11dc5fdf qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x3a4149ab qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x3c9f3418 qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x97f34263 qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xb955b346 qtree_entry_unused -EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq -EXPORT_SYMBOL lib/crc-ccitt 0x1a703ba1 crc_ccitt -EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table -EXPORT_SYMBOL lib/crc-itu-t 0x6d356209 crc_itu_t -EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table -EXPORT_SYMBOL lib/crc7 0x56329ecc crc7_be -EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table -EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb -EXPORT_SYMBOL lib/crc8 0xd09b2cba crc8 -EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb -EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c -EXPORT_SYMBOL lib/lru_cache 0x054d990b lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy -EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get -EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed -EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of -EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset -EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used -EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del -EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get -EXPORT_SYMBOL lib/lru_cache 0x98e1c741 lc_seq_dump_details -EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create -EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock -EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set -EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find -EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put -EXPORT_SYMBOL lib/lz4/lz4_compress 0x0c222eb5 lz4_compress -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x682a23e0 lz4hc_compress -EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul -EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp -EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv -EXPORT_SYMBOL lib/raid6/raid6_pq 0x7456cc61 raid6_empty_zero_page -EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi -EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul -EXPORT_SYMBOL net/6lowpan/6lowpan 0x2dc89e9c lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0x3ef3e2eb lowpan_netdev_setup -EXPORT_SYMBOL net/6lowpan/6lowpan 0xeb919c8b lowpan_nhc_add -EXPORT_SYMBOL net/802/p8022 0x53d4e5b4 register_8022_client -EXPORT_SYMBOL net/802/p8022 0x8833a994 unregister_8022_client -EXPORT_SYMBOL net/802/p8023 0x2f83a885 make_8023_client -EXPORT_SYMBOL net/802/p8023 0x78b9d5dc destroy_8023_client -EXPORT_SYMBOL net/802/psnap 0x3746e726 register_snap_client -EXPORT_SYMBOL net/802/psnap 0x56390f0a unregister_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x046c2437 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x09ad98c8 p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get -EXPORT_SYMBOL net/9p/9pnet 0x3aeaa2d6 p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0x46cab197 p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x473cdcc2 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x481f85aa v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0x4c3e5322 p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x50d64546 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x53d58a07 p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x55a59a0b p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0x59dc6756 p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x6028a664 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x65e86c32 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0x66eb2a16 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0x6875a0a6 p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x6b7926eb p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x6d8db948 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x75567c44 p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x7cb7bb60 p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0x7dc2882f p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0x7de4d99d v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0x835f7e47 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x860c2dc9 p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0x87f73ff5 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0x8d3d9d69 p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x8f337690 p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0x9076721c p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x938c46e1 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x99cbf5f5 p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0xa4809181 p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0xc1e71094 p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0xc1f4726f p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy -EXPORT_SYMBOL net/9p/9pnet 0xcb0a7734 p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0xd2dd4362 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0xd72b471e p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0xdb59dfdf p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xe83169cf p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0xeb3d7ac1 p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0xed120077 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0xf2d13f0b p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create -EXPORT_SYMBOL net/9p/9pnet 0xf4bdd364 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put -EXPORT_SYMBOL net/9p/9pnet 0xfac085fd v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check -EXPORT_SYMBOL net/appletalk/appletalk 0x2bbfbdad aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0x39d25a8d alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0x700c1033 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0xc2ef1cf6 atrtr_get_dev -EXPORT_SYMBOL net/atm/atm 0x0a37c71a atm_charge -EXPORT_SYMBOL net/atm/atm 0x0e60179f atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0x1c0124b1 atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0x23e9e170 vcc_release_async -EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x2deb8e31 deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x311c4d75 atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0x3d00d370 register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x45401a87 atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0x47d26129 atm_dev_register -EXPORT_SYMBOL net/atm/atm 0x50c18f48 atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0x53a4d540 atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xca87b453 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0xe4eba55c vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0xe87db26c vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/ax25/ax25 0x03c279b4 ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0x0b01eae5 ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x4c14d738 ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x58a94543 ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x5c205741 ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0x611a002f ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0x92fff197 ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xf97e35bd ax25_listen_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x020c1611 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x02f9feb2 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0x03857db8 hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0a12bcb5 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0a60dee9 l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0a9362a9 l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0ded2435 __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0f28dfcf __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x123c0574 bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x19797c9f bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0x19969d41 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1d68c967 hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2040ef4f bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2459d55c hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x26b4b273 hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3e855ec4 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3f16f1b7 hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0x40aa8d25 hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4c925de3 hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4e24b443 bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x50d88074 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0x567acf58 l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5a7f6aa6 hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x684790a7 bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7244314b hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x873e8d0f hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0x87708a34 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0x87a394b0 bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno -EXPORT_SYMBOL net/bluetooth/bluetooth 0x94137366 hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x96fac5c8 bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa15dd2fe hci_alloc_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa7746cab l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb307701b hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb55d2815 bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb589a78b bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0xba04248a hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc7c58034 hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7c4bd47 bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0xddab8042 bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe5f5d48d bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe8757e33 hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn -EXPORT_SYMBOL net/bridge/bridge 0xe4c38c49 br_should_route_hook -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x28c286b7 ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x31ad8f45 ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x81740ac3 ebt_unregister_table -EXPORT_SYMBOL net/caif/caif 0x12085eeb caif_connect_client -EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative -EXPORT_SYMBOL net/caif/caif 0x2f95883e caif_disconnect_client -EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info -EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer -EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x5f5e2cff get_cfcnfg -EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head -EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head -EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio -EXPORT_SYMBOL net/caif/caif 0xa5058f73 caif_enroll_dev -EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xe4c1490c cfcnfg_add_phy_layer -EXPORT_SYMBOL net/can/can 0x0584b694 can_proto_register -EXPORT_SYMBOL net/can/can 0x0aa4b930 can_ioctl -EXPORT_SYMBOL net/can/can 0x540363a8 can_rx_register -EXPORT_SYMBOL net/can/can 0xa3a8d1cb can_proto_unregister -EXPORT_SYMBOL net/can/can 0xc25bf280 can_send -EXPORT_SYMBOL net/can/can 0xdf095e9f can_rx_unregister -EXPORT_SYMBOL net/ceph/libceph 0x02a1c265 ceph_messenger_init -EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init -EXPORT_SYMBOL net/ceph/libceph 0x0c8fa2bb ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x1056b125 osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x11fe66c5 ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0x1200d018 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0x16ccfce5 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0x181bfb47 ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x1bd5e01f ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x1e2d1efa ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup -EXPORT_SYMBOL net/ceph/libceph 0x21c60751 ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x23ed1d46 ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0x24d897df ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x2be5ae5d ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0x2f8f52eb osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x3248f5f9 osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0x332a4126 ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0x33c7001f ceph_get_direct_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x39c8a1a5 ceph_monc_do_get_version -EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x3ccde132 ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x400f8ca0 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options -EXPORT_SYMBOL net/ceph/libceph 0x419cb09b ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part -EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0x4650f39f ceph_monc_got_mdsmap -EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x530f27ab ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode -EXPORT_SYMBOL net/ceph/libceph 0x5384b04e ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x5639f6f6 ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x570d61ce ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x59b43acf ceph_client_id -EXPORT_SYMBOL net/ceph/libceph 0x5b87b166 ceph_osdc_writepages -EXPORT_SYMBOL net/ceph/libceph 0x5c2f0ecc ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0x60a5c32a ceph_osdc_put_event -EXPORT_SYMBOL net/ceph/libceph 0x62be9e1d ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x6b80a45c ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0x6cf20ec2 ceph_oloc_oid_to_pg -EXPORT_SYMBOL net/ceph/libceph 0x6fcdafef ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0x721c1da1 ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x729d199e ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x77bf4c2e osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x787c4faa ceph_monc_request_next_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x7a5d0ab7 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x7c5b7110 ceph_osdc_build_request -EXPORT_SYMBOL net/ceph/libceph 0x7d692eae osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x7e89f7ff ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x7f3d05d6 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x8088dfc2 ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x819d12bc ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x8394cba1 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x8b1e3af8 osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x8ff62bb3 ceph_messenger_fini -EXPORT_SYMBOL net/ceph/libceph 0x9309f6fc ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x9436e206 osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0x9452481f osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x9580f854 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x97230aa6 osd_req_op_watch_init -EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup -EXPORT_SYMBOL net/ceph/libceph 0x9af1c9d5 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0x9b031f3d ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x9b696c6c osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x9d194db0 ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xa758f1b1 ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0xade8c99c ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb17cbc73 ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit -EXPORT_SYMBOL net/ceph/libceph 0xbaa2ca6e osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0xbb842b00 ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0xbbf3dff9 osd_req_op_cls_response_data -EXPORT_SYMBOL net/ceph/libceph 0xbda16f42 ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0xc0ff53c1 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0xc1163f1a ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0xc411fa3b ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup -EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0xc97b398e osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init -EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips -EXPORT_SYMBOL net/ceph/libceph 0xccf813c1 ceph_osdc_cancel_event -EXPORT_SYMBOL net/ceph/libceph 0xce3106a2 ceph_auth_create_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xd0b18391 ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode -EXPORT_SYMBOL net/ceph/libceph 0xd7acd83f ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xdbeb07cc ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0xdc54a8ec ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0xdd774566 ceph_calc_pg_primary -EXPORT_SYMBOL net/ceph/libceph 0xe0c10c85 ceph_osdc_create_event -EXPORT_SYMBOL net/ceph/libceph 0xe1d4b64e ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0xe29aaf17 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0xe3b042ca ceph_pagelist_append -EXPORT_SYMBOL net/ceph/libceph 0xe9893f2e ceph_osdc_readpages -EXPORT_SYMBOL net/ceph/libceph 0xec2c82e3 __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0xecf4d101 ceph_osdc_set_request_linger -EXPORT_SYMBOL net/ceph/libceph 0xf33771cf ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xf35cb4d9 ceph_pagelist_reserve -EXPORT_SYMBOL net/ceph/libceph 0xf61aa6dc ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0xf65bec4c ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0xfbf7cd71 ceph_auth_update_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xfce81c9d osd_req_op_cls_init -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x55e1ee83 dccp_req_err -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x621ba75b dccp_syn_ack_timeout -EXPORT_SYMBOL net/ieee802154/ieee802154 0x0dff076a wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0x34930c83 wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0x4ea0b79b wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0x68692e16 wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0x863e6a01 wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0xd55abdc8 wpan_phy_find -EXPORT_SYMBOL net/ipv4/fou 0x3106aeb4 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x6b946eec fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0x96af8691 gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0xd0750778 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x017d7967 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x354e06c3 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x3e639b6c ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x5dec92f3 ip_tunnel_encap -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x8b16d73b ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x9483e9f3 ip_tunnel_dst_reset_all -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x809cfb79 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xe7fc0898 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xf21e03eb arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x455fef79 ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x6d16d0e2 ipt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x727b4252 ipt_register_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x4f50a8e6 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0x73755322 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/udp_tunnel 0xa3642e1c udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x03b7090f ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x07e8f004 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xcad7eae9 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf51c76ae ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x6053e0d7 ip6t_unregister_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x8fbf4257 ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xb81eca85 ip6t_register_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x58de37d9 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/tunnel6 0x83116fe9 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xc9b02129 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xe342ff1e xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x2f6d0d6e ircomm_close -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x66fd7ea1 ircomm_connect_response -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x94cf4710 ircomm_data_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xa207fa9a ircomm_open -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xa247b278 ircomm_connect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xacaaeae1 ircomm_control_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xddf2e0c4 ircomm_disconnect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xea80cfc9 ircomm_flow_request -EXPORT_SYMBOL net/irda/irda 0x0064e0ea hashbin_get_first -EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value -EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service -EXPORT_SYMBOL net/irda/irda 0x10a65882 irttp_flow_request -EXPORT_SYMBOL net/irda/irda 0x1bdfd039 iriap_open -EXPORT_SYMBOL net/irda/irda 0x1e6cade0 irias_add_integer_attrib -EXPORT_SYMBOL net/irda/irda 0x1f77d071 irlap_close -EXPORT_SYMBOL net/irda/irda 0x2f2d333b irlmp_close_lsap -EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda -EXPORT_SYMBOL net/irda/irda 0x3e56064f hashbin_new -EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value -EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service -EXPORT_SYMBOL net/irda/irda 0x4bbf6f8b async_unwrap_char -EXPORT_SYMBOL net/irda/irda 0x59c4cc07 iriap_close -EXPORT_SYMBOL net/irda/irda 0x5cfec76c irda_device_set_media_busy -EXPORT_SYMBOL net/irda/irda 0x5e67df08 irttp_connect_request -EXPORT_SYMBOL net/irda/irda 0x601bda46 hashbin_remove -EXPORT_SYMBOL net/irda/irda 0x66bdefe0 irlmp_data_request -EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies -EXPORT_SYMBOL net/irda/irda 0x6b5fbcef hashbin_get_next -EXPORT_SYMBOL net/irda/irda 0x6e0ab3c7 irias_add_string_attrib -EXPORT_SYMBOL net/irda/irda 0x6f080dde async_wrap_skb -EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client -EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client -EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client -EXPORT_SYMBOL net/irda/irda 0x79efa80d irlmp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert -EXPORT_SYMBOL net/irda/irda 0x85d88217 irias_delete_object -EXPORT_SYMBOL net/irda/irda 0x8bd96457 irttp_connect_response -EXPORT_SYMBOL net/irda/irda 0x8c729b13 irttp_dup -EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack -EXPORT_SYMBOL net/irda/irda 0x91d0003a irttp_udata_request -EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all -EXPORT_SYMBOL net/irda/irda 0x9cd02fa6 irda_notify_init -EXPORT_SYMBOL net/irda/irda 0xa1d41e58 hashbin_delete -EXPORT_SYMBOL net/irda/irda 0xaa557515 irias_new_object -EXPORT_SYMBOL net/irda/irda 0xad9d4678 irttp_data_request -EXPORT_SYMBOL net/irda/irda 0xb7f094c9 irlap_open -EXPORT_SYMBOL net/irda/irda 0xb8259fd2 alloc_irdadev -EXPORT_SYMBOL net/irda/irda 0xb8eb34f9 iriap_getvaluebyclass_request -EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value -EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute -EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request -EXPORT_SYMBOL net/irda/irda 0xc46401bf irlmp_open_lsap -EXPORT_SYMBOL net/irda/irda 0xc68e43be irias_add_octseq_attrib -EXPORT_SYMBOL net/irda/irda 0xc9b59f22 irttp_close_tsap -EXPORT_SYMBOL net/irda/irda 0xcead7dbb hashbin_find -EXPORT_SYMBOL net/irda/irda 0xd2108314 hashbin_insert -EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma -EXPORT_SYMBOL net/irda/irda 0xd78b1f56 irlmp_connect_request -EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint -EXPORT_SYMBOL net/irda/irda 0xdedfc698 irttp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0xe3463529 hashbin_lock_find -EXPORT_SYMBOL net/irda/irda 0xe3bde43e irias_insert_object -EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries -EXPORT_SYMBOL net/irda/irda 0xf0a694a1 irias_find_object -EXPORT_SYMBOL net/irda/irda 0xf5876b95 hashbin_remove_this -EXPORT_SYMBOL net/irda/irda 0xf5e9efd1 irttp_open_tsap -EXPORT_SYMBOL net/irda/irda 0xfb97d3a7 irlmp_connect_response -EXPORT_SYMBOL net/l2tp/l2tp_core 0x6fb6373b l2tp_recv_common -EXPORT_SYMBOL net/l2tp/l2tp_ip 0x954a985d l2tp_ioctl -EXPORT_SYMBOL net/lapb/lapb 0x220164a0 lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0x238e49c3 lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0x6e62f5d5 lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0xa4de2455 lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0xc21e9e61 lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0xd3f2bbed lapb_register -EXPORT_SYMBOL net/lapb/lapb 0xd9b7f90d lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0xdbd6336c lapb_getparms -EXPORT_SYMBOL net/llc/llc 0x0ca8074e llc_sap_open -EXPORT_SYMBOL net/llc/llc 0x1cef461c llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0x2fe880fa llc_sap_find -EXPORT_SYMBOL net/llc/llc 0x3630e901 llc_sap_close -EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x720f97d2 llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0xab925384 llc_add_pack -EXPORT_SYMBOL net/llc/llc 0xcb236d3e llc_set_station_handler -EXPORT_SYMBOL net/mac80211/mac80211 0x0112e666 ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0x057b8f5b ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0x08954777 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x0b4c1ac8 ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0x0bd609f2 ieee80211_get_key_tx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x0c5cbe1e ieee80211_start_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x126e1895 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x19809d18 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0x1d139572 rate_control_send_low -EXPORT_SYMBOL net/mac80211/mac80211 0x1d745354 ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0x1f030e70 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0x206f01a8 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x2103f40e ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x2554eea6 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x25d7cbfd ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x2aa29ddb ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x2d950be7 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x2e56531b ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x2ee6cfe1 ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x30910c60 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0x30c829cf ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x31780b24 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x32ea4e3f ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x3658bb54 ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0x36a1d7fb ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x3a680a3e ieee80211_stop_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x3acb7025 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x3c0a39f5 ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x419c0202 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x48dcaa01 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x4c2b011a ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x4ca1265d ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x4e7771d2 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x53a6b25d ieee80211_csa_update_counter -EXPORT_SYMBOL net/mac80211/mac80211 0x554b6cb3 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0x55f97e4f ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x5e7c2844 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x60afd7d4 ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x60c6a8fd rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x60fdf779 ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x6751b363 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x71dafc04 ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0x7500c759 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x767a5899 ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x7de819fe ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0x7dea06fd ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x7fefbfa6 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x8261f867 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x8e41123c ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x98ca0d42 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xa0835c75 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xa23bd407 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0xa38ea176 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0xa79e6e70 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xafcd39f9 ieee80211_tx_status_noskb -EXPORT_SYMBOL net/mac80211/mac80211 0xb25e1302 __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xb2ca95a8 ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0xb5c16543 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xb82f3e38 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0xb9be5268 ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0xc04e91be ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0xc16c3fb3 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xc4dca560 ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0xc5ae131e ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0xc6dd8ef2 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0xcae644e2 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0xcb1f6086 ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0xcb4dc9cb ieee80211_csa_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0xcbdee480 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xcde236ec ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0xcfeefbea ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0xd279f69a wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xd36547e9 ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xd64fb5c3 ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0xd7621368 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xe19f842d ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xe62acf87 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0xe6a69857 ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0xe7816558 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xf41dfe47 ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xf69c77b7 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0xf8753701 ieee80211_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x04525b67 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x40866c73 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0x931ce6a3 ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x97c45288 ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0xa2fd0947 ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0xd82d684d ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xf6837712 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xfea70d58 ieee802154_alloc_hw -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x08836b1c ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x117aaee1 ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1d5f704d register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x49cd9c36 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x66fc0b65 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x70833e50 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x83c1f036 register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa916e25e unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc865e234 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd4bb4f9e ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xee7e372d ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xef5594cf ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf6f0f7eb register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf94b99dc ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x6819efaa __nf_ct_ext_add_length -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x7e4f1e30 __nf_ct_ext_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xc3919103 nf_conntrack_untracked -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x26b948f2 nf_xfrm_me_harder -EXPORT_SYMBOL net/netfilter/nf_nat 0x9c69be28 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xa20f4416 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0xba2c8438 nf_nat_used_tuple -EXPORT_SYMBOL net/netfilter/nf_nat 0xf49fefd6 __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xffff76d9 nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/x_tables 0x1597cc7d xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x253e8b44 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x2737191c xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0x2a4daa13 xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x7cc06631 xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xa4e41ece xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0xbec36d0f xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xbfe8ab59 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0xc16355c1 xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xd5ded699 xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xf00eb6fa xt_find_target -EXPORT_SYMBOL net/nfc/hci/hci 0x02e88704 nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0x08a14d68 nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0x09d8a7ab nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0x0ead5e2e nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0x1e4066d9 nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x40b6eeb1 nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x456d8e8c nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0x531ed31a nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x545b3645 nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x5981afc0 nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0x5b333c20 nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x7f950af1 nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0x7fdbba59 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0x8f07a812 nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x9e6a9599 nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0xbbeab72f nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xbeaee4d5 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0xdd7dc2e6 nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0xeb8b2b95 nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0xf9eeb3a2 nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0xfd215cd0 nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x03d9f9e4 nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x0626e0c8 nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0x0bf9521a nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0x0fe993d9 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0x177759ab nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0x17b23e00 nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x1da17258 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x206e72e7 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0x4850b0d9 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0x4a8e377d nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x572fcda5 nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x5e4fdb3a nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x715ce19e nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0x8d10f014 nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x9589bede nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xae6adf69 nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xc44d0aaa nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xd1fae3a2 nci_get_conn_info_by_id -EXPORT_SYMBOL net/nfc/nci/nci 0xd5357ccb nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0xd8baa610 nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0xd973a9c8 nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0xe7179d79 nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0xf0202858 nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0xf02dd614 nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0xf2933555 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0xf7ca20f5 nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0xfb83bc7e nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0xfcbaf8b1 nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nfc 0x0ae23bcb nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x1a2f5b48 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0x1cd3ee43 nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x23be35f5 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0x260dc7ab nfc_class -EXPORT_SYMBOL net/nfc/nfc 0x282fd86f nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0x28931250 nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x34d54a26 nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0x40d95a00 nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0x67031d01 nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0x6904eef3 nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0x6c0c1417 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0x7be19b7e nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0x86f8678a nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0x8830d599 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0xa58c46d1 nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0xae6904d6 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0xafb4c737 nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0xb6ba5c09 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0xbc7966a7 nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0xbf6a2afa nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0xc3db539a nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0xf1c79fdb nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0xfabe113f nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc_digital 0x027d2516 nfc_digital_free_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xa370565d nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xacd83947 nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xd050767f nfc_digital_allocate_device -EXPORT_SYMBOL net/phonet/phonet 0x18ea0f7b phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0x64c443b9 phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0x78f8b5e2 pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0x95a79408 phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0xa1193b13 phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0xb57d8519 pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0xc5fef352 pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0xe21dee2f pn_sock_unhash -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x02fce281 rxrpc_kernel_get_error_number -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x2c216d20 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4dff01ca rxrpc_kernel_get_abort_code -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x644570d7 rxrpc_kernel_accept_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x744d7f6b rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x785fa877 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8dbde957 rxrpc_kernel_data_delivered -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8f9bfef9 rxrpc_kernel_free_skb -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x948dd13f rxrpc_kernel_intercept_rx_messages -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x9673d556 rxrpc_kernel_reject_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc7815b7c rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe08f25e6 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe0fd58a2 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xea560500 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xfe0db745 rxrpc_kernel_is_data_last -EXPORT_SYMBOL net/sctp/sctp 0xc8fd939f sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x363bc752 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x78212d80 gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xb51066cf gss_mech_put -EXPORT_SYMBOL net/sunrpc/sunrpc 0x1181004e xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0x3ebd7643 svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0xc950eb5b xdr_restrict_buflen -EXPORT_SYMBOL net/wimax/wimax 0x1e944001 wimax_rfkill -EXPORT_SYMBOL net/wimax/wimax 0x548603c0 wimax_reset -EXPORT_SYMBOL net/wireless/cfg80211 0x02d9a063 cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0x04241c6b cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x067a9682 cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x08a472e1 wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x0b65f97f cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0x16179ed6 cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0x1e797a09 __ieee80211_get_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x1fd0875a cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0x23386134 cfg80211_connect_result -EXPORT_SYMBOL net/wireless/cfg80211 0x23942835 cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0x27113814 regulatory_set_wiphy_regd_sync_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x2a49388d cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0x37a76b25 cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x3a9dcef9 cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x3ffaaa27 cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x46687f55 cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x49724cee cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0x4a5944c9 cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0x4bb271fb cfg80211_rx_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x4d8ff3c9 cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x5036a122 cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x506aaabe wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x5aaf5024 cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0x5fe04b04 cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0x6287c977 cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x6938a176 wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0x69988f1f cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0x6e8f8a2e cfg80211_sched_scan_stopped_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x722f11ea cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0x72e99232 cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x7337b4ff cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x7337eb7b cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x734c0eaa wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0x7496b4cc cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0x74a0b790 ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x76aa0589 cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0x77caf61f cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0x7849e407 cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x7a2ba807 cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0x7b5b5a38 ieee80211_data_to_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7fb20830 cfg80211_report_obss_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x82a9e0d2 cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x85ef7d30 cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0x86d109dc ieee80211_data_from_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x91d7a142 ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x97943e16 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x9a0fc5be __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x9c8547df cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0x9e4cffe9 cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0xa1425906 ieee80211_channel_to_frequency -EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xa25ccb8e cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0xacbb761e regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0xb09f165e cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xb1acf0db __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xb3b83c50 cfg80211_roamed_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xb751bd59 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0xb7660d38 cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xb82ccfa1 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0xb8b1f20f cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0xbb8a0d1a cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xbc33b94f cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0xbf68704b freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0xc5a3ac5b ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xcae4b182 cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xcb43b900 wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0xccfff731 cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xcd93b696 __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xd314f61b cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xd50b0a22 ieee80211_ie_split -EXPORT_SYMBOL net/wireless/cfg80211 0xd65baf1f cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0xd8eee25c cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0xd9e03817 cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xde54a99c wiphy_rfkill_stop_polling -EXPORT_SYMBOL net/wireless/cfg80211 0xdefdc6dc cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xe4893b70 cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0xe910f117 cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0xe9b5f6fc cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xf02fb360 cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0xf0631521 cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xf08f409e cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0xf1928074 wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0xf4b5a0a4 regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0xf7fc95f2 cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xfcec6f14 cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xfd29c63c wiphy_rfkill_set_hw_state -EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie -EXPORT_SYMBOL net/wireless/lib80211 0x1daf0bbd lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x4a3f9709 lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0x958b1ad2 lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x9afbd582 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0xb7bc1be5 lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xb991628d lib80211_crypt_info_free -EXPORT_SYMBOL sound/ac97_bus 0xd5e2357b ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x62492cb5 snd_mixer_oss_ioctl_card -EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0xa0857745 snd_seq_kernel_client_write_poll -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb18bc3e7 snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xc0a40e78 snd_seq_kernel_client_enqueue_blocking -EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0xf32bbd14 snd_seq_event_port_attach -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x83d809c2 snd_seq_device_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x072d978b snd_midi_event_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x13a17752 snd_midi_event_reset_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x2eed26bf snd_midi_event_no_status -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x4d5ca523 snd_midi_event_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x592f6e9b snd_midi_event_free -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xd7c7afcc snd_midi_event_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe60fb228 snd_midi_event_reset_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xecbde43c snd_midi_event_encode_byte -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x4f0da490 snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x0005d529 snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0x05eb81b3 snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0x0a09cd32 snd_register_device -EXPORT_SYMBOL sound/core/snd 0x0b273e30 snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0x108c32f4 snd_card_new -EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program -EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer -EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x19890f2a snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0x1e4534fd snd_device_free -EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x25b1649b snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0x267df8d0 snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0x26d97fe8 snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0x295e012f snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0x2c71de6b snd_info_register -EXPORT_SYMBOL sound/core/snd 0x2eb260d6 snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio -EXPORT_SYMBOL sound/core/snd 0x354949fd snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x3d887888 snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0x3e85824a snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0x46970208 snd_seq_root -EXPORT_SYMBOL sound/core/snd 0x48000b7f snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x5c17d416 snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0x5c18e134 snd_power_wait -EXPORT_SYMBOL sound/core/snd 0x65301073 snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0x67077a32 snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0x6825e9d6 snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0x6ea20fe3 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0x7030d8cf snd_cards -EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable -EXPORT_SYMBOL sound/core/snd 0x70d23850 snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0x84a78450 snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0x86e4c3cc snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x9d3851e3 snd_component_add -EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id -EXPORT_SYMBOL sound/core/snd 0xa423dbfa snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0xac836c60 snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb7f875a9 snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0xbf3febb3 snd_card_register -EXPORT_SYMBOL sound/core/snd 0xc303cd3e snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0xc852df8d _snd_ctl_add_slave -EXPORT_SYMBOL sound/core/snd 0xcb308b0a snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0xcba85bae snd_device_new -EXPORT_SYMBOL sound/core/snd 0xcc1e26ae snd_device_register -EXPORT_SYMBOL sound/core/snd 0xcea033a6 snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0xd1a5e745 snd_ctl_register_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0xd263e2ab snd_jack_report -EXPORT_SYMBOL sound/core/snd 0xd7d6c13c snd_ctl_unregister_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0xda27bf7e snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0xded5620d snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0xe6fa6181 snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0xf3f893b8 snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0xf48bc488 snd_card_free -EXPORT_SYMBOL sound/core/snd 0xfc636142 snd_jack_new -EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio -EXPORT_SYMBOL sound/core/snd-hwdep 0x73b73165 snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any -EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x06151f0d snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x06b310c9 snd_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x06bfda93 snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0x0a0436a8 snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0x0c1005fe snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x0c5537f8 snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0x0d6a1a18 snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0x108d23d9 snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0x15a7804d snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0x16309eeb snd_pcm_lib_mmap_iomem -EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x2cb45f97 snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x2d401f40 snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0x3207b02f snd_dma_alloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x34af119e snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x410e89ba snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x4153fc1e snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0x4b6ad71b snd_pcm_notify -EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL sound/core/snd-pcm 0x5898dcba snd_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x619c1e55 snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0x63bd734d snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width -EXPORT_SYMBOL sound/core/snd-pcm 0x68a70534 snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0x6df4d0e9 snd_pcm_suspend -EXPORT_SYMBOL sound/core/snd-pcm 0x6ec4ef62 snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x7102e962 snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x771f3744 snd_pcm_limit_hw_rates -EXPORT_SYMBOL sound/core/snd-pcm 0x7edf75b3 _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x7fcc0761 snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x874d6e7e snd_pcm_lib_write -EXPORT_SYMBOL sound/core/snd-pcm 0x8dcfd68c snd_pcm_lib_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0xa0a17b3d snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0xa426eac2 snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0xa431e6f9 snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL sound/core/snd-pcm 0xaa12d103 snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xab4e3f69 snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL sound/core/snd-pcm 0xabec10e8 snd_pcm_new_internal -EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xb012d407 snd_pcm_lib_read -EXPORT_SYMBOL sound/core/snd-pcm 0xb605e0c3 snd_pcm_mmap_data -EXPORT_SYMBOL sound/core/snd-pcm 0xb6812860 snd_pcm_hw_rule_noresample -EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xbbef4703 snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xc60cd675 snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0xca4b7a84 snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0xcd6dd118 snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0xce92c446 snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xe239fb7a snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xe8137f7c snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0xe959de97 snd_pcm_lib_readv -EXPORT_SYMBOL sound/core/snd-pcm 0xf962af0a snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0xfaa3c7c6 snd_pcm_lib_writev -EXPORT_SYMBOL sound/core/snd-pcm 0xfb09b529 snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x07e31400 snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0x0906c97d snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0x0bbdf135 snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0x129ca9e2 snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x151cc201 __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1bc23af7 snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1e1117d9 snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x3037c7a6 snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4b7d7437 snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4b9d4e7c snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x76bccd60 __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x7bff0bf3 snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x8890ffda snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x8916a497 snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x8a35c083 snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0xc2f52e27 snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd409f00c snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd452bd3f snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe05b34b4 snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-timer 0x07318e94 snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0x217b7349 snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0x2fb04824 snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0x301a6f33 snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0x4430b12e snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0x5feea6e4 snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0x624b21b0 snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0x66f1151c snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0x90e85dab snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0xb8651b5b snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0xf27de4f6 snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0xf83ec754 snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0xfa2a0277 snd_timer_global_new -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x2d8e1109 snd_mpu401_uart_new -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x0c6ae939 snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x596d00dd snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8396657d snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x866920e3 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9ae12c8d snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9d23d33c snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xbb20020b snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe4e277f4 snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf6d6aad2 snd_opl3_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x024e7f0b snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x55af1fac snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5dd7a6a1 snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8dd098fa snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x915f7c11 snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9c69d0ed snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xbeb0a6ae snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd2fb9691 snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd4b47d35 snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1640bf45 amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1a92e44d iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1b5d8ed3 avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2b5aba0b amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2dfa4676 amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x301bba32 amdtp_stream_stop -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x493eb1c3 fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4aa0343f amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x511edc97 cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x55f63f90 snd_fw_async_midi_port_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5a1e294a amdtp_stream_start -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x60fd79b5 amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x74adc606 avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x798fcf52 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7e1a49e1 amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x881e4c7d cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x888a3ee2 cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8a5e1d7a iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x94ef340e snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9c434ff6 fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa1898015 snd_fw_async_midi_port_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa8bbb77a cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xabe0508d fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb16d898c fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb45043fb fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb54076bc fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbe8d6e7d amdtp_stream_pcm_pointer -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe329ce13 cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe487dbe2 avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe57784eb fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe9a17478 amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf523cdaf amdtp_stream_destroy -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x24afd98a snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x80367b8e snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1f29395a snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x221a2c63 snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x4cd46e05 snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x65189272 snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x6558a827 snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x820b5de1 snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x8ef639c3 snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa0d61ac2 snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x1155fb7a snd_ak4117_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x24a5d0dc snd_ak4117_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x39069829 snd_ak4117_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x52b24c0f snd_ak4117_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xccaf7e48 snd_ak4117_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xee850a30 snd_ak4117_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x3a63ae41 snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x80df44cb snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xe8052dd6 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xee691787 snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x62e31bbb snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xdf7cfa4a snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x28a37201 snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x36c5f54d snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x45013497 snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x46c1e4c0 snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x6e836d48 snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xb1768809 snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-i2c 0x2106509f snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x7a7fa139 snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x92d78e9c snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0xb8d9e060 snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xd854ed2b snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0xdcac61e4 snd_i2c_device_free -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x15f52535 snd_sbmixer_suspend -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x26bd54c8 snd_sbmixer_add_ctl -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x2e57d26b snd_sbdsp_get_byte -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5a5595bc snd_sbmixer_read -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5f8a2951 snd_sbmixer_write -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x685e0a33 snd_sbdsp_command -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x6df953c9 snd_sbdsp_create -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x7916d42d snd_sbmixer_new -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xcf67c4ec snd_sbdsp_reset -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd24ebc88 snd_sbmixer_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2f94a782 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x33619c19 snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x400abe55 snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x629b37f2 snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x79bfdf5d snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7b9cfd94 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8fcb6568 snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x90b7936e snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x93051662 snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x993b8114 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa7b1e278 snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb4ae1bd0 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xba569734 snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbfba1e06 snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe7a1b4e0 snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe8646392 snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xeff6e231 snd_ac97_mixer -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x281c5078 snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x56d779c0 snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x5d551348 snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x60c5c1fc snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xad609441 snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc432ab15 snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd55c4100 snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf0ba082e snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xfb0ba9c5 snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x3669d06f snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x458845fe snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xd5af19b1 snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x15af2fd1 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x180de8b1 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x233591b1 oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x25cd9716 oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2a0c13cb oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x40947277 oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4176acd5 oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5c98e67a oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7d8e97d5 oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x95aed82c oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa355a4a1 oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xad3d5389 oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb3ac5b81 oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb3df1c8a oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbd21d4ac oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbd47a214 oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcc9d2850 oxygen_pci_remove -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd7298297 oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe47ffb1e oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf4eaf8e5 oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf8516f76 oxygen_write_uart -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x5fb71db5 snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xace956a2 snd_trident_stop_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xbe795883 snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xc2bb129b snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xd8c572ab snd_trident_write_voice_regs -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x58427fe2 tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x83afd728 tlv320aic23_probe -EXPORT_SYMBOL sound/soc/snd-soc-core 0x4a0c401d snd_soc_alloc_ac97_codec -EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x95e95ca4 sound_class -EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0x9d64cd1d register_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xb837683f register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xd799b016 register_sound_special_device -EXPORT_SYMBOL sound/soundcore 0xe0bba0ac register_sound_special -EXPORT_SYMBOL sound/soundcore 0xfd582f25 register_sound_midi -EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x5810e294 snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x6fbc736f snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xaea3bcdb snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xbce461bf snd_emux_new -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xdbc263d5 snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xfb6178dc snd_emux_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x32a9b35b snd_util_mem_avail -EXPORT_SYMBOL sound/synth/snd-util-mem 0x5a01c602 snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0x73484b38 snd_util_memhdr_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0xd15847cd __snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0xd8670a5c snd_util_memhdr_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0xd926889a __snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0xde94a325 __snd_util_memblk_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0xeb5e6385 snd_util_mem_free -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x87422a77 snd_usbmidi_create -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect -EXPORT_SYMBOL vmlinux 0x0005b01a devm_gpio_free -EXPORT_SYMBOL vmlinux 0x000ea5f8 posix_acl_fix_xattr_userns -EXPORT_SYMBOL vmlinux 0x0010f049 netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x00138dc4 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0x001693e3 generic_readlink -EXPORT_SYMBOL vmlinux 0x00182066 bmap -EXPORT_SYMBOL vmlinux 0x00253068 lock_sock_fast -EXPORT_SYMBOL vmlinux 0x00418c75 agp_enable -EXPORT_SYMBOL vmlinux 0x0046685e of_get_pci_address -EXPORT_SYMBOL vmlinux 0x005a4975 cpu_possible_mask -EXPORT_SYMBOL vmlinux 0x00709bea scsi_rescan_device -EXPORT_SYMBOL vmlinux 0x0070cd1f queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0x008418c8 copy_to_iter -EXPORT_SYMBOL vmlinux 0x0085e1f1 __do_once_done -EXPORT_SYMBOL vmlinux 0x00908240 fb_prepare_logo -EXPORT_SYMBOL vmlinux 0x0091b43d unregister_filesystem -EXPORT_SYMBOL vmlinux 0x00943ac2 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0x00a9ea0b skb_tx_error -EXPORT_SYMBOL vmlinux 0x00b6e1a6 bitmap_end_sync -EXPORT_SYMBOL vmlinux 0x00bba55e icmp_send -EXPORT_SYMBOL vmlinux 0x00cc601f inet_release -EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00e43f1c vfs_getattr -EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve -EXPORT_SYMBOL vmlinux 0x011117d2 of_dev_put -EXPORT_SYMBOL vmlinux 0x0113712d inet_frags_exit_net -EXPORT_SYMBOL vmlinux 0x011b6cb6 adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x011bb987 kmalloc_dma_caches -EXPORT_SYMBOL vmlinux 0x0122f95e _lv1_get_spe_irq_outlet -EXPORT_SYMBOL vmlinux 0x012a97fc xor_altivec_4 -EXPORT_SYMBOL vmlinux 0x014989d2 starget_for_each_device -EXPORT_SYMBOL vmlinux 0x015457a8 kmem_cache_create -EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer -EXPORT_SYMBOL vmlinux 0x016e85b4 pipe_lock -EXPORT_SYMBOL vmlinux 0x017f4f13 dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x018cdfc8 dquot_alloc -EXPORT_SYMBOL vmlinux 0x018d9919 _lv1_set_lpm_interrupt_mask -EXPORT_SYMBOL vmlinux 0x019ad853 vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0x019bc207 msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0x019c1a8a locks_copy_lock -EXPORT_SYMBOL vmlinux 0x01bdf56d bioset_create -EXPORT_SYMBOL vmlinux 0x01ce3cbf pci_map_rom -EXPORT_SYMBOL vmlinux 0x01cea4e1 lro_receive_skb -EXPORT_SYMBOL vmlinux 0x01e3f931 try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x01ef3d0e nf_ip_checksum -EXPORT_SYMBOL vmlinux 0x020b118b agp_generic_mask_memory -EXPORT_SYMBOL vmlinux 0x020d18d7 _lv1_set_lpm_debug_bus_control -EXPORT_SYMBOL vmlinux 0x0213560b add_random_ready_callback -EXPORT_SYMBOL vmlinux 0x023460d8 blk_execute_rq -EXPORT_SYMBOL vmlinux 0x0238942c netdev_master_upper_dev_link_private -EXPORT_SYMBOL vmlinux 0x023a074a hvc_get_chars -EXPORT_SYMBOL vmlinux 0x024aed12 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0x024bf827 radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x02543083 force_sig -EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x026bc2c8 blk_run_queue -EXPORT_SYMBOL vmlinux 0x026f57d5 __seq_open_private -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x027d5499 _lv1_did_update_interrupt_mask -EXPORT_SYMBOL vmlinux 0x028c4ccd bio_integrity_free -EXPORT_SYMBOL vmlinux 0x0290d4d7 inode_add_rsv_space -EXPORT_SYMBOL vmlinux 0x02986838 mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x0298e053 inet_csk_accept -EXPORT_SYMBOL vmlinux 0x029c2dc8 mmc_can_sanitize -EXPORT_SYMBOL vmlinux 0x029d560a kobject_set_name -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table -EXPORT_SYMBOL vmlinux 0x02aee54d input_grab_device -EXPORT_SYMBOL vmlinux 0x02bfc32c blk_init_queue -EXPORT_SYMBOL vmlinux 0x02d1e491 __pci_register_driver -EXPORT_SYMBOL vmlinux 0x02dda4e9 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x02e4ac47 of_mdiobus_register -EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string -EXPORT_SYMBOL vmlinux 0x02fa1c5c block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0x02fdb5c5 agp3_generic_tlbflush -EXPORT_SYMBOL vmlinux 0x03076801 key_type_keyring -EXPORT_SYMBOL vmlinux 0x031dc65e pasemi_dma_free_chan -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x036b872d __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x036fc564 scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x038e0751 security_d_instantiate -EXPORT_SYMBOL vmlinux 0x03946972 of_find_node_by_type -EXPORT_SYMBOL vmlinux 0x039e5366 scsi_print_result -EXPORT_SYMBOL vmlinux 0x03b0509d pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0x03b93ab9 __blk_end_request_all -EXPORT_SYMBOL vmlinux 0x03c49527 __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0x03c57f73 sock_no_getsockopt -EXPORT_SYMBOL vmlinux 0x03cfeb8a pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x03d5fc46 pci_find_pcie_root_port -EXPORT_SYMBOL vmlinux 0x03e1f21d elv_rb_add -EXPORT_SYMBOL vmlinux 0x03ea6e34 __ip_dev_find -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x0401bf66 set_wb_congested -EXPORT_SYMBOL vmlinux 0x04074f48 ioremap -EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg -EXPORT_SYMBOL vmlinux 0x0440a533 _lv1_net_remove_multicast_address -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x044903a2 input_reset_device -EXPORT_SYMBOL vmlinux 0x0450f941 mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display -EXPORT_SYMBOL vmlinux 0x0488cc51 __mdiobus_register -EXPORT_SYMBOL vmlinux 0x04942896 igrab -EXPORT_SYMBOL vmlinux 0x04a78723 jbd2_journal_load -EXPORT_SYMBOL vmlinux 0x04ad4246 blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x04cd4c02 fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0x04dc9fef devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0x04e8b950 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol -EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize -EXPORT_SYMBOL vmlinux 0x050c6c08 writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x05119d8f mmc_can_erase -EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range -EXPORT_SYMBOL vmlinux 0x0520ce82 km_state_notify -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x05249107 pci_find_capability -EXPORT_SYMBOL vmlinux 0x0530dede _raw_write_trylock -EXPORT_SYMBOL vmlinux 0x0540b32a cpu_core_map -EXPORT_SYMBOL vmlinux 0x055570f5 nobh_write_begin -EXPORT_SYMBOL vmlinux 0x055c8559 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x0576addf of_dev_get -EXPORT_SYMBOL vmlinux 0x057e02e1 ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x05a514a1 _insl_ns -EXPORT_SYMBOL vmlinux 0x05cf034d tty_port_open -EXPORT_SYMBOL vmlinux 0x05e2ce58 nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0x05ee6960 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0x05f1a635 kern_path_mountpoint -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x062d6d20 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x06456aff _lv1_get_virtual_address_space_id_of_ppe -EXPORT_SYMBOL vmlinux 0x064663fd sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0x06622ea2 mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0x06733356 pcibios_fixup_bus -EXPORT_SYMBOL vmlinux 0x067ac8a6 gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx -EXPORT_SYMBOL vmlinux 0x06acd6bf neigh_direct_output -EXPORT_SYMBOL vmlinux 0x06cf7b60 kernel_getsockname -EXPORT_SYMBOL vmlinux 0x06d899c4 xfrm_register_mode -EXPORT_SYMBOL vmlinux 0x06e19fbb devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0x06e44201 of_device_is_compatible -EXPORT_SYMBOL vmlinux 0x06fa08b9 inet_add_offload -EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn -EXPORT_SYMBOL vmlinux 0x06ffec0b mach_powernv -EXPORT_SYMBOL vmlinux 0x0712a004 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 -EXPORT_SYMBOL vmlinux 0x0729ac71 inetdev_by_index -EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x0730697f dm_unregister_target -EXPORT_SYMBOL vmlinux 0x073b870e blk_run_queue_async -EXPORT_SYMBOL vmlinux 0x074e9213 down_killable -EXPORT_SYMBOL vmlinux 0x07567533 ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0x07610398 dump_skip -EXPORT_SYMBOL vmlinux 0x07673c80 ps2_handle_response -EXPORT_SYMBOL vmlinux 0x077bf724 neigh_table_clear -EXPORT_SYMBOL vmlinux 0x07951280 bio_alloc_pages -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07a9ef84 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x07bd4cf9 request_key_async_with_auxdata -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07ef213a pasemi_dma_free_fun -EXPORT_SYMBOL vmlinux 0x07f0c317 mmc_add_host -EXPORT_SYMBOL vmlinux 0x07f44152 mmc_hw_reset -EXPORT_SYMBOL vmlinux 0x07f8ee15 _lv1_unmap_device_dma_region -EXPORT_SYMBOL vmlinux 0x0804f7f7 scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0x08099009 sk_mc_loop -EXPORT_SYMBOL vmlinux 0x080e4b34 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0x0818ddf6 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x08245537 skb_copy_bits -EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x087eadc6 qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0x08971105 skb_clone_sk -EXPORT_SYMBOL vmlinux 0x089741c7 of_device_register -EXPORT_SYMBOL vmlinux 0x08ba3ad1 pci_set_master -EXPORT_SYMBOL vmlinux 0x08ba47fe netif_wake_subqueue -EXPORT_SYMBOL vmlinux 0x08c899c9 pci_request_regions -EXPORT_SYMBOL vmlinux 0x08c92024 vlan_vid_del -EXPORT_SYMBOL vmlinux 0x08d13158 tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x08d935bb unregister_console -EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0x0904ad21 xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x0928296e __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x0941969e bio_chain -EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key -EXPORT_SYMBOL vmlinux 0x095ee77e of_phy_find_device -EXPORT_SYMBOL vmlinux 0x0960e13b input_get_keycode -EXPORT_SYMBOL vmlinux 0x096341c2 _lv1_connect_irq_plug_ext -EXPORT_SYMBOL vmlinux 0x09662072 posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x0988e2d5 pci_fixup_device -EXPORT_SYMBOL vmlinux 0x098b1e0d skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x098bfe6a __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x09b5bef5 simple_rmdir -EXPORT_SYMBOL vmlinux 0x09b9fdf9 dev_addr_add -EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x09c67afb flex_array_get -EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0x09cabcb0 get_disk -EXPORT_SYMBOL vmlinux 0x09d2b6b7 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09dc3462 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x09df676f unregister_md_personality -EXPORT_SYMBOL vmlinux 0x09f282c4 nf_ct_attach -EXPORT_SYMBOL vmlinux 0x09ff10c9 blkdev_fsync -EXPORT_SYMBOL vmlinux 0x0a143eee __wait_on_buffer -EXPORT_SYMBOL vmlinux 0x0a202b82 pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class -EXPORT_SYMBOL vmlinux 0x0a3d0644 cpu_online_mask -EXPORT_SYMBOL vmlinux 0x0a4a6f9b eth_change_mtu -EXPORT_SYMBOL vmlinux 0x0a57863e cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x0a5c7842 kill_litter_super -EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0a7b7228 abx500_event_registers_startup_state_get -EXPORT_SYMBOL vmlinux 0x0a7d217b of_device_is_big_endian -EXPORT_SYMBOL vmlinux 0x0a940b86 nd_integrity_init -EXPORT_SYMBOL vmlinux 0x0aa3054f tcp_prequeue -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aaa9c4d kmem_cache_alloc_node_trace -EXPORT_SYMBOL vmlinux 0x0aaafbb8 sock_i_ino -EXPORT_SYMBOL vmlinux 0x0abec29b dev_uc_sync -EXPORT_SYMBOL vmlinux 0x0abfcbaf do_splice_direct -EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0aeb3d4b scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0x0afb5eec d_set_fallthru -EXPORT_SYMBOL vmlinux 0x0aff1cb1 dquot_quotactl_ops -EXPORT_SYMBOL vmlinux 0x0b015ae8 genl_unregister_family -EXPORT_SYMBOL vmlinux 0x0b09b87c scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b1fc4fe phy_find_first -EXPORT_SYMBOL vmlinux 0x0b241c17 iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0x0b2ccba8 __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0x0b2d536a swiotlb_dma_mapping_error -EXPORT_SYMBOL vmlinux 0x0b2e1ec7 h_get_mpp -EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b8a25bc skb_checksum -EXPORT_SYMBOL vmlinux 0x0bafd7fa sk_reset_timer -EXPORT_SYMBOL vmlinux 0x0bb3619f __put_cred -EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bce933d vfs_mkdir -EXPORT_SYMBOL vmlinux 0x0bd0c17d set_user_nice -EXPORT_SYMBOL vmlinux 0x0bde1790 tty_write_room -EXPORT_SYMBOL vmlinux 0x0bde3c5b dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0x0bfceef3 of_find_i2c_device_by_node -EXPORT_SYMBOL vmlinux 0x0bfd9b74 skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0x0c03b317 generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x0c0c55ec pci_iomap_range -EXPORT_SYMBOL vmlinux 0x0c1ad162 _lv1_net_start_rx_dma -EXPORT_SYMBOL vmlinux 0x0c21d019 flush_delayed_work -EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat -EXPORT_SYMBOL vmlinux 0x0c52a0d9 pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features -EXPORT_SYMBOL vmlinux 0x0c66e20b serio_reconnect -EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -EXPORT_SYMBOL vmlinux 0x0c7b1c3d freeze_bdev -EXPORT_SYMBOL vmlinux 0x0c949d76 rtnl_notify -EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x0ca27514 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0x0cd66fc1 revalidate_disk -EXPORT_SYMBOL vmlinux 0x0ce50f97 pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0x0ce921fd mmc_alloc_host -EXPORT_SYMBOL vmlinux 0x0cea64a3 vfs_fsync -EXPORT_SYMBOL vmlinux 0x0cf6b3f2 __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0x0d2ac755 console_stop -EXPORT_SYMBOL vmlinux 0x0d301b95 cancel_dirty_page -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d6c963c copy_from_user -EXPORT_SYMBOL vmlinux 0x0d6e685a agp_backend_release -EXPORT_SYMBOL vmlinux 0x0d9f4ded __inode_permission -EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft -EXPORT_SYMBOL vmlinux 0x0dbd9297 nvm_dev_factory -EXPORT_SYMBOL vmlinux 0x0dc07228 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0x0dc0ace0 idr_find_slowpath -EXPORT_SYMBOL vmlinux 0x0dcc4361 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x0dd9566c read_code -EXPORT_SYMBOL vmlinux 0x0ddfc4d2 iov_iter_fault_in_readable -EXPORT_SYMBOL vmlinux 0x0df4dcec param_ops_uint -EXPORT_SYMBOL vmlinux 0x0e242009 serio_bus -EXPORT_SYMBOL vmlinux 0x0e2a89aa free_netdev -EXPORT_SYMBOL vmlinux 0x0e333810 skb_put -EXPORT_SYMBOL vmlinux 0x0e62518f crypto_sha256_update -EXPORT_SYMBOL vmlinux 0x0e635623 inet_register_protosw -EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec -EXPORT_SYMBOL vmlinux 0x0e8f30f6 _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0x0ea6b72e __frontswap_load -EXPORT_SYMBOL vmlinux 0x0eaea07b fsnotify_get_group -EXPORT_SYMBOL vmlinux 0x0eb925f2 blk_mq_map_queue -EXPORT_SYMBOL vmlinux 0x0eba4195 devm_gpio_request -EXPORT_SYMBOL vmlinux 0x0ebefa8c set_groups -EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ed083e6 ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x0edfef2f of_cpufreq_power_cooling_register -EXPORT_SYMBOL vmlinux 0x0ee9732e tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x0ef6738a d_obtain_alias -EXPORT_SYMBOL vmlinux 0x0efc6997 vio_enable_interrupts -EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups -EXPORT_SYMBOL vmlinux 0x0f133669 eth_header_cache -EXPORT_SYMBOL vmlinux 0x0f191bb4 pci_set_dma_seg_boundary -EXPORT_SYMBOL vmlinux 0x0f40ec02 audit_log_start -EXPORT_SYMBOL vmlinux 0x0f414ffe __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x0f499ee2 max8925_reg_write -EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec -EXPORT_SYMBOL vmlinux 0x0f5faa7e wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size -EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x0f8560cb pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0x0f8d1ace pci_release_regions -EXPORT_SYMBOL vmlinux 0x0f8ef7f8 param_set_ushort -EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fc71cfa security_inode_init_security -EXPORT_SYMBOL vmlinux 0x0fd15a8d tcp_splice_read -EXPORT_SYMBOL vmlinux 0x0fd17558 pci_lost_interrupt -EXPORT_SYMBOL vmlinux 0x0fd2a418 cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0x0fdb0c7b gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x0fe0b130 vme_irq_free -EXPORT_SYMBOL vmlinux 0x100e52ce request_firmware -EXPORT_SYMBOL vmlinux 0x102013f0 compat_sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x102c2267 inet_listen -EXPORT_SYMBOL vmlinux 0x103fe7da cdrom_check_events -EXPORT_SYMBOL vmlinux 0x1040637b nvm_register_mgr -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x108c9701 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0x10903b51 xfrm4_prepare_output -EXPORT_SYMBOL vmlinux 0x10950ee1 radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x10bbdfa8 proc_remove -EXPORT_SYMBOL vmlinux 0x10bd4499 vfs_writev -EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu -EXPORT_SYMBOL vmlinux 0x10f94e36 da903x_query_status -EXPORT_SYMBOL vmlinux 0x10ff2186 mfd_remove_devices -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x11171812 tty_port_hangup -EXPORT_SYMBOL vmlinux 0x112d2c72 km_query -EXPORT_SYMBOL vmlinux 0x11615580 __ethtool_get_settings -EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn -EXPORT_SYMBOL vmlinux 0x116e8b1b genphy_suspend -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x1171b635 _lv1_delete_lpm_event_bookmark -EXPORT_SYMBOL vmlinux 0x11822984 __splice_from_pipe -EXPORT_SYMBOL vmlinux 0x1182d83a cpuidle_disable -EXPORT_SYMBOL vmlinux 0x11953af2 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0x1199f62c bio_advance -EXPORT_SYMBOL vmlinux 0x119bf7ef compat_ip_setsockopt -EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned -EXPORT_SYMBOL vmlinux 0x11ae39c1 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x11bd2cba bdput -EXPORT_SYMBOL vmlinux 0x11c8e3e8 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x11d3258f inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x11e11eb4 mmc_start_req -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin -EXPORT_SYMBOL vmlinux 0x11ff178b inet6_unregister_icmp_sender -EXPORT_SYMBOL vmlinux 0x11ffa8cd make_bad_inode -EXPORT_SYMBOL vmlinux 0x12046b20 pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0x12052113 inet_del_protocol -EXPORT_SYMBOL vmlinux 0x12098748 pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier -EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const -EXPORT_SYMBOL vmlinux 0x12259feb pci_write_vpd -EXPORT_SYMBOL vmlinux 0x1228fcd8 f_setown -EXPORT_SYMBOL vmlinux 0x122988ec pci_scan_single_device -EXPORT_SYMBOL vmlinux 0x122c47ef __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0x123431e0 from_kprojid -EXPORT_SYMBOL vmlinux 0x123e00dc tty_lock -EXPORT_SYMBOL vmlinux 0x123f82f3 getrawmonotonic64 -EXPORT_SYMBOL vmlinux 0x12412150 mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0x12822d3e remove_proc_entry -EXPORT_SYMBOL vmlinux 0x1282a861 pci_dev_driver -EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range -EXPORT_SYMBOL vmlinux 0x12a53665 flow_cache_init -EXPORT_SYMBOL vmlinux 0x12c9160d phy_get_eee_err -EXPORT_SYMBOL vmlinux 0x12cb6622 _lv1_map_device_dma_region -EXPORT_SYMBOL vmlinux 0x12dfeb12 vprintk_emit -EXPORT_SYMBOL vmlinux 0x12e5ef0c rtas_set_power_level -EXPORT_SYMBOL vmlinux 0x12f43ded __block_write_begin -EXPORT_SYMBOL vmlinux 0x12fd5ccb jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x13017d5d down_read -EXPORT_SYMBOL vmlinux 0x130f3ffe vio_unregister_driver -EXPORT_SYMBOL vmlinux 0x13135b17 jbd2_journal_file_inode -EXPORT_SYMBOL vmlinux 0x1319449d secure_modules -EXPORT_SYMBOL vmlinux 0x13215eac mem_section -EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x13307fde vsscanf -EXPORT_SYMBOL vmlinux 0x1336b5b3 kvmppc_hv_find_lock_hpte -EXPORT_SYMBOL vmlinux 0x134d8c24 __pagevec_release -EXPORT_SYMBOL vmlinux 0x1365e2df __getblk_gfp -EXPORT_SYMBOL vmlinux 0x137d1918 phy_device_create -EXPORT_SYMBOL vmlinux 0x137e474b check_disk_size_change -EXPORT_SYMBOL vmlinux 0x13862463 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0x13943963 current_in_userns -EXPORT_SYMBOL vmlinux 0x13a09151 nvdimm_revalidate_disk -EXPORT_SYMBOL vmlinux 0x13acb249 inode_add_bytes -EXPORT_SYMBOL vmlinux 0x13b7c951 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x13c0efd6 ps2_drain -EXPORT_SYMBOL vmlinux 0x13ce5e9c xfrm6_rcv_cb -EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13d70410 file_remove_privs -EXPORT_SYMBOL vmlinux 0x13e6ac50 generic_fillattr -EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation -EXPORT_SYMBOL vmlinux 0x13f53da6 CMO_PageSize -EXPORT_SYMBOL vmlinux 0x13fc435c devm_free_irq -EXPORT_SYMBOL vmlinux 0x1412a400 netlink_ack -EXPORT_SYMBOL vmlinux 0x141c621a __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0x141f6f38 dquot_disable -EXPORT_SYMBOL vmlinux 0x141fe5fd pasemi_read_iob_reg -EXPORT_SYMBOL vmlinux 0x1424a557 inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x143c73c2 end_page_writeback -EXPORT_SYMBOL vmlinux 0x144a94dc from_kgid_munged -EXPORT_SYMBOL vmlinux 0x1452ae2f __scm_send -EXPORT_SYMBOL vmlinux 0x146a4f38 pnv_phb_to_cxl_mode -EXPORT_SYMBOL vmlinux 0x14a14817 pSeries_enable_reloc_on_exc -EXPORT_SYMBOL vmlinux 0x14ad42a8 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x14c5fc9b tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x14cbb03e rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x14d4ea63 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0x14d85d75 compat_ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x14ee815c __dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x151592c4 _lv1_invalidate_htab_entries -EXPORT_SYMBOL vmlinux 0x1523207f tty_kref_put -EXPORT_SYMBOL vmlinux 0x15280f8c sock_no_poll -EXPORT_SYMBOL vmlinux 0x15463e09 lookup_one_len -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x155b539e dm_put_table_device -EXPORT_SYMBOL vmlinux 0x1565e9e0 macio_release_resource -EXPORT_SYMBOL vmlinux 0x158521e0 page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x158cc5c0 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15c302e1 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0x15d3fd60 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x15ed45fb devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0x160bd45c rtas_token -EXPORT_SYMBOL vmlinux 0x160f1420 input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x1619e532 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x162f4e34 filemap_map_pages -EXPORT_SYMBOL vmlinux 0x163c8215 of_n_addr_cells -EXPORT_SYMBOL vmlinux 0x165cb487 kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0x166db824 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump -EXPORT_SYMBOL vmlinux 0x1685b17c file_path -EXPORT_SYMBOL vmlinux 0x168a1458 of_graph_get_port_by_id -EXPORT_SYMBOL vmlinux 0x16924f1b scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0x169cefe4 replace_mount_options -EXPORT_SYMBOL vmlinux 0x16a65c4f vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x16ac188f vme_master_mmap -EXPORT_SYMBOL vmlinux 0x16bde8be __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0x16c0e702 page_readlink -EXPORT_SYMBOL vmlinux 0x16c11df1 compat_sock_get_timestamp -EXPORT_SYMBOL vmlinux 0x16cb4dab abx500_get_chip_id -EXPORT_SYMBOL vmlinux 0x16dd887a __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16e4ce73 kernel_connect -EXPORT_SYMBOL vmlinux 0x17072334 mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0x172e6463 inet_shutdown -EXPORT_SYMBOL vmlinux 0x1734c462 nf_unregister_hook -EXPORT_SYMBOL vmlinux 0x1743414f __debugger_fault_handler -EXPORT_SYMBOL vmlinux 0x17648396 dev_base_lock -EXPORT_SYMBOL vmlinux 0x1771cbc6 ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0x177de996 param_get_ushort -EXPORT_SYMBOL vmlinux 0x1788c6b2 pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0x1793f685 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0x17af466c d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator -EXPORT_SYMBOL vmlinux 0x17b9438d inet_stream_connect -EXPORT_SYMBOL vmlinux 0x17bce13a vme_register_bridge -EXPORT_SYMBOL vmlinux 0x17be5b2d pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0x17cb8c79 _lv1_read_htab_entries -EXPORT_SYMBOL vmlinux 0x17ccd3ff __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x17d649d7 blk_queue_free_tags -EXPORT_SYMBOL vmlinux 0x17df2288 tty_schedule_flip -EXPORT_SYMBOL vmlinux 0x17e28473 fsl_upm_run_pattern -EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip -EXPORT_SYMBOL vmlinux 0x1829993d sync_inode -EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken -EXPORT_SYMBOL vmlinux 0x182ad338 udp_sendmsg -EXPORT_SYMBOL vmlinux 0x182f50af _lv1_open_device -EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask -EXPORT_SYMBOL vmlinux 0x1857aa39 proc_dointvec -EXPORT_SYMBOL vmlinux 0x18625a0f forget_cached_acl -EXPORT_SYMBOL vmlinux 0x1862622f vm_mmap -EXPORT_SYMBOL vmlinux 0x18683319 find_get_pages_tag -EXPORT_SYMBOL vmlinux 0x186a0c54 skb_append_datato_frags -EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc -EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x18ab3dea pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0x18bc2581 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x18c98205 _lv1_destruct_virtual_address_space -EXPORT_SYMBOL vmlinux 0x18d9ec26 cdrom_mode_select -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18e89632 xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x18f3592b __starget_for_each_device -EXPORT_SYMBOL vmlinux 0x193136a9 seq_path -EXPORT_SYMBOL vmlinux 0x193c5c5c pcibus_to_node -EXPORT_SYMBOL vmlinux 0x194f4765 agp_generic_alloc_pages -EXPORT_SYMBOL vmlinux 0x19591743 pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x196e9e75 override_creds -EXPORT_SYMBOL vmlinux 0x1972c190 arp_send -EXPORT_SYMBOL vmlinux 0x199ec4fb arch_spin_unlock_wait -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19a1986e iget_failed -EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x19ba1dc7 fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19bfac34 vlan_uses_dev -EXPORT_SYMBOL vmlinux 0x19c7a87b generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x19c968d1 pasemi_dma_start_chan -EXPORT_SYMBOL vmlinux 0x19d4d38a pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0x19db307d dev_close -EXPORT_SYMBOL vmlinux 0x19fa0113 abx500_remove_ops -EXPORT_SYMBOL vmlinux 0x19ff11c0 uart_get_divisor -EXPORT_SYMBOL vmlinux 0x1a0c0c14 dquot_commit -EXPORT_SYMBOL vmlinux 0x1a1e2485 clear_wb_congested -EXPORT_SYMBOL vmlinux 0x1a2de8f4 task_tgid_nr_ns -EXPORT_SYMBOL vmlinux 0x1a64113a cad_pid -EXPORT_SYMBOL vmlinux 0x1a6a38bd blk_start_queue_async -EXPORT_SYMBOL vmlinux 0x1a732a43 is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0x1a739d31 scsi_block_requests -EXPORT_SYMBOL vmlinux 0x1a8d4cbf touch_buffer -EXPORT_SYMBOL vmlinux 0x1a91663d pasemi_dma_free_buf -EXPORT_SYMBOL vmlinux 0x1a967b30 swiotlb_map_sg_attrs -EXPORT_SYMBOL vmlinux 0x1aa10451 nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0x1ab1fc2b sk_free -EXPORT_SYMBOL vmlinux 0x1ab2ff16 inode_dio_wait -EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1aeff08a netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0x1af62a99 panic_notifier_list -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b064a08 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0x1b132009 rename_lock -EXPORT_SYMBOL vmlinux 0x1b147644 generic_pipe_buf_confirm -EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents -EXPORT_SYMBOL vmlinux 0x1b321f6f __get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x1b625d33 enable_kernel_vsx -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b64bc6f __scm_destroy -EXPORT_SYMBOL vmlinux 0x1b65dca9 vm_insert_mixed -EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug -EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip -EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer -EXPORT_SYMBOL vmlinux 0x1bbf54c0 dma_set_mask -EXPORT_SYMBOL vmlinux 0x1bc379c4 i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0x1bc4ff03 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0x1be1559c page_cache_prev_hole -EXPORT_SYMBOL vmlinux 0x1be55283 scsi_print_sense -EXPORT_SYMBOL vmlinux 0x1be7310b led_blink_set -EXPORT_SYMBOL vmlinux 0x1bfec830 __iounmap_at -EXPORT_SYMBOL vmlinux 0x1c0ccddb blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0x1c200a7d pasemi_dma_stop_chan -EXPORT_SYMBOL vmlinux 0x1c25bbf2 phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0x1c299dca dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x1c37f68d __scsi_print_sense -EXPORT_SYMBOL vmlinux 0x1c3e02e4 memcmp -EXPORT_SYMBOL vmlinux 0x1c4dab93 _lv1_connect_irq_plug -EXPORT_SYMBOL vmlinux 0x1c557532 tcp_req_err -EXPORT_SYMBOL vmlinux 0x1c5b2c15 pmu_wait_complete -EXPORT_SYMBOL vmlinux 0x1c5e7d39 proc_create_data -EXPORT_SYMBOL vmlinux 0x1c6260ce clocksource_change_rating -EXPORT_SYMBOL vmlinux 0x1c69bb9b mmc_can_trim -EXPORT_SYMBOL vmlinux 0x1c80de9c ip_send_check -EXPORT_SYMBOL vmlinux 0x1c8a7e87 pci_reenable_device -EXPORT_SYMBOL vmlinux 0x1d0784ea vfs_writef -EXPORT_SYMBOL vmlinux 0x1d1056e5 crc32_be -EXPORT_SYMBOL vmlinux 0x1d3efe32 make_kgid -EXPORT_SYMBOL vmlinux 0x1d4750bc _lv1_stop_lpm -EXPORT_SYMBOL vmlinux 0x1d6354d1 dcache_dir_close -EXPORT_SYMBOL vmlinux 0x1d64aa9b d_drop -EXPORT_SYMBOL vmlinux 0x1d72fa38 register_shrinker -EXPORT_SYMBOL vmlinux 0x1d9f993b in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x1da9e1dd devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0x1daee28a percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0x1db7a18b jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x1db7ce2c inet6_bind -EXPORT_SYMBOL vmlinux 0x1dbc4d0c proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1df07cff of_device_is_available -EXPORT_SYMBOL vmlinux 0x1df12159 scm_fp_dup -EXPORT_SYMBOL vmlinux 0x1dfa0731 led_blink_set_oneshot -EXPORT_SYMBOL vmlinux 0x1dff21a9 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0x1e0dadb6 dns_query -EXPORT_SYMBOL vmlinux 0x1e25a8eb posix_unblock_lock -EXPORT_SYMBOL vmlinux 0x1e26b168 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev -EXPORT_SYMBOL vmlinux 0x1e368443 ipv6_push_nfrag_opts -EXPORT_SYMBOL vmlinux 0x1e42e39a ilookup5 -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e7acbd2 skb_vlan_push -EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1ea0ad02 address_space_init_once -EXPORT_SYMBOL vmlinux 0x1ea49538 devm_iounmap -EXPORT_SYMBOL vmlinux 0x1eaf6d0d nvm_dev_dma_free -EXPORT_SYMBOL vmlinux 0x1eb4e231 of_device_alloc -EXPORT_SYMBOL vmlinux 0x1ebc096f dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0x1ec03f52 register_console -EXPORT_SYMBOL vmlinux 0x1ec367ff sg_miter_next -EXPORT_SYMBOL vmlinux 0x1edb1667 gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x1ef2ea2e twl6040_get_pll -EXPORT_SYMBOL vmlinux 0x1ef66be4 pci_pme_capable -EXPORT_SYMBOL vmlinux 0x1f0a5276 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0x1f259de7 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0x1f2dfa7f generic_removexattr -EXPORT_SYMBOL vmlinux 0x1f4d1640 serio_rescan -EXPORT_SYMBOL vmlinux 0x1f6ce67a sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x1f77d9b8 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x1f7ff5bb of_find_compatible_node -EXPORT_SYMBOL vmlinux 0x1f95c8b9 sock_no_getname -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fcf784f dump_truncate -EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fd20062 migrate_page -EXPORT_SYMBOL vmlinux 0x1fe7b4ab pasemi_write_dma_reg -EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag -EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region -EXPORT_SYMBOL vmlinux 0x1ff8b577 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x201494ee _lv1_net_set_interrupt_mask -EXPORT_SYMBOL vmlinux 0x20176122 remap_pfn_range -EXPORT_SYMBOL vmlinux 0x204451ef path_put -EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool -EXPORT_SYMBOL vmlinux 0x204e5e68 tcf_register_action -EXPORT_SYMBOL vmlinux 0x205c0acd make_kuid -EXPORT_SYMBOL vmlinux 0x206f1802 nvm_get_blk_unlocked -EXPORT_SYMBOL vmlinux 0x206fdae3 follow_up -EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq -EXPORT_SYMBOL vmlinux 0x207b8201 dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x209d5068 ___pskb_trim -EXPORT_SYMBOL vmlinux 0x20a621c8 new_inode -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20b2f4b8 seq_open -EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf -EXPORT_SYMBOL vmlinux 0x20d03994 try_to_release_page -EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x21014b32 dm_kobject_release -EXPORT_SYMBOL vmlinux 0x21115060 filemap_fdatawait -EXPORT_SYMBOL vmlinux 0x211f68f1 getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x212f8918 __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x213603bf pasemi_dma_free_ring -EXPORT_SYMBOL vmlinux 0x21413daa __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x214ffb73 clocksource_unregister -EXPORT_SYMBOL vmlinux 0x2151f3f1 __cleancache_get_page -EXPORT_SYMBOL vmlinux 0x2154769f netdev_printk -EXPORT_SYMBOL vmlinux 0x215fc69a mount_nodev -EXPORT_SYMBOL vmlinux 0x218c380b scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0x21a1c470 netdev_features_change -EXPORT_SYMBOL vmlinux 0x21c20dc5 udp6_set_csum -EXPORT_SYMBOL vmlinux 0x21d33071 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0x21d68448 phy_resume -EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set -EXPORT_SYMBOL vmlinux 0x21f19335 fence_remove_callback -EXPORT_SYMBOL vmlinux 0x2200f5ee __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x220c380b netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x2234c709 framebuffer_release -EXPORT_SYMBOL vmlinux 0x225ebee6 _lv1_destruct_lpm -EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits -EXPORT_SYMBOL vmlinux 0x226b3839 simple_transaction_read -EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint -EXPORT_SYMBOL vmlinux 0x2277cde9 pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x2278e94b slhc_remember -EXPORT_SYMBOL vmlinux 0x227e8da9 touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x2286aa26 dev_add_offload -EXPORT_SYMBOL vmlinux 0x2296d634 blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0x22a49b71 max8925_bulk_read -EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22c69b65 nf_log_set -EXPORT_SYMBOL vmlinux 0x22d3adfb nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0x2305b34a up_read -EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs -EXPORT_SYMBOL vmlinux 0x232e2be9 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL vmlinux 0x2345ce65 mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0x234ed030 unlock_rename -EXPORT_SYMBOL vmlinux 0x235e90f3 __wake_up_bit -EXPORT_SYMBOL vmlinux 0x23812815 end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0x2384788f pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0x23889d88 __d_drop -EXPORT_SYMBOL vmlinux 0x23a2f380 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23bea578 passthru_features_check -EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0x23c9dcb0 inet_getname -EXPORT_SYMBOL vmlinux 0x23f2243d mempool_free -EXPORT_SYMBOL vmlinux 0x23f7e945 key_invalidate -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x241ac73a gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x242821d6 vme_bus_num -EXPORT_SYMBOL vmlinux 0x243fc217 __bforget -EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x24490d70 lwtunnel_cmp_encap -EXPORT_SYMBOL vmlinux 0x245952d5 blk_make_request -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x245ad0a7 neigh_seq_start -EXPORT_SYMBOL vmlinux 0x247b2b15 copy_page_from_iter -EXPORT_SYMBOL vmlinux 0x24803751 param_ops_long -EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf -EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x24855cba __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x24adfd66 pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0x24cfd438 _lv1_copy_lpm_trace_buffer -EXPORT_SYMBOL vmlinux 0x24d6b4a6 cur_cpu_spec -EXPORT_SYMBOL vmlinux 0x24f00380 ida_init -EXPORT_SYMBOL vmlinux 0x24f24e66 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0x24fb6477 padata_remove_cpu -EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function -EXPORT_SYMBOL vmlinux 0x25148634 lwtunnel_get_encap_size -EXPORT_SYMBOL vmlinux 0x2519ce4c unregister_binfmt -EXPORT_SYMBOL vmlinux 0x251ea9df filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0x25249cb4 skb_copy -EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register -EXPORT_SYMBOL vmlinux 0x252a2c57 dmam_alloc_coherent -EXPORT_SYMBOL vmlinux 0x253df775 blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x25433fc7 bioset_create_nobvec -EXPORT_SYMBOL vmlinux 0x25605937 security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0x25615136 arp_tbl -EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string -EXPORT_SYMBOL vmlinux 0x25736636 md_cluster_ops -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x25886eac wireless_spy_update -EXPORT_SYMBOL vmlinux 0x25887050 tty_unlock -EXPORT_SYMBOL vmlinux 0x259eae22 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x25b6b8f7 _lv1_set_spe_transition_notifier -EXPORT_SYMBOL vmlinux 0x25d31288 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x25df4535 scsi_host_get -EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x26477c07 __vmalloc -EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux -EXPORT_SYMBOL vmlinux 0x2651135e blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0x265235a1 __i2c_transfer -EXPORT_SYMBOL vmlinux 0x2665956a netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0x2665d53a key_create_or_update -EXPORT_SYMBOL vmlinux 0x2681878c bh_submit_read -EXPORT_SYMBOL vmlinux 0x2687dba1 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x26983305 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0x26b760c4 slhc_init -EXPORT_SYMBOL vmlinux 0x26beac39 sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0x26bee1b9 simple_empty -EXPORT_SYMBOL vmlinux 0x26c6f316 md_done_sync -EXPORT_SYMBOL vmlinux 0x26dbbf96 netif_skb_features -EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26e35d36 register_md_personality -EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min -EXPORT_SYMBOL vmlinux 0x2709d9b9 iterate_supers_type -EXPORT_SYMBOL vmlinux 0x272c94ec vfs_rename -EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0x27548078 scsi_execute -EXPORT_SYMBOL vmlinux 0x27646df3 start_thread -EXPORT_SYMBOL vmlinux 0x2767f690 d_walk -EXPORT_SYMBOL vmlinux 0x2771d7ff ida_get_new_above -EXPORT_SYMBOL vmlinux 0x277a5a94 gen_replace_estimator -EXPORT_SYMBOL vmlinux 0x2783280d __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x27925972 bitmap_startwrite -EXPORT_SYMBOL vmlinux 0x279809e9 xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27e1a049 printk -EXPORT_SYMBOL vmlinux 0x27f1f4e0 nf_afinfo -EXPORT_SYMBOL vmlinux 0x27f6d281 bio_reset -EXPORT_SYMBOL vmlinux 0x280d6d45 __inet_hash -EXPORT_SYMBOL vmlinux 0x280d8141 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x2811fcef devm_release_resource -EXPORT_SYMBOL vmlinux 0x2816190c xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x281d5664 dmam_free_coherent -EXPORT_SYMBOL vmlinux 0x28318305 snprintf -EXPORT_SYMBOL vmlinux 0x28322933 arp_xmit -EXPORT_SYMBOL vmlinux 0x2897060d dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x28990e5f vme_dma_list_add -EXPORT_SYMBOL vmlinux 0x289db3ee idr_remove -EXPORT_SYMBOL vmlinux 0x28a2b29f radix_tree_range_tag_if_tagged -EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x28a7beba __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x28abfe6e scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x28bf192b bio_add_pc_page -EXPORT_SYMBOL vmlinux 0x28c1cf66 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x28c304a4 simple_transaction_set -EXPORT_SYMBOL vmlinux 0x28c4a15b init_net -EXPORT_SYMBOL vmlinux 0x28e6ce45 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x290cccd2 tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0x2920af4c posix_lock_file -EXPORT_SYMBOL vmlinux 0x29223ea6 mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0x295562cb __bread_gfp -EXPORT_SYMBOL vmlinux 0x295a9e18 pci_set_dma_max_seg_size -EXPORT_SYMBOL vmlinux 0x2974937f scsi_mode_sense -EXPORT_SYMBOL vmlinux 0x298174fe stop_tty -EXPORT_SYMBOL vmlinux 0x2995c751 update_devfreq -EXPORT_SYMBOL vmlinux 0x29a1b03d tcp_proc_unregister -EXPORT_SYMBOL vmlinux 0x29b64585 mutex_trylock -EXPORT_SYMBOL vmlinux 0x29c7d43a macio_release_resources -EXPORT_SYMBOL vmlinux 0x29c7e649 __ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x29e877ff mount_pseudo -EXPORT_SYMBOL vmlinux 0x29f5435a max8925_set_bits -EXPORT_SYMBOL vmlinux 0x2a1c60f4 ibmebus_bus_type -EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy -EXPORT_SYMBOL vmlinux 0x2ac09dd5 __nla_put -EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat -EXPORT_SYMBOL vmlinux 0x2ada7710 security_inode_permission -EXPORT_SYMBOL vmlinux 0x2ae5b8fa __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0x2af002fa cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0x2af5d334 dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0x2b03a350 vme_dma_request -EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 -EXPORT_SYMBOL vmlinux 0x2b41b27a default_file_splice_read -EXPORT_SYMBOL vmlinux 0x2b4991ec xmon -EXPORT_SYMBOL vmlinux 0x2b4ead37 find_inode_nowait -EXPORT_SYMBOL vmlinux 0x2b90f460 scsi_report_opcode -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2b9f8d2b param_set_charp -EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency -EXPORT_SYMBOL vmlinux 0x2bce0688 pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0x2bfc9441 tcp_sendpage -EXPORT_SYMBOL vmlinux 0x2c0adebe cfb_imageblit -EXPORT_SYMBOL vmlinux 0x2c1cd4a4 cpu_present_mask -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c2688c5 of_match_device -EXPORT_SYMBOL vmlinux 0x2c27eac2 ps2_init -EXPORT_SYMBOL vmlinux 0x2c2996ab fb_firmware_edid -EXPORT_SYMBOL vmlinux 0x2c4c7997 _lv1_construct_lpm -EXPORT_SYMBOL vmlinux 0x2c7b1fca down_timeout -EXPORT_SYMBOL vmlinux 0x2c93d950 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0x2cb051c7 param_get_charp -EXPORT_SYMBOL vmlinux 0x2cdaab9f dev_mc_sync -EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0x2cf7e6a9 register_cdrom -EXPORT_SYMBOL vmlinux 0x2d0c9628 free_cgroup_ns -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -EXPORT_SYMBOL vmlinux 0x2d30be6d of_parse_phandle -EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d5df253 pci_get_class -EXPORT_SYMBOL vmlinux 0x2d5fe368 irq_set_chip -EXPORT_SYMBOL vmlinux 0x2d65f398 security_path_symlink -EXPORT_SYMBOL vmlinux 0x2d7d2767 _lv1_set_lpm_group_control -EXPORT_SYMBOL vmlinux 0x2d8aff8b bio_endio -EXPORT_SYMBOL vmlinux 0x2db1e0c6 dql_init -EXPORT_SYMBOL vmlinux 0x2dcd5ed2 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0x2dce7c33 cdrom_open -EXPORT_SYMBOL vmlinux 0x2dd3bd99 generic_key_instantiate -EXPORT_SYMBOL vmlinux 0x2de56ac3 alloc_fddidev -EXPORT_SYMBOL vmlinux 0x2dedad37 tso_build_data -EXPORT_SYMBOL vmlinux 0x2df3de84 sock_wake_async -EXPORT_SYMBOL vmlinux 0x2e064827 __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0x2e0d2f7f queue_work_on -EXPORT_SYMBOL vmlinux 0x2e0fd40f skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x2e12a93b ibmebus_request_irq -EXPORT_SYMBOL vmlinux 0x2e1cef06 dev_addr_init -EXPORT_SYMBOL vmlinux 0x2e24bb85 skb_queue_head -EXPORT_SYMBOL vmlinux 0x2e255ba2 skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0x2e263095 __secpath_destroy -EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat -EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies -EXPORT_SYMBOL vmlinux 0x2e3d0e03 ip6_frag_init -EXPORT_SYMBOL vmlinux 0x2e48f6f1 of_phy_is_fixed_link -EXPORT_SYMBOL vmlinux 0x2e593a27 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0x2e682163 bdgrab -EXPORT_SYMBOL vmlinux 0x2e93495e _lv1_write_htab_entry -EXPORT_SYMBOL vmlinux 0x2eae085e vga_put -EXPORT_SYMBOL vmlinux 0x2ee4337f smu_queue_cmd -EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0x2efdc0f0 tcp_make_synack -EXPORT_SYMBOL vmlinux 0x2effa8ae sk_ns_capable -EXPORT_SYMBOL vmlinux 0x2f03e5c5 ip_setsockopt -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource -EXPORT_SYMBOL vmlinux 0x2f163033 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0x2f287f0d copy_to_user -EXPORT_SYMBOL vmlinux 0x2f2b4ee0 flush_old_exec -EXPORT_SYMBOL vmlinux 0x2f3d9d71 fsnotify_put_group -EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag -EXPORT_SYMBOL vmlinux 0x2f8b0d67 audit_log_task_info -EXPORT_SYMBOL vmlinux 0x2f8dda4e gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x2f954a40 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0x2fa4765f pci_read_vpd -EXPORT_SYMBOL vmlinux 0x2fa5deb6 eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0x2fae96de rtas_data_buf_lock -EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fbce6f7 elevator_change -EXPORT_SYMBOL vmlinux 0x2fe1ec26 param_get_invbool -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2ff1f280 xfrm_input_resume -EXPORT_SYMBOL vmlinux 0x2ffe5b56 __ip_select_ident -EXPORT_SYMBOL vmlinux 0x30062d75 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x300bcfa3 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x301bbd90 param_set_int -EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command -EXPORT_SYMBOL vmlinux 0x30245285 vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable -EXPORT_SYMBOL vmlinux 0x307cfd30 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x3090fd4a security_mmap_file -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x3097a842 param_set_short -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30afaf58 pci_enable_msi_range -EXPORT_SYMBOL vmlinux 0x30b14c2e reservation_object_reserve_shared -EXPORT_SYMBOL vmlinux 0x30b8b35c cpu_to_chip_id -EXPORT_SYMBOL vmlinux 0x30e4d5b8 scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x30f37c7a generic_read_dir -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x310f02ec memremap -EXPORT_SYMBOL vmlinux 0x312cfaf2 _lv1_disable_logical_spe -EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present -EXPORT_SYMBOL vmlinux 0x3147857d default_red -EXPORT_SYMBOL vmlinux 0x31604d3d param_get_uint -EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear -EXPORT_SYMBOL vmlinux 0x31757f84 put_filp -EXPORT_SYMBOL vmlinux 0x3186c056 vfs_llseek -EXPORT_SYMBOL vmlinux 0x319007ec xfrm_register_km -EXPORT_SYMBOL vmlinux 0x3193b195 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x31b7f300 _lv1_set_lpm_signal -EXPORT_SYMBOL vmlinux 0x31cd509a _lv1_net_control -EXPORT_SYMBOL vmlinux 0x31cd995b store_fp_state -EXPORT_SYMBOL vmlinux 0x31d09d00 sock_wfree -EXPORT_SYMBOL vmlinux 0x31e0eeb5 skb_trim -EXPORT_SYMBOL vmlinux 0x31e141d4 param_get_bool -EXPORT_SYMBOL vmlinux 0x31e7bc74 fbcon_set_tileops -EXPORT_SYMBOL vmlinux 0x32067f94 ps3_dma_region_init -EXPORT_SYMBOL vmlinux 0x320bc8b6 inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0x323ee3ab d_rehash -EXPORT_SYMBOL vmlinux 0x324fecc0 __breadahead -EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src -EXPORT_SYMBOL vmlinux 0x325d884f pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x32768fc2 __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x327b9c1b pmu_poll_adb -EXPORT_SYMBOL vmlinux 0x328605ee netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0x32be7a89 loop_backing_file -EXPORT_SYMBOL vmlinux 0x32ce01ac node_data -EXPORT_SYMBOL vmlinux 0x32cfaefc blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x32e1cf09 __blk_end_request -EXPORT_SYMBOL vmlinux 0x32e6ff68 lwtunnel_build_state -EXPORT_SYMBOL vmlinux 0x32f0165a dma_common_mmap -EXPORT_SYMBOL vmlinux 0x33033969 vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0x331484db fget -EXPORT_SYMBOL vmlinux 0x333cb37c __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0x335b6c44 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x33842b5d dm_get_device -EXPORT_SYMBOL vmlinux 0x33941f1d param_array_ops -EXPORT_SYMBOL vmlinux 0x33a3acb7 serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x33afbfb4 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page -EXPORT_SYMBOL vmlinux 0x33bc4025 sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x33d01daf input_set_capability -EXPORT_SYMBOL vmlinux 0x33d3c5fc poll_freewait -EXPORT_SYMBOL vmlinux 0x33dd3c19 del_random_ready_callback -EXPORT_SYMBOL vmlinux 0x33e2b1b9 skb_checksum_help -EXPORT_SYMBOL vmlinux 0x33ec89e6 device_get_mac_address -EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x33f2eca4 __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x33f3d3ab of_phy_connect -EXPORT_SYMBOL vmlinux 0x33fab74b blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r -EXPORT_SYMBOL vmlinux 0x3402f659 jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x3417239d mpage_writepages -EXPORT_SYMBOL vmlinux 0x343d385f pcim_pin_device -EXPORT_SYMBOL vmlinux 0x344adbd5 init_cdrom_command -EXPORT_SYMBOL vmlinux 0x345c7ee9 key_alloc -EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin -EXPORT_SYMBOL vmlinux 0x347013de nla_validate -EXPORT_SYMBOL vmlinux 0x349075ce vc_cons -EXPORT_SYMBOL vmlinux 0x3492443e pcie_port_service_register -EXPORT_SYMBOL vmlinux 0x34937441 vga_con -EXPORT_SYMBOL vmlinux 0x349ab428 tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34bf0b7e mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0x34c9ead3 compat_ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x34cedbb6 fsnotify_add_mark -EXPORT_SYMBOL vmlinux 0x34d5cca8 redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0x34d722a8 __check_sticky -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x352623ad __sock_create -EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy -EXPORT_SYMBOL vmlinux 0x353c6f50 tcp_md5_hash_header -EXPORT_SYMBOL vmlinux 0x353d75ef blk_queue_split -EXPORT_SYMBOL vmlinux 0x35590be4 swiotlb_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x3563b47f agp_put_bridge -EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x35929034 set_cached_acl -EXPORT_SYMBOL vmlinux 0x3599bc3a mmc_set_blockcount -EXPORT_SYMBOL vmlinux 0x359abb7c neigh_connected_output -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35c32767 xor_altivec_2 -EXPORT_SYMBOL vmlinux 0x35f85450 jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x360ef05b iov_iter_kvec -EXPORT_SYMBOL vmlinux 0x3618cb2d ida_destroy -EXPORT_SYMBOL vmlinux 0x362f7df3 blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0x366f6d27 idr_destroy -EXPORT_SYMBOL vmlinux 0x368bfeed tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0x369e1115 kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0x36b0e732 try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x36b1bc8b sk_net_capable -EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc -EXPORT_SYMBOL vmlinux 0x36d865fa tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x36f4cd12 tty_port_init -EXPORT_SYMBOL vmlinux 0x36f85926 dqput -EXPORT_SYMBOL vmlinux 0x37082fcc __scsi_add_device -EXPORT_SYMBOL vmlinux 0x370da63e dev_activate -EXPORT_SYMBOL vmlinux 0x3711141c ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0x371902e9 _lv1_get_lpm_interrupt_status -EXPORT_SYMBOL vmlinux 0x371d2130 check_legacy_ioport -EXPORT_SYMBOL vmlinux 0x37344510 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x37383edd rtas_get_power_level -EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x37503b41 xfrm_init_state -EXPORT_SYMBOL vmlinux 0x3754b076 give_up_console -EXPORT_SYMBOL vmlinux 0x375d7533 mark_page_accessed -EXPORT_SYMBOL vmlinux 0x376aa5f5 tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37d23769 phy_write_mmd_indirect -EXPORT_SYMBOL vmlinux 0x37e0153d flex_array_prealloc -EXPORT_SYMBOL vmlinux 0x37f06264 inet_accept -EXPORT_SYMBOL vmlinux 0x37f19c58 jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0x37f70f65 mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0x38021760 iov_iter_advance -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x382501ae tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x382777ab _lv1_gpu_context_allocate -EXPORT_SYMBOL vmlinux 0x382bed55 netdev_crit -EXPORT_SYMBOL vmlinux 0x383da5f1 ipv6_select_ident -EXPORT_SYMBOL vmlinux 0x38434803 phy_device_register -EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x388a15eb neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x389b69df phys_mem_access_prot -EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list -EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38ac860c wait_iff_congested -EXPORT_SYMBOL vmlinux 0x38b825d1 idr_replace -EXPORT_SYMBOL vmlinux 0x38d79dee tty_port_destroy -EXPORT_SYMBOL vmlinux 0x38e1b977 shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x38fb9933 tty_std_termios -EXPORT_SYMBOL vmlinux 0x391d40ba neigh_parms_release -EXPORT_SYMBOL vmlinux 0x39292a87 from_kuid -EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x393ad165 __scsi_alloc_queue -EXPORT_SYMBOL vmlinux 0x393d4de9 crc32_le -EXPORT_SYMBOL vmlinux 0x393f6e09 blk_peek_request -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x3952c7e6 agp_generic_alloc_page -EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x39732482 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0x3977f46a mmc_power_restore_host -EXPORT_SYMBOL vmlinux 0x3988bf9d flush_icache_user_range -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0x39a754db file_update_time -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39b9894b set_binfmt -EXPORT_SYMBOL vmlinux 0x39ba61ab agp_generic_free_by_type -EXPORT_SYMBOL vmlinux 0x39c3166b grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0x39cdf63c wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0x39f3c011 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x3a001319 proto_register -EXPORT_SYMBOL vmlinux 0x3a4e30df tcf_em_register -EXPORT_SYMBOL vmlinux 0x3a506089 simple_follow_link -EXPORT_SYMBOL vmlinux 0x3a67d670 phy_ethtool_gset -EXPORT_SYMBOL vmlinux 0x3a684782 blk_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x3a7ec7b6 sync_inodes_sb -EXPORT_SYMBOL vmlinux 0x3a8040da iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region -EXPORT_SYMBOL vmlinux 0x3a9da597 generic_writepages -EXPORT_SYMBOL vmlinux 0x3aaf2f4d pci_bus_get -EXPORT_SYMBOL vmlinux 0x3ad66743 mac_find_mode -EXPORT_SYMBOL vmlinux 0x3afac35b vme_irq_request -EXPORT_SYMBOL vmlinux 0x3b29c350 dev_get_iflink -EXPORT_SYMBOL vmlinux 0x3b451b53 fs_bio_set -EXPORT_SYMBOL vmlinux 0x3b4fed6a macio_request_resources -EXPORT_SYMBOL vmlinux 0x3b5909f8 splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0x3b615a21 wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b7aa2f4 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0x3b8c3433 swiotlb_sync_single_for_device -EXPORT_SYMBOL vmlinux 0x3c3d2a2e inet_frag_kill -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c483012 radix_tree_delete -EXPORT_SYMBOL vmlinux 0x3c499a97 of_parse_phandle_with_args -EXPORT_SYMBOL vmlinux 0x3c574968 agp_alloc_bridge -EXPORT_SYMBOL vmlinux 0x3c67428f generic_getxattr -EXPORT_SYMBOL vmlinux 0x3c791b78 dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull -EXPORT_SYMBOL vmlinux 0x3c91ee06 max8998_bulk_write -EXPORT_SYMBOL vmlinux 0x3cb6774a pci_enable_msix -EXPORT_SYMBOL vmlinux 0x3cc4b0dc lg_lock_init -EXPORT_SYMBOL vmlinux 0x3cd4a634 load_nls -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3ce8efba phy_start -EXPORT_SYMBOL vmlinux 0x3cfa6767 bio_unmap_user -EXPORT_SYMBOL vmlinux 0x3d255f3b compat_nf_setsockopt -EXPORT_SYMBOL vmlinux 0x3d28ebaf nvm_unregister_target -EXPORT_SYMBOL vmlinux 0x3d71e160 register_netdevice -EXPORT_SYMBOL vmlinux 0x3d8e3e1b of_create_pci_dev -EXPORT_SYMBOL vmlinux 0x3d92e9e5 arp_create -EXPORT_SYMBOL vmlinux 0x3da657f4 skb_push -EXPORT_SYMBOL vmlinux 0x3db2db1e seq_release -EXPORT_SYMBOL vmlinux 0x3db663fe rwsem_down_write_failed -EXPORT_SYMBOL vmlinux 0x3dbf36c9 sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x3dc02a4e flex_array_free_parts -EXPORT_SYMBOL vmlinux 0x3dc18a47 sock_create_kern -EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3dff3dab find_get_pages_contig -EXPORT_SYMBOL vmlinux 0x3e067cfe blk_integrity_merge_rq -EXPORT_SYMBOL vmlinux 0x3e10e421 tso_start -EXPORT_SYMBOL vmlinux 0x3e16aad8 block_invalidatepage -EXPORT_SYMBOL vmlinux 0x3e180e27 inode_set_bytes -EXPORT_SYMBOL vmlinux 0x3e1e9329 generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0x3e286dca _lv1_get_rtc -EXPORT_SYMBOL vmlinux 0x3e475fa2 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x3e529171 dev_printk_emit -EXPORT_SYMBOL vmlinux 0x3e552e5d blk_queue_unprep_rq -EXPORT_SYMBOL vmlinux 0x3e63e4a4 copy_from_iter -EXPORT_SYMBOL vmlinux 0x3e6aa16b iov_iter_npages -EXPORT_SYMBOL vmlinux 0x3e71b71f tty_unthrottle -EXPORT_SYMBOL vmlinux 0x3e7964a1 inet_del_offload -EXPORT_SYMBOL vmlinux 0x3e7ee73b inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0x3e80b2ca of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0x3e84c780 nvm_addr_to_generic_mode -EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource -EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get -EXPORT_SYMBOL vmlinux 0x3e9e8e26 downgrade_write -EXPORT_SYMBOL vmlinux 0x3ea3ab10 _dev_info -EXPORT_SYMBOL vmlinux 0x3ea3e129 mapping_tagged -EXPORT_SYMBOL vmlinux 0x3ea42466 input_inject_event -EXPORT_SYMBOL vmlinux 0x3ead3bfb sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x3ebfb9de set_create_files_as -EXPORT_SYMBOL vmlinux 0x3ede07a9 sock_i_uid -EXPORT_SYMBOL vmlinux 0x3ef30c54 inet6_protos -EXPORT_SYMBOL vmlinux 0x3efcac6f tcp_ioctl -EXPORT_SYMBOL vmlinux 0x3efd9677 vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep -EXPORT_SYMBOL vmlinux 0x3f06a656 _lv1_construct_event_receive_port -EXPORT_SYMBOL vmlinux 0x3f2486fd blk_queue_softirq_done -EXPORT_SYMBOL vmlinux 0x3f3d3e1c finish_no_open -EXPORT_SYMBOL vmlinux 0x3f3d7bbd __serio_register_driver -EXPORT_SYMBOL vmlinux 0x3f406a3b enable_kernel_altivec -EXPORT_SYMBOL vmlinux 0x3f443072 jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f4e338b input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0x3f97ed59 kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x3f9a93e4 mfd_cell_enable -EXPORT_SYMBOL vmlinux 0x3fbfd6ed _lv1_gpu_open -EXPORT_SYMBOL vmlinux 0x3fce9168 netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x3fd2fd53 of_get_min_tck -EXPORT_SYMBOL vmlinux 0x3fde0326 pnv_cxl_alloc_hwirqs -EXPORT_SYMBOL vmlinux 0x3fe0d1c0 slhc_free -EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight -EXPORT_SYMBOL vmlinux 0x3fec048f sg_next -EXPORT_SYMBOL vmlinux 0x3ff01d2b uart_register_driver -EXPORT_SYMBOL vmlinux 0x3ff6002c mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0x3ff8e495 lg_local_unlock_cpu -EXPORT_SYMBOL vmlinux 0x4016aab3 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x4017cb58 blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x40192971 jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0x401964ba ip_do_fragment -EXPORT_SYMBOL vmlinux 0x402b8281 __request_module -EXPORT_SYMBOL vmlinux 0x4031e5d0 nd_namespace_blk_validate -EXPORT_SYMBOL vmlinux 0x40472a52 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x4058df89 napi_gro_flush -EXPORT_SYMBOL vmlinux 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds -EXPORT_SYMBOL vmlinux 0x405c3c1c sync_inode_metadata -EXPORT_SYMBOL vmlinux 0x40674929 mpage_readpage -EXPORT_SYMBOL vmlinux 0x406ac98d pci_unregister_driver -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40aee0d5 pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40cafc57 phy_attach -EXPORT_SYMBOL vmlinux 0x40cfcfb5 trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d11d3e blk_queue_init_tags -EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40dae27d buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0x40f0b412 pnv_cxl_release_hwirqs -EXPORT_SYMBOL vmlinux 0x40fee3c8 pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x411171e2 of_get_named_gpio_flags -EXPORT_SYMBOL vmlinux 0x4117b1ab input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x41276271 proto_unregister -EXPORT_SYMBOL vmlinux 0x4134abcf ps3_dma_region_create -EXPORT_SYMBOL vmlinux 0x41361807 _lv1_get_logical_ppe_id -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x4157bb9f bdget -EXPORT_SYMBOL vmlinux 0x4159c38f ioremap_wc -EXPORT_SYMBOL vmlinux 0x41650f88 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0x417d4c89 dcb_setapp -EXPORT_SYMBOL vmlinux 0x41851c71 crypto_sha1_update -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x419b4211 phy_stop -EXPORT_SYMBOL vmlinux 0x41a12325 register_framebuffer -EXPORT_SYMBOL vmlinux 0x41a15fd7 nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x41a16153 tcf_em_unregister -EXPORT_SYMBOL vmlinux 0x41a3fbf1 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x41a55d41 dev_crit -EXPORT_SYMBOL vmlinux 0x41baf194 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0x41bb941c srp_rport_put -EXPORT_SYMBOL vmlinux 0x41c242ee tcf_hash_create -EXPORT_SYMBOL vmlinux 0x41cffb22 devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0x41dbf4de _lv1_start_lpm -EXPORT_SYMBOL vmlinux 0x41ea3ad0 ping_prot -EXPORT_SYMBOL vmlinux 0x41f917af bio_flush_dcache_pages -EXPORT_SYMBOL vmlinux 0x42056e22 to_nd_btt -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x421b1ba4 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x421fe4fa neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0x42397936 simple_dentry_operations -EXPORT_SYMBOL vmlinux 0x42422d5a page_cache_next_hole -EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force -EXPORT_SYMBOL vmlinux 0x4280282f pci_match_id -EXPORT_SYMBOL vmlinux 0x42845adb iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x42c5db86 secpath_dup -EXPORT_SYMBOL vmlinux 0x42df7292 blk_stop_queue -EXPORT_SYMBOL vmlinux 0x42e9d924 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x42fb717d mmc_request_done -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x4322f931 of_graph_get_remote_port -EXPORT_SYMBOL vmlinux 0x4338a832 inet_offloads -EXPORT_SYMBOL vmlinux 0x433fdb90 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0x43474e01 generic_error_remove_page -EXPORT_SYMBOL vmlinux 0x4348d96b tcf_action_exec -EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x43564ed3 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 -EXPORT_SYMBOL vmlinux 0x4382a511 devm_gpiod_put_array -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x43a01f90 complete_all -EXPORT_SYMBOL vmlinux 0x43a78649 gen_pool_add_virt -EXPORT_SYMBOL vmlinux 0x43a8a777 fsnotify_destroy_mark -EXPORT_SYMBOL vmlinux 0x43b02781 fbcon_rotate_cw -EXPORT_SYMBOL vmlinux 0x43c018b4 netdev_notice -EXPORT_SYMBOL vmlinux 0x43cf49b9 simple_dname -EXPORT_SYMBOL vmlinux 0x43ded0c4 ata_std_end_eh -EXPORT_SYMBOL vmlinux 0x43e99fff elv_rb_del -EXPORT_SYMBOL vmlinux 0x43f044dc netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x43f84881 __find_get_block -EXPORT_SYMBOL vmlinux 0x440ab669 block_write_end -EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed -EXPORT_SYMBOL vmlinux 0x4416c23f nd_region_acquire_lane -EXPORT_SYMBOL vmlinux 0x442dca48 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0x442ee920 bdi_init -EXPORT_SYMBOL vmlinux 0x44386a9e sys_copyarea -EXPORT_SYMBOL vmlinux 0x4455146c generic_ro_fops -EXPORT_SYMBOL vmlinux 0x445719c5 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x445c46d5 i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0x448229cc input_register_handle -EXPORT_SYMBOL vmlinux 0x448488ce xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0x448b33b7 open_check_o_direct -EXPORT_SYMBOL vmlinux 0x448eac3e kmemdup -EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x44b5d3e0 __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0x44e87bbc pagevec_lookup_tag -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44eb192e wait_for_completion -EXPORT_SYMBOL vmlinux 0x450e56ab set_blocksize -EXPORT_SYMBOL vmlinux 0x451dad0f filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x454954be skb_copy_expand -EXPORT_SYMBOL vmlinux 0x4564459b _lv1_set_virtual_uart_param -EXPORT_SYMBOL vmlinux 0x45699072 get_super_thawed -EXPORT_SYMBOL vmlinux 0x456ef659 sys_imageblit -EXPORT_SYMBOL vmlinux 0x4570f0c8 vm_iomap_memory -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x45952f43 vlan_vid_add -EXPORT_SYMBOL vmlinux 0x45a01dea get_phy_device -EXPORT_SYMBOL vmlinux 0x45a55ec8 __iounmap -EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource -EXPORT_SYMBOL vmlinux 0x45c452b2 blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0x45cca34b param_get_string -EXPORT_SYMBOL vmlinux 0x45cfe80b pasemi_dma_free_flag -EXPORT_SYMBOL vmlinux 0x45d6d195 filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x45e3034b mb_cache_shrink -EXPORT_SYMBOL vmlinux 0x45f5f369 padata_do_serial -EXPORT_SYMBOL vmlinux 0x4612c59d down_trylock -EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x461ebfa0 __copy_tofrom_user -EXPORT_SYMBOL vmlinux 0x46241942 inet_frag_find -EXPORT_SYMBOL vmlinux 0x463d4a3b tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0x4657b1ab is_bad_inode -EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set -EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0x46897db3 __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x4689d613 i2c_transfer -EXPORT_SYMBOL vmlinux 0x46a2b9d9 __blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x46a347fe i2c_verify_client -EXPORT_SYMBOL vmlinux 0x46afd532 on_each_cpu_mask -EXPORT_SYMBOL vmlinux 0x46bd10e7 __sk_dst_check -EXPORT_SYMBOL vmlinux 0x46c3b687 ps3_dma_region_free -EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance -EXPORT_SYMBOL vmlinux 0x46c8381f pci_claim_resource -EXPORT_SYMBOL vmlinux 0x46cf55af inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x46d12956 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0x46d14026 pmac_suspend_agp_for_card -EXPORT_SYMBOL vmlinux 0x46dfa5dd input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x46eee7e7 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x46f89549 poll_schedule_timeout -EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg -EXPORT_SYMBOL vmlinux 0x470502d9 default_llseek -EXPORT_SYMBOL vmlinux 0x473d5240 mb_cache_entry_release -EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x474462cc __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x47499cda elv_register_queue -EXPORT_SYMBOL vmlinux 0x4751ccca call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0x47608718 fence_init -EXPORT_SYMBOL vmlinux 0x4765395f sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x477d86a2 phy_driver_register -EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x479b6a3c nvm_erase_blk -EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit -EXPORT_SYMBOL vmlinux 0x47b12fb8 ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0x47b1bcf7 netpoll_cleanup -EXPORT_SYMBOL vmlinux 0x47b8cf52 vfs_iter_write -EXPORT_SYMBOL vmlinux 0x47c2ba1e send_sig -EXPORT_SYMBOL vmlinux 0x4804b51e netif_napi_del -EXPORT_SYMBOL vmlinux 0x480efc3a udplite_prot -EXPORT_SYMBOL vmlinux 0x4815f22b _lv1_gpu_attribute -EXPORT_SYMBOL vmlinux 0x4829a47e memcpy -EXPORT_SYMBOL vmlinux 0x48399907 skb_pad -EXPORT_SYMBOL vmlinux 0x483b4685 __page_symlink -EXPORT_SYMBOL vmlinux 0x483b4738 jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0x48404b9a remove_wait_queue -EXPORT_SYMBOL vmlinux 0x4841bdee strnchr -EXPORT_SYMBOL vmlinux 0x4843a1b9 _lv1_delete_repository_node -EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days -EXPORT_SYMBOL vmlinux 0x486dcf08 bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0x486fe640 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0x4881efab pmac_get_partition -EXPORT_SYMBOL vmlinux 0x489ba801 sock_rfree -EXPORT_SYMBOL vmlinux 0x489e9b2d netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x489f8b80 skb_insert -EXPORT_SYMBOL vmlinux 0x48a023a8 noop_fsync -EXPORT_SYMBOL vmlinux 0x48a3e27a md_check_recovery -EXPORT_SYMBOL vmlinux 0x48b6fef4 no_llseek -EXPORT_SYMBOL vmlinux 0x48b7506a napi_disable -EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48c11bd2 pci_set_power_state -EXPORT_SYMBOL vmlinux 0x48c743e4 inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x48dc720d console_start -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x4922b624 of_phy_attach -EXPORT_SYMBOL vmlinux 0x4953c49d genphy_update_link -EXPORT_SYMBOL vmlinux 0x4956477c drop_super -EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init -EXPORT_SYMBOL vmlinux 0x495ec6eb pasemi_dma_alloc_buf -EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data -EXPORT_SYMBOL vmlinux 0x4978931a user_path_create -EXPORT_SYMBOL vmlinux 0x498cae0d inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x4991c9fd __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x49993b48 devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x49a4c8a4 fb_set_suspend -EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x49b9a751 __alloc_skb -EXPORT_SYMBOL vmlinux 0x49bc50ea blk_queue_find_tag -EXPORT_SYMBOL vmlinux 0x49bee355 single_open_size -EXPORT_SYMBOL vmlinux 0x49d630e8 sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x49f253db __register_chrdev -EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many -EXPORT_SYMBOL vmlinux 0x49f9834b icmpv6_send -EXPORT_SYMBOL vmlinux 0x49fa1ef7 ata_print_version -EXPORT_SYMBOL vmlinux 0x4a3e800b of_find_all_nodes -EXPORT_SYMBOL vmlinux 0x4a53ef52 pnv_cxl_get_irq_count -EXPORT_SYMBOL vmlinux 0x4a8961f5 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x4aa7612b jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0x4aa8ff8a generic_permission -EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk -EXPORT_SYMBOL vmlinux 0x4ac64da4 _lv1_select_virtual_address_space -EXPORT_SYMBOL vmlinux 0x4aca531a ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource -EXPORT_SYMBOL vmlinux 0x4ad2a57a opal_event_request -EXPORT_SYMBOL vmlinux 0x4ad725c9 netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x4adf1404 validate_sp -EXPORT_SYMBOL vmlinux 0x4aedce63 phy_stop_interrupts -EXPORT_SYMBOL vmlinux 0x4afc4d6b find_get_entry -EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize -EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure -EXPORT_SYMBOL vmlinux 0x4b1f8a63 scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0x4b3c0713 dump_align -EXPORT_SYMBOL vmlinux 0x4b3cb349 _lv1_destruct_io_irq_outlet -EXPORT_SYMBOL vmlinux 0x4b4116ba __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b6fcddc _lv1_set_spe_interrupt_mask -EXPORT_SYMBOL vmlinux 0x4b8326ff ida_remove -EXPORT_SYMBOL vmlinux 0x4b87b375 jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0x4b8dd34d alloc_disk_node -EXPORT_SYMBOL vmlinux 0x4b8e0733 neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x4b8f2f6d blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0x4b954e3e call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0x4baa02e6 tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get -EXPORT_SYMBOL vmlinux 0x4bb7bbc8 dev_mc_init -EXPORT_SYMBOL vmlinux 0x4be35976 param_set_byte -EXPORT_SYMBOL vmlinux 0x4bed99b3 __percpu_counter_add -EXPORT_SYMBOL vmlinux 0x4bf1e4cb d_alloc_name -EXPORT_SYMBOL vmlinux 0x4c04f7b1 param_get_ullong -EXPORT_SYMBOL vmlinux 0x4c11435a _raw_read_lock_bh -EXPORT_SYMBOL vmlinux 0x4c30515c d_find_alias -EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf -EXPORT_SYMBOL vmlinux 0x4c35a7fb __blk_run_queue -EXPORT_SYMBOL vmlinux 0x4c35e18b rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0x4c610838 __nlmsg_put -EXPORT_SYMBOL vmlinux 0x4c628d5b pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0x4c90a9c0 sock_get_timestamp -EXPORT_SYMBOL vmlinux 0x4ca4c6e9 alloc_disk -EXPORT_SYMBOL vmlinux 0x4ca95930 ata_dev_printk -EXPORT_SYMBOL vmlinux 0x4ca9669f scnprintf -EXPORT_SYMBOL vmlinux 0x4cab1194 rt6_lookup -EXPORT_SYMBOL vmlinux 0x4cc59f25 netdev_change_features -EXPORT_SYMBOL vmlinux 0x4cd19f82 set_security_override -EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval -EXPORT_SYMBOL vmlinux 0x4cedb776 free_user_ns -EXPORT_SYMBOL vmlinux 0x4d098591 mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0x4d16337b scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x4d1e6fc7 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0x4d1f2ff3 inode_sub_rsv_space -EXPORT_SYMBOL vmlinux 0x4d215776 __getblk_slow -EXPORT_SYMBOL vmlinux 0x4d267ea2 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0x4d34375a vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0x4d51016a devfreq_resume_device -EXPORT_SYMBOL vmlinux 0x4d643942 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0x4d6d69f4 of_match_node -EXPORT_SYMBOL vmlinux 0x4d791953 mempool_resize -EXPORT_SYMBOL vmlinux 0x4d7b5176 ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0x4d85e044 mdiobus_free -EXPORT_SYMBOL vmlinux 0x4d861e05 blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0x4d903b49 macio_enable_devres -EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4da75aa2 generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x4db1e5d5 d_move -EXPORT_SYMBOL vmlinux 0x4dd092d7 of_node_put -EXPORT_SYMBOL vmlinux 0x4dddd440 inode_init_owner -EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse -EXPORT_SYMBOL vmlinux 0x4e047344 bio_integrity_advance -EXPORT_SYMBOL vmlinux 0x4e1518b2 __quota_error -EXPORT_SYMBOL vmlinux 0x4e1bee86 peernet2id_alloc -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e388ffd dev_printk -EXPORT_SYMBOL vmlinux 0x4e53c28a skb_set_owner_w -EXPORT_SYMBOL vmlinux 0x4e5dc6af blk_queue_io_min -EXPORT_SYMBOL vmlinux 0x4e676c4c param_ops_charp -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e71cb40 filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x4e94dafa ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x4e9dffb5 ip_fast_csum -EXPORT_SYMBOL vmlinux 0x4ea4eaa8 init_task -EXPORT_SYMBOL vmlinux 0x4ead7311 generic_setlease -EXPORT_SYMBOL vmlinux 0x4edcf652 sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x4ef5407b i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f369951 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse -EXPORT_SYMBOL vmlinux 0x4f3e34e0 pagecache_write_begin -EXPORT_SYMBOL vmlinux 0x4f4748b9 vm_map_ram -EXPORT_SYMBOL vmlinux 0x4f664db6 _lv1_insert_htab_entry -EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday -EXPORT_SYMBOL vmlinux 0x4f79dd6e nla_reserve -EXPORT_SYMBOL vmlinux 0x4f7fd4e2 balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0x4f82473d input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0x4f8dbd6c set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0x4f8e22b5 __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0x4fb34195 sock_create_lite -EXPORT_SYMBOL vmlinux 0x4fc4f4be fasync_helper -EXPORT_SYMBOL vmlinux 0x4fde92c7 uart_suspend_port -EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command -EXPORT_SYMBOL vmlinux 0x4ff068c9 kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0x5003417d blk_mq_start_request -EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security -EXPORT_SYMBOL vmlinux 0x50130f11 blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0x5026c171 alloc_buffer_head -EXPORT_SYMBOL vmlinux 0x503014ae devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x50485f71 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0x5055d6a9 scsi_ioctl -EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x50685c71 iov_iter_copy_from_user_atomic -EXPORT_SYMBOL vmlinux 0x50700047 nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x5071491d sock_sendmsg -EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch -EXPORT_SYMBOL vmlinux 0x50ba769a kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0x50d1f057 nf_nat_decode_session_hook -EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x50e650c0 mmc_can_discard -EXPORT_SYMBOL vmlinux 0x50fc126f truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0x510f1dcd vfs_iter_read -EXPORT_SYMBOL vmlinux 0x51164ad9 cmdline_parts_set -EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0x514b6e46 xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0x51634ea6 tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0x517fa893 __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0x519b0da3 finish_wait -EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str -EXPORT_SYMBOL vmlinux 0x5203a42e get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0x521ed787 bio_uncopy_user -EXPORT_SYMBOL vmlinux 0x5226e773 __ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x522ef40a blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x52347c9b agp_generic_create_gatt_table -EXPORT_SYMBOL vmlinux 0x527830ff pmac_xpram_read -EXPORT_SYMBOL vmlinux 0x5284b2a6 rtnl_unicast -EXPORT_SYMBOL vmlinux 0x528e16ce freeze_super -EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x52af848c param_get_ulong -EXPORT_SYMBOL vmlinux 0x52e3fa05 _lv1_allocate_memory -EXPORT_SYMBOL vmlinux 0x53028126 dentry_needs_remove_privs -EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x531cb725 dst_alloc -EXPORT_SYMBOL vmlinux 0x531d4658 fixed_phy_update_state -EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x5334c632 netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0x5339f5f8 _lv1_read_virtual_uart -EXPORT_SYMBOL vmlinux 0x5342eecb kobject_put -EXPORT_SYMBOL vmlinux 0x53480d6d kobject_init -EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0x535ef6a5 napi_get_frags -EXPORT_SYMBOL vmlinux 0x536cc847 memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0x5377e556 hex2bin -EXPORT_SYMBOL vmlinux 0x53964380 register_key_type -EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x53a080dd inode_reclaim_rsv_space -EXPORT_SYMBOL vmlinux 0x53b98c4c scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x53bccdeb del_gendisk -EXPORT_SYMBOL vmlinux 0x53ebab1b _outsl_ns -EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x5412c7c7 up -EXPORT_SYMBOL vmlinux 0x54154515 devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x542d6924 vfs_create -EXPORT_SYMBOL vmlinux 0x543135f8 of_iomap -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x54547e0f param_get_byte -EXPORT_SYMBOL vmlinux 0x5461ea38 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x546a6753 uart_resume_port -EXPORT_SYMBOL vmlinux 0x54791777 unload_nls -EXPORT_SYMBOL vmlinux 0x5490064d xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x54a874e6 param_ops_invbool -EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul -EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window -EXPORT_SYMBOL vmlinux 0x54c403da bio_copy_kern -EXPORT_SYMBOL vmlinux 0x54c4d1bd uart_write_wakeup -EXPORT_SYMBOL vmlinux 0x54cafcea inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0x54d543f2 bitmap_endwrite -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x550a66ab compat_tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x55165d7b kobject_get -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu -EXPORT_SYMBOL vmlinux 0x55535a7d unregister_netdev -EXPORT_SYMBOL vmlinux 0x5555e2bb jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0x55570b91 inet_frag_maybe_warn_overflow -EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat -EXPORT_SYMBOL vmlinux 0x5568c553 complete -EXPORT_SYMBOL vmlinux 0x55773318 param_ops_int -EXPORT_SYMBOL vmlinux 0x5577ef9e udp_table -EXPORT_SYMBOL vmlinux 0x55795c92 scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x557b3dd8 _lv1_gpu_close -EXPORT_SYMBOL vmlinux 0x5594d7d0 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0x5599a299 migrate_page_copy -EXPORT_SYMBOL vmlinux 0x55a05e1c swiotlb_unmap_sg -EXPORT_SYMBOL vmlinux 0x55bd7690 mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0x55c41b39 inode_init_once -EXPORT_SYMBOL vmlinux 0x55cd6917 input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x55de4f3c tcp_parse_options -EXPORT_SYMBOL vmlinux 0x55e86fb8 jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x55f5019b __kmalloc_node -EXPORT_SYMBOL vmlinux 0x55f8e103 get_empty_filp -EXPORT_SYMBOL vmlinux 0x55fd6765 padata_alloc -EXPORT_SYMBOL vmlinux 0x560ee123 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x564bfbdd kobject_add -EXPORT_SYMBOL vmlinux 0x56564a12 tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0x5662b1ce netdev_emerg -EXPORT_SYMBOL vmlinux 0x568804ee _lv1_destruct_event_receive_port -EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames -EXPORT_SYMBOL vmlinux 0x56a17dee blk_alloc_queue_node -EXPORT_SYMBOL vmlinux 0x56a5ca26 __page_cache_alloc -EXPORT_SYMBOL vmlinux 0x56c2b95b rtas_progress -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56dd93da compat_sock_get_timestampns -EXPORT_SYMBOL vmlinux 0x56ddd997 smp_call_function_many -EXPORT_SYMBOL vmlinux 0x56f6c7de lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x57159f84 bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x5717fce4 mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0x572393d3 touch_atime -EXPORT_SYMBOL vmlinux 0x57253a32 tcp_destroy_cgroup -EXPORT_SYMBOL vmlinux 0x572647d6 get_mce_fault_addr -EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt -EXPORT_SYMBOL vmlinux 0x5737f978 mutex_lock -EXPORT_SYMBOL vmlinux 0x57393ef6 __skb_get_hash -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x57587246 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x576946d2 led_update_brightness -EXPORT_SYMBOL vmlinux 0x5771f964 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0x57787c8e flow_cache_lookup -EXPORT_SYMBOL vmlinux 0x577d35f3 hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x5783a287 kernel_listen -EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy -EXPORT_SYMBOL vmlinux 0x579bab50 _lv1_gpu_memory_free -EXPORT_SYMBOL vmlinux 0x579d2c34 qdisc_list_del -EXPORT_SYMBOL vmlinux 0x57d50427 tty_port_put -EXPORT_SYMBOL vmlinux 0x581a917f dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x58224f82 udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep -EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat -EXPORT_SYMBOL vmlinux 0x5896a755 netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x58a30f75 dm_io -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58f13f5b nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x5900853e param_set_ulong -EXPORT_SYMBOL vmlinux 0x590490c5 pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0x590576cd ps2_sendbyte -EXPORT_SYMBOL vmlinux 0x5912b5a8 __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x5947ecc8 blk_mq_can_queue -EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map -EXPORT_SYMBOL vmlinux 0x5959d093 netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0x595d0946 empty_zero_page -EXPORT_SYMBOL vmlinux 0x5984589a skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0x59873ca0 inet_dgram_connect -EXPORT_SYMBOL vmlinux 0x598bdf39 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x59a56579 sock_setsockopt -EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release -EXPORT_SYMBOL vmlinux 0x59b3378a completion_done -EXPORT_SYMBOL vmlinux 0x59d7058d bioset_integrity_create -EXPORT_SYMBOL vmlinux 0x59d790be seq_printf -EXPORT_SYMBOL vmlinux 0x59d95bc7 tty_mutex -EXPORT_SYMBOL vmlinux 0x59f3bd4a xfrm_unregister_mode -EXPORT_SYMBOL vmlinux 0x59f821af blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x5a025f7b arch_local_irq_restore -EXPORT_SYMBOL vmlinux 0x5a03734b scsi_cmd_blk_ioctl -EXPORT_SYMBOL vmlinux 0x5a045798 dst_discard_out -EXPORT_SYMBOL vmlinux 0x5a0aaa12 proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a20330c param_set_invbool -EXPORT_SYMBOL vmlinux 0x5a2cda3e trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0x5a3c2658 init_special_inode -EXPORT_SYMBOL vmlinux 0x5a4acd68 i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0x5a6b63be to_ndd -EXPORT_SYMBOL vmlinux 0x5a921311 strncmp -EXPORT_SYMBOL vmlinux 0x5a9b3dcd note_scsi_host -EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove -EXPORT_SYMBOL vmlinux 0x5aa146d7 jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x5aa3d108 nlmsg_notify -EXPORT_SYMBOL vmlinux 0x5aa95ff4 import_iovec -EXPORT_SYMBOL vmlinux 0x5ab99c7b blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0x5adea85e migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0x5af21b19 nvm_free_rqd_ppalist -EXPORT_SYMBOL vmlinux 0x5afc7736 __invalidate_device -EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get -EXPORT_SYMBOL vmlinux 0x5b3b91dc i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0x5b43f1f1 rtas_service_present -EXPORT_SYMBOL vmlinux 0x5b54a314 inet_frags_fini -EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap -EXPORT_SYMBOL vmlinux 0x5b5894ca truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x5b6be9bd proc_mkdir -EXPORT_SYMBOL vmlinux 0x5b7a26b2 rtas -EXPORT_SYMBOL vmlinux 0x5b87c0a9 security_path_rename -EXPORT_SYMBOL vmlinux 0x5b9828c5 dma_spin_lock -EXPORT_SYMBOL vmlinux 0x5b9a2f3c security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0x5b9da316 __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0x5bc10524 printk_emit -EXPORT_SYMBOL vmlinux 0x5bd2f951 __sb_end_write -EXPORT_SYMBOL vmlinux 0x5bfb5df0 dma_pool_create -EXPORT_SYMBOL vmlinux 0x5c00f8b7 netlink_capable -EXPORT_SYMBOL vmlinux 0x5c354866 neigh_changeaddr -EXPORT_SYMBOL vmlinux 0x5c37f319 _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x5c3b0b0c input_unregister_device -EXPORT_SYMBOL vmlinux 0x5c51b09b remap_vmalloc_range_partial -EXPORT_SYMBOL vmlinux 0x5c70cbff pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0x5c817f00 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0x5cbd4e50 tcp_release_cb -EXPORT_SYMBOL vmlinux 0x5cc32bdc bitmap_copy_le -EXPORT_SYMBOL vmlinux 0x5ccc9045 _lv1_close_device -EXPORT_SYMBOL vmlinux 0x5ccf20f0 __napi_schedule -EXPORT_SYMBOL vmlinux 0x5cf30e10 __debugger_ipi -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5cff7cd1 locks_free_lock -EXPORT_SYMBOL vmlinux 0x5d37be92 scsi_init_io -EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain -EXPORT_SYMBOL vmlinux 0x5d5f5870 skb_pull -EXPORT_SYMBOL vmlinux 0x5d6cbcaf d_set_d_op -EXPORT_SYMBOL vmlinux 0x5d706a64 netdev_alert -EXPORT_SYMBOL vmlinux 0x5d8a80eb cleancache_register_ops -EXPORT_SYMBOL vmlinux 0x5d9bbd05 dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0x5d9fe185 blk_put_queue -EXPORT_SYMBOL vmlinux 0x5db5e899 padata_free -EXPORT_SYMBOL vmlinux 0x5db6951e dm_register_target -EXPORT_SYMBOL vmlinux 0x5db6a4a9 get_user_pages_locked -EXPORT_SYMBOL vmlinux 0x5de367b4 km_policy_expired -EXPORT_SYMBOL vmlinux 0x5df2bb44 writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x5dfcc686 devm_gpiod_get_array -EXPORT_SYMBOL vmlinux 0x5e0096bb sock_efree -EXPORT_SYMBOL vmlinux 0x5e0deb89 mmc_free_host -EXPORT_SYMBOL vmlinux 0x5e149595 rtmsg_ifinfo -EXPORT_SYMBOL vmlinux 0x5e14b819 sget -EXPORT_SYMBOL vmlinux 0x5e263b88 cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0x5e270404 scsi_device_resume -EXPORT_SYMBOL vmlinux 0x5e3a8a9c __wake_up -EXPORT_SYMBOL vmlinux 0x5e5dbeed pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5eb1ed25 invalidate_partition -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5edb084f scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x5eddb914 lockref_put_return -EXPORT_SYMBOL vmlinux 0x5ede1168 fb_find_mode -EXPORT_SYMBOL vmlinux 0x5edf3f76 sock_release -EXPORT_SYMBOL vmlinux 0x5ef1f6d1 skb_queue_purge -EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 -EXPORT_SYMBOL vmlinux 0x5f0600fd mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f3b5b00 kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0x5f46a928 led_set_brightness -EXPORT_SYMBOL vmlinux 0x5f55e3d4 netif_carrier_on -EXPORT_SYMBOL vmlinux 0x5f5773ed load_nls_default -EXPORT_SYMBOL vmlinux 0x5f6395b6 nf_register_hooks -EXPORT_SYMBOL vmlinux 0x5f8a2728 isa_io_base -EXPORT_SYMBOL vmlinux 0x5fd1391a finish_open -EXPORT_SYMBOL vmlinux 0x5fd46d81 generic_file_splice_read -EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat -EXPORT_SYMBOL vmlinux 0x5fea2f3e wake_up_process -EXPORT_SYMBOL vmlinux 0x5ffbabd2 d_instantiate_unique -EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool -EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x600ff3b4 __elv_add_request -EXPORT_SYMBOL vmlinux 0x6014bb3c page_waitqueue -EXPORT_SYMBOL vmlinux 0x601c1273 scsi_device_get -EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x602b475a sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x60415c84 dev_set_mtu -EXPORT_SYMBOL vmlinux 0x604ad40c qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x605f3e34 pci_find_hose_for_OF_device -EXPORT_SYMBOL vmlinux 0x6062f401 padata_stop -EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number -EXPORT_SYMBOL vmlinux 0x607940c1 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector -EXPORT_SYMBOL vmlinux 0x609c61f8 generic_delete_inode -EXPORT_SYMBOL vmlinux 0x609ebdb9 udp_prot -EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60af65fa generic_setxattr -EXPORT_SYMBOL vmlinux 0x60b2ce2b cfb_copyarea -EXPORT_SYMBOL vmlinux 0x60cf6d90 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x60d62ceb of_get_ddr_timings -EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x60ee2244 mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0x60f122e0 phy_read_mmd_indirect -EXPORT_SYMBOL vmlinux 0x61229b10 node_to_cpumask_map -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x6129ab68 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0x61468394 udp_set_csum -EXPORT_SYMBOL vmlinux 0x6149a427 mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0x614bb773 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x614ed439 ilookup -EXPORT_SYMBOL vmlinux 0x6164a0e0 d_add_ci -EXPORT_SYMBOL vmlinux 0x616a804c tcp_poll -EXPORT_SYMBOL vmlinux 0x617d8a72 xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0x618911fc numa_node -EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x61a4487c _lv1_gpu_device_unmap -EXPORT_SYMBOL vmlinux 0x61b2715b bio_integrity_prep -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61d45e70 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x61dcdcd3 _lv1_pause -EXPORT_SYMBOL vmlinux 0x61dcf24a trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x61eef2c9 _insb -EXPORT_SYMBOL vmlinux 0x61ef6170 __tracepoint_fence_emit -EXPORT_SYMBOL vmlinux 0x61f52f88 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0x61f64eb6 __nd_driver_register -EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x6225637e md5_transform -EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x62538167 slhc_toss -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x62a91e50 devm_ioremap -EXPORT_SYMBOL vmlinux 0x62bb411a blk_free_tags -EXPORT_SYMBOL vmlinux 0x62e8b603 dev_change_flags -EXPORT_SYMBOL vmlinux 0x62f673b9 mach_maple -EXPORT_SYMBOL vmlinux 0x62fb3e0d security_path_chown -EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled -EXPORT_SYMBOL vmlinux 0x63277fac truncate_pagecache -EXPORT_SYMBOL vmlinux 0x633449bc kill_anon_super -EXPORT_SYMBOL vmlinux 0x633669c0 __generic_file_fsync -EXPORT_SYMBOL vmlinux 0x63396aec __debugger_break_match -EXPORT_SYMBOL vmlinux 0x63479e60 blk_mq_delay_queue -EXPORT_SYMBOL vmlinux 0x6360d639 cpu_all_bits -EXPORT_SYMBOL vmlinux 0x637b9321 elv_unregister_queue -EXPORT_SYMBOL vmlinux 0x638c0780 pcim_iomap_table -EXPORT_SYMBOL vmlinux 0x6397eaed unmap_underlying_metadata -EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63ac55f5 padata_unregister_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x63bdc4e0 simple_pin_fs -EXPORT_SYMBOL vmlinux 0x63c0aa1a acl_by_type -EXPORT_SYMBOL vmlinux 0x63c4c5fa scsi_dma_map -EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63da34da sync_filesystem -EXPORT_SYMBOL vmlinux 0x63e9ef0c __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63f75920 _lv1_construct_virtual_address_space -EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user -EXPORT_SYMBOL vmlinux 0x6401d928 i2c_use_client -EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x6415622c blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0x643db744 proc_set_size -EXPORT_SYMBOL vmlinux 0x644eee7c serio_close -EXPORT_SYMBOL vmlinux 0x6467ad37 inet_bind -EXPORT_SYMBOL vmlinux 0x646cc6ab pmu_poll -EXPORT_SYMBOL vmlinux 0x64787dad generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0x647ee1cd generic_show_options -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x64a1ad6e swiotlb_free_coherent -EXPORT_SYMBOL vmlinux 0x64afd13d insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0x64b266b5 pci_dev_get -EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape -EXPORT_SYMBOL vmlinux 0x64cfd8da single_release -EXPORT_SYMBOL vmlinux 0x64f794f3 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0x64f84f58 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x64fb6e9e zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0x64fd5402 blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0x650a430f dquot_destroy -EXPORT_SYMBOL vmlinux 0x65102e40 seq_pad -EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth -EXPORT_SYMBOL vmlinux 0x6516ad8e d_genocide -EXPORT_SYMBOL vmlinux 0x651a4139 test_taint -EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x654b655f blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x6556eff6 __module_get -EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem -EXPORT_SYMBOL vmlinux 0x6573db21 __vio_register_driver -EXPORT_SYMBOL vmlinux 0x6574c904 blk_integrity_merge_bio -EXPORT_SYMBOL vmlinux 0x65869081 simple_fill_super -EXPORT_SYMBOL vmlinux 0x65902959 devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0x65a2a157 tty_vhangup -EXPORT_SYMBOL vmlinux 0x65bb58a2 _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x65c8db9c register_netdev -EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier -EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x65eedc4e devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x66136541 pmac_register_agp_pm -EXPORT_SYMBOL vmlinux 0x661744da buffer_migrate_page -EXPORT_SYMBOL vmlinux 0x661f2d00 nd_device_unregister -EXPORT_SYMBOL vmlinux 0x66336c92 simple_dir_operations -EXPORT_SYMBOL vmlinux 0x6638a67e blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0x66398586 kfree_skb_list -EXPORT_SYMBOL vmlinux 0x664f97fe release_firmware -EXPORT_SYMBOL vmlinux 0x66754be3 gen_new_estimator -EXPORT_SYMBOL vmlinux 0x6688df4b of_get_next_parent -EXPORT_SYMBOL vmlinux 0x6693e44a pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0x66949ee7 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0x66a004f0 backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x66ab9f28 seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0x66ad1cb3 _lv1_set_lpm_general_control -EXPORT_SYMBOL vmlinux 0x66af84d0 phy_suspend -EXPORT_SYMBOL vmlinux 0x66cbf14b pmac_xpram_write -EXPORT_SYMBOL vmlinux 0x66e6018f mach_powermac -EXPORT_SYMBOL vmlinux 0x66efa9ac xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0x66f033d4 dump_page -EXPORT_SYMBOL vmlinux 0x6712d301 of_io_request_and_map -EXPORT_SYMBOL vmlinux 0x671fb21f d_make_root -EXPORT_SYMBOL vmlinux 0x67209957 path_get -EXPORT_SYMBOL vmlinux 0x672b157a xfrm_prepare_input -EXPORT_SYMBOL vmlinux 0x6739b7cb blk_requeue_request -EXPORT_SYMBOL vmlinux 0x673bdc56 rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges -EXPORT_SYMBOL vmlinux 0x6749624c dquot_free_inode -EXPORT_SYMBOL vmlinux 0x675f0a4c phy_disconnect -EXPORT_SYMBOL vmlinux 0x6769eec7 dev_set_group -EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create -EXPORT_SYMBOL vmlinux 0x678992ff napi_complete_done -EXPORT_SYMBOL vmlinux 0x67a43383 fddi_type_trans -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67d4ecfa tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x681e5424 forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x68267381 sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x68291628 generic_make_request -EXPORT_SYMBOL vmlinux 0x68340527 vm_insert_pfn -EXPORT_SYMBOL vmlinux 0x68609857 complete_and_exit -EXPORT_SYMBOL vmlinux 0x686884d7 pci_iounmap -EXPORT_SYMBOL vmlinux 0x686fb2af filp_open -EXPORT_SYMBOL vmlinux 0x6872ca87 pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x689323e5 lwtunnel_fill_encap -EXPORT_SYMBOL vmlinux 0x689a52e5 scsi_host_put -EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages -EXPORT_SYMBOL vmlinux 0x68b14223 elv_rb_find -EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x68bd57e9 netdev_update_features -EXPORT_SYMBOL vmlinux 0x68cb9723 msi_bitmap_free_hwirqs -EXPORT_SYMBOL vmlinux 0x68cca752 ip_options_compile -EXPORT_SYMBOL vmlinux 0x68d684d4 __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0x68d6b1f0 up_write -EXPORT_SYMBOL vmlinux 0x68d81ffd jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x68e1ef51 smu_present -EXPORT_SYMBOL vmlinux 0x68fa25f2 pnv_pci_get_npu_dev -EXPORT_SYMBOL vmlinux 0x69011719 ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x69495799 blk_rq_init -EXPORT_SYMBOL vmlinux 0x696d3e18 gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x697642e6 phy_connect_direct -EXPORT_SYMBOL vmlinux 0x6987c9c4 d_prune_aliases -EXPORT_SYMBOL vmlinux 0x699ccbf8 _lv1_deconfigure_virtual_uart_irq -EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be -EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource -EXPORT_SYMBOL vmlinux 0x69a80137 genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x69a94206 devm_gpio_request_one -EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint -EXPORT_SYMBOL vmlinux 0x69b4e9d6 ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0x69e90df2 gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0x69eef71a dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a1aeb60 blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x6a244552 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0x6a30585f devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x6a42fb4f nobh_write_end -EXPORT_SYMBOL vmlinux 0x6a46a6d5 netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x6a542618 vme_slave_request -EXPORT_SYMBOL vmlinux 0x6a5b2462 neigh_xmit -EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask -EXPORT_SYMBOL vmlinux 0x6a73d3dd inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable -EXPORT_SYMBOL vmlinux 0x6a86a452 d_instantiate_no_diralias -EXPORT_SYMBOL vmlinux 0x6ac0705b prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0x6ac0aa1c lock_rename -EXPORT_SYMBOL vmlinux 0x6ac2d0d6 shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be -EXPORT_SYMBOL vmlinux 0x6ae6e145 input_register_handler -EXPORT_SYMBOL vmlinux 0x6aea69b0 elv_rb_former_request -EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x6b0f8e24 nvm_submit_ppa -EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname -EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b358cab _lv1_read_repository_node -EXPORT_SYMBOL vmlinux 0x6b37a403 neigh_ifdown -EXPORT_SYMBOL vmlinux 0x6b387694 _lv1_end_of_interrupt_ext -EXPORT_SYMBOL vmlinux 0x6b589a6e _lv1_net_add_multicast_address -EXPORT_SYMBOL vmlinux 0x6b5dfe73 __debugger_bpt -EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy -EXPORT_SYMBOL vmlinux 0x6b65dd80 bd_set_size -EXPORT_SYMBOL vmlinux 0x6b66c889 fence_free -EXPORT_SYMBOL vmlinux 0x6b6f0c4b _lv1_create_repository_node -EXPORT_SYMBOL vmlinux 0x6b71ac90 devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0x6b73b49c tty_check_change -EXPORT_SYMBOL vmlinux 0x6bb2f890 dev_emerg -EXPORT_SYMBOL vmlinux 0x6bb9bab7 eth_gro_complete -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x6be2fc42 freezing_slow_path -EXPORT_SYMBOL vmlinux 0x6beec933 max8925_bulk_write -EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer -EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat -EXPORT_SYMBOL vmlinux 0x6c562f68 mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c628bfb msi_bitmap_alloc_hwirqs -EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min -EXPORT_SYMBOL vmlinux 0x6c86d761 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0x6c8dd30e netlink_unicast -EXPORT_SYMBOL vmlinux 0x6c95ea25 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x6c9c64ed would_dump -EXPORT_SYMBOL vmlinux 0x6cb37127 flex_array_clear -EXPORT_SYMBOL vmlinux 0x6cc156d9 kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x6cd40fc6 tty_port_close_start -EXPORT_SYMBOL vmlinux 0x6cd6fa65 blk_queue_bounce -EXPORT_SYMBOL vmlinux 0x6cdffa84 __mutex_init -EXPORT_SYMBOL vmlinux 0x6d0b578e sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x6d1743eb _lv1_get_total_execution_time -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d30e5fe pci_dev_put -EXPORT_SYMBOL vmlinux 0x6d520175 of_get_ibm_chip_id -EXPORT_SYMBOL vmlinux 0x6d5b32e5 pci_remove_bus -EXPORT_SYMBOL vmlinux 0x6d5f356b mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0x6d740223 flex_array_put -EXPORT_SYMBOL vmlinux 0x6d7480da blk_queue_make_request -EXPORT_SYMBOL vmlinux 0x6da33f99 fb_get_mode -EXPORT_SYMBOL vmlinux 0x6da928f4 _insw_ns -EXPORT_SYMBOL vmlinux 0x6da99516 __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0x6dbe2d5f dqget -EXPORT_SYMBOL vmlinux 0x6dd49d93 skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6df241fd vfs_getxattr_alloc -EXPORT_SYMBOL vmlinux 0x6dfb08aa tcp_check_req -EXPORT_SYMBOL vmlinux 0x6e0644b9 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0x6e270237 fput -EXPORT_SYMBOL vmlinux 0x6e2d2b78 mmc_flush_cache -EXPORT_SYMBOL vmlinux 0x6e2e870e vme_slot_num -EXPORT_SYMBOL vmlinux 0x6e3be2f3 pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x6e3d0758 send_sig_info -EXPORT_SYMBOL vmlinux 0x6e48b73d nvm_get_blk -EXPORT_SYMBOL vmlinux 0x6e66e88c key_link -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e75ae68 devm_gpiod_get_optional -EXPORT_SYMBOL vmlinux 0x6e76aded simple_statfs -EXPORT_SYMBOL vmlinux 0x6e7f0fd2 cmdline_parts_parse -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6eaeb65b delete_from_page_cache -EXPORT_SYMBOL vmlinux 0x6ebe2263 genphy_config_aneg -EXPORT_SYMBOL vmlinux 0x6ebfde1c udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0x6ed1de1f ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0x6ed26e1e sg_miter_start -EXPORT_SYMBOL vmlinux 0x6ed805da kern_path -EXPORT_SYMBOL vmlinux 0x6ee2cca2 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0x6eed1807 mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0x6f1ab66b copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash -EXPORT_SYMBOL vmlinux 0x6f392fa0 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0x6f3dd699 kill_bdev -EXPORT_SYMBOL vmlinux 0x6f423e48 md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0x6f70f7fa key_validate -EXPORT_SYMBOL vmlinux 0x6f726652 ipv4_specific -EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x6fa331ed _lv1_construct_io_irq_outlet -EXPORT_SYMBOL vmlinux 0x6fa6d77c dev_deactivate -EXPORT_SYMBOL vmlinux 0x6fb32890 scsi_remove_target -EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag -EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fcdf6ca inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x6fd1f70a wait_on_page_bit -EXPORT_SYMBOL vmlinux 0x70058f29 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0x701699b2 _lv1_set_spe_privilege_state_area_1_register -EXPORT_SYMBOL vmlinux 0x7048c60e blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0x704cf59d ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0x704d89d7 pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq -EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma -EXPORT_SYMBOL vmlinux 0x7061d3ca blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0x7066792f xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync -EXPORT_SYMBOL vmlinux 0x707741fa security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0x707e440e datagram_poll -EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x70cf743c mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0x70e5f76a input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x70ece5c7 dmam_alloc_noncoherent -EXPORT_SYMBOL vmlinux 0x70f86c70 pmu_queue_request -EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match -EXPORT_SYMBOL vmlinux 0x7102cd15 cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x7103337b security_path_rmdir -EXPORT_SYMBOL vmlinux 0x711301a2 textsearch_destroy -EXPORT_SYMBOL vmlinux 0x711cbc03 get_task_exe_file -EXPORT_SYMBOL vmlinux 0x7128d7a9 phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x714f0051 pci_bus_type -EXPORT_SYMBOL vmlinux 0x716c9d45 blk_integrity_register -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x7171c422 misc_deregister -EXPORT_SYMBOL vmlinux 0x7181b06e qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x7184d253 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x7196735d follow_down -EXPORT_SYMBOL vmlinux 0x71990f43 generic_shutdown_super -EXPORT_SYMBOL vmlinux 0x71a129fd netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev -EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71a98577 netlink_set_err -EXPORT_SYMBOL vmlinux 0x71aa433d udp6_csum_init -EXPORT_SYMBOL vmlinux 0x71ab81ea nvm_register_target -EXPORT_SYMBOL vmlinux 0x71cbc134 unlock_new_inode -EXPORT_SYMBOL vmlinux 0x720f2224 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0x72346552 __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0x7236a315 devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0x7248ec82 dev_change_carrier -EXPORT_SYMBOL vmlinux 0x72556f95 neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0x725e6450 uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0x725fd887 nla_append -EXPORT_SYMBOL vmlinux 0x72890f8e register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x729b4a83 _lv1_get_spe_all_interrupt_statuses -EXPORT_SYMBOL vmlinux 0x72a5f6c8 paca -EXPORT_SYMBOL vmlinux 0x72ab097c seq_release_private -EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma -EXPORT_SYMBOL vmlinux 0x72b34db4 generic_perform_write -EXPORT_SYMBOL vmlinux 0x72b5bf9e netdev_warn -EXPORT_SYMBOL vmlinux 0x72b6fa56 fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x72c5c384 input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0x72c98139 __arch_hweight64 -EXPORT_SYMBOL vmlinux 0x72ca9aaa devm_ioport_map -EXPORT_SYMBOL vmlinux 0x72dc6d18 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config -EXPORT_SYMBOL vmlinux 0x731a747a pci_io_base -EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf -EXPORT_SYMBOL vmlinux 0x73513edc i2c_put_adapter -EXPORT_SYMBOL vmlinux 0x7353063e d_delete -EXPORT_SYMBOL vmlinux 0x73570c7f simple_lookup -EXPORT_SYMBOL vmlinux 0x735b2aad kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0x735d8503 add_wait_queue -EXPORT_SYMBOL vmlinux 0x7369baba pci_domain_nr -EXPORT_SYMBOL vmlinux 0x736b87b9 block_write_full_page -EXPORT_SYMBOL vmlinux 0x736ed6e0 pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x73710a3e dqstats -EXPORT_SYMBOL vmlinux 0x739ccea5 inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0x73a1a5d1 zero_fill_bio -EXPORT_SYMBOL vmlinux 0x73b1579e dev_open -EXPORT_SYMBOL vmlinux 0x73f82306 simple_unlink -EXPORT_SYMBOL vmlinux 0x73fa801c xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x747d8e80 dev_addr_del -EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x74893d41 __break_lease -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74cb6d9a truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0x74db2dae param_set_bool -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74f8c36b redraw_screen -EXPORT_SYMBOL vmlinux 0x74fe8730 sys_ctrler -EXPORT_SYMBOL vmlinux 0x7532588a alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x7538b132 agp_off -EXPORT_SYMBOL vmlinux 0x7559b5ad inode_claim_rsv_space -EXPORT_SYMBOL vmlinux 0x756c786e _lv1_connect_interrupt_event_receive_port -EXPORT_SYMBOL vmlinux 0x75754995 _lv1_storage_check_async_status -EXPORT_SYMBOL vmlinux 0x75994700 add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0x75ac7cdf blk_rq_map_user -EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc -EXPORT_SYMBOL vmlinux 0x75be6702 register_sysctl_paths -EXPORT_SYMBOL vmlinux 0x75e4f5aa pasemi_read_mac_reg -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x7630a737 d_invalidate -EXPORT_SYMBOL vmlinux 0x7645af6f sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x764bd77c request_resource -EXPORT_SYMBOL vmlinux 0x764e2224 _lv1_disconnect_irq_plug_ext -EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x766eb1c0 d_tmpfile -EXPORT_SYMBOL vmlinux 0x7678e74e alloc_fcdev -EXPORT_SYMBOL vmlinux 0x767a44e3 vme_register_error_handler -EXPORT_SYMBOL vmlinux 0x768bad30 get_pci_dma_ops -EXPORT_SYMBOL vmlinux 0x768ea1bb __dev_get_by_name -EXPORT_SYMBOL vmlinux 0x76b9d513 lease_modify -EXPORT_SYMBOL vmlinux 0x76bf7879 flow_cache_fini -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint -EXPORT_SYMBOL vmlinux 0x76f37c90 i2c_del_adapter -EXPORT_SYMBOL vmlinux 0x770b2619 dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x77144936 _lv1_disconnect_irq_plug -EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x772d9eaf scsi_cmd_get_serial -EXPORT_SYMBOL vmlinux 0x7734269a cap_mmap_file -EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x775b28d3 swiotlb_dma_supported -EXPORT_SYMBOL vmlinux 0x778dbcf1 __get_page_tail -EXPORT_SYMBOL vmlinux 0x77948ab5 deactivate_super -EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll -EXPORT_SYMBOL vmlinux 0x77a7aceb tcp_close -EXPORT_SYMBOL vmlinux 0x77ac922e blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0x77b15bbd __free_pages -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77ed2a9e sk_wait_data -EXPORT_SYMBOL vmlinux 0x77f774ea xfrm_state_insert -EXPORT_SYMBOL vmlinux 0x77fb5987 inode_init_always -EXPORT_SYMBOL vmlinux 0x7830b04f hvc_put_chars -EXPORT_SYMBOL vmlinux 0x783807e3 md_register_thread -EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t -EXPORT_SYMBOL vmlinux 0x7842fed0 dst_destroy -EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x7849cbf9 netdev_all_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x785134c2 devm_request_resource -EXPORT_SYMBOL vmlinux 0x7877a777 inet_put_port -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x788bd952 iterate_fd -EXPORT_SYMBOL vmlinux 0x789a17f7 _lv1_destruct_logical_spe -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x789e0543 pci_assign_resource -EXPORT_SYMBOL vmlinux 0x78a9e905 _numa_mem_ -EXPORT_SYMBOL vmlinux 0x78bf6278 elv_rq_merge_ok -EXPORT_SYMBOL vmlinux 0x78c43679 serio_open -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78ed0dea __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0x78fc3454 pnv_cxl_alloc_hwirq_ranges -EXPORT_SYMBOL vmlinux 0x79103ee4 dquot_commit_info -EXPORT_SYMBOL vmlinux 0x792ce592 netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0x79404a64 generic_file_llseek -EXPORT_SYMBOL vmlinux 0x7967f829 padata_set_cpumasks -EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0x797d15d4 iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0x7982ddd3 set_bh_page -EXPORT_SYMBOL vmlinux 0x7984eefc key_update -EXPORT_SYMBOL vmlinux 0x7985d043 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x79863acc param_ops_bool -EXPORT_SYMBOL vmlinux 0x798d0b27 add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0x7991b72e poll_initwait -EXPORT_SYMBOL vmlinux 0x799c717a blk_end_request_cur -EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size -EXPORT_SYMBOL vmlinux 0x79a8a8d9 inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79ad1c4f scsi_host_alloc -EXPORT_SYMBOL vmlinux 0x79b7d141 __vfs_read -EXPORT_SYMBOL vmlinux 0x79c6b833 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0x79dac59f bio_integrity_enabled -EXPORT_SYMBOL vmlinux 0x79e7c319 i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x79f7f86f sock_no_connect -EXPORT_SYMBOL vmlinux 0x7a18e1a5 copy_page_to_iter -EXPORT_SYMBOL vmlinux 0x7a19a104 seq_dentry -EXPORT_SYMBOL vmlinux 0x7a2f1950 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0x7a4497db kzfree -EXPORT_SYMBOL vmlinux 0x7a4759a7 tcf_exts_change -EXPORT_SYMBOL vmlinux 0x7a6cdedc do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7a73e4de security_path_mknod -EXPORT_SYMBOL vmlinux 0x7a8003c6 blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0x7a89b81f inet_addr_type -EXPORT_SYMBOL vmlinux 0x7a8bd8dd dst_release -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7aa9e259 _lv1_map_htab -EXPORT_SYMBOL vmlinux 0x7ab1a889 read_cache_page -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7ac6a191 fb_blank -EXPORT_SYMBOL vmlinux 0x7acaeb96 twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7ad51ef2 __inet_stream_connect -EXPORT_SYMBOL vmlinux 0x7ad6e7d3 eth_header_parse -EXPORT_SYMBOL vmlinux 0x7ad6ef77 __devm_release_region -EXPORT_SYMBOL vmlinux 0x7b035deb free_page_put_link -EXPORT_SYMBOL vmlinux 0x7b16235f hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array -EXPORT_SYMBOL vmlinux 0x7b22d64b inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0x7b2aef6c __krealloc -EXPORT_SYMBOL vmlinux 0x7b2af653 inode_get_bytes -EXPORT_SYMBOL vmlinux 0x7b2ca1ad csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0x7b2ef566 skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0x7b36fddb scsi_cmd_ioctl -EXPORT_SYMBOL vmlinux 0x7b64a3c3 put_page -EXPORT_SYMBOL vmlinux 0x7b659912 con_copy_unimap -EXPORT_SYMBOL vmlinux 0x7b72a248 netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0x7b8525dc padata_add_cpu -EXPORT_SYMBOL vmlinux 0x7b9f4ea9 sk_prot_clear_portaddr_nulls -EXPORT_SYMBOL vmlinux 0x7ba12379 phy_init_hw -EXPORT_SYMBOL vmlinux 0x7ba387a1 tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0x7bb756cc neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x7bcd982a update_region -EXPORT_SYMBOL vmlinux 0x7bd7a76e eth_mac_addr -EXPORT_SYMBOL vmlinux 0x7be6bdea tcp_read_sock -EXPORT_SYMBOL vmlinux 0x7bf8b8e6 simple_write_end -EXPORT_SYMBOL vmlinux 0x7c003aef _raw_read_lock_irq -EXPORT_SYMBOL vmlinux 0x7c0766a5 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0x7c0edc24 tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x7c1372e8 panic -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c27156c rtas_online_cpus_mask -EXPORT_SYMBOL vmlinux 0x7c2d098f krealloc -EXPORT_SYMBOL vmlinux 0x7c316a89 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c61340c __release_region -EXPORT_SYMBOL vmlinux 0x7c6d7fed register_sysctl -EXPORT_SYMBOL vmlinux 0x7c9291d1 csum_partial_copy_generic -EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read -EXPORT_SYMBOL vmlinux 0x7ca65e6b put_cmsg -EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down -EXPORT_SYMBOL vmlinux 0x7ccef6ba unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x7cd340a9 sb_min_blocksize -EXPORT_SYMBOL vmlinux 0x7cd367e9 blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7ceeb175 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0x7cefd476 tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7cf9f760 padata_alloc_possible -EXPORT_SYMBOL vmlinux 0x7cfa2bfc jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0x7d01c03f blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies -EXPORT_SYMBOL vmlinux 0x7d18dd10 netpoll_print_options -EXPORT_SYMBOL vmlinux 0x7d3d4f8e xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0x7d4df6f9 nvm_erase_ppa -EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug -EXPORT_SYMBOL vmlinux 0x7d76c2f8 __skb_tx_hash -EXPORT_SYMBOL vmlinux 0x7d88755a neigh_seq_next -EXPORT_SYMBOL vmlinux 0x7da8a775 dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x7dc90505 PDE_DATA -EXPORT_SYMBOL vmlinux 0x7dc97879 rtas_get_error_log_max -EXPORT_SYMBOL vmlinux 0x7dd6a6fd mount_single -EXPORT_SYMBOL vmlinux 0x7dd835fb mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7df0b4a2 n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0x7e12ad07 napi_consume_skb -EXPORT_SYMBOL vmlinux 0x7e193193 tcp_init_sock -EXPORT_SYMBOL vmlinux 0x7e25ecdd macio_dev_put -EXPORT_SYMBOL vmlinux 0x7e4eafde mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0x7e87227e slhc_compress -EXPORT_SYMBOL vmlinux 0x7ed356d2 ps2_begin_command -EXPORT_SYMBOL vmlinux 0x7edcaa3a mmc_detect_change -EXPORT_SYMBOL vmlinux 0x7ee2fe83 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0x7ee6a62c i8042_install_filter -EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x7eef3457 dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0x7efbaa91 tcp_enter_memory_pressure -EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f1cc7aa component_match_add -EXPORT_SYMBOL vmlinux 0x7f206dc5 scsi_remove_device -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f263ed9 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x7f4922a5 input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0x7f57d150 crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done -EXPORT_SYMBOL vmlinux 0x7f6fe605 bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0x7f7085f9 padata_do_parallel -EXPORT_SYMBOL vmlinux 0x7f742fbd remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x7f86cd9a sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0x7f8e3508 neigh_event_ns -EXPORT_SYMBOL vmlinux 0x7fbbdc76 filemap_fault -EXPORT_SYMBOL vmlinux 0x7fbd10d2 radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x7fcc6ac0 fb_set_var -EXPORT_SYMBOL vmlinux 0x7fd0ca0e dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0x7fda190a sk_capable -EXPORT_SYMBOL vmlinux 0x7fdc4ec5 inode_change_ok -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fe38f48 sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x7fe9a060 _lv1_net_stop_tx_dma -EXPORT_SYMBOL vmlinux 0x800f46cc free_task -EXPORT_SYMBOL vmlinux 0x801d202b put_io_context -EXPORT_SYMBOL vmlinux 0x804701df tty_set_operations -EXPORT_SYMBOL vmlinux 0x8059ce26 pci_release_region -EXPORT_SYMBOL vmlinux 0x8068c15c kblockd_schedule_delayed_work -EXPORT_SYMBOL vmlinux 0x8072e6e2 km_new_mapping -EXPORT_SYMBOL vmlinux 0x80791a8c radix_tree_gang_lookup_slot -EXPORT_SYMBOL vmlinux 0x80841288 pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0x8085b415 registered_fb -EXPORT_SYMBOL vmlinux 0x808eaca1 alloc_pages_current -EXPORT_SYMBOL vmlinux 0x80b7d602 jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0x80c25dac iget_locked -EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80ccf872 dquot_operations -EXPORT_SYMBOL vmlinux 0x80d30d1f build_skb -EXPORT_SYMBOL vmlinux 0x80d408e9 copy_strings_kernel -EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80e234d6 simple_release_fs -EXPORT_SYMBOL vmlinux 0x80f009d8 security_path_chmod -EXPORT_SYMBOL vmlinux 0x80fa7c37 dev_uc_flush -EXPORT_SYMBOL vmlinux 0x80fb688b of_find_node_by_name -EXPORT_SYMBOL vmlinux 0x810ab454 __kernel_write -EXPORT_SYMBOL vmlinux 0x81110f19 bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0x81211a02 blk_get_request -EXPORT_SYMBOL vmlinux 0x8122960c max8998_write_reg -EXPORT_SYMBOL vmlinux 0x812d0702 giveup_vsx -EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy -EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x81536fdc blk_end_request_all -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x816b9ae4 md_error -EXPORT_SYMBOL vmlinux 0x817f08b9 compat_mc_setsockopt -EXPORT_SYMBOL vmlinux 0x81a07f4e _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0x81c0a84f rtas_set_indicator -EXPORT_SYMBOL vmlinux 0x81d01adc mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x81d71d04 wireless_send_event -EXPORT_SYMBOL vmlinux 0x81d9f7f2 _lv1_put_iopte -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81dfa3d2 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x81ed6e7b blk_queue_stack_limits -EXPORT_SYMBOL vmlinux 0x81f416c2 xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0x81fa9382 phy_set_max_speed -EXPORT_SYMBOL vmlinux 0x81fd1f7e blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0x82008a00 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill -EXPORT_SYMBOL vmlinux 0x82083068 dquot_transfer -EXPORT_SYMBOL vmlinux 0x8216fd57 devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0x822c5a8c fence_add_callback -EXPORT_SYMBOL vmlinux 0x823924fe xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0x82458f7f radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x82688684 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes -EXPORT_SYMBOL vmlinux 0x829af7fa __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0x829ea66b tcp_init_cgroup -EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched -EXPORT_SYMBOL vmlinux 0x82b56c00 iov_iter_alignment -EXPORT_SYMBOL vmlinux 0x82b74ff9 twl6040_reg_read -EXPORT_SYMBOL vmlinux 0x82bde749 d_splice_alias -EXPORT_SYMBOL vmlinux 0x82be4505 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x82cb7bf5 of_platform_bus_probe -EXPORT_SYMBOL vmlinux 0x82ce70b3 posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0x82e5a238 vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x8354acfe dev_uc_del -EXPORT_SYMBOL vmlinux 0x8359fafe block_write_begin -EXPORT_SYMBOL vmlinux 0x837f0d71 rtnl_create_link -EXPORT_SYMBOL vmlinux 0x83900bea srp_start_tl_fail_timers -EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x8399ccc9 mark_info_dirty -EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init -EXPORT_SYMBOL vmlinux 0x83b1caae vfs_statfs -EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83cdb675 skb_unlink -EXPORT_SYMBOL vmlinux 0x83dbc983 search_binary_handler -EXPORT_SYMBOL vmlinux 0x83fa9e69 xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0x84119d66 tcp_conn_request -EXPORT_SYMBOL vmlinux 0x8414265b end_buffer_async_write -EXPORT_SYMBOL vmlinux 0x8419fe32 jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0x841f0c8e dev_mc_del -EXPORT_SYMBOL vmlinux 0x8422db9d unregister_key_type -EXPORT_SYMBOL vmlinux 0x84296bba simple_getattr -EXPORT_SYMBOL vmlinux 0x844e342d agp_generic_alloc_user -EXPORT_SYMBOL vmlinux 0x844e3767 radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x844f423d inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0x845124e0 ps3_mm_phys_to_lpar -EXPORT_SYMBOL vmlinux 0x84657769 tty_port_close -EXPORT_SYMBOL vmlinux 0x8478bedd devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0x84802c97 bdi_setup_and_register -EXPORT_SYMBOL vmlinux 0x8480c444 input_open_device -EXPORT_SYMBOL vmlinux 0x84819f51 jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x848cfb26 generic_start_io_acct -EXPORT_SYMBOL vmlinux 0x849fe807 csum_and_copy_from_user -EXPORT_SYMBOL vmlinux 0x84bd69bf dq_data_lock -EXPORT_SYMBOL vmlinux 0x84c9cbf5 blk_alloc_queue -EXPORT_SYMBOL vmlinux 0x84cc2888 input_close_device -EXPORT_SYMBOL vmlinux 0x84ce4582 dcb_getapp -EXPORT_SYMBOL vmlinux 0x84e4849a kernel_getpeername -EXPORT_SYMBOL vmlinux 0x84ea1bac xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload -EXPORT_SYMBOL vmlinux 0x850240eb iget5_locked -EXPORT_SYMBOL vmlinux 0x8522a0cf ns_capable -EXPORT_SYMBOL vmlinux 0x852c6501 agp_alloc_page_array -EXPORT_SYMBOL vmlinux 0x8539c420 pci_bus_put -EXPORT_SYMBOL vmlinux 0x8548fe28 dev_notice -EXPORT_SYMBOL vmlinux 0x855c2fd0 bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x856b59a7 dump_emit -EXPORT_SYMBOL vmlinux 0x8575ef1f vfs_write -EXPORT_SYMBOL vmlinux 0x85904719 kset_unregister -EXPORT_SYMBOL vmlinux 0x8597eb47 plpar_hcall -EXPORT_SYMBOL vmlinux 0x85a72721 sockfd_lookup -EXPORT_SYMBOL vmlinux 0x85ae6052 trace_print_array_seq -EXPORT_SYMBOL vmlinux 0x85b3d529 kern_path_create -EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85c4a38a mfd_cell_disable -EXPORT_SYMBOL vmlinux 0x85db7e51 submit_bh -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x8604b5dc lru_cache_add_file -EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x86588610 setup_new_exec -EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0x8684904f ppp_dev_name -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x86acdc74 param_get_short -EXPORT_SYMBOL vmlinux 0x86affde8 scsi_register -EXPORT_SYMBOL vmlinux 0x86db1cbb rtas_flash_term_hook -EXPORT_SYMBOL vmlinux 0x86de39f6 dcache_dir_open -EXPORT_SYMBOL vmlinux 0x86de5bcb pci_pme_active -EXPORT_SYMBOL vmlinux 0x86f517cf devm_gpiod_get_array_optional -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x87065974 set_device_ro -EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags -EXPORT_SYMBOL vmlinux 0x873a53ea __arch_hweight8 -EXPORT_SYMBOL vmlinux 0x87689bc4 xfrm_state_update -EXPORT_SYMBOL vmlinux 0x876fd141 ibmebus_register_driver -EXPORT_SYMBOL vmlinux 0x87722d4c cpufreq_power_cooling_register -EXPORT_SYMBOL vmlinux 0x8780cda4 pipe_unlock -EXPORT_SYMBOL vmlinux 0x8784490d devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale -EXPORT_SYMBOL vmlinux 0x879e2477 disk_stack_limits -EXPORT_SYMBOL vmlinux 0x87abd037 down_read_trylock -EXPORT_SYMBOL vmlinux 0x87af25a3 ppp_input_error -EXPORT_SYMBOL vmlinux 0x87b879fe tcf_hash_search -EXPORT_SYMBOL vmlinux 0x87e4feff dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0x880070eb padata_set_cpumask -EXPORT_SYMBOL vmlinux 0x88090b90 keyring_alloc -EXPORT_SYMBOL vmlinux 0x880a3722 udp_add_offload -EXPORT_SYMBOL vmlinux 0x880da1b1 _lv1_get_logical_partition_id -EXPORT_SYMBOL vmlinux 0x882db37f neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x8834363e __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0x887a621a inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x887fa47e __getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x888a4a70 phy_attach_direct -EXPORT_SYMBOL vmlinux 0x88b16c01 nf_log_unregister -EXPORT_SYMBOL vmlinux 0x88bc77cb generic_write_checks -EXPORT_SYMBOL vmlinux 0x88d6f59d tty_free_termios -EXPORT_SYMBOL vmlinux 0x88dc2616 twl6040_set_pll -EXPORT_SYMBOL vmlinux 0x88f9b0cb phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0x890385c4 md_write_end -EXPORT_SYMBOL vmlinux 0x8909330c of_get_child_by_name -EXPORT_SYMBOL vmlinux 0x891bef26 vm_stat -EXPORT_SYMBOL vmlinux 0x891fbb10 mempool_destroy -EXPORT_SYMBOL vmlinux 0x89341513 of_get_next_available_child -EXPORT_SYMBOL vmlinux 0x89496c4f blk_queue_end_tag -EXPORT_SYMBOL vmlinux 0x895108f3 proc_dostring -EXPORT_SYMBOL vmlinux 0x8954bb26 file_open_root -EXPORT_SYMBOL vmlinux 0x895577b0 numa_cpu_lookup_table -EXPORT_SYMBOL vmlinux 0x89675f33 param_ops_ushort -EXPORT_SYMBOL vmlinux 0x89797060 _raw_read_lock -EXPORT_SYMBOL vmlinux 0x89834784 insert_inode_locked -EXPORT_SYMBOL vmlinux 0x8988a1ac dquot_quota_off -EXPORT_SYMBOL vmlinux 0x89a320df iterate_mounts -EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0x89c069e2 mach_ps3 -EXPORT_SYMBOL vmlinux 0x89c5a8be smu_get_sdb_partition -EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x8a13f78c from_kgid -EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies -EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a4f3764 get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0x8a50d671 register_quota_format -EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning -EXPORT_SYMBOL vmlinux 0x8a529b58 neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0x8a760193 mmc_remove_host -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a88385a crypto_sha512_update -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8a9cef2a _lv1_allocate_device_dma_region -EXPORT_SYMBOL vmlinux 0x8aa4cfae __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0x8aa4d148 unlock_buffer -EXPORT_SYMBOL vmlinux 0x8aad8539 agp_free_memory -EXPORT_SYMBOL vmlinux 0x8ab87d02 blk_mq_add_to_requeue_list -EXPORT_SYMBOL vmlinux 0x8ae0964c empty_aops -EXPORT_SYMBOL vmlinux 0x8ae6412b nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0x8ae7482d kernel_write -EXPORT_SYMBOL vmlinux 0x8aeda471 iov_iter_init -EXPORT_SYMBOL vmlinux 0x8afaebe7 nla_put -EXPORT_SYMBOL vmlinux 0x8b28abad agp_bridge -EXPORT_SYMBOL vmlinux 0x8b2abfaa inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last -EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x8b46ecca netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b6a63db netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x8b709851 skb_find_text -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b9a2c69 proc_symlink -EXPORT_SYMBOL vmlinux 0x8ba339da dev_mc_unsync -EXPORT_SYMBOL vmlinux 0x8bab5a14 of_phy_register_fixed_link -EXPORT_SYMBOL vmlinux 0x8bb02a49 serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0x8bca4b4e generic_file_mmap -EXPORT_SYMBOL vmlinux 0x8be8e7ff devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x8bea2b3a uart_unregister_driver -EXPORT_SYMBOL vmlinux 0x8bee5d28 rwsem_downgrade_wake -EXPORT_SYMBOL vmlinux 0x8bf2ae1f fsl_lbc_addr -EXPORT_SYMBOL vmlinux 0x8c0535d0 fb_class -EXPORT_SYMBOL vmlinux 0x8c0863cf __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 -EXPORT_SYMBOL vmlinux 0x8c2a5747 ppc_md -EXPORT_SYMBOL vmlinux 0x8c3cc070 param_set_bint -EXPORT_SYMBOL vmlinux 0x8c5365a4 dev_trans_start -EXPORT_SYMBOL vmlinux 0x8c5a91c8 param_ops_string -EXPORT_SYMBOL vmlinux 0x8c5ae3a4 skb_split -EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x8c8587b0 truncate_setsize -EXPORT_SYMBOL vmlinux 0x8c8d79c0 _lv1_gpu_context_iomap -EXPORT_SYMBOL vmlinux 0x8cba9d4a irq_to_desc -EXPORT_SYMBOL vmlinux 0x8cbd6f0c inet_sock_destruct -EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep -EXPORT_SYMBOL vmlinux 0x8cd54882 km_is_alive -EXPORT_SYMBOL vmlinux 0x8cd89c75 vio_register_device_node -EXPORT_SYMBOL vmlinux 0x8ce592a0 dquot_acquire -EXPORT_SYMBOL vmlinux 0x8d015dd4 __bswapdi2 -EXPORT_SYMBOL vmlinux 0x8d182c98 commit_creds -EXPORT_SYMBOL vmlinux 0x8d321327 skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0x8d373b4f ihold -EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d6b2a03 scsi_remove_host -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d8787ec nf_setsockopt -EXPORT_SYMBOL vmlinux 0x8d944cbb copy_in_user -EXPORT_SYMBOL vmlinux 0x8da7e3f0 __destroy_inode -EXPORT_SYMBOL vmlinux 0x8daa6908 security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0x8dabf705 sock_no_ioctl -EXPORT_SYMBOL vmlinux 0x8dadcc6a gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0x8dd44bf6 dquot_release -EXPORT_SYMBOL vmlinux 0x8de0b5ac mempool_create -EXPORT_SYMBOL vmlinux 0x8de2fbc5 _lv1_get_virtual_uart_param -EXPORT_SYMBOL vmlinux 0x8deee26f backlight_device_register -EXPORT_SYMBOL vmlinux 0x8df223bd genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0x8df41f0d blk_finish_request -EXPORT_SYMBOL vmlinux 0x8df5a964 pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv -EXPORT_SYMBOL vmlinux 0x8dfd28bd iunique -EXPORT_SYMBOL vmlinux 0x8e0309d7 generic_update_time -EXPORT_SYMBOL vmlinux 0x8e14ba1c max8998_read_reg -EXPORT_SYMBOL vmlinux 0x8e2a5b85 macio_unregister_driver -EXPORT_SYMBOL vmlinux 0x8e39932c tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x8e3a3718 scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0x8e65ecd1 parent_mem_cgroup -EXPORT_SYMBOL vmlinux 0x8e682e2c tcp_prot -EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x8e762e08 scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0x8e9296f2 qdisc_list_add -EXPORT_SYMBOL vmlinux 0x8e92da5f input_release_device -EXPORT_SYMBOL vmlinux 0x8e9b6808 __dst_free -EXPORT_SYMBOL vmlinux 0x8eb7f31a tcp_proto_cgroup -EXPORT_SYMBOL vmlinux 0x8ec04552 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0x8eea1bc9 smu_poll -EXPORT_SYMBOL vmlinux 0x8effcb99 jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0x8f012034 skb_clone -EXPORT_SYMBOL vmlinux 0x8f0cfc68 dev_warn -EXPORT_SYMBOL vmlinux 0x8f407e87 skb_store_bits -EXPORT_SYMBOL vmlinux 0x8f4865d7 scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0x8f52c3e5 dev_uc_init -EXPORT_SYMBOL vmlinux 0x8f85f835 prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x8f91b0b3 dma_async_device_register -EXPORT_SYMBOL vmlinux 0x8fac87a7 dev_load -EXPORT_SYMBOL vmlinux 0x8fc15bf6 iommu_tbl_range_free -EXPORT_SYMBOL vmlinux 0x8fe4fc67 fb_validate_mode -EXPORT_SYMBOL vmlinux 0x8fed3c9f elv_dispatch_add_tail -EXPORT_SYMBOL vmlinux 0x9002b0cb blk_init_tags -EXPORT_SYMBOL vmlinux 0x90057e89 skb_append -EXPORT_SYMBOL vmlinux 0x90142d9d devm_memunmap -EXPORT_SYMBOL vmlinux 0x9023a30a __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x9037122d kernel_read -EXPORT_SYMBOL vmlinux 0x903da478 cont_write_begin -EXPORT_SYMBOL vmlinux 0x908f3b4f pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x909758ea dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0x90a34b89 netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0x90a4324b agp_generic_remove_memory -EXPORT_SYMBOL vmlinux 0x90b55217 cdev_alloc -EXPORT_SYMBOL vmlinux 0x90b5a888 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0x90befd8b unlock_page -EXPORT_SYMBOL vmlinux 0x90e018a0 nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0x90ee61e3 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x90fa37d7 seq_read -EXPORT_SYMBOL vmlinux 0x91100d5a qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0x9110f055 netdev_state_change -EXPORT_SYMBOL vmlinux 0x911f61f6 kernel_bind -EXPORT_SYMBOL vmlinux 0x91201cef _lv1_enable_logical_spe -EXPORT_SYMBOL vmlinux 0x912557ce rtas_busy_delay -EXPORT_SYMBOL vmlinux 0x91276864 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0x912deab4 phy_drivers_register -EXPORT_SYMBOL vmlinux 0x9135c0bd agp_create_memory -EXPORT_SYMBOL vmlinux 0x9137678a security_dentry_init_security -EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 -EXPORT_SYMBOL vmlinux 0x914f9d0e sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x915e1208 tb_ticks_per_usec -EXPORT_SYMBOL vmlinux 0x9166fada strncpy -EXPORT_SYMBOL vmlinux 0x9168c033 rtas_get_sensor -EXPORT_SYMBOL vmlinux 0x91715312 sprintf -EXPORT_SYMBOL vmlinux 0x919d1163 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x919eb6c7 tty_do_resize -EXPORT_SYMBOL vmlinux 0x91ac822f vscnprintf -EXPORT_SYMBOL vmlinux 0x91ba64b2 scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0x91c49bcb ps2_end_command -EXPORT_SYMBOL vmlinux 0x91c4feca _lv1_unmap_htab -EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 -EXPORT_SYMBOL vmlinux 0x91fd1244 dm_put_device -EXPORT_SYMBOL vmlinux 0x92153e33 pci_disable_device -EXPORT_SYMBOL vmlinux 0x922719d6 blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0x922fcbc7 serio_interrupt -EXPORT_SYMBOL vmlinux 0x9232f2a4 bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x92647242 mmc_read_bkops_status -EXPORT_SYMBOL vmlinux 0x926e66fa pcie_get_mps -EXPORT_SYMBOL vmlinux 0x9271c45d fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x927e8b55 __lock_buffer -EXPORT_SYMBOL vmlinux 0x928ec02d dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user -EXPORT_SYMBOL vmlinux 0x92a42e01 agp_generic_enable -EXPORT_SYMBOL vmlinux 0x92a96da7 nf_reinject -EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm -EXPORT_SYMBOL vmlinux 0x92a9f5cf __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0x92b7feb6 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x92b94ccf sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0x92be9270 inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0x92d023c1 bio_clone_fast -EXPORT_SYMBOL vmlinux 0x92f90cd1 dquot_enable -EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x930ba797 tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x93248704 mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0x933de55c setup_arg_pages -EXPORT_SYMBOL vmlinux 0x93462a6d find_lock_entry -EXPORT_SYMBOL vmlinux 0x93507f1c _lv1_gpu_memory_allocate -EXPORT_SYMBOL vmlinux 0x9354fcde ibmebus_free_irq -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x93830c30 __register_nls -EXPORT_SYMBOL vmlinux 0x938d66f9 tcp_child_process -EXPORT_SYMBOL vmlinux 0x93ac4ec5 serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93d4be14 of_find_net_device_by_node -EXPORT_SYMBOL vmlinux 0x93d6782f dquot_resume -EXPORT_SYMBOL vmlinux 0x93f68ad4 xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x93fbbd29 sock_from_file -EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages -EXPORT_SYMBOL vmlinux 0x93fe04ab remove_arg_zero -EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int -EXPORT_SYMBOL vmlinux 0x94062889 pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0x9430d4e3 tty_throttle -EXPORT_SYMBOL vmlinux 0x94316906 input_register_device -EXPORT_SYMBOL vmlinux 0x943dc80f csum_and_copy_to_user -EXPORT_SYMBOL vmlinux 0x943f05db locks_copy_conflock -EXPORT_SYMBOL vmlinux 0x943fe0f8 __alloc_pages_nodemask -EXPORT_SYMBOL vmlinux 0x9465fd2a ip6_frag_match -EXPORT_SYMBOL vmlinux 0x947b51f2 netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x9481e6c3 vio_h_cop_sync -EXPORT_SYMBOL vmlinux 0x9490f219 giveup_altivec -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x949f9871 block_truncate_page -EXPORT_SYMBOL vmlinux 0x94ab5c1a skb_orphan_partial -EXPORT_SYMBOL vmlinux 0x94b3fd13 swiotlb_map_sg -EXPORT_SYMBOL vmlinux 0x950836eb skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x9509aec8 __blk_end_request_cur -EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x95117a70 phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0x9514151a _mcount -EXPORT_SYMBOL vmlinux 0x951d33a3 textsearch_register -EXPORT_SYMBOL vmlinux 0x9524b0ae _outsb -EXPORT_SYMBOL vmlinux 0x95261d90 nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0x9527c381 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init -EXPORT_SYMBOL vmlinux 0x95479486 padata_start -EXPORT_SYMBOL vmlinux 0x954fe0ea security_path_truncate -EXPORT_SYMBOL vmlinux 0x9572a4e2 mntput -EXPORT_SYMBOL vmlinux 0x95b3ea5e blkdev_put -EXPORT_SYMBOL vmlinux 0x960363d9 swiotlb_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0x960818fd vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0x9610d89a dev_alert -EXPORT_SYMBOL vmlinux 0x969987fc lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0x96a5833e tcp_shutdown -EXPORT_SYMBOL vmlinux 0x96afdeef single_open -EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x9710c980 i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0x971c0545 iterate_dir -EXPORT_SYMBOL vmlinux 0x97205e18 vm_insert_page -EXPORT_SYMBOL vmlinux 0x9748927f _outsw_ns -EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x975ae4d1 consume_skb -EXPORT_SYMBOL vmlinux 0x97661ff7 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x9769fcf0 __get_user_pages -EXPORT_SYMBOL vmlinux 0x976e014f _lv1_map_device_mmio_region -EXPORT_SYMBOL vmlinux 0x9770170b mmc_erase -EXPORT_SYMBOL vmlinux 0x97868aef __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state -EXPORT_SYMBOL vmlinux 0x97a41678 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update -EXPORT_SYMBOL vmlinux 0x97afba7b proc_douintvec -EXPORT_SYMBOL vmlinux 0x97ba1af0 tcp_hashinfo -EXPORT_SYMBOL vmlinux 0x97d90ab5 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0x97daefb8 sk_stream_write_space -EXPORT_SYMBOL vmlinux 0x97eebc9f simple_link -EXPORT_SYMBOL vmlinux 0x97f03d6f vio_cmo_entitlement_update -EXPORT_SYMBOL vmlinux 0x98177648 _lv1_set_lpm_interval -EXPORT_SYMBOL vmlinux 0x981a412e pci_platform_rom -EXPORT_SYMBOL vmlinux 0x981f4822 of_count_phandle_with_args -EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0x98466a9b dev_disable_lro -EXPORT_SYMBOL vmlinux 0x98646ef7 scsi_register_driver -EXPORT_SYMBOL vmlinux 0x98654d52 __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x9878b7c8 blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0x987fc124 neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x988b9d90 bio_clone_bioset -EXPORT_SYMBOL vmlinux 0x98b1235b pid_task -EXPORT_SYMBOL vmlinux 0x98b292f1 i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0x98b538dc of_find_property -EXPORT_SYMBOL vmlinux 0x98bd68ce blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x98c68c41 __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen -EXPORT_SYMBOL vmlinux 0x98e6454a inet_frag_destroy -EXPORT_SYMBOL vmlinux 0x98ea46da udp_proc_unregister -EXPORT_SYMBOL vmlinux 0x98f58fdb d_alloc -EXPORT_SYMBOL vmlinux 0x98fa774a posix_acl_valid -EXPORT_SYMBOL vmlinux 0x99195078 vsnprintf -EXPORT_SYMBOL vmlinux 0x991968bf ppp_unit_number -EXPORT_SYMBOL vmlinux 0x992108c1 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0x9922903e kfree_skb -EXPORT_SYMBOL vmlinux 0x9922f174 keyring_search -EXPORT_SYMBOL vmlinux 0x992de664 init_buffer -EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x99653d8b key_reject_and_link -EXPORT_SYMBOL vmlinux 0x996894ac sb_set_blocksize -EXPORT_SYMBOL vmlinux 0x997534d7 module_refcount -EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99a1ba85 agp_generic_destroy_pages -EXPORT_SYMBOL vmlinux 0x99afe916 _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0x99c24cfe _lv1_free_device_dma_region -EXPORT_SYMBOL vmlinux 0x99c3b562 register_qdisc -EXPORT_SYMBOL vmlinux 0x99c65adb set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering -EXPORT_SYMBOL vmlinux 0x99d3a43c dm_table_get_size -EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99df35ce dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x99e50ecb seq_lseek -EXPORT_SYMBOL vmlinux 0x99e9d5c0 flush_dcache_page -EXPORT_SYMBOL vmlinux 0x99f7231c sock_edemux -EXPORT_SYMBOL vmlinux 0x9a017b11 mpage_readpages -EXPORT_SYMBOL vmlinux 0x9a07f524 pci_clear_master -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval -EXPORT_SYMBOL vmlinux 0x9a1ffb92 _lv1_clear_spe_interrupt_status -EXPORT_SYMBOL vmlinux 0x9a5277d3 of_parse_phandle_with_fixed_args -EXPORT_SYMBOL vmlinux 0x9a66e352 mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0x9a6c2531 pasemi_dma_init -EXPORT_SYMBOL vmlinux 0x9a770eb5 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x9aa396b5 __genl_register_family -EXPORT_SYMBOL vmlinux 0x9aabf366 udp_poll -EXPORT_SYMBOL vmlinux 0x9ab96ab2 input_event -EXPORT_SYMBOL vmlinux 0x9ac355cb twl6040_reg_write -EXPORT_SYMBOL vmlinux 0x9ad0fc59 generic_block_bmap -EXPORT_SYMBOL vmlinux 0x9ad96e4c tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach -EXPORT_SYMBOL vmlinux 0x9af366b0 mmc_gpio_request_ro -EXPORT_SYMBOL vmlinux 0x9b054510 dquot_initialize -EXPORT_SYMBOL vmlinux 0x9b11053d page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x9b19b68d blk_delay_queue -EXPORT_SYMBOL vmlinux 0x9b1d01e5 phy_connect -EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page -EXPORT_SYMBOL vmlinux 0x9b3fce97 netpoll_setup -EXPORT_SYMBOL vmlinux 0x9b4ac539 kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0x9b4f408b __dquot_free_space -EXPORT_SYMBOL vmlinux 0x9b57724e agp_copy_info -EXPORT_SYMBOL vmlinux 0x9b657203 kill_pgrp -EXPORT_SYMBOL vmlinux 0x9b6b3069 inet6_ioctl -EXPORT_SYMBOL vmlinux 0x9b6f6084 get_tz_trend -EXPORT_SYMBOL vmlinux 0x9b7b11b2 bio_map_kern -EXPORT_SYMBOL vmlinux 0x9b7e85a6 gen_pool_alloc -EXPORT_SYMBOL vmlinux 0x9b7f5144 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split -EXPORT_SYMBOL vmlinux 0x9bcd0f10 xfrm_state_add -EXPORT_SYMBOL vmlinux 0x9bd343d2 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0x9bd4fe40 get_user_pages -EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x9bf9e7a3 jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0x9c024f97 security_task_getsecid -EXPORT_SYMBOL vmlinux 0x9c2322e1 ip_check_defrag -EXPORT_SYMBOL vmlinux 0x9c25df7a netif_device_attach -EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x9c6582d5 __dax_fault -EXPORT_SYMBOL vmlinux 0x9c9f7683 rwsem_down_read_failed -EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cb40871 devm_memremap -EXPORT_SYMBOL vmlinux 0x9ce55d8e kernel_sock_ioctl -EXPORT_SYMBOL vmlinux 0x9cf27de6 xfrm_register_type -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d14983a ppc_enable_pmcs -EXPORT_SYMBOL vmlinux 0x9d36a96a handle_edge_irq -EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init -EXPORT_SYMBOL vmlinux 0x9d481d3f ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0x9d6a54c2 flex_array_get_ptr -EXPORT_SYMBOL vmlinux 0x9d7ce8dd _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0x9d89d30a __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x9d90ac31 ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0x9d917c19 mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0x9d9db9d1 I_BDEV -EXPORT_SYMBOL vmlinux 0x9d9dfc18 load_fp_state -EXPORT_SYMBOL vmlinux 0x9da05e10 mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0x9dd55e2a pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0x9dd6f9d1 dst_init -EXPORT_SYMBOL vmlinux 0x9deefcd1 skb_vlan_untag -EXPORT_SYMBOL vmlinux 0x9df0820e abx500_mask_and_set_register_interruptible -EXPORT_SYMBOL vmlinux 0x9dfbcc05 get_cached_acl -EXPORT_SYMBOL vmlinux 0x9e0882bb param_ops_ulong -EXPORT_SYMBOL vmlinux 0x9e097a2f mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x9e0b2901 kthread_stop -EXPORT_SYMBOL vmlinux 0x9e0b71d8 inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e15cac6 pci_find_bus -EXPORT_SYMBOL vmlinux 0x9e228514 of_get_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x9e2f8c90 lz4_decompress_unknownoutputsize -EXPORT_SYMBOL vmlinux 0x9e3ccd10 blkdev_get -EXPORT_SYMBOL vmlinux 0x9e3f374b notify_change -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e51eab5 key_put -EXPORT_SYMBOL vmlinux 0x9e570af1 unregister_shrinker -EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e6f8774 inet_select_addr -EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value -EXPORT_SYMBOL vmlinux 0x9e97375d rtas_busy_delay_time -EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource -EXPORT_SYMBOL vmlinux 0x9ed204db noop_qdisc -EXPORT_SYMBOL vmlinux 0x9ee78669 _lv1_write_virtual_uart -EXPORT_SYMBOL vmlinux 0x9eedb64d unregister_framebuffer -EXPORT_SYMBOL vmlinux 0x9f168708 blk_integrity_compare -EXPORT_SYMBOL vmlinux 0x9f3c6cfe lease_get_mtime -EXPORT_SYMBOL vmlinux 0x9f41ec0a sock_init_data -EXPORT_SYMBOL vmlinux 0x9f446824 bitmap_unplug -EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f64ae4c elv_add_request -EXPORT_SYMBOL vmlinux 0x9f7c1be8 skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0x9f83aeca bdi_register_dev -EXPORT_SYMBOL vmlinux 0x9f911629 idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9fa4135d lock_sock_nested -EXPORT_SYMBOL vmlinux 0x9fd0467b netif_rx_ni -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0xa0182434 neigh_for_each -EXPORT_SYMBOL vmlinux 0xa01cec14 con_is_bound -EXPORT_SYMBOL vmlinux 0xa027dc8f ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0xa027f96b of_mdio_find_bus -EXPORT_SYMBOL vmlinux 0xa0370c75 prepare_binprm -EXPORT_SYMBOL vmlinux 0xa0434e75 __napi_complete -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xa0692df3 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr -EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init -EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa08c3aa2 kernel_accept -EXPORT_SYMBOL vmlinux 0xa09d458c iov_iter_zero -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0c45017 inet_addr_type_table -EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0e6ea00 devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0xa0e78686 fsnotify_put_mark -EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem -EXPORT_SYMBOL vmlinux 0xa0ed4ec2 inode_permission -EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa0ff74d6 udp_memory_allocated -EXPORT_SYMBOL vmlinux 0xa1083374 seq_puts -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xa132e047 mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0xa1751a3a vga_get -EXPORT_SYMBOL vmlinux 0xa1751ecb vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0xa17fc78c tty_unregister_device -EXPORT_SYMBOL vmlinux 0xa18b3423 udp_ioctl -EXPORT_SYMBOL vmlinux 0xa1a75833 mmc_align_data_size -EXPORT_SYMBOL vmlinux 0xa1abc395 dentry_open -EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode -EXPORT_SYMBOL vmlinux 0xa1bff973 security_inode_readlink -EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched -EXPORT_SYMBOL vmlinux 0xa1c99385 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0xa1d3d873 dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create -EXPORT_SYMBOL vmlinux 0xa1f8fe75 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0xa1f9304b blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0xa202a8e5 kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold -EXPORT_SYMBOL vmlinux 0xa20a3b66 of_graph_get_next_endpoint -EXPORT_SYMBOL vmlinux 0xa20d7ed4 bio_copy_data -EXPORT_SYMBOL vmlinux 0xa20df027 tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0xa2127cdc pasemi_dma_alloc_flag -EXPORT_SYMBOL vmlinux 0xa2391c1b vga_client_register -EXPORT_SYMBOL vmlinux 0xa23c85b7 swiotlb_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0xa2435faa misc_register -EXPORT_SYMBOL vmlinux 0xa2465322 _lv1_get_version_info -EXPORT_SYMBOL vmlinux 0xa25a13fc security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0xa282fab9 bioset_integrity_free -EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0xa2984d28 key_payload_reserve -EXPORT_SYMBOL vmlinux 0xa2a335bd vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0xa2bbed37 crash_shutdown_register -EXPORT_SYMBOL vmlinux 0xa2e9e4f3 pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0xa2fdbcbe fence_default_wait -EXPORT_SYMBOL vmlinux 0xa303d1ff dm_ratelimit_state -EXPORT_SYMBOL vmlinux 0xa3064bdb mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0xa30711fd bdevname -EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set -EXPORT_SYMBOL vmlinux 0xa31f5236 iput -EXPORT_SYMBOL vmlinux 0xa33800e6 get_fs_type -EXPORT_SYMBOL vmlinux 0xa3437119 get_task_io_context -EXPORT_SYMBOL vmlinux 0xa3453d02 write_cache_pages -EXPORT_SYMBOL vmlinux 0xa346f61c get_acl -EXPORT_SYMBOL vmlinux 0xa34916d8 udp_del_offload -EXPORT_SYMBOL vmlinux 0xa354b2c2 cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0xa360890d create_empty_buffers -EXPORT_SYMBOL vmlinux 0xa3709848 block_read_full_page -EXPORT_SYMBOL vmlinux 0xa385dbc6 km_report -EXPORT_SYMBOL vmlinux 0xa39857fc input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0xa39b4cf2 udelay -EXPORT_SYMBOL vmlinux 0xa3abc422 abort_exclusive_wait -EXPORT_SYMBOL vmlinux 0xa3b7888b kernel_param_lock -EXPORT_SYMBOL vmlinux 0xa3bc634f vfs_readv -EXPORT_SYMBOL vmlinux 0xa3f336c1 blk_queue_invalidate_tags -EXPORT_SYMBOL vmlinux 0xa3fbc321 unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xa40d26e8 __tcf_hash_release -EXPORT_SYMBOL vmlinux 0xa40f0d9f mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0xa41bace8 atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0xa434952a vfs_whiteout -EXPORT_SYMBOL vmlinux 0xa434df6b pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0xa4511467 crc16 -EXPORT_SYMBOL vmlinux 0xa45194b0 tcf_unregister_action -EXPORT_SYMBOL vmlinux 0xa45c248e dma_find_channel -EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset -EXPORT_SYMBOL vmlinux 0xa480c04b _lv1_gpu_context_attribute -EXPORT_SYMBOL vmlinux 0xa481660f audit_log -EXPORT_SYMBOL vmlinux 0xa48a72f3 sock_register -EXPORT_SYMBOL vmlinux 0xa4a94d26 find_next_bit_le -EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep -EXPORT_SYMBOL vmlinux 0xa4cb19ae nd_iostat_end -EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush -EXPORT_SYMBOL vmlinux 0xa4daec70 scmd_printk -EXPORT_SYMBOL vmlinux 0xa525b615 pcim_iounmap -EXPORT_SYMBOL vmlinux 0xa5392a2a sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0xa54701a4 nvm_submit_io -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa55c6830 register_sysctl_table -EXPORT_SYMBOL vmlinux 0xa55eb664 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0xa56b8ab2 flex_array_free -EXPORT_SYMBOL vmlinux 0xa572d45c lwtunnel_state_alloc -EXPORT_SYMBOL vmlinux 0xa5793d4d of_mdio_parse_addr -EXPORT_SYMBOL vmlinux 0xa58be726 request_key_async -EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes -EXPORT_SYMBOL vmlinux 0xa5a51eee __crc32c_le -EXPORT_SYMBOL vmlinux 0xa5c94987 pci_add_new_bus -EXPORT_SYMBOL vmlinux 0xa5d362e5 blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0xa5db6e3d mutex_lock_killable -EXPORT_SYMBOL vmlinux 0xa5f7f233 agp_find_bridge -EXPORT_SYMBOL vmlinux 0xa63322c6 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0xa63a8fe1 tcf_hash_check -EXPORT_SYMBOL vmlinux 0xa6584e77 devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xa65972b8 _memcpy_toio -EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0xa67893c5 twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0xa680fa5c skb_free_datagram -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa68a1b0a d_instantiate -EXPORT_SYMBOL vmlinux 0xa69af78b pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0xa69f498e get_thermal_instance -EXPORT_SYMBOL vmlinux 0xa6aded82 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0xa6b103f9 nvm_register -EXPORT_SYMBOL vmlinux 0xa6c4bb99 vio_find_node -EXPORT_SYMBOL vmlinux 0xa6cac379 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0xa6ce472f cpu_rmap_update -EXPORT_SYMBOL vmlinux 0xa6f07f1c decrementer_clockevent -EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function -EXPORT_SYMBOL vmlinux 0xa720678c lg_global_lock -EXPORT_SYMBOL vmlinux 0xa72a0f5b nr_online_nodes -EXPORT_SYMBOL vmlinux 0xa735504e from_kprojid_munged -EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 -EXPORT_SYMBOL vmlinux 0xa73e5adb dquot_quota_on -EXPORT_SYMBOL vmlinux 0xa73e7fc5 scsi_scan_target -EXPORT_SYMBOL vmlinux 0xa7417d86 xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0xa748fbdd dev_driver_string -EXPORT_SYMBOL vmlinux 0xa749253f blk_queue_prep_rq -EXPORT_SYMBOL vmlinux 0xa74c8f2d dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0xa74f4e9b ida_simple_get -EXPORT_SYMBOL vmlinux 0xa773a8e3 pci_iomap -EXPORT_SYMBOL vmlinux 0xa78b022b blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0xa78d9eb7 slhc_uncompress -EXPORT_SYMBOL vmlinux 0xa7a8230d neigh_resolve_output -EXPORT_SYMBOL vmlinux 0xa7af24f6 write_one_page -EXPORT_SYMBOL vmlinux 0xa7b0de0b simple_rename -EXPORT_SYMBOL vmlinux 0xa7baacb8 vfs_read -EXPORT_SYMBOL vmlinux 0xa7d547b5 tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0xa7d8f354 udp_proc_register -EXPORT_SYMBOL vmlinux 0xa80abef3 seq_vprintf -EXPORT_SYMBOL vmlinux 0xa8279367 sock_no_shutdown -EXPORT_SYMBOL vmlinux 0xa83c368b security_file_permission -EXPORT_SYMBOL vmlinux 0xa84367db __devm_request_region -EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa8496d75 dquot_drop -EXPORT_SYMBOL vmlinux 0xa85bac6d neigh_table_init -EXPORT_SYMBOL vmlinux 0xa8721b97 system_state -EXPORT_SYMBOL vmlinux 0xa874eacd __nd_iostat_start -EXPORT_SYMBOL vmlinux 0xa8ab205b jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0xa8af8860 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0xa8c6b08d sock_no_setsockopt -EXPORT_SYMBOL vmlinux 0xa8ced546 _lv1_net_set_interrupt_status_indicator -EXPORT_SYMBOL vmlinux 0xa8d0d738 __serio_register_port -EXPORT_SYMBOL vmlinux 0xa8ddba2f kill_pid -EXPORT_SYMBOL vmlinux 0xa8e070c8 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send -EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion -EXPORT_SYMBOL vmlinux 0xa916b694 strnlen -EXPORT_SYMBOL vmlinux 0xa91c77b6 _lv1_end_of_interrupt -EXPORT_SYMBOL vmlinux 0xa921d195 skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xa9220a25 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0xa9273e1a epapr_hypercall_start -EXPORT_SYMBOL vmlinux 0xa93ba88e proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0xa93bfc5e of_translate_address -EXPORT_SYMBOL vmlinux 0xa94e765d xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0xa956b143 netdev_info -EXPORT_SYMBOL vmlinux 0xa95e6dce tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa976b354 __devcgroup_inode_permission -EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes -EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0xa9ebc446 filemap_write_and_wait -EXPORT_SYMBOL vmlinux 0xa9ec40d6 sock_update_memcg -EXPORT_SYMBOL vmlinux 0xa9f49696 __pagevec_lru_add -EXPORT_SYMBOL vmlinux 0xaa0edca8 pasemi_dma_alloc_fun -EXPORT_SYMBOL vmlinux 0xaa33df07 abx500_get_register_page_interruptible -EXPORT_SYMBOL vmlinux 0xaa45a5e0 account_page_dirtied -EXPORT_SYMBOL vmlinux 0xaa46e87e lg_local_unlock -EXPORT_SYMBOL vmlinux 0xaa4a6730 tc_classify -EXPORT_SYMBOL vmlinux 0xaa5272fb pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0xaa6b150a page_put_link -EXPORT_SYMBOL vmlinux 0xaa6e4df5 _raw_write_lock_irqsave -EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaad06927 i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0xab00415c inet_sendmsg -EXPORT_SYMBOL vmlinux 0xab228e31 csum_tcpudp_magic -EXPORT_SYMBOL vmlinux 0xab3c868e ip_getsockopt -EXPORT_SYMBOL vmlinux 0xab521f78 udp_disconnect -EXPORT_SYMBOL vmlinux 0xab66f611 _lv1_set_lpm_trigger_control -EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog -EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab8473ef fget_raw -EXPORT_SYMBOL vmlinux 0xab95c785 of_mm_gpiochip_add -EXPORT_SYMBOL vmlinux 0xabab1637 generic_file_open -EXPORT_SYMBOL vmlinux 0xabb7c9ff ab3100_event_register -EXPORT_SYMBOL vmlinux 0xabca8fcc dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev -EXPORT_SYMBOL vmlinux 0xabd9539b agp_generic_free_gatt_table -EXPORT_SYMBOL vmlinux 0xabe855c7 locks_remove_posix -EXPORT_SYMBOL vmlinux 0xabea0b57 mmc_interrupt_hpi -EXPORT_SYMBOL vmlinux 0xabf3f858 mmc_get_card -EXPORT_SYMBOL vmlinux 0xabfbc15f scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0xabfe752a iommu_tbl_range_alloc -EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable -EXPORT_SYMBOL vmlinux 0xac10ecf8 phy_ethtool_sset -EXPORT_SYMBOL vmlinux 0xac16a0a5 ip_route_input_noref -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac26b820 _raw_write_lock -EXPORT_SYMBOL vmlinux 0xac44a3ba unmap_mapping_range -EXPORT_SYMBOL vmlinux 0xac5ce177 __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xac69175c wait_for_key_construction -EXPORT_SYMBOL vmlinux 0xac9536ca kthread_create_on_node -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacc5b5d2 csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton -EXPORT_SYMBOL vmlinux 0xacd14ab8 _lv1_construct_logical_spe -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xace5228a vc_resize -EXPORT_SYMBOL vmlinux 0xacee2d08 kset_register -EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xacfac75a do_SAK -EXPORT_SYMBOL vmlinux 0xad01744f kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad164875 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xad232a1a pci_scan_slot -EXPORT_SYMBOL vmlinux 0xad2483b0 d_path -EXPORT_SYMBOL vmlinux 0xad2af0c8 gen_pool_free -EXPORT_SYMBOL vmlinux 0xad50cebb i8253_lock -EXPORT_SYMBOL vmlinux 0xad5164a6 netdev_err -EXPORT_SYMBOL vmlinux 0xad70d29c pci_set_mwi -EXPORT_SYMBOL vmlinux 0xad81e39d submit_bio_wait -EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event -EXPORT_SYMBOL vmlinux 0xad85a27b hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0xad8c9bd2 mmc_register_driver -EXPORT_SYMBOL vmlinux 0xad961743 __wait_on_bit -EXPORT_SYMBOL vmlinux 0xad982d4d d_find_any_alias -EXPORT_SYMBOL vmlinux 0xadbaf616 input_set_keycode -EXPORT_SYMBOL vmlinux 0xadbe04b2 ppp_register_channel -EXPORT_SYMBOL vmlinux 0xadbf3a83 scsi_scan_host -EXPORT_SYMBOL vmlinux 0xadc74677 lwtunnel_output -EXPORT_SYMBOL vmlinux 0xadccd78b netif_rx -EXPORT_SYMBOL vmlinux 0xadd0b03c thaw_bdev -EXPORT_SYMBOL vmlinux 0xadd4dee6 padata_register_cpumask_notifier -EXPORT_SYMBOL vmlinux 0xaddea9b8 __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0xade61b55 __skb_get_hash_flowi6 -EXPORT_SYMBOL vmlinux 0xadeffe25 _lv1_gpu_context_intr -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae077001 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0xae233df6 mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0xae266c46 md_flush_request -EXPORT_SYMBOL vmlinux 0xae2e55e3 ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0xae358236 fence_signal -EXPORT_SYMBOL vmlinux 0xae3d3297 uart_update_timeout -EXPORT_SYMBOL vmlinux 0xae49a986 devm_gpiod_get -EXPORT_SYMBOL vmlinux 0xae545f06 _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xae7871c4 blk_init_queue_node -EXPORT_SYMBOL vmlinux 0xaeb7910d reservation_object_add_shared_fence -EXPORT_SYMBOL vmlinux 0xaecd27e9 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0xaef2e933 md_unregister_thread -EXPORT_SYMBOL vmlinux 0xaf063510 _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0xaf2d872c prepare_to_wait -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf677ceb key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0xaf6ae696 kstrndup -EXPORT_SYMBOL vmlinux 0xaf74e138 md_set_array_sectors -EXPORT_SYMBOL vmlinux 0xaf86e916 pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0xaf90e11e pcie_set_readrq -EXPORT_SYMBOL vmlinux 0xaf9340a7 tcf_hash_new_index -EXPORT_SYMBOL vmlinux 0xafb0fd09 gen_pool_create -EXPORT_SYMBOL vmlinux 0xafb764fc inet_sendpage -EXPORT_SYMBOL vmlinux 0xafdd81a1 con_set_default_unimap -EXPORT_SYMBOL vmlinux 0xafff3d1d mempool_alloc -EXPORT_SYMBOL vmlinux 0xb0027d55 jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0xb007c83c fddi_change_mtu -EXPORT_SYMBOL vmlinux 0xb0095492 fsl_lbc_ctrl_dev -EXPORT_SYMBOL vmlinux 0xb04241b4 ida_simple_remove -EXPORT_SYMBOL vmlinux 0xb043edad inet6_offloads -EXPORT_SYMBOL vmlinux 0xb051e655 dev_add_pack -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb0642851 xfrm4_rcv_cb -EXPORT_SYMBOL vmlinux 0xb071e5c6 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0xb0d9896f of_device_get_match_data -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb116cfe7 mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb144843c xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0xb147a855 dql_reset -EXPORT_SYMBOL vmlinux 0xb15bd8fa tb_ticks_per_sec -EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table -EXPORT_SYMBOL vmlinux 0xb165ef45 __irq_regs -EXPORT_SYMBOL vmlinux 0xb17bb968 nvm_put_blk -EXPORT_SYMBOL vmlinux 0xb18dbc1d module_layout -EXPORT_SYMBOL vmlinux 0xb1a6ae52 set_disk_ro -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1c6e787 wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0xb1caf8f4 get_agp_version -EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xb1d55161 ip6_xmit -EXPORT_SYMBOL vmlinux 0xb1dd9d69 macio_register_driver -EXPORT_SYMBOL vmlinux 0xb1e1c6c3 sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0xb1ed2459 gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0xb206891e i2c_get_adapter -EXPORT_SYMBOL vmlinux 0xb224b9ca xfrm_lookup -EXPORT_SYMBOL vmlinux 0xb238e0ed alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0xb24cda91 __dquot_transfer -EXPORT_SYMBOL vmlinux 0xb24eecfc nobh_writepage -EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0xb27562e6 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0xb294ffec read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0xb2a8757b loop_register_transfer -EXPORT_SYMBOL vmlinux 0xb2ab2b6f kdb_current_task -EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xb2c47cc7 blk_put_request -EXPORT_SYMBOL vmlinux 0xb2cc3b9f tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0xb2fb0f2f nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xb327a4c7 unregister_nls -EXPORT_SYMBOL vmlinux 0xb3382494 fence_signal_locked -EXPORT_SYMBOL vmlinux 0xb36c6aed scsi_device_set_state -EXPORT_SYMBOL vmlinux 0xb37ac050 user_revoke -EXPORT_SYMBOL vmlinux 0xb39e2455 sk_alloc -EXPORT_SYMBOL vmlinux 0xb3b21031 phy_driver_unregister -EXPORT_SYMBOL vmlinux 0xb3bf73df cpu_active_mask -EXPORT_SYMBOL vmlinux 0xb3c135d4 vfs_symlink -EXPORT_SYMBOL vmlinux 0xb3c59667 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xb3c77ab5 i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb437acc2 mach_pseries -EXPORT_SYMBOL vmlinux 0xb44e01d5 keyring_clear -EXPORT_SYMBOL vmlinux 0xb4513907 security_path_unlink -EXPORT_SYMBOL vmlinux 0xb45be432 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0xb46812d9 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0xb47189b5 reservation_ww_class -EXPORT_SYMBOL vmlinux 0xb473e2c2 lockref_get -EXPORT_SYMBOL vmlinux 0xb47d3274 blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0xb4852697 eth_gro_receive -EXPORT_SYMBOL vmlinux 0xb49cbdc8 mmc_can_reset -EXPORT_SYMBOL vmlinux 0xb4b0148a devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0xb4ed90a2 of_graph_get_remote_port_parent -EXPORT_SYMBOL vmlinux 0xb4faac56 pneigh_lookup -EXPORT_SYMBOL vmlinux 0xb5253a27 sock_get_timestampns -EXPORT_SYMBOL vmlinux 0xb52c68e2 page_follow_link_light -EXPORT_SYMBOL vmlinux 0xb5687ed8 simple_write_begin -EXPORT_SYMBOL vmlinux 0xb56951d6 ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0xb56bfd9e smu_spinwait_cmd -EXPORT_SYMBOL vmlinux 0xb572b863 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb5871c93 rfkill_alloc -EXPORT_SYMBOL vmlinux 0xb58c819d devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xb59db4bf devm_gpiod_get_index -EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5a6b3e6 of_root -EXPORT_SYMBOL vmlinux 0xb5a9fcd7 write_inode_now -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5f23512 nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0xb62078cf ip_ct_attach -EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one -EXPORT_SYMBOL vmlinux 0xb628477d mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0xb62e2759 ip6_expire_frag_queue -EXPORT_SYMBOL vmlinux 0xb6329918 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0xb63bfd7d inet_stream_ops -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb6880e2f d_lookup -EXPORT_SYMBOL vmlinux 0xb68bfa9d node_states -EXPORT_SYMBOL vmlinux 0xb68f41db nd_region_release_lane -EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb69b31c5 flush_signals -EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit -EXPORT_SYMBOL vmlinux 0xb6b69940 fbcon_set_rotate -EXPORT_SYMBOL vmlinux 0xb6d94f37 ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0xb6e7a6ff md_integrity_register -EXPORT_SYMBOL vmlinux 0xb6ebb1b1 cdev_init -EXPORT_SYMBOL vmlinux 0xb70d1151 mntget -EXPORT_SYMBOL vmlinux 0xb70eabb1 pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0xb7164aa2 set_anon_super -EXPORT_SYMBOL vmlinux 0xb737be88 netif_device_detach -EXPORT_SYMBOL vmlinux 0xb73b5275 pcie_get_minimum_link -EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xb74e2c8b kill_fasync -EXPORT_SYMBOL vmlinux 0xb74f0e8f take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xb755a5e0 sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0xb758d1d0 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb7818276 compat_ip_getsockopt -EXPORT_SYMBOL vmlinux 0xb7a20c2e pm860x_reg_write -EXPORT_SYMBOL vmlinux 0xb7a9a13f jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0xb7b31c7f scsi_unregister -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7ca846c request_firmware_nowait -EXPORT_SYMBOL vmlinux 0xb7faab22 pci_enable_device -EXPORT_SYMBOL vmlinux 0xb8269c8e gen_pool_destroy -EXPORT_SYMBOL vmlinux 0xb8275801 __generic_block_fiemap -EXPORT_SYMBOL vmlinux 0xb836c2e9 block_commit_write -EXPORT_SYMBOL vmlinux 0xb85d129c ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0xb86123be _lv1_write_repository_node -EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 -EXPORT_SYMBOL vmlinux 0xb878caf1 __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0xb87e0e3c devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xb8a30c7e _lv1_add_lpm_event_bookmark -EXPORT_SYMBOL vmlinux 0xb8c13d8a generic_file_write_iter -EXPORT_SYMBOL vmlinux 0xb8c7b0e9 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xb8da3280 param_get_int -EXPORT_SYMBOL vmlinux 0xb8db293d mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0xb8e7d992 qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0xb8ea263d dmam_pool_create -EXPORT_SYMBOL vmlinux 0xb902a6fe i2c_add_adapter -EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory -EXPORT_SYMBOL vmlinux 0xb91df7e9 kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xb9a06a9c pnv_pci_get_gpu_dev -EXPORT_SYMBOL vmlinux 0xb9a2bc22 scsi_host_set_state -EXPORT_SYMBOL vmlinux 0xb9a9a607 __lock_page -EXPORT_SYMBOL vmlinux 0xb9aa5c3f mem_cgroup_end_page_stat -EXPORT_SYMBOL vmlinux 0xb9c801a4 of_graph_get_endpoint_by_regs -EXPORT_SYMBOL vmlinux 0xb9e3ead3 generic_end_io_acct -EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xb9eb8740 linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0xba08d989 netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0xba0ef316 tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0xba122a2c smu_done_complete -EXPORT_SYMBOL vmlinux 0xba2215ca __module_put_and_exit -EXPORT_SYMBOL vmlinux 0xba2d79b5 vme_lm_request -EXPORT_SYMBOL vmlinux 0xba2ffec2 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0xba463c60 path_is_under -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba4aff66 scsi_device_put -EXPORT_SYMBOL vmlinux 0xba528d9d __mmc_claim_host -EXPORT_SYMBOL vmlinux 0xba6273e6 jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0xba73f5a0 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0xba89b293 tcf_destroy_chain -EXPORT_SYMBOL vmlinux 0xba93a34a eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0xbaf4f861 get_mm_exe_file -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb0e0de1 pagevec_lookup -EXPORT_SYMBOL vmlinux 0xbb140224 put_tty_driver -EXPORT_SYMBOL vmlinux 0xbb34134a iov_shorten -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font -EXPORT_SYMBOL vmlinux 0xbba2400a csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0xbba6bf5e max8998_bulk_read -EXPORT_SYMBOL vmlinux 0xbbaeb559 memcg_socket_limit_enabled -EXPORT_SYMBOL vmlinux 0xbbb6b412 unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0xbbb9d21b nvm_put_blk_unlocked -EXPORT_SYMBOL vmlinux 0xbbcf1f2a of_n_size_cells -EXPORT_SYMBOL vmlinux 0xbbde26a5 tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0xbbe850c2 kfree_put_link -EXPORT_SYMBOL vmlinux 0xbbfed592 seq_escape -EXPORT_SYMBOL vmlinux 0xbc078839 vmap -EXPORT_SYMBOL vmlinux 0xbc0b3805 skb_queue_tail -EXPORT_SYMBOL vmlinux 0xbc1ca76c vme_master_request -EXPORT_SYMBOL vmlinux 0xbc1d1a4a thaw_super -EXPORT_SYMBOL vmlinux 0xbc29c5d2 param_set_ullong -EXPORT_SYMBOL vmlinux 0xbc2fff16 genl_notify -EXPORT_SYMBOL vmlinux 0xbc30148c ilookup5_nowait -EXPORT_SYMBOL vmlinux 0xbc316de4 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0xbc4e3857 fbcon_rotate_ud -EXPORT_SYMBOL vmlinux 0xbc7830f1 tty_port_tty_set -EXPORT_SYMBOL vmlinux 0xbc982b06 eeh_subsystem_flags -EXPORT_SYMBOL vmlinux 0xbca49577 kern_unmount -EXPORT_SYMBOL vmlinux 0xbcb5b0f4 sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0xbcb68347 fsnotify_init_mark -EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user -EXPORT_SYMBOL vmlinux 0xbcd28d39 dev_get_flags -EXPORT_SYMBOL vmlinux 0xbceb2327 devm_gpiod_get_index_optional -EXPORT_SYMBOL vmlinux 0xbcf150f9 xor_altivec_5 -EXPORT_SYMBOL vmlinux 0xbd090d0f skb_checksum_setup -EXPORT_SYMBOL vmlinux 0xbd13bab2 __nla_reserve -EXPORT_SYMBOL vmlinux 0xbd1bfb59 tty_port_tty_get -EXPORT_SYMBOL vmlinux 0xbd1e202d neigh_update -EXPORT_SYMBOL vmlinux 0xbd1e773a ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0xbd1eaa5d vio_get_attribute -EXPORT_SYMBOL vmlinux 0xbd410260 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init -EXPORT_SYMBOL vmlinux 0xbd4a9354 pci_scan_bus -EXPORT_SYMBOL vmlinux 0xbd6d79f1 __tracepoint_fence_annotate_wait_on -EXPORT_SYMBOL vmlinux 0xbd710e98 generic_listxattr -EXPORT_SYMBOL vmlinux 0xbd7412fd inode_needs_sync -EXPORT_SYMBOL vmlinux 0xbd7971bf tty_register_driver -EXPORT_SYMBOL vmlinux 0xbd7d1c48 pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0xbd803510 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0xbd8cfa15 pasemi_write_mac_reg -EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug -EXPORT_SYMBOL vmlinux 0xbd9785f7 clear_user_page -EXPORT_SYMBOL vmlinux 0xbd9bc793 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0xbda6489a iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0xbdb69b57 uart_add_one_port -EXPORT_SYMBOL vmlinux 0xbde5ace8 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0xbdf919a6 inet6_getname -EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto -EXPORT_SYMBOL vmlinux 0xbe3ab9a2 mount_subtree -EXPORT_SYMBOL vmlinux 0xbe43b62a simple_transaction_release -EXPORT_SYMBOL vmlinux 0xbe563d24 tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0xbe56613d blk_complete_request -EXPORT_SYMBOL vmlinux 0xbe57da8b follow_pfn -EXPORT_SYMBOL vmlinux 0xbe6ac03c sock_create -EXPORT_SYMBOL vmlinux 0xbe79ec2d sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0xbebb8ff6 bdget_disk -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbef91aaf of_scan_pci_bridge -EXPORT_SYMBOL vmlinux 0xbf0626b2 tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0xbf217104 pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0xbf24e50d __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xbf4362ec sg_miter_stop -EXPORT_SYMBOL vmlinux 0xbf47763b dev_change_proto_down -EXPORT_SYMBOL vmlinux 0xbf49db82 uart_match_port -EXPORT_SYMBOL vmlinux 0xbf535a18 bdi_destroy -EXPORT_SYMBOL vmlinux 0xbf610b73 sock_no_accept -EXPORT_SYMBOL vmlinux 0xbf72721c mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0xbf853e23 tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk -EXPORT_SYMBOL vmlinux 0xbf925c42 idr_init -EXPORT_SYMBOL vmlinux 0xbf970355 cdrom_media_changed -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbf9bea32 pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0xbfabfe59 __debugger_iabr_match -EXPORT_SYMBOL vmlinux 0xbfb8b0b7 _raw_read_lock_irqsave -EXPORT_SYMBOL vmlinux 0xbfbacef0 is_nd_btt -EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep -EXPORT_SYMBOL vmlinux 0xbfcd1efc input_unregister_handler -EXPORT_SYMBOL vmlinux 0xbfd1308c do_splice_to -EXPORT_SYMBOL vmlinux 0xbfe86688 twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xbff18efc nvm_generic_to_addr_mode -EXPORT_SYMBOL vmlinux 0xbff8182c plpar_hcall_norets -EXPORT_SYMBOL vmlinux 0xc00e5626 neigh_lookup -EXPORT_SYMBOL vmlinux 0xc011c714 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0xc02ae710 textsearch_prepare -EXPORT_SYMBOL vmlinux 0xc03c22df netlink_net_capable -EXPORT_SYMBOL vmlinux 0xc043bbdf blk_fetch_request -EXPORT_SYMBOL vmlinux 0xc0449419 ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc081cb4d default_qdisc_ops -EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write -EXPORT_SYMBOL vmlinux 0xc083437d rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit -EXPORT_SYMBOL vmlinux 0xc0a41cec vme_bus_type -EXPORT_SYMBOL vmlinux 0xc0a68140 read_cache_pages -EXPORT_SYMBOL vmlinux 0xc0c286bd crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0xc0f3cd98 path_nosuid -EXPORT_SYMBOL vmlinux 0xc112a495 security_path_mkdir -EXPORT_SYMBOL vmlinux 0xc130af86 kmalloc_caches -EXPORT_SYMBOL vmlinux 0xc132db21 i2c_del_driver -EXPORT_SYMBOL vmlinux 0xc13511d7 cpumask_next_and -EXPORT_SYMBOL vmlinux 0xc13a10dc flex_array_alloc -EXPORT_SYMBOL vmlinux 0xc14f0335 open_exec -EXPORT_SYMBOL vmlinux 0xc15a44c6 memzero_explicit -EXPORT_SYMBOL vmlinux 0xc163b1b2 ether_setup -EXPORT_SYMBOL vmlinux 0xc1896cbb xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0xc1c070a0 cdev_add -EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla -EXPORT_SYMBOL vmlinux 0xc1fea91a get_gendisk -EXPORT_SYMBOL vmlinux 0xc20be437 dev_get_by_index -EXPORT_SYMBOL vmlinux 0xc2211e09 srp_rport_get -EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup -EXPORT_SYMBOL vmlinux 0xc29bf967 strspn -EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xc2ac8604 vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0xc2bab7a6 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2fb9ee1 _lv1_shutdown_logical_partition -EXPORT_SYMBOL vmlinux 0xc310b981 strnstr -EXPORT_SYMBOL vmlinux 0xc32f647c sock_no_bind -EXPORT_SYMBOL vmlinux 0xc368dd84 ps3_sb_event_receive_port_destroy -EXPORT_SYMBOL vmlinux 0xc3921c47 dma_direct_ops -EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0xc3dd886d devm_kvasprintf -EXPORT_SYMBOL vmlinux 0xc4053f7f seq_open_private -EXPORT_SYMBOL vmlinux 0xc41edf00 key_task_permission -EXPORT_SYMBOL vmlinux 0xc41f1696 _lv1_configure_virtual_uart_irq -EXPORT_SYMBOL vmlinux 0xc420f5f9 xfrm_input -EXPORT_SYMBOL vmlinux 0xc4298a9d cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0xc44dd757 i2c_register_driver -EXPORT_SYMBOL vmlinux 0xc45755de find_next_zero_bit_le -EXPORT_SYMBOL vmlinux 0xc46aa3b3 __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0xc4702b1c rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0xc47cdf9c _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0xc48307db lz4_decompress -EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup -EXPORT_SYMBOL vmlinux 0xc4a86068 agp_bind_memory -EXPORT_SYMBOL vmlinux 0xc4bc2fac filemap_flush -EXPORT_SYMBOL vmlinux 0xc4c639bd try_module_get -EXPORT_SYMBOL vmlinux 0xc5089620 _lv1_stop_ppe_periodic_tracer -EXPORT_SYMBOL vmlinux 0xc52c38bf lwtunnel_input -EXPORT_SYMBOL vmlinux 0xc53faceb sync_blockdev -EXPORT_SYMBOL vmlinux 0xc54a2261 vme_unregister_driver -EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 -EXPORT_SYMBOL vmlinux 0xc5537834 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0xc55de23c percpu_counter_set -EXPORT_SYMBOL vmlinux 0xc567f166 inet6_del_protocol -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc5bfd40d dquot_file_open -EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot -EXPORT_SYMBOL vmlinux 0xc5e1c53a dev_mc_flush -EXPORT_SYMBOL vmlinux 0xc5e68d9d macio_request_resource -EXPORT_SYMBOL vmlinux 0xc5f2060e tcp_recvmsg -EXPORT_SYMBOL vmlinux 0xc5f9a23c input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc6571646 __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes -EXPORT_SYMBOL vmlinux 0xc663b075 __ioremap -EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif -EXPORT_SYMBOL vmlinux 0xc6772da2 radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0xc694d59e mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0xc6b22c71 __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6dd0cdd ps2_handle_ack -EXPORT_SYMBOL vmlinux 0xc6f512ee pci_disable_link_state -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc733379f mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0xc7357ca2 fbcon_rotate_ccw -EXPORT_SYMBOL vmlinux 0xc736d935 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0xc7384932 install_exec_creds -EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass -EXPORT_SYMBOL vmlinux 0xc7591182 sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0xc7591cf0 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0xc76ba558 xfrm6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0xc7789a0a register_gifconf -EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc7898275 flex_array_shrink -EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc -EXPORT_SYMBOL vmlinux 0xc7a376f8 dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7ad39c5 dentry_path_raw -EXPORT_SYMBOL vmlinux 0xc7f39b15 irq_stat -EXPORT_SYMBOL vmlinux 0xc7fb658e vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0xc80cf888 max8998_update_reg -EXPORT_SYMBOL vmlinux 0xc8284bcc blk_recount_segments -EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0xc83f5cfc cmdline_parts_find -EXPORT_SYMBOL vmlinux 0xc84604c9 bio_put -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc84b1563 sk_stream_error -EXPORT_SYMBOL vmlinux 0xc84fc8d0 __sb_start_write -EXPORT_SYMBOL vmlinux 0xc8571bcb idr_for_each -EXPORT_SYMBOL vmlinux 0xc867a172 netif_receive_skb -EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc88bb889 __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8ac7829 serio_unregister_port -EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xc8c99c7c __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xc8e31d75 _lv1_configure_irq_state_bitmap -EXPORT_SYMBOL vmlinux 0xc8ed5515 iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0xc8f0aa38 tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0xc902dce0 param_ops_short -EXPORT_SYMBOL vmlinux 0xc90ae049 bioset_free -EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen -EXPORT_SYMBOL vmlinux 0xc9221aed netlink_broadcast -EXPORT_SYMBOL vmlinux 0xc9320dc8 i2c_master_send -EXPORT_SYMBOL vmlinux 0xc93fbc54 wait_for_completion_io -EXPORT_SYMBOL vmlinux 0xc947ac0d jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0xc95d9a94 fd_install -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc978479a xz_dec_run -EXPORT_SYMBOL vmlinux 0xc9849598 abort_creds -EXPORT_SYMBOL vmlinux 0xc98be11c pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0xc99090f0 udp_seq_open -EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9affeb9 thermal_cdev_update -EXPORT_SYMBOL vmlinux 0xc9bd91ed __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0xc9d4d7f7 pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0xc9e62020 pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0xc9fc598d pasemi_read_dma_reg -EXPORT_SYMBOL vmlinux 0xca0588ad dev_addr_flush -EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy -EXPORT_SYMBOL vmlinux 0xca10ef13 security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0xca188696 inet6_register_icmp_sender -EXPORT_SYMBOL vmlinux 0xca1b62e9 scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0xca2b1cd6 ida_pre_get -EXPORT_SYMBOL vmlinux 0xca3b28c6 store_vr_state -EXPORT_SYMBOL vmlinux 0xca3c92e6 filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0xca4a8a40 simple_nosetlease -EXPORT_SYMBOL vmlinux 0xca5a1dec qdisc_reset -EXPORT_SYMBOL vmlinux 0xca5ee09a vme_free_consistent -EXPORT_SYMBOL vmlinux 0xca7235ac pci_enable_device_io -EXPORT_SYMBOL vmlinux 0xca825895 pmu_suspend -EXPORT_SYMBOL vmlinux 0xca832efe kmalloc_order -EXPORT_SYMBOL vmlinux 0xca8a3df7 netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xca9798f9 tcp_seq_open -EXPORT_SYMBOL vmlinux 0xca9ce6ef giveup_fpu -EXPORT_SYMBOL vmlinux 0xcaa029de in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xcaabf3f9 pasemi_write_iob_reg -EXPORT_SYMBOL vmlinux 0xcace6297 idr_is_empty -EXPORT_SYMBOL vmlinux 0xcad274bf dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0xcae1c661 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0xcae8a8e9 __ps2_command -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcaf56bf9 fsnotify_alloc_group -EXPORT_SYMBOL vmlinux 0xcb00860a devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb11d0da key_revoke -EXPORT_SYMBOL vmlinux 0xcb408e2a of_get_mac_address -EXPORT_SYMBOL vmlinux 0xcb62a813 phy_start_aneg -EXPORT_SYMBOL vmlinux 0xcb936989 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc3b94e eeh_check_failure -EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0xcbca2b4f tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0xcbe8b038 _lv1_configure_execution_time_variable -EXPORT_SYMBOL vmlinux 0xcbe91879 agp_allocate_memory -EXPORT_SYMBOL vmlinux 0xcbf1acdd tcp_proc_register -EXPORT_SYMBOL vmlinux 0xcc0d061d of_mm_gpiochip_remove -EXPORT_SYMBOL vmlinux 0xcc17504d _raw_read_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc25b5b8 tty_port_close_end -EXPORT_SYMBOL vmlinux 0xcc28870f tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc6fc07e sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0xcc80bebd dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0xcc836a25 compat_nf_getsockopt -EXPORT_SYMBOL vmlinux 0xcc89c246 pasemi_dma_alloc_chan -EXPORT_SYMBOL vmlinux 0xcc921b76 blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0xcc963f1d compat_sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0xcc97ecbc jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0xcca81551 sock_no_sendpage -EXPORT_SYMBOL vmlinux 0xccab082a backlight_force_update -EXPORT_SYMBOL vmlinux 0xccbec23c pnv_cxl_release_hwirq_ranges -EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor -EXPORT_SYMBOL vmlinux 0xccd11828 inet_ioctl -EXPORT_SYMBOL vmlinux 0xccd174a1 set_posix_acl -EXPORT_SYMBOL vmlinux 0xccf104c9 agp_generic_destroy_page -EXPORT_SYMBOL vmlinux 0xcd0529c7 _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0xcd20667a kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0xcd236903 mb_cache_entry_insert -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd3d62c9 pcie_set_mps -EXPORT_SYMBOL vmlinux 0xcd45c557 param_ops_byte -EXPORT_SYMBOL vmlinux 0xcd557ac0 tty_devnum -EXPORT_SYMBOL vmlinux 0xcd57f7b0 radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0xcd637bd6 input_free_device -EXPORT_SYMBOL vmlinux 0xcd769f62 _lv1_gpu_device_map -EXPORT_SYMBOL vmlinux 0xcd76f81f of_get_parent -EXPORT_SYMBOL vmlinux 0xcd7ede2a seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xcd86c87f __cond_resched_lock -EXPORT_SYMBOL vmlinux 0xcdaa37ac inet_add_protocol -EXPORT_SYMBOL vmlinux 0xcdb0ea78 scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0xcdb7faec fifo_set_limit -EXPORT_SYMBOL vmlinux 0xcdb9fd1c cdev_del -EXPORT_SYMBOL vmlinux 0xcdc176e2 get_super -EXPORT_SYMBOL vmlinux 0xcdc1ceb8 xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdcbae18 vio_cmo_set_dev_desired -EXPORT_SYMBOL vmlinux 0xcdfb65e2 vfs_fsync_range -EXPORT_SYMBOL vmlinux 0xce0ce084 ip_queue_xmit -EXPORT_SYMBOL vmlinux 0xce194153 inet6_register_protosw -EXPORT_SYMBOL vmlinux 0xce2053d6 __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce34ab39 of_gpio_simple_xlate -EXPORT_SYMBOL vmlinux 0xce3b3f09 profile_pc -EXPORT_SYMBOL vmlinux 0xce409cda pmac_set_early_video_resume -EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce6b2269 dentry_unhash -EXPORT_SYMBOL vmlinux 0xce6ed521 of_get_address -EXPORT_SYMBOL vmlinux 0xce74c24f dma_common_get_sgtable -EXPORT_SYMBOL vmlinux 0xce77e79d kmem_cache_size -EXPORT_SYMBOL vmlinux 0xce7850e1 crc32_le_shift -EXPORT_SYMBOL vmlinux 0xce96d7b5 __bio_clone_fast -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xceae504f cmdline_parts_free -EXPORT_SYMBOL vmlinux 0xceb4c937 ps2_command -EXPORT_SYMBOL vmlinux 0xcecf2c75 dev_set_allmulti -EXPORT_SYMBOL vmlinux 0xced777cb proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0xced938fa tcp_disconnect -EXPORT_SYMBOL vmlinux 0xcee5d187 dentry_update_name_case -EXPORT_SYMBOL vmlinux 0xcef22cf2 of_device_unregister -EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 -EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcf3d4176 netlink_kernel_release -EXPORT_SYMBOL vmlinux 0xcf61ebd0 blk_end_request -EXPORT_SYMBOL vmlinux 0xcf80eb6f do_truncate -EXPORT_SYMBOL vmlinux 0xcfb1f430 blk_start_request -EXPORT_SYMBOL vmlinux 0xcfb7d5a0 cpu_sibling_map -EXPORT_SYMBOL vmlinux 0xcfcee75a bio_integrity_endio -EXPORT_SYMBOL vmlinux 0xcfd0c36d lro_flush_all -EXPORT_SYMBOL vmlinux 0xcfeb384d sock_kmalloc -EXPORT_SYMBOL vmlinux 0xd0102d58 xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0xd0354024 pci_disable_msi -EXPORT_SYMBOL vmlinux 0xd03e0326 ibmebus_unregister_driver -EXPORT_SYMBOL vmlinux 0xd03e79c1 mmc_stop_bkops -EXPORT_SYMBOL vmlinux 0xd03f1e83 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0xd04d1e09 tty_hung_up_p -EXPORT_SYMBOL vmlinux 0xd05931ec _lv1_set_lpm_counter_control -EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond -EXPORT_SYMBOL vmlinux 0xd086c81d nf_register_hook -EXPORT_SYMBOL vmlinux 0xd08f6239 sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc -EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init -EXPORT_SYMBOL vmlinux 0xd0a88e27 bio_split -EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces -EXPORT_SYMBOL vmlinux 0xd0bbd91c filp_close -EXPORT_SYMBOL vmlinux 0xd0d00cf6 ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0xd0d02c90 complete_request_key -EXPORT_SYMBOL vmlinux 0xd0e4e7c9 eth_header -EXPORT_SYMBOL vmlinux 0xd0e89f27 get_unmapped_area -EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format -EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first -EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key -EXPORT_SYMBOL vmlinux 0xd111b6c4 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0xd1262886 rtas_data_buf -EXPORT_SYMBOL vmlinux 0xd14cdb3c scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd18438ea ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0xd1a6e6cf posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0xd1bf8137 dquot_scan_active -EXPORT_SYMBOL vmlinux 0xd1bf96fb gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0xd1c1aeea tcp_rcv_established -EXPORT_SYMBOL vmlinux 0xd1cad558 security_path_link -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1fc3f78 unlink_framebuffer -EXPORT_SYMBOL vmlinux 0xd1fe8ebb _lv1_get_spe_interrupt_status -EXPORT_SYMBOL vmlinux 0xd212dca6 mutex_unlock -EXPORT_SYMBOL vmlinux 0xd21af9ab xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xd21bae40 devfreq_add_device -EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xd2586ddd dev_remove_offload -EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd25f7a97 vme_new_dma_list -EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd2883147 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0xd2b09ce5 __kmalloc -EXPORT_SYMBOL vmlinux 0xd2b12a6a vfs_mknod -EXPORT_SYMBOL vmlinux 0xd2b89cdc input_allocate_device -EXPORT_SYMBOL vmlinux 0xd2c2e75b textsearch_unregister -EXPORT_SYMBOL vmlinux 0xd2d51cbe simple_setattr -EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2e5aa1f netdev_boot_setup_check -EXPORT_SYMBOL vmlinux 0xd2ef2638 smu_cmdbuf_abs -EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd31d1f0a ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0xd3299aa7 input_flush_device -EXPORT_SYMBOL vmlinux 0xd32fca2c scsi_target_resume -EXPORT_SYMBOL vmlinux 0xd35213a5 ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0xd3609377 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0xd3788441 jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0xd38c15d6 tso_build_hdr -EXPORT_SYMBOL vmlinux 0xd3a732ab blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xd3a83eae bio_init -EXPORT_SYMBOL vmlinux 0xd3b8754b unregister_qdisc -EXPORT_SYMBOL vmlinux 0xd3ba4e0b should_remove_suid -EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xd3c3788f request_key -EXPORT_SYMBOL vmlinux 0xd3e32253 i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0xd3ea3607 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0xd3efabf7 of_find_node_with_property -EXPORT_SYMBOL vmlinux 0xd3fddcbb ppp_channel_index -EXPORT_SYMBOL vmlinux 0xd409383c pmu_request -EXPORT_SYMBOL vmlinux 0xd40ac746 sys_fillrect -EXPORT_SYMBOL vmlinux 0xd4198691 scsi_ioctl_reset -EXPORT_SYMBOL vmlinux 0xd4223258 agp_generic_type_to_mask_type -EXPORT_SYMBOL vmlinux 0xd44b7e21 to_tm -EXPORT_SYMBOL vmlinux 0xd45ad655 nvm_unregister_mgr -EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex -EXPORT_SYMBOL vmlinux 0xd487f22b lookup_bdev -EXPORT_SYMBOL vmlinux 0xd48e37a4 put_disk -EXPORT_SYMBOL vmlinux 0xd48fdeef dql_completed -EXPORT_SYMBOL vmlinux 0xd49aa9ec elevator_init -EXPORT_SYMBOL vmlinux 0xd4db6185 nf_getsockopt -EXPORT_SYMBOL vmlinux 0xd51a6af5 of_get_property -EXPORT_SYMBOL vmlinux 0xd51c296c invalidate_bdev -EXPORT_SYMBOL vmlinux 0xd53422ee jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0xd5443565 pci_get_subsys -EXPORT_SYMBOL vmlinux 0xd546abe1 md_update_sb -EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0xd5592aad nf_log_register -EXPORT_SYMBOL vmlinux 0xd55d1b2d inet6_del_offload -EXPORT_SYMBOL vmlinux 0xd569a967 __kfree_skb -EXPORT_SYMBOL vmlinux 0xd581f7de blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0xd5855bbb param_set_uint -EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames -EXPORT_SYMBOL vmlinux 0xd5b9a04e pci_select_bars -EXPORT_SYMBOL vmlinux 0xd5c4b750 dquot_get_state -EXPORT_SYMBOL vmlinux 0xd5d228ac pcim_enable_device -EXPORT_SYMBOL vmlinux 0xd5e1d719 _lv1_set_ppe_periodic_tracer_frequency -EXPORT_SYMBOL vmlinux 0xd5f40591 blk_start_queue -EXPORT_SYMBOL vmlinux 0xd60b7d0a drop_nlink -EXPORT_SYMBOL vmlinux 0xd60d124b simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0xd61324a0 do_splice_from -EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0xd627eb09 dmam_free_noncoherent -EXPORT_SYMBOL vmlinux 0xd6293937 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout -EXPORT_SYMBOL vmlinux 0xd63aded3 mdiobus_read -EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode -EXPORT_SYMBOL vmlinux 0xd682da11 xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd68cd1e5 devm_ioremap_nocache -EXPORT_SYMBOL vmlinux 0xd6a8b218 qdisc_watchdog_schedule_ns -EXPORT_SYMBOL vmlinux 0xd6b8ce27 rwsem_wake -EXPORT_SYMBOL vmlinux 0xd6d63e9d lg_local_lock_cpu -EXPORT_SYMBOL vmlinux 0xd6edf811 _lv1_release_memory -EXPORT_SYMBOL vmlinux 0xd6ee3d39 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd6f37ce6 nonseekable_open -EXPORT_SYMBOL vmlinux 0xd6fd4053 __arch_hweight32 -EXPORT_SYMBOL vmlinux 0xd7124b91 blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0xd72e1cfc _lv1_set_lpm_spr_trigger -EXPORT_SYMBOL vmlinux 0xd74097a1 __frontswap_test -EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function -EXPORT_SYMBOL vmlinux 0xd76119ab pm860x_set_bits -EXPORT_SYMBOL vmlinux 0xd761a383 ioremap_prot -EXPORT_SYMBOL vmlinux 0xd786c0ea plpar_hcall9 -EXPORT_SYMBOL vmlinux 0xd7ad1dfe from_kuid_munged -EXPORT_SYMBOL vmlinux 0xd7c3be68 __neigh_event_send -EXPORT_SYMBOL vmlinux 0xd7c93416 posix_test_lock -EXPORT_SYMBOL vmlinux 0xd7d050f2 twl6040_set_bits -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7f571d9 neigh_destroy -EXPORT_SYMBOL vmlinux 0xd803db70 agp_unbind_memory -EXPORT_SYMBOL vmlinux 0xd807fa9b xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0xd80a1234 nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0xd80bc2dc pci_get_slot -EXPORT_SYMBOL vmlinux 0xd81eac9f ab3100_event_unregister -EXPORT_SYMBOL vmlinux 0xd84e3d14 mmc_put_card -EXPORT_SYMBOL vmlinux 0xd8584f57 nvm_end_io -EXPORT_SYMBOL vmlinux 0xd8597db7 sk_dst_check -EXPORT_SYMBOL vmlinux 0xd86eadc7 find_vma -EXPORT_SYMBOL vmlinux 0xd8909fc2 register_filesystem -EXPORT_SYMBOL vmlinux 0xd89cab39 mmc_release_host -EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd89e5000 submit_bio -EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8ac28b3 mdiobus_write -EXPORT_SYMBOL vmlinux 0xd8b33a30 dcache_readdir -EXPORT_SYMBOL vmlinux 0xd8b717f6 lock_fb_info -EXPORT_SYMBOL vmlinux 0xd8bb28a0 dput -EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region -EXPORT_SYMBOL vmlinux 0xd8ed77ee blk_queue_resize_tags -EXPORT_SYMBOL vmlinux 0xd8f69487 eth_header_cache_update -EXPORT_SYMBOL vmlinux 0xd933bbdc phy_start_interrupts -EXPORT_SYMBOL vmlinux 0xd9342273 nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0xd94a3bf1 tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0xd9641ed4 dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd9bac924 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0xd9c9375d elv_dispatch_sort -EXPORT_SYMBOL vmlinux 0xd9ccd603 alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0xd9cffb07 flush_dcache_icache_page -EXPORT_SYMBOL vmlinux 0xd9d4d09d _lv1_release_io_segment -EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler -EXPORT_SYMBOL vmlinux 0xd9e150ab pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0xd9ee9e32 simple_open -EXPORT_SYMBOL vmlinux 0xd9ff0fbd of_find_backlight_by_node -EXPORT_SYMBOL vmlinux 0xda04caca dma_sync_wait -EXPORT_SYMBOL vmlinux 0xda05e769 tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0xda06211b fb_pan_display -EXPORT_SYMBOL vmlinux 0xda06814b release_pages -EXPORT_SYMBOL vmlinux 0xda0f5234 rtas_offline_cpus_mask -EXPORT_SYMBOL vmlinux 0xda2e0140 mmc_gpio_request_cd -EXPORT_SYMBOL vmlinux 0xda39b0ed file_ns_capable -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda512df4 seq_putc -EXPORT_SYMBOL vmlinux 0xda53dee2 __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0xda994bb7 unregister_cdrom -EXPORT_SYMBOL vmlinux 0xda9fc7ae kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0xdaa25090 pci_get_device -EXPORT_SYMBOL vmlinux 0xdabc1ea8 fsl_lbc_find -EXPORT_SYMBOL vmlinux 0xdac03ed9 netif_napi_add -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdac545b9 lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0xdade999c memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0xdae85e43 noop_llseek -EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell -EXPORT_SYMBOL vmlinux 0xdaf1b4d5 simple_readpage -EXPORT_SYMBOL vmlinux 0xdafc086a xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0xdb01198e fsl_upm_find -EXPORT_SYMBOL vmlinux 0xdb114097 scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0xdb15abfb alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0xdb2702b6 dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0xdb28c6a4 blk_queue_dma_pad -EXPORT_SYMBOL vmlinux 0xdb3bcca6 cancel_delayed_work -EXPORT_SYMBOL vmlinux 0xdb4ecc5f mfd_add_devices -EXPORT_SYMBOL vmlinux 0xdb55c43d netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0xdb599f08 add_disk -EXPORT_SYMBOL vmlinux 0xdb5ca272 __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0xdb60718d nf_register_sockopt -EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb7fcfc2 tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0xdb85cf74 nf_log_unset -EXPORT_SYMBOL vmlinux 0xdba10346 dev_uc_unsync -EXPORT_SYMBOL vmlinux 0xdbb9982b ioctl_by_bdev -EXPORT_SYMBOL vmlinux 0xdbf54473 skb_dequeue -EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc214961 fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0xdc2b0f93 done_path_create -EXPORT_SYMBOL vmlinux 0xdc3c41a8 __crypto_memneq -EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 -EXPORT_SYMBOL vmlinux 0xdc509ce5 vfs_rmdir -EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc756a37 release_sock -EXPORT_SYMBOL vmlinux 0xdc9498dd down -EXPORT_SYMBOL vmlinux 0xdc9de9e1 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0xdca5d9a5 jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close -EXPORT_SYMBOL vmlinux 0xdcb764ad memset -EXPORT_SYMBOL vmlinux 0xdcd897d6 tcf_hash_insert -EXPORT_SYMBOL vmlinux 0xdcdb96f0 of_get_next_child -EXPORT_SYMBOL vmlinux 0xdce8b9d3 dma_iommu_ops -EXPORT_SYMBOL vmlinux 0xdcefb9a5 pmu_resume -EXPORT_SYMBOL vmlinux 0xdcfa30af blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0xdd1dd662 udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0xdd1e15cd of_platform_device_create -EXPORT_SYMBOL vmlinux 0xdd208dfe netdev_notify_peers -EXPORT_SYMBOL vmlinux 0xdd3ab713 cdrom_ioctl -EXPORT_SYMBOL vmlinux 0xdd539be2 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0xdd5f6f9e pci_unmap_rom -EXPORT_SYMBOL vmlinux 0xdd60858d dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy -EXPORT_SYMBOL vmlinux 0xdd8921e5 md_write_start -EXPORT_SYMBOL vmlinux 0xdd9030af current_stack_pointer -EXPORT_SYMBOL vmlinux 0xdd955144 __debugger -EXPORT_SYMBOL vmlinux 0xddb3769b lockref_mark_dead -EXPORT_SYMBOL vmlinux 0xddc37d92 tcf_hash_cleanup -EXPORT_SYMBOL vmlinux 0xddc5e154 scsi_add_device -EXPORT_SYMBOL vmlinux 0xddde640a fb_set_cmap -EXPORT_SYMBOL vmlinux 0xddf23b29 dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0xde22e267 bio_add_page -EXPORT_SYMBOL vmlinux 0xde2c5937 mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0xde399fa2 of_node_get -EXPORT_SYMBOL vmlinux 0xde48e9ca _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0xde64e98a swiotlb_alloc_coherent -EXPORT_SYMBOL vmlinux 0xde783883 pSeries_disable_reloc_on_exc -EXPORT_SYMBOL vmlinux 0xde8b6fbb ps3_sb_event_receive_port_setup -EXPORT_SYMBOL vmlinux 0xde91448c load_vr_state -EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages -EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size -EXPORT_SYMBOL vmlinux 0xded691f7 alloc_file -EXPORT_SYMBOL vmlinux 0xdef47481 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0xdf0437b0 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf34977e param_ops_bint -EXPORT_SYMBOL vmlinux 0xdf4710a9 eth_type_trans -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol -EXPORT_SYMBOL vmlinux 0xdf60fc83 _lv1_net_start_tx_dma -EXPORT_SYMBOL vmlinux 0xdf68a952 __pci_enable_wake -EXPORT_SYMBOL vmlinux 0xdf6c3091 vfs_unlink -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdf98c27f inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0xdfc896d3 tty_hangup -EXPORT_SYMBOL vmlinux 0xdff38452 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xe041b1f4 serio_unregister_driver -EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xe053fa1a xattr_full_name -EXPORT_SYMBOL vmlinux 0xe058e08f scsi_print_command -EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone -EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool -EXPORT_SYMBOL vmlinux 0xe08d7e7b scsi_execute_req_flags -EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0dbd5e4 pci_request_region_exclusive -EXPORT_SYMBOL vmlinux 0xe0ffdac3 proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0xe1092a6f dquot_quota_sync -EXPORT_SYMBOL vmlinux 0xe11194cb debugfs_create_automount -EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -EXPORT_SYMBOL vmlinux 0xe11b4c9e dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0xe12c6882 of_get_cpu_node -EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0xe1457625 d_alloc_pseudo -EXPORT_SYMBOL vmlinux 0xe16c1736 sk_common_release -EXPORT_SYMBOL vmlinux 0xe16cd1d6 dev_err -EXPORT_SYMBOL vmlinux 0xe16da9c8 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xe1ed63aa i8042_remove_filter -EXPORT_SYMBOL vmlinux 0xe1ff1e52 of_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xe20372ae radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0xe204ab38 kobject_del -EXPORT_SYMBOL vmlinux 0xe20c63e7 _lv1_unmap_device_mmio_region -EXPORT_SYMBOL vmlinux 0xe2172767 blk_mq_abort_requeue_list -EXPORT_SYMBOL vmlinux 0xe220ceb8 __debugger_sstep -EXPORT_SYMBOL vmlinux 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL vmlinux 0xe2316779 pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe23d4a96 xfrm4_rcv -EXPORT_SYMBOL vmlinux 0xe240532e sock_recvmsg -EXPORT_SYMBOL vmlinux 0xe245356e nf_unregister_hooks -EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 -EXPORT_SYMBOL vmlinux 0xe296d9cc inet6_release -EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t -EXPORT_SYMBOL vmlinux 0xe2ac17e4 nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0xe2be5498 lg_global_unlock -EXPORT_SYMBOL vmlinux 0xe2c7fab0 ppp_input -EXPORT_SYMBOL vmlinux 0xe2cce1a3 tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0xe2ce5e73 blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xe2d4779b blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0xe2d484b7 vfs_setpos -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0xe2fc0247 sk_stop_timer -EXPORT_SYMBOL vmlinux 0xe2ffb51e phy_print_status -EXPORT_SYMBOL vmlinux 0xe3020a1c free_buffer_head -EXPORT_SYMBOL vmlinux 0xe317764d jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0xe33df04c of_find_device_by_node -EXPORT_SYMBOL vmlinux 0xe348da5e __netif_schedule -EXPORT_SYMBOL vmlinux 0xe3563a29 save_mount_options -EXPORT_SYMBOL vmlinux 0xe368056f inet_recvmsg -EXPORT_SYMBOL vmlinux 0xe38d1b80 vio_unregister_device -EXPORT_SYMBOL vmlinux 0xe3a53f4c sort -EXPORT_SYMBOL vmlinux 0xe3b65a54 nvm_dev_dma_alloc -EXPORT_SYMBOL vmlinux 0xe3ba5003 mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xe3d8b286 fbcon_set_bitops -EXPORT_SYMBOL vmlinux 0xe3ed36bd start_tty -EXPORT_SYMBOL vmlinux 0xe4087d7e scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0xe4155b1e napi_gro_frags -EXPORT_SYMBOL vmlinux 0xe43fc749 proc_set_user -EXPORT_SYMBOL vmlinux 0xe4531a5c mpage_writepage -EXPORT_SYMBOL vmlinux 0xe47abd0d dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 -EXPORT_SYMBOL vmlinux 0xe48991b1 pskb_expand_head -EXPORT_SYMBOL vmlinux 0xe48fc4d2 kernel_getsockopt -EXPORT_SYMBOL vmlinux 0xe4a52358 generic_pipe_buf_steal -EXPORT_SYMBOL vmlinux 0xe4ad758c dev_get_stats -EXPORT_SYMBOL vmlinux 0xe4ae0db9 jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0xe4df03ba nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0xe4e0be83 blk_rq_set_block_pc -EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array -EXPORT_SYMBOL vmlinux 0xe4eaab2e t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0xe4f1d68a abx500_register_ops -EXPORT_SYMBOL vmlinux 0xe4f88b45 vga_tryget -EXPORT_SYMBOL vmlinux 0xe4fa3e23 __init_rwsem -EXPORT_SYMBOL vmlinux 0xe4fe8ca1 _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe527a70b phy_device_remove -EXPORT_SYMBOL vmlinux 0xe52da1a2 dup_iter -EXPORT_SYMBOL vmlinux 0xe54c6f72 mount_bdev -EXPORT_SYMBOL vmlinux 0xe55a8b5b capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0xe56233d0 nd_btt_probe -EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton -EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set -EXPORT_SYMBOL vmlinux 0xe5886346 setattr_copy -EXPORT_SYMBOL vmlinux 0xe58e14bf genphy_read_status -EXPORT_SYMBOL vmlinux 0xe5b0f580 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0xe5c018a7 pci_disable_msix -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5db1599 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0xe5dffed7 jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0xe5e5fe96 __skb_checksum -EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xe60988ac _lv1_query_logical_partition_address_region_info -EXPORT_SYMBOL vmlinux 0xe6142bb6 phy_detach -EXPORT_SYMBOL vmlinux 0xe630824a mdiobus_scan -EXPORT_SYMBOL vmlinux 0xe6462a34 scsi_host_lookup -EXPORT_SYMBOL vmlinux 0xe65a73d7 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0xe675bb76 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe69a9df4 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0xe6abbe94 machine_id -EXPORT_SYMBOL vmlinux 0xe6af8d30 mmc_start_bkops -EXPORT_SYMBOL vmlinux 0xe6b6c11e netif_schedule_queue -EXPORT_SYMBOL vmlinux 0xe6bcb677 elevator_exit -EXPORT_SYMBOL vmlinux 0xe6f7cf22 pagecache_write_end -EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock -EXPORT_SYMBOL vmlinux 0xe73838b3 n_tty_compat_ioctl_helper -EXPORT_SYMBOL vmlinux 0xe741424a sock_kfree_s -EXPORT_SYMBOL vmlinux 0xe7428472 agp_generic_insert_memory -EXPORT_SYMBOL vmlinux 0xe74aa406 _lv1_set_dabr -EXPORT_SYMBOL vmlinux 0xe751127c param_set_copystring -EXPORT_SYMBOL vmlinux 0xe7529b9a pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0xe75b93d3 blk_register_region -EXPORT_SYMBOL vmlinux 0xe773ebc7 mmc_power_save_host -EXPORT_SYMBOL vmlinux 0xe77a4ed2 bprm_change_interp -EXPORT_SYMBOL vmlinux 0xe77e14fe nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx -EXPORT_SYMBOL vmlinux 0xe7b10040 tty_name -EXPORT_SYMBOL vmlinux 0xe7c4d5c6 set_page_dirty -EXPORT_SYMBOL vmlinux 0xe7cd99b7 smu_queue_simple -EXPORT_SYMBOL vmlinux 0xe7ce7439 _memcpy_fromio -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7e9d949 genphy_resume -EXPORT_SYMBOL vmlinux 0xe7f5ff16 ip_route_me_harder -EXPORT_SYMBOL vmlinux 0xe7f6f1c2 param_get_long -EXPORT_SYMBOL vmlinux 0xe8050ab1 dev_mc_add -EXPORT_SYMBOL vmlinux 0xe8194876 have_submounts -EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0xe8225dc6 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0xe824075f devfreq_interval_update -EXPORT_SYMBOL vmlinux 0xe82cc752 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0xe83890bd i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0xe896e953 ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0xe8b45061 skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xe8c438f3 proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0xe8cba548 ata_link_printk -EXPORT_SYMBOL vmlinux 0xe8ccff25 frontswap_register_ops -EXPORT_SYMBOL vmlinux 0xe8d9b8c8 __frontswap_store -EXPORT_SYMBOL vmlinux 0xe8e18994 i2c_clients_command -EXPORT_SYMBOL vmlinux 0xe8ed9c0b qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0xe8ef0ff0 current_kernel_time64 -EXPORT_SYMBOL vmlinux 0xe90dfe92 genlmsg_put -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe928f74b mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0xe9378d58 idr_get_next -EXPORT_SYMBOL vmlinux 0xe9394801 revert_creds -EXPORT_SYMBOL vmlinux 0xe9415ec1 module_put -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe961f867 mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0xe96acd68 ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0xe970a324 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0xe998f96f pci_request_region -EXPORT_SYMBOL vmlinux 0xe9abfb5d mb_cache_entry_alloc -EXPORT_SYMBOL vmlinux 0xe9b75a70 input_set_abs_params -EXPORT_SYMBOL vmlinux 0xe9d41eb4 fsync_bdev -EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len -EXPORT_SYMBOL vmlinux 0xea08d3f9 netif_carrier_off -EXPORT_SYMBOL vmlinux 0xea1cd247 bio_phys_segments -EXPORT_SYMBOL vmlinux 0xea1f82c3 sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0xea290669 vfs_readf -EXPORT_SYMBOL vmlinux 0xea2fdaec bitmap_start_sync -EXPORT_SYMBOL vmlinux 0xea38a8b1 pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0xea442524 may_umount_tree -EXPORT_SYMBOL vmlinux 0xea6280da pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0xea664eb2 pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table -EXPORT_SYMBOL vmlinux 0xea968c96 ___ratelimit -EXPORT_SYMBOL vmlinux 0xea96ee2b __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0xea97cd95 i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0xeab43f93 mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0xeab86ecc __register_binfmt -EXPORT_SYMBOL vmlinux 0xeb041c21 always_delete_dentry -EXPORT_SYMBOL vmlinux 0xeb3530f9 down_write -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact -EXPORT_SYMBOL vmlinux 0xeb6b283d mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0xeb7500ab kernel_sendpage -EXPORT_SYMBOL vmlinux 0xeb7cd009 abx500_set_register_interruptible -EXPORT_SYMBOL vmlinux 0xeb8c7b7b cxl_use_count -EXPORT_SYMBOL vmlinux 0xeb9f3a75 scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0xeba2a1f7 rtas_indicator_present -EXPORT_SYMBOL vmlinux 0xebbc9138 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0xebcab3a6 ppc_pci_io -EXPORT_SYMBOL vmlinux 0xebe3af9e blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0xebed6f92 qdisc_destroy -EXPORT_SYMBOL vmlinux 0xebf82ef0 page_symlink -EXPORT_SYMBOL vmlinux 0xebfaaa64 dev_alloc_name -EXPORT_SYMBOL vmlinux 0xec0c7b68 __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0xec141445 __brelse -EXPORT_SYMBOL vmlinux 0xec17ffcd scm_detach_fds -EXPORT_SYMBOL vmlinux 0xec281705 pmac_resume_agp_for_card -EXPORT_SYMBOL vmlinux 0xec30765a _lv1_allocate_io_segment -EXPORT_SYMBOL vmlinux 0xec3efde4 scsi_verify_blk_ioctl -EXPORT_SYMBOL vmlinux 0xec426fcc generic_file_read_iter -EXPORT_SYMBOL vmlinux 0xec65f1fb pci_save_state -EXPORT_SYMBOL vmlinux 0xec666cea dev_get_by_name -EXPORT_SYMBOL vmlinux 0xec972921 bio_integrity_trim -EXPORT_SYMBOL vmlinux 0xecbb926f xor_altivec_3 -EXPORT_SYMBOL vmlinux 0xecd982a2 __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xecdbfe74 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecebc451 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0xecefa83b account_page_redirty -EXPORT_SYMBOL vmlinux 0xed30aca9 lwtunnel_encap_add_ops -EXPORT_SYMBOL vmlinux 0xed38bc9f ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xed5b081c twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0xed652427 _lv1_set_interrupt_mask -EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xeda8a0a1 __dev_remove_pack -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedbed6be sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedc410d0 udplite_table -EXPORT_SYMBOL vmlinux 0xedcae805 mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0xedddaa66 mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0xedde7735 inet6_add_offload -EXPORT_SYMBOL vmlinux 0xede7f8c4 __f_setown -EXPORT_SYMBOL vmlinux 0xede8e90c eth_validate_addr -EXPORT_SYMBOL vmlinux 0xedf0b48c _lv1_storage_get_async_status -EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long -EXPORT_SYMBOL vmlinux 0xedf7f9e7 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0xee10e8a7 clear_inode -EXPORT_SYMBOL vmlinux 0xee20e3cd mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0xee2206de of_translate_dma_address -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee2d5bc5 __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0xee5bb20b _lv1_panic -EXPORT_SYMBOL vmlinux 0xee8cfb8b jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0xee9174c5 _lv1_storage_read -EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeeae8d6b uart_remove_one_port -EXPORT_SYMBOL vmlinux 0xeeb0b3a4 pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0xeeb75a50 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0xeec0d236 proc_create_mount_point -EXPORT_SYMBOL vmlinux 0xeef161aa groups_free -EXPORT_SYMBOL vmlinux 0xef3ce3fd mem_cgroup_begin_page_stat -EXPORT_SYMBOL vmlinux 0xef4eaac1 dev_uc_add -EXPORT_SYMBOL vmlinux 0xef5cf8e1 agp_backend_acquire -EXPORT_SYMBOL vmlinux 0xef621b86 blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0xef638ae3 kmem_cache_free -EXPORT_SYMBOL vmlinux 0xef8beeb4 locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0xef9ab563 nf_hook_slow -EXPORT_SYMBOL vmlinux 0xefa55e9d devm_get_gpiod_from_child -EXPORT_SYMBOL vmlinux 0xefa9de67 skb_ensure_writable -EXPORT_SYMBOL vmlinux 0xefc2e54d _lv1_storage_send_device_command -EXPORT_SYMBOL vmlinux 0xefc66b26 nf_log_trace -EXPORT_SYMBOL vmlinux 0xefd120ad cpufreq_global_kobject -EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0xefde1bbe flush_dcache_range -EXPORT_SYMBOL vmlinux 0xefdf3f8b swiotlb_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0xefe39136 pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0xefff7b72 max8925_reg_read -EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be -EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier -EXPORT_SYMBOL vmlinux 0xf069274c __inode_add_bytes -EXPORT_SYMBOL vmlinux 0xf077cf97 kernel_param_unlock -EXPORT_SYMBOL vmlinux 0xf07e98e4 tso_count_descs -EXPORT_SYMBOL vmlinux 0xf07fe9a0 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0xf08063f3 cfb_fillrect -EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag -EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int -EXPORT_SYMBOL vmlinux 0xf0a8237a radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0xf0a93880 dev_queue_xmit -EXPORT_SYMBOL vmlinux 0xf0ae7af5 blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0xf0bccaea macio_dev_get -EXPORT_SYMBOL vmlinux 0xf0d2f84a _lv1_gpu_context_free -EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort -EXPORT_SYMBOL vmlinux 0xf0f5c1fc phy_register_fixup -EXPORT_SYMBOL vmlinux 0xf0f77c77 phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info -EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 -EXPORT_SYMBOL vmlinux 0xf11cd6ce down_interruptible -EXPORT_SYMBOL vmlinux 0xf11d745c kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0xf1398a6d lwtunnel_encap_del_ops -EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init -EXPORT_SYMBOL vmlinux 0xf14c4d8b ll_rw_block -EXPORT_SYMBOL vmlinux 0xf15ab5f0 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0xf15ce51d tcp_gro_complete -EXPORT_SYMBOL vmlinux 0xf1685427 dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0xf1712c24 clear_nlink -EXPORT_SYMBOL vmlinux 0xf183189b __ioremap_at -EXPORT_SYMBOL vmlinux 0xf189e52e xfrm_find_acq -EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps -EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf19e22fe sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0xf1c7eac0 read_dev_sector -EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1de5f94 vme_irq_handler -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf1fdce34 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq -EXPORT_SYMBOL vmlinux 0xf217726d __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xf22881e8 lg_local_lock -EXPORT_SYMBOL vmlinux 0xf23552f1 skb_seq_read -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf2445d76 ata_port_printk -EXPORT_SYMBOL vmlinux 0xf24c00a3 xfrm_init_replay -EXPORT_SYMBOL vmlinux 0xf24dcaa8 _lv1_net_stop_rx_dma -EXPORT_SYMBOL vmlinux 0xf274af67 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered -EXPORT_SYMBOL vmlinux 0xf2a2b163 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0xf2a3c721 xfrm_garbage_collect -EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2d1188e napi_gro_receive -EXPORT_SYMBOL vmlinux 0xf2d901d1 __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0xf30caa45 softnet_data -EXPORT_SYMBOL vmlinux 0xf30d1036 _lv1_start_ppe_periodic_tracer -EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform -EXPORT_SYMBOL vmlinux 0xf322a206 bit_waitqueue -EXPORT_SYMBOL vmlinux 0xf3297b88 netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf357db8d pasemi_dma_set_flag -EXPORT_SYMBOL vmlinux 0xf370799f skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0xf37ae5d0 of_find_matching_node_and_match -EXPORT_SYMBOL vmlinux 0xf37ba419 mount_ns -EXPORT_SYMBOL vmlinux 0xf3847fdd bdev_read_only -EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf39fe506 user_path_at_empty -EXPORT_SYMBOL vmlinux 0xf3a8f1b3 nvm_set_rqd_ppalist -EXPORT_SYMBOL vmlinux 0xf3b5e959 pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xf3bfb3eb xfrm6_prepare_output -EXPORT_SYMBOL vmlinux 0xf3c8b9e2 __cleancache_put_page -EXPORT_SYMBOL vmlinux 0xf3e56503 pagecache_get_page -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3e8f01d reservation_object_add_excl_fence -EXPORT_SYMBOL vmlinux 0xf3f592f8 nf_log_packet -EXPORT_SYMBOL vmlinux 0xf3ff84bb blk_queue_start_tag -EXPORT_SYMBOL vmlinux 0xf40a951f locks_mandatory_area -EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep -EXPORT_SYMBOL vmlinux 0xf4465f52 phy_init_eee -EXPORT_SYMBOL vmlinux 0xf4502cd3 netpoll_send_skb_on_dev -EXPORT_SYMBOL vmlinux 0xf459a33f bdi_register_owner -EXPORT_SYMBOL vmlinux 0xf46669ff pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0xf4736ecb nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf4b5d757 blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0xf4b5d80f mmc_fixup_device -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4cd4314 pcim_iomap -EXPORT_SYMBOL vmlinux 0xf4d1580f tcf_exts_validate -EXPORT_SYMBOL vmlinux 0xf4dcc578 cdrom_release -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf4f52c23 md_finish_reshape -EXPORT_SYMBOL vmlinux 0xf4f9a0fa pci_choose_state -EXPORT_SYMBOL vmlinux 0xf51ae235 touch_nmi_watchdog -EXPORT_SYMBOL vmlinux 0xf51bf88b nf_hooks_needed -EXPORT_SYMBOL vmlinux 0xf5222143 _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0xf529c9ef call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0xf5313e33 zpool_register_driver -EXPORT_SYMBOL vmlinux 0xf539e327 nobh_truncate_page -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf559e298 param_set_long -EXPORT_SYMBOL vmlinux 0xf55b3b3d __arch_hweight16 -EXPORT_SYMBOL vmlinux 0xf565936c elevator_alloc -EXPORT_SYMBOL vmlinux 0xf571824f agp_collect_device_status -EXPORT_SYMBOL vmlinux 0xf578578f may_umount -EXPORT_SYMBOL vmlinux 0xf57901a1 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0xf57d9d89 seq_file_path -EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set -EXPORT_SYMBOL vmlinux 0xf5a62ecc _memset_io -EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xf5dfeab6 mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0xf5e1558d crash_shutdown_unregister -EXPORT_SYMBOL vmlinux 0xf5e9106b ip_defrag -EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command -EXPORT_SYMBOL vmlinux 0xf6021942 phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0xf60443a0 simple_transaction_get -EXPORT_SYMBOL vmlinux 0xf607765b register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0xf6213e12 pasemi_dma_clear_flag -EXPORT_SYMBOL vmlinux 0xf63017fb deactivate_locked_super -EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl -EXPORT_SYMBOL vmlinux 0xf663e3eb dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0xf664ab21 vme_irq_generate -EXPORT_SYMBOL vmlinux 0xf665d089 mmc_wait_for_app_cmd -EXPORT_SYMBOL vmlinux 0xf66721c8 tty_register_device -EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton -EXPORT_SYMBOL vmlinux 0xf6785bf0 crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0xf67b7eb4 nd_device_register -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xf694cf49 set_nlink -EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table -EXPORT_SYMBOL vmlinux 0xf6bba882 skb_make_writable -EXPORT_SYMBOL vmlinux 0xf6ddc0c3 scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0xf6df9a57 mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0xf6e59ba7 iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6ecb763 _lv1_send_event_locally -EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf7584a9c find_font -EXPORT_SYMBOL vmlinux 0xf7589331 try_to_writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0xf760293c kill_block_super -EXPORT_SYMBOL vmlinux 0xf762605d compat_mc_getsockopt -EXPORT_SYMBOL vmlinux 0xf7835e65 sock_no_mmap -EXPORT_SYMBOL vmlinux 0xf78db1d7 vme_dma_list_free -EXPORT_SYMBOL vmlinux 0xf79a541e down_write_trylock -EXPORT_SYMBOL vmlinux 0xf7b61ec3 devm_gpiod_put -EXPORT_SYMBOL vmlinux 0xf7bac0ec _lv1_set_lpm_counter -EXPORT_SYMBOL vmlinux 0xf7bc6100 mach_pasemi -EXPORT_SYMBOL vmlinux 0xf7dfc698 of_find_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0xf7e28391 blk_sync_queue -EXPORT_SYMBOL vmlinux 0xf8004bfd _lv1_disconnect_interrupt_event_receive_port -EXPORT_SYMBOL vmlinux 0xf803ed40 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf812cff6 memscan -EXPORT_SYMBOL vmlinux 0xf82005ac of_find_node_opts_by_path -EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area -EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82cc914 __insert_inode_hash -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf834e8b4 phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0xf8507674 blk_get_queue -EXPORT_SYMBOL vmlinux 0xf869a847 netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0xf87940df check_disk_change -EXPORT_SYMBOL vmlinux 0xf8a7111d get_io_context -EXPORT_SYMBOL vmlinux 0xf8b58a9a tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0xf8c88246 __neigh_create -EXPORT_SYMBOL vmlinux 0xf8d04f09 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0xf8e01f0c current_fs_time -EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xf8f2d22b genphy_setup_forced -EXPORT_SYMBOL vmlinux 0xf9027f92 i2c_release_client -EXPORT_SYMBOL vmlinux 0xf90e4902 end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0xf917c85d follow_down_one -EXPORT_SYMBOL vmlinux 0xf9209c41 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0xf964c65b genphy_config_init -EXPORT_SYMBOL vmlinux 0xf979f5f3 __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0xf985b5cf kernel_setsockopt -EXPORT_SYMBOL vmlinux 0xf9954e3a free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0xf99b317e sock_alloc_file -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9a62fc9 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat -EXPORT_SYMBOL vmlinux 0xf9cc0105 eeh_dev_release -EXPORT_SYMBOL vmlinux 0xf9ccce23 powerpc_debugfs_root -EXPORT_SYMBOL vmlinux 0xf9d33ee8 tcp_filter -EXPORT_SYMBOL vmlinux 0xf9dc2570 pnv_pci_get_phb_node -EXPORT_SYMBOL vmlinux 0xf9f02f27 phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0xf9f9f729 iommu_tbl_pool_init -EXPORT_SYMBOL vmlinux 0xf9fa3098 mmc_of_parse -EXPORT_SYMBOL vmlinux 0xf9fc2b49 dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0xfa336321 abx500_startup_irq_enabled -EXPORT_SYMBOL vmlinux 0xfa368dad soft_cursor -EXPORT_SYMBOL vmlinux 0xfa4e1a2c mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa5a3d8b seq_hex_dump -EXPORT_SYMBOL vmlinux 0xfa6f0052 km_policy_notify -EXPORT_SYMBOL vmlinux 0xfa816e79 ppp_register_compressor -EXPORT_SYMBOL vmlinux 0xfa85123c abx500_get_register_interruptible -EXPORT_SYMBOL vmlinux 0xfaa8f75c write_dirty_buffer -EXPORT_SYMBOL vmlinux 0xfab4523b param_ops_ullong -EXPORT_SYMBOL vmlinux 0xfab59edb sg_miter_skip -EXPORT_SYMBOL vmlinux 0xfab74f07 mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xfac1da49 key_unlink -EXPORT_SYMBOL vmlinux 0xfac7e3be jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xfad72f33 tcp_connect -EXPORT_SYMBOL vmlinux 0xfadb5750 pmu_unlock -EXPORT_SYMBOL vmlinux 0xfae51cb7 nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr -EXPORT_SYMBOL vmlinux 0xfaece29e pnv_cxl_ioda_msi_setup -EXPORT_SYMBOL vmlinux 0xfaf38262 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0xfb0cecfd vm_event_states -EXPORT_SYMBOL vmlinux 0xfb1781c3 vfs_link -EXPORT_SYMBOL vmlinux 0xfb536c72 srp_reconnect_rport -EXPORT_SYMBOL vmlinux 0xfb63730f ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb70ec22 bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0xfb741873 vio_disable_interrupts -EXPORT_SYMBOL vmlinux 0xfb8a35b3 generic_file_fsync -EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 -EXPORT_SYMBOL vmlinux 0xfb953d74 sget_userns -EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock -EXPORT_SYMBOL vmlinux 0xfbad002b mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbc508c8 fb_show_logo -EXPORT_SYMBOL vmlinux 0xfbf03124 locks_init_lock -EXPORT_SYMBOL vmlinux 0xfbf0df81 __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem -EXPORT_SYMBOL vmlinux 0xfc0fe7af blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0xfc149d4c udp_lib_get_port -EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap -EXPORT_SYMBOL vmlinux 0xfc3b160f mempool_create_node -EXPORT_SYMBOL vmlinux 0xfc675918 __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0xfc6ba467 prepare_creds -EXPORT_SYMBOL vmlinux 0xfc8a7a1d bdev_stack_limits -EXPORT_SYMBOL vmlinux 0xfc8aa755 seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0xfc8c203c phy_device_free -EXPORT_SYMBOL vmlinux 0xfc92c52e kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0xfcb06775 dev_get_nest_level -EXPORT_SYMBOL vmlinux 0xfcb926cd kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0xfcbf279e inet_frags_init -EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns -EXPORT_SYMBOL vmlinux 0xfce89218 genphy_soft_reset -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0xfd0e9883 d_obtain_root -EXPORT_SYMBOL vmlinux 0xfd107a92 inc_nlink -EXPORT_SYMBOL vmlinux 0xfd1e5f6f phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0xfd348411 __vfs_write -EXPORT_SYMBOL vmlinux 0xfd363b87 scsi_register_interface -EXPORT_SYMBOL vmlinux 0xfd41db33 rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0xfd422526 agp_generic_alloc_by_type -EXPORT_SYMBOL vmlinux 0xfd444f45 path_noexec -EXPORT_SYMBOL vmlinux 0xfd506b37 seq_write -EXPORT_SYMBOL vmlinux 0xfd63010b vme_register_driver -EXPORT_SYMBOL vmlinux 0xfd7a2582 generic_write_end -EXPORT_SYMBOL vmlinux 0xfd88bd95 __skb_get_hash_flowi4 -EXPORT_SYMBOL vmlinux 0xfd88f22a bdi_register -EXPORT_SYMBOL vmlinux 0xfd9123f6 blk_mq_all_tag_busy_iter -EXPORT_SYMBOL vmlinux 0xfd91ba18 sk_receive_skb -EXPORT_SYMBOL vmlinux 0xfd9235a3 unregister_quota_format -EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xfd9cd2b9 brioctl_set -EXPORT_SYMBOL vmlinux 0xfdb526e2 sock_no_listen -EXPORT_SYMBOL vmlinux 0xfdb6cedc _raw_read_unlock_bh -EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be -EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0xfded48ed enable_kernel_fp -EXPORT_SYMBOL vmlinux 0xfdf01a76 km_state_expired -EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe0b4ce9 input_unregister_handle -EXPORT_SYMBOL vmlinux 0xfe17047b kblockd_schedule_delayed_work_on -EXPORT_SYMBOL vmlinux 0xfe26fc7c nr_node_ids -EXPORT_SYMBOL vmlinux 0xfe4cb4b5 _lv1_storage_write -EXPORT_SYMBOL vmlinux 0xfe510ad1 i2c_master_recv -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe5e4f85 simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0xfe657c03 xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0xfe77579f mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0xfe799b81 twl6040_power -EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0xfe820825 netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xfe945e76 md_reload_sb -EXPORT_SYMBOL vmlinux 0xfea41a6d __skb_gso_segment -EXPORT_SYMBOL vmlinux 0xfecbe42c of_find_node_by_phandle -EXPORT_SYMBOL vmlinux 0xfed221d9 pasemi_dma_alloc_ring -EXPORT_SYMBOL vmlinux 0xfeda2380 input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfedf0213 md_cluster_mod -EXPORT_SYMBOL vmlinux 0xfee288d5 compat_tcp_setsockopt -EXPORT_SYMBOL vmlinux 0xfee5c75a make_kprojid -EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0xff09c8df mdio_bus_type -EXPORT_SYMBOL vmlinux 0xff1765c7 rtas_call -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff20a500 kthread_bind -EXPORT_SYMBOL vmlinux 0xff24cff2 ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0xff403a75 inode_set_flags -EXPORT_SYMBOL vmlinux 0xff408a8a sock_wmalloc -EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource -EXPORT_SYMBOL vmlinux 0xff78f73b remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0xff8fd878 neigh_app_ns -EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy -EXPORT_SYMBOL vmlinux 0xff97bd61 xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0xffa2e727 pci_restore_state -EXPORT_SYMBOL vmlinux 0xffd36bf5 dev_remove_pack -EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function -EXPORT_SYMBOL vmlinux 0xfff06e1a dget_parent -EXPORT_SYMBOL vmlinux 0xfff754ea zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0xfffd4ffc mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x02904c2b gfn_to_pfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x06b76390 kvm_put_kvm -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0740d283 vcpu_put -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0adfdfb2 kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x10169526 kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x20de5193 kvm_disable_largepages -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x22c753bd kvm_vcpu_block -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x26424cce kvmppc_pr_ops -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x280f59bb gfn_to_hva_memslot -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2b639404 kvm_vcpu_kick -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2c5c341d __kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x30da6063 kvmppc_gpa_to_pfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x324be1cd kvmppc_handle_store -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x32d2e812 kvmppc_prepare_to_enter -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x39e26693 kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3bee187d kvm_read_guest -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3e1f72e0 kvm_vcpu_cache -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x495dc4ff kvmppc_set_msr -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x52af9e8f gfn_to_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5741f955 kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5929255b kvmppc_st -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5c8c6243 kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5cfd7049 kvm_vcpu_gfn_to_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5f4aac5e kvm_read_guest_cached -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x60bb2b48 kvm_init -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x646113ea kvm_get_dirty_log -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x669da1fd kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x69400e88 kvm_release_page_dirty -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6d1c4ee7 kvmppc_book3s_queue_irqprio -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6fedc95e kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x71499333 kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x718faf0c gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x72baa8b1 kvmppc_xics_hcall -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7a44dc8e gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7a4ad931 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7aa64803 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7d1a5f6d gfn_to_memslot -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x83d6de4f kvm_vcpu_init -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8518a4a6 kvm_clear_guest_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x85a5a4b2 __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x85f2cba6 vcpu_load -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x891d1eef kvmppc_core_queue_dec -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8d6c5691 kvmppc_core_prepare_to_enter -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8da01274 kvm_get_pfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8e1cd06f kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x91e07def kvmppc_core_pending_dec -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x92286993 kvmppc_kvm_pv -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x92e5d7d7 kvmppc_emulate_mmio -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x944dbe75 gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x96c24b17 kvm_unmap_hva -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9d0c57cd kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa0764b24 kvm_write_guest_cached -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa5604c4b kvmppc_load_last_inst -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa8e5566b gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xab59d373 kvmppc_free_lpid -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xaccae4c9 kvm_vcpu_uninit -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb06ecdb8 kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb0bc4ad3 kvmppc_h_logical_ci_load -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb0e1281e kvmppc_handle_load -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb1809fe8 kvm_clear_guest -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb63b2f0f kvmppc_core_queue_program -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb6470f21 kvmppc_rtas_hcall -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb7171609 kvmppc_ld -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbc923037 kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbd2ca683 kvmppc_unfixup_split_real -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbdfedaf3 kvm_debugfs_dir -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc1866bfe kvm_flush_remote_tlbs -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc27beabc gfn_to_hva -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc70e4b59 kvmppc_claim_lpid -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcc44961f kvmppc_alloc_lpid -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcd2677a9 kvm_is_visible_gfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xce758762 kvm_read_guest_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd1df5a2e kvm_read_guest_atomic -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd3c96e62 kvm_write_guest_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd5291f77 kvm_write_guest -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xda36963e kvm_release_page_clean -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xdcb4380d kvmppc_core_dequeue_dec -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xdd56f521 kvm_get_kvm -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xdd987b51 kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe6e8f0a0 kvmppc_sanity_check -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe9e2dc71 kvmppc_hv_ops -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe9eb6e2e kvm_irq_has_notifier -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xecc512af kvmppc_h_logical_ci_store -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xef11cb35 __tracepoint_kvm_ppc_instr -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xef5900fb mark_page_dirty -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf275f18f kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf404d5a5 kvm_io_bus_write -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf4da3546 kvmppc_init_lpid -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xfdfe1d34 gfn_to_pfn_prot -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm-pr 0x9a0b4268 kvmppc_emulate_instruction -EXPORT_SYMBOL_GPL arch/powerpc/platforms/cell/spufs/spufs 0x08a306d8 spufs_context_fops -EXPORT_SYMBOL_GPL arch/powerpc/platforms/cell/spufs/spufs 0x3c172d6f spu_save -EXPORT_SYMBOL_GPL arch/powerpc/platforms/cell/spufs/spufs 0xda13bfeb spu_restore -EXPORT_SYMBOL_GPL crypto/af_alg 0x0e35bfdf af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x19fb1363 af_alg_cmsg_send -EXPORT_SYMBOL_GPL crypto/af_alg 0x2f61212f af_alg_link_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x49d7294f af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x58716898 af_alg_wait_for_completion -EXPORT_SYMBOL_GPL crypto/af_alg 0x5f42a902 af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x69a7f75f af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0x8fc2b150 af_alg_complete -EXPORT_SYMBOL_GPL crypto/af_alg 0xaf7af62f af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xb3d15c29 af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xfea1610d af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xb934f6e0 async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x24617131 async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x5c84df04 async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x7460ce1d async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x94f25583 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x6da6fbf0 async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x840bd034 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x991f0d08 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xaeb93473 async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x9fb8cc1b async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xcbf31ed1 async_xor_val -EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0xdf6b1db8 blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0xb143f72a cast5_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x703ff6ba cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt -EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 -EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 -EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 -EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x384afe9a crypto_chacha20_setkey -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x56b7f328 crypto_chacha20_crypt -EXPORT_SYMBOL_GPL crypto/cryptd 0x25218825 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x31378cab cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x37673ab5 cryptd_alloc_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x5a8f04b6 cryptd_free_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x77b2a241 cryptd_ablkcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x9ded7339 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xa37d173b cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xd1d04f29 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0xe2f01c74 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xeb1071b3 cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey -EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey -EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table -EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table -EXPORT_SYMBOL_GPL crypto/lrw 0xfb0a490a lrw_crypt -EXPORT_SYMBOL_GPL crypto/mcryptd 0x1b095760 shash_ahash_mcryptd_digest -EXPORT_SYMBOL_GPL crypto/mcryptd 0x4fd290bd mcryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/mcryptd 0x550f254e shash_ahash_mcryptd_finup -EXPORT_SYMBOL_GPL crypto/mcryptd 0x78f6e8fc mcryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0x7983afd1 mcryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0x8347667c mcryptd_flusher -EXPORT_SYMBOL_GPL crypto/mcryptd 0xaeead860 shash_ahash_mcryptd_update -EXPORT_SYMBOL_GPL crypto/mcryptd 0xb8406c8e mcryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/mcryptd 0xedf14f4b shash_ahash_mcryptd_final -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x06b2ab16 crypto_poly1305_update -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x52f6da33 crypto_poly1305_init -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xa065770c crypto_poly1305_setkey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xb6f5ab99 crypto_poly1305_final -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x091a600e serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt -EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0x9d63dced twofish_setkey -EXPORT_SYMBOL_GPL crypto/xts 0x70fa4edd xts_crypt -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x00f45bf1 ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0577356a ahci_start_fis_rx -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x17fc65db ahci_kick_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1ddf6b69 ahci_set_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2eee3bcd ahci_start_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x37f07a93 ahci_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x46a0d471 ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4c40bf48 ahci_handle_port_intr -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4eeede33 ahci_init_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x56048803 ahci_print_info -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x57cb0d3f ahci_host_activate -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5ab71dd7 ahci_save_initial_config -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6b59d65b ahci_reset_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6fee57fb ahci_dev_classify -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x74024a35 ahci_do_softreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7a6b5dc8 ahci_stop_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x866bee34 ahci_error_handler -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa97ace9a ahci_port_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xad5d3291 ahci_reset_em -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xaf01beca ahci_qc_issue -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbd7a62c9 ahci_shost_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd12b5077 ahci_check_ready -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf2a36159 ahci_sdev_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x0a002dd5 ahci_platform_disable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2894b8b1 ahci_platform_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5a72be52 ahci_platform_enable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x72666f65 ahci_platform_resume_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7273a093 ahci_platform_suspend_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x73eb6266 ahci_platform_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x8973a57b ahci_platform_enable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9daeef82 ahci_platform_suspend -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xad6219ab ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xaf6209ab ahci_platform_disable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xba30e131 ahci_platform_init_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xdeee7dbb ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf9d2dcfc ahci_platform_get_resources -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xc8b22f94 __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0xc181e24c sis_info133_for_sata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x30db29ee __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x4bc29a59 __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x816d0357 __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xf9ce275b __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x012b3226 bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0fba980e bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1671b527 bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x19c79bf1 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2c61a311 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3483ba51 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x36ac4498 bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3fddc68d bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x685d872d bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6d546fc4 bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8222ee2b bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x841416b6 bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x87e1e4e5 bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x896a0bc3 bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8a179a55 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9014e0f7 bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9ae8106f bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc87c937f __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd04a006b bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd35f8b12 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdb824bbb bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdbb01015 bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe82ec3f0 bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf06f89de bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x1274004d btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x2db211f5 btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x470884c4 btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x75ac352c btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x873e6e3e btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xed2c2db7 btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x051c115d btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x10d56fe2 btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1a769d03 btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x25f80d54 btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x48babf91 btintel_set_diag_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x56a61781 btintel_hw_error -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5eb20ef9 btintel_secure_send -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb4cb1d57 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc43d459b btintel_set_event_mask -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf253bf05 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf3841e9d btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x029a1517 btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x378f5d1b btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3ec15a65 btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3f1ef085 btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x418c29b6 btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4be5afd4 btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x84887563 btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa0648127 btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa4b77d7f btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd27d30ea btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe3b2491a btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x7c179052 qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xdfec81e6 qca_uart_setup_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x62534ac4 btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x7d092c87 h4_recv_buf -EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x1c9fde1a nx842_crypto_compress -EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x1d3a27b8 nx842_crypto_decompress -EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x5b20dc33 nx842_crypto_exit -EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0xdc770a1f nx842_crypto_init -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4292ccaa dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x642b8532 dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x809e63ae dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x94692a6b dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xa7abbcb2 dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x204558fa hsu_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x46ddf6f1 hsu_dma_irq -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x5e4e3091 hsu_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x2cf211c1 vchan_find_desc -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x6cb4ed37 vchan_tx_submit -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x99837eb1 vchan_init -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xc2c843ca vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0bed48ed edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0ddf5e16 edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x12ac5d25 find_mci_by_dev -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x15f8f567 edac_device_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x35750d0a edac_pci_handle_pe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4ae7c3f4 edac_pci_reset_delay_period -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4b1551cb edac_device_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x57e0c956 edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x66d4ed34 edac_device_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x67d5a116 edac_mc_alloc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x728a5073 edac_pci_handle_npe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x83759649 edac_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x978ebf40 edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa03b4673 edac_device_handle_ue -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb5d6ad38 edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbc5c52b6 edac_mc_del_mc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc98e6786 edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc9d51c8d edac_device_handle_ce -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xcfcf5937 edac_pci_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe4ced026 edac_mc_free -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xee26d478 edac_pci_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xeebeb64b edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xfbd326ae edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3bcbdf06 fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x645cdac1 fpga_mgr_buf_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa7d2772f of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc676bf4b fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf946fb39 fpga_mgr_firmware_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xfea40be9 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xafc76ead bgpio_init -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xe2307f64 bgpio_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x42d83a8c __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xd6111ec6 __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0658cd4e drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0ed16dfa of_get_drm_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x304d1f1c drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x41f08799 drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4915d9bc drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x52c3a105 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6b7b6dae ttm_dma_unpopulate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xa60adba9 ttm_dma_populate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xcb7c0bf4 ttm_dma_page_alloc_debugfs -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0093f31b hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x09539a81 hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x095a7c92 hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0af48824 hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x182e0bae __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x208505bc hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0x21151890 hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0x248c8a1b __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x25c93d30 hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x27683485 hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2947fd80 hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2ad35d5d hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3af8473f hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3ec0b601 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4629cd7a hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x582cd859 hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6269cc47 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x70bd480d hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0x788dd812 hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7dedfb95 hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0x83682854 hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x86d3440a hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x923ce447 hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x94f0742f hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa4ce91c7 hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xac57e333 hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb8aa9721 hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbaf80c59 hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc4a2435e hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc7adb874 hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcb5d6fb2 hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd7395556 hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf2cb9646 hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf90e91ba hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfc1f33ab hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0xff63db57 hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0xe74c27be roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x192b49ef roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x871d721a roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xbbdfe68c roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xcc9431bf roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xdd3c8280 roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xef26681a roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2a975803 sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x514072e7 hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x530afa8e sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7af2ca87 sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x88169c99 sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc2c9d336 sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xcb444069 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xcfbe014b sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe4be893e sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xfea6babf hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0ce8a7ee hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1f1368c9 hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x28270a69 hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5ddf7d56 hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x61adf38c hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6929311a hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7446e36f hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7d31c970 hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x870c4538 hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x90d9375d hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x97189b44 hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xaa4414f2 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xad55653e hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb1c42120 hsi_add_clients_from_dt -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcf37468a hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd7d16de6 hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xedfe968e hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf0db6a5f hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x516c6303 adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x937ff15e adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xea4ba9cb adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0ed5776d pmbus_read_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x13985b39 pmbus_check_word_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2101fddc pmbus_do_probe -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3d7ddcc1 pmbus_check_byte_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x63f5e5d8 pmbus_get_driver_info -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x6b7bb0f7 pmbus_write_byte -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x6f709539 pmbus_clear_faults -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x82dfcd14 pmbus_update_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xc04148c1 pmbus_write_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xc1412f40 pmbus_do_remove -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xda463228 pmbus_read_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xedd6f43d pmbus_regulator_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xfab5d3cd pmbus_clear_cache -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xfbe5e686 pmbus_write_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xff3a0a9c pmbus_set_page -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x059cb31a intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x076a9acf intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x30214c3f intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xae83d663 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xaed90052 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc48dcb99 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd0757d53 intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x87e52c6e stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xae2c77aa stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb9a2a9b1 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf1c18fef stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xfd6345ff stm_source_register_device -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x06536a11 i2c_dw_init -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x17437dad i2c_dw_disable -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x3ed1fadb i2c_dw_probe -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x4e50a6cd i2c_dw_disable_int -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xf3b2993c i2c_dw_read_comp_param -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x016d865d i2c_add_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x72e2039a i2c_del_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x8c819b4b i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xcc7a52c5 i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x0d677999 bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x57149a5f bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x966362b8 bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x0314866d ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x112918aa ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x2a95158a ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x40f2512a ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x6a944d95 ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x8adf443d ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x92ab897e ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x99b5a0c3 ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xf369d7cd ad_sd_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x01b4e61c iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x94c44d33 iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xc3404b70 ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xfcfbac40 ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x77a1c5d1 bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x82ca5a89 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xe23a43dc bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0f611f70 adis_read_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x134ac12e adis_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x256a5dd2 adis_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x3c90ffaf adis_check_status -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x4911efe4 adis_update_scan_mode -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x4e630931 adis_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x6e998645 adis_write_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x926c785b adis_probe_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xab2c8713 adis_remove_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc12bf2c8 adis_initial_startup -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xdb707c03 adis_init -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xeeea4410 adis_reset -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x029915cf iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x04edd1b3 devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x11d9982c iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x13245201 iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1eb3289f iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x22189456 iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26270139 iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x55bc7d7b iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5e592892 iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x71bd1afa devm_iio_trigger_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x72496599 iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7be5dc0a iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fb829b9 devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x81e4ae2a devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8574cdad iio_scan_mask_query -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x98032870 iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9acce27d iio_update_demux -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaa97add3 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb127819f iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb420879d iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb5412498 devm_iio_device_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc541083c iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc686312b iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcca379b3 iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xccf125f1 iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcece1baf devm_iio_device_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe2c2347a iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf123acd1 iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf7c0aadf iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf8899aa1 iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfc9be134 iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xf90b80a4 input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xdf0332e1 matrix_keypad_parse_of_params -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x25abbb54 adxl34x_probe -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x058e6f67 cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x5ec39f70 cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xfd48f128 cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x1c2d0ed1 cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x437f0d2b cyttsp_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xfccf4e24 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x7d8b71fa cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xc0a3ae29 cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x2534548b tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x49ac7d83 tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x604b4c0d tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xac0bef71 tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x49996d2e wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4e7224cc wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x50936b2e wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x54277074 wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5b1d346e wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6e72649e wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x70349c38 wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7191ca02 wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x85336db0 wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x892cb662 wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe9eef60b wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xed5aab95 wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x3b834fbd ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x518faf1a ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5e44398f ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x60d8008f ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x64d5e0cb ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb8659c0e ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc08a1747 ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xde41a91d ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xec0b4a90 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0a1cf554 gigaset_blockdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x21c029d8 gigaset_add_event -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x26e2631f gigaset_initcs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x31bea348 gigaset_shutdown -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x326552f5 gigaset_initdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x6784f79f gigaset_stop -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x687f5c3d gigaset_fill_inbuf -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7c756e74 gigaset_handle_modem_response -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8fbd8703 gigaset_m10x_input -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x97a096f8 gigaset_isdn_rcv_err -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb03b2b93 gigaset_freedriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd97d8763 gigaset_skb_sent -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xdaa4165e gigaset_m10x_send_skb -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xde309767 gigaset_skb_rcvd -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xec6f68a0 gigaset_freecs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf06b1586 gigaset_start -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf0ea7355 gigaset_if_receive -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x211e0f04 led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x2dea4acf led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa31e3714 led_classdev_flash_register -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xc0c8aeba led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xd7d75021 led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xf68d8faa led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x172f733e lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x1b407fa1 lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x55722fad lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9c556e1c lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb0469e3f lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb27eca73 lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe0e0333a lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe34e8165 lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xeca20ce6 lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf4690d5a lp55xx_unregister_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xfd40cbbb lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x0a0527be wf_register_client -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x0fa9a4a6 wf_register_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x170b61fe wf_put_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x2d08d6ca wf_unregister_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x31fd8286 wf_register_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x75147afa wf_set_overtemp -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x8e375457 wf_unregister_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xbcace2a5 wf_unregister_client -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xdb55cc63 wf_get_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xdbbf2a86 wf_get_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xeb3aed80 wf_put_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xed82a14f wf_clear_overtemp -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_pid 0x9808f147 wf_pid_run -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_pid 0xb8ed5b2c wf_cpu_pid_init -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_pid 0xcd9a18ef wf_pid_init -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_pid 0xceda69f1 wf_cpu_pid_run -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_smu_sat 0xe05851d5 smu_sat_get_sdb_partition -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x0987a61b mcb_free_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x1766162f mcb_device_register -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x23ebae46 mcb_alloc_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x3069776d mcb_get_irq -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4d95cac5 mcb_bus_add_devices -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x5ddd8e02 mcb_release_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x6a72b6c3 __mcb_register_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x9d5a24d2 chameleon_parse_cells -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xa4ff28bb mcb_alloc_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xac4b4b8c mcb_bus_put -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd4d5470d mcb_unregister_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe7780144 mcb_bus_get -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xec2d4d26 mcb_request_mem -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x021811cf __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0f0677b8 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x10e6a889 __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1154f7a1 __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15aa8e40 __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x174c2a29 __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2205bcf9 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3fc7cb7f __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x469f38de __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4ba51ecf __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5b2a89c7 __tracepoint_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d950f2a __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5e21030c __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5ed04550 __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6eef9654 __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x74ab7b0f __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x84efb763 __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8fe32879 __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x91f02667 __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x93f7fc02 __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa1de5277 __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa81bf581 __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7d964de __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbbace2cd __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc6673631 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8a2f711 __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe3de2ba2 __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe902838d __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec919105 __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeea27f46 __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfad1ec73 __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1ef9d5b2 dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4d4f59b1 dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4d91e98a dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x90c082ff dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xafafc633 dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xcf8988c8 dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe996083f dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xec9227fb dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfa115c55 dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aba7f5e dm_bufio_get_block_number -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7292f126 dm_bufio_client_create -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9310ba06 dm_bufio_release_move -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9c256008 dm_bufio_get_device_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa1d2413a dm_bufio_read -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa448e19f dm_bufio_prefetch -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xafbda3f3 dm_bufio_new -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcbb1bae2 dm_bufio_get -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x195e2123 dm_cache_policy_get_version -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x3c065cab dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x4fa0a6d9 dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5b1b5cf3 dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xaa0f453e dm_cache_policy_get_hint_size -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xb14e95a7 dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xf1bfdf29 dm_cache_policy_get_name -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x632a75d1 dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xba6cfb8b dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x0a35f274 dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x22634a42 dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3d8c7b86 dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4430764e dm_rh_region_to_sector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x45ab972a dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x6a195190 dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa68e1f06 dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc5f53b5a dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf0923ae1 dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfad9d53a dm_rh_get_region_size -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfc62ef4e dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0af3cd98 dm_block_manager_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x17c36f29 dm_bm_checksum -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42dbdfc3 dm_tm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49b35849 dm_sm_disk_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x55b4bd4d dm_tm_create_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x827a42f4 dm_tm_open_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9f624559 dm_sm_disk_open -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xafeda29f dm_bm_write_lock_zero -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd29923fb dm_tm_shadow_block -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf375d009 dm_bm_write_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf5455120 dm_bm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize -EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x07d7e316 saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x1254d272 saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2e813492 saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x44d2eb04 saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x71aa813e saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7fb3359e saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9f6cf2aa saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xcb52e5af saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3815e46 saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3f57ca2 saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0ca4e161 saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x2aa8f533 saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x42209033 saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x53e213d7 saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x58ff3894 saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xcbc140e1 saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xcf55def8 saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x174d1ad9 smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2cfef92c sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3fc5561a smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x536e578e smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5d0ce274 smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6469fb79 smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x691a8000 sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6e8e4af2 smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa3712018 smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa3cb0857 smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa9f2b0e6 smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb4955e49 sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb69ecce5 smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbcb5b136 sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbfacdba5 smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe88f0924 sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf8c2631b smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xc65ded41 as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x82a62b4d cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xa04f17e1 tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/media 0x00f39248 media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/media 0x0266710d media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/media 0x0f60686a __media_device_register -EXPORT_SYMBOL_GPL drivers/media/media 0x0fed572d media_entity_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/media 0x530a453e __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0x641d7d98 media_entity_put -EXPORT_SYMBOL_GPL drivers/media/media 0x6eb8b278 media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/media 0x74e5ab10 media_entity_cleanup -EXPORT_SYMBOL_GPL drivers/media/media 0x754768e7 media_entity_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/media 0x801b5a69 media_entity_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/media 0x8345afc2 media_entity_get -EXPORT_SYMBOL_GPL drivers/media/media 0xab69dae4 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0xbd7f574d media_entity_init -EXPORT_SYMBOL_GPL drivers/media/media 0xc99165be media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/media 0xcdeb4ff8 media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/media 0xd1d7d18c media_entity_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/media 0xf7c91eeb media_entity_create_link -EXPORT_SYMBOL_GPL drivers/media/media 0xfdce7acb media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xc6ae90fa cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1633ad3f mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x177d6ca5 mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2c257f77 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2cbfef7a mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x401cb84c mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4f3883d8 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x58c0896c mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5f672f8c mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x772a86c6 mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x82dfb741 mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8b711d80 mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9a4b0934 mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9ae995bd mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9d400855 mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa289afc3 mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa756da1d mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd4e7c5c3 mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe4faa96c mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xeef1178b mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x109efc0d saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1630b67a saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3ae6d1de saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4c0e4f4f saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x502ccb99 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x66eb9c03 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8127cadd saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x92f5aa01 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9589dc3b saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x98046f95 saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9ec94fa8 saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa842b9dc saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xad61f268 saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbb387a13 saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc75e057c saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc89a516d saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdb870aa9 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdd0de9e4 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf4d00bae saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x0e1a178e ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x4dde80b6 ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x50154e78 ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb4192e20 ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xbdbda870 ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd2daee67 ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xef8c0078 ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x02b9fd33 xvip_clr_and_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0b2585ce xvip_get_format_by_fourcc -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x490bd11c xvip_get_format_by_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x7b283dd6 xvip_enum_frame_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xbbdc4679 xvip_enum_mbus_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xccd3ebad xvip_clr_or_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xd7cc17a6 xvip_of_get_format -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe2227add xvip_init_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xff7f6953 xvip_cleanup_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xc1bbd3ff xvtc_of_get -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x70ae90c2 radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xdd12c5a7 radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x00b318d8 rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x03dc6149 rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1961b833 rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x22d692a7 rc_open -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2edab99c ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x59fdc054 rc_close -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x785f29f2 rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x829b8937 ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa310e27e ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa7bc57ec rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa8c3d59a rc_map_get -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xac10c943 rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbecdf79d rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc60e2e9e rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc81544cd ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcdb8eac9 rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcfe58b83 rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe0b7a3a1 ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xeff31dcd rc_free_device -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xa99d6f01 mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x5a0f0e68 microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x134873c8 mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xa1b13955 r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x961c0857 tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x4a692a87 tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x065bb64d tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xa7a1a810 tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xd41babbb tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x906378fb tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xeb21cd5f tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x02af6701 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x0b406a23 tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x684be5b5 simple_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x099eb7ca cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x191b0ba1 cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2e11bd31 cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x32f4dfdd cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x35ef8890 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3d269d7a cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x44365dc6 cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x47af8afc is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x47f245ad cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5ed713a9 cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x74469adc cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x78f41f1c cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x91f6878d cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9823a19f cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa9948ad6 cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc0b8c4e3 cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc0bebf39 cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc622ea38 cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xceb19390 cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe4846480 cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x8e0b136d mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xcda0cba9 mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x08eac3c9 em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x248ea345 em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3a22b13d em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x598b43b0 em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5c50fe79 em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x68c60a92 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6e852930 em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7990c67c em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x94d48d60 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9fc98173 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa8ee9c68 em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xaa7ddd84 em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb8cc87ae em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbddaf2be em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd5f9c744 em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe0792e85 em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf4684efc em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfb66cf7b em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x1ceba117 tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2551dc4e tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x482ee930 tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x9b432ad0 tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x1c948c55 v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x6001ca98 v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x6b371e43 v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x78966849 v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x9fc9ab04 v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xfcaca066 v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08982d59 v4l2_match_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x4aecfce5 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xc76d7009 v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x05d0ea72 v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x122ae82c v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x13229b42 v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1d9404d7 v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2d9905ca v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x34a408e6 v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x448d447b v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x461148c3 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4fa55185 v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6527ebce v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6c566964 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6f8779f0 v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x75e5760e v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7cd8cbe0 v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x97bf4297 v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa58891d2 v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xac292a58 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaed28216 v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb0c1f81a v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb6381ceb v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc2d429bc v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc7b7730a v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc931671e v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd8630f56 v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe55c3623 v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf5b09d26 v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfce77841 v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x078a6126 videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x13a724de videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1c703b62 videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x214194dc videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x216e06e0 videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7785977a videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x77ab77a7 videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7958d3df videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x81ebd11c videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x87434b70 videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x94cf5a43 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa9578b43 videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc29372ce videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc62e35eb videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc73f2956 __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xccfa3468 videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcd763496 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd060f228 videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd2f490a5 videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd89d5cd0 videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd9ebd31f videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xef060be8 videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf03b9c7e videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfefc6dd7 videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x6a2281ad videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xba90c970 videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xcfb38789 videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xfb65fda3 videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x7c3426f9 videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x9deb9c56 videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xaf31d1c6 videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x03ad5fcf vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1328069a vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2b575cc3 vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x30eb4f04 vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x323baf90 vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x5404ffad vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x637a470d vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x67ae5f6e vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x68470d6d vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6bf847cf vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6c84467e vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6cdb2131 vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6db9cd77 vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7c54cbb1 vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xad1661fb vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd052a01a vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xeaf9a471 vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xfeba90c0 vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x8bb580e6 vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xf1f2f24b vb2_dma_contig_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x07eae124 vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x49abc7f5 vb2_dma_sg_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd30ec30f vb2_dma_sg_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0x4174fad2 vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x00323b0c _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x03ac1487 vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x12197ba9 vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2668a3e4 vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2ca178c7 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2e9497f4 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x30783785 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3cb98ce9 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x54cb7e6c vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x593bbe0f vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x67dc05c4 vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x70fed6bc vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x756ffa8b vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8c1337a8 vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x981781cd vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9c849d49 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9ca3c9a4 vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9e7e2c4c vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa2ff21ec vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa8ad00ba vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb233fae3 vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb33ca520 vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb510f7ca vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb5f8767e vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbe7c6f50 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc105c42f vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc88d89e9 vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdcaa9d51 vb2_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdf6002b7 vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xea0d56dd vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xed3c4786 vb2_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf6322410 vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x45d9740d vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x03a307d0 v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x04c9d06a v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0eba49da v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x133adfc4 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x169e1cb2 v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x192a8c34 v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1aea552d v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1ef3a428 __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1f41cc81 v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x239783ff v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x29aa7e09 v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ab9d732 __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x31153598 v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x430afedd v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e73fa8d __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x50324d55 v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5bc5cfbe v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e3f09b4 v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74a017c5 __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x753468b9 v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x78283bda v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7bfda7d4 __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x81eb53b3 v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x87e83a97 v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x88546da1 v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8ab3388d v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8ffbe3d3 v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9ab2c65d v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaca2544a __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbeb5dd1a v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc1cbbc1b v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6429d8b __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd3112ddd v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd4e53db7 v4l2_compat_ioctl32 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdaad5753 v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5f8ef5b v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf0f9bd52 v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x8a3725aa pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xb20304c1 pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xeb2a06e9 pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x07976f79 da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x1669237a da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2efaba15 da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x3190a41f da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xad24b8ef da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xc2da16b3 da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xc80d3592 da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1a90795c kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x4b96390f kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xab28e6be kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb4a0adbf kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb8466b97 kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xbda468c6 kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe1847a17 kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xed0fa41b kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x24189029 lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x4eac32e1 lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xfe4e0e98 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x1f0cb1f4 lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x3edfbbfc lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x536b64bd lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x61efe74b lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x693d6c69 lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x72207af0 lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xe4c23ef8 lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x1b2e69cf lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x302d4d69 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xeab2eb39 lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x0ea8efda mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x145f3632 mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x1ca71ab2 mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x31f035a4 mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x5c1d5192 mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc699cf20 mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x10cae4bd pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x31f1205c pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4f2cb7d8 pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x61872af8 pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7e14ab52 pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x87817d3d pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9ad63f04 pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa00e04eb pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa11aee00 pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xae5ae71f pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb6382222 pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x225569a1 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xc71ec3c4 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x2831a016 pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x944b892d pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb6f15473 pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xe2b29d8d pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xec81b673 pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x08c32829 rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0a55d7fd rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0b10c19f rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0bac70dc rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x1c5a17dd rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x1e41366d rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x212d4617 rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x21ecd0b0 rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x30f3b31b rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x35e166be rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4135de55 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x47791038 rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4afb869e rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5d340c76 rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x6cf7283e rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xab4a0adf rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb89b8ab2 rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xbaca653d rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc8ad322f rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xcf2b53b1 rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd3905055 rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd5f0aed6 rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xdec193d6 rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf6855718 rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x19ad2fb2 rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x23f47f4b rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x3750f2df rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x40372b0e rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x413aa191 rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x5fcef475 rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x73469712 rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x9c4bdc5c rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xae385561 rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb234f392 rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xc0c1b4f4 rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe6c29fb4 rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xf3d93ec2 rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x08d10a29 si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1497288b si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1988ee32 si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1c9f49e8 si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x29cf9b96 si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2c529cea si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x41e213b4 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x440e6e6b si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4c0ef646 si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5254fe3a si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5e69cb49 si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x61574d8d si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x750e9b47 si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7ec171b6 si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8bc26de9 devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x90132056 si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x960ab255 si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x98e9e23c si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa0a402ad si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xad8cfc2c si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xaf329eab si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb2bcdc7f si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb9bea7af si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbf3041b3 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc724c1cf si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd843722f si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd9623028 si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdee7ed22 si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe3c7173c si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xef090650 si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf2a5fc1d si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf726a71f si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf81d5f16 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfc378611 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x25276528 sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x2b9b0076 sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x781a9120 sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x9a2ad4bf sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xddb966d9 sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x903e9b5e am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xa5579945 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xb6aaa544 am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xca231e61 am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x3202872e tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x7922077f tps65218_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xba951d79 tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xe4ddaf2f tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xf2d5bdeb ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x156b1df6 bmp085_regmap_config -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xa4ddebce bmp085_probe -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xc9b970c4 bmp085_detect -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xe24fcfd4 bmp085_remove -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x26800dd5 cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x9056b666 cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xbc8a0965 cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xfd6b71d8 cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x2f8ec7af cxl_perst_reloads_same_image -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x30993b7d cxl_get_context -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x33753a2c cxl_read_adapter_vpd -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x48804d8f cxl_dev_context_init -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x55f15dc9 cxl_psa_map -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x581f2c2e cxl_stop_context -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x73964868 cxl_set_master -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x75488b61 cxl_fd_ioctl -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x7e0a7a65 cxl_map_afu_irq -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x8740bc47 cxl_psa_unmap -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x94324cfa cxl_pci_to_cfg_record -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x97e8905a cxl_unmap_afu_irq -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xa1d89269 cxl_fd_open -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xa1df2550 cxl_allocate_afu_irqs -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xa58de36c cxl_fd_poll -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xaca6c5a1 cxl_fd_release -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xb80dcf7c cxl_get_fd -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xba49f018 cxl_fd_read -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xc32e9752 cxl_fops_get_context -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xd3c02f75 cxl_start_work -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xd470a5bb cxl_afu_reset -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xd878390b cxl_process_element -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xe325708e cxl_release_context -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xe523d2f3 cxl_fd_mmap -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xe96fa01b cxl_free_afu_irqs -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xf0e503e1 cxl_pci_to_afu -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xff3c2e70 cxl_start_context -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x011a15e0 enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x2c6937d2 enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x2f7894ce enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x4b0e066f enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x63e379c6 enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x977c4540 enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xdccfbf1a enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xddd53244 enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x09433ad0 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x0ade78d8 lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x118cf3a3 lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7d3c598f lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8f0a24b8 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb240b735 lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd88b9f5c lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf13e6328 lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x611799db st_register -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xe73dfb4f st_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x02217609 sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x040bc8bd sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x11c21e53 sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3908ab3b sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5377c8e1 sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6f793f4e sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x767832d8 sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x805515cc sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x83d25eb3 sdhci_send_command -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x84217945 sdhci_enable_irq_wakeups -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x871bcbe5 sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x919cc2aa sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc7a9d8af sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe75f12b3 sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x2ac39278 sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x2ca4100d sdhci_get_of_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa56bfa40 sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb0e40e0e sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xbe99af36 sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc1af8304 sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd889b4ee sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xdcda1612 sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xedeabcb0 sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x0829d4e3 cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xca1ed49d cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xf537f175 cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x195aac07 cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x94f12851 cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xeaa36381 cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x7b640506 cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x49f419a7 cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x63192442 cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xe74813f4 cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x029f5cdd mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0439892b mtd_erase_callback -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0473dffc register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0a95df1f mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x113335be kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1c0da907 mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x257782bb mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x269d9c28 mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x27904a2c mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x36820e15 mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3904e3ed mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4b8822f5 mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x56a15d50 mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x62fe5f2e mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6a9bb59f __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7316f006 mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7625f403 mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7ae530e4 mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7e33a55f mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7fd175e9 mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x81afc566 put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8581eab8 get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8b4d650a __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8f67c172 mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x92c2cc2b mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x937aa509 mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9941257f mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9d46630d deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9f0e94c9 mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa33d7790 mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa3710b85 register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb0e46489 mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb30b76b7 mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc9d6fe6b mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd79f4e1d get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdee3089e mount_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdfdacf60 mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe2230512 mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xed5ed895 unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf10d7bbc __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf23cee7f mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf5626a9e mtd_is_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x392bf13c mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x6e2ee67f register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x8031b9f9 add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x8cc57afa del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xb4eee640 deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xaa67b133 nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xaae9f86b nand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x6026e2f1 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x372bffe9 onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xf38af7fa onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x1bee0a01 spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0659780d ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0ae289ca ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x32216fe2 ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x34ab42e8 ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3b1a008b ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4ca230a4 ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5469b18d ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x55e1eac6 ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5e5fa11a ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8a5cb7e8 ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9f9312be ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdb53bc52 ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xee741468 ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfbb9fc88 ubi_leb_read -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x5898342e devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x70514c8c arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x0f89a675 unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x37c68a5c c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x7b08d4d3 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xbc6d9a46 c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xbd8a0ce2 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe17a8cc6 register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x12694824 can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x23647cdc alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7389b4cb can_led_event -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x767c0c54 alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7a141c2d can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7e7505ee alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x8270de39 can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa148a8f6 open_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa4f9c7ad unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa882e5e3 can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xaa08b6d7 register_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb2288305 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xbe3afa69 free_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc911963d safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xcb3cf44e close_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xdda16aa0 devm_can_led_init -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe95e0cb4 alloc_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xef5ba5aa can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x046283aa alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x1a1fb011 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x54e93bb9 register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x93f8871d free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x11577251 alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x434c290a unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x57444aee free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x5ff80bb5 register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x72698466 arc_emac_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xbd9ee84e arc_emac_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05759504 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0641c6a4 mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0725d519 mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0bfa5607 mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e8486d2 mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e8ea5f3 mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10205119 mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x122b2315 mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1760014a mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b4c0cdc mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1bab364d mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1cead8bc mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e2533cb mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x210e5cb6 mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x225f026d mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2269fb19 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2321559b __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x242ded6b mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2501615d mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2afc16fe mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d27745d mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d70df3b mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30522b22 mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30c71647 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x370749db __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37f0edad mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c6733d9 mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e37ca63 mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ed29d44 mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x405e1c7b mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43442ca1 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45c11345 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47c0fb5f mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49be57ff mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a19d4b2 mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a361e24 mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b563341 mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d4c3dc7 mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50e90535 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5481de7a mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x597b5afc mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x598321e6 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a31333c mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a7e4537 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f1d563d mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60ef635c mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6611d962 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6770f37b mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6830d498 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68e434ac mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69868df7 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a1b0a4f __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c6ac9ff mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ee1446e mlx4_map_phys_fmr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x709ea5de mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74838b47 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7492b0a7 mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75eda7a7 mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7891b9e4 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x789c1c9a mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b86d278 mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c8b4a69 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7cb938e8 mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e263a5e mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ea71863 mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ec664bb mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80a90d89 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80b668a3 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83095d7c mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8413658c mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84424548 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84a2fa4d mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8529b6fa mlx4_fmr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86a4a504 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8735b396 mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8757054c mlx4_fmr_unmap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x919148ae mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92878445 mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x936f2af9 mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95bdccd3 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x965b7ac8 mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97ae4e48 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b37a16c mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0645e0d mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0b832a2 mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2160cf5 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3a33df6 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5713f60 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5eca71b mlx4_fmr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa857dc59 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac859d7f mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xadf7be27 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2878158 mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2cd25eb mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbae0f418 mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbccbaff2 mlx4_fmr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe859b4a mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0220d28 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc08d236a mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc133b395 mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5a982c9 mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5f9352c mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc75007b9 __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca939e9b mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc78971b mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccc5538c mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce818899 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2298e43 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd25909ed mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7eba75a mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd86637b4 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc50e084 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde1c9646 mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xded3d359 mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe28ec82c mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe460f39d mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea1fbc58 mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec01e97b mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf00719df mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf41a635e mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7c915a7 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8817b57 mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf92156ce mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd5df4b7 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08c0d85d mlx5_query_port_proto_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0cc0b8dd mlx5_query_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13c9c231 mlx5_query_port_proto_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16e7c178 mlx5_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17a23a41 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20925d2e mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23c40446 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d6d17a2 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c45312c mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3dc77eb6 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40d5b85f mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49118ca2 mlx5_set_port_proto -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4cd4cb2a mlx5_core_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57c806b3 mlx5_core_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76a9c36e mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a21a3a9 mlx5_core_page_fault_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8367c461 mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83d5f995 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x848f41d5 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85022bdf mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86611312 mlx5_query_port_link_width_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x874e1775 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88b98a65 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b7c0dfa mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90f9622f mlx5_core_xrcd_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9231ab80 mlx5_query_vport_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x950253e3 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98537f24 mlx5_core_destroy_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a0da3e6 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d413a41 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4c90b7d mlx5_core_create_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa61938f1 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa7ed325 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcc4bf40 mlx5_core_eq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf152438 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc340fddf mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6073e05 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc89d8a98 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdaa7d9ba mlx5_destroy_unmap_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe945ee08 mlx5_query_port_proto_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea394943 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb7484d4 mlx5_core_mad_ifc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefab818d mlx5_create_map_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf63871bf mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd8e66b9 mlx5_core_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x5e28947e regmap_encx24j600_spi_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x737811d7 devm_regmap_init_encx24j600 -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xac144314 regmap_encx24j600_spi_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x174e2738 stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x4aec2138 stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x5c78b718 stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x8846baa1 stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x3efc9acd stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x614e50dc stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xfa3bc482 stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xfdf4636b stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x0a08d584 cpsw_ale_del_ucast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x229d3d7e cpsw_ale_set_allmulti -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x35231055 cpsw_ale_add_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x43d72c71 cpsw_ale_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x4c1b9694 cpsw_ale_control_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x61c3ebb9 cpsw_ale_control_get -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x6bb88fbb cpsw_ale_stop -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x6d31e4d0 cpsw_ale_del_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x7efe08c9 cpsw_ale_start -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x995504f4 cpsw_ale_dump -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xabfebd3d cpsw_ale_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xba3f4e30 cpsw_ale_add_mcast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xc98eacea cpsw_ale_del_mcast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xe2e69c89 cpsw_ale_add_ucast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xf9f0dbef cpsw_ale_flush_multicast -EXPORT_SYMBOL_GPL drivers/net/geneve 0xb65e6294 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/geneve 0xcf3ee61d geneve_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x236f248a macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x4e701848 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x8c2b37e7 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x8d6fba81 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvtap 0x19c1aae3 macvtap_get_socket -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x082181b0 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x37c4483b bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x730bf91e bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7c352658 bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x91d73a62 bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc6c1b072 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd9b14eb7 bcm_phy_enable_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xebab683c bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xec829ce2 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xff337525 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x0064cbe9 mdio_mux_init -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x2dbd3a67 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x6944036b usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x8970b828 usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x8d05d44d usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x089a99c9 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0ca1df8e cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0f53b131 cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2f522cc1 cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x551fdc5e cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x806a6ffe cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x83fe8cd2 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9d973b07 cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xbdb17bae cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x60910fbd rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x8a5a8e11 generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xe25be5fc rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf1d7e0d4 rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf2ee328a rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf648f87f rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0247731e usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0687b224 usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0762fd28 usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1e88f508 usbnet_set_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x247d5654 usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x38f82fca usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3a766d17 usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x430e2454 usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4c13d473 usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x59625784 usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5a8d08bf usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x62f1c16f usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x64a9c4a5 usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x64ca818d usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x78c87a22 usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x866e853b usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x91b79f78 usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x984b018c usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xab710fd4 usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xacebbfde usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb609542c usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc25ff745 usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd71c1710 usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd9fbfd40 usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xda247eb2 usbnet_get_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe2cac3b6 usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe42b2b07 usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe6a9ded5 usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe74429cf usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xed64d698 usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf32ec87c usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfb687dce usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x0e45e35c vxlan_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/vxlan 0xa0133020 vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x197ed5c7 i2400m_dev_bootstrap -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x273b680e i2400m_tx_msg_get -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2743c8b8 i2400m_cmd_enter_powersave -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2fe969ca i2400m_is_boot_barker -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3726a55c i2400m_post_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3925271f i2400m_rx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5eb2b400 i2400m_release -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x644ab373 i2400m_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x9757aab2 i2400m_dev_reset_handle -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa655aaa7 i2400m_netdev_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xabfe95a4 i2400m_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb5bf85ab i2400m_error_recovery -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc0d44852 i2400m_init -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc60649d6 i2400m_tx_msg_sent -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe2c8d366 i2400m_tx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xfd218dc5 i2400m_pre_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x0158cf5a cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x4505abe7 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xab67782e cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xb3acf422 cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0xc2e6e94f libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x11a2fb58 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x373a970a il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x5b6ae9ad il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xe5eaa5bc il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xebb03032 _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x002b2e74 iwl_init_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x05219320 iwl_nvm_check_version -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0d556623 iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0f48dcb7 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x244e08dc iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x335400f3 iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x440b9f66 __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4957099f iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4975dc2c iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4b04e0b0 iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x70897027 iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x783f5690 iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8068bb90 iwl_write_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x82af3162 iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x876c130e iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8e6818ce iwl_opmode_register -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9a0e6d2f iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9c4da553 iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa1741702 __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa536d860 __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc67c31ed iwl_notification_wait_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xcbcf62a6 iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd1ef7c56 __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe0d3442b iwl_remove_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe0fefeb4 iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xee7823bf iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xef455dd9 iwl_parse_eeprom_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf5aea4a7 iwl_notification_wait_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xfb33b5e3 __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xfcfcae75 iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xfd75b8f6 iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x062f82f3 lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x42695063 lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x45aa0b6e lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x49ee8b8e lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x567e1909 lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x836afdb9 __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x907b6ebe lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x924f411e lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9fd3e5d2 lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc13e52a1 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xcf4fda79 lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xd1f6aeb9 lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xd6bdf0d8 lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xdcebd291 lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xefed3131 lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xfae21a07 lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x084711c9 lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x086b3417 lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x0cf0dcca lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x4f7c0a91 __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x8ef67377 lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xb4677c3f lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xf8ef41b2 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xfbf02e7e lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x0a024a15 mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x304f3db4 mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x3d455cd0 mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x3dfc71c3 mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x55c31f1f mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x5a38fcc7 mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x6de09100 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x6e6a3b7a mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x749c57e9 mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x9f057d73 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xaffb0c05 mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb07cdc7e mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb57cb77e mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb78fb6dd mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xcc0de506 mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xe724ee05 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xea6eb12b mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf13b4638 mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf25137d1 mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x3432f330 p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x411fb319 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x4ab0359f p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x59ca61e3 p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x744efce6 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x837663ae p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xbd0c555b p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xc21ea0ce p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xd02eb0f7 p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0e76ea15 dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1e4f83d8 dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2f594768 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xced660d8 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x179bd859 rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2f5ced4b rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3fcfefdf rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5f0ad268 rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x65163a69 rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x66b5450b rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6b18e03f rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6d504943 rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6f68fdbf rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x75acab10 rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x771260eb rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7bbdf226 rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7f3fd6d6 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x84cd24fc rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9fe5ad36 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa3b3c5d2 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaa2ba3db rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaab28394 rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xab31d94a rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb519d2c4 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd7485513 rtl8723_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd9a692fc rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdf1fc0f7 rtl8723_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe1b71940 rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe2843040 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xebae788b rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf1eddec8 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x02053d0b rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x04e445c0 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0595b3b4 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d0b6636 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x13dc48a9 rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1738c88a rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3d6e9ddb rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4aa9f62c rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4f17949e rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b4de810 rtl_lps_change_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x74364fba rtl_attribute_group -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x89cdd2df rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8a04dfe5 rtl_dbgp_flag_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa0b31ca5 rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa6086445 rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xae16bf8d rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb1174d0e rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc33ca3b9 rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd1b89d30 rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe3e33ac6 rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeb9cdeb4 rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x4ff86fb0 rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x91e707c5 rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xab280e31 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xba50e95b rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x01eb5c40 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0786e5ae rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0b135a91 rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0ba44376 rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0d78b274 rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0edddffb rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x100169f5 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1386447c rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x16828c26 rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x16e2da49 rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x226816d4 rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x24055dba rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x31ee3c47 rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x31fe6ddf rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x385c609e rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4927174d rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5f25ee98 rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x637b49a3 rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x729a9d65 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x730b6511 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7725d9ea rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7b8d016c rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8306b93f rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8f26023a rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x90218651 rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x905fb96e rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x91e2f4f5 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9d18c4c0 rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9f988121 rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa6180097 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbedc04f9 rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcadaf371 rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcdd53212 rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcf035f15 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcfb5020a rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd49e07c3 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe9874f0d rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xed64465f rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x11ca35da rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x233b24a2 rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x48523bdb rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x67b6a9b1 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x9306e342 rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xa01eadc5 rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xa2ba5e59 rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xabfe3df8 rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xb75e23b7 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xb7794deb rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc161b88e rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe78b7e8c rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe7efd8e0 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x02a1fcc9 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x06922419 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0bcba908 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0d02a3fc rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x17b77f48 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1a557083 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1bca8063 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2078f37b rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x20e3cb43 rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x297b1544 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2a999e70 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x34856ce8 rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x40776589 rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x41b3c7b6 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4502b9ce rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x455f8d77 rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4674177a rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x481742f0 rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4c82ebad rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4d9e8ba6 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5237a77e rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x541da5d6 rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x546aa748 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x57ba522f rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x602c0ce1 rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x65c89fa9 rt2x00mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7973d0cb rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7c39912c rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x86d72f24 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x88fdd1b0 rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x89c5a272 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8efed3de rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8f012b23 rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9831ba0e rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9b4a4827 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9dae7355 rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa0ba3e84 rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa3e9d01b rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xabca7436 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb0a5d12a rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb15c5424 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd1ab2481 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd66943b4 rt2x00mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdb49596c rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf31a5414 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfb8c8114 rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x46886244 rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x5f0bc5f3 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x7437d126 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x8f18cc6e rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xe6cb27c7 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x95f75e0d rt2x00pci_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xc8bfdc90 rt2x00pci_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xd873101c rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xe14c745c rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x0fc562b7 rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1bde0db2 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2236c12b rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x23832cc7 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x33c1f73a rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x40b46027 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x4a87f856 rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x68d48d53 rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x79369860 rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x9aa141b7 rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xa2289de7 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xa4c50bb1 rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xacda6f3e rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xdbf50e28 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xea053f8c rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf01ac954 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x1d8f97e0 wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x749b760f wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xeb8200a0 wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x07d5a2c7 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0992d223 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0c3934ac wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1439f8cb wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x21386044 wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x223f351f wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x26171384 wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x36b1830e wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x392d3d93 wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x45712341 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x45f676c7 wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x461a0268 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4bf4febd wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6edb0348 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x70410338 wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x710f3eec wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x716574c5 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x75539f78 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x76aeb68b wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7aad62b0 wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7cd02149 wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8019df56 wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x825491ba wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x87588c41 wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x88ce7a2b wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8a80a28f wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8d6873d9 wl1271_ps_elp_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8ddb24c0 wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8f0b40a1 wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9c1cb46e wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xae0c670b wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb31569e3 wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb4712569 wl1271_ps_elp_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb57b94ef wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb805a0fa wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbf5e71e7 wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbfbaf0be wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbfd43527 wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc146c4a3 wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc218c8cd wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc997596f wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcb153d1b wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd8a37129 wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe7b1408b wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfec17493 wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x3210235e nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x8c76bd29 nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x954e8999 nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xc5afeb35 nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x95fff025 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x9fce953d st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa2c8a170 st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb039cc08 st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb6b77d9a st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc565bad3 st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xd9ee41b2 st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf791c500 st_nci_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x1ce9a1a4 ntb_transport_create_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x40395642 ntb_transport_unregister_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xb71220fa ntb_transport_register_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x06a96af0 nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x202d4ed6 nvmem_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x224f51bf nvmem_device_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3866e217 nvmem_device_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x69e64793 of_nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x6c06ab65 nvmem_register -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x99f018c4 nvmem_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xa405c4ce nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xaf2fea83 devm_nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc1baf5ed of_nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc697b0f7 nvmem_device_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe6aa32f3 devm_nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe8fc5da4 devm_nvmem_device_get -EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x01cc7086 rpaphp_slot_head -EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x3a034de7 rpaphp_get_drc_props -EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x60240be6 rpaphp_deregister_slot -EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x70893210 rpaphp_add_slot -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x355793ed pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xc833a677 pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xee3367ef pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x003998ab ps3_write_ctr -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x0bdf50c4 ps3_disable_pm_interrupts -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x0e622920 ps3_write_pm07_control -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x181e55ab ps3_read_phys_ctr -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x1bcb88c1 ps3_write_pm -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x2abf1471 ps3_get_hw_thread_id -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x2b339635 ps3_disable_pm -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x3c71a6b2 ps3_set_ctr_size -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x4a24996f ps3_lpm_copy_tb_to_user -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x50488f64 ps3_lpm_close -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x58e642c1 ps3_lpm_copy_tb -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x59c54782 ps3_set_bookmark -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x5eca6711 ps3_get_ctr_size -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x60e3f0d7 ps3_read_ctr -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x6702a28c ps3_get_and_clear_pm_interrupts -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x69010c19 ps3_set_signal -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x70177200 ps3_write_phys_ctr -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0xa76ee01d ps3_read_pm07_control -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0xaa190bc1 ps3_read_pm -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0xbb72a01c ps3_enable_pm_interrupts -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0xce72c9c0 ps3_lpm_open -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0xdddfc980 ps3_set_pm_bookmark -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0xfae0ab68 ps3_enable_pm -EXPORT_SYMBOL_GPL drivers/ps3/ps3stor_lib 0x2d8e465f ps3stor_teardown -EXPORT_SYMBOL_GPL drivers/ps3/ps3stor_lib 0x5dd5fe17 ps3stor_read_write_sectors -EXPORT_SYMBOL_GPL drivers/ps3/ps3stor_lib 0x803752e6 ps3stor_setup -EXPORT_SYMBOL_GPL drivers/ps3/ps3stor_lib 0x86146d97 ps3stor_send_command -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x219c956f mc13xxx_get_num_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x26dde8c6 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x51ce6d1a mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x91a67a99 mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xae81bf90 mc13xxx_parse_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x02c18548 wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x573357bb wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x6b2a6707 wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x8c48d525 wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xbe7e24ec wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xc1a88082 wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xbd4cef61 wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x02783da8 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0cf96bfc cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0dae48eb cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1bbbdd47 cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1e915ce3 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x22a4bebb cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x24173243 cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2718894f cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2f1e9571 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2f260fe5 cxgbi_ddp_ppod_set -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2f6f93ee cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x30d2198e cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x36d915cb cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x431f0b82 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4f7b4a36 cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x519bc43d cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x52d8e861 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x52dfa4e6 cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x54a7cf80 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5c8db9f7 cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x74325ac9 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7e4e6970 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x83705b45 cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8d65879f cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x93cc7e52 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x961194dc cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9681ec99 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x98f7ffc8 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9e15d952 cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9e39b2ef cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa5c102e3 cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb18c1b1e cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb91c6b92 cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbbf74d13 cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcaa2003a cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcec43f9b cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd8439a56 cxgbi_ddp_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xda51d8b8 cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdd8be675 cxgbi_ddp_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe6571a49 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe6821edd cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe76a4620 cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf38067d1 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf81da595 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf990595a cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xff7d04ca cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1b24366e fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1c26c7ee fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x20fff424 fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x36bc7d84 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3b278e58 fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3e96d507 fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x71abb02b fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7c9bd9fd fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x91d5c391 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x99e60318 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9e12e6c2 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa2185450 fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa682c694 fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xaf748590 fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb3ff14e4 fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc0a2d76d fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x524a5b3f iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x5767b144 iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x5af3d086 iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x88f072d9 iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc41d0630 iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xf726ca2a iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x046798f1 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x06041dd7 iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x09422ddd iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0bef7a68 iscsi_conn_queue_work -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0c757c35 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12aa3407 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x15e795e7 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1acebb45 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x211b248e iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x258fb092 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2ff0a8dd iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x37b24d0b iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x476232e5 iscsi_eh_target_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5070d4b9 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x556f1ba3 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x55f5a8a1 iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5abafc60 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5c65fe18 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5ddd8c52 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5f27bbd0 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x719e4135 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7e422218 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7ec97339 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x820a2514 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x966fbf78 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x99f3483c iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9acde770 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa16b37fc iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb1dbd5da iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb3384001 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb75def05 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb91dd94b iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbe7919ae iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc97ec333 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcb6de7fa __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcf11d6e9 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd2becbce iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd6291106 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd6979780 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd719bde2 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfe3e177e iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfe3f58bf __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x03791266 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x11001c5c iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x327a360a iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3abe21c9 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4139b4cc iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x423f6996 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x47a38a51 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x614fce8b iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x652ca897 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8014d067 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8e2bc683 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x98778de9 iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xab4ba5b8 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc6c6fe31 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd579b2c3 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe1566ce0 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfb75127f iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1193c1cf sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x155b26f1 sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x15ffcd90 sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2ce9390e sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4417871a sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x45b630a6 sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4a93e8ed sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x54e1a047 sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x63c657b7 sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x68511158 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6c33fa2b sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8420fe70 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x84cc3322 sas_domain_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x89ab5e13 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9a1d7d14 sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbcba29b5 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc013f58e sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc95ba916 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd0d61d95 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd979260e sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdb39d96f sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe99110b0 sas_eh_bus_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf9e3a2fa sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfbc80a94 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0656dc99 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x09dbfff0 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0a5c7cdd iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x20d0c381 iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x27670708 iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x28678e97 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x291898c0 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3dc2fe76 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4fa85a0d iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x519b5be3 iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x534c2fd0 iscsi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x60620ad5 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x61ee61d9 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x649fd8f5 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6cd3f654 iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7001ee91 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71519a1d iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x72b468e7 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7316f5e1 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7cc705b9 iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8143ea23 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8551e910 iscsi_is_flashnode_conn_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa87f7fd9 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaccf5325 iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb19d670b iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb395b33c iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb4e6ff34 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb9b2ada1 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc4c61bee iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc5160a01 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc6c50778 iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcc6d62ae iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4ec0447 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdfc5d56e iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe0f03bcf iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe0fa5671 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe195eb55 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf9d2f2b3 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfc18abd8 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xffdf5c5c iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x0d1a6a51 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x74ae40a5 sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd46cafc0 sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xeead5088 sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xbc530d3c spi_populate_tag_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x65f4f1ff ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x7eb8972e ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x91eaf3e2 ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xa45ef27d ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xc45ee123 ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xc522127a ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xec1fbd66 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x7209d1df ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x9a5af195 ufshcd_pltfrm_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xa984af41 ufshcd_pltfrm_runtime_idle -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xafebb1ba ufshcd_pltfrm_runtime_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xb14eb6b5 ufshcd_pltfrm_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xb5a6639d ufshcd_pltfrm_runtime_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xe62f8d04 ufshcd_pltfrm_shutdown -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x52f99e9a spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x62dd175b spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xbc307547 spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xcbfd4d9d spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xf55551ee spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x51667c09 dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x817b43a6 dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x8841b951 dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x8c0290f3 dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x035db605 spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x11089e00 spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x255592da spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x32d6df9d spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x34728a21 spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x480d1331 __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4ac3853b spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5a037638 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6538c887 spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x80c1d9f6 spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x956b8d02 spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb261a4f3 spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xba15a225 spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbf215bd4 spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc8047a84 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd40cfe89 spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd7b370d3 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfc32209a spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x5120dd6e ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0507aff8 comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x06416ebc comedi_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0c5bf8e4 comedi_dev_put -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x11074029 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x121d8f91 comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x14eed0fb comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x19b86282 comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1bcd33fe comedi_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1ec3ba75 comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x240977c5 comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x443821a4 comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x582a116a comedi_event -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5a7ef4f6 comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6b204164 comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7de409ba comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x84407146 comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8aa44175 __comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8ddaafd5 comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x95791cd6 comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x99e12995 comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa04d783e comedi_handle_events -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa6e00853 comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xacd73e0a comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xaedc0663 comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb256308e comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb2640e33 comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbe80bffa comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc512efc6 comedi_timeout -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcc73cc53 comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe078064b comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe89368ee comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe8ed2677 comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xee6f0d2e comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf6ece06b comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xff311950 comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x078cf28d comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x2496573e comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x2f57c34b comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x3b69ad9b comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x3d777a89 comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x728f12d5 comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x9f3eab54 comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xef3adf21 comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x6247de15 comedi_pcmcia_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x891bfe36 comedi_pcmcia_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x9e160edf comedi_pcmcia_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xa1739f09 comedi_pcmcia_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xa92a0f73 comedi_pcmcia_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xd6686ba2 comedi_pcmcia_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xf61aa4ff comedi_to_pcmcia_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x58111313 comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x8a8743a7 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xa877423a comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xa8dcb990 comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xb604a293 comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xbe15463e comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0xf1366d61 addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x97c1ef08 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xa29331d4 amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0xbf79ecfc amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x1a2e0655 comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x300b4092 comedi_8254_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x5547a3f9 comedi_8254_load -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6ce51634 comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x7b8e5b1b comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x8aa22798 comedi_8254_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x96a4b9e3 comedi_8254_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb72abca0 comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xc9d5bf6b comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xcdfe0b09 comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xe627aaa4 comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xe82bce56 comedi_8254_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xe9e67abe comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x538d0ae4 subdev_8255_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x76553db9 subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x9a3fafa9 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x0d68fcd9 comedi_isadma_poll -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x6815a033 comedi_isadma_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x82866934 comedi_isadma_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa3d01a85 comedi_isadma_program -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa7ebb8a3 comedi_isadma_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x546d54fb das08_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x05cdf7d2 mite_free_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0ffd1e27 mite_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x12ecc26a mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x24214608 mite_done -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x495a076f mite_bytes_written_to_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x58edf2d8 mite_dma_tcr -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5ed637ea mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x69fe5d24 mite_bytes_written_to_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6aead8f7 mite_sync_input_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9042b138 mite_get_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x90c1b40b mite_sync_output_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x926cc351 mite_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xba6f6261 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc7a00bea mite_release_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xcebc9ffb mite_bytes_read_from_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xcf292fa3 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xdca90794 mite_prep_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xee18c5b0 mite_bytes_read_from_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf175f9d9 mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf913e614 mite_buf_change -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfb9465f8 mite_setup2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x47fb6ef9 labpc_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xea43d6ec labpc_common_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x181e9cd1 labpc_setup_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x475b77d3 labpc_drain_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xd9d1ccc5 labpc_init_dma_chan -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xf5325d05 labpc_handle_dma_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xf5795307 labpc_free_dma_chan -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x2b2e910f ni_tio_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x3ce19e8e ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x49d58112 ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x5e3e24f5 ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x8521a877 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x98757006 ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xaa3b27c1 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xba9d6cee ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x38164212 ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x7b7563d8 ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x89c64b73 ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x9517dcf6 ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x98f0c69a ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xa7020edc ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x2608faf3 comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x37a6b267 comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x9f7ed1d3 comedi_dio_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xa093eecc comedi_open -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xb652bed3 comedi_close -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xc5c61d6e comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xe5f128cc comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xa44ac81d adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x14430cd9 most_submit_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x1a1ace5a most_deregister_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x48445f43 most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x66202ab6 most_stop_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x712d2bfb most_register_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x98af5683 most_get_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x9d973ce7 most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xa0b9de2d most_start_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xcaeb1bb1 most_deregister_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xd5e4491c channel_has_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xe9771afa most_register_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xf7b89467 most_put_mbo -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0ef1d765 speakup_info -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x11c54657 synth_add -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1261df42 spk_do_catch_up -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x12f1ac81 spk_synth_flush -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1c20812a spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2e4f8314 synth_remove -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2fe759da spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x34558516 spk_var_store -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x726c1902 spk_synth_immediate -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb35aaab9 speakup_event -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc56de7b0 spk_var_show -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe3a53eb0 spk_serial_synth_probe -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in -EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain -EXPORT_SYMBOL_GPL drivers/uio/uio 0x6a051396 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x9ecdfbdf __uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xcf50bb12 uio_event_notify -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x32222a4b usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x4ec83016 usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x0370f69e ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x14522d1a ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x107c718b imx_usbmisc_set_wakeup -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x2c319c9e imx_usbmisc_init_post -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xa64f44e7 imx_usbmisc_init -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x3c2bb787 ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x522f1bf4 ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6bbe1114 ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x98d81890 ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xb54dcada ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xe43f3a09 ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x005379fa gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x164658e1 gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2bb952e1 gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x31eb758f gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3bdef428 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x60003d75 gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x659d368c gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7c302a16 gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x942cba32 gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x97f8fd1e gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa62da456 gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa64022ac gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbbec6dbb gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe1a36639 gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe614fdd9 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x2fd9e41e gserial_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x69d6fe88 gserial_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x15cf1391 ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x42869b98 ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x8c2b4a8e ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x17eb6ade fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x20be09b9 fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3d37e37d fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x43271af4 fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x546c7f99 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x65b70687 fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7c629fd8 fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x987bc0cf fsg_config_from_params -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa1761d56 fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa727eba2 fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xae229621 fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb458fc75 fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xbdbd7228 fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xcecb6c11 fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd468f882 fsg_common_set_ops -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe3b5ec70 fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe7c181bf fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf02f3436 fsg_store_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x176055b7 rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1d01f90b rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1f66dd6d rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x283d07ca rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x54ff996f rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5cb7dc16 rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6a5010c5 rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x88db0fda rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8f714318 rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x919321e5 rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa06546ac rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb577c252 rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdc88a64f rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdcb739a2 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe50d70cb rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x03278195 usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x039bf223 usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x04a86db6 usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0fd42ae8 usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x122ccce8 config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x160112ec usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x18adcf02 usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x207dceb4 usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3e942263 usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x40d5f721 usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x47788775 usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x47811018 usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x496bb97d usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x58ffcf21 usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x59afd771 usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x59edd0c0 unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x62f78980 usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6bed04b3 usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6f6b3ccd usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9f0dc5d6 usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa59c37d4 usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa89e3606 usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb0ce5a84 usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcc905a3e usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd3856c37 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xde4a36a7 usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe48df135 usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xea18b94f usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf0c53925 usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfcbc2940 usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3bc6e14e usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3fdca388 usb_add_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x56173031 usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x587736d5 usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x66619a8f usb_gadget_map_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x709a83ba usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x842432da usb_udc_attach_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8e4ed459 gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4744dba usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4b2ff8f usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc5c97cea usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd76f1dbf usb_gadget_probe_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdc90e69c usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xec8bc7ee usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x3317a147 ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x39d8b825 ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2096a4e1 usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8cabf116 usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xad8c093b usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xaecb73b6 usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb24035de usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd5b73f8a usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xeb7d170f usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf391555a usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf51b0b1d ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x1b2beb95 musb_interrupt -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xbcdfb222 isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xf9197bbb usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0669fb4e usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0e16b685 usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x16a43560 usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x21565088 usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x31a15da8 usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3596c1a5 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3af0a691 usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3b81a57d usb_serial_handle_break -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3d8decfd usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x43958fd9 usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x53bb1952 usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5e0a357b usb_serial_handle_sysrq_char -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8a51ad33 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8f8f698d usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xaa62af04 usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb360e92c usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb639da09 usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd4db872e usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xed48cef4 usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfcf694a4 usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xffba01ba usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x051d5a72 usb_stor_reset_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0851fe8c usb_stor_CB_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0bb949be usb_stor_Bulk_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x14b2f1d4 usb_stor_suspend -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x22e4ed74 usb_stor_transparent_scsi_command -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x36f069bb usb_stor_disconnect -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x510b83b2 usb_stor_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x57cfd6a3 usb_stor_set_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5a98adc9 usb_stor_bulk_transfer_sg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x722baad2 usb_stor_adjust_quirks -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x73461763 fill_inquiry_response -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7b0bf3b7 usb_stor_access_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8029bd0f usb_stor_bulk_transfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa4013ce2 usb_stor_probe1 -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xab74304b usb_stor_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xac96216a usb_stor_ctrl_transfer -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb1978cb1 usb_stor_pre_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb2fd01c2 usb_stor_CB_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbd5a70ae usb_stor_Bulk_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbfb499aa usb_stor_control_msg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc72797de usb_stor_host_template_init -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe0dc1c99 usb_stor_post_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf68414da usb_stor_bulk_srb -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf7a0833b usb_stor_probe2 -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3812fb92 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3ce17bc2 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x655346af usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8d889773 usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x941becba usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9ba4c45e dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa4f1b408 usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa613486d usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb9166a0a usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbe641550 usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc53d1193 usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc769028c usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0bd816f0 wa_process_errored_transfers_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x122f15ac wa_urb_enqueue_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x52ffb98e wa_urb_enqueue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x5b0a464e wa_dti_start -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x6b7ef086 wa_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xae8e374e __wa_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xb6cbbef3 rpipe_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcccd710c wa_urb_dequeue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xdd1b5b53 rpipe_clear_feature_stalled -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0ed4e795 wusbhc_reset_all -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x1acce4e8 wusbhc_b_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x1df1b0ab wusbhc_mmcie_rm -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3ef5500d wusbhc_rh_control -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4fee78ac wusbhc_b_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7666f9c2 wusbhc_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x80a7cedf wusbhc_handle_dn -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x8f307b80 wusbhc_chid_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9e3bb036 wusbhc_mmcie_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xab600b55 wusbhc_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb7c64ee8 wusbhc_rh_start_port_reset -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb87ed33e wusbhc_rh_status_data -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xbec02e4d __wusb_dev_get_by_usb_dev -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xcab0b3ce wusbhc_giveback_urb -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x1e642e21 i1480_cmd -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x30ff2337 i1480_fw_upload -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xc8869e8d i1480_rceb_check -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x294be489 umc_device_unregister -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x6df0fdf7 __umc_driver_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x7b8c92e5 umc_device_create -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x91fd904c umc_controller_reset -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xa7af438c umc_device_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xae090ef8 umc_bus_type -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xe2306991 umc_driver_unregister -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xf6070537 umc_match_pci_id -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x01acf450 uwb_rc_dev_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0d78016e __uwb_addr_print -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0dbb17cd uwb_radio_stop -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0fc02440 uwb_est_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x110a6fb4 uwb_dev_for_each -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1adc26e4 uwb_est_find_size -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1b543b85 uwb_pal_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1cd30f2a uwb_rc_pre_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1d7c8e40 uwb_rsv_get_usable_mas -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1e37e1bd uwb_rc_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2133fe50 uwb_rc_put -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x226289c5 uwb_rc_ie_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2c6eefab uwb_rsv_create -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3529d7ad uwb_rc_ie_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x37f5ba5f uwb_pal_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4f231388 uwb_rc_get_by_dev -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5d5b410a uwb_dev_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6254fe56 uwb_pal_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x67e534ba uwb_radio_start -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6fe56ece uwb_rc_get_by_grandpa -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7a287cd0 uwb_rc_neh_grok -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7ef871c0 uwb_rc_cmd_async -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x816b9e92 uwb_est_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8501cf3f uwb_rsv_modify -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa7ed9076 uwb_rsv_destroy -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xac97316b uwb_ie_next -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb3985bc0 uwb_rc_mac_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb5a0f97d uwb_rc_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xcd465110 __uwb_rc_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd3105080 uwb_rsv_terminate -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd3281e30 uwb_notifs_deregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd44082bf uwb_rc_post_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd7aac768 uwb_rc_cmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd8e35803 uwb_rc_vcmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd96c0350 uwb_rsv_accept -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd9ebcab0 uwb_rsv_establish -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xda8947a4 uwb_rc_reset_all -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xee282b2e uwb_rc_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xefa92688 uwb_rc_neh_error -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf57abd79 uwb_notifs_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf841a74b uwb_rc_alloc -EXPORT_SYMBOL_GPL drivers/uwb/whci 0x2c3cd9f0 whci_wait_for -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x044211d3 vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x35e56715 vfio_add_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x449054c7 vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x729c790f vfio_del_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7ee136f6 vfio_group_get_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd2ba7827 vfio_device_get_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio_spapr_eeh 0xac0624b4 vfio_spapr_iommu_eeh_ioctl -EXPORT_SYMBOL_GPL drivers/vfio/vfio_spapr_eeh 0xadc718db vfio_spapr_pci_eeh_release -EXPORT_SYMBOL_GPL drivers/vfio/vfio_spapr_eeh 0xf6d0ccb5 vfio_spapr_pci_eeh_open -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xd3f9713f vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xd85f3058 vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x05253d7a vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0b9e2210 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0faf2d67 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x12f94034 vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x22f28dd2 vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2b6a8f2a vhost_work_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2edc856e vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x399c463c vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4968abe9 vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4bb765e1 vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4e575d2e vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4f19bf61 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x63be158e vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x718fffac vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7e256679 vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7ff6902e vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8d48959b vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaf0ce11d vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb0e2d722 vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb0f81e37 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb28e7fd6 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb39163a1 vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbbafceab vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc33f596c vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc61f1404 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcecf1aaf vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd186567d vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd2617e7d vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe621d416 vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xead7b690 vhost_init_used -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x4cf4982a ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x84f111c7 ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9cf4ee09 ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xcbb175b4 ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xcbe78d53 ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe7265229 ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe88c4077 ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x1d184363 auok190x_send_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x386a0d62 auok190x_send_cmdargs_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x50b22fb2 auok190x_send_command_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x5e2047ac auok190x_send_cmdargs_pixels_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x7ba7f1e2 auok190x_send_command -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x8439350a auok190x_common_probe -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x9fe5e7d8 auok190x_send_cmdargs_pixels -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xb1da2bd4 auok190x_read_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xe11ef639 auok190x_pm -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xfa6fd7c1 auok190x_common_remove -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x66e3cec2 fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x1c56dd48 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xe13ee16a sis_free_new -EXPORT_SYMBOL_GPL drivers/w1/wire 0x1cd267e5 w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x5515dfe9 w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x564feb40 w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x57fd4b86 w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xa7370e99 w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0xadc7a685 w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0xb35cf84b w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0xbb06655d w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xd5fe6063 w1_write_block -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x6f6b0a8c dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xaf56aa88 dlm_posix_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xe70058cc dlm_posix_get -EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x03bbd26f nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3a67e7d0 nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x485dddac nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77c84550 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7c7de47d nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9c4fc6b6 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd6175f9d nlmsvc_ops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00b6be64 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x011bdfcd nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0706188a nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0bc57a46 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d16a4ce nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e42304e nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ed324b2 nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10a83415 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14824781 nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x162985b9 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x162eb128 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x171c3a42 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18ffd50e nfs_fill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19475904 nfs_destroy_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19668b16 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19d2985b nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a1b13b8 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b5b5344 nfs_set_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c49a4b1 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f711202 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x210281b8 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22a7745f nfs_try_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24ad416d nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x266c381e nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27b9b3ad nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29c5097e nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2adced3d nfs_fs_mount_common -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2da91f0f nfs_fs_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e5fd2f7 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34ad6924 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a844a02 nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b9499f3 nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40d25128 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42630b38 nfs_file_fsync_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f79739 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4405fc7b nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46a49730 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47e3c8ad nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48c29631 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a0f271a nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a56ce55 unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c0d3220 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x507a0358 nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x511a683e nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5223d53a nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5284839a nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x563ac50e nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x580fb2f8 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58a8350b get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59946cbe nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b272a6e nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5bbbf0af nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5de13619 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x616c209f nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67b096a5 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69832b2e nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6cb02a55 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6fd0bbfb nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70a2acf2 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77bac84c nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x799d9eba __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c40d72c nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7cc9168a nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d07ccdf nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d9cd4b0 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80b7de97 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82be33bc nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x850eff4b nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x887e698b nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89f92c95 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c5b23d7 nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ad2761d nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e0ab644 nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f89bf14 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9fab4944 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa321fb9b nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3b1a2d9 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4ac7662 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa68dde2c nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7cdb0c4 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa347cae nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac76048b nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad1d830e nfs_remount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad9795d2 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0fccd5b nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3ed61f6 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb430b907 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5be3ec8 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7db56d5 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7f0dbfd nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb88507e7 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb97add86 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd701a53 nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbee3b2ae nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2388217 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc39ed5c8 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3ce6e0f nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc73fa093 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb21aa5d nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd35fb08 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf680312 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf873e31 nfs_pageio_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd004ad9b nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1c27856 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd306d0c9 nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3288a4e nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7594950 nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8768580 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd89c394e alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb2ca1cf nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf1ebd7f nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2e343e8 nfs_pgio_data_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe52ec70d nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeab93528 nfs_file_splice_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb7e44ca nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec6c6dbd nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeda878fa nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xefffe4a2 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf26a89d7 nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf34b5f9c nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6942e03 nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa4e5f22 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa7269b3 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd858541 nfs_clone_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff7bd322 nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x16377e97 nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x09a011a4 pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1093b108 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x12c2a601 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x17ac139a pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1c0a0583 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1f5395bf pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1f6d05ea nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x215812e7 pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2af148b4 nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2d196676 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2d9e1949 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x313bb39b pnfs_put_lseg_locked -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3255456b pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x371b6738 nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x43cb13ea pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4f56d200 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ee20695 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x61f274c8 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x66231414 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6d6436f6 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x736cab3f pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x78fe0425 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x79775cee pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x804a5723 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x81b26e5a pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x834628e2 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x84259146 nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x85b703ff pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9016dfc0 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x904be64b pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x917179f0 pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x92698674 nfs40_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9683a1a4 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a5e827d _pnfs_return_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02a33c9 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa0aecabe pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa509a7ad nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab1752d5 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaf816986 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0480ef3 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb332ff3f pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb430a279 pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4f1cb03 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb781befb pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb8670172 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc17a2e53 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc0a3e61 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0b5b7dc __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6c175a8 pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdbdffc8f pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdee653d5 nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe063f3a3 nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe7f9fb4a pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe958e794 nfs41_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeef03fcf nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xef4bb864 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf19f8090 nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf33f3a1d pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf38c399d pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7047ad7 nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf8561d49 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1682e14f opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x33b3c2bb locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x51ba244e locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x344cd422 nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xc8172467 nfsacl_decode -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x06a9a46f o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x2ee04639 o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x35364319 o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36a28a9e o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x72121626 o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x8ce7d092 o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc903bff0 o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd9e10c7a o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x3f638dd8 dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x61e7f8e7 dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x75e2bbcf dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x88928506 dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa91dfa58 dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xae85ee95 dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x70e02d93 ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x8a77a6b0 ocfs2_plock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xec32a1b0 ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL kernel/torture 0x13928800 _torture_create_kthread -EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq -EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures -EXPORT_SYMBOL_GPL kernel/torture 0x20e65a20 _torture_stop_kthread -EXPORT_SYMBOL_GPL kernel/torture 0x3d347c3c torture_shuffle_task_register -EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats -EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb -EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random -EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait -EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop -EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end -EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init -EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init -EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin -EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin -EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init -EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end -EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init -EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping -EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress -EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress -EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch -EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch -EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch -EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x25d86905 notifier_err_inject_init -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xb7ad33cb notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x201d8ea3 encode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x29fa419f decode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x0adcb055 base_inv_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x221df614 base_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x4da25bec base_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x63f42b6a base_inv_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x76203267 base_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xca3140ce base_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfa5eee0a base_inv_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfc02472a base_inv_true_key -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x7626bdb6 lowpan_header_decompress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x7ba25828 lowpan_header_compress -EXPORT_SYMBOL_GPL net/802/garp 0x2d57f980 garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0x6cf78de1 garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0x942a997f garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x9b471419 garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0xc67602b5 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xf8b17d1b garp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x0434d18a mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x538f9529 mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x623d5535 mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xce3ba627 mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0xedc5690d mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0xf96701d8 mrp_request_leave -EXPORT_SYMBOL_GPL net/802/stp 0x2a7ebc40 stp_proto_register -EXPORT_SYMBOL_GPL net/802/stp 0xcb382e89 stp_proto_unregister -EXPORT_SYMBOL_GPL net/9p/9pnet 0x4ec05555 p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/9p/9pnet 0x901e0ac3 p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier -EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier -EXPORT_SYMBOL_GPL net/ax25/ax25 0x1e7e105d ax25_register_pid -EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast -EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x19654965 l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x1c967b67 l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x1dabbe2d l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7f9bed28 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x816f3c74 l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x83cd4d05 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xebd55d2e l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf973bc82 bt_debugfs -EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable -EXPORT_SYMBOL_GPL net/bridge/bridge 0x046cb86f nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x21f5d1b8 br_deliver -EXPORT_SYMBOL_GPL net/bridge/bridge 0x24b3214b br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3873f9a3 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb1a24111 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xbc030887 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0xcadcf0f6 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xebfd2b8a br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x0d1cdec6 nft_bridge_iphdr_validate -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x6f6622a8 nft_bridge_ip6hdr_validate -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0525f7d4 dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0c01b3f0 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x106d4b7c dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x14bd2784 dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x14e9f31c dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2293e3e6 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2d71647c dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3ff2c825 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5651eb46 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5e8dde9e dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x61cb2aab dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0x66074394 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7526b80a dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0x76dd49ff dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x833ce99f dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x87a32cd3 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x88504965 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x88b93f3f dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8b281bde dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x933131dd dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9605b6ff dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa4035230 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa774e675 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa8ac1f65 compat_dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb4c55ffb dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb5384524 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb9d2edd8 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc0b7b890 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc8da7082 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcba36dbd dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0xdd25203e dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe004c0e1 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe5256155 dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf12d2ee5 compat_dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf3960503 dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf902da7e dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x206cf0e5 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4e577639 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x543c9550 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x8b7c7ce6 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xab53177e dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc0e0d358 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x1cf16121 ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xafe36e21 ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xcdd7e48f ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd2537e26 ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd58dfa29 ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ipv4/gre 0x3951be53 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xeb7b7058 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1126c139 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5b677015 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x848e0a30 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8c98c2db inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb6e298eb inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc157e2fe inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x4470b236 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x05db2935 ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x11baf4a0 ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x13229d3d ip_tunnel_delete_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x16c08f9d ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x22dca188 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x26c5378b ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x45f5c9db ip_tunnel_ioctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5d41c7bb __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x76afa6e2 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7b6c7f25 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9e8009ab ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb71e3da6 ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbfda65b7 ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe9806e8a ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf46b9b1a ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xb42698b2 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x63209066 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x4b7d7eb9 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x0c935f6c nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x364244f6 nf_nat_ipv4_in -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x66b1e613 nf_nat_ipv4_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x9b121eb6 nf_nat_ipv4_local_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xf1fb35f7 nf_nat_ipv4_out -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xaab58222 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3d62ef85 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x4133d8f4 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6e1b1290 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xbd667db6 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xd3853f31 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0xaf4e43e0 nft_af_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x1c922869 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x42c7d1e3 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x8a30084b tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xac6c7fe6 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xea05c052 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb2b9a94d setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb73365ba udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc172d4e5 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd6e8ffff udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x1a465111 ip6_tnl_dst_destroy -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x37cd4e0a ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x3d935ac1 ip6_tnl_dst_init -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x5bd36031 ip6_tnl_dst_get -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xa4dc753d ip6_tnl_dst_reset -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xb466a9ce ip6_tnl_dst_set -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xe63e4603 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x7056b568 udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xe3098a6c udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x6cc1563a ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x1d02f533 nf_ct_frag6_consume_orig -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x23b3268d nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x10e6fc2c nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x314c5fdc nf_nat_ipv6_in -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x34ab80f9 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x51aeabd9 nf_nat_ipv6_local_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xbd7727b4 nf_nat_ipv6_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xf2283880 nf_nat_ipv6_out -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x8c135bfe nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x047b5b9f nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x189bf1aa nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x284372a0 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x7997c0a5 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x80a0eca8 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x35467d72 nft_af_ipv6 -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x04cd6d88 l2tp_tunnel_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2d62d1c5 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x351ce813 l2tp_session_queue_purge -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x419262b4 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x56f29602 l2tp_session_free -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x65e83bf9 l2tp_session_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6c187562 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x72d1ffff __l2tp_session_unhash -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x798e6fe4 l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9a7ceba0 l2tp_tunnel_closeall -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9b577252 l2tp_session_find_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb00e418d l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbbfd0110 l2tp_tunnel_find_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe865309f l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xeb39b22f l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xec3b08f5 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x1e57df80 l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x05d0e5bc ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x077feaca ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x11e1f72f ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1f216d2c ieee80211_set_key_tx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x32664ae7 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x44ee2590 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x58a151ae ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6dac12a2 ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8e79fe1e ieee80211_iterate_active_interfaces_rtnl -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x914f36c0 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9312d3fe ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x97fc324b ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa124dae8 ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbc90d4ce ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcd44309d ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcf87793c wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd5acfa4b ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe4fd6bf6 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8c0da656 mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc65c9e20 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xd1e3196c mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xdbdf6c3d nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0ec9ff72 ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1f884b46 ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x216682aa ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2f04110d ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x412d217c ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x72441d10 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x72a775f1 ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8352d5e7 ip_set_get_ip_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x95e2467a ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9fb88035 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa12143cc ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xac6a1152 ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe00bba13 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xeb02f733 ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xebacfc45 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf88c3fe2 ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xa76e585b register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc7cdc5a2 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xf28b08dd ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xf5028771 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x08e2a4a9 nf_conntrack_l3proto_generic -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0954c1f4 nf_ct_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0eceb8f4 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10c8301a nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11018ee1 nf_ct_l4proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x145e0737 nf_conntrack_l4proto_udp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x152831b1 nf_connlabel_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a345789 nf_ct_expect_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a4c3317 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1cebfe00 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1e5a2963 nf_ct_expect_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f6c0e6b nf_connlabel_match -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f8a7cf6 __nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1fb1ce4d nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1fb85247 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x220a4069 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2422dff8 nf_ct_get_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25789b7e nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x26586182 nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x266865b5 nf_conntrack_l4proto_udp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28b697a5 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2a9ec85a nf_conntrack_set_hashsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31cc302a nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31ecfc97 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x371dce62 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f3ee5e5 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44f4179f nf_ct_iterate_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5716150d nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x578d8424 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6224ad70 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62c55c36 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x63aa2cd1 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x66656c44 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x70e108c6 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x70ef4995 nf_ct_l3proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x713dd3ec nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74ecf6b0 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x75471e47 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x76ac3d45 nf_ct_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7e496fab nf_ct_l3proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x83768e07 nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8454a640 nf_ct_l4proto_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x85fa2543 __nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x873cb1af __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x88a59e8c nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x88bd47f3 nf_conntrack_l4proto_tcp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8928be91 seq_print_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a66c4fc nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c359a51 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8cedd6b8 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x91c2474e nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x94c2a80d nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x94de8a24 nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9a15546b nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa2eb1d6f __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa5aea43c nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7ab81c8 nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb02bde73 nf_ct_l3protos -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb444aca0 nf_ct_l4proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba8b2571 nf_conntrack_l4proto_tcp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbdbe6a9d nf_ct_l3proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbf21ff40 nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc0e9b89a nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc114d33e nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc611dfd8 nf_ct_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc7765e6a nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc947673d __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce592f95 nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd1982f56 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xde6f412c nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdef6a1f6 nf_ct_l4proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdfd7445a nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe8f2d38b __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb5f376a nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xecf6bf6e nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf00ee249 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf073c7ed nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf311bd7e nf_ct_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf7a0717d nfnetlink_parse_nat_setup_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff40b965 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xc23f4234 nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xa79a8bfc nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x67079b9d nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7b74776a set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x823b5ac6 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x855bfdc2 nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x89ff75ff set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x976e59ec nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa4f93132 set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb6ccedff nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xcaf41ac8 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd1150e56 nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd1cd022b set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x80cfce8d nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x0d9ec956 nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x4f2b7d2c nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x8c7508e0 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xc60d515d nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x2a37e0c5 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x3e97d07c nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1b451244 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x26555475 ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x288734f9 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x322f42b8 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x351424cb ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x4d484734 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe0da9779 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xc3fdcd9c nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x90e4175b nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x614a94c1 nf_log_dump_tcp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x99735753 nf_log_dump_packet_common -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xa6264f3a nf_log_dump_sk_uid_gid -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xdc4aadff nf_log_dump_udp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x00833dc8 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x39c5312d nf_nat_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3e34d231 nf_nat_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5ab3f481 nf_nat_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7885918b nf_nat_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7ce1d90d nf_nat_l4proto_unique_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb671be74 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb7093f42 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xcf148373 __nf_nat_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x950bfa6e nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xd0ea49fa nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x2d8ecadf synproxy_tstamp_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5f339439 synproxy_build_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x979e7262 synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1824cca6 nft_unregister_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x373b9052 nft_register_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x384fbec8 nft_unregister_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x411ad6f3 nft_register_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4478d327 nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x46fb4a46 nft_set_gc_batch_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x57e5d8e4 nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5aa3ee41 nft_unregister_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x70f993cf nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7d3f9177 nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x822dc3a8 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x86a5f162 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9869a566 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9ca2bf8c nft_validate_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc3a4d3c6 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf3ead66 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xeafc01fe nft_register_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x0368280d nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x31108477 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd7c1bb52 nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd7d81269 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdcbeae62 nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xefc7cb36 nfnetlink_alloc_skb -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf0824364 nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x1d7ac5c3 nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x2e40973a nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x89fbe43f nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x622c7257 nfulnl_log_packet -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x5e7d44e7 nft_masq_init -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x9b148e0f nft_masq_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xb0604c5d nft_masq_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x4cd980b4 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x6c2eb97e nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb9b91065 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xbe12aad9 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xc331f7fe nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xca6e7537 nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x104b080f nft_redir_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x4c76b86b nft_redir_init -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xe84bcdbe nft_redir_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1e5d3ccf nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x88673b09 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x01d7735b xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x161d1417 xt_compat_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1badca8c xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1e190e8c xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x41f3553a xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4ad10b5a xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x536854e2 xt_hook_unlink -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5d5fb4f3 xt_hook_link -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f82f1f7 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x691a6d69 xt_compat_calc_jump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x69b1cb69 xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6e6eaf51 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7183a18c xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x73cee41e xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x764df93f xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbd433f02 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc0be4b31 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc4257d04 xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc80dd9b7 xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcaf20694 xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcc9a068a xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd7bc6bad xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0b4971b xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec24fd82 xt_compat_add_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf504e785 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x00204983 xt_rateest_put -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x482b6a12 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x1ef9b84a nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x1f8b620e nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x242ebc4d nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x8844b8a2 nci_uart_unregister -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x89740d22 nci_uart_set_config -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xebe3f101 nci_uart_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x41ff0742 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x60cfcfb5 ovs_netdev_detach_dev -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x731df8f4 ovs_vport_receive -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7d5f2a02 ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x81a5a89c ovs_vport_deferred_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb1d1ccf2 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd640843f ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe1f2d91d __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf7cfaa95 ovs_netdev_link -EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x0230d7b0 rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0x0a3e157c rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x23041f6b rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x2349b773 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x2cd37d92 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x3341a402 rds_send_get_message -EXPORT_SYMBOL_GPL net/rds/rds 0x368544f8 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x3c0454c7 rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x58d8b1b4 rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0x6ac3863a rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x7bc62829 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x82c67dea rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0x8720e9f4 rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x901cfada rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0x956a87a2 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0x996a1ded rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x9d843f9a rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0xa7d727c1 rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xb3fcd5f9 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xbe192177 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xd5a94c0f rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0xea40654e rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0xef94e36d rds_page_copy_user -EXPORT_SYMBOL_GPL net/rds/rds 0xefb819d5 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0xfa3d773c rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x97503ba4 rxrpc_unregister_security -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xe76de0be rxrpc_register_security -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x0c5d3f8a gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x854d6776 svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xc5b450dd gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x004674cf auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0050499a xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x017e7570 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0255da06 rpcauth_generic_bind_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x084ab090 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0aa2a85e put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ac5dfa9 cache_seq_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b4688b6 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c85b740 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d673b22 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0da06165 rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f28bd95 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10f6d6e5 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x117480b0 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13e1df9e rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1400134c svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1612b09c rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16a49313 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x174a23f0 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x177c01ec rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x182c7682 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19982578 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a3a99d9 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b1f5089 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bba80e8 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bf8c3ea xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f3c2445 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f67dec0 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fea45fa rpc_lookup_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x251be160 rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25bc0548 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2610ba3b xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x261e8fcd rpcauth_cred_key_to_expire -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x268c6d55 svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x281ec9c9 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x283332c0 xprt_set_retrans_timeout_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c844c6f rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e3ddc41 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e9d3923 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ee0420b svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30260afc rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32f846dc svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37409478 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38e183cd svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c86db06 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d6bb140 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d7ad139 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3dc39b9c svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e8b9a9c xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ef6f9f5 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f07b110 xprt_set_retrans_timeout_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fa09d78 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4033fd13 csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41c4ad6e svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42097951 xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43981d9a rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b7d6940 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bb2be8f xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ce3d5b5 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e959821 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5084bd20 xdr_skb_read_bits -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51cebad6 rpc_rmdir -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52cfba0a xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5384ff84 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x551e9d0b gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x572fdd54 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ad5844b rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bbe3e92 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ea8e17e rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ef444e0 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f39b685 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60c29c96 sunrpc_cache_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60d3bb02 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x616f5f42 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6230c7ec rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62df21f9 xdr_buf_read_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63de6d4f svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x667c8234 xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x673e65f4 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6885e5fb write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69b29852 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b4f2b00 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c48f2fb xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c54827c xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cb5126a rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6dbdf6ba xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7191d942 svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x728d8b09 cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72ac5a37 cache_seq_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x738f3b89 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73a156fe rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x749ca145 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74c79218 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7585c5ac rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x773f5744 xdr_set_scratch_buffer -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a30683a xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c1dfeac rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e590ba1 cache_seq_stop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8056d446 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82bb74e4 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82d3440c xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85aa1717 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87518b49 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8823ac4b svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a8ad6b9 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ad414f2 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b4b12b6 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ce06f38 svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d64b306 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e264438 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e6cead8 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ec3bc97 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ee3e796 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f1a39ea rpcauth_key_timeout_notify -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x900ad72e rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95abd761 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96a64ae7 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96b3708c xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9938073b cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x999e8eeb rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b2197b5 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b5eb326 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b928201 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c7314e2 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ca377eb __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ddd9de4 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ef449af rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fa86830 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa000ef64 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1c728e1 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1fd5fdc rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3cc5be6 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa67651d4 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8489591 rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8f20e94 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa7857fe xdr_partial_copy_from_skb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab99c049 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac93d2b7 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad61a5ab rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2fd2bfb rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5204e5a rpc_print_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb52e7a54 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6461733 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7a9d753 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9500845 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba487e61 svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbca48c74 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd147ddc xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe1e9f13 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4110ec0 svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5570026 xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5fae27e xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7b2cfb3 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc47e336 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc75ac7d rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce388d7d rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce501613 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf7649d6 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd017db89 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd306e492 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd349fe06 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3b7d66a rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7f3c3a8 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd81b5fc4 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8f07bfd cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8fd7cc4 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda20de3b xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda7a4d38 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc49efdf svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc700d19 rpc_protocol -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcfb7f32 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd445ff4 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd6b720e rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd7a8714 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde026279 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde6269df xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe19dc76b rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1b6a33e rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ed542e xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1f0c49a xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5dedb1b svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6b49c18 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe945bb2e auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee8b1341 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef0c21e4 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1515b8a svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf52bde0a sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5fa8db2 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf678c393 rpc_lookup_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf683ab60 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8111597 rpc_task_reset_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8c10988 xprt_lock_and_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf99ce4f5 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9c08361 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbd2442f rpc_get_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbdfb210 rpc_lookup_cred_nonblock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc3019ba svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdf1d0a4 rpc_put_task_async -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x10eeaeba vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x16cba243 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1c8dd407 vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x26ab6cdc vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x45e45cb8 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4dd639d8 vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6af50943 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x70b326ae vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x970b77bc vsock_pending_work -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa6c669d3 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc47ec2d0 __vsock_core_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd22df0a6 vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xda7fbd76 __vsock_create -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xeacf9ba5 vsock_insert_connected -EXPORT_SYMBOL_GPL net/wimax/wimax 0x032dad6c wimax_msg_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0x2c654ed0 wimax_msg_send -EXPORT_SYMBOL_GPL net/wimax/wimax 0x48c8eb1e wimax_msg -EXPORT_SYMBOL_GPL net/wimax/wimax 0x5b8443c8 wimax_state_change -EXPORT_SYMBOL_GPL net/wimax/wimax 0x84b665bd wimax_dev_init -EXPORT_SYMBOL_GPL net/wimax/wimax 0x84e21d63 wimax_report_rfkill_sw -EXPORT_SYMBOL_GPL net/wimax/wimax 0x877c7998 wimax_msg_data_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0x895d6893 wimax_msg_alloc -EXPORT_SYMBOL_GPL net/wimax/wimax 0x89ff2df8 wimax_state_get -EXPORT_SYMBOL_GPL net/wimax/wimax 0x99c3f8e0 wimax_msg_data -EXPORT_SYMBOL_GPL net/wimax/wimax 0xd7acb84e wimax_dev_rm -EXPORT_SYMBOL_GPL net/wimax/wimax 0xd93c6e17 wimax_dev_add -EXPORT_SYMBOL_GPL net/wimax/wimax 0xedbba0ec wimax_report_rfkill_hw -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x08125f71 cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2099b01d cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2e46d991 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x412bf9d3 cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x60bef821 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x811db363 cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x846b212e cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x96bca48c cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb9d96eec cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc98e721a cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xed705c8a cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf8dab9c0 cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfee6b32d cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x0567da4c ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x96fe812f ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xb2f93bd4 ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xd464c016 ipcomp_init_state -EXPORT_SYMBOL_GPL sound/ac97_bus 0xd228f01c snd_ac97_reset -EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x0d8c17f5 aoa_codec_unregister -EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x17b4b3ca aoa_fabric_unlink_codec -EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x24cfafb0 ftr_gpio_methods -EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x38276a1d aoa_fabric_unregister -EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x50b9baf0 aoa_snd_device_new -EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x61dcec1a aoa_get_card -EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x61e84ba9 pmf_gpio_methods -EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x821338a6 aoa_codec_register -EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x857745c2 aoa_fabric_register -EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xc85c8bbd aoa_snd_ctl_add -EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x1d7e9137 soundbus_dev_put -EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x3b4ca064 soundbus_register_driver -EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x465d18bb soundbus_dev_get -EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x861ddfbd soundbus_unregister_driver -EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x96a1c163 soundbus_add_one -EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0xac4a093c soundbus_remove_one -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xe7ca98a9 __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xf37cfa94 snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/snd 0x33db48bb snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0x6fb67316 snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0x8cd012e9 snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0x96c06c7b snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd 0xab91707e snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0xf365171a snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd 0xff7ef70f snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x0f4fae17 snd_pcm_stream_lock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4bc8b4e2 snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x65602865 snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6c843a29 snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x97bb9b62 snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xbea2b085 snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc81c3d9c _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe4dfeefc snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf7718527 snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1102aef6 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x46e9457d snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5c06a082 snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5e1a60a1 snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x64c73241 snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x831d0aa2 snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xaa1e3834 snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd20f63e8 snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xdb8276fb snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe4485c52 snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe55d80e8 snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x13e3e3d9 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4cbc38bf amdtp_am824_set_pcm_format -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6c49995b amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7fab8289 amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x973a8cc8 amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9cddbec4 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb6350a74 amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x06f0c063 snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0c9bebe3 snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0cdb0eb9 snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x194b5c3d snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x19f1905d snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x22e52f01 snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x24ee0f95 snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x26847734 snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x27656da7 snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x27ef4262 snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2e3548b4 snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x340c8313 snd_hdac_make_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x36ae7159 snd_hdac_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3e049298 snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3e38926d snd_hdac_refresh_widget_sysfs -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3e4a18b3 snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x416d6afd snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x43c7524a hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x43e8c1a5 snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x49a9bd99 snd_hdac_bus_add_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5b2b9d5b snd_hdac_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5b840273 snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5dfd0dd6 snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5e3b3809 snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5e7d8798 snd_hdac_bus_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5eb9439a snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6107a37b snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x61476f8d snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6351cbb7 snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x63ef6ca5 snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x652aed1e snd_hdac_bus_queue_event -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x66988369 snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x68655be5 snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6d6e356d snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6d916c88 snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6d92a196 snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x708852c9 snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x796b6e37 snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7e0572ef snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7eef62e1 snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8356d1d9 snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x836fb1f9 snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x84d6ba11 snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8691ca43 snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8cc78b19 snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8d5e1274 snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9494e2a1 snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x94e7ee30 snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9603b1c4 snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9b4cffb0 snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9b638695 snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9c342543 snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa3b0bef0 snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xab0e6671 snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf99ab90 snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb7e9905d snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcf708c32 snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd1c2c352 snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd5591b07 _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdf7624a3 snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe04019aa snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe11d43b9 snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xed0fd59a snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xee292acb snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf2d03387 snd_hdac_bus_remove_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf3a7fb7b snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf475fb5e snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf6f75a14 snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf71a9730 snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf92a81d2 snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf9df65a3 snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x085233a3 snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x1c68eb0d snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x6fc07f1a snd_ak4113_create -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa079c775 snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xcce53539 snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xfb484159 snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0427aab7 snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c986502 snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e8772ce snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ebdc9a3 snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f9d011a snd_hda_jack_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x149579da snd_hda_mixer_bind_ctls_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x14f2a7b4 azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ff31c54 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24a5b4ad snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2653f2c4 snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2c245eb7 hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2cca5e6e snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x306ef732 snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30edeee8 snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x314adfc5 snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x356d8bd0 snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x37597f8c __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x394403cd snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3965072b snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x399fcfcb snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3c20b1d7 snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d872540 snd_hda_mixer_bind_ctls_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e1d8160 azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x403a38b2 snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x410be418 snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41795fc3 snd_hda_jack_detect_enable_callback -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x42e6c866 snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x45218e94 snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x459dd8fb snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a4401a8 snd_hda_mixer_bind_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4add3ea3 snd_hda_bind_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c52e76f snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x532ea66a snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5661fd12 azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58c06098 snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d863b35 snd_hda_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5e71bf86 snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f559800 snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x618191c8 snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6819b882 snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x686078ba snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6995f509 __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a650d5b snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6be4ac27 snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c8f8461 snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6dd9bd53 snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77dd22b1 azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x783dbc4d snd_hda_jack_detect_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x784c552a snd_hda_mixer_bind_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x79052f0c snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x79b0285c snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a7b113c query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d84958c snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x813b5a65 snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x835f0776 snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84434334 snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8827bc97 _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8892ad0f snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x88add5d2 snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89754909 azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f55c9e0 snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x927eca16 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x934bc0f2 snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9351fa73 snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x953de707 snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96775281 azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x97d2f0c3 snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98a3df2f snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x99270b2b snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x99d71b56 snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c03977f snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9cc28492 snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9db137c8 snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9fd14ad6 snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa316c6a5 snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa36b84a5 snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa406040e snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4ce6976 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4f686fa snd_hda_mixer_bind_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5cfd5d5 snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8511374 snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8df799f azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xab6599a0 snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac98dd19 snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xad215143 azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1428903 snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb46cf608 snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb72d4123 snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb960b22d snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbbad3267 snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbdfe50a1 __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbecb9a2d is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbefe6fa8 snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc13e2e89 hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc49e3fc9 snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc659eb07 snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc807e09a snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc82faa0a snd_hda_mixer_bind_ctls_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb4c4ed6 snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc9ac7c8 snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcd47e1e5 snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0d4fc06 snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd265710f snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd6a34abe snd_hda_register_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdbd6404a azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdbf4f05e azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdc02a5a5 snd_hda_jack_tbl_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdc63b48b snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xde0d2a92 snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdfdee2da snd_hda_bind_vol -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe45ab3bc snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe4701022 snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe4eed322 snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe9873d2a azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xecd15bbc snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xee518d10 snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xee54dba6 snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf0d442c6 snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf601bb26 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf69258c7 snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7f4c1f0 snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb812ea8 snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfbdeef7d snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc72ea9e snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x002135d4 snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x22446973 snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2659462b snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2a74b71f snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2b66fb0e snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2bc4596e snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x34c418e6 snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x588befbe snd_hda_parse_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6fe726a9 snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x730ae788 snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7778e5d2 snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7f7a1992 snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa282fd50 snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbcab25ff snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc7e19dc7 snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xcb8ba917 snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xce9a5115 snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd7c87b13 snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdaccbf35 snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe0a41043 snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe6b97a25 snd_hda_get_nid_path -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x2bba721f cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x950fc7f8 cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x37d9ab10 cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xf955ecf2 cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x508cdc6a cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cf13966 cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x8fef18b4 cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x457c86ea es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x882bd89e es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x3f25c3a5 pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x4d7ede32 pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x9b441e1c pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xdd34885a pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x212d4fc3 sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x5321e1b7 sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x5c83eda4 devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x7dd90793 sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xd47dc5df sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xe6a9220f devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x63e5e65d ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xe7df469d ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x33f4b927 tpa6130a2_stereo_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xde06e59d tpa6130a2_add_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x66c1097d ts3a227e_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x23b67619 wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x23dc545f wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x70ad965a wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x9dab4558 wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x19e5cec3 wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xb3ef42b5 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x51a31927 fsl_asrc_platform -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xcaaceaaf fsl_asrc_get_dma_channel -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x30693bb7 imx_audmux_v1_configure_port -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x58631dab imx_audmux_v2_configure_port -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00f751e0 snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x01750295 snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x03dae640 snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05bfda8c snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0668d1b6 snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x087ed34a snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x088520fb snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b0b32ec snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10a1f1aa snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10e467f5 devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x144c5491 snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15ccfe08 snd_soc_dpcm_be_get_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18e60db1 snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x192ad6e4 snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21977c61 snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2487ace8 snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b420daf snd_soc_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2bc2729b snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f138c5d snd_soc_platform_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31cfe76b snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32572ba6 snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a5b4802 snd_soc_codec_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ab720ed snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b43189b snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ca2b45f snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e17b240 snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f3ddeab dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42730d15 snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4815c0c8 snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a7041da snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4dec9111 dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x50071a2f snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x50403902 snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x535164bc snd_soc_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5352a535 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54f77a11 snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x553d4a8a snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x571ea01c snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57e755ef snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a3c7b30 snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b5e5808 snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5eeb6625 snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f19df28 snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6034efdb snd_soc_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x610a3887 snd_soc_remove_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61695cf5 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63472c6c snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63b798f0 snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63ff469c snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65d50166 snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6609c651 snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67ab589e snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a54e671 snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6de4b796 snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f78b00f snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x702ae973 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x703c480e snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72641895 snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73db3267 snd_soc_add_platform_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x742c0f42 snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7532e684 snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x758d6119 snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79c22d88 snd_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a77420e snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b2d7b98 snd_soc_dpcm_be_set_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7cbca332 snd_soc_new_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7cf75ddf snd_soc_platform_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e56bc07 snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f84864c snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x888feaef snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89ea0e9f snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9079907a dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x910c1225 snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9245a22a snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92ba2f20 snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x933aef55 snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9373d384 snd_soc_add_codec_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x93749be3 snd_soc_free_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94bf5545 snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x971211ac snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9730c399 snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9972943e snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x999938ad soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9dae49aa snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0dc3174 snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa48c8c94 snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa49e0936 snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa49f8b8a snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8836fc6 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9d8865f snd_soc_of_parse_audio_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa5a71a2 snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xabb4cf18 snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac768510 snd_soc_unregister_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad09ab90 snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad6a96ed snd_soc_platform_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae2a4db8 snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaef8b468 snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0df942c dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb36b934b snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb63b1569 snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7a384df snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba7491b4 snd_soc_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf13b824 snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc03d3ea2 snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0c4f377 snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0d75c8d snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc18227da snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc35d88f5 snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4ed8a79 devm_snd_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4f11bac snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc53afbc1 snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5ce10e9 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc769c4ca snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc815319c snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8ffe68f snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc932983a snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca759eff snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd5a318b snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd43ff32b snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd707db04 snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9f2f54a snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdeab329c snd_soc_add_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2224a90 snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2e5f549 snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3669910 snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3ae3c46 snd_soc_unregister_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4b62124 devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe500f8ac snd_soc_lookup_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe623879c snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6f7e6b6 snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe796e6a4 snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8975671 snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xead3193f snd_soc_get_dai_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed7cc433 snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee13d611 snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeec15dc9 snd_soc_codec_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1e108a4 snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf398cad7 snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf815d80f snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf89f9f70 snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9fa741f devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa04b187 snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa6ce21d snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd8a7523 snd_soc_register_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfdb86373 dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfdc1ec4f snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff0d74ae snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfff0498f snd_soc_of_parse_daifmt -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1a527f4f line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3e36f4f6 line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4aa7ca1a line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x58f4fb37 line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5e4857d8 line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x62a1f1f7 line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x664d914c line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x86a51642 line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x87cea8f6 line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8e8e58f0 line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x934d5ad0 line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xab1fce07 line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xae77e261 line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbe0a0fc7 line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd25c36f8 line6_pcm_release -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x3fe35aea irq_bypass_unregister_consumer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x418873cc irq_bypass_register_producer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x888c5be5 irq_bypass_register_consumer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0xf6e772c3 irq_bypass_unregister_producer -EXPORT_SYMBOL_GPL vmlinux 0x000af8b6 usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x000cf2f3 tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0x00200263 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x0071cf54 scom_find_parent -EXPORT_SYMBOL_GPL vmlinux 0x007e6f10 mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0x00952947 aead_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0x00955fe3 wm8400_block_read -EXPORT_SYMBOL_GPL vmlinux 0x009b3c43 adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0x00a923f7 ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0x00bb4f67 led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0x00d71476 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before -EXPORT_SYMBOL_GPL vmlinux 0x0106b4c8 devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish -EXPORT_SYMBOL_GPL vmlinux 0x012fab96 ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x013a56f9 uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x017993a5 subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x01840c5d rtc_irq_set_state -EXPORT_SYMBOL_GPL vmlinux 0x0194539a pwm_disable -EXPORT_SYMBOL_GPL vmlinux 0x019be4d0 sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0x01c9018e ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x01cf087f add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x01d98e46 device_create_file -EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01e35aba put_device -EXPORT_SYMBOL_GPL vmlinux 0x01e8fe18 pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0x01ea2188 __blkdev_driver_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x021ebfda btree_update -EXPORT_SYMBOL_GPL vmlinux 0x0224e2a1 spu_init_channels -EXPORT_SYMBOL_GPL vmlinux 0x024dae5b cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x026211e2 memory_failure_queue -EXPORT_SYMBOL_GPL vmlinux 0x02653643 do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x0268cbd4 ping_err -EXPORT_SYMBOL_GPL vmlinux 0x026e2727 securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x02889b19 fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0x02ad4f7a of_get_display_timings -EXPORT_SYMBOL_GPL vmlinux 0x02b4c46e __inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0x02c5549e pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0x02e39b22 usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x0300d111 rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0x031f96da regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0x0320cd6f thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id -EXPORT_SYMBOL_GPL vmlinux 0x03301497 dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x039428f6 rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0x039cc1ed to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0x03a9b002 srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x03cfd6f3 nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x03e2e9aa ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode -EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x041b0ca2 crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x0435e97e rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x043b935f __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x04670ca0 i2c_new_probed_device -EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x049563d2 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0x04b5549c __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x05043b97 hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0x051c7da2 usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0x053494cb tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0x0537cbb5 driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0x053b8b51 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0x053f045b crypto_alloc_ablkcipher -EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x054f9f45 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0x0557d5fb ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0x05ad1f1e uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x061dee59 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x0642ad1f regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x065ca716 device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0x066e7fc0 of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0x06723909 class_destroy -EXPORT_SYMBOL_GPL vmlinux 0x067c1c4c fat_attach -EXPORT_SYMBOL_GPL vmlinux 0x06ad9c7a blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0x06b13343 rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0x06f56a39 xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0x070ca18f devres_remove -EXPORT_SYMBOL_GPL vmlinux 0x073cc058 rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x0749ae4d shash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x074c71aa led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x0768c690 edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x077501e9 crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x077eedf8 __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x07976d17 sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0x079b1e88 usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0x079fbd2b ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0x07b17306 sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char -EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07cc0d7d gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0x07dff8be dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0x07e14a47 sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0x07f5cec5 of_fdt_unflatten_tree -EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0x083396ab ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0x084c88cc devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x085608df sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x08937902 ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0x08b8a91f debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec -EXPORT_SYMBOL_GPL vmlinux 0x08c48f34 proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0x08cb5e1d file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x08d91c22 mm_iommu_put -EXPORT_SYMBOL_GPL vmlinux 0x08d98e89 transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x08eb3f7c dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0x08eca3cd tpm2_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x08fd7415 spu_get_profile_private_kref -EXPORT_SYMBOL_GPL vmlinux 0x0907e29c ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0x0908434a tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x091c824a machine_power_off -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x09436a15 dummy_con -EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x09516ee5 xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x0957e448 ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0x09688494 cpu_add_dev_attr_group -EXPORT_SYMBOL_GPL vmlinux 0x09725a68 dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x09cda9e7 nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0x09eb8655 sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0x09edd247 fib_select_path -EXPORT_SYMBOL_GPL vmlinux 0x09f8b1df irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0x0a101cb9 call_filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0x0a3f64e5 devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x0a51ae5b virq_to_hw -EXPORT_SYMBOL_GPL vmlinux 0x0a637213 mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0x0aa086bb shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x0ac5d6c1 pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0x0ad8f774 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x0ada905e ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x0aeea6cf i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b19d2b2 get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0x0b2aa1c6 wm5102_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x0b3b938f pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x0b4cade0 __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x0b590829 kvmppc_do_h_remove -EXPORT_SYMBOL_GPL vmlinux 0x0b62a0d0 rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x0b746edc __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0b76533d nvdimm_bus_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x0b85e314 virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0x0bd6eaa2 regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0x0bf653bd ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0bff8a64 wm5110_patch -EXPORT_SYMBOL_GPL vmlinux 0x0c02ffee tcp_peer_is_proven -EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0c0eeb35 pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x0c1d6466 crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0x0c263694 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x0c32c23c bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x0c37bfb3 tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0x0c47d282 of_get_nand_ecc_mode -EXPORT_SYMBOL_GPL vmlinux 0x0c4e6e38 devm_usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x0c52e1b3 usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0x0c5460f3 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x0c5eb97e regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x0c8c30b8 tpm2_startup -EXPORT_SYMBOL_GPL vmlinux 0x0caf75d9 opal_flash_erase -EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x0ccffed4 regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0ce3ee5a mmu_kernel_ssize -EXPORT_SYMBOL_GPL vmlinux 0x0d0917cd class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0d199aab device_show_int -EXPORT_SYMBOL_GPL vmlinux 0x0d2df307 __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0x0d4398b2 tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0x0d48352f crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d73a952 GregorianDay -EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x0d8c3dec fuse_request_send_background -EXPORT_SYMBOL_GPL vmlinux 0x0d8d3384 reservation_object_test_signaled_rcu -EXPORT_SYMBOL_GPL vmlinux 0x0db10dab usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x0dd7b7b9 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0de06988 cpu_first_thread_of_core -EXPORT_SYMBOL_GPL vmlinux 0x0de87e97 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0df4cd19 ps3_sys_manager_register_ops -EXPORT_SYMBOL_GPL vmlinux 0x0dff6c08 rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x0e4994b6 ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0x0e9dc06c usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x0ea41f64 pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x0eb616a1 regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x0eb64069 irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0x0ecf823a static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x0ef8a8d8 spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0x0f012044 __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x0f1d791d mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0x0f273eb5 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0x0f312e86 cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x0f32fc82 _submit_bh -EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x0f55de3c spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0x0f6893c4 sysfs_add_device_to_node -EXPORT_SYMBOL_GPL vmlinux 0x0f69c929 srp_release_transport -EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0x0f9fc058 blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x0fc4de83 blkcipher_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x0fe3abb2 device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x0ff9d1f9 pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0x100eb06e pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x101f6ab6 pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x102c0dd5 ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x104d52fe crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0x10638ebb dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0x10903006 iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0x10a1e81c device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0x10af6c3d usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0x10b6790b devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x10bc2601 l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0x10c45b0d regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0x10c57119 class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x10c600a8 regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x10dc7b1a regmap_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x11073dd6 rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0x1108e17f pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0x110d2d46 ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0x1114011d threads_shift -EXPORT_SYMBOL_GPL vmlinux 0x1136ebce tc3589x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x113ce651 seq_release_net -EXPORT_SYMBOL_GPL vmlinux 0x114175c3 aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0x11646c21 iommu_del_device -EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0x117c7305 hwpoison_filter_dev_major -EXPORT_SYMBOL_GPL vmlinux 0x118744a2 blk_mq_request_started -EXPORT_SYMBOL_GPL vmlinux 0x118fb40d bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0x11ac5b54 default_iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0x11b025bd usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x11b9482e sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x11ccfa7f pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x11d9b7e1 phy_init -EXPORT_SYMBOL_GPL vmlinux 0x11f719bf tps65912_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x120d2241 extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0x12102cdb usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x125b6d78 to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x126ebea5 rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0x12a82bf8 regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x12e8888d sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x13185afd use_mm -EXPORT_SYMBOL_GPL vmlinux 0x131a3b7c da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x1326949b dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x132a4745 irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x1332fdd3 register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0x1333d8b3 ps3av_video_mode2res -EXPORT_SYMBOL_GPL vmlinux 0x133c3557 wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0x133ee511 xhci_run -EXPORT_SYMBOL_GPL vmlinux 0x135a76af mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x136a4ee6 btree_init -EXPORT_SYMBOL_GPL vmlinux 0x1381c7d0 phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1394ff65 __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0x13a7f2e0 crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen -EXPORT_SYMBOL_GPL vmlinux 0x13adea7d rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x13c231b9 rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0x13d30a77 sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x13e5b7de crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x13e5ea13 __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0x1412b053 sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0x144ad8d7 ps3_system_bus_device_register -EXPORT_SYMBOL_GPL vmlinux 0x14663df6 ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x14698b15 usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x14879f0c regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x148a822f devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x14aa9d6a __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x14aff5af attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0x14bc6405 devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x14c4f0fe rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x14e920d7 __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x14feafe6 sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0x15091a23 __remove_pages -EXPORT_SYMBOL_GPL vmlinux 0x150e7512 sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x1520393c platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0x152bb1e4 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x15328613 sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x1535b719 spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x1541a03e vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0x156641e6 arizona_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x158c4168 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x15b8b44d opal_async_wait_response -EXPORT_SYMBOL_GPL vmlinux 0x15c21e5e nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x15c3d907 crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0x15e4c2e2 device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0x15e5d919 pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started -EXPORT_SYMBOL_GPL vmlinux 0x15f2ab83 regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x164b8899 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress -EXPORT_SYMBOL_GPL vmlinux 0x168aa6f5 srp_attach_transport -EXPORT_SYMBOL_GPL vmlinux 0x168c2554 virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x168d7ed2 ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x16997337 tps65217_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x169ad2e5 split_page -EXPORT_SYMBOL_GPL vmlinux 0x16a4cafe usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x16ce43f2 __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x16e1f8ee pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0x16f5e791 led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0x1731b9d4 tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0x1733e2d5 ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0x173ff53a aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x174dd146 devm_regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x17655ffd fuse_request_send -EXPORT_SYMBOL_GPL vmlinux 0x176e8eac pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x177620f7 sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x178a738d blkdev_read_iter -EXPORT_SYMBOL_GPL vmlinux 0x178a99c8 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online -EXPORT_SYMBOL_GPL vmlinux 0x17a2f8c9 tc3589x_block_read -EXPORT_SYMBOL_GPL vmlinux 0x17c2f576 irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x17c3caa4 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x17dde622 blocking_notifier_chain_cond_register -EXPORT_SYMBOL_GPL vmlinux 0x18039e9c crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x181f95df ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0x1829b9ed hwpoison_filter_memcg -EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x18570516 pmac_i2c_xfer -EXPORT_SYMBOL_GPL vmlinux 0x185c57f9 of_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x186a9a40 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert -EXPORT_SYMBOL_GPL vmlinux 0x188a0bf4 __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x189f874d powernv_get_random_long -EXPORT_SYMBOL_GPL vmlinux 0x18af62ea da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x18ed922f irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x18f221a3 pmac_low_i2c_unlock -EXPORT_SYMBOL_GPL vmlinux 0x19119803 __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x193067e8 gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0x1931b358 devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0x193d38ac pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x1944cff0 spi_alloc_master -EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x196756fc phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x19a0b7cc ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0x19a0ba8a driver_register -EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19a9452e spu_remove_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0x19bb71e1 dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0x19cf097e iommu_domain_window_enable -EXPORT_SYMBOL_GPL vmlinux 0x19e41a87 of_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x19e44df1 devm_power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x19e49149 ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x1a0464cd to_nd_blk_region -EXPORT_SYMBOL_GPL vmlinux 0x1a4f8b62 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0x1a632711 arizona_dev_exit -EXPORT_SYMBOL_GPL vmlinux 0x1a66a86a hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x1a8c5907 btree_insert -EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table -EXPORT_SYMBOL_GPL vmlinux 0x1a9df3ed ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0x1ac717e3 ps3_os_area_get_rtc_diff -EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing -EXPORT_SYMBOL_GPL vmlinux 0x1aedcda0 bio_alloc_mddev -EXPORT_SYMBOL_GPL vmlinux 0x1b55f451 nd_region_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x1b596990 pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x1b6a967c crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x1b89252e dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x1b9664d1 __destroy_context -EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return -EXPORT_SYMBOL_GPL vmlinux 0x1b9ff3b5 blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x1be0d17d rtc_irq_register -EXPORT_SYMBOL_GPL vmlinux 0x1be2200b ps3_vuart_clear_rx_bytes -EXPORT_SYMBOL_GPL vmlinux 0x1be664dc get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0x1c088edb task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0x1c222294 wm8997_patch -EXPORT_SYMBOL_GPL vmlinux 0x1c2ad10a srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x1c3189be platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c67f56b __percpu_ida_init -EXPORT_SYMBOL_GPL vmlinux 0x1c7df74c kvm_hv_vm_activated -EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 -EXPORT_SYMBOL_GPL vmlinux 0x1c86f015 devres_release -EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1ca6f74f serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x1cbe19d7 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0x1ccdfb37 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0x1cdb2147 zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0x1ce260d5 pcibios_claim_one_bus -EXPORT_SYMBOL_GPL vmlinux 0x1ce5402d srp_stop_rport_timers -EXPORT_SYMBOL_GPL vmlinux 0x1cf82066 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x1cfb40e3 rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x1d1ac69a mnt_clone_write -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d2876e7 spi_unregister_master -EXPORT_SYMBOL_GPL vmlinux 0x1d3e2385 blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0x1d3f3056 blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0x1d45aa4d blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0x1d49eab6 cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings -EXPORT_SYMBOL_GPL vmlinux 0x1d652735 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x1d6a0972 devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x1d878fde crypto_attr_alg2 -EXPORT_SYMBOL_GPL vmlinux 0x1da48e8e devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0x1da8557b __nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0x1dfbcf4c mpic_msgr_disable -EXPORT_SYMBOL_GPL vmlinux 0x1e000879 hwpoison_filter_enable -EXPORT_SYMBOL_GPL vmlinux 0x1e0c502f rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0x1e271966 disk_part_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x1e326752 devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1e3e6835 gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0x1e58373b regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1e5bc1ff pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1ea17021 sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebac2bd getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ec42d58 xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0x1ecc368a cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x1ed72fcf subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x1edaa39f debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x1edc21cb hwpoison_filter_flags_mask -EXPORT_SYMBOL_GPL vmlinux 0x1ef18760 __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0x1ef5028f pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x1ef9cd27 rio_request_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x1f1988f7 hwpoison_filter_flags_value -EXPORT_SYMBOL_GPL vmlinux 0x1f5113b9 pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x1f52cfd6 of_platform_default_populate -EXPORT_SYMBOL_GPL vmlinux 0x1f53a832 sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x1f7eddc5 blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x1fdff711 virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0x1fe970cb ps3_io_irq_setup -EXPORT_SYMBOL_GPL vmlinux 0x1fecd134 wm8400_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x1fff610e n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0x20010e3f percpu_up_read -EXPORT_SYMBOL_GPL vmlinux 0x200bf021 regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x20279d47 ps3_vuart_write -EXPORT_SYMBOL_GPL vmlinux 0x2041e0cc usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x2050f6a0 device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0x20b99d62 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0x20e009c2 fat_scan -EXPORT_SYMBOL_GPL vmlinux 0x20e267ca skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0x2108e9a6 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x211850f5 htab_hash_mask -EXPORT_SYMBOL_GPL vmlinux 0x211dd986 wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0x2154770a usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0x216279b2 srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x2180b430 rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x218dd85a __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x21a9c692 usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x21ab1536 security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0x21abea53 usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21fff805 kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0x22082b3b regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0x22210e90 agp_remove_bridge -EXPORT_SYMBOL_GPL vmlinux 0x22690ed2 inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0x226916bd usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 -EXPORT_SYMBOL_GPL vmlinux 0x22d644f4 ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0x22e674b0 platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x22ffa8d3 usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x2303bee8 usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0x2317d674 key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0x2323acb5 tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0x235af890 ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0x235b0a22 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0x2364b465 spu_add_dev_attr_group -EXPORT_SYMBOL_GPL vmlinux 0x2373cd6d skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0x238004a1 blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x2392e3b7 ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x2397015b ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0x23e16bb9 md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0x23f0d4a9 trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x24011e14 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0x24399fb3 set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x243a8f60 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0x2461c814 dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2487a5b4 wakeup_source_drop -EXPORT_SYMBOL_GPL vmlinux 0x248bf40e ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key -EXPORT_SYMBOL_GPL vmlinux 0x24ad42cd ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0x24ba1902 cpufreq_frequency_table_cpuinfo -EXPORT_SYMBOL_GPL vmlinux 0x24c51600 inet_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0x24d4909d dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x24e1c3a9 ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0x24e1f328 pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset -EXPORT_SYMBOL_GPL vmlinux 0x24fd259f kvmppc_clear_ref_hpte -EXPORT_SYMBOL_GPL vmlinux 0x25153a61 kthread_park -EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x2522dbf5 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0x2528c21e fuse_put_request -EXPORT_SYMBOL_GPL vmlinux 0x253771fa iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0x2540471c reservation_object_get_fences_rcu -EXPORT_SYMBOL_GPL vmlinux 0x25423baa sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x25757062 irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0x25846e4a usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0x25a6186e regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x25c85726 driver_find -EXPORT_SYMBOL_GPL vmlinux 0x25d271f6 pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x25daa510 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0x26030384 bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x261a6380 netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0x262ca8e9 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock -EXPORT_SYMBOL_GPL vmlinux 0x263d0a35 do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0x264bbca7 __rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x2675980a skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x26766a40 ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0x26ad021d inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x26b4ae85 rtc_irq_unregister -EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26da54b9 __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x26f4f35b platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x270451e6 regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0x2725f256 hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2738b578 usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0x2754a2c8 blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x276b831a gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x2774ac42 dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0x277b3398 iommu_map -EXPORT_SYMBOL_GPL vmlinux 0x27a49f8c scsi_internal_device_block -EXPORT_SYMBOL_GPL vmlinux 0x27a57b04 sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x27b68a35 smpboot_register_percpu_thread_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x27c0c4be eventfd_ctx_read -EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info -EXPORT_SYMBOL_GPL vmlinux 0x27e54d6d of_node_to_nid -EXPORT_SYMBOL_GPL vmlinux 0x27e7695e regmap_fields_write -EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27f5a38c pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x282144df save_stack_trace_tsk -EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x283ee8c7 regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0x287c4f31 reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x2886ca78 fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0x2899d782 reservation_object_wait_timeout_rcu -EXPORT_SYMBOL_GPL vmlinux 0x28a8f246 gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x28b33f48 rhashtable_insert_rehash -EXPORT_SYMBOL_GPL vmlinux 0x28bcab9f blkg_stat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x28e3e58c debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x28e5549c fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0x28f17795 vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0x28f9823d tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0x28ff99a9 opal_prd_msg -EXPORT_SYMBOL_GPL vmlinux 0x2904cce3 gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0x290529d1 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x29226a21 device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x293c2ed5 subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0x2969363d shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0x29714add inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0x29994c7a get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x29ab6893 debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x29bc043d regmap_update_bits_check -EXPORT_SYMBOL_GPL vmlinux 0x29c6bc41 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x29de0b27 device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x2a1620de regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0x2a3ede27 regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2a5e10bd crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0x2a65e078 uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2ac4c308 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x2aee955f ip_tunnel_get_stats64 -EXPORT_SYMBOL_GPL vmlinux 0x2b116fc8 __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x2b1185bd ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x2b11934e debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0x2b4147ed kvmppc_hcall_impl_hv_realmode -EXPORT_SYMBOL_GPL vmlinux 0x2b4703c4 rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x2b5c303b smp_send_reschedule -EXPORT_SYMBOL_GPL vmlinux 0x2b662d86 dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0x2b6c234b debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0x2b78770a regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x2b99c60c ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x2b9a61c3 inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x2bb4c28d splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0x2bd8fc02 sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0x2be68821 usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x2be9f29e rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc -EXPORT_SYMBOL_GPL vmlinux 0x2bfbf0fc __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c281fd0 arizona_of_get_type -EXPORT_SYMBOL_GPL vmlinux 0x2c29d18c fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c469751 of_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x2c470491 max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c827a30 mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0x2c84c96a usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2cbedfbc pmf_find_function -EXPORT_SYMBOL_GPL vmlinux 0x2cc3e675 pmac_i2c_close -EXPORT_SYMBOL_GPL vmlinux 0x2cd0b218 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x2cd88f51 kvm_hv_vm_deactivated -EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq -EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d419417 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d5299c6 unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers -EXPORT_SYMBOL_GPL vmlinux 0x2d5b6fa0 debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x2da2772e __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x2dc16a3d device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x2dc5a6d1 btree_last -EXPORT_SYMBOL_GPL vmlinux 0x2de7150a blkg_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x2e0e6ced spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0x2e0eff67 cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0x2e110b90 generic_access_phys -EXPORT_SYMBOL_GPL vmlinux 0x2e18e9d0 pmf_put_function -EXPORT_SYMBOL_GPL vmlinux 0x2e1da9fb probe_kernel_read -EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e2bae03 rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2e32c96d component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0x2e3acf49 regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x2e496ee8 dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0x2e5c3cd3 securityfs_create_dentry -EXPORT_SYMBOL_GPL vmlinux 0x2e6cd66d ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0x2e719226 usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x2e79f414 ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0x2e81a7bc mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0x2e89f38c each_symbol_section -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ec29f4d __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x2eef1fa2 __netpoll_free_async -EXPORT_SYMBOL_GPL vmlinux 0x2ef9d1e0 ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0x2efa62b3 regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x2f049e09 pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x2f05c659 regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f1959ee fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0x2f1ae893 mpc8xxx_spi_rx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x2f2e455f firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0x2f338058 ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register -EXPORT_SYMBOL_GPL vmlinux 0x2f47dfc4 max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0x2f511bb6 ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x2f59d7d7 extcon_get_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0x2f628710 tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x2f95e6e4 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x2fa75daf force_sig_info -EXPORT_SYMBOL_GPL vmlinux 0x2fd24173 sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0x2fd476d8 rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake -EXPORT_SYMBOL_GPL vmlinux 0x2fda74b9 exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0x2fe9f423 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0x2fecf17c ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x2fef0a91 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x2ffb5ff7 btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0x30003cf8 devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x30014cfa gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0x300c0fc2 ping_seq_fops -EXPORT_SYMBOL_GPL vmlinux 0x301018a1 crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0x301832fb opal_async_get_token_interruptible -EXPORT_SYMBOL_GPL vmlinux 0x302d8d6b bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x3032d3e1 tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0x303a7694 rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x3048e1ec sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0x30596490 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x30679469 bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0x3075cc67 devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock -EXPORT_SYMBOL_GPL vmlinux 0x311b78c2 ps3_get_spe_id -EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x31288373 list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0x312dc17b led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0x3130d6a0 crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0x3157f6ef user_read -EXPORT_SYMBOL_GPL vmlinux 0x315d50d2 device_move -EXPORT_SYMBOL_GPL vmlinux 0x315e2cd6 page_endio -EXPORT_SYMBOL_GPL vmlinux 0x31678d3d user_describe -EXPORT_SYMBOL_GPL vmlinux 0x316f0e37 __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0x319c4d7e devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x31bef441 opal_i2c_request -EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put -EXPORT_SYMBOL_GPL vmlinux 0x31c4a7fe perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0x31c53094 irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31d6b455 extcon_set_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0x31e315a4 pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x320e724b spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0x32169a9a srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval -EXPORT_SYMBOL_GPL vmlinux 0x322f0fcb wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x323a99e5 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x325fe94b scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update -EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec -EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32fe77d3 __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x3309ea64 ps3av_audio_mute -EXPORT_SYMBOL_GPL vmlinux 0x3329f8f2 pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x332b098b kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0x33398de6 mmu_psize_defs -EXPORT_SYMBOL_GPL vmlinux 0x334313bd ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0x334ace25 device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition -EXPORT_SYMBOL_GPL vmlinux 0x33751a5a sched_setattr -EXPORT_SYMBOL_GPL vmlinux 0x337786fa usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x338aed54 pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0x33904575 setup_irq -EXPORT_SYMBOL_GPL vmlinux 0x339cad4a crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0x33b23d3b subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x33ba1762 trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x33c77089 dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0x33f088e6 pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x340bd620 device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x340c4149 serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x342238f0 mm_iommu_get -EXPORT_SYMBOL_GPL vmlinux 0x3426fe72 ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0x34298625 kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get -EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0x34a8da5f __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x34ac9922 crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0x34af0adf opal_ipmi_send -EXPORT_SYMBOL_GPL vmlinux 0x34b0e6a9 device_register -EXPORT_SYMBOL_GPL vmlinux 0x34eed6a8 usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x34f32e78 subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0x34f84a23 nd_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x34fecbda usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched -EXPORT_SYMBOL_GPL vmlinux 0x35296c1b shmem_get_seals -EXPORT_SYMBOL_GPL vmlinux 0x3567e8e3 regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0x356c4be2 ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0x357921e1 attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0x358bf179 syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x3595756b ata_eh_thaw_port -EXPORT_SYMBOL_GPL vmlinux 0x35bf2acd nd_fletcher64 -EXPORT_SYMBOL_GPL vmlinux 0x35c9317d rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x36165a3a crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x361ecb61 root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x362a11b0 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x3643683c device_add_property_set -EXPORT_SYMBOL_GPL vmlinux 0x36553c49 kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0x36584580 hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0x366d91ab anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x368f1fea static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x36904784 usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0x369a8a9e debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36a1793d sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x36cc0694 ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x37275eb1 mmu_notifier_unregister_no_release -EXPORT_SYMBOL_GPL vmlinux 0x37346c61 fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0x37435111 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x377000dd usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0x377c9adf ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x377f4c56 gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x378b0a33 iommu_add_device -EXPORT_SYMBOL_GPL vmlinux 0x378b8a5b power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0x37aaf91a ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x37ab8106 securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x37dba11b smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x37e4eb8e crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x37ef4a9d __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x37f9241b da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0x3807022a __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x381b9c4b vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0x383761a2 cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0x38399220 extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x383dd7d0 ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0x3860ab9d bus_find_device_by_name -EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy -EXPORT_SYMBOL_GPL vmlinux 0x388fd40c wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x38ab32e7 pnv_get_supported_cpuidle_states -EXPORT_SYMBOL_GPL vmlinux 0x38bfc857 crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x38c5b30e xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x38e7cc79 ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0x38e92a0c gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0x38f6a52d i2c_lock_adapter -EXPORT_SYMBOL_GPL vmlinux 0x38f9b164 sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0x390975ef register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x391577f0 i2c_new_device -EXPORT_SYMBOL_GPL vmlinux 0x391a6c11 ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0x392fe739 look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0x393d56e0 spu_management_ops -EXPORT_SYMBOL_GPL vmlinux 0x39455961 arizona_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x394c516e pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x39597d25 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x3987bd37 hash_page_mm -EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current -EXPORT_SYMBOL_GPL vmlinux 0x39db1b2f __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module -EXPORT_SYMBOL_GPL vmlinux 0x39ec4da4 fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0x39ef3d82 crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0x39f61c73 acop_handle_fault -EXPORT_SYMBOL_GPL vmlinux 0x3a09cd1b spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x3a105f58 input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0x3a38dc65 memory_failure -EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a609ad2 device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x3a7d0a72 nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3aae54cc regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3ad0e201 scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x3ae2c917 spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x3ae5051c regmap_update_bits_check_async -EXPORT_SYMBOL_GPL vmlinux 0x3aff0f56 unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0x3b01948e wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x3b1283b6 sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0x3b1c5afc ps3_vuart_irq_setup -EXPORT_SYMBOL_GPL vmlinux 0x3b59dcd0 regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0x3b75faea sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0x3b7e177e udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3b8bd49c ping_hash -EXPORT_SYMBOL_GPL vmlinux 0x3b92b1eb tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x3b993167 trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x3bc0f2ac bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0x3bc4c973 pci_try_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x3bc57d8e of_mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x3c25737f devres_add -EXPORT_SYMBOL_GPL vmlinux 0x3c264a3a __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0x3c51ea7c opal_leds_get_ind -EXPORT_SYMBOL_GPL vmlinux 0x3c625626 relay_close -EXPORT_SYMBOL_GPL vmlinux 0x3c634bce find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0x3c687c2f inet_csk_compat_getsockopt -EXPORT_SYMBOL_GPL vmlinux 0x3c7a8d48 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag -EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3ce158c3 phy_put -EXPORT_SYMBOL_GPL vmlinux 0x3ce5978e pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0x3cf69baf slice_get_unmapped_area -EXPORT_SYMBOL_GPL vmlinux 0x3d250ceb gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d3fda42 pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0x3d5837c9 pwm_config -EXPORT_SYMBOL_GPL vmlinux 0x3d612305 iommu_direction_to_tce_perm -EXPORT_SYMBOL_GPL vmlinux 0x3d7e1a35 __sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x3da67a23 fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match -EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab -EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3de76a77 devm_regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3dfc436e percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x3e04f946 dbs_check_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3e0a7507 skcipher_geniv_init -EXPORT_SYMBOL_GPL vmlinux 0x3e167c32 mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x3e289cd0 dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0x3e334691 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x3e50776a __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched -EXPORT_SYMBOL_GPL vmlinux 0x3e662a37 gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x3e66e19b crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0x3e67c9be l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e7fff83 regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x3e824eef of_pci_msi_chip_add -EXPORT_SYMBOL_GPL vmlinux 0x3e881e1e unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0x3eb947f7 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x3ef2531e devm_led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0x3f165e81 crypto_ahash_type -EXPORT_SYMBOL_GPL vmlinux 0x3f1cb321 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0x3f1e75c0 irq_domain_add_simple -EXPORT_SYMBOL_GPL vmlinux 0x3f9a2094 of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0x3faf34ab led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0x3faf5bce platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0x3fb14423 md_ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x3fc57c27 rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x3fe950bd bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0x3fef7431 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x40032da3 device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x400d8682 blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x403f1e7e __put_net -EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0x4046b943 __online_page_increment_counters -EXPORT_SYMBOL_GPL vmlinux 0x405d9d30 ahash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources -EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x409673af irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0x40a5cc84 da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x40b78c5e bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0x40bd5f1d gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x40c18f80 iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x40d96cf7 napi_hash_del -EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x40f0fc6c devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x410e299d devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x41351cd5 rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0x413a8883 md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4159309e __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x41a5a96a pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0x41cf9876 regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x41d0db3b pci_reset_pri -EXPORT_SYMBOL_GPL vmlinux 0x4205bca7 wakeup_source_prepare -EXPORT_SYMBOL_GPL vmlinux 0x420e9786 trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0x42149076 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done -EXPORT_SYMBOL_GPL vmlinux 0x42550d10 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags -EXPORT_SYMBOL_GPL vmlinux 0x426e3961 led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0x427de547 pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x42ae3145 device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x42b0eb1b device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x42e0ba58 gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x431d0e19 ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x432702e6 mm_iommu_mapped_inc -EXPORT_SYMBOL_GPL vmlinux 0x432968a5 crypto_givcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x434e602d shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0x43521f1b xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0x435863f6 tc3589x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x4380e10a module_mutex -EXPORT_SYMBOL_GPL vmlinux 0x439a5faf skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key -EXPORT_SYMBOL_GPL vmlinux 0x43aae30a rt_mutex_destroy -EXPORT_SYMBOL_GPL vmlinux 0x43ad44fc eeh_pe_configure -EXPORT_SYMBOL_GPL vmlinux 0x43bbc566 rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x43d8c96f ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift -EXPORT_SYMBOL_GPL vmlinux 0x4401bd98 param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x440f33ec irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x440fc5c1 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0x4414d848 blk_set_queue_dying -EXPORT_SYMBOL_GPL vmlinux 0x442a558d usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0x443194ea vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0x443c4315 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0x444d562f led_init_core -EXPORT_SYMBOL_GPL vmlinux 0x4463c958 led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0x446e3c47 __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x448373e7 dma_request_slave_channel_reason -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x448a6f47 debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x448ef495 iommu_domain_set_attr -EXPORT_SYMBOL_GPL vmlinux 0x44a89fdf watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44d11453 devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x44fa032f handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x44fcc796 swiotlb_tbl_map_single -EXPORT_SYMBOL_GPL vmlinux 0x450a1555 copro_flush_all_slbs -EXPORT_SYMBOL_GPL vmlinux 0x450fb522 kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x4514b93b __rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0x4520af37 usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x453725bf devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0x4543a635 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0x45515dce trace_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0x4556b0ab tps65912_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x455f9440 fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0x456d9b1a device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x457fc24d flush_altivec_to_thread -EXPORT_SYMBOL_GPL vmlinux 0x458eaa2f call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x459322b1 percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0x45b71de9 gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x45d3322b serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0x45ee7712 sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0x45efd85a sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x461b11cb wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x464664b5 kick_process -EXPORT_SYMBOL_GPL vmlinux 0x46883709 cpu_add_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0x4688a625 iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4688c96a usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4696072b usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x469f07d0 list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0x46d9f955 ps3_irq_plug_setup -EXPORT_SYMBOL_GPL vmlinux 0x46dd5ff2 tps65912_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x46ecc976 devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0x46fd96ee __module_address -EXPORT_SYMBOL_GPL vmlinux 0x471773a3 flush_fp_to_thread -EXPORT_SYMBOL_GPL vmlinux 0x4717f580 rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0x471bd7f2 ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x4734ad69 pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0x4735a00e page_cache_sync_readahead -EXPORT_SYMBOL_GPL vmlinux 0x4741db42 ps3av_set_audio_mode -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x476f4ca6 scsi_device_from_queue -EXPORT_SYMBOL_GPL vmlinux 0x477e5278 virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47acddea ps3_sys_manager_set_wol -EXPORT_SYMBOL_GPL vmlinux 0x47c4f7fc nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0x47e16a77 regmap_read -EXPORT_SYMBOL_GPL vmlinux 0x4812608a wm5102_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x484124dc pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0x48550d5d modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x4858ca5f pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh -EXPORT_SYMBOL_GPL vmlinux 0x487512f9 disk_map_sector_rcu -EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0x49002047 pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0x491553e3 dm_get_rq_mapinfo -EXPORT_SYMBOL_GPL vmlinux 0x491f8df5 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0x49363478 crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0x495e1088 ps3_system_bus_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x4969ba5c of_alias_get_id -EXPORT_SYMBOL_GPL vmlinux 0x49738570 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x49b7c1f4 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0x49c69abc tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0x49d797d7 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49fee2ff phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0x4a026413 mm_iommu_mapped_dec -EXPORT_SYMBOL_GPL vmlinux 0x4a1d0271 scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x4a2bf39a __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0x4a3d3943 power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0x4a43e119 smpboot_update_cpumask_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name -EXPORT_SYMBOL_GPL vmlinux 0x4a643fcf ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0x4a89495c of_pci_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x4a90160e bprintf -EXPORT_SYMBOL_GPL vmlinux 0x4aac997d ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0x4ab9e344 ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0x4ae8c705 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x4b102376 rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0x4b122c1c crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x4b19f72d of_regulator_match -EXPORT_SYMBOL_GPL vmlinux 0x4b217ac9 ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x4b46c578 get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0x4b6ae24e skcipher_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4b78bdca pmac_i2c_get_controller -EXPORT_SYMBOL_GPL vmlinux 0x4b88584c ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x4bb32e83 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4bc76fb5 usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0x4bff5b8c blk_mq_free_hctx_request -EXPORT_SYMBOL_GPL vmlinux 0x4c18f773 ps3_os_area_set_rtc_diff -EXPORT_SYMBOL_GPL vmlinux 0x4c529f1c of_pci_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0x4c5c906d tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4c645f9e static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table -EXPORT_SYMBOL_GPL vmlinux 0x4c84b11b of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0x4c8ce114 pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0x4c8e4313 gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0x4ca91070 bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4ce036c5 da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x4cfa83c8 of_get_fb_videomode -EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d10b72d led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0x4d215d53 devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x4d2265bb pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x4d558c54 fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0x4d7c2fa9 stmpe_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d85392c fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0x4d909dfd pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x4db6d988 scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x4dc49f9b crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x4dd46159 pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4dee58b5 ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0x4df06017 devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0x4df3879e perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0x4e09be4d __securityfs_setup_d_inode -EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0x4e178490 md_run -EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path -EXPORT_SYMBOL_GPL vmlinux 0x4e354782 rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x4e484153 pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x4e5f3efa pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x4e6d4615 gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x4e812d59 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x4e9e546c dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x4eb5d51e crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4f05925c devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x4f0e0dae of_property_read_u32_index -EXPORT_SYMBOL_GPL vmlinux 0x4f103df9 unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x4f20b7af bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x4f29f80f devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0x4f52bc7e pwm_set_polarity -EXPORT_SYMBOL_GPL vmlinux 0x4f56f03b dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f88db2d xfrm_inner_extract_output -EXPORT_SYMBOL_GPL vmlinux 0x4f98d565 mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4f9dbaac dax_fault -EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x500a2868 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0x50176dc4 wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x50184112 transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x502632dc unregister_spu_syscalls -EXPORT_SYMBOL_GPL vmlinux 0x504575df scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0x50495ef7 fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0x5053c4ce crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x50565dae md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0x507596d8 hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x507ce3c6 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0x507de8c6 add_memory -EXPORT_SYMBOL_GPL vmlinux 0x50847aec fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test -EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x5091fe0c watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x50c1fd27 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x50cf991f cpufreq_frequency_table_target -EXPORT_SYMBOL_GPL vmlinux 0x50d7ed61 scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0x50dc6275 pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50f28799 rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x510e1c71 mm_iommu_lookup -EXPORT_SYMBOL_GPL vmlinux 0x513f1ce3 rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x514399b3 ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x51467922 alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x51475899 ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x515719d8 regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x515b2299 iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0x518d0cd4 dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0x5192efd0 debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0x51b65a26 rtc_lock -EXPORT_SYMBOL_GPL vmlinux 0x51b780db tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x51d95c44 fb_sys_write -EXPORT_SYMBOL_GPL vmlinux 0x51eb15f9 irq_create_direct_mapping -EXPORT_SYMBOL_GPL vmlinux 0x51f10349 regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x51fd5b5e dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0x5205e64d disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL vmlinux 0x521120b3 i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x522f538b tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x52365e02 usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0x523714ac crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x5246b1b1 of_get_nand_ecc_step_size -EXPORT_SYMBOL_GPL vmlinux 0x524c37fa gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0x524db980 tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x52c90d90 regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x52d685f4 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x52df73d6 ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x52f5f35f of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x530f92a3 od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x53106de9 blkg_print_stat_ios_recursive -EXPORT_SYMBOL_GPL vmlinux 0x531a6835 regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x531aedfd led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0x532926c9 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x5335dd11 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x534aa1ba tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x5350f7b4 trace_buffer_unlock_commit_regs -EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x53659ae8 ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0x538bee37 balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x539c7cd6 da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0x539ef4e6 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x539fe40c virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0x53dae8e3 pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x53f1ae42 irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x53f6829a iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x53f7e313 uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0x540b09cd __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 -EXPORT_SYMBOL_GPL vmlinux 0x5432ad11 pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x5434bf3f crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0x54606ef2 sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x546c5565 ppc_tb_freq -EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time -EXPORT_SYMBOL_GPL vmlinux 0x548d08df usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x54a10e44 ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x54b7f99e fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x54ba0e28 crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0x54e0f09a __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0x54e22174 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x5505873f class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x55238005 wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0x552778bc rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x5588879e kvmppc_entry_trampoline -EXPORT_SYMBOL_GPL vmlinux 0x55a77299 perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0x55a7a977 ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x55aaaf38 srp_rport_add -EXPORT_SYMBOL_GPL vmlinux 0x55d7ea2d pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x55dd4a1f bio_trim -EXPORT_SYMBOL_GPL vmlinux 0x55dd5013 sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x55f51ef3 alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x55f6d473 ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x560aa1db opal_tpo_write -EXPORT_SYMBOL_GPL vmlinux 0x561977cc scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0x562329ec regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x5629010e nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x562ac84c pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x56332e5f crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x5636c0e1 ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0x564bf711 i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x56567dc7 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen -EXPORT_SYMBOL_GPL vmlinux 0x5665ef68 mpic_subsys -EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map -EXPORT_SYMBOL_GPL vmlinux 0x568f1c75 usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0x56981d53 wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0x56a7ebec init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x56c86d30 bsg_request_fn -EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up -EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x56ecf007 balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x56ff85e4 flush_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0x57324da5 find_symbol -EXPORT_SYMBOL_GPL vmlinux 0x575c5f94 execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0x5764d984 ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x57836e9e ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x57847152 cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x578a9318 irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x57937c2a ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0x579c263b macio_find -EXPORT_SYMBOL_GPL vmlinux 0x579d7d3d regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57ad8466 usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x57bf2b1a __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x57c17c48 max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x57c265fa bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags -EXPORT_SYMBOL_GPL vmlinux 0x57db475e serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x57dbca80 sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x58110346 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x5820ab0a nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0x582b4f0e vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x585aac1e regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x585ed42f ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0x5862b9bf __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0x5865a77d of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x58720d2a extcon_set_cable_state -EXPORT_SYMBOL_GPL vmlinux 0x588671a0 platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0x5892f832 release_pmc_hardware -EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname -EXPORT_SYMBOL_GPL vmlinux 0x58aadb41 mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0x58b57079 devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x58e1eb8c __bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x58f5cf2a devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x58fb3bab of_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0x5911e1bb uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0x594eeb42 device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x597aeada rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0x59812cdd key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0x59882572 fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0x599e6cd2 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x59bf70ef usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x59c67df9 regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0x59d6e13a validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x59d9a453 regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x59e0b67e wm8998_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x59f3e20f scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x59f67efc of_get_pci_domain_nr -EXPORT_SYMBOL_GPL vmlinux 0x5a0050de preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5a19848b pcibios_find_pci_bus -EXPORT_SYMBOL_GPL vmlinux 0x5a22db2f kobject_move -EXPORT_SYMBOL_GPL vmlinux 0x5a25da02 task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x5a2c5c30 of_dma_xlate_by_chan_id -EXPORT_SYMBOL_GPL vmlinux 0x5a30682f inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0x5a4c4201 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0x5a58bd7e x509_request_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x5a5f43f9 ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq -EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a7c1cb4 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0x5a8d6453 __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0x5a9fa013 pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x5acc6615 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0x5ae675a9 ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x5af6c74f usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x5afedad8 led_trigger_show -EXPORT_SYMBOL_GPL vmlinux 0x5b33de93 usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x5b3a7425 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0x5b443491 kvmppc_h_put_tce -EXPORT_SYMBOL_GPL vmlinux 0x5b5583a8 led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5b994090 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x5baca650 pci_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x5bbce85b dio_end_io -EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5be75f6d tpm_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x5bf8edce power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0x5c012df0 gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x5c0440a8 irq_find_mapping -EXPORT_SYMBOL_GPL vmlinux 0x5c2b2236 phy_create -EXPORT_SYMBOL_GPL vmlinux 0x5c3c911b ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x5c3e67ff iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c759590 dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5cb9ec8f blk_queue_dma_drain -EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x5ccfa4d2 usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0x5cdbbb66 cpufreq_table_validate_and_show -EXPORT_SYMBOL_GPL vmlinux 0x5ce50a21 tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x5cf09352 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user -EXPORT_SYMBOL_GPL vmlinux 0x5d189cbc hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0x5d18b598 usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x5d223a7e ata_eh_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x5d5cd4f8 sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x5d77cc4a subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x5d7ede79 rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0x5d988a06 of_pci_msi_chip_remove -EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5db7ce29 sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0x5dc92174 request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0x5decfc62 fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0x5e0fc13e crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x5e23bd3e ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x5e2a7651 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0x5e438259 regmap_write -EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl -EXPORT_SYMBOL_GPL vmlinux 0x5e769986 ps3_os_area_get_av_multi_out -EXPORT_SYMBOL_GPL vmlinux 0x5e9640d4 mmput -EXPORT_SYMBOL_GPL vmlinux 0x5e9f7379 fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0x5ea613c3 handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0x5ec37d3a tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0x5ee18fab shmem_add_seals -EXPORT_SYMBOL_GPL vmlinux 0x5ee7542e reserve_pmc_hardware -EXPORT_SYMBOL_GPL vmlinux 0x5f12bcdc class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x5f226035 mod_delayed_work_on -EXPORT_SYMBOL_GPL vmlinux 0x5f51bfca sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x5f65e47b irq_find_matching_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x5f726923 __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x5f8350b4 rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5f85c616 led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x5f870a5b gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0x5f8b4ecc blkg_prfill_stat -EXPORT_SYMBOL_GPL vmlinux 0x5f8c9b78 regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x5fa1063b fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5fbab5aa regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0x5ff92806 tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x600029d4 rio_get_device -EXPORT_SYMBOL_GPL vmlinux 0x602b57c5 usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x60467b06 btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0x6047c2f3 fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush -EXPORT_SYMBOL_GPL vmlinux 0x6069baf2 kvmppc_invalidate_hpte -EXPORT_SYMBOL_GPL vmlinux 0x607ca353 bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0x6096af01 __ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL_GPL vmlinux 0x60a6c6f7 dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0x60cca309 __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq -EXPORT_SYMBOL_GPL vmlinux 0x60fdd1ac usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x6111cf56 blk_queue_rq_timed_out -EXPORT_SYMBOL_GPL vmlinux 0x6118b771 register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x6120a788 class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x6154c1bb of_gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x617b62a2 tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0x619f26c7 of_get_dma_window -EXPORT_SYMBOL_GPL vmlinux 0x61a90c54 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0x61ab6199 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0x6214b16c pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x628981fd sdio_run_irqs -EXPORT_SYMBOL_GPL vmlinux 0x62a3a3cb blk_unprep_request -EXPORT_SYMBOL_GPL vmlinux 0x62bca800 regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0x62bd5a6d __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x62c629ef regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0x62c7062c crypto_blkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x62ca05c4 ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6306d785 posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6315b9f7 regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0x6321001e device_store_int -EXPORT_SYMBOL_GPL vmlinux 0x633884fe vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x635a148c pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x63765aa3 of_property_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0x639b9ae2 iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x63a1ba55 ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x63f14ebe io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x6425e7e0 pmf_unregister_irq_client -EXPORT_SYMBOL_GPL vmlinux 0x64320b29 tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched -EXPORT_SYMBOL_GPL vmlinux 0x646a4d85 fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x6474758b irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0x64832ef6 shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0x64a155f0 sysfs_remove_device_from_node -EXPORT_SYMBOL_GPL vmlinux 0x64adcafa usb_gen_phy_init -EXPORT_SYMBOL_GPL vmlinux 0x64ae273f unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0x64b4229d mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0x64e80dfb freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x652eb6b0 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x65585152 serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0x6579f109 clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0x6593d0f2 vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x659481d9 pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0x65a71831 usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65e64e77 led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x6643971d get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0x664df016 pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x6661bb29 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0x666e98b1 sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x667a812c ps3av_set_video_mode -EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x66859582 debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x66afb53b unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x66be9295 devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x66c299a4 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x66cb1c2c srp_remove_host -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66f719c4 ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x67016d72 devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0x672d7612 ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0x67310346 sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy -EXPORT_SYMBOL_GPL vmlinux 0x676bf235 bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x676ff6d4 rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x677b6888 gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x678a4105 synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x67af2545 scom_controller -EXPORT_SYMBOL_GPL vmlinux 0x67c55faa regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0x67c999bc fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0x67ced9e2 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0x6830d961 xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0x683fccd1 usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0x68428261 virtqueue_get_avail -EXPORT_SYMBOL_GPL vmlinux 0x6873e57e extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x68ac2563 ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0x68ba4283 dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0x68bff7df ping_proc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x68cb93f0 virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x68e77cf0 gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x68ef84fd noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x68f3ead9 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval -EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x69388033 fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0x6946f646 of_irq_to_resource_table -EXPORT_SYMBOL_GPL vmlinux 0x694cd21d regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x69774456 of_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x69790ef6 __init_new_context -EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x697cbbb4 threads_per_core -EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0x699b3cce blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x69ecd10c devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x69ede26f of_irq_get -EXPORT_SYMBOL_GPL vmlinux 0x69f2e9c3 usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0x69faf14c crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0x6a14769e wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a228db3 nl_table -EXPORT_SYMBOL_GPL vmlinux 0x6a3bb0f5 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0x6a4247a6 i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0x6a48e9e3 posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a84f821 ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0x6a88f81b spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0x6a8b669c pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x6a936feb system_verify_data -EXPORT_SYMBOL_GPL vmlinux 0x6acb8d84 ppc64_caches -EXPORT_SYMBOL_GPL vmlinux 0x6afd3845 pmf_do_functions -EXPORT_SYMBOL_GPL vmlinux 0x6b01881d pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x6b1866a6 relay_flush -EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0x6b559f58 ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x6b5bf4c1 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x6b801eaf usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b84450d pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0x6b8f6354 pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x6b91d64b pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0x6b9372f6 skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x6ba45f6d __class_register -EXPORT_SYMBOL_GPL vmlinux 0x6bb7e17b tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x6bc80478 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0x6bcae3a3 dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0x6bd88019 dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x6c17ed02 con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0x6c236523 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c51ed9e device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions -EXPORT_SYMBOL_GPL vmlinux 0x6c8818c2 napi_by_id -EXPORT_SYMBOL_GPL vmlinux 0x6c9eaf25 irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq -EXPORT_SYMBOL_GPL vmlinux 0x6caffb63 verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x6cb80885 wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0x6cc2fb2c opal_message_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6ccf4416 sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0x6cdc8e36 regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x6ce28af0 of_pci_find_msi_chip_by_node -EXPORT_SYMBOL_GPL vmlinux 0x6ceb1799 tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0x6d21e378 cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d503945 usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0x6d74237c __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x6d7694cd crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x6da4c3ec rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0x6dab5737 inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x6dd13a78 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6ddeea37 ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy -EXPORT_SYMBOL_GPL vmlinux 0x6e0d3495 dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x6e1b8bd8 cxl_update_properties -EXPORT_SYMBOL_GPL vmlinux 0x6e2313da ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0x6e379526 kernstart_addr -EXPORT_SYMBOL_GPL vmlinux 0x6e4cdfa2 policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0x6e551528 usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0x6e5fdc4f zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0x6e6da530 swiotlb_unmap_page -EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e7af88d tc3589x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6ea1b2dc usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0x6ea89407 syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x6f392958 bdev_write_page -EXPORT_SYMBOL_GPL vmlinux 0x6f46d909 ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x6f5f3f9b device_find_child -EXPORT_SYMBOL_GPL vmlinux 0x6f720867 rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto -EXPORT_SYMBOL_GPL vmlinux 0x6fca6e5d swiotlb_tbl_sync_single -EXPORT_SYMBOL_GPL vmlinux 0x6fcc25c5 rhashtable_walk_init -EXPORT_SYMBOL_GPL vmlinux 0x6fcf1179 blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x6fe5f622 rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0x6fede69c regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x6ff1535d max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x70028002 relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0x70059bef ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0x70067067 kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x70292cb1 iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x703c404c crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0x704d9b64 of_dma_configure -EXPORT_SYMBOL_GPL vmlinux 0x7075f19d blkdev_write_iter -EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0x708c80b3 pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x70967286 tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x70a789a2 net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x70ac1686 led_trigger_store -EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated -EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70ef453d __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x70f6705c __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x7100ef3f devm_regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x71174025 ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x7123a0be iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0x713ae49e gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x714a14f9 crypto_register_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x715770b4 ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x71699f5c ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x71872fca driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0x71cebbd5 crypto_ablkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x71d9f2ba anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0x71dac768 devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab -EXPORT_SYMBOL_GPL vmlinux 0x71f038fe __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x7228ea0d mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0x7238b76e rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x725c96f1 iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0x7268599f pcibios_free_controller -EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x7286fd89 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0x72b873e9 trace_call_bpf -EXPORT_SYMBOL_GPL vmlinux 0x72bba578 tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x72bee3bb __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x72ccb79e of_reserved_mem_device_release -EXPORT_SYMBOL_GPL vmlinux 0x72d343a8 arizona_clk32k_enable -EXPORT_SYMBOL_GPL vmlinux 0x72e0829e powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0x72f99fb7 pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x730b5153 hwpoison_filter -EXPORT_SYMBOL_GPL vmlinux 0x732854e7 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x739aa1a1 pmac_i2c_setmode -EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73b8a82f crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x73bab70b devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x73d65290 attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x73e3a1f9 regmap_field_write -EXPORT_SYMBOL_GPL vmlinux 0x74127cdb netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x7447510f init_phb_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x74487886 crypto_init_spawn2 -EXPORT_SYMBOL_GPL vmlinux 0x74611145 ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x748a7de7 crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74c22660 blk_mq_register_disk -EXPORT_SYMBOL_GPL vmlinux 0x74c31f75 pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0x74ca293b virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0x74e68bfa kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 -EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x75329035 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0x7538da8c dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x7543b6a4 pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0x7557b9cc extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7565d65f power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0x75795dbb rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x757b49d2 kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x75805f94 inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only -EXPORT_SYMBOL_GPL vmlinux 0x75a3f598 device_property_present -EXPORT_SYMBOL_GPL vmlinux 0x75b855fa usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0x75c9d8c3 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x75cd5650 pm_runtime_get_if_in_use -EXPORT_SYMBOL_GPL vmlinux 0x75d17d0b pmac_i2c_open -EXPORT_SYMBOL_GPL vmlinux 0x75d8c548 blk_queue_bypass_start -EXPORT_SYMBOL_GPL vmlinux 0x75e3cf7a bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0x75f2a044 usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x75f6154e pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0x75f621e3 sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x75fb550d of_prop_next_u32 -EXPORT_SYMBOL_GPL vmlinux 0x7603b90b dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x761ed6ec hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x762c0858 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x764cc7cb fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x769693e6 ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0x769af060 gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0x76a70748 ata_base_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x76c3b008 nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0x77121984 extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x771332d4 simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0x77257700 sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x77318f1f scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0x774418e5 extcon_update_state -EXPORT_SYMBOL_GPL vmlinux 0x77482936 cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x7763f565 get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77b18a7b scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x77b52ce8 cbe_spu_info -EXPORT_SYMBOL_GPL vmlinux 0x77e62ccb transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0x77f58908 tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x7826310e nd_blk_region_to_dimm -EXPORT_SYMBOL_GPL vmlinux 0x78342a90 of_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x7843f043 usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x784acbcd pcibios_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x784eaeae iommu_present -EXPORT_SYMBOL_GPL vmlinux 0x78539a6a dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x78546f43 fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x78867fda sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x788fe139 use_cop -EXPORT_SYMBOL_GPL vmlinux 0x78907b6e blkg_print_stat_bytes_recursive -EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0x78cc5bec hugetlb_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x78def8af led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0x7903906d crypto_larval_lookup -EXPORT_SYMBOL_GPL vmlinux 0x79290242 usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off -EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x794c3d5f attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x795b6af0 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x798949e2 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0x798aee16 sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x79929a49 unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x7995349f pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0x7996bba6 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x79971fbd tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x7997ad24 blkg_print_stat_ios -EXPORT_SYMBOL_GPL vmlinux 0x79a889b9 eeh_iommu_group_to_pe -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x7a04a229 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x7a20f9f6 cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x7a229bf7 fsnotify -EXPORT_SYMBOL_GPL vmlinux 0x7a2c2f14 mm_iommu_find -EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x7a3b9bd0 sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7a4a9011 pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x7a56595d generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0x7a5885e2 early_find_capability -EXPORT_SYMBOL_GPL vmlinux 0x7a7adfd0 irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0x7ab2a56b locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0x7adc22aa user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7b05cf1d __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set -EXPORT_SYMBOL_GPL vmlinux 0x7b329341 regmap_fields_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x7b545c2c tps65217_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x7b70ed5c pm_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0x7b791cba usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x7b9261bb ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0x7b9b49e6 list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x7bb41566 mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x7be4e7fc pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0x7be99ca5 device_create -EXPORT_SYMBOL_GPL vmlinux 0x7bf0c00b thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0x7bf90e3d extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7c004e17 user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0x7c1722f6 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0x7c308ef5 rio_mport_send_doorbell -EXPORT_SYMBOL_GPL vmlinux 0x7c37bc89 pseries_ioei_notifier_list -EXPORT_SYMBOL_GPL vmlinux 0x7c51e9fb crypto_ahash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x7c7c07e9 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0x7c9fa978 init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7ce8bd8d serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cedf677 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x7cf0dcd9 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d03a8f4 ata_scsi_simulate -EXPORT_SYMBOL_GPL vmlinux 0x7d044230 ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0x7d1f093a fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0x7d27b460 sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0x7d3945e0 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x7d56812d phy_get -EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d9a464e perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7db3a30e iommu_flush_tce -EXPORT_SYMBOL_GPL vmlinux 0x7db66116 of_display_timings_exist -EXPORT_SYMBOL_GPL vmlinux 0x7dc1e388 alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0x7dc914d9 sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7dfd3ecf gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x7dff777f to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0x7e17ba7b klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x7e18cce0 sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0x7e1a4b12 bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0x7e58545a pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e732a17 console_drivers -EXPORT_SYMBOL_GPL vmlinux 0x7e8600f0 sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0x7e8c6be2 gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x7e8d2a61 spu_priv1_ops -EXPORT_SYMBOL_GPL vmlinux 0x7e90634b wm8997_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0x7e965945 wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x7ea1a2bc probe_kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x7eb583cf add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0x7eb59dad inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x7ebd6dcc kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0x7ec896d8 inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0x7ed33acd serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0x7edebeff hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0x7ee011c5 nd_blk_region_set_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x7efb9e37 power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0x7f008202 btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0x7f074f6d ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0x7f13d491 pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature -EXPORT_SYMBOL_GPL vmlinux 0x7f518334 thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0x7f52c522 ps3av_get_mode -EXPORT_SYMBOL_GPL vmlinux 0x7f70186c regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x7f7bc710 klist_next -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f929f88 alloc_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x7faa0f73 of_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x7fb0eb3e powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7fd756aa dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0x7ff285bb trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0x7ff2b790 crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0x80095dc7 pwm_enable -EXPORT_SYMBOL_GPL vmlinux 0x800b2a55 vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x800bb590 arizona_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x8012dae7 __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x80202313 pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0x802fca56 of_cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x803168f5 usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0x804ea02d __find_linux_pte_or_hugepte -EXPORT_SYMBOL_GPL vmlinux 0x804f169f regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0x80507f72 ps3av_audio_mute_analog -EXPORT_SYMBOL_GPL vmlinux 0x805f9488 tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0x80628931 rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x80773736 usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0x808a2d0b pci_try_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x80abad0f dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0x80b53e3d put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x80f816cb ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0x810a4015 _gpiochip_irqchip_add -EXPORT_SYMBOL_GPL vmlinux 0x81116126 rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x8114b8d6 md_is_badblock -EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x812fd5d7 rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0x81404184 fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0x8152e111 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x818332e3 extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0x818795bb pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0x81a95aef eeh_pe_set_option -EXPORT_SYMBOL_GPL vmlinux 0x81adf241 pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0x81ba827f usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0x822557b2 da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0x822bc90c led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0x82693f53 usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x826c5151 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x82a8b8d8 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0x82a9f842 get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82fb3c86 raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x830d55f1 md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0x83123975 bpf_prog_realloc -EXPORT_SYMBOL_GPL vmlinux 0x831d0a3d lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x83247bbd tpm2_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x834d23d3 usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0x836d61d0 atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x83733e02 blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x837f88cd ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0x838438a5 usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0x83aa8312 ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x83afae30 pci_cleanup_aer_uncorrect_error_status -EXPORT_SYMBOL_GPL vmlinux 0x83c48519 register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x841885b5 crypto_init_ahash_spawn -EXPORT_SYMBOL_GPL vmlinux 0x8425c7a9 pmac_i2c_find_bus -EXPORT_SYMBOL_GPL vmlinux 0x8432c082 blk_queue_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x84368bed __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x84419efd devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0x847d0346 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x848d066e copro_handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x84bf5dcf ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0x84c56eb8 sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0x84dd2cb5 dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0x84e71912 ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0x84f4d2d4 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x85013f18 thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x850f293d dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read -EXPORT_SYMBOL_GPL vmlinux 0x852f3c58 virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0x85327e8e rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0x8536b0eb ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0x853c5d52 phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x85439973 spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0x85597267 thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0x855f5c8c dma_buf_kmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0x858fa4cf ablkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x85c033e1 blk_queue_flush -EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x85ce27a4 pci_intx -EXPORT_SYMBOL_GPL vmlinux 0x85d6ff0d posix_timers_register_clock -EXPORT_SYMBOL_GPL vmlinux 0x85f02504 regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x85f0d76a cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x85fb0c90 device_del -EXPORT_SYMBOL_GPL vmlinux 0x8610ba07 regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod -EXPORT_SYMBOL_GPL vmlinux 0x864be612 sched_setscheduler_nocheck -EXPORT_SYMBOL_GPL vmlinux 0x8666a7c5 fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x8684630c single_open_net -EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x868cabd1 ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x86ef304c skcipher_geniv_exit -EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x8702e548 process_srcu -EXPORT_SYMBOL_GPL vmlinux 0x8725189a usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x87374d60 of_irq_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error -EXPORT_SYMBOL_GPL vmlinux 0x8749c370 fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0x87525934 irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0x876fb3f7 sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0x877410fe msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0x879f7fe7 ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x87ab2842 simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x87c16a52 ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x87e5da25 get_dcookie -EXPORT_SYMBOL_GPL vmlinux 0x8804af3d usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0x883f5448 device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x885137a5 pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x886b8916 pmf_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x887fc160 rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0x889f4171 devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x88a09c27 i2c_generic_gpio_recovery -EXPORT_SYMBOL_GPL vmlinux 0x88a696c5 register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88b359ff bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x88b54e77 pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x88bb2cc0 irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0x88d3a973 powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0x88f500bf ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0x890c3b25 cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x8928e9bc bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0x893863dd blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x8938d239 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x8953bc95 blk_queue_flush_queueable -EXPORT_SYMBOL_GPL vmlinux 0x8961b0ee digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0x89643d74 rio_lock_device -EXPORT_SYMBOL_GPL vmlinux 0x89741fe5 blk_mq_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x89959c28 ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x89dbf5b0 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x89e12970 ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0x89e7c943 page_cache_async_readahead -EXPORT_SYMBOL_GPL vmlinux 0x89ebdd08 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x8a0af466 ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x8a15afb5 pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x8a22655c ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0x8a31a7f0 da903x_read -EXPORT_SYMBOL_GPL vmlinux 0x8a367e0c blkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x8a458cb4 component_add -EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode -EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod -EXPORT_SYMBOL_GPL vmlinux 0x8a5ea58c l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0x8a88c5a6 regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x8a8de63c kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x8a9afeeb device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x8ab25a1d cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8ad60e52 usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0x8ad6f3ad udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0x8af537b8 eeh_pe_reset -EXPORT_SYMBOL_GPL vmlinux 0x8af57b96 trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0x8b012cfe of_overlay_create -EXPORT_SYMBOL_GPL vmlinux 0x8b03c71a __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x8b1b79b8 adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x8b34a8c8 usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x8b70e8ea __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x8bd4f2a5 __srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x8bde0fa5 device_add -EXPORT_SYMBOL_GPL vmlinux 0x8bf86c87 debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0x8bfd42d7 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c0f04c8 pmac_i2c_adapter_to_bus -EXPORT_SYMBOL_GPL vmlinux 0x8c158ca6 wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x8c192541 ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0x8c195cd5 blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0x8c1ee80a fb_sys_read -EXPORT_SYMBOL_GPL vmlinux 0x8c4007e0 mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x8c436de3 sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0x8c4726c9 metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x8c5f9141 get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x8c62f88f clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status -EXPORT_SYMBOL_GPL vmlinux 0x8c733002 remove_phb_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c8c71b5 __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x8c8d45c4 dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0x8cae54b5 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8cbe4819 wbc_account_io -EXPORT_SYMBOL_GPL vmlinux 0x8cbeb068 kvmppc_h_get_tce -EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params -EXPORT_SYMBOL_GPL vmlinux 0x8cdd8cad __online_page_free -EXPORT_SYMBOL_GPL vmlinux 0x8ce4c697 fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0x8cea765f memalloc_socks -EXPORT_SYMBOL_GPL vmlinux 0x8d13f91c sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d292484 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0x8d6ea181 ata_do_eh -EXPORT_SYMBOL_GPL vmlinux 0x8d85367f smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x8d8563e7 gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x8dab4462 inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0x8dbf5a20 kvmppc_hv_entry_trampoline -EXPORT_SYMBOL_GPL vmlinux 0x8dd734b6 bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0x8dde2cb7 debugfs_remove_recursive -EXPORT_SYMBOL_GPL vmlinux 0x8dea0a98 ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0x8deaf6a9 raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x8def3a83 gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x8dfd5821 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x8e02d91c crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x8e113f36 component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0x8e258ee6 powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0x8e2b25c2 videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x8e3ab3fb pmf_call_function -EXPORT_SYMBOL_GPL vmlinux 0x8e3e3e59 shake_page -EXPORT_SYMBOL_GPL vmlinux 0x8e4c69ae crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x8e58b63a pci_ats_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x8e5acfc4 rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8e5f0bf3 swiotlb_tbl_unmap_single -EXPORT_SYMBOL_GPL vmlinux 0x8e7218fd crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0x8eba2664 dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x8ec6edfb key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f1c0ca5 perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0x8f33e007 of_irq_parse_raw -EXPORT_SYMBOL_GPL vmlinux 0x8f3bccaa dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8f97d2b8 spi_async -EXPORT_SYMBOL_GPL vmlinux 0x8f99286b irq_of_parse_and_map -EXPORT_SYMBOL_GPL vmlinux 0x8f9ef8a4 pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x8fb65c94 xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x8fced602 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0x8fd4f927 srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0x8fd840cd percpu_ida_for_each_free -EXPORT_SYMBOL_GPL vmlinux 0x8ff2a17c thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8fffa5f4 rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x90192a8f dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x904e2327 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x905f8247 ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x9077d5ea usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x9089cb20 devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x90aa24dd rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0x90cc7878 arizona_clk32k_disable -EXPORT_SYMBOL_GPL vmlinux 0x90ed5e20 pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0x91011f74 devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0x911d608b devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x9127c618 stmpe_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x91566fb0 thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x9169d99a scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0x916bfa0d fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x9189d28c metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x91927576 devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x91ad89e1 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x91bdd791 fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91d6af96 devm_rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x91daef9a srp_rport_del -EXPORT_SYMBOL_GPL vmlinux 0x91e1574b bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x91ed0fe4 fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0x91f0c992 __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x920184ae tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x921416eb relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x92591603 rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0x928a21f0 disk_part_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x929825fe __blk_put_request -EXPORT_SYMBOL_GPL vmlinux 0x92bf0cf8 kvm_alloc_hpt -EXPORT_SYMBOL_GPL vmlinux 0x92cb19ef serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0x92d91dfd of_dma_router_register -EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92f1ac89 dax_pfn_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0x92fe606a __sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x931330ca find_module -EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x93311080 opal_flash_read -EXPORT_SYMBOL_GPL vmlinux 0x9331aaf4 pwmchip_add_with_polarity -EXPORT_SYMBOL_GPL vmlinux 0x9342bdcb udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x93556250 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x93734eff component_del -EXPORT_SYMBOL_GPL vmlinux 0x937f2c03 gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x93daaab7 irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x93e54031 xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x93e8d5f6 pcibios_remove_pci_devices -EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x943b2b9f debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0x94469b9a debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x9451b9f1 cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0x94705258 bdev_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x94832e8a wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x94a9be78 kvmppc_add_revmap_chain -EXPORT_SYMBOL_GPL vmlinux 0x94b2124b apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0x94b3ec80 fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0x94ccb768 ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x94d5f138 usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0x94d972b7 unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x94eb04fb crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop -EXPORT_SYMBOL_GPL vmlinux 0x94f553db power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x950191d9 scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x950432e0 relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x951d2a7c pci_restore_ats_state -EXPORT_SYMBOL_GPL vmlinux 0x95219637 pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x952bfb2e usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0x9530e444 cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x954a2f48 of_reconfig_get_state_change -EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x9586b1b8 get_slice_psize -EXPORT_SYMBOL_GPL vmlinux 0x958722dd irq_create_mapping -EXPORT_SYMBOL_GPL vmlinux 0x958ce00b da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x9598df1c devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0x959bac46 __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95cfe0d9 of_irq_find_parent -EXPORT_SYMBOL_GPL vmlinux 0x95d066fc gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0x95dd1c60 usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0x95e8b8e4 of_dma_is_coherent -EXPORT_SYMBOL_GPL vmlinux 0x95eb4ade ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x95f5cf42 gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x960546f0 usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x963d3f86 power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x9644a7d9 bio_associate_current -EXPORT_SYMBOL_GPL vmlinux 0x964fd5f2 put_pid -EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x965a78d5 threads_core_mask -EXPORT_SYMBOL_GPL vmlinux 0x9690caa6 restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x96983a6f rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0x96a5bbb2 tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x96aa62fe invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0x96b801a9 trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0x96d83010 trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0x96da0cc5 inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x96da4433 device_reset -EXPORT_SYMBOL_GPL vmlinux 0x96dc744d tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x96f09b4a eeh_dev_open -EXPORT_SYMBOL_GPL vmlinux 0x9727631f wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0x972fc2a8 wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0x9735f061 register_jprobes -EXPORT_SYMBOL_GPL vmlinux 0x973ae6c0 pwm_can_sleep -EXPORT_SYMBOL_GPL vmlinux 0x973b806a pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9741d66c get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x975dd7d8 find_vpid -EXPORT_SYMBOL_GPL vmlinux 0x975e7b94 thermal_notify_framework -EXPORT_SYMBOL_GPL vmlinux 0x977b6a49 ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0x9780c464 inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0x97909669 blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0x97a01819 iommu_tce_clear_param_check -EXPORT_SYMBOL_GPL vmlinux 0x97c6446f of_scan_bus -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97e6ff19 usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x9801ed0a trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x980c9736 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0x9826907a invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0x982cd486 __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x983b5c36 pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0x984ea29f power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x98604db8 phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0x98642c06 pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0x98645955 ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9882cab3 stmpe_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x98917ffd event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0x98a02a70 register_jprobe -EXPORT_SYMBOL_GPL vmlinux 0x98ac47ca shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x98b1f6f6 __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x98b7a351 iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x98f9f73d fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on -EXPORT_SYMBOL_GPL vmlinux 0x9909b58c devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x9929816c regmap_field_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x99368d65 kvmppc_update_rmap_change -EXPORT_SYMBOL_GPL vmlinux 0x993805ea blk_queue_bypass_end -EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range -EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x9987e6e9 opal_get_sensor_data -EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x9992cdb6 regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x99bbe8c1 mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0x99be4d3c leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0x99cd4691 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0x99d36104 kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0x99e91808 regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x99f3c67c device_remove_property_set -EXPORT_SYMBOL_GPL vmlinux 0x99f96e17 tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0x99ff8d08 opal_invalid_call -EXPORT_SYMBOL_GPL vmlinux 0x9a0af6b4 regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a38e82c usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x9a3f644c rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x9a45d911 blk_mq_cancel_requeue_work -EXPORT_SYMBOL_GPL vmlinux 0x9a49d937 __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x9a64a3d3 component_master_add_child -EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck -EXPORT_SYMBOL_GPL vmlinux 0x9aad6540 klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9ac612ef inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0x9ac8a108 scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0x9ad27b57 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x9ad48ed9 register_spu_syscalls -EXPORT_SYMBOL_GPL vmlinux 0x9adf08c3 mmu_linear_psize -EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9aec6c90 flush_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0x9af0b2e5 nd_numa_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x9af73886 of_modalias_node -EXPORT_SYMBOL_GPL vmlinux 0x9b001f55 transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x9b0cf985 usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0x9b4003ff dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0x9b4407c1 map_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x9b80c0f3 __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0x9b999423 crypto_alloc_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x9ba83e73 gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x9bb615f0 ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0x9bca03ca ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9c1cec6c regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0x9c1f9832 of_thermal_get_trip_points -EXPORT_SYMBOL_GPL vmlinux 0x9c38cc3b ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9cce1c2f pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0x9ce1ef03 arizona_set_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x9d046648 regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x9d0e2e0f ps3_vuart_port_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9d10bd05 fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0x9d1835b2 ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0x9d463aa7 regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x9d5c18f8 usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0x9d6432d8 irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x9d84ea8d trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0x9da2e2b8 extcon_unregister_interest -EXPORT_SYMBOL_GPL vmlinux 0x9da9bbe5 get_kernel_page -EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported -EXPORT_SYMBOL_GPL vmlinux 0x9dbb3c63 debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x9dc0a6a3 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x9e11654c find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0x9e267743 spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e52479f usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0x9e608cdb pm_complete_with_resume_check -EXPORT_SYMBOL_GPL vmlinux 0x9e8b160a ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0x9ec4aae5 pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0x9ec6ff86 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x9ed1b4bf anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ee24d8a devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x9ef0f383 nd_mapping_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x9ef5c639 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9f094513 sched_setscheduler -EXPORT_SYMBOL_GPL vmlinux 0x9f105212 palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0x9f10f8e7 crypto_init_spawn -EXPORT_SYMBOL_GPL vmlinux 0x9f13b03b __class_create -EXPORT_SYMBOL_GPL vmlinux 0x9f46c6ed wait_for_tpm_stat -EXPORT_SYMBOL_GPL vmlinux 0x9f532e7b __get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x9f575eca tpm_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x9f5ba62e __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0x9f7f8de5 crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9f83a614 cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x9f873303 blk_mq_tags_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x9f8a5a28 rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0x9f9123e9 set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0x9fa47005 __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x9fa5e1b0 regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fdd90d4 pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0x9fe0a175 rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9ff9ea20 ps3_free_mmio_region -EXPORT_SYMBOL_GPL vmlinux 0xa009bd18 regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xa00d4076 driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa01b895d cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0xa026237c pcibios_add_pci_devices -EXPORT_SYMBOL_GPL vmlinux 0xa02e02bb perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0xa035465d pmf_do_irq -EXPORT_SYMBOL_GPL vmlinux 0xa03a895e __pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xa0919ca5 evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0xa0a27fff pci_address_to_pio -EXPORT_SYMBOL_GPL vmlinux 0xa0c55ca4 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0xa0cf2feb platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0xa0d625f7 devm_mdiobus_alloc_size -EXPORT_SYMBOL_GPL vmlinux 0xa0e93a5f inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0xa11d33fc led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0xa13cc374 pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0xa1443a23 __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xa1498221 __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0xa19c5837 devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0xa210c021 pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xa219a936 cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa2718017 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa2ac5519 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0xa2b058f2 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xa2b3dc30 exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0xa2b7d807 adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xa2c684e6 rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0xa2ef50e1 ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa2f651ce blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xa2fdb84d regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0xa3151e41 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0xa3367ba5 sock_update_netprioidx -EXPORT_SYMBOL_GPL vmlinux 0xa3428fe0 regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0xa35353ae usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0xa37070b2 kvm_release_hpt -EXPORT_SYMBOL_GPL vmlinux 0xa384918b pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register -EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3a2d9af walk_system_ram_range -EXPORT_SYMBOL_GPL vmlinux 0xa3b59fca dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3e16693 gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0xa4273b11 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0xa4309574 queue_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0xa43d4223 register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0xa4488dc6 pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa490e4ad devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xa49484ad pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xa4adc677 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0xa4da07ea fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0xa4e67e90 sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xa4ec0a2a blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xa4fff607 regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0xa51cdac2 posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0xa5326a8e bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xa555b8fb nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0xa5826bd4 regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0xa59ddeda mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0xa5b00659 ppc_proc_freq -EXPORT_SYMBOL_GPL vmlinux 0xa5b442a3 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0xa5ba49d7 kill_pid_info_as_cred -EXPORT_SYMBOL_GPL vmlinux 0xa5c0592e pcibios_finish_adding_to_bus -EXPORT_SYMBOL_GPL vmlinux 0xa5ec1eeb netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa5efe460 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0xa60c7397 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0xa61f460b cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0xa62db9e9 iommu_tce_xchg -EXPORT_SYMBOL_GPL vmlinux 0xa638c915 wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xa6535444 device_rename -EXPORT_SYMBOL_GPL vmlinux 0xa6576a68 usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0xa6647139 tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa66bdc08 percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0xa6789d2b crypto_tfm_in_queue -EXPORT_SYMBOL_GPL vmlinux 0xa689c83c sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0xa6968e1c tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6b9f760 elv_register -EXPORT_SYMBOL_GPL vmlinux 0xa6ca0ef5 xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0xa6d59bdd ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6eded6c opal_xscom_read -EXPORT_SYMBOL_GPL vmlinux 0xa716f1cb ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xa721bc3f opal_rtc_write -EXPORT_SYMBOL_GPL vmlinux 0xa73264b0 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0xa73a9c5c ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0xa740e9e0 ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa7487910 spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0xa769b596 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0xa77269c2 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0xa78920dd dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0xa7ae406a dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0xa7c05aff perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa80305c4 unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xa818a01c regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0xa8222c49 stmpe_enable -EXPORT_SYMBOL_GPL vmlinux 0xa833fc19 devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xa8386f50 sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0xa84d8469 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa8693a5a nf_queue_entry_release_refs -EXPORT_SYMBOL_GPL vmlinux 0xa88eb160 regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0xa89829e9 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0xa8a49397 perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0xa8ae949b dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xa8c314b6 regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0xa8c546a4 regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0xa8c92682 usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xa8e989f1 rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xa8ea7858 devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xa9000ce4 mpc8xxx_spi_rx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0xa90fb99f sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa9459fb4 ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0xa946ab06 get_device -EXPORT_SYMBOL_GPL vmlinux 0xa94fcdf3 task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0xa95b2ac7 pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0xa964c1fc dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0xa96f51d5 pmf_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xa9700ad5 ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0xa970b550 adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xa98cdb36 ps3_get_firmware_version -EXPORT_SYMBOL_GPL vmlinux 0xa99c9518 crypto_alloc_instance2 -EXPORT_SYMBOL_GPL vmlinux 0xa9a2dd78 mddev_init -EXPORT_SYMBOL_GPL vmlinux 0xa9a9ea03 device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0xa9aa1b00 opal_poll_events -EXPORT_SYMBOL_GPL vmlinux 0xa9ce341e usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9e2be73 phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0xa9e9b5d0 blkcipher_aead_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0xa9ed41ed skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0xa9f19f2c devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0xa9ff408a pstore_register -EXPORT_SYMBOL_GPL vmlinux 0xaa11ef61 __init_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0xaa555280 ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0xaa5dc170 device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xaa7700b7 ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0xaa83e234 __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0xaa88a96b dma_buf_kunmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0xaa8ba8fb of_reserved_mem_device_init -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaaaba52d ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0xab0b2af9 of_pci_get_devfn -EXPORT_SYMBOL_GPL vmlinux 0xab0e3ec4 component_master_add -EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0xab2b243d ps3_irq_plug_destroy -EXPORT_SYMBOL_GPL vmlinux 0xab3e4cf6 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xab43d9c9 of_usb_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xab567d31 percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del -EXPORT_SYMBOL_GPL vmlinux 0xab62d94a cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request -EXPORT_SYMBOL_GPL vmlinux 0xab7bf662 ahash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0xab9b1edc crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0xaba2db15 trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xabb3c829 ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabd1e85a securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xabd5367b of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xabd91860 ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0xabded191 regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0xac00824b iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0xac066ecd usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0xac0ee003 percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0xac1272bc iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0xac242f46 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0xac319126 da903x_update -EXPORT_SYMBOL_GPL vmlinux 0xac42ef52 device_create_vargs -EXPORT_SYMBOL_GPL vmlinux 0xac4ddce6 uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0xac69ad06 crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0xac6ca07b cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0xac743ca1 vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0xac855a54 virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0xac9e4183 pmf_call_one -EXPORT_SYMBOL_GPL vmlinux 0xacbaf42c of_thermal_is_trip_valid -EXPORT_SYMBOL_GPL vmlinux 0xacc1c865 blkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0xaccd34eb tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0xacdeae30 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list -EXPORT_SYMBOL_GPL vmlinux 0xace5ea78 __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xacfc4867 pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0xacfe997e powerpc_firmware_features -EXPORT_SYMBOL_GPL vmlinux 0xacffc09c sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0xad14eeea sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0xad280fc7 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xad551b61 rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xad6f8efb lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0xad76f324 of_irq_parse_and_map_pci -EXPORT_SYMBOL_GPL vmlinux 0xad7a3881 rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0xad907e52 crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0xada9ffe2 usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xadc54b09 pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0xaded9da1 perf_trace_buf_prepare -EXPORT_SYMBOL_GPL vmlinux 0xadf4ae47 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0xadf7d1d4 mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0xae10e980 virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0xae20c4b7 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xae237cba devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0xae3fd50c fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0xae475d56 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xae54dc67 virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0xae5de7a5 page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae6eaf93 hwpoison_filter_dev_minor -EXPORT_SYMBOL_GPL vmlinux 0xae6fd75d rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae80f6c0 tps65217_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xae81922b of_overlay_destroy_all -EXPORT_SYMBOL_GPL vmlinux 0xae897be5 of_get_regulator_init_data -EXPORT_SYMBOL_GPL vmlinux 0xae9e36d1 of_pci_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0xaea24a5a nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0xaec1ee91 of_get_nand_on_flash_bbt -EXPORT_SYMBOL_GPL vmlinux 0xaec9921f hash_page -EXPORT_SYMBOL_GPL vmlinux 0xaed50bc4 stmpe_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xaee591ee tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0xaf14afd5 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xaf1d4b02 dax_clear_blocks -EXPORT_SYMBOL_GPL vmlinux 0xaf25271b bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0xaf279112 opal_leds_set_ind -EXPORT_SYMBOL_GPL vmlinux 0xaf797aa3 crypto_alg_lookup -EXPORT_SYMBOL_GPL vmlinux 0xafb89b6f pwm_request -EXPORT_SYMBOL_GPL vmlinux 0xafbccddb pskb_put -EXPORT_SYMBOL_GPL vmlinux 0xafbe6c9e kvmppc_hwrng_present -EXPORT_SYMBOL_GPL vmlinux 0xafc03587 input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0xafc53e01 tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0xafd7c028 dax_do_io -EXPORT_SYMBOL_GPL vmlinux 0xafdb8a25 dma_buf_kunmap -EXPORT_SYMBOL_GPL vmlinux 0xafdde950 wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0xb00b833e pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0xb02ceb17 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xb07b1f84 __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xb0a24d88 cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0xb0a4bef5 __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xb0b1141e crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0xb119ceb0 da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xb11c2c90 iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xb12c7f68 tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0xb134a5ec inet6_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0xb13c3cc8 usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0xb13e08e2 clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read -EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb144282f kern_mount_data -EXPORT_SYMBOL_GPL vmlinux 0xb166516b blk_add_request_payload -EXPORT_SYMBOL_GPL vmlinux 0xb16add77 crypto_lookup_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xb18141ce inet_csk_compat_setsockopt -EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched -EXPORT_SYMBOL_GPL vmlinux 0xb1b370bd __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain -EXPORT_SYMBOL_GPL vmlinux 0xb1c8da10 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xb1dd98dc tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb20727e4 pmac_i2c_get_adapter -EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb22429e6 trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0xb2458986 __ablkcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0xb25c0ccf ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb27e734c ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0xb284f325 crypto_init_shash_spawn -EXPORT_SYMBOL_GPL vmlinux 0xb2b14984 unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0xb2bf4eca relay_open -EXPORT_SYMBOL_GPL vmlinux 0xb2ca9c75 unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0xb2dcc289 usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2ef8238 md_stop -EXPORT_SYMBOL_GPL vmlinux 0xb2fdda20 usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb334bb23 register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy -EXPORT_SYMBOL_GPL vmlinux 0xb36e7d58 tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0xb3936257 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0xb3dd162a of_dma_get_range -EXPORT_SYMBOL_GPL vmlinux 0xb3fabd3b __blk_run_queue_uncond -EXPORT_SYMBOL_GPL vmlinux 0xb4026567 regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xb42482be pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0xb4363e56 simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xb45f6b35 dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0xb4621645 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0xb488588e tb_to_ns -EXPORT_SYMBOL_GPL vmlinux 0xb494c4be devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4c4b584 flush_vsx_to_thread -EXPORT_SYMBOL_GPL vmlinux 0xb4ca0f6c of_usb_host_tpl_support -EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb4ec456c usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0xb501ccdd security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0xb50bdaa8 rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0xb51056bf part_round_stats -EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xb54134b7 wm5110_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0xb55ed250 of_prop_next_string -EXPORT_SYMBOL_GPL vmlinux 0xb56f944b devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0xb5792787 __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0xb5848bae __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0xb585e6ed register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited -EXPORT_SYMBOL_GPL vmlinux 0xb58eb155 sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0xb58f7f67 rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table -EXPORT_SYMBOL_GPL vmlinux 0xb5a5753a device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0xb5aa10af atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb5bc6652 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xb5c64055 rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xb5c8526b mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0xb5c8edf4 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0xb5cb5fda usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0xb5e06988 regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb60b5707 of_i8042_aux_irq -EXPORT_SYMBOL_GPL vmlinux 0xb61e6526 extcon_get_cable_state -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb643c250 xics_wake_cpu -EXPORT_SYMBOL_GPL vmlinux 0xb6460ff9 inode_congested -EXPORT_SYMBOL_GPL vmlinux 0xb66d73a4 iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0xb69b8de7 pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xb6aec19c perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0xb6b4f690 relay_reset -EXPORT_SYMBOL_GPL vmlinux 0xb6b686d7 of_irq_parse_pci -EXPORT_SYMBOL_GPL vmlinux 0xb6bc007a spu_sys_callback -EXPORT_SYMBOL_GPL vmlinux 0xb6c49543 crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0xb6e0b63e rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xb70d58c5 pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0xb719fb69 tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0xb71b56a2 usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0xb73b9516 regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0xb742e2f7 __blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xb74fb045 mpc8xxx_spi_tx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0xb761bedb pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0xb773de07 regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xb7c203f8 seq_open_net -EXPORT_SYMBOL_GPL vmlinux 0xb7ce571a crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0xb7d7e650 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0xb7efa1cb debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0xb80dc712 sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0xb84b1aae ps3_event_receive_port_setup -EXPORT_SYMBOL_GPL vmlinux 0xb86d6fd8 spi_master_resume -EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb89665a6 ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8ce2822 irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0xb90279c8 pci_reset_bridge_secondary_bus -EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0xb916deea pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0xb91c79ca pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0xb91f00b1 usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0xb934829e devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb935c96e dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0xb937e430 screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0xb945ace8 __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0xb94de068 percpu_ida_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb9b54acc devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb9b7084e pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb9bbd301 usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0xb9c28bdb skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9ca79d8 nd_device_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9dcebea gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0xb9dd2199 nf_register_afinfo -EXPORT_SYMBOL_GPL vmlinux 0xb9e466c1 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xb9edc64f device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0xb9fb95bf cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0xba12a90a lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0xba158769 rtas_cancel_event_scan -EXPORT_SYMBOL_GPL vmlinux 0xba1c7f65 spi_setup -EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba5ed717 component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0xba80b3ff mddev_congested -EXPORT_SYMBOL_GPL vmlinux 0xba84cdd2 get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0xba946119 regmap_fields_force_write -EXPORT_SYMBOL_GPL vmlinux 0xba9a4d15 br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0xbaa4b552 fat_detach -EXPORT_SYMBOL_GPL vmlinux 0xbaaa7d1a virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbabbb46d vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0xbac3bebc ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0xbae64a4a bpf_prog_get -EXPORT_SYMBOL_GPL vmlinux 0xbaf6c39c clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0xbafdf31a wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb11e683 usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xbb32c1c3 get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0xbb42f8ce thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xbb43cfa6 max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0xbb49aafe spu_64k_pages_available -EXPORT_SYMBOL_GPL vmlinux 0xbb5f0e01 led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0xbb6e5833 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0xbb6ea28e devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0xbb8fc0db transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0xbbae5616 debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0xbbc6fca4 percpu_ida_free_tags -EXPORT_SYMBOL_GPL vmlinux 0xbbe9ebb9 i2c_unlock_adapter -EXPORT_SYMBOL_GPL vmlinux 0xbbece4fd kvmppc_do_h_enter -EXPORT_SYMBOL_GPL vmlinux 0xbc0a52b0 tc3589x_block_write -EXPORT_SYMBOL_GPL vmlinux 0xbc0bfbd7 __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xbc2041b4 da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc7f8d75 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0xbc8c25c2 regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0xbc9c2e9d reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xbcabfa74 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbcc15ca2 sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcd46641 spu_invalidate_slbs -EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbcea0e2b ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xbcfe8616 get_hwpoison_page -EXPORT_SYMBOL_GPL vmlinux 0xbd1e76e1 usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd50434e tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0xbd6497b8 usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0xbd671048 __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0xbd88f537 crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0xbd8f25fc ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0xbde7ee2f __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0xbde8dc00 tasklet_hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0xbdfb5e4c ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0xbe01073a platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xbe3f7989 mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xbe471cdf opal_rtc_read -EXPORT_SYMBOL_GPL vmlinux 0xbe4eb99a md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0xbe523417 arizona_of_get_named_gpio -EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe87b598 event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0xbe96bb7e regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbeae624d posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0xbeb30fde pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0xbebcd541 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xbec15b5a irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0xbec89d8e sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0xbec8d1c8 analyse_instr -EXPORT_SYMBOL_GPL vmlinux 0xbee1b721 sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0xbee4dcf0 device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0xbeea2d8d to_of_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xbef23940 watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf1cc04b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0xbf201464 ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0xbf3294af sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0xbf528a5d virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfcd3b28 power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space -EXPORT_SYMBOL_GPL vmlinux 0xc01a8767 __pci_complete_power_transition -EXPORT_SYMBOL_GPL vmlinux 0xc027b8f3 cpufreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc02bec3c usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xc05e142d ps3_vuart_port_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xc061367e mpic_msgr_get -EXPORT_SYMBOL_GPL vmlinux 0xc065a455 cpu_core_index_of_thread -EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc08dd45a ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0xc0e382ac cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc0fc1e8d kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0xc10f3388 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0xc12c7403 eeh_dev_check_failure -EXPORT_SYMBOL_GPL vmlinux 0xc162ccf5 blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc17eb074 debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0xc17f1e64 regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0xc19217ee of_irq_get_byname -EXPORT_SYMBOL_GPL vmlinux 0xc19554b8 dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0xc1bfd532 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xc1c08aa6 dax_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0xc1dc2a3a ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0xc2023009 input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc2746f1c devm_mdiobus_free -EXPORT_SYMBOL_GPL vmlinux 0xc27cd33d sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0xc29a5f21 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0xc2c25342 usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xc2dd90c3 usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xc2f08f3c shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xc3199ab8 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xc31d2050 ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0xc323af29 tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc34ae706 pmac_low_i2c_lock -EXPORT_SYMBOL_GPL vmlinux 0xc357923c pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0xc35eaa0b crypto_create_tfm -EXPORT_SYMBOL_GPL vmlinux 0xc36b3b63 __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xc378a3e4 scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0xc38bec4a blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xc38d7170 spu_switch_notify -EXPORT_SYMBOL_GPL vmlinux 0xc38f36d9 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xc3a04506 devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc3ae12db fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0xc3bc7b58 nvdimm_blk_region_create -EXPORT_SYMBOL_GPL vmlinux 0xc3bf8b65 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0xc3c7306f skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0xc3f2e0e0 spu_add_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0xc4111b29 dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0xc412f980 input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc447460d usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc46c4e9d __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xc46f33ab inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc478573b bdev_read_page -EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc48e47c5 regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0xc4a16a61 unregister_jprobe -EXPORT_SYMBOL_GPL vmlinux 0xc4ab3617 dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0xc4d6f631 tps65217_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xc4f06e14 replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0xc50083e7 regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0xc50bf702 fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc5143264 __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0xc5452f9c __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xc54df154 serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0xc57183f3 mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc58a1687 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xc58ea428 ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0xc5a2c19f idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc5d0f888 pmac_i2c_match_adapter -EXPORT_SYMBOL_GPL vmlinux 0xc5dc9296 device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc606cd3c boot_cpuid -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc627431a alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xc63cea5b fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xc63e7d93 static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xc6401949 pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0xc658f51a crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc669c0f3 mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc66c2311 ps3_vuart_irq_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc679741d cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xc68aa252 __atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc6ae695d usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0xc6c69a8f opal_flash_write -EXPORT_SYMBOL_GPL vmlinux 0xc6cc9d76 devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0xc6da7a0a __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0xc6e18c4b hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc6e2f79a percpu_ida_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc714382f sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xc77566d8 __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xc78d6aae regulator_can_change_voltage -EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7babe9a wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer -EXPORT_SYMBOL_GPL vmlinux 0xc7d940c2 edac_subsys -EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc809c67c tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xc816059c device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xc89cb40f posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0xc8b21f91 sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0xc8bcadbd wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0xc8eef608 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0xc8f4e3d1 devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0xc90432cb percpu_ida_free -EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level -EXPORT_SYMBOL_GPL vmlinux 0xc98658a3 pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0xc9e2037c __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc9f2100d i2c_new_dummy -EXPORT_SYMBOL_GPL vmlinux 0xca35bf50 pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0xca3b3701 public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0xca51c37d usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL vmlinux 0xca572edf cm_notify_event -EXPORT_SYMBOL_GPL vmlinux 0xca6570c9 rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xcaa0ceff pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcad12415 net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0xcadbfc0e fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0xcae569e2 ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xcafd45a8 uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcb06e614 pwm_free -EXPORT_SYMBOL_GPL vmlinux 0xcb084339 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb45e037 of_pci_get_host_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module -EXPORT_SYMBOL_GPL vmlinux 0xcb4a67ce md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0xcb5741ab ablkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xcb5e0a69 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0xcb5ee621 hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0xcb73c003 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0xcb7c0e10 rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0xcb937cab pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0xcb9fa3dd uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0xcba684e9 blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0xcbd849da device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0xcbef972c dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0xcbf4b9dd pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcc003ea3 spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0xcc0d746d trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0xcc0f1009 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcc22720f shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xcc2ba30d list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0xcc36e37d vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0xcc3c3a65 usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0xcc543246 crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0xcc5bfab2 wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc5e804a perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0xcc6280a9 __mmu_notifier_invalidate_range_end -EXPORT_SYMBOL_GPL vmlinux 0xcc74c61e of_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xcc7522a0 fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule -EXPORT_SYMBOL_GPL vmlinux 0xcc8ff376 __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0xcc925d49 ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0xcc981980 cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0xcc9f31cc device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0xcca86911 __module_text_address -EXPORT_SYMBOL_GPL vmlinux 0xccbbecc2 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xccc2a80f tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd16461 pci_enable_pri -EXPORT_SYMBOL_GPL vmlinux 0xccd64784 usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xccf44330 input_class -EXPORT_SYMBOL_GPL vmlinux 0xcd383a67 gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xcd3f23b2 usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0xcd51b012 dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0xcd67d569 platform_device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0xcd786364 crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0xcd8a2cb7 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq -EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs -EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcda53875 usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdc7ce30 debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdd44d2d ref_module -EXPORT_SYMBOL_GPL vmlinux 0xcde34ce3 add_memory_resource -EXPORT_SYMBOL_GPL vmlinux 0xce102819 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0xce151a36 for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0xce394103 iommu_tce_put_param_check -EXPORT_SYMBOL_GPL vmlinux 0xce3d802a virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0xce4668f7 usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0xce4c520e ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0xce4f1fec dm_get_table_device -EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce795d55 tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0xce8edc34 spu_switch_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xce8f0397 da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0xce9b6a58 of_get_nand_bus_width -EXPORT_SYMBOL_GPL vmlinux 0xcea2bb96 pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0xcebb9bf9 ps3_mmio_region_create -EXPORT_SYMBOL_GPL vmlinux 0xcec9464e i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcee66c9e ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0xcee9074d driver_attach -EXPORT_SYMBOL_GPL vmlinux 0xcee9539c bus_set_iommu -EXPORT_SYMBOL_GPL vmlinux 0xceef20e4 free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xcf0e9aa9 pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0xcf1ba138 crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain -EXPORT_SYMBOL_GPL vmlinux 0xcf606793 serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0xcf82448e kallsyms_on_each_symbol -EXPORT_SYMBOL_GPL vmlinux 0xcf890534 pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0xd004f2a9 xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0xd00bd14f i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xd00c5363 ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0xd01afd3f opal_tpo_read -EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xd040bf44 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0xd041aefa devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0xd0506c43 led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0xd057cd93 put_hwpoison_page -EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd09d401d rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0xd0a0f310 cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0c32f1d led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0xd0e0982d ata_sff_data_xfer_noirq -EXPORT_SYMBOL_GPL vmlinux 0xd0f50c01 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0xd0f54de3 spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0xd0fe5a99 usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0xd1115b5d stmpe_block_write -EXPORT_SYMBOL_GPL vmlinux 0xd11b528a scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0xd14f8593 crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0xd15f50f7 regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xd1a02879 __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xd1ac5fa3 inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd1b30ff8 pmf_register_irq_client -EXPORT_SYMBOL_GPL vmlinux 0xd1b74206 ps3_vuart_read_async -EXPORT_SYMBOL_GPL vmlinux 0xd1dd4b1f __pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd23d2918 usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xd23e4dc2 rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0xd2409cd4 crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0xd24d9603 devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xd25205ed hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd2660b58 class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0xd26c9f6d dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd27b80cb da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0xd27f806f __netlink_alloc_skb -EXPORT_SYMBOL_GPL vmlinux 0xd2817892 __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xd28c2f00 spu_associate_mm -EXPORT_SYMBOL_GPL vmlinux 0xd29b0b6d power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0xd2d11049 ata_eh_qc_retry -EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0xd2e27675 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0xd2e3621a devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd2ebf82a usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript -EXPORT_SYMBOL_GPL vmlinux 0xd2f88d3c gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0xd324fec5 pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xd331bed0 usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xd3370335 usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0xd33b6e8d ping_proc_register -EXPORT_SYMBOL_GPL vmlinux 0xd3743e73 dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xd37f0db2 spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0xd3a33ef9 dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xd3ac583e spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xd3b57ef0 phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0xd3ca4909 ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0xd3cee1a1 sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0xd3d060cc kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0xd3d573b4 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0xd3e5128b regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0xd3ee1e8e regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xd3f979ef nvdimm_bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4035ca3 of_pci_range_parser_one -EXPORT_SYMBOL_GPL vmlinux 0xd404a937 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd41f41ad rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xd43cc893 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd43d96bf dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd4487fd5 snprint_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd48532fa devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0xd4b1e34f ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0xd4bd66a0 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4c385b8 regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd4ca4a1c ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xd4d88dda set_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0xd5281ef6 da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0xd542f29e ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0xd546b9d4 irq_create_strict_mappings -EXPORT_SYMBOL_GPL vmlinux 0xd5484b2f rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0xd54febd3 cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0xd5567b79 bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0xd5596d48 opal_xscom_write -EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd55ed241 regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0xd56b5f64 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0xd56cea8c __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xd57b0a47 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0xd5924ac5 usb_phy_generic_register -EXPORT_SYMBOL_GPL vmlinux 0xd5a45da1 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0xd5b66c6d ps3_system_bus_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0xd5be0ea8 virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0xd5cd4890 ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0xd5d009a8 device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0xd5d2c010 nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0xd5dcb36e skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0xd5f9358a regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh -EXPORT_SYMBOL_GPL vmlinux 0xd612e8ab mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0xd61fab18 set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xd6226ce9 eeh_add_sysfs_files -EXPORT_SYMBOL_GPL vmlinux 0xd6245b47 sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xd627d06b inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0xd628d2d8 sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0xd637eea1 pcibios_free_controller_deferred -EXPORT_SYMBOL_GPL vmlinux 0xd648d192 ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0xd6494cbb of_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd68b63e3 spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0xd69176c2 power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xd69b4374 crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xd6a43677 opal_async_release_token -EXPORT_SYMBOL_GPL vmlinux 0xd6bdf4d7 ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0xd6c32f5b pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0xd6d6cd31 cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0xd6d81b14 __giveup_vsx -EXPORT_SYMBOL_GPL vmlinux 0xd6d9c42e pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0xd6f592bf blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0xd6f9042f tcp_fetch_timewait_stamp -EXPORT_SYMBOL_GPL vmlinux 0xd6fa7a51 usb_phy_generic_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries -EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0xd715595e param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0xd724a7db vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0xd73c6b8f sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0xd748bec0 scom_map_device -EXPORT_SYMBOL_GPL vmlinux 0xd7575147 tps65912_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xd7578332 dm_disk -EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd76c2cb1 pcibios_unmap_io_space -EXPORT_SYMBOL_GPL vmlinux 0xd76c562f stmpe_block_read -EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xd78d4fa9 raw_seq_open -EXPORT_SYMBOL_GPL vmlinux 0xd798c62d scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0xd7af71fd init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0xd7b8e693 usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0xd7bb129c security_kernel_fw_from_file -EXPORT_SYMBOL_GPL vmlinux 0xd7bd608f tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0xd7c3a2f6 eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0xd7e4449e srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0xd7fc3e98 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0xd803b311 xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0xd80ae9af netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0xd80c9f2b dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xd8263870 mmu_slb_size -EXPORT_SYMBOL_GPL vmlinux 0xd828a786 unregister_jprobes -EXPORT_SYMBOL_GPL vmlinux 0xd847e2fc tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0xd8498f4d ps3av_mode_cs_info -EXPORT_SYMBOL_GPL vmlinux 0xd869fcc2 of_pci_parse_bus_range -EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd8856c0c spu_remove_dev_attr_group -EXPORT_SYMBOL_GPL vmlinux 0xd88e5107 rq_flush_dcache_pages -EXPORT_SYMBOL_GPL vmlinux 0xd8960a77 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xd8a80607 unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xd8b069dc scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0xd8d8693f gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0xd920611b rhashtable_walk_start -EXPORT_SYMBOL_GPL vmlinux 0xd92338af regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xd93e8e0e of_get_videomode -EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0xd9497b3c ps3_os_area_flash_register -EXPORT_SYMBOL_GPL vmlinux 0xd94aa457 display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0xd95ce148 sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd97878a7 mm_iommu_preregistered -EXPORT_SYMBOL_GPL vmlinux 0xd9837cf0 do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xd98aa1e0 usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0xd98e3ea9 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0xd990588c blkg_print_stat_bytes -EXPORT_SYMBOL_GPL vmlinux 0xd9af3084 blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0xd9ce4d0f pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0xd9d064b9 ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0xd9db0f33 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xda0a4d22 mpic_msgr_enable -EXPORT_SYMBOL_GPL vmlinux 0xda302164 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0xda496466 inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0xda71dffa skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xda802a5c of_console_check -EXPORT_SYMBOL_GPL vmlinux 0xda8c010e handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0xda8df0bf rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0xda97c9bc __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xdab923f9 usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0xdae1b318 pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0xdae3f47f __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0xdae715e0 videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdb0ac13b ps3_compare_firmware_version -EXPORT_SYMBOL_GPL vmlinux 0xdb0e4dc8 devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xdb1b3c2a ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0xdb22aecc tcp_death_row -EXPORT_SYMBOL_GPL vmlinux 0xdb29790f hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0xdb444f5c class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xdb6f25dd rtc_irq_set_freq -EXPORT_SYMBOL_GPL vmlinux 0xdb6fa487 ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb8c421e smu_get_ofdev -EXPORT_SYMBOL_GPL vmlinux 0xdb91e05c tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0xdbba88ea cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0xdbf4adcd netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0xdbf4b621 of_dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdc00a928 usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xdc1c379d __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0xdc27ad7f serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0xdc3246f0 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0xdc378b51 wait_on_page_bit_killable_timeout -EXPORT_SYMBOL_GPL vmlinux 0xdc57ae2d of_thermal_get_ntrips -EXPORT_SYMBOL_GPL vmlinux 0xdc7487db pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable -EXPORT_SYMBOL_GPL vmlinux 0xdc937864 spu_switch_event_register -EXPORT_SYMBOL_GPL vmlinux 0xdc978569 crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdca3ec99 i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0xdcd83db2 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0xdcdaaafc of_property_count_elems_of_size -EXPORT_SYMBOL_GPL vmlinux 0xdce6c68b __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0xdcf81301 gpiochip_set_chained_irqchip -EXPORT_SYMBOL_GPL vmlinux 0xdd043eea ps3av_get_auto_mode -EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock -EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd430902 unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0xdd57e2b5 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0xdd6d7fc7 pcibios_scan_phb -EXPORT_SYMBOL_GPL vmlinux 0xdd729424 usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0xdd7de492 power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0xdd91ffae ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xddaeecf9 bus_register -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0xdde06cd8 usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xdde2e5ba blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0xdde9fce3 gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xddea1337 devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0xde09e525 usb_bus_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xde0a07b0 regmap_write_bits -EXPORT_SYMBOL_GPL vmlinux 0xde16dad8 pmf_get_function -EXPORT_SYMBOL_GPL vmlinux 0xde1ec1f7 ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xde312139 skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0xde40f21e pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xde6226e7 wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0xde74b230 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0xde765033 unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xde89a172 of_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xde8b2c31 usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0xde9e2403 memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdebc41e7 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0xdebceaea arizona_dev_init -EXPORT_SYMBOL_GPL vmlinux 0xdecd965d sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0xdeced2f3 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0xdeec98bd regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0xdf0efa9e of_resolve_phandles -EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf22955b pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0xdf2d4543 gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0xdf37d52c usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0xdf59b6cd pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0xdf6af836 swiotlb_map_page -EXPORT_SYMBOL_GPL vmlinux 0xdf7731b2 serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0xdf7e9ec0 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0xdf80476d trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0xdf858fbf of_get_nand_ecc_strength -EXPORT_SYMBOL_GPL vmlinux 0xdf911aa8 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0xdfd6caea usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0xdfe2cfb0 xattr_getsecurity -EXPORT_SYMBOL_GPL vmlinux 0xdff0d423 regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name -EXPORT_SYMBOL_GPL vmlinux 0xe011f817 ps3flash_bounce_buffer -EXPORT_SYMBOL_GPL vmlinux 0xe016461b stmpe_set_altfunc -EXPORT_SYMBOL_GPL vmlinux 0xe02ce2d9 of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0xe036b3e9 mpic_msgr_put -EXPORT_SYMBOL_GPL vmlinux 0xe041fc07 key_type_user -EXPORT_SYMBOL_GPL vmlinux 0xe06178d1 single_release_net -EXPORT_SYMBOL_GPL vmlinux 0xe06fe221 cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved -EXPORT_SYMBOL_GPL vmlinux 0xe0908c76 spu_setup_kernel_slbs -EXPORT_SYMBOL_GPL vmlinux 0xe096c443 io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0xe09fa439 regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0xe0a0abf2 rio_get_asm -EXPORT_SYMBOL_GPL vmlinux 0xe0b31348 pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0xe0f2b339 eeh_add_device_tree_early -EXPORT_SYMBOL_GPL vmlinux 0xe0fd7d90 wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xe129d0de blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0xe136d69b preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xe13904e0 mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0xe145aaf0 __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0xe1729cce realmode_pfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe19ef486 thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe19fc092 ps3fb_videomemory -EXPORT_SYMBOL_GPL vmlinux 0xe1a567c3 tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xe1a76b1a inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xe1a7cd1e clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports -EXPORT_SYMBOL_GPL vmlinux 0xe1bfaabe ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xe1d23441 pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xe1d331b4 dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0xe1f38b4c bio_clone_mddev -EXPORT_SYMBOL_GPL vmlinux 0xe1f80f3f extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xe2086333 cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0xe23a1a69 ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xe23b6342 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xe27dd922 wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0xe281f610 gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0xe2864120 devres_find -EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength -EXPORT_SYMBOL_GPL vmlinux 0xe2b64f32 subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe2b76621 gpiochip_add -EXPORT_SYMBOL_GPL vmlinux 0xe2c8fc31 devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0xe2d0514f pmac_i2c_get_bus_node -EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xe341fce6 bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0xe3592c6d debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0xe38b4b12 ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0xe391485b rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe3d7750e btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0xe3f6358d pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xe3fd4d2b bio_associate_blkcg -EXPORT_SYMBOL_GPL vmlinux 0xe4066328 devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe4171117 eeh_pe_inject_err -EXPORT_SYMBOL_GPL vmlinux 0xe42f840a regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe4329ad6 irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe45c586d mpc8xxx_spi_rx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0xe463554a bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xe46c372a of_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4980156 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0xe49c2b08 sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0xe4a6ab5e fuse_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe4c031f8 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0xe4c36a1e __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto -EXPORT_SYMBOL_GPL vmlinux 0xe4e9c281 pmac_i2c_get_dev_addr -EXPORT_SYMBOL_GPL vmlinux 0xe4f588c4 system_trusted_keyring -EXPORT_SYMBOL_GPL vmlinux 0xe4fc5787 cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xe51c040f register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xe524799b pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0xe52853cf pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xe54610c4 extcon_register_interest -EXPORT_SYMBOL_GPL vmlinux 0xe5479df7 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0xe54b5ce9 disk_part_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xe54d5ca9 raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0xe5540302 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xe5749519 ping_close -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq -EXPORT_SYMBOL_GPL vmlinux 0xe5afbe4c iommu_domain_get_attr -EXPORT_SYMBOL_GPL vmlinux 0xe5b12ceb ps3_vuart_cancel_async -EXPORT_SYMBOL_GPL vmlinux 0xe5e399a4 usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0xe5f11908 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0xe626c607 devm_spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0xe63d5829 kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0xe64d3f80 pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe662c9e7 of_property_read_string_helper -EXPORT_SYMBOL_GPL vmlinux 0xe66cf472 __mmu_notifier_invalidate_range -EXPORT_SYMBOL_GPL vmlinux 0xe671f33c pmac_i2c_get_channel -EXPORT_SYMBOL_GPL vmlinux 0xe6821ee5 debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xe6c395e9 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0xe6c551b1 kernfs_path -EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module -EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen -EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xe6f98179 ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0xe70a6b9d skcipher_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0xe70bcb5f crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0xe7411b95 of_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xe74275f3 mpc8xxx_spi_tx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0xe768d444 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe781ace3 usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0xe79b0256 alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0xe7b36ceb usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0xe7c7b7fe genlmsg_new_unicast -EXPORT_SYMBOL_GPL vmlinux 0xe7db4b2e sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0xe7db5795 crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0xe7e6d40b desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0xe7f18b3c threads_per_subcore -EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr -EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe81b40f0 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0xe8204698 ps3_vuart_read -EXPORT_SYMBOL_GPL vmlinux 0xe8268fd5 xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0xe82ada17 usb_string -EXPORT_SYMBOL_GPL vmlinux 0xe842bbba adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0xe844e6e9 rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe85c44ea cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0xe85c55e7 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe89bd243 ata_sff_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xe89c1fab skb_gso_transport_seglen -EXPORT_SYMBOL_GPL vmlinux 0xe8a60db9 nf_unregister_afinfo -EXPORT_SYMBOL_GPL vmlinux 0xe8a887c8 usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0xe8add67b __add_pages -EXPORT_SYMBOL_GPL vmlinux 0xe8b890e5 of_irq_parse_one -EXPORT_SYMBOL_GPL vmlinux 0xe8bd9b83 ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xe8d3a2de iommu_take_ownership -EXPORT_SYMBOL_GPL vmlinux 0xe8ea3eee debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0xe8f46963 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0xe90ceabc devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0xe922a111 vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0xe92ca4ca ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe94f7726 virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0xe9506579 iommu_tce_direction -EXPORT_SYMBOL_GPL vmlinux 0xe98006eb trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0xe9ad68c9 devm_pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9dcb02e hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xe9ebf4a2 eeh_pe_get_state -EXPORT_SYMBOL_GPL vmlinux 0xea00dd72 tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea2965f1 xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0xea3ea71f fsl8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0xea628c20 bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0xea720e94 isa_bridge_pcidev -EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xea974978 dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xea998d16 debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0xeabc851a tpm2_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0xead3124b crypto_alloc_instance -EXPORT_SYMBOL_GPL vmlinux 0xeae84380 devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0xeaff6623 of_get_display_timing -EXPORT_SYMBOL_GPL vmlinux 0xeb128cf0 rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xeb12de89 register_cxl_calls -EXPORT_SYMBOL_GPL vmlinux 0xeb2143a6 cpu_remove_dev_attr_group -EXPORT_SYMBOL_GPL vmlinux 0xeb31999e sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xeb668c37 regmap_update_bits_async -EXPORT_SYMBOL_GPL vmlinux 0xeb69ed50 copro_calculate_slb -EXPORT_SYMBOL_GPL vmlinux 0xeb70f7d9 driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0xeb719f10 irq_map_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xeb7d183e jump_label_rate_limit -EXPORT_SYMBOL_GPL vmlinux 0xeb861743 ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0xeb8ae736 klist_init -EXPORT_SYMBOL_GPL vmlinux 0xeb920e97 adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xeb9de1a3 sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0xeba441ad gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0xebac8f1b __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0xebb4df5b unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0xebea9790 user_update -EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xebf96fe1 ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare -EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del -EXPORT_SYMBOL_GPL vmlinux 0xec2d7a57 __online_page_set_limits -EXPORT_SYMBOL_GPL vmlinux 0xec438d2d blkcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0xec631f34 remove_memory -EXPORT_SYMBOL_GPL vmlinux 0xec68fdf4 irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0xec7076d4 gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0xec90d0c2 ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0xec955b54 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0xec98bc56 rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xecd9a3a8 nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0xecf0dbd9 thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xecfcfc91 drop_cop -EXPORT_SYMBOL_GPL vmlinux 0xed0fbe0d da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xed3d9fd8 spi_master_suspend -EXPORT_SYMBOL_GPL vmlinux 0xed44d188 ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xed57a36d to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0xed7d7db9 phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0xed7d981e of_css -EXPORT_SYMBOL_GPL vmlinux 0xed981a16 cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xed9bb5fc phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0xed9efb1f scsi_internal_device_unblock -EXPORT_SYMBOL_GPL vmlinux 0xedae7600 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0xedb98c33 crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0xedbcd671 __compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0xedbcfe0b elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0xedca24de ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0xedd21282 gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xeddceaef ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xee0de9db wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0xee27ae83 crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0xee544a23 crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xee578e2b crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0xee5b0562 ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0xee69b3a4 rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible -EXPORT_SYMBOL_GPL vmlinux 0xee891cc0 srp_tmo_valid -EXPORT_SYMBOL_GPL vmlinux 0xee99fdfb __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0xeeb5edab pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0xeebe69fc class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xeee22cb8 io_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xeeeaa694 bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0xeeebfb7f ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0xeef9572f ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0xef179318 posix_timer_event -EXPORT_SYMBOL_GPL vmlinux 0xef196c3d devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xef3e0017 wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0xef4a1ead fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef6d007a sigset_from_compat -EXPORT_SYMBOL_GPL vmlinux 0xef71976e task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0xef931bc4 sg_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xef9c51b5 regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefcdd907 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0xefeb94a6 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xf00bcab2 ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0xf00fb3c9 dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0xf0571dea rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xf05744be pcibios_map_io_space -EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xf07a9f1d tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0xf08e6d43 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0xf098dd15 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0xf0a2a2b5 platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0xf0addbf0 skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0xf0bdf299 md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0xf106a114 mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0xf1145383 ata_sg_init -EXPORT_SYMBOL_GPL vmlinux 0xf1214bbb remove_irq -EXPORT_SYMBOL_GPL vmlinux 0xf12242c0 devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xf138b3bd nd_blk_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xf14e4d24 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xf158f170 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0xf15bd67d sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0xf15d55ac sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0xf162f283 spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0xf16a5827 device_attach -EXPORT_SYMBOL_GPL vmlinux 0xf16e0716 uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0xf18086c6 iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf1a2cdab scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0xf1a62b6f of_i8042_kbd_irq -EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key -EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on -EXPORT_SYMBOL_GPL vmlinux 0xf1bb9113 cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0xf1c7722f wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0xf1cfee79 of_usb_update_otg_caps -EXPORT_SYMBOL_GPL vmlinux 0xf1d075ff __blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0xf1d59e91 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0xf1fde4dd hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf2225f28 find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xf22764e4 alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0xf228536d ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0xf23f5376 ps3_open_hv_device -EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0xf28badd6 pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0xf29abab5 spu_set_profile_private_kref -EXPORT_SYMBOL_GPL vmlinux 0xf29b6b6b gov_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xf2a00018 gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xf2acf5b9 tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0xf2c8b23d pci_intx_mask_supported -EXPORT_SYMBOL_GPL vmlinux 0xf2eeac10 iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0xf2fe7cae pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xf3082305 pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support -EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf318b67f crypto_unregister_pcomp -EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf33dc43c sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xf33e5af3 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0xf342239e fuse_get_req_for_background -EXPORT_SYMBOL_GPL vmlinux 0xf364d175 __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0xf3676124 rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0xf37400b9 bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf3925838 power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0xf3a5f74b disk_get_part -EXPORT_SYMBOL_GPL vmlinux 0xf3a93813 eeh_add_device_tree_late -EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0xf3ddc1c8 ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xf3f9bc0b cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0xf40643bf pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf426990c kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0xf42c897d filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0xf43f681b __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0xf454e590 crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0xf4594703 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xf469c705 ps3_io_irq_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf4719947 cpufreq_governor_dbs -EXPORT_SYMBOL_GPL vmlinux 0xf47d5270 pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask -EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh -EXPORT_SYMBOL_GPL vmlinux 0xf4aa83c7 regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xf4abcbd5 unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0xf5136b0b register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xf51540f5 of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0xf51c5e88 xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0xf52a54bb class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xf533be5f power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xf5379771 net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5a9ebfd device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0xf5b45b40 wm8350_device_exit -EXPORT_SYMBOL_GPL vmlinux 0xf5bcf1b2 __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0xf5cd6b6c blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0xf5d01d94 devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xf5fd7271 platform_bus -EXPORT_SYMBOL_GPL vmlinux 0xf6240881 dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xf63359c9 __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xf63b82d8 device_init_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xf652abb6 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xf667c377 devres_get -EXPORT_SYMBOL_GPL vmlinux 0xf668fa44 PageHuge -EXPORT_SYMBOL_GPL vmlinux 0xf679f5fb wm5110_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0xf686ca79 serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0xf6a08c8f register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xf6c54cc8 mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf6c82344 task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6d5d5cf nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0xf6db3f2a gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf7192dc2 blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0xf719eec3 serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0xf73b29a2 dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xf744c42f blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0xf7993a15 __get_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xf7a2de26 fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xf7a381af component_master_del -EXPORT_SYMBOL_GPL vmlinux 0xf7ace03d agp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0xf7f380ec irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0xf800b03b ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf808cf2a dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0xf80c3062 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf837e0eb unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xf869ac73 phy_exit -EXPORT_SYMBOL_GPL vmlinux 0xf86ea14b crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0xf8702aec sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0xf87b3713 pci_hp_change_slot_info -EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xf8ad4f29 nvdimm_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xf8e398fc memstart_addr -EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops -EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0xf906ae4e init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf9385fb4 regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0xf94cc1c1 unregister_cxl_calls -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf960514c wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xf960dd9b ps3_mmio_region_init -EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9bb1ecc debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xf9d12d84 __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0xf9dc10f0 usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xf9f5d2f3 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xf9f5e103 md_new_event -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start -EXPORT_SYMBOL_GPL vmlinux 0xfa2d3be4 cpu_remove_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0xfa329461 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0xfa56ba45 fuse_get_req -EXPORT_SYMBOL_GPL vmlinux 0xfa5b48e1 serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0xfa74d830 scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec -EXPORT_SYMBOL_GPL vmlinux 0xfaa9a407 phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xfab60503 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0xfac30419 da903x_write -EXPORT_SYMBOL_GPL vmlinux 0xfb0047f6 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xfb051aa0 sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb44a7a1 opal_ipmi_recv -EXPORT_SYMBOL_GPL vmlinux 0xfb525dfc pmac_i2c_get_type -EXPORT_SYMBOL_GPL vmlinux 0xfb52b77d __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb7bc093 irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbcb22c2 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0xfbcd197d usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xfbd3a24d opal_message_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xfbfcdc2b ps3_sys_manager_get_wol -EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc0613ed __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xfc10b861 trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0xfc16d29a iommu_domain_window_disable -EXPORT_SYMBOL_GPL vmlinux 0xfc1d17f1 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0xfc2848e3 rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0xfc28c9f3 usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xfc479c31 virtqueue_get_used -EXPORT_SYMBOL_GPL vmlinux 0xfc47d88b power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xfc54a6cb shash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0xfc6ad805 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xfc9937a7 __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0xfca3429b rt_mutex_timed_lock -EXPORT_SYMBOL_GPL vmlinux 0xfccfcfda dma_buf_kmap -EXPORT_SYMBOL_GPL vmlinux 0xfcd431d6 mpc8xxx_spi_tx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0xfcf82486 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xfcfd8db6 unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0xfcffb4e1 pmac_i2c_get_flags -EXPORT_SYMBOL_GPL vmlinux 0xfd0d71d9 handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0xfd165d5a fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xfd1892a5 transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfd474728 thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xfd65c28a gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0xfd70d6cc ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack -EXPORT_SYMBOL_GPL vmlinux 0xfddd285f mm_iommu_ua_to_hpa -EXPORT_SYMBOL_GPL vmlinux 0xfde29965 virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0xfde43c91 ps3_gpu_mutex -EXPORT_SYMBOL_GPL vmlinux 0xfdf01810 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xfdf453d8 ps3_close_hv_device -EXPORT_SYMBOL_GPL vmlinux 0xfe1a8a6f iommu_release_ownership -EXPORT_SYMBOL_GPL vmlinux 0xfe305f93 yield_to -EXPORT_SYMBOL_GPL vmlinux 0xfe3780cd crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0xfe39682b tpm2_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xfe4b407c __mmu_notifier_invalidate_range_start -EXPORT_SYMBOL_GPL vmlinux 0xfe5f3e3e dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xfeff22e5 thermal_generate_netlink_event -EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff0dacff ps3av_video_mute -EXPORT_SYMBOL_GPL vmlinux 0xff14b4be devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0xff2b4478 register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0xff40dc9c pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0xff5725dd dma_buf_vmap -EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xff6ed282 ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0xff8c69bc inet_hash -EXPORT_SYMBOL_GPL vmlinux 0xffa8ba35 pci_bus_sem -EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0xffc7e54b phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0xffceb90e napi_hash_add reverted: --- linux-raspi2-4.4.0/debian.master/abi/4.4.0-89.112/powerpc/powerpc64-smp.compiler +++ linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-89.112/powerpc/powerpc64-smp.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 reverted: --- linux-raspi2-4.4.0/debian.master/abi/4.4.0-89.112/powerpc/powerpc64-smp.modules +++ linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-89.112/powerpc/powerpc64-smp.modules @@ -1,4367 +0,0 @@ -3c574_cs -3c589_cs -3c59x -3w-9xxx -3w-sas -3w-xxxx -6lowpan -6pack -8021q -8139cp -8139too -8250_dw -8250_mid -8255 -8255_pci -8390 -842 -842_compress -842_decompress -88pm800 -88pm805 -88pm80x -88pm80x_onkey -88pm8607 -88pm860x-ts -88pm860x_battery -88pm860x_bl -88pm860x_charger -88pm860x_onkey -9p -9pnet -9pnet_rdma -9pnet_virtio -DAC960 -a100u2w -a3d -a8293 -aacraid -aat2870-regulator -aat2870_bl -ab3100 -ab3100-otp -ac97_bus -acard-ahci -acecad -acenic -act200l-sir -act8865-regulator -act_bpf -act_connmark -act_csum -act_gact -act_ipt -act_mirred -act_nat -act_pedit -act_police -act_simple -act_skbedit -act_vlan -actisys-sir -ad2s1200 -ad2s1210 -ad2s90 -ad5064 -ad525x_dpot -ad525x_dpot-i2c -ad525x_dpot-spi -ad5360 -ad5380 -ad5398 -ad5421 -ad5446 -ad5449 -ad5504 -ad5592r -ad5592r-base -ad5593r -ad5624r_spi -ad5686 -ad5755 -ad5764 -ad5791 -ad5933 -ad714x -ad714x-i2c -ad714x-spi -ad7150 -ad7152 -ad7192 -ad7266 -ad7280a -ad7291 -ad7298 -ad7303 -ad7314 -ad7414 -ad7418 -ad7476 -ad7606 -ad7746 -ad7780 -ad7791 -ad7793 -ad7816 -ad7877 -ad7879 -ad7879-i2c -ad7879-spi -ad7887 -ad7923 -ad799x -ad8366 -ad9523 -ad9832 -ad9834 -ad_sigma_delta -adc128d818 -adcxx -addi_apci_1032 -addi_apci_1500 -addi_apci_1516 -addi_apci_1564 -addi_apci_16xx -addi_apci_2032 -addi_apci_2200 -addi_apci_3120 -addi_apci_3501 -addi_apci_3xxx -addi_watchdog -ade7753 -ade7754 -ade7758 -ade7759 -ade7854 -ade7854-i2c -ade7854-spi -adf4350 -adfs -adi -adis16060 -adis16080 -adis16130 -adis16136 -adis16201 -adis16203 -adis16204 -adis16209 -adis16220 -adis16240 -adis16260 -adis16400 -adis16480 -adis_lib -adjd_s311 -adl_pci6208 -adl_pci7x3x -adl_pci8164 -adl_pci9111 -adl_pci9118 -adm1021 -adm1025 -adm1026 -adm1029 -adm1031 -adm1275 -adm8211 -adm9240 -adp5520-keys -adp5520_bl -adp5588-keys -adp5589-keys -adp8860_bl -adp8870_bl -adq12b -ads1015 -ads7828 -ads7846 -ads7871 -adt7310 -adt7316 -adt7316-i2c -adt7316-spi -adt7410 -adt7411 -adt7462 -adt7470 -adt7475 -adt7x10 -adummy -adutux -adv7511 -adv7604 -adv7842 -adv_pci1710 -adv_pci1723 -adv_pci1724 -adv_pci_dio -advansys -adxl34x -adxl34x-i2c -adxl34x-spi -adxrs450 -af-rxrpc -af9013 -af9033 -af_alg -af_key -af_packet_diag -affs -ah4 -ah6 -aha152x_cs -ahci -ahci_ceva -ahci_platform -ahci_qoriq -aic79xx -aic7xxx -aic94xx -aim_cdev -aim_network -aim_sound -aim_v4l2 -aio_aio12_8 -aio_iiro_16 -aiptek -aircable -airo -airo_cs -airport -airspy -ak8975 -al3320a -algif_aead -algif_hash -algif_rng -algif_skcipher -ali-ircc -alim7101_wdt -altera-ci -altera-stapl -altera_jtaguart -altera_ps2 -altera_tse -altera_uart -alx -am53c974 -amc6821 -amd -amd-rng -amd5536udc -amd8111_edac -amd8111e -amd8131_edac -amdgpu -amplc_dio200 -amplc_dio200_common -amplc_dio200_pci -amplc_pc236 -amplc_pc236_common -amplc_pc263 -amplc_pci224 -amplc_pci230 -amplc_pci236 -amplc_pci263 -ams369fg06 -analog -anatop-regulator -ansi_cprng -anubis -aoe -apbps2 -apds9300 -apds9802als -apds990x -apds9960 -appledisplay -appletalk -appletouch -applicom -aquantia -ar1021_i2c -ar5523 -ar7part -arc-rawmode -arc-rimi -arc4 -arc_emac -arc_ps2 -arc_uart -arcmsr -arcnet -arizona-haptics -arizona-i2c -arizona-ldo1 -arizona-micsupp -arizona-spi -ark3116 -arkfb -arp_tables -arpt_mangle -arptable_filter -as102_fe -as3711-regulator -as3711_bl -as3722-regulator -as3935 -as5011 -asc7621 -ascot2e -asix -ast -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at24 -at25 -at76c50x-usb -at803x -at86rf230 -ata_generic -ata_piix -atbm8830 -aten -ath -ath10k_core -ath10k_pci -ath3k -ath5k -ath6kl_core -ath6kl_sdio -ath6kl_usb -ath9k -ath9k_common -ath9k_htc -ath9k_hw -ati_remote -ati_remote2 -atl1 -atl1c -atl1e -atl2 -atm -atmel -atmel-flexcom -atmel-hlcdc -atmel_cs -atmel_mxt_ts -atmel_pci -atmtcp -atp870u -atusb -atxp1 -atyfb -au0828 -au8522_common -au8522_decoder -au8522_dig -aufs -auo-pixcir-ts -auo_k1900fb -auo_k1901fb -auo_k190x -auth_rpcgss -authenc -authencesn -autofs4 -avm_cs -avma1_cs -avmfritz -ax25 -ax88179_178a -axnet_cs -axp20x-pek -axp20x-regulator -axp20x_usb_power -axp288_adc -axp288_charger -axp288_fuel_gauge -b1 -b1dma -b1pci -b1pcmcia -b2c2-flexcop -b2c2-flexcop-pci -b2c2-flexcop-usb -b43 -b43legacy -b44 -bas_gigaset -batman-adv -baycom_par -baycom_ser_fdx -baycom_ser_hdx -bcache -bch -bcm-phy-lib -bcm203x -bcm3510 -bcm590xx -bcm590xx-regulator -bcm5974 -bcm7038_wdt -bcm7xxx -bcm87xx -bcma -bcma-hcd -bcmsysport -bd6107 -bdc -bdc_pci -be2iscsi -be2net -befs -belkin_sa -bfa -bfs -bfusb -bh1750 -bh1770glc -bh1780gli -binfmt_misc -block2mtd -blocklayoutdriver -blowfish_common -blowfish_generic -bluecard_cs -bluetooth -bluetooth_6lowpan -bma150 -bma180 -bmc150-accel-core -bmc150-accel-i2c -bmc150-accel-spi -bmc150_magn -bmg160_core -bmg160_i2c -bmg160_spi -bmp085 -bmp085-i2c -bmp085-spi -bmp280 -bna -bnep -bnx2 -bnx2fc -bnx2i -bnx2x -bnxt_en -bonding -bpa10x -bpck -bpqether -bq2415x_charger -bq24190_charger -bq24257_charger -bq24735-charger -bq25890_charger -bq27xxx_battery -br2684 -br_netfilter -brcmfmac -brcmsmac -brcmutil -brd -bridge -broadcom -broadsheetfb -bsd_comp -bsr -bt3c_cs -bt878 -btbcm -btcoexist -btintel -btmrvl -btmrvl_sdio -btqca -btrfs -btrtl -btsdio -bttv -btuart_cs -btusb -btwilink -bu21013_ts -budget -budget-av -budget-ci -budget-core -budget-patch -c4 -c67x00 -c6xdigio -c_can -c_can_pci -c_can_platform -cachefiles -cadence_wdt -cafe_ccic -cafe_nand -caif -caif_hsi -caif_serial -caif_socket -caif_usb -caif_virtio -camellia_generic -can -can-bcm -can-dev -can-gw -can-raw -cap11xx -capi -capidrv -capmode -carl9170 -carminefb -cassini -cast5_generic -cast6_generic -cast_common -catc -cb710 -cb710-mmc -cb_das16_cs -cb_pcidas -cb_pcidas64 -cb_pcidda -cb_pcimdas -cb_pcimdda -cc2520 -cc770 -cc770_isa -cc770_platform -cciss -ccm -cdc-acm -cdc-phonet -cdc-wdm -cdc_eem -cdc_ether -cdc_mbim -cdc_ncm -cdc_subset -ceph -cfg80211 -cfi_cmdset_0001 -cfi_cmdset_0002 -cfi_cmdset_0020 -cfi_probe -cfi_util -cfspi_slave -ch -ch341 -ch7006 -ch9200 -chacha20_generic -chacha20poly1305 -chaoskey -chipone_icn8318 -chipreg -chnl_net -ci_hdrc -ci_hdrc_imx -ci_hdrc_msm -ci_hdrc_pci -ci_hdrc_usb2 -ci_hdrc_zevio -cicada -cifs -cirrus -cirrusfb -clip -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_rsvp -cls_rsvp6 -cls_tcindex -cls_u32 -cm109 -cm32181 -cm3232 -cm3323 -cm36651 -cm4000_cs -cm4040_cs -cma3000_d0x -cma3000_d0x_i2c -cmac -cmdlinepart -cmtp -cnic -cobalt -cobra -coda -colibri-vf50-ts -com20020 -com20020-pci -com20020_cs -com90io -com90xx -comedi -comedi_8254 -comedi_8255 -comedi_bond -comedi_isadma -comedi_parport -comedi_pci -comedi_pcmcia -comedi_test -comedi_usb -comm -configfs -contec_pci_dio -cordic -core -cp210x -cpc925_edac -cpia2 -cpsw_ale -cpu-notifier-error-inject -cpufreq_spudemand -cramfs -crc-ccitt -crc-itu-t -crc32 -crc7 -crc8 -cryptd -crypto_user -cryptoloop -cs5345 -cs53l32a -csiostor -ctr -cts -cuse -cw1200_core -cw1200_wlan_sdio -cw1200_wlan_spi -cx18 -cx18-alsa -cx22700 -cx22702 -cx231xx -cx231xx-alsa -cx231xx-dvb -cx2341x -cx23885 -cx24110 -cx24113 -cx24116 -cx24117 -cx24120 -cx24123 -cx25821 -cx25821-alsa -cx25840 -cx82310_eth -cx88-alsa -cx88-blackbird -cx88-dvb -cx88-vp3054-i2c -cx8800 -cx8802 -cx88xx -cxacru -cxd2099 -cxd2820r -cxd2841er -cxgb -cxgb3 -cxgb3i -cxgb4 -cxgb4i -cxgb4vf -cxl -cxlflash -cy8ctmg110_ts -cyapatp -cyber2000fb -cyberjack -cyclades -cypress_cy7c63 -cypress_firmware -cypress_m8 -cytherm -cyttsp4_core -cyttsp4_i2c -cyttsp4_spi -cyttsp_core -cyttsp_i2c -cyttsp_i2c_common -cyttsp_spi -da9030_battery -da9034-ts -da903x -da903x_bl -da9052-battery -da9052-hwmon -da9052-regulator -da9052_bl -da9052_onkey -da9052_tsi -da9052_wdt -da9055-hwmon -da9055-regulator -da9055_onkey -da9055_wdt -da9062-core -da9062-regulator -da9062_wdt -da9063-regulator -da9063_onkey -da9063_wdt -da9150-charger -da9150-core -da9150-fg -da9150-gpadc -da9210-regulator -da9211-regulator -dac02 -daqboard2000 -das08 -das08_cs -das08_isa -das08_pci -das16 -das16m1 -das1800 -das6402 -das800 -davicom -db9 -dc395x -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -dccp_probe -ddbridge -de2104x -de4x5 -decnet -deflate -defxx -denali -denali_pci -des_generic -dgap -dgnc -dht11 -dib0070 -dib0090 -dib3000mb -dib3000mc -dib7000m -dib7000p -dib8000 -dibx000_common -digi_acceleport -digicolor-usart -diskonchip -diva_idi -diva_mnt -divacapi -divadidd -divas -dl2k -dlci -dlm -dln2 -dm-bio-prison -dm-bufio -dm-cache -dm-cache-cleaner -dm-cache-mq -dm-cache-smq -dm-crypt -dm-delay -dm-era -dm-flakey -dm-log -dm-log-userspace -dm-log-writes -dm-mirror -dm-multipath -dm-persistent-data -dm-queue-length -dm-raid -dm-region-hash -dm-round-robin -dm-service-time -dm-snapshot -dm-switch -dm-thin-pool -dm-verity -dm-zero -dm1105 -dm9601 -dmfe -dmm32at -dmx3191d -dn_rtmsg -dnet -docg3 -docg4 -dp83848 -dp83867 -drbd -drbg -drm -drm_kms_helper -drop_monitor -drv260x -drv2665 -drv2667 -drx39xyj -drxd -drxk -ds1621 -ds1682 -ds1wm -ds2482 -ds2490 -ds2760_battery -ds2780_battery -ds2781_battery -ds2782_battery -ds3000 -ds620 -dsbr100 -dscc4 -dss1_divert -dst -dst_ca -dstr -dt2801 -dt2811 -dt2814 -dt2815 -dt2817 -dt282x -dt3000 -dt3155 -dt9812 -dtl1_cs -dummy -dummy-irq -dummy_stm -dvb-as102 -dvb-bt8xx -dvb-core -dvb-pll -dvb-ttpci -dvb-ttusb-budget -dvb-usb -dvb-usb-a800 -dvb-usb-af9005 -dvb-usb-af9005-remote -dvb-usb-af9015 -dvb-usb-af9035 -dvb-usb-anysee -dvb-usb-au6610 -dvb-usb-az6007 -dvb-usb-az6027 -dvb-usb-ce6230 -dvb-usb-cinergyT2 -dvb-usb-cxusb -dvb-usb-dib0700 -dvb-usb-dibusb-common -dvb-usb-dibusb-mb -dvb-usb-dibusb-mc -dvb-usb-digitv -dvb-usb-dtt200u -dvb-usb-dtv5100 -dvb-usb-dvbsky -dvb-usb-dw2102 -dvb-usb-ec168 -dvb-usb-friio -dvb-usb-gl861 -dvb-usb-gp8psk -dvb-usb-lmedm04 -dvb-usb-m920x -dvb-usb-mxl111sf -dvb-usb-nova-t-usb2 -dvb-usb-opera -dvb-usb-pctv452e -dvb-usb-rtl28xxu -dvb-usb-technisat-usb2 -dvb-usb-ttusb2 -dvb-usb-umt-010 -dvb-usb-vp702x -dvb-usb-vp7045 -dvb_usb_v2 -dw_dmac -dw_dmac_core -dw_dmac_pci -dw_wdt -dwc3 -dwc3-pci -dwc_eth_qos -dwmac-generic -dwmac-ipq806x -dwmac-lpc18xx -dwmac-meson -dwmac-rk -dwmac-socfpga -dwmac-sti -dwmac-sunxi -dyna_pci10xx -dynapro -e100 -e1000 -e1000e -e3x0-button -e4000 -earth-pt1 -earth-pt3 -eata -ebt_802_3 -ebt_among -ebt_arp -ebt_arpreply -ebt_dnat -ebt_ip -ebt_ip6 -ebt_limit -ebt_log -ebt_mark -ebt_mark_m -ebt_nflog -ebt_pkttype -ebt_redirect -ebt_snat -ebt_stp -ebt_vlan -ebtable_broute -ebtable_filter -ebtable_nat -ebtables -ec100 -echainiv -echo -edac_core -edt-ft5x06 -eeprom -eeprom_93cx6 -eeprom_93xx46 -eeti_ts -efs -egalax_ts -ehset -elan_i2c -electra_cf -elo -elsa_cs -em28xx -em28xx-alsa -em28xx-dvb -em28xx-rc -em28xx-v4l -em_canid -em_cmp -em_ipset -em_meta -em_nbyte -em_text -em_u32 -emac_arc -emac_rockchip -emc1403 -emc2103 -emc6w201 -emi26 -emi62 -empeg -ems_pci -ems_pcmcia -ems_usb -emu10k1-gp -enc28j60 -enclosure -encx24j600 -encx24j600-regmap -eni -enic -epat -epia -epic100 -eql -esas2r -esd_usb2 -esi-sir -esp4 -esp6 -esp_scsi -et1011c -et131x -ethoc -evbug -exofs -extcon-adc-jack -extcon-arizona -extcon-axp288 -extcon-gpio -extcon-max14577 -extcon-max77693 -extcon-max77843 -extcon-max8997 -extcon-palmas -extcon-rt8973a -extcon-sm5502 -extcon-usb-gpio -ezusb -f2fs -f75375s -f81232 -fakelb -fan53555 -farsync -faulty -fb_agm1264k-fl -fb_bd663474 -fb_ddc -fb_hx8340bn -fb_hx8347d -fb_hx8353d -fb_hx8357d -fb_ili9163 -fb_ili9320 -fb_ili9325 -fb_ili9340 -fb_ili9341 -fb_ili9481 -fb_ili9486 -fb_pcd8544 -fb_ra8875 -fb_s6d02a1 -fb_s6d1121 -fb_ssd1289 -fb_ssd1306 -fb_ssd1331 -fb_ssd1351 -fb_st7735r -fb_st7789v -fb_tinylcd -fb_tls8204 -fb_uc1611 -fb_uc1701 -fb_upd161704 -fb_watterott -fbtft -fbtft_device -fc0011 -fc0012 -fc0013 -fc2580 -fcoe -fcrypt -fdomain -fdomain_cs -fdp -fdp_i2c -fealnx -ff-memless -firedtv -firewire-core -firewire-net -firewire-ohci -firewire-sbp2 -firewire-serial -fit2 -fit3 -fixed -fl512 -flexcan -flexfb -floppy -fm10k -fm801-gp -fm_drv -fmc -fmc-chardev -fmc-fakedev -fmc-trivial -fmc-write-eeprom -fmvj18x_cs -forcedeth -fore_200e -fotg210-hcd -fotg210-udc -fou -fpga-mgr -freevxfs -friq -frpw -fsa9480 -fscache -fsl-edma -fsl_elbc_nand -fsl_lpuart -ft6236 -ftdi-elan -ftdi_sio -ftl -fujitsu_ts -g450_pll -g760a -g762 -g_acm_ms -g_audio -g_cdc -g_dbgp -g_ether -g_ffs -g_hid -g_mass_storage -g_midi -g_ncm -g_nokia -g_printer -g_serial -g_webcam -g_zero -gadgetfs -gamecon -gameport -garmin_gps -garp -gcm -gdmtty -gdmulte -gdmwm -gdth -gen_probe -generic -generic-adc-battery -generic_bl -genet -geneve -gennvm -genwqe_card -gf128mul -gf2k -gfs2 -ghash-generic -gigaset -girbil-sir -gl518sm -gl520sm -gl620a -gluebi -go7007 -go7007-loader -go7007-usb -goku_udc -goodix -gp2ap002a00f -gp2ap020a00f -gpio -gpio-74x164 -gpio-74xx-mmio -gpio-addr-flash -gpio-adnp -gpio-adp5520 -gpio-adp5588 -gpio-altera -gpio-amd8111 -gpio-arizona -gpio-beeper -gpio-charger -gpio-crystalcove -gpio-da9052 -gpio-da9055 -gpio-dln2 -gpio-dwapb -gpio-fan -gpio-generic -gpio-grgpio -gpio-ir-recv -gpio-janz-ttl -gpio-kempld -gpio-lp3943 -gpio-max7300 -gpio-max7301 -gpio-max730x -gpio-max732x -gpio-mc33880 -gpio-mcp23s08 -gpio-ml-ioh -gpio-pca953x -gpio-pcf857x -gpio-rdc321x -gpio-regulator -gpio-syscon -gpio-tps65912 -gpio-twl4030 -gpio-twl6040 -gpio-ucb1400 -gpio-viperboard -gpio-vx855 -gpio-wm831x -gpio-wm8350 -gpio-wm8994 -gpio_backlight -gpio_keys -gpio_keys_polled -gpio_mdio -gpio_mouse -gpio_tilt_polled -gpio_wdt -gr_udc -grace -grcan -gre -grip -grip_mp -gs_fpga -gs_usb -gsc_hpdi -gspca_benq -gspca_conex -gspca_cpia1 -gspca_dtcs033 -gspca_etoms -gspca_finepix -gspca_gl860 -gspca_jeilinj -gspca_jl2005bcd -gspca_kinect -gspca_konica -gspca_m5602 -gspca_main -gspca_mars -gspca_mr97310a -gspca_nw80x -gspca_ov519 -gspca_ov534 -gspca_ov534_9 -gspca_pac207 -gspca_pac7302 -gspca_pac7311 -gspca_se401 -gspca_sn9c2028 -gspca_sn9c20x -gspca_sonixb -gspca_sonixj -gspca_spca1528 -gspca_spca500 -gspca_spca501 -gspca_spca505 -gspca_spca506 -gspca_spca508 -gspca_spca561 -gspca_sq905 -gspca_sq905c -gspca_sq930x -gspca_stk014 -gspca_stk1135 -gspca_stv0680 -gspca_stv06xx -gspca_sunplus -gspca_t613 -gspca_topro -gspca_touptek -gspca_tv8532 -gspca_vc032x -gspca_vicam -gspca_xirlink_cit -gspca_zc3xx -gtco -guillemot -gunze -gxt4500 -hackrf -hamachi -hampshire -hangcheck-timer -hanwang -hci -hci_uart -hci_vhci -hdc100x -hdlc -hdlc_cisco -hdlc_fr -hdlc_ppp -hdlc_raw -hdlc_raw_eth -hdlc_x25 -hdlcdrv -hdm_dim2 -hdm_i2c -hdm_usb -hdpvr -he -hexium_gemini -hexium_orion -hfc4s8s_l1 -hfc_usb -hfcmulti -hfcpci -hfcsusb -hfs -hfsplus -hi6421-pmic-core -hi6421-regulator -hi8435 -hid -hid-a4tech -hid-alps -hid-apple -hid-appleir -hid-aureal -hid-axff -hid-belkin -hid-betopff -hid-cherry -hid-chicony -hid-corsair -hid-cp2112 -hid-cypress -hid-dr -hid-elecom -hid-elo -hid-emsff -hid-ezkey -hid-gaff -hid-gembird -hid-generic -hid-gfrm -hid-gt683r -hid-gyration -hid-holtek-kbd -hid-holtek-mouse -hid-holtekff -hid-icade -hid-kensington -hid-keytouch -hid-kye -hid-lcpower -hid-lenovo -hid-logitech -hid-logitech-dj -hid-logitech-hidpp -hid-magicmouse -hid-microsoft -hid-monterey -hid-multitouch -hid-ntrig -hid-ortek -hid-penmount -hid-petalynx -hid-picolcd -hid-pl -hid-plantronics -hid-primax -hid-prodikeys -hid-rmi -hid-roccat -hid-roccat-arvo -hid-roccat-common -hid-roccat-isku -hid-roccat-kone -hid-roccat-koneplus -hid-roccat-konepure -hid-roccat-kovaplus -hid-roccat-lua -hid-roccat-pyra -hid-roccat-ryos -hid-roccat-savu -hid-saitek -hid-samsung -hid-sensor-accel-3d -hid-sensor-als -hid-sensor-custom -hid-sensor-gyro-3d -hid-sensor-hub -hid-sensor-iio-common -hid-sensor-incl-3d -hid-sensor-magn-3d -hid-sensor-press -hid-sensor-prox -hid-sensor-rotation -hid-sensor-trigger -hid-sjoy -hid-sony -hid-speedlink -hid-steelseries -hid-sunplus -hid-thingm -hid-tivo -hid-tmff -hid-topseed -hid-twinhan -hid-uclogic -hid-waltop -hid-wiimote -hid-xinmo -hid-zpff -hid-zydacron -hidp -hih6130 -hisax -hisax_fcpcipnp -hisax_isac -hisax_st5481 -hisi504_nand -hmc5843_core -hmc5843_i2c -hmc5843_spi -hmc6352 -hopper -horus3a -hostap -hostap_cs -hostap_pci -hostap_plx -hp100 -hpfs -hpilo -hpsa -hptiop -hsi -hsi_char -hso -hsr -hsu_dma -htc-pasic3 -hts221 -hts221_i2c -hts221_spi -htu21 -huawei_cdc_ncm -hvcs -hvcserver -hwa-hc -hwa-rc -hwmon-vid -hwpoison-inject -hx8357 -hysdn -i1480-dfu-usb -i1480-est -i2400m -i2400m-usb -i2c-algo-bit -i2c-algo-pca -i2c-ali1535 -i2c-ali1563 -i2c-ali15x3 -i2c-amd756 -i2c-amd8111 -i2c-arb-gpio-challenge -i2c-cbus-gpio -i2c-designware-core -i2c-designware-pci -i2c-designware-platform -i2c-diolan-u2c -i2c-dln2 -i2c-gpio -i2c-hid -i2c-i801 -i2c-isch -i2c-kempld -i2c-matroxfb -i2c-mpc -i2c-mux -i2c-mux-gpio -i2c-mux-pca9541 -i2c-mux-pca954x -i2c-mux-reg -i2c-nforce2 -i2c-ocores -i2c-parport -i2c-parport-light -i2c-pasemi -i2c-pca-platform -i2c-piix4 -i2c-robotfuzz-osif -i2c-simtec -i2c-sis5595 -i2c-sis630 -i2c-sis96x -i2c-smbus -i2c-stub -i2c-taos-evm -i2c-tiny-usb -i2c-via -i2c-viapro -i2c-viperboard -i2c-xiic -i40e -i40evf -i5k_amb -i6300esb -i740fb -i82092 -ib_addr -ib_cm -ib_core -ib_ehca -ib_ipoib -ib_iser -ib_isert -ib_mad -ib_mthca -ib_qib -ib_sa -ib_srp -ib_srpt -ib_ucm -ib_umad -ib_uverbs -ibmaem -ibmpex -ibmpowernv -ibmveth -ibmvfc -ibmvnic -ibmvscsi -ibmvscsis -icom -icp_multi -icplus -ics932s401 -ideapad_slidebar -idma64 -idmouse -idt77252 -idt_gen2 -idtcps -ieee802154 -ieee802154_6lowpan -ieee802154_socket -ifb -iforce -igb -igbvf -igorplugusb -iguanair -ii_pci20kc -iio-trig-interrupt -iio-trig-periodic-rtc -iio-trig-sysfs -iio_dummy -iio_hwmon -ila -ili210x -ili922x -ili9320 -imm -imon -ims-pcu -imx074 -imx6ul_tsc -imx_thermal -ina209 -ina2xx -industrialio -industrialio-buffer-cb -industrialio-triggered-buffer -industrialio-triggered-event -inet_diag -inexio -inftl -initio -input-leds -input-polldev -int51x1 -intel_th -intel_th_gth -intel_th_msu -intel_th_pci -intel_th_pti -intel_th_sth -intel_vr_nor -interact -interval_tree_test -inv-mpu6050 -io_edgeport -io_ti -ioc4 -iowarrior -ip6_gre -ip6_tables -ip6_tunnel -ip6_udp_tunnel -ip6_vti -ip6t_MASQUERADE -ip6t_NPT -ip6t_REJECT -ip6t_SYNPROXY -ip6t_ah -ip6t_eui64 -ip6t_frag -ip6t_hbh -ip6t_ipv6header -ip6t_mh -ip6t_rpfilter -ip6t_rt -ip6table_filter -ip6table_mangle -ip6table_nat -ip6table_raw -ip6table_security -ip_gre -ip_set -ip_set_bitmap_ip -ip_set_bitmap_ipmac -ip_set_bitmap_port -ip_set_hash_ip -ip_set_hash_ipmark -ip_set_hash_ipport -ip_set_hash_ipportip -ip_set_hash_ipportnet -ip_set_hash_mac -ip_set_hash_net -ip_set_hash_netiface -ip_set_hash_netnet -ip_set_hash_netport -ip_set_hash_netportnet -ip_set_list_set -ip_tables -ip_tunnel -ip_vs -ip_vs_dh -ip_vs_fo -ip_vs_ftp -ip_vs_lblc -ip_vs_lblcr -ip_vs_lc -ip_vs_nq -ip_vs_ovf -ip_vs_pe_sip -ip_vs_rr -ip_vs_sed -ip_vs_sh -ip_vs_wlc -ip_vs_wrr -ip_vti -ipack -ipaq -ipcomp -ipcomp6 -ipddp -iphase -ipheth -ipip -ipmi_devintf -ipmi_msghandler -ipmi_powernv -ipmi_poweroff -ipmi_si -ipmi_ssif -ipmi_watchdog -ipoctal -ipr -ips -ipt_CLUSTERIP -ipt_ECN -ipt_MASQUERADE -ipt_REJECT -ipt_SYNPROXY -ipt_ah -ipt_rpfilter -iptable_filter -iptable_mangle -iptable_nat -iptable_raw -iptable_security -ipvlan -ipw -ipw2100 -ipw2200 -ipwireless -ipx -ir-hix5hd2 -ir-jvc-decoder -ir-kbd-i2c -ir-lirc-codec -ir-mce_kbd-decoder -ir-nec-decoder -ir-rc5-decoder -ir-rc6-decoder -ir-sanyo-decoder -ir-sharp-decoder -ir-sony-decoder -ir-usb -ir-xmp-decoder -ircomm -ircomm-tty -irda -irda-usb -irlan -irnet -irqbypass -irtty-sir -iscsi_boot_sysfs -iscsi_target_mod -iscsi_tcp -isdn -isdn_bsdcomp -isdnhdlc -isicom -isight_firmware -isl29003 -isl29018 -isl29020 -isl29028 -isl29125 -isl6271a-regulator -isl6405 -isl6421 -isl6423 -isl9305 -isofs -isp116x-hcd -isp1362-hcd -isp1704_charger -isp1760 -it913x -itd1000 -itg3200 -iuu_phoenix -ivtv -ivtv-alsa -ivtvfb -iw_c2 -iw_cm -iw_cxgb3 -iw_cxgb4 -iw_nes -iwl3945 -iwl4965 -iwldvm -iwlegacy -iwlmvm -iwlwifi -ix2505v -ixgb -ixgbe -ixgbevf -janz-cmodio -janz-ican3 -jc42 -jedec_probe -jffs2 -jfs -jitterentropy_rng -jmb38x_ms -jme -joydev -joydump -jr3_pci -jsa1212 -jsm -kafs -kalmia -kaweth -kbic -kbtab -kcomedilib -ke_counter -kempld-core -kempld_wdt -kernelcapi -keyspan -keyspan_pda -keyspan_remote -keywrap -kfifo_buf -khazad -kingsun-sir -kl5kusb105 -kmx61 -kobil_sct -ks0108 -ks8842 -ks8851 -ks8851_mll -ks959-sir -ksdazzle-sir -ksz884x -ktti -kvaser_pci -kvaser_usb -kvm -kvm-hv -kvm-pr -kxcjk-1013 -kxsd9 -kxtj9 -kyrofb -l1oip -l2tp_core -l2tp_debugfs -l2tp_eth -l2tp_ip -l2tp_ip6 -l2tp_netlink -l2tp_ppp -l4f00242t03 -l64781 -lan78xx -lanai -lapb -lapbether -latch-addr-flash -lattice-ecp3-config -lcd -ld9040 -ldusb -lec -led-class-flash -leds-88pm860x -leds-adp5520 -leds-bcm6328 -leds-bcm6358 -leds-bd2802 -leds-blinkm -leds-da903x -leds-da9052 -leds-dac124s085 -leds-gpio -leds-ktd2692 -leds-lm3530 -leds-lm3533 -leds-lm355x -leds-lm3642 -leds-lp3944 -leds-lp5521 -leds-lp5523 -leds-lp5562 -leds-lp55xx-common -leds-lp8501 -leds-lp8788 -leds-lp8860 -leds-lt3593 -leds-max77693 -leds-max8997 -leds-mc13783 -leds-menf21bmc -leds-pca9532 -leds-pca955x -leds-pca963x -leds-powernv -leds-pwm -leds-regulator -leds-tca6507 -leds-tlc591xx -leds-wm831x-status -leds-wm8350 -ledtrig-backlight -ledtrig-camera -ledtrig-default-on -ledtrig-gpio -ledtrig-heartbeat -ledtrig-oneshot -ledtrig-timer -ledtrig-transient -legousbtower -lg-vl600 -lg2160 -lgdt3305 -lgdt3306a -lgdt330x -lgs8gxx -lib80211 -lib80211_crypt_ccmp -lib80211_crypt_tkip -lib80211_crypt_wep -libahci -libahci_platform -libceph -libcomposite -libcrc32c -libcxgbi -libertas -libertas_cs -libertas_sdio -libertas_spi -libertas_tf -libertas_tf_usb -libfc -libfcoe -libipw -libiscsi -libiscsi_tcp -libore -libosd -libsas -lightning -lineage-pem -linear -liquidio -lirc_bt829 -lirc_dev -lirc_imon -lirc_parallel -lirc_sasem -lirc_serial -lirc_sir -lirc_zilog -lis3l02dq -lis3lv02d -lis3lv02d_i2c -lis3lv02d_spi -litelink-sir -lkkbd -ll_temac -llc -llc2 -lm25066 -lm3533-als -lm3533-core -lm3533-ctrlbank -lm3533_bl -lm3630a_bl -lm3639_bl -lm63 -lm70 -lm73 -lm75 -lm77 -lm78 -lm80 -lm83 -lm8323 -lm8333 -lm85 -lm87 -lm90 -lm92 -lm93 -lm95234 -lm95241 -lm95245 -lms283gf05 -lms501kf03 -lnbh25 -lnbp21 -lnbp22 -lockd -locktorture -lp -lp3943 -lp3971 -lp3972 -lp855x_bl -lp8727_charger -lp872x -lp8755 -lp8788-buck -lp8788-charger -lp8788-ldo -lp8788_adc -lp8788_bl -lpc_ich -lpc_sch -lpddr_cmds -lpfc -lru_cache -lrw -ltc2941-battery-gauge -ltc2945 -ltc2978 -ltc3589 -ltc4151 -ltc4215 -ltc4222 -ltc4245 -ltc4260 -ltc4261 -ltr501 -ltv350qv -lv5207lp -lvstest -lxt -lz4 -lz4_compress -lz4hc -lz4hc_compress -m25p80 -m2m-deinterlace -m52790 -m62332 -m88ds3103 -m88rs2000 -m88rs6000t -mISDN_core -mISDN_dsp -mISDNinfineon -mISDNipac -mISDNisar -m_can -ma600-sir -mac-celtic -mac-centeuro -mac-croatian -mac-cyrillic -mac-gaelic -mac-greek -mac-iceland -mac-inuit -mac-roman -mac-romanian -mac-turkish -mac80211 -mac80211_hwsim -mac802154 -mac_hid -macb -macvlan -macvtap -mag3110 -magellan -mailbox-altera -mailbox-test -mantis -mantis_core -map_absent -map_funcs -map_ram -map_rom -marvell -matrix-keymap -matrix_keypad -matrox_w1 -matroxfb_DAC1064 -matroxfb_Ti3026 -matroxfb_accel -matroxfb_base -matroxfb_crtc2 -matroxfb_g450 -matroxfb_maven -matroxfb_misc -max1027 -max1111 -max11801_ts -max1363 -max14577 -max14577_charger -max1586 -max16064 -max16065 -max1619 -max1668 -max17040_battery -max17042_battery -max197 -max20751 -max2165 -max3100 -max31790 -max3421-hcd -max34440 -max517 -max5821 -max63xx_wdt -max6639 -max6642 -max6650 -max6697 -max6875 -max7359_keypad -max77686 -max77693 -max77693-haptic -max77693_charger -max77802 -max8649 -max8660 -max8688 -max8903_charger -max8907 -max8907-regulator -max8925-regulator -max8925_bl -max8925_onkey -max8925_power -max8952 -max8973-regulator -max8997 -max8997_charger -max8997_haptic -max8998 -max8998_charger -mb862xxfb -mb86a16 -mb86a20s -mc13783-adc -mc13783-pwrbutton -mc13783-regulator -mc13783_ts -mc13892-regulator -mc13xxx-core -mc13xxx-i2c -mc13xxx-regulator-core -mc13xxx-spi -mc44s803 -mcb -mcb-pci -mceusb -mcp2120-sir -mcp251x -mcp3021 -mcp320x -mcp3422 -mcp4531 -mcp4725 -mcp4922 -mcryptd -mcs5000_ts -mcs7780 -mcs7830 -mcs_touchkey -mct_u232 -md-cluster -md4 -md5-ppc -mdc800 -mdio -mdio-bcm-unimac -mdio-bitbang -mdio-cavium -mdio-gpio -mdio-mux -mdio-mux-gpio -mdio-mux-mmioreg -mdio-octeon -mdio-thunder -mdio-xgene -me4000 -me_daq -media -megaraid -megaraid_mbox -megaraid_mm -megaraid_sas -memory-notifier-error-inject -memstick -men_z135_uart -men_z188_adc -mena21_wdt -menf21bmc -menf21bmc_hwmon -menf21bmc_wdt -metro-usb -metronomefb -mf6x4 -mga -michael_mic -micrel -microchip -microread -microread_i2c -microtek -mii -minix -mip6 -mite -mk712 -mkiss -mlx4_core -mlx4_en -mlx4_ib -mlx5_core -mlx5_ib -mlx90614 -mlxsw_core -mlxsw_pci -mma8450 -mma8452 -mma9551 -mma9551_core -mma9553 -mmc35240 -mmc_block -mmc_spi -mms114 -mn88472 -mn88473 -mos7720 -mos7840 -mostcore -moxa -mpc624 -mpl115 -mpl3115 -mpls_gso -mpls_iptunnel -mpls_router -mpoa -mpr121_touchkey -mpt3sas -mptbase -mptctl -mptfc -mptlan -mptsas -mptscsih -mptspi -mpu3050 -mrf24j40 -mrp -ms5611_core -ms5611_i2c -ms5611_spi -ms5637 -ms_block -ms_sensors_i2c -msdos -msi001 -msi2500 -msp3400 -mspro_block -mt2060 -mt2063 -mt20xx -mt2131 -mt2266 -mt29f_spinand -mt312 -mt352 -mt6311-regulator -mt6397-core -mt6397-regulator -mt7601u -mt9m001 -mt9m111 -mt9t031 -mt9t112 -mt9v011 -mt9v022 -mtd -mtd_blkdevs -mtd_dataflash -mtdblock -mtdblock_ro -mtdoops -mtdram -mtdswap -mtip32xx -mtk-sd -mtouch -multipath -multiq3 -musb_hdrc -mv_u3d_core -mv_udc -mvmdio -mvsas -mvumi -mwifiex -mwifiex_pcie -mwifiex_sdio -mwifiex_usb -mwl8k -mxb -mxc4005 -mxl111sf-demod -mxl111sf-tuner -mxl301rf -mxl5005s -mxl5007t -mxser -mxuport -myri10ge -n_gsm -n_hdlc -n_r3964 -n_tracerouter -n_tracesink -nand -nand_bch -nand_ecc -nand_ids -nandsim -national -natsemi -nau7802 -navman -nb8800 -nbd -nci -nci_spi -nci_uart -ncpfs -nct7802 -nct7904 -nd_blk -nd_btt -nd_pmem -ne2k-pci -neofb -net1080 -net2272 -net2280 -netconsole -netjet -netlink_diag -netrom -netup-unidvb -netxen_nic -newtonkbd -nf_conntrack -nf_conntrack_amanda -nf_conntrack_broadcast -nf_conntrack_ftp -nf_conntrack_h323 -nf_conntrack_ipv4 -nf_conntrack_ipv6 -nf_conntrack_irc -nf_conntrack_netbios_ns -nf_conntrack_netlink -nf_conntrack_pptp -nf_conntrack_proto_dccp -nf_conntrack_proto_gre -nf_conntrack_proto_sctp -nf_conntrack_proto_udplite -nf_conntrack_sane -nf_conntrack_sip -nf_conntrack_snmp -nf_conntrack_tftp -nf_defrag_ipv4 -nf_defrag_ipv6 -nf_dup_ipv4 -nf_dup_ipv6 -nf_log_arp -nf_log_bridge -nf_log_common -nf_log_ipv4 -nf_log_ipv6 -nf_nat -nf_nat_amanda -nf_nat_ftp -nf_nat_h323 -nf_nat_ipv4 -nf_nat_ipv6 -nf_nat_irc -nf_nat_masquerade_ipv4 -nf_nat_masquerade_ipv6 -nf_nat_pptp -nf_nat_proto_dccp -nf_nat_proto_gre -nf_nat_proto_sctp -nf_nat_proto_udplite -nf_nat_redirect -nf_nat_sip -nf_nat_snmp_basic -nf_nat_tftp -nf_reject_ipv4 -nf_reject_ipv6 -nf_synproxy_core -nf_tables -nf_tables_arp -nf_tables_bridge -nf_tables_inet -nf_tables_ipv4 -nf_tables_ipv6 -nf_tables_netdev -nfc -nfc_digital -nfcmrvl -nfcmrvl_i2c -nfcmrvl_spi -nfcmrvl_uart -nfcmrvl_usb -nfcsim -nfcwilink -nfnetlink -nfnetlink_acct -nfnetlink_cthelper -nfnetlink_cttimeout -nfnetlink_log -nfnetlink_queue -nfs -nfs_acl -nfs_layout_flexfiles -nfs_layout_nfsv41_files -nfsd -nfsv2 -nfsv3 -nfsv4 -nft_chain_nat_ipv4 -nft_chain_nat_ipv6 -nft_chain_route_ipv4 -nft_chain_route_ipv6 -nft_compat -nft_counter -nft_ct -nft_dup_ipv4 -nft_dup_ipv6 -nft_exthdr -nft_hash -nft_limit -nft_log -nft_masq -nft_masq_ipv4 -nft_masq_ipv6 -nft_meta -nft_meta_bridge -nft_nat -nft_queue -nft_rbtree -nft_redir -nft_redir_ipv4 -nft_redir_ipv6 -nft_reject -nft_reject_bridge -nft_reject_inet -nft_reject_ipv4 -nft_reject_ipv6 -nftl -ngene -nhc_dest -nhc_fragment -nhc_hop -nhc_ipv6 -nhc_mobility -nhc_routing -nhc_udp -ni_6527 -ni_65xx -ni_660x -ni_670x -ni_at_a2150 -ni_at_ao -ni_atmio -ni_atmio16d -ni_daq_700 -ni_daq_dio24 -ni_labpc -ni_labpc_common -ni_labpc_cs -ni_labpc_isadma -ni_labpc_pci -ni_mio_cs -ni_pcidio -ni_pcimio -ni_tio -ni_tiocmd -ni_usb6501 -nicpf -nicstar -nicvf -nilfs2 -niu -nlmon -nls_ascii -nls_cp1250 -nls_cp1251 -nls_cp1255 -nls_cp737 -nls_cp775 -nls_cp850 -nls_cp852 -nls_cp855 -nls_cp857 -nls_cp860 -nls_cp861 -nls_cp862 -nls_cp863 -nls_cp864 -nls_cp865 -nls_cp866 -nls_cp869 -nls_cp874 -nls_cp932 -nls_cp936 -nls_cp949 -nls_cp950 -nls_euc-jp -nls_iso8859-13 -nls_iso8859-14 -nls_iso8859-15 -nls_iso8859-2 -nls_iso8859-3 -nls_iso8859-4 -nls_iso8859-5 -nls_iso8859-6 -nls_iso8859-7 -nls_iso8859-9 -nls_koi8-r -nls_koi8-ru -nls_koi8-u -nls_utf8 -nmclan_cs -nosy -notifier-error-inject -nouveau -nozomi -nps_enet -ns558 -ns83820 -nsc-ircc -ntb -ntb_netdev -ntb_pingpong -ntb_tool -ntb_transport -ntc_thermistor -ntfs -null_blk -nvidiafb -nvme -nvmem_core -nx-compress -nx-compress-powernv -nx-compress-pseries -nx-crypto -nxp-nci -nxp-nci_i2c -nxp-ptn3460 -nxt200x -nxt6000 -objlayoutdriver -ocfb -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -ocrdma -of_mmc_spi -of_xilinx_wdt -ofpart -old_belkin-sir -omap4-keypad -omfs -omninet -on20 -on26 -onenand -opal-prd -opencores-kbd -openvswitch -oprofile -opt3001 -opticon -option -or51132 -or51211 -orinoco -orinoco_cs -orinoco_nortel -orinoco_plx -orinoco_tmd -orinoco_usb -osd -osdblk -osst -oti6858 -ov2640 -ov5642 -ov6650 -ov7640 -ov7670 -ov772x -ov9640 -ov9740 -overlay -oxu210hp-hcd -p54common -p54pci -p54spi -p54usb -p8022 -p8023 -pa12203001 -palmas-pwrbutton -palmas-regulator -pandora_bl -panel -panel-lg-lg4573 -panel-samsung-ld9040 -panel-samsung-s6e8aa0 -panel-sharp-lq101r1sx01 -panel-simple -parade-ps8622 -paride -parkbd -parport -parport_ax88796 -parport_cs -parport_pc -parport_serial -pasemi-rng -pasemi_edac -pasemi_nand -pata_ali -pata_amd -pata_artop -pata_atiixp -pata_atp867x -pata_cmd640 -pata_cmd64x -pata_cypress -pata_efar -pata_hpt366 -pata_hpt37x -pata_hpt3x2n -pata_hpt3x3 -pata_it8213 -pata_it821x -pata_jmicron -pata_legacy -pata_marvell -pata_mpiix -pata_netcell -pata_ninja32 -pata_ns87410 -pata_ns87415 -pata_of_platform -pata_oldpiix -pata_opti -pata_optidma -pata_pcmcia -pata_pdc2027x -pata_pdc202xx_old -pata_piccolo -pata_platform -pata_radisys -pata_rdc -pata_rz1000 -pata_sch -pata_serverworks -pata_sil680 -pata_sis -pata_sl82c105 -pata_triflex -pata_via -pc300too -pcap-regulator -pcap_keys -pcap_ts -pcbc -pcd -pcf50633 -pcf50633-adc -pcf50633-backlight -pcf50633-charger -pcf50633-gpio -pcf50633-input -pcf50633-regulator -pcf8574_keypad -pcf8591 -pch_udc -pci -pci-stub -pci200syn -pcips2 -pcl711 -pcl724 -pcl726 -pcl730 -pcl812 -pcl816 -pcl818 -pcm3724 -pcmad -pcmcia -pcmcia_core -pcmcia_rsrc -pcmciamtd -pcmda12 -pcmmio -pcmuio -pcnet32 -pcnet_cs -pcrypt -pcspkr -pcwd_pci -pcwd_usb -pd -pd6729 -pda_power -pdc_adma -peak_pci -peak_pcmcia -peak_usb -pegasus -penmount -percpu_test -pf -pfuze100-regulator -pg -phantom -phonet -phram -phy-bcm-kona-usb2 -phy-exynos-usb2 -phy-gpio-vbus-usb -phy-isp1301 -phy-pxa-28nm-hsic -phy-pxa-28nm-usb2 -phy-tahvo -phy-tusb1210 -physmap -physmap_of -pixcir_i2c_ts -pkcs7_test_key -pktcdvd -pktgen -pl2303 -plat-ram -plat_nand -platform_lcd -plip -plusb -pluto2 -plx_pci -pm-notifier-error-inject -pm2fb -pm3fb -pm80xx -pm8941-wled -pmbus -pmbus_core -pmc551 -pmcraid -pn533 -pn544 -pn544_i2c -pn_pep -poly1305_generic -port100 -powermate -powernv-rng -powernv_flash -powr1220 -ppa -ppdev -ppp_async -ppp_deflate -ppp_mppe -ppp_synctty -pppoatm -pppoe -pppox -pps-gpio -pps-ldisc -pps_core -pps_parport -pptp -prism2_usb -ps2mult -ps3-lpm -ps3_gelic -ps3disk -ps3flash -ps3rom -ps3stor_lib -ps3vram -pseries-rng -pseries_energy -psmouse -psnap -pt -ptp -pulsedlight-lidar-lite-v2 -pvrusb2 -pwc -pwm-beeper -pwm-fan -pwm-fsl-ftm -pwm-lp3943 -pwm-pca9685 -pwm-regulator -pwm-twl -pwm-twl-led -pwm_bl -pxa27x_udc -qcaspi -qcaux -qcom-spmi-iadc -qcom-spmi-temp-alarm -qcom-spmi-vadc -qcom_spmi-regulator -qcserial -qed -qede -qinfo_probe -qla1280 -qla2xxx -qla3xxx -qla4xxx -qlcnic -qlge -qlogic_cs -qlogicfas408 -qm1d1c0042 -qmi_wwan -qnx4 -qnx6 -qsemi -qt1010 -qt1070 -qt2160 -quatech2 -quatech_daqp_cs -quota_tree -quota_v1 -quota_v2 -qxl -r128 -r592 -r6040 -r8152 -r8169 -r8188eu -r8192e_pci -r8192u_usb -r820t -r852 -r8712u -r8723au -r8a66597-hcd -r8a66597-udc -rack-meter -radeon -radeonfb -radio-bcm2048 -radio-i2c-si470x -radio-keene -radio-ma901 -radio-maxiradio -radio-mr800 -radio-platform-si4713 -radio-raremono -radio-shark -radio-si476x -radio-tea5764 -radio-usb-si470x -radio-usb-si4713 -radio-wl1273 -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid6test -raid_class -ramoops -raw -ray_cs -rbd -rbtree_test -rc-adstech-dvb-t-pci -rc-alink-dtu-m -rc-anysee -rc-apac-viewcomp -rc-asus-pc39 -rc-asus-ps3-100 -rc-ati-tv-wonder-hd-600 -rc-ati-x10 -rc-avermedia -rc-avermedia-a16d -rc-avermedia-cardbus -rc-avermedia-dvbt -rc-avermedia-m135a -rc-avermedia-m733a-rm-k6 -rc-avermedia-rm-ks -rc-avertv-303 -rc-azurewave-ad-tu700 -rc-behold -rc-behold-columbus -rc-budget-ci-old -rc-cinergy -rc-cinergy-1400 -rc-core -rc-delock-61959 -rc-dib0700-nec -rc-dib0700-rc5 -rc-digitalnow-tinytwin -rc-digittrade -rc-dm1105-nec -rc-dntv-live-dvb-t -rc-dntv-live-dvbt-pro -rc-dvbsky -rc-em-terratec -rc-encore-enltv -rc-encore-enltv-fm53 -rc-encore-enltv2 -rc-evga-indtube -rc-eztv -rc-flydvb -rc-flyvideo -rc-fusionhdtv-mce -rc-gadmei-rm008z -rc-genius-tvgo-a11mce -rc-gotview7135 -rc-hauppauge -rc-imon-mce -rc-imon-pad -rc-iodata-bctv7e -rc-it913x-v1 -rc-it913x-v2 -rc-kaiomy -rc-kworld-315u -rc-kworld-pc150u -rc-kworld-plus-tv-analog -rc-leadtek-y04g0051 -rc-lirc -rc-lme2510 -rc-loopback -rc-manli -rc-medion-x10 -rc-medion-x10-digitainer -rc-medion-x10-or2x -rc-msi-digivox-ii -rc-msi-digivox-iii -rc-msi-tvanywhere -rc-msi-tvanywhere-plus -rc-nebula -rc-nec-terratec-cinergy-xs -rc-norwood -rc-npgtech -rc-pctv-sedna -rc-pinnacle-color -rc-pinnacle-grey -rc-pinnacle-pctv-hd -rc-pixelview -rc-pixelview-002t -rc-pixelview-mk12 -rc-pixelview-new -rc-powercolor-real-angel -rc-proteus-2309 -rc-purpletv -rc-pv951 -rc-rc6-mce -rc-real-audio-220-32-keys -rc-reddo -rc-snapstream-firefly -rc-streamzap -rc-su3000 -rc-tbs-nec -rc-technisat-ts35 -rc-technisat-usb2 -rc-terratec-cinergy-c-pci -rc-terratec-cinergy-s2-hd -rc-terratec-cinergy-xs -rc-terratec-slim -rc-terratec-slim-2 -rc-tevii-nec -rc-tivo -rc-total-media-in-hand -rc-total-media-in-hand-02 -rc-trekstor -rc-tt-1500 -rc-twinhan-dtv-cab-ci -rc-twinhan1027 -rc-videomate-m1f -rc-videomate-s350 -rc-videomate-tv-pvr -rc-winfast -rc-winfast-usbii-deluxe -rc5t583-regulator -rdc321x-southbridge -rdma_cm -rdma_ucm -rds -rds_rdma -rds_tcp -realtek -redboot -redrat3 -reed_solomon -regmap-spmi -regulator-haptic -reiserfs -remoteproc -retu-mfd -retu-pwrbutton -retu_wdt -rfc1051 -rfc1201 -rfcomm -rfd_ftl -rfkill-gpio -rfkill-regulator -rio-scan -rio500 -rionet -rivafb -rj54n1cb0c -rk808 -rk808-regulator -rmd128 -rmd160 -rmd256 -rmd320 -rn5t618 -rn5t618-regulator -rn5t618_wdt -rndis_host -rndis_wlan -rocket -rohm_bu21023 -romfs -rose -rotary_encoder -rp2 -rpadlpar_io -rpaphp -rpcrdma -rpcsec_gss_krb5 -rpr0521 -rrpc -rsi_91x -rsi_sdio -rsi_usb -rsxx -rt2400pci -rt2500pci -rt2500usb -rt2800lib -rt2800mmio -rt2800pci -rt2800usb -rt2x00lib -rt2x00mmio -rt2x00pci -rt2x00usb -rt5033 -rt5033-regulator -rt5033_battery -rt61pci -rt73usb -rt9455_charger -rtas_flash -rtc-88pm80x -rtc-88pm860x -rtc-ab-b5ze-s3 -rtc-ab3100 -rtc-abx80x -rtc-as3722 -rtc-bq32k -rtc-bq4802 -rtc-cmos -rtc-da9052 -rtc-da9055 -rtc-da9063 -rtc-ds1286 -rtc-ds1305 -rtc-ds1307 -rtc-ds1343 -rtc-ds1347 -rtc-ds1374 -rtc-ds1390 -rtc-ds1511 -rtc-ds1553 -rtc-ds1672 -rtc-ds1685 -rtc-ds1742 -rtc-ds2404 -rtc-ds3232 -rtc-ds3234 -rtc-em3027 -rtc-fm3130 -rtc-generic -rtc-hid-sensor-time -rtc-hym8563 -rtc-isl12022 -rtc-isl12057 -rtc-isl1208 -rtc-lp8788 -rtc-m41t80 -rtc-m41t93 -rtc-m41t94 -rtc-m48t35 -rtc-m48t59 -rtc-m48t86 -rtc-max6900 -rtc-max6902 -rtc-max77686 -rtc-max77802 -rtc-max8907 -rtc-max8925 -rtc-max8997 -rtc-max8998 -rtc-mc13xxx -rtc-mcp795 -rtc-msm6242 -rtc-mt6397 -rtc-palmas -rtc-pcap -rtc-pcf2123 -rtc-pcf2127 -rtc-pcf50633 -rtc-pcf85063 -rtc-pcf8523 -rtc-pcf8563 -rtc-pcf8583 -rtc-ps3 -rtc-r9701 -rtc-rc5t583 -rtc-rk808 -rtc-rp5c01 -rtc-rs5c348 -rtc-rs5c372 -rtc-rv3029c2 -rtc-rv8803 -rtc-rx4581 -rtc-rx8025 -rtc-rx8581 -rtc-s35390a -rtc-s5m -rtc-snvs -rtc-stk17ta8 -rtc-tps6586x -rtc-tps65910 -rtc-tps80031 -rtc-twl -rtc-v3020 -rtc-wm831x -rtc-wm8350 -rtc-x1205 -rtc-zynqmp -rtc_cmos_setup -rtd520 -rti800 -rti802 -rtl2830 -rtl2832 -rtl2832_sdr -rtl8150 -rtl8187 -rtl8188ee -rtl818x_pci -rtl8192c-common -rtl8192ce -rtl8192cu -rtl8192de -rtl8192ee -rtl8192se -rtl8723-common -rtl8723ae -rtl8723be -rtl8821ae -rtl8xxxu -rtl_pci -rtl_usb -rtllib -rtllib_crypt_ccmp -rtllib_crypt_tkip -rtllib_crypt_wep -rtlwifi -rts5208 -rtsx_pci -rtsx_pci_ms -rtsx_pci_sdmmc -rtsx_usb -rtsx_usb_ms -rtsx_usb_sdmmc -rx51_battery -rxkad -s1d13xxxfb -s2250 -s2255drv -s2io -s2mpa01 -s2mps11 -s3fb -s3fwrn5 -s3fwrn5_i2c -s526 -s5h1409 -s5h1411 -s5h1420 -s5m8767 -s626 -s6e63m0 -s921 -saa6588 -saa6752hs -saa7115 -saa7127 -saa7134 -saa7134-alsa -saa7134-dvb -saa7134-empress -saa7134-go7007 -saa7146 -saa7146_vv -saa7164 -saa717x -saa7706h -safe_serial -salsa20_generic -samsung-sxgbe -sata_inic162x -sata_mv -sata_nv -sata_promise -sata_qstor -sata_sil -sata_sil24 -sata_sis -sata_sx4 -sata_uli -sata_via -sata_vsc -savage -savagefb -sbp_target -sbs-battery -sc16is7xx -sc92031 -sca3000 -scanlog -sch_atm -sch_cbq -sch_choke -sch_codel -sch_drr -sch_dsmark -sch_fq -sch_fq_codel -sch_gred -sch_hfsc -sch_hhf -sch_htb -sch_ingress -sch_mqprio -sch_multiq -sch_netem -sch_pie -sch_plug -sch_prio -sch_qfq -sch_red -sch_sfb -sch_sfq -sch_tbf -sch_teql -scsi_debug -scsi_dh_alua -scsi_dh_emc -scsi_dh_hp_sw -scsi_dh_rdac -scsi_transport_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -sctp -sctp_probe -sdhci -sdhci-of-arasan -sdhci-of-at91 -sdhci-of-esdhc -sdhci-of-hlwd -sdhci-pci -sdhci-pltfm -sdhci_f_sdh30 -sdio_uart -sdricoh_cs -sedlbauer_cs -seed -sensorhub -seqiv -ser_gigaset -serial2002 -serial_cs -serio_raw -sermouse -serpent_generic -serport -ses -sfc -sh_veu -sha1-powerpc -shark2 -shpchp -sht15 -sht21 -shtc1 -si2157 -si2165 -si2168 -si21xx -si4713 -si476x-core -si7005 -si7020 -sidewinder -sierra -sierra_net -sil164 -sir-dev -sis -sis190 -sis5595 -sis900 -sisfb -sisusbvga -sit -sja1000 -sja1000_isa -sja1000_platform -skd -skfp -skge -sky2 -sky81452 -sky81452-backlight -sky81452-regulator -sl811-hcd -sl811_cs -slcan -slip -slram -sm501 -sm501fb -sm712fb -sm750fb -sm_common -sm_ftl -smb347-charger -smc91c92_cs -smipcie -smm665 -smsc -smsc-ircc2 -smsc47m192 -smsc75xx -smsc911x -smsc9420 -smsc95xx -smscufx -smsdvb -smsmdtv -smssdio -smsusb -snd -snd-ac97-codec -snd-ad1889 -snd-ak4113 -snd-ak4114 -snd-ak4117 -snd-ak4xxx-adda -snd-ali5451 -snd-aloop -snd-als300 -snd-als4000 -snd-aoa -snd-aoa-codec-onyx -snd-aoa-codec-tas -snd-aoa-codec-toonie -snd-aoa-fabric-layout -snd-aoa-i2sbus -snd-aoa-soundbus -snd-atiixp -snd-atiixp-modem -snd-au8810 -snd-au8820 -snd-au8830 -snd-aw2 -snd-azt3328 -snd-bcd2000 -snd-bebob -snd-bt87x -snd-ca0106 -snd-cmipci -snd-cs4281 -snd-cs46xx -snd-cs8427 -snd-ctxfi -snd-darla20 -snd-darla24 -snd-dice -snd-dummy -snd-echo3g -snd-emu10k1 -snd-emu10k1-synth -snd-emu10k1x -snd-emux-synth -snd-ens1370 -snd-ens1371 -snd-es1938 -snd-es1968 -snd-firewire-digi00x -snd-firewire-lib -snd-firewire-tascam -snd-fireworks -snd-fm801 -snd-gina20 -snd-gina24 -snd-hda-codec -snd-hda-codec-analog -snd-hda-codec-ca0110 -snd-hda-codec-ca0132 -snd-hda-codec-cirrus -snd-hda-codec-cmedia -snd-hda-codec-conexant -snd-hda-codec-generic -snd-hda-codec-hdmi -snd-hda-codec-idt -snd-hda-codec-realtek -snd-hda-codec-si3054 -snd-hda-codec-via -snd-hda-core -snd-hda-intel -snd-hdsp -snd-hdspm -snd-hrtimer -snd-hwdep -snd-i2c -snd-ice1712 -snd-ice1724 -snd-ice17xx-ak4xxx -snd-indigo -snd-indigodj -snd-indigodjx -snd-indigoio -snd-indigoiox -snd-intel8x0 -snd-intel8x0m -snd-isight -snd-korg1212 -snd-layla20 -snd-layla24 -snd-lola -snd-lx6464es -snd-maestro3 -snd-mia -snd-mixart -snd-mixer-oss -snd-mona -snd-mpu401 -snd-mpu401-uart -snd-mtpav -snd-mts64 -snd-nm256 -snd-opl3-lib -snd-opl3-synth -snd-oxfw -snd-oxygen -snd-oxygen-lib -snd-pcm -snd-pcm-dmaengine -snd-pcm-oss -snd-pcxhr -snd-pdaudiocf -snd-portman2x4 -snd-powermac -snd-pt2258 -snd-rawmidi -snd-riptide -snd-rme32 -snd-rme96 -snd-rme9652 -snd-sb-common -snd-scs1x -snd-seq -snd-seq-device -snd-seq-dummy -snd-seq-midi -snd-seq-midi-emul -snd-seq-midi-event -snd-seq-virmidi -snd-serial-u16550 -snd-soc-ac97 -snd-soc-adau1701 -snd-soc-ak4104 -snd-soc-ak4554 -snd-soc-ak4613 -snd-soc-ak4642 -snd-soc-ak5386 -snd-soc-alc5623 -snd-soc-core -snd-soc-cs35l32 -snd-soc-cs4265 -snd-soc-cs4270 -snd-soc-cs4271 -snd-soc-cs4271-i2c -snd-soc-cs4271-spi -snd-soc-cs42l51 -snd-soc-cs42l51-i2c -snd-soc-cs42l52 -snd-soc-cs42l56 -snd-soc-cs42l73 -snd-soc-cs42xx8 -snd-soc-cs42xx8-i2c -snd-soc-cs4349 -snd-soc-es8328 -snd-soc-fsl-asrc -snd-soc-fsl-esai -snd-soc-fsl-sai -snd-soc-fsl-spdif -snd-soc-fsl-ssi -snd-soc-gtm601 -snd-soc-imx-audmux -snd-soc-pcm1681 -snd-soc-pcm1792a-codec -snd-soc-pcm512x -snd-soc-pcm512x-i2c -snd-soc-pcm512x-spi -snd-soc-rt5631 -snd-soc-sgtl5000 -snd-soc-si476x -snd-soc-sigmadsp -snd-soc-sigmadsp-i2c -snd-soc-simple-card -snd-soc-spdif-rx -snd-soc-spdif-tx -snd-soc-ssm2602 -snd-soc-ssm2602-i2c -snd-soc-ssm2602-spi -snd-soc-ssm4567 -snd-soc-sta32x -snd-soc-sta350 -snd-soc-sti-sas -snd-soc-tas2552 -snd-soc-tas5086 -snd-soc-tas571x -snd-soc-tfa9879 -snd-soc-tlv320aic23 -snd-soc-tlv320aic23-i2c -snd-soc-tlv320aic23-spi -snd-soc-tlv320aic31xx -snd-soc-tlv320aic3x -snd-soc-tpa6130a2 -snd-soc-ts3a227e -snd-soc-wm8510 -snd-soc-wm8523 -snd-soc-wm8580 -snd-soc-wm8711 -snd-soc-wm8728 -snd-soc-wm8731 -snd-soc-wm8737 -snd-soc-wm8741 -snd-soc-wm8750 -snd-soc-wm8753 -snd-soc-wm8770 -snd-soc-wm8776 -snd-soc-wm8804 -snd-soc-wm8804-i2c -snd-soc-wm8804-spi -snd-soc-wm8903 -snd-soc-wm8962 -snd-soc-wm8978 -snd-soc-xtfpga-i2s -snd-sonicvibes -snd-timer -snd-trident -snd-ua101 -snd-usb-6fire -snd-usb-audio -snd-usb-caiaq -snd-usb-hiface -snd-usb-line6 -snd-usb-pod -snd-usb-podhd -snd-usb-toneport -snd-usb-usx2y -snd-usb-variax -snd-usbmidi-lib -snd-util-mem -snd-via82xx -snd-via82xx-modem -snd-virmidi -snd-virtuoso -snd-vx-lib -snd-vx222 -snd-vxpocket -snd-ymfpci -snd_ps3 -snic -soc_button_array -soc_camera -soc_camera_platform -soc_mediabus -softdog -softing -softing_cs -solo6x10 -solos-pci -sony-btf-mpx -soundcore -sp2 -sp8870 -sp887x -spaceball -spaceorb -sparse-keymap -spcp8x5 -speakup -speakup_acntsa -speakup_apollo -speakup_audptr -speakup_bns -speakup_decext -speakup_dectlk -speakup_dummy -speakup_ltlk -speakup_soft -speakup_spkout -speakup_txprt -spectrum_cs -speedfax -speedtch -spi-altera -spi-bitbang -spi-butterfly -spi-cadence -spi-dln2 -spi-dw -spi-dw-midpci -spi-dw-mmio -spi-gpio -spi-lm70llp -spi-nor -spi-oc-tiny -spi-pxa2xx-platform -spi-sc18is602 -spi-tle62x0 -spi-xcomm -spi-zynqmp-gqspi -spi_ks8995 -spidev -spl -splat -spmi -spufs -sr9700 -sr9800 -ssb -ssb-hcd -ssd1307fb -ssfdc -ssp_accel_sensor -ssp_gyro_sensor -ssp_iio -sst25l -ssu100 -st -st-nci -st-nci_i2c -st-nci_spi -st1232 -st21nfca_hci -st21nfca_i2c -st_accel -st_accel_i2c -st_accel_spi -st_drv -st_gyro -st_gyro_i2c -st_gyro_spi -st_magn -st_magn_i2c -st_magn_spi -st_pressure -st_pressure_i2c -st_pressure_spi -st_sensors -st_sensors_i2c -st_sensors_spi -starfire -stb0899 -stb6000 -stb6100 -ste10Xp -ste_modem_rproc -stex -stinger -stir4200 -stk1160 -stk3310 -stk8312 -stk8ba50 -stkwebcam -stm_console -stm_core -stmmac -stmmac-platform -stmpe-keypad -stmpe-ts -stowaway -stp -streamzap -stv0288 -stv0297 -stv0299 -stv0367 -stv0900 -stv090x -stv6110 -stv6110x -sun4i-codec -sundance -sungem -sungem_phy -sunhme -suni -sunkbd -sunrpc -sur40 -svgalib -sx8 -sx8654 -sx9500 -sym53c500_cs -sym53c8xx -symbolserial -synaptics_i2c -synaptics_i2c_rmi4 -synaptics_usb -synclink -synclink_cs -synclink_gt -synclinkmp -sysv -t1pci -t5403 -target_core_file -target_core_iblock -target_core_mod -target_core_pscsi -target_core_user -tc3589x-keypad -tc74 -tc90522 -tca6416-keypad -tca8418_keypad -tcm_fc -tcm_loop -tcm_qla2xxx -tcm_usb_gadget -tcp_bic -tcp_cdg -tcp_dctcp -tcp_diag -tcp_highspeed -tcp_htcp -tcp_hybla -tcp_illinois -tcp_lp -tcp_probe -tcp_scalable -tcp_vegas -tcp_veno -tcp_westwood -tcp_yeah -tcrypt -tcs3414 -tcs3472 -tda10021 -tda10023 -tda10048 -tda1004x -tda10071 -tda10086 -tda18212 -tda18218 -tda18271 -tda18271c2dd -tda665x -tda7432 -tda8083 -tda8261 -tda826x -tda827x -tda8290 -tda9840 -tda9887 -tda998x -tdfx -tdfxfb -tdo24m -tea -tea575x -tea5761 -tea5767 -tea6415c -tea6420 -team -team_mode_activebackup -team_mode_broadcast -team_mode_loadbalance -team_mode_random -team_mode_roundrobin -tef6862 -tehuti -tekram-sir -teles_cs -teranetics -test-hexdump -test-kstrtox -test-string_helpers -test_bpf -test_firmware -test_module -test_power -test_printf -test_static_key_base -test_static_keys -test_udelay -test_user_copy -tg3 -tgr192 -thmc50 -thunder_bgx -thunderbolt -ti-adc081c -ti-adc128s052 -ti_am335x_adc -ti_am335x_tsc -ti_am335x_tscadc -ti_dac7512 -ti_usb_3410_5052 -tifm_7xx1 -tifm_core -tifm_ms -tifm_sd -timeriomem-rng -tipc -tlan -tm6000 -tm6000-alsa -tm6000-dvb -tmdc -tmp006 -tmp102 -tmp103 -tmp401 -tmp421 -toim3232-sir -torture -toshsd -touchit213 -touchright -touchwin -tpci200 -tpm-rng -tpm_atmel -tpm_i2c_atmel -tpm_i2c_infineon -tpm_i2c_nuvoton -tpm_st33zp24 -tpm_st33zp24_i2c -tpm_st33zp24_spi -tps40422 -tps51632-regulator -tps6105x -tps6105x-regulator -tps62360-regulator -tps65010 -tps65023-regulator -tps6507x -tps6507x-regulator -tps6507x-ts -tps65090-charger -tps65090-regulator -tps65217_bl -tps65217_charger -tps65218 -tps65218-pwrbutton -tps65218-regulator -tps6524x-regulator -tps6586x-regulator -tps65910-regulator -tps65912-regulator -tps80031-regulator -trancevibrator -trf7970a -tridentfb -ts2020 -ts_bm -ts_fsm -ts_kmp -tsc2004 -tsc2005 -tsc2007 -tsc200x-core -tsc40 -tsi568 -tsi57x -tsi721_mport -tsl2550 -tsl2563 -tsl2583 -tsl2x7x_core -tsl4531 -tsys01 -tsys02d -ttm -ttpci-eeprom -ttusb_dec -ttusbdecfe -ttusbir -tua6100 -tua9001 -tulip -tuner -tuner-simple -tuner-types -tuner-xc2028 -tunnel4 -tunnel6 -turbografx -tvaudio -tveeprom -tvp5150 -tw2804 -tw68 -tw9903 -tw9906 -tw9910 -twidjoy -twl-regulator -twl4030-madc -twl4030-madc-hwmon -twl4030-pwrbutton -twl4030-vibra -twl4030_charger -twl4030_keypad -twl4030_madc_battery -twl4030_wdt -twl6030-gpadc -twl6040-vibra -twofish_common -twofish_generic -typhoon -u132-hcd -u_ether -u_serial -uartlite -uas -ubi -ubifs -ucb1400_core -ucb1400_ts -ucd9000 -ucd9200 -uda1342 -udc-core -udc-xilinx -udf -udl -udlfb -udp_diag -udp_tunnel -ueagle-atm -ufs -ufshcd -ufshcd-pci -ufshcd-pltfrm -uhid -uio -uio_aec -uio_cif -uio_dmem_genirq -uio_fsl_elbc_gpcm -uio_mf624 -uio_netx -uio_pci_generic -uio_pdrv_genirq -uio_pruss -uio_sercos3 -uli526x -ulpi -umc -umem -ums-alauda -ums-cypress -ums-datafab -ums-eneub6250 -ums-freecom -ums-isd200 -ums-jumpshot -ums-karma -ums-onetouch -ums-realtek -ums-sddr09 -ums-sddr55 -ums-usbat -uninorth-agp -unix_diag -upd64031a -upd64083 -us5182d -usb-serial-simple -usb-storage -usb3503 -usb8xxx -usb_8dev -usb_debug -usb_f_acm -usb_f_ecm -usb_f_ecm_subset -usb_f_eem -usb_f_fs -usb_f_hid -usb_f_mass_storage -usb_f_midi -usb_f_ncm -usb_f_obex -usb_f_phonet -usb_f_printer -usb_f_rndis -usb_f_serial -usb_f_ss_lb -usb_f_uac1 -usb_f_uac2 -usb_f_uvc -usb_gigaset -usb_wwan -usbatm -usbdux -usbduxfast -usbduxsigma -usbhid -usbip-core -usbip-host -usbkbd -usblcd -usbled -usblp -usbmisc_imx -usbmon -usbmouse -usbnet -usbserial -usbsevseg -usbtest -usbtmc -usbtouchscreen -usbtv -usbvision -usdhi6rol0 -userio -userspace-consumer -ushc -uss720 -uvcvideo -uvesafb -uwb -v4l2-common -v4l2-dv-timings -v4l2-flash-led-class -v4l2-mem2mem -vcan -vcnl4000 -ves1820 -ves1x93 -veth -vf610_adc -vfio -vfio-pci -vfio_iommu_spapr_tce -vfio_spapr_eeh -vfio_virqfd -vga16fb -vgastate -vgem -vgg2432a4 -vhci-hcd -vhost -vhost_net -vhost_scsi -via -via-ircc -via-rhine -via-sdmmc -via-velocity -via686a -videobuf-core -videobuf-dma-sg -videobuf-dvb -videobuf-vmalloc -videobuf2-core -videobuf2-dma-contig -videobuf2-dma-sg -videobuf2-dvb -videobuf2-memops -videobuf2-v4l2 -videobuf2-vmalloc -videodev -vim2m -viperboard -viperboard_adc -virt-dma -virtio-gpu -virtio-rng -virtio_input -virtio_scsi -virtual -visor -vitesse -vivid -vlsi_ir -vmac -vme_pio2 -vme_tsi148 -vme_user -vme_vmivme7805 -vmk80xx -vmx-crypto -vmxnet3 -vp27smpx -vport-geneve -vport-gre -vport-vxlan -vrf -vringh -vsock -vsxxxaa -vt6655_stage -vt6656_stage -vt8231 -vt8623fb -vub300 -vx855 -vxge -vxlan -vz89x -w1-gpio -w1_bq27000 -w1_ds2406 -w1_ds2408 -w1_ds2413 -w1_ds2423 -w1_ds2431 -w1_ds2433 -w1_ds2760 -w1_ds2780 -w1_ds2781 -w1_ds28e04 -w1_smem -w1_therm -w5100 -w5300 -w6692 -w83781d -w83791d -w83792d -w83793 -w83795 -w83977af_ir -w83l785ts -w83l786ng -wacom -wacom_i2c -wacom_serial4 -wacom_w8001 -walkera0701 -wanxl -warrior -wbsd -wcn36xx -wd719x -wdrtas -wdt87xx_i2c -wdt_pci -whc-rc -whci -whci-hcd -whiteheat -wil6210 -wimax -winbond-840 -windfarm_ad7417_sensor -windfarm_core -windfarm_cpufreq_clamp -windfarm_fcu_controls -windfarm_lm75_sensor -windfarm_lm87_sensor -windfarm_max6690_sensor -windfarm_pid -windfarm_pm112 -windfarm_pm121 -windfarm_pm72 -windfarm_pm81 -windfarm_pm91 -windfarm_rm31 -windfarm_smu_controls -windfarm_smu_sat -windfarm_smu_sensors -wire -wishbone-serial -wl1251 -wl1251_sdio -wl1251_spi -wl1273-core -wl12xx -wl18xx -wl3501_cs -wlcore -wlcore_sdio -wlcore_spi -wm831x-dcdc -wm831x-hwmon -wm831x-isink -wm831x-ldo -wm831x-on -wm831x-ts -wm831x_backup -wm831x_bl -wm831x_power -wm831x_wdt -wm8350-hwmon -wm8350-regulator -wm8350_power -wm8350_wdt -wm8400-regulator -wm8739 -wm8775 -wm8994-core -wm8994-irq -wm8994-regmap -wm8994-regulator -wm97xx-ts -wp512 -wusb-cbaf -wusb-wa -wusbcore -x25 -x25_asy -x_tables -xc4000 -xc5000 -xcbc -xfrm4_mode_beet -xfrm4_mode_transport -xfrm4_mode_tunnel -xfrm4_tunnel -xfrm6_mode_beet -xfrm6_mode_ro -xfrm6_mode_transport -xfrm6_mode_tunnel -xfrm6_tunnel -xfrm_algo -xfrm_ipcomp -xfrm_user -xfs -xgifb -xhci-plat-hcd -xilinx-tpg -xilinx-video -xilinx-vtc -xilinx_ps2 -xilinx_uartps -xillybus_core -xillybus_of -xillybus_pcie -xirc2ps_cs -xircom_cb -xor -xpad -xr_usb_serial_common -xsens_mt -xt_AUDIT -xt_CHECKSUM -xt_CLASSIFY -xt_CONNSECMARK -xt_CT -xt_DSCP -xt_HL -xt_HMARK -xt_IDLETIMER -xt_LED -xt_LOG -xt_NETMAP -xt_NFLOG -xt_NFQUEUE -xt_RATEEST -xt_REDIRECT -xt_SECMARK -xt_TCPMSS -xt_TCPOPTSTRIP -xt_TEE -xt_TPROXY -xt_TRACE -xt_addrtype -xt_bpf -xt_cgroup -xt_cluster -xt_comment -xt_connbytes -xt_connlabel -xt_connlimit -xt_connmark -xt_conntrack -xt_cpu -xt_dccp -xt_devgroup -xt_dscp -xt_ecn -xt_esp -xt_hashlimit -xt_helper -xt_hl -xt_ipcomp -xt_iprange -xt_ipvs -xt_l2tp -xt_length -xt_limit -xt_mac -xt_mark -xt_multiport -xt_nat -xt_nfacct -xt_osf -xt_owner -xt_physdev -xt_pkttype -xt_policy -xt_quota -xt_rateest -xt_realm -xt_recent -xt_sctp -xt_set -xt_socket -xt_state -xt_statistic -xt_string -xt_tcpmss -xt_tcpudp -xt_time -xt_u32 -xtkbd -xts -xusbatm -xz_dec_test -yam -yealink -yellowfin -yenta_socket -yurex -zaurus -zavl -zcommon -zd1201 -zd1211rw -zforce_ts -zfs -zhenhua -zl10036 -zl10039 -zl10353 -zl6100 -zlib -znvpair -zpios -zr364xx -zram -zunicode -zynq-fpga reverted: --- linux-raspi2-4.4.0/debian.master/abi/4.4.0-89.112/ppc64el/generic +++ linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-89.112/ppc64el/generic @@ -1,17406 +0,0 @@ -EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0x048d27cc hvcs_register_connection -EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0x536d329b hvcs_get_partner_info -EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0xc39c3704 hvcs_free_partner_info -EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0xd0a02396 hvcs_free_connection -EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe -EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble -EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL crypto/mcryptd 0x6310e901 mcryptd_arm_flusher -EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/atm/suni 0xe563a1a6 suni_init -EXPORT_SYMBOL drivers/bcma/bcma 0x4a2bbb83 bcma_core_dma_translation -EXPORT_SYMBOL drivers/bcma/bcma 0x93471510 bcma_core_irq -EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str -EXPORT_SYMBOL drivers/block/paride/paride 0x036919a7 pi_write_regr -EXPORT_SYMBOL drivers/block/paride/paride 0x1c07eb6a pi_do_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x21f01177 paride_register -EXPORT_SYMBOL drivers/block/paride/paride 0x2c74e71a pi_init -EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x59a595e5 pi_connect -EXPORT_SYMBOL drivers/block/paride/paride 0x59d0d3dc pi_disconnect -EXPORT_SYMBOL drivers/block/paride/paride 0xa2629b42 pi_read_block -EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -EXPORT_SYMBOL drivers/block/paride/paride 0xb289be7b paride_unregister -EXPORT_SYMBOL drivers/block/paride/paride 0xd95f6770 pi_read_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xe007ecc9 pi_schedule_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0xe5bdd835 pi_write_block -EXPORT_SYMBOL drivers/block/paride/paride 0xf5b68f83 pi_release -EXPORT_SYMBOL drivers/bluetooth/btbcm 0x353b7df9 btbcm_patchram -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fae3bac ipmi_addr_src_to_str -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x27227b25 ipmi_smi_watcher_register -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x409b3250 ipmi_register_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x9f749b53 ipmi_smi_add_proc_entry -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd7df3795 ipmi_get_smi_info -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe59f8840 ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x091687e8 st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x2160472d st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x537efdf5 st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x9aca84ae st33zp24_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x3ede4589 xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x74cbe0a9 xillybus_init_endpoint -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xf8c58d46 xillybus_endpoint_remove -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x105876c3 dw_dma_cyclic_free -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x2f18b42f dw_dma_cyclic_prep -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x3c7e6b2c dw_dma_get_dst_addr -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xaa5f88e9 dw_dma_cyclic_stop -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xb4523491 dw_dma_get_src_addr -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xd201f43e dw_dma_cyclic_start -EXPORT_SYMBOL drivers/edac/edac_core 0xd2f9e4cf edac_mc_find -EXPORT_SYMBOL drivers/firewire/firewire-core 0x049f411b fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0x04d0f641 fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0f7d6af8 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1d36f13d fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x28fb40d4 fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0x290f36dc fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0x35e36b15 fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3bc18ac8 fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x48775689 fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5f731333 fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x645b715f fw_core_add_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x75d39db0 fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7a3a8674 fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7bcff929 fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7ff7ad87 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9a465803 fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9d308c50 fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa79d6b12 fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0xad0f7aa8 fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb3730a93 fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc8f2f4d2 fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xce82095b fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd47f4be3 fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xdc6f4cd2 fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0xdff2cf32 fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe74f1e3d fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xee46c74f fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf0cc8e65 fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0xff1508d4 fw_core_handle_request -EXPORT_SYMBOL drivers/fmc/fmc 0x09087741 fmc_device_register_n -EXPORT_SYMBOL drivers/fmc/fmc 0x18e8ca15 fmc_free_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0x297bf280 fmc_show_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0x433cebfb fmc_device_register -EXPORT_SYMBOL drivers/fmc/fmc 0x6255579b fmc_reprogram -EXPORT_SYMBOL drivers/fmc/fmc 0x62afc1ae fmc_device_unregister_n -EXPORT_SYMBOL drivers/fmc/fmc 0x62d4716c fmc_find_sdb_device -EXPORT_SYMBOL drivers/fmc/fmc 0x7e5ae6bc fmc_driver_register -EXPORT_SYMBOL drivers/fmc/fmc 0x88261e15 fmc_driver_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0xa40e9ae9 fmc_scan_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0xffc4f2da fmc_device_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x01ec64a4 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x022e7e19 drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x02d864fa drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04b55bdf drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04dbcd0e drm_legacy_addbufs_agp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04ecf8c0 drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0602ce67 drm_panel_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06597b25 drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x067060d4 drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07c4a120 drm_plane_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08403967 of_drm_find_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x099eee2a drm_connector_unplug_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0dc22a3d drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0dfc98ef drm_bridge_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eb3a37f drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f64905d drm_irq_install -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fbc4c61 drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fe9ed07 drm_atomic_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x103803ff drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10906fa8 drm_platform_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x112208b9 drm_atomic_clean_old_fb -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1239bfae drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12f4c6e4 drm_dev_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x13351343 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14dae872 drm_framebuffer_reference -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16244ddb drm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x162e2950 drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x164d17bd drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x170bdb6e drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1794f1dc drm_legacy_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17a63698 drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19e4430f drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ba23281 drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bd3cbd6 drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c69362f drm_legacy_getsarea -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cff4f21 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dbf5c26 drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e9cfa07 drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f5f9085 drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fde96b5 drm_legacy_idlelock_take -EXPORT_SYMBOL drivers/gpu/drm/drm 0x202ca657 drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x211223f0 drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x211263fc drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21b0645b drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23d0a787 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26e4af1f drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27797189 drm_select_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ac8e8b8 drm_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b32a990 drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d357144 drm_agp_bind -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e372227 drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e3ce5b9 drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f4920ed drm_legacy_ioremap_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f6a9aaa drm_agp_unbind -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3056038f drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x313ef7ae drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x323b3ace drm_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x326274d2 drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x33dc7804 drm_mode_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x352b7db6 drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x36912dc9 drm_mode_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37311913 drm_ati_pcigart_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3820b564 drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x389cb469 drm_mode_create_dirty_info_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3933bdee drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c57635c drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3db81c4c drm_irq_uninstall -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42699b2f drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0x43410355 drm_encoder_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4518c6d9 drm_crtc_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0x45ccadfe drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4671344f drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x483e6011 drm_legacy_rmmap_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4891cda5 drm_property_unreference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48c9a4e9 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a51438a drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4aaa28d4 drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c58b740 drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ce7a25b drm_legacy_addbufs_pci -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4de75663 drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4efaedaa drm_bridge_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f48fa79 drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x503ef592 drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x513aa563 drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x515016ec drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51a9469a drm_modeset_unlock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51b20c12 drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51b2d247 drm_modeset_backoff_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51db353a drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5255c31f drm_mode_hsync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5264a838 drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x542b8288 drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x56b44c3c drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x56ea1029 drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x577916d7 drm_legacy_ioremap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57bed2be drm_legacy_rmmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57d5e8e9 drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x588eb0db drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59894f78 drm_compat_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59d5fdf3 drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a01196f drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ab641b6 drm_agp_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cc8ab7e drm_vblank_post_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d1f269f drm_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7318dc drm_global_item_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f06e173 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6148d7f3 drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x61511d74 drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x61fbc090 drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65c221e0 drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65d57c69 drm_vblank_no_hw_counter -EXPORT_SYMBOL drivers/gpu/drm/drm 0x665bf2bb drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66bec064 drm_bridge_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67dc667b drm_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6860187d drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0x686b8839 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68e22b81 drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68ed607c drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x690f78dc drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x692f9301 drm_pci_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a16893c drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b576d45 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ccc8cda drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x703a0f23 drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x704bf914 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7070418b drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x713bf6ca drm_mode_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72a10019 drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7318315e drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x73d22489 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x73d3fd23 drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74923d27 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x75ee69a2 drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x764f20e1 drm_edid_to_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a073a33 drm_pci_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bdf0cef drm_pcie_get_max_link_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c71b398 drm_bridge_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d7d9a90 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d9b68da drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81281aee drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x813beade drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8311bf4f drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x837c85bb drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x85308543 drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8554e51c drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8632f123 drm_bridge_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x87126f66 drm_agp_bind_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x87d97081 drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x87ec7e2c drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x88bb4582 drm_crtc_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8987e120 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b4074dd drm_pci_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b55e3f4 drm_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b96a369 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8baadc3b drm_gem_dumb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bd6cf52 drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cac154b drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d904405 drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dee8dec drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ef60a54 drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f8bcaec drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x905f6df4 drm_agp_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x909eb4a1 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90b01424 drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x922779d6 drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92ab6339 drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92eb8983 drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94905826 drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9763de65 drm_framebuffer_unreference -EXPORT_SYMBOL drivers/gpu/drm/drm 0x97873aa5 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9797d7fd drm_modeset_legacy_acquire_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x989de470 drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a703b0c drm_mode_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c2ab385 drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d53f430 drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d7d9753 drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d8307ac drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e9a82bf drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0abbe71 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa15a841d drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa17daf11 drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa23183a0 drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa30cdde9 drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa42c9b47 drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4f0fe4c drm_calc_vbltimestamp_from_scanoutpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa50e2d1c drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa719b63b drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7f8465f drm_prime_sg_to_page_addr_arrays -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa80cbace drm_agp_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8407fa1 drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9265b7b drm_pci_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa93606c1 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab47d9a7 drm_bridge_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab65e0a1 drm_atomic_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab6891db drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab8dffef drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac35e29e drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac623aa9 drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xacd81efd drm_ati_pcigart_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad5ec385 drm_agp_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad73d868 drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xadc700c2 drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xafa9feee drm_atomic_legacy_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0ce4fb1 drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3a5bdc3 drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4360b46 drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb45b0382 drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5540008 drm_global_item_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb565a332 drm_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb60f4703 drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7214ac9 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb900bfa6 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb96619f7 drm_panel_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9f47043 drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba3168ec drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba5b4bd2 of_drm_find_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc549f5e drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc7d6888 drm_mode_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc83d358 drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc9658ca drm_legacy_ioremapfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd3ccaf9 drm_of_find_possible_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdb4c13a drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbde5a713 drm_connector_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe46403c drm_vblank_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0259060 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc055a024 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0f813df drm_modeset_lock_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3714e41 drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3e9a730 drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3f009ec drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6f4fc04 drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc81018fa drm_vblank_pre_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc87c4f0d drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8c71dac drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9922096 drm_atomic_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca35673a drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd34ad4e drm_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdaa57ac drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcec0a6da drm_pcie_get_speed_cap_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfcd4e01 drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd057826f drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0e7ee32 drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd18f9348 drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd190798e drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd266663f drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2aedda8 drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3965ace drm_unplug_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3f428d5 drm_property_reference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5904eda drm_modeset_lock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6f88dc8 drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9645ba2 drm_legacy_addmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb4a3c5 drm_of_component_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb964b6 drm_atomic_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbfc8e7d drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc3c744d drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc89a04e drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde11aeb9 drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdec6b501 drm_pci_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf5691c8 drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe108338d drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2ffd7a5 drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe305bdfa drm_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3facd49 drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe67b0a55 drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe71830be drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe747a522 drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe79b9549 drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a821bc drm_mm_dump_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8d4dd24 drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9d83059 drm_agp_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea23fae1 drm_dev_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0xead299d5 drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb82daec drm_mode_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeddcf40c drm_get_pci_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef174d77 drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0xefdebd13 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b098be drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf201a47e drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf26845e8 drm_mode_validate_basic -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3139d12 drm_legacy_idlelock_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf637b84c drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6a4926d drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6f423de drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7d4e541 drm_platform_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf87f7262 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8c76834 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf93a4435 drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa657278 drm_agp_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdaa57ec drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05a00ae5 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x072c88cd drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07cbbf29 drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07f82aef drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08849324 drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09d677bb drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09e305d4 drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0be1c018 drm_primary_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0cb52308 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d4811ac drm_helper_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0dc6b9c3 drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1152f9b5 drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1347381d drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19216fe3 drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19b580ac drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a9b0d8c drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c01ecd9 drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c67b661 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1cbb1ea7 drm_atomic_helper_framebuffer_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d9cd824 drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d699ca9 drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31fa7494 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x355ad29a __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36eed89d drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39bfafa3 drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c2953d6 drm_fb_helper_add_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3cb70504 __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3da3fed6 __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e1b1ad2 drm_atomic_helper_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f494eb5 drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x411383a1 drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47ca5a01 drm_dp_link_probe -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4aaf4505 drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b0fe248 drm_has_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c2d82b2 drm_atomic_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d92f82e drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e29cb02 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x529b76ac drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52b27882 drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x531e2704 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x568d8cff drm_primary_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56f78939 drm_kms_helper_poll_enable_locked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57f61d3e drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59878e32 drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d242dfa drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e07b40f drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e191018 drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e85365e drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62098db1 drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6720d22b drm_dp_aux_unregister_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68a4b902 drm_dp_aux_register_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68d0875e drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68d93151 drm_dp_link_configure -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a10e01d drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f41cde1 drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f7d79b3 drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ff33125 drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70cabb52 drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7249a0d5 drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73362208 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x743870dc drm_helper_crtc_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78594dc4 drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ab0deba drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bd900d7 drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ddd4165 drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7df4b852 drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7df95a99 drm_plane_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8052837c drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82202ede drm_fb_helper_remove_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x823ba2fb drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82634673 drm_fb_helper_fill_fix -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x827f506b drm_atomic_helper_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83cd6a5e drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83d009ac drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84569a63 drm_pick_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85fe4179 drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87b45e03 drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b3c01a4 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8cdd9d41 drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d47fd0c __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e34906b drm_dp_mst_port_has_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f24babf drm_fb_helper_fill_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91657c1f drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9180aee3 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x921da1fe drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x922c4a2f drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94aa2a52 drm_helper_crtc_mode_set_base -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95864326 drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98857b10 drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99441814 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99eb99ec drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9bd4f915 drm_fb_helper_unlink_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d06839e drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d8d06dd drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9fe8e395 drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1f9c1c7 drm_plane_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa515adb9 drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa63f498e drm_dp_link_power_up -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa701c45e drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7186703 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf502cd4 drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb147bde9 drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb18fd3a3 drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3a497fa drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5de15e2 drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8c32661 drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba433530 drm_dp_link_power_down -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba4e9599 drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbae0c2b drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd65f7a0 drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf288d24 drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1076a9d drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc17cff46 drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc193ccd4 drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc411eaff drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc720d1d2 drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7d95d04 drm_plane_helper_check_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9572777 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca5a844d drm_atomic_helper_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1223129 __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd22a2720 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd382fde4 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd424f326 drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4862651 drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda3cf6bd drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xddf2f577 drm_helper_probe_single_connector_modes_nomerge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfbb9cf0 drm_fb_helper_single_add_all_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe353696f drm_atomic_helper_legacy_gamma_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe76da5d9 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7d188f5 drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7ee3522 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe895a3c8 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8bc659c drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xebddb14a drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xecc22bfd drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee5ee9ab drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef64b27f drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1b1b0b1 drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf21d4df8 drm_fb_helper_release_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6c6144c drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc2b3e92 drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfcb6ea00 drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x023f594e ttm_mem_io_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0d5e8846 ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0eba2b5c ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2207f2fd ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x24d74e5e ttm_bo_synccpu_write_grab -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2660332b ttm_bo_del_sub_from_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x299a44ee ttm_mem_io_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3525a35f ttm_tt_set_placement_caching -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x39aafda3 ttm_fbdev_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3c7b2054 ttm_bo_synccpu_write_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3de3dab5 ttm_mem_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3e9051fd ttm_pool_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e8dd264 ttm_bo_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x54c38451 ttm_bo_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x564e1aee ttm_bo_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5665e7f7 ttm_agp_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x59f48771 ttm_bo_swapout_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a86402f ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a8fdfea ttm_vt_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5f632532 ttm_tt_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6052860c ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x660ed5f3 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x66dced64 ttm_bo_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6ae38c0a ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7126d608 ttm_mem_io_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x77f268d4 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7ce0955d ttm_dma_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d55da85 ttm_read_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84a13931 ttm_write_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89a443de ttm_write_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8b89726f ttm_mem_io_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8c868a1f ttm_agp_tt_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d14adbf ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d323bd4 ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d7dc34c ttm_bo_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x90519d59 ttm_bo_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9307815c ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x95144a33 ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x96edf2d6 ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d0eb91 ttm_ref_object_add -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9a00fd21 ttm_pool_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9ab4d22a ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa2a129fd ttm_suspend_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa73de2a9 ttm_vt_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae6e14c8 ttm_mem_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb039ac1e ttm_bo_clean_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb26c21b8 ttm_object_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb83c6470 ttm_lock_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbd2e079b ttm_mem_global_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc2ab71e0 ttm_page_alloc_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc2cd5ebe ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc334b922 ttm_bo_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc459772c ttm_bo_init_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5f0c2da ttm_read_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce55836a ttm_bo_manager_func -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd2174ce0 ttm_bo_evict_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd4d9abe7 ttm_dma_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd7f51742 ttm_suspend_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdb2f648d ttm_mem_global_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdbbe5247 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdeb99f82 ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe4595a93 ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe69ca614 ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeae7ef4d ttm_prime_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xedb44189 ttm_bo_add_to_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf1345977 ttm_bo_move_ttm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf19eb82c ttm_bo_mem_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf27e8fd8 ttm_agp_tt_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf3a547a8 ttm_bo_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfd6f22c8 ttm_bo_dma_acc_size -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x4a76ef93 i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xc59788f8 i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xfa6b691e i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x5c3027ca i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xacf564de i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x7627b77d amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x05bc8705 mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1c98065d mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x37df9d50 mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x44b12b34 mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6970a3d9 mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x69d61f43 mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x73d81005 mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x778aabed mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7f3eee29 mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa7e12775 mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xcd03a488 mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xcdcebba3 mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xcf91657f mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xec89ca00 mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf6e6d1f2 mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfdaff605 mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xaadbf90e st_accel_common_remove -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xe5a068be st_accel_common_probe -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x5a915670 iio_triggered_buffer_setup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xb6cf00d7 iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x36a1cc67 devm_iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x47553c70 devm_iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xbbfeac18 iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xcf3c8ced iio_kfifo_free -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x144e2f9c hid_sensor_read_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x2e45401a hid_sensor_read_poll_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x9b50298e hid_sensor_write_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xa25c75a2 hid_sensor_parse_common_attributes -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc9865eb4 hid_sensor_read_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xf8d751b7 hid_sensor_write_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x314e7875 hid_sensor_pm_ops -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x823e744b hid_sensor_remove_trigger -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x842aaf19 hid_sensor_power_state -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xac896daa hid_sensor_setup_trigger -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x300f568a ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x381978de ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x45aac561 ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x66845113 ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x69323e00 ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xda133f43 ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xe5e35340 ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf4fb2dd8 ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xfe3d134d ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x2bcdfa47 ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x3339f243 ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x8b6224ff ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xdd8d80c9 ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xe67452c8 ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x636f0924 ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xab25b4d5 ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xdd69695b ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x00e1a1fc st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2ff8cb86 st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x30fde093 st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x319cf0fe st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3809036c st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x53eae82f st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x627f97c7 st_sensors_get_buffer_element -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x66cfce78 st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x80e0059c st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x83e893b8 st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x89ce73ea st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9d8f04a0 st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb53ab57c st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc32cf995 st_sensors_check_device_support -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xcab0eda1 st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd33bf7a9 st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xef9e300b st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x2537675f st_sensors_of_i2c_probe -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x9cd83e2b st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x0a3b7e8a st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x691d699c st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xf0c040cf st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/humidity/hts221 0xb468b765 hts221_probe -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xa5d26b61 adis_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xcf353e7f adis_enable_irq -EXPORT_SYMBOL drivers/iio/industrialio 0x09eaa4ed iio_triggered_buffer_predisable -EXPORT_SYMBOL drivers/iio/industrialio 0x1ab67d08 iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x1ddefc58 iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0x23aab4d5 iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x31a6cf8f iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0x32fbce31 iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x35bd8852 iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0x512c1a02 iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0x5a4a8abc iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0x7a25724c iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x85147c70 iio_triggered_buffer_postenable -EXPORT_SYMBOL drivers/iio/industrialio 0x878e87bf iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x9a9f8ac6 iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x9d14f660 iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0xba674cbc iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xed99d515 iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0xf4319205 iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x1f69a78e iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x426f08c9 iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x0c526741 st_magn_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x42b29bc7 st_magn_common_probe -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x695c127d ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x2e1271c7 st_press_common_remove -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x92697fad st_press_common_probe -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x023f9259 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x049ace30 rdma_addr_find_smac_by_sgid -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1ea5767b rdma_addr_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x32a8402c rdma_addr_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3a85b2a3 rdma_copy_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x4dcfd88c rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xbba7c1a0 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0700e434 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0a5fd916 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0d3a11e5 ib_send_cm_lap -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x14b883ea ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x20973426 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2ae1108b ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2e1b7a98 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x37af2ee0 ib_send_cm_apr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4353e16e ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x46e44ad5 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5008c963 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5eee4494 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x681ebb86 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x832a7547 ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x89200e98 cm_class -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x97d8f5cc ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa9176e87 ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xba2dac65 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x009c60c0 ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05632ca8 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07f3d83f ib_dereg_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x093a6e3e ib_dealloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0bb785d8 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1014278d ib_dealloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x114a766e ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1340db1c ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x159339ab ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1740d4b4 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x181bf69f ib_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c1076cc ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2121dd9d ib_find_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26710393 ib_get_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26fbae64 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3466da6d ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a3ce6a1 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bb7e5cf ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e54e44e ib_alloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3eebdcf5 ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x402c0ead ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x405d76cb ib_find_cached_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43c1ad21 ib_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x467eb6b7 ib_dealloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46c690e4 ib_query_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c75f6e2 ib_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4cc28369 ib_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e4eb305 ib_dealloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51ca694a ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb37db ib_destroy_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a826afa ib_destroy_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d19a729 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62a19449 ib_destroy_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6730b8b1 ib_create_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7389572d ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73df3c14 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73fce057 ib_query_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x766b66e7 ib_create_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a8bd4d8 ib_umem_page_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87caca1d ibnl_add_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a27ef4e ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d523f32 ib_modify_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x905f7591 ib_init_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x908802ca ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98034115 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b0450e5 ib_destroy_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c8d9b4a ib_get_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d061e94 ib_umem_odp_map_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6c173dd ib_create_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa910ecc5 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad3fb79f ib_alloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3eeef2e ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb47f16d9 ib_resolve_eth_dmac -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4ecddce ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5a9ac89 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5b8dd73 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd0d7038 ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc024b0f9 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0a5b6dd ib_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2a61d16 ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4154afd ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7f69b55 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8fbd639 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcdf2e1dc ib_get_dma_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce252779 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0f10565 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd111c1c4 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4b38667 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4ece8cb ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd1440ec ib_fmr_pool_map_phys -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd7b071d ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe00aed86 ib_find_gid_by_filter -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0463178 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe22510d6 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe23e9152 ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe28efa4d ib_alloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4a722ac ib_create_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe991d355 ibnl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeab2a977 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xedacd673 ib_fmr_pool_unmap -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1ba4863 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf41507e5 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xffce995f ibnl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x1f83d3e2 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x288480a0 ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x33d19442 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x3b66be4f ib_cancel_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x59677b50 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x64764819 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x8af89513 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xa9c7082a ib_process_mad_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xb50ca427 ib_redirect_mad_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xb66a05d1 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xb75dbd6f ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xb9fe9f44 ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc2175fbf ib_register_mad_snoop -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x0f491a1a ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x165e31b8 ib_sa_service_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x2df8733f ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x2ec16e65 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x383e597f ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5328d7a6 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x7362118a ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x7ac80ad7 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9a1cd50d ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xbf08c92a ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xd0289e78 ib_init_ah_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc96f0062 ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf1017e73 ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x113b95d2 iwpm_add_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x20b7abae iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x24cf7d38 iwpm_add_and_query_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2f48df6a iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3c9a60ba iwpm_ack_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4dede35a iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8797f80e iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x93d6cb58 iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xae61aaf0 iwpm_mapping_error_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xbb8d9bb7 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc16ebc84 iwpm_register_pid_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xdff9e231 iwpm_remote_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe3f666f6 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf56ea852 iwpm_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xff55fbee iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x09c7061f rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x20fd2afe rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2b2e04f3 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x328dd3ad rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3ddd81bf rdma_create_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x486dedda rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x61474a16 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x63f1597e rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6d2686d3 rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x77fa43d0 rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7e240cc6 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x88477863 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9128acfa rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x93954b36 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x97ecbebf rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9c4d1798 rdma_set_ib_paths -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa94d5237 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc9c6ddee rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf2c3a0a1 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfcaf91cb rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfef106cd rdma_destroy_id -EXPORT_SYMBOL drivers/input/gameport/gameport 0x14ea28db __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x1be2bdc6 gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0x3cfb2428 gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x5e4dea26 gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0x6ed92c0a gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x70247e96 gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x8088334c gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0xaf077f8f __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0xc28393b8 gameport_close -EXPORT_SYMBOL drivers/input/input-polldev 0x1ecb9ebe devm_input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x39675bb8 input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xa2b40ead input_unregister_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xc7608ef1 input_register_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xcd7e18fa input_free_polled_device -EXPORT_SYMBOL drivers/input/matrix-keymap 0xee69022e matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0xab37f598 ad714x_enable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xd47e119a ad714x_probe -EXPORT_SYMBOL drivers/input/misc/ad714x 0xdd3adcd9 ad714x_disable -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x35bca988 cma3000_init -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/sparse-keymap 0x05a890a7 sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x2196406e sparse_keymap_setup -EXPORT_SYMBOL drivers/input/sparse-keymap 0x49a92451 sparse_keymap_free -EXPORT_SYMBOL drivers/input/sparse-keymap 0x73182516 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xebb14214 sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0xf66b8f7e sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x76415069 ad7879_probe -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xa0b074b9 ad7879_pm_ops -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x1851fa9f capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x258d0675 detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x63f6f59a capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6dd50f02 attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7292ab34 cdebbuf_free -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x72a25a72 capi_cmsg2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x836ba656 capi20_put_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9e607051 capi_ctr_suspend_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa16a25f3 capi20_register -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd26de2cd capi20_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe26b770c capi_ctr_resume_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf793e4ba capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfd552f7a capi_message2str -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x014be433 b1_alloc_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x080c1b33 b1ctl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x47218c1f b1_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x6f7f04e3 avmcard_dma_free -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x9557fb2d avmcard_dma_alloc -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x970ec10d b1_load_t4file -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xa2b17a17 b1_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb127d5d7 b1_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb7d1de3c b1_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xbb5bb6d5 b1_loaded -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe1550e0d b1_free_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xed1c08d3 b1_load_config -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf756fd0c b1_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfcea9124 b1_parse_version -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfd164bf8 b1_getrevision -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x0ad4fabb b1dmactl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x814b3372 b1pciv4_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x877d36e6 b1dma_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xa3bb92c2 b1dma_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xab18edb1 t1pci_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xc1c14ce7 b1dma_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xea0816fb b1dma_reset -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xeba5d3d2 b1dma_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xf81de39c b1dma_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xd2a41634 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xd70b37f6 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xddabf508 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xfd3c8477 mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x3a079447 mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xcf282ddf mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6fe1ca04 FsmDelTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9f987c85 FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xa1bc94b9 FsmInitTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xe312d20b hisax_init_pcmcia -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x13231330 isacsx_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3a45c0ae isac_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x45c1c8d2 isacsx_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x9e72d27c isac_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xf0169698 isac_init -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x28069ed2 isdn_ppp_unregister_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x48983a36 isdn_ppp_register_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xa4eb73fd register_isdn -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0bbaf851 recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3fd0f32e mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4b2bf2c1 mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5c904e57 recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5d7e1dfc create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6af62ab1 mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x79a14a4b mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x87153ac8 get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9837f51c mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa0788f24 mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa143b830 bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xae16cecc mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb77e5ce1 get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbc24f043 recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbebcd1f6 recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc240c897 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xccdf4b53 queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd061ba05 recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd546a8dc bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe0b91b89 mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe78a8550 mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf568c616 dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf5d7cdcf mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/md/bcache/bcache 0x1d89bd11 bch_btree_sort_partial -EXPORT_SYMBOL drivers/md/bcache/bcache 0x1f529ce8 bch_bset_build_written_tree -EXPORT_SYMBOL drivers/md/bcache/bcache 0x26481f26 bch_btree_sort_lazy -EXPORT_SYMBOL drivers/md/bcache/bcache 0x440b4830 bch_btree_iter_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0x44a37d62 bch_btree_iter_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x465a37ec closure_put -EXPORT_SYMBOL drivers/md/bcache/bcache 0x4d7b02f1 closure_sub -EXPORT_SYMBOL drivers/md/bcache/bcache 0x515f7e68 closure_sync -EXPORT_SYMBOL drivers/md/bcache/bcache 0x5b59b856 bch_btree_insert_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7daccb73 bch_btree_keys_alloc -EXPORT_SYMBOL drivers/md/bcache/bcache 0x8833b0e8 bch_btree_keys_free -EXPORT_SYMBOL drivers/md/bcache/bcache 0xa3c5c702 bch_bset_fix_invalidated_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0xca5df778 __bch_bset_search -EXPORT_SYMBOL drivers/md/bcache/bcache 0xce47a6d9 bch_btree_keys_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0xd2813054 bch_bset_insert -EXPORT_SYMBOL drivers/md/bcache/bcache 0xd88cd3f5 closure_wait -EXPORT_SYMBOL drivers/md/bcache/bcache 0xdf892351 bch_bkey_try_merge -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe67c2d16 bch_bset_sort_state_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0xec6f33d0 bch_bset_init_next -EXPORT_SYMBOL drivers/md/dm-bufio 0x268682d2 dm_bufio_forget -EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers -EXPORT_SYMBOL drivers/md/dm-log 0x000b23e6 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0xc828aba1 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0xd0b4cae8 dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0xd545dc68 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x0208d854 dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x4dd49483 dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0x76e13649 dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0x8992e917 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0xb928d3e9 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0xd290af7b dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/raid456 0x7fe4a281 raid5_set_cache_size -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x16edac3b flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1722edea flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x21f7b510 flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x267bc28d flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2774eae5 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4cb0efec flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4cf03e7c flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6311c998 flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x64a9bfcd flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x98e8e2f7 flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa9d446e2 flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xbd375c20 flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf55a0f16 flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/cx2341x 0x0a5c152c cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update -EXPORT_SYMBOL drivers/media/common/cx2341x 0x30cb4cd7 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0x682b57ce cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cx2341x 0xae8f5f5f cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0xd1ce4350 cx2341x_handler_setup -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x2521f6d2 cypress_load_firmware -EXPORT_SYMBOL drivers/media/common/tveeprom 0x56201821 tveeprom_read -EXPORT_SYMBOL drivers/media/common/tveeprom 0x88d27d74 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x098b2571 dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1215f1b0 dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1378e7a8 dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x18142b71 dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x18b53939 dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x20a56219 dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2dbb0382 dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3002f580 dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x32706276 dvb_ringbuffer_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3313fd72 dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4cfe458d dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4d383c4b dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5c0ea535 dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x70af1058 dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x78db694b dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7b763b79 dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7cc43642 dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7cdc0e39 dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7df3024c dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7f4f9b54 dvb_ringbuffer_flush -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80ec17b9 dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x830a9253 dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x85a5e7d3 dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x95dc7122 dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9fcb1533 dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa66657db dvb_dmx_swfilter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa68b33ed dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa6dacd69 dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb9fcdff2 dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3051c27 dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc4b2a1d9 dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcd3c8c64 dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcf589e8c dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd8f7184c dvb_ringbuffer_flush_spinlock_wakeup -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd9842daa dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe882b759 dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf28e7431 dvb_ringbuffer_read_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfbaa7e01 dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0xdf9c2214 af9013_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xfb6cde61 ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x7a8a2427 atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x1384bf5e au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x1e618e6d au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x239baddc au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x30037b94 au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3fb99a94 au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa74e04d5 au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xba401979 au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd1f4641a au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe05443cc au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xb06fe319 au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x444129e5 bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x0f8f44f9 cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x655aa341 cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xc0168825 cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xc24cfa84 cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xed25cacd cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x59fa813d cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x507866e8 cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x31122c22 cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xa3f7b831 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x75e91a3b cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x4764c3fc cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x5536f0e4 cxd2841er_attach_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xad27a948 cxd2841er_attach_t -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x01d50f40 dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x6396c78e dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x7d9bbffb dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xa17bcd98 dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xfbba7249 dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x00132e81 dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x325017da dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5e9a0e76 dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x65ad5579 dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x70c78d09 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x70d42e64 dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x83ebe4bd dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x84aea11d dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8fb82d47 dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9425bf99 dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9b363a50 dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd257c9c3 dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdb2dfeee dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xeae68fc2 dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf7d36dcf dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x5e10acb0 dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x63815da2 dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x6486a062 dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x699cea11 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x8eeba7e0 dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa9326eb2 dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xcaa6840f dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x414c54db dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x83b46296 dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x90576885 dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xdb74d6ca dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x312c1164 dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xe191af3f dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x20bd43cb dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x22f01506 dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x85f2a54b dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x874bd297 dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xacdfec06 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xdc17eeea drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x255fa93d drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x88b43908 drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x33d8b1ae ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x45db38a2 dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x9cd7e952 ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xc3fef718 horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xd92cbc61 isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xc0c47e3b isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x34f472e2 isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x9afdb70a itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x0a059ef2 ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x0345327d l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x36efc735 lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x3c858e6f lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xda328221 lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x4ca73bfe lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x5bee5065 lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x205284a1 lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x8d79b62a lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x95065b48 lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xaf14db34 lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x0e01ba80 m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xe0745958 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xbf699fb8 m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x239a834a mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x83ae8990 mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x5e04281a mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xa6fcbebb mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x1e7a960c nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x222a4f48 nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xa5a46639 or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xa80c847b or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x67f06c06 s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x61f39f2a s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x15de7ffa s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xb8b4489d s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x460e354d s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0x7767e5b3 si2165_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xda0dc19e si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x0235431f sp8870_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x518081de sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x2d2f711c stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x26fa5317 stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x4b02a844 stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x2b62bb5d stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xc0624edf stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x63e54666 stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x40705be8 stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x432963f2 stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xfc322c18 stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x8d4eaa21 stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x8e5d9ef4 stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x6fe79c27 stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x599202f4 tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x9509b83f tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x95f26590 tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x4322a83e tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x77370056 tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x84e5f461 tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xd321a948 tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x623544a5 tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x40fe1361 tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xa6b6c508 tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x67886c28 ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xed30ced6 tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xa59f4a68 ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x82574967 ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x869ce6a7 zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x08f23f9d zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x88920bc3 zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x32b72233 flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x40432f23 flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x40eda4ae flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x8d3863f3 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x8fb5cc98 flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xa07fe8ef flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xed77d806 flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x58f94ffc bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x5b453b93 bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xacdedc0d bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xfa7b736c bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x6028f9a1 bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x73cd3776 bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xb04dd284 bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1aa7a349 read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x33ea00e4 dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x626a114d dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x77b8e84b dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7fb093cf dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb3afa43b rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xbb0ae39e write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc3d89b9a dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf7051556 dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x8e4f1b3d dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x0cfeb89c cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xbb7769b6 cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xc083a789 cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xc533b2b7 cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xcd7d3e9f cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x83a6989d altera_ci_init -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x05caeda8 cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x2b220117 cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x48664b41 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7040c140 cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xca502d49 cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe5dac9c0 cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf7b0b788 cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x1ca49387 vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x6d1902a9 vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x1635fc5f cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x3cc61ea7 cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xe513e21b cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xe642b0b3 cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x24cd1c8c cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9ea6b487 cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9f1be849 cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xbfbbd75f cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xc8adcdd5 cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xdf5e1f19 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xf3630ea5 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0f30f759 cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x22eca056 cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3549ea29 cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3791d484 cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3f0d85b5 cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5a2dca3b cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7657bb85 cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7d1847bd cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7e69e139 cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7f8ee548 cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8e1842c2 cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9cffba89 cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9f40c519 cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xaaec83dd cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xacf5d182 cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc7eed5b0 cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe1de6d03 cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe7cdafcf cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe909aa57 cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf61caf7e cx88_reset -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x03f15eb6 ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x17080cef ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x29137bf1 ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3b4a19ef ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3d27b854 ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5bb7ed93 ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x703281c2 ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9b41f243 ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xab1730aa ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xabeb0339 ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb179c7b4 ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb2602616 ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc3169ff4 ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcad5dbf2 ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe0375401 ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf47a4309 ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfd90891f ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0bcc6a49 saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3fcdc211 saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x49ded0ed saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6b33171a saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x731b81c1 saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x94bf25c5 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb18dd1c6 saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xbfa62433 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc6dcdb5a saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xcdb9e981 saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd9751425 saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xdc934609 saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xdb878890 ttpci_eeprom_parse_mac -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x28aa1500 soc_camera_apply_board_flags -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x3b766c85 soc_camera_xlate_by_fourcc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x4dfe44c8 soc_camera_power_init -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x88521553 soc_camera_power_on -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x9921f43f soc_camera_power_off -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xb33a9146 soc_camera_host_unregister -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xf98d26b0 soc_camera_host_register -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc -EXPORT_SYMBOL drivers/media/radio/tea575x 0x2e0433f3 snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x3e7c2dfb snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0x44ce124e snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0x5a2c44f6 snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x91f32054 snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0xa86fc327 snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0xcce08b82 snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x14265b64 lirc_register_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x38457f79 lirc_dev_fop_read -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x7c5c3dd0 lirc_dev_fop_ioctl -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x7e6d0c1e lirc_dev_fop_close -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xa35d31c3 lirc_get_pdata -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xbf64bddb lirc_dev_fop_poll -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xda62cac6 lirc_dev_fop_write -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xe007efb7 lirc_dev_fop_open -EXPORT_SYMBOL drivers/media/rc/rc-core 0x570dea85 ir_raw_handler_unregister -EXPORT_SYMBOL drivers/media/rc/rc-core 0x60ed951e ir_raw_handler_register -EXPORT_SYMBOL drivers/media/tuners/fc0011 0x3232c994 fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0x6548eb40 fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x1f1db3bb fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x3001ced5 fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xb53df0a9 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/max2165 0x044bd64f max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xbe9672a0 mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0xcab7ffe1 mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0xf2ff48c4 mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0xdfd0af30 mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x578e81c3 mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0xa67fac1a qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0x1f78866d tda18218_attach -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x8b57b769 xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0x5d49c104 xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0xbd38a523 xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x0d12ef2f cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xcf845f36 cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3122dabd dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x37cf134e dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x399f98cf dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3dfb2b7a dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x498473b5 dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x58724254 dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8d96f520 dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xdf475fd9 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf48256a1 dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1174ac31 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x25426809 dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x466624b5 dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7c4c825f dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x96edba71 dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x9ff3245c dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf1630bf2 usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x92f93040 af9005_rc_decode -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1ea2906b dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2f3ef13f dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x34bc8680 dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3bed2d9a dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6f9fd41e dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x720cbb2a dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x871a1caf dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9a2b6201 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa2d86249 dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc7a3aba9 dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xed2600d7 dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x30a299c9 em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x8243c76b em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x0481f1c7 go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1e55d98a go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x2ef9e74b go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3c9574fa go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x51682e91 go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x729b8026 go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x788fe043 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xcab509cc go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xef3561ef go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x05b867e7 gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x0b1c130b gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x1457def7 gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x540b2e37 gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5cd60dfc gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x7a37236d gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xba82bf2f gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xfc4881a7 gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x38d4a54c tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x49ab470e tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xb8fa3f08 tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x467e2c01 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x6db92dcb ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x9cd9f624 v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x9f393f81 v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xcf597531 v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x2b18ad12 videobuf_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x78ddcea0 videobuf_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x9edfdc34 videobuf_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xab8d003a videobuf_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xbdef10c1 videobuf_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xc143bf38 videobuf_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x3a5eb568 vb2_verify_memory_type -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x932c4923 vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x349db991 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x69bce40c vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x86288249 vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x9193202d vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xbaf0e390 vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xcb391d4b vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0xa548d8d1 vb2_querybuf -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x09798c92 v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0e1e4e40 v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0e7c40a4 v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0f04a04e v4l2_clk_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0f5afe97 v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x10db7dab v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x13a0fa6b v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1548d77c v4l2_subdev_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x199774f9 v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x19abe891 video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b650c0d v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1c685064 v4l2_clk_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1cc19ceb v4l2_subdev_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1f2944d3 v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1f5999e4 v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x22dd70c1 v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x251203ee v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2e40f910 v4l2_of_parse_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2f4139bc v4l2_clk_set_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x30e2a701 v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x327449f1 v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x33ef3e1e v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3ab349f6 __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4214f801 v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x42a12b80 __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x43b83724 v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45e9b9ac v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x48977a2d v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x48b84ee4 v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4f82b80a v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4fbe7999 v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5a6c5c4e v4l2_subdev_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x641b36e9 v4l2_clk_get -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6995e72d v4l2_subdev_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6a0bc6c4 __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6aafdb80 v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6e7c7669 v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6efca67a v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x706486e0 v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x709ffbb8 v4l2_clk_unregister_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x74d0bcc3 v4l2_subdev_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7e0d56a7 v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x82412013 v4l2_of_alloc_parse_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8423a7c4 __v4l2_clk_register_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x847ff34d v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x92e4e957 v4l2_of_put_link -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9713f102 video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x97c3f5dd v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x99dc763c video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9a982f1d video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa5a9e15f video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa60bd01e v4l2_clk_enable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xade1b977 v4l2_clk_get_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xae095b32 v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xae269ce0 v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xafd61fb4 __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb171a7d3 v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb70da345 v4l2_subdev_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbf5185df video_usercopy -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcbb8e502 v4l2_clk_put -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd8e4a237 v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xda29e0ec video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe767d74c v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xed5c7dc4 v4l2_of_free_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xee7146ac v4l2_ctrl_add_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf18785fc v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf5d43bfe v4l2_subdev_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf780552e v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf8004fa9 v4l2_clk_disable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfad5a42f v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfbe0018c v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfe5d5d21 __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfeb5c471 v4l2_of_parse_link -EXPORT_SYMBOL drivers/memstick/core/memstick 0x034286d7 memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x05055e43 memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d132420 memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x6a700742 memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x8103e5e0 memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x90bc5a88 memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xa32d4202 memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xb6066930 memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xd8051414 memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0xd9c3506d memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc07e67e memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xea3cffc7 memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xfa003707 memstick_detect_change -EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x055715e1 mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x173d4f71 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x18acf3b1 mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1a993037 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1e7ce08e mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x22eb7ad1 mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x238f14b9 mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x30aa4d32 mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3275e277 mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3497c7b3 mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x37a6ae2b mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5d37ce47 mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x689047bf mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6ab5ebbf mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7015c931 mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8fdb672a mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x914af06b mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x92afa898 mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x95d931a2 mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9ceb1efd mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xacfcf1cd mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbee751c2 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc266e94b mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd4606758 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd7236e08 mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdf05e400 mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe28dc692 mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf95abacc mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfdd99df0 mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x01ce8bb9 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x031d842e mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x11dcd771 mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1c6133b5 mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1cc67d5d mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x24d44a27 mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2b55376d mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x48199887 mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x48ff5df0 mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4c91949d mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x57aff0f0 mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6900bf94 mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7d4145e6 mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7e1db9e4 mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x82b0e8a8 mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x90b87994 mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9ba60988 mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa407b166 mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa6baed22 mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xaa279597 mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xaeb0bcad mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb2f3e1ea mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb608c8d3 mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcfb2ff58 mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe52a9836 mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe6f15904 mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xffc1234e mptscsih_qcmd -EXPORT_SYMBOL drivers/mfd/dln2 0x38b0d86f dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xca4a516a dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xe8b309a7 dln2_transfer -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x83003071 pasic3_write_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x8e72a6ad pasic3_read_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x29457bfe mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x46d8e1c6 mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5e9d59b9 mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x77b91899 mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x80f5180e mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x866fa0c1 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8ee16c43 mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x918199a0 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd86d684f mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xdc361808 mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe687c1b2 mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 -EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 -EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib -EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led -EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw -EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x73679310 wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0xbb34acc4 wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x53bb659a wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x6181de03 wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xa90e8366 wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xfee3dc2e wm1811_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x358583e7 ad_dpot_remove -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xb9fb973f ad_dpot_probe -EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x30b3ae49 altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x2f995f51 c2port_device_register -EXPORT_SYMBOL drivers/misc/c2port/core 0xe47284f0 c2port_device_unregister -EXPORT_SYMBOL drivers/misc/ioc4 0xc21bbd26 ioc4_unregister_submodule -EXPORT_SYMBOL drivers/misc/ioc4 0xcc1bcdcd ioc4_register_submodule -EXPORT_SYMBOL drivers/misc/tifm_core 0x031d4484 tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x0c9257c5 tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x16d5f790 tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x3672e7b9 tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0x5c5b9fb7 tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x9b494519 tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xa8c2ec46 tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0xbd3e1a90 tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0xdfa13383 tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xe6e606ba tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0xe6f7a44a tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xe8cf9e3c tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xfaf88580 tifm_alloc_device -EXPORT_SYMBOL drivers/mmc/card/mmc_block 0xa8a2d8e2 mmc_cleanup_queue -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x394ee9bc mmc_spi_put_pdata -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xd343dd3f mmc_spi_get_pdata -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x07aca7ab cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x12690144 cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x1fcfc083 cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x450d1d2d cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x894fa5f2 cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xa60a174f cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xdf214246 cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x05c7f6fe unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x1de0a69c do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x44841697 map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x6645def6 register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x49688634 mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x49275141 lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xbf54d82c simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0x3e6b5758 mtd_concat_create -EXPORT_SYMBOL drivers/mtd/mtd 0x9aadc3cd mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/nand/denali 0xab14994a denali_remove -EXPORT_SYMBOL drivers/mtd/nand/denali 0xc1254984 denali_init -EXPORT_SYMBOL drivers/mtd/nand/nand 0x08b0c00f nand_scan_bbt -EXPORT_SYMBOL drivers/mtd/nand/nand 0x164bb2c5 nand_scan_tail -EXPORT_SYMBOL drivers/mtd/nand/nand 0x2d2cef46 nand_scan_ident -EXPORT_SYMBOL drivers/mtd/nand/nand 0x340a9569 nand_scan -EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/nand 0x9d85ac62 nand_unlock -EXPORT_SYMBOL drivers/mtd/nand/nand 0xc1688694 nand_lock -EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x447a5066 nand_bch_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x50b8d37a nand_bch_init -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xf57e9664 nand_bch_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x0f1a5324 nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xe09c73ac nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x8cfcf75c nand_flash_ids -EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x1692c616 onenand_scan_bbt -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x6abcf38f flexonenand_region -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xd2881573 onenand_addr -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xfef26e8a onenand_default_bbt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x014ee757 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x22219dc7 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x37b50173 arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6cdf4af0 alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x710a96f5 arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x906d0f79 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa1b39662 arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb483880f arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc7115502 arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf21106b2 arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x6b2fc8d6 com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xb5e9ce3f com20020_netdev_ops -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xc144ee38 com20020_check -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x120e43b4 NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x20a71ccc __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x33018f23 ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3d8d0b48 ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x639313cc ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x70c25bf5 ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8dcf9e77 ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8eff1fa0 ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xbd98cb8a ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xeafc7e48 ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0xf93e7af9 bnx2x_schedule_sp_rtnl -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xd5054525 cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x0d8be5fd bgx_lmac_rx_tx_enable -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x285bde59 bgx_get_rx_stats -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x42264715 bgx_get_lmac_count -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x6dc1648d bgx_get_lmac_mac -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc397f585 bgx_lmac_internal_loopback -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc82be691 bgx_get_map -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xe48ca42a bgx_get_tx_stats -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf101d1b2 bgx_get_lmac_link_state -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf9508980 bgx_set_lmac_mac -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x14acd9c4 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x24bb8817 cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x65b6fb4e cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x70053e1b cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x78c5da6f t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7b78b622 cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9443a230 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9720abcf t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9d0ef52e t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa5bc8995 cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbba8315b dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbf217423 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd41f7bc4 t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdca587ec cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe3ff9add cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf4ff47dc cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x05a38441 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0b55a8ea t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0fdf459d cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2a9050bb cxgb4_dcb_enabled -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2ded24ad cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3453dec8 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x39a87b1d cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3d25890c cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x47c70887 cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x57b4a4c4 cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5ff43cd8 cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x63707ea1 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6874769f cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x68f5e7a8 cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6aa0143d cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6d248ae2 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x71570b41 cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x723ed6ca cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7dd4b840 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8734f980 cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x890f56a3 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x952126ca cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa605b4dd cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb0687115 cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbb0a3069 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcf65ecb2 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd6f2bcc3 cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd8fb6d82 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdb1eb617 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe0aed8f2 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe1f393bb cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe9cb8caf cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xedc78402 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xef30c82c cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x18ab78d9 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7d727d39 vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x81258eed vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x90e82c1f vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd5de9ddf vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf8471632 vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x2036d03e be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xe7a7bd36 be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14f1290c mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1826401c mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29aaa46f mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34b31e8a mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35956637 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x428640a9 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47c61144 mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54e95b00 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a35547a mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b346ca3 mlx4_test_interrupts -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fe2d361 mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75638d8a mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x793200c2 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e67cfe7 mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81575acf mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82341550 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8735e372 mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a081d0f mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9429d24e mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96b8ad85 mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x993ad4e3 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9bb265fa mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9eececbc mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0bccaa5 mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2a11096 get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa878e683 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xadf19285 mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8c5fede mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd96c946 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc622c84a set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6b2b8a8 mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9244570 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5353621 mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea371540 mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef845bbe mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbf17053 mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfddbafc3 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe82f75b mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01d643d4 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x068ec558 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0857aabd mlx5_get_flow_table_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb7287e mlx5_del_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f4839d1 mlx5_cmd_comp_handler -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f5f4d44 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x161853e5 mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19a9a524 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ae1fae6 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b3cf460 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x392d9f99 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d49ce85 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ed4e306 mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41a7c26b mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43929ea6 mlx5_modify_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6944f7ef mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x772c7eff mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c8579d8 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84118731 mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8de2a664 mlx5_query_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x900090bd mlx5_core_create_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98954425 mlx5_core_get_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ec88e3a mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaac24326 mlx5_alloc_map_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac2c62db mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacfc8b94 mlx5_cmd_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xadc7e834 mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae028b27 mlx5_unmap_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf566cd2 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf8b7542 mlx5_cmd_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc913643c mlx5_get_protocol_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3484d03 mlx5_core_destroy_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdaec1de9 mlx5_register_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde96efa2 mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3012b56 mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6af33e4 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe79348c4 mlx5_core_arm_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee06a1a0 mlx5_core_dump_fill_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0e08f7d mlx5_core_query_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6046d62 mlx5_unregister_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf677d587 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc728a49 mlx5_add_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1cd11069 mlxsw_core_skb_receive -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2279ba10 mlxsw_core_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2d07a992 mlxsw_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3b0317b9 mlxsw_core_rx_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8f1582ef mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xae4ec13e mlxsw_core_bus_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb0eb3357 mlxsw_core_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbe3fa00d mlxsw_core_skb_transmit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee8e0771 mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x79a6a413 qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa209d1af qed_get_protocol_version -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x2456b828 hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x51c0f3fd hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x9990d304 hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x9c906325 hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xe4e50f68 hdlcdrv_register -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x0e3bd8ce sirdev_put_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x1e528057 irda_register_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x744f76ce sirdev_write_complete -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xa19273a2 irda_unregister_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xc8211285 sirdev_receive -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xcda3156b sirdev_raw_write -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xda95eae8 sirdev_get_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xdf9936c0 sirdev_set_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xef4e0bb9 sirdev_set_dtr_rts -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xfd7dd5a9 sirdev_raw_read -EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl -EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart -EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag -EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe -EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok -EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage -EXPORT_SYMBOL drivers/net/mii 0x1f148883 generic_mii_ioctl -EXPORT_SYMBOL drivers/net/mii 0x1f352b8b mii_ethtool_sset -EXPORT_SYMBOL drivers/net/mii 0x3411183a mii_nway_restart -EXPORT_SYMBOL drivers/net/mii 0x79dd6e28 mii_ethtool_gset -EXPORT_SYMBOL drivers/net/mii 0x8c3e82d0 mii_check_media -EXPORT_SYMBOL drivers/net/mii 0x9e2b220a mii_check_link -EXPORT_SYMBOL drivers/net/mii 0xd4d289ca mii_check_gmii_support -EXPORT_SYMBOL drivers/net/mii 0xff51e3de mii_link_ok -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x79049443 alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xc5eb585f free_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x49e83254 cavium_mdiobus_write -EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0xf313648c cavium_mdiobus_read -EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x4fb865a9 xgene_mdio_rgmii_read -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x557bad73 xgene_mdio_rgmii_write -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x705a0482 xgene_enet_phy_register -EXPORT_SYMBOL drivers/net/phy/vitesse 0xa8a49f97 vsc824x_add_skew -EXPORT_SYMBOL drivers/net/ppp/pppox 0x1dc72b83 pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0x5ca05bfd register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe90f4a58 pppox_ioctl -EXPORT_SYMBOL drivers/net/sungem_phy 0x36a8d43b sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x1c7be5b7 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0x40518e55 team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0x5127770d team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0x56bbd9ef team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x5fd5763c team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0xa2c473cc team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0xb06bcc4d team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0xd2c3c491 team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/usb/usbnet 0x515ccfd3 usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0xccc48902 usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0xce2f73bb usbnet_manage_power -EXPORT_SYMBOL drivers/net/usb/usbnet 0xf81ab2bb cdc_parse_cdc_header -EXPORT_SYMBOL drivers/net/wan/hdlc 0x09fd6efd hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0x253073f8 alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0x393ead31 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x4923cee1 attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x56a22525 hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0x66cbe64a hdlc_change_mtu -EXPORT_SYMBOL drivers/net/wan/hdlc 0x70b42357 hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0x72108b4d hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0x8dd19b97 unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xf4a63e6f unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0xfc1b29d9 register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0xfc41035e i2400m_unknown_barker -EXPORT_SYMBOL drivers/net/wireless/airo 0x78aca7ef stop_airo_card -EXPORT_SYMBOL drivers/net/wireless/airo 0xf04da9de reset_airo_card -EXPORT_SYMBOL drivers/net/wireless/airo 0xf9214c8d init_airo_card -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x054cf7be ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0937326a ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0b9f6eab ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1b4acc9a ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8df0a571 ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9ad206a5 ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa263b133 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc76ac8b0 dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd8978926 ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf62184f6 ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf676b714 ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xff65ab52 ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x139d6a68 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1f47d473 ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2933a3e5 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3245b7ad ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3e754b9d ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x49882305 ath10k_debug_get_new_fw_crash_data -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4fb82986 ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x56252c30 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5eba0620 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x685ae31d ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x74fd6e38 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9762767c ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc8124a46 ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xca42fdd0 ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd6f2c0ce ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x159a3bf5 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2d6d17db ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x32a06448 ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4c884d7c ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x833710b9 ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x9b67e20d ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb23aa6b3 ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xbb409f32 ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc04236a6 ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf5c1e0ac ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf84423a0 ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x02111996 ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0ee2cbd9 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x21ec74a5 ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2c096de2 ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x36f24800 ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x424e0f42 ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4a643245 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5a0c99c5 ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5f240edc ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x723e6299 ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x88d830e3 ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9512262f ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa0330b85 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa2646d6b ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaf1cef8c ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc1bf9f1f ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc905e9e7 ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd5d372c2 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd80e1af4 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdbaf2917 ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe8cfaf72 ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf7e519ec ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xffa648d8 ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x016feeba ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0189a2f0 ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x022902f5 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x032a00c9 ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x083c5c29 ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0cfa7902 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d25d791 ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d321047 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10e047b9 ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x115871ba ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13fe1d9d ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x14110ab0 ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16df9360 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x18048c77 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a67b5f2 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1e00bef7 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2326c3fe ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x24a7f7cf ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x276bfead ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x335b227d ath9k_hw_request_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x347185af ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x35551996 ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x356d0d22 ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x35a767fa ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b057cb1 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3ba58739 ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3ba91df3 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3cd8bf94 ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x406e4f24 ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4215a15f ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x43777c54 ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x445bbe3a ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x465517aa ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x465f2f7c ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46aaf5c3 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46b2cb34 ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b357273 ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e8fc363 ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51c650e4 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51f46b0e ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x557db286 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x55f97df2 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a80bc0e ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5f2fb6a1 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5f4a4210 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5ffbd9c1 ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x618d0ec2 ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x635d46b4 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x64c0438d ath9k_hw_cfg_gpio_input -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6a05a605 ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ce225ac ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d553207 ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x71a9d4ff ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x753c6a72 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7609ce29 ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7b07a83e ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7b646e55 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7bcdeb9b ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c9f276d ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8390d095 ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85d7709e ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x861e6375 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x879ef5e6 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x885824a1 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8a5631ae ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91f416a3 ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92050575 ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x931288ff ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x93185ad5 ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f092b7f ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f2ee18c ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f9e6e19 ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa9053de8 ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaded7842 ath9k_hw_cfg_output -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae09c78b ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae34e0c4 ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb28f3e00 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb615d069 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb89a0acc ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbfef70d0 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0a15d7c ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc2330ebd ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd247e26 ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd877b95 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xce2442f8 ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd47e414b ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd5343275 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd79e8f97 ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb143142 ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe384573e ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe3b1b183 ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe6fd6930 ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe85f7d4c ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe885f2a0 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef19a95b ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf01866ed ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0aadcb2 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf10d8b7a ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf1618942 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf4a4f216 ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf98c4f00 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf9eee652 ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb7a5607 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe6e2097 ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff72e418 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/atmel 0x32a38eb5 init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel 0x548791ca atmel_open -EXPORT_SYMBOL drivers/net/wireless/atmel 0x856f88d7 stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x277258bf brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x2e7465e7 brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x34d292e9 brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x548e578e brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x680054bf brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x826e7206 brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x829acc4d brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x92c47ea8 brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xa36f9e95 brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xb22dd1c4 brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd1986905 brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd445843a brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xdad7c395 brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1723ac32 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x26b6f0e3 hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2bd207f0 hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3c6b9d1a hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x58d6e5bb hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x63a2ba6e hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6737ca60 hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x69b7070a hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6fd82a74 hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7aaca1ce hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x80cd7a88 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8107d791 hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x82e2a869 hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x85ca30be hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x93269556 hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9a82dc47 hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa0ade4f6 hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa1546efa hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xaeecea95 hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb62f7a06 hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb6d93c8b hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc561693b hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd2d42074 hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd420ac4f hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xdf2aa2dd hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe08502a7 hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x098e8150 libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x14b46084 libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x475adaa2 libipw_rx -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x49dac602 libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x53feb15b libipw_change_mtu -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x595b7e86 libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x68aef402 libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x73085832 libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x78dc6a2d libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x79a00803 libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7f3a5eed libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x82fccb78 libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x9b7a9ed1 libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa7016b30 free_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa932a4b0 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xae1867c0 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb158e6ae libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb49786d5 alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb6512f33 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xdbff559d libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf36b255b libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x00aab167 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0106db1b il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x056da38b il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x05fb858d il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x06c2ffdb il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x07e53055 il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x08106bbd il_force_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x09829ee4 il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0a6b46e2 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0aa39ba8 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0c3b3c5b il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x106d709b il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x128cda75 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x12c52020 il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x146b1661 il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x16fa343e il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2041d235 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x24045c52 il_set_rate -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x25154833 il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3193347e il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3271d5a1 il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3946dc6a il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3a43a4e0 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3b9f9b0e il_leds_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3bab2a30 il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3d839e0c il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3de5dd60 il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3e0d1e95 il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4012cea0 il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4538a3f3 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x55cb7af5 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x562feb1c il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x563ce846 il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x56fbbc47 il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x571d8042 il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x57ba9a73 il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x58e7b9af il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5d3f8d66 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5dac92c1 il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5e5d9568 il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5eba07c3 il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5f0d0f75 il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x62a20474 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x62ee83f9 il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x63fa9e50 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x650d19c3 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6d000793 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6dd69a0e il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6e4d4234 il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x70b574fe il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x73109210 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x763be1d2 il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x76bca563 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x78189103 il_set_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x78de625c il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x80e9ca6e il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x88a47c7c il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x88b29b5b il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x88cc2793 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8b540b48 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x92be4b4e il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x95c1833d il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9e9cfa7a il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa24d74e8 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa3de98cb il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa5deb46b il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xab6d54c5 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb68ca5a3 il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbdae7785 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc46841c5 il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc6fbf235 il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc8dbee06 il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc9db3abf il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xca248042 il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xca41eb56 il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcdbb54b7 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcf329b18 il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd15a5479 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd3414250 il_init_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd71ffd1a il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd8ef2b4b il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xda0a8d23 il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xda5959a5 il_free_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xda5f3792 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdda7782c il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xddca3a62 _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe0e143ac il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe2e24e0b il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe3714a51 il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe43decbb il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe51f26fd il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xed8b4cb7 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xee48ca7a il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf130c063 il_apm_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf17ed928 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf1d88731 il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf9591f56 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfc101a37 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x1b06ce78 __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x2447a6ab __tracepoint_iwlwifi_dev_iowrite8 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x314a20a8 __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x5e9c24ff __tracepoint_iwlwifi_dev_ucode_error -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x8c8ab242 __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x9a1b1df9 __tracepoint_iwlwifi_dev_ioread32 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xdced6db1 __tracepoint_iwlwifi_dev_iowrite32 -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x013a0b27 orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x106a9d81 orinoco_open -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x3dde2611 __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x405bf9d1 free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x4a66dde1 orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5dea5bf1 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5f8df20b orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x60ffacf4 orinoco_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x686c981d orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x7f7f97fd orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x83708f18 orinoco_get_stats -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xadbe1d28 alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb435e111 orinoco_down -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc7663283 orinoco_up -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xdb2c47cc __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe1470ed0 orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe6b6bd2f orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xc421f11b rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0ce53389 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x139ce642 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1c83fc8d rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3ad9deec rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x425f008e rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x42ac9a02 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x44687d4f rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x48460927 rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4a847527 _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4d43d793 _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4f0e5230 rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x50cba6e0 _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5570b736 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x623f0ba1 _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6661499b rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6831ad22 rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x76055776 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7a009041 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8ef37670 rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x93d8be98 rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x93ea1082 rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9a68b1b8 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9bc802b8 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa021ffa0 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa7ebc32a _rtl92c_store_pwrIndex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xab0a4f33 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb943924f rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcb1554f3 rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcfd2c7d2 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd10f1202 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd40e5a0b _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd530dd63 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd5362135 rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd7dfe1ea rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdfa666bf rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe21cc920 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe5eb38f8 rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe5f1f1e2 rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xece21e6c rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf28799ee rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf4003ea5 _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x117544de rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xac462140 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xbb8b38aa rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xdac2f943 rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x1249a28a rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x73178dc8 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xca435aa4 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xfe3efa5c rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x046193ce rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0fff086f rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x12d056f0 efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x15095283 rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1df000d3 rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1e0e8a7b rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x29b8b138 efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x396c0c85 rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3b8bc91f rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3c380662 rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x45154520 rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x53bc7f08 rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x62bef7e4 rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x66382510 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x71d27220 rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x75c0c26b rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7b0ae61e rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9641d980 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9c14e029 rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa0cdafc5 rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb5cc8110 rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb9158f99 rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbcb79424 rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbd42daf5 rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbf9b6484 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcd0d2ac2 rtl_ps_set_rf_state -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe2819189 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xea72c01d rtl_wowlan_fw_cb -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xa3d8626b wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xc33bfe3c wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xec4ee520 wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xfb2cf945 wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x116f9df8 fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x3ccc3f1f fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xa5918fe0 fdp_nci_recv_frame -EXPORT_SYMBOL drivers/nfc/microread/microread 0x77fd060f microread_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0xfc96f5b9 microread_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x1bc07351 nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xaf88999b nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xf8c27b1d nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x01afa2b9 pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xaf0e5f64 pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x1a4f8528 s3fwrn5_recv_frame -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xdc0bf845 s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xdca231e9 s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x0565f5cb ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4c09531c ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5ebbec53 st_nci_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5efac544 st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x88585846 ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa7f59f3f st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xad1504dd st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb9c4c825 ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xbde93a73 st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xdd19aac1 ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf300e115 ndlc_send -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x07c98479 st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0ed7bc20 st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x13d5ce2a st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x27c6724a st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x47f2e40e st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4a19d9be st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5cac8c67 st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x670ddca7 st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x740e956c st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7f7a8d5d st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x81084afc st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x84c3992c st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb0e3618e st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc004d80c st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xee4871ca st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf101afd3 st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf8018c24 st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfdbb1f8a st21nfca_hci_se_io -EXPORT_SYMBOL drivers/ntb/ntb 0x024e3ff1 ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0x2801b420 ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0x39e0dedf ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x6e36ad1f ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0x79a69958 ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0x8bc90fdb __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0xad7560a3 ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0xeee803f2 ntb_clear_ctx -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x4807578c nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xf6dabafc nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x4125fb8f devm_nvmem_cell_put -EXPORT_SYMBOL drivers/parport/parport 0x09426b65 parport_claim -EXPORT_SYMBOL drivers/parport/parport 0x1387156d __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0x2155d0f9 parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x2ecedcbc parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x3979c223 parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x3a39d12c parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0x434d2d8b parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x4f9e60b8 parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0x500912ce parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x54e0ad4a parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x5f921e8b parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x654158ec parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0x655c2f99 parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0x69ca8564 parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x7ad76ace parport_register_device -EXPORT_SYMBOL drivers/parport/parport 0x7f566ca6 parport_release -EXPORT_SYMBOL drivers/parport/parport 0x80b14665 parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0xa9cd9794 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0xb2afe87e parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0xb7cb24ff parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0xb9ab6332 parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0xc5920b0b parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0xc7430374 parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0xc9a33474 parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0xcdaae559 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0xd457d3c1 parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0xd5fed6f4 parport_write -EXPORT_SYMBOL drivers/parport/parport 0xd666b566 parport_read -EXPORT_SYMBOL drivers/parport/parport 0xe121dd56 parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0xe18cd2d5 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0xf25d1ccf parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0xf9df09e5 parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport_pc 0x1b83b7f5 parport_pc_unregister_port -EXPORT_SYMBOL drivers/parport/parport_pc 0x9f963467 parport_pc_probe_port -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x08aa7c61 rproc_vq_interrupt -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x0a45dabd rproc_get_by_phandle -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x3d13480f rproc_report_crash -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x50259689 rproc_da_to_va -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xa19c6689 rproc_add -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xa876c6b7 rproc_shutdown -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xae4869cb rproc_alloc -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xbbd7881a rproc_boot -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xfa20720e rproc_del -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xfe04214b rproc_put -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x234d052e ds1685_rtc_poweroff -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x22de7b80 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xb59d0a99 scsi_esp_register -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xd97a69ca scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xefe1eacb scsi_esp_template -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x125ab5de fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x13dd3944 fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2060027b fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x31f8fa0c fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3de87f26 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7412d5a9 fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x772c4968 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb53ba1b8 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb63206c7 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd30a8a30 fcoe_ctlr_destroy_store -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe2b37c26 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe7ade732 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x028e1fa5 fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0a349427 fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0c5444a8 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0cac5ce2 fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1980b9fe libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1d055fe8 fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27899562 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27f1fc0a fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2aa40074 fc_rport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2b61a833 fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2e51281b fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2f45d3ff fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x393cfdc5 fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3a956389 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3cc24a9b fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3faa9c15 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x418fb8fc fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x44bb63d2 fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x466f0818 fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x46a35645 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x46ce22c9 fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4dd63281 fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6091706f fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x63e864fb fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x645c3de3 fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x651af08e fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6982a18b fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6dc83bdc _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6e939dba fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x704c4971 fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ce48ac9 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8669013f fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8682e23e fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x914c61b4 fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x97572df7 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9ad48b28 fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9c742ed2 fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9edf17e0 fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa219001b fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaa6df640 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xba3c50df fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbc76fd51 fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc3a77d4e fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc583e5b6 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd2f77c34 fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe08c47a5 fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeb0b098e fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xed64f675 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xef5ba83a fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0b4dae9 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x5cc3e1e2 sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xa2eea849 sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xbb6aca20 sas_wait_eh -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xed62de5d sas_resume_ha -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x40828d10 mraid_mm_register_adp -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x05739e16 osd_req_create_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0bebdae8 osd_req_decode_sense_full -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1243c306 osd_req_list_partition_collections -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x224cd01d osd_req_decode_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x31e3f0e7 osd_req_add_set_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x37bdfc06 osd_req_flush_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3ce2d03a osd_req_flush_obsd -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4179a763 osd_req_flush_collection -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4346ed1e osd_req_write -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x48197f84 osd_req_add_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4f0d1923 osd_end_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x50f43d66 osd_req_read_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x51334d3d osd_execute_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x64cdfd6c osd_req_create_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6756da91 osd_execute_request_async -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6c7fd98d osd_dev_init -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7920eda6 osd_auto_detect_ver -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7e08cfce osd_dev_fini -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x82610bba osd_req_list_dev_partitions -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x82bf25fb osd_req_add_get_attr_page -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x85d5b6bd osd_finalize_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x88ec7299 osd_req_list_collection_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8bed631a osd_req_flush_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8df377a0 osd_req_read_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x95a1026c osd_req_read -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x96391436 osd_req_list_partition_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa0017b8d osd_req_write_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa51ecee6 osd_req_get_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbda31c68 osd_req_write_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc1754fa5 osd_start_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcf8eb5f6 osd_req_format -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd49a4868 osd_req_remove_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd790670c osd_req_write_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdb6cab96 osd_req_read_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xed4da979 osd_req_remove_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf8c105ad osd_req_set_attributes -EXPORT_SYMBOL drivers/scsi/osd/osd 0x338e0672 osduld_put_device -EXPORT_SYMBOL drivers/scsi/osd/osd 0x5d33d0ff osduld_device_same -EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0x9ec19de4 osduld_register_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0xce4645b2 osduld_path_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0xddb469f4 osduld_device_info -EXPORT_SYMBOL drivers/scsi/osd/osd 0xfd02141d osduld_info_lookup -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x02734827 qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2ebb3fca qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6f0a5712 qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x78eb4b17 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x90f31555 qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x95f529b0 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xab497832 qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xbe3de1fe qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd30cde1a qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd556b7a0 qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd8fcaa6a qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfe0b6a35 qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/raid_class 0x193f9435 raid_class_attach -EXPORT_SYMBOL drivers/scsi/raid_class 0xaf3e219c raid_component_add -EXPORT_SYMBOL drivers/scsi/raid_class 0xbb4eebe5 raid_class_release -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x101a3f0d fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1a8ea965 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2012f6f2 fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x428d0660 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4acdef4f fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5b4f2efb fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x602cf24f fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x691fa64e fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xac4d1cec fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd8508e73 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe91c904a scsi_is_fc_vport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf51c2107 fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfcae8123 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0072c990 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x06beaefb sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x07a355d4 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0f29785a sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2caab716 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x416b9fa5 sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x464c7079 scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5c4f3673 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5cc7d57a scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6400d370 sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x662c137a sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6f845598 sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x79e4be7a sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7b6e6017 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7b9c31f8 sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7df0bf5f sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa83c9916 sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xae4af94e sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbb731221 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc2dfb516 sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc673bc7c sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd4d3e2dc scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd7374f14 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdf865c80 sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe0dc925a sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe2950822 sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xeead4795 sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf993d667 sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x0e46565c spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x10af4d83 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x341229d9 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x8e304d36 spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe08ed5ac spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x1bafb3c3 ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x283e6a1e ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x2d924c62 ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x43fc1f57 ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x8a1bcfd3 ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xbf56740f ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xdac5d17a ufshcd_runtime_idle -EXPORT_SYMBOL drivers/ssb/ssb 0x0534b19b ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0x203dd1d2 ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0x319b94a9 ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x37399ec8 ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0x3afe3235 ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0x3f6befef ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0x44cd93ba ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0x56a6da25 ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0x5b4e687a ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0x72b2b132 ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x79e37017 ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x7a55c4f3 ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0x935327e8 ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0xb7b04bf1 ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0xbab75891 ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xcb67d3d7 ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0xce4674d8 ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xe51f1e77 ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0xe6e72351 ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0xef867da0 __ssb_driver_register -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x006e9497 fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x01010b93 fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x17405435 fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1babc50f fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1eeb4716 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2b8eaa9e fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x41f81b70 fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x456ddbaf fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x466b1a70 fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x468d2519 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x64e889dc fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x91535066 fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9607ef97 fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x96bb85c6 fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9ea7134d fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa7cbb629 fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcd75ce39 fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd696255f fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xde344045 fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe0ec14cb fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xea2f3ac6 fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf2f8e080 fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf4a52a44 fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfd15a40c fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x31a1dbb7 fwtty_port_get -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x3ca7bd49 fwtty_port_put -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xa9b01d07 adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x5feb871b hmc5843_common_probe -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x88d4c791 hmc5843_common_suspend -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xb7a86eb9 hmc5843_common_resume -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xce412bcb hmc5843_common_remove -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x008ce1fc ade7854_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x77241bbd ade7854_remove -EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0xe57a7c9f cxd2099_attach -EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x344b84a0 most_deliver_netinfo -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x020933d1 rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0647b513 rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x115b5704 rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x12aaaecb rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x16b65a81 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2033c910 rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2e5dee4d rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2f7d014f rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x32679f3f rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4378e8a2 rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x438b64f3 alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x493eeba4 rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4b13eb4a rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4daec329 rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4f263166 RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x508fc005 rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5855bc50 rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5ab4d6d9 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5e9fa06f dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5fdf87c6 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6032ddb2 rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x63caa30b rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6bfa0a8d free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x736bf9a2 rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x737f8be7 rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x739458bf rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x74928662 rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x74cf5437 rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x78fc5f07 rtllib_wpa_supplicant_ioctl -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7b1e3ee8 rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x843194da notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8a3d5fee rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8d7a939f Dot11d_Channelmap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x914d98cd rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x96c7c6ce rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x99fcffff rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa9257843 rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xae060452 HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xafa651d0 rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb35cc8f0 rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc0af2d0a rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcfe22f51 rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdacf4c46 rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe27fbc09 rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe3aedb58 rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe5ff659f rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe89cf23f rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf1c9414b rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfc0d9c9d rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfd308c96 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x001d3e92 ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x00ec6910 SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x03c3b231 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0e472a68 ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f099f61 ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x10c0e13e ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x209d644f Dot11d_UpdateCountryIe -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x248faf55 ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x24ea2103 ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x36197233 ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x36902fef ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3fecf57c ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4520d5d7 HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x49cb33ec ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x533281bb ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x53d5f8dd ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x595e0f69 ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5b68296e ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5be9f5b5 ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5e73b765 ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61ea895d ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x62bbf738 ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x68d8a258 ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6fd8c6b3 ToLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x704038be ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x73e3fc2e ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7c33f855 Dot11d_Reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7f250d01 ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8c131409 ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x99682c28 ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9b5e0a2f ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9f60da32 ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa4294d0a ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa4f324b4 ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xab0854a7 ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb2403df8 ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb803e226 ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb83e97fc ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbad000c5 ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcc472f2e ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd560e06f ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd56e4f00 Dot11d_Init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd7119209 ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdab5ff71 ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe00346e3 DOT11D_ScanComplete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe1e3938f ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe9a52b70 ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xea28daaf ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xed093663 ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf1b12517 IsLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf7a546f8 ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf800e888 DOT11D_GetMaxTxPwrInDbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf8731010 ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfbc5e1e8 ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfcef292e ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x03c1301b iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x06047b9f iscsit_set_unsoliticed_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1110a731 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6d824168 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7697fc38 iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8255e9ee iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8e12fbc0 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x91f57db9 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x939f3193 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9529de47 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9771b6e9 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x98a77996 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9c7279a1 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9d59f1f4 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbd94164f iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbee36d0a iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc33c9ba8 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc9383bcc iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcf47e1c9 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcf66900e iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd140bd73 iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd29dea71 iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd46599ba iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd7f19cd7 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xebee85e5 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xee447d5a iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfa54264d iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfd3dec33 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/target_core_mod 0x00783466 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0927ddf5 transport_check_aborted_status -EXPORT_SYMBOL drivers/target/target_core_mod 0x0a4c38cc sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0x0a88d8b8 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x0faecdca target_setup_cmd_from_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x0fcf8549 target_put_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x10ed9913 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x12114941 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x141a8f78 target_get_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x143d46d4 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0x1de8838a passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x211c594c transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x212e4f15 transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x2586a15f transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x25a4e05f transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x27e7a54d target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x2ce124a4 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x2df19f13 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0x365c2ae9 transport_init_se_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x4153078e target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x49a5f61b target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x49f9ec70 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0x4d9d886d target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x52e3bce1 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x536185e6 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x5a09f80c sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x5b7a3a66 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x5bbf5cfc transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x5f3c9238 transport_init_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x617d6562 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x62d4501a target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0x6384cacb core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0x6e5b2c6f target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x79e26efc core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x7a6ad818 target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x80005ab5 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x8620d315 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x8ed661b4 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x906394e4 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x957a3e4f spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x9a568517 target_submit_cmd_map_sgls -EXPORT_SYMBOL drivers/target/target_core_mod 0x9bde73b3 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xa75a2705 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xad66bcb5 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0xb0afa28b transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0xb86c6dc1 core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xb95444bb transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0xc0d6219f spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0xc2650796 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0xc5df3fb4 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xc6b86056 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xcaa344cc transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xcac82847 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xcacf8bb9 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xce773c1d target_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xcfefe128 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xd10bd297 target_sess_cmd_list_set_waiting -EXPORT_SYMBOL drivers/target/target_core_mod 0xd87ab9db sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0xdf01c38a transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xe39f2b69 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0xe58abaaf transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf2109956 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xf2927388 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xf35458d3 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xf3ba7bdb target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0xf3dbd9fa spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0xf949327e sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0xfa98dbaf target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xfffcce9a target_unregister_template -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x20b69426 usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x5422f62c usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xfd2421ae sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x16a6115d usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1790796c usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2fa514aa usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5959b864 usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5dd1a15e usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x765b5e34 usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x890a66ad usb_wwan_ioctl -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8fa560ae usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa661a60c usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb965d7b3 usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc2d4e0b5 usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd0caf6b3 usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x185b9386 usb_serial_resume -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x18df1859 usb_serial_suspend -EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user -EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user -EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user -EXPORT_SYMBOL drivers/vhost/vringh 0x3c71c418 vringh_getdesc_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user -EXPORT_SYMBOL drivers/vhost/vringh 0x5fedea44 vringh_getdesc_user -EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user -EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user -EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user -EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern -EXPORT_SYMBOL drivers/video/backlight/lcd 0x955670bb lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xe73cda92 devm_lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xf0669834 lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xf574bd8f devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x2ae55016 svga_tilecopy -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x46502d4b svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6a367953 svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7dafd13e svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8beac298 svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xa1fda752 svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb515eadf svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x095ac5fe sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x5d719054 sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x932cb1f0 sys_imageblit -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x2f91b4d1 cyber2000fb_attach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x2b6ef906 matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x5ff9f211 matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xb913a36c g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x099abffd DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x2f9e0df9 DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x48d9a0f0 matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xd3d484ef matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x91b624cd matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xd1b05265 matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x38f408b6 matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x5b3806b7 matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xd4d16119 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xde7898e6 matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x2e67574e matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xdd216ef4 matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x0c5f4cc3 matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x1ac5c13b matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x81b6767c matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xa8fa1597 matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xb1f5d5ef matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0xabbaa1ed mb862xxfb_init_accel -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free -EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga -EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x26f65dd1 w1_ds2760_write -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x283512ef w1_ds2760_store_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xb0f8d32b w1_ds2760_read -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xd070f520 w1_ds2760_recall_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x5ce4be04 w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xfc710c42 w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x5e386805 w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xb2832db5 w1_ds2781_io -EXPORT_SYMBOL drivers/w1/wire 0x17728c91 w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0x6f548539 w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0x8ebd0166 w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0xf7a1b7e4 w1_add_master_device -EXPORT_SYMBOL fs/configfs/configfs 0x05a64874 configfs_unregister_group -EXPORT_SYMBOL fs/configfs/configfs 0x0b961219 config_item_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0x0eca8f19 configfs_unregister_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0x22f48394 configfs_depend_item -EXPORT_SYMBOL fs/configfs/configfs 0x301f3a0b config_item_set_name -EXPORT_SYMBOL fs/configfs/configfs 0x3f8c2c0d configfs_register_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0x47ef645b configfs_unregister_default_group -EXPORT_SYMBOL fs/configfs/configfs 0x4e7d561d config_item_put -EXPORT_SYMBOL fs/configfs/configfs 0x5e57643a config_group_find_item -EXPORT_SYMBOL fs/configfs/configfs 0xa36893ab configfs_register_default_group -EXPORT_SYMBOL fs/configfs/configfs 0xa449dd3c configfs_undepend_item -EXPORT_SYMBOL fs/configfs/configfs 0xada81a5f config_group_init -EXPORT_SYMBOL fs/configfs/configfs 0xc5bdd427 configfs_register_group -EXPORT_SYMBOL fs/configfs/configfs 0xc9e075e3 config_item_get -EXPORT_SYMBOL fs/configfs/configfs 0xfd72866e config_group_init_type_name -EXPORT_SYMBOL fs/exofs/libore 0x007c2388 ore_read -EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout -EXPORT_SYMBOL fs/exofs/libore 0x32335eb5 ore_put_io_state -EXPORT_SYMBOL fs/exofs/libore 0x340404c1 ore_write -EXPORT_SYMBOL fs/exofs/libore 0x37894a2c ore_get_io_state -EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info -EXPORT_SYMBOL fs/exofs/libore 0x865ceac0 ore_truncate -EXPORT_SYMBOL fs/exofs/libore 0x96be52fe extract_attr_from_ios -EXPORT_SYMBOL fs/exofs/libore 0x98f40d34 ore_check_io -EXPORT_SYMBOL fs/exofs/libore 0x9c417d2c ore_get_rw_state -EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length -EXPORT_SYMBOL fs/exofs/libore 0xc1c488e6 ore_remove -EXPORT_SYMBOL fs/exofs/libore 0xdbf04409 ore_create -EXPORT_SYMBOL fs/fscache/fscache 0x006afdc3 fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0x085640f4 __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x0968e9ed fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0x0be4299a __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x113226e6 __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x1382d8a1 __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0x15d95dee __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x22880b2c __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x275e7819 __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x296b683c __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0x44177f5d fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0x4969c05e fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0x4a8ee116 __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0x4bc688a0 fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0x5a1b9a01 __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0x5bd32157 __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x657b6ff2 __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0x68e31fe3 __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0x72453d95 fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x79291547 fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0x8a8ee1a0 __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0x8ca31f92 __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x94c0795c fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0x98774f1f __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x9d7b9f8c fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0xabd3bdc9 fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0xb0140a08 __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xb7d8dd9b fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0xc380f33c __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xcb208d24 __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xcc6da07f fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0xcf2594f1 fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0xd8c91418 fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0xdad923c7 __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0xdb4a10d9 fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0xdbeedcf7 fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0xe86d7726 fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0xe9f56e9f fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0xf22c7a8f __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0xf8ecd74b fscache_put_operation -EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x158faa47 qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xaba24bd2 qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xcf7b3916 qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0xdb85ffb4 qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xe51adb21 qtree_release_dquot -EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq -EXPORT_SYMBOL lib/crc-ccitt 0x1a703ba1 crc_ccitt -EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table -EXPORT_SYMBOL lib/crc-itu-t 0x6d356209 crc_itu_t -EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table -EXPORT_SYMBOL lib/crc7 0x56329ecc crc7_be -EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table -EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb -EXPORT_SYMBOL lib/crc8 0xd09b2cba crc8 -EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb -EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c -EXPORT_SYMBOL lib/lru_cache 0x04dda81f lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy -EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get -EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed -EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of -EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset -EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used -EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del -EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0x895b2504 lc_seq_dump_details -EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get -EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create -EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock -EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set -EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find -EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put -EXPORT_SYMBOL lib/lz4/lz4_compress 0x0c222eb5 lz4_compress -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x682a23e0 lz4hc_compress -EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul -EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp -EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv -EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi -EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul -EXPORT_SYMBOL lib/raid6/raid6_pq 0xefc78e77 raid6_empty_zero_page -EXPORT_SYMBOL net/6lowpan/6lowpan 0x233846b2 lowpan_netdev_setup -EXPORT_SYMBOL net/6lowpan/6lowpan 0x43ef1eb5 lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0xc00f6e7c lowpan_nhc_add -EXPORT_SYMBOL net/802/p8022 0x0fbc7eef unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0xb2b480d3 register_8022_client -EXPORT_SYMBOL net/802/p8023 0x18310c4a make_8023_client -EXPORT_SYMBOL net/802/p8023 0x4a625b33 destroy_8023_client -EXPORT_SYMBOL net/802/psnap 0x29a6ccf3 register_snap_client -EXPORT_SYMBOL net/802/psnap 0x9133f8ae unregister_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x046c2437 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x055517db p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x09851522 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x15b47ae8 p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x164c3485 p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x1e648b4e p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x330aac80 p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x35920485 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get -EXPORT_SYMBOL net/9p/9pnet 0x3986db88 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x3aeaa2d6 p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x3e89cfed p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x3ebae012 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x4326d879 p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x448b8e61 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0x4bd02ebd p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0x4c784951 p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0x4d4e68c7 p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x53d58a07 p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x5e51c7e5 p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0x62f03513 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x693d26a4 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x6a7d62bb p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0x6e8fe657 v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0x71ec31aa p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x7259099b p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x7fe329c6 p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0x87f73ff5 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0x8ad6c250 p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x9501ba64 p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0xa1cbaed9 v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0xaaae21da p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0xae64c094 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0xb261cc9b p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0xb40f7c43 v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy -EXPORT_SYMBOL net/9p/9pnet 0xdc3e3bb5 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0xdf10829c p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0xe15ec58c p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0xe44cab80 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xeafc433d p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0xec358f84 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0xf1be7ce2 p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0xf254c409 p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create -EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put -EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check -EXPORT_SYMBOL net/appletalk/appletalk 0x6cccb565 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0x7dd7f315 alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0x9b5a56c3 aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0xc6fa57fb atrtr_get_dev -EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x2ed953c8 atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0x3a533549 deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x493c68d1 vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0x52a062a2 vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0x5f462c15 atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0x808ed20b atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0x8bd073ce atm_charge -EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xa8f9aad0 atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xb982ddc7 atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0xbcc1e125 register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xca87b453 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0xd8d12e85 atm_dev_register -EXPORT_SYMBOL net/atm/atm 0xf2312f1d vcc_release_async -EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/atm/atm 0xf7ebd718 atm_init_aal5 -EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x2ec920eb ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x4a25d0c3 ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0x4ca7868c ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x6331f406 ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x7709d42c ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0x7ca3e7e3 ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0xb2c0b83e ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xce4f1dce ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/bluetooth/bluetooth 0x03a47ee0 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x062edbf3 __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x12b8f9e6 hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0x15535f1c hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1baa7a12 hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x27506f14 hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x29452d8b bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2a7bbe0c bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2ca9766c bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2d5bf247 l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2f52e2ce hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3df7fa01 hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4350211d hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4837ef65 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4d460ce2 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x506538e3 hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6494b452 hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6cb99857 l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6ec7ba41 bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7f5e4c4f bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8f9044a6 bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x919d61b9 hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno -EXPORT_SYMBOL net/bluetooth/bluetooth 0x964ebd35 bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x966ff33d hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa4291a08 hci_alloc_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa7450c14 bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa9a5c2bd hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0xab03dbc4 hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc17b8644 __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc9f2da55 hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xca4f21fd bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd6cc32af hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdb66cf2f bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe00ac049 l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe19235c6 bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe52b182c hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe5c55ec6 l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe6c782dd bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe9721923 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf4bf7c5a bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf9e7781e hci_free_dev -EXPORT_SYMBOL net/bridge/bridge 0x8c9857b6 br_should_route_hook -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x3d1d5fa7 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x746e00d4 ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xea583958 ebt_do_table -EXPORT_SYMBOL net/caif/caif 0x0ce07f69 caif_connect_client -EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x2559cd2b get_cfcnfg -EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative -EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info -EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer -EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head -EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x879b3975 caif_enroll_dev -EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head -EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio -EXPORT_SYMBOL net/caif/caif 0xaa3b7c29 cfcnfg_add_phy_layer -EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xcaf9d659 caif_disconnect_client -EXPORT_SYMBOL net/can/can 0x2195c073 can_rx_register -EXPORT_SYMBOL net/can/can 0x339f64e2 can_proto_unregister -EXPORT_SYMBOL net/can/can 0x7b82ce2b can_send -EXPORT_SYMBOL net/can/can 0x7bff47e4 can_proto_register -EXPORT_SYMBOL net/can/can 0xc0f21f05 can_rx_unregister -EXPORT_SYMBOL net/can/can 0xf2276e47 can_ioctl -EXPORT_SYMBOL net/ceph/libceph 0x03bed299 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0x049ab058 ceph_messenger_fini -EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init -EXPORT_SYMBOL net/ceph/libceph 0x14ec96d8 osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x1d0405fc osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x1eb0c187 osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0x1fce6247 ceph_osdc_cancel_event -EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup -EXPORT_SYMBOL net/ceph/libceph 0x215e7afd ceph_osdc_create_event -EXPORT_SYMBOL net/ceph/libceph 0x21c60751 ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x223f5e8d ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x2432a737 osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x24d897df ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x28d5cc86 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0x30c3b15b ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x341941ac ceph_osdc_readpages -EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x3b0c8d07 osd_req_op_cls_response_data -EXPORT_SYMBOL net/ceph/libceph 0x3be22362 ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0x3ec709d7 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options -EXPORT_SYMBOL net/ceph/libceph 0x41426c45 ceph_osdc_set_request_linger -EXPORT_SYMBOL net/ceph/libceph 0x419cb09b ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part -EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0x442044eb ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x47f4843d ceph_monc_request_next_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x491f8149 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x494297f2 __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x495d77b3 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x4ad6e0a5 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0x4d013bb8 ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x4e486aaf ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0x4e6e85c8 ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x52b1910c osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x5302afdb ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode -EXPORT_SYMBOL net/ceph/libceph 0x5739588d ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x58f4bfa7 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0x5ab2329c ceph_calc_pg_primary -EXPORT_SYMBOL net/ceph/libceph 0x5d2ca11b ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0x5dbd3afc ceph_client_id -EXPORT_SYMBOL net/ceph/libceph 0x613ec9e0 ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x61a10e12 ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0x62591f04 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x6c9e5cac ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0x6d146fe3 ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0x6fcdafef ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0x70809b77 osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0x70f08964 ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x748fa663 ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0x753f813d osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x7681f955 ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x78f5d41a ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0x84021e8b ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x84ae83c3 ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0x873767a1 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0x88d1f01c ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x891fe745 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0x8c8118d6 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x8f42956b ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0x94422a55 ceph_osdc_writepages -EXPORT_SYMBOL net/ceph/libceph 0x96f04453 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup -EXPORT_SYMBOL net/ceph/libceph 0x9aedabcf ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x9b92a5a0 ceph_auth_update_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x9c3e5d9f ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0x9de23d98 ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x9df10c70 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xa18ce0d1 osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xa32636cc ceph_monc_do_get_version -EXPORT_SYMBOL net/ceph/libceph 0xa7014d32 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xaa7add38 ceph_osdc_build_request -EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb046b3dd ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xb121a36c ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0xb24ebbfd ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit -EXPORT_SYMBOL net/ceph/libceph 0xc4714060 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup -EXPORT_SYMBOL net/ceph/libceph 0xc5db34f3 ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0xc7ef6d02 ceph_monc_got_mdsmap -EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init -EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips -EXPORT_SYMBOL net/ceph/libceph 0xcdb3e8f4 ceph_get_direct_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xd27985e9 ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode -EXPORT_SYMBOL net/ceph/libceph 0xd3ca24d3 ceph_auth_create_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xd4d1dd13 ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0xd5e6dc7e ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0xd7acd83f ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xdf756ef0 osd_req_op_watch_init -EXPORT_SYMBOL net/ceph/libceph 0xe3b042ca ceph_pagelist_append -EXPORT_SYMBOL net/ceph/libceph 0xe3f3b176 ceph_messenger_init -EXPORT_SYMBOL net/ceph/libceph 0xe85a40aa ceph_osdc_put_event -EXPORT_SYMBOL net/ceph/libceph 0xeb0e53b5 osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xf0dfb817 ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0xf35cb4d9 ceph_pagelist_reserve -EXPORT_SYMBOL net/ceph/libceph 0xf9a893c4 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0xf9c9f1b0 ceph_oloc_oid_to_pg -EXPORT_SYMBOL net/ceph/libceph 0xfa892398 ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0xffe7f0c5 osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x07c49485 dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xb70a5719 dccp_req_err -EXPORT_SYMBOL net/ieee802154/ieee802154 0x08989cb7 wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0x52ef9cf6 wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0x585631c5 wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0x8ed5212f wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0x92f9e0f2 wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0xc37556f4 wpan_phy_for_each -EXPORT_SYMBOL net/ipv4/fou 0x3106aeb4 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x429d3387 fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0xab6f5a2a gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0xd0750778 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x09f3433c ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x28b9ba18 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x479fc7e1 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x73f82e09 ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xa8b547d7 ip_tunnel_encap -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf4e5f7c6 ip_tunnel_dst_reset_all -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x3cc51b36 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x86cca7af arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x9ed87f95 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x48a98dba ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x498518dd ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xa5be53ea ipt_unregister_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x353a0f45 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0xd47dbc5a xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x495929be udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x00defdab ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x06dcbc0e ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0d8a9a35 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc595ec94 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x5c0a6c61 ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x97b81aae ip6t_unregister_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xa0da53fe ip6t_do_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x0a6e7ce8 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/tunnel6 0xe1976cd9 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xae509574 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xc1414c27 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x8663c594 ircomm_connect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x8760e16b ircomm_open -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x9349fe01 ircomm_flow_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xa3fed06b ircomm_data_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xc99ab937 ircomm_close -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xccda2d62 ircomm_control_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xd3e0ae19 ircomm_connect_response -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xd7b7e14f ircomm_disconnect_request -EXPORT_SYMBOL net/irda/irda 0x0064e0ea hashbin_get_first -EXPORT_SYMBOL net/irda/irda 0x05e88596 iriap_getvaluebyclass_request -EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value -EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service -EXPORT_SYMBOL net/irda/irda 0x0af7feff iriap_close -EXPORT_SYMBOL net/irda/irda 0x0ec8da25 alloc_irdadev -EXPORT_SYMBOL net/irda/irda 0x141fa2fd irttp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0x18350909 irlmp_close_lsap -EXPORT_SYMBOL net/irda/irda 0x1e6cade0 irias_add_integer_attrib -EXPORT_SYMBOL net/irda/irda 0x224b377e irlap_open -EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda -EXPORT_SYMBOL net/irda/irda 0x3e56064f hashbin_new -EXPORT_SYMBOL net/irda/irda 0x40c1b77b irlmp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0x4296be5b irttp_open_tsap -EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value -EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service -EXPORT_SYMBOL net/irda/irda 0x4aeeffe9 irttp_flow_request -EXPORT_SYMBOL net/irda/irda 0x5913716e irttp_dup -EXPORT_SYMBOL net/irda/irda 0x5ee61099 irttp_udata_request -EXPORT_SYMBOL net/irda/irda 0x601bda46 hashbin_remove -EXPORT_SYMBOL net/irda/irda 0x63fa749d irttp_connect_request -EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies -EXPORT_SYMBOL net/irda/irda 0x6b5fbcef hashbin_get_next -EXPORT_SYMBOL net/irda/irda 0x6e0ab3c7 irias_add_string_attrib -EXPORT_SYMBOL net/irda/irda 0x6fa24503 irttp_connect_response -EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client -EXPORT_SYMBOL net/irda/irda 0x7154c164 iriap_open -EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client -EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client -EXPORT_SYMBOL net/irda/irda 0x7f0eec13 irda_device_set_media_busy -EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert -EXPORT_SYMBOL net/irda/irda 0x85d88217 irias_delete_object -EXPORT_SYMBOL net/irda/irda 0x9165945a async_unwrap_char -EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack -EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all -EXPORT_SYMBOL net/irda/irda 0x9b5c934e irlmp_data_request -EXPORT_SYMBOL net/irda/irda 0x9f1f997a irttp_data_request -EXPORT_SYMBOL net/irda/irda 0xa1d41e58 hashbin_delete -EXPORT_SYMBOL net/irda/irda 0xa56e14f9 async_wrap_skb -EXPORT_SYMBOL net/irda/irda 0xaa557515 irias_new_object -EXPORT_SYMBOL net/irda/irda 0xaec7767e irlap_close -EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value -EXPORT_SYMBOL net/irda/irda 0xbcb88338 irlmp_connect_response -EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute -EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request -EXPORT_SYMBOL net/irda/irda 0xc38bfc36 irlmp_connect_request -EXPORT_SYMBOL net/irda/irda 0xc68e43be irias_add_octseq_attrib -EXPORT_SYMBOL net/irda/irda 0xcead7dbb hashbin_find -EXPORT_SYMBOL net/irda/irda 0xd2108314 hashbin_insert -EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma -EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint -EXPORT_SYMBOL net/irda/irda 0xdef6b319 irlmp_open_lsap -EXPORT_SYMBOL net/irda/irda 0xe3463529 hashbin_lock_find -EXPORT_SYMBOL net/irda/irda 0xe3bde43e irias_insert_object -EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries -EXPORT_SYMBOL net/irda/irda 0xf0a694a1 irias_find_object -EXPORT_SYMBOL net/irda/irda 0xf5876b95 hashbin_remove_this -EXPORT_SYMBOL net/irda/irda 0xf7109945 irttp_close_tsap -EXPORT_SYMBOL net/irda/irda 0xfd2a4faf irda_notify_init -EXPORT_SYMBOL net/l2tp/l2tp_core 0xc421b7c3 l2tp_recv_common -EXPORT_SYMBOL net/l2tp/l2tp_ip 0x456ecd4f l2tp_ioctl -EXPORT_SYMBOL net/lapb/lapb 0x2e7a45d3 lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0x36ba6938 lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0x411ae82c lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0x8a39860b lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0x9d0a5f61 lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0xab59a606 lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0xb1197cf8 lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0xdc86aacc lapb_register -EXPORT_SYMBOL net/llc/llc 0x1f13ea87 llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x557f95ce llc_sap_open -EXPORT_SYMBOL net/llc/llc 0x80cf337c llc_sap_close -EXPORT_SYMBOL net/llc/llc 0x8a6bd365 llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0xd687cb51 llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0xe1e35c79 llc_sap_find -EXPORT_SYMBOL net/llc/llc 0xeb8e695a llc_add_pack -EXPORT_SYMBOL net/mac80211/mac80211 0x04565106 ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x05cd8396 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x0710316f ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x0bd609f2 ieee80211_get_key_tx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x0d66221c ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x16a42c6b ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x1a6a6a68 ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x1ba7bd3c ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x1e83b08e ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0x1f0dc9f3 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x2362e8ac ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0x289ee263 ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x2dc77135 ieee80211_tx_status_noskb -EXPORT_SYMBOL net/mac80211/mac80211 0x2fb35c14 ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0x30d1cebc ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0x3e54aeac ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x419c0202 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x4399e4aa ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0x4a4451c5 ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x4a87a1a9 ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x4a9872e8 ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x4c2b011a ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x502f7cf9 ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x51bf315a ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x55f97e4f ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x57bd1dea ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0x5b25cb94 ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0x63125d54 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0x6315c600 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x642caa71 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0x65af0fe5 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x65f056b9 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x6b3ecf57 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x6e879049 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x6f248126 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x70981976 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x727f7518 ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0x762f09e8 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x7b35c6d1 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x8314ab5b ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x83392c4a ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x89dcfe82 wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x8d6ca6b5 ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x8da3bac0 ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x8f3bc26b ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0x9301c71f ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x989430d4 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x99bf4faf ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x9e45e3ff __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x9fc62790 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xa1dcb83b ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xaa2592bb ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0xac9218f2 ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xaef47015 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xb22ff518 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xb65370d7 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xbb389ba7 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xbb68c696 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0xbd767b5a ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xbf8d6863 ieee80211_csa_update_counter -EXPORT_SYMBOL net/mac80211/mac80211 0xc4410f0e ieee80211_start_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0xc5744c48 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0xc7045b67 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xc87e71ca __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0xc9a631a0 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0xcc31a9cf ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0xce7d9863 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0xcebd7525 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0xd22c6876 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0xda096319 ieee80211_stop_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0xdadc366b ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xe08d2946 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0xe58668b7 ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0xe824db65 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0xecb8fb3b ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0xef0288fe rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xefbdfcad ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xf341b07e ieee80211_csa_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0xf4beff11 rate_control_send_low -EXPORT_SYMBOL net/mac80211/mac80211 0xfb748651 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0xfc9a6080 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0xfe0bc613 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac802154/mac802154 0x3d7e7f5b ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x3feae147 ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x40db0ab2 ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x42190ee6 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x8fc3abb0 ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x92bfb00b ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0x95ed8237 ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xfcf4572f ieee802154_stop_queue -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1e612b42 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x28200abe unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6515ba89 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x723b2f7d ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x763fc04b ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8001a2d7 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x80eb5734 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x80eeb551 register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa99053e7 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbbb8f40d register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc76fd443 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc7edfd01 ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcc994cd2 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe1982a12 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x0c38fb22 nf_conntrack_untracked -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x6a576a23 __nf_ct_ext_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xff9c9ad2 __nf_ct_ext_add_length -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x53d234c0 nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0x6178fd64 nf_nat_used_tuple -EXPORT_SYMBOL net/netfilter/nf_nat 0x83763d33 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0x928e3c59 nf_xfrm_me_harder -EXPORT_SYMBOL net/netfilter/nf_nat 0xba532b2d nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xde8fac87 __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/x_tables 0x2485bb44 xt_find_target -EXPORT_SYMBOL net/netfilter/x_tables 0x253e8b44 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x5878896d xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0x5bcd6a73 xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0x980f6827 xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xc4a00f50 xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xd022a1ae xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xd41c243e xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xe4c51e80 xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0xef38bb3b xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xfccc5814 xt_unregister_matches -EXPORT_SYMBOL net/nfc/hci/hci 0x09ffecbd nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0x1d309108 nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0x35d37d0c nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0x379fc097 nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x3ba95634 nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0x4100cbc3 nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x45568b90 nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0x50a29b43 nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x5d37fc5c nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0x6eb3644f nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0x6fc29bac nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x7f03db6d nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x826599ea nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x9a6276fb nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0x9b9f7176 nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0xaae5fb00 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0xaf88fafe nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0xba596dcf nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xc1301b55 nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0xc51955a9 nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0xd1b566ff nfc_llc_stop -EXPORT_SYMBOL net/nfc/nci/nci 0x02f7dff0 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x09feaab6 nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x0bdf10c4 nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0x2036f0c5 nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x305173d7 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0x40e9f35a nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0x43b4dbc6 nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0x488157ed nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0x48dae788 nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x6b3d3ecf nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x6c2cf294 nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0x74981f52 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0x88e5b8e0 nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0x8e40f925 nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0x9b06dec3 nci_get_conn_info_by_id -EXPORT_SYMBOL net/nfc/nci/nci 0x9b2da4d3 nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0xa313cff8 nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xa5daad9f nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0xafae2559 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0xafc15563 nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xb979036e nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xd0a25dec nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0xd70992d6 nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0xdd4b96bd nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0xeb25908b nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0xf3fb9d72 nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xfa38ff02 nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0xfb2d62c5 nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nfc 0x0cb7002d nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x1556f176 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0x186e9c76 nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0x19d7aee7 nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0x1b32a044 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0x2311568a nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0x24c6f03b nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x26e2beb3 nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0x35462768 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x365013f4 nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0x3ce77da3 nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0x521e2e03 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0x62a6521b nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x6667319a nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0x6cc33264 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0x742376f0 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0x78fc0d15 nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x87f7a641 nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0xb737c0bf nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0xba1ef22e nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0xdbd60bb6 nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0xef2b2b77 nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0xf49f0471 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0xf533f4a2 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc_digital 0x061cbd91 nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x620c1e6a nfc_digital_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x7d38e52f nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x8509b47d nfc_digital_free_device -EXPORT_SYMBOL net/phonet/phonet 0x2fa88663 pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0x495f19e2 phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0x6422bd04 phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0x78007ed7 pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0x8885e923 phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0x950aa358 pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0xc04db45a pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0xe4b1ebe2 phonet_proto_unregister -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x02fffc98 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1343db91 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x203bd477 rxrpc_kernel_is_data_last -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x3cc8fab9 rxrpc_kernel_intercept_rx_messages -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4502d8cc rxrpc_kernel_data_delivered -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x56ccd935 rxrpc_kernel_reject_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x78ed7fc0 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x81196b5c rxrpc_kernel_free_skb -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xac6a58da rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xafb7c52f rxrpc_kernel_get_abort_code -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb0ff222b key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb651d197 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xba50d9f9 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc08de9ce rxrpc_kernel_accept_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xfc58fb1b rxrpc_kernel_get_error_number -EXPORT_SYMBOL net/sctp/sctp 0xd30a381c sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x2b359aeb gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xd98cf509 gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xe3c60224 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/sunrpc 0x4c4d39d0 xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0x890e005f svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0xcca6ef6f xdr_restrict_buflen -EXPORT_SYMBOL net/wimax/wimax 0x44e2d673 wimax_rfkill -EXPORT_SYMBOL net/wimax/wimax 0x9ab8d5bf wimax_reset -EXPORT_SYMBOL net/wireless/cfg80211 0x00e143bc regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0x027db44b cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0x06d4c410 cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0x07010961 cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x0adaab75 wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x0ae6e7d8 cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0x12d8a893 cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x143d6fd7 cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x1565f606 wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0x18156f2d cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x182e4fd7 cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x191a3464 cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0x1b1c3267 cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x1cda8313 freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0x2344d773 cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x25e03bd0 cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x2bd61949 cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x2c17a585 cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0x380e646c cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x3b3d8a30 cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x40f296a8 cfg80211_sched_scan_stopped_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x4587831f regulatory_set_wiphy_regd_sync_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x46b8f0a8 cfg80211_rx_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x4a857074 cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x4e871cb2 cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x5a708937 wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0x5b61a840 cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0x5c3302cf cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x5d50b058 __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x62323266 cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x640e477e cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6b9fa2c0 cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0x700f71cd cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0x70113586 ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0x75ba0787 wiphy_rfkill_stop_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x781df8c8 ieee80211_data_from_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0x7a6ed9b3 cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x7e160bcf cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x7e50b7b7 cfg80211_roamed_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x7ee2a612 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x864d0eb6 cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x88fa5f9c cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x8db1cdef cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0x8f11eb8d cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0x90081670 wiphy_rfkill_set_hw_state -EXPORT_SYMBOL net/wireless/cfg80211 0x9131b1a0 __ieee80211_get_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x915e14eb wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0x91d7a142 ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x971539d5 cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x97344ad0 __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x9d604ba5 cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x9fca9b81 cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0x9fe92343 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xa1425906 ieee80211_channel_to_frequency -EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xad05ca73 __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xad2dc7bc cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xad56688e cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xad712c35 cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0xafe0b8bc cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0xb1af5485 cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0xb703241c cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0xbd3dc2d4 cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0xbef34762 cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0xbf40d6ff ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0xc142ab2b regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0xc797243d wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0xc8bc52f2 cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xcc0ab4d9 cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xce2657cd cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0xce2f7657 cfg80211_connect_result -EXPORT_SYMBOL net/wireless/cfg80211 0xd0ddd2fb cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xd4ae373a cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xd50b0a22 ieee80211_ie_split -EXPORT_SYMBOL net/wireless/cfg80211 0xd7a0cc3c cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0xdaf13b63 cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xdb1bb0a7 cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xdb44a157 cfg80211_report_obss_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdd76a9dd cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0xe037d962 ieee80211_data_to_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0xe6f5c754 wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0xe7c99ea6 cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0xe82cb1e7 cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xf198c772 cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0xf4178712 cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0xfb9bb014 cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie -EXPORT_SYMBOL net/wireless/lib80211 0x55c130db lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0x7478a0f4 lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0x7b5c3236 lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xaaa145d6 lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xb6712355 lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xddf050a4 lib80211_crypt_info_init -EXPORT_SYMBOL sound/ac97_bus 0x24825b96 ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xd13d0d86 snd_mixer_oss_ioctl_card -EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x86d11e7b snd_seq_kernel_client_write_poll -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue -EXPORT_SYMBOL sound/core/seq/snd-seq 0xd3182c57 snd_seq_event_port_attach -EXPORT_SYMBOL sound/core/seq/snd-seq 0xdddeda7f snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0xec2f068d snd_seq_kernel_client_enqueue_blocking -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0xd0696cb3 snd_seq_device_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x072d978b snd_midi_event_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x13a17752 snd_midi_event_reset_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x2eed26bf snd_midi_event_no_status -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x4d5ca523 snd_midi_event_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x592f6e9b snd_midi_event_free -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xd7c7afcc snd_midi_event_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe60fb228 snd_midi_event_reset_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xecbde43c snd_midi_event_encode_byte -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xaa401f16 snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x025668f3 snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0x02ecbf17 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0x02efa5f4 snd_card_new -EXPORT_SYMBOL sound/core/snd 0x03b5951c snd_cards -EXPORT_SYMBOL sound/core/snd 0x0581a89b snd_jack_new -EXPORT_SYMBOL sound/core/snd 0x07bc7f33 snd_ctl_register_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x09704a3b snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0x1161fade snd_device_register -EXPORT_SYMBOL sound/core/snd 0x175457b0 snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program -EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer -EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x295e9efb snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0x2a05ae56 snd_card_free -EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0x2ae8fa75 snd_ctl_unregister_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio -EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x3af528c1 snd_jack_report -EXPORT_SYMBOL sound/core/snd 0x40062c44 snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0x4435b352 snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0x4591503b snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x4d391577 snd_info_register -EXPORT_SYMBOL sound/core/snd 0x57a91213 snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0x67ac9904 snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0x6a9f1d91 _snd_ctl_add_slave -EXPORT_SYMBOL sound/core/snd 0x6f92deee snd_device_new -EXPORT_SYMBOL sound/core/snd 0x70402118 snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable -EXPORT_SYMBOL sound/core/snd 0x74157f1a snd_power_wait -EXPORT_SYMBOL sound/core/snd 0x756d103e snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0x764e9ccf snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0x7d7c89a0 snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0x7dfa17a8 snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0x87e547c1 snd_card_register -EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL sound/core/snd 0x8f369688 snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x91a874a8 snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0x935c396e snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0x94ccb9c6 snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0x9aa42917 snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id -EXPORT_SYMBOL sound/core/snd 0xaef7170c snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0xafbacadf snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb5e066d2 snd_register_device -EXPORT_SYMBOL sound/core/snd 0xbd976dc0 snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0xc477de9c snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0xc5659889 snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0xc6e897ca snd_component_add -EXPORT_SYMBOL sound/core/snd 0xcb7155c8 snd_seq_root -EXPORT_SYMBOL sound/core/snd 0xd200b038 snd_device_free -EXPORT_SYMBOL sound/core/snd 0xd8cc2d39 snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0xdb52d335 snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0xdb654798 snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0xe5b9c68c snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0xe5e55f8b snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0xef3f2e45 snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio -EXPORT_SYMBOL sound/core/snd-hwdep 0x70dd23f3 snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-pcm 0x011f1d9d snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any -EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x050b740e snd_pcm_lib_writev -EXPORT_SYMBOL sound/core/snd-pcm 0x06b310c9 snd_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x0f44a869 snd_pcm_lib_write -EXPORT_SYMBOL sound/core/snd-pcm 0x18ca1f27 snd_pcm_lib_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x1a402d3b snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0x1ad99a45 snd_pcm_notify -EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x1ec230a8 snd_dma_alloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x2303f147 snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x24615c2a snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0x27200215 snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x2e0071a4 snd_pcm_lib_mmap_iomem -EXPORT_SYMBOL sound/core/snd-pcm 0x32b0c342 snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x359fe574 snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x3977fa30 snd_pcm_limit_hw_rates -EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x3a0da881 snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x4131ff46 snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0x42470851 snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL sound/core/snd-pcm 0x43c00b29 snd_pcm_hw_rule_noresample -EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL sound/core/snd-pcm 0x58127032 snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0x5898dcba snd_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x5b49251c snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0x5ba26fb7 snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x607cb84a snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL sound/core/snd-pcm 0x6627cdce snd_pcm_suspend -EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width -EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x7d3d0e2e snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x913910cd snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0x95f4e818 snd_pcm_lib_readv -EXPORT_SYMBOL sound/core/snd-pcm 0x993d6786 snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x9b60d471 snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0x9bb89fd4 snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0xa3b3b662 snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xb61de1df snd_pcm_lib_read -EXPORT_SYMBOL sound/core/snd-pcm 0xb934d344 snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xbabae2ed snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xbef09382 snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0xc12dd318 snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xd1937eb7 snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0xd40000d7 snd_pcm_mmap_data -EXPORT_SYMBOL sound/core/snd-pcm 0xdf9f809c snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0xdff63f11 snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xeceb0e84 snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0xee0cadba _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xf377bd7b snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0xf39c9c2c snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0xfa82f268 snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0xfb19f745 snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0xfd3511e2 snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xfeeca7b8 snd_pcm_new_internal -EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x091e4c80 snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1b302a77 snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0x29502cda snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0x2c3fa6b1 snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x469c785c snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x627d5652 snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0x669d92ca snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x77b54486 snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0x844e2a03 snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x9895378e snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0xa2eb4238 __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0xba8a3ccc snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0xc06f236f snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0xc54f6ced snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd74d6f6e snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xdbb9fb02 __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf074398d snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf8adb83d snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0xfd02f951 snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-timer 0x0679768d snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0x3b7cd524 snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0x6b7363a4 snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0x842c4893 snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0x9452fb45 snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0x96f6981f snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0x9ad17ee1 snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0xa280168c snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0xb58bb7ad snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0xb5e61fae snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0xb8ecdb8a snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0xd8df9aa9 snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0xe61fe92c snd_timer_stop -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x92fc0118 snd_mpu401_uart_new -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x15298b36 snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x71e1a8dc snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x73adc426 snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb51e5cb4 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb85e5b22 snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc268d2ea snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc82d8ea0 snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd04d01ca snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe63eb31b snd_opl3_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x09a77da9 snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1f743852 snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3801d635 snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x400c96fc snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x572cb607 snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x66d0544a snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb5e5364e snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xcd6836e7 snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xeb9458f5 snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0210bd75 fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x059efa76 cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0bf19fe6 amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x12f58cba amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1db888c1 cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1f973592 snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x39518604 amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3c57311a cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4905f416 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4dfefe10 amdtp_stream_start -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x56a886b7 fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5e13852f snd_fw_async_midi_port_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x62c14e70 iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6be7fced amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x77c1e382 cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7866c88c amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7a236235 amdtp_stream_stop -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7a5f25e1 amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fcba686 amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8a872aee fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x918fbbfb cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9ae5e1d8 fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa2b483d1 amdtp_stream_pcm_pointer -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa5631397 iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb0eada6e fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbaac78e5 avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbdb226f4 avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc2beb227 fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xca72d00f avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd9b761d8 snd_fw_async_midi_port_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf6e10e0d amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfb5e27b4 fw_iso_resources_allocate -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x13b310e9 snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x2f4ff7b4 snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x5f0283c5 snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x62d66571 snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x78e02c24 snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa190886c snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa80f9c38 snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xac2f067c snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xeab6189a snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xfd4db660 snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x05c7390a snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x5090e8bc snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xab804634 snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xee5ad2e3 snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x0230e55f snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xb5ea39c2 snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x0cf21210 snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x42e8e651 snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x4bf0780a snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x684da6cc snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x953555d6 snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xdb1bbccd snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-i2c 0x0cd36685 snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x5e15ae02 snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0x7c758d4f snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0x7cdd0811 snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x8e11996d snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0xb090aa6e snd_i2c_readbytes -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x11890329 snd_sbmixer_suspend -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x6aaea5ff snd_sbmixer_read -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x7bdabdf3 snd_sbmixer_new -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x7ef86eea snd_sbdsp_create -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x8d7d53be snd_sbdsp_reset -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa0e3df31 snd_sbmixer_write -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xb6747696 snd_sbdsp_get_byte -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xba354d23 snd_sbmixer_resume -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd502793d snd_sbdsp_command -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xf5d53317 snd_sbmixer_add_ctl -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0929d06f snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1b76b6c0 snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x231a2c2e snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2ee391eb snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3b6cb502 snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x47b9ddc3 snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6c0f402a snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8b266a54 snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa07aa94a snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa0f91680 snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa82d9644 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd04e02bc snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd95b387b snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe1c6155c snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf54fa266 snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfd2e11d1 snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xff700010 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x0032ef27 snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x37d3e204 snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x46913775 snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x93b0d3e0 snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xa4e3a94f snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xbb11f635 snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc866ec44 snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xdcbb0742 snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe0971b2a snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x3e6c18eb snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xcb868407 snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xfd99edc1 snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0101cd5f oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x04f1080d oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x13ccfade oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x172f4220 oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2dfb56bd oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x359681c1 oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4e45464e oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x55aa56d0 oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5e496b66 oxygen_pci_remove -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x765bdd93 oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9ee7793c oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa8889396 oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb4a7ab10 oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbf1b8216 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcfa3b308 oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd0cf1f90 oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd4964b8b oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdf05d378 oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe73cdc09 oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xea4b40d9 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xeb71c4f4 oxygen_pci_pm -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x293b9bc2 snd_trident_write_voice_regs -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x4622976b snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x953ed13c snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xadc9a6b9 snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xc41774b9 snd_trident_stop_voice -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x63e7135e tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xfab179b1 tlv320aic23_probe -EXPORT_SYMBOL sound/soc/snd-soc-core 0xe2763bfd snd_soc_alloc_ac97_codec -EXPORT_SYMBOL sound/soundcore 0x503ba45f register_sound_dsp -EXPORT_SYMBOL sound/soundcore 0x54785f2b register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x8d41b5a8 register_sound_midi -EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0xa1e5561d sound_class -EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xd6a61fd3 register_sound_special_device -EXPORT_SYMBOL sound/soundcore 0xed9f6ff0 register_sound_special -EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x0ccc4326 snd_emux_free -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x3e0b9d4e snd_emux_new -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x426a4b73 snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x5604467b snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x7d211ae3 snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xb7aa51d0 snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/snd-util-mem 0x02373caf snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0x09fc4fee snd_util_memhdr_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x568f7a49 snd_util_mem_avail -EXPORT_SYMBOL sound/synth/snd-util-mem 0x623bdbf1 __snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0x7506e7b8 snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x77ee3650 __snd_util_memblk_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0xcd80a8f1 __snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0xf12e4628 snd_util_memhdr_new -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x311c88d6 snd_usbmidi_create -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect -EXPORT_SYMBOL vmlinux 0x00000000 TOC. -EXPORT_SYMBOL vmlinux 0x00185ecb tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x002340db cdrom_open -EXPORT_SYMBOL vmlinux 0x006bb8b0 __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0x0070cd1f queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0x007195ef tcp_ioctl -EXPORT_SYMBOL vmlinux 0x00759eb1 ether_setup -EXPORT_SYMBOL vmlinux 0x0085e1f1 __do_once_done -EXPORT_SYMBOL vmlinux 0x0094273f reservation_object_add_excl_fence -EXPORT_SYMBOL vmlinux 0x00a739d6 fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x00cad5c6 __blk_run_queue -EXPORT_SYMBOL vmlinux 0x00cbdc38 blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0x00cdf630 input_open_device -EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00e435a7 eth_header_cache_update -EXPORT_SYMBOL vmlinux 0x00eb9f67 udplite_prot -EXPORT_SYMBOL vmlinux 0x00eeef7c scsi_cmd_ioctl -EXPORT_SYMBOL vmlinux 0x00f78f74 pci_restore_state -EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve -EXPORT_SYMBOL vmlinux 0x012a97fc xor_altivec_4 -EXPORT_SYMBOL vmlinux 0x014d476f of_find_i2c_device_by_node -EXPORT_SYMBOL vmlinux 0x01578cb6 nvm_register_target -EXPORT_SYMBOL vmlinux 0x0160b6bc alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0x0164a872 simple_dname -EXPORT_SYMBOL vmlinux 0x016e18c2 kernel_sock_ioctl -EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer -EXPORT_SYMBOL vmlinux 0x01790e94 csum_partial_copy -EXPORT_SYMBOL vmlinux 0x01a29e04 blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0x01cfedac rwsem_down_write_failed -EXPORT_SYMBOL vmlinux 0x01e69e16 abx500_mask_and_set_register_interruptible -EXPORT_SYMBOL vmlinux 0x01f86d52 devfreq_resume_device -EXPORT_SYMBOL vmlinux 0x01fee120 security_d_instantiate -EXPORT_SYMBOL vmlinux 0x02056ff2 dm_get_device -EXPORT_SYMBOL vmlinux 0x020bacb6 pps_register_source -EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check -EXPORT_SYMBOL vmlinux 0x0213fc77 pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x021bc801 devfreq_add_device -EXPORT_SYMBOL vmlinux 0x023a074a hvc_get_chars -EXPORT_SYMBOL vmlinux 0x023bd475 xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x024bf827 radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x02568ffd __netif_schedule -EXPORT_SYMBOL vmlinux 0x025a8604 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x02651804 lwtunnel_build_state -EXPORT_SYMBOL vmlinux 0x026ad381 wait_iff_congested -EXPORT_SYMBOL vmlinux 0x026baee1 rtnl_create_link -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x027b320e input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x0296b077 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x029b49c8 forget_cached_acl -EXPORT_SYMBOL vmlinux 0x029d9c43 release_sock -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table -EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string -EXPORT_SYMBOL vmlinux 0x031afd1a clear_wb_congested -EXPORT_SYMBOL vmlinux 0x0324655e pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0x032867f6 blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x036bb8f9 i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x037ea06f pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x039237ac request_key_async_with_auxdata -EXPORT_SYMBOL vmlinux 0x03ab0197 nf_ct_attach -EXPORT_SYMBOL vmlinux 0x03c21ef9 dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0x03c6672d vio_cmo_set_dev_desired -EXPORT_SYMBOL vmlinux 0x03c6d105 sg_miter_skip -EXPORT_SYMBOL vmlinux 0x03e066b4 sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0x03e89b33 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x04005dff generic_ro_fops -EXPORT_SYMBOL vmlinux 0x0406d732 generic_update_time -EXPORT_SYMBOL vmlinux 0x04074f48 ioremap -EXPORT_SYMBOL vmlinux 0x040f8f9d dev_uc_unsync -EXPORT_SYMBOL vmlinux 0x0421d72e posix_acl_fix_xattr_userns -EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg -EXPORT_SYMBOL vmlinux 0x04239366 kernel_setsockopt -EXPORT_SYMBOL vmlinux 0x04363e56 jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x04396f2c tcp_enter_memory_pressure -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x044a0adf kobject_get -EXPORT_SYMBOL vmlinux 0x046ec2f8 dqget -EXPORT_SYMBOL vmlinux 0x0474a956 jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0x047eb192 vfs_llseek -EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display -EXPORT_SYMBOL vmlinux 0x04a587d9 simple_readpage -EXPORT_SYMBOL vmlinux 0x04d67e2a pci_disable_device -EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol -EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize -EXPORT_SYMBOL vmlinux 0x04ffb084 xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x050d8267 devm_gpio_free -EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range -EXPORT_SYMBOL vmlinux 0x051dfcae genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x052c8dd4 bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x0530dede _raw_write_trylock -EXPORT_SYMBOL vmlinux 0x055c8559 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x056f35ed fsnotify_put_mark -EXPORT_SYMBOL vmlinux 0x0573b8a5 pci_get_class -EXPORT_SYMBOL vmlinux 0x05a514a1 _insl_ns -EXPORT_SYMBOL vmlinux 0x05abdb34 writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x05b3aae5 invalidate_partition -EXPORT_SYMBOL vmlinux 0x05ca9c32 mpage_writepages -EXPORT_SYMBOL vmlinux 0x06064851 tty_register_driver -EXPORT_SYMBOL vmlinux 0x060de700 bdi_register_owner -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x06575922 blk_queue_free_tags -EXPORT_SYMBOL vmlinux 0x065af3a6 inode_set_bytes -EXPORT_SYMBOL vmlinux 0x067886e6 tcp_destroy_cgroup -EXPORT_SYMBOL vmlinux 0x067ac8a6 gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx -EXPORT_SYMBOL vmlinux 0x0692cdea mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0x06dd6ea0 phy_start_aneg -EXPORT_SYMBOL vmlinux 0x06de4465 find_get_entry -EXPORT_SYMBOL vmlinux 0x06fd51f5 __i2c_transfer -EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn -EXPORT_SYMBOL vmlinux 0x06feccbc blk_alloc_queue_node -EXPORT_SYMBOL vmlinux 0x070ba15d km_report -EXPORT_SYMBOL vmlinux 0x071a088a d_instantiate -EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 -EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x073d7b7d kobject_set_name -EXPORT_SYMBOL vmlinux 0x073faee1 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0x074a4f52 bdi_register -EXPORT_SYMBOL vmlinux 0x074dc8a0 fb_blank -EXPORT_SYMBOL vmlinux 0x074e9213 down_killable -EXPORT_SYMBOL vmlinux 0x07596b87 of_find_property -EXPORT_SYMBOL vmlinux 0x079a164a dev_uc_del -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07a9ef84 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x07ae888e of_translate_address -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07ec80a9 security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0x081b408c ata_print_version -EXPORT_SYMBOL vmlinux 0x081e4698 sock_release -EXPORT_SYMBOL vmlinux 0x082b7769 scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x082de2d0 __getblk_slow -EXPORT_SYMBOL vmlinux 0x0833b5ff input_get_keycode -EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x0866d235 scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x08726837 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x0881407a dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0x08a4b521 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x08ab71e0 key_revoke -EXPORT_SYMBOL vmlinux 0x08c8137f i2c_verify_client -EXPORT_SYMBOL vmlinux 0x08c95905 vme_register_error_handler -EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0x08fba5f9 input_grab_device -EXPORT_SYMBOL vmlinux 0x093c7bb2 param_set_bool -EXPORT_SYMBOL vmlinux 0x0943ea4b cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x099649d0 brioctl_set -EXPORT_SYMBOL vmlinux 0x09c0426e mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0x09cec974 get_task_io_context -EXPORT_SYMBOL vmlinux 0x09d2d0eb of_device_get_match_data -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09d8c108 simple_statfs -EXPORT_SYMBOL vmlinux 0x09dbcc6b datagram_poll -EXPORT_SYMBOL vmlinux 0x0a12b619 lock_rename -EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class -EXPORT_SYMBOL vmlinux 0x0a2fa359 sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x0a3004cf xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x0a313b53 phy_start -EXPORT_SYMBOL vmlinux 0x0a4823a6 pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0x0a57863e cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x0a6bac08 kernel_listen -EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0a7841c3 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0x0a7fa9fc vfs_writef -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aac4a4b simple_lookup -EXPORT_SYMBOL vmlinux 0x0ab2b910 bdev_read_only -EXPORT_SYMBOL vmlinux 0x0abd5b27 input_reset_device -EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0add4a5c bio_add_pc_page -EXPORT_SYMBOL vmlinux 0x0aeff89b keyring_alloc -EXPORT_SYMBOL vmlinux 0x0afe7058 fb_find_mode -EXPORT_SYMBOL vmlinux 0x0b0cbf56 find_get_pages_contig -EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b24cb7e scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0x0b25d72a __sb_start_write -EXPORT_SYMBOL vmlinux 0x0b2e1ec7 h_get_mpp -EXPORT_SYMBOL vmlinux 0x0b3ad318 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x0b4b134f bio_endio -EXPORT_SYMBOL vmlinux 0x0b524a81 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0x0b538a55 __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister -EXPORT_SYMBOL vmlinux 0x0b61392a misc_deregister -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b869924 tcp_proc_register -EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bc978be xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x0bcc719c pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0x0bddaab7 jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x0bee08ac xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x0bf72bf3 sock_sendmsg -EXPORT_SYMBOL vmlinux 0x0c0d3606 dev_uc_sync -EXPORT_SYMBOL vmlinux 0x0c19a508 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x0c1f7f21 of_get_property -EXPORT_SYMBOL vmlinux 0x0c21d019 flush_delayed_work -EXPORT_SYMBOL vmlinux 0x0c269061 pci_unregister_driver -EXPORT_SYMBOL vmlinux 0x0c2cc517 generic_perform_write -EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat -EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features -EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -EXPORT_SYMBOL vmlinux 0x0c74daba simple_dir_operations -EXPORT_SYMBOL vmlinux 0x0c79f64a devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0x0c9224fe proc_set_user -EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0x0cb6a313 nd_btt_probe -EXPORT_SYMBOL vmlinux 0x0cbaadf7 input_unregister_handle -EXPORT_SYMBOL vmlinux 0x0ceacba4 console_start -EXPORT_SYMBOL vmlinux 0x0d1fbf0a i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0x0d252adf of_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x0d2551f6 tcp_read_sock -EXPORT_SYMBOL vmlinux 0x0d360751 ip_getsockopt -EXPORT_SYMBOL vmlinux 0x0d3e5f8e __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0x0d4a8cf7 filemap_write_and_wait -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d6c963c copy_from_user -EXPORT_SYMBOL vmlinux 0x0d72e360 tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x0d7d3c83 kernel_connect -EXPORT_SYMBOL vmlinux 0x0d8a53be abx500_set_register_interruptible -EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft -EXPORT_SYMBOL vmlinux 0x0db03836 abx500_get_register_page_interruptible -EXPORT_SYMBOL vmlinux 0x0dc0ace0 idr_find_slowpath -EXPORT_SYMBOL vmlinux 0x0dcc4361 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x0dd9384a i2c_clients_command -EXPORT_SYMBOL vmlinux 0x0de1c765 ip_check_defrag -EXPORT_SYMBOL vmlinux 0x0de38a3d get_agp_version -EXPORT_SYMBOL vmlinux 0x0e1bd272 seq_hex_dump -EXPORT_SYMBOL vmlinux 0x0e3ff104 __devcgroup_inode_permission -EXPORT_SYMBOL vmlinux 0x0e456ef9 sock_i_ino -EXPORT_SYMBOL vmlinux 0x0e4bed60 cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x0e635107 generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec -EXPORT_SYMBOL vmlinux 0x0e7df545 pci_enable_msix -EXPORT_SYMBOL vmlinux 0x0e818361 tcp_rcv_established -EXPORT_SYMBOL vmlinux 0x0e8b6b2b elevator_alloc -EXPORT_SYMBOL vmlinux 0x0e8f30f6 _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0x0e9fa893 inet_offloads -EXPORT_SYMBOL vmlinux 0x0ea34a35 blk_finish_request -EXPORT_SYMBOL vmlinux 0x0ea96d14 xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x0eb409ce lwtunnel_output -EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ed762c4 blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0x0ee48edd remap_pfn_range -EXPORT_SYMBOL vmlinux 0x0eea87b0 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x0eee799c generic_write_checks -EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups -EXPORT_SYMBOL vmlinux 0x0f132c0a tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x0f1d5da7 devm_kvasprintf -EXPORT_SYMBOL vmlinux 0x0f37779f kern_path -EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec -EXPORT_SYMBOL vmlinux 0x0f59e0ca inet_frags_init -EXPORT_SYMBOL vmlinux 0x0f5faa7e wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x0f60b5ac scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x0f629eb6 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size -EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x0f7c1caf dump_skip -EXPORT_SYMBOL vmlinux 0x0f7c5603 of_find_net_device_by_node -EXPORT_SYMBOL vmlinux 0x0f7ccd34 freezing_slow_path -EXPORT_SYMBOL vmlinux 0x0f8a507a free_task -EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress -EXPORT_SYMBOL vmlinux 0x0ffa1c52 __dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x10021d1c generic_end_io_acct -EXPORT_SYMBOL vmlinux 0x10194c8e pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0x101ac4f2 pci_request_region_exclusive -EXPORT_SYMBOL vmlinux 0x101b606d md_error -EXPORT_SYMBOL vmlinux 0x10386bbd param_ops_int -EXPORT_SYMBOL vmlinux 0x103b4fa9 __starget_for_each_device -EXPORT_SYMBOL vmlinux 0x10674920 blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0x106a1fc1 parent_mem_cgroup -EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user -EXPORT_SYMBOL vmlinux 0x10793f2c agp_generic_insert_memory -EXPORT_SYMBOL vmlinux 0x10795a8a devm_iounmap -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x10840af4 of_mdio_find_bus -EXPORT_SYMBOL vmlinux 0x10950ee1 radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x10b33702 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0x10bd67a2 passthru_features_check -EXPORT_SYMBOL vmlinux 0x10c76e65 bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x10cf84fa cdev_add -EXPORT_SYMBOL vmlinux 0x10d0787c xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu -EXPORT_SYMBOL vmlinux 0x10f20439 pci_iomap -EXPORT_SYMBOL vmlinux 0x10fa708e serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x1121421c bio_integrity_enabled -EXPORT_SYMBOL vmlinux 0x1142b687 devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn -EXPORT_SYMBOL vmlinux 0x11702587 kdb_current_task -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x1182d83a cpuidle_disable -EXPORT_SYMBOL vmlinux 0x118d251f register_key_type -EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned -EXPORT_SYMBOL vmlinux 0x11b5b6f6 simple_transaction_release -EXPORT_SYMBOL vmlinux 0x11b68f49 pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0x11dfd9d3 inet6_offloads -EXPORT_SYMBOL vmlinux 0x11f0bad9 finish_open -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin -EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x120bad17 filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0x120d55cd ip_defrag -EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier -EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const -EXPORT_SYMBOL vmlinux 0x1228081d dev_trans_start -EXPORT_SYMBOL vmlinux 0x1228cb13 __bio_clone_fast -EXPORT_SYMBOL vmlinux 0x122ef689 ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0x123f82f3 getrawmonotonic64 -EXPORT_SYMBOL vmlinux 0x124417d7 dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0x1267189f unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x12688f6e bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x128580fb sk_receive_skb -EXPORT_SYMBOL vmlinux 0x128653cd __get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range -EXPORT_SYMBOL vmlinux 0x12ac1aa8 mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0x12b0d11e padata_remove_cpu -EXPORT_SYMBOL vmlinux 0x12cb32ca d_alloc -EXPORT_SYMBOL vmlinux 0x12ce00d5 dmam_pool_create -EXPORT_SYMBOL vmlinux 0x12d4a5f3 bioset_create_nobvec -EXPORT_SYMBOL vmlinux 0x12dfeb12 vprintk_emit -EXPORT_SYMBOL vmlinux 0x12e5ef0c rtas_set_power_level -EXPORT_SYMBOL vmlinux 0x13109f5c d_obtain_alias -EXPORT_SYMBOL vmlinux 0x1319449d secure_modules -EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x13307fde vsscanf -EXPORT_SYMBOL vmlinux 0x133705aa sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0x1347b0d8 inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0x136259f2 skb_seq_read -EXPORT_SYMBOL vmlinux 0x13b967cf vfs_getxattr_alloc -EXPORT_SYMBOL vmlinux 0x13bb100f bio_alloc_pages -EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13f53da6 CMO_PageSize -EXPORT_SYMBOL vmlinux 0x14076af4 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0x14111ade filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x1424fd93 revalidate_disk -EXPORT_SYMBOL vmlinux 0x142bf12d sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0x143afe07 devm_gpiod_put -EXPORT_SYMBOL vmlinux 0x143bffb6 dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x144a3748 __scsi_add_device -EXPORT_SYMBOL vmlinux 0x1450833c scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0x14777b51 ilookup5_nowait -EXPORT_SYMBOL vmlinux 0x14812668 bio_split -EXPORT_SYMBOL vmlinux 0x14881b46 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0x148b6d1d mmc_gpio_request_ro -EXPORT_SYMBOL vmlinux 0x148c2b22 of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0x1491dd31 udp_disconnect -EXPORT_SYMBOL vmlinux 0x14a14817 pSeries_enable_reloc_on_exc -EXPORT_SYMBOL vmlinux 0x14a18552 skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0x14b8ad40 fb_pan_display -EXPORT_SYMBOL vmlinux 0x14c03693 blk_make_request -EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x14fd32ad __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x15043edc mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x152316fb dm_register_target -EXPORT_SYMBOL vmlinux 0x153c51b3 nd_region_release_lane -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x155a7827 pcim_enable_device -EXPORT_SYMBOL vmlinux 0x155f039e ibmebus_unregister_driver -EXPORT_SYMBOL vmlinux 0x1564ce61 km_state_notify -EXPORT_SYMBOL vmlinux 0x15786e2f d_delete -EXPORT_SYMBOL vmlinux 0x157a7d6a bio_uncopy_user -EXPORT_SYMBOL vmlinux 0x1581c55a inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x158723b2 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0x1592af62 forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x159c798d tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x15af2611 sk_reset_timer -EXPORT_SYMBOL vmlinux 0x15b1bd75 pcie_set_readrq -EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15c302e1 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0x15d3fd60 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x15e167f6 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0x16096a2f phy_init_hw -EXPORT_SYMBOL vmlinux 0x160bd45c rtas_token -EXPORT_SYMBOL vmlinux 0x164ac3b8 nd_region_acquire_lane -EXPORT_SYMBOL vmlinux 0x166d0a46 shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0x1672b4ac __bread_gfp -EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump -EXPORT_SYMBOL vmlinux 0x16893d2b dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x169c40c0 posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16e7f81c param_get_ulong -EXPORT_SYMBOL vmlinux 0x16f33802 redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0x16fb7128 netlink_unicast -EXPORT_SYMBOL vmlinux 0x170c2ac3 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0x1717d86e agp_generic_type_to_mask_type -EXPORT_SYMBOL vmlinux 0x17337972 call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0x1743414f __debugger_fault_handler -EXPORT_SYMBOL vmlinux 0x1743f3ad inode_permission -EXPORT_SYMBOL vmlinux 0x17648396 dev_base_lock -EXPORT_SYMBOL vmlinux 0x1773210d eeh_dev_release -EXPORT_SYMBOL vmlinux 0x177ba72d netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x17847436 locks_copy_conflock -EXPORT_SYMBOL vmlinux 0x1793f685 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator -EXPORT_SYMBOL vmlinux 0x17bb84b6 jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0x17c6f306 block_write_end -EXPORT_SYMBOL vmlinux 0x17d15b74 sock_no_setsockopt -EXPORT_SYMBOL vmlinux 0x17e28473 fsl_upm_run_pattern -EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip -EXPORT_SYMBOL vmlinux 0x17f47a41 put_cmsg -EXPORT_SYMBOL vmlinux 0x17f7ab5e kern_path_mountpoint -EXPORT_SYMBOL vmlinux 0x1800ed82 keyring_clear -EXPORT_SYMBOL vmlinux 0x18075ac4 key_reject_and_link -EXPORT_SYMBOL vmlinux 0x180e9dab of_get_named_gpio_flags -EXPORT_SYMBOL vmlinux 0x182980f7 agp_copy_info -EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken -EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0x184a748c i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask -EXPORT_SYMBOL vmlinux 0x184e45ee mmc_stop_bkops -EXPORT_SYMBOL vmlinux 0x1857aa39 proc_dointvec -EXPORT_SYMBOL vmlinux 0x18658894 jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0x187a4879 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc -EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x18a3969e security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0x18abf6a2 bdi_destroy -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x1901ac51 inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0x19120b0b vfs_whiteout -EXPORT_SYMBOL vmlinux 0x19441fe4 blk_put_queue -EXPORT_SYMBOL vmlinux 0x195fa069 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0x198f397e sock_alloc_file -EXPORT_SYMBOL vmlinux 0x1991a33b input_set_abs_params -EXPORT_SYMBOL vmlinux 0x199ec4fb arch_spin_unlock_wait -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x19ba1dc7 fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19ca2252 unregister_shrinker -EXPORT_SYMBOL vmlinux 0x19d90c19 neigh_table_clear -EXPORT_SYMBOL vmlinux 0x1a017db9 proc_remove -EXPORT_SYMBOL vmlinux 0x1a0cce11 mutex_lock_killable -EXPORT_SYMBOL vmlinux 0x1a26fa36 nvm_get_blk -EXPORT_SYMBOL vmlinux 0x1a2713fa pagevec_lookup_tag -EXPORT_SYMBOL vmlinux 0x1a3faf9e dqput -EXPORT_SYMBOL vmlinux 0x1a44ea93 blk_mq_abort_requeue_list -EXPORT_SYMBOL vmlinux 0x1a45dcf4 sk_wait_data -EXPORT_SYMBOL vmlinux 0x1a568e42 __find_get_block -EXPORT_SYMBOL vmlinux 0x1a60bd2a task_tgid_nr_ns -EXPORT_SYMBOL vmlinux 0x1ab84931 napi_consume_skb -EXPORT_SYMBOL vmlinux 0x1ac3da3d scsi_verify_blk_ioctl -EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1ac64447 sock_wmalloc -EXPORT_SYMBOL vmlinux 0x1ae28b93 dm_put_table_device -EXPORT_SYMBOL vmlinux 0x1aee0243 add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0x1aeef627 tty_port_open -EXPORT_SYMBOL vmlinux 0x1af62a99 panic_notifier_list -EXPORT_SYMBOL vmlinux 0x1b0105c6 dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b132009 rename_lock -EXPORT_SYMBOL vmlinux 0x1b180c9b __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents -EXPORT_SYMBOL vmlinux 0x1b2076a4 eth_gro_receive -EXPORT_SYMBOL vmlinux 0x1b28e1ba sock_register -EXPORT_SYMBOL vmlinux 0x1b33f8c4 swiotlb_alloc_coherent -EXPORT_SYMBOL vmlinux 0x1b36f635 netif_napi_del -EXPORT_SYMBOL vmlinux 0x1b3d807e xfrm_state_add -EXPORT_SYMBOL vmlinux 0x1b46c2c2 nvm_register_mgr -EXPORT_SYMBOL vmlinux 0x1b625d33 enable_kernel_vsx -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b63eba0 __skb_get_hash_flowi6 -EXPORT_SYMBOL vmlinux 0x1b65eb14 input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x1b70bcd2 ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug -EXPORT_SYMBOL vmlinux 0x1b8719a6 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0x1b89bda7 netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip -EXPORT_SYMBOL vmlinux 0x1ba4291d tty_vhangup -EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer -EXPORT_SYMBOL vmlinux 0x1bb5ef9e gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x1bc0b6d0 iterate_mounts -EXPORT_SYMBOL vmlinux 0x1bc4ff03 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0x1bd573cd inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x1bdebb34 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x1bfec830 __iounmap_at -EXPORT_SYMBOL vmlinux 0x1c066b7b kset_register -EXPORT_SYMBOL vmlinux 0x1c1798c0 get_super -EXPORT_SYMBOL vmlinux 0x1c37dfcb skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0x1c3ae755 sget_userns -EXPORT_SYMBOL vmlinux 0x1c3e02e4 memcmp -EXPORT_SYMBOL vmlinux 0x1c4ad078 unregister_console -EXPORT_SYMBOL vmlinux 0x1c4c34b5 ab3100_event_register -EXPORT_SYMBOL vmlinux 0x1c4c3d26 dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x1c694f64 fsnotify_alloc_group -EXPORT_SYMBOL vmlinux 0x1c7fa585 blk_execute_rq -EXPORT_SYMBOL vmlinux 0x1c81b98c ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0x1c91d9ee vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0x1ca0935b padata_alloc -EXPORT_SYMBOL vmlinux 0x1ca27913 kill_fasync -EXPORT_SYMBOL vmlinux 0x1cb66b6a jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0x1ccaa392 __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0x1ce7ace4 free_buffer_head -EXPORT_SYMBOL vmlinux 0x1cf4da3d netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0x1d0dd111 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0x1d1056e5 crc32_be -EXPORT_SYMBOL vmlinux 0x1d1d93d1 kmalloc_dma_caches -EXPORT_SYMBOL vmlinux 0x1d5c02a9 dev_mc_flush -EXPORT_SYMBOL vmlinux 0x1d603662 __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x1d663929 page_put_link -EXPORT_SYMBOL vmlinux 0x1d7651db __invalidate_device -EXPORT_SYMBOL vmlinux 0x1d79cc05 vio_unregister_driver -EXPORT_SYMBOL vmlinux 0x1d975248 __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x1daee28a percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0x1db1985c swiotlb_unmap_sg -EXPORT_SYMBOL vmlinux 0x1db8f522 simple_link -EXPORT_SYMBOL vmlinux 0x1dbc4d0c proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x1dc06228 phy_suspend -EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1ddbe78f vme_irq_generate -EXPORT_SYMBOL vmlinux 0x1dec3f02 netdev_update_features -EXPORT_SYMBOL vmlinux 0x1e0dadb6 dns_query -EXPORT_SYMBOL vmlinux 0x1e197b1c tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev -EXPORT_SYMBOL vmlinux 0x1e2ac978 flow_cache_lookup -EXPORT_SYMBOL vmlinux 0x1e3f4645 param_get_ushort -EXPORT_SYMBOL vmlinux 0x1e63c8b2 pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e84574d __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x1e85bd60 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1ea4dbd6 mfd_cell_disable -EXPORT_SYMBOL vmlinux 0x1eace66a invalidate_bdev -EXPORT_SYMBOL vmlinux 0x1eb1cae3 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0x1ec7b5ee pci_lost_interrupt -EXPORT_SYMBOL vmlinux 0x1ecae572 fsync_bdev -EXPORT_SYMBOL vmlinux 0x1ed91e70 gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x1edb68ec __pagevec_release -EXPORT_SYMBOL vmlinux 0x1eeb38a3 release_firmware -EXPORT_SYMBOL vmlinux 0x1efb52cc simple_transaction_set -EXPORT_SYMBOL vmlinux 0x1efbdb8c security_inode_init_security -EXPORT_SYMBOL vmlinux 0x1f2ba7d6 i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0x1f4db8b6 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0x1f6ce67a sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x1f744cef tty_hangup -EXPORT_SYMBOL vmlinux 0x1f771a55 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x1f860c0f find_get_pages_tag -EXPORT_SYMBOL vmlinux 0x1f8be1ca pci_disable_msi -EXPORT_SYMBOL vmlinux 0x1f9bd8b7 arp_tbl -EXPORT_SYMBOL vmlinux 0x1fa071a0 compat_tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x1fa1febf phy_stop_interrupts -EXPORT_SYMBOL vmlinux 0x1fa6e239 noop_qdisc -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fc75ca1 dev_get_flags -EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag -EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region -EXPORT_SYMBOL vmlinux 0x1ff83b6a pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x200a14e9 path_noexec -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x2029a004 nvm_erase_ppa -EXPORT_SYMBOL vmlinux 0x204016d2 xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0x2043e321 inet_add_offload -EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool -EXPORT_SYMBOL vmlinux 0x2057c325 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x205cba43 param_set_ullong -EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq -EXPORT_SYMBOL vmlinux 0x2080c882 mmc_can_discard -EXPORT_SYMBOL vmlinux 0x20892f64 register_md_personality -EXPORT_SYMBOL vmlinux 0x208e730a page_readlink -EXPORT_SYMBOL vmlinux 0x20a3ef78 devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20aec5ec fb_set_suspend -EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf -EXPORT_SYMBOL vmlinux 0x20d9b996 netlink_kernel_release -EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x20e858b0 devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum -EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x20f83dce pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0x2110d516 cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0x211f68f1 getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x212ed47e blk_integrity_compare -EXPORT_SYMBOL vmlinux 0x21377aee locks_copy_lock -EXPORT_SYMBOL vmlinux 0x213d1b13 jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0x21632ad9 key_type_keyring -EXPORT_SYMBOL vmlinux 0x21671f42 mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0x216ab287 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0x21bc9e34 scsi_cmd_get_serial -EXPORT_SYMBOL vmlinux 0x21c46af7 filemap_flush -EXPORT_SYMBOL vmlinux 0x21d4c182 ppp_input -EXPORT_SYMBOL vmlinux 0x21d732f6 sync_inode -EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set -EXPORT_SYMBOL vmlinux 0x21f19335 fence_remove_callback -EXPORT_SYMBOL vmlinux 0x220782a5 pci_reenable_device -EXPORT_SYMBOL vmlinux 0x222516ba set_nlink -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x2247b1c3 ptp_clock_index -EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits -EXPORT_SYMBOL vmlinux 0x2271e48c __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint -EXPORT_SYMBOL vmlinux 0x2287687a i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0x2296f601 serio_rescan -EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22f36c6c input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0x2319aa16 of_device_is_compatible -EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs -EXPORT_SYMBOL vmlinux 0x233069f1 netdev_boot_setup_check -EXPORT_SYMBOL vmlinux 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL vmlinux 0x2347312e compat_mc_setsockopt -EXPORT_SYMBOL vmlinux 0x235e90f3 __wake_up_bit -EXPORT_SYMBOL vmlinux 0x23760610 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23be801e sg_miter_start -EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress -EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0x23cf97db vm_event_states -EXPORT_SYMBOL vmlinux 0x23f2243d mempool_free -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x24116f0b lookup_one_len -EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x2426ad41 bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0x243b641f inet_frags_fini -EXPORT_SYMBOL vmlinux 0x2440191a devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0x2441d35a blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x244a958d ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x24558300 locks_remove_posix -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x245fe658 tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf -EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x24855cba __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x24c65351 agp_allocate_memory -EXPORT_SYMBOL vmlinux 0x24c7a505 __mutex_init -EXPORT_SYMBOL vmlinux 0x24c7d594 of_parse_phandle_with_args -EXPORT_SYMBOL vmlinux 0x24d6b4a6 cur_cpu_spec -EXPORT_SYMBOL vmlinux 0x24de38f5 compat_mc_getsockopt -EXPORT_SYMBOL vmlinux 0x24e32c60 vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0x24e87e0a neigh_for_each -EXPORT_SYMBOL vmlinux 0x24f00380 ida_init -EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function -EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register -EXPORT_SYMBOL vmlinux 0x25582302 pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0x255e84a2 request_key_async -EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string -EXPORT_SYMBOL vmlinux 0x25781afe bioset_create -EXPORT_SYMBOL vmlinux 0x257b6fe0 pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x257ce0a6 ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x25aba885 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0x25b734fc udp_set_csum -EXPORT_SYMBOL vmlinux 0x25c5acf6 jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0x25ddf2f7 submit_bio -EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x262dd682 netif_receive_skb -EXPORT_SYMBOL vmlinux 0x2631e75e block_commit_write -EXPORT_SYMBOL vmlinux 0x2632de13 tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x26411b7b tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0x26464c5a agp_generic_destroy_pages -EXPORT_SYMBOL vmlinux 0x26477c07 __vmalloc -EXPORT_SYMBOL vmlinux 0x264af0ea security_path_rename -EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux -EXPORT_SYMBOL vmlinux 0x2665d53a key_create_or_update -EXPORT_SYMBOL vmlinux 0x268ed015 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x26957553 icmp_send -EXPORT_SYMBOL vmlinux 0x26a7f36e cdrom_media_changed -EXPORT_SYMBOL vmlinux 0x26ac9975 kernel_param_lock -EXPORT_SYMBOL vmlinux 0x26bbdcf7 tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0x26c0fa13 phy_start_interrupts -EXPORT_SYMBOL vmlinux 0x26c14c9f jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x26e28845 elv_add_request -EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26e621c6 fddi_type_trans -EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min -EXPORT_SYMBOL vmlinux 0x26eb4e35 irq_to_desc -EXPORT_SYMBOL vmlinux 0x2722c9f9 padata_alloc_possible -EXPORT_SYMBOL vmlinux 0x27274be3 dmam_alloc_noncoherent -EXPORT_SYMBOL vmlinux 0x2731e980 blk_start_request -EXPORT_SYMBOL vmlinux 0x27400d2c down_read -EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0x27646df3 start_thread -EXPORT_SYMBOL vmlinux 0x2771d7ff ida_get_new_above -EXPORT_SYMBOL vmlinux 0x277a5a94 gen_replace_estimator -EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27bda1ff cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x27ca65d2 serio_interrupt -EXPORT_SYMBOL vmlinux 0x27d6579e dev_remove_pack -EXPORT_SYMBOL vmlinux 0x27de779e input_set_keycode -EXPORT_SYMBOL vmlinux 0x27e1a049 printk -EXPORT_SYMBOL vmlinux 0x27e78f93 of_n_addr_cells -EXPORT_SYMBOL vmlinux 0x28073182 keyring_search -EXPORT_SYMBOL vmlinux 0x280c5694 bio_add_page -EXPORT_SYMBOL vmlinux 0x280e51dc vfs_unlink -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x2827903d mmc_start_bkops -EXPORT_SYMBOL vmlinux 0x2829efab inet6_release -EXPORT_SYMBOL vmlinux 0x28318305 snprintf -EXPORT_SYMBOL vmlinux 0x2855c978 sock_no_mmap -EXPORT_SYMBOL vmlinux 0x28789eb0 __scsi_print_sense -EXPORT_SYMBOL vmlinux 0x28956746 write_dirty_buffer -EXPORT_SYMBOL vmlinux 0x289db3ee idr_remove -EXPORT_SYMBOL vmlinux 0x28a2b29f radix_tree_range_tag_if_tagged -EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x28a7beba __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x28ab4a4d deactivate_super -EXPORT_SYMBOL vmlinux 0x28abfe6e scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x28c8569e param_ops_ulong -EXPORT_SYMBOL vmlinux 0x28d24388 dquot_commit -EXPORT_SYMBOL vmlinux 0x28e4896c nvm_dev_dma_alloc -EXPORT_SYMBOL vmlinux 0x28e6ce45 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x28ef9c05 cap_mmap_file -EXPORT_SYMBOL vmlinux 0x293402a1 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x2938b2e3 tso_start -EXPORT_SYMBOL vmlinux 0x293c2e23 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0x2954b2ee proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0x2959050a scsi_host_lookup -EXPORT_SYMBOL vmlinux 0x2969bc39 nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0x2970c590 flush_icache_user_range -EXPORT_SYMBOL vmlinux 0x29856348 kernel_accept -EXPORT_SYMBOL vmlinux 0x2985e00a dev_uc_add -EXPORT_SYMBOL vmlinux 0x29aa8971 simple_write_begin -EXPORT_SYMBOL vmlinux 0x29c714a6 dm_unregister_target -EXPORT_SYMBOL vmlinux 0x29cbd876 end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0x29db62d0 mem_cgroup_end_page_stat -EXPORT_SYMBOL vmlinux 0x29dea469 __ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x29edd8c3 rtas_online_cpus_mask -EXPORT_SYMBOL vmlinux 0x2a1f9a40 inet6_protos -EXPORT_SYMBOL vmlinux 0x2a2517d0 sget -EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2a4de471 udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0x2a4e0714 cfb_fillrect -EXPORT_SYMBOL vmlinux 0x2a5426d7 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0x2a604c6e fget -EXPORT_SYMBOL vmlinux 0x2a62e1f7 dev_alert -EXPORT_SYMBOL vmlinux 0x2a663af3 mark_info_dirty -EXPORT_SYMBOL vmlinux 0x2a6d8e6e migrate_page -EXPORT_SYMBOL vmlinux 0x2a7a6f1a kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x2a841b85 bdi_init -EXPORT_SYMBOL vmlinux 0x2a87f6ff vfs_rmdir -EXPORT_SYMBOL vmlinux 0x2a8be08c tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0x2aab858d dev_printk_emit -EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy -EXPORT_SYMBOL vmlinux 0x2aaeb1ca ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0x2ab87344 blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0x2ac09dd5 __nla_put -EXPORT_SYMBOL vmlinux 0x2ac37222 nvm_generic_to_addr_mode -EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat -EXPORT_SYMBOL vmlinux 0x2ad9695e blk_queue_invalidate_tags -EXPORT_SYMBOL vmlinux 0x2add1ea4 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x2b10fe8f sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x2b115a00 dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 -EXPORT_SYMBOL vmlinux 0x2b31ed09 max8925_reg_write -EXPORT_SYMBOL vmlinux 0x2b3c5e94 srp_reconnect_rport -EXPORT_SYMBOL vmlinux 0x2b40ad68 scsi_cmd_blk_ioctl -EXPORT_SYMBOL vmlinux 0x2b40c968 inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0x2b4991ec xmon -EXPORT_SYMBOL vmlinux 0x2b60c708 blk_end_request_cur -EXPORT_SYMBOL vmlinux 0x2b6c00f0 dst_alloc -EXPORT_SYMBOL vmlinux 0x2b763c68 mpage_readpage -EXPORT_SYMBOL vmlinux 0x2b8560d3 vio_unregister_device -EXPORT_SYMBOL vmlinux 0x2b99a195 dquot_transfer -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency -EXPORT_SYMBOL vmlinux 0x2bc5f537 check_disk_size_change -EXPORT_SYMBOL vmlinux 0x2bcf385e pcie_get_readrq -EXPORT_SYMBOL vmlinux 0x2be19cd1 dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0x2c056011 mb_cache_shrink -EXPORT_SYMBOL vmlinux 0x2c1cfb75 phy_set_max_speed -EXPORT_SYMBOL vmlinux 0x2c248d0b rt6_lookup -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c56504b skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0x2c77fd20 tcp_release_cb -EXPORT_SYMBOL vmlinux 0x2c7b1fca down_timeout -EXPORT_SYMBOL vmlinux 0x2c8890be __skb_gso_segment -EXPORT_SYMBOL vmlinux 0x2c8a751f pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0x2cb26c75 ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0x2cee3694 blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0x2cf25508 simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x2cf45a73 do_splice_from -EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d26c680 __d_drop -EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d35b75f trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x2d41c445 __quota_error -EXPORT_SYMBOL vmlinux 0x2d56dcbf cpufreq_power_cooling_register -EXPORT_SYMBOL vmlinux 0x2d5b0247 of_device_is_available -EXPORT_SYMBOL vmlinux 0x2d8b9cf6 dev_change_carrier -EXPORT_SYMBOL vmlinux 0x2db1e0c6 dql_init -EXPORT_SYMBOL vmlinux 0x2db4da5a vfs_iter_write -EXPORT_SYMBOL vmlinux 0x2dd97201 fbcon_set_rotate -EXPORT_SYMBOL vmlinux 0x2df29b5e mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0x2df56e5a get_tz_trend -EXPORT_SYMBOL vmlinux 0x2dfd8a18 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0x2e097ccf __cleancache_put_page -EXPORT_SYMBOL vmlinux 0x2e0d2f7f queue_work_on -EXPORT_SYMBOL vmlinux 0x2e12a93b ibmebus_request_irq -EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat -EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies -EXPORT_SYMBOL vmlinux 0x2e44bb90 mmc_can_erase -EXPORT_SYMBOL vmlinux 0x2e4c805e input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x2e593a27 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0x2e59533e of_platform_device_create -EXPORT_SYMBOL vmlinux 0x2e5988b0 mount_bdev -EXPORT_SYMBOL vmlinux 0x2e6027ab wake_up_process -EXPORT_SYMBOL vmlinux 0x2e62ab29 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x2e94cf4b mark_page_accessed -EXPORT_SYMBOL vmlinux 0x2e956d81 devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x2e993b24 __block_write_begin -EXPORT_SYMBOL vmlinux 0x2ec483f1 mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0x2ed2fa2c remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0x2ed6673a framebuffer_release -EXPORT_SYMBOL vmlinux 0x2edc52e1 mfd_add_devices -EXPORT_SYMBOL vmlinux 0x2ee7756d iter_file_splice_write -EXPORT_SYMBOL vmlinux 0x2ef06736 trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource -EXPORT_SYMBOL vmlinux 0x2f15660f tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x2f1c09e6 pci_dev_driver -EXPORT_SYMBOL vmlinux 0x2f287f0d copy_to_user -EXPORT_SYMBOL vmlinux 0x2f2ba495 dm_put_device -EXPORT_SYMBOL vmlinux 0x2f37816a dentry_path_raw -EXPORT_SYMBOL vmlinux 0x2f7f8d4d input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0x2f849fc3 param_get_charp -EXPORT_SYMBOL vmlinux 0x2fa0c106 neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0x2fa8398e dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x2fae96de rtas_data_buf_lock -EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2fef2480 sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0x300112ae thaw_super -EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command -EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0x30523478 skb_put -EXPORT_SYMBOL vmlinux 0x30579590 dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x3063ae2c nf_log_register -EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable -EXPORT_SYMBOL vmlinux 0x308d872a inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x3098fd74 elv_register_queue -EXPORT_SYMBOL vmlinux 0x30a2b368 of_graph_get_remote_port_parent -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30b8b35c cpu_to_chip_id -EXPORT_SYMBOL vmlinux 0x30c0e569 input_event -EXPORT_SYMBOL vmlinux 0x30c492ff udp6_csum_init -EXPORT_SYMBOL vmlinux 0x30df47e5 flush_dcache_page -EXPORT_SYMBOL vmlinux 0x30ec3aec xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x310f02ec memremap -EXPORT_SYMBOL vmlinux 0x313bbc59 dm_kobject_release -EXPORT_SYMBOL vmlinux 0x31432c11 compat_ip_getsockopt -EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present -EXPORT_SYMBOL vmlinux 0x3147857d default_red -EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear -EXPORT_SYMBOL vmlinux 0x31847493 mpage_readpages -EXPORT_SYMBOL vmlinux 0x319995e0 i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0x319a9a1b ps2_drain -EXPORT_SYMBOL vmlinux 0x319f4dce paca -EXPORT_SYMBOL vmlinux 0x31ac1e8d fget_raw -EXPORT_SYMBOL vmlinux 0x31b7eabc dump_truncate -EXPORT_SYMBOL vmlinux 0x31c3107b devfreq_interval_update -EXPORT_SYMBOL vmlinux 0x31cc1dfe blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0x31cd995b store_fp_state -EXPORT_SYMBOL vmlinux 0x31d3a542 pci_claim_resource -EXPORT_SYMBOL vmlinux 0x31eefe32 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0x31f34a57 __page_cache_alloc -EXPORT_SYMBOL vmlinux 0x31f37ec2 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0x31fcdd70 netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0x320f6fd7 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0x3214b46d __netlink_dump_start -EXPORT_SYMBOL vmlinux 0x321dc4e1 phy_attach_direct -EXPORT_SYMBOL vmlinux 0x321e8fc7 iov_iter_init -EXPORT_SYMBOL vmlinux 0x32239e9b mmc_align_data_size -EXPORT_SYMBOL vmlinux 0x322a72eb tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0x324b1272 scsi_init_io -EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src -EXPORT_SYMBOL vmlinux 0x325dd60f input_register_handler -EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x32f6f06f would_dump -EXPORT_SYMBOL vmlinux 0x331adf5e tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x331ce585 tty_free_termios -EXPORT_SYMBOL vmlinux 0x333cb37c __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0x3347b6d9 fb_show_logo -EXPORT_SYMBOL vmlinux 0x33552ce0 zero_fill_bio -EXPORT_SYMBOL vmlinux 0x3375bf48 generic_file_read_iter -EXPORT_SYMBOL vmlinux 0x3376e0fa phy_drivers_register -EXPORT_SYMBOL vmlinux 0x33858a42 __ip_select_ident -EXPORT_SYMBOL vmlinux 0x338f27f1 pci_unmap_rom -EXPORT_SYMBOL vmlinux 0x339343fe xfrm_register_km -EXPORT_SYMBOL vmlinux 0x3397e88a reservation_object_reserve_shared -EXPORT_SYMBOL vmlinux 0x33a4d284 dev_addr_flush -EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page -EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x33dbee91 locks_mandatory_area -EXPORT_SYMBOL vmlinux 0x33dcffc9 user_path_at_empty -EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r -EXPORT_SYMBOL vmlinux 0x33ff7e5c f_setown -EXPORT_SYMBOL vmlinux 0x3419bc7b read_cache_pages -EXPORT_SYMBOL vmlinux 0x34231519 inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x343f3cf4 dma_pool_create -EXPORT_SYMBOL vmlinux 0x34547d72 nvm_dev_dma_free -EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin -EXPORT_SYMBOL vmlinux 0x346b2499 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x347013de nla_validate -EXPORT_SYMBOL vmlinux 0x3474b053 icmpv6_send -EXPORT_SYMBOL vmlinux 0x34841422 napi_gro_flush -EXPORT_SYMBOL vmlinux 0x349c198f always_delete_dentry -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34a97b47 __wait_on_buffer -EXPORT_SYMBOL vmlinux 0x34c0646b dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0x34c16eca agp3_generic_tlbflush -EXPORT_SYMBOL vmlinux 0x34cb19fe blk_sync_queue -EXPORT_SYMBOL vmlinux 0x34ddb0e4 sk_free -EXPORT_SYMBOL vmlinux 0x34e15f4e tty_do_resize -EXPORT_SYMBOL vmlinux 0x34f04a84 input_inject_event -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x34ff1e40 __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0x350c9cf8 security_path_mkdir -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy -EXPORT_SYMBOL vmlinux 0x3541ca29 simple_setattr -EXPORT_SYMBOL vmlinux 0x35583ca5 key_alloc -EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x3567fd22 mmc_free_host -EXPORT_SYMBOL vmlinux 0x358de5ae ppp_dev_name -EXPORT_SYMBOL vmlinux 0x359e97c4 blk_init_tags -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35b20df1 devm_memunmap -EXPORT_SYMBOL vmlinux 0x35c32767 xor_altivec_2 -EXPORT_SYMBOL vmlinux 0x35e09980 flex_array_put -EXPORT_SYMBOL vmlinux 0x35f35858 input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0x360c9c90 genphy_config_init -EXPORT_SYMBOL vmlinux 0x360d395a of_find_node_by_name -EXPORT_SYMBOL vmlinux 0x3618cb2d ida_destroy -EXPORT_SYMBOL vmlinux 0x362b27ae dquot_quota_sync -EXPORT_SYMBOL vmlinux 0x364cd2ea dev_get_by_name -EXPORT_SYMBOL vmlinux 0x365bea3d udp_prot -EXPORT_SYMBOL vmlinux 0x365c689e phy_print_status -EXPORT_SYMBOL vmlinux 0x3668fd48 flex_array_free_parts -EXPORT_SYMBOL vmlinux 0x366f6d27 idr_destroy -EXPORT_SYMBOL vmlinux 0x367c5172 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0x3684635d pci_choose_state -EXPORT_SYMBOL vmlinux 0x369c7298 dump_align -EXPORT_SYMBOL vmlinux 0x369e1115 kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0x36b0e732 try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc -EXPORT_SYMBOL vmlinux 0x36ca2b0a qdisc_destroy -EXPORT_SYMBOL vmlinux 0x36f04298 eth_header -EXPORT_SYMBOL vmlinux 0x371d2130 check_legacy_ioport -EXPORT_SYMBOL vmlinux 0x372b85e1 do_SAK -EXPORT_SYMBOL vmlinux 0x37344510 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x37383edd rtas_get_power_level -EXPORT_SYMBOL vmlinux 0x3741658c crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x374bb89f xfrm_unregister_mode -EXPORT_SYMBOL vmlinux 0x379d005c devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x37b28bf5 blk_queue_make_request -EXPORT_SYMBOL vmlinux 0x37b44f66 of_mm_gpiochip_add -EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info -EXPORT_SYMBOL vmlinux 0x37be07eb devm_gpiod_get_array -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37c6d124 of_get_child_by_name -EXPORT_SYMBOL vmlinux 0x37d9e047 module_put -EXPORT_SYMBOL vmlinux 0x37f59c63 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0x3816a018 inet_accept -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x382792c7 blk_get_request -EXPORT_SYMBOL vmlinux 0x382d5aa9 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0x383647c0 truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list -EXPORT_SYMBOL vmlinux 0x38a780d8 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38aefe2b lwtunnel_cmp_encap -EXPORT_SYMBOL vmlinux 0x38b825d1 idr_replace -EXPORT_SYMBOL vmlinux 0x38d3e8ef bioset_free -EXPORT_SYMBOL vmlinux 0x38fb9933 tty_std_termios -EXPORT_SYMBOL vmlinux 0x390205ca xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x39049f7f jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0x3911c3f6 mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x3916646a xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x391b67dd put_page -EXPORT_SYMBOL vmlinux 0x391f399a unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x392ed43e default_llseek -EXPORT_SYMBOL vmlinux 0x39336926 __vfs_write -EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x393d4de9 crc32_le -EXPORT_SYMBOL vmlinux 0x3943dbef sock_no_accept -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x3946ef20 __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x39476616 param_set_byte -EXPORT_SYMBOL vmlinux 0x39543f1b devm_gpiod_get_index -EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x39729405 blk_integrity_merge_bio -EXPORT_SYMBOL vmlinux 0x397b4822 dquot_release -EXPORT_SYMBOL vmlinux 0x3995fc62 padata_add_cpu -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39bb243c init_task -EXPORT_SYMBOL vmlinux 0x39bc2330 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0x39cdf63c wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0x39e4c884 pci_map_rom -EXPORT_SYMBOL vmlinux 0x3a060ea3 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0x3a066ce9 tcp_md5_hash_header -EXPORT_SYMBOL vmlinux 0x3a0d3ef9 dm_io -EXPORT_SYMBOL vmlinux 0x3a176ee0 md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0x3a1c7a9d dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x3a2a9989 neigh_xmit -EXPORT_SYMBOL vmlinux 0x3a3b7b3e neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x3a776f96 sockfd_lookup -EXPORT_SYMBOL vmlinux 0x3a86042f tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x3a91a209 get_task_exe_file -EXPORT_SYMBOL vmlinux 0x3a971903 mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region -EXPORT_SYMBOL vmlinux 0x3aa5327d scsi_report_opcode -EXPORT_SYMBOL vmlinux 0x3aba2ead dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x3ac3f411 key_payload_reserve -EXPORT_SYMBOL vmlinux 0x3acb0d42 kill_litter_super -EXPORT_SYMBOL vmlinux 0x3af35d5d end_page_writeback -EXPORT_SYMBOL vmlinux 0x3af932d7 inet_listen -EXPORT_SYMBOL vmlinux 0x3afd99b5 ping_prot -EXPORT_SYMBOL vmlinux 0x3afdeee5 max8925_reg_read -EXPORT_SYMBOL vmlinux 0x3b328c78 __tcf_hash_release -EXPORT_SYMBOL vmlinux 0x3b53f34c security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0x3b5c580a ppp_register_channel -EXPORT_SYMBOL vmlinux 0x3b615a21 wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b7aa2f4 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0x3b9bcb4b msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0x3b9e05f1 param_set_copystring -EXPORT_SYMBOL vmlinux 0x3badf088 dev_activate -EXPORT_SYMBOL vmlinux 0x3bb18a4a dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0x3bd0329b mmc_start_req -EXPORT_SYMBOL vmlinux 0x3bd18e3f padata_set_cpumasks -EXPORT_SYMBOL vmlinux 0x3bd77017 devm_gpiod_get_array_optional -EXPORT_SYMBOL vmlinux 0x3bf707b2 generic_writepages -EXPORT_SYMBOL vmlinux 0x3bfe6593 __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0x3c02f85d vm_insert_mixed -EXPORT_SYMBOL vmlinux 0x3c0341e5 free_netdev -EXPORT_SYMBOL vmlinux 0x3c05b8e1 devm_free_irq -EXPORT_SYMBOL vmlinux 0x3c3bdfc0 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c45c338 user_revoke -EXPORT_SYMBOL vmlinux 0x3c483012 radix_tree_delete -EXPORT_SYMBOL vmlinux 0x3c4f6700 tcp_init_cgroup -EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull -EXPORT_SYMBOL vmlinux 0x3cc4b0dc lg_lock_init -EXPORT_SYMBOL vmlinux 0x3cc4ea0a inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0x3cd18b60 nd_device_register -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3ce876c4 inet_register_protosw -EXPORT_SYMBOL vmlinux 0x3cfdbfe0 inet_frag_find -EXPORT_SYMBOL vmlinux 0x3d008043 skb_clone -EXPORT_SYMBOL vmlinux 0x3d0a45e3 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0x3d0d615e con_copy_unimap -EXPORT_SYMBOL vmlinux 0x3d1b5755 bitmap_unplug -EXPORT_SYMBOL vmlinux 0x3d50237a scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0x3d7284d5 backlight_device_register -EXPORT_SYMBOL vmlinux 0x3d789e8c skb_push -EXPORT_SYMBOL vmlinux 0x3d829255 __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x3dbf36c9 sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x3dbf97dd md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3dd8fb67 netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x3ddfc05b elv_dispatch_add_tail -EXPORT_SYMBOL vmlinux 0x3de5040c param_ops_invbool -EXPORT_SYMBOL vmlinux 0x3df0e004 pnv_pci_get_gpu_dev -EXPORT_SYMBOL vmlinux 0x3df57596 __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0x3df746e0 nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e1c022b blk_queue_softirq_done -EXPORT_SYMBOL vmlinux 0x3e39531d inc_nlink -EXPORT_SYMBOL vmlinux 0x3e3a0e27 tcp_init_sock -EXPORT_SYMBOL vmlinux 0x3e3b11d9 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0x3e44a726 pci_clear_master -EXPORT_SYMBOL vmlinux 0x3e5536c7 nvm_unregister_mgr -EXPORT_SYMBOL vmlinux 0x3e692d5c of_parse_phandle -EXPORT_SYMBOL vmlinux 0x3e750909 nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource -EXPORT_SYMBOL vmlinux 0x3e910fe0 mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get -EXPORT_SYMBOL vmlinux 0x3ea9a1e8 sk_net_capable -EXPORT_SYMBOL vmlinux 0x3eafcfac __get_page_tail -EXPORT_SYMBOL vmlinux 0x3eb68a44 dmam_alloc_coherent -EXPORT_SYMBOL vmlinux 0x3f016089 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep -EXPORT_SYMBOL vmlinux 0x3f0c3924 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x3f1a71a1 take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x3f1c55cf iov_iter_kvec -EXPORT_SYMBOL vmlinux 0x3f406a3b enable_kernel_altivec -EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f53fdb8 srp_rport_put -EXPORT_SYMBOL vmlinux 0x3f6c216d __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x3f9c320c dquot_enable -EXPORT_SYMBOL vmlinux 0x3fbb7b43 jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x3fc44dec inet_del_protocol -EXPORT_SYMBOL vmlinux 0x3fc81232 vlan_uses_dev -EXPORT_SYMBOL vmlinux 0x3fd2fd53 of_get_min_tck -EXPORT_SYMBOL vmlinux 0x3fdb43ab mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight -EXPORT_SYMBOL vmlinux 0x3fe347a8 pagecache_write_end -EXPORT_SYMBOL vmlinux 0x3fec048f sg_next -EXPORT_SYMBOL vmlinux 0x3ff8e495 lg_local_unlock_cpu -EXPORT_SYMBOL vmlinux 0x3ffb994a blkdev_fsync -EXPORT_SYMBOL vmlinux 0x40175761 blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0x401c406f security_inode_readlink -EXPORT_SYMBOL vmlinux 0x4022c3a5 set_user_nice -EXPORT_SYMBOL vmlinux 0x402b8281 __request_module -EXPORT_SYMBOL vmlinux 0x403c3637 update_region -EXPORT_SYMBOL vmlinux 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds -EXPORT_SYMBOL vmlinux 0x4061f448 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40b9dcba fs_bio_set -EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0x40c12656 pci_match_id -EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d329ee mutex_unlock -EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40dab3b1 devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0x4111a8a5 iov_iter_zero -EXPORT_SYMBOL vmlinux 0x411a103c skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x4127734a xfrm_prepare_input -EXPORT_SYMBOL vmlinux 0x412eca86 vme_dma_request -EXPORT_SYMBOL vmlinux 0x4137dd63 of_node_put -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x4150f716 set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x4159c38f ioremap_wc -EXPORT_SYMBOL vmlinux 0x415b22de blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x41a3fbf1 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x41baf194 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0x41c9dad8 pci_scan_slot -EXPORT_SYMBOL vmlinux 0x41cfdd8e cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0x41e35388 netdev_notice -EXPORT_SYMBOL vmlinux 0x41e50a2a shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x41e6d186 inet6_register_protosw -EXPORT_SYMBOL vmlinux 0x41ed465e bdi_register_dev -EXPORT_SYMBOL vmlinux 0x41f351ac serio_reconnect -EXPORT_SYMBOL vmlinux 0x42026b2a dev_close -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x4216ed3e pcie_set_mps -EXPORT_SYMBOL vmlinux 0x4219de30 km_query -EXPORT_SYMBOL vmlinux 0x421e88c1 genphy_resume -EXPORT_SYMBOL vmlinux 0x422100fb devm_request_resource -EXPORT_SYMBOL vmlinux 0x42351e5d pci_set_mwi -EXPORT_SYMBOL vmlinux 0x42388e60 mmc_set_blockcount -EXPORT_SYMBOL vmlinux 0x42399549 phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0x424611b0 __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x4254123a send_sig_info -EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force -EXPORT_SYMBOL vmlinux 0x426adcf2 inode_set_flags -EXPORT_SYMBOL vmlinux 0x42770721 compat_tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x4296f256 nd_namespace_blk_validate -EXPORT_SYMBOL vmlinux 0x429fff61 tty_mutex -EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x42b648b4 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0x42ce4acf vme_dma_list_add -EXPORT_SYMBOL vmlinux 0x42dcb0ea blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0x42eab5d5 of_create_pci_dev -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x4361d983 xfrm_state_update -EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 -EXPORT_SYMBOL vmlinux 0x437dfa3e scsi_host_alloc -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x439e7dea dentry_unhash -EXPORT_SYMBOL vmlinux 0x43a01f90 complete_all -EXPORT_SYMBOL vmlinux 0x43a78649 gen_pool_add_virt -EXPORT_SYMBOL vmlinux 0x43b43890 abx500_get_register_interruptible -EXPORT_SYMBOL vmlinux 0x43c715a8 jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x43e6a10b rtnl_notify -EXPORT_SYMBOL vmlinux 0x43ea9722 flush_old_exec -EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x4408f848 scsi_device_resume -EXPORT_SYMBOL vmlinux 0x4410b223 xfrm_state_insert -EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed -EXPORT_SYMBOL vmlinux 0x44192051 bdi_setup_and_register -EXPORT_SYMBOL vmlinux 0x4425ca16 i2c_get_adapter -EXPORT_SYMBOL vmlinux 0x443f6308 skb_clone_sk -EXPORT_SYMBOL vmlinux 0x4451fab8 inode_change_ok -EXPORT_SYMBOL vmlinux 0x446cb03a blk_mq_start_request -EXPORT_SYMBOL vmlinux 0x4478afd9 blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0x447a91f9 xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x448eac3e kmemdup -EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x44b3f977 vme_register_bridge -EXPORT_SYMBOL vmlinux 0x44e8dcfc single_open -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44eb192e wait_for_completion -EXPORT_SYMBOL vmlinux 0x44f430e3 bio_integrity_trim -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x454e06f1 dquot_scan_active -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x45a55ec8 __iounmap -EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource -EXPORT_SYMBOL vmlinux 0x45dabb12 phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0x45f65d34 __secpath_destroy -EXPORT_SYMBOL vmlinux 0x4612c59d down_trylock -EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x461ebfa0 __copy_tofrom_user -EXPORT_SYMBOL vmlinux 0x463e47f7 pci_disable_msix -EXPORT_SYMBOL vmlinux 0x4647fd82 block_read_full_page -EXPORT_SYMBOL vmlinux 0x464fa292 fifo_set_limit -EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0x465f61b1 starget_for_each_device -EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set -EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x466c3b6a inode_init_owner -EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0x46849baf md_register_thread -EXPORT_SYMBOL vmlinux 0x46a0170e flex_array_get_ptr -EXPORT_SYMBOL vmlinux 0x46afa5f1 address_space_init_once -EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance -EXPORT_SYMBOL vmlinux 0x46ca634c open_exec -EXPORT_SYMBOL vmlinux 0x46d12956 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg -EXPORT_SYMBOL vmlinux 0x4727a033 inet_del_offload -EXPORT_SYMBOL vmlinux 0x472b8c06 put_filp -EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x474462cc __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x47608718 fence_init -EXPORT_SYMBOL vmlinux 0x4760f804 ppp_input_error -EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit -EXPORT_SYMBOL vmlinux 0x47ad52aa kernel_getsockname -EXPORT_SYMBOL vmlinux 0x47d20564 sync_filesystem -EXPORT_SYMBOL vmlinux 0x47d75a42 inode_init_once -EXPORT_SYMBOL vmlinux 0x47de5500 vme_bus_num -EXPORT_SYMBOL vmlinux 0x480a85f9 swiotlb_dma_mapping_error -EXPORT_SYMBOL vmlinux 0x4829a47e memcpy -EXPORT_SYMBOL vmlinux 0x482d3f0c clear_nlink -EXPORT_SYMBOL vmlinux 0x483f42a5 may_umount_tree -EXPORT_SYMBOL vmlinux 0x48404b9a remove_wait_queue -EXPORT_SYMBOL vmlinux 0x4841bdee strnchr -EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days -EXPORT_SYMBOL vmlinux 0x486381ab register_framebuffer -EXPORT_SYMBOL vmlinux 0x486cb4ca d_walk -EXPORT_SYMBOL vmlinux 0x486ef179 tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0x48820a7c tcf_hash_cleanup -EXPORT_SYMBOL vmlinux 0x48b0792d dmam_free_coherent -EXPORT_SYMBOL vmlinux 0x48b77230 scsi_remove_host -EXPORT_SYMBOL vmlinux 0x48b8324c of_get_parent -EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48cf518b mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x48ded432 pci_get_device -EXPORT_SYMBOL vmlinux 0x48e8ecac tty_unregister_device -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x49046c52 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0x490f57cf netif_device_detach -EXPORT_SYMBOL vmlinux 0x4916064c __module_put_and_exit -EXPORT_SYMBOL vmlinux 0x49299a37 security_path_symlink -EXPORT_SYMBOL vmlinux 0x4935353e sock_create -EXPORT_SYMBOL vmlinux 0x493c27ff sock_kmalloc -EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init -EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data -EXPORT_SYMBOL vmlinux 0x4973b8dc dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x4978fada skb_queue_tail -EXPORT_SYMBOL vmlinux 0x497b4079 simple_fill_super -EXPORT_SYMBOL vmlinux 0x499bfc6d __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x49a7ee46 jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x49b249ef get_mm_exe_file -EXPORT_SYMBOL vmlinux 0x49b6d410 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0x49f63bd9 twl6040_set_pll -EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many -EXPORT_SYMBOL vmlinux 0x4a0781c6 ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x4a2f5d4e inet6_ioctl -EXPORT_SYMBOL vmlinux 0x4a32fdfc inet_release -EXPORT_SYMBOL vmlinux 0x4a3df895 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x4a655118 blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x4a811443 phy_ethtool_sset -EXPORT_SYMBOL vmlinux 0x4a8961f5 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x4a9ecdfb ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x4aa466ae i8042_install_filter -EXPORT_SYMBOL vmlinux 0x4aa4a126 down_write -EXPORT_SYMBOL vmlinux 0x4ab1da01 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk -EXPORT_SYMBOL vmlinux 0x4ac09296 replace_mount_options -EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource -EXPORT_SYMBOL vmlinux 0x4ad2a57a opal_event_request -EXPORT_SYMBOL vmlinux 0x4ae038cc giveup_altivec -EXPORT_SYMBOL vmlinux 0x4aebc90c phy_connect_direct -EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize -EXPORT_SYMBOL vmlinux 0x4b040934 ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure -EXPORT_SYMBOL vmlinux 0x4b0adb35 of_phy_register_fixed_link -EXPORT_SYMBOL vmlinux 0x4b117c52 jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0x4b2667e4 param_set_uint -EXPORT_SYMBOL vmlinux 0x4b3315be deactivate_locked_super -EXPORT_SYMBOL vmlinux 0x4b4d6e3e neigh_destroy -EXPORT_SYMBOL vmlinux 0x4b52febf block_write_begin -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b74a106 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0x4b8326ff ida_remove -EXPORT_SYMBOL vmlinux 0x4b900928 bio_chain -EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get -EXPORT_SYMBOL vmlinux 0x4bc4c556 devm_ioremap_nocache -EXPORT_SYMBOL vmlinux 0x4bc65cc5 mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0x4bc7323c peernet2id_alloc -EXPORT_SYMBOL vmlinux 0x4bc8a0ca udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x4beca824 mfd_remove_devices -EXPORT_SYMBOL vmlinux 0x4bed99b3 __percpu_counter_add -EXPORT_SYMBOL vmlinux 0x4c0d822e generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x4c11435a _raw_read_lock_bh -EXPORT_SYMBOL vmlinux 0x4c197cda security_file_permission -EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf -EXPORT_SYMBOL vmlinux 0x4c6cd230 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0x4c70e6b6 tcp_make_synack -EXPORT_SYMBOL vmlinux 0x4c8349f2 netif_device_attach -EXPORT_SYMBOL vmlinux 0x4c9eedaa generic_show_options -EXPORT_SYMBOL vmlinux 0x4ca9669f scnprintf -EXPORT_SYMBOL vmlinux 0x4cd0f66d __scm_destroy -EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval -EXPORT_SYMBOL vmlinux 0x4cf9089b skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0x4d28232b ptp_find_pin -EXPORT_SYMBOL vmlinux 0x4d2dde2d of_io_request_and_map -EXPORT_SYMBOL vmlinux 0x4d4ef150 mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0x4d645d57 inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0x4d67f15b padata_unregister_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x4d791953 mempool_resize -EXPORT_SYMBOL vmlinux 0x4d80c946 d_lookup -EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4d9bc53d mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x4debf617 ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e593e39 blk_queue_init_tags -EXPORT_SYMBOL vmlinux 0x4e605c90 scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6afecc twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e75ca33 blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0x4e7c368b tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x4e9dffb5 ip_fast_csum -EXPORT_SYMBOL vmlinux 0x4ea3763e inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x4eae8a5a netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0x4eb5d40f tcp_gro_complete -EXPORT_SYMBOL vmlinux 0x4ebef19d __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x4ecad34c mmc_can_sanitize -EXPORT_SYMBOL vmlinux 0x4ed0c725 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x4ef1c92a ipv6_push_nfrag_opts -EXPORT_SYMBOL vmlinux 0x4f09b9e3 unregister_binfmt -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f33cfdd kernel_read -EXPORT_SYMBOL vmlinux 0x4f34a3c7 blk_queue_split -EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse -EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command -EXPORT_SYMBOL vmlinux 0x4f4c8e41 uart_resume_port -EXPORT_SYMBOL vmlinux 0x4f507846 vfs_setpos -EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday -EXPORT_SYMBOL vmlinux 0x4f6bc523 dev_deactivate -EXPORT_SYMBOL vmlinux 0x4f77eea0 lwtunnel_input -EXPORT_SYMBOL vmlinux 0x4f79dd6e nla_reserve -EXPORT_SYMBOL vmlinux 0x4f8c8e62 scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0x4f9204ef d_move -EXPORT_SYMBOL vmlinux 0x4fa8a511 pnv_pci_get_npu_dev -EXPORT_SYMBOL vmlinux 0x4fd75d40 skb_split -EXPORT_SYMBOL vmlinux 0x4fda3ed5 __alloc_pages_nodemask -EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command -EXPORT_SYMBOL vmlinux 0x4fe8cd25 simple_follow_link -EXPORT_SYMBOL vmlinux 0x4ff6ef69 twl6040_power -EXPORT_SYMBOL vmlinux 0x4ffb1324 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x50068895 of_count_phandle_with_args -EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security -EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x507d9bad abx500_event_registers_startup_state_get -EXPORT_SYMBOL vmlinux 0x50886f69 mount_pseudo -EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch -EXPORT_SYMBOL vmlinux 0x50ae0999 buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0x50ba769a kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0x50c01ac6 __cleancache_get_page -EXPORT_SYMBOL vmlinux 0x50cac0f4 simple_getattr -EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x50eccd50 mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0x50eefb28 init_special_inode -EXPORT_SYMBOL vmlinux 0x511213f3 blk_mq_map_queue -EXPORT_SYMBOL vmlinux 0x51164ad9 cmdline_parts_set -EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0x513dcf6d vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0x5142d855 xfrm6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x516a3fc7 dev_crit -EXPORT_SYMBOL vmlinux 0x517fa2ba netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x518889e8 mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0x519b0da3 finish_wait -EXPORT_SYMBOL vmlinux 0x519dbcb3 account_page_redirty -EXPORT_SYMBOL vmlinux 0x519ee511 seq_vprintf -EXPORT_SYMBOL vmlinux 0x51c375cd iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0x51fee5e1 param_get_uint -EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str -EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0x5262d628 rwsem_downgrade_wake -EXPORT_SYMBOL vmlinux 0x526d01a5 current_in_userns -EXPORT_SYMBOL vmlinux 0x5275132c ps2_command -EXPORT_SYMBOL vmlinux 0x52896c79 kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0x528c77ed swiotlb_map_sg_attrs -EXPORT_SYMBOL vmlinux 0x52938daf __dquot_transfer -EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x52a0a720 fsnotify_get_group -EXPORT_SYMBOL vmlinux 0x52a8fddf __genl_register_family -EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x53147908 page_waitqueue -EXPORT_SYMBOL vmlinux 0x531a2eec ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0x536cc847 memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0x5377e556 hex2bin -EXPORT_SYMBOL vmlinux 0x538a683e tty_port_close -EXPORT_SYMBOL vmlinux 0x538e611f of_n_size_cells -EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x53a18847 pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0x53b49102 param_get_invbool -EXPORT_SYMBOL vmlinux 0x53b56435 __scsi_alloc_queue -EXPORT_SYMBOL vmlinux 0x53d9579c ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0x53da3ff9 current_fs_time -EXPORT_SYMBOL vmlinux 0x53ebab1b _outsl_ns -EXPORT_SYMBOL vmlinux 0x53f154d3 ___pskb_trim -EXPORT_SYMBOL vmlinux 0x54007173 inet_add_protocol -EXPORT_SYMBOL vmlinux 0x540163e7 __scm_send -EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x54115c8e qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0x5412c7c7 up -EXPORT_SYMBOL vmlinux 0x5419a375 tcp_child_process -EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x546d9b4d vfs_rename -EXPORT_SYMBOL vmlinux 0x54951882 vme_dma_list_free -EXPORT_SYMBOL vmlinux 0x54960751 agp_generic_alloc_pages -EXPORT_SYMBOL vmlinux 0x5497ae70 __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0x549b2586 sk_prot_clear_portaddr_nulls -EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul -EXPORT_SYMBOL vmlinux 0x54bea1d3 serio_bus -EXPORT_SYMBOL vmlinux 0x54c20db7 register_quota_format -EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54f16504 blk_requeue_request -EXPORT_SYMBOL vmlinux 0x54fcac03 pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x552f674a pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu -EXPORT_SYMBOL vmlinux 0x554b1c43 phy_attach -EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat -EXPORT_SYMBOL vmlinux 0x5568c553 complete -EXPORT_SYMBOL vmlinux 0x556f36c3 add_disk -EXPORT_SYMBOL vmlinux 0x5577ef9e udp_table -EXPORT_SYMBOL vmlinux 0x55a05794 pnv_cxl_alloc_hwirq_ranges -EXPORT_SYMBOL vmlinux 0x55c04692 blk_queue_end_tag -EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x55f5019b __kmalloc_node -EXPORT_SYMBOL vmlinux 0x55f5dc9f block_invalidatepage -EXPORT_SYMBOL vmlinux 0x560eb2d6 agp_bridge -EXPORT_SYMBOL vmlinux 0x5620d186 devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x567633f0 nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x5679c69c migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0x56805ded udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x568e3054 __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames -EXPORT_SYMBOL vmlinux 0x5692b6ad blk_run_queue_async -EXPORT_SYMBOL vmlinux 0x56c2b95b rtas_progress -EXPORT_SYMBOL vmlinux 0x56c2cae4 fd_install -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56eb174e ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0x56f6c7de lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x5711e6da clear_user_page -EXPORT_SYMBOL vmlinux 0x5713d743 single_release -EXPORT_SYMBOL vmlinux 0x572647d6 get_mce_fault_addr -EXPORT_SYMBOL vmlinux 0x57285952 inet_stream_connect -EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt -EXPORT_SYMBOL vmlinux 0x57431520 md_unregister_thread -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x5754aea1 seq_path -EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x576ed525 proto_unregister -EXPORT_SYMBOL vmlinux 0x577d35f3 hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x5788682f bio_copy_kern -EXPORT_SYMBOL vmlinux 0x5791118a phy_init_eee -EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy -EXPORT_SYMBOL vmlinux 0x57a7f4cf sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0x57b60eab blk_get_queue -EXPORT_SYMBOL vmlinux 0x57bfe00b proc_set_size -EXPORT_SYMBOL vmlinux 0x57caec29 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x57cf7195 textsearch_register -EXPORT_SYMBOL vmlinux 0x580dd0da tty_schedule_flip -EXPORT_SYMBOL vmlinux 0x58106c96 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0x5814c304 check_disk_change -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x5834b17a sync_blockdev -EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x5844b099 nvm_register -EXPORT_SYMBOL vmlinux 0x5856da8d nf_reinject -EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep -EXPORT_SYMBOL vmlinux 0x585fe305 path_get -EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat -EXPORT_SYMBOL vmlinux 0x58769269 nf_log_unset -EXPORT_SYMBOL vmlinux 0x588c22de start_tty -EXPORT_SYMBOL vmlinux 0x58a683d1 __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x58aa64ef tty_hung_up_p -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58e7bd59 end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0x590d970e ip_ct_attach -EXPORT_SYMBOL vmlinux 0x59467126 dev_get_stats -EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map -EXPORT_SYMBOL vmlinux 0x595d0946 empty_zero_page -EXPORT_SYMBOL vmlinux 0x59695dc2 skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x598ef3a3 thermal_cdev_update -EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release -EXPORT_SYMBOL vmlinux 0x59b3378a completion_done -EXPORT_SYMBOL vmlinux 0x59ce97b7 uart_register_driver -EXPORT_SYMBOL vmlinux 0x59f435ec ip6_frag_match -EXPORT_SYMBOL vmlinux 0x5a025f7b arch_local_irq_restore -EXPORT_SYMBOL vmlinux 0x5a0aaa12 proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a0d0134 netlink_set_err -EXPORT_SYMBOL vmlinux 0x5a1d1b92 sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0x5a23a9fd dquot_commit_info -EXPORT_SYMBOL vmlinux 0x5a37d89d generic_write_end -EXPORT_SYMBOL vmlinux 0x5a57e51a __dev_get_by_name -EXPORT_SYMBOL vmlinux 0x5a6749d1 dev_mc_del -EXPORT_SYMBOL vmlinux 0x5a8ed928 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x5a921311 strncmp -EXPORT_SYMBOL vmlinux 0x5a98b61d ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove -EXPORT_SYMBOL vmlinux 0x5ae29bda dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0x5af21f62 machine_id -EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get -EXPORT_SYMBOL vmlinux 0x5b0fcd3d iommu_tbl_range_alloc -EXPORT_SYMBOL vmlinux 0x5b148b4a rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x5b1ed4b7 del_gendisk -EXPORT_SYMBOL vmlinux 0x5b28a825 fasync_helper -EXPORT_SYMBOL vmlinux 0x5b3421de neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0x5b41276b iov_iter_npages -EXPORT_SYMBOL vmlinux 0x5b43f1f1 rtas_service_present -EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap -EXPORT_SYMBOL vmlinux 0x5b676831 udp_poll -EXPORT_SYMBOL vmlinux 0x5b7b95ec scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0x5b9828c5 dma_spin_lock -EXPORT_SYMBOL vmlinux 0x5bab1f41 simple_transaction_get -EXPORT_SYMBOL vmlinux 0x5bc10524 printk_emit -EXPORT_SYMBOL vmlinux 0x5bcac8f0 is_bad_inode -EXPORT_SYMBOL vmlinux 0x5be5f1c3 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x5bf03e86 __frontswap_test -EXPORT_SYMBOL vmlinux 0x5bf2b8b3 dma_direct_ops -EXPORT_SYMBOL vmlinux 0x5c34effc mem_cgroup_begin_page_stat -EXPORT_SYMBOL vmlinux 0x5c37f319 _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x5c91ad0c set_disk_ro -EXPORT_SYMBOL vmlinux 0x5c99ff9d vme_lm_request -EXPORT_SYMBOL vmlinux 0x5ca25a2f vme_master_mmap -EXPORT_SYMBOL vmlinux 0x5caaba7c uart_unregister_driver -EXPORT_SYMBOL vmlinux 0x5caf7120 free_page_put_link -EXPORT_SYMBOL vmlinux 0x5cb23c20 netlink_ack -EXPORT_SYMBOL vmlinux 0x5cbc29a5 unregister_cdrom -EXPORT_SYMBOL vmlinux 0x5cbd155c vm_iomap_memory -EXPORT_SYMBOL vmlinux 0x5cd8bae7 unlock_page -EXPORT_SYMBOL vmlinux 0x5cdbbd53 tcf_hash_create -EXPORT_SYMBOL vmlinux 0x5cdec882 generic_removexattr -EXPORT_SYMBOL vmlinux 0x5cf30e10 __debugger_ipi -EXPORT_SYMBOL vmlinux 0x5cf3f1a8 dev_addr_add -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5d0178ed netif_schedule_queue -EXPORT_SYMBOL vmlinux 0x5d1170e6 __inet_hash -EXPORT_SYMBOL vmlinux 0x5d234b18 tcf_destroy_chain -EXPORT_SYMBOL vmlinux 0x5d2f8a14 __nd_iostat_start -EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain -EXPORT_SYMBOL vmlinux 0x5d5b067f simple_empty -EXPORT_SYMBOL vmlinux 0x5d6dfa4d seq_file_path -EXPORT_SYMBOL vmlinux 0x5d81fa88 iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0x5d84eeb0 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x5d8e5fdd fsl_lbc_ctrl_dev -EXPORT_SYMBOL vmlinux 0x5daa11b7 of_phy_attach -EXPORT_SYMBOL vmlinux 0x5db54d8c get_fs_type -EXPORT_SYMBOL vmlinux 0x5dc41626 napi_get_frags -EXPORT_SYMBOL vmlinux 0x5de7fce6 follow_up -EXPORT_SYMBOL vmlinux 0x5de93888 have_submounts -EXPORT_SYMBOL vmlinux 0x5df0a1f0 __dquot_free_space -EXPORT_SYMBOL vmlinux 0x5df2926c kill_bdev -EXPORT_SYMBOL vmlinux 0x5dfb93c6 genl_unregister_family -EXPORT_SYMBOL vmlinux 0x5e139a27 scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x5e13eeee __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0x5e297e32 tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0x5e336987 flex_array_prealloc -EXPORT_SYMBOL vmlinux 0x5e3a8a9c __wake_up -EXPORT_SYMBOL vmlinux 0x5e5e9773 inet_addr_type -EXPORT_SYMBOL vmlinux 0x5e6ebafd skb_queue_purge -EXPORT_SYMBOL vmlinux 0x5e789a4a sg_miter_next -EXPORT_SYMBOL vmlinux 0x5e7dcf78 xfrm_find_acq -EXPORT_SYMBOL vmlinux 0x5e8155e0 csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0x5e84bc12 __ps2_command -EXPORT_SYMBOL vmlinux 0x5e8d92e8 pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0x5e8ebf6a devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ec447a8 __splice_from_pipe -EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5eddb914 lockref_put_return -EXPORT_SYMBOL vmlinux 0x5ee81c66 bioset_integrity_create -EXPORT_SYMBOL vmlinux 0x5ef1e390 generic_fillattr -EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 -EXPORT_SYMBOL vmlinux 0x5f08d7ce ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f0f8ad9 pci_add_new_bus -EXPORT_SYMBOL vmlinux 0x5f23ca7d pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0x5f4c9df9 ip_setsockopt -EXPORT_SYMBOL vmlinux 0x5f8a2728 isa_io_base -EXPORT_SYMBOL vmlinux 0x5f968761 vfs_statfs -EXPORT_SYMBOL vmlinux 0x5faecfff load_nls_default -EXPORT_SYMBOL vmlinux 0x5fd821ba phys_mem_access_prot -EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat -EXPORT_SYMBOL vmlinux 0x5fec499b tcf_em_register -EXPORT_SYMBOL vmlinux 0x5fef509c netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool -EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x600ba654 netlink_net_capable -EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x602a6d4d sk_stream_write_space -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x603ae1d4 led_blink_set_oneshot -EXPORT_SYMBOL vmlinux 0x60414b88 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number -EXPORT_SYMBOL vmlinux 0x607687fd scsi_dma_map -EXPORT_SYMBOL vmlinux 0x60806026 set_security_override -EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector -EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60b360bb is_nd_btt -EXPORT_SYMBOL vmlinux 0x60b49a47 vme_unregister_driver -EXPORT_SYMBOL vmlinux 0x60ba4507 pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0x60ba8763 input_flush_device -EXPORT_SYMBOL vmlinux 0x60c14704 d_path -EXPORT_SYMBOL vmlinux 0x60d62ceb of_get_ddr_timings -EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x61050fc1 __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x61123668 dev_addr_del -EXPORT_SYMBOL vmlinux 0x612092e3 inet6_register_icmp_sender -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x6131b894 inet_put_port -EXPORT_SYMBOL vmlinux 0x613ad04a jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0x61443507 request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x6144d434 tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x614ae25a cancel_dirty_page -EXPORT_SYMBOL vmlinux 0x614bb773 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x61888b24 of_find_all_nodes -EXPORT_SYMBOL vmlinux 0x618911fc numa_node -EXPORT_SYMBOL vmlinux 0x618c761d inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x619b9b94 kthread_stop -EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x61af48b8 trace_print_array_seq -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61c002c5 nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x61d45e70 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x61eef2c9 _insb -EXPORT_SYMBOL vmlinux 0x61ef6170 __tracepoint_fence_emit -EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x621b9735 ll_rw_block -EXPORT_SYMBOL vmlinux 0x62244ee1 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0x6225637e md5_transform -EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x62352b38 skb_append_datato_frags -EXPORT_SYMBOL vmlinux 0x624d5932 i2c_add_adapter -EXPORT_SYMBOL vmlinux 0x626125ff nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x6283a42f blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x62addf22 try_to_release_page -EXPORT_SYMBOL vmlinux 0x62ca4e02 nvm_addr_to_generic_mode -EXPORT_SYMBOL vmlinux 0x630294c3 __neigh_event_send -EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled -EXPORT_SYMBOL vmlinux 0x63396aec __debugger_break_match -EXPORT_SYMBOL vmlinux 0x638f380e dev_mc_unsync -EXPORT_SYMBOL vmlinux 0x6390f9fe dquot_operations -EXPORT_SYMBOL vmlinux 0x639a6f0c blk_start_queue -EXPORT_SYMBOL vmlinux 0x639dd6a1 stop_tty -EXPORT_SYMBOL vmlinux 0x63a07aa7 netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63e8e856 copy_to_iter -EXPORT_SYMBOL vmlinux 0x63e8f454 nf_setsockopt -EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63ec14c0 __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0x63f7291a of_match_device -EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user -EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x64133f69 netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x6415ac3b kset_unregister -EXPORT_SYMBOL vmlinux 0x64245300 mntput -EXPORT_SYMBOL vmlinux 0x642c4163 netpoll_send_skb_on_dev -EXPORT_SYMBOL vmlinux 0x642df85a to_nd_btt -EXPORT_SYMBOL vmlinux 0x64696b7b get_pci_dma_ops -EXPORT_SYMBOL vmlinux 0x6480f633 kill_pgrp -EXPORT_SYMBOL vmlinux 0x648195be poll_freewait -EXPORT_SYMBOL vmlinux 0x649668a2 vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x649d6289 pcim_iomap -EXPORT_SYMBOL vmlinux 0x64ab9629 pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x64b1140d filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0x64b48156 d_splice_alias -EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape -EXPORT_SYMBOL vmlinux 0x64c6d0d1 phy_find_first -EXPORT_SYMBOL vmlinux 0x64d1dfc9 sg_miter_stop -EXPORT_SYMBOL vmlinux 0x64da7874 neigh_seq_next -EXPORT_SYMBOL vmlinux 0x64dfc055 dquot_initialize -EXPORT_SYMBOL vmlinux 0x64e82f2c vfs_write -EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth -EXPORT_SYMBOL vmlinux 0x651a4139 test_taint -EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x65566756 nvm_dev_factory -EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem -EXPORT_SYMBOL vmlinux 0x65797c34 pci_iomap_range -EXPORT_SYMBOL vmlinux 0x658271a4 fbcon_rotate_ccw -EXPORT_SYMBOL vmlinux 0x65938255 sk_ns_capable -EXPORT_SYMBOL vmlinux 0x65bb58a2 _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x65bdeccc mmc_power_save_host -EXPORT_SYMBOL vmlinux 0x65c4e1ab nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier -EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x660a93e4 of_dev_put -EXPORT_SYMBOL vmlinux 0x661d272b tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0x662b42b3 netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x664a191e generic_setlease -EXPORT_SYMBOL vmlinux 0x664e3f89 pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0x664f7473 ps2_end_command -EXPORT_SYMBOL vmlinux 0x666bc3a1 udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0x66754be3 gen_new_estimator -EXPORT_SYMBOL vmlinux 0x6681a95a of_dev_get -EXPORT_SYMBOL vmlinux 0x66e5f0fd cont_write_begin -EXPORT_SYMBOL vmlinux 0x66eccdbf get_gendisk -EXPORT_SYMBOL vmlinux 0x66f108e2 textsearch_prepare -EXPORT_SYMBOL vmlinux 0x6704f5bb mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x6719872e netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x672bdbde of_cpufreq_power_cooling_register -EXPORT_SYMBOL vmlinux 0x673815e2 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges -EXPORT_SYMBOL vmlinux 0x6740c613 copy_page_to_iter -EXPORT_SYMBOL vmlinux 0x674bec75 skb_orphan_partial -EXPORT_SYMBOL vmlinux 0x6753e0fc tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0x675e1bca skb_dequeue -EXPORT_SYMBOL vmlinux 0x67619a12 key_invalidate -EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create -EXPORT_SYMBOL vmlinux 0x677efc8b dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0x6799b30c mdiobus_read -EXPORT_SYMBOL vmlinux 0x67a6dc68 d_alloc_pseudo -EXPORT_SYMBOL vmlinux 0x67ae2351 of_find_matching_node_and_match -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67e3e8ee key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0x6800e4f4 ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x6809519c register_shrinker -EXPORT_SYMBOL vmlinux 0x6831d2a0 ps2_sendbyte -EXPORT_SYMBOL vmlinux 0x683ba815 generic_delete_inode -EXPORT_SYMBOL vmlinux 0x68415e0f from_kprojid -EXPORT_SYMBOL vmlinux 0x6852d034 vfs_readv -EXPORT_SYMBOL vmlinux 0x685ce993 of_find_node_opts_by_path -EXPORT_SYMBOL vmlinux 0x68609857 complete_and_exit -EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x68824ac9 of_device_register -EXPORT_SYMBOL vmlinux 0x6885d744 tty_name -EXPORT_SYMBOL vmlinux 0x68909f6c register_filesystem -EXPORT_SYMBOL vmlinux 0x6897a103 xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages -EXPORT_SYMBOL vmlinux 0x68a45215 simple_write_end -EXPORT_SYMBOL vmlinux 0x68ae540e __get_user_pages -EXPORT_SYMBOL vmlinux 0x68b505a0 pci_scan_bus -EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x68d95e81 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x68ddc6a4 dev_add_offload -EXPORT_SYMBOL vmlinux 0x69107033 of_device_is_big_endian -EXPORT_SYMBOL vmlinux 0x6921d915 __brelse -EXPORT_SYMBOL vmlinux 0x693fd7fa frontswap_register_ops -EXPORT_SYMBOL vmlinux 0x696d3e18 gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x6986b383 genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x69997ee3 devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be -EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource -EXPORT_SYMBOL vmlinux 0x69a510c0 copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x69a6058a twl6040_get_pll -EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint -EXPORT_SYMBOL vmlinux 0x69b00463 sock_no_getname -EXPORT_SYMBOL vmlinux 0x69c8c754 netdev_printk -EXPORT_SYMBOL vmlinux 0x69f7a73e dquot_get_state -EXPORT_SYMBOL vmlinux 0x6a00badb generic_getxattr -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a2929c3 agp_backend_release -EXPORT_SYMBOL vmlinux 0x6a3393a3 security_dentry_init_security -EXPORT_SYMBOL vmlinux 0x6a41b8ef unlock_buffer -EXPORT_SYMBOL vmlinux 0x6a5ad7e8 agp_generic_free_by_type -EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask -EXPORT_SYMBOL vmlinux 0x6a65057b __register_chrdev -EXPORT_SYMBOL vmlinux 0x6a6dce6d vm_insert_page -EXPORT_SYMBOL vmlinux 0x6a70a4e2 abx500_startup_irq_enabled -EXPORT_SYMBOL vmlinux 0x6a7384bd bio_copy_data -EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable -EXPORT_SYMBOL vmlinux 0x6aa82db0 write_cache_pages -EXPORT_SYMBOL vmlinux 0x6ab9a1a7 wireless_spy_update -EXPORT_SYMBOL vmlinux 0x6acaaff1 bdput -EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be -EXPORT_SYMBOL vmlinux 0x6acbe929 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0x6ada40e8 ipv4_specific -EXPORT_SYMBOL vmlinux 0x6add193d of_get_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x6ae2fa2b udp_proc_unregister -EXPORT_SYMBOL vmlinux 0x6ae34fe7 file_path -EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6af47d41 __put_cred -EXPORT_SYMBOL vmlinux 0x6af75f74 sk_dst_check -EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x6b077cde security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname -EXPORT_SYMBOL vmlinux 0x6b1f4c54 of_get_address -EXPORT_SYMBOL vmlinux 0x6b20d0d9 dev_get_by_index -EXPORT_SYMBOL vmlinux 0x6b282d42 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b2ea2e5 blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0x6b575962 netdev_all_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x6b5dfe73 __debugger_bpt -EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy -EXPORT_SYMBOL vmlinux 0x6b66c889 fence_free -EXPORT_SYMBOL vmlinux 0x6b6a1d48 xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0x6b6e7ae9 d_instantiate_unique -EXPORT_SYMBOL vmlinux 0x6b7b1509 nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0x6b81ea35 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x6bbcdd68 param_ops_byte -EXPORT_SYMBOL vmlinux 0x6bc2b1e1 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x6bee0562 set_cached_acl -EXPORT_SYMBOL vmlinux 0x6bf69e0e tcp_req_err -EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer -EXPORT_SYMBOL vmlinux 0x6c0ff361 km_policy_expired -EXPORT_SYMBOL vmlinux 0x6c24e3eb ioctl_by_bdev -EXPORT_SYMBOL vmlinux 0x6c2869d9 pci_save_state -EXPORT_SYMBOL vmlinux 0x6c43b524 drop_super -EXPORT_SYMBOL vmlinux 0x6c440511 kern_path_create -EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat -EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c6a666d __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min -EXPORT_SYMBOL vmlinux 0x6c76dd18 sk_common_release -EXPORT_SYMBOL vmlinux 0x6c9b7ce5 qdisc_list_del -EXPORT_SYMBOL vmlinux 0x6ca52348 simple_pin_fs -EXPORT_SYMBOL vmlinux 0x6cbd85b7 netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x6cd611d0 sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x6cdd312b sock_no_connect -EXPORT_SYMBOL vmlinux 0x6cff280c pci_write_vpd -EXPORT_SYMBOL vmlinux 0x6d0156f1 skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x6d2049df of_find_node_with_property -EXPORT_SYMBOL vmlinux 0x6d24fcac sock_init_data -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d348595 of_phy_is_fixed_link -EXPORT_SYMBOL vmlinux 0x6d4b1343 call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0x6d6f16cb of_iomap -EXPORT_SYMBOL vmlinux 0x6d7334a9 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x6d89c384 lease_get_mtime -EXPORT_SYMBOL vmlinux 0x6da928f4 _insw_ns -EXPORT_SYMBOL vmlinux 0x6dbb923d __blk_end_request_all -EXPORT_SYMBOL vmlinux 0x6dbc6761 tcf_hash_search -EXPORT_SYMBOL vmlinux 0x6dbcc611 tcp_shutdown -EXPORT_SYMBOL vmlinux 0x6dce7528 commit_creds -EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6e035d5b swiotlb_dma_supported -EXPORT_SYMBOL vmlinux 0x6e096f2a skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0x6e0f0f63 iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x6e22beba nvm_end_io -EXPORT_SYMBOL vmlinux 0x6e31d725 unlock_rename -EXPORT_SYMBOL vmlinux 0x6e3b3485 truncate_pagecache -EXPORT_SYMBOL vmlinux 0x6e4f0f85 key_put -EXPORT_SYMBOL vmlinux 0x6e528ab3 xattr_full_name -EXPORT_SYMBOL vmlinux 0x6e6cf191 dma_iommu_ops -EXPORT_SYMBOL vmlinux 0x6e6efe90 tcp_seq_open -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e754ddc sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0x6e759771 fb_set_cmap -EXPORT_SYMBOL vmlinux 0x6e7f0fd2 cmdline_parts_parse -EXPORT_SYMBOL vmlinux 0x6e827b6d d_find_alias -EXPORT_SYMBOL vmlinux 0x6e87335e tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x6e947f41 sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6eaf78a4 bitmap_startwrite -EXPORT_SYMBOL vmlinux 0x6eb3de5a bdevname -EXPORT_SYMBOL vmlinux 0x6eb6ef96 of_get_ibm_chip_id -EXPORT_SYMBOL vmlinux 0x6eda8527 get_io_context -EXPORT_SYMBOL vmlinux 0x6f0c9bee i2c_transfer -EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash -EXPORT_SYMBOL vmlinux 0x6f2f59f1 sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x6f35a1c6 tty_port_close_end -EXPORT_SYMBOL vmlinux 0x6f37b450 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0x6f491cee blk_peek_request -EXPORT_SYMBOL vmlinux 0x6f6f56ec tcp_filter -EXPORT_SYMBOL vmlinux 0x6f82fdf0 __napi_complete -EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x6fba6c32 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag -EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6feaba13 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x6ffe1d69 blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x70349d52 inet6_del_protocol -EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq -EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma -EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync -EXPORT_SYMBOL vmlinux 0x707a35fa fbcon_set_bitops -EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x7092ec57 scsi_block_requests -EXPORT_SYMBOL vmlinux 0x70a1076d security_path_unlink -EXPORT_SYMBOL vmlinux 0x70a79d5c sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x70df93c4 blk_queue_bounce -EXPORT_SYMBOL vmlinux 0x70eef651 rwsem_wake -EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match -EXPORT_SYMBOL vmlinux 0x70fb1431 kfree_skb_list -EXPORT_SYMBOL vmlinux 0x7128cc7c textsearch_destroy -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x71452c52 tcf_hash_check -EXPORT_SYMBOL vmlinux 0x7169784c blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x718f88e5 __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0x719b31ea arp_create -EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev -EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71fc93f0 nonseekable_open -EXPORT_SYMBOL vmlinux 0x7221ea53 input_close_device -EXPORT_SYMBOL vmlinux 0x7223ddae mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0x725992e1 mfd_cell_enable -EXPORT_SYMBOL vmlinux 0x725fd887 nla_append -EXPORT_SYMBOL vmlinux 0x726ba963 path_nosuid -EXPORT_SYMBOL vmlinux 0x72846889 skb_vlan_push -EXPORT_SYMBOL vmlinux 0x728e315c security_path_link -EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma -EXPORT_SYMBOL vmlinux 0x72b6fa56 fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x72bdeea9 mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0x72c98139 __arch_hweight64 -EXPORT_SYMBOL vmlinux 0x72d81052 register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x72eb6dcc freeze_super -EXPORT_SYMBOL vmlinux 0x72f28604 dma_common_mmap -EXPORT_SYMBOL vmlinux 0x730a6720 __sk_dst_check -EXPORT_SYMBOL vmlinux 0x730fc06e inet_bind -EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config -EXPORT_SYMBOL vmlinux 0x731a747a pci_io_base -EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf -EXPORT_SYMBOL vmlinux 0x734bf92b __check_sticky -EXPORT_SYMBOL vmlinux 0x735d8503 add_wait_queue -EXPORT_SYMBOL vmlinux 0x736cea38 mdiobus_write -EXPORT_SYMBOL vmlinux 0x73710a3e dqstats -EXPORT_SYMBOL vmlinux 0x7377811c blk_run_queue -EXPORT_SYMBOL vmlinux 0x7377bb14 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0x737919e1 remove_arg_zero -EXPORT_SYMBOL vmlinux 0x738a14f5 dst_release -EXPORT_SYMBOL vmlinux 0x73b85d37 complete_request_key -EXPORT_SYMBOL vmlinux 0x73e97b2d ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x73f7144f sock_from_file -EXPORT_SYMBOL vmlinux 0x7402b30d generic_pipe_buf_steal -EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x741ec3a7 blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0x7431f89b mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0x74426ff0 swiotlb_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x7442d3d0 dquot_disable -EXPORT_SYMBOL vmlinux 0x74434b3c max8998_update_reg -EXPORT_SYMBOL vmlinux 0x7451e38c bdev_stack_limits -EXPORT_SYMBOL vmlinux 0x74623c9f mapping_tagged -EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x7478bf91 dev_mc_add -EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x74896e18 phy_resume -EXPORT_SYMBOL vmlinux 0x74a2a27c genphy_update_link -EXPORT_SYMBOL vmlinux 0x74b10d1c qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x74b22563 find_lock_entry -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74d3552d blkdev_put -EXPORT_SYMBOL vmlinux 0x74d8920b scsi_execute_req_flags -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74e89f13 padata_start -EXPORT_SYMBOL vmlinux 0x74fae476 led_blink_set -EXPORT_SYMBOL vmlinux 0x74ffdc69 ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0x7507c498 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0x75150c4a kmem_cache_alloc_node_trace -EXPORT_SYMBOL vmlinux 0x7517bc0c agp_generic_remove_memory -EXPORT_SYMBOL vmlinux 0x751bf7e0 generic_permission -EXPORT_SYMBOL vmlinux 0x7532588a alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x7538b132 agp_off -EXPORT_SYMBOL vmlinux 0x754888bc padata_do_serial -EXPORT_SYMBOL vmlinux 0x754a52c3 sock_recvmsg -EXPORT_SYMBOL vmlinux 0x754f3267 pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0x7561332d vlan_vid_add -EXPORT_SYMBOL vmlinux 0x756e945a swiotlb_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0x75750a5a import_iovec -EXPORT_SYMBOL vmlinux 0x757fa5ab tc_classify -EXPORT_SYMBOL vmlinux 0x75819f22 pskb_expand_head -EXPORT_SYMBOL vmlinux 0x75994700 add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc -EXPORT_SYMBOL vmlinux 0x75be6702 register_sysctl_paths -EXPORT_SYMBOL vmlinux 0x75d38847 get_thermal_instance -EXPORT_SYMBOL vmlinux 0x75e199c5 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0x75e2e7da scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x76148d82 blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0x76178f1e blk_queue_prep_rq -EXPORT_SYMBOL vmlinux 0x7636f357 sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0x7645af6f sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x764bd77c request_resource -EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x76757d88 serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0x76ababad qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0x76af5405 input_register_handle -EXPORT_SYMBOL vmlinux 0x76b3f42f devm_ioremap -EXPORT_SYMBOL vmlinux 0x76b59b33 cpu_sibling_map -EXPORT_SYMBOL vmlinux 0x76c89508 iunique -EXPORT_SYMBOL vmlinux 0x76cebb15 module_refcount -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint -EXPORT_SYMBOL vmlinux 0x76d474fe max8925_set_bits -EXPORT_SYMBOL vmlinux 0x76e608d5 vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0x76ed2844 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x76fce8cb alloc_fddidev -EXPORT_SYMBOL vmlinux 0x77090cf8 of_find_compatible_node -EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x77351245 put_tty_driver -EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x775d7f42 nlmsg_notify -EXPORT_SYMBOL vmlinux 0x776998c7 blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0x777c56ca dma_sync_wait -EXPORT_SYMBOL vmlinux 0x778429b2 clear_inode -EXPORT_SYMBOL vmlinux 0x77986167 inode_add_rsv_space -EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll -EXPORT_SYMBOL vmlinux 0x77a4d1c8 mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77c158c3 __insert_inode_hash -EXPORT_SYMBOL vmlinux 0x77d3113d bio_init -EXPORT_SYMBOL vmlinux 0x77f712a5 skb_insert -EXPORT_SYMBOL vmlinux 0x781cc7ec of_device_alloc -EXPORT_SYMBOL vmlinux 0x78219a27 dev_set_mtu -EXPORT_SYMBOL vmlinux 0x78260293 sock_no_bind -EXPORT_SYMBOL vmlinux 0x782b2150 blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0x7830b04f hvc_put_chars -EXPORT_SYMBOL vmlinux 0x7839ce55 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t -EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x784e7a05 agp_generic_alloc_by_type -EXPORT_SYMBOL vmlinux 0x78575e6f seq_release -EXPORT_SYMBOL vmlinux 0x785d662c tcp_close -EXPORT_SYMBOL vmlinux 0x7867348c dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x78a9e905 _numa_mem_ -EXPORT_SYMBOL vmlinux 0x78cd04e4 uart_write_wakeup -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78df7786 nobh_writepage -EXPORT_SYMBOL vmlinux 0x78fb32e2 seq_printf -EXPORT_SYMBOL vmlinux 0x78fea9c0 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0x7927cbb9 netif_skb_features -EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0x797497ad pcim_pin_device -EXPORT_SYMBOL vmlinux 0x7984eefc key_update -EXPORT_SYMBOL vmlinux 0x7985d043 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x799b747b dquot_quota_off -EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size -EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79cd8f41 param_ops_bint -EXPORT_SYMBOL vmlinux 0x79e9aefd abx500_register_ops -EXPORT_SYMBOL vmlinux 0x7a071be1 console_stop -EXPORT_SYMBOL vmlinux 0x7a0e7aa9 kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x7a4497db kzfree -EXPORT_SYMBOL vmlinux 0x7a4ba8ff dcb_setapp -EXPORT_SYMBOL vmlinux 0x7a4c72ea mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0x7a653c46 inet6_bind -EXPORT_SYMBOL vmlinux 0x7a6cdedc do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7a83701a tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7ac81e06 mb_cache_entry_insert -EXPORT_SYMBOL vmlinux 0x7acfff2c remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7adf7021 param_set_int -EXPORT_SYMBOL vmlinux 0x7aeb4f91 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0x7aff32ed __frontswap_store -EXPORT_SYMBOL vmlinux 0x7b01f1e8 nf_log_unregister -EXPORT_SYMBOL vmlinux 0x7b03655b ppp_channel_index -EXPORT_SYMBOL vmlinux 0x7b16235f hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array -EXPORT_SYMBOL vmlinux 0x7b2aef6c __krealloc -EXPORT_SYMBOL vmlinux 0x7b3c7b83 msi_bitmap_free_hwirqs -EXPORT_SYMBOL vmlinux 0x7b6a8d50 vio_get_attribute -EXPORT_SYMBOL vmlinux 0x7b85eed6 dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0x7b865188 km_new_mapping -EXPORT_SYMBOL vmlinux 0x7b9dda1c skb_append -EXPORT_SYMBOL vmlinux 0x7ba25d48 agp_free_memory -EXPORT_SYMBOL vmlinux 0x7bb5e798 pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x7bb756cc neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x7bc37cf9 inode_init_always -EXPORT_SYMBOL vmlinux 0x7bd0c440 setattr_copy -EXPORT_SYMBOL vmlinux 0x7c003aef _raw_read_lock_irq -EXPORT_SYMBOL vmlinux 0x7c013cc9 vm_insert_pfn -EXPORT_SYMBOL vmlinux 0x7c1372e8 panic -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c19acb3 crypto_sha1_update -EXPORT_SYMBOL vmlinux 0x7c1e4dd5 elevator_init -EXPORT_SYMBOL vmlinux 0x7c2960ba filemap_fdatawait -EXPORT_SYMBOL vmlinux 0x7c2d098f krealloc -EXPORT_SYMBOL vmlinux 0x7c341123 bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c598e32 max8925_bulk_write -EXPORT_SYMBOL vmlinux 0x7c61340c __release_region -EXPORT_SYMBOL vmlinux 0x7c6d0897 cdrom_mode_select -EXPORT_SYMBOL vmlinux 0x7c6d7fed register_sysctl -EXPORT_SYMBOL vmlinux 0x7c725640 read_dev_sector -EXPORT_SYMBOL vmlinux 0x7c7f0169 dev_get_nest_level -EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read -EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down -EXPORT_SYMBOL vmlinux 0x7ccc3706 pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7d0348b1 tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0x7d076229 scsi_device_set_state -EXPORT_SYMBOL vmlinux 0x7d09e071 pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies -EXPORT_SYMBOL vmlinux 0x7d157483 lro_flush_all -EXPORT_SYMBOL vmlinux 0x7d36abe9 blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0x7d3881dd blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x7d519e6a of_translate_dma_address -EXPORT_SYMBOL vmlinux 0x7d54c7d7 pci_find_pcie_root_port -EXPORT_SYMBOL vmlinux 0x7d609e38 neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug -EXPORT_SYMBOL vmlinux 0x7d754d3e lru_cache_add_file -EXPORT_SYMBOL vmlinux 0x7d786593 get_unmapped_area -EXPORT_SYMBOL vmlinux 0x7d910983 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x7d9514c1 node_to_cpumask_map -EXPORT_SYMBOL vmlinux 0x7dc6f45d mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0x7dc97879 rtas_get_error_log_max -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7df0bc83 xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0x7e23171e seq_read -EXPORT_SYMBOL vmlinux 0x7e246a96 d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x7e2ce839 bio_clone_bioset -EXPORT_SYMBOL vmlinux 0x7e30bb37 skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0x7e6552be cfb_copyarea -EXPORT_SYMBOL vmlinux 0x7e665160 param_get_int -EXPORT_SYMBOL vmlinux 0x7e66d052 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x7e675957 pnv_cxl_release_hwirqs -EXPORT_SYMBOL vmlinux 0x7e964b19 __blk_end_request_cur -EXPORT_SYMBOL vmlinux 0x7ea17d15 tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x7ea7c890 get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0x7eafe3ad pci_assign_resource -EXPORT_SYMBOL vmlinux 0x7eb68753 blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f0ebccf skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x7f150c8b follow_down -EXPORT_SYMBOL vmlinux 0x7f21335d file_open_root -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f263ed9 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x7f289578 nvm_free_rqd_ppalist -EXPORT_SYMBOL vmlinux 0x7f29b797 netlink_broadcast -EXPORT_SYMBOL vmlinux 0x7f3bc680 tcp_prot -EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done -EXPORT_SYMBOL vmlinux 0x7f68ba78 unlink_framebuffer -EXPORT_SYMBOL vmlinux 0x7f6cdc1c dcb_getapp -EXPORT_SYMBOL vmlinux 0x7f70dc6a set_page_dirty -EXPORT_SYMBOL vmlinux 0x7f7f3442 vfs_fsync_range -EXPORT_SYMBOL vmlinux 0x7f987c39 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0x7f9e5070 xfrm6_prepare_output -EXPORT_SYMBOL vmlinux 0x7fbc11f4 param_set_ulong -EXPORT_SYMBOL vmlinux 0x7fbd10d2 radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x7fc208c5 param_ops_short -EXPORT_SYMBOL vmlinux 0x7fc891b2 fsnotify_add_mark -EXPORT_SYMBOL vmlinux 0x7fd05a83 dput -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fe38f48 sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x7ff12fcc jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x7ff5383e cpu_active_mask -EXPORT_SYMBOL vmlinux 0x80053785 dquot_file_open -EXPORT_SYMBOL vmlinux 0x8017c802 neigh_update -EXPORT_SYMBOL vmlinux 0x803fa3cc serio_open -EXPORT_SYMBOL vmlinux 0x8049f7ea jbd2_journal_file_inode -EXPORT_SYMBOL vmlinux 0x805a1117 netdev_state_change -EXPORT_SYMBOL vmlinux 0x8068c15c kblockd_schedule_delayed_work -EXPORT_SYMBOL vmlinux 0x806f884b pcim_iomap_table -EXPORT_SYMBOL vmlinux 0x8071d1a8 cpu_all_bits -EXPORT_SYMBOL vmlinux 0x80742515 netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0x80791a8c radix_tree_gang_lookup_slot -EXPORT_SYMBOL vmlinux 0x80a20860 __alloc_page_frag -EXPORT_SYMBOL vmlinux 0x80a59f8d follow_down_one -EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80ca840e splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x810b2035 xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0x8119fae4 kernel_bind -EXPORT_SYMBOL vmlinux 0x814a689c bprm_change_interp -EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy -EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x81577b17 writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x8163f496 key_link -EXPORT_SYMBOL vmlinux 0x817bde4c __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0x81878055 balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0x81952072 blk_queue_start_tag -EXPORT_SYMBOL vmlinux 0x81a07f4e _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0x81ac8563 reservation_object_add_shared_fence -EXPORT_SYMBOL vmlinux 0x81adcba2 dquot_free_inode -EXPORT_SYMBOL vmlinux 0x81bbe0f0 blk_alloc_queue -EXPORT_SYMBOL vmlinux 0x81c0a84f rtas_set_indicator -EXPORT_SYMBOL vmlinux 0x81c32afd lwtunnel_encap_del_ops -EXPORT_SYMBOL vmlinux 0x81c95ab0 scsi_register -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81dbf3a2 linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x81f88965 vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill -EXPORT_SYMBOL vmlinux 0x822653ae __ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x822c5a8c fence_add_callback -EXPORT_SYMBOL vmlinux 0x82458f7f radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun -EXPORT_SYMBOL vmlinux 0x82703707 md_write_end -EXPORT_SYMBOL vmlinux 0x82712450 unload_nls -EXPORT_SYMBOL vmlinux 0x82792f6e param_ops_long -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x82816b01 kill_anon_super -EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes -EXPORT_SYMBOL vmlinux 0x82a0b523 iget5_locked -EXPORT_SYMBOL vmlinux 0x82a22266 netdev_features_change -EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched -EXPORT_SYMBOL vmlinux 0x82b610ed __inet_stream_connect -EXPORT_SYMBOL vmlinux 0x82c04ef7 request_key -EXPORT_SYMBOL vmlinux 0x82d6b0d0 cpumask_next_and -EXPORT_SYMBOL vmlinux 0x82d83b00 neigh_table_init -EXPORT_SYMBOL vmlinux 0x82de168d __mmc_claim_host -EXPORT_SYMBOL vmlinux 0x82e5a238 vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x82f15c0b mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x834ad2b4 tty_unthrottle -EXPORT_SYMBOL vmlinux 0x8350e4d9 mmc_can_trim -EXPORT_SYMBOL vmlinux 0x83605ea2 dev_err -EXPORT_SYMBOL vmlinux 0x837149ba install_exec_creds -EXPORT_SYMBOL vmlinux 0x838b64e7 blk_init_queue -EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x839e3cc7 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init -EXPORT_SYMBOL vmlinux 0x83b0d96b pci_dev_get -EXPORT_SYMBOL vmlinux 0x83c08b1c tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83def6d7 pcie_port_service_register -EXPORT_SYMBOL vmlinux 0x840c407a jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x840f706d scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0x8410d3a6 sock_create_kern -EXPORT_SYMBOL vmlinux 0x8423f8a4 inet_dgram_connect -EXPORT_SYMBOL vmlinux 0x844484b5 neigh_app_ns -EXPORT_SYMBOL vmlinux 0x84454b0a register_gifconf -EXPORT_SYMBOL vmlinux 0x844e3767 radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x845367c6 ihold -EXPORT_SYMBOL vmlinux 0x846f7298 kmalloc_caches -EXPORT_SYMBOL vmlinux 0x847870d8 locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0x8495a94b eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x84bbca7f ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0x84bd69bf dq_data_lock -EXPORT_SYMBOL vmlinux 0x84e21fc9 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0x84e8eec9 mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload -EXPORT_SYMBOL vmlinux 0x850ebee6 padata_do_parallel -EXPORT_SYMBOL vmlinux 0x851283d4 arp_xmit -EXPORT_SYMBOL vmlinux 0x8518aa02 udp_seq_open -EXPORT_SYMBOL vmlinux 0x8533879c create_empty_buffers -EXPORT_SYMBOL vmlinux 0x853fda88 wireless_send_event -EXPORT_SYMBOL vmlinux 0x8554cb38 param_array_ops -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x8570ee35 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0x8572e96c dquot_resume -EXPORT_SYMBOL vmlinux 0x8597eb47 plpar_hcall -EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85c439be twl6040_set_bits -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85fa7543 tcp_conn_request -EXPORT_SYMBOL vmlinux 0x86013132 phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0x864036ed __inode_permission -EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0x866932f1 pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0x86700991 pipe_lock -EXPORT_SYMBOL vmlinux 0x86802624 posix_test_lock -EXPORT_SYMBOL vmlinux 0x8680c277 pci_dev_put -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x869476be unregister_md_personality -EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x86a4e3b0 blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x86b3e619 __generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x86c11179 __destroy_inode -EXPORT_SYMBOL vmlinux 0x86db1cbb rtas_flash_term_hook -EXPORT_SYMBOL vmlinux 0x86df33a4 sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x86f662ec __generic_file_fsync -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x8702714e cdrom_ioctl -EXPORT_SYMBOL vmlinux 0x8708e235 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x8711f9b4 register_netdevice -EXPORT_SYMBOL vmlinux 0x87167dbd udp_ioctl -EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags -EXPORT_SYMBOL vmlinux 0x873a53ea __arch_hweight8 -EXPORT_SYMBOL vmlinux 0x8746f7a9 register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x8758a1fd devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x878740a9 bio_integrity_free -EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale -EXPORT_SYMBOL vmlinux 0x878fdfc7 put_io_context -EXPORT_SYMBOL vmlinux 0x87d27cd7 security_mmap_file -EXPORT_SYMBOL vmlinux 0x87e31dcf scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0x87f0a81f of_get_next_available_child -EXPORT_SYMBOL vmlinux 0x88090209 mount_single -EXPORT_SYMBOL vmlinux 0x882814d4 kmem_cache_size -EXPORT_SYMBOL vmlinux 0x882db37f neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x882edc23 pci_scan_single_device -EXPORT_SYMBOL vmlinux 0x883ca42f mutex_lock -EXPORT_SYMBOL vmlinux 0x885c898e bio_advance -EXPORT_SYMBOL vmlinux 0x88646722 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0x88658cfb i2c_master_send -EXPORT_SYMBOL vmlinux 0x886854df netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0x887480e9 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0x887fa47e __getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x888c0016 simple_release_fs -EXPORT_SYMBOL vmlinux 0x888c0474 input_set_capability -EXPORT_SYMBOL vmlinux 0x8898500a redraw_screen -EXPORT_SYMBOL vmlinux 0x8899a9fd inode_get_bytes -EXPORT_SYMBOL vmlinux 0x88b93411 mdiobus_scan -EXPORT_SYMBOL vmlinux 0x88ece0a0 twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0x88ed12c2 open_check_o_direct -EXPORT_SYMBOL vmlinux 0x88fa0567 generic_make_request -EXPORT_SYMBOL vmlinux 0x8911ffa3 devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0x891bef26 vm_stat -EXPORT_SYMBOL vmlinux 0x891fbb10 mempool_destroy -EXPORT_SYMBOL vmlinux 0x892e4ccb wait_for_key_construction -EXPORT_SYMBOL vmlinux 0x895108f3 proc_dostring -EXPORT_SYMBOL vmlinux 0x895577b0 numa_cpu_lookup_table -EXPORT_SYMBOL vmlinux 0x896f14f8 inet_ioctl -EXPORT_SYMBOL vmlinux 0x89797060 _raw_read_lock -EXPORT_SYMBOL vmlinux 0x898e09b0 i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x89a420be blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x89a9153b i2c_put_adapter -EXPORT_SYMBOL vmlinux 0x89aa5be3 neigh_seq_start -EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x89dac6ab bio_integrity_endio -EXPORT_SYMBOL vmlinux 0x89dd18e7 simple_unlink -EXPORT_SYMBOL vmlinux 0x89e6335d tty_throttle -EXPORT_SYMBOL vmlinux 0x89f04c6f seq_dentry -EXPORT_SYMBOL vmlinux 0x89f4ddfa touch_buffer -EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies -EXPORT_SYMBOL vmlinux 0x8a3993da tty_register_device -EXPORT_SYMBOL vmlinux 0x8a467ff9 posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a4edc6a get_phy_device -EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning -EXPORT_SYMBOL vmlinux 0x8a5f3030 kfree_skb -EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0x8a746e92 audit_log_task_info -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a90df61 ibmebus_bus_type -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8aacfb84 of_mdiobus_register -EXPORT_SYMBOL vmlinux 0x8ae12b8a compat_ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x8af1a02b netdev_change_features -EXPORT_SYMBOL vmlinux 0x8afaebe7 nla_put -EXPORT_SYMBOL vmlinux 0x8b3132e4 mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0x8b31ca70 dev_remove_offload -EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last -EXPORT_SYMBOL vmlinux 0x8b38dfc2 blk_init_queue_node -EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b69f3c2 sock_rfree -EXPORT_SYMBOL vmlinux 0x8b762fea build_skb -EXPORT_SYMBOL vmlinux 0x8b7b26e5 skb_trim -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b834933 ip_route_me_harder -EXPORT_SYMBOL vmlinux 0x8b84318e tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x8b8c26f3 validate_sp -EXPORT_SYMBOL vmlinux 0x8b9ac5e1 uart_remove_one_port -EXPORT_SYMBOL vmlinux 0x8bbc7813 cdrom_check_events -EXPORT_SYMBOL vmlinux 0x8be8e7ff devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x8bf2ae1f fsl_lbc_addr -EXPORT_SYMBOL vmlinux 0x8c0ee6cc pci_set_dma_seg_boundary -EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 -EXPORT_SYMBOL vmlinux 0x8c1938b1 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0x8c2dbe1e dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0x8c465957 sock_no_listen -EXPORT_SYMBOL vmlinux 0x8c475708 skb_set_owner_w -EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x8c77d31e param_get_long -EXPORT_SYMBOL vmlinux 0x8c82f321 pci_release_regions -EXPORT_SYMBOL vmlinux 0x8c95eeb8 dquot_quota_on -EXPORT_SYMBOL vmlinux 0x8ca31d82 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0x8ca730e4 give_up_console -EXPORT_SYMBOL vmlinux 0x8cb420c2 kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep -EXPORT_SYMBOL vmlinux 0x8ccc4676 dquot_quotactl_ops -EXPORT_SYMBOL vmlinux 0x8ce346ac nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0x8cff6601 eth_mac_addr -EXPORT_SYMBOL vmlinux 0x8cffb829 dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x8d015dd4 __bswapdi2 -EXPORT_SYMBOL vmlinux 0x8d0714c6 generic_setxattr -EXPORT_SYMBOL vmlinux 0x8d0ec0ed dma_find_channel -EXPORT_SYMBOL vmlinux 0x8d3445c6 inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d67c2b9 backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x8d701218 fb_get_mode -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d88e1b9 d_prune_aliases -EXPORT_SYMBOL vmlinux 0x8d8b64bf pci_fixup_device -EXPORT_SYMBOL vmlinux 0x8d8bc0d3 find_inode_nowait -EXPORT_SYMBOL vmlinux 0x8d944cbb copy_in_user -EXPORT_SYMBOL vmlinux 0x8d96402c serio_unregister_driver -EXPORT_SYMBOL vmlinux 0x8dadcc6a gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0x8db009a8 genlmsg_put -EXPORT_SYMBOL vmlinux 0x8db16810 d_drop -EXPORT_SYMBOL vmlinux 0x8de0b5ac mempool_create -EXPORT_SYMBOL vmlinux 0x8df60921 serio_unregister_port -EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv -EXPORT_SYMBOL vmlinux 0x8dfefd9a __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0x8e011fdb iov_iter_advance -EXPORT_SYMBOL vmlinux 0x8e0d528b pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0x8e111b71 flush_signals -EXPORT_SYMBOL vmlinux 0x8e33bfd5 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x8e3b0611 blk_queue_resize_tags -EXPORT_SYMBOL vmlinux 0x8e4e40ed neigh_connected_output -EXPORT_SYMBOL vmlinux 0x8e6d1aa3 pci_remove_bus -EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x8ea568fa srp_rport_get -EXPORT_SYMBOL vmlinux 0x8eb069c2 mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0x8ebc9a2b inode_dio_wait -EXPORT_SYMBOL vmlinux 0x8ebfa364 dev_set_group -EXPORT_SYMBOL vmlinux 0x8ec04552 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0x8ec8e6db sock_no_poll -EXPORT_SYMBOL vmlinux 0x8ecb2d2e alloc_buffer_head -EXPORT_SYMBOL vmlinux 0x8eda4fe7 done_path_create -EXPORT_SYMBOL vmlinux 0x8eeea2fc __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x8ef60bff tcp_proto_cgroup -EXPORT_SYMBOL vmlinux 0x8efcffea agp_unbind_memory -EXPORT_SYMBOL vmlinux 0x8f166593 __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x8f280c28 lookup_bdev -EXPORT_SYMBOL vmlinux 0x8f321762 single_open_size -EXPORT_SYMBOL vmlinux 0x8f422bfe __nd_driver_register -EXPORT_SYMBOL vmlinux 0x8f4e9241 debugfs_create_automount -EXPORT_SYMBOL vmlinux 0x8f85f835 prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x8f8a9ea3 skb_unlink -EXPORT_SYMBOL vmlinux 0x8f916d41 vfs_link -EXPORT_SYMBOL vmlinux 0x8f9fa9c2 netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0x8fad18f5 read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0x8fbee2ac neigh_parms_release -EXPORT_SYMBOL vmlinux 0x8fc15bf6 iommu_tbl_range_free -EXPORT_SYMBOL vmlinux 0x8fc4caf6 fbcon_rotate_cw -EXPORT_SYMBOL vmlinux 0x8fc59f9b rtas_offline_cpus_mask -EXPORT_SYMBOL vmlinux 0x8ff65e44 cdev_del -EXPORT_SYMBOL vmlinux 0x900497e2 nvm_unregister_target -EXPORT_SYMBOL vmlinux 0x900d2a1f msi_bitmap_alloc_hwirqs -EXPORT_SYMBOL vmlinux 0x900e04d7 scsi_print_command -EXPORT_SYMBOL vmlinux 0x900fcd78 dquot_destroy -EXPORT_SYMBOL vmlinux 0x9023a30a __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x905d942f neigh_direct_output -EXPORT_SYMBOL vmlinux 0x9067f123 agp_enable -EXPORT_SYMBOL vmlinux 0x907122b8 pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0x9080fd46 pci_release_region -EXPORT_SYMBOL vmlinux 0x908c1396 set_create_files_as -EXPORT_SYMBOL vmlinux 0x90b187d8 blk_mq_add_to_requeue_list -EXPORT_SYMBOL vmlinux 0x90c9501b ps2_handle_response -EXPORT_SYMBOL vmlinux 0x9103a9ce __inode_add_bytes -EXPORT_SYMBOL vmlinux 0x9113d794 nf_nat_decode_session_hook -EXPORT_SYMBOL vmlinux 0x912557ce rtas_busy_delay -EXPORT_SYMBOL vmlinux 0x913f5c83 mmc_gpio_request_cd -EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 -EXPORT_SYMBOL vmlinux 0x914aefea __bforget -EXPORT_SYMBOL vmlinux 0x915e1208 tb_ticks_per_usec -EXPORT_SYMBOL vmlinux 0x9166fada strncpy -EXPORT_SYMBOL vmlinux 0x9168c033 rtas_get_sensor -EXPORT_SYMBOL vmlinux 0x916e1e0a in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x916f9c8c pci_get_subsys -EXPORT_SYMBOL vmlinux 0x91715312 sprintf -EXPORT_SYMBOL vmlinux 0x9177ba11 pci_pme_active -EXPORT_SYMBOL vmlinux 0x9178a4e5 dentry_update_name_case -EXPORT_SYMBOL vmlinux 0x918f8863 inet_frags_exit_net -EXPORT_SYMBOL vmlinux 0x919d1163 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x91ac822f vscnprintf -EXPORT_SYMBOL vmlinux 0x91b0e6ef clocksource_change_rating -EXPORT_SYMBOL vmlinux 0x91c14d05 generic_block_bmap -EXPORT_SYMBOL vmlinux 0x91dad879 vfs_mkdir -EXPORT_SYMBOL vmlinux 0x91eb6210 dcache_dir_open -EXPORT_SYMBOL vmlinux 0x91ef5fe7 __skb_get_hash -EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 -EXPORT_SYMBOL vmlinux 0x9205ebe5 blk_queue_dma_pad -EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x923cefe1 sb_set_blocksize -EXPORT_SYMBOL vmlinux 0x924d4b42 __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x926368ee inode_claim_rsv_space -EXPORT_SYMBOL vmlinux 0x927507d9 blk_integrity_register -EXPORT_SYMBOL vmlinux 0x9286d901 dev_open -EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user -EXPORT_SYMBOL vmlinux 0x9291de27 scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm -EXPORT_SYMBOL vmlinux 0x92ac5398 scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x92b17148 ab3100_event_unregister -EXPORT_SYMBOL vmlinux 0x92c1f835 fb_class -EXPORT_SYMBOL vmlinux 0x92eb9044 freeze_bdev -EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x9307c205 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0x930c4a6e eth_change_mtu -EXPORT_SYMBOL vmlinux 0x930f3be5 wait_on_page_bit -EXPORT_SYMBOL vmlinux 0x9313ff73 powerpc_debugfs_root -EXPORT_SYMBOL vmlinux 0x93438705 ip6_frag_init -EXPORT_SYMBOL vmlinux 0x9354fcde ibmebus_free_irq -EXPORT_SYMBOL vmlinux 0x9356d890 tcp_parse_options -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x93787b8b pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0x938e13f3 ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0x939e2bb0 inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0x93a6d807 dst_init -EXPORT_SYMBOL vmlinux 0x93b0f960 seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93ceafcf xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x93d5a85c max8998_read_reg -EXPORT_SYMBOL vmlinux 0x93d6ee30 of_match_node -EXPORT_SYMBOL vmlinux 0x93eb07b7 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0x93f1885d seq_putc -EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages -EXPORT_SYMBOL vmlinux 0x93ff30c2 pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int -EXPORT_SYMBOL vmlinux 0x942f5508 acl_by_type -EXPORT_SYMBOL vmlinux 0x943cd8c0 ppp_register_compressor -EXPORT_SYMBOL vmlinux 0x94400f57 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0x9473981e kernel_write -EXPORT_SYMBOL vmlinux 0x947c28c0 mmc_remove_host -EXPORT_SYMBOL vmlinux 0x948015be seq_puts -EXPORT_SYMBOL vmlinux 0x9483dedc param_set_long -EXPORT_SYMBOL vmlinux 0x9488f07a key_validate -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x94ac6c2d vfs_mknod -EXPORT_SYMBOL vmlinux 0x94ca8222 of_phy_find_device -EXPORT_SYMBOL vmlinux 0x94ca8ef5 tcp_sendpage -EXPORT_SYMBOL vmlinux 0x94cc8e1e inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x94ce5cf0 pnv_phb_to_cxl_mode -EXPORT_SYMBOL vmlinux 0x94ce7db4 dst_destroy -EXPORT_SYMBOL vmlinux 0x94d838ae mmc_erase -EXPORT_SYMBOL vmlinux 0x94ea7888 register_console -EXPORT_SYMBOL vmlinux 0x94ef7fd0 pagecache_get_page -EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x95120aa3 mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0x9514151a _mcount -EXPORT_SYMBOL vmlinux 0x9519ec27 vfs_read -EXPORT_SYMBOL vmlinux 0x9522a1c0 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x9524b0ae _outsb -EXPORT_SYMBOL vmlinux 0x952a2a83 set_blocksize -EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init -EXPORT_SYMBOL vmlinux 0x95649996 nf_log_packet -EXPORT_SYMBOL vmlinux 0x9566b899 iget_locked -EXPORT_SYMBOL vmlinux 0x9592e98f kvmppc_hv_find_lock_hpte -EXPORT_SYMBOL vmlinux 0x95b68e04 mac_find_mode -EXPORT_SYMBOL vmlinux 0x95ba5e04 vio_h_cop_sync -EXPORT_SYMBOL vmlinux 0x95bc9075 d_set_d_op -EXPORT_SYMBOL vmlinux 0x95bdb4c7 jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0x9632c936 pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0x964bde24 skb_vlan_untag -EXPORT_SYMBOL vmlinux 0x96559522 request_firmware -EXPORT_SYMBOL vmlinux 0x9664aa90 input_allocate_device -EXPORT_SYMBOL vmlinux 0x9667c48f scsi_device_put -EXPORT_SYMBOL vmlinux 0x96951873 d_rehash -EXPORT_SYMBOL vmlinux 0x969987fc lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp -EXPORT_SYMBOL vmlinux 0x96ba5662 inet6_add_offload -EXPORT_SYMBOL vmlinux 0x96c2943d jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0x96c2c718 thaw_bdev -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96e16fbe jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0x96e9ab85 dev_addr_init -EXPORT_SYMBOL vmlinux 0x96f47ca9 mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0x96f5d7df scsi_host_set_state -EXPORT_SYMBOL vmlinux 0x96f7d38c mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0x96fa1ae7 dcache_readdir -EXPORT_SYMBOL vmlinux 0x96fe5447 path_put -EXPORT_SYMBOL vmlinux 0x9709a45e dma_common_get_sgtable -EXPORT_SYMBOL vmlinux 0x970b2039 pnv_cxl_ioda_msi_setup -EXPORT_SYMBOL vmlinux 0x9717d830 da903x_query_status -EXPORT_SYMBOL vmlinux 0x97192af8 rtnl_unicast -EXPORT_SYMBOL vmlinux 0x97468e72 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x9748927f _outsw_ns -EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x9775f9e7 kernel_getsockopt -EXPORT_SYMBOL vmlinux 0x9783ad58 rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x97868aef __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state -EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update -EXPORT_SYMBOL vmlinux 0x97afba7b proc_douintvec -EXPORT_SYMBOL vmlinux 0x97ba1af0 tcp_hashinfo -EXPORT_SYMBOL vmlinux 0x97f03d6f vio_cmo_entitlement_update -EXPORT_SYMBOL vmlinux 0x98251ad3 truncate_setsize -EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0x986c50d1 blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0x986c8cbc tcf_action_exec -EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x986fbeba iov_iter_copy_from_user_atomic -EXPORT_SYMBOL vmlinux 0x987fc124 neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x98833333 nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0x989c5eb8 eth_gro_complete -EXPORT_SYMBOL vmlinux 0x98b52548 dev_emerg -EXPORT_SYMBOL vmlinux 0x98c68c41 __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen -EXPORT_SYMBOL vmlinux 0x98d5d7be vga_put -EXPORT_SYMBOL vmlinux 0x9907c839 __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x99186027 inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x99195078 vsnprintf -EXPORT_SYMBOL vmlinux 0x9922ec46 twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x9949affc dev_mc_sync -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x9953aedb kill_block_super -EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x996a4262 nvdimm_revalidate_disk -EXPORT_SYMBOL vmlinux 0x99737214 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0x997628f5 vme_irq_handler -EXPORT_SYMBOL vmlinux 0x998cfca7 pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99a4f681 jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0x99afe916 _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering -EXPORT_SYMBOL vmlinux 0x99d3a43c dm_table_get_size -EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99f45847 i2c_register_driver -EXPORT_SYMBOL vmlinux 0x9a1d2b30 dev_driver_string -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a1f1038 pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval -EXPORT_SYMBOL vmlinux 0x9a32f9c8 udp6_set_csum -EXPORT_SYMBOL vmlinux 0x9a7029bb skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0x9a8bfda0 pci_iounmap -EXPORT_SYMBOL vmlinux 0x9a9926bd blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x9ad51a5a abort_creds -EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach -EXPORT_SYMBOL vmlinux 0x9aef6ec0 mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0x9af6585d I_BDEV -EXPORT_SYMBOL vmlinux 0x9b16d4a7 gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x9b1c2fa8 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0x9b21cb5d rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page -EXPORT_SYMBOL vmlinux 0x9b69581a filp_close -EXPORT_SYMBOL vmlinux 0x9b6e5bdf mmc_get_card -EXPORT_SYMBOL vmlinux 0x9b7e85a6 gen_pool_alloc -EXPORT_SYMBOL vmlinux 0x9b9a5457 xfrm_register_type -EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split -EXPORT_SYMBOL vmlinux 0x9babf1da inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x9bae4a8b pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0x9bc61485 backlight_force_update -EXPORT_SYMBOL vmlinux 0x9bd2a802 scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0x9bd343d2 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x9bf2c9a4 __register_binfmt -EXPORT_SYMBOL vmlinux 0x9bfa50d3 revert_creds -EXPORT_SYMBOL vmlinux 0x9bfdf749 dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0x9c0587d3 swiotlb_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x9c0ba8f0 scsi_scan_host -EXPORT_SYMBOL vmlinux 0x9c204f61 make_kuid -EXPORT_SYMBOL vmlinux 0x9c289976 inet6_unregister_icmp_sender -EXPORT_SYMBOL vmlinux 0x9c2b2382 mutex_trylock -EXPORT_SYMBOL vmlinux 0x9c42bd5a jbd2_journal_load -EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x9c57ee96 ps2_handle_ack -EXPORT_SYMBOL vmlinux 0x9c749343 vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0x9c752fc6 simple_nosetlease -EXPORT_SYMBOL vmlinux 0x9c83e6ec dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x9c88f702 uart_suspend_port -EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9ce09abf devm_gpiod_get -EXPORT_SYMBOL vmlinux 0x9cef4d1d pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x9cfe66cc pci_bus_get -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d10a43b vga_tryget -EXPORT_SYMBOL vmlinux 0x9d14983a ppc_enable_pmcs -EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init -EXPORT_SYMBOL vmlinux 0x9d430d81 unregister_netdev -EXPORT_SYMBOL vmlinux 0x9d460cc0 set_groups -EXPORT_SYMBOL vmlinux 0x9d5cd467 pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0x9d7ce8dd _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0x9d9dfc18 load_fp_state -EXPORT_SYMBOL vmlinux 0x9da05e10 mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0x9db5a3d3 devm_ioport_map -EXPORT_SYMBOL vmlinux 0x9dbee34b vfs_getattr -EXPORT_SYMBOL vmlinux 0x9dc5d190 sock_i_uid -EXPORT_SYMBOL vmlinux 0x9de6a6fb md_finish_reshape -EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e1d3496 tcp_poll -EXPORT_SYMBOL vmlinux 0x9e2c20e9 devm_gpio_request_one -EXPORT_SYMBOL vmlinux 0x9e2f8c90 lz4_decompress_unknownoutputsize -EXPORT_SYMBOL vmlinux 0x9e3a73a8 napi_disable -EXPORT_SYMBOL vmlinux 0x9e4155db read_cache_page -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e56f6ab blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x9e59f635 __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0x9e5d2aa0 nd_iostat_end -EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e6db497 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0x9e6edd21 proc_create_data -EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value -EXPORT_SYMBOL vmlinux 0x9e780776 try_to_writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x9e8786f4 setup_new_exec -EXPORT_SYMBOL vmlinux 0x9e951368 netdev_emerg -EXPORT_SYMBOL vmlinux 0x9e9594c1 get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x9e97375d rtas_busy_delay_time -EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9ea251b9 phy_detach -EXPORT_SYMBOL vmlinux 0x9ea8b545 inet_csk_accept -EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource -EXPORT_SYMBOL vmlinux 0x9ed75e0c page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x9eda2ec4 napi_gro_receive -EXPORT_SYMBOL vmlinux 0x9eef006b fsnotify_init_mark -EXPORT_SYMBOL vmlinux 0x9eef419f vm_map_ram -EXPORT_SYMBOL vmlinux 0x9f2b6b70 mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0x9f3dead3 i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f69abbf jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0x9f7c1be8 skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0x9f8a8f79 __vio_register_driver -EXPORT_SYMBOL vmlinux 0x9f911629 idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0x9f91cf54 input_register_device -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9fd181cc poll_initwait -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0xa0059d4f save_mount_options -EXPORT_SYMBOL vmlinux 0xa01c85cc mmc_wait_for_app_cmd -EXPORT_SYMBOL vmlinux 0xa02267b0 netif_carrier_on -EXPORT_SYMBOL vmlinux 0xa0339475 seq_pad -EXPORT_SYMBOL vmlinux 0xa0342a7b tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0xa03dc8d8 __dax_fault -EXPORT_SYMBOL vmlinux 0xa040ddd9 textsearch_unregister -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xa054d081 __blkdev_reread_part -EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr -EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init -EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa08f4322 user_path_create -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0b19da2 __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0xa0b749fb pnv_cxl_get_irq_count -EXPORT_SYMBOL vmlinux 0xa0c14a97 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0ddb28a devm_gpiod_get_optional -EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem -EXPORT_SYMBOL vmlinux 0xa0f53309 dup_iter -EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa0ff74d6 udp_memory_allocated -EXPORT_SYMBOL vmlinux 0xa1049e82 phy_device_remove -EXPORT_SYMBOL vmlinux 0xa105cc54 tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0xa108061c clocksource_unregister -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xa13b9171 generic_file_write_iter -EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0xa146ec00 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0xa153fd4e capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0xa15a92be inetdev_by_index -EXPORT_SYMBOL vmlinux 0xa15b94dd arch_free_page -EXPORT_SYMBOL vmlinux 0xa170291d pci_find_capability -EXPORT_SYMBOL vmlinux 0xa180ac36 tty_check_change -EXPORT_SYMBOL vmlinux 0xa189030d nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0xa1b41bdb __napi_schedule -EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode -EXPORT_SYMBOL vmlinux 0xa1b86de1 unregister_filesystem -EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched -EXPORT_SYMBOL vmlinux 0xa1c99385 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0xa1c9ac4d kobject_add -EXPORT_SYMBOL vmlinux 0xa1d0ac52 kernel_param_unlock -EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create -EXPORT_SYMBOL vmlinux 0xa1eca494 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0xa1f8fe75 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0xa1fc820b secpath_dup -EXPORT_SYMBOL vmlinux 0xa202a8e5 kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0xa20649f0 filemap_map_pages -EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold -EXPORT_SYMBOL vmlinux 0xa221b7d9 mem_section -EXPORT_SYMBOL vmlinux 0xa22acf80 delete_from_page_cache -EXPORT_SYMBOL vmlinux 0xa23ce695 nvm_submit_ppa -EXPORT_SYMBOL vmlinux 0xa24b80a2 sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0xa268f55c serio_close -EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0xa28a649a vfs_iter_read -EXPORT_SYMBOL vmlinux 0xa2a335bd vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0xa2a3d5dd from_kuid -EXPORT_SYMBOL vmlinux 0xa2bbed37 crash_shutdown_register -EXPORT_SYMBOL vmlinux 0xa2cee846 zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0xa2d38e3c gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0xa2d6dbae del_random_ready_callback -EXPORT_SYMBOL vmlinux 0xa2d75a62 __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0xa2fb8590 __ip_dev_find -EXPORT_SYMBOL vmlinux 0xa2fd46e6 netdev_alert -EXPORT_SYMBOL vmlinux 0xa2fdbcbe fence_default_wait -EXPORT_SYMBOL vmlinux 0xa303d1ff dm_ratelimit_state -EXPORT_SYMBOL vmlinux 0xa310542d scm_detach_fds -EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set -EXPORT_SYMBOL vmlinux 0xa32fafb0 blk_register_region -EXPORT_SYMBOL vmlinux 0xa344d5f8 pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0xa3841cfa kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0xa3976c93 phy_ethtool_gset -EXPORT_SYMBOL vmlinux 0xa39b4cf2 udelay -EXPORT_SYMBOL vmlinux 0xa39f8e84 qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0xa3a389cc skb_kill_datagram -EXPORT_SYMBOL vmlinux 0xa3abc422 abort_exclusive_wait -EXPORT_SYMBOL vmlinux 0xa3c95c89 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0xa3e08015 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0xa3e49cc9 __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0xa3e52889 sock_wake_async -EXPORT_SYMBOL vmlinux 0xa3f7325a key_task_permission -EXPORT_SYMBOL vmlinux 0xa431c005 end_buffer_async_write -EXPORT_SYMBOL vmlinux 0xa43584e5 tty_port_init -EXPORT_SYMBOL vmlinux 0xa4511467 crc16 -EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset -EXPORT_SYMBOL vmlinux 0xa48468d5 qdisc_reset -EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep -EXPORT_SYMBOL vmlinux 0xa4b97c21 generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0xa4ce94b7 __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush -EXPORT_SYMBOL vmlinux 0xa5154449 bdget_disk -EXPORT_SYMBOL vmlinux 0xa51cca08 grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0xa5222c3d pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa5527918 padata_free -EXPORT_SYMBOL vmlinux 0xa55abb9e netdev_err -EXPORT_SYMBOL vmlinux 0xa55c6830 register_sysctl_table -EXPORT_SYMBOL vmlinux 0xa567bb1b pci_enable_device_io -EXPORT_SYMBOL vmlinux 0xa5916dd1 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes -EXPORT_SYMBOL vmlinux 0xa59f9fa1 md_flush_request -EXPORT_SYMBOL vmlinux 0xa5a51eee __crc32c_le -EXPORT_SYMBOL vmlinux 0xa5b5a3c3 tso_build_hdr -EXPORT_SYMBOL vmlinux 0xa5b946c4 proc_create_mount_point -EXPORT_SYMBOL vmlinux 0xa5e06711 agp_find_bridge -EXPORT_SYMBOL vmlinux 0xa5ebfddd unregister_framebuffer -EXPORT_SYMBOL vmlinux 0xa5f19550 register_cdrom -EXPORT_SYMBOL vmlinux 0xa5f6f69f tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0xa60bb982 bioset_integrity_free -EXPORT_SYMBOL vmlinux 0xa61358cf xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0xa62df3d4 page_cache_prev_hole -EXPORT_SYMBOL vmlinux 0xa631df8a cpu_possible_mask -EXPORT_SYMBOL vmlinux 0xa63322c6 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0xa63899e5 compat_nf_getsockopt -EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember -EXPORT_SYMBOL vmlinux 0xa63d8f18 of_graph_get_remote_port -EXPORT_SYMBOL vmlinux 0xa65972b8 _memcpy_toio -EXPORT_SYMBOL vmlinux 0xa6695839 bmap -EXPORT_SYMBOL vmlinux 0xa672f486 simple_transaction_read -EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa687ef7b tty_port_tty_set -EXPORT_SYMBOL vmlinux 0xa68f764a blk_complete_request -EXPORT_SYMBOL vmlinux 0xa6981ce7 i2c_del_adapter -EXPORT_SYMBOL vmlinux 0xa6d557c6 page_follow_link_light -EXPORT_SYMBOL vmlinux 0xa6f6e40e elv_rq_merge_ok -EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function -EXPORT_SYMBOL vmlinux 0xa700cac1 xfrm_init_replay -EXPORT_SYMBOL vmlinux 0xa7014988 security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0xa707baba page_symlink -EXPORT_SYMBOL vmlinux 0xa70e2c55 ipv6_select_ident -EXPORT_SYMBOL vmlinux 0xa70f5a59 vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0xa720678c lg_global_lock -EXPORT_SYMBOL vmlinux 0xa7266d41 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0xa72a0f5b nr_online_nodes -EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 -EXPORT_SYMBOL vmlinux 0xa73d601a kfree_skb_partial -EXPORT_SYMBOL vmlinux 0xa73eda1c nf_log_set -EXPORT_SYMBOL vmlinux 0xa74f4e9b ida_simple_get -EXPORT_SYMBOL vmlinux 0xa768f8bf of_find_node_by_phandle -EXPORT_SYMBOL vmlinux 0xa7a70683 __sock_create -EXPORT_SYMBOL vmlinux 0xa7c240e5 tcf_unregister_action -EXPORT_SYMBOL vmlinux 0xa7c38bbe compat_sock_get_timestamp -EXPORT_SYMBOL vmlinux 0xa7cf59b1 pci_set_power_state -EXPORT_SYMBOL vmlinux 0xa7e612f2 agp_generic_free_gatt_table -EXPORT_SYMBOL vmlinux 0xa7ef8374 blkdev_get -EXPORT_SYMBOL vmlinux 0xa7f6ef10 downgrade_write -EXPORT_SYMBOL vmlinux 0xa7fadab1 dev_get_iflink -EXPORT_SYMBOL vmlinux 0xa7fc1c4a ppp_unit_number -EXPORT_SYMBOL vmlinux 0xa8046361 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0xa8221ce8 nf_unregister_hooks -EXPORT_SYMBOL vmlinux 0xa82479a9 __pci_enable_wake -EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa84d4aff __nlmsg_put -EXPORT_SYMBOL vmlinux 0xa86709fb fput -EXPORT_SYMBOL vmlinux 0xa86940da dev_uc_init -EXPORT_SYMBOL vmlinux 0xa86df9b9 mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0xa8721b97 system_state -EXPORT_SYMBOL vmlinux 0xa89cb8d6 ns_capable -EXPORT_SYMBOL vmlinux 0xa8d8c8b3 vc_cons -EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send -EXPORT_SYMBOL vmlinux 0xa909be9d tty_unlock -EXPORT_SYMBOL vmlinux 0xa9126005 xfrm_init_state -EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion -EXPORT_SYMBOL vmlinux 0xa916b694 strnlen -EXPORT_SYMBOL vmlinux 0xa9220a25 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0xa9273e1a epapr_hypercall_start -EXPORT_SYMBOL vmlinux 0xa92af5de irq_set_chip -EXPORT_SYMBOL vmlinux 0xa9389c2d mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0xa93ba88e proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0xa93d8dbb xfrm_input -EXPORT_SYMBOL vmlinux 0xa9589630 get_super_thawed -EXPORT_SYMBOL vmlinux 0xa96c749f inet_dgram_ops -EXPORT_SYMBOL vmlinux 0xa972ff81 alloc_pages_current -EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa98464be blk_queue_io_min -EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes -EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0xa9caf741 pci_set_master -EXPORT_SYMBOL vmlinux 0xa9dffe83 nd_integrity_init -EXPORT_SYMBOL vmlinux 0xa9e8877e tcf_exts_change -EXPORT_SYMBOL vmlinux 0xaa228431 blk_end_request_all -EXPORT_SYMBOL vmlinux 0xaa2e52fd vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0xaa36c855 try_module_get -EXPORT_SYMBOL vmlinux 0xaa46e87e lg_local_unlock -EXPORT_SYMBOL vmlinux 0xaa6e4df5 _raw_write_lock_irqsave -EXPORT_SYMBOL vmlinux 0xaa6eadc6 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaaa01a6c param_get_ullong -EXPORT_SYMBOL vmlinux 0xaab49539 neigh_resolve_output -EXPORT_SYMBOL vmlinux 0xaab8b312 sock_no_sendpage -EXPORT_SYMBOL vmlinux 0xaabc3cfd flow_cache_init -EXPORT_SYMBOL vmlinux 0xaabdf991 phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0xaabf8130 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0xaac39a94 filemap_fault -EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0xab0dc4d3 param_ops_uint -EXPORT_SYMBOL vmlinux 0xab0ec513 phy_driver_unregister -EXPORT_SYMBOL vmlinux 0xab19d750 __f_setown -EXPORT_SYMBOL vmlinux 0xab1c914c blk_queue_find_tag -EXPORT_SYMBOL vmlinux 0xab5dbe57 pcie_get_mps -EXPORT_SYMBOL vmlinux 0xab682692 km_is_alive -EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog -EXPORT_SYMBOL vmlinux 0xab767de2 input_free_device -EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab7d07c2 path_is_under -EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev -EXPORT_SYMBOL vmlinux 0xabd22d6f vfs_readf -EXPORT_SYMBOL vmlinux 0xabe1c5dc sock_create_lite -EXPORT_SYMBOL vmlinux 0xabe1ddaf kernel_sendmsg -EXPORT_SYMBOL vmlinux 0xabe2c72c serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0xabe2ca14 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0xabe96408 inet6_getname -EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable -EXPORT_SYMBOL vmlinux 0xac113bd9 cdev_alloc -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac26b820 _raw_write_lock -EXPORT_SYMBOL vmlinux 0xac357736 compat_sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0xac3b2a1e pneigh_enqueue -EXPORT_SYMBOL vmlinux 0xac520e82 nf_unregister_hook -EXPORT_SYMBOL vmlinux 0xac5c1891 mmc_alloc_host -EXPORT_SYMBOL vmlinux 0xac69d118 tty_kref_put -EXPORT_SYMBOL vmlinux 0xac734b2a file_ns_capable -EXPORT_SYMBOL vmlinux 0xac7dee5b devm_get_gpiod_from_child -EXPORT_SYMBOL vmlinux 0xac9a3f64 remap_vmalloc_range_partial -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacc5b5d2 csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton -EXPORT_SYMBOL vmlinux 0xacd11d2f dev_change_flags -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xacf22a93 d_obtain_root -EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xad01744f kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad115f8e tcp_disconnect -EXPORT_SYMBOL vmlinux 0xad164875 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xad1d8ae1 dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0xad2af0c8 gen_pool_free -EXPORT_SYMBOL vmlinux 0xad40d0d7 netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0xad452c27 proc_mkdir -EXPORT_SYMBOL vmlinux 0xad4c1b51 flex_array_alloc -EXPORT_SYMBOL vmlinux 0xad50cebb i8253_lock -EXPORT_SYMBOL vmlinux 0xad578d05 nf_hook_slow -EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event -EXPORT_SYMBOL vmlinux 0xad85a27b hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0xad961743 __wait_on_bit -EXPORT_SYMBOL vmlinux 0xadb297e9 vme_slot_num -EXPORT_SYMBOL vmlinux 0xadb61c8c sock_wfree -EXPORT_SYMBOL vmlinux 0xadc93c84 xfrm_input_resume -EXPORT_SYMBOL vmlinux 0xadf391a3 pci_domain_nr -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae061d0b zpool_register_driver -EXPORT_SYMBOL vmlinux 0xae358236 fence_signal -EXPORT_SYMBOL vmlinux 0xae4a1bda csum_tcpudp_nofold -EXPORT_SYMBOL vmlinux 0xae4ba76b sk_send_sigurg -EXPORT_SYMBOL vmlinux 0xae545f06 _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xae57b3ee pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0xaeb614bf agp_generic_mask_memory -EXPORT_SYMBOL vmlinux 0xaec31f9d search_binary_handler -EXPORT_SYMBOL vmlinux 0xaec35db4 flex_array_free -EXPORT_SYMBOL vmlinux 0xaee18894 inet_frag_kill -EXPORT_SYMBOL vmlinux 0xaee2f37d __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0xaee33970 con_is_bound -EXPORT_SYMBOL vmlinux 0xaf063510 _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0xaf2219c3 security_path_chown -EXPORT_SYMBOL vmlinux 0xaf2c84aa vmap -EXPORT_SYMBOL vmlinux 0xaf2d872c prepare_to_wait -EXPORT_SYMBOL vmlinux 0xaf34085f qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0xaf383451 i2c_del_driver -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf430769 iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0xaf6ae696 kstrndup -EXPORT_SYMBOL vmlinux 0xaf6e311a crypto_sha512_update -EXPORT_SYMBOL vmlinux 0xaf9340a7 tcf_hash_new_index -EXPORT_SYMBOL vmlinux 0xafa71936 prepare_binprm -EXPORT_SYMBOL vmlinux 0xafa96368 n_tty_compat_ioctl_helper -EXPORT_SYMBOL vmlinux 0xafb0fd09 gen_pool_create -EXPORT_SYMBOL vmlinux 0xafb90ca1 generic_pipe_buf_confirm -EXPORT_SYMBOL vmlinux 0xafc09950 param_get_bool -EXPORT_SYMBOL vmlinux 0xafceddd3 uart_add_one_port -EXPORT_SYMBOL vmlinux 0xafecdb86 rfkill_alloc -EXPORT_SYMBOL vmlinux 0xafff3d1d mempool_alloc -EXPORT_SYMBOL vmlinux 0xb00c6188 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0xb0352b2d ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0xb04241b4 ida_simple_remove -EXPORT_SYMBOL vmlinux 0xb045b3c5 alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0xb05f73a9 compat_ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb067ba66 abx500_get_chip_id -EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0xb0b8f597 iov_iter_fault_in_readable -EXPORT_SYMBOL vmlinux 0xb0baeb1e __serio_register_driver -EXPORT_SYMBOL vmlinux 0xb0c69daa vio_find_node -EXPORT_SYMBOL vmlinux 0xb0c85868 blk_mq_delay_queue -EXPORT_SYMBOL vmlinux 0xb0dd9ce4 blk_put_request -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0e72611 of_scan_pci_bridge -EXPORT_SYMBOL vmlinux 0xb0e8f7dd remove_proc_entry -EXPORT_SYMBOL vmlinux 0xb0f4a8c8 igrab -EXPORT_SYMBOL vmlinux 0xb0f4e8b5 netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0xb10646a8 param_ops_ullong -EXPORT_SYMBOL vmlinux 0xb12214f2 alloc_disk -EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb13698f3 inet_select_addr -EXPORT_SYMBOL vmlinux 0xb145a896 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0xb147a855 dql_reset -EXPORT_SYMBOL vmlinux 0xb14d8c7b copy_from_iter -EXPORT_SYMBOL vmlinux 0xb14dcb7f pci_set_dma_max_seg_size -EXPORT_SYMBOL vmlinux 0xb15bd8fa tb_ticks_per_sec -EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xb16243ca security_path_mknod -EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table -EXPORT_SYMBOL vmlinux 0xb165ef45 __irq_regs -EXPORT_SYMBOL vmlinux 0xb16717f2 jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0xb185f8f5 i2c_release_client -EXPORT_SYMBOL vmlinux 0xb191ebf2 blk_rq_set_block_pc -EXPORT_SYMBOL vmlinux 0xb1a1214f truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0xb1a929cd of_get_next_child -EXPORT_SYMBOL vmlinux 0xb1bd20f0 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1c6e787 wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0xb1cc8a91 scsi_print_result -EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0xb26ea1af inet_frag_maybe_warn_overflow -EXPORT_SYMBOL vmlinux 0xb286341b xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xb2fb0f2f nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xb302d95e giveup_vsx -EXPORT_SYMBOL vmlinux 0xb3163fcb tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0xb31fee70 of_find_device_by_node -EXPORT_SYMBOL vmlinux 0xb323be5c inet_getname -EXPORT_SYMBOL vmlinux 0xb3246322 __lock_buffer -EXPORT_SYMBOL vmlinux 0xb327aba8 dquot_drop -EXPORT_SYMBOL vmlinux 0xb330f774 sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0xb3382494 fence_signal_locked -EXPORT_SYMBOL vmlinux 0xb33aa702 blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0xb359df99 tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0xb36c5a3a tso_build_data -EXPORT_SYMBOL vmlinux 0xb3a2bd82 blk_free_tags -EXPORT_SYMBOL vmlinux 0xb3b50bc2 blk_recount_segments -EXPORT_SYMBOL vmlinux 0xb3b6c9d5 tty_port_close_start -EXPORT_SYMBOL vmlinux 0xb3c2df6c devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3d63fa2 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0xb3d6a45a seq_open -EXPORT_SYMBOL vmlinux 0xb3db2de0 __dst_free -EXPORT_SYMBOL vmlinux 0xb3ecbd27 scsi_register_interface -EXPORT_SYMBOL vmlinux 0xb3ed9522 locks_init_lock -EXPORT_SYMBOL vmlinux 0xb3f1c1c2 mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb408a51b pci_request_regions -EXPORT_SYMBOL vmlinux 0xb40c00f7 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0xb416dd9f pipe_unlock -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb44f52b0 blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0xb47189b5 reservation_ww_class -EXPORT_SYMBOL vmlinux 0xb473e2c2 lockref_get -EXPORT_SYMBOL vmlinux 0xb48423fe jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0xb486dba4 mmc_add_host -EXPORT_SYMBOL vmlinux 0xb48e82fa nvm_put_blk_unlocked -EXPORT_SYMBOL vmlinux 0xb48f5d72 unregister_key_type -EXPORT_SYMBOL vmlinux 0xb49c31cc pnv_cxl_release_hwirq_ranges -EXPORT_SYMBOL vmlinux 0xb4a68702 xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0xb4acce06 blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0xb4adffb1 nvm_set_rqd_ppalist -EXPORT_SYMBOL vmlinux 0xb4b87d80 tcp_prequeue -EXPORT_SYMBOL vmlinux 0xb4da2f96 blk_rq_init -EXPORT_SYMBOL vmlinux 0xb4dd407c compat_nf_setsockopt -EXPORT_SYMBOL vmlinux 0xb4e198a5 netif_napi_add -EXPORT_SYMBOL vmlinux 0xb4eb6daa get_disk -EXPORT_SYMBOL vmlinux 0xb4f48770 __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0xb4fc289d inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0xb4fdeaea elv_unregister_queue -EXPORT_SYMBOL vmlinux 0xb51d165b dev_change_proto_down -EXPORT_SYMBOL vmlinux 0xb54da498 nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0xb55b01fc udp_proc_register -EXPORT_SYMBOL vmlinux 0xb55b8ac0 neigh_lookup -EXPORT_SYMBOL vmlinux 0xb561b72c rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0xb56238a3 of_find_node_by_type -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb57870ff __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0xb58c9469 scsi_rescan_device -EXPORT_SYMBOL vmlinux 0xb599a168 of_find_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0xb59dec02 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0xb5a304b5 mdiobus_free -EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free -EXPORT_SYMBOL vmlinux 0xb5ce617c max8998_bulk_write -EXPORT_SYMBOL vmlinux 0xb5d17ed3 sock_update_memcg -EXPORT_SYMBOL vmlinux 0xb5dd142d skb_pull -EXPORT_SYMBOL vmlinux 0xb5ef92a1 param_set_charp -EXPORT_SYMBOL vmlinux 0xb61cf4cd agp_generic_enable -EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one -EXPORT_SYMBOL vmlinux 0xb64b67bb pagecache_write_begin -EXPORT_SYMBOL vmlinux 0xb6688295 proto_register -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb679ef40 generic_shutdown_super -EXPORT_SYMBOL vmlinux 0xb67f1893 sock_no_getsockopt -EXPORT_SYMBOL vmlinux 0xb68bfa9d node_states -EXPORT_SYMBOL vmlinux 0xb690e2f8 simple_rename -EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb694e6db pnv_cxl_alloc_hwirqs -EXPORT_SYMBOL vmlinux 0xb6a055de mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit -EXPORT_SYMBOL vmlinux 0xb6ae738f vme_irq_request -EXPORT_SYMBOL vmlinux 0xb6b8aabe set_binfmt -EXPORT_SYMBOL vmlinux 0xb6bd3606 ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0xb6edd8cf decrementer_clockevent -EXPORT_SYMBOL vmlinux 0xb70f58f7 do_splice_direct -EXPORT_SYMBOL vmlinux 0xb73c7d1a __pci_register_driver -EXPORT_SYMBOL vmlinux 0xb7473ccd bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xb74b5f73 phy_disconnect -EXPORT_SYMBOL vmlinux 0xb74e4c74 netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb7733666 ata_std_end_eh -EXPORT_SYMBOL vmlinux 0xb77932eb flex_array_clear -EXPORT_SYMBOL vmlinux 0xb77d8076 ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0xb7b0ff4d kobject_del -EXPORT_SYMBOL vmlinux 0xb7b9eb42 mmc_detect_change -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7d246e7 skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0xb7d96b63 crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0xb7f39d33 padata_stop -EXPORT_SYMBOL vmlinux 0xb7fe733d generic_error_remove_page -EXPORT_SYMBOL vmlinux 0xb8086917 kthread_bind -EXPORT_SYMBOL vmlinux 0xb81a5e9c pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0xb8269c8e gen_pool_destroy -EXPORT_SYMBOL vmlinux 0xb82ca63d copy_page_from_iter -EXPORT_SYMBOL vmlinux 0xb84594f2 d_tmpfile -EXPORT_SYMBOL vmlinux 0xb846f33f netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0xb85dbba9 do_splice_to -EXPORT_SYMBOL vmlinux 0xb870a788 uart_update_timeout -EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 -EXPORT_SYMBOL vmlinux 0xb887b971 inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xb8a2bd55 kernel_getpeername -EXPORT_SYMBOL vmlinux 0xb8a3b586 poll_schedule_timeout -EXPORT_SYMBOL vmlinux 0xb8a433c5 iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0xb8bcc9e5 cleancache_register_ops -EXPORT_SYMBOL vmlinux 0xb8ccbed0 pci_disable_link_state -EXPORT_SYMBOL vmlinux 0xb8e5d7f3 pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0xb9017627 dump_page -EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory -EXPORT_SYMBOL vmlinux 0xb918e272 posix_unblock_lock -EXPORT_SYMBOL vmlinux 0xb9595af0 __pagevec_lru_add -EXPORT_SYMBOL vmlinux 0xb9a00896 pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0xb9a36955 unregister_qdisc -EXPORT_SYMBOL vmlinux 0xb9b07d5a unregister_nls -EXPORT_SYMBOL vmlinux 0xb9b4212d tcf_hash_insert -EXPORT_SYMBOL vmlinux 0xb9bda041 pci_bus_put -EXPORT_SYMBOL vmlinux 0xb9d9d77a __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xba2ffec2 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0xba315725 tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0xba39829f d_invalidate -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba4f3d2b iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0xba5e0d3f nf_log_trace -EXPORT_SYMBOL vmlinux 0xba66a662 nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0xba7ed861 of_find_backlight_by_node -EXPORT_SYMBOL vmlinux 0xba916f3c generic_listxattr -EXPORT_SYMBOL vmlinux 0xbabc8f78 alloc_file -EXPORT_SYMBOL vmlinux 0xbabdb85e tcp_setsockopt -EXPORT_SYMBOL vmlinux 0xbac43934 vfs_fsync -EXPORT_SYMBOL vmlinux 0xbac81964 vga_con -EXPORT_SYMBOL vmlinux 0xbad19f47 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0xbad4e082 blk_end_request -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb2059be agp_generic_alloc_user -EXPORT_SYMBOL vmlinux 0xbb25ac49 component_match_add -EXPORT_SYMBOL vmlinux 0xbb34134a iov_shorten -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb37cf84 nf_getsockopt -EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xbb574c9b mount_subtree -EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xbb64fe68 mntget -EXPORT_SYMBOL vmlinux 0xbb73e9ff sock_efree -EXPORT_SYMBOL vmlinux 0xbb84a59f sync_inode_metadata -EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font -EXPORT_SYMBOL vmlinux 0xbb9a4565 generic_readlink -EXPORT_SYMBOL vmlinux 0xbbaeb559 memcg_socket_limit_enabled -EXPORT_SYMBOL vmlinux 0xbbb6b412 unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0xbbe15d1a notify_change -EXPORT_SYMBOL vmlinux 0xbc0b1f05 lwtunnel_get_encap_size -EXPORT_SYMBOL vmlinux 0xbc26dbc6 _dev_info -EXPORT_SYMBOL vmlinux 0xbc27014e skb_checksum -EXPORT_SYMBOL vmlinux 0xbc316de4 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0xbc3c7c07 mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0xbc7d7e4e mmc_power_restore_host -EXPORT_SYMBOL vmlinux 0xbc83380e of_get_mac_address -EXPORT_SYMBOL vmlinux 0xbc982b06 eeh_subsystem_flags -EXPORT_SYMBOL vmlinux 0xbcaee94c xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0xbcb52da5 dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user -EXPORT_SYMBOL vmlinux 0xbce08170 seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0xbcf150f9 xor_altivec_5 -EXPORT_SYMBOL vmlinux 0xbcf934e1 security_task_getsecid -EXPORT_SYMBOL vmlinux 0xbd13bab2 __nla_reserve -EXPORT_SYMBOL vmlinux 0xbd14ec4f md_integrity_register -EXPORT_SYMBOL vmlinux 0xbd256a2d scsi_is_target_device -EXPORT_SYMBOL vmlinux 0xbd25b038 jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0xbd27306b elv_rb_find -EXPORT_SYMBOL vmlinux 0xbd2d3550 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0xbd3f056e of_graph_get_next_endpoint -EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init -EXPORT_SYMBOL vmlinux 0xbd54922d md_cluster_mod -EXPORT_SYMBOL vmlinux 0xbd6d79f1 __tracepoint_fence_annotate_wait_on -EXPORT_SYMBOL vmlinux 0xbd872b41 __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug -EXPORT_SYMBOL vmlinux 0xbda4edb5 fddi_change_mtu -EXPORT_SYMBOL vmlinux 0xbdb7c1fb fsnotify_put_group -EXPORT_SYMBOL vmlinux 0xbdf0ce05 xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto -EXPORT_SYMBOL vmlinux 0xbe268379 ps2_begin_command -EXPORT_SYMBOL vmlinux 0xbe2df2d4 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0xbe4d58c7 phy_stop -EXPORT_SYMBOL vmlinux 0xbe8d20aa do_truncate -EXPORT_SYMBOL vmlinux 0xbeb57bf2 devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0xbec9e9cd mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0xbeca523e genphy_setup_forced -EXPORT_SYMBOL vmlinux 0xbeca77b4 security_path_rmdir -EXPORT_SYMBOL vmlinux 0xbecf8bab mmc_can_reset -EXPORT_SYMBOL vmlinux 0xbee1ffef mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0xbee2c963 __init_rwsem -EXPORT_SYMBOL vmlinux 0xbee711c3 of_device_unregister -EXPORT_SYMBOL vmlinux 0xbeea0ec9 tty_port_hangup -EXPORT_SYMBOL vmlinux 0xbef29b4c blk_init_allocated_queue -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbef5b527 dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0xbefe9078 vga_client_register -EXPORT_SYMBOL vmlinux 0xbefecd12 skb_tx_error -EXPORT_SYMBOL vmlinux 0xbf1e0307 pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0xbf26650b dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0xbf394121 phy_get_eee_err -EXPORT_SYMBOL vmlinux 0xbf3deb93 cpufreq_global_kobject -EXPORT_SYMBOL vmlinux 0xbf48a322 vfs_symlink -EXPORT_SYMBOL vmlinux 0xbf4afc86 __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xbf6eddf5 lwtunnel_state_alloc -EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0xbf827170 dev_notice -EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk -EXPORT_SYMBOL vmlinux 0xbf8c67b9 mpage_writepage -EXPORT_SYMBOL vmlinux 0xbf925c42 idr_init -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfa6f436 phy_connect -EXPORT_SYMBOL vmlinux 0xbfabfe59 __debugger_iabr_match -EXPORT_SYMBOL vmlinux 0xbfb02967 mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0xbfb8b0b7 _raw_read_lock_irqsave -EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep -EXPORT_SYMBOL vmlinux 0xbfd91da2 ptp_clock_event -EXPORT_SYMBOL vmlinux 0xbfec1925 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xbfed9615 nvm_put_blk -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xbff8182c plpar_hcall_norets -EXPORT_SYMBOL vmlinux 0xc01b3177 jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0xc01cf78f xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0xc02e76dc d_instantiate_no_diralias -EXPORT_SYMBOL vmlinux 0xc0495680 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0xc06e3880 blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc07758ae nvm_get_blk_unlocked -EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write -EXPORT_SYMBOL vmlinux 0xc08c31f2 __getblk_gfp -EXPORT_SYMBOL vmlinux 0xc0967490 __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit -EXPORT_SYMBOL vmlinux 0xc0c5beef __skb_tx_hash -EXPORT_SYMBOL vmlinux 0xc0d1e489 vga_get -EXPORT_SYMBOL vmlinux 0xc0f400bd bio_integrity_advance -EXPORT_SYMBOL vmlinux 0xc1144653 mmc_hw_reset -EXPORT_SYMBOL vmlinux 0xc1548d79 km_policy_notify -EXPORT_SYMBOL vmlinux 0xc1560229 tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0xc15a44c6 memzero_explicit -EXPORT_SYMBOL vmlinux 0xc1a76c34 ip_do_fragment -EXPORT_SYMBOL vmlinux 0xc1ac387f tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0xc1b7effe node_data -EXPORT_SYMBOL vmlinux 0xc1bc23d6 vme_bus_type -EXPORT_SYMBOL vmlinux 0xc1c8797a tcp_connect -EXPORT_SYMBOL vmlinux 0xc1cb5bd9 of_mdio_parse_addr -EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla -EXPORT_SYMBOL vmlinux 0xc1e9042c ps2_init -EXPORT_SYMBOL vmlinux 0xc23e6c8a md_check_recovery -EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup -EXPORT_SYMBOL vmlinux 0xc246109f file_remove_privs -EXPORT_SYMBOL vmlinux 0xc24eb3a1 inet_sendmsg -EXPORT_SYMBOL vmlinux 0xc29bf967 strspn -EXPORT_SYMBOL vmlinux 0xc2a3d7f2 filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xc2a4879d of_parse_phandle_with_fixed_args -EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xc2a91a7f kmem_cache_free -EXPORT_SYMBOL vmlinux 0xc2bad2d1 tcf_exts_validate -EXPORT_SYMBOL vmlinux 0xc2bb354b md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0xc2bdab79 rtmsg_ifinfo -EXPORT_SYMBOL vmlinux 0xc2c8e54b __alloc_skb -EXPORT_SYMBOL vmlinux 0xc2d54ba0 param_ops_ushort -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc30cdb1c netdev_master_upper_dev_link_private -EXPORT_SYMBOL vmlinux 0xc310b981 strnstr -EXPORT_SYMBOL vmlinux 0xc33d443f i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0xc3497612 __dev_get_by_index -EXPORT_SYMBOL vmlinux 0xc35b84fa page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0xc35d0d81 nvm_submit_io -EXPORT_SYMBOL vmlinux 0xc38f2885 __frontswap_load -EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0xc4071594 blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0xc416df05 of_mm_gpiochip_remove -EXPORT_SYMBOL vmlinux 0xc4511860 bio_map_kern -EXPORT_SYMBOL vmlinux 0xc4597951 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0xc47cdf9c _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0xc47ed660 pagevec_lookup -EXPORT_SYMBOL vmlinux 0xc4810527 input_unregister_device -EXPORT_SYMBOL vmlinux 0xc48307db lz4_decompress -EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup -EXPORT_SYMBOL vmlinux 0xc4bb8288 ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0xc4c25cc1 param_get_string -EXPORT_SYMBOL vmlinux 0xc4edf715 md_update_sb -EXPORT_SYMBOL vmlinux 0xc4f28e3b insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0xc4f7e99b devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xc5301d39 jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0xc530a8f9 ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 -EXPORT_SYMBOL vmlinux 0xc555b188 __ethtool_get_settings -EXPORT_SYMBOL vmlinux 0xc55de23c percpu_counter_set -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc5d7b908 finish_no_open -EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot -EXPORT_SYMBOL vmlinux 0xc5e4e3e0 crypto_sha256_update -EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xc601c2f9 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0xc60846d1 mmc_request_done -EXPORT_SYMBOL vmlinux 0xc61f98e5 kmem_cache_create -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc64bc8be block_write_full_page -EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes -EXPORT_SYMBOL vmlinux 0xc663b075 __ioremap -EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif -EXPORT_SYMBOL vmlinux 0xc6772da2 radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0xc6774da5 cpu_online_mask -EXPORT_SYMBOL vmlinux 0xc68b4a9d dentry_needs_remove_privs -EXPORT_SYMBOL vmlinux 0xc6931f19 lock_sock_fast -EXPORT_SYMBOL vmlinux 0xc6a1b484 napi_complete_done -EXPORT_SYMBOL vmlinux 0xc6b22c71 __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0xc6b61fe0 pci_request_region -EXPORT_SYMBOL vmlinux 0xc6c3f43b nobh_write_end -EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6d3fb9f nf_register_sockopt -EXPORT_SYMBOL vmlinux 0xc70ba168 simple_rmdir -EXPORT_SYMBOL vmlinux 0xc71f249e of_root -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc7299739 xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0xc732e9e9 skb_copy_expand -EXPORT_SYMBOL vmlinux 0xc73644e4 audit_log -EXPORT_SYMBOL vmlinux 0xc7497fd0 netif_rx -EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass -EXPORT_SYMBOL vmlinux 0xc7591cf0 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0xc766a139 dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc78459f2 blk_queue_unprep_rq -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc791e1be generic_file_mmap -EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7c0e27d init_net -EXPORT_SYMBOL vmlinux 0xc7d2861c pci_find_bus -EXPORT_SYMBOL vmlinux 0xc7e8855b param_ops_string -EXPORT_SYMBOL vmlinux 0xc7f39b15 irq_stat -EXPORT_SYMBOL vmlinux 0xc7fff4f1 devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0xc810401d lock_fb_info -EXPORT_SYMBOL vmlinux 0xc81197e4 key_unlink -EXPORT_SYMBOL vmlinux 0xc82d12d3 phy_write_mmd_indirect -EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0xc83f5cfc cmdline_parts_find -EXPORT_SYMBOL vmlinux 0xc846fe1a xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc84ef3ec mdio_bus_type -EXPORT_SYMBOL vmlinux 0xc85540fc pnv_pci_get_phb_node -EXPORT_SYMBOL vmlinux 0xc855d3e7 xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0xc8571bcb idr_for_each -EXPORT_SYMBOL vmlinux 0xc85fa277 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0xc8675cca __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc876252a phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0xc885e650 swiotlb_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0xc8884a62 module_layout -EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xc8c47573 __skb_get_hash_flowi4 -EXPORT_SYMBOL vmlinux 0xc8f4bc01 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0xc8f93310 md_write_start -EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen -EXPORT_SYMBOL vmlinux 0xc9390dba xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xc93fbc54 wait_for_completion_io -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc9669a58 scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0xc978479a xz_dec_run -EXPORT_SYMBOL vmlinux 0xc9875390 netif_carrier_off -EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9d58508 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0xc9edade9 ppc_md -EXPORT_SYMBOL vmlinux 0xc9ee700e __seq_open_private -EXPORT_SYMBOL vmlinux 0xca041b63 unregister_quota_format -EXPORT_SYMBOL vmlinux 0xca0642f4 phy_register_fixup -EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy -EXPORT_SYMBOL vmlinux 0xca2084fc filp_open -EXPORT_SYMBOL vmlinux 0xca2b1cd6 ida_pre_get -EXPORT_SYMBOL vmlinux 0xca3b28c6 store_vr_state -EXPORT_SYMBOL vmlinux 0xca3deb60 pci_select_bars -EXPORT_SYMBOL vmlinux 0xca41f0cc mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0xca544316 __neigh_create -EXPORT_SYMBOL vmlinux 0xca565a68 blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0xca5ee09a vme_free_consistent -EXPORT_SYMBOL vmlinux 0xca7487a9 devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xca832efe kmalloc_order -EXPORT_SYMBOL vmlinux 0xca8de1c3 generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xcaae6763 xfrm_garbage_collect -EXPORT_SYMBOL vmlinux 0xcab1616c iov_iter_alignment -EXPORT_SYMBOL vmlinux 0xcab49670 generic_file_open -EXPORT_SYMBOL vmlinux 0xcaca1b50 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0xcace6297 idr_is_empty -EXPORT_SYMBOL vmlinux 0xcaf00342 neigh_changeaddr -EXPORT_SYMBOL vmlinux 0xcaf12cb8 __serio_register_port -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcafbb09e d_set_fallthru -EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb0dda9f devm_release_resource -EXPORT_SYMBOL vmlinux 0xcb2582ee adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0xcb447924 srp_start_tl_fail_timers -EXPORT_SYMBOL vmlinux 0xcb520879 iterate_dir -EXPORT_SYMBOL vmlinux 0xcb58208e security_inode_permission -EXPORT_SYMBOL vmlinux 0xcb61e18f load_nls -EXPORT_SYMBOL vmlinux 0xcb6c926d compat_sock_get_timestampns -EXPORT_SYMBOL vmlinux 0xcb82a6dc get_acl -EXPORT_SYMBOL vmlinux 0xcb936989 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc1fbf2 skb_copy_bits -EXPORT_SYMBOL vmlinux 0xcbc3b94e eeh_check_failure -EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0xcbcd6d4b sock_no_shutdown -EXPORT_SYMBOL vmlinux 0xcbe1441c lock_sock_nested -EXPORT_SYMBOL vmlinux 0xcc17504d _raw_read_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xcc17da5a scsi_host_put -EXPORT_SYMBOL vmlinux 0xcc1b127b pps_unregister_source -EXPORT_SYMBOL vmlinux 0xcc215573 flex_array_shrink -EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc56c4c1 iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0xcc6b73da giveup_fpu -EXPORT_SYMBOL vmlinux 0xcc7c5798 i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0xcc9a2148 inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0xccbbd1a6 set_bh_page -EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor -EXPORT_SYMBOL vmlinux 0xccc3a3bc blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0xcccd6cdd PDE_DATA -EXPORT_SYMBOL vmlinux 0xccf558b3 pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0xccff628b i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0xcd0529c7 _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0xcd06d3fc sock_kfree_s -EXPORT_SYMBOL vmlinux 0xcd093efc dma_async_device_register -EXPORT_SYMBOL vmlinux 0xcd20667a kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd447766 mount_ns -EXPORT_SYMBOL vmlinux 0xcd57f7b0 radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0xcd665a61 pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0xcd725419 of_get_next_parent -EXPORT_SYMBOL vmlinux 0xcd7d1e29 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0xcd7ede2a seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xcd86c87f __cond_resched_lock -EXPORT_SYMBOL vmlinux 0xcd8c145d page_cache_next_hole -EXPORT_SYMBOL vmlinux 0xcd8d34cd swiotlb_map_sg -EXPORT_SYMBOL vmlinux 0xcd945583 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0xcda113d2 pps_lookup_dev -EXPORT_SYMBOL vmlinux 0xcdc0bb7f agp_backend_acquire -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdc85477 tcf_register_action -EXPORT_SYMBOL vmlinux 0xcded6170 blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0xcdf4f735 unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xcdf795e3 dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0xcdfb9607 bio_unmap_user -EXPORT_SYMBOL vmlinux 0xce09ddf1 noop_fsync -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce3b3f09 profile_pc -EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0xce510410 blk_stop_queue -EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce5b0203 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0xce5f271d nvm_erase_blk -EXPORT_SYMBOL vmlinux 0xce72af7a xfrm_register_mode -EXPORT_SYMBOL vmlinux 0xce7850e1 crc32_le_shift -EXPORT_SYMBOL vmlinux 0xce93057d ata_port_printk -EXPORT_SYMBOL vmlinux 0xce9d41ce mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0xcea3ce9c send_sig -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xceae504f cmdline_parts_free -EXPORT_SYMBOL vmlinux 0xcec779a8 posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0xced777cb proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0xced9154f __sb_end_write -EXPORT_SYMBOL vmlinux 0xcef3a4c7 make_kprojid -EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 -EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcf028f21 generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0xcf0a5ee6 __page_symlink -EXPORT_SYMBOL vmlinux 0xcf1877a1 set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0xcf2578da skb_checksum_help -EXPORT_SYMBOL vmlinux 0xcf2e3c0b up_read -EXPORT_SYMBOL vmlinux 0xcf4fa959 __devm_request_region -EXPORT_SYMBOL vmlinux 0xcf74631a generic_file_llseek -EXPORT_SYMBOL vmlinux 0xcff31727 bdgrab -EXPORT_SYMBOL vmlinux 0xd00d4f1f uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0xd024d87e pcim_iounmap -EXPORT_SYMBOL vmlinux 0xd0306451 mmc_of_parse -EXPORT_SYMBOL vmlinux 0xd058e6c1 inet_frag_destroy -EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond -EXPORT_SYMBOL vmlinux 0xd08607f8 xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0xd08f6239 sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc -EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init -EXPORT_SYMBOL vmlinux 0xd0a2e740 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces -EXPORT_SYMBOL vmlinux 0xd0b6659d input_unregister_handler -EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format -EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first -EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key -EXPORT_SYMBOL vmlinux 0xd1017f13 netpoll_setup -EXPORT_SYMBOL vmlinux 0xd1034c93 skb_ensure_writable -EXPORT_SYMBOL vmlinux 0xd108516c simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0xd116670f security_path_chmod -EXPORT_SYMBOL vmlinux 0xd1207504 cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0xd1217b2a twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0xd1262886 rtas_data_buf -EXPORT_SYMBOL vmlinux 0xd15faba4 of_node_get -EXPORT_SYMBOL vmlinux 0xd167e062 add_random_ready_callback -EXPORT_SYMBOL vmlinux 0xd17a011a qdisc_list_add -EXPORT_SYMBOL vmlinux 0xd180ae69 input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd1983311 mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0xd19c5529 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0xd1bf55b4 __blk_end_request -EXPORT_SYMBOL vmlinux 0xd1c2723c agp_create_memory -EXPORT_SYMBOL vmlinux 0xd1c5ca53 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0xd1c6ab69 pps_event -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1dde43b follow_pfn -EXPORT_SYMBOL vmlinux 0xd20336f6 rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0xd20c3937 flex_array_get -EXPORT_SYMBOL vmlinux 0xd215e9af qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0xd2206b7a agp_collect_device_status -EXPORT_SYMBOL vmlinux 0xd22c36a4 pci_read_vpd -EXPORT_SYMBOL vmlinux 0xd2441e81 dev_queue_xmit -EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd26cc088 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd2814e8e netif_rx_ni -EXPORT_SYMBOL vmlinux 0xd2a75716 pcibus_to_node -EXPORT_SYMBOL vmlinux 0xd2b09ce5 __kmalloc -EXPORT_SYMBOL vmlinux 0xd2b96522 agp_generic_destroy_page -EXPORT_SYMBOL vmlinux 0xd2c5b7ff dst_discard_out -EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2ff5b59 d_genocide -EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd337f3d1 blk_delay_queue -EXPORT_SYMBOL vmlinux 0xd346a7de skb_find_text -EXPORT_SYMBOL vmlinux 0xd346fc61 d_find_any_alias -EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0xd36ea649 skb_make_writable -EXPORT_SYMBOL vmlinux 0xd3802868 pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0xd3b4fd84 set_wb_congested -EXPORT_SYMBOL vmlinux 0xd3bad42b netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xd3d3e9ba arp_send -EXPORT_SYMBOL vmlinux 0xd3e0197a scsi_scan_target -EXPORT_SYMBOL vmlinux 0xd3e22112 __breadahead -EXPORT_SYMBOL vmlinux 0xd3fbd856 get_cached_acl -EXPORT_SYMBOL vmlinux 0xd41c9cd7 dev_disable_lro -EXPORT_SYMBOL vmlinux 0xd41db8f8 scsi_remove_target -EXPORT_SYMBOL vmlinux 0xd42080da nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0xd44002de dev_mc_del_global -EXPORT_SYMBOL vmlinux 0xd44b7e21 to_tm -EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex -EXPORT_SYMBOL vmlinux 0xd4828546 nf_register_hook -EXPORT_SYMBOL vmlinux 0xd48316f9 __register_nls -EXPORT_SYMBOL vmlinux 0xd48fdeef dql_completed -EXPORT_SYMBOL vmlinux 0xd49792af __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0xd4a89e15 vm_mmap -EXPORT_SYMBOL vmlinux 0xd4aedbb7 sk_stop_timer -EXPORT_SYMBOL vmlinux 0xd4b37c3c phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0xd4d342d4 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0xd4ee8201 elv_rb_add -EXPORT_SYMBOL vmlinux 0xd4f114d2 generic_key_instantiate -EXPORT_SYMBOL vmlinux 0xd525523f misc_register -EXPORT_SYMBOL vmlinux 0xd52e7dc5 nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0xd53a07e2 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xd54a9134 cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0xd5523e58 pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0xd5565685 blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0xd56cc13a noop_llseek -EXPORT_SYMBOL vmlinux 0xd57f29e2 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0xd57f4ad3 __kfree_skb -EXPORT_SYMBOL vmlinux 0xd58a6bd0 mmc_register_driver -EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames -EXPORT_SYMBOL vmlinux 0xd594f82e mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0xd59d59e1 vme_irq_free -EXPORT_SYMBOL vmlinux 0xd5c4eb56 sock_get_timestamp -EXPORT_SYMBOL vmlinux 0xd5e9b40b devm_gpiod_get_index_optional -EXPORT_SYMBOL vmlinux 0xd607ed21 compat_sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0xd6259738 sk_mc_loop -EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout -EXPORT_SYMBOL vmlinux 0xd62f6f13 ip6_expire_frag_queue -EXPORT_SYMBOL vmlinux 0xd6395537 mmc_interrupt_hpi -EXPORT_SYMBOL vmlinux 0xd63d5fba netdev_info -EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode -EXPORT_SYMBOL vmlinux 0xd662ff27 atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0xd6689036 vme_master_request -EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd6b45512 gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0xd6b566f0 generic_start_io_acct -EXPORT_SYMBOL vmlinux 0xd6d28d1e md_set_array_sectors -EXPORT_SYMBOL vmlinux 0xd6d63e9d lg_local_lock_cpu -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd6fd4053 __arch_hweight32 -EXPORT_SYMBOL vmlinux 0xd716e5d0 registered_fb -EXPORT_SYMBOL vmlinux 0xd7233aa9 d_make_root -EXPORT_SYMBOL vmlinux 0xd72d4504 skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0xd744ff82 cdev_init -EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function -EXPORT_SYMBOL vmlinux 0xd761a383 ioremap_prot -EXPORT_SYMBOL vmlinux 0xd768439a iterate_fd -EXPORT_SYMBOL vmlinux 0xd77758ec __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0xd7779c25 netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0xd786c0ea plpar_hcall9 -EXPORT_SYMBOL vmlinux 0xd796570f netif_wake_subqueue -EXPORT_SYMBOL vmlinux 0xd79aeff6 dcache_dir_close -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7ee7572 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0xd80e4b15 eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0xd8384fc9 pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0xd83fb5df inode_newsize_ok -EXPORT_SYMBOL vmlinux 0xd84c6da7 neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0xd8576aef rtas -EXPORT_SYMBOL vmlinux 0xd86bb2af vfs_create -EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd8a527f8 set_anon_super -EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8af88aa pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0xd8c48a07 blk_rq_map_user -EXPORT_SYMBOL vmlinux 0xd8cd8460 sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xd8e00f99 mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0xd8e2e695 softnet_data -EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region -EXPORT_SYMBOL vmlinux 0xd8e64dc5 migrate_page_copy -EXPORT_SYMBOL vmlinux 0xd8eeebbc ip_route_input_noref -EXPORT_SYMBOL vmlinux 0xd8fadbd6 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0xd8ff9b90 mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0xd902e322 pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0xd90cee4d scmd_printk -EXPORT_SYMBOL vmlinux 0xd9270e7b is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0xd9710df5 led_update_brightness -EXPORT_SYMBOL vmlinux 0xd97bdba8 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0xd97d8fad security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd9a7af0b seq_write -EXPORT_SYMBOL vmlinux 0xd9bac924 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0xd9d8f57d posix_lock_file -EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler -EXPORT_SYMBOL vmlinux 0xd9ffd145 dump_emit -EXPORT_SYMBOL vmlinux 0xda32cbf9 dma_set_mask -EXPORT_SYMBOL vmlinux 0xda32d438 bio_clone_fast -EXPORT_SYMBOL vmlinux 0xda35f640 genphy_read_status -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda686b49 param_set_ushort -EXPORT_SYMBOL vmlinux 0xda6aede6 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0xda6c96b2 nf_register_hooks -EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0xda919bb4 cad_pid -EXPORT_SYMBOL vmlinux 0xda9fc7ae kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0xdaa257c8 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0xdaaed08d skb_store_bits -EXPORT_SYMBOL vmlinux 0xdabc1ea8 fsl_lbc_find -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdac545b9 lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0xdad34eb4 sk_alloc -EXPORT_SYMBOL vmlinux 0xdad8e27e ptp_clock_unregister -EXPORT_SYMBOL vmlinux 0xdae8edf7 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell -EXPORT_SYMBOL vmlinux 0xdb00fda6 phy_driver_register -EXPORT_SYMBOL vmlinux 0xdb01198e fsl_upm_find -EXPORT_SYMBOL vmlinux 0xdb1ba1d8 mmc_read_bkops_status -EXPORT_SYMBOL vmlinux 0xdb2421b9 dev_uc_flush -EXPORT_SYMBOL vmlinux 0xdb2ccde2 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0xdb3bcca6 cancel_delayed_work -EXPORT_SYMBOL vmlinux 0xdb48767d override_creds -EXPORT_SYMBOL vmlinux 0xdb61c864 phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb745530 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb854a20 bitmap_endwrite -EXPORT_SYMBOL vmlinux 0xdb8d083f blk_integrity_merge_rq -EXPORT_SYMBOL vmlinux 0xdb9bca93 netdev_crit -EXPORT_SYMBOL vmlinux 0xdb9e803c lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xdbbdf0bd security_path_truncate -EXPORT_SYMBOL vmlinux 0xdbd0531c buffer_migrate_page -EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0xdc11bbc7 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0xdc13e1d4 padata_set_cpumask -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc214961 fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0xdc3c41a8 __crypto_memneq -EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 -EXPORT_SYMBOL vmlinux 0xdc40e221 blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0xdc423095 of_graph_get_port_by_id -EXPORT_SYMBOL vmlinux 0xdc461030 read_code -EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc60ed4a __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0xdc63d87f fb_prepare_logo -EXPORT_SYMBOL vmlinux 0xdc7c7d5b disk_stack_limits -EXPORT_SYMBOL vmlinux 0xdc818fb4 block_truncate_page -EXPORT_SYMBOL vmlinux 0xdc93e2e0 dev_mc_init -EXPORT_SYMBOL vmlinux 0xdc9498dd down -EXPORT_SYMBOL vmlinux 0xdc95796f __mdiobus_register -EXPORT_SYMBOL vmlinux 0xdca8a3d4 vme_slave_request -EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close -EXPORT_SYMBOL vmlinux 0xdcb764ad memset -EXPORT_SYMBOL vmlinux 0xdcbbeb42 blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0xdcc063f4 inode_sub_rsv_space -EXPORT_SYMBOL vmlinux 0xdcc24307 vio_enable_interrupts -EXPORT_SYMBOL vmlinux 0xdcff73b8 input_mt_init_slots -EXPORT_SYMBOL vmlinux 0xdd02d841 of_get_cpu_node -EXPORT_SYMBOL vmlinux 0xdd41ce52 from_kuid_munged -EXPORT_SYMBOL vmlinux 0xdd42442b dget_parent -EXPORT_SYMBOL vmlinux 0xdd45f163 elevator_exit -EXPORT_SYMBOL vmlinux 0xdd4a28a2 sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0xdd4f6a82 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0xdd5cee48 ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy -EXPORT_SYMBOL vmlinux 0xdd7e9e43 eth_type_trans -EXPORT_SYMBOL vmlinux 0xdd8a6213 mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0xdd9030af current_stack_pointer -EXPORT_SYMBOL vmlinux 0xdd955144 __debugger -EXPORT_SYMBOL vmlinux 0xddb3769b lockref_mark_dead -EXPORT_SYMBOL vmlinux 0xddc2f48c agp_alloc_page_array -EXPORT_SYMBOL vmlinux 0xddcc2ae9 __kernel_write -EXPORT_SYMBOL vmlinux 0xddf83891 memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0xde1bf029 mmc_put_card -EXPORT_SYMBOL vmlinux 0xde1d9442 pci_pme_capable -EXPORT_SYMBOL vmlinux 0xde24a711 __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0xde294574 pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0xde2d7cb4 blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0xde3add5b mb_cache_entry_alloc -EXPORT_SYMBOL vmlinux 0xde465cb2 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0xde48e9ca _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xde5bd08f mdiobus_unregister -EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0xde783883 pSeries_disable_reloc_on_exc -EXPORT_SYMBOL vmlinux 0xde7cd5d6 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0xde7fb11e scsi_print_sense -EXPORT_SYMBOL vmlinux 0xde91448c load_vr_state -EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages -EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size -EXPORT_SYMBOL vmlinux 0xded15995 simple_open -EXPORT_SYMBOL vmlinux 0xded85d17 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0xdee5b40c __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0xdee994f5 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0xdf094eae tty_port_destroy -EXPORT_SYMBOL vmlinux 0xdf179aa7 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0xdf1e4549 nobh_write_begin -EXPORT_SYMBOL vmlinux 0xdf247b9c mmc_release_host -EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf426210 devm_gpio_request -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol -EXPORT_SYMBOL vmlinux 0xdf6cedb6 down_write_trylock -EXPORT_SYMBOL vmlinux 0xdf7f22f3 param_ops_bool -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdf9ec315 of_gpio_simple_xlate -EXPORT_SYMBOL vmlinux 0xdfbd5060 __lock_page -EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init -EXPORT_SYMBOL vmlinux 0xdfd10aa9 unmap_underlying_metadata -EXPORT_SYMBOL vmlinux 0xdfef2e6f inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0xdff390c2 ibmebus_register_driver -EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xe0268239 lwtunnel_fill_encap -EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone -EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xe0769517 device_get_mac_address -EXPORT_SYMBOL vmlinux 0xe080f847 iput -EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool -EXPORT_SYMBOL vmlinux 0xe090ab7a seq_release_private -EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0c2f53b dev_alloc_name -EXPORT_SYMBOL vmlinux 0xe0ce71b1 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0xe0d50354 bio_reset -EXPORT_SYMBOL vmlinux 0xe10da8ca blk_mq_can_queue -EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -EXPORT_SYMBOL vmlinux 0xe12c3ce2 of_phy_connect -EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0xe13880a9 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xe17d2317 drop_nlink -EXPORT_SYMBOL vmlinux 0xe1861ebf posix_acl_valid -EXPORT_SYMBOL vmlinux 0xe18d9df5 of_get_pci_address -EXPORT_SYMBOL vmlinux 0xe18efb23 elv_rb_former_request -EXPORT_SYMBOL vmlinux 0xe19195a8 tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0xe198a347 padata_register_cpumask_notifier -EXPORT_SYMBOL vmlinux 0xe1a2e274 d_alloc_name -EXPORT_SYMBOL vmlinux 0xe1bdb8a7 napi_gro_frags -EXPORT_SYMBOL vmlinux 0xe1c8bd2b twl6040_reg_read -EXPORT_SYMBOL vmlinux 0xe1cd3f0a of_graph_get_endpoint_by_regs -EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xe20372ae radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0xe220ceb8 __debugger_sstep -EXPORT_SYMBOL vmlinux 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 -EXPORT_SYMBOL vmlinux 0xe2510319 inode_reclaim_rsv_space -EXPORT_SYMBOL vmlinux 0xe258baf5 unlock_new_inode -EXPORT_SYMBOL vmlinux 0xe28bc593 md_done_sync -EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t -EXPORT_SYMBOL vmlinux 0xe2aa678d init_buffer -EXPORT_SYMBOL vmlinux 0xe2b541f1 blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0xe2be5498 lg_global_unlock -EXPORT_SYMBOL vmlinux 0xe2d2603c netlink_capable -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0xe2f63760 jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0xe2f99fbe genphy_suspend -EXPORT_SYMBOL vmlinux 0xe314e8fb cpu_core_map -EXPORT_SYMBOL vmlinux 0xe317764d jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0xe3240cc5 tcp_recvmsg -EXPORT_SYMBOL vmlinux 0xe32f86dd xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0xe3418156 scm_fp_dup -EXPORT_SYMBOL vmlinux 0xe34fa6b4 kern_unmount -EXPORT_SYMBOL vmlinux 0xe375dae3 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0xe39264c8 phy_device_free -EXPORT_SYMBOL vmlinux 0xe3a52545 tty_port_tty_get -EXPORT_SYMBOL vmlinux 0xe3a53f4c sort -EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0xe3c73744 dentry_open -EXPORT_SYMBOL vmlinux 0xe3c96d1b sock_get_timestampns -EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xe3e8689a consume_skb -EXPORT_SYMBOL vmlinux 0xe3ee5688 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0xe3f42183 scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xe4262098 audit_log_start -EXPORT_SYMBOL vmlinux 0xe43affb5 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0xe46db607 neigh_event_ns -EXPORT_SYMBOL vmlinux 0xe47147b1 scsi_host_get -EXPORT_SYMBOL vmlinux 0xe47b0ddc netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0xe47d6d22 lwtunnel_encap_add_ops -EXPORT_SYMBOL vmlinux 0xe482bd7e nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 -EXPORT_SYMBOL vmlinux 0xe4b0837c ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0xe4c312a1 scsi_add_device -EXPORT_SYMBOL vmlinux 0xe4dc4acc file_update_time -EXPORT_SYMBOL vmlinux 0xe4dd9eb7 vio_disable_interrupts -EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array -EXPORT_SYMBOL vmlinux 0xe4eaab2e t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0xe4fbd267 tty_port_put -EXPORT_SYMBOL vmlinux 0xe4fe8ca1 _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0xe5020f31 lease_modify -EXPORT_SYMBOL vmlinux 0xe51b9fe9 cdrom_release -EXPORT_SYMBOL vmlinux 0xe5239f75 agp_generic_create_gatt_table -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe536d7cf to_ndd -EXPORT_SYMBOL vmlinux 0xe541ed3a abx500_remove_ops -EXPORT_SYMBOL vmlinux 0xe55c7501 ilookup5 -EXPORT_SYMBOL vmlinux 0xe55da1bf pci_enable_device -EXPORT_SYMBOL vmlinux 0xe5780fb2 ata_dev_printk -EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton -EXPORT_SYMBOL vmlinux 0xe57c1d74 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0xe583384e blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set -EXPORT_SYMBOL vmlinux 0xe58c3f8e i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0xe58d6339 write_one_page -EXPORT_SYMBOL vmlinux 0xe5a52726 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5d05779 get_empty_filp -EXPORT_SYMBOL vmlinux 0xe5d3abd1 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0xe5e6b9a3 bh_submit_read -EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xe5ff5c74 new_inode -EXPORT_SYMBOL vmlinux 0xe6144ef0 sock_setsockopt -EXPORT_SYMBOL vmlinux 0xe616e9a7 pci_bus_type -EXPORT_SYMBOL vmlinux 0xe653a07c genphy_config_aneg -EXPORT_SYMBOL vmlinux 0xe65a73d7 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0xe68208b2 touch_atime -EXPORT_SYMBOL vmlinux 0xe684e9c3 netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0xe68ef5b5 kobject_init -EXPORT_SYMBOL vmlinux 0xe697bf4d bd_set_size -EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe699ef0a devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0xe69a9df4 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0xe6a79c4b fbcon_set_tileops -EXPORT_SYMBOL vmlinux 0xe6e0c0ac tty_write_room -EXPORT_SYMBOL vmlinux 0xe6f5f5a7 rwsem_down_read_failed -EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock -EXPORT_SYMBOL vmlinux 0xe715539e netdev_warn -EXPORT_SYMBOL vmlinux 0xe71ec713 i2c_master_recv -EXPORT_SYMBOL vmlinux 0xe73e6538 __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0xe74757be __break_lease -EXPORT_SYMBOL vmlinux 0xe748a6c2 alloc_fcdev -EXPORT_SYMBOL vmlinux 0xe74b0fb9 dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0xe7598d9f mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0xe77e14fe nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xe7870aad d_add_ci -EXPORT_SYMBOL vmlinux 0xe795938e tso_count_descs -EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx -EXPORT_SYMBOL vmlinux 0xe7bc906d sync_inodes_sb -EXPORT_SYMBOL vmlinux 0xe7ce7439 _memcpy_fromio -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7d68a3f xfrm4_prepare_output -EXPORT_SYMBOL vmlinux 0xe7e073fe dev_add_pack -EXPORT_SYMBOL vmlinux 0xe7e10031 jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0xe7eee8d0 eth_header_parse -EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0xe82cc752 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0xe84ac6f0 in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xe862b455 kthread_create_on_node -EXPORT_SYMBOL vmlinux 0xe8650492 pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss -EXPORT_SYMBOL vmlinux 0xe87c2cc7 md_cluster_ops -EXPORT_SYMBOL vmlinux 0xe89df891 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0xe8b1e2f3 sock_edemux -EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xe8c438f3 proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0xe8c5d983 bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0xe8d95647 proc_symlink -EXPORT_SYMBOL vmlinux 0xe8e79c43 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0xe8e994f5 nd_device_unregister -EXPORT_SYMBOL vmlinux 0xe8ef0ff0 current_kernel_time64 -EXPORT_SYMBOL vmlinux 0xe90a076c fb_set_var -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe92b9e01 pcie_get_minimum_link -EXPORT_SYMBOL vmlinux 0xe9378d58 idr_get_next -EXPORT_SYMBOL vmlinux 0xe949a73b pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe960dc96 dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0xe9632d0d xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0xe971876a on_each_cpu_mask -EXPORT_SYMBOL vmlinux 0xe972fae8 locks_free_lock -EXPORT_SYMBOL vmlinux 0xe9775f8e tty_set_operations -EXPORT_SYMBOL vmlinux 0xe97a9fe3 dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0xe9a0a31d tty_devnum -EXPORT_SYMBOL vmlinux 0xe9adb1d0 vc_resize -EXPORT_SYMBOL vmlinux 0xe9aff606 pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0xe9b0348c pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0xe9d37cd1 scsi_register_driver -EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xea049ad2 register_netdev -EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len -EXPORT_SYMBOL vmlinux 0xea090164 loop_register_transfer -EXPORT_SYMBOL vmlinux 0xea17978c kernel_sendpage -EXPORT_SYMBOL vmlinux 0xea3c921f vme_register_driver -EXPORT_SYMBOL vmlinux 0xea3ec1f2 call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0xea5af08b fixed_phy_update_state -EXPORT_SYMBOL vmlinux 0xea5cbfcf scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0xea736960 jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table -EXPORT_SYMBOL vmlinux 0xea968c96 ___ratelimit -EXPORT_SYMBOL vmlinux 0xeac1e209 bio_integrity_prep -EXPORT_SYMBOL vmlinux 0xeaf1149b bio_put -EXPORT_SYMBOL vmlinux 0xeb011234 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0xeb03ca2f udp_sendmsg -EXPORT_SYMBOL vmlinux 0xeb09ab5d kobject_put -EXPORT_SYMBOL vmlinux 0xeb0d05e6 flow_cache_fini -EXPORT_SYMBOL vmlinux 0xeb31d2d5 vio_register_device_node -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact -EXPORT_SYMBOL vmlinux 0xeb4910e0 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0xeb764423 should_remove_suid -EXPORT_SYMBOL vmlinux 0xeb80ac80 loop_backing_file -EXPORT_SYMBOL vmlinux 0xeb8c7b7b cxl_use_count -EXPORT_SYMBOL vmlinux 0xeb9b6556 devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0xeba2a1f7 rtas_indicator_present -EXPORT_SYMBOL vmlinux 0xeba6b683 vlan_vid_del -EXPORT_SYMBOL vmlinux 0xebcab3a6 ppc_pci_io -EXPORT_SYMBOL vmlinux 0xebd79aea pneigh_lookup -EXPORT_SYMBOL vmlinux 0xebdf5a94 eth_validate_addr -EXPORT_SYMBOL vmlinux 0xec0d7653 tcp_proc_unregister -EXPORT_SYMBOL vmlinux 0xec387452 cfb_imageblit -EXPORT_SYMBOL vmlinux 0xec41b979 kill_pid -EXPORT_SYMBOL vmlinux 0xec48be9b max8998_write_reg -EXPORT_SYMBOL vmlinux 0xec7c4218 skb_free_datagram -EXPORT_SYMBOL vmlinux 0xec9fb7e8 alloc_disk_node -EXPORT_SYMBOL vmlinux 0xeca3a19f __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0xeca68ecf sb_min_blocksize -EXPORT_SYMBOL vmlinux 0xecb4e45a ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0xecbb926f xor_altivec_3 -EXPORT_SYMBOL vmlinux 0xecc42bc2 mach_powernv -EXPORT_SYMBOL vmlinux 0xecd982a2 __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xecdb7a95 input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0xece10e98 bitmap_start_sync -EXPORT_SYMBOL vmlinux 0xece2b793 skb_vlan_pop -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecf1ec53 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0xed130e8d from_kgid -EXPORT_SYMBOL vmlinux 0xed3dceb4 tcp_splice_read -EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xed61d6e4 inet_shutdown -EXPORT_SYMBOL vmlinux 0xed788f19 tcp_check_req -EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xeda2a217 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedbc4ab6 scsi_target_resume -EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedc410d0 udplite_table -EXPORT_SYMBOL vmlinux 0xedd0dc16 __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0xedd65a45 vme_new_dma_list -EXPORT_SYMBOL vmlinux 0xededa2ed make_bad_inode -EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long -EXPORT_SYMBOL vmlinux 0xedf9c43b scsi_remove_device -EXPORT_SYMBOL vmlinux 0xee04e838 elv_rb_del -EXPORT_SYMBOL vmlinux 0xee0d3e99 phy_device_create -EXPORT_SYMBOL vmlinux 0xee18a3c9 elv_dispatch_sort -EXPORT_SYMBOL vmlinux 0xee1f9702 led_set_brightness -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee330420 param_set_invbool -EXPORT_SYMBOL vmlinux 0xee5461c6 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0xee56e7b9 dmam_free_noncoherent -EXPORT_SYMBOL vmlinux 0xee6453fe devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee96b6d4 inode_needs_sync -EXPORT_SYMBOL vmlinux 0xee9c5348 inet_sendpage -EXPORT_SYMBOL vmlinux 0xeea2f9e3 bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0xeea47625 set_device_ro -EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeeaf4a34 handle_edge_irq -EXPORT_SYMBOL vmlinux 0xeec589be n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0xeef161aa groups_free -EXPORT_SYMBOL vmlinux 0xef1207f9 generic_file_fsync -EXPORT_SYMBOL vmlinux 0xef233dee scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0xef2ef0b8 rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0xef321e3a fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0xef36fc7c param_set_short -EXPORT_SYMBOL vmlinux 0xef467a7c up_write -EXPORT_SYMBOL vmlinux 0xef5998d7 scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0xef6923ba kfree_put_link -EXPORT_SYMBOL vmlinux 0xef6eee3f con_set_default_unimap -EXPORT_SYMBOL vmlinux 0xef9aecca tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0xefb35ed5 bio_phys_segments -EXPORT_SYMBOL vmlinux 0xefb957c3 update_devfreq -EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xefd821f6 elevator_change -EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0xefde1bbe flush_dcache_range -EXPORT_SYMBOL vmlinux 0xefe415d9 jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0xefea1217 ilookup -EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0xf0275469 free_cgroup_ns -EXPORT_SYMBOL vmlinux 0xf055cd1a generic_read_dir -EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be -EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier -EXPORT_SYMBOL vmlinux 0xf07fe9a0 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag -EXPORT_SYMBOL vmlinux 0xf09b7fdf get_user_pages_locked -EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int -EXPORT_SYMBOL vmlinux 0xf0a8237a radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0xf0abb742 param_get_short -EXPORT_SYMBOL vmlinux 0xf0c5d266 scsi_unregister -EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort -EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info -EXPORT_SYMBOL vmlinux 0xf109bc82 i8042_remove_filter -EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 -EXPORT_SYMBOL vmlinux 0xf11cd6ce down_interruptible -EXPORT_SYMBOL vmlinux 0xf12d3cdd pid_task -EXPORT_SYMBOL vmlinux 0xf135c65a xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0xf1372c1e try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xf13f65cd mount_nodev -EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init -EXPORT_SYMBOL vmlinux 0xf14e0140 nobh_truncate_page -EXPORT_SYMBOL vmlinux 0xf1687219 pm860x_set_bits -EXPORT_SYMBOL vmlinux 0xf183189b __ioremap_at -EXPORT_SYMBOL vmlinux 0xf1845466 devm_gpiod_put_array -EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps -EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf19c153a seq_escape -EXPORT_SYMBOL vmlinux 0xf1bdb50e mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0xf1c8f0e7 param_get_byte -EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1dd55fd dev_mc_add_global -EXPORT_SYMBOL vmlinux 0xf1de1570 inet6_del_offload -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf1eecc6d __elv_add_request -EXPORT_SYMBOL vmlinux 0xf20537c3 sk_stream_error -EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq -EXPORT_SYMBOL vmlinux 0xf217726d __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xf21a4881 empty_aops -EXPORT_SYMBOL vmlinux 0xf22881e8 lg_local_lock -EXPORT_SYMBOL vmlinux 0xf22f1fe2 setup_arg_pages -EXPORT_SYMBOL vmlinux 0xf23a6284 scsi_device_get -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf24a4a90 udp_lib_get_port -EXPORT_SYMBOL vmlinux 0xf24d319e of_platform_bus_probe -EXPORT_SYMBOL vmlinux 0xf2501f3c pci_find_hose_for_OF_device -EXPORT_SYMBOL vmlinux 0xf2719278 soft_cursor -EXPORT_SYMBOL vmlinux 0xf27a249e netpoll_cleanup -EXPORT_SYMBOL vmlinux 0xf27bf8bf mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered -EXPORT_SYMBOL vmlinux 0xf2a2b163 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0xf2b914d4 xfrm6_rcv_cb -EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2d31c4f force_sig -EXPORT_SYMBOL vmlinux 0xf2d7ccd2 write_inode_now -EXPORT_SYMBOL vmlinux 0xf2f24bee inet_stream_ops -EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform -EXPORT_SYMBOL vmlinux 0xf31c029d __devm_release_region -EXPORT_SYMBOL vmlinux 0xf322a206 bit_waitqueue -EXPORT_SYMBOL vmlinux 0xf32f4003 bdget -EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user -EXPORT_SYMBOL vmlinux 0xf33cb40f mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0xf3437eca netpoll_print_options -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf34992a3 zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf35cf20d qdisc_watchdog_schedule_ns -EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0xf3b1f3e9 ip_options_compile -EXPORT_SYMBOL vmlinux 0xf3b66a3d fb_validate_mode -EXPORT_SYMBOL vmlinux 0xf3cd69af pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0xf3de9124 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0xf3e0f53f fsnotify_destroy_mark -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3fe742d uart_match_port -EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep -EXPORT_SYMBOL vmlinux 0xf4450bdc default_file_splice_read -EXPORT_SYMBOL vmlinux 0xf44f6e68 dev_printk -EXPORT_SYMBOL vmlinux 0xf455ee82 ptp_clock_register -EXPORT_SYMBOL vmlinux 0xf464076e vfs_path_lookup -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf478095a max8925_bulk_read -EXPORT_SYMBOL vmlinux 0xf47ce60d pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0xf48c1f63 skb_copy -EXPORT_SYMBOL vmlinux 0xf492c491 __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0xf4b5d80f mmc_fixup_device -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf4f9aae4 pci_get_slot -EXPORT_SYMBOL vmlinux 0xf4fdad72 phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0xf504ced8 register_qdisc -EXPORT_SYMBOL vmlinux 0xf516007d account_page_dirtied -EXPORT_SYMBOL vmlinux 0xf51ae235 touch_nmi_watchdog -EXPORT_SYMBOL vmlinux 0xf51bf88b nf_hooks_needed -EXPORT_SYMBOL vmlinux 0xf5222143 _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0xf523075c dev_load -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf54d94e0 find_vma -EXPORT_SYMBOL vmlinux 0xf55b3b3d __arch_hweight16 -EXPORT_SYMBOL vmlinux 0xf567399b genl_notify -EXPORT_SYMBOL vmlinux 0xf58444c2 skb_pad -EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set -EXPORT_SYMBOL vmlinux 0xf5a62ecc _memset_io -EXPORT_SYMBOL vmlinux 0xf5b05cb3 devm_memremap -EXPORT_SYMBOL vmlinux 0xf5b0ef19 ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xf5d93d33 tcf_exts_dump -EXPORT_SYMBOL vmlinux 0xf5e1558d crash_shutdown_unregister -EXPORT_SYMBOL vmlinux 0xf5e6dffd from_kgid_munged -EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command -EXPORT_SYMBOL vmlinux 0xf5fccbc7 dev_warn -EXPORT_SYMBOL vmlinux 0xf6107780 uart_get_divisor -EXPORT_SYMBOL vmlinux 0xf61946ba __skb_checksum -EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl -EXPORT_SYMBOL vmlinux 0xf646ec18 swiotlb_free_coherent -EXPORT_SYMBOL vmlinux 0xf6512511 bio_flush_dcache_pages -EXPORT_SYMBOL vmlinux 0xf6578b04 twl6040_reg_write -EXPORT_SYMBOL vmlinux 0xf65dee3d max8998_bulk_read -EXPORT_SYMBOL vmlinux 0xf6626a2f sock_no_ioctl -EXPORT_SYMBOL vmlinux 0xf675df1c __vfs_read -EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table -EXPORT_SYMBOL vmlinux 0xf6c06d26 pci_platform_rom -EXPORT_SYMBOL vmlinux 0xf6c4bbec nf_afinfo -EXPORT_SYMBOL vmlinux 0xf6e9bda6 xfrm_lookup -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6ee6d40 sk_capable -EXPORT_SYMBOL vmlinux 0xf6f5e582 blk_mq_all_tag_busy_iter -EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf711ba0d lro_receive_skb -EXPORT_SYMBOL vmlinux 0xf717d8df pm860x_reg_write -EXPORT_SYMBOL vmlinux 0xf7237caa __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xf7386bfc submit_bh -EXPORT_SYMBOL vmlinux 0xf7584a9c find_font -EXPORT_SYMBOL vmlinux 0xf77c4011 vfs_writev -EXPORT_SYMBOL vmlinux 0xf7814bd9 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0xf78c8a54 mb_cache_entry_release -EXPORT_SYMBOL vmlinux 0xf7ab1189 seq_lseek -EXPORT_SYMBOL vmlinux 0xf7db0aa9 agp_bind_memory -EXPORT_SYMBOL vmlinux 0xf7f89d24 bitmap_end_sync -EXPORT_SYMBOL vmlinux 0xf8052ea6 agp_put_bridge -EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf812cff6 memscan -EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area -EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf84604e1 jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0xf84739e5 md_reload_sb -EXPORT_SYMBOL vmlinux 0xf8575b57 may_umount -EXPORT_SYMBOL vmlinux 0xf85bf031 phy_device_register -EXPORT_SYMBOL vmlinux 0xf88ede62 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0xf89597ff copy_strings_kernel -EXPORT_SYMBOL vmlinux 0xf8a7b869 param_ops_charp -EXPORT_SYMBOL vmlinux 0xf8b985f3 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0xf8c189c2 input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0xf8d04f09 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0xf8e05545 prepare_creds -EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xf8f107c3 param_set_bint -EXPORT_SYMBOL vmlinux 0xf9038bcf smp_call_function_many -EXPORT_SYMBOL vmlinux 0xf91271f7 insert_inode_locked -EXPORT_SYMBOL vmlinux 0xf915283e swiotlb_sync_single_for_device -EXPORT_SYMBOL vmlinux 0xf91a7020 tty_lock -EXPORT_SYMBOL vmlinux 0xf9207944 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0xf9409956 prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat -EXPORT_SYMBOL vmlinux 0xf9c37613 get_user_pages -EXPORT_SYMBOL vmlinux 0xf9f9f729 iommu_tbl_pool_init -EXPORT_SYMBOL vmlinux 0xf9fb149e blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0xfa10588d fb_firmware_edid -EXPORT_SYMBOL vmlinux 0xfa3221ed udp_add_offload -EXPORT_SYMBOL vmlinux 0xfa412c81 release_pages -EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0xfa57c628 neigh_ifdown -EXPORT_SYMBOL vmlinux 0xfa580663 simple_dentry_operations -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa59c5d8 scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0xfa76a468 dquot_alloc -EXPORT_SYMBOL vmlinux 0xfa800ca1 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0xfa9122a3 phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0xfa93f71d blk_start_queue_async -EXPORT_SYMBOL vmlinux 0xfaaec693 blk_queue_stack_limits -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr -EXPORT_SYMBOL vmlinux 0xfafd10f8 ata_link_printk -EXPORT_SYMBOL vmlinux 0xfb0ac9a0 scsi_execute -EXPORT_SYMBOL vmlinux 0xfb0f3876 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0xfb12aa99 input_release_device -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb798a25 dquot_acquire -EXPORT_SYMBOL vmlinux 0xfb7b246f xfrm4_rcv_cb -EXPORT_SYMBOL vmlinux 0xfb8f8855 touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 -EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock -EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbcbecad fbcon_rotate_ud -EXPORT_SYMBOL vmlinux 0xfbd11569 pcibios_fixup_bus -EXPORT_SYMBOL vmlinux 0xfbd706bc tty_register_ldisc -EXPORT_SYMBOL vmlinux 0xfbdd4c01 cpu_present_mask -EXPORT_SYMBOL vmlinux 0xfbe520bb pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem -EXPORT_SYMBOL vmlinux 0xfc078382 devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0xfc160368 genphy_soft_reset -EXPORT_SYMBOL vmlinux 0xfc318cd5 mach_pseries -EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap -EXPORT_SYMBOL vmlinux 0xfc3b160f mempool_create_node -EXPORT_SYMBOL vmlinux 0xfc53a126 xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xfc6159b8 csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0xfc6f3af3 ip6_xmit -EXPORT_SYMBOL vmlinux 0xfc9a87fb km_state_expired -EXPORT_SYMBOL vmlinux 0xfcb926cd kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0xfcbe175d inode_add_bytes -EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0xfcc3ae3d kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0xfcd5dae7 set_posix_acl -EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcf18168 agp_generic_alloc_page -EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0xfd205c71 submit_bio_wait -EXPORT_SYMBOL vmlinux 0xfd3257db tcf_em_unregister -EXPORT_SYMBOL vmlinux 0xfd854760 put_disk -EXPORT_SYMBOL vmlinux 0xfd93563c agp_alloc_bridge -EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xfdabe446 down_read_trylock -EXPORT_SYMBOL vmlinux 0xfdb22ea1 flush_dcache_icache_page -EXPORT_SYMBOL vmlinux 0xfdb45945 scsi_ioctl -EXPORT_SYMBOL vmlinux 0xfdb6cedc _raw_read_unlock_bh -EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be -EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0xfde335d3 compat_ip_setsockopt -EXPORT_SYMBOL vmlinux 0xfded48ed enable_kernel_fp -EXPORT_SYMBOL vmlinux 0xfdf09d2f __free_pages -EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe09670b pci_enable_msi_range -EXPORT_SYMBOL vmlinux 0xfe123532 no_llseek -EXPORT_SYMBOL vmlinux 0xfe146397 udp_del_offload -EXPORT_SYMBOL vmlinux 0xfe17047b kblockd_schedule_delayed_work_on -EXPORT_SYMBOL vmlinux 0xfe1e5d40 iterate_supers_type -EXPORT_SYMBOL vmlinux 0xfe26fc7c nr_node_ids -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe5dfc91 make_kgid -EXPORT_SYMBOL vmlinux 0xfe6d1b07 i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0xfe7bba76 blk_fetch_request -EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0xfe7dcd5b kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xfea003de __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0xfeccdb88 scsi_ioctl_reset -EXPORT_SYMBOL vmlinux 0xfed053c1 skb_queue_head -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfedea992 generic_file_splice_read -EXPORT_SYMBOL vmlinux 0xfee70a30 iget_failed -EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0xfef001ca i2c_use_client -EXPORT_SYMBOL vmlinux 0xff1765c7 rtas_call -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff3fbd48 free_user_ns -EXPORT_SYMBOL vmlinux 0xff536153 phy_read_mmd_indirect -EXPORT_SYMBOL vmlinux 0xff6656e2 eth_header_cache -EXPORT_SYMBOL vmlinux 0xff676405 mmc_flush_cache -EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff734fc0 seq_open_private -EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource -EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy -EXPORT_SYMBOL vmlinux 0xff9850db scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0xffa314dc dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0xffbf1595 __module_get -EXPORT_SYMBOL vmlinux 0xffbf7067 inet_recvmsg -EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function -EXPORT_SYMBOL vmlinux 0xfff0f104 netif_tx_wake_queue -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x038d8933 kvm_vcpu_block -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x085a5e28 kvm_vcpu_kick -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0cf0057d kvm_debugfs_dir -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0f544098 kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x12b39f43 kvm_flush_remote_tlbs -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1315783e kvm_vcpu_uninit -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x13525145 gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x13c009b3 kvm_clear_guest_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x168db652 kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1b3f116f kvm_read_guest_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1d4cbdda kvmppc_rtas_hcall -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1d7e7984 vcpu_load -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1e1ade8d kvmppc_core_dequeue_dec -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x20de5193 kvm_disable_largepages -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x23eaa790 kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x26157a9c kvmppc_sanity_check -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2715e6d8 kvm_release_page_clean -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x280f59bb gfn_to_hva_memslot -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x285a96be kvm_init -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x287ab5d6 kvm_get_dirty_log -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x32a02c8a kvm_write_guest_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x33215682 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x376054f2 kvmppc_set_msr -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x38263c72 kvm_vcpu_gfn_to_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3e1f72e0 kvm_vcpu_cache -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4784a7b6 kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x49d3bf24 kvm_write_guest_cached -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4d048360 kvmppc_book3s_queue_irqprio -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x581be050 kvmppc_core_queue_dec -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x587fa6c2 kvm_put_kvm -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x593136bb kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5d5b9690 kvm_is_visible_gfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6116297f kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x64161e24 kvm_vcpu_init -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x669da1fd kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x68224f6f kvmppc_xics_hcall -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6c89fe09 kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6e99dec4 kvmppc_kvm_pv -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7705e5b5 kvmppc_handle_load -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7aa64803 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7cadc9ca kvmppc_pr_ops -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x826cc438 kvmppc_prepare_to_enter -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x85a5a4b2 __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8712d5e9 kvm_write_guest -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8da01274 kvm_get_pfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8e1cd06f kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8e8d2c29 kvmppc_st -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x90fb04f7 kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x92216770 kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x939d2c7e kvm_read_guest_cached -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x944dbe75 gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x973a99da kvmppc_core_queue_program -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x97e9810e gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x98252492 kvm_release_page_dirty -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa04486b5 kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa8e5566b gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa93ac6fc kvmppc_unfixup_split_real -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xab59d373 kvmppc_free_lpid -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb2630c14 kvm_irq_has_notifier -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb30d5975 kvmppc_hv_ops -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xba33b0fa kvm_unmap_hva -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbc4bf5db kvmppc_load_last_inst -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbd6bf1c5 kvmppc_ld -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc0071919 kvmppc_h_logical_ci_store -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc70e4b59 kvmppc_claim_lpid -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xca00cf56 kvm_read_guest -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xca65ae77 kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xca6e4b15 kvmppc_handle_store -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcc44961f kvmppc_alloc_lpid -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcd1f36e1 mark_page_dirty -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcfd80302 kvmppc_gpa_to_pfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd1db9b5a gfn_to_pfn_prot -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd27c62ac kvm_read_guest_atomic -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd2c5964a kvm_get_kvm -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd55dc2f0 kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd6ef460a __kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd6f72014 vcpu_put -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd7e6005c gfn_to_memslot -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd7f84670 kvm_clear_guest -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xde00e996 gfn_to_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xdff0e887 kvmppc_core_prepare_to_enter -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe5470438 gfn_to_hva -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xef11cb35 __tracepoint_kvm_ppc_instr -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf4da3546 kvmppc_init_lpid -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf533d460 kvmppc_emulate_mmio -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf7ce32f2 gfn_to_pfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf7da2e26 kvmppc_h_logical_ci_load -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xfad4c841 kvmppc_core_pending_dec -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xfeab7dd0 kvm_io_bus_write -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm-pr 0xb95634d3 kvmppc_emulate_instruction -EXPORT_SYMBOL_GPL crypto/af_alg 0x27164360 af_alg_link_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x458f83de af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x4fc58a60 af_alg_cmsg_send -EXPORT_SYMBOL_GPL crypto/af_alg 0x5720ec08 af_alg_complete -EXPORT_SYMBOL_GPL crypto/af_alg 0x58716898 af_alg_wait_for_completion -EXPORT_SYMBOL_GPL crypto/af_alg 0x5f3cdbbe af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x773553f9 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0xb31d5f31 af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xbf153cff af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xcef8f1dd af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0xd5bc06c2 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x03f4c829 async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x7dfe6c5c async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xe61197f9 async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x546ada0d async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x6f3f9266 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x0066e34b async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x079ee9e0 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x902989d3 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x9caf8d9d async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x8e107a8b async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xffe93160 async_xor_val -EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0x3185767c blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0xe45378e0 cast5_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0xc5ee880d cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 -EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 -EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 -EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x56ebb10e crypto_chacha20_crypt -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0xd97c9123 crypto_chacha20_setkey -EXPORT_SYMBOL_GPL crypto/cryptd 0x229f52f7 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x3e9e4b64 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0x622372c3 cryptd_ablkcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x64babd21 cryptd_free_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x7b8f0384 cryptd_alloc_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x9356f904 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x96fec17c cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xac678ba1 cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xdecf8f5e cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xee95ffa9 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey -EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey -EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table -EXPORT_SYMBOL_GPL crypto/lrw 0x9b2f2587 lrw_crypt -EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table -EXPORT_SYMBOL_GPL crypto/mcryptd 0x03180703 mcryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0x471f7229 mcryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/mcryptd 0x4750e394 mcryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/mcryptd 0x8347667c mcryptd_flusher -EXPORT_SYMBOL_GPL crypto/mcryptd 0x8c6c740e shash_ahash_mcryptd_update -EXPORT_SYMBOL_GPL crypto/mcryptd 0xa8d7c458 shash_ahash_mcryptd_finup -EXPORT_SYMBOL_GPL crypto/mcryptd 0xc4955b09 mcryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0xcfb70db2 shash_ahash_mcryptd_final -EXPORT_SYMBOL_GPL crypto/mcryptd 0xf1350129 shash_ahash_mcryptd_digest -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3ddbea1b crypto_poly1305_init -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x423c7168 crypto_poly1305_final -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x54c81e66 crypto_poly1305_setkey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x6d467c96 crypto_poly1305_update -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x9227f0ec serpent_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0xb7eae73e twofish_setkey -EXPORT_SYMBOL_GPL crypto/xts 0xd8c74e4d xts_crypt -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1a22d62e ahci_error_handler -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1de89600 ahci_print_info -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1ef29251 ahci_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x35ab25fc ahci_init_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3d3ef619 ahci_sdev_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4c9b61f1 ahci_stop_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5b1b7432 ahci_qc_issue -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x74a8680c ahci_port_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7b3ec9cd ahci_dev_classify -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x81c17c4c ahci_start_fis_rx -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8c073c4b ahci_do_softreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ea1f407 ahci_check_ready -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x93ff3586 ahci_host_activate -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xaec7edc3 ahci_reset_em -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb16582ae ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbd4ad4f5 ahci_kick_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc95e6194 ahci_set_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xcb69bece ahci_shost_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe13495bc ahci_reset_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe9ad416f ahci_handle_port_intr -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xed611c25 ahci_start_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf53d4b79 ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf7a17d15 ahci_save_initial_config -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x0fcfd87f ahci_platform_enable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x21d326e9 ahci_platform_disable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3aa6f271 ahci_platform_resume_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3da72ea8 ahci_platform_get_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3e5c857f ahci_platform_init_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x57ae0ac9 ahci_platform_enable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6b2ddca3 ahci_platform_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6d353e31 ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x716aead5 ahci_platform_disable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7912a69e ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7db35a08 ahci_platform_suspend -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x93ac3fa9 ahci_platform_suspend_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb3423169 ahci_platform_resume -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xc4e1627f __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x21b7f52e sis_info133_for_sata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x211dbe2d __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x59202101 __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x930f9ed4 __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xb460e1dc __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0b184a89 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0e74af4c bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x16bc1620 bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1a5e20df bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x256aa896 bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x33d5abc7 bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3d7d887b bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x45633598 bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x52978fbc bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5500ee1f bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6677a235 bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x73c79651 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x82e7d620 bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x919fe402 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaecc9d3f bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb54a37dc bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb7f318f7 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbc5f375a bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc0ef7921 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdb34fb46 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdbb52452 bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe0c83536 bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe84ce5ca bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe8646613 __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x2a4af56a btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x33b60fde btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3a971e3e btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x45d62a51 btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xdfd7e7e3 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf735345c btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x12c6455e btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x246b0bce btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2c37ec23 btintel_hw_error -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5cc8a404 btintel_set_diag_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5f4bc12c btintel_secure_send -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6925133b btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7dfaeaa6 btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa94434c9 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xdb2afca7 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe5b72e72 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfba4e641 btintel_set_event_mask -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x14db731e btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1ada077a btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2c79d331 btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x32b4a0a8 btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3ca00fde btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x464130b4 btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x65deb14a btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbf9090bf btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc7ad90dd btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xca95abf7 btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe672fa44 btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x35c8a3e1 qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x7ad42856 qca_uart_setup_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xa12e6a6b btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xaa96f0be h4_recv_buf -EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x00e3f2eb nx842_crypto_exit -EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x0cddeb05 nx842_crypto_decompress -EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x1e2f14cc nx842_crypto_compress -EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0xcff2d08c nx842_crypto_init -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x02c8cb79 dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x438b37c3 dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x858ebedb dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xafec58ef dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc3c2d82b dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x3dcf51bc hsu_dma_irq -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x92bb8a3d hsu_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xa826d559 hsu_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x63ecd078 vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xa7831a9c vchan_tx_submit -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xe7f01332 vchan_init -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xf91ccc1c vchan_find_desc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x076b5f52 edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x10cfab04 edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1851b7f7 edac_mc_free -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x315de51f find_mci_by_dev -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x42005c35 edac_device_handle_ce -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4885634f edac_pci_handle_npe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x499c1d85 edac_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5b850fdc edac_device_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5bd47e42 edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6898b3b2 edac_pci_handle_pe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x793e4af6 edac_pci_reset_delay_period -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7e8eda7d edac_pci_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8c318e05 edac_device_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8d74f792 edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x91865d15 edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x936c2704 edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9483d741 edac_mc_del_mc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa1842ae8 edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa365a0b4 edac_pci_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc9189da0 edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd3cdab5f edac_device_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe55d5889 edac_mc_alloc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf0a0459c edac_device_handle_ue -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0d72d863 fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x214814da fpga_mgr_buf_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x230c9f1c fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4d4c93ab fpga_mgr_firmware_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x566b3176 of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf81af75f fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x2106f3fe bgpio_init -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x34098e92 bgpio_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x42e0836c __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x50020710 __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x01469c7d drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x266fbd71 drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7a6bb137 of_get_drm_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb3e856c1 drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd7bceca6 drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe7b900e3 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x4dc64b90 ttm_dma_unpopulate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x5b89290e ttm_dma_page_alloc_debugfs -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xa8f6203f ttm_dma_populate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x069f55b1 hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x21f83d28 hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2b438a37 hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4e1d60cf hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5851b33c hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5a78ff74 hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0x604a37a4 hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x61c8a0d9 __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x656b995c hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x67c4ec59 hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x68dd289a hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x713a0b3f hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7505a3ef hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7c9f9edf hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x863cf563 hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x87ea702d hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9392e2b9 hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x93b50c4d hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0x977a6fb7 hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x97bb2097 hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9f2f7e71 hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9fd5fd4a hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa2e5b615 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa535fa94 hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa9809b63 hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbd3a9a25 hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc4fe7f77 __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc81d0fa6 hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd1f501f8 hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xda92913a hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xdbbbe1c5 hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0xde926887 hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xeb178275 hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0xeb24610b hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf284d21d hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfd3f8bed hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0xe8c89af8 roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x2e9a6d8a roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x41b20698 roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x5cc47705 roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x9238d8bd roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xdb4f9037 roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xfed8e0d9 roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x32b8036d sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x530fedc8 sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x5940cf9b sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x930601eb hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xad54fa4d sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb23b5f49 sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xbf0a14eb sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf4561c58 sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xfb400926 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x2ac779ea hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2a227983 hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x37369173 hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x47fb37d7 hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5c878874 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x65d017ed hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6abf1885 hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7853142a hsi_add_clients_from_dt -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x79557f1b hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x84c6bc0f hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8ee8c018 hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xaa1f1999 hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb3a614e0 hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc8a4a7bc hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcb882221 hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcd352534 hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd22f9521 hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe06dca52 hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xeef795fe hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x505d9fb2 adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x53ea42d9 adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xfa7ad9a9 adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x166177e8 pmbus_do_probe -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2523ed2a pmbus_do_remove -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x83ac8266 pmbus_clear_faults -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8d361477 pmbus_read_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x99742712 pmbus_write_byte -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x9f3ce9b9 pmbus_regulator_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xaa3d07a5 pmbus_write_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xab2c02fc pmbus_read_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb39e3340 pmbus_clear_cache -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb95e8fef pmbus_check_word_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xbc2046f5 pmbus_get_driver_info -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xcc5dce26 pmbus_write_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe1465695 pmbus_check_byte_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe50bd8ba pmbus_set_page -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf73fc47c pmbus_update_byte_data -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4476d672 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4cb36c21 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x94a1635e intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa603cb92 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc8961e8b intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe6fb0080 intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf5c22ac9 intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x37aae441 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa2d65c7d stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe8121b0f stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xec7d0755 stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xfd6ff952 stm_source_register_device -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x0150f738 i2c_dw_probe -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x1442dece i2c_dw_read_comp_param -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x5f2f3744 i2c_dw_disable_int -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x9ba96660 i2c_dw_init -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xbe9b24cf i2c_dw_disable -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x3252fae2 i2c_add_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xe81642be i2c_del_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x062802cd i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xa679ca4d i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x56fa0add bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x5a3ac8fc bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x7e7745f1 bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x1e155086 ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x3a49baed ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x3a5514e6 ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x412307eb ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x848c3fbb ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x9950f8c8 ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xb90fb6b1 ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xbfc7d005 ad_sd_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xddac0aec ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x58f7de36 iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xb8bf1031 iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x7fd0889f ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x94d464e8 ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x0487e43b bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x76d9ad27 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xc1caf8c4 bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0089883c adis_write_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x01c53d0b adis_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x1a6381d2 adis_initial_startup -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x2d1b86ec adis_probe_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x531d689b adis_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x761ddff4 adis_init -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x7fcacdf9 adis_read_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x80e55525 adis_reset -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x85ab2240 adis_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xdd6074c1 adis_update_scan_mode -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xdd9d5423 adis_check_status -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xfac299ad adis_remove_trigger -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0c06befb iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x13245201 iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1a3b4be6 devm_iio_device_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1eb3289f iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x22189456 iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2bb498dc iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x414c24cf iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4369b932 iio_scan_mask_query -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x47136f72 iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x55bc7d7b iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x65466f08 devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x67f56356 devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x68765a1f devm_iio_device_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x69e34af8 iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7a6742d2 iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa784081c iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaa97add3 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb127819f iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb420879d iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc45a3bea devm_iio_trigger_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc541083c iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc686312b iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcca379b3 iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xccf125f1 iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd4ff527f iio_update_demux -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd561c490 iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe6dd625e iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xeae7fc08 devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf123acd1 iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf8899aa1 iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xff85d136 iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xcd34a8b9 input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xb56453b6 matrix_keypad_parse_of_params -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x567d8e1d adxl34x_probe -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x001f778f cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x500a2d64 cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xfa6e387f cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x360357a1 cyttsp_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x80ac2c42 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x85cca074 cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x6b8784ac cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x7cc7679e cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x08a6487e tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x12bb6fa7 tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x497bcd60 tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x6b6f7cd9 tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x058bc9d5 wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x07e51eb6 wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0acbbbda wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x122cfcbb wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6c6ab0a0 wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x71d4adfa wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa0c0b03e wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xab39fdf1 wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb6b14838 wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb9b206ca wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbfd1786e wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe29117c0 wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x465c77d7 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5d1334e4 ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x66bae642 ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x83de42e3 ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb351c94c ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xced23819 ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe4e1b3c7 ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xfc1e6260 ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xff3b21e0 ipack_device_init -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0cd48b91 gigaset_stop -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3750fe9b gigaset_m10x_send_skb -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x38f6c784 gigaset_if_receive -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3e27eff7 gigaset_initcs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4623e9f8 gigaset_freedriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4d3bb541 gigaset_m10x_input -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x503fea08 gigaset_shutdown -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x5a09621d gigaset_fill_inbuf -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x6acb86ef gigaset_blockdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x818134ab gigaset_add_event -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x82c02f3b gigaset_skb_sent -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x9df47ef7 gigaset_freecs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc67b3d7c gigaset_initdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc89a8d18 gigaset_skb_rcvd -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xcbb74113 gigaset_isdn_rcv_err -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd56602c3 gigaset_handle_modem_response -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xdf929227 gigaset_start -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x44e85b09 led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x4536bb8e led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa30174ee led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb9b10ff8 led_classdev_flash_register -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xd12f7a7a led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xddb9ac31 led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x24cef6b6 lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x285cba1c lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7ab807f4 lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7ec5f776 lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x871e16d3 lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x91984401 lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa0a6d5e7 lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xaa7aa8f8 lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe9e9d700 lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xeead6e00 lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf3f8bab1 lp55xx_unregister_leds -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x0a0527be wf_register_client -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x6a8e22e2 wf_put_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x74f59771 wf_get_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x75147afa wf_set_overtemp -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x7afd9895 wf_get_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x7db857b7 wf_unregister_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xa86d41cb wf_put_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xb2c3d5d6 wf_register_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xbcace2a5 wf_unregister_client -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xbd533dfe wf_register_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xed82a14f wf_clear_overtemp -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xef0ccba5 wf_unregister_control -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x04f0fcd0 mcb_alloc_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x0e05ebc3 mcb_bus_put -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x167f57be mcb_get_irq -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x24c50c56 mcb_free_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8e13fade __mcb_register_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x9d5a24d2 chameleon_parse_cells -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb9d94165 mcb_device_register -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xceeba920 mcb_release_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xdee5f3b2 mcb_bus_add_devices -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe24e12a4 mcb_bus_get -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf0d05148 mcb_request_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf6380603 mcb_unregister_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf81e8439 mcb_alloc_dev -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x021811cf __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0f0677b8 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x10e6a889 __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1154f7a1 __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15aa8e40 __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x174c2a29 __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2205bcf9 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3fc7cb7f __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x469f38de __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4ba51ecf __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5b2a89c7 __tracepoint_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d950f2a __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5e21030c __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5ed04550 __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6eef9654 __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x74ab7b0f __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x84efb763 __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8fe32879 __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x91f02667 __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x93f7fc02 __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa1de5277 __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa81bf581 __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7d964de __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbbace2cd __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc6673631 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8a2f711 __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe3de2ba2 __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe902838d __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec919105 __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeea27f46 __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfad1ec73 __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x27d09954 dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x39afd7ed dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4e938f8f dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5961f630 dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5e89443d dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x881f505f dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa8ab8dc6 dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa9a5f4f9 dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xce4727c2 dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x632f81cc dm_bufio_client_create -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aba7f5e dm_bufio_get_block_number -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9310ba06 dm_bufio_release_move -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9c256008 dm_bufio_get_device_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa1d2413a dm_bufio_read -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa448e19f dm_bufio_prefetch -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xafbda3f3 dm_bufio_new -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcbb1bae2 dm_bufio_get -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5324e9ff dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5daacbbd dm_cache_policy_get_hint_size -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xb85b6e3d dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xd376f583 dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xda4db9e5 dm_cache_policy_get_name -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe0167937 dm_cache_policy_get_version -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe6004203 dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x5f9ef0d8 dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xf5f0eb2d dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4430764e dm_rh_region_to_sector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x45ab972a dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4d9c7087 dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa68e1f06 dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa73ea17d dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc48b3fc6 dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc91521ac dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd269d592 dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd2fd8221 dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfad9d53a dm_rh_get_region_size -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfc62ef4e dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x17c36f29 dm_bm_checksum -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42dbdfc3 dm_tm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49b35849 dm_sm_disk_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x55b4bd4d dm_tm_create_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x59e8db90 dm_block_manager_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x827a42f4 dm_tm_open_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9f624559 dm_sm_disk_open -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xafeda29f dm_bm_write_lock_zero -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd29923fb dm_tm_shadow_block -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf375d009 dm_bm_write_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf5455120 dm_bm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize -EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x00ce6af1 saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x0568d49c saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x3817a16c saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4b6c2f68 saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6c3f50f1 saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb604252b saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xbe7076bf saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd418321b saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe65edb5e saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe87ff7b6 saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0afd9fa5 saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0e2958a8 saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x444c55c8 saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x6a082294 saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x874ae80c saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x94d5fed7 saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x99cd358e saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0ab6dbdc smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x23e06c72 smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x57bff1ca smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5ef07e14 smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x68bb6036 smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x69c65e08 smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8af1079a smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8d273612 smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x96fc876f sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9ac8cfb5 smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9b84c94c smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9bec8614 smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa2018064 sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbdbc3ef3 smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc4559454 sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf93c75d0 sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfd1d44ae sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x049faf18 as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x045da81b cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x7a46f91d tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/media 0x09931830 media_entity_create_link -EXPORT_SYMBOL_GPL drivers/media/media 0x120b4c58 media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/media 0x39b9eeda media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/media 0x48af02cb media_entity_get -EXPORT_SYMBOL_GPL drivers/media/media 0x56523b91 media_entity_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/media 0x5ae6deb2 media_entity_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/media 0x5e9dc516 media_entity_put -EXPORT_SYMBOL_GPL drivers/media/media 0x86300c36 media_entity_init -EXPORT_SYMBOL_GPL drivers/media/media 0x894d9831 media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/media 0x90f9dffa media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/media 0xbbc9eb9f media_entity_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/media 0xc29ba483 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/media 0xd2617be5 __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0xd74d1ebf media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0xdc76d106 media_entity_cleanup -EXPORT_SYMBOL_GPL drivers/media/media 0xed357899 media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/media 0xf0561c35 media_entity_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/media 0xf6c0487e media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xee08d4ca cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0a825095 mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x23ad67b0 mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2f2404f8 mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x464333ec mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5fa54a11 mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x68b3ca0e mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x97598a18 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa7608b0c mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xab2e9ecc mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb32de6ae mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb42ba362 mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbc7b4871 mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd418ac3b mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd8548849 mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xdb98e961 mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe61c6210 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe85fcb1c mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf8eac01b mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf8f6895d mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x022c3988 saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x053a7361 saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0bd05625 saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x19cdccb3 saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2e1aca82 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x545835d9 saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6f612d6a saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x77ed29b6 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x842b5288 saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9d2ad2f6 saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa6d29f51 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa7cdec9b saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xacb67b20 saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xafdf59cb saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb26644c0 saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcc300fba saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdc9fb3ae saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xec2e1447 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfcac5b8e saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x28452e97 ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x61e3a186 ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7e4d1e74 ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xaa88096d ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd94dba17 ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xe3c7001c ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xf3dd0e06 ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x03aabc5b xvip_clr_or_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0b2585ce xvip_get_format_by_fourcc -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0eda09c0 xvip_cleanup_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x17d46346 xvip_enum_mbus_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x29809f0f xvip_enum_frame_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x490bd11c xvip_get_format_by_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x4f836388 xvip_init_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x588e98bf xvip_of_get_format -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x71dfb481 xvip_clr_and_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x056b02ca xvtc_of_get -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x83f69227 radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x9ad2fabf radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x03dc6149 rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0ee5400c rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1525d3e8 ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x250a8d9a rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5071f0f0 rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x549225f8 ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6bbb22db ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7a6e20c5 rc_open -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x991bcb2d rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9beae8f7 ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9da86d2a rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa60c0e60 rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa8c3d59a rc_map_get -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc60e2e9e rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcae40753 rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe42e1e3a rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe5090737 rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe7912406 rc_close -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf94aefd3 ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x04e49d88 mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xb1eba118 microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x01a917dc mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x07c1993c r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x6d8122a3 tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0xe3902586 tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xaa883c77 tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xcdf823e5 tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x4003fa5b tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xa72931db tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xd15856f5 tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x4ea79b85 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x4eddad58 tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x423185b0 simple_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x00118c24 cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x14bc6826 cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x16c97ed1 cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1af5d136 cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x38c36397 cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3d56fd71 cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5460bda9 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x568e7f31 cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x67b5000d cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6a988640 cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x825dc7f4 cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa6e39a15 cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xaf18c674 is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbd0910a6 cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc43cc93c cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcbd1a73f cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe02f4a62 cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf5bd507d cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf6022615 cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf8a0f939 cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xf040fd06 mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xf36a65f4 mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x15f7e76a em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2ec0dc58 em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x43840c89 em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4fb90762 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x56d3a73b em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5a54f027 em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5e4d7b7d em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x71f30697 em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x87dcb462 em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa3b8ef29 em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa422f327 em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa741b7c0 em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc7e4a043 em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd6b3684c em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdc8e4cb2 em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe60ad313 em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xec94a6ac em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf7bed4c6 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x15a6f238 tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x44e46cb2 tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x9479c2dd tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xbb025e08 tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x07f75acc v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x53ffaf68 v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x64a7ee67 v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x8fcfcfdb v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf9f793f3 v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xfb28854d v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08982d59 v4l2_match_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x03a03d96 v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x2f9dfb99 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x16a03c77 v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x24f34eda v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x257e059b v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x28e87bf8 v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x33779f86 v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3a71d9d1 v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x408cac72 v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x452a3eda v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5cd93002 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5d4469eb v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5dacd749 v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5e107873 v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x64862bb9 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x87cbf854 v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8a87faac v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8e70b00e v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9821afa4 v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9bb60f23 v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb48b3473 v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb5ae2a83 v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb5b4aad9 v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb6cc4e8e v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc3bb56f3 v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6c4a446 v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd0db31c3 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd4aef6b7 v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd6e00d57 v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x03e37950 videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x092b448a videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1464471c videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1f7b2da1 videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x23cdbc04 videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x318c9352 videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3ffa4627 videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x44506efa videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4a08f900 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6c82f114 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6fd7986a videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x714587dc videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7528a1e9 videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7f418ba3 videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x83f17db1 videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8e6afe9a videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x95aff85f videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa3c12e9e __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa6946284 videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb03cb03a videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe374274a videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xec794638 videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf3ebb76b videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfd59ad0f videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x58826a1c videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa4cb0d95 videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xb2059f9d videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xc03db43d videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x17466028 videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x80258852 videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x89471d25 videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x038f1ef0 vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x069469e4 vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2b39d990 vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x399e294f vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x4292cfec vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x44a93fb8 vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x5466622d vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6cfdb26c vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x83214b48 vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x9ec85c25 vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xaa0a4239 vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xafd405d0 vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc22037be vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xce6f6488 vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd13ab749 vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd2b15649 vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xdf2d280f vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xee8d08f3 vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x1c410d1d vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x6e4e37c1 vb2_dma_contig_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x52a0d123 vb2_dma_sg_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xa9fbb901 vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd30ec30f vb2_dma_sg_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0x45a552e4 vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0ce72967 vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x12823e66 vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x170963f6 vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x255cd7e8 vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x29b3ea77 vb2_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2a9d0584 vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2bf33292 vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x43791782 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4f2bcb1a vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x59445448 _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x60f2d2bf vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x73edf1d6 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x74c5ca08 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x75f73c14 vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8a66c2e2 vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8e827777 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8f1b4b93 vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9691b9f0 vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9b4be95c vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa40da1df vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xab73aaac vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xae280e05 vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb1a54a54 vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc0c66123 vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc157fea2 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc7661d18 vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xcf34f1dc vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd0efa6b0 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd608c754 vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdc30af75 vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdee27ed8 vb2_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf9bec15c vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x0e73b112 vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x06e991a4 v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x133adfc4 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1ef3a428 __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x21611f92 v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x21eeba54 v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x258a81b7 v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x25ff64fa v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x27f41000 v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ab9d732 __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4866aef4 v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e73fa8d __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x518092be v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x657a3ddd v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6f579fe0 v4l2_compat_ioctl32 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x701fd107 v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74a017c5 __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7bfda7d4 __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x83242700 v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8c857396 v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x925dad8f v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x98f8b65b v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa21eaa64 v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa2eadd3a v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa3c35ef5 v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa508a705 v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa690e134 v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaca2544a __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaf0ddd7e v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb16fd564 v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbd74f8bb v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6429d8b __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd303203a v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdb5bb788 v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xddaf995d v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5ccb42f v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xef547a30 v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfceb6780 v4l2_device_register -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x17e427ba pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x9c255904 pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xcb1f5d07 pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x1f67932d da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2636ea9f da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x6f6d3445 da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xab0d30aa da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb4a0eec8 da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xbc291616 da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xd93d86d6 da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x37da8482 kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x47c30efb kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x52b5d461 kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x616c99c8 kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x778f678e kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x884631c8 kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xa6e62d20 kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf932d20c kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x0abba2bc lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xedc25d43 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xf519b1a0 lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x074b9ff0 lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x093bd54c lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7d5f2968 lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xbc594344 lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc3c24e99 lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xd582124a lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xe2129a9b lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x0202910e lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x123d3a80 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xfc84677a lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x015d8522 mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x3bb08188 mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x41e7ce02 mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x53e83b6a mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x9d265c32 mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc1ee7c58 mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x054dcb71 pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0a626328 pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x252de7a9 pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2feaa13a pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x48c660b6 pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x542a7dc1 pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x84f2906a pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8c6a4fdb pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8d140fd7 pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd694b838 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdf462485 pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x0de18829 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x2065c1e4 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x160f59ec pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x2907ffc2 pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x4706693d pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x4b3e374a pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x59862386 pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x023d6fe4 rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x04643c39 rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x05611dc8 rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0c6a6dab rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0de58c30 rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x19a7a723 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x28b73e4a rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x351a3c41 rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x374c0c61 rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3ef8ba08 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x46e95fe9 rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x573be420 rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x732b85c3 rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x87fb0317 rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8a0a1191 rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa9f1ac90 rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xae32f215 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb036ece5 rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb1ad9ff4 rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc3dca396 rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xcfcab635 rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xdc3d0cf0 rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf390054c rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf6d02f5e rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x03f1c217 rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x0a0124ff rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x50421cd1 rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x50b28be9 rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x63faeb28 rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x69ef1bf8 rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x72edb7f4 rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x80fabca7 rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xadd5ef52 rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xd5af441e rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xec2ea2ae rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xf49cab5c rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xf52bb530 rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1a336f27 si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1b3768d6 si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x225c5e46 si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x368aa8c5 si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x40666ed5 si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x43d71d76 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4ce92f9a si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x527c1790 si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x673cd73c si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x69f6ed18 si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6cd99016 si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6cf7d904 si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7073d398 si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7551c0c3 si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7573fe0f si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7f5ef45f si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x82fa59e3 si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8653d7ac si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x93c932a5 si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9a895545 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9c424b15 si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xaed0d97c si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb0e954ca si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb7a161d8 si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc7492e9d si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd059e120 si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdeca74a5 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdf7ba7fe si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdfbc8672 si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe04c21f1 devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xefd250ac si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf0f475f3 si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfaf80be0 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfcebf81c si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x14248960 sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x1887e6ad sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x7b0806f4 sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x81029f31 sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x95f3de59 sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x02b4ce50 am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x1e7dfe99 am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x39d0ce25 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xdb1251f3 am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x1fe463f8 tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xc7a3fc01 tps65218_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xc8bb2004 tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xe0d883a1 tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xfa3ab7b9 ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x3547633c bmp085_regmap_config -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x3ec5281c bmp085_detect -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x8af4e4fa bmp085_remove -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xd8baf7a3 bmp085_probe -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x10f9d863 cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x66de19d5 cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xa7181802 cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xd5e593c4 cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x0179bab2 cxl_perst_reloads_same_image -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x1a490702 cxl_unmap_afu_irq -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x203a66b1 cxl_fd_open -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x21e2ee26 cxl_pci_to_afu -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x251c612e cxl_get_fd -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x27ad61be cxl_allocate_afu_irqs -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x2e362ee8 cxl_fd_read -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x32f3944b cxl_fd_poll -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x455dde0f cxl_psa_map -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x6740dbad cxl_fd_release -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x692a354e cxl_stop_context -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x6ee446dd cxl_fd_mmap -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x7a1855b6 cxl_dev_context_init -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x7c8e2c7e cxl_afu_reset -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x7f3ac16d cxl_release_context -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x848457d4 cxl_start_context -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x8486ad7c cxl_get_context -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x8740bc47 cxl_psa_unmap -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x942f4230 cxl_read_adapter_vpd -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xa0a916fa cxl_start_work -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xaeb02785 cxl_set_master -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xaed87706 cxl_free_afu_irqs -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xc1bffa1c cxl_pci_to_cfg_record -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xc359247d cxl_fops_get_context -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xc620ac23 cxl_process_element -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xdffd2910 cxl_fd_ioctl -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xe3f041f7 cxl_map_afu_irq -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1ccd27da enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1e564984 enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x21ba9afa enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x4dd2bea8 enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x594247fa enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa2e17ffa enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xbcdb7a07 enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xebd61f34 enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x03cda539 lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x08a8fe47 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1c00d5c9 lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5b5f2129 lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5c610b2b lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xdc892e60 lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe9dee4ea lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xebc9d79f lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x611799db st_register -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xe73dfb4f st_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x15759da9 sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1f42e121 sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3bf6cf68 sdhci_send_command -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x40bbd5dd sdhci_enable_irq_wakeups -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4192de91 sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5efbd332 sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x788e587d sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x86f6f1ac sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8b76131d sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x945bcd40 sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xaff0df08 sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbafbf0e1 sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe1e608e0 sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfc71a091 sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0436ab94 sdhci_get_of_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0adbad76 sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x1099076a sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x26afe329 sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x3f127f07 sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x9f5bbf34 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xdc21cbc0 sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe8134ad1 sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xffc8392b sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x50e359f4 cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x92d4598a cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xadfd7c62 cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x41902110 cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xb269ee96 cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xcc3ba546 cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x23ae8811 cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x40a3ad81 cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x7d046699 cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xef516809 cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x01473681 mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x01e1a4ca mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x06d5c02c mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x093897b3 mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0c43b18f mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x177191a8 mtd_erase_callback -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1a7a1f36 __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1b213bc3 mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x205a0290 register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x26b8d35f mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x27a74357 kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2ac0e0ae mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2d7fc053 mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2dd6bc68 get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x417eab74 mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x455f9802 mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4d8a5e6a mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x513697c7 register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x52eea47c mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5e3b3e92 mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x61a57e95 deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x65a756f9 unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8fcfa053 mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x924f5873 mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9754daff __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x99f4aeb9 get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9a9c1565 mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa09ecc30 mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa75dd6a3 mount_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xac03910e mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaf2ef6c5 mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb2b67a10 mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb5399c67 mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbf076348 mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc70f1322 mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcb0d4018 mtd_is_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcbcb726e __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcc652f56 mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd40ee7f2 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd4267589 put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe921f3f5 mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfbd5f8cf mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x39895af2 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x48927982 add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x898f5a00 deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x9ddd55f4 del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa29f769e register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x50919d2b nand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x99a4ee9d nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x82fe37f3 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x3dbfa79f onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xff3a4b1d onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xd560b47a spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x03869027 ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0a4f0c41 ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x29c17993 ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x354d2e65 ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5d002b0b ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66ed7c09 ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6dc959c5 ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9304e2bc ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x93d65557 ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa08ea705 ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa41854a8 ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb7c5b346 ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcd71bdcf ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfead5889 ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xb5938dee devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xc7a10e37 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x253823da c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x44811297 c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6d9a8b88 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xc02bee2c free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xccc5ec0b unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xedd3d222 register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x04f7954e safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x08ae726b can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0db8394b free_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x1348f9b9 can_led_event -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x1814606b can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x24afa867 alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x560d4e0c can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x6d5047d7 devm_can_led_init -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x6dbf2f3e close_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x83c7ade7 can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9279cb86 unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa0aa5107 can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa271a3ec open_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa90e9eaa alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb02fa5e7 alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb0b3653d register_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb0b4150b can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xd01f0fd3 alloc_candev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x0790242c register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x086dac70 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x28ec8f8d alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x494c9ed9 free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x0b48b2c4 unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xbc5aa5c5 free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xc224a091 alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xfe25a473 register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x12078886 arc_emac_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x4ac55bc0 arc_emac_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00f55bf9 mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02b2638c mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06107454 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x064fe345 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0666c900 mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x089ac577 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a9860e3 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ce1f0f0 mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ee1a571 mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10a8c7e5 mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x147623e1 mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18b02066 mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19704945 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1983223d mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b1fe909 mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20d7c878 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21a82e1d mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23c44bea mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2676383f mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2dad1940 mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x316a4ec2 mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3383ed5c mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3598329b mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36a16fa6 mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x373183be mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37787b13 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38f8cf80 mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39756b3f mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a05ad9b mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3aeaa2f2 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c80323a mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3cfbcfba mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d477ac3 mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x400bad7a mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40db126e mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x437cc79f mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4397e7c5 __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4675508e mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b0d1b57 mlx4_map_phys_fmr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4daaa155 mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4fae464b mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5220a2f6 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54938ba3 mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x556d14d1 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x592ea3ac mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59bfd20a mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a77ff88 mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5aca0694 mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5cd65a4b mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5fa1fe2f mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x603a176b mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64003ad5 mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x649baa92 mlx4_fmr_unmap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65c32a25 mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68a30850 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68f64cb6 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a494b56 mlx4_fmr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d5c73b1 mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7006f4ed mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7054377c mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72f43bb9 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73882827 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x773a09b5 __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b357b21 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d144977 mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x842ae4ba mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84ad8158 mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8888a4fd mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88b98d7c mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c95d0d5 mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8db19a7a mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8dcb000b __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e31d579 mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e7c1e73 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8fce3b90 mlx4_fmr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x933912d0 mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94c08633 mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98de04a3 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99126451 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9bbf4ee7 mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa14ff0e4 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa28f9521 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa631ad54 mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabf41bed mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabff0fbe mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf73794f mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb08905ab mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb13aa1a6 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb67e7e72 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8db8f7a __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbae2f92f mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbeb7a08c mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfb05c3c mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc14ce127 mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1de828e mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3ac1aff mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5044af8 mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5048ae1 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8328a1e mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc846df85 mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc87e18c8 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9b5b79e mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb4d3bdc mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1864feb mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd40e23c0 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb7002fa mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdbd10244 mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdcd9c15e mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdcdac7e7 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdfd4eb62 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe607cc97 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea60887c mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeacf6cc2 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec9b2bd8 mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2c437da mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa07fffd mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfac207d5 mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb06fc76 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc39c0ea mlx4_fmr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc811376 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcb8d049 mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd885b70 mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe021ffc mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe52a504 mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x003f7a58 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x033ab659 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05671c1d mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0963e5ab mlx5_set_port_proto -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09905a9d mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12bf131a mlx5_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b2b116a mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x299a6a13 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a61aade mlx5_core_create_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32c1a7af mlx5_core_mad_ifc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36944af9 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c8f9d53 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44655d21 mlx5_query_port_proto_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f80783a mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61b55512 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69f59730 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6dadacb3 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6faa270e mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77df68b4 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a674306 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b484940 mlx5_query_port_proto_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x851eedb8 mlx5_destroy_unmap_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8748abb1 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f3827ef mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa17cad80 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa212bd5d mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4af458d mlx5_core_page_fault_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa89301e0 mlx5_core_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaaba72d0 mlx5_create_map_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba3d93f8 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc4ba024 mlx5_core_destroy_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbdaf69b2 mlx5_core_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1f148d8 mlx5_core_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2e8f6e4 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8ded48b mlx5_core_eq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd8a51a4 mlx5_query_port_link_width_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3f5db0d mlx5_query_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee85269a mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeff60d6e mlx5_query_vport_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0a65c13 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2298a70 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf557ec36 mlx5_core_xrcd_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf659f0f7 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd0caad8 mlx5_query_port_proto_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd3b2876 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x5e28947e regmap_encx24j600_spi_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xac144314 regmap_encx24j600_spi_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xbe73ce51 devm_regmap_init_encx24j600 -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x093b2b16 stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x9ed37bd7 stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xa7f3d725 stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xbcf5fe83 stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x459fd3d1 stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x5e305336 stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x9090dc75 stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xe19e156b stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x02d549da cpsw_ale_add_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x085d6424 cpsw_ale_del_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x47677aba cpsw_ale_start -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x4fc9951e cpsw_ale_control_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x688edfc9 cpsw_ale_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x8718b15d cpsw_ale_stop -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x8defabff cpsw_ale_flush_multicast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x9c8eede6 cpsw_ale_control_get -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xa4dc4ded cpsw_ale_add_mcast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xa9fae1b7 cpsw_ale_del_mcast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xb4d8c040 cpsw_ale_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xbc881355 cpsw_ale_dump -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xc08a1b6e cpsw_ale_add_ucast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xd4a5067a cpsw_ale_set_allmulti -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xec34725d cpsw_ale_del_ucast -EXPORT_SYMBOL_GPL drivers/net/geneve 0x3e9f15e5 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/geneve 0x6bc091e3 geneve_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x2116de1d macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x3be90f42 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x994170c0 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xdee15960 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvtap 0x14a925f5 macvtap_get_socket -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x195a7ca2 bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2a2bff25 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x367b4ba9 bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x49145b19 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa07b10fc bcm_phy_enable_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa51e82a0 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xacd524ea bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xae29278b bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb9b4f6d1 bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe00476cf bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x13a631fd mdio_mux_init -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x248d105d usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x24ffec67 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x44902a3a usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xdb56c6b5 usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x25cc5edd cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x26a61b5b cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x37f03624 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x45c627e1 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x4b3b7e96 cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x56360577 cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7679fd55 cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xcfd638df cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf1fc43c5 cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x3f47b9c6 rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x4e2ab292 rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa67e1f1d rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xabd8552c generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xbbaeaaaa rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xdcaf6909 rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x022b636e usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x139fc814 usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x19401384 usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1b200e54 usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2d3f0163 usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x30389ac2 usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3927d26a usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x45a5c178 usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4d408221 usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x51689382 usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x52035828 usbnet_get_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x70d21ec0 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7bd2f450 usbnet_set_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7cf3e9ee usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8adddd2f usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x94f4fade usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x96b40851 usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x991d8da8 usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa6cc61b0 usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa9f5ba65 usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xaee640c3 usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb60daf97 usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbd0a82e4 usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbff6c602 usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc7bcfcb6 usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xca2fc9a5 usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd051d1c6 usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdf3416a8 usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe2b01f2c usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe455aa93 usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf456c044 usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf8d28c46 usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x95eb6a29 vxlan_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/vxlan 0xcadf09bf vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x22776a96 i2400m_tx_msg_sent -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2ebe0ef7 i2400m_cmd_enter_powersave -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3fa1f1a4 i2400m_pre_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5504d56e i2400m_tx_msg_get -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x58db989a i2400m_dev_reset_handle -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5991dda7 i2400m_dev_bootstrap -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x6095359c i2400m_rx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x983900c4 i2400m_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa6063a04 i2400m_netdev_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb5baff6a i2400m_init -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb942a90b i2400m_is_boot_barker -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xbef39717 i2400m_post_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xcb7a749f i2400m_release -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xdc2c0372 i2400m_error_recovery -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe2600f45 i2400m_tx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe9201d16 i2400m_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x05430725 cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x777d817d cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xce8024c6 cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xee20cb85 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0xb1b3e931 libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x03209052 _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x1d497eca il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x8a164ed5 il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xa273cf5e il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xf71441a5 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x002b2e74 iwl_init_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x01f596ae iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x054b4df4 iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0d556623 iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0f48dcb7 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1233968b __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2191a78b iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2e9ffc22 __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x31bddf28 iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3e03bb2d iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3e9c2050 iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4377002f iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x601d6284 __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x779720e1 iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7adeefda __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8c549824 iwl_nvm_check_version -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x96b10a9b iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9708260b iwl_opmode_register -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x97e2e700 iwl_write_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa5a32183 iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa92fecd4 iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc67c31ed iwl_notification_wait_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xce170fcf iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd2c06695 __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd709a107 iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xda0ea0bc iwl_parse_eeprom_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xdfe1d598 iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe0d3442b iwl_remove_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xebb38cbf iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf5aea4a7 iwl_notification_wait_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf9890af2 iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x024b042a lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x0d717c0c lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x1812b7a7 lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x39d54648 lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x4060ec44 lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x4b58f36c lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x4fc3c3af lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5a6c7022 lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x679e7fcb lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x84b51a4d lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x8605edb8 lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa5d13661 lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc1f70304 lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe4f0d536 __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xeddfd8e2 lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xfe516245 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x24388c6a lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x25e986ec lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x4904715c lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x63287b0f __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x6acb73ab lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x734ff1d5 lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xd36ce6f2 lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xe314db31 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x06ab7ed2 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x0aead220 mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2b886306 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2c739bb0 mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x340626d1 mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x4a4bcdf7 mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8797b27e mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8878a8c7 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8aac41d1 mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x967194e3 mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x9d48ed0f mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa929dc40 mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb241f2ad mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb812cf65 mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xbed7f9de mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc0b89951 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xcfa07e1a mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xddf25e1c mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xed88a0dd mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x67c7b348 p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x785137b3 p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x81f4011b p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x995d6b21 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x9d97e334 p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xb81e7b26 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xc9669f01 p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xda49f1cf p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xf543b08b p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x09b6e356 dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x33ec90d7 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8886576c rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfd5f86f4 dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0ea448c6 rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1ef9329d rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2d38f938 rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3c04c253 rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x40ed2ba9 rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4e9a7fe9 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x52562a46 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x551eaf10 rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x63d0c311 rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x651690df rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7cf7224c rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8c5b8eff rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8ff2c4bc rtl8723_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x94861376 rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x96599d71 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa7df61db rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbc68ed91 rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc53bdb10 rtl8723_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc65ad447 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdb7f553e rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe03b5284 rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe08fda77 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe5eecf62 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfaf347db rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfb74fc64 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfbed6993 rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xffa858c3 rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0354cadc rtl_dbgp_flag_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d0b6636 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d16f3d4 rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1248d19d rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3533d9c1 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3e036735 rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x57cdae21 rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b4de810 rtl_lps_change_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7cb7cb5d rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8fba58eb rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa9eaaa57 rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb814a026 rtl_attribute_group -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbc000c0d rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbe2a15f6 rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbe769494 rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcfd1e25f rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe0957cca rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe823bd8c rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xef969cf7 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf67e81bd rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8994c54 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0ca8b561 rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x27f67cd6 rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xe13bbc74 rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xf0adf272 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x01767d29 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0d03fc2d rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0e22b62b rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x123c5fca rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1296244e rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x14776f1e rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2e9aefdb rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3178b4c7 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x34f9fda7 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x35af7198 rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3905f5ba rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3a268091 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x41dd727e rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4340fc32 rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x44ebdf8f rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4971698a rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4a69ddef rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x506c28df rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x55c889ee rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5aafbc10 rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5acb5f99 rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5c48e16b rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x684b431c rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6c3a18ff rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x770cdb0e rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7e30bb7c rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x84a9535e rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x88cb595f rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x99f1716e rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9e1a1c6d rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9f06d634 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa1f5146e rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc4b2711c rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc9333b12 rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc95f1130 rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcdca46fc rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xef9639a1 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xff7a7c7b rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x02c50ccb rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x165f1cb0 rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x22ab98dc rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x318334c0 rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x4c9d5902 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x4ef66f8e rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x6f77101e rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x9e60c3a0 rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xb464b924 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xcc553a10 rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xccde5da1 rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xeafbc6dc rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xfbf5d1f7 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x00a5df8a rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x04c95ccc rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x07c6dbde rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0f551235 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0fe9c314 rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x15f838a5 rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1924da47 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x26124f58 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x26b75c7f rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x28cc0898 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2aecc9f6 rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2e245338 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3b24fd25 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3cb47199 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3db5b875 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x41f0a6fb rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x42274526 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4441feed rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x46a0e35b rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5254d0d8 rt2x00mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6200b693 rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x62fb68a1 rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x65d80d89 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6d821ab8 rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6e3d93e5 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7c37a9ae rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x92931cb5 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x95f8583e rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9d569ab6 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9e2eed5d rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xaad14b7a rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb5e4efa9 rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc1a1c347 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc446f163 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc5085e7c rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc879022a rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xca0c4f47 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcf1f589b rt2x00mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd37352f0 rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd9396dc1 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdc0bab1b rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xde3215b7 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe5745105 rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf494e039 rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfaecb679 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfbcfc012 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x1b480e61 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x3b3772ef rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x4c9af670 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x4e3fa649 rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x9260f484 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x49558cec rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xa5131c94 rt2x00pci_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xdec8cf32 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xeb14696a rt2x00pci_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x23018a25 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x4e45a227 rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x52468e96 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x531b5edb rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x5a301fa9 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x5ac1c044 rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x669acfe1 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x7c73ed38 rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x9d21e4f0 rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x9de3c75f rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x9e489b97 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb514b996 rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb6bacc86 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc37a4f3a rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xcc61df33 rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe6060070 rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x646959b8 wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x962f1980 wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xaff86d16 wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x02afd092 wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x09a0a39b wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0f46a90a wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x11eb6bc0 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x160ff700 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1a4a6c8e wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x21020331 wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x216fca22 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x29043162 wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2ae87108 wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2f9de020 wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x324dbab8 wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x35f12098 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3657f033 wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3731570b wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3b22df27 wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3cca9870 wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3ff2b915 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x527d1361 wl1271_ps_elp_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x52b5b6d0 wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x57ad9836 wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5ae9ac28 wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x646ff509 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6e0619df wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7044cff7 wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x73d104e3 wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x89778136 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9800d0ec wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9be6ac78 wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa45732dc wl1271_ps_elp_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xabd60c68 wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xac356273 wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb0571541 wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb5a91e90 wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb805a0fa wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb9a67452 wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbb5d6338 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbc889e86 wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc5c5cd41 wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcb9552ed wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcdf215fe wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdf2277ed wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdf2557fd wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdfd3533b wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf88194f4 wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x57cc828e nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x9f45d55c nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xa21b3605 nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xcf193bd1 nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x0316cc52 st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x11da74e8 st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x13bd86cd st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x16067def st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x1e196f56 st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x38864b46 st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x9d01a82d st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xe62c5a79 st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x7ef0638c ntb_transport_unregister_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x808de4de ntb_transport_register_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf102a4df ntb_transport_create_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x13e532e0 nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x202d4ed6 nvmem_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x224f51bf nvmem_device_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3060f694 nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3866e217 nvmem_device_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3c600a03 devm_nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4ed7385f devm_nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x5fcaffa4 nvmem_register -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8c1364e9 of_nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x99f018c4 nvmem_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc697b0f7 nvmem_device_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xd34831ac of_nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xfc77e37f devm_nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x01cc7086 rpaphp_slot_head -EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x34e19c22 rpaphp_add_slot -EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0xceab053a rpaphp_deregister_slot -EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0xe38029ae rpaphp_get_drc_props -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x56db82e2 pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xdae351a7 pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xdd2f6611 pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x07e3d4c7 mc13xxx_get_num_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x367700c9 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x57dd4f1d mc13xxx_parse_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xa90bbd21 mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xe5083817 mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4b9a8e7f wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x681d3309 wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x9dfd9b8b wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xad924178 wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xaf5e386d wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xb89f3e4e wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xb903b5b9 wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x041a8ad2 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0a570ec4 cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x184e6e10 cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1cc06619 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1cdbcac8 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x240bbdf7 cxgbi_ddp_ppod_set -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3bbe466b cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3dfbd89f cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x439ac3cc cxgbi_ddp_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5177c894 cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x54d01b04 cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x59e1796c cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5dcf6944 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x615fe124 cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x62879dd9 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x64db4072 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x74571419 cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x77992f4d cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x78972669 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x82e77391 cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x84a49998 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x94e267c4 cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x95c66141 cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x979b484a cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9d527f2d cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa1404ac4 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaed0e9fc cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb0f27001 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb2b36668 cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xba6d8cac cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbc454524 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc46e83f9 cxgbi_ddp_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc4853fec cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc53789d3 cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd2fa22a4 cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd3d10acb cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd65c106d cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd8f13ba4 cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe0450188 cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe5fbb590 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe8c40bd2 cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe9dcd1fe cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xec62f36f cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xed4d830b cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xed50bfcc cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf85819ad cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x090cfdb2 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x19a8b0d3 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2a8e128b fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2f5c2de5 fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x44b58225 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5c2bdb4e fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x76e7607d fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8bcfde07 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8ea10cbe fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x90cf9a86 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb2139dab fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb93b88d7 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xba6171a9 fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xba7ec812 fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe6b2be61 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf117764b fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x03d601cb iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0da0de6d iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x707cfa38 iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb4b7a9bf iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xcaacb88c iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe69f6a37 iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x04658a4f iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0da72139 iscsi_eh_target_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x17fefabd iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x23845929 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3701e7d0 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3dfc094e iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x46973374 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4c80afd6 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4e90ebce iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4fb37404 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x56b13f28 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5ae5e0b9 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x640d461a iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x695cfef4 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6b740a9e iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6b8226b3 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6cfc0f84 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x78296dd7 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7b75d06e iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8b42cc90 __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8dd9dfb7 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9c239d14 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa0ce3098 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa0dc109c iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaf1a133a iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaf5fd9b8 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb6068e3d iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbbf1b2ce iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf5f44ea iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc20a0f56 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc4a3147b iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc4c48c31 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcb9d181d iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcffe5385 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd12226cf iscsi_conn_queue_work -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xda3b04f2 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xecc5d029 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xedfc2e89 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xef01d021 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf3c8d4e3 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf7942cfe iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf967cebf iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x17791efe iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x27578caa iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x453894ea iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x52af1d6b iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x558d3d6b iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x60aaf07d iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x679a6f3a iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7fee7fe5 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x81a4bf92 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb55736f7 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbab25020 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbce5a29f iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc4c56740 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd062cb68 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd071b6e9 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe05c1258 iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe2c13711 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x061b3534 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x085d5515 sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x13757812 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x28b70de5 sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2cf00e5f sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x330c84e8 sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x544d5db0 sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5b77e008 sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x71115e81 sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x773109a2 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7c3c2f73 sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7ef0aadd sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa3e34916 sas_domain_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb19485e9 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb4f81eec sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb8f4101e sas_eh_bus_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc198a261 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc87db698 sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdded6840 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xeb7b2c2f sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xed06c13c sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf04a5b24 sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf4633a9e sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfd884c4b sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0b8a9d3a iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1be108c1 iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1ed740ff iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x230bd294 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2785d2e9 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2c00cbf1 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3650863e iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3d809e92 iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x41e9ad3d iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x45a3fd93 iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5868cb08 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x58c96416 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x58ee746a iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5a7a0bbf iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6193f5e8 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6ec55b2c iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x76003f73 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x79a749be iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x86449aa0 iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8c347637 iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8e049af3 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x954557bd iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9c9ced57 iscsi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa5db26c6 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8d11d16 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xae98d63d iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb3bd8e66 iscsi_is_flashnode_conn_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbae1bdf3 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc1c739ff iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc370e7c4 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc5daff2d iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd8d19558 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd8db89a5 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd962ab65 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe269f267 iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe697c2b8 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe769b005 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe863a663 iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xedc37b5f iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf4f786b7 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xc2ad02ae sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xcafb61cf sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xe971d9a1 sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xf30065f0 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xc5e032ae spi_populate_tag_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x3c081f74 ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x4159f9e1 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x4c2a020b ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x5d892bc7 ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x5fe3f537 ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x73db0b19 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xdb0697c9 ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x341704b3 ufshcd_pltfrm_runtime_idle -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x402b1535 ufshcd_pltfrm_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x55cbc6f2 ufshcd_pltfrm_runtime_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x96be1209 ufshcd_pltfrm_shutdown -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xc9665551 ufshcd_pltfrm_runtime_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xeaa941d1 ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xf398db0c ufshcd_pltfrm_resume -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x07b15bfb spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x1a926263 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x523f5dac spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x64e0e1a7 spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xcdc95cff spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x1eba2bba dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x2f78e13e dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x8eca82ef dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xeaa13a9a dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x07f71f15 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0e3455e9 spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x10da9bc3 spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x16b0f469 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x176a4392 spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1fe3a5a7 spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x29d6fa65 spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x49673979 spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5005b4c8 __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5b609956 spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6cbe86aa spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6f2d0f75 spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x728fe7ac spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x885833a6 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8a21e3c7 spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x93ced28a spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x981ac3ef spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa7194740 spmi_device_remove -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x2e798da7 ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x051ffab8 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x08b8c8bb comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cbf766d comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x10b2c6e2 comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x34008884 comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x385b48f3 __comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3c7ad943 comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x43ce17b0 comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x473b3798 comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4c07794d comedi_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4c5e7771 comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4e93651c comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x57305b3a comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5cf6f879 comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x60efa184 comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6f99d6bf comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x77e93e32 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7d109d20 comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x832b776e comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8cf925f9 comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8dcc2fb7 comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9028c1db comedi_handle_events -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x97824d12 comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9c8109af comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa1edbe92 comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa8302aa3 comedi_timeout -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb15175c5 comedi_event -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbac3a997 comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd3c1b939 comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe2968931 comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe5c6fc5c comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe7e0d04a comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xee4cc30c comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf7a95fb4 comedi_dev_put -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfbbf8dbf comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x175d1829 comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x3b6466af comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x414c253e comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x482eef41 comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x5fc9efc4 comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x6fa94da0 comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xcd0aa1d6 comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xd6e5fda2 comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x22181a6d comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x374d995d comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x3bd2e594 comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x940e6235 comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xc317816c comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xd67848f3 comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x96c6ca9f addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x8e31f7ac amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xd3009087 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x0ac0d312 amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x00d1b3be comedi_8254_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x01bffd2e comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x1b4d2be8 comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x211e49c6 comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x25308d23 comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x3d06c143 comedi_8254_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x3d95c78a comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x79fc7152 comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x7c89676d comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x81ebee94 comedi_8254_load -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x905ad5eb comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x9bd79181 comedi_8254_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xf0eae81b comedi_8254_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x2fc0cb5f subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x3b5a7ab2 subdev_8255_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x9caa22be subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x0d68fcd9 comedi_isadma_poll -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x6815a033 comedi_isadma_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa3d01a85 comedi_isadma_program -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa7ebb8a3 comedi_isadma_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xcf37e59b comedi_isadma_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x188ede92 das08_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x02c93e35 mite_sync_output_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0b0afa3f mite_bytes_read_from_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0f70ecab mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x16822acd mite_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2b258d79 mite_bytes_written_to_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x38d2817a mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x399aea73 mite_done -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5125e804 mite_free_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x64c2b4b9 mite_prep_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6e7402c2 mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x8488060c mite_dma_tcr -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x8c7988c5 mite_bytes_read_from_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9b0a184c mite_sync_input_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa567b1ef mite_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xac56ff83 mite_bytes_written_to_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc544b7de mite_get_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xdcd1269a mite_setup2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xde245d26 mite_buf_change -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xea8a1463 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xee278cf8 mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf0de2218 mite_release_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x5c267b8c labpc_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x95901e20 labpc_common_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x201db15c labpc_free_dma_chan -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x77d534ef labpc_setup_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x997e7f4b labpc_drain_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xdc15e579 labpc_init_dma_chan -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xdd0d6c9e labpc_handle_dma_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x06007bd9 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x72c0b75e ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x8acf8a6a ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xa69ad63e ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xad3ef442 ni_tio_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xc7e56512 ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xe9479214 ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xec53dc90 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x731c0b88 ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x84e3e146 ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x97ab00b4 ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xb6378e71 ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xd0be215d ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xe708f4b1 ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x0dfd639c comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x362fc932 comedi_open -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x7adaf53c comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x90cb2760 comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xa0b0cd9d comedi_dio_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xd5a15bca comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xfe726009 comedi_close -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x734c91bc adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x1c616ec6 most_deregister_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x36abbfc2 most_put_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x3af4d2ef most_register_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x56d1d05d most_deregister_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x60b326e9 most_get_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x945b61a4 channel_has_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x9b4af0e1 most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xb24f12f4 most_submit_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xc53b0010 most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xd5381c13 most_stop_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xe048c227 most_register_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xfdeafc80 most_start_channel -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x032c6504 spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0911d874 spk_do_catch_up -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0ef1d765 speakup_info -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1d96c6d6 spk_var_store -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x20a09eff synth_add -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4709e89b spk_synth_immediate -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x54ae6495 spk_serial_synth_probe -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x79b8f429 spk_var_show -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb35aaab9 speakup_event -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc66f3d76 spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xfbe6c610 synth_remove -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xfd4451a0 spk_synth_flush -EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain -EXPORT_SYMBOL_GPL drivers/uio/uio 0x47ab6937 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x9309fe6c uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0xe4d6eb40 __uio_register_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x65432b96 usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x68c54156 usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xe133a357 ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xfd1e7ebe ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x4a1c9655 imx_usbmisc_init -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xc5a3bf79 imx_usbmisc_init_post -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xdb92ee0a imx_usbmisc_set_wakeup -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x62693107 ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x76ab0f1f ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x84ff1ee5 ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x94013919 ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc3da7050 ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xf5d67adb ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0b3e817d gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0cf74196 gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x18a389a8 gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1e14d2b3 gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2e088ef8 gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3c70ec2e gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x488aaa3d gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6b55df78 gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x773b2ddb gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9b18ac33 gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa8492095 gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd6500323 gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xdd258806 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe686f7d8 gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xee08d54a gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x2ca47dda gserial_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x61fe4596 gserial_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x43f097ca ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xd6846e4a ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xf53091a1 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x068a3392 fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ac317d1 fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x308dbdb7 fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3876d057 fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x40616a3f fsg_store_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x546c7f99 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6460969a fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x76048698 fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8c92850f fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x946da211 fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x987bc0cf fsg_config_from_params -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9c2fb080 fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc7e81826 fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc8e5b344 fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd468f882 fsg_common_set_ops -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe3d8ffa5 fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf3aa35ff fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xfb67bc66 fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0328494f rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0940ca7e rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x10f8a7f4 rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x31dae5e9 rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x38c0779e rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4ec773ad rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4fe01bab rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x52fb536b rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7dee62bb rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x97bc361a rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xad9b628d rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb7dc4521 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc940f394 rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd8066c44 rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe35e7894 rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x035e9b2f usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0581204a usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0b1ee95f usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1808c894 usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2a03f982 usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3b743b4f usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3b90e7ab usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x46dee6f7 usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4a8a6be7 usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x507fa8fa usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5790ab55 usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x59a2074c usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5c40efa6 usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6dc2834a unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8ba4bfb5 usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8cb66ce3 usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94f2dee9 usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x999c8c95 usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa40a5595 usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa57d05b4 usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xae6b59b2 usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb2954a9a usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xba8996de usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc14ff5f0 usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc8ec4e61 usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd0ec1db5 config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd4fcc0d2 usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd6e156a6 usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe3a39459 usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfb2be385 usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x204d2611 gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2c7e41f4 usb_udc_attach_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5f595b04 usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6601ba64 usb_gadget_map_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7c63c677 usb_gadget_probe_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8dfb15ed usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9649ca18 usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4744dba usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaa77d1b4 usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaac0f4c2 usb_add_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb94dc5b3 usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcd073ce9 usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xce655087 usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xce80b669 usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x14b2dc5d ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xda27ef87 ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0208ea11 usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x26014949 usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x3ce63378 usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7d5a1e4e usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa439d2d8 usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb613c789 ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc94a3774 usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe381191e usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xea6e7902 usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x99d40a7b musb_interrupt -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xb92600cf isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x62e27d60 usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0bf66a6b usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0cf9a465 usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x119f0bb6 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x20be64e6 usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2643ccd6 usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x26d74621 usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x31f346a1 usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x376773b7 usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3f82e6b4 usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x527a5bfb usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x53c438d2 usb_serial_handle_sysrq_char -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x69b9756d usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x77a8f923 usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x808ae732 usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x86b4d43d usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9f34c7a3 usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa61dc0f7 usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb8a1c67a usb_serial_handle_break -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd6cfc7a3 usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd9f6b7ac usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe6b7383a usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x12fafbea usb_stor_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1535f832 usb_stor_disconnect -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1a59f26e usb_stor_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1e3d4553 usb_stor_post_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x27e99f81 usb_stor_transparent_scsi_command -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x299ffdb8 usb_stor_CB_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x39dff0ef usb_stor_set_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3ef47ee1 usb_stor_pre_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x524b499f usb_stor_host_template_init -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6464aab8 usb_stor_access_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x69d0a521 usb_stor_bulk_transfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x76546ffb usb_stor_bulk_transfer_sg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7f5ceab7 usb_stor_bulk_srb -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x98a2c335 usb_stor_CB_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9ac3e043 usb_stor_adjust_quirks -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9df4c2cd usb_stor_Bulk_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xaea65fc7 usb_stor_probe2 -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb3465f47 usb_stor_ctrl_transfer -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbf563bdd usb_stor_suspend -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd28cbc22 fill_inquiry_response -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd874d216 usb_stor_Bulk_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xde7130ce usb_stor_probe1 -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf5313096 usb_stor_control_msg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xfb762929 usb_stor_reset_resume -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1546ef3d usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4a261aa2 usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x553fb094 usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5a152e6b dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6287f3a6 usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x67c09975 usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7d4027b5 usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8cfe1f5e usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x97964137 usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9c2016b6 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9d770b24 usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xce56f21f usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0bd816f0 wa_process_errored_transfers_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x122f15ac wa_urb_enqueue_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x280b0f20 wa_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x50356ad8 __wa_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x74d38e5a rpipe_clear_feature_stalled -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x804b7dff wa_dti_start -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x9a93d33a wa_urb_dequeue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xa24d64d3 rpipe_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xb54db614 wa_urb_enqueue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x140b3d99 wusbhc_b_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x2c250c65 wusbhc_rh_status_data -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4281f69d wusbhc_giveback_urb -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x434a2b05 wusbhc_chid_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x44f964ef wusbhc_handle_dn -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4ad65354 wusbhc_reset_all -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x53e24a62 wusbhc_rh_start_port_reset -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x56aff65d wusbhc_mmcie_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x6a682ff4 wusbhc_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x792abc72 __wusb_dev_get_by_usb_dev -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa2f9e6af wusbhc_mmcie_rm -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xaa5525a2 wusbhc_rh_control -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xbc79b8b5 wusbhc_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xdbd3b1cd wusbhc_b_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x3a811064 i1480_rceb_check -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x7ed4c5f4 i1480_fw_upload -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xb1547adc i1480_cmd -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x06bd51fe umc_device_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x38d54b2a umc_controller_reset -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x48951e58 umc_device_unregister -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xbfc0f3ed umc_driver_unregister -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xc712c25d umc_match_pci_id -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xc8b11e7d umc_bus_type -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xcebc51dd __umc_driver_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xf829821c umc_device_create -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x01deffc4 uwb_rc_post_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0bea53c4 uwb_rc_get_by_grandpa -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0d78016e __uwb_addr_print -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0ede0fa6 uwb_rc_ie_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0fc02440 uwb_est_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0fd99b6d uwb_rc_vcmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x109219a9 uwb_rc_pre_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x16c4fcbd uwb_notifs_deregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1ef966a7 uwb_rc_dev_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x204beb05 uwb_rc_cmd_async -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x22a075a0 uwb_rc_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2617fa52 __uwb_rc_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3876fb62 uwb_notifs_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x444432f5 uwb_pal_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5643339d uwb_rsv_destroy -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5d5d1287 uwb_rsv_establish -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x673ce9ee uwb_radio_stop -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x68d5955c uwb_rc_cmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x74fdcd7f uwb_rc_reset_all -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x799b64e0 uwb_rc_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7bc56a0b uwb_est_find_size -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7ca21812 uwb_dev_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x816b9e92 uwb_est_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x841e5bcd uwb_pal_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8ac13183 uwb_dev_for_each -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8b52da75 uwb_radio_start -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x960d6f2d uwb_rc_put -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x960ebcc5 uwb_rsv_create -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa95151f1 uwb_rc_neh_error -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xac97316b uwb_ie_next -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xae03a385 uwb_rc_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb849aa4b uwb_rsv_accept -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb852a016 uwb_pal_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb9a83dd4 uwb_rc_alloc -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbd0c5825 uwb_rc_neh_grok -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xca916bb6 uwb_rc_ie_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdf2d333c uwb_rsv_terminate -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xeb42e55c uwb_rsv_get_usable_mas -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xeda4d31c uwb_rc_get_by_dev -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf5c219c8 uwb_rsv_modify -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf98d1656 uwb_rc_mac_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/whci 0xaa1e4840 whci_wait_for -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x017fc2cd vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0d6d1a8c vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x10fcb566 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x117a61c9 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x29b6e704 vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2d6e6d31 vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x36ea2b45 vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x40f4465b vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x416d5dc4 vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4a480fcf vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4f8490f7 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5812dcc8 vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5d7246ea vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5f73d75c vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x73e87832 vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x78ca2590 vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x79f771c1 vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x86f6c4f9 vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8b820b99 vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9d13c59a vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xae888d20 vhost_work_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb0f81e37 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbc8b3f14 vhost_init_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd6afbf4e vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd7dd2c49 vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdaa73a9a vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe5190acf vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf8111709 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf82aa5e7 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfa53391e vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x043b99d6 ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x1e905649 ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x39980d0b ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x5d3d9db5 ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x85e0fdea ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xc7fda59b ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xf5d9d5b5 ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x43b63a73 auok190x_send_cmdargs_pixels -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x44ff119d auok190x_read_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x5c89e482 auok190x_common_remove -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x6da7ea64 auok190x_send_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x7ee0b941 auok190x_send_cmdargs_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x949f26e1 auok190x_send_command -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xa684a7e0 auok190x_send_cmdargs_pixels_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xc2b6c1a1 auok190x_pm -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xced6b43a auok190x_send_command_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xdfec6758 auok190x_common_probe -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xa4134cfc fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x2e564281 fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x709f59de fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xc57373f5 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xf59079d0 sis_free_new -EXPORT_SYMBOL_GPL drivers/w1/wire 0x1025a26f w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0x3b0e7996 w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0x4af2c07e w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x52f587ad w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x66a2d503 w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x9d0b7d2c w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x9f8f51fb w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xc9489436 w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xeb710212 w1_reset_resume_command -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x741e29d6 dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcda8285e dlm_posix_get -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xd171f651 dlm_posix_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock -EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x40687d65 nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4106701c nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x417bfcad nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x721b46be lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xcc494708 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd50d4331 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xfb84b491 lockd_up -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x013501ed nfs_destroy_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x050f3864 nfs_pgio_data_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06e8c79d nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c8c4e8e nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e3d8e38 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e688039 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x108f90ca nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11a5aaa1 nfs_remount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1262eac7 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12c4d216 nfs_file_fsync_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12f460a4 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13420c58 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16a02410 nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a1b13b8 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a431587 nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1db611a6 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1eb3cda3 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1fc8411b nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20eebc76 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21176455 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28fc4ff5 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cd8fac2 nfs_pageio_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cdc3f24 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33db3fbb nfs_set_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3763506f nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x38d9fee6 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39fff046 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a5e02ba nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b4a61b6 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c68a627 nfs_fs_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44d0f4f8 nfs_fs_mount_common -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47878fea nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47925f4c nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49fb4dac nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4bdc4831 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f38bd7f nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f52957b nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x566c92d3 nfs_fill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5671b892 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57cb0fb7 nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5806e790 nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59077a6a nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x592b4827 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b98f7f6 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63f6db4f nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65faa120 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x699271a1 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69d35433 nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ea60f6f nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f8cd53f nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6fdbada8 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70df79df nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x711ff496 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71f8f410 nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76aa45b9 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x799d9eba __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b45b95f unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e4b061f nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fe057be nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x800b1ffa nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x828a6df9 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82ed1145 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84114f50 nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x848d5052 nfs_try_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85841cf6 nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x859fd1f8 nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85ae9255 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a5908aa nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d4201f8 nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e1f37ce nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x907ba6a0 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x911601e4 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9656f432 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9774d431 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97f4c714 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a2c39d7 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ad6e5c9 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b556791 nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c371ce9 nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c85bc02 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d1c07fc nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ee39f3e nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9fb40ef4 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2cfad70 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3ccda15 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5c48333 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa600fcca nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6e68f79 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xabafad54 nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1e9ac8d nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb29addf8 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3c1720a nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3c6ef4d nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4e93e2a nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcf2b76c nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc11b44f0 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc14a1009 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4a47617 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc77920b7 nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc98ad2e9 nfs_file_splice_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd037cc6 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcdbb6877 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf61d4d0 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd151c238 nfs_clone_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3023d82 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd76952a1 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd85321e7 nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd87bdf00 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb519af2 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdccc543f nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd656e14 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde48e87d nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe10f05a4 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe625d16c nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9ebeaa0 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9fcad75 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xebf3f6e1 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf01e20ef nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf30e3a7e nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf39332e0 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3d4400f nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3f1be0f nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf79d8126 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfac9708a nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb2b06ee nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x9e7d9e58 nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x01fe4c06 pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x077fe7d6 pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x07c5532c pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0cf3c305 nfs41_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0d472fbb pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1093b108 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x11684193 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x121e7744 pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x12579b6d pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x15950601 pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2385749b nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x23fb5fac nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x24d91428 pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x283d9008 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b94eea7 nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2bf4b1cd nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2ec49531 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x31e113ae pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32af738e pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x39259501 nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3daec1ef nfs40_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3de5678a pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3f559ebd pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4253727f pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4290f3ea nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5b8c2c8e pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6543a346 nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69fae082 _pnfs_return_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6ae7df64 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x70c05740 nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x747b9405 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b76c9d7 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7f5ffc24 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x890de772 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9afb1428 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d2951f5 pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9de98341 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9e422901 nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa01e9dad nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa4ec03cf pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xada5a0cc pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0480ef3 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb2e2b237 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb38a26dc pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb51e1128 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb68c33ad pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc6fed99 pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc9f5376 nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc69b7fa8 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcee13644 pnfs_put_lseg_locked -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd065f8c7 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0b5b7dc __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd1b57654 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6e411f1 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd728c1d7 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xecac4730 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed7b4eb2 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf1ca2e94 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf9caa7ba pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfc937e85 pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfd1671c4 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x2d02a240 locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x808e10a3 locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x9760ecf3 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x074012c9 nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x66982e4d nfsacl_decode -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36a28a9e o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4c8a08f9 o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x51dd33d5 o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7f3dd7c3 o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9296df72 o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xcc26606d o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd1e2e594 o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf9011976 o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7aaa7be2 dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x88957999 dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x91930cc4 dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xccf18081 dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xf02e2d17 dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xf4f964ff dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x2670ad8e ocfs2_plock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x640927e6 ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc38cbde6 ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version -EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq -EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures -EXPORT_SYMBOL_GPL kernel/torture 0x3cd2a990 _torture_stop_kthread -EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats -EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb -EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random -EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0x5c3be739 _torture_create_kthread -EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait -EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop -EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end -EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init -EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init -EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin -EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin -EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init -EXPORT_SYMBOL_GPL kernel/torture 0xe183652e torture_shuffle_task_register -EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end -EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init -EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping -EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress -EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress -EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch -EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch -EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch -EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x1f7814a7 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xdb408789 notifier_err_inject_init -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x201d8ea3 encode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x29fa419f decode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x0adcb055 base_inv_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x221df614 base_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x4da25bec base_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x63f42b6a base_inv_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x76203267 base_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xca3140ce base_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfa5eee0a base_inv_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfc02472a base_inv_true_key -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x01dbf8ce lowpan_header_decompress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xe5ea4063 lowpan_header_compress -EXPORT_SYMBOL_GPL net/802/garp 0x7d389f36 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x89dd8a2f garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0x9ac4a54f garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0xae957b16 garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0xd0792fe3 garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0xe5561c4e garp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x3dbebe19 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x4247f7af mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x4b014c00 mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x5332ebb7 mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x5c549ba9 mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0xc535d1dc mrp_request_join -EXPORT_SYMBOL_GPL net/802/stp 0x6f14bd49 stp_proto_register -EXPORT_SYMBOL_GPL net/802/stp 0x8bc408d5 stp_proto_unregister -EXPORT_SYMBOL_GPL net/9p/9pnet 0x2d24bd07 p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/9p/9pnet 0x790b4936 p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier -EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier -EXPORT_SYMBOL_GPL net/ax25/ax25 0x4c10a77c ax25_register_pid -EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast -EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x4e7b7a5e l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7c7db017 bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7f236deb l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x874bf527 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8c2031ad l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xdb9cbfb4 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xdc7e284c l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xfef808f6 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable -EXPORT_SYMBOL_GPL net/bridge/bridge 0x1bea7c77 br_deliver -EXPORT_SYMBOL_GPL net/bridge/bridge 0x6b008752 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7929bdf6 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x811dab7c br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9c8738fd br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc1913619 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xdf3af175 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf228fb98 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x1cb76984 nft_bridge_ip6hdr_validate -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x4f8c55c9 nft_bridge_iphdr_validate -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0053e895 dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x00d8d163 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x05da013d dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0x13f751fc dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x14bd2784 dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1e0354a7 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0x21438238 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x21e7aa98 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2486a82b dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2d32a289 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x38f13d98 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3dab3744 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5009c0f5 dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x600ebc0c dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0x65aaa1a3 dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6a83df02 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6be5d1ec dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x80062841 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x846d0c4f dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x84bf0a61 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8b29d8f9 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8f43e745 compat_dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa6efffaf dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xade7ec35 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc0b7b890 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc9220364 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd11b8934 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd215b2e2 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd7bf5036 dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe4505cdb dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe5256155 dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe8cbf05a dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0xeaaeadb6 compat_dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf88b09af dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfc0e5a4c dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfd10fe49 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x45679e92 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x5024842b dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa7ab4017 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xcdc4c2b3 dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf4c56f92 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xfd7f1c26 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x23be1865 ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x29ed9bd4 ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4c02f6b4 ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x82baf86d ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ipv4/gre 0x8b11a9e5 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xfe27dacc gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x067d675b inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x27f91833 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6e2cf055 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa234af75 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc34a1dd2 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf0a61b3c inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x4a9948b1 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0bc66707 ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x28cdeca5 ip_tunnel_ioctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x291465d9 ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x359d618a ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5c9be067 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5f4189e3 ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x765350c6 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9dcc82b2 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb4058284 ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc0602671 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xde918d23 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe58df15a ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe715f09f ip_tunnel_delete_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xefdedc7c __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfbb5934a ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xc2f30a50 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xefb2654b ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x5fe9b239 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x012376d1 nf_nat_ipv4_in -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x3cc76144 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x84c35ef8 nf_nat_ipv4_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x9515e877 nf_nat_ipv4_local_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xc243439d nf_nat_ipv4_out -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x238e53a5 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x24d7ddd7 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x27f6f405 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x30411777 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x55d5b77a nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x87708b93 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0xd31a2649 nft_af_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x4dc4cb61 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x5c5281cf tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x95ec8e3e tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xcf7f6a4e tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xea17e631 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x11265264 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x25ca9cce udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7f9e4da3 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe30020d7 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x08b7a407 ip6_tnl_dst_get -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x5162c7b1 ip6_tnl_dst_reset -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x84f43544 ip6_tnl_dst_set -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x86447b75 ip6_tnl_dst_destroy -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x998d58ad ip6_tnl_dst_init -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xa9319e7f ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xdbb56046 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x8c31820f udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x932a5e21 udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xf62d448e ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xa0e612ee nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xadf5098c nf_ct_frag6_consume_orig -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xffb5b7d1 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x1f0a9da2 nf_nat_ipv6_out -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x3fb158fa nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x4599fd37 nf_nat_ipv6_local_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xb4896867 nf_nat_ipv6_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xe90bf7ad nf_nat_ipv6_in -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0xd85930e4 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x187ccdb4 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x2b367086 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x64d93152 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6bdfbac4 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd2514178 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0xaaea1a0f nft_af_ipv6 -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1c3caaaa l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4db7aa39 l2tp_tunnel_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5003c062 l2tp_tunnel_find_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5c663333 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x84c9f523 l2tp_session_queue_purge -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x914206d7 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x92ea6451 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x92ff3144 l2tp_tunnel_closeall -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x978410dd l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x99eeb0d3 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa4364a79 l2tp_session_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xaf9c2243 l2tp_session_find_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc82f7570 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd1d0eb9b l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xde2d3fea l2tp_session_free -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf5166067 __l2tp_session_unhash -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xd2bcfc91 l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x01a82e6b ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0e2442b6 ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x11e1f72f ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1f216d2c ieee80211_set_key_tx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x246f786c wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2df9a084 ieee80211_iterate_active_interfaces_rtnl -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4b24255d ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x58a151ae ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x79dbb024 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x82a772f1 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8d633990 ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8d6356d1 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc1109304 ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc1fabccc ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc8cb47ca ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdcfb80b1 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdf5d69f5 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe4f68cba ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x4104982e nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x547bf81a mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x68cb8ad7 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf2e6cfa2 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x105442f1 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x356c1c14 ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3dbc6b07 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x45dcf1ec ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x46f9ad4d ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4abe296f ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x523d749f ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8902337a ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9fb1e1fd ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa1afc490 ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbbe5a74f ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbd5df73f ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc0c47c5d ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd0572fac ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe9cecfa2 ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xefd80a88 ip_set_get_ip_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x716cb571 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x903100de ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xab6fc90f ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xe08ab48a unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x00276254 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0413f2c1 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x04e6dc47 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x061d7c0d nf_conntrack_l3proto_generic -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x09a7a3ba nf_conntrack_set_hashsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ab04c5e nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0adccdb7 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c96383c seq_print_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x14b7a8e2 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1544b156 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15a61ff7 nf_ct_l4proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a7d9349 nf_ct_expect_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1b04ec4d nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x21c73093 nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x24826970 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3a37fc32 nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3e0f7dd1 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3fcf23e6 nf_ct_l4proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x427e30c6 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x436dd947 nf_ct_l4proto_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x448f8f4c nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x48ac152f nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4a293385 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x513677ff nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x52b14c11 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x536d1060 nf_ct_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x53d02d8e nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a38e238 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5cb02fa3 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5f79a0fb nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62376a92 __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6660a5ab nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d7521e6 nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e5c05e3 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x79199fc5 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x79af9f50 nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x86c9417f nf_ct_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x88f9ffbc nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a66c4fc nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a6f96d3 nf_conntrack_l4proto_udp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8b633f9f __nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8b831ec0 nf_conntrack_l4proto_tcp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c81ecf4 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8eedc417 nf_connlabel_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x93a74f66 nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e9791f0 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa33ccaa7 nf_ct_l3proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa3bf10af nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa6ce612e __nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb0a01756 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb32fde08 nfnetlink_parse_nat_setup_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb859f451 nf_conntrack_l4proto_udp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb9b57c42 nf_conntrack_l4proto_tcp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbaa5dee1 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd49a400 nf_ct_get_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc0af498b nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc319d5c4 nf_ct_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc35746b5 nf_ct_l3proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc5272dda nf_ct_iterate_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc7f8915d __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc9116066 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc17a0e2 nf_ct_expect_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd69af507 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd8b32659 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb8e5eff __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdcd59195 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdda8aaaf nf_ct_l3protos -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe27b17bf nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4ac6370 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe5ebf863 nf_ct_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe71f80bf __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe88cb945 nf_ct_l4proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec07fc00 nf_ct_l3proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xefd9e524 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf1f42b7c nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf32b12c5 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf7acc7c6 nf_connlabel_match -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf94bddb1 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa98527f nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff40b965 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xff55e2a0 nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x29b63444 nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x11b20982 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0fe59c8b nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x2094e8eb set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x46193757 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5802a56b set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5b19790f set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x70e004bd nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa0159a61 set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xad03f21f nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe7d7b4c2 nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xeaedfff6 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x25fe1707 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x00cfc492 nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x170aa2f9 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x6cbfeaeb nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xdbcd7878 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x9d03465e nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xd7fbc56c nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x164a3b87 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x21a5709b ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x331899c3 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x440487ab nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8817324d ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa8766b06 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xec966cdc ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x9557bdda nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x8cca948d nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x85e8b96f nf_log_dump_packet_common -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x93331dcc nf_log_dump_tcp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xb60c1069 nf_log_dump_sk_uid_gid -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xe1000e7f nf_log_dump_udp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x01af1645 nf_nat_l4proto_unique_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2037b6e5 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2e8d8aee nf_nat_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3701ac24 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x41cf3e01 nf_nat_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x51c800b7 nf_nat_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc0556331 __nf_nat_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe9909edd nf_nat_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xed5a19ec nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x70f1512a nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x876162c0 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x28129241 synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8841d39b synproxy_build_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xbcd2feff synproxy_tstamp_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x04585194 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x066f64ce nft_validate_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0dff9180 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1a8bba61 nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2943972b nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2a463138 nft_register_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5a7ebda4 nft_unregister_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x72fd072b nft_unregister_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8f8ba03c nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa9512485 nft_set_gc_batch_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc5e598c5 nft_unregister_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc96493b9 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd0f3accf nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd362d19c nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe41dde01 nft_register_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe653f195 nft_register_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe8c0f58a nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x306f6a42 nfnetlink_alloc_skb -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x463794b0 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x50ffee77 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x94dc504c nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9785ae9f nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd25c187a nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd92a1c6e nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x5bd6de84 nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbc691183 nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xd84bc648 nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0xd72de48d nfulnl_log_packet -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x2c9bf61f nft_masq_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x9271df48 nft_masq_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xec6acb81 nft_masq_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x0b2eb233 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x1c56d089 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x5ede28ea nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb425ea0f nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xc6c5613e nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xf3ea3a55 nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x197ea478 nft_redir_init -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x8690da4a nft_redir_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x9632a03d nft_redir_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x548e06e1 nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xac338c87 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x101d2db2 xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x161d1417 xt_compat_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1c241a34 xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3cd4d98c xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3fdbc9eb xt_hook_unlink -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4dea99e9 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x53a4e3f3 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f82f1f7 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6627ce4a xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x691a6d69 xt_compat_calc_jump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x69bcb7b3 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x73cee41e xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x73e8ad9a xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8f26c68e xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x95b4aa59 xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc4c73786 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc5503b6c xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcd1c22a0 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd7605b17 xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0b4971b xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec24fd82 xt_compat_add_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf13e97d6 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf1ce4c4c xt_hook_link -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf569352d xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf7d4cd35 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x00204983 xt_rateest_put -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x482b6a12 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x2e982fac nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x93889371 nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xe8d830fd nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x17440e4d nci_uart_unregister -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x7bdd2325 nci_uart_register -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x8179238b nci_uart_set_config -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x10c16910 ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6579e02a ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x86c418f4 ovs_vport_deferred_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9d866ed0 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9e8f9e97 ovs_netdev_detach_dev -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xaa09260d ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe0214ed0 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xeff7e5f2 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf57294ea ovs_vport_receive -EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x24d8beb2 rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0x2586faf0 rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x47b7fd52 rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x4ab4eed1 rds_page_copy_user -EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x51ae1cd2 rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0x62c6eff3 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0x6541f6fe rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x73f7007a rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x7bc62829 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x874bf863 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x93943ce2 rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0x95eb4aae rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0x97d18cb9 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0x99f126ee rds_send_get_message -EXPORT_SYMBOL_GPL net/rds/rds 0xa35b7f79 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0xa5ef3334 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xa994dba3 rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0xaa1c589b rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xb1498c91 rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xd2dfd640 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0xdf3a79b0 rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0xea5b8554 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0xf9e6b81f rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xfc2004bf rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0xfd90f1a2 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x3abbd5b2 rxrpc_unregister_security -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x8f83d4a5 rxrpc_register_security -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8a91f33b gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xa7a6069c gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xff5c8957 svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x001d1a43 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00a43834 svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01968bb4 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01d9263b cache_seq_stop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06a3323a rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x075b350b svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08032e94 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0acae5ee svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c8881c6 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c894fb5 xdr_partial_copy_from_skb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0da06165 rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ec88e28 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f2f12a7 csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f69db0c rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1104a599 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11b5c852 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1206ea9a rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x138c88b0 xdr_buf_read_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x177c01ec rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18c807d3 svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bdb388e rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ce7b56c svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e2277c1 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f300558 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x222f22f5 xprt_set_retrans_timeout_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23bdf027 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2597276e rpcauth_cred_key_to_expire -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x266a89e9 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a875c9c xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2af74603 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b0082ef svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b75aefa rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bc2d2fc xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2db30b71 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3466b008 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35a042b6 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35ab9302 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a27bd59 rpc_get_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3adf3acd svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d1cb60d xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d9af038 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3dae5db7 rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e1cea41 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e9d14ab rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40feb667 rpc_lookup_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42e38a51 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4322dc94 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x441f574a rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44b96d49 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4581a7e3 rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45acff0c svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x464ca71f rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4761ba71 cache_seq_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x479de9e2 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b60ac73 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e434378 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50a9f1bc xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51469271 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51ed0e96 svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52eaac9e read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56abba1a rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5705ae81 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5884f5db cache_seq_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59c422d3 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59c6d915 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a5e0f90 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d1c3f06 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d3d03ea svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ed5ad5e rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f3c0407 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6214dfd5 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63c4997e _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67077ee8 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x699caa2b cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a991840 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bda4c29 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c3c0783 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d583fab rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ee84656 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fd65c63 rpcauth_generic_bind_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7040ba92 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70bf7ce8 rpcauth_key_timeout_notify -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70f8bb5a put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71a90f73 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x728ffa56 xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72d457aa rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73661359 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x736a294e svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78f2a94d rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79ba5a21 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79bd0955 rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c26fbef svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f981ef3 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x808b0776 xdr_set_scratch_buffer -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80d53159 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8106f11d svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x811d7f2f svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81850f3b rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8202f163 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8394fb4b rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83bec124 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8411a348 rpc_print_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84503b73 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85370864 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x898e14a8 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a89a93d rpc_protocol -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8aaca006 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ad417b4 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bc536c1 xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bfa4023 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d3ada74 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8dcdc883 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e34fa65 sunrpc_cache_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fb0ca34 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90dad2b6 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92c244a9 xdr_skb_read_bits -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x936c6ca2 svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93f56792 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x949a1dda rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b302a41 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b76c23f rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c80cb25 rpc_lookup_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e73f684 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e91ae75 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ef449af rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f340f00 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0676e8b svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0dd2d3e svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1cc52bd svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa29d3a4e xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa509c2fc __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa726ac29 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa96c1b5d rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab197acf cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac0f2fc9 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaca4ce7f xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae576d96 xprt_lock_and_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1db0f9e rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4005098 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb53292a8 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7890054 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb80bc0bd svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8b3ba52 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb3f230c svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb927a84 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd04f086 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd2397ba xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd40326f cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbec2fa04 rpc_rmdir -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4b2531d rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7dd615c xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9da34ea xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccb8c344 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf39f10f write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd11cb406 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1973de0 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd23a0aa1 svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd397b1ad rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd39ade65 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd434e6fe xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd49444cd sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4a16923 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4c9649e rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7f3c3a8 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb6d1c39 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd307479 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd6b720e rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd93afcb cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddd5d8b1 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde950e26 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdee9c9f1 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfadf9d2 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe29973fb rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe37947c1 xprt_set_retrans_timeout_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe481739f xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe59cff52 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe661d561 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7a75b34 rpc_task_reset_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8721dc3 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9cbd9f9 svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb5acda7 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedba4830 rpc_lookup_cred_nonblock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeb26c6c xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeec292ee rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef0c21e4 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefbc88da rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefc3d1b4 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2f35a86 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4a7dbdb rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf83b49f4 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf86aec4c xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8e754a3 rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf983439b xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc0f342c svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd4cb34b svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd89514b rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe384d28 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfec6b30a xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x01f78935 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x46fbde71 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5e3f9c75 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x725c740f vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x85f05a02 vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x970b77bc vsock_pending_work -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9f28fbcb vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa4c58888 vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xae232447 vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xba916b51 __vsock_core_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdeb3741e vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe0e93241 vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe522e1b1 __vsock_create -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xff089287 vsock_stream_has_data -EXPORT_SYMBOL_GPL net/wimax/wimax 0x0943db24 wimax_msg_data -EXPORT_SYMBOL_GPL net/wimax/wimax 0x115253b6 wimax_msg_data_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0x52bbf00a wimax_dev_rm -EXPORT_SYMBOL_GPL net/wimax/wimax 0x53e9e1d9 wimax_msg_alloc -EXPORT_SYMBOL_GPL net/wimax/wimax 0x8c917800 wimax_state_get -EXPORT_SYMBOL_GPL net/wimax/wimax 0x8cb70e4e wimax_dev_init -EXPORT_SYMBOL_GPL net/wimax/wimax 0x98802166 wimax_msg -EXPORT_SYMBOL_GPL net/wimax/wimax 0xbb56f568 wimax_msg_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0xc60e665b wimax_report_rfkill_sw -EXPORT_SYMBOL_GPL net/wimax/wimax 0xc8de8123 wimax_msg_send -EXPORT_SYMBOL_GPL net/wimax/wimax 0xdcdd9ed2 wimax_dev_add -EXPORT_SYMBOL_GPL net/wimax/wimax 0xde61294a wimax_state_change -EXPORT_SYMBOL_GPL net/wimax/wimax 0xe583f6ab wimax_report_rfkill_hw -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x02c7a209 cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x39b27827 cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4921be6a cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4b7bed83 cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5404631d cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6163a917 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6b9cd8b8 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6e582ae5 cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x89ac83d3 cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8e7c2cbf cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9bce9907 cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd6aeb74c cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfb2c3972 cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x59f464e7 ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x7465edae ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xe44c4679 ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xfd842eb7 ipcomp_input -EXPORT_SYMBOL_GPL sound/ac97_bus 0x01279c19 snd_ac97_reset -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xcaa3ee23 snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xf488b3f6 __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/core/snd 0x0197ab38 snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd 0x0216cf52 snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0x04d1e4de snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0x07fdcbd7 snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0x2641ab5c snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0xd148a484 snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd 0xdf3c1107 snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x1cfa7475 snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x22e34388 snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x494b21b4 snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x68899bf9 snd_pcm_stream_lock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc432ef0d snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xddeee3da _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe1199d15 snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf40c1581 snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf50bc3a1 snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1332020e snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x21e942c1 snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2225f050 snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x69b8e884 snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x6f859c77 snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8f93bf8d snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa01aa583 snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xafb2be7e snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xdf4e1ce0 snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf74435d3 snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xfd2567c8 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1b062cba amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4b5e91c8 amdtp_am824_set_pcm_format -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x56b87568 amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x77f6b876 amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9f62848a amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa926f817 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf85ac4af amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x07c54790 snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x09bb111c snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x12509761 snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x12f7747f snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x151f3d96 snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1df4403f snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1ebbea63 snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1ed37c30 snd_hdac_bus_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x293eada1 snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x296b1b38 snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2ca69e25 snd_hdac_refresh_widget_sysfs -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2d034685 snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2e161948 snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x31665bd3 snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x31ba7a4a snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x327928fa snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x32f23a08 snd_hdac_bus_add_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x388cc928 snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x39e7a54e snd_hdac_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x412eef33 _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4e69692f snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4f73bfd4 snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x519045f4 snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5797fec6 snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5bbb0106 snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5d62c7ea snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x63c88142 snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x65444607 snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6f931ba6 snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x745a4bfd snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x755418aa snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7b44a3ec snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7d9bd33b snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7e3213fd snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x805f613b snd_hdac_make_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x923f7696 snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x970ea88f snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9ae30a5f snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9b36550f snd_hdac_bus_remove_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9e149a9b snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa13ffcd2 snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa92cd4bc snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xac3c1b3a snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xad4b5e7e snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb87569d8 snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbce2074e snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbcf43a9f snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc80e7200 snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcb6619ce snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcc4eb260 snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcea02953 snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd168ad9e snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdb890e27 snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xde4bdd81 snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe106532e snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe22cc4d0 snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe28d59c7 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe44d4992 snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe5b2c687 snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe8672544 snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe8ff5acc snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xec50dfef snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xee9ee9c4 snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf1ba73f7 snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf209c8de snd_hdac_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf3fa32b9 snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf743e353 snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfaf0d7c4 snd_hdac_bus_queue_event -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfdeefb7d snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfe898ab6 snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfeab0665 snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x0cc37aae snd_ak4113_create -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x4f794787 snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7ea1d871 snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa6082525 snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xc8aeb6ee snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xcea24aeb snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x02156282 snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x09542242 snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0bf4286e snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0d0e02c4 snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ebab80c snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f6a2e2a snd_hda_mixer_bind_ctls_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10a77dac __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11619cba snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x134e2bed snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x149994dc snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x155d0ca9 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19c9a18b hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c5af390 _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1f78b404 snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ffc3bee azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2138ad11 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2346e8bc snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x25550ac3 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x279356af snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x287936e2 snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2934fd8f snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x29c45aeb snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2c10d52a snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2dd5d18e snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ee21eed snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30e65c80 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x32e676b9 snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33c5919d snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3549cc7a __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x35552afc snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3618238b azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x39eff774 snd_hda_jack_tbl_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3caed4a1 snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d4ffac0 snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x431b4e74 snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x45e98a31 snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47feb8dc snd_hda_register_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x48159b1f snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x485a0044 query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c161a75 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4deeac7c snd_hda_mixer_bind_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x50655cd1 snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x541173eb azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55ec3243 snd_hda_mixer_bind_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x562e4070 snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x57e56ad8 snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b63f05a snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5cd99732 hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d81cbcf snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61f1388d snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x683adf35 azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6891c5bb snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x694f6199 snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b3795f9 snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c17cf7d __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6dff7368 snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70a3600b azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x763aaede snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7726ed4d snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b0d039f snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7da349cb snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e46107b snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ef5a511 snd_hda_jack_detect_enable_callback -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f65f726 azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f87c9a7 snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ff15f20 azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x801ce80c snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x81f929b0 snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x83172498 snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84b3c0c6 snd_hda_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x865a4881 snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x91068979 snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95768a6c snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96165202 snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x985efc06 snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x998a1b15 snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b60fe98 snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9bc53d4c snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e4e0146 snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f0801c2 snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f650712 snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa189c9c9 snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4f02ab9 snd_hda_jack_detect_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4f6c972 snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa55f1e73 snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa9dca5e2 azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa1a2770 snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xafe246fa snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb32fc16c snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb385425d snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb60a312b snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7a33f11 snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9c68059 snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc212321 snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc6c200c snd_hda_bind_vol -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc84de48 snd_hda_mixer_bind_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbf0fd521 snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc638d735 is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc65ebcd8 snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc77c2d70 snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc5b9c40 snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4649a66 snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd50b3dfb snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5bff270 azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd729a462 snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd941b311 snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9592b2c snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdaae08d8 snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdc01d7d0 snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe4dcb74d snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe602c221 snd_hda_mixer_bind_ctls_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe615f43c snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe68c64dc snd_hda_jack_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe9cc6c71 snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xec59cd2d snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeeb83c9d snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeeeea404 snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef623f17 snd_hda_mixer_bind_ctls_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2cabace azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf501a335 snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf56f605c snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6576bc9 snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd26c26a azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe7331be snd_hda_bind_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x028d4302 snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x068e2917 snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x07c1b986 snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0bf96b08 snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x24e91f9e snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2b13a73f snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2bec2206 snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4e8b9cc0 snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x61002f2a snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x78d54ea9 snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x884286c0 snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8864b96d snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x89dbd734 snd_hda_parse_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8c781678 snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x95943a3a snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x96c91839 snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xccd6fe00 snd_hda_get_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd5d2bf76 snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe08d0bc3 snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xee193bba snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfe23567c snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x88308630 cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x997b309a cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x4dfeef45 cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xcedfeaa8 cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x2c5f6c37 cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xc73146e2 cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xd5d8c7c9 cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x49087188 es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xd0ef777b es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x2432c9e2 pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x846d9e3d pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x9553f2a8 pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xaa17abd2 pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x5b4da674 sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x5d335f8e sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xac3665d3 devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xb76b0dde sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xdebc5e51 sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xf61058da devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x446f321e ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xaf55f4f2 ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xd15011eb tpa6130a2_stereo_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xdde5ea0a tpa6130a2_add_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x93309f42 ts3a227e_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x36d43ce1 wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x4cf57612 wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x5b7198f2 wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x91dfb23a wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x42c4cf2b wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xcc4a465b wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x5036310a fsl_asrc_get_dma_channel -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xaab9233e fsl_asrc_platform -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x30693bb7 imx_audmux_v1_configure_port -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x58631dab imx_audmux_v2_configure_port -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x006366f8 snd_soc_platform_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x01772d5d snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02134555 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0459c0ea snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09297f2b snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0fd89512 snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x116dde33 devm_snd_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11864a82 snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11ec972c snd_soc_dpcm_be_get_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14f1e244 snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x153dcc88 snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1769d580 snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x182d2d04 snd_soc_platform_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ae1c8c1 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b2c7308 snd_soc_unregister_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c3cfe1d dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1de0131e snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f5d6912 snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x208aa0de snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x221c74a2 snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x222a6e35 snd_soc_free_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x230d4b35 snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23e79a9e snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2434cca2 snd_soc_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25afbc4c devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26471c83 snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a81a71e snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2aabcc6a snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c1624d8 snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ca1ee16 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ecba744 snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3012b23d devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x30726df6 snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x351a911a snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3572ca92 snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3577975c snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38162b82 snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38e2f427 snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x395b25c1 snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3bb99232 snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3cfa9a1d snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e3195f0 snd_soc_of_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f14cb81 snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f3bcff5 snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f5c8936 snd_soc_get_dai_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4157361d snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44f20b48 snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4851f003 snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48f87baf snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a927be8 snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4da38bb0 devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x509a5cb3 snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5524f440 snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55dcf15d snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a985f4b snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c066622 snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c9b6210 snd_soc_new_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5cb3c789 snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ea076bc snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x615925dc snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62a42778 dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62e84a6e snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6aa62aec snd_soc_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b0a362f snd_soc_unregister_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c7c8d6a snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d65e030 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e5448d0 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f7ef07e snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x706bfd86 snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x721fcdb3 snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73be3d31 snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b7b947d snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c160a0b snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7cb68c41 snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ecf9fca snd_soc_remove_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ed8c867 snd_soc_add_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83c9404c snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85d222ce snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8626e2f0 snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86ed45df snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8893dfb3 snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ac961cd snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b7f23ab snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8bd1a616 snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c9cd42d snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d78e5eb snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8dced6a3 dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x932fbbc5 snd_soc_of_parse_audio_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9362f22c snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97ba9571 snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98b0d0d4 snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99788f44 snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d5bd76b snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9dd3a909 snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e18ece5 snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1853dc8 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3c71fbe snd_soc_lookup_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3fa97e3 snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa471334e snd_soc_codec_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa5dfad15 snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa603ee35 snd_soc_add_platform_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa9a6ad5 snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaae080d5 snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab2ec0d5 snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xadf9ea43 snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xafd5053a snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb33e63b4 snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4f1be17 snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5bb7828 snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb682b283 snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7688c58 snd_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb96cfa52 snd_soc_platform_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba7225c9 snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb57af2e snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbdb79ab0 snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbff14913 snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc030ceef snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0b3482c soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc34ad14f snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3ae3730 snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb08b6ad snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb42aad1 snd_soc_codec_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd7dcc9b snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcdf1e3e5 snd_soc_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd258de78 dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3ab9316 snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd59768f7 snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdae5e2ce snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde3d3f0b snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0f16e98 snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe20ef108 snd_soc_add_codec_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe26cf195 snd_soc_dpcm_be_set_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe75f237e snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8af6a8e snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb0bd367 snd_soc_register_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xecf51202 snd_soc_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0531293 snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf065ad1c snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0a6e975 snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4b1f525 snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5abd8f5 snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5b94125 snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5c9da18 snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf747c03f snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8be0f2f snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8c9fbba snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf99fd867 dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd45c17e snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x01a2cccb line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0d81f796 line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x151619b2 line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1757e3c3 line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2f921970 line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3fb52699 line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x434ec5d9 line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x59f50347 line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5d8a26d9 line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5da958f4 line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8fab22af line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x92ab53d4 line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa360b77e line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd21215a2 line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xdd5f71e0 line6_init_pcm -EXPORT_SYMBOL_GPL vmlinux 0x0009d6c2 ata_sff_data_xfer_noirq -EXPORT_SYMBOL_GPL vmlinux 0x0014ea32 flush_fp_to_thread -EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x006e4f76 usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0x00722f38 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x008c516b gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0x00a3289f max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0x00afbe3c ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0x00eeff3b eeh_dev_open -EXPORT_SYMBOL_GPL vmlinux 0x00f822d1 virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before -EXPORT_SYMBOL_GPL vmlinux 0x0118be7d uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish -EXPORT_SYMBOL_GPL vmlinux 0x01243ca1 __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x0168f186 crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x01856334 ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0x018ff612 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0x019210c1 mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x019444ea platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x019e8ba3 mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0x01acf126 of_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x01d33b65 rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0x01d89bb7 gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x01dd5576 nd_blk_region_set_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01e34001 scom_map_device -EXPORT_SYMBOL_GPL vmlinux 0x01efd8fc crypto_alloc_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x0208f48a kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x021ebfda btree_update -EXPORT_SYMBOL_GPL vmlinux 0x022d3bd9 console_drivers -EXPORT_SYMBOL_GPL vmlinux 0x0238653b irq_create_mapping -EXPORT_SYMBOL_GPL vmlinux 0x023f03e0 balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x023f8715 ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0x023fbe19 disk_get_part -EXPORT_SYMBOL_GPL vmlinux 0x0247107d spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0x026211e2 memory_failure_queue -EXPORT_SYMBOL_GPL vmlinux 0x028c0d11 irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0x02935b05 crypto_create_tfm -EXPORT_SYMBOL_GPL vmlinux 0x02a65be5 ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x02ad2bba simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x02ad4f7a of_get_display_timings -EXPORT_SYMBOL_GPL vmlinux 0x02ae57a1 gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0x02b1709c usb_phy_generic_register -EXPORT_SYMBOL_GPL vmlinux 0x02b6efbd gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x02c5fa7d trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x03006151 pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0x0304d100 crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0x0320858e device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id -EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x033ecf5b subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x034eeeec ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0x03519d88 regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0x03aeebc0 __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x03b0bc9d bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0x03c2185d usb_gen_phy_init -EXPORT_SYMBOL_GPL vmlinux 0x03d25331 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0x03dbc5f6 pci_enable_pri -EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode -EXPORT_SYMBOL_GPL vmlinux 0x03eca890 rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x03f902aa regmap_update_bits_check -EXPORT_SYMBOL_GPL vmlinux 0x03ff51ee pwm_config -EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x040387f0 i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x0428d23d fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0x043aa868 virtqueue_get_avail -EXPORT_SYMBOL_GPL vmlinux 0x043b35c5 devm_usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x043b935f __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x044920e8 crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0x045d1f78 sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x04724bd4 pwm_request -EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0x04ad4ca0 skcipher_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x04e2e15e tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0x050d3d25 of_node_to_nid -EXPORT_SYMBOL_GPL vmlinux 0x051c0c2d dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x053494cb tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0x0545773e regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x0586e14c raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x058a67ac sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0x05b3f9a4 unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x05b959bf page_cache_sync_readahead -EXPORT_SYMBOL_GPL vmlinux 0x05c627b6 mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x05cbd5aa rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0x05e0eb38 virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0x060e8a6a ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0x06161454 yield_to -EXPORT_SYMBOL_GPL vmlinux 0x061dee59 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x0654279a led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0x0655821d skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0x066573ec __pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x066b35b8 ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0x068326cc wm5102_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x0689ce17 regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x069524bb get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x06a0f513 rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0x06cee329 tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x06ec2b73 devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0x07137b7e usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0x07324a69 get_slice_psize -EXPORT_SYMBOL_GPL vmlinux 0x07581dd0 balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x07601918 spi_master_resume -EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x0763c403 inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x0764c610 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x076ff1a1 unregister_cxl_calls -EXPORT_SYMBOL_GPL vmlinux 0x077eedf8 __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x0787f8f7 of_scan_bus -EXPORT_SYMBOL_GPL vmlinux 0x07999f42 pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0x07b02b22 kvmppc_do_h_remove -EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char -EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07c52ed4 mpc8xxx_spi_tx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x07c91d9d to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0x07cc0d7d gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0x07d46e45 preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07dba242 of_dma_router_register -EXPORT_SYMBOL_GPL vmlinux 0x07ddd3a8 usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0x0815a6e5 part_round_stats -EXPORT_SYMBOL_GPL vmlinux 0x08253591 regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x0847f8de blkg_print_stat_bytes_recursive -EXPORT_SYMBOL_GPL vmlinux 0x08510715 gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0x0855b0db devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x085e3782 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0x0886973d tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec -EXPORT_SYMBOL_GPL vmlinux 0x08d91c22 mm_iommu_put -EXPORT_SYMBOL_GPL vmlinux 0x08d98e89 transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x08ef61a9 tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x08f206b1 sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0x090a894e regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0x091c824a machine_power_off -EXPORT_SYMBOL_GPL vmlinux 0x091db247 usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x0935d1c4 shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0x094012c2 devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x09424bb5 eeh_add_sysfs_files -EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x094e2ba5 devm_regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x096d8638 mpc8xxx_spi_tx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0x098ed72c device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x09b15f4d debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x09b7062d fsl8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x09ccf813 rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0x09efe0cb perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0x09f5b7e4 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x0a2471f1 regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0x0a4f8286 dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0x0a51ae5b virq_to_hw -EXPORT_SYMBOL_GPL vmlinux 0x0a773b5d dax_clear_blocks -EXPORT_SYMBOL_GPL vmlinux 0x0a7ad7c2 debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0x0a935990 pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x0aaf886b md_stop -EXPORT_SYMBOL_GPL vmlinux 0x0ab79813 blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x0ab7f6c9 ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x0afa8dce sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x0b00b215 nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b0c291a serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x0b0de39b pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0x0b21bb87 cm_notify_event -EXPORT_SYMBOL_GPL vmlinux 0x0b296dcd wm8400_block_read -EXPORT_SYMBOL_GPL vmlinux 0x0b3f9926 proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0x0b415bab mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0x0b45e053 edac_subsys -EXPORT_SYMBOL_GPL vmlinux 0x0b478a5d regmap_fields_write -EXPORT_SYMBOL_GPL vmlinux 0x0b5b9dfc driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x0b8d3a70 scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x0b9eb743 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x0ba025b9 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x0ba0bd8b bio_clone_mddev -EXPORT_SYMBOL_GPL vmlinux 0x0bae2556 syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0c09752e stmpe_enable -EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0c1d6267 __blkdev_driver_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x0c65a653 of_modalias_node -EXPORT_SYMBOL_GPL vmlinux 0x0c9c567e ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0x0caf75d9 opal_flash_erase -EXPORT_SYMBOL_GPL vmlinux 0x0cb88648 set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x0cc8c2b2 regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0x0ce3ee5a mmu_kernel_ssize -EXPORT_SYMBOL_GPL vmlinux 0x0ce665c4 gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x0ce6ab66 ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0x0cfba695 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0x0d1e072b of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0x0d377fe4 irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d53a6af sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0x0d73a952 GregorianDay -EXPORT_SYMBOL_GPL vmlinux 0x0d79acf2 percpu_ida_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x0d8c00a4 virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x0da77fad generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0x0dae251b raw_seq_open -EXPORT_SYMBOL_GPL vmlinux 0x0dafac54 __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x0dbd84ab i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0x0dc55e8c __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0x0dc6957b get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0de06988 cpu_first_thread_of_core -EXPORT_SYMBOL_GPL vmlinux 0x0deb41c4 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x0e1525f8 regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x0e21c56f of_fdt_unflatten_tree -EXPORT_SYMBOL_GPL vmlinux 0x0e582ace blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0x0e58bd41 crypto_larval_lookup -EXPORT_SYMBOL_GPL vmlinux 0x0e5be6ad copro_handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x0e6054af __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0x0ea41f64 pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x0ec611c4 gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x0ecf823a static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x0ecfdba8 spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0x0ee8a6a4 crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x0f012044 __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x0f0a06b6 sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0x0f15f2f4 gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x0f1646c0 reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x0f2d7818 ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x0f312e86 cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x0f3a2781 nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x0f3daf75 to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0x0f447028 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0x0fdbf478 input_class -EXPORT_SYMBOL_GPL vmlinux 0x0fe05f94 pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0x0ffa26ba devres_release -EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x105fc9df vfio_register_iommu_driver -EXPORT_SYMBOL_GPL vmlinux 0x1060793e handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x10f6ceb2 ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0x10f812e2 crypto_init_shash_spawn -EXPORT_SYMBOL_GPL vmlinux 0x10fe2b3a cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0x110ae83d phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1114011d threads_shift -EXPORT_SYMBOL_GPL vmlinux 0x111a01d5 cpufreq_frequency_table_target -EXPORT_SYMBOL_GPL vmlinux 0x112d28dc find_symbol -EXPORT_SYMBOL_GPL vmlinux 0x1153a735 regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0x117c7305 hwpoison_filter_dev_major -EXPORT_SYMBOL_GPL vmlinux 0x11949968 cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0x11aa6480 da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x11b1a296 phy_create -EXPORT_SYMBOL_GPL vmlinux 0x11edc984 unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x11fc4e9b of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1220ec7e cpufreq_governor_dbs -EXPORT_SYMBOL_GPL vmlinux 0x1225b1c0 regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0x12409932 regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x12618f89 __percpu_ida_init -EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x1268facb mnt_clone_write -EXPORT_SYMBOL_GPL vmlinux 0x126f52d7 regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x127283e9 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x1288c81d ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x1289954b fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0x12d2cb7b dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0x12f39429 cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0x12fba3a3 trace_call_bpf -EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x131dcc3c split_page -EXPORT_SYMBOL_GPL vmlinux 0x132336ab ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0x132e8b5b led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0x1339492a pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x133c131a scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x135e7a66 of_get_nand_on_flash_bbt -EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x136a4ee6 btree_init -EXPORT_SYMBOL_GPL vmlinux 0x137257a1 usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0x1389da84 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0x138a9036 max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x1392c2c1 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0x139ba227 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0x13a6de94 wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen -EXPORT_SYMBOL_GPL vmlinux 0x13b778ff driver_register -EXPORT_SYMBOL_GPL vmlinux 0x13cab883 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0x13e5ea13 __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0x13f1c4ec blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x13f47113 bsg_request_fn -EXPORT_SYMBOL_GPL vmlinux 0x1408219a crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0x1426ebde ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0x1452d737 devm_mdiobus_free -EXPORT_SYMBOL_GPL vmlinux 0x1460488d rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x14658872 wm5110_patch -EXPORT_SYMBOL_GPL vmlinux 0x147e1f0b irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0x148bda41 crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0x14bce622 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x14dd0d76 sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x14dec7fd usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0x15000280 devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x1519db2f gpiochip_add -EXPORT_SYMBOL_GPL vmlinux 0x152787c4 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x15412a0c usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0x154316ad regmap_fields_force_write -EXPORT_SYMBOL_GPL vmlinux 0x15726c99 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0x1574f294 irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x15958e42 syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x15a2bac0 wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0x15b5e19c of_irq_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x15b8b44d opal_async_wait_response -EXPORT_SYMBOL_GPL vmlinux 0x15c21e5e nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x15eef15c add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started -EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x16093b24 __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x160b5d0c dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x1632c32a nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress -EXPORT_SYMBOL_GPL vmlinux 0x165dc82b pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x16996804 debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x16bbf1ab of_property_count_elems_of_size -EXPORT_SYMBOL_GPL vmlinux 0x16c2d6c8 dax_do_io -EXPORT_SYMBOL_GPL vmlinux 0x16c7b556 led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0x16cc72b3 driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x16fa14e0 pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x17077278 ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0x1708db77 rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0x17383238 __mmu_notifier_invalidate_range_start -EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x1792cb17 rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online -EXPORT_SYMBOL_GPL vmlinux 0x17c51b93 of_reserved_mem_device_init -EXPORT_SYMBOL_GPL vmlinux 0x17cce6a9 ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x18026646 crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x1829b9ed hwpoison_filter_memcg -EXPORT_SYMBOL_GPL vmlinux 0x183518e8 fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0x183c0ad0 regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x184ccdf1 __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1855ab26 sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0x185df021 i2c_lock_adapter -EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x186e8817 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert -EXPORT_SYMBOL_GPL vmlinux 0x189f874d powernv_get_random_long -EXPORT_SYMBOL_GPL vmlinux 0x18ff72d7 extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0x1902722c ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0x19119803 __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1916575c dio_end_io -EXPORT_SYMBOL_GPL vmlinux 0x192a4417 pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x193f3a86 __securityfs_setup_d_inode -EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x194f261a cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0x195620a0 blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x1956253d nvdimm_blk_region_create -EXPORT_SYMBOL_GPL vmlinux 0x19931c0b ata_eh_qc_retry -EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19a82184 rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x19b2a2fe ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x1a2a0e21 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x1a8c5907 btree_insert -EXPORT_SYMBOL_GPL vmlinux 0x1a8ecfad stmpe_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table -EXPORT_SYMBOL_GPL vmlinux 0x1a99a04e fat_detach -EXPORT_SYMBOL_GPL vmlinux 0x1aa65434 reservation_object_get_fences_rcu -EXPORT_SYMBOL_GPL vmlinux 0x1aba5eaf pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x1abd81a8 scom_controller -EXPORT_SYMBOL_GPL vmlinux 0x1ac4ccd1 ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing -EXPORT_SYMBOL_GPL vmlinux 0x1ad84294 unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x1ae87549 device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0x1ae98b36 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0x1afcb2b0 mpc8xxx_spi_rx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x1b094ce9 regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0x1b10e1e3 usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0x1b1300d0 crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0x1b2dea44 wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x1b647b3f spi_master_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1b692e75 ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x1b944714 user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1b9664d1 __destroy_context -EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return -EXPORT_SYMBOL_GPL vmlinux 0x1b9e5608 arizona_set_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x1b9f1911 blocking_notifier_chain_cond_register -EXPORT_SYMBOL_GPL vmlinux 0x1bbc5a63 pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0x1bc94298 pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x1be30d38 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x1bfe635b crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0x1c088134 devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0x1c0ed758 tpm2_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x1c1215bd threads_core_mask -EXPORT_SYMBOL_GPL vmlinux 0x1c150a30 tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x1c2ad10a srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x1c2ebafc usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x1c381d10 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c5deb7e ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x1c6f130a pwm_free -EXPORT_SYMBOL_GPL vmlinux 0x1c7be029 filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0x1c7df74c kvm_hv_vm_activated -EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 -EXPORT_SYMBOL_GPL vmlinux 0x1c81472c rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1c96756a __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x1caac2e5 crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0x1cbd8d72 unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x1cc8c4c4 pstore_register -EXPORT_SYMBOL_GPL vmlinux 0x1cdb2147 zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0x1cdcb566 ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x1cf55a35 platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0x1cf82066 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x1cfc3a9c usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0x1d02b86a virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d283efd regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings -EXPORT_SYMBOL_GPL vmlinux 0x1d652735 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x1d7d3d41 inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0x1d7ef036 srp_attach_transport -EXPORT_SYMBOL_GPL vmlinux 0x1d82136b __blk_run_queue_uncond -EXPORT_SYMBOL_GPL vmlinux 0x1d89bc56 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0x1da86ad3 ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x1dd9dc66 scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0x1de539b3 arizona_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x1e000879 hwpoison_filter_enable -EXPORT_SYMBOL_GPL vmlinux 0x1e55d831 mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1e78f282 fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x1e79f492 power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e89e1f7 save_stack_trace_tsk -EXPORT_SYMBOL_GPL vmlinux 0x1e8ba3a6 cpu_add_dev_attr_group -EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1eba6b4c __sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x1ebac2bd getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ecc368a cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x1edb769e led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0x1edc21cb hwpoison_filter_flags_mask -EXPORT_SYMBOL_GPL vmlinux 0x1ef68e2a blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x1f055f7b iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0x1f1562f4 component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0x1f1988f7 hwpoison_filter_flags_value -EXPORT_SYMBOL_GPL vmlinux 0x1f354707 crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0x1f640817 register_cxl_calls -EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x1fa0bb01 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0x1fa1569e register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x1fad27a0 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0x1fc298a9 ping_err -EXPORT_SYMBOL_GPL vmlinux 0x1fc5a459 xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0x1fcb2b00 ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x1fd94e88 devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0x1fdeb188 blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0x1fdf1a2e ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0x1ff52478 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x1ffdf26d mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0x20155a90 inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x202c8f36 of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x20394a09 pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x20533be6 regmap_fields_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x205ff313 device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x20620665 sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0x206aed58 ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x206c527b ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0x208641c8 debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0x20ae64e7 blk_mq_cancel_requeue_work -EXPORT_SYMBOL_GPL vmlinux 0x20c9d94c i2c_generic_gpio_recovery -EXPORT_SYMBOL_GPL vmlinux 0x20f8fa51 crypto_ablkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x211850f5 htab_hash_mask -EXPORT_SYMBOL_GPL vmlinux 0x214cdbd8 get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x21603444 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x2173fb41 gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x2184e12a virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x21a1271c regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21b3059c of_pci_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21f33949 device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0x221299c3 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2256e376 srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x2264afd0 securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x2280b246 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0x228785c1 ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0x22905da0 gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 -EXPORT_SYMBOL_GPL vmlinux 0x22b6f9af rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x22cad5ef of_get_nand_ecc_step_size -EXPORT_SYMBOL_GPL vmlinux 0x22ce7eb9 usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0x22d5a51c vfio_del_group_dev -EXPORT_SYMBOL_GPL vmlinux 0x22d69aa8 usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0x22dd371d udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x22dd544f ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x22e2c78a pci_bus_sem -EXPORT_SYMBOL_GPL vmlinux 0x231d49b2 usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0x232a5b8b crypto_lookup_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x232d1ada of_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x233dd8d0 pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x2349de62 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0x237cf9b3 subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x237d8571 sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x2380e697 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x23849afd ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x238ec99e rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0x23b2e7a3 irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x23b435c8 thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x23c4a7da pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x23f6d68e dm_get_table_device -EXPORT_SYMBOL_GPL vmlinux 0x24011e14 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0x241e9948 usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0x242254cb pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0x2422a1f6 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0x245601a0 skcipher_geniv_exit -EXPORT_SYMBOL_GPL vmlinux 0x246f263f find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x247c48eb netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2482573e task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x248cb2d2 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0x24a93d8d of_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key -EXPORT_SYMBOL_GPL vmlinux 0x24aea77c unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x24d5bfbe event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset -EXPORT_SYMBOL_GPL vmlinux 0x250a5ad6 __get_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x25485efd usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0x25634a09 scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0x25741eea irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x25c3dc04 each_symbol_section -EXPORT_SYMBOL_GPL vmlinux 0x25da3bbb blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x262108b3 fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock -EXPORT_SYMBOL_GPL vmlinux 0x264616d8 extcon_get_cable_state -EXPORT_SYMBOL_GPL vmlinux 0x2650f713 single_open_net -EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x2667b9fe da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x26816440 skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x2694c4e0 rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x26a69668 rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0x26a96c2b irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x26b89f00 inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26f9873d rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0x272645f3 percpu_ida_free_tags -EXPORT_SYMBOL_GPL vmlinux 0x27392fb2 ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0x276c02cf br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0x27a28290 find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0x27a7820c register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x27c0c4be eventfd_ctx_read -EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info -EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x280c5c87 trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x281318a3 kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0x281a9391 init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x284e70ab list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0x28715fc4 tpm_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x28881f28 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x28a4d146 sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0x28a85783 fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0x28e4321d pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x28ff99a9 opal_prd_msg -EXPORT_SYMBOL_GPL vmlinux 0x29190632 pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x293d9b2d rtc_irq_register -EXPORT_SYMBOL_GPL vmlinux 0x2945f70f copro_flush_all_slbs -EXPORT_SYMBOL_GPL vmlinux 0x294c5ddc of_get_fb_videomode -EXPORT_SYMBOL_GPL vmlinux 0x295bc0ef of_pci_msi_chip_remove -EXPORT_SYMBOL_GPL vmlinux 0x296c398f skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x2975b027 crypto_alloc_instance -EXPORT_SYMBOL_GPL vmlinux 0x2986753c of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x29924d40 class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0x29b384dc raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0x29b90c17 usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0x29c3fc7d __blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0x29d2855c tcp_peer_is_proven -EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29ec5a99 perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0x2a18799d pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x2a38964f dax_fault -EXPORT_SYMBOL_GPL vmlinux 0x2a4c7122 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0x2a4cf874 unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x2a4eba10 regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2a68919e scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0x2a91c219 ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x2abd50b4 devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x2ad9b5c3 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x2add62e6 usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0x2ae08b08 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x2affc481 pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0x2b116fc8 __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0x2b4147ed kvmppc_hcall_impl_hv_realmode -EXPORT_SYMBOL_GPL vmlinux 0x2b5c303b smp_send_reschedule -EXPORT_SYMBOL_GPL vmlinux 0x2b6cf658 __get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x2ba8a040 arizona_of_get_type -EXPORT_SYMBOL_GPL vmlinux 0x2bd96a64 power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2bddba71 bdev_read_page -EXPORT_SYMBOL_GPL vmlinux 0x2bea8491 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x2beacc05 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x2bf00673 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc -EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c29b634 powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c4681fc pci_try_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x2c49451e pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c823f8a xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2ccaccae sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0x2cd0b218 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x2cd88f51 kvm_hv_vm_deactivated -EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq -EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0x2ceb1a4e get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d2540f5 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0x2d2bd3eb extcon_get_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0x2d3321dc usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x2d398a41 cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers -EXPORT_SYMBOL_GPL vmlinux 0x2d62ade6 ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0x2d762c18 simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x2d79a65b phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0x2da02a55 ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0x2daa558a key_type_user -EXPORT_SYMBOL_GPL vmlinux 0x2dbf562a usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x2dc5a6d1 btree_last -EXPORT_SYMBOL_GPL vmlinux 0x2dd4ac8f regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0x2ddb1c4e usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0x2df69ddc srp_rport_del -EXPORT_SYMBOL_GPL vmlinux 0x2e1b402c fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0x2e1da9fb probe_kernel_read -EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2e32c72e usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0x2e4a4579 tc3589x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x2e81e330 rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0x2e9d1db8 regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f23848f fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0x2f38ef28 unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register -EXPORT_SYMBOL_GPL vmlinux 0x2f5a365b tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x2f6e5606 register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x2f7719eb ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0x2f87a094 rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0x2f98aad6 iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0x2fa80a47 pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0x2fb8531b bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x2fc7de30 devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x2fd6488b subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake -EXPORT_SYMBOL_GPL vmlinux 0x2ffb5ff7 btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0x300ff091 wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x301832fb opal_async_get_token_interruptible -EXPORT_SYMBOL_GPL vmlinux 0x3059e329 power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x3081efa8 trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0x30889b9f regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0x30976b55 of_alias_get_id -EXPORT_SYMBOL_GPL vmlinux 0x30998a37 udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x309f4945 pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0x30c9fcfa usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x30edcff2 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x30ffc937 pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock -EXPORT_SYMBOL_GPL vmlinux 0x312663b6 gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x3132c02f regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0x3137118e lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0x314057d5 ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0x31426beb led_init_core -EXPORT_SYMBOL_GPL vmlinux 0x314f3de4 napi_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x315cef54 serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0x316ee85a devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x31841e93 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x3195afd2 percpu_up_read -EXPORT_SYMBOL_GPL vmlinux 0x31bef441 opal_i2c_request -EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put -EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31ccd5f1 regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0x32055376 crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x320b852b __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval -EXPORT_SYMBOL_GPL vmlinux 0x3228a690 tpm2_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x3228bfd0 usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0x326264ef thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x326d3dde platform_bus -EXPORT_SYMBOL_GPL vmlinux 0x3274497a ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x32864fb6 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x328739e9 regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update -EXPORT_SYMBOL_GPL vmlinux 0x328b9036 usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0x32a95e13 tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x32af76e7 usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec -EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32c473f4 platform_device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0x32e0006b file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x32e01eab ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0x32f03861 usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0x33398de6 mmu_psize_defs -EXPORT_SYMBOL_GPL vmlinux 0x333ecd5f devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x33404423 pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x33556303 blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x335d2679 __online_page_free -EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition -EXPORT_SYMBOL_GPL vmlinux 0x3375dd3b spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0x337786fa usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x33a210b2 power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0x33a4bcc2 mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0x33b392c3 bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x33c7aef8 pcibios_unmap_io_space -EXPORT_SYMBOL_GPL vmlinux 0x33c9bfc3 __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x33db5df0 wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x340fa670 regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0x342238f0 mm_iommu_get -EXPORT_SYMBOL_GPL vmlinux 0x34464e5d regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x345b5f92 debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get -EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0x34a8da5f __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x34af0adf opal_ipmi_send -EXPORT_SYMBOL_GPL vmlinux 0x34b3be71 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched -EXPORT_SYMBOL_GPL vmlinux 0x351efe75 ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0x35534c5f mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x35985011 crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0x35bf2acd nd_fletcher64 -EXPORT_SYMBOL_GPL vmlinux 0x35c87623 of_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x35d044e6 extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x3621165d debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0x362701f7 ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0x3639fb18 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x36584580 hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0x366d91ab anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3678426a regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0x368f1fea static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36ae05df sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0x36bb9007 usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x36c3b15d ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0x36c983ae blk_queue_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x36d64314 usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0x36d729ed ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x36f16e1c usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x36f3143e sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x36fdc8cd rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0x373936e7 led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0x376e1d04 dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0x37758a77 ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0x3779df80 dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0x377e7523 ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x377f2af2 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0x37c77ca4 tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0x37ccb719 fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0x37d8c668 tps65217_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x37ddb225 pwm_set_polarity -EXPORT_SYMBOL_GPL vmlinux 0x37e60008 posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0x37ef4a9d __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x38046311 arizona_clk32k_enable -EXPORT_SYMBOL_GPL vmlinux 0x380ec22f ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0x382ee91b usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x3862cb2c debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy -EXPORT_SYMBOL_GPL vmlinux 0x386c591b wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x387103d4 device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x38ab32e7 pnv_get_supported_cpuidle_states -EXPORT_SYMBOL_GPL vmlinux 0x38e13517 rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x38e9d325 usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x38ea5d1a clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x38fbeedd class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0x390ae4ef nd_numa_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x3911ce3f get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x391488a0 rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x392d09bb usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL vmlinux 0x392fe739 look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0x393590ba dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x39492eba crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x394e0cee mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x39597d25 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x3984eca2 device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0x39907a21 rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0x39a5e9bf elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0x39bc294c uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0x39c9cee0 eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current -EXPORT_SYMBOL_GPL vmlinux 0x39cffee0 rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x39db1b2f __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module -EXPORT_SYMBOL_GPL vmlinux 0x39eb5d88 device_remove_property_set -EXPORT_SYMBOL_GPL vmlinux 0x3a0073e8 bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0x3a01fd56 pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x3a1e9549 inet_csk_compat_getsockopt -EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0x3a38dc65 memory_failure -EXPORT_SYMBOL_GPL vmlinux 0x3a40b096 phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0x3a4d4ea7 regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3aa2898c usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3ad0e201 scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x3adf75a4 disk_part_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x3b0aa8a3 uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x3b205629 pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x3b2ae7c0 ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x3b6638af nd_blk_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x3b75139f skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x3b816f87 trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0x3b84a5df dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0x3b860210 rhashtable_walk_init -EXPORT_SYMBOL_GPL vmlinux 0x3b92b1eb tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x3b9a24f7 usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x3be42226 regmap_field_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x3be46ffd tps65217_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x3bf24fe6 bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0x3c25fd62 thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3c4665e0 simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x3c51ea7c opal_leds_get_ind -EXPORT_SYMBOL_GPL vmlinux 0x3c7a8d48 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x3c879cb7 ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag -EXPORT_SYMBOL_GPL vmlinux 0x3cab27d5 usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0x3cb0687e pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3cd48df8 irq_map_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x3cf69baf slice_get_unmapped_area -EXPORT_SYMBOL_GPL vmlinux 0x3d0a676d tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0x3d0ed14f netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d47056f elv_register -EXPORT_SYMBOL_GPL vmlinux 0x3d612305 iommu_direction_to_tce_perm -EXPORT_SYMBOL_GPL vmlinux 0x3d6c94b4 of_irq_to_resource_table -EXPORT_SYMBOL_GPL vmlinux 0x3d7a8a81 wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0x3d7ff117 tps65912_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x3d84ac49 dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0x3d8b9038 sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x3d8ceb7d bpf_prog_realloc -EXPORT_SYMBOL_GPL vmlinux 0x3da52762 md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0x3da67a23 fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match -EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab -EXPORT_SYMBOL_GPL vmlinux 0x3dcbc3f2 get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3dede7bd blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3dee095b sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0x3df2824f flush_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0x3df8c990 ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0x3dfc436e percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x3e07e360 wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0x3e0b61e1 vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0x3e135c05 blk_queue_bypass_start -EXPORT_SYMBOL_GPL vmlinux 0x3e259239 smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x3e48c07f unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched -EXPORT_SYMBOL_GPL vmlinux 0x3e6c24b1 pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e935a42 crypto_register_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x3e9aef76 pcibios_free_controller -EXPORT_SYMBOL_GPL vmlinux 0x3e9b13c6 class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x3eb51682 kick_process -EXPORT_SYMBOL_GPL vmlinux 0x3ec0e59c netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0x3ed710f7 sched_setscheduler -EXPORT_SYMBOL_GPL vmlinux 0x3eed22a4 alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0x3f0f0163 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3f1cb321 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0x3f4f9085 dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0x3f7f92c5 mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0x3fa170d7 devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0x3fb14423 md_ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x3fb2bd8a irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0x3fbf2fae usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0x3fd18097 gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0x3fd9a119 usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer -EXPORT_SYMBOL_GPL vmlinux 0x3fe5fffd vfio_spapr_pci_eeh_release -EXPORT_SYMBOL_GPL vmlinux 0x3fef7431 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x3ff574a2 usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0x4014fa0a adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0x40209445 regmap_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x40220411 of_dma_get_range -EXPORT_SYMBOL_GPL vmlinux 0x403a50d4 __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0x4045da30 bus_set_iommu -EXPORT_SYMBOL_GPL vmlinux 0x4047c494 ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources -EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x4093bfde virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x40dbec71 rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x41154521 iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x411af192 ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0x4130fd50 dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x416d408b shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x4180cdf5 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x4183d55d arizona_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer -EXPORT_SYMBOL_GPL vmlinux 0x419d8aa1 rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0x41a350bd usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0x41a80ab5 sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0x41bf9127 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x41cac8bf fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x41eb72d9 phy_exit -EXPORT_SYMBOL_GPL vmlinux 0x41f82b3e device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x42271755 irq_find_mapping -EXPORT_SYMBOL_GPL vmlinux 0x423ded4f class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done -EXPORT_SYMBOL_GPL vmlinux 0x424cb690 rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0x425ccf19 __spin_yield -EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags -EXPORT_SYMBOL_GPL vmlinux 0x426db544 pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x427de547 pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x428471c6 of_irq_parse_pci -EXPORT_SYMBOL_GPL vmlinux 0x429c3f55 uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0x429e0800 pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0x42b6164a virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0x42c28d55 wakeup_source_prepare -EXPORT_SYMBOL_GPL vmlinux 0x42e8e497 pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0x4314c587 device_init_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x432702e6 mm_iommu_mapped_inc -EXPORT_SYMBOL_GPL vmlinux 0x4327d124 vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x4362f8b5 __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x438ab229 of_irq_parse_raw -EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key -EXPORT_SYMBOL_GPL vmlinux 0x43b548dc rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift -EXPORT_SYMBOL_GPL vmlinux 0x44173452 crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x4421e892 __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x4437c5d5 exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0x44423753 __add_pages -EXPORT_SYMBOL_GPL vmlinux 0x4444cdb8 xhci_run -EXPORT_SYMBOL_GPL vmlinux 0x44663354 __rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0x446e3c47 __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x447281dc usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x4486c79f device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44bc0e9f device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x44bcdeb5 usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x44c7b720 extcon_update_state -EXPORT_SYMBOL_GPL vmlinux 0x44cd2353 of_get_dma_window -EXPORT_SYMBOL_GPL vmlinux 0x44f4c46d usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0x44f7e6c1 device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0x44fa280e irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x4508f438 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x450fb522 kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x451df499 crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x452691e5 gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0x452e3ca7 inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x453d8f75 sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0x453f0d9f inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0x4548ba35 tc3589x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x4589d9f3 pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0x458eaa2f call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x45ac8da6 put_pid -EXPORT_SYMBOL_GPL vmlinux 0x45bbe780 wm5102_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x4603c232 serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x460bb86f wakeup_source_drop -EXPORT_SYMBOL_GPL vmlinux 0x463c9479 blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x4644d203 ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0x464f4c69 ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x464fded0 scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0x4663990c __compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0x4676e6ee sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0x4688c96a usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x46a71f83 blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0x46bad1ff fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0x46d6dac8 dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x46e0c972 fuse_request_send -EXPORT_SYMBOL_GPL vmlinux 0x46f2c861 md_new_event -EXPORT_SYMBOL_GPL vmlinux 0x46ff615f ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x470b489b devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x475b2fba pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x476fae18 usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x4782203f irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x4788da69 desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0x47897d1a da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47c4f7fc nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0x47d0d114 unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x483424b9 reservation_object_test_signaled_rcu -EXPORT_SYMBOL_GPL vmlinux 0x483fc38b evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0x4855d524 crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x485a2292 rq_flush_dcache_pages -EXPORT_SYMBOL_GPL vmlinux 0x485aa8fa fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh -EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0x48812f8b tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x48984c7a gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x489b2654 device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x48b4a8ab key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0x48e0c0c7 blk_mq_free_hctx_request -EXPORT_SYMBOL_GPL vmlinux 0x48f6a788 devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x491e494a pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x49470934 devm_regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x494e8640 usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0x49544e20 xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0x49690570 PageHuge -EXPORT_SYMBOL_GPL vmlinux 0x498358b1 ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x4994070a ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x4997d7c8 sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0x49a3a03d ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x49df0363 init_phb_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49f4a5c8 adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x49f98d3f sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x4a026413 mm_iommu_mapped_dec -EXPORT_SYMBOL_GPL vmlinux 0x4a25d802 xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name -EXPORT_SYMBOL_GPL vmlinux 0x4a7b9766 pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0x4a7fb014 wm8997_patch -EXPORT_SYMBOL_GPL vmlinux 0x4a90160e bprintf -EXPORT_SYMBOL_GPL vmlinux 0x4aa39ddf gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0x4ae8c705 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x4b12116e cpu_remove_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0x4b160b68 swiotlb_tbl_unmap_single -EXPORT_SYMBOL_GPL vmlinux 0x4b200584 __class_create -EXPORT_SYMBOL_GPL vmlinux 0x4b2ac7f6 usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x4b2d8cb9 shmem_get_seals -EXPORT_SYMBOL_GPL vmlinux 0x4b563e06 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x4b774a7d iommu_add_device -EXPORT_SYMBOL_GPL vmlinux 0x4b8fa9f4 pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0x4c5242a1 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4c645b52 ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x4c645f9e static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0x4c6b0e39 __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0x4c70f591 device_create -EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table -EXPORT_SYMBOL_GPL vmlinux 0x4c9033eb rio_get_device -EXPORT_SYMBOL_GPL vmlinux 0x4ca5067b hash_page_mm -EXPORT_SYMBOL_GPL vmlinux 0x4ca5c869 regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0x4cc4f8f9 get_hwpoison_page -EXPORT_SYMBOL_GPL vmlinux 0x4ccea0de lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0x4ce49556 pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0x4cef4e39 sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0x4cf939fe trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d0aa421 of_property_read_u32_index -EXPORT_SYMBOL_GPL vmlinux 0x4d0e3240 phy_init -EXPORT_SYMBOL_GPL vmlinux 0x4d27fffe pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0x4d585310 regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0x4d79dd85 irq_of_parse_and_map -EXPORT_SYMBOL_GPL vmlinux 0x4dba9aeb device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0x4dc63c2b usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4e08984f regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path -EXPORT_SYMBOL_GPL vmlinux 0x4e369947 sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x4e482e04 unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x4e4dd45e __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0x4e5f3efa pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x4e90d5bb ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x4e9e546c dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x4ea16140 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x4eac4824 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0x4ec0f173 sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0x4ee1b76e __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4f05925c devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0x4f56f2ac mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0x4f580d2a device_move -EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f78f5fe rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0x4fa9e23a __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0x4fb6fa79 regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4ff4d22d thermal_generate_netlink_event -EXPORT_SYMBOL_GPL vmlinux 0x500b4b7f srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x50184112 transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x501a9704 sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x5028ac7b pci_cleanup_aer_uncorrect_error_status -EXPORT_SYMBOL_GPL vmlinux 0x5030512a of_css -EXPORT_SYMBOL_GPL vmlinux 0x5039c4ab percpu_ida_for_each_free -EXPORT_SYMBOL_GPL vmlinux 0x507596d8 hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x507c160c rtc_irq_set_state -EXPORT_SYMBOL_GPL vmlinux 0x507de8c6 add_memory -EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test -EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x50924c76 find_module -EXPORT_SYMBOL_GPL vmlinux 0x50a45c9a pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x50c1fd27 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x50c4c8ea fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0x50cd7802 skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x50df0f02 ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50f217e4 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x50f85377 bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x510e1c71 mm_iommu_lookup -EXPORT_SYMBOL_GPL vmlinux 0x512fc6bb pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0x5132fb8e component_master_add_child -EXPORT_SYMBOL_GPL vmlinux 0x51449eaa xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0x51467922 alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x518049a8 of_dma_xlate_by_chan_id -EXPORT_SYMBOL_GPL vmlinux 0x518d65e1 trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x51b65a26 rtc_lock -EXPORT_SYMBOL_GPL vmlinux 0x51c3e475 usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x51db0dbb sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0x51ebe1f8 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0x51f3ae13 pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x51f71e5c dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0x51ff09fa dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x5205e64d disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x520a0cfe device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL vmlinux 0x521f6462 crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0x522d2bcf usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x522f538b tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x5233189c pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0x524e8205 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x52678f17 ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0x527ebf1e securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x52801d2b __netpoll_free_async -EXPORT_SYMBOL_GPL vmlinux 0x52a09678 pcibios_finish_adding_to_bus -EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x52b2b9fc class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x52bf682d sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x532c9eec device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x5331187d sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0x5335dd11 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x533a54cb tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x533b156f blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x53440a40 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0x53544af1 blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0x53564143 fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0x53573277 gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0x53578968 phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x538cc16e pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0x53bf659a kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x53c00d9c ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x53c4ab1f of_overlay_create -EXPORT_SYMBOL_GPL vmlinux 0x53cab4a2 spi_alloc_master -EXPORT_SYMBOL_GPL vmlinux 0x53e211a6 fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x54147a32 rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 -EXPORT_SYMBOL_GPL vmlinux 0x54375162 ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x54493174 wm8998_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x545b54f6 serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x5465a321 usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x546c5565 ppc_tb_freq -EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time -EXPORT_SYMBOL_GPL vmlinux 0x5483bbe8 blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x548d331b kallsyms_on_each_symbol -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x54ad940c gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0x54d6acd3 usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x5521a818 ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x555826ac __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x557df30f virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0x5588879e kvmppc_entry_trampoline -EXPORT_SYMBOL_GPL vmlinux 0x55904426 extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5592a255 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x559a770c ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0x55a38ea9 devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x55a910a6 dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x55c6994b ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0x55cd1673 crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x55dca909 dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0x55df83d1 mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0x55e97123 policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0x55ea2b1b pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x55eb881c __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x55f11455 kvmppc_add_revmap_chain -EXPORT_SYMBOL_GPL vmlinux 0x55f51ef3 alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x55f6328c sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x55fae921 sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x560aa1db opal_tpo_write -EXPORT_SYMBOL_GPL vmlinux 0x561a67eb nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x56285bba cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x563a8c0b verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x563f1aa8 __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x5650e80e led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0x56534b62 pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen -EXPORT_SYMBOL_GPL vmlinux 0x5669af63 dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0x567d247d swiotlb_unmap_page -EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map -EXPORT_SYMBOL_GPL vmlinux 0x569c8abe crypto_ahash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x56a722be virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0x56a7ebec init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x56b80d4f regmap_read -EXPORT_SYMBOL_GPL vmlinux 0x56bf3d2f register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x56c19b03 of_pci_get_host_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up -EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x571aee74 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0x572828dc nd_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x5737d586 __mmu_notifier_invalidate_range -EXPORT_SYMBOL_GPL vmlinux 0x573e23bc alloc_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x5740f7cc debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0x5748b32b kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0x5753a6b0 scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x575b35b6 percpu_ida_free -EXPORT_SYMBOL_GPL vmlinux 0x575c5f94 execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0x5761f1fa usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x5767bcc0 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0x57770f4f sched_setattr -EXPORT_SYMBOL_GPL vmlinux 0x57825fa1 __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x5782c645 cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags -EXPORT_SYMBOL_GPL vmlinux 0x57eed93d __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x5800df79 dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0x580a1f89 rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x58110346 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x581fc6bc crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0x5829c932 scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0x583d7aa9 device_create_file -EXPORT_SYMBOL_GPL vmlinux 0x58473105 usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x58543fe4 tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0x586b845f vfio_spapr_pci_eeh_open -EXPORT_SYMBOL_GPL vmlinux 0x588f743b pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0x5892f832 release_pmc_hardware -EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname -EXPORT_SYMBOL_GPL vmlinux 0x58aa7dcd of_pci_parse_bus_range -EXPORT_SYMBOL_GPL vmlinux 0x58ae0e58 usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0x58dd6bda virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0x58e15392 devres_get -EXPORT_SYMBOL_GPL vmlinux 0x58ee3abb fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0x58f24719 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0x59052659 rtc_irq_unregister -EXPORT_SYMBOL_GPL vmlinux 0x59202332 module_mutex -EXPORT_SYMBOL_GPL vmlinux 0x59444e4f skb_morph -EXPORT_SYMBOL_GPL vmlinux 0x5947d8bc scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x594eb6e9 rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x5961bdc9 regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0x596ec64c usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0x599e6cd2 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0x599fd624 dax_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x59c79265 _gpiochip_irqchip_add -EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x59f17b17 usb_bus_list_lock -EXPORT_SYMBOL_GPL vmlinux 0x5a024ecd percpu_ida_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5a253ab0 disk_part_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x5a2d8dc1 security_kernel_fw_from_file -EXPORT_SYMBOL_GPL vmlinux 0x5a30682f inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0x5a34c907 vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x5a71c502 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq -EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5aac2e79 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x5aca08de splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0x5acc3e05 blk_set_queue_dying -EXPORT_SYMBOL_GPL vmlinux 0x5afe5ef8 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0x5b0caede phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0x5b1867ad napi_hash_del -EXPORT_SYMBOL_GPL vmlinux 0x5bb53a3f unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x5bd00a00 aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5bea60c4 pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x5bed0687 regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x5bf136d9 iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0x5bfac416 task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0x5c12a28b user_describe -EXPORT_SYMBOL_GPL vmlinux 0x5c276584 __sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x5c310339 blk_unprep_request -EXPORT_SYMBOL_GPL vmlinux 0x5c3d2d6c usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c5b60eb irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0x5c88b150 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x5c913eac extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0x5c92adfd sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x5cc84f36 of_prop_next_string -EXPORT_SYMBOL_GPL vmlinux 0x5cc99dc6 ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0x5cd6a96f __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x5cdd1182 hwpoison_filter -EXPORT_SYMBOL_GPL vmlinux 0x5cee07ec nf_register_afinfo -EXPORT_SYMBOL_GPL vmlinux 0x5cf93687 blkg_print_stat_ios_recursive -EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user -EXPORT_SYMBOL_GPL vmlinux 0x5d3a267f usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0x5d723071 input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0x5d7fcc55 unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x5d89f073 bio_associate_blkcg -EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5dc7189b realmode_pfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0x5deb4fdd ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0x5e0adc0f usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0x5e29b6f9 blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl -EXPORT_SYMBOL_GPL vmlinux 0x5e56d330 class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x5e5b0ce5 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0x5e6475d0 seq_release_net -EXPORT_SYMBOL_GPL vmlinux 0x5ee7542e reserve_pmc_hardware -EXPORT_SYMBOL_GPL vmlinux 0x5eeedd77 bio_associate_current -EXPORT_SYMBOL_GPL vmlinux 0x5f226035 mod_delayed_work_on -EXPORT_SYMBOL_GPL vmlinux 0x5f3c23f1 debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0x5f4193f4 debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x5f9c5179 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0x5fd8f398 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0x5fe0ebb2 crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0x5fe25a0a of_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x5ff75449 skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x601058c6 tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x60338b2c regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x60467b06 btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush -EXPORT_SYMBOL_GPL vmlinux 0x608d5424 cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL_GPL vmlinux 0x60a678c6 get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x60b3375f tc3589x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x60bd3b5d trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0x60bfc743 xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0x60cca309 __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x60d61fa1 ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq -EXPORT_SYMBOL_GPL vmlinux 0x60fcd5b9 ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0x610d0af6 gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x6128475c reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x6154c1bb of_gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x616641a9 pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0x619f31f1 serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x61a90c54 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0x61ab7f39 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x61b69885 tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0x61bede5f of_usb_update_otg_caps -EXPORT_SYMBOL_GPL vmlinux 0x61c52009 pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0x61d0decf tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0x61e75bf8 devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x62041687 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x6214b16c pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x621b4467 pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x621ea905 cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x624dff0e da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x624e2808 gpiochip_set_chained_irqchip -EXPORT_SYMBOL_GPL vmlinux 0x62626a95 devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x62655dd5 blkcipher_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x626b2feb crypto_alloc_instance2 -EXPORT_SYMBOL_GPL vmlinux 0x627c7dcd adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x627fbde1 regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0x62a69218 nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0x62bd5a6d __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x62dbd79a da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0x63122761 regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x631c9ba0 scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x63294244 tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0x635392fa sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x63997633 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0x63f14ebe io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x63f53a63 rio_get_asm -EXPORT_SYMBOL_GPL vmlinux 0x63fc8535 regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0x64067853 tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x64154a0f xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0x642ad087 mmput -EXPORT_SYMBOL_GPL vmlinux 0x642edbc4 pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched -EXPORT_SYMBOL_GPL vmlinux 0x64491c21 watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x6450645a trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x647aadf1 get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0x64ba4e50 swiotlb_tbl_map_single -EXPORT_SYMBOL_GPL vmlinux 0x64ba95e7 crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0x64e80dfb freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x64ed0e71 mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x64f1d53c nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0x64f3d577 xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x651695ee sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0x651b728c __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x652964ff component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0x65498c4a skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x65616448 event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0x658630a7 pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0x65b5c4e4 smpboot_update_cpumask_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x65bae25c sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65dd45d4 devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0x65ebc150 ata_eh_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x65ee696f __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x66050325 of_dma_is_coherent -EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x664c0e76 skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x664e9e0d dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0x666ea9b9 wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x66728602 disk_map_sector_rcu -EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x66afb53b unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x66b0ef4a usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x671aa84c stmpe_set_altfunc -EXPORT_SYMBOL_GPL vmlinux 0x67217a48 device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy -EXPORT_SYMBOL_GPL vmlinux 0x675dc3fa kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x6767a4f9 regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x678a4105 synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x679bd598 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x67ad6d4b nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x67b53431 xattr_getsecurity -EXPORT_SYMBOL_GPL vmlinux 0x67beeaf3 __mmu_notifier_invalidate_range_end -EXPORT_SYMBOL_GPL vmlinux 0x67d32f03 devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0x67df534e vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0x67e85de1 cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0x6839185e eeh_pe_configure -EXPORT_SYMBOL_GPL vmlinux 0x68473059 ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x686b9353 shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x686edcee iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x68809b9f blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0x68851beb shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0x68858697 ping_hash -EXPORT_SYMBOL_GPL vmlinux 0x689e0d14 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x68a1dbf1 __nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0x68a258d1 bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0x68d65ac7 max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval -EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0x6945854d init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x6955c9cf netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x695a8a87 crypto_alloc_ablkcipher -EXPORT_SYMBOL_GPL vmlinux 0x695deccb ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0x69728043 fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0x69790ef6 __init_new_context -EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x697cbbb4 threads_per_core -EXPORT_SYMBOL_GPL vmlinux 0x69821c8f rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0x698bc886 regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0x69b7c25d uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0x69c9867d tps65912_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x69cb81fd led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0x69d65199 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x69d78bff regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x69d84cab tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0x69e5b6c7 ref_module -EXPORT_SYMBOL_GPL vmlinux 0x69fb4a7f sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0x6a1439bb rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a1e9b8a dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0x6a1f4843 regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x6a2a9ead crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0x6a367b74 cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0x6a392943 gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x6a39a50a dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0x6a3d4175 pwmchip_add_with_polarity -EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x6a642537 fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a936feb system_verify_data -EXPORT_SYMBOL_GPL vmlinux 0x6a9dc310 bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0x6aa4d769 md_run -EXPORT_SYMBOL_GPL vmlinux 0x6aa650a8 class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x6aaf29f8 pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x6ab1373b perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0x6ab1446b ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0x6ab40e73 power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x6abbb822 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0x6ac5925d fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0x6ac66826 simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0x6acb8d84 ppc64_caches -EXPORT_SYMBOL_GPL vmlinux 0x6b1901ee da903x_update -EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0x6b2b28ce bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x6b4c9f6b device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x6b609ffe subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x6b69e734 inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6bdb2f60 tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x6bdc3433 tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0x6bf2e66e ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0x6c071c72 sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x6c1cf725 watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c508b78 ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0x6c6b169e pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0x6c6e1378 driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq -EXPORT_SYMBOL_GPL vmlinux 0x6cc2fb2c opal_message_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6ccdaa53 posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0x6cd56861 iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0x6d0864c3 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x6d108022 relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0x6d203423 regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d4ac67b crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x6d4caad9 ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0x6d601c5c rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0x6d74237c __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x6d967fe4 dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0x6da1a43b power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0x6dbaa221 led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0x6dbf388c pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0x6dccdbaa stmpe_block_write -EXPORT_SYMBOL_GPL vmlinux 0x6dfddc60 sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0x6e000ffe usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy -EXPORT_SYMBOL_GPL vmlinux 0x6e09b1df wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x6e163672 pcibios_find_pci_bus -EXPORT_SYMBOL_GPL vmlinux 0x6e182eca tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0x6e1d1c96 devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0x6e1d8558 iommu_present -EXPORT_SYMBOL_GPL vmlinux 0x6e379526 kernstart_addr -EXPORT_SYMBOL_GPL vmlinux 0x6e3cea03 wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x6e6b39a8 usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x6e6befee blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6e9a45c1 device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x6ea0bf65 bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x6ea5c13d dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0x6ef625e2 rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x6f2504fe blkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x6f2b8921 l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0x6f3f5477 regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6f5fd324 platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto -EXPORT_SYMBOL_GPL vmlinux 0x6f871bf8 pskb_put -EXPORT_SYMBOL_GPL vmlinux 0x6fc43eb5 rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0x6fd02668 set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0x6fd0e33c of_dma_configure -EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x6fe656cd pcibios_scan_phb -EXPORT_SYMBOL_GPL vmlinux 0x6fe7d44c usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x7044a2a7 cpufreq_frequency_table_cpuinfo -EXPORT_SYMBOL_GPL vmlinux 0x70499b0b power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0x70992487 ping_seq_fops -EXPORT_SYMBOL_GPL vmlinux 0x70a789a2 net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated -EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70dea992 usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0x70e0f41d of_get_regulator_init_data -EXPORT_SYMBOL_GPL vmlinux 0x70f3758e regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x712e7b7f ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x7157e4c7 debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0x715db237 trace_buffer_unlock_commit_regs -EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x71708bc8 dma_buf_vmap -EXPORT_SYMBOL_GPL vmlinux 0x71c71edb fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0x71ccded2 kvmppc_h_put_tce -EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab -EXPORT_SYMBOL_GPL vmlinux 0x71f3485c __online_page_set_limits -EXPORT_SYMBOL_GPL vmlinux 0x720e02f3 ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x7223d462 regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0x7232ec8c devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x7239b95e blk_mq_register_disk -EXPORT_SYMBOL_GPL vmlinux 0x726cc777 inet_hash -EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x72990c65 securityfs_create_dentry -EXPORT_SYMBOL_GPL vmlinux 0x729b48fe wbc_account_io -EXPORT_SYMBOL_GPL vmlinux 0x729cac67 gov_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x72b92943 trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0x72e001e9 of_console_check -EXPORT_SYMBOL_GPL vmlinux 0x72ff2c6b of_pci_find_msi_chip_by_node -EXPORT_SYMBOL_GPL vmlinux 0x7339e441 wm8997_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x73917215 usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0x7399be6b pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73b276d8 usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0x73bb8a1d nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x73f4022a tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x7414d53b usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x7443b35a __bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x74515014 led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x74546157 crypto_tfm_in_queue -EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x747d8e57 pci_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0x74a56a58 cpufreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x74a8ebbd blkdev_write_iter -EXPORT_SYMBOL_GPL vmlinux 0x74aee4b4 ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0x74af28ec tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74b8a5cf gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x74b8bc22 vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x750f9a0d platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 -EXPORT_SYMBOL_GPL vmlinux 0x7514e281 relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x75329035 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0x7538da8c dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x753ad4f4 devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x75429428 bpf_prog_get -EXPORT_SYMBOL_GPL vmlinux 0x757b49d2 kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only -EXPORT_SYMBOL_GPL vmlinux 0x75919861 ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0x7592cc76 pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x7594f181 usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0x759e590e setup_irq -EXPORT_SYMBOL_GPL vmlinux 0x75c9d8c3 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x75f2a044 usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x7618c8c5 adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x761ed6ec hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x762c0858 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x762f8635 pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x76515425 virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x76533b16 of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0x7656a430 kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x765c6d12 spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0x765d1cc5 ata_do_eh -EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x76acc85e regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x76bce090 mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x76f5576b crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x7716e061 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x7748c33e relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x776d52c8 usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0x77736a65 napi_by_id -EXPORT_SYMBOL_GPL vmlinux 0x777765cf devm_power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77b0cc4b dm_get_rq_mapinfo -EXPORT_SYMBOL_GPL vmlinux 0x77b455e3 cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0x77c5f660 extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x77e62ccb transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0x78001631 power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x780b26fb posix_timer_event -EXPORT_SYMBOL_GPL vmlinux 0x780edbfe regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0x7831b0db nl_table -EXPORT_SYMBOL_GPL vmlinux 0x7832511f phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0x7850f90d gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x785dc8cc sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0x78656503 sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x78701e20 phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x78a5f70f da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0x78c9d28c ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0x78cc5bec hugetlb_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x78f10999 usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0x7916be22 i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0x7936ded7 bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x79417fdb vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off -EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x795b6af0 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x7963592e percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x79755a19 adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x799f1244 driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x79aee096 tpm2_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x79bf5762 blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0x79cbe91e dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0x79d13934 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0x79d9da9a kernfs_path -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x7a0dcb9c gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0x7a1c7291 uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0x7a2c2f14 mm_iommu_find -EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x7a3ed85a tcp_fetch_timewait_stamp -EXPORT_SYMBOL_GPL vmlinux 0x7a5b8bfe add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0x7a6eb962 regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0x7a91c96b devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0x7a9324be ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0x7aae41fd devres_find -EXPORT_SYMBOL_GPL vmlinux 0x7abbdf85 regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x7aef223c mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set -EXPORT_SYMBOL_GPL vmlinux 0x7b21d85c regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x7b2cc796 fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x7b4c62c0 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x7b70ed5c pm_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0x7b7c6765 blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0x7b85bf1a devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7b876ed5 vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x7b92a43a bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0x7b9b49e6 list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x7ba11d32 ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0x7bb7da9a led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0x7bbb4670 iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0x7bc916be dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0x7bedeb40 pm_runtime_get_if_in_use -EXPORT_SYMBOL_GPL vmlinux 0x7bfbd32e pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x7c004e17 user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0x7c1722f6 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0x7c35706c blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0x7c37bc89 pseries_ioei_notifier_list -EXPORT_SYMBOL_GPL vmlinux 0x7c47b09a ping_proc_register -EXPORT_SYMBOL_GPL vmlinux 0x7c7d8036 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7c7f378e serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0x7caf7c85 shmem_add_seals -EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7ce8a9a5 debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0x7cea6577 regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cedf677 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d058e49 iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x7d129d11 devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0x7d1fbc24 io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0x7d244184 of_irq_parse_one -EXPORT_SYMBOL_GPL vmlinux 0x7d2aad4c usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x7d2f7f0a srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0x7d42288a i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x7d491c2c dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x7d52cfc9 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d945244 vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7db3a30e iommu_flush_tce -EXPORT_SYMBOL_GPL vmlinux 0x7db66116 of_display_timings_exist -EXPORT_SYMBOL_GPL vmlinux 0x7dc1e388 alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7deddf15 usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x7dfd3ecf gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x7e17ba7b klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x7e37dbac ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0x7e4db2ae __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e68b424 led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0x7e70de5d rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x7e8485b6 device_rename -EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0x7ea1a2bc probe_kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x7ea5cca7 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0x7ec36ad7 __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0x7ed0654f pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0x7edebeff hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0x7ee8e203 kvmppc_clear_ref_hpte -EXPORT_SYMBOL_GPL vmlinux 0x7f008202 btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0x7f0d786d iommu_domain_get_attr -EXPORT_SYMBOL_GPL vmlinux 0x7f11e66b platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x7f13d491 pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x7f1b0f97 of_dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x7f1fab43 device_store_int -EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature -EXPORT_SYMBOL_GPL vmlinux 0x7f423f6c eeh_pe_reset -EXPORT_SYMBOL_GPL vmlinux 0x7f518334 thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0x7f599fc1 scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0x7f6bcade eeh_add_device_tree_early -EXPORT_SYMBOL_GPL vmlinux 0x7f7bc710 klist_next -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f810e42 blk_mq_tags_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x7fa6e601 rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7fe31972 usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x7fe66c77 rhashtable_insert_rehash -EXPORT_SYMBOL_GPL vmlinux 0x7ffd6b11 driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x804ea02d __find_linux_pte_or_hugepte -EXPORT_SYMBOL_GPL vmlinux 0x8055a5d0 mpc8xxx_spi_rx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x805ea9d9 dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x807670bd trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x80950352 __online_page_increment_counters -EXPORT_SYMBOL_GPL vmlinux 0x809a897b devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x80b2488e inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x8114b8d6 md_is_badblock -EXPORT_SYMBOL_GPL vmlinux 0x8117ee8c spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0x811af876 rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x8141fcd4 usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0x8152e111 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8161cc32 devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x817428bc mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0x8197664e blk_queue_rq_timed_out -EXPORT_SYMBOL_GPL vmlinux 0x81bdb701 __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x81cbdeda inet_csk_compat_setsockopt -EXPORT_SYMBOL_GPL vmlinux 0x81ce5a91 regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0x81f577b5 of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x822088cc tpm2_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x82348a81 spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x825e60da ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0x826b49d4 sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x826b939c irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x82a22a20 iommu_del_device -EXPORT_SYMBOL_GPL vmlinux 0x82d4f786 xfrm_inner_extract_output -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x830bf5fc platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x83374edc x509_request_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x834139c8 __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x834248a7 tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0x836d61d0 atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0x83f26ba1 class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x8401f2af usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0x84368bed __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x844325ea bus_register -EXPORT_SYMBOL_GPL vmlinux 0x844a65d1 key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0x84577f31 rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0x845f5ed2 led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0x847b4941 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x84af9286 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x84ce7a9f swiotlb_map_page -EXPORT_SYMBOL_GPL vmlinux 0x84e4d12a do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x84f3a663 devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x85013f18 thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read -EXPORT_SYMBOL_GPL vmlinux 0x852c00f1 __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x852cbfc5 rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x8535da20 pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0x855c0f7a da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x857fa6cd debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0x8590a43c ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0x85a0d280 of_reconfig_get_state_change -EXPORT_SYMBOL_GPL vmlinux 0x85a0fc7f pwm_can_sleep -EXPORT_SYMBOL_GPL vmlinux 0x85c612ef skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x85e51a54 device_create_vargs -EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod -EXPORT_SYMBOL_GPL vmlinux 0x861a352f __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x864861f4 ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0x8666a7c5 fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x86676152 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x8692bcd3 ata_scsi_simulate -EXPORT_SYMBOL_GPL vmlinux 0x86cd2550 regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x86dd0aaa task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x86f11859 __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x86fdf689 ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0x8702e548 process_srcu -EXPORT_SYMBOL_GPL vmlinux 0x872c6563 crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0x872eb31a crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0x8737d28e rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error -EXPORT_SYMBOL_GPL vmlinux 0x87468f28 regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0x874eb7fc pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x876d0445 restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x876f336e queue_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0x87786dde device_reset -EXPORT_SYMBOL_GPL vmlinux 0x877c77f6 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x879a66d8 fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0x87b3c0e8 stmpe_disable -EXPORT_SYMBOL_GPL vmlinux 0x87b6e71a smpboot_register_percpu_thread_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x87c72900 __blk_put_request -EXPORT_SYMBOL_GPL vmlinux 0x87d5ea8f pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x8804af3d usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x880abf8f perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0x882c1b09 spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x883ecffc class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer -EXPORT_SYMBOL_GPL vmlinux 0x888de986 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x8892c140 blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0x889d0be6 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88ad1a0e tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x88b69e2c srp_stop_rport_timers -EXPORT_SYMBOL_GPL vmlinux 0x88b8173a ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x88cbe232 crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0x88dfc0c1 tpm_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x88ea18a4 rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x88eb98f9 free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x88f0efa7 set_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x8908c37b alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0x8913c407 tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x894de18b dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x894e4fc8 sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0x894fd529 da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x896ea980 blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x899d5f43 pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x899d7265 rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x89b34231 __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x89c347f6 usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0x89dbf5b0 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x89f984f9 pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0x8a057baa sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x8a106ff1 blkg_print_stat_bytes -EXPORT_SYMBOL_GPL vmlinux 0x8a1c1887 dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x8a475eb0 xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0x8a53d07b gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode -EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8ac80821 blk_queue_bypass_end -EXPORT_SYMBOL_GPL vmlinux 0x8ace1c8f virtqueue_get_used -EXPORT_SYMBOL_GPL vmlinux 0x8ae1e229 hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8b03c71a __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x8b04cd37 input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0x8b587ac6 dummy_con -EXPORT_SYMBOL_GPL vmlinux 0x8b5be554 device_show_int -EXPORT_SYMBOL_GPL vmlinux 0x8b60953f regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0x8b70e8ea __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0x8b74afc5 dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x8ba610e3 ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0x8bd479bd perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8be6fdbf bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0x8bfa6be9 validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c45b6f1 handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x8c4d5b7c rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status -EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c94ce62 ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x8cae54b5 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8cafc8ba devm_mdiobus_alloc_size -EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params -EXPORT_SYMBOL_GPL vmlinux 0x8cea765f memalloc_socks -EXPORT_SYMBOL_GPL vmlinux 0x8d1b73fb device_add -EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d281e8c fuse_request_send_background -EXPORT_SYMBOL_GPL vmlinux 0x8d6b69a7 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0x8d7acc2a nf_queue_entry_release_refs -EXPORT_SYMBOL_GPL vmlinux 0x8d9a3c53 ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x8dab4462 inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0x8db2b993 ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x8db80c15 fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x8dbf5a20 kvmppc_hv_entry_trampoline -EXPORT_SYMBOL_GPL vmlinux 0x8e2b25c2 videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x8e2ea859 pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8e3e7144 __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x8e54634b cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x8e65905b devres_add -EXPORT_SYMBOL_GPL vmlinux 0x8e65a3bb devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8e9f02a6 locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0x8ea94190 __blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x8eb5b71f debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x8edb21c7 sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0x8ee7b3eb usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0x8ef460ff cpufreq_table_validate_and_show -EXPORT_SYMBOL_GPL vmlinux 0x8ef6bd8e spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x8f04c21d led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f25f5d3 blkg_stat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x8f2e1e32 ahash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x8f3b6594 wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0x8f3e58c2 debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0x8f415b3e tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0x8f5026ef vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x8f60bf16 __remove_pages -EXPORT_SYMBOL_GPL vmlinux 0x8f61f248 usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0x8f6681c1 device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8f94456d pci_intx_mask_supported -EXPORT_SYMBOL_GPL vmlinux 0x8fced602 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0x8fda208c gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0x9006eeee serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x90100826 scsi_internal_device_block -EXPORT_SYMBOL_GPL vmlinux 0x903930e6 fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x90439a5b platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x904c65cc rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x906c905b usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0x9077d5ea usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x9082a770 pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x9092ec2a serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x90c307c8 of_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x90c319ac __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0x90c68884 iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x90f83c0a __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x91038744 metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x910673a9 attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x912c1f78 unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x916da9a0 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x9171a445 regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x917a0f7b rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91e7d5de regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x91f0c992 __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x921d85cf pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x9221dafe rhashtable_walk_start -EXPORT_SYMBOL_GPL vmlinux 0x9239c5f6 of_pci_msi_chip_add -EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x925a1812 usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0x925e7ca6 i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0x9264a475 devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x926c7a09 disk_part_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x9282488b put_hwpoison_page -EXPORT_SYMBOL_GPL vmlinux 0x92848d77 driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0x92988a69 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0x92d4f0b5 power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92e3d265 blkg_print_stat_ios -EXPORT_SYMBOL_GPL vmlinux 0x92f59a6b trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x931770df phy_put -EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x93311080 opal_flash_read -EXPORT_SYMBOL_GPL vmlinux 0x934110fe usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0x93910cbb inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x9391f60f sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x939a9a52 eeh_pe_set_option -EXPORT_SYMBOL_GPL vmlinux 0x93b425bc rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0x93c9bf1b ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x93e2fbd4 default_iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0x94093a79 crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0x94176c08 ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x9424d399 virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0x946708ef wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0x947a4cd2 crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x94ce81c2 ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x94d0ada7 flush_altivec_to_thread -EXPORT_SYMBOL_GPL vmlinux 0x94d972b7 unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x94de8dc8 iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0x94e2ed2f crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop -EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x951ce607 crypto_blkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x951f5913 usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x95258207 vfio_device_data -EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x954e46ce ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0x9559f8ef devm_rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x956c4779 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0x9570e54b tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0x95745221 debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0x957832a2 pci_try_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x957d82eb usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x95bb5655 __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95d0edb6 rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0x95fa8d94 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0x95fdac21 tpm2_startup -EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x96495ba8 spi_async -EXPORT_SYMBOL_GPL vmlinux 0x9652bfe1 inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x96778c2c cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0x967e7ab4 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x9680dbb7 crypto_init_ahash_spawn -EXPORT_SYMBOL_GPL vmlinux 0x969c73d9 vfio_device_put -EXPORT_SYMBOL_GPL vmlinux 0x96a3bb2a pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x96b2c34c __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x96b3df78 class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x96c05120 device_add_property_set -EXPORT_SYMBOL_GPL vmlinux 0x96cddffb inet_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0x96cf3563 devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0x96e8b6ba blk_mq_request_started -EXPORT_SYMBOL_GPL vmlinux 0x970a61f8 do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0x971e904e pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x97244753 ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x9735f061 register_jprobes -EXPORT_SYMBOL_GPL vmlinux 0x974002c9 ip_tunnel_get_stats64 -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x977070ec bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0x977d7c68 pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0x9780c464 inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0x97896063 mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x97a01819 iommu_tce_clear_param_check -EXPORT_SYMBOL_GPL vmlinux 0x97a6b3e7 iommu_domain_window_disable -EXPORT_SYMBOL_GPL vmlinux 0x97b48a36 __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x97b60fbd shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x980a6230 inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0x98263cbd con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0x982d1035 regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x98418304 uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9878fcd6 arizona_of_get_named_gpio -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9884213a cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x98a02a70 register_jprobe -EXPORT_SYMBOL_GPL vmlinux 0x98cb2290 devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0x98cc5bd9 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0x98e8514e ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x98e8d0a7 skb_gso_transport_seglen -EXPORT_SYMBOL_GPL vmlinux 0x98f9f73d fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on -EXPORT_SYMBOL_GPL vmlinux 0x9905c77b crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x990be411 __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x992a57d7 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0x99368d65 kvmppc_update_rmap_change -EXPORT_SYMBOL_GPL vmlinux 0x99436add device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x9955db1e pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x996526c3 fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0x9973add9 __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x9975831f dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range -EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x9987e6e9 opal_get_sensor_data -EXPORT_SYMBOL_GPL vmlinux 0x998d32d1 subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x9991157c rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0x999cc795 wm8400_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x99d3f295 iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x99da657d relay_open -EXPORT_SYMBOL_GPL vmlinux 0x99da7205 mddev_congested -EXPORT_SYMBOL_GPL vmlinux 0x99e9d517 ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x99ff8d08 opal_invalid_call -EXPORT_SYMBOL_GPL vmlinux 0x9a013dbf tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a16740d pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x9a16e6f5 ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x9a1797f1 pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0x9a201d74 pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0x9a2befb8 fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0x9a433428 swiotlb_tbl_sync_single -EXPORT_SYMBOL_GPL vmlinux 0x9a49d937 __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x9a4e622d vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck -EXPORT_SYMBOL_GPL vmlinux 0x9a8ebc71 device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x9aad6540 klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x9ab36df8 irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9adf08c3 mmu_linear_psize -EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9aec4793 sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x9af13b7d sched_setscheduler_nocheck -EXPORT_SYMBOL_GPL vmlinux 0x9b001f55 transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x9b0491f0 i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0x9b0dfef6 dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0x9b0f0eb4 noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x9b3e2a4e perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0x9b55947b scom_find_parent -EXPORT_SYMBOL_GPL vmlinux 0x9b5ebbec ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0x9b67b91a ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9ba0889e pcibios_map_io_space -EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x9bb9861d kvmppc_invalidate_hpte -EXPORT_SYMBOL_GPL vmlinux 0x9bbd6dbf screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0x9bca03ca ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x9bcc7fbd blkdev_read_iter -EXPORT_SYMBOL_GPL vmlinux 0x9bd6a344 pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9be86762 usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9bf5cef6 rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x9bfcdf5f serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0x9c1f9832 of_thermal_get_trip_points -EXPORT_SYMBOL_GPL vmlinux 0x9c275c38 devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0x9c3e0d31 cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x9c434cf8 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9c537564 scsi_device_from_queue -EXPORT_SYMBOL_GPL vmlinux 0x9c6f9023 component_del -EXPORT_SYMBOL_GPL vmlinux 0x9caf190a arizona_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x9cb0df4b trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x9cb60c58 platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9d028076 serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0x9d27c1a9 skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0x9d2ef950 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0x9d3ed2a7 rt_mutex_timed_lock -EXPORT_SYMBOL_GPL vmlinux 0x9d6bb08e rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0x9d9004ef of_pci_get_devfn -EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported -EXPORT_SYMBOL_GPL vmlinux 0x9db8e0db stmpe_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x9dc70df5 relay_close -EXPORT_SYMBOL_GPL vmlinux 0x9dde413d ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x9df7e540 __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0x9e2d8900 blk_queue_flush -EXPORT_SYMBOL_GPL vmlinux 0x9e45d71c root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e4a7da9 relay_reset -EXPORT_SYMBOL_GPL vmlinux 0x9e52599b dax_pfn_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0x9e59ca4f wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0x9e5d47c6 rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0x9e7d9f09 rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x9e8970d2 device_find_child -EXPORT_SYMBOL_GPL vmlinux 0x9e8bcd79 ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0x9e954b94 regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0x9eaabf0d cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x9ec6eeb8 usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0x9ed1b4bf anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x9ed217d8 tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ef5c639 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9f0a4582 scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x9f1cc7cb regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x9f67bfec bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x9fce716e uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0xa02d8d81 __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0xa049692a ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0xa05e43d9 tc3589x_block_read -EXPORT_SYMBOL_GPL vmlinux 0xa0a27fff pci_address_to_pio -EXPORT_SYMBOL_GPL vmlinux 0xa0b7b8ab cpu_add_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0xa0fadf92 unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0xa1015538 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0xa11b00f1 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xa13bc792 blkcipher_aead_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0xa1498221 __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0xa161be58 ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0xa16d8c97 led_trigger_store -EXPORT_SYMBOL_GPL vmlinux 0xa1739d84 nd_blk_region_to_dimm -EXPORT_SYMBOL_GPL vmlinux 0xa178f012 mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0xa17f227e input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa18becca wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0xa1a7d69f dax_pmd_fault -EXPORT_SYMBOL_GPL vmlinux 0xa1acd481 ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xa1aef969 regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0xa1d047a3 usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xa1db5263 pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0xa1df41a7 devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xa1e2652f pci_hp_change_slot_info -EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0xa2546a6b __rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa26e1ac0 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0xa2718017 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa279f219 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0xa2aa8131 register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xa2ac5519 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0xa2ac6bde blk_queue_flush_queueable -EXPORT_SYMBOL_GPL vmlinux 0xa2b24eb7 call_filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xa2d0359e xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0xa2f2e197 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0xa30d9142 irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0xa3116c87 regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xa31dbe15 cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0xa322cea3 wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0xa3396604 sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0xa33e0782 regulator_can_change_voltage -EXPORT_SYMBOL_GPL vmlinux 0xa363a2e1 usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0xa366b762 sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0xa384918b pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0xa38541f3 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register -EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3a2d9af walk_system_ram_range -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3c6f632 devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0xa3c7aa86 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xa3e16693 gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0xa40adae4 fat_scan -EXPORT_SYMBOL_GPL vmlinux 0xa40af26e dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xa422e6c5 bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xa4411fe2 fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0xa455175e pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa49533f4 eeh_pe_get_state -EXPORT_SYMBOL_GPL vmlinux 0xa4b22ba0 usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0xa4be06ae spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0xa4ca5dca usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0xa4e13925 kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0xa50fcb1a skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0xa55a936f sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0xa5910043 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0xa5942c1d fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0xa59c3db6 dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0xa5b00659 ppc_proc_freq -EXPORT_SYMBOL_GPL vmlinux 0xa5d821bd reservation_object_wait_timeout_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa5efe460 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0xa5f0791e rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xa5f1df92 devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0xa60fbf6c trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0xa62db9e9 iommu_tce_xchg -EXPORT_SYMBOL_GPL vmlinux 0xa6443335 crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0xa6474c5b cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xa6647139 tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa699588a device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0xa6ae7c41 uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6b27e70 pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xa6c01671 register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6eb3bbc devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xa6eded6c opal_xscom_read -EXPORT_SYMBOL_GPL vmlinux 0xa6f4fbc1 bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0xa721bc3f opal_rtc_write -EXPORT_SYMBOL_GPL vmlinux 0xa72435aa crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xa72adeae dbs_check_cpu -EXPORT_SYMBOL_GPL vmlinux 0xa72fa7ec public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0xa77269c2 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0xa79228dc dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0xa796b52b tc3589x_block_write -EXPORT_SYMBOL_GPL vmlinux 0xa7c05aff perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa7d1f3c9 ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0xa801be4b sg_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xa80585ff of_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xa82b90d0 ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xa834d0fb page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa85427a0 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0xa86b53cf vfio_group_get_external_user -EXPORT_SYMBOL_GPL vmlinux 0xa8b05c96 sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xa8c53f6f digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0xa8d065a1 regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0xa8f1a677 pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0xa8f1d69a sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0xa91764fd __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xa91edb29 seq_open_net -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa934e5b5 regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xa957cb06 register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xa965f30a of_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xa97fabd5 regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xa99af367 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0xa9a39731 devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xa9aa1b00 opal_poll_events -EXPORT_SYMBOL_GPL vmlinux 0xa9ce341e usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0xa9ce53f2 pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9e838db crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0xa9f4d11d usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0xa9f789c2 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0xaa3eae4f __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0xaa5f939f fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0xaa60cdfc thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xaa62d6dd ping_bind -EXPORT_SYMBOL_GPL vmlinux 0xaa6b4703 phy_get -EXPORT_SYMBOL_GPL vmlinux 0xaa8437a2 __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaaaecf57 crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0xaac14a5a __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0xab567d31 percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del -EXPORT_SYMBOL_GPL vmlinux 0xab68d694 crypto_givcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request -EXPORT_SYMBOL_GPL vmlinux 0xab6ebe71 palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0xab9d890b crypto_attr_alg2 -EXPORT_SYMBOL_GPL vmlinux 0xab9f7cae get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0xaba29e3b sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0xabaa61b4 da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabccece8 tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0xabda3310 of_regulator_match -EXPORT_SYMBOL_GPL vmlinux 0xac0624b4 vfio_spapr_iommu_eeh_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xac36b91c dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0xac51f620 copro_calculate_slb -EXPORT_SYMBOL_GPL vmlinux 0xac539279 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xac633ab7 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xac71323c stmpe_block_read -EXPORT_SYMBOL_GPL vmlinux 0xac7dd8a6 led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xac81c11b fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0xacbaf42c of_thermal_is_trip_valid -EXPORT_SYMBOL_GPL vmlinux 0xacdc8ce7 pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xace01442 pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list -EXPORT_SYMBOL_GPL vmlinux 0xacf5756d tps65912_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0xacfe997e powerpc_firmware_features -EXPORT_SYMBOL_GPL vmlinux 0xad3d2141 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0xad5f4790 register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0xad8d2717 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xad9393de rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0xadc10794 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0xade865e7 da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xaded9da1 perf_trace_buf_prepare -EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0xae070a95 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0xae168b4b crypto_alg_lookup -EXPORT_SYMBOL_GPL vmlinux 0xae20cbd3 md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0xae2fc506 led_trigger_show -EXPORT_SYMBOL_GPL vmlinux 0xae529622 pci_restore_ats_state -EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae6eaf93 hwpoison_filter_dev_minor -EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae81922b of_overlay_destroy_all -EXPORT_SYMBOL_GPL vmlinux 0xaec9921f hash_page -EXPORT_SYMBOL_GPL vmlinux 0xaef849c0 devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xaf01bc7c of_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xaf0adede dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0xaf125077 ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0xaf25f25a raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xaf279112 opal_leds_set_ind -EXPORT_SYMBOL_GPL vmlinux 0xafa99cce register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0xafaccb26 scsi_internal_device_unblock -EXPORT_SYMBOL_GPL vmlinux 0xafbddaed crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0xafbe6c9e kvmppc_hwrng_present -EXPORT_SYMBOL_GPL vmlinux 0xafde2d7d blkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xafe5c00a pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0xafe98813 bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0xaff1a26f __ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0xb00b833e pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0xb01676e7 bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0xb0253ea3 ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xb048182e mpic_subsys -EXPORT_SYMBOL_GPL vmlinux 0xb05b39a5 n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0xb05cc52a find_vpid -EXPORT_SYMBOL_GPL vmlinux 0xb0666da9 pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0xb089ca19 vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0xb08c5329 component_master_add -EXPORT_SYMBOL_GPL vmlinux 0xb0a2a7e9 srp_remove_host -EXPORT_SYMBOL_GPL vmlinux 0xb0aaf3a6 ata_base_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0xb0e4160f pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xb0e9942f tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0xb0f8ee74 __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0xb0ff4977 inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0xb108f41a iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0xb115b591 usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read -EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb15a4baf pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0xb166c12f spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb184438a of_mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0xb192aa0a dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0xb196f8f4 ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched -EXPORT_SYMBOL_GPL vmlinux 0xb1b370bd __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xb1b7c607 power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0xb1bb6922 virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain -EXPORT_SYMBOL_GPL vmlinux 0xb1c73a37 devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0xb1c78ee0 platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xb1cff981 regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xb1d0dd15 usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0xb1dc756a ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1e9632c vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL vmlinux 0xb1f6abd3 attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0xb20acea0 ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0xb21e1284 pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb22c3bd0 pci_reset_pri -EXPORT_SYMBOL_GPL vmlinux 0xb2361892 gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0xb23b1e2a iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xb2641f80 wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb27b967d ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb2812c01 trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0xb2d1bbf4 sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb3004306 dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0xb3087fad irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0xb31b8eb7 max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xb32021c5 __put_net -EXPORT_SYMBOL_GPL vmlinux 0xb32f6272 regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy -EXPORT_SYMBOL_GPL vmlinux 0xb381562f spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0xb39c02f2 get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0xb3c483cb rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xb3c56c2d ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xb3d12da9 skcipher_geniv_init -EXPORT_SYMBOL_GPL vmlinux 0xb3d29dbf spi_unregister_master -EXPORT_SYMBOL_GPL vmlinux 0xb3d7d948 relay_flush -EXPORT_SYMBOL_GPL vmlinux 0xb3ea89b2 blkg_prfill_stat -EXPORT_SYMBOL_GPL vmlinux 0xb3f27ce9 invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0xb3f9be49 devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0xb3fa0040 dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0xb4400c52 gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0xb46a306c wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0xb46f7e75 iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xb488588e tb_to_ns -EXPORT_SYMBOL_GPL vmlinux 0xb490c66d mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0xb495aced of_irq_get -EXPORT_SYMBOL_GPL vmlinux 0xb49c2087 devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xb4b72dcf to_of_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4cf799a net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0xb4d7fe21 ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0xb4e90e23 of_property_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb513e680 fib_select_path -EXPORT_SYMBOL_GPL vmlinux 0xb51e4ed4 pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb52e61bf pm_complete_with_resume_check -EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xb549a2d6 phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0xb57cb466 pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0xb5848bae __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited -EXPORT_SYMBOL_GPL vmlinux 0xb59ba952 max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table -EXPORT_SYMBOL_GPL vmlinux 0xb5a4869f ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0xb5aa10af atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb5c8edf4 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0xb5e8bcdd key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb5fba80c kvm_release_hpt -EXPORT_SYMBOL_GPL vmlinux 0xb6008a53 wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0xb6061e5d pci_ats_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xb60ad49a of_pci_range_parser_one -EXPORT_SYMBOL_GPL vmlinux 0xb60b5707 of_i8042_aux_irq -EXPORT_SYMBOL_GPL vmlinux 0xb62413c4 pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb63a8e7c ping_proc_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb643c250 xics_wake_cpu -EXPORT_SYMBOL_GPL vmlinux 0xb66faf98 rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0xb67eb0a3 gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xb683f04d aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xb685e20f pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0xb68b133c led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0xb68dfffc __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xb722f7b4 usb_phy_generic_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb7393bde inet6_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0xb753a1cc shash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0xb7671684 wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0xb7683798 nvdimm_bus_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xb79fc7a0 regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0xb7ae7809 cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0xb7c3c453 gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0xb8230d18 agp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0xb8242661 ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xb82fa2bf __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0xb836ec33 cpu_remove_dev_attr_group -EXPORT_SYMBOL_GPL vmlinux 0xb83a828b kvm_alloc_hpt -EXPORT_SYMBOL_GPL vmlinux 0xb83c18a1 fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0xb840e03f power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0xb846f676 task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0xb852dcc0 fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0xb855ddd6 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0xb857dd8e tps65217_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xb862d99d nvdimm_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xb8632c9b spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0xb8670a5a dm_disk -EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb88e104d get_kernel_page -EXPORT_SYMBOL_GPL vmlinux 0xb8c668b6 regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8d4b577 regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0xb8e8b3bd wm5110_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0xb8f6b1fd skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0xb8fa0f74 crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0xb945ace8 __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0xb976dae1 regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xb97d70e2 of_platform_default_populate -EXPORT_SYMBOL_GPL vmlinux 0xb99e7062 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0xb9a404c9 scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9cf60a4 crypto_unregister_pcomp -EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9e466c1 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xba0aadba ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xba158769 rtas_cancel_event_scan -EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba4145aa crypto_init_spawn2 -EXPORT_SYMBOL_GPL vmlinux 0xba9e79ea list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbaf32cc1 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb388a91 ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0xbb42c35e devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0xbb6d60f5 extcon_set_cable_state -EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0xbb8fc0db transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0xbbb9b116 regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0xbbc5213b irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xbbc7a02a i2c_unlock_adapter -EXPORT_SYMBOL_GPL vmlinux 0xbbf6f5fc blk_queue_dma_drain -EXPORT_SYMBOL_GPL vmlinux 0xbbf84b31 device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xbc14f9b0 wm8350_device_exit -EXPORT_SYMBOL_GPL vmlinux 0xbc26a2c0 cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0xbc43d686 usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0xbc63b7db fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc7f0b56 pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0xbc8a6fa0 spi_setup -EXPORT_SYMBOL_GPL vmlinux 0xbc935ec9 cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbd117405 irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xbd1a04f6 fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0xbd2a9905 dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0xbd3871d5 devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0xbd3f01e9 ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd494db4 ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0xbd671048 __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0xbd758130 irq_create_strict_mappings -EXPORT_SYMBOL_GPL vmlinux 0xbd7f3443 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0xbd8b4d8c pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xbd9e512f pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xbda9f5d1 vfio_device_get_from_dev -EXPORT_SYMBOL_GPL vmlinux 0xbdb86166 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0xbdd4a7d2 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0xbdd60ea9 crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xbde8dc00 tasklet_hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0xbdf41a75 __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xbdf639a1 rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0xbdfbcb81 sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xbe061f4e scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0xbe0ba61c agp_remove_bridge -EXPORT_SYMBOL_GPL vmlinux 0xbe18181f flush_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xbe1d0cfd sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0xbe1fbbde mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0xbe2f25ef skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0xbe37061c wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0xbe471cdf opal_rtc_read -EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe6c1f66 pwm_disable -EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbea971c0 sdio_run_irqs -EXPORT_SYMBOL_GPL vmlinux 0xbebcd541 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xbec8d1c8 analyse_instr -EXPORT_SYMBOL_GPL vmlinux 0xbec9596c ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0xbecfdd92 regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf1cc04b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0xbf36fbb7 gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xbf3c084d rio_request_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xbf46fb5a crypto_init_spawn -EXPORT_SYMBOL_GPL vmlinux 0xbf5c1ee8 devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xbf688879 extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xbfa48f5b sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0xbfac30b8 crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfcb312e cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0xbfda98d2 shash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbffa82bc param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space -EXPORT_SYMBOL_GPL vmlinux 0xc02bec3c usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xc03540bf ablkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0xc0493f3b regmap_field_write -EXPORT_SYMBOL_GPL vmlinux 0xc05b7e7a ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0xc065a455 cpu_core_index_of_thread -EXPORT_SYMBOL_GPL vmlinux 0xc06cb719 device_property_present -EXPORT_SYMBOL_GPL vmlinux 0xc081d70f ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc08a363a tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xc09dad5f __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0c287ce fsnotify -EXPORT_SYMBOL_GPL vmlinux 0xc0c9f6a7 fat_attach -EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc12dc669 nd_device_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xc12dd76e gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xc135388e find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0xc13e2047 tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0xc13fbaf0 handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0xc1404114 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc1a3ff03 __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc1b68f93 trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xc1b88640 da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc1bf6b9c sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0xc1bff329 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0xc1d989c5 vfio_external_check_extension -EXPORT_SYMBOL_GPL vmlinux 0xc1e72610 srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc1ee483d devm_regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xc2185667 ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xc221b8a2 crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0xc2230aa1 tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0xc2257dd3 sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc235f343 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0xc2433792 pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0xc24729f5 bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0xc2507922 device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0xc26f2a18 devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xc280d0c8 serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0xc2ab6746 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0xc2b9ba75 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0xc2c25342 usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xc2c6dd27 iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0xc2e00d49 virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0xc2fdaaf9 cxl_update_properties -EXPORT_SYMBOL_GPL vmlinux 0xc321e9b6 extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc32e77e0 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0xc32f7976 ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc339f832 pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc3434e00 phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xc34a38e0 nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0xc34c1920 rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xc357923c pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0xc35d2382 remove_irq -EXPORT_SYMBOL_GPL vmlinux 0xc3678327 scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0xc3719e8f bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xc37bd265 dma_request_slave_channel_reason -EXPORT_SYMBOL_GPL vmlinux 0xc37f402b wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xc38f36d9 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xc3a04506 devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc3a63181 ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0xc3b15bf1 usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0xc3b19454 ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0xc3b4be35 dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xc3bfa171 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0xc3c01ca1 md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0xc3cc7b3a kthread_park -EXPORT_SYMBOL_GPL vmlinux 0xc3d39bf0 blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0xc3dfdaf4 of_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0xc3e184f1 stmpe_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xc3fcf731 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0xc425bb9c init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc4659a86 ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc4767ae3 attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc48a5f83 tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL vmlinux 0xc4a16a61 unregister_jprobe -EXPORT_SYMBOL_GPL vmlinux 0xc4bf1ee7 class_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc4c3fba8 crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0xc4d2b8bc device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc520f4e9 crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0xc52d9ba8 dma_buf_kunmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0xc5404764 devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0xc551ab4d security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0xc56bb2fe debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc588ebab l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0xc58a1687 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xc5a2c19f idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc5b1f16e spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0xc5cd7fc2 perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0xc5e2fc00 __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0xc5e5a9fe kobject_move -EXPORT_SYMBOL_GPL vmlinux 0xc5e7c3cf virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0xc5fa2861 inode_congested -EXPORT_SYMBOL_GPL vmlinux 0xc6067187 usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0xc606cd3c boot_cpuid -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc627431a alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xc630f2e1 ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0xc634e04b __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xc63b174b pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xc63e7d93 static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xc647e02c wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc669e0fa to_nd_blk_region -EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc679741d cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xc68aa252 __atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc6b17f71 hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xc6b628ee iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0xc6bea9e8 watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0xc6c69a8f opal_flash_write -EXPORT_SYMBOL_GPL vmlinux 0xc6da7a0a __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0xc6ea5b1e iommu_map -EXPORT_SYMBOL_GPL vmlinux 0xc6efe567 thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xc747d8d5 device_del -EXPORT_SYMBOL_GPL vmlinux 0xc74b5546 devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xc75aef47 regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0xc766225b regmap_write_bits -EXPORT_SYMBOL_GPL vmlinux 0xc76799fb tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0xc77015c3 bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7b15e41 dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0xc7be6fce __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer -EXPORT_SYMBOL_GPL vmlinux 0xc7e2173f tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc801af2e usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xc81e02a6 md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0xc861bc1d sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0xc8624aeb usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xc8695c36 ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0xc86c170b ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xc8867136 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xc890d98a blk_mq_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0xc89879e2 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0xc8abb90a fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0xc8afe6a3 ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0xc8e5a545 devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0xc8fa3e49 rio_lock_device -EXPORT_SYMBOL_GPL vmlinux 0xc8ff6884 eeh_add_device_tree_late -EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xc9167331 power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0xc93b2594 dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0xc93b3ad6 kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0xc93bf12c of_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0xc93c07c5 tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc95eb3d5 vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0xc96af2e2 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc975d596 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level -EXPORT_SYMBOL_GPL vmlinux 0xc99e9a0a debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0xc9a239bf irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xc9ae58cb tps65912_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xc9c88873 kill_pid_info_as_cred -EXPORT_SYMBOL_GPL vmlinux 0xc9cdd2b1 component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0xc9d6f7ea extcon_unregister_interest -EXPORT_SYMBOL_GPL vmlinux 0xc9db628c irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc9ed2e57 rtc_irq_set_freq -EXPORT_SYMBOL_GPL vmlinux 0xca00645b get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0xca07b0b8 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0xca0f3d0a unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0xca7d123b blkcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca8d895c crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0xca94ffc0 rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xcaadc58e ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcacb6d6a key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0xcae94807 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xcaf59fdc devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0xcb02ce71 dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0xcb04c8d9 usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb25e703 ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module -EXPORT_SYMBOL_GPL vmlinux 0xcb5ee621 hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0xcb67ee42 bio_trim -EXPORT_SYMBOL_GPL vmlinux 0xcb756b6a inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0xcb8b9c28 perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0xcbb742af of_usb_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xcbc2632a pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0xcc0f1009 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcc1c0cc7 devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0xcc1dafa6 device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0xcc2ba30d list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0xcc2c0362 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xcc380920 powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0xcc53b11e handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0xcc56bb39 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0xcc6deeed __pci_complete_power_transition -EXPORT_SYMBOL_GPL vmlinux 0xcc83dbe3 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0xcc842aa5 sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule -EXPORT_SYMBOL_GPL vmlinux 0xcc937fdb bdev_write_page -EXPORT_SYMBOL_GPL vmlinux 0xccc793dc rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd34672 sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0xccd609e0 sock_update_netprioidx -EXPORT_SYMBOL_GPL vmlinux 0xcce454a6 do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xccf345df put_device -EXPORT_SYMBOL_GPL vmlinux 0xccfe2813 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0xcd050970 led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0xcd0f2426 devm_led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0xcd0f5432 ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0xcd35b412 pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0xcd512be3 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0xcd6cada2 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0xcd7394d5 wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0xcd7d74a9 crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq -EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs -EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcde17bad ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0xcde1c09e rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcde34ce3 add_memory_resource -EXPORT_SYMBOL_GPL vmlinux 0xcdf4a13f da903x_write -EXPORT_SYMBOL_GPL vmlinux 0xce151a36 for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0xce17c4ba powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0xce1c7c3e regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0xce379a53 arizona_dev_exit -EXPORT_SYMBOL_GPL vmlinux 0xce385bb0 ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0xce394103 iommu_tce_put_param_check -EXPORT_SYMBOL_GPL vmlinux 0xce4b40d4 md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0xce50fa06 i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce8117f1 md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0xce832309 gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xce89bebc bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0xceaf5aee device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0xcebd9ee4 regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xced774ba modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xceea2e89 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0xceecf5e7 __init_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0xcef74f26 virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0xcefa4d0d trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0xcf196c29 debugfs_remove_recursive -EXPORT_SYMBOL_GPL vmlinux 0xcf4973c8 fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain -EXPORT_SYMBOL_GPL vmlinux 0xcf611265 fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0xcf719642 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xcfc0641d nd_mapping_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0xcff5ecca bio_alloc_mddev -EXPORT_SYMBOL_GPL vmlinux 0xcfff9ee4 pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0xd00b0e59 user_update -EXPORT_SYMBOL_GPL vmlinux 0xd01afd3f opal_tpo_read -EXPORT_SYMBOL_GPL vmlinux 0xd01f8077 pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0xd022339d __giveup_vsx -EXPORT_SYMBOL_GPL vmlinux 0xd02f4591 spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0xd0361e3d bus_find_device_by_name -EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xd0504bdf inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xd05b71eb regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd070dc8c gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0xd0771b4a iommu_domain_window_enable -EXPORT_SYMBOL_GPL vmlinux 0xd0954d1b tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xd0a09888 devm_spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0xd0a5c411 crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xd0b87a24 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0xd0bb77fc vfio_virqfd_enable -EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0cbd217 thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0xd0d33b40 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xd0fb4eae platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0xd100f51f usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0xd1212f9e iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0xd1524095 posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xd18ceb93 crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xd18ea05a pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xd1b70863 crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0xd1be5a88 dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xd1dbb169 __module_address -EXPORT_SYMBOL_GPL vmlinux 0xd1dbdc21 nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd1fcad0a ablkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd2128d51 devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd2193a55 usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0xd21a8d4c usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xd22945c7 rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xd2460966 lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xd2489f23 hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0xd249f054 ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0xd250808b pwm_enable -EXPORT_SYMBOL_GPL vmlinux 0xd25205ed hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd269fa88 ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd2745a50 ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0xd278fb00 irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xd2817892 __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xd298547f tps65217_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xd2a3cee9 dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0xd2b3cc8e vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0xd2b50872 attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript -EXPORT_SYMBOL_GPL vmlinux 0xd2fd1fb6 xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd33dfde2 device_register -EXPORT_SYMBOL_GPL vmlinux 0xd3743e73 dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xd374eb33 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xd3cf9048 rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd404a937 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd4193092 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xd4487fd5 snprint_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd44ba481 usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0xd4597c7e sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0xd4715b26 tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0xd4805238 __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xd4810c90 ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0xd4a0c652 metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0xd4bd66a0 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4c535dd tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0xd4cee4a1 power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd4f77900 clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0xd50194e0 i2c_new_probed_device -EXPORT_SYMBOL_GPL vmlinux 0xd51f7540 eeh_pe_inject_err -EXPORT_SYMBOL_GPL vmlinux 0xd5238149 irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0xd53c9d70 ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xd53d50af devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd549477b ahash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0xd5596d48 opal_xscom_write -EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd56b5f64 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0xd589594d put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xd58b9ace dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0xd5b1a834 page_cache_async_readahead -EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0xd5ff869f pcibios_claim_one_bus -EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh -EXPORT_SYMBOL_GPL vmlinux 0xd615ab0d dma_buf_kmap -EXPORT_SYMBOL_GPL vmlinux 0xd6178e0d single_release_net -EXPORT_SYMBOL_GPL vmlinux 0xd62bd029 task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0xd645758c of_reserved_mem_device_release -EXPORT_SYMBOL_GPL vmlinux 0xd647ed57 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xd64a604b sysfs_remove_device_from_node -EXPORT_SYMBOL_GPL vmlinux 0xd64dae62 devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd6a43677 opal_async_release_token -EXPORT_SYMBOL_GPL vmlinux 0xd6b28897 rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0xd6d47d34 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0xd6d9c42e pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries -EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0xd71d9ec0 regmap_update_bits_check_async -EXPORT_SYMBOL_GPL vmlinux 0xd737b530 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0xd74d22bb serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xd780da5e da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0xd7843d3c spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0xd784e5bc pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0xd794ce5a apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0xd7953e62 sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0xd79fb371 device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0xd7a3c1e1 fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0xd7bb0031 crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0xd7cd62e7 shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0xd7d35132 gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0xd7de96d5 thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xd7e4449e srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0xd7f4ec02 pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0xd7fc3e98 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0xd81a190a devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xd8263870 mmu_slb_size -EXPORT_SYMBOL_GPL vmlinux 0xd828a786 unregister_jprobes -EXPORT_SYMBOL_GPL vmlinux 0xd85a8d70 phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd8752aa1 get_device -EXPORT_SYMBOL_GPL vmlinux 0xd875d91f crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xd87ccd05 xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0xd87d8578 extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd884feb5 pcibios_remove_pci_devices -EXPORT_SYMBOL_GPL vmlinux 0xd895b425 inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd89764da phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xd89dd601 dma_buf_kunmap -EXPORT_SYMBOL_GPL vmlinux 0xd8a43d26 of_get_nand_bus_width -EXPORT_SYMBOL_GPL vmlinux 0xd8c786f2 nvdimm_bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd8c89a1e srp_release_transport -EXPORT_SYMBOL_GPL vmlinux 0xd8cb9bd3 power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0xd8cd5edb crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0xd900f3f6 bdev_direct_access -EXPORT_SYMBOL_GPL vmlinux 0xd9125177 __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0xd93e8e0e of_get_videomode -EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0xd94aa457 display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0xd9555e0a devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd97878a7 mm_iommu_preregistered -EXPORT_SYMBOL_GPL vmlinux 0xd98f5a68 posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0xd99afee2 sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0xd99c1c17 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0xd9aafca7 of_get_nand_ecc_mode -EXPORT_SYMBOL_GPL vmlinux 0xd9d81400 dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0xd9e3992d bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xd9f48d09 crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xda016eff usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xda06d4b9 pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0xda3efe4d pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0xda59a0c3 __inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0xda61d3f2 __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xda63e070 kvmppc_do_h_enter -EXPORT_SYMBOL_GPL vmlinux 0xda913c9c __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xdab56436 wait_on_page_bit_killable_timeout -EXPORT_SYMBOL_GPL vmlinux 0xdada4d97 cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xdae715e0 videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdb012757 devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0xdb208848 eeh_dev_check_failure -EXPORT_SYMBOL_GPL vmlinux 0xdb22aecc tcp_death_row -EXPORT_SYMBOL_GPL vmlinux 0xdb2357b0 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0xdb23fafb rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0xdb2918c0 __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xdb6d4e75 scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0xdb7c0c4f securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xdb88a285 iommu_domain_set_attr -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb91e05c tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0xdbb1f87b pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xdbb57869 ping_close -EXPORT_SYMBOL_GPL vmlinux 0xdbb83fc7 tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdbc4419c pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0xdbcc7703 user_read -EXPORT_SYMBOL_GPL vmlinux 0xdbd42692 of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xdbdb07ec shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdc1c379d __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0xdc21405e fuse_get_req -EXPORT_SYMBOL_GPL vmlinux 0xdc510ba4 sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xdc5544e6 device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0xdc57ae2d of_thermal_get_ntrips -EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable -EXPORT_SYMBOL_GPL vmlinux 0xdc856fe1 usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xdc859e77 clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0xdc8ed5d2 usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0xdc9330ab __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0xdc9586f0 ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdca0c821 regmap_update_bits_async -EXPORT_SYMBOL_GPL vmlinux 0xdca1c529 rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0xdca4060a mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xdca6004d regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xdcb0e8ec irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0xdcca7457 blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0xdce068df crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0xdd0ecf5d irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock -EXPORT_SYMBOL_GPL vmlinux 0xdd1d920b cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xdd1f0793 cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xdd21865f blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0xdd326e5b devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd3f71b7 ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0xdd57e2b5 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0xdd58b2cd tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xdd5a4e23 rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0xdd729424 usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0xdd7716f3 gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0xdd8569a1 rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xdd991465 anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0xdda62c86 __ablkcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0xdda73653 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0xdda922d2 trace_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0xdde1c9c7 platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0xddedea32 input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0xde0997b5 eeh_iommu_group_to_pe -EXPORT_SYMBOL_GPL vmlinux 0xde2ed61d devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xde389427 da903x_read -EXPORT_SYMBOL_GPL vmlinux 0xde49a0e2 of_irq_find_parent -EXPORT_SYMBOL_GPL vmlinux 0xde54389c ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xde633826 dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0xde7005e0 __srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xde72bf9f dma_buf_kmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0xde7a8990 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0xde7e80f6 usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0xde8b1e1c tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0xde9cc1b3 rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0xde9e2403 memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdead1634 scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xded96ca2 percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0xdedf7697 __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf162086 mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0xdf4c4e5d pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdf5436b0 virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0xdf5a2d83 aead_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0xdf5d237d ata_sg_init -EXPORT_SYMBOL_GPL vmlinux 0xdf71fbd3 ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0xdf8f4683 usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xdfe62afe ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name -EXPORT_SYMBOL_GPL vmlinux 0xe0169b20 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0xe0291803 udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0xe043a2f2 netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0xe051214a blk_add_request_payload -EXPORT_SYMBOL_GPL vmlinux 0xe05b2a0f sysfs_add_device_to_node -EXPORT_SYMBOL_GPL vmlinux 0xe06b2b25 debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0xe07e9660 gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved -EXPORT_SYMBOL_GPL vmlinux 0xe08b8d3f remove_phb_dynamic -EXPORT_SYMBOL_GPL vmlinux 0xe092d024 ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xe095f2f5 register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0xe09e3183 smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0xe0dce757 map_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xe0dcffb9 ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0xe0fa6e5e of_get_nand_ecc_strength -EXPORT_SYMBOL_GPL vmlinux 0xe12d8f89 ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0xe13e6e3e regmap_write -EXPORT_SYMBOL_GPL vmlinux 0xe1510fad usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe1991adf __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0xe1b09df5 devm_pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports -EXPORT_SYMBOL_GPL vmlinux 0xe1c0f402 crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0xe1c31661 ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xe1fdac19 flush_vsx_to_thread -EXPORT_SYMBOL_GPL vmlinux 0xe21f848d nf_unregister_afinfo -EXPORT_SYMBOL_GPL vmlinux 0xe23b6342 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xe2457597 mpc8xxx_spi_rx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0xe263ab78 __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0xe27498d7 fuse_get_req_for_background -EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength -EXPORT_SYMBOL_GPL vmlinux 0xe28cc861 extcon_register_interest -EXPORT_SYMBOL_GPL vmlinux 0xe295ff71 driver_find -EXPORT_SYMBOL_GPL vmlinux 0xe29c3284 __dax_pmd_fault -EXPORT_SYMBOL_GPL vmlinux 0xe2a2b67c kvmppc_h_get_tce -EXPORT_SYMBOL_GPL vmlinux 0xe2bb77f7 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0xe2c59841 rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0xe2d44c8b rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0xe2fc7e10 wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xe3135f87 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xe39a9423 wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0xe3c849ce ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0xe3d7750e btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0xe3e4c8ff devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xe3fc41bf __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe449a6f9 __class_register -EXPORT_SYMBOL_GPL vmlinux 0xe452d689 ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xe465ecf4 thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xe469fcaf regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4a5434e bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe4c031f8 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto -EXPORT_SYMBOL_GPL vmlinux 0xe4f7b55d mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0xe51c040f register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xe51fd53b blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0xe5276e53 to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0xe536f0fa dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0xe5540302 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xe5579db9 regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq -EXPORT_SYMBOL_GPL vmlinux 0xe5a5d2f8 i2c_new_dummy -EXPORT_SYMBOL_GPL vmlinux 0xe5ea8893 regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xe5f5f445 gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0xe5f75e29 regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xe61a1583 i2c_new_device -EXPORT_SYMBOL_GPL vmlinux 0xe62708da wait_for_tpm_stat -EXPORT_SYMBOL_GPL vmlinux 0xe640c332 tcp_done -EXPORT_SYMBOL_GPL vmlinux 0xe6495cbb sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe654b59f wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0xe66ca56f led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module -EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen -EXPORT_SYMBOL_GPL vmlinux 0xe6ebe6f3 device_initialize -EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xe6efbe92 ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0xe71f51e0 regulator_register -EXPORT_SYMBOL_GPL vmlinux 0xe729c1eb preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xe731c6e4 fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0xe73496cd vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0xe7474616 tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0xe75a4f6b ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0xe768d444 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0xe7a30eff zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0xe7adfb7b __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0xe7dba831 of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0xe7f18b3c threads_per_subcore -EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr -EXPORT_SYMBOL_GPL vmlinux 0xe81576cc ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe8425825 vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe8508aef wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xe85c55e7 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe85cf551 da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe864861e invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0xe86639b3 pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0xe874d2a3 use_mm -EXPORT_SYMBOL_GPL vmlinux 0xe876e0c6 rt_mutex_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe89bd243 ata_sff_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xe89d3ecb of_property_read_string_helper -EXPORT_SYMBOL_GPL vmlinux 0xe8d3a2de iommu_take_ownership -EXPORT_SYMBOL_GPL vmlinux 0xe8f46963 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0xe8f54f62 usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0xe905f563 irq_find_matching_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xe9129cce rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xe936f13d ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe93fced6 crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0xe9427ca7 kern_mount_data -EXPORT_SYMBOL_GPL vmlinux 0xe9506579 iommu_tce_direction -EXPORT_SYMBOL_GPL vmlinux 0xe985d6e6 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0xe99758b3 device_attach -EXPORT_SYMBOL_GPL vmlinux 0xe9a5b3c0 nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0xe9c4da5e dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9dcb02e hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xe9e4e88d xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea126175 debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xea12e5ad sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0xea2d87ff ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0xea49e62e __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0xea5dfa00 spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0xea628c20 bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0xea64dcd1 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0xea740e89 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xeaa56372 crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0xeaa92b27 usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0xeaaf34d7 irq_create_direct_mapping -EXPORT_SYMBOL_GPL vmlinux 0xeac638c1 tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0xeae94bc6 usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0xeaff6623 of_get_display_timing -EXPORT_SYMBOL_GPL vmlinux 0xeb0752a1 powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0xeb0af747 crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xeb34f353 mmu_notifier_unregister_no_release -EXPORT_SYMBOL_GPL vmlinux 0xeb4eb6a5 usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0xeb6f9faa gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0xeb7d183e jump_label_rate_limit -EXPORT_SYMBOL_GPL vmlinux 0xeb8ae736 klist_init -EXPORT_SYMBOL_GPL vmlinux 0xebadd82e regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xebb6a948 __pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xebb92fac of_cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xec06050c mpc8xxx_spi_tx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare -EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del -EXPORT_SYMBOL_GPL vmlinux 0xec2d7899 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0xec41bcf3 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xec631f34 remove_memory -EXPORT_SYMBOL_GPL vmlinux 0xec6d7f1c crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0xec864236 percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0xec8d4e4f vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0xec92f124 ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0xecfd7fb9 crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0xed14ead7 pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xed1c74e8 dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0xed20c99f ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0xed25bb93 regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0xed459800 crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0xed66635f relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0xed8021c4 vfio_virqfd_disable -EXPORT_SYMBOL_GPL vmlinux 0xed83e147 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xed8d36bb xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0xed981a16 cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xed9b55ac rio_mport_send_doorbell -EXPORT_SYMBOL_GPL vmlinux 0xedb4990d arizona_clk32k_disable -EXPORT_SYMBOL_GPL vmlinux 0xedc2ae33 usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0xede5106b sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0xedec8689 __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xedf1eb21 regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0xee021048 msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0xee109fa0 arizona_dev_init -EXPORT_SYMBOL_GPL vmlinux 0xee59ac42 usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible -EXPORT_SYMBOL_GPL vmlinux 0xee891cc0 srp_tmo_valid -EXPORT_SYMBOL_GPL vmlinux 0xee89812f of_resolve_phandles -EXPORT_SYMBOL_GPL vmlinux 0xee8ec3a7 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xee96f1f4 pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0xee98e418 system_trusted_keyring -EXPORT_SYMBOL_GPL vmlinux 0xeea05acb crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0xeea9b15c ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0xeeb454d9 ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0xeebf4710 ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0xeec20e54 of_pci_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0xeec5fa15 cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0xeed11d21 devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0xeed7d240 usb_string -EXPORT_SYMBOL_GPL vmlinux 0xeee1ddbf ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xeee22cb8 io_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xef051d29 thermal_notify_framework -EXPORT_SYMBOL_GPL vmlinux 0xef3e351f ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0xef5ae136 sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0xef68c387 mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef6d007a sigset_from_compat -EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefab68bb gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0xefb07257 security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0xefc847f4 rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xefd6075c spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0xf0115ec3 crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xf0348e20 regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0xf03b8425 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0xf03ed6ee pcibios_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0xf04bb49b __module_text_address -EXPORT_SYMBOL_GPL vmlinux 0xf0721835 pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xf080d977 ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xf0ecf425 xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0xf0ee554f genlmsg_new_unicast -EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0xf126a242 pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0xf1282963 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0xf14e4d24 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xf156e93b ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xf158f170 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0xf1674c22 posix_timers_register_clock -EXPORT_SYMBOL_GPL vmlinux 0xf16dc6b0 edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0xf16f33cc gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf192a36d gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0xf1a62b6f of_i8042_kbd_irq -EXPORT_SYMBOL_GPL vmlinux 0xf1afcfbb fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key -EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on -EXPORT_SYMBOL_GPL vmlinux 0xf1d83aa5 key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0xf1ed4298 regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0xf1fde4dd hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf2114c9e crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0xf21d68ff usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf23b75cc dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xf26ebe58 irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0xf27efda1 devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xf2cd1096 fuse_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0xf3074a9b ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support -EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf314189e get_dcookie -EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf3325c04 vfio_add_group_dev -EXPORT_SYMBOL_GPL vmlinux 0xf33dc43c sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xf34eb369 platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf39c6019 power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0xf3cd4959 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0xf3dd3d9e early_find_capability -EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xf3f51b59 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0xf3f5b6ee register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0xf445e312 blkg_dev_name -EXPORT_SYMBOL_GPL vmlinux 0xf4487bd0 pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xf4502db3 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask -EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh -EXPORT_SYMBOL_GPL vmlinux 0xf4a4dc2e replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0xf4c78f14 skcipher_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf4e5a793 inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf4f857ad component_add -EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf50ce00a of_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0xf5157b0e __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0xf52e54cc pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0xf532dd0f dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xf5379771 net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf5501aa8 cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf56e9c58 ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0xf578a62f ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0xf591c173 ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0xf59be382 usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5c25060 nd_region_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xf5d0bd3c gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0xf601768f nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0xf601b23d tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0xf6222e8f adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0xf660bdca sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0xf662a677 pcibios_add_pci_devices -EXPORT_SYMBOL_GPL vmlinux 0xf6791176 tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0xf6ad8bdc isa_bridge_pcidev -EXPORT_SYMBOL_GPL vmlinux 0xf6bcac22 regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6d28860 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer -EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf6ef683b of_pci_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0xf72f763e debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0xf73b29a2 dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xf74ae33c pci_reset_bridge_secondary_bus -EXPORT_SYMBOL_GPL vmlinux 0xf7578811 serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0xf75c6729 of_get_pci_domain_nr -EXPORT_SYMBOL_GPL vmlinux 0xf78588d0 cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0xf78724ba crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0xf78bf205 generic_access_phys -EXPORT_SYMBOL_GPL vmlinux 0xf7a2de26 fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xf7ad93c2 serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0xf7aea4ed blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0xf7eea624 trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0xf7f47afd devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0xf806fe01 kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0xf82306ba cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf837e0eb unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xf845a81d serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0xf84d4b86 component_master_del -EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xf89d1675 md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0xf89f562f wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xf8a53d88 of_irq_get_byname -EXPORT_SYMBOL_GPL vmlinux 0xf8a8c414 kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0xf8e398fc memstart_addr -EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0xf91583ba skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0xf923e213 led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf94dec26 fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf958678e rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0xf9833a6f irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr -EXPORT_SYMBOL_GPL vmlinux 0xf997fca2 skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0xf998b593 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9a21881 to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xf9ccc6e0 rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0xf9dad256 irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xf9f5d2f3 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xfa1011c5 srp_rport_add -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start -EXPORT_SYMBOL_GPL vmlinux 0xfa2c84ba page_endio -EXPORT_SYMBOL_GPL vmlinux 0xfa39f6b6 kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0xfa5c044a pcibios_free_controller_deferred -EXPORT_SYMBOL_GPL vmlinux 0xfa8f210e _submit_bh -EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec -EXPORT_SYMBOL_GPL vmlinux 0xfaa0da0f leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xfab60503 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0xfaebe98b regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xfaf2f143 crypto_ahash_type -EXPORT_SYMBOL_GPL vmlinux 0xfb0047f6 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xfb2d4da9 bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0xfb2fc070 set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb44a7a1 opal_ipmi_recv -EXPORT_SYMBOL_GPL vmlinux 0xfb4d20f2 pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0xfb52b77d __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0xfb63bc4b tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0xfb6a1b4a posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb8deea7 irq_domain_add_simple -EXPORT_SYMBOL_GPL vmlinux 0xfba57d57 ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbcc9036 rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xfbd072f1 wm5110_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0xfbd3a24d opal_message_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc093423 thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfc16ff3a pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0xfc22f860 sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0xfc384059 da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xfc3da944 __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0xfc417669 iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0xfc6e0c69 ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0xfcaaf32d extcon_set_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0xfcb9366b od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0xfcddf931 of_prop_next_u32 -EXPORT_SYMBOL_GPL vmlinux 0xfcf4dd05 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xfcf73f75 devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0xfd1892a5 transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfd1b3cc3 mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0xfd2d5c97 rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xfd78151d usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack -EXPORT_SYMBOL_GPL vmlinux 0xfdbb8fff xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0xfddd285f mm_iommu_ua_to_hpa -EXPORT_SYMBOL_GPL vmlinux 0xfdf7443a shake_page -EXPORT_SYMBOL_GPL vmlinux 0xfdfc5118 pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfdfe3092 cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0xfe00e5b0 devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0xfe16b6ed of_irq_parse_and_map_pci -EXPORT_SYMBOL_GPL vmlinux 0xfe1a8a6f iommu_release_ownership -EXPORT_SYMBOL_GPL vmlinux 0xfe1f8097 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0xfe39d5c9 usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0xfe91cdcd devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xfe97aa61 fuse_put_request -EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfedcdddd pci_intx -EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xfefdf941 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0xff02db88 subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff073b13 __netlink_alloc_skb -EXPORT_SYMBOL_GPL vmlinux 0xff217181 usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0xff34993e devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0xff3ed6ba ata_eh_thaw_port -EXPORT_SYMBOL_GPL vmlinux 0xff50f6f4 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0xff5fa07d sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xff77e223 regulator_get -EXPORT_SYMBOL_GPL vmlinux 0xff7d0448 request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0xff86367a exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0xff9e3479 sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0xffc215bd of_usb_host_tpl_support -EXPORT_SYMBOL_GPL vmlinux 0xfff1bf64 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0xfff35818 scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0xfffbc776 pci_sriov_get_totalvfs reverted: --- linux-raspi2-4.4.0/debian.master/abi/4.4.0-89.112/ppc64el/generic.compiler +++ linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-89.112/ppc64el/generic.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu/IBM 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 reverted: --- linux-raspi2-4.4.0/debian.master/abi/4.4.0-89.112/ppc64el/generic.modules +++ linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-89.112/ppc64el/generic.modules @@ -1,4255 +0,0 @@ -3c59x -3w-9xxx -3w-sas -3w-xxxx -6lowpan -6pack -8021q -8139cp -8139too -8250_dw -8250_mid -8255 -8255_pci -8390 -842 -842_compress -842_decompress -88pm800 -88pm805 -88pm80x -88pm80x_onkey -88pm8607 -88pm860x-ts -88pm860x_battery -88pm860x_bl -88pm860x_charger -88pm860x_onkey -9p -9pnet -9pnet_rdma -9pnet_virtio -DAC960 -a100u2w -a3d -a8293 -aacraid -aat2870-regulator -aat2870_bl -ab3100 -ab3100-otp -ac97_bus -acard-ahci -acecad -acenic -act200l-sir -act8865-regulator -act_bpf -act_connmark -act_csum -act_gact -act_ipt -act_mirred -act_nat -act_pedit -act_police -act_simple -act_skbedit -act_vlan -actisys-sir -ad2s1200 -ad2s1210 -ad2s90 -ad5064 -ad525x_dpot -ad525x_dpot-i2c -ad525x_dpot-spi -ad5360 -ad5380 -ad5398 -ad5421 -ad5446 -ad5449 -ad5504 -ad5592r -ad5592r-base -ad5593r -ad5624r_spi -ad5686 -ad5755 -ad5764 -ad5791 -ad5933 -ad714x -ad714x-i2c -ad714x-spi -ad7150 -ad7152 -ad7192 -ad7266 -ad7280a -ad7291 -ad7298 -ad7303 -ad7314 -ad7414 -ad7418 -ad7476 -ad7606 -ad7746 -ad7780 -ad7791 -ad7793 -ad7816 -ad7877 -ad7879 -ad7879-i2c -ad7879-spi -ad7887 -ad7923 -ad799x -ad8366 -ad9523 -ad9832 -ad9834 -ad_sigma_delta -adc128d818 -adcxx -addi_apci_1032 -addi_apci_1500 -addi_apci_1516 -addi_apci_1564 -addi_apci_16xx -addi_apci_2032 -addi_apci_2200 -addi_apci_3120 -addi_apci_3501 -addi_apci_3xxx -addi_watchdog -ade7753 -ade7754 -ade7758 -ade7759 -ade7854 -ade7854-i2c -ade7854-spi -adf4350 -adfs -adi -adis16060 -adis16080 -adis16130 -adis16136 -adis16201 -adis16203 -adis16204 -adis16209 -adis16220 -adis16240 -adis16260 -adis16400 -adis16480 -adis_lib -adjd_s311 -adl_pci6208 -adl_pci7x3x -adl_pci8164 -adl_pci9111 -adl_pci9118 -adm1021 -adm1025 -adm1026 -adm1029 -adm1031 -adm1275 -adm8211 -adm9240 -adp5520-keys -adp5520_bl -adp5588-keys -adp5589-keys -adp8860_bl -adp8870_bl -adq12b -ads1015 -ads7828 -ads7846 -ads7871 -adt7310 -adt7316 -adt7316-i2c -adt7316-spi -adt7410 -adt7411 -adt7462 -adt7470 -adt7475 -adt7x10 -adummy -adutux -adv7511 -adv7604 -adv7842 -adv_pci1710 -adv_pci1723 -adv_pci1724 -adv_pci_dio -advansys -adxl34x -adxl34x-i2c -adxl34x-spi -adxrs450 -af-rxrpc -af9013 -af9033 -af_alg -af_key -af_packet_diag -affs -ah4 -ah6 -ahci -ahci_ceva -ahci_platform -ahci_qoriq -aic79xx -aic7xxx -aic94xx -aim_cdev -aim_network -aim_sound -aim_v4l2 -aio_aio12_8 -aio_iiro_16 -aiptek -aircable -airo -airspy -ak8975 -al3320a -algif_aead -algif_hash -algif_rng -algif_skcipher -ali-ircc -alim7101_wdt -altera-ci -altera-stapl -altera_jtaguart -altera_ps2 -altera_tse -altera_uart -alx -am53c974 -amc6821 -amd -amd5536udc -amd8111e -amdgpu -amplc_dio200 -amplc_dio200_common -amplc_dio200_pci -amplc_pc236 -amplc_pc236_common -amplc_pc263 -amplc_pci224 -amplc_pci230 -amplc_pci236 -amplc_pci263 -ams369fg06 -analog -anatop-regulator -ansi_cprng -anubis -aoe -apbps2 -apds9300 -apds9802als -apds990x -apds9960 -appledisplay -appletalk -appletouch -applicom -aquantia -ar1021_i2c -ar5523 -ar7part -arc-rawmode -arc-rimi -arc4 -arc_emac -arc_ps2 -arc_uart -arcmsr -arcnet -arizona-haptics -arizona-i2c -arizona-ldo1 -arizona-micsupp -arizona-spi -ark3116 -arkfb -arp_tables -arpt_mangle -arptable_filter -as102_fe -as3711-regulator -as3711_bl -as3722-regulator -as3935 -as5011 -asc7621 -ascot2e -asix -ast -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at24 -at25 -at76c50x-usb -at803x -at86rf230 -ata_generic -ata_piix -atbm8830 -aten -ath -ath10k_core -ath10k_pci -ath3k -ath5k -ath6kl_core -ath6kl_sdio -ath6kl_usb -ath9k -ath9k_common -ath9k_htc -ath9k_hw -ati_remote -ati_remote2 -atl1 -atl1c -atl1e -atl2 -atm -atmel -atmel-flexcom -atmel-hlcdc -atmel_mxt_ts -atmel_pci -atmtcp -atp870u -atusb -atxp1 -aty128fb -atyfb -au0828 -au8522_common -au8522_decoder -au8522_dig -aufs -auo-pixcir-ts -auo_k1900fb -auo_k1901fb -auo_k190x -auth_rpcgss -authenc -authencesn -autofs4 -avmfritz -ax25 -ax88179_178a -axp20x-pek -axp20x-regulator -axp20x_usb_power -axp288_adc -axp288_charger -axp288_fuel_gauge -b1 -b1dma -b1pci -b2c2-flexcop -b2c2-flexcop-pci -b2c2-flexcop-usb -b43 -b43legacy -b44 -bas_gigaset -batman-adv -baycom_par -baycom_ser_fdx -baycom_ser_hdx -bcache -bch -bcm-phy-lib -bcm203x -bcm3510 -bcm590xx -bcm590xx-regulator -bcm5974 -bcm7038_wdt -bcm7xxx -bcm87xx -bcma -bcma-hcd -bcmsysport -bd6107 -bdc -bdc_pci -be2iscsi -be2net -befs -belkin_sa -bfa -bfs -bfusb -bh1750 -bh1770glc -bh1780gli -binfmt_misc -block2mtd -blocklayoutdriver -blowfish_common -blowfish_generic -bluetooth -bluetooth_6lowpan -bma150 -bma180 -bmc150-accel-core -bmc150-accel-i2c -bmc150-accel-spi -bmc150_magn -bmg160_core -bmg160_i2c -bmg160_spi -bmp085 -bmp085-i2c -bmp085-spi -bmp280 -bna -bnep -bnx2 -bnx2fc -bnx2i -bnx2x -bnxt_en -bonding -bpa10x -bpck -bpqether -bq2415x_charger -bq24190_charger -bq24257_charger -bq24735-charger -bq25890_charger -bq27xxx_battery -br2684 -br_netfilter -brcmfmac -brcmsmac -brcmutil -brd -bridge -broadcom -broadsheetfb -bsd_comp -bsr -bt878 -btbcm -btcoexist -btintel -btmrvl -btmrvl_sdio -btqca -btrfs -btrtl -btsdio -bttv -btusb -btwilink -bu21013_ts -budget -budget-av -budget-ci -budget-core -budget-patch -c4 -c67x00 -c6xdigio -c_can -c_can_pci -c_can_platform -cachefiles -cadence_wdt -cafe_ccic -cafe_nand -caif -caif_hsi -caif_serial -caif_socket -caif_usb -caif_virtio -camellia_generic -can -can-bcm -can-dev -can-gw -can-raw -cap11xx -capi -capidrv -capmode -carl9170 -carminefb -cassini -cast5_generic -cast6_generic -cast_common -catc -cb710 -cb710-mmc -cb_pcidas -cb_pcidas64 -cb_pcidda -cb_pcimdas -cb_pcimdda -cc2520 -cc770 -cc770_isa -cc770_platform -cciss -ccm -cdc-acm -cdc-phonet -cdc-wdm -cdc_eem -cdc_ether -cdc_mbim -cdc_ncm -cdc_subset -ceph -cfg80211 -cfi_cmdset_0001 -cfi_cmdset_0002 -cfi_cmdset_0020 -cfi_probe -cfi_util -cfspi_slave -ch -ch341 -ch7006 -ch9200 -chacha20_generic -chacha20poly1305 -chaoskey -chipone_icn8318 -chipreg -chnl_net -ci_hdrc -ci_hdrc_imx -ci_hdrc_msm -ci_hdrc_pci -ci_hdrc_usb2 -ci_hdrc_zevio -cicada -cifs -cirrus -cirrusfb -clip -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_rsvp -cls_rsvp6 -cls_tcindex -cls_u32 -cm109 -cm32181 -cm3232 -cm3323 -cm36651 -cma3000_d0x -cma3000_d0x_i2c -cmac -cmdlinepart -cmm -cmtp -cnic -cobalt -cobra -coda -colibri-vf50-ts -com20020 -com20020-pci -com90io -com90xx -comedi -comedi_8254 -comedi_8255 -comedi_bond -comedi_isadma -comedi_parport -comedi_pci -comedi_test -comedi_usb -comm -configfs -contec_pci_dio -cordic -core -cp210x -cpc925_edac -cpia2 -cpsw_ale -cpu-notifier-error-inject -cramfs -crc-ccitt -crc-itu-t -crc32 -crc7 -crc8 -cryptd -crypto_user -cryptoloop -cs5345 -cs53l32a -csiostor -ctr -cts -cuse -cw1200_core -cw1200_wlan_sdio -cw1200_wlan_spi -cx18 -cx18-alsa -cx22700 -cx22702 -cx231xx -cx231xx-alsa -cx231xx-dvb -cx2341x -cx23885 -cx24110 -cx24113 -cx24116 -cx24117 -cx24120 -cx24123 -cx25821 -cx25821-alsa -cx25840 -cx82310_eth -cx88-alsa -cx88-blackbird -cx88-dvb -cx88-vp3054-i2c -cx8800 -cx8802 -cx88xx -cxacru -cxd2099 -cxd2820r -cxd2841er -cxgb -cxgb3 -cxgb3i -cxgb4 -cxgb4i -cxgb4vf -cxl -cxlflash -cy8ctmg110_ts -cyapatp -cyber2000fb -cyberjack -cyclades -cypress_cy7c63 -cypress_firmware -cypress_m8 -cytherm -cyttsp4_core -cyttsp4_i2c -cyttsp4_spi -cyttsp_core -cyttsp_i2c -cyttsp_i2c_common -cyttsp_spi -da9030_battery -da9034-ts -da903x -da903x_bl -da9052-battery -da9052-hwmon -da9052-regulator -da9052_bl -da9052_onkey -da9052_tsi -da9052_wdt -da9055-hwmon -da9055-regulator -da9055_onkey -da9055_wdt -da9062-core -da9062-regulator -da9062_wdt -da9063-regulator -da9063_onkey -da9063_wdt -da9150-charger -da9150-core -da9150-fg -da9150-gpadc -da9210-regulator -da9211-regulator -dac02 -daqboard2000 -das08 -das08_isa -das08_pci -das16 -das16m1 -das1800 -das6402 -das800 -davicom -db9 -dc395x -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -dccp_probe -ddbridge -de2104x -de4x5 -decnet -deflate -defxx -denali -denali_pci -des_generic -dgap -dgnc -dht11 -dib0070 -dib0090 -dib3000mb -dib3000mc -dib7000m -dib7000p -dib8000 -dibx000_common -digi_acceleport -digicolor-usart -diskonchip -diva_idi -diva_mnt -divacapi -divadidd -divas -dl2k -dlci -dlm -dln2 -dm-bio-prison -dm-bufio -dm-cache -dm-cache-cleaner -dm-cache-mq -dm-cache-smq -dm-crypt -dm-delay -dm-era -dm-flakey -dm-log -dm-log-userspace -dm-log-writes -dm-mirror -dm-multipath -dm-persistent-data -dm-queue-length -dm-raid -dm-region-hash -dm-round-robin -dm-service-time -dm-snapshot -dm-switch -dm-thin-pool -dm-verity -dm-zero -dm1105 -dm9601 -dmfe -dmm32at -dmx3191d -dn_rtmsg -dnet -docg3 -docg4 -dp83848 -dp83867 -drbd -drbg -drm -drm_kms_helper -drop_monitor -drv260x -drv2665 -drv2667 -drx39xyj -drxd -drxk -ds1621 -ds1682 -ds1wm -ds2482 -ds2490 -ds2760_battery -ds2780_battery -ds2781_battery -ds2782_battery -ds3000 -ds620 -dsbr100 -dscc4 -dss1_divert -dst -dst_ca -dstr -dt2801 -dt2811 -dt2814 -dt2815 -dt2817 -dt282x -dt3000 -dt3155 -dt9812 -dummy -dummy-irq -dummy_stm -dvb-as102 -dvb-bt8xx -dvb-core -dvb-pll -dvb-ttpci -dvb-ttusb-budget -dvb-usb -dvb-usb-a800 -dvb-usb-af9005 -dvb-usb-af9005-remote -dvb-usb-af9015 -dvb-usb-af9035 -dvb-usb-anysee -dvb-usb-au6610 -dvb-usb-az6007 -dvb-usb-az6027 -dvb-usb-ce6230 -dvb-usb-cinergyT2 -dvb-usb-cxusb -dvb-usb-dib0700 -dvb-usb-dibusb-common -dvb-usb-dibusb-mb -dvb-usb-dibusb-mc -dvb-usb-digitv -dvb-usb-dtt200u -dvb-usb-dtv5100 -dvb-usb-dvbsky -dvb-usb-dw2102 -dvb-usb-ec168 -dvb-usb-friio -dvb-usb-gl861 -dvb-usb-gp8psk -dvb-usb-lmedm04 -dvb-usb-m920x -dvb-usb-mxl111sf -dvb-usb-nova-t-usb2 -dvb-usb-opera -dvb-usb-pctv452e -dvb-usb-rtl28xxu -dvb-usb-technisat-usb2 -dvb-usb-ttusb2 -dvb-usb-umt-010 -dvb-usb-vp702x -dvb-usb-vp7045 -dvb_usb_v2 -dw_dmac -dw_dmac_core -dw_dmac_pci -dw_wdt -dwc3 -dwc3-pci -dwc_eth_qos -dwmac-generic -dwmac-ipq806x -dwmac-lpc18xx -dwmac-meson -dwmac-rk -dwmac-socfpga -dwmac-sti -dwmac-sunxi -dyna_pci10xx -dynapro -e100 -e1000 -e1000e -e3x0-button -e4000 -earth-pt1 -earth-pt3 -eata -ebt_802_3 -ebt_among -ebt_arp -ebt_arpreply -ebt_dnat -ebt_ip -ebt_ip6 -ebt_limit -ebt_log -ebt_mark -ebt_mark_m -ebt_nflog -ebt_pkttype -ebt_redirect -ebt_snat -ebt_stp -ebt_vlan -ebtable_broute -ebtable_filter -ebtable_nat -ebtables -ec100 -echainiv -echo -edac_core -edt-ft5x06 -eeprom -eeprom_93cx6 -eeprom_93xx46 -eeti_ts -efs -egalax_ts -ehci-platform -ehset -elan_i2c -elo -em28xx -em28xx-alsa -em28xx-dvb -em28xx-rc -em28xx-v4l -em_canid -em_cmp -em_ipset -em_meta -em_nbyte -em_text -em_u32 -emac_arc -emac_rockchip -emc1403 -emc2103 -emc6w201 -emi26 -emi62 -empeg -ems_pci -ems_usb -emu10k1-gp -enc28j60 -enclosure -encx24j600 -encx24j600-regmap -eni -enic -epat -epia -epic100 -eql -esas2r -esd_usb2 -esi-sir -esp4 -esp6 -esp_scsi -et1011c -et131x -ethoc -evbug -exofs -extcon-adc-jack -extcon-arizona -extcon-axp288 -extcon-gpio -extcon-max14577 -extcon-max77693 -extcon-max77843 -extcon-max8997 -extcon-palmas -extcon-rt8973a -extcon-sm5502 -extcon-usb-gpio -ezusb -f2fs -f75375s -f81232 -fakelb -fan53555 -farsync -faulty -fb_agm1264k-fl -fb_bd663474 -fb_ddc -fb_hx8340bn -fb_hx8347d -fb_hx8353d -fb_hx8357d -fb_ili9163 -fb_ili9320 -fb_ili9325 -fb_ili9340 -fb_ili9341 -fb_ili9481 -fb_ili9486 -fb_pcd8544 -fb_ra8875 -fb_s6d02a1 -fb_s6d1121 -fb_ssd1289 -fb_ssd1306 -fb_ssd1331 -fb_ssd1351 -fb_st7735r -fb_st7789v -fb_sys_fops -fb_tinylcd -fb_tls8204 -fb_uc1611 -fb_uc1701 -fb_upd161704 -fb_watterott -fbtft -fbtft_device -fc0011 -fc0012 -fc0013 -fc2580 -fcoe -fcrypt -fdomain -fdp -fdp_i2c -fealnx -ff-memless -firedtv -firewire-core -firewire-net -firewire-ohci -firewire-sbp2 -firewire-serial -fit2 -fit3 -fixed -fl512 -flexcan -flexfb -floppy -fm10k -fm801-gp -fm_drv -fmc -fmc-chardev -fmc-fakedev -fmc-trivial -fmc-write-eeprom -forcedeth -fore_200e -fotg210-hcd -fotg210-udc -fou -fpga-mgr -freevxfs -friq -frpw -fsa9480 -fscache -fsl-edma -fsl_elbc_nand -fsl_lpuart -ft6236 -ftdi-elan -ftdi_sio -ftl -fujitsu_ts -g450_pll -g760a -g762 -g_acm_ms -g_audio -g_cdc -g_dbgp -g_ether -g_ffs -g_hid -g_mass_storage -g_midi -g_ncm -g_nokia -g_printer -g_serial -g_webcam -g_zero -gadgetfs -gamecon -gameport -garmin_gps -garp -gcm -gdmtty -gdmulte -gdmwm -gdth -gen_probe -generic -generic-adc-battery -generic_bl -genet -geneve -gennvm -genwqe_card -gf128mul -gf2k -gfs2 -ghash-generic -gigaset -girbil-sir -gl518sm -gl520sm -gl620a -gluebi -go7007 -go7007-loader -go7007-usb -goku_udc -goodix -gp2ap002a00f -gp2ap020a00f -gpio -gpio-74x164 -gpio-74xx-mmio -gpio-addr-flash -gpio-adnp -gpio-adp5520 -gpio-adp5588 -gpio-altera -gpio-amd8111 -gpio-arizona -gpio-beeper -gpio-charger -gpio-crystalcove -gpio-da9052 -gpio-da9055 -gpio-dln2 -gpio-dwapb -gpio-fan -gpio-generic -gpio-grgpio -gpio-ir-recv -gpio-janz-ttl -gpio-kempld -gpio-lp3943 -gpio-max7300 -gpio-max7301 -gpio-max730x -gpio-max732x -gpio-mc33880 -gpio-mcp23s08 -gpio-ml-ioh -gpio-pca953x -gpio-pcf857x -gpio-rdc321x -gpio-regulator -gpio-syscon -gpio-tps65912 -gpio-twl4030 -gpio-twl6040 -gpio-ucb1400 -gpio-viperboard -gpio-vx855 -gpio-wm831x -gpio-wm8350 -gpio-wm8994 -gpio_backlight -gpio_keys -gpio_keys_polled -gpio_mouse -gpio_tilt_polled -gpio_wdt -gr_udc -grace -grcan -gre -grip -grip_mp -gs_fpga -gs_usb -gsc_hpdi -gspca_benq -gspca_conex -gspca_cpia1 -gspca_dtcs033 -gspca_etoms -gspca_finepix -gspca_gl860 -gspca_jeilinj -gspca_jl2005bcd -gspca_kinect -gspca_konica -gspca_m5602 -gspca_main -gspca_mars -gspca_mr97310a -gspca_nw80x -gspca_ov519 -gspca_ov534 -gspca_ov534_9 -gspca_pac207 -gspca_pac7302 -gspca_pac7311 -gspca_se401 -gspca_sn9c2028 -gspca_sn9c20x -gspca_sonixb -gspca_sonixj -gspca_spca1528 -gspca_spca500 -gspca_spca501 -gspca_spca505 -gspca_spca506 -gspca_spca508 -gspca_spca561 -gspca_sq905 -gspca_sq905c -gspca_sq930x -gspca_stk014 -gspca_stk1135 -gspca_stv0680 -gspca_stv06xx -gspca_sunplus -gspca_t613 -gspca_topro -gspca_touptek -gspca_tv8532 -gspca_vc032x -gspca_vicam -gspca_xirlink_cit -gspca_zc3xx -gtco -guillemot -gunze -hackrf -hamachi -hampshire -hangcheck-timer -hanwang -hci -hci_uart -hci_vhci -hdc100x -hdlc -hdlc_cisco -hdlc_fr -hdlc_ppp -hdlc_raw -hdlc_raw_eth -hdlc_x25 -hdlcdrv -hdm_dim2 -hdm_i2c -hdm_usb -hdpvr -he -hexium_gemini -hexium_orion -hfc4s8s_l1 -hfc_usb -hfcmulti -hfcpci -hfcsusb -hfs -hfsplus -hi6421-pmic-core -hi6421-regulator -hi8435 -hid -hid-a4tech -hid-alps -hid-apple -hid-appleir -hid-aureal -hid-axff -hid-belkin -hid-betopff -hid-cherry -hid-chicony -hid-corsair -hid-cp2112 -hid-cypress -hid-dr -hid-elecom -hid-elo -hid-emsff -hid-ezkey -hid-gaff -hid-gembird -hid-generic -hid-gfrm -hid-gt683r -hid-gyration -hid-holtek-kbd -hid-holtek-mouse -hid-holtekff -hid-icade -hid-kensington -hid-keytouch -hid-kye -hid-lcpower -hid-lenovo -hid-logitech -hid-logitech-dj -hid-logitech-hidpp -hid-magicmouse -hid-microsoft -hid-monterey -hid-multitouch -hid-ntrig -hid-ortek -hid-penmount -hid-petalynx -hid-picolcd -hid-pl -hid-plantronics -hid-primax -hid-prodikeys -hid-rmi -hid-roccat -hid-roccat-arvo -hid-roccat-common -hid-roccat-isku -hid-roccat-kone -hid-roccat-koneplus -hid-roccat-konepure -hid-roccat-kovaplus -hid-roccat-lua -hid-roccat-pyra -hid-roccat-ryos -hid-roccat-savu -hid-saitek -hid-samsung -hid-sensor-accel-3d -hid-sensor-als -hid-sensor-custom -hid-sensor-gyro-3d -hid-sensor-hub -hid-sensor-iio-common -hid-sensor-incl-3d -hid-sensor-magn-3d -hid-sensor-press -hid-sensor-prox -hid-sensor-rotation -hid-sensor-trigger -hid-sjoy -hid-sony -hid-speedlink -hid-steelseries -hid-sunplus -hid-thingm -hid-tivo -hid-tmff -hid-topseed -hid-twinhan -hid-uclogic -hid-waltop -hid-wiimote -hid-xinmo -hid-zpff -hid-zydacron -hidp -hih6130 -hisax -hisax_fcpcipnp -hisax_isac -hisax_st5481 -hisi504_nand -hmc5843_core -hmc5843_i2c -hmc5843_spi -hmc6352 -hopper -horus3a -hostap -hostap_pci -hostap_plx -hp100 -hpfs -hpilo -hpsa -hptiop -hsi -hsi_char -hso -hsr -hsu_dma -htc-pasic3 -hts221 -hts221_i2c -hts221_spi -htu21 -huawei_cdc_ncm -hvcs -hvcserver -hwa-hc -hwa-rc -hwmon-vid -hwpoison-inject -hx8357 -hysdn -i1480-dfu-usb -i1480-est -i2400m -i2400m-usb -i2c-algo-bit -i2c-algo-pca -i2c-ali1535 -i2c-ali1563 -i2c-ali15x3 -i2c-amd756 -i2c-amd8111 -i2c-arb-gpio-challenge -i2c-cbus-gpio -i2c-designware-core -i2c-designware-pci -i2c-designware-platform -i2c-diolan-u2c -i2c-dln2 -i2c-gpio -i2c-hid -i2c-i801 -i2c-isch -i2c-kempld -i2c-matroxfb -i2c-mpc -i2c-mux -i2c-mux-gpio -i2c-mux-pca9541 -i2c-mux-pca954x -i2c-mux-reg -i2c-nforce2 -i2c-ocores -i2c-parport -i2c-parport-light -i2c-pca-platform -i2c-piix4 -i2c-robotfuzz-osif -i2c-simtec -i2c-sis5595 -i2c-sis630 -i2c-sis96x -i2c-smbus -i2c-stub -i2c-taos-evm -i2c-tiny-usb -i2c-via -i2c-viapro -i2c-viperboard -i2c-xiic -i40e -i40evf -i5k_amb -i6300esb -i740fb -ib_addr -ib_cm -ib_core -ib_ehca -ib_ipoib -ib_iser -ib_isert -ib_mad -ib_mthca -ib_qib -ib_sa -ib_srp -ib_srpt -ib_ucm -ib_umad -ib_uverbs -ibmaem -ibmpex -ibmpowernv -ibmveth -ibmvfc -ibmvnic -ibmvscsi -ibmvscsis -icom -icp_multi -icplus -ics932s401 -ideapad_slidebar -idma64 -idmouse -idt77252 -idt_gen2 -idtcps -ieee802154 -ieee802154_6lowpan -ieee802154_socket -ifb -iforce -igb -igbvf -igorplugusb -iguanair -ii_pci20kc -iio-trig-interrupt -iio-trig-periodic-rtc -iio-trig-sysfs -iio_dummy -iio_hwmon -ila -ili210x -ili922x -ili9320 -imm -imon -ims-pcu -imx074 -imx6ul_tsc -imx_thermal -ina209 -ina2xx -industrialio -industrialio-buffer-cb -industrialio-triggered-buffer -industrialio-triggered-event -inet_diag -inexio -inftl -initio -input-leds -input-polldev -int51x1 -intel_th -intel_th_gth -intel_th_msu -intel_th_pci -intel_th_pti -intel_th_sth -intel_vr_nor -interact -interval_tree_test -inv-mpu6050 -io_edgeport -io_ti -ioc4 -iowarrior -ip6_gre -ip6_tables -ip6_tunnel -ip6_udp_tunnel -ip6_vti -ip6t_MASQUERADE -ip6t_NPT -ip6t_REJECT -ip6t_SYNPROXY -ip6t_ah -ip6t_eui64 -ip6t_frag -ip6t_hbh -ip6t_ipv6header -ip6t_mh -ip6t_rpfilter -ip6t_rt -ip6table_filter -ip6table_mangle -ip6table_nat -ip6table_raw -ip6table_security -ip_gre -ip_set -ip_set_bitmap_ip -ip_set_bitmap_ipmac -ip_set_bitmap_port -ip_set_hash_ip -ip_set_hash_ipmark -ip_set_hash_ipport -ip_set_hash_ipportip -ip_set_hash_ipportnet -ip_set_hash_mac -ip_set_hash_net -ip_set_hash_netiface -ip_set_hash_netnet -ip_set_hash_netport -ip_set_hash_netportnet -ip_set_list_set -ip_tables -ip_tunnel -ip_vs -ip_vs_dh -ip_vs_fo -ip_vs_ftp -ip_vs_lblc -ip_vs_lblcr -ip_vs_lc -ip_vs_nq -ip_vs_ovf -ip_vs_pe_sip -ip_vs_rr -ip_vs_sed -ip_vs_sh -ip_vs_wlc -ip_vs_wrr -ip_vti -ipack -ipaq -ipcomp -ipcomp6 -ipddp -iphase -ipheth -ipip -ipmi_devintf -ipmi_msghandler -ipmi_powernv -ipmi_poweroff -ipmi_si -ipmi_ssif -ipmi_watchdog -ipoctal -ipr -ips -ipt_CLUSTERIP -ipt_ECN -ipt_MASQUERADE -ipt_REJECT -ipt_SYNPROXY -ipt_ah -ipt_rpfilter -iptable_filter -iptable_mangle -iptable_nat -iptable_raw -iptable_security -ipvlan -ipw -ipw2100 -ipw2200 -ipx -ir-hix5hd2 -ir-jvc-decoder -ir-kbd-i2c -ir-lirc-codec -ir-mce_kbd-decoder -ir-nec-decoder -ir-rc5-decoder -ir-rc6-decoder -ir-sanyo-decoder -ir-sharp-decoder -ir-sony-decoder -ir-usb -ir-xmp-decoder -ircomm -ircomm-tty -irda -irda-usb -irlan -irnet -irtty-sir -iscsi_boot_sysfs -iscsi_target_mod -iscsi_tcp -isdn -isdn_bsdcomp -isdnhdlc -isicom -isight_firmware -isl29003 -isl29018 -isl29020 -isl29028 -isl29125 -isl6271a-regulator -isl6405 -isl6421 -isl6423 -isl9305 -isofs -isp116x-hcd -isp1362-hcd -isp1704_charger -isp1760 -it913x -itd1000 -itg3200 -iuu_phoenix -ivtv -ivtv-alsa -ivtvfb -iw_c2 -iw_cm -iw_cxgb3 -iw_cxgb4 -iw_nes -iwl3945 -iwl4965 -iwldvm -iwlegacy -iwlmvm -iwlwifi -ix2505v -ixgb -ixgbe -ixgbevf -janz-cmodio -janz-ican3 -jc42 -jedec_probe -jffs2 -jfs -jitterentropy_rng -jmb38x_ms -jme -joydev -joydump -jr3_pci -jsa1212 -jsm -kafs -kalmia -kaweth -kbic -kbtab -kcomedilib -ke_counter -kempld-core -kempld_wdt -kernelcapi -keyspan -keyspan_pda -keyspan_remote -keywrap -kfifo_buf -khazad -kingsun-sir -kl5kusb105 -kmx61 -kobil_sct -ks0108 -ks8842 -ks8851 -ks8851_mll -ks959-sir -ksdazzle-sir -ksz884x -ktti -kvaser_pci -kvaser_usb -kvm -kvm-hv -kvm-pr -kxcjk-1013 -kxsd9 -kxtj9 -kyrofb -l1oip -l2tp_core -l2tp_debugfs -l2tp_eth -l2tp_ip -l2tp_ip6 -l2tp_netlink -l2tp_ppp -l4f00242t03 -l64781 -lan78xx -lanai -lapb -lapbether -latch-addr-flash -lattice-ecp3-config -lcd -ld9040 -ldusb -lec -led-class-flash -leds-88pm860x -leds-adp5520 -leds-bcm6328 -leds-bcm6358 -leds-bd2802 -leds-blinkm -leds-da903x -leds-da9052 -leds-dac124s085 -leds-gpio -leds-ktd2692 -leds-lm3530 -leds-lm3533 -leds-lm355x -leds-lm3642 -leds-lp3944 -leds-lp5521 -leds-lp5523 -leds-lp5562 -leds-lp55xx-common -leds-lp8501 -leds-lp8788 -leds-lp8860 -leds-lt3593 -leds-max77693 -leds-max8997 -leds-mc13783 -leds-menf21bmc -leds-pca9532 -leds-pca955x -leds-pca963x -leds-powernv -leds-pwm -leds-regulator -leds-tca6507 -leds-tlc591xx -leds-wm831x-status -leds-wm8350 -ledtrig-backlight -ledtrig-camera -ledtrig-default-on -ledtrig-gpio -ledtrig-heartbeat -ledtrig-oneshot -ledtrig-timer -ledtrig-transient -legousbtower -lg-vl600 -lg2160 -lgdt3305 -lgdt3306a -lgdt330x -lgs8gxx -lib80211 -lib80211_crypt_ccmp -lib80211_crypt_tkip -lib80211_crypt_wep -libahci -libahci_platform -libceph -libcomposite -libcrc32c -libcxgbi -libertas -libertas_sdio -libertas_spi -libertas_tf -libertas_tf_usb -libfc -libfcoe -libipw -libiscsi -libiscsi_tcp -libore -libosd -libsas -lightning -lineage-pem -linear -liquidio -lirc_bt829 -lirc_dev -lirc_imon -lirc_parallel -lirc_sasem -lirc_serial -lirc_sir -lirc_zilog -lis3l02dq -lis3lv02d -lis3lv02d_i2c -lis3lv02d_spi -litelink-sir -lkkbd -ll_temac -llc -llc2 -lm25066 -lm3533-als -lm3533-core -lm3533-ctrlbank -lm3533_bl -lm3630a_bl -lm3639_bl -lm63 -lm70 -lm73 -lm75 -lm77 -lm78 -lm80 -lm83 -lm8323 -lm8333 -lm85 -lm87 -lm90 -lm92 -lm93 -lm95234 -lm95241 -lm95245 -lms283gf05 -lms501kf03 -lnbh25 -lnbp21 -lnbp22 -lockd -locktorture -lp -lp3943 -lp3971 -lp3972 -lp855x_bl -lp8727_charger -lp872x -lp8755 -lp8788-buck -lp8788-charger -lp8788-ldo -lp8788_adc -lp8788_bl -lpc_ich -lpc_sch -lpddr_cmds -lpfc -lru_cache -lrw -ltc2941-battery-gauge -ltc2945 -ltc2978 -ltc3589 -ltc4151 -ltc4215 -ltc4222 -ltc4245 -ltc4260 -ltc4261 -ltr501 -ltv350qv -lv5207lp -lvstest -lxt -lz4 -lz4_compress -lz4hc -lz4hc_compress -m25p80 -m2m-deinterlace -m52790 -m62332 -m88ds3103 -m88rs2000 -m88rs6000t -mISDN_core -mISDN_dsp -mISDNinfineon -mISDNipac -mISDNisar -m_can -ma600-sir -mac-celtic -mac-centeuro -mac-croatian -mac-cyrillic -mac-gaelic -mac-greek -mac-iceland -mac-inuit -mac-roman -mac-romanian -mac-turkish -mac80211 -mac80211_hwsim -mac802154 -mac_hid -macb -macvlan -macvtap -mag3110 -magellan -mailbox-altera -mailbox-test -mantis -mantis_core -map_absent -map_funcs -map_ram -map_rom -marvell -matrix-keymap -matrix_keypad -matrox_w1 -matroxfb_DAC1064 -matroxfb_Ti3026 -matroxfb_accel -matroxfb_base -matroxfb_crtc2 -matroxfb_g450 -matroxfb_maven -matroxfb_misc -max1027 -max1111 -max11801_ts -max1363 -max14577 -max14577_charger -max1586 -max16064 -max16065 -max1619 -max1668 -max17040_battery -max17042_battery -max197 -max20751 -max2165 -max3100 -max31790 -max3421-hcd -max34440 -max517 -max5821 -max63xx_wdt -max6639 -max6642 -max6650 -max6697 -max6875 -max7359_keypad -max77686 -max77693 -max77693-haptic -max77693_charger -max77802 -max8649 -max8660 -max8688 -max8903_charger -max8907 -max8907-regulator -max8925-regulator -max8925_bl -max8925_onkey -max8925_power -max8952 -max8973-regulator -max8997 -max8997_charger -max8997_haptic -max8998 -max8998_charger -mb862xxfb -mb86a16 -mb86a20s -mc13783-adc -mc13783-pwrbutton -mc13783-regulator -mc13783_ts -mc13892-regulator -mc13xxx-core -mc13xxx-i2c -mc13xxx-regulator-core -mc13xxx-spi -mc44s803 -mcb -mcb-pci -mceusb -mcp2120-sir -mcp251x -mcp3021 -mcp320x -mcp3422 -mcp4531 -mcp4725 -mcp4922 -mcryptd -mcs5000_ts -mcs7780 -mcs7830 -mcs_touchkey -mct_u232 -md-cluster -md4 -md5-ppc -mdc800 -mdio -mdio-bcm-unimac -mdio-bitbang -mdio-cavium -mdio-gpio -mdio-mux -mdio-mux-gpio -mdio-mux-mmioreg -mdio-octeon -mdio-thunder -mdio-xgene -me4000 -me_daq -media -megaraid -megaraid_mbox -megaraid_mm -megaraid_sas -memory-notifier-error-inject -memstick -men_z135_uart -men_z188_adc -mena21_wdt -menf21bmc -menf21bmc_hwmon -menf21bmc_wdt -metro-usb -metronomefb -mf6x4 -mga -michael_mic -micrel -microchip -microread -microread_i2c -microtek -mii -minix -mip6 -mite -mk712 -mkiss -mlx4_core -mlx4_en -mlx4_ib -mlx5_core -mlx5_ib -mlx90614 -mlxsw_core -mlxsw_pci -mma8450 -mma8452 -mma9551 -mma9551_core -mma9553 -mmc35240 -mmc_block -mmc_spi -mms114 -mn88472 -mn88473 -mos7720 -mos7840 -mostcore -moxa -mpc624 -mpl115 -mpl3115 -mpls_gso -mpls_iptunnel -mpls_router -mpoa -mpr121_touchkey -mpt3sas -mptbase -mptctl -mptfc -mptlan -mptsas -mptscsih -mptspi -mpu3050 -mrf24j40 -mrp -ms5611_core -ms5611_i2c -ms5611_spi -ms5637 -ms_block -ms_sensors_i2c -msdos -msi001 -msi2500 -msp3400 -mspro_block -mt2060 -mt2063 -mt20xx -mt2131 -mt2266 -mt29f_spinand -mt312 -mt352 -mt6311-regulator -mt6397-core -mt6397-regulator -mt7601u -mt9m001 -mt9m111 -mt9t031 -mt9t112 -mt9v011 -mt9v022 -mtd -mtd_blkdevs -mtd_dataflash -mtdblock -mtdblock_ro -mtdoops -mtdram -mtdswap -mtip32xx -mtk-sd -mtouch -multipath -multiq3 -musb_hdrc -mv_u3d_core -mv_udc -mvmdio -mvsas -mvumi -mwifiex -mwifiex_pcie -mwifiex_sdio -mwifiex_usb -mwl8k -mxb -mxc4005 -mxl111sf-demod -mxl111sf-tuner -mxl301rf -mxl5005s -mxl5007t -mxser -mxuport -myri10ge -n_gsm -n_hdlc -n_r3964 -n_tracerouter -n_tracesink -nand -nand_bch -nand_ecc -nand_ids -nandsim -national -natsemi -nau7802 -navman -nb8800 -nbd -nci -nci_spi -nci_uart -ncpfs -nct7802 -nct7904 -nd_blk -nd_btt -nd_pmem -ne2k-pci -neofb -net1080 -net2272 -net2280 -netconsole -netjet -netlink_diag -netrom -netup-unidvb -netxen_nic -newtonkbd -nf_conntrack -nf_conntrack_amanda -nf_conntrack_broadcast -nf_conntrack_ftp -nf_conntrack_h323 -nf_conntrack_ipv4 -nf_conntrack_ipv6 -nf_conntrack_irc -nf_conntrack_netbios_ns -nf_conntrack_netlink -nf_conntrack_pptp -nf_conntrack_proto_dccp -nf_conntrack_proto_gre -nf_conntrack_proto_sctp -nf_conntrack_proto_udplite -nf_conntrack_sane -nf_conntrack_sip -nf_conntrack_snmp -nf_conntrack_tftp -nf_defrag_ipv4 -nf_defrag_ipv6 -nf_dup_ipv4 -nf_dup_ipv6 -nf_log_arp -nf_log_bridge -nf_log_common -nf_log_ipv4 -nf_log_ipv6 -nf_nat -nf_nat_amanda -nf_nat_ftp -nf_nat_h323 -nf_nat_ipv4 -nf_nat_ipv6 -nf_nat_irc -nf_nat_masquerade_ipv4 -nf_nat_masquerade_ipv6 -nf_nat_pptp -nf_nat_proto_dccp -nf_nat_proto_gre -nf_nat_proto_sctp -nf_nat_proto_udplite -nf_nat_redirect -nf_nat_sip -nf_nat_snmp_basic -nf_nat_tftp -nf_reject_ipv4 -nf_reject_ipv6 -nf_synproxy_core -nf_tables -nf_tables_arp -nf_tables_bridge -nf_tables_inet -nf_tables_ipv4 -nf_tables_ipv6 -nf_tables_netdev -nfc -nfc_digital -nfcmrvl -nfcmrvl_i2c -nfcmrvl_spi -nfcmrvl_uart -nfcmrvl_usb -nfcsim -nfcwilink -nfnetlink -nfnetlink_acct -nfnetlink_cthelper -nfnetlink_cttimeout -nfnetlink_log -nfnetlink_queue -nfs -nfs_acl -nfs_layout_flexfiles -nfs_layout_nfsv41_files -nfsd -nfsv2 -nfsv3 -nfsv4 -nft_chain_nat_ipv4 -nft_chain_nat_ipv6 -nft_chain_route_ipv4 -nft_chain_route_ipv6 -nft_compat -nft_counter -nft_ct -nft_dup_ipv4 -nft_dup_ipv6 -nft_exthdr -nft_hash -nft_limit -nft_log -nft_masq -nft_masq_ipv4 -nft_masq_ipv6 -nft_meta -nft_meta_bridge -nft_nat -nft_queue -nft_rbtree -nft_redir -nft_redir_ipv4 -nft_redir_ipv6 -nft_reject -nft_reject_bridge -nft_reject_inet -nft_reject_ipv4 -nft_reject_ipv6 -nftl -ngene -nhc_dest -nhc_fragment -nhc_hop -nhc_ipv6 -nhc_mobility -nhc_routing -nhc_udp -ni_6527 -ni_65xx -ni_660x -ni_670x -ni_at_a2150 -ni_at_ao -ni_atmio -ni_atmio16d -ni_labpc -ni_labpc_common -ni_labpc_isadma -ni_labpc_pci -ni_pcidio -ni_pcimio -ni_tio -ni_tiocmd -ni_usb6501 -nicpf -nicstar -nicvf -nilfs2 -niu -nlmon -nls_ascii -nls_cp1250 -nls_cp1251 -nls_cp1255 -nls_cp737 -nls_cp775 -nls_cp850 -nls_cp852 -nls_cp855 -nls_cp857 -nls_cp860 -nls_cp861 -nls_cp862 -nls_cp863 -nls_cp864 -nls_cp865 -nls_cp866 -nls_cp869 -nls_cp874 -nls_cp932 -nls_cp936 -nls_cp949 -nls_cp950 -nls_euc-jp -nls_iso8859-13 -nls_iso8859-14 -nls_iso8859-15 -nls_iso8859-2 -nls_iso8859-3 -nls_iso8859-4 -nls_iso8859-5 -nls_iso8859-6 -nls_iso8859-7 -nls_iso8859-9 -nls_koi8-r -nls_koi8-ru -nls_koi8-u -nls_utf8 -nosy -notifier-error-inject -nouveau -nozomi -nps_enet -ns558 -ns83820 -nsc-ircc -ntb -ntb_netdev -ntb_pingpong -ntb_tool -ntb_transport -ntc_thermistor -ntfs -null_blk -nvidiafb -nvme -nvmem_core -nx-compress -nx-compress-powernv -nx-compress-pseries -nxp-nci -nxp-nci_i2c -nxp-ptn3460 -nxt200x -nxt6000 -objlayoutdriver -ocfb -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -ocrdma -of_mmc_spi -of_xilinx_wdt -ofpart -ohci-platform -old_belkin-sir -omap4-keypad -omfs -omninet -on20 -on26 -onenand -opal-prd -opencores-kbd -openvswitch -oprofile -opt3001 -opticon -option -or51132 -or51211 -orinoco -orinoco_nortel -orinoco_plx -orinoco_tmd -orinoco_usb -osd -osdblk -osst -oti6858 -ov2640 -ov5642 -ov6650 -ov7640 -ov7670 -ov772x -ov9640 -ov9740 -overlay -oxu210hp-hcd -p54common -p54pci -p54spi -p54usb -p8022 -p8023 -pa12203001 -palmas-pwrbutton -palmas-regulator -pandora_bl -panel -panel-lg-lg4573 -panel-samsung-ld9040 -panel-samsung-s6e8aa0 -panel-sharp-lq101r1sx01 -panel-simple -parade-ps8622 -paride -parkbd -parport -parport_ax88796 -parport_pc -parport_serial -pata_ali -pata_amd -pata_artop -pata_atiixp -pata_atp867x -pata_cmd640 -pata_cmd64x -pata_cypress -pata_efar -pata_hpt366 -pata_hpt37x -pata_hpt3x2n -pata_hpt3x3 -pata_it8213 -pata_it821x -pata_jmicron -pata_legacy -pata_marvell -pata_mpiix -pata_netcell -pata_ninja32 -pata_ns87410 -pata_ns87415 -pata_of_platform -pata_oldpiix -pata_opti -pata_optidma -pata_pdc2027x -pata_pdc202xx_old -pata_piccolo -pata_platform -pata_radisys -pata_rdc -pata_rz1000 -pata_sch -pata_serverworks -pata_sil680 -pata_sis -pata_sl82c105 -pata_triflex -pata_via -pc300too -pcap-regulator -pcap_keys -pcap_ts -pcbc -pcd -pcf50633 -pcf50633-adc -pcf50633-backlight -pcf50633-charger -pcf50633-gpio -pcf50633-input -pcf50633-regulator -pcf8574_keypad -pcf8591 -pch_udc -pci -pci-stub -pci200syn -pcips2 -pcl711 -pcl724 -pcl726 -pcl730 -pcl812 -pcl816 -pcl818 -pcm3724 -pcmad -pcmda12 -pcmmio -pcmuio -pcnet32 -pcrypt -pcspkr -pcwd_pci -pcwd_usb -pd -pda_power -pdc_adma -peak_pci -peak_usb -pegasus -penmount -percpu_test -pf -pfuze100-regulator -pg -phantom -phonet -phram -phy-bcm-kona-usb2 -phy-exynos-usb2 -phy-gpio-vbus-usb -phy-isp1301 -phy-pxa-28nm-hsic -phy-pxa-28nm-usb2 -phy-tahvo -phy-tusb1210 -physmap -physmap_of -pixcir_i2c_ts -pkcs7_test_key -pktcdvd -pktgen -pl2303 -plat-ram -plat_nand -platform_lcd -plip -plusb -pluto2 -plx_pci -pm-notifier-error-inject -pm2fb -pm3fb -pm80xx -pm8941-wled -pmbus -pmbus_core -pmc551 -pmcraid -pn533 -pn544 -pn544_i2c -pn_pep -poly1305_generic -port100 -powermate -powernv-rng -powernv_flash -powr1220 -ppa -ppdev -ppp_async -ppp_deflate -ppp_mppe -ppp_synctty -pppoatm -pppoe -pppox -pps-gpio -pps-ldisc -pps_parport -pptp -prism2_usb -ps2mult -pseries-rng -pseries_energy -psmouse -psnap -pt -pulsedlight-lidar-lite-v2 -pvrusb2 -pwc -pwm-beeper -pwm-fan -pwm-fsl-ftm -pwm-lp3943 -pwm-pca9685 -pwm-regulator -pwm-twl -pwm-twl-led -pwm_bl -pxa27x_udc -qcaspi -qcaux -qcom-spmi-iadc -qcom-spmi-temp-alarm -qcom-spmi-vadc -qcom_spmi-regulator -qcserial -qed -qede -qinfo_probe -qla1280 -qla2xxx -qla3xxx -qla4xxx -qlcnic -qlge -qm1d1c0042 -qmi_wwan -qnx4 -qnx6 -qsemi -qt1010 -qt1070 -qt2160 -quatech2 -quota_tree -quota_v1 -quota_v2 -qxl -r128 -r592 -r6040 -r8152 -r8169 -r8188eu -r8192e_pci -r8192u_usb -r820t -r852 -r8712u -r8723au -r8a66597-hcd -r8a66597-udc -radeon -radeonfb -radio-bcm2048 -radio-i2c-si470x -radio-keene -radio-ma901 -radio-maxiradio -radio-mr800 -radio-platform-si4713 -radio-raremono -radio-shark -radio-si476x -radio-tea5764 -radio-usb-si470x -radio-usb-si4713 -radio-wl1273 -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid6test -raid_class -ramoops -raw -rbd -rbtree_test -rc-adstech-dvb-t-pci -rc-alink-dtu-m -rc-anysee -rc-apac-viewcomp -rc-asus-pc39 -rc-asus-ps3-100 -rc-ati-tv-wonder-hd-600 -rc-ati-x10 -rc-avermedia -rc-avermedia-a16d -rc-avermedia-cardbus -rc-avermedia-dvbt -rc-avermedia-m135a -rc-avermedia-m733a-rm-k6 -rc-avermedia-rm-ks -rc-avertv-303 -rc-azurewave-ad-tu700 -rc-behold -rc-behold-columbus -rc-budget-ci-old -rc-cinergy -rc-cinergy-1400 -rc-core -rc-delock-61959 -rc-dib0700-nec -rc-dib0700-rc5 -rc-digitalnow-tinytwin -rc-digittrade -rc-dm1105-nec -rc-dntv-live-dvb-t -rc-dntv-live-dvbt-pro -rc-dvbsky -rc-em-terratec -rc-encore-enltv -rc-encore-enltv-fm53 -rc-encore-enltv2 -rc-evga-indtube -rc-eztv -rc-flydvb -rc-flyvideo -rc-fusionhdtv-mce -rc-gadmei-rm008z -rc-genius-tvgo-a11mce -rc-gotview7135 -rc-hauppauge -rc-imon-mce -rc-imon-pad -rc-iodata-bctv7e -rc-it913x-v1 -rc-it913x-v2 -rc-kaiomy -rc-kworld-315u -rc-kworld-pc150u -rc-kworld-plus-tv-analog -rc-leadtek-y04g0051 -rc-lirc -rc-lme2510 -rc-loopback -rc-manli -rc-medion-x10 -rc-medion-x10-digitainer -rc-medion-x10-or2x -rc-msi-digivox-ii -rc-msi-digivox-iii -rc-msi-tvanywhere -rc-msi-tvanywhere-plus -rc-nebula -rc-nec-terratec-cinergy-xs -rc-norwood -rc-npgtech -rc-pctv-sedna -rc-pinnacle-color -rc-pinnacle-grey -rc-pinnacle-pctv-hd -rc-pixelview -rc-pixelview-002t -rc-pixelview-mk12 -rc-pixelview-new -rc-powercolor-real-angel -rc-proteus-2309 -rc-purpletv -rc-pv951 -rc-rc6-mce -rc-real-audio-220-32-keys -rc-reddo -rc-snapstream-firefly -rc-streamzap -rc-su3000 -rc-tbs-nec -rc-technisat-ts35 -rc-technisat-usb2 -rc-terratec-cinergy-c-pci -rc-terratec-cinergy-s2-hd -rc-terratec-cinergy-xs -rc-terratec-slim -rc-terratec-slim-2 -rc-tevii-nec -rc-tivo -rc-total-media-in-hand -rc-total-media-in-hand-02 -rc-trekstor -rc-tt-1500 -rc-twinhan-dtv-cab-ci -rc-twinhan1027 -rc-videomate-m1f -rc-videomate-s350 -rc-videomate-tv-pvr -rc-winfast -rc-winfast-usbii-deluxe -rc5t583-regulator -rdc321x-southbridge -rdma_cm -rdma_ucm -rds -rds_rdma -rds_tcp -realtek -redboot -redrat3 -reed_solomon -regmap-spmi -regulator-haptic -reiserfs -remoteproc -retu-mfd -retu-pwrbutton -retu_wdt -rfc1051 -rfc1201 -rfcomm -rfd_ftl -rfkill-gpio -rfkill-regulator -rio-scan -rio500 -rionet -rivafb -rj54n1cb0c -rk808 -rk808-regulator -rmd128 -rmd160 -rmd256 -rmd320 -rn5t618 -rn5t618-regulator -rn5t618_wdt -rndis_host -rndis_wlan -rocket -rohm_bu21023 -romfs -rose -rotary_encoder -rp2 -rpadlpar_io -rpaphp -rpcrdma -rpcsec_gss_krb5 -rpr0521 -rrpc -rsi_91x -rsi_sdio -rsi_usb -rsxx -rt2400pci -rt2500pci -rt2500usb -rt2800lib -rt2800mmio -rt2800pci -rt2800usb -rt2x00lib -rt2x00mmio -rt2x00pci -rt2x00usb -rt5033 -rt5033-regulator -rt5033_battery -rt61pci -rt73usb -rt9455_charger -rtas_flash -rtc-88pm80x -rtc-88pm860x -rtc-ab-b5ze-s3 -rtc-ab3100 -rtc-abx80x -rtc-as3722 -rtc-bq32k -rtc-bq4802 -rtc-cmos -rtc-da9052 -rtc-da9055 -rtc-da9063 -rtc-ds1286 -rtc-ds1305 -rtc-ds1307 -rtc-ds1343 -rtc-ds1347 -rtc-ds1374 -rtc-ds1390 -rtc-ds1511 -rtc-ds1553 -rtc-ds1672 -rtc-ds1685 -rtc-ds1742 -rtc-ds2404 -rtc-ds3232 -rtc-ds3234 -rtc-em3027 -rtc-fm3130 -rtc-generic -rtc-hid-sensor-time -rtc-hym8563 -rtc-isl12022 -rtc-isl12057 -rtc-isl1208 -rtc-lp8788 -rtc-m41t80 -rtc-m41t93 -rtc-m41t94 -rtc-m48t35 -rtc-m48t59 -rtc-m48t86 -rtc-max6900 -rtc-max6902 -rtc-max77686 -rtc-max77802 -rtc-max8907 -rtc-max8925 -rtc-max8997 -rtc-max8998 -rtc-mc13xxx -rtc-mcp795 -rtc-msm6242 -rtc-mt6397 -rtc-palmas -rtc-pcap -rtc-pcf2123 -rtc-pcf2127 -rtc-pcf50633 -rtc-pcf85063 -rtc-pcf8523 -rtc-pcf8563 -rtc-pcf8583 -rtc-r9701 -rtc-rc5t583 -rtc-rk808 -rtc-rp5c01 -rtc-rs5c348 -rtc-rs5c372 -rtc-rv3029c2 -rtc-rv8803 -rtc-rx4581 -rtc-rx8025 -rtc-rx8581 -rtc-s35390a -rtc-s5m -rtc-snvs -rtc-stk17ta8 -rtc-tps6586x -rtc-tps65910 -rtc-tps80031 -rtc-twl -rtc-v3020 -rtc-wm831x -rtc-wm8350 -rtc-x1205 -rtc-zynqmp -rtc_cmos_setup -rtd520 -rti800 -rti802 -rtl2830 -rtl2832 -rtl2832_sdr -rtl8150 -rtl8187 -rtl8188ee -rtl818x_pci -rtl8192c-common -rtl8192ce -rtl8192cu -rtl8192de -rtl8192ee -rtl8192se -rtl8723-common -rtl8723ae -rtl8723be -rtl8821ae -rtl8xxxu -rtl_pci -rtl_usb -rtllib -rtllib_crypt_ccmp -rtllib_crypt_tkip -rtllib_crypt_wep -rtlwifi -rts5208 -rtsx_pci -rtsx_pci_ms -rtsx_pci_sdmmc -rtsx_usb -rtsx_usb_ms -rtsx_usb_sdmmc -rx51_battery -rxkad -s1d13xxxfb -s2250 -s2255drv -s2io -s2mpa01 -s2mps11 -s3fb -s3fwrn5 -s3fwrn5_i2c -s526 -s5h1409 -s5h1411 -s5h1420 -s5m8767 -s626 -s6e63m0 -s921 -saa6588 -saa6752hs -saa7115 -saa7127 -saa7134 -saa7134-alsa -saa7134-dvb -saa7134-empress -saa7134-go7007 -saa7146 -saa7146_vv -saa7164 -saa717x -saa7706h -safe_serial -salsa20_generic -samsung-sxgbe -sata_inic162x -sata_mv -sata_nv -sata_promise -sata_qstor -sata_sil -sata_sil24 -sata_sis -sata_svw -sata_sx4 -sata_uli -sata_via -sata_vsc -savage -savagefb -sbp_target -sbs-battery -sc16is7xx -sc92031 -sca3000 -scanlog -sch_atm -sch_cbq -sch_choke -sch_codel -sch_drr -sch_dsmark -sch_fq -sch_fq_codel -sch_gred -sch_hfsc -sch_hhf -sch_htb -sch_ingress -sch_mqprio -sch_multiq -sch_netem -sch_pie -sch_plug -sch_prio -sch_qfq -sch_red -sch_sfb -sch_sfq -sch_tbf -sch_teql -scsi_debug -scsi_dh_alua -scsi_dh_emc -scsi_dh_hp_sw -scsi_dh_rdac -scsi_transport_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -sctp -sctp_probe -sdhci -sdhci-of-arasan -sdhci-of-at91 -sdhci-of-esdhc -sdhci-of-hlwd -sdhci-pci -sdhci-pltfm -sdhci_f_sdh30 -sdio_uart -seed -sensorhub -seqiv -ser_gigaset -serial2002 -serio_raw -sermouse -serpent_generic -serport -ses -sfc -sh_veu -sha1-powerpc -shark2 -sht15 -sht21 -shtc1 -si2157 -si2165 -si2168 -si21xx -si4713 -si476x-core -si7005 -si7020 -sidewinder -sierra -sierra_net -sil164 -sir-dev -sis -sis190 -sis5595 -sis900 -sisfb -sisusbvga -sit -sja1000 -sja1000_isa -sja1000_platform -skd -skfp -skge -sky2 -sky81452 -sky81452-backlight -sky81452-regulator -sl811-hcd -slcan -slip -slram -sm501 -sm501fb -sm712fb -sm750fb -sm_common -sm_ftl -smb347-charger -smipcie -smm665 -smsc -smsc-ircc2 -smsc47m192 -smsc75xx -smsc911x -smsc9420 -smsc95xx -smscufx -smsdvb -smsmdtv -smssdio -smsusb -snd -snd-ac97-codec -snd-ad1889 -snd-ak4113 -snd-ak4114 -snd-ak4xxx-adda -snd-ali5451 -snd-aloop -snd-als300 -snd-als4000 -snd-atiixp -snd-atiixp-modem -snd-au8810 -snd-au8820 -snd-au8830 -snd-aw2 -snd-azt3328 -snd-bcd2000 -snd-bebob -snd-bt87x -snd-ca0106 -snd-cmipci -snd-cs4281 -snd-cs46xx -snd-cs8427 -snd-ctxfi -snd-darla20 -snd-darla24 -snd-dice -snd-dummy -snd-echo3g -snd-emu10k1 -snd-emu10k1-synth -snd-emu10k1x -snd-emux-synth -snd-ens1370 -snd-ens1371 -snd-es1938 -snd-es1968 -snd-firewire-digi00x -snd-firewire-lib -snd-firewire-tascam -snd-fireworks -snd-fm801 -snd-gina20 -snd-gina24 -snd-hda-codec -snd-hda-codec-analog -snd-hda-codec-ca0110 -snd-hda-codec-ca0132 -snd-hda-codec-cirrus -snd-hda-codec-cmedia -snd-hda-codec-conexant -snd-hda-codec-generic -snd-hda-codec-hdmi -snd-hda-codec-idt -snd-hda-codec-realtek -snd-hda-codec-si3054 -snd-hda-codec-via -snd-hda-core -snd-hda-intel -snd-hdsp -snd-hdspm -snd-hrtimer -snd-hwdep -snd-i2c -snd-ice1712 -snd-ice1724 -snd-ice17xx-ak4xxx -snd-indigo -snd-indigodj -snd-indigodjx -snd-indigoio -snd-indigoiox -snd-intel8x0 -snd-intel8x0m -snd-isight -snd-korg1212 -snd-layla20 -snd-layla24 -snd-lola -snd-lx6464es -snd-maestro3 -snd-mia -snd-mixart -snd-mixer-oss -snd-mona -snd-mpu401 -snd-mpu401-uart -snd-mtpav -snd-mts64 -snd-nm256 -snd-opl3-lib -snd-opl3-synth -snd-oxfw -snd-oxygen -snd-oxygen-lib -snd-pcm -snd-pcm-dmaengine -snd-pcm-oss -snd-pcxhr -snd-portman2x4 -snd-pt2258 -snd-rawmidi -snd-riptide -snd-rme32 -snd-rme96 -snd-rme9652 -snd-sb-common -snd-scs1x -snd-seq -snd-seq-device -snd-seq-dummy -snd-seq-midi -snd-seq-midi-emul -snd-seq-midi-event -snd-seq-virmidi -snd-serial-u16550 -snd-soc-ac97 -snd-soc-adau1701 -snd-soc-ak4104 -snd-soc-ak4554 -snd-soc-ak4613 -snd-soc-ak4642 -snd-soc-ak5386 -snd-soc-alc5623 -snd-soc-core -snd-soc-cs35l32 -snd-soc-cs4265 -snd-soc-cs4270 -snd-soc-cs4271 -snd-soc-cs4271-i2c -snd-soc-cs4271-spi -snd-soc-cs42l51 -snd-soc-cs42l51-i2c -snd-soc-cs42l52 -snd-soc-cs42l56 -snd-soc-cs42l73 -snd-soc-cs42xx8 -snd-soc-cs42xx8-i2c -snd-soc-cs4349 -snd-soc-es8328 -snd-soc-fsl-asrc -snd-soc-fsl-esai -snd-soc-fsl-sai -snd-soc-fsl-spdif -snd-soc-fsl-ssi -snd-soc-gtm601 -snd-soc-imx-audmux -snd-soc-pcm1681 -snd-soc-pcm1792a-codec -snd-soc-pcm512x -snd-soc-pcm512x-i2c -snd-soc-pcm512x-spi -snd-soc-rt5631 -snd-soc-sgtl5000 -snd-soc-si476x -snd-soc-sigmadsp -snd-soc-sigmadsp-i2c -snd-soc-simple-card -snd-soc-spdif-rx -snd-soc-spdif-tx -snd-soc-ssm2602 -snd-soc-ssm2602-i2c -snd-soc-ssm2602-spi -snd-soc-ssm4567 -snd-soc-sta32x -snd-soc-sta350 -snd-soc-sti-sas -snd-soc-tas2552 -snd-soc-tas5086 -snd-soc-tas571x -snd-soc-tfa9879 -snd-soc-tlv320aic23 -snd-soc-tlv320aic23-i2c -snd-soc-tlv320aic23-spi -snd-soc-tlv320aic31xx -snd-soc-tlv320aic3x -snd-soc-tpa6130a2 -snd-soc-ts3a227e -snd-soc-wm8510 -snd-soc-wm8523 -snd-soc-wm8580 -snd-soc-wm8711 -snd-soc-wm8728 -snd-soc-wm8731 -snd-soc-wm8737 -snd-soc-wm8741 -snd-soc-wm8750 -snd-soc-wm8753 -snd-soc-wm8770 -snd-soc-wm8776 -snd-soc-wm8804 -snd-soc-wm8804-i2c -snd-soc-wm8804-spi -snd-soc-wm8903 -snd-soc-wm8962 -snd-soc-wm8978 -snd-soc-xtfpga-i2s -snd-sonicvibes -snd-timer -snd-trident -snd-ua101 -snd-usb-6fire -snd-usb-audio -snd-usb-caiaq -snd-usb-hiface -snd-usb-line6 -snd-usb-pod -snd-usb-podhd -snd-usb-toneport -snd-usb-usx2y -snd-usb-variax -snd-usbmidi-lib -snd-util-mem -snd-via82xx -snd-via82xx-modem -snd-virmidi -snd-virtuoso -snd-vx-lib -snd-vx222 -snd-ymfpci -snic -soc_button_array -soc_camera -soc_camera_platform -soc_mediabus -softdog -softing -solo6x10 -solos-pci -sony-btf-mpx -soundcore -sp2 -sp8870 -sp887x -spaceball -spaceorb -sparse-keymap -spcp8x5 -speakup -speakup_acntsa -speakup_apollo -speakup_audptr -speakup_bns -speakup_decext -speakup_dectlk -speakup_dummy -speakup_ltlk -speakup_soft -speakup_spkout -speakup_txprt -speedfax -speedtch -spi-altera -spi-bitbang -spi-butterfly -spi-cadence -spi-dln2 -spi-dw -spi-dw-midpci -spi-dw-mmio -spi-gpio -spi-lm70llp -spi-nor -spi-oc-tiny -spi-pxa2xx-platform -spi-sc18is602 -spi-tle62x0 -spi-xcomm -spi-zynqmp-gqspi -spi_ks8995 -spidev -spl -splat -spmi -sr9700 -sr9800 -ssb -ssb-hcd -ssd1307fb -ssfdc -ssp_accel_sensor -ssp_gyro_sensor -ssp_iio -sst25l -sstfb -ssu100 -st -st-nci -st-nci_i2c -st-nci_spi -st1232 -st21nfca_hci -st21nfca_i2c -st_accel -st_accel_i2c -st_accel_spi -st_drv -st_gyro -st_gyro_i2c -st_gyro_spi -st_magn -st_magn_i2c -st_magn_spi -st_pressure -st_pressure_i2c -st_pressure_spi -st_sensors -st_sensors_i2c -st_sensors_spi -starfire -stb0899 -stb6000 -stb6100 -ste10Xp -ste_modem_rproc -stex -stinger -stir4200 -stk1160 -stk3310 -stk8312 -stk8ba50 -stkwebcam -stm_console -stm_core -stmmac -stmmac-platform -stmpe-keypad -stmpe-ts -stowaway -stp -streamzap -stv0288 -stv0297 -stv0299 -stv0367 -stv0900 -stv090x -stv6110 -stv6110x -sun4i-codec -sundance -sungem -sungem_phy -sunhme -suni -sunkbd -sunrpc -sur40 -svgalib -sx8 -sx8654 -sx9500 -sym53c8xx -symbolserial -synaptics_i2c -synaptics_i2c_rmi4 -synaptics_usb -synclink -synclink_gt -synclinkmp -syscopyarea -sysfillrect -sysimgblt -sysv -t1pci -t5403 -target_core_file -target_core_iblock -target_core_mod -target_core_pscsi -target_core_user -tc3589x-keypad -tc74 -tc90522 -tca6416-keypad -tca8418_keypad -tcm_fc -tcm_loop -tcm_qla2xxx -tcm_usb_gadget -tcp_bic -tcp_cdg -tcp_dctcp -tcp_diag -tcp_highspeed -tcp_htcp -tcp_hybla -tcp_illinois -tcp_lp -tcp_probe -tcp_scalable -tcp_vegas -tcp_veno -tcp_westwood -tcp_yeah -tcrypt -tcs3414 -tcs3472 -tda10021 -tda10023 -tda10048 -tda1004x -tda10071 -tda10086 -tda18212 -tda18218 -tda18271 -tda18271c2dd -tda665x -tda7432 -tda8083 -tda8261 -tda826x -tda827x -tda8290 -tda9840 -tda9887 -tda998x -tdfx -tdfxfb -tdo24m -tea -tea575x -tea5761 -tea5767 -tea6415c -tea6420 -team -team_mode_activebackup -team_mode_broadcast -team_mode_loadbalance -team_mode_random -team_mode_roundrobin -tef6862 -tehuti -tekram-sir -teranetics -test-hexdump -test-kstrtox -test-string_helpers -test_bpf -test_firmware -test_module -test_power -test_printf -test_static_key_base -test_static_keys -test_udelay -test_user_copy -tgr192 -thmc50 -thunder_bgx -thunderbolt -ti-adc081c -ti-adc128s052 -ti_am335x_adc -ti_am335x_tsc -ti_am335x_tscadc -ti_dac7512 -ti_usb_3410_5052 -tifm_7xx1 -tifm_core -tifm_ms -tifm_sd -timeriomem-rng -tipc -tlan -tm6000 -tm6000-alsa -tm6000-dvb -tmdc -tmp006 -tmp102 -tmp103 -tmp401 -tmp421 -toim3232-sir -torture -toshsd -touchit213 -touchright -touchwin -tpci200 -tpm-rng -tpm_atmel -tpm_i2c_atmel -tpm_i2c_infineon -tpm_i2c_nuvoton -tpm_st33zp24 -tpm_st33zp24_i2c -tpm_st33zp24_spi -tps40422 -tps51632-regulator -tps6105x -tps6105x-regulator -tps62360-regulator -tps65010 -tps65023-regulator -tps6507x -tps6507x-regulator -tps6507x-ts -tps65090-charger -tps65090-regulator -tps65217_bl -tps65217_charger -tps65218 -tps65218-pwrbutton -tps65218-regulator -tps6524x-regulator -tps6586x-regulator -tps65910-regulator -tps65912-regulator -tps80031-regulator -trancevibrator -trf7970a -tridentfb -ts2020 -ts_bm -ts_fsm -ts_kmp -tsc2004 -tsc2005 -tsc2007 -tsc200x-core -tsc40 -tsi568 -tsi57x -tsi721_mport -tsl2550 -tsl2563 -tsl2583 -tsl2x7x_core -tsl4531 -tsys01 -tsys02d -ttm -ttpci-eeprom -ttusb_dec -ttusbdecfe -ttusbir -tua6100 -tua9001 -tulip -tuner -tuner-simple -tuner-types -tuner-xc2028 -tunnel4 -tunnel6 -turbografx -tvaudio -tveeprom -tvp5150 -tw2804 -tw68 -tw9903 -tw9906 -tw9910 -twidjoy -twl-regulator -twl4030-madc -twl4030-madc-hwmon -twl4030-pwrbutton -twl4030-vibra -twl4030_charger -twl4030_keypad -twl4030_madc_battery -twl4030_wdt -twl6030-gpadc -twl6040-vibra -twofish_common -twofish_generic -typhoon -u132-hcd -u_ether -u_serial -uartlite -uas -ubi -ubifs -ucb1400_core -ucb1400_ts -ucd9000 -ucd9200 -uda1342 -udc-core -udc-xilinx -udf -udl -udlfb -udp_diag -udp_tunnel -ueagle-atm -ufs -ufshcd -ufshcd-pci -ufshcd-pltfrm -uhid -uio -uio_aec -uio_cif -uio_dmem_genirq -uio_fsl_elbc_gpcm -uio_mf624 -uio_netx -uio_pci_generic -uio_pdrv_genirq -uio_pruss -uio_sercos3 -uli526x -ulpi -umc -umem -ums-alauda -ums-cypress -ums-datafab -ums-eneub6250 -ums-freecom -ums-isd200 -ums-jumpshot -ums-karma -ums-onetouch -ums-realtek -ums-sddr09 -ums-sddr55 -ums-usbat -unix_diag -upd64031a -upd64083 -us5182d -usb-serial-simple -usb-storage -usb3503 -usb8xxx -usb_8dev -usb_debug -usb_f_acm -usb_f_ecm -usb_f_ecm_subset -usb_f_eem -usb_f_fs -usb_f_hid -usb_f_mass_storage -usb_f_midi -usb_f_ncm -usb_f_obex -usb_f_phonet -usb_f_printer -usb_f_rndis -usb_f_serial -usb_f_ss_lb -usb_f_uac1 -usb_f_uac2 -usb_f_uvc -usb_gigaset -usb_wwan -usbatm -usbdux -usbduxfast -usbduxsigma -usbhid -usbip-core -usbip-host -usbkbd -usblcd -usbled -usblp -usbmisc_imx -usbmon -usbmouse -usbnet -usbserial -usbsevseg -usbtest -usbtmc -usbtouchscreen -usbtv -usbvision -usdhi6rol0 -userio -userspace-consumer -ushc -uss720 -uvcvideo -uvesafb -uwb -v4l2-common -v4l2-dv-timings -v4l2-flash-led-class -v4l2-mem2mem -vcan -vcnl4000 -ves1820 -ves1x93 -veth -vf610_adc -vga16fb -vgastate -vgem -vgg2432a4 -vhci-hcd -vhost -vhost_net -vhost_scsi -via -via-ircc -via-rhine -via-sdmmc -via-velocity -via686a -videobuf-core -videobuf-dma-sg -videobuf-dvb -videobuf-vmalloc -videobuf2-core -videobuf2-dma-contig -videobuf2-dma-sg -videobuf2-dvb -videobuf2-memops -videobuf2-v4l2 -videobuf2-vmalloc -videodev -vim2m -viperboard -viperboard_adc -virt-dma -virtio-gpu -virtio-rng -virtio_input -virtio_scsi -virtual -visor -vitesse -vivid -vlsi_ir -vmac -vme_pio2 -vme_tsi148 -vme_user -vme_vmivme7805 -vmk80xx -vmx-crypto -vmxnet3 -vp27smpx -vport-geneve -vport-gre -vport-vxlan -vrf -vringh -vsock -vsxxxaa -vt6655_stage -vt6656_stage -vt8231 -vt8623fb -vub300 -vx855 -vxge -vxlan -vz89x -w1-gpio -w1_bq27000 -w1_ds2406 -w1_ds2408 -w1_ds2413 -w1_ds2423 -w1_ds2431 -w1_ds2433 -w1_ds2760 -w1_ds2780 -w1_ds2781 -w1_ds28e04 -w1_smem -w1_therm -w5100 -w5300 -w6692 -w83781d -w83791d -w83792d -w83793 -w83795 -w83977af_ir -w83l785ts -w83l786ng -wacom -wacom_i2c -wacom_serial4 -wacom_w8001 -walkera0701 -wanxl -warrior -wbsd -wcn36xx -wd719x -wdrtas -wdt87xx_i2c -wdt_pci -whc-rc -whci -whci-hcd -whiteheat -wil6210 -wimax -winbond-840 -windfarm_core -wire -wishbone-serial -wl1251 -wl1251_sdio -wl1251_spi -wl1273-core -wl12xx -wl18xx -wlcore -wlcore_sdio -wlcore_spi -wm831x-dcdc -wm831x-hwmon -wm831x-isink -wm831x-ldo -wm831x-on -wm831x-ts -wm831x_backup -wm831x_bl -wm831x_power -wm831x_wdt -wm8350-hwmon -wm8350-regulator -wm8350_power -wm8350_wdt -wm8400-regulator -wm8739 -wm8775 -wm8994-core -wm8994-irq -wm8994-regmap -wm8994-regulator -wm97xx-ts -wp512 -wusb-cbaf -wusb-wa -wusbcore -x25 -x25_asy -x_tables -xc4000 -xc5000 -xcbc -xfrm4_mode_beet -xfrm4_mode_transport -xfrm4_mode_tunnel -xfrm4_tunnel -xfrm6_mode_beet -xfrm6_mode_ro -xfrm6_mode_transport -xfrm6_mode_tunnel -xfrm6_tunnel -xfrm_algo -xfrm_ipcomp -xfrm_user -xfs -xgifb -xhci-plat-hcd -xilinx-tpg -xilinx-video -xilinx-vtc -xilinx_ps2 -xilinx_uartps -xillybus_core -xillybus_of -xillybus_pcie -xor -xpad -xr_usb_serial_common -xsens_mt -xt_AUDIT -xt_CHECKSUM -xt_CLASSIFY -xt_CONNSECMARK -xt_CT -xt_DSCP -xt_HL -xt_HMARK -xt_IDLETIMER -xt_LED -xt_LOG -xt_NETMAP -xt_NFLOG -xt_NFQUEUE -xt_RATEEST -xt_REDIRECT -xt_SECMARK -xt_TCPMSS -xt_TCPOPTSTRIP -xt_TEE -xt_TPROXY -xt_TRACE -xt_addrtype -xt_bpf -xt_cgroup -xt_cluster -xt_comment -xt_connbytes -xt_connlabel -xt_connlimit -xt_connmark -xt_conntrack -xt_cpu -xt_dccp -xt_devgroup -xt_dscp -xt_ecn -xt_esp -xt_hashlimit -xt_helper -xt_hl -xt_ipcomp -xt_iprange -xt_ipvs -xt_l2tp -xt_length -xt_limit -xt_mac -xt_mark -xt_multiport -xt_nat -xt_nfacct -xt_osf -xt_owner -xt_physdev -xt_pkttype -xt_policy -xt_quota -xt_rateest -xt_realm -xt_recent -xt_sctp -xt_set -xt_socket -xt_state -xt_statistic -xt_string -xt_tcpmss -xt_tcpudp -xt_time -xt_u32 -xtkbd -xts -xusbatm -xz_dec_test -yam -yealink -yellowfin -yurex -zaurus -zavl -zcommon -zd1201 -zd1211rw -zforce_ts -zfs -zhenhua -zl10036 -zl10039 -zl10353 -zl6100 -zlib -znvpair -zpios -zr364xx -zram -zunicode -zynq-fpga reverted: --- linux-raspi2-4.4.0/debian.master/abi/4.4.0-89.112/s390x/generic +++ linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-89.112/s390x/generic @@ -1,8994 +0,0 @@ -EXPORT_SYMBOL arch/s390/oprofile/oprofile 0x06a93370 sampler_cpu_buffer -EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe -EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble -EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL crypto/mcryptd 0x841c582a mcryptd_arm_flusher -EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x0090e5c0 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x049ace30 rdma_addr_find_smac_by_sgid -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1e8bd780 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xc212c21a rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xd206f3c9 rdma_addr_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xdf81984b rdma_addr_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xed143ce3 rdma_copy_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1442000d ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2b8cd55f cm_class -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2c806842 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x467ccb09 ib_send_cm_lap -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5cf5a067 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6bb3dd87 ib_send_cm_apr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6e5d7c12 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7b7309eb ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb2e44773 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb3c760af ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb97ffe29 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbad739f2 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbc46817c ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc1f5c47c ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc29b66da ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd2a684b6 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdda2a512 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe0a3bcfd ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03851659 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05e5bacf ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06830b9a ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x086081d2 ib_dereg_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d7e2991 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1559cb3a ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15feca5e ibnl_add_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18a7b2bf ibnl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a3bdf6b ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23720175 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c7ff090 ib_dealloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35eaae45 ib_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37493a37 ib_alloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37d11ce1 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x389b414f ib_fmr_pool_unmap -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39623d80 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ab8f445 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c8a43ed ibnl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4130352b ib_dealloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42061e0b ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46c886fb ib_modify_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b8d2960 ib_destroy_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4cea82a9 ib_destroy_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f266c84 ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54460a80 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57ea2da9 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b2975d0 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d407bc5 ib_resolve_eth_dmac -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e1dba82 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60559699 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62ce0267 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6452478d ib_find_cached_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b58872e ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c1780f6 ib_query_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71167812 ib_query_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71f876f5 ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72b7f197 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76495291 ib_umem_page_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79e7281f ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a060615 ib_fmr_pool_map_phys -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a15de60 ib_alloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82c70266 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82eed2c5 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87023b1d ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c19b52a ib_init_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f587dec ib_create_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fc2c59e rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9098bf86 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9435206d ib_alloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97f7c541 ib_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1cc9755 ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa512af1d ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5e7d68d ib_destroy_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6e1508a ib_dealloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa86fc042 ib_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaaff54db ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0e2d8b ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad4e7061 ib_destroy_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0f8f508 ib_get_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6475406 ib_umem_odp_map_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb86e6a1a ib_create_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9d643f9 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba402b4c ib_find_gid_by_filter -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd210a9f ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc14fd0d1 ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc36d6cc7 ib_dealloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc42d253f ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb8f79c6 ib_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc2c6dc0 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcdb4b1d1 ib_create_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xceca699a ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd306514a ib_create_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4d1c2fd ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda957f36 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdea7d420 ib_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf5df7f8 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf9cef68 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe272af56 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe30bc91f ib_find_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5617246 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe66602ed ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9f1f162 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4f7d37b ib_get_dma_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7eec163 ib_get_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf96fc9de ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x216f533a ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x70e1c8b5 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x79ea0967 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x8a0dddc2 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x8dad0e81 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x9aa9d9bd ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xabefc643 ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xbc547645 ib_process_mad_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xbfd69857 ib_cancel_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc9ad77ce ib_register_mad_snoop -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xd021128d ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xe446ec20 ib_redirect_mad_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xfa043437 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x035d36d2 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x27a3c7ff ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x27afd6fc ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x28428eb1 ib_init_ah_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x39b8e079 ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5555ab28 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x55e4c0f2 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xb088d5e9 ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xcaa25b45 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xe7ee07ad ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xed6ca851 ib_sa_service_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd31dc99e ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe97f0f2f ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0c8311bf iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x14916ae8 iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2c7f04e6 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2e65d47a iwpm_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x375993bc iwpm_ack_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x517b1261 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x545ce785 iwpm_add_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x61afa7f2 iwpm_remote_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xaf774ead iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb8548f78 iwpm_add_and_query_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb8b62c5b iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xbafdc44c iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc810d03e iwpm_register_pid_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xca300208 iwpm_mapping_error_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd1b90eb1 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x04bef763 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0f409611 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1861eaec rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2f1dfebe rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x36fb019e rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3a5aa1c4 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x42cb23ce rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x529551c7 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x92117ee3 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x96cd55ec rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9d528e4b rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xad47f802 rdma_create_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb922760f rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbe9e0681 rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc4cbae64 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc5759faa rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc6d166fa rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd21a0f28 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdb9e9ce7 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdf054a61 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfc94ece9 rdma_set_ib_paths -EXPORT_SYMBOL drivers/md/bcache/bcache 0x0187bb6a __bch_bset_search -EXPORT_SYMBOL drivers/md/bcache/bcache 0x0224fc32 bch_btree_keys_alloc -EXPORT_SYMBOL drivers/md/bcache/bcache 0x18290c90 bch_bset_sort_state_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x313ff088 bch_bset_init_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0x3b42669b bch_bkey_try_merge -EXPORT_SYMBOL drivers/md/bcache/bcache 0x594d1f90 bch_bset_build_written_tree -EXPORT_SYMBOL drivers/md/bcache/bcache 0x627aed19 closure_sub -EXPORT_SYMBOL drivers/md/bcache/bcache 0x6dc1194a bch_bset_fix_invalidated_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0x79711460 bch_btree_iter_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7d2e3553 bch_btree_insert_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7e232679 bch_bset_insert -EXPORT_SYMBOL drivers/md/bcache/bcache 0xbbf73b16 bch_btree_keys_free -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc72b27a0 closure_wait -EXPORT_SYMBOL drivers/md/bcache/bcache 0xcb47df76 bch_btree_iter_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0xd9183c35 closure_sync -EXPORT_SYMBOL drivers/md/bcache/bcache 0xdf6f8461 bch_btree_sort_partial -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up -EXPORT_SYMBOL drivers/md/bcache/bcache 0xf8446678 bch_btree_sort_lazy -EXPORT_SYMBOL drivers/md/bcache/bcache 0xf920f854 bch_btree_keys_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0xfd1cf2b2 closure_put -EXPORT_SYMBOL drivers/md/dm-bufio 0x268682d2 dm_bufio_forget -EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers -EXPORT_SYMBOL drivers/md/dm-log 0x177aaa4e dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0x38bab62e dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0x828fd6ab dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0x8b8a9203 dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x272f955a dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x7806ed38 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x91335661 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x96d02d16 dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x9a7cd45f dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0xda069e15 dm_snap_origin -EXPORT_SYMBOL drivers/md/raid456 0x4023646d raid5_set_cache_size -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05a4960a mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x060aae56 mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09095a85 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a466bb3 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ea7c534 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18a9bf14 mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1958df7e mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21eac749 mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36b7cb5a mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38767a82 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c188b5e mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e043cbc mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e5884b0 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6acbcc37 mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84e742d1 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a55b8e0 mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x994dd1ac set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d3e2949 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e2fb70c set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f52f62e mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa33cb51f mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6bdf27a mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6d119cd mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5387f4d mlx4_test_interrupts -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7fb9f2d mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd3a755b mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbebc228f mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc203acdc get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6af0338 mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8328e5a mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc3b2a8b mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd05c49af mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdeaec46f mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe616857e mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe81e3fda mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8be305e mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeadd875e mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf73afcd2 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03739358 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0857aabd mlx5_get_flow_table_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb7287e mlx5_del_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f52cd8c mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c466ddb mlx5_cmd_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e22d926 mlx5_cmd_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ef59150 mlx5_core_destroy_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f771a70 mlx5_modify_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2436a8f0 mlx5_unregister_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2cbec5c7 mlx5_query_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33042833 mlx5_unmap_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36e8402a mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43932451 mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5091e01a mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50dfdbc3 mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59ce2ad6 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c5c5bc6 mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x629f91c5 mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63fabe51 mlx5_register_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x794ecaf8 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7afe283e mlx5_alloc_map_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95b2b2eb mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e138586 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa58b6412 mlx5_get_protocol_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0455e31 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5c2dbe0 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb62feeba mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6e3c990 mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7b81250 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc07c6af0 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc47614a1 mlx5_core_arm_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd71e21e8 mlx5_core_create_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd743ed53 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7928c1b mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd77fe20 mlx5_core_get_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe244b997 mlx5_core_dump_fill_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5495b5a mlx5_core_query_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5e248dc mlx5_cmd_comp_handler -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6af33e4 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeefa002f mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc728a49 mlx5_add_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfcf3183d mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1116e269 mlxsw_core_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2360a424 mlxsw_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x25dc3db4 mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x443e33f4 mlxsw_core_bus_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x803e6ffd mlxsw_core_skb_receive -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9f7e1ce8 mlxsw_core_rx_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xab498b97 mlxsw_core_skb_transmit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xec61d2f5 mlxsw_core_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee8e0771 mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register -EXPORT_SYMBOL drivers/net/phy/fixed_phy 0x9481f6a5 fixed_phy_update_state -EXPORT_SYMBOL drivers/net/phy/libphy 0x02303bee mdiobus_free -EXPORT_SYMBOL drivers/net/phy/libphy 0x073c8265 phy_attach -EXPORT_SYMBOL drivers/net/phy/libphy 0x0bb39630 phy_drivers_unregister -EXPORT_SYMBOL drivers/net/phy/libphy 0x162f0595 phy_ethtool_set_wol -EXPORT_SYMBOL drivers/net/phy/libphy 0x2390c488 phy_driver_unregister -EXPORT_SYMBOL drivers/net/phy/libphy 0x240255b3 genphy_config_init -EXPORT_SYMBOL drivers/net/phy/libphy 0x257d9f8d mdiobus_read_nested -EXPORT_SYMBOL drivers/net/phy/libphy 0x274a2b44 phy_device_remove -EXPORT_SYMBOL drivers/net/phy/libphy 0x279d4217 mdiobus_unregister -EXPORT_SYMBOL drivers/net/phy/libphy 0x28763d95 phy_disconnect -EXPORT_SYMBOL drivers/net/phy/libphy 0x28928679 phy_start -EXPORT_SYMBOL drivers/net/phy/libphy 0x30299680 phy_find_first -EXPORT_SYMBOL drivers/net/phy/libphy 0x322373a2 genphy_resume -EXPORT_SYMBOL drivers/net/phy/libphy 0x38d9791f mdiobus_write_nested -EXPORT_SYMBOL drivers/net/phy/libphy 0x3affd76a mdiobus_scan -EXPORT_SYMBOL drivers/net/phy/libphy 0x3d9f06a9 phy_mac_interrupt -EXPORT_SYMBOL drivers/net/phy/libphy 0x3e411a7a phy_ethtool_set_eee -EXPORT_SYMBOL drivers/net/phy/libphy 0x4012a868 mdiobus_alloc_size -EXPORT_SYMBOL drivers/net/phy/libphy 0x41f00ec3 phy_connect -EXPORT_SYMBOL drivers/net/phy/libphy 0x44bc93a6 genphy_restart_aneg -EXPORT_SYMBOL drivers/net/phy/libphy 0x45c75d6f mdiobus_write -EXPORT_SYMBOL drivers/net/phy/libphy 0x4b05b9c0 phy_register_fixup -EXPORT_SYMBOL drivers/net/phy/libphy 0x4c3467a5 genphy_setup_forced -EXPORT_SYMBOL drivers/net/phy/libphy 0x542f6a43 phy_start_interrupts -EXPORT_SYMBOL drivers/net/phy/libphy 0x5559f3d5 phy_ethtool_get_wol -EXPORT_SYMBOL drivers/net/phy/libphy 0x55fd072a phy_print_status -EXPORT_SYMBOL drivers/net/phy/libphy 0x5e052355 phy_suspend -EXPORT_SYMBOL drivers/net/phy/libphy 0x62446f8e phy_ethtool_get_eee -EXPORT_SYMBOL drivers/net/phy/libphy 0x6bec7e78 mdiobus_read -EXPORT_SYMBOL drivers/net/phy/libphy 0x6d188327 __mdiobus_register -EXPORT_SYMBOL drivers/net/phy/libphy 0x7e473063 genphy_config_aneg -EXPORT_SYMBOL drivers/net/phy/libphy 0x7e626244 phy_ethtool_gset -EXPORT_SYMBOL drivers/net/phy/libphy 0x7f3aa0ae phy_device_free -EXPORT_SYMBOL drivers/net/phy/libphy 0x7f5cf94d phy_ethtool_sset -EXPORT_SYMBOL drivers/net/phy/libphy 0x80bb9638 genphy_aneg_done -EXPORT_SYMBOL drivers/net/phy/libphy 0x853e51dd get_phy_device -EXPORT_SYMBOL drivers/net/phy/libphy 0x89ac6514 phy_register_fixup_for_id -EXPORT_SYMBOL drivers/net/phy/libphy 0x8dc45097 phy_get_eee_err -EXPORT_SYMBOL drivers/net/phy/libphy 0x9005381a genphy_soft_reset -EXPORT_SYMBOL drivers/net/phy/libphy 0xa2acb7ec phy_start_aneg -EXPORT_SYMBOL drivers/net/phy/libphy 0xa6f23557 phy_read_mmd_indirect -EXPORT_SYMBOL drivers/net/phy/libphy 0xaa5e6c22 genphy_suspend -EXPORT_SYMBOL drivers/net/phy/libphy 0xac251833 phy_set_max_speed -EXPORT_SYMBOL drivers/net/phy/libphy 0xaf876f95 phy_device_register -EXPORT_SYMBOL drivers/net/phy/libphy 0xb6e59c75 phy_register_fixup_for_uid -EXPORT_SYMBOL drivers/net/phy/libphy 0xb8ff456a phy_driver_register -EXPORT_SYMBOL drivers/net/phy/libphy 0xbbbfa769 phy_drivers_register -EXPORT_SYMBOL drivers/net/phy/libphy 0xbdd955b4 phy_resume -EXPORT_SYMBOL drivers/net/phy/libphy 0xc11c6f4e phy_init_hw -EXPORT_SYMBOL drivers/net/phy/libphy 0xd0184bd6 genphy_read_status -EXPORT_SYMBOL drivers/net/phy/libphy 0xd1c8136d phy_detach -EXPORT_SYMBOL drivers/net/phy/libphy 0xd52b36e1 phy_mii_ioctl -EXPORT_SYMBOL drivers/net/phy/libphy 0xdb91f4e9 phy_device_create -EXPORT_SYMBOL drivers/net/phy/libphy 0xdc2467fd genphy_update_link -EXPORT_SYMBOL drivers/net/phy/libphy 0xe20f9eec phy_init_eee -EXPORT_SYMBOL drivers/net/phy/libphy 0xe3f039d7 phy_attach_direct -EXPORT_SYMBOL drivers/net/phy/libphy 0xe46aa4d5 phy_write_mmd_indirect -EXPORT_SYMBOL drivers/net/phy/libphy 0xe92735b1 phy_stop_interrupts -EXPORT_SYMBOL drivers/net/phy/libphy 0xef566dd5 mdio_bus_type -EXPORT_SYMBOL drivers/net/phy/libphy 0xfb73d674 phy_stop -EXPORT_SYMBOL drivers/net/phy/libphy 0xfeb783e3 phy_connect_direct -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x1b10ac2e alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x22691a28 free_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x1dd44ad0 cavium_mdiobus_write -EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x2d63f7bf cavium_mdiobus_read -EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x0d56597d xgene_mdio_rgmii_read -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x2360db9d xgene_enet_phy_register -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xc926af96 xgene_mdio_rgmii_write -EXPORT_SYMBOL drivers/net/phy/vitesse 0xc64fa8a9 vsc824x_add_skew -EXPORT_SYMBOL drivers/net/team/team 0x1bdda2a5 team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x62a8bcd1 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0x717b1995 team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0x76a40cb0 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0x9ecdce25 team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0xb927d3fc team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0xce560b60 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0xe646871e team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/pps/pps_core 0x5f02c8b6 pps_register_source -EXPORT_SYMBOL drivers/pps/pps_core 0x742a3a55 pps_unregister_source -EXPORT_SYMBOL drivers/pps/pps_core 0x842fea89 pps_event -EXPORT_SYMBOL drivers/pps/pps_core 0x84c947d8 pps_lookup_dev -EXPORT_SYMBOL drivers/ptp/ptp 0x0d1af68a ptp_clock_event -EXPORT_SYMBOL drivers/ptp/ptp 0x3c4d04db ptp_find_pin -EXPORT_SYMBOL drivers/ptp/ptp 0x51de35f7 ptp_clock_index -EXPORT_SYMBOL drivers/ptp/ptp 0x55ddfc51 ptp_clock_register -EXPORT_SYMBOL drivers/ptp/ptp 0x5ac342fb ptp_clock_unregister -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x030587fa dasd_log_sense_dbf -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x08b29c6f dasd_set_target_state -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x0d3acec2 dasd_block_set_timer -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x143de7cc dasd_alloc_erp_request -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x144b08b3 dasd_reload_device -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x1af14dd5 dasd_log_sense -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x1eb3ba45 dasd_kmalloc_request -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x2697b963 dasd_default_erp_action -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x27ddb934 dasd_int_handler -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x28cd50f4 dasd_sleep_on -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x3442f7c7 dasd_add_request_tail -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x500a0029 dasd_schedule_block_bh -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x50845560 dasd_debug_area -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x51ab0d19 dasd_sleep_on_immediatly -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x5b439f86 dasd_enable_device -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x5e62cbc0 dasd_block_clear_timer -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x74618d6b dasd_diag_discipline_pointer -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x86a3c98e dasd_add_request_head -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x913e19cf dasd_schedule_device_bh -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x937f54e6 dasd_free_erp_request -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x9fe6e726 dasd_start_IO -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xb0626b20 dasd_kick_device -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xb4dcb5de dasd_sleep_on_queue -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xbb027671 dasd_eer_write -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xbe8b5807 dasd_default_erp_postaction -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xc044d91a dasd_smalloc_request -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xc3ff622f dasd_term_IO -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xd0355bfc dasd_cancel_req -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xd33c8a8c dasd_sfree_request -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xddc5e581 dasd_kfree_request -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xe616364f dasd_device_clear_timer -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xf62e377a dasd_sleep_on_interruptible -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xff256640 dasd_device_set_timer -EXPORT_SYMBOL drivers/s390/char/hmcdrv 0x08e57a2c hmcdrv_ftp_do -EXPORT_SYMBOL drivers/s390/char/hmcdrv 0x3198b5cb hmcdrv_ftp_startup -EXPORT_SYMBOL drivers/s390/char/hmcdrv 0x83a6e87f hmcdrv_ftp_probe -EXPORT_SYMBOL drivers/s390/char/hmcdrv 0xba68949c hmcdrv_ftp_shutdown -EXPORT_SYMBOL drivers/s390/char/tape 0x01550465 tape_std_read_block -EXPORT_SYMBOL drivers/s390/char/tape 0x01568dae tape_std_write_block -EXPORT_SYMBOL drivers/s390/char/tape 0x01cdd8ec tape_cancel_io -EXPORT_SYMBOL drivers/s390/char/tape 0x08350ed2 tape_free_request -EXPORT_SYMBOL drivers/s390/char/tape 0x1106fd24 tape_std_mterase -EXPORT_SYMBOL drivers/s390/char/tape 0x11e9fab0 tape_std_mtnop -EXPORT_SYMBOL drivers/s390/char/tape 0x1c725cf6 tape_std_mtbsfm -EXPORT_SYMBOL drivers/s390/char/tape 0x1d17ff40 tape_put_device -EXPORT_SYMBOL drivers/s390/char/tape 0x20b94895 tape_std_mtunload -EXPORT_SYMBOL drivers/s390/char/tape 0x2546c415 tape_state_verbose -EXPORT_SYMBOL drivers/s390/char/tape 0x2656f724 tape_std_read_backward -EXPORT_SYMBOL drivers/s390/char/tape 0x2e858b45 tape_core_dbf -EXPORT_SYMBOL drivers/s390/char/tape 0x38e59e93 tape_std_assign -EXPORT_SYMBOL drivers/s390/char/tape 0x403afe82 tape_std_mtsetblk -EXPORT_SYMBOL drivers/s390/char/tape 0x44fb87ff tape_std_mteom -EXPORT_SYMBOL drivers/s390/char/tape 0x5d2adbe0 tape_std_mtfsfm -EXPORT_SYMBOL drivers/s390/char/tape 0x61f063fc tape_generic_pm_suspend -EXPORT_SYMBOL drivers/s390/char/tape 0x65172453 tape_std_mtload -EXPORT_SYMBOL drivers/s390/char/tape 0x66deb66c tape_op_verbose -EXPORT_SYMBOL drivers/s390/char/tape 0x6f07e8d7 tape_generic_online -EXPORT_SYMBOL drivers/s390/char/tape 0x7621c4bc tape_dump_sense_dbf -EXPORT_SYMBOL drivers/s390/char/tape 0x78899ba7 tape_alloc_request -EXPORT_SYMBOL drivers/s390/char/tape 0x7b36b071 tape_state_set -EXPORT_SYMBOL drivers/s390/char/tape 0x86eb727a tape_do_io -EXPORT_SYMBOL drivers/s390/char/tape 0x8a4e57ea tape_std_mtweof -EXPORT_SYMBOL drivers/s390/char/tape 0x8fea59fc tape_generic_offline -EXPORT_SYMBOL drivers/s390/char/tape 0x95232877 tape_std_mtfsr -EXPORT_SYMBOL drivers/s390/char/tape 0x9cf1b5fc tape_med_state_set -EXPORT_SYMBOL drivers/s390/char/tape 0xa18f3fad tape_std_mtreten -EXPORT_SYMBOL drivers/s390/char/tape 0xa60a1bd9 tape_get_device -EXPORT_SYMBOL drivers/s390/char/tape 0xaf238522 tape_std_process_eov -EXPORT_SYMBOL drivers/s390/char/tape 0xb1410eb6 tape_std_mtbsf -EXPORT_SYMBOL drivers/s390/char/tape 0xb1e4faad tape_std_mtoffl -EXPORT_SYMBOL drivers/s390/char/tape 0xbcedac55 tape_do_io_async -EXPORT_SYMBOL drivers/s390/char/tape 0xc05d5f28 tape_generic_probe -EXPORT_SYMBOL drivers/s390/char/tape 0xc0acb38b tape_std_display -EXPORT_SYMBOL drivers/s390/char/tape 0xc5bfc89e tape_generic_remove -EXPORT_SYMBOL drivers/s390/char/tape 0xc9de5edc tape_std_mtbsr -EXPORT_SYMBOL drivers/s390/char/tape 0xdb2eaea3 tape_std_read_block_id -EXPORT_SYMBOL drivers/s390/char/tape 0xdf811b9b tape_mtop -EXPORT_SYMBOL drivers/s390/char/tape 0xe4460fa4 tape_std_unassign -EXPORT_SYMBOL drivers/s390/char/tape 0xe9285ffd tape_do_io_interruptible -EXPORT_SYMBOL drivers/s390/char/tape 0xedbc781d tape_std_mtfsf -EXPORT_SYMBOL drivers/s390/char/tape 0xee13f9d4 tape_std_mtreset -EXPORT_SYMBOL drivers/s390/char/tape 0xeeb9643c tape_std_mtcompression -EXPORT_SYMBOL drivers/s390/char/tape 0xf56c16e0 tape_std_mtrew -EXPORT_SYMBOL drivers/s390/char/tape_34xx 0xf6c9d357 tape_34xx_dbf -EXPORT_SYMBOL drivers/s390/char/tape_3590 0x3b142505 tape_3590_dbf -EXPORT_SYMBOL drivers/s390/char/tape_class 0xb8641b17 register_tape_dev -EXPORT_SYMBOL drivers/s390/char/tape_class 0xf9c15eda unregister_tape_dev -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x0e8ccd73 ccwgroup_set_online -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x2bf26ee1 ccwgroup_set_offline -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x3d5a48bb ccwgroup_driver_unregister -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x91235a43 ccwgroup_driver_register -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xd5da84aa ccwgroup_create_dev -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xe79c9fba ccwgroup_probe_ccwdev -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xec83810a ccwgroup_remove_ccwdev -EXPORT_SYMBOL drivers/s390/cio/qdio 0x1a866717 qdio_stop_irq -EXPORT_SYMBOL drivers/s390/cio/qdio 0x27232346 qdio_get_next_buffers -EXPORT_SYMBOL drivers/s390/cio/qdio 0x4a08e75f qdio_start_irq -EXPORT_SYMBOL drivers/s390/crypto/ap 0x0b2f053c ap_driver_unregister -EXPORT_SYMBOL drivers/s390/crypto/ap 0x0ffc9609 ap_recv -EXPORT_SYMBOL drivers/s390/crypto/ap 0x5e21cb82 ap_send -EXPORT_SYMBOL drivers/s390/crypto/ap 0x77247c5e ap_bus_force_rescan -EXPORT_SYMBOL drivers/s390/crypto/ap 0xbee8fa8e ap_queue_message -EXPORT_SYMBOL drivers/s390/crypto/ap 0xcfe9606f ap_cancel_message -EXPORT_SYMBOL drivers/s390/crypto/ap 0xd267f5e7 ap_flush_queue -EXPORT_SYMBOL drivers/s390/crypto/ap 0xd5e90454 ap_domain_index -EXPORT_SYMBOL drivers/s390/crypto/ap 0xe3d7567f ap_driver_register -EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x0f4bd977 zcrypt_msgtype_request -EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x2b450ed2 zcrypt_msgtype_unregister -EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x32d9113e zcrypt_device_get -EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x459f0202 zcrypt_msgtype_register -EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x6354c2f7 zcrypt_device_alloc -EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x67cedaeb zcrypt_rescan_req -EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x8427d95a zcrypt_device_register -EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x9442ffb5 zcrypt_device_put -EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0xa5d799dd zcrypt_msgtype_release -EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0xecb477cf zcrypt_device_unregister -EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0xf3c4a78f zcrypt_device_free -EXPORT_SYMBOL drivers/s390/net/ctcm 0x40b3051a ctc_mpc_dealloc_ch -EXPORT_SYMBOL drivers/s390/net/ctcm 0x56f42138 ctc_mpc_alloc_channel -EXPORT_SYMBOL drivers/s390/net/ctcm 0x812fa936 ctc_mpc_establish_connectivity -EXPORT_SYMBOL drivers/s390/net/ctcm 0xf5440dc6 ctc_mpc_flow_control -EXPORT_SYMBOL drivers/s390/net/fsm 0x0e10e441 fsm_modtimer -EXPORT_SYMBOL drivers/s390/net/fsm 0x1b770365 kfree_fsm -EXPORT_SYMBOL drivers/s390/net/fsm 0x3805a87b fsm_getstate_str -EXPORT_SYMBOL drivers/s390/net/fsm 0x57b18322 fsm_deltimer -EXPORT_SYMBOL drivers/s390/net/fsm 0x7af9f0a2 fsm_settimer -EXPORT_SYMBOL drivers/s390/net/fsm 0xc6696799 fsm_addtimer -EXPORT_SYMBOL drivers/s390/net/fsm 0xdcbc5aa7 init_fsm -EXPORT_SYMBOL drivers/s390/net/qeth_l2 0x4a31bcbc qeth_osn_register -EXPORT_SYMBOL drivers/s390/net/qeth_l2 0x5cb89697 qeth_osn_deregister -EXPORT_SYMBOL drivers/s390/net/qeth_l2 0xe358efb8 qeth_osn_assist -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0b74a743 fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x269fc1c5 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3534e783 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5a1dd563 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5d905fdd fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x637188cc fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9b7c5dac fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9c16e932 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9e3e5e92 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa6b9c585 fcoe_ctlr_destroy_store -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc383db16 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfce75a4a fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0e7fb9c4 fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x10f66423 fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x137c5d49 fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x19e19166 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x21dfe027 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x259d35bf fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27f1fc0a fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2dacaa2f fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36352069 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3a9a2ba3 fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3e634155 fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3ef6d665 libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3fb9786d fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x426c9f15 fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x490cad07 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4a951522 fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4e72fb47 fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x649a23f4 fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6e7e5d0b fc_rport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ce48ac9 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x82d6d652 fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x83a0431c fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x840f5451 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8669013f fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8967da97 _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8ad093ee fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8dbe24ac fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8e01d50e fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x93e7f075 fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa353c895 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb2a7331a fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb408eb9f fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbbc14203 fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbddb9a66 fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc2e03679 fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc2fc5233 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc51f911e fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc583e5b6 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcee0c4d4 fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd19d4b37 fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd367b85c fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdbca54b6 fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdd70e149 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe016dddf fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe6c19387 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0b4dae9 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf8a9b4f3 fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf9bedd29 fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfcca0f51 fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfefd9106 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x04617778 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x289f309f sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x701c624a sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xb256b529 sas_wait_eh -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0738606f osd_end_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x09fb3ab2 osd_req_remove_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0d5fdf68 osd_req_list_partition_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0f6f017c osd_execute_request_async -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x11c55cb4 osd_req_add_set_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x157a5684 osd_execute_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1abf9e3a osd_req_decode_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1f2f688c osd_req_flush_obsd -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x25d78fc0 osd_req_decode_sense_full -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2d54d506 osd_req_list_collection_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x329178b1 osd_req_format -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x45e732a6 osd_req_write_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x483daaea osd_finalize_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x598a805b osd_req_read -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x60080d46 osd_req_list_partition_collections -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6b279146 osd_req_write -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6f609e8e osd_req_flush_collection -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7309b3b5 osd_req_read_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x812bb0a2 osd_req_list_dev_partitions -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x81731a84 osd_req_set_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa03c5a71 osd_req_create_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa7dca53f osd_req_get_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xaa44f6d4 osd_req_flush_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc0028dab osd_dev_init -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc40bdfbf osd_start_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc4162385 osd_req_read_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcf19f9d4 osd_req_flush_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd041b2a6 osd_req_read_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd0f0f9c7 osd_req_write_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd1ef33d6 osd_req_write_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd22357ea osd_auto_detect_ver -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xeb3b7601 osd_req_add_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xecc05b51 osd_req_create_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xefe9d2f7 osd_dev_fini -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf18a7aa4 osd_req_add_get_attr_page -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf9b86416 osd_req_remove_object -EXPORT_SYMBOL drivers/scsi/osd/osd 0x129b4ffd osduld_info_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0x2664004a osduld_put_device -EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0x73bf4ab6 osduld_path_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0xb435b5be osduld_device_info -EXPORT_SYMBOL drivers/scsi/osd/osd 0xba4e61d6 osduld_device_same -EXPORT_SYMBOL drivers/scsi/osd/osd 0xd9144670 osduld_register_test -EXPORT_SYMBOL drivers/scsi/raid_class 0x467be3e1 raid_component_add -EXPORT_SYMBOL drivers/scsi/raid_class 0x7c0bc6f2 raid_class_attach -EXPORT_SYMBOL drivers/scsi/raid_class 0xcd036ba5 raid_class_release -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0c3b4e39 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0daa34f0 fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2e1bfe1d fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x38815a0f fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3a539f15 scsi_is_fc_vport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5cf9f74c fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5e048eaa fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9c34f7d5 fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xaf739b14 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb14cecab fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb16ca4a9 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb23e1e52 fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf3d353bc fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x066890a9 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0ffbbb99 scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1a3b0a76 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1e035ad0 sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x21b3e26e sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2247d1b1 sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x22ed726b sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x374013f6 sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3e68e177 sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x476a2c01 sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x49768a1b sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4c30e046 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x54d8abbf sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x60d709d3 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x68da88da sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6f2ed206 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7d7c0a9e scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7f0c4126 scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x98e77598 sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaab272fa sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb9c0d9fc sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcf563e9f sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd4940962 sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdf9ee7c9 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe25d5034 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xec37eb60 sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf90fb951 sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfabc1799 sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x093ead5b spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x22a37ac2 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x37367de6 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x4318e942 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xfeba7c8e spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x2bd875b6 srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x86d6c1a3 srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xa32045bd srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xb6211add srp_reconnect_rport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x02ae2511 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x049dc622 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0dc5e90a iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x20103d1e iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x27fd6f0c iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x41f6f2ed iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x42e2a052 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4dbfa1db iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x58b53c7c iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6e1d35be iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x789e9105 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7ac89b1f iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7d336ef7 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x897a4d8e iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8f2e8453 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9035f6bd iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x96c6e7e5 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa0211352 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa0ddb4ca iscsit_set_unsoliticed_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa1f35338 iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa9144f9c iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaa9cc03e iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaeb3670c iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xafa7f2de iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdc46d66e iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf02fdaaa iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf2ac68ba iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfdd36886 iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x04e150c0 target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x075dacf7 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x09345ef7 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x0a8c4dac transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x0b98498f target_get_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x0f1a0ce3 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x119b0872 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x15c660f0 target_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x1e1afa9b target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x20af07b9 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x20e4a84a transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x2d651c3a target_put_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x33abdbcc target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x3e4dd8b7 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x3e9a3b5a target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x3f754eeb target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x4091d387 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x464c233c transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x4a1cedf9 target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x4a2995fc spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0x5b86aaa1 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x5baaaa5d transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x5c145496 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x5cf77f13 transport_init_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x64888d63 target_sess_cmd_list_set_waiting -EXPORT_SYMBOL drivers/target/target_core_mod 0x666bbf50 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x66b70298 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x6bfab7d8 transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0x6c615c14 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x6d60e630 target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x6f83e69f transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x7005cf74 transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x7260e3cd target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x740b9309 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x75068df4 target_submit_cmd_map_sgls -EXPORT_SYMBOL drivers/target/target_core_mod 0x765aa6f6 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x7ec4fb09 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x7ee56ebf core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x8b8ad54d transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x8cb42832 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x8fe0fedc target_setup_cmd_from_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x93489aad transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x93e61668 transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x940f8e30 transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x994d7f2e core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x9af01675 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x9c1b16b3 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xa9df2000 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0xb26cbc9d spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0xb5dc89c0 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xb8762892 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xb98956bb transport_check_aborted_status -EXPORT_SYMBOL drivers/target/target_core_mod 0xbc880cfb transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xbe46842c sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0xbee8f4da sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0xccbd3656 core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xd911bc95 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0xda1cccdf transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0xdd2fdccf target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xe0f3a8bd target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xe6a98c67 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf10aedd7 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0xf1165116 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xf6904ec2 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0xf77a034d core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0xfa84acb2 transport_init_se_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xfbd896df passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xfe444bf1 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0xfe5d2f34 target_to_linux_sector -EXPORT_SYMBOL drivers/tty/serial/serial_core 0x09e88429 uart_remove_one_port -EXPORT_SYMBOL drivers/tty/serial/serial_core 0x24bcba17 uart_get_baud_rate -EXPORT_SYMBOL drivers/tty/serial/serial_core 0x3ff638b6 uart_suspend_port -EXPORT_SYMBOL drivers/tty/serial/serial_core 0x411c51fd uart_write_wakeup -EXPORT_SYMBOL drivers/tty/serial/serial_core 0x69bd5df3 uart_get_divisor -EXPORT_SYMBOL drivers/tty/serial/serial_core 0x757d54b8 uart_register_driver -EXPORT_SYMBOL drivers/tty/serial/serial_core 0x97ee8a1a uart_unregister_driver -EXPORT_SYMBOL drivers/tty/serial/serial_core 0xb630cdd8 uart_add_one_port -EXPORT_SYMBOL drivers/tty/serial/serial_core 0xc6f35660 uart_resume_port -EXPORT_SYMBOL drivers/tty/serial/serial_core 0xcdf017ee uart_match_port -EXPORT_SYMBOL drivers/tty/serial/serial_core 0xfbd29c5d uart_update_timeout -EXPORT_SYMBOL drivers/vhost/vringh 0x0617468c vringh_iov_pull_user -EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user -EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x15a80695 vringh_getdesc_user -EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user -EXPORT_SYMBOL drivers/vhost/vringh 0x3fc7a1da vringh_iov_pull_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x42898ba2 vringh_iov_push_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x42903a3b vringh_getdesc_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x4b40c951 vringh_iov_push_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user -EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user -EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user -EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user -EXPORT_SYMBOL fs/exofs/libore 0x0c0adf30 ore_remove -EXPORT_SYMBOL fs/exofs/libore 0x196d0b0b ore_read -EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout -EXPORT_SYMBOL fs/exofs/libore 0x3306b162 ore_truncate -EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info -EXPORT_SYMBOL fs/exofs/libore 0x4b75f18b extract_attr_from_ios -EXPORT_SYMBOL fs/exofs/libore 0x9db34bdf ore_check_io -EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length -EXPORT_SYMBOL fs/exofs/libore 0xa52f4bc5 ore_put_io_state -EXPORT_SYMBOL fs/exofs/libore 0xb8f1f6f8 ore_write -EXPORT_SYMBOL fs/exofs/libore 0xc11e0c39 ore_get_io_state -EXPORT_SYMBOL fs/exofs/libore 0xd5f9c832 ore_create -EXPORT_SYMBOL fs/exofs/libore 0xf4dbd95e ore_get_rw_state -EXPORT_SYMBOL fs/fscache/fscache 0x0a4c6b94 __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x0d05d35d __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0x1b8c1784 __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x1f5bbda0 __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x265fbae6 __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0x2993076a fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0x2c01a567 __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0x337562fe __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0x348d6072 __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0x352889df fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0x3f468fc8 fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0x47513a1f fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0x4a1b7a2f __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x4faeaa34 __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x51228d53 __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x557449a0 fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0x6375f529 __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x64529873 __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x68a193a6 fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0x7282baee __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x7879c0c4 fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0x7bc876b7 __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x7e2799b2 __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x87b4cedd __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0x892af138 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0x9088c398 __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0x923d0052 fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0x94299054 fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0x9469029d __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x97d42e8c __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0xa53eee6c fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0xa6a7dfbb __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xb4d6d414 fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0xb93cfe08 fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0xba294ec2 fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0xc8d50f23 fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0xd432d15d fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0xda83a78f fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0xed593dc1 fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0xfc28a6a6 fscache_check_aux -EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x09ba1516 qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x59147074 qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0x896c86f0 qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xaccae6da qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xcadba522 qtree_read_dquot -EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq -EXPORT_SYMBOL lib/crc-ccitt 0x651c2313 crc_ccitt -EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table -EXPORT_SYMBOL lib/crc-itu-t 0x276c7e62 crc_itu_t -EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table -EXPORT_SYMBOL lib/crc7 0x6b96fbac crc7_be -EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table -EXPORT_SYMBOL lib/crc8 0x3e77b340 crc8 -EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb -EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb -EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c -EXPORT_SYMBOL lib/lru_cache 0x0f6f0fdb lc_index_of -EXPORT_SYMBOL lib/lru_cache 0x17c6b1e1 lc_del -EXPORT_SYMBOL lib/lru_cache 0x52857213 lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0x5e7b324d lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0x6f1d0c3b lc_try_lock -EXPORT_SYMBOL lib/lru_cache 0x7869961b lc_set -EXPORT_SYMBOL lib/lru_cache 0x79c87149 lc_get -EXPORT_SYMBOL lib/lru_cache 0x88713f97 lc_create -EXPORT_SYMBOL lib/lru_cache 0x955d4873 lc_committed -EXPORT_SYMBOL lib/lru_cache 0xbbc7a78d lc_put -EXPORT_SYMBOL lib/lru_cache 0xc1a43316 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0xc3a4ca05 lc_destroy -EXPORT_SYMBOL lib/lru_cache 0xe4a98afa lc_try_get -EXPORT_SYMBOL lib/lru_cache 0xebae3022 lc_reset -EXPORT_SYMBOL lib/lru_cache 0xf68cbb8f lc_seq_dump_details -EXPORT_SYMBOL lib/lru_cache 0xff3f1db8 lc_find -EXPORT_SYMBOL lib/lru_cache 0xffb12208 lc_is_used -EXPORT_SYMBOL lib/lz4/lz4_compress 0x32ec514e lz4_compress -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xab08068b lz4hc_compress -EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul -EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp -EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv -EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page -EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi -EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul -EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL net/802/p8022 0x918e7e2b register_8022_client -EXPORT_SYMBOL net/802/p8022 0xb63132ba unregister_8022_client -EXPORT_SYMBOL net/802/psnap 0x12e9f397 register_snap_client -EXPORT_SYMBOL net/802/psnap 0x69916ef6 unregister_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x0bcc18a0 p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0x0e57601f p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x13d5ea29 p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x1b01935c p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0x1cfedb00 p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0x1d44d30b v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x20e554c3 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x250b45b9 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0x276a3d1a p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0x2fb48ebe p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x34c8090f p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get -EXPORT_SYMBOL net/9p/9pnet 0x37a371de p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0x3a572c0c p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x41e3921c p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x44977151 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0x5095d04b p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x66f43e63 p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0x7520c34c p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x77aeb8e1 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0x7cb5bbc9 p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x7d2b1706 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x8370174d p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x8c6bc053 p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0x8e505519 p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x96b750fd v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0x9eba0829 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0xa17c7ae5 p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0xa2576a63 p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0xa4e6539e p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0xa68975da p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0xaa7a1b3b v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0xaf1e6de5 p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0xba183b41 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0xc02ae5ac p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0xc0d1a657 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0xc45c97d4 p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy -EXPORT_SYMBOL net/9p/9pnet 0xcc0ad9d1 v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0xd6306154 p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0xd95b88d9 p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0xe06edf65 p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create -EXPORT_SYMBOL net/9p/9pnet 0xf7f1e67f p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put -EXPORT_SYMBOL net/9p/9pnet 0xfbfdc8d3 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check -EXPORT_SYMBOL net/bridge/bridge 0xd61c015d br_should_route_hook -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x3369bcdf ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x8ad77b48 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xe4e39323 ebt_do_table -EXPORT_SYMBOL net/ceph/libceph 0x037af9d2 ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0x03cfb4d3 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x087c16c8 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init -EXPORT_SYMBOL net/ceph/libceph 0x122d39a5 __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x17d7089f osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0x1aa3e266 ceph_osdc_writepages -EXPORT_SYMBOL net/ceph/libceph 0x1c365f58 ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x1f6980cc osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup -EXPORT_SYMBOL net/ceph/libceph 0x22f3b15d ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x2515cc8a ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0x25a02173 ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0x2638f348 ceph_calc_pg_primary -EXPORT_SYMBOL net/ceph/libceph 0x2896b0ed ceph_osdc_create_event -EXPORT_SYMBOL net/ceph/libceph 0x29042786 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0x2c0a9fdb osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x2cf3fb44 osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x2f0d69a3 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x3004fc0f ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x37970b29 ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0x37e4746c ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x3ed30c97 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0x3f6375f9 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options -EXPORT_SYMBOL net/ceph/libceph 0x419df2f7 ceph_osdc_put_event -EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part -EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0x45e283ec ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x46825094 ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0x4a69fadc ceph_pagelist_reserve -EXPORT_SYMBOL net/ceph/libceph 0x4b2fc8f0 ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x4bf0271e ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0x4dd1cc60 ceph_get_direct_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x4ecfa512 ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode -EXPORT_SYMBOL net/ceph/libceph 0x5419f0ec ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x548dc2bf ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x5bbfe5fc osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0x5c6460df ceph_osdc_readpages -EXPORT_SYMBOL net/ceph/libceph 0x5cd5777f ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x5f947752 ceph_pagelist_append -EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x69f74d95 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0x6a86a290 ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x6ca77f1e ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0x6ead4b82 ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0x70bdc64b ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x73c312c1 ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x74bfe9f9 ceph_osdc_build_request -EXPORT_SYMBOL net/ceph/libceph 0x76f9007f osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x7730edc4 ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0x7b0f8bb0 ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0x7d5dfe78 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x8977535d ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x8a4f6da5 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x8eee95c4 ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x90d529c2 ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0x93e82254 osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0x9609007f ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup -EXPORT_SYMBOL net/ceph/libceph 0x9abf3249 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xa6162be4 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0xa81a2541 osd_req_op_cls_response_data -EXPORT_SYMBOL net/ceph/libceph 0xa9de8b0d ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0xabff75e7 ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb308f9bc ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0xb4e74c52 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0xb518c655 ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0xb5368f36 ceph_messenger_fini -EXPORT_SYMBOL net/ceph/libceph 0xb53b20d4 osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb550ef84 ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xb5b4c200 ceph_client_id -EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit -EXPORT_SYMBOL net/ceph/libceph 0xbfc88f25 ceph_messenger_init -EXPORT_SYMBOL net/ceph/libceph 0xc13dfa69 ceph_monc_request_next_osdmap -EXPORT_SYMBOL net/ceph/libceph 0xc1f544bb ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0xc4999115 ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup -EXPORT_SYMBOL net/ceph/libceph 0xc6bc840e ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0xc9da9253 ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init -EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips -EXPORT_SYMBOL net/ceph/libceph 0xcf38a6c9 osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode -EXPORT_SYMBOL net/ceph/libceph 0xd305dbea ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0xd46d5f31 ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0xd4f35bb0 osd_req_op_watch_init -EXPORT_SYMBOL net/ceph/libceph 0xd7a1e466 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0xd8760728 osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0xd9e71a8b ceph_oloc_oid_to_pg -EXPORT_SYMBOL net/ceph/libceph 0xda9ea1d8 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0xde75497f ceph_monc_do_get_version -EXPORT_SYMBOL net/ceph/libceph 0xde88b316 ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xe552b6fc ceph_monc_got_mdsmap -EXPORT_SYMBOL net/ceph/libceph 0xe6a8e402 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0xeeea4f74 ceph_osdc_set_request_linger -EXPORT_SYMBOL net/ceph/libceph 0xef37c8c3 ceph_osdc_cancel_event -EXPORT_SYMBOL net/ceph/libceph 0xf3aef966 ceph_auth_update_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xf7a75d73 ceph_auth_create_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xfa1f8abc ceph_osdc_put_request -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x18266dff dccp_req_err -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xe7c29866 dccp_syn_ack_timeout -EXPORT_SYMBOL net/ipv4/fou 0x4a6219ba fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0x72395c37 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x934af5fb gue_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0xc39c5331 gue_build_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x08b892ae ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x6b3870a7 ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x9c974559 ip_tunnel_dst_reset_all -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xa61a19d4 ip_tunnel_encap -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xa669a115 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xb1abe9af ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x0d304595 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x2603077c arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x369865d5 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x583e5702 ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x6989a20a ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x9bbee783 ipt_unregister_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x878d80d1 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/tunnel4 0x979a9e80 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/udp_tunnel 0xa3042d07 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x21d6165b ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd652ad5d ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf91894bb ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf9b59a70 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xc51f7141 ip6t_unregister_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xee41450d ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xf3a7fd14 ip6t_register_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x1d6a1dc5 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/tunnel6 0x24db1f70 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xcc255763 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xf2f14def xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/l2tp/l2tp_core 0x5160cd5d l2tp_recv_common -EXPORT_SYMBOL net/l2tp/l2tp_ip 0xe1e6b972 l2tp_ioctl -EXPORT_SYMBOL net/llc/llc 0x039c5fa9 llc_add_pack -EXPORT_SYMBOL net/llc/llc 0x077d8ecf llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x9a597075 llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0xa0d6354f llc_sap_open -EXPORT_SYMBOL net/llc/llc 0xa719ad05 llc_sap_close -EXPORT_SYMBOL net/llc/llc 0xaa4dba04 llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0xc0fa97c9 llc_sap_find -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0437e493 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x054b3dbe unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x06d6316c ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3c05ae37 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x527c4b1f ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x55eb2454 ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5addfa85 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6de3e6ba register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9624ebda ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9c9971cf unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa81844ec ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xae34ff30 ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcf039f51 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf74966e3 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3aa5f9da __nf_ct_ext_add_length -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x728f09cd nf_conntrack_untracked -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xf84f2dc7 __nf_ct_ext_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x1db26992 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0x42a4aaa7 nf_nat_used_tuple -EXPORT_SYMBOL net/netfilter/nf_nat 0x838182ec nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0x9eb7ba03 nf_xfrm_me_harder -EXPORT_SYMBOL net/netfilter/nf_nat 0xb48e60d6 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xdf12e205 __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/x_tables 0x253e8b44 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x2b4ee367 xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x4670834a xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x6e008605 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0x84d5ac01 xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x962fcc16 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xb68c42a8 xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0xb93ee8ce xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0xbe44087a xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0xd724a9e3 xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xf59a3632 xt_find_target -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x141e204e rxrpc_kernel_get_abort_code -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1711ef96 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1db4b4f0 rxrpc_kernel_free_skb -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x3437a25f rxrpc_kernel_get_error_number -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x36012811 rxrpc_kernel_is_data_last -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4aa88f0b rxrpc_kernel_intercept_rx_messages -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x51861097 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8d96bb92 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x93b6e167 rxrpc_kernel_accept_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xcfddb637 rxrpc_kernel_reject_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd931cc42 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xddce2e3d rxrpc_kernel_data_delivered -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xee866427 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf2caffb6 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf3940bf2 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/sctp/sctp 0x9f353ae6 sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x87cc8fd0 gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xa57a1138 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xaebeeced gss_mech_get -EXPORT_SYMBOL net/sunrpc/sunrpc 0x32df63b6 xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0x45867a51 svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0x9bb9d7c3 xdr_truncate_encode -EXPORT_SYMBOL vmlinux 0x000ed184 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x002c3759 forget_cached_acl -EXPORT_SYMBOL vmlinux 0x0031c81a sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x004b79b2 nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0x0057945d __devm_release_region -EXPORT_SYMBOL vmlinux 0x005ba061 param_ops_ushort -EXPORT_SYMBOL vmlinux 0x005cdb00 vm_map_ram -EXPORT_SYMBOL vmlinux 0x0068f0d7 kernel_sock_ioctl -EXPORT_SYMBOL vmlinux 0x0070cd1f queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0x00713e76 unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x008062d9 search_binary_handler -EXPORT_SYMBOL vmlinux 0x008400b4 blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0x0084b312 generic_readlink -EXPORT_SYMBOL vmlinux 0x00851137 md_integrity_register -EXPORT_SYMBOL vmlinux 0x0095f288 inode_add_rsv_space -EXPORT_SYMBOL vmlinux 0x00abed75 __wait_on_bit -EXPORT_SYMBOL vmlinux 0x00bfe676 __inode_permission -EXPORT_SYMBOL vmlinux 0x00e7a60f mark_info_dirty -EXPORT_SYMBOL vmlinux 0x00e7c6a6 param_set_ulong -EXPORT_SYMBOL vmlinux 0x00f4a223 _ebc_toupper -EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve -EXPORT_SYMBOL vmlinux 0x0118bc90 __sk_dst_check -EXPORT_SYMBOL vmlinux 0x011eb138 devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0x01379617 xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer -EXPORT_SYMBOL vmlinux 0x017137ed generic_file_mmap -EXPORT_SYMBOL vmlinux 0x0185a7d7 sclp_pci_deconfigure -EXPORT_SYMBOL vmlinux 0x018787f2 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0x018ed79f blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0x0199fad6 pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0x01a0874d pcie_get_readrq -EXPORT_SYMBOL vmlinux 0x01a7a7e8 __f_setown -EXPORT_SYMBOL vmlinux 0x01c6d198 lwtunnel_output -EXPORT_SYMBOL vmlinux 0x01d5b1d0 default_llseek -EXPORT_SYMBOL vmlinux 0x01d8baef nf_log_unset -EXPORT_SYMBOL vmlinux 0x01dbab5d load_nls_default -EXPORT_SYMBOL vmlinux 0x01e49ae6 inet_del_protocol -EXPORT_SYMBOL vmlinux 0x01e778a0 clocksource_unregister -EXPORT_SYMBOL vmlinux 0x01ebcb7b lg_global_unlock -EXPORT_SYMBOL vmlinux 0x022d0315 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0x022d3771 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0x023a208e simple_link -EXPORT_SYMBOL vmlinux 0x024bf827 radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x0271cb98 pci_set_master -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x029b0577 pci_choose_state -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table -EXPORT_SYMBOL vmlinux 0x02a8f934 I_BDEV -EXPORT_SYMBOL vmlinux 0x02af0f26 jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0x02b9e2c4 seq_release -EXPORT_SYMBOL vmlinux 0x02ca22a8 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0x02e4b4f9 wake_up_process -EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string -EXPORT_SYMBOL vmlinux 0x02f0da0c nvm_register -EXPORT_SYMBOL vmlinux 0x02f398df blk_queue_resize_tags -EXPORT_SYMBOL vmlinux 0x03023289 nvm_get_blk_unlocked -EXPORT_SYMBOL vmlinux 0x031c1ab8 security_d_instantiate -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x0337a3c1 tcp_enter_memory_pressure -EXPORT_SYMBOL vmlinux 0x03498156 cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x03746fed nf_hooks_needed -EXPORT_SYMBOL vmlinux 0x03747691 kbd_ascebc -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x0388a5d8 idr_init -EXPORT_SYMBOL vmlinux 0x038a1eb1 md_update_sb -EXPORT_SYMBOL vmlinux 0x03c84ae4 scsi_remove_device -EXPORT_SYMBOL vmlinux 0x03cd5d0d tsb_init -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg -EXPORT_SYMBOL vmlinux 0x042dfe18 param_set_copystring -EXPORT_SYMBOL vmlinux 0x0435f26d lowcore_ptr -EXPORT_SYMBOL vmlinux 0x0444b58b sg_miter_next -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x04810ea5 down_killable -EXPORT_SYMBOL vmlinux 0x048e1de5 arp_create -EXPORT_SYMBOL vmlinux 0x04927208 cpu_active_mask -EXPORT_SYMBOL vmlinux 0x04b701bb filemap_flush -EXPORT_SYMBOL vmlinux 0x04ce727c xfrm4_rcv_cb -EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol -EXPORT_SYMBOL vmlinux 0x04f74767 nf_ct_attach -EXPORT_SYMBOL vmlinux 0x051e9673 neigh_seq_start -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x05666e9a param_ops_string -EXPORT_SYMBOL vmlinux 0x0574cc32 tty_port_close_end -EXPORT_SYMBOL vmlinux 0x057746dd blk_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x057c4ea5 lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0x057cb73b ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0x05834546 __skb_get_hash_flowi4 -EXPORT_SYMBOL vmlinux 0x05969dd8 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0x05afc4c3 pci_get_class -EXPORT_SYMBOL vmlinux 0x05b03df8 udp6_csum_init -EXPORT_SYMBOL vmlinux 0x05f872e1 bit_waitqueue -EXPORT_SYMBOL vmlinux 0x06026d3b sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x06032bd8 netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0x0604c7bd __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x0630ac89 may_umount -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x0640d6be inet_frag_find -EXPORT_SYMBOL vmlinux 0x06616939 debug_set_level -EXPORT_SYMBOL vmlinux 0x066e8345 lockref_get -EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx -EXPORT_SYMBOL vmlinux 0x069b5353 try_to_release_page -EXPORT_SYMBOL vmlinux 0x06a485f2 __krealloc -EXPORT_SYMBOL vmlinux 0x06a4d41d inet_accept -EXPORT_SYMBOL vmlinux 0x06cc77c8 follow_up -EXPORT_SYMBOL vmlinux 0x06d6e5d5 __ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x071578c4 ipv4_specific -EXPORT_SYMBOL vmlinux 0x071889e0 locks_copy_conflock -EXPORT_SYMBOL vmlinux 0x07297511 crc_t10dif_update -EXPORT_SYMBOL vmlinux 0x07a12f7c __napi_complete -EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free -EXPORT_SYMBOL vmlinux 0x07a9ef84 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x07aa14ac netif_rx -EXPORT_SYMBOL vmlinux 0x07b68796 pci_dev_put -EXPORT_SYMBOL vmlinux 0x07c2cc1d iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x08044d6f idr_find_slowpath -EXPORT_SYMBOL vmlinux 0x0818533c textsearch_unregister -EXPORT_SYMBOL vmlinux 0x08297435 xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x083d75db inet_put_port -EXPORT_SYMBOL vmlinux 0x084826b9 inet_select_addr -EXPORT_SYMBOL vmlinux 0x084cd23e dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0x0872f879 blk_mq_all_tag_busy_iter -EXPORT_SYMBOL vmlinux 0x088065de sock_no_setsockopt -EXPORT_SYMBOL vmlinux 0x089a864e bio_copy_kern -EXPORT_SYMBOL vmlinux 0x08a7d880 nobh_write_end -EXPORT_SYMBOL vmlinux 0x08ace69e register_external_irq -EXPORT_SYMBOL vmlinux 0x08b00bac crypto_sha512_update -EXPORT_SYMBOL vmlinux 0x08b4b3ff __ip_dev_find -EXPORT_SYMBOL vmlinux 0x08be4b8f km_state_notify -EXPORT_SYMBOL vmlinux 0x08d2279f ___pskb_trim -EXPORT_SYMBOL vmlinux 0x08d26549 inet_addr_type -EXPORT_SYMBOL vmlinux 0x08d2f48c nvm_free_rqd_ppalist -EXPORT_SYMBOL vmlinux 0x09125bb6 debug_exception_common -EXPORT_SYMBOL vmlinux 0x092f458b skb_append_datato_frags -EXPORT_SYMBOL vmlinux 0x093d7fa6 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x0950c255 free_user_ns -EXPORT_SYMBOL vmlinux 0x09576f93 complete_and_exit -EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key -EXPORT_SYMBOL vmlinux 0x0960ea11 param_get_short -EXPORT_SYMBOL vmlinux 0x0986fdc4 invalidate_bdev -EXPORT_SYMBOL vmlinux 0x0987b085 blk_free_tags -EXPORT_SYMBOL vmlinux 0x09915f70 udp_table -EXPORT_SYMBOL vmlinux 0x09b56daa sb_min_blocksize -EXPORT_SYMBOL vmlinux 0x09b7efa4 generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x09c8d6b8 xfrm_state_add -EXPORT_SYMBOL vmlinux 0x09cc5422 file_open_root -EXPORT_SYMBOL vmlinux 0x09ce7fd5 find_lock_entry -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09f925ed blk_stop_queue -EXPORT_SYMBOL vmlinux 0x0a1407da tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0x0a57863e cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x0a640b05 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0a7a1661 seq_printf -EXPORT_SYMBOL vmlinux 0x0a86d0f9 bdi_setup_and_register -EXPORT_SYMBOL vmlinux 0x0a9d7a9f make_kgid -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aacd352 __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x0acfc07b dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x0ad2ada6 d_rehash -EXPORT_SYMBOL vmlinux 0x0aedabb3 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0x0af88c58 config_item_put -EXPORT_SYMBOL vmlinux 0x0afa3d53 simple_transaction_release -EXPORT_SYMBOL vmlinux 0x0b04fdb8 from_kprojid -EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b210c7b ccw_device_get_path_mask -EXPORT_SYMBOL vmlinux 0x0b2647f7 eth_header_cache_update -EXPORT_SYMBOL vmlinux 0x0b2d5180 lwtunnel_cmp_encap -EXPORT_SYMBOL vmlinux 0x0b31ed10 xfrm6_rcv_cb -EXPORT_SYMBOL vmlinux 0x0b457703 task_tgid_nr_ns -EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister -EXPORT_SYMBOL vmlinux 0x0b6fc5dd cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x0b712735 netif_carrier_off -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0bb9f08f register_qdisc -EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bc98a15 scsi_target_resume -EXPORT_SYMBOL vmlinux 0x0bdbccc9 filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x0c196fe9 tcf_hash_new_index -EXPORT_SYMBOL vmlinux 0x0c21d019 flush_delayed_work -EXPORT_SYMBOL vmlinux 0x0c23120e scsi_print_sense -EXPORT_SYMBOL vmlinux 0x0c3510cc new_inode -EXPORT_SYMBOL vmlinux 0x0c44eebc proc_set_size -EXPORT_SYMBOL vmlinux 0x0c456b9d down_read_trylock -EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat -EXPORT_SYMBOL vmlinux 0x0c566faf param_ops_uint -EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features -EXPORT_SYMBOL vmlinux 0x0c5f2a5b idr_get_next -EXPORT_SYMBOL vmlinux 0x0c6195f0 inet_sendmsg -EXPORT_SYMBOL vmlinux 0x0c6529a0 sk_free -EXPORT_SYMBOL vmlinux 0x0c737a57 dump_skip -EXPORT_SYMBOL vmlinux 0x0c7cf7c6 zero_page_mask -EXPORT_SYMBOL vmlinux 0x0c7e208a scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x0c83d43d __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x0c8a82c9 neigh_seq_next -EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0x0cceac6c iommu_tbl_range_free -EXPORT_SYMBOL vmlinux 0x0cefd029 sk_dst_check -EXPORT_SYMBOL vmlinux 0x0d4c519b call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d6565ab filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0x0d8569e9 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x0d8c3f59 blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0x0d9b7122 vm_insert_page -EXPORT_SYMBOL vmlinux 0x0da07590 blk_integrity_register -EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft -EXPORT_SYMBOL vmlinux 0x0db41d49 udp_set_csum -EXPORT_SYMBOL vmlinux 0x0dced061 __page_cache_alloc -EXPORT_SYMBOL vmlinux 0x0dee8aa2 sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0x0e079ac7 __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x0e0ed45c scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0x0e37cbaa xfrm6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x0e3ff7f3 revalidate_disk -EXPORT_SYMBOL vmlinux 0x0e57846d inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec -EXPORT_SYMBOL vmlinux 0x0e7d046e tty_unregister_device -EXPORT_SYMBOL vmlinux 0x0e8cea48 inet_frags_fini -EXPORT_SYMBOL vmlinux 0x0e9c9d44 class3270 -EXPORT_SYMBOL vmlinux 0x0ea18bf3 __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0x0ea763c3 sclp_sync_wait -EXPORT_SYMBOL vmlinux 0x0eab56fa __kfifo_max_r -EXPORT_SYMBOL vmlinux 0x0eb91f0f cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups -EXPORT_SYMBOL vmlinux 0x0efe9d3d skb_set_owner_w -EXPORT_SYMBOL vmlinux 0x0f173233 iucv_bus -EXPORT_SYMBOL vmlinux 0x0f2d58e1 iov_iter_fault_in_readable -EXPORT_SYMBOL vmlinux 0x0f3f278d tcp_shutdown -EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec -EXPORT_SYMBOL vmlinux 0x0f500d6d mark_page_accessed -EXPORT_SYMBOL vmlinux 0x0f55b951 __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0x0f5e8248 ping_prot -EXPORT_SYMBOL vmlinux 0x0f69ed35 netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size -EXPORT_SYMBOL vmlinux 0x0f71b602 blk_start_request -EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x0f9d7c76 register_console -EXPORT_SYMBOL vmlinux 0x0fa96a83 jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fc9b727 ccw_device_start -EXPORT_SYMBOL vmlinux 0x0fe70bb8 jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0x10000f61 compat_sock_get_timestamp -EXPORT_SYMBOL vmlinux 0x1022adb3 memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0x102bdac1 nf_unregister_hook -EXPORT_SYMBOL vmlinux 0x1042c349 __free_pages -EXPORT_SYMBOL vmlinux 0x10497616 memweight -EXPORT_SYMBOL vmlinux 0x104f7541 inet_frag_destroy -EXPORT_SYMBOL vmlinux 0x1054e732 __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x10639d67 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x10950ee1 radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x10b3ac16 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x10b3e681 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x10c9a43b tcp_close -EXPORT_SYMBOL vmlinux 0x10cfcbb3 single_open_size -EXPORT_SYMBOL vmlinux 0x10f2eb76 vsnprintf -EXPORT_SYMBOL vmlinux 0x10f99873 address_space_init_once -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x110a6f52 blk_queue_end_tag -EXPORT_SYMBOL vmlinux 0x1115e9ab lz4_decompress_unknownoutputsize -EXPORT_SYMBOL vmlinux 0x11394f13 simple_transaction_set -EXPORT_SYMBOL vmlinux 0x115ead33 pid_task -EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn -EXPORT_SYMBOL vmlinux 0x11678bc4 devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned -EXPORT_SYMBOL vmlinux 0x11b22d90 __dax_fault -EXPORT_SYMBOL vmlinux 0x11b54052 jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0x11c65146 debug_unregister_view -EXPORT_SYMBOL vmlinux 0x11c93b71 sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0x11e87a35 block_read_full_page -EXPORT_SYMBOL vmlinux 0x11ed2eb8 sclp_remove_processed -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin -EXPORT_SYMBOL vmlinux 0x12075791 __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier -EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const -EXPORT_SYMBOL vmlinux 0x12115faa inet_frags_init -EXPORT_SYMBOL vmlinux 0x1218f5b8 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x121e0e0c kernel_write -EXPORT_SYMBOL vmlinux 0x1224d249 param_get_invbool -EXPORT_SYMBOL vmlinux 0x122d7e31 __register_chrdev -EXPORT_SYMBOL vmlinux 0x123f82f3 getrawmonotonic64 -EXPORT_SYMBOL vmlinux 0x124919ae blk_queue_start_tag -EXPORT_SYMBOL vmlinux 0x124a4426 path_nosuid -EXPORT_SYMBOL vmlinux 0x1251a12e console_mode -EXPORT_SYMBOL vmlinux 0x12576839 simple_write_end -EXPORT_SYMBOL vmlinux 0x12646954 no_llseek -EXPORT_SYMBOL vmlinux 0x1265ac29 ccw_device_clear_options -EXPORT_SYMBOL vmlinux 0x128658bf datagram_poll -EXPORT_SYMBOL vmlinux 0x12887a93 atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x129d4bc8 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range -EXPORT_SYMBOL vmlinux 0x12a5c996 mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0x12ade252 xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0x12b86d23 sock_create -EXPORT_SYMBOL vmlinux 0x12f9789d scsi_scan_target -EXPORT_SYMBOL vmlinux 0x13012431 vfs_getattr -EXPORT_SYMBOL vmlinux 0x1307b726 dev_remove_pack -EXPORT_SYMBOL vmlinux 0x130a6c5a security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0x1319449d secure_modules -EXPORT_SYMBOL vmlinux 0x132a4a3a key_payload_reserve -EXPORT_SYMBOL vmlinux 0x13304921 elv_dispatch_add_tail -EXPORT_SYMBOL vmlinux 0x13307fde vsscanf -EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc -EXPORT_SYMBOL vmlinux 0x1343d73f pcie_set_mps -EXPORT_SYMBOL vmlinux 0x134d6112 poll_freewait -EXPORT_SYMBOL vmlinux 0x13669d57 pskb_expand_head -EXPORT_SYMBOL vmlinux 0x137c7c48 netdev_change_features -EXPORT_SYMBOL vmlinux 0x13945880 dquot_commit_info -EXPORT_SYMBOL vmlinux 0x139484e6 get_disk -EXPORT_SYMBOL vmlinux 0x13b79554 udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x13c7d142 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13d7d8b3 simple_empty -EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation -EXPORT_SYMBOL vmlinux 0x13fb3c87 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0x146428d3 dmam_pool_create -EXPORT_SYMBOL vmlinux 0x147ec284 loop_backing_file -EXPORT_SYMBOL vmlinux 0x1493fc89 mpage_writepages -EXPORT_SYMBOL vmlinux 0x14c5e5b3 segment_warning -EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x14ed6025 sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x14f563e1 __dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x14f59ba9 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0x1514ade5 qdisc_list_add -EXPORT_SYMBOL vmlinux 0x15208cbc bdget -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x1559806a copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x157b98be dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x1588366a lock_sock_nested -EXPORT_SYMBOL vmlinux 0x158a676c compat_ip_setsockopt -EXPORT_SYMBOL vmlinux 0x159a85c3 __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0x15a3084c param_set_bool -EXPORT_SYMBOL vmlinux 0x15a9bb26 blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15d95bc0 tcf_em_unregister -EXPORT_SYMBOL vmlinux 0x15e8f7cf always_delete_dentry -EXPORT_SYMBOL vmlinux 0x15fbddf9 dev_mc_flush -EXPORT_SYMBOL vmlinux 0x160b7535 dump_page -EXPORT_SYMBOL vmlinux 0x1619fedb load_nls -EXPORT_SYMBOL vmlinux 0x16679f8c filp_open -EXPORT_SYMBOL vmlinux 0x1681a5fb gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x169b7aee unregister_adapter_interrupt -EXPORT_SYMBOL vmlinux 0x16a4972e pneigh_lookup -EXPORT_SYMBOL vmlinux 0x16aacd52 __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x16b38297 kill_anon_super -EXPORT_SYMBOL vmlinux 0x16d34089 pci_clear_master -EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16f5c428 scsi_device_resume -EXPORT_SYMBOL vmlinux 0x17261585 thaw_super -EXPORT_SYMBOL vmlinux 0x17376813 nf_log_unregister -EXPORT_SYMBOL vmlinux 0x173c6584 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0x1781dcff rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x1783a8dc ll_rw_block -EXPORT_SYMBOL vmlinux 0x1789e65b seq_vprintf -EXPORT_SYMBOL vmlinux 0x1793f685 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0x1795b3f2 posix_lock_file -EXPORT_SYMBOL vmlinux 0x1797f266 netlink_ack -EXPORT_SYMBOL vmlinux 0x179fc2fc __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0x17a142df __copy_from_user -EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator -EXPORT_SYMBOL vmlinux 0x17dcb490 nvm_put_blk_unlocked -EXPORT_SYMBOL vmlinux 0x17e05223 raw3270_del_view -EXPORT_SYMBOL vmlinux 0x18003fd1 nf_afinfo -EXPORT_SYMBOL vmlinux 0x18123f6b nf_reinject -EXPORT_SYMBOL vmlinux 0x1824dd0c __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken -EXPORT_SYMBOL vmlinux 0x183c50ed bio_put -EXPORT_SYMBOL vmlinux 0x183f45d8 generic_make_request -EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0x184bf5ab configfs_register_default_group -EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc -EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x189b6bac memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x189df10d blk_queue_prep_rq -EXPORT_SYMBOL vmlinux 0x18b87cca sclp_deactivate -EXPORT_SYMBOL vmlinux 0x18c57798 scsi_rescan_device -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x191367dd blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0x194839cf jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0x195d7248 kernel_listen -EXPORT_SYMBOL vmlinux 0x1979a277 tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19aac703 bio_clone_bioset -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19ecc6fa nvm_submit_io -EXPORT_SYMBOL vmlinux 0x19fc8306 blk_mq_abort_requeue_list -EXPORT_SYMBOL vmlinux 0x1a062b28 dentry_needs_remove_privs -EXPORT_SYMBOL vmlinux 0x1a1d1d36 module_refcount -EXPORT_SYMBOL vmlinux 0x1a29c107 proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x1a4a4880 blk_start_queue -EXPORT_SYMBOL vmlinux 0x1a4c207d netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0x1a73698a __put_cred -EXPORT_SYMBOL vmlinux 0x1a7a94e7 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0x1aab607a dquot_commit -EXPORT_SYMBOL vmlinux 0x1ab6847f nf_register_hooks -EXPORT_SYMBOL vmlinux 0x1aed7fdf key_type_keyring -EXPORT_SYMBOL vmlinux 0x1b008492 bioset_integrity_create -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents -EXPORT_SYMBOL vmlinux 0x1b5198b3 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0x1b58273b simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b7e0448 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug -EXPORT_SYMBOL vmlinux 0x1b91b0e7 configfs_depend_item -EXPORT_SYMBOL vmlinux 0x1baf6f0f elv_register_queue -EXPORT_SYMBOL vmlinux 0x1bb07a42 lz4_decompress -EXPORT_SYMBOL vmlinux 0x1bb0a5e5 jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer -EXPORT_SYMBOL vmlinux 0x1bbdc8f8 seq_escape -EXPORT_SYMBOL vmlinux 0x1bc2c6c3 audit_log_task_info -EXPORT_SYMBOL vmlinux 0x1bd79bd3 pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0x1bd7af74 pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0x1bf18dd7 skb_seq_read -EXPORT_SYMBOL vmlinux 0x1c114a6a vm_event_states -EXPORT_SYMBOL vmlinux 0x1c1264a1 fput -EXPORT_SYMBOL vmlinux 0x1c13045d generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0x1c13490e tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0x1c1c74c7 iucv_message_receive -EXPORT_SYMBOL vmlinux 0x1c212766 vfs_read -EXPORT_SYMBOL vmlinux 0x1c53b6f6 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0x1c61b587 raw3270_start -EXPORT_SYMBOL vmlinux 0x1c762a81 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x1c80de9c ip_send_check -EXPORT_SYMBOL vmlinux 0x1c8a451d jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x1d2626f9 tty_register_driver -EXPORT_SYMBOL vmlinux 0x1d47db18 compat_sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x1d4a6628 tcp_poll -EXPORT_SYMBOL vmlinux 0x1d4d845e pci_read_vpd -EXPORT_SYMBOL vmlinux 0x1d63cd6d ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x1d69298d try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x1d70a6b4 xfrm_garbage_collect -EXPORT_SYMBOL vmlinux 0x1d71bfff remove_arg_zero -EXPORT_SYMBOL vmlinux 0x1d91966f __skb_tx_hash -EXPORT_SYMBOL vmlinux 0x1daa8f08 devm_iounmap -EXPORT_SYMBOL vmlinux 0x1dbb3b99 debugfs_create_automount -EXPORT_SYMBOL vmlinux 0x1dc58a73 inet_csk_accept -EXPORT_SYMBOL vmlinux 0x1df2e22c check_disk_change -EXPORT_SYMBOL vmlinux 0x1e0b16af scsi_add_device -EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev -EXPORT_SYMBOL vmlinux 0x1e4a3073 page_follow_link_light -EXPORT_SYMBOL vmlinux 0x1e541ca1 unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x1e624742 dmam_free_noncoherent -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e76ff33 put_disk -EXPORT_SYMBOL vmlinux 0x1e827675 blk_init_queue -EXPORT_SYMBOL vmlinux 0x1e8a161a crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x1e8aacb9 submit_bio -EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1ebe0712 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0x1ebe31ad pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x1ec01a94 d_obtain_root -EXPORT_SYMBOL vmlinux 0x1ee88857 xfrm_lookup -EXPORT_SYMBOL vmlinux 0x1f049d90 udp_ioctl -EXPORT_SYMBOL vmlinux 0x1f33412e param_set_long -EXPORT_SYMBOL vmlinux 0x1f4581b9 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0x1f46a728 netdev_features_change -EXPORT_SYMBOL vmlinux 0x1f538a4d __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x1f78e128 touch_atime -EXPORT_SYMBOL vmlinux 0x1f97c0eb dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0x1faabfe8 tcf_hash_insert -EXPORT_SYMBOL vmlinux 0x1fbb0bb2 generic_key_instantiate -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag -EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region -EXPORT_SYMBOL vmlinux 0x1ffac2fc pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x200f9cbb pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x201f0f24 pci_iomap_range -EXPORT_SYMBOL vmlinux 0x2024225b __inet_hash -EXPORT_SYMBOL vmlinux 0x203d60d6 end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool -EXPORT_SYMBOL vmlinux 0x205635c0 tty_mutex -EXPORT_SYMBOL vmlinux 0x205f4d9f sclp_unregister -EXPORT_SYMBOL vmlinux 0x2066a967 inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq -EXPORT_SYMBOL vmlinux 0x2086c69d jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0x208b752c unregister_shrinker -EXPORT_SYMBOL vmlinux 0x20973b94 segment_unload -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20a9a5df simple_unlink -EXPORT_SYMBOL vmlinux 0x20b7769f write_dirty_buffer -EXPORT_SYMBOL vmlinux 0x20b85b41 scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf -EXPORT_SYMBOL vmlinux 0x20e1fd25 pci_enable_device -EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x20fd3dff get_acl -EXPORT_SYMBOL vmlinux 0x210d5871 clocksource_change_rating -EXPORT_SYMBOL vmlinux 0x2115776c blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0x211f68f1 getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x212bc54a ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x2136fa92 kernel_read -EXPORT_SYMBOL vmlinux 0x21697a21 iucv_message_reject -EXPORT_SYMBOL vmlinux 0x219f0ba2 elevator_init -EXPORT_SYMBOL vmlinux 0x21a7298a generic_show_options -EXPORT_SYMBOL vmlinux 0x21a7fb9e pci_bus_get -EXPORT_SYMBOL vmlinux 0x21cacb76 md_check_recovery -EXPORT_SYMBOL vmlinux 0x21da7625 config_group_init_type_name -EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set -EXPORT_SYMBOL vmlinux 0x21e472bd dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x21eb5b00 sclp_cpi_set_data -EXPORT_SYMBOL vmlinux 0x21fbc5cc nobh_truncate_page -EXPORT_SYMBOL vmlinux 0x2201bdf3 tty_write_room -EXPORT_SYMBOL vmlinux 0x221be09f genl_unregister_family -EXPORT_SYMBOL vmlinux 0x222c1add kobject_get -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x224cb332 down -EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits -EXPORT_SYMBOL vmlinux 0x226b08a4 idr_is_empty -EXPORT_SYMBOL vmlinux 0x226db434 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x2275770f dev_remove_offload -EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint -EXPORT_SYMBOL vmlinux 0x22ac1d06 raw3270_request_set_data -EXPORT_SYMBOL vmlinux 0x22b424fa dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x22d4e951 try_module_get -EXPORT_SYMBOL vmlinux 0x22db4013 km_new_mapping -EXPORT_SYMBOL vmlinux 0x22e23df2 generic_file_open -EXPORT_SYMBOL vmlinux 0x22e4cd20 cad_pid -EXPORT_SYMBOL vmlinux 0x22ecf082 idr_remove -EXPORT_SYMBOL vmlinux 0x22f51070 sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x22f5a3b6 get_unmapped_area -EXPORT_SYMBOL vmlinux 0x230d2355 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x231f9838 simple_statfs -EXPORT_SYMBOL vmlinux 0x233a19cd f_setown -EXPORT_SYMBOL vmlinux 0x23467e66 tcp_conn_request -EXPORT_SYMBOL vmlinux 0x235cb951 pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x2365ede7 __irq_regs -EXPORT_SYMBOL vmlinux 0x236c8c64 memcpy -EXPORT_SYMBOL vmlinux 0x2378289a neigh_changeaddr -EXPORT_SYMBOL vmlinux 0x23792d0a inet6_register_protosw -EXPORT_SYMBOL vmlinux 0x23816fd5 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x239285b9 inet6_protos -EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23c82926 eth_change_mtu -EXPORT_SYMBOL vmlinux 0x23d2db96 lockref_mark_dead -EXPORT_SYMBOL vmlinux 0x23d39eb5 dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0x23e97e24 ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x2400c383 xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x240db5be dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x242f3562 irq_subclass_register -EXPORT_SYMBOL vmlinux 0x2430378a tcp_check_req -EXPORT_SYMBOL vmlinux 0x2434fa11 noop_qdisc -EXPORT_SYMBOL vmlinux 0x2438387f tccb_add_dcw -EXPORT_SYMBOL vmlinux 0x2445b291 user_path_at_empty -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x2472188e __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x2477e332 sk_prot_clear_portaddr_nulls -EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf -EXPORT_SYMBOL vmlinux 0x24ce92d9 deactivate_locked_super -EXPORT_SYMBOL vmlinux 0x24d6722b kthread_bind -EXPORT_SYMBOL vmlinux 0x24dfd4bd tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x24eb0968 ccw_device_is_pathgroup -EXPORT_SYMBOL vmlinux 0x24f48502 scsi_dma_map -EXPORT_SYMBOL vmlinux 0x24fbd9cb airq_iv_release -EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function -EXPORT_SYMBOL vmlinux 0x25227fa3 down_read -EXPORT_SYMBOL vmlinux 0x25228412 param_ops_long -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x25a0034f tcp_release_cb -EXPORT_SYMBOL vmlinux 0x25abda14 blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0x25bbc103 __find_get_block -EXPORT_SYMBOL vmlinux 0x25cd7c0e neigh_resolve_output -EXPORT_SYMBOL vmlinux 0x25d21286 thaw_bdev -EXPORT_SYMBOL vmlinux 0x25d84c49 locks_remove_posix -EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25ec1b28 strlen -EXPORT_SYMBOL vmlinux 0x25f77e29 alloc_buffer_head -EXPORT_SYMBOL vmlinux 0x25fc0e75 tcp_prot -EXPORT_SYMBOL vmlinux 0x2602af70 __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x260d1d85 unload_nls -EXPORT_SYMBOL vmlinux 0x260e15d8 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x261484a8 sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux -EXPORT_SYMBOL vmlinux 0x2658cc84 sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x2683576b free_buffer_head -EXPORT_SYMBOL vmlinux 0x26ab88dd memcg_socket_limit_enabled -EXPORT_SYMBOL vmlinux 0x26d66e79 param_ops_short -EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min -EXPORT_SYMBOL vmlinux 0x26fa50c0 complete -EXPORT_SYMBOL vmlinux 0x270855a7 submit_bio_wait -EXPORT_SYMBOL vmlinux 0x2729dde2 pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0x276278c8 setattr_copy -EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x278e00c5 dm_get_device -EXPORT_SYMBOL vmlinux 0x27ac2b0a get_fs_type -EXPORT_SYMBOL vmlinux 0x27b60a2a page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27d937b9 forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x27e1a049 printk -EXPORT_SYMBOL vmlinux 0x280536fe pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x28343bad scnprintf -EXPORT_SYMBOL vmlinux 0x2836df2e inode_init_once -EXPORT_SYMBOL vmlinux 0x2843c643 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0x2885cce4 pci_get_slot -EXPORT_SYMBOL vmlinux 0x289425bc __sb_end_write -EXPORT_SYMBOL vmlinux 0x28a2b29f radix_tree_range_tag_if_tagged -EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x28b45824 ccw_device_start_key -EXPORT_SYMBOL vmlinux 0x28bead86 scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0x28dc108c xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x29061444 tcp_destroy_cgroup -EXPORT_SYMBOL vmlinux 0x29113992 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x2911e32e tty_lock -EXPORT_SYMBOL vmlinux 0x2932b22f __pci_register_driver -EXPORT_SYMBOL vmlinux 0x29391e7d vm_munmap -EXPORT_SYMBOL vmlinux 0x2944334c kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0x29769f1f dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x29789394 empty_zero_page -EXPORT_SYMBOL vmlinux 0x29a35189 mount_bdev -EXPORT_SYMBOL vmlinux 0x29bdc07d param_get_uint -EXPORT_SYMBOL vmlinux 0x29c1d1c4 tcp_seq_open -EXPORT_SYMBOL vmlinux 0x29c97d7e blk_queue_init_tags -EXPORT_SYMBOL vmlinux 0x29cc27c0 eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0x29dacbee nvm_erase_blk -EXPORT_SYMBOL vmlinux 0x29db5cd3 tcf_hash_check -EXPORT_SYMBOL vmlinux 0x29f8fbfb neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x2a114e1f open_check_o_direct -EXPORT_SYMBOL vmlinux 0x2a32fdc1 scsi_device_set_state -EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2a6f3dcd dev_printk -EXPORT_SYMBOL vmlinux 0x2a79a5f4 rwsem_down_write_failed -EXPORT_SYMBOL vmlinux 0x2a7cb937 md_unregister_thread -EXPORT_SYMBOL vmlinux 0x2a845a4f have_submounts -EXPORT_SYMBOL vmlinux 0x2a864464 ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x2a9bb5ee get_task_exe_file -EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy -EXPORT_SYMBOL vmlinux 0x2ab11881 pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0x2ac09dd5 __nla_put -EXPORT_SYMBOL vmlinux 0x2ac45901 pci_enable_msix -EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat -EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 -EXPORT_SYMBOL vmlinux 0x2b4ac0bf xfrm_state_insert -EXPORT_SYMBOL vmlinux 0x2b4ad559 skb_pad -EXPORT_SYMBOL vmlinux 0x2b728e57 pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency -EXPORT_SYMBOL vmlinux 0x2bb809fe register_key_type -EXPORT_SYMBOL vmlinux 0x2bc4cc37 dcb_setapp -EXPORT_SYMBOL vmlinux 0x2bd88320 pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0x2bd99df6 bio_add_page -EXPORT_SYMBOL vmlinux 0x2be54428 sock_no_sendpage -EXPORT_SYMBOL vmlinux 0x2c11fdb7 dev_addr_init -EXPORT_SYMBOL vmlinux 0x2c231c04 kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0x2c235b27 dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x2c29a995 __strnlen_user -EXPORT_SYMBOL vmlinux 0x2c2d58ed __insert_inode_hash -EXPORT_SYMBOL vmlinux 0x2c458e9c tcw_add_tidaw -EXPORT_SYMBOL vmlinux 0x2c59c16f inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x2c61b2a1 put_page -EXPORT_SYMBOL vmlinux 0x2c703690 __nlmsg_put -EXPORT_SYMBOL vmlinux 0x2c897734 tcw_get_tsb -EXPORT_SYMBOL vmlinux 0x2c8b3e4c tcp_req_err -EXPORT_SYMBOL vmlinux 0x2c950982 skb_push -EXPORT_SYMBOL vmlinux 0x2cb57659 param_ops_int -EXPORT_SYMBOL vmlinux 0x2cc51754 get_gendisk -EXPORT_SYMBOL vmlinux 0x2cd72826 ip_route_me_harder -EXPORT_SYMBOL vmlinux 0x2cd81918 kernel_accept -EXPORT_SYMBOL vmlinux 0x2cde1a9e sock_no_ioctl -EXPORT_SYMBOL vmlinux 0x2d016203 compat_sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x2d0adf83 bmap -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d466b14 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0x2d5528c9 sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x2d6e53b8 read_cache_pages -EXPORT_SYMBOL vmlinux 0x2db2c2ca fifo_set_limit -EXPORT_SYMBOL vmlinux 0x2dbb9241 ida_init -EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink -EXPORT_SYMBOL vmlinux 0x2de58ec0 inet_getname -EXPORT_SYMBOL vmlinux 0x2e001861 compat_ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x2e02c9b7 bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0x2e0d2f7f queue_work_on -EXPORT_SYMBOL vmlinux 0x2e1fc150 neigh_table_clear -EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies -EXPORT_SYMBOL vmlinux 0x2e593a27 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0x2e6540ca bdi_destroy -EXPORT_SYMBOL vmlinux 0x2e7d6b80 pagecache_write_end -EXPORT_SYMBOL vmlinux 0x2e839fc7 passthru_features_check -EXPORT_SYMBOL vmlinux 0x2e8536c5 d_alloc_name -EXPORT_SYMBOL vmlinux 0x2e8abdeb proc_douintvec -EXPORT_SYMBOL vmlinux 0x2e9267eb scsi_host_put -EXPORT_SYMBOL vmlinux 0x2ead0fb0 inet_dgram_connect -EXPORT_SYMBOL vmlinux 0x2eb9afe3 fd_install -EXPORT_SYMBOL vmlinux 0x2ed9a9c2 module_put -EXPORT_SYMBOL vmlinux 0x2ee133df netif_receive_skb -EXPORT_SYMBOL vmlinux 0x2ee3fe76 module_layout -EXPORT_SYMBOL vmlinux 0x2ee70f1c __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0x2ef5661d segment_modify_shared -EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0x2efabe42 sg_miter_skip -EXPORT_SYMBOL vmlinux 0x2efc102f tcw_set_data -EXPORT_SYMBOL vmlinux 0x2f03f4a7 simple_setattr -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource -EXPORT_SYMBOL vmlinux 0x2f293de9 request_key_async_with_auxdata -EXPORT_SYMBOL vmlinux 0x2f29dd86 skb_clone -EXPORT_SYMBOL vmlinux 0x2f3d9a47 seq_release_private -EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag -EXPORT_SYMBOL vmlinux 0x2f48e193 vmemmap -EXPORT_SYMBOL vmlinux 0x2f53be14 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0x2f5fe171 mutex_lock_killable -EXPORT_SYMBOL vmlinux 0x2f67d0fc compat_nf_getsockopt -EXPORT_SYMBOL vmlinux 0x2f6b0d13 kset_unregister -EXPORT_SYMBOL vmlinux 0x2f6cc33b pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x2f920baf blk_queue_dma_pad -EXPORT_SYMBOL vmlinux 0x2f92f658 ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0x2fa5a500 memcmp -EXPORT_SYMBOL vmlinux 0x2fb3750c on_each_cpu_mask -EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2fe3971c ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0x2ff07f69 elv_dispatch_sort -EXPORT_SYMBOL vmlinux 0x2ffffb6f _ebc_tolower -EXPORT_SYMBOL vmlinux 0x3009cc76 rtnl_notify -EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0x30418a2e pcie_set_readrq -EXPORT_SYMBOL vmlinux 0x3069b17a blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable -EXPORT_SYMBOL vmlinux 0x3083c253 ilookup5_nowait -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30d35c88 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0x30f46468 device_get_mac_address -EXPORT_SYMBOL vmlinux 0x31010eac __crypto_memneq -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x312a3451 dev_get_nest_level -EXPORT_SYMBOL vmlinux 0x313ed1f9 blk_init_queue_node -EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present -EXPORT_SYMBOL vmlinux 0x314da1dc generic_write_checks -EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear -EXPORT_SYMBOL vmlinux 0x31970557 nf_log_packet -EXPORT_SYMBOL vmlinux 0x321a43cb netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x321b982d idr_replace -EXPORT_SYMBOL vmlinux 0x3221bd3f raw3270_request_set_idal -EXPORT_SYMBOL vmlinux 0x32379298 netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x3237d878 rwsem_wake -EXPORT_SYMBOL vmlinux 0x3238a155 rename_lock -EXPORT_SYMBOL vmlinux 0x324555c1 pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0x324a50a7 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src -EXPORT_SYMBOL vmlinux 0x3275689f smp_ctl_set_bit -EXPORT_SYMBOL vmlinux 0x32977fa7 kill_pid -EXPORT_SYMBOL vmlinux 0x3297a155 __neigh_create -EXPORT_SYMBOL vmlinux 0x329a9400 scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x32a7429e jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0x32c6a2d8 _ebcasc_500 -EXPORT_SYMBOL vmlinux 0x32debb16 cpumask_next_and -EXPORT_SYMBOL vmlinux 0x32e9e0be path_is_under -EXPORT_SYMBOL vmlinux 0x32f9c768 unregister_external_irq -EXPORT_SYMBOL vmlinux 0x33133cba xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0x33216be9 rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0x33312ef7 pci_release_region -EXPORT_SYMBOL vmlinux 0x33519b7f register_quota_format -EXPORT_SYMBOL vmlinux 0x33660839 udp_proc_register -EXPORT_SYMBOL vmlinux 0x33780185 dcache_readdir -EXPORT_SYMBOL vmlinux 0x338bbef8 __ndelay -EXPORT_SYMBOL vmlinux 0x3392f334 blk_sync_queue -EXPORT_SYMBOL vmlinux 0x33ae432a __destroy_inode -EXPORT_SYMBOL vmlinux 0x33b1d02f dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0x33b2e8d7 ccw_device_set_online -EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x33ceb5bb netif_rx_ni -EXPORT_SYMBOL vmlinux 0x33f74de3 _ascebc_500 -EXPORT_SYMBOL vmlinux 0x341cbed2 cpu_present_mask -EXPORT_SYMBOL vmlinux 0x344adbd5 init_cdrom_command -EXPORT_SYMBOL vmlinux 0x34554242 set_device_ro -EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin -EXPORT_SYMBOL vmlinux 0x3467f44b xfrm_input -EXPORT_SYMBOL vmlinux 0x347013de nla_validate -EXPORT_SYMBOL vmlinux 0x34702202 sock_sendmsg -EXPORT_SYMBOL vmlinux 0x348af88f kill_block_super -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34a41273 mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0x34a8d940 dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0x34c0fff1 __scm_destroy -EXPORT_SYMBOL vmlinux 0x34dd164d md_set_array_sectors -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x34f592ce netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0x34fada2b raw3270_reset -EXPORT_SYMBOL vmlinux 0x350e9dc2 single_open -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x351bc32b md_register_thread -EXPORT_SYMBOL vmlinux 0x3558fa24 crc32_be -EXPORT_SYMBOL vmlinux 0x3559d5a6 bio_endio -EXPORT_SYMBOL vmlinux 0x355ac717 inet6_ioctl -EXPORT_SYMBOL vmlinux 0x3562aa9a tcp_gro_complete -EXPORT_SYMBOL vmlinux 0x3593cc69 d_tmpfile -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35b381b7 dentry_update_name_case -EXPORT_SYMBOL vmlinux 0x35c6d599 cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0x35ca2274 ilookup -EXPORT_SYMBOL vmlinux 0x35eb59fb tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0x35edf7c3 alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0x3602aba9 raw3270_register_notifier -EXPORT_SYMBOL vmlinux 0x362b2b82 dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0x36398710 free_netdev -EXPORT_SYMBOL vmlinux 0x36591d6c sock_create_lite -EXPORT_SYMBOL vmlinux 0x3666a412 inode_dio_wait -EXPORT_SYMBOL vmlinux 0x3678cb8c simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0x368af1c4 devm_memremap -EXPORT_SYMBOL vmlinux 0x36a575c0 acl_by_type -EXPORT_SYMBOL vmlinux 0x36ab603b __bio_clone_fast -EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc -EXPORT_SYMBOL vmlinux 0x36c93ef8 blk_end_request_cur -EXPORT_SYMBOL vmlinux 0x36e779d7 sock_wake_async -EXPORT_SYMBOL vmlinux 0x36ea076f qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0x36f583a9 unregister_key_type -EXPORT_SYMBOL vmlinux 0x3707e641 jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x3718c116 arch_lock_relax -EXPORT_SYMBOL vmlinux 0x3725ff77 scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x37703425 set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x3774c96c ida_simple_remove -EXPORT_SYMBOL vmlinux 0x378a80d3 __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0x379b0e64 vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37ce3354 put_io_context -EXPORT_SYMBOL vmlinux 0x37fa3d3f blk_delay_queue -EXPORT_SYMBOL vmlinux 0x37fec2b1 neigh_table_init -EXPORT_SYMBOL vmlinux 0x37ff4c06 copy_from_user_overflow -EXPORT_SYMBOL vmlinux 0x38017496 security_inode_permission -EXPORT_SYMBOL vmlinux 0x38197f27 __skb_get_hash_flowi6 -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x3820b649 drop_nlink -EXPORT_SYMBOL vmlinux 0x3834a94c dentry_open -EXPORT_SYMBOL vmlinux 0x383eb8c3 ccw_driver_register -EXPORT_SYMBOL vmlinux 0x384681d3 jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x384c68b5 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x385bc360 mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0x38759475 sk_reset_timer -EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x3890d431 netif_device_attach -EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list -EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38de42c9 blk_mq_map_queue -EXPORT_SYMBOL vmlinux 0x391367b2 sock_no_mmap -EXPORT_SYMBOL vmlinux 0x3928efe9 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x396d01a5 padata_set_cpumask -EXPORT_SYMBOL vmlinux 0x397cf0a1 param_set_ullong -EXPORT_SYMBOL vmlinux 0x398595ff dquot_drop -EXPORT_SYMBOL vmlinux 0x398d89e9 tcf_em_register -EXPORT_SYMBOL vmlinux 0x3990fc52 __tcf_hash_release -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x399d05b8 __wake_up_bit -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x3a466796 file_update_time -EXPORT_SYMBOL vmlinux 0x3a748cc9 dump_emit -EXPORT_SYMBOL vmlinux 0x3a8aa24d km_report -EXPORT_SYMBOL vmlinux 0x3a8e08bb itcw_add_dcw -EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region -EXPORT_SYMBOL vmlinux 0x3aa11bd1 _raw_read_lock_wait -EXPORT_SYMBOL vmlinux 0x3ab41b25 __copy_in_user -EXPORT_SYMBOL vmlinux 0x3acb0080 netlink_net_capable -EXPORT_SYMBOL vmlinux 0x3acd3bd7 eth_validate_addr -EXPORT_SYMBOL vmlinux 0x3b0d5a65 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x3b1c2a3d d_drop -EXPORT_SYMBOL vmlinux 0x3b3c5405 dquot_operations -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b7aa2f4 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0x3b9066bb genl_notify -EXPORT_SYMBOL vmlinux 0x3b9d19d6 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0x3ba5ef27 dquot_alloc -EXPORT_SYMBOL vmlinux 0x3ba6d3c4 mount_ns -EXPORT_SYMBOL vmlinux 0x3bc63e19 security_path_mknod -EXPORT_SYMBOL vmlinux 0x3bd58eb5 iov_iter_alignment -EXPORT_SYMBOL vmlinux 0x3c0b4eee __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0x3c281d23 netif_wake_subqueue -EXPORT_SYMBOL vmlinux 0x3c2a26aa compat_ip_getsockopt -EXPORT_SYMBOL vmlinux 0x3c306c1f tty_port_put -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c483012 radix_tree_delete -EXPORT_SYMBOL vmlinux 0x3c7c32be __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x3c7e513a skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull -EXPORT_SYMBOL vmlinux 0x3ca025fc scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0x3cbff3ce dmam_free_coherent -EXPORT_SYMBOL vmlinux 0x3cc3d20b tcp_init_sock -EXPORT_SYMBOL vmlinux 0x3cc6acbc __invalidate_device -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3ce4ffe3 dev_get_by_name -EXPORT_SYMBOL vmlinux 0x3d117a60 itcw_calc_size -EXPORT_SYMBOL vmlinux 0x3d1ac785 inet_listen -EXPORT_SYMBOL vmlinux 0x3d2aa9ae inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x3d2b8b98 tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x3d5977c7 padata_free -EXPORT_SYMBOL vmlinux 0x3dabf292 skb_checksum_help -EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3df53399 blk_put_queue -EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e016c91 mntput -EXPORT_SYMBOL vmlinux 0x3e2ee266 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x3e445905 km_policy_notify -EXPORT_SYMBOL vmlinux 0x3e71c640 scsi_host_get -EXPORT_SYMBOL vmlinux 0x3e73b974 get_task_io_context -EXPORT_SYMBOL vmlinux 0x3e82dd51 simple_dentry_operations -EXPORT_SYMBOL vmlinux 0x3e88e3b2 dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0x3e8f0e92 mb_cache_entry_release -EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0x3e937f5b console_stop -EXPORT_SYMBOL vmlinux 0x3e96f9a2 register_sysctl -EXPORT_SYMBOL vmlinux 0x3eba48f2 blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0x3ecd3b77 copy_page_from_iter -EXPORT_SYMBOL vmlinux 0x3ecf4382 cancel_dirty_page -EXPORT_SYMBOL vmlinux 0x3ed02927 blk_register_region -EXPORT_SYMBOL vmlinux 0x3ed7c92b read_code -EXPORT_SYMBOL vmlinux 0x3ee36557 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0x3eec9923 pci_unmap_rom -EXPORT_SYMBOL vmlinux 0x3f2286d5 napi_complete_done -EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f5bd66f textsearch_prepare -EXPORT_SYMBOL vmlinux 0x3f840675 find_inode_nowait -EXPORT_SYMBOL vmlinux 0x3fa432d5 rtnl_create_link -EXPORT_SYMBOL vmlinux 0x3fa913da strspn -EXPORT_SYMBOL vmlinux 0x3fb0b9e3 __udelay -EXPORT_SYMBOL vmlinux 0x3fb58b6d up -EXPORT_SYMBOL vmlinux 0x3fec048f sg_next -EXPORT_SYMBOL vmlinux 0x3ffce487 zero_fill_bio -EXPORT_SYMBOL vmlinux 0x40094aea cleancache_register_ops -EXPORT_SYMBOL vmlinux 0x400f9997 jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0x4020b901 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0x402b8281 __request_module -EXPORT_SYMBOL vmlinux 0x4048cbe2 ip6_xmit -EXPORT_SYMBOL vmlinux 0x405b5640 tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds -EXPORT_SYMBOL vmlinux 0x40937da4 vfs_statfs -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x409ba278 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x40a548e1 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40b97814 neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d3250b msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40e51eb7 param_set_invbool -EXPORT_SYMBOL vmlinux 0x40eaa0d7 __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x40ef71ec blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x419e11c2 tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x41b55d6d __starget_for_each_device -EXPORT_SYMBOL vmlinux 0x41baf194 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0x41c923ef netdev_state_change -EXPORT_SYMBOL vmlinux 0x41d6fdd6 clear_inode -EXPORT_SYMBOL vmlinux 0x41df696c wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x41f09205 netpoll_cleanup -EXPORT_SYMBOL vmlinux 0x41fb04f1 netpoll_print_options -EXPORT_SYMBOL vmlinux 0x42039f21 dev_load -EXPORT_SYMBOL vmlinux 0x4207f8eb netpoll_send_skb_on_dev -EXPORT_SYMBOL vmlinux 0x420d0f4f set_anon_super -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x4221fc65 __neigh_event_send -EXPORT_SYMBOL vmlinux 0x422454a1 sock_update_memcg -EXPORT_SYMBOL vmlinux 0x422e667d bio_integrity_trim -EXPORT_SYMBOL vmlinux 0x423c9668 tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x423d8aa3 blk_run_queue -EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x424c3c26 dev_notice -EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x425e25c3 touch_buffer -EXPORT_SYMBOL vmlinux 0x42711898 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x4274fa05 copy_from_iter -EXPORT_SYMBOL vmlinux 0x428f432e inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0x42aad64b blk_alloc_queue_node -EXPORT_SYMBOL vmlinux 0x42b071d5 get_mm_exe_file -EXPORT_SYMBOL vmlinux 0x42c42d58 sock_get_timestampns -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x431540ce lro_receive_skb -EXPORT_SYMBOL vmlinux 0x4352665e sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x43a4938f vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x43bdfa20 console_irq -EXPORT_SYMBOL vmlinux 0x43c486d4 netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x43cf3bc3 dql_completed -EXPORT_SYMBOL vmlinux 0x43f000a4 filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x440bc5fb inet_del_offload -EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed -EXPORT_SYMBOL vmlinux 0x441b6099 read_dev_sector -EXPORT_SYMBOL vmlinux 0x441bb17f posix_unblock_lock -EXPORT_SYMBOL vmlinux 0x441df6ad truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0x443fe4a7 pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0x44511fce simple_transaction_get -EXPORT_SYMBOL vmlinux 0x44551567 nvm_unregister_target -EXPORT_SYMBOL vmlinux 0x44658e27 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x44a0bd4c textsearch_register -EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x44b2e1ca pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0x44d21934 jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0x44dd87bc mutex_unlock -EXPORT_SYMBOL vmlinux 0x44e8b3be inet6_del_protocol -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x450ff914 inetdev_by_index -EXPORT_SYMBOL vmlinux 0x4510c489 sock_get_timestamp -EXPORT_SYMBOL vmlinux 0x4534f0db netif_device_detach -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x45475242 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0x454ab205 generic_setlease -EXPORT_SYMBOL vmlinux 0x455e7557 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0x4566c43c sock_no_socketpair -EXPORT_SYMBOL vmlinux 0x4568220e sock_efree -EXPORT_SYMBOL vmlinux 0x45708ce9 cdrom_release -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x457f0855 inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0x45a5fa13 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource -EXPORT_SYMBOL vmlinux 0x45c178e7 sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0x45c92313 VMALLOC_END -EXPORT_SYMBOL vmlinux 0x45e5e243 pcie_get_minimum_link -EXPORT_SYMBOL vmlinux 0x46013e72 wait_for_completion_io -EXPORT_SYMBOL vmlinux 0x46066e5b perf_pmu_name -EXPORT_SYMBOL vmlinux 0x460fc690 icmpv6_send -EXPORT_SYMBOL vmlinux 0x4610daf2 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0x46497d05 tty_hangup -EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x46824d32 netdev_all_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x46b67693 hex2bin -EXPORT_SYMBOL vmlinux 0x46c7e75b vm_insert_mixed -EXPORT_SYMBOL vmlinux 0x46cc96f1 init_net -EXPORT_SYMBOL vmlinux 0x46d59f7d smp_cpu_mt_shift -EXPORT_SYMBOL vmlinux 0x46d9d796 scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x46e34b15 tcp_make_synack -EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg -EXPORT_SYMBOL vmlinux 0x47028988 pci_disable_link_state -EXPORT_SYMBOL vmlinux 0x47161e30 set_bh_page -EXPORT_SYMBOL vmlinux 0x473f942a kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x474162d4 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x474462cc __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x4748acb3 nf_log_set -EXPORT_SYMBOL vmlinux 0x4753ed27 sock_wmalloc -EXPORT_SYMBOL vmlinux 0x476084c3 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x47730ed9 vmap -EXPORT_SYMBOL vmlinux 0x477a08e0 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit -EXPORT_SYMBOL vmlinux 0x47ac6fee seq_open_private -EXPORT_SYMBOL vmlinux 0x47d949b8 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x48061e6d dev_change_carrier -EXPORT_SYMBOL vmlinux 0x48150a7d security_path_link -EXPORT_SYMBOL vmlinux 0x4823819e raw3270_buffer_address -EXPORT_SYMBOL vmlinux 0x48244fba scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0x487c5a45 lwtunnel_fill_encap -EXPORT_SYMBOL vmlinux 0x48931f51 __netif_schedule -EXPORT_SYMBOL vmlinux 0x48a1a86e __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x48aa94c7 flow_cache_init -EXPORT_SYMBOL vmlinux 0x48b50176 dev_addr_add -EXPORT_SYMBOL vmlinux 0x48b99bb8 __lock_buffer -EXPORT_SYMBOL vmlinux 0x48be1db0 jbd2_journal_file_inode -EXPORT_SYMBOL vmlinux 0x48cab08f generic_listxattr -EXPORT_SYMBOL vmlinux 0x48dbd7d2 inet_frag_kill -EXPORT_SYMBOL vmlinux 0x48ebef66 dquot_get_state -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x4907a56d wait_for_completion -EXPORT_SYMBOL vmlinux 0x4924c850 _raw_write_trylock_retry -EXPORT_SYMBOL vmlinux 0x49536f3c dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init -EXPORT_SYMBOL vmlinux 0x495da0ec kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0x49602461 scsi_host_lookup -EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data -EXPORT_SYMBOL vmlinux 0x496218d2 iput -EXPORT_SYMBOL vmlinux 0x49684279 tcp_sendpage -EXPORT_SYMBOL vmlinux 0x496d6be4 n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0x4970ccc5 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x4974d7ed __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x499bf627 bio_integrity_endio -EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x49b4e398 insert_inode_locked -EXPORT_SYMBOL vmlinux 0x49be2600 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x49d8c885 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many -EXPORT_SYMBOL vmlinux 0x49f885b4 flush_old_exec -EXPORT_SYMBOL vmlinux 0x4a0c322d simple_fill_super -EXPORT_SYMBOL vmlinux 0x4a0e7944 key_validate -EXPORT_SYMBOL vmlinux 0x4a3191c7 sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0x4a34e379 genlmsg_put -EXPORT_SYMBOL vmlinux 0x4a4a1e30 vfs_readf -EXPORT_SYMBOL vmlinux 0x4a4e5148 tcp_splice_read -EXPORT_SYMBOL vmlinux 0x4a638c93 nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x4a87bb72 key_put -EXPORT_SYMBOL vmlinux 0x4a9dc381 pci_set_power_state -EXPORT_SYMBOL vmlinux 0x4ab6bd93 gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk -EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource -EXPORT_SYMBOL vmlinux 0x4afc1b08 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize -EXPORT_SYMBOL vmlinux 0x4b1c7a2a generic_setxattr -EXPORT_SYMBOL vmlinux 0x4b39a1c8 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x4b5814ef kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b616e11 del_gendisk -EXPORT_SYMBOL vmlinux 0x4b73fa6d linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x4b74c617 skb_copy_bits -EXPORT_SYMBOL vmlinux 0x4b7b3804 neigh_direct_output -EXPORT_SYMBOL vmlinux 0x4b7d59e5 jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0x4b97eebf truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0x4baedc91 parent_mem_cgroup -EXPORT_SYMBOL vmlinux 0x4bb3ee50 file_remove_privs -EXPORT_SYMBOL vmlinux 0x4bde07f4 crypto_sha1_update -EXPORT_SYMBOL vmlinux 0x4be3d433 __quota_error -EXPORT_SYMBOL vmlinux 0x4be7d2a0 xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0x4c0a548f blkdev_put -EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf -EXPORT_SYMBOL vmlinux 0x4c3edbb0 __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x4c4c956e nla_memcmp -EXPORT_SYMBOL vmlinux 0x4c4d2148 generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x4c564333 mem_cgroup_begin_page_stat -EXPORT_SYMBOL vmlinux 0x4c8a74c0 node_data -EXPORT_SYMBOL vmlinux 0x4cbb16de blk_get_queue -EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval -EXPORT_SYMBOL vmlinux 0x4ce6d8a1 tty_hung_up_p -EXPORT_SYMBOL vmlinux 0x4cf7a285 skb_free_datagram -EXPORT_SYMBOL vmlinux 0x4d030d7c done_path_create -EXPORT_SYMBOL vmlinux 0x4d06037e bio_unmap_user -EXPORT_SYMBOL vmlinux 0x4d1c4d14 __devcgroup_inode_permission -EXPORT_SYMBOL vmlinux 0x4d23cfba pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0x4d3432bd sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0x4d3b2f47 devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0x4d49c8b0 __debug_sprintf_exception -EXPORT_SYMBOL vmlinux 0x4d4b5757 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0x4d50d70c udp_prot -EXPORT_SYMBOL vmlinux 0x4d673f0a scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x4d87dc28 __devm_request_region -EXPORT_SYMBOL vmlinux 0x4d891249 pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0x4d912d84 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4dd8e1a7 pcim_enable_device -EXPORT_SYMBOL vmlinux 0x4dda726b match_strlcpy -EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x4dea1053 memchr -EXPORT_SYMBOL vmlinux 0x4dea9faa clear_nlink -EXPORT_SYMBOL vmlinux 0x4dec70ed tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0x4dedb0e7 __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse -EXPORT_SYMBOL vmlinux 0x4e247984 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x4e2bd2af scsi_host_set_state -EXPORT_SYMBOL vmlinux 0x4e337467 pci_dev_get -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e437e78 blk_queue_softirq_done -EXPORT_SYMBOL vmlinux 0x4e506395 nf_setsockopt -EXPORT_SYMBOL vmlinux 0x4e5fd6c7 dst_destroy -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e8029bf dst_discard_out -EXPORT_SYMBOL vmlinux 0x4e9a7bd8 xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x4ebd3b23 sget -EXPORT_SYMBOL vmlinux 0x4ef4f163 tccb_init -EXPORT_SYMBOL vmlinux 0x4effe09a vfs_unlink -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f26ab82 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0x4f28f880 simple_rmdir -EXPORT_SYMBOL vmlinux 0x4f2cd1b5 __cpcmd -EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse -EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday -EXPORT_SYMBOL vmlinux 0x4f79dd6e nla_reserve -EXPORT_SYMBOL vmlinux 0x4fcf773a kernel_connect -EXPORT_SYMBOL vmlinux 0x4fe29a3a param_set_short -EXPORT_SYMBOL vmlinux 0x4fe4d0f3 bio_split -EXPORT_SYMBOL vmlinux 0x4fe92707 __sb_start_write -EXPORT_SYMBOL vmlinux 0x50068f8c scsi_device_put -EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security -EXPORT_SYMBOL vmlinux 0x5023794d raw3270_activate_view -EXPORT_SYMBOL vmlinux 0x50328035 dev_get_flags -EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x50720c5f snprintf -EXPORT_SYMBOL vmlinux 0x50730f9a kthread_create_on_node -EXPORT_SYMBOL vmlinux 0x509ba10a make_kprojid -EXPORT_SYMBOL vmlinux 0x50ba769a kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0x50c2eebe kernel_bind -EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x50e00ef1 set_create_files_as -EXPORT_SYMBOL vmlinux 0x510c2535 xz_dec_run -EXPORT_SYMBOL vmlinux 0x51164ad9 cmdline_parts_set -EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0x512d43cf dev_open -EXPORT_SYMBOL vmlinux 0x513598c9 netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x51759be2 tty_unlock -EXPORT_SYMBOL vmlinux 0x5191efd7 seq_puts -EXPORT_SYMBOL vmlinux 0x51971218 prepare_binprm -EXPORT_SYMBOL vmlinux 0x51af468c bio_uncopy_user -EXPORT_SYMBOL vmlinux 0x51b5f2dc tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0x51c3c0e4 dm_ratelimit_state -EXPORT_SYMBOL vmlinux 0x51d3c718 mount_pseudo -EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str -EXPORT_SYMBOL vmlinux 0x5217c34e scsi_device_get -EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0x522834b0 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0x523bc120 trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x526ebc6e netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x52796b92 dget_parent -EXPORT_SYMBOL vmlinux 0x528e49c1 skb_copy_expand -EXPORT_SYMBOL vmlinux 0x529ccf70 netif_napi_add -EXPORT_SYMBOL vmlinux 0x52a04278 simple_readpage -EXPORT_SYMBOL vmlinux 0x52e4e723 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x532707dc generic_write_end -EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x53748dad request_key -EXPORT_SYMBOL vmlinux 0x538c9939 __generic_file_fsync -EXPORT_SYMBOL vmlinux 0x539234b3 netdev_master_upper_dev_link_private -EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x53a79551 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0x53a97537 bitmap_startwrite -EXPORT_SYMBOL vmlinux 0x53b6fc9a iterate_mounts -EXPORT_SYMBOL vmlinux 0x53d02b78 netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0x53f04062 __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0x53f568ce __pagevec_lru_add -EXPORT_SYMBOL vmlinux 0x540862e2 diag14 -EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x541dea16 pci_bus_type -EXPORT_SYMBOL vmlinux 0x542a6190 cont_write_begin -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x5484a5b8 remap_vmalloc_range_partial -EXPORT_SYMBOL vmlinux 0x54a3c8ef skb_find_text -EXPORT_SYMBOL vmlinux 0x54a4ea6f printk_emit -EXPORT_SYMBOL vmlinux 0x54a8b022 scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul -EXPORT_SYMBOL vmlinux 0x54ae5706 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu -EXPORT_SYMBOL vmlinux 0x5542a8c3 copy_page_to_iter -EXPORT_SYMBOL vmlinux 0x555c86f0 posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0x55678b4b bsearch -EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat -EXPORT_SYMBOL vmlinux 0x55a3f3e0 sclp_add_request -EXPORT_SYMBOL vmlinux 0x55b484b1 iget5_locked -EXPORT_SYMBOL vmlinux 0x55bdfa0b scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x55c51b36 dquot_quota_off -EXPORT_SYMBOL vmlinux 0x55fbaf1d smsg_unregister_callback -EXPORT_SYMBOL vmlinux 0x560323dd tso_build_data -EXPORT_SYMBOL vmlinux 0x56050399 qdisc_reset -EXPORT_SYMBOL vmlinux 0x560b168d diag_stat_inc -EXPORT_SYMBOL vmlinux 0x5614474c blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x562df40e alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x56609346 udp_seq_open -EXPORT_SYMBOL vmlinux 0x56730bc5 tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x567fa5b9 dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x5691d55f inet6_unregister_icmp_sender -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56d1a7d2 blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0x56d69cb2 __register_binfmt -EXPORT_SYMBOL vmlinux 0x56fdb906 __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x571cf392 sk_stop_timer -EXPORT_SYMBOL vmlinux 0x572db28d __getblk_slow -EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt -EXPORT_SYMBOL vmlinux 0x57381104 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x576a276c lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x576ed4e0 netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x577560f6 dev_deactivate -EXPORT_SYMBOL vmlinux 0x579ee481 lwtunnel_build_state -EXPORT_SYMBOL vmlinux 0x57a8dcc8 __do_once_done -EXPORT_SYMBOL vmlinux 0x57a96fde arp_xmit -EXPORT_SYMBOL vmlinux 0x57abf846 pci_save_state -EXPORT_SYMBOL vmlinux 0x57d3a3c9 genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0x57f4b291 skb_unlink -EXPORT_SYMBOL vmlinux 0x580285de poll_schedule_timeout -EXPORT_SYMBOL vmlinux 0x580b6ea7 sock_no_shutdown -EXPORT_SYMBOL vmlinux 0x581787e7 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x581959f3 down_write_trylock -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x5823cdd3 completion_done -EXPORT_SYMBOL vmlinux 0x5825c3a9 jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x5847b8af tcw_finalize -EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat -EXPORT_SYMBOL vmlinux 0x587922ed __secpath_destroy -EXPORT_SYMBOL vmlinux 0x5885b2a6 scsi_execute_req_flags -EXPORT_SYMBOL vmlinux 0x5888b978 xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58cd1b54 string_escape_mem -EXPORT_SYMBOL vmlinux 0x58cd4b98 compat_sock_get_timestampns -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x590b3d86 param_set_byte -EXPORT_SYMBOL vmlinux 0x5923ed7d dev_warn -EXPORT_SYMBOL vmlinux 0x59320501 eth_type_trans -EXPORT_SYMBOL vmlinux 0x594650b5 xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x5965734f __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x59a373a8 scsi_block_requests -EXPORT_SYMBOL vmlinux 0x59bff177 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0x59df5d0a vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0x5a07af71 mb_cache_entry_alloc -EXPORT_SYMBOL vmlinux 0x5a34a45c __kmalloc -EXPORT_SYMBOL vmlinux 0x5a595816 kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x5a5e7ea3 simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x5a6ad224 seq_read -EXPORT_SYMBOL vmlinux 0x5a92fdc9 alloc_fcdev -EXPORT_SYMBOL vmlinux 0x5a96dfd2 pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x5a9e6c4f ccw_device_start_timeout_key -EXPORT_SYMBOL vmlinux 0x5aaf2f2c skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x5ab7a5e4 netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0x5aca1e3a pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x5acc41a2 arp_tbl -EXPORT_SYMBOL vmlinux 0x5ace9233 fget_raw -EXPORT_SYMBOL vmlinux 0x5ad4417a sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0x5ae4b671 sock_register -EXPORT_SYMBOL vmlinux 0x5aeeadb0 ip_defrag -EXPORT_SYMBOL vmlinux 0x5b07d834 fasync_helper -EXPORT_SYMBOL vmlinux 0x5b1b95eb bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0x5b1e4619 udplite_prot -EXPORT_SYMBOL vmlinux 0x5b28bf5d memremap -EXPORT_SYMBOL vmlinux 0x5b361b7f dquot_quota_on -EXPORT_SYMBOL vmlinux 0x5b389e9c pci_reenable_device -EXPORT_SYMBOL vmlinux 0x5b56cf61 sock_from_file -EXPORT_SYMBOL vmlinux 0x5b604bd1 segment_type -EXPORT_SYMBOL vmlinux 0x5b8a4432 inode_init_owner -EXPORT_SYMBOL vmlinux 0x5b9671e6 inet6_release -EXPORT_SYMBOL vmlinux 0x5ba01fc6 mutex_trylock -EXPORT_SYMBOL vmlinux 0x5bae8b07 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0x5bb74cfa trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0x5bbff0f8 gen_new_estimator -EXPORT_SYMBOL vmlinux 0x5bcb3b82 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x5bd5d1f9 free_page_put_link -EXPORT_SYMBOL vmlinux 0x5c0ac7bc blk_queue_make_request -EXPORT_SYMBOL vmlinux 0x5c27c8ca padata_stop -EXPORT_SYMBOL vmlinux 0x5c2a933b pci_set_dma_seg_boundary -EXPORT_SYMBOL vmlinux 0x5c347c44 padata_alloc -EXPORT_SYMBOL vmlinux 0x5c79489d kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0x5c8672f9 padata_do_parallel -EXPORT_SYMBOL vmlinux 0x5c8c2261 filemap_write_and_wait -EXPORT_SYMBOL vmlinux 0x5cad5048 raw3270_deactivate_view -EXPORT_SYMBOL vmlinux 0x5cb4bef9 __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0x5cbbf14b sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0x5cc32bdc bitmap_copy_le -EXPORT_SYMBOL vmlinux 0x5ce24b2a __inet_stream_connect -EXPORT_SYMBOL vmlinux 0x5d10e17d vfs_iter_write -EXPORT_SYMBOL vmlinux 0x5d11d95c trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x5d1bd4ae sk_alloc -EXPORT_SYMBOL vmlinux 0x5d1f5d80 pci_find_capability -EXPORT_SYMBOL vmlinux 0x5d34530a key_unlink -EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain -EXPORT_SYMBOL vmlinux 0x5d914007 do_splice_to -EXPORT_SYMBOL vmlinux 0x5d9c3856 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0x5da7e12f scsi_ioctl_reset -EXPORT_SYMBOL vmlinux 0x5dbbe98e memmove -EXPORT_SYMBOL vmlinux 0x5dc0f338 diag_stat_inc_norecursion -EXPORT_SYMBOL vmlinux 0x5dd1b022 register_gifconf -EXPORT_SYMBOL vmlinux 0x5de1ca19 lg_local_lock_cpu -EXPORT_SYMBOL vmlinux 0x5e84ced0 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0x5e86171d raw3270_unregister_notifier -EXPORT_SYMBOL vmlinux 0x5e89b4ce dev_base_lock -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ee4694b skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x5efffd12 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 -EXPORT_SYMBOL vmlinux 0x5f0911e1 __pci_enable_wake -EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f2f706c tcp_connect -EXPORT_SYMBOL vmlinux 0x5f3422d8 netif_napi_del -EXPORT_SYMBOL vmlinux 0x5f3549bd create_empty_buffers -EXPORT_SYMBOL vmlinux 0x5f4b2de8 cio_irb -EXPORT_SYMBOL vmlinux 0x5f5b5a82 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x5f778261 raw3270_request_alloc -EXPORT_SYMBOL vmlinux 0x5f7ff16d n_tty_compat_ioctl_helper -EXPORT_SYMBOL vmlinux 0x5f8fe173 prepare_to_wait -EXPORT_SYMBOL vmlinux 0x5fb4d97c tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x5fc29440 __brelse -EXPORT_SYMBOL vmlinux 0x5fcb0115 locks_copy_lock -EXPORT_SYMBOL vmlinux 0x5fd2298e strnstr -EXPORT_SYMBOL vmlinux 0x5fd3e366 seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat -EXPORT_SYMBOL vmlinux 0x5ffaf2de arch_spin_trylock_retry -EXPORT_SYMBOL vmlinux 0x6000d77d filemap_map_pages -EXPORT_SYMBOL vmlinux 0x6004e52d xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool -EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x606cfe37 csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number -EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector -EXPORT_SYMBOL vmlinux 0x60972558 ip6_frag_init -EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60a18df2 __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0x60c92003 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x60df724a pci_get_subsys -EXPORT_SYMBOL vmlinux 0x61025180 skb_tx_error -EXPORT_SYMBOL vmlinux 0x6102fac5 xfrm_state_update -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x6136a0fc pci_enable_msi_range -EXPORT_SYMBOL vmlinux 0x61414510 blk_complete_request -EXPORT_SYMBOL vmlinux 0x6147ee4d xfrm_init_state -EXPORT_SYMBOL vmlinux 0x614bb773 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x614d095c wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0x615cce08 request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x616a5287 bio_clone_fast -EXPORT_SYMBOL vmlinux 0x61b0582d param_set_bint -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61b93212 mod_virt_timer_periodic -EXPORT_SYMBOL vmlinux 0x61bf43f5 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0x61d45e70 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x61d588cf tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0x61dfae64 rwsem_downgrade_wake -EXPORT_SYMBOL vmlinux 0x61e34caa skb_put -EXPORT_SYMBOL vmlinux 0x61e9ef02 tcf_exts_change -EXPORT_SYMBOL vmlinux 0x61f68cb5 lwtunnel_encap_add_ops -EXPORT_SYMBOL vmlinux 0x62236ec3 udp_disconnect -EXPORT_SYMBOL vmlinux 0x6225637e md5_transform -EXPORT_SYMBOL vmlinux 0x622675da send_sig -EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x623e239b iget_failed -EXPORT_SYMBOL vmlinux 0x623f32ae __alloc_pages_nodemask -EXPORT_SYMBOL vmlinux 0x62477a76 vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x6248b324 security_path_rmdir -EXPORT_SYMBOL vmlinux 0x624b8254 ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0x6254c5f3 dquot_initialize -EXPORT_SYMBOL vmlinux 0x6265e7dc scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x626988be tty_name -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x628151cd sync_filesystem -EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x6297b859 path_noexec -EXPORT_SYMBOL vmlinux 0x629cf6f9 proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0x63043335 read_cache_page -EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled -EXPORT_SYMBOL vmlinux 0x631aed69 softnet_data -EXPORT_SYMBOL vmlinux 0x6340cc78 dev_emerg -EXPORT_SYMBOL vmlinux 0x634bec88 netdev_update_features -EXPORT_SYMBOL vmlinux 0x63534c3c inet_frags_exit_net -EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63ab3b8f dns_query -EXPORT_SYMBOL vmlinux 0x63bb8c48 __inode_add_bytes -EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63f620c5 read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x6457cfdf sock_no_bind -EXPORT_SYMBOL vmlinux 0x64618551 generic_removexattr -EXPORT_SYMBOL vmlinux 0x6479f39b eth_mac_addr -EXPORT_SYMBOL vmlinux 0x648cd9c5 kfree_skb -EXPORT_SYMBOL vmlinux 0x64944e69 xfrm_register_type -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x64a52473 tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0x64b1ca38 security_path_symlink -EXPORT_SYMBOL vmlinux 0x64cf2e04 tcp_proc_unregister -EXPORT_SYMBOL vmlinux 0x64d2064f nvm_register_target -EXPORT_SYMBOL vmlinux 0x64eb0b37 pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x64fa3ce1 padata_do_serial -EXPORT_SYMBOL vmlinux 0x651a4139 test_taint -EXPORT_SYMBOL vmlinux 0x65349f5a xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x658bc919 scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0x658cd2bc d_add_ci -EXPORT_SYMBOL vmlinux 0x65c393d5 configfs_register_group -EXPORT_SYMBOL vmlinux 0x65cf1278 __seq_open_private -EXPORT_SYMBOL vmlinux 0x65daa364 tcw_set_tsb -EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65e5d5bd rt6_lookup -EXPORT_SYMBOL vmlinux 0x65fa44c4 simple_getattr -EXPORT_SYMBOL vmlinux 0x66009729 truncate_pagecache -EXPORT_SYMBOL vmlinux 0x6606c88c xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0x661f8714 generic_getxattr -EXPORT_SYMBOL vmlinux 0x66207302 pci_iounmap -EXPORT_SYMBOL vmlinux 0x66273575 dev_uc_flush -EXPORT_SYMBOL vmlinux 0x663f6476 debug_dflt_header_fn -EXPORT_SYMBOL vmlinux 0x6640479d xfrm_unregister_mode -EXPORT_SYMBOL vmlinux 0x6655b29e prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x66aa4e75 __mutex_init -EXPORT_SYMBOL vmlinux 0x66b255d4 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x66b4972f put_tty_driver -EXPORT_SYMBOL vmlinux 0x66e69897 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0x67059dc2 napi_gro_flush -EXPORT_SYMBOL vmlinux 0x6711216c nvm_dev_dma_alloc -EXPORT_SYMBOL vmlinux 0x671894ad bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x672144bd strlcpy -EXPORT_SYMBOL vmlinux 0x6724e119 crc32_le -EXPORT_SYMBOL vmlinux 0x67277bf2 bio_alloc_pages -EXPORT_SYMBOL vmlinux 0x674b9181 tcp_filter -EXPORT_SYMBOL vmlinux 0x67678cbf udp_add_offload -EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create -EXPORT_SYMBOL vmlinux 0x67749e06 get_io_context -EXPORT_SYMBOL vmlinux 0x677e5179 kernel_param_lock -EXPORT_SYMBOL vmlinux 0x6787d516 submit_bh -EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios -EXPORT_SYMBOL vmlinux 0x67b5d0b5 generic_perform_write -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67ca46fa locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x6820d52d iucv_root -EXPORT_SYMBOL vmlinux 0x685aa4da bio_integrity_free -EXPORT_SYMBOL vmlinux 0x686c046e d_path -EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x68d4b618 tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0x68e62855 __blk_end_request -EXPORT_SYMBOL vmlinux 0x68fb52e4 xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0x6920401b bprm_change_interp -EXPORT_SYMBOL vmlinux 0x6921c84c padata_alloc_possible -EXPORT_SYMBOL vmlinux 0x6955bcbe clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x69622a5d sock_no_getsockopt -EXPORT_SYMBOL vmlinux 0x696533c8 ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0x6986303d security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource -EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint -EXPORT_SYMBOL vmlinux 0x69d0a4dc netdev_notice -EXPORT_SYMBOL vmlinux 0x69dc8972 tty_unthrottle -EXPORT_SYMBOL vmlinux 0x69fc7077 page_readlink -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a070d42 udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0x6a0858b0 blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0x6a157381 eth_gro_complete -EXPORT_SYMBOL vmlinux 0x6a260343 devm_kvasprintf -EXPORT_SYMBOL vmlinux 0x6a2f0c55 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x6a520bb4 __scsi_alloc_queue -EXPORT_SYMBOL vmlinux 0x6a5b5bad d_set_fallthru -EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask -EXPORT_SYMBOL vmlinux 0x6a707672 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable -EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x6ad2fd6a scsi_report_opcode -EXPORT_SYMBOL vmlinux 0x6ad5ae0e tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x6adc2b04 rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x6af6395e jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0x6afeb5cc tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0x6b02f090 vfs_rmdir -EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname -EXPORT_SYMBOL vmlinux 0x6b1c1a8c iget_locked -EXPORT_SYMBOL vmlinux 0x6b29937b skb_vlan_push -EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b655b2f __bforget -EXPORT_SYMBOL vmlinux 0x6b68f902 pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0x6b6df279 add_disk -EXPORT_SYMBOL vmlinux 0x6b7450dd scsi_ioctl -EXPORT_SYMBOL vmlinux 0x6b83a313 rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0x6b933eb1 prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bc7c311 kmalloc_order -EXPORT_SYMBOL vmlinux 0x6bd1afcd netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x6bdb4981 jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x6be15d2c wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0x6be2fa64 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x6bf5019f follow_down -EXPORT_SYMBOL vmlinux 0x6bfa7257 padata_register_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer -EXPORT_SYMBOL vmlinux 0x6c0ef8c9 configfs_unregister_default_group -EXPORT_SYMBOL vmlinux 0x6c254aba vm_iomap_memory -EXPORT_SYMBOL vmlinux 0x6c3038b2 sk_wait_data -EXPORT_SYMBOL vmlinux 0x6c4026e6 dquot_acquire -EXPORT_SYMBOL vmlinux 0x6c440651 init_virt_timer -EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat -EXPORT_SYMBOL vmlinux 0x6c69cd3e ip_do_fragment -EXPORT_SYMBOL vmlinux 0x6c6bde69 md_flush_request -EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min -EXPORT_SYMBOL vmlinux 0x6c766d3d pci_disable_msix -EXPORT_SYMBOL vmlinux 0x6c884b2d napi_consume_skb -EXPORT_SYMBOL vmlinux 0x6c905f1b sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0x6c9b1034 nf_hook_slow -EXPORT_SYMBOL vmlinux 0x6ca00e42 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x6cea30b1 blk_queue_invalidate_tags -EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x6d1ea6ec strlcat -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d2db64d jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x6d4577ae vfs_write -EXPORT_SYMBOL vmlinux 0x6d509146 tcw_get_intrg -EXPORT_SYMBOL vmlinux 0x6d658ab2 get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x6d79eea0 blk_rq_init -EXPORT_SYMBOL vmlinux 0x6d9288d2 idr_for_each -EXPORT_SYMBOL vmlinux 0x6dabc5f5 vfs_readv -EXPORT_SYMBOL vmlinux 0x6dac0480 ip_setsockopt -EXPORT_SYMBOL vmlinux 0x6dc8fe4d blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0x6ddca21d down_trylock -EXPORT_SYMBOL vmlinux 0x6ddd4934 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0x6de4dd3c account_page_dirtied -EXPORT_SYMBOL vmlinux 0x6dec6ebf d_set_d_op -EXPORT_SYMBOL vmlinux 0x6dee2676 d_instantiate_no_diralias -EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6dff0fd3 page_put_link -EXPORT_SYMBOL vmlinux 0x6dffc5fe nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0x6e00700b vfs_create -EXPORT_SYMBOL vmlinux 0x6e00b8cb _ebcasc -EXPORT_SYMBOL vmlinux 0x6e2f30dd jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e72de2a trace_print_array_seq -EXPORT_SYMBOL vmlinux 0x6e7f0fd2 cmdline_parts_parse -EXPORT_SYMBOL vmlinux 0x6e828aad percpu_counter_set -EXPORT_SYMBOL vmlinux 0x6e8e8df7 proc_set_user -EXPORT_SYMBOL vmlinux 0x6e947306 config_item_set_name -EXPORT_SYMBOL vmlinux 0x6e9ad290 cpu_have_feature -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6eab74d9 d_alloc -EXPORT_SYMBOL vmlinux 0x6ec7df91 __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0x6ecaae8e pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x6ee76261 md_write_start -EXPORT_SYMBOL vmlinux 0x6eef354a ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x6f1a259c dev_set_mtu -EXPORT_SYMBOL vmlinux 0x6f200b03 tcw_set_intrg -EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash -EXPORT_SYMBOL vmlinux 0x6f3ec4a3 nvm_submit_ppa -EXPORT_SYMBOL vmlinux 0x6f4afc3f iov_iter_npages -EXPORT_SYMBOL vmlinux 0x6f5429a9 blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x6f5ef93d memchr_inv -EXPORT_SYMBOL vmlinux 0x6f63f154 unmap_underlying_metadata -EXPORT_SYMBOL vmlinux 0x6f818831 security_file_permission -EXPORT_SYMBOL vmlinux 0x6f915271 airq_iv_create -EXPORT_SYMBOL vmlinux 0x6f9ae7c3 inc_nlink -EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag -EXPORT_SYMBOL vmlinux 0x6fc7e626 memzero_explicit -EXPORT_SYMBOL vmlinux 0x6ff22a40 tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0x7000277d pci_set_mwi -EXPORT_SYMBOL vmlinux 0x701773bb blk_peek_request -EXPORT_SYMBOL vmlinux 0x7049969b dev_crit -EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq -EXPORT_SYMBOL vmlinux 0x7061e35a eth_header_parse -EXPORT_SYMBOL vmlinux 0x706c2908 skb_insert -EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync -EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x708a244d find_get_pages_tag -EXPORT_SYMBOL vmlinux 0x70a3001d dmam_alloc_coherent -EXPORT_SYMBOL vmlinux 0x70a5de66 scsi_register_interface -EXPORT_SYMBOL vmlinux 0x70c19186 xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x70d26800 __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0x70db2caa vfs_writev -EXPORT_SYMBOL vmlinux 0x70e3a430 inode_init_always -EXPORT_SYMBOL vmlinux 0x70e742de dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x70f493f7 inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x70f6bf98 get_guest_storage_key -EXPORT_SYMBOL vmlinux 0x71281d74 audit_log_start -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x71391331 __blk_run_queue -EXPORT_SYMBOL vmlinux 0x713ebc4f __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0x7143c043 skb_make_writable -EXPORT_SYMBOL vmlinux 0x7145aef0 segment_load -EXPORT_SYMBOL vmlinux 0x716a188f kmem_cache_free -EXPORT_SYMBOL vmlinux 0x716fa6f4 sock_i_uid -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev -EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71b66c39 dev_add_offload -EXPORT_SYMBOL vmlinux 0x71b73544 neigh_for_each -EXPORT_SYMBOL vmlinux 0x71ba081d dentry_unhash -EXPORT_SYMBOL vmlinux 0x71c0c3a8 add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0x71dc3022 param_ops_ulong -EXPORT_SYMBOL vmlinux 0x71f44363 tty_register_device -EXPORT_SYMBOL vmlinux 0x71f732fa __frontswap_load -EXPORT_SYMBOL vmlinux 0x71f9c48c bdput -EXPORT_SYMBOL vmlinux 0x721d8e85 inet_offloads -EXPORT_SYMBOL vmlinux 0x721d9600 fsnotify_add_mark -EXPORT_SYMBOL vmlinux 0x7242e96d strnchr -EXPORT_SYMBOL vmlinux 0x724705ac scsi_cmd_ioctl -EXPORT_SYMBOL vmlinux 0x725fd887 nla_append -EXPORT_SYMBOL vmlinux 0x7261afa2 tcp_proc_register -EXPORT_SYMBOL vmlinux 0x72b211c2 page_cache_next_hole -EXPORT_SYMBOL vmlinux 0x72befd53 config_item_init_type_name -EXPORT_SYMBOL vmlinux 0x72c4db1d audit_log -EXPORT_SYMBOL vmlinux 0x72c63bd5 debug_register_view -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x730d4e0b lg_local_lock -EXPORT_SYMBOL vmlinux 0x73332c6c sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0x73356f2f tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf -EXPORT_SYMBOL vmlinux 0x7366d54a kill_bdev -EXPORT_SYMBOL vmlinux 0x737153d0 inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x738839f2 nvm_dev_dma_free -EXPORT_SYMBOL vmlinux 0x7388ad69 param_ops_ullong -EXPORT_SYMBOL vmlinux 0x73af27c9 netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0x73bf20c6 _ascebc -EXPORT_SYMBOL vmlinux 0x73f7db06 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0x73fd0c81 param_get_long -EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x741f70a9 debug_stop_all -EXPORT_SYMBOL vmlinux 0x741fefc7 dev_uc_sync -EXPORT_SYMBOL vmlinux 0x744dc7f7 iunique -EXPORT_SYMBOL vmlinux 0x7455958e noop_fsync -EXPORT_SYMBOL vmlinux 0x7469769c __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x749c3252 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0x74a8b3cf d_walk -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74c3917e udplite_table -EXPORT_SYMBOL vmlinux 0x74cbe8dc skb_store_bits -EXPORT_SYMBOL vmlinux 0x74d13525 d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74f38c45 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0x752ff27e skb_queue_tail -EXPORT_SYMBOL vmlinux 0x755f9a65 blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0x756a50b4 mpage_readpages -EXPORT_SYMBOL vmlinux 0x758fdcf1 ida_get_new_above -EXPORT_SYMBOL vmlinux 0x75ac0197 kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0x75ac2b87 flush_signals -EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc -EXPORT_SYMBOL vmlinux 0x75be9e48 dquot_resume -EXPORT_SYMBOL vmlinux 0x75dcde88 pci_set_dma_max_seg_size -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x764ae73d inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x764bd77c request_resource -EXPORT_SYMBOL vmlinux 0x7664cbf7 inet6_bind -EXPORT_SYMBOL vmlinux 0x766f20c2 fsnotify_get_group -EXPORT_SYMBOL vmlinux 0x76842479 xfrm_find_acq -EXPORT_SYMBOL vmlinux 0x76aed753 sock_i_ino -EXPORT_SYMBOL vmlinux 0x76c1310f should_remove_suid -EXPORT_SYMBOL vmlinux 0x76cf7f68 netdev_info -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint -EXPORT_SYMBOL vmlinux 0x7712a5bc md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0x7715424c kern_path_create -EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x77234f72 vfs_mknod -EXPORT_SYMBOL vmlinux 0x77367e66 freeze_bdev -EXPORT_SYMBOL vmlinux 0x774c265b call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0x776fe1a6 __page_symlink -EXPORT_SYMBOL vmlinux 0x778d825c __break_lease -EXPORT_SYMBOL vmlinux 0x7797ce63 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77caa8ab blk_rq_map_user -EXPORT_SYMBOL vmlinux 0x77d6ffe9 blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0x77e57a25 tty_port_destroy -EXPORT_SYMBOL vmlinux 0x77f421a4 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x77f93555 kern_path_mountpoint -EXPORT_SYMBOL vmlinux 0x7802ff79 kfree_skb_list -EXPORT_SYMBOL vmlinux 0x7803dffc __wake_up -EXPORT_SYMBOL vmlinux 0x780ee14f loop_register_transfer -EXPORT_SYMBOL vmlinux 0x7820ee12 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x7824898f param_ops_bool -EXPORT_SYMBOL vmlinux 0x78289867 kfree_put_link -EXPORT_SYMBOL vmlinux 0x7828b3c7 bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0x782acba5 crc_t10dif -EXPORT_SYMBOL vmlinux 0x783a9f75 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t -EXPORT_SYMBOL vmlinux 0x784588a5 shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x785d3573 simple_lookup -EXPORT_SYMBOL vmlinux 0x7864414c add_virt_timer_periodic -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x7892b821 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78e51f95 sget_userns -EXPORT_SYMBOL vmlinux 0x78f85434 scm_detach_fds -EXPORT_SYMBOL vmlinux 0x790ad26a unregister_qdisc -EXPORT_SYMBOL vmlinux 0x790c3154 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x79133e05 inet6_del_offload -EXPORT_SYMBOL vmlinux 0x791c18c8 inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0x792721bb dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0x79293d35 dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0x792e0d45 lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0x7985d043 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79b62961 mod_virt_timer -EXPORT_SYMBOL vmlinux 0x79e459c6 blk_start_queue_async -EXPORT_SYMBOL vmlinux 0x79fe5c16 nf_register_sockopt -EXPORT_SYMBOL vmlinux 0x7a0d2df6 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0x7a4497db kzfree -EXPORT_SYMBOL vmlinux 0x7a4c941a ether_setup -EXPORT_SYMBOL vmlinux 0x7a58441d sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x7a6cce0d d_lookup -EXPORT_SYMBOL vmlinux 0x7a6cdedc do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7a73c489 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0x7a8e1839 nobh_writepage -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7abf8afc devm_request_resource -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7ad85c3b pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0x7ae73de1 alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x7ae7ee93 ccw_device_get_id -EXPORT_SYMBOL vmlinux 0x7ae943ee nf_register_net_hook -EXPORT_SYMBOL vmlinux 0x7af2b95b scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x7af689aa complete_request_key -EXPORT_SYMBOL vmlinux 0x7b03ce3f finish_no_open -EXPORT_SYMBOL vmlinux 0x7b0da730 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array -EXPORT_SYMBOL vmlinux 0x7b369deb ccw_device_set_offline -EXPORT_SYMBOL vmlinux 0x7b4fa80d nlmsg_notify -EXPORT_SYMBOL vmlinux 0x7b55ee3c pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0x7b5a7137 strncat -EXPORT_SYMBOL vmlinux 0x7b5ccd0f inode_change_ok -EXPORT_SYMBOL vmlinux 0x7b638328 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x7b8f4c40 key_create_or_update -EXPORT_SYMBOL vmlinux 0x7b9ac197 neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0x7b9c0645 blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x7bf479fe resource_list_create_entry -EXPORT_SYMBOL vmlinux 0x7bfad580 jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x7c1372e8 panic -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c198757 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x7c3dbaac kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0x7c3ed225 configfs_unregister_group -EXPORT_SYMBOL vmlinux 0x7c422a42 mapping_tagged -EXPORT_SYMBOL vmlinux 0x7c5024b2 scsi_print_command -EXPORT_SYMBOL vmlinux 0x7c5d4a3a sclp_reactivate -EXPORT_SYMBOL vmlinux 0x7c61340c __release_region -EXPORT_SYMBOL vmlinux 0x7c621c54 netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x7c6c1993 ccw_device_set_options -EXPORT_SYMBOL vmlinux 0x7c7362ad tcw_get_data -EXPORT_SYMBOL vmlinux 0x7c7ed118 get_empty_filp -EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down -EXPORT_SYMBOL vmlinux 0x7cd0f1e3 capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7cf62be3 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0x7cf6b339 jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x7cff93ea wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0x7d056946 get_ccwdev_by_busid -EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies -EXPORT_SYMBOL vmlinux 0x7d1a43ea find_get_entry -EXPORT_SYMBOL vmlinux 0x7d1af350 security_path_mkdir -EXPORT_SYMBOL vmlinux 0x7d1d3bcf scsi_unregister -EXPORT_SYMBOL vmlinux 0x7d212915 configfs_unregister_subsystem -EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug -EXPORT_SYMBOL vmlinux 0x7d7e8634 down_write -EXPORT_SYMBOL vmlinux 0x7daf486e page_symlink -EXPORT_SYMBOL vmlinux 0x7db70cdf fs_bio_set -EXPORT_SYMBOL vmlinux 0x7dbaeefe blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x7dbe98dd pci_iomap -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7dfa24d9 bio_integrity_advance -EXPORT_SYMBOL vmlinux 0x7e004210 dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x7e2701d7 padata_unregister_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x7e35f63d pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x7e369cc5 inet_bind -EXPORT_SYMBOL vmlinux 0x7e3a9853 km_state_expired -EXPORT_SYMBOL vmlinux 0x7e3e301a lwtunnel_input -EXPORT_SYMBOL vmlinux 0x7e657cbd __kernel_write -EXPORT_SYMBOL vmlinux 0x7ed3de10 debug_register_mode -EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x7ee9eba3 iucv_register -EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f066f87 ip_ct_attach -EXPORT_SYMBOL vmlinux 0x7f1fde84 inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0x7f21e63b blk_queue_find_tag -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f263ed9 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x7f2a8c85 bio_chain -EXPORT_SYMBOL vmlinux 0x7f330850 seq_file_path -EXPORT_SYMBOL vmlinux 0x7f5980fd security_path_chmod -EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done -EXPORT_SYMBOL vmlinux 0x7f7534bf sync_inode_metadata -EXPORT_SYMBOL vmlinux 0x7fa383c2 bio_map_kern -EXPORT_SYMBOL vmlinux 0x7fb1b0d4 end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0x7fbd10d2 radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x7fd1c16e get_user_pages_locked -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x8009c3ac setup_new_exec -EXPORT_SYMBOL vmlinux 0x802fa88d bio_copy_data -EXPORT_SYMBOL vmlinux 0x8031d4c3 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0x805485ab __kfifo_out_r -EXPORT_SYMBOL vmlinux 0x805a6ec7 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0x8068c15c kblockd_schedule_delayed_work -EXPORT_SYMBOL vmlinux 0x8073ac77 down_interruptible -EXPORT_SYMBOL vmlinux 0x8078667d component_match_add -EXPORT_SYMBOL vmlinux 0x80791a8c radix_tree_gang_lookup_slot -EXPORT_SYMBOL vmlinux 0x808a0ab8 tty_port_open -EXPORT_SYMBOL vmlinux 0x80a8c8ab kobject_add -EXPORT_SYMBOL vmlinux 0x80b4d1e8 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0x80bad531 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80e5fb86 dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x80f0facf from_kgid -EXPORT_SYMBOL vmlinux 0x8127ccf3 d_delete -EXPORT_SYMBOL vmlinux 0x8128c039 smsg_register_callback -EXPORT_SYMBOL vmlinux 0x813059ef send_sig_info -EXPORT_SYMBOL vmlinux 0x8140baf2 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy -EXPORT_SYMBOL vmlinux 0x814e7a9a lwtunnel_state_alloc -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x818bae81 mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x818d9fa8 dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0x81b18409 lookup_one_len -EXPORT_SYMBOL vmlinux 0x81bf7277 simple_pin_fs -EXPORT_SYMBOL vmlinux 0x81d35bfe tcw_get_tccb -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81db941d cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0x81f2ed1f tcp_ioctl -EXPORT_SYMBOL vmlinux 0x81fa0a4d neigh_parms_release -EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill -EXPORT_SYMBOL vmlinux 0x82081979 ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x824519f1 finish_wait -EXPORT_SYMBOL vmlinux 0x82458f7f radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun -EXPORT_SYMBOL vmlinux 0x82722546 kmalloc_dma_caches -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched -EXPORT_SYMBOL vmlinux 0x82af4cdf delete_from_page_cache -EXPORT_SYMBOL vmlinux 0x82c8b862 inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x82de3720 __ip_select_ident -EXPORT_SYMBOL vmlinux 0x82efe99b mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x82f5f0bf finish_open -EXPORT_SYMBOL vmlinux 0x832bc7e0 neigh_app_ns -EXPORT_SYMBOL vmlinux 0x832f4727 proto_register -EXPORT_SYMBOL vmlinux 0x83512362 zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0x835fcd78 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x838ed96e blk_mq_add_to_requeue_list -EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x83ad7c8d pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init -EXPORT_SYMBOL vmlinux 0x83b32143 udp6_set_csum -EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83d9fc1f generic_shutdown_super -EXPORT_SYMBOL vmlinux 0x843633b2 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0x844e3767 radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x8475060b raw3270_request_add_data -EXPORT_SYMBOL vmlinux 0x847765e9 __crc32c_le -EXPORT_SYMBOL vmlinux 0x84a16b47 kobject_set_name -EXPORT_SYMBOL vmlinux 0x84b037c6 __ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x84cca465 set_page_dirty -EXPORT_SYMBOL vmlinux 0x84e42bf5 inode_set_bytes -EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload -EXPORT_SYMBOL vmlinux 0x851ef49b write_cache_pages -EXPORT_SYMBOL vmlinux 0x8537c33e pci_dev_driver -EXPORT_SYMBOL vmlinux 0x8544bcd4 inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x85451778 do_truncate -EXPORT_SYMBOL vmlinux 0x85550d09 handle_edge_irq -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x856d0fcf single_release -EXPORT_SYMBOL vmlinux 0x85abc85f strncmp -EXPORT_SYMBOL vmlinux 0x85b192cc filemap_fault -EXPORT_SYMBOL vmlinux 0x85bbbc34 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85e5e341 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85f5dfed blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0x85f77ac2 pci_disable_device -EXPORT_SYMBOL vmlinux 0x861d7964 kern_unmount -EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x867d6324 scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x869d27fb ipv6_push_nfrag_opts -EXPORT_SYMBOL vmlinux 0x869e590b blkdev_get -EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x86d0dbb5 tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0x86df7282 nf_getsockopt -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x87064049 security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags -EXPORT_SYMBOL vmlinux 0x871defbd eth_gro_receive -EXPORT_SYMBOL vmlinux 0x872263ad unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0x872eada4 pci_map_rom -EXPORT_SYMBOL vmlinux 0x87636dd9 tcw_set_tccb -EXPORT_SYMBOL vmlinux 0x87667deb keyring_clear -EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale -EXPORT_SYMBOL vmlinux 0x87c58a96 smp_call_function_many -EXPORT_SYMBOL vmlinux 0x87c822d8 skb_pull -EXPORT_SYMBOL vmlinux 0x87d2853c mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0x87e44d03 inode_permission -EXPORT_SYMBOL vmlinux 0x87e47337 security_path_unlink -EXPORT_SYMBOL vmlinux 0x88146973 idr_destroy -EXPORT_SYMBOL vmlinux 0x88178f0f vlan_uses_dev -EXPORT_SYMBOL vmlinux 0x8831110f gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x8833bc7e __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0x8863a099 jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0x887fa47e __getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x8880f2fd param_get_string -EXPORT_SYMBOL vmlinux 0x8880ff37 compat_tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x888847b0 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x888e7ba5 tty_port_tty_get -EXPORT_SYMBOL vmlinux 0x88928a0d skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x889ff66b inode_sub_rsv_space -EXPORT_SYMBOL vmlinux 0x88a0f86f __frontswap_store -EXPORT_SYMBOL vmlinux 0x88c9ca2b sock_recvmsg -EXPORT_SYMBOL vmlinux 0x88cea752 node_states -EXPORT_SYMBOL vmlinux 0x88cf1971 simple_rename -EXPORT_SYMBOL vmlinux 0x88d08dd5 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x88d83533 check_disk_size_change -EXPORT_SYMBOL vmlinux 0x88fc6022 lg_local_unlock -EXPORT_SYMBOL vmlinux 0x8914abe8 _raw_read_trylock_retry -EXPORT_SYMBOL vmlinux 0x891bef26 vm_stat -EXPORT_SYMBOL vmlinux 0x89518f7c unregister_console -EXPORT_SYMBOL vmlinux 0x895bfea9 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0x8965f8b3 skb_clone_sk -EXPORT_SYMBOL vmlinux 0x898b97c7 key_reject_and_link -EXPORT_SYMBOL vmlinux 0x89927c75 d_make_root -EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0x89c3d109 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0x89fcc950 __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0x89ff68fa ida_pre_get -EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies -EXPORT_SYMBOL vmlinux 0x8a29c99b blk_get_request -EXPORT_SYMBOL vmlinux 0x8a2efa1f nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0x8a48a00c vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning -EXPORT_SYMBOL vmlinux 0x8a570ef6 d_instantiate_unique -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8ab928c6 sg_miter_start -EXPORT_SYMBOL vmlinux 0x8adcc3c0 peernet2id_alloc -EXPORT_SYMBOL vmlinux 0x8ae95cb2 md_error -EXPORT_SYMBOL vmlinux 0x8af10c20 __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0x8af24ea1 pci_match_id -EXPORT_SYMBOL vmlinux 0x8afaebe7 nla_put -EXPORT_SYMBOL vmlinux 0x8b20ccdf pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0x8b2b6be5 bio_phys_segments -EXPORT_SYMBOL vmlinux 0x8b2ba374 netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0x8b2d9819 scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last -EXPORT_SYMBOL vmlinux 0x8b364dff param_get_charp -EXPORT_SYMBOL vmlinux 0x8b41d8f2 vm_insert_pfn -EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x8b4b291b set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b7fe311 kmemdup -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b957622 add_virt_timer -EXPORT_SYMBOL vmlinux 0x8bccc3b7 blk_mq_can_queue -EXPORT_SYMBOL vmlinux 0x8c296af6 __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0x8c3a1e86 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0x8c5b8a90 mount_nodev -EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x8cc35e99 ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x8cca9f56 end_page_writeback -EXPORT_SYMBOL vmlinux 0x8ce584ca find_get_pages_contig -EXPORT_SYMBOL vmlinux 0x8d05fdf3 __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0x8d4ab7ff empty_aops -EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d99b1a6 crc32_le_shift -EXPORT_SYMBOL vmlinux 0x8db0b188 scsi_print_result -EXPORT_SYMBOL vmlinux 0x8db75f57 proc_create_data -EXPORT_SYMBOL vmlinux 0x8dc638cf d_obtain_alias -EXPORT_SYMBOL vmlinux 0x8dd69c5c __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x8ded182e seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0x8e3013a7 dquot_release -EXPORT_SYMBOL vmlinux 0x8e418144 iterate_dir -EXPORT_SYMBOL vmlinux 0x8e5cd0d7 seq_hex_dump -EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x8e783dad nvm_put_blk -EXPORT_SYMBOL vmlinux 0x8e7a5f70 misc_register -EXPORT_SYMBOL vmlinux 0x8e7c4fe7 revert_creds -EXPORT_SYMBOL vmlinux 0x8e80c602 simple_open -EXPORT_SYMBOL vmlinux 0x8e865a4f config_group_init -EXPORT_SYMBOL vmlinux 0x8e879bb7 __vmalloc -EXPORT_SYMBOL vmlinux 0x8e8ad436 key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0x8ede70dc abort_creds -EXPORT_SYMBOL vmlinux 0x8ee1f90c xfrm_register_km -EXPORT_SYMBOL vmlinux 0x8ee360cd qdisc_destroy -EXPORT_SYMBOL vmlinux 0x8efd1e35 dq_data_lock -EXPORT_SYMBOL vmlinux 0x8f252584 proc_create_mount_point -EXPORT_SYMBOL vmlinux 0x8f4a86ce pagecache_write_begin -EXPORT_SYMBOL vmlinux 0x8f636d23 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x8f9dbc25 d_prune_aliases -EXPORT_SYMBOL vmlinux 0x8fbc4999 fsync_bdev -EXPORT_SYMBOL vmlinux 0x8fc23842 sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0x8fd479c5 ip_route_input_noref -EXPORT_SYMBOL vmlinux 0x8fd57727 may_umount_tree -EXPORT_SYMBOL vmlinux 0x8fe60e9f dm_put_table_device -EXPORT_SYMBOL vmlinux 0x8fe7cbf8 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0x90029e28 dm_kobject_release -EXPORT_SYMBOL vmlinux 0x900e616e commit_creds -EXPORT_SYMBOL vmlinux 0x903cc367 generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0x9042d443 unlock_rename -EXPORT_SYMBOL vmlinux 0x9069e907 truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0x90840ff0 __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x91084cc4 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0x910ab947 invalidate_partition -EXPORT_SYMBOL vmlinux 0x910b0564 set_cached_acl -EXPORT_SYMBOL vmlinux 0x9116b417 save_fpu_regs -EXPORT_SYMBOL vmlinux 0x91337724 inet_stream_connect -EXPORT_SYMBOL vmlinux 0x9136fc2d xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x9141bd13 bdev_read_only -EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 -EXPORT_SYMBOL vmlinux 0x91715312 sprintf -EXPORT_SYMBOL vmlinux 0x917dd42b copy_strings_kernel -EXPORT_SYMBOL vmlinux 0x91a43ad7 posix_test_lock -EXPORT_SYMBOL vmlinux 0x91b57adb neigh_event_ns -EXPORT_SYMBOL vmlinux 0x91bae187 qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0x91da73b6 dquot_file_open -EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 -EXPORT_SYMBOL vmlinux 0x91f7ca30 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0x9207c44a scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x92240595 gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x922cbffa pipe_unlock -EXPORT_SYMBOL vmlinux 0x92392cd9 iov_shorten -EXPORT_SYMBOL vmlinux 0x925d7312 dev_add_pack -EXPORT_SYMBOL vmlinux 0x92611b21 devm_free_irq -EXPORT_SYMBOL vmlinux 0x92736aa9 pagecache_get_page -EXPORT_SYMBOL vmlinux 0x9281c8f9 dqget -EXPORT_SYMBOL vmlinux 0x929096d3 ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0x929473c4 inet_add_offload -EXPORT_SYMBOL vmlinux 0x9296c42a generic_pipe_buf_steal -EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm -EXPORT_SYMBOL vmlinux 0x92c17478 igrab -EXPORT_SYMBOL vmlinux 0x92dfde32 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0x92ee5627 generic_update_time -EXPORT_SYMBOL vmlinux 0x92fe6ff2 lg_global_lock -EXPORT_SYMBOL vmlinux 0x9326fc58 vfs_fsync -EXPORT_SYMBOL vmlinux 0x934745e9 __get_page_tail -EXPORT_SYMBOL vmlinux 0x934aec68 unregister_quota_format -EXPORT_SYMBOL vmlinux 0x935a1824 dst_alloc -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x93b303ad __cleancache_put_page -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93b6f3d7 xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0x93d581ac xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0x93e9d3b4 iommu_tbl_pool_init -EXPORT_SYMBOL vmlinux 0x93ef5681 ccw_device_is_multipath -EXPORT_SYMBOL vmlinux 0x93f55e6c dquot_quotactl_ops -EXPORT_SYMBOL vmlinux 0x93fa2d47 pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0x93fc29d2 cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages -EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int -EXPORT_SYMBOL vmlinux 0x941d46e7 unregister_service_level -EXPORT_SYMBOL vmlinux 0x9423d4d1 security_task_getsecid -EXPORT_SYMBOL vmlinux 0x9429b7eb bdi_init -EXPORT_SYMBOL vmlinux 0x942c96f8 dst_init -EXPORT_SYMBOL vmlinux 0x94445363 sk_net_capable -EXPORT_SYMBOL vmlinux 0x945775a5 segment_save -EXPORT_SYMBOL vmlinux 0x9479fc4b inode_needs_sync -EXPORT_SYMBOL vmlinux 0x948adf5a skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x948af296 security_mmap_file -EXPORT_SYMBOL vmlinux 0x94903375 blk_mq_delay_queue -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x94e2d906 __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x94f5e3ab bitmap_unplug -EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x9514151a _mcount -EXPORT_SYMBOL vmlinux 0x95219742 prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x952dc7d9 raw3270_request_set_cmd -EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init -EXPORT_SYMBOL vmlinux 0x9549fb3f nf_log_register -EXPORT_SYMBOL vmlinux 0x9552a631 simple_release_fs -EXPORT_SYMBOL vmlinux 0x955bd032 xfrm_register_mode -EXPORT_SYMBOL vmlinux 0x9581ea62 kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0x959065c5 scmd_printk -EXPORT_SYMBOL vmlinux 0x959bba53 qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x95a18ca0 udp_del_offload -EXPORT_SYMBOL vmlinux 0x95aa4bde sock_kfree_s -EXPORT_SYMBOL vmlinux 0x95ceb864 key_update -EXPORT_SYMBOL vmlinux 0x962a6991 set_guest_storage_key -EXPORT_SYMBOL vmlinux 0x96404e39 itcw_set_data -EXPORT_SYMBOL vmlinux 0x96638fb8 sock_edemux -EXPORT_SYMBOL vmlinux 0x9669ecc8 monotonic_clock -EXPORT_SYMBOL vmlinux 0x9671f23e tty_set_operations -EXPORT_SYMBOL vmlinux 0x96801911 inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x96931651 tso_build_hdr -EXPORT_SYMBOL vmlinux 0x969571df iov_iter_init -EXPORT_SYMBOL vmlinux 0x96a48726 blk_rq_set_block_pc -EXPORT_SYMBOL vmlinux 0x96a748ed tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x96a7a4a9 blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0x96b3d374 configfs_register_subsystem -EXPORT_SYMBOL vmlinux 0x96c241fa misc_deregister -EXPORT_SYMBOL vmlinux 0x96cceb2c tty_unregister_driver -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x9704460b inode_set_flags -EXPORT_SYMBOL vmlinux 0x97061166 skb_split -EXPORT_SYMBOL vmlinux 0x9707f271 inet_ioctl -EXPORT_SYMBOL vmlinux 0x971b9068 inet_stream_ops -EXPORT_SYMBOL vmlinux 0x9722f7dc dcb_getapp -EXPORT_SYMBOL vmlinux 0x97345a28 sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x97594c81 crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0x97674cc1 __ethtool_get_settings -EXPORT_SYMBOL vmlinux 0x976b8845 gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0x97785c0c generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x977a194d __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x977f6573 user_revoke -EXPORT_SYMBOL vmlinux 0x97835771 set_user_nice -EXPORT_SYMBOL vmlinux 0x978d5bd9 scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x97a6241b generic_pipe_buf_confirm -EXPORT_SYMBOL vmlinux 0x97bbd480 vlan_vid_add -EXPORT_SYMBOL vmlinux 0x97c9881d from_kuid_munged -EXPORT_SYMBOL vmlinux 0x97e359be xfrm6_prepare_output -EXPORT_SYMBOL vmlinux 0x97f3d9a4 bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x98082893 __copy_to_user -EXPORT_SYMBOL vmlinux 0x9831e9e4 __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x983c5d96 blk_end_request -EXPORT_SYMBOL vmlinux 0x98536c87 wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x9863e343 dev_get_stats -EXPORT_SYMBOL vmlinux 0x987ffdf1 simple_nosetlease -EXPORT_SYMBOL vmlinux 0x98873397 scsi_register_driver -EXPORT_SYMBOL vmlinux 0x98883bf5 fsnotify_init_mark -EXPORT_SYMBOL vmlinux 0x989f82b9 netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x98ad3335 __dquot_transfer -EXPORT_SYMBOL vmlinux 0x98c68c41 __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x98ddcdf7 devm_ioremap -EXPORT_SYMBOL vmlinux 0x98f830cd dev_get_by_index -EXPORT_SYMBOL vmlinux 0x990c34dd _raw_write_lock_wait -EXPORT_SYMBOL vmlinux 0x9923e64f nf_unregister_hooks -EXPORT_SYMBOL vmlinux 0x9942ec77 itcw_finalize -EXPORT_SYMBOL vmlinux 0x994365f9 sk_capable -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x99558ac4 simple_dir_operations -EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x99750257 locks_mandatory_area -EXPORT_SYMBOL vmlinux 0x997823ae register_sysctl_paths -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99b9c453 scsi_cmd_get_serial -EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering -EXPORT_SYMBOL vmlinux 0x99d3a43c dm_table_get_size -EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval -EXPORT_SYMBOL vmlinux 0x9a261a50 ccw_device_tm_start_timeout -EXPORT_SYMBOL vmlinux 0x9a2bfba1 sock_no_getname -EXPORT_SYMBOL vmlinux 0x9a2fb02c __frontswap_test -EXPORT_SYMBOL vmlinux 0x9a30199a prepare_creds -EXPORT_SYMBOL vmlinux 0x9a3ac67d wait_iff_congested -EXPORT_SYMBOL vmlinux 0x9a4a8f1b param_get_int -EXPORT_SYMBOL vmlinux 0x9a634dfa tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0x9a63fab6 cdev_init -EXPORT_SYMBOL vmlinux 0x9a906daf memscan -EXPORT_SYMBOL vmlinux 0x9aabc564 crc16 -EXPORT_SYMBOL vmlinux 0x9ae45801 d_splice_alias -EXPORT_SYMBOL vmlinux 0x9af4d0ba inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x9af9f85e pci_request_region -EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page -EXPORT_SYMBOL vmlinux 0x9b4f2203 iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0x9b5f07d2 filp_close -EXPORT_SYMBOL vmlinux 0x9b8d07aa strnlen -EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split -EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put -EXPORT_SYMBOL vmlinux 0x9bd0da01 lookup_bdev -EXPORT_SYMBOL vmlinux 0x9bd790ec simple_write_begin -EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x9c066477 __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0x9c289436 lock_sock_fast -EXPORT_SYMBOL vmlinux 0x9c32bec9 iucv_unregister -EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x9c7ea758 dql_init -EXPORT_SYMBOL vmlinux 0x9ca1b781 del_random_ready_callback -EXPORT_SYMBOL vmlinux 0x9ca95a0e sort -EXPORT_SYMBOL vmlinux 0x9cc268d4 raw3270_wait_queue -EXPORT_SYMBOL vmlinux 0x9ceb1c90 proc_symlink -EXPORT_SYMBOL vmlinux 0x9cef36c4 dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x9cf46ceb ccw_device_get_mdc -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d218873 vfs_mkdir -EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init -EXPORT_SYMBOL vmlinux 0x9d67213e vfs_whiteout -EXPORT_SYMBOL vmlinux 0x9d6b6720 ip_getsockopt -EXPORT_SYMBOL vmlinux 0x9dae4baf mount_single -EXPORT_SYMBOL vmlinux 0x9dc6291d truncate_setsize -EXPORT_SYMBOL vmlinux 0x9dfe58c7 rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0x9e0068ab s390_epoch_delta_notifier -EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e138ef1 kern_path -EXPORT_SYMBOL vmlinux 0x9e16ea8b keyring_alloc -EXPORT_SYMBOL vmlinux 0x9e39b667 scsi_host_alloc -EXPORT_SYMBOL vmlinux 0x9e44545c dquot_disable -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e57d4f7 netlink_unicast -EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value -EXPORT_SYMBOL vmlinux 0x9e7f5eee block_truncate_page -EXPORT_SYMBOL vmlinux 0x9e880f1f tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9e9fff2a __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x9eb231d3 __elv_add_request -EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource -EXPORT_SYMBOL vmlinux 0x9ef412cb cdrom_check_events -EXPORT_SYMBOL vmlinux 0x9f0e39de sock_release -EXPORT_SYMBOL vmlinux 0x9f125d6d vmalloc_to_page -EXPORT_SYMBOL vmlinux 0x9f1dba1f tcp_recvmsg -EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f5ce59a pcie_port_service_register -EXPORT_SYMBOL vmlinux 0x9f5e7b4c inet_release -EXPORT_SYMBOL vmlinux 0x9f940904 blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9fbd3e38 try_to_writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x9fcfd25a truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9fe2383d tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0xa013b408 migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xa058c8f2 dquot_enable -EXPORT_SYMBOL vmlinux 0xa05b73f3 tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xa05eb875 sclp -EXPORT_SYMBOL vmlinux 0xa060e2ce vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0xa06933a6 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0xa06dbbac dev_addr_flush -EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init -EXPORT_SYMBOL vmlinux 0xa0803201 do_splice_direct -EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa0afc305 pci_platform_rom -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0b37a7a skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0xa0c8efae remove_proc_entry -EXPORT_SYMBOL vmlinux 0xa0d3d560 ksize -EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0e3bfba clear_wb_congested -EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem -EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa0ff74d6 udp_memory_allocated -EXPORT_SYMBOL vmlinux 0xa100bdf7 mempool_alloc -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa10a687d tty_kref_put -EXPORT_SYMBOL vmlinux 0xa10b0ef5 __module_put_and_exit -EXPORT_SYMBOL vmlinux 0xa10febff nvm_addr_to_generic_mode -EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts -EXPORT_SYMBOL vmlinux 0xa14bceb0 __tracepoint_s390_diagnose -EXPORT_SYMBOL vmlinux 0xa1648b46 tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0xa16d0202 security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0xa17bccab tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0xa19065ea down_timeout -EXPORT_SYMBOL vmlinux 0xa1b3ded5 param_ops_charp -EXPORT_SYMBOL vmlinux 0xa1bfe550 security_dentry_init_security -EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched -EXPORT_SYMBOL vmlinux 0xa1d5979b find_first_bit_inv -EXPORT_SYMBOL vmlinux 0xa1d8169e cdev_alloc -EXPORT_SYMBOL vmlinux 0xa1dfed76 pipe_lock -EXPORT_SYMBOL vmlinux 0xa1e83f4d pci_unregister_driver -EXPORT_SYMBOL vmlinux 0xa1ec8f1c __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold -EXPORT_SYMBOL vmlinux 0xa223a66d bdget_disk -EXPORT_SYMBOL vmlinux 0xa24c8580 ccw_device_tm_intrg -EXPORT_SYMBOL vmlinux 0xa25e87b9 sk_common_release -EXPORT_SYMBOL vmlinux 0xa269fa69 sb_set_blocksize -EXPORT_SYMBOL vmlinux 0xa280bf81 tcf_action_exec -EXPORT_SYMBOL vmlinux 0xa2823753 inet_frag_maybe_warn_overflow -EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0xa2987a79 iucv_if -EXPORT_SYMBOL vmlinux 0xa2dc0191 sock_create_kern -EXPORT_SYMBOL vmlinux 0xa2e93018 tc_classify -EXPORT_SYMBOL vmlinux 0xa2ea49c3 md_reload_sb -EXPORT_SYMBOL vmlinux 0xa2f397d7 unregister_cdrom -EXPORT_SYMBOL vmlinux 0xa310a706 __iucv_message_receive -EXPORT_SYMBOL vmlinux 0xa33f7c7c nla_strlcpy -EXPORT_SYMBOL vmlinux 0xa346e092 dev_change_flags -EXPORT_SYMBOL vmlinux 0xa35eb1de mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0xa373b476 get_cached_acl -EXPORT_SYMBOL vmlinux 0xa376a20b skb_copy -EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get -EXPORT_SYMBOL vmlinux 0xa38a971a set_blocksize -EXPORT_SYMBOL vmlinux 0xa39ca35e take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xa3af6cd7 inode_claim_rsv_space -EXPORT_SYMBOL vmlinux 0xa40b3c9b tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0xa422acc4 __napi_schedule -EXPORT_SYMBOL vmlinux 0xa42f4c18 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0xa44b520a __scsi_format_command -EXPORT_SYMBOL vmlinux 0xa44cebae tcp_hashinfo -EXPORT_SYMBOL vmlinux 0xa457d017 __register_nls -EXPORT_SYMBOL vmlinux 0xa459a9e3 dev_mc_add -EXPORT_SYMBOL vmlinux 0xa46a954e blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset -EXPORT_SYMBOL vmlinux 0xa48c53cd sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0xa49f6c26 balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0xa4a94d26 find_next_bit_le -EXPORT_SYMBOL vmlinux 0xa4c41694 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xa4da994e tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0xa4e188e7 strscpy -EXPORT_SYMBOL vmlinux 0xa4e449bc sock_no_listen -EXPORT_SYMBOL vmlinux 0xa4edce59 elv_unregister_queue -EXPORT_SYMBOL vmlinux 0xa4eff604 compat_mc_getsockopt -EXPORT_SYMBOL vmlinux 0xa4f55075 iucv_message_send -EXPORT_SYMBOL vmlinux 0xa53fd092 debug_raw_view -EXPORT_SYMBOL vmlinux 0xa54284cd ccw_device_set_options_mask -EXPORT_SYMBOL vmlinux 0xa54d5871 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0xa5521b2d jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa5556b7f __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xa55f154b __percpu_counter_add -EXPORT_SYMBOL vmlinux 0xa59cb687 iucv_path_quiesce -EXPORT_SYMBOL vmlinux 0xa5b00366 insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0xa5bd881e param_set_int -EXPORT_SYMBOL vmlinux 0xa614478f blk_queue_split -EXPORT_SYMBOL vmlinux 0xa6214231 __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0xa62920e4 neigh_xmit -EXPORT_SYMBOL vmlinux 0xa642dd1f debug_hex_ascii_view -EXPORT_SYMBOL vmlinux 0xa664eee7 shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0xa674a445 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa6b66d03 alloc_disk_node -EXPORT_SYMBOL vmlinux 0xa6c0baea lwtunnel_encap_del_ops -EXPORT_SYMBOL vmlinux 0xa6ce173b ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function -EXPORT_SYMBOL vmlinux 0xa703be29 simple_follow_link -EXPORT_SYMBOL vmlinux 0xa72a0f5b nr_online_nodes -EXPORT_SYMBOL vmlinux 0xa72ab44f udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 -EXPORT_SYMBOL vmlinux 0xa786c621 __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0xa786e276 ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0xa7aaadad vm_mmap -EXPORT_SYMBOL vmlinux 0xa7cb4fbb tcf_register_action -EXPORT_SYMBOL vmlinux 0xa7d63ce2 perf_reserve_sampling -EXPORT_SYMBOL vmlinux 0xa7ea1617 ilookup5 -EXPORT_SYMBOL vmlinux 0xa8146ae4 blk_put_request -EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa8455afc __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0xa8721b97 system_state -EXPORT_SYMBOL vmlinux 0xa873e964 udp_sendmsg -EXPORT_SYMBOL vmlinux 0xa886a958 krealloc -EXPORT_SYMBOL vmlinux 0xa8a4cbb2 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0xa8a7a19c __vfs_write -EXPORT_SYMBOL vmlinux 0xa8b273ce dev_uc_unsync -EXPORT_SYMBOL vmlinux 0xa8bcf594 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0xa8e23019 splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send -EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion -EXPORT_SYMBOL vmlinux 0xa9220a25 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0xa9271a43 iov_iter_copy_from_user_atomic -EXPORT_SYMBOL vmlinux 0xa92723ad sk_receive_skb -EXPORT_SYMBOL vmlinux 0xa93f5d17 ida_remove -EXPORT_SYMBOL vmlinux 0xa954be2a scsi_cmd_blk_ioctl -EXPORT_SYMBOL vmlinux 0xa966f538 ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0xa9673f6b scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0xa974ed4a generic_error_remove_page -EXPORT_SYMBOL vmlinux 0xa97603c1 unlock_page -EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa97929c2 ccw_device_tm_start_key -EXPORT_SYMBOL vmlinux 0xa99bbd20 pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0xa9a3aea3 do_splice_from -EXPORT_SYMBOL vmlinux 0xa9a5b106 netpoll_setup -EXPORT_SYMBOL vmlinux 0xa9b0c998 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0xa9b8f8f6 percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0xa9e6e0b4 debug_register -EXPORT_SYMBOL vmlinux 0xa9f49f28 tcp_getsockopt -EXPORT_SYMBOL vmlinux 0xaa3a4404 generic_start_io_acct -EXPORT_SYMBOL vmlinux 0xaa43ac84 jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0xaa69b933 compat_mc_setsockopt -EXPORT_SYMBOL vmlinux 0xaa7b75f2 follow_pfn -EXPORT_SYMBOL vmlinux 0xaa7b98ee posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0xaa85a23a km_query -EXPORT_SYMBOL vmlinux 0xaa90b093 consume_skb -EXPORT_SYMBOL vmlinux 0xaa92d61f register_netdev -EXPORT_SYMBOL vmlinux 0xaab4ea69 ip_options_compile -EXPORT_SYMBOL vmlinux 0xaab888a9 inet_recvmsg -EXPORT_SYMBOL vmlinux 0xaaba96c7 kernel_getsockopt -EXPORT_SYMBOL vmlinux 0xaabe6704 airq_iv_free -EXPORT_SYMBOL vmlinux 0xaac2fd3e tcp_md5_hash_header -EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0xaad997a0 debug_event_common -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0xab09f805 set_nlink -EXPORT_SYMBOL vmlinux 0xab2f28f6 sock_cmsg_send -EXPORT_SYMBOL vmlinux 0xab399d94 pcim_iomap_table -EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog -EXPORT_SYMBOL vmlinux 0xab6f4af8 pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0xab7b9eb7 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0xabaf18dd __d_drop -EXPORT_SYMBOL vmlinux 0xabb66e5a notify_change -EXPORT_SYMBOL vmlinux 0xabb96ecd param_set_uint -EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev -EXPORT_SYMBOL vmlinux 0xabd892b3 vfs_setpos -EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable -EXPORT_SYMBOL vmlinux 0xac114b1d kbd_free -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac2fb03c release_pages -EXPORT_SYMBOL vmlinux 0xac32c3e6 __blkdev_reread_part -EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear -EXPORT_SYMBOL vmlinux 0xac4e21d2 seq_open -EXPORT_SYMBOL vmlinux 0xac811549 dm_unregister_target -EXPORT_SYMBOL vmlinux 0xac83e1a3 jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0xac9e45af param_set_ushort -EXPORT_SYMBOL vmlinux 0xaca10736 redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacc5b5d2 csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton -EXPORT_SYMBOL vmlinux 0xacd71780 blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xace8b94d dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0xacf36987 pci_bus_put -EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad05e705 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0xad3d60da __block_write_begin -EXPORT_SYMBOL vmlinux 0xad48885a dev_close -EXPORT_SYMBOL vmlinux 0xad4aee39 strncpy -EXPORT_SYMBOL vmlinux 0xad4cd138 perf_release_sampling -EXPORT_SYMBOL vmlinux 0xad4cd192 dev_queue_xmit -EXPORT_SYMBOL vmlinux 0xad6f93da scsi_verify_blk_ioctl -EXPORT_SYMBOL vmlinux 0xad7c3cde param_set_charp -EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event -EXPORT_SYMBOL vmlinux 0xada3fd19 kmem_cache_alloc_node_trace -EXPORT_SYMBOL vmlinux 0xada53e2a bioset_create_nobvec -EXPORT_SYMBOL vmlinux 0xadbcbac0 __get_user_pages -EXPORT_SYMBOL vmlinux 0xadcaf882 mutex_lock -EXPORT_SYMBOL vmlinux 0xadcee6d4 dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0xadfa36b2 pci_disable_msi -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae088099 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0xae116ab3 param_get_byte -EXPORT_SYMBOL vmlinux 0xae15788c simple_dname -EXPORT_SYMBOL vmlinux 0xae7858aa vfs_llseek -EXPORT_SYMBOL vmlinux 0xae881390 devm_release_resource -EXPORT_SYMBOL vmlinux 0xae8fb6bc blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0xaeb93ed0 ccw_device_halt -EXPORT_SYMBOL vmlinux 0xaeca00c7 register_shrinker -EXPORT_SYMBOL vmlinux 0xaecbd862 follow_down_one -EXPORT_SYMBOL vmlinux 0xaed32d4d vfs_writef -EXPORT_SYMBOL vmlinux 0xaedafcb8 bio_integrity_prep -EXPORT_SYMBOL vmlinux 0xaee08bfa dma_pool_create -EXPORT_SYMBOL vmlinux 0xaee93c6d d_genocide -EXPORT_SYMBOL vmlinux 0xaf08e8fe vprintk_emit -EXPORT_SYMBOL vmlinux 0xaf147b16 vfs_fsync_range -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf6d21de make_kuid -EXPORT_SYMBOL vmlinux 0xaf8ace71 xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0xaf8be1ed dump_truncate -EXPORT_SYMBOL vmlinux 0xaf8c883a inet6_add_offload -EXPORT_SYMBOL vmlinux 0xafc2fc96 skb_queue_purge -EXPORT_SYMBOL vmlinux 0xafc7e476 file_ns_capable -EXPORT_SYMBOL vmlinux 0xafe82e10 strcspn -EXPORT_SYMBOL vmlinux 0xaff54f15 dev_mc_sync -EXPORT_SYMBOL vmlinux 0xb02b05d5 from_kgid_munged -EXPORT_SYMBOL vmlinux 0xb02ff703 bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0xb03e4c65 downgrade_write -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb07a22bb dev_uc_init -EXPORT_SYMBOL vmlinux 0xb0842d3c dev_mc_init -EXPORT_SYMBOL vmlinux 0xb097c8ff PDE_DATA -EXPORT_SYMBOL vmlinux 0xb09f2214 kobject_del -EXPORT_SYMBOL vmlinux 0xb0ae00fd ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0xb0b544f7 devm_memunmap -EXPORT_SYMBOL vmlinux 0xb0bb5d36 dev_mc_del -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0e953c4 set_wb_congested -EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb1402ed6 scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table -EXPORT_SYMBOL vmlinux 0xb1894fde blk_init_tags -EXPORT_SYMBOL vmlinux 0xb19b4d3a mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0xb1b0631d udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb221fe5c scm_fp_dup -EXPORT_SYMBOL vmlinux 0xb23589e3 kbd_alloc -EXPORT_SYMBOL vmlinux 0xb2534ab0 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0xb27a915b __dquot_free_space -EXPORT_SYMBOL vmlinux 0xb281f8f4 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0xb2827922 bio_reset -EXPORT_SYMBOL vmlinux 0xb2b0d772 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0xb2bb5933 airq_iv_scan -EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xb2d2005a pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0xb2e149e3 dev_alloc_name -EXPORT_SYMBOL vmlinux 0xb2f95386 free_task -EXPORT_SYMBOL vmlinux 0xb2fb0f2f nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xb3468d3f __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit -EXPORT_SYMBOL vmlinux 0xb3788dc7 remap_pfn_range -EXPORT_SYMBOL vmlinux 0xb37a0495 tso_start -EXPORT_SYMBOL vmlinux 0xb380cbac padata_start -EXPORT_SYMBOL vmlinux 0xb3b967a1 sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0xb3d0494b elv_rb_add -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3d54d89 pci_remove_bus -EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb3ff1f69 free_pages_exact -EXPORT_SYMBOL vmlinux 0xb401cef8 nvm_register_mgr -EXPORT_SYMBOL vmlinux 0xb40d1e04 bdi_register_owner -EXPORT_SYMBOL vmlinux 0xb44734c5 blk_finish_request -EXPORT_SYMBOL vmlinux 0xb4551d8d seq_write -EXPORT_SYMBOL vmlinux 0xb4668e7a generic_ro_fops -EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0xb48645db netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0xb48f1995 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0xb49ed036 seq_pad -EXPORT_SYMBOL vmlinux 0xb4c56ee5 jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0xb4d6766a sock_wfree -EXPORT_SYMBOL vmlinux 0xb4dbfd25 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0xb4e20d2f xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xb4e4f69f get_phys_clock -EXPORT_SYMBOL vmlinux 0xb4e944fe __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xb4edcae4 register_cdrom -EXPORT_SYMBOL vmlinux 0xb4fb7692 kernel_sendpage -EXPORT_SYMBOL vmlinux 0xb50d45c0 posix_acl_fix_xattr_userns -EXPORT_SYMBOL vmlinux 0xb536141d blk_queue_stack_limits -EXPORT_SYMBOL vmlinux 0xb5521827 inet_shutdown -EXPORT_SYMBOL vmlinux 0xb56e9810 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb57eef47 generic_file_splice_read -EXPORT_SYMBOL vmlinux 0xb5a4342e ihold -EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5b0d956 __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0xb5baf843 tod_to_timeval -EXPORT_SYMBOL vmlinux 0xb5c72ab5 lock_rename -EXPORT_SYMBOL vmlinux 0xb601a80b dquot_free_inode -EXPORT_SYMBOL vmlinux 0xb6076d5c compat_nf_setsockopt -EXPORT_SYMBOL vmlinux 0xb61477da put_cmsg -EXPORT_SYMBOL vmlinux 0xb6151540 tty_port_hangup -EXPORT_SYMBOL vmlinux 0xb6161f91 netdev_boot_setup_check -EXPORT_SYMBOL vmlinux 0xb6227e64 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one -EXPORT_SYMBOL vmlinux 0xb62cf0e9 kmem_cache_create -EXPORT_SYMBOL vmlinux 0xb630dcdd __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xb6333e64 neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0xb63b3c21 from_kuid -EXPORT_SYMBOL vmlinux 0xb6434fa6 dev_change_proto_down -EXPORT_SYMBOL vmlinux 0xb64ebac7 security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0xb64fe7ac tcf_exts_validate -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb67f29a5 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb6995940 simple_transaction_read -EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit -EXPORT_SYMBOL vmlinux 0xb6c1611d blk_recount_segments -EXPORT_SYMBOL vmlinux 0xb6cb7961 pci_claim_resource -EXPORT_SYMBOL vmlinux 0xb6cff705 iucv_path_sever -EXPORT_SYMBOL vmlinux 0xb6d76547 proc_dointvec -EXPORT_SYMBOL vmlinux 0xb72b2226 __genl_register_family -EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xb761fac3 pcim_iounmap -EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb787e43a md_cluster_mod -EXPORT_SYMBOL vmlinux 0xb7899c6e mempool_free -EXPORT_SYMBOL vmlinux 0xb7a0b766 scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0xb7ab9d96 kernel_setsockopt -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7dd88e1 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0xb7ea647c crypto_sha256_update -EXPORT_SYMBOL vmlinux 0xb7fc861f pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0xb84e343e generic_file_write_iter -EXPORT_SYMBOL vmlinux 0xb8522ebc xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0xb856ca14 jbd2_journal_load -EXPORT_SYMBOL vmlinux 0xb85d4df9 xattr_full_name -EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 -EXPORT_SYMBOL vmlinux 0xb8818595 tcf_hash_cleanup -EXPORT_SYMBOL vmlinux 0xb88596d4 dev_printk_emit -EXPORT_SYMBOL vmlinux 0xb886135b ip6_frag_match -EXPORT_SYMBOL vmlinux 0xb8cb6a45 dqput -EXPORT_SYMBOL vmlinux 0xb8d482c6 __skb_gso_segment -EXPORT_SYMBOL vmlinux 0xb8d984c2 km_is_alive -EXPORT_SYMBOL vmlinux 0xb91093aa scsi_scan_host -EXPORT_SYMBOL vmlinux 0xb915ceca itcw_init -EXPORT_SYMBOL vmlinux 0xb919e747 dev_set_group -EXPORT_SYMBOL vmlinux 0xb923bdcd tcp_sync_mss -EXPORT_SYMBOL vmlinux 0xb9249d16 cpu_possible_mask -EXPORT_SYMBOL vmlinux 0xb928aa45 netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0xb9a78b62 raw3270_find_view -EXPORT_SYMBOL vmlinux 0xb9adcaa0 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0xb9b619de posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0xb9c51741 generic_writepages -EXPORT_SYMBOL vmlinux 0xb9dcc7a2 __lock_page -EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xba05975d iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba4b113c bioset_integrity_free -EXPORT_SYMBOL vmlinux 0xba544fa7 dma_common_mmap -EXPORT_SYMBOL vmlinux 0xba846cad sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0xba9299f8 tty_port_close -EXPORT_SYMBOL vmlinux 0xba949f91 start_tty -EXPORT_SYMBOL vmlinux 0xba97d27f up_read -EXPORT_SYMBOL vmlinux 0xba99c10c get_super -EXPORT_SYMBOL vmlinux 0xba9c0915 copy_to_iter -EXPORT_SYMBOL vmlinux 0xbaa2782a kstrndup -EXPORT_SYMBOL vmlinux 0xbacaf3c1 inet_add_protocol -EXPORT_SYMBOL vmlinux 0xbafc0660 blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb0b7483 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xbb6b8f7f generic_read_dir -EXPORT_SYMBOL vmlinux 0xbb81ca6d neigh_connected_output -EXPORT_SYMBOL vmlinux 0xbb9764c8 udp_lib_get_port -EXPORT_SYMBOL vmlinux 0xbb9d0dc5 bin2hex -EXPORT_SYMBOL vmlinux 0xbbce6b54 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0xbbd69897 scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xbbde047f user_path_create -EXPORT_SYMBOL vmlinux 0xbc1acc42 security_path_chown -EXPORT_SYMBOL vmlinux 0xbc2d2b4a __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0xbc2d7c00 kset_register -EXPORT_SYMBOL vmlinux 0xbc469665 xfrm_init_replay -EXPORT_SYMBOL vmlinux 0xbc4bc8f8 rtmsg_ifinfo -EXPORT_SYMBOL vmlinux 0xbc4e71d7 d_instantiate -EXPORT_SYMBOL vmlinux 0xbc62d96b neigh_ifdown -EXPORT_SYMBOL vmlinux 0xbc69b643 drop_super -EXPORT_SYMBOL vmlinux 0xbc73d363 __check_sticky -EXPORT_SYMBOL vmlinux 0xbcb87d13 __cond_resched_lock -EXPORT_SYMBOL vmlinux 0xbcd4cca0 netdev_warn -EXPORT_SYMBOL vmlinux 0xbce3fd9b blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xbd0f4a4e brioctl_set -EXPORT_SYMBOL vmlinux 0xbd100793 cpu_online_mask -EXPORT_SYMBOL vmlinux 0xbd13bab2 __nla_reserve -EXPORT_SYMBOL vmlinux 0xbd21350c jbd2_journal_start -EXPORT_SYMBOL vmlinux 0xbd2e7726 arp_send -EXPORT_SYMBOL vmlinux 0xbd44e417 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0xbd4b0105 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0xbd803510 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug -EXPORT_SYMBOL vmlinux 0xbdfb851f ___ratelimit -EXPORT_SYMBOL vmlinux 0xbe029335 scsi_init_io -EXPORT_SYMBOL vmlinux 0xbe1206b4 write_inode_now -EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto -EXPORT_SYMBOL vmlinux 0xbe2e296c tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0xbe8921af free_cgroup_ns -EXPORT_SYMBOL vmlinux 0xbea4004c pci_write_vpd -EXPORT_SYMBOL vmlinux 0xbea5c34b _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0xbeaa7b04 blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0xbee2ab08 replace_mount_options -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbf1369f1 __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0xbf145944 set_posix_acl -EXPORT_SYMBOL vmlinux 0xbf49641b xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfcd64c1 sock_setsockopt -EXPORT_SYMBOL vmlinux 0xbfe62839 pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xc003c637 __strncpy_from_user -EXPORT_SYMBOL vmlinux 0xc01a2154 raw3270_request_reset -EXPORT_SYMBOL vmlinux 0xc01b0001 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0xc0285346 tcf_hash_create -EXPORT_SYMBOL vmlinux 0xc0395f0d netlink_capable -EXPORT_SYMBOL vmlinux 0xc040a068 padata_remove_cpu -EXPORT_SYMBOL vmlinux 0xc05a9bb0 elv_rb_former_request -EXPORT_SYMBOL vmlinux 0xc075470d adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0xc075fc0d vlan_vid_del -EXPORT_SYMBOL vmlinux 0xc09466ff install_exec_creds -EXPORT_SYMBOL vmlinux 0xc0972d2a elevator_change -EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit -EXPORT_SYMBOL vmlinux 0xc0b3de0a dmam_alloc_noncoherent -EXPORT_SYMBOL vmlinux 0xc0f38cbc init_special_inode -EXPORT_SYMBOL vmlinux 0xc1820e3d alloc_disk -EXPORT_SYMBOL vmlinux 0xc18a15e0 xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0xc1988d25 d_find_any_alias -EXPORT_SYMBOL vmlinux 0xc1a54486 remove_wait_queue -EXPORT_SYMBOL vmlinux 0xc1cfebb8 stop_tty -EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1e3390d bio_advance -EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla -EXPORT_SYMBOL vmlinux 0xc1ef2ca1 tcf_unregister_action -EXPORT_SYMBOL vmlinux 0xc1f516a4 add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0xc1f9c428 cdev_del -EXPORT_SYMBOL vmlinux 0xc1ff96af textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0xc20c4e73 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0xc212f2ab prandom_bytes -EXPORT_SYMBOL vmlinux 0xc265e06d dquot_quota_sync -EXPORT_SYMBOL vmlinux 0xc2668bc9 padata_set_cpumasks -EXPORT_SYMBOL vmlinux 0xc281907e iucv_message_reply -EXPORT_SYMBOL vmlinux 0xc29101e0 pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xc2c90e93 inet6_getname -EXPORT_SYMBOL vmlinux 0xc2da0e05 bioset_create -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2ea80d9 neigh_update -EXPORT_SYMBOL vmlinux 0xc300c1bf jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0xc3198718 dma_common_get_sgtable -EXPORT_SYMBOL vmlinux 0xc32baeb0 call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0xc34cffe2 kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0xc3845749 sync_blockdev -EXPORT_SYMBOL vmlinux 0xc385cb58 perf_num_counters -EXPORT_SYMBOL vmlinux 0xc39231df fsnotify_put_group -EXPORT_SYMBOL vmlinux 0xc3a373ff register_md_personality -EXPORT_SYMBOL vmlinux 0xc3c217c6 tcp_rcv_established -EXPORT_SYMBOL vmlinux 0xc3c2f458 bd_set_size -EXPORT_SYMBOL vmlinux 0xc3d1ef00 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0xc3fec453 tcp_read_sock -EXPORT_SYMBOL vmlinux 0xc40bd3db sock_rfree -EXPORT_SYMBOL vmlinux 0xc40d1cf6 bdevname -EXPORT_SYMBOL vmlinux 0xc4256057 path_get -EXPORT_SYMBOL vmlinux 0xc45755de find_next_zero_bit_le -EXPORT_SYMBOL vmlinux 0xc45acbb7 skb_queue_head -EXPORT_SYMBOL vmlinux 0xc476f3fe proc_mkdir -EXPORT_SYMBOL vmlinux 0xc477a41e pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0xc490e6a2 tcp_parse_options -EXPORT_SYMBOL vmlinux 0xc492283f migrate_page_copy -EXPORT_SYMBOL vmlinux 0xc495154e inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup -EXPORT_SYMBOL vmlinux 0xc5288d61 pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0xc5354313 mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0xc540fa08 bh_submit_read -EXPORT_SYMBOL vmlinux 0xc54fa94a pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0xc55464cb __getblk_gfp -EXPORT_SYMBOL vmlinux 0xc5556533 __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0xc565ad34 tty_do_resize -EXPORT_SYMBOL vmlinux 0xc56aa399 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0xc5738d68 dcache_dir_open -EXPORT_SYMBOL vmlinux 0xc5842069 bdi_register -EXPORT_SYMBOL vmlinux 0xc58c60e2 pci_add_new_bus -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc59a365e blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0xc5ad93b8 sie_exit -EXPORT_SYMBOL vmlinux 0xc5e153d7 remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0xc5e8ad99 set_binfmt -EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xc5fee27b sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0xc622ea97 stsi -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc65782ad abort_exclusive_wait -EXPORT_SYMBOL vmlinux 0xc6616421 config_item_get -EXPORT_SYMBOL vmlinux 0xc6772da2 radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0xc6aacfb3 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6d60f86 tty_devnum -EXPORT_SYMBOL vmlinux 0xc7245d5e skb_append -EXPORT_SYMBOL vmlinux 0xc7302a40 nvm_set_rqd_ppalist -EXPORT_SYMBOL vmlinux 0xc7435211 km_policy_expired -EXPORT_SYMBOL vmlinux 0xc743b379 blk_integrity_merge_rq -EXPORT_SYMBOL vmlinux 0xc744f562 blk_queue_unprep_rq -EXPORT_SYMBOL vmlinux 0xc7536200 ccw_device_tm_start_timeout_key -EXPORT_SYMBOL vmlinux 0xc7669307 nvm_end_io -EXPORT_SYMBOL vmlinux 0xc77d91ef kmem_cache_size -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc -EXPORT_SYMBOL vmlinux 0xc7a24d76 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7b010e8 tcp_prequeue -EXPORT_SYMBOL vmlinux 0xc7b43814 cap_mmap_file -EXPORT_SYMBOL vmlinux 0xc7d09cf6 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0xc808bf61 md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0xc812a0dc kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0xc81ad58a tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0xc81c8859 console_start -EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0xc83f5cfc cmdline_parts_find -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc86a6174 __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc875e20a xfrm_state_walk -EXPORT_SYMBOL vmlinux 0xc88a18af lro_flush_all -EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table -EXPORT_SYMBOL vmlinux 0xc89cdfb3 nvm_erase_ppa -EXPORT_SYMBOL vmlinux 0xc89fc29b __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8acb5f8 jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xc8ba80fd __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0xc8e7f69d dev_err -EXPORT_SYMBOL vmlinux 0xc90ba558 lease_modify -EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen -EXPORT_SYMBOL vmlinux 0xc9252f53 dm_put_device -EXPORT_SYMBOL vmlinux 0xc92b67fc netdev_printk -EXPORT_SYMBOL vmlinux 0xc93b7215 __alloc_skb -EXPORT_SYMBOL vmlinux 0xc947a7e7 inode_add_bytes -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc9afd8f1 __splice_from_pipe -EXPORT_SYMBOL vmlinux 0xca08e817 compat_ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy -EXPORT_SYMBOL vmlinux 0xca18251a tcf_hash_search -EXPORT_SYMBOL vmlinux 0xca44e49d unregister_binfmt -EXPORT_SYMBOL vmlinux 0xca4c923d vscnprintf -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xca995b22 sync_inodes_sb -EXPORT_SYMBOL vmlinux 0xcaa158cf current_fs_time -EXPORT_SYMBOL vmlinux 0xcabc0d3c ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0xcaddc58e dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0xcae63f4c bitmap_start_sync -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcb1f33f1 dev_trans_start -EXPORT_SYMBOL vmlinux 0xcb3dca0c ccw_device_resume -EXPORT_SYMBOL vmlinux 0xcb547ddd seq_path -EXPORT_SYMBOL vmlinux 0xcb5e4a0d nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0xcb5f3cfb skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0xcba780a8 pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0xcbc95675 security_inode_init_security -EXPORT_SYMBOL vmlinux 0xcbecdb60 kill_fasync -EXPORT_SYMBOL vmlinux 0xcc2151a6 dev_get_iflink -EXPORT_SYMBOL vmlinux 0xcc2239e7 netdev_err -EXPORT_SYMBOL vmlinux 0xcc36fc4f md_wakeup_thread -EXPORT_SYMBOL vmlinux 0xcc4cce9f ccw_device_start_timeout -EXPORT_SYMBOL vmlinux 0xcc4d4b37 cdev_add -EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc559cf0 pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0xcc5bc9b0 kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0xcc5ff0bb dev_uc_add -EXPORT_SYMBOL vmlinux 0xcc92ee64 ccw_device_tm_start -EXPORT_SYMBOL vmlinux 0xcc990ef6 kernel_getsockname -EXPORT_SYMBOL vmlinux 0xcca94125 kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0xccba7925 nf_nat_decode_session_hook -EXPORT_SYMBOL vmlinux 0xccd2ca54 dup_iter -EXPORT_SYMBOL vmlinux 0xcce3aba8 elv_rb_find -EXPORT_SYMBOL vmlinux 0xcce77614 param_ops_byte -EXPORT_SYMBOL vmlinux 0xcd0413cf skb_orphan_partial -EXPORT_SYMBOL vmlinux 0xcd0ac56f napi_gro_frags -EXPORT_SYMBOL vmlinux 0xcd26b4ef ip_queue_xmit -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd2e89ea elv_rq_merge_ok -EXPORT_SYMBOL vmlinux 0xcd3e1828 dev_activate -EXPORT_SYMBOL vmlinux 0xcd57f7b0 radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0xcd6aac51 dev_mc_unsync -EXPORT_SYMBOL vmlinux 0xcd6fbb60 nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0xcd74228d pci_scan_bridge -EXPORT_SYMBOL vmlinux 0xcd816cf6 arch_spin_lock_wait -EXPORT_SYMBOL vmlinux 0xcd96dd7b proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0xcd9a78b4 nvm_dev_factory -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdcac60e vfs_link -EXPORT_SYMBOL vmlinux 0xcdf7484b proc_dostring -EXPORT_SYMBOL vmlinux 0xcdf98a4c kobject_init -EXPORT_SYMBOL vmlinux 0xce00336a panic_notifier_list -EXPORT_SYMBOL vmlinux 0xce164cef page_cache_prev_hole -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce4a088e __dev_get_by_name -EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce709e6b __bread_gfp -EXPORT_SYMBOL vmlinux 0xce786802 pci_pme_active -EXPORT_SYMBOL vmlinux 0xce7fd125 pci_scan_single_device -EXPORT_SYMBOL vmlinux 0xce8697b1 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xceae504f cmdline_parts_free -EXPORT_SYMBOL vmlinux 0xcec3a321 security_inode_readlink -EXPORT_SYMBOL vmlinux 0xcec3a908 kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0xcedf0886 cpu_relax -EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 -EXPORT_SYMBOL vmlinux 0xcf0bf891 __pagevec_release -EXPORT_SYMBOL vmlinux 0xcf14f8cd iucv_message_purge -EXPORT_SYMBOL vmlinux 0xcf2817d5 ida_simple_get -EXPORT_SYMBOL vmlinux 0xcf3c08a1 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xcf4be2ec tcp_child_process -EXPORT_SYMBOL vmlinux 0xcf6620df __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0xcf7feff0 bioset_free -EXPORT_SYMBOL vmlinux 0xcf884209 generic_delete_inode -EXPORT_SYMBOL vmlinux 0xcf8f1447 __blk_end_request_all -EXPORT_SYMBOL vmlinux 0xcfa59c93 dm_register_target -EXPORT_SYMBOL vmlinux 0xcfbb153d sk_stream_write_space -EXPORT_SYMBOL vmlinux 0xcfeae122 lockref_put_return -EXPORT_SYMBOL vmlinux 0xd020237c mpage_writepage -EXPORT_SYMBOL vmlinux 0xd02ca281 pci_restore_state -EXPORT_SYMBOL vmlinux 0xd062092e skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond -EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init -EXPORT_SYMBOL vmlinux 0xd0a39758 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces -EXPORT_SYMBOL vmlinux 0xd0bd7271 filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0xd0ed8226 blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format -EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first -EXPORT_SYMBOL vmlinux 0xd1169335 vfs_symlink -EXPORT_SYMBOL vmlinux 0xd1225a95 get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0xd14478c1 param_ops_invbool -EXPORT_SYMBOL vmlinux 0xd15bd8b6 unregister_filesystem -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd199d498 tcw_init -EXPORT_SYMBOL vmlinux 0xd19f13f7 del_virt_timer -EXPORT_SYMBOL vmlinux 0xd1bf5c88 netlink_set_err -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1db8f78 try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xd1f152ad kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0xd22aac5d grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0xd234057b kthread_stop -EXPORT_SYMBOL vmlinux 0xd2432833 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xd255ab42 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0xd26ddbc0 pci_request_regions -EXPORT_SYMBOL vmlinux 0xd272a43f md_write_end -EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd2858d0c node_to_cpumask_map -EXPORT_SYMBOL vmlinux 0xd2a8087c netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0xd2b6dc1e config_group_find_item -EXPORT_SYMBOL vmlinux 0xd2d0fb63 request_key_async -EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2e0bb73 sie64a -EXPORT_SYMBOL vmlinux 0xd303e717 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0xd30c7ad1 scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0xd30c85df ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0xd31c393b iucv_path_accept -EXPORT_SYMBOL vmlinux 0xd326b80a blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0xd32909ac freeze_super -EXPORT_SYMBOL vmlinux 0xd353f7ca netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0xd354d665 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0xd37ff59f iommu_tbl_range_alloc -EXPORT_SYMBOL vmlinux 0xd3af979c memdup_user -EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xd3cce4b1 __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0xd3e2666f netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0xd41c0c66 generic_permission -EXPORT_SYMBOL vmlinux 0xd4396e99 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0xd456afa3 register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0xd45c8fac file_path -EXPORT_SYMBOL vmlinux 0xd461643e iterate_supers_type -EXPORT_SYMBOL vmlinux 0xd4652bdc wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0xd4719eb9 blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0xd47732ab ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0xd49843c6 kfree_skb_partial -EXPORT_SYMBOL vmlinux 0xd4caa0b7 __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0xd4e2b66b lwtunnel_get_encap_size -EXPORT_SYMBOL vmlinux 0xd50d64a3 __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0xd52a438d dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0xd5393d8f vfs_rename -EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0xd55121f5 neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0xd569406d do_SAK -EXPORT_SYMBOL vmlinux 0xd58a6aea mem_cgroup_end_page_stat -EXPORT_SYMBOL vmlinux 0xd5b785f6 debug_sprintf_view -EXPORT_SYMBOL vmlinux 0xd5c6a7a6 unlock_buffer -EXPORT_SYMBOL vmlinux 0xd5c8fd21 kbd_keycode -EXPORT_SYMBOL vmlinux 0xd5ef7c80 sock_no_connect -EXPORT_SYMBOL vmlinux 0xd5f0836a __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0xd61a66a5 ipv6_select_ident -EXPORT_SYMBOL vmlinux 0xd61c0500 cdrom_open -EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout -EXPORT_SYMBOL vmlinux 0xd62d5c4a inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xd638210d irq_to_desc -EXPORT_SYMBOL vmlinux 0xd666a588 smp_ctl_clear_bit -EXPORT_SYMBOL vmlinux 0xd684b796 seq_lseek -EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd68b3d71 dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0xd69a3caf kernel_getpeername -EXPORT_SYMBOL vmlinux 0xd6d45f67 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd6fcb313 elevator_exit -EXPORT_SYMBOL vmlinux 0xd70ac470 param_get_ullong -EXPORT_SYMBOL vmlinux 0xd74826db sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function -EXPORT_SYMBOL vmlinux 0xd7726a30 md_done_sync -EXPORT_SYMBOL vmlinux 0xd79f3fa3 param_get_ulong -EXPORT_SYMBOL vmlinux 0xd7c97de0 blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7ed2f34 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0xd7ee3264 set_disk_ro -EXPORT_SYMBOL vmlinux 0xd81d6213 override_creds -EXPORT_SYMBOL vmlinux 0xd81e7856 scsi_register -EXPORT_SYMBOL vmlinux 0xd8260599 cdrom_ioctl -EXPORT_SYMBOL vmlinux 0xd8298c7b iov_iter_advance -EXPORT_SYMBOL vmlinux 0xd82aa2cf xfrm_prepare_input -EXPORT_SYMBOL vmlinux 0xd82bae4e netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0xd82fe4e6 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0xd83214e0 fsnotify_alloc_group -EXPORT_SYMBOL vmlinux 0xd839b7d9 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0xd83fe538 blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0xd8453a4c buffer_migrate_page -EXPORT_SYMBOL vmlinux 0xd8770a7e noop_llseek -EXPORT_SYMBOL vmlinux 0xd88a0fcc blk_mq_start_request -EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8bd046e dev_uc_del -EXPORT_SYMBOL vmlinux 0xd8d30b1d generic_file_fsync -EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region -EXPORT_SYMBOL vmlinux 0xd8f7a11a generic_fillattr -EXPORT_SYMBOL vmlinux 0xd8fcda72 cpcmd -EXPORT_SYMBOL vmlinux 0xd8fdcda8 inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0xd92f09b7 dev_disable_lro -EXPORT_SYMBOL vmlinux 0xd93a8f7f pagevec_lookup -EXPORT_SYMBOL vmlinux 0xd9532949 pci_scan_bus -EXPORT_SYMBOL vmlinux 0xd96fdd92 current_in_userns -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd9872785 register_filesystem -EXPORT_SYMBOL vmlinux 0xd9922afa iov_iter_zero -EXPORT_SYMBOL vmlinux 0xd9b3f97d console_devno -EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler -EXPORT_SYMBOL vmlinux 0xd9e24cb1 wait_for_key_construction -EXPORT_SYMBOL vmlinux 0xda1e39c7 register_sysctl_table -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda3db0a4 unregister_md_personality -EXPORT_SYMBOL vmlinux 0xda4620be write_one_page -EXPORT_SYMBOL vmlinux 0xda4ae842 jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0xda6da932 elv_add_request -EXPORT_SYMBOL vmlinux 0xda6dc706 mb_cache_shrink -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdae162cb string_unescape -EXPORT_SYMBOL vmlinux 0xdae8beb9 dm_io -EXPORT_SYMBOL vmlinux 0xdafbc225 scsi_execute -EXPORT_SYMBOL vmlinux 0xdb185e7b __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0xdb38157f pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0xdb3bcca6 cancel_delayed_work -EXPORT_SYMBOL vmlinux 0xdb4e1d81 lease_get_mtime -EXPORT_SYMBOL vmlinux 0xdb64be1f __iucv_message_send -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb8b7d03 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0xdba14cce arch_spin_lock_wait_flags -EXPORT_SYMBOL vmlinux 0xdbb1bfd7 migrate_page -EXPORT_SYMBOL vmlinux 0xdbb4824d pci_select_bars -EXPORT_SYMBOL vmlinux 0xdbc4ec41 skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0xdbd82e91 key_revoke -EXPORT_SYMBOL vmlinux 0xdbe0948b skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0xdc0939e9 ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc29c508 __init_rwsem -EXPORT_SYMBOL vmlinux 0xdc328b68 register_service_level -EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 -EXPORT_SYMBOL vmlinux 0xdc40ad84 param_array_ops -EXPORT_SYMBOL vmlinux 0xdc40c4a9 neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0xdc4d27dd raw3270_start_irq -EXPORT_SYMBOL vmlinux 0xdc6b6348 request_firmware -EXPORT_SYMBOL vmlinux 0xdc7bd004 path_put -EXPORT_SYMBOL vmlinux 0xdc8d9f16 fsnotify_put_mark -EXPORT_SYMBOL vmlinux 0xdc953da6 filemap_fdatawait -EXPORT_SYMBOL vmlinux 0xdc96a927 tcf_destroy_chain -EXPORT_SYMBOL vmlinux 0xdc9be5db ccw_driver_unregister -EXPORT_SYMBOL vmlinux 0xdca4c9c6 param_get_ushort -EXPORT_SYMBOL vmlinux 0xdcaa5de0 dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close -EXPORT_SYMBOL vmlinux 0xdcb56923 tso_count_descs -EXPORT_SYMBOL vmlinux 0xdcce448b __blk_end_request_cur -EXPORT_SYMBOL vmlinux 0xdd1131eb __scsi_print_sense -EXPORT_SYMBOL vmlinux 0xdd143a7b skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0xdd17a7f7 nvm_generic_to_addr_mode -EXPORT_SYMBOL vmlinux 0xdd180193 flow_cache_fini -EXPORT_SYMBOL vmlinux 0xdd1836af starget_for_each_device -EXPORT_SYMBOL vmlinux 0xdd3adb02 sock_init_data -EXPORT_SYMBOL vmlinux 0xdd672b7f qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0xdd7cf77b fget -EXPORT_SYMBOL vmlinux 0xdd7e873f blkdev_fsync -EXPORT_SYMBOL vmlinux 0xdd821580 dqstats -EXPORT_SYMBOL vmlinux 0xdd879d99 blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0xdd8fff00 block_write_full_page -EXPORT_SYMBOL vmlinux 0xdd9bac13 page_waitqueue -EXPORT_SYMBOL vmlinux 0xdd9d6ee8 inet_sendpage -EXPORT_SYMBOL vmlinux 0xdda08c00 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0xddaea2c3 poll_initwait -EXPORT_SYMBOL vmlinux 0xddb91265 devm_ioremap_nocache -EXPORT_SYMBOL vmlinux 0xddcfe926 dst_release -EXPORT_SYMBOL vmlinux 0xddde2186 add_random_ready_callback -EXPORT_SYMBOL vmlinux 0xde0bdcff memset -EXPORT_SYMBOL vmlinux 0xde36a978 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0xde48a247 mempool_create -EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0xde661d04 napi_get_frags -EXPORT_SYMBOL vmlinux 0xde8b4f8b airq_iv_alloc -EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages -EXPORT_SYMBOL vmlinux 0xde940255 pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0xde95c474 keyring_search -EXPORT_SYMBOL vmlinux 0xde96243d param_ops_bint -EXPORT_SYMBOL vmlinux 0xde9a9624 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0xdef42510 scsi_remove_host -EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol -EXPORT_SYMBOL vmlinux 0xdf68f1e9 sock_no_accept -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdfa9acca smp_cpu_mtid -EXPORT_SYMBOL vmlinux 0xdfbf669e ccw_device_get_ciw -EXPORT_SYMBOL vmlinux 0xdfc63859 csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0xe02e75c6 sock_no_poll -EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xe052641a neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone -EXPORT_SYMBOL vmlinux 0xe0614a83 proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xe06e4199 cpu_all_bits -EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xe0812a9e register_adapter_interrupt -EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool -EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0b9ca7d pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0xe0bc4fb2 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xe109cdcd locks_init_lock -EXPORT_SYMBOL vmlinux 0xe12459cc ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0xe12a6ba7 irq_set_chip -EXPORT_SYMBOL vmlinux 0xe12dc77a pagevec_lookup_tag -EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0xe13e5930 nvm_get_blk -EXPORT_SYMBOL vmlinux 0xe147d29f netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0xe1520cab qdisc_list_del -EXPORT_SYMBOL vmlinux 0xe1686092 __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xe188467f pci_assign_resource -EXPORT_SYMBOL vmlinux 0xe18c844b inet_register_protosw -EXPORT_SYMBOL vmlinux 0xe1af2a79 raw3270_add_view -EXPORT_SYMBOL vmlinux 0xe1b954d4 d_find_alias -EXPORT_SYMBOL vmlinux 0xe1c18a2f sk_stream_error -EXPORT_SYMBOL vmlinux 0xe1d6f783 blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0xe1ddf172 nonseekable_open -EXPORT_SYMBOL vmlinux 0xe1f93520 bdi_register_dev -EXPORT_SYMBOL vmlinux 0xe1ff3259 security_path_rename -EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xe20372ae radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0xe2114879 gen_replace_estimator -EXPORT_SYMBOL vmlinux 0xe21b800a pci_request_region_exclusive -EXPORT_SYMBOL vmlinux 0xe2274d88 compat_tcp_getsockopt -EXPORT_SYMBOL vmlinux 0xe2309a5e tty_vhangup -EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe24042ed pcie_get_mps -EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 -EXPORT_SYMBOL vmlinux 0xe250ea10 blk_execute_rq -EXPORT_SYMBOL vmlinux 0xe25a00e0 blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0xe2632bf2 netdev_crit -EXPORT_SYMBOL vmlinux 0xe2763622 dev_alert -EXPORT_SYMBOL vmlinux 0xe2784ffe mpage_readpage -EXPORT_SYMBOL vmlinux 0xe27851f3 wait_on_page_bit -EXPORT_SYMBOL vmlinux 0xe28cee4c xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t -EXPORT_SYMBOL vmlinux 0xe2c5f10b nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0xe2ce191c rtnl_unicast -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2d8e745 find_vma -EXPORT_SYMBOL vmlinux 0xe2da751d __skb_checksum -EXPORT_SYMBOL vmlinux 0xe2e522f5 would_dump -EXPORT_SYMBOL vmlinux 0xe2e5beba zpool_register_driver -EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0xe2f80c18 account_page_redirty -EXPORT_SYMBOL vmlinux 0xe305a614 netlink_kernel_release -EXPORT_SYMBOL vmlinux 0xe3072353 __breadahead -EXPORT_SYMBOL vmlinux 0xe317764d jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0xe3632f6a proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0xe371c2fd cdrom_media_changed -EXPORT_SYMBOL vmlinux 0xe3b67b20 jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0xe3b858f5 tcp_mtup_init -EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0xe3c21b17 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0xe3d2b1b5 md_finish_reshape -EXPORT_SYMBOL vmlinux 0xe3d86f39 generic_file_read_iter -EXPORT_SYMBOL vmlinux 0xe3ef2f39 ip_mc_join_group -EXPORT_SYMBOL vmlinux 0xe40ecb03 __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0xe4409190 mem_section -EXPORT_SYMBOL vmlinux 0xe467f9aa sclp_register -EXPORT_SYMBOL vmlinux 0xe479a964 dump_fpu -EXPORT_SYMBOL vmlinux 0xe48f1ca0 scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0xe4916e19 tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0xe4a40d2f diag210 -EXPORT_SYMBOL vmlinux 0xe4b4d0c5 force_sig -EXPORT_SYMBOL vmlinux 0xe4b60e73 neigh_destroy -EXPORT_SYMBOL vmlinux 0xe4b994e9 pcim_iomap -EXPORT_SYMBOL vmlinux 0xe4bcd22b disk_stack_limits -EXPORT_SYMBOL vmlinux 0xe4dbdf26 blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0xe4e26b4e bio_init -EXPORT_SYMBOL vmlinux 0xe4e73f1d rwsem_down_read_failed -EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array -EXPORT_SYMBOL vmlinux 0xe4eaab2e t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0xe5094832 page_table_allocate_pgste -EXPORT_SYMBOL vmlinux 0xe512f173 bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0xe51fed85 complete_all -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe52cb74d xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0xe5383db1 generic_end_io_acct -EXPORT_SYMBOL vmlinux 0xe54036ef mempool_resize -EXPORT_SYMBOL vmlinux 0xe5408351 pci_scan_slot -EXPORT_SYMBOL vmlinux 0xe553f035 udp_proc_unregister -EXPORT_SYMBOL vmlinux 0xe5587385 vfs_iter_read -EXPORT_SYMBOL vmlinux 0xe5654162 blk_fetch_request -EXPORT_SYMBOL vmlinux 0xe577eea4 inet6_offloads -EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton -EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set -EXPORT_SYMBOL vmlinux 0xe5874f85 put_filp -EXPORT_SYMBOL vmlinux 0xe589f8ee ip6_expire_frag_queue -EXPORT_SYMBOL vmlinux 0xe58fc345 blk_make_request -EXPORT_SYMBOL vmlinux 0xe5aa3766 padata_add_cpu -EXPORT_SYMBOL vmlinux 0xe5ad0479 d_alloc_pseudo -EXPORT_SYMBOL vmlinux 0xe5b276aa proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0xe5c0c853 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0xe5c2bfad is_bad_inode -EXPORT_SYMBOL vmlinux 0xe5c83f20 rtnl_configure_link -EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xe5fe562f unlock_new_inode -EXPORT_SYMBOL vmlinux 0xe61e516c posix_acl_valid -EXPORT_SYMBOL vmlinux 0xe62db72e unregister_netdev -EXPORT_SYMBOL vmlinux 0xe63d5a1b sockfd_lookup -EXPORT_SYMBOL vmlinux 0xe6761774 ioctl_by_bdev -EXPORT_SYMBOL vmlinux 0xe68e8a35 alloc_file -EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe6ce9f82 unregister_nls -EXPORT_SYMBOL vmlinux 0xe6d8d6cc scsi_mode_sense -EXPORT_SYMBOL vmlinux 0xe6f1486d dql_reset -EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock -EXPORT_SYMBOL vmlinux 0xe704a2e5 __generic_block_fiemap -EXPORT_SYMBOL vmlinux 0xe713a97a irq_subclass_unregister -EXPORT_SYMBOL vmlinux 0xe7503eb0 pci_lost_interrupt -EXPORT_SYMBOL vmlinux 0xe77e14fe nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xe791e59c inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0xe7a64126 tty_schedule_flip -EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx -EXPORT_SYMBOL vmlinux 0xe7b376c7 nf_log_trace -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7dcd9c4 pci_pme_capable -EXPORT_SYMBOL vmlinux 0xe7e9e55f scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0xe7f49d98 set_security_override -EXPORT_SYMBOL vmlinux 0xe8116e08 __kmalloc_node -EXPORT_SYMBOL vmlinux 0xe817fb69 tty_port_close_start -EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0xe83a826e bio_integrity_enabled -EXPORT_SYMBOL vmlinux 0xe8404941 cdrom_mode_select -EXPORT_SYMBOL vmlinux 0xe85d8f16 bio_add_pc_page -EXPORT_SYMBOL vmlinux 0xe8880b3e security_path_truncate -EXPORT_SYMBOL vmlinux 0xe8895342 key_alloc -EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0xe8b1383e dquot_scan_active -EXPORT_SYMBOL vmlinux 0xe8bb34c7 nobh_write_begin -EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xe8c731fa debug_unregister -EXPORT_SYMBOL vmlinux 0xe8c7aaf0 kill_litter_super -EXPORT_SYMBOL vmlinux 0xe8c808c0 netif_skb_features -EXPORT_SYMBOL vmlinux 0xe8d3b55a bdev_stack_limits -EXPORT_SYMBOL vmlinux 0xe8ef0ff0 current_kernel_time64 -EXPORT_SYMBOL vmlinux 0xe8f0b99a pcim_pin_device -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe95def71 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr -EXPORT_SYMBOL vmlinux 0xe9613b47 sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0xe975faae __get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xe9989c8c itcw_get_tcw -EXPORT_SYMBOL vmlinux 0xe9b0e904 blk_alloc_queue -EXPORT_SYMBOL vmlinux 0xe9c99373 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len -EXPORT_SYMBOL vmlinux 0xea37b786 sk_mc_loop -EXPORT_SYMBOL vmlinux 0xea5f41bd add_wait_queue -EXPORT_SYMBOL vmlinux 0xea782af0 blk_end_request_all -EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table -EXPORT_SYMBOL vmlinux 0xea823df8 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0xea872313 find_next_bit_inv -EXPORT_SYMBOL vmlinux 0xea8e973f __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0xea8eb28f init_buffer -EXPORT_SYMBOL vmlinux 0xea958aaa make_bad_inode -EXPORT_SYMBOL vmlinux 0xeaba44fe tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0xeaba926b __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0xeaccf6bd sg_miter_stop -EXPORT_SYMBOL vmlinux 0xeacf21c7 eth_header_cache -EXPORT_SYMBOL vmlinux 0xeacf2c0b kbd_ioctl -EXPORT_SYMBOL vmlinux 0xead58fb9 print_hex_dump -EXPORT_SYMBOL vmlinux 0xeafb05c5 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0xeb1e4116 pci_find_pcie_root_port -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb6e7984 buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0xeb71a848 raw3270_start_locked -EXPORT_SYMBOL vmlinux 0xeb80851a dput -EXPORT_SYMBOL vmlinux 0xeb9adf0f build_skb -EXPORT_SYMBOL vmlinux 0xeb9c08b4 tty_port_init -EXPORT_SYMBOL vmlinux 0xeba115d6 inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0xeba68247 blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0xebbf1dba strncasecmp -EXPORT_SYMBOL vmlinux 0xebcc4b54 dquot_destroy -EXPORT_SYMBOL vmlinux 0xebfe21ec ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0xebffe76c sk_ns_capable -EXPORT_SYMBOL vmlinux 0xec27c4d1 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0xec34c2dd generic_block_bmap -EXPORT_SYMBOL vmlinux 0xec38f643 skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0xec502d20 fsnotify_destroy_mark -EXPORT_SYMBOL vmlinux 0xec5f1d4d bitmap_end_sync -EXPORT_SYMBOL vmlinux 0xec91439d nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0xece54544 seq_dentry -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecef11eb iucv_path_connect -EXPORT_SYMBOL vmlinux 0xed07f58d bitmap_endwrite -EXPORT_SYMBOL vmlinux 0xed0d489d blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0xed1ebea8 netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0xed24975c ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xed90b8c6 alloc_pages_current -EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedd07aea dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0xeddc828b tty_check_change -EXPORT_SYMBOL vmlinux 0xede17d7e zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee2ec339 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0xee359536 block_commit_write -EXPORT_SYMBOL vmlinux 0xee4efae3 skb_checksum -EXPORT_SYMBOL vmlinux 0xee54675a save_mount_options -EXPORT_SYMBOL vmlinux 0xee57fc54 __module_get -EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee93ac39 configfs_undepend_item -EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeecf55b1 pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0xeee7cb7c blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0xeef161aa groups_free -EXPORT_SYMBOL vmlinux 0xeef472f6 blk_integrity_merge_bio -EXPORT_SYMBOL vmlinux 0xeef6922c seq_putc -EXPORT_SYMBOL vmlinux 0xef1cc91f block_page_mkwrite -EXPORT_SYMBOL vmlinux 0xef2366af napi_gro_receive -EXPORT_SYMBOL vmlinux 0xef2af64b pci_get_device -EXPORT_SYMBOL vmlinux 0xef2ef869 mount_subtree -EXPORT_SYMBOL vmlinux 0xef34b5e0 tcp_disconnect -EXPORT_SYMBOL vmlinux 0xef433cf2 pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0xef45d32c __kfifo_init -EXPORT_SYMBOL vmlinux 0xef60ddf8 napi_disable -EXPORT_SYMBOL vmlinux 0xef8a0f69 dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0xef8b0f50 setup_arg_pages -EXPORT_SYMBOL vmlinux 0xef9ed9d4 block_write_end -EXPORT_SYMBOL vmlinux 0xefaab7a6 proc_remove -EXPORT_SYMBOL vmlinux 0xefb13a20 ip_check_defrag -EXPORT_SYMBOL vmlinux 0xefb272da get_super_thawed -EXPORT_SYMBOL vmlinux 0xefc5ea6b mb_cache_entry_insert -EXPORT_SYMBOL vmlinux 0xefc6fa90 default_file_splice_read -EXPORT_SYMBOL vmlinux 0xefdbd52f inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0xefe93c6c dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0xf0504219 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0xf05555e1 __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0xf05aab33 tty_throttle -EXPORT_SYMBOL vmlinux 0xf05dc625 register_netdevice -EXPORT_SYMBOL vmlinux 0xf06603d5 key_task_permission -EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier -EXPORT_SYMBOL vmlinux 0xf06e34c7 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0xf07edefa init_task -EXPORT_SYMBOL vmlinux 0xf0843f60 _dev_info -EXPORT_SYMBOL vmlinux 0xf086406c xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag -EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int -EXPORT_SYMBOL vmlinux 0xf0a60da2 kmalloc_caches -EXPORT_SYMBOL vmlinux 0xf0a8237a radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0xf0cd39c9 md_cluster_ops -EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort -EXPORT_SYMBOL vmlinux 0xf101b1f6 sync_inode -EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info -EXPORT_SYMBOL vmlinux 0xf11543ff find_first_zero_bit -EXPORT_SYMBOL vmlinux 0xf118c7a4 __vfs_read -EXPORT_SYMBOL vmlinux 0xf122c1c5 lg_local_unlock_cpu -EXPORT_SYMBOL vmlinux 0xf138504d gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf1ba84b8 netdev_alert -EXPORT_SYMBOL vmlinux 0xf1c49d38 dentry_path_raw -EXPORT_SYMBOL vmlinux 0xf1d31909 security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf2080479 blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0xf20b7e59 sock_alloc_file -EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq -EXPORT_SYMBOL vmlinux 0xf219c92a __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf2425a4a blk_integrity_compare -EXPORT_SYMBOL vmlinux 0xf248d459 kernel_param_unlock -EXPORT_SYMBOL vmlinux 0xf253ee9a jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0xf253f67b nf_register_hook -EXPORT_SYMBOL vmlinux 0xf26b69c8 netdev_notify_peers -EXPORT_SYMBOL vmlinux 0xf284ad66 up_write -EXPORT_SYMBOL vmlinux 0xf2871261 __skb_get_hash -EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0xf2ac7f06 dump_align -EXPORT_SYMBOL vmlinux 0xf2ea8dfa generic_file_llseek -EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform -EXPORT_SYMBOL vmlinux 0xf31d7735 secpath_dup -EXPORT_SYMBOL vmlinux 0xf3266162 memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user -EXPORT_SYMBOL vmlinux 0xf334cee6 neigh_lookup -EXPORT_SYMBOL vmlinux 0xf34299bb vfs_getxattr_alloc -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf366c288 __cleancache_get_page -EXPORT_SYMBOL vmlinux 0xf36aa50e ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0xf382e973 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf38e6a6d netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0xf39f26ef pci_release_regions -EXPORT_SYMBOL vmlinux 0xf3bd11b0 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0xf3c1796b kill_pgrp -EXPORT_SYMBOL vmlinux 0xf3c53ca9 page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3e782d7 param_get_bool -EXPORT_SYMBOL vmlinux 0xf4185da4 d_move -EXPORT_SYMBOL vmlinux 0xf42b3ee1 tcp_proto_cgroup -EXPORT_SYMBOL vmlinux 0xf4356aae qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0xf44a9ec4 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0xf44b36b3 d_invalidate -EXPORT_SYMBOL vmlinux 0xf4528073 scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0xf462014e flow_cache_lookup -EXPORT_SYMBOL vmlinux 0xf4711e53 scsi_remove_target -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf48e6d63 open_exec -EXPORT_SYMBOL vmlinux 0xf4a21762 dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0xf4b7e6d9 crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4dfa66e locks_free_lock -EXPORT_SYMBOL vmlinux 0xf4e70983 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0xf4ed2106 netif_carrier_on -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf4f1d73f __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0xf505470a in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xf5166050 elv_rb_del -EXPORT_SYMBOL vmlinux 0xf524662a elevator_alloc -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf55e883a frontswap_register_ops -EXPORT_SYMBOL vmlinux 0xf584e6fd textsearch_destroy -EXPORT_SYMBOL vmlinux 0xf5a59663 import_iovec -EXPORT_SYMBOL vmlinux 0xf5ac5cb3 writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0xf5ace27a block_write_begin -EXPORT_SYMBOL vmlinux 0xf5b15b68 end_buffer_async_write -EXPORT_SYMBOL vmlinux 0xf5b6797f writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command -EXPORT_SYMBOL vmlinux 0xf6084a3f release_firmware -EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl -EXPORT_SYMBOL vmlinux 0xf674c259 pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xf67579aa register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xf68fe0b6 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0xf6a72ec1 skb_vlan_untag -EXPORT_SYMBOL vmlinux 0xf6c131cb __wait_on_buffer -EXPORT_SYMBOL vmlinux 0xf6e236db tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf6ff590e deactivate_super -EXPORT_SYMBOL vmlinux 0xf704fb4e xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0xf70b89dd in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xf70fafe3 freezing_slow_path -EXPORT_SYMBOL vmlinux 0xf73a542a tcp_init_cgroup -EXPORT_SYMBOL vmlinux 0xf751a0a1 __scm_send -EXPORT_SYMBOL vmlinux 0xf7541013 get_user_pages -EXPORT_SYMBOL vmlinux 0xf796623a kobject_put -EXPORT_SYMBOL vmlinux 0xf7d71918 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0xf7de6f4a unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xf7f2d25d iucv_message_send2way -EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area -EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf86f0dfe fixed_size_llseek -EXPORT_SYMBOL vmlinux 0xf876bbb7 blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0xf8810b48 ns_capable -EXPORT_SYMBOL vmlinux 0xf89cfde7 VMALLOC_START -EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xf9351c79 sock_kmalloc -EXPORT_SYMBOL vmlinux 0xf95c9097 dcache_dir_close -EXPORT_SYMBOL vmlinux 0xf95d5641 ida_destroy -EXPORT_SYMBOL vmlinux 0xf97dd368 blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0xf990bbe0 dev_driver_string -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9c1f31e __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0xf9cdb7f9 blk_requeue_request -EXPORT_SYMBOL vmlinux 0xf9d173a2 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0xf9ea8e93 skb_dequeue -EXPORT_SYMBOL vmlinux 0xf9f51284 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0xf9fc567e blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0xf9fe2117 icmp_send -EXPORT_SYMBOL vmlinux 0xf9ff19a8 netdev_emerg -EXPORT_SYMBOL vmlinux 0xfa427684 __dst_free -EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0xfa53bf5c inode_get_bytes -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa9873db __scsi_add_device -EXPORT_SYMBOL vmlinux 0xfaa09920 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0xfac0c01b skb_trim -EXPORT_SYMBOL vmlinux 0xfac60968 lg_lock_init -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xface2100 lru_cache_add_file -EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr -EXPORT_SYMBOL vmlinux 0xfaf8ad71 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0xfb15265e set_groups -EXPORT_SYMBOL vmlinux 0xfb33144f block_invalidatepage -EXPORT_SYMBOL vmlinux 0xfb49af90 mntget -EXPORT_SYMBOL vmlinux 0xfb609d36 key_link -EXPORT_SYMBOL vmlinux 0xfb65b2bf inode_reclaim_rsv_space -EXPORT_SYMBOL vmlinux 0xfb69c03d eth_header -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb6b6f74 raw3270_request_free -EXPORT_SYMBOL vmlinux 0xfb725329 mempool_create_node -EXPORT_SYMBOL vmlinux 0xfb7cae24 release_sock -EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 -EXPORT_SYMBOL vmlinux 0xfb981d2b blk_queue_free_tags -EXPORT_SYMBOL vmlinux 0xfba750fd tty_free_termios -EXPORT_SYMBOL vmlinux 0xfba7567e pci_find_bus -EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock -EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbf39aa8 idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem -EXPORT_SYMBOL vmlinux 0xfc2ef204 __debug_sprintf_event -EXPORT_SYMBOL vmlinux 0xfc419c60 xfrm4_prepare_output -EXPORT_SYMBOL vmlinux 0xfc46bb96 itcw_add_tidaw -EXPORT_SYMBOL vmlinux 0xfc4a64bb bdgrab -EXPORT_SYMBOL vmlinux 0xfc59d0bc mempool_destroy -EXPORT_SYMBOL vmlinux 0xfc86231d iterate_fd -EXPORT_SYMBOL vmlinux 0xfc8b4334 proto_unregister -EXPORT_SYMBOL vmlinux 0xfcad8689 eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0xfcb0152f inet6_register_icmp_sender -EXPORT_SYMBOL vmlinux 0xfcb2344f udp_poll -EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0xfcd4323b xfrm_input_resume -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcf08df8 pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0xfcffe8ca sclp_pci_configure -EXPORT_SYMBOL vmlinux 0xfd048a36 key_invalidate -EXPORT_SYMBOL vmlinux 0xfd3689cf jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0xfd5372d0 nvm_unregister_mgr -EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xfda74fd5 skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0xfe022ab3 ccw_device_clear -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe17047b kblockd_schedule_delayed_work_on -EXPORT_SYMBOL vmlinux 0xfe26fc7c nr_node_ids -EXPORT_SYMBOL vmlinux 0xfe302d88 __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0xfe404323 __sock_create -EXPORT_SYMBOL vmlinux 0xfe540dfe xfrm_user_policy -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe6f5b77 dquot_transfer -EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0xfe91deae dev_addr_del -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfef1ef7c xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff37a945 __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0xff4c2af2 iov_iter_kvec -EXPORT_SYMBOL vmlinux 0xff4e72c8 blk_run_queue_async -EXPORT_SYMBOL vmlinux 0xff50201e lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0xff52ec95 __kfree_skb -EXPORT_SYMBOL vmlinux 0xff6b662e qdisc_watchdog_schedule_ns -EXPORT_SYMBOL vmlinux 0xff6d64fd pci_enable_device_io -EXPORT_SYMBOL vmlinux 0xff741a6a netlink_broadcast -EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource -EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function -EXPORT_SYMBOL vmlinux 0xfff31f89 blk_post_runtime_resume -EXPORT_SYMBOL_GPL arch/s390/crypto/sha_common 0x1860d873 s390_sha_final -EXPORT_SYMBOL_GPL arch/s390/crypto/sha_common 0x23b377e3 s390_sha_update -EXPORT_SYMBOL_GPL crypto/af_alg 0x2721a6ff af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x6c281769 af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x6ea9fdee af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x7e35567d af_alg_complete -EXPORT_SYMBOL_GPL crypto/af_alg 0x8cffee35 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0xa544b18e af_alg_wait_for_completion -EXPORT_SYMBOL_GPL crypto/af_alg 0xb2694eb8 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0xbe29cb20 af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xed16bde1 af_alg_link_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xf42f096b af_alg_cmsg_send -EXPORT_SYMBOL_GPL crypto/af_alg 0xff00ba2c af_alg_register_type -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xfed41312 async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x8f025a36 async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xa15434e2 async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x04c23e45 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xab54fd8f async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xd09de9f7 async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xf0c79615 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xf7a32e6d async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x353f02fe async_xor_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x934e2111 async_xor -EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0xcb0a9bda blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0xcf39b348 cast5_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0xc7123f2c cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 -EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 -EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 -EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x30ffb1f9 crypto_chacha20_setkey -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x9e2418bc crypto_chacha20_crypt -EXPORT_SYMBOL_GPL crypto/cryptd 0x1414064a cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x16b595a3 cryptd_free_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x281a56c6 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x5b475fcf cryptd_alloc_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x6cd87829 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x97b789ae cryptd_ablkcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x9ab6e104 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0xcc5328c5 cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xd3f49c1a cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xe0b72665 cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey -EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey -EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table -EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table -EXPORT_SYMBOL_GPL crypto/lrw 0xf91f7dfb lrw_crypt -EXPORT_SYMBOL_GPL crypto/mcryptd 0x0a46aa66 mcryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/mcryptd 0x1542f707 shash_ahash_mcryptd_digest -EXPORT_SYMBOL_GPL crypto/mcryptd 0x50ac428a shash_ahash_mcryptd_final -EXPORT_SYMBOL_GPL crypto/mcryptd 0x75facbf3 mcryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0x8347667c mcryptd_flusher -EXPORT_SYMBOL_GPL crypto/mcryptd 0x8f6406a0 mcryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0x9b9ed24b shash_ahash_mcryptd_finup -EXPORT_SYMBOL_GPL crypto/mcryptd 0xae869883 mcryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/mcryptd 0xce1f7521 shash_ahash_mcryptd_update -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x7d339e4d crypto_poly1305_final -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xb03a8cf9 crypto_poly1305_init -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xd6f3d2ca crypto_poly1305_setkey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xe424caa9 crypto_poly1305_update -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x089e9cf3 serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt -EXPORT_SYMBOL_GPL crypto/twofish_common 0x02251892 twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey -EXPORT_SYMBOL_GPL crypto/xts 0x7802995d xts_crypt -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0862cd67 fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5499ac8c fpga_mgr_buf_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x77511bdc fpga_mgr_firmware_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7d01786a fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xbc5e8868 of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc3f67f46 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x3c2581c6 intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x489df08c intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x712cb408 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7a7dc0a5 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x850a05f8 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb08d5246 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc57d2129 intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x609ef96e stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x62de2bf7 stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xba293a2e stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xbdf955d9 stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xea5bbc7a stm_source_write -EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x00472318 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x01d3b9ec __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x04698e56 __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x13de3a79 __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17951453 __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x25e0e29d __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2e196d5e __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x40eb8ce7 __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x480d259c __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x50f963e8 __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5de357e7 __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x734e256b __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x76478393 __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7b3bd777 __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7dc83a0f __tracepoint_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x99e96e83 __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa1ee0faa __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa20d04ab __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa5fc5b3c __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa7aae64e __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa8749832 __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xae6f41b8 __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaffc6d0d __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7de1e4f __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd0e0d4c5 __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd4c1f373 __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd5c4d672 __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe08585f9 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe55e9c32 __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf7cf2aa7 __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfdc6ed3a __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x45541abb dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x62a0b12d dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9d3b32fb dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb34b01cc dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc7c5e447 dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xdff8470b dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe6848962 dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf7823f4a dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfb6ca461 dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aba7f5e dm_bufio_get_block_number -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9310ba06 dm_bufio_release_move -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9c256008 dm_bufio_get_device_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa1d2413a dm_bufio_read -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa448e19f dm_bufio_prefetch -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xafbda3f3 dm_bufio_new -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcbb1bae2 dm_bufio_get -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd2557cf9 dm_bufio_client_create -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x3989d955 dm_cache_policy_get_hint_size -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x717a5428 dm_cache_policy_get_name -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x810bdb1a dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa84e8f97 dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xaa1d6861 dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xfa0510a0 dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xfb5a9bbb dm_cache_policy_get_version -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x67bd78b7 dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x97b0cd74 dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3fd98372 dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4430764e dm_rh_region_to_sector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x45ab972a dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x91851043 dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa68e1f06 dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xac5fa86e dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xb0584a90 dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xb1e02c9e dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xdb1d136d dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfad9d53a dm_rh_get_region_size -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfc62ef4e dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x07c4a1ea dm_tm_open_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32350144 dm_tm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x67660b4e dm_bm_write_lock_zero -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x80afbcf5 dm_bm_write_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8605e0ec dm_tm_create_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8c195a05 dm_sm_disk_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x98925a60 dm_bm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa7e46220 dm_bm_checksum -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd22f0a90 dm_block_manager_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe118796a dm_tm_shadow_block -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe2d7194c dm_sm_disk_open -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00536a22 mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01ebe639 __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02b5cfc6 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0955fa79 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c1893e6 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d857718 mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0dcb2571 __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ebf2703 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x104b5b73 mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x127cd166 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14ffc619 mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15daaa2c mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a278230 mlx4_fmr_unmap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d71f589 mlx4_fmr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e43a1c8 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21393c91 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x214126a9 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x253c2ebe mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2738608b mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29049408 mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b42ee20 mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30eaa7fd mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33a254d5 mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33cb85dc mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x359945f9 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36b8fa0e mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36ddbcc0 mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x370eac8f mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ae4baa3 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c5d68b2 mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c7faf1c mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3de9e37e mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ef86395 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40f98039 mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x415a3b68 mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4283da07 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45f170f8 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49841e03 mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c2a807f mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f1a136c mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5265791b mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58e30eea mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d1c6d91 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ea1fbaa mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ef0ea55 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f33fdcd mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f4955cb mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6030222c mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6289f2cb mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6735d15b mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x679f4112 mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69b37d04 __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a40c7bb __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6dc1ecf7 mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ec60bdd mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ef3df77 mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7035a384 mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x707c0fe0 mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7154f688 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71a146bd mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x782f72da mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78b1f991 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79539e08 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a189edc mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ab165fe mlx4_map_phys_fmr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d19e5f2 mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x830cb9aa mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x853f2727 mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ba49ae5 mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91a15116 mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94976434 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94aae54a mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94d36f3d mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98e54bbe mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9980d9be mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a6bcef9 mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d53a38d mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f50d891 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8dd6c68 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac878d7e mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xadb87d84 mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5916c1b mlx4_fmr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5bbd8f2 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb62f3690 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb705e914 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb93b7b44 mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba2cab80 mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe4dfdab mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc072296a mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc398d079 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca8a6b0e mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd24d089 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd65615a mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf3e6242 mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf66b8a5 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd27640a0 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2a9aa43 mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd859c8de mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd928c304 mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9ad5807 mlx4_fmr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda57306c mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdbb543cb mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf870200 mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe170ccc1 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe18f7d09 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe370c3e0 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4e370f2 mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe676d03e mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe84b86b5 mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea20a9e6 mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xefe93426 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0a6b472 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1c2cf94 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf279a5e2 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2d0667a mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3e16b87 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4a1a27d mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4f9c74b mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf99064dc mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfca5795d mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe10b1aa mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe4f90b0 mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe644ef8 mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff9ea074 mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x004bd2d3 mlx5_core_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ed45468 mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11a30885 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14b748c5 mlx5_query_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15dbddbf mlx5_query_port_proto_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1eafee4a mlx5_create_map_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x224d35c9 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x262af506 mlx5_query_vport_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f3e9462 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ffa45f9 mlx5_core_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40793644 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4309a2ac mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d190faa mlx5_core_destroy_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51fe0c9b mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b83e6db mlx5_core_page_fault_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f2133eb mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c39bc41 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7030f0bb mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x753ed7e6 mlx5_core_mad_ifc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76a7ad5d mlx5_set_port_proto -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77b36d34 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7bc67f70 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d95ffa8 mlx5_core_eq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8721a43d mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c92e070 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ffb1fe2 mlx5_core_xrcd_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a147101 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d5edae1 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4305b6d mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6d1c06f mlx5_core_create_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa87ca1d1 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9a2d49e mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad00d7be mlx5_query_port_proto_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaeb3e0a3 mlx5_destroy_unmap_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5665652 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5984897 mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd21f5d60 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3721fa6 mlx5_query_port_link_width_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5693893 mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd614c038 mlx5_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb291afa mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe19cbbcf mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe90e931e mlx5_query_port_proto_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5204432 mlx5_core_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf86dca1d mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/geneve 0x7660c22e geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/geneve 0xe723be23 geneve_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x13ff1144 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x6928c37e macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xb6bc497d macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xbb5b59e0 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvtap 0x4bd3604b macvtap_get_socket -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1e0abe4a bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x47bbf033 bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x52ef0e0d bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x594ca9ec bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x649b2ceb bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x668b82ba bcm_phy_enable_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x850af96e bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe22ff58d bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xed9a5c14 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xef2eda0a bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0x1b7aa601 fixed_phy_register -EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0x1d5cb581 fixed_phy_set_link_update -EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0x43d01fc1 fixed_phy_add -EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0xab5a5de4 fixed_phy_del -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x3c5a0f36 devm_mdiobus_free -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x9765cc81 devm_mdiobus_alloc_size -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x55d91522 vxlan_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x688deff4 vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x0cb54155 dasd_free_block -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x19227556 dasd_nopav -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x262be846 dasd_device_remove_stop_bits -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x30412b0b dasd_generic_uc_handler -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x364f486c dasd_generic_set_offline -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x3744fec7 dasd_generic_last_path_gone -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x3b54687e dasd_device_set_stop_bits -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x53c26952 dasd_generic_remove -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x55c0d7e9 dasd_put_device_wake -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x59482d8a dasd_generic_set_online -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x627a037d dasd_get_sense -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x63ec8799 dasd_generic_read_dev_chars -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x69d607b5 dasd_generic_shutdown -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x6e749a8e dasd_flush_device_queue -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x7e8ecaa6 dasd_generic_notify -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x8608135f dasd_device_is_ro -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x91e8421e dasd_generic_probe -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x9327bf53 dasd_alloc_block -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xa690d8df dasd_generic_path_operational -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xb38fe028 dasd_page_cache -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xb828fe8f dasd_generic_handle_state_change -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xc13d2442 dasd_generic_pm_freeze -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xc5809988 dasd_generic_verify_path -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xc77990d1 dasd_wakeup_cb -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xf15784f5 dasd_nofcx -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xf56f3c63 dasd_generic_path_event -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xf638d31a dasd_generic_restore_device -EXPORT_SYMBOL_GPL drivers/s390/cio/eadm_sch 0x24f2806e eadm_start_aob -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x40124521 qdio_get_ssqd_desc -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x45e7c295 do_QDIO -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x4cad0dbb qdio_activate -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x52d49616 qdio_alloc_buffers -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x73852c2c qdio_pnso_brinfo -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x8184dc41 qdio_reset_buffers -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x9c48fce2 qdio_allocate -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xa2fb3602 qdio_establish -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xc6755f2b qdio_release_aob -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xc8e3f47d qdio_free_buffers -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xcd4af5dd qdio_allocate_aob -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xfcddd4b2 qdio_free -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xff40b716 qdio_shutdown -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x020679cf qeth_release_buffer -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x025292fd qeth_device_attr_group -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x03b4ec9a qeth_dbf_longtext -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x0b87173f qeth_query_setadapterparms -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x0c247c38 qeth_clear_thread_running_bit -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x13b2875e qeth_set_rx_csum -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x17279e4c qeth_tx_timeout -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x1abd5347 qeth_core_get_sset_count -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x1adfb1c7 qeth_device_blkt_group -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x20137cb9 qeth_send_ipa_cmd -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x2cd9e4cc qeth_core_header_cache -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x30f6b93f qeth_core_get_strings -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x31bfd549 qeth_set_allowed_threads -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x33d36438 qeth_send_startlan -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x3bc46fa9 qeth_get_ipacmd_buffer -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x3ee79eae IPA_PDU_HEADER -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x43bab789 qeth_card_hw_is_reachable -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x457bf43d qeth_hdr_chk_and_bounce -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x461b10ed qeth_check_qdio_errors -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x47f9e67e qeth_core_get_drvinfo -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x4884f9fa qeth_hw_trap -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x4b521a54 qeth_wq -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x50634b8e qeth_set_recovery_task -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x51e8d13c qeth_get_stats -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x5467577c qeth_send_simple_setassparms -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x58fec7c9 qeth_print_status_message -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x5bddad61 qeth_do_run_thread -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x620a5cf6 qeth_query_oat_command -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x668faad8 qeth_setadp_promisc_mode -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x67bf1cd2 qeth_configure_cq -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x77f08ba9 qeth_close_dev -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x78c20870 qeth_prepare_control_data -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x7d8d3c74 qeth_trace_features -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x80159cf0 qeth_core_card_list -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x80515979 qeth_send_setassparms -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x815706b3 qeth_init_qdio_queues -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x83fb86bc qeth_setadpparms_change_macaddr -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x85603b5f qeth_clear_cmd_buffers -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x86c895e5 qeth_core_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x903cde35 qeth_snmp_command -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x96e65617 qeth_query_switch_attributes -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x99b9ef61 qeth_generic_devtype -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x9a0cf2df qeth_clear_working_pool_list -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x9faed2a6 qeth_wait_for_threads -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa441c826 qeth_wait_for_buffer -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa87789f8 qeth_clear_qdio_buffers -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa8a89d1e qeth_core_hardsetup_card -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa9e22e6d qeth_realloc_buffer_pool -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xad0f8e29 qeth_qdio_input_handler -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xaec88cc4 qeth_qdio_clear_card -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xb2926fcc qeth_clear_thread_start_bit -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xb3fa09b0 qeth_get_priority_queue -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xbaf0d1ed qeth_get_elements_for_frags -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xbcaa3eb9 qeth_dbf -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xc6845d07 qeth_qdio_start_poll -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xc82ca7f0 qeth_clear_ipacmd_list -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xd2d7d510 qeth_set_access_ctrl_online -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xd2dae937 qeth_do_send_packet -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xda4cacc2 qeth_core_ethtool_get_settings -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xdb26a92e qeth_send_control_data -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xdeed67e6 qeth_prepare_ipa_cmd -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xdf11f175 qeth_queue_input_buffer -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xe30a27d6 qeth_start_ipa_tx_checksum -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xe32a2347 qeth_get_elements_no -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xe89d45e2 qeth_mdio_read -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xea01917f qeth_do_send_packet_fast -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xec53b4d0 qeth_threads_running -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf07e4058 qeth_core_get_next_skb -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf0ac2a70 qeth_change_mtu -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf31d0fd7 qeth_qdio_output_handler -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf3a562c1 qeth_query_ipassists -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf7dd93da qeth_schedule_recovery -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf9846026 qeth_clear_recovery_task -EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l2 0x59150a7a qeth_l2_discipline -EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l2 0x7faf8c7a qeth_bridgeport_query_ports -EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l2 0xe9eed94c qeth_bridgeport_an_set -EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l3 0x6c427d05 qeth_l3_discipline -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x08d6b1c6 fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x27a2d794 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3cb4b209 fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3f0210e5 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x49c159d0 fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x522b78ca fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x628bc0e3 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8309d257 fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x90c035a2 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb92de854 fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbe11131c fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc12fc72c fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc4d2663b fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdb13e3b6 fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xea13eaec __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf77d9f2a fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x200047af iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x26dc15ed iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x5ceb167f iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x6b66a6d8 iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xa97e1157 iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe15b8eb9 iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x01159874 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0a22915c __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x166adeb6 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x19ea0890 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1aaf5c35 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x26bc3319 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2baf5565 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3249d260 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x33f62ea9 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x341d33ca iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4ebda00b iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5c30e1ca iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6440cada iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x65d2bcff iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6a3164df iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6bcb283b iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6eba7e49 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7663e029 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x77d42deb iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x79a51aad iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x861e1f53 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8eb07edd iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8f89e3c3 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x94bfa86b iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x94c84b1d iscsi_eh_target_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaed1f36b iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb23f7786 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb803d207 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xba85bd38 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc6a46e42 iscsi_conn_queue_work -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc6f4109c iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xce63f09d iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd8401812 __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd8b2e7d7 iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe94feb23 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xea534536 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xed6d2fda iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf13a15d3 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf52036f0 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf98bcd92 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfacfc531 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfd0282b6 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x00169ed4 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1778118c iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x220e0c25 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x293c45e1 iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x54d7d008 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5d448f18 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5d600e15 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5f30d4cc iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x60a93f65 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x694640b5 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x77666b41 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x806542df iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x888ff0ed iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9e97364f iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xaec534bc iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb5fe3f65 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf2a3984a iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x00f02512 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1e1991d4 sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1f2c8a3a sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x24b64ce0 sas_domain_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x28aaa27e sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3b164a32 sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3d8501b9 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4c6784d6 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5b476527 sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x63750eb3 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x783061b5 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x78bfe9c5 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x84f46aea sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x85d038a9 sas_eh_bus_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x90b2332a sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9ca4a5c0 sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa0bcd66d sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa9c8972e sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc2c31e34 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc6db25a8 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe8e5a795 sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf451c64d sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf9bbaf2c sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x04f077fb iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x058da8c7 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0ca90e02 iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x108e5df0 iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x129e036f iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1e874327 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1e88fc48 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2f64d6a8 iscsi_is_flashnode_conn_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3554321f iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3ad35427 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3b2bc0e2 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x435c17e5 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x45a87810 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x48ed6b84 iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5b79b5c6 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5baaa9fe iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x62c6ff35 iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6728cdef iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6ccfcb59 iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6d7614c1 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x70cc6874 iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x738b72c5 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7a071062 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8127237a iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x85866f82 iscsi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x86eeba34 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x90e56664 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xacd3cb9f iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaf78aa99 iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb45a4b08 iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc13feb5a iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcd4ef0e3 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd1604557 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd5e221da iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdcdad0b2 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xded4368b iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe2319879 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe3afe4b0 iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xed6ee58f iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf56d85c1 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x12f35291 sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x34c010cc sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x4011cfa5 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x6047a7ce sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xf226fd49 spi_populate_tag_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x11e7e625 srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x3d245b8b srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x557c2772 srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x6207e90a srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x96bf7435 srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xfe588b5f srp_rport_add -EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0x2c79b765 uart_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0x70503e59 uart_insert_char -EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0xd8dd4c99 uart_handle_cts_change -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0e7cc95b vfio_group_get_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x26f42631 vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x65c35b1c vfio_device_get_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xbbf4653b vfio_add_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc582480c vfio_del_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xeabc1bcb vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x0371c1d2 vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xcb2d8662 vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0065af0d vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x025a4332 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x03a67f7c vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x068a3217 vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0cf35cdb vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x145426ac vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x15acf27b vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x19385a85 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1a7d28b0 vhost_work_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x20cb2d8a vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x26aa0bd6 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2d3403f5 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3249854f vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x35245a90 vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x44b5ad78 vhost_init_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4de957fb vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x563ecf9e vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x68ef83dc vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x68f5f315 vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6d616b11 vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x792252ca vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x976daa98 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9e732a7a vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9f51e826 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbb4ec529 vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc59f2743 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcc3f86bb vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe1f1745a vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xeb4c23b5 vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf0c0f9bf vhost_poll_flush -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x0ab5d952 dlm_posix_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x5ca638ad dlm_posix_get -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcc89b8b1 dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock -EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x056d44dc nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x1d5b5225 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3f1a347c nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x43cba77a nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x592cc0ff lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x84af7fbf nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf38efefa nlmsvc_ops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0000f720 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08a28bb4 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08c72d58 nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x095db76a nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a2d30d9 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0bfd57b1 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0dd05d72 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ee9e213 nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x135f765f nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1777ae35 nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x194f9b76 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c4a377a nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d2681d2 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d8216df nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1eae0594 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x268b40ff nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x268bd075 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a9ce7b9 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c78676b nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cee318c nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d9c33d5 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30a993c9 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x316870a7 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3173153c nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32200325 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x348c9834 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34e322c1 nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37ffcf9f nfs_file_fsync_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a01378a nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a5bf864 nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b7136fd nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3baf5eb4 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3beac9b5 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c1eb51d unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d467d31 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e1f0c99 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4063124f nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42626321 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x443f60e7 nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4afcc479 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c7272fe nfs_fill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50a22585 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x520b54f4 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5507e1b0 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x556df551 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a64e1e2 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c88eb58 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e78464f nfs_destroy_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5eb4b326 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f5d0d59 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x608a3bf0 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64b20a41 nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x663d8bfd nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66582478 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x676acdc5 nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6954954f nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69853864 nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ee90ac1 nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f542529 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7082c0d7 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71bd9cb2 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x744ed67a nfs_pgio_data_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74b6b9e7 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76cd8bbe nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76dcca1a __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7dc23096 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7dfb1387 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84cd0bda nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88e8f15a nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b9eead2 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d58530f nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d919fcc nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8de5a0a4 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e168a82 nfs_set_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x914b8eb5 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9538fcd4 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9823d6db nfs_clone_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a565520 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d34b443 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9dd08f9f alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e9e141a nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa51cee79 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa53d8496 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7f8d9b9 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8982822 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa34fbd8 nfs_try_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xafeb0900 nfs_fs_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb140519a nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1b54add nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5a2d40d nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb61921b7 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6df18d3 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb192259 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb5d5baf nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbbf38586 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc983f2c nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbccc0bae nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd0a7561 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbdb210bc nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf4e63c9 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf982f06 nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc068285c nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3503292 nfs_file_splice_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4e63bc8 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xccc2f104 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd88ef31 nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcfa8ccb1 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd029d68a nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0b59a9d nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd29d4ad7 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3e381c5 nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5189f57 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8ef5a1a nfs_remount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd92a5c7f nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9ba65e2 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xddc58461 nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xddf52677 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0be4611 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1582f7a nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef439b6b register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1ab8c0a nfs_fs_mount_common -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8fea6b7 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb8518da nfs_pageio_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc1aed3d nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfcc958f3 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd7cf704 nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x4390456d nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x04328568 _pnfs_return_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0a453a55 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0d4700b5 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x10a17ca2 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x207eeb0f nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2cf437f0 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x34806de8 pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x382d1a00 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x39457f8d nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x44aa8561 pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x45a5e73d pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4a88da49 nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4ae97afd pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x581a127a pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x581d9d75 pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x59366191 pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x623e6d32 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x64c7dd5c nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x64d447d2 nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6691ec4f __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x67404759 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a6de81e pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6ca4807f pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f059700 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x702c987e pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x76f15e9a nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b71f34f nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7d8f010b nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8be476d2 pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x93abfeea pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x95702b24 pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9dcb3c2c pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xad385c96 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaea8f36e pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaebf671b pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb8d1e852 nfs41_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbaf21b9b nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbd941ccc pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3331772 nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a0e9a8 nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc9be3d9a pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcde2996a pnfs_put_lseg_locked -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xce05aa8c pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0ce7c3b nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd1d5fadb pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd21b4d53 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd4b2c2ea nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6b19091 pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda836ab1 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdb522bd8 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc298f47 nfs40_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdff4e37c __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe15c88cb nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe98fe853 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeb18a522 pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xebf92c4e pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf01d4538 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf4b1ea7d nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf70466af nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf9b70d0e pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfc2e2a58 nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfed678da pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x42d32334 locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x59a4fd5d opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x736f1ed3 locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x9e535796 nfsacl_decode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xe5bc5256 nfsacl_encode -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x20725346 o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x2212b26c o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x3b401ec7 o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x521e0726 o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa2d41bd9 o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa4b49608 o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc8fbf546 o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xdee09195 o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x0f6efb61 dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x463a1090 dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x5c9a70aa dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xe3ee2191 dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xec4d4835 dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xf3b307fd dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4b5677f2 ocfs2_plock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x81c60332 ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcf7bf8b0 ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version -EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq -EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures -EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats -EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb -EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random -EXPORT_SYMBOL_GPL kernel/torture 0x52f77986 torture_shuffle_task_register -EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait -EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop -EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end -EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init -EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init -EXPORT_SYMBOL_GPL kernel/torture 0x9f108579 _torture_stop_kthread -EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin -EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin -EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init -EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end -EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init -EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping -EXPORT_SYMBOL_GPL kernel/torture 0xfcb07384 _torture_create_kthread -EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress -EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x0674000e notifier_err_inject_init -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x6376dbc6 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x18efd32f raid6_datap_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x391d9714 raid6_call -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xa51bfd9f raid6_2data_recov -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x096acf0d base_inv_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x0ea96336 base_inv_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x23bf768a base_inv_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x28a031c0 base_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x5a14472f base_inv_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x71398562 base_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x90ae1c4c base_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xec4c111e base_false_key -EXPORT_SYMBOL_GPL net/802/garp 0x16b4618c garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x6519c5f3 garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0x7ee89a5a garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0xbbaabe4b garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xe96e9f97 garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0xf9753713 garp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x119f0888 mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0x323f4906 mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x9ea332f4 mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xcad050c6 mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0xcc17e08d mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xf617014d mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/stp 0x3d1e1b0d stp_proto_register -EXPORT_SYMBOL_GPL net/802/stp 0xad182192 stp_proto_unregister -EXPORT_SYMBOL_GPL net/9p/9pnet 0xd4624f6c p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/9p/9pnet 0xfb14111c p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable -EXPORT_SYMBOL_GPL net/bridge/bridge 0x1f4a488d br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0x53a03c69 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x88413181 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x8a245682 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x93987741 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xcbac4a3c br_deliver -EXPORT_SYMBOL_GPL net/bridge/bridge 0xdb025fe2 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe8c4f960 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x44c0d93b nft_bridge_ip6hdr_validate -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x7cbc0010 nft_bridge_iphdr_validate -EXPORT_SYMBOL_GPL net/dccp/dccp 0x02ef187c dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2a1f481d dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2e2fde92 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x329199db dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3a16c3d2 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3d060c25 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3d42655c dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x42db448b compat_dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ad4353e dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ee3715a dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4f148bbe dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x584f026e dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59054757 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x69c5eb57 dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0x76789ad8 dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0x82090db6 dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x83b893a3 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x87f7388f dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x971c1603 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x998a9af2 dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa3eb56ea dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa5f7c0ec dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa6f4a415 dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa7be88d5 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0xaefba644 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb1737bde compat_dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcb80a469 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd22e36ab dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xdad89c28 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0xdc309380 dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0xdd05abdd dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe14ffa38 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe48d959c dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf3305595 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf3c124e6 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf79d1da4 dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x3de7e47b dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x67d8c69d dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa0314e17 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa49255e9 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xcf81185b dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe1d1d53d dccp_v4_send_check -EXPORT_SYMBOL_GPL net/ipv4/gre 0x51fb5c0c gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0x8cf7fba1 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6791dac2 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6f5aef2b inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x918816ef inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9cffcadc inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd9a7b497 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf4362da4 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xdf04fad5 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1718da98 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x17b949e4 ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1db0183b ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x21af8c60 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3d0ff7ba ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6101365f ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6b69bdcc ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x87639fde ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xabef5730 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb030bc5e ip_tunnel_delete_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb768a2d3 ip_tunnel_ioctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd6cc8f76 ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xdc6666f4 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe71d35f6 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xee3882ea ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xc7bf6e78 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x9ac980e2 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xa3a45564 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x3d182c63 nf_nat_ipv4_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x7d551b91 nf_nat_ipv4_local_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x7f560ef3 nf_nat_ipv4_in -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x9ba2e180 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xc370a865 nf_nat_ipv4_out -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x71698b72 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x2e4ab7b7 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x4742c4fa nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x68c74168 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc198f955 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xfa6da106 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0xb080a466 nft_af_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x3b17abc0 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x7978f1fe tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x8051ac02 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xaf3d0b65 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xd5c8a740 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1403b49a udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x786b1abf setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x84890af6 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd7b94f5e udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x1f808c49 ip6_tnl_dst_destroy -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x4788f9f3 ip6_tnl_dst_get -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x5d343bfa ip6_tnl_dst_reset -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x8df207a1 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x9d9147df ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xa6187df4 ip6_tnl_dst_set -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xfffd2e34 ip6_tnl_dst_init -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x81ba878a udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xfc912951 udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x0869c5e6 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x53189d60 nf_ct_frag6_consume_orig -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xe8d8adb0 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x7f5990a6 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x0cbe8a8e nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x1e48a910 nf_nat_ipv6_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x278a132e nf_nat_ipv6_out -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x60175ba7 nf_nat_ipv6_in -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xf5125417 nf_nat_ipv6_local_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0xaba95392 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6dd9982c nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x86d13d77 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x9894d6e8 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd4815518 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xf8a0aa88 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0xad7c97f0 nft_af_ipv6 -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1687efa5 l2tp_session_queue_purge -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x16a91266 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1fcf6aa7 l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x22743aaf __l2tp_session_unhash -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2bdcd3ce l2tp_tunnel_find_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2fdcdf77 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4e4c6347 l2tp_tunnel_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x50c60222 l2tp_tunnel_closeall -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x640b44ca l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x77de3c6d l2tp_session_free -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x98abb3dc l2tp_session_find_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa2d8a860 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xabb40ed8 l2tp_session_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb40efdbd l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb797b64e l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbbef5612 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xfa0b3f48 l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x0d7652ea mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x150a85e8 mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x50ea169b mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x59391a0f nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x000a21da ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0192ff9b ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x034a9520 ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0b2310aa ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x19effa4c ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2af29e20 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x511284cf ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x59231c4e ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5da3ef81 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x76bc1f92 ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9dc32136 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa860f92d ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb27f9e19 ip_set_get_ip_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbb4be395 ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbd691717 ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc4d8d687 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xefebd1e3 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x0fbc8a46 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x89107116 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x92b624b8 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x938c052c unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x08fac285 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x09e330e9 __nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ddd182f nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ed05487 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11b42324 nf_conntrack_l4proto_tcp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x17d72999 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x193b2f7b __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1b826113 nf_connlabel_match -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ebf1b01 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2167be11 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x220cb478 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x238241a6 nf_conntrack_l4proto_tcp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x24345fb1 nf_ct_iterate_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x24b48531 nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x27b85556 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2c87ef3b nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2eea8ee1 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x30711f43 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x348ebc7b nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x34aae616 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3abfd7b2 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d25e5dd nf_ct_l4proto_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d4ed9b1 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4044527f nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4058d671 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b029371 __nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4f984bb2 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x51f2b2b0 __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x557037dd nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a09d800 nf_connlabel_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a1497c6 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5b5e2405 nf_conntrack_set_hashsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d4b607c nf_ct_l3proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6056e20e nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6468c38a nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6ada2ff8 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f56cac5 __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7057450c nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x740dab2c nf_ct_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x76713da0 nf_ct_l3proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7a388cda nf_conntrack_l3proto_generic -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b0541ce nf_ct_l4proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b362090 nf_ct_l4proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8730b610 nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c7d0eac __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8cebd31b nf_ct_get_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8eda50d0 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x97243890 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa5068ab0 nf_ct_l3proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaaa0460d nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab59af34 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb4ab06d9 nf_ct_l4proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb4f6122f seq_print_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb78c54a6 nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd1af80f nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc26b5a97 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc39a08f2 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc48f4afc nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc9e103ad nf_ct_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xca0e98b3 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc988113 nf_ct_l3protos -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce4bb085 nf_ct_expect_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd283b47b nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda625c7c nf_conntrack_l4proto_udp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb124fb3 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb53c92c nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc1b8933 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe16e2358 nf_ct_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4382e18 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4a5dd14 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe8543efe nf_conntrack_l4proto_udp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe88d74c3 nf_ct_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb8f5933 nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec982754 nfnetlink_parse_nat_setup_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xed577781 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeeec428a nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2c94ca9 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf57c58f1 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfc01b832 nf_ct_expect_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfc01d94f nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xff385cf9 nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x42b9b015 nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x7d7557d1 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x046cb6f9 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0d40e857 nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x28bb0b91 nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4eb6576b get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5dc5a466 nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x646965fa set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x66ca1ee9 set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7df2d645 set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa33d388c set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb7fa807d nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xc59aef9d nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x35542e78 nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x3a913e57 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x65f3ad15 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x6e62431e nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x549143c3 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xa5f4611a nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3d6d8b62 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5d299723 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x69d68a33 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa198df96 ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd10a5cf6 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd26c54d9 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xfb69f06f nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x722ae417 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xcea0ab15 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x4b044dc9 nf_log_dump_tcp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xca5c8633 nf_log_dump_udp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xdcc0b184 nf_log_dump_sk_uid_gid -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xf68fc74d nf_log_dump_packet_common -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x02068ce0 nf_nat_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x09587612 nf_nat_l4proto_unique_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x10cd3761 nf_nat_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1aa02818 __nf_nat_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1b2f7af2 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4238e18f nf_nat_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9b5f5bd9 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa0b9d9d0 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb5575bd8 nf_nat_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x6dc7f281 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xf48ba12e nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0a2e3a0c synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5f339439 synproxy_build_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa42fdd94 synproxy_tstamp_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x070405be nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x08f47f37 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x165aad88 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x31702f4e nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x33edecb1 nft_unregister_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x34ae7216 nft_unregister_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6b45a5ea nft_set_gc_batch_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7a639054 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7db2b2fc nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8cc05d64 nft_register_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x918251e2 nft_validate_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x93028bf0 nft_register_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa93cec11 nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xca808c09 nft_unregister_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe1ae227f nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe24aca3a nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf642a7da nft_register_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x2468d3f1 nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7f7f7e78 nfnetlink_alloc_skb -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x85d29b7f nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x86726aba nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xaeb95ebf nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xcb33faa0 nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe053ba68 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x074fc6a8 nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x26bde3eb nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xdc869435 nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x1e9f38ba nfulnl_log_packet -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x366f2d6a nft_masq_init -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x9abce655 nft_masq_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xb5915a11 nft_masq_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x1ea269aa nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x2c85950f nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x546ffbef nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xc7d4526e nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xf5538760 nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xfa82eb17 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x12972809 nft_redir_init -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x55694b74 nft_redir_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xbd4bdec5 nft_redir_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xc8fadb6a nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xfb862b41 nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x012cc204 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0da896ec xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x161d1417 xt_compat_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x19fdaf1a xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1e2a3f10 xt_hook_link -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1f2b3c62 xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x238cc321 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3e14227f xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x45481884 xt_hook_unlink -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5801c8d1 xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f82f1f7 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x656cbc45 xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x691a6d69 xt_compat_calc_jump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6d2fcb02 xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7e2233b2 xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7f9f252c xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x97137d37 xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x980bcc51 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa146d21e xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcb82c458 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe04ebd10 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0b4971b xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec24fd82 xt_compat_add_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xef9e30b2 xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf9323d52 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x7c470866 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xc0f395bf xt_rateest_put -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x053c538c ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x487b3d18 ovs_vport_receive -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6df19b1b ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x925d62dc __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x97fa0a61 ovs_vport_deferred_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa88a846c ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xbba06879 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xbcddc2d9 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xcdf7675a ovs_netdev_detach_dev -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id -EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x1ad701ff rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x368ec3ac rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x431227df rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x4ebc9f5a rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x4f74b0a2 rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x510c6d47 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0x54c3aaf0 rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0x58406bbf rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0x5f30e8e5 rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x87c17c0c rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x8f68b749 rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x98cb5c5f rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0x9ac3362d rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0x9ac489c9 rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0x9f071330 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0xa5cfad71 rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xab896815 rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xadcad176 rds_page_copy_user -EXPORT_SYMBOL_GPL net/rds/rds 0xbe3d7a55 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0xc25fb0ea rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0xc2da8e38 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xd4445743 rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0xf75a3138 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0xf862e28f rds_send_get_message -EXPORT_SYMBOL_GPL net/rds/rds 0xfde7910c rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x5bd810cc rxrpc_register_security -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x81026787 rxrpc_unregister_security -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x6a545d54 gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xbd7206f2 gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd9f2775d svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01ac394a xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0212879e xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06420d5d rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06661708 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0672eace xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07199310 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07897b12 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a546ab6 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b0e06f2 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b1a9af2 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b3ba466 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c334c65 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f9b43b1 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10463318 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x107a5522 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x114624ae rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1198a2c5 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x127322b4 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1341aaec rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x151fc682 cache_seq_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x155934bc rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x174c5bf4 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x176571f4 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17a52c59 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18a3feb6 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x193c21a2 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a0dba75 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1aa91a86 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1af4daee xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ccf30a3 rpc_print_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e456d68 rpcauth_key_timeout_notify -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ee3b6c3 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22582115 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x227c127c xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x228a8ec0 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x229067f5 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2392c8e5 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24543e88 rpc_task_reset_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28253a01 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29c6ecc0 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ad4a8eb _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ad5a021 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b62daf5 rpc_get_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c734961 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e71e0a0 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ff8b15b svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3133e911 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a207af rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31ac3eb9 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3384f3e8 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x365031de rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36cdc1f9 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3817c9a3 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3beb8539 xdr_buf_read_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bebabfa rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cabe7f4 sunrpc_cache_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e1f7ff2 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x413758b1 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4158819c xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43c4f935 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45299dd5 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4834d131 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48d4d88e rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4920f020 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49b88610 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c62b363 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x501046df cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5247a82f rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5494352f svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x566edc9c rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5880f0a9 xprt_set_retrans_timeout_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58ffba15 svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59fcb7b5 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a6750b8 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bd397e1 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d34b023 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e0acd04 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fb419d9 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fc2fb00 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6057f87e rpcauth_cred_key_to_expire -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6624fbf5 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ba6dac cache_seq_stop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66d22b95 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66e356ff svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66fa6fcb xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6779dccc sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b90ddae rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6be74636 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c310230 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e522a68 rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fd29c47 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fdb9ce8 rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72dbf1ee rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74263767 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76de987c rpc_lookup_cred_nonblock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79ea639f svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b61fef0 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b950c17 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b9e6b8a rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cc6c6f4 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80a3aee6 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82c60273 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8474d6d3 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87852b11 xdr_skb_read_bits -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x880d17d4 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88e42e37 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89c54d44 rpc_lookup_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bfec61f rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d5d406c rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ee5db76 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f52dc51 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fd420aa svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x900acbaa csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9016019d xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90db2642 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9181b5fd rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93261ea9 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9472e08a rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9496eeca rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x950d9419 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95be5a2d svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95d14a6f svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x966159e6 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96e06821 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x971ccab8 __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9af4b678 xprt_set_retrans_timeout_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c803b38 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c96feac rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d2ad5b4 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d7f5582 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9debc844 svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f82e0a0 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1e3bd8c svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3d7c0ef rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa40f3cf6 rpcauth_generic_bind_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa65a453f xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8f49f27 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa996679a xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac4f3f42 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaca4a198 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaee515e7 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1822f7a svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51836fa svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb629eeb4 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6ecb028 xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb77e3e10 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb80e6ad0 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbaf32c84 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc3514e3 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbca9bcb1 xdr_set_scratch_buffer -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe081441 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe3ba964 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe877145 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe9c47b7 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf20965c put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc043cb18 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc077674c svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc429e613 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4d0c6e3 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4ffefdd rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc62f809b rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc67fdc36 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcda18864 xdr_partial_copy_from_skb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0996f26 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd15a3b93 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2a9cd64 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2d9b2e8 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd44feb80 xprt_lock_and_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd504f3a0 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5d4b854 cache_seq_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd798026d rpc_lookup_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd89794ca xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd973d11c rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc570343 rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd0baf5f rpc_protocol -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde6ac468 rpc_rmdir -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe01c4524 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe03d25fe xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2c4f5fb rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3582588 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe36856b2 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5567a30 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5e0aa45 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9732232 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe99005e8 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea3f6d0d rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea4a1cc5 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeaf06d9d xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb6a82e5 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeece8b3d xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf062ef7e svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2631a66 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6bc1561 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7fef27d bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9f4767a xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa6c99f8 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb6e267f sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc7350c8 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd281641 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0964965e vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0df752f0 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1216496c __vsock_create -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1cf216b8 vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2c488cd5 vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x31fc5a1a __vsock_core_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6873618f vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8a7cc66d vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x970b77bc vsock_pending_work -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa0c178e5 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa4d4d015 vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb402d3e9 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbffe3e12 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe83b1ade vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf388a7dd vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x47a67b2e ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x76ce5412 ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xb377ea49 ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xdf7211eb ipcomp_input -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x3fe35aea irq_bypass_unregister_consumer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x418873cc irq_bypass_register_producer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x888c5be5 irq_bypass_register_consumer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0xf6e772c3 irq_bypass_unregister_producer -EXPORT_SYMBOL_GPL vmlinux 0x0057767d __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x009a9810 pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x009c8b17 kvm_read_guest_atomic -EXPORT_SYMBOL_GPL vmlinux 0x00b783a9 tasklet_hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x00c69c66 unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0x00ed1cc3 blk_unprep_request -EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before -EXPORT_SYMBOL_GPL vmlinux 0x013de121 transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0x01413c5f css_schedule_reprobe -EXPORT_SYMBOL_GPL vmlinux 0x01e29e08 rhashtable_insert_rehash -EXPORT_SYMBOL_GPL vmlinux 0x0213cf11 filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0x02280e94 crypto_unregister_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x0234e085 tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0x0238f8dd blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x0290c656 unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0x02931659 alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x02c8ff55 invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0x02ebef25 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x02f90aa7 fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x0314bb9a bus_set_iommu -EXPORT_SYMBOL_GPL vmlinux 0x0319411e alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x031b3287 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x03b91591 x509_request_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x03d686c1 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x03df99c6 kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0x03ef48bb dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x04052950 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0x04200511 iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x042bbbd0 get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x0432b3d9 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x04570ae5 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x04969885 list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0x04b5549c __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x04c3025f sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0x04c340e7 iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04ea8706 __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0x04f209d6 pci_proc_domain -EXPORT_SYMBOL_GPL vmlinux 0x050e3da7 list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0x050f801a xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x05450e6b skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x05639f9d ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x0582cf07 iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0x060bd064 device_destroy -EXPORT_SYMBOL_GPL vmlinux 0x061b483d kernfs_path -EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x06552b3e attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0658097f net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x066c412d crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x06a7d521 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0x06da6524 debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0x07086d07 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x074bc5ea aead_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0x075d993f tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x075f3373 __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0x079ae141 inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07d77425 pm_complete_with_resume_check -EXPORT_SYMBOL_GPL vmlinux 0x07da1878 unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x0800fb65 nf_queue_entry_release_refs -EXPORT_SYMBOL_GPL vmlinux 0x080c90a4 handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0x0864cd16 zpci_disable_device -EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec -EXPORT_SYMBOL_GPL vmlinux 0x08d7578a shmem_get_seals -EXPORT_SYMBOL_GPL vmlinux 0x08dd1a1b pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0x08df8135 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x08f6cca4 css_general_characteristics -EXPORT_SYMBOL_GPL vmlinux 0x091dec23 scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x095cc117 kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL vmlinux 0x097d9c3b kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL vmlinux 0x09b0a219 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x09cbfd4a blk_add_request_payload -EXPORT_SYMBOL_GPL vmlinux 0x09ce9200 xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0x09d1a161 kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0x09e5b62f exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0x0a5f478a md_is_badblock -EXPORT_SYMBOL_GPL vmlinux 0x0a7d2452 __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x0a81472b blk_mq_request_started -EXPORT_SYMBOL_GPL vmlinux 0x0a90555c restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x0aa8b623 blk_mq_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x0aac0e49 netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x0ae24367 devres_find -EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b0bbd3b param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x0b594bba posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x0b64816e pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0x0b74f9b4 __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0x0b7f5eeb ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0x0b83379c __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0x0bc0c768 platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0x0bd178f5 cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x0bedb218 mmu_notifier_unregister_no_release -EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0c0c4b07 vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0x0c0f8387 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x0c1d62e5 gmap_enable -EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x0c3c6539 tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0x0c3d4dbb crypto_givcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x0c461669 crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0x0c6db451 unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x0cb60006 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x0ceb2208 pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0x0d3e9335 xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d685afe devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x0d84b425 kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0x0d9f51be tpm2_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x0dbde2b1 blk_queue_bypass_end -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0dfdb908 mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0x0e204153 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0x0e72a8f5 anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0x0ea41f64 pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x0eac83d3 crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0x0eb2b8ec class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0x0f0f55c3 set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0x0f196247 bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x0f3f9d3d sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x0f910e2a get_dcookie -EXPORT_SYMBOL_GPL vmlinux 0x0f9c22d5 crypto_register_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x0fe40d1e __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x101d9c37 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0x10339722 zpci_iomap_start -EXPORT_SYMBOL_GPL vmlinux 0x106cb4cf dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x10861901 bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0x10b2856b rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x119af014 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0x11ac33f1 blk_queue_bypass_start -EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x127e26b4 device_register -EXPORT_SYMBOL_GPL vmlinux 0x129e4793 net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0x12dd19c7 crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x12ec01d6 kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL vmlinux 0x12ee959e napi_hash_del -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x13236f86 pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x13385989 blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x134f1eb6 device_create -EXPORT_SYMBOL_GPL vmlinux 0x135cdbcf fuse_get_req_for_background -EXPORT_SYMBOL_GPL vmlinux 0x13679f6a cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen -EXPORT_SYMBOL_GPL vmlinux 0x13bd9d2d crypto_tfm_in_queue -EXPORT_SYMBOL_GPL vmlinux 0x13eb1d1b disk_get_part -EXPORT_SYMBOL_GPL vmlinux 0x13f358f1 l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0x13f6469e pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x1429c94e n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0x144709ea dax_fault -EXPORT_SYMBOL_GPL vmlinux 0x145879c3 pci_ats_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x1473d561 tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x14a724b6 put_pid -EXPORT_SYMBOL_GPL vmlinux 0x14afb745 tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x152f8b5a fib_select_path -EXPORT_SYMBOL_GPL vmlinux 0x1559980e device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x156af14b xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0x157bc422 s390_enable_skey -EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x15c43555 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started -EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x161edc82 inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0x1623a790 tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x163839c8 device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x163cf377 kvm_init -EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress -EXPORT_SYMBOL_GPL vmlinux 0x16593c85 tcp_peer_is_proven -EXPORT_SYMBOL_GPL vmlinux 0x169dfc50 rt_mutex_destroy -EXPORT_SYMBOL_GPL vmlinux 0x16b671f3 devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0x16c69147 inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x16df1c2c devres_add -EXPORT_SYMBOL_GPL vmlinux 0x16fd6aca device_add_property_set -EXPORT_SYMBOL_GPL vmlinux 0x17096b9d init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0x17468867 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online -EXPORT_SYMBOL_GPL vmlinux 0x17a70358 bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x17cb937b device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x17d8aab7 default_iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0x17df9296 blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x1827ec86 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0x1853ac0f nl_table -EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x18a27eee transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x18b664fc public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0x18c6aec2 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x1907179b pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0x19403f1c blk_mq_tags_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x1940d43d kvm_is_visible_gfn -EXPORT_SYMBOL_GPL vmlinux 0x19440b07 crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x19663dbc subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x199792af hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0x19a2f57e dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0x19ef4098 trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x1a40c06c crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0x1a53f835 vtime_account_irq_enter -EXPORT_SYMBOL_GPL vmlinux 0x1a910591 trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x1a9b259c vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0x1aac02fd tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing -EXPORT_SYMBOL_GPL vmlinux 0x1ae42dea handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0x1afc29b9 relay_open -EXPORT_SYMBOL_GPL vmlinux 0x1b09d039 xattr_getsecurity -EXPORT_SYMBOL_GPL vmlinux 0x1b20445b handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0x1b2345ef register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x1b26f4fb dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x1b6c5a67 chsc_error_from_response -EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return -EXPORT_SYMBOL_GPL vmlinux 0x1bc2b6f9 bio_clone_mddev -EXPORT_SYMBOL_GPL vmlinux 0x1bfb482f pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0x1c295966 iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c5be59a __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1c851780 pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1c94f62d crypto_create_tfm -EXPORT_SYMBOL_GPL vmlinux 0x1cf32702 bpf_prog_get -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d785ec5 __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0x1d7bb99c pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x1dc8650a pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0x1deff20a gmap_register_ipte_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1e0bd083 seq_open_net -EXPORT_SYMBOL_GPL vmlinux 0x1e43a74f kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1e5dd1aa virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e863a5b mddev_congested -EXPORT_SYMBOL_GPL vmlinux 0x1e95208e inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0x1e9b62d4 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x1eb1689b irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x1eb35238 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebac2bd getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ee619fe pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x1f186916 pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0x1f1a1a54 kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0x1f30805c bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x1f37e86c device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x1fa4bcc0 transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0x1fa67991 validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x1fa8adf4 kvm_get_dirty_log -EXPORT_SYMBOL_GPL vmlinux 0x1fb2e686 dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0x1fbe77d4 get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0x200356d0 sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x200f2b4e part_round_stats -EXPORT_SYMBOL_GPL vmlinux 0x20240476 kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x20534bed tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0x207f0b43 blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x20bf67ae inode_congested -EXPORT_SYMBOL_GPL vmlinux 0x20cafbee evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0x20de5193 kvm_disable_largepages -EXPORT_SYMBOL_GPL vmlinux 0x213d9be3 hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x213ec619 __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0x21695b9d crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x21870f24 fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x221943b9 scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x223d908a trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x224d489f ahash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x228c002b sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x228e47e6 dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 -EXPORT_SYMBOL_GPL vmlinux 0x22b7c219 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x22cd01c7 pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0x22dfe9ad __blk_run_queue_uncond -EXPORT_SYMBOL_GPL vmlinux 0x22e20b10 chsc_siosl -EXPORT_SYMBOL_GPL vmlinux 0x22f67ce2 __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0x2311b91e crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0x233169c0 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x23334621 __srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x233f5316 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0x236d8b6f kvm_read_guest_cached -EXPORT_SYMBOL_GPL vmlinux 0x237d59f6 zpci_load -EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x238d4bae fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0x23b0e9f5 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0x23c8b358 fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x23cc9719 blkg_prfill_stat -EXPORT_SYMBOL_GPL vmlinux 0x23d66b32 pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0x23df4f34 fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x23f5c1a4 crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0x23f71339 ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x23f92ab7 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x241bfd9f zpci_store_block -EXPORT_SYMBOL_GPL vmlinux 0x2425fcaf vcpu_load -EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0x2454cf5c __blk_put_request -EXPORT_SYMBOL_GPL vmlinux 0x24559e0a crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0x2462d2e7 __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key -EXPORT_SYMBOL_GPL vmlinux 0x24c6beee nr_iowait -EXPORT_SYMBOL_GPL vmlinux 0x250eef70 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x259c54ac find_symbol -EXPORT_SYMBOL_GPL vmlinux 0x25a5fa4b get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0x2607a61d css_chsc_characteristics -EXPORT_SYMBOL_GPL vmlinux 0x261dd5e3 raw_seq_open -EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock -EXPORT_SYMBOL_GPL vmlinux 0x263875f4 tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x2669f4b8 register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x26c58a75 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26e6dedf PageHuge -EXPORT_SYMBOL_GPL vmlinux 0x26e9b78c __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL vmlinux 0x2718ce75 sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0x27dcdada ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x27fccfad register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x2816b333 page_endio -EXPORT_SYMBOL_GPL vmlinux 0x281a45e4 perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0x288766a4 virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0x289ca20b ping_hash -EXPORT_SYMBOL_GPL vmlinux 0x28bae415 blkcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0x28d5d9b5 percpu_ida_free_tags -EXPORT_SYMBOL_GPL vmlinux 0x28dbccc2 crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0x28e4c278 smpboot_register_percpu_thread_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x294cfd37 css_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0x29a4a47b debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x2a054d2f pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x2a1538ca lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x2a453a71 pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x2a64dd62 bus_register -EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2a74d6b0 klist_next -EXPORT_SYMBOL_GPL vmlinux 0x2a7632af unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x2a81e7e4 md_new_event -EXPORT_SYMBOL_GPL vmlinux 0x2ab14d68 pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0x2ab61caf pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0x2ad5231e ccw_device_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0x2afcb2ed virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0x2b2869e3 pci_debug_err_id -EXPORT_SYMBOL_GPL vmlinux 0x2b5fe8ec wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0x2b6e0627 fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0x2b94e719 iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0x2bacef0b __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0x2bad91fe ipl_info -EXPORT_SYMBOL_GPL vmlinux 0x2badd318 virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0x2bcded49 __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x2bfcbe5e kvm_flush_remote_tlbs -EXPORT_SYMBOL_GPL vmlinux 0x2c10fa39 iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0x2c13e426 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2c28cfdb klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c420fec dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x2c44e942 ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0x2c834cd8 transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x2cc8dda1 crypto_larval_lookup -EXPORT_SYMBOL_GPL vmlinux 0x2cdc04d9 __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq -EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0x2d0dc49f tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d2c49c2 security_kernel_fw_from_file -EXPORT_SYMBOL_GPL vmlinux 0x2d37c8d5 pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d4955c2 __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x2d8537ba device_show_int -EXPORT_SYMBOL_GPL vmlinux 0x2df1ba0d memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x2e1d43cf lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2e47b7fd fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0x2e49a808 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x2e9e05a4 __netlink_alloc_skb -EXPORT_SYMBOL_GPL vmlinux 0x2eb79d74 kvm_io_bus_write -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ec35a8c tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x2ec92012 scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x2ef1e7d6 relay_flush -EXPORT_SYMBOL_GPL vmlinux 0x2ef71eeb flush_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0x2efa875e scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x2f0e06e3 pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x2f18d2ec nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register -EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x2f9ea1da bio_trim -EXPORT_SYMBOL_GPL vmlinux 0x2fa6269f fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0x2fcb34c5 crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x2fe62fef skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x303d036d __ablkcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x3045d3a2 crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x306842c9 device_attach -EXPORT_SYMBOL_GPL vmlinux 0x306a15a2 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x30cfdb08 devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock -EXPORT_SYMBOL_GPL vmlinux 0x310d8534 __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0x3112965c crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0x313189c3 rhashtable_walk_start -EXPORT_SYMBOL_GPL vmlinux 0x313f049c blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0x3171d611 pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0x317c1820 percpu_ida_destroy -EXPORT_SYMBOL_GPL vmlinux 0x318920f6 mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0x31a54b27 s390_reset_cmma -EXPORT_SYMBOL_GPL vmlinux 0x31b5b4b3 crypto_init_shash_spawn -EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put -EXPORT_SYMBOL_GPL vmlinux 0x31d42cab key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0x31e29c23 blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval -EXPORT_SYMBOL_GPL vmlinux 0x3257456c pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update -EXPORT_SYMBOL_GPL vmlinux 0x329ab260 pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x329f3b16 pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x329f4b3f tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec -EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32e824ba __get_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x3302c720 iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0x330b27f8 driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition -EXPORT_SYMBOL_GPL vmlinux 0x33618161 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0x33996da2 platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0x33c4535e device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0x33f62439 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x34121f64 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x341584a4 yield_to -EXPORT_SYMBOL_GPL vmlinux 0x3460075f ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get -EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0x34b1c3bb rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x34d07868 map_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x34da89fc pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x34dfb4fd relay_reset -EXPORT_SYMBOL_GPL vmlinux 0x34e7313f component_master_add_child -EXPORT_SYMBOL_GPL vmlinux 0x34eaf807 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched -EXPORT_SYMBOL_GPL vmlinux 0x3554a7b9 pci_domain_nr -EXPORT_SYMBOL_GPL vmlinux 0x356750d7 pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0x3577bd1d scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0x3591c275 __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0x35996ff4 ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x35c90364 __inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0x35f69dc3 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x3623f3a2 crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36b3fc96 gmap_unmap_segment -EXPORT_SYMBOL_GPL vmlinux 0x36bb0f76 kvm_release_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x36d9d370 driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x3714721e nf_unregister_afinfo -EXPORT_SYMBOL_GPL vmlinux 0x371dbd7c gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0x372f3459 crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x373d4cc1 irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x375116d1 ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x379d6235 pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0x37c049ab blk_queue_rq_timed_out -EXPORT_SYMBOL_GPL vmlinux 0x37ceea7b perf_trace_buf_prepare -EXPORT_SYMBOL_GPL vmlinux 0x37d0a334 tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x380945aa __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0x38274b4f uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3838d887 iommu_present -EXPORT_SYMBOL_GPL vmlinux 0x384a6981 __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0x3875d342 wait_for_tpm_stat -EXPORT_SYMBOL_GPL vmlinux 0x38a33254 shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0x38d3dd57 tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x38eee051 __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0x390161b3 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0x39082563 pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0x390d1d9b tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0x391d5504 skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0x393ffa6f asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0x397ae869 klp_enable_patch -EXPORT_SYMBOL_GPL vmlinux 0x39a27a3b system_verify_data -EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module -EXPORT_SYMBOL_GPL vmlinux 0x3a01f208 crypto_attr_alg2 -EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3aaa68e0 devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0x3ac3023b __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x3b15fd18 __init_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0x3b17473f class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3b194816 tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0x3b352756 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0x3b52e390 sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x3b8794fd __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x3ba5062a platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x3bb54291 pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0x3bd26425 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0x3bd3bece __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0x3bfb53c4 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0x3c10b6c4 __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x3c1d859a __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x3c5b5e00 __rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0x3c8d4cae fuse_put_request -EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag -EXPORT_SYMBOL_GPL vmlinux 0x3c998500 pci_try_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x3c9c41b7 pci_intx -EXPORT_SYMBOL_GPL vmlinux 0x3ca7a39d s390_dma_ops -EXPORT_SYMBOL_GPL vmlinux 0x3cab30de bdev_write_page -EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3d287dc7 device_create_vargs -EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d41d986 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x3d57d6d2 inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0x3d6d6eed pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0x3d7d71ef page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0x3d8756b2 __rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3dac8a02 devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab -EXPORT_SYMBOL_GPL vmlinux 0x3dce402e devres_remove -EXPORT_SYMBOL_GPL vmlinux 0x3dce81bd tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3dd75977 page_cache_sync_readahead -EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3df1e7ff find_module -EXPORT_SYMBOL_GPL vmlinux 0x3dfc436e percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x3e1f72e0 kvm_vcpu_cache -EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e84d467 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x3e8deec2 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL vmlinux 0x3e948de9 unregister_reset_call -EXPORT_SYMBOL_GPL vmlinux 0x3e9e6031 blkg_print_stat_bytes_recursive -EXPORT_SYMBOL_GPL vmlinux 0x3eb38a31 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x3eb5c682 inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x3ed2959c class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0x3f07f079 pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0x3f09f201 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0x3f4c5dd1 nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0x3f63f16f ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x3f70eaf7 get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0x3f7d6e98 kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0x3fd2f6fb chsc_sadc -EXPORT_SYMBOL_GPL vmlinux 0x3fda5752 scm_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x3fe2e9d2 pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x3fe8415a ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0x40055530 wakeup_source_drop -EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0x405f6a0c dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources -EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x406d40e6 ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x40933a15 fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x40c5d642 class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x410ba8e2 kvm_irq_has_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4157e5a7 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x415beec0 platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x416ab8b7 sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x418d2fcf pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0x41a9d652 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0x41b83a86 __remove_pages -EXPORT_SYMBOL_GPL vmlinux 0x41bbadf4 dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x41de34fd nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x41e73178 class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x4204f7e2 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0x421c11b0 fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0x4223ee4b zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0x42458954 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done -EXPORT_SYMBOL_GPL vmlinux 0x42610e0a device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x42f10af0 dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x4329a51f crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x43443c35 srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x435f4999 invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x436b1b91 fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0x4385360c dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key -EXPORT_SYMBOL_GPL vmlinux 0x43b466b0 gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL vmlinux 0x43c33665 isc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x43c8a5b1 task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0x43d3145f iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x43eca819 pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0x441d8544 ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x44341f94 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0x44648f37 tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44e1696b aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0x44eb3994 __atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x4521356b tcp_fetch_timewait_stamp -EXPORT_SYMBOL_GPL vmlinux 0x453ac28e cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x45608385 tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0x456cab38 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x45958c10 __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x45960716 __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x45a81a1a free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x45c8645f device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x45c86e70 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x46017d7f md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0x460773d1 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x4676b143 tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4690f4e9 pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x46a7d7e3 __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0x46ded05b __online_page_increment_counters -EXPORT_SYMBOL_GPL vmlinux 0x470b75a3 blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0x47440d2f __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x474d8bb3 pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4774d24c sg_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x47850013 bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x47b87333 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x47bb8173 kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0x47c4f7fc nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0x47d2bb61 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x482d5c88 hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh -EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0x48842859 blocking_notifier_chain_cond_register -EXPORT_SYMBOL_GPL vmlinux 0x4888f2f7 pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x48c545ea debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0x48c62e4a eventfd_ctx_read -EXPORT_SYMBOL_GPL vmlinux 0x48cb28fb register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x48d5e895 virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x48e8651b md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0x48f44f93 setup_irq -EXPORT_SYMBOL_GPL vmlinux 0x4909f3de device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x492df048 register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x49377ebf pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0x495c3e5e md_stop -EXPORT_SYMBOL_GPL vmlinux 0x49636338 device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x4984e564 iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x49abfd03 bsg_request_fn -EXPORT_SYMBOL_GPL vmlinux 0x49b3bcde raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x49cfacf1 io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x49e18a39 bdev_read_page -EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4a07af99 tpm2_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name -EXPORT_SYMBOL_GPL vmlinux 0x4a4e0681 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4a5a44b1 pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x4a6538df hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x4a95468d clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x4aa23cc8 blkg_print_stat_bytes -EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0x4abc1779 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0x4abe26d1 md_ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x4ad990ef class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x4af7b130 crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x4b18565b static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x4b1bc5c6 srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x4b292de4 pskb_put -EXPORT_SYMBOL_GPL vmlinux 0x4b2f68e7 __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x4b3e319f subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0x4b840dfd probe_kernel_read -EXPORT_SYMBOL_GPL vmlinux 0x4b91becc device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0x4b9660ef __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4bc3ddcb scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0x4bc99708 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x4bd86b5e platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x4bf1cf5b list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x4c33b61d bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4c641204 component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table -EXPORT_SYMBOL_GPL vmlinux 0x4c94df4e rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0x4ca2c345 crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d1a9c00 ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0x4d5230a8 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x4d7c3e0d __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0x4d8d51ba apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0x4e25e79d crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x4e2b916f dax_pmd_fault -EXPORT_SYMBOL_GPL vmlinux 0x4e340ad6 zpci_stop_device -EXPORT_SYMBOL_GPL vmlinux 0x4e8b48cf kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x4ec153c6 nr_running -EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0x4f415bc0 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0x4f48970b add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f9bc0ab hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0x4fc539b5 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4ff5f3e4 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x5048ae4c put_device -EXPORT_SYMBOL_GPL vmlinux 0x507de8c6 add_memory -EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test -EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x50abc2d4 kvm_vcpu_block -EXPORT_SYMBOL_GPL vmlinux 0x50b293e3 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x50c44f70 virtqueue_get_used -EXPORT_SYMBOL_GPL vmlinux 0x50c99e3f gmap_discard -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x5157d77f __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x51663cd9 rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x51a1992e iommu_map -EXPORT_SYMBOL_GPL vmlinux 0x51b998d1 blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0x52483557 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x5265c326 __blkdev_driver_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x52a0f61b crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x52b870c1 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x52c0bf53 __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0x52ef6951 __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x52f41598 fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0x5324d04f bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x5364b915 sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x537b24f7 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0x537f1c64 component_master_add -EXPORT_SYMBOL_GPL vmlinux 0x539ca2b1 bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0x53a2ef73 get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0x53d3a3b8 tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x54a871ba fuse_get_req -EXPORT_SYMBOL_GPL vmlinux 0x54bdc8f7 appldata_register_ops -EXPORT_SYMBOL_GPL vmlinux 0x54dc87e5 udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0x54ef3d03 ioremap_page_range -EXPORT_SYMBOL_GPL vmlinux 0x54f4100f gmap_unregister_ipte_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5520ac2b sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x552904af unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0x553ea6fb kvm_vcpu_init -EXPORT_SYMBOL_GPL vmlinux 0x555ae3b4 event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0x559d67c0 devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x55d4543c scsi_internal_device_unblock -EXPORT_SYMBOL_GPL vmlinux 0x55e9bc87 elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0x55ed8ace sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x55f2580b __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x55fe98f9 fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x560e23d4 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x56586c49 pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen -EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map -EXPORT_SYMBOL_GPL vmlinux 0x56897dfb __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0x56a83586 crypto_ahash_type -EXPORT_SYMBOL_GPL vmlinux 0x56c0a2d5 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up -EXPORT_SYMBOL_GPL vmlinux 0x56d82100 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x571528f6 fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0x571bc21e fat_attach -EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0x57303478 blk_set_queue_dying -EXPORT_SYMBOL_GPL vmlinux 0x573b1fe1 wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0x575c5f94 execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0x577a3ccf class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x579031d4 fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57a55fa8 vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0x57b89909 crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x57ecb77a fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0x5801e49a ccw_device_siosl -EXPORT_SYMBOL_GPL vmlinux 0x58053723 md_run -EXPORT_SYMBOL_GPL vmlinux 0x58064f85 mmput -EXPORT_SYMBOL_GPL vmlinux 0x58220916 rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0x587424e7 pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0x5900eeba kvm_vcpu_uninit -EXPORT_SYMBOL_GPL vmlinux 0x5911ece8 inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0x59473a81 chp_get_sch_opm -EXPORT_SYMBOL_GPL vmlinux 0x59bdb9d6 device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x59dde3f1 fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x59f2b804 perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x59f8aea1 virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x59fe6f18 sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x5a48d7f8 virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a54476a crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x5a5ec9d9 sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0x5a6c36c6 blkg_print_stat_ios_recursive -EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5aaf8777 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0x5abccfca unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x5ac2727f smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x5b9f4728 scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5bdde282 cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x5be9366b perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0x5c2f2906 nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x5c61ebe2 rt_mutex_timed_lock -EXPORT_SYMBOL_GPL vmlinux 0x5c6e9ba0 mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0x5c71d21a sched_clock -EXPORT_SYMBOL_GPL vmlinux 0x5ca17bf5 pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5cad4937 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x5ce64ec1 devres_release -EXPORT_SYMBOL_GPL vmlinux 0x5cfcf452 ping_proc_register -EXPORT_SYMBOL_GPL vmlinux 0x5d4cd952 skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x5d7c78fd pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0x5d873027 page_cache_async_readahead -EXPORT_SYMBOL_GPL vmlinux 0x5d8e25d1 bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x5d9adee0 blk_mq_register_disk -EXPORT_SYMBOL_GPL vmlinux 0x5d9c1260 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0x5d9d51da ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x5da55ac2 pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x5da5d43b component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5dd2c15c raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x5e0c0d2c fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0x5e1c9f94 pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x5e313b1a hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0x5e3a50d1 __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x5e3c12ab security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0x5e4ab9d6 __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x5e5353fd __put_net -EXPORT_SYMBOL_GPL vmlinux 0x5e697d42 devres_get -EXPORT_SYMBOL_GPL vmlinux 0x5e743509 scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0x5e797e6b platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0x5f226035 mod_delayed_work_on -EXPORT_SYMBOL_GPL vmlinux 0x5f34c4d3 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x5f5a6fd0 bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0x5f680070 fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5f6e79df inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0x5f838a41 securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x5fc0fe40 blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0x601078cc tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush -EXPORT_SYMBOL_GPL vmlinux 0x60720f6c smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x607ee259 vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0x6090dbef klist_init -EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL_GPL vmlinux 0x60c95db0 static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0x60d0b1fd anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0x60d14dc2 trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x613305ba dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x614ecf3c inet6_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0x6169cfc2 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x6178dc6a sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0x61a97e5f register_reset_call -EXPORT_SYMBOL_GPL vmlinux 0x61cd4f59 unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x61d59b87 fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0x61f029f7 unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x62c12180 fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0x6330f404 blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0x63352eea preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6375c267 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x63a48edf ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x63cdfb5b sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0x63cfc3d6 crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0x63e81525 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x63f4dc09 bprintf -EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x642f4251 pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched -EXPORT_SYMBOL_GPL vmlinux 0x645d3111 skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x64664d80 pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x64892b7a sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0x64aa2cde pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x64ccecfa fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0x656eec3f task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0x65ba8a4b sched_setscheduler_nocheck -EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65d84dec rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0x65e744df sched_clock_base_cc -EXPORT_SYMBOL_GPL vmlinux 0x6613e8bf rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x6614322c fuse_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x6619a388 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x6619a745 blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x663d1281 mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x66426c3d pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x66696252 elv_register -EXPORT_SYMBOL_GPL vmlinux 0x666fde97 crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0x66766ad0 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x669da1fd kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL vmlinux 0x66a25234 chsc_ssqd -EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x66ca8e8d debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66f53983 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0x671de493 vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy -EXPORT_SYMBOL_GPL vmlinux 0x67735b61 pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x67b45983 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x67ecc015 ping_seq_fops -EXPORT_SYMBOL_GPL vmlinux 0x68027296 fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x68175039 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x68324a41 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0x689b953e subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x6918ea6f devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval -EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x698288f7 dax_clear_blocks -EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0x699b326b scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x6a785950 device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a8ab1d2 file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x6ac01ba0 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x6ae9f0cc xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0x6aece509 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0x6b852374 virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0x6b8b2125 system_trusted_keyring -EXPORT_SYMBOL_GPL vmlinux 0x6ba36325 add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0x6bb2b48f pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x6bc7c12d mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0x6be5162c freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x6beaf81a component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x6c11934f kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x6c12e8ae pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0x6c635363 exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0x6c7d49a0 blkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions -EXPORT_SYMBOL_GPL vmlinux 0x6ca2062d device_remove_property_set -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6d204fd2 crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d37be97 get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x6d6f0e21 crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0x6deaac8f pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0x6e0d82f6 ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x6e685498 kill_pid_info_as_cred -EXPORT_SYMBOL_GPL vmlinux 0x6e722741 vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x6e7298db put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e920a33 blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x6ef60373 klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x6eff28bd pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x6f0196cc digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0x6f695e87 __gmap_zap -EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto -EXPORT_SYMBOL_GPL vmlinux 0x6f821920 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x6fa8d6ec sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x6fed2817 dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x70614e7a component_del -EXPORT_SYMBOL_GPL vmlinux 0x70625812 class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x707ca312 alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0x70b85c27 pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated -EXPORT_SYMBOL_GPL vmlinux 0x70f32051 register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x71743e1e device_init_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x717a322a blkdev_read_iter -EXPORT_SYMBOL_GPL vmlinux 0x718e48b1 posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab -EXPORT_SYMBOL_GPL vmlinux 0x71e8302d fat_detach -EXPORT_SYMBOL_GPL vmlinux 0x720fd260 bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0x72233218 crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x72e2c605 task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0x72e4f9c2 __sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x731721e5 split_page -EXPORT_SYMBOL_GPL vmlinux 0x735daf24 kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0x738c092a module_mutex -EXPORT_SYMBOL_GPL vmlinux 0x73aa0a8e netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x73af2da4 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x73bc8715 device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x74194dd6 crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x746a993f bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0x7474e21f pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0x74937272 unregister_jprobes -EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x752a06b5 gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0x752a273d dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x7544c06b tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0x7561d70b crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x757845e9 dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x75a4cc0f crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x75a849c0 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0x75c9f975 gmap_free -EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x75dbb332 devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0x76085d57 vcpu_put -EXPORT_SYMBOL_GPL vmlinux 0x7614c62d crypto_alloc_instance2 -EXPORT_SYMBOL_GPL vmlinux 0x76278945 pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x76436cf8 perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x76596baf blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0x7677fc6b css_sched_sch_todo -EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x76e06795 cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0x7717e715 sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0x771908ea scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x77391eb2 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x777237ce __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x779845c4 vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x77b669a2 device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x77bac45a pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x77c6076d bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0x780f26d4 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0x781505d9 crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x78251bf7 __add_pages -EXPORT_SYMBOL_GPL vmlinux 0x7834dcd6 vtime_account_system -EXPORT_SYMBOL_GPL vmlinux 0x784b57fe ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x78a329a9 bio_alloc_mddev -EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0x78eb657c skcipher_geniv_init -EXPORT_SYMBOL_GPL vmlinux 0x79308a0a tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off -EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x79732208 blkg_stat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x79cb43ee tpm2_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x79d66a3c request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79e2359e securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x79fb78a5 security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0x7a16c644 user_read -EXPORT_SYMBOL_GPL vmlinux 0x7a2d9553 irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0x7a75f7ca kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0x7aa64803 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL vmlinux 0x7af9c636 ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x7b301d76 __kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0x7b3bdd5b tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x7b70ed5c pm_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0x7b9becd3 pci_debug_msg_id -EXPORT_SYMBOL_GPL vmlinux 0x7bea20f1 virtqueue_get_avail -EXPORT_SYMBOL_GPL vmlinux 0x7c2a9869 pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x7c728e5e mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x7c75ba97 pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x7c85d14c wbc_account_io -EXPORT_SYMBOL_GPL vmlinux 0x7c88687e tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x7c8e7c17 devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0x7c9158b8 bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7d4d19fa devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0x7d509371 smpboot_update_cpumask_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x7d58f22f pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d6320ea __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x7d6b9e69 sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0x7d72a346 pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x7d86ab7d scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7de1919b trace_clock -EXPORT_SYMBOL_GPL vmlinux 0x7e059417 subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0x7e6d29a1 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0x7eb5a5a1 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7ed4e43b posix_timer_event -EXPORT_SYMBOL_GPL vmlinux 0x7f13d491 pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f9157f4 use_mm -EXPORT_SYMBOL_GPL vmlinux 0x7f95f2fc klp_disable_patch -EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x8081b7b6 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0x8082b64d device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x812015ba __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x8128a78b hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0x8144bb3d pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x8156016f dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0x815853b6 fsnotify -EXPORT_SYMBOL_GPL vmlinux 0x817eb233 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x81afb023 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0x81f5251a shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0x8220d788 wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0x829ed5f9 scsi_internal_device_block -EXPORT_SYMBOL_GPL vmlinux 0x82d070d6 get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x834f573f trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0x835f46ac __module_text_address -EXPORT_SYMBOL_GPL vmlinux 0x836fc55e driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x837db219 tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0x838b2ddc crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0x838e273b mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x83b0816e __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0x83bd4bd7 pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0x840c9180 __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0x841c9e40 ref_module -EXPORT_SYMBOL_GPL vmlinux 0x8428c7c1 debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x8431e55e __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x84326a22 dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x84a7632e dm_get_rq_mapinfo -EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x84c6cc1f blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x8551362e device_add -EXPORT_SYMBOL_GPL vmlinux 0x858baf91 disk_map_sector_rcu -EXPORT_SYMBOL_GPL vmlinux 0x85a16e0a device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x85eb2600 get_ccwdev_by_dev_id -EXPORT_SYMBOL_GPL vmlinux 0x86055213 __pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x860f5a60 __module_address -EXPORT_SYMBOL_GPL vmlinux 0x86189582 posix_timers_register_clock -EXPORT_SYMBOL_GPL vmlinux 0x861c4ad7 percpu_ida_for_each_free -EXPORT_SYMBOL_GPL vmlinux 0x863ca66e disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x864a5122 kvm_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x868f99fb crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x86ad5932 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0x86bee6ee fuse_request_send -EXPORT_SYMBOL_GPL vmlinux 0x86c18440 zpci_store -EXPORT_SYMBOL_GPL vmlinux 0x86e1d1f2 __class_create -EXPORT_SYMBOL_GPL vmlinux 0x86ed23e5 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x86f32c68 alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x8702e548 process_srcu -EXPORT_SYMBOL_GPL vmlinux 0x87a7b092 console_drivers -EXPORT_SYMBOL_GPL vmlinux 0x87ceb397 hypervisor_kobj -EXPORT_SYMBOL_GPL vmlinux 0x87ebda32 crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0x880a5186 skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0x8854341a fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0x8855f138 __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x885985d0 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x887019e3 kern_mount_data -EXPORT_SYMBOL_GPL vmlinux 0x887121c6 pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x88838bc7 kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x889001c6 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0x88c402f9 task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0x891dc56c crypto_blkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x89568562 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0x895c46ce alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x89b69e80 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x89cf2efd bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0x89dda8be skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x89f908c5 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x8a12a0d1 devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0x8a2692bc bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x8a608f13 unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x8a91d1aa shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x8aab5511 ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8ae94d33 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x8aefc666 __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x8b0970ed virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0x8b3e452d gmap_do_ipte_notify -EXPORT_SYMBOL_GPL vmlinux 0x8b8e9293 crypto_ablkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x8bf013d9 blkcipher_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c067f0a driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0x8c3a16df percpu_up_read -EXPORT_SYMBOL_GPL vmlinux 0x8c5e822f device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x8c61b5a6 static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0x8c8d4e29 pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params -EXPORT_SYMBOL_GPL vmlinux 0x8cfe1c2d device_find_child -EXPORT_SYMBOL_GPL vmlinux 0x8d0fc44d driver_register -EXPORT_SYMBOL_GPL vmlinux 0x8d15b729 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d259280 __get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x8d387c6e find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0x8d54d213 devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x8d82842e __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0x8d8d6476 crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0x8d8ec1e2 blkg_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x8da01274 kvm_get_pfn -EXPORT_SYMBOL_GPL vmlinux 0x8da5dc93 cpu_topology -EXPORT_SYMBOL_GPL vmlinux 0x8db616a5 unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x8dc58d76 debugfs_remove_recursive -EXPORT_SYMBOL_GPL vmlinux 0x8dfd5821 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x8e1cd06f kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL vmlinux 0x8e3ecb54 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x8e4d12b1 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0x8e505f0d devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x8e67971f pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0x8e8820cc raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x8e8ee5b9 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x8ee7a73f zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0x8f00356a netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0x8f061ced kvm_write_guest_cached -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f1301ef platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0x8f1a98e4 tpm2_startup -EXPORT_SYMBOL_GPL vmlinux 0x8f232faf scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x8f277392 fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0x8f4d6a6d bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x8f681035 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8f74bcc8 blkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x8f859301 __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x8f8d3410 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0x8fbca5ce xfrm_inner_extract_output -EXPORT_SYMBOL_GPL vmlinux 0x8fde2f0c register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x90163105 __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x9042a649 crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0x90438218 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0x904d5515 crypto_alloc_instance -EXPORT_SYMBOL_GPL vmlinux 0x9053ec2b __pci_complete_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x90567ccb scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0x9059c111 shash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x9063ebf9 blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x907e0e22 inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x907f0958 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x90b5fb02 blk_queue_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x90c1c4f0 css_sch_is_valid -EXPORT_SYMBOL_GPL vmlinux 0x90d4002c device_create_file -EXPORT_SYMBOL_GPL vmlinux 0x90e5d678 trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0x914da882 cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x918d6891 inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x9195a88d find_vpid -EXPORT_SYMBOL_GPL vmlinux 0x91a3ca10 tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0x91c1ef59 __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x91c31754 srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0x91fbee40 __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x91fd09a5 bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x91feb7ec replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0x920ba0b4 iommu_domain_window_disable -EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x924f4d0d sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x9288a2fc kvm_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x92af8956 bio_associate_current -EXPORT_SYMBOL_GPL vmlinux 0x92b1e410 trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92dd0eb8 clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x932b50db x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0x932c552d iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x935848f5 crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0x93589e33 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x936ac466 l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0x938a0e54 gfn_to_pfn_prot -EXPORT_SYMBOL_GPL vmlinux 0x93a0f46a clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0x93d0b2bb crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0x93f64810 debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0x93f72cc4 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x93f9d9e2 dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x94209f6e shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x942e5c76 sched_setscheduler -EXPORT_SYMBOL_GPL vmlinux 0x947f4d31 pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x9481c307 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x948b7bf4 sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x949e2010 attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x94ea3646 component_master_del -EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop -EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x953d5054 disk_part_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x954163d7 relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x95459672 appldata_diag -EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x95ae2b8c transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x95b21a2b dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x95e33ae4 cmf_read -EXPORT_SYMBOL_GPL vmlinux 0x961a926e tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x96304881 bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x9648941d device_del -EXPORT_SYMBOL_GPL vmlinux 0x9649cc35 tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x965df31b gmap_map_segment -EXPORT_SYMBOL_GPL vmlinux 0x965f82f4 pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0x96c56d81 shmem_add_seals -EXPORT_SYMBOL_GPL vmlinux 0x96e3a9ad kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x97477690 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x974f7f3e skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x978793f5 freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x97b7033d single_release_net -EXPORT_SYMBOL_GPL vmlinux 0x97c1a6f3 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x981afb4f trace_buffer_unlock_commit_regs -EXPORT_SYMBOL_GPL vmlinux 0x981f0338 kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0x982cd486 __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9871c207 raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x98876a1d virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0x98daeb4f blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x98f8b355 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x98fa48be relay_close -EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on -EXPORT_SYMBOL_GPL vmlinux 0x992acb63 pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0x9937f689 gmap_translate -EXPORT_SYMBOL_GPL vmlinux 0x993d16df __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x99416c33 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range -EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x999ebd40 trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x99ab996e ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x99d9a612 kick_process -EXPORT_SYMBOL_GPL vmlinux 0x99fa21e6 kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x9a072f61 klp_unregister_patch -EXPORT_SYMBOL_GPL vmlinux 0x9a0a535c ablkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a23288b pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x9a422f05 __gmap_translate -EXPORT_SYMBOL_GPL vmlinux 0x9a59e7a4 debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck -EXPORT_SYMBOL_GPL vmlinux 0x9aca7664 fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0x9aea73a0 __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9b1972d3 pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x9b509937 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0x9bd651c6 gfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9c077612 kvm_write_guest -EXPORT_SYMBOL_GPL vmlinux 0x9c36c019 dm_disk -EXPORT_SYMBOL_GPL vmlinux 0x9c3938b2 crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0x9c5caae9 device_property_present -EXPORT_SYMBOL_GPL vmlinux 0x9c6da4c5 user_describe -EXPORT_SYMBOL_GPL vmlinux 0x9c887a38 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0x9caf85c6 unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x9cb0bb0f __sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x9cb700e0 register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9cec2be2 nf_register_afinfo -EXPORT_SYMBOL_GPL vmlinux 0x9d9c3529 static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x9da8e928 pci_try_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x9df63e46 vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0x9e1032c9 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e5abb03 skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x9ecfd1ef md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0x9f125b4a vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x9f280dff cio_update_schib -EXPORT_SYMBOL_GPL vmlinux 0x9f871975 hugetlb_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x9fae1a5b iommu_domain_get_attr -EXPORT_SYMBOL_GPL vmlinux 0x9fcb2361 vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fdbabfd ablkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9ffe04bf pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x9fffa6e9 simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0xa049a4f4 pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0xa0c19027 remove_irq -EXPORT_SYMBOL_GPL vmlinux 0xa1426fd0 class_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa16eccd7 sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0xa1b82797 rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0xa1ee5691 iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0xa21df4f8 dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xa250652b gmap_test_and_clear_dirty -EXPORT_SYMBOL_GPL vmlinux 0xa26a077e balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa27a81da ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0xa292ac95 srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa2a6215f nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xa2a97b66 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0xa2ac5519 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xa2c41e76 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0xa2f734c1 debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0xa307c06c pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0xa3110d92 pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0xa3562864 __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0xa359af38 inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0xa3678c1f is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0xa373e0cf percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0xa374e051 blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xa3801d7f __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register -EXPORT_SYMBOL_GPL vmlinux 0xa3a8060b relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3c9e111 tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0xa404f3f3 gmap_ipte_notify -EXPORT_SYMBOL_GPL vmlinux 0xa40fc90b device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xa43487a4 pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xa4a42813 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0xa4c17757 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0xa5294631 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xa53d1e0d crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0xa5481736 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xa564270c cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0xa589ea15 root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa5a41cb4 pci_restore_ats_state -EXPORT_SYMBOL_GPL vmlinux 0xa5c4fd8a crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa6030e28 trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6c5400d __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa707d342 crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0xa70d194e balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0xa71358b1 posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0xa7f83da4 udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xa80141ee blkcipher_aead_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0xa80619fe trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0xa8131c3e pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xa815ee64 driver_find -EXPORT_SYMBOL_GPL vmlinux 0xa8324509 skcipher_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa84ed0c5 devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa8763cc8 kvm_get_kvm -EXPORT_SYMBOL_GPL vmlinux 0xa8ad6c74 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xa8e0dfb2 key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xa8ee2b49 crypto_alloc_pcomp -EXPORT_SYMBOL_GPL vmlinux 0xa8ff2a2d crypto_alg_lookup -EXPORT_SYMBOL_GPL vmlinux 0xa91180a0 fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xa92ea427 kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa93ca7d1 inet_csk_compat_setsockopt -EXPORT_SYMBOL_GPL vmlinux 0xa99d5417 key_type_user -EXPORT_SYMBOL_GPL vmlinux 0xa9a4ceab blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0xa9a53aa0 tpm_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xa9aef2e1 gfn_to_hva_memslot -EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9e2442f gmap_disable -EXPORT_SYMBOL_GPL vmlinux 0xa9ff15b9 s390_enable_sie -EXPORT_SYMBOL_GPL vmlinux 0xaa20a08d kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0xaa81c958 disk_part_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xaa878322 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0xaa883385 dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xaaa56bfa rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaab05483 init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0xaabf43d4 virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0xab2842b2 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0xab567d31 percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request -EXPORT_SYMBOL_GPL vmlinux 0xab875da0 debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0xab97a97d s390_handle_mcck -EXPORT_SYMBOL_GPL vmlinux 0xabb2f80d wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0xabc322da kvm_read_guest -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabe12262 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0xabe2394e iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0xabf28367 subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xac194a50 single_open_net -EXPORT_SYMBOL_GPL vmlinux 0xac208973 tcp_death_row -EXPORT_SYMBOL_GPL vmlinux 0xac27d34b device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0xac51f56c list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0xac5bb6e8 pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0xac5ed581 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0xac5fb0d3 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0xac87fd0f devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xac8bb3a2 pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xac9a1280 pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0xacb8891c ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xad3887d6 crypto_init_spawn -EXPORT_SYMBOL_GPL vmlinux 0xad3dfa13 lgr_info_log -EXPORT_SYMBOL_GPL vmlinux 0xad489fc5 pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0xad63e026 __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0xad8f8cba debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0xad9086a2 crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0xadaaa3ae diag308 -EXPORT_SYMBOL_GPL vmlinux 0xade31af2 __online_page_free -EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0xae60b738 rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae76991a init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae88b6e5 pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0xae9fce2f tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xaf28268d metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0xaff436be trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0xaff728cb debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xb00a8738 kobject_move -EXPORT_SYMBOL_GPL vmlinux 0xb015ba35 wakeup_source_prepare -EXPORT_SYMBOL_GPL vmlinux 0xb01d704b debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0xb026f7bc ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xb0821e13 skcipher_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0xb0b817b8 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb1276a58 pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read -EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb160555c scm_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched -EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain -EXPORT_SYMBOL_GPL vmlinux 0xb1c2172d component_add -EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1f24fcd fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0xb1f8e9dd subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb2016996 pci_reset_bridge_secondary_bus -EXPORT_SYMBOL_GPL vmlinux 0xb232432c class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb28006c4 relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0xb2ab0240 gmap_fault -EXPORT_SYMBOL_GPL vmlinux 0xb2c13ed1 posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0xb2c6990c bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0xb2cbc17b __compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0xb2d70e91 transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb31ca582 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0xb3386f95 fuse_request_send_background -EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy -EXPORT_SYMBOL_GPL vmlinux 0xb3630fc0 scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0xb38ea10c bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xb3dd384b xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0xb3e4a4b8 bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xb3f2d9d5 look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0xb3fed5c9 blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0xb4221fec register_jprobes -EXPORT_SYMBOL_GPL vmlinux 0xb4240f49 pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0xb45b4f7e chsc_pnso_brinfo -EXPORT_SYMBOL_GPL vmlinux 0xb486f829 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xb4a8bf3f watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4d73fe4 platform_device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0xb50cfc95 __pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xb5381118 call_srcu -EXPORT_SYMBOL_GPL vmlinux 0xb53b2878 fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0xb583d005 vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited -EXPORT_SYMBOL_GPL vmlinux 0xb5958c97 __netpoll_free_async -EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table -EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb60660e0 each_symbol_section -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb6879ac9 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0xb69e0a96 devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0xb6b5cf1c trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xb727f35f alloc_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xb73f3e34 ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0xb74a58b4 pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0xb74f84ed trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0xb758c25a bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0xb79bc4d7 scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0xb7be49ea fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xb7d64d10 ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0xb7dad342 sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0xb8095bfe percpu_ida_free -EXPORT_SYMBOL_GPL vmlinux 0xb83bff2a anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0xb846613f blk_queue_flush -EXPORT_SYMBOL_GPL vmlinux 0xb853750a platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0xb873962a blk_queue_flush_queueable -EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb891f8d8 pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8d056ce blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0xb8d45ba8 md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0xb8dd6f74 fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0xb907b442 scm_irq_handler -EXPORT_SYMBOL_GPL vmlinux 0xb920481c perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0xb936d1ff debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xb93e981c fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xb9565ab9 xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0xb976f52f inet_csk_compat_getsockopt -EXPORT_SYMBOL_GPL vmlinux 0xb9783a9f xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0xb9809584 simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0xb987ab52 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0xb98d6df0 debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9cdeb75 device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9f065de __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xb9f0ddf5 debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0xba1b0c63 preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xba2370db inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xba75e95e device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0xba984216 kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL vmlinux 0xbaeb1f35 iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xbb09e4ac pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb128381 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0xbb4c9c84 kvm_clear_guest -EXPORT_SYMBOL_GPL vmlinux 0xbb71b12e skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0xbb769a36 dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0xbbc40a71 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0xbbd1b93a crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xbc10ac59 unregister_jprobe -EXPORT_SYMBOL_GPL vmlinux 0xbc17b413 enable_cmf -EXPORT_SYMBOL_GPL vmlinux 0xbc384a9c pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0xbc526560 save_stack_trace_tsk -EXPORT_SYMBOL_GPL vmlinux 0xbc654507 xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc7e7b84 napi_by_id -EXPORT_SYMBOL_GPL vmlinux 0xbcab3ec4 ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbcbbd266 __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0xbcbe4277 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbcde8736 pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0xbcec629b ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0xbcf4bcfc crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd50448f __blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xbd5367e0 dm_get_table_device -EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0xbd60646b rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0xbdf0edd1 srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xbe192134 user_update -EXPORT_SYMBOL_GPL vmlinux 0xbe517f6e disable_cmf -EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe987b70 iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbea695dd transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0xbebfbb0e scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0xbec0e932 shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0xbef2241d __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xbf2bf743 io_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xbf677d9e ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0xbf701446 sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0xbfa22890 watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbff9945f pci_intx_mask_supported -EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space -EXPORT_SYMBOL_GPL vmlinux 0xbfffdab4 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0xc0012181 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0xc00136f9 verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xc04a72b1 skb_gso_transport_seglen -EXPORT_SYMBOL_GPL vmlinux 0xc05426fb __securityfs_setup_d_inode -EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc090ff65 cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0xc094a07b ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xc09b61ad pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc0d88fe7 kthread_park -EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc0f4206e __mmu_notifier_invalidate_range_end -EXPORT_SYMBOL_GPL vmlinux 0xc130b03e memalloc_socks -EXPORT_SYMBOL_GPL vmlinux 0xc167b9ea clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0xc193250f watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0xc19b4826 device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc22cdbea mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xc231e8b9 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0xc237a4b8 ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0xc2517490 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0xc27ce3e5 crypto_alloc_ablkcipher -EXPORT_SYMBOL_GPL vmlinux 0xc29e7aa2 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xc2bd4f0e fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc2e58432 trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0xc2ebce1d __percpu_ida_init -EXPORT_SYMBOL_GPL vmlinux 0xc2fe98a5 __mmu_notifier_invalidate_range_start -EXPORT_SYMBOL_GPL vmlinux 0xc30ca665 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0xc321cab6 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0xc3394835 bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc357923c pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0xc3602340 kvm_vcpu_gfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xc3870d0f crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0xc3a736ba __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xc4027b33 noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0xc425a2f2 eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0xc4353374 crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0xc46186d5 kallsyms_on_each_symbol -EXPORT_SYMBOL_GPL vmlinux 0xc49f6367 blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0xc4dc8247 bpf_prog_realloc -EXPORT_SYMBOL_GPL vmlinux 0xc4e79296 bdev_direct_access -EXPORT_SYMBOL_GPL vmlinux 0xc4fbdaf3 tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0xc511cd47 snprint_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xc517019f seq_release_net -EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0xc54e053b shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0xc55148e2 tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xc556bc26 tpm_send -EXPORT_SYMBOL_GPL vmlinux 0xc560263a css_sch_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc59c216b pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0xc5a7f1ac dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xc5bef2f3 ahash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0xc5fb9ad1 zpci_enable_device -EXPORT_SYMBOL_GPL vmlinux 0xc5fc3049 rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc6226fd5 scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xc646d09b crypto_init_spawn2 -EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc67b1440 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc6ac8076 set_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0xc6d6f1a0 kvm_clear_guest_page -EXPORT_SYMBOL_GPL vmlinux 0xc705f5dc probe_kernel_write -EXPORT_SYMBOL_GPL vmlinux 0xc721a7f0 splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xc735835f platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0xc74eecef cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xc7536fea rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0xc779d483 driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0xc79f54a7 cmf_readall -EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer -EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc7ec2cce tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0xc7f80067 fat_scan -EXPORT_SYMBOL_GPL vmlinux 0xc805747d pci_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xc806a12f debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0xc8460acb cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0xc853218d gmap_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0xc8cf0250 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0xc939f413 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc97ea6aa find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc9f7a51f dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xca18ff37 bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0xca1c7486 mnt_clone_write -EXPORT_SYMBOL_GPL vmlinux 0xca7d175f gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca88697c crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0xcac73447 device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xcb016d42 ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xcb0a8352 pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module -EXPORT_SYMBOL_GPL vmlinux 0xcb5373c6 __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0xcb66dfa0 wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0xcb92d9e5 user_destroy -EXPORT_SYMBOL_GPL vmlinux 0xcbb021bf mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0xcbb7229d tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0xcbb81a06 crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0xcbe424b2 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0xcbf96cd1 ccw_device_get_schid -EXPORT_SYMBOL_GPL vmlinux 0xcbff2b8d sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0xcc267b36 cio_enable_subchannel -EXPORT_SYMBOL_GPL vmlinux 0xcc4704bb tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0xcc4ca96e simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xcc7140f6 __online_page_set_limits -EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule -EXPORT_SYMBOL_GPL vmlinux 0xcc8940d2 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0xcc911e9f alarm_start -EXPORT_SYMBOL_GPL vmlinux 0xcca6b192 pci_bus_sem -EXPORT_SYMBOL_GPL vmlinux 0xccaae4cf crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0xccb537fa for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0xccc425f8 pci_cleanup_aer_uncorrect_error_status -EXPORT_SYMBOL_GPL vmlinux 0xccce6279 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xcce2f58f kvm_release_page_clean -EXPORT_SYMBOL_GPL vmlinux 0xccf05c75 scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0xccf7ca21 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xccffef21 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0xcd04462f sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0xcd1f429d __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xcd89cdc9 pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq -EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs -EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdcd8be8 dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xcde34ce3 add_memory_resource -EXPORT_SYMBOL_GPL vmlinux 0xcdee6493 bus_find_device_by_name -EXPORT_SYMBOL_GPL vmlinux 0xce3632f4 genlmsg_new_unicast -EXPORT_SYMBOL_GPL vmlinux 0xce5341e8 class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce718d1d subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0xce767cec list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0xcec9d06f perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcecba454 percpu_ida_alloc -EXPORT_SYMBOL_GPL vmlinux 0xcece4914 css_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xceeeab4b sched_setattr -EXPORT_SYMBOL_GPL vmlinux 0xcefbd9e6 pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0xcefc1e30 __bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0xcf48ca18 cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain -EXPORT_SYMBOL_GPL vmlinux 0xcf7b0223 chsc_scm_info -EXPORT_SYMBOL_GPL vmlinux 0xcf9c87ed device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0xcfe622c9 pci_hp_change_slot_info -EXPORT_SYMBOL_GPL vmlinux 0xd031b589 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xd042efb6 blk_mq_cancel_requeue_work -EXPORT_SYMBOL_GPL vmlinux 0xd0616073 kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd06e0e8c sock_update_netprioidx -EXPORT_SYMBOL_GPL vmlinux 0xd0962124 register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0ffb9d4 sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0xd1075a6c pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xd1b6fd8c inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0xd1b9fcc7 vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0xd1d662bd io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0xd1df1ddb gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd21bde00 _submit_bh -EXPORT_SYMBOL_GPL vmlinux 0xd247b5db atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd2556079 ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xd25d2a2e ping_proc_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd25eb5f0 ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd28e8509 iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0xd2c09432 tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0xd2c69027 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0xd2ef2452 tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0xd2fa4def iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xd320f0d3 napi_hash_add -EXPORT_SYMBOL_GPL vmlinux 0xd3243ae8 mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0xd352f029 trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xd3b7beeb iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xd3c5ae0a netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd408807a unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xd421a065 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0xd4a13794 __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0xd4b607a0 inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4e2afd9 tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0xd4f05dcd xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0xd544fe97 sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xd5541799 pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0xd5573583 blkg_print_stat_ios -EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd56b5f64 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0xd5742d38 sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0xd5845756 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0xd594caa2 ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xd59cc12b skb_morph -EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0xd5f75be3 ping_close -EXPORT_SYMBOL_GPL vmlinux 0xd609ae70 __class_register -EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh -EXPORT_SYMBOL_GPL vmlinux 0xd672c9ca rhashtable_walk_init -EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd6a3a679 unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0xd6c2462c __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0xd6deade2 sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xd6efca33 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0xd7200fc6 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xd733eab3 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xd7912f3e task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xd79e6410 platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd7b71d01 percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0xd7c8e8cd register_jprobe -EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0xd7e171fc virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0xd805a614 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xd847f682 debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0xd8695eed generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xd886f4aa sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0xd889bbf6 virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0xd8bd0810 pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0xd90b7b83 ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0xd92db761 __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd978fe98 skcipher_geniv_exit -EXPORT_SYMBOL_GPL vmlinux 0xd9843ff6 __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0xd9b9199b relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0xd9db4bae dio_end_io -EXPORT_SYMBOL_GPL vmlinux 0xd9e0d3ef dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xd9edcf03 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0xda10fdff disk_part_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xda3f3e8a isc_register -EXPORT_SYMBOL_GPL vmlinux 0xda475506 blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0xda81a0af sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0xdac433f8 fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0xdb1caab0 set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0xdb76c4a2 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb94924c get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0xdba023b5 crypto_init_ahash_spawn -EXPORT_SYMBOL_GPL vmlinux 0xdbcac408 trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0xdbe06f84 cio_disable_subchannel -EXPORT_SYMBOL_GPL vmlinux 0xdbe5e650 __blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdc233603 crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0xdc3303fc device_store_int -EXPORT_SYMBOL_GPL vmlinux 0xdc45f231 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0xdc639c17 pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0xdc6f1a7b unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdccf05bf blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0xdcde0f79 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xdce5037c scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0xdcf2abfd scsi_device_from_queue -EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd447d47 pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0xdd57e2b5 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0xdd830837 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0xdd8938af shash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0xdd8a2d45 ip_tunnel_get_stats64 -EXPORT_SYMBOL_GPL vmlinux 0xddb1a2a4 device_move -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddd3bef2 securityfs_create_dentry -EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0xddd89e1a class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xddf32153 subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xde2bdfc8 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0xde32b1ac hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xde4fdba4 crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0xde77ab3d msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0xde7c6d3d crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0xde83a204 trace_call_bpf -EXPORT_SYMBOL_GPL vmlinux 0xde893011 ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0xded5d8e0 irq_stat -EXPORT_SYMBOL_GPL vmlinux 0xded94481 pm_runtime_get_if_in_use -EXPORT_SYMBOL_GPL vmlinux 0xdee28f38 inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xdef3e4e3 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf22a0b4 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0xdf2d5d3d get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0xdf8a59f7 kvm_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0xdf9bf0b6 iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0xdfd44b10 ccw_device_force_console -EXPORT_SYMBOL_GPL vmlinux 0xe0047b2c pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name -EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0xe06388fd add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0xe07032a9 inet_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0xe0ea408b dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xe0ec5b68 securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xe14a0ecc vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe18209ae set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xe1fb6d09 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0xe25b02e1 pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0xe265b3d1 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0xe292cfda xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0xe2e2022f dax_do_io -EXPORT_SYMBOL_GPL vmlinux 0xe2f82c4f tpm_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0xe301ee88 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xe38cfc5c uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0xe3a3fc09 md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0xe3c55f87 srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xe40d6b39 crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xe490ccd3 tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4b43969 ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto -EXPORT_SYMBOL_GPL vmlinux 0xe4f0b782 appldata_unregister_ops -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq -EXPORT_SYMBOL_GPL vmlinux 0xe59f214c rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0xe5a0c4cc cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe656639e register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0xe66a2508 get_kernel_page -EXPORT_SYMBOL_GPL vmlinux 0xe696abdd __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module -EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen -EXPORT_SYMBOL_GPL vmlinux 0xe6e1e845 wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xe71523ea skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0xe72317d1 inet_hash -EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0xe74d0ab6 trace_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xe74dbed3 fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe780c3b5 perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0xe786338b debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0xe7b718df chsc_determine_channel_path_desc -EXPORT_SYMBOL_GPL vmlinux 0xe7be9eb1 find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xe7cab89d kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0xe7e6f602 udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr -EXPORT_SYMBOL_GPL vmlinux 0xe8092b2b insn_to_mnemonic -EXPORT_SYMBOL_GPL vmlinux 0xe815afe4 dax_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0xe83c2c8a mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xe84abaea wait_on_page_bit_killable_timeout -EXPORT_SYMBOL_GPL vmlinux 0xe853f157 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0xe8557947 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe8b9badb rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0xe8cb7d9c iommu_domain_window_enable -EXPORT_SYMBOL_GPL vmlinux 0xe8d09f2f chp_ssd_get_mask -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe955f038 flush_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0xe9999393 __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0xe9adfca5 blk_mq_free_hctx_request -EXPORT_SYMBOL_GPL vmlinux 0xe9f16a44 attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea1aca78 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xea95cb5a memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xeaf08820 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0xeb2ed2c0 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0xeb4266ad fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0xeb49238e virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0xeba64fda sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xeba745e1 irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0xebb5a3e0 fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0xebbc8dc2 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xebedabe8 __dax_pmd_fault -EXPORT_SYMBOL_GPL vmlinux 0xec13c83c si_swapinfo -EXPORT_SYMBOL_GPL vmlinux 0xec16afa3 dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del -EXPORT_SYMBOL_GPL vmlinux 0xec293772 md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0xec57ea73 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0xec631f34 remove_memory -EXPORT_SYMBOL_GPL vmlinux 0xec83f722 pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0xecc94598 ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0xecdb8587 skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0xed1123a9 fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0xed46ec67 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0xeda3a884 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xedbf3389 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0xedc22f75 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0xedc36b60 __mmu_notifier_invalidate_range -EXPORT_SYMBOL_GPL vmlinux 0xee33cba3 dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0xee497f08 jump_label_rate_limit -EXPORT_SYMBOL_GPL vmlinux 0xee7e3400 device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0xee8462cd iommu_domain_set_attr -EXPORT_SYMBOL_GPL vmlinux 0xee9c37e9 crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0xeeb7df7d crypto_lookup_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xeeba26fd rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0xeed01ce0 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0xeedebf47 device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xef13106c nr_threads -EXPORT_SYMBOL_GPL vmlinux 0xef15bcca md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0xef2bc3a6 bio_associate_blkcg -EXPORT_SYMBOL_GPL vmlinux 0xef41239e debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef6d007a sigset_from_compat -EXPORT_SYMBOL_GPL vmlinux 0xef79c9fa crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0xef86e566 sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xeffc9357 rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0xf00877e8 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0xf011c06b trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0xf021e894 sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xf07ad705 blk_queue_dma_drain -EXPORT_SYMBOL_GPL vmlinux 0xf092afc0 bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0xf0aff318 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0xf0c3c535 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xf0f55aad init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0xf13f3146 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0xf1403eff queue_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf19dc8dc key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key -EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on -EXPORT_SYMBOL_GPL vmlinux 0xf1be7b22 tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0xf1d673d5 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0xf1ee3c1a wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf22c6aab blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0xf2975ec7 ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xf2e91278 debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0xf2f8259b locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0xf3112482 blkdev_write_iter -EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf3163961 exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf33fe1ca inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xf37d153f tpm2_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf39bd4e4 get_device -EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xf42451ca proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0xf4514e20 of_css -EXPORT_SYMBOL_GPL vmlinux 0xf457b047 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0xf49998b3 blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh -EXPORT_SYMBOL_GPL vmlinux 0xf4a6b488 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0xf4beef69 pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf508fa32 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0xf5277a60 call_filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0xf530b807 crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0xf5370f4b platform_bus -EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf5541b77 register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xf5792d73 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5bb348f pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0xf5bcf1b2 __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0xf5c7f3f0 blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0xf5d6423a pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xf5e24f18 device_initialize -EXPORT_SYMBOL_GPL vmlinux 0xf5e55ff6 debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0xf5ff50a1 crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0xf6212387 ccw_device_get_chp_desc -EXPORT_SYMBOL_GPL vmlinux 0xf656bb45 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0xf6725f15 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0xf6a4cfab scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0xf6a72a0d fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6f6dcf4 pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0xf7169389 devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0xf76fbe11 kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0xf7794416 cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0xf7ba5bc9 anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf7dc2609 rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xf7e45708 blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0xf7ebfde4 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0xf7f090d1 dax_pfn_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0xf7f33258 pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xf8267b4a attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0xf82a73dc trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf851a04b platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0xf868f4fa device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xf885d873 gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xf8c3cad7 xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops -EXPORT_SYMBOL_GPL vmlinux 0xf8fd9e9d synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0xf915425c percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf9804fc6 metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0xf98fb50f ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr -EXPORT_SYMBOL_GPL vmlinux 0xf993e900 net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xf99f8605 perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9a08f33 handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0xf9d652ca blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xf9e382b3 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xfa01fe50 gfn_to_memslot -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start -EXPORT_SYMBOL_GPL vmlinux 0xfa4d0edb devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0xfa83906a crypto_ahash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec -EXPORT_SYMBOL_GPL vmlinux 0xfa9e335e hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfadac245 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0xfafb5ae7 device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb4ba7bc wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfb4bb06d crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfbba1de4 get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbd087ec blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc0fbf75 posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0xfc4fcde8 atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xfc5eb088 cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xfc67b7c1 virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0xfc81976d __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfd200978 dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0xfd258b14 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack -EXPORT_SYMBOL_GPL vmlinux 0xfd7f64a5 inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0xfd91dc0b tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0xfd9bd1c3 pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0xfdd1e166 shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xfe01794a perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0xfe135ba0 user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0xfe1ec1f6 aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xfe49a4b5 event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0xfe6590d1 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0xfeb0d574 device_rename -EXPORT_SYMBOL_GPL vmlinux 0xfecb5d1a ping_err -EXPORT_SYMBOL_GPL vmlinux 0xfedc9d9d klp_register_patch -EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff25af8a virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0xff342cf4 pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0xff4d94de security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xff75db15 kvm_put_kvm -EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0xffd7d348 __ip_route_output_key_hash reverted: --- linux-raspi2-4.4.0/debian.master/abi/4.4.0-89.112/s390x/generic.compiler +++ linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-89.112/s390x/generic.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 reverted: --- linux-raspi2-4.4.0/debian.master/abi/4.4.0-89.112/s390x/generic.modules +++ linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-89.112/s390x/generic.modules @@ -1,846 +0,0 @@ -8021q -842 -842_compress -842_decompress -9p -9pnet -9pnet_rdma -9pnet_virtio -act_bpf -act_connmark -act_csum -act_gact -act_ipt -act_mirred -act_nat -act_pedit -act_police -act_simple -act_skbedit -act_vlan -aes_s390 -af-rxrpc -af_alg -af_iucv -af_key -af_packet_diag -ah4 -ah6 -algif_aead -algif_hash -algif_rng -algif_skcipher -amd -ansi_cprng -anubis -ap -appldata_mem -appldata_net_sum -appldata_os -aquantia -arc4 -arp_tables -arpt_mangle -arptable_filter -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at803x -aufs -auth_rpcgss -authenc -authencesn -bcache -bcm-phy-lib -bcm7038_wdt -bcm7xxx -bcm87xx -binfmt_misc -blocklayoutdriver -blowfish_common -blowfish_generic -bonding -br_netfilter -brd -bridge -broadcom -btrfs -cachefiles -camellia_generic -cast5_generic -cast6_generic -cast_common -ccm -ccwgroup -ceph -ch -chacha20_generic -chacha20poly1305 -chsc_sch -cicada -cifs -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_rsvp -cls_rsvp6 -cls_tcindex -cls_u32 -cmac -coda -cordic -cpu-notifier-error-inject -crc-ccitt -crc-itu-t -crc32 -crc7 -crc8 -cryptd -crypto_user -ctcm -ctr -cts -cuse -dasd_diag_mod -dasd_eckd_mod -dasd_fba_mod -dasd_mod -davicom -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -dccp_probe -dcssblk -deflate -des_generic -des_s390 -diag288_wdt -dlm -dm-bio-prison -dm-bufio -dm-cache -dm-cache-cleaner -dm-cache-mq -dm-cache-smq -dm-crypt -dm-delay -dm-era -dm-flakey -dm-log -dm-log-userspace -dm-log-writes -dm-mirror -dm-multipath -dm-persistent-data -dm-queue-length -dm-raid -dm-region-hash -dm-round-robin -dm-service-time -dm-snapshot -dm-switch -dm-thin-pool -dm-verity -dm-zero -dp83848 -dp83867 -drbd -drbg -drop_monitor -dummy -dummy_stm -eadm_sch -ebt_802_3 -ebt_among -ebt_arp -ebt_arpreply -ebt_dnat -ebt_ip -ebt_ip6 -ebt_limit -ebt_log -ebt_mark -ebt_mark_m -ebt_nflog -ebt_pkttype -ebt_redirect -ebt_snat -ebt_stp -ebt_vlan -ebtable_broute -ebtable_filter -ebtable_nat -ebtables -echainiv -em_cmp -em_ipset -em_meta -em_nbyte -em_text -em_u32 -eql -esp4 -esp6 -et1011c -faulty -fcoe -fcrypt -fixed_phy -fou -fpga-mgr -fs3270 -fscache -fsm -garp -gcm -geneve -gennvm -genwqe_card -gf128mul -gfs2 -ghash-generic -ghash_s390 -grace -gre -hangcheck-timer -hmcdrv -ib_addr -ib_cm -ib_core -ib_ipoib -ib_iser -ib_isert -ib_mad -ib_mthca -ib_sa -ib_srp -ib_srpt -ib_ucm -ib_umad -ib_uverbs -icplus -ifb -ila -inet_diag -intel_th -intel_th_gth -intel_th_msu -intel_th_pci -intel_th_pti -intel_th_sth -interval_tree_test -ip6_gre -ip6_tables -ip6_tunnel -ip6_udp_tunnel -ip6_vti -ip6t_MASQUERADE -ip6t_NPT -ip6t_REJECT -ip6t_SYNPROXY -ip6t_ah -ip6t_eui64 -ip6t_frag -ip6t_hbh -ip6t_ipv6header -ip6t_mh -ip6t_rpfilter -ip6t_rt -ip6table_filter -ip6table_mangle -ip6table_nat -ip6table_raw -ip6table_security -ip_gre -ip_set -ip_set_bitmap_ip -ip_set_bitmap_ipmac -ip_set_bitmap_port -ip_set_hash_ip -ip_set_hash_ipmark -ip_set_hash_ipport -ip_set_hash_ipportip -ip_set_hash_ipportnet -ip_set_hash_mac -ip_set_hash_net -ip_set_hash_netiface -ip_set_hash_netnet -ip_set_hash_netport -ip_set_hash_netportnet -ip_set_list_set -ip_tables -ip_tunnel -ip_vs -ip_vs_dh -ip_vs_fo -ip_vs_ftp -ip_vs_lblc -ip_vs_lblcr -ip_vs_lc -ip_vs_nq -ip_vs_ovf -ip_vs_pe_sip -ip_vs_rr -ip_vs_sed -ip_vs_sh -ip_vs_wlc -ip_vs_wrr -ip_vti -ipcomp -ipcomp6 -ipip -ipt_CLUSTERIP -ipt_ECN -ipt_MASQUERADE -ipt_REJECT -ipt_SYNPROXY -ipt_ah -ipt_rpfilter -iptable_filter -iptable_mangle -iptable_nat -iptable_raw -iptable_security -ipvlan -irqbypass -iscsi_boot_sysfs -iscsi_target_mod -iscsi_tcp -isofs -iw_cm -jitterentropy_rng -kafs -keywrap -khazad -l2tp_core -l2tp_debugfs -l2tp_eth -l2tp_ip -l2tp_ip6 -l2tp_netlink -lcs -libceph -libcrc32c -libfc -libfcoe -libiscsi -libiscsi_tcp -libore -libosd -libphy -libsas -linear -llc -lockd -locktorture -lru_cache -lrw -lxt -lz4 -lz4_compress -lz4hc -lz4hc_compress -mac-celtic -mac-centeuro -mac-croatian -mac-cyrillic -mac-gaelic -mac-greek -mac-iceland -mac-inuit -mac-roman -mac-romanian -mac-turkish -macvlan -macvtap -marvell -mcryptd -md-cluster -md4 -mdio-bcm-unimac -mdio-bitbang -mdio-cavium -mdio-octeon -mdio-thunder -mdio-xgene -memory-notifier-error-inject -michael_mic -micrel -microchip -mip6 -mlx4_core -mlx4_en -mlx4_ib -mlx5_core -mlx5_ib -mlxsw_core -mlxsw_pci -monreader -monwriter -mpls_gso -mpls_iptunnel -mpls_router -mpt3sas -mrp -msdos -national -nb8800 -nbd -netconsole -netiucv -netlink_diag -nf_conntrack -nf_conntrack_amanda -nf_conntrack_broadcast -nf_conntrack_ftp -nf_conntrack_h323 -nf_conntrack_ipv4 -nf_conntrack_ipv6 -nf_conntrack_irc -nf_conntrack_netbios_ns -nf_conntrack_netlink -nf_conntrack_pptp -nf_conntrack_proto_dccp -nf_conntrack_proto_gre -nf_conntrack_proto_sctp -nf_conntrack_proto_udplite -nf_conntrack_sane -nf_conntrack_sip -nf_conntrack_snmp -nf_conntrack_tftp -nf_defrag_ipv4 -nf_defrag_ipv6 -nf_dup_ipv4 -nf_dup_ipv6 -nf_log_arp -nf_log_bridge -nf_log_common -nf_log_ipv4 -nf_log_ipv6 -nf_nat -nf_nat_amanda -nf_nat_ftp -nf_nat_h323 -nf_nat_ipv4 -nf_nat_ipv6 -nf_nat_irc -nf_nat_masquerade_ipv4 -nf_nat_masquerade_ipv6 -nf_nat_pptp -nf_nat_proto_dccp -nf_nat_proto_gre -nf_nat_proto_sctp -nf_nat_proto_udplite -nf_nat_redirect -nf_nat_sip -nf_nat_snmp_basic -nf_nat_tftp -nf_reject_ipv4 -nf_reject_ipv6 -nf_synproxy_core -nf_tables -nf_tables_arp -nf_tables_bridge -nf_tables_inet -nf_tables_ipv4 -nf_tables_ipv6 -nf_tables_netdev -nfnetlink -nfnetlink_acct -nfnetlink_cthelper -nfnetlink_cttimeout -nfnetlink_log -nfnetlink_queue -nfs -nfs_acl -nfs_layout_flexfiles -nfs_layout_nfsv41_files -nfsd -nfsv2 -nfsv3 -nfsv4 -nft_chain_nat_ipv4 -nft_chain_nat_ipv6 -nft_chain_route_ipv4 -nft_chain_route_ipv6 -nft_compat -nft_counter -nft_ct -nft_dup_ipv4 -nft_dup_ipv6 -nft_exthdr -nft_hash -nft_limit -nft_log -nft_masq -nft_masq_ipv4 -nft_masq_ipv6 -nft_meta -nft_meta_bridge -nft_nat -nft_queue -nft_rbtree -nft_redir -nft_redir_ipv4 -nft_redir_ipv6 -nft_reject -nft_reject_bridge -nft_reject_inet -nft_reject_ipv4 -nft_reject_ipv6 -nilfs2 -nlmon -nls_ascii -nls_cp1250 -nls_cp1251 -nls_cp1255 -nls_cp737 -nls_cp775 -nls_cp850 -nls_cp852 -nls_cp855 -nls_cp857 -nls_cp860 -nls_cp861 -nls_cp862 -nls_cp863 -nls_cp864 -nls_cp865 -nls_cp866 -nls_cp869 -nls_cp874 -nls_cp932 -nls_cp936 -nls_cp949 -nls_cp950 -nls_euc-jp -nls_iso8859-13 -nls_iso8859-14 -nls_iso8859-15 -nls_iso8859-2 -nls_iso8859-3 -nls_iso8859-4 -nls_iso8859-5 -nls_iso8859-6 -nls_iso8859-7 -nls_iso8859-9 -nls_koi8-r -nls_koi8-ru -nls_koi8-u -nls_utf8 -notifier-error-inject -ntfs -null_blk -objlayoutdriver -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -openvswitch -oprofile -osd -osdblk -osst -overlay -p8022 -pcbc -pci-stub -pcrypt -percpu_test -pkcs7_test_key -pktgen -pm-notifier-error-inject -poly1305_generic -pps_core -prng -psnap -ptp -qdio -qeth -qeth_l2 -qeth_l3 -qsemi -quota_tree -quota_v1 -quota_v2 -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid6test -raid_class -rbd -rbtree_test -rdma_cm -rdma_ucm -rds -rds_rdma -rds_tcp -realtek -rmd128 -rmd160 -rmd256 -rmd320 -rpcrdma -rpcsec_gss_krb5 -rrpc -rxkad -salsa20_generic -sch_cbq -sch_choke -sch_codel -sch_drr -sch_dsmark -sch_fq -sch_fq_codel -sch_gred -sch_hfsc -sch_hhf -sch_htb -sch_ingress -sch_mqprio -sch_multiq -sch_netem -sch_pie -sch_plug -sch_prio -sch_qfq -sch_red -sch_sfb -sch_sfq -sch_tbf -sch_teql -sclp_async -sclp_cpi -scm_block -scsi_debug -scsi_dh_alua -scsi_dh_emc -scsi_dh_hp_sw -scsi_dh_rdac -scsi_transport_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -scsi_transport_srp -sctp -sctp_probe -seed -seqiv -serial_core -serpent_generic -sha1_s390 -sha256_s390 -sha512_s390 -sha_common -sit -smsc -smsgiucv_app -softdog -spl -splat -st -ste10Xp -stm_console -stm_core -stp -sunrpc -tape -tape_34xx -tape_3590 -tape_class -target_core_file -target_core_iblock -target_core_mod -target_core_pscsi -tcm_fc -tcm_loop -tcp_bic -tcp_cdg -tcp_dctcp -tcp_diag -tcp_highspeed -tcp_htcp -tcp_hybla -tcp_illinois -tcp_lp -tcp_probe -tcp_scalable -tcp_vegas -tcp_veno -tcp_westwood -tcp_yeah -tcrypt -tea -team -team_mode_activebackup -team_mode_broadcast -team_mode_loadbalance -team_mode_random -team_mode_roundrobin -teranetics -test-hexdump -test-kstrtox -test-string_helpers -test_bpf -test_firmware -test_module -test_printf -test_static_key_base -test_static_keys -test_udelay -test_user_copy -tgr192 -tipc -torture -tpm-rng -ts_bm -ts_fsm -ts_kmp -tunnel4 -tunnel6 -twofish_common -twofish_generic -uartlite -udf -udp_diag -udp_tunnel -unix_diag -veth -vfio -vfio-pci -vfio_iommu_type1 -vfio_virqfd -vhost -vhost_net -vhost_scsi -virtio-rng -virtio_scsi -vitesse -vmac -vmlogrdr -vmur -vport-geneve -vport-gre -vport-vxlan -vrf -vringh -vsock -vxlan -wp512 -x_tables -xcbc -xfrm4_mode_beet -xfrm4_mode_transport -xfrm4_mode_tunnel -xfrm4_tunnel -xfrm6_mode_beet -xfrm6_mode_ro -xfrm6_mode_transport -xfrm6_mode_tunnel -xfrm6_tunnel -xfrm_algo -xfrm_ipcomp -xfrm_user -xfs -xor -xt_AUDIT -xt_CHECKSUM -xt_CLASSIFY -xt_CONNSECMARK -xt_CT -xt_DSCP -xt_HL -xt_HMARK -xt_IDLETIMER -xt_LOG -xt_NETMAP -xt_NFLOG -xt_NFQUEUE -xt_RATEEST -xt_REDIRECT -xt_SECMARK -xt_TCPMSS -xt_TCPOPTSTRIP -xt_TEE -xt_TPROXY -xt_TRACE -xt_addrtype -xt_bpf -xt_cgroup -xt_cluster -xt_comment -xt_connbytes -xt_connlabel -xt_connlimit -xt_connmark -xt_conntrack -xt_cpu -xt_dccp -xt_devgroup -xt_dscp -xt_ecn -xt_esp -xt_hashlimit -xt_helper -xt_hl -xt_ipcomp -xt_iprange -xt_ipvs -xt_l2tp -xt_length -xt_limit -xt_mac -xt_mark -xt_multiport -xt_nat -xt_nfacct -xt_osf -xt_owner -xt_physdev -xt_pkttype -xt_policy -xt_quota -xt_rateest -xt_realm -xt_recent -xt_sctp -xt_set -xt_socket -xt_state -xt_statistic -xt_string -xt_tcpmss -xt_tcpudp -xt_time -xt_u32 -xts -zavl -zcommon -zcrypt_api -zcrypt_cex2a -zcrypt_cex4 -zcrypt_msgtype50 -zcrypt_msgtype6 -zcrypt_pcixcc -zfcp -zfs -zlib -zlib_deflate -znvpair -zpios -zram -zunicode -zynq-fpga diff -u linux-raspi2-4.4.0/debian.master/changelog linux-raspi2-4.4.0/debian.master/changelog --- linux-raspi2-4.4.0/debian.master/changelog +++ linux-raspi2-4.4.0/debian.master/changelog @@ -1,3 +1,1524 @@ +linux (4.4.0-107.130) xenial; urgency=low + + * linux: 4.4.0-107.130 -proposed tracker (LP: #1741643) + + * CVE-2017-5754 + - Revert "UBUNTU: SAUCE: arch/x86/entry/vdso: temporarily disable vdso" + - KPTI: Report when enabled + - x86, vdso, pvclock: Simplify and speed up the vdso pvclock reader + - x86/vdso: Get pvclock data from the vvar VMA instead of the fixmap + - x86/kasan: Clear kasan_zero_page after TLB flush + - kaiser: Set _PAGE_NX only if supported + + -- Kleber Sacilotto de Souza Sat, 06 Jan 2018 17:13:03 +0100 + +linux (4.4.0-106.129) xenial; urgency=low + + * linux: 4.4.0-106.129 -proposed tracker (LP: #1741528) + + * CVE-2017-5754 + - KAISER: Kernel Address Isolation + - kaiser: merged update + - kaiser: do not set _PAGE_NX on pgd_none + - kaiser: stack map PAGE_SIZE at THREAD_SIZE-PAGE_SIZE + - kaiser: fix build and FIXME in alloc_ldt_struct() + - kaiser: KAISER depends on SMP + - kaiser: fix regs to do_nmi() ifndef CONFIG_KAISER + - kaiser: fix perf crashes + - kaiser: ENOMEM if kaiser_pagetable_walk() NULL + - kaiser: tidied up asm/kaiser.h somewhat + - kaiser: tidied up kaiser_add/remove_mapping slightly + - kaiser: kaiser_remove_mapping() move along the pgd + - kaiser: cleanups while trying for gold link + - kaiser: name that 0x1000 KAISER_SHADOW_PGD_OFFSET + - kaiser: delete KAISER_REAL_SWITCH option + - kaiser: vmstat show NR_KAISERTABLE as nr_overhead + - x86/mm: Enable CR4.PCIDE on supported systems + - x86/mm: Build arch/x86/mm/tlb.c even on !SMP + - x86/mm, sched/core: Uninline switch_mm() + - x86/mm: Add INVPCID helpers + - x86/mm: If INVPCID is available, use it to flush global mappings + - kaiser: enhanced by kernel and user PCIDs + - kaiser: load_new_mm_cr3() let SWITCH_USER_CR3 flush user + - kaiser: PCID 0 for kernel and 128 for user + - kaiser: x86_cr3_pcid_noflush and x86_cr3_pcid_user + - kaiser: paranoid_entry pass cr3 need to paranoid_exit + - kaiser: _pgd_alloc() without __GFP_REPEAT to avoid stalls + - kaiser: fix unlikely error in alloc_ldt_struct() + - kaiser: add "nokaiser" boot option, using ALTERNATIVE + - x86/kaiser: Rename and simplify X86_FEATURE_KAISER handling + - x86/boot: Add early cmdline parsing for options with arguments + - x86/kaiser: Check boottime cmdline params + - kaiser: use ALTERNATIVE instead of x86_cr3_pcid_noflush + - kaiser: drop is_atomic arg to kaiser_pagetable_walk() + - kaiser: asm/tlbflush.h handle noPGE at lower level + - kaiser: kaiser_flush_tlb_on_return_to_user() check PCID + - x86/paravirt: Dont patch flush_tlb_single + - x86/kaiser: Reenable PARAVIRT + - kaiser: disabled on Xen PV + - x86/kaiser: Move feature detection up + - kvm: x86: fix RSM when PCID is non-zero + - SAUCE: arch/x86/entry/vdso: temporarily disable vdso + - [Config]: CONFIG_KAISER=y + + -- Kleber Sacilotto de Souza Fri, 05 Jan 2018 19:53:41 +0100 + +linux (4.4.0-104.127) xenial; urgency=low + + * linux: 4.4.0-104.127 -proposed tracker (LP: #1737511) + + * upgrading linux-image package to 4.4.0-103.126 breaks Ceph network file + system connection (LP: #1737033) + - Revert "libceph: MOSDOpReply v7 encoding" + - Revert "libceph: advertise support for TUNABLES5" + - Revert "crush: decode and initialize chooseleaf_stable" + - Revert "crush: add chooseleaf_stable tunable" + - Revert "crush: ensure take bucket value is valid" + - Revert "crush: ensure bucket id is valid before indexing buckets array" + + -- Kleber Sacilotto de Souza Mon, 11 Dec 2017 12:20:36 +0100 + +linux (4.4.0-103.126) xenial; urgency=low + + * linux: 4.4.0-103.126 -proposed tracker (LP: #1736181) + + * CVE-2017-1000405 + - mm, thp: Do not make page table dirty unconditionally in touch_p[mu]d() + + * CVE-2017-16939 + - netlink: add a start callback for starting a netlink dump + - ipsec: Fix aborted xfrm policy dump crash + + -- Stefan Bader Mon, 04 Dec 2017 16:50:53 +0100 + +linux (4.4.0-102.125) xenial; urgency=low + + * linux: 4.4.0-102.125 -proposed tracker (LP: #1733541) + + * tar -x sometimes fails on overlayfs (LP: #1728489) + - ovl: check if all layers are on the same fs + - ovl: persistent inode number for directories + + * NVMe timeout is too short (LP: #1729119) + - nvme: update timeout module parameter type + + * Set PANIC_TIMEOUT=10 on Power Systems (LP: #1730660) + - [Config]: Set PANIC_TIMEOUT=10 on ppc64el + + * Cannot pair BLE remote devices when using combo BT SoC (LP: #1731467) + - Bluetooth: increase timeout for le auto connections + + * CIFS errors on 4.4.0-98, but not on 4.4.0-97 with same config (LP: #1729337) + - SMB3: Validate negotiate request must always be signed + + * Plantronics P610 does not support sample rate reading (LP: #1719853) + - ALSA: usb-audio: Add sample rate quirk for Plantronics P610 + + * Invalid btree pointer causes the kernel NULL pointer dereference + (LP: #1729256) + - xfs: reinit btree pointer on attr tree inactivation walk + + * Samba mount/umount in docker container triggers kernel Oops (LP: #1729637) + - ipv6: only call ip6_route_dev_notify() once for NETDEV_UNREGISTER + - ipv6: fix NULL dereference in ip6_route_dev_notify() + + * [kernel] tty/hvc: Use opal irqchip interface if available (LP: #1728098) + - tty/hvc: Use opal irqchip interface if available + + * Device hotplugging with MPT SAS cannot work for VMWare ESXi (LP: #1730852) + - scsi: mptsas: Fixup device hotplug for VMWare ESXi + + * NMI watchdog: BUG: soft lockup on Guest upon boot (KVM) (LP: #1727331) + - KVM: PPC: Book3S: Treat VTB as a per-subcore register, not per-thread + + * Attempt to map rbd image from ceph jewel/luminous hangs (LP: #1728739) + - crush: ensure bucket id is valid before indexing buckets array + - crush: ensure take bucket value is valid + - crush: add chooseleaf_stable tunable + - crush: decode and initialize chooseleaf_stable + - libceph: advertise support for TUNABLES5 + - libceph: MOSDOpReply v7 encoding + + * Xenial update to 4.4.98 stable release (LP: #1732698) + - adv7604: Initialize drive strength to default when using DT + - video: fbdev: pmag-ba-fb: Remove bad `__init' annotation + - PCI: mvebu: Handle changes to the bridge windows while enabled + - xen/netback: set default upper limit of tx/rx queues to 8 + - drm: drm_minor_register(): Clean up debugfs on failure + - KVM: PPC: Book 3S: XICS: correct the real mode ICP rejecting counter + - iommu/arm-smmu-v3: Clear prior settings when updating STEs + - powerpc/corenet: explicitly disable the SDHC controller on kmcoge4 + - ARM: omap2plus_defconfig: Fix probe errors on UARTs 5 and 6 + - crypto: vmx - disable preemption to enable vsx in aes_ctr.c + - iio: trigger: free trigger resource correctly + - phy: increase size of MII_BUS_ID_SIZE and bus_id + - serial: sh-sci: Fix register offsets for the IRDA serial port + - usb: hcd: initialize hcd->flags to 0 when rm hcd + - netfilter: nft_meta: deal with PACKET_LOOPBACK in netdev family + - IPsec: do not ignore crypto err in ah4 input + - Input: mpr121 - handle multiple bits change of status register + - Input: mpr121 - set missing event capability + - IB/ipoib: Change list_del to list_del_init in the tx object + - s390/qeth: issue STARTLAN as first IPA command + - (config) Add NET_DSA=n + - net: dsa: select NET_SWITCHDEV + - platform/x86: hp-wmi: Fix detection for dock and tablet mode + - cdc_ncm: Set NTB format again after altsetting switch for Huawei devices + - KEYS: trusted: sanitize all key material + - KEYS: trusted: fix writing past end of buffer in trusted_read() + - platform/x86: hp-wmi: Fix error value for hp_wmi_tablet_state + - platform/x86: hp-wmi: Do not shadow error values + - x86/uaccess, sched/preempt: Verify access_ok() context + - workqueue: Fix NULL pointer dereference + - crypto: x86/sha1-mb - fix panic due to unaligned access + - KEYS: fix NULL pointer dereference during ASN.1 parsing [ver #2] + - ARM: 8720/1: ensure dump_instr() checks addr_limit + - ALSA: seq: Fix OSS sysex delivery in OSS emulation + - ALSA: seq: Avoid invalid lockdep class warning + - MIPS: microMIPS: Fix incorrect mask in insn_table_MM + - MIPS: Fix CM region target definitions + - MIPS: SMP: Use a completion event to signal CPU up + - MIPS: Fix race on setting and getting cpu_online_mask + - MIPS: SMP: Fix deadlock & online race + - test: firmware_class: report errors properly on failure + - selftests: firmware: add empty string and async tests + - selftests: firmware: send expected errors to /dev/null + - tools: firmware: check for distro fallback udev cancel rule + - MIPS: AR7: Defer registration of GPIO + - MIPS: AR7: Ensure that serial ports are properly set up + - Input: elan_i2c - add ELAN060C to the ACPI table + - drm/vmwgfx: Fix Ubuntu 17.10 Wayland black screen issue + - rbd: use GFP_NOIO for parent stat and data requests + - can: sun4i: handle overrun in RX FIFO + - can: c_can: don't indicate triple sampling support for D_CAN + - x86/oprofile/ppro: Do not use __this_cpu*() in preemptible context + - PKCS#7: fix unitialized boolean 'want' + - Linux 4.4.98 + + * ELANTECH Touchpad is not detected in 'Lenovo Ideapad 320 14AST' after fresh + install (LP: #1727544) + - Input: elan_i2c - add ELAN060C to the ACPI table + + * Xenial update to 4.4.97 stable release (LP: #1731915) + - ALSA: timer: Add missing mutex lock for compat ioctls + - ALSA: seq: Fix nested rwsem annotation for lockdep splat + - cifs: check MaxPathNameComponentLength != 0 before using it + - KEYS: return full count in keyring_read() if buffer is too small + - KEYS: fix out-of-bounds read during ASN.1 parsing + - ASoC: adau17x1: Workaround for noise bug in ADC + - arm64: ensure __dump_instr() checks addr_limit + - ARM: dts: mvebu: pl310-cache disable double-linefill + - ARM: 8715/1: add a private asm/unaligned.h + - ocfs2: fstrim: Fix start offset of first cluster group during fstrim + - perf tools: Fix build failure on perl script context + - drm/msm: Fix potential buffer overflow issue + - drm/msm: fix an integer overflow test + - tracing/samples: Fix creation and deletion of simple_thread_fn creation + - Fix tracing sample code warning. + - PM / wakeirq: report a wakeup_event on dedicated wekup irq + - mmc: s3cmci: include linux/interrupt.h for tasklet_struct + - ARM: pxa: Don't rely on public mmc header to include leds.h + - mfd: ab8500-sysctrl: Handle probe deferral + - mfd: axp20x: Fix axp288 PEK_DBR and PEK_DBF irqs being swapped + - staging: rtl8712u: Fix endian settings for structs describing network + packets + - ext4: fix stripe-unaligned allocations + - ext4: do not use stripe_width if it is not set + - i2c: riic: correctly finish transfers + - drm/amdgpu: when dpm disabled, also need to stop/start vce. + - perf tools: Only increase index if perf_evsel__new_idx() succeeds + - cx231xx: Fix I2C on Internal Master 3 Bus + - xen/manage: correct return value check on xenbus_scanf() + - scsi: aacraid: Process Error for response I/O + - platform/x86: intel_mid_thermal: Fix module autoload + - staging: lustre: llite: don't invoke direct_IO for the EOF case + - staging: lustre: hsm: stack overrun in hai_dump_data_field + - staging: lustre: ptlrpc: skip lock if export failed + - exynos4-is: fimc-is: Unmap region obtained by of_iomap() + - mei: return error on notification request to a disconnected client + - s390/dasd: check for device error pointer within state change interrupts + - bt8xx: fix memory leak + - xen: don't print error message in case of missing Xenstore entry + - staging: r8712u: Fix Sparse warning in rtl871x_xmit.c + - Linux 4.4.97 + + * Xenial update to 4.4.96 stable release (LP: #1731882) + - workqueue: replace pool->manager_arb mutex with a flag + - ALSA: hda/realtek - Add support for ALC236/ALC3204 + - ALSA: hda - fix headset mic problem for Dell machines with alc236 + - ceph: unlock dangling spinlock in try_flush_caps() + - usb: xhci: Handle error condition in xhci_stop_device() + - spi: uapi: spidev: add missing ioctl header + - fuse: fix READDIRPLUS skipping an entry + - xen/gntdev: avoid out of bounds access in case of partial gntdev_mmap() + - Input: elan_i2c - add ELAN0611 to the ACPI table + - Input: gtco - fix potential out-of-bound access + - assoc_array: Fix a buggy node-splitting case + - scsi: zfcp: fix erp_action use-before-initialize in REC action trace + - scsi: sg: Re-fix off by one in sg_fill_request_table() + - can: sun4i: fix loopback mode + - can: kvaser_usb: Correct return value in printout + - can: kvaser_usb: Ignore CMD_FLUSH_QUEUE_REPLY messages + - regulator: fan53555: fix I2C device ids + - x86/microcode/intel: Disable late loading on model 79 + - ecryptfs: fix dereference of NULL user_key_payload + - Revert "drm: bridge: add DT bindings for TI ths8135" + - Linux 4.4.96 + + * Touchpad not detected - Lenovo ideapad 320-15IKB (LP: #1723736) + - Input: elan_i2c - add ELAN0611 to the ACPI table + + -- Stefan Bader Tue, 21 Nov 2017 15:37:52 +0100 + +linux (4.4.0-101.124) xenial; urgency=low + + * linux: 4.4.0-101.124 -proposed tracker (LP: #1731264) + + * s390/mm: fix write access check in gup_huge_pmd() (LP: #1730596) + - s390/mm: fix write access check in gup_huge_pmd() + + -- Thadeu Lima de Souza Cascardo Fri, 10 Nov 2017 08:24:10 -0200 + +linux (4.4.0-100.123) xenial; urgency=low + + * linux: 4.4.0-100.123 -proposed tracker (LP: #1729273) + + * Xenial update to 4.4.95 stable release (LP: #1729107) + - USB: devio: Revert "USB: devio: Don't corrupt user memory" + - USB: core: fix out-of-bounds access bug in usb_get_bos_descriptor() + - USB: serial: metro-usb: add MS7820 device id + - usb: cdc_acm: Add quirk for Elatec TWN3 + - usb: quirks: add quirk for WORLDE MINI MIDI keyboard + - usb: hub: Allow reset retry for USB2 devices on connect bounce + - ALSA: usb-audio: Add native DSD support for Pro-Ject Pre Box S2 Digital + - can: gs_usb: fix busy loop if no more TX context is available + - usb: musb: sunxi: Explicitly release USB PHY on exit + - usb: musb: Check for host-mode using is_host_active() on reset interrupt + - can: esd_usb2: Fix can_dlc value for received RTR, frames + - drm/nouveau/bsp/g92: disable by default + - drm/nouveau/mmu: flush tlbs before deleting page tables + - ALSA: seq: Enable 'use' locking in all configurations + - ALSA: hda: Remove superfluous '-' added by printk conversion + - i2c: ismt: Separate I2C block read from SMBus block read + - brcmsmac: make some local variables 'static const' to reduce stack size + - bus: mbus: fix window size calculation for 4GB windows + - clockevents/drivers/cs5535: Improve resilience to spurious interrupts + - rtlwifi: rtl8821ae: Fix connection lost problem + - KEYS: encrypted: fix dereference of NULL user_key_payload + - lib/digsig: fix dereference of NULL user_key_payload + - KEYS: don't let add_key() update an uninstantiated key + - pkcs7: Prevent NULL pointer dereference, since sinfo is not always set. + - parisc: Avoid trashing sr2 and sr3 in LWS code + - parisc: Fix double-word compare and exchange in LWS code on 32-bit kernels + - sched/autogroup: Fix autogroup_move_group() to never skip sched_move_task() + - f2fs crypto: replace some BUG_ON()'s with error checks + - f2fs crypto: add missing locking for keyring_key access + - fscrypt: fix dereference of NULL user_key_payload + - KEYS: Fix race between updating and finding a negative key + - fscrypto: require write access to mount to set encryption policy + - FS-Cache: fix dereference of NULL user_key_payload + - Linux 4.4.95 + + * Xenial update to 4.4.94 stable release (LP: #1729105) + - percpu: make this_cpu_generic_read() atomic w.r.t. interrupts + - drm/dp/mst: save vcpi with payloads + - MIPS: Fix minimum alignment requirement of IRQ stack + - sctp: potential read out of bounds in sctp_ulpevent_type_enabled() + - bpf/verifier: reject BPF_ALU64|BPF_END + - udpv6: Fix the checksum computation when HW checksum does not apply + - ip6_gre: skb_push ipv6hdr before packing the header in ip6gre_header + - net: emac: Fix napi poll list corruption + - packet: hold bind lock when rebinding to fanout hook + - bpf: one perf event close won't free bpf program attached by another perf + event + - isdn/i4l: fetch the ppp_write buffer in one shot + - vti: fix use after free in vti_tunnel_xmit/vti6_tnl_xmit + - l2tp: Avoid schedule while atomic in exit_net + - l2tp: fix race condition in l2tp_tunnel_delete + - tun: bail out from tun_get_user() if the skb is empty + - packet: in packet_do_bind, test fanout with bind_lock held + - packet: only test po->has_vnet_hdr once in packet_snd + - net: Set sk_prot_creator when cloning sockets to the right proto + - tipc: use only positive error codes in messages + - Revert "bsg-lib: don't free job in bsg_prepare_job" + - locking/lockdep: Add nest_lock integrity test + - watchdog: kempld: fix gcc-4.3 build + - irqchip/crossbar: Fix incorrect type of local variables + - mac80211_hwsim: check HWSIM_ATTR_RADIO_NAME length + - mac80211: fix power saving clients handling in iwlwifi + - net/mlx4_en: fix overflow in mlx4_en_init_timestamp() + - netfilter: nf_ct_expect: Change __nf_ct_expect_check() return value. + - iio: adc: xilinx: Fix error handling + - Btrfs: send, fix failure to rename top level inode due to name collision + - f2fs: do not wait for writeback in write_begin + - md/linear: shutup lockdep warnning + - sparc64: Migrate hvcons irq to panicked cpu + - net/mlx4_core: Fix VF overwrite of module param which disables DMFS on new + probed PFs + - crypto: xts - Add ECB dependency + - ocfs2/dlmglue: prepare tracking logic to avoid recursive cluster lock + - slub: do not merge cache if slub_debug contains a never-merge flag + - scsi: scsi_dh_emc: return success in clariion_std_inquiry() + - net: mvpp2: release reference to txq_cpu[] entry after unmapping + - i2c: at91: ensure state is restored after suspending + - ceph: clean up unsafe d_parent accesses in build_dentry_path + - uapi: fix linux/rds.h userspace compilation errors + - uapi: fix linux/mroute6.h userspace compilation errors + - target/iscsi: Fix unsolicited data seq_end_offset calculation + - nfsd/callback: Cleanup callback cred on shutdown + - cpufreq: CPPC: add ACPI_PROCESSOR dependency + - Revert "tty: goldfish: Fix a parameter of a call to free_irq" + - Linux 4.4.94 + + -- Thadeu Lima de Souza Cascardo Wed, 01 Nov 2017 16:54:28 -0200 + +linux (4.4.0-99.122) xenial; urgency=low + + * linux: 4.4.0-99.122 -proposed tracker (LP: #1728945) + + * Remove vmbus-rdma driver from Xenial kernel (LP: #1721538) + - SAUCE: remove hv_network_direct driver + - [Config]: Remove hv_network_direct driver + + * usb 3-1: 2:1: cannot get freq at ep 0x1 (LP: #1708499) + - ALSA: usb-audio: Add sample rate quirk for Plantronics C310/C520-M + + * Plantronics Blackwire C520-M - Cannot get freq at ep 0x1, 0x81 + (LP: #1709282) + - ALSA: usb-audio: Add sample rate quirk for Plantronics C310/C520-M + + * wait-for-root fails to detect nbd root (LP: #696435) + - nbd: Create size change events for userspace + + * Fix OpenNSL GPL bugs found by CoverityScan static analysis (LP: #1718388) + - SAUCE: opennsl: bcm-knet: check for null sinfo to avoid a null pointer + dereference + - SAUCE: opennsl: bcm-knet: remove redundant null checks on dev->name + - SAUCE: opennsl: bde: check for out-of-bounds index io.dev + + * HID: multitouch: Correct ALPS PTP Stick and Touchpad devices ID + (LP: #1722719) + - Revert "HID: multitouch: Support ALPS PTP stick with pid 0x120A" + + * Xenial update to 4.4.93 stable release (LP: #1724836) + - brcmfmac: add length check in brcmf_cfg80211_escan_handler() + - ext4: in ext4_seek_{hole,data}, return -ENXIO for negative offsets + - CIFS: Reconnect expired SMB sessions + - nl80211: Define policy for packet pattern attributes + - iwlwifi: mvm: use IWL_HCMD_NOCOPY for MCAST_FILTER_CMD + - rcu: Allow for page faults in NMI handlers + - USB: dummy-hcd: Fix deadlock caused by disconnect detection + - MIPS: math-emu: Remove pr_err() calls from fpu_emu() + - dmaengine: edma: Align the memcpy acnt array size with the transfer + - HID: usbhid: fix out-of-bounds bug + - crypto: shash - Fix zero-length shash ahash digest crash + - KVM: nVMX: fix guest CR4 loading when emulating L2 to L1 exit + - usb: renesas_usbhs: Fix DMAC sequence for receiving zero-length packet + - iommu/amd: Finish TLB flush in amd_iommu_unmap() + - ALSA: usb-audio: Kill stray URB at exiting + - ALSA: seq: Fix use-after-free at creating a port + - ALSA: seq: Fix copy_from_user() call inside lock + - ALSA: caiaq: Fix stray URB at probe error path + - ALSA: line6: Fix leftover URB at error-path during probe + - usb: gadget: composite: Fix use-after-free in + usb_composite_overwrite_options + - direct-io: Prevent NULL pointer access in submit_page_section + - fix unbalanced page refcounting in bio_map_user_iov + - USB: serial: ftdi_sio: add id for Cypress WICED dev board + - USB: serial: cp210x: add support for ELV TFD500 + - USB: serial: option: add support for TP-Link LTE module + - Revert "UBUNTU: SAUCE: USB: serial: qcserial: add Dell DW5818, DW5819" + - USB: serial: qcserial: add Dell DW5818, DW5819 + - USB: serial: console: fix use-after-free after failed setup + - x86/alternatives: Fix alt_max_short macro to really be a max() + - Linux 4.4.93 + + * NULL pointer dereference in tty_write() in kernel 4.4.0-93.116+ + (LP: #1721065) + - tty: Prepare for destroying line discipline on hangup + + * Xenial update to 4.4.92 stable release (LP: #1724783) + - usb: gadget: inode.c: fix unbalanced spin_lock in ep0_write + - USB: gadgetfs: Fix crash caused by inadequate synchronization + - USB: gadgetfs: fix copy_to_user while holding spinlock + - usb: gadget: udc: atmel: set vbus irqflags explicitly + - usb-storage: unusual_devs entry to fix write-access regression for Seagate + external drives + - usb: renesas_usbhs: fix the BCLR setting condition for non-DCP pipe + - usb: renesas_usbhs: fix usbhsf_fifo_clear() for RX direction + - ALSA: usb-audio: Check out-of-bounds access by corrupted buffer descriptor + - usb: pci-quirks.c: Corrected timeout values used in handshake + - USB: dummy-hcd: fix connection failures (wrong speed) + - USB: dummy-hcd: fix infinite-loop resubmission bug + - USB: dummy-hcd: Fix erroneous synchronization change + - USB: devio: Don't corrupt user memory + - usb: gadget: mass_storage: set msg_registered after msg registered + - USB: g_mass_storage: Fix deadlock when driver is unbound + - lsm: fix smack_inode_removexattr and xattr_getsecurity memleak + - ALSA: compress: Remove unused variable + - ALSA: usx2y: Suppress kernel warning at page allocation failures + - driver core: platform: Don't read past the end of "driver_override" buffer + - Drivers: hv: fcopy: restore correct transfer length + - stm class: Fix a use-after-free + - ftrace: Fix kmemleak in unregister_ftrace_graph + - HID: i2c-hid: allocate hid buffers for real worst case + - iwlwifi: add workaround to disable wide channels in 5GHz + - scsi: sd: Do not override max_sectors_kb sysfs setting + - USB: uas: fix bug in handling of alternate settings + - USB: core: harden cdc_parse_cdc_header + - usb: Increase quirk delay for USB devices + - USB: fix out-of-bounds in usb_set_configuration + - xhci: fix finding correct bus_state structure for USB 3.1 hosts + - iio: adc: twl4030: Fix an error handling path in 'twl4030_madc_probe()' + - iio: adc: twl4030: Disable the vusb3v1 rugulator in the error handling path + of 'twl4030_madc_probe()' + - iio: ad_sigma_delta: Implement a dedicated reset function + - staging: iio: ad7192: Fix - use the dedicated reset function avoiding dma + from stack. + - iio: core: Return error for failed read_reg + - iio: ad7793: Fix the serial interface reset + - iio: adc: mcp320x: Fix readout of negative voltages + - iio: adc: mcp320x: Fix oops on module unload + - uwb: properly check kthread_run return value + - uwb: ensure that endpoint is interrupt + - brcmfmac: setup passive scan if requested by user-space + - drm/i915/bios: ignore HDMI on port A + - sched/cpuset/pm: Fix cpuset vs. suspend-resume bugs + - ext4: fix data corruption for mmap writes + - ext4: Don't clear SGID when inheriting ACLs + - ext4: don't allow encrypted operations without keys + - Linux 4.4.92 + + * Xenial update to 4.4.91 stable release (LP: #1724772) + - drm_fourcc: Fix DRM_FORMAT_MOD_LINEAR #define + - drm: bridge: add DT bindings for TI ths8135 + - GFS2: Fix reference to ERR_PTR in gfs2_glock_iter_next + - RDS: RDMA: Fix the composite message user notification + - ARM: dts: r8a7790: Use R-Car Gen 2 fallback binding for msiof nodes + - MIPS: Ensure bss section ends on a long-aligned address + - MIPS: ralink: Fix incorrect assignment on ralink_soc + - igb: re-assign hw address pointer on reset after PCI error + - extcon: axp288: Use vbus-valid instead of -present to determine cable + presence + - sh_eth: use correct name for ECMR_MPDE bit + - hwmon: (gl520sm) Fix overflows and crash seen when writing into limit + attributes + - iio: adc: axp288: Drop bogus AXP288_ADC_TS_PIN_CTRL register modifications + - iio: adc: hx711: Add DT binding for avia,hx711 + - ARM: 8635/1: nommu: allow enabling REMAP_VECTORS_TO_RAM + - tty: goldfish: Fix a parameter of a call to free_irq + - IB/ipoib: Fix deadlock over vlan_mutex + - IB/ipoib: rtnl_unlock can not come after free_netdev + - IB/ipoib: Replace list_del of the neigh->list with list_del_init + - drm/amdkfd: fix improper return value on error + - USB: serial: mos7720: fix control-message error handling + - USB: serial: mos7840: fix control-message error handling + - partitions/efi: Fix integer overflow in GPT size calculation + - ASoC: dapm: handle probe deferrals + - audit: log 32-bit socketcalls + - usb: chipidea: vbus event may exist before starting gadget + - ASoC: dapm: fix some pointer error handling + - MIPS: Lantiq: Fix another request_mem_region() return code check + - net: core: Prevent from dereferencing null pointer when releasing SKB + - net/packet: check length in getsockopt() called with PACKET_HDRLEN + - team: fix memory leaks + - usb: plusb: Add support for PL-27A1 + - mmc: sdio: fix alignment issue in struct sdio_func + - bridge: netlink: register netdevice before executing changelink + - netfilter: invoke synchronize_rcu after set the _hook_ to NULL + - MIPS: IRQ Stack: Unwind IRQ stack onto task stack + - exynos-gsc: Do not swap cb/cr for semi planar formats + - netfilter: nfnl_cthelper: fix incorrect helper->expect_class_max + - parisc: perf: Fix potential NULL pointer dereference + - iommu/io-pgtable-arm: Check for leaf entry before dereferencing it + - rds: ib: add error handle + - md/raid10: submit bio directly to replacement disk + - i2c: meson: fix wrong variable usage in meson_i2c_put_data + - xfs: remove kmem_zalloc_greedy + - libata: transport: Remove circular dependency at free time + - drivers: firmware: psci: drop duplicate const from psci_of_match + - IB/qib: fix false-postive maybe-uninitialized warning + - ARM: remove duplicate 'const' annotations' + - ALSA: au88x0: avoid theoretical uninitialized access + - ttpci: address stringop overflow warning + - Linux 4.4.91 + + -- Thadeu Lima de Souza Cascardo Tue, 31 Oct 2017 11:49:30 -0200 + +linux (4.4.0-98.121) xenial; urgency=low + + * linux: 4.4.0-98.121 -proposed tracker (LP: #1722299) + + * Controller lockup detected on ProLiant DL380 Gen9 with P440 Controller + (LP: #1720359) + - scsi: hpsa: limit transfer length to 1MB + + * [Dell Docking IE][0bda:8153] Realtek USB Ethernet leads to system hang + (LP: #1720977) + - r8152: fix the list rx_done may be used without initialization + + * Add installer support for Broadcom BCM573xx network drivers. (LP: #1720466) + - d-i: Add bnxt_en to nic-modules. + + * snapcraft.yaml: add dpkg-dev to the build deps (LP: #1718886) + - snapcraft.yaml: add dpkg-dev to the build deps + + * Support setting I2C_TIMEOUT via ioctl for i2c-designware (LP: #1718578) + - i2c: designware: Use transfer timeout from ioctl I2C_TIMEOUT + + * 5U84 - ses driver isn't binding right - cannot blink lights on 1 of the 2 + 5u84 (LP: #1693369) + - scsi_transport_sas: add function to get SAS endpoint address + - ses: fix discovery of SATA devices in SAS enclosures + - scsi: sas: provide stub implementation for scsi_is_sas_rphy + - scsi: ses: Fix SAS device detection in enclosure + + * multipath -ll is not showing the disks which are actually multipath + (LP: #1718397) + - fs: aio: fix the increment of aio-nr and counting against aio-max-nr + + * Support Dell Wireless DW5819/5818 WWAN devices (LP: #1721455) + - SAUCE: USB: serial: qcserial: add Dell DW5818, DW5819 + + * CVE-2017-10911 + - xen-blkback: don't leak stack data via response ring + + * implement 'complain mode' in seccomp for developer mode with snaps + (LP: #1567597) + - seccomp: Provide matching filter for introspection + - seccomp: Sysctl to display available actions + - seccomp: Operation for checking if an action is available + - seccomp: Sysctl to configure actions that are allowed to be logged + - seccomp: Selftest for detection of filter flag support + - seccomp: Action to log before allowing + + * implement errno action logging in seccomp for strict mode with snaps + (LP: #1721676) + - seccomp: Provide matching filter for introspection + - seccomp: Sysctl to display available actions + - seccomp: Operation for checking if an action is available + - seccomp: Sysctl to configure actions that are allowed to be logged + - seccomp: Selftest for detection of filter flag support + - seccomp: Filter flag to log all actions except SECCOMP_RET_ALLOW + + * [Xenial] update OpenNSL kernel modules to 6.5.10 (LP: #1721511) + - SAUCE: update OpenNSL kernel modules to 6.5.10 + + * Xenial update to 4.4.90 stable release (LP: #1721550) + - cifs: release auth_key.response for reconnect. + - mac80211: flush hw_roc_start work before cancelling the ROC + - KVM: PPC: Book3S: Fix race and leak in kvm_vm_ioctl_create_spapr_tce() + - tracing: Fix trace_pipe behavior for instance traces + - tracing: Erase irqsoff trace with empty write + - md/raid5: fix a race condition in stripe batch + - md/raid5: preserve STRIPE_ON_UNPLUG_LIST in break_stripe_batch_list + - scsi: scsi_transport_iscsi: fix the issue that iscsi_if_rx doesn't parse + nlmsg properly + - crypto: talitos - Don't provide setkey for non hmac hashing algs. + - crypto: talitos - fix sha224 + - KEYS: fix writing past end of user-supplied buffer in keyring_read() + - KEYS: prevent creating a different user's keyrings + - KEYS: prevent KEYCTL_READ on negative key + - powerpc/pseries: Fix parent_dn reference leak in add_dt_node() + - Fix SMB3.1.1 guest authentication to Samba + - SMB: Validate negotiate (to protect against downgrade) even if signing off + - SMB3: Don't ignore O_SYNC/O_DSYNC and O_DIRECT flags + - vfs: Return -ENXIO for negative SEEK_HOLE / SEEK_DATA offsets + - nl80211: check for the required netlink attributes presence + - bsg-lib: don't free job in bsg_prepare_job + - seccomp: fix the usage of get/put_seccomp_filter() in seccomp_get_filter() + - arm64: Make sure SPsel is always set + - arm64: fault: Route pte translation faults via do_translation_fault + - KVM: VMX: Do not BUG() on out-of-bounds guest IRQ + - kvm: nVMX: Don't allow L2 to access the hardware CR8 + - PCI: Fix race condition with driver_override + - btrfs: fix NULL pointer dereference from free_reloc_roots() + - btrfs: propagate error to btrfs_cmp_data_prepare caller + - btrfs: prevent to set invalid default subvolid + - x86/fpu: Don't let userspace set bogus xcomp_bv + - gfs2: Fix debugfs glocks dump + - timer/sysclt: Restrict timer migration sysctl values to 0 and 1 + - KVM: VMX: do not change SN bit in vmx_update_pi_irte() + - KVM: VMX: remove WARN_ON_ONCE in kvm_vcpu_trigger_posted_interrupt + - cxl: Fix driver use count + - dmaengine: mmp-pdma: add number of requestors + - ARM: pxa: add the number of DMA requestor lines + - ARM: pxa: fix the number of DMA requestor lines + - KVM: VMX: use cmpxchg64 + - video: fbdev: aty: do not leak uninitialized padding in clk to userspace + - swiotlb-xen: implement xen_swiotlb_dma_mmap callback + - fix xen_swiotlb_dma_mmap prototype + - Linux 4.4.90 + + * Xenial update to 4.4.89 stable release (LP: #1721477) + - ipv6: accept 64k - 1 packet length in ip6_find_1stfragopt() + - ipv6: add rcu grace period before freeing fib6_node + - ipv6: fix sparse warning on rt6i_node + - qlge: avoid memcpy buffer overflow + - Revert "net: phy: Correctly process PHY_HALTED in phy_stop_machine()" + - Revert "net: use lib/percpu_counter API for fragmentation mem accounting" + - Revert "net: fix percpu memory leaks" + - gianfar: Fix Tx flow control deactivation + - ipv6: fix memory leak with multiple tables during netns destruction + - ipv6: fix typo in fib6_net_exit() + - f2fs: check hot_data for roll-forward recovery + - x86/fsgsbase/64: Report FSBASE and GSBASE correctly in core dumps + - md/raid5: release/flush io in raid5_do_work() + - nfsd: Fix general protection fault in release_lock_stateid() + - mm: prevent double decrease of nr_reserved_highatomic + - tty: improve tty_insert_flip_char() fast path + - tty: improve tty_insert_flip_char() slow path + - tty: fix __tty_insert_flip_char regression + - Input: i8042 - add Gigabyte P57 to the keyboard reset table + - MIPS: math-emu: .: Fix quiet NaN propagation + - MIPS: math-emu: .: Fix cases of both inputs zero + - MIPS: math-emu: .: Fix cases of both inputs negative + - MIPS: math-emu: .: Fix cases of input values with opposite + signs + - MIPS: math-emu: .: Fix cases of both infinite inputs + - MIPS: math-emu: MINA.: Fix some cases of infinity and zero inputs + - crypto: AF_ALG - remove SGL terminator indicator when chaining + - ext4: fix incorrect quotaoff if the quota feature is enabled + - ext4: fix quota inconsistency during orphan cleanup for read-only mounts + - powerpc: Fix DAR reporting when alignment handler faults + - block: Relax a check in blk_start_queue() + - md/bitmap: disable bitmap_resize for file-backed bitmaps. + - skd: Avoid that module unloading triggers a use-after-free + - skd: Submit requests to firmware before triggering the doorbell + - scsi: zfcp: fix queuecommand for scsi_eh commands when DIX enabled + - scsi: zfcp: add handling for FCP_RESID_OVER to the fcp ingress path + - scsi: zfcp: fix capping of unsuccessful GPN_FT SAN response trace records + - scsi: zfcp: fix passing fsf_req to SCSI trace on TMF to correlate with HBA + - scsi: zfcp: fix missing trace records for early returns in TMF eh handlers + - scsi: zfcp: fix payload with full FCP_RSP IU in SCSI trace records + - scsi: zfcp: trace HBA FSF response by default on dismiss or timedout late + response + - scsi: zfcp: trace high part of "new" 64 bit SCSI LUN + - scsi: megaraid_sas: Check valid aen class range to avoid kernel panic + - scsi: megaraid_sas: Return pended IOCTLs with cmd_status + MFI_STAT_WRONG_STATE in case adapter is dead + - scsi: storvsc: fix memory leak on ring buffer busy + - scsi: sg: remove 'save_scat_len' + - scsi: sg: use standard lists for sg_requests + - scsi: sg: off by one in sg_ioctl() + - scsi: sg: factor out sg_fill_request_table() + - scsi: sg: fixup infoleak when using SG_GET_REQUEST_TABLE + - scsi: qla2xxx: Fix an integer overflow in sysfs code + - ftrace: Fix selftest goto location on error + - tracing: Apply trace_clock changes to instance max buffer + - ARC: Re-enable MMU upon Machine Check exception + - PCI: shpchp: Enable bridge bus mastering if MSI is enabled + - media: v4l2-compat-ioctl32: Fix timespec conversion + - media: uvcvideo: Prevent heap overflow when accessing mapped controls + - bcache: initialize dirty stripes in flash_dev_run() + - bcache: Fix leak of bdev reference + - bcache: do not subtract sectors_to_gc for bypassed IO + - bcache: correct cache_dirty_target in __update_writeback_rate() + - bcache: Correct return value for sysfs attach errors + - bcache: fix for gc and write-back race + - bcache: fix bch_hprint crash and improve output + - ftrace: Fix memleak when unregistering dynamic ops when tracing disabled + - Linux 4.4.89 + + * ETPS/2 Elantech Touchpad inconsistently detected (Gigabyte P57W laptop) + (LP: #1594214) + - Input: i8042 - add Gigabyte P57 to the keyboard reset table + + * Xenial update to 4.4.88 stable release (LP: #1718195) + - usb: quirks: add delay init quirk for Corsair Strafe RGB keyboard + - USB: serial: option: add support for D-Link DWM-157 C1 + - usb: Add device quirk for Logitech HD Pro Webcam C920-C + - usb:xhci:Fix regression when ATI chipsets detected + - USB: core: Avoid race of async_completed() w/ usbdev_release() + - staging/rts5208: fix incorrect shift to extract upper nybble + - driver core: bus: Fix a potential double free + - intel_th: pci: Add Cannon Lake PCH-H support + - intel_th: pci: Add Cannon Lake PCH-LP support + - ath10k: fix memory leak in rx ring buffer allocation + - rtlwifi: rtl_pci_probe: Fix fail path of _rtl_pci_find_adapter + - Bluetooth: Add support of 13d3:3494 RTL8723BE device + - dlm: avoid double-free on error path in dlm_device_{register,unregister} + - mwifiex: correct channel stat buffer overflows + - drm/nouveau/pci/msi: disable MSI on big-endian platforms by default + - workqueue: Fix flag collision + - cs5536: add support for IDE controller variant + - scsi: sg: protect against races between mmap() and SG_SET_RESERVED_SIZE + - scsi: sg: recheck MMAP_IO request length with lock held + - drm: adv7511: really enable interrupts for EDID detection + - drm/bridge: adv7511: Fix mutex deadlock when interrupts are disabled + - drm/bridge: adv7511: Use work_struct to defer hotplug handing to out of irq + context + - drm/bridge: adv7511: Switch to using drm_kms_helper_hotplug_event() + - drm/bridge: adv7511: Re-write the i2c address before EDID probing + - btrfs: resume qgroup rescan on rw remount + - locktorture: Fix potential memory leak with rw lock test + - ALSA: msnd: Optimize / harden DSP and MIDI loops + - ARM: 8692/1: mm: abort uaccess retries upon fatal signal + - NFS: Fix 2 use after free issues in the I/O code + - xfs: XFS_IS_REALTIME_INODE() should be false if no rt device present + - Linux 4.4.88 + + * Kernel has troule recognizing Corsair Strafe RGB keyboard (LP: #1678477) + - usb: quirks: add delay init quirk for Corsair Strafe RGB keyboard + + -- Thadeu Lima de Souza Cascardo Tue, 10 Oct 2017 08:52:24 -0300 + +linux (4.4.0-97.120) xenial; urgency=low + + * linux: 4.4.0-97.120 -proposed tracker (LP: #1718149) + + * blk-mq: possible deadlock on CPU hot(un)plug (LP: #1670634) + - [Config] s390x -- disable CONFIG_{DM, SCSI}_MQ_DEFAULT + + * Xenial update to 4.4.87 stable release (LP: #1715678) + - irqchip: mips-gic: SYNC after enabling GIC region + - i2c: ismt: Don't duplicate the receive length for block reads + - i2c: ismt: Return EMSGSIZE for block reads with bogus length + - ceph: fix readpage from fscache + - cpumask: fix spurious cpumask_of_node() on non-NUMA multi-node configs + - cpuset: Fix incorrect memory_pressure control file mapping + - alpha: uapi: Add support for __SANE_USERSPACE_TYPES__ + - CIFS: remove endian related sparse warning + - wl1251: add a missing spin_lock_init() + - xfrm: policy: check policy direction value + - drm/ttm: Fix accounting error when fail to get pages for pool + - kvm: arm/arm64: Fix race in resetting stage2 PGD + - kvm: arm/arm64: Force reading uncached stage2 PGD + - epoll: fix race between ep_poll_callback(POLLFREE) and ep_free()/ep_remove() + - crypto: algif_skcipher - only call put_page on referenced and used pages + - Linux 4.4.87 + + * Xenial update to 4.4.86 stable release (LP: #1715430) + - scsi: isci: avoid array subscript warning + - ALSA: au88x0: Fix zero clear of stream->resources + - btrfs: remove duplicate const specifier + - i2c: jz4780: drop superfluous init + - gcov: add support for gcc version >= 6 + - gcov: support GCC 7.1 + - lightnvm: initialize ppa_addr in dev_to_generic_addr() + - p54: memset(0) whole array + - lpfc: Fix Device discovery failures during switch reboot test. + - arm64: mm: abort uaccess retries upon fatal signal + - x86/io: Add "memory" clobber to insb/insw/insl/outsb/outsw/outsl + - arm64: fpsimd: Prevent registers leaking across exec + - scsi: sg: protect accesses to 'reserved' page array + - scsi: sg: reset 'res_in_use' after unlinking reserved array + - drm/i915: fix compiler warning in drivers/gpu/drm/i915/intel_uncore.c + - Linux 4.4.86 + + * Xenial update to 4.4.85 stable release (LP: #1714298) + - af_key: do not use GFP_KERNEL in atomic contexts + - dccp: purge write queue in dccp_destroy_sock() + - dccp: defer ccid_hc_tx_delete() at dismantle time + - ipv4: fix NULL dereference in free_fib_info_rcu() + - net_sched/sfq: update hierarchical backlog when drop packet + - ipv4: better IP_MAX_MTU enforcement + - sctp: fully initialize the IPv6 address in sctp_v6_to_addr() + - tipc: fix use-after-free + - ipv6: reset fn->rr_ptr when replacing route + - ipv6: repair fib6 tree in failure case + - tcp: when rearming RTO, if RTO time is in past then fire RTO ASAP + - irda: do not leak initialized list.dev to userspace + - net: sched: fix NULL pointer dereference when action calls some targets + - net_sched: fix order of queue length updates in qdisc_replace() + - mei: me: add broxton pci device ids + - mei: me: add lewisburg device ids + - Input: trackpoint - add new trackpoint firmware ID + - Input: elan_i2c - add ELAN0602 ACPI ID to support Lenovo Yoga310 + - ALSA: core: Fix unexpected error at replacing user TLV + - ALSA: hda - Add stereo mic quirk for Lenovo G50-70 (17aa:3978) + - ARCv2: PAE40: Explicitly set MSB counterpart of SLC region ops addresses + - i2c: designware: Fix system suspend + - drm: Release driver tracking before making the object available again + - drm/atomic: If the atomic check fails, return its value first + - drm: rcar-du: lvds: Fix PLL frequency-related configuration + - drm: rcar-du: lvds: Rename PLLEN bit to PLLON + - drm: rcar-du: Fix crash in encoder failure error path + - drm: rcar-du: Fix display timing controller parameter + - drm: rcar-du: Fix H/V sync signal polarity configuration + - tracing: Fix freeing of filter in create_filter() when set_str is false + - cifs: Fix df output for users with quota limits + - cifs: return ENAMETOOLONG for overlong names in cifs_open()/cifs_lookup() + - nfsd: Limit end of page list when decoding NFSv4 WRITE + - perf/core: Fix group {cpu,task} validation + - Bluetooth: hidp: fix possible might sleep error in hidp_session_thread + - Bluetooth: cmtp: fix possible might sleep error in cmtp_session + - Bluetooth: bnep: fix possible might sleep error in bnep_session + - binder: use group leader instead of open thread + - binder: Use wake up hint for synchronous transactions. + - ANDROID: binder: fix proc->tsk check. + - iio: imu: adis16480: Fix acceleration scale factor for adis16480 + - iio: hid-sensor-trigger: Fix the race with user space powering up sensors + - staging: rtl8188eu: add RNX-N150NUB support + - ASoC: simple-card: don't fail if sysclk setting is not supported + - ASoC: rsnd: disable SRC.out only when stop timing + - ASoC: rsnd: avoid pointless loop in rsnd_mod_interrupt() + - ASoC: rsnd: Add missing initialization of ADG req_rate + - ASoC: rsnd: ssi: 24bit data needs right-aligned settings + - ASoC: rsnd: don't call update callback if it was NULL + - ntb_transport: fix qp count bug + - ntb_transport: fix bug calculating num_qps_mw + - ACPI: ioapic: Clear on-stack resource before using it + - ACPI / APEI: Add missing synchronize_rcu() on NOTIFY_SCI removal + - Linux 4.4.85 + + * Xenial update to 4.4.84 stable release (LP: #1713729) + - audit: Fix use after free in audit_remove_watch_rule() + - parisc: pci memory bar assignment fails with 64bit kernels on dino/cujo + - crypto: x86/sha1 - Fix reads beyond the number of blocks passed + - Input: elan_i2c - Add antoher Lenovo ACPI ID for upcoming Lenovo NB + - ALSA: seq: 2nd attempt at fixing race creating a queue + - Revert "UBUNTU: SAUCE: (no-up) ALSA: usb-audio: Add quirk for sennheiser + officerunner" + - ALSA: usb-audio: Apply sample rate quirk to Sennheiser headset + - ALSA: usb-audio: Add mute TLV for playback volumes on C-Media devices + - mm/mempolicy: fix use after free when calling get_mempolicy + - xen: fix bio vec merging + - x86/asm/64: Clear AC on NMI entries + - irqchip/atmel-aic: Fix unbalanced of_node_put() in aic_common_irq_fixup() + - irqchip/atmel-aic: Fix unbalanced refcount in aic_common_rtc_irq_fixup() + - Sanitize 'move_pages()' permission checks + - pids: make task_tgid_nr_ns() safe + - perf/x86: Fix LBR related crashes on Intel Atom + - usb: optimize acpi companion search for usb port devices + - usb: qmi_wwan: add D-Link DWM-222 device ID + - Linux 4.4.84 + + * Intel i40e PF reset due to incorrect MDD detection (LP: #1713553) + - i40e: Limit TX descriptor count in cases where frag size is greater than 16K + + * Neighbour confirmation broken, breaks ARP cache aging (LP: #1715812) + - sock: add sk_dst_pending_confirm flag + - net: add dst_pending_confirm flag to skbuff + - sctp: add dst_pending_confirm flag + - tcp: replace dst_confirm with sk_dst_confirm + - net: add confirm_neigh method to dst_ops + - net: use dst_confirm_neigh for UDP, RAW, ICMP, L2TP + - net: pending_confirm is not used anymore + + * CVE-2017-14106 + - tcp: initialize rcv_mss to TCP_MIN_MSS instead of 0 + + * [CIFS] Fix maximum SMB2 header size (LP: #1713884) + - CIFS: Fix maximum SMB2 header size + + * Middle button of trackpoint doesn't work (LP: #1715271) + - Input: trackpoint - assume 3 buttons when buttons detection fails + + * kernel BUG at /build/linux-lts-xenial-_hWfOZ/linux-lts- + xenial-4.4.0/security/apparmor/include/context.h:69! (LP: #1626984) + - SAUCE: fix oops when disabled and module parameters, are accessed + + * Touchpad not detected (LP: #1708852) + - Input: elan_i2c - add ELAN0608 to the ACPI table + + -- Kleber Sacilotto de Souza Tue, 19 Sep 2017 17:55:11 +0200 + +linux (4.4.0-96.119) xenial; urgency=low + + * linux: 4.4.0-96.119 -proposed tracker (LP: #1716613) + + * kernel panic -not syncing: Fatal exception: panic_on_oops (LP: #1708399) + - s390/mm: no local TLB flush for clearing-by-ASCE IDTE + - SAUCE: s390/mm: fix local TLB flushing vs. detach of an mm address space + - SAUCE: s390/mm: fix race on mm->context.flush_mm + + * CVE-2017-1000251 + - Bluetooth: Properly check L2CAP config option output buffer length + + -- Stefan Bader Tue, 12 Sep 2017 15:40:01 +0200 + +linux (4.4.0-95.118) xenial; urgency=low + + * linux: 4.4.0-95.118 -proposed tracker (LP: #1715651) + + * Xenial update to 4.4.78 stable release broke Address Sanitizer + (LP: #1715636) + - mm: revert x86_64 and arm64 ELF_ET_DYN_BASE base changes + + -- Kleber Sacilotto de Souza Thu, 07 Sep 2017 17:26:15 +0200 + +linux (4.4.0-94.117) xenial; urgency=low + + * linux: 4.4.0-94.117 -proposed tracker (LP: #1713462) + + * mwifiex causes kernel oops when AP mode is enabled (LP: #1712746) + - SAUCE: net/wireless: do not dereference invalid pointer + - SAUCE: mwifiex: do not dereference invalid pointer + + * Backport more recent Broadcom bnxt_en driver (LP: #1711056) + - SAUCE: bnxt_en_bpo: Import bnxt_en driver version 1.8.1 + - SAUCE: bnxt_en_bpo: Drop distro out-of-tree detection logic + - SAUCE: bnxt_en_bpo: Remove unnecessary compile flags + - SAUCE: bnxt_en_bpo: Move config settings to Kconfig + - SAUCE: bnxt_en_bpo: Remove PCI_IDs handled by the regular driver + - SAUCE: bnxt_en_bpo: Rename the backport driver to bnxt_en_bpo + - bnxt_en_bpo: [Config] Enable CONFIG_BNXT_BPO=m + + * HID: multitouch: Support ALPS PTP Stick and Touchpad devices (LP: #1712481) + - HID: multitouch: Support PTP Stick and Touchpad device + - SAUCE: HID: multitouch: Support ALPS PTP stick with pid 0x120A + + * igb: Support using Broadcom 54616 as PHY (LP: #1712024) + - SAUCE: igb: add support for using Broadcom 54616 as PHY + + * IPR driver causes multipath to fail paths/stuck IO on Medium Errors + (LP: #1682644) + - scsi: ipr: do not set DID_PASSTHROUGH on CHECK CONDITION + + * accessing /dev/hvc1 with stress-ng on Ubuntu xenial causes crash + (LP: #1711401) + - tty/hvc: Use IRQF_SHARED for OPAL hvc consoles + + * memory-hotplug test needs to be fixed (LP: #1710868) + - selftests: typo correction for memory-hotplug test + - selftests: check hot-pluggagble memory for memory-hotplug test + - selftests: check percentage range for memory-hotplug test + - selftests: add missing test name in memory-hotplug test + - selftests: fix memory-hotplug test + + * HP lt4132 LTE/HSPA+ 4G Module (03f0:a31d) does not work (LP: #1707643) + - net: cdc_mbim: apply "NDP to end" quirk to HP lt4132 + + * Migrating KSM page causes the VM lock up as the KSM page merging list is too + large (LP: #1680513) + - ksm: introduce ksm_max_page_sharing per page deduplication limit + - ksm: fix use after free with merge_across_nodes = 0 + - ksm: cleanup stable_node chain collapse case + - ksm: swap the two output parameters of chain/chain_prune + - ksm: optimize refile of stable_node_dup at the head of the chain + + * sort ABI files with C.UTF-8 locale (LP: #1712345) + - [Packaging] sort ABI files with C.UTF-8 locale + + * Include Broadcom GPL modules in Xenial Kernel (LP: #1665783) + - [Config] OpenNSL Kconfig/Makefile + - Import OpenNSL v3.1.0.17 + - [Config] CONFIG_OPENNSL=y for amd64 + - OpenNSL: Enable Kconfig and build + - SAUCE: opennsl: add proper CFLAGS + + * Xenial update to 4.4.83 stable release (LP: #1711557) + - cpuset: fix a deadlock due to incomplete patching of cpusets_enabled() + - mm: ratelimit PFNs busy info message + - iscsi-target: fix memory leak in iscsit_setup_text_cmd() + - iscsi-target: Fix iscsi_np reset hung task during parallel delete + - fuse: initialize the flock flag in fuse_file on allocation + - nfs/flexfiles: fix leak of nfs4_ff_ds_version arrays + - USB: serial: option: add D-Link DWM-222 device ID + - USB: serial: cp210x: add support for Qivicon USB ZigBee dongle + - USB: serial: pl2303: add new ATEN device id + - usb: musb: fix tx fifo flush handling again + - USB: hcd: Mark secondary HCD as dead if the primary one died + - staging:iio:resolver:ad2s1210 fix negative IIO_ANGL_VEL read + - iio: accel: bmc150: Always restore device to normal mode after suspend- + resume + - iio: light: tsl2563: use correct event code + - uas: Add US_FL_IGNORE_RESIDUE for Initio Corporation INIC-3069 + - USB: Check for dropped connection before switching to full speed + - usb: core: unlink urbs from the tail of the endpoint's urb_list + - usb: quirks: Add no-lpm quirk for Moshi USB to Ethernet Adapter + - usb:xhci:Add quirk for Certain failing HP keyboard on reset after resume + - iio: adc: vf610_adc: Fix VALT selection value for REFSEL bits + - pnfs/blocklayout: require 64-bit sector_t + - pinctrl: sunxi: add a missing function of A10/A20 pinctrl driver + - pinctrl: samsung: Remove bogus irq_[un]mask from resource management + - Linux 4.4.83 + + * Xenial update to 4.4.82 stable release (LP: #1711535) + - tcp: avoid setting cwnd to invalid ssthresh after cwnd reduction states + - net: fix keepalive code vs TCP_FASTOPEN_CONNECT + - bpf, s390: fix jit branch offset related to ldimm64 + - net: sched: set xt_tgchk_param par.nft_compat as 0 in ipt_init_target + - tcp: fastopen: tcp_connect() must refresh the route + - net: avoid skb_warn_bad_offload false positives on UFO + - sparc64: Prevent perf from running during super critical sections + - KVM: arm/arm64: Handle hva aging while destroying the vm + - mm/mempool: avoid KASAN marking mempool poison checks as use-after-free + - Linux 4.4.82 + + * Xenial update to 4.4.81 stable release (LP: #1711526) + - libata: array underflow in ata_find_dev() + - workqueue: restore WQ_UNBOUND/max_active==1 to be ordered + - ALSA: hda - Fix speaker output from VAIO VPCL14M1R + - ASoC: do not close shared backend dailink + - KVM: async_pf: make rcu irq exit if not triggered from idle task + - mm/page_alloc: Remove kernel address exposure in free_reserved_area() + - ext4: fix SEEK_HOLE/SEEK_DATA for blocksize < pagesize + - ext4: fix overflow caused by missing cast in ext4_resize_fs() + - ARM: dts: armada-38x: Fix irq type for pca955 + - media: platform: davinci: return -EINVAL for VPFE_CMD_S_CCDC_RAW_PARAMS + ioctl + - target: Avoid mappedlun symlink creation during lun shutdown + - iscsi-target: Always wait for kthread_should_stop() before kthread exit + - iscsi-target: Fix early sk_data_ready LOGIN_FLAGS_READY race + - iscsi-target: Fix initial login PDU asynchronous socket close OOPs + - iscsi-target: Fix delayed logout processing greater than + SECONDS_FOR_LOGOUT_COMP + - iser-target: Avoid isert_conn->cm_id dereference in isert_login_recv_done + - mm, mprotect: flush TLB if potentially racing with a parallel reclaim + leaving stale TLB entries + - media: lirc: LIRC_GET_REC_RESOLUTION should return microseconds + - f2fs: sanity check checkpoint segno and blkoff + - drm: rcar-du: fix backport bug + - saa7164: fix double fetch PCIe access condition + - ipv4: ipv6: initialize treq->txhash in cookie_v[46]_check() + - net: Zero terminate ifr_name in dev_ifname(). + - ipv6: avoid overflow of offset in ip6_find_1stfragopt + - ipv4: initialize fib_trie prior to register_netdev_notifier call. + - rtnetlink: allocate more memory for dev_set_mac_address() + - mcs7780: Fix initialization when CONFIG_VMAP_STACK is enabled + - openvswitch: fix potential out of bound access in parse_ct + - packet: fix use-after-free in prb_retire_rx_blk_timer_expired() + - ipv6: Don't increase IPSTATS_MIB_FRAGFAILS twice in ip6_fragment() + - net: ethernet: nb8800: Handle all 4 RGMII modes identically + - dccp: fix a memleak that dccp_ipv6 doesn't put reqsk properly + - dccp: fix a memleak that dccp_ipv4 doesn't put reqsk properly + - dccp: fix a memleak for dccp_feat_init err process + - sctp: don't dereference ptr before leaving _sctp_walk_{params, errors}() + - sctp: fix the check for _sctp_walk_params and _sctp_walk_errors + - net/mlx5: Fix command bad flow on command entry allocation failure + - net: phy: Correctly process PHY_HALTED in phy_stop_machine() + - net: phy: Fix PHY unbind crash + - xen-netback: correctly schedule rate-limited queues + - sparc64: Measure receiver forward progress to avoid send mondo timeout + - wext: handle NULL extra data in iwe_stream_add_point better + - sh_eth: R8A7740 supports packet shecksumming + - net: phy: dp83867: fix irq generation + - tg3: Fix race condition in tg3_get_stats64(). + - x86/boot: Add missing declaration of string functions + - phy state machine: failsafe leave invalid RUNNING state + - scsi: qla2xxx: Get mutex lock before checking optrom_state + - drm/virtio: fix framebuffer sparse warning + - virtio_blk: fix panic in initialization error path + - ARM: 8632/1: ftrace: fix syscall name matching + - mm, slab: make sure that KMALLOC_MAX_SIZE will fit into MAX_ORDER + - lib/Kconfig.debug: fix frv build failure + - signal: protect SIGNAL_UNKILLABLE from unintentional clearing. + - mm: don't dereference struct page fields of invalid pages + - workqueue: implicit ordered attribute should be overridable + - Linux 4.4.81 + + * Xenial update to 4.4.80 stable release (LP: #1710646) + - af_key: Add lock to key dump + - pstore: Make spinlock per zone instead of global + - powerpc/pseries: Fix of_node_put() underflow during reconfig remove + - crypto: authencesn - Fix digest_null crash + - md/raid5: add thread_group worker async_tx_issue_pending_all + - drm/vmwgfx: Fix gcc-7.1.1 warning + - drm/nouveau/bar/gf100: fix access to upper half of BAR2 + - KVM: PPC: Book3S HV: Context-switch EBB registers properly + - KVM: PPC: Book3S HV: Restore critical SPRs to host values on guest exit + - KVM: PPC: Book3S HV: Reload HTM registers explicitly + - KVM: PPC: Book3S HV: Save/restore host values of debug registers + - Revert "powerpc/numa: Fix percpu allocations to be NUMA aware" + - Staging: comedi: comedi_fops: Avoid orphaned proc entry + - drm/rcar: Nuke preclose hook + - drm: rcar-du: Perform initialization/cleanup at probe/remove time + - drm: rcar-du: Simplify and fix probe error handling + - perf intel-pt: Fix ip compression + - perf intel-pt: Fix last_ip usage + - perf intel-pt: Use FUP always when scanning for an IP + - perf intel-pt: Ensure never to set 'last_ip' when packet 'count' is zero + - xfs: don't BUG() on mixed direct and mapped I/O + - nfc: fdp: fix NULL pointer dereference + - net: phy: Do not perform software reset for Generic PHY + - isdn: Fix a sleep-in-atomic bug + - isdn/i4l: fix buffer overflow + - ath10k: fix null deref on wmi-tlv when trying spectral scan + - wil6210: fix deadlock when using fw_no_recovery option + - mailbox: always wait in mbox_send_message for blocking Tx mode + - mailbox: skip complete wait event if timer expired + - mailbox: handle empty message in tx_tick + - mpt3sas: Don't overreach ioc->reply_post[] during initialization + - kaweth: fix firmware download + - kaweth: fix oops upon failed memory allocation + - sched/cgroup: Move sched_online_group() back into css_online() to fix crash + - PM / Domains: defer dev_pm_domain_set() until genpd->attach_dev succeeds if + present + - RDMA/uverbs: Fix the check for port number + - libnvdimm, btt: fix btt_rw_page not returning errors + - ipmi/watchdog: fix watchdog timeout set on reboot + - v4l: s5c73m3: fix negation operator + - pstore: Allow prz to control need for locking + - pstore: Correctly initialize spinlock and flags + - pstore: Use dynamic spinlock initializer + - net: skb_needs_check() accepts CHECKSUM_NONE for tx + - sched/cputime: Fix prev steal time accouting during CPU hotplug + - xen/blkback: don't free be structure too early + - xen/blkback: don't use xen_blkif_get() in xen-blkback kthread + - tpm: fix a kernel memory leak in tpm-sysfs.c + - tpm: Replace device number bitmap with IDR + - x86/mce/AMD: Make the init code more robust + - r8169: add support for RTL8168 series add-on card. + - ARM: dts: n900: Mark eMMC slot with no-sdio and no-sd flags + - net/mlx4: Remove BUG_ON from ICM allocation routine + - drm/msm: Ensure that the hardware write pointer is valid + - drm/msm: Verify that MSM_SUBMIT_BO_FLAGS are set + - vfio-pci: use 32-bit comparisons for register address for gcc-4.5 + - irqchip/keystone: Fix "scheduling while atomic" on rt + - ASoC: tlv320aic3x: Mark the RESET register as volatile + - spi: dw: Make debugfs name unique between instances + - ASoC: nau8825: fix invalid configuration in Pre-Scalar of FLL + - irqchip/mxs: Enable SKIP_SET_WAKE and MASK_ON_SUSPEND + - openrisc: Add _text symbol to fix ksym build error + - dmaengine: ioatdma: Add Skylake PCI Dev ID + - dmaengine: ioatdma: workaround SKX ioatdma version + - dmaengine: ti-dma-crossbar: Add some 'of_node_put()' in error path. + - ARM64: zynqmp: Fix W=1 dtc 1.4 warnings + - ARM64: zynqmp: Fix i2c node's compatible string + - ARM: s3c2410_defconfig: Fix invalid values for NF_CT_PROTO_* + - ACPI / scan: Prefer devices without _HID/_CID for _ADR matching + - usb: gadget: Fix copy/pasted error message + - Btrfs: adjust outstanding_extents counter properly when dio write is split + - tools lib traceevent: Fix prev/next_prio for deadline tasks + - xfrm: Don't use sk_family for socket policy lookups + - perf tools: Install tools/lib/traceevent plugins with install-bin + - perf symbols: Robustify reading of build-id from sysfs + - video: fbdev: cobalt_lcdfb: Handle return NULL error from devm_ioremap + - vfio-pci: Handle error from pci_iomap + - arm64: mm: fix show_pte KERN_CONT fallout + - nvmem: imx-ocotp: Fix wrong register size + - sh_eth: enable RX descriptor word 0 shift on SH7734 + - ALSA: usb-audio: test EP_FLAG_RUNNING at urb completion + - HID: ignore Petzl USB headlamp + - scsi: fnic: Avoid sending reset to firmware when another reset is in + progress + - scsi: snic: Return error code on memory allocation failure + - ASoC: dpcm: Avoid putting stream state to STOP when FE stream is paused + - Linux 4.4.80 + + * Please only recommend or suggest initramfs-tools | linux-initramfs-tool for + kernels able to boot without initramfs (LP: #1700972) + - [Debian] Don't depend on initramfs-tools + + -- Kleber Sacilotto de Souza Mon, 28 Aug 2017 17:07:08 +0200 + +linux (4.4.0-93.116) xenial; urgency=low + + * linux: 4.4.0-93.116 -proposed tracker (LP: #1709296) + + * Creating conntrack entry failure with kernel 4.4.0-89 (LP: #1709032) + - Revert "Revert "netfilter: synproxy: fix conntrackd interaction"" + - netfilter: nf_ct_ext: fix possible panic after nf_ct_extend_unregister + + * CVE-2017-1000112 + - Revert "udp: consistently apply ufo or fragmentation" + - udp: consistently apply ufo or fragmentation + + * CVE-2017-1000111 + - Revert "net-packet: fix race in packet_set_ring on PACKET_RESERVE" + - packet: fix tp_reserve race in packet_set_ring + + * kernel BUG at [tty_ldisc_reinit] mm/slub.c! (LP: #1709126) + - tty: Simplify tty_set_ldisc() exit handling + - tty: Reset c_line from driver's init_termios + - tty: Handle NULL tty->ldisc + - tty: Move tty_ldisc_kill() + - tty: Use 'disc' for line discipline index name + - tty: Refactor tty_ldisc_reinit() for reuse + - tty: Destroy ldisc instance on hangup + + * atheros bt failed after S3 (LP: #1706833) + - SAUCE: Bluetooth: Make request workqueue freezable + + * The Precision Touchpad(PTP) button sends incorrect event code (LP: #1708372) + - HID: multitouch: handle external buttons for Precision Touchpads + + * Set CONFIG_SATA_HIGHBANK=y on armhf (LP: #1703430) + - [Config] CONFIG_SATA_HIGHBANK=y + + * xfs slab objects (memory) leak when xfs shutdown is called (LP: #1706132) + - xfs: fix xfs_log_ticket leak in xfs_end_io() after fs shutdown + + * Adt tests of src:linux time out often on armhf lxc containers (LP: #1705495) + - [Packaging] tests -- reduce rebuild test to one flavour + + * CVE-2017-7495 + - ext4: fix data exposure after a crash + + * ubuntu/rsi driver downlink wifi throughput drops to 5-6 Mbps when BT + keyboard is connected (LP: #1706991) + - SAUCE: Redpine: enable power save by default for coex mode + - SAUCE: Redpine: uapsd configuration changes + + * [Hyper-V] hv_netvsc: Exclude non-TCP port numbers from vRSS hashing + (LP: #1690174) + - hv_netvsc: Exclude non-TCP port numbers from vRSS hashing + + * ath10k doesn't report full RSSI information (LP: #1706531) + - ath10k: add per chain RSSI reporting + + * ideapad_laptop don't support v310-14isk (LP: #1705378) + - platform/x86: ideapad-laptop: Add several models to no_hw_rfkill + + * [8087:0a2b] Failed to load bluetooth firmware(might affect some other Intel + bt devices) (LP: #1705633) + - Bluetooth: btintel: Create common Intel Version Read function + - Bluetooth: Use switch statement for Intel hardware variants + - Bluetooth: Replace constant hw_variant from Intel Bluetooth firmware + filename + - Bluetooth: hci_intel: Fix firmware file name to use hw_variant + - Bluetooth: btintel: Add MODULE_FIRMWARE entries for iBT 3.5 controllers + + * xhci_hcd: ERROR Transfer event TRB DMA ptr not part of current TD ep_index 2 + comp_code 13 (LP: #1667750) + - xhci: Bad Ethernet performance plugged in ASM1042A host + + * OpenPower: Some multipaths temporarily have only a single path + (LP: #1696445) + - scsi: ses: don't get power status of SES device slot on probe + + * Hotkeys on new Thinkpad systems aren't working (LP: #1705169) + - platform/x86: thinkpad_acpi: Adding new hotkey ID for Lenovo thinkpad + - platform/x86: thinkpad_acpi: guard generic hotkey case + - platform/x86: thinkpad_acpi: add mapping for new hotkeys + + * CVE-2015-7837 + - SAUCE: (no-up) kexec/uefi: copy secure_boot flag in boot params across kexec + reboot + + * misleading kernel warning skb_warn_bad_offload during checksum calculation + (LP: #1705447) + - net: reduce skb_warn_bad_offload() noise + + * bonding: stack dump when unregistering a netdev (LP: #1704102) + - bonding: avoid NETDEV_CHANGEMTU event when unregistering slave + + * Ubuntu 16.04 IOB Error when the Mustang board rebooted (LP: #1693673) + - drivers: net: xgene: Fix redundant prefetch buffer cleanup + + * Ubuntu16.04: NVMe 4K+T10 DIF/DIX format returns I/O error on dd with split + op (LP: #1689946) + - blk-mq: NVMe 512B/4K+T10 DIF/DIX format returns I/O error on dd with split + op + + * linux >= 4.2: bonding 802.3ad does not work with 5G, 25G and 50G link speeds + (LP: #1697892) + - bonding: add 802.3ad support for 100G speeds + - bonding: fix 802.3ad aggregator reselection + - bonding: add 802.3ad support for 25G speeds + - bonding: fix 802.3ad support for 5G and 50G speeds + + * Xenial update to 4.4.79 stable release (LP: #1707233) + - disable new gcc-7.1.1 warnings for now + - ir-core: fix gcc-7 warning on bool arithmetic + - s5p-jpeg: don't return a random width/height + - thermal: cpu_cooling: Avoid accessing potentially freed structures + - ath9k: fix tx99 use after free + - ath9k: fix tx99 bus error + - NFC: fix broken device allocation + - NFC: nfcmrvl_uart: add missing tty-device sanity check + - NFC: nfcmrvl: do not use device-managed resources + - NFC: nfcmrvl: use nfc-device for firmware download + - NFC: nfcmrvl: fix firmware-management initialisation + - nfc: Ensure presence of required attributes in the activate_target handler + - nfc: Fix the sockaddr length sanitization in llcp_sock_connect + - NFC: Add sockaddr length checks before accessing sa_family in bind handlers + - perf intel-pt: Move decoder error setting into one condition + - perf intel-pt: Improve sample timestamp + - perf intel-pt: Fix missing stack clear + - perf intel-pt: Ensure IP is zero when state is INTEL_PT_STATE_NO_IP + - perf intel-pt: Clear FUP flag on error + - Bluetooth: use constant time memory comparison for secret values + - wlcore: fix 64K page support + - ASoC: compress: Derive substream from stream based on direction + - PM / Domains: Fix unsafe iteration over modified list of device links + - PM / Domains: Fix unsafe iteration over modified list of domain providers + - scsi: ses: do not add a device to an enclosure if enclosure_add_links() + fails. + - iscsi-target: Add login_keys_workaround attribute for non RFC initiators + - powerpc/64: Fix atomic64_inc_not_zero() to return an int + - powerpc: Fix emulation of mcrf in emulate_step() + - powerpc: Fix emulation of mfocrf in emulate_step() + - powerpc/asm: Mark cr0 as clobbered in mftb() + - af_key: Fix sadb_x_ipsecrequest parsing + - PCI/PM: Restore the status of PCI devices across hibernation + - ipvs: SNAT packet replies only for NATed connections + - xhci: fix 20000ms port resume timeout + - xhci: Fix NULL pointer dereference when cleaning up streams for removed host + - usb: storage: return on error to avoid a null pointer dereference + - USB: cdc-acm: add device-id for quirky printer + - usb: renesas_usbhs: fix usbhsc_resume() for !USBHSF_RUNTIME_PWCTRL + - usb: renesas_usbhs: gadget: disable all eps when the driver stops + - md: don't use flush_signals in userspace processes + - x86/xen: allow userspace access during hypercalls + - cx88: Fix regression in initial video standard setting + - Raid5 should update rdev->sectors after reshape + - s390/syscalls: Fix out of bounds arguments access + - drm/amd/amdgpu: Return error if initiating read out of range on vram + - drm/radeon/ci: disable mclk switching for high refresh rates (v2) + - drm/radeon: Fix eDP for single-display iMac10,1 (v2) + - ipmi: use rcu lock around call to intf->handlers->sender() + - ipmi:ssif: Add missing unlock in error branch + - f2fs: Don't clear SGID when inheriting ACLs + - vfio: Fix group release deadlock + - vfio: New external user group/file match + - ftrace: Fix uninitialized variable in match_records() + - MIPS: Fix mips_atomic_set() retry condition + - MIPS: Fix mips_atomic_set() with EVA + - MIPS: Negate error syscall return in trace + - x86/acpi: Prevent out of bound access caused by broken ACPI tables + - x86/ioapic: Pass the correct data to unmask_ioapic_irq() + - MIPS: Fix MIPS I ISA /proc/cpuinfo reporting + - MIPS: Save static registers before sysmips + - MIPS: Actually decode JALX in `__compute_return_epc_for_insn' + - MIPS: Fix unaligned PC interpretation in `compute_return_epc' + - MIPS: math-emu: Prevent wrong ISA mode instruction emulation + - MIPS: Send SIGILL for BPOSGE32 in `__compute_return_epc_for_insn' + - MIPS: Rename `sigill_r6' to `sigill_r2r6' in `__compute_return_epc_for_insn' + - MIPS: Send SIGILL for linked branches in `__compute_return_epc_for_insn' + - MIPS: Fix a typo: s/preset/present/ in r2-to-r6 emulation error message + - Input: i8042 - fix crash at boot time + - NFS: only invalidate dentrys that are clearly invalid. + - udf: Fix deadlock between writeback and udf_setsize() + - target: Fix COMPARE_AND_WRITE caw_sem leak during se_cmd quiesce + - perf annotate: Fix broken arrow at row 0 connecting jmp instruction to its + target + - Revert "perf/core: Drop kernel samples even though :u is specified" + - staging: rtl8188eu: add TL-WN722N v2 support + - ceph: fix race in concurrent readdir + - RDMA/core: Initialize port_num in qp_attr + - drm/mst: Fix error handling during MST sideband message reception + - drm/mst: Avoid dereferencing a NULL mstb in drm_dp_mst_handle_up_req() + - drm/mst: Avoid processing partially received up/down message transactions + - of: device: Export of_device_{get_modalias, uvent_modalias} to modules + - spmi: Include OF based modalias in device uevent + - tracing: Fix kmemleak in instance_rmdir + - alarmtimer: don't rate limit one-shot timers + - Linux 4.4.79 + + * Xenial update to 4.4.78 stable release (LP: #1705707) + - net_sched: fix error recovery at qdisc creation + - net: sched: Fix one possible panic when no destroy callback + - net/phy: micrel: configure intterupts after autoneg workaround + - ipv6: avoid unregistering inet6_dev for loopback + - net: dp83640: Avoid NULL pointer dereference. + - tcp: reset sk_rx_dst in tcp_disconnect() + - net: prevent sign extension in dev_get_stats() + - bpf: prevent leaking pointer via xadd on unpriviledged + - net: handle NAPI_GRO_FREE_STOLEN_HEAD case also in napi_frags_finish() + - ipv6: dad: don't remove dynamic addresses if link is down + - net: ipv6: Compare lwstate in detecting duplicate nexthops + - vrf: fix bug_on triggered by rx when destroying a vrf + - rds: tcp: use sock_create_lite() to create the accept socket + - brcmfmac: fix possible buffer overflow in brcmf_cfg80211_mgmt_tx() + - cfg80211: Define nla_policy for NL80211_ATTR_LOCAL_MESH_POWER_MODE + - cfg80211: Validate frequencies nested in NL80211_ATTR_SCAN_FREQUENCIES + - cfg80211: Check if PMKID attribute is of expected size + - irqchip/gic-v3: Fix out-of-bound access in gic_set_affinity + - parisc: Report SIGSEGV instead of SIGBUS when running out of stack + - parisc: use compat_sys_keyctl() + - parisc: DMA API: return error instead of BUG_ON for dma ops on non dma devs + - parisc/mm: Ensure IRQs are off in switch_mm() + - tools/lib/lockdep: Reduce MAX_LOCK_DEPTH to avoid overflowing lock_chain/: + Depth + - kernel/extable.c: mark core_kernel_text notrace + - mm/list_lru.c: fix list_lru_count_node() to be race free + - fs/dcache.c: fix spin lockup issue on nlru->lock + - checkpatch: silence perl 5.26.0 unescaped left brace warnings + - binfmt_elf: use ELF_ET_DYN_BASE only for PIE + - arm: move ELF_ET_DYN_BASE to 4MB + - arm64: move ELF_ET_DYN_BASE to 4GB / 4MB + - powerpc: move ELF_ET_DYN_BASE to 4GB / 4MB + - s390: reduce ELF_ET_DYN_BASE + - exec: Limit arg stack to at most 75% of _STK_LIM + - vt: fix unchecked __put_user() in tioclinux ioctls + - mnt: In umount propagation reparent in a separate pass + - mnt: In propgate_umount handle visiting mounts in any order + - mnt: Make propagate_umount less slow for overlapping mount propagation trees + - selftests/capabilities: Fix the test_execve test + - tpm: Get rid of chip->pdev + - tpm: Provide strong locking for device removal + - Add "shutdown" to "struct class". + - tpm: Issue a TPM2_Shutdown for TPM2 devices. + - mm: fix overflow check in expand_upwards() + - crypto: talitos - Extend max key length for SHA384/512-HMAC and AEAD + - crypto: atmel - only treat EBUSY as transient if backlog + - crypto: sha1-ssse3 - Disable avx2 + - crypto: caam - fix signals handling + - sched/topology: Fix overlapping sched_group_mask + - sched/topology: Optimize build_group_mask() + - PM / wakeirq: Convert to SRCU + - PM / QoS: return -EINVAL for bogus strings + - tracing: Use SOFTIRQ_OFFSET for softirq dectection for more accurate results + - KVM: x86: disable MPX if host did not enable MPX XSAVE features + - kvm: vmx: Do not disable intercepts for BNDCFGS + - kvm: x86: Guest BNDCFGS requires guest MPX support + - kvm: vmx: Check value written to IA32_BNDCFGS + - kvm: vmx: allow host to access guest MSR_IA32_BNDCFGS + - Linux 4.4.78 + + * Xenial update to 4.4.77 stable release (LP: #1705238) + - fs: add a VALID_OPEN_FLAGS + - fs: completely ignore unknown open flags + - driver core: platform: fix race condition with driver_override + - bgmac: reset & enable Ethernet core before using it + - mm: fix classzone_idx underflow in shrink_zones() + - tracing/kprobes: Allow to create probe with a module name starting with a + digit + - usb: dwc3: replace %p with %pK + - USB: serial: cp210x: add ID for CEL EM3588 USB ZigBee stick + - Add USB quirk for HVR-950q to avoid intermittent device resets + - usb: usbip: set buffer pointers to NULL after free + - usb: Fix typo in the definition of Endpoint[out]Request + - mac80211_hwsim: Replace bogus hrtimer clockid + - sysctl: don't print negative flag for proc_douintvec + - sysctl: report EINVAL if value is larger than UINT_MAX for proc_douintvec + - pinctrl: sh-pfc: r8a7791: Fix SCIF2 pinmux data + - pinctrl: meson: meson8b: fix the NAND DQS pins + - pinctrl: sunxi: Fix SPDIF function name for A83T + - pinctrl: mxs: atomically switch mux and drive strength config + - pinctrl: sh-pfc: Update info pointer after SoC-specific init + - USB: serial: option: add two Longcheer device ids + - USB: serial: qcserial: new Sierra Wireless EM7305 device ID + - gfs2: Fix glock rhashtable rcu bug + - x86/tools: Fix gcc-7 warning in relocs.c + - x86/uaccess: Optimize copy_user_enhanced_fast_string() for short strings + - ath10k: override CE5 config for QCA9377 + - KEYS: Fix an error code in request_master_key() + - RDMA/uverbs: Check port number supplied by user verbs cmds + - mqueue: fix a use-after-free in sys_mq_notify() + - tools include: Add a __fallthrough statement + - tools string: Use __fallthrough in perf_atoll() + - tools strfilter: Use __fallthrough + - perf top: Use __fallthrough + - perf intel-pt: Use __fallthrough + - perf thread_map: Correctly size buffer used with dirent->dt_name + - perf scripting perl: Fix compile error with some perl5 versions + - perf tests: Avoid possible truncation with dirent->d_name + snprintf + - perf bench numa: Avoid possible truncation when using snprintf() + - perf tools: Use readdir() instead of deprecated readdir_r() + - perf thread_map: Use readdir() instead of deprecated readdir_r() + - perf script: Use readdir() instead of deprecated readdir_r() + - perf tools: Remove duplicate const qualifier + - perf annotate browser: Fix behaviour of Shift-Tab with nothing focussed + - perf pmu: Fix misleadingly indented assignment (whitespace) + - perf dwarf: Guard !x86_64 definitions under #ifdef else clause + - perf trace: Do not process PERF_RECORD_LOST twice + - perf tests: Remove wrong semicolon in while loop in CQM test + - perf tools: Use readdir() instead of deprecated readdir_r() again + - md: fix incorrect use of lexx_to_cpu in does_sb_need_changing + - md: fix super_offset endianness in super_1_rdev_size_change + - tcp: fix tcp_mark_head_lost to check skb len before fragmenting + - staging: vt6556: vnt_start Fix missing call to vnt_key_init_table. + - staging: comedi: fix clean-up of comedi_class in comedi_init() + - ext4: check return value of kstrtoull correctly in reserved_clusters_store + - x86/mm/pat: Don't report PAT on CPUs that don't support it + - saa7134: fix warm Medion 7134 EEPROM read + - Linux 4.4.77 + + -- Kleber Sacilotto de Souza Fri, 11 Aug 2017 16:51:50 +0200 + +linux (4.4.0-92.115) xenial; urgency=low + + * linux: 4.4.0-92.115 -proposed tracker (LP: #1709812) + + * Creating conntrack entry failure with kernel 4.4.0-89 (LP: #1709032) + - Revert "netfilter: synproxy: fix conntrackd interaction" + + -- Kleber Sacilotto de Souza Thu, 10 Aug 2017 10:29:51 +0200 + linux (4.4.0-91.114) xenial; urgency=low * CVE-2017-1000112 diff -u linux-raspi2-4.4.0/debian.master/config/amd64/config.common.amd64 linux-raspi2-4.4.0/debian.master/config/amd64/config.common.amd64 --- linux-raspi2-4.4.0/debian.master/config/amd64/config.common.amd64 +++ linux-raspi2-4.4.0/debian.master/config/amd64/config.common.amd64 @@ -74,7 +74,6 @@ CONFIG_DMA_SHARED_BUFFER=y CONFIG_DMA_VIRTUAL_CHANNELS=m # CONFIG_DM_DEBUG is not set -# CONFIG_DM_MQ_DEFAULT is not set CONFIG_DNET=m CONFIG_DRM=m CONFIG_DUMMY_IRQ=m @@ -274,6 +273,7 @@ CONFIG_OSF_PARTITION=y CONFIG_OUTPUT_FORMAT="elf64-x86-64" # CONFIG_PAGE_EXTENSION is not set +CONFIG_PANIC_TIMEOUT=0 CONFIG_PARPORT=m CONFIG_PATA_SIS=y CONFIG_PCCARD=m @@ -358,7 +358,6 @@ CONFIG_SCSI_INITIO=m CONFIG_SCSI_IPS=m CONFIG_SCSI_LPFC=m -# CONFIG_SCSI_MQ_DEFAULT is not set CONFIG_SCSI_MVSAS=m CONFIG_SCSI_MVUMI=m CONFIG_SCSI_PM8001=m diff -u linux-raspi2-4.4.0/debian.master/config/amd64/config.flavour.generic linux-raspi2-4.4.0/debian.master/config/amd64/config.flavour.generic --- linux-raspi2-4.4.0/debian.master/config/amd64/config.flavour.generic +++ linux-raspi2-4.4.0/debian.master/config/amd64/config.flavour.generic @@ -6,4 +6,5 @@ CONFIG_HZ_250=y # CONFIG_IRQ_FORCED_THREADING_DEFAULT is not set +CONFIG_OPENNSL=y # CONFIG_PREEMPT is not set CONFIG_PREEMPT_VOLUNTARY=y diff -u linux-raspi2-4.4.0/debian.master/config/amd64/config.flavour.lowlatency linux-raspi2-4.4.0/debian.master/config/amd64/config.flavour.lowlatency --- linux-raspi2-4.4.0/debian.master/config/amd64/config.flavour.lowlatency +++ linux-raspi2-4.4.0/debian.master/config/amd64/config.flavour.lowlatency @@ -6,4 +6,5 @@ # CONFIG_HZ_250 is not set CONFIG_IRQ_FORCED_THREADING_DEFAULT=y +# CONFIG_OPENNSL is not set CONFIG_PREEMPT=y # CONFIG_PREEMPT_VOLUNTARY is not set diff -u linux-raspi2-4.4.0/debian.master/config/annotations linux-raspi2-4.4.0/debian.master/config/annotations --- linux-raspi2-4.4.0/debian.master/config/annotations +++ linux-raspi2-4.4.0/debian.master/config/annotations @@ -3875,7 +3875,7 @@ # Menu: Device Drivers >> Multiple devices driver support (RAID and LVM) >> Device mapper support CONFIG_BLK_DEV_DM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> -CONFIG_DM_MQ_DEFAULT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'y'}> +CONFIG_DM_MQ_DEFAULT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> CONFIG_DM_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'y'}> CONFIG_DM_CRYPT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> CONFIG_DM_SNAPSHOT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> @@ -5201,7 +5201,7 @@ # Menu: Device Drivers >> SCSI device support >> SCSI device support CONFIG_SCSI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> -CONFIG_SCSI_MQ_DEFAULT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'y'}> +CONFIG_SCSI_MQ_DEFAULT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> CONFIG_SCSI_PROC_FS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> CONFIG_BLK_DEV_SD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> CONFIG_CHR_DEV_ST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> @@ -5502,7 +5502,7 @@ # Menu: Device Drivers >> Serial ATA and Parallel ATA drivers (libata) >> ATA SFF support (for legacy IDE and PATA) >> ATA BMDMA support CONFIG_ATA_BMDMA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> CONFIG_ATA_PIIX policy<{'amd64': 'y', 'arm64': 'm', 'armhf': 'm', 'i386': 'y', 'powerpc': 'm', 'ppc64el': 'm'}> -CONFIG_SATA_HIGHBANK policy<{'armhf': 'm'}> +CONFIG_SATA_HIGHBANK policy<{'armhf': 'y'}> CONFIG_SATA_MV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> CONFIG_SATA_NV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> CONFIG_SATA_PROMISE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> @@ -5557,6 +5557,7 @@ CONFIG_PATA_ACPI policy<{'amd64': 'm', 'arm64': 'm', 'i386': 'm'}> CONFIG_ATA_GENERIC policy<{'amd64': 'y', 'arm64': 'm', 'armhf': 'm', 'i386': 'y', 'powerpc': 'm', 'ppc64el': 'm'}> # +CONFIG_SATA_HIGHBANK mark note CONFIG_PATA_HPT3X3_DMA note # Menu: Device Drivers >> Sonics Silicon Backplane @@ -7853,7 +7854,7 @@ # Menu: Kernel hacking CONFIG_MAGIC_SYSRQ policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> CONFIG_PANIC_ON_OOPS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> -CONFIG_PANIC_TIMEOUT policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'i386': '0', 'powerpc': '0', 'ppc64el': '0', 's390x': '0'}> +CONFIG_PANIC_TIMEOUT policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'i386': '0', 'powerpc': '0', 'ppc64el': '10', 's390x': '0'}> CONFIG_DEBUG_TIMEKEEPING policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> CONFIG_STACKTRACE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> CONFIG_PROVIDE_OHCI1394_DMA_INIT policy<{'amd64': 'n', 'i386': 'n'}> diff -u linux-raspi2-4.4.0/debian.master/config/arm64/config.common.arm64 linux-raspi2-4.4.0/debian.master/config/arm64/config.common.arm64 --- linux-raspi2-4.4.0/debian.master/config/arm64/config.common.arm64 +++ linux-raspi2-4.4.0/debian.master/config/arm64/config.common.arm64 @@ -75,7 +75,6 @@ CONFIG_DMA_SHARED_BUFFER=y CONFIG_DMA_VIRTUAL_CHANNELS=y # CONFIG_DM_DEBUG is not set -# CONFIG_DM_MQ_DEFAULT is not set CONFIG_DNET=m CONFIG_DRM=m CONFIG_DUMMY_IRQ=m @@ -273,8 +272,10 @@ CONFIG_N_GSM=m CONFIG_OF=y CONFIG_OMFS_FS=m +# CONFIG_OPENNSL is not set CONFIG_OSF_PARTITION=y # CONFIG_PAGE_EXTENSION is not set +CONFIG_PANIC_TIMEOUT=0 CONFIG_PARPORT=m CONFIG_PATA_SIS=m CONFIG_PCIPCWATCHDOG=m @@ -360,7 +361,6 @@ CONFIG_SCSI_INITIO=m CONFIG_SCSI_IPS=m CONFIG_SCSI_LPFC=m -# CONFIG_SCSI_MQ_DEFAULT is not set CONFIG_SCSI_MVSAS=m CONFIG_SCSI_MVUMI=m CONFIG_SCSI_PM8001=m diff -u linux-raspi2-4.4.0/debian.master/config/armhf/config.common.armhf linux-raspi2-4.4.0/debian.master/config/armhf/config.common.armhf --- linux-raspi2-4.4.0/debian.master/config/armhf/config.common.armhf +++ linux-raspi2-4.4.0/debian.master/config/armhf/config.common.armhf @@ -74,7 +74,6 @@ CONFIG_DMA_SHARED_BUFFER=y CONFIG_DMA_VIRTUAL_CHANNELS=y # CONFIG_DM_DEBUG is not set -# CONFIG_DM_MQ_DEFAULT is not set CONFIG_DNET=m CONFIG_DRM=m CONFIG_DUMMY_IRQ=m @@ -263,9 +262,11 @@ CONFIG_N_GSM=m CONFIG_OF=y CONFIG_OMFS_FS=m +# CONFIG_OPENNSL is not set CONFIG_OSF_PARTITION=y CONFIG_PAGE_EXTENSION=y CONFIG_PAGE_OFFSET=0xC0000000 +CONFIG_PANIC_TIMEOUT=0 CONFIG_PARPORT=m CONFIG_PATA_SIS=m # CONFIG_PCCARD is not set @@ -349,7 +350,6 @@ CONFIG_SCSI_INITIO=m CONFIG_SCSI_IPS=m CONFIG_SCSI_LPFC=m -# CONFIG_SCSI_MQ_DEFAULT is not set CONFIG_SCSI_MVSAS=m CONFIG_SCSI_MVUMI=m CONFIG_SCSI_PM8001=m diff -u linux-raspi2-4.4.0/debian.master/config/config.common.ubuntu linux-raspi2-4.4.0/debian.master/config/config.common.ubuntu --- linux-raspi2-4.4.0/debian.master/config/config.common.ubuntu +++ linux-raspi2-4.4.0/debian.master/config/config.common.ubuntu @@ -909,6 +909,9 @@ CONFIG_BNX2X_SRIOV=y CONFIG_BNX2X_VXLAN=y CONFIG_BNXT=m +CONFIG_BNXT_BPO=m +CONFIG_BNXT_BPO_DCB=y +CONFIG_BNXT_BPO_SRIOV=y CONFIG_BNXT_SRIOV=y CONFIG_BOARD_TPCI200=m CONFIG_BONDING=m @@ -1910,6 +1913,7 @@ CONFIG_DM_LOG_USERSPACE=m CONFIG_DM_LOG_WRITES=m CONFIG_DM_MIRROR=m +# CONFIG_DM_MQ_DEFAULT is not set CONFIG_DM_MULTIPATH=m CONFIG_DM_MULTIPATH_QL=m CONFIG_DM_MULTIPATH_ST=m @@ -3203,7 +3207,6 @@ CONFIG_HYPERV=m CONFIG_HYPERVISOR_GUEST=y CONFIG_HYPERV_BALLOON=m -CONFIG_HYPERV_INFINIBAND_ND=m CONFIG_HYPERV_KEYBOARD=m CONFIG_HYPERV_NET=m CONFIG_HYPERV_STORAGE=m @@ -3978,6 +3981,7 @@ CONFIG_JOYSTICK_ZHENHUA=m CONFIG_JSA1212=m CONFIG_K3_DMA=m +CONFIG_KAISER=y CONFIG_KALLSYMS=y CONFIG_KALLSYMS_ALL=y # CONFIG_KASAN is not set @@ -5078,6 +5082,7 @@ CONFIG_NET_CORE=y CONFIG_NET_DCCPPROBE=m CONFIG_NET_DROP_MONITOR=m +# CONFIG_NET_DSA is not set # CONFIG_NET_DSA_MV88E6XXX is not set # CONFIG_NET_DSA_MV88E6XXX_NEED_PPU is not set CONFIG_NET_EMATCH=y @@ -5496,6 +5501,9 @@ CONFIG_OMAP_USB2=m CONFIG_OMAP_WATCHDOG=m CONFIG_OPAL_PRD=m +CONFIG_OPENNSL_BCM_KNET=m +CONFIG_OPENNSL_KERNEL_BDE=m +CONFIG_OPENNSL_USER_BDE=m CONFIG_OPENVSWITCH=m CONFIG_OPENVSWITCH_GENEVE=m CONFIG_OPENVSWITCH_GRE=m @@ -5539,7 +5547,6 @@ CONFIG_PANEL_PROFILE=5 # CONFIG_PANIC_ON_OOPS is not set CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 CONFIG_PANTHERLORD_FF=y CONFIG_PARAVIRT=y CONFIG_PARAVIRT_CLOCK=y @@ -6548,7 +6555,7 @@ CONFIG_SATA_ACARD_AHCI=m CONFIG_SATA_AHCI=m CONFIG_SATA_FSL=m -CONFIG_SATA_HIGHBANK=m +CONFIG_SATA_HIGHBANK=y CONFIG_SATA_INIC162X=m CONFIG_SATA_MV=m CONFIG_SATA_NV=m @@ -6655,6 +6662,7 @@ CONFIG_SCSI_MPT2SAS_MAX_SGE=128 CONFIG_SCSI_MPT3SAS=m CONFIG_SCSI_MPT3SAS_MAX_SGE=128 +# CONFIG_SCSI_MQ_DEFAULT is not set # CONFIG_SCSI_MVSAS_DEBUG is not set # CONFIG_SCSI_MVSAS_TASKLET is not set CONFIG_SCSI_NCR53C406A=m diff -u linux-raspi2-4.4.0/debian.master/config/i386/config.common.i386 linux-raspi2-4.4.0/debian.master/config/i386/config.common.i386 --- linux-raspi2-4.4.0/debian.master/config/i386/config.common.i386 +++ linux-raspi2-4.4.0/debian.master/config/i386/config.common.i386 @@ -72,7 +72,6 @@ CONFIG_DMA_SHARED_BUFFER=y CONFIG_DMA_VIRTUAL_CHANNELS=m # CONFIG_DM_DEBUG is not set -# CONFIG_DM_MQ_DEFAULT is not set CONFIG_DNET=m CONFIG_DRM=m CONFIG_DUMMY_IRQ=m @@ -266,10 +265,12 @@ CONFIG_N_GSM=m # CONFIG_OF is not set CONFIG_OMFS_FS=m +# CONFIG_OPENNSL is not set CONFIG_OSF_PARTITION=y CONFIG_OUTPUT_FORMAT="elf32-i386" CONFIG_PAGE_EXTENSION=y CONFIG_PAGE_OFFSET=0xC0000000 +CONFIG_PANIC_TIMEOUT=0 CONFIG_PARPORT=m CONFIG_PATA_SIS=y CONFIG_PCCARD=m @@ -354,7 +355,6 @@ CONFIG_SCSI_INITIO=m CONFIG_SCSI_IPS=m CONFIG_SCSI_LPFC=m -# CONFIG_SCSI_MQ_DEFAULT is not set CONFIG_SCSI_MVSAS=m CONFIG_SCSI_MVUMI=m CONFIG_SCSI_PM8001=m diff -u linux-raspi2-4.4.0/debian.master/config/powerpc/config.common.powerpc linux-raspi2-4.4.0/debian.master/config/powerpc/config.common.powerpc --- linux-raspi2-4.4.0/debian.master/config/powerpc/config.common.powerpc +++ linux-raspi2-4.4.0/debian.master/config/powerpc/config.common.powerpc @@ -70,7 +70,6 @@ CONFIG_DMA_SHARED_BUFFER=y CONFIG_DMA_VIRTUAL_CHANNELS=m # CONFIG_DM_DEBUG is not set -# CONFIG_DM_MQ_DEFAULT is not set CONFIG_DNET=m CONFIG_DRM=m CONFIG_DUMMY_IRQ=m @@ -259,7 +258,9 @@ CONFIG_N_GSM=m CONFIG_OF=y CONFIG_OMFS_FS=m +# CONFIG_OPENNSL is not set CONFIG_OSF_PARTITION=y +CONFIG_PANIC_TIMEOUT=0 CONFIG_PARPORT=m CONFIG_PATA_SIS=m CONFIG_PCCARD=m @@ -349,7 +350,6 @@ CONFIG_SCSI_INITIO=m CONFIG_SCSI_IPS=m CONFIG_SCSI_LPFC=m -# CONFIG_SCSI_MQ_DEFAULT is not set CONFIG_SCSI_MVSAS=m CONFIG_SCSI_MVUMI=m CONFIG_SCSI_PM8001=m diff -u linux-raspi2-4.4.0/debian.master/config/ppc64el/config.common.ppc64el linux-raspi2-4.4.0/debian.master/config/ppc64el/config.common.ppc64el --- linux-raspi2-4.4.0/debian.master/config/ppc64el/config.common.ppc64el +++ linux-raspi2-4.4.0/debian.master/config/ppc64el/config.common.ppc64el @@ -77,7 +77,6 @@ CONFIG_DMA_SHARED_BUFFER=y CONFIG_DMA_VIRTUAL_CHANNELS=m # CONFIG_DM_DEBUG is not set -# CONFIG_DM_MQ_DEFAULT is not set CONFIG_DNET=m CONFIG_DRM=m CONFIG_DUMMY_IRQ=m @@ -285,9 +284,11 @@ CONFIG_N_GSM=m CONFIG_OF=y CONFIG_OMFS_FS=m +# CONFIG_OPENNSL is not set CONFIG_OSF_PARTITION=y # CONFIG_PAGE_EXTENSION is not set CONFIG_PAGE_OFFSET=0xc000000000000000 +CONFIG_PANIC_TIMEOUT=10 CONFIG_PARPORT=m CONFIG_PATA_SIS=m # CONFIG_PCCARD is not set @@ -397,7 +398,6 @@ CONFIG_SCSI_INITIO=m CONFIG_SCSI_IPS=m CONFIG_SCSI_LPFC=m -# CONFIG_SCSI_MQ_DEFAULT is not set CONFIG_SCSI_MVSAS=m CONFIG_SCSI_MVUMI=m CONFIG_SCSI_PM8001=m diff -u linux-raspi2-4.4.0/debian.master/config/s390x/config.common.s390x linux-raspi2-4.4.0/debian.master/config/s390x/config.common.s390x --- linux-raspi2-4.4.0/debian.master/config/s390x/config.common.s390x +++ linux-raspi2-4.4.0/debian.master/config/s390x/config.common.s390x @@ -65,7 +65,6 @@ # CONFIG_DMADEVICES is not set # CONFIG_DMA_SHARED_BUFFER is not set CONFIG_DM_DEBUG=y -CONFIG_DM_MQ_DEFAULT=y # CONFIG_DNET is not set # CONFIG_DRM is not set # CONFIG_DUMMY_IRQ is not set @@ -232,6 +231,7 @@ # CONFIG_OMFS_FS is not set # CONFIG_OSF_PARTITION is not set # CONFIG_PAGE_EXTENSION is not set +CONFIG_PANIC_TIMEOUT=0 # CONFIG_PARPORT is not set # CONFIG_PCIPCWATCHDOG is not set # CONFIG_PCI_PASID is not set @@ -301,7 +301,6 @@ # CONFIG_SCSI_INITIO is not set # CONFIG_SCSI_IPS is not set # CONFIG_SCSI_LPFC is not set -CONFIG_SCSI_MQ_DEFAULT=y # CONFIG_SCSI_MVSAS is not set # CONFIG_SCSI_MVUMI is not set # CONFIG_SCSI_PM8001 is not set diff -u linux-raspi2-4.4.0/debian.master/control.d/flavour-control.stub linux-raspi2-4.4.0/debian.master/control.d/flavour-control.stub --- linux-raspi2-4.4.0/debian.master/control.d/flavour-control.stub +++ linux-raspi2-4.4.0/debian.master/control.d/flavour-control.stub @@ -27,8 +27,8 @@ Section: kernel Priority: optional Provides: linux-image, fuse-module, =PROVIDES=${linux:rprovides} -Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools | linux-initramfs-tool, kmod -Recommends: BOOTLOADER +Depends: ${misc:Depends}, ${shlibs:Depends}, kmod +Recommends: BOOTLOADER, initramfs-tools | linux-initramfs-tool Suggests: fdutils, SRCPKGNAME-doc-PKGVER | SRCPKGNAME-source-PKGVER, SRCPKGNAME-tools, linux-headers-PKGVER-ABINUM-FLAVOUR Description: Linux kernel image for version PKGVER on DESC This package contains the Linux kernel image for version PKGVER on diff -u linux-raspi2-4.4.0/debian.master/control.d/generic.inclusion-list linux-raspi2-4.4.0/debian.master/control.d/generic.inclusion-list --- linux-raspi2-4.4.0/debian.master/control.d/generic.inclusion-list +++ linux-raspi2-4.4.0/debian.master/control.d/generic.inclusion-list @@ -49,7 +49,6 @@ drivers/infiniband/core/rdma_cm.ko drivers/infiniband/ulp/iser/ib_iser.ko drivers/infiniband/ulp/isert/ib_isert.ko -drivers/infiniband/hw/vmbus-rdma/hv_network_direct.ko drivers/input/evbug.ko drivers/input/gameport/gameport.ko drivers/input/input-leds.ko diff -u linux-raspi2-4.4.0/debian.master/d-i/modules/nic-modules linux-raspi2-4.4.0/debian.master/d-i/modules/nic-modules --- linux-raspi2-4.4.0/debian.master/d-i/modules/nic-modules +++ linux-raspi2-4.4.0/debian.master/d-i/modules/nic-modules @@ -40,6 +40,7 @@ bmac ? bnx2 ? bnx2x ? +bnxt_en ? bonding ? brcmfmac ? brcmsmac ? reverted: --- linux-raspi2-4.4.0/debian.raspi2/abi/4.4.0-1067.75/abiname +++ linux-raspi2-4.4.0.orig/debian.raspi2/abi/4.4.0-1067.75/abiname @@ -1 +0,0 @@ -1067 reverted: --- linux-raspi2-4.4.0/debian.raspi2/abi/4.4.0-1067.75/armhf/raspi2 +++ linux-raspi2-4.4.0.orig/debian.raspi2/abi/4.4.0-1067.75/armhf/raspi2 @@ -1,14888 +0,0 @@ -EXPORT_SYMBOL arch/arm/crypto/aes-arm 0x276b2f72 private_AES_set_encrypt_key -EXPORT_SYMBOL arch/arm/crypto/aes-arm 0x6c62e582 AES_decrypt -EXPORT_SYMBOL arch/arm/crypto/aes-arm 0xc30fcbed AES_encrypt -EXPORT_SYMBOL arch/arm/crypto/aes-arm 0xcf024ae9 private_AES_set_decrypt_key -EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0x9cc793bb crypto_sha256_arm_finup -EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0xe5e3e894 crypto_sha256_arm_update -EXPORT_SYMBOL arch/arm/lib/xor-neon 0x0f051164 xor_block_neon_inner -EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe -EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble -EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL crypto/mcryptd 0x28865246 mcryptd_arm_flusher -EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/bcma/bcma 0x6e14be62 bcma_core_dma_translation -EXPORT_SYMBOL drivers/bcma/bcma 0xfbfd6aaa bcma_core_irq -EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str -EXPORT_SYMBOL drivers/block/paride/paride 0x0a1233ca pi_read_regr -EXPORT_SYMBOL drivers/block/paride/paride 0x1132a317 pi_read_block -EXPORT_SYMBOL drivers/block/paride/paride 0x123e0a4a pi_disconnect -EXPORT_SYMBOL drivers/block/paride/paride 0x14b96cbc pi_write_regr -EXPORT_SYMBOL drivers/block/paride/paride 0x21b6fc06 pi_do_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x23acfcfa paride_register -EXPORT_SYMBOL drivers/block/paride/paride 0x3649ad15 pi_release -EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x4a25e620 pi_write_block -EXPORT_SYMBOL drivers/block/paride/paride 0x6987cf9e pi_schedule_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x88d68b9d pi_init -EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -EXPORT_SYMBOL drivers/block/paride/paride 0xb5e0c73b pi_connect -EXPORT_SYMBOL drivers/block/paride/paride 0xb7e61614 paride_unregister -EXPORT_SYMBOL drivers/bluetooth/btbcm 0x5fd60a13 btbcm_patchram -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x01c2d6b0 ipmi_smi_add_proc_entry -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0c624524 ipmi_smi_watcher_register -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fae3bac ipmi_addr_src_to_str -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x20192aae ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x27d52834 ipmi_register_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5a0239ae ipmi_get_smi_info -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg -EXPORT_SYMBOL drivers/char/nvram 0x0f28cb91 nvram_read_byte -EXPORT_SYMBOL drivers/char/nvram 0x17ff2c1d __nvram_read_byte -EXPORT_SYMBOL drivers/char/nvram 0x2adec1e0 __nvram_check_checksum -EXPORT_SYMBOL drivers/char/nvram 0x7da28f12 nvram_check_checksum -EXPORT_SYMBOL drivers/char/nvram 0x9ce3f83f nvram_write_byte -EXPORT_SYMBOL drivers/char/nvram 0xa8813189 __nvram_write_byte -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x31f32c58 st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xac6a0a3a st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xb40f34a8 st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xe8ef00ff st33zp24_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x169bb4fb xillybus_endpoint_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x2159bffa xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xd2644a66 xillybus_init_endpoint -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x107cc1e0 dw_dma_get_dst_addr -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x1e6e3749 dw_dma_cyclic_free -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x35153c5a dw_dma_cyclic_prep -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xd06228cd dw_dma_get_src_addr -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xe2c14867 dw_dma_cyclic_stop -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xf131a15e dw_dma_cyclic_start -EXPORT_SYMBOL drivers/dma/pl330 0x66d3c2e9 pl330_filter -EXPORT_SYMBOL drivers/edac/edac_core 0xe15833e3 edac_mc_find -EXPORT_SYMBOL drivers/fmc/fmc 0x0c1c0850 fmc_reprogram -EXPORT_SYMBOL drivers/fmc/fmc 0x41350ec7 fmc_driver_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0x432967f2 fmc_device_register -EXPORT_SYMBOL drivers/fmc/fmc 0x8d0044ab fmc_scan_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0x8d525390 fmc_driver_register -EXPORT_SYMBOL drivers/fmc/fmc 0x8d88f007 fmc_device_unregister_n -EXPORT_SYMBOL drivers/fmc/fmc 0xa746b9ab fmc_device_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0xb734f969 fmc_find_sdb_device -EXPORT_SYMBOL drivers/fmc/fmc 0xd00848d5 fmc_free_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0xd4ef6f2d fmc_show_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0xea68f73d fmc_device_register_n -EXPORT_SYMBOL drivers/gpu/drm/drm 0x00433b9e drm_modeset_lock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x00ed678d drm_atomic_clean_old_fb -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0122f77e of_drm_find_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm 0x01943bc8 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0x02c80453 drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04b7bdbc drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05d4e0ee drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05f2f560 drm_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07718ea4 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a38b454 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b7c45c2 drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bdadd63 drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cfb42c4 drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0da2a849 drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0dc20c5c drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ea33f5c drm_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ec3cb4d drm_crtc_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f820678 drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fccafb1 drm_global_item_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fcdcf8d drm_legacy_ioremap_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x102136e0 drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10caee12 drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12ccd887 drm_legacy_addbufs_pci -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x163a9ec6 drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x177496a6 drm_atomic_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b31b8a5 drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b65473c drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c31eefa drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cb391cb drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1da281dc drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e1149d3 drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e3894f6 drm_pci_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ed1518c drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ed4b597 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1edf2ae7 drm_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f1e904d drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f9babdd drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fcbebb1 drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x206842c0 drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2125fb97 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21f8addc drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2214f3f1 drm_vblank_post_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22c1d7a0 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22c2087a drm_mode_create_dirty_info_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22cb3e42 drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23ee8a9b drm_mode_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24de41b4 drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2697e3cc drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x288ef98f drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28a7d64b drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28dec804 drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2990eafd drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a2dd26e drm_mode_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b3e8a9e drm_property_reference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bc33580 drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ca0522f drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d7c2310 drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ee9430d drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f5069c2 drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f887100 drm_edid_to_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0x306ef7bc drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30f1112f drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31c68104 drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x322ae9cc drm_platform_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32f89760 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3410b3fe drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3422121f drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x346127a7 drm_global_item_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37091e51 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x372471c7 drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37c94bfe drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38ae40f4 drm_property_unreference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38d0049d drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b7a8f6b drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bc2ba64 drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb36745 drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb50db1 drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4001a26f drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42d5ca83 drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x431a2a09 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x442d3a65 drm_vblank_pre_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x44b480e7 drm_mm_dump_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0x45fa62f8 drm_bridge_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48c6bb23 drm_unplug_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48cc81a4 drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49363107 drm_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49984f46 drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49ae2d2e drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b240c01 drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b51c308 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c02ff24 drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c29bb60 drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d8841dd drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f3de174 drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f57cdc5 drm_connector_unplug_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fe5c628 drm_legacy_addmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5053064b drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50630d0f drm_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5082190c drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x52a442e8 drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54541cfc drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x549a8eab drm_bridge_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x563cd5e7 drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x56677218 drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57bc214a drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58438da0 drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59dee772 drm_irq_uninstall -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a440419 drm_bridge_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b3c9f18 drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d846e59 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5edf637b drm_panel_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60758d3e drm_modeset_unlock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60951bc8 drm_legacy_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60a0a6f6 drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x625e0982 drm_pci_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62dd1429 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x63f53daf drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x641ed054 drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x669dbaef drm_atomic_legacy_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66c65c68 drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x679ab5ba drm_legacy_idlelock_take -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67c7db34 drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67f34912 drm_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68340353 drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6961c4cd drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x69c3c7f5 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b43a0b5 drm_dev_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b4b482f drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ba03390 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d5dc851 of_drm_find_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6da8d990 drm_framebuffer_reference -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x70cf95b6 drm_legacy_getsarea -EXPORT_SYMBOL drivers/gpu/drm/drm 0x712edef9 drm_platform_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7167a76c drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7250e3fb drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x73275568 drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0x749cc69e drm_legacy_rmmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x77a91035 drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78fc1e82 drm_select_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7935a880 drm_mode_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7958cfc2 drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79cbf752 drm_mode_validate_basic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b9fbf85 drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c7d708b drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cdf538e drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d9a827c drm_framebuffer_unreference -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dbc185a drm_prime_sg_to_page_addr_arrays -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f02fb04 drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80046782 drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x803de129 drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80f47438 drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8131fb03 drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x820a9772 drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x824db1b3 drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a7eec61 drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ad53075 drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f87e9d4 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9032189e drm_bridge_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x920dff46 drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93491ee7 drm_irq_install -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94648259 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94db7d21 drm_mode_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95210745 drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x963a8149 drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x96a6b34c drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0x96f1219e drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9966df5d drm_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x996e0a61 drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b1f13e4 drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b971b79 drm_crtc_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cf0e387 drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e228353 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ed51c5f drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f263fdc drm_atomic_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa142614c drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa19cd459 drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa21a815a drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa220abfd drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa263e4b2 drm_legacy_idlelock_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2b20b82 drm_pci_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5a3dcef drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6730382 drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa83912c1 drm_connector_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9f2b46c drm_mode_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa912972 drm_atomic_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac3a3f8f drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1325a7d drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1722f27 drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb370ce79 drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3939db4 drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3f02011 drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4002a36 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb463c135 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5bc7c87 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb61e76cf drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb68675d5 drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8f80101 drm_modeset_legacy_acquire_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba5402bb drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb39faca drm_plane_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc8645e4 drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd7f6322 drm_mode_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdf13fba drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf3f9707 drm_legacy_rmmap_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfea5292 drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc084b7f7 drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc19d301f drm_vblank_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc36135ee drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4bae12a drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6375c7d drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6842b05 drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7dc32c7 drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7ee7dfa drm_of_find_possible_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8a8a62f drm_mode_hsync -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc919bdd0 drm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb44924e drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcba24e53 drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbe240b6 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdc121d9 drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcecadce6 drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf9dafcd drm_modeset_lock_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3365d94 drm_bridge_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd53cd44a drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd64afb6f drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd79f0db5 drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8d4af5b drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd90bc8f8 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9c7544f drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc23454b drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcf5b2e6 drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde1a253f drm_gem_dumb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde64cf62 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdea18234 drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf1f0af0 drm_modeset_backoff_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe04518cd drm_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe27687a5 drm_bridge_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe295c180 drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2fa6ac7 drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4d9c792 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe53d8897 drm_of_component_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe56cedc7 drm_calc_vbltimestamp_from_scanoutpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe68c70c3 drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7033af0 drm_dev_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7154724 drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe773db09 drm_atomic_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9ca8c51 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9e84bb6 drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xebdbf94f drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xebed1bea drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec417de8 drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xecedbbb6 drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeda67324 drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xee092745 drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xee29effd drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xee560f32 drm_encoder_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef3c5b50 drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef3d5e78 drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef88406b drm_legacy_ioremapfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf04a429d drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf068186f drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf06f8a15 drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf195efb8 drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf421fcc8 drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf47b6c80 drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf57ac814 drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf792f2a3 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf88edfec drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8e3950d drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa295c1a drm_vblank_no_hw_counter -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc0ff159 drm_legacy_ioremap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc4e7686 drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfce415d4 drm_panel_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdf7c04b drm_pci_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff982248 drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01f1234b drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07f0ae06 drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b5dd3b7 __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0dabb628 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x101db046 drm_plane_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10c1bd2e drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15134dfd drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16c7baeb drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18f0f47c drm_primary_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b55ec46 drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d6ec08b drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e60c282 drm_plane_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fdede39 drm_atomic_helper_framebuffer_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22113a44 drm_fb_helper_unlink_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22f2ee18 drm_dp_link_power_down -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23893af6 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x284b0425 drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28da457a drm_helper_crtc_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29445386 drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29c0be63 drm_atomic_helper_legacy_gamma_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2afc8b9d drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d28f622 drm_dp_link_probe -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f345765 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fe3503d drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31bf4034 drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x335c4c88 drm_dp_link_power_up -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37253187 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3af0f8f6 drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c27d27d drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3eeffca1 drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4395ecf8 drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4446a2f4 drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45511335 drm_dp_aux_register_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4857df8c drm_has_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b254d40 drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d261dce drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f008427 drm_helper_crtc_mode_set_base -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f238e81 drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5286a2ce drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53c875a0 drm_atomic_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55d8b391 drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5637e028 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x566a5712 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56adafa8 drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5751ba62 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5888b56a drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a2af049 drm_helper_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b5d15c5 drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b68839b drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c6d9ad9 drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5da5bba5 drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f2022b0 drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x613b22ef drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61992f68 drm_helper_probe_single_connector_modes_nomerge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6794bd11 drm_dp_mst_port_has_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x684afba2 drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a8952e1 drm_pick_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d6dc34c drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f682cb2 drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x706cedc2 drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x718be711 drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71b06c52 drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71ced8ec drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72e6f9fa drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76bc3fa9 drm_kms_helper_poll_enable_locked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x770741a8 drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f1fc308 drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fbe52e4 drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80370d5b drm_fb_helper_fill_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81376154 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x851d3681 drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86ff6278 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89f41324 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b5c7878 drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x913b8781 drm_dp_link_configure -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92179919 drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95dcdd4d drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b2afe0e drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b2f78c3 drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b870d3a drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ea65c0e drm_fb_helper_fill_fix -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9fb7433a drm_primary_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa13b6acc drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa75ff793 drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa761235c drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa778dd0e drm_plane_helper_check_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa790b787 drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa822867e drm_atomic_helper_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9bcec24 drm_fb_helper_remove_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa89eca6 drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac714611 drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac80c361 drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb14a9ca5 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb28731be drm_fb_helper_single_add_all_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3235899 drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb593b869 drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb77cb115 drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbc32f22 __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd2ea2fd drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbdfa30f5 __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe171e9b drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc36f95d1 drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7d4dc31 drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca958e86 drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbf056cf drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd3f0743 drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd87c1e0 drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce6ad5ab drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf252390 drm_fb_helper_add_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfb74788 drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1a4ca76 drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2712dc1 drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4a3bbe4 drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8844445 drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdaad9b35 drm_atomic_helper_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdab4ff66 drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb29a65d drm_dp_aux_unregister_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb9b5b3c drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdded581f drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde9e9d46 drm_fb_helper_release_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4d9d9e9 drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4ee3b50 drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5331a21 __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5e58e3b drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb3c3dba drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb898a33 drm_atomic_helper_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeba647a6 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed7c3bab drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed85c210 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef4b243f drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0bad800 drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1315643 drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf46901db drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf479cffb drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf80cd799 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf81c61c7 drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8613910 __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf86a5b2b drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfcaf1427 drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfeba73f6 drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfed0c4fb drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff2fdced drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0x017daa46 mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0x0479bd01 mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0x08ea69e7 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0x0c92cc4e mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0x160a1349 mipi_dsi_dcs_write -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0x180c38ed mipi_dsi_generic_read -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0x20dbbf90 mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0x26562005 mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0x3760fdcc mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0x3d4dd1ef mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0x3ea1f941 mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0x3fad243a mipi_dsi_detach -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0x459a2d03 mipi_dsi_dcs_read -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0x50746dab mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0x50f5284d of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0x665a5d94 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0x67f5a08f mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0x78732742 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0x80e446e2 mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0x840d2b51 mipi_dsi_driver_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0x980fe8ae mipi_dsi_driver_register_full -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0xb79ec15d mipi_dsi_create_packet -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0xc3c2be91 mipi_dsi_packet_format_is_short -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0xd6d63635 mipi_dsi_generic_write -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0xd9f59d24 mipi_dsi_dcs_nop -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0xe45de3d5 mipi_dsi_host_register -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0xe586419a mipi_dsi_host_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0xf2532636 mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0xfe588674 mipi_dsi_attach -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x039e1876 ttm_bo_evict_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x10adf51e ttm_bo_dma_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132b05be ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x136ec7fa ttm_suspend_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1b6177c0 ttm_bo_init_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2a585d6a ttm_page_alloc_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2a7567dc ttm_object_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b503436 ttm_bo_manager_func -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2c7fac9b ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2ca02c92 ttm_bo_add_to_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x325cfe89 ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x37bb1291 ttm_bo_move_ttm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3d54aabc ttm_dma_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4628b006 ttm_read_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x466d2f63 ttm_bo_clean_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x510205fe ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5ca97cdb ttm_dma_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cf59609 ttm_bo_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6455b0b0 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67b1d568 ttm_bo_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6afaadfd ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6b2640ef ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c0ec969 ttm_lock_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6d0a249c ttm_mem_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7059b312 ttm_bo_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x730c2018 ttm_tt_set_placement_caching -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7ab19f94 ttm_mem_global_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7ac6de74 ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7bff4004 ttm_bo_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8589758d ttm_suspend_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86bb8a6c ttm_read_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x872d8606 ttm_bo_del_sub_from_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8c0428ec ttm_mem_io_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x90077ec1 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x932fed77 ttm_bo_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x962cafb3 ttm_bo_swapout_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d0eb91 ttm_ref_object_add -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9a1cd28f ttm_mem_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9d7ebb23 ttm_mem_io_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa0ca83e7 ttm_mem_global_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa2f628aa ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa326400e ttm_tt_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa5056db4 ttm_fbdev_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa8c71487 ttm_bo_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa9722ffb ttm_bo_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xad00ee04 ttm_prime_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae9d9f4c ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaf6fc21d ttm_pool_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb393e228 ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc4757640 ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc968d68f ttm_write_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcde6641f ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd205d1ce ttm_bo_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd5512716 ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd71bd6fb ttm_bo_mem_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd7c65ad4 ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xda0e820d ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xda4eba9a ttm_mem_io_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe29901a6 ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe3738874 ttm_pool_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe3cb912a ttm_bo_synccpu_write_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe85c7f74 ttm_bo_synccpu_write_grab -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xed28ac42 ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xefc4df0d ttm_vt_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfa9a9dba ttm_mem_io_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfd7484d3 ttm_write_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfe8cc064 ttm_vt_unlock -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0e2a6864 sch56xx_read_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0f5877d4 sch56xx_read_virtual_reg16 -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x44580e55 sch56xx_watchdog_register -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe5022f95 sch56xx_read_virtual_reg12 -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xed1d2a08 sch56xx_write_virtual_reg -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x14854f0f i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xb6ac0506 i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xc543ddad i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x5a7d4533 i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xe44a49d5 i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0c8f1e7d mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1fff04a2 mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x49bdffb4 mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x531f1873 mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6d2c9732 mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x967a5bc3 mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xada33a9c mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb3e8808f mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb6eb1366 mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbe565a86 mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc1237ca4 mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc25463d2 mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc7146a19 mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xce8fecb3 mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe7169b76 mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xee101a68 mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xd1ad9bbf st_accel_common_remove -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xef9ab52a st_accel_common_probe -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x4ae9660c iio_triggered_buffer_setup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xc24bebaa iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x4b1da0fe devm_iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x4c13ec5a devm_iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xc64333e5 iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xcad77bcf iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x425b15e0 hid_sensor_parse_common_attributes -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x54e81a62 hid_sensor_write_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x7032ec8d hid_sensor_read_poll_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xcb376f2c hid_sensor_read_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xe53aa16f hid_sensor_write_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xfecec770 hid_sensor_read_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x1384244e hid_sensor_power_state -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x45281de4 hid_sensor_pm_ops -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x9c405bd8 hid_sensor_setup_trigger -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xbb6cb47c hid_sensor_remove_trigger -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x1072c48b ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x1e5c7576 ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x20c0dcd4 ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2996b16d ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3330a8df ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3fb658f5 ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x4ecd3f05 ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb776697a ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf7415c50 ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x7535b36b ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x916cd3b8 ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xb95ccb58 ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xcf8c5c1f ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xd2f9c598 ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x32746642 ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xc5df162d ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xe2504ae4 ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0bca9f61 st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x20b1858b st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2544a005 st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3455333d st_sensors_get_buffer_element -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4be0a5f2 st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5b2f04fe st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x66710f47 st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x6a4e07f2 st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7d57ab62 st_sensors_check_device_support -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb22c6abe st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb6620424 st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb8b04659 st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbd95058c st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xcc774837 st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xdda90b87 st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe36bac92 st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xfd8ced20 st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x4e52c56f st_sensors_of_i2c_probe -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xef344b32 st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x2e8722fb st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x41b78428 st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xe6fac31b st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/humidity/hts221 0xcaf52323 hts221_probe -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x33f45edf adis_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x96b4508b adis_enable_irq -EXPORT_SYMBOL drivers/iio/industrialio 0x124beb35 iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0x20cecae5 iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x26c615ec iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x48d0bc59 iio_triggered_buffer_predisable -EXPORT_SYMBOL drivers/iio/industrialio 0x5901445e iio_triggered_buffer_postenable -EXPORT_SYMBOL drivers/iio/industrialio 0x5a712e47 iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x5c8c3c03 iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0x5c8fb044 iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0x8dbc2911 iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0x96219536 iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x9a38cec8 iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x9c7a7c74 iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0xa900bd45 iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0xabff3b2f iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xacb7cb94 iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0xad0bc2f2 iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0xaf82f686 iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x4007d04a iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x548cb615 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x21c4647c st_magn_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x92a64e74 st_magn_common_remove -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x771dfd36 ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x2f565ac3 st_press_common_remove -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xc040bfb2 st_press_common_probe -EXPORT_SYMBOL drivers/input/gameport/gameport 0x0f37df1f gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x218b5d6d gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x254765a9 gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x378ad319 __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x46db5f25 gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x788cf878 __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x796241a6 gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0xa75dba22 gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0xd9ab73ae gameport_close -EXPORT_SYMBOL drivers/input/input-polldev 0x17d5a150 input_register_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x460bbd72 input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x670d6529 input_unregister_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x8d14e983 devm_input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xb8b6dc55 input_free_polled_device -EXPORT_SYMBOL drivers/input/matrix-keymap 0x7cde7eff matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x0767d973 ad714x_disable -EXPORT_SYMBOL drivers/input/misc/ad714x 0x36f6ade6 ad714x_enable -EXPORT_SYMBOL drivers/input/misc/ad714x 0x640f6a50 ad714x_probe -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xef422ef6 cma3000_init -EXPORT_SYMBOL drivers/input/sparse-keymap 0x551df230 sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0x925f0e5f sparse_keymap_setup -EXPORT_SYMBOL drivers/input/sparse-keymap 0x98805669 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xc9a32bf2 sparse_keymap_free -EXPORT_SYMBOL drivers/input/sparse-keymap 0xcdaa94f4 sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0xfaa0766f sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x6a35b99c ad7879_probe -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xf96c60f2 ad7879_pm_ops -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x0872b2eb capi20_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2157e089 capi_ctr_suspend_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4211ada7 attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x57aab45d capi20_put_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x5e69e850 capi20_register -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x70a62d9c capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9811464e capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa7c4fd6c capi_message2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb1c45b47 capi_ctr_resume_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc10fe128 cdebbuf_free -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd77374f6 detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8ad9bd1 capi_cmsg2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfcfc33b6 capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x14d530c9 hisax_init_pcmcia -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6fe1ca04 FsmDelTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9f987c85 FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xa1bc94b9 FsmInitTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x2a209b11 isdn_ppp_register_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xea8fd216 register_isdn -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xff1d8150 isdn_ppp_unregister_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0a0ee50a recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0e5e3002 mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x132c88de recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x18b455bd mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x27bffa0c recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x37bf6f83 mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5c08257c get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6049e7ce mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x68f3c9df mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x80bc9171 recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x813bf978 recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x91e3f258 mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x93d93689 mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xab14513f mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbe879f44 get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc9ab695a dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcb47ddf0 queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xce41ab26 mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe27ddb10 bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xedd4b615 create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf2ae858e bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf5d1d4ed mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf8fbf7a5 mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/md/bcache/bcache 0x02c79e06 closure_put -EXPORT_SYMBOL drivers/md/bcache/bcache 0x061571a4 closure_sub -EXPORT_SYMBOL drivers/md/bcache/bcache 0x10dc0d06 bch_bset_insert -EXPORT_SYMBOL drivers/md/bcache/bcache 0x21c7828c bch_btree_sort_partial -EXPORT_SYMBOL drivers/md/bcache/bcache 0x3361c614 bch_bset_sort_state_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x3e2e3c84 closure_sync -EXPORT_SYMBOL drivers/md/bcache/bcache 0x66d28e22 bch_btree_iter_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x6969b5d8 bch_bset_init_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7b55ca4f bch_bset_fix_invalidated_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0x9e8b3cee bch_btree_keys_alloc -EXPORT_SYMBOL drivers/md/bcache/bcache 0xab2d2b84 bch_btree_insert_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0xad29a6f5 bch_bset_build_written_tree -EXPORT_SYMBOL drivers/md/bcache/bcache 0xaec09a2b bch_bkey_try_merge -EXPORT_SYMBOL drivers/md/bcache/bcache 0xaf77343c bch_btree_keys_free -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc04554f7 bch_btree_iter_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0xca580595 bch_btree_keys_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe044e55a closure_wait -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe47e0829 __bch_bset_search -EXPORT_SYMBOL drivers/md/bcache/bcache 0xf8fd4bac bch_btree_sort_lazy -EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers -EXPORT_SYMBOL drivers/md/dm-bufio 0xa7978f56 dm_bufio_forget -EXPORT_SYMBOL drivers/md/dm-log 0x14f8f7a4 dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0x6e21757f dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0x92787599 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0xc646dad6 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x029239ef dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x2ae9c5ec dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0x6f704159 dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x773405d0 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x79e2ba4f dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0x91ec7645 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/raid456 0x17cc7ace raid5_set_cache_size -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x013e4604 flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0cd4bc14 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1dab13d4 flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x28ed498d flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x65c0f1c2 flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x904b5937 flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb7b8b63c flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xbc3da436 flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd0d00486 flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd3854239 flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe989870a flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf1d74a68 flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf9daa2ec flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/cx2341x 0x08403a56 cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cx2341x 0x0ce62780 cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cx2341x 0x1fa6dd7f cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update -EXPORT_SYMBOL drivers/media/common/cx2341x 0x30cb4cd7 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0xe4d87c15 cx2341x_handler_setup -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x8f53e4e3 cypress_load_firmware -EXPORT_SYMBOL drivers/media/common/tveeprom 0xc026ad71 tveeprom_read -EXPORT_SYMBOL drivers/media/common/tveeprom 0xedd511ae tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0c8dd203 dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0e5b04a4 dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x184351e0 dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2117e30c dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2191c29a dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x24ba4bfd dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x344908d4 dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3552627c dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3656cb10 dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4960f652 dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4aa0241e dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5e531091 dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x61f34218 dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x629f9d31 dvb_ringbuffer_read_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x72180695 dvb_ringbuffer_flush_spinlock_wakeup -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x76f5b61f dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x796ee67e dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x799d2604 dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8633f37b dvb_ringbuffer_flush -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x924d02cf dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9850cb88 dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9c19040b dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9f1a1753 dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa091f29d dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xaec28203 dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb0f91d8c dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb62a6fd4 dvb_dmx_swfilter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc23c48ba dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc73c0703 dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd792a02b dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xda1e0ac0 dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdb1a8bd4 dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdc094c39 dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe0766687 dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe09651a7 dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xee76bf8b dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf48116c6 dvb_ringbuffer_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf6771f8d dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts -EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x5118bfc0 af9013_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x97abd07f atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x27c0a254 au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x6f942718 au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x713a5ff4 au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x84599d09 au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x86ca9a29 au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x8b073eb1 au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9da9bf96 au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xad0b4c52 au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe77e9523 au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xd8eb042f au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x2d5aba26 bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x0c79cefe cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xacd0ef4c cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xf8510cdf cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xa62eb797 cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x28634852 cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x0adb1624 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x210b06cb cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xfaaec71a cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x26bbd267 dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x3a4cb0a7 dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x3aa3fb09 dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x810900c0 dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x8fd294d3 dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x00244e72 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0ae1ae7b dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0ebae59a dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2b74be0c dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2f5198b9 dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4cb0244a dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x543ada71 dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x564ad6ba dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8412badc dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9e905658 dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9ffacf8b dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc8674e3f dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe715e027 dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf48389ab dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf9f5e133 dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x8b5b961f dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x18cebb38 dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x4cfe6e81 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x75f457d5 dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xb0f98f32 dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xe804d372 dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xeb499543 dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x25ab1d5d dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x401b06f6 dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xbb2cb462 dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xedcfbc82 dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xad3d15b2 dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xa986a927 dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x34498a45 dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x53c58776 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd4aefaa8 dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xea7c3b14 dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xfbc8ed76 dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x3c90e558 drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x37ecbfc4 drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xd5613aab drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x89d76bc0 ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x054af1a5 dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x3e412b95 ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x712bac6a isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x9ac21ebd isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0xc7af75f5 itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xfe8c01f6 ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xbee547a6 lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x45f81f07 lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x79f833dd lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x26759f4a lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x40e91164 lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x02ba69b4 lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x8e92c1e0 lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xc5e922aa lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x487f6dd0 m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xc3561a23 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x52f4d445 m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x3c860e6f mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x62b44509 mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x346a9cfd mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xca182cdc nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x5ae83df3 nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x9d0ce979 s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xfdee987c s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x1198e688 s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x1d16c5a9 s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xefca76bd s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0xee91c9eb si2165_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xe069727f si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x81fed5cb stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x92b46b9c stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xf7ac8a15 stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x62c190a8 stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x7f5a538d stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x5c99063a stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xfd878dda stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x503d30d6 stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x5c094bce stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x4fb539a7 stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x9cd16d25 tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x72f98e92 tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x6e3cf637 tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x7cc2657d tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x3d16b654 tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x6f4cb735 tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x4d2f83d9 ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x715dac5a zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xe4ce451d zl10353_attach -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xb6390a89 ttpci_eeprom_parse_mac -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x17e73c72 soc_camera_power_off -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x4220072a soc_camera_host_register -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x47d8baba soc_camera_power_init -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x7004a3ba soc_camera_host_unregister -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x7ec029ca soc_camera_apply_board_flags -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x894f4be7 soc_camera_xlate_by_fourcc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xfed7a1b5 soc_camera_power_on -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc -EXPORT_SYMBOL drivers/media/radio/tea575x 0x0744cf06 snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0x1e9ea83a snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x3d9985c6 snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0xbce65e3c snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0xc45e2c01 snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0xd91bc233 snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0xdb1f490e snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x0c7cbcd7 lirc_dev_fop_poll -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x1a7f216a lirc_register_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x4e5bf485 lirc_dev_fop_write -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x8ebb6162 lirc_dev_fop_read -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xac54f1d3 lirc_dev_fop_close -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xed0a193f lirc_dev_fop_ioctl -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xf0128935 lirc_get_pdata -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xfba835bd lirc_dev_fop_open -EXPORT_SYMBOL drivers/media/rc/rc-core 0x043d036e ir_raw_handler_register -EXPORT_SYMBOL drivers/media/rc/rc-core 0xa5767e2e ir_raw_handler_unregister -EXPORT_SYMBOL drivers/media/tuners/fc0011 0x71447a56 fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0x9fe17593 fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x3b2313be fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x425dfc7c fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x4bfa33dc fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/max2165 0xa0a81298 max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x3321d4bb mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0x70956435 mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0x6df79545 mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x594a18dc mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0xd84ac26d qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0xa8a1b2ec tda18218_attach -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x3da6a177 xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0x1e0a4fc9 xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0x0c17cea5 xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x2174aba3 cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xc426309d cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x116f6ef6 dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3d05b21b dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x468f3bbd dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x814211de dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xdebdfc27 dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xdfff79e2 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xeb485ec6 dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf0180c44 dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf0297697 dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x37889943 dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x4746137e dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x5f206587 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x657b9865 dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7306ee2a dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xb4519534 dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xb7b10d05 usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x3e431385 af9005_rc_decode -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x00e63d16 dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x08876f17 dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x312a9c99 dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x795b4651 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7b56ece2 dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb0f98b32 dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb38029ee dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc5d493a9 dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xdd36e6fa dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe996b3af dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf1a4273e dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x2f027769 em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xf0ecfee0 em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x065112c4 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1dcfd623 go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x2f9c3ee5 go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6a4e47c2 go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7c63fa82 go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x90c9811b go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb5a4357a go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf38a5271 go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xfbcfc06e go7007_update_board -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x575bd872 gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x6398450d gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9c205aee gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa37471d7 gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xaca05f39 gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc3d1f96f gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd176aaf9 gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd87ba82c gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x21241dda tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x4415489c tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x5684f722 tm6000_register_extension -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x078eb70c v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x2a81e42d v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x8f0ad13c v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x10305f3c videobuf_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x3a4da802 videobuf_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x4b5bcd2b videobuf_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x61b76a1a videobuf_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x82753399 videobuf_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xa4f16ccd videobuf_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x7d9d116e vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x82364e4e vb2_verify_memory_type -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0x54f16f93 vb2_querybuf -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x017f73c7 v4l2_ctrl_add_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x07e7971c v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x10802f68 video_usercopy -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x13aead98 v4l2_of_free_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x14bee31f v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x15de9279 v4l2_clk_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x15fc94e3 video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x232ff2b2 __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2651646f v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28e4219d v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2d960f39 v4l2_subdev_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36d7dbe4 v4l2_of_alloc_parse_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3a523282 v4l2_of_parse_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3c40905b v4l2_clk_unregister_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3eeaaefa v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x405932ce v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x40ec3a61 v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x42b90aae v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x46bc2792 v4l2_clk_enable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x46fdfb6d v4l2_subdev_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x49f19a43 v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x52354eec v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x59119be5 __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5c4ca207 v4l2_subdev_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x637cd202 v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x658e4a20 v4l2_of_parse_link -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x66051600 v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x682eac21 v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x68f6141a v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x69f4b6fe __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6a8b4bf8 v4l2_subdev_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6fe07f15 v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x74e8d7a3 v4l2_clk_get -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x76a814c7 v4l2_subdev_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7c109f3a v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8630e31f v4l2_clk_disable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89748be5 video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8ad7bb9b v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8affc58f v4l2_subdev_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8c0868dd v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8c80ed03 v4l2_of_put_link -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8f579a98 video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9aedbd09 v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9e89b071 v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa1e6e236 v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa5806cff v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa5e2561c v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa712e6e8 video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaf0c978f video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaf96e004 v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb72cce34 v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77adc52 __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc2f596d4 v4l2_clk_get_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc5d21ba9 v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcbcdd682 v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcf5d6c41 v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd293d98f v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd7485769 v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd7bac124 v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe10357cc v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe146cc47 v4l2_subdev_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe5b30aba v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe64531ac v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xea82b71c __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xece96de0 v4l2_clk_put -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeeaf68bf v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xefe0a1e8 v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf20b05f9 v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf79a5c9f v4l2_clk_set_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf7ad7492 video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfb11cb65 __v4l2_clk_register_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfc794668 v4l2_clk_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xff089eea v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/memstick/core/memstick 0x1b7c50bd memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x326dfab7 memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x330c84f0 memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x374a8306 memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d363f29 memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x620e20a1 memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0x6bad9301 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x7abde967 memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x8cf1ba3a memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xa0b6ac39 memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xa94aa8fd memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xc8aec2bc memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xcfb8ce12 memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0xf910aa96 memstick_suspend_host -EXPORT_SYMBOL drivers/mfd/cros_ec 0x063eefec cros_ec_register -EXPORT_SYMBOL drivers/mfd/cros_ec 0x6987f894 cros_ec_suspend -EXPORT_SYMBOL drivers/mfd/cros_ec 0x7aaf0ac6 cros_ec_resume -EXPORT_SYMBOL drivers/mfd/cros_ec 0x90f1ccf9 cros_ec_remove -EXPORT_SYMBOL drivers/mfd/dln2 0x5560403c dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xa6af96a5 dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0xd87dfaaa dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x93835f6f pasic3_read_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xe32f97d4 pasic3_write_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x31ac0493 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x324e3fa5 mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x49db92d5 mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4c4144ba mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x57089f7d mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x819806bb mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x96c9ce1c mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa5cbd27b mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc6a5b903 mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xcb1e74eb mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xdde702e3 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 -EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 -EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib -EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led -EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw -EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x4f0684a5 wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x97243163 wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x0f72e4a0 wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x3d485f39 wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x9f0a4d88 wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xa22a5d14 wm1811_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x4856fd19 ad_dpot_probe -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x59a3d7c5 ad_dpot_remove -EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x8a05ed90 altera_init -EXPORT_SYMBOL drivers/misc/bcm2835_smi 0x4d2fa61f bcm2835_smi_get -EXPORT_SYMBOL drivers/misc/bcm2835_smi 0x727204cb bcm2835_smi_user_dma -EXPORT_SYMBOL drivers/misc/bcm2835_smi 0x72db83c4 bcm2835_smi_set_address -EXPORT_SYMBOL drivers/misc/bcm2835_smi 0xa00dc18f bcm2835_smi_write_buf -EXPORT_SYMBOL drivers/misc/bcm2835_smi 0xab7a4d1d bcm2835_smi_set_regs_from_settings -EXPORT_SYMBOL drivers/misc/bcm2835_smi 0xb33bd6cb bcm2835_smi_read_buf -EXPORT_SYMBOL drivers/misc/bcm2835_smi 0xf6720336 bcm2835_smi_get_settings_from_regs -EXPORT_SYMBOL drivers/misc/c2port/core 0x74b4ccad c2port_device_register -EXPORT_SYMBOL drivers/misc/c2port/core 0x936c9ec8 c2port_device_unregister -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x1b84068a dw_mci_resume -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x7e0b7084 dw_mci_suspend -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xa8e59b31 dw_mci_remove -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xe8ee77f7 dw_mci_probe -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x9ff4a2f3 mmc_spi_get_pdata -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xe44f1f41 mmc_spi_put_pdata -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x0100b925 tmio_mmc_host_probe -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x378f2335 tmio_mmc_irq -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x4036d470 tmio_mmc_host_alloc -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x50e9235b tmio_mmc_host_runtime_suspend -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x55803a0a tmio_mmc_host_runtime_resume -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x6d3deee9 tmio_mmc_sdcard_irq -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x7a6fd700 tmio_mmc_sdio_irq -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xcc0fb75d tmio_mmc_host_free -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xe4b13e63 tmio_mmc_host_remove -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xf02062dd tmio_mmc_card_detect_irq -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x457be20b cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x5bb0deec cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xaabe0bee cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xbec6cf4e cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd748ac2c cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xeb862e5a cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xf6e97ebf cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xa4bbb8ca mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x06b47a68 lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/nand/denali 0x068e2a2e denali_init -EXPORT_SYMBOL drivers/mtd/nand/denali 0x1c012b9e denali_remove -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x2d149cea onenand_scan_bbt -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xca14a012 flexonenand_region -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xeea5ec0b onenand_addr -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xfa45dc4c onenand_default_bbt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1b8d3c06 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2f282737 arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x30fa310c alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7c49c4aa arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9a2791fb arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa6589ecf arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc7b3c4d2 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe223c814 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe43502e4 arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf4fde15f arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x48378758 com20020_check -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xb67f52c1 com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xe268531c com20020_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x14b92d04 __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1aa89aca ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x276e530b ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x56b13c82 NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x72b548fd ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x75c4f6d1 ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8888bd7d ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xadd362b2 ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb3aeb97a ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xcd2c8857 ei_close -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x0fba52f3 hnae_ae_unregister -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x3c4eee31 hnae_put_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x400386ac hnae_ae_register -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xd81dae3c hnae_reinit_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xf549e719 hnae_get_handle -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x12a5bb78 hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x1ba20374 hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x645fa451 hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x721ff131 hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x9d0d786d hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x32836956 sirdev_raw_write -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x36eaf1e5 sirdev_receive -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x5b309b87 sirdev_get_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x6229b5d6 sirdev_set_dtr_rts -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x8049b6b4 sirdev_write_complete -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x9cadc49a irda_register_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xa5083ffa sirdev_set_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xb389e898 sirdev_put_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xdcdde89f irda_unregister_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xe0f10a99 sirdev_raw_read -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x8f1ad08a alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xb4c4a3d1 free_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x3aacc55d xgene_enet_phy_register -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xf2836f81 xgene_mdio_rgmii_read -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xfee6fde4 xgene_mdio_rgmii_write -EXPORT_SYMBOL drivers/net/phy/vitesse 0xe8968e6f vsc824x_add_skew -EXPORT_SYMBOL drivers/net/ppp/pppox 0x58c6c9b1 pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0xcc1716a2 pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe9d90110 register_pppox_proto -EXPORT_SYMBOL drivers/net/team/team 0x16f6e760 team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0x3ed5d2a7 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0x422bfd3b team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x6af9d70e team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0x6c35c894 team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0xb3f4a70b team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0xb7b3139e team_options_register -EXPORT_SYMBOL drivers/net/team/team 0xea4c12ce team_options_change_check -EXPORT_SYMBOL drivers/net/wan/hdlc 0x38c72bd0 attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x4e541c3f alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0x67c5b0b9 unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0x75bee516 hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0x84db9089 hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0x860b0372 hdlc_change_mtu -EXPORT_SYMBOL drivers/net/wan/hdlc 0x98b94c34 register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xa438842e hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0xb75fa4b5 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xc21914a3 hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0xdb4c151f unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x86e250cb i2400m_unknown_barker -EXPORT_SYMBOL drivers/net/wireless/airo 0x517b4b4b init_airo_card -EXPORT_SYMBOL drivers/net/wireless/airo 0xab50ff3d reset_airo_card -EXPORT_SYMBOL drivers/net/wireless/airo 0xe2705954 stop_airo_card -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x02dbd36e ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x59d1d0eb ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x733e146e ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8fda6855 ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x97355069 dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xac3e1a2d ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc2cfca48 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc9dafdc5 ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd4e8aa2b ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdf0e3021 ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf2f3e35f ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf3272a4d ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x05a40b66 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x18233833 ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x37416c42 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x39981639 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4965bf39 ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6086908b ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x619465c0 ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6816694b ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa1d6558c ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xaf91f4ae ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb010638a ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb094a00f ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc3604b10 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xefd6ace1 ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfd199ddf ath10k_debug_get_new_fw_crash_data -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x05490567 ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0d9cfcfe ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2834b6bc ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x30bf1f80 ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3da90d31 ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4891873a ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4f01e218 ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7a31000c ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8356a92f ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa74cfc73 ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf1ff7429 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x02bef4db ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0d344e9d ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x180e0c95 ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1a976b5e ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2bd52981 ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2cfa5f72 ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2fb97aaa ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x34143bd8 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x51074292 ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5dee403d ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6d2b7c95 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x906af929 ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9ee02ba1 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xafc6d9b8 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb51463ff ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc330456d ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc592b30a ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe4290dc3 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf413cc19 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf78ce323 ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf9023f2b ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf90a8dee ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfee89e1f ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01a1935f ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0813ae37 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0986a87e ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x12c4a1a8 ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x15e22a45 ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1628bac7 ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1828a028 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ac1bd9c ath9k_hw_cfg_output -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1e565fb8 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ed1477f ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1edb5330 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2cf3ac96 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2df8e120 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x300dbf68 ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x30e029a1 ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x31da0fc7 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37c8f239 ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a84991f ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b1223be ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b941f54 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3ccb51fd ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d5702c4 ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42865373 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x431a41e4 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x443714cc ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4a48ce03 ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x52118a6f ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54f37070 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x55d6a1b9 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x571e8b08 ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x57b03b2c ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b92e998 ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5d3d787c ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5e398871 ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x60372e9e ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x65e1695d ath9k_hw_request_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6698c85d ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b885219 ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ba9e2f4 ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6cd1c8ff ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6dd17198 ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x70a21e1a ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x71153993 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x72df87ed ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x775b2bef ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7af842e0 ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x833bb295 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x87a26c3e ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x892c84d4 ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8b1975ff ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8b2e3379 ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8ecb8651 ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8fbc9d80 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91ac985b ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x93bb9503 ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x93e7469d ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x953fb04f ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x99593e5f ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9b698451 ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ccafcf5 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9e154fe7 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa099db46 ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa1e9d11b ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa2a649da ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa35f313c ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa39f70a8 ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa5040fa6 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7e6c6a5 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa836c323 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa8a449fa ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa9222cb0 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xac02dbc2 ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xacadbd4c ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb694de81 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb737cbc5 ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb79902a9 ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbbf487d7 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc5fd8ce5 ath9k_hw_cfg_gpio_input -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc6a62682 ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc6ab20d3 ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc6b17d12 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc82281a7 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd380f4e ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xce22b64f ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd2a2f33a ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd3d4b76d ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd3f16c19 ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4da7ddf ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd5bc0223 ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd7e35b2c ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb0513d1 ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdc542ff4 ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xde6003dc ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe2af795e ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe6517aab ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe690903d ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe9b47971 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf00c9efe ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3f3ec85 ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf5f80b6c ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb40c11f ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfba52765 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfcc586ab ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd07dffa ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd6b9d48 ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/atmel 0x11fdfad8 stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel 0x3d9a42b2 init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel 0xf00f1e75 atmel_open -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x09a79b81 brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x0d2b5f66 brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x1e62e26d brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x27f568cc brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x2dfdc27c brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x36a75bad brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x57fa8775 brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x64a5bd4b brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x6dfe01a5 brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x72bd0eba brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x76f8da65 brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x8b8f66e9 brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x920eabe6 brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x001550ab hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x06d3ecd7 hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x11b016ac hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1f17190c hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x33b2261f hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x371ff1e9 hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3d5ef3b0 hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x440d1e6c hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x54cf7cb8 hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5b212d81 hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x74171c86 hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8f9eee98 hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x94eb6804 hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9c276b54 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa4715abb hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa5ee87d2 hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa793b3de hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb5da19df hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbfcafa34 hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xce973514 hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xcf3e2f8c hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xdf88fbdb hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf383b61c hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf67d9730 hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xfa4e1d5e hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x0c7fe3c4 free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x4daeae8a orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x4de24fc9 orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5bfb0c47 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5c9ffe9c orinoco_down -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x6761e5c1 orinoco_get_stats -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x6be71e32 __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x70a34d4a orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x71e8be43 alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x7ef110d8 __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb04f8c16 orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xba0f3a92 orinoco_open -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe2c1fd32 orinoco_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe3b605de orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe466db52 orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xf0e9361f orinoco_up -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xfc27279b orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0479117a _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0ff80c7c rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1301e4fd rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1e7e01a7 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2a6d361f rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2fee03b7 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x309d66f8 rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4816be47 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x49978828 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x49b50973 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x52764970 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5396689b rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x58bc7124 rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5a6a257e rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5bc84b52 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6604f2f8 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6a2ff1d3 _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6e360d74 rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x73740db6 rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x75977be2 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x787cd611 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7966c345 _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7b8bb839 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7bb31e1c _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7de23168 rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7f75432b _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x809fdb8f rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9198e254 _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x965f6234 rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x97fbdbe9 rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa7f24501 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa84e9362 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb984e8cd rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc24dfee5 rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xceb4097a _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcfea4d48 rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdd01f5c6 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe0064199 _rtl92c_store_pwrIndex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeebf5bd3 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf3f346a6 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfff2fa7a rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x0892460b rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x56eda0c4 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xac14d461 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xbeef59fc rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x080eac88 rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x174bbf24 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1c7ff52f rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x23cac19f rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x24e0791e rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x27e9015b rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2eb78a86 rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5c1f3578 efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7ad1c7f9 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7cde89ac efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8529db36 rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x90cc9736 rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x94bc01a4 rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x95a43a4c rtl_ps_set_rf_state -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x95b76689 rtl_wowlan_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97a73680 rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa2eba269 rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa55180b1 rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaa8592f9 rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb6700170 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc0dd764e rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xda9959c9 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdbae4bc1 rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdf5a7cb0 rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe04e4ab3 rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe201ed2f rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf00dbf65 rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf2b53a00 rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x0eccfd64 wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x7212babb wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x7c6de7c6 wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x9f71d585 wl1271_free_tx_id -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x1237eef3 fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x22d1d3c7 fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xbf9fbe29 fdp_nci_recv_frame -EXPORT_SYMBOL drivers/nfc/microread/microread 0x0fadf602 microread_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0x90cd2c46 microread_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x97e44fb3 nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xb5bf104a nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xf7e4c6c6 nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x17b6286e pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x32d9aed4 pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x36cb5bc3 s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xba9f1472 s3fwrn5_recv_frame -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xc38fb797 s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2d1cd127 ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x6065ecd5 st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7d960a64 ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9186d598 st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc1bf4806 st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xca904629 ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xceb5069e st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xceef5e63 st_nci_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe17faa64 ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf172191b ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf5e8e1ff ndlc_close -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0ccdeb5a st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1f34663a st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x33af0b2f st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5dc14cfd st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6923e1d5 st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x766f69c7 st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x77341d22 st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8277ca47 st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x88b801a3 st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa73a9b10 st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb2999a16 st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb84f1dd0 st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbd060f0d st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc1ea6986 st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc6b150c5 st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd37f53f4 st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xda96690a st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf2bb2e42 st21nfca_dep_init -EXPORT_SYMBOL drivers/nvmem/nvmem_core 0xa2d83320 devm_nvmem_cell_put -EXPORT_SYMBOL drivers/parport/parport 0x05d85b2b parport_claim -EXPORT_SYMBOL drivers/parport/parport 0x156632f3 parport_register_device -EXPORT_SYMBOL drivers/parport/parport 0x1c527a11 parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x20b2e82d parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0x2bec1339 parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0x2cc021d4 parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0x2cf24eba parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0x33785f4d parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0x38deb2b7 parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0x3ce91dbc __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0x478a50e0 parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0x48c7b3e4 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x4dd32bee parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0x584b5866 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0x5c1303c5 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x71f04b73 parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0x87bf0163 parport_read -EXPORT_SYMBOL drivers/parport/parport 0x98b66f2c parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xb8598f32 parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0xb958cda1 parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0xc18cebe4 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xc37225bd parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0xc709dde1 parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0xcc163bb3 parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0xcd258e5a parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0xce7860a5 parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0xd22db56f parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0xd988414f parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xe44cfc2d parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xea746a4d parport_release -EXPORT_SYMBOL drivers/parport/parport 0xf17cc7e8 parport_write -EXPORT_SYMBOL drivers/parport/parport 0xfc485686 parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport_pc 0x8fa752a7 parport_pc_unregister_port -EXPORT_SYMBOL drivers/parport/parport_pc 0xdb2863a3 parport_pc_probe_port -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0264c766 pcmcia_fixup_iowidth -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x17fc8c35 pcmcia_unregister_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1886193c pcmcia_request_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1a415fb3 pcmcia_register_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x31cf2c07 pcmcia_read_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x39c2acb7 pcmcia_request_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x710563b6 pcmcia_fixup_vpp -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x87c1b821 pcmcia_get_mac_from_cis -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8c825acf pcmcia_loop_config -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8cec4f1a __pcmcia_request_exclusive_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xad33496b pcmcia_release_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xbc1f3b47 pcmcia_loop_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd0be579f pcmcia_enable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe595cc9d pcmcia_request_io -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe88eeea9 pcmcia_disable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xee7e5bbc pcmcia_map_mem_page -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xeffbc6a2 pcmcia_write_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf91a5db4 pcmcia_dev_present -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xfec6ffd8 pcmcia_get_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x14521854 pcmcia_put_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x4a8f8714 pcmcia_reset_card -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x50286a82 pcmcia_parse_uevents -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7c375f91 pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7e0149ce pcmcia_unregister_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x82f2aa86 pcmcia_socket_class -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x94855351 pccard_register_pcmcia -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd7da8a20 pcmcia_parse_events -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe0b9d1d1 pcmcia_get_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf7593281 pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xfffe7913 pcmcia_socket_list_rwsem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xee898381 pccard_static_ops -EXPORT_SYMBOL drivers/pps/pps_core 0x4c42b811 pps_register_source -EXPORT_SYMBOL drivers/pps/pps_core 0xccd3afd4 pps_event -EXPORT_SYMBOL drivers/pps/pps_core 0xcd1c214d pps_unregister_source -EXPORT_SYMBOL drivers/pps/pps_core 0xdbf4542e pps_lookup_dev -EXPORT_SYMBOL drivers/ptp/ptp 0x0fc46eaf ptp_clock_index -EXPORT_SYMBOL drivers/ptp/ptp 0x49deac21 ptp_clock_event -EXPORT_SYMBOL drivers/ptp/ptp 0x5440b89b ptp_find_pin -EXPORT_SYMBOL drivers/ptp/ptp 0x7f586d27 ptp_clock_register -EXPORT_SYMBOL drivers/ptp/ptp 0xfd8ec9af ptp_clock_unregister -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x11b8b8a4 rproc_shutdown -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x1bb6e153 rproc_del -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x7532f5fa rproc_boot -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x7acc389c rproc_vq_interrupt -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x8f860c95 rproc_add -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x9a9e09a0 rproc_get_by_phandle -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xc6e7537f rproc_report_crash -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xd97b91cd rproc_da_to_va -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xe5a71ec6 rproc_put -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xfb6943e1 rproc_alloc -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x3c786bfa ds1685_rtc_poweroff -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x01f9da74 fcoe_ctlr_destroy_store -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x12f70a8c fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1891ef8c fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9c448873 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa7bf611c fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa8978e3b fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xaa37c6d1 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc333d509 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd99fe1ec fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf52ca67a fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfbe2c71e fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfcf1163d fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0841c6cc fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x09e61cef fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0d38e426 fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1a02d899 fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1a855282 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1bfc63fb fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1cc9b761 fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22e09680 libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x281cf543 fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2bdc942c fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x340433d0 fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3a35b691 fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3f7711b0 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x40efd413 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4e2c8d36 fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x542704f5 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5de59d43 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5e7adff0 fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69ae3313 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6aac9ed2 fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x74e7b9be fc_rport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x76f9e5c5 fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x77440d9c fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ac811d9 fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8225d882 fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x86c292a7 fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x89446b9e fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x90f226de fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x929279bc fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x98042095 fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9bb4c574 fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa0b22001 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb051d8a3 _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb318db48 fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb408415d fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb51e3b21 fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb80dd77f fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbac15023 fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc3086d4f fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc3c102ef fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc3d3a184 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd107a0a9 fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd4843ccd fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xda62b450 fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdb98ef6f fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5ef25f5 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe7efa57d fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe83144ef fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xebc7dad5 fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0f6f4fe fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x1bbd7127 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x662d2346 sas_wait_eh -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x7b3d9504 sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xe84b39b1 sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x01dd8061 osd_req_get_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x03caaafc osd_req_decode_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x12a37bcb osd_req_read_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x167c4900 osd_req_flush_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1d5550c9 osd_req_add_get_attr_page -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1f4f5c1f osd_req_flush_obsd -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x244f2c6f osd_req_write -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x357a330e osd_start_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3d4754a0 osd_req_list_partition_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x43a16890 osd_req_flush_collection -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x541556f6 osd_req_remove_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5f150208 osd_req_read -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5f4ff3f7 osd_req_read_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6053a018 osd_end_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x72862dbc osd_req_read_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7506b786 osd_req_list_partition_collections -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x80438929 osd_dev_fini -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8387d994 osd_req_decode_sense_full -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x868db6f1 osd_req_format -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x906a5871 osd_execute_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9096440d osd_req_write_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x942fdac0 osd_finalize_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x95479658 osd_req_create_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9ee0cba2 osd_req_list_dev_partitions -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9f142912 osd_req_add_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa3dfaf1a osd_req_write_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xab256ca1 osd_req_list_collection_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb3d9d2b7 osd_req_remove_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb633f213 osd_execute_request_async -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc2ea7c2f osd_req_flush_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc2ec986a osd_req_add_set_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcce47552 osd_req_write_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe0b2bd0a osd_req_create_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf507bf2d osd_req_set_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf8fd8bfd osd_dev_init -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfa885aa5 osd_auto_detect_ver -EXPORT_SYMBOL drivers/scsi/osd/osd 0x378a4995 osduld_info_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0x38134f48 osduld_device_info -EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0x6655c9b1 osduld_register_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0x8c742adb osduld_device_same -EXPORT_SYMBOL drivers/scsi/osd/osd 0x95621b51 osduld_put_device -EXPORT_SYMBOL drivers/scsi/osd/osd 0xe324bbc7 osduld_path_lookup -EXPORT_SYMBOL drivers/scsi/raid_class 0x044a4147 raid_component_add -EXPORT_SYMBOL drivers/scsi/raid_class 0x6f7cce2d raid_class_release -EXPORT_SYMBOL drivers/scsi/raid_class 0xc9462783 raid_class_attach -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x096674bd fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x50cf28c6 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x55ef74a6 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5a73a16e fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x846bb59c fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x94411034 fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb211e7db fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xdc6ab11e fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xed3fc6e8 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf115c2f7 fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf348d080 fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfbf12a2b scsi_is_fc_vport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfc71f191 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0f3dda50 sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x10dc3d97 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x153ab4ea sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1bc23d70 sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2158fc2e sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3638f9f1 scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3694c3f1 scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x437b345b sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4de84b02 sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5d2813bd sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5dbe659a sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6c6870e7 sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6fd08933 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8c2b68fc sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8c5fabd6 sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8d22be86 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x914e33a7 sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x93242ccd sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9427fad5 sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x999f46c9 sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa3cc3ca2 sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa76c873f scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xabc46cae sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb59af177 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb77f74c6 sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc33796ec sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe667d09b sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe66ea553 sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x2b5f59ae spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3a102588 spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x42ef2111 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7b7bff6b spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe0cdc33c spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x6b7fe02e srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x8d78738d srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xa1cf79ea srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xc6f5d6dd srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x3ea34e39 ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x4be91885 ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x5468d767 ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x596ad0f8 ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x6325b5bb ufshcd_runtime_idle -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x8880f5ca ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xbca1d893 ufshcd_system_resume -EXPORT_SYMBOL drivers/ssb/ssb 0x0cb2abe8 ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0x15e516e4 ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x1737938c ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0x1bd50fec ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x1e9c10e7 ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0x27be6c44 ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0x3aa92422 ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0x513796dd ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0x5c584206 ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x6d8496b7 ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x748cb97d ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0x775e8c89 ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0x7ac45618 ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0x8199c8fc ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xd801c558 __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0xe0049f66 ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0xe4298e7a ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0xf10a0f87 ssb_dma_translation -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x05fa3250 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1146b90d fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x128bd457 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x235f746c fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x278a01c6 fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x38664607 fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4d5ecb3f fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x65062930 fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x76dec668 fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7b9a7e69 fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7d0dec7f fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x817bd820 fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x90ade3e1 fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x95d170b1 fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x97a43eb5 fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x987ffd86 fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xae898078 fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xaee5d69b fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc0c98932 fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc3804a8c fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd191d5d1 fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdc8cafcf fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe5a3239f fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe7283a8e fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x2cbb3252 adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x2369e76f hmc5843_common_remove -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x7d4e476c hmc5843_common_resume -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xca3227b9 hmc5843_common_probe -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xcabbb547 hmc5843_common_suspend -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x4fc1b026 ade7854_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x5806976d ade7854_remove -EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x53d5ff5a most_deliver_netinfo -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x04501c0e iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0b67fad2 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x207e5a79 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x258431f0 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2f32eb92 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3da5a0f6 iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3fcebed3 iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4907e10e iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4e0a59f5 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x50db37df iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5aeb1a67 iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x62a05eee iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x62c84e62 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x71ef33ad iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8ff08fbe iscsit_set_unsoliticed_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9154bf71 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9841f38e iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa355f9c7 iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb1f96837 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc5cffacf iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xccc83db6 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd571395e iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe43a4887 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xeafdff05 iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xeb08eaec iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xece1c572 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf09c836d iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf858521c iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x03a64aa6 transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x0628d2cb target_submit_cmd_map_sgls -EXPORT_SYMBOL drivers/target/target_core_mod 0x0d401a0e sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0x12bfaea6 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x1b9f373c spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0x25fd8b79 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x2b3e6565 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x314b7a5e transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x3681d79f transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x3ec12f9c target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x441e59f1 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x44bb1a70 transport_check_aborted_status -EXPORT_SYMBOL drivers/target/target_core_mod 0x4a6db13e sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x4be6e61e transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x5062cdc3 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x525c37d9 transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x541e5cd0 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x54d9d634 target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x56cd71e7 transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x5e1e1bc5 core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0x5e50c406 target_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x60618043 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x645a6dc0 core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x6c06d5e7 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x705925e9 target_get_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x70e79cd2 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x78886afb target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x7a251c3a core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x822be361 target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x88aeae59 target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x90cbbad2 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x9d94a9ee spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0x9dda1e70 target_put_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x9fa9ff4f target_sess_cmd_list_set_waiting -EXPORT_SYMBOL drivers/target/target_core_mod 0xa1cdffbb target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xa5603020 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0xa5ed368f spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0xa94ed3b0 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0xae28038e core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xae5e4b40 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0xb2ea0cbc transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xb3b65574 transport_init_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0xb75bd74f target_setup_cmd_from_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xbfeb25d1 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xc43a0aad target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0xc55be84d target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0xc6d10d1d target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0xcd501557 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xd3f713dc transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xd49c6180 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0xd4a144ea target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xd8b534fa target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xdffad693 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0xe0116126 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xe2b69aa1 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xe33112af transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0xed991fae passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xeed1b07c target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xf00e73a0 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf0ba533c transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xf1f2ce74 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xf32db121 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xf73bc80b core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xf9f7835b target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xfa2dc444 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xfac7c085 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xfc985b69 transport_init_se_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xff35f55c transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xffd70576 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xb1b53a87 usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x9ef451dd usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xeea1ee60 sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0f0cf99d usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2a2f9a87 usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3444f807 usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x67f86255 usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x866bb88d usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa4ce92db usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa657f566 usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xac99a7d4 usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xcb95bb34 usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe096491b usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf1cde19d usb_wwan_ioctl -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf6f0b738 usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x5ddc52ba usb_serial_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xcf1e19db usb_serial_resume -EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user -EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x2e91ca97 vringh_iov_pull_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x367ce26a vringh_iov_push_user -EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user -EXPORT_SYMBOL drivers/vhost/vringh 0x59f824d9 vringh_getdesc_user -EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x7bda5e6d vringh_iov_push_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x821e9390 vringh_iov_pull_user -EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user -EXPORT_SYMBOL drivers/vhost/vringh 0x937e412c vringh_getdesc_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user -EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user -EXPORT_SYMBOL drivers/video/backlight/lcd 0x4359a49c lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0x956cac09 devm_lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xa10fc4eb lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xf7266bbb devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0xc1461012 sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xe9bf304c sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xdcbbf3af sys_imageblit -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x3adaa6d7 w1_ds2760_read -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x86efeeac w1_ds2760_store_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xbb43e0fc w1_ds2760_write -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xcd0f3e44 w1_ds2760_recall_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x2ae71af5 w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x6fb39d06 w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x99e00b9b w1_ds2781_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xb24e844d w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/wire 0x079f69ef w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0x4fc1e25a w1_add_master_device -EXPORT_SYMBOL drivers/w1/wire 0x62df9729 w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0xf693f713 w1_unregister_family -EXPORT_SYMBOL fs/exofs/libore 0x03a4eff1 ore_get_io_state -EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout -EXPORT_SYMBOL fs/exofs/libore 0x31024ad2 ore_read -EXPORT_SYMBOL fs/exofs/libore 0x3f06b5c1 extract_attr_from_ios -EXPORT_SYMBOL fs/exofs/libore 0x44d82e4f ore_write -EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info -EXPORT_SYMBOL fs/exofs/libore 0x83103e72 ore_get_rw_state -EXPORT_SYMBOL fs/exofs/libore 0x8cfdafc5 ore_create -EXPORT_SYMBOL fs/exofs/libore 0x8d00027e ore_remove -EXPORT_SYMBOL fs/exofs/libore 0x92e6cec7 ore_check_io -EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length -EXPORT_SYMBOL fs/exofs/libore 0xe53ffc85 ore_put_io_state -EXPORT_SYMBOL fs/exofs/libore 0xe891237e ore_truncate -EXPORT_SYMBOL fs/fscache/fscache 0x02145ffb __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0x068e86f9 __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x077e2878 fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0x0cdd1a3c fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0x0d323b44 __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x14ab6c8c fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0x1637df70 __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x25631afd fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0x26c77b07 __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0x2a011a55 __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0x2a03a828 __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x2af6a722 __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0x34c6dc47 __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x35291b77 __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x37d8a84f fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0x39201a35 fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0x3a9c4d83 fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0x4e0978d1 fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0x52e4af34 fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0x64d15cd1 fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0x6e0fc643 __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x830f610d fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0x83ab564d __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x89e2dd71 fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0xa6f74c71 __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xa9d873d9 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0xacea9899 fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0xb0f93dd6 __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xb89bde0e __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0xc12d804c __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0xc23964df fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0xcbb24cba fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0xce7cfbe9 __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xd26fb9c2 __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0xd6c2f9d5 __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xddd1f698 __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0xe1aa3b79 fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0xe6d69dca __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0xf60e450e fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0xfddffbbd fscache_check_aux -EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x473c0809 qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0x7103138e qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x88d445ac qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xb3458225 qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xc72ceeb5 qtree_delete_dquot -EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq -EXPORT_SYMBOL lib/crc-ccitt 0x3771b461 crc_ccitt -EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table -EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table -EXPORT_SYMBOL lib/crc-itu-t 0xf5b4a948 crc_itu_t -EXPORT_SYMBOL lib/crc7 0x66213969 crc7_be -EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table -EXPORT_SYMBOL lib/crc8 0x41248eaf crc8 -EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb -EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb -EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c -EXPORT_SYMBOL lib/lru_cache 0x03f599c7 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0x4feade4b lc_create -EXPORT_SYMBOL lib/lru_cache 0x56fc3ea0 lc_put -EXPORT_SYMBOL lib/lru_cache 0x619ed575 lc_try_get -EXPORT_SYMBOL lib/lru_cache 0x84e0214b lc_committed -EXPORT_SYMBOL lib/lru_cache 0xbbe7c23c lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0xc48fa976 lc_set -EXPORT_SYMBOL lib/lru_cache 0xc6e4cd46 lc_reset -EXPORT_SYMBOL lib/lru_cache 0xcb990a55 lc_try_lock -EXPORT_SYMBOL lib/lru_cache 0xcea6747e lc_destroy -EXPORT_SYMBOL lib/lru_cache 0xd212c9f0 lc_get -EXPORT_SYMBOL lib/lru_cache 0xdc981d51 lc_seq_dump_details -EXPORT_SYMBOL lib/lru_cache 0xeb13128b lc_del -EXPORT_SYMBOL lib/lru_cache 0xf460a486 lc_is_used -EXPORT_SYMBOL lib/lru_cache 0xf5ea5f5c lc_index_of -EXPORT_SYMBOL lib/lru_cache 0xf6acec20 lc_find -EXPORT_SYMBOL lib/lru_cache 0xfe866dfb lc_seq_printf_stats -EXPORT_SYMBOL lib/lz4/lz4_compress 0xcbc5d521 lz4_compress -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x26c3aa22 lz4hc_compress -EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul -EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp -EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv -EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page -EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi -EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul -EXPORT_SYMBOL net/6lowpan/6lowpan 0x8fb198dc lowpan_netdev_setup -EXPORT_SYMBOL net/6lowpan/6lowpan 0xc86938be lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0xcef401d2 lowpan_nhc_del -EXPORT_SYMBOL net/802/p8022 0x4f1387da unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0xbcf833d7 register_8022_client -EXPORT_SYMBOL net/802/p8023 0x0c4c42fc make_8023_client -EXPORT_SYMBOL net/802/p8023 0x6b5b4605 destroy_8023_client -EXPORT_SYMBOL net/802/psnap 0x7bdbe342 register_snap_client -EXPORT_SYMBOL net/802/psnap 0xd5e95636 unregister_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x006b60cf p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0x01715fb1 p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0x01b7e956 p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0x0a0a2292 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x2988f78e p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x29ec857a p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x2c20b118 p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get -EXPORT_SYMBOL net/9p/9pnet 0x36bdf977 p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x3a2d6f58 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x3bc289dd p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x41bbed0b v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0x44c2c1ff p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0x45946329 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x45f8af5c p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0x4c7b13e2 p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x58892732 p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x588fe154 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x5aa6eaa9 p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x5d5f4b1a p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x6477aa15 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x6ed83bdd p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x7153b734 p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0x8cf2776f p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x98236018 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x99fd3df8 v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0x9b4a529e p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0x9ce58e4f p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0xa78d4579 p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0xab979d80 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0xaf186478 p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0xb0635150 p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy -EXPORT_SYMBOL net/9p/9pnet 0xc6cacac6 p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0xcdb8544a p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0xd539195d p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0xd605f6ef p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0xdfdfa645 p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0xe04861d2 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xeee23f8c v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create -EXPORT_SYMBOL net/9p/9pnet 0xf5a57a19 p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put -EXPORT_SYMBOL net/9p/9pnet 0xf9b3dd10 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0xfb115ce1 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check -EXPORT_SYMBOL net/appletalk/appletalk 0xb0b2a91f atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0xb5c53743 alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0xe5d12770 aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0xea743d98 atrtr_get_dev -EXPORT_SYMBOL net/atm/atm 0x0debbe8a vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0x15ac7ca1 atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0x28d0e909 register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x2e4450b4 vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0x3b8f5e98 atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x5d48abe7 atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0x72766b08 deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x831d5c6c atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xa9551481 atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xce2e405b atm_dev_register -EXPORT_SYMBOL net/atm/atm 0xd0f3679d vcc_release_async -EXPORT_SYMBOL net/atm/atm 0xe762bf49 atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0xeb2e9fde atm_charge -EXPORT_SYMBOL net/atm/atm 0xf1774b53 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/ax25/ax25 0x1499ebd2 ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0x19ddccfe ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0x22865436 ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0x97fa5adc ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0xac43807c ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xd6ccfa38 ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0xe3298f7b ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0xf619701a ax25_listen_release -EXPORT_SYMBOL net/bluetooth/bluetooth 0x072ae579 bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0cc4c644 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0f463deb __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1c36e769 l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1d13cc31 hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0x22b52e95 hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x26fd092a hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2cddf77c bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2e3c9367 hci_alloc_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2fade933 hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x36577c26 bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3686a1fd l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err -EXPORT_SYMBOL net/bluetooth/bluetooth 0x47242592 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4dc8c156 __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x63437add hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6430344d bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x68f5f196 hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6bc0c510 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6eee2f4a bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x77780b63 l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7efb6d10 bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x866a9753 hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0x890f8eee l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9386adab bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x94d5c8fb hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x982a98ac bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa15f77c7 l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa3a5238a hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb64158ec bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb83c0949 hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc0fa8d81 hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc6d99d06 bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd1437d19 hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd5667d67 bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd9e42654 bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe39744d9 hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe49db9f7 l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe9cd5b24 bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf7a1426e hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfe4dc348 hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfedb19e3 hci_recv_diag -EXPORT_SYMBOL net/bridge/bridge 0x00509992 br_should_route_hook -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x367f7e0d ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xc0b3fe94 ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xf3689825 ebt_do_table -EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x1ea1bf16 get_cfcnfg -EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative -EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info -EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer -EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x586fc2b1 caif_connect_client -EXPORT_SYMBOL net/caif/caif 0x59ce63dc caif_enroll_dev -EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head -EXPORT_SYMBOL net/caif/caif 0x81497f64 caif_disconnect_client -EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head -EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio -EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xc47ef132 cfcnfg_add_phy_layer -EXPORT_SYMBOL net/can/can 0x0fe0b8ae can_rx_unregister -EXPORT_SYMBOL net/can/can 0x6b45252e can_rx_register -EXPORT_SYMBOL net/can/can 0x6e40f062 can_ioctl -EXPORT_SYMBOL net/can/can 0x79869285 can_send -EXPORT_SYMBOL net/can/can 0x9657510a can_proto_unregister -EXPORT_SYMBOL net/can/can 0x99c4c6d0 can_proto_register -EXPORT_SYMBOL net/ceph/libceph 0x02086a89 ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0x029fc6eb ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0x02e0eba0 ceph_auth_create_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x04318dbe osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x04846ef6 ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init -EXPORT_SYMBOL net/ceph/libceph 0x0b9aacab ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x0ef24930 ceph_monc_got_mdsmap -EXPORT_SYMBOL net/ceph/libceph 0x13e0299c ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x150df909 osd_req_op_watch_init -EXPORT_SYMBOL net/ceph/libceph 0x16de1736 ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x20c9aaff ceph_oloc_oid_to_pg -EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup -EXPORT_SYMBOL net/ceph/libceph 0x215d49c4 osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0x2325beae osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x2515382a ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0x26252b99 ceph_calc_pg_primary -EXPORT_SYMBOL net/ceph/libceph 0x2648c6d3 ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0x2e79fe75 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x2ed054df osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x303f0c34 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0x31842e3a ceph_messenger_init -EXPORT_SYMBOL net/ceph/libceph 0x31924d46 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x32195522 ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x34437b69 ceph_messenger_fini -EXPORT_SYMBOL net/ceph/libceph 0x3520d15e ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0x380f775b ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x3925134d osd_req_op_cls_response_data -EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x3b22eb9a osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x3df24ef1 ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0x3e3fab7a ceph_osdc_set_request_linger -EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options -EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part -EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x47a9920e ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x4af709a9 ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x4c60cb40 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0x4ddad6ac ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode -EXPORT_SYMBOL net/ceph/libceph 0x53d84053 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0x54a9a921 ceph_osdc_create_event -EXPORT_SYMBOL net/ceph/libceph 0x5522497d ceph_osdc_cancel_event -EXPORT_SYMBOL net/ceph/libceph 0x57023bea ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x581637c3 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x5ec03b32 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x63cb8c57 ceph_osdc_readpages -EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x70ae4e2c ceph_auth_update_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x77e094d1 ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x7a6e9301 osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x7c9685a1 ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0x7ec374bb ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0x7f08ccb5 ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x84a6fd3b ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0x855b7fad ceph_monc_do_get_version -EXPORT_SYMBOL net/ceph/libceph 0x89bbbfd5 ceph_client_id -EXPORT_SYMBOL net/ceph/libceph 0x8bfc7d2c ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0x8d9fae18 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x8fa1ebcc osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x8fc28e45 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x91412a99 ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0x97cff543 ceph_osdc_writepages -EXPORT_SYMBOL net/ceph/libceph 0x9977157b osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup -EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xa1ebde8f ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xa38a15c8 ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xa44d2fc0 osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0xa5a42735 ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0xa6c2d32d ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0xa796a255 ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0xa8e0e0be ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0xa9ada05c ceph_osdc_build_request -EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb19dc152 ceph_pagelist_reserve -EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit -EXPORT_SYMBOL net/ceph/libceph 0xb71084f5 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0xb9a48e60 ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0xbb3588f8 ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0xbed40c56 ceph_monc_request_next_osdmap -EXPORT_SYMBOL net/ceph/libceph 0xc03f1dd5 ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0xc3b65350 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup -EXPORT_SYMBOL net/ceph/libceph 0xc6cc948d ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0xc6de2747 osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0xc996da0f ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init -EXPORT_SYMBOL net/ceph/libceph 0xcb3c61a5 __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips -EXPORT_SYMBOL net/ceph/libceph 0xd03cc6af ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0xd15f98a0 ceph_get_direct_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode -EXPORT_SYMBOL net/ceph/libceph 0xd5383217 ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xd813625e ceph_pagelist_append -EXPORT_SYMBOL net/ceph/libceph 0xde0eb6ba ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0xe37d2094 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0xe55d9bcd ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0xe801ac98 ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0xea74d524 ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xefdd4f32 ceph_osdc_put_event -EXPORT_SYMBOL net/ceph/libceph 0xf095ac93 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0xf1b36784 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xf4017049 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x6e0dcff6 dccp_req_err -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xa3c511d7 dccp_syn_ack_timeout -EXPORT_SYMBOL net/ieee802154/ieee802154 0x5130a0cc wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0x64ffe2e9 wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0x6e0c3029 wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0xc962256e wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0xd5c6c592 wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0xd81bfea7 wpan_phy_free -EXPORT_SYMBOL net/ipv4/fou 0x0c07b4a3 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x8ce6250f fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0xed741d6f gue_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0xf80fdc75 gue_build_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x11a51a7f ip_tunnel_dst_reset_all -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x3559dabf ip_tunnel_encap -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x6e60891e ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x881c817a ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xb8ee8bc0 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xdc635de8 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x544e7bfc arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x68c102ba arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x8964946d arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x4d0ee405 ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x6d221ad2 ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xcb1cac1a ipt_unregister_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x01de6a0c xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/tunnel4 0xb5a0e9d4 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x85684670 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0208eb4d ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6574593a ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x8d0fce51 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe7f68f7a ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x40052cc9 ip6t_unregister_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x658b209e ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x9e48070a ip6t_do_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x53328e5d xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0xc8932761 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x59bc77bd xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x67af1513 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x06684a79 ircomm_data_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x0fc043a5 ircomm_control_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x1248c8f4 ircomm_disconnect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x35eff03f ircomm_connect_response -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x5870320c ircomm_open -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x671e037f ircomm_flow_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x96fd5959 ircomm_connect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xe6480d25 ircomm_close -EXPORT_SYMBOL net/irda/irda 0x03b4d977 async_wrap_skb -EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value -EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service -EXPORT_SYMBOL net/irda/irda 0x0a0d818c iriap_open -EXPORT_SYMBOL net/irda/irda 0x126d0948 async_unwrap_char -EXPORT_SYMBOL net/irda/irda 0x13c2b26a alloc_irdadev -EXPORT_SYMBOL net/irda/irda 0x17a491c5 irias_add_octseq_attrib -EXPORT_SYMBOL net/irda/irda 0x21646e03 irttp_data_request -EXPORT_SYMBOL net/irda/irda 0x2bbb02fc irttp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda -EXPORT_SYMBOL net/irda/irda 0x36cad55b hashbin_remove_this -EXPORT_SYMBOL net/irda/irda 0x37791344 hashbin_get_first -EXPORT_SYMBOL net/irda/irda 0x3a85c63d irlmp_close_lsap -EXPORT_SYMBOL net/irda/irda 0x3ad1b516 irda_notify_init -EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value -EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service -EXPORT_SYMBOL net/irda/irda 0x53b69c01 irttp_flow_request -EXPORT_SYMBOL net/irda/irda 0x606d43d8 irlmp_connect_request -EXPORT_SYMBOL net/irda/irda 0x6492e28c hashbin_get_next -EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies -EXPORT_SYMBOL net/irda/irda 0x6b76aa70 hashbin_delete -EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client -EXPORT_SYMBOL net/irda/irda 0x731cec71 hashbin_insert -EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client -EXPORT_SYMBOL net/irda/irda 0x783553a3 irttp_connect_request -EXPORT_SYMBOL net/irda/irda 0x78551243 irlap_close -EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client -EXPORT_SYMBOL net/irda/irda 0x7abc5de7 irttp_connect_response -EXPORT_SYMBOL net/irda/irda 0x7e67ca6e irias_new_object -EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert -EXPORT_SYMBOL net/irda/irda 0x85763f53 irttp_close_tsap -EXPORT_SYMBOL net/irda/irda 0x8982c8d9 irias_delete_object -EXPORT_SYMBOL net/irda/irda 0x8a44dd5e hashbin_new -EXPORT_SYMBOL net/irda/irda 0x90ddb6bd hashbin_remove -EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack -EXPORT_SYMBOL net/irda/irda 0x91b8f9c6 irlmp_data_request -EXPORT_SYMBOL net/irda/irda 0x949619f5 iriap_close -EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all -EXPORT_SYMBOL net/irda/irda 0x9ffda243 irias_add_string_attrib -EXPORT_SYMBOL net/irda/irda 0xaca5b28f irttp_dup -EXPORT_SYMBOL net/irda/irda 0xb0195bae irlmp_open_lsap -EXPORT_SYMBOL net/irda/irda 0xb3c13d7f irias_add_integer_attrib -EXPORT_SYMBOL net/irda/irda 0xb7a7e12a irlmp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0xb881f24a irlmp_connect_response -EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value -EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute -EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request -EXPORT_SYMBOL net/irda/irda 0xbf7dd554 hashbin_find -EXPORT_SYMBOL net/irda/irda 0xbfa7c08d hashbin_lock_find -EXPORT_SYMBOL net/irda/irda 0xc0f4bfb2 irttp_open_tsap -EXPORT_SYMBOL net/irda/irda 0xc477368d irias_find_object -EXPORT_SYMBOL net/irda/irda 0xc998da4e irda_device_set_media_busy -EXPORT_SYMBOL net/irda/irda 0xcf2442c5 irttp_udata_request -EXPORT_SYMBOL net/irda/irda 0xd449e60f iriap_getvaluebyclass_request -EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint -EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries -EXPORT_SYMBOL net/irda/irda 0xf199cba4 irias_insert_object -EXPORT_SYMBOL net/irda/irda 0xf39e0924 irlap_open -EXPORT_SYMBOL net/l2tp/l2tp_core 0x8d578b87 l2tp_recv_common -EXPORT_SYMBOL net/l2tp/l2tp_ip 0xa4a540ef l2tp_ioctl -EXPORT_SYMBOL net/lapb/lapb 0x16c3fca1 lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0x365be7f1 lapb_register -EXPORT_SYMBOL net/lapb/lapb 0x532d3fd7 lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0x840ff838 lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0x979930c9 lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0xd2c1363f lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0xd9499e6d lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0xe8960905 lapb_data_received -EXPORT_SYMBOL net/llc/llc 0x26fd02d2 llc_add_pack -EXPORT_SYMBOL net/llc/llc 0x29110687 llc_sap_close -EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x9465227a llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0xca9bee94 llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0xd5cd8304 llc_sap_open -EXPORT_SYMBOL net/llc/llc 0xef50a2e6 llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0xf09dc02d llc_sap_find -EXPORT_SYMBOL net/mac80211/mac80211 0x02166686 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x07d5d4c6 ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x08694b30 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x0a787d6d ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0x0b9b0b61 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x0ca766df ieee80211_tx_status_noskb -EXPORT_SYMBOL net/mac80211/mac80211 0x0d04355e rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x1143e2f7 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0x13f1fc02 ieee80211_csa_update_counter -EXPORT_SYMBOL net/mac80211/mac80211 0x16744f96 ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0x1a9e2e11 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x2040cd6c ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x206cad61 ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x22a989b9 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x251bfd2d ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x29103717 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0x29b0392d ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x2ac63fe6 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x2e493191 ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0x32340d8c ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x3934a25a ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x3a2f4e26 ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x3d27da44 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x4010a7b4 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x43a642ff ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x43ab4124 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x44413f0d ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x445b8da9 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x4db81447 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x4f76bf15 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x516ab290 ieee80211_start_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x518ecb76 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x5350cb9b __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x5c947292 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x654abd3e ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0x69de096c ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x6ebc66ab ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0x76b64d50 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x76b9ef28 ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x7b2f818f __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x7c0b7373 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0x7d0c28b1 __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x8125388f ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0x8247c717 ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0x82c1cb32 ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x8576f5a7 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x894cf5d8 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x8b79549b ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0x8ce1b153 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0x8e60bb2a ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x90542910 ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x916bd2bd ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0x93e8ba19 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0x9566e53a ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xa26e7757 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0xa5838059 ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0xa6a341f0 ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0xb0754ca1 ieee80211_csa_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0xb0811344 ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0xb1aaef91 ieee80211_get_key_tx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0xb37a76b4 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xb423ef19 rate_control_send_low -EXPORT_SYMBOL net/mac80211/mac80211 0xb42c7ebc ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xb927144c ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0xc77149f2 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0xca041b30 ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xcc88e3b4 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xd1604783 ieee80211_stop_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0xd3260690 wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xd60f7825 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0xe2f24761 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xe3078734 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xe4213234 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0xe73998b4 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0xe7c877db ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0xec7291bd ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xecd5e89a ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0xefe1b1da ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0xf4a0d462 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0xf6edd5df ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0xfa9165a8 ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xfb70f653 ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac802154/mac802154 0x2583c021 ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x41e9f429 ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x46b91b96 ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x483ec032 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x864835b7 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0xa3546615 ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0xcda43029 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0xe534a218 ieee802154_register_hw -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x14719093 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1f68c3cd ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3ca817d2 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4a04e87a register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x52006847 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7069cba1 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb306a8d5 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc44ef0c9 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd9f70fde ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe49e3f45 ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe6f3088c ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe7fe56e8 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xee5e79af ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xef684d03 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x049c3d56 nf_conntrack_untracked -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x9cf48a45 __nf_ct_ext_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xdc797713 __nf_ct_ext_add_length -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x0d0f4c69 nf_nat_used_tuple -EXPORT_SYMBOL net/netfilter/nf_nat 0x1b1b3420 nf_xfrm_me_harder -EXPORT_SYMBOL net/netfilter/nf_nat 0x1d6d4277 nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0x58716867 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x8b91731c nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0xa7e2eb7f __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/x_tables 0x0933c3f7 xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0x40bb9817 xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x62fd8b04 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0x666a0ff0 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0x93b6d277 xt_find_target -EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xae68828b xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0xb778cf7e xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xbddab9ac xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0xd53c41b4 xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xf832baf5 xt_register_targets -EXPORT_SYMBOL net/nfc/hci/hci 0x075822f5 nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0x09cc68a3 nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0x35f1cf21 nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0x373ca9df nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x3adb7b35 nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0x428dad3c nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x45a53e29 nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x4686d6f1 nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x4de1cbe0 nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0x52953884 nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0x58708048 nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x5decb609 nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0x6463551c nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0x65c30f1b nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0x6c46c819 nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0x6c67e660 nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x711869ab nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0x81c59e20 nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0x8b52f876 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0xadd0c5c7 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xc1f3cec7 nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/nci/nci 0x00b2a864 nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0x0a45d1b9 nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0x0db48bd1 nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x18ebdd93 nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x1a48a28f nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0x1ddc7578 nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x2bc2c9be nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0x3fc9360a nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x45a05d94 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0x5c872f6d nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0x632100c8 nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x67565651 nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0x6aeac2f1 nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x70a05ec1 nci_get_conn_info_by_id -EXPORT_SYMBOL net/nfc/nci/nci 0x803bd422 nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0x83fef0eb nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0x9e03a820 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0xae305a52 nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xc7637262 nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0xc8bf9f46 nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xca6d07ee nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xcb26aeb7 nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0xcb3c0765 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0xce524a6d nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0xceb944bc nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0xde0d080e nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0xde930e88 nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0xfa1072c3 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nfc 0x24d4bde6 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0x425ecaaf nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0x432b8cda nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x5d42c7a5 nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0x5dfd5779 nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0x62aed741 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0x6696d948 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x6ef59a9e nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0x7967f726 nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0x7a42ca96 nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x8641704b nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0x8948c57c nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0x96e2bc85 nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0x987220be nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0xa1b9eddb nfc_class -EXPORT_SYMBOL net/nfc/nfc 0xadf768e1 nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0xb4e95d51 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0xd1b75e23 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0xd28ab831 nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0xdcecd46f nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xe61f1b0b nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0xea732296 nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0xf512f4b7 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0xf58b2aff nfc_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x158a3774 nfc_digital_free_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x7db717eb nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xbb049674 nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xf4f3a0d7 nfc_digital_allocate_device -EXPORT_SYMBOL net/phonet/phonet 0x0316318f pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0x115f74e5 pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0x253a46f2 phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0xb0aed79c pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0xbbb2be96 phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0xc22029d5 phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0xe3db285b phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0xea218831 pn_sock_unhash -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x093e346f rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x16035590 rxrpc_kernel_free_skb -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x364fc158 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x42d8917e rxrpc_kernel_reject_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x72d4af9e key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x77460da9 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x862aa737 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x9b612296 rxrpc_kernel_accept_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xa378aa90 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc68ca9f7 rxrpc_kernel_get_abort_code -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd3029839 rxrpc_kernel_get_error_number -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd9c8b304 rxrpc_kernel_is_data_last -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xdb1769ba rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf0289e8e rxrpc_kernel_intercept_rx_messages -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf207479f rxrpc_kernel_data_delivered -EXPORT_SYMBOL net/sctp/sctp 0x3b2ed9da sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x66924487 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xa098b19f gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xabfcba84 gss_mech_put -EXPORT_SYMBOL net/sunrpc/sunrpc 0x92c3db63 xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0xd4404012 xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0xf18372a5 svc_pool_stats_open -EXPORT_SYMBOL net/wimax/wimax 0x471d5591 wimax_reset -EXPORT_SYMBOL net/wimax/wimax 0xbd9f6f36 wimax_rfkill -EXPORT_SYMBOL net/wireless/cfg80211 0x01e1091d cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x020e282c cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0x055feb52 cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x063a19e0 cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x068dcb27 cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0x0765669c cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x0a46f626 cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x0c56de58 cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x0c64b4c2 cfg80211_roamed_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x0dd032c4 cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x0dde0221 cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0x136ecc25 cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0x146c7e04 __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x19b9a0dd cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0x1ae03b05 cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0x27863eab cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x27e875c1 __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x2957c7a5 cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0x31d34111 __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x320b1768 cfg80211_rx_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x32aad036 cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x331b0148 cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0x332fd2db wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0x37f739dc cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x38491912 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0x3c8cd263 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x3cdd1864 cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x3edcb033 cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x3f22a487 cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0x4144f842 cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x46a18a3e cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x4a13a692 cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0x4eaa6392 wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x4ef45d4b cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x54a99b99 cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0x5504a136 wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0x5e2272ea cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0x61ad3258 cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0x677e29df cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0x68ed7e47 cfg80211_report_obss_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0x6ddbfbd9 cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x6fb28aab cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x72908e90 cfg80211_sched_scan_stopped_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x74a89e44 cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0x75039ea4 wiphy_rfkill_stop_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x75d77413 ieee80211_data_from_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7f0d1e71 wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x83785beb cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x84ab7ea0 regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0x85c431af cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x89cfa332 cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x8d66f149 cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x91e700c4 ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x91e7d8f9 cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x92cddf60 wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0x9489e9a6 wiphy_rfkill_set_hw_state -EXPORT_SYMBOL net/wireless/cfg80211 0x966ff54d ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x9b06af72 cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x9b35c471 cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0xa1425906 ieee80211_channel_to_frequency -EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xa48d4686 regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0xa609205a cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xab353c2c cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0xace48feb ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0xad9d1c5a cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xaea420ee ieee80211_data_to_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0xc2b9c005 cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0xc5319ec5 cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xc9ee0154 cfg80211_connect_result -EXPORT_SYMBOL net/wireless/cfg80211 0xcd106a93 freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0xcd861f2b cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xd2779f5f cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xd27fec86 wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0xd58852a1 cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xd69d1e98 cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdd28dbd1 __ieee80211_get_channel -EXPORT_SYMBOL net/wireless/cfg80211 0xe0e9cd51 cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0xe47449c7 cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0xe59979b6 cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0xe7f4c822 cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xea4c4d16 regulatory_set_wiphy_regd_sync_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0xeb6d7c6c ieee80211_ie_split -EXPORT_SYMBOL net/wireless/cfg80211 0xec3af4b2 cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0xec9d2790 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xf80792d4 cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie -EXPORT_SYMBOL net/wireless/lib80211 0x11a2f665 lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x361d5d3d lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x4ce33942 lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0x87da6dff lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xbe0fb45e lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0xbee0bf46 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL sound/ac97_bus 0x683b39bb ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x17a6003b snd_mixer_oss_ioctl_card -EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper -EXPORT_SYMBOL sound/core/seq/snd-seq 0x344d5f37 snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x4c606f87 snd_seq_kernel_client_write_poll -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x9f22c916 snd_seq_kernel_client_enqueue_blocking -EXPORT_SYMBOL sound/core/seq/snd-seq 0xab919ed9 snd_seq_event_port_attach -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x818dc9fe snd_seq_device_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x127b30fb snd_midi_event_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x1cdc0812 snd_midi_event_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x59eb74ae snd_midi_event_encode_byte -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x8102ed2f snd_midi_event_reset_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xb11ba32d snd_midi_event_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xb2c7f684 snd_midi_event_reset_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xea0e5748 snd_midi_event_free -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xed42580b snd_midi_event_no_status -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xfc17bf78 snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x08b79a45 snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0x0fa19635 snd_cards -EXPORT_SYMBOL sound/core/snd 0x15c0bfb6 _snd_ctl_add_slave -EXPORT_SYMBOL sound/core/snd 0x196257e3 snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0x19650d73 snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x252e25e6 snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0x26140f70 snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0x28832b2e snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0x379a3cdc snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x39e0d623 snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0x44f60df6 snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0x4521155a snd_jack_new -EXPORT_SYMBOL sound/core/snd 0x45bc85d0 snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0x4a1d77fd snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x4c5afb90 snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0x5006a3c4 snd_info_register -EXPORT_SYMBOL sound/core/snd 0x58fba474 snd_seq_root -EXPORT_SYMBOL sound/core/snd 0x5c4a4f5c snd_card_new -EXPORT_SYMBOL sound/core/snd 0x5f40916d snd_device_new -EXPORT_SYMBOL sound/core/snd 0x602c96f0 copy_to_user_fromio -EXPORT_SYMBOL sound/core/snd 0x6e7b6dd2 snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0x6e92b1d8 snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0x734a5db9 snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0x7e93d0e9 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x902015d8 snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0x9159aba7 snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0x9698339e snd_card_register -EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0x9fce95ba snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0xa3b9932e snd_jack_report -EXPORT_SYMBOL sound/core/snd 0xac29e6eb snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0xaf3181fa snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0xafe17a8b snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb47e6519 snd_component_add -EXPORT_SYMBOL sound/core/snd 0xb56a0f74 snd_register_device -EXPORT_SYMBOL sound/core/snd 0xbd4b51f3 snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0xc3dc024b snd_device_free -EXPORT_SYMBOL sound/core/snd 0xc92fd53e snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0xc9b086f4 snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0xce3ca308 copy_from_user_toio -EXPORT_SYMBOL sound/core/snd 0xcec53a65 snd_device_register -EXPORT_SYMBOL sound/core/snd 0xd0e1e8c4 snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0xd1056100 snd_card_free -EXPORT_SYMBOL sound/core/snd 0xd1157735 release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0xde1f367f snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0xe24afc9e snd_power_wait -EXPORT_SYMBOL sound/core/snd 0xec70de74 snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0xf9ba3cc2 snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0xfad48ab8 snd_card_set_id -EXPORT_SYMBOL sound/core/snd-hwdep 0xfee7b686 snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any -EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x05cb1854 snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0x069e5e27 snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0x12264514 snd_pcm_lib_readv -EXPORT_SYMBOL sound/core/snd-pcm 0x147de952 snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x14b17a10 snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x18861d40 snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x1f770e05 snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x2561bd40 snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0x27390937 snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x34156a1b snd_dma_alloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x39ac1ff7 snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x3b858148 snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0x3b91f3af snd_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x43fba60a snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x4b25f6af snd_pcm_mmap_data -EXPORT_SYMBOL sound/core/snd-pcm 0x4c4c2654 snd_pcm_new_internal -EXPORT_SYMBOL sound/core/snd-pcm 0x4d2f8db7 snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0x4d9b6d35 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x4f5293c0 snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL sound/core/snd-pcm 0x53920592 snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x55df2579 snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0x5d4bfe24 snd_pcm_notify -EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x5f23d03c snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL sound/core/snd-pcm 0x657623d9 snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0x67a2d01f snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width -EXPORT_SYMBOL sound/core/snd-pcm 0x68b8e4ef snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0x69f91377 snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0x6d5c7b3b snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0x6e5637ff snd_pcm_lib_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x7749cc3b snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0x77d09d25 snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x7a2ff97f snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0x88ea4c57 _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x8a482d1c snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0x8ebf9902 snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0x8fd64d72 snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0x92b3df35 snd_pcm_hw_rule_noresample -EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0x951e769f snd_pcm_limit_hw_rates -EXPORT_SYMBOL sound/core/snd-pcm 0x9e98a27f snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL sound/core/snd-pcm 0x9fc59f27 snd_pcm_lib_write -EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL sound/core/snd-pcm 0xa986503a snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0xaa0ae7a9 snd_pcm_lib_writev -EXPORT_SYMBOL sound/core/snd-pcm 0xabe58b55 snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xade88e76 snd_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xb6dcf220 snd_pcm_suspend -EXPORT_SYMBOL sound/core/snd-pcm 0xb7196bfd snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xdfcc1919 snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xf1149703 snd_pcm_lib_read -EXPORT_SYMBOL sound/core/snd-pcm 0xfa05fe09 snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x0b60bbdf __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x13c42bf5 snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0x26243ea4 snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0x3009b601 snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x3346556b snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0x3772fec8 snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0x39972403 snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0x5ba27af9 snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0x6d0d4ab3 snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x7378d923 snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x8311eb4b snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0xb5d2480e snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd491cc6f snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0xde25434d __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe82a0e45 snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe8aed8e1 snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0xec958c77 snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xfa25bbbd snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0xfda4917f snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-timer 0x3f5d6027 snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0x4e0db4bc snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0x5312eddb snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0x5675f5a6 snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0x78966e4c snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0x7de7c5cd snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0xa34a7c81 snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0xaebd0c30 snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0xaf5a2c76 snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0xba243e95 snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0xbe5d5b65 snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0xe1b478c8 snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0xf686a5df snd_timer_pause -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc2603696 snd_mpu401_uart_new -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2f275f9e snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x32a23024 snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x53dc486a snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x59cf406d snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5bf70123 snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6c395b45 snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9a45c20a snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe147af3e snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xefb4b5c0 snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x1cb3521c snd_ak4117_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x2d53a773 snd_ak4117_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x348395c6 snd_ak4117_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x701fa880 snd_ak4117_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x7a25ba61 snd_ak4117_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xcf3c0a32 snd_ak4117_check_rate_and_errors -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x07ecf5d5 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x13c74c45 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1f7c4489 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3246b67c snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x33502a2f snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x350d42f6 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x45fe7431 snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6adeaae3 snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x75753a88 snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x86078ae9 snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x91c14196 snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa94e07ef snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb0cd365f snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb40945d8 snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xee33b248 snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf4de89e3 snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf65e95ae snd_ac97_update -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x809a9c58 tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x8d9c0e11 tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/snd-soc-core 0xf010e81a snd_soc_alloc_ac97_codec -EXPORT_SYMBOL sound/sound_firmware 0x39e3dd23 mod_firmware_load -EXPORT_SYMBOL sound/soundcore 0x264e4847 register_sound_dsp -EXPORT_SYMBOL sound/soundcore 0x6f890420 register_sound_special -EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0x9b91d64e sound_class -EXPORT_SYMBOL sound/soundcore 0xc3496f1f register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xcd0abcfd register_sound_special_device -EXPORT_SYMBOL sound/soundcore 0xde69b77b register_sound_midi -EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x2d2dad0c snd_usbmidi_create -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect -EXPORT_SYMBOL vmlinux 0x000009ff revert_creds -EXPORT_SYMBOL vmlinux 0x00122625 mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x00211ac7 blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0x002cda8b input_unregister_handler -EXPORT_SYMBOL vmlinux 0x00354c18 scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0x003f51f1 __blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x0059383b arp_xmit -EXPORT_SYMBOL vmlinux 0x007d99d9 __skb_tx_hash -EXPORT_SYMBOL vmlinux 0x008bad5b bdi_init -EXPORT_SYMBOL vmlinux 0x008ea466 register_console -EXPORT_SYMBOL vmlinux 0x0093a3d3 nf_reinject -EXPORT_SYMBOL vmlinux 0x0097fc36 kill_pgrp -EXPORT_SYMBOL vmlinux 0x00986025 buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0x00fd7cec tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve -EXPORT_SYMBOL vmlinux 0x010490eb inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0x01084f5f lease_modify -EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr -EXPORT_SYMBOL vmlinux 0x011a9e53 elf_hwcap2 -EXPORT_SYMBOL vmlinux 0x01324762 udp_del_offload -EXPORT_SYMBOL vmlinux 0x01424f59 sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x015fb1c9 param_ops_bool -EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer -EXPORT_SYMBOL vmlinux 0x0176860a bio_add_page -EXPORT_SYMBOL vmlinux 0x0186e2de smp_call_function_many -EXPORT_SYMBOL vmlinux 0x019205ae vfs_iter_read -EXPORT_SYMBOL vmlinux 0x019f7a6b jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0x01aa4a51 seq_vprintf -EXPORT_SYMBOL vmlinux 0x01c1eff8 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0x01d8000c vm_insert_page -EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check -EXPORT_SYMBOL vmlinux 0x02196324 __aeabi_idiv -EXPORT_SYMBOL vmlinux 0x02233ff1 unlock_new_inode -EXPORT_SYMBOL vmlinux 0x02295caa sk_receive_skb -EXPORT_SYMBOL vmlinux 0x023782bc input_event -EXPORT_SYMBOL vmlinux 0x0237de16 inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x025cc7e2 __dquot_transfer -EXPORT_SYMBOL vmlinux 0x025eb65a ilookup5_nowait -EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x02796e95 devm_gpiod_put -EXPORT_SYMBOL vmlinux 0x027ad3b3 mutex_unlock -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table -EXPORT_SYMBOL vmlinux 0x02b051c1 eth_gro_complete -EXPORT_SYMBOL vmlinux 0x02c1bbe2 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0x02c1ff21 of_graph_get_endpoint_by_regs -EXPORT_SYMBOL vmlinux 0x02e1d517 rtmsg_ifinfo -EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string -EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact -EXPORT_SYMBOL vmlinux 0x02ef742b percpu_counter_set -EXPORT_SYMBOL vmlinux 0x03026722 mempool_alloc -EXPORT_SYMBOL vmlinux 0x030b05cb bio_add_pc_page -EXPORT_SYMBOL vmlinux 0x03112f13 dwc_cc_if_alloc -EXPORT_SYMBOL vmlinux 0x0312607c blk_mq_start_request -EXPORT_SYMBOL vmlinux 0x03219a9c __bforget -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x034f23d0 console_stop -EXPORT_SYMBOL vmlinux 0x03533d2b netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x035f847b vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0x035fa184 __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x0361ebfe dev_set_mac_address -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x037652a6 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x038dac47 configfs_unregister_default_group -EXPORT_SYMBOL vmlinux 0x03b6998b try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x03b818a1 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0x03ba39b0 v7_flush_user_cache_all -EXPORT_SYMBOL vmlinux 0x03c31ca6 cdrom_ioctl -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x0401d113 sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x0403ccd6 tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x04126c74 set_user_nice -EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg -EXPORT_SYMBOL vmlinux 0x043d5849 devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x045539fe inet_add_protocol -EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display -EXPORT_SYMBOL vmlinux 0x04a4d2a1 devm_gpio_request_one -EXPORT_SYMBOL vmlinux 0x04a7fe04 vfs_getxattr_alloc -EXPORT_SYMBOL vmlinux 0x04afd4fb release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x04b68ed2 seq_write -EXPORT_SYMBOL vmlinux 0x04bf751f unload_nls -EXPORT_SYMBOL vmlinux 0x04cabed9 rfkill_register -EXPORT_SYMBOL vmlinux 0x04cffec6 dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0x04e737d5 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0x04eacff2 nf_unregister_hooks -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x053aab00 __bread_gfp -EXPORT_SYMBOL vmlinux 0x0548c223 sk_stream_write_space -EXPORT_SYMBOL vmlinux 0x05495f12 mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0x05981aae generic_readlink -EXPORT_SYMBOL vmlinux 0x059af0f4 ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0x05a8d12a scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0x05faae30 __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0x060ea2d6 kstrtoull -EXPORT_SYMBOL vmlinux 0x06135768 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x062bee3b tcp_parse_options -EXPORT_SYMBOL vmlinux 0x06337648 peernet2id_alloc -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x065c7184 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx -EXPORT_SYMBOL vmlinux 0x06872817 DWC_STRLEN -EXPORT_SYMBOL vmlinux 0x06d04c9f inet_frags_fini -EXPORT_SYMBOL vmlinux 0x06dacf28 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn -EXPORT_SYMBOL vmlinux 0x06ffe41c genphy_suspend -EXPORT_SYMBOL vmlinux 0x07004266 scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0x07130332 __neigh_event_send -EXPORT_SYMBOL vmlinux 0x071ba65b skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x072a8f8d __set_fiq_regs -EXPORT_SYMBOL vmlinux 0x07332494 nf_log_set -EXPORT_SYMBOL vmlinux 0x073d72e6 alloc_file -EXPORT_SYMBOL vmlinux 0x075d350e param_set_ullong -EXPORT_SYMBOL vmlinux 0x07614f59 param_get_ullong -EXPORT_SYMBOL vmlinux 0x07866c8f __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x078682e6 remap_vmalloc_range_partial -EXPORT_SYMBOL vmlinux 0x078b4065 path_put -EXPORT_SYMBOL vmlinux 0x079cfc68 netif_rx_ni -EXPORT_SYMBOL vmlinux 0x07a3d46d tcf_hash_create -EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07b03ba1 gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x07b525ca tcp_proc_register -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07cf9099 wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0x07d8499d skb_orphan_partial -EXPORT_SYMBOL vmlinux 0x07f466c7 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0x080ddce6 DWC_TIME -EXPORT_SYMBOL vmlinux 0x081f3afb complete_all -EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x0841b588 DWC_STRCMP -EXPORT_SYMBOL vmlinux 0x08535f63 down_read -EXPORT_SYMBOL vmlinux 0x0859e666 param_get_ushort -EXPORT_SYMBOL vmlinux 0x08934bd3 __scm_send -EXPORT_SYMBOL vmlinux 0x08a1039a bio_integrity_advance -EXPORT_SYMBOL vmlinux 0x08a59d40 kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0x08bad29c lookup_one_len -EXPORT_SYMBOL vmlinux 0x08cbecd3 fb_class -EXPORT_SYMBOL vmlinux 0x08da08a5 dev_addr_add -EXPORT_SYMBOL vmlinux 0x08da6844 swiotlb_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x08f0f593 cros_ec_cmd_xfer -EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key -EXPORT_SYMBOL vmlinux 0x095f2819 kmem_cache_create -EXPORT_SYMBOL vmlinux 0x09651eea kernel_setsockopt -EXPORT_SYMBOL vmlinux 0x097ec1ff _raw_write_lock_irqsave -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0x09cf1b46 proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09db19aa bdevname -EXPORT_SYMBOL vmlinux 0x0a0786de udplite_table -EXPORT_SYMBOL vmlinux 0x0a10db40 __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class -EXPORT_SYMBOL vmlinux 0x0a304a73 set_create_files_as -EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr -EXPORT_SYMBOL vmlinux 0x0a316dfd wait_on_page_bit -EXPORT_SYMBOL vmlinux 0x0a373226 crc32_le_shift -EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell -EXPORT_SYMBOL vmlinux 0x0a79421e skb_clone_sk -EXPORT_SYMBOL vmlinux 0x0a95cd37 dev_mc_sync -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0ab737cf replace_mount_options -EXPORT_SYMBOL vmlinux 0x0acb131d kill_bdev -EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0aeec3ed padata_do_parallel -EXPORT_SYMBOL vmlinux 0x0b0675e6 jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0x0b14edd0 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b2330a4 tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init -EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister -EXPORT_SYMBOL vmlinux 0x0b65d179 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b794819 bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x0b9206cf neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x0b9952cf n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0x0ba5a2fc consume_skb -EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bf20c7e dquot_initialize -EXPORT_SYMBOL vmlinux 0x0bf642c6 skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x0bfc01c4 of_get_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x0c1919df set_disk_ro -EXPORT_SYMBOL vmlinux 0x0c20b4ba backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x0c21a90d blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0x0c30ed90 __scsi_add_device -EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat -EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features -EXPORT_SYMBOL vmlinux 0x0c5e5ca4 sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0x0c7e3a40 kill_anon_super -EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x0ca54fee _test_and_set_bit -EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0x0cc756e2 fb_pan_display -EXPORT_SYMBOL vmlinux 0x0ccc05c9 vfs_llseek -EXPORT_SYMBOL vmlinux 0x0cdaa93d __blk_end_request -EXPORT_SYMBOL vmlinux 0x0cdd158d sg_alloc_table -EXPORT_SYMBOL vmlinux 0x0cdf9462 d_drop -EXPORT_SYMBOL vmlinux 0x0cecd68c of_get_min_tck -EXPORT_SYMBOL vmlinux 0x0cfefe1e percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0x0d192c82 free_buffer_head -EXPORT_SYMBOL vmlinux 0x0d29aee0 sock_no_getname -EXPORT_SYMBOL vmlinux 0x0d2f7286 make_kgid -EXPORT_SYMBOL vmlinux 0x0d3cb182 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0x0d3f57a2 _find_next_bit_le -EXPORT_SYMBOL vmlinux 0x0d402ef9 tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x0d4d7a32 _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d59767c nvm_free_rqd_ppalist -EXPORT_SYMBOL vmlinux 0x0d5b3fb4 blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d85cbce current_in_userns -EXPORT_SYMBOL vmlinux 0x0d922153 sock_no_getsockopt -EXPORT_SYMBOL vmlinux 0x0da03e27 nvm_get_blk_unlocked -EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft -EXPORT_SYMBOL vmlinux 0x0daf4427 netdev_crit -EXPORT_SYMBOL vmlinux 0x0dbb4b59 jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x0dc14a3b md_check_recovery -EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex -EXPORT_SYMBOL vmlinux 0x0dc33c7a sock_edemux -EXPORT_SYMBOL vmlinux 0x0deaf69c elv_rb_del -EXPORT_SYMBOL vmlinux 0x0e164c79 tcp_recvmsg -EXPORT_SYMBOL vmlinux 0x0e1becf4 dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0x0e29d5ae framebuffer_alloc -EXPORT_SYMBOL vmlinux 0x0e482edf blk_register_region -EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec -EXPORT_SYMBOL vmlinux 0x0e8ed164 shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0x0e9d81fb blk_get_queue -EXPORT_SYMBOL vmlinux 0x0ea07ec7 kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0x0ea15ceb tcp_destroy_cgroup -EXPORT_SYMBOL vmlinux 0x0eaf451e hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x0eb3da5b kernel_sendmsg -EXPORT_SYMBOL vmlinux 0x0ec55b49 get_tz_trend -EXPORT_SYMBOL vmlinux 0x0ecacacb dcb_getapp -EXPORT_SYMBOL vmlinux 0x0ecb9460 tty_hung_up_p -EXPORT_SYMBOL vmlinux 0x0ecbd72f blk_init_queue_node -EXPORT_SYMBOL vmlinux 0x0ed4bafb call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0x0ed5d5a0 devm_kvasprintf -EXPORT_SYMBOL vmlinux 0x0edc095b pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups -EXPORT_SYMBOL vmlinux 0x0f0649c4 tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0x0f08f3a5 sk_prot_clear_portaddr_nulls -EXPORT_SYMBOL vmlinux 0x0f1d7ac3 bprm_change_interp -EXPORT_SYMBOL vmlinux 0x0f46cf3d mount_ns -EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec -EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size -EXPORT_SYMBOL vmlinux 0x0f74edd9 __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x0f7c6216 __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0x0f84b276 genphy_config_aneg -EXPORT_SYMBOL vmlinux 0x0fa2a45e __memzero -EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fd215bd of_gpio_simple_xlate -EXPORT_SYMBOL vmlinux 0x0fd84b57 freezing_slow_path -EXPORT_SYMBOL vmlinux 0x0fe26f10 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x0ff178f6 __aeabi_idivmod -EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress -EXPORT_SYMBOL vmlinux 0x0ff3c584 blk_stop_queue -EXPORT_SYMBOL vmlinux 0x10051b7c acl_by_type -EXPORT_SYMBOL vmlinux 0x10068345 fput -EXPORT_SYMBOL vmlinux 0x10230c5a blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0x1031efc5 tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0x1056ad03 ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0x106050c8 genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0x1068a338 input_set_keycode -EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user -EXPORT_SYMBOL vmlinux 0x107c2b58 netdev_update_features -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x108bee47 ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0x10b5d2c5 nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0x10bab558 jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0x10ddfbcc of_device_is_compatible -EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x11145431 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn -EXPORT_SYMBOL vmlinux 0x1167c742 phy_start -EXPORT_SYMBOL vmlinux 0x116e7922 pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x11816151 del_random_ready_callback -EXPORT_SYMBOL vmlinux 0x11954424 path_noexec -EXPORT_SYMBOL vmlinux 0x119b50e7 elf_check_arch -EXPORT_SYMBOL vmlinux 0x119eca19 dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned -EXPORT_SYMBOL vmlinux 0x11a13e31 _kstrtol -EXPORT_SYMBOL vmlinux 0x11a7854c kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0x11c5b25f dquot_destroy -EXPORT_SYMBOL vmlinux 0x11cfbc1a lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x11f04144 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin -EXPORT_SYMBOL vmlinux 0x11fa3497 always_delete_dentry -EXPORT_SYMBOL vmlinux 0x1205c097 of_find_compatible_node -EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const -EXPORT_SYMBOL vmlinux 0x1227ea82 check_disk_change -EXPORT_SYMBOL vmlinux 0x1228e788 of_mdio_parse_addr -EXPORT_SYMBOL vmlinux 0x1234911f tcp_connect -EXPORT_SYMBOL vmlinux 0x12480719 scsi_host_put -EXPORT_SYMBOL vmlinux 0x124c038c nf_register_sockopt -EXPORT_SYMBOL vmlinux 0x1255a6fc take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x1266b39e phy_print_status -EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range -EXPORT_SYMBOL vmlinux 0x12aa8ca7 kernel_connect -EXPORT_SYMBOL vmlinux 0x12abb06a of_root -EXPORT_SYMBOL vmlinux 0x12afcbee bmap -EXPORT_SYMBOL vmlinux 0x12b80d52 mii_ethtool_gset -EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc -EXPORT_SYMBOL vmlinux 0x12e85778 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x12f35a44 nand_scan_tail -EXPORT_SYMBOL vmlinux 0x12fe08bd locks_init_lock -EXPORT_SYMBOL vmlinux 0x1313aca3 rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0x1319449d secure_modules -EXPORT_SYMBOL vmlinux 0x13225d8d padata_register_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x13279ad7 __ps2_command -EXPORT_SYMBOL vmlinux 0x132c3638 dm_kobject_release -EXPORT_SYMBOL vmlinux 0x13307fde vsscanf -EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc -EXPORT_SYMBOL vmlinux 0x133ca7e1 set_bh_page -EXPORT_SYMBOL vmlinux 0x13459160 of_translate_dma_address -EXPORT_SYMBOL vmlinux 0x1366c465 i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x13761d73 end_page_writeback -EXPORT_SYMBOL vmlinux 0x1378dbbf __skb_get_hash -EXPORT_SYMBOL vmlinux 0x137fdad7 tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x13c0f057 i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13e49d9a dquot_commit -EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation -EXPORT_SYMBOL vmlinux 0x13ffc704 xfrm4_prepare_output -EXPORT_SYMBOL vmlinux 0x14251dcb console_start -EXPORT_SYMBOL vmlinux 0x1449c156 tcp_req_err -EXPORT_SYMBOL vmlinux 0x145aa763 __dquot_free_space -EXPORT_SYMBOL vmlinux 0x14616acc ip_route_input_noref -EXPORT_SYMBOL vmlinux 0x14646a28 inet6_register_icmp_sender -EXPORT_SYMBOL vmlinux 0x147d591c mmc_erase -EXPORT_SYMBOL vmlinux 0x1495b892 dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0x14999890 DWC_MUTEX_FREE -EXPORT_SYMBOL vmlinux 0x1499d00a nand_scan_bbt -EXPORT_SYMBOL vmlinux 0x149a2235 crypto_sha512_update -EXPORT_SYMBOL vmlinux 0x14a0f2a6 add_random_ready_callback -EXPORT_SYMBOL vmlinux 0x14af7cf8 dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x14ca5d8d lock_rename -EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x14d00ab2 dev_disable_lro -EXPORT_SYMBOL vmlinux 0x14d4a9c5 _change_bit -EXPORT_SYMBOL vmlinux 0x14dbd74a send_sig -EXPORT_SYMBOL vmlinux 0x14f138ce led_update_brightness -EXPORT_SYMBOL vmlinux 0x14fec99d blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0x151b6b40 find_vma -EXPORT_SYMBOL vmlinux 0x1530f058 sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x15775140 clk_add_alias -EXPORT_SYMBOL vmlinux 0x157eb27a rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x158a5dd0 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0x159a9a9c blk_integrity_merge_bio -EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15c431b1 skb_unlink -EXPORT_SYMBOL vmlinux 0x15c64743 sock_from_file -EXPORT_SYMBOL vmlinux 0x162c69f8 tty_port_close -EXPORT_SYMBOL vmlinux 0x162ccc0c lg_local_lock -EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null -EXPORT_SYMBOL vmlinux 0x163a452a iov_iter_advance -EXPORT_SYMBOL vmlinux 0x16619ff0 md_write_end -EXPORT_SYMBOL vmlinux 0x16687b0e xfrm_input -EXPORT_SYMBOL vmlinux 0x166b29af xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x1683a50b radix_tree_delete -EXPORT_SYMBOL vmlinux 0x1690a2f2 dev_get_flags -EXPORT_SYMBOL vmlinux 0x16941629 xfrm_register_type -EXPORT_SYMBOL vmlinux 0x16a099ea submit_bh -EXPORT_SYMBOL vmlinux 0x16a2209f DWC_SPINLOCK -EXPORT_SYMBOL vmlinux 0x16c0f651 devm_ioremap -EXPORT_SYMBOL vmlinux 0x16c5f98b sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0x16de087e vm_insert_pfn -EXPORT_SYMBOL vmlinux 0x16e21f9d put_tty_driver -EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16e30d12 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0x1713b060 skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0x1715914a __generic_file_fsync -EXPORT_SYMBOL vmlinux 0x17171776 generic_file_mmap -EXPORT_SYMBOL vmlinux 0x172ec730 DWC_WORKQ_PENDING -EXPORT_SYMBOL vmlinux 0x173418fc napi_disable -EXPORT_SYMBOL vmlinux 0x173f71cf xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x174b55e1 km_query -EXPORT_SYMBOL vmlinux 0x175f974a rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0x1791249a __register_nls -EXPORT_SYMBOL vmlinux 0x17a27432 DWC_IN_IRQ -EXPORT_SYMBOL vmlinux 0x17aa01c0 memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator -EXPORT_SYMBOL vmlinux 0x17c251e2 skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken -EXPORT_SYMBOL vmlinux 0x183f8f4b mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask -EXPORT_SYMBOL vmlinux 0x18719a29 twl6040_reg_read -EXPORT_SYMBOL vmlinux 0x18732eb0 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0x1876f16e mark_page_accessed -EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc -EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x18a9e221 genphy_update_link -EXPORT_SYMBOL vmlinux 0x18ab6891 __inet_hash -EXPORT_SYMBOL vmlinux 0x18abb366 __get_user_pages -EXPORT_SYMBOL vmlinux 0x18bd76a4 _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0x18c2227f cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18f227ff DWC_UDELAY -EXPORT_SYMBOL vmlinux 0x18fdca77 neigh_event_ns -EXPORT_SYMBOL vmlinux 0x190031e6 end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0x191e8515 scsi_cmd_ioctl -EXPORT_SYMBOL vmlinux 0x1929fe5e udplite_prot -EXPORT_SYMBOL vmlinux 0x1930350e scm_fp_dup -EXPORT_SYMBOL vmlinux 0x195845d3 jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0x19610e1f cpu_all_bits -EXPORT_SYMBOL vmlinux 0x196ce67f blk_queue_invalidate_tags -EXPORT_SYMBOL vmlinux 0x19890325 __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19bb64de dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19c35994 config_item_set_name -EXPORT_SYMBOL vmlinux 0x19c5be4e kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0x19cfc734 scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0x19e22bb9 blk_requeue_request -EXPORT_SYMBOL vmlinux 0x19eb414a DWC_THREAD_RUN -EXPORT_SYMBOL vmlinux 0x19edbcc6 inet_select_addr -EXPORT_SYMBOL vmlinux 0x19f5809b dm_ratelimit_state -EXPORT_SYMBOL vmlinux 0x1a0edfd5 set_device_ro -EXPORT_SYMBOL vmlinux 0x1a10eb13 devm_ioremap_nocache -EXPORT_SYMBOL vmlinux 0x1a13dec1 simple_release_fs -EXPORT_SYMBOL vmlinux 0x1a16dcfd input_register_device -EXPORT_SYMBOL vmlinux 0x1a1884ba DWC_ATOI -EXPORT_SYMBOL vmlinux 0x1a3b4765 key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0x1a3c3f6c scsi_rescan_device -EXPORT_SYMBOL vmlinux 0x1a58a046 clk_get -EXPORT_SYMBOL vmlinux 0x1a5d931c sk_capable -EXPORT_SYMBOL vmlinux 0x1a65f4ad __arm_ioremap_pfn -EXPORT_SYMBOL vmlinux 0x1a7861ec jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0x1a7ec29b nobh_write_begin -EXPORT_SYMBOL vmlinux 0x1a7f0b3b __blk_end_request_all -EXPORT_SYMBOL vmlinux 0x1ad1f2e7 _memcpy_fromio -EXPORT_SYMBOL vmlinux 0x1ad316c6 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0x1afae5e7 down_interruptible -EXPORT_SYMBOL vmlinux 0x1afe59ca dev_uc_init -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b0c5b00 iunique -EXPORT_SYMBOL vmlinux 0x1b17e06c kstrtoll -EXPORT_SYMBOL vmlinux 0x1b265f6e tcp_md5_hash_header -EXPORT_SYMBOL vmlinux 0x1b273a67 max8998_update_reg -EXPORT_SYMBOL vmlinux 0x1b29a285 DWC_VSNPRINTF -EXPORT_SYMBOL vmlinux 0x1b39372f max8925_bulk_write -EXPORT_SYMBOL vmlinux 0x1b3fc432 __serio_register_port -EXPORT_SYMBOL vmlinux 0x1b5b6839 of_get_next_parent -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug -EXPORT_SYMBOL vmlinux 0x1b867cd8 sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x1b974488 simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x1ba38111 kernel_bind -EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer -EXPORT_SYMBOL vmlinux 0x1bc24dab mii_link_ok -EXPORT_SYMBOL vmlinux 0x1c2b084c dentry_open -EXPORT_SYMBOL vmlinux 0x1c313d13 xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x1c496154 splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0x1c581d7f irq_set_chip -EXPORT_SYMBOL vmlinux 0x1c988918 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0x1ca715bc dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0x1ca8b2a9 padata_stop -EXPORT_SYMBOL vmlinux 0x1cb6bb5e nand_unlock -EXPORT_SYMBOL vmlinux 0x1cb93914 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x1cc75c9f inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x1cd8b501 vchiq_add_service -EXPORT_SYMBOL vmlinux 0x1cdc76f4 inet_accept -EXPORT_SYMBOL vmlinux 0x1ce339ba security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0x1ce4bb4a skb_dequeue -EXPORT_SYMBOL vmlinux 0x1ce9d5e3 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0x1ce9db96 account_page_dirtied -EXPORT_SYMBOL vmlinux 0x1cfb04fa finish_wait -EXPORT_SYMBOL vmlinux 0x1cfcbb95 __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0x1d0a77da DWC_BE16_TO_CPU -EXPORT_SYMBOL vmlinux 0x1d140ae8 dcache_readdir -EXPORT_SYMBOL vmlinux 0x1d4cf44a simple_setattr -EXPORT_SYMBOL vmlinux 0x1d54f515 d_obtain_alias -EXPORT_SYMBOL vmlinux 0x1d5ed6f3 dev_addr_init -EXPORT_SYMBOL vmlinux 0x1d6d349c mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0x1d75298e ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0x1d76ac0d cdrom_media_changed -EXPORT_SYMBOL vmlinux 0x1dada295 i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0x1dadc65a DWC_WORKQ_WAIT_WORK_DONE -EXPORT_SYMBOL vmlinux 0x1daeb1c8 mii_check_link -EXPORT_SYMBOL vmlinux 0x1db7dc40 pgprot_kernel -EXPORT_SYMBOL vmlinux 0x1dbef8bc dqget -EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1deae365 nf_register_hook -EXPORT_SYMBOL vmlinux 0x1ded7211 __devm_request_region -EXPORT_SYMBOL vmlinux 0x1dee7af6 abx500_startup_irq_enabled -EXPORT_SYMBOL vmlinux 0x1dfec4fc tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0x1e047854 warn_slowpath_fmt -EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev -EXPORT_SYMBOL vmlinux 0x1e67cc71 eth_header -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e6df60e xfrm6_rcv_cb -EXPORT_SYMBOL vmlinux 0x1e739520 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0x1e952d6b fb_set_suspend -EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1ea8892a udp_lib_get_port -EXPORT_SYMBOL vmlinux 0x1eaf4619 contig_page_data -EXPORT_SYMBOL vmlinux 0x1eb35ed6 md_set_array_sectors -EXPORT_SYMBOL vmlinux 0x1ec0c35b dma_sync_wait -EXPORT_SYMBOL vmlinux 0x1edffdbd napi_gro_frags -EXPORT_SYMBOL vmlinux 0x1eeb848e __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0x1f614779 xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x1f8ae865 __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x1fa60b4c cpu_tlb -EXPORT_SYMBOL vmlinux 0x1fab5905 wait_for_completion -EXPORT_SYMBOL vmlinux 0x1fadb060 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0x1fb6a39d neigh_seq_start -EXPORT_SYMBOL vmlinux 0x1fbacd10 kfree_put_link -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag -EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x1ffcc03e devm_clk_get -EXPORT_SYMBOL vmlinux 0x1fff962e __getblk_gfp -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x201e456b nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0x20205f64 trace_print_array_seq -EXPORT_SYMBOL vmlinux 0x202240bb tty_unregister_device -EXPORT_SYMBOL vmlinux 0x2028bb27 tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x202b4253 current_fs_time -EXPORT_SYMBOL vmlinux 0x203acc9d dwc_add_observer -EXPORT_SYMBOL vmlinux 0x20421305 on_each_cpu_mask -EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool -EXPORT_SYMBOL vmlinux 0x204fb571 security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0x20501354 secpath_dup -EXPORT_SYMBOL vmlinux 0x207bc68f nvm_register -EXPORT_SYMBOL vmlinux 0x20957e53 d_make_root -EXPORT_SYMBOL vmlinux 0x209bec93 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20ae58d0 __tracepoint_fence_emit -EXPORT_SYMBOL vmlinux 0x20c1e8dc tcf_exts_validate -EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf -EXPORT_SYMBOL vmlinux 0x20daf681 may_umount -EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x20ee8d6f unlock_page -EXPORT_SYMBOL vmlinux 0x21110dbf mmioset -EXPORT_SYMBOL vmlinux 0x211331fa __divsi3 -EXPORT_SYMBOL vmlinux 0x2115ac84 phy_find_first -EXPORT_SYMBOL vmlinux 0x211b75ce ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x212a748c mfd_remove_devices -EXPORT_SYMBOL vmlinux 0x212e5ddd get_super -EXPORT_SYMBOL vmlinux 0x2167db87 nla_reserve -EXPORT_SYMBOL vmlinux 0x216b7297 generic_fillattr -EXPORT_SYMBOL vmlinux 0x216c5c2a register_shrinker -EXPORT_SYMBOL vmlinux 0x216d759a mmiocpy -EXPORT_SYMBOL vmlinux 0x216f1a94 blk_free_tags -EXPORT_SYMBOL vmlinux 0x21b071b3 cancel_dirty_page -EXPORT_SYMBOL vmlinux 0x21c3eac1 lock_sock_nested -EXPORT_SYMBOL vmlinux 0x21ca99ed cdev_init -EXPORT_SYMBOL vmlinux 0x21d9cc6c input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set -EXPORT_SYMBOL vmlinux 0x21f0bbd1 __inode_permission -EXPORT_SYMBOL vmlinux 0x21f7eb8f claim_fiq -EXPORT_SYMBOL vmlinux 0x21fe5e2f ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x222f6207 __nla_reserve -EXPORT_SYMBOL vmlinux 0x222fa684 lg_global_lock -EXPORT_SYMBOL vmlinux 0x2232a8a5 mempool_free -EXPORT_SYMBOL vmlinux 0x2256fafa div64_u64_rem -EXPORT_SYMBOL vmlinux 0x225ce285 input_unregister_device -EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits -EXPORT_SYMBOL vmlinux 0x227b7568 __page_symlink -EXPORT_SYMBOL vmlinux 0x22815e6b jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0x2289d4b5 __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0x22ab67ef phy_stop_interrupts -EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22bdf409 d_walk -EXPORT_SYMBOL vmlinux 0x22cc873c get_gendisk -EXPORT_SYMBOL vmlinux 0x22dfdd06 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x22fc4f3a trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x230475cf eth_gro_receive -EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs -EXPORT_SYMBOL vmlinux 0x235b606d md_wakeup_thread -EXPORT_SYMBOL vmlinux 0x236ae8d4 mmc_read_bkops_status -EXPORT_SYMBOL vmlinux 0x236e6724 locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0x236f1832 tty_throttle -EXPORT_SYMBOL vmlinux 0x2371b625 blk_integrity_merge_rq -EXPORT_SYMBOL vmlinux 0x23883536 mb_cache_entry_release -EXPORT_SYMBOL vmlinux 0x2394bc74 vchi_service_release -EXPORT_SYMBOL vmlinux 0x23a19bee input_register_handle -EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x23aa49d3 _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23bf403a dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress -EXPORT_SYMBOL vmlinux 0x23cd7860 scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x23e22784 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0x23e4aab2 nf_log_unregister -EXPORT_SYMBOL vmlinux 0x23e7aef9 __serio_register_driver -EXPORT_SYMBOL vmlinux 0x23e8657e tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x240b1663 of_get_ddr_timings -EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x2429e74a nf_hook_slow -EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x24634783 qdisc_list_add -EXPORT_SYMBOL vmlinux 0x246fe73f inet_sock_destruct -EXPORT_SYMBOL vmlinux 0x247d2a29 blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf -EXPORT_SYMBOL vmlinux 0x249bcde4 con_copy_unimap -EXPORT_SYMBOL vmlinux 0x249d4aff __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x24af8780 cdev_del -EXPORT_SYMBOL vmlinux 0x24b40972 dev_set_mtu -EXPORT_SYMBOL vmlinux 0x24d2a4c8 sk_ns_capable -EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function -EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x2520aec3 ilookup -EXPORT_SYMBOL vmlinux 0x252af4f4 posix_unblock_lock -EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string -EXPORT_SYMBOL vmlinux 0x2572353a DWC_READ_REG32 -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x25844381 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x2597d499 twl6040_power -EXPORT_SYMBOL vmlinux 0x25b54874 dentry_update_name_case -EXPORT_SYMBOL vmlinux 0x25b7a72d bio_split -EXPORT_SYMBOL vmlinux 0x25d4b06f scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0x25e9298a set_posix_acl -EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25fc53dc clear_nlink -EXPORT_SYMBOL vmlinux 0x2614da7f vm_event_states -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x2640c90c kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0x264c84f0 key_revoke -EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux -EXPORT_SYMBOL vmlinux 0x2681c827 __scsi_alloc_queue -EXPORT_SYMBOL vmlinux 0x2698c5e0 jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0x26a397af of_device_is_big_endian -EXPORT_SYMBOL vmlinux 0x26a8c649 jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0x26acb9ec truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0x26b4a106 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0x26bbd16b do_SAK -EXPORT_SYMBOL vmlinux 0x26c2128c lockref_mark_dead -EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min -EXPORT_SYMBOL vmlinux 0x26e96fe2 misc_register -EXPORT_SYMBOL vmlinux 0x26efe3cd ab3100_event_register -EXPORT_SYMBOL vmlinux 0x26f0b3d8 __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x271b61a5 posix_acl_fix_xattr_userns -EXPORT_SYMBOL vmlinux 0x272c3f55 napi_gro_receive -EXPORT_SYMBOL vmlinux 0x27320b05 generic_permission -EXPORT_SYMBOL vmlinux 0x27385d65 dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0x2741290f blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x274b3828 nf_log_packet -EXPORT_SYMBOL vmlinux 0x275ef902 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0x276b6615 devm_gpiod_get_index_optional -EXPORT_SYMBOL vmlinux 0x277a6ff4 eth_header_cache -EXPORT_SYMBOL vmlinux 0x277c9228 i2c_register_driver -EXPORT_SYMBOL vmlinux 0x27809ddd bio_integrity_trim -EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x2787bb45 devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0x27af2845 rtnl_unicast -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27c359aa generic_update_time -EXPORT_SYMBOL vmlinux 0x27e1a049 printk -EXPORT_SYMBOL vmlinux 0x27ea6531 kfree_skb -EXPORT_SYMBOL vmlinux 0x28118cb6 __get_user_1 -EXPORT_SYMBOL vmlinux 0x2814f25c key_task_permission -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x282af643 phys_mem_access_prot -EXPORT_SYMBOL vmlinux 0x286741db netdev_boot_setup_check -EXPORT_SYMBOL vmlinux 0x28706a45 tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0x2886b17d scsi_device_resume -EXPORT_SYMBOL vmlinux 0x28a2894a dm_put_table_device -EXPORT_SYMBOL vmlinux 0x28a2a495 mmc_stop_bkops -EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x28ae46f8 cont_write_begin -EXPORT_SYMBOL vmlinux 0x28c2c469 tty_port_close_end -EXPORT_SYMBOL vmlinux 0x28cc25db arm_copy_from_user -EXPORT_SYMBOL vmlinux 0x28d6861d __vmalloc -EXPORT_SYMBOL vmlinux 0x28f9c78c xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x29223ce4 follow_down_one -EXPORT_SYMBOL vmlinux 0x2929397a skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x2929ef29 input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0x293d6357 frontswap_register_ops -EXPORT_SYMBOL vmlinux 0x2947a79c bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0x2968b52e nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0x29933806 add_disk -EXPORT_SYMBOL vmlinux 0x29a3e2ab lwtunnel_get_encap_size -EXPORT_SYMBOL vmlinux 0x29b929b3 dev_emerg -EXPORT_SYMBOL vmlinux 0x29bacbef blk_init_tags -EXPORT_SYMBOL vmlinux 0x29cb612f ppp_input -EXPORT_SYMBOL vmlinux 0x29ce0c89 phy_connect_direct -EXPORT_SYMBOL vmlinux 0x29e1b020 ida_simple_remove -EXPORT_SYMBOL vmlinux 0x29eb28d6 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0x29f480ad find_inode_nowait -EXPORT_SYMBOL vmlinux 0x29f72fb7 iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0x2a071bf0 of_find_i2c_device_by_node -EXPORT_SYMBOL vmlinux 0x2a1647cc __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x2a2929da configfs_register_default_group -EXPORT_SYMBOL vmlinux 0x2a371fd2 tty_schedule_flip -EXPORT_SYMBOL vmlinux 0x2a3aa678 _test_and_clear_bit -EXPORT_SYMBOL vmlinux 0x2a88d620 serio_rescan -EXPORT_SYMBOL vmlinux 0x2a8dea35 blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp -EXPORT_SYMBOL vmlinux 0x2aa65b46 tty_lock -EXPORT_SYMBOL vmlinux 0x2aaa3271 input_allocate_device -EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy -EXPORT_SYMBOL vmlinux 0x2ac038ef __skb_gso_segment -EXPORT_SYMBOL vmlinux 0x2ac6193b __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat -EXPORT_SYMBOL vmlinux 0x2afa17c6 page_cache_next_hole -EXPORT_SYMBOL vmlinux 0x2b059464 nf_afinfo -EXPORT_SYMBOL vmlinux 0x2b0b77e3 vfs_rmdir -EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x2b12925d cpumask_next_and -EXPORT_SYMBOL vmlinux 0x2b2f33d5 pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0x2b3093e0 __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x2b42a86d sk_free -EXPORT_SYMBOL vmlinux 0x2b4e956e mempool_create -EXPORT_SYMBOL vmlinux 0x2b99c2d9 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x2b9b0f70 DWC_LE32_TO_CPU -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency -EXPORT_SYMBOL vmlinux 0x2baa7b6b generic_mii_ioctl -EXPORT_SYMBOL vmlinux 0x2bdd6e28 node_states -EXPORT_SYMBOL vmlinux 0x2be0f12d dql_completed -EXPORT_SYMBOL vmlinux 0x2c07440f __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x2c0a0483 from_kuid_munged -EXPORT_SYMBOL vmlinux 0x2c14c68e genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c3494ba max8925_reg_write -EXPORT_SYMBOL vmlinux 0x2c358cd9 tc_classify -EXPORT_SYMBOL vmlinux 0x2c3a296f dmam_free_noncoherent -EXPORT_SYMBOL vmlinux 0x2c57a497 mmc_cleanup_queue -EXPORT_SYMBOL vmlinux 0x2c5cf0eb copy_to_iter -EXPORT_SYMBOL vmlinux 0x2c71c41d do_splice_from -EXPORT_SYMBOL vmlinux 0x2c7b4845 scsi_register_driver -EXPORT_SYMBOL vmlinux 0x2c81ec75 __irq_regs -EXPORT_SYMBOL vmlinux 0x2c988955 prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x2c9b6258 genphy_read_status -EXPORT_SYMBOL vmlinux 0x2caa7963 skb_trim -EXPORT_SYMBOL vmlinux 0x2cbd40a8 usbnet_device_suggests_idle -EXPORT_SYMBOL vmlinux 0x2cbe2fb4 phy_read_mmd_indirect -EXPORT_SYMBOL vmlinux 0x2cc6f1ec kill_block_super -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d18d7cc touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x2d1e26aa blk_queue_io_min -EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -EXPORT_SYMBOL vmlinux 0x2d307e26 thermal_cdev_update -EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d53cd12 free_netdev -EXPORT_SYMBOL vmlinux 0x2d625595 xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0x2d6507b5 _find_next_zero_bit_le -EXPORT_SYMBOL vmlinux 0x2d7c3e75 page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x2d7f50dc ata_link_printk -EXPORT_SYMBOL vmlinux 0x2d9fc2f4 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x2db72c94 fsnotify_init_mark -EXPORT_SYMBOL vmlinux 0x2dbdf28d d_set_d_op -EXPORT_SYMBOL vmlinux 0x2dcbf30b param_set_ulong -EXPORT_SYMBOL vmlinux 0x2dd37606 simple_dir_operations -EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink -EXPORT_SYMBOL vmlinux 0x2df659f2 devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0x2df84c6d mem_map -EXPORT_SYMBOL vmlinux 0x2e092db5 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put -EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies -EXPORT_SYMBOL vmlinux 0x2e2dc3aa __tracepoint_fence_annotate_wait_on -EXPORT_SYMBOL vmlinux 0x2e314ab5 devfreq_resume_device -EXPORT_SYMBOL vmlinux 0x2e3eba83 devfreq_interval_update -EXPORT_SYMBOL vmlinux 0x2e4d75f5 remap_pfn_range -EXPORT_SYMBOL vmlinux 0x2e515f71 fsnotify_get_group -EXPORT_SYMBOL vmlinux 0x2e530ced km_new_mapping -EXPORT_SYMBOL vmlinux 0x2e5810c6 __aeabi_unwind_cpp_pr1 -EXPORT_SYMBOL vmlinux 0x2e5c884a release_pages -EXPORT_SYMBOL vmlinux 0x2e651616 swiotlb_free_coherent -EXPORT_SYMBOL vmlinux 0x2e88bde5 i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0x2e8b52bc blk_queue_end_tag -EXPORT_SYMBOL vmlinux 0x2e8e59dc block_commit_write -EXPORT_SYMBOL vmlinux 0x2ea093c0 blk_start_request -EXPORT_SYMBOL vmlinux 0x2ea704e1 twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0x2eac4b43 d_add_ci -EXPORT_SYMBOL vmlinux 0x2ebf04eb devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x2ecd441b fence_free -EXPORT_SYMBOL vmlinux 0x2ef0f13a sock_no_ioctl -EXPORT_SYMBOL vmlinux 0x2ef16794 unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f2ec747 devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0x2f33436a get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag -EXPORT_SYMBOL vmlinux 0x2f54f5e0 amba_driver_unregister -EXPORT_SYMBOL vmlinux 0x2f5f2a57 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0x2f7fa06d ___pskb_trim -EXPORT_SYMBOL vmlinux 0x2f86cad5 kill_pid -EXPORT_SYMBOL vmlinux 0x2f97749b kobject_put -EXPORT_SYMBOL vmlinux 0x2fa399ab param_set_uint -EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fc4bf9a put_io_context -EXPORT_SYMBOL vmlinux 0x2fd5e193 vfs_getattr -EXPORT_SYMBOL vmlinux 0x2fd8aaf0 skb_find_text -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2fe9e8e9 empty_zero_page -EXPORT_SYMBOL vmlinux 0x2ff0be3d ip6_frag_match -EXPORT_SYMBOL vmlinux 0x30011dc0 __alloc_skb -EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0x303cc9ac bio_init -EXPORT_SYMBOL vmlinux 0x304213c5 mii_check_gmii_support -EXPORT_SYMBOL vmlinux 0x304bd0e4 dev_add_offload -EXPORT_SYMBOL vmlinux 0x304c6845 scsi_execute_req_flags -EXPORT_SYMBOL vmlinux 0x30524138 __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x3071e06f phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0x3071f4be sock_no_socketpair -EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable -EXPORT_SYMBOL vmlinux 0x308e4c02 sockfd_lookup -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x3098319b locks_copy_conflock -EXPORT_SYMBOL vmlinux 0x309beb24 simple_empty -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30a9e9ef phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0x30bdad8e sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x30d12579 noop_qdisc -EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0x30f0aa4d md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0x30fd6c32 inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x310917fe sort -EXPORT_SYMBOL vmlinux 0x3132ee65 __nand_calculate_ecc -EXPORT_SYMBOL vmlinux 0x31380354 getrawmonotonic64 -EXPORT_SYMBOL vmlinux 0x313ab4ea blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0x3147857d default_red -EXPORT_SYMBOL vmlinux 0x315a8e11 tty_vhangup -EXPORT_SYMBOL vmlinux 0x31609684 call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear -EXPORT_SYMBOL vmlinux 0x31760172 iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0x318ed1b0 ppp_register_channel -EXPORT_SYMBOL vmlinux 0x31b06589 neigh_seq_next -EXPORT_SYMBOL vmlinux 0x31b31f5c csum_partial_copy_nocheck -EXPORT_SYMBOL vmlinux 0x31b9195c __local_bh_disable_ip -EXPORT_SYMBOL vmlinux 0x31cf9045 get_fs_type -EXPORT_SYMBOL vmlinux 0x31d18621 tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0x320b8fc1 vm_insert_mixed -EXPORT_SYMBOL vmlinux 0x321f8c2b sk_net_capable -EXPORT_SYMBOL vmlinux 0x322fc9ab bioset_integrity_create -EXPORT_SYMBOL vmlinux 0x32439df0 mtd_concat_create -EXPORT_SYMBOL vmlinux 0x32472852 xfrm_lookup -EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src -EXPORT_SYMBOL vmlinux 0x326e1a55 generic_file_llseek -EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy -EXPORT_SYMBOL vmlinux 0x32907b91 idr_remove -EXPORT_SYMBOL vmlinux 0x3290950e devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x32a94710 posix_lock_file -EXPORT_SYMBOL vmlinux 0x32b4a4e2 __break_lease -EXPORT_SYMBOL vmlinux 0x32ba0080 simple_write_end -EXPORT_SYMBOL vmlinux 0x32baea71 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0x32ea4835 devfreq_add_device -EXPORT_SYMBOL vmlinux 0x3310519b d_obtain_root -EXPORT_SYMBOL vmlinux 0x3316845e idr_get_next -EXPORT_SYMBOL vmlinux 0x3317ac58 vchiq_initialise -EXPORT_SYMBOL vmlinux 0x331a521a generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x331dd62b d_find_alias -EXPORT_SYMBOL vmlinux 0x3331efe6 request_firmware -EXPORT_SYMBOL vmlinux 0x3335ec6c tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x3360cc7f generic_listxattr -EXPORT_SYMBOL vmlinux 0x3386d35f dquot_enable -EXPORT_SYMBOL vmlinux 0x3391fa4e param_set_long -EXPORT_SYMBOL vmlinux 0x339667a5 dentry_needs_remove_privs -EXPORT_SYMBOL vmlinux 0x33b221f6 read_cache_page -EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x33c8e879 nand_scan -EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x33defb7f qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x33e82d80 max8998_read_reg -EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x33f5e345 blk_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x34155b83 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0x3419b0e7 jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x341dbfa3 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x344b7739 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x344ed35e of_dev_get -EXPORT_SYMBOL vmlinux 0x3457f0e2 i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0x34607284 tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin -EXPORT_SYMBOL vmlinux 0x347013de nla_validate -EXPORT_SYMBOL vmlinux 0x34738970 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x347495a2 seq_escape -EXPORT_SYMBOL vmlinux 0x3498ac03 prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34ae76f2 of_phy_connect -EXPORT_SYMBOL vmlinux 0x34bcfdc8 DWC_SPINLOCK_ALLOC -EXPORT_SYMBOL vmlinux 0x34be05df sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x34c221aa textsearch_destroy -EXPORT_SYMBOL vmlinux 0x34c34da1 tcf_exts_change -EXPORT_SYMBOL vmlinux 0x34cd27b2 ppp_input_error -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x3507a132 _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0x350f3534 swiotlb_alloc_coherent -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x35385695 nvm_unregister_mgr -EXPORT_SYMBOL vmlinux 0x353de98f cmdline_parts_parse -EXPORT_SYMBOL vmlinux 0x353e23da mark_info_dirty -EXPORT_SYMBOL vmlinux 0x353e3fa5 __get_user_4 -EXPORT_SYMBOL vmlinux 0x3545a063 migrate_page -EXPORT_SYMBOL vmlinux 0x3549796c tcp_proc_unregister -EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x3573e135 ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0x3575c6d8 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0x359544ea scsi_print_command -EXPORT_SYMBOL vmlinux 0x359e7b4c scsi_unregister -EXPORT_SYMBOL vmlinux 0x35a27411 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35c07e5e __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0x35e7c655 would_dump -EXPORT_SYMBOL vmlinux 0x35f11f51 mmc_align_data_size -EXPORT_SYMBOL vmlinux 0x35f33744 netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0x3600561e clk_register_clkdevs -EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x3612c10f tmio_core_mmc_enable -EXPORT_SYMBOL vmlinux 0x3616635f pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0x3631ad34 blkdev_fsync -EXPORT_SYMBOL vmlinux 0x3650dab3 nf_log_trace -EXPORT_SYMBOL vmlinux 0x367ba856 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x3693e468 jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0x36b85d5c config_item_init_type_name -EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc -EXPORT_SYMBOL vmlinux 0x36d452d3 dev_notice -EXPORT_SYMBOL vmlinux 0x36fdda67 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x37015c26 blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0x370953de __blk_run_queue -EXPORT_SYMBOL vmlinux 0x373db350 kstrtoint -EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x37515f67 ab3100_event_unregister -EXPORT_SYMBOL vmlinux 0x3767c1bb serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x377b8560 neigh_table_init -EXPORT_SYMBOL vmlinux 0x378dfdbf i2c_put_adapter -EXPORT_SYMBOL vmlinux 0x3792c85a sk_stream_error -EXPORT_SYMBOL vmlinux 0x3798d8b0 kernel_getpeername -EXPORT_SYMBOL vmlinux 0x379dee5f trace_print_symbols_seq_u64 -EXPORT_SYMBOL vmlinux 0x379fe8c0 xfrm_find_acq -EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37c39c80 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0x37cc7adf neigh_resolve_output -EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 -EXPORT_SYMBOL vmlinux 0x37ee6b43 unregister_mtd_chip_driver -EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x383f3861 dev_change_flags -EXPORT_SYMBOL vmlinux 0x385aaed6 phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0x387fdfcf d_set_fallthru -EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x389ecf9e __bswapdi2 -EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38ccea5b ip_setsockopt -EXPORT_SYMBOL vmlinux 0x38f6c5da __mdiobus_register -EXPORT_SYMBOL vmlinux 0x390def22 kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0x39236223 fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0x3924dd56 try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x3959b86f forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x3960ab2a lwtunnel_cmp_encap -EXPORT_SYMBOL vmlinux 0x396439c8 netlink_broadcast -EXPORT_SYMBOL vmlinux 0x396c3467 locks_free_lock -EXPORT_SYMBOL vmlinux 0x39730d06 atomic_io_modify -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x39a126af devm_iounmap -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39bb1c57 rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0x39bb34f2 clear_wb_congested -EXPORT_SYMBOL vmlinux 0x39c05b8e inet_stream_ops -EXPORT_SYMBOL vmlinux 0x39c1e1c2 tty_do_resize -EXPORT_SYMBOL vmlinux 0x39cbf18a bdi_setup_and_register -EXPORT_SYMBOL vmlinux 0x39d1a796 trace_hardirqs_on_caller -EXPORT_SYMBOL vmlinux 0x3a06f3d6 register_key_type -EXPORT_SYMBOL vmlinux 0x3a17c67b input_grab_device -EXPORT_SYMBOL vmlinux 0x3a1ac054 set_normalized_timespec64 -EXPORT_SYMBOL vmlinux 0x3a6417f3 proc_remove -EXPORT_SYMBOL vmlinux 0x3a646c0f i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0x3a850895 invalidate_partition -EXPORT_SYMBOL vmlinux 0x3a8788df __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region -EXPORT_SYMBOL vmlinux 0x3a9c9960 amba_device_unregister -EXPORT_SYMBOL vmlinux 0x3a9fb751 inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0x3aa1cfe6 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0x3abb26b0 ioremap_wc -EXPORT_SYMBOL vmlinux 0x3ac41427 phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0x3acc3d33 __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x3ae26518 inet_frag_kill -EXPORT_SYMBOL vmlinux 0x3afc50bc configfs_register_subsystem -EXPORT_SYMBOL vmlinux 0x3b0c1aec padata_set_cpumask -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b8a1172 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0x3ba01231 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0x3bb0e205 dentry_path_raw -EXPORT_SYMBOL vmlinux 0x3bbf46ea vga_base -EXPORT_SYMBOL vmlinux 0x3be909b0 devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0x3c024e70 generic_delete_inode -EXPORT_SYMBOL vmlinux 0x3c171cbc module_layout -EXPORT_SYMBOL vmlinux 0x3c1b986a bio_integrity_endio -EXPORT_SYMBOL vmlinux 0x3c326fda DWC_UTF8_TO_UTF16LE -EXPORT_SYMBOL vmlinux 0x3c3b8bb9 put_disk -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c3fefcf save_mount_options -EXPORT_SYMBOL vmlinux 0x3c53d20d sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x3c80a994 bitmap_unplug -EXPORT_SYMBOL vmlinux 0x3c8d2e04 __breadahead -EXPORT_SYMBOL vmlinux 0x3ca10e8f blk_mq_delay_queue -EXPORT_SYMBOL vmlinux 0x3ca15689 pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x3ca7dbcc vchi_connect -EXPORT_SYMBOL vmlinux 0x3cdf2ba7 udp_ioctl -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3ce82456 eth_validate_addr -EXPORT_SYMBOL vmlinux 0x3cfa969a proc_douintvec -EXPORT_SYMBOL vmlinux 0x3cfbbcb0 dquot_get_state -EXPORT_SYMBOL vmlinux 0x3d0243f3 revalidate_disk -EXPORT_SYMBOL vmlinux 0x3d03f845 bio_integrity_enabled -EXPORT_SYMBOL vmlinux 0x3d07480a scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x3d301e8f vfs_create -EXPORT_SYMBOL vmlinux 0x3d30409d iommu_tbl_range_free -EXPORT_SYMBOL vmlinux 0x3d3c540f elf_hwcap -EXPORT_SYMBOL vmlinux 0x3d4dd7c9 set_wb_congested -EXPORT_SYMBOL vmlinux 0x3d511d1a ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x3d80331a jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0x3d850622 netdev_warn -EXPORT_SYMBOL vmlinux 0x3d9f8408 seq_putc -EXPORT_SYMBOL vmlinux 0x3dcb0a98 nf_getsockopt -EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3dcdc5d4 kill_litter_super -EXPORT_SYMBOL vmlinux 0x3ddab4b8 dma_release_declared_memory -EXPORT_SYMBOL vmlinux 0x3df5bd3c bdi_destroy -EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e002963 i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0x3e0edb09 ps2_drain -EXPORT_SYMBOL vmlinux 0x3e11f060 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0x3e1e8e7a nobh_truncate_page -EXPORT_SYMBOL vmlinux 0x3e1f43db md_flush_request -EXPORT_SYMBOL vmlinux 0x3e3bdc49 skb_vlan_push -EXPORT_SYMBOL vmlinux 0x3e516ac4 mount_nodev -EXPORT_SYMBOL vmlinux 0x3e56a7d5 kmem_cache_size -EXPORT_SYMBOL vmlinux 0x3e61288c follow_up -EXPORT_SYMBOL vmlinux 0x3e754148 param_ops_charp -EXPORT_SYMBOL vmlinux 0x3e884f4b vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0x3ecfc06c nvm_addr_to_generic_mode -EXPORT_SYMBOL vmlinux 0x3edf4ee5 scsi_device_set_state -EXPORT_SYMBOL vmlinux 0x3ef7c170 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x3f11c680 __kernel_write -EXPORT_SYMBOL vmlinux 0x3f1c15bf __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0x3f220d88 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x3f27cb1f dquot_operations -EXPORT_SYMBOL vmlinux 0x3f339299 vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f57d232 ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0x3f58523a rwsem_wake -EXPORT_SYMBOL vmlinux 0x3f5b67d5 wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0x3f616ce2 queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0x3fab3ca9 register_sysctl_table -EXPORT_SYMBOL vmlinux 0x3fab6d78 kmalloc_caches -EXPORT_SYMBOL vmlinux 0x3fafab79 locks_remove_posix -EXPORT_SYMBOL vmlinux 0x3fd403ab dquot_drop -EXPORT_SYMBOL vmlinux 0x3fe5d137 nobh_writepage -EXPORT_SYMBOL vmlinux 0x40041eb2 get_super_thawed -EXPORT_SYMBOL vmlinux 0x4021bdf4 xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0x4023aac1 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x402b8281 __request_module -EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev -EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump -EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds -EXPORT_SYMBOL vmlinux 0x407075f6 nvm_submit_ppa -EXPORT_SYMBOL vmlinux 0x407136b1 __put_user_8 -EXPORT_SYMBOL vmlinux 0x4080315f gen_pool_add_virt -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x40a2d1dd dm_table_get_size -EXPORT_SYMBOL vmlinux 0x40a351a1 jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0x40a4d9a9 netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40ad3abc neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0x40c3f909 __nla_put -EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40c90957 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40ed524a _raw_read_lock_irq -EXPORT_SYMBOL vmlinux 0x40eea09a keyring_clear -EXPORT_SYMBOL vmlinux 0x40f07981 __ashldi3 -EXPORT_SYMBOL vmlinux 0x40f5982f __find_get_block -EXPORT_SYMBOL vmlinux 0x40f9ff5e __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x410cd08f path_get -EXPORT_SYMBOL vmlinux 0x412c31d7 mmc_register_driver -EXPORT_SYMBOL vmlinux 0x41460535 nvm_end_io -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x4164b6a8 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0x4176193e scsi_register_interface -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x41951889 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x41a92574 blk_rq_set_block_pc -EXPORT_SYMBOL vmlinux 0x41cb28a1 follow_pfn -EXPORT_SYMBOL vmlinux 0x41d84532 ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0x41e20e43 inet_listen -EXPORT_SYMBOL vmlinux 0x41f45300 file_remove_privs -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x4234da4f tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0x423d81ed ida_pre_get -EXPORT_SYMBOL vmlinux 0x42476e69 blk_queue_prep_rq -EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x42594e6b cdc_parse_cdc_header -EXPORT_SYMBOL vmlinux 0x4285837c skb_split -EXPORT_SYMBOL vmlinux 0x4298b775 v7_flush_kern_cache_all -EXPORT_SYMBOL vmlinux 0x4299d13e proto_register -EXPORT_SYMBOL vmlinux 0x429be6d3 remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x42bc3bba scsi_target_resume -EXPORT_SYMBOL vmlinux 0x42cf03ca __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x42ecda4c i2c_master_recv -EXPORT_SYMBOL vmlinux 0x42ed01f9 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x4307e249 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0x431dd4c4 fbcon_set_tileops -EXPORT_SYMBOL vmlinux 0x434dd734 qdisc_destroy -EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x4356d501 iov_iter_kvec -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x43863219 param_array_ops -EXPORT_SYMBOL vmlinux 0x4392adc5 account_page_redirty -EXPORT_SYMBOL vmlinux 0x439c6961 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x439cd217 commit_creds -EXPORT_SYMBOL vmlinux 0x43bbd735 __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0x43cf7544 cdev_add -EXPORT_SYMBOL vmlinux 0x43de4686 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x4408ad16 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed -EXPORT_SYMBOL vmlinux 0x44132834 mmc_can_trim -EXPORT_SYMBOL vmlinux 0x4420d3aa have_submounts -EXPORT_SYMBOL vmlinux 0x442495c9 tmio_core_mmc_resume -EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0x444a0605 blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0x44553d48 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x44643b93 __aeabi_lmul -EXPORT_SYMBOL vmlinux 0x44875211 skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0x44893abc kernel_accept -EXPORT_SYMBOL vmlinux 0x4491efae __f_setown -EXPORT_SYMBOL vmlinux 0x4498378b sk_mc_loop -EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x44b6cca2 dev_get_iflink -EXPORT_SYMBOL vmlinux 0x44da5d0f __csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0x44dd3d8d completion_done -EXPORT_SYMBOL vmlinux 0x44e4c065 vchi_held_msg_release -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x4518abeb abx500_event_registers_startup_state_get -EXPORT_SYMBOL vmlinux 0x4522b43f blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0x45338ccb dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0x4535065a dev_addr_del -EXPORT_SYMBOL vmlinux 0x45459a72 mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0x455b42af tcp_close -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x457df12f __frontswap_store -EXPORT_SYMBOL vmlinux 0x45809403 inet_del_protocol -EXPORT_SYMBOL vmlinux 0x45818546 iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0x45a0014d amba_release_regions -EXPORT_SYMBOL vmlinux 0x45bda0d5 system_serial_low -EXPORT_SYMBOL vmlinux 0x45c4104e unregister_cdrom -EXPORT_SYMBOL vmlinux 0x45e20d97 tty_free_termios -EXPORT_SYMBOL vmlinux 0x45ff257e tcf_unregister_action -EXPORT_SYMBOL vmlinux 0x46153742 tcf_hash_insert -EXPORT_SYMBOL vmlinux 0x4616f4ba DWC_CPU_TO_LE32 -EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy -EXPORT_SYMBOL vmlinux 0x464a4445 dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x464b6d38 dmam_release_declared_memory -EXPORT_SYMBOL vmlinux 0x4653b3a0 mfd_add_devices -EXPORT_SYMBOL vmlinux 0x465757c3 cpu_present_mask -EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0x46628a16 sock_no_connect -EXPORT_SYMBOL vmlinux 0x4674487b con_is_bound -EXPORT_SYMBOL vmlinux 0x468cf1ea led_blink_set_oneshot -EXPORT_SYMBOL vmlinux 0x469ef81c bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x46ab5824 proc_set_size -EXPORT_SYMBOL vmlinux 0x46b829c2 vfs_setpos -EXPORT_SYMBOL vmlinux 0x46d38e31 DWC_SNPRINTF -EXPORT_SYMBOL vmlinux 0x46d3b28c __div0 -EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg -EXPORT_SYMBOL vmlinux 0x4702f9ee processor -EXPORT_SYMBOL vmlinux 0x4722b21d netdev_info -EXPORT_SYMBOL vmlinux 0x47388031 md_write_start -EXPORT_SYMBOL vmlinux 0x473afa1e tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x47437b77 genl_notify -EXPORT_SYMBOL vmlinux 0x475b6fa0 xfrm4_rcv_cb -EXPORT_SYMBOL vmlinux 0x47846e85 set_security_override -EXPORT_SYMBOL vmlinux 0x478782d0 simple_pin_fs -EXPORT_SYMBOL vmlinux 0x47921da2 padata_set_cpumasks -EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x47a6088d inet6_release -EXPORT_SYMBOL vmlinux 0x47acf829 gen_pool_alloc -EXPORT_SYMBOL vmlinux 0x47bc0f14 __cleancache_get_page -EXPORT_SYMBOL vmlinux 0x47d2bff9 user_path_create -EXPORT_SYMBOL vmlinux 0x47d77a8a posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0x47e2f1c4 cad_pid -EXPORT_SYMBOL vmlinux 0x47e70229 v7_flush_user_cache_range -EXPORT_SYMBOL vmlinux 0x47e971ab elevator_init -EXPORT_SYMBOL vmlinux 0x47f757de elf_platform -EXPORT_SYMBOL vmlinux 0x4814e0b2 blk_integrity_compare -EXPORT_SYMBOL vmlinux 0x481ce6ce cpu_active_mask -EXPORT_SYMBOL vmlinux 0x48244456 vchi_service_close -EXPORT_SYMBOL vmlinux 0x48299d92 of_graph_get_remote_port -EXPORT_SYMBOL vmlinux 0x483ba627 dm_io -EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days -EXPORT_SYMBOL vmlinux 0x4879bf92 dev_addr_flush -EXPORT_SYMBOL vmlinux 0x48861f89 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x48a5b067 __machine_arch_type -EXPORT_SYMBOL vmlinux 0x48ba1c12 phy_attach -EXPORT_SYMBOL vmlinux 0x48f3556b xfrm_garbage_collect -EXPORT_SYMBOL vmlinux 0x49035e28 get_io_context -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x490d4346 scsi_register -EXPORT_SYMBOL vmlinux 0x493a81f1 jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x49401a8f cdrom_release -EXPORT_SYMBOL vmlinux 0x4943f053 netdev_state_change -EXPORT_SYMBOL vmlinux 0x4944ece4 inet6_bind -EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init -EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data -EXPORT_SYMBOL vmlinux 0x496c2ce8 vfs_fsync_range -EXPORT_SYMBOL vmlinux 0x496cc216 inet_frag_find -EXPORT_SYMBOL vmlinux 0x498c8b6d __put_cred -EXPORT_SYMBOL vmlinux 0x498d4899 inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x499cb58c prepare_to_wait -EXPORT_SYMBOL vmlinux 0x49af658c grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x49bf9c04 tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0x49c56ae3 bio_integrity_prep -EXPORT_SYMBOL vmlinux 0x49c74200 blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0x49e7d752 netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x49ebacbd _clear_bit -EXPORT_SYMBOL vmlinux 0x49f2c6fa mmc_can_erase -EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many -EXPORT_SYMBOL vmlinux 0x4a1d5a89 phy_ethtool_sset -EXPORT_SYMBOL vmlinux 0x4a229ad8 mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0x4a4fb1f4 pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x4a57b339 wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x4a595cad blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk -EXPORT_SYMBOL vmlinux 0x4ac48d11 blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0x4ae9c07e elv_rb_add -EXPORT_SYMBOL vmlinux 0x4af108d8 blk_finish_request -EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize -EXPORT_SYMBOL vmlinux 0x4b1c97a5 __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0x4b50e993 inet_shutdown -EXPORT_SYMBOL vmlinux 0x4b5366cf down_killable -EXPORT_SYMBOL vmlinux 0x4b5837ab update_devfreq -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b8aefdb rwsem_down_write_failed -EXPORT_SYMBOL vmlinux 0x4ba3ec42 skb_push -EXPORT_SYMBOL vmlinux 0x4bb0778e vm_stat -EXPORT_SYMBOL vmlinux 0x4bbae87a fsnotify_destroy_mark -EXPORT_SYMBOL vmlinux 0x4bbb2a73 generic_pipe_buf_steal -EXPORT_SYMBOL vmlinux 0x4bce0f36 gen_pool_create -EXPORT_SYMBOL vmlinux 0x4bcf03a4 radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x4be58ae6 free_page_put_link -EXPORT_SYMBOL vmlinux 0x4be7fb63 up -EXPORT_SYMBOL vmlinux 0x4be85a03 memweight -EXPORT_SYMBOL vmlinux 0x4bf57e8b nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0x4bfae8b6 input_set_capability -EXPORT_SYMBOL vmlinux 0x4c19aa08 dwc_cc_match_chid -EXPORT_SYMBOL vmlinux 0x4c21b701 load_nls_default -EXPORT_SYMBOL vmlinux 0x4c233a44 _raw_read_unlock_bh -EXPORT_SYMBOL vmlinux 0x4c29dcbf cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr -EXPORT_SYMBOL vmlinux 0x4c2cf6f2 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf -EXPORT_SYMBOL vmlinux 0x4c4c4aba crypto_sha256_update -EXPORT_SYMBOL vmlinux 0x4c591bb0 sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x4c5fc58c _raw_read_lock_bh -EXPORT_SYMBOL vmlinux 0x4c86184b remove_wait_queue -EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval -EXPORT_SYMBOL vmlinux 0x4cf65c21 sock_update_memcg -EXPORT_SYMBOL vmlinux 0x4cfa5ab5 mmc_detect_change -EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page -EXPORT_SYMBOL vmlinux 0x4d37d95a skb_queue_tail -EXPORT_SYMBOL vmlinux 0x4d3ac3b6 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask -EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated -EXPORT_SYMBOL vmlinux 0x4d548a64 phy_resume -EXPORT_SYMBOL vmlinux 0x4d5ee3bd setup_arg_pages -EXPORT_SYMBOL vmlinux 0x4d6bbf51 __splice_from_pipe -EXPORT_SYMBOL vmlinux 0x4d8c82af block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4dc5309e module_put -EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x4debdfa7 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0x4dec6038 memscan -EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse -EXPORT_SYMBOL vmlinux 0x4dfad8c2 skb_make_writable -EXPORT_SYMBOL vmlinux 0x4e0de1f1 scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0x4e1a78de sock_kmalloc -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e38a563 __skb_get_hash_flowi4 -EXPORT_SYMBOL vmlinux 0x4e39ec6a dev_mc_init -EXPORT_SYMBOL vmlinux 0x4e3f81cf input_close_device -EXPORT_SYMBOL vmlinux 0x4e4d8b2e xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0x4e538364 blk_queue_unprep_rq -EXPORT_SYMBOL vmlinux 0x4e64007c ip6_xmit -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e7d802a zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x4e8cdd63 config_group_find_item -EXPORT_SYMBOL vmlinux 0x4e9a9f81 vchi_bulk_queue_receive -EXPORT_SYMBOL vmlinux 0x4ea400df __get_page_tail -EXPORT_SYMBOL vmlinux 0x4ea6c829 phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0x4eb50d7a __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x4ec21e1c DWC_WAITQ_ABORT -EXPORT_SYMBOL vmlinux 0x4efc0237 elevator_exit -EXPORT_SYMBOL vmlinux 0x4f13577b crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0x4f15b972 dwc_cc_remove -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f21fa56 block_truncate_page -EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f3908e6 phy_stop -EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse -EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command -EXPORT_SYMBOL vmlinux 0x4f5c48c9 rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x4f6041ef dns_query -EXPORT_SYMBOL vmlinux 0x4f6268f6 find_lock_entry -EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday -EXPORT_SYMBOL vmlinux 0x4f6d2ebb fget -EXPORT_SYMBOL vmlinux 0x4f78cfbe bitmap_endwrite -EXPORT_SYMBOL vmlinux 0x4f947a70 __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0x4fd950ed dma_contiguous_default_area -EXPORT_SYMBOL vmlinux 0x4fd9706e devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0x4fea8d80 dwc_cc_cdid -EXPORT_SYMBOL vmlinux 0x4ff48155 tcf_em_register -EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security -EXPORT_SYMBOL vmlinux 0x500d913e xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x5019992f ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0x502288e7 sk_wait_data -EXPORT_SYMBOL vmlinux 0x5048d8f3 rtnl_create_link -EXPORT_SYMBOL vmlinux 0x504b14d4 truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0x5050e838 __sb_end_write -EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x5070c43b of_node_put -EXPORT_SYMBOL vmlinux 0x5079d1d4 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0x507eab6a write_one_page -EXPORT_SYMBOL vmlinux 0x509817cf vprintk_emit -EXPORT_SYMBOL vmlinux 0x50aa5f3a udp_proc_register -EXPORT_SYMBOL vmlinux 0x50b3359a nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x50b66bcb radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x50f2c522 uart_resume_port -EXPORT_SYMBOL vmlinux 0x50f97ea3 __frontswap_load -EXPORT_SYMBOL vmlinux 0x511746c1 dump_fpu -EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0x5142aa38 bio_endio -EXPORT_SYMBOL vmlinux 0x514b9dda pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0x515089b3 __i2c_transfer -EXPORT_SYMBOL vmlinux 0x516e5130 lease_get_mtime -EXPORT_SYMBOL vmlinux 0x5177234a padata_unregister_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x517a26f6 mmc_add_host -EXPORT_SYMBOL vmlinux 0x5185d623 get_phy_device -EXPORT_SYMBOL vmlinux 0x518b7515 qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0x519415c8 DWC_TASK_ALLOC -EXPORT_SYMBOL vmlinux 0x51b12732 empty_aops -EXPORT_SYMBOL vmlinux 0x51bbcab1 mpage_readpage -EXPORT_SYMBOL vmlinux 0x51c1598a md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0x51c3da5e dwc_remove_observer -EXPORT_SYMBOL vmlinux 0x51cd3e2b of_get_mac_address -EXPORT_SYMBOL vmlinux 0x51d559d1 _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid -EXPORT_SYMBOL vmlinux 0x51e9de1c inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup -EXPORT_SYMBOL vmlinux 0x51fa2384 vfs_write -EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str -EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0x522e5688 security_path_link -EXPORT_SYMBOL vmlinux 0x524c6016 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x5259b69f arp_tbl -EXPORT_SYMBOL vmlinux 0x5275d2ae input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x527a8cfc mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x528d0c14 idr_init -EXPORT_SYMBOL vmlinux 0x52999c2b simple_rename -EXPORT_SYMBOL vmlinux 0x52ab19ae km_is_alive -EXPORT_SYMBOL vmlinux 0x52af562a __crc32c_le -EXPORT_SYMBOL vmlinux 0x52b503d3 netif_wake_subqueue -EXPORT_SYMBOL vmlinux 0x52bb841c atomic_io_modify_relaxed -EXPORT_SYMBOL vmlinux 0x52be80e2 xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x52efd766 __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0x52f82a97 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x52fcc354 sync_blockdev -EXPORT_SYMBOL vmlinux 0x5306d03c param_get_short -EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x531d3c99 pskb_expand_head -EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x53789972 generic_removexattr -EXPORT_SYMBOL vmlinux 0x53856b1c request_key_async -EXPORT_SYMBOL vmlinux 0x53871833 rtnl_notify -EXPORT_SYMBOL vmlinux 0x539c4e3d tty_set_operations -EXPORT_SYMBOL vmlinux 0x53b81489 devm_gpiod_get_index -EXPORT_SYMBOL vmlinux 0x53c95a5a phy_device_remove -EXPORT_SYMBOL vmlinux 0x53d3bc34 udp6_csum_init -EXPORT_SYMBOL vmlinux 0x53e0ceb8 dma_async_device_register -EXPORT_SYMBOL vmlinux 0x53e4594e proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x543afb8e inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x543c36df mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x544dc565 mount_bdev -EXPORT_SYMBOL vmlinux 0x5456d0b5 __DWC_DMA_FREE -EXPORT_SYMBOL vmlinux 0x546dccca block_invalidatepage -EXPORT_SYMBOL vmlinux 0x547077ec __wake_up_bit -EXPORT_SYMBOL vmlinux 0x54725fe2 vc_cma_size -EXPORT_SYMBOL vmlinux 0x549bcad0 dev_printk -EXPORT_SYMBOL vmlinux 0x549e598c mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0x54b0ff7b seq_release_private -EXPORT_SYMBOL vmlinux 0x54bdcd78 sget -EXPORT_SYMBOL vmlinux 0x54d0c81b __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x54d40573 bitmap_start_sync -EXPORT_SYMBOL vmlinux 0x54d70070 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x54d74b5f vfs_symlink -EXPORT_SYMBOL vmlinux 0x54e5b122 netdev_features_change -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54ecd9c0 md_reload_sb -EXPORT_SYMBOL vmlinux 0x54fd057c drop_super -EXPORT_SYMBOL vmlinux 0x550a4af0 pagevec_lookup -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x55228848 dentry_unhash -EXPORT_SYMBOL vmlinux 0x55284af9 tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0x55395d15 seq_read -EXPORT_SYMBOL vmlinux 0x5540843d DWC_BE32_TO_CPU -EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu -EXPORT_SYMBOL vmlinux 0x5555206e cdrom_mode_select -EXPORT_SYMBOL vmlinux 0x555626fe abx500_register_ops -EXPORT_SYMBOL vmlinux 0x5564d6a9 down_read_trylock -EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat -EXPORT_SYMBOL vmlinux 0x55697568 misc_deregister -EXPORT_SYMBOL vmlinux 0x55783d83 ps2_handle_response -EXPORT_SYMBOL vmlinux 0x558b22b6 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0x55bf9156 blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x55d53c26 i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0x55f8f9cc d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x55fd44c3 unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x562257c3 phy_driver_unregister -EXPORT_SYMBOL vmlinux 0x56257636 __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0x5635490a dcache_dir_open -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x5637d4e9 mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0x564e8b90 input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0x565a1999 blk_queue_find_tag -EXPORT_SYMBOL vmlinux 0x567f5f37 lock_fb_info -EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames -EXPORT_SYMBOL vmlinux 0x56977a01 posix_acl_valid -EXPORT_SYMBOL vmlinux 0x569ce39b md_cluster_mod -EXPORT_SYMBOL vmlinux 0x56a82704 dwc_cc_clear -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56e3fb34 fbcon_rotate_ccw -EXPORT_SYMBOL vmlinux 0x571fb585 mmc_power_save_host -EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt -EXPORT_SYMBOL vmlinux 0x5742f5a9 audit_log -EXPORT_SYMBOL vmlinux 0x57468b34 skb_copy_expand -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x577cf850 get_unmapped_area -EXPORT_SYMBOL vmlinux 0x57803078 xfrm_state_add -EXPORT_SYMBOL vmlinux 0x5796d9b4 inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0x57a4c205 blk_queue_dma_pad -EXPORT_SYMBOL vmlinux 0x57c51a6b blk_stack_limits -EXPORT_SYMBOL vmlinux 0x57c6f480 ppp_register_compressor -EXPORT_SYMBOL vmlinux 0x57d0d88a md_register_thread -EXPORT_SYMBOL vmlinux 0x57f53647 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0x58075d53 nand_bch_calculate_ecc -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x5821ca4b vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x5824116f vchi_service_create -EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x584fa4bc inet6_offloads -EXPORT_SYMBOL vmlinux 0x584fef7e jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0x58655fe1 neigh_changeaddr -EXPORT_SYMBOL vmlinux 0x586cd192 page_waitqueue -EXPORT_SYMBOL vmlinux 0x58724f0a sock_no_setsockopt -EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat -EXPORT_SYMBOL vmlinux 0x58915872 of_phy_is_fixed_link -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58d633c7 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58f5a006 __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map -EXPORT_SYMBOL vmlinux 0x594e1317 __modsi3 -EXPORT_SYMBOL vmlinux 0x594ec07e single_open -EXPORT_SYMBOL vmlinux 0x595693f8 __dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x595ff119 drop_nlink -EXPORT_SYMBOL vmlinux 0x5977a973 inode_init_once -EXPORT_SYMBOL vmlinux 0x598542b2 _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0x598cd828 udp_table -EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release -EXPORT_SYMBOL vmlinux 0x59d29dab v7_flush_kern_dcache_area -EXPORT_SYMBOL vmlinux 0x59d8223a ioport_resource -EXPORT_SYMBOL vmlinux 0x59e12f24 deactivate_locked_super -EXPORT_SYMBOL vmlinux 0x59e5070d __do_div64 -EXPORT_SYMBOL vmlinux 0x59f5657e mb_cache_shrink -EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a13f233 devm_gpiod_get_array -EXPORT_SYMBOL vmlinux 0x5a19b445 nvm_dev_dma_alloc -EXPORT_SYMBOL vmlinux 0x5a25dd79 kill_fasync -EXPORT_SYMBOL vmlinux 0x5a3fae77 elv_register_queue -EXPORT_SYMBOL vmlinux 0x5a5a94a6 kstrtou8 -EXPORT_SYMBOL vmlinux 0x5a63ffa7 nobh_write_end -EXPORT_SYMBOL vmlinux 0x5a79a594 cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0x5a9704ca serio_open -EXPORT_SYMBOL vmlinux 0x5ac15bae kstrtou16 -EXPORT_SYMBOL vmlinux 0x5ae5be44 lg_lock_init -EXPORT_SYMBOL vmlinux 0x5ae62d33 thaw_bdev -EXPORT_SYMBOL vmlinux 0x5b04be5a disable_fiq -EXPORT_SYMBOL vmlinux 0x5b0d17ec genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem -EXPORT_SYMBOL vmlinux 0x5b26ecd2 cfb_fillrect -EXPORT_SYMBOL vmlinux 0x5b2e07ca kernel_listen -EXPORT_SYMBOL vmlinux 0x5b3cc4a8 tcf_register_action -EXPORT_SYMBOL vmlinux 0x5b7d6bb2 scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x5b9684df register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x5badb46f pipe_lock -EXPORT_SYMBOL vmlinux 0x5bb6d96e dev_queue_xmit -EXPORT_SYMBOL vmlinux 0x5bd02f87 get_thermal_instance -EXPORT_SYMBOL vmlinux 0x5bf2f134 d_alloc_name -EXPORT_SYMBOL vmlinux 0x5bf4a1eb sg_last -EXPORT_SYMBOL vmlinux 0x5bfcb47b fbcon_set_rotate -EXPORT_SYMBOL vmlinux 0x5c1275a4 bioset_create_nobvec -EXPORT_SYMBOL vmlinux 0x5c429db5 generic_shutdown_super -EXPORT_SYMBOL vmlinux 0x5c515897 tty_port_destroy -EXPORT_SYMBOL vmlinux 0x5c59bc54 param_ops_long -EXPORT_SYMBOL vmlinux 0x5c685c23 param_set_bool -EXPORT_SYMBOL vmlinux 0x5c7d5de7 flush_kernel_dcache_page -EXPORT_SYMBOL vmlinux 0x5c86ae9c mfd_cell_enable -EXPORT_SYMBOL vmlinux 0x5c9284a0 processor_id -EXPORT_SYMBOL vmlinux 0x5c9398ba led_blink_set -EXPORT_SYMBOL vmlinux 0x5cccdb8b reservation_object_add_excl_fence -EXPORT_SYMBOL vmlinux 0x5cd694e5 mmc_alloc_host -EXPORT_SYMBOL vmlinux 0x5cdcf53a t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0x5ce2f112 truncate_setsize -EXPORT_SYMBOL vmlinux 0x5cf3e1f4 blk_mq_map_queue -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5d0b08cd netif_device_attach -EXPORT_SYMBOL vmlinux 0x5d160d3a devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0x5d1ee1bf __bio_clone_fast -EXPORT_SYMBOL vmlinux 0x5d264d74 bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x5d4ff853 register_netdev -EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain -EXPORT_SYMBOL vmlinux 0x5d5fa8dc gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x5d79a63d nf_unregister_hook -EXPORT_SYMBOL vmlinux 0x5d9487fe security_path_rmdir -EXPORT_SYMBOL vmlinux 0x5db6d264 bdgrab -EXPORT_SYMBOL vmlinux 0x5de2d8a5 framebuffer_release -EXPORT_SYMBOL vmlinux 0x5df1c051 DWC_TIMER_ALLOC -EXPORT_SYMBOL vmlinux 0x5df6a404 mm_vc_mem_size -EXPORT_SYMBOL vmlinux 0x5e0f0dc9 fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0x5e179aee input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0x5e28b50b serio_close -EXPORT_SYMBOL vmlinux 0x5e367d79 touch_atime -EXPORT_SYMBOL vmlinux 0x5e38d406 set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x5e61083f filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0x5e654962 phy_write_mmd_indirect -EXPORT_SYMBOL vmlinux 0x5e793b5a debugfs_create_automount -EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5ea1a7a7 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5eec76ee simple_open -EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f0d25c4 nvm_erase_ppa -EXPORT_SYMBOL vmlinux 0x5f18ddbe fs_bio_set -EXPORT_SYMBOL vmlinux 0x5f27323c _raw_write_trylock -EXPORT_SYMBOL vmlinux 0x5f383d9b write_dirty_buffer -EXPORT_SYMBOL vmlinux 0x5f3e36c4 __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x5f49ab28 devm_free_irq -EXPORT_SYMBOL vmlinux 0x5f4b0c30 remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0x5f736082 __module_get -EXPORT_SYMBOL vmlinux 0x5f754e5a memset -EXPORT_SYMBOL vmlinux 0x5f771144 tcp_poll -EXPORT_SYMBOL vmlinux 0x5f9a8e2f d_find_any_alias -EXPORT_SYMBOL vmlinux 0x5fa9e80f keyring_search -EXPORT_SYMBOL vmlinux 0x5fb06875 __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0x5fb218de mmc_fixup_device -EXPORT_SYMBOL vmlinux 0x5fb9aeca skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x5fbf658c qdisc_reset -EXPORT_SYMBOL vmlinux 0x5fd268cb radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat -EXPORT_SYMBOL vmlinux 0x5fda94fa unregister_framebuffer -EXPORT_SYMBOL vmlinux 0x5feebfdd DWC_CPU_TO_BE32 -EXPORT_SYMBOL vmlinux 0x5ff5f97b twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0x6001e342 param_get_bool -EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool -EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x600a0875 blk_peek_request -EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x60229f9e configfs_unregister_subsystem -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x60359af1 simple_nosetlease -EXPORT_SYMBOL vmlinux 0x603d610d netlink_unicast -EXPORT_SYMBOL vmlinux 0x6062681f param_set_bint -EXPORT_SYMBOL vmlinux 0x606bcc18 seq_pad -EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number -EXPORT_SYMBOL vmlinux 0x6070f8e7 genphy_soft_reset -EXPORT_SYMBOL vmlinux 0x6076f9fd audit_log_task_info -EXPORT_SYMBOL vmlinux 0x607900c9 configfs_undepend_item -EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector -EXPORT_SYMBOL vmlinux 0x6095e442 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL vmlinux 0x60b59e57 blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0x60d25b26 skb_free_datagram -EXPORT_SYMBOL vmlinux 0x60d8cf35 file_open_root -EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x60f3c3bb inode_init_always -EXPORT_SYMBOL vmlinux 0x60f720ff rwsem_downgrade_wake -EXPORT_SYMBOL vmlinux 0x60f9437a __kfree_skb -EXPORT_SYMBOL vmlinux 0x61005462 DWC_VPRINTF -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x6135d268 dst_discard_out -EXPORT_SYMBOL vmlinux 0x615ede9c sg_miter_stop -EXPORT_SYMBOL vmlinux 0x61618bdc __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0x616ddf79 mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x617a218d __cond_resched_lock -EXPORT_SYMBOL vmlinux 0x6184468a in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x6195e156 neigh_xmit -EXPORT_SYMBOL vmlinux 0x61975b7d jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0x61b3560c cmdline_parts_set -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61c2dac6 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0x61e30e05 napi_gro_flush -EXPORT_SYMBOL vmlinux 0x620162ea strscpy -EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x62177583 ata_dev_printk -EXPORT_SYMBOL vmlinux 0x6220b4a2 crc32_le -EXPORT_SYMBOL vmlinux 0x6225637e md5_transform -EXPORT_SYMBOL vmlinux 0x6227363d udp_set_csum -EXPORT_SYMBOL vmlinux 0x62288bb9 disk_stack_limits -EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x623b7d65 tcp_read_sock -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x62963943 tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0x62b5c027 dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x62f13ad1 nf_register_hooks -EXPORT_SYMBOL vmlinux 0x6311f7fb find_get_pages_contig -EXPORT_SYMBOL vmlinux 0x631f2113 udp_prot -EXPORT_SYMBOL vmlinux 0x6361d2ad register_filesystem -EXPORT_SYMBOL vmlinux 0x6365f75b netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0x636fed92 user_revoke -EXPORT_SYMBOL vmlinux 0x637a6e2a __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0x637c4580 tso_build_data -EXPORT_SYMBOL vmlinux 0x6380975c cpu_user -EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63bc5999 scsi_device_put -EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63d1fc97 DWC_LE16_TO_CPU -EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure -EXPORT_SYMBOL vmlinux 0x640bd1b3 sock_i_uid -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x642cb970 abx500_mask_and_set_register_interruptible -EXPORT_SYMBOL vmlinux 0x6435b01d seq_file_path -EXPORT_SYMBOL vmlinux 0x644a719b make_kuid -EXPORT_SYMBOL vmlinux 0x64536181 fifo_set_limit -EXPORT_SYMBOL vmlinux 0x645aa7c2 cap_mmap_file -EXPORT_SYMBOL vmlinux 0x646d61c3 __devcgroup_inode_permission -EXPORT_SYMBOL vmlinux 0x646e3078 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x648da946 zero_fill_bio -EXPORT_SYMBOL vmlinux 0x6491c964 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x64b15ddf xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x64baf227 mm_vc_mem_phys_addr -EXPORT_SYMBOL vmlinux 0x64ca5a84 amba_find_device -EXPORT_SYMBOL vmlinux 0x64fbf297 ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0x650a9487 dwc_cc_chid -EXPORT_SYMBOL vmlinux 0x6511ee81 xfrm_unregister_mode -EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth -EXPORT_SYMBOL vmlinux 0x6515a5b9 inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0x651a4139 test_taint -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x65466939 proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x658182fd mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0x65a44c45 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0x65a44e3c fsnotify_add_mark -EXPORT_SYMBOL vmlinux 0x65beb9d4 kthread_stop -EXPORT_SYMBOL vmlinux 0x65c1665e tcp_rcv_established -EXPORT_SYMBOL vmlinux 0x65c4bfe8 prepare_binprm -EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier -EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65e95d8b blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0x65ec1ada _dev_info -EXPORT_SYMBOL vmlinux 0x65f0dc01 scsi_host_alloc -EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x660c8641 d_alloc -EXPORT_SYMBOL vmlinux 0x6615a62b __netif_schedule -EXPORT_SYMBOL vmlinux 0x663addfa bio_phys_segments -EXPORT_SYMBOL vmlinux 0x666faa9b dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0x66b66a85 path_is_under -EXPORT_SYMBOL vmlinux 0x66c1c64b blk_complete_request -EXPORT_SYMBOL vmlinux 0x66c921c4 vfs_whiteout -EXPORT_SYMBOL vmlinux 0x66d6b9c2 blk_mq_all_tag_busy_iter -EXPORT_SYMBOL vmlinux 0x66f9b30f dwc_cc_match_cdid -EXPORT_SYMBOL vmlinux 0x66ffdc12 ip_check_defrag -EXPORT_SYMBOL vmlinux 0x67121ed7 security_task_getsecid -EXPORT_SYMBOL vmlinux 0x672f70d8 param_get_long -EXPORT_SYMBOL vmlinux 0x6757e0cc skb_queue_purge -EXPORT_SYMBOL vmlinux 0x676840a0 __scm_destroy -EXPORT_SYMBOL vmlinux 0x676bbc0f _set_bit -EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create -EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67c3ffe8 netpoll_cleanup -EXPORT_SYMBOL vmlinux 0x67e02294 kobject_set_name -EXPORT_SYMBOL vmlinux 0x67e22294 netif_rx -EXPORT_SYMBOL vmlinux 0x67ebd498 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0x67f07782 do_splice_direct -EXPORT_SYMBOL vmlinux 0x6800da6d flush_dcache_page -EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x680af275 backlight_force_update -EXPORT_SYMBOL vmlinux 0x6819851c blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0x681a02d9 tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0x682754b7 crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0x686108ce tso_build_hdr -EXPORT_SYMBOL vmlinux 0x686df339 vchi_initialise -EXPORT_SYMBOL vmlinux 0x687426cc bh_submit_read -EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x68869bae panic_notifier_list -EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages -EXPORT_SYMBOL vmlinux 0x68adb107 security_path_truncate -EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x68d1e62d tcf_hash_search -EXPORT_SYMBOL vmlinux 0x68d2da3b register_cdrom -EXPORT_SYMBOL vmlinux 0x68f0b7a9 __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x68fb748e bioset_integrity_free -EXPORT_SYMBOL vmlinux 0x69123e02 mpage_readpages -EXPORT_SYMBOL vmlinux 0x69163e5e devm_get_gpiod_from_child -EXPORT_SYMBOL vmlinux 0x69205a67 tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0x6932c7f3 mem_cgroup_end_page_stat -EXPORT_SYMBOL vmlinux 0x69331f9c fixed_phy_update_state -EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x697f96de of_mdio_find_bus -EXPORT_SYMBOL vmlinux 0x69a44cbd of_dev_put -EXPORT_SYMBOL vmlinux 0x69afb672 eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x69c473c5 __sk_dst_check -EXPORT_SYMBOL vmlinux 0x69e39187 inet_release -EXPORT_SYMBOL vmlinux 0x69eeaaa5 phy_suspend -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a0cbdca simple_getattr -EXPORT_SYMBOL vmlinux 0x6a51a2e1 __check_sticky -EXPORT_SYMBOL vmlinux 0x6a53ec11 input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable -EXPORT_SYMBOL vmlinux 0x6a7b2826 fbcon_rotate_ud -EXPORT_SYMBOL vmlinux 0x6a8e9c46 md_cluster_ops -EXPORT_SYMBOL vmlinux 0x6a92ac04 copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x6ab5de2e max8998_bulk_write -EXPORT_SYMBOL vmlinux 0x6ac6258e devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x6ae37ded mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6afc2e70 inet_recvmsg -EXPORT_SYMBOL vmlinux 0x6affcb71 blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x6b12b571 iov_iter_alignment -EXPORT_SYMBOL vmlinux 0x6b132a5f nf_log_unset -EXPORT_SYMBOL vmlinux 0x6b167488 sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname -EXPORT_SYMBOL vmlinux 0x6b1ef80a sock_alloc_file -EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b3106ad of_platform_bus_probe -EXPORT_SYMBOL vmlinux 0x6b6e1b51 __napi_complete -EXPORT_SYMBOL vmlinux 0x6b889407 bdev_stack_limits -EXPORT_SYMBOL vmlinux 0x6b8bcf06 file_ns_capable -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bc8fcf1 sg_miter_skip -EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x6be7aea4 netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x6c092920 may_umount_tree -EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer -EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn -EXPORT_SYMBOL vmlinux 0x6c1e8780 tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x6c26613b d_rehash -EXPORT_SYMBOL vmlinux 0x6c26ddc5 __ip_dev_find -EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat -EXPORT_SYMBOL vmlinux 0x6c594420 sock_create_kern -EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c6b6d81 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x6c6cdd4d wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min -EXPORT_SYMBOL vmlinux 0x6c73b07b in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x6c8223e0 backlight_device_register -EXPORT_SYMBOL vmlinux 0x6cb80946 bcm_dmaman_remove -EXPORT_SYMBOL vmlinux 0x6cd0747a nvm_dev_factory -EXPORT_SYMBOL vmlinux 0x6cd51950 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy -EXPORT_SYMBOL vmlinux 0x6ce71cd7 tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0x6d00b202 loop_backing_file -EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x6d1c44dd lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x6d51fb26 __DWC_ALLOC_ATOMIC -EXPORT_SYMBOL vmlinux 0x6d662533 _find_first_bit_le -EXPORT_SYMBOL vmlinux 0x6d783d2c linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x6d969ba6 filemap_fdatawait -EXPORT_SYMBOL vmlinux 0x6dccef4a jbd2_journal_load -EXPORT_SYMBOL vmlinux 0x6ddcc888 qdisc_watchdog_schedule_ns -EXPORT_SYMBOL vmlinux 0x6dea0f43 inode_add_rsv_space -EXPORT_SYMBOL vmlinux 0x6deb7441 key_reject_and_link -EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6df96721 inode_permission -EXPORT_SYMBOL vmlinux 0x6e1ac232 inet_dgram_connect -EXPORT_SYMBOL vmlinux 0x6e1b4765 pneigh_lookup -EXPORT_SYMBOL vmlinux 0x6e30a7df devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x6e3a9875 redraw_screen -EXPORT_SYMBOL vmlinux 0x6e4c4f9a devm_gpiod_get -EXPORT_SYMBOL vmlinux 0x6e4c9ed6 blk_make_request -EXPORT_SYMBOL vmlinux 0x6e54faa5 neigh_ifdown -EXPORT_SYMBOL vmlinux 0x6e6514ed radix_tree_insert -EXPORT_SYMBOL vmlinux 0x6e66ae0d redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e873578 simple_follow_link -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6e9f95ec bitmap_end_sync -EXPORT_SYMBOL vmlinux 0x6ec4891c __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x6ec4ef9e truncate_pagecache -EXPORT_SYMBOL vmlinux 0x6ec9ccdb _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0x6ed225fd dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0x6ed6684f block_read_full_page -EXPORT_SYMBOL vmlinux 0x6eef23b6 tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x6f05193d blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0x6f11d671 tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0x6f1f891c generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash -EXPORT_SYMBOL vmlinux 0x6f373ba4 of_find_property -EXPORT_SYMBOL vmlinux 0x6f3aa337 default_llseek -EXPORT_SYMBOL vmlinux 0x6f453ffc max8925_reg_read -EXPORT_SYMBOL vmlinux 0x6f5899dd skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x6f5e5096 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0x6f6c861f phy_attach_direct -EXPORT_SYMBOL vmlinux 0x6f828473 dquot_scan_active -EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x6f93fe09 of_mm_gpiochip_add -EXPORT_SYMBOL vmlinux 0x6fa35e5b mfd_cell_disable -EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag -EXPORT_SYMBOL vmlinux 0x6fc0122e noop_fsync -EXPORT_SYMBOL vmlinux 0x6fca5771 __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fdd7da1 sk_reset_timer -EXPORT_SYMBOL vmlinux 0x6fde3d6f inetdev_by_index -EXPORT_SYMBOL vmlinux 0x6ff6da4a of_find_node_by_type -EXPORT_SYMBOL vmlinux 0x70097aa0 nand_bch_free -EXPORT_SYMBOL vmlinux 0x70098677 finish_open -EXPORT_SYMBOL vmlinux 0x7009e9d0 lro_flush_all -EXPORT_SYMBOL vmlinux 0x70110813 delete_from_page_cache -EXPORT_SYMBOL vmlinux 0x703d6e08 skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq -EXPORT_SYMBOL vmlinux 0x7062b4cd cmdline_parts_free -EXPORT_SYMBOL vmlinux 0x70673ff7 of_find_net_device_by_node -EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync -EXPORT_SYMBOL vmlinux 0x707e6b50 dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x7085cb1e xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x70b8d024 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x70cfc384 d_splice_alias -EXPORT_SYMBOL vmlinux 0x70d3602f inet6_getname -EXPORT_SYMBOL vmlinux 0x70d9b211 phy_ethtool_gset -EXPORT_SYMBOL vmlinux 0x70e9cc81 get_disk -EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match -EXPORT_SYMBOL vmlinux 0x7102b23c netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0x710317d6 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0x7106abee proc_symlink -EXPORT_SYMBOL vmlinux 0x710981dc inet_csk_accept -EXPORT_SYMBOL vmlinux 0x71177a5b call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x712ed37b radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x7135a424 skb_set_owner_w -EXPORT_SYMBOL vmlinux 0x71540b01 qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0x716035af sock_get_timestampns -EXPORT_SYMBOL vmlinux 0x716cd9f2 genlmsg_put -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x718cf299 iterate_dir -EXPORT_SYMBOL vmlinux 0x7199cac8 of_find_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev -EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71bb721d register_md_personality -EXPORT_SYMBOL vmlinux 0x71c90087 memcmp -EXPORT_SYMBOL vmlinux 0x71d708e4 seq_open_private -EXPORT_SYMBOL vmlinux 0x71e763ea tcp_init_sock -EXPORT_SYMBOL vmlinux 0x71f65175 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x721b1851 skip_spaces -EXPORT_SYMBOL vmlinux 0x72350130 ___ratelimit -EXPORT_SYMBOL vmlinux 0x723ef526 fb_validate_mode -EXPORT_SYMBOL vmlinux 0x72725efb vchi_service_set_option -EXPORT_SYMBOL vmlinux 0x72777e3f neigh_lookup -EXPORT_SYMBOL vmlinux 0x729f8b1b config_item_put -EXPORT_SYMBOL vmlinux 0x72a9bd65 copy_page_from_iter -EXPORT_SYMBOL vmlinux 0x72b14cb0 remove_proc_entry -EXPORT_SYMBOL vmlinux 0x72b760f1 configfs_register_group -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x72fbcda0 bd_set_size -EXPORT_SYMBOL vmlinux 0x73003bb8 of_get_parent -EXPORT_SYMBOL vmlinux 0x7314e320 write_inode_now -EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config -EXPORT_SYMBOL vmlinux 0x7315ee6c get_cached_acl -EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf -EXPORT_SYMBOL vmlinux 0x7363cbc9 poll_freewait -EXPORT_SYMBOL vmlinux 0x73723384 scsi_execute -EXPORT_SYMBOL vmlinux 0x737b9785 of_parse_phandle -EXPORT_SYMBOL vmlinux 0x7396fc7a DWC_WAITQ_ALLOC -EXPORT_SYMBOL vmlinux 0x73a1575b __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0x73be3770 vchi_service_use -EXPORT_SYMBOL vmlinux 0x73dfcc8c cfb_copyarea -EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy -EXPORT_SYMBOL vmlinux 0x73e9bfa3 usbnet_manage_power -EXPORT_SYMBOL vmlinux 0x74068fa9 posix_test_lock -EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x74243621 irq_to_desc -EXPORT_SYMBOL vmlinux 0x7432bee1 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0x7448b935 md_finish_reshape -EXPORT_SYMBOL vmlinux 0x7450dc44 abx500_get_chip_id -EXPORT_SYMBOL vmlinux 0x7458b439 param_set_int -EXPORT_SYMBOL vmlinux 0x745b544a textsearch_prepare -EXPORT_SYMBOL vmlinux 0x745dd6a1 max8998_bulk_read -EXPORT_SYMBOL vmlinux 0x746db6f8 input_release_device -EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x74773b2e __genl_register_family -EXPORT_SYMBOL vmlinux 0x7484f6fc jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x7489cf2d sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0x74bdf750 netif_carrier_on -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74cd9a2e __elv_add_request -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74ed88b5 DWC_WORKQ_SCHEDULE -EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv -EXPORT_SYMBOL vmlinux 0x751b9d85 param_ops_invbool -EXPORT_SYMBOL vmlinux 0x752ad6df netlink_set_err -EXPORT_SYMBOL vmlinux 0x752d57e9 param_ops_uint -EXPORT_SYMBOL vmlinux 0x752d5f5b kstrtobool -EXPORT_SYMBOL vmlinux 0x753507ee netdev_notice -EXPORT_SYMBOL vmlinux 0x7550e215 devm_gpiod_put_array -EXPORT_SYMBOL vmlinux 0x7567d381 __get_fiq_regs -EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 -EXPORT_SYMBOL vmlinux 0x7597bf71 generic_file_fsync -EXPORT_SYMBOL vmlinux 0x759d5347 tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x75b5d06f kern_unmount -EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc -EXPORT_SYMBOL vmlinux 0x75c48168 generic_error_remove_page -EXPORT_SYMBOL vmlinux 0x7602635f max8925_set_bits -EXPORT_SYMBOL vmlinux 0x7604f274 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x763223f5 sock_kfree_s -EXPORT_SYMBOL vmlinux 0x763c494f get_acl -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x764f073f i2c_transfer -EXPORT_SYMBOL vmlinux 0x76598173 page_put_link -EXPORT_SYMBOL vmlinux 0x765aaad2 nla_append -EXPORT_SYMBOL vmlinux 0x765b5b0c remove_arg_zero -EXPORT_SYMBOL vmlinux 0x765fab1c dev_uc_flush -EXPORT_SYMBOL vmlinux 0x7666e8c5 kernel_param_lock -EXPORT_SYMBOL vmlinux 0x76856e00 serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0x7690dfc3 check_disk_size_change -EXPORT_SYMBOL vmlinux 0x76cf47f6 __aeabi_llsl -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint -EXPORT_SYMBOL vmlinux 0x76d9bf11 crc32_be -EXPORT_SYMBOL vmlinux 0x76decd14 elv_dispatch_add_tail -EXPORT_SYMBOL vmlinux 0x76e831ca padata_remove_cpu -EXPORT_SYMBOL vmlinux 0x76f56a1f blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0x76f6c5ef kmalloc_order -EXPORT_SYMBOL vmlinux 0x76f70e1f __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0x76f71914 devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x77095a36 inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x770cd1dd mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0x772519be gen_pool_destroy -EXPORT_SYMBOL vmlinux 0x773b83d0 crypto_sha1_update -EXPORT_SYMBOL vmlinux 0x774a98dc wake_up_process -EXPORT_SYMBOL vmlinux 0x7757f823 tty_kref_put -EXPORT_SYMBOL vmlinux 0x775c7b33 dma_supported -EXPORT_SYMBOL vmlinux 0x778bdc6e finish_no_open -EXPORT_SYMBOL vmlinux 0x779107e5 dma_common_get_sgtable -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77cf4e03 devm_memremap -EXPORT_SYMBOL vmlinux 0x77da64f5 of_device_register -EXPORT_SYMBOL vmlinux 0x77dd9afa tty_unlock -EXPORT_SYMBOL vmlinux 0x77e731fd dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0x77f412f1 key_type_keyring -EXPORT_SYMBOL vmlinux 0x77fa1a63 __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x7804d4d5 dev_change_carrier -EXPORT_SYMBOL vmlinux 0x7810a88b fence_signal_locked -EXPORT_SYMBOL vmlinux 0x782567ec memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t -EXPORT_SYMBOL vmlinux 0x7858e7d3 inet_frag_maybe_warn_overflow -EXPORT_SYMBOL vmlinux 0x78666b0e phy_get_eee_err -EXPORT_SYMBOL vmlinux 0x78776d4e pm860x_set_bits -EXPORT_SYMBOL vmlinux 0x78779c0b set_fiq_handler -EXPORT_SYMBOL vmlinux 0x78795f67 elevator_change -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x788fe103 iomem_resource -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x78a523d4 seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0x78a6739d swiotlb_unmap_sg -EXPORT_SYMBOL vmlinux 0x78a90774 eth_change_mtu -EXPORT_SYMBOL vmlinux 0x78ab6ba7 bio_clone_bioset -EXPORT_SYMBOL vmlinux 0x78adf288 __inet_stream_connect -EXPORT_SYMBOL vmlinux 0x78baf3e4 mmc_set_blockcount -EXPORT_SYMBOL vmlinux 0x78d837d9 udp6_set_csum -EXPORT_SYMBOL vmlinux 0x78d90493 proc_create_mount_point -EXPORT_SYMBOL vmlinux 0x78fced1c skb_store_bits -EXPORT_SYMBOL vmlinux 0x78fd4e80 dwc_cc_name -EXPORT_SYMBOL vmlinux 0x7912edfa sock_efree -EXPORT_SYMBOL vmlinux 0x791aa9c4 security_d_instantiate -EXPORT_SYMBOL vmlinux 0x79325ba5 sock_recvmsg -EXPORT_SYMBOL vmlinux 0x79541ae0 filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x795a047a invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0x798a0018 ata_print_version -EXPORT_SYMBOL vmlinux 0x7990f2a6 blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x7997152a blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x79a1a176 inode_change_ok -EXPORT_SYMBOL vmlinux 0x79a50a6b mpage_writepage -EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79b4afcf dev_get_by_name -EXPORT_SYMBOL vmlinux 0x79c5a9f0 ioremap -EXPORT_SYMBOL vmlinux 0x79f83e32 generic_pipe_buf_confirm -EXPORT_SYMBOL vmlinux 0x7a12940c get_task_exe_file -EXPORT_SYMBOL vmlinux 0x7a154dc6 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0x7a2152f0 f_setown -EXPORT_SYMBOL vmlinux 0x7a2a3320 input_flush_device -EXPORT_SYMBOL vmlinux 0x7a2add7d current_kernel_time64 -EXPORT_SYMBOL vmlinux 0x7a3c5c49 blk_get_request -EXPORT_SYMBOL vmlinux 0x7a4497db kzfree -EXPORT_SYMBOL vmlinux 0x7a4a547a neigh_connected_output -EXPORT_SYMBOL vmlinux 0x7a4d2b23 __free_pages -EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7aa0e5b2 sk_alloc -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7ae9d683 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x7aea68dd reservation_object_reserve_shared -EXPORT_SYMBOL vmlinux 0x7af34782 input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf -EXPORT_SYMBOL vmlinux 0x7b052e5f fb_show_logo -EXPORT_SYMBOL vmlinux 0x7b0fdb1f i2c_release_client -EXPORT_SYMBOL vmlinux 0x7b14f0d7 scsi_cmd_get_serial -EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array -EXPORT_SYMBOL vmlinux 0x7b18c8f7 blk_rq_init -EXPORT_SYMBOL vmlinux 0x7b1ade38 lz4_decompress -EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0x7b314888 __destroy_inode -EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap -EXPORT_SYMBOL vmlinux 0x7b6646f6 phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0x7b74f682 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0x7b7a7b68 scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x7ba2b323 tty_devnum -EXPORT_SYMBOL vmlinux 0x7ba78eed blk_delay_queue -EXPORT_SYMBOL vmlinux 0x7bc25efe sock_no_poll -EXPORT_SYMBOL vmlinux 0x7bde7cf5 netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0x7be89b03 scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0x7bfa354f xattr_full_name -EXPORT_SYMBOL vmlinux 0x7c1372e8 panic -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c243624 configfs_depend_item -EXPORT_SYMBOL vmlinux 0x7c289a4d nf_ct_attach -EXPORT_SYMBOL vmlinux 0x7c40ca9d fsnotify_put_group -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c4dce82 __napi_schedule -EXPORT_SYMBOL vmlinux 0x7c52c3c3 rwsem_down_read_failed -EXPORT_SYMBOL vmlinux 0x7c622a58 inet_bind -EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read -EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down -EXPORT_SYMBOL vmlinux 0x7cc035a7 __ucmpdi2 -EXPORT_SYMBOL vmlinux 0x7cc3ee4b nf_ip_checksum -EXPORT_SYMBOL vmlinux 0x7cc5d4bb dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x7cc80a72 of_device_uevent_modalias -EXPORT_SYMBOL vmlinux 0x7cce955d lock_sock_fast -EXPORT_SYMBOL vmlinux 0x7cd7d5d0 get_user_pages_locked -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7cf06025 max8925_bulk_read -EXPORT_SYMBOL vmlinux 0x7d0c4d64 dev_add_pack -EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies -EXPORT_SYMBOL vmlinux 0x7d62a503 scsi_dma_map -EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug -EXPORT_SYMBOL vmlinux 0x7d8eaac7 __frontswap_test -EXPORT_SYMBOL vmlinux 0x7d9261a9 scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0x7da32c67 netif_skb_features -EXPORT_SYMBOL vmlinux 0x7dc1fd6f kernel_sock_ioctl -EXPORT_SYMBOL vmlinux 0x7dccc294 proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0x7dd011eb pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x7dd7c9f7 md_error -EXPORT_SYMBOL vmlinux 0x7debe80d dmam_alloc_noncoherent -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7e0454bd __init_rwsem -EXPORT_SYMBOL vmlinux 0x7e056964 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0x7e1ad82b flow_cache_lookup -EXPORT_SYMBOL vmlinux 0x7e257a1d inode_dio_wait -EXPORT_SYMBOL vmlinux 0x7e2b9d99 page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x7e374060 security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0x7e3d9e4f generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x7e42f654 fbcon_set_bitops -EXPORT_SYMBOL vmlinux 0x7e43c9f4 dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x7e5f53ff vfs_fsync -EXPORT_SYMBOL vmlinux 0x7e691521 I_BDEV -EXPORT_SYMBOL vmlinux 0x7e6f8d7b open_check_o_direct -EXPORT_SYMBOL vmlinux 0x7e6fa3ef tcf_hash_new_index -EXPORT_SYMBOL vmlinux 0x7e70285d genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x7e7ac2a0 generic_file_open -EXPORT_SYMBOL vmlinux 0x7e8758f5 ipv6_select_ident -EXPORT_SYMBOL vmlinux 0x7e997bd9 flush_signals -EXPORT_SYMBOL vmlinux 0x7e9eb567 get_user_pages -EXPORT_SYMBOL vmlinux 0x7e9efe8e complete_and_exit -EXPORT_SYMBOL vmlinux 0x7ea081d9 __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x7ea6294f abx500_remove_ops -EXPORT_SYMBOL vmlinux 0x7eaa0ed2 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x7eb75464 mdiobus_free -EXPORT_SYMBOL vmlinux 0x7ebcf663 dwc_notify -EXPORT_SYMBOL vmlinux 0x7ee05995 dev_remove_pack -EXPORT_SYMBOL vmlinux 0x7ee41434 nvm_put_blk -EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x7ee73c0c memcg_socket_limit_enabled -EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f05b778 xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f30177a nlmsg_notify -EXPORT_SYMBOL vmlinux 0x7f463a5e file_update_time -EXPORT_SYMBOL vmlinux 0x7f4e2124 netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x7f51c821 inode_get_bytes -EXPORT_SYMBOL vmlinux 0x7f552747 bcm_dmaman_probe -EXPORT_SYMBOL vmlinux 0x7f5812f8 from_kgid_munged -EXPORT_SYMBOL vmlinux 0x7f629cb3 netlink_ack -EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done -EXPORT_SYMBOL vmlinux 0x7f63b31e _memcpy_toio -EXPORT_SYMBOL vmlinux 0x7f9db30c tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x7fa4dbe1 dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x7fb42f50 usbnet_link_change -EXPORT_SYMBOL vmlinux 0x7fbb6c71 skb_copy_bits -EXPORT_SYMBOL vmlinux 0x7fcdb331 vfs_statfs -EXPORT_SYMBOL vmlinux 0x7fd659ba ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x7fdd9c24 vlan_vid_del -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fe5126a mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0x7ff02c6e netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x7ffd8bd8 __pagevec_lru_add -EXPORT_SYMBOL vmlinux 0x80063ecf inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0x800e4ffa __muldi3 -EXPORT_SYMBOL vmlinux 0x804aabdf idr_is_empty -EXPORT_SYMBOL vmlinux 0x80535d44 elv_rb_find -EXPORT_SYMBOL vmlinux 0x8058e636 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x806033ac ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x80871546 rt6_lookup -EXPORT_SYMBOL vmlinux 0x80c116b6 d_path -EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80cbe871 filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80d7c68a DWC_MUTEX_LOCK -EXPORT_SYMBOL vmlinux 0x80dde96d dget_parent -EXPORT_SYMBOL vmlinux 0x80df7f97 arm_clear_user -EXPORT_SYMBOL vmlinux 0x8100dd9b dev_remove_offload -EXPORT_SYMBOL vmlinux 0x810cb466 uart_unregister_driver -EXPORT_SYMBOL vmlinux 0x81240cb7 tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0x8129846c sock_wake_async -EXPORT_SYMBOL vmlinux 0x8133b328 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x813407ce wait_for_key_construction -EXPORT_SYMBOL vmlinux 0x81364c62 xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x8140abad try_to_release_page -EXPORT_SYMBOL vmlinux 0x81414f4a blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x8160997f pagevec_lookup_tag -EXPORT_SYMBOL vmlinux 0x81622706 mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0x8164a9ee ip6_frag_init -EXPORT_SYMBOL vmlinux 0x818016b3 do_truncate -EXPORT_SYMBOL vmlinux 0x818e82f5 update_region -EXPORT_SYMBOL vmlinux 0x81a083f8 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x81aa4b82 blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0x81b3e58f mmc_can_reset -EXPORT_SYMBOL vmlinux 0x81be5332 vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0x81c564bb mmc_gpio_request_ro -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81e0f313 DWC_CPU_TO_LE16 -EXPORT_SYMBOL vmlinux 0x81e79e8f jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0x81f42562 devm_clk_put -EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill -EXPORT_SYMBOL vmlinux 0x82075f2c submit_bio -EXPORT_SYMBOL vmlinux 0x8216c652 alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0x8223032f nand_correct_data -EXPORT_SYMBOL vmlinux 0x822aee07 twl6040_set_pll -EXPORT_SYMBOL vmlinux 0x822b5a8f scsi_remove_host -EXPORT_SYMBOL vmlinux 0x823d7e96 bio_clone_fast -EXPORT_SYMBOL vmlinux 0x824454b6 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x824a4367 tmio_core_mmc_pwr -EXPORT_SYMBOL vmlinux 0x825d1d65 simple_fill_super -EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun -EXPORT_SYMBOL vmlinux 0x8274aca9 param_set_invbool -EXPORT_SYMBOL vmlinux 0x827eeb83 tty_port_close_start -EXPORT_SYMBOL vmlinux 0x827f9270 seq_hex_dump -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes -EXPORT_SYMBOL vmlinux 0x8289133a filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0x829534a7 generic_read_dir -EXPORT_SYMBOL vmlinux 0x829a6bc3 inc_nlink -EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched -EXPORT_SYMBOL vmlinux 0x82c37177 abort_creds -EXPORT_SYMBOL vmlinux 0x82c9d4ec block_write_full_page -EXPORT_SYMBOL vmlinux 0x82d404ea __seq_open_private -EXPORT_SYMBOL vmlinux 0x82d96b5e fsnotify_alloc_group -EXPORT_SYMBOL vmlinux 0x82e7d800 pipe_unlock -EXPORT_SYMBOL vmlinux 0x82e94162 __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0x82f8da90 devm_request_resource -EXPORT_SYMBOL vmlinux 0x831396c3 fence_signal -EXPORT_SYMBOL vmlinux 0x831d97f5 dev_uc_del -EXPORT_SYMBOL vmlinux 0x8320bea8 __umodsi3 -EXPORT_SYMBOL vmlinux 0x832fa791 __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x8353840a netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x8357e984 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0x8372cd2f __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x8375d79d ida_destroy -EXPORT_SYMBOL vmlinux 0x837d0f0a down_timeout -EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init -EXPORT_SYMBOL vmlinux 0x83b192ef vchi_disconnect -EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83d590eb generic_show_options -EXPORT_SYMBOL vmlinux 0x83d63c67 ps2_command -EXPORT_SYMBOL vmlinux 0x83dd4103 sock_wmalloc -EXPORT_SYMBOL vmlinux 0x83e73cf9 xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x84580ab4 down_write -EXPORT_SYMBOL vmlinux 0x846ee247 set_blocksize -EXPORT_SYMBOL vmlinux 0x849f8647 nvm_put_blk_unlocked -EXPORT_SYMBOL vmlinux 0x84a416c9 pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0x84b183ae strncmp -EXPORT_SYMBOL vmlinux 0x84c13f10 sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0x84c3bb00 stop_tty -EXPORT_SYMBOL vmlinux 0x84c9e4e4 i2c_verify_client -EXPORT_SYMBOL vmlinux 0x84e9030e sock_no_shutdown -EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload -EXPORT_SYMBOL vmlinux 0x85227976 mdiobus_scan -EXPORT_SYMBOL vmlinux 0x852611e3 devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0x8531a465 dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x854d9297 of_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x855bd3bd seq_path -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x8571ca8f tty_unthrottle -EXPORT_SYMBOL vmlinux 0x858b8a6b __scsi_print_sense -EXPORT_SYMBOL vmlinux 0x858e8609 __nlmsg_put -EXPORT_SYMBOL vmlinux 0x8590cca3 sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x8598f593 netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0x85aea3c6 swiotlb_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85d78ee4 read_cache_pages -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85f38671 input_open_device -EXPORT_SYMBOL vmlinux 0x85f3a027 blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0x8609bcde blk_run_queue_async -EXPORT_SYMBOL vmlinux 0x860ce69f param_get_string -EXPORT_SYMBOL vmlinux 0x8610b8fe scsi_init_io -EXPORT_SYMBOL vmlinux 0x86156f61 uart_add_one_port -EXPORT_SYMBOL vmlinux 0x86182550 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0x861a4fea ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0x861cc615 dev_change_proto_down -EXPORT_SYMBOL vmlinux 0x86280c1c iterate_fd -EXPORT_SYMBOL vmlinux 0x862ccda7 notify_change -EXPORT_SYMBOL vmlinux 0x86303d28 security_file_permission -EXPORT_SYMBOL vmlinux 0x863c0e42 filp_close -EXPORT_SYMBOL vmlinux 0x863cd543 neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0x8643a25a sget_userns -EXPORT_SYMBOL vmlinux 0x86469bdd padata_free -EXPORT_SYMBOL vmlinux 0x864a3e03 __generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x864bbbaf kernel_sendpage -EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x86591431 bio_map_kern -EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0x866fcb18 load_nls -EXPORT_SYMBOL vmlinux 0x8675d8de scm_detach_fds -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x86938950 key_put -EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x86a4889a kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0x86a821e7 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x86abdf8c soft_cursor -EXPORT_SYMBOL vmlinux 0x86b7b6b3 nvm_submit_io -EXPORT_SYMBOL vmlinux 0x86ba26bb tcp_init_cgroup -EXPORT_SYMBOL vmlinux 0x86bfc95b skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0x86d98bdb netpoll_send_skb_on_dev -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x87003790 fence_init -EXPORT_SYMBOL vmlinux 0x8700e15e tcp_filter -EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags -EXPORT_SYMBOL vmlinux 0x87346681 generic_writepages -EXPORT_SYMBOL vmlinux 0x876cdaa0 kmem_cache_free -EXPORT_SYMBOL vmlinux 0x877318fb d_instantiate_no_diralias -EXPORT_SYMBOL vmlinux 0x877ae520 bdi_register -EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale -EXPORT_SYMBOL vmlinux 0x878fd47e netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x87925ca6 kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0x87970f88 __getblk_slow -EXPORT_SYMBOL vmlinux 0x87a63e7f setattr_copy -EXPORT_SYMBOL vmlinux 0x87ac11d6 kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0x87ac349b scsi_host_get -EXPORT_SYMBOL vmlinux 0x87acef6b netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0x87de78a0 dwc_cc_change -EXPORT_SYMBOL vmlinux 0x87e196ad dmam_pool_create -EXPORT_SYMBOL vmlinux 0x881a15d8 generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x882a064b send_sig_info -EXPORT_SYMBOL vmlinux 0x8831b441 tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0x883c14ba twl6040_get_pll -EXPORT_SYMBOL vmlinux 0x883cbafe unregister_netdev -EXPORT_SYMBOL vmlinux 0x883d1657 i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0x883ec113 xfrm_state_update -EXPORT_SYMBOL vmlinux 0x886699b9 simple_rmdir -EXPORT_SYMBOL vmlinux 0x886bc76f mempool_resize -EXPORT_SYMBOL vmlinux 0x88745d96 blk_alloc_queue -EXPORT_SYMBOL vmlinux 0x8874b24b ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0x888016ea filp_open -EXPORT_SYMBOL vmlinux 0x889563a8 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0x88b02c7d dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0x88b19f45 system_serial -EXPORT_SYMBOL vmlinux 0x88f6a304 __DWC_FREE -EXPORT_SYMBOL vmlinux 0x89130aa7 ps2_begin_command -EXPORT_SYMBOL vmlinux 0x891bb475 mount_subtree -EXPORT_SYMBOL vmlinux 0x893d83db blk_queue_make_request -EXPORT_SYMBOL vmlinux 0x89542035 mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0x8956c047 udp_proc_unregister -EXPORT_SYMBOL vmlinux 0x8958404b vchiq_open_service -EXPORT_SYMBOL vmlinux 0x89c3f9e1 ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x89ca47bf kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x89dfc17b vfs_mknod -EXPORT_SYMBOL vmlinux 0x89ec68b1 vfs_readf -EXPORT_SYMBOL vmlinux 0x8a029d03 vfs_unlink -EXPORT_SYMBOL vmlinux 0x8a0f4230 rename_lock -EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies -EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a4fa83b __aeabi_llsr -EXPORT_SYMBOL vmlinux 0x8a503580 udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning -EXPORT_SYMBOL vmlinux 0x8a6a2445 jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0x8a755c9e cdrom_open -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a7e38e4 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8aa56a8c do_splice_to -EXPORT_SYMBOL vmlinux 0x8aa647c0 install_exec_creds -EXPORT_SYMBOL vmlinux 0x8aaea160 scsi_verify_blk_ioctl -EXPORT_SYMBOL vmlinux 0x8ab34e89 proc_create_data -EXPORT_SYMBOL vmlinux 0x8acb0112 uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0x8af547e7 of_cpufreq_power_cooling_register -EXPORT_SYMBOL vmlinux 0x8b19f9ca kern_path_create -EXPORT_SYMBOL vmlinux 0x8b1edd6e blk_end_request_all -EXPORT_SYMBOL vmlinux 0x8b21ea75 sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0x8b2d5712 security_dentry_init_security -EXPORT_SYMBOL vmlinux 0x8b359450 param_ops_int -EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x8b452a6d devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0x8b4747fc param_ops_string -EXPORT_SYMBOL vmlinux 0x8b50d36f inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b84c3a7 of_clk_get_by_name -EXPORT_SYMBOL vmlinux 0x8b87f6b4 devm_memunmap -EXPORT_SYMBOL vmlinux 0x8b8847c0 dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0x8ba266eb blk_queue_free_tags -EXPORT_SYMBOL vmlinux 0x8ba93890 tcp_release_cb -EXPORT_SYMBOL vmlinux 0x8bb978d7 address_space_init_once -EXPORT_SYMBOL vmlinux 0x8bc3e437 nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x8bd8880b page_readlink -EXPORT_SYMBOL vmlinux 0x8bf46d74 sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0x8bf93fce set_groups -EXPORT_SYMBOL vmlinux 0x8c01324e gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0x8c4f921e cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x8c52d8f4 __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x8c757779 serio_bus -EXPORT_SYMBOL vmlinux 0x8c89b6c8 generic_end_io_acct -EXPORT_SYMBOL vmlinux 0x8c9cc463 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0x8cd06d28 inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x8cd1e769 wireless_send_event -EXPORT_SYMBOL vmlinux 0x8cfcf75c nand_flash_ids -EXPORT_SYMBOL vmlinux 0x8d134c39 idr_replace -EXPORT_SYMBOL vmlinux 0x8d1a224b netif_carrier_off -EXPORT_SYMBOL vmlinux 0x8d1d4c14 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x8d2d7f47 ata_port_printk -EXPORT_SYMBOL vmlinux 0x8d3970c0 elv_add_request -EXPORT_SYMBOL vmlinux 0x8d3dc331 mmc_release_host -EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d6b2ce1 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x8d6f81b4 __div64_32 -EXPORT_SYMBOL vmlinux 0x8d72495b __getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d7a64da xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x8d82a004 uart_match_port -EXPORT_SYMBOL vmlinux 0x8d8b6353 proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0x8dc4aa37 page_cache_prev_hole -EXPORT_SYMBOL vmlinux 0x8dc70165 __sg_free_table -EXPORT_SYMBOL vmlinux 0x8dcff6e2 __pv_offset -EXPORT_SYMBOL vmlinux 0x8e05177e uart_remove_one_port -EXPORT_SYMBOL vmlinux 0x8e139ab1 serio_reconnect -EXPORT_SYMBOL vmlinux 0x8e4275b9 mii_ethtool_sset -EXPORT_SYMBOL vmlinux 0x8e6d9fd4 clkdev_drop -EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x8e7a8907 param_ops_ushort -EXPORT_SYMBOL vmlinux 0x8e8213c6 unregister_binfmt -EXPORT_SYMBOL vmlinux 0x8e865d3c arm_delay_ops -EXPORT_SYMBOL vmlinux 0x8e9c0558 udp_seq_open -EXPORT_SYMBOL vmlinux 0x8ea4843a ip_route_me_harder -EXPORT_SYMBOL vmlinux 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL vmlinux 0x8f1bc5ba xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0x8f678b07 __stack_chk_guard -EXPORT_SYMBOL vmlinux 0x8f71380a neigh_update -EXPORT_SYMBOL vmlinux 0x8f729132 sync_inode -EXPORT_SYMBOL vmlinux 0x8f9fa4c3 devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x8fa782f1 serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0x8fbe41dc inet6_unregister_icmp_sender -EXPORT_SYMBOL vmlinux 0x8fc5fe8e jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0x8fcbc339 elv_rq_merge_ok -EXPORT_SYMBOL vmlinux 0x8fcc0e38 of_get_named_gpio_flags -EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin -EXPORT_SYMBOL vmlinux 0x8fd57825 block_write_end -EXPORT_SYMBOL vmlinux 0x8ff37102 dev_activate -EXPORT_SYMBOL vmlinux 0x8ffb02cf bioset_free -EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 -EXPORT_SYMBOL vmlinux 0x901ed69c nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x90369235 __block_write_begin -EXPORT_SYMBOL vmlinux 0x904f023a brioctl_set -EXPORT_SYMBOL vmlinux 0x90612f91 uart_suspend_port -EXPORT_SYMBOL vmlinux 0x908d94f4 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x90918cc3 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0x90a6ea80 DWC_IN_BH -EXPORT_SYMBOL vmlinux 0x90abed56 i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0x90c028d9 dquot_alloc -EXPORT_SYMBOL vmlinux 0x90d10110 get_task_io_context -EXPORT_SYMBOL vmlinux 0x90dcae76 set_anon_super -EXPORT_SYMBOL vmlinux 0x91161120 dst_alloc -EXPORT_SYMBOL vmlinux 0x912555f2 __wait_on_buffer -EXPORT_SYMBOL vmlinux 0x9141fdac napi_get_frags -EXPORT_SYMBOL vmlinux 0x914abb16 scsi_scan_target -EXPORT_SYMBOL vmlinux 0x91621d6a allocate_resource -EXPORT_SYMBOL vmlinux 0x91715312 sprintf -EXPORT_SYMBOL vmlinux 0x919029aa __readwrite_bug -EXPORT_SYMBOL vmlinux 0x91e59742 scsi_device_get -EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 -EXPORT_SYMBOL vmlinux 0x91f7d0d9 tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0x922cff41 generic_ro_fops -EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x9240bd58 end_buffer_async_write -EXPORT_SYMBOL vmlinux 0x924798c6 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0x924808f8 scsi_print_result -EXPORT_SYMBOL vmlinux 0x924f25e5 __DWC_DMA_ALLOC_ATOMIC -EXPORT_SYMBOL vmlinux 0x9250cf37 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0x925ea5fd tcf_hash_check -EXPORT_SYMBOL vmlinux 0x92603ded padata_alloc -EXPORT_SYMBOL vmlinux 0x92644dec blkdev_get -EXPORT_SYMBOL vmlinux 0x9284c8af __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0x92a1ec57 blk_recount_segments -EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm -EXPORT_SYMBOL vmlinux 0x92cc4754 devm_gpio_request -EXPORT_SYMBOL vmlinux 0x92d571a0 vm_mmap -EXPORT_SYMBOL vmlinux 0x92ec3baa kernel_recvmsg -EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x930bc05b iov_iter_init -EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0x932b9ca1 vchiq_queue_bulk_transmit -EXPORT_SYMBOL vmlinux 0x93363488 scsi_scan_host -EXPORT_SYMBOL vmlinux 0x933d4ae7 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0x93426bb5 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0x9354c18a scsi_block_requests -EXPORT_SYMBOL vmlinux 0x9356a2ee udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0x935fcbbb mpage_writepages -EXPORT_SYMBOL vmlinux 0x936528c3 netlink_net_capable -EXPORT_SYMBOL vmlinux 0x936d51ab vfs_writev -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x93803bb2 generic_block_bmap -EXPORT_SYMBOL vmlinux 0x93851160 sg_miter_start -EXPORT_SYMBOL vmlinux 0x938edc44 init_task -EXPORT_SYMBOL vmlinux 0x93973b5e swiotlb_map_sg_attrs -EXPORT_SYMBOL vmlinux 0x93ad3e70 xfrm6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93b6d9b8 start_tty -EXPORT_SYMBOL vmlinux 0x93c6254e skb_pad -EXPORT_SYMBOL vmlinux 0x93cd7fec uart_get_divisor -EXPORT_SYMBOL vmlinux 0x93d4a795 migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0x93e0f0fa vmap -EXPORT_SYMBOL vmlinux 0x93f0b5f3 netpoll_print_options -EXPORT_SYMBOL vmlinux 0x93f37ad9 tc6393xb_lcd_set_power -EXPORT_SYMBOL vmlinux 0x93fc962f lwtunnel_encap_del_ops -EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages -EXPORT_SYMBOL vmlinux 0x93fe5bb5 dwc_cc_data_for_save -EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int -EXPORT_SYMBOL vmlinux 0x940f9cf6 kblockd_schedule_delayed_work -EXPORT_SYMBOL vmlinux 0x941497b1 put_page -EXPORT_SYMBOL vmlinux 0x94209fa4 dump_emit -EXPORT_SYMBOL vmlinux 0x9425bb72 __tcf_hash_release -EXPORT_SYMBOL vmlinux 0x943a8fcc pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0x94535fd6 vchiq_bulk_transmit -EXPORT_SYMBOL vmlinux 0x9456bde1 sync_inode_metadata -EXPORT_SYMBOL vmlinux 0x946dfea1 simple_transaction_release -EXPORT_SYMBOL vmlinux 0x946efbfa __wait_on_bit -EXPORT_SYMBOL vmlinux 0x9471c3dd generic_start_io_acct -EXPORT_SYMBOL vmlinux 0x9494e4ec xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x94a4db94 __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0x94b0cc95 skb_pull -EXPORT_SYMBOL vmlinux 0x94c37838 genphy_config_init -EXPORT_SYMBOL vmlinux 0x94d3da68 rtc_lock -EXPORT_SYMBOL vmlinux 0x94eea794 getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x94eeddf1 swiotlb_dma_supported -EXPORT_SYMBOL vmlinux 0x94f3af5c zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0x950667c8 ipv4_specific -EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x95150138 kern_path_mountpoint -EXPORT_SYMBOL vmlinux 0x95303078 icmp_send -EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init -EXPORT_SYMBOL vmlinux 0x954e664f d_invalidate -EXPORT_SYMBOL vmlinux 0x95592ae2 dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0x957109cc pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0x95786857 read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0x9582b769 seq_open -EXPORT_SYMBOL vmlinux 0x95bd4658 __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0x95da6e75 ps2_handle_ack -EXPORT_SYMBOL vmlinux 0x95dbe078 __get_user_2 -EXPORT_SYMBOL vmlinux 0x960dfaf5 radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0x961832eb devm_gpiod_get_array_optional -EXPORT_SYMBOL vmlinux 0x9652f550 generic_file_read_iter -EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x96757d70 DWC_SPINUNLOCK -EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x96b3bb85 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0x96b636de inode_init_owner -EXPORT_SYMBOL vmlinux 0x96bd6f30 dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0x96c1395f skb_checksum_help -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96cfa039 module_refcount -EXPORT_SYMBOL vmlinux 0x96dce98c resource_list_create_entry -EXPORT_SYMBOL vmlinux 0x96ebd894 csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0x96f1baeb cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0x97038914 inode_claim_rsv_space -EXPORT_SYMBOL vmlinux 0x97255bdf strlen -EXPORT_SYMBOL vmlinux 0x973d0f9e kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0x974501cf vchi_msg_hold -EXPORT_SYMBOL vmlinux 0x9746731f of_mm_gpiochip_remove -EXPORT_SYMBOL vmlinux 0x974c0cad mmc_of_parse -EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x978cf14c of_n_size_cells -EXPORT_SYMBOL vmlinux 0x978fb873 dma_common_mmap -EXPORT_SYMBOL vmlinux 0x979124dd amba_device_register -EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state -EXPORT_SYMBOL vmlinux 0x97c0705e dqput -EXPORT_SYMBOL vmlinux 0x97c2571f dquot_resume -EXPORT_SYMBOL vmlinux 0x97cdb3d5 reservation_object_add_shared_fence -EXPORT_SYMBOL vmlinux 0x97dce907 inet_getname -EXPORT_SYMBOL vmlinux 0x97f20bf1 generic_file_splice_read -EXPORT_SYMBOL vmlinux 0x97fb8f9a xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x98111521 swiotlb_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0x9814c7a5 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x9818b874 DWC_CPU_TO_BE16 -EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint -EXPORT_SYMBOL vmlinux 0x983fcaf7 import_iovec -EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x987c11c7 __pv_phys_pfn_offset -EXPORT_SYMBOL vmlinux 0x9893abd8 pm860x_reg_write -EXPORT_SYMBOL vmlinux 0x98b7b313 xfrm_input_resume -EXPORT_SYMBOL vmlinux 0x98e68eca cancel_delayed_work -EXPORT_SYMBOL vmlinux 0x99028c70 vchi_msg_remove -EXPORT_SYMBOL vmlinux 0x992cf4ba elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0x9936758f vfs_rename -EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x99400862 bio_flush_dcache_pages -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x996bdb64 _kstrtoul -EXPORT_SYMBOL vmlinux 0x996c4d30 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x99714697 of_clk_get -EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99a14af1 i2c_use_client -EXPORT_SYMBOL vmlinux 0x99a5a618 neigh_app_ns -EXPORT_SYMBOL vmlinux 0x99a9b3ae blk_fetch_request -EXPORT_SYMBOL vmlinux 0x99af2cbb security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0x99bb8806 memmove -EXPORT_SYMBOL vmlinux 0x99c63fd9 iommu_tbl_range_alloc -EXPORT_SYMBOL vmlinux 0x99cb20d2 swiotlb_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering -EXPORT_SYMBOL vmlinux 0x99f58330 lg_local_lock_cpu -EXPORT_SYMBOL vmlinux 0x9a1b8ce2 of_get_address -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval -EXPORT_SYMBOL vmlinux 0x9a3e0cc1 vfs_iter_write -EXPORT_SYMBOL vmlinux 0x9a5bf3b7 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0x9a623142 ida_get_new_above -EXPORT_SYMBOL vmlinux 0x9a6afac4 phy_detach -EXPORT_SYMBOL vmlinux 0x9a7340fe inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x9a74417e kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x9a7c702c complete_request_key -EXPORT_SYMBOL vmlinux 0x9a81e1c6 cpufreq_global_kobject -EXPORT_SYMBOL vmlinux 0x9a8318ef v7_coherent_kern_range -EXPORT_SYMBOL vmlinux 0x9a8d9214 down_write_trylock -EXPORT_SYMBOL vmlinux 0x9a923b55 scsi_host_set_state -EXPORT_SYMBOL vmlinux 0x9aa3a26f skb_append -EXPORT_SYMBOL vmlinux 0x9ab31781 of_find_matching_node_and_match -EXPORT_SYMBOL vmlinux 0x9ab5196e inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0x9ab7a2ec padata_start -EXPORT_SYMBOL vmlinux 0x9ade629b udp_add_offload -EXPORT_SYMBOL vmlinux 0x9adef643 tcp_gro_complete -EXPORT_SYMBOL vmlinux 0x9b0671e0 dev_mc_del -EXPORT_SYMBOL vmlinux 0x9b18608f nand_bch_init -EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page -EXPORT_SYMBOL vmlinux 0x9b430b27 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x9b52ae32 inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize -EXPORT_SYMBOL vmlinux 0x9b8f7078 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x9b968dc8 input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split -EXPORT_SYMBOL vmlinux 0x9bade320 poll_initwait -EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put -EXPORT_SYMBOL vmlinux 0x9bce482f __release_region -EXPORT_SYMBOL vmlinux 0x9bd89527 scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x9c06d0f8 of_find_node_opts_by_path -EXPORT_SYMBOL vmlinux 0x9c0bd51f _raw_spin_lock -EXPORT_SYMBOL vmlinux 0x9c107784 __dev_get_by_name -EXPORT_SYMBOL vmlinux 0x9c14394c DWC_TASK_FREE -EXPORT_SYMBOL vmlinux 0x9c1f27cd input_inject_event -EXPORT_SYMBOL vmlinux 0x9c63d9cd of_device_is_available -EXPORT_SYMBOL vmlinux 0x9c658bf1 filemap_fault -EXPORT_SYMBOL vmlinux 0x9c7c3379 dst_init -EXPORT_SYMBOL vmlinux 0x9c7dd3cb ihold -EXPORT_SYMBOL vmlinux 0x9c9a98aa DWC_MEMCPY -EXPORT_SYMBOL vmlinux 0x9c9ec2a0 proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x9ca0c7c6 dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0x9caa082f inet_ioctl -EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cba3c37 _raw_read_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x9cc7856a vfs_mkdir -EXPORT_SYMBOL vmlinux 0x9cc7d359 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x9cd60539 sg_free_table -EXPORT_SYMBOL vmlinux 0x9cf852b2 iput -EXPORT_SYMBOL vmlinux 0x9cfa15bf bio_unmap_user -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d12328c phy_device_free -EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init -EXPORT_SYMBOL vmlinux 0x9d4abc9d __register_chrdev -EXPORT_SYMBOL vmlinux 0x9d6298e2 cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0x9d669763 memcpy -EXPORT_SYMBOL vmlinux 0x9d706f67 __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0x9dc3706f d_delete -EXPORT_SYMBOL vmlinux 0x9dd8db04 nvm_register_target -EXPORT_SYMBOL vmlinux 0x9dde8493 security_mmap_file -EXPORT_SYMBOL vmlinux 0x9dfe7307 lz4_decompress_unknownoutputsize -EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e174384 of_find_all_nodes -EXPORT_SYMBOL vmlinux 0x9e22097a fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x9e3682fd DWC_MDELAY -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e5fe304 atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value -EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9ea31918 bio_put -EXPORT_SYMBOL vmlinux 0x9ea546ae ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0x9ead16fb writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x9eaeca22 ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0x9ec167d0 block_write_begin -EXPORT_SYMBOL vmlinux 0x9ec1e81a netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x9eca4178 tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0x9eda4718 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x9ef529e1 map_destroy -EXPORT_SYMBOL vmlinux 0x9f08b879 generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0x9f3a75e7 nf_setsockopt -EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f55e363 param_get_int -EXPORT_SYMBOL vmlinux 0x9f75eb6e km_policy_expired -EXPORT_SYMBOL vmlinux 0x9f7abec1 override_creds -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9faebbc2 register_gifconf -EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0xa00eb15b ioremap_page -EXPORT_SYMBOL vmlinux 0xa01b559f jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0xa026cd1e skb_put -EXPORT_SYMBOL vmlinux 0xa027266e __ip_select_ident -EXPORT_SYMBOL vmlinux 0xa027ae7b netlink_capable -EXPORT_SYMBOL vmlinux 0xa0287e7d fixed_size_llseek -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xa04cc1f4 sock_no_sendpage -EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xa05e62b7 get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0xa07ed079 of_n_addr_cells -EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init -EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa085921e bio_uncopy_user -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0bd671c abx500_set_register_interruptible -EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0ddcf41 dev_mc_flush -EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem -EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xa135ff9f d_move -EXPORT_SYMBOL vmlinux 0xa1369e12 jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts -EXPORT_SYMBOL vmlinux 0xa14e05ba jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0xa165aea3 vchi_msg_queuev -EXPORT_SYMBOL vmlinux 0xa16720b1 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0xa186cbec tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0xa192813b idr_for_each -EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode -EXPORT_SYMBOL vmlinux 0xa1c377e6 blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched -EXPORT_SYMBOL vmlinux 0xa1d55e90 _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create -EXPORT_SYMBOL vmlinux 0xa1f0ebea bit_waitqueue -EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold -EXPORT_SYMBOL vmlinux 0xa20bd2e6 unregister_md_personality -EXPORT_SYMBOL vmlinux 0xa21d276f param_get_charp -EXPORT_SYMBOL vmlinux 0xa22e9df3 vchiq_add_connected_callback -EXPORT_SYMBOL vmlinux 0xa23dbec3 tty_register_driver -EXPORT_SYMBOL vmlinux 0xa24675c3 mapping_tagged -EXPORT_SYMBOL vmlinux 0xa25aee27 nf_log_register -EXPORT_SYMBOL vmlinux 0xa26ee689 __alloc_pages_nodemask -EXPORT_SYMBOL vmlinux 0xa270d91a mmc_flush_cache -EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0xa2bccdb0 scsi_add_device -EXPORT_SYMBOL vmlinux 0xa2c5ccfe blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0xa2e9a4b8 ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0xa3312191 sock_no_bind -EXPORT_SYMBOL vmlinux 0xa336feb7 nand_manuf_ids -EXPORT_SYMBOL vmlinux 0xa3415798 arm_dma_ops -EXPORT_SYMBOL vmlinux 0xa35535bc dump_truncate -EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get -EXPORT_SYMBOL vmlinux 0xa381944f dql_reset -EXPORT_SYMBOL vmlinux 0xa38ec27b elv_rb_former_request -EXPORT_SYMBOL vmlinux 0xa39a123a fence_add_callback -EXPORT_SYMBOL vmlinux 0xa3f77684 swiotlb_sync_single_for_device -EXPORT_SYMBOL vmlinux 0xa40dd5d4 kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0xa4119a77 search_binary_handler -EXPORT_SYMBOL vmlinux 0xa414882d add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf -EXPORT_SYMBOL vmlinux 0xa43f1211 of_get_property -EXPORT_SYMBOL vmlinux 0xa4614564 tcp_sendpage -EXPORT_SYMBOL vmlinux 0xa46f2f1b kstrtouint -EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset -EXPORT_SYMBOL vmlinux 0xa4859120 bio_copy_kern -EXPORT_SYMBOL vmlinux 0xa4bb88ab inet_frag_destroy -EXPORT_SYMBOL vmlinux 0xa4c84eaf dev_alloc_name -EXPORT_SYMBOL vmlinux 0xa4d4bab1 mmc_wait_for_app_cmd -EXPORT_SYMBOL vmlinux 0xa4dcf53a component_match_add -EXPORT_SYMBOL vmlinux 0xa4de503d phy_device_register -EXPORT_SYMBOL vmlinux 0xa4ee7fbe generic_block_fiemap -EXPORT_SYMBOL vmlinux 0xa5290acb inet_put_port -EXPORT_SYMBOL vmlinux 0xa548c6fe ip_options_compile -EXPORT_SYMBOL vmlinux 0xa54fbd0f blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa58fea9d mempool_destroy -EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes -EXPORT_SYMBOL vmlinux 0xa5a49b3f scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0xa5b5db67 tcp_splice_read -EXPORT_SYMBOL vmlinux 0xa5bd6b53 twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0xa5bd9d38 of_find_backlight_by_node -EXPORT_SYMBOL vmlinux 0xa5cef8ad release_resource -EXPORT_SYMBOL vmlinux 0xa5d8288b sock_setsockopt -EXPORT_SYMBOL vmlinux 0xa5e4ff68 lwtunnel_build_state -EXPORT_SYMBOL vmlinux 0xa5f67f32 ip_do_fragment -EXPORT_SYMBOL vmlinux 0xa6003cf2 end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0xa60908ad padata_do_serial -EXPORT_SYMBOL vmlinux 0xa62a635b unregister_filesystem -EXPORT_SYMBOL vmlinux 0xa62d709b tcp_getsockopt -EXPORT_SYMBOL vmlinux 0xa634afe0 dev_uc_sync -EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember -EXPORT_SYMBOL vmlinux 0xa663d2ce scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0xa6706abc netdev_emerg -EXPORT_SYMBOL vmlinux 0xa67374f0 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0xa67d7c67 of_phy_find_device -EXPORT_SYMBOL vmlinux 0xa68131d6 jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa687724e kernel_getsockname -EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0xa6a5cdc6 zpool_register_driver -EXPORT_SYMBOL vmlinux 0xa6b4b832 devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xa6b70d5b tcp_shutdown -EXPORT_SYMBOL vmlinux 0xa6bab23d dqstats -EXPORT_SYMBOL vmlinux 0xa6bb9351 udp_sendmsg -EXPORT_SYMBOL vmlinux 0xa6e83ab3 mmc_put_card -EXPORT_SYMBOL vmlinux 0xa6f822da dquot_quota_off -EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function -EXPORT_SYMBOL vmlinux 0xa71b7372 tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0xa734a3e9 abort_exclusive_wait -EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 -EXPORT_SYMBOL vmlinux 0xa7492cb8 devm_gpio_free -EXPORT_SYMBOL vmlinux 0xa7600cb9 forget_cached_acl -EXPORT_SYMBOL vmlinux 0xa7629eb6 netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0xa77d88f6 strnlen_user -EXPORT_SYMBOL vmlinux 0xa7800f19 kobject_del -EXPORT_SYMBOL vmlinux 0xa78ad39b kthread_bind -EXPORT_SYMBOL vmlinux 0xa7ad7c46 iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0xa7b33174 ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0xa7b52c45 DWC_MUTEX_UNLOCK -EXPORT_SYMBOL vmlinux 0xa7b7209e cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0xa7c736e9 inet_del_offload -EXPORT_SYMBOL vmlinux 0xa7d6e599 copy_strings_kernel -EXPORT_SYMBOL vmlinux 0xa7ed1c7b param_ops_bint -EXPORT_SYMBOL vmlinux 0xa812e725 iterate_supers_type -EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa86d3ac1 unmap_underlying_metadata -EXPORT_SYMBOL vmlinux 0xa8721b97 system_state -EXPORT_SYMBOL vmlinux 0xa87ca194 scsi_remove_target -EXPORT_SYMBOL vmlinux 0xa8a60abb key_link -EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end -EXPORT_SYMBOL vmlinux 0xa8bffd6b alloc_disk_node -EXPORT_SYMBOL vmlinux 0xa8cd77d9 security_inode_readlink -EXPORT_SYMBOL vmlinux 0xa8df8226 mdiobus_write -EXPORT_SYMBOL vmlinux 0xa8f23a22 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send -EXPORT_SYMBOL vmlinux 0xa90297a8 vchiq_connect -EXPORT_SYMBOL vmlinux 0xa9033a5e blk_integrity_register -EXPORT_SYMBOL vmlinux 0xa90464c8 dma_find_channel -EXPORT_SYMBOL vmlinux 0xa90b70ae ipv6_push_nfrag_opts -EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion -EXPORT_SYMBOL vmlinux 0xa9168db6 simple_link -EXPORT_SYMBOL vmlinux 0xa9253cbb unregister_key_type -EXPORT_SYMBOL vmlinux 0xa93c63cd DWC_TIMER_CANCEL -EXPORT_SYMBOL vmlinux 0xa94808f3 security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0xa949cc46 vchi_service_destroy -EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa9871d46 mdiobus_read -EXPORT_SYMBOL vmlinux 0xa9b244af d_tmpfile -EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0xa9d2f3f7 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0xa9d4cdc2 pagecache_write_end -EXPORT_SYMBOL vmlinux 0xa9e35d29 swiotlb_dma_mapping_error -EXPORT_SYMBOL vmlinux 0xaa12830e simple_transaction_read -EXPORT_SYMBOL vmlinux 0xaa4a7797 hex2bin -EXPORT_SYMBOL vmlinux 0xaa5927f9 scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0xaa65ad0d alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r -EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa82f00e of_get_next_available_child -EXPORT_SYMBOL vmlinux 0xaa8fa426 inet_sendpage -EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state -EXPORT_SYMBOL vmlinux 0xaaecabd2 rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0xab02941b mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0xab1cfc19 tty_port_open -EXPORT_SYMBOL vmlinux 0xab31054e mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0xab330468 sk_dst_check -EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off -EXPORT_SYMBOL vmlinux 0xab63c041 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xab694444 bsearch -EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog -EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab7e99d1 kdb_current_task -EXPORT_SYMBOL vmlinux 0xab80c315 bitmap_startwrite -EXPORT_SYMBOL vmlinux 0xab8695b2 dmam_free_coherent -EXPORT_SYMBOL vmlinux 0xaba3ad0c radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0xabbb3009 kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev -EXPORT_SYMBOL vmlinux 0xabd34644 vlan_uses_dev -EXPORT_SYMBOL vmlinux 0xabe0566d generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0xabe38ae4 generic_key_instantiate -EXPORT_SYMBOL vmlinux 0xabfaa32e clear_inode -EXPORT_SYMBOL vmlinux 0xabfcb4c3 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac390091 dev_base_lock -EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear -EXPORT_SYMBOL vmlinux 0xac4b3b87 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0xac5b30ee __DWC_ALLOC -EXPORT_SYMBOL vmlinux 0xac641959 mmc_start_bkops -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacc963be lro_receive_skb -EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xacf69f66 nf_nat_decode_session_hook -EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad11c0d6 xfrm_register_mode -EXPORT_SYMBOL vmlinux 0xad14b582 DWC_MEMCMP -EXPORT_SYMBOL vmlinux 0xad350be7 blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0xad372a3e simple_write_begin -EXPORT_SYMBOL vmlinux 0xad4b4591 __vfs_write -EXPORT_SYMBOL vmlinux 0xad4e3b52 inet6_del_offload -EXPORT_SYMBOL vmlinux 0xad51e44e fb_firmware_edid -EXPORT_SYMBOL vmlinux 0xad547243 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xad5d0e5a csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0xad68ec32 neigh_direct_output -EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event -EXPORT_SYMBOL vmlinux 0xad9565de dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0xadc3ef3d DWC_WRITE_REG32 -EXPORT_SYMBOL vmlinux 0xade71eb5 jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xadf13085 blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0xadf42bd5 __request_region -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae097409 inode_sub_rsv_space -EXPORT_SYMBOL vmlinux 0xae148941 phy_init_eee -EXPORT_SYMBOL vmlinux 0xae1a0f0c cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0xae415557 __dst_free -EXPORT_SYMBOL vmlinux 0xae77a595 radix_tree_gang_lookup_slot -EXPORT_SYMBOL vmlinux 0xae85a27e radix_tree_lookup -EXPORT_SYMBOL vmlinux 0xae8d9d86 d_alloc_pseudo -EXPORT_SYMBOL vmlinux 0xae9d897d iter_file_splice_write -EXPORT_SYMBOL vmlinux 0xae9df0ad mmc_remove_host -EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact -EXPORT_SYMBOL vmlinux 0xaecd3efe kobject_add -EXPORT_SYMBOL vmlinux 0xaed34819 buffer_migrate_page -EXPORT_SYMBOL vmlinux 0xaedd1613 vfs_readv -EXPORT_SYMBOL vmlinux 0xaee79f0f unregister_shrinker -EXPORT_SYMBOL vmlinux 0xaef7858c __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0xaf08a044 DWC_WAITQ_TRIGGER -EXPORT_SYMBOL vmlinux 0xaf0b7ec8 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0xaf10d009 vchi_get_peer_version -EXPORT_SYMBOL vmlinux 0xaf1acc96 iov_iter_npages -EXPORT_SYMBOL vmlinux 0xaf1e2ff3 km_state_notify -EXPORT_SYMBOL vmlinux 0xaf20a612 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0xaf32a0c1 __secpath_destroy -EXPORT_SYMBOL vmlinux 0xaf346505 iov_iter_zero -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf50e76d elf_set_personality -EXPORT_SYMBOL vmlinux 0xaf6d5dec km_report -EXPORT_SYMBOL vmlinux 0xaf84865e __get_user_8 -EXPORT_SYMBOL vmlinux 0xaf8aa518 system_rev -EXPORT_SYMBOL vmlinux 0xaf9ebc0c ps2_end_command -EXPORT_SYMBOL vmlinux 0xafa1b883 devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0xafc861c6 elv_dispatch_sort -EXPORT_SYMBOL vmlinux 0xafcef8e0 blk_sync_queue -EXPORT_SYMBOL vmlinux 0xafd9f296 bio_advance -EXPORT_SYMBOL vmlinux 0xafdb1b64 netdev_change_features -EXPORT_SYMBOL vmlinux 0xaffc5068 devm_ioport_map -EXPORT_SYMBOL vmlinux 0xb00e427d ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0xb023d391 DWC_MUTEX_ALLOC -EXPORT_SYMBOL vmlinux 0xb027fb0b skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0xb04cf0fe lg_local_unlock -EXPORT_SYMBOL vmlinux 0xb05c8e71 jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb066b530 iommu_tbl_pool_init -EXPORT_SYMBOL vmlinux 0xb070bd62 skb_copy -EXPORT_SYMBOL vmlinux 0xb0739bb5 of_phy_attach -EXPORT_SYMBOL vmlinux 0xb077e6fc nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0xb07f79e7 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0xb081b9c3 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0xb0865fb6 input_free_device -EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0xb0bb4eee tcp_sync_mss -EXPORT_SYMBOL vmlinux 0xb0c81e16 freeze_super -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0eba2e0 tso_count_descs -EXPORT_SYMBOL vmlinux 0xb0ed5785 netdev_printk -EXPORT_SYMBOL vmlinux 0xb0f02508 inet6_del_protocol -EXPORT_SYMBOL vmlinux 0xb0f96ff2 inet6_add_offload -EXPORT_SYMBOL vmlinux 0xb11e0d18 netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on -EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb14f6c0e phy_set_max_speed -EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xb15ec186 DWC_THREAD_STOP -EXPORT_SYMBOL vmlinux 0xb1693962 do_map_probe -EXPORT_SYMBOL vmlinux 0xb185eae2 param_set_ushort -EXPORT_SYMBOL vmlinux 0xb19878ff padata_add_cpu -EXPORT_SYMBOL vmlinux 0xb1991364 fb_blank -EXPORT_SYMBOL vmlinux 0xb1ad28e0 __gnu_mcount_nc -EXPORT_SYMBOL vmlinux 0xb1bae0d5 d_instantiate_unique -EXPORT_SYMBOL vmlinux 0xb1c20d18 textsearch_unregister -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xb1d4f716 scsi_report_opcode -EXPORT_SYMBOL vmlinux 0xb1d9aabd lg_local_unlock_cpu -EXPORT_SYMBOL vmlinux 0xb1e97ceb blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xb21d4f49 clkdev_alloc -EXPORT_SYMBOL vmlinux 0xb2233aef insert_inode_locked -EXPORT_SYMBOL vmlinux 0xb2333b93 xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0xb234349c vc_resize -EXPORT_SYMBOL vmlinux 0xb253b849 netlink_ns_capable -EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0xb280e584 wireless_spy_update -EXPORT_SYMBOL vmlinux 0xb29687ad mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0xb2a16c93 tso_start -EXPORT_SYMBOL vmlinux 0xb2a5bc50 seq_lseek -EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xb2c8eb67 mnt_set_expiry -EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on -EXPORT_SYMBOL vmlinux 0xb2e12a86 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0xb2faf1d7 __sg_alloc_table -EXPORT_SYMBOL vmlinux 0xb2fbe97a neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0xb30e9ccc skb_tx_error -EXPORT_SYMBOL vmlinux 0xb311e552 __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0xb3124832 jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0xb32d7b7e radix_tree_tagged -EXPORT_SYMBOL vmlinux 0xb3373219 i2c_del_driver -EXPORT_SYMBOL vmlinux 0xb3519162 devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0xb35895e9 sock_create -EXPORT_SYMBOL vmlinux 0xb362d4bb vchi_msg_dequeue -EXPORT_SYMBOL vmlinux 0xb3a8b1b1 nvm_erase_blk -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3ddf501 security_path_chown -EXPORT_SYMBOL vmlinux 0xb3e84afa input_register_handler -EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb3fc8e9b xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb4390f9a mcount -EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem -EXPORT_SYMBOL vmlinux 0xb451f10e ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0xb453bed9 inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0xb46521a3 file_path -EXPORT_SYMBOL vmlinux 0xb468f035 mtd_concat_destroy -EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0xb479ad79 mmc_hw_reset -EXPORT_SYMBOL vmlinux 0xb4b85434 simple_statfs -EXPORT_SYMBOL vmlinux 0xb4b94377 __nand_correct_data -EXPORT_SYMBOL vmlinux 0xb4df6232 dquot_quotactl_ops -EXPORT_SYMBOL vmlinux 0xb509f201 cma_get_size -EXPORT_SYMBOL vmlinux 0xb5198b77 _raw_read_lock -EXPORT_SYMBOL vmlinux 0xb52a022b dwc_cc_add -EXPORT_SYMBOL vmlinux 0xb53451cf phy_register_fixup -EXPORT_SYMBOL vmlinux 0xb53b08ad bio_chain -EXPORT_SYMBOL vmlinux 0xb53d4810 nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0xb5684e29 idr_find_slowpath -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb58ed8de __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0xb59c4e52 param_ops_byte -EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5a8b496 nvm_get_blk -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5b3d204 nvm_unregister_target -EXPORT_SYMBOL vmlinux 0xb5c00014 _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free -EXPORT_SYMBOL vmlinux 0xb5d01e38 dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0xb5d9454c printk_emit -EXPORT_SYMBOL vmlinux 0xb5e548be gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0xb5eb902a kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xb5fa3198 neigh_destroy -EXPORT_SYMBOL vmlinux 0xb62ff649 seq_dentry -EXPORT_SYMBOL vmlinux 0xb641620b netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0xb65d11b3 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0xb65f960a htc_egpio_get_wakeup_irq -EXPORT_SYMBOL vmlinux 0xb66fdee0 vm_iomap_memory -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb67c7356 ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0xb67fb816 unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xb68906e9 scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif -EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb6a0f663 nvm_register_mgr -EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit -EXPORT_SYMBOL vmlinux 0xb6ac8be5 security_path_symlink -EXPORT_SYMBOL vmlinux 0xb6bdba3c lwtunnel_fill_encap -EXPORT_SYMBOL vmlinux 0xb6cbcb12 of_mdiobus_register -EXPORT_SYMBOL vmlinux 0xb6f78efb gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0xb717fae7 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0xb719a183 DWC_SPRINTF -EXPORT_SYMBOL vmlinux 0xb72d05f4 param_set_short -EXPORT_SYMBOL vmlinux 0xb73b4933 __quota_error -EXPORT_SYMBOL vmlinux 0xb73eb827 mmc_get_card -EXPORT_SYMBOL vmlinux 0xb74208ad bdev_read_only -EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xb7592d16 blk_run_queue -EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb77220b3 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0xb7912971 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0xb7ba76c7 __aeabi_unwind_cpp_pr2 -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7cbf344 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0xb7f4b5aa seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0xb7fd429e inet6_protos -EXPORT_SYMBOL vmlinux 0xb7fe32cd ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0xb807e1aa param_set_byte -EXPORT_SYMBOL vmlinux 0xb81960ca snprintf -EXPORT_SYMBOL vmlinux 0xb83cdf03 register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xb853be6f netif_schedule_queue -EXPORT_SYMBOL vmlinux 0xb859f38b krealloc -EXPORT_SYMBOL vmlinux 0xb85fc983 config_group_init_type_name -EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 -EXPORT_SYMBOL vmlinux 0xb8b31945 find_get_entry -EXPORT_SYMBOL vmlinux 0xb8d2d890 blk_execute_rq -EXPORT_SYMBOL vmlinux 0xb8e483a3 xfrm4_rcv -EXPORT_SYMBOL vmlinux 0xb8e763af __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xb8f5afa0 ilookup5 -EXPORT_SYMBOL vmlinux 0xb90491b7 param_get_uint -EXPORT_SYMBOL vmlinux 0xb910f1e4 param_ops_short -EXPORT_SYMBOL vmlinux 0xb9274356 trace_hardirqs_off_caller -EXPORT_SYMBOL vmlinux 0xb9276329 fsnotify_put_mark -EXPORT_SYMBOL vmlinux 0xb935008d xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0xb93a4dd3 blk_queue_split -EXPORT_SYMBOL vmlinux 0xb958921a netif_napi_add -EXPORT_SYMBOL vmlinux 0xb95f98d6 _memset_io -EXPORT_SYMBOL vmlinux 0xb98887fb max8998_write_reg -EXPORT_SYMBOL vmlinux 0xb9a0bb57 mdio_bus_type -EXPORT_SYMBOL vmlinux 0xb9acd3d9 __put_user_2 -EXPORT_SYMBOL vmlinux 0xb9bba812 ll_rw_block -EXPORT_SYMBOL vmlinux 0xb9de9418 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0xb9e366c8 alloc_disk -EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xb9e95ec6 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0xb9f18dd3 DWC_STRDUP -EXPORT_SYMBOL vmlinux 0xba2dbb6c generic_write_checks -EXPORT_SYMBOL vmlinux 0xba342514 __sb_start_write -EXPORT_SYMBOL vmlinux 0xba3f1d18 xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0xba47c8e3 of_translate_address -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba4ae097 enable_fiq -EXPORT_SYMBOL vmlinux 0xba706249 inet_add_offload -EXPORT_SYMBOL vmlinux 0xba8b9d50 xfrm6_rcv -EXPORT_SYMBOL vmlinux 0xba900b85 dev_close -EXPORT_SYMBOL vmlinux 0xbab08549 iget_locked -EXPORT_SYMBOL vmlinux 0xbab8c347 single_open_size -EXPORT_SYMBOL vmlinux 0xbac3cbf2 ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0xbac4fb43 phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0xbad7d827 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0xbad8312e bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0xbadf3e95 jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0xbae7ddc2 netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0xbaea27ea kthread_create_on_node -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb0a731d inode_set_bytes -EXPORT_SYMBOL vmlinux 0xbb12d017 serio_unregister_port -EXPORT_SYMBOL vmlinux 0xbb19a748 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb4c9200 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0xbb52b4e0 __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xbb72d4fe __put_user_1 -EXPORT_SYMBOL vmlinux 0xbb74a9fa napi_consume_skb -EXPORT_SYMBOL vmlinux 0xbb86bb11 ip6_expire_frag_queue -EXPORT_SYMBOL vmlinux 0xbb909aed passthru_features_check -EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font -EXPORT_SYMBOL vmlinux 0xbb9c5e34 PDE_DATA -EXPORT_SYMBOL vmlinux 0xbbb2a923 netif_napi_del -EXPORT_SYMBOL vmlinux 0xbbf1d79e inet6_ioctl -EXPORT_SYMBOL vmlinux 0xbc10dd97 __put_user_4 -EXPORT_SYMBOL vmlinux 0xbc2fc6b2 __ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0xbc43513f of_find_node_with_property -EXPORT_SYMBOL vmlinux 0xbc69e9f1 put_cmsg -EXPORT_SYMBOL vmlinux 0xbc75411a phy_disconnect -EXPORT_SYMBOL vmlinux 0xbc77d023 DWC_MUTEX_TRYLOCK -EXPORT_SYMBOL vmlinux 0xbc7b4321 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0xbc80d0ae dquot_acquire -EXPORT_SYMBOL vmlinux 0xbc84adfc __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0xbc8f352a noop_llseek -EXPORT_SYMBOL vmlinux 0xbc917393 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0xbc98b287 tcf_action_exec -EXPORT_SYMBOL vmlinux 0xbcbfcbb6 dma_release_from_coherent -EXPORT_SYMBOL vmlinux 0xbcec7e92 fsync_bdev -EXPORT_SYMBOL vmlinux 0xbcfb679a bdi_register_owner -EXPORT_SYMBOL vmlinux 0xbd1427bb xfrm_user_policy -EXPORT_SYMBOL vmlinux 0xbd17c6de gen_replace_estimator -EXPORT_SYMBOL vmlinux 0xbd6a6b42 xfrm_register_km -EXPORT_SYMBOL vmlinux 0xbd7c4c70 dev_mc_unsync -EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug -EXPORT_SYMBOL vmlinux 0xbd97b1e9 dquot_quota_on -EXPORT_SYMBOL vmlinux 0xbda5ab81 i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0xbda647fc blk_alloc_queue_node -EXPORT_SYMBOL vmlinux 0xbda7046f nand_bch_correct_data -EXPORT_SYMBOL vmlinux 0xbdd1fa6a skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0xbde00db5 mmc_can_sanitize -EXPORT_SYMBOL vmlinux 0xbde4d14a blk_queue_softirq_done -EXPORT_SYMBOL vmlinux 0xbdec4d08 fence_remove_callback -EXPORT_SYMBOL vmlinux 0xbdedb6b2 irq_stat -EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp -EXPORT_SYMBOL vmlinux 0xbe0ec226 free_task -EXPORT_SYMBOL vmlinux 0xbe1067f1 netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto -EXPORT_SYMBOL vmlinux 0xbe2e3b75 kstrtos8 -EXPORT_SYMBOL vmlinux 0xbe32c3d9 sock_i_ino -EXPORT_SYMBOL vmlinux 0xbe341ebb request_firmware_nowait -EXPORT_SYMBOL vmlinux 0xbe49b9ed sb_set_blocksize -EXPORT_SYMBOL vmlinux 0xbe63ee40 request_resource -EXPORT_SYMBOL vmlinux 0xbe7545df kobject_init -EXPORT_SYMBOL vmlinux 0xbe9be323 dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0xbeb5fec4 mmc_free_host -EXPORT_SYMBOL vmlinux 0xbed8ca9e unregister_console -EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbf04f930 task_tgid_nr_ns -EXPORT_SYMBOL vmlinux 0xbf20175e __insert_inode_hash -EXPORT_SYMBOL vmlinux 0xbf72b494 lookup_bdev -EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfa38fef amba_request_regions -EXPORT_SYMBOL vmlinux 0xbfaeec5c cfb_imageblit -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xbffdb4d3 fb_find_mode -EXPORT_SYMBOL vmlinux 0xc0056be5 _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0xc023fc12 tty_port_init -EXPORT_SYMBOL vmlinux 0xc068440e __kfifo_alloc -EXPORT_SYMBOL vmlinux 0xc070db52 scsi_ioctl -EXPORT_SYMBOL vmlinux 0xc075489f blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc0804561 force_sig -EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write -EXPORT_SYMBOL vmlinux 0xc0a98385 profile_pc -EXPORT_SYMBOL vmlinux 0xc0b37e6f of_match_node -EXPORT_SYMBOL vmlinux 0xc0c1ca98 dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0xc0ceee8b scsi_cmd_blk_ioctl -EXPORT_SYMBOL vmlinux 0xc0cf904e of_get_cpu_node -EXPORT_SYMBOL vmlinux 0xc0d1af7e DWC_MEMSET -EXPORT_SYMBOL vmlinux 0xc0e22cf6 tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0xc11b9d83 register_qdisc -EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten -EXPORT_SYMBOL vmlinux 0xc12324b2 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0xc14e26c5 filemap_flush -EXPORT_SYMBOL vmlinux 0xc1538c9a phy_start_interrupts -EXPORT_SYMBOL vmlinux 0xc191567f dump_page -EXPORT_SYMBOL vmlinux 0xc19f70a4 fb_get_mode -EXPORT_SYMBOL vmlinux 0xc1ccdc9f posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1db7f17 shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0xc1df9178 arp_create -EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla -EXPORT_SYMBOL vmlinux 0xc206cc96 tcp_enter_memory_pressure -EXPORT_SYMBOL vmlinux 0xc223b004 ns_capable -EXPORT_SYMBOL vmlinux 0xc229eef5 ppp_dev_name -EXPORT_SYMBOL vmlinux 0xc22b7595 __mutex_init -EXPORT_SYMBOL vmlinux 0xc257e0fc tcp_conn_request -EXPORT_SYMBOL vmlinux 0xc2a2d006 md_integrity_register -EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xc2ab22b0 try_module_get -EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xc2b273fc jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0xc2c37fc3 xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2eca2d7 vm_map_ram -EXPORT_SYMBOL vmlinux 0xc2fe9d0e ip_defrag -EXPORT_SYMBOL vmlinux 0xc34601da mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0xc35101fa inet6_register_protosw -EXPORT_SYMBOL vmlinux 0xc3582e21 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0xc359fb65 abort -EXPORT_SYMBOL vmlinux 0xc3668295 skb_append_datato_frags -EXPORT_SYMBOL vmlinux 0xc36b8f0f dquot_transfer -EXPORT_SYMBOL vmlinux 0xc38d0f5b dwc_cc_restore_from_data -EXPORT_SYMBOL vmlinux 0xc3a50ec3 lru_cache_add_file -EXPORT_SYMBOL vmlinux 0xc3ace558 dma_pool_create -EXPORT_SYMBOL vmlinux 0xc3bd7c20 blk_queue_init_tags -EXPORT_SYMBOL vmlinux 0xc3c22044 scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0xc3d27232 xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0xc3e53b54 page_follow_link_light -EXPORT_SYMBOL vmlinux 0xc3fbc08a set_nlink -EXPORT_SYMBOL vmlinux 0xc416263d mmc_can_discard -EXPORT_SYMBOL vmlinux 0xc4210fbf make_kprojid -EXPORT_SYMBOL vmlinux 0xc42dd456 dst_destroy -EXPORT_SYMBOL vmlinux 0xc4418dee amba_driver_register -EXPORT_SYMBOL vmlinux 0xc45a85ba input_reset_device -EXPORT_SYMBOL vmlinux 0xc46a7f63 DWC_STRNCMP -EXPORT_SYMBOL vmlinux 0xc47c7e50 dump_skip -EXPORT_SYMBOL vmlinux 0xc48b8ae3 from_kuid -EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup -EXPORT_SYMBOL vmlinux 0xc49eebfd register_quota_format -EXPORT_SYMBOL vmlinux 0xc4a53678 invalidate_bdev -EXPORT_SYMBOL vmlinux 0xc4a57aa1 unregister_qdisc -EXPORT_SYMBOL vmlinux 0xc4b597d5 mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0xc4c60938 alloc_buffer_head -EXPORT_SYMBOL vmlinux 0xc4cea612 dwc_free_notification_manager -EXPORT_SYMBOL vmlinux 0xc4d0682e phy_drivers_register -EXPORT_SYMBOL vmlinux 0xc4e946e8 tty_name -EXPORT_SYMBOL vmlinux 0xc4ecde97 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0xc4f60d7a udp_poll -EXPORT_SYMBOL vmlinux 0xc528ef64 iov_iter_copy_from_user_atomic -EXPORT_SYMBOL vmlinux 0xc53277fc netdev_all_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0xc53650a6 of_platform_device_create -EXPORT_SYMBOL vmlinux 0xc54f4f13 ps2_sendbyte -EXPORT_SYMBOL vmlinux 0xc574c0ac simple_transaction_set -EXPORT_SYMBOL vmlinux 0xc579cfdf dquot_free_inode -EXPORT_SYMBOL vmlinux 0xc5956f6d fb_set_cmap -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc59a954b param_get_byte -EXPORT_SYMBOL vmlinux 0xc5a40a9c sg_miter_next -EXPORT_SYMBOL vmlinux 0xc5b8eb68 input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0xc5d0840c sock_no_accept -EXPORT_SYMBOL vmlinux 0xc5ef87e1 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xc60034ff mem_cgroup_begin_page_stat -EXPORT_SYMBOL vmlinux 0xc6084374 keyring_alloc -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc6319697 of_graph_get_port_by_id -EXPORT_SYMBOL vmlinux 0xc653c178 follow_down -EXPORT_SYMBOL vmlinux 0xc65537d0 memremap -EXPORT_SYMBOL vmlinux 0xc656e982 blk_end_request_cur -EXPORT_SYMBOL vmlinux 0xc665957f nand_scan_ident -EXPORT_SYMBOL vmlinux 0xc66fa6a6 ida_remove -EXPORT_SYMBOL vmlinux 0xc6b1107e give_up_console -EXPORT_SYMBOL vmlinux 0xc6ba35eb skb_vlan_untag -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6db0c20 __skb_get_hash_flowi6 -EXPORT_SYMBOL vmlinux 0xc6de77b4 gen_new_estimator -EXPORT_SYMBOL vmlinux 0xc7070b8c tcp_seq_open -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc734ed8c sync_inodes_sb -EXPORT_SYMBOL vmlinux 0xc7398c8b __DWC_DMA_ALLOC -EXPORT_SYMBOL vmlinux 0xc748194b padata_alloc_possible -EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass -EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc79566cc phy_connect -EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7ab4086 seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xc7b7f48a ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0xc7bcbc8d add_wait_queue -EXPORT_SYMBOL vmlinux 0xc7c880ea cdrom_check_events -EXPORT_SYMBOL vmlinux 0xc7e1b52c loop_register_transfer -EXPORT_SYMBOL vmlinux 0xc7e43ce4 sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn -EXPORT_SYMBOL vmlinux 0xc8276a79 nf_hooks_needed -EXPORT_SYMBOL vmlinux 0xc82f5ff2 filemap_map_pages -EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape -EXPORT_SYMBOL vmlinux 0xc8380797 xfrm6_prepare_output -EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0xc847975c sock_register -EXPORT_SYMBOL vmlinux 0xc8497265 security_path_mkdir -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc8817fc9 of_parse_phandle_with_args -EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8b507b7 vchiq_shutdown -EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xc8cb5636 ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0xc8e95989 dput -EXPORT_SYMBOL vmlinux 0xc8efc52e flow_cache_fini -EXPORT_SYMBOL vmlinux 0xc8f16600 simple_map_init -EXPORT_SYMBOL vmlinux 0xc9089ecf dev_get_by_index -EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen -EXPORT_SYMBOL vmlinux 0xc9156931 tcf_hash_cleanup -EXPORT_SYMBOL vmlinux 0xc9539fc9 tty_register_device -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc97835aa register_netdevice -EXPORT_SYMBOL vmlinux 0xc996d2e6 con_set_default_unimap -EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9df7650 phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0xca027175 set_binfmt -EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy -EXPORT_SYMBOL vmlinux 0xca130956 mm_vc_mem_base -EXPORT_SYMBOL vmlinux 0xca1c3dbd pagecache_write_begin -EXPORT_SYMBOL vmlinux 0xca1e2370 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0xca41eaa3 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0xca4bbe19 dwc_unregister_notifier -EXPORT_SYMBOL vmlinux 0xca4c7d78 netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0xca62b5b5 skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0xca631ed7 nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0xca669087 sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0xca762cec __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0xca8271ee phy_init_hw -EXPORT_SYMBOL vmlinux 0xca856684 DWC_MODIFY_REG32 -EXPORT_SYMBOL vmlinux 0xca8637d0 DWC_WORKQ_ALLOC -EXPORT_SYMBOL vmlinux 0xca881195 blk_rq_map_user -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xca945a3a seq_release -EXPORT_SYMBOL vmlinux 0xcaa12754 dev_set_group -EXPORT_SYMBOL vmlinux 0xcab07e0c single_release -EXPORT_SYMBOL vmlinux 0xcaeab464 mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcaf5233a __invalidate_device -EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb135806 blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0xcb3a8f32 __skb_checksum -EXPORT_SYMBOL vmlinux 0xcb466063 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0xcb4c1bbb scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0xcb6f264c find_get_pages_tag -EXPORT_SYMBOL vmlinux 0xcb7841d1 lwtunnel_input -EXPORT_SYMBOL vmlinux 0xcb79732d thaw_super -EXPORT_SYMBOL vmlinux 0xcb7b53f0 sb_min_blocksize -EXPORT_SYMBOL vmlinux 0xcb938302 __register_binfmt -EXPORT_SYMBOL vmlinux 0xcba2ad61 parent_mem_cgroup -EXPORT_SYMBOL vmlinux 0xcbbaff08 twl6040_set_bits -EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0xcbcfc904 sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0xcbd48038 downgrade_write -EXPORT_SYMBOL vmlinux 0xcbeac4be hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0xcbeb37c5 dwc_register_notifier -EXPORT_SYMBOL vmlinux 0xcbee6439 ida_simple_get -EXPORT_SYMBOL vmlinux 0xcbf3a565 ping_prot -EXPORT_SYMBOL vmlinux 0xcc1446d2 blk_queue_resize_tags -EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc3dff1a sock_no_listen -EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc63fd20 xfrm_init_state -EXPORT_SYMBOL vmlinux 0xcc877d1d vfs_read -EXPORT_SYMBOL vmlinux 0xcc964cb6 iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0xcc98f598 generic_write_end -EXPORT_SYMBOL vmlinux 0xccb2f14a kobject_get -EXPORT_SYMBOL vmlinux 0xccd128c6 dquot_file_open -EXPORT_SYMBOL vmlinux 0xccf06e62 dup_iter -EXPORT_SYMBOL vmlinux 0xccf3a6dd bdi_register_dev -EXPORT_SYMBOL vmlinux 0xccfef64f skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0xcd029749 scsi_remove_device -EXPORT_SYMBOL vmlinux 0xcd05615c uart_write_wakeup -EXPORT_SYMBOL vmlinux 0xcd13dc7c ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0xcd255ed4 sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd30b95a tmio_core_mmc_clk_div -EXPORT_SYMBOL vmlinux 0xcd4e6c95 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0xcd63c845 __aeabi_lasr -EXPORT_SYMBOL vmlinux 0xcd889991 of_graph_get_next_endpoint -EXPORT_SYMBOL vmlinux 0xcd9389e5 mmc_interrupt_hpi -EXPORT_SYMBOL vmlinux 0xcda66c2e key_alloc -EXPORT_SYMBOL vmlinux 0xcdb73aaa config_item_get -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdc49e19 lockref_get -EXPORT_SYMBOL vmlinux 0xcdcf7d3f __DWC_ERROR -EXPORT_SYMBOL vmlinux 0xcde0312f netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0xcde5e387 mntput -EXPORT_SYMBOL vmlinux 0xcdf6338a generic_setlease -EXPORT_SYMBOL vmlinux 0xcdf73cda arm_coherent_dma_ops -EXPORT_SYMBOL vmlinux 0xce0a09e9 devm_release_resource -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce2bd278 jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0xce30f482 gen_pool_free -EXPORT_SYMBOL vmlinux 0xce581eba pagecache_get_page -EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce87e6c7 dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0xcea93ada sync_filesystem -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xceb70b64 simple_unlink -EXPORT_SYMBOL vmlinux 0xceba44a6 devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0xcece9c1c pid_task -EXPORT_SYMBOL vmlinux 0xced3156c registered_fb -EXPORT_SYMBOL vmlinux 0xcee38537 init_special_inode -EXPORT_SYMBOL vmlinux 0xceeb0985 gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0xceed7f85 _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcf169fea kset_unregister -EXPORT_SYMBOL vmlinux 0xcf246a82 DWC_MSLEEP -EXPORT_SYMBOL vmlinux 0xcf27e530 DWC_STRCPY -EXPORT_SYMBOL vmlinux 0xcf2c3028 make_bad_inode -EXPORT_SYMBOL vmlinux 0xcf4149ac posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0xcf866afc release_sock -EXPORT_SYMBOL vmlinux 0xcf86751c mdiobus_unregister -EXPORT_SYMBOL vmlinux 0xcf88625f mempool_create_node -EXPORT_SYMBOL vmlinux 0xcf9458d8 __vfs_read -EXPORT_SYMBOL vmlinux 0xcf9fed45 posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0xcfb1ba0b dev_driver_string -EXPORT_SYMBOL vmlinux 0xcfbe70da sock_create_lite -EXPORT_SYMBOL vmlinux 0xcfc8fd48 set_page_dirty -EXPORT_SYMBOL vmlinux 0xcfcfe266 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0xcff6b676 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0xd00692d6 eth_mac_addr -EXPORT_SYMBOL vmlinux 0xd0085de1 locks_mandatory_area -EXPORT_SYMBOL vmlinux 0xd00cd7f4 of_io_request_and_map -EXPORT_SYMBOL vmlinux 0xd01097aa blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0xd01a8408 balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0xd034105f lockref_put_return -EXPORT_SYMBOL vmlinux 0xd05f4863 nvm_dev_dma_free -EXPORT_SYMBOL vmlinux 0xd06d4ef5 vchiq_queue_bulk_receive -EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond -EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc -EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init -EXPORT_SYMBOL vmlinux 0xd0b9b37d dev_uc_unsync -EXPORT_SYMBOL vmlinux 0xd0baec57 bio_integrity_free -EXPORT_SYMBOL vmlinux 0xd0c3b9c3 skb_clone -EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format -EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first -EXPORT_SYMBOL vmlinux 0xd0fcde46 inet_addr_type -EXPORT_SYMBOL vmlinux 0xd100acbd _raw_write_lock -EXPORT_SYMBOL vmlinux 0xd108c744 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0xd12e7854 blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0xd13b4d69 vchi_msg_queue -EXPORT_SYMBOL vmlinux 0xd166f13d udp_disconnect -EXPORT_SYMBOL vmlinux 0xd16a9784 sock_init_data -EXPORT_SYMBOL vmlinux 0xd17f5897 insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd18dd391 phy_driver_register -EXPORT_SYMBOL vmlinux 0xd1b2d6a3 DWC_PRINTF -EXPORT_SYMBOL vmlinux 0xd1c4b2c9 simple_transaction_get -EXPORT_SYMBOL vmlinux 0xd1c57bc8 trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0xd1c5a93c fbcon_rotate_cw -EXPORT_SYMBOL vmlinux 0xd1c84dfb hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1e79cae fence_wait_timeout -EXPORT_SYMBOL vmlinux 0xd2087167 dev_load -EXPORT_SYMBOL vmlinux 0xd210ad7b __module_put_and_exit -EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd2695e02 kernel_param_unlock -EXPORT_SYMBOL vmlinux 0xd270ce2f up_read -EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd285d287 request_key_async_with_auxdata -EXPORT_SYMBOL vmlinux 0xd296eaff locks_copy_lock -EXPORT_SYMBOL vmlinux 0xd299aaeb starget_for_each_device -EXPORT_SYMBOL vmlinux 0xd29ed4f5 skb_seq_read -EXPORT_SYMBOL vmlinux 0xd2ad2be1 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0xd2af138b reservation_ww_class -EXPORT_SYMBOL vmlinux 0xd2c21307 datagram_poll -EXPORT_SYMBOL vmlinux 0xd2cc2298 vfs_link -EXPORT_SYMBOL vmlinux 0xd2cf6e1b dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2de86de DWC_MEMMOVE -EXPORT_SYMBOL vmlinux 0xd309ee05 dm_put_device -EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd31d2937 ip_ct_attach -EXPORT_SYMBOL vmlinux 0xd32b1144 dquot_commit_info -EXPORT_SYMBOL vmlinux 0xd33b4706 blk_start_queue_async -EXPORT_SYMBOL vmlinux 0xd33eea31 da903x_query_status -EXPORT_SYMBOL vmlinux 0xd341cfb4 dst_release -EXPORT_SYMBOL vmlinux 0xd35564f5 tty_port_hangup -EXPORT_SYMBOL vmlinux 0xd3559b13 tty_mutex -EXPORT_SYMBOL vmlinux 0xd3753d6d inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0xd382e876 key_validate -EXPORT_SYMBOL vmlinux 0xd3a7e88e dev_err -EXPORT_SYMBOL vmlinux 0xd3ac677d input_unregister_handle -EXPORT_SYMBOL vmlinux 0xd3ae0ecc mutex_trylock -EXPORT_SYMBOL vmlinux 0xd3ba7d6b abx500_get_register_page_interruptible -EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xd3c8d402 mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0xd3ced263 blk_init_queue -EXPORT_SYMBOL vmlinux 0xd3dad7c5 inet_register_protosw -EXPORT_SYMBOL vmlinux 0xd3dbfbc4 _find_first_zero_bit_le -EXPORT_SYMBOL vmlinux 0xd3e052a9 serio_unregister_driver -EXPORT_SYMBOL vmlinux 0xd3e6f60d cpu_possible_mask -EXPORT_SYMBOL vmlinux 0xd3eaf0ab phy_device_create -EXPORT_SYMBOL vmlinux 0xd418e1c0 adjust_resource -EXPORT_SYMBOL vmlinux 0xd41ebaa0 dcb_setapp -EXPORT_SYMBOL vmlinux 0xd4669fad complete -EXPORT_SYMBOL vmlinux 0xd479af16 tcp_proto_cgroup -EXPORT_SYMBOL vmlinux 0xd4c5b0b8 poll_schedule_timeout -EXPORT_SYMBOL vmlinux 0xd4c805bf blk_put_request -EXPORT_SYMBOL vmlinux 0xd4ca4e78 unlink_framebuffer -EXPORT_SYMBOL vmlinux 0xd4cce663 proc_set_user -EXPORT_SYMBOL vmlinux 0xd4dd76b5 vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0xd4f5e621 xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0xd5125107 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0xd5152710 sg_next -EXPORT_SYMBOL vmlinux 0xd5402fa7 __sock_create -EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0xd56015df cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0xd588a752 eth_header_parse -EXPORT_SYMBOL vmlinux 0xd590a95f ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames -EXPORT_SYMBOL vmlinux 0xd59cf6c1 security_path_chmod -EXPORT_SYMBOL vmlinux 0xd5ad3ce8 kernel_getsockopt -EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0xd61347c6 register_sysctl -EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0xd627480b strncat -EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout -EXPORT_SYMBOL vmlinux 0xd62e311f i2c_get_adapter -EXPORT_SYMBOL vmlinux 0xd63d164b proto_unregister -EXPORT_SYMBOL vmlinux 0xd63f8a71 is_bad_inode -EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode -EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd6891921 DWC_WORKQ_SCHEDULE_DELAYED -EXPORT_SYMBOL vmlinux 0xd6950677 of_find_device_by_node -EXPORT_SYMBOL vmlinux 0xd697e69a trace_hardirqs_on -EXPORT_SYMBOL vmlinux 0xd6b18615 mii_nway_restart -EXPORT_SYMBOL vmlinux 0xd6b8e852 request_threaded_irq -EXPORT_SYMBOL vmlinux 0xd6c63f29 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd70d1354 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0xd717845d tty_port_tty_get -EXPORT_SYMBOL vmlinux 0xd71ad7ae xfrm_state_insert -EXPORT_SYMBOL vmlinux 0xd723cae2 iget_failed -EXPORT_SYMBOL vmlinux 0xd7250880 kernel_read -EXPORT_SYMBOL vmlinux 0xd72dc5c1 of_find_node_by_phandle -EXPORT_SYMBOL vmlinux 0xd74289f9 __percpu_counter_add -EXPORT_SYMBOL vmlinux 0xd744ea32 bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0xd74cc2a2 d_genocide -EXPORT_SYMBOL vmlinux 0xd7588ad3 wait_iff_congested -EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function -EXPORT_SYMBOL vmlinux 0xd766ca2d dmam_declare_coherent_memory -EXPORT_SYMBOL vmlinux 0xd769a5bd igrab -EXPORT_SYMBOL vmlinux 0xd79f187e inet6_add_protocol -EXPORT_SYMBOL vmlinux 0xd7bf4268 DWC_WAITQ_FREE -EXPORT_SYMBOL vmlinux 0xd7d90596 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0xd7d9c616 mmc_gpio_request_cd -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd8026ea4 free_cgroup_ns -EXPORT_SYMBOL vmlinux 0xd819561b init_net -EXPORT_SYMBOL vmlinux 0xd820474b tcf_em_unregister -EXPORT_SYMBOL vmlinux 0xd831d295 unlock_buffer -EXPORT_SYMBOL vmlinux 0xd845cf95 nla_put -EXPORT_SYMBOL vmlinux 0xd85cd67e __wake_up -EXPORT_SYMBOL vmlinux 0xd8787a9c __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0xd88e5301 vc_cons -EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8b08349 request_key -EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region -EXPORT_SYMBOL vmlinux 0xd8ecc634 md_update_sb -EXPORT_SYMBOL vmlinux 0xd8f0fcf0 textsearch_register -EXPORT_SYMBOL vmlinux 0xd8f83c97 inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0xd9064466 scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0xd926847b cros_ec_query_all -EXPORT_SYMBOL vmlinux 0xd92f6e90 netpoll_setup -EXPORT_SYMBOL vmlinux 0xd93cd15f mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0xd9440d87 migrate_page_copy -EXPORT_SYMBOL vmlinux 0xd959e358 inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0xd966ddc2 __do_once_done -EXPORT_SYMBOL vmlinux 0xd969f7a4 audit_log_start -EXPORT_SYMBOL vmlinux 0xd97edd47 neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd98cf66c fb_set_var -EXPORT_SYMBOL vmlinux 0xd99a19cf devm_gpiod_get_optional -EXPORT_SYMBOL vmlinux 0xd99b4b14 register_framebuffer -EXPORT_SYMBOL vmlinux 0xd9add700 of_iomap -EXPORT_SYMBOL vmlinux 0xd9c312d4 blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0xd9c5fb5a handle_edge_irq -EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen -EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler -EXPORT_SYMBOL vmlinux 0xda2acdb3 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0xda31266c input_set_abs_params -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda484fc3 release_firmware -EXPORT_SYMBOL vmlinux 0xda48ff31 nand_calculate_ecc -EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xda8985bd iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0xda921e74 pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0xda99ce17 kern_path -EXPORT_SYMBOL vmlinux 0xdaafc807 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0xdac256a2 tty_port_put -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdac5cc53 netlink_kernel_release -EXPORT_SYMBOL vmlinux 0xdad97f94 __raw_writesw -EXPORT_SYMBOL vmlinux 0xdb2773eb init_buffer -EXPORT_SYMBOL vmlinux 0xdb44ac6f __brelse -EXPORT_SYMBOL vmlinux 0xdb565882 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0xdb5f71cd dmam_alloc_coherent -EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb7f3330 __ethtool_get_settings -EXPORT_SYMBOL vmlinux 0xdb87c425 build_skb -EXPORT_SYMBOL vmlinux 0xdb95b21f scsi_is_host_device -EXPORT_SYMBOL vmlinux 0xdbcb710c ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0xdbeb899e lwtunnel_output -EXPORT_SYMBOL vmlinux 0xdbf94b67 km_state_expired -EXPORT_SYMBOL vmlinux 0xdbfa7574 create_empty_buffers -EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0xdc102abc ata_std_end_eh -EXPORT_SYMBOL vmlinux 0xdc2309c1 sock_rfree -EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 -EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdca823c8 register_mtd_chip_driver -EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close -EXPORT_SYMBOL vmlinux 0xdcb89a58 inode_add_bytes -EXPORT_SYMBOL vmlinux 0xdce40cd2 kset_register -EXPORT_SYMBOL vmlinux 0xdced315d tcp_child_process -EXPORT_SYMBOL vmlinux 0xdcf71956 tty_check_change -EXPORT_SYMBOL vmlinux 0xdcf8327d __pagevec_release -EXPORT_SYMBOL vmlinux 0xdcfa84d2 sock_sendmsg -EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat -EXPORT_SYMBOL vmlinux 0xdd0ae0bb blk_put_queue -EXPORT_SYMBOL vmlinux 0xdd226fa9 __raw_readsw -EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr -EXPORT_SYMBOL vmlinux 0xdd3916ac _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0xdd450c23 security_path_mknod -EXPORT_SYMBOL vmlinux 0xdd47c640 xfrm_init_replay -EXPORT_SYMBOL vmlinux 0xdd79ef71 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0xddac1e00 arp_send -EXPORT_SYMBOL vmlinux 0xddd88dd0 scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0xde18c386 tty_write_room -EXPORT_SYMBOL vmlinux 0xde219003 qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0xde3413ba dcache_dir_close -EXPORT_SYMBOL vmlinux 0xde502bc5 cros_ec_check_result -EXPORT_SYMBOL vmlinux 0xde621045 of_get_next_child -EXPORT_SYMBOL vmlinux 0xde7585e0 seq_printf -EXPORT_SYMBOL vmlinux 0xde7b2ca2 blk_mq_abort_requeue_list -EXPORT_SYMBOL vmlinux 0xde902af9 abx500_get_register_interruptible -EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages -EXPORT_SYMBOL vmlinux 0xde958266 i2c_del_adapter -EXPORT_SYMBOL vmlinux 0xdecb255f generic_perform_write -EXPORT_SYMBOL vmlinux 0xded2e29a ppp_channel_index -EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf36aaed DWC_TASK_SCHEDULE -EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update -EXPORT_SYMBOL vmlinux 0xdf3f32ba tty_hangup -EXPORT_SYMBOL vmlinux 0xdf45b9b1 lwtunnel_encap_add_ops -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf5ce197 simple_dentry_operations -EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol -EXPORT_SYMBOL vmlinux 0xdf783a6a input_get_keycode -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdfacee5a tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init -EXPORT_SYMBOL vmlinux 0xdfcb742c dev_crit -EXPORT_SYMBOL vmlinux 0xdfea6774 __ww_mutex_lock -EXPORT_SYMBOL vmlinux 0xe0264d44 mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0xe04f11bd kfree_skb_partial -EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone -EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0xe0878bfe __krealloc -EXPORT_SYMBOL vmlinux 0xe0a8d947 key_payload_reserve -EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0b51353 DWC_WORKQ_FREE -EXPORT_SYMBOL vmlinux 0xe0c4491e __lock_page -EXPORT_SYMBOL vmlinux 0xe0d48faa open_exec -EXPORT_SYMBOL vmlinux 0xe0df7391 mmc_start_req -EXPORT_SYMBOL vmlinux 0xe0fc8b53 dev_mc_add -EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -EXPORT_SYMBOL vmlinux 0xe1179f98 __devm_release_region -EXPORT_SYMBOL vmlinux 0xe12abc94 dm_get_device -EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0xe14baea0 __get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xe187693c kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0xe1b55da5 eth_header_cache_update -EXPORT_SYMBOL vmlinux 0xe1b9b12a mmc_power_restore_host -EXPORT_SYMBOL vmlinux 0xe1c71845 tc6393xb_lcd_mode -EXPORT_SYMBOL vmlinux 0xe1c879c0 of_device_get_match_data -EXPORT_SYMBOL vmlinux 0xe1de70f7 sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0xe1f0ab3a _raw_read_lock_irqsave -EXPORT_SYMBOL vmlinux 0xe1f931ed key_unlink -EXPORT_SYMBOL vmlinux 0xe1fe4c75 blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xe23161c9 hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 -EXPORT_SYMBOL vmlinux 0xe25c2357 uart_update_timeout -EXPORT_SYMBOL vmlinux 0xe2656151 mb_cache_entry_insert -EXPORT_SYMBOL vmlinux 0xe26e0b29 neigh_parms_release -EXPORT_SYMBOL vmlinux 0xe272ac84 xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0xe275f4fa dev_get_stats -EXPORT_SYMBOL vmlinux 0xe28d7d57 read_dev_sector -EXPORT_SYMBOL vmlinux 0xe28e80af jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0xe2943730 jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t -EXPORT_SYMBOL vmlinux 0xe2c6cd2d get_empty_filp -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2d6bbff sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user -EXPORT_SYMBOL vmlinux 0xe2e8d54a DWC_SPINLOCK_FREE -EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup -EXPORT_SYMBOL vmlinux 0xe303a3f2 fget_raw -EXPORT_SYMBOL vmlinux 0xe31835c9 configfs_unregister_group -EXPORT_SYMBOL vmlinux 0xe32fcc1f dev_deactivate -EXPORT_SYMBOL vmlinux 0xe34a8175 scsicam_bios_param -EXPORT_SYMBOL vmlinux 0xe376b791 DWC_SPINUNLOCK_IRQRESTORE -EXPORT_SYMBOL vmlinux 0xe3b89f5c netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0xe3bca4ca dwc_alloc_notification_manager -EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xe3feae10 jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0xe4062741 neigh_for_each -EXPORT_SYMBOL vmlinux 0xe4085eae param_set_copystring -EXPORT_SYMBOL vmlinux 0xe40f40f7 bio_copy_data -EXPORT_SYMBOL vmlinux 0xe41cf8bb scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0xe43274bc proc_dointvec -EXPORT_SYMBOL vmlinux 0xe43858bc tcp_prot -EXPORT_SYMBOL vmlinux 0xe44ee48a dquot_release -EXPORT_SYMBOL vmlinux 0xe47332a9 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0xe489ab58 cdev_alloc -EXPORT_SYMBOL vmlinux 0xe4c17741 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0xe4c80097 cacheid -EXPORT_SYMBOL vmlinux 0xe4cfa523 udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0xe4d09833 twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0xe4e5b975 inode_reclaim_rsv_space -EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe54b4fb9 iov_iter_fault_in_readable -EXPORT_SYMBOL vmlinux 0xe55b9601 dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton -EXPORT_SYMBOL vmlinux 0xe582f13f get_mem_type -EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set -EXPORT_SYMBOL vmlinux 0xe59166dc sg_copy_buffer -EXPORT_SYMBOL vmlinux 0xe5b5d651 vchi_bulk_queue_transmit -EXPORT_SYMBOL vmlinux 0xe5be4c9d alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5dcdf0c sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xe6400c44 blk_mq_add_to_requeue_list -EXPORT_SYMBOL vmlinux 0xe6478f09 copy_from_iter -EXPORT_SYMBOL vmlinux 0xe66452ab dql_init -EXPORT_SYMBOL vmlinux 0xe67d81ba strlen_user -EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe6a5c9c4 of_get_child_by_name -EXPORT_SYMBOL vmlinux 0xe6b51604 bio_reset -EXPORT_SYMBOL vmlinux 0xe6b73767 param_get_ulong -EXPORT_SYMBOL vmlinux 0xe6bc375c dev_get_nest_level -EXPORT_SYMBOL vmlinux 0xe6c3b078 tcf_destroy_chain -EXPORT_SYMBOL vmlinux 0xe6ca4766 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update -EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock -EXPORT_SYMBOL vmlinux 0xe702b08c __cleancache_put_page -EXPORT_SYMBOL vmlinux 0xe7075b97 idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xe707d823 __aeabi_uidiv -EXPORT_SYMBOL vmlinux 0xe71e6f48 netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0xe7300c48 blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0xe748b8d2 i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0xe769cb2d __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xe77f90c1 inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0xe7846e9e blk_start_queue -EXPORT_SYMBOL vmlinux 0xe787e4d7 tcp_check_req -EXPORT_SYMBOL vmlinux 0xe7951eaf __lock_buffer -EXPORT_SYMBOL vmlinux 0xe79b57ea blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx -EXPORT_SYMBOL vmlinux 0xe7b6315e kblockd_schedule_delayed_work_on -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe8144c23 input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0xe82d0140 of_match_device -EXPORT_SYMBOL vmlinux 0xe82e8fef dump_align -EXPORT_SYMBOL vmlinux 0xe8685beb unregister_quota_format -EXPORT_SYMBOL vmlinux 0xe8733f3f sock_no_mmap -EXPORT_SYMBOL vmlinux 0xe876a491 tcp_disconnect -EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss -EXPORT_SYMBOL vmlinux 0xe88c5769 i2c_clients_command -EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xe8ee16e1 elevator_alloc -EXPORT_SYMBOL vmlinux 0xe8f2d1e8 submit_bio_wait -EXPORT_SYMBOL vmlinux 0xe90cdd69 vfs_writef -EXPORT_SYMBOL vmlinux 0xe912da6b unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe91609ed nvm_set_rqd_ppalist -EXPORT_SYMBOL vmlinux 0xe91dcd5f blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0xe927af69 prepare_creds -EXPORT_SYMBOL vmlinux 0xe93f6042 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0xe93f8b37 bdget -EXPORT_SYMBOL vmlinux 0xe940c341 bioset_create -EXPORT_SYMBOL vmlinux 0xe94656a1 devfreq_add_governor -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe95b554b iget5_locked -EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr -EXPORT_SYMBOL vmlinux 0xe9654462 eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0xe96d7c09 config_group_init -EXPORT_SYMBOL vmlinux 0xe998a1c1 km_policy_notify -EXPORT_SYMBOL vmlinux 0xe99eec7b xfrm_prepare_input -EXPORT_SYMBOL vmlinux 0xe99f65c9 ioctl_by_bdev -EXPORT_SYMBOL vmlinux 0xe9a7fcdb nonseekable_open -EXPORT_SYMBOL vmlinux 0xe9be808d lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0xe9bff861 down_trylock -EXPORT_SYMBOL vmlinux 0xe9c335ac i2c_add_adapter -EXPORT_SYMBOL vmlinux 0xe9cba36d cleancache_register_ops -EXPORT_SYMBOL vmlinux 0xe9ccfcd3 ioremap_cache -EXPORT_SYMBOL vmlinux 0xe9cf7fdd of_count_phandle_with_args -EXPORT_SYMBOL vmlinux 0xe9d0181d qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0xe9d6d2f9 softnet_data -EXPORT_SYMBOL vmlinux 0xe9f2a3ec cros_ec_prepare_tx -EXPORT_SYMBOL vmlinux 0xe9f69ce3 page_symlink -EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xe9f9c581 security_inode_permission -EXPORT_SYMBOL vmlinux 0xea04b3e1 no_llseek -EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len -EXPORT_SYMBOL vmlinux 0xea07cd9e bdput -EXPORT_SYMBOL vmlinux 0xea3666f4 dma_mmap_from_coherent -EXPORT_SYMBOL vmlinux 0xea438274 twl6040_reg_write -EXPORT_SYMBOL vmlinux 0xea4f6ee4 unregister_nls -EXPORT_SYMBOL vmlinux 0xea52dc81 dwc_cc_ck -EXPORT_SYMBOL vmlinux 0xea6b50bd ether_setup -EXPORT_SYMBOL vmlinux 0xea7987f1 key_update -EXPORT_SYMBOL vmlinux 0xea8c853a netif_device_detach -EXPORT_SYMBOL vmlinux 0xea8ca566 DWC_WAITQ_WAIT_TIMEOUT -EXPORT_SYMBOL vmlinux 0xea979a23 __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0xea9ee574 simple_readpage -EXPORT_SYMBOL vmlinux 0xeaf8c0ef security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0xeafccd3e __inode_add_bytes -EXPORT_SYMBOL vmlinux 0xeb03b389 __raw_readsl -EXPORT_SYMBOL vmlinux 0xeb1aef4f cpufreq_power_cooling_register -EXPORT_SYMBOL vmlinux 0xeb318c06 __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb3db6fe scmd_printk -EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xeb5dd9e1 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0xeb6bf92c jbd2_journal_file_inode -EXPORT_SYMBOL vmlinux 0xeb8c2001 dev_trans_start -EXPORT_SYMBOL vmlinux 0xeb9302a6 napi_complete_done -EXPORT_SYMBOL vmlinux 0xeba051a8 xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0xebb0278a __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0xebb8510c dwc_cc_if_free -EXPORT_SYMBOL vmlinux 0xebc246b3 md_done_sync -EXPORT_SYMBOL vmlinux 0xebee8db5 neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0xebfdcbdf system_serial_high -EXPORT_SYMBOL vmlinux 0xec058f22 from_kprojid -EXPORT_SYMBOL vmlinux 0xec07e34f blk_queue_start_tag -EXPORT_SYMBOL vmlinux 0xec1aa6ef memzero_explicit -EXPORT_SYMBOL vmlinux 0xec37d978 generic_getxattr -EXPORT_SYMBOL vmlinux 0xec3d2e1b trace_hardirqs_off -EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec67f9a4 freeze_bdev -EXPORT_SYMBOL vmlinux 0xec6dd2b2 genphy_resume -EXPORT_SYMBOL vmlinux 0xec711397 clocksource_change_rating -EXPORT_SYMBOL vmlinux 0xec956f7f tcp_ioctl -EXPORT_SYMBOL vmlinux 0xec9925aa qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0xec99dbb3 of_find_node_by_name -EXPORT_SYMBOL vmlinux 0xecbcb8bb radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0xecc54e4f simple_dname -EXPORT_SYMBOL vmlinux 0xecc8bd65 writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0xecd8ce43 ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0xece7316c __DWC_WARN -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecf43d54 dquot_quota_sync -EXPORT_SYMBOL vmlinux 0xecf8a3b4 __raw_writesl -EXPORT_SYMBOL vmlinux 0xecfb1f9c elv_unregister_queue -EXPORT_SYMBOL vmlinux 0xed2576c0 DWC_TIMER_SCHEDULE -EXPORT_SYMBOL vmlinux 0xed379c17 read_code -EXPORT_SYMBOL vmlinux 0xed452efc devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0xed4b94bf inet_frags_exit_net -EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xed76bd2d __mmc_claim_host -EXPORT_SYMBOL vmlinux 0xed9f8e6d kstrtos16 -EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xedb3ac04 netdev_err -EXPORT_SYMBOL vmlinux 0xedb56061 __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0xedbad47e ip_queue_xmit -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedc02363 set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedc11d7f write_cache_pages -EXPORT_SYMBOL vmlinux 0xedc7f4ec dq_data_lock -EXPORT_SYMBOL vmlinux 0xedd7361b security_path_unlink -EXPORT_SYMBOL vmlinux 0xedd9106d __ashrdi3 -EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long -EXPORT_SYMBOL vmlinux 0xee108f30 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0xee1961d3 simple_lookup -EXPORT_SYMBOL vmlinux 0xee1aafbf param_ops_ulong -EXPORT_SYMBOL vmlinux 0xee1cc099 blk_queue_stack_limits -EXPORT_SYMBOL vmlinux 0xee235f34 sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee3496c3 dma_pool_alloc -EXPORT_SYMBOL vmlinux 0xee4d446f devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xee4d8c89 tcp_prequeue -EXPORT_SYMBOL vmlinux 0xee559bfb dma_mark_declared_memory_occupied -EXPORT_SYMBOL vmlinux 0xee715ef8 lg_global_unlock -EXPORT_SYMBOL vmlinux 0xee83a22d deactivate_super -EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee9c3647 tcp_hashinfo -EXPORT_SYMBOL vmlinux 0xee9c5191 eth_type_trans -EXPORT_SYMBOL vmlinux 0xeea5517e dev_printk_emit -EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeeacecd8 vchi_msg_peek -EXPORT_SYMBOL vmlinux 0xeeae19db mutex_lock_killable -EXPORT_SYMBOL vmlinux 0xeeb02058 skb_insert -EXPORT_SYMBOL vmlinux 0xeeb9b129 skb_checksum -EXPORT_SYMBOL vmlinux 0xeebb9850 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0xeed3635b proc_dostring -EXPORT_SYMBOL vmlinux 0xeef161aa groups_free -EXPORT_SYMBOL vmlinux 0xef0a4632 add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0xef2fbd18 set_cached_acl -EXPORT_SYMBOL vmlinux 0xef2fdc4f __percpu_counter_init -EXPORT_SYMBOL vmlinux 0xef7ace96 sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0xef7f227d kfree_skb_list -EXPORT_SYMBOL vmlinux 0xef813311 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0xef835177 security_inode_init_security -EXPORT_SYMBOL vmlinux 0xef859391 onfi_async_timing_mode_to_sdr_timings -EXPORT_SYMBOL vmlinux 0xefa5e5ce dev_open -EXPORT_SYMBOL vmlinux 0xefc870ab gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0xefcf3143 wait_for_completion_io -EXPORT_SYMBOL vmlinux 0xefd00941 input_mt_init_slots -EXPORT_SYMBOL vmlinux 0xefd6cf06 __aeabi_unwind_cpp_pr0 -EXPORT_SYMBOL vmlinux 0xefdd2345 sg_init_one -EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf000c1c7 done_path_create -EXPORT_SYMBOL vmlinux 0xf00f5ba0 tcp_make_synack -EXPORT_SYMBOL vmlinux 0xf019acf0 __starget_for_each_device -EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0xf07290df of_device_alloc -EXPORT_SYMBOL vmlinux 0xf075bf9c ppp_unit_number -EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag -EXPORT_SYMBOL vmlinux 0xf090795a filemap_write_and_wait -EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int -EXPORT_SYMBOL vmlinux 0xf0bdef28 of_device_unregister -EXPORT_SYMBOL vmlinux 0xf0d90f8b blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0xf0ed2ef4 __raw_writesb -EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort -EXPORT_SYMBOL vmlinux 0xf0f54c13 copy_page_to_iter -EXPORT_SYMBOL vmlinux 0xf100fa4f md_unregister_thread -EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info -EXPORT_SYMBOL vmlinux 0xf11aa20d of_graph_get_remote_port_parent -EXPORT_SYMBOL vmlinux 0xf11ad4a2 mount_single -EXPORT_SYMBOL vmlinux 0xf13739b1 adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init -EXPORT_SYMBOL vmlinux 0xf18e1096 uart_register_driver -EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps -EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf19e9355 cpu_online_mask -EXPORT_SYMBOL vmlinux 0xf1ad2bef dm_register_target -EXPORT_SYMBOL vmlinux 0xf1ae71e8 ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1deabf2 div64_u64 -EXPORT_SYMBOL vmlinux 0xf1e38cce free_user_ns -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf1ea6f1c __bswapsi2 -EXPORT_SYMBOL vmlinux 0xf1efbc5c iterate_mounts -EXPORT_SYMBOL vmlinux 0xf1f5ed84 dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq -EXPORT_SYMBOL vmlinux 0xf20fab46 __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0xf227e770 vchi_service_open -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf246f617 scsi_host_lookup -EXPORT_SYMBOL vmlinux 0xf2710402 dquot_disable -EXPORT_SYMBOL vmlinux 0xf27a86ec inode_set_flags -EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0xf29f40d3 __blk_end_request_cur -EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered -EXPORT_SYMBOL vmlinux 0xf2a5aa70 __remove_inode_hash -EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2e80601 scsi_ioctl_reset -EXPORT_SYMBOL vmlinux 0xf2fc5c60 i2c_master_send -EXPORT_SYMBOL vmlinux 0xf30c1998 netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0xf30f96f4 dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform -EXPORT_SYMBOL vmlinux 0xf31433e8 scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0xf341521b scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf376d77f sock_get_timestamp -EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0xf3c371ee touch_buffer -EXPORT_SYMBOL vmlinux 0xf3c79280 sock_wfree -EXPORT_SYMBOL vmlinux 0xf3e0b67c mntget -EXPORT_SYMBOL vmlinux 0xf3e44078 sk_stop_timer -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf40b2297 __crypto_memneq -EXPORT_SYMBOL vmlinux 0xf421a516 skb_queue_head -EXPORT_SYMBOL vmlinux 0xf43d3a99 param_set_charp -EXPORT_SYMBOL vmlinux 0xf44433e8 icmpv6_send -EXPORT_SYMBOL vmlinux 0xf463e05e of_node_get -EXPORT_SYMBOL vmlinux 0xf473ffaf down -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf4890314 blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0xf4a3869e inet_sendmsg -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4c19f39 neigh_seq_stop -EXPORT_SYMBOL vmlinux 0xf4cc19d7 bdget_disk -EXPORT_SYMBOL vmlinux 0xf4d13107 unlock_rename -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf4fa543b arm_copy_to_user -EXPORT_SYMBOL vmlinux 0xf512f7ca serio_interrupt -EXPORT_SYMBOL vmlinux 0xf5272c08 netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0xf539caec dma_declare_coherent_memory -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf5446256 blk_end_request -EXPORT_SYMBOL vmlinux 0xf54c51a2 dma_pool_free -EXPORT_SYMBOL vmlinux 0xf55d6f61 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0xf56062be netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0xf564412a __aeabi_ulcmp -EXPORT_SYMBOL vmlinux 0xf5751fa9 i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0xf5acef91 get_mm_exe_file -EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xf5cc39e1 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0xf5d4c3f9 flow_cache_init -EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command -EXPORT_SYMBOL vmlinux 0xf5ed5d25 netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0xf604df2c path_nosuid -EXPORT_SYMBOL vmlinux 0xf62f2493 __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0xf6311302 phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl -EXPORT_SYMBOL vmlinux 0xf6470270 ps2_init -EXPORT_SYMBOL vmlinux 0xf6497fc0 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0xf64cb133 rfkill_alloc -EXPORT_SYMBOL vmlinux 0xf64f4286 mutex_lock -EXPORT_SYMBOL vmlinux 0xf6555b15 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0xf65a3939 ip_getsockopt -EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf6851d5f register_sysctl_paths -EXPORT_SYMBOL vmlinux 0xf6a61f24 iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table -EXPORT_SYMBOL vmlinux 0xf6c1a1a2 fd_install -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6efa38c sk_common_release -EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf7163ec9 __raw_readsb -EXPORT_SYMBOL vmlinux 0xf734eb40 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0xf741bf11 vlan_vid_add -EXPORT_SYMBOL vmlinux 0xf746e067 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0xf748d648 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0xf7584a9c find_font -EXPORT_SYMBOL vmlinux 0xf772ad9d key_invalidate -EXPORT_SYMBOL vmlinux 0xf77faae8 of_parse_phandle_with_fixed_args -EXPORT_SYMBOL vmlinux 0xf7802486 __aeabi_uidivmod -EXPORT_SYMBOL vmlinux 0xf7825bcf seq_puts -EXPORT_SYMBOL vmlinux 0xf783aac0 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0xf7a58a75 inet_offloads -EXPORT_SYMBOL vmlinux 0xf7aaeddc ida_init -EXPORT_SYMBOL vmlinux 0xf7ad6d4a fasync_helper -EXPORT_SYMBOL vmlinux 0xf7bfb60e rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0xf7c36e25 DWC_THREAD_SHOULD_STOP -EXPORT_SYMBOL vmlinux 0xf7f16b3f input_get_new_minor -EXPORT_SYMBOL vmlinux 0xf80f400d neigh_table_clear -EXPORT_SYMBOL vmlinux 0xf8110b88 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf8224d39 scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf838e9f7 DWC_SPINLOCK_IRQSAVE -EXPORT_SYMBOL vmlinux 0xf83be93a dma_alloc_from_coherent -EXPORT_SYMBOL vmlinux 0xf83d53e6 device_get_mac_address -EXPORT_SYMBOL vmlinux 0xf84070d1 kernel_write -EXPORT_SYMBOL vmlinux 0xf853d1ab tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0xf88c3301 sg_init_table -EXPORT_SYMBOL vmlinux 0xf8a0d7b9 blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0xf8e76d46 dev_uc_add -EXPORT_SYMBOL vmlinux 0xf8e7e7c1 should_remove_suid -EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xf91734ad nand_lock -EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run -EXPORT_SYMBOL vmlinux 0xf9831c33 inode_needs_sync -EXPORT_SYMBOL vmlinux 0xf992b264 setup_new_exec -EXPORT_SYMBOL vmlinux 0xf9a15e87 blkdev_put -EXPORT_SYMBOL vmlinux 0xf9a2252d d_lookup -EXPORT_SYMBOL vmlinux 0xf9a3c865 flush_old_exec -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9a70d50 of_phy_register_fixed_link -EXPORT_SYMBOL vmlinux 0xf9ac2683 del_gendisk -EXPORT_SYMBOL vmlinux 0xf9c00aa9 DWC_ATOUI -EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf -EXPORT_SYMBOL vmlinux 0xf9ee6f78 security_path_rename -EXPORT_SYMBOL vmlinux 0xf9f6779f netdev_alert -EXPORT_SYMBOL vmlinux 0xfa01661c simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0xfa147c4b dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0xfa4c3648 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa74b51f mii_check_media -EXPORT_SYMBOL vmlinux 0xfac68eba arm_elf_read_implies_exec -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfacd2e14 pgprot_user -EXPORT_SYMBOL vmlinux 0xfacf982f inet_dgram_ops -EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr -EXPORT_SYMBOL vmlinux 0xfb08e5aa phy_start_aneg -EXPORT_SYMBOL vmlinux 0xfb0d4c3b bio_alloc_pages -EXPORT_SYMBOL vmlinux 0xfb1f27f0 generic_make_request -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb7d9c45 __udivsi3 -EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 -EXPORT_SYMBOL vmlinux 0xfb9b6075 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock -EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbc5fa7f tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0xfbde8b02 jbd2_journal_start -EXPORT_SYMBOL vmlinux 0xfbe62530 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0xfbe8249e up_write -EXPORT_SYMBOL vmlinux 0xfbeaf243 mount_pseudo -EXPORT_SYMBOL vmlinux 0xfbee2dc4 nvm_generic_to_addr_mode -EXPORT_SYMBOL vmlinux 0xfbfd07f7 mb_cache_entry_alloc -EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem -EXPORT_SYMBOL vmlinux 0xfc20f3c9 DWC_WAITQ_WAIT -EXPORT_SYMBOL vmlinux 0xfc3908f5 fence_default_wait -EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap -EXPORT_SYMBOL vmlinux 0xfc5ce475 fb_prepare_logo -EXPORT_SYMBOL vmlinux 0xfc6107a0 genl_unregister_family -EXPORT_SYMBOL vmlinux 0xfc6b1c66 bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0xfc88701f d_instantiate -EXPORT_SYMBOL vmlinux 0xfc96a3b1 lwtunnel_state_alloc -EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0xfcc9547a tcp_sendmsg -EXPORT_SYMBOL vmlinux 0xfcca2809 __neigh_create -EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcef50d5 __d_drop -EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0xfd070f6e __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xfd305341 walk_stackframe -EXPORT_SYMBOL vmlinux 0xfd33b5fa cmdline_parts_find -EXPORT_SYMBOL vmlinux 0xfd35f3f5 put_filp -EXPORT_SYMBOL vmlinux 0xfd37bf9b try_to_writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0xfd4e3a70 devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0xfd50fe0b xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0xfd5683b9 wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0xfd648d41 blk_mq_can_queue -EXPORT_SYMBOL vmlinux 0xfd6dfefc dm_unregister_target -EXPORT_SYMBOL vmlinux 0xfd800247 inet_frags_init -EXPORT_SYMBOL vmlinux 0xfd8c5afc release_fiq -EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xfda9840f param_ops_ullong -EXPORT_SYMBOL vmlinux 0xfdbaf946 default_file_splice_read -EXPORT_SYMBOL vmlinux 0xfdd635f6 d_prune_aliases -EXPORT_SYMBOL vmlinux 0xfdde556d from_kgid -EXPORT_SYMBOL vmlinux 0xfdf5a00c scsi_print_sense -EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe27bc5e netdev_master_upper_dev_link_private -EXPORT_SYMBOL vmlinux 0xfe2cc3d2 cma_get_base -EXPORT_SYMBOL vmlinux 0xfe311b0f capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0xfe33c6c3 sg_nents -EXPORT_SYMBOL vmlinux 0xfe382e41 __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0xfe3d8dcd clkdev_add -EXPORT_SYMBOL vmlinux 0xfe40e859 user_path_at_empty -EXPORT_SYMBOL vmlinux 0xfe4426b4 new_inode -EXPORT_SYMBOL vmlinux 0xfe4dafb1 param_get_invbool -EXPORT_SYMBOL vmlinux 0xfe55513a sock_release -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe69bc62 vchiq_bulk_receive -EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0xfeb2bbdf dev_warn -EXPORT_SYMBOL vmlinux 0xfec00bff qdisc_list_del -EXPORT_SYMBOL vmlinux 0xfeca7590 radix_tree_range_tag_if_tagged -EXPORT_SYMBOL vmlinux 0xfecb73c0 DWC_EXCEPTION -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff2bff9e tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0xff3e3a1b mmc_request_done -EXPORT_SYMBOL vmlinux 0xff44b403 netif_receive_skb -EXPORT_SYMBOL vmlinux 0xff645029 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0xff67b37f __lshrdi3 -EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff691b16 clocksource_unregister -EXPORT_SYMBOL vmlinux 0xff6a930c DWC_TIMER_FREE -EXPORT_SYMBOL vmlinux 0xff6f80ac ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0xff78b82f inet_stream_connect -EXPORT_SYMBOL vmlinux 0xff7f4fc1 generic_setxattr -EXPORT_SYMBOL vmlinux 0xff8cbb1f idr_destroy -EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy -EXPORT_SYMBOL vmlinux 0xff90766e skb_vlan_pop -EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0xffa74368 led_set_brightness -EXPORT_SYMBOL vmlinux 0xffb04946 sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0xffb351ac cros_ec_cmd_xfer_status -EXPORT_SYMBOL vmlinux 0xffb94ef0 _test_and_change_bit -EXPORT_SYMBOL vmlinux 0xffbce722 dev_alert -EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function -EXPORT_SYMBOL vmlinux 0xffdfa6a0 proc_mkdir -EXPORT_SYMBOL vmlinux 0xfff91f1f swiotlb_map_sg -EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0x8d33d5a8 sha1_finup_arm -EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0xe2cac2fc sha1_update_arm -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x3d2eb9d3 ablk_encrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x60f2a993 ablk_decrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x62478aba ablk_set_key -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x9860e364 __ablk_encrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x9d378d4a ablk_exit -EXPORT_SYMBOL_GPL crypto/ablk_helper 0xb5c599b9 ablk_init_common -EXPORT_SYMBOL_GPL crypto/ablk_helper 0xd8ec20b6 ablk_init -EXPORT_SYMBOL_GPL crypto/af_alg 0x08cc6e13 af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x19077afd af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x4db861f3 af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x54704746 af_alg_link_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x5c6c1515 af_alg_cmsg_send -EXPORT_SYMBOL_GPL crypto/af_alg 0x73444a70 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0xa19c5269 af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xbcdd720b af_alg_complete -EXPORT_SYMBOL_GPL crypto/af_alg 0xd954ef95 af_alg_wait_for_completion -EXPORT_SYMBOL_GPL crypto/af_alg 0xe72c607c af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xeae03a41 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x93a2a473 async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x49503baf async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x7e40ea9c async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x3e96e188 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x9b4b28e8 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x474f81f2 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x4bd18c8a async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xf22a06e7 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xfd1c7d6c async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x26cf7097 async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x74d89ce9 async_xor_val -EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0xa1223250 blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0xa7f9f6b4 cast5_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0xbda34b27 cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 -EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 -EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 -EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x727d669d crypto_chacha20_crypt -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x803e5d7e crypto_chacha20_setkey -EXPORT_SYMBOL_GPL crypto/cryptd 0x17e38211 cryptd_ablkcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x773370a1 cryptd_free_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x7c594d39 cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x7ec4fa61 cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x831992f4 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xab8c8ad3 cryptd_alloc_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xc7d1b5f5 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0xca000c79 cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xe20d60ed cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xfd1aa1aa cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey -EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey -EXPORT_SYMBOL_GPL crypto/lrw 0x0761f8da lrw_crypt -EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table -EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table -EXPORT_SYMBOL_GPL crypto/mcryptd 0x0010d406 mcryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0x14bdd4d3 mcryptd_flusher -EXPORT_SYMBOL_GPL crypto/mcryptd 0x181cba75 mcryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0x65206716 shash_ahash_mcryptd_digest -EXPORT_SYMBOL_GPL crypto/mcryptd 0x6d4712b2 mcryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/mcryptd 0x80e17a4e shash_ahash_mcryptd_final -EXPORT_SYMBOL_GPL crypto/mcryptd 0x85f73db1 shash_ahash_mcryptd_finup -EXPORT_SYMBOL_GPL crypto/mcryptd 0xb9c89e36 shash_ahash_mcryptd_update -EXPORT_SYMBOL_GPL crypto/mcryptd 0xf2d29c2f mcryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x22a661bc crypto_poly1305_setkey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x4f539ac3 crypto_poly1305_update -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x8f98ad8e crypto_poly1305_init -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xf8665e83 crypto_poly1305_final -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x9fc34863 serpent_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0x9dea71e8 twofish_setkey -EXPORT_SYMBOL_GPL crypto/xts 0xaa14e193 xts_crypt -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1edcc7eb ahci_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2185cce6 ahci_sdev_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x289718fe ahci_kick_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x368d0244 ahci_reset_em -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4078b01d ahci_check_ready -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4a1b5425 ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x58f5fa51 ahci_stop_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x64097e1c ahci_print_info -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6c8236cf ahci_host_activate -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7c914ea8 ahci_handle_port_intr -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x99a1ebe8 ahci_set_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xafb820dc ahci_error_handler -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb84c8a7e ahci_qc_issue -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc7b7da0e ahci_init_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xcde0a4de ahci_port_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd0a363e4 ahci_start_fis_rx -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe677ea79 ahci_shost_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe93a0415 ahci_reset_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe9ae5d3f ahci_save_initial_config -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xecccc9bd ahci_do_softreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf212d08c ahci_dev_classify -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf39ee488 ahci_start_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xfa2285b0 ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2ca3e987 ahci_platform_enable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x314236b8 ahci_platform_init_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3505197a ahci_platform_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x76528a9b ahci_platform_suspend -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7828de58 ahci_platform_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x91d3fdf7 ahci_platform_disable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9cb26161 ahci_platform_enable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa14c6c9e ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb1bf09ee ahci_platform_get_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb82d3b73 ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc4c5abb4 ahci_platform_disable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xcbedc52b ahci_platform_resume_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe6d20fdd ahci_platform_suspend_host -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x1168f64e __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x7ffb5386 __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x8405035b __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xe52d0754 __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xec4266f7 __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x034ecc05 bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x080a9996 bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0b216bce bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0bb8b717 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2b42140e bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2ba23067 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x36f35156 bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x452d348a bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x51966c72 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5e20e27f bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8801108d bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x893bade2 bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa5a9ccd7 __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xabe8af51 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xafdd8824 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb85ddc9d bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd66ae5c2 bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdc34a6d3 bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xde9478cb bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfb551d0b bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x5b09f0ed btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7a5489c4 btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7cd984aa btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xaa4fe0fd btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xadf0516c btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd998ffae btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1b93a59d btintel_hw_error -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2c9e1dd7 btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x316dad9e btintel_set_diag_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x43992b2a btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x69c6acbb btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x714023d3 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd67e206f btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd83ed521 btintel_set_event_mask -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd99e4bdb btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xedc5c3e2 btintel_secure_send -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xee6851a9 btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1002020f btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x166217ad btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4000f83d btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x508fc6fa btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x560bfd2e btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5c04a035 btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x75a4c6c3 btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8ba99863 btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa5489673 btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb6afcfd2 btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb8e3515d btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x49d893f5 qca_uart_setup_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xf81dde34 qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x451c1cb4 btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x5139c9f7 h4_recv_buf -EXPORT_SYMBOL_GPL drivers/cpufreq/arm_big_little 0xda5eb43b bL_cpufreq_unregister -EXPORT_SYMBOL_GPL drivers/cpufreq/arm_big_little 0xfe183528 bL_cpufreq_register -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x005e7c2c dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x1bb6a1c8 dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x5667e864 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xabe0112d dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xb9a5ad69 dw_dma_remove -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x073aa076 edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0cf5e184 edac_mc_free -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x73b49f7f edac_device_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x78e1b166 edac_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x89ca2a56 edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8f8e449c edac_device_handle_ue -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x90edaf49 find_mci_by_dev -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xaa3213f7 edac_device_handle_ce -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xaf9c78a8 edac_device_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc11fc2a6 edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd29953f8 edac_device_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe23b6728 edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf55affe0 edac_mc_del_mc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf886816d edac_mc_alloc -EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0xe342fbf5 get_scpi_ops -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0bec8d69 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3cea27c6 of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x525a1a45 fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x64c287e9 fpga_mgr_firmware_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xcab7337b fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xcec12dd7 fpga_mgr_buf_load -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x14c4a24a __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xfb178eff __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1415cba4 drm_gem_cma_prime_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1b98725a drm_gem_cma_dumb_create_internal -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x248a419f drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x37ece8e2 drm_gem_cma_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3cbf3c49 drm_gem_cma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3da37acf drm_gem_cma_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4408c53e drm_gem_cma_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x55e58a8a drm_gem_cma_describe -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x75a4aa1c drm_gem_cma_prime_vmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7a214a53 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7a9ff201 drm_gem_cma_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x83260f2e drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x866e4f38 drm_gem_cma_prime_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9ab4844b drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9c424acd of_get_drm_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9e5c1e77 drm_gem_cma_dumb_map_offset -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe009e6ec drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe7d3f55c drm_gem_cma_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xef779eb3 drm_gem_cma_prime_vunmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1148b623 drm_fbdev_cma_fini -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x184c8804 drm_fbdev_cma_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x227b9ef4 drm_fb_cma_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x31658921 drm_fb_cma_debugfs_show -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb2c912af drm_fbdev_cma_hotplug_event -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc86f6afe drm_fb_cma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xcc337fd5 drm_fbdev_cma_restore_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x08cbafa2 ttm_dma_page_alloc_debugfs -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xb1f57629 ttm_dma_populate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xe57cef84 ttm_dma_unpopulate -EXPORT_SYMBOL_GPL drivers/hid/hid 0x02c31f8e hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0faa684a __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x19618df7 hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1992ca75 hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1e4af118 hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2b5e6c31 hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x35cb9d31 hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x360e3edb hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x36eec600 hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0x429d8d9c hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4b0d3735 hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x521520f7 hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x578ed647 hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5a992b0d hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6c48a303 __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6fd98a23 hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x75094088 hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x79eff39f hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0x84504145 hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9996d9c9 hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0x99bda7bd hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa2d84920 hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa54d53bf hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xaaa985ea hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xaf79fa07 hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb08576ba hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb1bbcb7e hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb554682c hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc3e4d3a7 hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd340a87f hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd3476a9a hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd6d60bee hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0xdd7f4b99 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xddfcb158 hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf821382c hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfe19e074 hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x5d769643 roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x0df84d60 roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x2e873ecf roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x92f4c885 roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xcc8dfaff roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xcfab3016 roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xffca5fc5 roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1b78aecc sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1ba2b3be sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xaa1c32b6 sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc2e60eba sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc3982141 sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xca28da8b sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xda4f8f17 sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf0eba2ec hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xfb59746f sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xe0d58d96 hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0171a55a hsi_add_clients_from_dt -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x02e48a97 hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x05f7075a hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x360c4d09 hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3785a9ca hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5ef1ecd9 hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x678835ef hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x71d64cf7 hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x76cee067 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x895d30cf hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8d0e1636 hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xaa904ef0 hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb5c31f76 hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd0afad17 hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdcb4869f hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xeb1e811f hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf6223b78 hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfae63317 hsi_release_port -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x11484c87 adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x94b47825 adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xfc6b5a83 adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x04e2e09f pmbus_do_remove -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x1079225f pmbus_write_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x46e2208a pmbus_write_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x56d2e11e pmbus_check_byte_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x64d7aa4d pmbus_update_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x82606070 pmbus_do_probe -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x98730f92 pmbus_write_byte -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb0076cb6 pmbus_read_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xc13f0051 pmbus_clear_cache -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xdbb61775 pmbus_check_word_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe9dfd74a pmbus_regulator_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf3388f88 pmbus_get_driver_info -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf6d051ca pmbus_read_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf87c96fb pmbus_clear_faults -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf8833f97 pmbus_set_page -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0417e872 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0d80b801 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x631163b9 intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x8bfe3cbe intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x994f0248 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf7ea8c26 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf98ea6df intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x3d273d73 stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4fcf831f stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd53a0a1f stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xec352ff4 stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xfc7fe540 stm_source_register_device -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x17876769 i2c_dw_disable -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x1af25955 i2c_dw_disable_int -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x65314925 i2c_dw_read_comp_param -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xac9273c2 i2c_dw_probe -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xc724b559 i2c_dw_init -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x0e549ce2 i2c_add_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x3f28b2ff i2c_del_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xd02e892d i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xe21704a5 i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x141f7fb6 bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x31d9dcb4 bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xb421dd4d bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x13ddf424 ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x28b466a7 ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x37ea7596 ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x888b88c9 ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x88f4edbb ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x976de8e2 ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xcc898fed ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe80e4aed ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xfcdb40f9 ad_sd_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x1cd39323 iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x4378bd5e iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x85f38e55 ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xdd6e94e2 ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x6dbeb859 bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x87561e86 bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xa40c8de7 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x1d398e4c adis_update_scan_mode -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x2f018cc7 adis_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x4e7d5c5e adis_remove_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x5e22b762 adis_reset -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x5f6f1725 adis_init -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x67d1afbb adis_probe_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xbcb9baa5 adis_write_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc1cc6955 adis_initial_startup -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xdcbf7db3 adis_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xeb8f576e adis_read_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf0b4dc93 adis_check_status -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf3afd9a6 adis_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0214ead8 iio_update_demux -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0b05069b devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1842847b iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x18db5eca iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1b4dce90 devm_iio_device_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x374d156a iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3e8690a9 iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x44cb6404 iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4f8db884 iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x502deea6 iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x52c8339e iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x587187fd devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6573da38 iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x77929ed9 iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7ebb6288 iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x846978a1 iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8801f782 iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x89dc02d4 iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x90dbcb64 iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x91d1436d devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x948aec71 devm_iio_device_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9e0f07d7 iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa0f515b3 iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb421cb25 iio_scan_mask_query -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb7801eef iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc7a6a9b4 iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xca04f6fe devm_iio_trigger_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcd433687 iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcfd03f10 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xef5987e2 iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf883c796 iio_enum_read -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x28390886 input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xfac6f15d matrix_keypad_parse_of_params -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x1e2e2bde adxl34x_probe -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x888645b6 cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x9b185ec1 cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xda1ac7d1 cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x171753db cyttsp_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xeb026005 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xeb40950a cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x41dc156b cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x61a211b2 cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x11dd9dc1 tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x9d2d4d48 tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xd3d5830b tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xe0753201 tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3c19fa0d wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x59bad2c2 wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x661b21d5 wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x71a748da wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x82727e71 wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x88aecf06 wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x925c0341 wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9510d25c wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xae3590f0 wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdff0e19e wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe3411cc8 wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe7bc5f18 wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x062adaef ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2f5fd2c0 ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x42b66a17 ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4fd0ac14 ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5a9d8af1 ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x8944f3e6 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x90afac94 ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xafd24671 ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xba36d008 ipack_bus_register -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x16de3107 gigaset_start -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x17d8d8d4 gigaset_skb_sent -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x22de2586 gigaset_stop -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4422cb58 gigaset_initdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4def632d gigaset_if_receive -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x566f7a73 gigaset_m10x_input -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x606dffe1 gigaset_blockdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x69491853 gigaset_add_event -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x6b1d8f63 gigaset_freecs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x95aca066 gigaset_initcs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x9a6290c4 gigaset_shutdown -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa31a058f gigaset_freedriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb8da836c gigaset_skb_rcvd -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc8fd1f07 gigaset_isdn_rcv_err -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd9761507 gigaset_fill_inbuf -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xebf62431 gigaset_handle_modem_response -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf9209dba gigaset_m10x_send_skb -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x0ee63495 led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1f506ee7 led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x4115b5e7 led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x6705f8f5 led_classdev_flash_register -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xdd33bf40 led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xeeebd6ca led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x1fa671d5 lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x44b63c79 lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x559f3079 lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x6c8a92fe lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x818923de lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9625f36f lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9b65b558 lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd81e1917 lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xdddc827d lp55xx_unregister_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xee48ede6 lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf22d148f lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x05a7ea0c mcb_request_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x0c5ac2d1 mcb_bus_get -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x0f816720 mcb_release_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x11905ed3 mcb_get_irq -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x1805d59b mcb_unregister_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x24716db3 mcb_alloc_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x2fbbe67b mcb_bus_add_devices -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x756eb05c mcb_device_register -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8ce3c130 chameleon_parse_cells -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x91c3ac47 __mcb_register_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe7a1a840 mcb_free_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xed15f714 mcb_bus_put -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xeeb17cf5 mcb_alloc_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf9cca8f3 mcb_release_mem -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x00b74659 __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2a1a7a99 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x374f45ea __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3a4dfef7 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x48991e9c __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4f124797 __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x614e860f __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x647af374 __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6724de29 __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6726a0c1 __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x68f1ea6d __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7114cfcc __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x78c57fa5 __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7cb4bd6f __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x816ebfe0 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x833b99dd __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8afe3e2b __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x912566ef __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x92c55e92 __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9c59320b __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa7004101 __tracepoint_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaf2376ac __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb3942afe __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb4cffcbb __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb9c28744 __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc0bd3171 __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc773563c __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd81ad8c9 __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe30b6b2a __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6169c53 __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfcb52b5f __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x03faa60f dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x04129c94 dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x571768a6 dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x77ce6f65 dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8a8c980f dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa24dd3d3 dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xcdc84ace dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf3da75f2 dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfc4fc1ac dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x22163b69 dm_bufio_release_move -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x3909d3a8 dm_bufio_prefetch -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x4dd0f404 dm_bufio_client_create -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x594952bd dm_bufio_read -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x62a23587 dm_bufio_get_device_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9b2b253a dm_bufio_get -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xdc69e37a dm_bufio_get_block_number -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe004ee92 dm_bufio_new -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x4057da06 dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x8f5784c5 dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x99afafd7 dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x9a0d0107 dm_cache_policy_get_version -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xd577b3f0 dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xf5905928 dm_cache_policy_get_hint_size -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xfabd0a6b dm_cache_policy_get_name -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x0ce630fb dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xc27ecf98 dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x09472122 dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3fd2e294 dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x406cbcf2 dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4c18e38e dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x6b291a72 dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x6fed31f0 dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa8813ad6 dm_rh_region_to_sector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc66ce277 dm_rh_get_region_size -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcab63c3d dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8697882 dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf37a3cfe dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11eab9fe dm_bm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x150c85ce dm_tm_open_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x26f80e0c dm_block_manager_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2e730a21 dm_bm_checksum -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x33c03da6 dm_sm_disk_open -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x619701dc dm_sm_disk_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9b4b5b29 dm_bm_write_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2507774 dm_tm_shadow_block -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbcfdc290 dm_tm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbe0497aa dm_tm_create_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xead1e727 dm_bm_write_lock_zero -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize -EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2348ac7b smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2d07b1a8 sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x71a7f112 sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x871d8d39 smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x87f7290d smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9f511e21 smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9f572202 smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa2bb08c3 smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xaa287fd0 sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb53eabfb smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbfa7ef26 smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcb69dcc2 smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcbc8314a sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd2f2fe49 smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe2121666 smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf3f85d6f smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfbab7ee6 sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xaa2d952f as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x886f9bbd tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/media 0x0642d09b media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0x0d4fcd8f media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/media 0x2111fe68 __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0x220ad7f8 media_entity_init -EXPORT_SYMBOL_GPL drivers/media/media 0x300eb18a media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/media 0x6e62fc04 media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/media 0x786e59b2 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/media 0x8e6439ae media_entity_cleanup -EXPORT_SYMBOL_GPL drivers/media/media 0x8eff4a5f media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/media 0x937073d1 media_entity_get -EXPORT_SYMBOL_GPL drivers/media/media 0x9a734fef media_entity_put -EXPORT_SYMBOL_GPL drivers/media/media 0xac39cdc2 media_entity_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/media 0xbde4ca46 media_entity_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/media 0xdacd05a6 media_entity_create_link -EXPORT_SYMBOL_GPL drivers/media/media 0xe57c8d59 media_entity_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/media 0xe6dc4b44 media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/media 0xfb2d6b8e media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/media 0xfc0d6499 media_entity_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0b2585ce xvip_get_format_by_fourcc -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3afaef8c xvip_clr_or_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3f55366b xvip_of_get_format -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x490bd11c xvip_get_format_by_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x4c7a472c xvip_init_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x843d7934 xvip_clr_and_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x9bb9ca76 xvip_enum_mbus_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe2ecfac1 xvip_cleanup_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xeb445008 xvip_enum_frame_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xdc64ae70 xvtc_of_get -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xc9a0af4c radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xcd837c79 radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0b8aa592 rc_open -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0c13e6e2 ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1bef15b5 ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3d3c46f6 rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x483c56a2 rc_close -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6b846411 rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6cbaba31 rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7998fb12 ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x83f5ee3d rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa943cee0 rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xae8d64cb rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xca9ea515 rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd6bfdda2 rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd733bf2e ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd8d14445 rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdba5596c rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe1d16e58 rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe2d85bb2 rc_map_get -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfd32df36 ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x760f64a0 mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xa02d0d1e microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x9fe7a9dc mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x1e5b0a89 r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xc1de8fb6 tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0xd0bbfece tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x5e06d4c4 tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x9bbc5c4f tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xededa9b4 tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x230527c6 tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x25a3ee83 tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x60e49d71 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xb9ec2154 tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x3719b231 simple_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0859ee0e cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x11b5ece1 cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1f1d76bd cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x24f8b955 is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2ed7b9f3 cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x325d2ffa cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x37032845 cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x498706cb cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6164d3bd cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x69215b6e cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x73aa9fb5 cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7ac94188 cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8625c158 cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa3b68498 cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc2e4c859 cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc394bf55 cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc5a5ae8f cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc9d1708c cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcfb4a70a cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xef225ab8 cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x131e0be7 mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x91591d9b mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x08101b98 em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1806b332 em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1a2b0001 em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2193a989 em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x31277af2 em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x45abbd49 em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4d83a1a5 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x547c558b em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x56365910 em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5d4b0ac1 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x74f1ffc7 em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x930f8110 em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x951b6aad em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x96272335 em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xaf9b2d6e em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xca04de10 em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe5b95731 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe829365f em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x0889c251 tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x0d7819f8 tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x68419f00 tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x6fb059a9 tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x19487208 v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x3e47c1b8 v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x4eca9433 v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x62df8a8e v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x86d1b3b6 v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xffb979b0 v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08982d59 v4l2_match_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x24c4ada6 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x773931a5 v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0822c2b6 v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0dc42529 v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x22deae2c v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x29455d44 v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3190454a v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3db28a03 v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4594f3d9 v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4fd2e5b2 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5d3c6d6e v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x694818d0 v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6b6c100b v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7157abf6 v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x857f3965 v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x87af6633 v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x87b6f98b v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9afe39e5 v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9bba5fe0 v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc4137529 v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc4408321 v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc756fb16 v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcc732981 v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe4764845 v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xefa80a85 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfa3bcc92 v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfcb7a2b9 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfda212a5 v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfde088cd v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0224205b videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x252e1718 videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x283030e6 videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3375cc73 videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3ff1813e videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x40ec6680 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x50a3c476 videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5e9a4c4b videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5ea8eb7a __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6078558b videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8442612d videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8877cac4 videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x90735ece videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9934f592 videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xad0f373c videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb6165cc4 videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbdd2e99a videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc881cfcb videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd5a32212 videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd6a734a6 videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe4781142 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf10b5ab7 videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf4b72258 videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf8405d9c videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x121920c2 videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x36fb201f videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x5084534c videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x05540547 vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x0b54d367 vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1a6ec5f6 vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x26b8d1d3 vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x3f73972a vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x518b5a2c vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x59391750 vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x5b65f685 vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x69ff359b vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x9f0fa987 vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xaf698f21 vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xbb74affb vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd2b58d88 vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd59477e7 vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd64b2dfd vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe5574cc5 vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe5fe1c5e vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xfd3fbf44 vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x2325e5ff vb2_dma_contig_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x6426c7b2 vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x938c1fc7 vb2_dma_sg_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x9bf44ccc vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd30ec30f vb2_dma_sg_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0xc8ea782d vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x01110e79 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0bbe1f93 vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0d066609 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1d5f45df vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x20964bae vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x20dc6f7f vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x29021b4b vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3f2c3e61 vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4480b3d8 vb2_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4998da5d vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4a65ddb2 _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x51d13ca8 vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x534a1de8 vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x54b39e0f vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5fbef233 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6a05875c vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x85332b55 vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x934ba29f vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x939393da vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x93d62dc2 vb2_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa01f97ab vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa67aaac0 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa9dff522 vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xaa217db2 vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb4243427 vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbe61d239 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc7595682 vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xcfc4b31a vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdab572b8 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdb62d923 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe1212298 vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe3b66f02 vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0xeb9400ea vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x085c1c98 __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0938268d v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0aeb2697 v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x14da88e5 v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x236566f1 v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x28d20b15 __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x305d9fe6 v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x31e3d76e __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3740e82b __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3b476b3e v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3eda3c39 v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e8a034a v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x50cbd69c v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5b8e410b v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x606b3a73 v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x618f8ff7 v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7150482b v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7a85f5d7 __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7f0845c1 v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8485e919 v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8978de31 v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8fa601e9 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x98545b10 __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9a4042e3 v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa95745f1 v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xac04589c v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbdc37e05 v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc2f12f1d v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc9da8f93 v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd5f0d3c4 v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd8b26023 v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe72fd659 v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf032d7ed v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf3793791 v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5956f8c __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf720c421 v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x11b5220f pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd37a0361 pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd723c0e6 pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x345f3d16 da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x7b429be6 da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x87101270 da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x9cea3f83 da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xaeb629cf da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xaf39f10a da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xeb6f0c08 da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1466ca78 kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x2391dcc5 kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x34f5d39c kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x58c56974 kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x614c9a7f kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x7a0795d8 kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x7a43aeed kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x9cbff46b kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x23e82434 lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x57342ac5 lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xd7e82c5d lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x3561d001 lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x88c06113 lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x8b7b0481 lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x918f1559 lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc815813c lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xcfc2d9c9 lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xd6296784 lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x66ed612c lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xf333408d lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xfb12bc41 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x3cdb0c24 mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x5fe2665b mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x9501c5e9 mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc7b47ba1 mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xd5bb8ec9 mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xe844a4d0 mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0ca66b10 pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1edd6411 pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x356a8c99 pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5f95ce58 pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xab124ba0 pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb1bd66fa pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc87d1eba pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd9044e04 pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe6cd886f pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xfb91c825 pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xfc7f6a05 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x6ce2f2d0 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x893272a3 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x28927480 pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x80ebeb55 pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa72fdd6d pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xbaf0de26 pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xf5b9460f pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read -EXPORT_SYMBOL_GPL drivers/mfd/rpisense-core 0x3fd22778 rpisense_block_write -EXPORT_SYMBOL_GPL drivers/mfd/rpisense-core 0x9cd6715f rpisense_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/rpisense-core 0xb7d98416 rpisense_get_dev -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x0f884caf rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x166e9d94 rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x2fb938f7 rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x45175fdb rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x4fd06a3f rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x5a1df566 rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x7efad82a rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xc573a570 rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xc93644dd rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xced9c3ee rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xdada01b1 rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe1285c7d rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xfc5ec04c rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0d40c3b9 si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1a6def4b devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1b4675bf si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x205f1ac9 si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2385094c si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x248d769d si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x26934cad si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2c4bd072 si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x35269fe7 si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x39ce8f3a si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6783bc64 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6a402131 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x75afcfbb si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x77922ac5 si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8f33fccc si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa53eb081 si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa55abaa8 si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa7467afd si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb3942358 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbe26b552 si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbe94123a si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc290e281 si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc5a2d8ec si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc89a08a6 si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd25a9079 si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd9877e9c si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xde951b4f si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe00dc167 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe23b15fc si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xec84fa19 si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xecb33085 si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf21af73b si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf6da173f si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfb732af3 si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x288818c6 sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x2fe7287e sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x4a23b796 sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x6718331c sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xb348c38d sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0xd95f95a0 ssbi_read -EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0xe0e0cbef ssbi_write -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x07b80964 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x0d821b8b am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x371ad971 am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x9c805f38 am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x178aab4a tps65217_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x865d9c61 tps65217_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x9e130a17 tps65217_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xfbc2cb76 tps65217_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x41f090ae tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x57586f50 tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x74f985de tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xe94ce40a tps65218_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x2b465d25 ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x76b6eeab bmp085_regmap_config -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x8327db53 bmp085_probe -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xd5987ebf bmp085_remove -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xec206e8f bmp085_detect -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x0d897122 enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1da74d92 enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x460f03ba enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x60ba2944 enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x6cb6e10d enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa765039f enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe4eeed3a enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe689aed4 enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x2081f0ce lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x2597aab4 lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x737270ea lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9dbda6e1 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd59a5bf8 lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd80a64e7 lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf20f6678 lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf9b4ae62 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x98206a1e st_register -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xee4aba47 st_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x0d7962f1 dw_mci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x3e81e27d dw_mci_pltfm_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x4112ca78 dw_mci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x74cb33bc cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x89d5162a cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xb6fc33c2 cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x394ff42e cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x471dbffe cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xcab63ba8 cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x0786e259 cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x44fd4cbd cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x4d01d6b9 cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x60ea784d cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0x5251665f brcmnand_pm_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0x861bf2d7 brcmnand_probe -EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0x98f537ed brcmnand_remove -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x00c15bc4 onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x542db731 onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x6cd1b016 spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x07a54009 ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0ee7c40c ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1f6e576e ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1fd2e49e ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x23210c91 ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x311b1a05 ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x33f0d7d5 ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x44fb23fc ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5309f72e ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x852ace39 ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8d56bfe3 ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9036b0b8 ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf50748e8 ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfa4788e4 ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x0e820689 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x80627701 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x06e8652e c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1d72bfe1 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x3fc5c976 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x5542daa8 register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xb1f3eb8b unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe9245fda c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x012db873 can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0e803185 can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x1705862d can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x3f64398d safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x42b67b3e can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x453fd2eb alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x528bc174 alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x6c71cee5 register_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x6f7e0f63 alloc_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7ddf455a alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9b0809a1 open_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9d146f0c can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9d5ccb3d can_led_event -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb05b8fc2 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc2f307b2 devm_can_led_init -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xd9413387 free_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xf08e9a60 close_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xfa3df29b unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x619a9b9c unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x7f531820 alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xbe0d4933 free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xc0c27814 register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x049cc83a register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x8f8704aa free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xb7e6336d alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xcec5c8e3 unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x10ea641e arc_emac_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x7f26bca0 arc_emac_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x368d3d71 regmap_encx24j600_spi_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xd4ab3625 regmap_encx24j600_spi_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xefabca0b devm_regmap_init_encx24j600 -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x00dd2d17 stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x78177e4b stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x7d381d5a stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xc7721faf stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x72faa173 stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x7a91bfb4 stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xbff8d379 stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xe4c2ec3a stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/geneve 0x4bc73c08 geneve_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/geneve 0xfc317c5f geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x22e9a792 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x6a542674 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xe3733be5 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xe88c84b6 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvtap 0x6006c22c macvtap_get_socket -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x310a4bf8 bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x705d38c4 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7bf96f6a bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x994c9126 bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xabb2fa6f bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xaf309bdd bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb30a15c0 bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd7069906 bcm_phy_enable_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe7118949 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xea369c53 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x9a75827e mdio_mux_init -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x7747e07f usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb8798950 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xe1b83961 usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xf377411d usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x11f50c94 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x154d2b1c cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1b45c640 cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1d3113e2 cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1dc75723 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x86d12320 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xad868267 cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xbe9060bf cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd4ecf30d cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x1415145a rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x2599a825 rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x314a7971 rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x34dd08d2 generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xd9525486 rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf0cfa09c rndis_command -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x72c51f1f vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan 0xcaf9c2ce vxlan_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1683d237 i2400m_tx_msg_get -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x191a2d7a i2400m_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x374a103e i2400m_rx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3891bb98 i2400m_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5311884d i2400m_tx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x83810b6a i2400m_netdev_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8826a5b0 i2400m_dev_reset_handle -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x890736bb i2400m_init -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8922cc7e i2400m_error_recovery -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x893759c1 i2400m_is_boot_barker -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x89d4bc5d i2400m_post_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x90b8d308 i2400m_release -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xeb958c88 i2400m_dev_bootstrap -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf0d54e3f i2400m_pre_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf3cbb0f8 i2400m_cmd_enter_powersave -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xfd83e5db i2400m_tx_msg_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x00bd3c5d cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x3794a6f3 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x98de02de cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xc78c5053 cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x00207c69 lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x0eebc21e lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x1a349edd __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x22e8bf6e lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x59ca071e lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5e38f9bf lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x6570e4f1 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x6ccaaeac lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb10ce6ce lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc8128b35 lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xd00ff6df lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xdace7c76 lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xdbfa1866 lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe042ce40 lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf79a9dab lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xff94a013 lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x14ae2d1c lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x53611aab __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x558fbf8d lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x954c59c4 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xba09e1a6 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc2f43444 lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xf73f7920 lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xf83153b7 lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x0e9c3853 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x207272a2 mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2f63b904 mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x459a6c39 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x53e45dc0 mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x61c2fa74 mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x653d1bd4 mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x777edb1f mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x92bbe444 mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x9c13d74e mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x9f48c3df mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xba9f555e mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xd105d1d1 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xdff06f03 mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xe3be199a mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xe5c421ad mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xe87f637b _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xfaec959f mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xfdf19bdc mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x26e15281 p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x38534269 p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x3caff717 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x592bf63a p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x7f35b9a7 p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x891ba4e9 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x8cb33053 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x8e894459 p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xa0d2e7d2 p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2f800892 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4e3af99f dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8a20c3bf rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xea7d8efa dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0145bafa rtl_attribute_group -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b6d2ced rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b568f5f rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1d2f7b18 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x221fcbf8 rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x25a5d4a9 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d882d91 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x317d8c78 rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x42bf8b02 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5b41dd1e rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x728b4f61 rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x752faa36 rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x80e72294 rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x84aff369 rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8b9610d0 rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x92acdc0f rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x98b61b3c rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xac6a3c0b rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb0398aa7 rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbd9b38de rtl_dbgp_flag_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x1d37b53c rsi_init_dbgfs -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x21eba494 rsi_remove_dbgfs -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x952c050c rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xaa11d47c rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xaa7a2d2a rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xf4d4dd8f rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0fa73a97 rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x16f93988 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x20c48c8f rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x24059119 rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2572fcdd rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x31608ad6 rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x31d0d3ee rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3270e6e5 rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5d054788 rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x64835ec8 rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6a6b1bf9 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6af4c0da rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6f57f098 rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7dbd6b1d rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7e74c3f9 rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8a486d2c rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8ca0bdef rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x94445891 rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa8553fd0 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb3f3812b rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb540020b rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb712e6be rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb73671de rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb8859f4f rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbb8308a6 rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbc9ee358 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc446afbe rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc8683a7b rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcc27c361 rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcd5efb37 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd52a446a rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd9036200 rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xde51d486 rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe65f13f6 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xebdc7a5b rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xef5b6468 rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf0e494e1 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfd60787a rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x011d0e72 rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0a8ceb0a rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x119acbc8 rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x14bd1072 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1550548d rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1575fcd0 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x19e8bbfc rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1f1fc4ba rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2465dc58 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2f360064 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x30d74e8c rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3530ea30 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x39234cc1 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x395bb370 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3a2d830e rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4254a564 rt2x00mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4cd15997 rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x58322865 rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x589eac59 rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6b88acda rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6f55a6b0 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x753e6904 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x77c8f5ad rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7e3c865e rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x88414b66 rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8a57d5e6 rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8fb9bc73 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x948863ca rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9a52821f rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9bdf1c64 rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa87af307 rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb4996193 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbc62895f rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc23fd7aa rt2x00mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc273d511 rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc69d9630 rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcdc360f1 rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcfdd245f rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd87c6fa2 rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdd2f7e23 rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdd348463 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe04fc543 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xec304c60 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf657e1ea rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf6fa9c12 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfe0814d3 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x0a6a5e63 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x0c62d14b rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x0ef85b5f rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1a970c70 rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x339eaab6 rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x3b41f976 rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x516111a7 rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x74c50bc7 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x7989e730 rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x9261d101 rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x983ad6aa rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xa22a2c28 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb89e1377 rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd09cbe99 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xdcec69e3 rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xec79f771 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x1855b542 wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x64fcaadf wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xe850fa98 wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x00ef3204 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0b18b398 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x177194ef wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1a57b4c8 wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x266c76b9 wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2766d13b wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2ecf7796 wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x319b7169 wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x35efe26d wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x46606cad wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4a3f7cfd wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4b21cd22 wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4d3bd4f9 wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x55bc253d wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6b54a9dc wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6f6d00ba wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x715ce0de wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x78145c20 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x79bc60e4 wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7f5696d0 wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x80169c6d wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x83187c46 wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x842f215d wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x874bc63d wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8e721c75 wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91da5146 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91ddfaf8 wl1271_ps_elp_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x96c89e64 wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x96dace5e wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9b76e01f wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9f286dfb wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa3f1776d wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb327a9ad wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb3a5eb7b wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xba0d83c2 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xba11dafa wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbabeef21 wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc6b4f698 wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcdf48345 wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe59b9bcb wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe5c8e4d5 wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xebcfb27f wl1271_ps_elp_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf5bba992 wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf6483965 wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xffe8e786 wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xc425911f nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xd2cf91cb nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xf79f1b07 nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xfeb8ef5e nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x8fbb05e9 st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xbb0092bf st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xdd118fd3 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xdfd49a5b st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xe1c8c1c2 st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xe84d4288 st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xee7cd08e st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xfb772759 st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x12a6e5cf nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x14f8c85b of_nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x18348fec devm_nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x27a019aa nvmem_register -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x36ec8a8a nvmem_device_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x5e6899fe of_nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x66339217 nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x68758fda nvmem_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8b9e6c8e devm_nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc6100235 devm_nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc96fb674 nvmem_device_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe18960ba nvmem_device_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe9a7fe16 nvmem_cell_read -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x91883779 pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x9d9e90e1 pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xfb98589b pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x4ad34a33 mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x7214fc09 mc13xxx_parse_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x95556d6b mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xb9075fe5 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xd63c9594 mc13xxx_get_num_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x180243d2 wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x735de2eb wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x82f6d8b8 wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa13be146 wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xe6ea9f0a wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xeb97f970 wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xdac4d254 wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0e0a8f6c fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0e6564d8 fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0ea57b34 fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x26ca0438 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x279fea76 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2eac30c8 fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x55fbed8b fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x57252a30 fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x828092f7 fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x847ba17d fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8f0670ce fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9b903c76 fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xad803081 fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xca8abd54 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd54848b6 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xeb3dc9ad fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x15126736 iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x1c65ebf4 iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7a9cc10a iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x9d5c4988 iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd46e858f iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xfe9e54de iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x05386bb3 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x13f2abb9 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2028536a iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x236a9cb8 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x24bdc24a iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2b9592e0 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3336f86f iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x33c4e8dd iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3592f385 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3e922d83 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4042fb8e iscsi_conn_queue_work -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x42da1118 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4b33a3dd iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x55270e4f iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x57002f6c iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x585918f0 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5ffffb93 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6a32f242 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7b247ccd iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fdc5fc6 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x82dbdf9f iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8483427e iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9eec6ecb iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa86e0228 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xab3de75f iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaf120c47 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb3eac979 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb6c7f530 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbaa6e80e iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc6146293 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xce677986 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcfff33a2 __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd3b447d9 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd701f447 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdd14cde4 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe2dba1d5 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe47578fa iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xec90c563 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeeec689b iscsi_eh_target_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf2bed7e7 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf3fc940c iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf424166e iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x08fe0239 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0e5296dc iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x30f6ced4 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5a075412 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x659ba29e iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x880af3e6 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8fbdefcd iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x96e5914c iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9fac9a92 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb22cfe14 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb3353762 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbd3ffc3b iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcdbacf62 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd04e8495 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd160b66d iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdde37512 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xef469e39 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1820a2af sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2e1b373d sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3a5057c8 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3ec82766 sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x56849cad sas_eh_bus_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5715fbd6 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x85f1b2be sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x87e90dcc sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8aa3dc8d sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x94fdae89 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa1a71249 sas_domain_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa9bf7e4c sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb308948e sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb36e5742 sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb39a2e40 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb8ff0c5f sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc0a7f910 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc49ef1e1 sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc6538eaa sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc699f59b sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe0c27b24 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xea0cf402 sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xef5b3017 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf6ebd645 sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x00b702e1 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x05bfb7d8 iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0de77851 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x10e04141 iscsi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x114075e8 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2ac00544 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2c601423 iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x31217d18 iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x450d72e5 iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x491bef53 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x494435f0 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4feb4060 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x500f75fd iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5bfb36a1 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5e45b602 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5ecfee6e iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x60bf1af3 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6e40b5d3 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x701d35f0 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x70f150cb iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x82cfd644 iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8abc7f1c iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8dcbd92f iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9824058c iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9b734ca1 iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9e24da02 iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa65b099d iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa7175cee iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa91a080b iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab2228b2 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xabf229b4 iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc133244e iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xca410c60 iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xccc4a55d iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe6dad30d iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe8a66d70 iscsi_is_flashnode_conn_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xef0308d3 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf005c4be iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf6c75e25 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfff6ff38 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x01ffcfb8 sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x19d58f4a sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x221fa237 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xb30b10eb sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xb6d0c8c1 spi_populate_tag_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x32db43dd srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x5d2b42ba srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x878c8e0d srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb96aa406 srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xdab3cc35 srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf683d5a4 srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x15a2ae0c ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x515f4d1f ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x8c65d3d3 ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x97cde638 ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xafb60403 ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xdf6b015b ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xe7ba9499 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x3f946a74 ufshcd_pltfrm_runtime_idle -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x62a67c12 ufshcd_pltfrm_runtime_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xc997ae27 ufshcd_pltfrm_shutdown -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xc9f2bc31 ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xca4d49b0 ufshcd_pltfrm_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xd8318546 ufshcd_pltfrm_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xe041acb7 ufshcd_pltfrm_runtime_suspend -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x16d8daf8 spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x6c4024a8 spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x80a4578d spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xa7bbea54 spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xbf1e45c1 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x0d94c2e3 dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x1a81421a dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x5d57c4fb dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xee3d75d8 dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x28045165 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x28b81ab5 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x35958f9e spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x36344939 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3b7926f6 spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x484ecaf8 spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4b22e4ec spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x67d236b9 spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x789940ff spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7a9df1c2 spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8a256045 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa3b0f912 spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa5b5ed9d spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xaa7e98f9 __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbb14eade spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd38b9a2a spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd7b48f40 spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf532f3e9 spmi_device_remove -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x38acca2d ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x09f163c4 comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x11bb239c comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1b1bfd59 comedi_timeout -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1c778b9c comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x23f197e0 comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2c004448 comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3163b9c5 comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4f4eac76 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x572c2e93 comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5e8fc66e comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5fa46d11 comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x62e87da7 comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7057724f comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x782fed05 comedi_event -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7936c265 comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7d58b475 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x91d16f20 comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x969419b0 comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x983f48ae comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9a0538bd comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9cbc4789 comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa11ddc01 __comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa5fd5719 comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb7f7f55c comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc547e24a comedi_dev_put -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc9ffa0a7 comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcd5f3309 comedi_handle_events -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xce2d3da4 comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd000c11b comedi_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd2566a50 comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb1367f8 comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xedfcd721 comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf2218b57 comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf4836eaa comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfc60508a comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x0aff0a0e comedi_to_pcmcia_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x443436bc comedi_pcmcia_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x54d4179c comedi_pcmcia_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x717b2b07 comedi_pcmcia_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xa1553627 comedi_pcmcia_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xa3a1d40a comedi_pcmcia_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xd09a9031 comedi_pcmcia_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x0eadc591 comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x2bf067e4 comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x8028ba24 comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x896ae2d3 comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xb70e4447 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xdb84a8fc comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x043d9550 comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x0a3d7452 comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x1ffebd82 comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x22db8c97 comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x31f3075a comedi_8254_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x36af9a01 comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x5c307ba8 comedi_8254_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x5db5d579 comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x62205be6 comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6360caf8 comedi_8254_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xa3ddf253 comedi_8254_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xa99a2620 comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xad491454 comedi_8254_load -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x15341b31 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xbeadb4ff subdev_8255_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xdeae6166 subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x7ed59045 das08_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x6d384ca0 labpc_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xee25a404 labpc_common_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x00d7d769 ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x53cc847a ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x608bb5d6 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x86ffed57 ni_tio_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xb5ff1894 ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xc37c174a ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xe44cb3b2 ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xecf99384 ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x339c65de comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x5ee94454 comedi_dio_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x775dc712 comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x9954bb52 comedi_open -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xef4d9770 comedi_close -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xfb9eb06c comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xff89d216 comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x4d5792ba adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/iio/iio_dummy_evgen 0x74189961 iio_dummy_evgen_get_regs -EXPORT_SYMBOL_GPL drivers/staging/iio/iio_dummy_evgen 0x9e642d41 iio_dummy_evgen_release_irq -EXPORT_SYMBOL_GPL drivers/staging/iio/iio_dummy_evgen 0xcc30b960 iio_dummy_evgen_get_irq -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x0368f538 most_deregister_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x0cd45214 most_register_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x1581d89c most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x3690dc6a most_register_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x57fb6abc most_put_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x789ab247 most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x86f36072 most_submit_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xa4723eda most_deregister_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xadc5ce1f most_get_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xb6315351 channel_has_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xda6be324 most_start_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xdf580ed4 most_stop_channel -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x006eaba8 synth_add -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x00781e47 spk_synth_immediate -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0956f878 spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1322ae0c synth_remove -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2d02013a spk_var_store -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x526e6b27 spk_var_show -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6dba7926 spk_do_catch_up -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x7a12347f spk_serial_synth_probe -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x86442336 speakup_event -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x91f8b366 spk_synth_flush -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb2978dbc speakup_info -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xf8ca275f spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain -EXPORT_SYMBOL_GPL drivers/uio/uio 0x2dade6dc uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0x370bb6f5 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x8a3bb05d __uio_register_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x47445d7f usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x9d5c6396 usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xb0e7c7f6 ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xc9de45b0 ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x036c7513 imx_usbmisc_init -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x0a72db99 imx_usbmisc_init_post -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x7b39a487 imx_usbmisc_set_wakeup -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x0e9b74a3 ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x12a6dc99 ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x61f5a190 ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x75d12d5a ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xd087edfc ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xe1d85d14 ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0533e7ad gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0f7acf09 gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x12347941 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x23197dd5 gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4e7b3f62 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5611b7e9 gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5d62f0cd gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8c69d393 gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb13100c0 gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd06caa6b gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd21c2fd5 gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xef1320cd gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf034d43f gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf499c243 gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xffe1785a gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x0bade9bf gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x21d35c82 gserial_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4e3dfea7 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x640196f5 gserial_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x2585c305 ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xcdc2e3b9 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xd9eaf9ac ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x02a9ab57 fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x51366c9d fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x546c7f99 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6b946cbe fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7c786422 fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8abad384 fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9171e8db fsg_store_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x987bc0cf fsg_config_from_params -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xaeca4215 fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xaecc7756 fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc3aafb27 fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc54909d0 fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd35c5545 fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd468f882 fsg_common_set_ops -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd6a773c3 fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe375e370 fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe6ba798e fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf97064e6 fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0947ec98 rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x123a6387 rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x17615259 rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1ad2e2c6 rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3e909e6f rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x40e7c442 rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x549f78da rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x58f28a25 rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x74282ad0 rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x75ad794a rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x79a88f43 rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8d5b4538 rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xac93007f rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbd945a95 rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf5dbd30e rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0a6c6631 usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x10fd9d44 usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x11e52143 usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x16bfeb58 usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x184855fe usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2165db39 usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x21f4a5d5 config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x246156d1 usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x31640d39 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x341c21a1 usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3a0b0c16 usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x41e2297e usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x49a042e7 usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4f2308c5 usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x51c579e9 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x535396ef usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x54376afb usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x549eaab3 unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5fce7a0f usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x705417f8 usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x87a96251 usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x89e78955 usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa07386a6 usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb20cf6fd usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb337de47 usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcd6b7aec usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd223ebb8 usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd285fe8e usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe45f99c5 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe9e3246d usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xee4c1b90 usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xeef22df3 usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0cc75430 usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x10e36d0a usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x294140f0 usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2eeab586 gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3554a678 usb_udc_attach_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x39db3fe1 usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x40d3fc24 usb_gadget_map_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4de5218a usb_gadget_probe_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8e1a16f6 usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9ec19a20 usb_add_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xba4fc47d usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc6d2dc92 usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xeb553c83 usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf0e246c9 usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x2833ae22 ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x69726388 ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x1f1d2871 usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x22136e1b usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2a752f57 usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x3d037018 usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x54509665 ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8569c6ba usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8acc344f usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xacd3abd3 usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xcaa20fa6 usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x657023a1 musb_interrupt -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-am335x-control 0xccaedb53 am335x_get_phy_control -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x6df7977a isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x42dc341c usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x04d4a8af usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x111795b9 usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x19001a06 usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1d73f9f8 usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x20d0746a usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2478b6fd usb_serial_handle_break -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2ebf620d usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x30a32bff usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x37712937 usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4b1f6dc9 usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x625e52a8 usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x765113e9 usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8162667d usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x83bc5e37 usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb5967bca usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb764e25c usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbbc3bb32 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbf95bc01 usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdc38ebeb usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xeeb7ab1d usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfd73acaa usb_serial_handle_sysrq_char -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1b717f24 usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2a034840 usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x553a730d usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x71aed218 usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x87222047 usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x890f53e7 usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb02f48d9 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb90118a2 dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd891f7ab usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xfd14787b usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xfdb60bd0 usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xffd7ec95 usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x23a5801f wa_dti_start -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x2f09e3db wa_urb_dequeue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x7143b301 rpipe_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x7570649d rpipe_clear_feature_stalled -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x7a4519aa __wa_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xb630e332 wa_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc543b60e wa_process_errored_transfers_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xd89a87a1 wa_urb_enqueue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf4654c3f wa_urb_enqueue_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x1ab7a7a3 wusbhc_rh_control -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x31b6ffc7 wusbhc_b_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3517efff wusbhc_mmcie_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x40bdde57 wusbhc_mmcie_rm -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4223c1e7 wusbhc_b_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x5a1b2b85 wusbhc_giveback_urb -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x78ccd734 wusbhc_handle_dn -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7ba1f27e wusbhc_rh_start_port_reset -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9c88078a wusbhc_chid_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa56332b6 __wusb_dev_get_by_usb_dev -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa5fa3f44 wusbhc_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb4159f93 wusbhc_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb9dcf193 wusbhc_reset_all -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xdd482f8f wusbhc_rh_status_data -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x3faafd2f i1480_cmd -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x53e52471 i1480_rceb_check -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xc51c4a37 i1480_fw_upload -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x08386b89 uwb_rc_cmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b8aad57 uwb_est_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x13239460 uwb_rc_alloc -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1b2d22d2 uwb_pal_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1b6860ec __uwb_rc_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1f2851d0 uwb_rc_cmd_async -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x362e2f51 uwb_rc_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3ab3bf20 uwb_rc_put -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x42def427 uwb_pal_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x457d4b46 uwb_rc_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x474d61ff uwb_rc_pre_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x49068d5e uwb_rc_dev_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x49f28ac9 uwb_rc_ie_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4bbf1412 uwb_radio_stop -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x535defa7 uwb_rc_neh_error -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5a7692d9 uwb_rc_vcmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6ebbaf0b uwb_rc_neh_grok -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7521feb6 uwb_rsv_destroy -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x792c5434 uwb_pal_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dcfcd23 uwb_ie_next -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7fc8a023 uwb_rc_mac_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x92b776b5 uwb_notifs_deregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9dfc3989 uwb_radio_start -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb248f19a uwb_rsv_establish -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb94431fd uwb_rc_ie_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbdae71e8 uwb_rsv_terminate -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc66ed254 uwb_rc_get_by_dev -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc8be5301 uwb_rc_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xccebc436 uwb_rc_reset_all -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd9afa89b uwb_rsv_modify -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe14c54c9 uwb_rc_get_by_grandpa -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe3eb5f77 uwb_rc_post_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe43f1221 uwb_est_find_size -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe5e2ff90 uwb_notifs_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe8f42e8e uwb_dev_for_each -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xed59d7bd uwb_rsv_accept -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf67b006a uwb_dev_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfbc4bbf5 uwb_rsv_create -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfe05f651 uwb_rsv_get_usable_mas -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x034db5e6 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x20f324a4 vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x311f217e vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x31210301 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x32bcc5e8 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x35e26509 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x435b800d vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6003f2f0 vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x67814e5c vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6b97cba7 vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6cb99a42 vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6fc2b86e vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x83dda781 vhost_work_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x849bf5f1 vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x84d387e3 vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x88891f36 vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x94e44bc8 vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9811cabf vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa15d58d0 vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xab9da0cd vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xadec1667 vhost_init_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb39c8d94 vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb3db5e72 vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbcb4b7db vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcce54cc3 vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdfe3827f vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe876a395 vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xefc9486a vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf1d32721 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfccdcae7 vhost_signal -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x10b4d5a7 ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x2077c643 ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x7067293d ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x7357e8a7 ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa8cd9555 ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xc68e9412 ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd9913f1c ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x13f247b8 auok190x_read_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x18a3c24c auok190x_send_command -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x434d4060 auok190x_send_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x6f06751f auok190x_send_command_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x74de357e auok190x_send_cmdargs_pixels -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x95772cf3 auok190x_send_cmdargs_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xec695951 auok190x_pm -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xedcea215 auok190x_common_probe -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xf5babd18 auok190x_send_cmdargs_pixels_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xf989210b auok190x_common_remove -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x4d98d078 fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x8343673d fb_sys_write -EXPORT_SYMBOL_GPL drivers/virtio/virtio 0x0ac0c32d virtio_config_changed -EXPORT_SYMBOL_GPL drivers/virtio/virtio 0x0cd0303c unregister_virtio_device -EXPORT_SYMBOL_GPL drivers/virtio/virtio 0x22f7b736 register_virtio_device -EXPORT_SYMBOL_GPL drivers/virtio/virtio 0x383f7dbb register_virtio_driver -EXPORT_SYMBOL_GPL drivers/virtio/virtio 0x4ec91f9c unregister_virtio_driver -EXPORT_SYMBOL_GPL drivers/virtio/virtio 0xa116164c virtio_device_restore -EXPORT_SYMBOL_GPL drivers/virtio/virtio 0xb95e6ca5 virtio_device_freeze -EXPORT_SYMBOL_GPL drivers/virtio/virtio 0xdd31b258 virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x1b732760 vring_transport_features -EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x1d3d0181 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x2225514b virtqueue_add_outbuf -EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x25bd3578 virtqueue_add_inbuf -EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x28af28f3 virtqueue_notify -EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x2bb4f995 virtqueue_is_broken -EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x2d66fccc vring_del_virtqueue -EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x2e4c3fac virtqueue_get_used -EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x3ce3907e virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x82c18589 virtqueue_kick -EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x8525964a virtio_break_device -EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x9b025cbf vring_new_virtqueue -EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0xba15be68 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0xc6750d57 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0xcd41b421 virtqueue_disable_cb -EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0xcfdef0cd virtqueue_enable_cb -EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0xe78ebe99 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0xef1d2f7a virtqueue_get_buf -EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0xf1087eaf virtqueue_get_avail -EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0xf501a62e virtqueue_add_sgs -EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0xfa4acb9f virtqueue_poll -EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL drivers/w1/wire 0x00baa0ec w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x2ef6d040 w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0x4bc8990b w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x5abac07a w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x5ba340c8 w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0x7b6a91a1 w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x86587cff w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0xcec51c6e w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0xe76afdaf w1_touch_block -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x52ceb200 dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd8a2373 dlm_posix_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xef4a4c0a dlm_posix_get -EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x18a566dd nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x5a9f3383 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x5c44fc68 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xac9d2449 nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb97d43ad nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xba8c4cde lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd24d7906 lockd_down -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01e53c8e nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03a05020 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x045a482b nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0730f870 nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x096c2144 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b7f7bf1 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0fb24fae nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x106685bc nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x163fcaae nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x183b138b nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c7966e4 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e0b1d6b nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ed18a84 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2231f050 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23a3659a nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24123b0d nfs_pageio_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27c1102a nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28ead224 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a514ecf nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2bfb3c7d nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cae8ab4 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d859586 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e3a5595 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33f8a66f nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35ba857f nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35e8d869 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35fc4b46 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3793ac83 nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d8713da nfs_set_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3dd01475 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e50103b nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x417cbb1d nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x434efea5 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x437c31a9 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4995b81e nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53a2e1ed nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54a262b7 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5599cadd nfs_remount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58418204 nfs_destroy_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b1d137a nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b61cd9d nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b7fc553 nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5bde642c nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62378926 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63201463 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x651af356 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x658bc8c8 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66483e84 nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6986e321 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d5c5f0e nfs_fs_mount_common -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6dc7c6a1 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e335a76 nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f15a603 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x712d7f00 nfs_file_splice_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71f9c1df nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7465770e nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7603ef14 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77ee0169 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78500360 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7947f31c register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x79d8e486 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a82a2b9 nfs_pgio_data_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c17759a nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e901b39 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ec65e34 nfs_fs_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f25a2b6 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fde040f nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84222e45 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85856c00 nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85c566c2 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x860902a9 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8839399e nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x884ef2eb nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b10b928 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90ab088d nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93d73b7f nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x946ddaf4 nfs_try_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x986d0f30 nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c4aada7 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ddebb76 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0865a8e nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0a026b9 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4363f14 nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4d84bf4 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5c2c6ad nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa64a16b7 nfs_clone_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa711a27f nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa5f7079 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa14361 nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaba97643 nfs_file_fsync_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3f01d7b nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4bf46fd nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb854844b nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb926ac75 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcbda67e nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbeaa2275 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc24a9f27 nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2a6e0a6 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc32365d2 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc63ec6ae nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6a0c8a3 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9eacaa0 nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9f54f4b nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca01c59a nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd43155f nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd07f01ca nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd25405f8 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd33f88b4 unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4083e68 nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd45e32eb nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd482d601 nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd77568b5 nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd69d215 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe17919ac nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe5db49ab nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe72d481f nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe74631d0 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe86002b9 nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef36b29f nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xefc59c49 nfs_fill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf02cd55a nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2f3e4dc nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3a33a6e nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7f556e2 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb2da3bc nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe3cc98a nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xdfec7ed2 nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0949480b pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0c2075aa nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0c43c34b nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x140430b2 pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x153551bb pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x15a0b7b1 nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18322b5a pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x196f20d8 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x217b733b pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x218df77f nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2575d345 nfs40_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x274e03ec pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27d3c691 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2ad87e01 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b597db0 pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c277a35 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x300e51d2 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30144f80 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3ab51e9b nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x43de5bc4 pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x44070884 pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48cddcb6 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4b1bc92d _pnfs_return_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4bb20c5a pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4c8d83aa nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x587ddd35 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5e0dd652 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5edd7f84 __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x666e3d1e pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x68d39df4 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6aa193c6 nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f5a1e8e pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8299df90 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83233882 pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x84317304 nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8afe0b1d nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c11c661 pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8f0397cc nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x91b87c68 nfs41_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x92b73ba1 nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x92d0eb8d pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa4c673e6 pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa737cb56 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa7da8830 pnfs_put_lseg_locked -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa8be8341 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xac765cba pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaf73fd67 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc9ce7400 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc9e740fb nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcae2c177 pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb3caacc nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcd821f47 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcdf49664 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xce7e8cee pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd576bffd __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd61a87bb nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd921acba pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdb53491f pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed074d81 pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf40c0b4b pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xffbc489e nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x0c54dec9 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x76635bfc locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xdde76f5e locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x1a635fd7 nfsacl_decode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x5d99f631 nfsacl_encode -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1cb231d0 mlog_not_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x283dcf03 o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x29a63937 o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x323a5800 o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6b12566d o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9e8e58c7 o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa9f5379a o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc69ad297 o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xe8865990 o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x25c36e01 dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x390ab7b8 dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x5459ea84 dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x5c902669 dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd6a3e135 dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xec592fe7 dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x58e1c62c ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x59946564 ocfs2_plock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa30a2100 ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version -EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq -EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures -EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats -EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb -EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random -EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait -EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop -EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end -EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init -EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init -EXPORT_SYMBOL_GPL kernel/torture 0x9c398ed1 _torture_stop_kthread -EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin -EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin -EXPORT_SYMBOL_GPL kernel/torture 0xc88529b1 _torture_create_kthread -EXPORT_SYMBOL_GPL kernel/torture 0xca7dd382 torture_shuffle_task_register -EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init -EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end -EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init -EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping -EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress -EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x1621214a notifier_err_inject_init -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x9915abe0 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x021957e1 raid6_datap_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x0f8a2742 raid6_2data_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xd4cb6873 raid6_call -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x201d8ea3 encode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x29fa419f decode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x57861324 base_inv_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x57d39367 base_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x882ce5fc base_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x9e0112d0 base_inv_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xaedfbb15 base_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xc8fca8a6 base_inv_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xd11741a1 base_inv_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xe3d900b5 base_old_false_key -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x7df078da lowpan_header_compress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xf8a56161 lowpan_header_decompress -EXPORT_SYMBOL_GPL net/802/garp 0x11b67ac7 garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0x50e17c4f garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0x5121a2a5 garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0x6b67270a garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x8271a10e garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0xe790bf05 garp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x0839b599 mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0x1e868aa1 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x6a300243 mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x6d998a63 mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x8aaf445a mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0xf5fe8a85 mrp_request_join -EXPORT_SYMBOL_GPL net/802/stp 0x54adc365 stp_proto_register -EXPORT_SYMBOL_GPL net/802/stp 0xc13a5047 stp_proto_unregister -EXPORT_SYMBOL_GPL net/9p/9pnet 0x581868be p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/9p/9pnet 0xf8f8cc9b p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier -EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier -EXPORT_SYMBOL_GPL net/ax25/ax25 0x24ef291e ax25_register_pid -EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast -EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x03ac8b57 l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x18c32a02 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x28043656 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x42e5cc1f l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa1531e94 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa8ab30af bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa9590428 l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb0c7d382 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable -EXPORT_SYMBOL_GPL net/bridge/bridge 0x048efc94 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x093f67c5 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x29821e5b br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x6a565889 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x6e3cc260 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0x99ad59cc br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc0be3bdd br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc60eeee3 br_deliver -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x07622914 nft_bridge_iphdr_validate -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x31c0e1ab nft_bridge_ip6hdr_validate -EXPORT_SYMBOL_GPL net/dccp/dccp 0x034a30b0 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x08853327 dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x09a123b7 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0af8f7f1 dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0dd6cc81 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x14b80968 dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x20ea00ab dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x22aaeaf5 dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0x23efd84b dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2e2c5b3a dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2ea35f55 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2eb06b45 dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3219d351 dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3772fbea dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x41d53127 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x49309922 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x53e5ff62 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x54b57d84 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0x55d64992 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59dcfbd7 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5f5ce81c dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x67a7a4fc dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7b0bc115 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x80af4639 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb0596156 dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb313681c dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc5ec6f21 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcdb8e5e7 dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd7642cea dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xda65d5b9 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe5d041cb dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0xef9dd2fd dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf2429782 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfaae85b6 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x0acc88d2 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x15895d3c dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x305994f5 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x96b5cf60 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa1a6bbf8 dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xcf8c50c8 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x5d5f0594 ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x6a240d31 ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x9a57c8a0 ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xaf949347 ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ipv4/gre 0x0e002324 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0x7a96da6a gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x03480ddb inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1e5259a3 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2760b9da inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb72b0897 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd4b636c5 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfba1cc59 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x89531a97 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x29a9686f ip_tunnel_delete_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x29d595e1 ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x35d015e9 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3f8096a4 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x57bf4deb ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x677cba35 ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x937a7ae7 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa53936e7 ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcba272cc ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd1fecc01 ip_tunnel_ioctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xda503e5f ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xef68d23c __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf480414f ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf565f702 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf85c6278 ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x4e3521a3 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x06ab44ac ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xccde5727 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x3a74e0ae nf_nat_ipv4_out -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x3d3ec6a3 nf_nat_ipv4_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x6e12fdc8 nf_nat_ipv4_in -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xca21f7ac nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xec9c9be7 nf_nat_ipv4_local_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x716c4a92 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x156f0b15 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3ab4d8bc nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x5f1638cd nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc6d07e9a nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xd37a8246 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x6f420a0e nft_af_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x62114096 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x8405f553 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa019fe34 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xb9ff0e38 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xeaf6297f tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x3305f102 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x35d81542 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe137c1c2 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe73dfd62 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x055333b6 ip6_tnl_dst_destroy -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x1bb3a2c4 ip6_tnl_dst_set -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x6421d7c7 ip6_tnl_dst_init -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x752f82a8 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xad57d1e3 ip6_tnl_dst_reset -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xbbd614c3 ip6_tnl_dst_get -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xff0a2536 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x12f3d555 udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x97ef157b udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x54a347b1 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x0ef7cd89 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x9d2cacfe nf_ct_frag6_consume_orig -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x86e049f1 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x1ab08485 nf_nat_ipv6_out -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x2031f0ad nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x2b4f3743 nf_nat_ipv6_in -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x2eabb387 nf_nat_ipv6_local_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x7e7d3939 nf_nat_ipv6_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0xe0d1c244 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x4856accf nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x4a48baa7 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6e4e6341 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa4f507d0 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xf575fce2 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0xf1632bdd nft_af_ipv6 -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x065fa179 l2tp_tunnel_closeall -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x19fe32e9 l2tp_session_free -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x266a4c4c __l2tp_session_unhash -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x31978c5a l2tp_tunnel_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x43e3e0ea l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x61fae10e l2tp_session_queue_purge -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x69e60f92 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x76e27e11 l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8967bb68 l2tp_tunnel_find_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9520eb7c l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x96d70256 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb4573396 l2tp_session_find_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb69b8b4f l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc11a41db l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe4a0cb13 l2tp_session_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xed73cc13 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x5ca20678 l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x158ed19a ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x25bc1118 ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x301516f5 ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4600feab ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4c4cb545 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5a923af3 ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6ad3e317 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8714d2f4 ieee80211_iterate_active_interfaces_rtnl -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xad0efcfd ieee80211_set_key_tx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xaeebdadd ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc8b64ae6 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd0bf5743 ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd3e0b20e ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd437a73a ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8859fa1 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf4d96aa1 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf8111cd8 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf9fa191d ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x034a1f85 nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x272fbb5e mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x595133e5 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x97e96937 mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x03448742 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x11dd6525 ip_set_get_ip_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x130ea7ea ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x161860cf ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x57244566 ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x599e5095 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x61a7105f ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x67b51062 ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6d67edb1 ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8a91f131 ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa30206a1 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd2060d98 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd89fd0fb ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xea662f8b ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf385344b ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf8b6ea28 ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x0a326abc register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xe3a16641 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xeca80579 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xeddc190b unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x00646807 nf_ct_l4proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x03bfcfdf nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06913f59 nf_ct_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x07cfd8c0 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0864eda0 nf_conntrack_l4proto_tcp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0f297c49 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10b1ebbe nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11318b09 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x157e065a nf_ct_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x185a2637 __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x19675131 nf_conntrack_l4proto_udp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x19e57360 nf_ct_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ba0504b nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b0ea004 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b48dfe5 __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b5133b3 nf_conntrack_l4proto_udp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2cb405f4 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2fe76193 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x344798ad nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x34e7b003 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x35a6f218 nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x35c2fb70 nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37dbabfa nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3a528f22 nf_conntrack_l4proto_tcp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3bad71e5 nf_ct_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3df728e6 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x40391d29 nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x448dfc87 nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x48e5694c nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x52982db3 nf_connlabel_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x52dc10bf nf_ct_l3protos -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x52f13679 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x53182c67 nf_ct_get_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x56f7a4d1 __nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59b509d8 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5f78957b nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x64fc46cf nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6abc5688 nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6be9d28d nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d8c2483 nf_ct_l4proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e1e1fae seq_print_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x75d2c2a6 nf_ct_l3proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x777c9584 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7d6a1d9c __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8603e7b4 nf_ct_expect_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x865e03a4 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c06d35d nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8d3ec3b0 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90375f28 __nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x961142ac nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x96265b65 nf_ct_l3proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9635d992 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x96e1d03a nf_ct_l3proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x997427e9 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b284a0e nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa140c9b2 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa3646cf5 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa45ac616 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaadbef56 nf_conntrack_l3proto_generic -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad4cbf25 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad9d557d nf_ct_iterate_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafcfe4f4 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb2bfc22b nf_connlabel_match -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb2e93081 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb7d1b876 nf_ct_l4proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbdb81ac1 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbfaf3d01 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2abd2fd nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc3ecbab3 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc454f49f nf_ct_l4proto_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc484f446 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc607fc08 nf_conntrack_set_hashsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcfcb94d8 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd249e113 nfnetlink_parse_nat_setup_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xddc9ca71 nf_ct_expect_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe22c52da nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe61133b9 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe770f2f4 __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf5b0e692 print_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf8d599b0 nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfc7e6f81 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xad5a9fd3 nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xdeafa11c nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xb6d1cc56 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x194e1b9b set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x2e4d8c79 nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x37d70786 set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x47294dc5 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5c0c334c nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x78ac5bf7 nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa85d8bd3 nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc53587ff set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd4595859 nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xdaad8ebc set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xc358b487 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x1f69085e nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x89e07d12 nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xcabbb06d nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xffb5128a nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x78b74c80 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x8bf385a8 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1c003d10 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1dabc7f9 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x212331d2 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x48194948 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x4ec5e5e8 ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd4bdf41d ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe740ec2d ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x4fa3e970 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x00085354 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x0e84626e nf_log_dump_tcp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x2d3d0946 nf_log_dump_udp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x9d45283b nf_log_dump_packet_common -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xd847109d nf_log_dump_sk_uid_gid -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3027baac nf_nat_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x357b5f6b nf_nat_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4e31b071 __nf_nat_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4e3b9917 nf_nat_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4ebaeaa2 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x68195220 nf_nat_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x74df1ef5 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7bed11d0 nf_nat_l4proto_unique_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x94a8a167 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x1cec135e nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x52e672fc nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7d92bdab synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8841d39b synproxy_build_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb1cf853f synproxy_tstamp_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0a4bd338 nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0d0ee592 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x159135e7 nft_set_gc_batch_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x179c536f nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x21a8c051 nft_unregister_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2911ed03 nft_register_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3958d002 nft_unregister_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x48084781 nft_validate_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x72df46b4 nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7f6149b4 nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x887793d7 nft_register_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8a94394b nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa46fae06 nft_unregister_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xadd0393a nft_register_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb69d6f81 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbabd0042 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc4ab4d0e nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x000ad99d nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1bca76d2 nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x2da8d063 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x461fd271 nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x91550720 nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x95860dae nfnetlink_alloc_skb -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xceb400bc nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x2a90d3a2 nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x399072f1 nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xd1628445 nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0xd14652a2 nfulnl_log_packet -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x285499c7 nft_masq_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xf9d9023f nft_masq_init -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xfdbb5afe nft_masq_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x1d23bce6 nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x1fb6ada5 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x53d3a2be nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x5eb2916d nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x7b2cd45c nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xc272fe40 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x693b841d nft_redir_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xe108021c nft_redir_init -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xf07421d4 nft_redir_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x771c4102 nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x7b4a2830 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0b607635 xt_hook_link -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x29d6bda9 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x548446d5 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x71316a18 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bd31884 xt_hook_unlink -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x867d5600 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8ae62bb0 xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa3da9260 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xabb78bf8 xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc6e32f82 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xde811fb3 xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf1a2cb29 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf3c0d8b4 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf89816aa xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x57909dc1 xt_rateest_put -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xd0f26ea3 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x744e038b nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x8847845b nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xf81e5235 nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x397cfc14 nci_uart_set_config -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x4e2e5fd5 nci_uart_unregister -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xae94f2de nci_uart_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3fc9e431 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6049d990 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x67359a4e ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7d266ca7 ovs_vport_receive -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9dc1c547 ovs_vport_deferred_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xbab6425f ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc14e787b __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda63b6ef ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf6ccfac9 ovs_netdev_detach_dev -EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x0e727157 rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x13841b73 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x2167fb92 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0x222808a2 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x339607c6 rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x49326266 rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x5b487f62 rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0x5b9bacf6 rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0x6605a875 rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x69142fca rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0x6ab63a32 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x6f6c2105 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x7c8ece0b rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0x7da75a43 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x8bb190af rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0x8cb86e20 rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x972330e2 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0x99013b08 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0xa55bd36e rds_page_copy_user -EXPORT_SYMBOL_GPL net/rds/rds 0xba58ca1d rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc642cc2c rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0xd033af36 rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0xd3c181bc rds_send_get_message -EXPORT_SYMBOL_GPL net/rds/rds 0xdd380e42 rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0xed149c0d rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x40d6bacf rxrpc_register_security -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xf20322ae rxrpc_unregister_security -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x193a787a gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x67bd5a3d svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb2b65b55 gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0098c5d7 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0132af99 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05166dc0 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x052620a9 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0776dfcd svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09068412 cache_seq_stop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d46521e sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fd7919d xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11640874 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x118321cb xdr_skb_read_bits -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x119a63f9 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11ddf1db svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12155bd1 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13592dd4 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x162e22bf cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1678b3e0 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16b37873 svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16c6ec3a rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1968273d xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19894ecb svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1dffddde rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ed009d3 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ed0a9c4 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2046c61e svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x208cee5c rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20d9e96a rpc_lookup_cred_nonblock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x241d6587 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x245cb9aa rpc_lookup_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24f0b93d rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27dd07b1 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x284bba42 rpcauth_generic_bind_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x285a2dcf xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29d2a53c svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2baff843 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c78de9d xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2cbde304 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2dc65f3e rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e937225 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f0c2cd5 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3198e251 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x334a2483 xdr_buf_read_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33bfcc4f xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34e90bee xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36f1888b cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38932db8 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38ddd734 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ae4edd5 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b22ffbb xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b57ed88 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b790b17 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3be97fa1 rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d013885 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d668e14 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fef372b rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x413df215 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43d1ebae rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4451db9b rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45cc0e0e rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46cb6ec0 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a4b5329 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e036243 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f7c2f37 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4faef993 rpc_lookup_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fbb1c8f write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53c46b2c xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55ca6453 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x566f94a0 xprt_set_retrans_timeout_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56ced6af xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x573b6561 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58821a78 rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58f4b245 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a16b99a rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a93a2a0 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ac10033 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b5898be rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b986e7d rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5dd0727b svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e2b0639 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e2f4d2a rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f37d971 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fb36148 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x603f1570 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62fdd97d cache_seq_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64cf69ab rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x656598b1 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x660fe843 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x682c2256 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68aba899 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b73cbeb rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ccd2470 svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d1a5bd7 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6dac7ea8 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fa3813c rpc_protocol -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7101e19c rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x716bef68 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x732edf4a rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77533c12 svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77ca6ebf rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79513f1c rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c5abe9a rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x803ec6bb auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x812332a8 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81603683 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82910df0 rpc_rmdir -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8386a0e8 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84a96821 xdr_partial_copy_from_skb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85a0b2b0 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8649b236 sunrpc_cache_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86d8f8f5 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8912ad24 xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a9d186d svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ac9c060 svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b9bb892 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e743571 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90801227 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92d8d7d3 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x951bd3a7 svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x960a67bb rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96ca3ac6 svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97ce1eb1 svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x987e4fb0 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99bfe2b0 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a6cf55b svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c22d349 svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fe216b7 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2138f04 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa29c8ac3 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa44394a8 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa495202d xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5991046 cache_seq_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5ff467b auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa622cd96 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6a314b1 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa707f4a3 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa70ffd1e rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7dafbbe rpc_task_reset_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8aa24bc rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9ae5e7e rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9e2d45b rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaaa13832 cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab1daa9e rpc_get_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab4cb5b1 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab720c3e svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaed246bf xdr_set_scratch_buffer -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf11ac61 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0a3d0cc xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2a8a52e xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb54773ab cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6e75627 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb72abf16 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb80de2ac rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb81cf405 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb873b004 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba14b76a rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb0ebf00 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1ee5cfa xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7e31e49 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc863f794 rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc88582ce xprt_lock_and_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8c454fc xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9382d50 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcaa03b88 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc70e7c4 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd343432a rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd40cf547 rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4c4c6d4 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7b03ec3 rpcauth_cred_key_to_expire -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7e24160 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9ee6009 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb5480ca rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb5811ae svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde518e63 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe06334e0 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0e476c6 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3f4f7d5 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4b653ed xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6c88898 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8adede0 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8f50f29 xprt_set_retrans_timeout_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb707651 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeec20d06 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeedef6bd auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf08ec237 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf10ab004 rpcauth_key_timeout_notify -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf13ac0aa put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf283de96 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf399722a __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4d8239c _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5b4ca4e csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf726671d rpc_print_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8361b33 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf974600c rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa9702d1 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc01e82c rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdf67d89 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff704298 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffc5836f xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfff7df7b svc_set_num_threads -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x016fdc88 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x05a238de __vsock_core_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x078d845c vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2accaf17 vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x39f90af5 vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3c7c9562 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x52eed020 vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x74e91915 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x783bd63c vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7b8f3922 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9dabfee0 vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9f31a819 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc2462f2d __vsock_create -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf593c40a vsock_pending_work -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfb6fbb8e vsock_stream_has_data -EXPORT_SYMBOL_GPL net/wimax/wimax 0x010c0410 wimax_report_rfkill_hw -EXPORT_SYMBOL_GPL net/wimax/wimax 0x05ac1b8e wimax_state_change -EXPORT_SYMBOL_GPL net/wimax/wimax 0x38299a87 wimax_msg_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0x3b6cb38a wimax_state_get -EXPORT_SYMBOL_GPL net/wimax/wimax 0x7598c1e8 wimax_msg_send -EXPORT_SYMBOL_GPL net/wimax/wimax 0x82a14589 wimax_dev_add -EXPORT_SYMBOL_GPL net/wimax/wimax 0x919e6a65 wimax_msg_data -EXPORT_SYMBOL_GPL net/wimax/wimax 0x9434f50d wimax_msg_data_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0x9e5c7e13 wimax_msg_alloc -EXPORT_SYMBOL_GPL net/wimax/wimax 0xd45ff550 wimax_dev_rm -EXPORT_SYMBOL_GPL net/wimax/wimax 0xe0cce500 wimax_report_rfkill_sw -EXPORT_SYMBOL_GPL net/wimax/wimax 0xf13f924f wimax_dev_init -EXPORT_SYMBOL_GPL net/wimax/wimax 0xf841f0c3 wimax_msg -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0c67f871 cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x26a43723 cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x28a3ec09 cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2d0d0094 cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3a0ba388 cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x57d1ba4c cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x597f3deb cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5e547df9 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7be7ea11 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb16a4834 cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xba4249ca cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xda73c6d0 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe58712c9 cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x0c28e5b9 ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x5b1642c2 ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xb564f6d3 ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xff7e8007 ipcomp_destroy -EXPORT_SYMBOL_GPL sound/ac97_bus 0xa82ea422 snd_ac97_reset -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x7639139e snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x7b902753 __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/core/snd 0x4309ed58 snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0x4b3d0b98 snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0x6f46863d snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0x76c67d16 snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd 0x827eeb22 snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd 0x9094a63f snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0xd49ee513 snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x3083e936 snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4ac6fecd snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x56f2730d snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x59c402e0 snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5e22f011 snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6efb21df _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc77d3f52 snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe1354e95 snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf95f756a snd_pcm_stream_lock -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x05f12412 snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x4eeb5a5e snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5fe7cb27 snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x6676f154 snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x7f7b7c07 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x91a97365 snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9786d812 snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9c76b6bc snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa9935006 snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe9041466 snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf811f244 snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1977 0x9ae1a8f8 adau1977_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1977 0xe1a12fdb adau1977_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x72ac75fc cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x8d9ce1f2 cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x05099018 cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x23a17583 cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x1227a29d cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x6f22628c cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xe618c74a cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x5defa0e0 es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xde3528cf es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x4b180136 pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xc94c56c9 pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xdd81f0e8 pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xe6226175 pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x46bec2d4 sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x631f1ede sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x70708969 sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xad0c54de devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xfa28fa9d sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xa00e3a95 devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x07123ca5 ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xe41611a8 ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x697d2353 tpa6130a2_stereo_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x88b77018 tpa6130a2_add_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x10c4e6c3 ts3a227e_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x069654f4 wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x3a50ed30 wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x85386352 wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xaf994f2d wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xcd1743dc wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x15472422 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x1055294a fsl_asrc_get_dma_channel -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x38cf0a26 fsl_asrc_platform -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x30693bb7 imx_audmux_v1_configure_port -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x58631dab imx_audmux_v2_configure_port -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x012ef109 snd_soc_remove_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x039d19ea snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0574bf37 snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x098569fa snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a3121c3 snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ac58081 snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ba01d46 snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0bbda632 snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0fbc8113 snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11585d51 snd_soc_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13fbfbb0 snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17212cb4 snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x191410f5 snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ef7dd72 snd_soc_codec_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21c5d778 snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x222cf18f snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2239baa1 snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2245040d snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24f4d80f snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x252707e4 snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26001db7 snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26bd73eb snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x27760316 snd_soc_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28c68e3f snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2dff3361 snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e4671e6 dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2eb9e48c snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x310cd066 snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33d6e270 snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3461ffdd devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x389d0458 snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x393b9d8c snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39746246 snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3cc5d9cc snd_soc_dpcm_be_get_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d58aae1 snd_soc_of_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3da96101 dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ed63de2 snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4054803d snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x449acf36 snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x45a7dc73 snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47cf5934 snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a6cd7f6 snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d7eee2e snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ebf63cf snd_soc_lookup_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x536d1948 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x549ff412 snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55d6d5a8 snd_soc_codec_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ac0b7a3 snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6178281b snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62f9f714 snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6404288d snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x649143d0 snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x671985ab snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6761cf58 snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6db5135a snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70161224 snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x716b15ac snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x759a232b dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x763f842e snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x76892830 snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ca34f7c snd_soc_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7cc107ec snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f33d03f snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8142d5e5 snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81d11ffb snd_soc_add_platform_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8320b2dd snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8349d0e3 snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x841f5c75 snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86b509a2 snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86b70469 snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87b51b09 snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x883d4659 snd_soc_add_codec_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8928c8f5 snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a9101fe devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b0960c3 snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8cb2812d snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8fcff203 snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9234826f snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x928fbb89 snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x93b7cb51 snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x984685e6 snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98822221 snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a794daf snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9aaed7bc snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f41beb8 snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9fc337e8 snd_soc_dpcm_be_set_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa09a6b50 snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0ddd849 snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1ac4a41 snd_soc_platform_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa271c4b9 snd_soc_add_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa36921a1 snd_soc_unregister_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa5799e21 snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa5c99e5c snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6de3c78 snd_soc_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa74cae88 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8dba251 snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb41e5386 snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4798ddb snd_soc_new_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb53df9ab snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb790afa6 devm_snd_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7bd86f5 snd_soc_register_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc4b380b snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc6b1121 snd_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe43b5de snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe6043e2 snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbecc2ebe soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf57cced snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2174998 snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc26c069a snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc36d71b0 snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3c4af13 snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc76083d0 snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8be0ab3 snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9010308 snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb654730 snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb993bdb snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcbc744ef snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcceb5fc2 devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd8c7718 snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcfece99e snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd088a24d snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0eb8420 snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1e9def0 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd2deb448 snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5c7cda9 snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6286ab0 snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd794b9d1 dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8d0b9f5 snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda09313d snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd0bc155 snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde1d66ea snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdec0e8c8 snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdeca3d6e snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2c1776b snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2e30e16 snd_soc_unregister_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5b972a3 snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6a609d8 snd_soc_platform_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe78fc425 snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea1c59de snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeab60d70 snd_soc_platform_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb169266 snd_soc_get_dai_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed58bc00 snd_soc_of_parse_audio_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf18ffdd3 snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4714dec snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc546637 snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfdbcc55f snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe912da4 snd_soc_free_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff915d85 dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x20fe4221 line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2f3aba43 line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3bb6e44b line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4daefee7 line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x53333bfa line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5c4e99fd line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x65318fe3 line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x72b2564a line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x73525031 line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7c52a3fc line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb3a71608 line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb748002d line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc7d9f8c4 line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc9199d0a line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xde8d8631 line6_pcm_release -EXPORT_SYMBOL_GPL vmlinux 0x0026614d blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0x0035d0ff find_module -EXPORT_SYMBOL_GPL vmlinux 0x00402ab1 pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x006e3dc4 thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0x00718ac4 clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x00733a2a thermal_notify_framework -EXPORT_SYMBOL_GPL vmlinux 0x00781e5f irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0x00d56985 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0x00ea252b unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0x00f3e33c usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before -EXPORT_SYMBOL_GPL vmlinux 0x010e36aa fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish -EXPORT_SYMBOL_GPL vmlinux 0x012e485e ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x01319468 arizona_of_get_type -EXPORT_SYMBOL_GPL vmlinux 0x01345a7b nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x0157715e led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0x016676ac device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x01916d73 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x019bcfa9 irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x01a86711 dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x01c7c146 gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x020dea15 i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0x022cdde2 pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0x02a665b0 ip_tunnel_get_stats64 -EXPORT_SYMBOL_GPL vmlinux 0x02b0e0d1 do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x02bb7a7c dev_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0x02c5de73 pm_genpd_syscore_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x030de30c crypto_alg_lookup -EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id -EXPORT_SYMBOL_GPL vmlinux 0x032375b0 hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0325d373 ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0x03264ce6 mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL vmlinux 0x032e40ff xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0x032f6843 vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x034590e2 sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x03763b7f find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0x03782ddd tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0x03ba86cf crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode -EXPORT_SYMBOL_GPL vmlinux 0x03e40c7e thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0x040238f0 ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x0402b504 __percpu_ida_init -EXPORT_SYMBOL_GPL vmlinux 0x0424adab iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x0426ba33 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0x042797b7 crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0x0437212f netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0x043b3285 extcon_register_interest -EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x04718454 ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x0477007d devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x04853b5d fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0x04b57f3e wm8400_block_read -EXPORT_SYMBOL_GPL vmlinux 0x04b5bfb1 usbnet_probe -EXPORT_SYMBOL_GPL vmlinux 0x04c1c916 unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04ece7ab usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0x04f4bd8d percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x0517af21 crypto_alloc_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x05306bfe for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0x053e9aa7 debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x05542702 leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0x0584ca20 genlmsg_new_unicast -EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0x0598656d pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x059c588d user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x059d21a3 md_run -EXPORT_SYMBOL_GPL vmlinux 0x05c50233 sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x05d45102 blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x0604e235 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x0634a1b8 max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x063deef5 crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0x06438115 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x0683d162 wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0x06912fac rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0x0693f1b1 nf_queue_entry_release_refs -EXPORT_SYMBOL_GPL vmlinux 0x0699e970 extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x06b01bec __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0x06c29d08 regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio -EXPORT_SYMBOL_GPL vmlinux 0x06e201fc bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0x07032f9e trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0x070fd713 crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0x071e15cb usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0x0745fc0e crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x07684a40 alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x076b98f9 ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char -EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07c3568f wait_on_page_bit_killable_timeout -EXPORT_SYMBOL_GPL vmlinux 0x07e14878 amba_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x07f6b5d1 clk_debugfs_add_file -EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0x082755ae crypto_init_spawn2 -EXPORT_SYMBOL_GPL vmlinux 0x083059c4 __get_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x083cdf83 regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x08529119 i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x089d3752 tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x08ea1c69 desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0x090a6e28 devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x09341dd1 sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x095103ec pm_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x0958637c list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0x09ada7c4 usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0x09ddc78a serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0x0a28813f inode_congested -EXPORT_SYMBOL_GPL vmlinux 0x0a468d63 blk_queue_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x0a5b66f5 request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0x0ac2f5d3 crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0x0aceb870 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x0ada099f bcm_dma_start -EXPORT_SYMBOL_GPL vmlinux 0x0af0aa10 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x0af5c193 dev_pm_opp_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x0afd4610 zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b178b35 blkg_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x0b3db903 usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0x0b6fa008 ping_proc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0b7dd2a8 devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0b8df97d tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x0b94bff5 ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x0bbae511 return_address -EXPORT_SYMBOL_GPL vmlinux 0x0bd4e51b __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x0bef528c udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0c11c662 filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0x0c154876 fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0x0c1abde5 fuse_get_req -EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x0c349c67 regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0x0c3f5aa2 set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x0ca55749 percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x0ccc6884 __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0x0ce653de blkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x0cf57372 devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x0cf94c65 crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0x0d059e64 static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0x0d2260e3 md_is_badblock -EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d5402a1 irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x0d5f3f2d rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x0d78ad73 ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x0d93d6c5 reservation_object_test_signaled_rcu -EXPORT_SYMBOL_GPL vmlinux 0x0dae988c hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0dc5e4ad usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0x0dc83d9a public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0dede573 sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x0e394fd8 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x0e48878b adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0e5d2114 nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0x0e6d6ff9 bpf_prog_get -EXPORT_SYMBOL_GPL vmlinux 0x0e96d1fe ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x0e9e433e fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x0ea54d58 usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0x0eafebbf tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x0ed63d17 pskb_put -EXPORT_SYMBOL_GPL vmlinux 0x0f289ac1 look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x0f3913e8 blkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x0f485af2 devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x0f49bf52 tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0x0f6e3136 subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0x0f8e647b tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0x0fadb32f pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0fbe338b key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0x0fc01e9f static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x0fdf821e __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x0fe9dfe6 gpiochip_set_chained_irqchip -EXPORT_SYMBOL_GPL vmlinux 0x0feb4f8a pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x105370c4 cm_notify_event -EXPORT_SYMBOL_GPL vmlinux 0x1064ce4a fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0x1073f2d6 register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x108a8c1a alloc_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x11025677 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0x118d1c74 __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x11afb01a unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x11baad74 percpu_up_read -EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0x11daa3ce srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x11f8c0a1 __sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x11fe09ef extcon_update_state -EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x1259629f sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0x125d89cb usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x12602820 register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x126c135a arizona_clk32k_enable -EXPORT_SYMBOL_GPL vmlinux 0x128e729e regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x1290e892 crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0x12a1eb9c phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x12a8f827 wakeup_source_drop -EXPORT_SYMBOL_GPL vmlinux 0x12b31f8d usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0x12ca8e17 io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x12f1f8b9 usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0x130680ee of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x133e72c8 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x135a6baf __init_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0x135eb884 transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x136aa331 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0x1373a10c list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x13b89dee pinctrl_request_gpio -EXPORT_SYMBOL_GPL vmlinux 0x13ba15f1 relay_close -EXPORT_SYMBOL_GPL vmlinux 0x13ca3b7f dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x13dd43cb blkdev_write_iter -EXPORT_SYMBOL_GPL vmlinux 0x142f240e pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x143ed02e pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0x14460711 usb_stor_Bulk_reset -EXPORT_SYMBOL_GPL vmlinux 0x14460769 fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0x144d7413 input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0x14662525 kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0x148620d9 usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0x14bca1f5 ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x14c2e166 __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x14fa1e0f gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x151bd15b cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0x153aec63 crypto_lookup_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x155828a7 scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x158eb738 fib_select_path -EXPORT_SYMBOL_GPL vmlinux 0x158f18cb dev_pm_opp_free_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x15a77e9f crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x15c52ef8 phy_create -EXPORT_SYMBOL_GPL vmlinux 0x15c642c0 rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0x15d010a7 fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0x15eb00d3 pwm_enable -EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started -EXPORT_SYMBOL_GPL vmlinux 0x15fdc692 bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x1600ba85 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0x161c820a blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0x1642472a spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0x164ff07b fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress -EXPORT_SYMBOL_GPL vmlinux 0x1659bcfa stmpe_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x16782213 kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0x1686fc83 exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0x16885fe8 tc3589x_block_read -EXPORT_SYMBOL_GPL vmlinux 0x16a103ed regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x16a13018 ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x16a406e1 led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0x16b80235 driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0x16b8881d ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x16b9f102 thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x16c760b2 devres_release -EXPORT_SYMBOL_GPL vmlinux 0x16cdfb66 watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x16db7a76 usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0x16dc9e6a crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0x16ee2eef vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0x16f9b869 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0x16fd24f9 tps65912_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x1705ebdc event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0x17133f23 pinconf_generic_dump_config -EXPORT_SYMBOL_GPL vmlinux 0x174dc173 pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0x175eb45a usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x17b0bbce of_genpd_del_provider -EXPORT_SYMBOL_GPL vmlinux 0x17b732ec spi_unregister_master -EXPORT_SYMBOL_GPL vmlinux 0x17c75542 ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x18220ddd debugfs_remove_recursive -EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x1876f8f7 cpufreq_table_validate_and_show -EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert -EXPORT_SYMBOL_GPL vmlinux 0x189acf09 regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0x18ba67e7 kill_pid_info_as_cred -EXPORT_SYMBOL_GPL vmlinux 0x18d08ef0 ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0x18df652e vc_sm_int_handle -EXPORT_SYMBOL_GPL vmlinux 0x18e30661 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x18ead285 ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0x192441c6 hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x1927a4c9 gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0x1937706c of_get_nand_bus_width -EXPORT_SYMBOL_GPL vmlinux 0x193f65eb devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x196ef41e usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x1971e547 get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0x198137bc tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0x198e01e8 sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0x1990f8ff pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19b414f1 irq_of_parse_and_map -EXPORT_SYMBOL_GPL vmlinux 0x19c90847 pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0x19ccc4f0 __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x19d90a46 usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0x19ec6bde regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x1a1c4082 mod_delayed_work_on -EXPORT_SYMBOL_GPL vmlinux 0x1a26139a ablkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x1a2c8486 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x1a3f2977 sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x1a462217 crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0x1a5b490d debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x1a72c38b debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x1a803bd2 ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x1a8717e9 vc_sm_unlock -EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table -EXPORT_SYMBOL_GPL vmlinux 0x1aabe552 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x1ab670fb dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0x1ac69c01 usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing -EXPORT_SYMBOL_GPL vmlinux 0x1ad16ffb tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0x1ad4575b devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x1b2895d1 inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1b2c8e91 phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x1b3261e0 klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read -EXPORT_SYMBOL_GPL vmlinux 0x1b588bee fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0x1b5dd871 sock_update_netprioidx -EXPORT_SYMBOL_GPL vmlinux 0x1b670cda tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1b903b6b usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0x1b961bf1 spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return -EXPORT_SYMBOL_GPL vmlinux 0x1ba3a0fa pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x1baef18e adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1bb10e23 platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0x1bb5fc26 atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x1bc01350 cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0x1bc3edc2 usb_stor_sense_invalidCDB -EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x1bd33dc0 gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x1bd3b7f6 i2c_generic_gpio_recovery -EXPORT_SYMBOL_GPL vmlinux 0x1bda6814 subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x1bdfe829 __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0x1bef1447 ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0x1c00e35f _submit_bh -EXPORT_SYMBOL_GPL vmlinux 0x1c0f289c vchan_init -EXPORT_SYMBOL_GPL vmlinux 0x1c132024 request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0x1c2082ab fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0x1c40a45f trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x1c4ceee0 bus_register -EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase -EXPORT_SYMBOL_GPL vmlinux 0x1c6b3fb1 max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x1c6c0bdb kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0x1c716881 inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0x1c7ffc80 devm_spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1c9647ff ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0x1ca62715 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x1cdd5440 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0x1ce86fd5 extcon_get_cable_state -EXPORT_SYMBOL_GPL vmlinux 0x1ceab76c ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0x1d00ca67 fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0x1d03e2ac ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d24d8b8 shmem_add_seals -EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x1d7cb586 clk_register_fixed_rate_with_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x1d90e7b2 usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL vmlinux 0x1da73a06 bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x1dc1575d ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x1dc5df39 led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0x1dcb99c2 cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0x1dfb9853 usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0x1e1067d4 cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x1e12a95a mmput -EXPORT_SYMBOL_GPL vmlinux 0x1e347110 device_attach -EXPORT_SYMBOL_GPL vmlinux 0x1e459bd9 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1e62f450 adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1eb11a36 page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ec866c1 bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0x1eceb570 ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0x1ed666da led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0x1eddfdff kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x1ef2f4ef usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x1ef91a0f tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0x1f10e798 clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x1f1e322d ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0x1f2c45ce thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1f4bbcc8 da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x1f50b09f param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x1f7da050 __of_genpd_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f872777 usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x1f8e757d pwm_set_polarity -EXPORT_SYMBOL_GPL vmlinux 0x1f9602b3 alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0x1f9abd14 locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0x1fcbff23 device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0x1ff6c8b8 perf_trace_buf_prepare -EXPORT_SYMBOL_GPL vmlinux 0x2021a862 x509_request_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x20237209 skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0x2035e0cc blkg_prfill_stat -EXPORT_SYMBOL_GPL vmlinux 0x20392873 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0x204f1a20 usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x207123d3 spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x2074c960 clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0x20a86685 tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0x20c2633d blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0x20d481fd usb_stor_post_reset -EXPORT_SYMBOL_GPL vmlinux 0x20f42c6f ata_eh_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x211cfc7e mtd_get_device_size -EXPORT_SYMBOL_GPL vmlinux 0x21225b46 platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x212ce783 adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x214e20e5 attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0x2156d911 cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x218e00a9 sdhci_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21ae7f3e __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0x21bde0d5 dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x21c9d8a7 wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21f82817 rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0x21febf58 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0x22181696 devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x222337a6 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x22693b21 dbs_check_cpu -EXPORT_SYMBOL_GPL vmlinux 0x226a674d atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 -EXPORT_SYMBOL_GPL vmlinux 0x22a66779 mtd_get_user_prot_info -EXPORT_SYMBOL_GPL vmlinux 0x22be087c phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0x22c84250 crypto_givcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x22d52b5b __blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0x230e39f8 irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0x23125fad task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x2317b238 mpc8xxx_spi_rx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x231a60d2 tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x231d70fc encode_bch -EXPORT_SYMBOL_GPL vmlinux 0x23299534 sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0x232cd94f blocking_notifier_chain_cond_register -EXPORT_SYMBOL_GPL vmlinux 0x23461b4d fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0x23655ff4 tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x238d9c59 dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x23ae39d7 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x23b6f972 fat_scan -EXPORT_SYMBOL_GPL vmlinux 0x23dcdd1f skb_morph -EXPORT_SYMBOL_GPL vmlinux 0x23f75d04 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0x240133fc of_get_nand_ecc_step_size -EXPORT_SYMBOL_GPL vmlinux 0x243009a8 bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0x24669d82 of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x248710ac mtd_add_partition -EXPORT_SYMBOL_GPL vmlinux 0x24872442 of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0x248c8e2b usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0x248e677b gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key -EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset -EXPORT_SYMBOL_GPL vmlinux 0x24f7486b nl_table -EXPORT_SYMBOL_GPL vmlinux 0x250ebf45 mpc8xxx_spi_rx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x25100f32 mtd_del_partition -EXPORT_SYMBOL_GPL vmlinux 0x2510d363 dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x251ec704 bio_associate_current -EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x25369c3e ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x25acf6c0 of_clk_get_parent_count -EXPORT_SYMBOL_GPL vmlinux 0x25c7e920 device_reset -EXPORT_SYMBOL_GPL vmlinux 0x25ddf52c devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x25e55218 serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0x26085a7e pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x261098a6 of_display_timings_exist -EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock -EXPORT_SYMBOL_GPL vmlinux 0x26450f20 arizona_dev_exit -EXPORT_SYMBOL_GPL vmlinux 0x264cd090 regmap_write_bits -EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x2660a57d blk_unprep_request -EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x26742268 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x2697a0f6 debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x26a4c7cd bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x26adb815 thread_notify_head -EXPORT_SYMBOL_GPL vmlinux 0x26b1ed32 __put_mtd_device -EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26d243a7 i2c_new_probed_device -EXPORT_SYMBOL_GPL vmlinux 0x26e02ba4 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0x26e1051e tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x26ea10f3 debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0x26ecb7f2 register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x271ecf7e regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x272d7a19 spi_master_resume -EXPORT_SYMBOL_GPL vmlinux 0x27421fe0 ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x276224b8 vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x27679202 extcon_set_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0x27ac85b8 regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0x27b67c8d crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x27d64f26 irq_find_matching_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x27df3f01 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x27e645d9 regmap_field_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x27fd5310 screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0x280fe4ba crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0x281103ec netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x2816f313 devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x28431b50 regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x2887afa2 of_clk_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x28bb56a9 irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0x28c3311e subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x28f47d6e mtd_get_unmapped_area -EXPORT_SYMBOL_GPL vmlinux 0x28ff4da1 transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x292f22a8 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0x294cfca5 __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0x2950fba9 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x29524031 mtd_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0x29b5d2eb of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x29e72cd0 regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29f0eddb wm8998_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x2a01126c usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0x2a02373c mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0x2a102b1c of_clk_src_simple_get -EXPORT_SYMBOL_GPL vmlinux 0x2a126698 __pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x2a47bb3f tps65912_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x2a5e4fdf dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2a6aa179 mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0x2a6cf2be wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0x2a704fc0 dm_disk -EXPORT_SYMBOL_GPL vmlinux 0x2a7ac65f regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x2a816a05 dev_pm_opp_of_cpumask_add_table -EXPORT_SYMBOL_GPL vmlinux 0x2aabd5d6 tcp_fetch_timewait_stamp -EXPORT_SYMBOL_GPL vmlinux 0x2aae43f7 __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x2ac58d57 of_get_nand_on_flash_bbt -EXPORT_SYMBOL_GPL vmlinux 0x2ac8587a xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0x2ad9d326 md_ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x2ae34b4b list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x2aec162f regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0x2b36dc03 device_destroy -EXPORT_SYMBOL_GPL vmlinux 0x2b4e37cb gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0x2b579465 class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x2b65ab8e __ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0x2b714488 dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0x2b756bfb cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0x2b7b6967 fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0x2b7cedeb ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x2b80be27 device_find_child -EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0x2babe81f __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0x2bb9ba2a blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0x2bc51bc9 ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0x2bcc24a1 regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0x2bd65268 blk_mq_free_hctx_request -EXPORT_SYMBOL_GPL vmlinux 0x2bde11c2 usbnet_set_settings -EXPORT_SYMBOL_GPL vmlinux 0x2bf5342f bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0x2bfcdf49 balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c28c6bd platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c361678 md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0x2c51cb4f regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0x2c6416bb regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2c71803b tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0x2c732ec6 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2ca41bab inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0x2cc1cf7c pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x2cd1ccbd component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0x2ce5de6b gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq -EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0x2ced22d3 add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL vmlinux 0x2d110ed5 of_usb_host_tpl_support -EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d1b817d shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0x2d1beb52 device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers -EXPORT_SYMBOL_GPL vmlinux 0x2d70bf9a page_endio -EXPORT_SYMBOL_GPL vmlinux 0x2d96346f shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x2d9f796c devm_mdiobus_free -EXPORT_SYMBOL_GPL vmlinux 0x2dad9b05 register_jprobes -EXPORT_SYMBOL_GPL vmlinux 0x2dcc544a sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x2de681b6 system_verify_data -EXPORT_SYMBOL_GPL vmlinux 0x2df89995 fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2e675df0 serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x2e742b00 hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0x2e769aa2 led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0x2e9670c0 pl320_ipc_transmit -EXPORT_SYMBOL_GPL vmlinux 0x2e9bc179 balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x2eb20bec irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x2ef4d512 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0x2ef4fe1a watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0x2ef6b5bf smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f18bb61 class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x2f1d6bb4 mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0x2f2b1688 usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x2f32fa95 pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0x2f353536 regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x2f39a412 scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register -EXPORT_SYMBOL_GPL vmlinux 0x2f655ae3 devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x2f6a07c0 fat_attach -EXPORT_SYMBOL_GPL vmlinux 0x2f90da7e trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0x2fbb7c69 crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x2fc7b541 hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake -EXPORT_SYMBOL_GPL vmlinux 0x2fe6b00f rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x2fe97e19 mtd_unpoint -EXPORT_SYMBOL_GPL vmlinux 0x300dbb97 usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0x301f8dd9 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x30525696 __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x307bff99 amba_apb_device_add_res -EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x30fb8afd usb_stor_host_template_init -EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock -EXPORT_SYMBOL_GPL vmlinux 0x31236125 of_cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x314b4937 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x314f75d9 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x315f49ba of_dma_router_register -EXPORT_SYMBOL_GPL vmlinux 0x31a6ef7e mtd_panic_write -EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put -EXPORT_SYMBOL_GPL vmlinux 0x31d54a20 sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x31d95cc1 gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0x31db493b usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x31ea8541 regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x320c4dd1 devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x322ebaea tps65912_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x324b24e6 dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0x3275c6b1 pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update -EXPORT_SYMBOL_GPL vmlinux 0x32988497 of_reconfig_get_state_change -EXPORT_SYMBOL_GPL vmlinux 0x3299e624 usbnet_status_start -EXPORT_SYMBOL_GPL vmlinux 0x32b14a59 __sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32fb8718 ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x33262a0d usb_stor_access_xfer_buf -EXPORT_SYMBOL_GPL vmlinux 0x332fe817 crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0x334f3d27 tps65912_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition -EXPORT_SYMBOL_GPL vmlinux 0x33886e5e led_init_core -EXPORT_SYMBOL_GPL vmlinux 0x339dd865 of_dma_configure -EXPORT_SYMBOL_GPL vmlinux 0x33b6f702 perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0x33d74ad9 gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x33efb66d clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0x33fc6ef4 dev_pm_opp_of_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x33fce396 devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x34218186 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0x3431684f spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0x344d37a2 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x347682ce snmp_fold_field64 -EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get -EXPORT_SYMBOL_GPL vmlinux 0x34810a31 irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0x348539ce ping_close -EXPORT_SYMBOL_GPL vmlinux 0x34a2a2dc ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0x34ba4f05 n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0x34e786da rtc_irq_set_freq -EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched -EXPORT_SYMBOL_GPL vmlinux 0x3548a7e0 usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x35853cb6 blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x3587565a of_css -EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x35a93a4e scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x35b8ee19 page_cache_async_readahead -EXPORT_SYMBOL_GPL vmlinux 0x35c49f94 scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0x35dcd1f7 trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x35f12505 cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0x361d2c9f of_irq_get_byname -EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x361f07d0 driver_register -EXPORT_SYMBOL_GPL vmlinux 0x36401eeb bcm_dma_chan_alloc -EXPORT_SYMBOL_GPL vmlinux 0x367c673e mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x367f9a76 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x370065e4 pwmchip_add_with_polarity -EXPORT_SYMBOL_GPL vmlinux 0x37267814 get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0x37391e24 swiotlb_unmap_page -EXPORT_SYMBOL_GPL vmlinux 0x3749b677 clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x377835d9 tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x377bc71e dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0x3788cbcb usbnet_disconnect -EXPORT_SYMBOL_GPL vmlinux 0x37977f36 regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x37c4de2d of_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x37e120d1 sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x37e5f49c vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x38023b2f wm5102_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x381dec73 shash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x384b2337 gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x384d3905 crypto_register_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x3859fd26 debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy -EXPORT_SYMBOL_GPL vmlinux 0x386b6a44 alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x386c1422 md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0x38788869 spi_alloc_master -EXPORT_SYMBOL_GPL vmlinux 0x38828298 driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0x3887ffa0 regmap_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x38d550f7 rpi_firmware_property_list -EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38fc6888 get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x390275de tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0x3904509e perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0x390894e5 devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0x3920399a led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x392581bd blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0x392bfe42 mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0x3954c4d5 ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0x39670005 shmem_get_seals -EXPORT_SYMBOL_GPL vmlinux 0x397e770c alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0x39876a23 ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x39c4c32e __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x39c73570 uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current -EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module -EXPORT_SYMBOL_GPL vmlinux 0x3a038fa9 regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0x3a197200 of_get_nand_ecc_mode -EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a8d76e1 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0x3a952cc2 regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0x3a95ae06 rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0x3a991217 kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3aa423e5 scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0x3aaa9158 crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x3aabde55 skcipher_geniv_init -EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3ada1655 __get_mtd_device -EXPORT_SYMBOL_GPL vmlinux 0x3b08a04f hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0x3b21d782 usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x3b497db1 fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0x3b547bc9 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x3b5a0f42 max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0x3b634a85 mtd_block_isreserved -EXPORT_SYMBOL_GPL vmlinux 0x3b77d959 trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x3baa43ac devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0x3bb9ad08 ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0x3c09a251 devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0x3c0ef277 disk_part_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x3c2e1bfd device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3c4625ca irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x3c6d03be devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0x3c7acea9 sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0x3c831441 arm_check_condition -EXPORT_SYMBOL_GPL vmlinux 0x3c93ea25 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0x3cb6a179 __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3d2ad7f5 spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0x3d3627dd sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d4e699c gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x3d65c19f pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0x3d75d823 __srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x3da5e69d power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x3daccfd7 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x3db91586 scatterwalk_done -EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match -EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab -EXPORT_SYMBOL_GPL vmlinux 0x3dcd4b68 ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3dd4d3a7 bprintf -EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3df0979c apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0x3e03fba4 register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x3e152584 ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x3e410620 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x3e491a39 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e89b85c gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0x3eda2728 regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0x3ef5be58 device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0x3efa0a70 sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0x3f09209e crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0x3f12cc58 pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0x3f18c0ef regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0x3f2100d2 set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x3f3bbe90 bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0x3f468f6b tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0x3f5ef04a power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0x3f7b3ab6 fuse_request_send_background -EXPORT_SYMBOL_GPL vmlinux 0x3fc5dfe4 extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x3fdbb8e5 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x3feb2e41 bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0x401bbbd1 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x402c71dc irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0x403507ad scsi_internal_device_block -EXPORT_SYMBOL_GPL vmlinux 0x403edc71 user_update -EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0x404ee79a spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources -EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x40923164 __module_address -EXPORT_SYMBOL_GPL vmlinux 0x40abfa54 __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x40db2f11 usb_phy_generic_unregister -EXPORT_SYMBOL_GPL vmlinux 0x40e2d934 max_gen_clk_probe -EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x40f1f5c5 clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0x40f2a0a5 __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x41540174 powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x418a6569 stmpe_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x418f266c irq_create_strict_mappings -EXPORT_SYMBOL_GPL vmlinux 0x4199aeb8 usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0x41b03965 usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0x41b16282 devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x4211ccf9 pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x4235197b __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0x426169a8 rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags -EXPORT_SYMBOL_GPL vmlinux 0x42721036 __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x42971c15 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x42ac86fa dev_pm_opp_add -EXPORT_SYMBOL_GPL vmlinux 0x42be4566 vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0x42d59ab3 phy_exit -EXPORT_SYMBOL_GPL vmlinux 0x42ddedf2 pwm_put -EXPORT_SYMBOL_GPL vmlinux 0x42e33a9a cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x42f74276 __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x430d0c5f posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4328a6f1 pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0x432f8449 debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x434cfe78 shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x4357791c devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0x4367dcea driver_find -EXPORT_SYMBOL_GPL vmlinux 0x437d87ed led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0x4391098c mtd_device_parse_register -EXPORT_SYMBOL_GPL vmlinux 0x4396019b usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key -EXPORT_SYMBOL_GPL vmlinux 0x43b65919 ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x43c6b3c1 trace_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift -EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x4402ff30 skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0x4408e595 blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x4424b887 ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4450daae fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44bcbc85 inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x44beb810 _gpiochip_irqchip_add -EXPORT_SYMBOL_GPL vmlinux 0x44db59aa device_show_int -EXPORT_SYMBOL_GPL vmlinux 0x44f41cb5 mtd_point -EXPORT_SYMBOL_GPL vmlinux 0x44ff07d3 usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x4505dc98 usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0x45095232 pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x450ba10c task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0x452628ab bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0x4531cca6 spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0x45381efe class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0x453cfc49 blk_queue_flush -EXPORT_SYMBOL_GPL vmlinux 0x45422afa swiotlb_map_page -EXPORT_SYMBOL_GPL vmlinux 0x4554d308 dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x45581440 of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4567ed2e rtc_irq_register -EXPORT_SYMBOL_GPL vmlinux 0x456d64ac simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x4590b25a scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0x4592b5a0 ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x45e94977 devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x45f28e08 ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x45f35d39 usb_stor_pre_reset -EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x46066e5b perf_pmu_name -EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x465931c5 eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0x4666cfb2 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x46b0cdd3 dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x4712c850 devres_add -EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x47606283 wm8400_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x47950498 usb_stor_resume -EXPORT_SYMBOL_GPL vmlinux 0x47953daf serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x47a0bd31 register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47b0d809 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x47b792f1 unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47e6c108 devm_mdiobus_alloc_size -EXPORT_SYMBOL_GPL vmlinux 0x47e84579 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0x4805a11e ata_eh_thaw_port -EXPORT_SYMBOL_GPL vmlinux 0x48066daa wbc_account_io -EXPORT_SYMBOL_GPL vmlinux 0x4806c4a2 ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x480ef781 ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0x482c1230 sdhci_pltfm_init -EXPORT_SYMBOL_GPL vmlinux 0x482dc17c thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0x484db485 inet6_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0x48526138 skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x4862bd8c cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x48654f00 debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh -EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0x488263ff gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x4886afa9 fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0x489ab143 devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x48a47fa4 irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0x48dfefb3 elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0x48e2245f of_dma_is_coherent -EXPORT_SYMBOL_GPL vmlinux 0x48fa1d48 extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x4907932b regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x491c210e mtd_table_mutex -EXPORT_SYMBOL_GPL vmlinux 0x49444d9a put_mtd_device -EXPORT_SYMBOL_GPL vmlinux 0x49704b56 fuse_request_send -EXPORT_SYMBOL_GPL vmlinux 0x497f0c4a amba_ahb_device_add -EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x4995e0e1 usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0x49be1b41 __blk_run_queue_uncond -EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4a3a9c5c power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x4a3e4d4e of_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name -EXPORT_SYMBOL_GPL vmlinux 0x4a5c34ad pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0x4a63f3b2 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0x4a84f246 crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x4a90bcc3 mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0x4a9112b8 dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0x4ab1a16b usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x4ad0f446 device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x4b1a4dd9 of_genpd_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0x4b2ebafb dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x4b3cb05f __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x4b4f8675 mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x4b620734 gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x4b8e2dfa fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0x4bfb3d95 crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0x4c0d9d0e simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x4c324974 sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0x4c47ec15 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4c673231 dev_pm_opp_remove -EXPORT_SYMBOL_GPL vmlinux 0x4c68b005 wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0x4c703dea kobject_move -EXPORT_SYMBOL_GPL vmlinux 0x4c825828 cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x4c9b83a5 fsnotify -EXPORT_SYMBOL_GPL vmlinux 0x4cadf1fa cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0x4ce5436c sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0x4ced9fb6 crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d0a3dec posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x4d15f741 da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0x4d28fad1 pinconf_generic_dt_subnode_to_map -EXPORT_SYMBOL_GPL vmlinux 0x4d36832b io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0x4d408b20 __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x4d4952d0 shash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x4d58156d pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x4d762c1f __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4d939c74 trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0x4d93fefe __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x4d96e1f0 vchan_find_desc -EXPORT_SYMBOL_GPL vmlinux 0x4dd4204b of_fdt_unflatten_tree -EXPORT_SYMBOL_GPL vmlinux 0x4dd7891e seq_open_net -EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4de7fe81 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x4ded441a regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x4e083fee skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path -EXPORT_SYMBOL_GPL vmlinux 0x4e2c2dd2 pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x4e3551b6 get_dcookie -EXPORT_SYMBOL_GPL vmlinux 0x4e61eba8 key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0x4e945389 crypto_attr_alg2 -EXPORT_SYMBOL_GPL vmlinux 0x4ea482e5 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x4eaba01b dev_pm_opp_get_max_clock_latency -EXPORT_SYMBOL_GPL vmlinux 0x4ead0077 ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x4ec26594 usbnet_change_mtu -EXPORT_SYMBOL_GPL vmlinux 0x4eee6ec7 vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4ef6313d pinctrl_dev_get_devname -EXPORT_SYMBOL_GPL vmlinux 0x4f0de133 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x4f19e20f scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0x4f47b047 devm_regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x4f4bf92c net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x4f4e9c8d usb_stor_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0x4f58a332 wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x4f676932 __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fae70f8 regmap_fields_force_write -EXPORT_SYMBOL_GPL vmlinux 0x4faea74b skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x4fd46d20 i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4ffe6bcd free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x5005df93 dev_pm_opp_of_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x50069c12 dma_buf_kmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0x501a3924 crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0x5042fd29 ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0x5069678c regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0x506f80b4 gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x5080c352 trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test -EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x50a4f325 clk_register_gpio_mux -EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x50cca968 mpc8xxx_spi_tx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50e9c3da cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0x50f74ffe root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x50f80732 usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x510a8a87 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0x510e9cbc gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0x5110b78b skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0x5116a009 wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val -EXPORT_SYMBOL_GPL vmlinux 0x5151ac6f dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x516f6967 platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x51719489 tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x518932de dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x51a21e0d scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0x51bfe54f regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x51c83016 ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0x51d2c029 stmpe_set_altfunc -EXPORT_SYMBOL_GPL vmlinux 0x51d680a1 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0x51da14f1 handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0x5200c3b4 usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL vmlinux 0x5219b61d input_class -EXPORT_SYMBOL_GPL vmlinux 0x52431781 disk_map_sector_rcu -EXPORT_SYMBOL_GPL vmlinux 0x5258fe30 usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0x526280c7 trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x526c5d8d tpm2_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x52a85645 cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0x52ab7970 ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0x52b308b2 ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0x52d03284 dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0x52e2f8f6 kthread_park -EXPORT_SYMBOL_GPL vmlinux 0x53187e09 wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0x531bfc4e __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x53497404 devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x535605b2 nand_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x535f97ea of_irq_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x538536f3 noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x53bc8618 inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x53cecca8 posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x53dd2ed3 device_rename -EXPORT_SYMBOL_GPL vmlinux 0x53e2adb5 device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x53e8ddd6 serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0x53f3312a amba_ahb_device_add_res -EXPORT_SYMBOL_GPL vmlinux 0x540b722a add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0x540be6da l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x5425c83d bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x542f1039 regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x54398e4a regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x5440f9eb dma_buf_kunmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0x544aab61 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x545fec86 percpu_ida_for_each_free -EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x54a74309 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0x54a83a5f __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x54acd8b5 rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x54b36e53 da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x54b719c5 xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0x54b76103 dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x54c21536 digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0x54d468f1 pm_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0x54df7e8a gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x54f51043 evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5554a33e of_platform_default_populate -EXPORT_SYMBOL_GPL vmlinux 0x555ced40 register_mtd_blktrans -EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x55759d2f gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x55a9e95d ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0x55ce3679 fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x55dcbf77 usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x5604641b dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0x56054f78 perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0x5618c192 device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x561de0fb pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x5636228b tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0x5638bca3 fat_detach -EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x565799c2 regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x5657eb54 tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen -EXPORT_SYMBOL_GPL vmlinux 0x56955cf4 tpm2_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x56b3b4d6 crypto_init_spawn -EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x56c7d684 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0x56cfe1ec usb_stor_bulk_transfer_sg -EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up -EXPORT_SYMBOL_GPL vmlinux 0x56e3e351 scatterwalk_bytes_sglen -EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x56f06d15 user_read -EXPORT_SYMBOL_GPL vmlinux 0x5700aff7 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0x57015eed ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x57083635 crypto_unregister_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x57086104 ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0x57106cc6 crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x571912d3 usb_stor_transparent_scsi_command -EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0x5730759c mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0x57324784 driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x5746ca3d sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0x574998da ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x575fa66d register_mtd_user -EXPORT_SYMBOL_GPL vmlinux 0x576722f0 sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0x576b12f5 sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0x5775fd97 platform_device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0x5784ef1e of_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x578c13ab dev_pm_opp_of_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags -EXPORT_SYMBOL_GPL vmlinux 0x57f59ff3 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0x57f78f07 put_pid -EXPORT_SYMBOL_GPL vmlinux 0x57f8c94f mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0x57fc4281 cpufreq_frequency_table_cpuinfo -EXPORT_SYMBOL_GPL vmlinux 0x58063ede srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x581824f0 mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0x581f5b5f thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x5839d320 usbnet_get_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x583d5e01 sdhci_pltfm_register -EXPORT_SYMBOL_GPL vmlinux 0x58854586 sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname -EXPORT_SYMBOL_GPL vmlinux 0x58c65b0a sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0x58dc67d3 wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x5948665b split_page -EXPORT_SYMBOL_GPL vmlinux 0x594a601f pwm_request -EXPORT_SYMBOL_GPL vmlinux 0x594cde67 trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0x59560055 mtd_lock -EXPORT_SYMBOL_GPL vmlinux 0x598f945c vchan_tx_submit -EXPORT_SYMBOL_GPL vmlinux 0x599d0cb6 scatterwalk_start -EXPORT_SYMBOL_GPL vmlinux 0x59a6bb57 ahash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x59c5ea64 crypto_alloc_ablkcipher -EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x59f83675 phy_get -EXPORT_SYMBOL_GPL vmlinux 0x5a163ad7 sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0x5a39ee28 dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x5a4c783c lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0x5a519201 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0x5a65c37b devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq -EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5ac72089 i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x5acf272e fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0x5ae2af57 regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x5b01ed6e init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0x5b055ad2 kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0x5b339142 uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0x5b4b56be unregister_jprobe -EXPORT_SYMBOL_GPL vmlinux 0x5b576373 device_property_present -EXPORT_SYMBOL_GPL vmlinux 0x5b6362c0 wm8997_patch -EXPORT_SYMBOL_GPL vmlinux 0x5b734ecb bgpio_remove -EXPORT_SYMBOL_GPL vmlinux 0x5b885c6a md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0x5bbdf4d7 blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0x5bc99b01 regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bd16bf6 regulator_can_change_voltage -EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5be4d2d1 devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x5be6473c gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0x5bf9d396 pinctrl_remove_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x5c05bcd6 sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0x5c1272bc ata_scsi_simulate -EXPORT_SYMBOL_GPL vmlinux 0x5c3dd293 hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c5cc08c regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0x5c6547c3 cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x5c8d2133 subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x5cc870b1 ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0x5ccc0eea crypto_larval_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5cdc635e ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0x5cf24639 tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user -EXPORT_SYMBOL_GPL vmlinux 0x5d153a7a hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0x5d3c0949 tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x5d9425cb __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x5d97b6e5 aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x5d9d0d87 ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x5d9eb3fe irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5dba1d7c class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x5dbb1356 ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x5dc2f987 device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x5dead3aa ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x5e0afb75 relay_open -EXPORT_SYMBOL_GPL vmlinux 0x5e1706e7 adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl -EXPORT_SYMBOL_GPL vmlinux 0x5e5b569e component_master_del -EXPORT_SYMBOL_GPL vmlinux 0x5e600238 security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0x5e65fa30 raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x5e736ccd uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0x5e846dec dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0x5e8e17fd regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x5e9acb96 mount_mtd -EXPORT_SYMBOL_GPL vmlinux 0x5e9f2cc9 transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x5eb5724e sdhci_pltfm_resume -EXPORT_SYMBOL_GPL vmlinux 0x5ee0556b raw_seq_open -EXPORT_SYMBOL_GPL vmlinux 0x5f29b4b5 devm_clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5f4d8f5f gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0x5f90e417 device_add -EXPORT_SYMBOL_GPL vmlinux 0x5fc75ed1 crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0x5fe7c5dd regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0x5fef2281 usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x5ffca30b sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0x5fffd3c7 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0x60081c04 of_thermal_get_trip_points -EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x601ab55c vc_sm_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6027c3ec pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0x6035b78e fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x6038e5c0 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush -EXPORT_SYMBOL_GPL vmlinux 0x6069da40 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x60789694 dev_pm_opp_find_freq_exact -EXPORT_SYMBOL_GPL vmlinux 0x607f18e2 scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x60809794 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0x608ee44c pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x60943635 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60b24710 nf_unregister_afinfo -EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq -EXPORT_SYMBOL_GPL vmlinux 0x61058048 ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x61417fb7 usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL vmlinux 0x6142cf2f __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x61566b4a handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0x61660e21 sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0x6166b7cc of_clk_del_provider -EXPORT_SYMBOL_GPL vmlinux 0x6170d760 dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0x61793d6c lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0x6196e65c mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0x61b7bd8f device_create_file -EXPORT_SYMBOL_GPL vmlinux 0x61ea3c50 part_round_stats -EXPORT_SYMBOL_GPL vmlinux 0x62053d7f usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6230618e sdhci_set_clock -EXPORT_SYMBOL_GPL vmlinux 0x623580da blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0x623f251b rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0x62522791 of_prop_next_u32 -EXPORT_SYMBOL_GPL vmlinux 0x6284822e dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0x6286a387 rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0x629db977 crypto_init_shash_spawn -EXPORT_SYMBOL_GPL vmlinux 0x62a5bc44 of_usb_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x62eb8289 scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0x6300bad7 of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0x630e2ba5 ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x63150e34 splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0x63403077 ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0x6340e054 gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0x634e7ce7 ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0x634ebe6a dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x63570f2a devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x637038bc get_kernel_page -EXPORT_SYMBOL_GPL vmlinux 0x6372f540 platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0x638111a2 syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x638747df dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x6395130f vc_mem_get_current_size -EXPORT_SYMBOL_GPL vmlinux 0x63abc0a2 thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0x63c5b497 phy_init -EXPORT_SYMBOL_GPL vmlinux 0x63c8064f subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x63dd6217 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0x63f16b0c tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0x63fbf91a rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0x640b2e98 shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x6436ce97 usb_stor_Bulk_transport -EXPORT_SYMBOL_GPL vmlinux 0x64374aaf usb_string -EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched -EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x647c988d usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x648760d1 fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x649deb45 pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x64a70cfc io_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x64e24a5e memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x64e95445 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x64fe98f7 irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0x6521ef43 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0x65261d4b usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0x65357c61 sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0x65690cde __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x65777739 irq_create_mapping -EXPORT_SYMBOL_GPL vmlinux 0x6594334a ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x65951903 usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x65b34336 stmpe_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0x65c3e1c8 ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65cefa46 wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0x65ee995a dm_get_table_device -EXPORT_SYMBOL_GPL vmlinux 0x6601652f __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x664468b9 devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0x6651b966 usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0x665a978f wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x668ce12e pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0x669f7680 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x66aa6d82 pm_genpd_init -EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66fd3021 devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x671f5a67 led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0x672d6fef __of_genpd_add_provider -EXPORT_SYMBOL_GPL vmlinux 0x67319a1f device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy -EXPORT_SYMBOL_GPL vmlinux 0x675b8db4 irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x676835c3 regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0x67882415 ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x67d33e13 of_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x67f4813e anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6804e148 of_irq_get -EXPORT_SYMBOL_GPL vmlinux 0x681ab429 usbnet_write_cmd_async -EXPORT_SYMBOL_GPL vmlinux 0x68553eec pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0x68712b7b unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x68956406 static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x68b9e9d2 pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0x68c79646 cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0x68d12054 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x68dcc0ea devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x68e4e40e __rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x68edebb6 spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0x68f353fb usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x690af5ce mddev_congested -EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x6924f0a2 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0x694be42a usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0x698b3567 clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x69e94f79 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL vmlinux 0x69e987a9 input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0x69e9cd94 sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x69eb089b devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x69eccd0c pwm_can_sleep -EXPORT_SYMBOL_GPL vmlinux 0x69f0583d vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0x6a0ed2e2 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0x6a4ddaf7 blkg_stat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x6a50fd1f each_symbol_section -EXPORT_SYMBOL_GPL vmlinux 0x6a5ae01f sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x6b0132e1 spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0x6b16ca0b spi_master_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6b1a1405 rtc_irq_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6b23e638 dev_pm_opp_init_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x6b2564cd extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0x6b4f5908 spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0x6b541a23 tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0x6b56f293 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0x6b665bb7 blk_set_queue_dying -EXPORT_SYMBOL_GPL vmlinux 0x6b770f49 decode_bch -EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6bc5315a get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x6bd5aaee ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0x6bfd7d80 da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x6c209eab __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0x6c45117e __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c52fbcf pwm_config -EXPORT_SYMBOL_GPL vmlinux 0x6c5917d4 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0x6c6207a0 usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions -EXPORT_SYMBOL_GPL vmlinux 0x6c952413 usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0x6ca072a4 lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq -EXPORT_SYMBOL_GPL vmlinux 0x6cbee00f register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0x6cdaab73 usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x6cecbe5f cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6d016f20 arizona_clk32k_disable -EXPORT_SYMBOL_GPL vmlinux 0x6d0192e7 regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x6d0a2eb4 inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x6d0f9610 dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0x6d1b10a7 dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0x6d1c305c devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d37d963 start_critical_timings -EXPORT_SYMBOL_GPL vmlinux 0x6d407b9f irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x6d424356 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x6d696172 serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0x6d7176ec smpboot_update_cpumask_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x6d7cf55c cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0x6d84a414 __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x6dae7248 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x6db32365 ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0x6dbe3a72 modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x6df1055f irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x6df722e2 sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy -EXPORT_SYMBOL_GPL vmlinux 0x6e09dda9 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0x6e0eda33 powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0x6e209e5f gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0x6e20aa98 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0x6e27909c sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0x6e33a879 blkg_print_stat_ios_recursive -EXPORT_SYMBOL_GPL vmlinux 0x6e51afc8 percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x6e818ec0 usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6e91ddb9 tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x6ecfbdc2 devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x6ee496a3 ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0x6ef11a4a dma_buf_kmap -EXPORT_SYMBOL_GPL vmlinux 0x6effb5c8 led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0x6f0803dd device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x6f3341b9 crypto_blkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x6f57cb56 pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto -EXPORT_SYMBOL_GPL vmlinux 0x6fbbdb78 put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x6fce6cfd rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x7012f188 of_dma_xlate_by_chan_id -EXPORT_SYMBOL_GPL vmlinux 0x702e832b ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0x703f953c extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0x7044e45f skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0x70a69890 __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x70aa7838 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x70aae891 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0x70bebdeb ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated -EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70e6ca34 relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x71008581 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x711bba1c metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x71449b2b of_dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x7152f36b pstore_register -EXPORT_SYMBOL_GPL vmlinux 0x715567db mtd_block_markbad -EXPORT_SYMBOL_GPL vmlinux 0x715f6d37 tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x71895961 of_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x718f97b1 clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x7197dba2 device_create_vargs -EXPORT_SYMBOL_GPL vmlinux 0x719ca5d6 ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab -EXPORT_SYMBOL_GPL vmlinux 0x71e5c506 regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x72515d5a snprint_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x72911bcb sdhci_resume_host -EXPORT_SYMBOL_GPL vmlinux 0x72972277 i2c_slave_register -EXPORT_SYMBOL_GPL vmlinux 0x72a2a5fc dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0x72e8a5fe rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x72ee2bf0 mpc8xxx_spi_tx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x73025184 devm_regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x730bd0c7 asic3_write_register -EXPORT_SYMBOL_GPL vmlinux 0x731f3d93 platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0x7320e14e max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x733a4139 devres_find -EXPORT_SYMBOL_GPL vmlinux 0x7355f274 power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x735d1e31 device_add_property_set -EXPORT_SYMBOL_GPL vmlinux 0x736335e8 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0x736bc5ae usb_stor_adjust_quirks -EXPORT_SYMBOL_GPL vmlinux 0x736ff20c netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7386f2df regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73b71ad3 wm8350_device_exit -EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x74054401 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x740b585b usb_stor_CB_transport -EXPORT_SYMBOL_GPL vmlinux 0x7419f6da power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x74561430 pinctrl_force_default -EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7468b74e __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0x748fe069 trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0x7495281c da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x74a7fcd6 fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74d007c2 perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x74db9b2a rq_flush_dcache_pages -EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x75353775 devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x7566f2a9 devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0x756b2bc9 __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0x758196f0 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0x7584edfa serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x759e26bd devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x75b32701 devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x75c2b9f1 memalloc_socks -EXPORT_SYMBOL_GPL vmlinux 0x75c53278 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x75db2ddc pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0x75dc2e53 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0x75e6e37a unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x75ff429a crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0x7609fc08 shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x76526a40 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x768e478c vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0x76992f00 regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0x76bd3278 alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x76d65da4 bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x76deb4da irq_create_direct_mapping -EXPORT_SYMBOL_GPL vmlinux 0x76eee6b8 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0x76fe7d6e pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0x77057c42 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0x77059329 extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x770cf981 tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x77170127 wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x771dc4fe __bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x77241c84 sdhci_send_command -EXPORT_SYMBOL_GPL vmlinux 0x77286de3 led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x77339326 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL vmlinux 0x77401c0b sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x7742ddde get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x77597a95 i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0x776dcedb __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0x77979a31 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77c7d81f dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x77c9da4e scsi_device_from_queue -EXPORT_SYMBOL_GPL vmlinux 0x77df14ba wait_for_tpm_stat -EXPORT_SYMBOL_GPL vmlinux 0x77f1b234 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x77f37e2a powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0x780315ca pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x78151326 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x784eb1ed bdev_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x785cf1c3 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x786c66d7 led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0x786e5915 fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0x79018c9c ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x7904c3dc mtd_unlock -EXPORT_SYMBOL_GPL vmlinux 0x7911cc34 of_clk_add_provider -EXPORT_SYMBOL_GPL vmlinux 0x79198667 usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off -EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x79635cfd dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0x79639d4d percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0x7966af24 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x7976afd0 security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0x7979a202 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x79c7f9fe vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL vmlinux 0x79ce29db bdev_write_page -EXPORT_SYMBOL_GPL vmlinux 0x79cf0006 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0x79d5a629 __put_net -EXPORT_SYMBOL_GPL vmlinux 0x79dc2b5b devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79e4f032 usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0x79f53fad key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0x79febf94 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0x7a03fa0d ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0x7a106d63 serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x7a1a6658 blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x7a24579b user_describe -EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read -EXPORT_SYMBOL_GPL vmlinux 0x7ab5e749 file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x7add7b4d pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x7b031e82 mtd_erase -EXPORT_SYMBOL_GPL vmlinux 0x7b09a507 pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set -EXPORT_SYMBOL_GPL vmlinux 0x7b3afa63 wm5102_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x7b4949eb inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0x7b53cb1b ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0x7b69dc06 device_register -EXPORT_SYMBOL_GPL vmlinux 0x7b69dcb9 cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0x7b7dd9d5 blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x7b8d3f47 od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x7bdcda40 irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0x7bf2dedc relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0x7bfe348a usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0x7c287f97 wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x7c4513ac fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x7c6a49ce unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x7c78e20f mtd_is_partition -EXPORT_SYMBOL_GPL vmlinux 0x7c93292b regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7c9cca56 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x7cbcb817 con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0x7cc54db8 usbnet_update_max_qlen -EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cf499ce of_fixed_clk_setup -EXPORT_SYMBOL_GPL vmlinux 0x7d1e0ec9 da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x7d532052 md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d664af6 ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x7d8c297a tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0x7d8ccb29 ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7dc38a32 device_remove_property_set -EXPORT_SYMBOL_GPL vmlinux 0x7dc4bb7e gov_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7e0560fb device_init_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x7e282c44 md_stop -EXPORT_SYMBOL_GPL vmlinux 0x7e3c12bc sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0x7e488fcb fuse_put_request -EXPORT_SYMBOL_GPL vmlinux 0x7e4b7d15 regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x7e577638 wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x7e5b00f4 attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7e60c460 crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0x7ec81021 invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0x7ed52928 blkcipher_aead_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x7ed68941 asic3_read_register -EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature -EXPORT_SYMBOL_GPL vmlinux 0x7f32a54d pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0x7f615f97 device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0x7f6bec26 __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0x7f7871ec usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f86a9bc mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0x7fbb5711 probes_decode_arm_table -EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7fdf3a54 regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0x7fec9042 debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x7ffafadd attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x7ffe3ff7 dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x7ffeeca5 ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0x8010d2c6 percpu_ida_free -EXPORT_SYMBOL_GPL vmlinux 0x8028aa70 regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0x805a53f5 blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0x808a8249 elv_register -EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x80aaf647 arizona_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x80af57e8 find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0x80c28271 rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80e7f6bc da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x80f43ca2 rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0x80f52c88 dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x80f8589f trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x80ffec2e del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL vmlinux 0x8105857c sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x810fec7d get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x811d99b9 ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x812e315b usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0x8140ea62 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x817cec3a platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x817dbfce ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0x818324ab usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0x81861b3d gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0x819748ac blk_mq_request_started -EXPORT_SYMBOL_GPL vmlinux 0x81c93ff5 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0x8200ee20 fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0x82101552 device_del -EXPORT_SYMBOL_GPL vmlinux 0x82583cbf ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x826e3500 regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0x827a581d net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0x82b1fd2c rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0x82b285fa srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82dd6e42 hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x82dffee0 __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x82eeedd0 device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0x83087dda usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0x830dab26 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0x839057bd adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0x83d707c2 crypto_tfm_in_queue -EXPORT_SYMBOL_GPL vmlinux 0x845e9512 cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x84863be9 driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x848bd0fb call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x848fbf72 usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x84c2f1c4 kallsyms_on_each_symbol -EXPORT_SYMBOL_GPL vmlinux 0x8500ea40 regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x85062da8 pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x851ce610 usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x851f521e register_mtd_parser -EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read -EXPORT_SYMBOL_GPL vmlinux 0x8569a621 power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0x856d0172 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x858737ec fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x858e7a77 kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x85979cae da903x_update -EXPORT_SYMBOL_GPL vmlinux 0x85983965 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0x85a37e2a kick_process -EXPORT_SYMBOL_GPL vmlinux 0x85a6e012 edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x85bf1593 console_drivers -EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x85ffce45 ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod -EXPORT_SYMBOL_GPL vmlinux 0x861afcc3 sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x861caa73 usbnet_get_settings -EXPORT_SYMBOL_GPL vmlinux 0x862b9816 cpu_topology -EXPORT_SYMBOL_GPL vmlinux 0x86389c82 bcm_dma_chan_free -EXPORT_SYMBOL_GPL vmlinux 0x86478156 ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0x8652110e pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0x8653222d usbnet_get_link -EXPORT_SYMBOL_GPL vmlinux 0x8669ae5e wm5110_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x86bc16db gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x86dc8de0 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0x86f44e83 irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x870e1d3d usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0x8717df8b __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x87260236 system_trusted_keyring -EXPORT_SYMBOL_GPL vmlinux 0x872921c5 __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x872d7f15 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0x87393325 ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error -EXPORT_SYMBOL_GPL vmlinux 0x874035f9 rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x8746428c sdhci_enable_irq_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x874bcfbe crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0x875983f7 skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0x877b38e5 attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0x8783db21 regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0x87864ed1 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x878ab8b8 tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x879a1be5 usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0x879db595 of_usb_update_otg_caps -EXPORT_SYMBOL_GPL vmlinux 0x87bc0a63 mtd_is_locked -EXPORT_SYMBOL_GPL vmlinux 0x87bf0091 dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0x87c60592 dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0x87d97fed usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x87d9ed64 usbnet_status_stop -EXPORT_SYMBOL_GPL vmlinux 0x87ef8f20 bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x87f5347a crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x8803465e usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0x880c11a3 devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0x8812d981 register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x88136838 wm8997_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x884f3228 securityfs_create_dentry -EXPORT_SYMBOL_GPL vmlinux 0x8853e3b2 ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x886f51aa pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x887738b6 __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x88853180 dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0x8887980a of_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x888b4a0a bio_trim -EXPORT_SYMBOL_GPL vmlinux 0x8898abf8 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0x88998073 dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88b2ee19 device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x88b4388f disk_part_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x88c8da9a inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0x88d4412a blk_mq_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x88eb2590 mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0x890683b0 sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x891c76b6 clk_gpio_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x892b180b usbnet_nway_reset -EXPORT_SYMBOL_GPL vmlinux 0x893753e3 usbnet_start_xmit -EXPORT_SYMBOL_GPL vmlinux 0x89414d6e init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x897b247e of_prop_next_string -EXPORT_SYMBOL_GPL vmlinux 0x898a993e usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x89ee1139 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0x8a066c00 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0x8a28eb2f usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x8a4d9262 of_mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode -EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod -EXPORT_SYMBOL_GPL vmlinux 0x8a580adc posix_timer_event -EXPORT_SYMBOL_GPL vmlinux 0x8a5bd614 event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0x8a5f86ce fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x8a7ff57c skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x8a8db233 perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0x8aadc784 mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8af420b2 get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b203a6e unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x8b368349 crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0x8b775d3a __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0x8ba760be wm5110_patch -EXPORT_SYMBOL_GPL vmlinux 0x8bb5cb70 deregister_mtd_blktrans -EXPORT_SYMBOL_GPL vmlinux 0x8bbd0291 flush_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c17c807 blkg_print_stat_ios -EXPORT_SYMBOL_GPL vmlinux 0x8c1dda38 powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0x8c3926d7 disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x8c3def7e usbnet_defer_kevent -EXPORT_SYMBOL_GPL vmlinux 0x8c3e411c wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0x8c53984e perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status -EXPORT_SYMBOL_GPL vmlinux 0x8c694104 tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c9dd944 fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0x8cae2b2f sdhci_set_bus_width -EXPORT_SYMBOL_GPL vmlinux 0x8cd7e10a ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params -EXPORT_SYMBOL_GPL vmlinux 0x8cf31f6b cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x8d049b76 dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0x8d264930 pinctrl_utils_add_config -EXPORT_SYMBOL_GPL vmlinux 0x8d5463a6 fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0x8d7c2258 regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0x8db2c3b8 validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x8dd7fd57 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0x8e282703 uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0x8e2b25c2 videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x8e6f0b00 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0x8e7894bd __atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x8e924f59 i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0x8e961552 bdev_read_page -EXPORT_SYMBOL_GPL vmlinux 0x8e98208a pinctrl_dev_get_name -EXPORT_SYMBOL_GPL vmlinux 0x8ea82211 handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x8eb1128d tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0x8eb963cf mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0x8ebdaa65 devm_usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x8edb7ced power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0x8ee9755f crypto_ahash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x8eeaafd4 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x8efc1ce2 inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x8f051fbc pm_genpd_syscore_poweron -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f161f37 sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x9011cb6a init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0x9022d5bc memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x9032cb4e dummy_con -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x9047c11a trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0x905a1f15 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x90675ff0 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x908d1165 swiotlb_tbl_unmap_single -EXPORT_SYMBOL_GPL vmlinux 0x909f547c ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x90abc4da wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x90b796cf crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0x90e4456d aead_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0x9169555b key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0x9186e3c1 tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x9189ccbe scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x919029f1 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x9192de37 __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0x91aa04b5 amba_device_put -EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91cf0047 power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0x91dda801 scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0x91e16fb9 scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0x92154ce1 ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x922a1576 pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0x923dedbe blkdev_read_iter -EXPORT_SYMBOL_GPL vmlinux 0x924bac42 serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x925aed4a bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x925f26cd mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9297c730 get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x92accbf3 gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0x92b21947 class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x92c81eb7 rhashtable_walk_init -EXPORT_SYMBOL_GPL vmlinux 0x92d495b4 inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0x92d76a5e device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92f6e4b6 __ktime_divns -EXPORT_SYMBOL_GPL vmlinux 0x93155e4c mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x93462dec amba_device_add -EXPORT_SYMBOL_GPL vmlinux 0x9352921d mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x9355a3aa flush_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0x936e2675 unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x93772b3f usb_stor_control_msg -EXPORT_SYMBOL_GPL vmlinux 0x93bbc05c __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x93bf2fcd __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x93c2f24d blkcipher_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x93d3b951 of_fixed_factor_clk_setup -EXPORT_SYMBOL_GPL vmlinux 0x941de7cc devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x9432b036 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x94542097 exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0x9463ff71 init_bch -EXPORT_SYMBOL_GPL vmlinux 0x946a82de of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x9470ed28 device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0x94b220a1 of_overlay_create -EXPORT_SYMBOL_GPL vmlinux 0x94e66a3b invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0x9501c35d devm_pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x950499e6 blkg_print_stat_bytes -EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x950ee7d1 fb_find_logo -EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x952c88ae ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0x952d0fd8 trace_buffer_unlock_commit_regs -EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x954aa6d1 devm_rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9557f44e usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0x955af1eb synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x95642249 map_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x956e2b0f devm_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x957f8d73 regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x9594fd44 regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x95c578a0 ioremap_page_range -EXPORT_SYMBOL_GPL vmlinux 0x95f25aa7 devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x961e03b3 gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x962cd2be scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x96627bc9 __ablkcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x966b2e01 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0x96723819 crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0x969915c4 usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x969bee81 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x96c621d8 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x96f30080 devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x9701cf4d class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9708a9ff crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x973002c8 bcm_dma_is_busy -EXPORT_SYMBOL_GPL vmlinux 0x97414b4a hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x9755ffcb shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0x976d8ecf devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0x978c4866 crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0x97917966 tc3589x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x9796921f led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0x97ac3f81 perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x97c57421 devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0x97ca4cfe usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x97d236c2 regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x97d806d7 raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0x97d818af crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97f0ed4b ping_proc_register -EXPORT_SYMBOL_GPL vmlinux 0x97fd40ff usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0x981121f4 wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x981ebadc __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x982a82e5 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x98453f60 pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x986c4794 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x9876d6c7 bio_clone_mddev -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x989a6d05 of_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x989eb047 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x98c9f584 klist_init -EXPORT_SYMBOL_GPL vmlinux 0x98d4692c tpm2_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x98ea0f39 pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on -EXPORT_SYMBOL_GPL vmlinux 0x9905c237 trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0x991b28c8 dev_pm_opp_find_freq_floor -EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x992ca9c4 vc_sm_map -EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x9973add9 __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range -EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x99bd1827 debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0x99c0a822 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0x99ca1cf6 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x99ce0592 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x9a020ec0 get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x9a028d4f perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0x9a03038f ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a12f9ac i2c_new_dummy -EXPORT_SYMBOL_GPL vmlinux 0x9a1976fe clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0x9a3765a7 pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x9a4db4d0 regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x9a798444 arizona_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x9a7b0eb5 blk_mq_register_disk -EXPORT_SYMBOL_GPL vmlinux 0x9a85e211 register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck -EXPORT_SYMBOL_GPL vmlinux 0x9a94bab9 sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0x9a9cfda1 regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0x9abad25a of_alias_get_id -EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9b08c034 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0x9b18d3e6 dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x9b274a1e sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0x9b3b1c6b sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0x9b6006b9 fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x9b631caf ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x9b67da48 palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0x9b7c4326 da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0x9b9824b6 do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0x9be233d5 __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x9be77b8e regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0x9bec4b62 usbnet_get_drvinfo -EXPORT_SYMBOL_GPL vmlinux 0x9bece01b sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9c290052 __netlink_alloc_skb -EXPORT_SYMBOL_GPL vmlinux 0x9c2f9bd4 cpufreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9c30e37a arizona_of_get_named_gpio -EXPORT_SYMBOL_GPL vmlinux 0x9c3e5b59 percpu_ida_destroy -EXPORT_SYMBOL_GPL vmlinux 0x9c5ed789 regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0x9c6a16f1 dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0x9caf37b3 spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0x9cbe57fe regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9d1fae81 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x9d29cf6d __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x9d2c07a4 sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0x9d3d0862 regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x9d48c8bd i2c_slave_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9d57d80e crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x9d6ae0ce kill_mtd_super -EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x9d893e44 blk_mq_tags_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x9d8ced08 ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x9d8ffe9a bcm_dma_abort -EXPORT_SYMBOL_GPL vmlinux 0x9dab9b7f ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported -EXPORT_SYMBOL_GPL vmlinux 0x9dd8555e sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x9ded7cf2 usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e509103 of_thermal_is_trip_valid -EXPORT_SYMBOL_GPL vmlinux 0x9e65995f regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0x9e71b8bc securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x9e7445ba usbnet_write_cmd -EXPORT_SYMBOL_GPL vmlinux 0x9e7a2dec gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0x9e7dbda9 dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0x9e862290 devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x9e95fdec find_symbol -EXPORT_SYMBOL_GPL vmlinux 0x9e9a654b devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9e9bac82 crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0x9ea37aef trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0x9ed096cf rt_mutex_timed_lock -EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ee030a5 crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x9ee33db5 regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x9ee3d4be xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0x9ef7f106 bsg_request_fn -EXPORT_SYMBOL_GPL vmlinux 0x9f098472 of_property_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0x9f1a1e4d get_mtd_device_nm -EXPORT_SYMBOL_GPL vmlinux 0x9f5902a8 usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0x9f68dc8b power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x9f7e1739 tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0x9f800af2 input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0x9fc37455 regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fe50916 ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9febd816 devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0xa002b025 regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0xa00f2fae component_del -EXPORT_SYMBOL_GPL vmlinux 0xa013a9cf init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xa033df40 clk_register_divider -EXPORT_SYMBOL_GPL vmlinux 0xa044a882 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0xa0805969 task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xa09a5a00 sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0xa0a61cb9 crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0xa0a6aceb dev_pm_opp_get_opp_count -EXPORT_SYMBOL_GPL vmlinux 0xa0bd9fa6 pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0xa0bdc64d debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xa0d04869 to_of_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xa14a1817 trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0xa15556a6 dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0xa17a8bbb regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0xa1854207 ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0xa18cedce dev_pm_opp_get_notifier -EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0xa1bdb609 class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa1eb4ec0 arizona_set_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0xa1f56b41 reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xa20a3ec4 mtd_read_oob -EXPORT_SYMBOL_GPL vmlinux 0xa215aec9 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0xa223f7ce sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0xa2520c97 sdhci_free_host -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa2b672e3 ping_seq_fops -EXPORT_SYMBOL_GPL vmlinux 0xa2b9c993 clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xa2bf42df ahash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0xa2c06629 __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xa2e52717 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0xa306db5e sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xa3425410 ata_sg_init -EXPORT_SYMBOL_GPL vmlinux 0xa355d75e ata_base_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register -EXPORT_SYMBOL_GPL vmlinux 0xa3ac1ea7 gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0xa3e8663c fsl8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0xa405a738 pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0xa408ea59 sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xa423897d rtc_irq_set_state -EXPORT_SYMBOL_GPL vmlinux 0xa427e57e netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0xa42960fd uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0xa440cd98 of_dma_get_range -EXPORT_SYMBOL_GPL vmlinux 0xa44b7901 usb_stor_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa44b9d98 gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xa4607cac wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa4a59f2e serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0xa4b058d7 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa4b2bbdb crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0xa4b3f96d sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xa4c3851e skcipher_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa4eca952 regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xa4ecccc0 device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0xa4ef3668 spi_async -EXPORT_SYMBOL_GPL vmlinux 0xa504d94d ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0xa5060596 pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0xa50b53ba irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0xa51c3d31 bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0xa5487ec7 crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0xa557582b clk_register_gpio_gate -EXPORT_SYMBOL_GPL vmlinux 0xa5643caa __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0xa5650409 dio_end_io -EXPORT_SYMBOL_GPL vmlinux 0xa5656157 posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0xa58ef352 bio_alloc_mddev -EXPORT_SYMBOL_GPL vmlinux 0xa5a83a86 mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0xa5b3f6c8 gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa5f84d31 sdio_run_irqs -EXPORT_SYMBOL_GPL vmlinux 0xa5f8854a usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xa615f8de watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0xa618c2ea da903x_read -EXPORT_SYMBOL_GPL vmlinux 0xa61ac94d of_resolve_phandles -EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0xa68c6fd8 __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6c61f55 extcon_unregister_interest -EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa7113007 vc_sm_free -EXPORT_SYMBOL_GPL vmlinux 0xa76462bf fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0xa797badf da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0xa79a7a66 wakeup_source_prepare -EXPORT_SYMBOL_GPL vmlinux 0xa7a4ca57 usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0xa7bbbdbe udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xa7bcab19 dma_request_slave_channel_reason -EXPORT_SYMBOL_GPL vmlinux 0xa7d8ea75 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xa7f6834f netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0xa7f79911 rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0xa7fe87f4 regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xa813eb1c dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0xa8143bf3 rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0xa81f0b0e of_irq_parse_raw -EXPORT_SYMBOL_GPL vmlinux 0xa8458904 l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa865e69b pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0xa884705b napi_hash_add -EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xa8bc717e percpu_ida_free_tags -EXPORT_SYMBOL_GPL vmlinux 0xa8c3876f wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xa8d9cc6e devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xa900e3a3 fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0xa92a3ebf inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa94b3189 nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0xa9790923 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0xa992c0c4 tasklet_hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0xa99f35b3 scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xa9aa08f7 ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0xa9ba8cb3 get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0xa9bf7ca9 driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9d17b22 mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0xa9d6249c mtd_writev -EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9e4a983 kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0xa9e59bf7 register_jprobe -EXPORT_SYMBOL_GPL vmlinux 0xa9e8de41 regmap_read -EXPORT_SYMBOL_GPL vmlinux 0xa9fcf648 device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0xaa103625 ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xaa217232 power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0xaa3ae562 napi_by_id -EXPORT_SYMBOL_GPL vmlinux 0xaa5fb2d9 bgpio_init -EXPORT_SYMBOL_GPL vmlinux 0xaa7df8d7 bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0xaa7e42d0 crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaaad7f67 pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0xaab0ee70 dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0xaaca6903 __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0xaafe8ad1 pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xab02cf69 devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0xab13067e key_type_user -EXPORT_SYMBOL_GPL vmlinux 0xab18e6bd scatterwalk_map -EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0xab2ba37f wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0xab2c91d7 usbnet_get_msglevel -EXPORT_SYMBOL_GPL vmlinux 0xab2e3510 cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0xab5041e2 usb_stor_bulk_transfer_buf -EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del -EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request -EXPORT_SYMBOL_GPL vmlinux 0xab6d32e9 fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0xab7c5183 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0xab945a16 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0xaba13567 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0xaba1fc15 usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0xaba54bf8 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0xabb913e0 of_property_count_elems_of_size -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabea8a23 of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0xabf0a7d8 verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xac084f26 regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xac0f7f93 blk_queue_bypass_end -EXPORT_SYMBOL_GPL vmlinux 0xac4bf0fa sdhci_pltfm_free -EXPORT_SYMBOL_GPL vmlinux 0xac7abf60 rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0xacab8758 devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0xacb9ac76 md_new_event -EXPORT_SYMBOL_GPL vmlinux 0xacc67275 sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0xacdaf878 phy_put -EXPORT_SYMBOL_GPL vmlinux 0xacdea2f1 list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0xace26e30 scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list -EXPORT_SYMBOL_GPL vmlinux 0xad4cc529 regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xad724503 __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0xad7355e1 tpm_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xad77e338 cpufreq_frequency_table_target -EXPORT_SYMBOL_GPL vmlinux 0xada01fc3 crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0xadb20a15 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0xadb41e4c anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0xade33c5c mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0xae4c4d1a reservation_object_wait_timeout_rcu -EXPORT_SYMBOL_GPL vmlinux 0xae606229 da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0xae68e843 of_irq_parse_one -EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae6a7398 dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae7cdc24 cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xae81922b of_overlay_destroy_all -EXPORT_SYMBOL_GPL vmlinux 0xae9f9d59 nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit -EXPORT_SYMBOL_GPL vmlinux 0xaf3c1d26 regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xaf49e5a9 __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0xaf750098 relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0xaf767caa crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0xaf7919f3 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0xaf9b3a59 skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0xafa2ea49 led_trigger_show -EXPORT_SYMBOL_GPL vmlinux 0xafdb3b43 dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0xb0128a78 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0xb01a0afb usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xb043fbb0 pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0xb05cd3e1 irq_domain_add_simple -EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb08d9bdc aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0xb0ab74e6 rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb0ad0ddd extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0xb0b355b1 usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0bce4f0 __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0xb0be94c4 regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0xb10112b8 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0xb133d1b1 ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0xb136edb1 anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read -EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb16a41a3 devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb18de584 ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0xb1986ce3 ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched -EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain -EXPORT_SYMBOL_GPL vmlinux 0xb1dafbda pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1e3e310 sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xb1eaf29b usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xb1ee6dc6 gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0xb20a622c pm_runtime_get_if_in_use -EXPORT_SYMBOL_GPL vmlinux 0xb21a942b component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb22db5ef deregister_mtd_parser -EXPORT_SYMBOL_GPL vmlinux 0xb237861e srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xb23df137 __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0xb2672fbf devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb2d5926e transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb3118333 pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0xb3196079 cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0xb3278d59 pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0xb32e9414 pwm_free -EXPORT_SYMBOL_GPL vmlinux 0xb334657a gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0xb345c2d8 pm_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0xb34a36a9 usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xb34bb7d3 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL vmlinux 0xb34ff2a0 __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xb3532a70 extcon_get_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0xb378a6d8 kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0xb388e2c0 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0xb38ad16e xfrm_inner_extract_output -EXPORT_SYMBOL_GPL vmlinux 0xb38b1182 usbnet_stop -EXPORT_SYMBOL_GPL vmlinux 0xb392c105 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xb3a246fe fuse_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb3e12b94 cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0xb40d8d8f __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xb41dc5b7 dev_pm_opp_set_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0xb4227114 pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb441978f ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0xb45a93af devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0xb45ba6d0 crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0xb4892bf5 tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0xb4ae8481 amba_apb_device_add -EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4be8934 devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb4e6e6bd sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb4fc42a8 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0xb505b23d sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xb505e9fe __rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0xb512feb1 subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb52ffb37 replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0xb5384178 pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xb54d40db cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xb55f1e01 irq_find_mapping -EXPORT_SYMBOL_GPL vmlinux 0xb564f3ad devres_remove -EXPORT_SYMBOL_GPL vmlinux 0xb584b16e debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited -EXPORT_SYMBOL_GPL vmlinux 0xb59ed7d5 scsi_internal_device_unblock -EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table -EXPORT_SYMBOL_GPL vmlinux 0xb5cba789 inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0xb5d24f07 seq_release_net -EXPORT_SYMBOL_GPL vmlinux 0xb5db0926 phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb5e896fb tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0xb5ee5757 usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb5f5e1fd devm_pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xb61fbe90 sg_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb63965f8 of_thermal_get_ntrips -EXPORT_SYMBOL_GPL vmlinux 0xb65546f7 regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xb6b63c31 regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xb6e1d99f pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb6f08b2d dev_pm_opp_get_suspend_opp -EXPORT_SYMBOL_GPL vmlinux 0xb6f656df debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xb711d130 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xb7281359 max_gen_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase -EXPORT_SYMBOL_GPL vmlinux 0xb7364010 wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xb7d5e3f5 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0xb7e5948a ata_sff_data_xfer_noirq -EXPORT_SYMBOL_GPL vmlinux 0xb7f47a03 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0xb80a2d89 of_irq_find_parent -EXPORT_SYMBOL_GPL vmlinux 0xb816f5d7 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0xb8346aeb percpu_ida_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb83f1a3d scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0xb85422b9 pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb8b1537e rt_mutex_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb8c7185e sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb90d1b93 class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xb91353ad xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0xb91cd3a1 ablkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0xb91f13bf bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0xb92427b4 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0xb9290728 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0xb9475480 ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0xb94dfe41 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0xb958468d dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0xb959f8b5 fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb973ea91 rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0xb97db03c module_mutex -EXPORT_SYMBOL_GPL vmlinux 0xb989dae5 devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0xb994a9e5 regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xb9c117f1 remove_irq -EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9e00387 swiotlb_tbl_sync_single -EXPORT_SYMBOL_GPL vmlinux 0xb9f2d441 mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xba025609 i2c_lock_adapter -EXPORT_SYMBOL_GPL vmlinux 0xba131deb device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba3aa52a ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0xba4abe01 dma_buf_kunmap -EXPORT_SYMBOL_GPL vmlinux 0xba699273 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0xba78f7b1 single_release_net -EXPORT_SYMBOL_GPL vmlinux 0xba874920 md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0xba8887f7 usb_phy_generic_register -EXPORT_SYMBOL_GPL vmlinux 0xba8929ea percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xbaa30427 ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0xbab43cd5 __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbacc5def crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xbb06b0b9 sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb11cfba klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xbb1f9ef9 regmap_update_bits_check_async -EXPORT_SYMBOL_GPL vmlinux 0xbb28f43d usbnet_resume -EXPORT_SYMBOL_GPL vmlinux 0xbb3d5401 extcon_set_cable_state -EXPORT_SYMBOL_GPL vmlinux 0xbb515355 cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0xbb5a96a9 ata_do_eh -EXPORT_SYMBOL_GPL vmlinux 0xbb67aba5 sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xbb7cf9cb jump_label_rate_limit -EXPORT_SYMBOL_GPL vmlinux 0xbb9e2ab5 sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0xbbb0b076 use_mm -EXPORT_SYMBOL_GPL vmlinux 0xbbed43fa proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0xbbf9d5c0 device_create -EXPORT_SYMBOL_GPL vmlinux 0xbc1a086c irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0xbc3ddb61 dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc721190 usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xbc785c6c crypto_ablkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xbc79f906 crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xbc9e46b8 __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbcb387e9 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0xbcbaa80a __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcde6b9d blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0xbcf3d214 dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0xbcf89ab6 __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0xbcfe0299 tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xbd1fb372 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0xbd247207 blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0xbd2938d3 debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0xbd382119 md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd4be9d2 __of_genpd_xlate_simple -EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0xbd97c2a1 set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0xbdbe1f52 __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0xbdbf024d power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0xbdc0aca2 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0xbdd335b6 percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0xbde18bfc bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xbdf512de free_bch -EXPORT_SYMBOL_GPL vmlinux 0xbdfbae53 gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xbe37af60 ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe7f8cc2 ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbe9d66da ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbedb3e39 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf09c175 usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0xbf11cfc2 thermal_generate_netlink_event -EXPORT_SYMBOL_GPL vmlinux 0xbf4b2325 of_console_check -EXPORT_SYMBOL_GPL vmlinux 0xbf4b5a80 usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0xbf5bcea4 sdhci_remove_host -EXPORT_SYMBOL_GPL vmlinux 0xbf771c31 xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0xbf82e19c unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xbfb0f52c pin_is_valid -EXPORT_SYMBOL_GPL vmlinux 0xbfb73bfb ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0xbfbcddf8 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbfdbfb23 irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbfee6498 dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xc0097f35 fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0xc0151702 da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc01f3c85 blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0xc0274f7f ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xc034857d iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0xc043ad01 rhashtable_walk_start -EXPORT_SYMBOL_GPL vmlinux 0xc052387b usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0xc07c8c2e inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc0a1a87e crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0xc0a217fd queue_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0b8cf29 fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0xc0c0551e blk_queue_dma_drain -EXPORT_SYMBOL_GPL vmlinux 0xc0cb6e0e of_get_regulator_init_data -EXPORT_SYMBOL_GPL vmlinux 0xc0d014de usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0xc0e750fb of_property_read_u32_index -EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc0f7aab7 wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0xc121920d bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0xc12e58c8 input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc12ffb7b usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0xc1666b94 usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc18578ed process_srcu -EXPORT_SYMBOL_GPL vmlinux 0xc1a0d24b ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0xc1ab22ba tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0xc1bced6a cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xc1d2e54f spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xc1dd3787 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc1e268ea irq_map_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xc1ef671e ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0xc21966bf pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc2456e1c clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0xc24d44dd sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0xc26db470 fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0xc28bb154 ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0xc2af53f5 mnt_clone_write -EXPORT_SYMBOL_GPL vmlinux 0xc2bd20b0 transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0xc2d6f818 blkcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0xc2e728dc ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xc301fc0e regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xc318c725 thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0xc31dc972 fill_inquiry_response -EXPORT_SYMBOL_GPL vmlinux 0xc32e7129 of_get_videomode -EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc354dbc9 mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xc36ef5f6 list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xc385cb58 perf_num_counters -EXPORT_SYMBOL_GPL vmlinux 0xc39b5164 dm_get_rq_mapinfo -EXPORT_SYMBOL_GPL vmlinux 0xc3a4f9c4 cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xc3aa2b76 inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0xc3aabf02 cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0xc3b93bba klist_next -EXPORT_SYMBOL_GPL vmlinux 0xc3c7744f fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xc3d0c979 crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0xc40bb905 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xc417b2fe device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc4524f76 tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc4764941 gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0xc47a11c7 component_master_add_child -EXPORT_SYMBOL_GPL vmlinux 0xc48a5eeb __blkdev_driver_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xc48aa3cb user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc4ae2b27 usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0xc4d7ae99 tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0xc5309897 unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0xc5516f12 wm5110_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0xc554d367 ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc56f0ac1 scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc5804ef1 led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0xc5924682 pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0xc59f2c3c usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xc5a6b0d7 led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0xc5e0dd66 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0xc5e55492 rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc5e84865 clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc5fbe4ee tpm2_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0xc600a17c ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0xc607402b device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc6181de7 xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0xc63bcd50 dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xc643231e tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0xc649229a clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc662729b devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xc681439c fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0xc68f7846 regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0xc698cfd0 task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc6a11ae5 __get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0xc6a1f43b ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6aa3ade usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0xc6b2e435 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0xc6bd49c0 sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0xc6c0301c skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0xc6c86b23 debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0xc6d3abf9 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xc6de5ce1 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0xc6f3d93f gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xc7224dc8 thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xc72cf19b ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xc742a8aa yield_to -EXPORT_SYMBOL_GPL vmlinux 0xc7479407 gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0xc75409ed debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0xc7671e1e phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7b19e51 usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer -EXPORT_SYMBOL_GPL vmlinux 0xc7cbed2d __inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0xc7cd4ea4 stop_critical_timings -EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc8344b61 wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xc87e2d7a sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xc897bfb6 __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0xc8bd6a8b blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0xc8e6f31c gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xc8f9e1a1 usbnet_set_msglevel -EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xc916f7d1 device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0xc925638a regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xc928c9da crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xc92aeac4 key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xc92fee37 init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc9709d60 gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xc979130c of_modalias_node -EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level -EXPORT_SYMBOL_GPL vmlinux 0xc983ba1d dt_init_idle_driver -EXPORT_SYMBOL_GPL vmlinux 0xc9870bd9 usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0xc9acdfb9 rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0xc9c19239 vc_sm_lock -EXPORT_SYMBOL_GPL vmlinux 0xc9cade88 sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0xc9cca2d8 wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0xc9d521d1 devm_led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0xc9db904e devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc9e0cfa5 usbnet_pause_rx -EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc9eea60a tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0xc9f1b3c8 pwm_disable -EXPORT_SYMBOL_GPL vmlinux 0xca06f41f __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0xca11b12d ulpi_viewport_access_ops -EXPORT_SYMBOL_GPL vmlinux 0xca1985cd bcm_dma_wait_idle -EXPORT_SYMBOL_GPL vmlinux 0xca2b3dc8 devm_regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xca46ac39 platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0xca5ffd4c uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0xca696b40 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0xca69db54 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcaca6259 sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xcb055672 platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0xcb123ca7 blk_queue_bypass_start -EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module -EXPORT_SYMBOL_GPL vmlinux 0xcb5083d0 blk_queue_rq_timed_out -EXPORT_SYMBOL_GPL vmlinux 0xcb829bc8 devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0xcb856ca0 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0xcb896cb9 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0xcbd80461 dev_pm_opp_enable -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0xcbf6baaa sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0xcc0fce84 trace_call_bpf -EXPORT_SYMBOL_GPL vmlinux 0xcc1288fd ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0xcc281ca3 inet_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0xcc47c120 __netpoll_free_async -EXPORT_SYMBOL_GPL vmlinux 0xcc5c9d93 securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xcc71800d usb_gen_phy_init -EXPORT_SYMBOL_GPL vmlinux 0xcc76f170 devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule -EXPORT_SYMBOL_GPL vmlinux 0xcc874311 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0xcc986f1e cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0xccbde870 pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0xcccdcfbf regmap_fields_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccdf41e6 devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0xcce61b1c scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0xcce96d9e tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0xccf0e187 blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0xcd01eebb tc3589x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xcd466e38 kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0xcd5c7b16 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0xcd604ca1 phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0xcd69c04d bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0xcd81d47a mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0xcd838f91 extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcd8a1049 ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq -EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs -EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdbbfc9d regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xce05c487 crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xce102fc0 rpi_firmware_transaction -EXPORT_SYMBOL_GPL vmlinux 0xce3edffc ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0xce627522 usbnet_open -EXPORT_SYMBOL_GPL vmlinux 0xce646c85 thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce6dd3a4 bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xce725499 posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0xce7446f8 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0xce9c7fc6 of_clk_get_parent_name -EXPORT_SYMBOL_GPL vmlinux 0xced2639c ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcf0897de regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0xcf097396 usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0xcf275bd7 napi_hash_del -EXPORT_SYMBOL_GPL vmlinux 0xcf345f2f dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain -EXPORT_SYMBOL_GPL vmlinux 0xcf867ad2 __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xcfbf5cb7 ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0xcfdf706d regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xcfe2468f mtd_block_isbad -EXPORT_SYMBOL_GPL vmlinux 0xcfef91b7 mtd_write -EXPORT_SYMBOL_GPL vmlinux 0xcff537e0 regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0xd00e84c2 pinctrl_utils_dt_free_map -EXPORT_SYMBOL_GPL vmlinux 0xd017cc3a da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd02111aa relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0xd0220508 da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0xd02e4322 spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0xd0337bc0 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0xd0385c5c gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0xd03bb4de get_device -EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd0903ba2 debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0xd0addb59 nf_register_afinfo -EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0ca6914 disk_part_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd0dc3962 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0xd0ee3128 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xd0ef269a device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xd0f7152f usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0xd0fb92a3 request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xd10a1f90 led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd10f7945 unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0xd12ad11f blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0xd1337d90 handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0xd133efbb pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0xd14a1aab usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0xd151991e usbnet_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xd16e5d2e tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0xd17b61c2 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0xd1822f0b cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xd183b04d ata_eh_qc_retry -EXPORT_SYMBOL_GPL vmlinux 0xd1a4aa80 devres_get -EXPORT_SYMBOL_GPL vmlinux 0xd1a5fd98 ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0xd1dc8a58 blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0xd1dd111e usbnet_tx_timeout -EXPORT_SYMBOL_GPL vmlinux 0xd1e01a42 __class_create -EXPORT_SYMBOL_GPL vmlinux 0xd1ead776 regulator_register -EXPORT_SYMBOL_GPL vmlinux 0xd1f0a011 usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd1f39422 usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xd1fda659 cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0xd1ffc165 mpc8xxx_spi_tx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0xd20bcaf8 spi_setup -EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd219dd69 usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xd2318d22 pinconf_generic_dt_node_to_map -EXPORT_SYMBOL_GPL vmlinux 0xd2357c93 class_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd23746f9 blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0xd23bbe0e __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xd242c4a8 ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xd252d7c5 regmap_update_bits_async -EXPORT_SYMBOL_GPL vmlinux 0xd260fc17 pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd28d3172 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xd2aaeb4e kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0xd2dac752 gpiochip_add -EXPORT_SYMBOL_GPL vmlinux 0xd2de7533 unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0xd2e575f7 device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript -EXPORT_SYMBOL_GPL vmlinux 0xd2f8ceaf edac_subsys -EXPORT_SYMBOL_GPL vmlinux 0xd31b745d inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0xd31f4cd5 gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed -EXPORT_SYMBOL_GPL vmlinux 0xd34874d6 blkg_print_stat_bytes_recursive -EXPORT_SYMBOL_GPL vmlinux 0xd374076a regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xd3b9566d usb_stor_set_xfer_buf -EXPORT_SYMBOL_GPL vmlinux 0xd3c480f3 devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd40b0c53 devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0xd417ea71 regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0xd417eca3 gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xd42ea4dd xattr_getsecurity -EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd482d2fc ping_bind -EXPORT_SYMBOL_GPL vmlinux 0xd4a005fb ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xd4b30939 __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4cd4774 rpi_firmware_get -EXPORT_SYMBOL_GPL vmlinux 0xd4f337cd ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0xd4fe18d9 mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0xd50b199e crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0xd50fd81e device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xd515820e sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0xd5229edc of_clk_src_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0xd58c662a get_mtd_device -EXPORT_SYMBOL_GPL vmlinux 0xd5b85c98 net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xd5ba566a generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0xd5bb18f6 __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0xd5c66cd5 relay_flush -EXPORT_SYMBOL_GPL vmlinux 0xd5f3492e clk_register -EXPORT_SYMBOL_GPL vmlinux 0xd5fcf7a5 i2c_unlock_adapter -EXPORT_SYMBOL_GPL vmlinux 0xd60301f8 __mtd_next_device -EXPORT_SYMBOL_GPL vmlinux 0xd609707c gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh -EXPORT_SYMBOL_GPL vmlinux 0xd6334d79 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd635534d user_preparse -EXPORT_SYMBOL_GPL vmlinux 0xd6414a07 dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0xd64a427b cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd67484c1 ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0xd68c0c3b regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd6c963b5 dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xd6dc7f5d skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0xd6fe0759 smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0xd73d5992 __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xd79092cc mtd_read -EXPORT_SYMBOL_GPL vmlinux 0xd7c44754 sdhci_get_of_property -EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0xd7d7f5a5 sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xd7dadd0e serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0xd7ddc4c1 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xd8034209 unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0xd80673e7 devm_power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xd8274016 __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd82d973d nand_release -EXPORT_SYMBOL_GPL vmlinux 0xd862a87f phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0xd87113d1 tc3589x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xd87643a1 blk_queue_flush_queueable -EXPORT_SYMBOL_GPL vmlinux 0xd893fc1b pinctrl_add_gpio_ranges -EXPORT_SYMBOL_GPL vmlinux 0xd8dd7f1f sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL vmlinux 0xd8e0baeb ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0xd8e0c8e2 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd8eb59e5 da903x_write -EXPORT_SYMBOL_GPL vmlinux 0xd8f1f496 netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0xd8f212a2 tpm_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0xd9250034 dma_buf_vmap -EXPORT_SYMBOL_GPL vmlinux 0xd941ad1b unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0xd94aa457 display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0xd95c536a crypto_init_ahash_spawn -EXPORT_SYMBOL_GPL vmlinux 0xd9663ccd unregister_mtd_user -EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd97682dc led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0xd9990a25 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0xd9b389bf phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0xd9b511e3 usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0xd9be1d1e dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0xd9dff661 power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0xd9e7bb0f scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xda0e5c58 sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0xda3a1b60 xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0xda436fa0 tcp_peer_is_proven -EXPORT_SYMBOL_GPL vmlinux 0xda47d165 debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0xda630e46 crypto_alloc_instance2 -EXPORT_SYMBOL_GPL vmlinux 0xda75a454 crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xda7e4e74 usbnet_resume_rx -EXPORT_SYMBOL_GPL vmlinux 0xdab07daf srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0xdadaeedb bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0xdadf1128 ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdae715e0 videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdb088cb1 pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xdb34a944 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xdb4b9bba bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0xdb578ddf disk_get_part -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb9bc7a5 __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0xdb9c228e debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0xdbb29a62 transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0xdbb97ecd tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0xdbdfa8f4 dev_pm_opp_get_freq -EXPORT_SYMBOL_GPL vmlinux 0xdbe1e0d4 ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdc10f870 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0xdc461430 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0xdc48d942 debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0xdc4a24df fuse_get_req_for_background -EXPORT_SYMBOL_GPL vmlinux 0xdc53c83a inet_hash -EXPORT_SYMBOL_GPL vmlinux 0xdc5886f6 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0xdc785217 skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdca7d080 tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0xdd098e1d debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock -EXPORT_SYMBOL_GPL vmlinux 0xdd18d8d8 syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd50edfb usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0xdd5b4767 thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd711576 blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0xdd7ab703 shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0xde0c42cc tcp_death_row -EXPORT_SYMBOL_GPL vmlinux 0xde2ae298 usbnet_skb_return -EXPORT_SYMBOL_GPL vmlinux 0xde38607e ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xde6b133e rhashtable_insert_rehash -EXPORT_SYMBOL_GPL vmlinux 0xde9463a6 freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xdf090c74 usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf1256e4 pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0xdf1eda8e ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0xdf276865 dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0xdf3ba972 ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xdf48cf02 dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0xdf5491a6 clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0xdf663dd0 phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0xdf6d5513 of_get_nand_ecc_strength -EXPORT_SYMBOL_GPL vmlinux 0xdf6e886c kern_mount_data -EXPORT_SYMBOL_GPL vmlinux 0xdf6fc3e0 mtd_erase_callback -EXPORT_SYMBOL_GPL vmlinux 0xdfb15b09 tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xdfb36fc7 sched_setscheduler_nocheck -EXPORT_SYMBOL_GPL vmlinux 0xdfb3f539 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0xdfc1fe1a iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0xdfc3c4ff spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0xdfda3245 devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name -EXPORT_SYMBOL_GPL vmlinux 0xe01d74d2 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0xe02ed064 __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0xe02f8789 regmap_fields_write -EXPORT_SYMBOL_GPL vmlinux 0xe0317f55 swiotlb_tbl_map_single -EXPORT_SYMBOL_GPL vmlinux 0xe0512c04 phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xe0646fa3 simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xe06af0cf rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe06e4157 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0xe073f471 usb_bus_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xe07ca631 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0xe08767ec single_open_net -EXPORT_SYMBOL_GPL vmlinux 0xe099f506 usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xe09ee493 sdhci_add_host -EXPORT_SYMBOL_GPL vmlinux 0xe0a3be42 find_vpid -EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0b6149b pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0xe0b77e44 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xe0c19d9b irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xe0fa8b0d fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0xe0ff48da tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xe107813f trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0xe1083ae3 __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0xe10f1368 platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0xe1158973 crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0xe121cbb6 static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0xe13495f9 rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xe13c99cc blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xe171fb89 arizona_free_irq -EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe183cf91 add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xe190e1fb raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xe1c56de9 ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0xe1c6b041 scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0xe1d2a8dd usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL vmlinux 0xe25edce8 sched_setscheduler -EXPORT_SYMBOL_GPL vmlinux 0xe271727c bcm_sg_suitable_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xe27cdb55 device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xe2985a09 reservation_object_get_fences_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe2ac2751 rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0xe30d0037 of_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xe3122514 usb_stor_ctrl_transfer -EXPORT_SYMBOL_GPL vmlinux 0xe3467be5 usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0xe35441ff securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xe35fa90b list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0xe3770cc8 __blk_put_request -EXPORT_SYMBOL_GPL vmlinux 0xe39abeca crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0xe3ccd15f bus_find_device_by_name -EXPORT_SYMBOL_GPL vmlinux 0xe3e362ed da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0xe40d47e9 devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0xe429ef7d inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0xe42e1f70 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe44607fa spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xe49615f7 dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4a0d7af __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xe4ad0bc9 dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto -EXPORT_SYMBOL_GPL vmlinux 0xe4d40178 rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xe4e0e941 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe4ef49dd usb_stor_probe2 -EXPORT_SYMBOL_GPL vmlinux 0xe506864a ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0xe51cca88 fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0xe5362eab vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0xe53e1f7b component_master_add -EXPORT_SYMBOL_GPL vmlinux 0xe55faa4e sdhci_alloc_host -EXPORT_SYMBOL_GPL vmlinux 0xe5726d7e of_reserved_mem_device_release -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe5e287bc crypto_alloc_instance -EXPORT_SYMBOL_GPL vmlinux 0xe5e43024 posix_timers_register_clock -EXPORT_SYMBOL_GPL vmlinux 0xe60b0bd1 regmap_write -EXPORT_SYMBOL_GPL vmlinux 0xe60f7897 crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0xe61e2a83 skcipher_geniv_exit -EXPORT_SYMBOL_GPL vmlinux 0xe627e363 usb_stor_disconnect -EXPORT_SYMBOL_GPL vmlinux 0xe634b2a0 sdhci_reset -EXPORT_SYMBOL_GPL vmlinux 0xe634f1ed pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe65fe38a devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe66b5945 clk_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xe681425e regmap_update_bits_check -EXPORT_SYMBOL_GPL vmlinux 0xe6865cd8 sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0xe687a345 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0xe6b29f07 call_filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0xe6b5b4c9 power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0xe6be09bd usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module -EXPORT_SYMBOL_GPL vmlinux 0xe6ceec11 __securityfs_setup_d_inode -EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen -EXPORT_SYMBOL_GPL vmlinux 0xe6e26d77 gpiochip_remove_pin_ranges -EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xe70c5300 device_store_int -EXPORT_SYMBOL_GPL vmlinux 0xe712dde6 crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe72fac49 mpc8xxx_spi_rx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0xe738fc16 usb_stor_bulk_srb -EXPORT_SYMBOL_GPL vmlinux 0xe73949dc ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0xe74ca37d l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0xe754f78f inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe772fe6c sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0xe77f509d sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0xe79337a6 of_get_display_timings -EXPORT_SYMBOL_GPL vmlinux 0xe7e13a11 blk_mq_cancel_requeue_work -EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr -EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe8363d8e devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0xe83810f4 kernfs_path -EXPORT_SYMBOL_GPL vmlinux 0xe846f609 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xe8545f64 led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit -EXPORT_SYMBOL_GPL vmlinux 0xe85d9367 ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe869bee0 policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0xe884da52 xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0xe8862941 usbnet_read_cmd -EXPORT_SYMBOL_GPL vmlinux 0xe8dfe98e task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0xe8fb912b srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe9043f8a stmpe_disable -EXPORT_SYMBOL_GPL vmlinux 0xe91c51af device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0xe93af6d9 usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe9640d94 __compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0xe9779ae3 get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0xe9a3b5ff sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0xe9b57c85 wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xe9bd04a5 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0xe9cc89e4 perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9f8b906 page_cache_sync_readahead -EXPORT_SYMBOL_GPL vmlinux 0xea036e41 crypto_create_tfm -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0xea455367 pm_complete_with_resume_check -EXPORT_SYMBOL_GPL vmlinux 0xea7a7de0 pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xeabc5d62 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0xeac067c8 device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0xeaff2064 usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0xeb013117 regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0xeb0a0ed9 led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0xeb25e8f4 devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xeb29ebd0 clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0xeb5393e4 regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xeb5bba26 serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0xeb669893 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0xeb745714 class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xeb9da485 subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xeba2c87d register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xeba3be13 platform_bus -EXPORT_SYMBOL_GPL vmlinux 0xeba5e0a2 usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL vmlinux 0xebb27812 max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0xebb3592b snmp_get_cpu_field64 -EXPORT_SYMBOL_GPL vmlinux 0xebb7e578 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xec0aba39 ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare -EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del -EXPORT_SYMBOL_GPL vmlinux 0xec5d8450 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0xec731d19 of_regulator_match -EXPORT_SYMBOL_GPL vmlinux 0xeca84c12 security_kernel_fw_from_file -EXPORT_SYMBOL_GPL vmlinux 0xecbba70c setup_irq -EXPORT_SYMBOL_GPL vmlinux 0xecc5ad2f alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0xecd8476c of_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0xecef1e3a pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xecf4944a crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xecfd8761 usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xed06c5cb pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xed10f1f9 wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xed123708 i2c_new_device -EXPORT_SYMBOL_GPL vmlinux 0xed2128a9 irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xed2efdc1 tpm2_startup -EXPORT_SYMBOL_GPL vmlinux 0xed315a09 fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0xed88b3c6 serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0xed9f70ab regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xeda63db3 scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0xedbcd231 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0xedc8b91e put_device -EXPORT_SYMBOL_GPL vmlinux 0xee0618ee power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0xee259332 bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0xee354633 serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0xee507473 rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible -EXPORT_SYMBOL_GPL vmlinux 0xee6cad3f __class_register -EXPORT_SYMBOL_GPL vmlinux 0xee81e41a blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0xee858825 skb_segment -EXPORT_SYMBOL_GPL vmlinux 0xee865d5f __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xeea385c0 inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0xeed16ef9 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0xeedc34a4 mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0xeef6169d genpd_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0xef115862 component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0xef1f811d tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0xef2ea185 devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0xef409b74 kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0xef4129a8 tc3589x_block_write -EXPORT_SYMBOL_GPL vmlinux 0xef419256 ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef51c116 clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0xef63a5fd devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xef66075c usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef74c723 debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0xef7ac8ae ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0xefa0b198 regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefb66e24 blk_add_request_payload -EXPORT_SYMBOL_GPL vmlinux 0xefe03683 regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0xefe59122 dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0xf03a376e ref_module -EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0xf1043eb9 usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0xf11db8a2 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0xf12caf22 clk_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0xf136dac6 dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0xf1446d9e __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf14c8b9b of_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xf15541d8 __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0xf1619a1b bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0xf168fd4f usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0xf182890a relay_reset -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf18b3ad7 ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0xf1900f13 md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0xf1b0fc40 usb_stor_probe1 -EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key -EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on -EXPORT_SYMBOL_GPL vmlinux 0xf1c5778a wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf1e8c78b of_gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0xf1f16c9e unregister_jprobes -EXPORT_SYMBOL_GPL vmlinux 0xf20c9171 ping_err -EXPORT_SYMBOL_GPL vmlinux 0xf2196393 tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0xf21ddfe5 serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf2211494 sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0xf22a3450 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xf265e77e of_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0xf28ec523 ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0xf28f0043 __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0xf2932fe4 skb_gso_transport_seglen -EXPORT_SYMBOL_GPL vmlinux 0xf293cb05 __module_text_address -EXPORT_SYMBOL_GPL vmlinux 0xf2a6019b ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xf2a7ff5b crypto_ahash_type -EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xf2ba3e92 blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf2bb97c8 ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0xf2c2eb98 vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0xf2c48404 arizona_dev_init -EXPORT_SYMBOL_GPL vmlinux 0xf2d6ad16 tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0xf30959db param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support -EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xf30fda27 lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf31a924b tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf32a8817 usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0xf3438c9e spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xf360249e ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0xf36f0e92 blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0xf37593d9 clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0xf375a6bf dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0xf3c3d282 of_get_display_timing -EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xf3f6d294 pl08x_filter_id -EXPORT_SYMBOL_GPL vmlinux 0xf42518f5 crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0xf43873ff usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xf43bf15a gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0xf44501d9 wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0xf467ec23 usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0xf4874398 max_gen_clk_ops -EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask -EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh -EXPORT_SYMBOL_GPL vmlinux 0xf4d448b0 bpf_prog_realloc -EXPORT_SYMBOL_GPL vmlinux 0xf4e97b1a rpi_firmware_property -EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0xf5426676 fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf56d5829 usb_stor_CB_reset -EXPORT_SYMBOL_GPL vmlinux 0xf5750e1c sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5dd89a9 ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0xf60fcb2f tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0xf6137de8 usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0xf6350cde __blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf661ad22 usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0xf66a6751 __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf6bcc972 skcipher_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6d1c770 inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf6d726aa ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf6f942f8 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xf71328ef led_trigger_store -EXPORT_SYMBOL_GPL vmlinux 0xf722231a sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf73e6f1b unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0xf76b0a59 read_current_timer -EXPORT_SYMBOL_GPL vmlinux 0xf77293bf dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0xf7aa4e19 sched_setattr -EXPORT_SYMBOL_GPL vmlinux 0xf7c09d50 __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0xf7dac499 __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0xf7e79e11 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0xf7e8f7e3 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xf7f0592f ping_hash -EXPORT_SYMBOL_GPL vmlinux 0xf7fc91d4 regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0xf814e40a stmpe_block_read -EXPORT_SYMBOL_GPL vmlinux 0xf817facf phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0xf82390f1 stmpe_block_write -EXPORT_SYMBOL_GPL vmlinux 0xf82b7e0d component_add -EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf846506f irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf84d19bf of_irq_to_resource_table -EXPORT_SYMBOL_GPL vmlinux 0xf8536a3a tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0xf859a843 register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xf88a8938 __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xf8beb7f1 of_property_read_string_helper -EXPORT_SYMBOL_GPL vmlinux 0xf8cbd934 device_move -EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops -EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0xf9180ce9 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf958dfca iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0xf987a1a2 pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9a3a760 usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xf9aba78c ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xf9cd7039 power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0xf9cdbd2b crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0xf9eb4a03 blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa2f64b8 crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0xfa3d8944 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfa413a01 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xfa8f0950 ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0xfa91e88a metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0xfacb1a2d gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0xfad0dfdf ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xfaeb4629 wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xfb0fcca9 udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0xfb17d9fe irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xfb1cea7c zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0xfb2730c1 regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0xfb2f7d21 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0xfb2f8499 sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xfb308969 sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0xfb30a92c usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb3808fe class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xfb5668cb find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb8dea57 __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0xfb94f014 usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0xfbb38681 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0xfbb8c7eb regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbc24ec7 ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0xfbcf076a bio_associate_blkcg -EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc2fc7b9 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0xfc3f4c8e stmpe_enable -EXPORT_SYMBOL_GPL vmlinux 0xfc497be1 ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0xfc4f0ed6 smpboot_register_percpu_thread_cpumask -EXPORT_SYMBOL_GPL vmlinux 0xfc5ed55a of_get_fb_videomode -EXPORT_SYMBOL_GPL vmlinux 0xfc66fc24 i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0xfc95943a enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xfcb07f4b sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0xfcdb8a4a regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xfcde5830 sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0xfce407ba wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xfce53be8 regmap_field_write -EXPORT_SYMBOL_GPL vmlinux 0xfcfb7631 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0xfd124f2e otg_ulpi_create -EXPORT_SYMBOL_GPL vmlinux 0xfd1eecd2 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL vmlinux 0xfd26bd31 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xfd26e2d3 usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xfd4df468 cpufreq_governor_dbs -EXPORT_SYMBOL_GPL vmlinux 0xfd79f54e uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack -EXPORT_SYMBOL_GPL vmlinux 0xfd84c833 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0xfd8ba517 br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0xfd9869a1 of_reserved_mem_device_init -EXPORT_SYMBOL_GPL vmlinux 0xfda5bb2f usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0xfdbaa39a crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xfdddfdd9 dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0xfde0473d ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0xfde1a33e klist_prev -EXPORT_SYMBOL_GPL vmlinux 0xfde9209a sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0xfdf4327c crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0xfdf830a4 gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xfe009c06 hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0xfe091383 ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0xfe131401 usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0xfe2caf85 sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0xfe575ac6 of_clk_parent_fill -EXPORT_SYMBOL_GPL vmlinux 0xfe5cdb23 gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfead29f8 do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfed5dce0 usb_stor_reset_resume -EXPORT_SYMBOL_GPL vmlinux 0xfef271fb clk_gpio_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xfefa1157 mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0xfeff8301 devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xff1bee3a ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff34ac55 mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0xff57e410 gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xff906034 crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0xff983569 reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xffa40886 spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0xffd9dc5b sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0xffe42f13 skb_complete_wifi_ack reverted: --- linux-raspi2-4.4.0/debian.raspi2/abi/4.4.0-1067.75/armhf/raspi2.compiler +++ linux-raspi2-4.4.0.orig/debian.raspi2/abi/4.4.0-1067.75/armhf/raspi2.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu/Linaro 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 reverted: --- linux-raspi2-4.4.0/debian.raspi2/abi/4.4.0-1067.75/armhf/raspi2.modules +++ linux-raspi2-4.4.0.orig/debian.raspi2/abi/4.4.0-1067.75/armhf/raspi2.modules @@ -1,3547 +0,0 @@ -3c574_cs -3c589_cs -6lowpan -6pack -8021q -8250_dw -8255 -8390 -842 -842_compress -842_decompress -88pm800 -88pm805 -88pm80x -88pm80x_onkey -88pm8607 -88pm860x-ts -88pm860x_battery -88pm860x_bl -88pm860x_charger -88pm860x_onkey -9p -9pnet -9pnet_virtio -a3d -a8293 -aat2870-regulator -aat2870_bl -ab3100 -ab3100-otp -ablk_helper -ac97_bus -acecad -act200l-sir -act8865-regulator -act_bpf -act_connmark -act_csum -act_gact -act_ipt -act_mirred -act_nat -act_pedit -act_police -act_simple -act_skbedit -act_vlan -actisys-sir -ad2s1200 -ad2s1210 -ad2s90 -ad5064 -ad525x_dpot -ad525x_dpot-i2c -ad525x_dpot-spi -ad5360 -ad5380 -ad5398 -ad5421 -ad5446 -ad5449 -ad5504 -ad5592r -ad5592r-base -ad5593r -ad5624r_spi -ad5686 -ad5755 -ad5764 -ad5791 -ad5933 -ad714x -ad714x-i2c -ad714x-spi -ad7150 -ad7152 -ad7192 -ad7266 -ad7280a -ad7291 -ad7298 -ad7303 -ad7314 -ad7414 -ad7418 -ad7476 -ad7606 -ad7746 -ad7780 -ad7791 -ad7793 -ad7816 -ad7877 -ad7879 -ad7879-i2c -ad7879-spi -ad7887 -ad7923 -ad799x -ad8366 -ad9523 -ad9832 -ad9834 -ad_sigma_delta -adc128d818 -adcxx -ade7753 -ade7754 -ade7758 -ade7759 -ade7854 -ade7854-i2c -ade7854-spi -adf4350 -adfs -adi -adis16060 -adis16080 -adis16130 -adis16136 -adis16201 -adis16203 -adis16204 -adis16209 -adis16220 -adis16240 -adis16260 -adis16400 -adis16480 -adis_lib -adjd_s311 -adm1021 -adm1025 -adm1026 -adm1029 -adm1031 -adm1275 -adm9240 -adp5520-keys -adp5520_bl -adp5588-keys -adp5589-keys -adp8860_bl -adp8870_bl -ads1015 -ads7828 -ads7846 -ads7871 -adt7310 -adt7316 -adt7316-i2c -adt7316-spi -adt7410 -adt7411 -adt7462 -adt7470 -adt7475 -adt7x10 -adummy -adutux -adv7511 -adxl34x -adxl34x-i2c -adxl34x-spi -adxrs450 -aes-arm -aes-arm-bs -aes-arm-ce -af-rxrpc -af9013 -af9033 -af_alg -af_key -af_packet_diag -affs -afs -ah4 -ah6 -ahci_ceva -ahci_platform -ahci_qoriq -aim_cdev -aim_network -aim_sound -aim_v4l2 -aiptek -aircable -airo -airo_cs -airspy -ak8975 -al3320a -algif_aead -algif_hash -algif_rng -algif_skcipher -altera-stapl -altera_jtaguart -altera_ps2 -altera_tse -altera_uart -amba-pl010 -ambakmi -amc6821 -amd -ams369fg06 -analog -anatop-regulator -ansi_cprng -anubis -aoe -apbps2 -apds9300 -apds9802als -apds990x -apds9960 -appledisplay -appletalk -appletouch -aquantia -ar1021_i2c -ar5523 -ar7part -arc-rawmode -arc-rimi -arc4 -arc_emac -arc_ps2 -arc_uart -arcnet -arizona-haptics -arizona-i2c -arizona-ldo1 -arizona-micsupp -arizona-spi -ark3116 -arm_big_little -arm_big_little_dt -arm_mhu -arm_scpi -armada -arp_tables -arpt_mangle -arptable_filter -as102_fe -as3711-regulator -as3711_bl -as3722-regulator -as3935 -as5011 -asc7621 -asix -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at24 -at25 -at76c50x-usb -at803x -at86rf230 -atbm8830 -aten -ath -ath10k_core -ath3k -ath6kl_core -ath6kl_sdio -ath6kl_usb -ath9k -ath9k_common -ath9k_htc -ath9k_hw -ati_remote -ati_remote2 -atm -atmel -atmel-flexcom -atmel-hlcdc -atmel-hlcdc-dc -atmel_cs -atmel_mxt_ts -atmtcp -atusb -atxp1 -au0828 -au8522_common -au8522_decoder -au8522_dig -aufs -auo-pixcir-ts -auo_k1900fb -auo_k1901fb -auo_k190x -auth_rpcgss -authenc -authencesn -avma1_cs -ax25 -ax88179_178a -ax88796 -axnet_cs -axp20x-pek -axp20x-regulator -axp20x_usb_power -axp288_adc -axp288_charger -axp288_fuel_gauge -b2c2-flexcop -b2c2-flexcop-usb -b43 -b43legacy -b44 -bas_gigaset -batman-adv -baycom_epp -baycom_par -baycom_ser_fdx -baycom_ser_hdx -bcache -bcm-keypad -bcm-phy-lib -bcm203x -bcm2835-gpiomem -bcm2835-v4l2 -bcm2835_smi -bcm2835_smi_dev -bcm2835_smi_nand -bcm2835_wdt -bcm3510 -bcm590xx -bcm590xx-regulator -bcm5974 -bcm63138_nand -bcm63xx_uart -bcm7038_wdt -bcm7xxx -bcm87xx -bcma -bcma-hcd -bcmsysport -bd6107 -bdc -befs -belkin_sa -bfs -bfusb -bh1750 -bh1770glc -bh1780gli -binfmt_misc -block2mtd -blocklayoutdriver -blowfish_common -blowfish_generic -bluecard_cs -bluetooth -bluetooth_6lowpan -bma150 -bma180 -bmc150-accel-core -bmc150-accel-i2c -bmc150-accel-spi -bmc150_magn -bmg160_core -bmg160_i2c -bmg160_spi -bmp085 -bmp085-i2c -bmp085-spi -bmp280 -bnep -bonding -bpa10x -bpck -bpck6 -bpqether -bq2415x_charger -bq24190_charger -bq24257_charger -bq24735-charger -bq25890_charger -bq27xxx_battery -br2684 -br_netfilter -brcmfmac -brcmnand -brcmsmac -brcmstb_nand -brcmutil -brd -bridge -broadcom -broadsheetfb -bsd_comp -bt3c_cs -btbcm -btintel -btmrvl -btmrvl_sdio -btqca -btrfs -btrtl -btsdio -btuart_cs -btusb -btwilink -bu21013_ts -c67x00 -c_can -c_can_platform -cachefiles -cadence_wdt -caif -caif_hsi -caif_serial -caif_socket -caif_usb -caif_virtio -camellia_generic -can -can-bcm -can-dev -can-gw -can-raw -cap11xx -capi -capidrv -capmode -carl9170 -cast5_generic -cast6_generic -cast_common -catc -cb_das16_cs -cc10001_adc -cc2520 -cc770 -cc770_isa -cc770_platform -ccm -cdc-acm -cdc-phonet -cdc-wdm -cdc_eem -cdc_ether -cdc_mbim -cdc_ncm -cdc_subset -ceph -cfg80211 -cfi_cmdset_0001 -cfi_cmdset_0002 -cfi_cmdset_0020 -cfi_probe -cfi_util -cfspi_slave -ch -ch341 -ch7006 -ch9200 -chacha20_generic -chacha20poly1305 -chaoskey -chipone_icn8318 -chnl_net -ci_hdrc -ci_hdrc_imx -ci_hdrc_msm -ci_hdrc_usb2 -ci_hdrc_zevio -cicada -cifs -clip -clk-cdce706 -clk-cdce925 -clk-hifiberry-dacpro -clk-max77686 -clk-max77802 -clk-palmas -clk-pwm -clk-rk808 -clk-s2mps11 -clk-scpi -clk-si514 -clk-si5351 -clk-si570 -clk-twl6040 -clk-wm831x -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_rsvp -cls_rsvp6 -cls_tcindex -cls_u32 -cm109 -cm32181 -cm3232 -cm3323 -cm36651 -cm4000_cs -cm4040_cs -cma3000_d0x -cma3000_d0x_i2c -cmac -cmtp -cobra -coda -colibri-vf50-ts -com20020 -com20020_cs -com90io -com90xx -comedi -comedi_8254 -comedi_8255 -comedi_bond -comedi_parport -comedi_pcmcia -comedi_test -comedi_usb -comm -configs -cordic -core -cp210x -cpia2 -cpu-notifier-error-inject -cramfs -crc-ccitt -crc-itu-t -crc32 -crc7 -crc8 -cros_ec -cros_ec_devs -cros_ec_i2c -cros_ec_keyb -cros_ec_spi -cryptd -crypto_user -cryptoloop -cs53l32a -cs89x0 -ctr -cts -cuse -cw1200_core -cw1200_wlan_sdio -cw1200_wlan_spi -cx22702 -cx231xx -cx231xx-alsa -cx231xx-dvb -cx2341x -cx24113 -cx24116 -cx24120 -cx24123 -cx25840 -cx82310_eth -cxacru -cxd2820r -cy8ctmg110_ts -cyapatp -cyberjack -cypress_cy7c63 -cypress_firmware -cypress_m8 -cytherm -cyttsp4_core -cyttsp4_i2c -cyttsp4_spi -cyttsp_core -cyttsp_i2c -cyttsp_i2c_common -cyttsp_spi -da9030_battery -da9034-ts -da903x -da903x_bl -da9052-battery -da9052-hwmon -da9052-regulator -da9052_bl -da9052_onkey -da9052_tsi -da9052_wdt -da9055-hwmon -da9055-regulator -da9055_onkey -da9055_wdt -da9062-core -da9062-regulator -da9062_wdt -da9063-regulator -da9063_onkey -da9063_wdt -da9150-charger -da9150-core -da9150-fg -da9150-gpadc -da9210-regulator -da9211-regulator -das08 -das08_cs -davicom -db9 -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -dccp_probe -decnet -deflate -denali -denali_dt -des_generic -designware_i2s -dgap -dht11 -dib0070 -dib0090 -dib3000mb -dib3000mc -dib7000m -dib7000p -dib8000 -dibx000_common -digi_acceleport -digicolor-usart -diskonchip -dlci -dlm -dln2 -dm-bio-prison -dm-bufio -dm-cache -dm-cache-cleaner -dm-cache-mq -dm-cache-smq -dm-crypt -dm-delay -dm-era -dm-flakey -dm-log -dm-log-userspace -dm-log-writes -dm-mirror -dm-multipath -dm-persistent-data -dm-queue-length -dm-raid -dm-region-hash -dm-round-robin -dm-service-time -dm-snapshot -dm-switch -dm-thin-pool -dm-verity -dm-zero -dm9000 -dm9601 -dme1737 -dn_rtmsg -dnet -docg3 -docg4 -dp83848 -dp83867 -drbd -drbg -drm -drm_kms_helper -drm_mipi_dsi -drop_monitor -drv260x -drv2665 -drv2667 -drx39xyj -drxd -drxk -ds1621 -ds1682 -ds1wm -ds2482 -ds2490 -ds2760_battery -ds2780_battery -ds2781_battery -ds2782_battery -ds3000 -ds620 -dsbr100 -dss1_divert -dstr -dt9812 -dtl1_cs -dummy -dummy-irq -dummy_stm -dvb-as102 -dvb-core -dvb-pll -dvb-usb -dvb-usb-a800 -dvb-usb-af9005 -dvb-usb-af9005-remote -dvb-usb-af9015 -dvb-usb-af9035 -dvb-usb-anysee -dvb-usb-au6610 -dvb-usb-az6007 -dvb-usb-az6027 -dvb-usb-ce6230 -dvb-usb-cinergyT2 -dvb-usb-cxusb -dvb-usb-dib0700 -dvb-usb-dibusb-common -dvb-usb-dibusb-mb -dvb-usb-dibusb-mc -dvb-usb-digitv -dvb-usb-dtt200u -dvb-usb-dtv5100 -dvb-usb-dvbsky -dvb-usb-dw2102 -dvb-usb-ec168 -dvb-usb-friio -dvb-usb-gl861 -dvb-usb-gp8psk -dvb-usb-lmedm04 -dvb-usb-m920x -dvb-usb-mxl111sf -dvb-usb-nova-t-usb2 -dvb-usb-opera -dvb-usb-pctv452e -dvb-usb-rtl28xxu -dvb-usb-technisat-usb2 -dvb-usb-ttusb2 -dvb-usb-umt-010 -dvb-usb-vp702x -dvb-usb-vp7045 -dvb_usb_v2 -dw_dmac -dw_dmac_core -dw_mmc -dw_mmc-exynos -dw_mmc-k3 -dw_mmc-pltfm -dw_wdt -dwc3 -dwc_eth_qos -dwmac-generic -dwmac-ipq806x -dwmac-lpc18xx -dwmac-meson -dwmac-rk -dwmac-socfpga -dwmac-sti -dwmac-sunxi -dynapro -e3x0-button -e4000 -ebt_802_3 -ebt_among -ebt_arp -ebt_arpreply -ebt_dnat -ebt_ip -ebt_ip6 -ebt_limit -ebt_log -ebt_mark -ebt_mark_m -ebt_nflog -ebt_pkttype -ebt_redirect -ebt_snat -ebt_stp -ebt_vlan -ebtable_broute -ebtable_filter -ebtable_nat -ebtables -ec100 -echainiv -echo -edac_core -edt-ft5x06 -eeprom -eeprom_93cx6 -eeprom_93xx46 -eeti_ts -efs -egalax_ts -ehset -elan_i2c -elants_i2c -elo -elsa_cs -em28xx -em28xx-alsa -em28xx-dvb -em28xx-rc -em28xx-v4l -em_canid -em_cmp -em_ipset -em_meta -em_nbyte -em_text -em_u32 -emac_arc -emac_rockchip -emc1403 -emc2103 -emc6w201 -emi26 -emi62 -empeg -ems_pcmcia -ems_usb -enc28j60 -enclosure -encx24j600 -encx24j600-regmap -epat -epia -eql -esd_usb2 -esi-sir -esp4 -esp6 -et1011c -ethoc -evbug -exofs -extcon-adc-jack -extcon-arizona -extcon-axp288 -extcon-gpio -extcon-max14577 -extcon-max77693 -extcon-max77843 -extcon-max8997 -extcon-palmas -extcon-rt8973a -extcon-sm5502 -extcon-usb-gpio -ezusb -f2fs -f71805f -f71882fg -f75375s -f81232 -fakelb -fan53555 -faulty -fb_agm1264k-fl -fb_bd663474 -fb_hx8340bn -fb_hx8347d -fb_hx8353d -fb_hx8357d -fb_ili9163 -fb_ili9320 -fb_ili9325 -fb_ili9340 -fb_ili9341 -fb_ili9481 -fb_ili9486 -fb_pcd8544 -fb_ra8875 -fb_s6d02a1 -fb_s6d1121 -fb_ssd1289 -fb_ssd1306 -fb_ssd1331 -fb_ssd1351 -fb_st7735r -fb_st7789v -fb_sys_fops -fb_tinylcd -fb_tls8204 -fb_uc1611 -fb_uc1701 -fb_upd161704 -fb_watterott -fbtft -fbtft_device -fc0011 -fc0012 -fc0013 -fc2580 -fcrypt -fdp -fdp_i2c -ff-memless -fit2 -fit3 -flexcan -flexfb -fm_drv -fmc -fmc-chardev -fmc-fakedev -fmc-trivial -fmc-write-eeprom -fmvj18x_cs -fotg210-hcd -fotg210-udc -fou -fpga-mgr -freevxfs -friq -frpw -fsa9480 -fscache -fsl-dcu-drm -fsl-edma -fsl_lpuart -ft6236 -ftdi-elan -ftdi_sio -ftgmac100 -ftl -ftmac100 -fujitsu_ts -g760a -g762 -g_acm_ms -g_audio -g_cdc -g_dbgp -g_ether -g_ffs -g_hid -g_mass_storage -g_midi -g_ncm -g_nokia -g_printer -g_serial -g_webcam -g_zero -gadgetfs -gamecon -gameport -garmin_gps -garp -gcm -gdmtty -gdmulte -gdmwm -gen_probe -generic -generic-adc-battery -generic_bl -genet -geneve -gennvm -gf128mul -gf2k -gfs2 -ghash-arm-ce -ghash-generic -gigaset -girbil-sir -gl518sm -gl520sm -gl620a -gluebi -go7007 -go7007-loader -go7007-usb -goodix -gp2ap002a00f -gp2ap020a00f -gpio -gpio-74x164 -gpio-74xx-mmio -gpio-addr-flash -gpio-adnp -gpio-adp5520 -gpio-adp5588 -gpio-altera -gpio-arizona -gpio-beeper -gpio-charger -gpio-crystalcove -gpio-da9052 -gpio-da9055 -gpio-dln2 -gpio-dwapb -gpio-fan -gpio-grgpio -gpio-ir-recv -gpio-kempld -gpio-lp3943 -gpio-max7300 -gpio-max7301 -gpio-max730x -gpio-max732x -gpio-mc33880 -gpio-mcp23s08 -gpio-pca953x -gpio-pcf857x -gpio-regulator -gpio-syscon -gpio-tps65912 -gpio-twl4030 -gpio-twl6040 -gpio-ucb1400 -gpio-viperboard -gpio-wm831x -gpio-wm8350 -gpio-wm8994 -gpio_backlight -gpio_keys -gpio_keys_polled -gpio_mouse -gpio_tilt_polled -gpio_wdt -gr_udc -grace -grcan -gre -grip -grip_mp -gs_fpga -gs_usb -gspca_benq -gspca_conex -gspca_cpia1 -gspca_dtcs033 -gspca_etoms -gspca_finepix -gspca_gl860 -gspca_jeilinj -gspca_jl2005bcd -gspca_kinect -gspca_konica -gspca_m5602 -gspca_main -gspca_mars -gspca_mr97310a -gspca_nw80x -gspca_ov519 -gspca_ov534 -gspca_ov534_9 -gspca_pac207 -gspca_pac7302 -gspca_pac7311 -gspca_se401 -gspca_sn9c2028 -gspca_sn9c20x -gspca_sonixb -gspca_sonixj -gspca_spca1528 -gspca_spca500 -gspca_spca501 -gspca_spca505 -gspca_spca506 -gspca_spca508 -gspca_spca561 -gspca_sq905 -gspca_sq905c -gspca_sq930x -gspca_stk014 -gspca_stk1135 -gspca_stv0680 -gspca_stv06xx -gspca_sunplus -gspca_t613 -gspca_topro -gspca_touptek -gspca_tv8532 -gspca_vc032x -gspca_vicam -gspca_xirlink_cit -gspca_zc3xx -gtco -guillemot -gunze -gxt4500 -hackrf -hampshire -hanwang -hci -hci_uart -hci_vhci -hdc100x -hdlc -hdlc_cisco -hdlc_fr -hdlc_ppp -hdlc_raw -hdlc_raw_eth -hdlc_x25 -hdlcdrv -hdm_dim2 -hdm_i2c -hdm_usb -hdpvr -hfc4s8s_l1 -hfc_usb -hfcsusb -hfs -hfsplus -hi6421-pmic-core -hi6421-regulator -hi8435 -hid -hid-a4tech -hid-alps -hid-apple -hid-appleir -hid-aureal -hid-axff -hid-belkin -hid-betopff -hid-cherry -hid-chicony -hid-corsair -hid-cp2112 -hid-cypress -hid-dr -hid-elecom -hid-elo -hid-emsff -hid-ezkey -hid-gaff -hid-gembird -hid-generic -hid-gfrm -hid-gt683r -hid-gyration -hid-holtek-kbd -hid-holtek-mouse -hid-holtekff -hid-icade -hid-kensington -hid-keytouch -hid-kye -hid-lcpower -hid-lenovo -hid-logitech -hid-logitech-dj -hid-logitech-hidpp -hid-magicmouse -hid-microsoft -hid-monterey -hid-multitouch -hid-ntrig -hid-ortek -hid-penmount -hid-petalynx -hid-picolcd -hid-pl -hid-plantronics -hid-primax -hid-prodikeys -hid-rmi -hid-roccat -hid-roccat-arvo -hid-roccat-common -hid-roccat-isku -hid-roccat-kone -hid-roccat-koneplus -hid-roccat-konepure -hid-roccat-kovaplus -hid-roccat-lua -hid-roccat-pyra -hid-roccat-ryos -hid-roccat-savu -hid-saitek -hid-samsung -hid-sensor-accel-3d -hid-sensor-als -hid-sensor-custom -hid-sensor-gyro-3d -hid-sensor-hub -hid-sensor-iio-common -hid-sensor-incl-3d -hid-sensor-magn-3d -hid-sensor-press -hid-sensor-prox -hid-sensor-rotation -hid-sensor-trigger -hid-sjoy -hid-sony -hid-speedlink -hid-steelseries -hid-sunplus -hid-thingm -hid-tivo -hid-tmff -hid-topseed -hid-twinhan -hid-uclogic -hid-waltop -hid-wiimote -hid-xinmo -hid-zpff -hid-zydacron -hidp -hih6130 -hip04_eth -hisax -hisax_st5481 -hisi504_nand -hix5hd2_gmac -hmc5843_core -hmc5843_i2c -hmc5843_spi -hmc6352 -hnae -hns_dsaf -hns_enet_drv -hns_mdio -hostap -hostap_cs -hpfs -hsi -hsi_char -hso -hsr -htc-pasic3 -hts221 -hts221_i2c -hts221_spi -htu21 -huawei_cdc_ncm -hwa-hc -hwa-rc -hwmon-vid -hx8357 -i1480-dfu-usb -i1480-est -i2400m -i2400m-usb -i2c-algo-bit -i2c-algo-pca -i2c-arb-gpio-challenge -i2c-bcm2708 -i2c-cbus-gpio -i2c-cros-ec-tunnel -i2c-designware-core -i2c-designware-platform -i2c-diolan-u2c -i2c-dln2 -i2c-emev2 -i2c-gpio -i2c-hid -i2c-kempld -i2c-mux -i2c-mux-gpio -i2c-mux-pca9541 -i2c-mux-pca954x -i2c-mux-pinctrl -i2c-mux-reg -i2c-nomadik -i2c-ocores -i2c-parport -i2c-parport-light -i2c-pca-platform -i2c-rk3x -i2c-robotfuzz-osif -i2c-simtec -i2c-slave-eeprom -i2c-smbus -i2c-stub -i2c-taos-evm -i2c-tiny-usb -i2c-viperboard -i2c-xiic -ibmaem -ibmpex -icplus -ics932s401 -idma64 -idmouse -ieee802154 -ieee802154_6lowpan -ieee802154_socket -ifb -iforce -igorplugusb -iguanair -iio-trig-interrupt -iio-trig-periodic-rtc -iio-trig-sysfs -iio_dummy -iio_dummy_evgen -iio_hwmon -ila -ili210x -ili922x -ili9320 -imm -imon -impa7 -ims-pcu -imx074 -imx6ul_tsc -imx_thermal -ina209 -ina2xx -industrialio -industrialio-buffer-cb -industrialio-triggered-buffer -industrialio-triggered-event -inet_diag -inexio -inftl -input-polldev -int51x1 -intel_th -intel_th_gth -intel_th_msu -intel_th_pti -intel_th_sth -interact -interval_tree_test -inv-mpu6050 -io_edgeport -io_ti -iowarrior -ip6_gre -ip6_tables -ip6_tunnel -ip6_udp_tunnel -ip6_vti -ip6t_MASQUERADE -ip6t_NPT -ip6t_REJECT -ip6t_SYNPROXY -ip6t_ah -ip6t_eui64 -ip6t_frag -ip6t_hbh -ip6t_ipv6header -ip6t_mh -ip6t_rpfilter -ip6t_rt -ip6table_filter -ip6table_mangle -ip6table_nat -ip6table_raw -ip6table_security -ip_gre -ip_set -ip_set_bitmap_ip -ip_set_bitmap_ipmac -ip_set_bitmap_port -ip_set_hash_ip -ip_set_hash_ipmark -ip_set_hash_ipport -ip_set_hash_ipportip -ip_set_hash_ipportnet -ip_set_hash_mac -ip_set_hash_net -ip_set_hash_netiface -ip_set_hash_netnet -ip_set_hash_netport -ip_set_hash_netportnet -ip_set_list_set -ip_tables -ip_tunnel -ip_vs -ip_vs_dh -ip_vs_fo -ip_vs_ftp -ip_vs_lblc -ip_vs_lblcr -ip_vs_lc -ip_vs_nq -ip_vs_ovf -ip_vs_pe_sip -ip_vs_rr -ip_vs_sed -ip_vs_sh -ip_vs_wlc -ip_vs_wrr -ip_vti -ipack -ipaq -ipcomp -ipcomp6 -ipddp -ipheth -ipip -ipmi_devintf -ipmi_msghandler -ipmi_poweroff -ipmi_si -ipmi_ssif -ipmi_watchdog -ipoctal -iproc_nand -ipt_CLUSTERIP -ipt_ECN -ipt_MASQUERADE -ipt_REJECT -ipt_SYNPROXY -ipt_ah -ipt_rpfilter -iptable_filter -iptable_mangle -iptable_nat -iptable_raw -iptable_security -ipvlan -ipw -ipwireless -ipx -ir-hix5hd2 -ir-jvc-decoder -ir-kbd-i2c -ir-lirc-codec -ir-mce_kbd-decoder -ir-nec-decoder -ir-rc5-decoder -ir-rc6-decoder -ir-sanyo-decoder -ir-sharp-decoder -ir-sony-decoder -ir-usb -ir-xmp-decoder -ircomm -ircomm-tty -irda -irda-usb -irlan -irnet -irtty-sir -iscsi_boot_sysfs -iscsi_target_mod -iscsi_tcp -isdn -isdn_bsdcomp -isdnhdlc -isight_firmware -isl29003 -isl29018 -isl29020 -isl29028 -isl29125 -isl6271a-regulator -isl6421 -isl6423 -isl9305 -isofs -isp116x-hcd -isp1362-hcd -isp1704_charger -isp1760 -it87 -it913x -itd1000 -itg3200 -iuu_phoenix -ix2505v -jc42 -jedec_probe -jffs2 -jfs -jitterentropy_rng -joydev -joydump -jsa1212 -kafs -kalmia -kaweth -kbic -kbtab -kcomedilib -kempld-core -kempld_wdt -kernelcapi -keyspan -keyspan_pda -keyspan_remote -keywrap -kfifo_buf -khazad -kingsun-sir -kl5kusb105 -kmx61 -kobil_sct -ks0108 -ks8842 -ks8851 -ks8851_mll -ks959-sir -ksdazzle-sir -ktti -kvaser_usb -kxcjk-1013 -kxsd9 -kxtj9 -l1oip -l2tp_core -l2tp_debugfs -l2tp_eth -l2tp_ip -l2tp_ip6 -l2tp_netlink -l2tp_ppp -l4f00242t03 -lan78xx -lapb -lapbether -latch-addr-flash -lattice-ecp3-config -lcd -ld9040 -ldusb -lec -led-class-flash -leds-88pm860x -leds-aat1290 -leds-adp5520 -leds-bcm6328 -leds-bcm6358 -leds-bd2802 -leds-blinkm -leds-da903x -leds-da9052 -leds-dac124s085 -leds-ktd2692 -leds-lm3530 -leds-lm3533 -leds-lm355x -leds-lm3642 -leds-lp3944 -leds-lp5521 -leds-lp5523 -leds-lp5562 -leds-lp55xx-common -leds-lp8501 -leds-lp8788 -leds-lp8860 -leds-lt3593 -leds-max77693 -leds-max8997 -leds-mc13783 -leds-menf21bmc -leds-pca9532 -leds-pca955x -leds-pca963x -leds-pwm -leds-regulator -leds-tca6507 -leds-tlc591xx -leds-wm831x-status -leds-wm8350 -ledtrig-camera -ledtrig-transient -legousbtower -lg-vl600 -lg2160 -lgdt3305 -lgdt3306a -lgdt330x -lgs8gxx -lib80211 -lib80211_crypt_ccmp -lib80211_crypt_tkip -lib80211_crypt_wep -libahci -libahci_platform -libceph -libcomposite -libcrc32c -libertas -libertas_cs -libertas_sdio -libertas_spi -libertas_tf -libertas_tf_usb -libfc -libfcoe -libiscsi -libiscsi_tcp -libore -libosd -libsas -lightning -lineage-pem -linear -lirc_dev -lirc_imon -lirc_parallel -lirc_rpi -lirc_sasem -lirc_serial -lirc_sir -lirc_zilog -lis3l02dq -lis3lv02d -lis3lv02d_i2c -lis3lv02d_spi -litelink-sir -lkkbd -llc -llc2 -lm25066 -lm3533-als -lm3533-core -lm3533-ctrlbank -lm3533_bl -lm3630a_bl -lm3639_bl -lm63 -lm70 -lm73 -lm75 -lm77 -lm78 -lm80 -lm83 -lm8323 -lm8333 -lm85 -lm87 -lm90 -lm92 -lm93 -lm95234 -lm95241 -lm95245 -lms283gf05 -lms501kf03 -lnbp21 -lnbp22 -lockd -locktorture -lp -lp3943 -lp3971 -lp3972 -lp855x_bl -lp8727_charger -lp872x -lp8755 -lp8788-buck -lp8788-charger -lp8788-ldo -lp8788_adc -lp8788_bl -lpddr2_nvm -lpddr_cmds -lru_cache -lrw -ltc2941-battery-gauge -ltc2945 -ltc2978 -ltc3589 -ltc4151 -ltc4215 -ltc4222 -ltc4245 -ltc4260 -ltc4261 -ltr501 -ltv350qv -lv5207lp -lvstest -lxt -lz4 -lz4_compress -lz4hc -lz4hc_compress -m25p80 -m2m-deinterlace -m62332 -m88ds3103 -m88rs2000 -mISDN_core -mISDN_dsp -m_can -ma600-sir -mac-celtic -mac-centeuro -mac-croatian -mac-cyrillic -mac-gaelic -mac-greek -mac-iceland -mac-inuit -mac-roman -mac-romanian -mac-turkish -mac80211 -mac80211_hwsim -mac802154 -macb -macvlan -macvtap -mag3110 -magellan -mailbox-altera -mailbox-test -map_absent -map_ram -map_rom -marvell -matrix-keymap -matrix_keypad -max1027 -max1111 -max11801_ts -max1363 -max14577 -max14577_charger -max1586 -max16064 -max16065 -max1619 -max1668 -max17040_battery -max17042_battery -max197 -max20751 -max2165 -max3100 -max31790 -max3421-hcd -max34440 -max517 -max5821 -max63xx_wdt -max6639 -max6642 -max6650 -max6697 -max6875 -max7359_keypad -max77686 -max77693 -max77693-haptic -max77693_charger -max77802 -max8649 -max8660 -max8688 -max8903_charger -max8907 -max8907-regulator -max8925-regulator -max8925_bl -max8925_onkey -max8925_power -max8952 -max8973-regulator -max8997 -max8997_charger -max8997_haptic -max8998 -max8998_charger -mb86a20s -mc13783-adc -mc13783-pwrbutton -mc13783-regulator -mc13783_ts -mc13892-regulator -mc13xxx-core -mc13xxx-i2c -mc13xxx-regulator-core -mc13xxx-spi -mc44s803 -mcb -mceusb -mcp2120-sir -mcp251x -mcp3021 -mcp320x -mcp3422 -mcp4531 -mcp4725 -mcp4922 -mcryptd -mcs5000_ts -mcs7780 -mcs7830 -mcs_touchkey -mct_u232 -md-cluster -md4 -mdc800 -mdio-bcm-unimac -mdio-bitbang -mdio-gpio -mdio-mux -mdio-mux-gpio -mdio-mux-mmioreg -mdio-xgene -media -memstick -men_z135_uart -men_z188_adc -mena21_wdt -menf21bmc -menf21bmc_hwmon -menf21bmc_wdt -metro-usb -metronomefb -mg_disk -michael_mic -micrel -microchip -microread -microread_i2c -microtek -minix -mip6 -mk712 -mkiss -mlx90614 -mma8450 -mma8452 -mma9551 -mma9551_core -mma9553 -mmc35240 -mmc_spi -mms114 -mn88472 -mn88473 -mos7720 -mos7840 -mostcore -mpl115 -mpl3115 -mpls_gso -mpls_iptunnel -mpls_router -mpoa -mpr121_touchkey -mpu3050 -mrf24j40 -mrp -ms5611_core -ms5611_i2c -ms5611_spi -ms5637 -ms_block -ms_sensors_i2c -msi001 -msi2500 -msp3400 -mspro_block -mt2060 -mt2063 -mt20xx -mt2266 -mt29f_spinand -mt312 -mt352 -mt6311-regulator -mt6397-core -mt6397-regulator -mt7601u -mt9m001 -mt9m111 -mt9t031 -mt9t112 -mt9v011 -mt9v022 -mtd_dataflash -mtdoops -mtdram -mtdswap -mtk-sd -mtouch -multipath -musb_hdrc -mv_u3d_core -mv_udc -mvmdio -mwifiex -mwifiex_sdio -mwifiex_usb -mxc4005 -mxl111sf-demod -mxl111sf-tuner -mxl5005s -mxl5007t -mxuport -n_gsm -n_hdlc -n_r3964 -n_tracerouter -n_tracesink -nandsim -national -nau7802 -navman -nb8800 -nbd -nbpfaxi -nci -nci_spi -nci_uart -ncpfs -nct6683 -nct6775 -nct7802 -nct7904 -net1080 -net2272 -netconsole -netlink_diag -netrom -newtonkbd -nf_conntrack -nf_conntrack_amanda -nf_conntrack_broadcast -nf_conntrack_ftp -nf_conntrack_h323 -nf_conntrack_ipv4 -nf_conntrack_ipv6 -nf_conntrack_irc -nf_conntrack_netbios_ns -nf_conntrack_netlink -nf_conntrack_pptp -nf_conntrack_proto_dccp -nf_conntrack_proto_gre -nf_conntrack_proto_sctp -nf_conntrack_proto_udplite -nf_conntrack_sane -nf_conntrack_sip -nf_conntrack_snmp -nf_conntrack_tftp -nf_defrag_ipv4 -nf_defrag_ipv6 -nf_dup_ipv4 -nf_dup_ipv6 -nf_log_arp -nf_log_bridge -nf_log_common -nf_log_ipv4 -nf_log_ipv6 -nf_nat -nf_nat_amanda -nf_nat_ftp -nf_nat_h323 -nf_nat_ipv4 -nf_nat_ipv6 -nf_nat_irc -nf_nat_masquerade_ipv4 -nf_nat_masquerade_ipv6 -nf_nat_pptp -nf_nat_proto_dccp -nf_nat_proto_gre -nf_nat_proto_sctp -nf_nat_proto_udplite -nf_nat_redirect -nf_nat_sip -nf_nat_snmp_basic -nf_nat_tftp -nf_reject_ipv4 -nf_reject_ipv6 -nf_synproxy_core -nf_tables -nf_tables_arp -nf_tables_bridge -nf_tables_inet -nf_tables_ipv4 -nf_tables_ipv6 -nf_tables_netdev -nfc -nfc_digital -nfcmrvl -nfcmrvl_i2c -nfcmrvl_spi -nfcmrvl_uart -nfcmrvl_usb -nfcsim -nfcwilink -nfnetlink -nfnetlink_acct -nfnetlink_cthelper -nfnetlink_cttimeout -nfnetlink_log -nfnetlink_queue -nfs -nfs_acl -nfs_layout_flexfiles -nfs_layout_nfsv41_files -nfsd -nfsv2 -nfsv3 -nfsv4 -nft_chain_nat_ipv4 -nft_chain_nat_ipv6 -nft_chain_route_ipv4 -nft_chain_route_ipv6 -nft_compat -nft_counter -nft_ct -nft_dup_ipv4 -nft_dup_ipv6 -nft_exthdr -nft_hash -nft_limit -nft_log -nft_masq -nft_masq_ipv4 -nft_masq_ipv6 -nft_meta -nft_meta_bridge -nft_nat -nft_queue -nft_rbtree -nft_redir -nft_redir_ipv4 -nft_redir_ipv6 -nft_reject -nft_reject_bridge -nft_reject_inet -nft_reject_ipv4 -nft_reject_ipv6 -nftl -nhc_dest -nhc_fragment -nhc_hop -nhc_ipv6 -nhc_mobility -nhc_routing -nhc_udp -ni_daq_700 -ni_daq_dio24 -ni_labpc_common -ni_labpc_cs -ni_mio_cs -ni_tio -ni_usb6501 -nilfs2 -nlmon -nls_ascii -nls_cp1250 -nls_cp1251 -nls_cp1255 -nls_cp737 -nls_cp775 -nls_cp850 -nls_cp852 -nls_cp855 -nls_cp857 -nls_cp860 -nls_cp861 -nls_cp862 -nls_cp863 -nls_cp864 -nls_cp865 -nls_cp866 -nls_cp869 -nls_cp874 -nls_cp932 -nls_cp936 -nls_cp949 -nls_cp950 -nls_euc-jp -nls_iso8859-13 -nls_iso8859-14 -nls_iso8859-15 -nls_iso8859-2 -nls_iso8859-3 -nls_iso8859-4 -nls_iso8859-5 -nls_iso8859-6 -nls_iso8859-7 -nls_iso8859-9 -nls_koi8-r -nls_koi8-ru -nls_koi8-u -nls_utf8 -nmclan_cs -notifier-error-inject -nps_enet -ns558 -ntc_thermistor -ntfs -null_blk -nvmem_core -nvram -nxp-nci -nxp-nci_i2c -nxp-ptn3460 -nxt200x -nxt6000 -objlayoutdriver -ocfb -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -of_mmc_spi -of_xilinx_wdt -old_belkin-sir -omap4-keypad -omfs -omninet -on20 -on26 -onenand -opencores-kbd -openvswitch -oprofile -opt3001 -opticon -option -orinoco -orinoco_cs -orinoco_usb -osd -osdblk -osst -oti6858 -ov2640 -ov5642 -ov6650 -ov7640 -ov772x -ov9640 -ov9740 -overlay -oxu210hp-hcd -p54common -p54spi -p54usb -p8022 -p8023 -pa12203001 -palmas-pwrbutton -palmas-regulator -pandora_bl -panel -panel-lg-lg4573 -panel-raspberrypi-touchscreen -panel-samsung-ld9040 -panel-samsung-s6e8aa0 -panel-sharp-lq101r1sx01 -panel-simple -parade-ps8622 -paride -parkbd -parport -parport_ax88796 -parport_cs -parport_pc -pata_of_platform -pata_pcmcia -pata_platform -pc87360 -pc87427 -pcap-regulator -pcap_keys -pcap_ts -pcbc -pcd -pcf50633 -pcf50633-adc -pcf50633-backlight -pcf50633-charger -pcf50633-gpio -pcf50633-input -pcf50633-regulator -pcf8574_keypad -pcf8591 -pcmcia -pcmcia_core -pcmcia_rsrc -pcmciamtd -pcnet_cs -pcrypt -pcwd_usb -pd -pda_power -peak_pcmcia -peak_usb -pegasus -penmount -percpu_test -pf -pfuze100-regulator -pg -phonet -phram -phy-am335x -phy-am335x-control -phy-bcm-kona-usb2 -phy-exynos-usb2 -phy-gpio-vbus-usb -phy-isp1301 -phy-pxa-28nm-hsic -phy-pxa-28nm-usb2 -phy-tahvo -phy-tusb1210 -physmap -physmap_of -pixcir_i2c_ts -pkcs7_test_key -pktcdvd -pktgen -pl172 -pl2303 -pl330 -plat-ram -plat_nand -platform_lcd -plip -plusb -pm-notifier-error-inject -pm8921-core -pm8941-wled -pm8xxx-vibrator -pmbus -pmbus_core -pmic8xxx-keypad -pmic8xxx-pwrkey -pn533 -pn544 -pn544_i2c -pn_pep -poly1305_generic -port100 -powermate -powr1220 -ppa -ppdev -ppp_async -ppp_deflate -ppp_mppe -ppp_synctty -pppoatm -pppoe -pppox -pps-gpio -pps-ldisc -pps_core -pps_parport -pptp -prism2_usb -ps2mult -psmouse -psnap -pt -ptp -pulsedlight-lidar-lite-v2 -pvrusb2 -pwc -pwm-atmel-hlcdc -pwm-bcm2835 -pwm-beeper -pwm-fan -pwm-fsl-ftm -pwm-lp3943 -pwm-pca9685 -pwm-regulator -pwm-twl -pwm-twl-led -pwm_bl -pxa27x_udc -qcaspi -qcaux -qcom-spmi-iadc -qcom-spmi-temp-alarm -qcom-spmi-vadc -qcom_spmi-regulator -qcserial -qinfo_probe -qmi_wwan -qnx4 -qnx6 -qoriq-cpufreq -qsemi -qt1010 -qt1070 -qt2160 -quatech2 -quatech_daqp_cs -quota_tree -quota_v1 -quota_v2 -r8152 -r8188eu -r820t -r8712u -r8723au -r8a66597-hcd -r8a66597-udc -radio-bcm2048 -radio-i2c-si470x -radio-keene -radio-ma901 -radio-mr800 -radio-platform-si4713 -radio-raremono -radio-shark -radio-si476x -radio-tea5764 -radio-usb-si470x -radio-usb-si4713 -radio-wl1273 -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid6test -raid_class -ramoops -raw -ray_cs -rbd -rbtree_test -rc-adstech-dvb-t-pci -rc-alink-dtu-m -rc-anysee -rc-apac-viewcomp -rc-asus-pc39 -rc-asus-ps3-100 -rc-ati-tv-wonder-hd-600 -rc-ati-x10 -rc-avermedia -rc-avermedia-a16d -rc-avermedia-cardbus -rc-avermedia-dvbt -rc-avermedia-m135a -rc-avermedia-m733a-rm-k6 -rc-avermedia-rm-ks -rc-avertv-303 -rc-azurewave-ad-tu700 -rc-behold -rc-behold-columbus -rc-budget-ci-old -rc-cinergy -rc-cinergy-1400 -rc-core -rc-delock-61959 -rc-dib0700-nec -rc-dib0700-rc5 -rc-digitalnow-tinytwin -rc-digittrade -rc-dm1105-nec -rc-dntv-live-dvb-t -rc-dntv-live-dvbt-pro -rc-dvbsky -rc-em-terratec -rc-encore-enltv -rc-encore-enltv-fm53 -rc-encore-enltv2 -rc-evga-indtube -rc-eztv -rc-flydvb -rc-flyvideo -rc-fusionhdtv-mce -rc-gadmei-rm008z -rc-genius-tvgo-a11mce -rc-gotview7135 -rc-hauppauge -rc-imon-mce -rc-imon-pad -rc-iodata-bctv7e -rc-it913x-v1 -rc-it913x-v2 -rc-kaiomy -rc-kworld-315u -rc-kworld-pc150u -rc-kworld-plus-tv-analog -rc-leadtek-y04g0051 -rc-lirc -rc-lme2510 -rc-loopback -rc-manli -rc-medion-x10 -rc-medion-x10-digitainer -rc-medion-x10-or2x -rc-msi-digivox-ii -rc-msi-digivox-iii -rc-msi-tvanywhere -rc-msi-tvanywhere-plus -rc-nebula -rc-nec-terratec-cinergy-xs -rc-norwood -rc-npgtech -rc-pctv-sedna -rc-pinnacle-color -rc-pinnacle-grey -rc-pinnacle-pctv-hd -rc-pixelview -rc-pixelview-002t -rc-pixelview-mk12 -rc-pixelview-new -rc-powercolor-real-angel -rc-proteus-2309 -rc-purpletv -rc-pv951 -rc-rc6-mce -rc-real-audio-220-32-keys -rc-reddo -rc-snapstream-firefly -rc-streamzap -rc-su3000 -rc-tbs-nec -rc-technisat-ts35 -rc-technisat-usb2 -rc-terratec-cinergy-c-pci -rc-terratec-cinergy-s2-hd -rc-terratec-cinergy-xs -rc-terratec-slim -rc-terratec-slim-2 -rc-tevii-nec -rc-tivo -rc-total-media-in-hand -rc-total-media-in-hand-02 -rc-trekstor -rc-tt-1500 -rc-twinhan-dtv-cab-ci -rc-twinhan1027 -rc-videomate-m1f -rc-videomate-s350 -rc-videomate-tv-pvr -rc-winfast -rc-winfast-usbii-deluxe -rc5t583-regulator -rcar_can -rds -rds_tcp -realtek -redboot -redrat3 -reed_solomon -regmap-spmi -regulator-haptic -reiserfs -remoteproc -retu-mfd -retu-pwrbutton -retu_wdt -rfc1051 -rfc1201 -rfcomm -rfd_ftl -rfkill-gpio -rfkill-regulator -rio500 -rj54n1cb0c -rk808 -rk808-regulator -rmd128 -rmd160 -rmd256 -rmd320 -rn5t618 -rn5t618-regulator -rn5t618_wdt -rndis_host -rndis_wlan -rohm_bu21023 -romfs -rose -rotary_encoder -rpcsec_gss_krb5 -rpi-ft5406 -rpi_backlight -rpisense-core -rpisense-fb -rpisense-js -rpr0521 -rrpc -rsi_91x -rsi_sdio -rsi_usb -rt2500usb -rt2800lib -rt2800usb -rt2x00lib -rt2x00usb -rt5033 -rt5033-regulator -rt5033_battery -rt73usb -rt9455_charger -rtc-88pm80x -rtc-88pm860x -rtc-ab-b5ze-s3 -rtc-ab3100 -rtc-abx80x -rtc-as3722 -rtc-bq32k -rtc-bq4802 -rtc-cmos -rtc-da9052 -rtc-da9055 -rtc-da9063 -rtc-ds1286 -rtc-ds1305 -rtc-ds1307 -rtc-ds1343 -rtc-ds1347 -rtc-ds1374 -rtc-ds1390 -rtc-ds1511 -rtc-ds1553 -rtc-ds1672 -rtc-ds1685 -rtc-ds1742 -rtc-ds2404 -rtc-ds3232 -rtc-ds3234 -rtc-em3027 -rtc-fm3130 -rtc-hid-sensor-time -rtc-hym8563 -rtc-isl12022 -rtc-isl12057 -rtc-isl1208 -rtc-lp8788 -rtc-m41t80 -rtc-m41t93 -rtc-m41t94 -rtc-m48t35 -rtc-m48t59 -rtc-m48t86 -rtc-max6900 -rtc-max6902 -rtc-max77686 -rtc-max77802 -rtc-max8907 -rtc-max8925 -rtc-max8997 -rtc-max8998 -rtc-mc13xxx -rtc-mcp795 -rtc-msm6242 -rtc-mt6397 -rtc-palmas -rtc-pcap -rtc-pcf2123 -rtc-pcf2127 -rtc-pcf50633 -rtc-pcf85063 -rtc-pcf8523 -rtc-pcf8563 -rtc-pcf8583 -rtc-pl030 -rtc-pm8xxx -rtc-r9701 -rtc-rc5t583 -rtc-rk808 -rtc-rp5c01 -rtc-rs5c348 -rtc-rs5c372 -rtc-rv3029c2 -rtc-rv8803 -rtc-rx4581 -rtc-rx8025 -rtc-rx8581 -rtc-s35390a -rtc-s5m -rtc-snvs -rtc-stk17ta8 -rtc-tps6586x -rtc-tps65910 -rtc-tps80031 -rtc-twl -rtc-v3020 -rtc-wm831x -rtc-wm8350 -rtc-x1205 -rtc-zynqmp -rtl2830 -rtl2832 -rtl2832_sdr -rtl8150 -rtl8187 -rtl8192c-common -rtl8192cu -rtl8xxxu -rtl_usb -rtlwifi -rtsx_usb -rtsx_usb_ms -rtsx_usb_sdmmc -rx51_battery -rxkad -s1d13xxxfb -s2250 -s2255drv -s2mpa01 -s2mps11 -s3fwrn5 -s3fwrn5_i2c -s5h1409 -s5h1411 -s5h1420 -s5m8767 -s6e63m0 -s921 -saa7115 -saa7706h -safe_serial -salsa20_generic -samsung-keypad -samsung-sxgbe -sbs-battery -sc16is7xx -sca3000 -sch5627 -sch5636 -sch56xx-common -sch_atm -sch_cbq -sch_choke -sch_codel -sch_drr -sch_dsmark -sch_fq -sch_fq_codel -sch_gred -sch_hfsc -sch_hhf -sch_htb -sch_ingress -sch_mqprio -sch_multiq -sch_netem -sch_pie -sch_plug -sch_prio -sch_qfq -sch_red -sch_sfb -sch_sfq -sch_tbf -sch_teql -scpi-cpufreq -scpi-hwmon -scsi_debug -scsi_dh_alua -scsi_dh_emc -scsi_dh_hp_sw -scsi_dh_rdac -scsi_transport_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -scsi_transport_srp -sctp -sctp_probe -sdhci-of-arasan -sdhci-of-at91 -sdhci_f_sdh30 -sdio_uart -sedlbauer_cs -seed -sensorhub -seqiv -ser_gigaset -serial2002 -serial_cs -serio_raw -sermouse -serpent_generic -serport -ses -sh_veu -sha1-arm -sha1-arm-ce -sha1-arm-neon -sha2-arm-ce -sha256-arm -sha512-arm -shark2 -sht15 -sht21 -shtc1 -si2157 -si2165 -si2168 -si21xx -si4713 -si476x-core -si7005 -si7020 -sidewinder -sierra -sierra_net -sil164 -sir-dev -sisusbvga -sit -sja1000 -sja1000_isa -sja1000_platform -sky81452 -sky81452-backlight -sky81452-regulator -sl811-hcd -sl811_cs -slcan -slip -slram -sm501 -sm501fb -sm_ftl -smb347-charger -smc911x -smc91c92_cs -smc91x -smm665 -smsc -smsc47b397 -smsc47m1 -smsc47m192 -smsc75xx -smsc911x -smscufx -smsdvb -smsmdtv -smssdio -smsusb -snd -snd-aaci -snd-ac97-codec -snd-ak4117 -snd-aloop -snd-bcd2000 -snd-bcm2835 -snd-dummy -snd-hrtimer -snd-hwdep -snd-mixer-oss -snd-mpu401 -snd-mpu401-uart -snd-mtpav -snd-mts64 -snd-pcm -snd-pcm-dmaengine -snd-pcm-oss -snd-pdaudiocf -snd-portman2x4 -snd-rawmidi -snd-seq -snd-seq-device -snd-seq-dummy -snd-seq-midi -snd-seq-midi-event -snd-seq-oss -snd-seq-virmidi -snd-serial-u16550 -snd-soc-ac97 -snd-soc-adau1701 -snd-soc-adau1977 -snd-soc-adau1977-adc -snd-soc-adau1977-i2c -snd-soc-ak4104 -snd-soc-ak4554 -snd-soc-ak4613 -snd-soc-ak4642 -snd-soc-ak5386 -snd-soc-alc5623 -snd-soc-allo-piano-dac -snd-soc-audioinjector-pi-soundcard -snd-soc-bcm2835-i2s -snd-soc-core -snd-soc-cs35l32 -snd-soc-cs4265 -snd-soc-cs4270 -snd-soc-cs4271 -snd-soc-cs4271-i2c -snd-soc-cs4271-spi -snd-soc-cs42l51 -snd-soc-cs42l51-i2c -snd-soc-cs42l52 -snd-soc-cs42l56 -snd-soc-cs42l73 -snd-soc-cs42xx8 -snd-soc-cs42xx8-i2c -snd-soc-cs4349 -snd-soc-digidac1-soundcard -snd-soc-dionaudio-loco -snd-soc-es8328 -snd-soc-fsl-asrc -snd-soc-fsl-esai -snd-soc-fsl-sai -snd-soc-fsl-spdif -snd-soc-fsl-ssi -snd-soc-gtm601 -snd-soc-hifiberry-amp -snd-soc-hifiberry-dac -snd-soc-hifiberry-dacplus -snd-soc-hifiberry-digi -snd-soc-imx-audmux -snd-soc-iqaudio-dac -snd-soc-iqaudio-digi -snd-soc-justboom-dac -snd-soc-justboom-digi -snd-soc-pcm1681 -snd-soc-pcm1792a-codec -snd-soc-pcm1794a -snd-soc-pcm5102a -snd-soc-pcm512x -snd-soc-pcm512x-i2c -snd-soc-pcm512x-spi -snd-soc-pisound -snd-soc-raspidac3 -snd-soc-rpi-dac -snd-soc-rpi-proto -snd-soc-rt5631 -snd-soc-sgtl5000 -snd-soc-si476x -snd-soc-sigmadsp -snd-soc-sigmadsp-i2c -snd-soc-simple-card -snd-soc-spdif-rx -snd-soc-spdif-tx -snd-soc-ssm2602 -snd-soc-ssm2602-i2c -snd-soc-ssm2602-spi -snd-soc-ssm4567 -snd-soc-sta32x -snd-soc-sta350 -snd-soc-sti-sas -snd-soc-tas2552 -snd-soc-tas5086 -snd-soc-tas5713 -snd-soc-tas571x -snd-soc-tfa9879 -snd-soc-tlv320aic23 -snd-soc-tlv320aic23-i2c -snd-soc-tlv320aic23-spi -snd-soc-tlv320aic31xx -snd-soc-tlv320aic3x -snd-soc-tpa6130a2 -snd-soc-ts3a227e -snd-soc-wm8510 -snd-soc-wm8523 -snd-soc-wm8580 -snd-soc-wm8711 -snd-soc-wm8728 -snd-soc-wm8731 -snd-soc-wm8737 -snd-soc-wm8741 -snd-soc-wm8750 -snd-soc-wm8753 -snd-soc-wm8770 -snd-soc-wm8776 -snd-soc-wm8804 -snd-soc-wm8804-i2c -snd-soc-wm8804-spi -snd-soc-wm8903 -snd-soc-wm8962 -snd-soc-wm8978 -snd-soc-xtfpga-i2s -snd-timer -snd-ua101 -snd-usb-6fire -snd-usb-audio -snd-usb-caiaq -snd-usb-hiface -snd-usb-line6 -snd-usb-pod -snd-usb-podhd -snd-usb-toneport -snd-usb-variax -snd-usbmidi-lib -snd-virmidi -snd-vx-lib -snd-vxpocket -soc_button_array -soc_camera -soc_camera_platform -soc_mediabus -softdog -softing -softing_cs -sony-btf-mpx -sound_firmware -soundcore -sp2 -sp805_wdt -spaceball -spaceorb -sparse-keymap -spcp8x5 -speakup -speakup_acntsa -speakup_apollo -speakup_audptr -speakup_bns -speakup_decext -speakup_dectlk -speakup_dummy -speakup_ltlk -speakup_soft -speakup_spkout -speakup_txprt -spectrum_cs -speedtch -spi-altera -spi-bcm2835 -spi-bcm2835aux -spi-bitbang -spi-butterfly -spi-cadence -spi-dln2 -spi-dw -spi-dw-mmio -spi-gpio -spi-lm70llp -spi-nor -spi-oc-tiny -spi-pl022 -spi-rockchip -spi-sc18is602 -spi-tle62x0 -spi-xcomm -spi-zynqmp-gqspi -spi_ks8995 -spmi -sr9700 -sr9800 -ssb -ssb-hcd -ssbi -ssd1307fb -ssfdc -ssp_accel_sensor -ssp_gyro_sensor -ssp_iio -sst25l -ssu100 -st -st-asc -st-nci -st-nci_i2c -st-nci_spi -st1232 -st21nfca_hci -st21nfca_i2c -st_accel -st_accel_i2c -st_accel_spi -st_drv -st_gyro -st_gyro_i2c -st_gyro_spi -st_magn -st_magn_i2c -st_magn_spi -st_pressure -st_pressure_i2c -st_pressure_spi -st_sensors -st_sensors_i2c -st_sensors_spi -stb0899 -stb6000 -stb6100 -ste10Xp -ste_modem_rproc -stinger -stir4200 -stk1160 -stk3310 -stk8312 -stk8ba50 -stkwebcam -stm32-usart -stm_console -stm_core -stmmac -stmmac-platform -stmpe-keypad -stmpe-ts -stowaway -stp -streamzap -stv0288 -stv0297 -stv0299 -stv0900 -stv090x -stv6110 -stv6110x -sun4i-codec -sunkbd -sunrpc -sur40 -sx8654 -sx9500 -symbolserial -synaptics_i2c -synaptics_i2c_rmi4 -synaptics_usb -synclink_cs -syscopyarea -sysfillrect -sysimgblt -sysv -t5403 -target_core_file -target_core_iblock -target_core_mod -target_core_pscsi -target_core_user -tc3589x-keypad -tc74 -tca6416-keypad -tca8418_keypad -tcm_fc -tcm_loop -tcm_usb_gadget -tcp_bic -tcp_cdg -tcp_dctcp -tcp_diag -tcp_highspeed -tcp_htcp -tcp_hybla -tcp_illinois -tcp_lp -tcp_probe -tcp_scalable -tcp_vegas -tcp_veno -tcp_westwood -tcp_yeah -tcrypt -tcs3414 -tcs3472 -tda10023 -tda10048 -tda1004x -tda10071 -tda10086 -tda18212 -tda18218 -tda18271 -tda18271c2dd -tda826x -tda827x -tda8290 -tda9887 -tda998x -tdo24m -tea -tea575x -tea5761 -tea5767 -team -team_mode_activebackup -team_mode_broadcast -team_mode_loadbalance -team_mode_random -team_mode_roundrobin -tef6862 -tekram-sir -teles_cs -teranetics -test-hexdump -test-kprobes -test-kstrtox -test-string_helpers -test_bpf -test_firmware -test_module -test_power -test_printf -test_static_key_base -test_static_keys -test_udelay -test_user_copy -tgr192 -thmc50 -ti-adc081c -ti-adc128s052 -ti_am335x_adc -ti_am335x_tsc -ti_am335x_tscadc -ti_dac7512 -ti_hecc -ti_usb_3410_5052 -tilcdc -timeriomem-rng -tipc -tm6000 -tm6000-alsa -tm6000-dvb -tmdc -tmio_mmc -tmio_mmc_core -tmio_nand -tmiofb -tmp006 -tmp102 -tmp103 -tmp401 -tmp421 -toim3232-sir -torture -touchit213 -touchright -touchwin -tpm-rng -tpm_atmel -tpm_i2c_atmel -tpm_i2c_infineon -tpm_i2c_nuvoton -tpm_st33zp24 -tpm_st33zp24_i2c -tpm_st33zp24_spi -tps40422 -tps51632-regulator -tps6105x -tps6105x-regulator -tps62360-regulator -tps65010 -tps65023-regulator -tps6507x -tps6507x-regulator -tps6507x-ts -tps65090-charger -tps65090-regulator -tps65217 -tps65217-regulator -tps65217_bl -tps65217_charger -tps65218 -tps65218-pwrbutton -tps65218-regulator -tps6524x-regulator -tps6586x-regulator -tps65910-regulator -tps65912-regulator -tps80031-regulator -trancevibrator -trf7970a -ts2020 -ts_bm -ts_fsm -ts_kmp -tsc2004 -tsc2005 -tsc2007 -tsc200x-core -tsc40 -tsl2550 -tsl2563 -tsl2583 -tsl2x7x_core -tsl4531 -tsys01 -tsys02d -ttm -ttpci-eeprom -ttusbir -tua9001 -tuner -tuner-simple -tuner-types -tuner-xc2028 -tunnel4 -tunnel6 -turbografx -tveeprom -tvp5150 -tw2804 -tw9903 -tw9906 -tw9910 -twidjoy -twl-regulator -twl4030-madc -twl4030-madc-hwmon -twl4030-pwrbutton -twl4030-vibra -twl4030_charger -twl4030_keypad -twl4030_madc_battery -twl4030_wdt -twl6030-gpadc -twl6040-vibra -twofish_common -twofish_generic -u132-hcd -u_ether -u_serial -uartlite -uas -ubi -ubifs -ucb1400_core -ucb1400_ts -ucd9000 -ucd9200 -uda1342 -udc-core -udf -udl -udlfb -udp_diag -udp_tunnel -ueagle-atm -ufs -ufshcd -ufshcd-pltfrm -uhid -uio -uio_dmem_genirq -uio_pdrv_genirq -uio_pruss -ulpi -ums-alauda -ums-cypress -ums-datafab -ums-eneub6250 -ums-freecom -ums-isd200 -ums-jumpshot -ums-karma -ums-onetouch -ums-realtek -ums-sddr09 -ums-sddr55 -ums-usbat -unix_diag -us5182d -usb-serial-simple -usb3503 -usb8xxx -usb_8dev -usb_debug -usb_f_acm -usb_f_ecm -usb_f_ecm_subset -usb_f_fs -usb_f_hid -usb_f_mass_storage -usb_f_midi -usb_f_ncm -usb_f_obex -usb_f_phonet -usb_f_printer -usb_f_rndis -usb_f_serial -usb_f_ss_lb -usb_f_uac2 -usb_f_uvc -usb_gigaset -usb_wwan -usbatm -usbdux -usbduxfast -usbduxsigma -usbhid -usbip-core -usbip-host -usbkbd -usblcd -usbled -usblp -usbmisc_imx -usbmon -usbmouse -usbserial -usbsevseg -usbtest -usbtmc -usbtouchscreen -usbtv -usbvision -usdhi6rol0 -userio -userspace-consumer -ushc -uss720 -uvcvideo -uvesafb -uwb -v4l2-common -v4l2-dv-timings -v4l2-flash-led-class -v4l2-mem2mem -vc4 -vcan -vcnl4000 -veth -vf610_adc -vgem -vgg2432a4 -vhci-hcd -vhost -vhost_net -vhost_scsi -via-rhine -via-velocity -videobuf-core -videobuf-dvb -videobuf-vmalloc -videobuf2-core -videobuf2-dma-contig -videobuf2-dma-sg -videobuf2-memops -videobuf2-v4l2 -videobuf2-vmalloc -videodev -vim2m -viperboard -viperboard_adc -virtio -virtio-gpu -virtio-rng -virtio_balloon -virtio_blk -virtio_console -virtio_input -virtio_mmio -virtio_net -virtio_ring -virtio_scsi -virtual -visor -vitesse -vivid -vmac -vmk80xx -vport-geneve -vport-gre -vport-vxlan -vrf -vringh -vsock -vsxxxaa -vt1211 -vt6656_stage -vub300 -vxlan -vz89x -w1-gpio -w1_bq27000 -w1_ds2406 -w1_ds2408 -w1_ds2413 -w1_ds2423 -w1_ds2431 -w1_ds2433 -w1_ds2760 -w1_ds2780 -w1_ds2781 -w1_ds28e04 -w1_smem -w1_therm -w5100 -w5300 -w83627ehf -w83627hf -w83781d -w83791d -w83792d -w83793 -w83795 -w83l785ts -w83l786ng -wacom -wacom_i2c -wacom_serial4 -wacom_w8001 -walkera0701 -warrior -wcn36xx -wdt87xx_i2c -whiteheat -wimax -wire -wishbone-serial -wl1251 -wl1251_sdio -wl1251_spi -wl1273-core -wl12xx -wl18xx -wl3501_cs -wlcore -wlcore_sdio -wlcore_spi -wm831x-dcdc -wm831x-hwmon -wm831x-isink -wm831x-ldo -wm831x-on -wm831x-ts -wm831x_backup -wm831x_bl -wm831x_power -wm831x_wdt -wm8350-hwmon -wm8350-regulator -wm8350_power -wm8350_wdt -wm8400-regulator -wm8775 -wm8994-core -wm8994-irq -wm8994-regmap -wm8994-regulator -wm97xx-ts -wp512 -wusb-cbaf -wusb-wa -wusbcore -x25 -x25_asy -x_tables -xc4000 -xc5000 -xcbc -xfrm4_mode_beet -xfrm4_mode_transport -xfrm4_mode_tunnel -xfrm4_tunnel -xfrm6_mode_beet -xfrm6_mode_ro -xfrm6_mode_transport -xfrm6_mode_tunnel -xfrm6_tunnel -xfrm_algo -xfrm_ipcomp -xfrm_user -xfs -xilinx-tpg -xilinx-video -xilinx-vtc -xilinx_uartps -xillybus_core -xillybus_of -xirc2ps_cs -xor -xor-neon -xpad -xr_usb_serial_common -xsens_mt -xt_AUDIT -xt_CHECKSUM -xt_CLASSIFY -xt_CONNSECMARK -xt_CT -xt_DSCP -xt_HL -xt_HMARK -xt_IDLETIMER -xt_LED -xt_LOG -xt_NETMAP -xt_NFLOG -xt_NFQUEUE -xt_RATEEST -xt_REDIRECT -xt_SECMARK -xt_TCPMSS -xt_TCPOPTSTRIP -xt_TEE -xt_TPROXY -xt_TRACE -xt_addrtype -xt_bpf -xt_cgroup -xt_cluster -xt_comment -xt_connbytes -xt_connlabel -xt_connlimit -xt_connmark -xt_conntrack -xt_cpu -xt_dccp -xt_devgroup -xt_dscp -xt_ecn -xt_esp -xt_hashlimit -xt_helper -xt_hl -xt_ipcomp -xt_iprange -xt_ipvs -xt_l2tp -xt_length -xt_limit -xt_mac -xt_mark -xt_multiport -xt_nat -xt_nfacct -xt_osf -xt_owner -xt_physdev -xt_pkttype -xt_policy -xt_quota -xt_rateest -xt_realm -xt_recent -xt_sctp -xt_set -xt_socket -xt_state -xt_statistic -xt_string -xt_tcpmss -xt_tcpudp -xt_time -xt_u32 -xtkbd -xts -xusbatm -xz_dec_test -yam -yealink -yurex -zaurus -zd1201 -zd1211rw -zforce_ts -zhenhua -zl10039 -zl10353 -zl6100 -zlib -zr364xx -zram -zynq-fpga reverted: --- linux-raspi2-4.4.0/debian.raspi2/abi/4.4.0-1067.75/fwinfo +++ linux-raspi2-4.4.0.orig/debian.raspi2/abi/4.4.0-1067.75/fwinfo @@ -1,396 +0,0 @@ -firmware: 3826.arm -firmware: 6fire/dmx6fireap.ihx -firmware: 6fire/dmx6firecf.bin -firmware: 6fire/dmx6firel2.ihx -firmware: BCM2033-FW.bin -firmware: BCM2033-MD.hex -firmware: BT3CPCC.bin -firmware: agere_ap_fw.bin -firmware: agere_sta_fw.bin -firmware: ar5523.bin -firmware: ath3k-1.fw -firmware: ath6k/AR6003/hw2.0/athwlan.bin.z77 -firmware: ath6k/AR6003/hw2.0/bdata.SD31.bin -firmware: ath6k/AR6003/hw2.0/bdata.bin -firmware: ath6k/AR6003/hw2.0/data.patch.bin -firmware: ath6k/AR6003/hw2.0/otp.bin.z77 -firmware: ath6k/AR6003/hw2.1.1/athwlan.bin -firmware: ath6k/AR6003/hw2.1.1/bdata.SD31.bin -firmware: ath6k/AR6003/hw2.1.1/bdata.bin -firmware: ath6k/AR6003/hw2.1.1/data.patch.bin -firmware: ath6k/AR6003/hw2.1.1/otp.bin -firmware: ath6k/AR6004/hw1.0/bdata.DB132.bin -firmware: ath6k/AR6004/hw1.0/bdata.bin -firmware: ath6k/AR6004/hw1.0/fw.ram.bin -firmware: ath6k/AR6004/hw1.1/bdata.DB132.bin -firmware: ath6k/AR6004/hw1.1/bdata.bin -firmware: ath6k/AR6004/hw1.1/fw.ram.bin -firmware: ath6k/AR6004/hw1.2/bdata.bin -firmware: ath6k/AR6004/hw1.2/fw.ram.bin -firmware: ath6k/AR6004/hw1.3/bdata.bin -firmware: ath6k/AR6004/hw1.3/fw.ram.bin -firmware: ath9k_htc/htc_7010-1.4.0.fw -firmware: ath9k_htc/htc_9271-1.4.0.fw -firmware: atmel_at76c502-wpa.bin -firmware: atmel_at76c502.bin -firmware: atmel_at76c502_3com-wpa.bin -firmware: atmel_at76c502_3com.bin -firmware: atmel_at76c502d-wpa.bin -firmware: atmel_at76c502d.bin -firmware: atmel_at76c502e-wpa.bin -firmware: atmel_at76c502e.bin -firmware: atmel_at76c503-i3861.bin -firmware: atmel_at76c503-i3863.bin -firmware: atmel_at76c503-rfmd-acc.bin -firmware: atmel_at76c503-rfmd.bin -firmware: atmel_at76c504-wpa.bin -firmware: atmel_at76c504.bin -firmware: atmel_at76c504_2958-wpa.bin -firmware: atmel_at76c504_2958.bin -firmware: atmel_at76c504a_2958-wpa.bin -firmware: atmel_at76c504a_2958.bin -firmware: atmel_at76c505-rfmd.bin -firmware: atmel_at76c505-rfmd2958.bin -firmware: atmel_at76c505a-rfmd2958.bin -firmware: atmel_at76c505amx-rfmd.bin -firmware: atmel_at76c506-wpa.bin -firmware: atmel_at76c506.bin -firmware: atsc_denver.inp -firmware: b43/ucode11.fw -firmware: b43/ucode13.fw -firmware: b43/ucode14.fw -firmware: b43/ucode15.fw -firmware: b43/ucode16_mimo.fw -firmware: b43/ucode5.fw -firmware: b43/ucode9.fw -firmware: b43legacy/ucode2.fw -firmware: b43legacy/ucode4.fw -firmware: bfubase.frm -firmware: brcm/bcm43xx-0.fw -firmware: brcm/bcm43xx_hdr-0.fw -firmware: brcm/brcmfmac43143-sdio.bin -firmware: brcm/brcmfmac43143-sdio.txt -firmware: brcm/brcmfmac43143.bin -firmware: brcm/brcmfmac43236b.bin -firmware: brcm/brcmfmac43241b0-sdio.bin -firmware: brcm/brcmfmac43241b0-sdio.txt -firmware: brcm/brcmfmac43241b4-sdio.bin -firmware: brcm/brcmfmac43241b4-sdio.txt -firmware: brcm/brcmfmac43241b5-sdio.bin -firmware: brcm/brcmfmac43241b5-sdio.txt -firmware: brcm/brcmfmac43242a.bin -firmware: brcm/brcmfmac4329-sdio.bin -firmware: brcm/brcmfmac4329-sdio.txt -firmware: brcm/brcmfmac4330-sdio.bin -firmware: brcm/brcmfmac4330-sdio.txt -firmware: brcm/brcmfmac4334-sdio.bin -firmware: brcm/brcmfmac4334-sdio.txt -firmware: brcm/brcmfmac43340-sdio.bin -firmware: brcm/brcmfmac43340-sdio.txt -firmware: brcm/brcmfmac43341-sdio.bin -firmware: brcm/brcmfmac43341-sdio.txt -firmware: brcm/brcmfmac4335-sdio.bin -firmware: brcm/brcmfmac4335-sdio.txt -firmware: brcm/brcmfmac43362-sdio.bin -firmware: brcm/brcmfmac43362-sdio.txt -firmware: brcm/brcmfmac4339-sdio.bin -firmware: brcm/brcmfmac4339-sdio.txt -firmware: brcm/brcmfmac43430-sdio.bin -firmware: brcm/brcmfmac43430-sdio.txt -firmware: brcm/brcmfmac43455-sdio.bin -firmware: brcm/brcmfmac43455-sdio.txt -firmware: brcm/brcmfmac4354-sdio.bin -firmware: brcm/brcmfmac4354-sdio.txt -firmware: brcm/brcmfmac43569.bin -firmware: carl9170-1.fw -firmware: cis/3CCFEM556.cis -firmware: cis/3CXEM556.cis -firmware: cis/COMpad2.cis -firmware: cis/COMpad4.cis -firmware: cis/DP83903.cis -firmware: cis/LA-PCM.cis -firmware: cis/MT5634ZLX.cis -firmware: cis/NE2K.cis -firmware: cis/PCMLM28.cis -firmware: cis/PE-200.cis -firmware: cis/PE520.cis -firmware: cis/RS-COM-2P.cis -firmware: cis/SW_555_SER.cis -firmware: cis/SW_7xx_SER.cis -firmware: cis/SW_8xx_SER.cis -firmware: cis/tamarack.cis -firmware: cmmb_ming_app.inp -firmware: cmmb_vega_12mhz.inp -firmware: cmmb_venice_12mhz.inp -firmware: cpia2/stv0672_vp4.bin -firmware: dvb-demod-m88ds3103.fw -firmware: dvb-demod-m88rs6000.fw -firmware: dvb-demod-mn88472-02.fw -firmware: dvb-demod-mn88473-01.fw -firmware: dvb-demod-si2165.fw -firmware: dvb-demod-si2168-a20-01.fw -firmware: dvb-demod-si2168-a30-01.fw -firmware: dvb-demod-si2168-b40-01.fw -firmware: dvb-fe-af9013.fw -firmware: dvb-fe-drxj-mc-1.0.8.fw -firmware: dvb-fe-ds3000.fw -firmware: dvb-fe-tda10071.fw -firmware: dvb-fe-xc4000-1.4.1.fw -firmware: dvb-fe-xc4000-1.4.fw -firmware: dvb-fe-xc5000-1.6.114.fw -firmware: dvb-fe-xc5000c-4.1.30.7.fw -firmware: dvb-tuner-si2158-a20-01.fw -firmware: dvb-usb-af9015.fw -firmware: dvb-usb-af9035-02.fw -firmware: dvb-usb-dib0700-1.20.fw -firmware: dvb-usb-dw2101.fw -firmware: dvb-usb-dw2102.fw -firmware: dvb-usb-dw2104.fw -firmware: dvb-usb-dw3101.fw -firmware: dvb-usb-ec168.fw -firmware: dvb-usb-it9135-01.fw -firmware: dvb-usb-it9135-02.fw -firmware: dvb-usb-it9303-01.fw -firmware: dvb-usb-lme2510-lg.fw -firmware: dvb-usb-lme2510-s0194.fw -firmware: dvb-usb-lme2510c-lg.fw -firmware: dvb-usb-lme2510c-rs2000.fw -firmware: dvb-usb-lme2510c-s0194.fw -firmware: dvb-usb-lme2510c-s7395.fw -firmware: dvb-usb-p1100.fw -firmware: dvb-usb-p7500.fw -firmware: dvb-usb-s630.fw -firmware: dvb-usb-s660.fw -firmware: dvb-usb-terratec-h7-az6007.fw -firmware: dvb_nova_12mhz.inp -firmware: dvb_nova_12mhz_b0.inp -firmware: dvb_rio.inp -firmware: dvbh_rio.inp -firmware: edgeport/boot.fw -firmware: edgeport/boot2.fw -firmware: edgeport/down.fw -firmware: edgeport/down2.fw -firmware: edgeport/down3.bin -firmware: emi26/bitstream.fw -firmware: emi26/firmware.fw -firmware: emi26/loader.fw -firmware: emi62/bitstream.fw -firmware: emi62/loader.fw -firmware: emi62/spdif.fw -firmware: ene-ub6250/ms_init.bin -firmware: ene-ub6250/ms_rdwr.bin -firmware: ene-ub6250/msp_rdwr.bin -firmware: ene-ub6250/sd_init1.bin -firmware: ene-ub6250/sd_init2.bin -firmware: ene-ub6250/sd_rdwr.bin -firmware: f2255usb.bin -firmware: fm_radio.inp -firmware: fm_radio_rio.inp -firmware: fw.ram.bin -firmware: go7007/go7007fw.bin -firmware: go7007/go7007tv.bin -firmware: go7007/lr192.fw -firmware: go7007/px-m402u.fw -firmware: go7007/px-tv402u.fw -firmware: go7007/s2250-1.fw -firmware: go7007/s2250-2.fw -firmware: go7007/wis-startrek.fw -firmware: i1480-phy-0.0.bin -firmware: i1480-pre-phy-0.0.bin -firmware: i1480-usb-0.0.bin -firmware: i2400m-fw-usb-1.5.sbcf -firmware: i6050-fw-usb-1.5.sbcf -firmware: intel/ibt-11-5.ddc -firmware: intel/ibt-11-5.sfi -firmware: isdbt_nova_12mhz.inp -firmware: isdbt_nova_12mhz_b0.inp -firmware: isdbt_pele.inp -firmware: isdbt_rio.inp -firmware: isight.fw -firmware: isl3886usb -firmware: isl3887usb -firmware: kaweth/new_code.bin -firmware: kaweth/new_code_fix.bin -firmware: kaweth/trigger_code.bin -firmware: kaweth/trigger_code_fix.bin -firmware: keyspan/mpr.fw -firmware: keyspan/usa18x.fw -firmware: keyspan/usa19.fw -firmware: keyspan/usa19qi.fw -firmware: keyspan/usa19qw.fw -firmware: keyspan/usa19w.fw -firmware: keyspan/usa28.fw -firmware: keyspan/usa28x.fw -firmware: keyspan/usa28xa.fw -firmware: keyspan/usa28xb.fw -firmware: keyspan/usa49w.fw -firmware: keyspan/usa49wlc.fw -firmware: keyspan_pda/keyspan_pda.fw -firmware: keyspan_pda/xircom_pgs.fw -firmware: lattice-ecp3.bit -firmware: lbtf_usb.bin -firmware: lgs8g75.fw -firmware: libertas/cf8305.bin -firmware: libertas/cf8381.bin -firmware: libertas/cf8381_helper.bin -firmware: libertas/cf8385.bin -firmware: libertas/cf8385_helper.bin -firmware: libertas/gspi8385.bin -firmware: libertas/gspi8385_helper.bin -firmware: libertas/gspi8385_hlp.bin -firmware: libertas/gspi8686.bin -firmware: libertas/gspi8686_hlp.bin -firmware: libertas/gspi8686_v9.bin -firmware: libertas/gspi8686_v9_helper.bin -firmware: libertas/gspi8688.bin -firmware: libertas/gspi8688_helper.bin -firmware: libertas/sd8385.bin -firmware: libertas/sd8385_helper.bin -firmware: libertas/sd8686_v8.bin -firmware: libertas/sd8686_v8_helper.bin -firmware: libertas/sd8686_v9.bin -firmware: libertas/sd8686_v9_helper.bin -firmware: libertas/sd8688.bin -firmware: libertas/sd8688_helper.bin -firmware: libertas/usb8388.bin -firmware: libertas/usb8388_v5.bin -firmware: libertas/usb8388_v9.bin -firmware: libertas/usb8682.bin -firmware: libertas_cs.fw -firmware: libertas_cs_helper.fw -firmware: mrvl/sd8688.bin -firmware: mrvl/sd8688_helper.bin -firmware: mrvl/sd8786_uapsta.bin -firmware: mrvl/sd8787_uapsta.bin -firmware: mrvl/sd8797_uapsta.bin -firmware: mrvl/sd8887_uapsta.bin -firmware: mrvl/sd8897_uapsta.bin -firmware: mrvl/sd8997_uapsta.bin -firmware: mrvl/usb8766_uapsta.bin -firmware: mrvl/usb8797_uapsta.bin -firmware: mrvl/usb8801_uapsta.bin -firmware: mrvl/usb8997_uapsta.bin -firmware: mt7601u.bin -firmware: mts_cdma.fw -firmware: mts_edge.fw -firmware: mts_gsm.fw -firmware: mts_mt9234mu.fw -firmware: mts_mt9234zba.fw -firmware: orinoco_ezusb_fw -firmware: ositech/Xilinx7OD.bin -firmware: prism2_ru.fw -firmware: prism_ap_fw.bin -firmware: prism_sta_fw.bin -firmware: rsi_91x.fw -firmware: rt2870.bin -firmware: rt73.bin -firmware: rtlwifi/rtl8192cufw.bin -firmware: rtlwifi/rtl8192cufw_A.bin -firmware: rtlwifi/rtl8192cufw_B.bin -firmware: rtlwifi/rtl8192cufw_TMSC.bin -firmware: rtlwifi/rtl8712u.bin -firmware: rtlwifi/rtl8723aufw_A.bin -firmware: rtlwifi/rtl8723aufw_B.bin -firmware: rtlwifi/rtl8723aufw_B_NoBT.bin -firmware: sd8385.bin -firmware: sd8385_helper.bin -firmware: sd8686.bin -firmware: sd8686_helper.bin -firmware: sd8688.bin -firmware: sd8688_helper.bin -firmware: sms1xxx-hcw-55xxx-dvbt-02.fw -firmware: sms1xxx-hcw-55xxx-isdbt-02.fw -firmware: sms1xxx-nova-a-dvbt-01.fw -firmware: sms1xxx-nova-b-dvbt-01.fw -firmware: sms1xxx-stellar-dvbt-01.fw -firmware: softing-4.6/bcard.bin -firmware: softing-4.6/bcard2.bin -firmware: softing-4.6/cancard.bin -firmware: softing-4.6/cancrd2.bin -firmware: softing-4.6/cansja.bin -firmware: softing-4.6/ldcard.bin -firmware: softing-4.6/ldcard2.bin -firmware: symbol_sp24t_prim_fw -firmware: symbol_sp24t_sec_fw -firmware: tdmb_denver.inp -firmware: tdmb_nova_12mhz.inp -firmware: tdmb_nova_12mhz_b0.inp -firmware: ti-connectivity/wl1251-fw.bin -firmware: ti-connectivity/wl1251-nvs.bin -firmware: ti-connectivity/wl1271-nvs.bin -firmware: ti-connectivity/wl127x-fw-5-mr.bin -firmware: ti-connectivity/wl127x-fw-5-plt.bin -firmware: ti-connectivity/wl127x-fw-5-sr.bin -firmware: ti-connectivity/wl128x-fw-5-mr.bin -firmware: ti-connectivity/wl128x-fw-5-plt.bin -firmware: ti-connectivity/wl128x-fw-5-sr.bin -firmware: ti-connectivity/wl18xx-conf.bin -firmware: ti-connectivity/wl18xx-fw-4.bin -firmware: ti_3410.fw -firmware: ti_5052.fw -firmware: ueagle-atm/930-fpga.bin -firmware: ueagle-atm/CMV4i.bin -firmware: ueagle-atm/CMV4i.bin.v2 -firmware: ueagle-atm/CMV4p.bin -firmware: ueagle-atm/CMV4p.bin.v2 -firmware: ueagle-atm/CMV9i.bin -firmware: ueagle-atm/CMV9i.bin.v2 -firmware: ueagle-atm/CMV9p.bin -firmware: ueagle-atm/CMV9p.bin.v2 -firmware: ueagle-atm/CMVei.bin -firmware: ueagle-atm/CMVei.bin.v2 -firmware: ueagle-atm/CMVep.bin -firmware: ueagle-atm/CMVep.bin.v2 -firmware: ueagle-atm/DSP4i.bin -firmware: ueagle-atm/DSP4p.bin -firmware: ueagle-atm/DSP9i.bin -firmware: ueagle-atm/DSP9p.bin -firmware: ueagle-atm/DSPei.bin -firmware: ueagle-atm/DSPep.bin -firmware: ueagle-atm/adi930.fw -firmware: ueagle-atm/eagle.fw -firmware: ueagle-atm/eagleI.fw -firmware: ueagle-atm/eagleII.fw -firmware: ueagle-atm/eagleIII.fw -firmware: ueagle-atm/eagleIV.fw -firmware: usb8388.bin -firmware: usbdux_firmware.bin -firmware: usbduxfast_firmware.bin -firmware: usbduxsigma_firmware.bin -firmware: v4l-cx231xx-avcore-01.fw -firmware: v4l-cx23885-avcore-01.fw -firmware: v4l-cx23885-enc.fw -firmware: v4l-cx25840.fw -firmware: v4l-pvrusb2-24xxx-01.fw -firmware: v4l-pvrusb2-29xxx-01.fw -firmware: v4l-pvrusb2-73xxx-01.fw -firmware: vicam/firmware.fw -firmware: vntwusb.fw -firmware: vx/bd56002.boot -firmware: vx/bd563s3.boot -firmware: vx/bd563v2.boot -firmware: vx/bx_1_vp4.b56 -firmware: vx/bx_1_vxp.b56 -firmware: vx/l_1_v22.d56 -firmware: vx/l_1_vp4.d56 -firmware: vx/l_1_vx2.d56 -firmware: vx/l_1_vxp.d56 -firmware: vx/x1_1_vp4.xlx -firmware: vx/x1_1_vx2.xlx -firmware: vx/x1_1_vxp.xlx -firmware: vx/x1_2_v22.xlx -firmware: whiteheat.fw -firmware: whiteheat_loader.fw -firmware: wlan/prima/WCNSS_qcom_wlan_nv.bin -firmware: xc3028-v27.fw -firmware: xc3028L-v36.fw -firmware: yam/1200.bin -firmware: yam/9600.bin -firmware: zd1201-ap.fw -firmware: zd1201.fw -firmware: zd1211/zd1211_ub -firmware: zd1211/zd1211_uphr -firmware: zd1211/zd1211_ur -firmware: zd1211/zd1211b_ub -firmware: zd1211/zd1211b_uphr -firmware: zd1211/zd1211b_ur diff -u linux-raspi2-4.4.0/debian.raspi2/changelog linux-raspi2-4.4.0/debian.raspi2/changelog --- linux-raspi2-4.4.0/debian.raspi2/changelog +++ linux-raspi2-4.4.0/debian.raspi2/changelog @@ -1,3 +1,1483 @@ +linux-raspi2 (4.4.0-1082.90) xenial; urgency=low + + * linux-raspi2: 4.4.0-1082.90 -proposed tracker (LP: #1741652) + + [ Ubuntu: 4.4.0-107.130 ] + + * linux: 4.4.0-107.130 -proposed tracker (LP: #1741643) + * CVE-2017-5754 + - Revert "UBUNTU: SAUCE: arch/x86/entry/vdso: temporarily disable vdso" + - KPTI: Report when enabled + - x86, vdso, pvclock: Simplify and speed up the vdso pvclock reader + - x86/vdso: Get pvclock data from the vvar VMA instead of the fixmap + - x86/kasan: Clear kasan_zero_page after TLB flush + - kaiser: Set _PAGE_NX only if supported + + [ Ubuntu: 4.4.0-106.129 ] + + * linux: 4.4.0-106.129 -proposed tracker (LP: #1741528) + * CVE-2017-5754 + - KAISER: Kernel Address Isolation + - kaiser: merged update + - kaiser: do not set _PAGE_NX on pgd_none + - kaiser: stack map PAGE_SIZE at THREAD_SIZE-PAGE_SIZE + - kaiser: fix build and FIXME in alloc_ldt_struct() + - kaiser: KAISER depends on SMP + - kaiser: fix regs to do_nmi() ifndef CONFIG_KAISER + - kaiser: fix perf crashes + - kaiser: ENOMEM if kaiser_pagetable_walk() NULL + - kaiser: tidied up asm/kaiser.h somewhat + - kaiser: tidied up kaiser_add/remove_mapping slightly + - kaiser: kaiser_remove_mapping() move along the pgd + - kaiser: cleanups while trying for gold link + - kaiser: name that 0x1000 KAISER_SHADOW_PGD_OFFSET + - kaiser: delete KAISER_REAL_SWITCH option + - kaiser: vmstat show NR_KAISERTABLE as nr_overhead + - x86/mm: Enable CR4.PCIDE on supported systems + - x86/mm: Build arch/x86/mm/tlb.c even on !SMP + - x86/mm, sched/core: Uninline switch_mm() + - x86/mm: Add INVPCID helpers + - x86/mm: If INVPCID is available, use it to flush global mappings + - kaiser: enhanced by kernel and user PCIDs + - kaiser: load_new_mm_cr3() let SWITCH_USER_CR3 flush user + - kaiser: PCID 0 for kernel and 128 for user + - kaiser: x86_cr3_pcid_noflush and x86_cr3_pcid_user + - kaiser: paranoid_entry pass cr3 need to paranoid_exit + - kaiser: _pgd_alloc() without __GFP_REPEAT to avoid stalls + - kaiser: fix unlikely error in alloc_ldt_struct() + - kaiser: add "nokaiser" boot option, using ALTERNATIVE + - x86/kaiser: Rename and simplify X86_FEATURE_KAISER handling + - x86/boot: Add early cmdline parsing for options with arguments + - x86/kaiser: Check boottime cmdline params + - kaiser: use ALTERNATIVE instead of x86_cr3_pcid_noflush + - kaiser: drop is_atomic arg to kaiser_pagetable_walk() + - kaiser: asm/tlbflush.h handle noPGE at lower level + - kaiser: kaiser_flush_tlb_on_return_to_user() check PCID + - x86/paravirt: Dont patch flush_tlb_single + - x86/kaiser: Reenable PARAVIRT + - kaiser: disabled on Xen PV + - x86/kaiser: Move feature detection up + - kvm: x86: fix RSM when PCID is non-zero + - SAUCE: arch/x86/entry/vdso: temporarily disable vdso + - [Config]: CONFIG_KAISER=y + + -- Kleber Sacilotto de Souza Sun, 07 Jan 2018 12:06:25 +0100 + +linux-raspi2 (4.4.0-1080.88) xenial; urgency=low + + * linux-raspi2: 4.4.0-1080.88 -proposed tracker (LP: #1737519) + + [ Ubuntu: 4.4.0-104.127 ] + + * linux: 4.4.0-104.127 -proposed tracker (LP: #1737511) + * upgrading linux-image package to 4.4.0-103.126 breaks Ceph network file + system connection (LP: #1737033) + - Revert "libceph: MOSDOpReply v7 encoding" + - Revert "libceph: advertise support for TUNABLES5" + - Revert "crush: decode and initialize chooseleaf_stable" + - Revert "crush: add chooseleaf_stable tunable" + - Revert "crush: ensure take bucket value is valid" + - Revert "crush: ensure bucket id is valid before indexing buckets array" + + -- Kleber Sacilotto de Souza Mon, 11 Dec 2017 13:49:17 +0100 + +linux-raspi2 (4.4.0-1079.87) xenial; urgency=low + + * linux-raspi2: 4.4.0-1079.87 -proposed tracker (LP: #1736185) + + [ Ubuntu: 4.4.0-103.126 ] + + * linux: 4.4.0-103.126 -proposed tracker (LP: #1736181) + * CVE-2017-1000405 + - mm, thp: Do not make page table dirty unconditionally in touch_p[mu]d() + * CVE-2017-16939 + - netlink: add a start callback for starting a netlink dump + - ipsec: Fix aborted xfrm policy dump crash + + -- Stefan Bader Mon, 04 Dec 2017 17:25:00 +0100 + +linux-raspi2 (4.4.0-1078.86) xenial; urgency=low + + * linux-raspi2: 4.4.0-1078.86 -proposed tracker (LP: #1733547) + + * Update config with NET_DSA=n as required by changes in + upstream stable update to 4.4.98 (LP: #1732698) + + [ Ubuntu: 4.4.0-102.125 ] + + * linux: 4.4.0-102.125 -proposed tracker (LP: #1733541) + * tar -x sometimes fails on overlayfs (LP: #1728489) + - ovl: check if all layers are on the same fs + - ovl: persistent inode number for directories + * NVMe timeout is too short (LP: #1729119) + - nvme: update timeout module parameter type + * Set PANIC_TIMEOUT=10 on Power Systems (LP: #1730660) + - [Config]: Set PANIC_TIMEOUT=10 on ppc64el + * Cannot pair BLE remote devices when using combo BT SoC (LP: #1731467) + - Bluetooth: increase timeout for le auto connections + * CIFS errors on 4.4.0-98, but not on 4.4.0-97 with same config (LP: #1729337) + - SMB3: Validate negotiate request must always be signed + * Plantronics P610 does not support sample rate reading (LP: #1719853) + - ALSA: usb-audio: Add sample rate quirk for Plantronics P610 + * Invalid btree pointer causes the kernel NULL pointer dereference + (LP: #1729256) + - xfs: reinit btree pointer on attr tree inactivation walk + * Samba mount/umount in docker container triggers kernel Oops (LP: #1729637) + - ipv6: only call ip6_route_dev_notify() once for NETDEV_UNREGISTER + - ipv6: fix NULL dereference in ip6_route_dev_notify() + * [kernel] tty/hvc: Use opal irqchip interface if available (LP: #1728098) + - tty/hvc: Use opal irqchip interface if available + * Device hotplugging with MPT SAS cannot work for VMWare ESXi (LP: #1730852) + - scsi: mptsas: Fixup device hotplug for VMWare ESXi + * NMI watchdog: BUG: soft lockup on Guest upon boot (KVM) (LP: #1727331) + - KVM: PPC: Book3S: Treat VTB as a per-subcore register, not per-thread + * Attempt to map rbd image from ceph jewel/luminous hangs (LP: #1728739) + - crush: ensure bucket id is valid before indexing buckets array + - crush: ensure take bucket value is valid + - crush: add chooseleaf_stable tunable + - crush: decode and initialize chooseleaf_stable + - libceph: advertise support for TUNABLES5 + - libceph: MOSDOpReply v7 encoding + * Xenial update to 4.4.98 stable release (LP: #1732698) + - adv7604: Initialize drive strength to default when using DT + - video: fbdev: pmag-ba-fb: Remove bad `__init' annotation + - PCI: mvebu: Handle changes to the bridge windows while enabled + - xen/netback: set default upper limit of tx/rx queues to 8 + - drm: drm_minor_register(): Clean up debugfs on failure + - KVM: PPC: Book 3S: XICS: correct the real mode ICP rejecting counter + - iommu/arm-smmu-v3: Clear prior settings when updating STEs + - powerpc/corenet: explicitly disable the SDHC controller on kmcoge4 + - ARM: omap2plus_defconfig: Fix probe errors on UARTs 5 and 6 + - crypto: vmx - disable preemption to enable vsx in aes_ctr.c + - iio: trigger: free trigger resource correctly + - phy: increase size of MII_BUS_ID_SIZE and bus_id + - serial: sh-sci: Fix register offsets for the IRDA serial port + - usb: hcd: initialize hcd->flags to 0 when rm hcd + - netfilter: nft_meta: deal with PACKET_LOOPBACK in netdev family + - IPsec: do not ignore crypto err in ah4 input + - Input: mpr121 - handle multiple bits change of status register + - Input: mpr121 - set missing event capability + - IB/ipoib: Change list_del to list_del_init in the tx object + - s390/qeth: issue STARTLAN as first IPA command + - (config) Add NET_DSA=n + - net: dsa: select NET_SWITCHDEV + - platform/x86: hp-wmi: Fix detection for dock and tablet mode + - cdc_ncm: Set NTB format again after altsetting switch for Huawei devices + - KEYS: trusted: sanitize all key material + - KEYS: trusted: fix writing past end of buffer in trusted_read() + - platform/x86: hp-wmi: Fix error value for hp_wmi_tablet_state + - platform/x86: hp-wmi: Do not shadow error values + - x86/uaccess, sched/preempt: Verify access_ok() context + - workqueue: Fix NULL pointer dereference + - crypto: x86/sha1-mb - fix panic due to unaligned access + - KEYS: fix NULL pointer dereference during ASN.1 parsing [ver #2] + - ARM: 8720/1: ensure dump_instr() checks addr_limit + - ALSA: seq: Fix OSS sysex delivery in OSS emulation + - ALSA: seq: Avoid invalid lockdep class warning + - MIPS: microMIPS: Fix incorrect mask in insn_table_MM + - MIPS: Fix CM region target definitions + - MIPS: SMP: Use a completion event to signal CPU up + - MIPS: Fix race on setting and getting cpu_online_mask + - MIPS: SMP: Fix deadlock & online race + - test: firmware_class: report errors properly on failure + - selftests: firmware: add empty string and async tests + - selftests: firmware: send expected errors to /dev/null + - tools: firmware: check for distro fallback udev cancel rule + - MIPS: AR7: Defer registration of GPIO + - MIPS: AR7: Ensure that serial ports are properly set up + - Input: elan_i2c - add ELAN060C to the ACPI table + - drm/vmwgfx: Fix Ubuntu 17.10 Wayland black screen issue + - rbd: use GFP_NOIO for parent stat and data requests + - can: sun4i: handle overrun in RX FIFO + - can: c_can: don't indicate triple sampling support for D_CAN + - x86/oprofile/ppro: Do not use __this_cpu*() in preemptible context + - PKCS#7: fix unitialized boolean 'want' + - Linux 4.4.98 + * ELANTECH Touchpad is not detected in 'Lenovo Ideapad 320 14AST' after fresh + install (LP: #1727544) + - Input: elan_i2c - add ELAN060C to the ACPI table + * Xenial update to 4.4.97 stable release (LP: #1731915) + - ALSA: timer: Add missing mutex lock for compat ioctls + - ALSA: seq: Fix nested rwsem annotation for lockdep splat + - cifs: check MaxPathNameComponentLength != 0 before using it + - KEYS: return full count in keyring_read() if buffer is too small + - KEYS: fix out-of-bounds read during ASN.1 parsing + - ASoC: adau17x1: Workaround for noise bug in ADC + - arm64: ensure __dump_instr() checks addr_limit + - ARM: dts: mvebu: pl310-cache disable double-linefill + - ARM: 8715/1: add a private asm/unaligned.h + - ocfs2: fstrim: Fix start offset of first cluster group during fstrim + - perf tools: Fix build failure on perl script context + - drm/msm: Fix potential buffer overflow issue + - drm/msm: fix an integer overflow test + - tracing/samples: Fix creation and deletion of simple_thread_fn creation + - Fix tracing sample code warning. + - PM / wakeirq: report a wakeup_event on dedicated wekup irq + - mmc: s3cmci: include linux/interrupt.h for tasklet_struct + - ARM: pxa: Don't rely on public mmc header to include leds.h + - mfd: ab8500-sysctrl: Handle probe deferral + - mfd: axp20x: Fix axp288 PEK_DBR and PEK_DBF irqs being swapped + - staging: rtl8712u: Fix endian settings for structs describing network + packets + - ext4: fix stripe-unaligned allocations + - ext4: do not use stripe_width if it is not set + - i2c: riic: correctly finish transfers + - drm/amdgpu: when dpm disabled, also need to stop/start vce. + - perf tools: Only increase index if perf_evsel__new_idx() succeeds + - cx231xx: Fix I2C on Internal Master 3 Bus + - xen/manage: correct return value check on xenbus_scanf() + - scsi: aacraid: Process Error for response I/O + - platform/x86: intel_mid_thermal: Fix module autoload + - staging: lustre: llite: don't invoke direct_IO for the EOF case + - staging: lustre: hsm: stack overrun in hai_dump_data_field + - staging: lustre: ptlrpc: skip lock if export failed + - exynos4-is: fimc-is: Unmap region obtained by of_iomap() + - mei: return error on notification request to a disconnected client + - s390/dasd: check for device error pointer within state change interrupts + - bt8xx: fix memory leak + - xen: don't print error message in case of missing Xenstore entry + - staging: r8712u: Fix Sparse warning in rtl871x_xmit.c + - Linux 4.4.97 + * Xenial update to 4.4.96 stable release (LP: #1731882) + - workqueue: replace pool->manager_arb mutex with a flag + - ALSA: hda/realtek - Add support for ALC236/ALC3204 + - ALSA: hda - fix headset mic problem for Dell machines with alc236 + - ceph: unlock dangling spinlock in try_flush_caps() + - usb: xhci: Handle error condition in xhci_stop_device() + - spi: uapi: spidev: add missing ioctl header + - fuse: fix READDIRPLUS skipping an entry + - xen/gntdev: avoid out of bounds access in case of partial gntdev_mmap() + - Input: elan_i2c - add ELAN0611 to the ACPI table + - Input: gtco - fix potential out-of-bound access + - assoc_array: Fix a buggy node-splitting case + - scsi: zfcp: fix erp_action use-before-initialize in REC action trace + - scsi: sg: Re-fix off by one in sg_fill_request_table() + - can: sun4i: fix loopback mode + - can: kvaser_usb: Correct return value in printout + - can: kvaser_usb: Ignore CMD_FLUSH_QUEUE_REPLY messages + - regulator: fan53555: fix I2C device ids + - x86/microcode/intel: Disable late loading on model 79 + - ecryptfs: fix dereference of NULL user_key_payload + - Revert "drm: bridge: add DT bindings for TI ths8135" + - Linux 4.4.96 + * Touchpad not detected - Lenovo ideapad 320-15IKB (LP: #1723736) + - Input: elan_i2c - add ELAN0611 to the ACPI table + + [ Ubuntu: 4.4.0-101.124 ] + + * linux: 4.4.0-101.124 -proposed tracker (LP: #1731264) + * s390/mm: fix write access check in gup_huge_pmd() (LP: #1730596) + - s390/mm: fix write access check in gup_huge_pmd() + + -- Stefan Bader Wed, 22 Nov 2017 14:31:56 +0100 + +linux-raspi2 (4.4.0-1077.85) xenial; urgency=low + + * linux-raspi2: 4.4.0-1077.85 -proposed tracker (LP: #1729278) + + [ Ubuntu: 4.4.0-100.123 ] + + * linux: 4.4.0-100.123 -proposed tracker (LP: #1729273) + * Xenial update to 4.4.95 stable release (LP: #1729107) + - USB: devio: Revert "USB: devio: Don't corrupt user memory" + - USB: core: fix out-of-bounds access bug in usb_get_bos_descriptor() + - USB: serial: metro-usb: add MS7820 device id + - usb: cdc_acm: Add quirk for Elatec TWN3 + - usb: quirks: add quirk for WORLDE MINI MIDI keyboard + - usb: hub: Allow reset retry for USB2 devices on connect bounce + - ALSA: usb-audio: Add native DSD support for Pro-Ject Pre Box S2 Digital + - can: gs_usb: fix busy loop if no more TX context is available + - usb: musb: sunxi: Explicitly release USB PHY on exit + - usb: musb: Check for host-mode using is_host_active() on reset interrupt + - can: esd_usb2: Fix can_dlc value for received RTR, frames + - drm/nouveau/bsp/g92: disable by default + - drm/nouveau/mmu: flush tlbs before deleting page tables + - ALSA: seq: Enable 'use' locking in all configurations + - ALSA: hda: Remove superfluous '-' added by printk conversion + - i2c: ismt: Separate I2C block read from SMBus block read + - brcmsmac: make some local variables 'static const' to reduce stack size + - bus: mbus: fix window size calculation for 4GB windows + - clockevents/drivers/cs5535: Improve resilience to spurious interrupts + - rtlwifi: rtl8821ae: Fix connection lost problem + - KEYS: encrypted: fix dereference of NULL user_key_payload + - lib/digsig: fix dereference of NULL user_key_payload + - KEYS: don't let add_key() update an uninstantiated key + - pkcs7: Prevent NULL pointer dereference, since sinfo is not always set. + - parisc: Avoid trashing sr2 and sr3 in LWS code + - parisc: Fix double-word compare and exchange in LWS code on 32-bit kernels + - sched/autogroup: Fix autogroup_move_group() to never skip sched_move_task() + - f2fs crypto: replace some BUG_ON()'s with error checks + - f2fs crypto: add missing locking for keyring_key access + - fscrypt: fix dereference of NULL user_key_payload + - KEYS: Fix race between updating and finding a negative key + - fscrypto: require write access to mount to set encryption policy + - FS-Cache: fix dereference of NULL user_key_payload + - Linux 4.4.95 + * Xenial update to 4.4.94 stable release (LP: #1729105) + - percpu: make this_cpu_generic_read() atomic w.r.t. interrupts + - drm/dp/mst: save vcpi with payloads + - MIPS: Fix minimum alignment requirement of IRQ stack + - sctp: potential read out of bounds in sctp_ulpevent_type_enabled() + - bpf/verifier: reject BPF_ALU64|BPF_END + - udpv6: Fix the checksum computation when HW checksum does not apply + - ip6_gre: skb_push ipv6hdr before packing the header in ip6gre_header + - net: emac: Fix napi poll list corruption + - packet: hold bind lock when rebinding to fanout hook + - bpf: one perf event close won't free bpf program attached by another perf + event + - isdn/i4l: fetch the ppp_write buffer in one shot + - vti: fix use after free in vti_tunnel_xmit/vti6_tnl_xmit + - l2tp: Avoid schedule while atomic in exit_net + - l2tp: fix race condition in l2tp_tunnel_delete + - tun: bail out from tun_get_user() if the skb is empty + - packet: in packet_do_bind, test fanout with bind_lock held + - packet: only test po->has_vnet_hdr once in packet_snd + - net: Set sk_prot_creator when cloning sockets to the right proto + - tipc: use only positive error codes in messages + - Revert "bsg-lib: don't free job in bsg_prepare_job" + - locking/lockdep: Add nest_lock integrity test + - watchdog: kempld: fix gcc-4.3 build + - irqchip/crossbar: Fix incorrect type of local variables + - mac80211_hwsim: check HWSIM_ATTR_RADIO_NAME length + - mac80211: fix power saving clients handling in iwlwifi + - net/mlx4_en: fix overflow in mlx4_en_init_timestamp() + - netfilter: nf_ct_expect: Change __nf_ct_expect_check() return value. + - iio: adc: xilinx: Fix error handling + - Btrfs: send, fix failure to rename top level inode due to name collision + - f2fs: do not wait for writeback in write_begin + - md/linear: shutup lockdep warnning + - sparc64: Migrate hvcons irq to panicked cpu + - net/mlx4_core: Fix VF overwrite of module param which disables DMFS on new + probed PFs + - crypto: xts - Add ECB dependency + - ocfs2/dlmglue: prepare tracking logic to avoid recursive cluster lock + - slub: do not merge cache if slub_debug contains a never-merge flag + - scsi: scsi_dh_emc: return success in clariion_std_inquiry() + - net: mvpp2: release reference to txq_cpu[] entry after unmapping + - i2c: at91: ensure state is restored after suspending + - ceph: clean up unsafe d_parent accesses in build_dentry_path + - uapi: fix linux/rds.h userspace compilation errors + - uapi: fix linux/mroute6.h userspace compilation errors + - target/iscsi: Fix unsolicited data seq_end_offset calculation + - nfsd/callback: Cleanup callback cred on shutdown + - cpufreq: CPPC: add ACPI_PROCESSOR dependency + - Revert "tty: goldfish: Fix a parameter of a call to free_irq" + - Linux 4.4.94 + + [ Ubuntu: 4.4.0-99.122 ] + + * linux: 4.4.0-99.122 -proposed tracker (LP: #1728945) + * Remove vmbus-rdma driver from Xenial kernel (LP: #1721538) + - SAUCE: remove hv_network_direct driver + - [Config]: Remove hv_network_direct driver + * usb 3-1: 2:1: cannot get freq at ep 0x1 (LP: #1708499) + - ALSA: usb-audio: Add sample rate quirk for Plantronics C310/C520-M + * Plantronics Blackwire C520-M - Cannot get freq at ep 0x1, 0x81 + (LP: #1709282) + - ALSA: usb-audio: Add sample rate quirk for Plantronics C310/C520-M + * wait-for-root fails to detect nbd root (LP: #696435) + - nbd: Create size change events for userspace + * Fix OpenNSL GPL bugs found by CoverityScan static analysis (LP: #1718388) + - SAUCE: opennsl: bcm-knet: check for null sinfo to avoid a null pointer + dereference + - SAUCE: opennsl: bcm-knet: remove redundant null checks on dev->name + - SAUCE: opennsl: bde: check for out-of-bounds index io.dev + * HID: multitouch: Correct ALPS PTP Stick and Touchpad devices ID + (LP: #1722719) + - Revert "HID: multitouch: Support ALPS PTP stick with pid 0x120A" + * Xenial update to 4.4.93 stable release (LP: #1724836) + - brcmfmac: add length check in brcmf_cfg80211_escan_handler() + - ext4: in ext4_seek_{hole,data}, return -ENXIO for negative offsets + - CIFS: Reconnect expired SMB sessions + - nl80211: Define policy for packet pattern attributes + - iwlwifi: mvm: use IWL_HCMD_NOCOPY for MCAST_FILTER_CMD + - rcu: Allow for page faults in NMI handlers + - USB: dummy-hcd: Fix deadlock caused by disconnect detection + - MIPS: math-emu: Remove pr_err() calls from fpu_emu() + - dmaengine: edma: Align the memcpy acnt array size with the transfer + - HID: usbhid: fix out-of-bounds bug + - crypto: shash - Fix zero-length shash ahash digest crash + - KVM: nVMX: fix guest CR4 loading when emulating L2 to L1 exit + - usb: renesas_usbhs: Fix DMAC sequence for receiving zero-length packet + - iommu/amd: Finish TLB flush in amd_iommu_unmap() + - ALSA: usb-audio: Kill stray URB at exiting + - ALSA: seq: Fix use-after-free at creating a port + - ALSA: seq: Fix copy_from_user() call inside lock + - ALSA: caiaq: Fix stray URB at probe error path + - ALSA: line6: Fix leftover URB at error-path during probe + - usb: gadget: composite: Fix use-after-free in + usb_composite_overwrite_options + - direct-io: Prevent NULL pointer access in submit_page_section + - fix unbalanced page refcounting in bio_map_user_iov + - USB: serial: ftdi_sio: add id for Cypress WICED dev board + - USB: serial: cp210x: add support for ELV TFD500 + - USB: serial: option: add support for TP-Link LTE module + - Revert "UBUNTU: SAUCE: USB: serial: qcserial: add Dell DW5818, DW5819" + - USB: serial: qcserial: add Dell DW5818, DW5819 + - USB: serial: console: fix use-after-free after failed setup + - x86/alternatives: Fix alt_max_short macro to really be a max() + - Linux 4.4.93 + * NULL pointer dereference in tty_write() in kernel 4.4.0-93.116+ + (LP: #1721065) + - tty: Prepare for destroying line discipline on hangup + * Xenial update to 4.4.92 stable release (LP: #1724783) + - usb: gadget: inode.c: fix unbalanced spin_lock in ep0_write + - USB: gadgetfs: Fix crash caused by inadequate synchronization + - USB: gadgetfs: fix copy_to_user while holding spinlock + - usb: gadget: udc: atmel: set vbus irqflags explicitly + - usb-storage: unusual_devs entry to fix write-access regression for Seagate + external drives + - usb: renesas_usbhs: fix the BCLR setting condition for non-DCP pipe + - usb: renesas_usbhs: fix usbhsf_fifo_clear() for RX direction + - ALSA: usb-audio: Check out-of-bounds access by corrupted buffer descriptor + - usb: pci-quirks.c: Corrected timeout values used in handshake + - USB: dummy-hcd: fix connection failures (wrong speed) + - USB: dummy-hcd: fix infinite-loop resubmission bug + - USB: dummy-hcd: Fix erroneous synchronization change + - USB: devio: Don't corrupt user memory + - usb: gadget: mass_storage: set msg_registered after msg registered + - USB: g_mass_storage: Fix deadlock when driver is unbound + - lsm: fix smack_inode_removexattr and xattr_getsecurity memleak + - ALSA: compress: Remove unused variable + - ALSA: usx2y: Suppress kernel warning at page allocation failures + - driver core: platform: Don't read past the end of "driver_override" buffer + - Drivers: hv: fcopy: restore correct transfer length + - stm class: Fix a use-after-free + - ftrace: Fix kmemleak in unregister_ftrace_graph + - HID: i2c-hid: allocate hid buffers for real worst case + - iwlwifi: add workaround to disable wide channels in 5GHz + - scsi: sd: Do not override max_sectors_kb sysfs setting + - USB: uas: fix bug in handling of alternate settings + - USB: core: harden cdc_parse_cdc_header + - usb: Increase quirk delay for USB devices + - USB: fix out-of-bounds in usb_set_configuration + - xhci: fix finding correct bus_state structure for USB 3.1 hosts + - iio: adc: twl4030: Fix an error handling path in 'twl4030_madc_probe()' + - iio: adc: twl4030: Disable the vusb3v1 rugulator in the error handling path + of 'twl4030_madc_probe()' + - iio: ad_sigma_delta: Implement a dedicated reset function + - staging: iio: ad7192: Fix - use the dedicated reset function avoiding dma + from stack. + - iio: core: Return error for failed read_reg + - iio: ad7793: Fix the serial interface reset + - iio: adc: mcp320x: Fix readout of negative voltages + - iio: adc: mcp320x: Fix oops on module unload + - uwb: properly check kthread_run return value + - uwb: ensure that endpoint is interrupt + - brcmfmac: setup passive scan if requested by user-space + - drm/i915/bios: ignore HDMI on port A + - sched/cpuset/pm: Fix cpuset vs. suspend-resume bugs + - ext4: fix data corruption for mmap writes + - ext4: Don't clear SGID when inheriting ACLs + - ext4: don't allow encrypted operations without keys + - Linux 4.4.92 + * Xenial update to 4.4.91 stable release (LP: #1724772) + - drm_fourcc: Fix DRM_FORMAT_MOD_LINEAR #define + - drm: bridge: add DT bindings for TI ths8135 + - GFS2: Fix reference to ERR_PTR in gfs2_glock_iter_next + - RDS: RDMA: Fix the composite message user notification + - ARM: dts: r8a7790: Use R-Car Gen 2 fallback binding for msiof nodes + - MIPS: Ensure bss section ends on a long-aligned address + - MIPS: ralink: Fix incorrect assignment on ralink_soc + - igb: re-assign hw address pointer on reset after PCI error + - extcon: axp288: Use vbus-valid instead of -present to determine cable + presence + - sh_eth: use correct name for ECMR_MPDE bit + - hwmon: (gl520sm) Fix overflows and crash seen when writing into limit + attributes + - iio: adc: axp288: Drop bogus AXP288_ADC_TS_PIN_CTRL register modifications + - iio: adc: hx711: Add DT binding for avia,hx711 + - ARM: 8635/1: nommu: allow enabling REMAP_VECTORS_TO_RAM + - tty: goldfish: Fix a parameter of a call to free_irq + - IB/ipoib: Fix deadlock over vlan_mutex + - IB/ipoib: rtnl_unlock can not come after free_netdev + - IB/ipoib: Replace list_del of the neigh->list with list_del_init + - drm/amdkfd: fix improper return value on error + - USB: serial: mos7720: fix control-message error handling + - USB: serial: mos7840: fix control-message error handling + - partitions/efi: Fix integer overflow in GPT size calculation + - ASoC: dapm: handle probe deferrals + - audit: log 32-bit socketcalls + - usb: chipidea: vbus event may exist before starting gadget + - ASoC: dapm: fix some pointer error handling + - MIPS: Lantiq: Fix another request_mem_region() return code check + - net: core: Prevent from dereferencing null pointer when releasing SKB + - net/packet: check length in getsockopt() called with PACKET_HDRLEN + - team: fix memory leaks + - usb: plusb: Add support for PL-27A1 + - mmc: sdio: fix alignment issue in struct sdio_func + - bridge: netlink: register netdevice before executing changelink + - netfilter: invoke synchronize_rcu after set the _hook_ to NULL + - MIPS: IRQ Stack: Unwind IRQ stack onto task stack + - exynos-gsc: Do not swap cb/cr for semi planar formats + - netfilter: nfnl_cthelper: fix incorrect helper->expect_class_max + - parisc: perf: Fix potential NULL pointer dereference + - iommu/io-pgtable-arm: Check for leaf entry before dereferencing it + - rds: ib: add error handle + - md/raid10: submit bio directly to replacement disk + - i2c: meson: fix wrong variable usage in meson_i2c_put_data + - xfs: remove kmem_zalloc_greedy + - libata: transport: Remove circular dependency at free time + - drivers: firmware: psci: drop duplicate const from psci_of_match + - IB/qib: fix false-postive maybe-uninitialized warning + - ARM: remove duplicate 'const' annotations' + - ALSA: au88x0: avoid theoretical uninitialized access + - ttpci: address stringop overflow warning + - Linux 4.4.91 + + -- Thadeu Lima de Souza Cascardo Thu, 02 Nov 2017 13:55:24 -0200 + +linux-raspi2 (4.4.0-1076.84) xenial; urgency=low + + * linux-raspi2: 4.4.0-1076.84 -proposed tracker (LP: #1722303) + + * snapcraft.yaml: add dpkg-dev to the build deps (LP: #1718886) + - snapcraft.yaml: add dpkg-dev to the build deps + + [ Ubuntu: 4.4.0-98.121 ] + + * linux: 4.4.0-98.121 -proposed tracker (LP: #1722299) + * Controller lockup detected on ProLiant DL380 Gen9 with P440 Controller + (LP: #1720359) + - scsi: hpsa: limit transfer length to 1MB + * [Dell Docking IE][0bda:8153] Realtek USB Ethernet leads to system hang + (LP: #1720977) + - r8152: fix the list rx_done may be used without initialization + * Add installer support for Broadcom BCM573xx network drivers. (LP: #1720466) + - d-i: Add bnxt_en to nic-modules. + * snapcraft.yaml: add dpkg-dev to the build deps (LP: #1718886) + - snapcraft.yaml: add dpkg-dev to the build deps + * Support setting I2C_TIMEOUT via ioctl for i2c-designware (LP: #1718578) + - i2c: designware: Use transfer timeout from ioctl I2C_TIMEOUT + * 5U84 - ses driver isn't binding right - cannot blink lights on 1 of the 2 + 5u84 (LP: #1693369) + - scsi_transport_sas: add function to get SAS endpoint address + - ses: fix discovery of SATA devices in SAS enclosures + - scsi: sas: provide stub implementation for scsi_is_sas_rphy + - scsi: ses: Fix SAS device detection in enclosure + * multipath -ll is not showing the disks which are actually multipath + (LP: #1718397) + - fs: aio: fix the increment of aio-nr and counting against aio-max-nr + * Support Dell Wireless DW5819/5818 WWAN devices (LP: #1721455) + - SAUCE: USB: serial: qcserial: add Dell DW5818, DW5819 + * CVE-2017-10911 + - xen-blkback: don't leak stack data via response ring + * implement 'complain mode' in seccomp for developer mode with snaps + (LP: #1567597) + - seccomp: Provide matching filter for introspection + - seccomp: Sysctl to display available actions + - seccomp: Operation for checking if an action is available + - seccomp: Sysctl to configure actions that are allowed to be logged + - seccomp: Selftest for detection of filter flag support + - seccomp: Action to log before allowing + * implement errno action logging in seccomp for strict mode with snaps + (LP: #1721676) + - seccomp: Provide matching filter for introspection + - seccomp: Sysctl to display available actions + - seccomp: Operation for checking if an action is available + - seccomp: Sysctl to configure actions that are allowed to be logged + - seccomp: Selftest for detection of filter flag support + - seccomp: Filter flag to log all actions except SECCOMP_RET_ALLOW + * [Xenial] update OpenNSL kernel modules to 6.5.10 (LP: #1721511) + - SAUCE: update OpenNSL kernel modules to 6.5.10 + * Xenial update to 4.4.90 stable release (LP: #1721550) + - cifs: release auth_key.response for reconnect. + - mac80211: flush hw_roc_start work before cancelling the ROC + - KVM: PPC: Book3S: Fix race and leak in kvm_vm_ioctl_create_spapr_tce() + - tracing: Fix trace_pipe behavior for instance traces + - tracing: Erase irqsoff trace with empty write + - md/raid5: fix a race condition in stripe batch + - md/raid5: preserve STRIPE_ON_UNPLUG_LIST in break_stripe_batch_list + - scsi: scsi_transport_iscsi: fix the issue that iscsi_if_rx doesn't parse + nlmsg properly + - crypto: talitos - Don't provide setkey for non hmac hashing algs. + - crypto: talitos - fix sha224 + - KEYS: fix writing past end of user-supplied buffer in keyring_read() + - KEYS: prevent creating a different user's keyrings + - KEYS: prevent KEYCTL_READ on negative key + - powerpc/pseries: Fix parent_dn reference leak in add_dt_node() + - Fix SMB3.1.1 guest authentication to Samba + - SMB: Validate negotiate (to protect against downgrade) even if signing off + - SMB3: Don't ignore O_SYNC/O_DSYNC and O_DIRECT flags + - vfs: Return -ENXIO for negative SEEK_HOLE / SEEK_DATA offsets + - nl80211: check for the required netlink attributes presence + - bsg-lib: don't free job in bsg_prepare_job + - seccomp: fix the usage of get/put_seccomp_filter() in seccomp_get_filter() + - arm64: Make sure SPsel is always set + - arm64: fault: Route pte translation faults via do_translation_fault + - KVM: VMX: Do not BUG() on out-of-bounds guest IRQ + - kvm: nVMX: Don't allow L2 to access the hardware CR8 + - PCI: Fix race condition with driver_override + - btrfs: fix NULL pointer dereference from free_reloc_roots() + - btrfs: propagate error to btrfs_cmp_data_prepare caller + - btrfs: prevent to set invalid default subvolid + - x86/fpu: Don't let userspace set bogus xcomp_bv + - gfs2: Fix debugfs glocks dump + - timer/sysclt: Restrict timer migration sysctl values to 0 and 1 + - KVM: VMX: do not change SN bit in vmx_update_pi_irte() + - KVM: VMX: remove WARN_ON_ONCE in kvm_vcpu_trigger_posted_interrupt + - cxl: Fix driver use count + - dmaengine: mmp-pdma: add number of requestors + - ARM: pxa: add the number of DMA requestor lines + - ARM: pxa: fix the number of DMA requestor lines + - KVM: VMX: use cmpxchg64 + - video: fbdev: aty: do not leak uninitialized padding in clk to userspace + - swiotlb-xen: implement xen_swiotlb_dma_mmap callback + - fix xen_swiotlb_dma_mmap prototype + - Linux 4.4.90 + * Xenial update to 4.4.89 stable release (LP: #1721477) + - ipv6: accept 64k - 1 packet length in ip6_find_1stfragopt() + - ipv6: add rcu grace period before freeing fib6_node + - ipv6: fix sparse warning on rt6i_node + - qlge: avoid memcpy buffer overflow + - Revert "net: phy: Correctly process PHY_HALTED in phy_stop_machine()" + - Revert "net: use lib/percpu_counter API for fragmentation mem accounting" + - Revert "net: fix percpu memory leaks" + - gianfar: Fix Tx flow control deactivation + - ipv6: fix memory leak with multiple tables during netns destruction + - ipv6: fix typo in fib6_net_exit() + - f2fs: check hot_data for roll-forward recovery + - x86/fsgsbase/64: Report FSBASE and GSBASE correctly in core dumps + - md/raid5: release/flush io in raid5_do_work() + - nfsd: Fix general protection fault in release_lock_stateid() + - mm: prevent double decrease of nr_reserved_highatomic + - tty: improve tty_insert_flip_char() fast path + - tty: improve tty_insert_flip_char() slow path + - tty: fix __tty_insert_flip_char regression + - Input: i8042 - add Gigabyte P57 to the keyboard reset table + - MIPS: math-emu: .: Fix quiet NaN propagation + - MIPS: math-emu: .: Fix cases of both inputs zero + - MIPS: math-emu: .: Fix cases of both inputs negative + - MIPS: math-emu: .: Fix cases of input values with opposite + signs + - MIPS: math-emu: .: Fix cases of both infinite inputs + - MIPS: math-emu: MINA.: Fix some cases of infinity and zero inputs + - crypto: AF_ALG - remove SGL terminator indicator when chaining + - ext4: fix incorrect quotaoff if the quota feature is enabled + - ext4: fix quota inconsistency during orphan cleanup for read-only mounts + - powerpc: Fix DAR reporting when alignment handler faults + - block: Relax a check in blk_start_queue() + - md/bitmap: disable bitmap_resize for file-backed bitmaps. + - skd: Avoid that module unloading triggers a use-after-free + - skd: Submit requests to firmware before triggering the doorbell + - scsi: zfcp: fix queuecommand for scsi_eh commands when DIX enabled + - scsi: zfcp: add handling for FCP_RESID_OVER to the fcp ingress path + - scsi: zfcp: fix capping of unsuccessful GPN_FT SAN response trace records + - scsi: zfcp: fix passing fsf_req to SCSI trace on TMF to correlate with HBA + - scsi: zfcp: fix missing trace records for early returns in TMF eh handlers + - scsi: zfcp: fix payload with full FCP_RSP IU in SCSI trace records + - scsi: zfcp: trace HBA FSF response by default on dismiss or timedout late + response + - scsi: zfcp: trace high part of "new" 64 bit SCSI LUN + - scsi: megaraid_sas: Check valid aen class range to avoid kernel panic + - scsi: megaraid_sas: Return pended IOCTLs with cmd_status + MFI_STAT_WRONG_STATE in case adapter is dead + - scsi: storvsc: fix memory leak on ring buffer busy + - scsi: sg: remove 'save_scat_len' + - scsi: sg: use standard lists for sg_requests + - scsi: sg: off by one in sg_ioctl() + - scsi: sg: factor out sg_fill_request_table() + - scsi: sg: fixup infoleak when using SG_GET_REQUEST_TABLE + - scsi: qla2xxx: Fix an integer overflow in sysfs code + - ftrace: Fix selftest goto location on error + - tracing: Apply trace_clock changes to instance max buffer + - ARC: Re-enable MMU upon Machine Check exception + - PCI: shpchp: Enable bridge bus mastering if MSI is enabled + - media: v4l2-compat-ioctl32: Fix timespec conversion + - media: uvcvideo: Prevent heap overflow when accessing mapped controls + - bcache: initialize dirty stripes in flash_dev_run() + - bcache: Fix leak of bdev reference + - bcache: do not subtract sectors_to_gc for bypassed IO + - bcache: correct cache_dirty_target in __update_writeback_rate() + - bcache: Correct return value for sysfs attach errors + - bcache: fix for gc and write-back race + - bcache: fix bch_hprint crash and improve output + - ftrace: Fix memleak when unregistering dynamic ops when tracing disabled + - Linux 4.4.89 + * ETPS/2 Elantech Touchpad inconsistently detected (Gigabyte P57W laptop) + (LP: #1594214) + - Input: i8042 - add Gigabyte P57 to the keyboard reset table + * Xenial update to 4.4.88 stable release (LP: #1718195) + - usb: quirks: add delay init quirk for Corsair Strafe RGB keyboard + - USB: serial: option: add support for D-Link DWM-157 C1 + - usb: Add device quirk for Logitech HD Pro Webcam C920-C + - usb:xhci:Fix regression when ATI chipsets detected + - USB: core: Avoid race of async_completed() w/ usbdev_release() + - staging/rts5208: fix incorrect shift to extract upper nybble + - driver core: bus: Fix a potential double free + - intel_th: pci: Add Cannon Lake PCH-H support + - intel_th: pci: Add Cannon Lake PCH-LP support + - ath10k: fix memory leak in rx ring buffer allocation + - rtlwifi: rtl_pci_probe: Fix fail path of _rtl_pci_find_adapter + - Bluetooth: Add support of 13d3:3494 RTL8723BE device + - dlm: avoid double-free on error path in dlm_device_{register,unregister} + - mwifiex: correct channel stat buffer overflows + - drm/nouveau/pci/msi: disable MSI on big-endian platforms by default + - workqueue: Fix flag collision + - cs5536: add support for IDE controller variant + - scsi: sg: protect against races between mmap() and SG_SET_RESERVED_SIZE + - scsi: sg: recheck MMAP_IO request length with lock held + - drm: adv7511: really enable interrupts for EDID detection + - drm/bridge: adv7511: Fix mutex deadlock when interrupts are disabled + - drm/bridge: adv7511: Use work_struct to defer hotplug handing to out of irq + context + - drm/bridge: adv7511: Switch to using drm_kms_helper_hotplug_event() + - drm/bridge: adv7511: Re-write the i2c address before EDID probing + - btrfs: resume qgroup rescan on rw remount + - locktorture: Fix potential memory leak with rw lock test + - ALSA: msnd: Optimize / harden DSP and MIDI loops + - ARM: 8692/1: mm: abort uaccess retries upon fatal signal + - NFS: Fix 2 use after free issues in the I/O code + - xfs: XFS_IS_REALTIME_INODE() should be false if no rt device present + - Linux 4.4.88 + * Kernel has troule recognizing Corsair Strafe RGB keyboard (LP: #1678477) + - usb: quirks: add delay init quirk for Corsair Strafe RGB keyboard + + -- Thadeu Lima de Souza Cascardo Wed, 11 Oct 2017 13:28:48 -0300 + +linux-raspi2 (4.4.0-1075.83) xenial; urgency=low + + * linux-raspi2: 4.4.0-1075.83 -proposed tracker (LP: #1718153) + + [ Ubuntu: 4.4.0-97.120 ] + + * linux: 4.4.0-97.120 -proposed tracker (LP: #1718149) + * blk-mq: possible deadlock on CPU hot(un)plug (LP: #1670634) + - [Config] s390x -- disable CONFIG_{DM, SCSI}_MQ_DEFAULT + * Xenial update to 4.4.87 stable release (LP: #1715678) + - irqchip: mips-gic: SYNC after enabling GIC region + - i2c: ismt: Don't duplicate the receive length for block reads + - i2c: ismt: Return EMSGSIZE for block reads with bogus length + - ceph: fix readpage from fscache + - cpumask: fix spurious cpumask_of_node() on non-NUMA multi-node configs + - cpuset: Fix incorrect memory_pressure control file mapping + - alpha: uapi: Add support for __SANE_USERSPACE_TYPES__ + - CIFS: remove endian related sparse warning + - wl1251: add a missing spin_lock_init() + - xfrm: policy: check policy direction value + - drm/ttm: Fix accounting error when fail to get pages for pool + - kvm: arm/arm64: Fix race in resetting stage2 PGD + - kvm: arm/arm64: Force reading uncached stage2 PGD + - epoll: fix race between ep_poll_callback(POLLFREE) and ep_free()/ep_remove() + - crypto: algif_skcipher - only call put_page on referenced and used pages + - Linux 4.4.87 + * Xenial update to 4.4.86 stable release (LP: #1715430) + - scsi: isci: avoid array subscript warning + - ALSA: au88x0: Fix zero clear of stream->resources + - btrfs: remove duplicate const specifier + - i2c: jz4780: drop superfluous init + - gcov: add support for gcc version >= 6 + - gcov: support GCC 7.1 + - lightnvm: initialize ppa_addr in dev_to_generic_addr() + - p54: memset(0) whole array + - lpfc: Fix Device discovery failures during switch reboot test. + - arm64: mm: abort uaccess retries upon fatal signal + - x86/io: Add "memory" clobber to insb/insw/insl/outsb/outsw/outsl + - arm64: fpsimd: Prevent registers leaking across exec + - scsi: sg: protect accesses to 'reserved' page array + - scsi: sg: reset 'res_in_use' after unlinking reserved array + - drm/i915: fix compiler warning in drivers/gpu/drm/i915/intel_uncore.c + - Linux 4.4.86 + * Xenial update to 4.4.85 stable release (LP: #1714298) + - af_key: do not use GFP_KERNEL in atomic contexts + - dccp: purge write queue in dccp_destroy_sock() + - dccp: defer ccid_hc_tx_delete() at dismantle time + - ipv4: fix NULL dereference in free_fib_info_rcu() + - net_sched/sfq: update hierarchical backlog when drop packet + - ipv4: better IP_MAX_MTU enforcement + - sctp: fully initialize the IPv6 address in sctp_v6_to_addr() + - tipc: fix use-after-free + - ipv6: reset fn->rr_ptr when replacing route + - ipv6: repair fib6 tree in failure case + - tcp: when rearming RTO, if RTO time is in past then fire RTO ASAP + - irda: do not leak initialized list.dev to userspace + - net: sched: fix NULL pointer dereference when action calls some targets + - net_sched: fix order of queue length updates in qdisc_replace() + - mei: me: add broxton pci device ids + - mei: me: add lewisburg device ids + - Input: trackpoint - add new trackpoint firmware ID + - Input: elan_i2c - add ELAN0602 ACPI ID to support Lenovo Yoga310 + - ALSA: core: Fix unexpected error at replacing user TLV + - ALSA: hda - Add stereo mic quirk for Lenovo G50-70 (17aa:3978) + - ARCv2: PAE40: Explicitly set MSB counterpart of SLC region ops addresses + - i2c: designware: Fix system suspend + - drm: Release driver tracking before making the object available again + - drm/atomic: If the atomic check fails, return its value first + - drm: rcar-du: lvds: Fix PLL frequency-related configuration + - drm: rcar-du: lvds: Rename PLLEN bit to PLLON + - drm: rcar-du: Fix crash in encoder failure error path + - drm: rcar-du: Fix display timing controller parameter + - drm: rcar-du: Fix H/V sync signal polarity configuration + - tracing: Fix freeing of filter in create_filter() when set_str is false + - cifs: Fix df output for users with quota limits + - cifs: return ENAMETOOLONG for overlong names in cifs_open()/cifs_lookup() + - nfsd: Limit end of page list when decoding NFSv4 WRITE + - perf/core: Fix group {cpu,task} validation + - Bluetooth: hidp: fix possible might sleep error in hidp_session_thread + - Bluetooth: cmtp: fix possible might sleep error in cmtp_session + - Bluetooth: bnep: fix possible might sleep error in bnep_session + - binder: use group leader instead of open thread + - binder: Use wake up hint for synchronous transactions. + - ANDROID: binder: fix proc->tsk check. + - iio: imu: adis16480: Fix acceleration scale factor for adis16480 + - iio: hid-sensor-trigger: Fix the race with user space powering up sensors + - staging: rtl8188eu: add RNX-N150NUB support + - ASoC: simple-card: don't fail if sysclk setting is not supported + - ASoC: rsnd: disable SRC.out only when stop timing + - ASoC: rsnd: avoid pointless loop in rsnd_mod_interrupt() + - ASoC: rsnd: Add missing initialization of ADG req_rate + - ASoC: rsnd: ssi: 24bit data needs right-aligned settings + - ASoC: rsnd: don't call update callback if it was NULL + - ntb_transport: fix qp count bug + - ntb_transport: fix bug calculating num_qps_mw + - ACPI: ioapic: Clear on-stack resource before using it + - ACPI / APEI: Add missing synchronize_rcu() on NOTIFY_SCI removal + - Linux 4.4.85 + * Xenial update to 4.4.84 stable release (LP: #1713729) + - audit: Fix use after free in audit_remove_watch_rule() + - parisc: pci memory bar assignment fails with 64bit kernels on dino/cujo + - crypto: x86/sha1 - Fix reads beyond the number of blocks passed + - Input: elan_i2c - Add antoher Lenovo ACPI ID for upcoming Lenovo NB + - ALSA: seq: 2nd attempt at fixing race creating a queue + - Revert "UBUNTU: SAUCE: (no-up) ALSA: usb-audio: Add quirk for sennheiser + officerunner" + - ALSA: usb-audio: Apply sample rate quirk to Sennheiser headset + - ALSA: usb-audio: Add mute TLV for playback volumes on C-Media devices + - mm/mempolicy: fix use after free when calling get_mempolicy + - xen: fix bio vec merging + - x86/asm/64: Clear AC on NMI entries + - irqchip/atmel-aic: Fix unbalanced of_node_put() in aic_common_irq_fixup() + - irqchip/atmel-aic: Fix unbalanced refcount in aic_common_rtc_irq_fixup() + - Sanitize 'move_pages()' permission checks + - pids: make task_tgid_nr_ns() safe + - perf/x86: Fix LBR related crashes on Intel Atom + - usb: optimize acpi companion search for usb port devices + - usb: qmi_wwan: add D-Link DWM-222 device ID + - Linux 4.4.84 + * Intel i40e PF reset due to incorrect MDD detection (LP: #1713553) + - i40e: Limit TX descriptor count in cases where frag size is greater than 16K + * Neighbour confirmation broken, breaks ARP cache aging (LP: #1715812) + - sock: add sk_dst_pending_confirm flag + - net: add dst_pending_confirm flag to skbuff + - sctp: add dst_pending_confirm flag + - tcp: replace dst_confirm with sk_dst_confirm + - net: add confirm_neigh method to dst_ops + - net: use dst_confirm_neigh for UDP, RAW, ICMP, L2TP + - net: pending_confirm is not used anymore + * CVE-2017-14106 + - tcp: initialize rcv_mss to TCP_MIN_MSS instead of 0 + * [CIFS] Fix maximum SMB2 header size (LP: #1713884) + - CIFS: Fix maximum SMB2 header size + * Middle button of trackpoint doesn't work (LP: #1715271) + - Input: trackpoint - assume 3 buttons when buttons detection fails + * kernel BUG at /build/linux-lts-xenial-_hWfOZ/linux-lts- + xenial-4.4.0/security/apparmor/include/context.h:69! (LP: #1626984) + - SAUCE: fix oops when disabled and module parameters, are accessed + * Touchpad not detected (LP: #1708852) + - Input: elan_i2c - add ELAN0608 to the ACPI table + + -- Kleber Sacilotto de Souza Wed, 20 Sep 2017 09:45:14 +0200 + +linux-raspi2 (4.4.0-1074.82) xenial; urgency=low + + * linux-raspi2: 4.4.0-1074.82 -proposed tracker (LP: #1716618) + + [ Ubuntu: 4.4.0-96.119 ] + + * linux: 4.4.0-96.119 -proposed tracker (LP: #1716613) + * kernel panic -not syncing: Fatal exception: panic_on_oops (LP: #1708399) + - s390/mm: no local TLB flush for clearing-by-ASCE IDTE + - SAUCE: s390/mm: fix local TLB flushing vs. detach of an mm address space + - SAUCE: s390/mm: fix race on mm->context.flush_mm + * CVE-2017-1000251 + - Bluetooth: Properly check L2CAP config option output buffer length + + -- Stefan Bader Tue, 12 Sep 2017 17:16:17 +0200 + +linux-raspi2 (4.4.0-1073.81) xenial; urgency=low + + * linux-raspi2: 4.4.0-1073.81 -proposed tracker (LP: #1715653) + + [ Ubuntu: 4.4.0-95.118 ] + + * linux: 4.4.0-95.118 -proposed tracker (LP: #1715651) + * Xenial update to 4.4.78 stable release broke Address Sanitizer + (LP: #1715636) + - mm: revert x86_64 and arm64 ELF_ET_DYN_BASE base changes + + -- Kleber Sacilotto de Souza Thu, 07 Sep 2017 18:36:56 +0200 + +linux-raspi2 (4.4.0-1072.80) xenial; urgency=low + + * linux-raspi2: 4.4.0-1072.80 -proposed tracker (LP: #1713464) + + * Include Broadcom GPL modules in Xenial Kernel (LP: #1665783) + - [config] update config for master changes + + * Fix OOM errors (LP: #1712598) + - Revert "Revert "mm: consider compaction feedback also for costly + allocation"" + - Revert "Revert "mm, oom, compaction: prevent from should_compact_retry + looping for ever for costly orders"" + - Revert "Revert "mm, oom: protect !costly allocations some more for + !CONFIG_COMPACTION"" + - Revert "Revert "mm, oom: prevent premature OOM killer invocation for high + order request"" + - Revert "Revert "PM / wakeirq: Fix dedicated wakeirq for drivers not using + autosuspend"" + + [ Ubuntu: 4.4.0-94.117 ] + + * linux: 4.4.0-94.117 -proposed tracker (LP: #1713462) + * mwifiex causes kernel oops when AP mode is enabled (LP: #1712746) + - SAUCE: net/wireless: do not dereference invalid pointer + - SAUCE: mwifiex: do not dereference invalid pointer + * Backport more recent Broadcom bnxt_en driver (LP: #1711056) + - SAUCE: bnxt_en_bpo: Import bnxt_en driver version 1.8.1 + - SAUCE: bnxt_en_bpo: Drop distro out-of-tree detection logic + - SAUCE: bnxt_en_bpo: Remove unnecessary compile flags + - SAUCE: bnxt_en_bpo: Move config settings to Kconfig + - SAUCE: bnxt_en_bpo: Remove PCI_IDs handled by the regular driver + - SAUCE: bnxt_en_bpo: Rename the backport driver to bnxt_en_bpo + - bnxt_en_bpo: [Config] Enable CONFIG_BNXT_BPO=m + * HID: multitouch: Support ALPS PTP Stick and Touchpad devices (LP: #1712481) + - HID: multitouch: Support PTP Stick and Touchpad device + - SAUCE: HID: multitouch: Support ALPS PTP stick with pid 0x120A + * igb: Support using Broadcom 54616 as PHY (LP: #1712024) + - SAUCE: igb: add support for using Broadcom 54616 as PHY + * IPR driver causes multipath to fail paths/stuck IO on Medium Errors + (LP: #1682644) + - scsi: ipr: do not set DID_PASSTHROUGH on CHECK CONDITION + * accessing /dev/hvc1 with stress-ng on Ubuntu xenial causes crash + (LP: #1711401) + - tty/hvc: Use IRQF_SHARED for OPAL hvc consoles + * memory-hotplug test needs to be fixed (LP: #1710868) + - selftests: typo correction for memory-hotplug test + - selftests: check hot-pluggagble memory for memory-hotplug test + - selftests: check percentage range for memory-hotplug test + - selftests: add missing test name in memory-hotplug test + - selftests: fix memory-hotplug test + * HP lt4132 LTE/HSPA+ 4G Module (03f0:a31d) does not work (LP: #1707643) + - net: cdc_mbim: apply "NDP to end" quirk to HP lt4132 + * Migrating KSM page causes the VM lock up as the KSM page merging list is too + large (LP: #1680513) + - ksm: introduce ksm_max_page_sharing per page deduplication limit + - ksm: fix use after free with merge_across_nodes = 0 + - ksm: cleanup stable_node chain collapse case + - ksm: swap the two output parameters of chain/chain_prune + - ksm: optimize refile of stable_node_dup at the head of the chain + * sort ABI files with C.UTF-8 locale (LP: #1712345) + - [Packaging] sort ABI files with C.UTF-8 locale + * Include Broadcom GPL modules in Xenial Kernel (LP: #1665783) + - [Config] OpenNSL Kconfig/Makefile + - Import OpenNSL v3.1.0.17 + - [Config] CONFIG_OPENNSL=y for amd64 + - OpenNSL: Enable Kconfig and build + - SAUCE: opennsl: add proper CFLAGS + * Xenial update to 4.4.83 stable release (LP: #1711557) + - cpuset: fix a deadlock due to incomplete patching of cpusets_enabled() + - mm: ratelimit PFNs busy info message + - iscsi-target: fix memory leak in iscsit_setup_text_cmd() + - iscsi-target: Fix iscsi_np reset hung task during parallel delete + - fuse: initialize the flock flag in fuse_file on allocation + - nfs/flexfiles: fix leak of nfs4_ff_ds_version arrays + - USB: serial: option: add D-Link DWM-222 device ID + - USB: serial: cp210x: add support for Qivicon USB ZigBee dongle + - USB: serial: pl2303: add new ATEN device id + - usb: musb: fix tx fifo flush handling again + - USB: hcd: Mark secondary HCD as dead if the primary one died + - staging:iio:resolver:ad2s1210 fix negative IIO_ANGL_VEL read + - iio: accel: bmc150: Always restore device to normal mode after suspend- + resume + - iio: light: tsl2563: use correct event code + - uas: Add US_FL_IGNORE_RESIDUE for Initio Corporation INIC-3069 + - USB: Check for dropped connection before switching to full speed + - usb: core: unlink urbs from the tail of the endpoint's urb_list + - usb: quirks: Add no-lpm quirk for Moshi USB to Ethernet Adapter + - usb:xhci:Add quirk for Certain failing HP keyboard on reset after resume + - iio: adc: vf610_adc: Fix VALT selection value for REFSEL bits + - pnfs/blocklayout: require 64-bit sector_t + - pinctrl: sunxi: add a missing function of A10/A20 pinctrl driver + - pinctrl: samsung: Remove bogus irq_[un]mask from resource management + - Linux 4.4.83 + * Xenial update to 4.4.82 stable release (LP: #1711535) + - tcp: avoid setting cwnd to invalid ssthresh after cwnd reduction states + - net: fix keepalive code vs TCP_FASTOPEN_CONNECT + - bpf, s390: fix jit branch offset related to ldimm64 + - net: sched: set xt_tgchk_param par.nft_compat as 0 in ipt_init_target + - tcp: fastopen: tcp_connect() must refresh the route + - net: avoid skb_warn_bad_offload false positives on UFO + - sparc64: Prevent perf from running during super critical sections + - KVM: arm/arm64: Handle hva aging while destroying the vm + - mm/mempool: avoid KASAN marking mempool poison checks as use-after-free + - Linux 4.4.82 + * Xenial update to 4.4.81 stable release (LP: #1711526) + - libata: array underflow in ata_find_dev() + - workqueue: restore WQ_UNBOUND/max_active==1 to be ordered + - ALSA: hda - Fix speaker output from VAIO VPCL14M1R + - ASoC: do not close shared backend dailink + - KVM: async_pf: make rcu irq exit if not triggered from idle task + - mm/page_alloc: Remove kernel address exposure in free_reserved_area() + - ext4: fix SEEK_HOLE/SEEK_DATA for blocksize < pagesize + - ext4: fix overflow caused by missing cast in ext4_resize_fs() + - ARM: dts: armada-38x: Fix irq type for pca955 + - media: platform: davinci: return -EINVAL for VPFE_CMD_S_CCDC_RAW_PARAMS + ioctl + - target: Avoid mappedlun symlink creation during lun shutdown + - iscsi-target: Always wait for kthread_should_stop() before kthread exit + - iscsi-target: Fix early sk_data_ready LOGIN_FLAGS_READY race + - iscsi-target: Fix initial login PDU asynchronous socket close OOPs + - iscsi-target: Fix delayed logout processing greater than + SECONDS_FOR_LOGOUT_COMP + - iser-target: Avoid isert_conn->cm_id dereference in isert_login_recv_done + - mm, mprotect: flush TLB if potentially racing with a parallel reclaim + leaving stale TLB entries + - media: lirc: LIRC_GET_REC_RESOLUTION should return microseconds + - f2fs: sanity check checkpoint segno and blkoff + - drm: rcar-du: fix backport bug + - saa7164: fix double fetch PCIe access condition + - ipv4: ipv6: initialize treq->txhash in cookie_v[46]_check() + - net: Zero terminate ifr_name in dev_ifname(). + - ipv6: avoid overflow of offset in ip6_find_1stfragopt + - ipv4: initialize fib_trie prior to register_netdev_notifier call. + - rtnetlink: allocate more memory for dev_set_mac_address() + - mcs7780: Fix initialization when CONFIG_VMAP_STACK is enabled + - openvswitch: fix potential out of bound access in parse_ct + - packet: fix use-after-free in prb_retire_rx_blk_timer_expired() + - ipv6: Don't increase IPSTATS_MIB_FRAGFAILS twice in ip6_fragment() + - net: ethernet: nb8800: Handle all 4 RGMII modes identically + - dccp: fix a memleak that dccp_ipv6 doesn't put reqsk properly + - dccp: fix a memleak that dccp_ipv4 doesn't put reqsk properly + - dccp: fix a memleak for dccp_feat_init err process + - sctp: don't dereference ptr before leaving _sctp_walk_{params, errors}() + - sctp: fix the check for _sctp_walk_params and _sctp_walk_errors + - net/mlx5: Fix command bad flow on command entry allocation failure + - net: phy: Correctly process PHY_HALTED in phy_stop_machine() + - net: phy: Fix PHY unbind crash + - xen-netback: correctly schedule rate-limited queues + - sparc64: Measure receiver forward progress to avoid send mondo timeout + - wext: handle NULL extra data in iwe_stream_add_point better + - sh_eth: R8A7740 supports packet shecksumming + - net: phy: dp83867: fix irq generation + - tg3: Fix race condition in tg3_get_stats64(). + - x86/boot: Add missing declaration of string functions + - phy state machine: failsafe leave invalid RUNNING state + - scsi: qla2xxx: Get mutex lock before checking optrom_state + - drm/virtio: fix framebuffer sparse warning + - virtio_blk: fix panic in initialization error path + - ARM: 8632/1: ftrace: fix syscall name matching + - mm, slab: make sure that KMALLOC_MAX_SIZE will fit into MAX_ORDER + - lib/Kconfig.debug: fix frv build failure + - signal: protect SIGNAL_UNKILLABLE from unintentional clearing. + - mm: don't dereference struct page fields of invalid pages + - workqueue: implicit ordered attribute should be overridable + - Linux 4.4.81 + * Xenial update to 4.4.80 stable release (LP: #1710646) + - af_key: Add lock to key dump + - pstore: Make spinlock per zone instead of global + - powerpc/pseries: Fix of_node_put() underflow during reconfig remove + - crypto: authencesn - Fix digest_null crash + - md/raid5: add thread_group worker async_tx_issue_pending_all + - drm/vmwgfx: Fix gcc-7.1.1 warning + - drm/nouveau/bar/gf100: fix access to upper half of BAR2 + - KVM: PPC: Book3S HV: Context-switch EBB registers properly + - KVM: PPC: Book3S HV: Restore critical SPRs to host values on guest exit + - KVM: PPC: Book3S HV: Reload HTM registers explicitly + - KVM: PPC: Book3S HV: Save/restore host values of debug registers + - Revert "powerpc/numa: Fix percpu allocations to be NUMA aware" + - Staging: comedi: comedi_fops: Avoid orphaned proc entry + - drm/rcar: Nuke preclose hook + - drm: rcar-du: Perform initialization/cleanup at probe/remove time + - drm: rcar-du: Simplify and fix probe error handling + - perf intel-pt: Fix ip compression + - perf intel-pt: Fix last_ip usage + - perf intel-pt: Use FUP always when scanning for an IP + - perf intel-pt: Ensure never to set 'last_ip' when packet 'count' is zero + - xfs: don't BUG() on mixed direct and mapped I/O + - nfc: fdp: fix NULL pointer dereference + - net: phy: Do not perform software reset for Generic PHY + - isdn: Fix a sleep-in-atomic bug + - isdn/i4l: fix buffer overflow + - ath10k: fix null deref on wmi-tlv when trying spectral scan + - wil6210: fix deadlock when using fw_no_recovery option + - mailbox: always wait in mbox_send_message for blocking Tx mode + - mailbox: skip complete wait event if timer expired + - mailbox: handle empty message in tx_tick + - mpt3sas: Don't overreach ioc->reply_post[] during initialization + - kaweth: fix firmware download + - kaweth: fix oops upon failed memory allocation + - sched/cgroup: Move sched_online_group() back into css_online() to fix crash + - PM / Domains: defer dev_pm_domain_set() until genpd->attach_dev succeeds if + present + - RDMA/uverbs: Fix the check for port number + - libnvdimm, btt: fix btt_rw_page not returning errors + - ipmi/watchdog: fix watchdog timeout set on reboot + - v4l: s5c73m3: fix negation operator + - pstore: Allow prz to control need for locking + - pstore: Correctly initialize spinlock and flags + - pstore: Use dynamic spinlock initializer + - net: skb_needs_check() accepts CHECKSUM_NONE for tx + - sched/cputime: Fix prev steal time accouting during CPU hotplug + - xen/blkback: don't free be structure too early + - xen/blkback: don't use xen_blkif_get() in xen-blkback kthread + - tpm: fix a kernel memory leak in tpm-sysfs.c + - tpm: Replace device number bitmap with IDR + - x86/mce/AMD: Make the init code more robust + - r8169: add support for RTL8168 series add-on card. + - ARM: dts: n900: Mark eMMC slot with no-sdio and no-sd flags + - net/mlx4: Remove BUG_ON from ICM allocation routine + - drm/msm: Ensure that the hardware write pointer is valid + - drm/msm: Verify that MSM_SUBMIT_BO_FLAGS are set + - vfio-pci: use 32-bit comparisons for register address for gcc-4.5 + - irqchip/keystone: Fix "scheduling while atomic" on rt + - ASoC: tlv320aic3x: Mark the RESET register as volatile + - spi: dw: Make debugfs name unique between instances + - ASoC: nau8825: fix invalid configuration in Pre-Scalar of FLL + - irqchip/mxs: Enable SKIP_SET_WAKE and MASK_ON_SUSPEND + - openrisc: Add _text symbol to fix ksym build error + - dmaengine: ioatdma: Add Skylake PCI Dev ID + - dmaengine: ioatdma: workaround SKX ioatdma version + - dmaengine: ti-dma-crossbar: Add some 'of_node_put()' in error path. + - ARM64: zynqmp: Fix W=1 dtc 1.4 warnings + - ARM64: zynqmp: Fix i2c node's compatible string + - ARM: s3c2410_defconfig: Fix invalid values for NF_CT_PROTO_* + - ACPI / scan: Prefer devices without _HID/_CID for _ADR matching + - usb: gadget: Fix copy/pasted error message + - Btrfs: adjust outstanding_extents counter properly when dio write is split + - tools lib traceevent: Fix prev/next_prio for deadline tasks + - xfrm: Don't use sk_family for socket policy lookups + - perf tools: Install tools/lib/traceevent plugins with install-bin + - perf symbols: Robustify reading of build-id from sysfs + - video: fbdev: cobalt_lcdfb: Handle return NULL error from devm_ioremap + - vfio-pci: Handle error from pci_iomap + - arm64: mm: fix show_pte KERN_CONT fallout + - nvmem: imx-ocotp: Fix wrong register size + - sh_eth: enable RX descriptor word 0 shift on SH7734 + - ALSA: usb-audio: test EP_FLAG_RUNNING at urb completion + - HID: ignore Petzl USB headlamp + - scsi: fnic: Avoid sending reset to firmware when another reset is in + progress + - scsi: snic: Return error code on memory allocation failure + - ASoC: dpcm: Avoid putting stream state to STOP when FE stream is paused + - Linux 4.4.80 + * Please only recommend or suggest initramfs-tools | linux-initramfs-tool for + kernels able to boot without initramfs (LP: #1700972) + - [Debian] Don't depend on initramfs-tools + + -- Kleber Sacilotto de Souza Tue, 29 Aug 2017 10:43:27 +0200 + +linux-raspi2 (4.4.0-1071.79) xenial; urgency=low + + * linux-raspi2: 4.4.0-1071.79 -proposed tracker (LP: #1709298) + + * Board hangs with 'dtoverlay=vc4-kms-v3d' while writing to /dev/fb0 + (LP: #1708417) + - drm/fb_cma_helper: Implement fb_mmap callback + + * Snapcraft.yaml update (LP: #1700577) + - snapcraft.yaml: various improvements + + [ Ubuntu: 4.4.0-93.116 ] + + * linux: 4.4.0-93.116 -proposed tracker (LP: #1709296) + * Creating conntrack entry failure with kernel 4.4.0-89 (LP: #1709032) + - Revert "Revert "netfilter: synproxy: fix conntrackd interaction"" + - netfilter: nf_ct_ext: fix possible panic after nf_ct_extend_unregister + * CVE-2017-1000112 + - Revert "udp: consistently apply ufo or fragmentation" + - udp: consistently apply ufo or fragmentation + * CVE-2017-1000111 + - Revert "net-packet: fix race in packet_set_ring on PACKET_RESERVE" + - packet: fix tp_reserve race in packet_set_ring + * kernel BUG at [tty_ldisc_reinit] mm/slub.c! (LP: #1709126) + - tty: Simplify tty_set_ldisc() exit handling + - tty: Reset c_line from driver's init_termios + - tty: Handle NULL tty->ldisc + - tty: Move tty_ldisc_kill() + - tty: Use 'disc' for line discipline index name + - tty: Refactor tty_ldisc_reinit() for reuse + - tty: Destroy ldisc instance on hangup + * atheros bt failed after S3 (LP: #1706833) + - SAUCE: Bluetooth: Make request workqueue freezable + * The Precision Touchpad(PTP) button sends incorrect event code (LP: #1708372) + - HID: multitouch: handle external buttons for Precision Touchpads + * Set CONFIG_SATA_HIGHBANK=y on armhf (LP: #1703430) + - [Config] CONFIG_SATA_HIGHBANK=y + * xfs slab objects (memory) leak when xfs shutdown is called (LP: #1706132) + - xfs: fix xfs_log_ticket leak in xfs_end_io() after fs shutdown + * Adt tests of src:linux time out often on armhf lxc containers (LP: #1705495) + - [Packaging] tests -- reduce rebuild test to one flavour + * CVE-2017-7495 + - ext4: fix data exposure after a crash + * ubuntu/rsi driver downlink wifi throughput drops to 5-6 Mbps when BT + keyboard is connected (LP: #1706991) + - SAUCE: Redpine: enable power save by default for coex mode + - SAUCE: Redpine: uapsd configuration changes + * [Hyper-V] hv_netvsc: Exclude non-TCP port numbers from vRSS hashing + (LP: #1690174) + - hv_netvsc: Exclude non-TCP port numbers from vRSS hashing + * ath10k doesn't report full RSSI information (LP: #1706531) + - ath10k: add per chain RSSI reporting + * ideapad_laptop don't support v310-14isk (LP: #1705378) + - platform/x86: ideapad-laptop: Add several models to no_hw_rfkill + * [8087:0a2b] Failed to load bluetooth firmware(might affect some other Intel + bt devices) (LP: #1705633) + - Bluetooth: btintel: Create common Intel Version Read function + - Bluetooth: Use switch statement for Intel hardware variants + - Bluetooth: Replace constant hw_variant from Intel Bluetooth firmware + filename + - Bluetooth: hci_intel: Fix firmware file name to use hw_variant + - Bluetooth: btintel: Add MODULE_FIRMWARE entries for iBT 3.5 controllers + * xhci_hcd: ERROR Transfer event TRB DMA ptr not part of current TD ep_index 2 + comp_code 13 (LP: #1667750) + - xhci: Bad Ethernet performance plugged in ASM1042A host + * OpenPower: Some multipaths temporarily have only a single path + (LP: #1696445) + - scsi: ses: don't get power status of SES device slot on probe + * Hotkeys on new Thinkpad systems aren't working (LP: #1705169) + - platform/x86: thinkpad_acpi: Adding new hotkey ID for Lenovo thinkpad + - platform/x86: thinkpad_acpi: guard generic hotkey case + - platform/x86: thinkpad_acpi: add mapping for new hotkeys + * CVE-2015-7837 + - SAUCE: (no-up) kexec/uefi: copy secure_boot flag in boot params across kexec + reboot + * misleading kernel warning skb_warn_bad_offload during checksum calculation + (LP: #1705447) + - net: reduce skb_warn_bad_offload() noise + * bonding: stack dump when unregistering a netdev (LP: #1704102) + - bonding: avoid NETDEV_CHANGEMTU event when unregistering slave + * Ubuntu 16.04 IOB Error when the Mustang board rebooted (LP: #1693673) + - drivers: net: xgene: Fix redundant prefetch buffer cleanup + * Ubuntu16.04: NVMe 4K+T10 DIF/DIX format returns I/O error on dd with split + op (LP: #1689946) + - blk-mq: NVMe 512B/4K+T10 DIF/DIX format returns I/O error on dd with split + op + * linux >= 4.2: bonding 802.3ad does not work with 5G, 25G and 50G link speeds + (LP: #1697892) + - bonding: add 802.3ad support for 100G speeds + - bonding: fix 802.3ad aggregator reselection + - bonding: add 802.3ad support for 25G speeds + - bonding: fix 802.3ad support for 5G and 50G speeds + * Xenial update to 4.4.79 stable release (LP: #1707233) + - disable new gcc-7.1.1 warnings for now + - ir-core: fix gcc-7 warning on bool arithmetic + - s5p-jpeg: don't return a random width/height + - thermal: cpu_cooling: Avoid accessing potentially freed structures + - ath9k: fix tx99 use after free + - ath9k: fix tx99 bus error + - NFC: fix broken device allocation + - NFC: nfcmrvl_uart: add missing tty-device sanity check + - NFC: nfcmrvl: do not use device-managed resources + - NFC: nfcmrvl: use nfc-device for firmware download + - NFC: nfcmrvl: fix firmware-management initialisation + - nfc: Ensure presence of required attributes in the activate_target handler + - nfc: Fix the sockaddr length sanitization in llcp_sock_connect + - NFC: Add sockaddr length checks before accessing sa_family in bind handlers + - perf intel-pt: Move decoder error setting into one condition + - perf intel-pt: Improve sample timestamp + - perf intel-pt: Fix missing stack clear + - perf intel-pt: Ensure IP is zero when state is INTEL_PT_STATE_NO_IP + - perf intel-pt: Clear FUP flag on error + - Bluetooth: use constant time memory comparison for secret values + - wlcore: fix 64K page support + - ASoC: compress: Derive substream from stream based on direction + - PM / Domains: Fix unsafe iteration over modified list of device links + - PM / Domains: Fix unsafe iteration over modified list of domain providers + - scsi: ses: do not add a device to an enclosure if enclosure_add_links() + fails. + - iscsi-target: Add login_keys_workaround attribute for non RFC initiators + - powerpc/64: Fix atomic64_inc_not_zero() to return an int + - powerpc: Fix emulation of mcrf in emulate_step() + - powerpc: Fix emulation of mfocrf in emulate_step() + - powerpc/asm: Mark cr0 as clobbered in mftb() + - af_key: Fix sadb_x_ipsecrequest parsing + - PCI/PM: Restore the status of PCI devices across hibernation + - ipvs: SNAT packet replies only for NATed connections + - xhci: fix 20000ms port resume timeout + - xhci: Fix NULL pointer dereference when cleaning up streams for removed host + - usb: storage: return on error to avoid a null pointer dereference + - USB: cdc-acm: add device-id for quirky printer + - usb: renesas_usbhs: fix usbhsc_resume() for !USBHSF_RUNTIME_PWCTRL + - usb: renesas_usbhs: gadget: disable all eps when the driver stops + - md: don't use flush_signals in userspace processes + - x86/xen: allow userspace access during hypercalls + - cx88: Fix regression in initial video standard setting + - Raid5 should update rdev->sectors after reshape + - s390/syscalls: Fix out of bounds arguments access + - drm/amd/amdgpu: Return error if initiating read out of range on vram + - drm/radeon/ci: disable mclk switching for high refresh rates (v2) + - drm/radeon: Fix eDP for single-display iMac10,1 (v2) + - ipmi: use rcu lock around call to intf->handlers->sender() + - ipmi:ssif: Add missing unlock in error branch + - f2fs: Don't clear SGID when inheriting ACLs + - vfio: Fix group release deadlock + - vfio: New external user group/file match + - ftrace: Fix uninitialized variable in match_records() + - MIPS: Fix mips_atomic_set() retry condition + - MIPS: Fix mips_atomic_set() with EVA + - MIPS: Negate error syscall return in trace + - x86/acpi: Prevent out of bound access caused by broken ACPI tables + - x86/ioapic: Pass the correct data to unmask_ioapic_irq() + - MIPS: Fix MIPS I ISA /proc/cpuinfo reporting + - MIPS: Save static registers before sysmips + - MIPS: Actually decode JALX in `__compute_return_epc_for_insn' + - MIPS: Fix unaligned PC interpretation in `compute_return_epc' + - MIPS: math-emu: Prevent wrong ISA mode instruction emulation + - MIPS: Send SIGILL for BPOSGE32 in `__compute_return_epc_for_insn' + - MIPS: Rename `sigill_r6' to `sigill_r2r6' in `__compute_return_epc_for_insn' + - MIPS: Send SIGILL for linked branches in `__compute_return_epc_for_insn' + - MIPS: Fix a typo: s/preset/present/ in r2-to-r6 emulation error message + - Input: i8042 - fix crash at boot time + - NFS: only invalidate dentrys that are clearly invalid. + - udf: Fix deadlock between writeback and udf_setsize() + - target: Fix COMPARE_AND_WRITE caw_sem leak during se_cmd quiesce + - perf annotate: Fix broken arrow at row 0 connecting jmp instruction to its + target + - Revert "perf/core: Drop kernel samples even though :u is specified" + - staging: rtl8188eu: add TL-WN722N v2 support + - ceph: fix race in concurrent readdir + - RDMA/core: Initialize port_num in qp_attr + - drm/mst: Fix error handling during MST sideband message reception + - drm/mst: Avoid dereferencing a NULL mstb in drm_dp_mst_handle_up_req() + - drm/mst: Avoid processing partially received up/down message transactions + - of: device: Export of_device_{get_modalias, uvent_modalias} to modules + - spmi: Include OF based modalias in device uevent + - tracing: Fix kmemleak in instance_rmdir + - alarmtimer: don't rate limit one-shot timers + - Linux 4.4.79 + * Xenial update to 4.4.78 stable release (LP: #1705707) + - net_sched: fix error recovery at qdisc creation + - net: sched: Fix one possible panic when no destroy callback + - net/phy: micrel: configure intterupts after autoneg workaround + - ipv6: avoid unregistering inet6_dev for loopback + - net: dp83640: Avoid NULL pointer dereference. + - tcp: reset sk_rx_dst in tcp_disconnect() + - net: prevent sign extension in dev_get_stats() + - bpf: prevent leaking pointer via xadd on unpriviledged + - net: handle NAPI_GRO_FREE_STOLEN_HEAD case also in napi_frags_finish() + - ipv6: dad: don't remove dynamic addresses if link is down + - net: ipv6: Compare lwstate in detecting duplicate nexthops + - vrf: fix bug_on triggered by rx when destroying a vrf + - rds: tcp: use sock_create_lite() to create the accept socket + - brcmfmac: fix possible buffer overflow in brcmf_cfg80211_mgmt_tx() + - cfg80211: Define nla_policy for NL80211_ATTR_LOCAL_MESH_POWER_MODE + - cfg80211: Validate frequencies nested in NL80211_ATTR_SCAN_FREQUENCIES + - cfg80211: Check if PMKID attribute is of expected size + - irqchip/gic-v3: Fix out-of-bound access in gic_set_affinity + - parisc: Report SIGSEGV instead of SIGBUS when running out of stack + - parisc: use compat_sys_keyctl() + - parisc: DMA API: return error instead of BUG_ON for dma ops on non dma devs + - parisc/mm: Ensure IRQs are off in switch_mm() + - tools/lib/lockdep: Reduce MAX_LOCK_DEPTH to avoid overflowing lock_chain/: + Depth + - kernel/extable.c: mark core_kernel_text notrace + - mm/list_lru.c: fix list_lru_count_node() to be race free + - fs/dcache.c: fix spin lockup issue on nlru->lock + - checkpatch: silence perl 5.26.0 unescaped left brace warnings + - binfmt_elf: use ELF_ET_DYN_BASE only for PIE + - arm: move ELF_ET_DYN_BASE to 4MB + - arm64: move ELF_ET_DYN_BASE to 4GB / 4MB + - powerpc: move ELF_ET_DYN_BASE to 4GB / 4MB + - s390: reduce ELF_ET_DYN_BASE + - exec: Limit arg stack to at most 75% of _STK_LIM + - vt: fix unchecked __put_user() in tioclinux ioctls + - mnt: In umount propagation reparent in a separate pass + - mnt: In propgate_umount handle visiting mounts in any order + - mnt: Make propagate_umount less slow for overlapping mount propagation trees + - selftests/capabilities: Fix the test_execve test + - tpm: Get rid of chip->pdev + - tpm: Provide strong locking for device removal + - Add "shutdown" to "struct class". + - tpm: Issue a TPM2_Shutdown for TPM2 devices. + - mm: fix overflow check in expand_upwards() + - crypto: talitos - Extend max key length for SHA384/512-HMAC and AEAD + - crypto: atmel - only treat EBUSY as transient if backlog + - crypto: sha1-ssse3 - Disable avx2 + - crypto: caam - fix signals handling + - sched/topology: Fix overlapping sched_group_mask + - sched/topology: Optimize build_group_mask() + - PM / wakeirq: Convert to SRCU + - PM / QoS: return -EINVAL for bogus strings + - tracing: Use SOFTIRQ_OFFSET for softirq dectection for more accurate results + - KVM: x86: disable MPX if host did not enable MPX XSAVE features + - kvm: vmx: Do not disable intercepts for BNDCFGS + - kvm: x86: Guest BNDCFGS requires guest MPX support + - kvm: vmx: Check value written to IA32_BNDCFGS + - kvm: vmx: allow host to access guest MSR_IA32_BNDCFGS + - Linux 4.4.78 + * Xenial update to 4.4.77 stable release (LP: #1705238) + - fs: add a VALID_OPEN_FLAGS + - fs: completely ignore unknown open flags + - driver core: platform: fix race condition with driver_override + - bgmac: reset & enable Ethernet core before using it + - mm: fix classzone_idx underflow in shrink_zones() + - tracing/kprobes: Allow to create probe with a module name starting with a + digit + - usb: dwc3: replace %p with %pK + - USB: serial: cp210x: add ID for CEL EM3588 USB ZigBee stick + - Add USB quirk for HVR-950q to avoid intermittent device resets + - usb: usbip: set buffer pointers to NULL after free + - usb: Fix typo in the definition of Endpoint[out]Request + - mac80211_hwsim: Replace bogus hrtimer clockid + - sysctl: don't print negative flag for proc_douintvec + - sysctl: report EINVAL if value is larger than UINT_MAX for proc_douintvec + - pinctrl: sh-pfc: r8a7791: Fix SCIF2 pinmux data + - pinctrl: meson: meson8b: fix the NAND DQS pins + - pinctrl: sunxi: Fix SPDIF function name for A83T + - pinctrl: mxs: atomically switch mux and drive strength config + - pinctrl: sh-pfc: Update info pointer after SoC-specific init + - USB: serial: option: add two Longcheer device ids + - USB: serial: qcserial: new Sierra Wireless EM7305 device ID + - gfs2: Fix glock rhashtable rcu bug + - x86/tools: Fix gcc-7 warning in relocs.c + - x86/uaccess: Optimize copy_user_enhanced_fast_string() for short strings + - ath10k: override CE5 config for QCA9377 + - KEYS: Fix an error code in request_master_key() + - RDMA/uverbs: Check port number supplied by user verbs cmds + - mqueue: fix a use-after-free in sys_mq_notify() + - tools include: Add a __fallthrough statement + - tools string: Use __fallthrough in perf_atoll() + - tools strfilter: Use __fallthrough + - perf top: Use __fallthrough + - perf intel-pt: Use __fallthrough + - perf thread_map: Correctly size buffer used with dirent->dt_name + - perf scripting perl: Fix compile error with some perl5 versions + - perf tests: Avoid possible truncation with dirent->d_name + snprintf + - perf bench numa: Avoid possible truncation when using snprintf() + - perf tools: Use readdir() instead of deprecated readdir_r() + - perf thread_map: Use readdir() instead of deprecated readdir_r() + - perf script: Use readdir() instead of deprecated readdir_r() + - perf tools: Remove duplicate const qualifier + - perf annotate browser: Fix behaviour of Shift-Tab with nothing focussed + - perf pmu: Fix misleadingly indented assignment (whitespace) + - perf dwarf: Guard !x86_64 definitions under #ifdef else clause + - perf trace: Do not process PERF_RECORD_LOST twice + - perf tests: Remove wrong semicolon in while loop in CQM test + - perf tools: Use readdir() instead of deprecated readdir_r() again + - md: fix incorrect use of lexx_to_cpu in does_sb_need_changing + - md: fix super_offset endianness in super_1_rdev_size_change + - tcp: fix tcp_mark_head_lost to check skb len before fragmenting + - staging: vt6556: vnt_start Fix missing call to vnt_key_init_table. + - staging: comedi: fix clean-up of comedi_class in comedi_init() + - ext4: check return value of kstrtoull correctly in reserved_clusters_store + - x86/mm/pat: Don't report PAT on CPUs that don't support it + - saa7134: fix warm Medion 7134 EEPROM read + - Linux 4.4.77 + + -- Kleber Sacilotto de Souza Mon, 14 Aug 2017 12:15:04 +0200 + +linux-raspi2 (4.4.0-1070.78) xenial; urgency=low + + * linux-raspi2: 4.4.0-1070.78 -proposed tracker (LP: #1709814) + + [ Ubuntu: 4.4.0-92.115 ] + + * linux: 4.4.0-92.115 -proposed tracker (LP: #1709812) + * Creating conntrack entry failure with kernel 4.4.0-89 (LP: #1709032) + - Revert "netfilter: synproxy: fix conntrackd interaction" + + -- Kleber Sacilotto de Souza Thu, 10 Aug 2017 12:01:06 +0200 + linux-raspi2 (4.4.0-1069.77) xenial; urgency=low [ Ubuntu: 4.4.0-91.114 ] diff -u linux-raspi2-4.4.0/debian.raspi2/config/config.common.ubuntu linux-raspi2-4.4.0/debian.raspi2/config/config.common.ubuntu --- linux-raspi2-4.4.0/debian.raspi2/config/config.common.ubuntu +++ linux-raspi2-4.4.0/debian.raspi2/config/config.common.ubuntu @@ -3244,6 +3244,7 @@ CONFIG_NET_CORE=y CONFIG_NET_DCCPPROBE=m CONFIG_NET_DROP_MONITOR=m +# CONFIG_NET_DSA is not set # CONFIG_NET_DSA_MV88E6XXX is not set # CONFIG_NET_DSA_MV88E6XXX_NEED_PPU is not set CONFIG_NET_EMATCH=y @@ -3601,6 +3602,7 @@ CONFIG_OLD_SIGACTION=y CONFIG_OLD_SIGSUSPEND3=y CONFIG_OMFS_FS=m +# CONFIG_OPENNSL is not set CONFIG_OPENVSWITCH=m CONFIG_OPENVSWITCH_GENEVE=m CONFIG_OPENVSWITCH_GRE=m diff -u linux-raspi2-4.4.0/debian/changelog linux-raspi2-4.4.0/debian/changelog --- linux-raspi2-4.4.0/debian/changelog +++ linux-raspi2-4.4.0/debian/changelog @@ -1,3 +1,1483 @@ +linux-raspi2 (4.4.0-1082.90) xenial; urgency=low + + * linux-raspi2: 4.4.0-1082.90 -proposed tracker (LP: #1741652) + + [ Ubuntu: 4.4.0-107.130 ] + + * linux: 4.4.0-107.130 -proposed tracker (LP: #1741643) + * CVE-2017-5754 + - Revert "UBUNTU: SAUCE: arch/x86/entry/vdso: temporarily disable vdso" + - KPTI: Report when enabled + - x86, vdso, pvclock: Simplify and speed up the vdso pvclock reader + - x86/vdso: Get pvclock data from the vvar VMA instead of the fixmap + - x86/kasan: Clear kasan_zero_page after TLB flush + - kaiser: Set _PAGE_NX only if supported + + [ Ubuntu: 4.4.0-106.129 ] + + * linux: 4.4.0-106.129 -proposed tracker (LP: #1741528) + * CVE-2017-5754 + - KAISER: Kernel Address Isolation + - kaiser: merged update + - kaiser: do not set _PAGE_NX on pgd_none + - kaiser: stack map PAGE_SIZE at THREAD_SIZE-PAGE_SIZE + - kaiser: fix build and FIXME in alloc_ldt_struct() + - kaiser: KAISER depends on SMP + - kaiser: fix regs to do_nmi() ifndef CONFIG_KAISER + - kaiser: fix perf crashes + - kaiser: ENOMEM if kaiser_pagetable_walk() NULL + - kaiser: tidied up asm/kaiser.h somewhat + - kaiser: tidied up kaiser_add/remove_mapping slightly + - kaiser: kaiser_remove_mapping() move along the pgd + - kaiser: cleanups while trying for gold link + - kaiser: name that 0x1000 KAISER_SHADOW_PGD_OFFSET + - kaiser: delete KAISER_REAL_SWITCH option + - kaiser: vmstat show NR_KAISERTABLE as nr_overhead + - x86/mm: Enable CR4.PCIDE on supported systems + - x86/mm: Build arch/x86/mm/tlb.c even on !SMP + - x86/mm, sched/core: Uninline switch_mm() + - x86/mm: Add INVPCID helpers + - x86/mm: If INVPCID is available, use it to flush global mappings + - kaiser: enhanced by kernel and user PCIDs + - kaiser: load_new_mm_cr3() let SWITCH_USER_CR3 flush user + - kaiser: PCID 0 for kernel and 128 for user + - kaiser: x86_cr3_pcid_noflush and x86_cr3_pcid_user + - kaiser: paranoid_entry pass cr3 need to paranoid_exit + - kaiser: _pgd_alloc() without __GFP_REPEAT to avoid stalls + - kaiser: fix unlikely error in alloc_ldt_struct() + - kaiser: add "nokaiser" boot option, using ALTERNATIVE + - x86/kaiser: Rename and simplify X86_FEATURE_KAISER handling + - x86/boot: Add early cmdline parsing for options with arguments + - x86/kaiser: Check boottime cmdline params + - kaiser: use ALTERNATIVE instead of x86_cr3_pcid_noflush + - kaiser: drop is_atomic arg to kaiser_pagetable_walk() + - kaiser: asm/tlbflush.h handle noPGE at lower level + - kaiser: kaiser_flush_tlb_on_return_to_user() check PCID + - x86/paravirt: Dont patch flush_tlb_single + - x86/kaiser: Reenable PARAVIRT + - kaiser: disabled on Xen PV + - x86/kaiser: Move feature detection up + - kvm: x86: fix RSM when PCID is non-zero + - SAUCE: arch/x86/entry/vdso: temporarily disable vdso + - [Config]: CONFIG_KAISER=y + + -- Kleber Sacilotto de Souza Sun, 07 Jan 2018 12:06:25 +0100 + +linux-raspi2 (4.4.0-1080.88) xenial; urgency=low + + * linux-raspi2: 4.4.0-1080.88 -proposed tracker (LP: #1737519) + + [ Ubuntu: 4.4.0-104.127 ] + + * linux: 4.4.0-104.127 -proposed tracker (LP: #1737511) + * upgrading linux-image package to 4.4.0-103.126 breaks Ceph network file + system connection (LP: #1737033) + - Revert "libceph: MOSDOpReply v7 encoding" + - Revert "libceph: advertise support for TUNABLES5" + - Revert "crush: decode and initialize chooseleaf_stable" + - Revert "crush: add chooseleaf_stable tunable" + - Revert "crush: ensure take bucket value is valid" + - Revert "crush: ensure bucket id is valid before indexing buckets array" + + -- Kleber Sacilotto de Souza Mon, 11 Dec 2017 13:49:17 +0100 + +linux-raspi2 (4.4.0-1079.87) xenial; urgency=low + + * linux-raspi2: 4.4.0-1079.87 -proposed tracker (LP: #1736185) + + [ Ubuntu: 4.4.0-103.126 ] + + * linux: 4.4.0-103.126 -proposed tracker (LP: #1736181) + * CVE-2017-1000405 + - mm, thp: Do not make page table dirty unconditionally in touch_p[mu]d() + * CVE-2017-16939 + - netlink: add a start callback for starting a netlink dump + - ipsec: Fix aborted xfrm policy dump crash + + -- Stefan Bader Mon, 04 Dec 2017 17:25:00 +0100 + +linux-raspi2 (4.4.0-1078.86) xenial; urgency=low + + * linux-raspi2: 4.4.0-1078.86 -proposed tracker (LP: #1733547) + + * Update config with NET_DSA=n as required by changes in + upstream stable update to 4.4.98 (LP: #1732698) + + [ Ubuntu: 4.4.0-102.125 ] + + * linux: 4.4.0-102.125 -proposed tracker (LP: #1733541) + * tar -x sometimes fails on overlayfs (LP: #1728489) + - ovl: check if all layers are on the same fs + - ovl: persistent inode number for directories + * NVMe timeout is too short (LP: #1729119) + - nvme: update timeout module parameter type + * Set PANIC_TIMEOUT=10 on Power Systems (LP: #1730660) + - [Config]: Set PANIC_TIMEOUT=10 on ppc64el + * Cannot pair BLE remote devices when using combo BT SoC (LP: #1731467) + - Bluetooth: increase timeout for le auto connections + * CIFS errors on 4.4.0-98, but not on 4.4.0-97 with same config (LP: #1729337) + - SMB3: Validate negotiate request must always be signed + * Plantronics P610 does not support sample rate reading (LP: #1719853) + - ALSA: usb-audio: Add sample rate quirk for Plantronics P610 + * Invalid btree pointer causes the kernel NULL pointer dereference + (LP: #1729256) + - xfs: reinit btree pointer on attr tree inactivation walk + * Samba mount/umount in docker container triggers kernel Oops (LP: #1729637) + - ipv6: only call ip6_route_dev_notify() once for NETDEV_UNREGISTER + - ipv6: fix NULL dereference in ip6_route_dev_notify() + * [kernel] tty/hvc: Use opal irqchip interface if available (LP: #1728098) + - tty/hvc: Use opal irqchip interface if available + * Device hotplugging with MPT SAS cannot work for VMWare ESXi (LP: #1730852) + - scsi: mptsas: Fixup device hotplug for VMWare ESXi + * NMI watchdog: BUG: soft lockup on Guest upon boot (KVM) (LP: #1727331) + - KVM: PPC: Book3S: Treat VTB as a per-subcore register, not per-thread + * Attempt to map rbd image from ceph jewel/luminous hangs (LP: #1728739) + - crush: ensure bucket id is valid before indexing buckets array + - crush: ensure take bucket value is valid + - crush: add chooseleaf_stable tunable + - crush: decode and initialize chooseleaf_stable + - libceph: advertise support for TUNABLES5 + - libceph: MOSDOpReply v7 encoding + * Xenial update to 4.4.98 stable release (LP: #1732698) + - adv7604: Initialize drive strength to default when using DT + - video: fbdev: pmag-ba-fb: Remove bad `__init' annotation + - PCI: mvebu: Handle changes to the bridge windows while enabled + - xen/netback: set default upper limit of tx/rx queues to 8 + - drm: drm_minor_register(): Clean up debugfs on failure + - KVM: PPC: Book 3S: XICS: correct the real mode ICP rejecting counter + - iommu/arm-smmu-v3: Clear prior settings when updating STEs + - powerpc/corenet: explicitly disable the SDHC controller on kmcoge4 + - ARM: omap2plus_defconfig: Fix probe errors on UARTs 5 and 6 + - crypto: vmx - disable preemption to enable vsx in aes_ctr.c + - iio: trigger: free trigger resource correctly + - phy: increase size of MII_BUS_ID_SIZE and bus_id + - serial: sh-sci: Fix register offsets for the IRDA serial port + - usb: hcd: initialize hcd->flags to 0 when rm hcd + - netfilter: nft_meta: deal with PACKET_LOOPBACK in netdev family + - IPsec: do not ignore crypto err in ah4 input + - Input: mpr121 - handle multiple bits change of status register + - Input: mpr121 - set missing event capability + - IB/ipoib: Change list_del to list_del_init in the tx object + - s390/qeth: issue STARTLAN as first IPA command + - (config) Add NET_DSA=n + - net: dsa: select NET_SWITCHDEV + - platform/x86: hp-wmi: Fix detection for dock and tablet mode + - cdc_ncm: Set NTB format again after altsetting switch for Huawei devices + - KEYS: trusted: sanitize all key material + - KEYS: trusted: fix writing past end of buffer in trusted_read() + - platform/x86: hp-wmi: Fix error value for hp_wmi_tablet_state + - platform/x86: hp-wmi: Do not shadow error values + - x86/uaccess, sched/preempt: Verify access_ok() context + - workqueue: Fix NULL pointer dereference + - crypto: x86/sha1-mb - fix panic due to unaligned access + - KEYS: fix NULL pointer dereference during ASN.1 parsing [ver #2] + - ARM: 8720/1: ensure dump_instr() checks addr_limit + - ALSA: seq: Fix OSS sysex delivery in OSS emulation + - ALSA: seq: Avoid invalid lockdep class warning + - MIPS: microMIPS: Fix incorrect mask in insn_table_MM + - MIPS: Fix CM region target definitions + - MIPS: SMP: Use a completion event to signal CPU up + - MIPS: Fix race on setting and getting cpu_online_mask + - MIPS: SMP: Fix deadlock & online race + - test: firmware_class: report errors properly on failure + - selftests: firmware: add empty string and async tests + - selftests: firmware: send expected errors to /dev/null + - tools: firmware: check for distro fallback udev cancel rule + - MIPS: AR7: Defer registration of GPIO + - MIPS: AR7: Ensure that serial ports are properly set up + - Input: elan_i2c - add ELAN060C to the ACPI table + - drm/vmwgfx: Fix Ubuntu 17.10 Wayland black screen issue + - rbd: use GFP_NOIO for parent stat and data requests + - can: sun4i: handle overrun in RX FIFO + - can: c_can: don't indicate triple sampling support for D_CAN + - x86/oprofile/ppro: Do not use __this_cpu*() in preemptible context + - PKCS#7: fix unitialized boolean 'want' + - Linux 4.4.98 + * ELANTECH Touchpad is not detected in 'Lenovo Ideapad 320 14AST' after fresh + install (LP: #1727544) + - Input: elan_i2c - add ELAN060C to the ACPI table + * Xenial update to 4.4.97 stable release (LP: #1731915) + - ALSA: timer: Add missing mutex lock for compat ioctls + - ALSA: seq: Fix nested rwsem annotation for lockdep splat + - cifs: check MaxPathNameComponentLength != 0 before using it + - KEYS: return full count in keyring_read() if buffer is too small + - KEYS: fix out-of-bounds read during ASN.1 parsing + - ASoC: adau17x1: Workaround for noise bug in ADC + - arm64: ensure __dump_instr() checks addr_limit + - ARM: dts: mvebu: pl310-cache disable double-linefill + - ARM: 8715/1: add a private asm/unaligned.h + - ocfs2: fstrim: Fix start offset of first cluster group during fstrim + - perf tools: Fix build failure on perl script context + - drm/msm: Fix potential buffer overflow issue + - drm/msm: fix an integer overflow test + - tracing/samples: Fix creation and deletion of simple_thread_fn creation + - Fix tracing sample code warning. + - PM / wakeirq: report a wakeup_event on dedicated wekup irq + - mmc: s3cmci: include linux/interrupt.h for tasklet_struct + - ARM: pxa: Don't rely on public mmc header to include leds.h + - mfd: ab8500-sysctrl: Handle probe deferral + - mfd: axp20x: Fix axp288 PEK_DBR and PEK_DBF irqs being swapped + - staging: rtl8712u: Fix endian settings for structs describing network + packets + - ext4: fix stripe-unaligned allocations + - ext4: do not use stripe_width if it is not set + - i2c: riic: correctly finish transfers + - drm/amdgpu: when dpm disabled, also need to stop/start vce. + - perf tools: Only increase index if perf_evsel__new_idx() succeeds + - cx231xx: Fix I2C on Internal Master 3 Bus + - xen/manage: correct return value check on xenbus_scanf() + - scsi: aacraid: Process Error for response I/O + - platform/x86: intel_mid_thermal: Fix module autoload + - staging: lustre: llite: don't invoke direct_IO for the EOF case + - staging: lustre: hsm: stack overrun in hai_dump_data_field + - staging: lustre: ptlrpc: skip lock if export failed + - exynos4-is: fimc-is: Unmap region obtained by of_iomap() + - mei: return error on notification request to a disconnected client + - s390/dasd: check for device error pointer within state change interrupts + - bt8xx: fix memory leak + - xen: don't print error message in case of missing Xenstore entry + - staging: r8712u: Fix Sparse warning in rtl871x_xmit.c + - Linux 4.4.97 + * Xenial update to 4.4.96 stable release (LP: #1731882) + - workqueue: replace pool->manager_arb mutex with a flag + - ALSA: hda/realtek - Add support for ALC236/ALC3204 + - ALSA: hda - fix headset mic problem for Dell machines with alc236 + - ceph: unlock dangling spinlock in try_flush_caps() + - usb: xhci: Handle error condition in xhci_stop_device() + - spi: uapi: spidev: add missing ioctl header + - fuse: fix READDIRPLUS skipping an entry + - xen/gntdev: avoid out of bounds access in case of partial gntdev_mmap() + - Input: elan_i2c - add ELAN0611 to the ACPI table + - Input: gtco - fix potential out-of-bound access + - assoc_array: Fix a buggy node-splitting case + - scsi: zfcp: fix erp_action use-before-initialize in REC action trace + - scsi: sg: Re-fix off by one in sg_fill_request_table() + - can: sun4i: fix loopback mode + - can: kvaser_usb: Correct return value in printout + - can: kvaser_usb: Ignore CMD_FLUSH_QUEUE_REPLY messages + - regulator: fan53555: fix I2C device ids + - x86/microcode/intel: Disable late loading on model 79 + - ecryptfs: fix dereference of NULL user_key_payload + - Revert "drm: bridge: add DT bindings for TI ths8135" + - Linux 4.4.96 + * Touchpad not detected - Lenovo ideapad 320-15IKB (LP: #1723736) + - Input: elan_i2c - add ELAN0611 to the ACPI table + + [ Ubuntu: 4.4.0-101.124 ] + + * linux: 4.4.0-101.124 -proposed tracker (LP: #1731264) + * s390/mm: fix write access check in gup_huge_pmd() (LP: #1730596) + - s390/mm: fix write access check in gup_huge_pmd() + + -- Stefan Bader Wed, 22 Nov 2017 14:31:56 +0100 + +linux-raspi2 (4.4.0-1077.85) xenial; urgency=low + + * linux-raspi2: 4.4.0-1077.85 -proposed tracker (LP: #1729278) + + [ Ubuntu: 4.4.0-100.123 ] + + * linux: 4.4.0-100.123 -proposed tracker (LP: #1729273) + * Xenial update to 4.4.95 stable release (LP: #1729107) + - USB: devio: Revert "USB: devio: Don't corrupt user memory" + - USB: core: fix out-of-bounds access bug in usb_get_bos_descriptor() + - USB: serial: metro-usb: add MS7820 device id + - usb: cdc_acm: Add quirk for Elatec TWN3 + - usb: quirks: add quirk for WORLDE MINI MIDI keyboard + - usb: hub: Allow reset retry for USB2 devices on connect bounce + - ALSA: usb-audio: Add native DSD support for Pro-Ject Pre Box S2 Digital + - can: gs_usb: fix busy loop if no more TX context is available + - usb: musb: sunxi: Explicitly release USB PHY on exit + - usb: musb: Check for host-mode using is_host_active() on reset interrupt + - can: esd_usb2: Fix can_dlc value for received RTR, frames + - drm/nouveau/bsp/g92: disable by default + - drm/nouveau/mmu: flush tlbs before deleting page tables + - ALSA: seq: Enable 'use' locking in all configurations + - ALSA: hda: Remove superfluous '-' added by printk conversion + - i2c: ismt: Separate I2C block read from SMBus block read + - brcmsmac: make some local variables 'static const' to reduce stack size + - bus: mbus: fix window size calculation for 4GB windows + - clockevents/drivers/cs5535: Improve resilience to spurious interrupts + - rtlwifi: rtl8821ae: Fix connection lost problem + - KEYS: encrypted: fix dereference of NULL user_key_payload + - lib/digsig: fix dereference of NULL user_key_payload + - KEYS: don't let add_key() update an uninstantiated key + - pkcs7: Prevent NULL pointer dereference, since sinfo is not always set. + - parisc: Avoid trashing sr2 and sr3 in LWS code + - parisc: Fix double-word compare and exchange in LWS code on 32-bit kernels + - sched/autogroup: Fix autogroup_move_group() to never skip sched_move_task() + - f2fs crypto: replace some BUG_ON()'s with error checks + - f2fs crypto: add missing locking for keyring_key access + - fscrypt: fix dereference of NULL user_key_payload + - KEYS: Fix race between updating and finding a negative key + - fscrypto: require write access to mount to set encryption policy + - FS-Cache: fix dereference of NULL user_key_payload + - Linux 4.4.95 + * Xenial update to 4.4.94 stable release (LP: #1729105) + - percpu: make this_cpu_generic_read() atomic w.r.t. interrupts + - drm/dp/mst: save vcpi with payloads + - MIPS: Fix minimum alignment requirement of IRQ stack + - sctp: potential read out of bounds in sctp_ulpevent_type_enabled() + - bpf/verifier: reject BPF_ALU64|BPF_END + - udpv6: Fix the checksum computation when HW checksum does not apply + - ip6_gre: skb_push ipv6hdr before packing the header in ip6gre_header + - net: emac: Fix napi poll list corruption + - packet: hold bind lock when rebinding to fanout hook + - bpf: one perf event close won't free bpf program attached by another perf + event + - isdn/i4l: fetch the ppp_write buffer in one shot + - vti: fix use after free in vti_tunnel_xmit/vti6_tnl_xmit + - l2tp: Avoid schedule while atomic in exit_net + - l2tp: fix race condition in l2tp_tunnel_delete + - tun: bail out from tun_get_user() if the skb is empty + - packet: in packet_do_bind, test fanout with bind_lock held + - packet: only test po->has_vnet_hdr once in packet_snd + - net: Set sk_prot_creator when cloning sockets to the right proto + - tipc: use only positive error codes in messages + - Revert "bsg-lib: don't free job in bsg_prepare_job" + - locking/lockdep: Add nest_lock integrity test + - watchdog: kempld: fix gcc-4.3 build + - irqchip/crossbar: Fix incorrect type of local variables + - mac80211_hwsim: check HWSIM_ATTR_RADIO_NAME length + - mac80211: fix power saving clients handling in iwlwifi + - net/mlx4_en: fix overflow in mlx4_en_init_timestamp() + - netfilter: nf_ct_expect: Change __nf_ct_expect_check() return value. + - iio: adc: xilinx: Fix error handling + - Btrfs: send, fix failure to rename top level inode due to name collision + - f2fs: do not wait for writeback in write_begin + - md/linear: shutup lockdep warnning + - sparc64: Migrate hvcons irq to panicked cpu + - net/mlx4_core: Fix VF overwrite of module param which disables DMFS on new + probed PFs + - crypto: xts - Add ECB dependency + - ocfs2/dlmglue: prepare tracking logic to avoid recursive cluster lock + - slub: do not merge cache if slub_debug contains a never-merge flag + - scsi: scsi_dh_emc: return success in clariion_std_inquiry() + - net: mvpp2: release reference to txq_cpu[] entry after unmapping + - i2c: at91: ensure state is restored after suspending + - ceph: clean up unsafe d_parent accesses in build_dentry_path + - uapi: fix linux/rds.h userspace compilation errors + - uapi: fix linux/mroute6.h userspace compilation errors + - target/iscsi: Fix unsolicited data seq_end_offset calculation + - nfsd/callback: Cleanup callback cred on shutdown + - cpufreq: CPPC: add ACPI_PROCESSOR dependency + - Revert "tty: goldfish: Fix a parameter of a call to free_irq" + - Linux 4.4.94 + + [ Ubuntu: 4.4.0-99.122 ] + + * linux: 4.4.0-99.122 -proposed tracker (LP: #1728945) + * Remove vmbus-rdma driver from Xenial kernel (LP: #1721538) + - SAUCE: remove hv_network_direct driver + - [Config]: Remove hv_network_direct driver + * usb 3-1: 2:1: cannot get freq at ep 0x1 (LP: #1708499) + - ALSA: usb-audio: Add sample rate quirk for Plantronics C310/C520-M + * Plantronics Blackwire C520-M - Cannot get freq at ep 0x1, 0x81 + (LP: #1709282) + - ALSA: usb-audio: Add sample rate quirk for Plantronics C310/C520-M + * wait-for-root fails to detect nbd root (LP: #696435) + - nbd: Create size change events for userspace + * Fix OpenNSL GPL bugs found by CoverityScan static analysis (LP: #1718388) + - SAUCE: opennsl: bcm-knet: check for null sinfo to avoid a null pointer + dereference + - SAUCE: opennsl: bcm-knet: remove redundant null checks on dev->name + - SAUCE: opennsl: bde: check for out-of-bounds index io.dev + * HID: multitouch: Correct ALPS PTP Stick and Touchpad devices ID + (LP: #1722719) + - Revert "HID: multitouch: Support ALPS PTP stick with pid 0x120A" + * Xenial update to 4.4.93 stable release (LP: #1724836) + - brcmfmac: add length check in brcmf_cfg80211_escan_handler() + - ext4: in ext4_seek_{hole,data}, return -ENXIO for negative offsets + - CIFS: Reconnect expired SMB sessions + - nl80211: Define policy for packet pattern attributes + - iwlwifi: mvm: use IWL_HCMD_NOCOPY for MCAST_FILTER_CMD + - rcu: Allow for page faults in NMI handlers + - USB: dummy-hcd: Fix deadlock caused by disconnect detection + - MIPS: math-emu: Remove pr_err() calls from fpu_emu() + - dmaengine: edma: Align the memcpy acnt array size with the transfer + - HID: usbhid: fix out-of-bounds bug + - crypto: shash - Fix zero-length shash ahash digest crash + - KVM: nVMX: fix guest CR4 loading when emulating L2 to L1 exit + - usb: renesas_usbhs: Fix DMAC sequence for receiving zero-length packet + - iommu/amd: Finish TLB flush in amd_iommu_unmap() + - ALSA: usb-audio: Kill stray URB at exiting + - ALSA: seq: Fix use-after-free at creating a port + - ALSA: seq: Fix copy_from_user() call inside lock + - ALSA: caiaq: Fix stray URB at probe error path + - ALSA: line6: Fix leftover URB at error-path during probe + - usb: gadget: composite: Fix use-after-free in + usb_composite_overwrite_options + - direct-io: Prevent NULL pointer access in submit_page_section + - fix unbalanced page refcounting in bio_map_user_iov + - USB: serial: ftdi_sio: add id for Cypress WICED dev board + - USB: serial: cp210x: add support for ELV TFD500 + - USB: serial: option: add support for TP-Link LTE module + - Revert "UBUNTU: SAUCE: USB: serial: qcserial: add Dell DW5818, DW5819" + - USB: serial: qcserial: add Dell DW5818, DW5819 + - USB: serial: console: fix use-after-free after failed setup + - x86/alternatives: Fix alt_max_short macro to really be a max() + - Linux 4.4.93 + * NULL pointer dereference in tty_write() in kernel 4.4.0-93.116+ + (LP: #1721065) + - tty: Prepare for destroying line discipline on hangup + * Xenial update to 4.4.92 stable release (LP: #1724783) + - usb: gadget: inode.c: fix unbalanced spin_lock in ep0_write + - USB: gadgetfs: Fix crash caused by inadequate synchronization + - USB: gadgetfs: fix copy_to_user while holding spinlock + - usb: gadget: udc: atmel: set vbus irqflags explicitly + - usb-storage: unusual_devs entry to fix write-access regression for Seagate + external drives + - usb: renesas_usbhs: fix the BCLR setting condition for non-DCP pipe + - usb: renesas_usbhs: fix usbhsf_fifo_clear() for RX direction + - ALSA: usb-audio: Check out-of-bounds access by corrupted buffer descriptor + - usb: pci-quirks.c: Corrected timeout values used in handshake + - USB: dummy-hcd: fix connection failures (wrong speed) + - USB: dummy-hcd: fix infinite-loop resubmission bug + - USB: dummy-hcd: Fix erroneous synchronization change + - USB: devio: Don't corrupt user memory + - usb: gadget: mass_storage: set msg_registered after msg registered + - USB: g_mass_storage: Fix deadlock when driver is unbound + - lsm: fix smack_inode_removexattr and xattr_getsecurity memleak + - ALSA: compress: Remove unused variable + - ALSA: usx2y: Suppress kernel warning at page allocation failures + - driver core: platform: Don't read past the end of "driver_override" buffer + - Drivers: hv: fcopy: restore correct transfer length + - stm class: Fix a use-after-free + - ftrace: Fix kmemleak in unregister_ftrace_graph + - HID: i2c-hid: allocate hid buffers for real worst case + - iwlwifi: add workaround to disable wide channels in 5GHz + - scsi: sd: Do not override max_sectors_kb sysfs setting + - USB: uas: fix bug in handling of alternate settings + - USB: core: harden cdc_parse_cdc_header + - usb: Increase quirk delay for USB devices + - USB: fix out-of-bounds in usb_set_configuration + - xhci: fix finding correct bus_state structure for USB 3.1 hosts + - iio: adc: twl4030: Fix an error handling path in 'twl4030_madc_probe()' + - iio: adc: twl4030: Disable the vusb3v1 rugulator in the error handling path + of 'twl4030_madc_probe()' + - iio: ad_sigma_delta: Implement a dedicated reset function + - staging: iio: ad7192: Fix - use the dedicated reset function avoiding dma + from stack. + - iio: core: Return error for failed read_reg + - iio: ad7793: Fix the serial interface reset + - iio: adc: mcp320x: Fix readout of negative voltages + - iio: adc: mcp320x: Fix oops on module unload + - uwb: properly check kthread_run return value + - uwb: ensure that endpoint is interrupt + - brcmfmac: setup passive scan if requested by user-space + - drm/i915/bios: ignore HDMI on port A + - sched/cpuset/pm: Fix cpuset vs. suspend-resume bugs + - ext4: fix data corruption for mmap writes + - ext4: Don't clear SGID when inheriting ACLs + - ext4: don't allow encrypted operations without keys + - Linux 4.4.92 + * Xenial update to 4.4.91 stable release (LP: #1724772) + - drm_fourcc: Fix DRM_FORMAT_MOD_LINEAR #define + - drm: bridge: add DT bindings for TI ths8135 + - GFS2: Fix reference to ERR_PTR in gfs2_glock_iter_next + - RDS: RDMA: Fix the composite message user notification + - ARM: dts: r8a7790: Use R-Car Gen 2 fallback binding for msiof nodes + - MIPS: Ensure bss section ends on a long-aligned address + - MIPS: ralink: Fix incorrect assignment on ralink_soc + - igb: re-assign hw address pointer on reset after PCI error + - extcon: axp288: Use vbus-valid instead of -present to determine cable + presence + - sh_eth: use correct name for ECMR_MPDE bit + - hwmon: (gl520sm) Fix overflows and crash seen when writing into limit + attributes + - iio: adc: axp288: Drop bogus AXP288_ADC_TS_PIN_CTRL register modifications + - iio: adc: hx711: Add DT binding for avia,hx711 + - ARM: 8635/1: nommu: allow enabling REMAP_VECTORS_TO_RAM + - tty: goldfish: Fix a parameter of a call to free_irq + - IB/ipoib: Fix deadlock over vlan_mutex + - IB/ipoib: rtnl_unlock can not come after free_netdev + - IB/ipoib: Replace list_del of the neigh->list with list_del_init + - drm/amdkfd: fix improper return value on error + - USB: serial: mos7720: fix control-message error handling + - USB: serial: mos7840: fix control-message error handling + - partitions/efi: Fix integer overflow in GPT size calculation + - ASoC: dapm: handle probe deferrals + - audit: log 32-bit socketcalls + - usb: chipidea: vbus event may exist before starting gadget + - ASoC: dapm: fix some pointer error handling + - MIPS: Lantiq: Fix another request_mem_region() return code check + - net: core: Prevent from dereferencing null pointer when releasing SKB + - net/packet: check length in getsockopt() called with PACKET_HDRLEN + - team: fix memory leaks + - usb: plusb: Add support for PL-27A1 + - mmc: sdio: fix alignment issue in struct sdio_func + - bridge: netlink: register netdevice before executing changelink + - netfilter: invoke synchronize_rcu after set the _hook_ to NULL + - MIPS: IRQ Stack: Unwind IRQ stack onto task stack + - exynos-gsc: Do not swap cb/cr for semi planar formats + - netfilter: nfnl_cthelper: fix incorrect helper->expect_class_max + - parisc: perf: Fix potential NULL pointer dereference + - iommu/io-pgtable-arm: Check for leaf entry before dereferencing it + - rds: ib: add error handle + - md/raid10: submit bio directly to replacement disk + - i2c: meson: fix wrong variable usage in meson_i2c_put_data + - xfs: remove kmem_zalloc_greedy + - libata: transport: Remove circular dependency at free time + - drivers: firmware: psci: drop duplicate const from psci_of_match + - IB/qib: fix false-postive maybe-uninitialized warning + - ARM: remove duplicate 'const' annotations' + - ALSA: au88x0: avoid theoretical uninitialized access + - ttpci: address stringop overflow warning + - Linux 4.4.91 + + -- Thadeu Lima de Souza Cascardo Thu, 02 Nov 2017 13:55:24 -0200 + +linux-raspi2 (4.4.0-1076.84) xenial; urgency=low + + * linux-raspi2: 4.4.0-1076.84 -proposed tracker (LP: #1722303) + + * snapcraft.yaml: add dpkg-dev to the build deps (LP: #1718886) + - snapcraft.yaml: add dpkg-dev to the build deps + + [ Ubuntu: 4.4.0-98.121 ] + + * linux: 4.4.0-98.121 -proposed tracker (LP: #1722299) + * Controller lockup detected on ProLiant DL380 Gen9 with P440 Controller + (LP: #1720359) + - scsi: hpsa: limit transfer length to 1MB + * [Dell Docking IE][0bda:8153] Realtek USB Ethernet leads to system hang + (LP: #1720977) + - r8152: fix the list rx_done may be used without initialization + * Add installer support for Broadcom BCM573xx network drivers. (LP: #1720466) + - d-i: Add bnxt_en to nic-modules. + * snapcraft.yaml: add dpkg-dev to the build deps (LP: #1718886) + - snapcraft.yaml: add dpkg-dev to the build deps + * Support setting I2C_TIMEOUT via ioctl for i2c-designware (LP: #1718578) + - i2c: designware: Use transfer timeout from ioctl I2C_TIMEOUT + * 5U84 - ses driver isn't binding right - cannot blink lights on 1 of the 2 + 5u84 (LP: #1693369) + - scsi_transport_sas: add function to get SAS endpoint address + - ses: fix discovery of SATA devices in SAS enclosures + - scsi: sas: provide stub implementation for scsi_is_sas_rphy + - scsi: ses: Fix SAS device detection in enclosure + * multipath -ll is not showing the disks which are actually multipath + (LP: #1718397) + - fs: aio: fix the increment of aio-nr and counting against aio-max-nr + * Support Dell Wireless DW5819/5818 WWAN devices (LP: #1721455) + - SAUCE: USB: serial: qcserial: add Dell DW5818, DW5819 + * CVE-2017-10911 + - xen-blkback: don't leak stack data via response ring + * implement 'complain mode' in seccomp for developer mode with snaps + (LP: #1567597) + - seccomp: Provide matching filter for introspection + - seccomp: Sysctl to display available actions + - seccomp: Operation for checking if an action is available + - seccomp: Sysctl to configure actions that are allowed to be logged + - seccomp: Selftest for detection of filter flag support + - seccomp: Action to log before allowing + * implement errno action logging in seccomp for strict mode with snaps + (LP: #1721676) + - seccomp: Provide matching filter for introspection + - seccomp: Sysctl to display available actions + - seccomp: Operation for checking if an action is available + - seccomp: Sysctl to configure actions that are allowed to be logged + - seccomp: Selftest for detection of filter flag support + - seccomp: Filter flag to log all actions except SECCOMP_RET_ALLOW + * [Xenial] update OpenNSL kernel modules to 6.5.10 (LP: #1721511) + - SAUCE: update OpenNSL kernel modules to 6.5.10 + * Xenial update to 4.4.90 stable release (LP: #1721550) + - cifs: release auth_key.response for reconnect. + - mac80211: flush hw_roc_start work before cancelling the ROC + - KVM: PPC: Book3S: Fix race and leak in kvm_vm_ioctl_create_spapr_tce() + - tracing: Fix trace_pipe behavior for instance traces + - tracing: Erase irqsoff trace with empty write + - md/raid5: fix a race condition in stripe batch + - md/raid5: preserve STRIPE_ON_UNPLUG_LIST in break_stripe_batch_list + - scsi: scsi_transport_iscsi: fix the issue that iscsi_if_rx doesn't parse + nlmsg properly + - crypto: talitos - Don't provide setkey for non hmac hashing algs. + - crypto: talitos - fix sha224 + - KEYS: fix writing past end of user-supplied buffer in keyring_read() + - KEYS: prevent creating a different user's keyrings + - KEYS: prevent KEYCTL_READ on negative key + - powerpc/pseries: Fix parent_dn reference leak in add_dt_node() + - Fix SMB3.1.1 guest authentication to Samba + - SMB: Validate negotiate (to protect against downgrade) even if signing off + - SMB3: Don't ignore O_SYNC/O_DSYNC and O_DIRECT flags + - vfs: Return -ENXIO for negative SEEK_HOLE / SEEK_DATA offsets + - nl80211: check for the required netlink attributes presence + - bsg-lib: don't free job in bsg_prepare_job + - seccomp: fix the usage of get/put_seccomp_filter() in seccomp_get_filter() + - arm64: Make sure SPsel is always set + - arm64: fault: Route pte translation faults via do_translation_fault + - KVM: VMX: Do not BUG() on out-of-bounds guest IRQ + - kvm: nVMX: Don't allow L2 to access the hardware CR8 + - PCI: Fix race condition with driver_override + - btrfs: fix NULL pointer dereference from free_reloc_roots() + - btrfs: propagate error to btrfs_cmp_data_prepare caller + - btrfs: prevent to set invalid default subvolid + - x86/fpu: Don't let userspace set bogus xcomp_bv + - gfs2: Fix debugfs glocks dump + - timer/sysclt: Restrict timer migration sysctl values to 0 and 1 + - KVM: VMX: do not change SN bit in vmx_update_pi_irte() + - KVM: VMX: remove WARN_ON_ONCE in kvm_vcpu_trigger_posted_interrupt + - cxl: Fix driver use count + - dmaengine: mmp-pdma: add number of requestors + - ARM: pxa: add the number of DMA requestor lines + - ARM: pxa: fix the number of DMA requestor lines + - KVM: VMX: use cmpxchg64 + - video: fbdev: aty: do not leak uninitialized padding in clk to userspace + - swiotlb-xen: implement xen_swiotlb_dma_mmap callback + - fix xen_swiotlb_dma_mmap prototype + - Linux 4.4.90 + * Xenial update to 4.4.89 stable release (LP: #1721477) + - ipv6: accept 64k - 1 packet length in ip6_find_1stfragopt() + - ipv6: add rcu grace period before freeing fib6_node + - ipv6: fix sparse warning on rt6i_node + - qlge: avoid memcpy buffer overflow + - Revert "net: phy: Correctly process PHY_HALTED in phy_stop_machine()" + - Revert "net: use lib/percpu_counter API for fragmentation mem accounting" + - Revert "net: fix percpu memory leaks" + - gianfar: Fix Tx flow control deactivation + - ipv6: fix memory leak with multiple tables during netns destruction + - ipv6: fix typo in fib6_net_exit() + - f2fs: check hot_data for roll-forward recovery + - x86/fsgsbase/64: Report FSBASE and GSBASE correctly in core dumps + - md/raid5: release/flush io in raid5_do_work() + - nfsd: Fix general protection fault in release_lock_stateid() + - mm: prevent double decrease of nr_reserved_highatomic + - tty: improve tty_insert_flip_char() fast path + - tty: improve tty_insert_flip_char() slow path + - tty: fix __tty_insert_flip_char regression + - Input: i8042 - add Gigabyte P57 to the keyboard reset table + - MIPS: math-emu: .: Fix quiet NaN propagation + - MIPS: math-emu: .: Fix cases of both inputs zero + - MIPS: math-emu: .: Fix cases of both inputs negative + - MIPS: math-emu: .: Fix cases of input values with opposite + signs + - MIPS: math-emu: .: Fix cases of both infinite inputs + - MIPS: math-emu: MINA.: Fix some cases of infinity and zero inputs + - crypto: AF_ALG - remove SGL terminator indicator when chaining + - ext4: fix incorrect quotaoff if the quota feature is enabled + - ext4: fix quota inconsistency during orphan cleanup for read-only mounts + - powerpc: Fix DAR reporting when alignment handler faults + - block: Relax a check in blk_start_queue() + - md/bitmap: disable bitmap_resize for file-backed bitmaps. + - skd: Avoid that module unloading triggers a use-after-free + - skd: Submit requests to firmware before triggering the doorbell + - scsi: zfcp: fix queuecommand for scsi_eh commands when DIX enabled + - scsi: zfcp: add handling for FCP_RESID_OVER to the fcp ingress path + - scsi: zfcp: fix capping of unsuccessful GPN_FT SAN response trace records + - scsi: zfcp: fix passing fsf_req to SCSI trace on TMF to correlate with HBA + - scsi: zfcp: fix missing trace records for early returns in TMF eh handlers + - scsi: zfcp: fix payload with full FCP_RSP IU in SCSI trace records + - scsi: zfcp: trace HBA FSF response by default on dismiss or timedout late + response + - scsi: zfcp: trace high part of "new" 64 bit SCSI LUN + - scsi: megaraid_sas: Check valid aen class range to avoid kernel panic + - scsi: megaraid_sas: Return pended IOCTLs with cmd_status + MFI_STAT_WRONG_STATE in case adapter is dead + - scsi: storvsc: fix memory leak on ring buffer busy + - scsi: sg: remove 'save_scat_len' + - scsi: sg: use standard lists for sg_requests + - scsi: sg: off by one in sg_ioctl() + - scsi: sg: factor out sg_fill_request_table() + - scsi: sg: fixup infoleak when using SG_GET_REQUEST_TABLE + - scsi: qla2xxx: Fix an integer overflow in sysfs code + - ftrace: Fix selftest goto location on error + - tracing: Apply trace_clock changes to instance max buffer + - ARC: Re-enable MMU upon Machine Check exception + - PCI: shpchp: Enable bridge bus mastering if MSI is enabled + - media: v4l2-compat-ioctl32: Fix timespec conversion + - media: uvcvideo: Prevent heap overflow when accessing mapped controls + - bcache: initialize dirty stripes in flash_dev_run() + - bcache: Fix leak of bdev reference + - bcache: do not subtract sectors_to_gc for bypassed IO + - bcache: correct cache_dirty_target in __update_writeback_rate() + - bcache: Correct return value for sysfs attach errors + - bcache: fix for gc and write-back race + - bcache: fix bch_hprint crash and improve output + - ftrace: Fix memleak when unregistering dynamic ops when tracing disabled + - Linux 4.4.89 + * ETPS/2 Elantech Touchpad inconsistently detected (Gigabyte P57W laptop) + (LP: #1594214) + - Input: i8042 - add Gigabyte P57 to the keyboard reset table + * Xenial update to 4.4.88 stable release (LP: #1718195) + - usb: quirks: add delay init quirk for Corsair Strafe RGB keyboard + - USB: serial: option: add support for D-Link DWM-157 C1 + - usb: Add device quirk for Logitech HD Pro Webcam C920-C + - usb:xhci:Fix regression when ATI chipsets detected + - USB: core: Avoid race of async_completed() w/ usbdev_release() + - staging/rts5208: fix incorrect shift to extract upper nybble + - driver core: bus: Fix a potential double free + - intel_th: pci: Add Cannon Lake PCH-H support + - intel_th: pci: Add Cannon Lake PCH-LP support + - ath10k: fix memory leak in rx ring buffer allocation + - rtlwifi: rtl_pci_probe: Fix fail path of _rtl_pci_find_adapter + - Bluetooth: Add support of 13d3:3494 RTL8723BE device + - dlm: avoid double-free on error path in dlm_device_{register,unregister} + - mwifiex: correct channel stat buffer overflows + - drm/nouveau/pci/msi: disable MSI on big-endian platforms by default + - workqueue: Fix flag collision + - cs5536: add support for IDE controller variant + - scsi: sg: protect against races between mmap() and SG_SET_RESERVED_SIZE + - scsi: sg: recheck MMAP_IO request length with lock held + - drm: adv7511: really enable interrupts for EDID detection + - drm/bridge: adv7511: Fix mutex deadlock when interrupts are disabled + - drm/bridge: adv7511: Use work_struct to defer hotplug handing to out of irq + context + - drm/bridge: adv7511: Switch to using drm_kms_helper_hotplug_event() + - drm/bridge: adv7511: Re-write the i2c address before EDID probing + - btrfs: resume qgroup rescan on rw remount + - locktorture: Fix potential memory leak with rw lock test + - ALSA: msnd: Optimize / harden DSP and MIDI loops + - ARM: 8692/1: mm: abort uaccess retries upon fatal signal + - NFS: Fix 2 use after free issues in the I/O code + - xfs: XFS_IS_REALTIME_INODE() should be false if no rt device present + - Linux 4.4.88 + * Kernel has troule recognizing Corsair Strafe RGB keyboard (LP: #1678477) + - usb: quirks: add delay init quirk for Corsair Strafe RGB keyboard + + -- Thadeu Lima de Souza Cascardo Wed, 11 Oct 2017 13:28:48 -0300 + +linux-raspi2 (4.4.0-1075.83) xenial; urgency=low + + * linux-raspi2: 4.4.0-1075.83 -proposed tracker (LP: #1718153) + + [ Ubuntu: 4.4.0-97.120 ] + + * linux: 4.4.0-97.120 -proposed tracker (LP: #1718149) + * blk-mq: possible deadlock on CPU hot(un)plug (LP: #1670634) + - [Config] s390x -- disable CONFIG_{DM, SCSI}_MQ_DEFAULT + * Xenial update to 4.4.87 stable release (LP: #1715678) + - irqchip: mips-gic: SYNC after enabling GIC region + - i2c: ismt: Don't duplicate the receive length for block reads + - i2c: ismt: Return EMSGSIZE for block reads with bogus length + - ceph: fix readpage from fscache + - cpumask: fix spurious cpumask_of_node() on non-NUMA multi-node configs + - cpuset: Fix incorrect memory_pressure control file mapping + - alpha: uapi: Add support for __SANE_USERSPACE_TYPES__ + - CIFS: remove endian related sparse warning + - wl1251: add a missing spin_lock_init() + - xfrm: policy: check policy direction value + - drm/ttm: Fix accounting error when fail to get pages for pool + - kvm: arm/arm64: Fix race in resetting stage2 PGD + - kvm: arm/arm64: Force reading uncached stage2 PGD + - epoll: fix race between ep_poll_callback(POLLFREE) and ep_free()/ep_remove() + - crypto: algif_skcipher - only call put_page on referenced and used pages + - Linux 4.4.87 + * Xenial update to 4.4.86 stable release (LP: #1715430) + - scsi: isci: avoid array subscript warning + - ALSA: au88x0: Fix zero clear of stream->resources + - btrfs: remove duplicate const specifier + - i2c: jz4780: drop superfluous init + - gcov: add support for gcc version >= 6 + - gcov: support GCC 7.1 + - lightnvm: initialize ppa_addr in dev_to_generic_addr() + - p54: memset(0) whole array + - lpfc: Fix Device discovery failures during switch reboot test. + - arm64: mm: abort uaccess retries upon fatal signal + - x86/io: Add "memory" clobber to insb/insw/insl/outsb/outsw/outsl + - arm64: fpsimd: Prevent registers leaking across exec + - scsi: sg: protect accesses to 'reserved' page array + - scsi: sg: reset 'res_in_use' after unlinking reserved array + - drm/i915: fix compiler warning in drivers/gpu/drm/i915/intel_uncore.c + - Linux 4.4.86 + * Xenial update to 4.4.85 stable release (LP: #1714298) + - af_key: do not use GFP_KERNEL in atomic contexts + - dccp: purge write queue in dccp_destroy_sock() + - dccp: defer ccid_hc_tx_delete() at dismantle time + - ipv4: fix NULL dereference in free_fib_info_rcu() + - net_sched/sfq: update hierarchical backlog when drop packet + - ipv4: better IP_MAX_MTU enforcement + - sctp: fully initialize the IPv6 address in sctp_v6_to_addr() + - tipc: fix use-after-free + - ipv6: reset fn->rr_ptr when replacing route + - ipv6: repair fib6 tree in failure case + - tcp: when rearming RTO, if RTO time is in past then fire RTO ASAP + - irda: do not leak initialized list.dev to userspace + - net: sched: fix NULL pointer dereference when action calls some targets + - net_sched: fix order of queue length updates in qdisc_replace() + - mei: me: add broxton pci device ids + - mei: me: add lewisburg device ids + - Input: trackpoint - add new trackpoint firmware ID + - Input: elan_i2c - add ELAN0602 ACPI ID to support Lenovo Yoga310 + - ALSA: core: Fix unexpected error at replacing user TLV + - ALSA: hda - Add stereo mic quirk for Lenovo G50-70 (17aa:3978) + - ARCv2: PAE40: Explicitly set MSB counterpart of SLC region ops addresses + - i2c: designware: Fix system suspend + - drm: Release driver tracking before making the object available again + - drm/atomic: If the atomic check fails, return its value first + - drm: rcar-du: lvds: Fix PLL frequency-related configuration + - drm: rcar-du: lvds: Rename PLLEN bit to PLLON + - drm: rcar-du: Fix crash in encoder failure error path + - drm: rcar-du: Fix display timing controller parameter + - drm: rcar-du: Fix H/V sync signal polarity configuration + - tracing: Fix freeing of filter in create_filter() when set_str is false + - cifs: Fix df output for users with quota limits + - cifs: return ENAMETOOLONG for overlong names in cifs_open()/cifs_lookup() + - nfsd: Limit end of page list when decoding NFSv4 WRITE + - perf/core: Fix group {cpu,task} validation + - Bluetooth: hidp: fix possible might sleep error in hidp_session_thread + - Bluetooth: cmtp: fix possible might sleep error in cmtp_session + - Bluetooth: bnep: fix possible might sleep error in bnep_session + - binder: use group leader instead of open thread + - binder: Use wake up hint for synchronous transactions. + - ANDROID: binder: fix proc->tsk check. + - iio: imu: adis16480: Fix acceleration scale factor for adis16480 + - iio: hid-sensor-trigger: Fix the race with user space powering up sensors + - staging: rtl8188eu: add RNX-N150NUB support + - ASoC: simple-card: don't fail if sysclk setting is not supported + - ASoC: rsnd: disable SRC.out only when stop timing + - ASoC: rsnd: avoid pointless loop in rsnd_mod_interrupt() + - ASoC: rsnd: Add missing initialization of ADG req_rate + - ASoC: rsnd: ssi: 24bit data needs right-aligned settings + - ASoC: rsnd: don't call update callback if it was NULL + - ntb_transport: fix qp count bug + - ntb_transport: fix bug calculating num_qps_mw + - ACPI: ioapic: Clear on-stack resource before using it + - ACPI / APEI: Add missing synchronize_rcu() on NOTIFY_SCI removal + - Linux 4.4.85 + * Xenial update to 4.4.84 stable release (LP: #1713729) + - audit: Fix use after free in audit_remove_watch_rule() + - parisc: pci memory bar assignment fails with 64bit kernels on dino/cujo + - crypto: x86/sha1 - Fix reads beyond the number of blocks passed + - Input: elan_i2c - Add antoher Lenovo ACPI ID for upcoming Lenovo NB + - ALSA: seq: 2nd attempt at fixing race creating a queue + - Revert "UBUNTU: SAUCE: (no-up) ALSA: usb-audio: Add quirk for sennheiser + officerunner" + - ALSA: usb-audio: Apply sample rate quirk to Sennheiser headset + - ALSA: usb-audio: Add mute TLV for playback volumes on C-Media devices + - mm/mempolicy: fix use after free when calling get_mempolicy + - xen: fix bio vec merging + - x86/asm/64: Clear AC on NMI entries + - irqchip/atmel-aic: Fix unbalanced of_node_put() in aic_common_irq_fixup() + - irqchip/atmel-aic: Fix unbalanced refcount in aic_common_rtc_irq_fixup() + - Sanitize 'move_pages()' permission checks + - pids: make task_tgid_nr_ns() safe + - perf/x86: Fix LBR related crashes on Intel Atom + - usb: optimize acpi companion search for usb port devices + - usb: qmi_wwan: add D-Link DWM-222 device ID + - Linux 4.4.84 + * Intel i40e PF reset due to incorrect MDD detection (LP: #1713553) + - i40e: Limit TX descriptor count in cases where frag size is greater than 16K + * Neighbour confirmation broken, breaks ARP cache aging (LP: #1715812) + - sock: add sk_dst_pending_confirm flag + - net: add dst_pending_confirm flag to skbuff + - sctp: add dst_pending_confirm flag + - tcp: replace dst_confirm with sk_dst_confirm + - net: add confirm_neigh method to dst_ops + - net: use dst_confirm_neigh for UDP, RAW, ICMP, L2TP + - net: pending_confirm is not used anymore + * CVE-2017-14106 + - tcp: initialize rcv_mss to TCP_MIN_MSS instead of 0 + * [CIFS] Fix maximum SMB2 header size (LP: #1713884) + - CIFS: Fix maximum SMB2 header size + * Middle button of trackpoint doesn't work (LP: #1715271) + - Input: trackpoint - assume 3 buttons when buttons detection fails + * kernel BUG at /build/linux-lts-xenial-_hWfOZ/linux-lts- + xenial-4.4.0/security/apparmor/include/context.h:69! (LP: #1626984) + - SAUCE: fix oops when disabled and module parameters, are accessed + * Touchpad not detected (LP: #1708852) + - Input: elan_i2c - add ELAN0608 to the ACPI table + + -- Kleber Sacilotto de Souza Wed, 20 Sep 2017 09:45:14 +0200 + +linux-raspi2 (4.4.0-1074.82) xenial; urgency=low + + * linux-raspi2: 4.4.0-1074.82 -proposed tracker (LP: #1716618) + + [ Ubuntu: 4.4.0-96.119 ] + + * linux: 4.4.0-96.119 -proposed tracker (LP: #1716613) + * kernel panic -not syncing: Fatal exception: panic_on_oops (LP: #1708399) + - s390/mm: no local TLB flush for clearing-by-ASCE IDTE + - SAUCE: s390/mm: fix local TLB flushing vs. detach of an mm address space + - SAUCE: s390/mm: fix race on mm->context.flush_mm + * CVE-2017-1000251 + - Bluetooth: Properly check L2CAP config option output buffer length + + -- Stefan Bader Tue, 12 Sep 2017 17:16:17 +0200 + +linux-raspi2 (4.4.0-1073.81) xenial; urgency=low + + * linux-raspi2: 4.4.0-1073.81 -proposed tracker (LP: #1715653) + + [ Ubuntu: 4.4.0-95.118 ] + + * linux: 4.4.0-95.118 -proposed tracker (LP: #1715651) + * Xenial update to 4.4.78 stable release broke Address Sanitizer + (LP: #1715636) + - mm: revert x86_64 and arm64 ELF_ET_DYN_BASE base changes + + -- Kleber Sacilotto de Souza Thu, 07 Sep 2017 18:36:56 +0200 + +linux-raspi2 (4.4.0-1072.80) xenial; urgency=low + + * linux-raspi2: 4.4.0-1072.80 -proposed tracker (LP: #1713464) + + * Include Broadcom GPL modules in Xenial Kernel (LP: #1665783) + - [config] update config for master changes + + * Fix OOM errors (LP: #1712598) + - Revert "Revert "mm: consider compaction feedback also for costly + allocation"" + - Revert "Revert "mm, oom, compaction: prevent from should_compact_retry + looping for ever for costly orders"" + - Revert "Revert "mm, oom: protect !costly allocations some more for + !CONFIG_COMPACTION"" + - Revert "Revert "mm, oom: prevent premature OOM killer invocation for high + order request"" + - Revert "Revert "PM / wakeirq: Fix dedicated wakeirq for drivers not using + autosuspend"" + + [ Ubuntu: 4.4.0-94.117 ] + + * linux: 4.4.0-94.117 -proposed tracker (LP: #1713462) + * mwifiex causes kernel oops when AP mode is enabled (LP: #1712746) + - SAUCE: net/wireless: do not dereference invalid pointer + - SAUCE: mwifiex: do not dereference invalid pointer + * Backport more recent Broadcom bnxt_en driver (LP: #1711056) + - SAUCE: bnxt_en_bpo: Import bnxt_en driver version 1.8.1 + - SAUCE: bnxt_en_bpo: Drop distro out-of-tree detection logic + - SAUCE: bnxt_en_bpo: Remove unnecessary compile flags + - SAUCE: bnxt_en_bpo: Move config settings to Kconfig + - SAUCE: bnxt_en_bpo: Remove PCI_IDs handled by the regular driver + - SAUCE: bnxt_en_bpo: Rename the backport driver to bnxt_en_bpo + - bnxt_en_bpo: [Config] Enable CONFIG_BNXT_BPO=m + * HID: multitouch: Support ALPS PTP Stick and Touchpad devices (LP: #1712481) + - HID: multitouch: Support PTP Stick and Touchpad device + - SAUCE: HID: multitouch: Support ALPS PTP stick with pid 0x120A + * igb: Support using Broadcom 54616 as PHY (LP: #1712024) + - SAUCE: igb: add support for using Broadcom 54616 as PHY + * IPR driver causes multipath to fail paths/stuck IO on Medium Errors + (LP: #1682644) + - scsi: ipr: do not set DID_PASSTHROUGH on CHECK CONDITION + * accessing /dev/hvc1 with stress-ng on Ubuntu xenial causes crash + (LP: #1711401) + - tty/hvc: Use IRQF_SHARED for OPAL hvc consoles + * memory-hotplug test needs to be fixed (LP: #1710868) + - selftests: typo correction for memory-hotplug test + - selftests: check hot-pluggagble memory for memory-hotplug test + - selftests: check percentage range for memory-hotplug test + - selftests: add missing test name in memory-hotplug test + - selftests: fix memory-hotplug test + * HP lt4132 LTE/HSPA+ 4G Module (03f0:a31d) does not work (LP: #1707643) + - net: cdc_mbim: apply "NDP to end" quirk to HP lt4132 + * Migrating KSM page causes the VM lock up as the KSM page merging list is too + large (LP: #1680513) + - ksm: introduce ksm_max_page_sharing per page deduplication limit + - ksm: fix use after free with merge_across_nodes = 0 + - ksm: cleanup stable_node chain collapse case + - ksm: swap the two output parameters of chain/chain_prune + - ksm: optimize refile of stable_node_dup at the head of the chain + * sort ABI files with C.UTF-8 locale (LP: #1712345) + - [Packaging] sort ABI files with C.UTF-8 locale + * Include Broadcom GPL modules in Xenial Kernel (LP: #1665783) + - [Config] OpenNSL Kconfig/Makefile + - Import OpenNSL v3.1.0.17 + - [Config] CONFIG_OPENNSL=y for amd64 + - OpenNSL: Enable Kconfig and build + - SAUCE: opennsl: add proper CFLAGS + * Xenial update to 4.4.83 stable release (LP: #1711557) + - cpuset: fix a deadlock due to incomplete patching of cpusets_enabled() + - mm: ratelimit PFNs busy info message + - iscsi-target: fix memory leak in iscsit_setup_text_cmd() + - iscsi-target: Fix iscsi_np reset hung task during parallel delete + - fuse: initialize the flock flag in fuse_file on allocation + - nfs/flexfiles: fix leak of nfs4_ff_ds_version arrays + - USB: serial: option: add D-Link DWM-222 device ID + - USB: serial: cp210x: add support for Qivicon USB ZigBee dongle + - USB: serial: pl2303: add new ATEN device id + - usb: musb: fix tx fifo flush handling again + - USB: hcd: Mark secondary HCD as dead if the primary one died + - staging:iio:resolver:ad2s1210 fix negative IIO_ANGL_VEL read + - iio: accel: bmc150: Always restore device to normal mode after suspend- + resume + - iio: light: tsl2563: use correct event code + - uas: Add US_FL_IGNORE_RESIDUE for Initio Corporation INIC-3069 + - USB: Check for dropped connection before switching to full speed + - usb: core: unlink urbs from the tail of the endpoint's urb_list + - usb: quirks: Add no-lpm quirk for Moshi USB to Ethernet Adapter + - usb:xhci:Add quirk for Certain failing HP keyboard on reset after resume + - iio: adc: vf610_adc: Fix VALT selection value for REFSEL bits + - pnfs/blocklayout: require 64-bit sector_t + - pinctrl: sunxi: add a missing function of A10/A20 pinctrl driver + - pinctrl: samsung: Remove bogus irq_[un]mask from resource management + - Linux 4.4.83 + * Xenial update to 4.4.82 stable release (LP: #1711535) + - tcp: avoid setting cwnd to invalid ssthresh after cwnd reduction states + - net: fix keepalive code vs TCP_FASTOPEN_CONNECT + - bpf, s390: fix jit branch offset related to ldimm64 + - net: sched: set xt_tgchk_param par.nft_compat as 0 in ipt_init_target + - tcp: fastopen: tcp_connect() must refresh the route + - net: avoid skb_warn_bad_offload false positives on UFO + - sparc64: Prevent perf from running during super critical sections + - KVM: arm/arm64: Handle hva aging while destroying the vm + - mm/mempool: avoid KASAN marking mempool poison checks as use-after-free + - Linux 4.4.82 + * Xenial update to 4.4.81 stable release (LP: #1711526) + - libata: array underflow in ata_find_dev() + - workqueue: restore WQ_UNBOUND/max_active==1 to be ordered + - ALSA: hda - Fix speaker output from VAIO VPCL14M1R + - ASoC: do not close shared backend dailink + - KVM: async_pf: make rcu irq exit if not triggered from idle task + - mm/page_alloc: Remove kernel address exposure in free_reserved_area() + - ext4: fix SEEK_HOLE/SEEK_DATA for blocksize < pagesize + - ext4: fix overflow caused by missing cast in ext4_resize_fs() + - ARM: dts: armada-38x: Fix irq type for pca955 + - media: platform: davinci: return -EINVAL for VPFE_CMD_S_CCDC_RAW_PARAMS + ioctl + - target: Avoid mappedlun symlink creation during lun shutdown + - iscsi-target: Always wait for kthread_should_stop() before kthread exit + - iscsi-target: Fix early sk_data_ready LOGIN_FLAGS_READY race + - iscsi-target: Fix initial login PDU asynchronous socket close OOPs + - iscsi-target: Fix delayed logout processing greater than + SECONDS_FOR_LOGOUT_COMP + - iser-target: Avoid isert_conn->cm_id dereference in isert_login_recv_done + - mm, mprotect: flush TLB if potentially racing with a parallel reclaim + leaving stale TLB entries + - media: lirc: LIRC_GET_REC_RESOLUTION should return microseconds + - f2fs: sanity check checkpoint segno and blkoff + - drm: rcar-du: fix backport bug + - saa7164: fix double fetch PCIe access condition + - ipv4: ipv6: initialize treq->txhash in cookie_v[46]_check() + - net: Zero terminate ifr_name in dev_ifname(). + - ipv6: avoid overflow of offset in ip6_find_1stfragopt + - ipv4: initialize fib_trie prior to register_netdev_notifier call. + - rtnetlink: allocate more memory for dev_set_mac_address() + - mcs7780: Fix initialization when CONFIG_VMAP_STACK is enabled + - openvswitch: fix potential out of bound access in parse_ct + - packet: fix use-after-free in prb_retire_rx_blk_timer_expired() + - ipv6: Don't increase IPSTATS_MIB_FRAGFAILS twice in ip6_fragment() + - net: ethernet: nb8800: Handle all 4 RGMII modes identically + - dccp: fix a memleak that dccp_ipv6 doesn't put reqsk properly + - dccp: fix a memleak that dccp_ipv4 doesn't put reqsk properly + - dccp: fix a memleak for dccp_feat_init err process + - sctp: don't dereference ptr before leaving _sctp_walk_{params, errors}() + - sctp: fix the check for _sctp_walk_params and _sctp_walk_errors + - net/mlx5: Fix command bad flow on command entry allocation failure + - net: phy: Correctly process PHY_HALTED in phy_stop_machine() + - net: phy: Fix PHY unbind crash + - xen-netback: correctly schedule rate-limited queues + - sparc64: Measure receiver forward progress to avoid send mondo timeout + - wext: handle NULL extra data in iwe_stream_add_point better + - sh_eth: R8A7740 supports packet shecksumming + - net: phy: dp83867: fix irq generation + - tg3: Fix race condition in tg3_get_stats64(). + - x86/boot: Add missing declaration of string functions + - phy state machine: failsafe leave invalid RUNNING state + - scsi: qla2xxx: Get mutex lock before checking optrom_state + - drm/virtio: fix framebuffer sparse warning + - virtio_blk: fix panic in initialization error path + - ARM: 8632/1: ftrace: fix syscall name matching + - mm, slab: make sure that KMALLOC_MAX_SIZE will fit into MAX_ORDER + - lib/Kconfig.debug: fix frv build failure + - signal: protect SIGNAL_UNKILLABLE from unintentional clearing. + - mm: don't dereference struct page fields of invalid pages + - workqueue: implicit ordered attribute should be overridable + - Linux 4.4.81 + * Xenial update to 4.4.80 stable release (LP: #1710646) + - af_key: Add lock to key dump + - pstore: Make spinlock per zone instead of global + - powerpc/pseries: Fix of_node_put() underflow during reconfig remove + - crypto: authencesn - Fix digest_null crash + - md/raid5: add thread_group worker async_tx_issue_pending_all + - drm/vmwgfx: Fix gcc-7.1.1 warning + - drm/nouveau/bar/gf100: fix access to upper half of BAR2 + - KVM: PPC: Book3S HV: Context-switch EBB registers properly + - KVM: PPC: Book3S HV: Restore critical SPRs to host values on guest exit + - KVM: PPC: Book3S HV: Reload HTM registers explicitly + - KVM: PPC: Book3S HV: Save/restore host values of debug registers + - Revert "powerpc/numa: Fix percpu allocations to be NUMA aware" + - Staging: comedi: comedi_fops: Avoid orphaned proc entry + - drm/rcar: Nuke preclose hook + - drm: rcar-du: Perform initialization/cleanup at probe/remove time + - drm: rcar-du: Simplify and fix probe error handling + - perf intel-pt: Fix ip compression + - perf intel-pt: Fix last_ip usage + - perf intel-pt: Use FUP always when scanning for an IP + - perf intel-pt: Ensure never to set 'last_ip' when packet 'count' is zero + - xfs: don't BUG() on mixed direct and mapped I/O + - nfc: fdp: fix NULL pointer dereference + - net: phy: Do not perform software reset for Generic PHY + - isdn: Fix a sleep-in-atomic bug + - isdn/i4l: fix buffer overflow + - ath10k: fix null deref on wmi-tlv when trying spectral scan + - wil6210: fix deadlock when using fw_no_recovery option + - mailbox: always wait in mbox_send_message for blocking Tx mode + - mailbox: skip complete wait event if timer expired + - mailbox: handle empty message in tx_tick + - mpt3sas: Don't overreach ioc->reply_post[] during initialization + - kaweth: fix firmware download + - kaweth: fix oops upon failed memory allocation + - sched/cgroup: Move sched_online_group() back into css_online() to fix crash + - PM / Domains: defer dev_pm_domain_set() until genpd->attach_dev succeeds if + present + - RDMA/uverbs: Fix the check for port number + - libnvdimm, btt: fix btt_rw_page not returning errors + - ipmi/watchdog: fix watchdog timeout set on reboot + - v4l: s5c73m3: fix negation operator + - pstore: Allow prz to control need for locking + - pstore: Correctly initialize spinlock and flags + - pstore: Use dynamic spinlock initializer + - net: skb_needs_check() accepts CHECKSUM_NONE for tx + - sched/cputime: Fix prev steal time accouting during CPU hotplug + - xen/blkback: don't free be structure too early + - xen/blkback: don't use xen_blkif_get() in xen-blkback kthread + - tpm: fix a kernel memory leak in tpm-sysfs.c + - tpm: Replace device number bitmap with IDR + - x86/mce/AMD: Make the init code more robust + - r8169: add support for RTL8168 series add-on card. + - ARM: dts: n900: Mark eMMC slot with no-sdio and no-sd flags + - net/mlx4: Remove BUG_ON from ICM allocation routine + - drm/msm: Ensure that the hardware write pointer is valid + - drm/msm: Verify that MSM_SUBMIT_BO_FLAGS are set + - vfio-pci: use 32-bit comparisons for register address for gcc-4.5 + - irqchip/keystone: Fix "scheduling while atomic" on rt + - ASoC: tlv320aic3x: Mark the RESET register as volatile + - spi: dw: Make debugfs name unique between instances + - ASoC: nau8825: fix invalid configuration in Pre-Scalar of FLL + - irqchip/mxs: Enable SKIP_SET_WAKE and MASK_ON_SUSPEND + - openrisc: Add _text symbol to fix ksym build error + - dmaengine: ioatdma: Add Skylake PCI Dev ID + - dmaengine: ioatdma: workaround SKX ioatdma version + - dmaengine: ti-dma-crossbar: Add some 'of_node_put()' in error path. + - ARM64: zynqmp: Fix W=1 dtc 1.4 warnings + - ARM64: zynqmp: Fix i2c node's compatible string + - ARM: s3c2410_defconfig: Fix invalid values for NF_CT_PROTO_* + - ACPI / scan: Prefer devices without _HID/_CID for _ADR matching + - usb: gadget: Fix copy/pasted error message + - Btrfs: adjust outstanding_extents counter properly when dio write is split + - tools lib traceevent: Fix prev/next_prio for deadline tasks + - xfrm: Don't use sk_family for socket policy lookups + - perf tools: Install tools/lib/traceevent plugins with install-bin + - perf symbols: Robustify reading of build-id from sysfs + - video: fbdev: cobalt_lcdfb: Handle return NULL error from devm_ioremap + - vfio-pci: Handle error from pci_iomap + - arm64: mm: fix show_pte KERN_CONT fallout + - nvmem: imx-ocotp: Fix wrong register size + - sh_eth: enable RX descriptor word 0 shift on SH7734 + - ALSA: usb-audio: test EP_FLAG_RUNNING at urb completion + - HID: ignore Petzl USB headlamp + - scsi: fnic: Avoid sending reset to firmware when another reset is in + progress + - scsi: snic: Return error code on memory allocation failure + - ASoC: dpcm: Avoid putting stream state to STOP when FE stream is paused + - Linux 4.4.80 + * Please only recommend or suggest initramfs-tools | linux-initramfs-tool for + kernels able to boot without initramfs (LP: #1700972) + - [Debian] Don't depend on initramfs-tools + + -- Kleber Sacilotto de Souza Tue, 29 Aug 2017 10:43:27 +0200 + +linux-raspi2 (4.4.0-1071.79) xenial; urgency=low + + * linux-raspi2: 4.4.0-1071.79 -proposed tracker (LP: #1709298) + + * Board hangs with 'dtoverlay=vc4-kms-v3d' while writing to /dev/fb0 + (LP: #1708417) + - drm/fb_cma_helper: Implement fb_mmap callback + + * Snapcraft.yaml update (LP: #1700577) + - snapcraft.yaml: various improvements + + [ Ubuntu: 4.4.0-93.116 ] + + * linux: 4.4.0-93.116 -proposed tracker (LP: #1709296) + * Creating conntrack entry failure with kernel 4.4.0-89 (LP: #1709032) + - Revert "Revert "netfilter: synproxy: fix conntrackd interaction"" + - netfilter: nf_ct_ext: fix possible panic after nf_ct_extend_unregister + * CVE-2017-1000112 + - Revert "udp: consistently apply ufo or fragmentation" + - udp: consistently apply ufo or fragmentation + * CVE-2017-1000111 + - Revert "net-packet: fix race in packet_set_ring on PACKET_RESERVE" + - packet: fix tp_reserve race in packet_set_ring + * kernel BUG at [tty_ldisc_reinit] mm/slub.c! (LP: #1709126) + - tty: Simplify tty_set_ldisc() exit handling + - tty: Reset c_line from driver's init_termios + - tty: Handle NULL tty->ldisc + - tty: Move tty_ldisc_kill() + - tty: Use 'disc' for line discipline index name + - tty: Refactor tty_ldisc_reinit() for reuse + - tty: Destroy ldisc instance on hangup + * atheros bt failed after S3 (LP: #1706833) + - SAUCE: Bluetooth: Make request workqueue freezable + * The Precision Touchpad(PTP) button sends incorrect event code (LP: #1708372) + - HID: multitouch: handle external buttons for Precision Touchpads + * Set CONFIG_SATA_HIGHBANK=y on armhf (LP: #1703430) + - [Config] CONFIG_SATA_HIGHBANK=y + * xfs slab objects (memory) leak when xfs shutdown is called (LP: #1706132) + - xfs: fix xfs_log_ticket leak in xfs_end_io() after fs shutdown + * Adt tests of src:linux time out often on armhf lxc containers (LP: #1705495) + - [Packaging] tests -- reduce rebuild test to one flavour + * CVE-2017-7495 + - ext4: fix data exposure after a crash + * ubuntu/rsi driver downlink wifi throughput drops to 5-6 Mbps when BT + keyboard is connected (LP: #1706991) + - SAUCE: Redpine: enable power save by default for coex mode + - SAUCE: Redpine: uapsd configuration changes + * [Hyper-V] hv_netvsc: Exclude non-TCP port numbers from vRSS hashing + (LP: #1690174) + - hv_netvsc: Exclude non-TCP port numbers from vRSS hashing + * ath10k doesn't report full RSSI information (LP: #1706531) + - ath10k: add per chain RSSI reporting + * ideapad_laptop don't support v310-14isk (LP: #1705378) + - platform/x86: ideapad-laptop: Add several models to no_hw_rfkill + * [8087:0a2b] Failed to load bluetooth firmware(might affect some other Intel + bt devices) (LP: #1705633) + - Bluetooth: btintel: Create common Intel Version Read function + - Bluetooth: Use switch statement for Intel hardware variants + - Bluetooth: Replace constant hw_variant from Intel Bluetooth firmware + filename + - Bluetooth: hci_intel: Fix firmware file name to use hw_variant + - Bluetooth: btintel: Add MODULE_FIRMWARE entries for iBT 3.5 controllers + * xhci_hcd: ERROR Transfer event TRB DMA ptr not part of current TD ep_index 2 + comp_code 13 (LP: #1667750) + - xhci: Bad Ethernet performance plugged in ASM1042A host + * OpenPower: Some multipaths temporarily have only a single path + (LP: #1696445) + - scsi: ses: don't get power status of SES device slot on probe + * Hotkeys on new Thinkpad systems aren't working (LP: #1705169) + - platform/x86: thinkpad_acpi: Adding new hotkey ID for Lenovo thinkpad + - platform/x86: thinkpad_acpi: guard generic hotkey case + - platform/x86: thinkpad_acpi: add mapping for new hotkeys + * CVE-2015-7837 + - SAUCE: (no-up) kexec/uefi: copy secure_boot flag in boot params across kexec + reboot + * misleading kernel warning skb_warn_bad_offload during checksum calculation + (LP: #1705447) + - net: reduce skb_warn_bad_offload() noise + * bonding: stack dump when unregistering a netdev (LP: #1704102) + - bonding: avoid NETDEV_CHANGEMTU event when unregistering slave + * Ubuntu 16.04 IOB Error when the Mustang board rebooted (LP: #1693673) + - drivers: net: xgene: Fix redundant prefetch buffer cleanup + * Ubuntu16.04: NVMe 4K+T10 DIF/DIX format returns I/O error on dd with split + op (LP: #1689946) + - blk-mq: NVMe 512B/4K+T10 DIF/DIX format returns I/O error on dd with split + op + * linux >= 4.2: bonding 802.3ad does not work with 5G, 25G and 50G link speeds + (LP: #1697892) + - bonding: add 802.3ad support for 100G speeds + - bonding: fix 802.3ad aggregator reselection + - bonding: add 802.3ad support for 25G speeds + - bonding: fix 802.3ad support for 5G and 50G speeds + * Xenial update to 4.4.79 stable release (LP: #1707233) + - disable new gcc-7.1.1 warnings for now + - ir-core: fix gcc-7 warning on bool arithmetic + - s5p-jpeg: don't return a random width/height + - thermal: cpu_cooling: Avoid accessing potentially freed structures + - ath9k: fix tx99 use after free + - ath9k: fix tx99 bus error + - NFC: fix broken device allocation + - NFC: nfcmrvl_uart: add missing tty-device sanity check + - NFC: nfcmrvl: do not use device-managed resources + - NFC: nfcmrvl: use nfc-device for firmware download + - NFC: nfcmrvl: fix firmware-management initialisation + - nfc: Ensure presence of required attributes in the activate_target handler + - nfc: Fix the sockaddr length sanitization in llcp_sock_connect + - NFC: Add sockaddr length checks before accessing sa_family in bind handlers + - perf intel-pt: Move decoder error setting into one condition + - perf intel-pt: Improve sample timestamp + - perf intel-pt: Fix missing stack clear + - perf intel-pt: Ensure IP is zero when state is INTEL_PT_STATE_NO_IP + - perf intel-pt: Clear FUP flag on error + - Bluetooth: use constant time memory comparison for secret values + - wlcore: fix 64K page support + - ASoC: compress: Derive substream from stream based on direction + - PM / Domains: Fix unsafe iteration over modified list of device links + - PM / Domains: Fix unsafe iteration over modified list of domain providers + - scsi: ses: do not add a device to an enclosure if enclosure_add_links() + fails. + - iscsi-target: Add login_keys_workaround attribute for non RFC initiators + - powerpc/64: Fix atomic64_inc_not_zero() to return an int + - powerpc: Fix emulation of mcrf in emulate_step() + - powerpc: Fix emulation of mfocrf in emulate_step() + - powerpc/asm: Mark cr0 as clobbered in mftb() + - af_key: Fix sadb_x_ipsecrequest parsing + - PCI/PM: Restore the status of PCI devices across hibernation + - ipvs: SNAT packet replies only for NATed connections + - xhci: fix 20000ms port resume timeout + - xhci: Fix NULL pointer dereference when cleaning up streams for removed host + - usb: storage: return on error to avoid a null pointer dereference + - USB: cdc-acm: add device-id for quirky printer + - usb: renesas_usbhs: fix usbhsc_resume() for !USBHSF_RUNTIME_PWCTRL + - usb: renesas_usbhs: gadget: disable all eps when the driver stops + - md: don't use flush_signals in userspace processes + - x86/xen: allow userspace access during hypercalls + - cx88: Fix regression in initial video standard setting + - Raid5 should update rdev->sectors after reshape + - s390/syscalls: Fix out of bounds arguments access + - drm/amd/amdgpu: Return error if initiating read out of range on vram + - drm/radeon/ci: disable mclk switching for high refresh rates (v2) + - drm/radeon: Fix eDP for single-display iMac10,1 (v2) + - ipmi: use rcu lock around call to intf->handlers->sender() + - ipmi:ssif: Add missing unlock in error branch + - f2fs: Don't clear SGID when inheriting ACLs + - vfio: Fix group release deadlock + - vfio: New external user group/file match + - ftrace: Fix uninitialized variable in match_records() + - MIPS: Fix mips_atomic_set() retry condition + - MIPS: Fix mips_atomic_set() with EVA + - MIPS: Negate error syscall return in trace + - x86/acpi: Prevent out of bound access caused by broken ACPI tables + - x86/ioapic: Pass the correct data to unmask_ioapic_irq() + - MIPS: Fix MIPS I ISA /proc/cpuinfo reporting + - MIPS: Save static registers before sysmips + - MIPS: Actually decode JALX in `__compute_return_epc_for_insn' + - MIPS: Fix unaligned PC interpretation in `compute_return_epc' + - MIPS: math-emu: Prevent wrong ISA mode instruction emulation + - MIPS: Send SIGILL for BPOSGE32 in `__compute_return_epc_for_insn' + - MIPS: Rename `sigill_r6' to `sigill_r2r6' in `__compute_return_epc_for_insn' + - MIPS: Send SIGILL for linked branches in `__compute_return_epc_for_insn' + - MIPS: Fix a typo: s/preset/present/ in r2-to-r6 emulation error message + - Input: i8042 - fix crash at boot time + - NFS: only invalidate dentrys that are clearly invalid. + - udf: Fix deadlock between writeback and udf_setsize() + - target: Fix COMPARE_AND_WRITE caw_sem leak during se_cmd quiesce + - perf annotate: Fix broken arrow at row 0 connecting jmp instruction to its + target + - Revert "perf/core: Drop kernel samples even though :u is specified" + - staging: rtl8188eu: add TL-WN722N v2 support + - ceph: fix race in concurrent readdir + - RDMA/core: Initialize port_num in qp_attr + - drm/mst: Fix error handling during MST sideband message reception + - drm/mst: Avoid dereferencing a NULL mstb in drm_dp_mst_handle_up_req() + - drm/mst: Avoid processing partially received up/down message transactions + - of: device: Export of_device_{get_modalias, uvent_modalias} to modules + - spmi: Include OF based modalias in device uevent + - tracing: Fix kmemleak in instance_rmdir + - alarmtimer: don't rate limit one-shot timers + - Linux 4.4.79 + * Xenial update to 4.4.78 stable release (LP: #1705707) + - net_sched: fix error recovery at qdisc creation + - net: sched: Fix one possible panic when no destroy callback + - net/phy: micrel: configure intterupts after autoneg workaround + - ipv6: avoid unregistering inet6_dev for loopback + - net: dp83640: Avoid NULL pointer dereference. + - tcp: reset sk_rx_dst in tcp_disconnect() + - net: prevent sign extension in dev_get_stats() + - bpf: prevent leaking pointer via xadd on unpriviledged + - net: handle NAPI_GRO_FREE_STOLEN_HEAD case also in napi_frags_finish() + - ipv6: dad: don't remove dynamic addresses if link is down + - net: ipv6: Compare lwstate in detecting duplicate nexthops + - vrf: fix bug_on triggered by rx when destroying a vrf + - rds: tcp: use sock_create_lite() to create the accept socket + - brcmfmac: fix possible buffer overflow in brcmf_cfg80211_mgmt_tx() + - cfg80211: Define nla_policy for NL80211_ATTR_LOCAL_MESH_POWER_MODE + - cfg80211: Validate frequencies nested in NL80211_ATTR_SCAN_FREQUENCIES + - cfg80211: Check if PMKID attribute is of expected size + - irqchip/gic-v3: Fix out-of-bound access in gic_set_affinity + - parisc: Report SIGSEGV instead of SIGBUS when running out of stack + - parisc: use compat_sys_keyctl() + - parisc: DMA API: return error instead of BUG_ON for dma ops on non dma devs + - parisc/mm: Ensure IRQs are off in switch_mm() + - tools/lib/lockdep: Reduce MAX_LOCK_DEPTH to avoid overflowing lock_chain/: + Depth + - kernel/extable.c: mark core_kernel_text notrace + - mm/list_lru.c: fix list_lru_count_node() to be race free + - fs/dcache.c: fix spin lockup issue on nlru->lock + - checkpatch: silence perl 5.26.0 unescaped left brace warnings + - binfmt_elf: use ELF_ET_DYN_BASE only for PIE + - arm: move ELF_ET_DYN_BASE to 4MB + - arm64: move ELF_ET_DYN_BASE to 4GB / 4MB + - powerpc: move ELF_ET_DYN_BASE to 4GB / 4MB + - s390: reduce ELF_ET_DYN_BASE + - exec: Limit arg stack to at most 75% of _STK_LIM + - vt: fix unchecked __put_user() in tioclinux ioctls + - mnt: In umount propagation reparent in a separate pass + - mnt: In propgate_umount handle visiting mounts in any order + - mnt: Make propagate_umount less slow for overlapping mount propagation trees + - selftests/capabilities: Fix the test_execve test + - tpm: Get rid of chip->pdev + - tpm: Provide strong locking for device removal + - Add "shutdown" to "struct class". + - tpm: Issue a TPM2_Shutdown for TPM2 devices. + - mm: fix overflow check in expand_upwards() + - crypto: talitos - Extend max key length for SHA384/512-HMAC and AEAD + - crypto: atmel - only treat EBUSY as transient if backlog + - crypto: sha1-ssse3 - Disable avx2 + - crypto: caam - fix signals handling + - sched/topology: Fix overlapping sched_group_mask + - sched/topology: Optimize build_group_mask() + - PM / wakeirq: Convert to SRCU + - PM / QoS: return -EINVAL for bogus strings + - tracing: Use SOFTIRQ_OFFSET for softirq dectection for more accurate results + - KVM: x86: disable MPX if host did not enable MPX XSAVE features + - kvm: vmx: Do not disable intercepts for BNDCFGS + - kvm: x86: Guest BNDCFGS requires guest MPX support + - kvm: vmx: Check value written to IA32_BNDCFGS + - kvm: vmx: allow host to access guest MSR_IA32_BNDCFGS + - Linux 4.4.78 + * Xenial update to 4.4.77 stable release (LP: #1705238) + - fs: add a VALID_OPEN_FLAGS + - fs: completely ignore unknown open flags + - driver core: platform: fix race condition with driver_override + - bgmac: reset & enable Ethernet core before using it + - mm: fix classzone_idx underflow in shrink_zones() + - tracing/kprobes: Allow to create probe with a module name starting with a + digit + - usb: dwc3: replace %p with %pK + - USB: serial: cp210x: add ID for CEL EM3588 USB ZigBee stick + - Add USB quirk for HVR-950q to avoid intermittent device resets + - usb: usbip: set buffer pointers to NULL after free + - usb: Fix typo in the definition of Endpoint[out]Request + - mac80211_hwsim: Replace bogus hrtimer clockid + - sysctl: don't print negative flag for proc_douintvec + - sysctl: report EINVAL if value is larger than UINT_MAX for proc_douintvec + - pinctrl: sh-pfc: r8a7791: Fix SCIF2 pinmux data + - pinctrl: meson: meson8b: fix the NAND DQS pins + - pinctrl: sunxi: Fix SPDIF function name for A83T + - pinctrl: mxs: atomically switch mux and drive strength config + - pinctrl: sh-pfc: Update info pointer after SoC-specific init + - USB: serial: option: add two Longcheer device ids + - USB: serial: qcserial: new Sierra Wireless EM7305 device ID + - gfs2: Fix glock rhashtable rcu bug + - x86/tools: Fix gcc-7 warning in relocs.c + - x86/uaccess: Optimize copy_user_enhanced_fast_string() for short strings + - ath10k: override CE5 config for QCA9377 + - KEYS: Fix an error code in request_master_key() + - RDMA/uverbs: Check port number supplied by user verbs cmds + - mqueue: fix a use-after-free in sys_mq_notify() + - tools include: Add a __fallthrough statement + - tools string: Use __fallthrough in perf_atoll() + - tools strfilter: Use __fallthrough + - perf top: Use __fallthrough + - perf intel-pt: Use __fallthrough + - perf thread_map: Correctly size buffer used with dirent->dt_name + - perf scripting perl: Fix compile error with some perl5 versions + - perf tests: Avoid possible truncation with dirent->d_name + snprintf + - perf bench numa: Avoid possible truncation when using snprintf() + - perf tools: Use readdir() instead of deprecated readdir_r() + - perf thread_map: Use readdir() instead of deprecated readdir_r() + - perf script: Use readdir() instead of deprecated readdir_r() + - perf tools: Remove duplicate const qualifier + - perf annotate browser: Fix behaviour of Shift-Tab with nothing focussed + - perf pmu: Fix misleadingly indented assignment (whitespace) + - perf dwarf: Guard !x86_64 definitions under #ifdef else clause + - perf trace: Do not process PERF_RECORD_LOST twice + - perf tests: Remove wrong semicolon in while loop in CQM test + - perf tools: Use readdir() instead of deprecated readdir_r() again + - md: fix incorrect use of lexx_to_cpu in does_sb_need_changing + - md: fix super_offset endianness in super_1_rdev_size_change + - tcp: fix tcp_mark_head_lost to check skb len before fragmenting + - staging: vt6556: vnt_start Fix missing call to vnt_key_init_table. + - staging: comedi: fix clean-up of comedi_class in comedi_init() + - ext4: check return value of kstrtoull correctly in reserved_clusters_store + - x86/mm/pat: Don't report PAT on CPUs that don't support it + - saa7134: fix warm Medion 7134 EEPROM read + - Linux 4.4.77 + + -- Kleber Sacilotto de Souza Mon, 14 Aug 2017 12:15:04 +0200 + +linux-raspi2 (4.4.0-1070.78) xenial; urgency=low + + * linux-raspi2: 4.4.0-1070.78 -proposed tracker (LP: #1709814) + + [ Ubuntu: 4.4.0-92.115 ] + + * linux: 4.4.0-92.115 -proposed tracker (LP: #1709812) + * Creating conntrack entry failure with kernel 4.4.0-89 (LP: #1709032) + - Revert "netfilter: synproxy: fix conntrackd interaction" + + -- Kleber Sacilotto de Souza Thu, 10 Aug 2017 12:01:06 +0200 + linux-raspi2 (4.4.0-1069.77) xenial; urgency=low [ Ubuntu: 4.4.0-91.114 ] diff -u linux-raspi2-4.4.0/debian/control linux-raspi2-4.4.0/debian/control --- linux-raspi2-4.4.0/debian/control +++ linux-raspi2-4.4.0/debian/control @@ -47,7 +47,7 @@ XS-Testsuite: autopkgtest #XS-Testsuite-Depends: gcc-4.7 binutils -Package: linux-raspi2-headers-4.4.0-1069 +Package: linux-raspi2-headers-4.4.0-1082 Build-Profiles: Architecture: armhf Multi-Arch: foreign @@ -58,23 +58,23 @@ Description: Header files related to Linux kernel version 4.4.0 This package provides kernel header files for version 4.4.0, for sites that want the latest kernel headers. Please read - /usr/share/doc/linux-raspi2-headers-4.4.0-1069/debian.README.gz for details + /usr/share/doc/linux-raspi2-headers-4.4.0-1082/debian.README.gz for details -Package: linux-raspi2-tools-4.4.0-1069 +Package: linux-raspi2-tools-4.4.0-1082 Build-Profiles: Architecture: armhf Section: devel Priority: optional Depends: ${misc:Depends}, ${shlibs:Depends}, linux-tools-common -Description: Linux kernel version specific tools for version 4.4.0-1069 +Description: Linux kernel version specific tools for version 4.4.0-1082 This package provides the architecture dependant parts for kernel version locked tools (such as perf and x86_energy_perf_policy) for - version 4.4.0-1069 on + version 4.4.0-1082 on . You probabaly want to install the linux-tools- meta package. -Package: linux-image-4.4.0-1069-raspi2 +Package: linux-image-4.4.0-1082-raspi2 Build-Profiles: Architecture: armhf Section: kernel @@ -84,7 +84,7 @@ Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools (>= 0.36ubuntu6) | linux-initramfs-tool, kmod Conflicts: hotplug (<< 0.0.20040105-1) Recommends: grub-pc [i386 amd64 x32] | grub-efi-amd64 [amd64 x32] | grub-efi-ia32 [i386 amd64 x32] | grub [i386 amd64 x32] | lilo (>= 19.1) [i386 amd64 x32] | flash-kernel [armhf arm64] | grub-ieee1275 [ppc64el] -Suggests: fdutils, linux-raspi2-tools, linux-headers-4.4.0-1069-raspi2 +Suggests: fdutils, linux-raspi2-tools, linux-headers-4.4.0-1082-raspi2 Description: Linux kernel image for version 4.4.0 on SMP This package contains the Linux kernel image for version 4.4.0 on SMP. @@ -101,21 +101,21 @@ the linux-raspi2 meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-headers-4.4.0-1069-raspi2 +Package: linux-headers-4.4.0-1082-raspi2 Build-Profiles: Architecture: armhf Section: devel Priority: optional -Depends: ${misc:Depends}, linux-raspi2-headers-4.4.0-1069, ${shlibs:Depends} +Depends: ${misc:Depends}, linux-raspi2-headers-4.4.0-1082, ${shlibs:Depends} Provides: linux-headers, linux-headers-3.0 Description: Linux kernel headers for version 4.4.0 on SMP This package provides kernel header files for version 4.4.0 on SMP. . This is for sites that want the latest kernel headers. Please read - /usr/share/doc/linux-headers-4.4.0-1069/debian.README.gz for details. + /usr/share/doc/linux-headers-4.4.0-1082/debian.README.gz for details. -Package: linux-image-4.4.0-1069-raspi2-dbgsym +Package: linux-image-4.4.0-1082-raspi2-dbgsym Build-Profiles: Architecture: armhf Section: devel @@ -133,14 +133,14 @@ unstripped modules. -Package: linux-tools-4.4.0-1069-raspi2 +Package: linux-tools-4.4.0-1082-raspi2 Build-Profiles: Architecture: armhf Section: devel Priority: optional -Depends: ${misc:Depends}, linux-raspi2-tools-4.4.0-1069 -Description: Linux kernel version specific tools for version 4.4.0-1069 +Depends: ${misc:Depends}, linux-raspi2-tools-4.4.0-1082 +Description: Linux kernel version specific tools for version 4.4.0-1082 This package provides the architecture dependant parts for kernel version locked tools (such as perf and x86_energy_perf_policy) for - version 4.4.0-1069 on + version 4.4.0-1082 on . diff -u linux-raspi2-4.4.0/debian/control-scripts/postinst linux-raspi2-4.4.0/debian/control-scripts/postinst --- linux-raspi2-4.4.0/debian/control-scripts/postinst +++ linux-raspi2-4.4.0/debian/control-scripts/postinst @@ -142,7 +142,7 @@ } } - +$initrd = '' if (! -x "$ramdisk"); # For some versions of kernel-package, we had this warning in the # postinst, but the rules did not really interpolate the value in. diff -u linux-raspi2-4.4.0/debian/control-scripts/postrm linux-raspi2-4.4.0/debian/control-scripts/postrm --- linux-raspi2-4.4.0/debian/control-scripts/postrm +++ linux-raspi2-4.4.0/debian/control-scripts/postrm @@ -156,6 +156,8 @@ } } +$initrd = '' if (! -x "$ramdisk"); + if ($link_in_boot) { $image_dest = "/$image_dir/"; $image_dest =~ s|^/*|/|o; diff -u linux-raspi2-4.4.0/debian/control-scripts/preinst linux-raspi2-4.4.0/debian/control-scripts/preinst --- linux-raspi2-4.4.0/debian/control-scripts/preinst +++ linux-raspi2-4.4.0/debian/control-scripts/preinst @@ -161,6 +161,8 @@ } } +$initrd = '' if (! -x "$ramdisk"); + $ENV{KERNEL_ARCH}=$kernel_arch if $kernel_arch; # About to upgrade this package from version $2 TO THIS VERSION. diff -u linux-raspi2-4.4.0/debian/control-scripts/prerm linux-raspi2-4.4.0/debian/control-scripts/prerm --- linux-raspi2-4.4.0/debian/control-scripts/prerm +++ linux-raspi2-4.4.0/debian/control-scripts/prerm @@ -163,6 +163,7 @@ } } +$initrd = '' if (! -x "$ramdisk"); $ENV{KERNEL_ARCH}=$kernel_arch if $kernel_arch; diff -u linux-raspi2-4.4.0/debian/rules linux-raspi2-4.4.0/debian/rules --- linux-raspi2-4.4.0/debian/rules +++ linux-raspi2-4.4.0/debian/rules @@ -79,7 +79,7 @@ # autopkgtest -- rebuild support # only build the first flavour on the assumption it is representative -ifeq ($(DEB_BUILD_PROFILE),autopkgtest) +ifneq ($(filter autopkgtest,$(DEB_BUILD_PROFILES)),) flavours := $(firstword $(flavours)) endif diff -u linux-raspi2-4.4.0/debian/scripts/misc/getabis linux-raspi2-4.4.0/debian/scripts/misc/getabis --- linux-raspi2-4.4.0/debian/scripts/misc/getabis +++ linux-raspi2-4.4.0/debian/scripts/misc/getabis @@ -1,5 +1,7 @@ #!/bin/bash +export LC_ALL=C.UTF-8 + if [ "$#" != "2" ]; then echo "Usage: $0 " 1>&2 exit 1 diff -u linux-raspi2-4.4.0/debian/scripts/misc/insert-ubuntu-changes linux-raspi2-4.4.0/debian/scripts/misc/insert-ubuntu-changes --- linux-raspi2-4.4.0/debian/scripts/misc/insert-ubuntu-changes +++ linux-raspi2-4.4.0/debian/scripts/misc/insert-ubuntu-changes @@ -5,8 +5,30 @@ } my ($changelog, $end, $start) = @ARGV; -$end =~ s/.*\.//; -$start =~ s/.*\.//; +$end =~ s/^\D+//; +$start =~ s/^\D+//; + +sub version_cmp($$) { + my @a = split(/[\.-]+/, $_[0]); + my @b = split(/[\.-]+/, $_[1]); + for (my $i = 1;; $i++) { + if (!defined $a[$i]) { + if (!defined $b[$i]) { + return 0; + } + return -1; + } + if (!defined $b[$i]) { + return 1; + } + if ($a[$i] < $b[$i]) { + return -1; + } + if ($a[$i] > $b[$i]) { + return 1; + } + } +} my @changes = (); my $output = 0; @@ -14,11 +36,11 @@ open(CHG, ") { - if (/^\S+\s+\((.*\.(\d+))\)/) { - if ($2 <= $end) { + if (/^\S+\s+\((.*)\)/) { + if (version_cmp($1, $end) <= 0) { last; } - if ($2 == $start) { + if ($1 eq $start) { $output = 1; } if ($output) { diff -u linux-raspi2-4.4.0/debian/tests/rebuild linux-raspi2-4.4.0/debian/tests/rebuild --- linux-raspi2-4.4.0/debian/tests/rebuild +++ linux-raspi2-4.4.0/debian/tests/rebuild @@ -20 +20 @@ -dpkg-buildpackage -rfakeroot -us -uc -b +dpkg-buildpackage -rfakeroot -us -uc -b -Pautopkgtest diff -u linux-raspi2-4.4.0/drivers/acpi/apei/ghes.c linux-raspi2-4.4.0/drivers/acpi/apei/ghes.c --- linux-raspi2-4.4.0/drivers/acpi/apei/ghes.c +++ linux-raspi2-4.4.0/drivers/acpi/apei/ghes.c @@ -1067,6 +1067,7 @@ if (list_empty(&ghes_sci)) unregister_acpi_hed_notifier(&ghes_notifier_sci); mutex_unlock(&ghes_list_mutex); + synchronize_rcu(); break; case ACPI_HEST_NOTIFY_NMI: ghes_nmi_remove(ghes); diff -u linux-raspi2-4.4.0/drivers/android/binder.c linux-raspi2-4.4.0/drivers/android/binder.c --- linux-raspi2-4.4.0/drivers/android/binder.c +++ linux-raspi2-4.4.0/drivers/android/binder.c @@ -1718,8 +1718,12 @@ list_add_tail(&t->work.entry, target_list); tcomplete->type = BINDER_WORK_TRANSACTION_COMPLETE; list_add_tail(&tcomplete->entry, &thread->todo); - if (target_wait) - wake_up_interruptible(target_wait); + if (target_wait) { + if (reply || !(t->flags & TF_ONE_WAY)) + wake_up_interruptible_sync(target_wait); + else + wake_up_interruptible(target_wait); + } return; err_get_unused_fd_failed: @@ -2865,7 +2869,7 @@ const char *failure_string; struct binder_buffer *buffer; - if (proc->tsk != current) + if (proc->tsk != current->group_leader) return -EINVAL; if ((vma->vm_end - vma->vm_start) > SZ_4M) @@ -2966,8 +2970,8 @@ proc = kzalloc(sizeof(*proc), GFP_KERNEL); if (proc == NULL) return -ENOMEM; - get_task_struct(current); - proc->tsk = current; + get_task_struct(current->group_leader); + proc->tsk = current->group_leader; INIT_LIST_HEAD(&proc->todo); init_waitqueue_head(&proc->wait); proc->default_priority = task_nice(current); diff -u linux-raspi2-4.4.0/drivers/ata/libata-scsi.c linux-raspi2-4.4.0/drivers/ata/libata-scsi.c --- linux-raspi2-4.4.0/drivers/ata/libata-scsi.c +++ linux-raspi2-4.4.0/drivers/ata/libata-scsi.c @@ -2832,10 +2832,12 @@ static struct ata_device *ata_find_dev(struct ata_port *ap, int devno) { if (!sata_pmp_attached(ap)) { - if (likely(devno < ata_link_max_devices(&ap->link))) + if (likely(devno >= 0 && + devno < ata_link_max_devices(&ap->link))) return &ap->link.device[devno]; } else { - if (likely(devno < ap->nr_pmp_links)) + if (likely(devno >= 0 && + devno < ap->nr_pmp_links)) return &ap->pmp_link[devno].device[0]; } diff -u linux-raspi2-4.4.0/drivers/base/core.c linux-raspi2-4.4.0/drivers/base/core.c --- linux-raspi2-4.4.0/drivers/base/core.c +++ linux-raspi2-4.4.0/drivers/base/core.c @@ -2094,7 +2094,11 @@ pm_runtime_get_noresume(dev); pm_runtime_barrier(dev); - if (dev->bus && dev->bus->shutdown) { + if (dev->class && dev->class->shutdown) { + if (initcall_debug) + dev_info(dev, "shutdown\n"); + dev->class->shutdown(dev); + } else if (dev->bus && dev->bus->shutdown) { if (initcall_debug) dev_info(dev, "shutdown\n"); dev->bus->shutdown(dev); diff -u linux-raspi2-4.4.0/drivers/base/platform.c linux-raspi2-4.4.0/drivers/base/platform.c --- linux-raspi2-4.4.0/drivers/base/platform.c +++ linux-raspi2-4.4.0/drivers/base/platform.c @@ -832,9 +832,10 @@ const char *buf, size_t count) { struct platform_device *pdev = to_platform_device(dev); - char *driver_override, *old = pdev->driver_override, *cp; + char *driver_override, *old, *cp; - if (count > PATH_MAX) + /* We need to keep extra room for a newline */ + if (count >= (PAGE_SIZE - 1)) return -EINVAL; driver_override = kstrndup(buf, count, GFP_KERNEL); @@ -845,12 +846,15 @@ if (cp) *cp = '\0'; + device_lock(dev); + old = pdev->driver_override; if (strlen(driver_override)) { pdev->driver_override = driver_override; } else { kfree(driver_override); pdev->driver_override = NULL; } + device_unlock(dev); kfree(old); @@ -861,8 +865,12 @@ struct device_attribute *attr, char *buf) { struct platform_device *pdev = to_platform_device(dev); + ssize_t len; - return sprintf(buf, "%s\n", pdev->driver_override); + device_lock(dev); + len = sprintf(buf, "%s\n", pdev->driver_override); + device_unlock(dev); + return len; } static DEVICE_ATTR_RW(driver_override); diff -u linux-raspi2-4.4.0/drivers/base/power/domain.c linux-raspi2-4.4.0/drivers/base/power/domain.c --- linux-raspi2-4.4.0/drivers/base/power/domain.c +++ linux-raspi2-4.4.0/drivers/base/power/domain.c @@ -1188,7 +1188,6 @@ } dev->power.subsys_data->domain_data = &gpd_data->base; - dev->pm_domain = &genpd->domain; spin_unlock_irq(&dev->power.lock); @@ -1207,7 +1206,6 @@ { spin_lock_irq(&dev->power.lock); - dev->pm_domain = NULL; dev->power.subsys_data->domain_data = NULL; spin_unlock_irq(&dev->power.lock); @@ -1248,6 +1246,8 @@ if (ret) goto out; + dev->pm_domain = &genpd->domain; + genpd->device_count++; genpd->max_off_time_changed = true; @@ -1299,6 +1299,8 @@ if (genpd->detach_dev) genpd->detach_dev(genpd, dev); + dev->pm_domain = NULL; + list_del_init(&pdd->list_node); mutex_unlock(&genpd->lock); @@ -1373,7 +1375,7 @@ int pm_genpd_remove_subdomain(struct generic_pm_domain *genpd, struct generic_pm_domain *subdomain) { - struct gpd_link *link; + struct gpd_link *l, *link; int ret = -EINVAL; if (IS_ERR_OR_NULL(genpd) || IS_ERR_OR_NULL(subdomain)) @@ -1388,7 +1390,7 @@ goto out; } - list_for_each_entry(link, &genpd->master_links, master_node) { + list_for_each_entry_safe(link, l, &genpd->master_links, master_node) { if (link->slave != subdomain) continue; @@ -1642,10 +1644,10 @@ */ void of_genpd_del_provider(struct device_node *np) { - struct of_genpd_provider *cp; + struct of_genpd_provider *cp, *tmp; mutex_lock(&of_genpd_mutex); - list_for_each_entry(cp, &of_genpd_providers, link) { + list_for_each_entry_safe(cp, tmp, &of_genpd_providers, link) { if (cp->node == np) { list_del(&cp->link); of_node_put(cp->node); diff -u linux-raspi2-4.4.0/drivers/base/power/runtime.c linux-raspi2-4.4.0/drivers/base/power/runtime.c --- linux-raspi2-4.4.0/drivers/base/power/runtime.c +++ linux-raspi2-4.4.0/drivers/base/power/runtime.c @@ -515,7 +515,7 @@ callback = RPM_GET_CALLBACK(dev, runtime_suspend); - dev_pm_enable_wake_irq(dev); + dev_pm_enable_wake_irq_check(dev, true); retval = rpm_callback(callback, dev); if (retval) goto fail; @@ -554,7 +554,7 @@ return retval; fail: - dev_pm_disable_wake_irq(dev); + dev_pm_disable_wake_irq_check(dev); __update_runtime_status(dev, RPM_ACTIVE); dev->power.deferred_resume = false; wake_up_all(&dev->power.wait_queue); @@ -737,12 +737,12 @@ callback = RPM_GET_CALLBACK(dev, runtime_resume); - dev_pm_disable_wake_irq(dev); + dev_pm_disable_wake_irq_check(dev); retval = rpm_callback(callback, dev); if (retval) { __update_runtime_status(dev, RPM_SUSPENDED); pm_runtime_cancel_pending(dev); - dev_pm_enable_wake_irq(dev); + dev_pm_enable_wake_irq_check(dev, false); } else { no_callback: __update_runtime_status(dev, RPM_ACTIVE); diff -u linux-raspi2-4.4.0/drivers/block/nbd.c linux-raspi2-4.4.0/drivers/block/nbd.c --- linux-raspi2-4.4.0/drivers/block/nbd.c +++ linux-raspi2-4.4.0/drivers/block/nbd.c @@ -98,6 +98,11 @@ return disk_to_dev(nbd->disk); } +static bool nbd_is_connected(struct nbd_device *nbd) +{ + return !!nbd->task_recv; +} + static const char *nbdcmd_to_ascii(int cmd) { switch (cmd) { @@ -110,6 +115,42 @@ return "invalid"; } +static int nbd_size_clear(struct nbd_device *nbd, struct block_device *bdev) +{ + bdev->bd_inode->i_size = 0; + set_capacity(nbd->disk, 0); + kobject_uevent(&nbd_to_dev(nbd)->kobj, KOBJ_CHANGE); + + return 0; +} + +static void nbd_size_update(struct nbd_device *nbd, struct block_device *bdev) +{ + if (!nbd_is_connected(nbd)) + return; + + bdev->bd_inode->i_size = nbd->bytesize; + set_capacity(nbd->disk, nbd->bytesize >> 9); + kobject_uevent(&nbd_to_dev(nbd)->kobj, KOBJ_CHANGE); +} + +static int nbd_size_set(struct nbd_device *nbd, struct block_device *bdev, + int blocksize, int nr_blocks) +{ + int ret; + + ret = set_blocksize(bdev, blocksize); + if (ret) + return ret; + + nbd->blksize = blocksize; + nbd->bytesize = (loff_t)blocksize * (loff_t)nr_blocks; + + nbd_size_update(nbd, bdev); + + return 0; +} + static void nbd_end_request(struct nbd_device *nbd, struct request *req) { int error = req->errors ? -EIO : 0; @@ -402,7 +443,7 @@ .show = pid_show, }; -static int nbd_thread_recv(struct nbd_device *nbd) +static int nbd_thread_recv(struct nbd_device *nbd, struct block_device *bdev) { struct request *req; int ret; @@ -427,6 +468,8 @@ return ret; } + nbd_size_update(nbd, bdev); + while (1) { req = nbd_read_stat(nbd); if (IS_ERR(req)) { @@ -437,6 +480,8 @@ nbd_end_request(nbd, req); } + nbd_size_clear(nbd, bdev); + device_remove_file(disk_to_dev(nbd->disk), &pid_attr); spin_lock_irqsave(&nbd->tasks_lock, flags); @@ -696,20 +741,19 @@ return -EINVAL; } - case NBD_SET_BLKSIZE: - nbd->blksize = arg; - nbd->bytesize &= ~(nbd->blksize-1); - bdev->bd_inode->i_size = nbd->bytesize; - set_blocksize(bdev, nbd->blksize); - set_capacity(nbd->disk, nbd->bytesize >> 9); - return 0; + case NBD_SET_BLKSIZE: { + loff_t bsize = nbd->bytesize; + do_div(bsize, arg); + + return nbd_size_set(nbd, bdev, arg, bsize); + } case NBD_SET_SIZE: - nbd->bytesize = arg & ~(nbd->blksize-1); - bdev->bd_inode->i_size = nbd->bytesize; - set_blocksize(bdev, nbd->blksize); - set_capacity(nbd->disk, nbd->bytesize >> 9); - return 0; + return nbd_size_set(nbd, bdev, nbd->blksize, + arg / nbd->blksize); + + case NBD_SET_SIZE_BLOCKS: + return nbd_size_set(nbd, bdev, nbd->blksize, arg); case NBD_SET_TIMEOUT: nbd->xmit_timeout = arg * HZ; @@ -725,13 +769,6 @@ nbd->flags = arg; return 0; - case NBD_SET_SIZE_BLOCKS: - nbd->bytesize = ((u64) arg) * nbd->blksize; - bdev->bd_inode->i_size = nbd->bytesize; - set_blocksize(bdev, nbd->blksize); - set_capacity(nbd->disk, nbd->bytesize >> 9); - return 0; - case NBD_DO_IT: { struct task_struct *thread; struct socket *sock; @@ -762,7 +799,7 @@ } nbd_dev_dbg_init(nbd); - error = nbd_thread_recv(nbd); + error = nbd_thread_recv(nbd, bdev); nbd_dev_dbg_close(nbd); kthread_stop(thread); diff -u linux-raspi2-4.4.0/drivers/block/rbd.c linux-raspi2-4.4.0/drivers/block/rbd.c --- linux-raspi2-4.4.0/drivers/block/rbd.c +++ linux-raspi2-4.4.0/drivers/block/rbd.c @@ -2736,7 +2736,7 @@ * from the parent. */ page_count = (u32)calc_pages_for(0, length); - pages = ceph_alloc_page_vector(page_count, GFP_KERNEL); + pages = ceph_alloc_page_vector(page_count, GFP_NOIO); if (IS_ERR(pages)) { result = PTR_ERR(pages); pages = NULL; @@ -2863,7 +2863,7 @@ */ size = sizeof (__le64) + sizeof (__le32) + sizeof (__le32); page_count = (u32)calc_pages_for(0, size); - pages = ceph_alloc_page_vector(page_count, GFP_KERNEL); + pages = ceph_alloc_page_vector(page_count, GFP_NOIO); if (IS_ERR(pages)) return PTR_ERR(pages); diff -u linux-raspi2-4.4.0/drivers/bluetooth/btusb.c linux-raspi2-4.4.0/drivers/bluetooth/btusb.c --- linux-raspi2-4.4.0/drivers/bluetooth/btusb.c +++ linux-raspi2-4.4.0/drivers/bluetooth/btusb.c @@ -341,6 +341,7 @@ { USB_DEVICE(0x13d3, 0x3410), .driver_info = BTUSB_REALTEK }, { USB_DEVICE(0x13d3, 0x3416), .driver_info = BTUSB_REALTEK }, { USB_DEVICE(0x13d3, 0x3459), .driver_info = BTUSB_REALTEK }, + { USB_DEVICE(0x13d3, 0x3494), .driver_info = BTUSB_REALTEK }, /* Additional Realtek 8821AE Bluetooth devices */ { USB_DEVICE(0x0b05, 0x17dc), .driver_info = BTUSB_REALTEK }, @@ -1659,8 +1660,8 @@ struct sk_buff *skb; const struct firmware *fw; const u8 *fw_ptr; - int disable_patch; - struct intel_version *ver; + int disable_patch, err; + struct intel_version ver; const u8 mfg_enable[] = { 0x01, 0x00 }; const u8 mfg_disable[] = { 0x00, 0x00 }; @@ -1691,35 +1692,22 @@ * The returned information are hardware variant and revision plus * firmware variant, revision and build number. */ - skb = __hci_cmd_sync(hdev, 0xfc05, 0, NULL, HCI_INIT_TIMEOUT); - if (IS_ERR(skb)) { - BT_ERR("%s reading Intel fw version command failed (%ld)", - hdev->name, PTR_ERR(skb)); - return PTR_ERR(skb); - } - - if (skb->len != sizeof(*ver)) { - BT_ERR("%s Intel version event length mismatch", hdev->name); - kfree_skb(skb); - return -EIO; - } - - ver = (struct intel_version *)skb->data; + err = btintel_read_version(hdev, &ver); + if (err) + return err; BT_INFO("%s: read Intel version: %02x%02x%02x%02x%02x%02x%02x%02x%02x", - hdev->name, ver->hw_platform, ver->hw_variant, - ver->hw_revision, ver->fw_variant, ver->fw_revision, - ver->fw_build_num, ver->fw_build_ww, ver->fw_build_yy, - ver->fw_patch_num); + hdev->name, ver.hw_platform, ver.hw_variant, ver.hw_revision, + ver.fw_variant, ver.fw_revision, ver.fw_build_num, + ver.fw_build_ww, ver.fw_build_yy, ver.fw_patch_num); /* fw_patch_num indicates the version of patch the device currently * have. If there is no patch data in the device, it is always 0x00. * So, if it is other than 0x00, no need to patch the device again. */ - if (ver->fw_patch_num) { + if (ver.fw_patch_num) { BT_INFO("%s: Intel device is already patched. patch num: %02x", - hdev->name, ver->fw_patch_num); - kfree_skb(skb); + hdev->name, ver.fw_patch_num); goto complete; } @@ -1729,15 +1717,11 @@ * If no patch file is found, allow the device to operate without * a patch. */ - fw = btusb_setup_intel_get_fw(hdev, ver); - if (!fw) { - kfree_skb(skb); + fw = btusb_setup_intel_get_fw(hdev, &ver); + if (!fw) goto complete; - } fw_ptr = fw->data; - kfree_skb(skb); - /* This Intel specific command enables the manufacturer mode of the * controller. * @@ -2022,7 +2006,7 @@ 0x00, 0x08, 0x04, 0x00 }; struct btusb_data *data = hci_get_drvdata(hdev); struct sk_buff *skb; - struct intel_version *ver; + struct intel_version ver; struct intel_boot_params *params; const struct firmware *fw; const u8 *fw_ptr; @@ -2040,45 +2024,36 @@ * is in bootloader mode or if it already has operational firmware * loaded. */ - skb = __hci_cmd_sync(hdev, 0xfc05, 0, NULL, HCI_INIT_TIMEOUT); - if (IS_ERR(skb)) { - BT_ERR("%s: Reading Intel version information failed (%ld)", - hdev->name, PTR_ERR(skb)); - return PTR_ERR(skb); - } - - if (skb->len != sizeof(*ver)) { - BT_ERR("%s: Intel version event size mismatch", hdev->name); - kfree_skb(skb); - return -EILSEQ; - } - - ver = (struct intel_version *)skb->data; + err = btintel_read_version(hdev, &ver); + if (err) + return err; /* The hardware platform number has a fixed value of 0x37 and * for now only accept this single value. */ - if (ver->hw_platform != 0x37) { + if (ver.hw_platform != 0x37) { BT_ERR("%s: Unsupported Intel hardware platform (%u)", - hdev->name, ver->hw_platform); - kfree_skb(skb); + hdev->name, ver.hw_platform); return -EINVAL; } - /* At the moment the iBT 3.0 hardware variants 0x0b (LnP/SfP) - * and 0x0c (WsP) are supported by this firmware loading method. + /* Check for supported iBT hardware variants of this firmware + * loading method. * * This check has been put in place to ensure correct forward * compatibility options when newer hardware variants come along. */ - if (ver->hw_variant != 0x0b && ver->hw_variant != 0x0c) { + switch (ver.hw_variant) { + case 0x0b: /* SfP */ + case 0x0c: /* WsP */ + break; + default: BT_ERR("%s: Unsupported Intel hardware variant (%u)", - hdev->name, ver->hw_variant); - kfree_skb(skb); + hdev->name, ver.hw_variant); return -EINVAL; } - btintel_version_info(hdev, ver); + btintel_version_info(hdev, &ver); /* The firmware variant determines if the device is in bootloader * mode or is running operational firmware. The value 0x06 identifies @@ -2093,8 +2068,7 @@ * It is not possible to use the Secure Boot Parameters in this * case since that command is only available in bootloader mode. */ - if (ver->fw_variant == 0x23) { - kfree_skb(skb); + if (ver.fw_variant == 0x23) { clear_bit(BTUSB_BOOTLOADER, &data->flags); btintel_check_bdaddr(hdev); return 0; @@ -2103,15 +2077,12 @@ /* If the device is not in bootloader mode, then the only possible * choice is to return an error and abort the device initialization. */ - if (ver->fw_variant != 0x06) { + if (ver.fw_variant != 0x06) { BT_ERR("%s: Unsupported Intel firmware variant (%u)", - hdev->name, ver->fw_variant); - kfree_skb(skb); + hdev->name, ver.fw_variant); return -ENODEV; } - kfree_skb(skb); - /* Read the secure boot parameters to identify the operating * details of the bootloader. */ @@ -2171,10 +2142,14 @@ /* With this Intel bootloader only the hardware variant and device * revision information are used to select the right firmware. * - * Currently this bootloader support is limited to hardware variant - * iBT 3.0 (LnP/SfP) which is identified by the value 11 (0x0b). + * The firmware filename is ibt--.sfi. + * + * Currently the supported hardware variants are: + * 11 (0x0b) for iBT3.0 (LnP/SfP) + * 12 (0x0c) for iBT3.5 (WsP) */ - snprintf(fwname, sizeof(fwname), "intel/ibt-11-%u.sfi", + snprintf(fwname, sizeof(fwname), "intel/ibt-%u-%u.sfi", + le16_to_cpu(ver.hw_variant), le16_to_cpu(params->dev_revid)); err = request_firmware(&fw, fwname, &hdev->dev); @@ -2190,7 +2165,8 @@ /* Save the DDC file name for later use to apply once the firmware * downloading is done. */ - snprintf(fwname, sizeof(fwname), "intel/ibt-11-%u.ddc", + snprintf(fwname, sizeof(fwname), "intel/ibt-%u-%u.ddc", + le16_to_cpu(ver.hw_variant), le16_to_cpu(params->dev_revid)); kfree_skb(skb); diff -u linux-raspi2-4.4.0/drivers/bluetooth/hci_intel.c linux-raspi2-4.4.0/drivers/bluetooth/hci_intel.c --- linux-raspi2-4.4.0/drivers/bluetooth/hci_intel.c +++ linux-raspi2-4.4.0/drivers/bluetooth/hci_intel.c @@ -548,7 +548,7 @@ struct intel_device *idev = NULL; struct hci_dev *hdev = hu->hdev; struct sk_buff *skb; - struct intel_version *ver; + struct intel_version ver; struct intel_boot_params *params; struct list_head *p; const struct firmware *fw; @@ -596,51 +596,36 @@ * is in bootloader mode or if it already has operational firmware * loaded. */ - skb = __hci_cmd_sync(hdev, 0xfc05, 0, NULL, HCI_INIT_TIMEOUT); - if (IS_ERR(skb)) { - bt_dev_err(hdev, "Reading Intel version information failed (%ld)", - PTR_ERR(skb)); - return PTR_ERR(skb); - } - - if (skb->len != sizeof(*ver)) { - bt_dev_err(hdev, "Intel version event size mismatch"); - kfree_skb(skb); - return -EILSEQ; - } - - ver = (struct intel_version *)skb->data; - if (ver->status) { - bt_dev_err(hdev, "Intel version command failure (%02x)", - ver->status); - err = -bt_to_errno(ver->status); - kfree_skb(skb); + err = btintel_read_version(hdev, &ver); + if (err) return err; - } /* The hardware platform number has a fixed value of 0x37 and * for now only accept this single value. */ - if (ver->hw_platform != 0x37) { + if (ver.hw_platform != 0x37) { bt_dev_err(hdev, "Unsupported Intel hardware platform (%u)", - ver->hw_platform); - kfree_skb(skb); + ver.hw_platform); return -EINVAL; } - /* At the moment only the hardware variant iBT 3.0 (LnP/SfP) is - * supported by this firmware loading method. This check has been - * put in place to ensure correct forward compatibility options - * when newer hardware variants come along. - */ - if (ver->hw_variant != 0x0b) { + /* Check for supported iBT hardware variants of this firmware + * loading method. + * + * This check has been put in place to ensure correct forward + * compatibility options when newer hardware variants come along. + */ + switch (ver.hw_variant) { + case 0x0b: /* LnP */ + case 0x0c: /* WsP */ + break; + default: bt_dev_err(hdev, "Unsupported Intel hardware variant (%u)", - ver->hw_variant); - kfree_skb(skb); + ver.hw_variant); return -EINVAL; } - btintel_version_info(hdev, ver); + btintel_version_info(hdev, &ver); /* The firmware variant determines if the device is in bootloader * mode or is running operational firmware. The value 0x06 identifies @@ -655,8 +640,7 @@ * It is not possible to use the Secure Boot Parameters in this * case since that command is only available in bootloader mode. */ - if (ver->fw_variant == 0x23) { - kfree_skb(skb); + if (ver.fw_variant == 0x23) { clear_bit(STATE_BOOTLOADER, &intel->flags); btintel_check_bdaddr(hdev); return 0; @@ -665,15 +649,12 @@ /* If the device is not in bootloader mode, then the only possible * choice is to return an error and abort the device initialization. */ - if (ver->fw_variant != 0x06) { + if (ver.fw_variant != 0x06) { bt_dev_err(hdev, "Unsupported Intel firmware variant (%u)", - ver->fw_variant); - kfree_skb(skb); + ver.fw_variant); return -ENODEV; } - kfree_skb(skb); - /* Read the secure boot parameters to identify the operating * details of the bootloader. */ @@ -731,11 +712,14 @@ /* With this Intel bootloader only the hardware variant and device * revision information are used to select the right firmware. * - * Currently this bootloader support is limited to hardware variant - * iBT 3.0 (LnP/SfP) which is identified by the value 11 (0x0b). + * The firmware filename is ibt--.sfi. + * + * Currently the supported hardware variants are: + * 11 (0x0b) for iBT 3.0 (LnP/SfP) */ - snprintf(fwname, sizeof(fwname), "intel/ibt-11-%u.sfi", - le16_to_cpu(params->dev_revid)); + snprintf(fwname, sizeof(fwname), "intel/ibt-%u-%u.sfi", + le16_to_cpu(ver.hw_variant), + le16_to_cpu(params->dev_revid)); err = request_firmware(&fw, fwname, &hdev->dev); if (err < 0) { @@ -748,8 +732,9 @@ bt_dev_info(hdev, "Found device firmware: %s", fwname); /* Save the DDC file name for later */ - snprintf(fwname, sizeof(fwname), "intel/ibt-11-%u.ddc", - le16_to_cpu(params->dev_revid)); + snprintf(fwname, sizeof(fwname), "intel/ibt-%u-%u.ddc", + le16_to_cpu(ver.hw_variant), + le16_to_cpu(params->dev_revid)); kfree_skb(skb); diff -u linux-raspi2-4.4.0/drivers/char/ipmi/ipmi_msghandler.c linux-raspi2-4.4.0/drivers/char/ipmi/ipmi_msghandler.c --- linux-raspi2-4.4.0/drivers/char/ipmi/ipmi_msghandler.c +++ linux-raspi2-4.4.0/drivers/char/ipmi/ipmi_msghandler.c @@ -3877,6 +3877,9 @@ * because the lower layer is allowed to hold locks while calling * message delivery. */ + + rcu_read_lock(); + if (!run_to_completion) spin_lock_irqsave(&intf->xmit_msgs_lock, flags); if (intf->curr_msg == NULL && !intf->in_shutdown) { @@ -3899,6 +3902,8 @@ if (newmsg) intf->handlers->sender(intf->send_info, newmsg); + rcu_read_unlock(); + handle_new_recv_msgs(intf); } diff -u linux-raspi2-4.4.0/drivers/char/ipmi/ipmi_ssif.c linux-raspi2-4.4.0/drivers/char/ipmi/ipmi_ssif.c --- linux-raspi2-4.4.0/drivers/char/ipmi/ipmi_ssif.c +++ linux-raspi2-4.4.0/drivers/char/ipmi/ipmi_ssif.c @@ -758,6 +758,11 @@ result, len, data[2]); } else if (data[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 || data[1] != IPMI_GET_MSG_FLAGS_CMD) { + /* + * Don't abort here, maybe it was a queued + * response to a previous command. + */ + ipmi_ssif_unlock_cond(ssif_info, flags); pr_warn(PFX "Invalid response getting flags: %x %x\n", data[0], data[1]); } else { diff -u linux-raspi2-4.4.0/drivers/char/tpm/tpm-chip.c linux-raspi2-4.4.0/drivers/char/tpm/tpm-chip.c --- linux-raspi2-4.4.0/drivers/char/tpm/tpm-chip.c +++ linux-raspi2-4.4.0/drivers/char/tpm/tpm-chip.c @@ -29,33 +29,92 @@ #include "tpm.h" #include "tpm_eventlog.h" -static DECLARE_BITMAP(dev_mask, TPM_NUM_DEVICES); -static LIST_HEAD(tpm_chip_list); -static DEFINE_SPINLOCK(driver_lock); +DEFINE_IDR(dev_nums_idr); +static DEFINE_MUTEX(idr_lock); struct class *tpm_class; dev_t tpm_devt; -/* - * tpm_chip_find_get - return tpm_chip for a given chip number - * @chip_num the device number for the chip +/** + * tpm_try_get_ops() - Get a ref to the tpm_chip + * @chip: Chip to ref + * + * The caller must already have some kind of locking to ensure that chip is + * valid. This function will lock the chip so that the ops member can be + * accessed safely. The locking prevents tpm_chip_unregister from + * completing, so it should not be held for long periods. + * + * Returns -ERRNO if the chip could not be got. + */ +int tpm_try_get_ops(struct tpm_chip *chip) +{ + int rc = -EIO; + + get_device(&chip->dev); + + down_read(&chip->ops_sem); + if (!chip->ops) + goto out_lock; + + if (!try_module_get(chip->dev.parent->driver->owner)) + goto out_lock; + + return 0; +out_lock: + up_read(&chip->ops_sem); + put_device(&chip->dev); + return rc; +} +EXPORT_SYMBOL_GPL(tpm_try_get_ops); + +/** + * tpm_put_ops() - Release a ref to the tpm_chip + * @chip: Chip to put + * + * This is the opposite pair to tpm_try_get_ops(). After this returns chip may + * be kfree'd. */ +void tpm_put_ops(struct tpm_chip *chip) +{ + module_put(chip->dev.parent->driver->owner); + up_read(&chip->ops_sem); + put_device(&chip->dev); +} +EXPORT_SYMBOL_GPL(tpm_put_ops); + +/** + * tpm_chip_find_get() - return tpm_chip for a given chip number + * @chip_num: id to find + * + * The return'd chip has been tpm_try_get_ops'd and must be released via + * tpm_put_ops + */ struct tpm_chip *tpm_chip_find_get(int chip_num) { - struct tpm_chip *pos, *chip = NULL; + struct tpm_chip *chip, *res = NULL; + int chip_prev; + + mutex_lock(&idr_lock); - rcu_read_lock(); - list_for_each_entry_rcu(pos, &tpm_chip_list, list) { - if (chip_num != TPM_ANY_NUM && chip_num != pos->dev_num) - continue; - - if (try_module_get(pos->pdev->driver->owner)) { - chip = pos; - break; - } + if (chip_num == TPM_ANY_NUM) { + chip_num = 0; + do { + chip_prev = chip_num; + chip = idr_get_next(&dev_nums_idr, &chip_num); + if (chip && !tpm_try_get_ops(chip)) { + res = chip; + break; + } + } while (chip_prev != chip_num); + } else { + chip = idr_find_slowpath(&dev_nums_idr, chip_num); + if (chip && !tpm_try_get_ops(chip)) + res = chip; } - rcu_read_unlock(); - return chip; + + mutex_unlock(&idr_lock); + + return res; } /** @@ -68,12 +127,48 @@ { struct tpm_chip *chip = container_of(dev, struct tpm_chip, dev); - spin_lock(&driver_lock); - clear_bit(chip->dev_num, dev_mask); - spin_unlock(&driver_lock); + mutex_lock(&idr_lock); + idr_remove(&dev_nums_idr, chip->dev_num); + mutex_unlock(&idr_lock); + kfree(chip); } + +/** + * tpm_class_shutdown() - prepare the TPM device for loss of power. + * @dev: device to which the chip is associated. + * + * Issues a TPM2_Shutdown command prior to loss of power, as required by the + * TPM 2.0 spec. + * Then, calls bus- and device- specific shutdown code. + * + * XXX: This codepath relies on the fact that sysfs is not enabled for + * TPM2: sysfs uses an implicit lock on chip->ops, so this could race if TPM2 + * has sysfs support enabled before TPM sysfs's implicit locking is fixed. + */ +static int tpm_class_shutdown(struct device *dev) +{ + struct tpm_chip *chip = container_of(dev, struct tpm_chip, dev); + + if (chip->flags & TPM_CHIP_FLAG_TPM2) { + down_write(&chip->ops_sem); + tpm2_shutdown(chip, TPM2_SU_CLEAR); + chip->ops = NULL; + up_write(&chip->ops_sem); + } + /* Allow bus- and device-specific code to run. Note: since chip->ops + * is NULL, more-specific shutdown code will not be able to issue TPM + * commands. + */ + if (dev->bus && dev->bus->shutdown) + dev->bus->shutdown(dev); + else if (dev->driver && dev->driver->shutdown) + dev->driver->shutdown(dev); + return 0; +} + + /** * tpmm_chip_alloc() - allocate a new struct tpm_chip instance * @dev: device to which the chip is associated @@ -95,31 +190,28 @@ return ERR_PTR(-ENOMEM); mutex_init(&chip->tpm_mutex); - INIT_LIST_HEAD(&chip->list); + init_rwsem(&chip->ops_sem); chip->ops = ops; - spin_lock(&driver_lock); - chip->dev_num = find_first_zero_bit(dev_mask, TPM_NUM_DEVICES); - spin_unlock(&driver_lock); - - if (chip->dev_num >= TPM_NUM_DEVICES) { + mutex_lock(&idr_lock); + rc = idr_alloc(&dev_nums_idr, NULL, 0, TPM_NUM_DEVICES, GFP_KERNEL); + mutex_unlock(&idr_lock); + if (rc < 0) { dev_err(dev, "No available tpm device numbers\n"); kfree(chip); - return ERR_PTR(-ENOMEM); + return ERR_PTR(rc); } - - set_bit(chip->dev_num, dev_mask); + chip->dev_num = rc; scnprintf(chip->devname, sizeof(chip->devname), "tpm%d", chip->dev_num); - chip->pdev = dev; - dev_set_drvdata(dev, chip); chip->dev.class = tpm_class; + chip->dev.class->shutdown = tpm_class_shutdown; chip->dev.release = tpm_dev_release; - chip->dev.parent = chip->pdev; + chip->dev.parent = dev; #ifdef CONFIG_ACPI chip->dev.groups = chip->groups; #endif @@ -134,7 +226,7 @@ device_initialize(&chip->dev); cdev_init(&chip->cdev, &tpm_fops); - chip->cdev.owner = chip->pdev->driver->owner; + chip->cdev.owner = dev->driver->owner; chip->cdev.kobj.parent = &chip->dev.kobj; rc = devm_add_action(dev, (void (*)(void *)) put_device, &chip->dev); @@ -172,6 +264,11 @@ return rc; } + /* Make the chip available. */ + mutex_lock(&idr_lock); + idr_replace(&dev_nums_idr, chip, chip->dev_num); + mutex_unlock(&idr_lock); + return rc; } @@ -179,6 +276,16 @@ { cdev_del(&chip->cdev); device_del(&chip->dev); + + /* Make the chip unavailable. */ + mutex_lock(&idr_lock); + idr_replace(&dev_nums_idr, NULL, chip->dev_num); + mutex_unlock(&idr_lock); + + /* Make the driver uncallable. */ + down_write(&chip->ops_sem); + chip->ops = NULL; + up_write(&chip->ops_sem); } static int tpm1_chip_register(struct tpm_chip *chip) @@ -233,17 +340,11 @@ if (rc) goto out_err; - /* Make the chip available. */ - spin_lock(&driver_lock); - list_add_tail_rcu(&chip->list, &tpm_chip_list); - spin_unlock(&driver_lock); - chip->flags |= TPM_CHIP_FLAG_REGISTERED; if (!(chip->flags & TPM_CHIP_FLAG_TPM2)) { - rc = __compat_only_sysfs_link_entry_to_kobj(&chip->pdev->kobj, - &chip->dev.kobj, - "ppi"); + rc = __compat_only_sysfs_link_entry_to_kobj( + &chip->dev.parent->kobj, &chip->dev.kobj, "ppi"); if (rc && rc != -ENOENT) { tpm_chip_unregister(chip); return rc; @@ -264,6 +365,9 @@ * Takes the chip first away from the list of available TPM chips and then * cleans up all the resources reserved by tpm_chip_register(). * + * Once this function returns the driver call backs in 'op's will not be + * running and will no longer start. + * * NOTE: This function should be only called before deinitializing chip * resources. */ @@ -272,13 +376,8 @@ if (!(chip->flags & TPM_CHIP_FLAG_REGISTERED)) return; - spin_lock(&driver_lock); - list_del_rcu(&chip->list); - spin_unlock(&driver_lock); - synchronize_rcu(); - if (!(chip->flags & TPM_CHIP_FLAG_TPM2)) - sysfs_remove_link(&chip->pdev->kobj, "ppi"); + sysfs_remove_link(&chip->dev.parent->kobj, "ppi"); tpm1_chip_unregister(chip); tpm_del_char_device(chip); diff -u linux-raspi2-4.4.0/drivers/char/tpm/tpm-dev.c linux-raspi2-4.4.0/drivers/char/tpm/tpm-dev.c --- linux-raspi2-4.4.0/drivers/char/tpm/tpm-dev.c +++ linux-raspi2-4.4.0/drivers/char/tpm/tpm-dev.c @@ -61,7 +61,7 @@ * by the check of is_open variable, which is protected * by driver_lock. */ if (test_and_set_bit(0, &chip->is_open)) { - dev_dbg(chip->pdev, "Another process owns this TPM\n"); + dev_dbg(&chip->dev, "Another process owns this TPM\n"); return -EBUSY; } @@ -79,7 +79,6 @@ INIT_WORK(&priv->work, timeout_work); file->private_data = priv; - get_device(chip->pdev); return 0; } @@ -137,9 +136,18 @@ return -EFAULT; } - /* atomic tpm command send and result receive */ + /* atomic tpm command send and result receive. We only hold the ops + * lock during this period so that the tpm can be unregistered even if + * the char dev is held open. + */ + if (tpm_try_get_ops(priv->chip)) { + mutex_unlock(&priv->buffer_mutex); + return -EPIPE; + } out_size = tpm_transmit(priv->chip, priv->data_buffer, sizeof(priv->data_buffer), 0); + + tpm_put_ops(priv->chip); if (out_size < 0) { mutex_unlock(&priv->buffer_mutex); return out_size; @@ -166,7 +174,6 @@ file->private_data = NULL; atomic_set(&priv->data_pending, 0); clear_bit(0, &priv->chip->is_open); - put_device(priv->chip->pdev); kfree(priv); return 0; } diff -u linux-raspi2-4.4.0/drivers/char/tpm/tpm-interface.c linux-raspi2-4.4.0/drivers/char/tpm/tpm-interface.c --- linux-raspi2-4.4.0/drivers/char/tpm/tpm-interface.c +++ linux-raspi2-4.4.0/drivers/char/tpm/tpm-interface.c @@ -345,7 +345,7 @@ if (count == 0) return -ENODATA; if (count > bufsiz) { - dev_err(chip->pdev, + dev_err(&chip->dev, "invalid count value %x %zx\n", count, bufsiz); return -E2BIG; } @@ -355,7 +355,7 @@ rc = chip->ops->send(chip, (u8 *) buf, count); if (rc < 0) { - dev_err(chip->pdev, + dev_err(&chip->dev, "tpm_transmit: tpm_send: error %zd\n", rc); goto out; } @@ -374,7 +374,7 @@ goto out_recv; if (chip->ops->req_canceled(chip, status)) { - dev_err(chip->pdev, "Operation Canceled\n"); + dev_err(&chip->dev, "Operation Canceled\n"); rc = -ECANCELED; goto out; } @@ -384,14 +384,14 @@ } while (time_before(jiffies, stop)); chip->ops->cancel(chip); - dev_err(chip->pdev, "Operation Timed out\n"); + dev_err(&chip->dev, "Operation Timed out\n"); rc = -ETIME; goto out; out_recv: rc = chip->ops->recv(chip, (u8 *) buf, bufsiz); if (rc < 0) - dev_err(chip->pdev, + dev_err(&chip->dev, "tpm_transmit: tpm_recv: error %zd\n", rc); out: if (!(flags & TPM_TRANSMIT_UNLOCKED)) @@ -418,7 +418,7 @@ err = be32_to_cpu(header->return_code); if (err != 0 && desc) - dev_err(chip->pdev, "A TPM error (%d) occurred %s\n", err, + dev_err(&chip->dev, "A TPM error (%d) occurred %s\n", err, desc); return err; @@ -531,7 +531,7 @@ if (rc == TPM_ERR_INVALID_POSTINIT) { /* The TPM is not started, we are the first to talk to it. Execute a startup command. */ - dev_info(chip->pdev, "Issuing TPM_STARTUP"); + dev_info(&chip->dev, "Issuing TPM_STARTUP"); if (tpm_startup(chip, TPM_ST_CLEAR)) return rc; @@ -543,7 +543,7 @@ 0, NULL); } if (rc) { - dev_err(chip->pdev, + dev_err(&chip->dev, "A TPM error (%zd) occurred attempting to determine the timeouts\n", rc); goto duration; @@ -582,7 +582,7 @@ /* Report adjusted timeouts */ if (chip->vendor.timeout_adjusted) { - dev_info(chip->pdev, + dev_info(&chip->dev, HW_ERR "Adjusting reported timeouts: A %lu->%luus B %lu->%luus C %lu->%luus D %lu->%luus\n", old_timeout[0], new_timeout[0], old_timeout[1], new_timeout[1], @@ -629,7 +629,7 @@ chip->vendor.duration[TPM_MEDIUM] *= 1000; chip->vendor.duration[TPM_LONG] *= 1000; chip->vendor.duration_adjusted = true; - dev_info(chip->pdev, "Adjusting TPM timeout parameters."); + dev_info(&chip->dev, "Adjusting TPM timeout parameters."); } return 0; } @@ -704,7 +704,7 @@ rc = (chip->flags & TPM_CHIP_FLAG_TPM2) != 0; - tpm_chip_put(chip); + tpm_put_ops(chip); return rc; } @@ -733,7 +733,7 @@ rc = tpm2_pcr_read(chip, pcr_idx, res_buf); else rc = tpm_pcr_read_dev(chip, pcr_idx, res_buf); - tpm_chip_put(chip); + tpm_put_ops(chip); return rc; } EXPORT_SYMBOL_GPL(tpm_pcr_read); @@ -768,7 +768,7 @@ if (chip->flags & TPM_CHIP_FLAG_TPM2) { rc = tpm2_pcr_extend(chip, pcr_idx, hash); - tpm_chip_put(chip); + tpm_put_ops(chip); return rc; } @@ -778,7 +778,7 @@ rc = tpm_transmit_cmd(chip, &cmd, EXTEND_PCR_RESULT_SIZE, 0, "attempting extend a PCR value"); - tpm_chip_put(chip); + tpm_put_ops(chip); return rc; } EXPORT_SYMBOL_GPL(tpm_pcr_extend); @@ -819,7 +819,9 @@ * around 300ms while the self test is ongoing, keep trying * until the self test duration expires. */ if (rc == -ETIME) { - dev_info(chip->pdev, HW_ERR "TPM command timed out during continue self test"); + dev_info( + &chip->dev, HW_ERR + "TPM command timed out during continue self test"); msleep(delay_msec); continue; } @@ -829,7 +831,7 @@ rc = be32_to_cpu(cmd.header.out.return_code); if (rc == TPM_ERR_DISABLED || rc == TPM_ERR_DEACTIVATED) { - dev_info(chip->pdev, + dev_info(&chip->dev, "TPM is disabled/deactivated (0x%X)\n", rc); /* TPM is disabled and/or deactivated; driver can * proceed and TPM does handle commands for @@ -857,7 +859,7 @@ rc = tpm_transmit_cmd(chip, cmd, buflen, 0, "attempting tpm_cmd"); - tpm_chip_put(chip); + tpm_put_ops(chip); return rc; } EXPORT_SYMBOL_GPL(tpm_send); @@ -983,10 +985,10 @@ } if (rc) - dev_err(chip->pdev, + dev_err(&chip->dev, "Error (%d) sending savestate before suspend\n", rc); else if (try > 0) - dev_warn(chip->pdev, "TPM savestate took %dms\n", + dev_warn(&chip->dev, "TPM savestate took %dms\n", try * TPM_TIMEOUT_RETRY); return rc; @@ -1040,7 +1042,7 @@ if (chip->flags & TPM_CHIP_FLAG_TPM2) { err = tpm2_get_random(chip, out, max); - tpm_chip_put(chip); + tpm_put_ops(chip); return err; } @@ -1062,7 +1064,7 @@ num_bytes -= recd; } while (retries-- && total < max); - tpm_chip_put(chip); + tpm_put_ops(chip); return total ? total : -EIO; } EXPORT_SYMBOL_GPL(tpm_get_random); @@ -1088,7 +1090,7 @@ rc = tpm2_seal_trusted(chip, payload, options); - tpm_chip_put(chip); + tpm_put_ops(chip); return rc; } EXPORT_SYMBOL_GPL(tpm_seal_trusted); @@ -1114,7 +1116,8 @@ rc = tpm2_unseal_trusted(chip, payload, options); - tpm_chip_put(chip); + tpm_put_ops(chip); + return rc; } EXPORT_SYMBOL_GPL(tpm_unseal_trusted); @@ -1141,6 +1144,7 @@ static void __exit tpm_exit(void) { + idr_destroy(&dev_nums_idr); class_destroy(tpm_class); unregister_chrdev_region(tpm_devt, TPM_NUM_DEVICES); } diff -u linux-raspi2-4.4.0/drivers/char/tpm/tpm-sysfs.c linux-raspi2-4.4.0/drivers/char/tpm/tpm-sysfs.c --- linux-raspi2-4.4.0/drivers/char/tpm/tpm-sysfs.c +++ linux-raspi2-4.4.0/drivers/char/tpm/tpm-sysfs.c @@ -38,6 +38,8 @@ struct tpm_chip *chip = dev_get_drvdata(dev); + memset(&tpm_cmd, 0, sizeof(tpm_cmd)); + tpm_cmd.header.in = tpm_readpubek_header; err = tpm_transmit_cmd(chip, &tpm_cmd, READ_PUBEK_RESULT_SIZE, 0, "attempting to read the PUBEK"); @@ -286,14 +288,26 @@ int err; - err = sysfs_create_group(&chip->pdev->kobj, + + /* XXX: If you wish to remove this restriction, you must first update + * tpm_sysfs to explicitly lock chip->ops. + */ + if (chip->flags & TPM_CHIP_FLAG_TPM2) + return 0; + + err = sysfs_create_group(&chip->dev.parent->kobj, &tpm_dev_group); if (err) - dev_err(chip->pdev, + dev_err(&chip->dev, "failed to create sysfs attributes, %d\n", err); return err; } void tpm_sysfs_del_device(struct tpm_chip *chip) { - sysfs_remove_group(&chip->pdev->kobj, &tpm_dev_group); + /* The sysfs routines rely on an implicit tpm_try_get_ops, this + * function is called before ops is null'd and the sysfs core + * synchronizes this removal so that no callbacks are running or can + * run again + */ + sysfs_remove_group(&chip->dev.parent->kobj, &tpm_dev_group); } diff -u linux-raspi2-4.4.0/drivers/char/tpm/tpm.h linux-raspi2-4.4.0/drivers/char/tpm/tpm.h --- linux-raspi2-4.4.0/drivers/char/tpm/tpm.h +++ linux-raspi2-4.4.0/drivers/char/tpm/tpm.h @@ -34,7 +34,7 @@ enum tpm_const { TPM_MINOR = 224, /* officially assigned */ TPM_BUFSIZE = 4096, - TPM_NUM_DEVICES = 256, + TPM_NUM_DEVICES = 65536, TPM_RETRY = 50, /* 5 seconds */ }; @@ -167,11 +167,16 @@ }; struct tpm_chip { - struct device *pdev; /* Device stuff */ struct device dev; struct cdev cdev; + /* A driver callback under ops cannot be run unless ops_sem is held + * (sometimes implicitly, eg for the sysfs code). ops becomes null + * when the driver is unregistered, see tpm_try_get_ops. + */ + struct rw_semaphore ops_sem; const struct tpm_class_ops *ops; + unsigned int flags; int dev_num; /* /dev/tpm# */ @@ -191,17 +196,10 @@ acpi_handle acpi_dev_handle; char ppi_version[TPM_PPI_VERSION_LEN + 1]; #endif /* CONFIG_ACPI */ - - struct list_head list; }; #define to_tpm_chip(d) container_of(d, struct tpm_chip, dev) -static inline void tpm_chip_put(struct tpm_chip *chip) -{ - module_put(chip->pdev->driver->owner); -} - static inline int tpm_read_index(int base, int index) { outb(index, base); @@ -493,6 +491,7 @@ extern struct class *tpm_class; extern dev_t tpm_devt; extern const struct file_operations tpm_fops; +extern struct idr dev_nums_idr; enum tpm_transmit_flags { TPM_TRANSMIT_UNLOCKED = BIT(0), @@ -513,6 +512,9 @@ wait_queue_head_t *, bool); struct tpm_chip *tpm_chip_find_get(int chip_num); +__must_check int tpm_try_get_ops(struct tpm_chip *chip); +void tpm_put_ops(struct tpm_chip *chip); + extern struct tpm_chip *tpmm_chip_alloc(struct device *dev, const struct tpm_class_ops *ops); extern int tpm_chip_register(struct tpm_chip *chip); diff -u linux-raspi2-4.4.0/drivers/char/tpm/tpm2-cmd.c linux-raspi2-4.4.0/drivers/char/tpm/tpm2-cmd.c --- linux-raspi2-4.4.0/drivers/char/tpm/tpm2-cmd.c +++ linux-raspi2-4.4.0/drivers/char/tpm/tpm2-cmd.c @@ -614,7 +614,7 @@ rc = tpm_buf_init(&buf, TPM2_ST_NO_SESSIONS, TPM2_CC_FLUSH_CONTEXT); if (rc) { - dev_warn(chip->pdev, "0x%08x was not flushed, out of memory\n", + dev_warn(&chip->dev, "0x%08x was not flushed, out of memory\n", handle); return; } @@ -624,7 +624,7 @@ rc = tpm_transmit_cmd(chip, buf.data, PAGE_SIZE, flags, "flushing context"); if (rc) - dev_warn(chip->pdev, "0x%08x was not flushed, rc=%d\n", handle, + dev_warn(&chip->dev, "0x%08x was not flushed, rc=%d\n", handle, rc); tpm_buf_destroy(&buf); @@ -799,7 +799,7 @@ * except print the error code on a system failure. */ if (rc < 0) - dev_warn(chip->pdev, "transmit returned %d while stopping the TPM", + dev_warn(&chip->dev, "transmit returned %d while stopping the TPM", rc); } EXPORT_SYMBOL_GPL(tpm2_shutdown); @@ -866,7 +866,7 @@ * immediately. This is a workaround for that. */ if (rc == TPM2_RC_TESTING) { - dev_warn(chip->pdev, "Got RC_TESTING, ignoring\n"); + dev_warn(&chip->dev, "Got RC_TESTING, ignoring\n"); rc = 0; } diff -u linux-raspi2-4.4.0/drivers/char/tpm/tpm_tis.c linux-raspi2-4.4.0/drivers/char/tpm/tpm_tis.c --- linux-raspi2-4.4.0/drivers/char/tpm/tpm_tis.c +++ linux-raspi2-4.4.0/drivers/char/tpm/tpm_tis.c @@ -260,7 +260,7 @@ /* read first 10 bytes, including tag, paramsize, and result */ if ((size = recv_data(chip, buf, TPM_HEADER_SIZE)) < TPM_HEADER_SIZE) { - dev_err(chip->pdev, "Unable to read header\n"); + dev_err(&chip->dev, "Unable to read header\n"); goto out; } @@ -273,7 +273,7 @@ if ((size += recv_data(chip, &buf[TPM_HEADER_SIZE], expected - TPM_HEADER_SIZE)) < expected) { - dev_err(chip->pdev, "Unable to read remainder of result\n"); + dev_err(&chip->dev, "Unable to read remainder of result\n"); size = -ETIME; goto out; } @@ -282,7 +282,7 @@ &chip->vendor.int_queue, false); status = tpm_tis_status(chip); if (status & TPM_STS_DATA_AVAIL) { /* retry? */ - dev_err(chip->pdev, "Error left over data\n"); + dev_err(&chip->dev, "Error left over data\n"); size = -EIO; goto out; } @@ -368,7 +368,7 @@ iowrite32(intmask, chip->vendor.iobase + TPM_INT_ENABLE(chip->vendor.locality)); - devm_free_irq(chip->pdev, chip->vendor.irq, chip); + devm_free_irq(&chip->dev, chip->vendor.irq, chip); chip->vendor.irq = 0; } @@ -497,7 +497,7 @@ rc = tpm_tis_send_data(chip, cmd_getticks, len); if (rc == 0) { - dev_info(chip->pdev, "Detected an iTPM.\n"); + dev_info(&chip->dev, "Detected an iTPM.\n"); rc = 1; } else rc = -EFAULT; @@ -576,9 +576,9 @@ struct priv_data *priv = chip->vendor.priv; u8 original_int_vec; - if (devm_request_irq(chip->pdev, irq, tis_int_handler, flags, + if (devm_request_irq(&chip->dev, irq, tis_int_handler, flags, chip->devname, chip) != 0) { - dev_info(chip->pdev, "Unable to request irq: %d for probe\n", + dev_info(&chip->dev, "Unable to request irq: %d for probe\n", irq); return -1; } @@ -779,7 +779,7 @@ tpm_tis_probe_irq_single(chip, intmask, IRQF_SHARED, tpm_info->irq); if (!chip->vendor.irq) - dev_err(chip->pdev, FW_BUG + dev_err(&chip->dev, FW_BUG "TPM interrupt not working, polling instead\n"); } else tpm_tis_probe_irq(chip, intmask); diff -u linux-raspi2-4.4.0/drivers/cpufreq/Kconfig.arm linux-raspi2-4.4.0/drivers/cpufreq/Kconfig.arm --- linux-raspi2-4.4.0/drivers/cpufreq/Kconfig.arm +++ linux-raspi2-4.4.0/drivers/cpufreq/Kconfig.arm @@ -250,7 +250,7 @@ config ACPI_CPPC_CPUFREQ tristate "CPUFreq driver based on the ACPI CPPC spec" - depends on ACPI + depends on ACPI_PROCESSOR select ACPI_CPPC_LIB default n help diff -u linux-raspi2-4.4.0/drivers/crypto/atmel-sha.c linux-raspi2-4.4.0/drivers/crypto/atmel-sha.c --- linux-raspi2-4.4.0/drivers/crypto/atmel-sha.c +++ linux-raspi2-4.4.0/drivers/crypto/atmel-sha.c @@ -963,7 +963,9 @@ ctx->flags |= SHA_FLAGS_FINUP; err1 = atmel_sha_update(req); - if (err1 == -EINPROGRESS || err1 == -EBUSY) + if (err1 == -EINPROGRESS || + (err1 == -EBUSY && (ahash_request_flags(req) & + CRYPTO_TFM_REQ_MAY_BACKLOG))) return err1; /* diff -u linux-raspi2-4.4.0/drivers/crypto/caam/caamhash.c linux-raspi2-4.4.0/drivers/crypto/caam/caamhash.c --- linux-raspi2-4.4.0/drivers/crypto/caam/caamhash.c +++ linux-raspi2-4.4.0/drivers/crypto/caam/caamhash.c @@ -498,7 +498,7 @@ ret = caam_jr_enqueue(jrdev, desc, split_key_done, &result); if (!ret) { /* in progress */ - wait_for_completion_interruptible(&result.completion); + wait_for_completion(&result.completion); ret = result.err; #ifdef DEBUG print_hex_dump(KERN_ERR, diff -u linux-raspi2-4.4.0/drivers/crypto/talitos.c linux-raspi2-4.4.0/drivers/crypto/talitos.c --- linux-raspi2-4.4.0/drivers/crypto/talitos.c +++ linux-raspi2-4.4.0/drivers/crypto/talitos.c @@ -804,7 +804,7 @@ * crypto alg */ #define TALITOS_CRA_PRIORITY 3000 -#define TALITOS_MAX_KEY_SIZE 96 +#define TALITOS_MAX_KEY_SIZE (AES_MAX_KEY_SIZE + SHA512_BLOCK_SIZE) #define TALITOS_MAX_IV_LENGTH 16 /* max of AES_BLOCK_SIZE, DES3_EDE_BLOCK_SIZE */ struct talitos_ctx { @@ -1388,6 +1388,11 @@ { struct talitos_ctx *ctx = crypto_ablkcipher_ctx(cipher); + if (keylen > TALITOS_MAX_KEY_SIZE) { + crypto_ablkcipher_set_flags(cipher, CRYPTO_TFM_RES_BAD_KEY_LEN); + return -EINVAL; + } + memcpy(&ctx->key, key, keylen); ctx->keylen = keylen; @@ -1744,9 +1749,9 @@ req_ctx->swinit = 0; } else { desc->ptr[1] = zero_entry; - /* Indicate next op is not the first. */ - req_ctx->first = 0; } + /* Indicate next op is not the first. */ + req_ctx->first = 0; /* HMAC key */ if (ctx->keylen) @@ -2765,7 +2770,8 @@ t_alg->algt.alg.hash.final = ahash_final; t_alg->algt.alg.hash.finup = ahash_finup; t_alg->algt.alg.hash.digest = ahash_digest; - t_alg->algt.alg.hash.setkey = ahash_setkey; + if (!strncmp(alg->cra_name, "hmac", 4)) + t_alg->algt.alg.hash.setkey = ahash_setkey; t_alg->algt.alg.hash.import = ahash_import; t_alg->algt.alg.hash.export = ahash_export; diff -u linux-raspi2-4.4.0/drivers/crypto/vmx/aes_ctr.c linux-raspi2-4.4.0/drivers/crypto/vmx/aes_ctr.c --- linux-raspi2-4.4.0/drivers/crypto/vmx/aes_ctr.c +++ linux-raspi2-4.4.0/drivers/crypto/vmx/aes_ctr.c @@ -80,11 +80,13 @@ int ret; struct p8_aes_ctr_ctx *ctx = crypto_tfm_ctx(tfm); + preempt_disable(); pagefault_disable(); enable_kernel_vsx(); ret = aes_p8_set_encrypt_key(key, keylen * 8, &ctx->enc_key); disable_kernel_vsx(); pagefault_enable(); + preempt_enable(); ret += crypto_blkcipher_setkey(ctx->fallback, key, keylen); return ret; @@ -99,11 +101,13 @@ u8 *dst = walk->dst.virt.addr; unsigned int nbytes = walk->nbytes; + preempt_disable(); pagefault_disable(); enable_kernel_vsx(); aes_p8_encrypt(ctrblk, keystream, &ctx->enc_key); disable_kernel_vsx(); pagefault_enable(); + preempt_enable(); crypto_xor(keystream, src, nbytes); memcpy(dst, keystream, nbytes); @@ -132,6 +136,7 @@ blkcipher_walk_init(&walk, dst, src, nbytes); ret = blkcipher_walk_virt_block(desc, &walk, AES_BLOCK_SIZE); while ((nbytes = walk.nbytes) >= AES_BLOCK_SIZE) { + preempt_disable(); pagefault_disable(); enable_kernel_vsx(); aes_p8_ctr32_encrypt_blocks(walk.src.virt.addr, @@ -143,6 +148,7 @@ walk.iv); disable_kernel_vsx(); pagefault_enable(); + preempt_enable(); /* We need to update IV mostly for last bytes/round */ inc = (nbytes & AES_BLOCK_MASK) / AES_BLOCK_SIZE; diff -u linux-raspi2-4.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c linux-raspi2-4.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c --- linux-raspi2-4.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c +++ linux-raspi2-4.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c @@ -1126,6 +1126,9 @@ if (size & 0x3 || *pos & 0x3) return -EINVAL; + if (*pos >= adev->mc.mc_vram_size) + return -ENXIO; + while (size) { unsigned long flags; uint32_t value; diff -u linux-raspi2-4.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_vce.c linux-raspi2-4.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_vce.c --- linux-raspi2-4.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_vce.c +++ linux-raspi2-4.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_vce.c @@ -284,6 +284,10 @@ amdgpu_dpm_enable_vce(adev, false); } else { amdgpu_asic_set_vce_clocks(adev, 0, 0); + amdgpu_set_powergating_state(adev, AMD_IP_BLOCK_TYPE_VCE, + AMD_PG_STATE_GATE); + amdgpu_set_clockgating_state(adev, AMD_IP_BLOCK_TYPE_VCE, + AMD_CG_STATE_GATE); } } else { schedule_delayed_work(&adev->vce.idle_work, @@ -315,6 +319,11 @@ amdgpu_dpm_enable_vce(adev, true); } else { amdgpu_asic_set_vce_clocks(adev, 53300, 40000); + amdgpu_set_clockgating_state(adev, AMD_IP_BLOCK_TYPE_VCE, + AMD_CG_STATE_UNGATE); + amdgpu_set_powergating_state(adev, AMD_IP_BLOCK_TYPE_VCE, + AMD_PG_STATE_UNGATE); + } } } diff -u linux-raspi2-4.4.0/drivers/gpu/drm/drm_atomic.c linux-raspi2-4.4.0/drivers/gpu/drm/drm_atomic.c --- linux-raspi2-4.4.0/drivers/gpu/drm/drm_atomic.c +++ linux-raspi2-4.4.0/drivers/gpu/drm/drm_atomic.c @@ -1305,6 +1305,9 @@ if (config->funcs->atomic_check) ret = config->funcs->atomic_check(state->dev, state); + if (ret) + return ret; + if (!state->allow_modeset) { for_each_crtc_in_state(state, crtc, crtc_state, i) { if (drm_atomic_crtc_needs_modeset(crtc_state)) { @@ -1315,7 +1318,7 @@ } } - return ret; + return 0; } EXPORT_SYMBOL(drm_atomic_check_only); diff -u linux-raspi2-4.4.0/drivers/gpu/drm/drm_dp_mst_topology.c linux-raspi2-4.4.0/drivers/gpu/drm/drm_dp_mst_topology.c --- linux-raspi2-4.4.0/drivers/gpu/drm/drm_dp_mst_topology.c +++ linux-raspi2-4.4.0/drivers/gpu/drm/drm_dp_mst_topology.c @@ -330,6 +330,13 @@ return false; } + /* + * ignore out-of-order messages or messages that are part of a + * failed transaction + */ + if (!recv_hdr.somt && !msg->have_somt) + return false; + /* get length contained in this portion */ msg->curchunk_len = recv_hdr.msg_len; msg->curchunk_hdrlen = hdrlen; @@ -1805,6 +1812,7 @@ return -EINVAL; } req_payload.num_slots = mgr->proposed_vcpis[i]->num_slots; + req_payload.vcpi = mgr->proposed_vcpis[i]->vcpi; } else { port = NULL; req_payload.num_slots = 0; @@ -1820,6 +1828,7 @@ if (req_payload.num_slots) { drm_dp_create_payload_step1(mgr, mgr->proposed_vcpis[i]->vcpi, &req_payload); mgr->payloads[i].num_slots = req_payload.num_slots; + mgr->payloads[i].vcpi = req_payload.vcpi; } else if (mgr->payloads[i].num_slots) { mgr->payloads[i].num_slots = 0; drm_dp_destroy_payload_step1(mgr, port, mgr->payloads[i].vcpi, &mgr->payloads[i]); @@ -2173,7 +2182,7 @@ } EXPORT_SYMBOL(drm_dp_mst_topology_mgr_resume); -static void drm_dp_get_one_sb_msg(struct drm_dp_mst_topology_mgr *mgr, bool up) +static bool drm_dp_get_one_sb_msg(struct drm_dp_mst_topology_mgr *mgr, bool up) { int len; u8 replyblock[32]; @@ -2188,12 +2197,12 @@ replyblock, len); if (ret != len) { DRM_DEBUG_KMS("failed to read DPCD down rep %d %d\n", len, ret); - return; + return false; } ret = drm_dp_sideband_msg_build(msg, replyblock, len, true); if (!ret) { DRM_DEBUG_KMS("sideband msg build failed %d\n", replyblock[0]); - return; + return false; } replylen = msg->curchunk_len + msg->curchunk_hdrlen; @@ -2205,21 +2214,32 @@ ret = drm_dp_dpcd_read(mgr->aux, basereg + curreply, replyblock, len); if (ret != len) { - DRM_DEBUG_KMS("failed to read a chunk\n"); + DRM_DEBUG_KMS("failed to read a chunk (len %d, ret %d)\n", + len, ret); + return false; } + ret = drm_dp_sideband_msg_build(msg, replyblock, len, false); - if (ret == false) + if (!ret) { DRM_DEBUG_KMS("failed to build sideband msg\n"); + return false; + } + curreply += len; replylen -= len; } + return true; } static int drm_dp_mst_handle_down_rep(struct drm_dp_mst_topology_mgr *mgr) { int ret = 0; - drm_dp_get_one_sb_msg(mgr, false); + if (!drm_dp_get_one_sb_msg(mgr, false)) { + memset(&mgr->down_rep_recv, 0, + sizeof(struct drm_dp_sideband_msg_rx)); + return 0; + } if (mgr->down_rep_recv.have_eomt) { struct drm_dp_sideband_msg_tx *txmsg; @@ -2275,7 +2295,12 @@ static int drm_dp_mst_handle_up_req(struct drm_dp_mst_topology_mgr *mgr) { int ret = 0; - drm_dp_get_one_sb_msg(mgr, true); + + if (!drm_dp_get_one_sb_msg(mgr, true)) { + memset(&mgr->up_req_recv, 0, + sizeof(struct drm_dp_sideband_msg_rx)); + return 0; + } if (mgr->up_req_recv.have_eomt) { struct drm_dp_sideband_msg_req_body msg; @@ -2327,7 +2352,9 @@ DRM_DEBUG_KMS("Got RSN: pn: %d avail_pbn %d\n", msg.u.resource_stat.port_number, msg.u.resource_stat.available_pbn); } - drm_dp_put_mst_branch_device(mstb); + if (mstb) + drm_dp_put_mst_branch_device(mstb); + memset(&mgr->up_req_recv, 0, sizeof(struct drm_dp_sideband_msg_rx)); } return ret; diff -u linux-raspi2-4.4.0/drivers/gpu/drm/drm_fb_cma_helper.c linux-raspi2-4.4.0/drivers/gpu/drm/drm_fb_cma_helper.c --- linux-raspi2-4.4.0/drivers/gpu/drm/drm_fb_cma_helper.c +++ linux-raspi2-4.4.0/drivers/gpu/drm/drm_fb_cma_helper.c @@ -23,6 +23,7 @@ #include #include #include +#include #include struct drm_fb_cma { @@ -220,6 +221,12 @@ EXPORT_SYMBOL_GPL(drm_fb_cma_debugfs_show); #endif +static int drm_fb_cma_mmap(struct fb_info *info, struct vm_area_struct *vma) +{ + return dma_mmap_writecombine(info->device, vma, info->screen_base, + info->fix.smem_start, info->fix.smem_len); +} + static struct fb_ops drm_fbdev_cma_ops = { .owner = THIS_MODULE, .fb_fillrect = drm_fb_helper_sys_fillrect, @@ -230,6 +237,7 @@ .fb_blank = drm_fb_helper_blank, .fb_pan_display = drm_fb_helper_pan_display, .fb_setcmap = drm_fb_helper_setcmap, + .fb_mmap = drm_fb_cma_mmap, }; static int drm_fbdev_cma_create(struct drm_fb_helper *helper, diff -u linux-raspi2-4.4.0/drivers/gpu/drm/drm_gem.c linux-raspi2-4.4.0/drivers/gpu/drm/drm_gem.c --- linux-raspi2-4.4.0/drivers/gpu/drm/drm_gem.c +++ linux-raspi2-4.4.0/drivers/gpu/drm/drm_gem.c @@ -715,13 +715,13 @@ struct drm_gem_object *obj = ptr; struct drm_device *dev = obj->dev; + if (dev->driver->gem_close_object) + dev->driver->gem_close_object(obj, file_priv); + if (drm_core_check_feature(dev, DRIVER_PRIME)) drm_gem_remove_prime_handles(obj, file_priv); drm_vma_node_revoke(&obj->vma_node, file_priv->filp); - if (dev->driver->gem_close_object) - dev->driver->gem_close_object(obj, file_priv); - drm_gem_object_handle_unreference_unlocked(obj); return 0; diff -u linux-raspi2-4.4.0/drivers/gpu/drm/i915/intel_bios.c linux-raspi2-4.4.0/drivers/gpu/drm/i915/intel_bios.c --- linux-raspi2-4.4.0/drivers/gpu/drm/i915/intel_bios.c +++ linux-raspi2-4.4.0/drivers/gpu/drm/i915/intel_bios.c @@ -957,6 +957,13 @@ is_hdmi = is_dvi && (child->common.device_type & DEVICE_TYPE_NOT_HDMI_OUTPUT) == 0; is_edp = is_dp && (child->common.device_type & DEVICE_TYPE_INTERNAL_CONNECTOR); + if (port == PORT_A && is_dvi) { + DRM_DEBUG_KMS("VBT claims port A supports DVI%s, ignoring\n", + is_hdmi ? "/HDMI" : ""); + is_dvi = false; + is_hdmi = false; + } + info->supports_dvi = is_dvi; info->supports_hdmi = is_hdmi; info->supports_dp = is_dp; diff -u linux-raspi2-4.4.0/drivers/gpu/drm/i915/intel_uncore.c linux-raspi2-4.4.0/drivers/gpu/drm/i915/intel_uncore.c --- linux-raspi2-4.4.0/drivers/gpu/drm/i915/intel_uncore.c +++ linux-raspi2-4.4.0/drivers/gpu/drm/i915/intel_uncore.c @@ -635,7 +635,8 @@ "enabling oneshot unclaimed register reporting. " "Please use i915.mmio_debug=N for more information.\n"); __raw_i915_write32(dev_priv, FPGA_DBG, FPGA_DBG_RM_NOCLAIM); - i915.mmio_debug = mmio_debug_once--; + i915.mmio_debug = mmio_debug_once; + mmio_debug_once = false; } } diff -u linux-raspi2-4.4.0/drivers/gpu/drm/msm/msm_gem_submit.c linux-raspi2-4.4.0/drivers/gpu/drm/msm/msm_gem_submit.c --- linux-raspi2-4.4.0/drivers/gpu/drm/msm/msm_gem_submit.c +++ linux-raspi2-4.4.0/drivers/gpu/drm/msm/msm_gem_submit.c @@ -34,10 +34,13 @@ } static struct msm_gem_submit *submit_create(struct drm_device *dev, - struct msm_gpu *gpu, int nr) + struct msm_gpu *gpu, uint32_t nr) { struct msm_gem_submit *submit; - int sz = sizeof(*submit) + (nr * sizeof(submit->bos[0])); + uint64_t sz = sizeof(*submit) + ((u64)nr * sizeof(submit->bos[0])); + + if (sz > SIZE_MAX) + return NULL; submit = kmalloc(sz, GFP_TEMPORARY | __GFP_NOWARN | __GFP_NORETRY); if (submit) { @@ -90,7 +93,8 @@ pagefault_disable(); } - if (submit_bo.flags & ~MSM_SUBMIT_BO_FLAGS) { + if ((submit_bo.flags & ~MSM_SUBMIT_BO_FLAGS) || + !(submit_bo.flags & MSM_SUBMIT_BO_FLAGS)) { DRM_ERROR("invalid flags: %x\n", submit_bo.flags); ret = -EINVAL; goto out_unlock; diff -u linux-raspi2-4.4.0/drivers/gpu/drm/radeon/atombios_encoders.c linux-raspi2-4.4.0/drivers/gpu/drm/radeon/atombios_encoders.c --- linux-raspi2-4.4.0/drivers/gpu/drm/radeon/atombios_encoders.c +++ linux-raspi2-4.4.0/drivers/gpu/drm/radeon/atombios_encoders.c @@ -30,6 +30,7 @@ #include "radeon_audio.h" #include "atom.h" #include +#include extern int atom_debug; @@ -2183,9 +2184,17 @@ goto assigned; } - /* on DCE32 and encoder can driver any block so just crtc id */ + /* + * On DCE32 any encoder can drive any block so usually just use crtc id, + * but Apple thinks different at least on iMac10,1, so there use linkb, + * otherwise the internal eDP panel will stay dark. + */ if (ASIC_IS_DCE32(rdev)) { - enc_idx = radeon_crtc->crtc_id; + if (dmi_match(DMI_PRODUCT_NAME, "iMac10,1")) + enc_idx = (dig->linkb) ? 1 : 0; + else + enc_idx = radeon_crtc->crtc_id; + goto assigned; } diff -u linux-raspi2-4.4.0/drivers/gpu/drm/radeon/ci_dpm.c linux-raspi2-4.4.0/drivers/gpu/drm/radeon/ci_dpm.c --- linux-raspi2-4.4.0/drivers/gpu/drm/radeon/ci_dpm.c +++ linux-raspi2-4.4.0/drivers/gpu/drm/radeon/ci_dpm.c @@ -782,6 +782,12 @@ if (r600_dpm_get_vrefresh(rdev) > 120) return true; + /* disable mclk switching if the refresh is >120Hz, even if the + * blanking period would allow it + */ + if (r600_dpm_get_vrefresh(rdev) > 120) + return true; + if (vblank_time < switch_limit) return true; else diff -u linux-raspi2-4.4.0/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c linux-raspi2-4.4.0/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c --- linux-raspi2-4.4.0/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c +++ linux-raspi2-4.4.0/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c @@ -708,7 +708,7 @@ * allocation taken by fbdev */ if (!(dev_priv->capabilities & SVGA_CAP_3D)) - mem_size *= 2; + mem_size *= 3; dev_priv->max_mob_pages = mem_size * 1024 / PAGE_SIZE; dev_priv->prim_bb_mem = diff -u linux-raspi2-4.4.0/drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c linux-raspi2-4.4.0/drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c --- linux-raspi2-4.4.0/drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c +++ linux-raspi2-4.4.0/drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c @@ -471,7 +471,7 @@ struct vmw_sw_context *sw_context, SVGA3dCmdHeader *header) { - return capable(CAP_SYS_ADMIN) ? : -EINVAL; + return -EINVAL; } static int vmw_cmd_ok(struct vmw_private *dev_priv, diff -u linux-raspi2-4.4.0/drivers/hid/hid-core.c linux-raspi2-4.4.0/drivers/hid/hid-core.c --- linux-raspi2-4.4.0/drivers/hid/hid-core.c +++ linux-raspi2-4.4.0/drivers/hid/hid-core.c @@ -2428,6 +2428,7 @@ { HID_USB_DEVICE(USB_VENDOR_ID_PANJIT, 0x0002) }, { HID_USB_DEVICE(USB_VENDOR_ID_PANJIT, 0x0003) }, { HID_USB_DEVICE(USB_VENDOR_ID_PANJIT, 0x0004) }, + { HID_USB_DEVICE(USB_VENDOR_ID_PETZL, USB_DEVICE_ID_PETZL_HEADLAMP) }, { HID_USB_DEVICE(USB_VENDOR_ID_PHILIPS, USB_DEVICE_ID_PHILIPS_IEEE802154_DONGLE) }, { HID_USB_DEVICE(USB_VENDOR_ID_POWERCOM, USB_DEVICE_ID_POWERCOM_UPS) }, #if defined(CONFIG_MOUSE_SYNAPTICS_USB) || defined(CONFIG_MOUSE_SYNAPTICS_USB_MODULE) diff -u linux-raspi2-4.4.0/drivers/hid/hid-ids.h linux-raspi2-4.4.0/drivers/hid/hid-ids.h --- linux-raspi2-4.4.0/drivers/hid/hid-ids.h +++ linux-raspi2-4.4.0/drivers/hid/hid-ids.h @@ -69,6 +69,8 @@ #define USB_VENDOR_ID_ALPS_JP 0x044E #define HID_DEVICE_ID_ALPS_U1_DUAL 0x120B +#define HID_DEVICE_ID_ALPS_U1_DUAL_PTP 0x121F +#define HID_DEVICE_ID_ALPS_U1_DUAL_3BTN_PTP 0x1220 #define USB_VENDOR_ID_AMI 0x046b #define USB_DEVICE_ID_AMI_VIRT_KEYBOARD_AND_MOUSE 0xff10 @@ -783,6 +785,9 @@ #define USB_VENDOR_ID_PETALYNX 0x18b1 #define USB_DEVICE_ID_PETALYNX_MAXTER_REMOTE 0x0037 +#define USB_VENDOR_ID_PETZL 0x2122 +#define USB_DEVICE_ID_PETZL_HEADLAMP 0x1234 + #define USB_VENDOR_ID_PHILIPS 0x0471 #define USB_DEVICE_ID_PHILIPS_IEEE802154_DONGLE 0x0617 diff -u linux-raspi2-4.4.0/drivers/hid/hid-multitouch.c linux-raspi2-4.4.0/drivers/hid/hid-multitouch.c --- linux-raspi2-4.4.0/drivers/hid/hid-multitouch.c +++ linux-raspi2-4.4.0/drivers/hid/hid-multitouch.c @@ -145,6 +145,7 @@ /* reserved 0x0011 */ #define MT_CLS_WIN_8 0x0012 #define MT_CLS_EXPORT_ALL_INPUTS 0x0013 +#define MT_CLS_WIN_8_DUAL 0x0014 /* vendor specific classes */ #define MT_CLS_3M 0x0101 @@ -213,6 +214,12 @@ .quirks = MT_QUIRK_ALWAYS_VALID | MT_QUIRK_CONTACT_CNT_ACCURATE, .export_all_inputs = true }, + { .name = MT_CLS_WIN_8_DUAL, + .quirks = MT_QUIRK_ALWAYS_VALID | + MT_QUIRK_IGNORE_DUPLICATES | + MT_QUIRK_HOVERING | + MT_QUIRK_CONTACT_CNT_ACCURATE, + .export_all_inputs = true }, /* * vendor specific classes @@ -504,7 +511,8 @@ mt_store_field(usage, td, hi); return 1; case HID_DG_CONFIDENCE: - if (cls->name == MT_CLS_WIN_8 && + if ((cls->name == MT_CLS_WIN_8 || + cls->name == MT_CLS_WIN_8_DUAL) && field->application == HID_DG_TOUCHPAD) cls->quirks |= MT_QUIRK_CONFIDENCE; mt_store_field(usage, td, hi); @@ -567,6 +575,15 @@ case HID_UP_BUTTON: code = BTN_MOUSE + ((usage->hid - 1) & HID_USAGE); + /* + * MS PTP spec says that external buttons left and right have + * usages 2 and 3. + */ + if ((cls->name == MT_CLS_WIN_8 || + cls->name == MT_CLS_WIN_8_DUAL) && + field->application == HID_DG_TOUCHPAD && + (usage->hid & HID_USAGE) > 1) + code--; hid_map_usage(hi, usage, bit, max, EV_KEY, code); input_set_capability(hi->input, EV_KEY, code); return 1; @@ -1201,6 +1218,16 @@ MT_USB_DEVICE(USB_VENDOR_ID_3M, USB_DEVICE_ID_3M3266) }, + /* Alps devices */ + { .driver_data = MT_CLS_WIN_8_DUAL, + HID_DEVICE(BUS_I2C, HID_GROUP_MULTITOUCH_WIN_8, + USB_VENDOR_ID_ALPS_JP, + HID_DEVICE_ID_ALPS_U1_DUAL_PTP) }, + { .driver_data = MT_CLS_WIN_8_DUAL, + HID_DEVICE(BUS_I2C, HID_GROUP_MULTITOUCH_WIN_8, + USB_VENDOR_ID_ALPS_JP, + HID_DEVICE_ID_ALPS_U1_DUAL_3BTN_PTP) }, + /* Anton devices */ { .driver_data = MT_CLS_EXPORT_ALL_INPUTS, MT_USB_DEVICE(USB_VENDOR_ID_ANTON, diff -u linux-raspi2-4.4.0/drivers/hid/i2c-hid/i2c-hid.c linux-raspi2-4.4.0/drivers/hid/i2c-hid/i2c-hid.c --- linux-raspi2-4.4.0/drivers/hid/i2c-hid/i2c-hid.c +++ linux-raspi2-4.4.0/drivers/hid/i2c-hid/i2c-hid.c @@ -540,7 +540,8 @@ { /* the worst case is computed from the set_report command with a * reportID > 15 and the maximum report length */ - int args_len = sizeof(__u8) + /* optional ReportID byte */ + int args_len = sizeof(__u8) + /* ReportID */ + sizeof(__u8) + /* optional ReportID byte */ sizeof(__u16) + /* data register */ sizeof(__u16) + /* size of the report */ report_size; /* report */ diff -u linux-raspi2-4.4.0/drivers/hid/usbhid/hid-core.c linux-raspi2-4.4.0/drivers/hid/usbhid/hid-core.c --- linux-raspi2-4.4.0/drivers/hid/usbhid/hid-core.c +++ linux-raspi2-4.4.0/drivers/hid/usbhid/hid-core.c @@ -971,6 +971,8 @@ unsigned int rsize = 0; char *rdesc; int ret, n; + int num_descriptors; + size_t offset = offsetof(struct hid_descriptor, desc); quirks = usbhid_lookup_quirk(le16_to_cpu(dev->descriptor.idVendor), le16_to_cpu(dev->descriptor.idProduct)); @@ -993,10 +995,18 @@ return -ENODEV; } + if (hdesc->bLength < sizeof(struct hid_descriptor)) { + dbg_hid("hid descriptor is too short\n"); + return -EINVAL; + } + hid->version = le16_to_cpu(hdesc->bcdHID); hid->country = hdesc->bCountryCode; - for (n = 0; n < hdesc->bNumDescriptors; n++) + num_descriptors = min_t(int, hdesc->bNumDescriptors, + (hdesc->bLength - offset) / sizeof(struct hid_class_descriptor)); + + for (n = 0; n < num_descriptors; n++) if (hdesc->desc[n].bDescriptorType == HID_DT_REPORT) rsize = le16_to_cpu(hdesc->desc[n].wDescriptorLength); diff -u linux-raspi2-4.4.0/drivers/hv/hv_fcopy.c linux-raspi2-4.4.0/drivers/hv/hv_fcopy.c --- linux-raspi2-4.4.0/drivers/hv/hv_fcopy.c +++ linux-raspi2-4.4.0/drivers/hv/hv_fcopy.c @@ -160,6 +160,10 @@ out_src = smsg_out; break; + case WRITE_TO_FILE: + out_src = fcopy_transaction.fcopy_msg; + out_len = sizeof(struct hv_do_fcopy); + break; default: out_src = fcopy_transaction.fcopy_msg; out_len = fcopy_transaction.recv_len; diff -u linux-raspi2-4.4.0/drivers/hwtracing/intel_th/pci.c linux-raspi2-4.4.0/drivers/hwtracing/intel_th/pci.c --- linux-raspi2-4.4.0/drivers/hwtracing/intel_th/pci.c +++ linux-raspi2-4.4.0/drivers/hwtracing/intel_th/pci.c @@ -72,6 +72,16 @@ PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0xa2a6), .driver_data = (kernel_ulong_t)0, }, + { + /* Cannon Lake H */ + PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0xa326), + .driver_data = (kernel_ulong_t)0, + }, + { + /* Cannon Lake LP */ + PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x9da6), + .driver_data = (kernel_ulong_t)0, + }, { 0 }, }; diff -u linux-raspi2-4.4.0/drivers/i2c/busses/i2c-designware-core.c linux-raspi2-4.4.0/drivers/i2c/busses/i2c-designware-core.c --- linux-raspi2-4.4.0/drivers/i2c/busses/i2c-designware-core.c +++ linux-raspi2-4.4.0/drivers/i2c/busses/i2c-designware-core.c @@ -664,7 +664,7 @@ i2c_dw_xfer_init(dev); /* wait for tx to complete */ - if (!wait_for_completion_timeout(&dev->cmd_complete, HZ)) { + if (!wait_for_completion_timeout(&dev->cmd_complete, adap->timeout)) { dev_err(dev->dev, "controller timed out\n"); /* i2c_dw_init implicitly disables the adapter */ i2c_dw_init(dev); diff -u linux-raspi2-4.4.0/drivers/i2c/busses/i2c-designware-platdrv.c linux-raspi2-4.4.0/drivers/i2c/busses/i2c-designware-platdrv.c --- linux-raspi2-4.4.0/drivers/i2c/busses/i2c-designware-platdrv.c +++ linux-raspi2-4.4.0/drivers/i2c/busses/i2c-designware-platdrv.c @@ -299,7 +299,7 @@ #endif #ifdef CONFIG_PM -static int dw_i2c_plat_suspend(struct device *dev) +static int dw_i2c_plat_runtime_suspend(struct device *dev) { struct platform_device *pdev = to_platform_device(dev); struct dw_i2c_dev *i_dev = platform_get_drvdata(pdev); @@ -323,11 +323,21 @@ return 0; } +#ifdef CONFIG_PM_SLEEP +static int dw_i2c_plat_suspend(struct device *dev) +{ + pm_runtime_resume(dev); + return dw_i2c_plat_runtime_suspend(dev); +} +#endif + static const struct dev_pm_ops dw_i2c_dev_pm_ops = { .prepare = dw_i2c_plat_prepare, .complete = dw_i2c_plat_complete, SET_SYSTEM_SLEEP_PM_OPS(dw_i2c_plat_suspend, dw_i2c_plat_resume) - SET_RUNTIME_PM_OPS(dw_i2c_plat_suspend, dw_i2c_plat_resume, NULL) + SET_RUNTIME_PM_OPS(dw_i2c_plat_runtime_suspend, + dw_i2c_plat_resume, + NULL) }; #define DW_I2C_DEV_PMOPS (&dw_i2c_dev_pm_ops) diff -u linux-raspi2-4.4.0/drivers/iio/accel/bmc150-accel-core.c linux-raspi2-4.4.0/drivers/iio/accel/bmc150-accel-core.c --- linux-raspi2-4.4.0/drivers/iio/accel/bmc150-accel-core.c +++ linux-raspi2-4.4.0/drivers/iio/accel/bmc150-accel-core.c @@ -194,7 +194,6 @@ struct device *dev; int irq; struct bmc150_accel_interrupt interrupts[BMC150_ACCEL_INTERRUPTS]; - atomic_t active_intr; struct bmc150_accel_trigger triggers[BMC150_ACCEL_TRIGGERS]; struct mutex mutex; u8 fifo_mode, watermark; @@ -489,11 +488,6 @@ goto out_fix_power_state; } - if (state) - atomic_inc(&data->active_intr); - else - atomic_dec(&data->active_intr); - return 0; out_fix_power_state: @@ -1704,8 +1698,7 @@ struct bmc150_accel_data *data = iio_priv(indio_dev); mutex_lock(&data->mutex); - if (atomic_read(&data->active_intr)) - bmc150_accel_set_mode(data, BMC150_ACCEL_SLEEP_MODE_NORMAL, 0); + bmc150_accel_set_mode(data, BMC150_ACCEL_SLEEP_MODE_NORMAL, 0); bmc150_accel_fifo_set_mode(data); mutex_unlock(&data->mutex); diff -u linux-raspi2-4.4.0/drivers/iio/common/hid-sensors/hid-sensor-trigger.c linux-raspi2-4.4.0/drivers/iio/common/hid-sensors/hid-sensor-trigger.c --- linux-raspi2-4.4.0/drivers/iio/common/hid-sensors/hid-sensor-trigger.c +++ linux-raspi2-4.4.0/drivers/iio/common/hid-sensors/hid-sensor-trigger.c @@ -36,8 +36,6 @@ s32 poll_value = 0; if (state) { - if (!atomic_read(&st->user_requested_state)) - return 0; if (sensor_hub_device_open(st->hsdev)) return -EIO; @@ -84,6 +82,9 @@ &report_val); } + pr_debug("HID_SENSOR %s set power_state %d report_state %d\n", + st->pdev->name, state_val, report_val); + sensor_hub_get_feature(st->hsdev, st->power_state.report_id, st->power_state.index, sizeof(state_val), &state_val); @@ -107,6 +108,7 @@ ret = pm_runtime_get_sync(&st->pdev->dev); else { pm_runtime_mark_last_busy(&st->pdev->dev); + pm_runtime_use_autosuspend(&st->pdev->dev); ret = pm_runtime_put_autosuspend(&st->pdev->dev); } if (ret < 0) { @@ -175,8 +177,6 @@ /* Default to 3 seconds, but can be changed from sysfs */ pm_runtime_set_autosuspend_delay(&attrb->pdev->dev, 3000); - pm_runtime_use_autosuspend(&attrb->pdev->dev); - return ret; error_unreg_trigger: iio_trigger_unregister(trig); diff -u linux-raspi2-4.4.0/drivers/iio/industrialio-core.c linux-raspi2-4.4.0/drivers/iio/industrialio-core.c --- linux-raspi2-4.4.0/drivers/iio/industrialio-core.c +++ linux-raspi2-4.4.0/drivers/iio/industrialio-core.c @@ -221,8 +221,10 @@ ret = indio_dev->info->debugfs_reg_access(indio_dev, indio_dev->cached_reg_addr, 0, &val); - if (ret) + if (ret) { dev_err(indio_dev->dev.parent, "%s: read failed\n", __func__); + return ret; + } len = snprintf(buf, sizeof(buf), "0x%X\n", val); reverted: --- linux-raspi2-4.4.0/drivers/infiniband/Kconfig +++ linux-raspi2-4.4.0.orig/drivers/infiniband/Kconfig @@ -63,7 +63,6 @@ source "drivers/infiniband/hw/nes/Kconfig" source "drivers/infiniband/hw/ocrdma/Kconfig" source "drivers/infiniband/hw/usnic/Kconfig" -source "drivers/infiniband/hw/vmbus-rdma/Kconfig" source "drivers/infiniband/ulp/ipoib/Kconfig" diff -u linux-raspi2-4.4.0/drivers/infiniband/core/cma.c linux-raspi2-4.4.0/drivers/infiniband/core/cma.c --- linux-raspi2-4.4.0/drivers/infiniband/core/cma.c +++ linux-raspi2-4.4.0/drivers/infiniband/core/cma.c @@ -857,6 +857,8 @@ } else ret = iw_cm_init_qp_attr(id_priv->cm_id.iw, qp_attr, qp_attr_mask); + qp_attr->port_num = id_priv->id.port_num; + *qp_attr_mask |= IB_QP_PORT; } else ret = -ENOSYS; reverted: --- linux-raspi2-4.4.0/drivers/infiniband/hw/Makefile +++ linux-raspi2-4.4.0.orig/drivers/infiniband/hw/Makefile @@ -3,7 +3,6 @@ obj-$(CONFIG_INFINIBAND_CXGB3) += cxgb3/ obj-$(CONFIG_INFINIBAND_CXGB4) += cxgb4/ obj-$(CONFIG_MLX4_INFINIBAND) += mlx4/ -obj-$(CONFIG_HYPERV_INFINIBAND_ND) += vmbus-rdma/ obj-$(CONFIG_MLX5_INFINIBAND) += mlx5/ obj-$(CONFIG_INFINIBAND_NES) += nes/ obj-$(CONFIG_INFINIBAND_OCRDMA) += ocrdma/ reverted: --- linux-raspi2-4.4.0/drivers/infiniband/hw/vmbus-rdma/COPYING +++ linux-raspi2-4.4.0.orig/drivers/infiniband/hw/vmbus-rdma/COPYING @@ -1,339 +0,0 @@ - -"This software program is licensed subject to the GNU General Public License -(GPL). Version 2, June 1991, available at -" - -GNU General Public License - -Version 2, June 1991 - -Copyright (C) 1989, 1991 Free Software Foundation, Inc. -51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - -Everyone is permitted to copy and distribute verbatim copies of this license -document, but changing it is not allowed. - -Preamble - -The licenses for most software are designed to take away your freedom to -share and change it. By contrast, the GNU General Public License is intended -to guarantee your freedom to share and change free software--to make sure -the software is free for all its users. This General Public License applies -to most of the Free Software Foundation's software and to any other program -whose authors commit to using it. (Some other Free Software Foundation -software is covered by the GNU Library General Public License instead.) You -can apply it to your programs, too. - -When we speak of free software, we are referring to freedom, not price. Our -General Public Licenses are designed to make sure that you have the freedom -to distribute copies of free software (and charge for this service if you -wish), that you receive source code or can get it if you want it, that you -can change the software or use pieces of it in new free programs; and that -you know you can do these things. - -To protect your rights, we need to make restrictions that forbid anyone to -deny you these rights or to ask you to surrender the rights. These -restrictions translate to certain responsibilities for you if you distribute -copies of the software, or if you modify it. - -For example, if you distribute copies of such a program, whether gratis or -for a fee, you must give the recipients all the rights that you have. You -must make sure that they, too, receive or can get the source code. And you -must show them these terms so they know their rights. - -We protect your rights with two steps: (1) copyright the software, and (2) -offer you this license which gives you legal permission to copy, distribute -and/or modify the software. - -Also, for each author's protection and ours, we want to make certain that -everyone understands that there is no warranty for this free software. If -the software is modified by someone else and passed on, we want its -recipients to know that what they have is not the original, so that any -problems introduced by others will not reflect on the original authors' -reputations. - -Finally, any free program is threatened constantly by software patents. We -wish to avoid the danger that redistributors of a free program will -individually obtain patent licenses, in effect making the program -proprietary. To prevent this, we have made it clear that any patent must be -licensed for everyone's free use or not licensed at all. - -The precise terms and conditions for copying, distribution and modification -follow. - -TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - -0. This License applies to any program or other work which contains a notice - placed by the copyright holder saying it may be distributed under the - terms of this General Public License. The "Program", below, refers to any - such program or work, and a "work based on the Program" means either the - Program or any derivative work under copyright law: that is to say, a - work containing the Program or a portion of it, either verbatim or with - modifications and/or translated into another language. (Hereinafter, - translation is included without limitation in the term "modification".) - Each licensee is addressed as "you". - - Activities other than copying, distribution and modification are not - covered by this License; they are outside its scope. The act of running - the Program is not restricted, and the output from the Program is covered - only if its contents constitute a work based on the Program (independent - of having been made by running the Program). Whether that is true depends - on what the Program does. - -1. You may copy and distribute verbatim copies of the Program's source code - as you receive it, in any medium, provided that you conspicuously and - appropriately publish on each copy an appropriate copyright notice and - disclaimer of warranty; keep intact all the notices that refer to this - License and to the absence of any warranty; and give any other recipients - of the Program a copy of this License along with the Program. - - You may charge a fee for the physical act of transferring a copy, and you - may at your option offer warranty protection in exchange for a fee. - -2. You may modify your copy or copies of the Program or any portion of it, - thus forming a work based on the Program, and copy and distribute such - modifications or work under the terms of Section 1 above, provided that - you also meet all of these conditions: - - * a) You must cause the modified files to carry prominent notices stating - that you changed the files and the date of any change. - - * b) You must cause any work that you distribute or publish, that in - whole or in part contains or is derived from the Program or any part - thereof, to be licensed as a whole at no charge to all third parties - under the terms of this License. - - * c) If the modified program normally reads commands interactively when - run, you must cause it, when started running for such interactive - use in the most ordinary way, to print or display an announcement - including an appropriate copyright notice and a notice that there is - no warranty (or else, saying that you provide a warranty) and that - users may redistribute the program under these conditions, and - telling the user how to view a copy of this License. (Exception: if - the Program itself is interactive but does not normally print such - an announcement, your work based on the Program is not required to - print an announcement.) - - These requirements apply to the modified work as a whole. If identifiable - sections of that work are not derived from the Program, and can be - reasonably considered independent and separate works in themselves, then - this License, and its terms, do not apply to those sections when you - distribute them as separate works. But when you distribute the same - sections as part of a whole which is a work based on the Program, the - distribution of the whole must be on the terms of this License, whose - permissions for other licensees extend to the entire whole, and thus to - each and every part regardless of who wrote it. - - Thus, it is not the intent of this section to claim rights or contest - your rights to work written entirely by you; rather, the intent is to - exercise the right to control the distribution of derivative or - collective works based on the Program. - - In addition, mere aggregation of another work not based on the Program - with the Program (or with a work based on the Program) on a volume of a - storage or distribution medium does not bring the other work under the - scope of this License. - -3. You may copy and distribute the Program (or a work based on it, under - Section 2) in object code or executable form under the terms of Sections - 1 and 2 above provided that you also do one of the following: - - * a) Accompany it with the complete corresponding machine-readable source - code, which must be distributed under the terms of Sections 1 and 2 - above on a medium customarily used for software interchange; or, - - * b) Accompany it with a written offer, valid for at least three years, - to give any third party, for a charge no more than your cost of - physically performing source distribution, a complete machine- - readable copy of the corresponding source code, to be distributed - under the terms of Sections 1 and 2 above on a medium customarily - used for software interchange; or, - - * c) Accompany it with the information you received as to the offer to - distribute corresponding source code. (This alternative is allowed - only for noncommercial distribution and only if you received the - program in object code or executable form with such an offer, in - accord with Subsection b above.) - - The source code for a work means the preferred form of the work for - making modifications to it. For an executable work, complete source code - means all the source code for all modules it contains, plus any - associated interface definition files, plus the scripts used to control - compilation and installation of the executable. However, as a special - exception, the source code distributed need not include anything that is - normally distributed (in either source or binary form) with the major - components (compiler, kernel, and so on) of the operating system on which - the executable runs, unless that component itself accompanies the - executable. - - If distribution of executable or object code is made by offering access - to copy from a designated place, then offering equivalent access to copy - the source code from the same place counts as distribution of the source - code, even though third parties are not compelled to copy the source - along with the object code. - -4. You may not copy, modify, sublicense, or distribute the Program except as - expressly provided under this License. Any attempt otherwise to copy, - modify, sublicense or distribute the Program is void, and will - automatically terminate your rights under this License. However, parties - who have received copies, or rights, from you under this License will not - have their licenses terminated so long as such parties remain in full - compliance. - -5. You are not required to accept this License, since you have not signed - it. However, nothing else grants you permission to modify or distribute - the Program or its derivative works. These actions are prohibited by law - if you do not accept this License. Therefore, by modifying or - distributing the Program (or any work based on the Program), you - indicate your acceptance of this License to do so, and all its terms and - conditions for copying, distributing or modifying the Program or works - based on it. - -6. Each time you redistribute the Program (or any work based on the - Program), the recipient automatically receives a license from the - original licensor to copy, distribute or modify the Program subject to - these terms and conditions. You may not impose any further restrictions - on the recipients' exercise of the rights granted herein. You are not - responsible for enforcing compliance by third parties to this License. - -7. If, as a consequence of a court judgment or allegation of patent - infringement or for any other reason (not limited to patent issues), - conditions are imposed on you (whether by court order, agreement or - otherwise) that contradict the conditions of this License, they do not - excuse you from the conditions of this License. If you cannot distribute - so as to satisfy simultaneously your obligations under this License and - any other pertinent obligations, then as a consequence you may not - distribute the Program at all. For example, if a patent license would - not permit royalty-free redistribution of the Program by all those who - receive copies directly or indirectly through you, then the only way you - could satisfy both it and this License would be to refrain entirely from - distribution of the Program. - - If any portion of this section is held invalid or unenforceable under any - particular circumstance, the balance of the section is intended to apply - and the section as a whole is intended to apply in other circumstances. - - It is not the purpose of this section to induce you to infringe any - patents or other property right claims or to contest validity of any - such claims; this section has the sole purpose of protecting the - integrity of the free software distribution system, which is implemented - by public license practices. Many people have made generous contributions - to the wide range of software distributed through that system in - reliance on consistent application of that system; it is up to the - author/donor to decide if he or she is willing to distribute software - through any other system and a licensee cannot impose that choice. - - This section is intended to make thoroughly clear what is believed to be - a consequence of the rest of this License. - -8. If the distribution and/or use of the Program is restricted in certain - countries either by patents or by copyrighted interfaces, the original - copyright holder who places the Program under this License may add an - explicit geographical distribution limitation excluding those countries, - so that distribution is permitted only in or among countries not thus - excluded. In such case, this License incorporates the limitation as if - written in the body of this License. - -9. The Free Software Foundation may publish revised and/or new versions of - the General Public License from time to time. Such new versions will be - similar in spirit to the present version, but may differ in detail to - address new problems or concerns. - - Each version is given a distinguishing version number. If the Program - specifies a version number of this License which applies to it and "any - later version", you have the option of following the terms and - conditions either of that version or of any later version published by - the Free Software Foundation. If the Program does not specify a version - number of this License, you may choose any version ever published by the - Free Software Foundation. - -10. If you wish to incorporate parts of the Program into other free programs - whose distribution conditions are different, write to the author to ask - for permission. For software which is copyrighted by the Free Software - Foundation, write to the Free Software Foundation; we sometimes make - exceptions for this. Our decision will be guided by the two goals of - preserving the free status of all derivatives of our free software and - of promoting the sharing and reuse of software generally. - - NO WARRANTY - -11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY - FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN - OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES - PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER - EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE - ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH - YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL - NECESSARY SERVICING, REPAIR OR CORRECTION. - -12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING - WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR - REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR - DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL - DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM - (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED - INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF - THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR - OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -END OF TERMS AND CONDITIONS - -How to Apply These Terms to Your New Programs - -If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it free -software which everyone can redistribute and change under these terms. - -To do so, attach the following notices to the program. It is safest to -attach them to the start of each source file to most effectively convey the -exclusion of warranty; and each file should have at least the "copyright" -line and a pointer to where the full notice is found. - -one line to give the program's name and an idea of what it does. -Copyright (C) yyyy name of author - -This program is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the Free -Software Foundation; either version 2 of the License, or (at your option) -any later version. - -This program is distributed in the hope that it will be useful, but WITHOUT -ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for -more details. - -You should have received a copy of the GNU General Public License along with -this program; if not, write to the Free Software Foundation, Inc., 59 -Temple Place - Suite 330, Boston, MA 02111-1307, USA. - -Also add information on how to contact you by electronic and paper mail. - -If the program is interactive, make it output a short notice like this when -it starts in an interactive mode: - -Gnomovision version 69, Copyright (C) year name of author Gnomovision comes -with ABSOLUTELY NO WARRANTY; for details type 'show w'. This is free -software, and you are welcome to redistribute it under certain conditions; -type 'show c' for details. - -The hypothetical commands 'show w' and 'show c' should show the appropriate -parts of the General Public License. Of course, the commands you use may be -called something other than 'show w' and 'show c'; they could even be -mouse-clicks or menu items--whatever suits your program. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the program, if -necessary. Here is a sample; alter the names: - -Yoyodyne, Inc., hereby disclaims all copyright interest in the program -'Gnomovision' (which makes passes at compilers) written by James Hacker. - -signature of Ty Coon, 1 April 1989 -Ty Coon, President of Vice - -This General Public License does not permit incorporating your program into -proprietary programs. If your program is a subroutine library, you may -consider it more useful to permit linking proprietary applications with the -library. If this is what you want to do, use the GNU Library General Public -License instead of this License. reverted: --- linux-raspi2-4.4.0/drivers/infiniband/hw/vmbus-rdma/Kconfig +++ linux-raspi2-4.4.0.orig/drivers/infiniband/hw/vmbus-rdma/Kconfig @@ -1,5 +0,0 @@ -config HYPERV_INFINIBAND_ND - tristate "Microsoft Hyper-V Network Direct" - depends on PCI && INET && INFINIBAND && HYPERV && X86_64 - ---help--- - This is a low-level driver for Vmbus based NetworkDirect. reverted: --- linux-raspi2-4.4.0/drivers/infiniband/hw/vmbus-rdma/Makefile +++ linux-raspi2-4.4.0.orig/drivers/infiniband/hw/vmbus-rdma/Makefile @@ -1,3 +0,0 @@ -obj-$(CONFIG_PCMCIA) += hv_network_direct.o - -hv_network_direct-y := provider.o vmbus_rdma.o hvnd_addr.o reverted: --- linux-raspi2-4.4.0/drivers/infiniband/hw/vmbus-rdma/hvnd_addr.c +++ linux-raspi2-4.4.0.orig/drivers/infiniband/hw/vmbus-rdma/hvnd_addr.c @@ -1,134 +0,0 @@ -/* - * Copyright (c) 2014, Microsoft Corporation. - * - * Author: - * K. Y. Srinivasan - * - * This program is free software; you can redistribute it and/or modify it - * under the terms of the GNU General Public License version 2 as published - * by the Free Software Foundation. - * - * This program is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or - * NON INFRINGEMENT. See the GNU General Public License for more - * details. - * - * Bug fixes/enhancements: Long Li - */ - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include "vmbus_rdma.h" - - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - - -int hvnd_get_outgoing_rdma_addr(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - union nd_sockaddr_inet *og_addr) -{ - int ret; - /* - * Query the host and select the first address. - */ - struct pkt_query_addr_list pkt; - - memset(&pkt, 0, sizeof(pkt)); //KYS try to avoid having to zero everything - - hvnd_init_hdr(&pkt.hdr, - (sizeof(pkt) - - sizeof(struct ndv_packet_hdr_control_1)), - uctx->create_pkt.handle.local, - uctx->create_pkt.handle.remote, - IOCTL_ND_ADAPTER_QUERY_ADDRESS_LIST, 0, 0, 0); - - pkt.ioctl.in.version = ND_VERSION_1; - pkt.ioctl.in.reserved = 0; - pkt.ioctl.in.handle = uctx->adaptor_hdl; - - ret = hvnd_send_ioctl_pkt(nd_dev, &pkt.hdr, - sizeof(pkt), (u64)&pkt); - - if (ret) - return ret; - - /* - * Copy the address out. - */ - - memcpy(og_addr, &pkt.ioctl.out[0], sizeof(*og_addr)); - return 0; - -} - -static struct rdma_addr_client self; - -struct resolve_cb_context { - struct rdma_dev_addr *addr; - struct completion comp; -}; - -void hvnd_addr_init(void) -{ - rdma_addr_register_client(&self); - return; -} - -void hvnd_addr_deinit(void) -{ - rdma_addr_unregister_client(&self); - return; -} - -static void resolve_cb(int status, struct sockaddr *src_addr, - struct rdma_dev_addr *addr, void *context) -{ - memcpy(((struct resolve_cb_context *)context)->addr, addr, sizeof(struct - rdma_dev_addr)); - complete(&((struct resolve_cb_context *)context)->comp); -} - -int hvnd_get_neigh_mac_addr(struct sockaddr *local, struct sockaddr *remote, char *mac_addr) -{ - struct rdma_dev_addr dev_addr; - struct resolve_cb_context ctx; - int ret; - - memset(&dev_addr, 0, sizeof(dev_addr)); - dev_addr.net = &init_net; - ctx.addr = &dev_addr; - init_completion(&ctx.comp); - - ret = rdma_resolve_ip(&self, local, remote, &dev_addr, 1000, resolve_cb, &ctx); - - if (ret) { - hvnd_error("rdma_resolve_ip failed ret=%d\n", ret); - return ret; - } - - wait_for_completion(&ctx.comp); - memcpy(mac_addr, dev_addr.dst_dev_addr, ETH_ALEN); - return ret; -} reverted: --- linux-raspi2-4.4.0/drivers/infiniband/hw/vmbus-rdma/mx_abi.h +++ linux-raspi2-4.4.0.orig/drivers/infiniband/hw/vmbus-rdma/mx_abi.h @@ -1,232 +0,0 @@ -/* - * Copyright (c) 2005 Topspin Communications. All rights reserved. - * Copyright (c) 2005 Cisco Systems. All rights reserved. - * Copyright (c) 2005 PathScale, Inc. All rights reserved. - * - * This software is available to you under a choice of one of two - * licenses. You may choose to be licensed under the terms of the GNU - * General Public License (GPL) Version 2, available from the file - * COPYING in the main directory of this source tree, or the - * OpenIB.org BSD license below: - * - * Redistribution and use in source and binary forms, with or - * without modification, are permitted provided that the following - * conditions are met: - * - * - Redistributions of source code must retain the above - * copyright notice, this list of conditions and the following - * disclaimer. - * - * - Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following - * disclaimer in the documentation and/or other materials - * provided with the distribution. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - * SOFTWARE. - * - * KYS: made some modifications. - */ - -#ifndef MX_ABI_H -#define MX_ABI_H - - - -/* - * Make sure that all structs defined in this file remain laid out so - * that they pack the same way on 32-bit and 64-bit architectures (to - * avoid incompatibility between 32-bit userspace and 64-bit kernels). - * Specifically: - * - Do not use pointer types -- pass pointers in UINT64 instead. - * - Make sure that any structure larger than 4 bytes is padded to a - * multiple of 8 bytes. Otherwise the structure size will be - * different between 32-bit and 64-bit architectures. - */ - -enum ibv_get_context_mappings { - IBV_GET_CONTEXT_UAR, - IBV_GET_CONTEXT_BF, - IBV_GET_CONTEXT_MAPPING_MAX -}; - -struct ibv_get_context_req { - - union nd_mapping mappings[IBV_GET_CONTEXT_MAPPING_MAX]; -}; - -struct ibv_get_context_resp { - - // mmap UAR and BF - struct nd_mapping_result mapping_results[IBV_GET_CONTEXT_MAPPING_MAX]; - - // mmap Blue Flame - int bf_buf_size; - int bf_offset; - - // mlx4_query_device result - int max_qp_wr; - int max_sge; - int max_cqe; - - // general parameters - u32 cqe_size; - u32 vend_id; - u16 dev_id; - u16 bf_reg_size; - u16 bf_regs_per_page; - u16 reserved1; - - // ibv_cmd_get_context result - u32 qp_tab_size; - - u32 reserved2; -}; - -struct ibv_alloc_pd_resp { - u64 pd_handle; - u32 pdn; - u32 reserved; -}; - -struct ibv_reg_mr { - u64 start; - u64 length; - u64 hca_va; - u32 access_flags; - u32 pdn; - u64 pd_handle; -}; - -struct ibv_reg_mr_resp { - u64 mr_handle; - u32 lkey; - u32 rkey; -}; - - -enum mlx4_ib_create_cq_mapping { - MLX4_IB_CREATE_CQ_BUF, - MLX4_IB_CREATE_CQ_DB, - MLX4_IB_CREATE_CQ_ARM_SN, // Windows specific - MLX4_IB_CREATE_CQ_MAPPING_MAX -}; - -#define MLX4_CQ_FLAGS_ARM_IN_KERNEL 1 - -struct ibv_create_cq { - union nd_mapping mappings[MLX4_IB_CREATE_CQ_MAPPING_MAX]; - u32 flags; -}; - -struct ibv_create_cq_resp { - struct nd_mapping_result mapping_results[MLX4_IB_CREATE_CQ_MAPPING_MAX]; - u32 cqn; - u32 cqe; -}; - -enum mlx4_ib_create_srq_mappings { - MLX4_IB_CREATE_SRQ_BUF, - MLX4_IB_CREATE_SRQ_DB, - MLX4_IB_CREATE_SRQ_MAPPINGS_MAX -}; - -struct ibv_create_srq { - union nd_mapping mappings[MLX4_IB_CREATE_SRQ_MAPPINGS_MAX]; -}; - -struct ibv_create_srq_resp { - struct nd_mapping_result mapping_results[MLX4_IB_CREATE_SRQ_MAPPINGS_MAX]; -}; - -enum mlx4_ib_create_qp_mappings { - MLX4_IB_CREATE_QP_BUF, - MLX4_IB_CREATE_QP_DB, - MLX4_IB_CREATE_QP_MAPPINGS_MAX -}; - -struct ibv_create_qp { - union nd_mapping mappings[MLX4_IB_CREATE_QP_MAPPINGS_MAX]; - u8 log_sq_bb_count; - u8 log_sq_stride; - u8 sq_no_prefetch; - u8 reserved; -}; - -struct ibv_create_qp_resp { - struct nd_mapping_result mapping_results[MLX4_IB_CREATE_QP_MAPPINGS_MAX]; - // struct ib_uverbs_create_qp_resp - u64 qp_handle; - u32 qpn; - u32 max_send_wr; - u32 max_recv_wr; - u32 max_send_sge; - u32 max_recv_sge; - u32 max_inline_data; -}; - -enum ibv_qp_attr_mask { - IBV_QP_STATE = 1 << 0, - IBV_QP_CUR_STATE = 1 << 1, - IBV_QP_EN_SQD_ASYNC_NOTIFY = 1 << 2, - IBV_QP_ACCESS_FLAGS = 1 << 3, - IBV_QP_PKEY_INDEX = 1 << 4, - IBV_QP_PORT = 1 << 5, - IBV_QP_QKEY = 1 << 6, - IBV_QP_AV = 1 << 7, - IBV_QP_PATH_MTU = 1 << 8, - IBV_QP_TIMEOUT = 1 << 9, - IBV_QP_RETRY_CNT = 1 << 10, - IBV_QP_RNR_RETRY = 1 << 11, - IBV_QP_RQ_PSN = 1 << 12, - IBV_QP_MAX_QP_RD_ATOMIC = 1 << 13, - IBV_QP_ALT_PATH = 1 << 14, - IBV_QP_MIN_RNR_TIMER = 1 << 15, - IBV_QP_SQ_PSN = 1 << 16, - IBV_QP_MAX_DEST_RD_ATOMIC = 1 << 17, - IBV_QP_PATH_MIG_STATE = 1 << 18, - IBV_QP_CAP = 1 << 19, - IBV_QP_DEST_QPN = 1 << 20 -}; - -enum ibv_qp_state { - IBV_QPS_RESET, - IBV_QPS_INIT, - IBV_QPS_RTR, - IBV_QPS_RTS, - IBV_QPS_SQD, - IBV_QPS_SQE, - IBV_QPS_ERR -}; - - -struct ibv_modify_qp_resp { - enum ibv_qp_attr_mask attr_mask; - u8 qp_state; - u8 reserved[3]; -}; - -struct ibv_create_ah_resp { - u64 start; -}; - -/* - * Some mlx4 specific kernel definitions. Perhaps could be in - * separate file. - */ - -struct mlx4_ib_user_db_page { - struct list_head list; - struct ib_umem *umem; - unsigned long user_virt; - int refcnt; -}; - - -#endif /* MX_ABI_H */ reverted: --- linux-raspi2-4.4.0/drivers/infiniband/hw/vmbus-rdma/provider.c +++ linux-raspi2-4.4.0.orig/drivers/infiniband/hw/vmbus-rdma/provider.c @@ -1,2882 +0,0 @@ -/* - * Copyright (c) 2014, Microsoft Corporation. - * - * Author: - * K. Y. Srinivasan - * - * This program is free software; you can redistribute it and/or modify it - * under the terms of the GNU General Public License version 2 as published - * by the Free Software Foundation. - * - * This program is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or - * NON INFRINGEMENT. See the GNU General Public License for more - * details. - * - * Bug fixes/enhancements: Long Li - */ - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include "vmbus_rdma.h" - -/* - * We are emulating mlx4. XXXKYS: May have to FIX. - */ -#include "./user.h" - -static struct hvnd_dev *g_nd_dev = NULL; // the one and only one - -int hvnd_log_level = HVND_ERROR; -module_param(hvnd_log_level, int, S_IRUGO|S_IWUSR); -MODULE_PARM_DESC(hvnd_log_level, - "Logging level, " - "0 - Error (default), " - "1 - Warning, " - "2 - Info, " - "3 - Debug."); - -static int disable_cq_notify = 1; -//static int disable_cq_notify = 0; -module_param(disable_cq_notify, int, S_IRUGO|S_IWUSR); -MODULE_PARM_DESC(disable_cq_notify, - "Disable CQ notification, " - "0 - Enable, " - "1 - Disable (default)."); - -enum { - MLX4_USER_DEV_CAP_64B_CQE = 1L << 0 -}; - -#define HVND_NODE_DESC "vmbus-RDMA" - -#undef MLX4_IB_UVERBS_ABI_VERSION -#define MLX4_IB_UVERBS_ABI_VERSION 4 - -struct mlx4_wqe_data_seg { - __be32 byte_count; - __be32 lkey; - __be64 addr; -}; - -/* return value: - true: ep is running - false: ep is stopped -*/ -bool ep_add_work_pending(struct hvnd_ep_obj *ep_object) -{ - bool ret = true; - atomic_inc(&ep_object->nr_requests_pending); - if (ep_object->stopping) { - if(atomic_dec_and_test(&ep_object->nr_requests_pending)) - wake_up(&ep_object->wait_pending); - ret = false; - } - return ret; -} - -void ep_del_work_pending(struct hvnd_ep_obj *ep_object) -{ - if(atomic_dec_and_test(&ep_object->nr_requests_pending)) - wake_up(&ep_object->wait_pending); - - if(atomic_read(&ep_object->nr_requests_pending)<0) { - hvnd_error("ep_object->nr_requests_pending=%d type=%d cm_state=%d\n", atomic_read(&ep_object->nr_requests_pending), ep_object->type, ep_object->cm_state); - dump_stack(); - } -} - -void ep_stop(struct hvnd_ep_obj *ep_object) -{ - if (!ep_object->stopping) { - ep_object->stopping = true; - hvnd_cancel_io(ep_object); - } - - if(atomic_read(&ep_object->nr_requests_pending)<0) { - hvnd_error("IO canceled, ep_object->nr_requests_pending=%d type=%d cm_state=%d\n", atomic_read(&ep_object->nr_requests_pending), ep_object->type, ep_object->cm_state); - dump_stack(); - } - - wait_event(ep_object->wait_pending, !atomic_read(&ep_object->nr_requests_pending)); -} - -static int vmbus_dma_map_sg(struct device *dev, struct scatterlist *sgl, - int nents, enum dma_data_direction direction, struct dma_attrs *attrs) -{ - struct scatterlist *sg; - u64 addr; - int i; - int ret = nents; - - BUG_ON(!valid_dma_direction(direction)); - - for_each_sg(sgl, sg, nents, i) { - addr = (u64) page_address(sg_page(sg)); - /* TODO: handle highmem pages */ - if (!addr) { - ret = 0; - break; - } - sg->dma_address = addr + sg->offset; - sg->dma_length = sg->length; - } - return ret; -} - -static void vmbus_dma_unmap_sg(struct device *dev, - struct scatterlist *sg, int nents, - enum dma_data_direction direction, struct dma_attrs *attrs) -{ - BUG_ON(!valid_dma_direction(direction)); -} - - -struct dma_map_ops vmbus_dma_ops = { - .map_sg = vmbus_dma_map_sg, - .unmap_sg = vmbus_dma_unmap_sg, -}; - -static int hvnd_get_incoming_connections(struct hvnd_ep_obj *listener, - struct hvnd_dev *nd_dev, - struct hvnd_ucontext *uctx); - -static struct hvnd_ep_obj *hvnd_setup_ep(struct iw_cm_id *cm_id, int ep_type, - struct hvnd_dev *nd_dev, - struct hvnd_ucontext *uctx); - -static void hvnd_deinit_ep(struct hvnd_ep_obj *ep) -{ - put_irp_handle(ep->nd_dev, ep->local_irp); -} - -static void hvnd_destroy_ep(struct hvnd_ep_obj *ep) -{ - hvnd_debug("canceling work for ep %p\n", ep); - cancel_work_sync(&ep->wrk.work); - hvnd_deinit_ep(ep); - kfree(ep); -} - - -#define UC(b) (((int)b)&0xff) -char *debug_inet_ntoa(struct in_addr in, char *b) -{ - register char *p; - - p = (char *)∈ - (void)snprintf(b, 20, - "%d.%d.%d.%d", UC(p[0]), UC(p[1]), UC(p[2]), UC(p[3])); - return (b); -} - -void hvnd_process_events(struct work_struct *work); - -static int hvnd_init_ep(struct hvnd_ep_obj *ep_object, - struct iw_cm_id *cm_id, int ep_type, - struct hvnd_dev *nd_dev, - struct hvnd_ucontext *uctx) -{ - int ret; - - ep_object->type = ep_type; - ep_object->cm_id = cm_id; - ep_object->nd_dev = nd_dev; - ep_object->uctx = uctx; - - ep_object->parent = NULL; - - ep_object->wrk.callback_arg = ep_object; - INIT_WORK(&ep_object->wrk.work, hvnd_process_events); - INIT_LIST_HEAD(&ep_object->incoming_pkt_list); - spin_lock_init(&ep_object->incoming_pkt_list_lock); - -/* - spin_lock_init(&ep_object->ep_lk); - ep_object->to_be_destroyed = false; - ep_object->io_outstanding = false; - ep_object->stopped = false; -*/ - ep_object->stopping = false; - atomic_set(&ep_object->nr_requests_pending, 0); - init_waitqueue_head(&ep_object->wait_pending); - - ret = get_irp_handle(nd_dev, &ep_object->local_irp, (void *)ep_object); - - if (ret) { - hvnd_error("get_irp_handle() failed: err: %d\n", ret); - return ret; - } - return 0; - -} - -static int set_rq_size(struct hvnd_dev *dev, struct ib_qp_cap *cap, - struct hvnd_qp *qp) -{ - - /* HW requires >= 1 RQ entry with >= 1 gather entry */ - if (!cap->max_recv_wr || !cap->max_recv_sge) - return -EINVAL; - - qp->rq_wqe_cnt = roundup_pow_of_two(max(1U, cap->max_recv_wr)); - qp->rq_max_gs = roundup_pow_of_two(max(1U, cap->max_recv_sge)); - qp->rq_wqe_shift = ilog2(qp->rq_max_gs * sizeof (struct mlx4_wqe_data_seg)); - - - return 0; -} - -static int set_user_sq_size(struct hvnd_dev *dev, - struct hvnd_qp *qp, - struct mlx4_ib_create_qp *ucmd) -{ - qp->sq_wqe_cnt = 1 << ucmd->log_sq_bb_count; - qp->sq_wqe_shift = ucmd->log_sq_stride; - - qp->buf_size = (qp->rq_wqe_cnt << qp->rq_wqe_shift) + - (qp->sq_wqe_cnt << qp->sq_wqe_shift); - - return 0; -} - -static int hvnd_db_map_user(struct hvnd_ucontext *uctx, unsigned long virt, - struct ib_umem **db_umem) -{ - struct mlx4_ib_user_db_page *page; - int err = 0; - - mutex_lock(&uctx->db_page_mutex); - - list_for_each_entry(page, &uctx->db_page_list, list) - if (page->user_virt == (virt & PAGE_MASK)) - goto found; - - page = kmalloc(sizeof *page, GFP_KERNEL); - if (!page) { - err = -ENOMEM; - goto out; - } - - page->user_virt = (virt & PAGE_MASK); - page->refcnt = 0; - page->umem = ib_umem_get(&uctx->ibucontext, virt & PAGE_MASK, - PAGE_SIZE, 0, 0); - if (IS_ERR(page->umem)) { - hvnd_error("ib_umem_get failure\n"); - err = PTR_ERR(page->umem); - kfree(page); - goto out; - } - - list_add(&page->list, &uctx->db_page_list); - -found: - ++page->refcnt; -out: - mutex_unlock(&uctx->db_page_mutex); - if (!err) - *db_umem = page->umem; - - return err; -} - -static void hvnd_db_unmap_user(struct hvnd_ucontext *uctx, u64 db_addr) -{ - struct mlx4_ib_user_db_page *page; - - mutex_lock(&uctx->db_page_mutex); - list_for_each_entry(page, &uctx->db_page_list, list) - if (page->user_virt == (db_addr & PAGE_MASK)) - goto found; - -found: - if (!--page->refcnt) { - list_del(&page->list); - ib_umem_release(page->umem); - kfree(page); - } - - mutex_unlock(&uctx->db_page_mutex); -} - - -static void debug_check(const char *func, int line) -{ - hvnd_debug("func is: %s; line is %d\n", func, line); - - if (in_interrupt()) { - hvnd_error("In interrupt func is: %s; line is %d\n", func, line); - return; - } -} - -static struct ib_ah *hvnd_ah_create(struct ib_pd *pd, - struct ib_ah_attr *ah_attr) -{ - debug_check(__func__, __LINE__); - return ERR_PTR(-ENOSYS); -} - -static int hvnd_ah_destroy(struct ib_ah *ah) -{ - debug_check(__func__, __LINE__); - return -ENOSYS; -} - -static int hvnd_multicast_attach(struct ib_qp *ibqp, union ib_gid *gid, u16 lid) -{ - debug_check(__func__, __LINE__); - return -ENOSYS; -} - -static int hvnd_multicast_detach(struct ib_qp *ibqp, union ib_gid *gid, u16 lid) -{ - debug_check(__func__, __LINE__); - return -ENOSYS; -} - -static int hvnd_process_mad(struct ib_device *ibdev, - int mad_flags, - u8 port_num, - const struct ib_wc *in_wc, - const struct ib_grh *in_grh, - const struct ib_mad_hdr *in_mad, - size_t in_mad_size, - struct ib_mad_hdr *out_mad, - size_t *out_mad_size, - u16 *out_mad_pkey_index) -{ - debug_check(__func__, __LINE__); - return -ENOSYS; -} - -void hvnd_acquire_uctx_ref(struct hvnd_ucontext *uctx) -{ - atomic_inc(&uctx->refcnt); -} - -void hvnd_drop_uctx_ref(struct hvnd_dev *nd_dev, - struct hvnd_ucontext *uctx) -{ - if (atomic_dec_and_test(&uctx->refcnt)) { - hvnd_debug("uctx ref cnt dropped it is %d\n", atomic_read(&uctx->refcnt)); - hvnd_debug("About to close adaptor\n"); - hvnd_close_adaptor(nd_dev, uctx); - } - else - hvnd_debug("uctx ref cnt dropped it is %d\n", atomic_read(&uctx->refcnt)); -} - - -static int hvnd_dealloc_ucontext(struct ib_ucontext *context) -{ - struct hvnd_dev *nd_dev; - struct hvnd_ucontext *uctx; - - uctx = to_nd_context(context); - nd_dev = to_nd_dev(context->device); - - hvnd_debug("calling %s\n", __func__); - - hvnd_drop_uctx_ref(nd_dev, uctx); - - return 0; -} - -static struct ib_ucontext *hvnd_alloc_ucontext(struct ib_device *ibdev, struct ib_udata *udata) -{ - struct hvnd_dev *nd_dev = to_nd_dev(ibdev); - struct hvnd_ucontext *uctx; - struct mlx4_ib_alloc_ucontext_resp resp; - int ret; - - if (!nd_dev->ib_active) { - hvnd_error("ib device is not active, try again\n"); - return ERR_PTR(-EAGAIN); - } - - uctx = get_uctx(nd_dev, current_pid()); - if (uctx) { - // it is already opened, just increase its reference count - hvnd_acquire_uctx_ref(uctx); - } else { - - /* - * The Windows host expects the following to be done: - * 1. Successfully send struct ndv_pkt_hdr_create_1 - * 2. INIT PROVIDER - * 3. Open Adapter - * Before we can complete this call. - */ - - uctx = kzalloc(sizeof(struct hvnd_ucontext), GFP_KERNEL); - if (!uctx) { - return ERR_PTR(-ENOMEM); - } - - atomic_set(&uctx->refcnt, 1); - INIT_LIST_HEAD(&uctx->db_page_list); - mutex_init(&uctx->db_page_mutex); - - /* - * Stash away the context with the calling PID. - */ - ret = insert_handle(nd_dev, &nd_dev->uctxidr, uctx, current_pid()); - if (ret) { - hvnd_error("Uctx ID insertion failed; ret is %d\n", ret); - goto err1; - } - - hvnd_debug("Opening adaptor pid is %d\n", current_pid()); - - ret = hvnd_open_adaptor(nd_dev, uctx); - if (ret) { - hvnd_error("hvnd_open_adaptor failed ret=%d\n", ret); - goto err1; - } - - } - - /* - * Copy the response out. - */ - - resp.dev_caps = MLX4_USER_DEV_CAP_64B_CQE; - resp.qp_tab_size = uctx->o_adap_pkt.mappings.ctx_output.qp_tab_size; - resp.bf_reg_size = uctx->o_adap_pkt.mappings.ctx_output.bf_reg_size; - resp.bf_regs_per_page = uctx->o_adap_pkt.mappings.ctx_output.bf_regs_per_page; - resp.cqe_size = uctx->o_adap_pkt.mappings.ctx_output.cqe_size; - - ret = ib_copy_to_udata(udata, &resp, sizeof(resp)); - if (ret) { - hvnd_error("ib_copy_to_udata failed ret=%d\n", ret); - goto err1; - } - - return &uctx->ibucontext; - -err1: - kfree(uctx); - return ERR_PTR(ret); -} - -static int hvnd_mmap(struct ib_ucontext *context, struct vm_area_struct *vma) -{ - struct hvnd_ucontext *uctx = to_nd_context(context); - - if (vma->vm_end - vma->vm_start != PAGE_SIZE) { - hvnd_error("vma not a page size, actual size=%lu\n", vma->vm_end - vma->vm_start); - return -EINVAL; - } - - if (vma->vm_pgoff == 0) { - vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot); - - if (io_remap_pfn_range(vma, vma->vm_start, - (uctx->uar_base >> PAGE_SHIFT), - PAGE_SIZE, vma->vm_page_prot)) { - hvnd_error("io_remap_pfn_range failure\n"); - return -EAGAIN; - } - } else if (vma->vm_pgoff == 1 && uctx->bf_buf_size != 0) { - vma->vm_page_prot = pgprot_writecombine(vma->vm_page_prot); - - if (io_remap_pfn_range(vma, vma->vm_start, - (uctx->uar_base >> PAGE_SHIFT) + 1, - PAGE_SIZE, vma->vm_page_prot)) { - hvnd_error("io_remap_pfn_range failure\n"); - return -EAGAIN; - } - } else { - hvnd_error("check code\n"); - return -EINVAL; - } - - return 0; -} - -static int hvnd_deallocate_pd(struct ib_pd *pd) -{ - - struct hvnd_ucontext *uctx; - struct hvnd_dev *nd_dev; - struct hvnd_ib_pd *hvnd_pd; - struct ib_ucontext *ibuctx = pd->uobject->context; - - hvnd_pd = to_nd_pd(pd); - nd_dev = to_nd_dev(pd->device); - uctx = to_nd_context(ibuctx); - - hvnd_free_handle(nd_dev, uctx, hvnd_pd->handle, - IOCTL_ND_PD_FREE); - - hvnd_drop_uctx_ref(nd_dev, uctx); - return 0; -} - -static struct ib_pd *hvnd_allocate_pd(struct ib_device *ibdev, - struct ib_ucontext *context, - struct ib_udata *udata) -{ - struct hvnd_ucontext *uctx; - struct hvnd_dev *nd_dev; - int ret; - struct hvnd_ib_pd *hvnd_pd; - - - hvnd_pd = kzalloc(sizeof(struct hvnd_ib_pd), GFP_KERNEL); - - if (!hvnd_pd) { - return ERR_PTR(-ENOMEM); - } - - uctx = to_nd_context(context); - nd_dev = to_nd_dev(ibdev); - - ret = hvnd_create_pd(uctx, nd_dev, hvnd_pd); - if (ret) { - hvnd_error("hvnd_create_pd failure ret=%d\n", ret); - goto error_cr_pd; - } - - if (context) { - if (ib_copy_to_udata(udata, &hvnd_pd->pdn, sizeof (__u32))) { - hvnd_error("ib_copy_to_udata failure\n"); - ret = -EFAULT; - goto error_fault; - } - } - - hvnd_acquire_uctx_ref(uctx); - return &hvnd_pd->ibpd; - -error_fault: - hvnd_free_handle(nd_dev, uctx, hvnd_pd->handle, - IOCTL_ND_PD_FREE); - -error_cr_pd: - kfree(hvnd_pd); - return ERR_PTR(ret); -} - -static int hvnd_query_pkey(struct ib_device *ibdev, u8 port, u16 index, - u16 *pkey) -{ - debug_check(__func__, __LINE__); - *pkey = 0; - return 0; -} - -static int hvnd_query_gid(struct ib_device *ibdev, u8 port, int index, - union ib_gid *gid) -{ - int ret; - struct hvnd_dev *nd_dev = to_nd_dev(ibdev); - - debug_check(__func__, __LINE__); - - ret = wait_for_completion_timeout(&nd_dev->addr_set, 60*HZ); - if (!ret) - return -ETIMEDOUT; - - memset(&(gid->raw[0]), 0, sizeof(gid->raw)); - memcpy(&(gid->raw[0]), nd_dev->mac_addr, 6); - return 0; -} - -static int hvnd_query_device(struct ib_device *ibdev, - struct ib_device_attr *props, - struct ib_udata *udata) -{ - struct hvnd_dev *nd_dev = to_nd_dev(ibdev); - struct adapter_info_v2 *adap_info; - - if (!nd_dev->query_pkt_set) { - hvnd_error("query packet not received yet\n"); - return -ENODATA; - } - - adap_info = &nd_dev->query_pkt.ioctl.ad_info; - - memset(props, 0, sizeof *props); - - /* - * Copy the relevant properties out. - */ - props->fw_ver = 0; - props->device_cap_flags = 0; - //props->device_cap_flags |= IB_DEVICE_BAD_PKEY_CNTR; - //props->device_cap_flags |= IB_DEVICE_BAD_QKEY_CNTR; - //props->device_cap_flags |= IB_DEVICE_XRC; - - props->vendor_id = 0x15b3; - props->vendor_part_id = adap_info->device_id; - - props->max_mr_size = ~0ull; - props->page_size_cap = PAGE_SIZE; - props->max_qp = 16384; - props->max_qp_wr = min(adap_info->max_recv_q_depth, - adap_info->max_initiator_q_depth); - - props->max_sge = min(adap_info->max_initiator_sge, - adap_info->max_recv_sge); - props->max_cq = 0x1FFFF; - props->max_cqe = adap_info->max_completion_q_depth; - props->max_mr = 16384; - props->max_pd = 16384; - - props->max_qp_rd_atom = adap_info->max_inbound_read_limit; - props->max_qp_init_rd_atom = adap_info->max_outbound_read_limit; - props->max_res_rd_atom = props->max_qp_rd_atom * props->max_qp; - props->max_srq = 16384; - props->max_srq_wr = adap_info->max_recv_q_depth; - props->max_srq_sge = adap_info->max_recv_sge; - - return 0; -} - -static int hvnd_query_port(struct ib_device *ibdev, u8 port, - struct ib_port_attr *props) -{ - memset(props, 0, sizeof(struct ib_port_attr)); - - props->max_mtu = IB_MTU_4096; - props->active_mtu = IB_MTU_4096; - - /* - * KYS: TBD need to base this on netdev. - */ - props->state = IB_PORT_ACTIVE; - - props->port_cap_flags = IB_PORT_CM_SUP; - - props->gid_tbl_len = 1; - props->pkey_tbl_len = 1; - props->active_width = 1; - props->active_speed = IB_SPEED_DDR; //KYS: check - props->max_msg_sz = -1; - - return 0; -} - -static enum rdma_link_layer -hvnd_get_link_layer(struct ib_device *device, u8 port) -{ - return IB_LINK_LAYER_ETHERNET; -} - -static ssize_t hvnd_show_rev(struct device *dev, struct device_attribute *attr, - char *buf) -{ - return 0; -} - -static ssize_t hvnd_show_fw_ver(struct device *dev, struct device_attribute *attr, - char *buf) -{ - return 0; -} - -static ssize_t hvnd_show_hca(struct device *dev, struct device_attribute *attr, - char *buf) -{ - return 0; -} - -static ssize_t hvnd_show_board(struct device *dev, struct device_attribute *attr, - char *buf) -{ - return 0; -} - -static int hvnd_get_port_immutable(struct ib_device *ibdev, u8 port_num, struct ib_port_immutable *immutable) -{ - struct ib_port_attr attr; - int err; - - err = hvnd_query_port(ibdev, port_num, &attr); - if (err) - return err; - - immutable->pkey_tbl_len = attr.pkey_tbl_len; - immutable->gid_tbl_len = attr.gid_tbl_len; - immutable->core_cap_flags = RDMA_CORE_PORT_IWARP; - - return 0; -} - -static struct ib_qp *hvnd_ib_create_qp(struct ib_pd *pd, struct ib_qp_init_attr *attrs, - struct ib_udata *udata) -{ - struct hvnd_ucontext *uctx; - struct hvnd_dev *nd_dev; - struct mlx4_ib_create_qp ucmd; - struct hvnd_qp *qp; - int ret = 0; - struct hvnd_ib_pd *hvnd_pd = to_nd_pd(pd); - struct hvnd_cq *send_cq = to_nd_cq(attrs->send_cq); - struct hvnd_cq *recv_cq = to_nd_cq(attrs->recv_cq); - - uctx = get_uctx_from_pd(pd); - nd_dev = to_nd_dev(pd->device); - - if (attrs->qp_type != IB_QPT_RC) - { - hvnd_error("attrs->qp_type=%d not IB_QPT_RC\n", attrs->qp_type); - return ERR_PTR(-EINVAL); - } - - qp = kzalloc(sizeof *qp, GFP_KERNEL); - if (!qp) { - ret = -ENOMEM; - goto err_done; - } - - qp->uctx = uctx; - - if (ib_copy_from_udata(&ucmd, udata, sizeof ucmd)) { - hvnd_error("ib_copy_from_udata failed\n"); - ret = -EFAULT; - goto err_ucpy; - } - - qp->qp_buf = (void *)ucmd.buf_addr; - qp->db_addr = (void *)ucmd.db_addr; - qp->log_sq_bb_count = ucmd.log_sq_bb_count; - qp->log_sq_stride = ucmd.log_sq_stride; - qp->sq_no_prefetch = ucmd.sq_no_prefetch; - qp->port = attrs->port_num; - - init_waitqueue_head(&qp->wait); - atomic_set(&qp->refcnt, 1); - - - qp->recv_cq = recv_cq; - qp->send_cq = send_cq; - qp->nd_dev = nd_dev; - - qp->receive_cq_handle = recv_cq->cq_handle; - qp->initiator_cq_handle = send_cq->cq_handle; - qp->pd_handle = hvnd_pd->handle; - qp->cq_notify = false; - - qp->ibqp.qp_num = attrs->qp_type == IB_QPT_SMI ? 0 : 1; - - qp->max_inline_data = attrs->cap.max_inline_data; - - qp->initiator_q_depth = attrs->cap.max_send_wr; - qp->initiator_request_sge = attrs->cap.max_send_sge; - - - qp->receive_q_depth = attrs->cap.max_recv_wr; - qp->receive_request_sge = attrs->cap.max_recv_sge; - - set_rq_size(nd_dev, &attrs->cap, qp); - - set_user_sq_size(nd_dev, qp, &ucmd); - - qp->umem = ib_umem_get(&uctx->ibucontext, ucmd.buf_addr, - qp->buf_size, 0, 0); - if (IS_ERR(qp->umem)) { - ret = PTR_ERR(qp->umem); - hvnd_error("ib_umem_get failed ret=%d\n", ret); - goto err_ucpy; - } - - ret = hvnd_db_map_user(uctx, ucmd.db_addr, &qp->db_umem); - - if (ret) { - hvnd_error("hvnd_db_map_user failed ret=%d\n", ret); - goto err_db_map; - } - - ret = hvnd_create_qp(nd_dev, uctx, qp); - - if (ret) { - hvnd_error("hvnd_create_qp failed ret=%d\n", ret); - goto err_qp; - } - - hvnd_acquire_uctx_ref(uctx); - - qp->ibqp.qp_num = qp->qpn; - qp->ibqp.qp_type = IB_QPT_RC; - - - return &qp->ibqp; - -err_qp: - hvnd_db_unmap_user(uctx, ucmd.db_addr); - -err_db_map: - ib_umem_release(qp->umem); - -err_ucpy: - kfree(qp); -err_done: - return ERR_PTR(ret); -} - -static int hvnd_ib_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr, - int attr_mask, struct ib_udata *udata) -{ - struct hvnd_qp *qp = to_nd_qp(ibqp); - struct hvnd_dev *nd_dev = to_nd_dev(ibqp->device); - enum ib_qp_state cur_state, new_state; - int ret = 0; - - if (attr != NULL) { - - cur_state = attr_mask & IB_QP_CUR_STATE ? attr->cur_qp_state : qp->qp_state; - new_state = attr_mask & IB_QP_STATE ? attr->qp_state : cur_state; - - hvnd_debug("qp->qp_state is %d new state is %d\n", qp->qp_state, new_state); - hvnd_debug("current qp state is %d\n", cur_state); - if (attr_mask & IB_QP_STATE) { - /* Ensure the state is valid */ - if (attr->qp_state < 0 || attr->qp_state > IB_QPS_ERR) - { - hvnd_error("incorrect qp state attr->qp_state=%d\n", attr->qp_state); - return EINVAL; - } - - if (qp->qp_state != new_state) { - qp->qp_state = new_state; - /* - * The only state transition supported is the transition to - * error state. - */ - switch (new_state) { - case IB_QPS_ERR: - case IB_QPS_SQD: - ret = hvnd_flush_qp(nd_dev, qp->uctx, qp); - - if (ret) - hvnd_error("hvnd_flush_qp failed ret=%d\n", ret); - - // immediately notify the upper layer on disconnection - if (!ret && qp->connector) - hvnd_process_notify_disconnect(qp->connector, STATUS_SUCCESS); - - return ret; - - default: - break; - } - } - } - } - return 0; -} - - -static int hvnd_ib_query_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr, - int attr_mask, struct ib_qp_init_attr *init_attr) -{ - struct hvnd_qp *qp = to_nd_qp(ibqp); - - memset(attr, 0, sizeof *attr); - memset(init_attr, 0, sizeof *init_attr); - - attr->qp_state = qp->qp_state; - - init_attr->cap.max_send_wr = qp->max_send_wr; - init_attr->cap.max_recv_wr = qp->max_recv_wr; - - init_attr->cap.max_send_sge = qp->max_send_sge; - init_attr->cap.max_recv_sge = qp->max_recv_sge; - init_attr->cap.max_inline_data = qp->max_inline_data; - - init_attr->sq_sig_type = IB_SIGNAL_ALL_WR; - - return 0; -} - -static void hvnd_refuse_connection(struct hvnd_ep_obj *connector, int status); -static int hvnd_destroy_qp(struct ib_qp *ib_qp) -{ - int ret; - struct hvnd_qp *qp = to_nd_qp(ib_qp); - struct hvnd_dev *nd_dev = to_nd_dev(ib_qp->device); - u64 jiffies; - - if (!qp->connector) { - hvnd_warn("error: connector is NULL; skip destroying connector\n"); - goto free_qp; - } - - /* should we flush the qp first on ctrl-C? , no need to disconnect on abrupt shutdown?*/ - if(qp->qp_state != IB_QPS_ERR && qp->qp_state != IB_QPS_SQD) { - hvnd_warn("qp_state=%d, doing abrupt disconnect\n", qp->qp_state); - hvnd_flush_qp(nd_dev, qp->uctx, qp); - - ep_stop(qp->connector); - - // now no pending activity is possible on the connector - - switch (qp->connector->cm_state) { - - case hvnd_cm_idle: - case hvnd_cm_connect_reply_refused: - case hvnd_cm_connect_request_sent: - case hvnd_cm_close_sent: - hvnd_warn("cm_state = %d not doing anything\n", qp->connector->cm_state); - break; - - case hvnd_cm_connect_received: - hvnd_warn("cm_state = %d refusing pending connection request\n", qp->connector->cm_state); - hvnd_refuse_connection(qp->connector, -ECONNREFUSED); - break; - - case hvnd_cm_connect_reply_sent: - case hvnd_cm_established_sent: - case hvnd_cm_accept_sent: - hvnd_warn("cm_state = %d notifying disconnect on existing connection\n", qp->connector->cm_state); - hvnd_process_notify_disconnect(qp->connector, STATUS_CANCELLED); - break; - - default: - hvnd_error("unknown cm_state = %d\n", qp->connector->cm_state); - - } - goto free_connector; - } else { - hvnd_debug("qp_state=%d, doing normal disconnect\n", qp->qp_state); - } - - if (!ep_add_work_pending(qp->connector)) - goto free_connector; - - init_completion(&qp->connector->disconnect_event); - - /* - * First issue a disconnect on the connector. - */ - - hvnd_debug("calling hvnd_connector_disconnect\n"); - ret = hvnd_connector_disconnect(nd_dev, qp->uctx, - qp->connector->ep_handle, - qp->connector); - if (ret) { - ep_del_work_pending(qp->connector); - hvnd_error("disconnect: retval is %d\n", ret); - ep_stop(qp->connector); - goto free_connector; - } - /* - * Now wait for the disconnect. - */ - jiffies = get_jiffies_64(); - wait_for_completion(&qp->connector->disconnect_event); - hvnd_debug("Completed disconnect connector=%p jiffies=%llu\n", qp->connector, get_jiffies_64() - jiffies); - - /* - * Now free up the connector and drop the reference on uctx. - */ - - ep_stop(qp->connector); - -free_connector: - hvnd_debug("destroying connector handle: %p\n", (void *) qp->connector->ep_handle); - hvnd_free_handle(nd_dev, qp->uctx, - qp->connector->ep_handle, - IOCTL_ND_CONNECTOR_FREE); - - hvnd_drop_uctx_ref(nd_dev, qp->uctx); - hvnd_destroy_ep(qp->connector); - qp->connector = NULL; -free_qp: - atomic_dec(&qp->refcnt); - hvnd_debug("Waiting for the ref cnt to go to 0\n"); - - wait_event(qp->wait, !atomic_read(&qp->refcnt)); - - hvnd_debug("About to destroy qp\n"); - hvnd_db_unmap_user(qp->uctx, (u64)qp->db_addr); - ib_umem_release(qp->umem); - - hvnd_debug("About to free qp\n"); - ret = hvnd_free_qp(nd_dev, qp->uctx, qp); - - if (ret == 0) { - hvnd_drop_uctx_ref(nd_dev, qp->uctx); - kfree(qp); - } else { - hvnd_error("free qp failed: ret is %d\n", ret); - } - - return ret; -} - -static struct ib_cq *hvnd_ib_create_cq(struct ib_device *ibdev, - const struct ib_cq_init_attr *attr, - struct ib_ucontext *ib_context, - struct ib_udata *udata) -{ - struct hvnd_ucontext *uctx; - struct hvnd_dev *nd_dev; - struct mlx4_ib_create_cq ucmd; - struct hvnd_cq *cq; - int ret = 0; - int entries = attr->cqe; - - uctx = to_nd_context(ib_context); - nd_dev = to_nd_dev(ibdev); - - if (entries < 1 || entries > uctx->max_cqe) { - hvnd_error("incorrct entries=%d\n", entries); - ret = -EINVAL; - goto err_done; - } - - cq = kzalloc(sizeof *cq, GFP_KERNEL); - if (!cq) { - ret = -ENOMEM; - goto err_done; - } - - entries = roundup_pow_of_two(entries + 1); - cq->ibcq.cqe = entries - 1; - cq->entries = entries; - cq->uctx = uctx; - - if (ib_copy_from_udata(&ucmd, udata, sizeof ucmd)) { - hvnd_error("ib_copy_from_udata failed\n"); - ret = -EFAULT; - goto err_ucpy; - } - - cq->cq_buf = (void *)ucmd.buf_addr; - cq->db_addr = (void *)ucmd.db_addr; - cq->arm_sn = 0; - - /* - * Initialize the IRP state. Need to have a separate irp state - * for CQ; for now share it with Listener/connector. - */ - ret = hvnd_init_ep(&cq->ep_object, NULL, ND_CQ, nd_dev, uctx); - - if (ret) { - hvnd_error("hvnd_init_ep failed ret=%d\n", ret); - goto err_ucpy; - } - - cq->ep_object.cq = cq; - cq->monitor = true; - - cq->umem = ib_umem_get(ib_context, ucmd.buf_addr, - (entries * uctx->cqe_size), - IB_ACCESS_LOCAL_WRITE, 1); - if (IS_ERR(cq->umem)) { - ret = IS_ERR(cq->umem); - hvnd_error("ib_umem_get failed ret=%d\n", ret); - goto err_ucpy; - } - - ret = hvnd_db_map_user(uctx, ucmd.db_addr, &cq->db_umem); - - if (ret) { - hvnd_error("hvnd_db_map_user failed ret=%d\n", ret); - goto err_db_map; - } - - ret = hvnd_create_cq(nd_dev, uctx, cq); - - if (ret) { - hvnd_error("hvnd_create_cq failed ret=%d\n", ret); - goto err_cq; - } - - cq->ep_object.ep_handle = cq->cq_handle; - - if (ib_copy_to_udata(udata, &cq->cqn, sizeof (__u32))) { - hvnd_error("ib_copy_to_udata failed\n"); - ret = -EFAULT; - goto err_ucpy_out; - } - - if (!disable_cq_notify) { - - if (!ep_add_work_pending(&cq->ep_object)) - goto err_ucpy_out; - - ret = hvnd_notify_cq(nd_dev, cq, ND_CQ_NOTIFY_ANY, - (u64)&cq->ep_object); - - if (ret) { - ep_del_work_pending(&cq->ep_object); - hvnd_error("hvnd_notify_cq failed ret=%d\n", ret); - goto err_ucpy_out; - } - } - - hvnd_acquire_uctx_ref(uctx); - - return &cq->ibcq; - -err_ucpy_out: - hvnd_destroy_cq(nd_dev, cq); - -err_cq: - hvnd_db_unmap_user(uctx, ucmd.db_addr); - -err_db_map: - ib_umem_release(cq->umem); - -err_ucpy: - kfree(cq); -err_done: - return ERR_PTR(ret); -} - -static struct ib_qp *hvnd_get_qp(struct ib_device *dev, int qpn) -{ - struct hvnd_dev *nd_dev; - struct hvnd_qp *qp = NULL; - - nd_dev = to_nd_dev(dev); - qp = get_qpp(nd_dev, qpn); - return (qp?&qp->ibqp:NULL); -} - -static int hvnd_ib_destroy_cq(struct ib_cq *ib_cq) -{ - struct hvnd_ucontext *uctx; - struct hvnd_dev *nd_dev; - struct hvnd_cq *cq; - - cq = to_nd_cq(ib_cq); - uctx = cq->uctx; - nd_dev = to_nd_dev(uctx->ibucontext.device); - - cq->monitor = false; - -// hvnd_cancel_io(&cq->ep_object); - ep_stop(&cq->ep_object); - - hvnd_deinit_ep(&cq->ep_object); - - hvnd_db_unmap_user(uctx, (u64)cq->db_addr); - ib_umem_release(cq->umem); - - hvnd_destroy_cq(nd_dev, cq); - - hvnd_drop_uctx_ref(nd_dev, uctx); - kfree(cq); - - return 0; -} - -static int hvnd_resize_cq(struct ib_cq *cq, int cqe, struct ib_udata *udata) -{ - /* - * NDDirect does not support resizing CQ. - */ - hvnd_info("check code\n"); - return -ENOSYS; -} - -static int hvnd_poll_cq(struct ib_cq *ibcq, int num_entries, struct ib_wc *wc) -{ - hvnd_info("check code\n"); - return 0; -} - -static struct ib_mr *hvnd_get_dma_mr(struct ib_pd *pd, int acc) -{ - hvnd_info("check code\n"); - return NULL; -} - -static void debug_dump_umem(struct ib_umem *umem) -{ -#ifdef HVND_MEM_DEBUG - struct ib_umem_chunk *chunk; - struct scatterlist *sg; - int len, j, entry; - int shift = ffs(umem->page_size) - 1; - - hvnd_debug("umem=%p\n", umem); - hvnd_debug("context=%p length=%lu offset=%d page_size=%d writable=%d hugetlb=%d\n", - umem->context, - umem->length, - umem->offset, - umem->page_size, - umem->writable, - umem->hugetlb); - - list_for_each_entry(chunk, &umem->chunk_list, list) { - hvnd_debug("chunk->nmap=%d\n", chunk->nmap); - for (j = 0; j < chunk->nmap; ++j) { - sg = &chunk->page_list[j]; - hvnd_debug("sg_dma_len=%d sg_dma_address=%llx\n", sg_dma_len(sg), sg_dma_address(sg)); - hvnd_debug("page_link=%lx offset=%u length=%u\n", sg->page_link, sg->offset, sg->length); - len = sg_dma_len(&chunk->page_list[j]) >> shift; - for_each_sg(&chunk->page_list[j], sg, len, entry) { - hvnd_debug("PFN=%lu\n", page_to_pfn(sg_page(sg))); - } - } - } -#endif -} - - -static struct ib_mr *hvnd_reg_user_mr(struct ib_pd *pd, u64 start, u64 length, - u64 virt, int acc, struct ib_udata *udata) -{ - int err = 0; - struct hvnd_ib_pd *hvndpd = to_nd_pd(pd); - struct hvnd_mr *mr; - - mr = kmalloc(sizeof(*mr), GFP_KERNEL); - if (!mr) { - return ERR_PTR(-ENOMEM); - } - mr->pd = hvndpd; - - mr->umem = ib_umem_get(pd->uobject->context, start, length, acc, 0); - if (IS_ERR(mr->umem)) { - err = PTR_ERR(mr->umem); - hvnd_error("ib_umem_get failed ret=%d\n", err); - kfree(mr); - return ERR_PTR(err); - } - - debug_dump_umem(mr->umem); - - mr->start = start; - mr->length = length; - mr->virt = virt; - mr->acc = acc; - - hvnd_debug("start=%llx length=%llx virt=%llx acc=%d\n", start, length, virt, acc); - - /* - * First create a memory region. - */ - err = hvnd_cr_mr(to_nd_dev(pd->device), - to_nd_context(pd->uobject->context), hvndpd->handle, - &mr->mr_handle); - if (err) { - hvnd_error("cr_mr failed; ret is %d\n", err); - goto err; - } - - err = hvnd_mr_register(to_nd_dev(pd->device), - to_nd_context(pd->uobject->context), mr); - - if (err) - goto err0; - - hvnd_acquire_uctx_ref(to_nd_context(pd->uobject->context)); - - return &mr->ibmr; - -err0: - hvnd_free_mr(to_nd_dev(pd->device), - to_nd_context(pd->uobject->context), mr->mr_handle); -err: - ib_umem_release(mr->umem); - kfree(mr); - return ERR_PTR(err); -} - - - -static int hvnd_dereg_mr(struct ib_mr *ib_mr) -{ - int ret; - struct hvnd_mr *mr = to_nd_mr(ib_mr); - struct hvnd_ucontext *uctx = to_nd_context(ib_mr->pd->uobject->context); - struct hvnd_dev *nd_dev = to_nd_dev(ib_mr->device); - - - hvnd_debug("dereg_mr entering\n"); - - ret = hvnd_deregister_mr(nd_dev, uctx, mr->mr_handle); - - if (ret) { - hvnd_error("hvnd_deregister_mr() failed: %x\n", ret); - return ret; - } - /* - * Now free up the memory region. - */ - - ret = hvnd_free_mr(nd_dev, uctx, mr->mr_handle); - if (ret) { - hvnd_error("hvnd_free_mr() failed: %x\n", ret); - return ret; - } - - ib_umem_release(mr->umem); - - hvnd_drop_uctx_ref(nd_dev, uctx); - kfree(mr); - - hvnd_debug("dereg_mr done\n"); - return 0; -} - -static struct ib_mw *hvnd_alloc_mw(struct ib_pd *pd, enum ib_mw_type type) -{ - hvnd_info("check code\n"); - return NULL; -} - -static int hvnd_dealloc_mw(struct ib_mw *mw) -{ - debug_check(__func__, __LINE__); - return 0; -} - -static int hvnd_arm_cq(struct ib_cq *ibcq, enum ib_cq_notify_flags flags) -{ - struct hvnd_ucontext *uctx; - struct hvnd_dev *nd_dev; - struct hvnd_cq *cq; - - cq = to_nd_cq(ibcq); - uctx = cq->uctx; - nd_dev = to_nd_dev(uctx->ibucontext.device); - - - debug_check(__func__, __LINE__); - - return 0; -} - -static int hvnd_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr, - struct ib_send_wr **bad_wr) -{ - debug_check(__func__, __LINE__); - return 0; -} - -int hvnd_post_receive(struct ib_qp *ibqp, struct ib_recv_wr *wr, - struct ib_recv_wr **bad_wr) -{ - debug_check(__func__, __LINE__); - return 0; -} - -static int hvnd_resolve_addr(struct sockaddr_in *laddr, struct sockaddr_in *raddr, - struct if_physical_addr *phys_addrstruct) -{ - int ret; - - phys_addrstruct->length = ETH_ALEN; - ret = hvnd_get_neigh_mac_addr((struct sockaddr *)laddr, - (struct sockaddr *)raddr, - phys_addrstruct->addr); - - hvnd_debug("Dest MAC is %pM\n", phys_addrstruct->addr); - return ret; -} - -static int hvnd_connect(struct iw_cm_id *cm_id, - struct iw_cm_conn_param *conn_param) -{ - int ret = 0; - struct hvnd_dev *nd_dev; - struct hvnd_ep_obj *ep_object; - struct sockaddr_in *raddr = (struct sockaddr_in *)&cm_id->remote_addr; - struct sockaddr_in *laddr = (struct sockaddr_in *)&cm_id->local_addr; - struct hvnd_qp *qp; - struct if_physical_addr phys_addrstruct; - union nd_sockaddr_inet dest_addr; - u64 connector_handle; - union nd_sockaddr_inet addr; - char addr_buf[50]; - - if (cm_id->remote_addr.ss_family != AF_INET) { - hvnd_error("cm_id->remote_addr.ss_family=%d not AF_INET\n", cm_id->remote_addr.ss_family); - return -ENOSYS; - } - - qp = get_qpp(to_nd_dev(cm_id->device), conn_param->qpn); - - if (!qp) - { - hvnd_error("failed to find qp conn_param->qpn=%d\n", conn_param->qpn); - return -EINVAL; - } - - cm_id->provider_data = qp; - cm_id->add_ref(cm_id); - qp->cm_id = cm_id; - - /* - * Set the read/write limits. - * Can we change the limits on a created QP? Luke? - */ - nd_dev = to_nd_dev(cm_id->device); - ep_object = hvnd_setup_ep(cm_id, ND_CONNECTOR, nd_dev, qp->uctx); - hvnd_debug("active connection: local irp is %d\n", ep_object->local_irp); - if (!ep_object) { - hvnd_error("hvnd_setup_ep failure\n"); - ret = -ENOMEM; - goto err_limit; - } - - ret = hvnd_cr_connector(nd_dev, qp->uctx, - &connector_handle); - - if (ret) { - hvnd_error("hvnd_cr_connector failure ret=%d\n", ret); - goto err_cr_connector; - } - - hvnd_acquire_uctx_ref(qp->uctx); - ep_object->ep_handle = connector_handle; - ep_object->incoming = false; - qp->connector = ep_object; - - /* - * Bind the local address to the connector. - */ - hvnd_debug("Connect local address is %s\n", debug_inet_ntoa(laddr->sin_addr, addr_buf)); - - memcpy(&addr.ipv4, laddr, sizeof(struct sockaddr_in)); - hvnd_debug("CONNECT AF %d port %d addr %s\n", addr.ipv4.sin_family, addr.ipv4.sin_port, debug_inet_ntoa(addr.ipv4.sin_addr, addr_buf)); - - ret = hvnd_bind_connector(nd_dev, qp->uctx, - connector_handle, - &addr); - - if (ret) { - hvnd_error("hvnd_bind_connector failed ret=%d\n", ret); - goto err_bind_connector; - } - - printk(KERN_ERR "LL %s: laddr=%pI4 raddr=%pI4\n", __func__, &laddr->sin_addr, &raddr->sin_addr); - ret = hvnd_resolve_addr(laddr, raddr, &phys_addrstruct); - if (ret) { - hvnd_error("hvnd_resolve_addr failed ret=%d\n", ret); - goto err_bind_connector; - } - - memcpy(&dest_addr.ipv4, raddr, sizeof(struct sockaddr_in)); - - - - /* - * Now attempt to connect. - */ - - hvnd_debug("About to initiate connection\n"); - - if (!ep_add_work_pending(ep_object)) - goto err_bind_connector; - - ep_object->cm_state = hvnd_cm_connect_received; - ret = hvnd_connector_connect(nd_dev, qp->uctx, - ep_object->ep_handle, - conn_param->ird, conn_param->ord, - conn_param->private_data_len, - (u8 *)conn_param->private_data, - qp->qp_handle, - &phys_addrstruct, &dest_addr, - ep_object); - - if (ret == 0) { - return 0; - } else { - ep_object->cm_state = hvnd_cm_idle; - ep_del_work_pending(ep_object); - hvnd_error("hvnd_connector_connect failed ret=%d\n", ret); - } - -err_bind_connector: - qp->connector = NULL; - hvnd_free_connector(nd_dev, qp->uctx, - connector_handle); - hvnd_drop_uctx_ref(nd_dev, qp->uctx); - -err_cr_connector: - kfree(ep_object); - -err_limit: - cm_id->provider_data = NULL; - qp->cm_id = NULL; - cm_id->rem_ref(cm_id); - return ret; -} - -static int hvnd_accept_cr(struct iw_cm_id *cm_id, - struct iw_cm_conn_param *conn_param) -{ - int ret = 0; - struct hvnd_dev *nd_dev; - struct hvnd_qp *qp; - struct hvnd_ep_obj *connector; - enum ibv_qp_state new_qp_state; - - hvnd_debug("Accepting connection - PASSIVE\n"); - nd_dev = to_nd_dev(cm_id->device); - qp = get_qpp(to_nd_dev(cm_id->device), conn_param->qpn); - - if (!qp) { - hvnd_error("get_qpp failed conn_param->qpn=%d\n", conn_param->qpn); - return -EINVAL; - } - - - connector = (struct hvnd_ep_obj *)cm_id->provider_data; - qp->connector = connector; - - if (connector == NULL) { - hvnd_error("NULL connector!\n"); - return -EINVAL; - } - hvnd_debug("connector's cm_id is %p caller cm_id=%p\n", connector->cm_id, cm_id); - - connector->cq = qp->recv_cq; - - - /* - * Setup state for the accepted connection. - */ - cm_id->add_ref(cm_id); - connector->cm_id = cm_id; - if (conn_param == NULL) { - hvnd_error("NULL conn_param!\n"); - return -EINVAL; - } - - connector->ord = conn_param->ord; - connector->ird = conn_param->ird; - - if (!ep_add_work_pending(connector)) - goto error; - - init_completion(&connector->connector_accept_event); - - ret = hvnd_connector_accept(nd_dev, qp->uctx, connector->ep_handle, - qp->qp_handle, conn_param->ird, - conn_param->ord, conn_param->private_data_len, - conn_param->private_data, - &new_qp_state, connector); - - if (ret) { - ep_del_work_pending(connector); - hvnd_error("connector accept failed\n"); - goto error; - } - - wait_for_completion(&connector->connector_accept_event); - ret = connector->connector_accept_status; - - if(ret) { - hvnd_error("connector_accept failed status=%x\n", ret); - ret = -EIO; - goto error; - } - - hvnd_debug("Passive Connection Accepted; new qp state is %d\n", new_qp_state); - connector->cm_state = hvnd_cm_accept_sent; - return 0; - -error: - ep_stop(connector); - connector->cm_id = NULL; - connector->cm_state = hvnd_cm_idle; - - qp->connector = NULL; - cm_id->rem_ref(cm_id); - - return ret; -} - -static int hvnd_reject_cr(struct iw_cm_id *cm_id, const void *pdata, - u8 pdata_len) -{ - debug_check(__func__, __LINE__); - return 0; -} - -void hvnd_process_disconnect(struct hvnd_ep_obj *ep_object, int status) -{ - struct iw_cm_event cm_event; - - switch (status) { - case STATUS_SUCCESS: - case STATUS_CANCELLED: - break; - - default: - hvnd_warn("disconnect complete failed: status:%d\n", status); - } - - - hvnd_debug("active disconnect processed\n"); - memset(&cm_event, 0, sizeof(cm_event)); - - complete(&ep_object->disconnect_event); -} - - -void hvnd_process_notify_disconnect(struct hvnd_ep_obj *ep_object, int status) -{ - struct iw_cm_event cm_event; - - // make sure we only disconnect once - if (atomic_xchg(&ep_object->disconnect_notified, 1)) - return; - - /* - * Turn off CQ monitoring. - */ - if (ep_object->cq) - ep_object->cq->monitor = false; - - switch(ep_object->cm_state) { - case hvnd_cm_connect_reply_sent: - case hvnd_cm_established_sent: - case hvnd_cm_accept_sent: - break; - - default: - hvnd_error("unexpected cm_state=%d\n", ep_object->cm_state); - return; - } - - switch (status) { - case STATUS_SUCCESS: - case STATUS_CANCELLED: - case STATUS_DISCONNECTED: - break; - - default: - hvnd_warn("notify disconnect complete failed: status:%d\n", status); - } - - hvnd_debug("passive disconnect notified\n"); - memset(&cm_event, 0, sizeof(cm_event)); - - /* - * Other end disconnected. - * Connection has been disconnected; - * notify the cm layer. - */ - cm_event.status = -ECONNRESET; - cm_event.event = IW_CM_EVENT_CLOSE; - - if ((ep_object->cm_id) && - (ep_object->cm_id->event_handler)) { - - ep_object->cm_id->event_handler(ep_object->cm_id, &cm_event); - - ep_object->cm_id->rem_ref(ep_object->cm_id); - ep_object->cm_state = hvnd_cm_close_sent; - } -} - -void hvnd_process_connector_accept(struct hvnd_ep_obj *ep_object, int status) -{ - struct iw_cm_event cm_event; - int ret; - - /* this is the problem area the return status may be - 1: 0xc00000b5 (3221225653) - {Device Timeout} The specified I/O operation on %hs was not completed before the time-out period expired - 2: NTSTATUS 0xc0000241 (3221226049) - The transport connection was aborted by the local system. - if we do nothing here, iwcm will wait for IW_CM_EVENT_ESTABLISHED forever, and unable to clean shutdown - need to fail the call eariler on accept - */ - - ep_object->connector_accept_status = status; - - if (status) { - hvnd_error("Connector accept failed; status is %x\n", status); - complete(&ep_object->connector_accept_event); - return; - } - - memset(&cm_event, 0, sizeof(cm_event)); - cm_event.event = IW_CM_EVENT_ESTABLISHED; - cm_event.ird = ep_object->ird; - cm_event.ord = ep_object->ord; - cm_event.provider_data = (void*)ep_object; - - /* - * We have successfully passively accepted the - * incoming connection. - */ - - hvnd_debug("Passive connection accepted!!\n"); - if ((ep_object->cm_id) && - (ep_object->cm_id->event_handler)) { - ep_object->cm_id->event_handler(ep_object->cm_id, &cm_event); - ep_object->cm_state = hvnd_cm_established_sent; - } - - complete(&ep_object->connector_accept_event); - - /* - * Request notification if the other end - * were to disconnect. - */ - if (!ep_add_work_pending(ep_object)) - return; - - ret = hvnd_connector_notify_disconnect(ep_object->nd_dev, - ep_object->uctx, - ep_object->ep_handle, - ep_object); - - if (ret) { - ep_del_work_pending(ep_object); - hvnd_error("Connector notify disconnect failed; ret: %d\n", ret); - } -} - - -void hvnd_process_cq_event_pending(struct hvnd_ep_obj *ep_object, - int status) -{ - - struct ib_cq *ibcq; - struct hvnd_cq *cq; - - cq = ep_object->cq; - ibcq = &ep_object->cq->ibcq; - - if (!cq->monitor) - return; - - // call the previous CQ complete - if (status == STATUS_PENDING && cq->upcall_pending && ibcq->comp_handler) { - ibcq->comp_handler(ibcq, ibcq->cq_context); - cq->upcall_pending = false; - hvnd_debug("CQ comp_handler called arm_sn=%d\n", cq->arm_sn); -// printk_ratelimited("CQ comp_handler called arm_sn=%d\n", cq->arm_sn); - } - - if (status != STATUS_PENDING && ibcq->comp_handler && ibcq->cq_context) { - ibcq->comp_handler(ibcq, ibcq->cq_context); - hvnd_error("CQ comp_handler called status=%x\n", status); - } -} - -void hvnd_process_cq_event_complete(struct hvnd_ep_obj *ep_object, - int status) -{ - struct ib_cq *ibcq; - struct hvnd_cq *cq; - int ret; - - cq = ep_object->cq; - ibcq = &ep_object->cq->ibcq; - - // call hte previous CQ complete - if(cq->upcall_pending && ibcq->comp_handler){ - ibcq->comp_handler(ibcq, ibcq->cq_context); - cq->upcall_pending = false; - hvnd_debug("CQ comp_handler called arm_sn=%d\n", cq->arm_sn); -// printk_ratelimited("CQ comp_handler called arm_sn=%d\n", cq->arm_sn); - } - - cq->upcall_pending = true; - if (!ep_add_work_pending(ep_object)) - return; - - ret = hvnd_notify_cq(ep_object->nd_dev, - ep_object->cq, - ND_CQ_NOTIFY_ANY, - (u64)ep_object); - - if (ret) { - ep_del_work_pending(ep_object); -// hvnd_manage_io_state(ep_object, true); - hvnd_error("hvnd_notify_cq failed ret=%d\n", ret); - } - - if ((status != 0) && (status != STATUS_CANCELLED)) { - if (ibcq->event_handler) { - struct ib_event event; - event.device = ibcq->device; - event.event = IB_EVENT_CQ_ERR; - event.element.cq = ibcq; - ibcq->event_handler(&event, ibcq->cq_context); - - hvnd_warn("CQ event_handler called status=%x\n", status); - } - } -} - -int init_cm_event(struct hvnd_ep_obj *ep_object, struct iw_cm_event *cm_event, - int event) -{ - struct sockaddr_in *laddr = (struct sockaddr_in *)&cm_event->local_addr; - struct sockaddr_in *raddr = (struct sockaddr_in *)&cm_event->remote_addr; - struct nd_read_limits rd_limits; - union nd_sockaddr_inet local_addr; - union nd_sockaddr_inet remote_addr; - int ret; - - /* - * Now get the local address. - */ - ret = hvnd_connector_get_local_addr(ep_object->nd_dev, - ep_object->uctx, - ep_object->ep_handle, - &local_addr); - - if (ret) { - hvnd_error("Connector get addr failed; ret: %d\n", ret); - return ret; - } - /* - * Now get the remote address. - */ - ret = hvnd_connector_get_peer_addr(ep_object->nd_dev, - ep_object->uctx, - ep_object->ep_handle, - &remote_addr); - - if (ret) { - hvnd_error("Connector get peer addr failed; ret: %d\n", ret); - return ret; - } - - /* - * Get other connection parameters. - */ - - ret = hvnd_connector_get_rd_limits(ep_object->nd_dev, - ep_object->uctx, - ep_object->ep_handle, - &rd_limits); - - if (ret) { - hvnd_error("Connector rd limits failed; ret: %d\n", ret); - return ret; - } - - /* - * XXXKYS: Luke: What about the length of the priv data? - */ - ret = hvnd_connector_get_priv_data(ep_object->nd_dev, - ep_object->uctx, - ep_object->ep_handle, - ep_object->priv_data); - - if (ret) { - hvnd_error("Connector get priv data failed; ret: %d\n", ret); - return ret; - } - /* - * Initialize CM structure. - */ - laddr->sin_addr.s_addr = local_addr.ipv4.sin_addr.s_addr; - hvnd_debug("Local addr is %d\n", laddr->sin_addr.s_addr); - laddr->sin_port = local_addr.ipv4.sin_port; - laddr->sin_family = AF_INET; - - raddr->sin_addr.s_addr = remote_addr.ipv4.sin_addr.s_addr; - hvnd_debug("Remote addr is %d\n", raddr->sin_addr.s_addr); - raddr->sin_port = remote_addr.ipv4.sin_port; - raddr->sin_family = AF_INET; - - cm_event->private_data_len = MAX_PRIVATE_DATA_LEN; //KYS; LUke: is it always 148 bytes? - cm_event->private_data = ep_object->priv_data; - - cm_event->ird = rd_limits.inbound; - cm_event->ord = rd_limits.outbound; - cm_event->event = event; - - ep_object->ird = cm_event->ird; - ep_object->ord = cm_event->ord; - - return 0; -} - -static void hvnd_refuse_connection(struct hvnd_ep_obj *connector, int status) -{ - struct iw_cm_event cm_event; - - memset(&cm_event, 0, sizeof(cm_event)); - - cm_event.event = IW_CM_EVENT_CONNECT_REPLY; - cm_event.status = status; - - hvnd_debug("returning status %d on connector %p\n", status, connector); - - if (connector->cm_id && connector->cm_id->event_handler) { - connector->cm_id->event_handler(connector->cm_id, &cm_event); - connector->cm_id->rem_ref(connector->cm_id); - connector->cm_state = hvnd_cm_connect_reply_refused; - } -} - -void hvnd_process_events(struct work_struct *work) -{ - struct hvnd_work *wrk; - struct nd_read_limits rd_limits; - struct hvnd_ep_obj *ep_object; - struct hvnd_ep_obj *parent; - struct iw_cm_event cm_event; - struct sockaddr_in *laddr = (struct sockaddr_in *)&cm_event.local_addr; - struct sockaddr_in *raddr = (struct sockaddr_in *)&cm_event.remote_addr; - struct ndv_packet_hdr_control_1 *ctrl_hdr; - union nd_sockaddr_inet local_addr; - union nd_sockaddr_inet remote_addr; - struct pkt_nd_get_connection_listener *connection_pkt; - struct iw_cm_id *cm_id = NULL; - int status; - int ioctl; - int ret; - char priv_data[MAX_PRIVATE_DATA_LEN]; - enum ibv_qp_state new_qp_state; - struct incoming_pkt *incoming_pkt; - unsigned long flags; - - memset(&cm_event, 0, sizeof(cm_event)); - memset(&priv_data, 0, MAX_PRIVATE_DATA_LEN); - - - wrk = container_of(work, struct hvnd_work, work); - - /* - * Now call into the connection manager. - */ - ep_object = (struct hvnd_ep_obj *)wrk->callback_arg; - parent = ep_object->parent; - -process_next: - incoming_pkt = NULL; - spin_lock_irqsave(&ep_object->incoming_pkt_list_lock, flags); - if (!list_empty(&ep_object->incoming_pkt_list)) { - incoming_pkt = list_first_entry(&ep_object->incoming_pkt_list, struct incoming_pkt, list_entry); - list_del(&incoming_pkt->list_entry); - } - spin_unlock_irqrestore(&ep_object->incoming_pkt_list_lock, flags); - if (incoming_pkt == NULL) - return; - - ctrl_hdr = (struct ndv_packet_hdr_control_1 *)incoming_pkt->pkt; - status = ctrl_hdr->io_status; - ioctl = ctrl_hdr->io_cntrl_code; - - hvnd_debug("Process Events IOCTL is: %s; iostatus failure: %x in work queue\n", hvnd_get_op_name(ioctl), status); - - if (status != 0) { - bool log_error = true; - - if (ioctl == IOCTL_ND_CONNECTOR_NOTIFY_DISCONNECT && status == STATUS_DISCONNECTED) // expected - log_error = false; - - if (log_error) - hvnd_warn("Process Events IOCTL is: %s; iostatus failure: %x\n", hvnd_get_op_name(ioctl), status); - } - - cm_event.status = status; - - switch (ep_object->type) { - case ND_CONNECTOR: - switch (ioctl) { - case IOCTL_ND_LISTENER_GET_CONNECTION_REQUEST: - - if (ep_object->parent != NULL) { - - // Do nothing with this connection request if listener is stopping - if (!ep_add_work_pending(ep_object->parent)) - break; - - cm_id = ep_object->parent->cm_id; //Listener - } - - connection_pkt = (struct pkt_nd_get_connection_listener *) ctrl_hdr; - - if ((status == 0) || (status == STATUS_CANCELLED)) { - hvnd_get_incoming_connections(ep_object->parent, - ep_object->parent->nd_dev, ep_object->uctx); - } - - if (status) - goto get_connection_request_done; - - /* - * Now get the local address. - */ - ret = hvnd_connector_get_local_addr(ep_object->nd_dev, - ep_object->uctx, - ep_object->ep_handle, - &local_addr); - - if (ret) { - hvnd_error("Connector get addr failed; ret: %d\n", ret); - goto get_connection_request_done; - } - /* - * Now get the remote address. - */ - ret = hvnd_connector_get_peer_addr(ep_object->nd_dev, - ep_object->uctx, - ep_object->ep_handle, - &remote_addr); - - if (ret) { - hvnd_error("Connector get peer addr failed; ret: %d\n", ret); - goto get_connection_request_done; - } - /* - * Get other connection parameters. - */ - - ret = hvnd_connector_get_rd_limits(ep_object->nd_dev, - ep_object->uctx, - ep_object->ep_handle, - &rd_limits); - - if (ret) { - hvnd_error("Connector rd limits failed; ret: %d\n", ret); - goto get_connection_request_done; - } - - /* - * XXXKYS: Luke: What about the length of the priv data? - */ - ret = hvnd_connector_get_priv_data(ep_object->nd_dev, - ep_object->uctx, - ep_object->ep_handle, - ep_object->priv_data); - - if (ret) { - hvnd_error("Connector get priv data failed; ret: %d\n", ret); - goto get_connection_request_done; - } - - cm_event.event = IW_CM_EVENT_CONNECT_REQUEST; - cm_event.provider_data = (void*)ep_object; - - laddr->sin_addr.s_addr = local_addr.ipv4.sin_addr.s_addr; - hvnd_debug("Local addr is %d\n", laddr->sin_addr.s_addr); - laddr->sin_port = local_addr.ipv4.sin_port; - laddr->sin_family = AF_INET; - - raddr->sin_addr.s_addr = remote_addr.ipv4.sin_addr.s_addr; - hvnd_debug("Remote addr is %d\n", raddr->sin_addr.s_addr); - raddr->sin_port = remote_addr.ipv4.sin_port; - raddr->sin_family = AF_INET; - - cm_event.private_data_len = MAX_PRIVATE_DATA_LEN; //KYS; LUke: is it always 148 bytes? - cm_event.private_data = ep_object->priv_data; - - cm_event.ird = rd_limits.inbound; - cm_event.ord = rd_limits.outbound; - - ep_object->ird = cm_event.ird; - ep_object->ord = cm_event.ord; - - - if ((cm_id != NULL) && cm_id->event_handler) { - cm_id->event_handler(cm_id, &cm_event); - ep_object->cm_state = hvnd_cm_connect_request_sent; - } - -get_connection_request_done: - if (ep_object->parent != NULL) { - - ep_del_work_pending(ep_object->parent); - } - break; - - case IOCTL_ND_CONNECTOR_CONNECT: - - cm_event.event = IW_CM_EVENT_CONNECT_REPLY; - if(status == STATUS_TIMEOUT && ep_object->connector_connect_retry<3) { //TIMEOUT retry - - if (!ep_add_work_pending(ep_object)) - goto refuse_connection; - - hvnd_warn("Connector connect timed out, reconnecting... retry count: %d\n", ep_object->connector_connect_retry); - ep_object->connector_connect_retry++; - ret = hvnd_send_ioctl_pkt(ep_object->nd_dev, &ep_object->connector_connect_pkt.hdr, - sizeof(ep_object->connector_connect_pkt), - (u64)&ep_object->connector_connect_pkt); - - if (ret) { - hvnd_error("Connector on time out failed: %d\n", ret); - ep_del_work_pending(ep_object); - goto refuse_connection; - } - break; - } - -refuse_connection: - if (status) { - cm_event.status = -ECONNREFUSED; - if (status == STATUS_TIMEOUT) - cm_event.status = -ETIMEDOUT; - - hvnd_refuse_connection(ep_object, cm_event.status); - break; - } - - hvnd_debug("ACTIVE Connection ACCEPTED\n"); - ret = init_cm_event(ep_object, &cm_event, IW_CM_EVENT_CONNECT_REPLY); - if (ret) { - hvnd_error("init_cm_event failed ret=%d\n", ret); - goto process_done; - } - - ret = hvnd_connector_complete_connect(ep_object->nd_dev, - ep_object->uctx, - ep_object->ep_handle, - &new_qp_state); - if (ret) { - hvnd_error("connector_complete failed\n"); - goto process_done; - } - - cm_event.provider_data = (void*)ep_object; - - if ((ep_object->cm_id) && - (ep_object->cm_id->event_handler)) { - ep_object->cm_id->event_handler(ep_object->cm_id, &cm_event); - ep_object->cm_state = hvnd_cm_connect_reply_sent; - } - /* - * Rquest notification if the other end - * were to disconnect. - */ - if (!ep_add_work_pending(ep_object)) - goto process_done; - - ret = hvnd_connector_notify_disconnect(ep_object->nd_dev, - ep_object->uctx, - ep_object->ep_handle, - ep_object); - - if (ret) { - ep_del_work_pending(ep_object); - hvnd_error("Connector notify disconnect failed; ret: %d\n", ret); - } - - break; - - case IOCTL_ND_CONNECTOR_NOTIFY_DISCONNECT: - hvnd_process_notify_disconnect(ep_object, status); - break; - - - default: - hvnd_error("Unknown Connector IOCTL\n"); - break; - } - break; - default: - hvnd_error("Unknown endpoint object\n"); - break; - } -process_done: - kfree(incoming_pkt); - ep_del_work_pending(ep_object); - - goto process_next; -} - - -static struct hvnd_ep_obj *hvnd_setup_ep(struct iw_cm_id *cm_id, int ep_type, - struct hvnd_dev *nd_dev, - struct hvnd_ucontext *uctx) -{ - struct hvnd_ep_obj *ep_object; - int ret; - - ep_object = kzalloc(sizeof(struct hvnd_ep_obj), GFP_KERNEL); - - if (!ep_object) - return NULL; - - ret = hvnd_init_ep(ep_object, cm_id, ep_type, nd_dev, uctx); - - if (ret) { - hvnd_error("hvnd_init_ep failed ret=%d\n", ret); - kfree(ep_object); - return NULL; - } - - return ep_object; -} - -/* -return value: - true: I/O state is stopped, we should not do upcall - flase: I/O state is running and normal - -static bool hvnd_manage_io_state(struct hvnd_ep_obj *ep, bool failure) -{ - unsigned long flags; - - spin_lock_irqsave(&ep->ep_lk, flags); - if (ep->to_be_destroyed) { - hvnd_warn("ep being destroyed\n"); - if (ep->io_outstanding) { - hvnd_warn("ep being destroyed i/O pending waking up on %p\n", &ep->block_event); - complete(&ep->block_event); - ep->io_outstanding = false; - } - spin_unlock_irqrestore(&ep->ep_lk, flags); - return true; - } - if (!failure) - ep->io_outstanding = true; - spin_unlock_irqrestore(&ep->ep_lk, flags); - return false; -} -*/ - -static int hvnd_get_incoming_connections(struct hvnd_ep_obj *listener, - struct hvnd_dev *nd_dev, - struct hvnd_ucontext *uctx) -{ - struct hvnd_ep_obj *connector; - u64 connector_handle; - int ret; - - /* - * First handle the protocol for - * destruction - outstanding I/O. - */ - -// if (hvnd_manage_io_state(listener, false)) -// return 0; - /* - * Create a connector. - */ - connector = hvnd_setup_ep(listener->cm_id, ND_CONNECTOR, nd_dev, uctx); - if (!connector) { - hvnd_error("hvnd_setup_ep failed\n"); - ret = -ENOMEM; - goto con_alloc_err; - } - - ret = hvnd_cr_connector(nd_dev, uctx, - &connector_handle); - if (ret) { - hvnd_error("hvnd_cr_connector failed ret=%d\n", ret); - goto con_cr_err; - } - - /* - * Now get a connection if one is pending. - */ - connector->ep_handle = connector_handle; - connector->parent = listener; - - if (!ep_add_work_pending(connector)) - goto get_connection_err; - - ret = hvnd_get_connection_listener(nd_dev, uctx, - listener->ep_handle, - connector_handle, - (u64)connector); - - if (ret) { - hvnd_debug("listener_get_connection failed\n"); - ep_del_work_pending(connector); - goto get_connection_err; - } - - hvnd_acquire_uctx_ref(uctx); - listener->outstanding_handle = connector_handle; - listener->outstanding_ep = connector; - hvnd_debug("outstanding handle is %p\n", (void *)connector_handle); - return 0; - -get_connection_err: - hvnd_free_handle(nd_dev, uctx, - connector_handle, - IOCTL_ND_CONNECTOR_FREE); - -con_cr_err: - kfree(connector); -con_alloc_err: -// hvnd_manage_io_state(listener, true); - return ret; -} - -static int hvnd_create_listen(struct iw_cm_id *cm_id, int backlog) -{ - int ret = 0; - struct hvnd_dev *nd_dev; - struct hvnd_ucontext *uctx; - struct hvnd_ep_obj *ep_object; - union nd_sockaddr_inet addr; - union nd_sockaddr_inet local_addr; - u64 listener_handle; - struct sockaddr_in *laddr = (struct sockaddr_in *)&cm_id->local_addr; - union nd_sockaddr_inet og_addr; - - - nd_dev = to_nd_dev(cm_id->device); - uctx = get_uctx(nd_dev, current_pid()); - hvnd_debug("uctx is %p; pid is %d\n", uctx, current_pid()); - - if (cm_id->local_addr.ss_family != AF_INET) { - hvnd_error("cm_id->local_addr.ss_family =%d not AF_INET\n", cm_id->local_addr.ss_family); - return -ENOSYS; - } - - /* - * If the local address is LOOPBACK or INADDR_ANY, get an an address - * to bind the listener. For now, just get the first address - * available. - */ - - if (IN_LOOPBACK(ntohl(laddr->sin_addr.s_addr)) || - (laddr->sin_addr.s_addr == INADDR_ANY)) { - - hvnd_debug("need to get an address\n"); - ret = hvnd_get_outgoing_rdma_addr(nd_dev, uctx, &og_addr); - - if (ret) { - hvnd_error("failed to get the og address\n"); - return ret; - } - - laddr->sin_addr.s_addr = og_addr.ipv4.sin_addr.s_addr; - } - - cm_id->add_ref(cm_id); - - ep_object = hvnd_setup_ep(cm_id, ND_LISTENER, nd_dev, uctx); - - if (!ep_object) { - hvnd_error("hvnd_setup_ep returned NULL\n"); - goto alloc_err; - } - - ret = hvnd_cr_listener(nd_dev, uctx, - &listener_handle); - if (ret) { - hvnd_error("hvnd_cr_listener failed ret=%d\n", ret); - goto cr_err; - } - - ep_object->ep_handle = listener_handle; - - cm_id->provider_data = ep_object; - - /* - * Now bind the listener. - * IPV4 support only. - */ - memcpy(&addr.ipv4, laddr, sizeof(struct sockaddr_in)); - - ret = hvnd_bind_listener(nd_dev, uctx, - listener_handle, - &addr); - if (ret) { - hvnd_error("hvnd_bind_listener failed ret=%d\n", ret); - goto bind_err; - } - - /* - * Now get the local address. - */ - ret = hvnd_get_addr_listener(nd_dev, uctx, - listener_handle, - &local_addr); - if (ret) { - hvnd_error("hvnd_get_addr_listener failed ret=%d\n", ret); - goto bind_err; - } - - /* - * Now put the listener in the listen mode. - */ - - ret = hvnd_listen_listener(nd_dev, uctx, - listener_handle, - backlog); - - if (ret) { - hvnd_error("hvnd_listen_listener failed ret=%d\n", ret); - goto bind_err; - } - - - /* - * Now get a pending connection if one is pending. - */ - ret = hvnd_get_incoming_connections(ep_object, nd_dev, uctx); - if (ret) { - hvnd_error("hvnd_get_incoming_connections failed ret=%d\n", ret); - goto bind_err; - } - - hvnd_acquire_uctx_ref(uctx); - hvnd_debug("cm_id=%p\n", cm_id); - return 0; - -bind_err: - hvnd_free_handle(nd_dev, uctx, - listener_handle, - IOCTL_ND_LISTENER_FREE); -cr_err: - kfree(ep_object); -alloc_err: - cm_id->provider_data = NULL; - cm_id->rem_ref(cm_id); - return ret; -} - -static int hvnd_destroy_listen(struct iw_cm_id *cm_id) -{ - struct hvnd_dev *nd_dev; - struct hvnd_ucontext *uctx; - struct hvnd_ep_obj *ep_object; - - nd_dev = to_nd_dev(cm_id->device); - - ep_object = (struct hvnd_ep_obj *)cm_id->provider_data; - - hvnd_debug("uctx is %p\n", ep_object->uctx); - hvnd_debug("Destroying Listener cm_id=%p\n", cm_id); - uctx = ep_object->uctx; - - // make sure there is nothing in progress on this ep - ep_stop(ep_object); - - hvnd_free_handle(nd_dev, uctx, - ep_object->ep_handle, - IOCTL_ND_LISTENER_FREE); - - /* - * We may have an ouststanding connector for - * incoming connection requests; clean it up. - */ - - if (ep_object->outstanding_handle != 0) { - - // make sure there is nothing in progress on this ep - ep_stop(ep_object->outstanding_ep); - - hvnd_free_handle(nd_dev, uctx, - ep_object->outstanding_handle, - IOCTL_ND_CONNECTOR_FREE); - - - hvnd_drop_uctx_ref(nd_dev, uctx); - hvnd_destroy_ep(ep_object->outstanding_ep); - } - - /* - * Now everything should have stopped - */ - - cm_id->rem_ref(cm_id); - hvnd_destroy_ep(ep_object); - cm_id->provider_data = NULL; - hvnd_drop_uctx_ref(nd_dev, uctx); - - hvnd_debug("cm_id=%p\n", cm_id); - return 0; -} - -static void hvnd_qp_add_ref(struct ib_qp *ibqp) -{ - struct hvnd_qp *qp = to_nd_qp(ibqp); - atomic_inc(&qp->refcnt); -} - -void hvnd_qp_rem_ref(struct ib_qp *ibqp) -{ - struct hvnd_qp *qp = to_nd_qp(ibqp); - if (atomic_dec_and_test(&qp->refcnt)) - wake_up(&qp->wait); -} - -static DEVICE_ATTR(hw_rev, S_IRUGO, hvnd_show_rev, NULL); -static DEVICE_ATTR(fw_ver, S_IRUGO, hvnd_show_fw_ver, NULL); -static DEVICE_ATTR(hca_type, S_IRUGO, hvnd_show_hca, NULL); -static DEVICE_ATTR(board_id, S_IRUGO, hvnd_show_board, NULL); - -static struct device_attribute *hvnd_class_attributes[] = { - &dev_attr_hw_rev, - &dev_attr_fw_ver, - &dev_attr_hca_type, - &dev_attr_board_id, -}; - -int hvnd_register_device(struct hvnd_dev *dev, char *ip_addr, char *mac_addr) -{ - int ret; - int i; - - dev->ibdev.owner = THIS_MODULE; - dev->device_cap_flags = IB_DEVICE_LOCAL_DMA_LKEY | IB_DEVICE_MEM_WINDOW; - dev->ibdev.local_dma_lkey = 0; - dev->ibdev.uverbs_cmd_mask = - (1ull << IB_USER_VERBS_CMD_GET_CONTEXT) | - (1ull << IB_USER_VERBS_CMD_QUERY_DEVICE) | - (1ull << IB_USER_VERBS_CMD_QUERY_PORT) | - (1ull << IB_USER_VERBS_CMD_ALLOC_PD) | - (1ull << IB_USER_VERBS_CMD_DEALLOC_PD) | - (1ull << IB_USER_VERBS_CMD_REG_MR) | - (1ull << IB_USER_VERBS_CMD_DEREG_MR) | - (1ull << IB_USER_VERBS_CMD_CREATE_COMP_CHANNEL) | - (1ull << IB_USER_VERBS_CMD_CREATE_CQ) | - (1ull << IB_USER_VERBS_CMD_DESTROY_CQ) | - (1ull << IB_USER_VERBS_CMD_REQ_NOTIFY_CQ) | - (1ull << IB_USER_VERBS_CMD_CREATE_QP) | - (1ull << IB_USER_VERBS_CMD_MODIFY_QP) | - (1ull << IB_USER_VERBS_CMD_QUERY_QP) | - (1ull << IB_USER_VERBS_CMD_POLL_CQ) | - (1ull << IB_USER_VERBS_CMD_DESTROY_QP) | - (1ull << IB_USER_VERBS_CMD_POST_SEND) | - (1ull << IB_USER_VERBS_CMD_POST_RECV); - dev->ibdev.node_type = RDMA_NODE_RNIC; - memcpy(dev->ibdev.node_desc, HVND_NODE_DESC, sizeof(HVND_NODE_DESC)); - memcpy(&dev->ibdev.node_guid, mac_addr, 6); - dev->ibdev.phys_port_cnt = 1; //dev->nports; - dev->ibdev.num_comp_vectors = 1; - dev->ibdev.dma_device = &(dev->hvdev->device); - dev->ibdev.query_device = hvnd_query_device; - dev->ibdev.query_port = hvnd_query_port; - dev->ibdev.get_link_layer = hvnd_get_link_layer; - dev->ibdev.query_pkey = hvnd_query_pkey; - dev->ibdev.query_gid = hvnd_query_gid; - dev->ibdev.alloc_ucontext = hvnd_alloc_ucontext; - dev->ibdev.dealloc_ucontext = hvnd_dealloc_ucontext; - dev->ibdev.mmap = hvnd_mmap; - dev->ibdev.alloc_pd = hvnd_allocate_pd; - dev->ibdev.dealloc_pd = hvnd_deallocate_pd; - dev->ibdev.create_ah = hvnd_ah_create; - dev->ibdev.destroy_ah = hvnd_ah_destroy; - dev->ibdev.create_qp = hvnd_ib_create_qp; - dev->ibdev.modify_qp = hvnd_ib_modify_qp; - dev->ibdev.query_qp = hvnd_ib_query_qp; - dev->ibdev.destroy_qp = hvnd_destroy_qp; - dev->ibdev.create_cq = hvnd_ib_create_cq; - dev->ibdev.destroy_cq = hvnd_ib_destroy_cq; - dev->ibdev.resize_cq = hvnd_resize_cq; - dev->ibdev.poll_cq = hvnd_poll_cq; - dev->ibdev.get_dma_mr = hvnd_get_dma_mr; - dev->ibdev.reg_user_mr = hvnd_reg_user_mr; - dev->ibdev.dereg_mr = hvnd_dereg_mr; - dev->ibdev.alloc_mw = hvnd_alloc_mw; - dev->ibdev.dealloc_mw = hvnd_dealloc_mw; - dev->ibdev.attach_mcast = hvnd_multicast_attach; - dev->ibdev.detach_mcast = hvnd_multicast_detach; - dev->ibdev.process_mad = hvnd_process_mad; - dev->ibdev.req_notify_cq = hvnd_arm_cq; - dev->ibdev.post_send = hvnd_post_send; - dev->ibdev.post_recv = hvnd_post_receive; - dev->ibdev.uverbs_abi_ver = MLX4_IB_UVERBS_ABI_VERSION; - - dev->ibdev.get_port_immutable = hvnd_get_port_immutable; - - //DMA ops for mapping all possible addresses - dev->ibdev.dma_device->archdata.dma_ops = &vmbus_dma_ops; - - dev->ibdev.iwcm = kmalloc(sizeof(struct iw_cm_verbs), GFP_KERNEL); - if (!dev->ibdev.iwcm) - return -ENOMEM; - - dev->ibdev.iwcm->connect = hvnd_connect; - dev->ibdev.iwcm->accept = hvnd_accept_cr; - dev->ibdev.iwcm->reject = hvnd_reject_cr; - dev->ibdev.iwcm->create_listen = hvnd_create_listen; - dev->ibdev.iwcm->destroy_listen = hvnd_destroy_listen; - dev->ibdev.iwcm->add_ref = hvnd_qp_add_ref; - dev->ibdev.iwcm->rem_ref = hvnd_qp_rem_ref; - dev->ibdev.iwcm->get_qp = hvnd_get_qp; - - strlcpy(dev->ibdev.name, "mlx4_%d", IB_DEVICE_NAME_MAX); - ret = ib_register_device(&dev->ibdev, NULL); - if (ret) { - hvnd_error("ib_register_device failed ret=%d\n", ret); - goto bail1; - } - - for (i = 0; i < ARRAY_SIZE(hvnd_class_attributes); ++i) { - ret = device_create_file(&dev->ibdev.dev, - hvnd_class_attributes[i]); - if (ret) { - hvnd_error("device_create_file failed ret=%d\n", ret); - goto bail2; - } - } - - dev->ib_active = true; - - return 0; -bail2: - ib_unregister_device(&dev->ibdev); -bail1: - kfree(dev->ibdev.iwcm); - return ret; -} - -void hvnd_unregister_device(struct hvnd_dev *dev) -{ - int i; - - for (i = 0; i < ARRAY_SIZE(hvnd_class_attributes); ++i) - device_remove_file(&dev->ibdev.dev, - hvnd_class_attributes[i]); - ib_unregister_device(&dev->ibdev); - kfree(dev->ibdev.iwcm); - ib_dealloc_device((struct ib_device *)dev); - return; -} - -static int hvnd_try_bind_nic(unsigned char *mac, __be32 ip) -{ - int ret; - struct hvnd_dev *nd_dev = g_nd_dev; - - mutex_lock(&nd_dev->bind_mutex); - if (nd_dev->bind_complete) { - mutex_unlock(&nd_dev->bind_mutex); - return 1; - } - - memcpy(nd_dev->mac_addr, mac, 6); - *(__be32*)(nd_dev->ip_addr) = ip; - - /* - * Bind the NIC. - */ - hvnd_info("trying to bind to IP %pI4 MAC %pM\n", nd_dev->ip_addr, nd_dev->mac_addr); - ret = hvnd_bind_nic(nd_dev, false, nd_dev->ip_addr, nd_dev->mac_addr); - if (ret || nd_dev->bind_pkt.pkt_hdr.status) { - mutex_unlock(&nd_dev->bind_mutex); - return 1; - } - - /* if we reach here, this means bind_nic is a success */ - hvnd_error("successfully bound to IP %pI4 MAC %pM\n", nd_dev->ip_addr, nd_dev->mac_addr); - complete(&nd_dev->addr_set); - nd_dev->bind_complete=1; - mutex_unlock(&nd_dev->bind_mutex); - - ret = hvnd_register_device(nd_dev, nd_dev->ip_addr, nd_dev->mac_addr); - - if (!ret) - return 0; - - hvnd_error("hvnd_register_device failed ret=%d\n", ret); - - /* roll back all allocated resources on error */ - iounmap(nd_dev->mmio_virt); - release_resource(&nd_dev->mmio_resource); - - vmbus_close(nd_dev->hvdev->channel); - ib_dealloc_device((struct ib_device *)nd_dev); - - return 1; -} - -static void hvnd_inetaddr_event_up(unsigned long event, struct in_ifaddr *ifa) -{ - hvnd_try_bind_nic(ifa->ifa_dev->dev->dev_addr, ifa->ifa_address); -} - -static int hvnd_inetaddr_event(struct notifier_block *notifier, unsigned long event, void *ptr) -{ - struct in_ifaddr *ifa = ptr; - switch(event) { - case NETDEV_UP: - hvnd_inetaddr_event_up(event, ifa); - break; - default: - hvnd_debug("Received inetaddr event %lu\n", event); - } - - return NOTIFY_DONE; -} - -static struct notifier_block hvnd_inetaddr_notifier = { - .notifier_call = hvnd_inetaddr_event, -}; - -static int start_bind_nic(void) -{ - struct net_device *dev; - struct in_device *idev; - struct in_ifaddr *ifa; - - register_inetaddr_notifier(&hvnd_inetaddr_notifier); - - rtnl_lock(); - for_each_netdev(&init_net, dev) { - idev = in_dev_get(dev); - if (!idev) - continue; - for (ifa = (idev)->ifa_list; ifa && !(ifa->ifa_flags&IFA_F_SECONDARY); ifa = ifa->ifa_next) { - hvnd_try_bind_nic(dev->dev_addr, ifa->ifa_address); - } - } - rtnl_unlock(); - - return 0; -} - -static int hvnd_probe(struct hv_device *dev, - const struct hv_vmbus_device_id *dev_id) -{ - struct hvnd_dev *nd_dev; - int ret = 0; - - hvnd_debug("hvnd starting\n"); - - nd_dev = (struct hvnd_dev *)ib_alloc_device(sizeof(struct hvnd_dev)); - if (!nd_dev) { - ret = -ENOMEM; - goto err_out0; - } - - nd_dev->hvdev = dev; - /* - * We are going to masquerade as MLX4 device; - * Set the vendor and device ID accordingly. - */ - dev->vendor_id = 0x15b3; //Mellanox - dev->device_id = 0x1003; //Mellanox HCA - INIT_LIST_HEAD(&nd_dev->listentry); - spin_lock_init(&nd_dev->uctxt_lk); - nd_dev->ib_active = false; - - /* - * Initialize the state for the id table. - */ - spin_lock_init(&nd_dev->id_lock); - idr_init(&nd_dev->cqidr); - idr_init(&nd_dev->qpidr); - idr_init(&nd_dev->mmidr); - idr_init(&nd_dev->irpidr); - idr_init(&nd_dev->uctxidr); - - atomic_set(&nd_dev->open_cnt, 0); - - sema_init(&nd_dev->query_pkt_sem, 1); - - ret = vmbus_open(dev->channel, HVND_RING_SZ, HVND_RING_SZ, NULL, 0, - hvnd_callback, dev); - - if (ret) { - hvnd_error("vmbus_open failed ret=%d\n", ret); - goto err_out1; - } - - hv_set_drvdata(dev, nd_dev); - - ret = hvnd_negotiate_version(nd_dev); - - if (ret) { - hvnd_error("hvnd_negotiate_version failed ret=%d\n", ret); - goto err_out2; - } - - /* - * Register resources with the host. - */ - ret = hvnd_init_resources(nd_dev); - if (ret) { - hvnd_error("hvnd_init_resources failed ret=%d\n", ret); - goto err_out2; - } - - /* - * Try to bind every NIC to ND channel, - * ND host will only return success for the correct one - */ - nd_dev->bind_complete = 0; - mutex_init(&nd_dev->bind_mutex); - init_completion(&nd_dev->addr_set); - - g_nd_dev = nd_dev; - start_bind_nic(); - - return 0; - -err_out2: - vmbus_close(dev->channel); - -err_out1: - ib_dealloc_device((struct ib_device *)nd_dev); - -err_out0: - return ret; -} - -static int hvnd_remove(struct hv_device *dev) -{ - struct hvnd_dev *nd_dev = hv_get_drvdata(dev); - - unregister_inetaddr_notifier(&hvnd_inetaddr_notifier); - hvnd_bind_nic(nd_dev, true, nd_dev->ip_addr, nd_dev->mac_addr); - hvnd_unregister_device(nd_dev); - vmbus_close(dev->channel); - iounmap(nd_dev->mmio_virt); - release_resource(&nd_dev->mmio_resource); - return 0; -} - -static const struct hv_vmbus_device_id id_table[] = { - /* VMBUS RDMA class guid */ - /* 8c2eaf3d-32a7-4b09-ab99-bd1f1c86b501 */ - { HV_ND_GUID, }, - { }, -}; - -MODULE_DEVICE_TABLE(vmbus, id_table); - -static struct hv_driver hvnd_drv = { - .name = "hv_guest_rdma", - .id_table = id_table, - .probe = hvnd_probe, - .remove = hvnd_remove, -}; - - -static int __init init_hvnd_drv(void) -{ - - pr_info("Registered HyperV networkDirect Driver\n"); - hvnd_addr_init(); - return(vmbus_driver_register(&hvnd_drv)); - -} - -static void exit_hvnd_drv(void) -{ - pr_info("De-Registered HyperV networkDirect Driver\n"); - hvnd_addr_deinit(); - vmbus_driver_unregister(&hvnd_drv); -} - - -module_init(init_hvnd_drv); -module_exit(exit_hvnd_drv); - -MODULE_DESCRIPTION("Hyper-V NetworkDirect Driver"); -MODULE_LICENSE("GPL"); reverted: --- linux-raspi2-4.4.0/drivers/infiniband/hw/vmbus-rdma/user.h +++ linux-raspi2-4.4.0.orig/drivers/infiniband/hw/vmbus-rdma/user.h @@ -1,107 +0,0 @@ -/* - * Copyright (c) 2007 Cisco Systems, Inc. All rights reserved. - * Copyright (c) 2007, 2008 Mellanox Technologies. All rights reserved. - * - * This software is available to you under a choice of one of two - * licenses. You may choose to be licensed under the terms of the GNU - * General Public License (GPL) Version 2, available from the file - * COPYING in the main directory of this source tree, or the - * OpenIB.org BSD license below: - * - * Redistribution and use in source and binary forms, with or - * without modification, are permitted provided that the following - * conditions are met: - * - * - Redistributions of source code must retain the above - * copyright notice, this list of conditions and the following - * disclaimer. - * - * - Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following - * disclaimer in the documentation and/or other materials - * provided with the distribution. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - * SOFTWARE. - */ - -#ifndef MLX4_IB_USER_H -#define MLX4_IB_USER_H - -#include - -/* - * Increment this value if any changes that break userspace ABI - * compatibility are made. - */ - -#define MLX4_IB_UVERBS_NO_DEV_CAPS_ABI_VERSION 3 -#define MLX4_IB_UVERBS_ABI_VERSION 4 - -/* - * Make sure that all structs defined in this file remain laid out so - * that they pack the same way on 32-bit and 64-bit architectures (to - * avoid incompatibility between 32-bit userspace and 64-bit kernels). - * In particular do not use pointer types -- pass pointers in __u64 - * instead. - */ - -struct mlx4_ib_alloc_ucontext_resp_v3 { - __u32 qp_tab_size; - __u16 bf_reg_size; - __u16 bf_regs_per_page; -}; - -struct mlx4_ib_alloc_ucontext_resp { - __u32 dev_caps; - __u32 qp_tab_size; - __u16 bf_reg_size; - __u16 bf_regs_per_page; - __u32 cqe_size; -}; - -struct mlx4_ib_alloc_pd_resp { - __u32 pdn; - __u32 reserved; -}; - -struct mlx4_ib_create_cq { - __u64 buf_addr; - __u64 db_addr; -}; - -struct mlx4_ib_create_cq_resp { - __u32 cqn; - __u32 reserved; -}; - -struct mlx4_ib_resize_cq { - __u64 buf_addr; -}; - -struct mlx4_ib_create_srq { - __u64 buf_addr; - __u64 db_addr; -}; - -struct mlx4_ib_create_srq_resp { - __u32 srqn; - __u32 reserved; -}; - -struct mlx4_ib_create_qp { - __u64 buf_addr; - __u64 db_addr; - __u8 log_sq_bb_count; - __u8 log_sq_stride; - __u8 sq_no_prefetch; - __u8 reserved[5]; -}; - -#endif /* MLX4_IB_USER_H */ reverted: --- linux-raspi2-4.4.0/drivers/infiniband/hw/vmbus-rdma/vmbus_rdma.c +++ linux-raspi2-4.4.0.orig/drivers/infiniband/hw/vmbus-rdma/vmbus_rdma.c @@ -1,2951 +0,0 @@ -/* - * Copyright (c) 2014, Microsoft Corporation. - * - * Author: - * K. Y. Srinivasan - * - * This program is free software; you can redistribute it and/or modify it - * under the terms of the GNU General Public License version 2 as published - * by the Free Software Foundation. - * - * This program is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or - * NON INFRINGEMENT. See the GNU General Public License for more - * details. - * - * Bug fixes/enhancements: Long Li - */ - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include "vmbus_rdma.h" - -/* - * We only have a single rdma device on the host; - * have a single receive buffer. - */ - - -static char hvnd_recv_buffer[PAGE_SIZE * 4]; - -static atomic_t irp_local_hdl; - -char *hvnd_get_op_name(int ioctl) -{ - switch (ioctl) { - case IOCTL_ND_PROVIDER_INIT: - return "IOCTL_ND_PROVIDER_INIT\n"; - case IOCTL_ND_PROVIDER_BIND_FILE: - return "IOCTL_ND_PROVIDER_BIND_FILE\n"; - case IOCTL_ND_ADAPTER_OPEN: - return "IOCTL_ND_ADAPTER_OPEN\n"; - - case IOCTL_ND_ADAPTER_CLOSE: - return "IOCTL_ND_ADAPTER_CLOSE\n"; - - case IOCTL_ND_ADAPTER_QUERY: - return "IOCTL_ND_ADAPTER_QUERY\n"; - - case IOCTL_ND_PD_CREATE: - return "IOCTL_ND_PD_CREATE\n"; - - case IOCTL_ND_PD_FREE: - return "IOCTL_ND_PD_FREE\n"; - - case IOCTL_ND_CQ_CREATE: - return "IOCTL_ND_CQ_CREATE\n"; - - case IOCTL_ND_CQ_FREE: - return "IOCTL_ND_CQ_FREE\n"; - case IOCTL_ND_CQ_CANCEL_IO: - return "IOCTL_ND_CQ_CANCEL_IO\n"; - case IOCTL_ND_CQ_GET_AFFINITY: - return "IOCTL_ND_CQ_GET_AAFINITY\n"; - case IOCTL_ND_CQ_MODIFY: - return "IOCTL_ND_CQ_MODIFY\n"; - - case IOCTL_ND_CQ_NOTIFY: - return "IOCTL_ND_CQ_NOTIFY\n"; - - - case IOCTL_ND_LISTENER_CREATE: - return "IOCTL_ND_LISTENER_CREATE\n"; - - case IOCTL_ND_LISTENER_FREE: - return "IOCTL_ND_LISTENER_FREE\n"; - - case IOCTL_ND_QP_FREE: - return "IOCTL_ND_QP_FREE\n"; - - case IOCTL_ND_CONNECTOR_CANCEL_IO: - return "IOCTL_ND_CONNECTOR_CANCEL_IO\n"; - - case IOCTL_ND_LISTENER_CANCEL_IO: - return "IOCTL_ND_LISTENER_CANCEL_IO\n"; - - case IOCTL_ND_LISTENER_BIND: - return "IOCTL_ND_LISTENER_BIND\n"; - - case IOCTL_ND_LISTENER_LISTEN: - return "IOCTL_ND_LISTENER_LISTEN\n"; - - case IOCTL_ND_LISTENER_GET_ADDRESS: - return "IOCTL_ND_LISTENER_GET_ADDRESS\n"; - - case IOCTL_ND_LISTENER_GET_CONNECTION_REQUEST: - return "IOCTL_ND_LISTENER_GET_CONNECTION_REQUEST\n"; - - - - case IOCTL_ND_CONNECTOR_CREATE: - return "IOCTL_ND_CONNECTOR_CREATE\n"; - - case IOCTL_ND_CONNECTOR_FREE: - return "IOCTL_ND_CONNECTOR_FREE\n"; - - case IOCTL_ND_CONNECTOR_BIND: - return "IOCTL_ND_CONNECTOR_BIND\n"; - - case IOCTL_ND_CONNECTOR_CONNECT: //KYS: ALERT: ASYNCH Operation - return "IOCTL_ND_CONNECTOR_CONNECT\n"; - - case IOCTL_ND_CONNECTOR_COMPLETE_CONNECT: - return "IOCTL_ND_CONNECTOR_COMPLETE_CONNECT\n"; - - case IOCTL_ND_CONNECTOR_ACCEPT: //KYS: ALERT: ASYNCH Operation - return "IOCTL_ND_CONNECTOR_ACCEPT\n"; - - case IOCTL_ND_CONNECTOR_REJECT: - return "IOCTL_ND_CONNECTOR_REJECT\n"; - - case IOCTL_ND_CONNECTOR_GET_READ_LIMITS: - return "IOCTL_ND_CONNECTOR_GET_READ_LIMITS\n"; - - case IOCTL_ND_CONNECTOR_GET_PRIVATE_DATA: - return "IOCTL_ND_CONNECTOR_GET_PRIVATE_DATA\n"; - - case IOCTL_ND_CONNECTOR_GET_PEER_ADDRESS: - return "IOCTL_ND_CONNECTOR_GET_PEER_ADDRESS\n"; - - case IOCTL_ND_CONNECTOR_GET_ADDRESS: - return "IOCTL_ND_CONNECTOR_GET_ADDRESS\n"; - - case IOCTL_ND_CONNECTOR_NOTIFY_DISCONNECT: //KYS: ALERT: ASYNCH Operation - return "IOCTL_ND_CONNECTOR_NOTIFY_DISCONNECT\n"; - - case IOCTL_ND_CONNECTOR_DISCONNECT: //KYS: ALERT: ASYNCH Operation - return "IOCTL_ND_CONNECTOR_DISCONNECT\n"; - - - - case IOCTL_ND_QP_CREATE: - return "IOCTL_ND_QP_CREATE\n"; - - case IOCTL_ND_MR_CREATE: - return "IOCTL_ND_MR_CREATE\n"; - - case IOCTL_ND_MR_FREE: - return "IOCTL_ND_MR_FREE\n"; - case IOCTL_ND_MR_REGISTER: - return "IOCTL_ND_MR_REGISTER\n"; - case IOCTL_ND_MR_DEREGISTER: - return "IOCTL_ND_MR_DEREGISTER\n"; - case IOCTL_ND_MR_CANCEL_IO: - return "IOCTL_ND_MR_CANCEL_IO\n"; - case IOCTL_ND_ADAPTER_QUERY_ADDRESS_LIST: - return "IOCTL_ND_ADAPTER_QUERY_ADDRESS_LIST\n"; - case IOCTL_ND_QP_FLUSH: - return "IOCTL_ND_QP_FLUSH\n"; - - default: - return "Unknown IOCTL\n"; - } -} -int get_irp_handle(struct hvnd_dev *nd_dev, u32 *local, void *irp_ctx) -{ - unsigned int local_handle; - int ret; - - local_handle = atomic_inc_return(&irp_local_hdl); - *local = local_handle; - - /* - * Now asssociate the local handle with the pointer. - */ - ret = insert_handle(nd_dev, &nd_dev->irpidr, irp_ctx, local_handle); - hvnd_debug("irp_ctx=%p local_handle=%u\n", irp_ctx, local_handle); - - if (ret) { - hvnd_error("insert_handle failed ret=%d\n", ret); - return ret; - } - - return 0; -} - -void put_irp_handle(struct hvnd_dev *nd_dev, u32 irp) -{ - remove_handle(nd_dev, &nd_dev->irpidr, irp); - -} - -static void init_pfn(u64 *pfn, void *addr, u32 length) -{ - int i; - u32 offset = offset_in_page(addr); - u32 num_pfn = DIV_ROUND_UP(offset + length, PAGE_SIZE); - - for (i = 0; i < num_pfn; i++) { - pfn[i] = virt_to_phys((u8*)addr + (PAGE_SIZE * i)) >> PAGE_SHIFT; - } - -} - - -static void user_va_init_pfn(u64 *pfn, struct ib_umem *umem) -{ - int entry; - struct scatterlist *sg; - int i =0; - - for_each_sg(umem->sg_head.sgl, sg, umem->nmap, entry) { - pfn[i++] = page_to_pfn(sg_page(sg)); - } -} - -static u32 get_local_handle(void *p) -{ - u64 val = (unsigned long)p; - - return (u32)val; -} - -static int hvnd_send_pg_buffer(struct hvnd_dev *nd_dev, - struct vmbus_packet_mpb_array *desc, - u32 desc_size, - void *buffer, - u32 bufferlen, u64 cookie) -{ - int ret; - int t; - struct hvnd_cookie hvnd_cookie; - - hvnd_cookie.pkt = (void *)cookie; - init_completion(&hvnd_cookie.host_event); - - ret = vmbus_sendpacket_mpb_desc(nd_dev->hvdev->channel, - desc, - desc_size, - buffer, bufferlen, - (u64)(&hvnd_cookie)); - - if (ret) { - hvnd_error("vmbus_sendpacket_mpb_desc failed ret=%d\n", ret); - goto err; - } - - t = wait_for_completion_timeout(&hvnd_cookie.host_event, 500*HZ); - - if (t == 0) { - hvnd_error("wait_for_completion_timeout timed out\n"); - ret = -ETIMEDOUT; - } - -err: - return ret; -} - -static int hvnd_send_packet(struct hvnd_dev *nd_dev, void *buffer, - u32 bufferlen, u64 cookie, bool block) -{ - int ret; - int t; - struct hvnd_cookie hvnd_cookie; - - hvnd_cookie.pkt = (void *)cookie; - init_completion(&hvnd_cookie.host_event); - - ret = vmbus_sendpacket(nd_dev->hvdev->channel, buffer, bufferlen, - (u64)(&hvnd_cookie), VM_PKT_DATA_INBAND, - VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED); - - if (ret) { - hvnd_error("vmbus_send pkt failed: %d\n", ret); - goto err; - } - - if (!block) - return ret; - - t = wait_for_completion_timeout(&hvnd_cookie.host_event, 500*HZ); - - if (t == 0) { - hvnd_error("wait_for_completion_timeout timed out\n"); - ret = -ETIMEDOUT; - } - -err: - return ret; -} - -static int hvnd_send_pgbuf_ioctl_pkt(struct hvnd_dev *nd_dev, - struct vmbus_packet_mpb_array *desc, - u32 desc_size, - struct ndv_packet_hdr_control_1 *hdr, - u32 pkt_size, u64 cookie) -{ - int ret; - int ioctl; - - ioctl = hdr->io_cntrl_code; - - - ret = hvnd_send_pg_buffer(nd_dev, desc, desc_size, - hdr, pkt_size, cookie); - - if (ret) - return ret; - - if (hdr->pkt_hdr.status != 0) { - hvnd_error("IOCTL: %s failed; status is %x\n", - hvnd_get_op_name(ioctl), - hdr->pkt_hdr.status); - return -EINVAL; - } - - switch (hdr->io_status) { - case STATUS_SUCCESS: - case STATUS_PENDING: - return 0; - - default: - hvnd_error("IOCTL: %s failed io status is %x\n", hvnd_get_op_name(ioctl), - hdr->io_status); - return -EINVAL; - } -} - -int hvnd_send_ioctl_pkt(struct hvnd_dev *nd_dev, - struct ndv_packet_hdr_control_1 *hdr, - u32 pkt_size, u64 cookie) -{ - int ret; - int ioctl; - bool block; - - block = (hdr->irp_handle.val64 == 0) ? true : false; - - - ioctl = hdr->io_cntrl_code; - - ret = hvnd_send_packet(nd_dev, hdr, pkt_size, cookie, block); - - if (ret) - return ret; - - if (!block) - return ret; - - if (hdr->pkt_hdr.status != 0) { - hvnd_error("IOCTL: %s failed; status is %x\n", hvnd_get_op_name(ioctl), - hdr->pkt_hdr.status); - return -EINVAL; - } - - switch (hdr->io_status) { - case STATUS_SUCCESS: - case STATUS_PENDING: - return 0; - - default: - hvnd_warn("IOCTL: %s failed io status is %x\n", hvnd_get_op_name(ioctl), - hdr->io_status); - return -EINVAL; - } -} - -void hvnd_init_hdr(struct ndv_packet_hdr_control_1 *hdr, - u32 data_sz, u32 local, u32 remote, - u32 ioctl_code, - u32 ext_data_sz, u32 ext_data_offset, - u64 irp_handle) - -{ - int pkt_type; - - pkt_type = NDV_PKT_ID1_CONTROL; - NDV_ADD_PACKET_OPTION(pkt_type, NDV_PACKET_OPTIONS_REQUIRES_PASSIVE); - hdr->pkt_hdr.packet_type = pkt_type; - hdr->pkt_hdr.hdr_sz = sizeof(struct ndv_packet_hdr_control_1); - hdr->pkt_hdr.data_sz = data_sz; - - hdr->pkt_hdr.status = 0; - - hdr->file_handle.local = local; - hdr->file_handle.remote = remote; - hdr->irp_handle.val64 = irp_handle; - - hdr->io_cntrl_code = ioctl_code; - hdr->output_buf_sz = data_sz - ext_data_sz; - hdr->input_buf_sz = data_sz - ext_data_sz; - - hdr->input_output_buf_offset = 0; - - hdr->extended_data.size = ext_data_sz; - hdr->extended_data.offset = ext_data_offset; -} - - -int hvnd_create_file(struct hvnd_dev *nd_dev, void *uctx, - struct ndv_pkt_hdr_create_1 *create, u32 file_flags) -{ - int ret; - int pkt_type; - - - pkt_type = NDV_PKT_ID1_CREATE; - NDV_ADD_PACKET_OPTION(pkt_type, NDV_PACKET_OPTIONS_REQUIRES_PASSIVE); - create->pkt_hdr.packet_type = pkt_type; - create->pkt_hdr.hdr_sz = sizeof(struct ndv_pkt_hdr_create_1); - create->pkt_hdr.data_sz = 0; - - create->handle.local = get_local_handle(uctx); - create->access_mask = STANDARD_RIGHTS_ALL; - create->open_options = OPEN_EXISTING; - create->file_attributes = FILE_ATTRIBUTE_NORMAL | file_flags; - create->share_access = FILE_SHARE_ALL; - - ret = hvnd_send_packet(nd_dev, create, - sizeof(struct ndv_pkt_hdr_create_1), - (unsigned long)create, true); - return ret; -} - -int hvnd_cleanup_file(struct hvnd_dev *nd_dev, u32 local, u32 remote) -{ - int ret; - int pkt_type; - struct ndv_pkt_hdr_cleanup_1 cleanup_pkt; - - - pkt_type = NDV_PKT_ID1_CLEANUP; - NDV_ADD_PACKET_OPTION(pkt_type, NDV_PACKET_OPTIONS_REQUIRES_PASSIVE); - - cleanup_pkt.pkt_hdr.packet_type = pkt_type; - cleanup_pkt.pkt_hdr.hdr_sz = sizeof(struct ndv_pkt_hdr_create_1); - cleanup_pkt.pkt_hdr.data_sz = 0; - - cleanup_pkt.handle.local = local; - cleanup_pkt.handle.remote = remote; - - ret = hvnd_send_packet(nd_dev, &cleanup_pkt, - sizeof(struct ndv_pkt_hdr_create_1), - (unsigned long)&cleanup_pkt, true); - return ret; -} - - -static int hvnd_do_ioctl(struct hvnd_dev *nd_dev, u32 ioctl, - struct pkt_nd_provider_ioctl *pkt, - union ndv_context_handle *hdr_handle, - struct nd_handle *ioctl_handle, - u8 *buf, u32 buf_len, bool c_in, bool c_out, u64 irp_val) -{ - int ret; - int pkt_type; - - pkt_type = NDV_PKT_ID1_CONTROL; - NDV_ADD_PACKET_OPTION(pkt_type, NDV_PACKET_OPTIONS_REQUIRES_PASSIVE); - - pkt->hdr.pkt_hdr.packet_type = pkt_type; - pkt->hdr.pkt_hdr.hdr_sz = sizeof(struct ndv_packet_hdr_control_1); - pkt->hdr.pkt_hdr.data_sz = (sizeof(struct pkt_nd_provider_ioctl) - - sizeof(struct ndv_packet_hdr_control_1)); - - pkt->hdr.file_handle.local = hdr_handle->local; - pkt->hdr.file_handle.remote = hdr_handle->remote; - hvnd_debug("create handle local: %x remote: %x\n", hdr_handle->local, hdr_handle->remote); - - pkt->hdr.irp_handle.val64 = irp_val; - - pkt->hdr.io_cntrl_code = ioctl; - pkt->hdr.output_buf_sz = sizeof(struct nd_ioctl); - pkt->hdr.input_buf_sz = sizeof(struct nd_ioctl); - pkt->hdr.input_output_buf_offset = 0; - memset(&pkt->ioctl.handle, 0, sizeof(struct nd_handle)); - pkt->ioctl.handle.version = ND_VERSION_1; - - switch (ioctl) { - case IOCTL_ND_PROVIDER_BIND_FILE: - pkt->ioctl.handle.handle = ioctl_handle->handle; - break; - default: - break; - }; - - /* - * Copy the input buffer, if needed. - */ - - if (c_in && (buf != NULL)) - memcpy(pkt->ioctl.raw_buffer, buf, buf_len); - - ret = hvnd_send_packet(nd_dev, pkt, - sizeof(struct pkt_nd_provider_ioctl), - (unsigned long)pkt, true); - - if (ret) - return ret; - - if (c_out && (buf != NULL)) - memcpy(buf, pkt->ioctl.raw_buffer, buf_len); - - return ret; -} - -static int idr_callback(int id, void *p, void *data) -{ - if (p == data) - return id; - return 0; -} - -void remove_uctx(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx) -{ - int pid = current_pid(); - unsigned long flags; - int id; - - if (get_uctx(nd_dev, pid) == uctx) - remove_handle(nd_dev, &nd_dev->uctxidr, pid); - else { - hvnd_warn("uctx %p not found on pid %d, doing a idr search\n", uctx, current_pid()); - - spin_lock_irqsave(&nd_dev->id_lock, flags); - id = idr_for_each(&nd_dev->uctxidr, idr_callback, uctx); - spin_unlock_irqrestore(&nd_dev->id_lock, flags); - - if (id) - remove_handle(nd_dev, &nd_dev->uctxidr, id); - else { - hvnd_error("uctx %p not found in idr table\n", uctx); - return; - } - } - - kfree(uctx); -} - -int hvnd_close_adaptor(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx) -{ - int ret; - - /* - * First close the adaptor. - */ - - ret = hvnd_free_handle(nd_dev, uctx, - uctx->adaptor_hdl, - IOCTL_ND_ADAPTER_CLOSE); - - if (ret) - hvnd_error("Adaptor close failed; ret is %x\n", ret); - - /* - * Now close the two files we created. - */ - - ret = hvnd_cleanup_file(nd_dev, uctx->file_handle_ovl.local, - uctx->file_handle_ovl.remote); - - if (ret) - hvnd_error("file cleanup failed; ret is %x\n", ret); - - ret = hvnd_cleanup_file(nd_dev, uctx->file_handle.local, - uctx->file_handle.remote); - - if (ret) - hvnd_error("File cleanup failed; ret is %x\n", ret); - - /* - * Remove the uctx from the ID table. - */ - remove_uctx(nd_dev, uctx); - - return 0; -} - -int hvnd_open_adaptor(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx) -{ - int ret; - struct pkt_nd_provider_ioctl *pr_init = &uctx->pr_init_pkt; - int pkt_type; - struct nd_handle ioctl_handle; - struct pkt_nd_open_adapter *pr_o_adap = &uctx->o_adap_pkt; - - ret = hvnd_create_file(nd_dev, uctx, &uctx->create_pkt, 0); - if (ret) { - hvnd_error("hvnd_create_file failed ret=%d\n", ret); - goto error_cr; - } - - if (uctx->create_pkt.pkt_hdr.status != 0) { - hvnd_error("create File failed; status is %d\n", - uctx->create_pkt.pkt_hdr.status); - ret = -EINVAL; - goto error_cr; - } - - uctx->file_handle.local = uctx->create_pkt.handle.local; - uctx->file_handle.remote = uctx->create_pkt.handle.remote; - hvnd_debug("INITIALIZE PROVIDER\n"); - /* - * Now Initialize the Provider. - */ - ioctl_handle.handle = 0; - ret = hvnd_do_ioctl(nd_dev, IOCTL_ND_PROVIDER_INIT, pr_init, - &uctx->create_pkt.handle, - &ioctl_handle, NULL, 0, false, false, 0); - - if (ret) { - ret = -EINVAL; - goto error_pr_init; - } - - if (pr_init->hdr.pkt_hdr.status != 0) { - hvnd_error("Provider INIT failed; status is %d\n", - pr_init->hdr.pkt_hdr.status); - ret = -EINVAL; - goto error_pr_init; - } - - if (pr_init->hdr.io_status != 0) { - hvnd_error("Provider INIT failed; io status is %d\n", - pr_init->hdr.io_status); - ret = -EINVAL; - goto error_pr_init; - } - - /* - * Now create the overlap file. - */ - - hvnd_debug("CREATE OVERLAP FILE\n"); - ret = hvnd_create_file(nd_dev, uctx, &uctx->create_pkt_ovl, - FILE_FLAG_OVERLAPPED); - if (ret) { - hvnd_error("hvnd_create_file failed ret=%d\n", ret); - goto error_pr_init; - } - - if (uctx->create_pkt_ovl.pkt_hdr.status != 0) { - hvnd_error("create Overlap File failed; status is %d\n", - uctx->create_pkt_ovl.pkt_hdr.status); - ret = -EINVAL; - goto error_pr_init; - } - uctx->file_handle_ovl.local = uctx->create_pkt_ovl.handle.local; - uctx->file_handle_ovl.remote = uctx->create_pkt_ovl.handle.remote; - - /* - * Now bind the two file handles together. - */ - - hvnd_debug("BIND FILE IOCTL remote handle: %d local handle: %d\n", - uctx->create_pkt_ovl.handle.remote, - uctx->create_pkt_ovl.handle.local); - - ioctl_handle.handle = uctx->create_pkt_ovl.handle.val64; - ret = hvnd_do_ioctl(nd_dev, IOCTL_ND_PROVIDER_BIND_FILE, pr_init, - &uctx->create_pkt.handle, - &ioctl_handle, NULL, 0, false, false, 0); - - if (ret) { - ret = -EINVAL; - goto error_file_bind; - } - if (pr_init->hdr.pkt_hdr.status != 0) { - hvnd_error("Provider File bind failed; status is %d\n", - pr_init->hdr.pkt_hdr.status); - ret = -EINVAL; - goto error_file_bind; - } - if (pr_init->hdr.io_status != 0) { - hvnd_error("Provider INIT failed; io status is %d\n", - pr_init->hdr.io_status); - ret = -EINVAL; - goto error_file_bind; - } - - /* - * Now open the adaptor. - */ - - hvnd_debug("OPENING THE ADAPTOR\n"); - - pkt_type = NDV_PKT_ID1_CONTROL; - NDV_ADD_PACKET_OPTION(pkt_type, NDV_PACKET_OPTIONS_REQUIRES_PASSIVE); - pr_o_adap->hdr.pkt_hdr.packet_type = pkt_type; - pr_o_adap->hdr.pkt_hdr.hdr_sz = sizeof(struct ndv_packet_hdr_control_1); - pr_o_adap->hdr.pkt_hdr.data_sz = (sizeof(struct pkt_nd_open_adapter) - - sizeof(struct ndv_packet_hdr_control_1)); - - pr_o_adap->hdr.pkt_hdr.status = 0; - - hvnd_debug("hdr sz is %d\n", pr_o_adap->hdr.pkt_hdr.hdr_sz); - hvnd_debug("data sz is %d\n", pr_o_adap->hdr.pkt_hdr.data_sz); - - pr_o_adap->hdr.file_handle.local = uctx->create_pkt.handle.local; - pr_o_adap->hdr.file_handle.remote = uctx->create_pkt.handle.remote; - hvnd_debug("create handle local is %x\n", uctx->create_pkt.handle.local); - hvnd_debug("create handle remote is %x\n", uctx->create_pkt.handle.remote); - pr_o_adap->hdr.irp_handle.val64 = 0; - - pr_o_adap->hdr.io_cntrl_code = IOCTL_ND_ADAPTER_OPEN; - pr_o_adap->hdr.output_buf_sz = pr_o_adap->hdr.pkt_hdr.data_sz - sizeof(struct extended_data_oad); - pr_o_adap->hdr.input_buf_sz = pr_o_adap->hdr.pkt_hdr.data_sz -sizeof(struct extended_data_oad); - - hvnd_debug("output buf sz is %d\n", pr_o_adap->hdr.output_buf_sz); - hvnd_debug("input buf sz is %d\n", pr_o_adap->hdr.input_buf_sz); - hvnd_debug("packet size is %d\n", (int)sizeof(struct pkt_nd_open_adapter)); - - pr_o_adap->hdr.input_output_buf_offset = 0; - - - pr_o_adap->hdr.extended_data.size = sizeof(struct extended_data_oad); - pr_o_adap->hdr.extended_data.offset = offsetof(struct pkt_nd_open_adapter, ext_data) - - sizeof(struct ndv_packet_hdr_control_1); - - hvnd_debug("size of the extended data size: %d\n", (int)sizeof(struct extended_data_oad)); - hvnd_debug("offset of extended data: %d\n", pr_o_adap->hdr.extended_data.offset); - - /* - * Now fill out the ioctl section. - */ - - pr_o_adap->ioctl.input.version = ND_VERSION_1; - pr_o_adap->ioctl.input.ce_mapping_cnt = - RTL_NUMBER_OF(pr_o_adap->mappings.ctx_input.mappings); - - hvnd_debug("ce_mapping cnt is %d\n", pr_o_adap->ioctl.input.ce_mapping_cnt); - - pr_o_adap->ioctl.input.cb_mapping_offset = sizeof(union oad_ioctl); - hvnd_debug("cb_mapping offset is %d\n", pr_o_adap->ioctl.input.cb_mapping_offset); - pr_o_adap->ioctl.input.adapter_id = (u64)nd_dev; - - pr_o_adap->mappings.ctx_input.mappings[IBV_GET_CONTEXT_UAR].map_type = ND_MAP_IOSPACE; - pr_o_adap->mappings.ctx_input.mappings[IBV_GET_CONTEXT_UAR].map_io_space.cache_type = ND_NON_CACHED; - pr_o_adap->mappings.ctx_input.mappings[IBV_GET_CONTEXT_UAR].map_io_space.cb_length = 4096; - - pr_o_adap->mappings.ctx_input.mappings[IBV_GET_CONTEXT_BF].map_type = ND_MAP_IOSPACE; - pr_o_adap->mappings.ctx_input.mappings[IBV_GET_CONTEXT_BF].map_io_space.cache_type = ND_WRITE_COMBINED; - pr_o_adap->mappings.ctx_input.mappings[IBV_GET_CONTEXT_BF].map_io_space.cb_length = 4096; - - /* - * Fill in the extended data. - */ - pr_o_adap->ext_data.cnt = IBV_GET_CONTEXT_MAPPING_MAX; - - ret = hvnd_send_packet(nd_dev, pr_o_adap, - sizeof(struct pkt_nd_open_adapter), - (unsigned long)pr_o_adap, true); - if (ret) { - ret = -EINVAL; - goto error_file_bind; - } - - if (pr_o_adap->hdr.pkt_hdr.status != 0) { - hvnd_error("Open adaptor failed; status is %d\n", - pr_o_adap->hdr.pkt_hdr.status); - ret = -EINVAL; - goto error_file_bind; - } - - if (pr_o_adap->hdr.io_status != 0) { - hvnd_error("Open adaptor failed;io status is %d\n", - pr_o_adap->hdr.io_status); - ret = -EINVAL; - goto error_file_bind; - } - - /* - * Copy the necessary response from the host. - */ - - uctx->adaptor_hdl = pr_o_adap->ioctl.resrc_desc.handle; - - - hvnd_debug("adaptor handle: %p\n", (void *)uctx->adaptor_hdl); - - uctx->uar_base = - pr_o_adap->mappings.ctx_output.mapping_results[IBV_GET_CONTEXT_UAR].info; - hvnd_debug("uar base: %p\n", (void *)uctx->uar_base); - - uctx->bf_base = - pr_o_adap->mappings.ctx_output.mapping_results[IBV_GET_CONTEXT_BF].info; - hvnd_debug("bf base: %p\n", (void *)uctx->bf_base); - - uctx->bf_buf_size = - pr_o_adap->mappings.ctx_output.bf_buf_size; - hvnd_debug("bf buf size: %d\n", uctx->bf_buf_size); - - uctx->bf_offset = - pr_o_adap->mappings.ctx_output.bf_offset; - hvnd_debug("bf offset: %d\n", uctx->bf_offset); - - uctx->cqe_size = - pr_o_adap->mappings.ctx_output.cqe_size; - hvnd_debug("cqe size: %d\n", uctx->cqe_size); - - uctx->max_qp_wr = - pr_o_adap->mappings.ctx_output.max_qp_wr; - hvnd_debug("max qp wr: %d\n", uctx->max_qp_wr); - - uctx->max_sge = - pr_o_adap->mappings.ctx_output.max_sge; - hvnd_debug("max sge: %d\n", uctx->max_sge); - - uctx->max_cqe = - pr_o_adap->mappings.ctx_output.max_cqe; - hvnd_debug("max cqe: %d\n", uctx->max_cqe); - - uctx->num_qps = - pr_o_adap->mappings.ctx_output.qp_tab_size; - hvnd_debug("num qps: %d\n", uctx->num_qps); - - /* - * Now query the adaptor and stash away the adaptor info. - */ - - ret = hvnd_query_adaptor(nd_dev, uctx); - if (ret) { - hvnd_error("Query Adaptor failed; ret is %d\n", ret); - goto query_err; - } - - return ret; - -query_err: - hvnd_free_handle(nd_dev, uctx, - uctx->adaptor_hdl, - IOCTL_ND_ADAPTER_CLOSE); - - hvnd_error("Open Adaptor Failed!!\n"); - -error_file_bind: - hvnd_cleanup_file(nd_dev, uctx->file_handle_ovl.local, - uctx->file_handle_ovl.remote); - -error_pr_init: - hvnd_cleanup_file(nd_dev, uctx->file_handle.local, - uctx->file_handle.remote); - -error_cr: - if (get_uctx(nd_dev, current_pid()) != NULL) - remove_handle(nd_dev, &nd_dev->uctxidr, current_pid()); - - return ret; -} - -int hvnd_create_cq(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - struct hvnd_cq *cq) -{ - int ret; - struct pkt_nd_create_cq *pkt; - int num_pfn, num_db_pfn, num_sn_pfn; - int cq_pkt_size; - unsigned int cq_buf_size, offset; - u32 ext_data_sz; - u32 ext_data_offset; - - /* - * Now create CQ. - * First compute the number of PFNs we need to accomodate: - * One each for door bell and arm_sn and pages in cq buffer. - */ - cq_buf_size = (cq->entries * uctx->cqe_size); - offset = offset_in_page(cq->cq_buf); - num_pfn = DIV_ROUND_UP(offset + cq_buf_size, PAGE_SIZE); - - offset = offset_in_page(cq->db_addr); - num_db_pfn = DIV_ROUND_UP(offset + 8, PAGE_SIZE); - - offset = offset_in_page(&cq->arm_sn); - num_sn_pfn = DIV_ROUND_UP(offset + 4, PAGE_SIZE); - - cq_pkt_size = sizeof(struct pkt_nd_create_cq) + - (num_pfn * sizeof(u64)); - - ext_data_sz = sizeof(struct create_cq_ext_data) + (num_pfn * sizeof(u64)); - ext_data_offset = offsetof(struct pkt_nd_create_cq, ext_data) - - sizeof(struct ndv_packet_hdr_control_1); - - hvnd_debug("CREATE CQ, num user addr pfns is %d\n", num_pfn); - hvnd_debug("CREATE CQ, num db pfns is %d\n", num_db_pfn); - - pkt = kzalloc(cq_pkt_size, GFP_KERNEL); - - if (!pkt) - return -ENOMEM; - - hvnd_init_hdr(&pkt->hdr, - (cq_pkt_size - - sizeof(struct ndv_packet_hdr_control_1)), - uctx->create_pkt.handle.local, - uctx->create_pkt.handle.remote, - IOCTL_ND_CQ_CREATE, - ext_data_sz, - ext_data_offset, - 0); - - /* - * Now fill out the ioctl section. - */ - - pkt->ioctl.input.version = ND_VERSION_1; - pkt->ioctl.input.queue_depth = cq->entries; - pkt->ioctl.input.ce_mapping_cnt = MLX4_IB_CREATE_CQ_MAPPING_MAX; - pkt->ioctl.input.cb_mapping_offset = sizeof(union create_cq_ioctl); - - hvnd_debug("ce_mapping cnt is %d\n", pkt->ioctl.input.ce_mapping_cnt); - hvnd_debug("cb_mapping offset is %d\n", pkt->ioctl.input.cb_mapping_offset); - - pkt->ioctl.input.adapter_handle = uctx->adaptor_hdl; - pkt->ioctl.input.affinity.mask = 0; - pkt->ioctl.input.affinity.group = -1; - - // 0 for usermode CQ arming - pkt->mappings.cq_in.flags = 0; - - pkt->mappings.cq_in.mappings[MLX4_IB_CREATE_CQ_BUF].map_memory.map_type = ND_MAP_MEMORY; - pkt->mappings.cq_in.mappings[MLX4_IB_CREATE_CQ_BUF].map_memory.access_type = ND_MODIFY_ACCESS; - pkt->mappings.cq_in.mappings[MLX4_IB_CREATE_CQ_BUF].map_memory.address = (u64)cq->cq_buf; - pkt->mappings.cq_in.mappings[MLX4_IB_CREATE_CQ_BUF].map_memory.cb_length = (cq->entries * uctx->cqe_size); - - pkt->mappings.cq_in.mappings[MLX4_IB_CREATE_CQ_DB].map_memory.map_type = ND_MAP_MEMORY_COALLESCE; - pkt->mappings.cq_in.mappings[MLX4_IB_CREATE_CQ_DB].map_memory.access_type = ND_WRITE_ACCESS; - pkt->mappings.cq_in.mappings[MLX4_IB_CREATE_CQ_DB].map_memory.address = (u64)cq->db_addr; - pkt->mappings.cq_in.mappings[MLX4_IB_CREATE_CQ_DB].map_memory.cb_length = 8; //size of two ints - - - pkt->mappings.cq_in.mappings[MLX4_IB_CREATE_CQ_ARM_SN].map_memory.map_type = ND_MAP_MEMORY; - pkt->mappings.cq_in.mappings[MLX4_IB_CREATE_CQ_ARM_SN].map_memory.access_type = ND_MODIFY_ACCESS; - pkt->mappings.cq_in.mappings[MLX4_IB_CREATE_CQ_ARM_SN].map_memory.address = (u64)&cq->arm_sn; - pkt->mappings.cq_in.mappings[MLX4_IB_CREATE_CQ_ARM_SN].map_memory.cb_length = 4; //size of one int - /* - * Fill in the extended data. - */ - - pkt->ext_data.cnt = 3; - pkt->ext_data.fields[MLX4_IB_CREATE_CQ_BUF].size = (sizeof(struct gpa_range) + (num_pfn * sizeof(u64))); - pkt->ext_data.fields[MLX4_IB_CREATE_CQ_BUF].offset = offsetof(struct create_cq_ext_data, cqbuf_gpa); - - pkt->ext_data.fields[MLX4_IB_CREATE_CQ_DB].size = sizeof(struct cq_db_gpa); - pkt->ext_data.fields[MLX4_IB_CREATE_CQ_DB].offset = offsetof(struct create_cq_ext_data, db_gpa); - - pkt->ext_data.fields[MLX4_IB_CREATE_CQ_ARM_SN].size = sizeof(struct cq_db_gpa); - pkt->ext_data.fields[MLX4_IB_CREATE_CQ_ARM_SN].offset = offsetof(struct create_cq_ext_data, sn_gpa); - - /* - * Fill up the gpa range for cq buffer. - */ - - pkt->ext_data.db_gpa.byte_count = 8; - pkt->ext_data.db_gpa.byte_offset = offset_in_page(cq->db_addr); - user_va_init_pfn(&pkt->ext_data.db_gpa.pfn_array[0], cq->db_umem); - - pkt->ext_data.sn_gpa.byte_count = 4; - pkt->ext_data.sn_gpa.byte_offset = offset_in_page(&cq->arm_sn); - init_pfn(&pkt->ext_data.sn_gpa.pfn_array[0], - &cq->arm_sn, - 4); - - pkt->ext_data.cqbuf_gpa.byte_count = (cq->entries * uctx->cqe_size); - pkt->ext_data.cqbuf_gpa.byte_offset = offset_in_page(cq->cq_buf); - user_va_init_pfn(&pkt->ext_data.cqbuf_gpa.pfn_array[0], cq->umem); - - ret = hvnd_send_ioctl_pkt(nd_dev, &pkt->hdr, cq_pkt_size, (u64)pkt); - - if (ret) - goto cr_cq_err; - - /* - * Copy the necessary response from the host. - */ - cq->cqn = pkt->mappings.cq_resp.cqn; - cq->cqe = pkt->mappings.cq_resp.cqe; - cq->cq_handle = pkt->ioctl.resrc_desc.handle; - - ret = insert_handle(nd_dev, &nd_dev->cqidr, cq, cq->cqn); - - if (ret) - goto cr_cq_err; - hvnd_debug("CQ create after success cqn is %d\n", cq->cqn); - hvnd_debug("CQ create after success cqe is %d\n", cq->cqe); - hvnd_debug("CQ create after success cq handle is %p\n", (void *)cq->cq_handle); - -cr_cq_err: - kfree(pkt); - return ret; -} - -int hvnd_destroy_cq(struct hvnd_dev *nd_dev, struct hvnd_cq *cq) -{ - struct pkt_nd_free_cq free_cq_pkt; - int ret; - - memset(&free_cq_pkt, 0, sizeof(free_cq_pkt)); //KYS try to avoid having to zero everything - hvnd_init_hdr(&free_cq_pkt.hdr, - sizeof(struct pkt_nd_free_cq) - - sizeof(struct ndv_packet_hdr_control_1), - cq->uctx->create_pkt.handle.local, - cq->uctx->create_pkt.handle.remote, - IOCTL_ND_CQ_FREE, 0, 0, 0); - - /* - * Now fill in the ioctl section. - */ - free_cq_pkt.ioctl.in.version = ND_VERSION_1; - free_cq_pkt.ioctl.in.handle = cq->cq_handle; - - ret = hvnd_send_ioctl_pkt(nd_dev, &free_cq_pkt.hdr, - sizeof(struct pkt_nd_free_cq), - (u64)&free_cq_pkt); - - if (ret) - goto free_cq_err; - - remove_handle(nd_dev, &nd_dev->cqidr, cq->cqn); - - return 0; - -free_cq_err: - return ret; -} - - -int hvnd_notify_cq(struct hvnd_dev *nd_dev, struct hvnd_cq *cq, - u32 notify_type, u64 irp_handle) -{ - struct pkt_nd_notify_cq notify_cq_pkt; - int ret; - union ndv_context_handle irp_fhandle; - - irp_fhandle.local = cq->ep_object.local_irp; - - - memset(¬ify_cq_pkt, 0, sizeof(notify_cq_pkt)); //KYS try to avoid having to zero everything - hvnd_init_hdr(¬ify_cq_pkt.hdr, - sizeof(struct pkt_nd_notify_cq) - - sizeof(struct ndv_packet_hdr_control_1), - cq->uctx->create_pkt.handle.local, - cq->uctx->create_pkt.handle.remote, - IOCTL_ND_CQ_NOTIFY, 0, 0, irp_fhandle.val64); - - /* - * Now fill in the ioctl section. - */ - notify_cq_pkt.ioctl.in.version = ND_VERSION_1; - notify_cq_pkt.ioctl.in.cq_handle = cq->cq_handle; - notify_cq_pkt.ioctl.in.type = notify_type; - - - ret = hvnd_send_ioctl_pkt(nd_dev, ¬ify_cq_pkt.hdr, - sizeof(struct pkt_nd_notify_cq), - (u64)¬ify_cq_pkt); - - return ret; -} - -/* - * Memory region operations. - */ -int hvnd_cr_mr(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - u64 pd_handle, u64 *mr_handle) -{ - struct pkt_nd_create_mr pkt; - int ret; - - memset(&pkt, 0, sizeof(pkt)); //KYS try to avoid having to zero everything - hvnd_init_hdr(&pkt.hdr, - sizeof(pkt) - - sizeof(struct ndv_packet_hdr_control_1), - uctx->create_pkt.handle.local, - uctx->create_pkt.handle.remote, - IOCTL_ND_MR_CREATE, 0, 0, 0); - - /* - * Now fill in the ioctl section. - */ - pkt.ioctl.in.version = ND_VERSION_1; - pkt.ioctl.in.handle = pd_handle; - hvnd_debug("PD handle is %p\n", (void *)pd_handle); - pkt.ioctl.in.reserved = 0; - - ret = hvnd_send_ioctl_pkt(nd_dev, &pkt.hdr, sizeof(pkt), (u64)&pkt); - - if (ret) - goto err; - - /* - * Copy the handle. - */ - hvnd_debug("mr handle is %p\n", (void *)pkt.ioctl.out); - *mr_handle = pkt.ioctl.out; - - return 0; - -err: - hvnd_error("create mr failed: %d\n", ret); - return ret; - -} - -int hvnd_free_mr(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - u64 handle) -{ - return hvnd_free_handle(nd_dev, uctx, handle, IOCTL_ND_MR_FREE); -} - -int hvnd_deregister_mr(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - u64 handle) -{ - struct pkt_nd_deregister_mr pkt; - int ret; - - memset(&pkt, 0, sizeof(pkt)); //KYS try to avoid having to zero everything - hvnd_init_hdr(&pkt.hdr, - sizeof(pkt) - - sizeof(struct ndv_packet_hdr_control_1), - uctx->create_pkt.handle.local, - uctx->create_pkt.handle.remote, - IOCTL_ND_MR_DEREGISTER, 0, 0, 0); - - /* - * Now fill in the ioctl section. - */ - pkt.ioctl.in.version = ND_VERSION_1; - pkt.ioctl.in.handle = handle; - pkt.ioctl.in.reserved = 0; - - ret = hvnd_send_ioctl_pkt(nd_dev, &pkt.hdr, sizeof(pkt), (u64)&pkt); - - if (ret) - goto err; - - return 0; - -err: - hvnd_error("de-register mr failed: %d\n", ret); - return ret; - -} - -static inline u32 hvnd_convert_access(int acc) -{ - return (acc & IB_ACCESS_REMOTE_WRITE ? ND_MR_FLAG_ALLOW_REMOTE_WRITE : 0) | - (acc & IB_ACCESS_REMOTE_READ ? ND_MR_FLAG_ALLOW_REMOTE_READ : 0) | - (acc & IB_ACCESS_LOCAL_WRITE ? ND_MR_FLAG_ALLOW_LOCAL_WRITE : 0); -} - - -int hvnd_mr_register(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - struct hvnd_mr *mr) -{ - struct pkt_nd_register_mr pkt; - int ret; - struct hv_mpb_array *pb; - struct vmbus_packet_mpb_array *tpb; - int sz_leaf; - int num_pgs; - int i =0; - int ext_data_sz; - u32 acc_flags; - u32 desc_size; - int pkt_type; - - /* - * The user address is passed in via a two level structure. - * An Array of struct hv_page_buffer will be used to describe - * the user memory. The pages containing this array will be descibed - * in another array of struct hv_page_buffer. We pass this seconed level - * array to the host. - */ - - hvnd_debug("ib_umem_page_count(mr->umem)=%d\n", ib_umem_page_count(mr->umem)); - - sz_leaf = ib_umem_page_count(mr->umem) * sizeof(u64) + sizeof(struct hv_mpb_array); - - pb = (struct hv_mpb_array*) __get_free_pages(GFP_KERNEL|__GFP_ZERO, get_order(sz_leaf)); - - if (pb == NULL) - return -ENOMEM; - /* - * Allocate an array of hv_page_buffer to describe the first level. - */ - num_pgs = DIV_ROUND_UP(sz_leaf, PAGE_SIZE); - hvnd_debug("num pages in the top array is %d\n", num_pgs); - - desc_size = (num_pgs * sizeof(u64) + - sizeof(struct vmbus_packet_mpb_array)); - tpb = (struct vmbus_packet_mpb_array*) __get_free_pages(GFP_KERNEL|__GFP_ZERO, get_order(desc_size)); - - if (tpb == NULL) { - free_pages((unsigned long)pb, get_order(sz_leaf)); - return -ENOMEM; - } - - hvnd_debug("sz leaf: %d; pgs in top %d\n", sz_leaf, num_pgs); - - /* - * Now fill the leaf level array. - */ - pb->len = mr->length; - pb->offset = offset_in_page(mr->start); - user_va_init_pfn(pb->pfn_array, mr->umem); - - /* - * Now fill out the top level array. - */ - for (i = 0; i < num_pgs; i++) { - tpb->range.pfn_array[i] = virt_to_phys((u8*)pb + (PAGE_SIZE * i)) >> PAGE_SHIFT; - hvnd_debug("virtual address = %p\n", (u8*)pb + (PAGE_SIZE * i)); - hvnd_debug("physical address = %llx\n", virt_to_phys((u8*)pb + (PAGE_SIZE * i))); - hvnd_debug("tpb->range.pfn_array[%d]=%llx\n", i, tpb->range.pfn_array[i]); - } - - tpb->range.offset = 8; - tpb->range.len = ib_umem_page_count(mr->umem) * sizeof(u64); - - - memset(&pkt, 0, sizeof(pkt)); //KYS try to avoid having to zero everything - ext_data_sz = (ib_umem_page_count(mr->umem) * sizeof(u64)); - acc_flags = ND_MR_FLAG_DO_NOT_SECURE_VM | hvnd_convert_access(mr->acc); - hvnd_debug("memory register access flags are: %x\n", acc_flags); - - hvnd_init_hdr(&pkt.hdr, - sizeof(pkt) - - sizeof(struct ndv_packet_hdr_control_1), - uctx->create_pkt.handle.local, - uctx->create_pkt.handle.remote, - IOCTL_ND_MR_REGISTER, 0, 0, 0); - - /* - * The memory registration call uses a different mechanism to pass - * pfn information. - */ - - pkt_type = pkt.hdr.pkt_hdr.packet_type; - NDV_ADD_PACKET_OPTION(pkt_type, NDV_PACKET_OPTION_EXTERNAL_DATA); - pkt.hdr.pkt_hdr.packet_type = pkt_type; - - pkt.hdr.extended_data.size = ext_data_sz; - pkt.hdr.extended_data.offset = 0; - /* - * Now fill out the ioctl. - */ - - pkt.ioctl.in.header.version = ND_VERSION_1; - pkt.ioctl.in.header.flags = acc_flags; - pkt.ioctl.in.header.cb_length = mr->length; - pkt.ioctl.in.header.target_addr = mr->virt; - pkt.ioctl.in.header.mr_handle = mr->mr_handle; - pkt.ioctl.in.address = mr->virt; - - /* - * Now send the packet to the host. - */ - - ret = hvnd_send_pgbuf_ioctl_pkt(nd_dev, - tpb, desc_size, - &pkt.hdr, - sizeof(pkt), - (unsigned long)&pkt); - - if (ret) - goto err; - - hvnd_info("MR REGISTRATION SUCCESS\n"); - /* - * Copy the mr registration data. - */ - hvnd_debug("mr registration lkey %x\n", pkt.ioctl.out.lkey); - hvnd_debug("mr registration rkey %x\n", pkt.ioctl.out.rkey); - - mr->mr_lkey = pkt.ioctl.out.lkey; - mr->mr_rkey = pkt.ioctl.out.rkey; - - mr->ibmr.lkey = mr->mr_lkey; - mr->ibmr.rkey = be32_to_cpu(mr->mr_rkey); - hvnd_debug("ibmr registration lkey %x\n", mr->ibmr.lkey); - hvnd_debug("ibmr registration rkey %x\n", mr->ibmr.rkey); - - free_pages((unsigned long)pb, get_order(sz_leaf)); - free_pages((unsigned long)tpb, get_order(desc_size)); - - return 0; - -err: - free_pages((unsigned long)pb, get_order(sz_leaf)); - free_pages((unsigned long)tpb, get_order(desc_size)); - - hvnd_error("mr register failed: %d\n", ret); - return ret; -} - -/* - * Listener operations. - */ -int hvnd_cr_listener(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - u64 *listener_handle) -{ - struct pkt_nd_cr_listener pkt; - int ret; - - memset(&pkt, 0, sizeof(pkt)); //KYS try to avoid having to zero everything - hvnd_init_hdr(&pkt.hdr, - sizeof(pkt) - - sizeof(struct ndv_packet_hdr_control_1), - uctx->create_pkt.handle.local, - uctx->create_pkt.handle.remote, - IOCTL_ND_LISTENER_CREATE, 0, 0, 0); - - /* - * Now fill in the ioctl section. - */ - pkt.ioctl.in.hdr.version = ND_VERSION_1; - pkt.ioctl.in.hdr.handle = uctx->adaptor_hdl; - hvnd_debug("Adaptor handle is %p\n", (void *)uctx->adaptor_hdl); - pkt.ioctl.in.hdr.reserved = 0; - pkt.ioctl.in.to_semantics = false; - - ret = hvnd_send_ioctl_pkt(nd_dev, &pkt.hdr, sizeof(pkt), (u64)&pkt); - - if (ret) - goto err; - - /* - * Copy the listener handle. - */ - hvnd_debug("listener handle is %p\n", (void *)pkt.ioctl.out); - *listener_handle = pkt.ioctl.out; - - return 0; - -err: - hvnd_error("create listener failed: ret=%d uctx=%p adaptor handle=%llu\n", ret, uctx, uctx->adaptor_hdl); - return ret; - -} - -int hvnd_free_listener(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - u64 listener_handle) -{ - struct pkt_nd_free_listener pkt; - int ret; - - memset(&pkt, 0, sizeof(pkt)); //KYS try to avoid having to zero everything - hvnd_init_hdr(&pkt.hdr, - sizeof(pkt) - - sizeof(struct ndv_packet_hdr_control_1), - uctx->create_pkt.handle.local, - uctx->create_pkt.handle.remote, - IOCTL_ND_LISTENER_FREE, 0, 0, 0); - - /* - * Now fill in the ioctl section. - */ - pkt.ioctl.in.version = ND_VERSION_1; - pkt.ioctl.in.handle = listener_handle; - - ret = hvnd_send_ioctl_pkt(nd_dev, &pkt.hdr, sizeof(pkt), (u64)&pkt); - - if (ret) - goto err; - - return 0; - -err: - hvnd_error("free listener failed: %d\n", ret); - return ret; -} - -int hvnd_bind_listener(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - u64 listener_handle, union nd_sockaddr_inet *addr) -{ - struct pkt_nd_bind_listener pkt; - kuid_t uid = current_uid(); - int ret; - - memset(&pkt, 0, sizeof(pkt)); //KYS try to avoid having to zero everything - hvnd_init_hdr(&pkt.hdr, - sizeof(pkt) - - sizeof(struct ndv_packet_hdr_control_1), - uctx->create_pkt.handle.local, - uctx->create_pkt.handle.remote, - IOCTL_ND_LISTENER_BIND, 0, 0, 0); - - /* - * Now fill in the ioctl section. - */ - pkt.ioctl.in.hdr.version = ND_VERSION_1; - pkt.ioctl.in.hdr.handle = listener_handle; - pkt.ioctl.in.hdr.reserved = 0; - - pkt.ioctl.in.authentication_id = (u32)uid.val; - pkt.ioctl.in.is_admin = false; - - memcpy(&pkt.ioctl.in.hdr.address, addr, sizeof(*addr)); - - ret = hvnd_send_ioctl_pkt(nd_dev, &pkt.hdr, sizeof(pkt), (u64)&pkt); - - if (ret) - goto err; - - return 0; - -err: - hvnd_error("bind listener failed: %d\n", ret); - return ret; -} - -int hvnd_listen_listener(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - u64 listener_handle, u32 backlog) -{ - struct pkt_nd_listen_listener pkt; - int ret; - - memset(&pkt, 0, sizeof(pkt)); //KYS try to avoid having to zero everything - hvnd_init_hdr(&pkt.hdr, - sizeof(pkt) - - sizeof(struct ndv_packet_hdr_control_1), - uctx->create_pkt.handle.local, - uctx->create_pkt.handle.remote, - IOCTL_ND_LISTENER_LISTEN, 0, 0, 0); - - /* - * Now fill in the ioctl section. - */ - pkt.ioctl.in.version = ND_VERSION_1; - pkt.ioctl.in.listener_handle = listener_handle; - pkt.ioctl.in.back_log = backlog; - - - ret = hvnd_send_ioctl_pkt(nd_dev, &pkt.hdr, sizeof(pkt), (u64)&pkt); - - if (ret) - goto err; - - return 0; - -err: - hvnd_error("listen listener failed: %d\n", ret); - return ret; -} - -int hvnd_get_addr_listener(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - u64 listener_handle, union nd_sockaddr_inet *addr) -{ - struct pkt_nd_get_addr_listener pkt; - int ret; - - memset(&pkt, 0, sizeof(pkt)); //KYS try to avoid having to zero everything - hvnd_init_hdr(&pkt.hdr, - sizeof(pkt) - - sizeof(struct ndv_packet_hdr_control_1), - uctx->create_pkt.handle.local, - uctx->create_pkt.handle.remote, - IOCTL_ND_LISTENER_GET_ADDRESS, 0, 0, 0); - - /* - * Now fill in the ioctl section. - */ - pkt.ioctl.in.version = ND_VERSION_1; - pkt.ioctl.in.handle = listener_handle; - - - ret = hvnd_send_ioctl_pkt(nd_dev, &pkt.hdr, sizeof(pkt), (u64)&pkt); - - if (ret) - goto err; - - /* - * Copy the adddress. - */ - - memcpy(addr, &pkt.ioctl.out, sizeof(union nd_sockaddr_inet)); - - return 0; - -err: - hvnd_error("listen listener failed: %d\n", ret); - return ret; -} - -int hvnd_get_connection_listener(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - u64 listener_handle, u64 connector_handle, - u64 irp_handle) -{ - struct pkt_nd_get_connection_listener pkt; - int ret; - union ndv_context_handle irp_fhandle; - - ret = get_irp_handle(nd_dev, &irp_fhandle.local, (void *)irp_handle); - - if (ret) { - hvnd_error("get_irp_handle() failed: err: %d\n", ret); - return ret; - } - - memset(&pkt, 0, sizeof(pkt)); //KYS try to avoid having to zero everything - hvnd_init_hdr(&pkt.hdr, - sizeof(pkt) - - sizeof(struct ndv_packet_hdr_control_1), - uctx->create_pkt.handle.local, - uctx->create_pkt.handle.remote, - IOCTL_ND_LISTENER_GET_CONNECTION_REQUEST, 0, 0, - irp_fhandle.val64); - - /* - * Now fill in the ioctl section. - */ - pkt.ioctl.in.version = ND_VERSION_1; - pkt.ioctl.in.listener_handle = listener_handle; - pkt.ioctl.in.connector_handle = connector_handle; - - - ret = hvnd_send_ioctl_pkt(nd_dev, &pkt.hdr, sizeof(pkt), (u64)&pkt); - - if (ret) - goto err; - - return 0; - -err: - hvnd_error("get connection listener failed: %d\n", ret); - return ret; -} - -/* - * Connector APIs. - */ - -int hvnd_cr_connector(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - u64 *connector_handle) -{ - struct pkt_nd_cr_connector pkt; - int ret; - - memset(&pkt, 0, sizeof(pkt)); //KYS try to avoid having to zero everything - hvnd_init_hdr(&pkt.hdr, - sizeof(struct pkt_nd_cr_listener) - - sizeof(struct ndv_packet_hdr_control_1), - uctx->create_pkt.handle.local, - uctx->create_pkt.handle.remote, - IOCTL_ND_CONNECTOR_CREATE, 0, 0, 0); - - /* - * Now fill in the ioctl section. - */ - pkt.ioctl.in.hdr.version = ND_VERSION_1; - pkt.ioctl.in.hdr.handle = uctx->adaptor_hdl; - pkt.ioctl.in.to_semantics = false; - - ret = hvnd_send_ioctl_pkt(nd_dev, &pkt.hdr, sizeof(pkt), (u64)&pkt); - - if (ret) - goto err; - - /* - * Copy the listener handle. - */ - hvnd_debug("connector handle is %p\n", (void *)pkt.ioctl.out); - *connector_handle = pkt.ioctl.out; - - return 0; - -err: - return ret; -} - -int hvnd_free_connector(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - u64 handle) -{ - struct pkt_nd_free_connector pkt; - int ret; - - memset(&pkt, 0, sizeof(pkt)); //KYS try to avoid having to zero everything - hvnd_init_hdr(&pkt.hdr, - sizeof(pkt) - - sizeof(struct ndv_packet_hdr_control_1), - uctx->create_pkt.handle.local, - uctx->create_pkt.handle.remote, - IOCTL_ND_CONNECTOR_FREE, 0, 0, 0); - - /* - * Now fill in the ioctl section. - */ - pkt.ioctl.in.version = ND_VERSION_1; - pkt.ioctl.in.handle = handle; - - ret = hvnd_send_ioctl_pkt(nd_dev, &pkt.hdr, sizeof(pkt), (u64)&pkt); - - if (ret) - goto err; - - return 0; - -err: - return ret; -} - -int hvnd_bind_connector(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - u64 handle, union nd_sockaddr_inet *addr) -{ - struct pkt_nd_bind_connector pkt; - int ret; - kuid_t uid = current_uid(); - - memset(&pkt, 0, sizeof(pkt)); //KYS try to avoid having to zero everything - hvnd_init_hdr(&pkt.hdr, - sizeof(pkt) - - sizeof(struct ndv_packet_hdr_control_1), - uctx->create_pkt.handle.local, - uctx->create_pkt.handle.remote, - IOCTL_ND_CONNECTOR_BIND, 0, 0, 0); - - /* - * Now fill in the ioctl section. - */ - pkt.ioctl.in.hdr.version = ND_VERSION_1; - pkt.ioctl.in.hdr.handle = handle; - - memcpy(&pkt.ioctl.in.hdr.address, addr, sizeof(*addr)); - - pkt.ioctl.in.authentication_id = (u32)uid.val; - pkt.ioctl.in.is_admin = false; - - - ret = hvnd_send_ioctl_pkt(nd_dev, &pkt.hdr, sizeof(pkt), (u64)&pkt); - - if (ret) - goto err; - - return 0; - -err: - return ret; -} - -int hvnd_connector_connect(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - u64 connector_handle, u32 in_rd_limit, u32 out_rd_limit, - u32 priv_data_length, const u8 *priv_data, - u64 qp_handle, struct if_physical_addr *phys_addr, - union nd_sockaddr_inet *dest_addr, struct hvnd_ep_obj *ep) -{ - struct pkt_nd_connector_connect *pkt = &ep->connector_connect_pkt; - int ret; - union ndv_context_handle irp_fhandle; - - hvnd_debug("local irp is %d\n", ep->local_irp); - irp_fhandle.local = ep->local_irp; - - if (priv_data_length > MAX_PRIVATE_DATA_LEN) { - hvnd_error("priv_data_length=%d\n", priv_data_length); - return -EINVAL; - } - - memset(pkt, 0, sizeof(*pkt)); //KYS try to avoid having to zero everything - hvnd_init_hdr(&pkt->hdr, - sizeof(*pkt) - - sizeof(struct ndv_packet_hdr_control_1), - uctx->create_pkt.handle.local, - uctx->create_pkt.handle.remote, - IOCTL_ND_CONNECTOR_CONNECT, 0, 0, irp_fhandle.val64); - - /* - * Now fill in the ioctl section. - */ - pkt->ioctl.in.hdr.version = ND_VERSION_1; - pkt->ioctl.in.hdr.connector_handle = connector_handle; - pkt->ioctl.in.hdr.read_limits.inbound = in_rd_limit; - pkt->ioctl.in.hdr.read_limits.outbound = out_rd_limit; - pkt->ioctl.in.hdr.cb_private_data_length = priv_data_length; - pkt->ioctl.in.hdr.cb_private_data_offset = offsetof(union connector_connect_ioctl, in.priv_data); - pkt->ioctl.in.hdr.qp_handle = qp_handle; - - memcpy(&pkt->ioctl.in.hdr.phys_addr, phys_addr, - sizeof(struct if_physical_addr)); - - /* - * Luke's code does not copy the ip address. - */ - memcpy(&pkt->ioctl.in.hdr.destination_address, dest_addr, - sizeof(union nd_sockaddr_inet)); - - pkt->ioctl.in.retry_cnt = 7; - pkt->ioctl.in.rnr_retry_cnt = 7; - memcpy(pkt->ioctl.in.priv_data, priv_data, priv_data_length); - - ret = hvnd_send_ioctl_pkt(nd_dev, &pkt->hdr, sizeof(*pkt), (u64)pkt); - - if (ret) - goto err; - - return 0; - -err: - return ret; -} - -int hvnd_connector_complete_connect(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - u64 connector_handle, enum ibv_qp_state *qp_state) -{ - struct pkt_nd_connector_connect_complete pkt; - int ret; - - memset(&pkt, 0, sizeof(pkt)); //KYS try to avoid having to zero everything - hvnd_init_hdr(&pkt.hdr, - sizeof(pkt) - - sizeof(struct ndv_packet_hdr_control_1), - uctx->create_pkt.handle.local, - uctx->create_pkt.handle.remote, - IOCTL_ND_CONNECTOR_COMPLETE_CONNECT, 0, 0, 0); - - /* - * Now fill in the ioctl section. - */ - pkt.ioctl.in.hdr.version = ND_VERSION_1; - pkt.ioctl.in.hdr.handle = connector_handle; - pkt.ioctl.in.rnr_nak_to = 0; - - ret = hvnd_send_ioctl_pkt(nd_dev, &pkt.hdr, sizeof(pkt), (u64)&pkt); - - if (ret) - goto err; - - *qp_state = pkt.ioctl.out.state; - return 0; - -err: - return ret; -} - -int hvnd_connector_accept(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - u64 connector_handle, - u64 qp_handle, - u32 in_rd_limit, u32 out_rd_limit, - u32 priv_data_length, const u8 *priv_data, - enum ibv_qp_state *qp_state, struct hvnd_ep_obj *ep) -{ - struct pkt_nd_connector_accept pkt; - int ret; - union ndv_context_handle irp_fhandle; - - irp_fhandle.local = ep->local_irp; - - if (priv_data_length > MAX_PRIVATE_DATA_LEN) { - hvnd_error("priv_data_length=%d\n", priv_data_length); - return -EINVAL; - } - - memset(&pkt, 0, sizeof(pkt)); //KYS try to avoid having to zero everything - hvnd_init_hdr(&pkt.hdr, - sizeof(pkt) - - sizeof(struct ndv_packet_hdr_control_1), - uctx->create_pkt.handle.local, - uctx->create_pkt.handle.remote, - IOCTL_ND_CONNECTOR_ACCEPT, 0, 0, irp_fhandle.val64); - - /* - * Now fill in the ioctl section. - */ - pkt.ioctl.in.hdr.version = ND_VERSION_1; - pkt.ioctl.in.hdr.reserved = 0; - pkt.ioctl.in.hdr.read_limits.inbound = in_rd_limit; - pkt.ioctl.in.hdr.read_limits.outbound = out_rd_limit; - pkt.ioctl.in.hdr.cb_private_data_length = priv_data_length; - - pkt.ioctl.in.hdr.cb_private_data_offset = offsetof(struct connector_accept_in, private_data); - - pkt.ioctl.in.hdr.connector_handle = connector_handle; - pkt.ioctl.in.hdr.qp_handle = qp_handle; - - pkt.ioctl.in.rnr_nak_to = 0; - pkt.ioctl.in.rnr_retry_cnt = 7; - - - memcpy(pkt.ioctl.in.private_data, priv_data, priv_data_length); - - ret = hvnd_send_ioctl_pkt(nd_dev, &pkt.hdr, sizeof(pkt), (u64)&pkt); - - if (ret) - goto err; - - *qp_state = pkt.ioctl.out.state; - return 0; - -err: - return ret; -} - -int hvnd_connector_reject(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - u64 connector_handle, - u32 priv_data_length, u8 *priv_data, - enum ibv_qp_state *qp_state) -{ - struct pkt_nd_connector_reject pkt; - int ret; - - if (priv_data_length > MAX_PRIVATE_DATA_LEN) { - hvnd_error("priv_data_length=%d\n", priv_data_length); - return -EINVAL; - } - - memset(&pkt, 0, sizeof(pkt)); //KYS try to avoid having to zero everything - hvnd_init_hdr(&pkt.hdr, - sizeof(pkt) - - sizeof(struct ndv_packet_hdr_control_1), - uctx->create_pkt.handle.local, - uctx->create_pkt.handle.remote, - IOCTL_ND_CONNECTOR_REJECT, 0, 0, 0); - - /* - * Now fill in the ioctl section. - */ - pkt.ioctl.in.hdr.version = ND_VERSION_1; - pkt.ioctl.in.hdr.reserved = 0; - pkt.ioctl.in.hdr.cb_private_data_length = priv_data_length; - - pkt.ioctl.in.hdr.cb_private_data_offset = offsetof(struct connector_reject_in, private_data); - - pkt.ioctl.in.hdr.connector_handle = connector_handle; - - memcpy(pkt.ioctl.in.private_data, priv_data, priv_data_length); - - ret = hvnd_send_ioctl_pkt(nd_dev, &pkt.hdr, sizeof(pkt), (u64)&pkt); - - if (ret) - goto err; - - *qp_state = pkt.ioctl.out.state; - return 0; - -err: - return ret; -} - -int hvnd_connector_get_rd_limits(struct hvnd_dev *nd_dev, - struct hvnd_ucontext *uctx, - u64 connector_handle, - struct nd_read_limits *rd_limits) -{ - struct pkt_nd_connector_get_rd_limits pkt; - int ret; - - - memset(&pkt, 0, sizeof(pkt)); //KYS try to avoid having to zero everything - hvnd_init_hdr(&pkt.hdr, - sizeof(pkt) - - sizeof(struct ndv_packet_hdr_control_1), - uctx->create_pkt.handle.local, - uctx->create_pkt.handle.remote, - IOCTL_ND_CONNECTOR_GET_READ_LIMITS, 0, 0, 0); - - /* - * Now fill in the ioctl section. - */ - pkt.ioctl.in.in.version = ND_VERSION_1; - pkt.ioctl.in.in.reserved = 0; - pkt.ioctl.in.in.handle = connector_handle; - - ret = hvnd_send_ioctl_pkt(nd_dev, &pkt.hdr, sizeof(pkt), (u64)&pkt); - - if (ret) - goto err; - - *rd_limits = pkt.ioctl.out.out; - return 0; - -err: - return ret; -} - -int hvnd_connector_get_priv_data(struct hvnd_dev *nd_dev, - struct hvnd_ucontext *uctx, - u64 connector_handle, - u8 *priv_data) -{ - struct pkt_nd_connector_get_priv_data pkt; - int ret; - - - memset(&pkt, 0, sizeof(pkt)); //KYS try to avoid having to zero everything - hvnd_init_hdr(&pkt.hdr, - sizeof(pkt) - - sizeof(struct ndv_packet_hdr_control_1), - uctx->create_pkt.handle.local, - uctx->create_pkt.handle.remote, - IOCTL_ND_CONNECTOR_GET_PRIVATE_DATA, 0, 0, 0); - - /* - * Now fill in the ioctl section. - */ - pkt.ioctl.in.version = ND_VERSION_1; - pkt.ioctl.in.reserved = 0; - pkt.ioctl.in.handle = connector_handle; - - ret = hvnd_send_ioctl_pkt(nd_dev, &pkt.hdr, sizeof(pkt), (u64)&pkt); - - if (ret) - goto err; - - memcpy(priv_data, pkt.ioctl.out, MAX_PRIVATE_DATA_LEN); - return 0; - -err: - return ret; -} - -int hvnd_connector_get_peer_addr(struct hvnd_dev *nd_dev, - struct hvnd_ucontext *uctx, - u64 connector_handle, - union nd_sockaddr_inet *peer_addr) -{ - struct pkt_nd_connector_get_peer_addr pkt; - int ret; - - - memset(&pkt, 0, sizeof(pkt)); //KYS try to avoid having to zero everything - hvnd_init_hdr(&pkt.hdr, - sizeof(pkt) - - sizeof(struct ndv_packet_hdr_control_1), - uctx->create_pkt.handle.local, - uctx->create_pkt.handle.remote, - IOCTL_ND_CONNECTOR_GET_PEER_ADDRESS, 0, 0, 0); - - /* - * Now fill in the ioctl section. - */ - pkt.ioctl.in.version = ND_VERSION_1; - pkt.ioctl.in.reserved = 0; - pkt.ioctl.in.handle = connector_handle; - - ret = hvnd_send_ioctl_pkt(nd_dev, &pkt.hdr, sizeof(pkt), (u64)&pkt); - - if (ret) - goto err; - - memcpy(peer_addr, &pkt.ioctl.out, sizeof(union nd_sockaddr_inet)); - return 0; - -err: - return ret; -} - -int hvnd_connector_get_local_addr(struct hvnd_dev *nd_dev, - struct hvnd_ucontext *uctx, - u64 connector_handle, - union nd_sockaddr_inet *addr) -{ - struct pkt_nd_connector_get_addr pkt; - int ret; - - - memset(&pkt, 0, sizeof(pkt)); //KYS try to avoid having to zero everything - hvnd_init_hdr(&pkt.hdr, - sizeof(pkt) - - sizeof(struct ndv_packet_hdr_control_1), - uctx->create_pkt.handle.local, - uctx->create_pkt.handle.remote, - IOCTL_ND_CONNECTOR_GET_ADDRESS, 0, 0, 0); - - /* - * Now fill in the ioctl section. - */ - pkt.ioctl.in.version = ND_VERSION_1; - pkt.ioctl.in.reserved = 0; - pkt.ioctl.in.handle = connector_handle; - - ret = hvnd_send_ioctl_pkt(nd_dev, &pkt.hdr, sizeof(pkt), (u64)&pkt); - - if (ret) - goto err; - - memcpy(addr, &pkt.ioctl.out, sizeof(union nd_sockaddr_inet)); - return 0; - -err: - return ret; -} - - -int hvnd_connector_notify_disconnect(struct hvnd_dev *nd_dev, - struct hvnd_ucontext *uctx, - u64 connector_handle, struct hvnd_ep_obj *ep) -{ - struct pkt_nd_connector_notify_disconnect pkt; - int ret; - union ndv_context_handle irp_fhandle; - - irp_fhandle .local = ep->local_irp; - - hvnd_init_hdr(&pkt.hdr, - sizeof(pkt) - - sizeof(struct ndv_packet_hdr_control_1), - uctx->create_pkt.handle.local, - uctx->create_pkt.handle.remote, - IOCTL_ND_CONNECTOR_NOTIFY_DISCONNECT, 0, 0, irp_fhandle.val64); - - /* - * Now fill in the ioctl section. - */ - pkt.ioctl.in.version = ND_VERSION_1; - pkt.ioctl.in.reserved = 0; - pkt.ioctl.in.handle = connector_handle; - - ret = hvnd_send_ioctl_pkt(nd_dev, &pkt.hdr, sizeof(pkt), (u64)&pkt); - - if (ret) - goto err; - - return 0; - -err: - return ret; -} - - -//ASYNCH call -int hvnd_connector_disconnect(struct hvnd_dev *nd_dev, - struct hvnd_ucontext *uctx, - u64 connector_handle, struct hvnd_ep_obj *ep) -{ - struct pkt_nd_connector_disconnect pkt; - int ret; - union ndv_context_handle irp_fhandle; - - irp_fhandle.local = ep->local_irp; - - - hvnd_init_hdr(&pkt.hdr, - sizeof(pkt) - - sizeof(struct ndv_packet_hdr_control_1), - uctx->create_pkt.handle.local, - uctx->create_pkt.handle.remote, - IOCTL_ND_CONNECTOR_DISCONNECT, 0, 0, irp_fhandle.val64); - - /* - * Now fill in the ioctl section. - */ - pkt.ioctl.in.version = ND_VERSION_1; - pkt.ioctl.in.reserved = 0; - pkt.ioctl.in.handle = connector_handle; - - ret = hvnd_send_ioctl_pkt(nd_dev, &pkt.hdr, sizeof(pkt), (u64)&pkt); - - if (ret) - goto err; - - return 0; - -err: - return ret; -} - -/* - * QP operations. - */ -int hvnd_create_qp(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - struct hvnd_qp *qp) -{ - int ret; - struct pkt_nd_create_qp *pkt; - int num_pfn, num_db_pfn; - int qp_pkt_size; - unsigned int offset; - u32 ext_data_offset; - u32 ext_data_size; - - /* - * Now create QP. - * First compute the number of PFNs we need to accomodate: - * One each for door bell and arm_sn and pages in cq buffer. - */ - offset = offset_in_page(qp->qp_buf); - num_pfn = DIV_ROUND_UP(offset + qp->buf_size, PAGE_SIZE); - - offset = offset_in_page(qp->db_addr); - num_db_pfn = DIV_ROUND_UP(offset + 4, PAGE_SIZE); - - qp_pkt_size = sizeof(struct pkt_nd_create_qp) + - (num_pfn * sizeof(u64)); - - hvnd_debug("CREATE QP, num pfns is %d\n", num_pfn); - hvnd_debug("CREATE QP, num DB pfns is %d\n", num_db_pfn); - - pkt = kzalloc(qp_pkt_size, GFP_KERNEL); - - if (!pkt) - return -ENOMEM; - - hvnd_debug("offset of nd_create_qp is %d\n", - (int)offsetof(struct pkt_nd_create_qp, ioctl.input)); - - ext_data_offset = offsetof(struct pkt_nd_create_qp, ext_data) - - sizeof(struct ndv_packet_hdr_control_1); - - ext_data_size = sizeof(struct create_qp_ext_data) + (num_pfn * sizeof(u64)); - - hvnd_init_hdr(&pkt->hdr, - qp_pkt_size - - sizeof(struct ndv_packet_hdr_control_1), - uctx->create_pkt.handle.local, - uctx->create_pkt.handle.remote, - IOCTL_ND_QP_CREATE, - ext_data_size, - ext_data_offset, - 0); - - /* - * Now fill out the ioctl section. - */ - - pkt->ioctl.input.hdr.version = ND_VERSION_1; - - if (qp->max_inline_data > nd_dev->query_pkt.ioctl.ad_info.inline_request_threshold) - qp->max_inline_data = nd_dev->query_pkt.ioctl.ad_info.inline_request_threshold; - pkt->ioctl.input.hdr.cb_max_inline_data = qp->max_inline_data; - - hvnd_debug("pkt->ioctl.input.hdr.cb_max_inline_data=%d\n", pkt->ioctl.input.hdr.cb_max_inline_data); - - pkt->ioctl.input.hdr.ce_mapping_cnt = MLX4_IB_CREATE_QP_MAPPINGS_MAX; - pkt->ioctl.input.hdr.cb_mapping_offset = sizeof(union create_qp_ioctl); - - pkt->ioctl.input.hdr.initiator_queue_depth = qp->initiator_q_depth; - pkt->ioctl.input.hdr.max_initiator_request_sge = qp->initiator_request_sge; - - hvnd_debug("recv cq handle is %p\n", (void *)qp->receive_cq_handle); - hvnd_debug("send cq handle is %p\n", (void *)qp->initiator_cq_handle); - hvnd_debug("pd handle is %p\n", (void *)qp->pd_handle); - pkt->ioctl.input.hdr.receive_cq_handle = qp->receive_cq_handle; - pkt->ioctl.input.hdr.initiator_cq_handle = qp->initiator_cq_handle; - pkt->ioctl.input.hdr.pd_handle = qp->pd_handle; - - - hvnd_debug("ce_mapping cnt is %d\n", pkt->ioctl.input.hdr.ce_mapping_cnt); - hvnd_debug("cb_mapping offset is %d\n", pkt->ioctl.input.hdr.cb_mapping_offset); - - pkt->ioctl.input.receive_queue_depth = qp->receive_q_depth; - pkt->ioctl.input.max_receive_request_sge = qp->receive_request_sge; - - - pkt->mappings.qp_in.mappings[MLX4_IB_CREATE_QP_BUF].map_memory.map_type = ND_MAP_MEMORY; - pkt->mappings.qp_in.mappings[MLX4_IB_CREATE_QP_BUF].map_memory.access_type = ND_MODIFY_ACCESS; - pkt->mappings.qp_in.mappings[MLX4_IB_CREATE_QP_BUF].map_memory.address = (u64)qp->qp_buf; - pkt->mappings.qp_in.mappings[MLX4_IB_CREATE_QP_BUF].map_memory.cb_length = qp->buf_size; - - pkt->mappings.qp_in.mappings[MLX4_IB_CREATE_QP_DB].map_memory.map_type = ND_MAP_MEMORY_COALLESCE; - pkt->mappings.qp_in.mappings[MLX4_IB_CREATE_QP_DB].map_memory.access_type = ND_WRITE_ACCESS; - pkt->mappings.qp_in.mappings[MLX4_IB_CREATE_QP_DB].map_memory.address = (u64)qp->db_addr; - pkt->mappings.qp_in.mappings[MLX4_IB_CREATE_QP_DB].map_memory.cb_length = 4; - - pkt->mappings.qp_in.log_sq_bb_count = qp->log_sq_bb_count; - pkt->mappings.qp_in.log_sq_stride = qp->log_sq_stride; - pkt->mappings.qp_in.sq_no_prefetch = qp->sq_no_prefetch; - - - /* - * Fill in the extended data. - */ - - pkt->ext_data.cnt = 2; - pkt->ext_data.fields[MLX4_IB_CREATE_QP_BUF].size = sizeof(struct gpa_range) + (num_pfn * sizeof(u64)); - pkt->ext_data.fields[MLX4_IB_CREATE_QP_BUF].offset = offsetof(struct create_qp_ext_data, qpbuf_gpa); - - pkt->ext_data.fields[MLX4_IB_CREATE_QP_DB].size = sizeof(struct qp_db_gpa); - pkt->ext_data.fields[MLX4_IB_CREATE_QP_DB].offset = offsetof(struct create_qp_ext_data, db_gpa); - - /* - * Fill up the gpa range for qp buffer. - */ - - pkt->ext_data.db_gpa.byte_count = 4; //KYS 8 or 16? - pkt->ext_data.db_gpa.byte_offset = offset_in_page(qp->db_addr); - user_va_init_pfn(&pkt->ext_data.db_gpa.pfn_array[0], qp->db_umem); - - pkt->ext_data.qpbuf_gpa.byte_count = qp->buf_size; - pkt->ext_data.qpbuf_gpa.byte_offset = offset_in_page(qp->qp_buf); - user_va_init_pfn(&pkt->ext_data.qpbuf_gpa.pfn_array[0], qp->umem); - - ret = hvnd_send_ioctl_pkt(nd_dev, &pkt->hdr, qp_pkt_size, (u64)pkt); - - if (ret) - goto cr_qp_err; - - /* - * Copy the necessary response from the host. - */ - qp->qp_handle = pkt->ioctl.resrc_desc.handle; - - qp->qpn = pkt->mappings.qp_resp.qpn; - qp->max_send_wr = pkt->mappings.qp_resp.max_send_wr; - qp->max_recv_wr = pkt->mappings.qp_resp.max_recv_wr; - qp->max_send_sge = pkt->mappings.qp_resp.max_send_sge; - qp->max_recv_sge = pkt->mappings.qp_resp.max_recv_sge; - - - hvnd_debug("qp->max_send_wr=%d max_recv_wr=%d max_send_sge=%d max_recv_sge=%d max_inline_data=%d\n", qp->max_send_wr, qp->max_recv_wr, qp->max_send_sge, qp->max_recv_sge, qp->max_inline_data); - - ret = insert_handle(nd_dev, &nd_dev->qpidr, qp, qp->qpn); - - if (ret) - goto cr_qp_err; - - hvnd_debug("QP create after success qpn:%d qp:%p handle:%llu\n", qp->qpn, qp, qp->qp_handle); - -cr_qp_err: - kfree(pkt); - return ret; -} - -int hvnd_free_qp(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - struct hvnd_qp *qp) -{ - int ret; - ret = hvnd_free_handle(nd_dev, uctx, qp->qp_handle, IOCTL_ND_QP_FREE); - if (ret == 0) - remove_handle(nd_dev, &nd_dev->qpidr, qp->qpn); - return ret; -} - -int hvnd_flush_qp(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - struct hvnd_qp *qp) -{ - struct pkt_nd_flush_qp pkt; - int ret; - - memset(&pkt, 0, sizeof(pkt)); //KYS try to avoid having to zero everything - hvnd_init_hdr(&pkt.hdr, - sizeof(pkt) - - sizeof(struct ndv_packet_hdr_control_1), - uctx->create_pkt.handle.local, - uctx->create_pkt.handle.remote, - IOCTL_ND_QP_FLUSH, 0, 0, 0); - - /* - * Now fill in the ioctl section. - */ - pkt.ioctl.in.version = ND_VERSION_1; - pkt.ioctl.in.reserved = 0; - pkt.ioctl.in.handle = qp->qp_handle; - - ret = hvnd_send_ioctl_pkt(nd_dev, &pkt.hdr, sizeof(pkt), (u64)&pkt); - - if (ret) - goto err; - - return 0; - -err: - return ret; -} - - -int hvnd_bind_nic(struct hvnd_dev *nd_dev, bool un_bind, char *ip_addr, char *mac_addr) -{ - int ret; - int pkt_type = NDV_PKT_ID1_BIND; - - /* - * Send the bind information over to the host. - * For now, we will have a single ip and MAC address that we - * will deal with. Down the road we will need to expand support - * for multiple IP and MAC addresses and also deal with changing - * IP addresses. - */ - - NDV_ADD_PACKET_OPTION(pkt_type, NDV_PACKET_OPTIONS_REQUIRES_PASSIVE); - hvnd_debug("bind packet type is %d ID:%d\n", pkt_type, NDV_PACKET_TYPE_ID(pkt_type)); - nd_dev->bind_pkt.pkt_hdr.packet_type = pkt_type; - - nd_dev->bind_pkt.pkt_hdr.hdr_sz = sizeof(struct ndv_pkt_hdr_bind_1); - hvnd_debug("bind packet size is %d\n", (int)sizeof(struct ndv_pkt_hdr_bind_1)); - nd_dev->bind_pkt.pkt_hdr.data_sz = 0; - nd_dev->bind_pkt.unbind = un_bind; - nd_dev->bind_pkt.ip_address.address_family = AF_INET; - nd_dev->bind_pkt.ip_address.ipv4.sin_family = AF_INET; - nd_dev->bind_pkt.ip_address.ipv4.sin_port = 0; - nd_dev->bind_pkt.ip_address.ipv4.sin_addr.s_addr = *(unsigned int*)ip_addr; - - nd_dev->bind_pkt.phys_addr.length = ETH_ALEN; - memcpy(nd_dev->bind_pkt.phys_addr.addr, mac_addr, ETH_ALEN); - - /* - * This is the adapter handle; needs to be unique for each - * MAC, ip address tuple. - */ - nd_dev->bind_pkt.guest_id = (u64)nd_dev; - - ret = hvnd_send_packet(nd_dev, &nd_dev->bind_pkt, - sizeof(struct ndv_pkt_hdr_bind_1), - (u64)NULL, - true); - return ret; -} - -int hvnd_init_resources(struct hvnd_dev *nd_dev) -{ - unsigned long mmio_sz; - struct resource *resrc; - int ret = -ENOMEM; - - resrc = &iomem_resource; - - mmio_sz = (nd_dev->hvdev->channel->offermsg.offer.mmio_megabytes * 1024 * 1024); - nd_dev->mmio_sz = mmio_sz; - nd_dev->mmio_resource.name = KBUILD_MODNAME; - nd_dev->mmio_resource.flags = IORESOURCE_MEM | IORESOURCE_BUSY; - - ret = allocate_resource(resrc, &nd_dev->mmio_resource, - mmio_sz, 0, -1, mmio_sz, NULL, NULL); - - if (ret) { - hvnd_error("Unable to allocate mmio resources\n"); - return ret; - } - hvnd_debug("MMIO start is %p\n", (void *)nd_dev->mmio_resource.start); - - /* - * Send the mmio information over to the host. - */ - nd_dev->resources.pkt_hdr.packet_type = NDV_PKT_ID1_INIT_RESOURCES; - nd_dev->resources.pkt_hdr.hdr_sz = sizeof(union ndv_packet_hdr); - nd_dev->resources.pkt_hdr.data_sz = 0; - - nd_dev->resources.io_space_sz_mb = mmio_sz; - nd_dev->resources.io_space_start = nd_dev->mmio_resource.start; - - ret = hvnd_send_packet(nd_dev, &nd_dev->resources, - sizeof(struct ndv_pkt_hdr_init_resources_1), - (u64)NULL, - true); - return ret; -} - -int hvnd_query_adaptor(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx) -{ - struct pkt_nd_query_adaptor *pkt; - int ret; - int pkt_type; - - hvnd_debug("Performing Adapter query nd_dev=%p\n", nd_dev); - - // check if there is a need to do query - if (nd_dev->query_pkt_set) - return 0; - - // need a lock, multiple process can call this at the same time - - down(&nd_dev->query_pkt_sem); - if (nd_dev->query_pkt_set) { - up(&nd_dev->query_pkt_sem); - return 0; - } - - /* - * Now query the adaptor. - */ - - pkt = &nd_dev->query_pkt; - - pkt_type = NDV_PKT_ID1_CONTROL; - NDV_ADD_PACKET_OPTION(pkt_type, NDV_PACKET_OPTIONS_REQUIRES_PASSIVE); - - pkt->hdr.pkt_hdr.packet_type = pkt_type; - pkt->hdr.pkt_hdr.hdr_sz = sizeof(struct ndv_packet_hdr_control_1); - pkt->hdr.pkt_hdr.data_sz = sizeof(struct pkt_nd_query_adaptor) - - sizeof(struct ndv_packet_hdr_control_1); - - - pkt->hdr.file_handle.local = uctx->file_handle.local; - pkt->hdr.file_handle.remote = uctx->file_handle.remote; - - pkt->hdr.irp_handle.val64 = 0; - - pkt->hdr.io_cntrl_code = IOCTL_ND_ADAPTER_QUERY; - pkt->hdr.output_buf_sz = sizeof(struct nd_adap_query_ioctl); - pkt->hdr.input_buf_sz = sizeof(struct nd_adap_query_ioctl); - pkt->hdr.input_output_buf_offset = 0; - memset(&pkt->ioctl.ad_q, 0, sizeof(struct nd_adap_query_ioctl)); - - pkt->ioctl.ad_q.version = ND_VERSION_1; - pkt->ioctl.ad_q.info_version = ND_VERSION_2; - pkt->ioctl.ad_q.adapter_handle = uctx->adaptor_hdl; - - ret = hvnd_send_packet(nd_dev, pkt, - sizeof(struct pkt_nd_query_adaptor), - (unsigned long)pkt, true); - - hvnd_debug("pkt->ioctl.ad_info.inline_request_threshold=%d\n", pkt->ioctl.ad_info.inline_request_threshold); - - // how about host returning PENDING - up(&nd_dev->query_pkt_sem); - - if (ret) - return ret; - - hvnd_debug("Query Adaptor Succeeded\n"); - nd_dev->query_pkt_set = true; - - return 0; -} - - -int hvnd_create_pd(struct hvnd_ucontext *uctx, struct hvnd_dev *nd_dev, - struct hvnd_ib_pd *hvnd_pd) -{ - struct pkt_nd_pd_create *pkt = &uctx->pd_cr_pkt; - int ret; - int pkt_type; - - hvnd_debug("Create Protection Domain\n"); - - pkt_type = NDV_PKT_ID1_CONTROL; - NDV_ADD_PACKET_OPTION(pkt_type, NDV_PACKET_OPTIONS_REQUIRES_PASSIVE); - - pkt->hdr.pkt_hdr.packet_type = pkt_type; - pkt->hdr.pkt_hdr.hdr_sz = sizeof(struct ndv_packet_hdr_control_1); - pkt->hdr.pkt_hdr.data_sz = sizeof(struct pkt_nd_pd_create) - - sizeof(struct ndv_packet_hdr_control_1); - - hvnd_debug("pdcreate packet size: %d\n", (int)sizeof(struct pkt_nd_pd_create)); - hvnd_debug("pdcreate hdr size: %d\n", (int)sizeof(struct ndv_packet_hdr_control_1)); - hvnd_debug("pdcreate data size: %d\n", pkt->hdr.pkt_hdr.data_sz); - - pkt->hdr.file_handle.local = uctx->create_pkt.handle.local; - pkt->hdr.file_handle.remote = uctx->create_pkt.handle.remote; - - hvnd_debug("create pd uctx is %p\n", uctx); - hvnd_debug("create pd local file is %d\n", uctx->create_pkt.handle.local); - hvnd_debug("create pd local file is %d\n", uctx->create_pkt.handle.remote); - - pkt->hdr.irp_handle.val64 = 0; - pkt->hdr.io_cntrl_code = IOCTL_ND_PD_CREATE; - - pkt->hdr.output_buf_sz = sizeof(struct nd_create_pd_ioctl); - pkt->hdr.input_buf_sz = sizeof(struct nd_create_pd_ioctl); - pkt->hdr.input_output_buf_offset = 0; - - hvnd_debug("output/input buf size: %d\n", pkt->hdr.output_buf_sz); - /* - * Fill the ioctl section. - */ - - pkt->ioctl.in.version = ND_VERSION_1; - pkt->ioctl.in.reserved = 0; - pkt->ioctl.in.handle = uctx->adaptor_hdl; - - - ret = hvnd_send_packet(nd_dev, pkt, - sizeof(struct pkt_nd_pd_create), - (unsigned long)pkt, true); - - if (ret) - return ret; - - if (pkt->hdr.pkt_hdr.status != 0) { - hvnd_error("Create PD failed; status is %d\n", - pkt->hdr.pkt_hdr.status); - return -EINVAL; - } - if (pkt->hdr.io_status != 0) { - hvnd_error("Create PD failed;io status is %d\n", - pkt->hdr.io_status); - return -EINVAL; - } - - hvnd_debug("Create PD Succeeded\n"); - - hvnd_debug("pd_handle is %p\n", (void *)pkt->ioctl.resp.pd_handle); - hvnd_debug("pdn is %d\n", (int)pkt->ioctl.resp.pdn); - - hvnd_pd->pdn = pkt->ioctl.resp.pdn; - hvnd_pd->handle = pkt->ioctl.out_handle; - - return 0; -} - -int hvnd_cancel_io(struct hvnd_ep_obj *ep_object) -{ - struct pkt_nd_cancel_io pkt; - int ret; - u32 ioctl; - - switch (ep_object->type) { - case ND_LISTENER: - hvnd_debug("LISTENER I/O Cancelled\n"); - ioctl = IOCTL_ND_LISTENER_CANCEL_IO; - break; - case ND_CONNECTOR: - hvnd_debug("CONNECTOR I/O Cancelled\n"); - ioctl = IOCTL_ND_CONNECTOR_CANCEL_IO; - break; - case ND_MR: - hvnd_debug("MR I/O Cancelled\n"); - ioctl = IOCTL_ND_MR_CANCEL_IO; - break; - case ND_CQ: - hvnd_debug("CQ I/O Cancelled\n"); - ioctl = IOCTL_ND_CQ_CANCEL_IO; - break; - default: - hvnd_error("UNKNOWN object type\n"); - return -EINVAL; - } - - memset(&pkt, 0, sizeof(pkt)); //KYS try to avoid having to zero everything - hvnd_init_hdr(&pkt.hdr, - sizeof(pkt) - - sizeof(struct ndv_packet_hdr_control_1), - ep_object->uctx->create_pkt.handle.local, - ep_object->uctx->create_pkt.handle.remote, - ioctl, 0, 0, 0); - - /* - * Now fill in the ioctl section. - */ - pkt.ioctl.in.version = ND_VERSION_1; - pkt.ioctl.in.reserved = 0; - pkt.ioctl.in.handle = ep_object->ep_handle; - hvnd_debug("cancel io handle is %p\n", (void *)ep_object->ep_handle); - - ret = hvnd_send_ioctl_pkt(ep_object->nd_dev, &pkt.hdr, - sizeof(pkt), - (u64)&pkt); - - if (ret) - goto err; - - /* - * Now that we have cancelled all I/Os, - */ - - return 0; - -err: - hvnd_error("cancel I/O operation failed\n"); - return ret; -} - - -int hvnd_free_handle(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - u64 handle, u32 ioctl) -{ - struct pkt_nd_free_handle pkt; - int ret; - - hvnd_debug("Freeing handle ioctl is %s; handle is %p\n", - hvnd_get_op_name(ioctl), (void *)handle); - - hvnd_debug("uctx is %p\n", uctx); - hvnd_debug("nd_dev is %p\n", nd_dev); - - memset(&pkt, 0, sizeof(pkt)); //KYS try to avoid having to zero everything - hvnd_init_hdr(&pkt.hdr, - sizeof(pkt) - - sizeof(struct ndv_packet_hdr_control_1), - uctx->create_pkt.handle.local, - uctx->create_pkt.handle.remote, - ioctl, 0, 0, 0); - - /* - * Now fill in the ioctl section. - */ - pkt.ioctl.in.version = ND_VERSION_1; - pkt.ioctl.in.reserved = 0; - pkt.ioctl.in.handle = handle; - - ret = hvnd_send_ioctl_pkt(nd_dev, &pkt.hdr, sizeof(pkt), (u64)&pkt); - - if (ret) - goto err; - - return 0; - -err: - hvnd_error("%s: ret=%d\n", __func__, ret); - return ret; -} - -int hvnd_negotiate_version(struct hvnd_dev *nd_dev) -{ - union ndv_packet_init *pkt = &nd_dev->init_pkt; - int ret; - - nd_dev->negotiated_version = NDV_PROTOCOL_VAERSION_INVALID; - - pkt->packet_type = NDV_PACKET_TYPE_INIT; - pkt->protocol_version = NDV_PROTOCOL_VERSION_CURRENT; - pkt->flags = 0; //KYS are the flags 0? - - ret = hvnd_send_packet(nd_dev, pkt, - sizeof(union ndv_packet_init), (u64)NULL, true); - - return ret; -} - -void hvnd_callback(void *context) -{ - struct hv_device *dev = context; - struct hvnd_dev *nd_dev = hv_get_drvdata(dev); - int copy_sz = 0; - struct ndv_packet_hdr_control_1 *ctrl_hdr; - union ndv_packet_init *pkt_init; - u32 recvlen; - u32 local_irp; - u64 requestid; - u32 *pkt_type; - u32 pkt_id; - struct hvnd_ep_obj *ep_object; - struct incoming_pkt *incoming_pkt; /* Used only for asynch calls */ - char *incoming_pkt_start; - struct vmpacket_descriptor *desc; - int status; - struct hvnd_cookie *hvnd_cookie; - unsigned long flags; - - vmbus_recvpacket_raw(dev->channel, hvnd_recv_buffer, - (PAGE_SIZE * 4), &recvlen, &requestid); - - if (recvlen <= 0) - return; - - desc = (struct vmpacket_descriptor *)hvnd_recv_buffer; - incoming_pkt_start = hvnd_recv_buffer + (desc->offset8 << 3); - recvlen -= desc->offset8 << 3; - - pkt_type = (u32 *)incoming_pkt_start; - pkt_id = *pkt_type; - if (pkt_id != NDV_PACKET_TYPE_INIT) - pkt_id = NDV_PACKET_TYPE_ID(pkt_id); - - switch (pkt_id) { - case NDV_PACKET_TYPE_INIT: - /* - * Host is responding to our init packet. - */ - pkt_init = (union ndv_packet_init *)incoming_pkt_start; - nd_dev->negotiated_version = pkt_init->protocol_version; - copy_sz = 0; - break; - - case NDV_PKT_ID1_INIT_RESOURCES: - copy_sz = 0; - break; - - case NDV_PKT_ID1_BIND: - nd_dev->bind_pkt.pkt_hdr.status = ((union ndv_packet_hdr *) incoming_pkt_start)->status; - copy_sz = 0; - break; - - case NDV_PKT_ID1_COMPLETE: - ctrl_hdr = (struct ndv_packet_hdr_control_1 *)incoming_pkt_start; - status = ctrl_hdr->io_status; - - local_irp = ctrl_hdr->irp_handle.local; - ep_object = (struct hvnd_ep_obj *)map_irp_to_ctx(nd_dev, local_irp); - - if (!ep_object) { - hvnd_error("irp could not be mapped; irp is %d ioctl is %s", - local_irp, hvnd_get_op_name(ctrl_hdr->io_cntrl_code)); - goto complete; - } - - if (ctrl_hdr->io_cntrl_code != IOCTL_ND_CQ_NOTIFY) - hvnd_debug("completion packet; iostatus is %x, ioctl is %s", ctrl_hdr->io_status, hvnd_get_op_name(ctrl_hdr->io_cntrl_code)); - - switch(ctrl_hdr->io_cntrl_code) { - - case IOCTL_ND_CQ_NOTIFY: - hvnd_process_cq_event_complete(ep_object, status); - - ep_del_work_pending(ep_object); - goto complete; - - case IOCTL_ND_CONNECTOR_ACCEPT: - - hvnd_process_connector_accept(ep_object, status); - - ep_del_work_pending(ep_object); - goto complete; - - case IOCTL_ND_CONNECTOR_DISCONNECT: - hvnd_debug("disconnected: ep opj is %p; status: %d\n", ep_object, status); - hvnd_process_disconnect(ep_object, status); - - ep_del_work_pending(ep_object); - goto complete; - - default: - break; - } - - /* - * This is the completion notification; - * the IRP cookie is the state through which - * we will invoke the callback. - */ - incoming_pkt = (struct incoming_pkt *) kmalloc(recvlen + sizeof(struct incoming_pkt), GFP_ATOMIC); - if (incoming_pkt == NULL) { - hvnd_error("Could not alloc memory in callback\n"); - ep_del_work_pending(ep_object); - goto complete; - } - memcpy(incoming_pkt->pkt, incoming_pkt_start, recvlen); - - spin_lock_irqsave(&ep_object->incoming_pkt_list_lock, flags); - list_add_tail(&incoming_pkt->list_entry, &ep_object->incoming_pkt_list); - spin_unlock_irqrestore(&ep_object->incoming_pkt_list_lock, flags); - - schedule_work(&ep_object->wrk.work); - - goto complete; - - case NDV_PKT_ID1_CREATE: - copy_sz = sizeof(struct ndv_pkt_hdr_create_1); - break; - - case NDV_PKT_ID1_CLEANUP: - copy_sz = sizeof(struct ndv_pkt_hdr_cleanup_1); - break; - - case NDV_PKT_ID1_CONTROL: - ctrl_hdr = (struct ndv_packet_hdr_control_1 *)incoming_pkt_start; - status = ctrl_hdr->io_status; - - if (ctrl_hdr->io_cntrl_code != IOCTL_ND_CQ_NOTIFY) - hvnd_debug("packet; iostatus is %x ioctl is %s", - ctrl_hdr->io_status, hvnd_get_op_name(ctrl_hdr->io_cntrl_code)); - - switch (ctrl_hdr->io_cntrl_code) { - - case IOCTL_ND_PROVIDER_INIT: - copy_sz = sizeof(struct pkt_nd_provider_ioctl); - break; - - case IOCTL_ND_PROVIDER_BIND_FILE: - copy_sz = sizeof(struct pkt_nd_provider_ioctl); - break; - - case IOCTL_ND_ADAPTER_OPEN: - copy_sz = sizeof(struct pkt_nd_open_adapter); - break; - - case IOCTL_ND_ADAPTER_CLOSE: - copy_sz = sizeof(struct pkt_nd_free_handle); - break; - - case IOCTL_ND_ADAPTER_QUERY: - copy_sz = sizeof(struct pkt_nd_query_adaptor); - break; - - case IOCTL_ND_PD_CREATE: - copy_sz = sizeof(struct pkt_nd_pd_create); - break; - - case IOCTL_ND_PD_FREE: - copy_sz = sizeof(struct pkt_nd_free_handle); - break; - - case IOCTL_ND_CQ_CREATE: - copy_sz = sizeof(struct pkt_nd_create_cq); - break; - - case IOCTL_ND_CQ_FREE: - copy_sz = sizeof(struct pkt_nd_free_cq); - break; - - case IOCTL_ND_CQ_NOTIFY: //FIXME check ep stop state - local_irp = ctrl_hdr->irp_handle.local; - ep_object = (struct hvnd_ep_obj *)map_irp_to_ctx(nd_dev, local_irp); - if (!ep_object) { - hvnd_error("irp could not be mapped\n"); - goto complete; - return; - } - copy_sz = sizeof(struct pkt_nd_notify_cq); - hvnd_process_cq_event_pending(ep_object, status); - goto complete; - return; - - case IOCTL_ND_LISTENER_CREATE: - copy_sz = sizeof(struct pkt_nd_cr_listener); - break; - - case IOCTL_ND_LISTENER_FREE: - copy_sz = sizeof(struct pkt_nd_free_listener); - break; - - case IOCTL_ND_QP_FREE: - copy_sz = sizeof(struct pkt_nd_free_handle); - break; - - case IOCTL_ND_CONNECTOR_CANCEL_IO: - case IOCTL_ND_MR_CANCEL_IO: - case IOCTL_ND_CQ_CANCEL_IO: - case IOCTL_ND_LISTENER_CANCEL_IO: - copy_sz = sizeof(struct pkt_nd_cancel_io); - break; - - case IOCTL_ND_LISTENER_BIND: - copy_sz = sizeof(struct pkt_nd_bind_listener); - break; - - case IOCTL_ND_LISTENER_LISTEN: - copy_sz = sizeof(struct pkt_nd_listen_listener); - break; - - case IOCTL_ND_LISTENER_GET_ADDRESS: - copy_sz = sizeof(struct pkt_nd_get_addr_listener); - break; - - case IOCTL_ND_LISTENER_GET_CONNECTION_REQUEST: - copy_sz = sizeof(struct pkt_nd_get_connection_listener); - goto complete; // non-block - - case IOCTL_ND_CONNECTOR_CREATE: - copy_sz = sizeof(struct pkt_nd_cr_connector); - break; - - case IOCTL_ND_CONNECTOR_FREE: - copy_sz = sizeof(struct pkt_nd_free_connector); - break; - - case IOCTL_ND_CONNECTOR_BIND: - copy_sz = sizeof(struct pkt_nd_free_connector); - break; - - case IOCTL_ND_CONNECTOR_CONNECT: //KYS: ALERT: ASYNCH Operation - copy_sz = sizeof(struct pkt_nd_connector_connect); - goto complete; //non-block - - case IOCTL_ND_CONNECTOR_COMPLETE_CONNECT: - copy_sz = sizeof(struct pkt_nd_connector_connect_complete); - break; - - case IOCTL_ND_CONNECTOR_ACCEPT: //KYS: ALERT: ASYNCH Operation - copy_sz = sizeof(struct pkt_nd_connector_accept); - goto complete; //non-block - - case IOCTL_ND_CONNECTOR_REJECT: - copy_sz = sizeof(struct pkt_nd_connector_reject); - break; - - case IOCTL_ND_CONNECTOR_GET_READ_LIMITS: - copy_sz = sizeof(struct pkt_nd_connector_get_rd_limits); - break; - - case IOCTL_ND_CONNECTOR_GET_PRIVATE_DATA: - copy_sz = sizeof(struct pkt_nd_connector_get_priv_data); - break; - - case IOCTL_ND_CONNECTOR_GET_PEER_ADDRESS: - copy_sz = sizeof(struct pkt_nd_connector_get_peer_addr); - break; - - case IOCTL_ND_CONNECTOR_GET_ADDRESS: - copy_sz = sizeof(struct pkt_nd_connector_get_addr); - break; - - case IOCTL_ND_CONNECTOR_NOTIFY_DISCONNECT: //KYS: ALERT: ASYNCH Operation - copy_sz = sizeof(struct pkt_nd_connector_notify_disconnect); - goto complete; //non-block - - case IOCTL_ND_CONNECTOR_DISCONNECT: //KYS: ALERT: ASYNCH Operation - hvnd_debug("IOCTL_ND_CONNECTOR_DISCONNECT\n"); - copy_sz = sizeof(struct pkt_nd_connector_notify_disconnect); - goto complete; // non-block - - case IOCTL_ND_QP_CREATE: - copy_sz = sizeof(struct pkt_nd_create_qp); - break; - - case IOCTL_ND_MR_CREATE: - copy_sz = sizeof(struct pkt_nd_create_mr); - break; - - case IOCTL_ND_MR_FREE: - copy_sz = sizeof(struct pkt_nd_free_handle); - break; - - case IOCTL_ND_MR_REGISTER: - copy_sz = sizeof(struct pkt_nd_register_mr); - break; - - case IOCTL_ND_MR_DEREGISTER: - copy_sz = sizeof(struct pkt_nd_deregister_mr); - break; - - case IOCTL_ND_ADAPTER_QUERY_ADDRESS_LIST: - copy_sz = sizeof(struct pkt_query_addr_list); - break; - - case IOCTL_ND_QP_FLUSH: - copy_sz = sizeof(struct pkt_nd_flush_qp); - break; - - default: - hvnd_warn("Got unknown ioctl: %d\n", - ctrl_hdr->io_cntrl_code); - copy_sz = 0; - break; - } - - break; - default: - hvnd_warn("Got an unknown packet type %d\n", *pkt_type); - break; - } - - hvnd_cookie = (struct hvnd_cookie *)requestid; - memcpy(hvnd_cookie->pkt, incoming_pkt_start, copy_sz); - complete(&hvnd_cookie->host_event); - -complete: - /* send out ioctl completion patcket */ - if(desc->flags & VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED) { - int retry = 5; - while (true) { - int ret; - ret = vmbus_sendpacket(dev->channel, NULL, 0, requestid, VM_PKT_COMP, 0); - if(ret == 0) { - break; - } else if (ret == -EAGAIN) { - if(--retry == 0) { - hvnd_error("give up retrying send completion packet\n"); - break; - } - hvnd_warn("retrying send completion packet\n"); - udelay(100); - } else { - hvnd_error("unable to send completion packet ret=%d\n", ret); - break; - } - } - } - -} reverted: --- linux-raspi2-4.4.0/drivers/infiniband/hw/vmbus-rdma/vmbus_rdma.h +++ linux-raspi2-4.4.0.orig/drivers/infiniband/hw/vmbus-rdma/vmbus_rdma.h @@ -1,2202 +0,0 @@ -/* - * Copyright (c) 2014, Microsoft Corporation. - * - * Author: - * K. Y. Srinivasan - * - * This program is free software; you can redistribute it and/or modify it - * under the terms of the GNU General Public License version 2 as published - * by the Free Software Foundation. - * - * This program is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or - * NON INFRINGEMENT. See the GNU General Public License for more - * details. - * - * Bug fixes/enhancements: Long Li - */ - - -#ifndef _VMBUS_RDMA_H -#define _VMBUS_RDMA_H - - -#include -#include -#include -#include -#include - -/* NetworkDirect version Numbers. - */ -#define ND_VERSION_1 0x1 -#define ND_VERSION_2 0x20000 - -#ifndef NDVER -#define NDVER ND_VERSION_2 -#endif - -#define ND_ADAPTER_FLAG_IN_ORDER_DMA_SUPPORTED 0x00000001 -#define ND_ADAPTER_FLAG_CQ_INTERRUPT_MODERATION_SUPPORTED 0x00000004 -#define ND_ADAPTER_FLAG_MULTI_ENGINE_SUPPORTED 0x00000008 -#define ND_ADAPTER_FLAG_CQ_RESIZE_SUPPORTED 0x00000100 -#define ND_ADAPTER_FLAG_LOOPBACK_CONNECTIONS_SUPPORTED 0x00010000 - -#define ND_CQ_NOTIFY_ERRORS 0 -#define ND_CQ_NOTIFY_ANY 1 -#define ND_CQ_NOTIFY_SOLICITED 2 - -#define ND_MR_FLAG_ALLOW_LOCAL_WRITE 0x00000001 -#define ND_MR_FLAG_ALLOW_REMOTE_READ 0x00000002 -#define ND_MR_FLAG_ALLOW_REMOTE_WRITE 0x00000005 -#define ND_MR_FLAG_RDMA_READ_SINK 0x00000008 -#define ND_MR_FLAG_DO_NOT_SECURE_VM 0x80000000 - -#define ND_OP_FLAG_SILENT_SUCCESS 0x00000001 -#define ND_OP_FLAG_READ_FENCE 0x00000002 -#define ND_OP_FLAG_SEND_AND_SOLICIT_EVENT 0x00000004 -#define ND_OP_FLAG_ALLOW_READ 0x00000008 -#define ND_OP_FLAG_ALLOW_WRITE 0x00000010 - -#if NDVER >= ND_VERSION_2 -#define ND_OP_FLAG_INLINE 0x00000020 -#endif - -#define ND_AF_INET6 23 -#define IF_MAX_ADDR_LENGTH 32 - -struct group_affinity { - u64 mask; //KYS: usually 0 - u16 group; // KYS usually -1 - u16 reserved[3]; -}; - -struct if_physical_addr { - u16 length; - u8 addr[IF_MAX_ADDR_LENGTH]; -}; - -struct adapter_info_v2 { - u32 info_version; - u16 vendor_id; - u16 device_id; - u64 adapter_id; - size_t max_registration_size; - size_t max_window_size; - u32 max_initiator_sge; - u32 max_recv_sge; - u32 max_read_sge; - u32 max_transfer_length; - u32 max_inline_data_size; - u32 max_inbound_read_limit; - u32 max_outbound_read_limit; - u32 max_recv_q_depth; - u32 max_initiator_q_depth; - u32 max_shared_recv_q_depth; - u32 max_completion_q_depth; - u32 inline_request_threshold; - u32 large_request_threshold; - u32 max_caller_data; - u32 max_callee_data; - u32 adapter_flags; -} __packed; - -struct nd2_adapter_info_32 { //KYS: Check what this is - u32 info_version; - u16 vendor_id; - u16 devic_id; - u64 adapter_id; - u32 max_registration_size; - u32 max_window_size; - u32 max_initiator_sge; - u32 max_recv_sge; - u32 max_read_sge; - u32 max_transfer_length; - u32 max_inline_data_size; - u32 max_inbound_read_limit; - u32 max_outbound_read_limit; - u32 max_recv_q_depth; - u32 max_initiator_q_depth; - u32 max_shared_recv_q_depth; - u32 max_completion_q_depth; - u32 inline_request_threshold; - u32 large_request_threshold; - u32 max_caller_data; - u32 max_callee_data; - u32 adapter_flags; -} __packed; - -enum nd2_request_type { - ND2_RT_RECEIVE, - ND2_RT_SEND, - ND2_RT_BIND, - ND2_RT_INVALIDATE, - ND2_RT_READ, - ND2_RT_WRITE -}; - -struct nd2_result { - u32 status; - u32 bytes_transferred; - void *qp_ctx; - void *request_ctx; - enum nd2_request_type request_type; -} __packed; - -struct nd2_sge { - void *buffer; - u32 buffer_length; - u32 mr_token; -} __packed; - -/* - * The communication with the host via ioctls using VMBUS - * as the transport. - */ - -#define ND_IOCTL_VERSION 1 - -enum nd_mapping_type { - ND_MAP_IOSPACE, - ND_MAP_MEMORY, - ND_MAP_MEMORY_COALLESCE, - ND_MAP_PAGES, - ND_MAP_PAGES_COALLESCE, - ND_UNMAP_IOSPACE, - ND_UNMAP_MEMORY, - ND_MAX_MAP_TYPE -}; - -enum nd_caching_type { - ND_NON_CACHED = 0, - ND_CACHED, - ND_WRITE_COMBINED, - ND_MAX_CACHE_TYPE -}; - -enum nd_aceess_type { - ND_READ_ACCESS = 0, - ND_WRITE_ACCESS, - ND_MODIFY_ACCESS -}; - -struct nd_map_io_space { - enum nd_mapping_type map_type; - enum nd_caching_type cache_type; - u32 cb_length; -}; - -struct nd_map_memory { - enum nd_mapping_type map_type; - enum nd_aceess_type access_type; - u64 address; - u32 cb_length; -}; - -struct nd_mapping_id { - enum nd_mapping_type map_type; - u64 id; -}; - -struct ndk_map_pages { - struct nd_map_memory header; - u32 page_offset; -}; - -union nd_mapping { - enum nd_mapping_type map_type; - struct nd_map_io_space map_io_space; - struct nd_map_memory map_memory; - struct nd_mapping_id mapping_id; - struct ndk_map_pages map_pages; -}; - -struct nd_mapping_result { - u64 id; - u64 info; -}; - -struct nd_resource_descriptor { - u64 handle; - u32 ce_mapping_results; - u32 cb_mapping_results_offset; -}; - -struct nd_handle { - u32 version; - u32 reserved; - u64 handle; -}; - -union nd_sockaddr_inet { - struct sockaddr_in ipv4; - struct sockaddr_in6 ipv6; - u16 address_family; //KYS how is this supposed to work? -}; - -struct nd_address_element { - union nd_sockaddr_inet addr; - char mac_addr[ETH_ALEN]; -}; - -struct nd_resolve_address { - u32 version; - u32 reserved; - union nd_sockaddr_inet address; -}; - -struct nd_open_adapter { - u32 version; - u32 reserved; - u32 ce_mapping_cnt; - u32 cb_mapping_offset; - u64 adapter_id; -}; - -struct nd_adapter_query { - u32 version; - u32 info_version; - u64 adapter_handle; -}; - -struct nd_create_cq { - u32 version; - u32 queue_depth; - u32 ce_mapping_cnt; - u32 cb_mapping_offset; - u64 adapter_handle; - struct group_affinity affinity; -}; - -struct nd_create_srq { - u32 version; - u32 queue_depth; - u32 ce_mapping_cnt; - u32 cb_mapping_offset; - u32 max_request_sge; - u32 notify_threshold; - u64 pd_handle; - struct group_affinity affinity; -}; - -struct nd_create_qp_hdr { - u32 version; - u32 cb_max_inline_data; - u32 ce_mapping_cnt; - u32 cb_mapping_offset; //KYS: what is this prefix - ce/cb - u32 initiator_queue_depth; - u32 max_initiator_request_sge; - u64 receive_cq_handle; - u64 initiator_cq_handle; - u64 pd_handle; -}; - -struct nd_create_qp { - struct nd_create_qp_hdr hdr; - u32 receive_queue_depth; - u32 max_receive_request_sge; -}; - -struct nd_create_qp_with_srq { - struct nd_create_qp_hdr header; - u64 srq_handle; -}; - -struct nd_srq_modify { - u32 version; - u32 queue_depth; - u32 ce_mapping_cnt; - u32 cb_mapping_offset; - u32 notify_threshold; - u32 reserved; - u64 srq_handle; -}; - -struct nd_cq_modify { - u32 version; - u32 queue_depth; - u32 ce_mapping_count; - u32 cb_mappings_offset; - u64 cq_handle; -}; - -struct nd_cq_notify { - u32 version; - u32 type; - u64 cq_handle; -}; - -struct nd_mr_register_hdr { - u32 version; - u32 flags; - u64 cb_length; - u64 target_addr; - u64 mr_handle; -}; - -struct nd_mr_register { - struct nd_mr_register_hdr header; - u64 address; -}; - -struct nd_bind { - u32 version; - u32 reserved; - u64 handle; - union nd_sockaddr_inet address; -}; - -struct nd_read_limits { - u32 inbound; - u32 outbound; -}; - -struct nd_connect { - u32 version; - u32 reserved; - struct nd_read_limits read_limits; - u32 cb_private_data_length; - u32 cb_private_data_offset; - u64 connector_handle; - u64 qp_handle; - union nd_sockaddr_inet destination_address; - struct if_physical_addr phys_addr; -}; - -struct nd_accept { - u32 version; - u32 reserved; - struct nd_read_limits read_limits; - u32 cb_private_data_length; - u32 cb_private_data_offset; - u64 connector_handle; - u64 qp_handle; -}; - -struct nd_reject { - u32 version; - u32 reserved; - u32 cb_private_data_length; - u32 cb_private_data_offset; - u64 connector_handle; -}; - -struct nd_listen { - u32 version; - u32 back_log; - u64 listener_handle; -}; - -struct nd_get_connection_request { - u32 version; - u32 reserved; - u64 listener_handle; - u64 connector_handle; -}; - -enum ndv_mmio_type { - ND_PARTITION_KERNEL_VIRTUAL, - ND_PARTITION_SYSTEM_PHYSICAL, - ND_PARTITION_GUEST_PHYSICAL, - ND_MAXIMUM_MMIO_TYPE -}; - -struct ndv_resolve_adapter_id { - u32 version; - struct if_physical_addr phys_addr; -}; - -struct ndv_partition_create { - u32 version; - enum ndv_mmio_type mmio_type; - u64 adapter_id; - u64 xmit_cap; -}; - -struct ndv_partition_bind_luid { - u32 version; - u32 reserved; - u64 partition_handle; - struct if_physical_addr phys_addr; - //IF_LUID luid; //KYS? -}; - -struct ndv_partition_bind_address { - u32 version; - u32 reserved; - u64 partition_handle; - union nd_sockaddr_inet address; - struct if_physical_addr guest_phys_addr; - struct if_physical_addr phys_addr; -}; - -struct ndk_mr_register { - struct nd_mr_register_hdr hdr; - u32 cb_logical_page_addresses_offset; -}; - -struct ndk_bind { - struct nd_bind hdr; - u64 authentication_id; - bool is_admin; -}; - -#define FDN 0x12 -#define METHOD_BUFFERED 0x0 -#define FAA 0x0 - -#define CTL_CODE( DeviceType, Function, Method, Access ) ( \ - ((DeviceType) << 16) | ((Access) << 14) | ((Function) << 2) | (Method) \ -) - -#define ND_FUNCTION(r_, i_) ((r_) << 6 | (i_)) -#define IOCTL_ND(r_, i_) \ - CTL_CODE( FDN, ND_FUNCTION((r_), (i_)), METHOD_BUFFERED, FAA ) - -#define ND_FUNCTION_FROM_CTL_CODE(ctrlCode_) ((ctrlCode_ >> 2) & 0xFFF) -#define ND_RESOURCE_FROM_CTL_CODE(ctrlCode_) (ND_FUNCTION_FROM_CTL_CODE(ctrlCode_) >> 6) -#define ND_OPERATION_FROM_CTRL_CODE(ctrlCode_) (ND_FUNCTION_FROM_CTL_CODE(ctrlCode_) & 0x3F) - -#define ND_DOS_DEVICE_NAME L"\\DosDevices\\Global\\NetworkDirect" -#define ND_WIN32_DEVICE_NAME L"\\\\.\\NetworkDirect" - -enum nd_resource_type { - ND_PROVIDER = 0, - ND_ADAPTER, - ND_PD, - ND_CQ, - ND_MR, - ND_MW, - ND_SRQ, - ND_CONNECTOR, - ND_LISTENER, - ND_QP, - ND_VIRTUAL_PARTITION, - ND_RESOURCE_TYPE_COUNT -}; - -#define ND_OPERATION_COUNT 14 - -#define IOCTL_ND_PROVIDER(i_) IOCTL_ND(ND_PROVIDER, i_) -#define IOCTL_ND_ADAPTER(i_) IOCTL_ND(ND_ADAPTER, i_) -#define IOCTL_ND_PD(i_) IOCTL_ND(ND_PD, i_) -#define IOCTL_ND_CQ(i_) IOCTL_ND(ND_CQ, i_) -#define IOCTL_ND_MR(i_) IOCTL_ND(ND_MR, i_) -#define IOCTL_ND_MW(i_) IOCTL_ND(ND_MW, i_) -#define IOCTL_ND_SRQ(i_) IOCTL_ND(ND_SRQ, i_) -#define IOCTL_ND_CONNECTOR(i_) IOCTL_ND(ND_CONNECTOR, i_) -#define IOCTL_ND_LISTENER(i_) IOCTL_ND(ND_LISTENER, i_) -#define IOCTL_ND_QP(i_) IOCTL_ND(ND_QP, i_) -#define IOCTL_ND_VIRTUAL_PARTITION(i_) IOCTL_ND(ND_VIRTUAL_PARTITION, i_) - -/* Provider IOCTLs */ -#define IOCTL_ND_PROVIDER_INIT IOCTL_ND_PROVIDER( 0 ) -#define IOCTL_ND_PROVIDER_BIND_FILE IOCTL_ND_PROVIDER( 1 ) -#define IOCTL_ND_PROVIDER_QUERY_ADDRESS_LIST IOCTL_ND_PROVIDER( 2 ) -#define IOCTL_ND_PROVIDER_RESOLVE_ADDRESS IOCTL_ND_PROVIDER( 3 ) -#define IOCTL_ND_PROVIDER_MAX_OPERATION 4 - -/* Adapter IOCTLs */ -#define IOCTL_ND_ADAPTER_OPEN IOCTL_ND_ADAPTER( 0 ) -#define IOCTL_ND_ADAPTER_CLOSE IOCTL_ND_ADAPTER( 1 ) -#define IOCTL_ND_ADAPTER_QUERY IOCTL_ND_ADAPTER( 2 ) -#define IOCTL_ND_ADAPTER_QUERY_ADDRESS_LIST IOCTL_ND_ADAPTER( 3 ) -#define IOCTL_ND_ADAPTER_MAX_OPERATION 4 - -/* Protection Domain IOCTLs */ -#define IOCTL_ND_PD_CREATE IOCTL_ND_PD( 0 ) -#define IOCTL_ND_PD_FREE IOCTL_ND_PD( 1 ) -#define IOCTL_ND_PD_MAX_OPERATION 2 - -/* Completion Queue IOCTLs */ -#define IOCTL_ND_CQ_CREATE IOCTL_ND_CQ( 0 ) -#define IOCTL_ND_CQ_FREE IOCTL_ND_CQ( 1 ) -#define IOCTL_ND_CQ_CANCEL_IO IOCTL_ND_CQ( 2 ) -#define IOCTL_ND_CQ_GET_AFFINITY IOCTL_ND_CQ( 3 ) -#define IOCTL_ND_CQ_MODIFY IOCTL_ND_CQ( 4 ) -#define IOCTL_ND_CQ_NOTIFY IOCTL_ND_CQ( 5 ) -#define IOCTL_ND_CQ_MAX_OPERATION 6 - -/* Memory Region IOCTLs */ -#define IOCTL_ND_MR_CREATE IOCTL_ND_MR( 0 ) -#define IOCTL_ND_MR_FREE IOCTL_ND_MR( 1 ) -#define IOCTL_ND_MR_CANCEL_IO IOCTL_ND_MR( 2 ) -#define IOCTL_ND_MR_REGISTER IOCTL_ND_MR( 3 ) -#define IOCTL_ND_MR_DEREGISTER IOCTL_ND_MR( 4 ) -#define IOCTL_NDK_MR_REGISTER IOCTL_ND_MR( 5 ) -#define IOCTL_ND_MR_MAX_OPERATION 6 - -/* Memory Window IOCTLs */ -#define IOCTL_ND_MW_CREATE IOCTL_ND_MW( 0 ) -#define IOCTL_ND_MW_FREE IOCTL_ND_MW( 1 ) -#define IOCTL_ND_MW_MAX_OPERATION 2 - -/* Shared Receive Queue IOCTLs */ -#define IOCTL_ND_SRQ_CREATE IOCTL_ND_SRQ( 0 ) -#define IOCTL_ND_SRQ_FREE IOCTL_ND_SRQ( 1 ) -#define IOCTL_ND_SRQ_CANCEL_IO IOCTL_ND_SRQ( 2 ) -#define IOCTL_ND_SRQ_GET_AFFINITY IOCTL_ND_SRQ( 3 ) -#define IOCTL_ND_SRQ_MODIFY IOCTL_ND_SRQ( 4 ) -#define IOCTL_ND_SRQ_NOTIFY IOCTL_ND_SRQ( 5 ) -#define IOCTL_ND_SRQ_MAX_OPERATION 6 - -/* Connector IOCTLs */ -#define IOCTL_ND_CONNECTOR_CREATE IOCTL_ND_CONNECTOR( 0 ) -#define IOCTL_ND_CONNECTOR_FREE IOCTL_ND_CONNECTOR( 1 ) -#define IOCTL_ND_CONNECTOR_CANCEL_IO IOCTL_ND_CONNECTOR( 2 ) -#define IOCTL_ND_CONNECTOR_BIND IOCTL_ND_CONNECTOR( 3 ) -#define IOCTL_ND_CONNECTOR_CONNECT IOCTL_ND_CONNECTOR( 4 ) -#define IOCTL_ND_CONNECTOR_COMPLETE_CONNECT IOCTL_ND_CONNECTOR( 5 ) -#define IOCTL_ND_CONNECTOR_ACCEPT IOCTL_ND_CONNECTOR( 6 ) -#define IOCTL_ND_CONNECTOR_REJECT IOCTL_ND_CONNECTOR( 7 ) -#define IOCTL_ND_CONNECTOR_GET_READ_LIMITS IOCTL_ND_CONNECTOR( 8 ) -#define IOCTL_ND_CONNECTOR_GET_PRIVATE_DATA IOCTL_ND_CONNECTOR( 9 ) -#define IOCTL_ND_CONNECTOR_GET_PEER_ADDRESS IOCTL_ND_CONNECTOR( 10 ) -#define IOCTL_ND_CONNECTOR_GET_ADDRESS IOCTL_ND_CONNECTOR( 11 ) -#define IOCTL_ND_CONNECTOR_NOTIFY_DISCONNECT IOCTL_ND_CONNECTOR( 12 ) -#define IOCTL_ND_CONNECTOR_DISCONNECT IOCTL_ND_CONNECTOR( 13 ) -#define IOCTL_ND_CONNECTOR_MAX_OPERATION 14 - -/* Listener IOCTLs */ -#define IOCTL_ND_LISTENER_CREATE IOCTL_ND_LISTENER( 0 ) -#define IOCTL_ND_LISTENER_FREE IOCTL_ND_LISTENER( 1 ) -#define IOCTL_ND_LISTENER_CANCEL_IO IOCTL_ND_LISTENER( 2 ) -#define IOCTL_ND_LISTENER_BIND IOCTL_ND_LISTENER( 3 ) -#define IOCTL_ND_LISTENER_LISTEN IOCTL_ND_LISTENER( 4 ) -#define IOCTL_ND_LISTENER_GET_ADDRESS IOCTL_ND_LISTENER( 5 ) -#define IOCTL_ND_LISTENER_GET_CONNECTION_REQUEST IOCTL_ND_LISTENER( 6 ) -#define IOCTL_ND_LISTENER_MAX_OPERATION 7 - -/* Queue Pair IOCTLs */ -#define IOCTL_ND_QP_CREATE IOCTL_ND_QP( 0 ) -#define IOCTL_ND_QP_CREATE_WITH_SRQ IOCTL_ND_QP( 1 ) -#define IOCTL_ND_QP_FREE IOCTL_ND_QP( 2 ) -#define IOCTL_ND_QP_FLUSH IOCTL_ND_QP( 3 ) -#define IOCTL_ND_QP_MAX_OPERATION 4 - -/* Kernel-mode only IOCTLs (IRP_MJ_INTERNAL_DEVICE_CONTROL) */ -#define IOCTL_NDV_PARTITION_RESOLVE_ADAPTER_ID IOCTL_ND_VIRTUAL_PARTITION( 0 ) -#define IOCTL_NDV_PARTITION_CREATE IOCTL_ND_VIRTUAL_PARTITION( 1 ) -#define IOCTL_NDV_PARTITION_FREE IOCTL_ND_VIRTUAL_PARTITION( 2 ) -#define IOCTL_NDV_PARTITION_BIND IOCTL_ND_VIRTUAL_PARTITION( 3 ) -#define IOCTL_NDV_PARTITION_UNBIND IOCTL_ND_VIRTUAL_PARTITION( 4 ) -#define IOCTL_NDV_PARTITION_BIND_LUID IOCTL_ND_VIRTUAL_PARTITION( 5 ) -#define IOCTL_NDV_PARTITION_MAX_OPERATION 6 - - -#define MB_SHIFT 20 - - -/* Ringbuffer size for the channel */ -#define NDV_NUM_PAGES_IN_RING_BUFFER 64 - -#define NDV_MAX_PACKETS_PER_RECEIVE 8 - -#define NDV_MAX_PACKET_COUNT 16304 - -#define NDV_MAX_NUM_OUTSTANDING_RECEIVED_PACKETS (16304) -#define NDV_MAX_HANDLE_TABLE_SIZE (16304) -#define NDV_HOST_MAX_HANDLE_TABLE_SIZE (NDV_MAX_HANDLE_TABLE_SIZE * 16) - - -#define NDV_MAX_MAPPINGS 4 - -#define NDV_STATE_NONE 0x00000000 -#define NDV_STATE_CREATED 0x00000001 -#define NDV_STATE_CONNECTING 0x00000002 -#define NDV_STATE_INITIALIZING 0x00000003 -#define NDV_STATE_OPERATIONAL 0xEFFFFFFF -#define NDV_STATE_FAILED 0xFFFFFFFF - - -#define NDV_MAX_PRIVATE_DATA_SIZE 64 -#define NDV_MAX_IOCTL_SIZE 256 - -/* max size of buffer for vector of ND_MAPPING */ -#define NDV_MAX_MAPPING_BUFFER_SIZE \ - (NDV_MAX_MAPPINGS * sizeof(union nd_mapping)) - -/* max expected ioctl buffer size from users */ -#define NDV_MAX_IOCTL_BUFFER_SIZE \ - (NDV_MAX_IOCTL_SIZE + \ - NDV_MAX_MAPPING_BUFFER_SIZE + \ - NDV_MAX_PRIVATE_DATA_SIZE) - -/* max PFN array for inline buffers */ -#define NDV_MAX_INLINE_PFN_ARRAY_LENGTH 32 - -/* Field header size for inline buffer */ -#define NDV_MAX_MAPPING_PACKET_FILED_BUFFER_SIZE \ - (NDV_MAX_MAPPINGS * sizeof(NDV_PACKET_FIELD)) - -/* Max for a single field */ - -#define NDV_MAX_SINGLE_MAPPING_FIELD ( sizeof(GPA_RANGE) + \ - (sizeof(PFN_NUMBER) * NDV_MAX_INLINE_PFN_ARRAY_LENGTH)) - -/* Max for all inine data */ - -#define NDV_MAX_MAPPING_DATA_SIZE (NDV_MAX_MAPPING_PACKET_FILED_BUFFER_SIZE + \ - (NDV_MAX_MAPPINGS * NDV_MAX_SINGLE_MAPPING_FIELD)) - - -#define NDV_MAX_PACKET_HEADER_SIZE 256 - -#define NDV_MAX_PACKET_SIZE (NDV_MAX_PACKET_HEADER_SIZE + \ - NDV_MAX_IOCTL_BUFFER_SIZE + \ - NDV_MAX_MAPPING_DATA_SIZE) - -/* Well known message type INIT is defined for the channel - * not for the protocol. - */ - -#define NDV_PACKET_TYPE_INIT 0xFFFFFFFF - -/* Invalid protocol version to to identify uninitialized channels */ - -#define NDV_PROTOCOL_VERSION_INVALID 0xFFFFFFFF - -/* Flags that control the bahavior of packet handling */ - -enum ndv_packet_options { - NDV_PACKET_OPTION_NONE = 0x00, - - /* Indicates that the ExternalDataMdl parameter is expectected to be - * passed and must be handled in the reciever. This call must be - * handled specially to ensure that the MDL can be created correctly. - */ - NDV_PACKET_OPTION_EXTERNAL_DATA = 0x01, - - /* Inicates that the reciever must execution the handler at passive. */ - NDV_PACKET_OPTIONS_REQUIRES_PASSIVE = 0x02, - - /* Indicates that the sender does not expect and is not waiting for a - * response packet. - */ - NDV_PACKET_OPTIONS_POST = 0x04, -}; - -#define NDV_PACKET_TYPE(id_, opt_) \ - (((opt_)<<24) | (id_)) - -#define NDV_PACKET_TYPE_OPTIONS(type_) \ - (((type_) >> 24) & 0xFF) - -#define NDV_PACKET_TYPE_ID(type_) \ - ((type_) & 0xFFFFFF) \ - -#define NDV_ADD_PACKET_OPTION(type_, opt_) \ - (type_) |= (opt_<<24) - -/* The header value sent on all packets */ -union ndv_packet_hdr { - - struct { - /* The type of packet. - * This value should be created with the NDV_PACKET_TYPE macro - * to include all packet options within the packet type. - */ - u32 packet_type; - /* The size of the entire fixed message structure that exists - * before the data. This must be >= sizeof(NDV_PACKET_HEADER) - */ - u32 hdr_sz; - /* This size of the data that follows the message - * data_sz + hdr_sz size gives the total size of - * the buffer that is used. - */ - u32 data_sz; - /* The status code used to indicate success or failure. - * It is only used in completions and during responses. - */ - u32 status; //KYS: NTSTATUS? - }; - - u64 padding[2]; //KYS: why? -}; - - -/* The core INIT packet. This message is defined in the channel - * not in the protocol. This message should never change size - * or behavior, as it could impact compatibility in the future. - * This packet is used to negotiate the protocol version, so chaning - * this size could break backward compat. - */ - -union ndv_packet_init { - struct { - u32 packet_type; - u32 protocol_version; - u32 flags; - }; - u64 padding[2]; -} __packed; - -#define NDV_PACKET_INIT_SIZE 16 - -/* Data packing flags used for accessing the dynamic fields inside a packet */ -#define NDV_DATA_PACKING_2 0x1 -#define NDV_DATA_PACKING_4 0x3 -#define NDV_DATA_PACKING_8 0x7 - - -#define NDV_PROTOCOL_VERSION_1 0x0100 -#define NDV_PROTOCOL_VERSION_CURRENT NDV_PROTOCOL_VERSION_1 -#define NDV_PROTOCOL_VERSION_COUNT 1 - -struct ndv_pkt_field { - u32 size; - u32 offset; -}; - -enum ndv_pkt_id { - NDV_PKT_UNKNOWN = 0, - /* Version 1 Message ID's */ - NDV_PKT_ID1_BIND, - NDV_PKT_ID1_CREATE, - NDV_PKT_ID1_CLEANUP, - NDV_PKT_ID1_CANCEL, - NDV_PKT_ID1_CONTROL, - NDV_PKT_ID1_COMPLETE, - NDV_PKT_ID1_INIT_RESOURCES, -}; - -/* The guest will send this as the first messages just after init - * The resources are reserved per channel. - */ - -struct ndv_pkt_hdr_init_resources_1 { - - union ndv_packet_hdr pkt_hdr; - u16 io_space_sz_mb; - u64 io_space_start; - -}; - - - -/* The guest will send this packet to the host after channel init - * to query support for the adapters that are registered. - */ - -struct ndv_pkt_hdr_bind_1 { - union ndv_packet_hdr pkt_hdr; - bool unbind; - union nd_sockaddr_inet ip_address; - struct if_physical_addr phys_addr; - u64 guest_id; -}; - -union ndv_context_handle { - u64 val64; - struct { - u32 local; - u32 remote; - }; -}; - -struct ndv_pkt_hdr_create_1 { - union ndv_packet_hdr pkt_hdr; - - /* Identifies the object used to track this file handle on both - * the guest and the host. When sent from the guest, it will contain - * the guest handle. On success, the host will populate and return - * it's handle value as well. - */ - - union ndv_context_handle handle; - - /* The parameters sent to the CreateFile call */ - u32 access_mask; - u32 open_options; - - u16 file_attributes; //KYS: This field must be 64 bit aligned - - u16 share_access; //KYS - - u32 kys_padding; //KYS - - u16 ea_length; //KYS; needs to be 64 bit aligned; what is ea length - unused -}; - - -struct ndv_pkt_hdr_cleanup_1 { - union ndv_packet_hdr pkt_hdr; - - /* Identifies the object used to track this file handle on both - * the guest and the host. When sent from the guest, it will contain - * the both the guest and host handle values. The host will use this - * value to cleanup its resource, then update its portion of the handle - * to NDV_HANDLE_NULL before returning the data back to the guest. - */ - union ndv_context_handle handle; -}; - -struct ndv_pkt_hdr_cancel_1 { - union ndv_packet_hdr pkt_hdr; - union ndv_context_handle file_handle; - union ndv_context_handle irp_handle; -}; - -struct ndv_bind_port_info { - //LUID authentication_id; //KYS: LUID? - bool is_admin; -}; - -struct ndv_extended_data_flds { - union { - u32 field_count; - u64 padding; - }; - - //struct ndv_pkt_field fields[ANYSIZE_ARRAY]; //KYS? -}; - - -struct ndv_packet_hdr_control_1 { - union ndv_packet_hdr pkt_hdr; - /* Identifies the object used to track this file handle on both - * the guest and the host. This should always have both guest - * and host handle values inside it. - */ - - union ndv_context_handle file_handle; - - /* The handle information for the allocated irp context object. - * This information is used when the host/guest starts the cancelation - */ - union ndv_context_handle irp_handle; - - /* The input data describing in the IO control parameters */ - - u32 io_cntrl_code; - u32 output_buf_sz; - u32 input_buf_sz; - u32 input_output_buf_offset; - - /* These are used in the return message to indicate the status of the IO - * operation and the amount of data written to the output buffer. - */ - u32 io_status; //KYS: NTSTATUS? - u32 bytes_returned; - - /* This contains the field information for additional data that is sent - * with the packet that is IOCTL specific. - */ - - struct ndv_pkt_field extended_data; -}; - -/* - * Include MLX specific defines. - */ - -#include "mx_abi.h" - -/* Driver specific state. - */ - -/* - * We need to have host open a file; some - * Windows constants for open. - */ -#define STANDARD_RIGHTS_ALL (0x001F0000L) -#define FILE_ATTRIBUTE_NORMAL (0x80) -#define FILE_SHARE_READ (0x00000001) -#define FILE_SHARE_WRITE (0x00000002) -#define FILE_SHARE_DELETE (0x00000004) -#define FILE_FLAG_OVERLAPPED (0x40000000) -#define FILE_SHARE_ALL (FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE) -#define CREATE_ALWAYS (2) -#define OPEN_EXISTING (3) - -#define RTL_NUMBER_OF(_x) \ - sizeof(_x)/sizeof(_x[0]) -/* - * The context structure tracks the open state. - */ - -/* - * Packet layout for open adaptor. - */ - -/* - * Packet for querying the address list. - */ - -union query_addr_list_ioctl { - struct nd_handle in; - union nd_sockaddr_inet out[16]; //KYS a max of 16 addresses -}; - -struct pkt_query_addr_list { - struct ndv_packet_hdr_control_1 hdr; - union query_addr_list_ioctl ioctl; - unsigned long activity_id; -}; - - -struct pkt_fld { - u32 size; - u32 offset; -}; - -struct fld_data { - union { - u64 padding; - }; -}; - -struct extended_data_oad { - union { - u32 cnt; - u64 padding; - }; - /* offsets are from start of extended data struct - * and should start on 8 byte boundary - */ - struct pkt_fld fields[IBV_GET_CONTEXT_MAPPING_MAX]; -}; - -union oad_ioctl { - struct nd_open_adapter input; - struct nd_resource_descriptor resrc_desc; -}; - -union oad_mappings { - struct ibv_get_context_req ctx_input; - struct ibv_get_context_resp ctx_output; -}; - -struct pkt_nd_open_adapter { - struct ndv_packet_hdr_control_1 hdr; - - union oad_ioctl ioctl; - union oad_mappings mappings; - - /* - * Extended data. - */ - struct extended_data_oad ext_data; -}; - -/* - * Create CQ IOCTL. - */ - -struct cq_db_gpa { - u32 byte_count; - u32 byte_offset; - u64 pfn_array[2]; -}; - -struct cq_sn_gpa { - u32 byte_count; - u32 byte_offset; - u64 pfn_array[2]; -}; - -struct create_cq_ext_data { - union { - u32 cnt; - u64 padding; - }; - /* offsets are from start of extended data struct - * and should start on 8 byte boundary - */ - struct pkt_fld fields[MLX4_IB_CREATE_CQ_MAPPING_MAX]; - struct cq_db_gpa db_gpa; - struct cq_sn_gpa sn_gpa; - struct gpa_range cqbuf_gpa; -}; - -union create_cq_ioctl { - struct nd_create_cq input; - struct nd_resource_descriptor resrc_desc; -}; - -union create_cq_mappings { - struct ibv_create_cq cq_in; - struct ibv_create_cq_resp cq_resp; -}; - -struct pkt_nd_create_cq { - struct ndv_packet_hdr_control_1 hdr; - - union create_cq_ioctl ioctl; - union create_cq_mappings mappings; - - /* - * Extended data. - */ - struct create_cq_ext_data ext_data; -}; - -/* - * IOCTL to free CQ. - */ -struct free_cq_ioctl { - struct nd_handle in; -}; - -struct pkt_nd_free_cq { - struct ndv_packet_hdr_control_1 hdr; - - struct free_cq_ioctl ioctl; -}; - - -/* - * IOCTL to QUERY CQ - CQ NOTIFY - */ - -struct notify_cq_ioctl { - struct nd_cq_notify in; -}; - -struct pkt_nd_notify_cq { - struct ndv_packet_hdr_control_1 hdr; - struct notify_cq_ioctl ioctl; -}; - -/* - * IOCTL to Create a listner - */ - -struct nd_ep_create { - struct nd_handle hdr; - bool to_semantics; - unsigned long activity_id; -}; - -union listener_cr_ioctl { - struct nd_ep_create in; - u64 out; -}; - -struct pkt_nd_cr_listener { - struct ndv_packet_hdr_control_1 hdr; - union listener_cr_ioctl ioctl; -}; - -/* - * IOCTL to free listener. - */ - -struct listener_free_ioctl { - struct nd_handle in; -}; - -struct pkt_nd_free_listener { - struct ndv_packet_hdr_control_1 hdr; - struct listener_free_ioctl ioctl; -}; - -/* - * IOCTL for listener cancel IO. - */ -struct listener_cancelio_ioctl { - struct nd_handle in; -}; - -struct pkt_nd_cancelio_listener { - struct ndv_packet_hdr_control_1 hdr; - struct listener_cancelio_ioctl ioctl; -}; - -/* - * IOCTL for LISTENER BIND - */ - -union listener_bind_ioctl { - struct ndk_bind in; -}; - -struct pkt_nd_bind_listener { - struct ndv_packet_hdr_control_1 hdr; - union listener_bind_ioctl ioctl; -}; - -/* - * After the listener is bound, enable - * listening. - */ - -union listener_listen_ioctl { - struct nd_listen in; -}; - -struct pkt_nd_listen_listener { - struct ndv_packet_hdr_control_1 hdr; - union listener_listen_ioctl ioctl; -}; - -/* - * IOCTL for getting the adddress from listener. - * - */ - -union listener_get_addr_ioctl { - struct nd_handle in; - union nd_sockaddr_inet out; -}; - -struct pkt_nd_get_addr_listener { - struct ndv_packet_hdr_control_1 hdr; - union listener_get_addr_ioctl ioctl; -}; - -/* - * IOCTL to get a connection from a listener. - */ - -union listener_get_connection_ioctl { - struct nd_get_connection_request in; - union nd_sockaddr_inet out; -}; - -struct pkt_nd_get_connection_listener { - struct ndv_packet_hdr_control_1 hdr; - union listener_get_connection_ioctl ioctl; -}; - - -/* - * Connector IOCTLs - */ - -/* - * IOCTL to create connector. - */ - -union connector_cr_ioctl { //KYS should this be a union or struct? - struct nd_ep_create in; - u64 out; -}; - -struct pkt_nd_cr_connector { - struct ndv_packet_hdr_control_1 hdr; - union connector_cr_ioctl ioctl; //KYS: union or struct -}; - -/* - * IOCTL to free connector. - */ - -struct connector_free_ioctl { - struct nd_handle in; -}; - -struct pkt_nd_free_connector { - struct ndv_packet_hdr_control_1 hdr; - struct connector_free_ioctl ioctl; -}; - -/* - * IOCTL to cancel I/O on a connector. - */ - -struct connector_cancelio_ioctl { - struct nd_handle in; -}; - -struct pkt_nd_cancelio_connector { - struct ndv_packet_hdr_control_1 hdr; - struct connector_cancelio_ioctl ioctl; -}; - -/* - * IOCTL to Bind an address to the connector. - */ - -union connector_bind_ioctl { - struct ndk_bind in; -}; - -struct pkt_nd_bind_connector { - struct ndv_packet_hdr_control_1 hdr; - union connector_bind_ioctl ioctl; -}; - -/* - * IOCTL to connect a connector. - */ - -struct connector_connect_in { - struct nd_connect hdr; - u8 retry_cnt; - u8 rnr_retry_cnt; - u8 priv_data[56]; - unsigned long activity_id; -}; - -union connector_connect_ioctl { - struct connector_connect_in in; -}; - -struct pkt_nd_connector_connect { - struct ndv_packet_hdr_control_1 hdr; - union connector_connect_ioctl ioctl; -}; - -/* - * IOCTL for connector complete connect - */ - -struct complete_connect_in { - struct nd_handle hdr; - u8 rnr_nak_to; - unsigned long activity_id; -}; - -struct complete_connect_out { - enum ibv_qp_state state; -}; - -union connector_complete_connect_ioctl { - struct complete_connect_in in; - struct complete_connect_out out; -}; - -struct pkt_nd_connector_connect_complete { - struct ndv_packet_hdr_control_1 hdr; - union connector_complete_connect_ioctl ioctl; -}; - - -#define MAX_PRIVATE_DATA_LEN 148 - -/* - * IOCTL for connector accept. - */ - -struct connector_accept_in { - struct nd_accept hdr; - u8 rnr_retry_cnt; - u8 rnr_nak_to; - u8 private_data[MAX_PRIVATE_DATA_LEN]; - unsigned long activity_id; -}; - -struct connector_accept_out { - enum ibv_qp_state state; -}; - -union connector_accept_ioctl { - struct connector_accept_in in; - struct connector_accept_out out; -}; - -struct pkt_nd_connector_accept { - struct ndv_packet_hdr_control_1 hdr; - union connector_accept_ioctl ioctl; -}; - -/* - * IOCTL for connector to reject a connection. - */ - -struct connector_reject_in { - struct nd_reject hdr; - u8 private_data[MAX_PRIVATE_DATA_LEN]; -}; - -struct connector_reject_out { - enum ibv_qp_state state; -}; - -union connector_reject_ioctl { - struct connector_reject_in in; - struct connector_reject_out out; -}; - -struct pkt_nd_connector_reject { - struct ndv_packet_hdr_control_1 hdr; - union connector_reject_ioctl ioctl; -}; - -/* - * IOCTL to get connector read limits. - */ - -struct connector_get_rd_limits_in { - struct nd_handle in; -}; - -struct connector_get_rd_limits_out { - struct nd_read_limits out; -}; - -union connector_get_rd_limits_ioctl { - struct connector_get_rd_limits_in in; - struct connector_get_rd_limits_out out; -}; - -struct pkt_nd_connector_get_rd_limits { - struct ndv_packet_hdr_control_1 hdr; - union connector_get_rd_limits_ioctl ioctl; -}; - -/* - * IOCTL to get connector private data. - */ -union connector_get_priv_data_ioctl { - struct nd_handle in; - u8 out[MAX_PRIVATE_DATA_LEN]; -}; - -struct pkt_nd_connector_get_priv_data { - struct ndv_packet_hdr_control_1 hdr; - union connector_get_priv_data_ioctl ioctl; -}; - - -/* - * IOCTL get peer address. - */ - -union connector_get_peer_addr_ioctl { - struct nd_handle in; - union nd_sockaddr_inet out; -}; - -struct pkt_nd_connector_get_peer_addr { - struct ndv_packet_hdr_control_1 hdr; - union connector_get_peer_addr_ioctl ioctl; -}; - -/* - * IOCTL to get connector address. - */ - -union connector_get_addr_ioctl { - struct nd_handle in; - union nd_sockaddr_inet out; -}; - -struct pkt_nd_connector_get_addr { - struct ndv_packet_hdr_control_1 hdr; - union connector_get_addr_ioctl ioctl; -}; - -/* - * IOCTL for disconnect notification. - */ - -union connector_notify_disconnect_ioctl { - struct nd_handle in; -}; - -struct pkt_nd_connector_notify_disconnect { - struct ndv_packet_hdr_control_1 hdr; - union connector_notify_disconnect_ioctl ioctl; -}; - -union connector_disconnect_ioctl { - struct nd_handle in; -}; - -struct pkt_nd_connector_disconnect { - struct ndv_packet_hdr_control_1 hdr; - union connector_notify_disconnect_ioctl ioctl; -}; - -/* - * IOCTLs for QP operations. - */ - -/* - * Create qp IOCTL. - */ - -struct qp_db_gpa { - u32 byte_count; - u32 byte_offset; - u64 pfn_array[1]; -}; - -struct create_qp_ext_data { - union { - u32 cnt; - u64 padding; - }; - /* offsets are from start of extended data struct - * and should start on 8 byte boundary - */ - struct pkt_fld fields[MLX4_IB_CREATE_QP_MAPPINGS_MAX]; - struct qp_db_gpa db_gpa; - struct gpa_range qpbuf_gpa; -}; - -union create_qp_ioctl { - struct nd_create_qp input; - struct nd_resource_descriptor resrc_desc; -}; - -union create_qp_mappings { - struct ibv_create_qp qp_in; - struct ibv_create_qp_resp qp_resp; -}; - -struct pkt_nd_create_qp { - struct ndv_packet_hdr_control_1 hdr; - - union create_qp_ioctl ioctl; - union create_qp_mappings mappings; - - /* - * Extended data. - */ - struct create_qp_ext_data ext_data; -}; - -/* - * IOCTL to flush a QP. - */ -struct flush_qp_ioctl { - struct nd_handle in; - enum ibv_qp_state out; -}; - -struct pkt_nd_flush_qp { - struct ndv_packet_hdr_control_1 hdr; - struct flush_qp_ioctl ioctl; -}; - -/* - * Memory Region IOCTLS - */ -union create_mr_ioctl { - struct nd_handle in; - u64 out; -}; - -struct pkt_nd_create_mr { - struct ndv_packet_hdr_control_1 hdr; - union create_mr_ioctl ioctl; -}; - -struct mr_out { - u32 lkey; - u32 rkey; - unsigned long activity_id; -}; - - -union register_mr_ioctl { - struct nd_mr_register in; - struct mr_out out; -}; - -struct pkt_nd_register_mr { - struct ndv_packet_hdr_control_1 hdr; - union register_mr_ioctl ioctl; -}; - -struct deregister_mr_ioctl { - struct nd_handle in; -}; - -struct pkt_nd_deregister_mr { - struct ndv_packet_hdr_control_1 hdr; - struct deregister_mr_ioctl ioctl; -}; - -/* - * IOCTL to disconnect connector - */ - -/* - * Create PD IOCTL. - */ -struct nd_create_pd_ioctl { - union { - struct nd_handle in; - u64 out_handle; - }; - struct ibv_alloc_pd_resp resp; -}; - -struct pkt_nd_pd_create { - struct ndv_packet_hdr_control_1 hdr; - struct nd_create_pd_ioctl ioctl; -}; - -/* - * Free Handle. Check the layout with Luke. - * - */ -struct free_handle_ioctl { - struct nd_handle in; -}; - -struct pkt_nd_free_handle { - struct ndv_packet_hdr_control_1 hdr; - struct free_handle_ioctl ioctl; -}; - -/* - * Cancel I/O. - */ - -struct cancel_io_ioctl { - struct nd_handle in; -}; - -struct pkt_nd_cancel_io { - struct ndv_packet_hdr_control_1 hdr; - struct cancel_io_ioctl ioctl; -}; - -/* - * Connector states: - */ - -enum connector_state { - HVND_CON_INCOMING, - HVND_CON_INCOMING_ESTABLISHED, - HVND_CON_INCOMING_REJECTED, - HVND_CON_OUTGOING_REQUEST -}; - - -/* - * Adaptor query IOCTL. - */ -struct nd_adap_query_ioctl { - union { - struct nd_adapter_query ad_q; - struct adapter_info_v2 ad_info; - }; -}; - -struct pkt_nd_query_adaptor { - struct ndv_packet_hdr_control_1 hdr; - struct nd_adap_query_ioctl ioctl; -}; - -struct nd_ioctl { - union { - struct nd_handle handle; - u8 raw_buffer[NDV_MAX_IOCTL_BUFFER_SIZE]; - }; -}; - -struct pkt_nd_provider_ioctl { - struct ndv_packet_hdr_control_1 hdr; - struct nd_ioctl ioctl; -}; - -struct hvnd_ib_pd { - struct ib_pd ibpd; - u32 pdn; - u64 handle; -}; - -struct hvnd_work { - struct work_struct work; - void *callback_arg; -}; - -struct hvnd_disconnect_work { - struct work_struct work; - int status; - void *callback_arg; -}; - -/* -struct hvnd_delayed_work { - struct delayed_work work; - void *callback_arg; -}; -*/ - -enum hvnd_cm_state { - hvnd_cm_idle = 0, - hvnd_cm_connect_reply_sent, //active - hvnd_cm_connect_reply_refused, - hvnd_cm_connect_received, //active - hvnd_cm_connect_request_sent, //passive - hvnd_cm_accept_sent, - hvnd_cm_close_sent, - hvnd_cm_established_sent, -}; - -struct incoming_pkt { - struct list_head list_entry; - char pkt[0]; -}; - -struct hvnd_ep_obj { -/* - spinlock_t ep_lk; - bool to_be_destroyed; - bool io_outstanding; - - wait_queue_head_t wait; - bool stopped; - atomic_t process_refcnt; // how many NDV_PKT_ID1_COMPLETE packets we are currently processing -*/ - bool stopping; - wait_queue_head_t wait_pending; - atomic_t nr_requests_pending; - - enum nd_resource_type type; - enum connector_state state; //KYS need to look at locking - struct iw_cm_id *cm_id; - enum hvnd_cm_state cm_state; - struct completion block_event; - struct completion disconnect_event; - struct completion connector_accept_event; - int connector_accept_status; - u64 ep_handle; - spinlock_t incoming_pkt_list_lock; - struct list_head incoming_pkt_list; - struct hvnd_ep_obj *parent; - struct hvnd_dev *nd_dev; - struct hvnd_ucontext *uctx; - struct hvnd_work wrk; - struct hvnd_cq *cq; - u8 ord; - u8 ird; - char priv_data[MAX_PRIVATE_DATA_LEN]; - bool incoming; - atomic_t disconnect_notified; - u64 outstanding_handle; - u32 local_irp; - struct hvnd_ep_obj *outstanding_ep; - struct pkt_nd_connector_connect connector_connect_pkt; - int connector_connect_retry; -}; - -struct hvnd_ucontext { - struct ib_ucontext ibucontext; - struct list_head listentry; - struct ndv_pkt_hdr_create_1 create_pkt; - struct ndv_pkt_hdr_create_1 create_pkt_ovl; /* Overlap handle */ - struct pkt_nd_provider_ioctl pr_init_pkt; - union ndv_context_handle file_handle; - union ndv_context_handle file_handle_ovl; - - struct pkt_nd_open_adapter o_adap_pkt; - - u64 adaptor_hdl; - - /* - * Protection domain state. - */ - struct pkt_nd_pd_create pd_cr_pkt; - - u64 uar_base; - u64 bf_base; - u32 bf_buf_size; - u32 bf_offset; - u32 cqe_size; - u32 max_qp_wr; - u32 max_sge; - u32 max_cqe; - u32 num_qps; - - /* - * State to manage dorbell pages: - */ - struct list_head db_page_list; - struct mutex db_page_mutex; - - atomic_t refcnt; - -}; - -struct hvnd_dev { - struct ib_device ibdev; - struct hv_device *hvdev; - u32 device_cap_flags; - unsigned char nports; - bool ib_active; - - /* State to manage interaction with the host. - */ - - spinlock_t uctxt_lk; - struct list_head listentry; - - unsigned long mmio_sz; - unsigned long mmio_start_addr; - struct resource mmio_resource; - void *mmio_virt; - - unsigned long negotiated_version; - union ndv_packet_init init_pkt; - struct ndv_pkt_hdr_init_resources_1 resources; - struct ndv_pkt_hdr_bind_1 bind_pkt; - - struct ndv_pkt_hdr_create_1 global_create_pkt; - union ndv_context_handle global_file_handle; - - struct semaphore query_pkt_sem; - bool query_pkt_set; - struct pkt_nd_query_adaptor query_pkt; - - /* - * ID tables. - */ - spinlock_t id_lock; - - struct idr cqidr; - struct idr qpidr; - struct idr mmidr; - struct idr irpidr; - struct idr uctxidr; - atomic_t open_cnt; - - char ip_addr[4]; - char mac_addr[6]; - struct completion addr_set; - int bind_complete; - struct mutex bind_mutex; -}; - -struct hvnd_cq { - struct ib_cq ibcq; - void *cq_buf; - void *db_addr; - u32 arm_sn; - u32 entries; - - u32 cqn; - u32 cqe; - u64 cq_handle; - - struct ib_umem *umem; - struct ib_umem *db_umem; - struct mlx4_ib_user_db_page user_db_page; - struct hvnd_ucontext *uctx; - struct hvnd_ep_obj ep_object; //KYS need to clean this up; have a cq irp state - bool monitor; - bool upcall_pending; -}; - -struct hvnd_qp { - struct ib_qp ibqp; - void *qp_buf; - void *db_addr; - u32 buf_size; - u8 port; - struct hvnd_dev *nd_dev; - - __u8 log_sq_bb_count; - __u8 log_sq_stride; - __u8 sq_no_prefetch; - - int rq_wqe_cnt; - int rq_wqe_shift; - int rq_max_gs; - - int sq_wqe_cnt; - int sq_wqe_shift; - int sq_max_gs; - - u32 max_inline_data; - - u32 initiator_q_depth; - u32 initiator_request_sge; - - u32 receive_q_depth; - u32 receive_request_sge; - - struct hvnd_cq *recv_cq; - struct hvnd_cq *send_cq; - - u64 receive_cq_handle; - u64 initiator_cq_handle; - u64 pd_handle; - - u64 qp_handle; - u32 qpn; - u32 max_send_wr; - u32 max_recv_wr; - u32 max_send_sge; - u32 max_recv_sge; - - struct ib_umem *umem; - struct ib_umem *db_umem; - struct mlx4_ib_user_db_page user_db_page; - struct hvnd_ucontext *uctx; - struct iw_cm_id *cm_id; - - /* - * Current QP state; need to look at locking. - * XXXKYS - */ - enum ib_qp_state qp_state; - bool cq_notify; - wait_queue_head_t wait; - atomic_t refcnt; - struct hvnd_ep_obj *connector; -}; - -struct hvnd_mr { - struct ib_mr ibmr; - struct hvnd_ib_pd *pd; - struct ib_umem *umem; - u64 start; - u64 length; - u64 virt; - int acc; - u64 mr_handle; - u32 mr_lkey; - u32 mr_rkey; -}; - -struct hvnd_cookie { - struct completion host_event; - void *pkt; -}; - -/* - * Definitions to retrieve the IP address. - */ - -#define HVND_CURRENT_VERSION 0 - -struct hvnd_ipaddr_tuple { - char mac_address[ETH_ALEN]; - struct sockaddr addr; -}; - -struct hvnd_msg { - int status; - struct hvnd_ipaddr_tuple ip_tuple; -}; - -static inline struct hvnd_ib_pd *to_nd_pd(struct ib_pd *pd) -{ - return container_of(pd, struct hvnd_ib_pd, ibpd); -} - -static inline struct hvnd_dev *to_nd_dev(struct ib_device *ibdev) -{ - return container_of(ibdev, struct hvnd_dev, ibdev); -} - -static inline struct hvnd_cq *to_nd_cq(struct ib_cq *ibcq) -{ - return container_of(ibcq, struct hvnd_cq, ibcq); -} - -static inline struct hvnd_qp *to_nd_qp(struct ib_qp *ibqp) -{ - return container_of(ibqp, struct hvnd_qp, ibqp); -} - -static inline struct hvnd_ucontext *to_nd_context(struct ib_ucontext *ibucontext) -{ - return container_of(ibucontext, struct hvnd_ucontext, ibucontext); -} - -static inline struct hvnd_ucontext *get_uctx_from_pd(struct ib_pd *pd) -{ - return to_nd_context(pd->uobject->context); -} - -static inline struct hvnd_mr *to_nd_mr(struct ib_mr *ibmr) -{ - return container_of(ibmr, struct hvnd_mr, ibmr); -} -/* - * ID management. - */ - -static inline int insert_handle(struct hvnd_dev *dev, struct idr *idr, - void *handle, u32 id) -{ - int ret; - unsigned long flags; - - idr_preload(GFP_KERNEL); - spin_lock_irqsave(&dev->id_lock, flags); - - ret = idr_alloc(idr, handle, id, id + 1, GFP_ATOMIC); - - spin_unlock_irqrestore(&dev->id_lock, flags); - idr_preload_end(); - - BUG_ON(ret == -ENOSPC); - return ret < 0 ? ret : 0; -} - -static inline void remove_handle(struct hvnd_dev *dev, struct idr *idr, u32 id) -{ - unsigned long flags; - - spin_lock_irqsave(&dev->id_lock, flags); - idr_remove(idr, id); - spin_unlock_irqrestore(&dev->id_lock, flags); -} - -static inline struct hvnd_cq *get_cqp(struct hvnd_dev *dev, u32 cqid) -{ - struct hvnd_cq *cqp; - unsigned long flags; - - spin_lock_irqsave(&dev->id_lock, flags); - cqp = idr_find(&dev->cqidr, cqid); - spin_unlock_irqrestore(&dev->id_lock, flags); - - return cqp; -} - -static inline struct hvnd_qp *get_qpp(struct hvnd_dev *dev, u32 qpid) -{ - struct hvnd_qp *qpp; - unsigned long flags; - - spin_lock_irqsave(&dev->id_lock, flags); - qpp = idr_find(&dev->qpidr, qpid); - spin_unlock_irqrestore(&dev->id_lock, flags); - - return qpp; -} - -static inline struct hvnd_ucontext *get_uctx(struct hvnd_dev *dev, u32 pid) -{ - struct hvnd_ucontext *uctx; - unsigned long flags; - - spin_lock_irqsave(&dev->id_lock, flags); - uctx = idr_find(&dev->uctxidr, pid); - spin_unlock_irqrestore(&dev->id_lock, flags); - - return uctx; -} - - -static inline void *map_irp_to_ctx(struct hvnd_dev *nd_dev, u32 irp) -{ - void *ctx; - unsigned long flags; - - spin_lock_irqsave(&nd_dev->id_lock, flags); - ctx = idr_find(&nd_dev->irpidr, irp); - spin_unlock_irqrestore(&nd_dev->id_lock, flags); - - return ctx; -} - - - -void hvnd_callback(void *context); -int hvnd_negotiate_version(struct hvnd_dev *nd_dev); -int hvnd_init_resources(struct hvnd_dev *nd_dev); -int hvnd_bind_nic(struct hvnd_dev *nd_dev, bool un_bind, char *ip_addr, char *mac_addr); -int hvnd_open_adaptor(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx); -int hvnd_close_adaptor(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx); -int hvnd_query_adaptor(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx); -int hvnd_create_pd(struct hvnd_ucontext *uctx, struct hvnd_dev *nd_dev, - struct hvnd_ib_pd *hvnd_pd); - -/* - * CQ operations. - */ -int hvnd_create_cq(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - struct hvnd_cq *cq); -int hvnd_destroy_cq(struct hvnd_dev *nd_dev, struct hvnd_cq *cq); -int hvnd_notify_cq(struct hvnd_dev *nd_dev, struct hvnd_cq *cq, - u32 notify_type, u64 irp_handle); - -/* - * QP operations. - */ -int hvnd_create_qp(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - struct hvnd_qp *qp); - -int hvnd_free_qp(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - struct hvnd_qp *qp); - -int hvnd_flush_qp(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - struct hvnd_qp *qp); - -/* - * MR operations. - */ - -int hvnd_cr_mr(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - u64 pd_handle, u64 *mr_handle); - -int hvnd_free_mr(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - u64 handle); - -int hvnd_mr_register(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - struct hvnd_mr *mr); -int hvnd_deregister_mr(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - u64 handle); - -/* - * Listner operations - */ -int hvnd_cr_listener(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, u64 *handle); - - -int hvnd_free_listener(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - u64 listener_handle); - -int hvnd_bind_listener(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - u64 listener_handle, union nd_sockaddr_inet *addr); - -int hvnd_listen_listener(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - u64 listener_handle, u32 backlog); - -int hvnd_get_addr_listener(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - u64 listener_handle, union nd_sockaddr_inet *addr); - -int hvnd_get_connection_listener(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - u64 listener_handle, u64 connector_handle, - u64 irp_handle); - -/* - * Connector operations. - */ -int hvnd_cr_connector(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - u64 *connector_handle); - -int hvnd_free_connector(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - u64 handle); - -int hvnd_cancelio_connector(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - u64 handle); -int hvnd_bind_connector(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - u64 handle, union nd_sockaddr_inet *addr); - -int hvnd_connector_connect(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - u64 connector_handle, u32 in_rd_limit, u32 out_rd_limit, - u32 priv_data_length, const u8 *priv_data, - u64 qp_handle, struct if_physical_addr *phys_addr, - union nd_sockaddr_inet *dest_addr, struct hvnd_ep_obj *ep); - -int hvnd_connector_complete_connect(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - u64 connector_handle, enum ibv_qp_state *qp_state); - -int hvnd_connector_accept(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - u64 connector_handle, - u64 qp_handle, - u32 in_rd_limit, u32 out_rd_limit, - u32 priv_data_length, const u8 *priv_data, - enum ibv_qp_state *qp_state, struct hvnd_ep_obj *ep); - -int hvnd_connector_reject(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - u64 connector_handle, - u32 priv_data_length, u8 *priv_data, - enum ibv_qp_state *qp_state); - -int hvnd_connector_get_rd_limits(struct hvnd_dev *nd_dev, - struct hvnd_ucontext *uctx, - u64 connector_handle, - struct nd_read_limits *rd_limits); - -int hvnd_connector_get_priv_data(struct hvnd_dev *nd_dev, - struct hvnd_ucontext *uctx, - u64 connector_handle, - u8 *priv_data); - -int hvnd_connector_get_peer_addr(struct hvnd_dev *nd_dev, - struct hvnd_ucontext *uctx, - u64 connector_handle, - union nd_sockaddr_inet *peer_addr); - -int hvnd_connector_get_local_addr(struct hvnd_dev *nd_dev, - struct hvnd_ucontext *uctx, - u64 connector_handle, - union nd_sockaddr_inet *local_addr); - -int hvnd_connector_notify_disconnect(struct hvnd_dev *nd_dev, - struct hvnd_ucontext *uctx, - u64 connector_handle, struct hvnd_ep_obj *ep); - - -int hvnd_connector_disconnect(struct hvnd_dev *nd_dev, - struct hvnd_ucontext *uctx, - u64 connector_handle, struct hvnd_ep_obj *ep); - -int hvnd_free_handle(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - u64 handle, u32 ioctl); - -int hvnd_cancel_io(struct hvnd_ep_obj *ep_object); - -char *hvnd_get_op_name(int ioctl); - -void hvnd_acquire_uctx_ref(struct hvnd_ucontext *uctx); -void hvnd_drop_uctx_ref(struct hvnd_dev *nd_dev,struct hvnd_ucontext *uctx); -void hvnd_process_events(struct work_struct *work); - -void hvnd_process_cq_event_pending(struct hvnd_ep_obj *ep, int status); -void hvnd_process_cq_event_complete(struct hvnd_ep_obj *ep, int status); -void hvnd_process_connector_accept(struct hvnd_ep_obj *ep_object, int status); -void hvnd_process_notify_disconnect(struct hvnd_ep_obj *ep_object, int status); -void hvnd_process_disconnect(struct hvnd_ep_obj *ep_object, int status); - -void put_irp_handle(struct hvnd_dev *nd_dev, u32 irp); -int get_irp_handle(struct hvnd_dev *nd_dev, u32 *local, void *irp_ctx); - -void hvnd_init_hdr(struct ndv_packet_hdr_control_1 *hdr, - u32 data_sz, u32 local, u32 remote, - u32 ioctl_code, - u32 ext_data_sz, u32 ext_data_offset, - u64 irp_handle); - -int hvnd_send_ioctl_pkt(struct hvnd_dev *nd_dev, - struct ndv_packet_hdr_control_1 *hdr, - u32 pkt_size, u64 cookie); - -int hvnd_get_outgoing_rdma_addr(struct hvnd_dev *nd_dev, struct hvnd_ucontext *uctx, - union nd_sockaddr_inet *og_addr); - -int hvnd_get_neigh_mac_addr(struct sockaddr *local, struct sockaddr *remote, char *mac_addr); - -void hvnd_addr_init(void); - -void hvnd_addr_deinit(void); - -bool ep_add_work_pending(struct hvnd_ep_obj *ep_object); -void ep_del_work_pending(struct hvnd_ep_obj *ep_object); -void ep_stop(struct hvnd_ep_obj *ep_object); - -#define current_pid() (current->pid) -/* - * NT STATUS defines. - */ - -#define STATUS_SUCCESS 0x0 -#define STATUS_PENDING 0x00000103 -#define STATUS_CANCELLED 0xC0000120 -#define STATUS_DISCONNECTED 0xC000020C -#define STATUS_TIMEOUT 0xC00000B5 - -void inc_ioctl_counter_request(unsigned ioctl); -void inc_ioctl_counter_response(unsigned ioctl); - -#define NDV_PROTOCOL_VAERSION_INVALID -1 -#define NDV_PACKET_INIT_SIZE 16 /* Size of the INIT packet */ - -#define HVND_RING_SZ (PAGE_SIZE * 64) - -/* logging levels */ -#define HVND_ERROR 0 -#define HVND_WARN 1 -#define HVND_INFO 2 -#define HVND_DEBUG 3 - -extern int hvnd_log_level; - -#define hvnd_error(fmt, args...) hvnd_log(HVND_ERROR, fmt, ##args) -#define hvnd_warn(fmt, args...) hvnd_log(HVND_WARN, fmt, ##args) -#define hvnd_info(fmt, args...) hvnd_log(HVND_INFO, fmt, ##args) -#define hvnd_debug(fmt, args...) hvnd_log(HVND_DEBUG, fmt, ##args) - -#define hvnd_log(level, fmt, args...) \ -do { \ - if (unlikely(hvnd_log_level >= (level))) \ - printk(KERN_ERR "hvnd %s[%u]: " fmt, __func__, __LINE__, ##args); \ -} while (0) - -#endif /* _VMBUS_RDMA_H */ diff -u linux-raspi2-4.4.0/drivers/infiniband/ulp/ipoib/ipoib_cm.c linux-raspi2-4.4.0/drivers/infiniband/ulp/ipoib/ipoib_cm.c --- linux-raspi2-4.4.0/drivers/infiniband/ulp/ipoib/ipoib_cm.c +++ linux-raspi2-4.4.0/drivers/infiniband/ulp/ipoib/ipoib_cm.c @@ -1373,7 +1373,7 @@ while (!list_empty(&priv->cm.reap_list)) { p = list_entry(priv->cm.reap_list.next, typeof(*p), list); - list_del(&p->list); + list_del_init(&p->list); spin_unlock_irqrestore(&priv->lock, flags); netif_tx_unlock_bh(dev); ipoib_cm_tx_destroy(p); diff -u linux-raspi2-4.4.0/drivers/infiniband/ulp/ipoib/ipoib_main.c linux-raspi2-4.4.0/drivers/infiniband/ulp/ipoib/ipoib_main.c --- linux-raspi2-4.4.0/drivers/infiniband/ulp/ipoib/ipoib_main.c +++ linux-raspi2-4.4.0/drivers/infiniband/ulp/ipoib/ipoib_main.c @@ -1239,7 +1239,7 @@ rcu_dereference_protected(neigh->hnext, lockdep_is_held(&priv->lock))); /* remove from path/mc list */ - list_del(&neigh->list); + list_del_init(&neigh->list); call_rcu(&neigh->rcu, ipoib_neigh_reclaim); } else { np = &neigh->hnext; @@ -1406,7 +1406,7 @@ rcu_dereference_protected(neigh->hnext, lockdep_is_held(&priv->lock))); /* remove from parent list */ - list_del(&neigh->list); + list_del_init(&neigh->list); call_rcu(&neigh->rcu, ipoib_neigh_reclaim); return; } else { @@ -1491,7 +1491,7 @@ rcu_dereference_protected(neigh->hnext, lockdep_is_held(&priv->lock))); /* remove from parent list */ - list_del(&neigh->list); + list_del_init(&neigh->list); call_rcu(&neigh->rcu, ipoib_neigh_reclaim); } else { np = &neigh->hnext; @@ -1533,7 +1533,7 @@ rcu_dereference_protected(neigh->hnext, lockdep_is_held(&priv->lock))); /* remove from path/mc list */ - list_del(&neigh->list); + list_del_init(&neigh->list); call_rcu(&neigh->rcu, ipoib_neigh_reclaim); } } diff -u linux-raspi2-4.4.0/drivers/infiniband/ulp/ipoib/ipoib_vlan.c linux-raspi2-4.4.0/drivers/infiniband/ulp/ipoib/ipoib_vlan.c --- linux-raspi2-4.4.0/drivers/infiniband/ulp/ipoib/ipoib_vlan.c +++ linux-raspi2-4.4.0/drivers/infiniband/ulp/ipoib/ipoib_vlan.c @@ -160,11 +160,11 @@ out: up_write(&ppriv->vlan_rwsem); + rtnl_unlock(); + if (result) free_netdev(priv->dev); - rtnl_unlock(); - return result; } @@ -185,7 +185,6 @@ list_for_each_entry_safe(priv, tpriv, &ppriv->child_intfs, list) { if (priv->pkey == pkey && priv->child_type == IPOIB_LEGACY_CHILD) { - unregister_netdevice(priv->dev); list_del(&priv->list); dev = priv->dev; break; @@ -193,6 +192,11 @@ } up_write(&ppriv->vlan_rwsem); + if (dev) { + ipoib_dbg(ppriv, "delete child vlan %s\n", dev->name); + unregister_netdevice(dev); + } + rtnl_unlock(); if (dev) { diff -u linux-raspi2-4.4.0/drivers/infiniband/ulp/isert/ib_isert.c linux-raspi2-4.4.0/drivers/infiniband/ulp/isert/ib_isert.c --- linux-raspi2-4.4.0/drivers/infiniband/ulp/isert/ib_isert.c +++ linux-raspi2-4.4.0/drivers/infiniband/ulp/isert/ib_isert.c @@ -1581,7 +1581,7 @@ struct isert_conn *isert_conn, u32 xfer_len) { - struct ib_device *ib_dev = isert_conn->cm_id->device; + struct ib_device *ib_dev = isert_conn->device->ib_device; struct iscsi_hdr *hdr; u64 rx_dma; int rx_buflen; diff -u linux-raspi2-4.4.0/drivers/input/mouse/elan_i2c_core.c linux-raspi2-4.4.0/drivers/input/mouse/elan_i2c_core.c --- linux-raspi2-4.4.0/drivers/input/mouse/elan_i2c_core.c +++ linux-raspi2-4.4.0/drivers/input/mouse/elan_i2c_core.c @@ -1234,7 +1234,14 @@ { "ELAN0000", 0 }, { "ELAN0100", 0 }, { "ELAN0600", 0 }, + { "ELAN0602", 0 }, { "ELAN0605", 0 }, + { "ELAN0608", 0 }, + { "ELAN0605", 0 }, + { "ELAN0609", 0 }, + { "ELAN060B", 0 }, + { "ELAN060C", 0 }, + { "ELAN0611", 0 }, { "ELAN1000", 0 }, { } }; diff -u linux-raspi2-4.4.0/drivers/input/serio/i8042-x86ia64io.h linux-raspi2-4.4.0/drivers/input/serio/i8042-x86ia64io.h --- linux-raspi2-4.4.0/drivers/input/serio/i8042-x86ia64io.h +++ linux-raspi2-4.4.0/drivers/input/serio/i8042-x86ia64io.h @@ -905,6 +905,13 @@ }, }, { + /* Gigabyte P57 - Elantech touchpad */ + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "GIGABYTE"), + DMI_MATCH(DMI_PRODUCT_NAME, "P57"), + }, + }, + { /* Schenker XMG C504 - Elantech touchpad */ .matches = { DMI_MATCH(DMI_SYS_VENDOR, "XMG"), diff -u linux-raspi2-4.4.0/drivers/input/serio/i8042.c linux-raspi2-4.4.0/drivers/input/serio/i8042.c --- linux-raspi2-4.4.0/drivers/input/serio/i8042.c +++ linux-raspi2-4.4.0/drivers/input/serio/i8042.c @@ -434,8 +434,10 @@ { struct i8042_port *port = serio->port_data; + spin_lock_irq(&i8042_lock); port->exists = true; - mb(); + spin_unlock_irq(&i8042_lock); + return 0; } @@ -448,16 +450,20 @@ { struct i8042_port *port = serio->port_data; + spin_lock_irq(&i8042_lock); port->exists = false; + port->serio = NULL; + spin_unlock_irq(&i8042_lock); /* + * We need to make sure that interrupt handler finishes using + * our serio port before we return from this function. * We synchronize with both AUX and KBD IRQs because there is * a (very unlikely) chance that AUX IRQ is raised for KBD port * and vice versa. */ synchronize_irq(I8042_AUX_IRQ); synchronize_irq(I8042_KBD_IRQ); - port->serio = NULL; } /* @@ -574,7 +580,7 @@ spin_unlock_irqrestore(&i8042_lock, flags); - if (likely(port->exists && !filtered)) + if (likely(serio && !filtered)) serio_interrupt(serio, data, dfl); out: diff -u linux-raspi2-4.4.0/drivers/input/tablet/gtco.c linux-raspi2-4.4.0/drivers/input/tablet/gtco.c --- linux-raspi2-4.4.0/drivers/input/tablet/gtco.c +++ linux-raspi2-4.4.0/drivers/input/tablet/gtco.c @@ -231,13 +231,17 @@ /* Walk this report and pull out the info we need */ while (i < length) { - prefix = report[i]; - - /* Skip over prefix */ - i++; + prefix = report[i++]; /* Determine data size and save the data in the proper variable */ - size = PREF_SIZE(prefix); + size = (1U << PREF_SIZE(prefix)) >> 1; + if (i + size > length) { + dev_err(ddev, + "Not enough data (need %d, have %d)\n", + i + size, length); + break; + } + switch (size) { case 1: data = report[i]; @@ -245,8 +249,7 @@ case 2: data16 = get_unaligned_le16(&report[i]); break; - case 3: - size = 4; + case 4: data32 = get_unaligned_le32(&report[i]); break; } diff -u linux-raspi2-4.4.0/drivers/iommu/amd_iommu.c linux-raspi2-4.4.0/drivers/iommu/amd_iommu.c --- linux-raspi2-4.4.0/drivers/iommu/amd_iommu.c +++ linux-raspi2-4.4.0/drivers/iommu/amd_iommu.c @@ -3096,6 +3096,7 @@ mutex_unlock(&domain->api_lock); domain_flush_tlb_pde(domain); + domain_flush_complete(domain); return unmap_size; } diff -u linux-raspi2-4.4.0/drivers/iommu/arm-smmu-v3.c linux-raspi2-4.4.0/drivers/iommu/arm-smmu-v3.c --- linux-raspi2-4.4.0/drivers/iommu/arm-smmu-v3.c +++ linux-raspi2-4.4.0/drivers/iommu/arm-smmu-v3.c @@ -1033,13 +1033,8 @@ } } - /* Nuke the existing Config, as we're going to rewrite it */ - val &= ~(STRTAB_STE_0_CFG_MASK << STRTAB_STE_0_CFG_SHIFT); - - if (ste->valid) - val |= STRTAB_STE_0_V; - else - val &= ~STRTAB_STE_0_V; + /* Nuke the existing STE_0 value, as we're going to rewrite it */ + val = ste->valid ? STRTAB_STE_0_V : 0; if (ste->bypass) { val |= disable_bypass ? STRTAB_STE_0_CFG_ABORT @@ -1068,7 +1063,6 @@ val |= (ste->s1_cfg->cdptr_dma & STRTAB_STE_0_S1CTXPTR_MASK << STRTAB_STE_0_S1CTXPTR_SHIFT) | STRTAB_STE_0_CFG_S1_TRANS; - } if (ste->s2_cfg) { diff -u linux-raspi2-4.4.0/drivers/iommu/io-pgtable-arm.c linux-raspi2-4.4.0/drivers/iommu/io-pgtable-arm.c --- linux-raspi2-4.4.0/drivers/iommu/io-pgtable-arm.c +++ linux-raspi2-4.4.0/drivers/iommu/io-pgtable-arm.c @@ -335,8 +335,12 @@ if (cfg->quirks & IO_PGTABLE_QUIRK_ARM_NS) pte |= ARM_LPAE_PTE_NSTABLE; __arm_lpae_set_pte(ptep, pte, cfg); - } else { + } else if (!iopte_leaf(pte, lvl)) { cptep = iopte_deref(pte, data); + } else { + /* We require an unmap first */ + WARN_ON(!selftest_running); + return -EEXIST; } /* Rinse, repeat */ diff -u linux-raspi2-4.4.0/drivers/irqchip/irq-atmel-aic-common.c linux-raspi2-4.4.0/drivers/irqchip/irq-atmel-aic-common.c --- linux-raspi2-4.4.0/drivers/irqchip/irq-atmel-aic-common.c +++ linux-raspi2-4.4.0/drivers/irqchip/irq-atmel-aic-common.c @@ -148,9 +148,9 @@ struct device_node *np; void __iomem *regs; - np = of_find_compatible_node(root, NULL, "atmel,at91rm9200-rtc"); + np = of_find_compatible_node(NULL, NULL, "atmel,at91rm9200-rtc"); if (!np) - np = of_find_compatible_node(root, NULL, + np = of_find_compatible_node(NULL, NULL, "atmel,at91sam9x5-rtc"); if (!np) @@ -202,7 +202,6 @@ return; match = of_match_node(matches, root); - of_node_put(root); if (match) { void (*fixup)(struct device_node *) = match->data; diff -u linux-raspi2-4.4.0/drivers/irqchip/irq-gic-v3.c linux-raspi2-4.4.0/drivers/irqchip/irq-gic-v3.c --- linux-raspi2-4.4.0/drivers/irqchip/irq-gic-v3.c +++ linux-raspi2-4.4.0/drivers/irqchip/irq-gic-v3.c @@ -632,6 +632,9 @@ int enabled; u64 val; + if (cpu >= nr_cpu_ids) + return -EINVAL; + if (gic_irq_in_rdist(d)) return -EINVAL; diff -u linux-raspi2-4.4.0/drivers/irqchip/irq-mxs.c linux-raspi2-4.4.0/drivers/irqchip/irq-mxs.c --- linux-raspi2-4.4.0/drivers/irqchip/irq-mxs.c +++ linux-raspi2-4.4.0/drivers/irqchip/irq-mxs.c @@ -131,12 +131,16 @@ .irq_ack = icoll_ack_irq, .irq_mask = icoll_mask_irq, .irq_unmask = icoll_unmask_irq, + .flags = IRQCHIP_MASK_ON_SUSPEND | + IRQCHIP_SKIP_SET_WAKE, }; static struct irq_chip asm9260_icoll_chip = { .irq_ack = icoll_ack_irq, .irq_mask = asm9260_mask_irq, .irq_unmask = asm9260_unmask_irq, + .flags = IRQCHIP_MASK_ON_SUSPEND | + IRQCHIP_SKIP_SET_WAKE, }; asmlinkage void __exception_irq_entry icoll_handle_irq(struct pt_regs *regs) diff -u linux-raspi2-4.4.0/drivers/md/bcache/bcache.h linux-raspi2-4.4.0/drivers/md/bcache/bcache.h --- linux-raspi2-4.4.0/drivers/md/bcache/bcache.h +++ linux-raspi2-4.4.0/drivers/md/bcache/bcache.h @@ -333,6 +333,7 @@ /* Limit number of writeback bios in flight */ struct semaphore in_flight; struct task_struct *writeback_thread; + struct workqueue_struct *writeback_write_wq; struct keybuf writeback_keys; diff -u linux-raspi2-4.4.0/drivers/md/bcache/request.c linux-raspi2-4.4.0/drivers/md/bcache/request.c --- linux-raspi2-4.4.0/drivers/md/bcache/request.c +++ linux-raspi2-4.4.0/drivers/md/bcache/request.c @@ -196,12 +196,12 @@ struct data_insert_op *op = container_of(cl, struct data_insert_op, cl); struct bio *bio = op->bio, *n; - if (atomic_sub_return(bio_sectors(bio), &op->c->sectors_to_gc) < 0) - wake_up_gc(op->c); - if (op->bypass) return bch_data_invalidate(cl); + if (atomic_sub_return(bio_sectors(bio), &op->c->sectors_to_gc) < 0) + wake_up_gc(op->c); + /* * Journal writes are marked REQ_FLUSH; if the original write was a * flush, it'll wait on the journal write. diff -u linux-raspi2-4.4.0/drivers/md/bcache/super.c linux-raspi2-4.4.0/drivers/md/bcache/super.c --- linux-raspi2-4.4.0/drivers/md/bcache/super.c +++ linux-raspi2-4.4.0/drivers/md/bcache/super.c @@ -1023,7 +1023,7 @@ } if (BDEV_STATE(&dc->sb) == BDEV_STATE_DIRTY) { - bch_sectors_dirty_init(dc); + bch_sectors_dirty_init(&dc->disk); atomic_set(&dc->has_dirty, 1); atomic_inc(&dc->count); bch_writeback_queue(dc); @@ -1056,6 +1056,8 @@ cancel_delayed_work_sync(&dc->writeback_rate_update); if (!IS_ERR_OR_NULL(dc->writeback_thread)) kthread_stop(dc->writeback_thread); + if (dc->writeback_write_wq) + destroy_workqueue(dc->writeback_write_wq); mutex_lock(&bch_register_lock); @@ -1227,6 +1229,7 @@ goto err; bcache_device_attach(d, c, u - c->uuids); + bch_sectors_dirty_init(d); bch_flash_dev_request_init(d); add_disk(d->disk); @@ -1959,6 +1962,8 @@ else err = "device busy"; mutex_unlock(&bch_register_lock); + if (!IS_ERR(bdev)) + bdput(bdev); if (attr == &ksysfs_register_quiet) goto out; } diff -u linux-raspi2-4.4.0/drivers/md/bcache/writeback.c linux-raspi2-4.4.0/drivers/md/bcache/writeback.c --- linux-raspi2-4.4.0/drivers/md/bcache/writeback.c +++ linux-raspi2-4.4.0/drivers/md/bcache/writeback.c @@ -21,7 +21,8 @@ static void __update_writeback_rate(struct cached_dev *dc) { struct cache_set *c = dc->disk.c; - uint64_t cache_sectors = c->nbuckets * c->sb.bucket_size; + uint64_t cache_sectors = c->nbuckets * c->sb.bucket_size - + bcache_flash_devs_sectors_dirty(c); uint64_t cache_dirty_target = div_u64(cache_sectors * dc->writeback_percent, 100); @@ -190,7 +191,7 @@ closure_bio_submit(&io->bio, cl); - continue_at(cl, write_dirty_finish, system_wq); + continue_at(cl, write_dirty_finish, io->dc->writeback_write_wq); } static void read_dirty_endio(struct bio *bio) @@ -210,7 +211,7 @@ closure_bio_submit(&io->bio, cl); - continue_at(cl, write_dirty, system_wq); + continue_at(cl, write_dirty, io->dc->writeback_write_wq); } static void read_dirty(struct cached_dev *dc) @@ -488,17 +489,17 @@ return MAP_CONTINUE; } -void bch_sectors_dirty_init(struct cached_dev *dc) +void bch_sectors_dirty_init(struct bcache_device *d) { struct sectors_dirty_init op; bch_btree_op_init(&op.op, -1); - op.inode = dc->disk.id; + op.inode = d->id; - bch_btree_map_keys(&op.op, dc->disk.c, &KEY(op.inode, 0, 0), + bch_btree_map_keys(&op.op, d->c, &KEY(op.inode, 0, 0), sectors_dirty_init_fn, 0); - dc->disk.sectors_dirty_last = bcache_dev_sectors_dirty(&dc->disk); + d->sectors_dirty_last = bcache_dev_sectors_dirty(d); } void bch_cached_dev_writeback_init(struct cached_dev *dc) @@ -522,6 +523,11 @@ int bch_cached_dev_writeback_start(struct cached_dev *dc) { + dc->writeback_write_wq = alloc_workqueue("bcache_writeback_wq", + WQ_MEM_RECLAIM, 0); + if (!dc->writeback_write_wq) + return -ENOMEM; + dc->writeback_thread = kthread_create(bch_writeback_thread, dc, "bcache_writeback"); if (IS_ERR(dc->writeback_thread)) diff -u linux-raspi2-4.4.0/drivers/md/bcache/writeback.h linux-raspi2-4.4.0/drivers/md/bcache/writeback.h --- linux-raspi2-4.4.0/drivers/md/bcache/writeback.h +++ linux-raspi2-4.4.0/drivers/md/bcache/writeback.h @@ -14,6 +14,25 @@ return ret; } +static inline uint64_t bcache_flash_devs_sectors_dirty(struct cache_set *c) +{ + uint64_t i, ret = 0; + + mutex_lock(&bch_register_lock); + + for (i = 0; i < c->nr_uuids; i++) { + struct bcache_device *d = c->devices[i]; + + if (!d || !UUID_FLASH_ONLY(&c->uuids[i])) + continue; + ret += bcache_dev_sectors_dirty(d); + } + + mutex_unlock(&bch_register_lock); + + return ret; +} + static inline unsigned offset_to_stripe(struct bcache_device *d, uint64_t offset) { @@ -85,7 +104,7 @@ void bcache_dev_sectors_dirty_add(struct cache_set *, unsigned, uint64_t, int); -void bch_sectors_dirty_init(struct cached_dev *dc); +void bch_sectors_dirty_init(struct bcache_device *); void bch_cached_dev_writeback_init(struct cached_dev *); int bch_cached_dev_writeback_start(struct cached_dev *); diff -u linux-raspi2-4.4.0/drivers/md/linear.c linux-raspi2-4.4.0/drivers/md/linear.c --- linux-raspi2-4.4.0/drivers/md/linear.c +++ linux-raspi2-4.4.0/drivers/md/linear.c @@ -223,7 +223,8 @@ * oldconf until no one uses it anymore. */ mddev_suspend(mddev); - oldconf = rcu_dereference(mddev->private); + oldconf = rcu_dereference_protected(mddev->private, + lockdep_is_held(&mddev->reconfig_mutex)); mddev->raid_disks++; WARN_ONCE(mddev->raid_disks != newconf->raid_disks, "copied raid_disks doesn't match mddev->raid_disks"); diff -u linux-raspi2-4.4.0/drivers/md/md.c linux-raspi2-4.4.0/drivers/md/md.c --- linux-raspi2-4.4.0/drivers/md/md.c +++ linux-raspi2-4.4.0/drivers/md/md.c @@ -1866,7 +1866,7 @@ } sb = page_address(rdev->sb_page); sb->data_size = cpu_to_le64(num_sectors); - sb->super_offset = rdev->sb_start; + sb->super_offset = cpu_to_le64(rdev->sb_start); sb->sb_csum = calc_sb_1_csum(sb); md_super_write(rdev->mddev, rdev, rdev->sb_start, rdev->sb_size, rdev->sb_page); @@ -2273,7 +2273,7 @@ /* Check if any mddev parameters have changed */ if ((mddev->dev_sectors != le64_to_cpu(sb->size)) || (mddev->reshape_position != le64_to_cpu(sb->reshape_position)) || - (mddev->layout != le64_to_cpu(sb->layout)) || + (mddev->layout != le32_to_cpu(sb->layout)) || (mddev->raid_disks != le32_to_cpu(sb->raid_disks)) || (mddev->chunk_sectors != le32_to_cpu(sb->chunksize))) return true; diff -u linux-raspi2-4.4.0/drivers/md/raid1.c linux-raspi2-4.4.0/drivers/md/raid1.c --- linux-raspi2-4.4.0/drivers/md/raid1.c +++ linux-raspi2-4.4.0/drivers/md/raid1.c @@ -1088,7 +1088,7 @@ */ DEFINE_WAIT(w); for (;;) { - flush_signals(current); + sigset_t full, old; prepare_to_wait(&conf->wait_barrier, &w, TASK_INTERRUPTIBLE); if (bio_end_sector(bio) <= mddev->suspend_lo || @@ -1097,7 +1097,10 @@ !md_cluster_ops->area_resyncing(mddev, WRITE, bio->bi_iter.bi_sector, bio_end_sector(bio)))) break; + sigfillset(&full); + sigprocmask(SIG_BLOCK, &full, &old); schedule(); + sigprocmask(SIG_SETMASK, &old, NULL); } finish_wait(&conf->wait_barrier, &w); } diff -u linux-raspi2-4.4.0/drivers/md/raid10.c linux-raspi2-4.4.0/drivers/md/raid10.c --- linux-raspi2-4.4.0/drivers/md/raid10.c +++ linux-raspi2-4.4.0/drivers/md/raid10.c @@ -1414,11 +1414,24 @@ mbio->bi_private = r10_bio; atomic_inc(&r10_bio->remaining); + + cb = blk_check_plugged(raid10_unplug, mddev, + sizeof(*plug)); + if (cb) + plug = container_of(cb, struct raid10_plug_cb, + cb); + else + plug = NULL; spin_lock_irqsave(&conf->device_lock, flags); - bio_list_add(&conf->pending_bio_list, mbio); - conf->pending_count++; + if (plug) { + bio_list_add(&plug->pending, mbio); + plug->pending_cnt++; + } else { + bio_list_add(&conf->pending_bio_list, mbio); + conf->pending_count++; + } spin_unlock_irqrestore(&conf->device_lock, flags); - if (!mddev_check_plugged(mddev)) + if (!plug) md_wakeup_thread(mddev->thread); } } diff -u linux-raspi2-4.4.0/drivers/md/raid5.c linux-raspi2-4.4.0/drivers/md/raid5.c --- linux-raspi2-4.4.0/drivers/md/raid5.c +++ linux-raspi2-4.4.0/drivers/md/raid5.c @@ -818,6 +818,14 @@ spin_unlock(&head->batch_head->batch_lock); goto unlock_out; } + /* + * We must assign batch_head of this stripe within the + * batch_lock, otherwise clear_batch_ready of batch head + * stripe could clear BATCH_READY bit of this stripe and + * this stripe->batch_head doesn't get assigned, which + * could confuse clear_batch_ready for this stripe + */ + sh->batch_head = head->batch_head; /* * at this point, head's BATCH_READY could be cleared, but we @@ -825,8 +833,6 @@ */ list_add(&sh->batch_list, &head->batch_list); spin_unlock(&head->batch_head->batch_lock); - - sh->batch_head = head->batch_head; } else { head->batch_head = head; sh->batch_head = head->batch_head; @@ -4258,7 +4264,8 @@ set_mask_bits(&sh->state, ~(STRIPE_EXPAND_SYNC_FLAGS | (1 << STRIPE_PREREAD_ACTIVE) | - (1 << STRIPE_DEGRADED)), + (1 << STRIPE_DEGRADED) | + (1 << STRIPE_ON_UNPLUG_LIST)), head_sh->state & (1 << STRIPE_INSYNC)); sh->check_state = head_sh->check_state; @@ -5279,12 +5286,15 @@ * userspace, we want an interruptible * wait. */ - flush_signals(current); prepare_to_wait(&conf->wait_for_overlap, &w, TASK_INTERRUPTIBLE); if (logical_sector >= mddev->suspend_lo && logical_sector < mddev->suspend_hi) { + sigset_t full, old; + sigfillset(&full); + sigprocmask(SIG_BLOCK, &full, &old); schedule(); + sigprocmask(SIG_SETMASK, &old, NULL); do_prepare = true; } goto retry; @@ -5818,6 +5828,10 @@ pr_debug("%d stripes handled\n", handled); spin_unlock_irq(&conf->device_lock); + + r5l_flush_stripe_to_raid(conf->log); + + async_tx_issue_pending_all(); blk_finish_plug(&plug); pr_debug("--- raid5worker inactive\n"); @@ -7528,12 +7542,10 @@ { if (!test_bit(MD_RECOVERY_INTR, &conf->mddev->recovery)) { - struct md_rdev *rdev; spin_lock_irq(&conf->device_lock); conf->previous_raid_disks = conf->raid_disks; - rdev_for_each(rdev, conf->mddev) - rdev->data_offset = rdev->new_data_offset; + md_finish_reshape(conf->mddev); smp_wmb(); conf->reshape_progress = MaxSector; conf->mddev->reshape_position = MaxSector; diff -u linux-raspi2-4.4.0/drivers/media/i2c/adv7604.c linux-raspi2-4.4.0/drivers/media/i2c/adv7604.c --- linux-raspi2-4.4.0/drivers/media/i2c/adv7604.c +++ linux-raspi2-4.4.0/drivers/media/i2c/adv7604.c @@ -2856,6 +2856,9 @@ state->pdata.alt_data_sat = 1; state->pdata.op_format_mode_sel = ADV7604_OP_FORMAT_MODE0; state->pdata.bus_order = ADV7604_BUS_ORDER_RGB; + state->pdata.dr_str_data = ADV76XX_DR_STR_MEDIUM_HIGH; + state->pdata.dr_str_clk = ADV76XX_DR_STR_MEDIUM_HIGH; + state->pdata.dr_str_sync = ADV76XX_DR_STR_MEDIUM_HIGH; return 0; } diff -u linux-raspi2-4.4.0/drivers/media/usb/cx231xx/cx231xx-core.c linux-raspi2-4.4.0/drivers/media/usb/cx231xx/cx231xx-core.c --- linux-raspi2-4.4.0/drivers/media/usb/cx231xx/cx231xx-core.c +++ linux-raspi2-4.4.0/drivers/media/usb/cx231xx/cx231xx-core.c @@ -356,7 +356,12 @@ */ if ((ven_req->wLength > 4) && ((ven_req->bRequest == 0x4) || (ven_req->bRequest == 0x5) || - (ven_req->bRequest == 0x6))) { + (ven_req->bRequest == 0x6) || + + /* Internal Master 3 Bus can send + * and receive only 4 bytes per time + */ + (ven_req->bRequest == 0x2))) { unsend_size = 0; pdata = ven_req->pBuff; diff -u linux-raspi2-4.4.0/drivers/media/v4l2-core/v4l2-compat-ioctl32.c linux-raspi2-4.4.0/drivers/media/v4l2-core/v4l2-compat-ioctl32.c --- linux-raspi2-4.4.0/drivers/media/v4l2-core/v4l2-compat-ioctl32.c +++ linux-raspi2-4.4.0/drivers/media/v4l2-core/v4l2-compat-ioctl32.c @@ -773,7 +773,8 @@ copy_to_user(&up->u, &kp->u, sizeof(kp->u)) || put_user(kp->pending, &up->pending) || put_user(kp->sequence, &up->sequence) || - compat_put_timespec(&kp->timestamp, &up->timestamp) || + put_user(kp->timestamp.tv_sec, &up->timestamp.tv_sec) || + put_user(kp->timestamp.tv_nsec, &up->timestamp.tv_nsec) || put_user(kp->id, &up->id) || copy_to_user(up->reserved, kp->reserved, 8 * sizeof(__u32))) return -EFAULT; diff -u linux-raspi2-4.4.0/drivers/misc/cxl/api.c linux-raspi2-4.4.0/drivers/misc/cxl/api.c --- linux-raspi2-4.4.0/drivers/misc/cxl/api.c +++ linux-raspi2-4.4.0/drivers/misc/cxl/api.c @@ -280,6 +280,10 @@ kernel = false; } + /* + * Increment driver use count. Enables global TLBIs for hash + * and callbacks to handle the segment table + */ cxl_ctx_get(); if ((rc = cxl_ops->attach_process(ctx, kernel, wed, 0))) { diff -u linux-raspi2-4.4.0/drivers/misc/cxl/file.c linux-raspi2-4.4.0/drivers/misc/cxl/file.c --- linux-raspi2-4.4.0/drivers/misc/cxl/file.c +++ linux-raspi2-4.4.0/drivers/misc/cxl/file.c @@ -94,7 +94,6 @@ pr_devel("afu_open pe: %i\n", ctx->pe); file->private_data = ctx; - cxl_ctx_get(); /* indicate success */ rc = 0; @@ -205,11 +204,18 @@ ctx->pid = get_task_pid(current, PIDTYPE_PID); ctx->glpid = get_task_pid(current->group_leader, PIDTYPE_PID); + /* + * Increment driver use count. Enables global TLBIs for hash + * and callbacks to handle the segment table + */ + cxl_ctx_get(); + trace_cxl_attach(ctx, work.work_element_descriptor, work.num_interrupts, amr); if ((rc = cxl_ops->attach_process(ctx, false, work.work_element_descriptor, amr))) { afu_release_irqs(ctx, ctx); + cxl_ctx_put(); goto out; } diff -u linux-raspi2-4.4.0/drivers/misc/mei/client.c linux-raspi2-4.4.0/drivers/misc/mei/client.c --- linux-raspi2-4.4.0/drivers/misc/mei/client.c +++ linux-raspi2-4.4.0/drivers/misc/mei/client.c @@ -1300,6 +1300,9 @@ return -EOPNOTSUPP; } + if (!mei_cl_is_connected(cl)) + return -ENODEV; + rets = pm_runtime_get(dev->dev); if (rets < 0 && rets != -EINPROGRESS) { pm_runtime_put_noidle(dev->dev); diff -u linux-raspi2-4.4.0/drivers/misc/mei/hw-me-regs.h linux-raspi2-4.4.0/drivers/misc/mei/hw-me-regs.h --- linux-raspi2-4.4.0/drivers/misc/mei/hw-me-regs.h +++ linux-raspi2-4.4.0/drivers/misc/mei/hw-me-regs.h @@ -125,6 +125,11 @@ #define MEI_DEV_ID_KBP 0xA2BA /* Kaby Point */ #define MEI_DEV_ID_KBP_2 0xA2BB /* Kaby Point 2 */ +#define MEI_DEV_ID_LBG 0xA1BA /* Lewisburg (SPT) */ + +#define MEI_DEV_ID_BXT_M 0x1A9A /* Broxton M */ +#define MEI_DEV_ID_APL_I 0x5A9A /* Apollo Lake I */ + /* * MEI HW Section */ diff -u linux-raspi2-4.4.0/drivers/misc/mei/pci-me.c linux-raspi2-4.4.0/drivers/misc/mei/pci-me.c --- linux-raspi2-4.4.0/drivers/misc/mei/pci-me.c +++ linux-raspi2-4.4.0/drivers/misc/mei/pci-me.c @@ -90,8 +90,12 @@ {MEI_PCI_DEVICE(MEI_DEV_ID_SPT_H, mei_me_pch8_sps_cfg)}, {MEI_PCI_DEVICE(MEI_DEV_ID_SPT_H_2, mei_me_pch8_sps_cfg)}, + {MEI_PCI_DEVICE(MEI_DEV_ID_LBG, mei_me_pch8_cfg)}, {MEI_PCI_DEVICE(MEI_DEV_ID_KBP, mei_me_pch8_cfg)}, {MEI_PCI_DEVICE(MEI_DEV_ID_KBP_2, mei_me_pch8_cfg)}, + {MEI_PCI_DEVICE(MEI_DEV_ID_BXT_M, mei_me_pch8_cfg)}, + {MEI_PCI_DEVICE(MEI_DEV_ID_APL_I, mei_me_pch8_cfg)}, + /* required last entry */ {0, } diff -u linux-raspi2-4.4.0/drivers/mmc/core/sdio_bus.c linux-raspi2-4.4.0/drivers/mmc/core/sdio_bus.c --- linux-raspi2-4.4.0/drivers/mmc/core/sdio_bus.c +++ linux-raspi2-4.4.0/drivers/mmc/core/sdio_bus.c @@ -266,7 +266,7 @@ sdio_free_func_cis(func); kfree(func->info); - + kfree(func->tmpbuf); kfree(func); } @@ -281,6 +281,16 @@ if (!func) return ERR_PTR(-ENOMEM); + /* + * allocate buffer separately to make sure it's properly aligned for + * DMA usage (incl. 64 bit DMA) + */ + func->tmpbuf = kmalloc(4, GFP_KERNEL); + if (!func->tmpbuf) { + kfree(func); + return ERR_PTR(-ENOMEM); + } + func->card = card; device_initialize(&func->dev); diff -u linux-raspi2-4.4.0/drivers/net/bonding/bond_main.c linux-raspi2-4.4.0/drivers/net/bonding/bond_main.c --- linux-raspi2-4.4.0/drivers/net/bonding/bond_main.c +++ linux-raspi2-4.4.0/drivers/net/bonding/bond_main.c @@ -1793,7 +1793,7 @@ */ static int __bond_release_one(struct net_device *bond_dev, struct net_device *slave_dev, - bool all) + bool all, bool unregister) { struct bonding *bond = netdev_priv(bond_dev); struct slave *slave, *oldcurrent; @@ -1935,7 +1935,10 @@ dev_set_mac_address(slave_dev, &addr); } - dev_set_mtu(slave_dev, slave->original_mtu); + if (unregister) + __dev_set_mtu(slave_dev, slave->original_mtu); + else + dev_set_mtu(slave_dev, slave->original_mtu); slave_dev->priv_flags &= ~IFF_BONDING; @@ -1947,7 +1950,7 @@ /* A wrapper used because of ndo_del_link */ int bond_release(struct net_device *bond_dev, struct net_device *slave_dev) { - return __bond_release_one(bond_dev, slave_dev, false); + return __bond_release_one(bond_dev, slave_dev, false, false); } /* First release a slave and then destroy the bond if no more slaves are left. @@ -1959,7 +1962,7 @@ struct bonding *bond = netdev_priv(bond_dev); int ret; - ret = bond_release(bond_dev, slave_dev); + ret = __bond_release_one(bond_dev, slave_dev, false, true); if (ret == 0 && !bond_has_slaves(bond)) { bond_dev->priv_flags |= IFF_DISABLE_NETPOLL; netdev_info(bond_dev, "Destroying bond %s\n", @@ -3008,7 +3011,7 @@ if (bond_dev->type != ARPHRD_ETHER) bond_release_and_destroy(bond_dev, slave_dev); else - bond_release(bond_dev, slave_dev); + __bond_release_one(bond_dev, slave_dev, false, true); break; case NETDEV_UP: case NETDEV_CHANGE: @@ -4207,7 +4210,7 @@ /* Release the bonded slaves */ bond_for_each_slave(bond, slave, iter) - __bond_release_one(bond_dev, slave->dev, true); + __bond_release_one(bond_dev, slave->dev, true, true); netdev_info(bond_dev, "Released all slaves\n"); arr = rtnl_dereference(bond->slave_arr); diff -u linux-raspi2-4.4.0/drivers/net/can/c_can/c_can_pci.c linux-raspi2-4.4.0/drivers/net/can/c_can/c_can_pci.c --- linux-raspi2-4.4.0/drivers/net/can/c_can/c_can_pci.c +++ linux-raspi2-4.4.0/drivers/net/can/c_can/c_can_pci.c @@ -178,7 +178,6 @@ break; case BOSCH_D_CAN: priv->regs = reg_map_d_can; - priv->can.ctrlmode_supported |= CAN_CTRLMODE_3_SAMPLES; break; default: ret = -EINVAL; diff -u linux-raspi2-4.4.0/drivers/net/can/usb/gs_usb.c linux-raspi2-4.4.0/drivers/net/can/usb/gs_usb.c --- linux-raspi2-4.4.0/drivers/net/can/usb/gs_usb.c +++ linux-raspi2-4.4.0/drivers/net/can/usb/gs_usb.c @@ -356,6 +356,8 @@ gs_free_tx_context(txc); + atomic_dec(&dev->active_tx_urbs); + netif_wake_queue(netdev); } @@ -444,14 +446,6 @@ urb->transfer_buffer_length, urb->transfer_buffer, urb->transfer_dma); - - atomic_dec(&dev->active_tx_urbs); - - if (!netif_device_present(netdev)) - return; - - if (netif_queue_stopped(netdev)) - netif_wake_queue(netdev); } static netdev_tx_t gs_can_start_xmit(struct sk_buff *skb, struct net_device *netdev) diff -u linux-raspi2-4.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_hw.c linux-raspi2-4.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_hw.c --- linux-raspi2-4.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_hw.c +++ linux-raspi2-4.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_hw.c @@ -681,27 +681,6 @@ static void xgene_gport_shutdown(struct xgene_enet_pdata *pdata) { struct device *dev = &pdata->pdev->dev; - struct xgene_enet_desc_ring *ring; - u32 pb, val; - int i; - - pb = 0; - for (i = 0; i < pdata->rxq_cnt; i++) { - ring = pdata->rx_ring[i]->buf_pool; - - val = xgene_enet_ring_bufnum(ring->id); - pb |= BIT(val - 0x20); - } - xgene_enet_wr_ring_if(pdata, ENET_CFGSSQMIFPRESET_ADDR, pb); - - pb = 0; - for (i = 0; i < pdata->txq_cnt; i++) { - ring = pdata->tx_ring[i]; - - val = xgene_enet_ring_bufnum(ring->id); - pb |= BIT(val); - } - xgene_enet_wr_ring_if(pdata, ENET_CFGSSQMIWQRESET_ADDR, pb); if (dev->of_node) { if (!IS_ERR(pdata->clk)) diff -u linux-raspi2-4.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_main.c linux-raspi2-4.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_main.c --- linux-raspi2-4.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_main.c +++ linux-raspi2-4.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_main.c @@ -1706,8 +1706,8 @@ xgene_enet_mdio_remove(pdata); unregister_netdev(ndev); - pdata->port_ops->shutdown(pdata); xgene_enet_delete_desc_rings(pdata); + pdata->port_ops->shutdown(pdata); free_netdev(ndev); return 0; diff -u linux-raspi2-4.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_sgmac.c linux-raspi2-4.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_sgmac.c --- linux-raspi2-4.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_sgmac.c +++ linux-raspi2-4.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_sgmac.c @@ -527,27 +527,6 @@ static void xgene_enet_shutdown(struct xgene_enet_pdata *p) { struct device *dev = &p->pdev->dev; - struct xgene_enet_desc_ring *ring; - u32 pb, val; - int i; - - pb = 0; - for (i = 0; i < p->rxq_cnt; i++) { - ring = p->rx_ring[i]->buf_pool; - - val = xgene_enet_ring_bufnum(ring->id); - pb |= BIT(val - 0x20); - } - xgene_enet_wr_ring_if(p, ENET_CFGSSQMIFPRESET_ADDR, pb); - - pb = 0; - for (i = 0; i < p->txq_cnt; i++) { - ring = p->tx_ring[i]; - - val = xgene_enet_ring_bufnum(ring->id); - pb |= BIT(val); - } - xgene_enet_wr_ring_if(p, ENET_CFGSSQMIWQRESET_ADDR, pb); if (dev->of_node) { if (!IS_ERR(p->clk)) diff -u linux-raspi2-4.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_xgmac.c linux-raspi2-4.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_xgmac.c --- linux-raspi2-4.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_xgmac.c +++ linux-raspi2-4.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_xgmac.c @@ -309,27 +309,6 @@ static void xgene_enet_shutdown(struct xgene_enet_pdata *pdata) { struct device *dev = &pdata->pdev->dev; - struct xgene_enet_desc_ring *ring; - u32 pb, val; - int i; - - pb = 0; - for (i = 0; i < pdata->rxq_cnt; i++) { - ring = pdata->rx_ring[i]->buf_pool; - - val = xgene_enet_ring_bufnum(ring->id); - pb |= BIT(val - 0x20); - } - xgene_enet_wr_ring_if(pdata, ENET_CFGSSQMIFPRESET_ADDR, pb); - - pb = 0; - for (i = 0; i < pdata->txq_cnt; i++) { - ring = pdata->tx_ring[i]; - - val = xgene_enet_ring_bufnum(ring->id); - pb |= BIT(val); - } - xgene_enet_wr_ring_if(pdata, ENET_CFGSSQMIWQRESET_ADDR, pb); if (dev->of_node) { if (!IS_ERR(pdata->clk)) diff -u linux-raspi2-4.4.0/drivers/net/ethernet/broadcom/bgmac.c linux-raspi2-4.4.0/drivers/net/ethernet/broadcom/bgmac.c --- linux-raspi2-4.4.0/drivers/net/ethernet/broadcom/bgmac.c +++ linux-raspi2-4.4.0/drivers/net/ethernet/broadcom/bgmac.c @@ -1583,6 +1583,11 @@ dev_warn(&core->dev, "Using random MAC: %pM\n", mac); } + /* This (reset &) enable is not preset in specs or reference driver but + * Broadcom does it in arch PCI code when enabling fake PCI device. + */ + bcma_core_enable(core, 0); + /* Allocation and references */ net_dev = alloc_etherdev(sizeof(*bgmac)); if (!net_dev) diff -u linux-raspi2-4.4.0/drivers/net/ethernet/broadcom/tg3.c linux-raspi2-4.4.0/drivers/net/ethernet/broadcom/tg3.c --- linux-raspi2-4.4.0/drivers/net/ethernet/broadcom/tg3.c +++ linux-raspi2-4.4.0/drivers/net/ethernet/broadcom/tg3.c @@ -8723,11 +8723,14 @@ tg3_mem_rx_release(tp); tg3_mem_tx_release(tp); + /* Protect tg3_get_stats64() from reading freed tp->hw_stats. */ + tg3_full_lock(tp, 0); if (tp->hw_stats) { dma_free_coherent(&tp->pdev->dev, sizeof(struct tg3_hw_stats), tp->hw_stats, tp->stats_mapping); tp->hw_stats = NULL; } + tg3_full_unlock(tp); } /* diff -u linux-raspi2-4.4.0/drivers/net/ethernet/freescale/gianfar.c linux-raspi2-4.4.0/drivers/net/ethernet/freescale/gianfar.c --- linux-raspi2-4.4.0/drivers/net/ethernet/freescale/gianfar.c +++ linux-raspi2-4.4.0/drivers/net/ethernet/freescale/gianfar.c @@ -3676,7 +3676,7 @@ u32 tempval1 = gfar_read(®s->maccfg1); u32 tempval = gfar_read(®s->maccfg2); u32 ecntrl = gfar_read(®s->ecntrl); - u32 tx_flow_oldval = (tempval & MACCFG1_TX_FLOW); + u32 tx_flow_oldval = (tempval1 & MACCFG1_TX_FLOW); if (phydev->duplex != priv->oldduplex) { if (!(phydev->duplex)) diff -u linux-raspi2-4.4.0/drivers/net/ethernet/intel/i40e/i40e_txrx.c linux-raspi2-4.4.0/drivers/net/ethernet/intel/i40e/i40e_txrx.c --- linux-raspi2-4.4.0/drivers/net/ethernet/intel/i40e/i40e_txrx.c +++ linux-raspi2-4.4.0/drivers/net/ethernet/intel/i40e/i40e_txrx.c @@ -2617,9 +2617,7 @@ return false; /* We need to walk through the list and validate that each group - * of 6 fragments totals at least gso_size. However we don't need - * to perform such validation on the last 6 since the last 6 cannot - * inherit any data from a descriptor after them. + * of 6 fragments totals at least gso_size. */ nr_frags -= I40E_MAX_BUFFER_TXD - 2; frag = &skb_shinfo(skb)->frags[0]; @@ -2650,8 +2648,7 @@ if (sum < 0) return true; - /* use pre-decrement to avoid processing last fragment */ - if (!--nr_frags) + if (!nr_frags--) break; sum -= skb_frag_size(stale++); diff -u linux-raspi2-4.4.0/drivers/net/ethernet/intel/i40evf/i40e_txrx.c linux-raspi2-4.4.0/drivers/net/ethernet/intel/i40evf/i40e_txrx.c --- linux-raspi2-4.4.0/drivers/net/ethernet/intel/i40evf/i40e_txrx.c +++ linux-raspi2-4.4.0/drivers/net/ethernet/intel/i40evf/i40e_txrx.c @@ -1820,9 +1820,7 @@ return false; /* We need to walk through the list and validate that each group - * of 6 fragments totals at least gso_size. However we don't need - * to perform such validation on the last 6 since the last 6 cannot - * inherit any data from a descriptor after them. + * of 6 fragments totals at least gso_size. */ nr_frags -= I40E_MAX_BUFFER_TXD - 2; frag = &skb_shinfo(skb)->frags[0]; @@ -1853,8 +1851,7 @@ if (sum < 0) return true; - /* use pre-decrement to avoid processing last fragment */ - if (!--nr_frags) + if (!nr_frags--) break; sum -= skb_frag_size(stale++); diff -u linux-raspi2-4.4.0/drivers/net/ethernet/intel/igb/e1000_82575.c linux-raspi2-4.4.0/drivers/net/ethernet/intel/igb/e1000_82575.c --- linux-raspi2-4.4.0/drivers/net/ethernet/intel/igb/e1000_82575.c +++ linux-raspi2-4.4.0/drivers/net/ethernet/intel/igb/e1000_82575.c @@ -328,6 +328,9 @@ phy->ops.set_d3_lplu_state = igb_set_d3_lplu_state_82580; phy->ops.force_speed_duplex = igb_phy_force_speed_duplex_m88; break; + case BCM54616_E_PHY_ID: + phy->type = e1000_phy_bcm54616; + break; default: ret_val = -E1000_ERR_PHY; goto out; @@ -1603,6 +1606,7 @@ case e1000_i350: case e1000_i210: case e1000_i211: + case e1000_i354: phpm_reg = rd32(E1000_82580_PHY_POWER_MGMT); phpm_reg &= ~E1000_82580_PM_GO_LINKD; wr32(E1000_82580_PHY_POWER_MGMT, phpm_reg); @@ -1647,6 +1651,8 @@ case e1000_phy_82580: ret_val = igb_copper_link_setup_82580(hw); break; + case e1000_phy_bcm54616: + break; default: ret_val = -E1000_ERR_PHY; break; diff -u linux-raspi2-4.4.0/drivers/net/ethernet/intel/igb/e1000_defines.h linux-raspi2-4.4.0/drivers/net/ethernet/intel/igb/e1000_defines.h --- linux-raspi2-4.4.0/drivers/net/ethernet/intel/igb/e1000_defines.h +++ linux-raspi2-4.4.0/drivers/net/ethernet/intel/igb/e1000_defines.h @@ -867,6 +867,7 @@ #define I210_I_PHY_ID 0x01410C00 #define M88E1543_E_PHY_ID 0x01410EA0 #define M88E1512_E_PHY_ID 0x01410DD0 +#define BCM54616_E_PHY_ID 0x03625D10 /* M88E1000 Specific Registers */ #define M88E1000_PHY_SPEC_CTRL 0x10 /* PHY Specific Control Register */ diff -u linux-raspi2-4.4.0/drivers/net/ethernet/intel/igb/e1000_hw.h linux-raspi2-4.4.0/drivers/net/ethernet/intel/igb/e1000_hw.h --- linux-raspi2-4.4.0/drivers/net/ethernet/intel/igb/e1000_hw.h +++ linux-raspi2-4.4.0/drivers/net/ethernet/intel/igb/e1000_hw.h @@ -128,6 +128,7 @@ e1000_phy_ife, e1000_phy_82580, e1000_phy_i210, + e1000_phy_bcm54616, }; enum e1000_bus_type { diff -u linux-raspi2-4.4.0/drivers/net/ethernet/intel/igb/igb_main.c linux-raspi2-4.4.0/drivers/net/ethernet/intel/igb/igb_main.c --- linux-raspi2-4.4.0/drivers/net/ethernet/intel/igb/igb_main.c +++ linux-raspi2-4.4.0/drivers/net/ethernet/intel/igb/igb_main.c @@ -108,6 +108,7 @@ { PCI_VDEVICE(INTEL, E1000_DEV_ID_82575EB_COPPER), board_82575 }, { PCI_VDEVICE(INTEL, E1000_DEV_ID_82575EB_FIBER_SERDES), board_82575 }, { PCI_VDEVICE(INTEL, E1000_DEV_ID_82575GB_QUAD_COPPER), board_82575 }, + { PCI_VDEVICE(INTEL, E1000_DEV_ID_I354_SGMII), board_82575 }, /* required last entry */ {0, } }; @@ -7744,6 +7745,11 @@ pci_enable_wake(pdev, PCI_D3hot, 0); pci_enable_wake(pdev, PCI_D3cold, 0); + /* In case of PCI error, adapter lose its HW address + * so we should re-assign it here. + */ + hw->hw_addr = adapter->io_addr; + igb_reset(adapter); wr32(E1000_WUS, ~0); result = PCI_ERS_RESULT_RECOVERED; diff -u linux-raspi2-4.4.0/drivers/net/ethernet/marvell/mvpp2.c linux-raspi2-4.4.0/drivers/net/ethernet/marvell/mvpp2.c --- linux-raspi2-4.4.0/drivers/net/ethernet/marvell/mvpp2.c +++ linux-raspi2-4.4.0/drivers/net/ethernet/marvell/mvpp2.c @@ -4415,13 +4415,12 @@ struct mvpp2_txq_pcpu_buf *tx_buf = txq_pcpu->buffs + txq_pcpu->txq_get_index; - mvpp2_txq_inc_get(txq_pcpu); - dma_unmap_single(port->dev->dev.parent, tx_buf->phys, tx_buf->size, DMA_TO_DEVICE); - if (!tx_buf->skb) - continue; - dev_kfree_skb_any(tx_buf->skb); + if (tx_buf->skb) + dev_kfree_skb_any(tx_buf->skb); + + mvpp2_txq_inc_get(txq_pcpu); } } diff -u linux-raspi2-4.4.0/drivers/net/ethernet/mellanox/mlx4/en_clock.c linux-raspi2-4.4.0/drivers/net/ethernet/mellanox/mlx4/en_clock.c --- linux-raspi2-4.4.0/drivers/net/ethernet/mellanox/mlx4/en_clock.c +++ linux-raspi2-4.4.0/drivers/net/ethernet/mellanox/mlx4/en_clock.c @@ -88,10 +88,17 @@ } } +#define MLX4_EN_WRAP_AROUND_SEC 10UL +/* By scheduling the overflow check every 5 seconds, we have a reasonably + * good chance we wont miss a wrap around. + * TOTO: Use a timer instead of a work queue to increase the guarantee. + */ +#define MLX4_EN_OVERFLOW_PERIOD (MLX4_EN_WRAP_AROUND_SEC * HZ / 2) + void mlx4_en_ptp_overflow_check(struct mlx4_en_dev *mdev) { bool timeout = time_is_before_jiffies(mdev->last_overflow_check + - mdev->overflow_period); + MLX4_EN_OVERFLOW_PERIOD); unsigned long flags; if (timeout) { @@ -236,7 +243,6 @@ .enable = mlx4_en_phc_enable, }; -#define MLX4_EN_WRAP_AROUND_SEC 10ULL /* This function calculates the max shift that enables the user range * of MLX4_EN_WRAP_AROUND_SEC values in the cycles register. @@ -258,7 +264,6 @@ { struct mlx4_dev *dev = mdev->dev; unsigned long flags; - u64 ns, zero = 0; /* mlx4_en_init_timestamp is called for each netdev. * mdev->ptp_clock is common for all ports, skip initialization if @@ -282,13 +287,6 @@ ktime_to_ns(ktime_get_real())); write_unlock_irqrestore(&mdev->clock_lock, flags); - /* Calculate period in seconds to call the overflow watchdog - to make - * sure counter is checked at least once every wrap around. - */ - ns = cyclecounter_cyc2ns(&mdev->cycles, mdev->cycles.mask, zero, &zero); - do_div(ns, NSEC_PER_SEC / 2 / HZ); - mdev->overflow_period = ns; - /* Configure the PHC */ mdev->ptp_clock_info = mlx4_en_ptp_clock_info; snprintf(mdev->ptp_clock_info.name, 16, "mlx4 ptp"); diff -u linux-raspi2-4.4.0/drivers/net/ethernet/mellanox/mlx4/main.c linux-raspi2-4.4.0/drivers/net/ethernet/mellanox/mlx4/main.c --- linux-raspi2-4.4.0/drivers/net/ethernet/mellanox/mlx4/main.c +++ linux-raspi2-4.4.0/drivers/net/ethernet/mellanox/mlx4/main.c @@ -812,8 +812,6 @@ return -ENOSYS; } - mlx4_log_num_mgm_entry_size = hca_param.log_mc_entry_sz; - dev->caps.hca_core_clock = hca_param.hca_core_clock; memset(&dev_cap, 0, sizeof(dev_cap)); diff -u linux-raspi2-4.4.0/drivers/net/ethernet/mellanox/mlx5/core/cmd.c linux-raspi2-4.4.0/drivers/net/ethernet/mellanox/mlx5/core/cmd.c --- linux-raspi2-4.4.0/drivers/net/ethernet/mellanox/mlx5/core/cmd.c +++ linux-raspi2-4.4.0/drivers/net/ethernet/mellanox/mlx5/core/cmd.c @@ -630,6 +630,10 @@ pr_debug("\n"); } +static void free_msg(struct mlx5_core_dev *dev, struct mlx5_cmd_msg *msg); +static void mlx5_free_cmd_msg(struct mlx5_core_dev *dev, + struct mlx5_cmd_msg *msg); + static void cmd_work_handler(struct work_struct *work) { struct mlx5_cmd_work_ent *ent = container_of(work, struct mlx5_cmd_work_ent, work); @@ -638,16 +642,27 @@ struct mlx5_cmd_layout *lay; struct semaphore *sem; unsigned long flags; + int alloc_ret; sem = ent->page_queue ? &cmd->pages_sem : &cmd->sem; down(sem); if (!ent->page_queue) { - ent->idx = alloc_ent(cmd); - if (ent->idx < 0) { + alloc_ret = alloc_ent(cmd); + if (alloc_ret < 0) { + if (ent->callback) { + ent->callback(-EAGAIN, ent->context); + mlx5_free_cmd_msg(dev, ent->out); + free_msg(dev, ent->in); + free_cmd(ent); + } else { + ent->ret = -EAGAIN; + complete(&ent->done); + } mlx5_core_err(dev, "failed to allocate command entry\n"); up(sem); return; } + ent->idx = alloc_ret; } else { ent->idx = cmd->max_reg_cmds; spin_lock_irqsave(&cmd->alloc_lock, flags); diff -u linux-raspi2-4.4.0/drivers/net/ethernet/renesas/sh_eth.c linux-raspi2-4.4.0/drivers/net/ethernet/renesas/sh_eth.c --- linux-raspi2-4.4.0/drivers/net/ethernet/renesas/sh_eth.c +++ linux-raspi2-4.4.0/drivers/net/ethernet/renesas/sh_eth.c @@ -750,6 +750,7 @@ .tsu = 1, .hw_crc = 1, .select_mii = 1, + .shift_rd0 = 1, }; /* SH7763 */ @@ -818,6 +819,7 @@ .rpadir_value = 2 << 16, .no_trimd = 1, .no_ade = 1, + .hw_crc = 1, .tsu = 1, .select_mii = 1, .shift_rd0 = 1, diff -u linux-raspi2-4.4.0/drivers/net/hyperv/netvsc_drv.c linux-raspi2-4.4.0/drivers/net/hyperv/netvsc_drv.c --- linux-raspi2-4.4.0/drivers/net/hyperv/netvsc_drv.c +++ linux-raspi2-4.4.0/drivers/net/hyperv/netvsc_drv.c @@ -204,6 +204,36 @@ return ppi; } +/* Azure hosts don't support non-TCP port numbers in hashing yet. We compute + * hash for non-TCP traffic with only IP numbers. + */ +static inline u32 netvsc_get_hash(struct sk_buff *skb, struct sock *sk) +{ + struct flow_keys flow; + u32 hash; + static u32 hashrnd __read_mostly; + + net_get_random_once(&hashrnd, sizeof(hashrnd)); + + if (!skb_flow_dissect_flow_keys(skb, &flow, 0)) + return 0; + + if (flow.basic.ip_proto == IPPROTO_TCP) { + return skb_get_hash(skb); + } else { + if (flow.basic.n_proto == htons(ETH_P_IP)) + hash = jhash2((u32 *)&flow.addrs.v4addrs, 2, hashrnd); + else if (flow.basic.n_proto == htons(ETH_P_IPV6)) + hash = jhash2((u32 *)&flow.addrs.v6addrs, 8, hashrnd); + else + hash = 0; + + skb_set_hash(skb, hash, PKT_HASH_TYPE_L3); + } + + return hash; +} + static u16 netvsc_select_queue(struct net_device *ndev, struct sk_buff *skb, void *accel_priv, select_queue_fallback_t fallback) { @@ -215,7 +245,7 @@ if (nvsc_dev == NULL || ndev->real_num_tx_queues <= 1) return 0; - hash = skb_get_hash(skb); + hash = netvsc_get_hash(skb, skb->sk); q_idx = nvsc_dev->send_table[hash % VRSS_SEND_TAB_SIZE] % ndev->real_num_tx_queues; diff -u linux-raspi2-4.4.0/drivers/net/phy/dp83640.c linux-raspi2-4.4.0/drivers/net/phy/dp83640.c --- linux-raspi2-4.4.0/drivers/net/phy/dp83640.c +++ linux-raspi2-4.4.0/drivers/net/phy/dp83640.c @@ -907,7 +907,7 @@ if (overflow) { pr_debug("tx timestamp queue overflow, count %d\n", overflow); while (skb) { - skb_complete_tx_timestamp(skb, NULL); + kfree_skb(skb); skb = skb_dequeue(&dp83640->tx_queue); } return; diff -u linux-raspi2-4.4.0/drivers/net/phy/phy.c linux-raspi2-4.4.0/drivers/net/phy/phy.c --- linux-raspi2-4.4.0/drivers/net/phy/phy.c +++ linux-raspi2-4.4.0/drivers/net/phy/phy.c @@ -918,6 +918,15 @@ if (old_link != phydev->link) phydev->state = PHY_CHANGELINK; } + /* + * Failsafe: check that nobody set phydev->link=0 between two + * poll cycles, otherwise we won't leave RUNNING state as long + * as link remains down. + */ + if (!phydev->link && phydev->state == PHY_RUNNING) { + phydev->state = PHY_CHANGELINK; + dev_err(&phydev->dev, "no link in PHY_RUNNING\n"); + } break; case PHY_CHANGELINK: err = phy_read_status(phydev); diff -u linux-raspi2-4.4.0/drivers/net/team/team.c linux-raspi2-4.4.0/drivers/net/team/team.c --- linux-raspi2-4.4.0/drivers/net/team/team.c +++ linux-raspi2-4.4.0/drivers/net/team/team.c @@ -2344,8 +2344,10 @@ hdr = genlmsg_put(skb, portid, seq, &team_nl_family, flags | NLM_F_MULTI, TEAM_CMD_OPTIONS_GET); - if (!hdr) + if (!hdr) { + nlmsg_free(skb); return -EMSGSIZE; + } if (nla_put_u32(skb, TEAM_ATTR_TEAM_IFINDEX, team->dev->ifindex)) goto nla_put_failure; @@ -2612,8 +2614,10 @@ hdr = genlmsg_put(skb, portid, seq, &team_nl_family, flags | NLM_F_MULTI, TEAM_CMD_PORT_LIST_GET); - if (!hdr) + if (!hdr) { + nlmsg_free(skb); return -EMSGSIZE; + } if (nla_put_u32(skb, TEAM_ATTR_TEAM_IFINDEX, team->dev->ifindex)) goto nla_put_failure; diff -u linux-raspi2-4.4.0/drivers/net/tun.c linux-raspi2-4.4.0/drivers/net/tun.c --- linux-raspi2-4.4.0/drivers/net/tun.c +++ linux-raspi2-4.4.0/drivers/net/tun.c @@ -1195,11 +1195,13 @@ switch (tun->flags & TUN_TYPE_MASK) { case IFF_TUN: if (tun->flags & IFF_NO_PI) { - switch (skb->data[0] & 0xf0) { - case 0x40: + u8 ip_version = skb->len ? (skb->data[0] >> 4) : 0; + + switch (ip_version) { + case 4: pi.proto = htons(ETH_P_IP); break; - case 0x60: + case 6: pi.proto = htons(ETH_P_IPV6); break; default: diff -u linux-raspi2-4.4.0/drivers/net/usb/cdc_mbim.c linux-raspi2-4.4.0/drivers/net/usb/cdc_mbim.c --- linux-raspi2-4.4.0/drivers/net/usb/cdc_mbim.c +++ linux-raspi2-4.4.0/drivers/net/usb/cdc_mbim.c @@ -626,6 +626,14 @@ { USB_VENDOR_AND_INTERFACE_INFO(0x12d1, USB_CLASS_COMM, USB_CDC_SUBCLASS_MBIM, USB_CDC_PROTO_NONE), .driver_info = (unsigned long)&cdc_mbim_info_ndp_to_end, }, + + /* The HP lt4132 (03f0:a31d) is a rebranded Huawei ME906s-158, + * therefore it too requires the above "NDP to end" quirk. + */ + { USB_DEVICE_AND_INTERFACE_INFO(0x03f0, 0xa31d, USB_CLASS_COMM, USB_CDC_SUBCLASS_MBIM, USB_CDC_PROTO_NONE), + .driver_info = (unsigned long)&cdc_mbim_info_ndp_to_end, + }, + /* default entry */ { USB_INTERFACE_INFO(USB_CLASS_COMM, USB_CDC_SUBCLASS_MBIM, USB_CDC_PROTO_NONE), .driver_info = (unsigned long)&cdc_mbim_info_zlp, diff -u linux-raspi2-4.4.0/drivers/net/usb/cdc_ncm.c linux-raspi2-4.4.0/drivers/net/usb/cdc_ncm.c --- linux-raspi2-4.4.0/drivers/net/usb/cdc_ncm.c +++ linux-raspi2-4.4.0/drivers/net/usb/cdc_ncm.c @@ -724,8 +724,10 @@ u8 *buf; int len; int temp; + int err; u8 iface_no; struct usb_cdc_parsed_header hdr; + u16 curr_ntb_format; ctx = kzalloc(sizeof(*ctx), GFP_KERNEL); if (!ctx) @@ -823,6 +825,32 @@ goto error2; } + /* + * Some Huawei devices have been observed to come out of reset in NDP32 mode. + * Let's check if this is the case, and set the device to NDP16 mode again if + * needed. + */ + if (ctx->drvflags & CDC_NCM_FLAG_RESET_NTB16) { + err = usbnet_read_cmd(dev, USB_CDC_GET_NTB_FORMAT, + USB_TYPE_CLASS | USB_DIR_IN | USB_RECIP_INTERFACE, + 0, iface_no, &curr_ntb_format, 2); + if (err < 0) { + goto error2; + } + + if (curr_ntb_format == USB_CDC_NCM_NTB32_FORMAT) { + dev_info(&intf->dev, "resetting NTB format to 16-bit"); + err = usbnet_write_cmd(dev, USB_CDC_SET_NTB_FORMAT, + USB_TYPE_CLASS | USB_DIR_OUT + | USB_RECIP_INTERFACE, + USB_CDC_NCM_NTB16_FORMAT, + iface_no, NULL, 0); + + if (err < 0) + goto error2; + } + } + cdc_ncm_find_endpoints(dev, ctx->data); cdc_ncm_find_endpoints(dev, ctx->control); if (!dev->in || !dev->out || !dev->status) { diff -u linux-raspi2-4.4.0/drivers/net/usb/qmi_wwan.c linux-raspi2-4.4.0/drivers/net/usb/qmi_wwan.c --- linux-raspi2-4.4.0/drivers/net/usb/qmi_wwan.c +++ linux-raspi2-4.4.0/drivers/net/usb/qmi_wwan.c @@ -707,6 +707,7 @@ {QMI_FIXED_INTF(0x19d2, 0x1428, 2)}, /* Telewell TW-LTE 4G v2 */ {QMI_FIXED_INTF(0x19d2, 0x2002, 4)}, /* ZTE (Vodafone) K3765-Z */ {QMI_FIXED_INTF(0x2001, 0x7e19, 4)}, /* D-Link DWM-221 B1 */ + {QMI_FIXED_INTF(0x2001, 0x7e35, 4)}, /* D-Link DWM-222 */ {QMI_FIXED_INTF(0x0f3d, 0x68a2, 8)}, /* Sierra Wireless MC7700 */ {QMI_FIXED_INTF(0x114f, 0x68a2, 8)}, /* Sierra Wireless MC7750 */ {QMI_FIXED_INTF(0x1199, 0x68a2, 8)}, /* Sierra Wireless MC7710 in QMI mode */ diff -u linux-raspi2-4.4.0/drivers/net/usb/r8152.c linux-raspi2-4.4.0/drivers/net/usb/r8152.c --- linux-raspi2-4.4.0/drivers/net/usb/r8152.c +++ linux-raspi2-4.4.0/drivers/net/usb/r8152.c @@ -1350,6 +1350,7 @@ spin_lock_init(&tp->rx_lock); spin_lock_init(&tp->tx_lock); INIT_LIST_HEAD(&tp->tx_free); + INIT_LIST_HEAD(&tp->rx_done); skb_queue_head_init(&tp->tx_queue); skb_queue_head_init(&tp->rx_queue); diff -u linux-raspi2-4.4.0/drivers/net/usb/usbnet.c linux-raspi2-4.4.0/drivers/net/usb/usbnet.c --- linux-raspi2-4.4.0/drivers/net/usb/usbnet.c +++ linux-raspi2-4.4.0/drivers/net/usb/usbnet.c @@ -1990,6 +1990,10 @@ elength = 1; goto next_desc; } + if ((buflen < elength) || (elength < 3)) { + dev_err(&intf->dev, "invalid descriptor buffer length\n"); + break; + } if (buffer[1] != USB_DT_CS_INTERFACE) { dev_err(&intf->dev, "skipping garbage\n"); goto next_desc; diff -u linux-raspi2-4.4.0/drivers/net/vrf.c linux-raspi2-4.4.0/drivers/net/vrf.c --- linux-raspi2-4.4.0/drivers/net/vrf.c +++ linux-raspi2-4.4.0/drivers/net/vrf.c @@ -424,6 +424,7 @@ if (unlikely(!neigh)) neigh = __neigh_create(&nd_tbl, nexthop, dst->dev, false); if (!IS_ERR(neigh)) { + sock_confirm_neigh(skb, neigh); ret = dst_neigh_output(dst, neigh, skb); rcu_read_unlock_bh(); return ret; @@ -550,8 +551,10 @@ neigh = __ipv4_neigh_lookup_noref(dev, nexthop); if (unlikely(!neigh)) neigh = __neigh_create(&arp_tbl, &nexthop, dev, false); - if (!IS_ERR(neigh)) + if (!IS_ERR(neigh)) { + sock_confirm_neigh(skb, neigh); ret = dst_neigh_output(dst, neigh, skb); + } rcu_read_unlock_bh(); err: @@ -733,15 +736,15 @@ static void vrf_dev_uninit(struct net_device *dev) { struct net_vrf *vrf = netdev_priv(dev); - struct slave_queue *queue = &vrf->queue; - struct list_head *head = &queue->all_slaves; - struct slave *slave, *next; +// struct slave_queue *queue = &vrf->queue; +// struct list_head *head = &queue->all_slaves; +// struct slave *slave, *next; vrf_rtable_destroy(vrf); vrf_rt6_destroy(vrf); - list_for_each_entry_safe(slave, next, head, list) - vrf_del_slave(dev, slave->dev); +// list_for_each_entry_safe(slave, next, head, list) +// vrf_del_slave(dev, slave->dev); free_percpu(dev->dstats); dev->dstats = NULL; @@ -914,6 +917,14 @@ static void vrf_dellink(struct net_device *dev, struct list_head *head) { + struct net_vrf *vrf = netdev_priv(dev); + struct slave_queue *queue = &vrf->queue; + struct list_head *all_slaves = &queue->all_slaves; + struct slave *slave, *next; + + list_for_each_entry_safe(slave, next, all_slaves, list) + vrf_del_slave(dev, slave->dev); + unregister_netdevice_queue(dev, head); } diff -u linux-raspi2-4.4.0/drivers/net/wireless/ath/ath10k/core.c linux-raspi2-4.4.0/drivers/net/wireless/ath/ath10k/core.c --- linux-raspi2-4.4.0/drivers/net/wireless/ath/ath10k/core.c +++ linux-raspi2-4.4.0/drivers/net/wireless/ath/ath10k/core.c @@ -1699,6 +1699,12 @@ goto err_wmi_detach; } + /* If firmware indicates Full Rx Reorder support it must be used in a + * slightly different manner. Let HTT code know. + */ + ar->htt.rx_ring.in_ord_rx = !!(test_bit(WMI_SERVICE_RX_FULL_REORDER, + ar->wmi.svc_map)); + status = ath10k_htt_rx_alloc(&ar->htt); if (status) { ath10k_err(ar, "failed to alloc htt rx: %d\n", status); @@ -1761,12 +1767,6 @@ goto err_hif_stop; } - /* If firmware indicates Full Rx Reorder support it must be used in a - * slightly different manner. Let HTT code know. - */ - ar->htt.rx_ring.in_ord_rx = !!(test_bit(WMI_SERVICE_RX_FULL_REORDER, - ar->wmi.svc_map)); - status = ath10k_htt_rx_ring_refill(ar); if (status) { ath10k_err(ar, "failed to refill htt rx ring: %d\n", status); diff -u linux-raspi2-4.4.0/drivers/net/wireless/brcm80211/brcmfmac/cfg80211.c linux-raspi2-4.4.0/drivers/net/wireless/brcm80211/brcmfmac/cfg80211.c --- linux-raspi2-4.4.0/drivers/net/wireless/brcm80211/brcmfmac/cfg80211.c +++ linux-raspi2-4.4.0/drivers/net/wireless/brcm80211/brcmfmac/cfg80211.c @@ -884,7 +884,7 @@ eth_broadcast_addr(params_le->bssid); params_le->bss_type = DOT11_BSSTYPE_ANY; - params_le->scan_type = 0; + params_le->scan_type = BRCMF_SCANTYPE_ACTIVE; params_le->channel_num = 0; params_le->nprobes = cpu_to_le32(-1); params_le->active_time = cpu_to_le32(-1); @@ -892,12 +892,9 @@ params_le->home_time = cpu_to_le32(-1); memset(¶ms_le->ssid_le, 0, sizeof(params_le->ssid_le)); - /* if request is null exit so it will be all channel broadcast scan */ - if (!request) - return; - n_ssids = request->n_ssids; n_channels = request->n_channels; + /* Copy channel array if applicable */ brcmf_dbg(SCAN, "### List of channelspecs to scan ### %d\n", n_channels); @@ -934,16 +931,8 @@ ptr += sizeof(ssid_le); } } else { - brcmf_dbg(SCAN, "Broadcast scan %p\n", request->ssids); - if ((request->ssids) && request->ssids->ssid_len) { - brcmf_dbg(SCAN, "SSID %s len=%d\n", - params_le->ssid_le.SSID, - request->ssids->ssid_len); - params_le->ssid_le.SSID_len = - cpu_to_le32(request->ssids->ssid_len); - memcpy(¶ms_le->ssid_le.SSID, request->ssids->ssid, - request->ssids->ssid_len); - } + brcmf_dbg(SCAN, "Performing passive scan\n"); + params_le->scan_type = BRCMF_SCANTYPE_PASSIVE; } /* Adding mask to channel numbers */ params_le->channel_num = @@ -2925,6 +2914,7 @@ struct brcmf_cfg80211_info *cfg = ifp->drvr->config; s32 status; struct brcmf_escan_result_le *escan_result_le; + u32 escan_buflen; struct brcmf_bss_info_le *bss_info_le; struct brcmf_bss_info_le *bss = NULL; u32 bi_length; @@ -2941,11 +2931,23 @@ if (status == BRCMF_E_STATUS_PARTIAL) { brcmf_dbg(SCAN, "ESCAN Partial result\n"); + if (e->datalen < sizeof(*escan_result_le)) { + brcmf_err("invalid event data length\n"); + goto exit; + } escan_result_le = (struct brcmf_escan_result_le *) data; if (!escan_result_le) { brcmf_err("Invalid escan result (NULL pointer)\n"); goto exit; } + escan_buflen = le32_to_cpu(escan_result_le->buflen); + if (escan_buflen > WL_ESCAN_BUF_SIZE || + escan_buflen > e->datalen || + escan_buflen < sizeof(*escan_result_le)) { + brcmf_err("Invalid escan buffer length: %d\n", + escan_buflen); + goto exit; + } if (le16_to_cpu(escan_result_le->bss_count) != 1) { brcmf_err("Invalid bss_count %d: ignoring\n", escan_result_le->bss_count); @@ -2962,9 +2964,8 @@ } bi_length = le32_to_cpu(bss_info_le->length); - if (bi_length != (le32_to_cpu(escan_result_le->buflen) - - WL_ESCAN_RESULTS_FIXED_SIZE)) { - brcmf_err("Invalid bss_info length %d: ignoring\n", + if (bi_length != escan_buflen - WL_ESCAN_RESULTS_FIXED_SIZE) { + brcmf_err("Ignoring invalid bss_info length: %d\n", bi_length); goto exit; } @@ -4486,6 +4487,11 @@ cfg80211_mgmt_tx_status(wdev, *cookie, buf, len, true, GFP_KERNEL); } else if (ieee80211_is_action(mgmt->frame_control)) { + if (len > BRCMF_FIL_ACTION_FRAME_SIZE + DOT11_MGMT_HDR_LEN) { + brcmf_err("invalid action frame length\n"); + err = -EINVAL; + goto exit; + } af_params = kzalloc(sizeof(*af_params), GFP_KERNEL); if (af_params == NULL) { brcmf_err("unable to allocate frame\n"); diff -u linux-raspi2-4.4.0/drivers/net/wireless/iwlwifi/mvm/mac80211.c linux-raspi2-4.4.0/drivers/net/wireless/iwlwifi/mvm/mac80211.c --- linux-raspi2-4.4.0/drivers/net/wireless/iwlwifi/mvm/mac80211.c +++ linux-raspi2-4.4.0/drivers/net/wireless/iwlwifi/mvm/mac80211.c @@ -1906,6 +1906,11 @@ struct iwl_mvm_mc_iter_data *data = _data; struct iwl_mvm *mvm = data->mvm; struct iwl_mcast_filter_cmd *cmd = mvm->mcast_filter_cmd; + struct iwl_host_cmd hcmd = { + .id = MCAST_FILTER_CMD, + .flags = CMD_ASYNC, + .dataflags[0] = IWL_HCMD_DFL_NOCOPY, + }; int ret, len; /* if we don't have free ports, mcast frames will be dropped */ @@ -1920,7 +1925,10 @@ memcpy(cmd->bssid, vif->bss_conf.bssid, ETH_ALEN); len = roundup(sizeof(*cmd) + cmd->count * ETH_ALEN, 4); - ret = iwl_mvm_send_cmd_pdu(mvm, MCAST_FILTER_CMD, CMD_ASYNC, len, cmd); + hcmd.len[0] = len; + hcmd.data[0] = cmd; + + ret = iwl_mvm_send_cmd(mvm, &hcmd); if (ret) IWL_ERR(mvm, "mcast filter cmd error. ret=%d\n", ret); } diff -u linux-raspi2-4.4.0/drivers/net/wireless/mac80211_hwsim.c linux-raspi2-4.4.0/drivers/net/wireless/mac80211_hwsim.c --- linux-raspi2-4.4.0/drivers/net/wireless/mac80211_hwsim.c +++ linux-raspi2-4.4.0/drivers/net/wireless/mac80211_hwsim.c @@ -2539,7 +2539,7 @@ tasklet_hrtimer_init(&data->beacon_timer, mac80211_hwsim_beacon, - CLOCK_MONOTONIC_RAW, HRTIMER_MODE_ABS); + CLOCK_MONOTONIC, HRTIMER_MODE_ABS); spin_lock_bh(&hwsim_radio_lock); list_add_tail(&data->list, &hwsim_radios); @@ -2884,6 +2884,7 @@ static int hwsim_new_radio_nl(struct sk_buff *msg, struct genl_info *info) { struct hwsim_new_radio_params param = { 0 }; + const char *hwname = NULL; param.reg_strict = info->attrs[HWSIM_ATTR_REG_STRICT_REG]; param.p2p_device = info->attrs[HWSIM_ATTR_SUPPORT_P2P_DEVICE]; @@ -2897,8 +2898,14 @@ if (info->attrs[HWSIM_ATTR_NO_VIF]) param.no_vif = true; - if (info->attrs[HWSIM_ATTR_RADIO_NAME]) - param.hwname = nla_data(info->attrs[HWSIM_ATTR_RADIO_NAME]); + if (info->attrs[HWSIM_ATTR_RADIO_NAME]) { + hwname = kasprintf(GFP_KERNEL, "%.*s", + nla_len(info->attrs[HWSIM_ATTR_RADIO_NAME]), + (char *)nla_data(info->attrs[HWSIM_ATTR_RADIO_NAME])); + if (!hwname) + return -ENOMEM; + param.hwname = hwname; + } if (info->attrs[HWSIM_ATTR_USE_CHANCTX]) param.use_chanctx = true; @@ -2926,11 +2933,15 @@ s64 idx = -1; const char *hwname = NULL; - if (info->attrs[HWSIM_ATTR_RADIO_ID]) + if (info->attrs[HWSIM_ATTR_RADIO_ID]) { idx = nla_get_u32(info->attrs[HWSIM_ATTR_RADIO_ID]); - else if (info->attrs[HWSIM_ATTR_RADIO_NAME]) - hwname = (void *)nla_data(info->attrs[HWSIM_ATTR_RADIO_NAME]); - else + } else if (info->attrs[HWSIM_ATTR_RADIO_NAME]) { + hwname = kasprintf(GFP_KERNEL, "%.*s", + nla_len(info->attrs[HWSIM_ATTR_RADIO_NAME]), + (char *)nla_data(info->attrs[HWSIM_ATTR_RADIO_NAME])); + if (!hwname) + return -ENOMEM; + } else return -EINVAL; spin_lock_bh(&hwsim_radio_lock); @@ -2939,7 +2950,8 @@ if (data->idx != idx) continue; } else { - if (strcmp(hwname, wiphy_name(data->hw->wiphy))) + if (!hwname || + strcmp(hwname, wiphy_name(data->hw->wiphy))) continue; } @@ -2947,10 +2959,12 @@ spin_unlock_bh(&hwsim_radio_lock); mac80211_hwsim_del_radio(data, wiphy_name(data->hw->wiphy), info); + kfree(hwname); return 0; } spin_unlock_bh(&hwsim_radio_lock); + kfree(hwname); return -ENODEV; } diff -u linux-raspi2-4.4.0/drivers/net/wireless/mwifiex/cfg80211.c linux-raspi2-4.4.0/drivers/net/wireless/mwifiex/cfg80211.c --- linux-raspi2-4.4.0/drivers/net/wireless/mwifiex/cfg80211.c +++ linux-raspi2-4.4.0/drivers/net/wireless/mwifiex/cfg80211.c @@ -3740,7 +3740,7 @@ if (adapter->config_bands & BAND_A) n_channels_a = mwifiex_band_5ghz.n_channels; - adapter->num_in_chan_stats = max_t(u32, n_channels_bg, n_channels_a); + adapter->num_in_chan_stats = n_channels_bg + n_channels_a; adapter->chan_stats = vmalloc(sizeof(*adapter->chan_stats) * adapter->num_in_chan_stats); diff -u linux-raspi2-4.4.0/drivers/net/wireless/mwifiex/cfp.c linux-raspi2-4.4.0/drivers/net/wireless/mwifiex/cfp.c --- linux-raspi2-4.4.0/drivers/net/wireless/mwifiex/cfp.c +++ linux-raspi2-4.4.0/drivers/net/wireless/mwifiex/cfp.c @@ -324,7 +324,9 @@ if (mwifiex_band_to_radio_type(band) == HostCmd_SCAN_RADIO_TYPE_BG) sband = priv->wdev.wiphy->bands[IEEE80211_BAND_2GHZ]; else - sband = priv->wdev.wiphy->bands[IEEE80211_BAND_5GHZ]; + sband = priv->wdev.wiphy ? + priv->wdev.wiphy->bands[IEEE80211_BAND_5GHZ] : + NULL; if (!sband) { mwifiex_dbg(priv->adapter, ERROR, diff -u linux-raspi2-4.4.0/drivers/net/wireless/realtek/rtlwifi/pci.c linux-raspi2-4.4.0/drivers/net/wireless/realtek/rtlwifi/pci.c --- linux-raspi2-4.4.0/drivers/net/wireless/realtek/rtlwifi/pci.c +++ linux-raspi2-4.4.0/drivers/net/wireless/realtek/rtlwifi/pci.c @@ -2269,7 +2269,7 @@ /* find adapter */ if (!_rtl_pci_find_adapter(pdev, hw)) { err = -ENODEV; - goto fail3; + goto fail2; } /* Init IO handler */ @@ -2339,10 +2339,10 @@ pci_set_drvdata(pdev, NULL); rtl_deinit_core(hw); +fail2: if (rtlpriv->io.pci_mem_start != 0) pci_iounmap(pdev, (void __iomem *)rtlpriv->io.pci_mem_start); -fail2: pci_release_regions(pdev); complete(&rtlpriv->firmware_loading_complete); reverted: --- linux-raspi2-4.4.0/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/hw.c +++ linux-raspi2-4.4.0.orig/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/hw.c @@ -1127,7 +1127,7 @@ } if (0 == tmp) { read_addr = REG_DBI_RDATA + addr % 4; + ret = rtl_read_word(rtlpriv, read_addr); - ret = rtl_read_byte(rtlpriv, read_addr); } return ret; } diff -u linux-raspi2-4.4.0/drivers/net/wireless/ti/wlcore/spi.c linux-raspi2-4.4.0/drivers/net/wireless/ti/wlcore/spi.c --- linux-raspi2-4.4.0/drivers/net/wireless/ti/wlcore/spi.c +++ linux-raspi2-4.4.0/drivers/net/wireless/ti/wlcore/spi.c @@ -71,7 +71,7 @@ * only support SPI for 12xx - this code should be reworked when 18xx * support is introduced */ -#define SPI_AGGR_BUFFER_SIZE (4 * PAGE_SIZE) +#define SPI_AGGR_BUFFER_SIZE (4 * SZ_4K) /* Maximum number of SPI write chunks */ #define WSPI_MAX_NUM_OF_CHUNKS \ diff -u linux-raspi2-4.4.0/drivers/ntb/ntb_transport.c linux-raspi2-4.4.0/drivers/ntb/ntb_transport.c --- linux-raspi2-4.4.0/drivers/ntb/ntb_transport.c +++ linux-raspi2-4.4.0/drivers/ntb/ntb_transport.c @@ -599,7 +599,7 @@ if (!mw->virt_addr) return -ENOMEM; - if (qp_count % mw_count && mw_num + 1 < qp_count / mw_count) + if (mw_num < qp_count % mw_count) num_qps_mw = qp_count / mw_count + 1; else num_qps_mw = qp_count / mw_count; @@ -947,7 +947,7 @@ qp->event_handler = NULL; ntb_qp_link_down_reset(qp); - if (qp_count % mw_count && mw_num + 1 < qp_count / mw_count) + if (mw_num < qp_count % mw_count) num_qps_mw = qp_count / mw_count + 1; else num_qps_mw = qp_count / mw_count; @@ -1065,8 +1065,8 @@ qp_count = ilog2(qp_bitmap); if (max_num_clients && max_num_clients < qp_count) qp_count = max_num_clients; - else if (mw_count < qp_count) - qp_count = mw_count; + else if (nt->mw_count < qp_count) + qp_count = nt->mw_count; qp_bitmap &= BIT_ULL(qp_count) - 1; diff -u linux-raspi2-4.4.0/drivers/nvme/host/nvme.h linux-raspi2-4.4.0/drivers/nvme/host/nvme.h --- linux-raspi2-4.4.0/drivers/nvme/host/nvme.h +++ linux-raspi2-4.4.0/drivers/nvme/host/nvme.h @@ -29,10 +29,10 @@ NVME_SC_CANCELLED = -EINTR, }; -extern unsigned char nvme_io_timeout; +extern unsigned int nvme_io_timeout; #define NVME_IO_TIMEOUT (nvme_io_timeout * HZ) -extern unsigned char admin_timeout; +extern unsigned int admin_timeout; #define ADMIN_TIMEOUT (admin_timeout * HZ) extern unsigned char shutdown_timeout; diff -u linux-raspi2-4.4.0/drivers/nvme/host/pci.c linux-raspi2-4.4.0/drivers/nvme/host/pci.c --- linux-raspi2-4.4.0/drivers/nvme/host/pci.c +++ linux-raspi2-4.4.0/drivers/nvme/host/pci.c @@ -61,12 +61,12 @@ #define NVME_NR_AEN_COMMANDS 1 #define NVME_AQ_BLKMQ_DEPTH (NVME_AQ_DEPTH - NVME_NR_AEN_COMMANDS) -unsigned char admin_timeout = 60; -module_param(admin_timeout, byte, 0644); +unsigned int admin_timeout = 60; +module_param(admin_timeout, uint, 0644); MODULE_PARM_DESC(admin_timeout, "timeout in seconds for admin commands"); -unsigned char nvme_io_timeout = 30; -module_param_named(io_timeout, nvme_io_timeout, byte, 0644); +unsigned int nvme_io_timeout = 30; +module_param_named(io_timeout, nvme_io_timeout, uint, 0644); MODULE_PARM_DESC(io_timeout, "timeout in seconds for I/O"); unsigned char shutdown_timeout = 5; diff -u linux-raspi2-4.4.0/drivers/of/device.c linux-raspi2-4.4.0/drivers/of/device.c --- linux-raspi2-4.4.0/drivers/of/device.c +++ linux-raspi2-4.4.0/drivers/of/device.c @@ -225,6 +225,7 @@ return tsize; } +EXPORT_SYMBOL_GPL(of_device_get_modalias); /** * of_device_uevent - Display OF related uevent information @@ -290 +291 @@ -EXPORT_SYMBOL(of_device_uevent_modalias); +EXPORT_SYMBOL_GPL(of_device_uevent_modalias); diff -u linux-raspi2-4.4.0/drivers/pci/pci-sysfs.c linux-raspi2-4.4.0/drivers/pci/pci-sysfs.c --- linux-raspi2-4.4.0/drivers/pci/pci-sysfs.c +++ linux-raspi2-4.4.0/drivers/pci/pci-sysfs.c @@ -523,7 +523,7 @@ const char *buf, size_t count) { struct pci_dev *pdev = to_pci_dev(dev); - char *driver_override, *old = pdev->driver_override, *cp; + char *driver_override, *old, *cp; /* We need to keep extra room for a newline */ if (count >= (PAGE_SIZE - 1)) @@ -537,12 +537,15 @@ if (cp) *cp = '\0'; + device_lock(dev); + old = pdev->driver_override; if (strlen(driver_override)) { pdev->driver_override = driver_override; } else { kfree(driver_override); pdev->driver_override = NULL; } + device_unlock(dev); kfree(old); @@ -553,8 +556,12 @@ struct device_attribute *attr, char *buf) { struct pci_dev *pdev = to_pci_dev(dev); + ssize_t len; - return snprintf(buf, PAGE_SIZE, "%s\n", pdev->driver_override); + device_lock(dev); + len = snprintf(buf, PAGE_SIZE, "%s\n", pdev->driver_override); + device_unlock(dev); + return len; } static DEVICE_ATTR_RW(driver_override); diff -u linux-raspi2-4.4.0/drivers/pinctrl/sh-pfc/core.c linux-raspi2-4.4.0/drivers/pinctrl/sh-pfc/core.c --- linux-raspi2-4.4.0/drivers/pinctrl/sh-pfc/core.c +++ linux-raspi2-4.4.0/drivers/pinctrl/sh-pfc/core.c @@ -543,6 +543,9 @@ ret = info->ops->init(pfc); if (ret < 0) return ret; + + /* .init() may have overridden pfc->info */ + info = pfc->info; } /* Enable dummy states for those platforms without pinctrl support */ diff -u linux-raspi2-4.4.0/drivers/platform/x86/hp-wmi.c linux-raspi2-4.4.0/drivers/platform/x86/hp-wmi.c --- linux-raspi2-4.4.0/drivers/platform/x86/hp-wmi.c +++ linux-raspi2-4.4.0/drivers/platform/x86/hp-wmi.c @@ -249,7 +249,7 @@ int ret = hp_wmi_perform_query(HPWMI_DISPLAY_QUERY, 0, &state, sizeof(state), sizeof(state)); if (ret) - return -EINVAL; + return ret < 0 ? ret : -EINVAL; return state; } @@ -259,7 +259,7 @@ int ret = hp_wmi_perform_query(HPWMI_HDDTEMP_QUERY, 0, &state, sizeof(state), sizeof(state)); if (ret) - return -EINVAL; + return ret < 0 ? ret : -EINVAL; return state; } @@ -269,7 +269,7 @@ int ret = hp_wmi_perform_query(HPWMI_ALS_QUERY, 0, &state, sizeof(state), sizeof(state)); if (ret) - return -EINVAL; + return ret < 0 ? ret : -EINVAL; return state; } @@ -280,7 +280,7 @@ sizeof(state), sizeof(state)); if (ret) - return -EINVAL; + return ret < 0 ? ret : -EINVAL; return state & 0x1; } @@ -291,7 +291,7 @@ int ret = hp_wmi_perform_query(HPWMI_HARDWARE_QUERY, 0, &state, sizeof(state), sizeof(state)); if (ret) - return ret; + return ret < 0 ? ret : -EINVAL; return (state & 0x4) ? 1 : 0; } @@ -324,7 +324,7 @@ int ret = hp_wmi_perform_query(HPWMI_BIOS_QUERY, 1, &value, sizeof(value), 0); if (ret) - return -EINVAL; + return ret < 0 ? ret : -EINVAL; return 0; } @@ -337,7 +337,7 @@ ret = hp_wmi_perform_query(HPWMI_WIRELESS_QUERY, 1, &query, sizeof(query), 0); if (ret) - return -EINVAL; + return ret < 0 ? ret : -EINVAL; return 0; } @@ -429,7 +429,7 @@ int ret = hp_wmi_perform_query(HPWMI_POSTCODEERROR_QUERY, 0, &state, sizeof(state), sizeof(state)); if (ret) - return -EINVAL; + return ret < 0 ? ret : -EINVAL; return state; } @@ -495,7 +495,7 @@ int ret = hp_wmi_perform_query(HPWMI_ALS_QUERY, 1, &tmp, sizeof(tmp), sizeof(tmp)); if (ret) - return -EINVAL; + return ret < 0 ? ret : -EINVAL; return count; } @@ -516,7 +516,7 @@ ret = hp_wmi_perform_query(HPWMI_POSTCODEERROR_QUERY, 1, &tmp, sizeof(tmp), sizeof(tmp)); if (ret) - return -EINVAL; + return ret < 0 ? ret : -EINVAL; return count; } @@ -573,10 +573,12 @@ switch (event_id) { case HPWMI_DOCK_EVENT: - input_report_switch(hp_wmi_input_dev, SW_DOCK, - hp_wmi_dock_state()); - input_report_switch(hp_wmi_input_dev, SW_TABLET_MODE, - hp_wmi_tablet_state()); + if (test_bit(SW_DOCK, hp_wmi_input_dev->swbit)) + input_report_switch(hp_wmi_input_dev, SW_DOCK, + hp_wmi_dock_state()); + if (test_bit(SW_TABLET_MODE, hp_wmi_input_dev->swbit)) + input_report_switch(hp_wmi_input_dev, SW_TABLET_MODE, + hp_wmi_tablet_state()); input_sync(hp_wmi_input_dev); break; case HPWMI_PARK_HDD: @@ -649,6 +651,7 @@ { acpi_status status; int err; + int val; hp_wmi_input_dev = input_allocate_device(); if (!hp_wmi_input_dev) @@ -659,17 +662,26 @@ hp_wmi_input_dev->id.bustype = BUS_HOST; __set_bit(EV_SW, hp_wmi_input_dev->evbit); - __set_bit(SW_DOCK, hp_wmi_input_dev->swbit); - __set_bit(SW_TABLET_MODE, hp_wmi_input_dev->swbit); + + /* Dock */ + val = hp_wmi_dock_state(); + if (!(val < 0)) { + __set_bit(SW_DOCK, hp_wmi_input_dev->swbit); + input_report_switch(hp_wmi_input_dev, SW_DOCK, val); + } + + /* Tablet mode */ + val = hp_wmi_tablet_state(); + if (!(val < 0)) { + __set_bit(SW_TABLET_MODE, hp_wmi_input_dev->swbit); + input_report_switch(hp_wmi_input_dev, SW_TABLET_MODE, val); + } err = sparse_keymap_setup(hp_wmi_input_dev, hp_wmi_keymap, NULL); if (err) goto err_free_dev; /* Set initial hardware state */ - input_report_switch(hp_wmi_input_dev, SW_DOCK, hp_wmi_dock_state()); - input_report_switch(hp_wmi_input_dev, SW_TABLET_MODE, - hp_wmi_tablet_state()); input_sync(hp_wmi_input_dev); if (!hp_wmi_bios_2009_later() && hp_wmi_bios_2008_later()) @@ -982,10 +994,12 @@ * changed. */ if (hp_wmi_input_dev) { - input_report_switch(hp_wmi_input_dev, SW_DOCK, - hp_wmi_dock_state()); - input_report_switch(hp_wmi_input_dev, SW_TABLET_MODE, - hp_wmi_tablet_state()); + if (test_bit(SW_DOCK, hp_wmi_input_dev->swbit)) + input_report_switch(hp_wmi_input_dev, SW_DOCK, + hp_wmi_dock_state()); + if (test_bit(SW_TABLET_MODE, hp_wmi_input_dev->swbit)) + input_report_switch(hp_wmi_input_dev, SW_TABLET_MODE, + hp_wmi_tablet_state()); input_sync(hp_wmi_input_dev); } diff -u linux-raspi2-4.4.0/drivers/platform/x86/ideapad-laptop.c linux-raspi2-4.4.0/drivers/platform/x86/ideapad-laptop.c --- linux-raspi2-4.4.0/drivers/platform/x86/ideapad-laptop.c +++ linux-raspi2-4.4.0/drivers/platform/x86/ideapad-laptop.c @@ -868,6 +868,76 @@ }, }, { + .ident = "Lenovo V310-14IKB", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), + DMI_MATCH(DMI_PRODUCT_VERSION, "Lenovo V310-14IKB"), + }, + }, + { + .ident = "Lenovo V310-14ISK", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), + DMI_MATCH(DMI_PRODUCT_VERSION, "Lenovo V310-14ISK"), + }, + }, + { + .ident = "Lenovo V310-15IKB", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), + DMI_MATCH(DMI_PRODUCT_VERSION, "Lenovo V310-15IKB"), + }, + }, + { + .ident = "Lenovo ideapad 300-15IBR", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), + DMI_MATCH(DMI_PRODUCT_VERSION, "Lenovo ideapad 300-15IBR"), + }, + }, + { + .ident = "Lenovo ideapad 300-15IKB", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), + DMI_MATCH(DMI_PRODUCT_VERSION, "Lenovo ideapad 300-15IKB"), + }, + }, + { + .ident = "Lenovo ideapad 300S-11IBR", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), + DMI_MATCH(DMI_PRODUCT_VERSION, "Lenovo ideapad 300S-11BR"), + }, + }, + { + .ident = "Lenovo ideapad 310-15ABR", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), + DMI_MATCH(DMI_PRODUCT_VERSION, "Lenovo ideapad 310-15ABR"), + }, + }, + { + .ident = "Lenovo ideapad 310-15IAP", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), + DMI_MATCH(DMI_PRODUCT_VERSION, "Lenovo ideapad 310-15IAP"), + }, + }, + { + .ident = "Lenovo ideapad 310-15ISK", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), + DMI_MATCH(DMI_PRODUCT_VERSION, "Lenovo ideapad 310-15ISK"), + }, + }, + { + .ident = "Lenovo ideapad Y700-14ISK", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), + DMI_MATCH(DMI_PRODUCT_VERSION, "Lenovo ideapad Y700-14ISK"), + }, + }, + { .ident = "Lenovo ideapad Y700-15ISK", .matches = { DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), diff -u linux-raspi2-4.4.0/drivers/platform/x86/thinkpad_acpi.c linux-raspi2-4.4.0/drivers/platform/x86/thinkpad_acpi.c --- linux-raspi2-4.4.0/drivers/platform/x86/thinkpad_acpi.c +++ linux-raspi2-4.4.0/drivers/platform/x86/thinkpad_acpi.c @@ -128,6 +128,7 @@ /* ACPI HIDs */ #define TPACPI_ACPI_IBM_HKEY_HID "IBM0068" #define TPACPI_ACPI_LENOVO_HKEY_HID "LEN0068" +#define TPACPI_ACPI_LENOVO_HKEY_V2_HID "LEN0268" #define TPACPI_ACPI_EC_HID "PNP0C09" /* Input IDs */ @@ -1914,7 +1915,9 @@ TP_ACPI_HOTKEYSCAN_UNK7, TP_ACPI_HOTKEYSCAN_UNK8, - TP_ACPI_HOTKEYSCAN_MUTE2, + /* Adaptive keyboard keycodes */ + TP_ACPI_HOTKEYSCAN_ADAPTIVE_START, + TP_ACPI_HOTKEYSCAN_MUTE2 = TP_ACPI_HOTKEYSCAN_ADAPTIVE_START, TP_ACPI_HOTKEYSCAN_BRIGHTNESS_ZERO, TP_ACPI_HOTKEYSCAN_CLIPPING_TOOL, TP_ACPI_HOTKEYSCAN_CLOUD, @@ -1935,6 +1938,15 @@ TP_ACPI_HOTKEYSCAN_CAMERA_MODE, TP_ACPI_HOTKEYSCAN_ROTATE_DISPLAY, + /* Lenovo extended keymap, starting at 0x1300 */ + TP_ACPI_HOTKEYSCAN_EXTENDED_START, + /* first new observed key (star, favorites) is 0x1311 */ + TP_ACPI_HOTKEYSCAN_STAR = 69, + TP_ACPI_HOTKEYSCAN_CLIPPING_TOOL2, + TP_ACPI_HOTKEYSCAN_UNK25, + TP_ACPI_HOTKEYSCAN_BLUETOOTH, + TP_ACPI_HOTKEYSCAN_KEYBOARD, + /* Hotkey keymap size */ TPACPI_HOTKEY_MAP_LEN }; @@ -3196,6 +3208,15 @@ KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, + + /* No assignment, used for newer Lenovo models */ + KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, + KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, + KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, + KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, + KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, + KEY_UNKNOWN, KEY_UNKNOWN + }, /* Generic keymap for Lenovo ThinkPads */ @@ -3281,6 +3302,29 @@ KEY_RESERVED, /* Microphone cancellation */ KEY_RESERVED, /* Camera mode */ KEY_RESERVED, /* Rotate display, 0x116 */ + + /* + * These are found in 2017 models (e.g. T470s, X270). + * The lowest known value is 0x311, which according to + * the manual should launch a user defined favorite + * application. + * + * The offset for these is TP_ACPI_HOTKEYSCAN_EXTENDED_START, + * corresponding to 0x34. + */ + + /* (assignments unknown, please report if found) */ + KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, + KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, + KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, + KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, + KEY_UNKNOWN, + + KEY_FAVORITES, /* Favorite app, 0x311 */ + KEY_RESERVED, /* Clipping tool */ + KEY_RESERVED, + KEY_BLUETOOTH, /* Bluetooth */ + KEY_KEYBOARD /* Keyboard, 0x315 */ }, }; @@ -3609,7 +3653,6 @@ #define DFR_CHANGE_ROW 0x101 #define DFR_SHOW_QUICKVIEW_ROW 0x102 #define FIRST_ADAPTIVE_KEY 0x103 -#define ADAPTIVE_KEY_OFFSET 0x020 /* press Fn key a while second, it will switch to Function Mode. Then * release Fn key, previous mode be restored. @@ -3699,13 +3742,15 @@ default: if (scancode < FIRST_ADAPTIVE_KEY || - scancode >= FIRST_ADAPTIVE_KEY + TPACPI_HOTKEY_MAP_LEN - - ADAPTIVE_KEY_OFFSET) { + scancode >= FIRST_ADAPTIVE_KEY + + TP_ACPI_HOTKEYSCAN_EXTENDED_START - + TP_ACPI_HOTKEYSCAN_ADAPTIVE_START) { pr_info("Unhandled adaptive keyboard key: 0x%x\n", scancode); return false; } - keycode = hotkey_keycode_map[scancode - FIRST_ADAPTIVE_KEY + ADAPTIVE_KEY_OFFSET]; + keycode = hotkey_keycode_map[scancode - FIRST_ADAPTIVE_KEY + + TP_ACPI_HOTKEYSCAN_ADAPTIVE_START]; if (keycode != KEY_RESERVED) { mutex_lock(&tpacpi_inputdev_send_mutex); @@ -3730,19 +3775,44 @@ *send_acpi_ev = true; *ignore_acpi_ev = false; - /* HKEY event 0x1001 is scancode 0x00 */ - if (scancode > 0 && scancode <= TPACPI_HOTKEY_MAP_LEN) { - scancode--; - if (!(hotkey_source_mask & (1 << scancode))) { - tpacpi_input_send_key_masked(scancode); - *send_acpi_ev = false; - } else { - *ignore_acpi_ev = true; + /* + * Original events are in the 0x10XX range, the adaptive keyboard + * found in 2014 X1 Carbon emits events are of 0x11XX. In 2017 + * models, additional keys are emitted through 0x13XX. + */ + switch ((hkey >> 8) & 0xf) { + case 0: + if (scancode > 0 && + scancode <= TP_ACPI_HOTKEYSCAN_ADAPTIVE_START) { + /* HKEY event 0x1001 is scancode 0x00 */ + scancode--; + if (!(hotkey_source_mask & (1 << scancode))) { + tpacpi_input_send_key_masked(scancode); + *send_acpi_ev = false; + } else { + *ignore_acpi_ev = true; + } + return true; } - return true; - } else { + break; + + case 1: return adaptive_keyboard_hotkey_notify_hotkey(scancode); + + case 3: + /* Extended keycodes start at 0x300 and our offset into the map + * TP_ACPI_HOTKEYSCAN_EXTENDED_START. The calculated scancode + * will be positive, but might not be in the correct range. + */ + scancode -= (0x300 - TP_ACPI_HOTKEYSCAN_EXTENDED_START); + if (scancode >= TP_ACPI_HOTKEYSCAN_EXTENDED_START && + scancode < TPACPI_HOTKEY_MAP_LEN) { + tpacpi_input_send_key(scancode); + return true; + } + break; } + return false; } @@ -4143,6 +4213,7 @@ static const struct acpi_device_id ibm_htk_device_ids[] = { {TPACPI_ACPI_IBM_HKEY_HID, 0}, {TPACPI_ACPI_LENOVO_HKEY_HID, 0}, + {TPACPI_ACPI_LENOVO_HKEY_V2_HID, 0}, {"", 0}, }; diff -u linux-raspi2-4.4.0/drivers/s390/block/dasd.c linux-raspi2-4.4.0/drivers/s390/block/dasd.c --- linux-raspi2-4.4.0/drivers/s390/block/dasd.c +++ linux-raspi2-4.4.0/drivers/s390/block/dasd.c @@ -1635,8 +1635,11 @@ /* check for for attention message */ if (scsw_dstat(&irb->scsw) & DEV_STAT_ATTENTION) { device = dasd_device_from_cdev_locked(cdev); - device->discipline->check_attention(device, irb->esw.esw1.lpum); - dasd_put_device(device); + if (!IS_ERR(device)) { + device->discipline->check_attention(device, + irb->esw.esw1.lpum); + dasd_put_device(device); + } } if (!cqr) diff -u linux-raspi2-4.4.0/drivers/s390/net/qeth_core.h linux-raspi2-4.4.0/drivers/s390/net/qeth_core.h --- linux-raspi2-4.4.0/drivers/s390/net/qeth_core.h +++ linux-raspi2-4.4.0/drivers/s390/net/qeth_core.h @@ -909,7 +909,6 @@ int qeth_core_hardsetup_card(struct qeth_card *); void qeth_print_status_message(struct qeth_card *); int qeth_init_qdio_queues(struct qeth_card *); -int qeth_send_startlan(struct qeth_card *); int qeth_send_ipa_cmd(struct qeth_card *, struct qeth_cmd_buffer *, int (*reply_cb) (struct qeth_card *, struct qeth_reply *, unsigned long), diff -u linux-raspi2-4.4.0/drivers/s390/net/qeth_core_main.c linux-raspi2-4.4.0/drivers/s390/net/qeth_core_main.c --- linux-raspi2-4.4.0/drivers/s390/net/qeth_core_main.c +++ linux-raspi2-4.4.0/drivers/s390/net/qeth_core_main.c @@ -2955,7 +2955,7 @@ } EXPORT_SYMBOL_GPL(qeth_send_ipa_cmd); -int qeth_send_startlan(struct qeth_card *card) +static int qeth_send_startlan(struct qeth_card *card) { int rc; struct qeth_cmd_buffer *iob; @@ -2968,7 +2968,6 @@ rc = qeth_send_ipa_cmd(card, iob, NULL, NULL); return rc; } -EXPORT_SYMBOL_GPL(qeth_send_startlan); static int qeth_default_setadapterparms_cb(struct qeth_card *card, struct qeth_reply *reply, unsigned long data) @@ -5080,6 +5079,20 @@ goto out; } + rc = qeth_send_startlan(card); + if (rc) { + QETH_DBF_TEXT_(SETUP, 2, "6err%d", rc); + if (rc == IPA_RC_LAN_OFFLINE) { + dev_warn(&card->gdev->dev, + "The LAN is offline\n"); + card->lan_online = 0; + } else { + rc = -ENODEV; + goto out; + } + } else + card->lan_online = 1; + card->options.ipa4.supported_funcs = 0; card->options.ipa6.supported_funcs = 0; card->options.adp.supported_funcs = 0; @@ -5091,14 +5104,14 @@ if (qeth_is_supported(card, IPA_SETADAPTERPARMS)) { rc = qeth_query_setadapterparms(card); if (rc < 0) { - QETH_DBF_TEXT_(SETUP, 2, "6err%d", rc); + QETH_DBF_TEXT_(SETUP, 2, "7err%d", rc); goto out; } } if (qeth_adp_supported(card, IPA_SETADP_SET_DIAG_ASSIST)) { rc = qeth_query_setdiagass(card); if (rc < 0) { - QETH_DBF_TEXT_(SETUP, 2, "7err%d", rc); + QETH_DBF_TEXT_(SETUP, 2, "8err%d", rc); goto out; } } diff -u linux-raspi2-4.4.0/drivers/s390/net/qeth_l2_main.c linux-raspi2-4.4.0/drivers/s390/net/qeth_l2_main.c --- linux-raspi2-4.4.0/drivers/s390/net/qeth_l2_main.c +++ linux-raspi2-4.4.0/drivers/s390/net/qeth_l2_main.c @@ -1203,21 +1203,6 @@ /* softsetup */ QETH_DBF_TEXT(SETUP, 2, "softsetp"); - rc = qeth_send_startlan(card); - if (rc) { - QETH_DBF_TEXT_(SETUP, 2, "1err%d", rc); - if (rc == 0xe080) { - dev_warn(&card->gdev->dev, - "The LAN is offline\n"); - card->lan_online = 0; - goto contin; - } - rc = -ENODEV; - goto out_remove; - } else - card->lan_online = 1; - -contin: if ((card->info.type == QETH_CARD_TYPE_OSD) || (card->info.type == QETH_CARD_TYPE_OSX)) { if (qeth_l2_start_ipassists(card)) diff -u linux-raspi2-4.4.0/drivers/s390/net/qeth_l3_main.c linux-raspi2-4.4.0/drivers/s390/net/qeth_l3_main.c --- linux-raspi2-4.4.0/drivers/s390/net/qeth_l3_main.c +++ linux-raspi2-4.4.0/drivers/s390/net/qeth_l3_main.c @@ -3298,21 +3298,6 @@ /* softsetup */ QETH_DBF_TEXT(SETUP, 2, "softsetp"); - rc = qeth_send_startlan(card); - if (rc) { - QETH_DBF_TEXT_(SETUP, 2, "1err%d", rc); - if (rc == 0xe080) { - dev_warn(&card->gdev->dev, - "The LAN is offline\n"); - card->lan_online = 0; - goto contin; - } - rc = -ENODEV; - goto out_remove; - } else - card->lan_online = 1; - -contin: rc = qeth_l3_setadapter_parms(card); if (rc) QETH_DBF_TEXT_(SETUP, 2, "2err%04x", rc); diff -u linux-raspi2-4.4.0/drivers/s390/scsi/zfcp_dbf.c linux-raspi2-4.4.0/drivers/s390/scsi/zfcp_dbf.c --- linux-raspi2-4.4.0/drivers/s390/scsi/zfcp_dbf.c +++ linux-raspi2-4.4.0/drivers/s390/scsi/zfcp_dbf.c @@ -3,7 +3,7 @@ * * Debug traces for zfcp. * - * Copyright IBM Corp. 2002, 2016 + * Copyright IBM Corp. 2002, 2017 */ #define KMSG_COMPONENT "zfcp" @@ -447,6 +447,7 @@ struct fc_ct_hdr *reqh = sg_virt(ct_els->req); struct fc_ns_gid_ft *reqn = (struct fc_ns_gid_ft *)(reqh + 1); struct scatterlist *resp_entry = ct_els->resp; + struct fc_ct_hdr *resph; struct fc_gpn_ft_resp *acc; int max_entries, x, last = 0; @@ -473,6 +474,13 @@ return len; /* not GPN_FT response so do not cap */ acc = sg_virt(resp_entry); + + /* cap all but accept CT responses to at least the CT header */ + resph = (struct fc_ct_hdr *)acc; + if ((ct_els->status) || + (resph->ct_cmd != cpu_to_be16(FC_FS_ACC))) + return max(FC_CT_HDR_LEN, ZFCP_DBF_SAN_MAX_PAYLOAD); + max_entries = (reqh->ct_mr_size * 4 / sizeof(struct fc_gpn_ft_resp)) + 1 /* zfcp_fc_scan_ports: bytes correct, entries off-by-one * to account for header as 1st pseudo "entry" */; @@ -555,8 +563,8 @@ rec->scsi_retries = sc->retries; rec->scsi_allowed = sc->allowed; rec->scsi_id = sc->device->id; - /* struct zfcp_dbf_scsi needs to be updated to handle 64bit LUNs */ rec->scsi_lun = (u32)sc->device->lun; + rec->scsi_lun_64_hi = (u32)(sc->device->lun >> 32); rec->host_scribble = (unsigned long)sc->host_scribble; memcpy(rec->scsi_opcode, sc->cmnd, @@ -564,19 +572,32 @@ if (fsf) { rec->fsf_req_id = fsf->req_id; + rec->pl_len = FCP_RESP_WITH_EXT; fcp_rsp = (struct fcp_resp_with_ext *) &(fsf->qtcb->bottom.io.fcp_rsp); + /* mandatory parts of FCP_RSP IU in this SCSI record */ memcpy(&rec->fcp_rsp, fcp_rsp, FCP_RESP_WITH_EXT); if (fcp_rsp->resp.fr_flags & FCP_RSP_LEN_VAL) { fcp_rsp_info = (struct fcp_resp_rsp_info *) &fcp_rsp[1]; rec->fcp_rsp_info = fcp_rsp_info->rsp_code; + rec->pl_len += be32_to_cpu(fcp_rsp->ext.fr_rsp_len); } if (fcp_rsp->resp.fr_flags & FCP_SNS_LEN_VAL) { - rec->pl_len = min((u16)SCSI_SENSE_BUFFERSIZE, - (u16)ZFCP_DBF_PAY_MAX_REC); - zfcp_dbf_pl_write(dbf, sc->sense_buffer, rec->pl_len, - "fcp_sns", fsf->req_id); + rec->pl_len += be32_to_cpu(fcp_rsp->ext.fr_sns_len); } + /* complete FCP_RSP IU in associated PAYload record + * but only if there are optional parts + */ + if (fcp_rsp->resp.fr_flags != 0) + zfcp_dbf_pl_write( + dbf, fcp_rsp, + /* at least one full PAY record + * but not beyond hardware response field + */ + min_t(u16, max_t(u16, rec->pl_len, + ZFCP_DBF_PAY_MAX_REC), + FSF_FCP_RSP_SIZE), + "fcp_riu", fsf->req_id); } debug_event(dbf->scsi, level, rec, sizeof(*rec)); diff -u linux-raspi2-4.4.0/drivers/s390/scsi/zfcp_dbf.h linux-raspi2-4.4.0/drivers/s390/scsi/zfcp_dbf.h --- linux-raspi2-4.4.0/drivers/s390/scsi/zfcp_dbf.h +++ linux-raspi2-4.4.0/drivers/s390/scsi/zfcp_dbf.h @@ -2,7 +2,7 @@ * zfcp device driver * debug feature declarations * - * Copyright IBM Corp. 2008, 2016 + * Copyright IBM Corp. 2008, 2017 */ #ifndef ZFCP_DBF_H @@ -204,7 +204,7 @@ * @id: unique number of recovery record type * @tag: identifier string specifying the location of initiation * @scsi_id: scsi device id - * @scsi_lun: scsi device logical unit number + * @scsi_lun: scsi device logical unit number, low part of 64 bit, old 32 bit * @scsi_result: scsi result * @scsi_retries: current retry number of scsi request * @scsi_allowed: allowed retries @@ -214,6 +214,7 @@ * @host_scribble: LLD specific data attached to SCSI request * @pl_len: length of paload stored as zfcp_dbf_pay * @fsf_rsp: response for fsf request + * @scsi_lun_64_hi: scsi device logical unit number, high part of 64 bit */ struct zfcp_dbf_scsi { u8 id; @@ -230,6 +231,7 @@ u64 host_scribble; u16 pl_len; struct fcp_resp_with_ext fcp_rsp; + u32 scsi_lun_64_hi; } __packed; /** @@ -323,7 +325,11 @@ { struct fsf_qtcb *qtcb = req->qtcb; - if ((qtcb->prefix.prot_status != FSF_PROT_GOOD) && + if (unlikely(req->status & (ZFCP_STATUS_FSFREQ_DISMISSED | + ZFCP_STATUS_FSFREQ_ERROR))) { + zfcp_dbf_hba_fsf_resp("fs_rerr", 3, req); + + } else if ((qtcb->prefix.prot_status != FSF_PROT_GOOD) && (qtcb->prefix.prot_status != FSF_PROT_FSF_STATUS_PRESENTED)) { zfcp_dbf_hba_fsf_resp("fs_perr", 1, req); @@ -401,7 +407,8 @@ * @flag: indicates type of reset (Target Reset, Logical Unit Reset) */ static inline -void zfcp_dbf_scsi_devreset(char *tag, struct scsi_cmnd *scmnd, u8 flag) +void zfcp_dbf_scsi_devreset(char *tag, struct scsi_cmnd *scmnd, u8 flag, + struct zfcp_fsf_req *fsf_req) { char tmp_tag[ZFCP_DBF_TAG_LEN]; @@ -411,7 +418,7 @@ memcpy(tmp_tag, "lr_", 3); memcpy(&tmp_tag[3], tag, 4); - _zfcp_dbf_scsi(tmp_tag, 1, scmnd, NULL); + _zfcp_dbf_scsi(tmp_tag, 1, scmnd, fsf_req); } /** diff -u linux-raspi2-4.4.0/drivers/s390/scsi/zfcp_erp.c linux-raspi2-4.4.0/drivers/s390/scsi/zfcp_erp.c --- linux-raspi2-4.4.0/drivers/s390/scsi/zfcp_erp.c +++ linux-raspi2-4.4.0/drivers/s390/scsi/zfcp_erp.c @@ -193,9 +193,8 @@ atomic_or(ZFCP_STATUS_COMMON_ERP_INUSE, &zfcp_sdev->status); erp_action = &zfcp_sdev->erp_action; - memset(erp_action, 0, sizeof(struct zfcp_erp_action)); - erp_action->port = port; - erp_action->sdev = sdev; + WARN_ON_ONCE(erp_action->port != port); + WARN_ON_ONCE(erp_action->sdev != sdev); if (!(atomic_read(&zfcp_sdev->status) & ZFCP_STATUS_COMMON_RUNNING)) act_status |= ZFCP_STATUS_ERP_CLOSE_ONLY; @@ -208,8 +207,8 @@ zfcp_erp_action_dismiss_port(port); atomic_or(ZFCP_STATUS_COMMON_ERP_INUSE, &port->status); erp_action = &port->erp_action; - memset(erp_action, 0, sizeof(struct zfcp_erp_action)); - erp_action->port = port; + WARN_ON_ONCE(erp_action->port != port); + WARN_ON_ONCE(erp_action->sdev != NULL); if (!(atomic_read(&port->status) & ZFCP_STATUS_COMMON_RUNNING)) act_status |= ZFCP_STATUS_ERP_CLOSE_ONLY; break; @@ -219,7 +218,8 @@ zfcp_erp_action_dismiss_adapter(adapter); atomic_or(ZFCP_STATUS_COMMON_ERP_INUSE, &adapter->status); erp_action = &adapter->erp_action; - memset(erp_action, 0, sizeof(struct zfcp_erp_action)); + WARN_ON_ONCE(erp_action->port != NULL); + WARN_ON_ONCE(erp_action->sdev != NULL); if (!(atomic_read(&adapter->status) & ZFCP_STATUS_COMMON_RUNNING)) act_status |= ZFCP_STATUS_ERP_CLOSE_ONLY; @@ -229,7 +229,11 @@ return NULL; } - erp_action->adapter = adapter; + WARN_ON_ONCE(erp_action->adapter != adapter); + memset(&erp_action->list, 0, sizeof(erp_action->list)); + memset(&erp_action->timer, 0, sizeof(erp_action->timer)); + erp_action->step = ZFCP_ERP_STEP_UNINITIALIZED; + erp_action->fsf_req_id = 0; erp_action->action = need; erp_action->status = act_status; diff -u linux-raspi2-4.4.0/drivers/s390/scsi/zfcp_fsf.c linux-raspi2-4.4.0/drivers/s390/scsi/zfcp_fsf.c --- linux-raspi2-4.4.0/drivers/s390/scsi/zfcp_fsf.c +++ linux-raspi2-4.4.0/drivers/s390/scsi/zfcp_fsf.c @@ -928,8 +928,8 @@ switch (header->fsf_status) { case FSF_GOOD: - zfcp_dbf_san_res("fsscth2", req); ct->status = 0; + zfcp_dbf_san_res("fsscth2", req); break; case FSF_SERVICE_CLASS_NOT_SUPPORTED: zfcp_fsf_class_not_supp(req); @@ -1109,8 +1109,8 @@ switch (header->fsf_status) { case FSF_GOOD: - zfcp_dbf_san_res("fsselh1", req); send_els->status = 0; + zfcp_dbf_san_res("fsselh1", req); break; case FSF_SERVICE_CLASS_NOT_SUPPORTED: zfcp_fsf_class_not_supp(req); @@ -2258,7 +2258,8 @@ fcp_cmnd = (struct fcp_cmnd *) &req->qtcb->bottom.io.fcp_cmnd; zfcp_fc_scsi_to_fcp(fcp_cmnd, scsi_cmnd, 0); - if (scsi_prot_sg_count(scsi_cmnd)) { + if ((scsi_get_prot_op(scsi_cmnd) != SCSI_PROT_NORMAL) && + scsi_prot_sg_count(scsi_cmnd)) { zfcp_qdio_set_data_div(qdio, &req->qdio_req, scsi_prot_sg_count(scsi_cmnd)); retval = zfcp_qdio_sbals_from_sg(qdio, &req->qdio_req, diff -u linux-raspi2-4.4.0/drivers/s390/scsi/zfcp_scsi.c linux-raspi2-4.4.0/drivers/s390/scsi/zfcp_scsi.c --- linux-raspi2-4.4.0/drivers/s390/scsi/zfcp_scsi.c +++ linux-raspi2-4.4.0/drivers/s390/scsi/zfcp_scsi.c @@ -3,7 +3,7 @@ * * Interface to Linux SCSI midlayer. * - * Copyright IBM Corp. 2002, 2016 + * Copyright IBM Corp. 2002, 2017 */ #define KMSG_COMPONENT "zfcp" @@ -115,10 +115,15 @@ struct zfcp_unit *unit; int npiv = adapter->connection_features & FSF_FEATURE_NPIV_MODE; + zfcp_sdev->erp_action.adapter = adapter; + zfcp_sdev->erp_action.sdev = sdev; + port = zfcp_get_port_by_wwpn(adapter, rport->port_name); if (!port) return -ENXIO; + zfcp_sdev->erp_action.port = port; + unit = zfcp_unit_find(port, zfcp_scsi_dev_lun(sdev)); if (unit) put_device(&unit->dev); @@ -273,25 +278,29 @@ zfcp_erp_wait(adapter); ret = fc_block_scsi_eh(scpnt); - if (ret) + if (ret) { + zfcp_dbf_scsi_devreset("fiof", scpnt, tm_flags, NULL); return ret; + } if (!(atomic_read(&adapter->status) & ZFCP_STATUS_COMMON_RUNNING)) { - zfcp_dbf_scsi_devreset("nres", scpnt, tm_flags); + zfcp_dbf_scsi_devreset("nres", scpnt, tm_flags, NULL); return SUCCESS; } } - if (!fsf_req) + if (!fsf_req) { + zfcp_dbf_scsi_devreset("reqf", scpnt, tm_flags, NULL); return FAILED; + } wait_for_completion(&fsf_req->completion); if (fsf_req->status & ZFCP_STATUS_FSFREQ_TMFUNCFAILED) { - zfcp_dbf_scsi_devreset("fail", scpnt, tm_flags); + zfcp_dbf_scsi_devreset("fail", scpnt, tm_flags, fsf_req); retval = FAILED; } else { - zfcp_dbf_scsi_devreset("okay", scpnt, tm_flags); + zfcp_dbf_scsi_devreset("okay", scpnt, tm_flags, fsf_req); zfcp_scsi_forget_cmnds(zfcp_sdev, tm_flags); } diff -u linux-raspi2-4.4.0/drivers/scsi/Kconfig linux-raspi2-4.4.0/drivers/scsi/Kconfig --- linux-raspi2-4.4.0/drivers/scsi/Kconfig +++ linux-raspi2-4.4.0/drivers/scsi/Kconfig @@ -194,6 +194,7 @@ config SCSI_ENCLOSURE tristate "SCSI Enclosure Support" depends on SCSI && ENCLOSURE_SERVICES + depends on m || SCSI_SAS_ATTRS != m help Enclosures are devices sitting on or in SCSI backplanes that manage devices. If you have a disk cage, the chances are that diff -u linux-raspi2-4.4.0/drivers/scsi/hpsa.c linux-raspi2-4.4.0/drivers/scsi/hpsa.c --- linux-raspi2-4.4.0/drivers/scsi/hpsa.c +++ linux-raspi2-4.4.0/drivers/scsi/hpsa.c @@ -906,7 +906,7 @@ #endif .sdev_attrs = hpsa_sdev_attrs, .shost_attrs = hpsa_shost_attrs, - .max_sectors = 8192, + .max_sectors = 1024, .no_write_same = 1, }; diff -u linux-raspi2-4.4.0/drivers/scsi/ipr.c linux-raspi2-4.4.0/drivers/scsi/ipr.c --- linux-raspi2-4.4.0/drivers/scsi/ipr.c +++ linux-raspi2-4.4.0/drivers/scsi/ipr.c @@ -6210,7 +6210,12 @@ break; case IPR_IOASC_MED_DO_NOT_REALLOC: /* prevent retries */ case IPR_IOASA_IR_DUAL_IOA_DISABLED: - scsi_cmd->result |= (DID_PASSTHROUGH << 16); + /* + * exception: do not set DID_PASSTHROUGH on CHECK CONDITION + * so SCSI mid-layer and upper layers handle it accordingly. + */ + if (scsi_cmd->result != SAM_STAT_CHECK_CONDITION) + scsi_cmd->result |= (DID_PASSTHROUGH << 16); break; case IPR_IOASC_BUS_WAS_RESET: case IPR_IOASC_BUS_WAS_RESET_BY_OTHER: diff -u linux-raspi2-4.4.0/drivers/scsi/lpfc/lpfc_els.c linux-raspi2-4.4.0/drivers/scsi/lpfc/lpfc_els.c --- linux-raspi2-4.4.0/drivers/scsi/lpfc/lpfc_els.c +++ linux-raspi2-4.4.0/drivers/scsi/lpfc/lpfc_els.c @@ -1069,7 +1069,10 @@ lpfc_sli4_unreg_all_rpis(vport); } } - lpfc_issue_reg_vfi(vport); + + /* Do not register VFI if the driver aborted FLOGI */ + if (!lpfc_error_lost_link(irsp)) + lpfc_issue_reg_vfi(vport); lpfc_nlp_put(ndlp); goto out; } diff -u linux-raspi2-4.4.0/drivers/scsi/megaraid/megaraid_sas_base.c linux-raspi2-4.4.0/drivers/scsi/megaraid/megaraid_sas_base.c --- linux-raspi2-4.4.0/drivers/scsi/megaraid/megaraid_sas_base.c +++ linux-raspi2-4.4.0/drivers/scsi/megaraid/megaraid_sas_base.c @@ -1914,9 +1914,12 @@ if (cmd_fusion->sync_cmd_idx != (u32)ULONG_MAX) { cmd_mfi = instance->cmd_list[cmd_fusion->sync_cmd_idx]; if (cmd_mfi->sync_cmd && - cmd_mfi->frame->hdr.cmd != MFI_CMD_ABORT) + (cmd_mfi->frame->hdr.cmd != MFI_CMD_ABORT)) { + cmd_mfi->frame->hdr.cmd_status = + MFI_STAT_WRONG_STATE; megasas_complete_cmd(instance, cmd_mfi, DID_OK); + } } } } else { @@ -5433,6 +5436,14 @@ prev_aen.word = le32_to_cpu(instance->aen_cmd->frame->dcmd.mbox.w[1]); + if ((curr_aen.members.class < MFI_EVT_CLASS_DEBUG) || + (curr_aen.members.class > MFI_EVT_CLASS_DEAD)) { + dev_info(&instance->pdev->dev, + "%s %d out of range class %d send by application\n", + __func__, __LINE__, curr_aen.members.class); + return 0; + } + /* * A class whose enum value is smaller is inclusive of all * higher values. If a PROGRESS (= -1) was previously diff -u linux-raspi2-4.4.0/drivers/scsi/mpt3sas/mpt3sas_base.c linux-raspi2-4.4.0/drivers/scsi/mpt3sas/mpt3sas_base.c --- linux-raspi2-4.4.0/drivers/scsi/mpt3sas/mpt3sas_base.c +++ linux-raspi2-4.4.0/drivers/scsi/mpt3sas/mpt3sas_base.c @@ -5041,7 +5041,7 @@ static int _base_make_ioc_operational(struct MPT3SAS_ADAPTER *ioc, int sleep_flag) { - int r, i; + int r, i, index; unsigned long flags; u32 reply_address; u16 smid; @@ -5050,8 +5050,7 @@ struct _event_ack_list *delayed_event_ack, *delayed_event_ack_next; u8 hide_flag; struct adapter_reply_queue *reply_q; - long reply_post_free; - u32 reply_post_free_sz, index = 0; + Mpi2ReplyDescriptorsUnion_t *reply_post_free_contig; dinitprintk(ioc, pr_info(MPT3SAS_FMT "%s\n", ioc->name, __func__)); @@ -5135,27 +5134,26 @@ _base_assign_reply_queues(ioc); /* initialize Reply Post Free Queue */ - reply_post_free_sz = ioc->reply_post_queue_depth * - sizeof(Mpi2DefaultReplyDescriptor_t); - reply_post_free = (long)ioc->reply_post[index].reply_post_free; + index = 0; + reply_post_free_contig = ioc->reply_post[0].reply_post_free; list_for_each_entry(reply_q, &ioc->reply_queue_list, list) { + /* + * If RDPQ is enabled, switch to the next allocation. + * Otherwise advance within the contiguous region. + */ + if (ioc->rdpq_array_enable) { + reply_q->reply_post_free = + ioc->reply_post[index++].reply_post_free; + } else { + reply_q->reply_post_free = reply_post_free_contig; + reply_post_free_contig += ioc->reply_post_queue_depth; + } reply_q->reply_post_host_index = 0; - reply_q->reply_post_free = (Mpi2ReplyDescriptorsUnion_t *) - reply_post_free; for (i = 0; i < ioc->reply_post_queue_depth; i++) reply_q->reply_post_free[i].Words = cpu_to_le64(ULLONG_MAX); if (!_base_is_controller_msix_enabled(ioc)) goto skip_init_reply_post_free_queue; - /* - * If RDPQ is enabled, switch to the next allocation. - * Otherwise advance within the contiguous region. - */ - if (ioc->rdpq_array_enable) - reply_post_free = (long) - ioc->reply_post[++index].reply_post_free; - else - reply_post_free += reply_post_free_sz; } skip_init_reply_post_free_queue: diff -u linux-raspi2-4.4.0/drivers/scsi/qla2xxx/qla_attr.c linux-raspi2-4.4.0/drivers/scsi/qla2xxx/qla_attr.c --- linux-raspi2-4.4.0/drivers/scsi/qla2xxx/qla_attr.c +++ linux-raspi2-4.4.0/drivers/scsi/qla2xxx/qla_attr.c @@ -329,12 +329,15 @@ struct qla_hw_data *ha = vha->hw; ssize_t rval = 0; + mutex_lock(&ha->optrom_mutex); + if (ha->optrom_state != QLA_SREADING) - return 0; + goto out; - mutex_lock(&ha->optrom_mutex); rval = memory_read_from_buffer(buf, count, &off, ha->optrom_buffer, ha->optrom_region_size); + +out: mutex_unlock(&ha->optrom_mutex); return rval; @@ -349,14 +352,19 @@ struct device, kobj))); struct qla_hw_data *ha = vha->hw; - if (ha->optrom_state != QLA_SWRITING) + mutex_lock(&ha->optrom_mutex); + + if (ha->optrom_state != QLA_SWRITING) { + mutex_unlock(&ha->optrom_mutex); return -EINVAL; - if (off > ha->optrom_region_size) + } + if (off > ha->optrom_region_size) { + mutex_unlock(&ha->optrom_mutex); return -ERANGE; + } if (off + count > ha->optrom_region_size) count = ha->optrom_region_size - off; - mutex_lock(&ha->optrom_mutex); memcpy(&ha->optrom_buffer[off], buf, count); mutex_unlock(&ha->optrom_mutex); @@ -396,6 +404,8 @@ return -EINVAL; if (start > ha->optrom_size) return -EINVAL; + if (size > ha->optrom_size - start) + size = ha->optrom_size - start; mutex_lock(&ha->optrom_mutex); switch (val) { @@ -421,8 +431,7 @@ } ha->optrom_region_start = start; - ha->optrom_region_size = start + size > ha->optrom_size ? - ha->optrom_size - start : size; + ha->optrom_region_size = start + size; ha->optrom_state = QLA_SREADING; ha->optrom_buffer = vmalloc(ha->optrom_region_size); @@ -495,8 +504,7 @@ } ha->optrom_region_start = start; - ha->optrom_region_size = start + size > ha->optrom_size ? - ha->optrom_size - start : size; + ha->optrom_region_size = start + size; ha->optrom_state = QLA_SWRITING; ha->optrom_buffer = vmalloc(ha->optrom_region_size); diff -u linux-raspi2-4.4.0/drivers/scsi/sd.c linux-raspi2-4.4.0/drivers/scsi/sd.c --- linux-raspi2-4.4.0/drivers/scsi/sd.c +++ linux-raspi2-4.4.0/drivers/scsi/sd.c @@ -2878,8 +2878,6 @@ sd_read_write_same(sdkp, buffer); } - sdkp->first_scan = 0; - /* * We now have all cache related info, determine how we deal * with flush requests. @@ -2894,7 +2892,7 @@ q->limits.max_dev_sectors = logical_to_sectors(sdp, dev_max); /* - * Use the device's preferred I/O size for reads and writes + * Determine the device's preferred I/O size for reads and writes * unless the reported value is unreasonably small, large, or * garbage. */ @@ -2908,8 +2906,19 @@ rw_max = min_not_zero(logical_to_sectors(sdp, dev_max), (sector_t)BLK_DEF_MAX_SECTORS); - /* Combine with controller limits */ - q->limits.max_sectors = min(rw_max, queue_max_hw_sectors(q)); + /* Do not exceed controller limit */ + rw_max = min(rw_max, queue_max_hw_sectors(q)); + + /* + * Only update max_sectors if previously unset or if the current value + * exceeds the capabilities of the hardware. + */ + if (sdkp->first_scan || + q->limits.max_sectors > q->limits.max_dev_sectors || + q->limits.max_sectors > q->limits.max_hw_sectors) + q->limits.max_sectors = rw_max; + + sdkp->first_scan = 0; set_capacity(disk, logical_to_sectors(sdp, sdkp->capacity)); sd_config_write_same(sdkp); diff -u linux-raspi2-4.4.0/drivers/scsi/sg.c linux-raspi2-4.4.0/drivers/scsi/sg.c --- linux-raspi2-4.4.0/drivers/scsi/sg.c +++ linux-raspi2-4.4.0/drivers/scsi/sg.c @@ -133,7 +133,7 @@ struct sg_fd; typedef struct sg_request { /* SG_MAX_QUEUE requests outstanding per file */ - struct sg_request *nextrp; /* NULL -> tail request (slist) */ + struct list_head entry; /* list entry */ struct sg_fd *parentfp; /* NULL -> not in use */ Sg_scatter_hold data; /* hold buffer, perhaps scatter list */ sg_io_hdr_t header; /* scsi command+info, see */ @@ -153,11 +153,11 @@ struct sg_device *parentdp; /* owning device */ wait_queue_head_t read_wait; /* queue read until command done */ rwlock_t rq_list_lock; /* protect access to list in req_arr */ + struct mutex f_mutex; /* protect against changes in this fd */ int timeout; /* defaults to SG_DEFAULT_TIMEOUT */ int timeout_user; /* defaults to SG_DEFAULT_TIMEOUT_USER */ Sg_scatter_hold reserve; /* buffer held for this file descriptor */ - unsigned save_scat_len; /* original length of trunc. scat. element */ - Sg_request *headrp; /* head of request slist, NULL->empty */ + struct list_head rq_list; /* head of request list */ struct fasync_struct *async_qp; /* used by asynchronous notification */ Sg_request req_arr[SG_MAX_QUEUE]; /* used as singly-linked list */ char low_dma; /* as in parent but possibly overridden to 1 */ @@ -166,6 +166,7 @@ unsigned char next_cmd_len; /* 0: automatic, >0: use on next write() */ char keep_orphan; /* 0 -> drop orphan (def), 1 -> keep for read() */ char mmap_called; /* 0 -> mmap() never called on this fd */ + char res_in_use; /* 1 -> 'reserve' array in use */ struct kref f_ref; struct execute_work ew; } Sg_fd; @@ -209,7 +210,6 @@ static Sg_request *sg_get_rq_mark(Sg_fd * sfp, int pack_id); static Sg_request *sg_add_request(Sg_fd * sfp); static int sg_remove_request(Sg_fd * sfp, Sg_request * srp); -static int sg_res_in_use(Sg_fd * sfp); static Sg_device *sg_get_dev(int dev); static void sg_device_destroy(struct kref *kref); @@ -625,6 +625,7 @@ } buf += SZ_SG_HEADER; __get_user(opcode, buf); + mutex_lock(&sfp->f_mutex); if (sfp->next_cmd_len > 0) { cmd_size = sfp->next_cmd_len; sfp->next_cmd_len = 0; /* reset so only this write() effected */ @@ -633,6 +634,7 @@ if ((opcode >= 0xc0) && old_hdr.twelve_byte) cmd_size = 12; } + mutex_unlock(&sfp->f_mutex); SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sdp, "sg_write: scsi opcode=0x%02x, cmd_size=%d\n", (int) opcode, cmd_size)); /* Determine buffer size. */ @@ -732,7 +734,7 @@ sg_remove_request(sfp, srp); return -EINVAL; /* either MMAP_IO or DIRECT_IO (not both) */ } - if (sg_res_in_use(sfp)) { + if (sfp->res_in_use) { sg_remove_request(sfp, srp); return -EBUSY; /* reserve buffer already being used */ } @@ -837,6 +839,39 @@ return max_sectors << 9; } +static void +sg_fill_request_table(Sg_fd *sfp, sg_req_info_t *rinfo) +{ + Sg_request *srp; + int val; + unsigned int ms; + + val = 0; + list_for_each_entry(srp, &sfp->rq_list, entry) { + if (val >= SG_MAX_QUEUE) + break; + rinfo[val].req_state = srp->done + 1; + rinfo[val].problem = + srp->header.masked_status & + srp->header.host_status & + srp->header.driver_status; + if (srp->done) + rinfo[val].duration = + srp->header.duration; + else { + ms = jiffies_to_msecs(jiffies); + rinfo[val].duration = + (ms > srp->header.duration) ? + (ms - srp->header.duration) : 0; + } + rinfo[val].orphan = srp->orphan; + rinfo[val].sg_io_owned = srp->sg_io_owned; + rinfo[val].pack_id = srp->header.pack_id; + rinfo[val].usr_ptr = srp->header.usr_ptr; + val++; + } +} + static long sg_ioctl(struct file *filp, unsigned int cmd_in, unsigned long arg) { @@ -902,7 +937,7 @@ return result; if (val) { sfp->low_dma = 1; - if ((0 == sfp->low_dma) && (0 == sg_res_in_use(sfp))) { + if ((0 == sfp->low_dma) && !sfp->res_in_use) { val = (int) sfp->reserve.bufflen; sg_remove_scat(sfp, &sfp->reserve); sg_build_reserve(sfp, val); @@ -948,7 +983,7 @@ if (!access_ok(VERIFY_WRITE, ip, sizeof (int))) return -EFAULT; read_lock_irqsave(&sfp->rq_list_lock, iflags); - for (srp = sfp->headrp; srp; srp = srp->nextrp) { + list_for_each_entry(srp, &sfp->rq_list, entry) { if ((1 == srp->done) && (!srp->sg_io_owned)) { read_unlock_irqrestore(&sfp->rq_list_lock, iflags); @@ -961,7 +996,8 @@ return 0; case SG_GET_NUM_WAITING: read_lock_irqsave(&sfp->rq_list_lock, iflags); - for (val = 0, srp = sfp->headrp; srp; srp = srp->nextrp) { + val = 0; + list_for_each_entry(srp, &sfp->rq_list, entry) { if ((1 == srp->done) && (!srp->sg_io_owned)) ++val; } @@ -977,12 +1013,18 @@ return -EINVAL; val = min_t(int, val, max_sectors_bytes(sdp->device->request_queue)); + mutex_lock(&sfp->f_mutex); if (val != sfp->reserve.bufflen) { - if (sg_res_in_use(sfp) || sfp->mmap_called) + if (sfp->mmap_called || + sfp->res_in_use) { + mutex_unlock(&sfp->f_mutex); return -EBUSY; + } + sg_remove_scat(sfp, &sfp->reserve); sg_build_reserve(sfp, val); } + mutex_unlock(&sfp->f_mutex); return 0; case SG_GET_RESERVED_SIZE: val = min_t(int, sfp->reserve.bufflen, @@ -1023,42 +1065,15 @@ return -EFAULT; else { sg_req_info_t *rinfo; - unsigned int ms; - rinfo = kmalloc(SZ_SG_REQ_INFO * SG_MAX_QUEUE, - GFP_KERNEL); + rinfo = kzalloc(SZ_SG_REQ_INFO * SG_MAX_QUEUE, + GFP_KERNEL); if (!rinfo) return -ENOMEM; read_lock_irqsave(&sfp->rq_list_lock, iflags); - for (srp = sfp->headrp, val = 0; val < SG_MAX_QUEUE; - ++val, srp = srp ? srp->nextrp : srp) { - memset(&rinfo[val], 0, SZ_SG_REQ_INFO); - if (srp) { - rinfo[val].req_state = srp->done + 1; - rinfo[val].problem = - srp->header.masked_status & - srp->header.host_status & - srp->header.driver_status; - if (srp->done) - rinfo[val].duration = - srp->header.duration; - else { - ms = jiffies_to_msecs(jiffies); - rinfo[val].duration = - (ms > srp->header.duration) ? - (ms - srp->header.duration) : 0; - } - rinfo[val].orphan = srp->orphan; - rinfo[val].sg_io_owned = - srp->sg_io_owned; - rinfo[val].pack_id = - srp->header.pack_id; - rinfo[val].usr_ptr = - srp->header.usr_ptr; - } - } + sg_fill_request_table(sfp, rinfo); read_unlock_irqrestore(&sfp->rq_list_lock, iflags); - result = __copy_to_user(p, rinfo, + result = __copy_to_user(p, rinfo, SZ_SG_REQ_INFO * SG_MAX_QUEUE); result = result ? -EFAULT : 0; kfree(rinfo); @@ -1164,7 +1179,7 @@ return POLLERR; poll_wait(filp, &sfp->read_wait, wait); read_lock_irqsave(&sfp->rq_list_lock, iflags); - for (srp = sfp->headrp; srp; srp = srp->nextrp) { + list_for_each_entry(srp, &sfp->rq_list, entry) { /* if any read waiting, flag it */ if ((0 == res) && (1 == srp->done) && (!srp->sg_io_owned)) res = POLLIN | POLLRDNORM; @@ -1245,6 +1260,7 @@ unsigned long req_sz, len, sa; Sg_scatter_hold *rsv_schp; int k, length; + int ret = 0; if ((!filp) || (!vma) || (!(sfp = (Sg_fd *) filp->private_data))) return -ENXIO; @@ -1255,8 +1271,11 @@ if (vma->vm_pgoff) return -EINVAL; /* want no offset */ rsv_schp = &sfp->reserve; - if (req_sz > rsv_schp->bufflen) - return -ENOMEM; /* cannot map more than reserved buffer */ + mutex_lock(&sfp->f_mutex); + if (req_sz > rsv_schp->bufflen) { + ret = -ENOMEM; /* cannot map more than reserved buffer */ + goto out; + } sa = vma->vm_start; length = 1 << (PAGE_SHIFT + rsv_schp->page_order); @@ -1270,7 +1289,9 @@ vma->vm_flags |= VM_IO | VM_DONTEXPAND | VM_DONTDUMP; vma->vm_private_data = sfp; vma->vm_ops = &sg_mmap_vm_ops; - return 0; +out: + mutex_unlock(&sfp->f_mutex); + return ret; } static void @@ -1737,13 +1758,25 @@ md = &map_data; if (md) { - if (!sg_res_in_use(sfp) && dxfer_len <= rsv_schp->bufflen) + mutex_lock(&sfp->f_mutex); + if (dxfer_len <= rsv_schp->bufflen && + !sfp->res_in_use) { + sfp->res_in_use = 1; sg_link_reserve(sfp, srp, dxfer_len); - else { + } else if (hp->flags & SG_FLAG_MMAP_IO) { + res = -EBUSY; /* sfp->res_in_use == 1 */ + if (dxfer_len > rsv_schp->bufflen) + res = -ENOMEM; + mutex_unlock(&sfp->f_mutex); + return res; + } else { res = sg_build_indirect(req_schp, sfp, dxfer_len); - if (res) + if (res) { + mutex_unlock(&sfp->f_mutex); return res; + } } + mutex_unlock(&sfp->f_mutex); md->pages = req_schp->pages; md->page_order = req_schp->page_order; @@ -2032,8 +2065,9 @@ req_schp->pages = NULL; req_schp->page_order = 0; req_schp->sglist_len = 0; - sfp->save_scat_len = 0; srp->res_used = 0; + /* Called without mutex lock to avoid deadlock */ + sfp->res_in_use = 0; } static Sg_request * @@ -2043,7 +2077,7 @@ unsigned long iflags; write_lock_irqsave(&sfp->rq_list_lock, iflags); - for (resp = sfp->headrp; resp; resp = resp->nextrp) { + list_for_each_entry(resp, &sfp->rq_list, entry) { /* look for requests that are ready + not SG_IO owned */ if ((1 == resp->done) && (!resp->sg_io_owned) && ((-1 == pack_id) || (resp->header.pack_id == pack_id))) { @@ -2061,70 +2095,45 @@ { int k; unsigned long iflags; - Sg_request *resp; Sg_request *rp = sfp->req_arr; write_lock_irqsave(&sfp->rq_list_lock, iflags); - resp = sfp->headrp; - if (!resp) { - memset(rp, 0, sizeof (Sg_request)); - rp->parentfp = sfp; - resp = rp; - sfp->headrp = resp; - } else { - if (0 == sfp->cmd_q) - resp = NULL; /* command queuing disallowed */ - else { - for (k = 0; k < SG_MAX_QUEUE; ++k, ++rp) { - if (!rp->parentfp) - break; - } - if (k < SG_MAX_QUEUE) { - memset(rp, 0, sizeof (Sg_request)); - rp->parentfp = sfp; - while (resp->nextrp) - resp = resp->nextrp; - resp->nextrp = rp; - resp = rp; - } else - resp = NULL; + if (!list_empty(&sfp->rq_list)) { + if (!sfp->cmd_q) + goto out_unlock; + + for (k = 0; k < SG_MAX_QUEUE; ++k, ++rp) { + if (!rp->parentfp) + break; } + if (k >= SG_MAX_QUEUE) + goto out_unlock; } - if (resp) { - resp->nextrp = NULL; - resp->header.duration = jiffies_to_msecs(jiffies); - } + memset(rp, 0, sizeof (Sg_request)); + rp->parentfp = sfp; + rp->header.duration = jiffies_to_msecs(jiffies); + list_add_tail(&rp->entry, &sfp->rq_list); write_unlock_irqrestore(&sfp->rq_list_lock, iflags); - return resp; + return rp; +out_unlock: + write_unlock_irqrestore(&sfp->rq_list_lock, iflags); + return NULL; } /* Return of 1 for found; 0 for not found */ static int sg_remove_request(Sg_fd * sfp, Sg_request * srp) { - Sg_request *prev_rp; - Sg_request *rp; unsigned long iflags; int res = 0; - if ((!sfp) || (!srp) || (!sfp->headrp)) + if (!sfp || !srp || list_empty(&sfp->rq_list)) return res; write_lock_irqsave(&sfp->rq_list_lock, iflags); - prev_rp = sfp->headrp; - if (srp == prev_rp) { - sfp->headrp = prev_rp->nextrp; - prev_rp->parentfp = NULL; + if (!list_empty(&srp->entry)) { + list_del(&srp->entry); + srp->parentfp = NULL; res = 1; - } else { - while ((rp = prev_rp->nextrp)) { - if (srp == rp) { - prev_rp->nextrp = rp->nextrp; - rp->parentfp = NULL; - res = 1; - break; - } - prev_rp = rp; - } } write_unlock_irqrestore(&sfp->rq_list_lock, iflags); return res; @@ -2143,8 +2152,9 @@ init_waitqueue_head(&sfp->read_wait); rwlock_init(&sfp->rq_list_lock); - + INIT_LIST_HEAD(&sfp->rq_list); kref_init(&sfp->f_ref); + mutex_init(&sfp->f_mutex); sfp->timeout = SG_DEFAULT_TIMEOUT; sfp->timeout_user = SG_DEFAULT_TIMEOUT_USER; sfp->force_packid = SG_DEF_FORCE_PACK_ID; @@ -2183,10 +2193,13 @@ { struct sg_fd *sfp = container_of(work, struct sg_fd, ew.work); struct sg_device *sdp = sfp->parentdp; + Sg_request *srp; /* Cleanup any responses which were never read(). */ - while (sfp->headrp) - sg_finish_rem_req(sfp->headrp); + while (!list_empty(&sfp->rq_list)) { + srp = list_first_entry(&sfp->rq_list, Sg_request, entry); + sg_finish_rem_req(srp); + } if (sfp->reserve.bufflen > 0) { SCSI_LOG_TIMEOUT(6, sg_printk(KERN_INFO, sdp, @@ -2220,20 +2233,6 @@ schedule_work(&sfp->ew.work); } -static int -sg_res_in_use(Sg_fd * sfp) -{ - const Sg_request *srp; - unsigned long iflags; - - read_lock_irqsave(&sfp->rq_list_lock, iflags); - for (srp = sfp->headrp; srp; srp = srp->nextrp) - if (srp->res_used) - break; - read_unlock_irqrestore(&sfp->rq_list_lock, iflags); - return srp ? 1 : 0; -} - #ifdef CONFIG_SCSI_PROC_FS static int sg_idr_max_id(int id, void *p, void *data) @@ -2603,7 +2602,7 @@ /* must be called while holding sg_index_lock */ static void sg_proc_debug_helper(struct seq_file *s, Sg_device * sdp) { - int k, m, new_interface, blen, usg; + int k, new_interface, blen, usg; Sg_request *srp; Sg_fd *fp; const sg_io_hdr_t *hp; @@ -2623,13 +2622,11 @@ seq_printf(s, " cmd_q=%d f_packid=%d k_orphan=%d closed=0\n", (int) fp->cmd_q, (int) fp->force_packid, (int) fp->keep_orphan); - for (m = 0, srp = fp->headrp; - srp != NULL; - ++m, srp = srp->nextrp) { + list_for_each_entry(srp, &fp->rq_list, entry) { hp = &srp->header; new_interface = (hp->interface_id == '\0') ? 0 : 1; if (srp->res_used) { - if (new_interface && + if (new_interface && (SG_FLAG_MMAP_IO & hp->flags)) cp = " mmap>> "; else @@ -2660,7 +2657,7 @@ seq_printf(s, "ms sgat=%d op=0x%02x\n", usg, (int) srp->data.cmd_opcode); } - if (0 == m) + if (list_empty(&fp->rq_list)) seq_puts(s, " No requests active\n"); read_unlock(&fp->rq_list_lock); } diff -u linux-raspi2-4.4.0/drivers/scsi/storvsc_drv.c linux-raspi2-4.4.0/drivers/scsi/storvsc_drv.c --- linux-raspi2-4.4.0/drivers/scsi/storvsc_drv.c +++ linux-raspi2-4.4.0/drivers/scsi/storvsc_drv.c @@ -1658,6 +1658,8 @@ put_cpu(); if (ret == -EAGAIN) { + if (payload_sz > sizeof(cmd_request->mpb)) + kfree(payload); /* no more space */ return SCSI_MLQUEUE_DEVICE_BUSY; } diff -u linux-raspi2-4.4.0/drivers/staging/iio/adc/ad7192.c linux-raspi2-4.4.0/drivers/staging/iio/adc/ad7192.c --- linux-raspi2-4.4.0/drivers/staging/iio/adc/ad7192.c +++ linux-raspi2-4.4.0/drivers/staging/iio/adc/ad7192.c @@ -205,11 +205,9 @@ struct iio_dev *indio_dev = spi_get_drvdata(st->sd.spi); unsigned long long scale_uv; int i, ret, id; - u8 ones[6]; /* reset the serial interface */ - memset(&ones, 0xFF, 6); - ret = spi_write(st->sd.spi, &ones, 6); + ret = ad_sd_reset(&st->sd, 48); if (ret < 0) goto out; usleep_range(500, 1000); /* Wait for at least 500us */ diff -u linux-raspi2-4.4.0/drivers/target/iscsi/iscsi_target.c linux-raspi2-4.4.0/drivers/target/iscsi/iscsi_target.c --- linux-raspi2-4.4.0/drivers/target/iscsi/iscsi_target.c +++ linux-raspi2-4.4.0/drivers/target/iscsi/iscsi_target.c @@ -418,6 +418,7 @@ return 0; } np->np_thread_state = ISCSI_NP_THREAD_RESET; + atomic_inc(&np->np_reset_count); if (np->np_thread) { spin_unlock_bh(&np->np_thread_lock); @@ -1996,6 +1997,7 @@ cmd->cmd_sn = be32_to_cpu(hdr->cmdsn); cmd->exp_stat_sn = be32_to_cpu(hdr->exp_statsn); cmd->data_direction = DMA_NONE; + kfree(cmd->text_in_ptr); cmd->text_in_ptr = NULL; return 0; @@ -3965,6 +3967,8 @@ { int ret = 0; struct iscsi_conn *conn = arg; + bool conn_freed = false; + /* * Allow ourselves to be interrupted by SIGINT so that a * connection recovery / failure event can be triggered externally. @@ -3990,12 +3994,14 @@ goto transport_err; ret = iscsit_handle_response_queue(conn); - if (ret == 1) + if (ret == 1) { goto get_immediate; - else if (ret == -ECONNRESET) + } else if (ret == -ECONNRESET) { + conn_freed = true; goto out; - else if (ret < 0) + } else if (ret < 0) { goto transport_err; + } } transport_err: @@ -4005,8 +4011,13 @@ * responsible for cleaning up the early connection failure. */ if (conn->conn_state != TARG_CONN_STATE_IN_LOGIN) - iscsit_take_action_for_connection_exit(conn); + iscsit_take_action_for_connection_exit(conn, &conn_freed); out: + if (!conn_freed) { + while (!kthread_should_stop()) { + msleep(100); + } + } return 0; } @@ -4105,6 +4116,7 @@ u32 checksum = 0, digest = 0; struct iscsi_conn *conn = arg; struct kvec iov; + bool conn_freed = false; /* * Allow ourselves to be interrupted by SIGINT so that a * connection recovery / failure event can be triggered externally. @@ -4116,7 +4128,7 @@ */ rc = wait_for_completion_interruptible(&conn->rx_login_comp); if (rc < 0 || iscsi_target_check_conn_state(conn)) - return 0; + goto out; if (conn->conn_transport->transport_type == ISCSI_INFINIBAND) { struct completion comp; @@ -4201,7 +4213,13 @@ transport_err: if (!signal_pending(current)) atomic_set(&conn->transport_failed, 1); - iscsit_take_action_for_connection_exit(conn); + iscsit_take_action_for_connection_exit(conn, &conn_freed); +out: + if (!conn_freed) { + while (!kthread_should_stop()) { + msleep(100); + } + } return 0; } @@ -4575,8 +4593,11 @@ * always sleep waiting for RX/TX thread shutdown to complete * within iscsit_close_connection(). */ - if (conn->conn_transport->transport_type == ISCSI_TCP) + if (conn->conn_transport->transport_type == ISCSI_TCP) { sleep = cmpxchg(&conn->tx_thread_active, true, false); + if (!sleep) + return; + } atomic_set(&conn->conn_logout_remove, 0); complete(&conn->conn_logout_comp); @@ -4592,8 +4613,11 @@ { int sleep = 1; - if (conn->conn_transport->transport_type == ISCSI_TCP) + if (conn->conn_transport->transport_type == ISCSI_TCP) { sleep = cmpxchg(&conn->tx_thread_active, true, false); + if (!sleep) + return; + } atomic_set(&conn->conn_logout_remove, 0); complete(&conn->conn_logout_comp); diff -u linux-raspi2-4.4.0/drivers/target/iscsi/iscsi_target_configfs.c linux-raspi2-4.4.0/drivers/target/iscsi/iscsi_target_configfs.c --- linux-raspi2-4.4.0/drivers/target/iscsi/iscsi_target_configfs.c +++ linux-raspi2-4.4.0/drivers/target/iscsi/iscsi_target_configfs.c @@ -868,6 +868,7 @@ DEF_TPG_ATTRIB(t10_pi); DEF_TPG_ATTRIB(fabric_prot_type); DEF_TPG_ATTRIB(tpg_enabled_sendtargets); +DEF_TPG_ATTRIB(login_keys_workaround); static struct configfs_attribute *lio_target_tpg_attrib_attrs[] = { &iscsi_tpg_attrib_attr_authentication, @@ -883,6 +884,7 @@ &iscsi_tpg_attrib_attr_t10_pi, &iscsi_tpg_attrib_attr_fabric_prot_type, &iscsi_tpg_attrib_attr_tpg_enabled_sendtargets, + &iscsi_tpg_attrib_attr_login_keys_workaround, NULL, }; diff -u linux-raspi2-4.4.0/drivers/target/iscsi/iscsi_target_login.c linux-raspi2-4.4.0/drivers/target/iscsi/iscsi_target_login.c --- linux-raspi2-4.4.0/drivers/target/iscsi/iscsi_target_login.c +++ linux-raspi2-4.4.0/drivers/target/iscsi/iscsi_target_login.c @@ -1219,9 +1219,11 @@ flush_signals(current); spin_lock_bh(&np->np_thread_lock); - if (np->np_thread_state == ISCSI_NP_THREAD_RESET) { + if (atomic_dec_if_positive(&np->np_reset_count) >= 0) { np->np_thread_state = ISCSI_NP_THREAD_ACTIVE; + spin_unlock_bh(&np->np_thread_lock); complete(&np->np_restart_comp); + return 1; } else if (np->np_thread_state == ISCSI_NP_THREAD_SHUTDOWN) { spin_unlock_bh(&np->np_thread_lock); goto exit; @@ -1254,7 +1256,8 @@ goto exit; } else if (rc < 0) { spin_lock_bh(&np->np_thread_lock); - if (np->np_thread_state == ISCSI_NP_THREAD_RESET) { + if (atomic_dec_if_positive(&np->np_reset_count) >= 0) { + np->np_thread_state = ISCSI_NP_THREAD_ACTIVE; spin_unlock_bh(&np->np_thread_lock); complete(&np->np_restart_comp); iscsit_put_transport(conn->conn_transport); @@ -1437,4 +1440,8 @@ } + while (!kthread_should_stop()) { + msleep(100); + } + return 0; } diff -u linux-raspi2-4.4.0/drivers/target/iscsi/iscsi_target_parameters.c linux-raspi2-4.4.0/drivers/target/iscsi/iscsi_target_parameters.c --- linux-raspi2-4.4.0/drivers/target/iscsi/iscsi_target_parameters.c +++ linux-raspi2-4.4.0/drivers/target/iscsi/iscsi_target_parameters.c @@ -764,7 +764,8 @@ return 0; } -static void iscsi_check_proposer_for_optional_reply(struct iscsi_param *param) +static void iscsi_check_proposer_for_optional_reply(struct iscsi_param *param, + bool keys_workaround) { if (IS_TYPE_BOOL_AND(param)) { if (!strcmp(param->value, NO)) @@ -772,19 +773,31 @@ } else if (IS_TYPE_BOOL_OR(param)) { if (!strcmp(param->value, YES)) SET_PSTATE_REPLY_OPTIONAL(param); - /* - * Required for gPXE iSCSI boot client - */ - if (!strcmp(param->name, IMMEDIATEDATA)) - SET_PSTATE_REPLY_OPTIONAL(param); + + if (keys_workaround) { + /* + * Required for gPXE iSCSI boot client + */ + if (!strcmp(param->name, IMMEDIATEDATA)) + SET_PSTATE_REPLY_OPTIONAL(param); + } } else if (IS_TYPE_NUMBER(param)) { if (!strcmp(param->name, MAXRECVDATASEGMENTLENGTH)) SET_PSTATE_REPLY_OPTIONAL(param); - /* - * Required for gPXE iSCSI boot client - */ - if (!strcmp(param->name, MAXCONNECTIONS)) - SET_PSTATE_REPLY_OPTIONAL(param); + + if (keys_workaround) { + /* + * Required for Mellanox Flexboot PXE boot ROM + */ + if (!strcmp(param->name, FIRSTBURSTLENGTH)) + SET_PSTATE_REPLY_OPTIONAL(param); + + /* + * Required for gPXE iSCSI boot client + */ + if (!strcmp(param->name, MAXCONNECTIONS)) + SET_PSTATE_REPLY_OPTIONAL(param); + } } else if (IS_PHASE_DECLARATIVE(param)) SET_PSTATE_REPLY_OPTIONAL(param); } @@ -1421,7 +1434,8 @@ u8 sender, char *textbuf, u32 *length, - struct iscsi_param_list *param_list) + struct iscsi_param_list *param_list, + bool keys_workaround) { char *output_buf = NULL; struct iscsi_extra_response *er; @@ -1457,7 +1471,8 @@ *length += 1; output_buf = textbuf + *length; SET_PSTATE_PROPOSER(param); - iscsi_check_proposer_for_optional_reply(param); + iscsi_check_proposer_for_optional_reply(param, + keys_workaround); pr_debug("Sending key: %s=%s\n", param->name, param->value); } diff -u linux-raspi2-4.4.0/drivers/target/iscsi/iscsi_target_tpg.c linux-raspi2-4.4.0/drivers/target/iscsi/iscsi_target_tpg.c --- linux-raspi2-4.4.0/drivers/target/iscsi/iscsi_target_tpg.c +++ linux-raspi2-4.4.0/drivers/target/iscsi/iscsi_target_tpg.c @@ -227,6 +227,7 @@ a->t10_pi = TA_DEFAULT_T10_PI; a->fabric_prot_type = TA_DEFAULT_FABRIC_PROT_TYPE; a->tpg_enabled_sendtargets = TA_DEFAULT_TPG_ENABLED_SENDTARGETS; + a->login_keys_workaround = TA_DEFAULT_LOGIN_KEYS_WORKAROUND; } int iscsit_tpg_add_portal_group(struct iscsi_tiqn *tiqn, struct iscsi_portal_group *tpg) @@ -901,0 +903,18 @@ + +int iscsit_ta_login_keys_workaround( + struct iscsi_portal_group *tpg, + u32 flag) +{ + struct iscsi_tpg_attrib *a = &tpg->tpg_attrib; + + if ((flag != 0) && (flag != 1)) { + pr_err("Illegal value %d\n", flag); + return -EINVAL; + } + + a->login_keys_workaround = flag; + pr_debug("iSCSI_TPG[%hu] - TPG enabled bit for login keys workaround: %s ", + tpg->tpgt, (a->login_keys_workaround) ? "ON" : "OFF"); + + return 0; +} diff -u linux-raspi2-4.4.0/drivers/target/iscsi/iscsi_target_tpg.h linux-raspi2-4.4.0/drivers/target/iscsi/iscsi_target_tpg.h --- linux-raspi2-4.4.0/drivers/target/iscsi/iscsi_target_tpg.h +++ linux-raspi2-4.4.0/drivers/target/iscsi/iscsi_target_tpg.h @@ -40,4 +40,5 @@ extern int iscsit_ta_fabric_prot_type(struct iscsi_portal_group *, u32); extern int iscsit_ta_tpg_enabled_sendtargets(struct iscsi_portal_group *, u32); +extern int iscsit_ta_login_keys_workaround(struct iscsi_portal_group *, u32); #endif /* ISCSI_TARGET_TPG_H */ diff -u linux-raspi2-4.4.0/drivers/target/target_core_tpg.c linux-raspi2-4.4.0/drivers/target/target_core_tpg.c --- linux-raspi2-4.4.0/drivers/target/target_core_tpg.c +++ linux-raspi2-4.4.0/drivers/target/target_core_tpg.c @@ -673,6 +673,8 @@ */ struct se_device *dev = rcu_dereference_raw(lun->lun_se_dev); + lun->lun_shutdown = true; + core_clear_lun_from_tpg(lun, tpg); /* * Wait for any active I/O references to percpu se_lun->lun_ref to @@ -694,6 +696,8 @@ } if (!(dev->se_hba->hba_flags & HBA_FLAGS_INTERNAL_USE)) hlist_del_rcu(&lun->link); + + lun->lun_shutdown = false; mutex_unlock(&tpg->tpg_lun_mutex); percpu_ref_exit(&lun->lun_ref); diff -u linux-raspi2-4.4.0/drivers/target/target_core_transport.c linux-raspi2-4.4.0/drivers/target/target_core_transport.c --- linux-raspi2-4.4.0/drivers/target/target_core_transport.c +++ linux-raspi2-4.4.0/drivers/target/target_core_transport.c @@ -784,6 +784,15 @@ if (cmd->transport_state & CMD_T_ABORTED || cmd->transport_state & CMD_T_STOP) { spin_unlock_irqrestore(&cmd->t_state_lock, flags); + /* + * If COMPARE_AND_WRITE was stopped by __transport_wait_for_tasks(), + * release se_device->caw_sem obtained by sbc_compare_and_write() + * since target_complete_ok_work() or target_complete_failure_work() + * won't be called to invoke the normal CAW completion callbacks. + */ + if (cmd->se_cmd_flags & SCF_COMPARE_AND_WRITE) { + up(&dev->caw_sem); + } complete_all(&cmd->t_transport_stop_comp); return; } else if (!success) { diff -u linux-raspi2-4.4.0/drivers/thermal/cpu_cooling.c linux-raspi2-4.4.0/drivers/thermal/cpu_cooling.c --- linux-raspi2-4.4.0/drivers/thermal/cpu_cooling.c +++ linux-raspi2-4.4.0/drivers/thermal/cpu_cooling.c @@ -191,8 +191,10 @@ mutex_lock(&cooling_list_lock); list_for_each_entry(cpufreq_dev, &cpufreq_dev_list, node) { if (cpumask_test_cpu(cpu, &cpufreq_dev->allowed_cpus)) { + unsigned long level = get_level(cpufreq_dev, freq); + mutex_unlock(&cooling_list_lock); - return get_level(cpufreq_dev, freq); + return level; } } mutex_unlock(&cooling_list_lock); diff -u linux-raspi2-4.4.0/drivers/tty/serial/sh-sci.c linux-raspi2-4.4.0/drivers/tty/serial/sh-sci.c --- linux-raspi2-4.4.0/drivers/tty/serial/sh-sci.c +++ linux-raspi2-4.4.0/drivers/tty/serial/sh-sci.c @@ -163,18 +163,17 @@ }, /* - * Common definitions for legacy IrDA ports, dependent on - * regshift value. + * Common definitions for legacy IrDA ports. */ [SCIx_IRDA_REGTYPE] = { [SCSMR] = { 0x00, 8 }, - [SCBRR] = { 0x01, 8 }, - [SCSCR] = { 0x02, 8 }, - [SCxTDR] = { 0x03, 8 }, - [SCxSR] = { 0x04, 8 }, - [SCxRDR] = { 0x05, 8 }, - [SCFCR] = { 0x06, 8 }, - [SCFDR] = { 0x07, 16 }, + [SCBRR] = { 0x02, 8 }, + [SCSCR] = { 0x04, 8 }, + [SCxTDR] = { 0x06, 8 }, + [SCxSR] = { 0x08, 16 }, + [SCxRDR] = { 0x0a, 8 }, + [SCFCR] = { 0x0c, 8 }, + [SCFDR] = { 0x0e, 16 }, [SCTFDR] = sci_reg_invalid, [SCRFDR] = sci_reg_invalid, [SCSPTR] = sci_reg_invalid, diff -u linux-raspi2-4.4.0/drivers/tty/serial/sunhv.c linux-raspi2-4.4.0/drivers/tty/serial/sunhv.c --- linux-raspi2-4.4.0/drivers/tty/serial/sunhv.c +++ linux-raspi2-4.4.0/drivers/tty/serial/sunhv.c @@ -398,6 +398,12 @@ static struct uart_port *sunhv_port; +void sunhv_migrate_hvcons_irq(int cpu) +{ + /* Migrate hvcons irq to param cpu */ + irq_force_affinity(sunhv_port->irq, cpumask_of(cpu)); +} + /* Copy 's' into the con_write_page, decoding "\n" into * "\r\n" along the way. We have to return two lengths * because the caller needs to know how much to advance diff -u linux-raspi2-4.4.0/drivers/tty/tty_buffer.c linux-raspi2-4.4.0/drivers/tty/tty_buffer.c --- linux-raspi2-4.4.0/drivers/tty/tty_buffer.c +++ linux-raspi2-4.4.0/drivers/tty/tty_buffer.c @@ -362,6 +362,32 @@ EXPORT_SYMBOL(tty_insert_flip_string_flags); /** + * __tty_insert_flip_char - Add one character to the tty buffer + * @port: tty port + * @ch: character + * @flag: flag byte + * + * Queue a single byte to the tty buffering, with an optional flag. + * This is the slow path of tty_insert_flip_char. + */ +int __tty_insert_flip_char(struct tty_port *port, unsigned char ch, char flag) +{ + struct tty_buffer *tb; + int flags = (flag == TTY_NORMAL) ? TTYB_NORMAL : 0; + + if (!__tty_buffer_request_room(port, 1, flags)) + return 0; + + tb = port->buf.tail; + if (~tb->flags & TTYB_NORMAL) + *flag_buf_ptr(tb, tb->used) = flag; + *char_buf_ptr(tb, tb->used++) = ch; + + return 1; +} +EXPORT_SYMBOL(__tty_insert_flip_char); + +/** * tty_schedule_flip - push characters to ldisc * @port: tty port to push from * diff -u linux-raspi2-4.4.0/drivers/tty/tty_io.c linux-raspi2-4.4.0/drivers/tty/tty_io.c --- linux-raspi2-4.4.0/drivers/tty/tty_io.c +++ linux-raspi2-4.4.0/drivers/tty/tty_io.c @@ -726,7 +726,7 @@ while (refs--) tty_kref_put(tty); - tty_ldisc_hangup(tty); + tty_ldisc_hangup(tty, cons_filp != NULL); spin_lock_irq(&tty->ctrl_lock); clear_bit(TTY_THROTTLED, &tty->flags); @@ -751,10 +751,9 @@ } else if (tty->ops->hangup) tty->ops->hangup(tty); /* - * We don't want to have driver/ldisc interactions beyond - * the ones we did here. The driver layer expects no - * calls after ->hangup() from the ldisc side. However we - * can't yet guarantee all that. + * We don't want to have driver/ldisc interactions beyond the ones + * we did here. The driver layer expects no calls after ->hangup() + * from the ldisc side, which is now guaranteed. */ set_bit(TTY_HUPPED, &tty->flags); tty_unlock(tty); @@ -1067,6 +1066,8 @@ /* We want to wait for the line discipline to sort out in this situation */ ld = tty_ldisc_ref_wait(tty); + if (!ld) + return hung_up_tty_read(file, buf, count, ppos); if (ld->ops->read) i = ld->ops->read(tty, file, buf, count); else @@ -1242,6 +1243,8 @@ printk(KERN_ERR "tty driver %s lacks a write_room method.\n", tty->driver->name); ld = tty_ldisc_ref_wait(tty); + if (!ld) + return hung_up_tty_write(file, buf, count, ppos); if (!ld->ops->write) ret = -EIO; else @@ -1387,9 +1390,10 @@ else { /* Check for lazy saved data */ tp = tty->driver->termios[idx]; - if (tp != NULL) + if (tp != NULL) { tty->termios = *tp; - else + tty->termios.c_line = tty->driver->init_termios.c_line; + } else tty->termios = tty->driver->init_termios; } /* Compatibility until drivers always set this */ @@ -1474,7 +1478,8 @@ tty->count++; - WARN_ON(!tty->ldisc); + if (!tty->ldisc) + return tty_ldisc_reinit(tty, tty->termios.c_line); return 0; } @@ -2197,6 +2202,8 @@ return 0; ld = tty_ldisc_ref_wait(tty); + if (!ld) + return hung_up_tty_poll(filp, wait); if (ld->ops->poll) ret = ld->ops->poll(tty, filp, wait); tty_ldisc_deref(ld); @@ -2286,6 +2293,8 @@ return -EFAULT; tty_audit_tiocsti(tty, ch); ld = tty_ldisc_ref_wait(tty); + if (!ld) + return -EIO; ld->ops->receive_buf(tty, &ch, &mbz, 1); tty_ldisc_deref(ld); return 0; @@ -2650,13 +2659,13 @@ static int tiocsetd(struct tty_struct *tty, int __user *p) { - int ldisc; + int disc; int ret; - if (get_user(ldisc, p)) + if (get_user(disc, p)) return -EFAULT; - ret = tty_set_ldisc(tty, ldisc); + ret = tty_set_ldisc(tty, disc); return ret; } @@ -2678,6 +2687,8 @@ int ret; ld = tty_ldisc_ref_wait(tty); + if (!ld) + return -EIO; ret = put_user(ld->ops->num, p); tty_ldisc_deref(ld); return ret; @@ -2975,6 +2986,8 @@ return retval; } ld = tty_ldisc_ref_wait(tty); + if (!ld) + return hung_up_tty_ioctl(file, cmd, arg); retval = -EINVAL; if (ld->ops->ioctl) { retval = ld->ops->ioctl(tty, file, cmd, arg); @@ -3003,6 +3016,8 @@ } ld = tty_ldisc_ref_wait(tty); + if (!ld) + return hung_up_tty_compat_ioctl(file, cmd, arg); if (ld->ops->compat_ioctl) retval = ld->ops->compat_ioctl(tty, file, cmd, arg); else diff -u linux-raspi2-4.4.0/drivers/tty/tty_ldisc.c linux-raspi2-4.4.0/drivers/tty/tty_ldisc.c --- linux-raspi2-4.4.0/drivers/tty/tty_ldisc.c +++ linux-raspi2-4.4.0/drivers/tty/tty_ldisc.c @@ -250,19 +250,23 @@ * reference to it. If the line discipline is in flux then * wait patiently until it changes. * + * Returns: NULL if the tty has been hungup and not re-opened with + * a new file descriptor, otherwise valid ldisc reference + * * Note: Must not be called from an IRQ/timer context. The caller * must also be careful not to hold other locks that will deadlock * against a discipline change, such as an existing ldisc reference * (which we check for) * - * Note: only callable from a file_operations routine (which - * guarantees tty->ldisc != NULL when the lock is acquired). + * Note: a file_operations routine (read/poll/write) should use this + * function to wait for any ldisc lifetime events to finish. */ struct tty_ldisc *tty_ldisc_ref_wait(struct tty_struct *tty) { ldsem_down_read(&tty->ldisc_sem, MAX_SCHEDULE_TIMEOUT); - WARN_ON(!tty->ldisc); + if (!tty->ldisc) + ldsem_up_read(&tty->ldisc_sem); return tty->ldisc; } EXPORT_SYMBOL_GPL(tty_ldisc_ref_wait); @@ -411,7 +415,7 @@ /** * tty_set_termios_ldisc - set ldisc field * @tty: tty structure - * @num: line discipline number + * @disc: line discipline number * * This is probably overkill for real world processors but * they are not on hot paths so a little discipline won't do @@ -424,10 +428,10 @@ * Locking: takes termios_rwsem */ -static void tty_set_termios_ldisc(struct tty_struct *tty, int num) +static void tty_set_termios_ldisc(struct tty_struct *tty, int disc) { down_write(&tty->termios_rwsem); - tty->termios.c_line = num; + tty->termios.c_line = disc; up_write(&tty->termios_rwsem); tty->disc_data = NULL; @@ -455,7 +459,7 @@ if (ret) clear_bit(TTY_LDISC_OPEN, &tty->flags); - tty_ldisc_debug(tty, "%p: opened\n", tty->ldisc); + tty_ldisc_debug(tty, "%p: opened\n", ld); return ret; } return 0; @@ -476,7 +480,7 @@ clear_bit(TTY_LDISC_OPEN, &tty->flags); if (ld->ops->close) ld->ops->close(tty); - tty_ldisc_debug(tty, "%p: closed\n", tty->ldisc); + tty_ldisc_debug(tty, "%p: closed\n", ld); } /** @@ -525,51 +529,43 @@ * the close of one side of a tty/pty pair, and eventually hangup. */ -int tty_set_ldisc(struct tty_struct *tty, int ldisc) +int tty_set_ldisc(struct tty_struct *tty, int disc) { int retval; struct tty_ldisc *old_ldisc, *new_ldisc; - new_ldisc = tty_ldisc_get(tty, ldisc); + new_ldisc = tty_ldisc_get(tty, disc); if (IS_ERR(new_ldisc)) return PTR_ERR(new_ldisc); tty_lock(tty); retval = tty_ldisc_lock(tty, 5 * HZ); - if (retval) { - tty_ldisc_put(new_ldisc); - tty_unlock(tty); - return retval; - } - - /* - * Check the no-op case - */ + if (retval) + goto err; - if (tty->ldisc->ops->num == ldisc) { - tty_ldisc_unlock(tty); - tty_ldisc_put(new_ldisc); - tty_unlock(tty); - return 0; + if (!tty->ldisc) { + retval = -EIO; + goto out; } - old_ldisc = tty->ldisc; + /* Check the no-op case */ + if (tty->ldisc->ops->num == disc) + goto out; if (test_bit(TTY_HUPPED, &tty->flags)) { - /* We were raced by the hangup method. It will have stomped - the ldisc data and closed the ldisc down */ - tty_ldisc_unlock(tty); - tty_ldisc_put(new_ldisc); - tty_unlock(tty); - return -EIO; + /* We were raced by hangup */ + retval = -EIO; + goto out; } + old_ldisc = tty->ldisc; + /* Shutdown the old discipline. */ tty_ldisc_close(tty, old_ldisc); /* Now set up the new line discipline. */ tty->ldisc = new_ldisc; - tty_set_termios_ldisc(tty, ldisc); + tty_set_termios_ldisc(tty, disc); retval = tty_ldisc_open(tty, new_ldisc); if (retval < 0) { @@ -589,23 +585,39 @@ the old ldisc (if it was restored as part of error cleanup above). In either case, releasing a single reference from the old ldisc is correct. */ - - tty_ldisc_put(old_ldisc); - - /* - * Allow ldisc referencing to occur again - */ + new_ldisc = old_ldisc; +out: tty_ldisc_unlock(tty); /* Restart the work queue in case no characters kick it off. Safe if already running */ tty_buffer_restart_work(tty->port); - +err: + tty_ldisc_put(new_ldisc); /* drop the extra reference */ tty_unlock(tty); return retval; } /** + * tty_ldisc_kill - teardown ldisc + * @tty: tty being released + * + * Perform final close of the ldisc and reset tty->ldisc + */ +static void tty_ldisc_kill(struct tty_struct *tty) +{ + if (!tty->ldisc) + return; + /* + * Now kill off the ldisc + */ + tty_ldisc_close(tty, tty->ldisc); + tty_ldisc_put(tty->ldisc); + /* Force an oops if we mess this up */ + tty->ldisc = NULL; +} + +/** * tty_reset_termios - reset terminal state * @tty: tty to reset * @@ -625,28 +637,44 @@ /** * tty_ldisc_reinit - reinitialise the tty ldisc * @tty: tty to reinit - * @ldisc: line discipline to reinitialize + * @disc: line discipline to reinitialize * - * Switch the tty to a line discipline and leave the ldisc - * state closed + * Completely reinitialize the line discipline state, by closing the + * current instance, if there is one, and opening a new instance. If + * an error occurs opening the new non-N_TTY instance, the instance + * is dropped and tty->ldisc reset to NULL. The caller can then retry + * with N_TTY instead. + * + * Returns 0 if successful, otherwise error code < 0 */ -static int tty_ldisc_reinit(struct tty_struct *tty, int ldisc) +int tty_ldisc_reinit(struct tty_struct *tty, int disc) { - struct tty_ldisc *ld = tty_ldisc_get(tty, ldisc); + struct tty_ldisc *ld; + int retval; + + ld = tty_ldisc_get(tty, disc); + if (IS_ERR(ld)) { + BUG_ON(disc == N_TTY); + return PTR_ERR(ld); + } - if (IS_ERR(ld)) - return -1; + if (tty->ldisc) { + tty_ldisc_close(tty, tty->ldisc); + tty_ldisc_put(tty->ldisc); + } - tty_ldisc_close(tty, tty->ldisc); - tty_ldisc_put(tty->ldisc); - /* - * Switch the line discipline back - */ + /* switch the line discipline */ tty->ldisc = ld; - tty_set_termios_ldisc(tty, ldisc); - - return 0; + tty_set_termios_ldisc(tty, disc); + retval = tty_ldisc_open(tty, tty->ldisc); + if (retval) { + if (!WARN_ON(disc == N_TTY)) { + tty_ldisc_put(tty->ldisc); + tty->ldisc = NULL; + } + } + return retval; } /** @@ -664,13 +692,11 @@ * tty itself so we must be careful about locking rules. */ -void tty_ldisc_hangup(struct tty_struct *tty) +void tty_ldisc_hangup(struct tty_struct *tty, bool reinit) { struct tty_ldisc *ld; - int reset = tty->driver->flags & TTY_DRIVER_RESET_TERMIOS; - int err = 0; - tty_ldisc_debug(tty, "%p: closing\n", tty->ldisc); + tty_ldisc_debug(tty, "%p: hangup\n", tty->ldisc); ld = tty_ldisc_ref(tty); if (ld != NULL) { @@ -696,31 +722,17 @@ */ tty_ldisc_lock(tty, MAX_SCHEDULE_TIMEOUT); - if (tty->ldisc) { + if (tty->driver->flags & TTY_DRIVER_RESET_TERMIOS) + tty_reset_termios(tty); - /* At this point we have a halted ldisc; we want to close it and - reopen a new ldisc. We could defer the reopen to the next - open but it means auditing a lot of other paths so this is - a FIXME */ - if (reset == 0) { - - if (!tty_ldisc_reinit(tty, tty->termios.c_line)) - err = tty_ldisc_open(tty, tty->ldisc); - else - err = 1; - } - /* If the re-open fails or we reset then go to N_TTY. The - N_TTY open cannot fail */ - if (reset || err) { - BUG_ON(tty_ldisc_reinit(tty, N_TTY)); - WARN_ON(tty_ldisc_open(tty, tty->ldisc)); - } + if (tty->ldisc) { + if (reinit) { + if (tty_ldisc_reinit(tty, tty->termios.c_line) < 0) + tty_ldisc_reinit(tty, N_TTY); + } else + tty_ldisc_kill(tty); } tty_ldisc_unlock(tty); - if (reset) - tty_reset_termios(tty); - - tty_ldisc_debug(tty, "%p: re-opened\n", tty->ldisc); } /** @@ -752,20 +764,6 @@ return 0; } -static void tty_ldisc_kill(struct tty_struct *tty) -{ - /* - * Now kill off the ldisc - */ - tty_ldisc_close(tty, tty->ldisc); - tty_ldisc_put(tty->ldisc); - /* Force an oops if we mess this up */ - tty->ldisc = NULL; - - /* Ensure the next open requests the N_TTY ldisc */ - tty_set_termios_ldisc(tty, N_TTY); -} - /** * tty_ldisc_release - release line discipline * @tty: tty being shut down (or one end of pty pair) diff -u linux-raspi2-4.4.0/drivers/tty/vt/vt.c linux-raspi2-4.4.0/drivers/tty/vt/vt.c --- linux-raspi2-4.4.0/drivers/tty/vt/vt.c +++ linux-raspi2-4.4.0/drivers/tty/vt/vt.c @@ -2719,13 +2719,13 @@ * related to the kernel should not use this. */ data = vt_get_shift_state(); - ret = __put_user(data, p); + ret = put_user(data, p); break; case TIOCL_GETMOUSEREPORTING: console_lock(); /* May be overkill */ data = mouse_reporting(); console_unlock(); - ret = __put_user(data, p); + ret = put_user(data, p); break; case TIOCL_SETVESABLANK: console_lock(); @@ -2734,7 +2734,7 @@ break; case TIOCL_GETKMSGREDIRECT: data = vt_get_kmsg_redirect(); - ret = __put_user(data, p); + ret = put_user(data, p); break; case TIOCL_SETKMSGREDIRECT: if (!capable(CAP_SYS_ADMIN)) { diff -u linux-raspi2-4.4.0/drivers/usb/chipidea/otg.c linux-raspi2-4.4.0/drivers/usb/chipidea/otg.c --- linux-raspi2-4.4.0/drivers/usb/chipidea/otg.c +++ linux-raspi2-4.4.0/drivers/usb/chipidea/otg.c @@ -134,9 +134,9 @@ if (!ci->is_otg) return; - if (hw_read_otgsc(ci, OTGSC_BSV)) + if (hw_read_otgsc(ci, OTGSC_BSV) && !ci->vbus_active) usb_gadget_vbus_connect(&ci->gadget); - else + else if (!hw_read_otgsc(ci, OTGSC_BSV) && ci->vbus_active) usb_gadget_vbus_disconnect(&ci->gadget); } @@ -175,14 +175,21 @@ ci_role_stop(ci); - if (role == CI_ROLE_GADGET) + if (role == CI_ROLE_GADGET && + IS_ERR(ci->platdata->vbus_extcon.edev)) /* - * wait vbus lower than OTGSC_BSV before connecting - * to host + * Wait vbus lower than OTGSC_BSV before connecting + * to host. If connecting status is from an external + * connector instead of register, we don't need to + * care vbus on the board, since it will not affect + * external connector status. */ hw_wait_vbus_lower_bsv(ci); ci_role_start(ci, role); + /* vbus change may have already occurred */ + if (role == CI_ROLE_GADGET) + ci_handle_vbus_change(ci); } } /** diff -u linux-raspi2-4.4.0/drivers/usb/class/cdc-acm.c linux-raspi2-4.4.0/drivers/usb/class/cdc-acm.c --- linux-raspi2-4.4.0/drivers/usb/class/cdc-acm.c +++ linux-raspi2-4.4.0/drivers/usb/class/cdc-acm.c @@ -1759,6 +1759,12 @@ { USB_DEVICE(0x1576, 0x03b1), /* Maretron USB100 */ .driver_info = NO_UNION_NORMAL, /* reports zero length descriptor */ }, + { USB_DEVICE(0xfff0, 0x0100), /* DATECS FP-2000 */ + .driver_info = NO_UNION_NORMAL, /* reports zero length descriptor */ + }, + { USB_DEVICE(0x09d8, 0x0320), /* Elatec GmbH TWN3 */ + .driver_info = NO_UNION_NORMAL, /* has misplaced union descriptor */ + }, { USB_DEVICE(0x2912, 0x0001), /* ATOL FPrint */ .driver_info = CLEAR_HALT_CONDITIONS, diff -u linux-raspi2-4.4.0/drivers/usb/core/config.c linux-raspi2-4.4.0/drivers/usb/core/config.c --- linux-raspi2-4.4.0/drivers/usb/core/config.c +++ linux-raspi2-4.4.0/drivers/usb/core/config.c @@ -638,15 +638,23 @@ } else if (header->bDescriptorType == USB_DT_INTERFACE_ASSOCIATION) { + struct usb_interface_assoc_descriptor *d; + + d = (struct usb_interface_assoc_descriptor *)header; + if (d->bLength < USB_DT_INTERFACE_ASSOCIATION_SIZE) { + dev_warn(ddev, + "config %d has an invalid interface association descriptor of length %d, skipping\n", + cfgno, d->bLength); + continue; + } + if (iad_num == USB_MAXIADS) { dev_warn(ddev, "found more Interface " "Association Descriptors " "than allocated for in " "configuration %d\n", cfgno); } else { - config->intf_assoc[iad_num] = - (struct usb_interface_assoc_descriptor - *)header; + config->intf_assoc[iad_num] = d; iad_num++; } @@ -847,7 +855,7 @@ } if (dev->quirks & USB_QUIRK_DELAY_INIT) - msleep(100); + msleep(200); result = usb_get_descriptor(dev, USB_DT_CONFIG, cfgno, bigbuffer, length); @@ -947,10 +955,12 @@ for (i = 0; i < num; i++) { buffer += length; cap = (struct usb_dev_cap_header *)buffer; - length = cap->bLength; - if (total_len < length) + if (total_len < sizeof(*cap) || total_len < cap->bLength) { + dev->bos->desc->bNumDeviceCaps = i; break; + } + length = cap->bLength; total_len -= length; if (cap->bDescriptorType != USB_DT_DEVICE_CAPABILITY) { diff -u linux-raspi2-4.4.0/drivers/usb/core/devio.c linux-raspi2-4.4.0/drivers/usb/core/devio.c --- linux-raspi2-4.4.0/drivers/usb/core/devio.c +++ linux-raspi2-4.4.0/drivers/usb/core/devio.c @@ -519,6 +519,8 @@ if (as->status < 0 && as->bulk_addr && as->status != -ECONNRESET && as->status != -ENOENT) cancel_bulk_urbs(ps, as->bulk_addr); + + wake_up(&ps->wait); spin_unlock(&ps->lock); if (signr) { @@ -526,8 +528,6 @@ put_pid(pid); put_cred(cred); } - - wake_up(&ps->wait); } static void destroy_async(struct usb_dev_state *ps, struct list_head *list) diff -u linux-raspi2-4.4.0/drivers/usb/core/hcd.c linux-raspi2-4.4.0/drivers/usb/core/hcd.c --- linux-raspi2-4.4.0/drivers/usb/core/hcd.c +++ linux-raspi2-4.4.0/drivers/usb/core/hcd.c @@ -1880,7 +1880,7 @@ /* No more submits can occur */ spin_lock_irq(&hcd_urb_list_lock); rescan: - list_for_each_entry (urb, &ep->urb_list, urb_list) { + list_for_each_entry_reverse(urb, &ep->urb_list, urb_list) { int is_in; if (urb->unlinked) @@ -2477,6 +2477,8 @@ } if (usb_hcd_is_primary_hcd(hcd) && hcd->shared_hcd) { hcd = hcd->shared_hcd; + clear_bit(HCD_FLAG_RH_RUNNING, &hcd->flags); + set_bit(HCD_FLAG_DEAD, &hcd->flags); if (hcd->rh_registered) { clear_bit(HCD_FLAG_POLL_RH, &hcd->flags); @@ -3026,6 +3028,7 @@ } usb_put_invalidate_rhdev(hcd); + hcd->flags = 0; } EXPORT_SYMBOL_GPL(usb_remove_hcd); diff -u linux-raspi2-4.4.0/drivers/usb/core/hub.c linux-raspi2-4.4.0/drivers/usb/core/hub.c --- linux-raspi2-4.4.0/drivers/usb/core/hub.c +++ linux-raspi2-4.4.0/drivers/usb/core/hub.c @@ -2704,13 +2704,16 @@ if (!(portstatus & USB_PORT_STAT_CONNECTION)) return -ENOTCONN; - /* bomb out completely if the connection bounced. A USB 3.0 - * connection may bounce if multiple warm resets were issued, + /* Retry if connect change is set but status is still connected. + * A USB 3.0 connection may bounce if multiple warm resets were issued, * but the device may have successfully re-connected. Ignore it. */ if (!hub_is_superspeed(hub->hdev) && - (portchange & USB_PORT_STAT_C_CONNECTION)) - return -ENOTCONN; + (portchange & USB_PORT_STAT_C_CONNECTION)) { + usb_clear_port_feature(hub->hdev, port1, + USB_PORT_FEAT_C_CONNECTION); + return -EAGAIN; + } if (!(portstatus & USB_PORT_STAT_ENABLE)) return -EBUSY; @@ -4713,7 +4716,8 @@ static void hub_port_connect(struct usb_hub *hub, int port1, u16 portstatus, u16 portchange) { - int status, i; + int status = -ENODEV; + int i; unsigned unit_load; struct usb_device *hdev = hub->hdev; struct usb_hcd *hcd = bus_to_hcd(hdev->bus); @@ -4812,7 +4816,7 @@ goto loop; if (udev->quirks & USB_QUIRK_DELAY_INIT) - msleep(1000); + msleep(2000); /* consecutive bus-powered hubs aren't reliable; they can * violate the voltage drop budget. if the new child has @@ -4917,9 +4921,10 @@ done: hub_port_disable(hub, port1, 1); - if (hcd->driver->relinquish_port && !hub->hdev->parent) - hcd->driver->relinquish_port(hcd, port1); - + if (hcd->driver->relinquish_port && !hub->hdev->parent) { + if (status != -ENOTCONN && status != -ENODEV) + hcd->driver->relinquish_port(hcd, port1); + } } /* Handle physical or logical connection change events. diff -u linux-raspi2-4.4.0/drivers/usb/core/quirks.c linux-raspi2-4.4.0/drivers/usb/core/quirks.c --- linux-raspi2-4.4.0/drivers/usb/core/quirks.c +++ linux-raspi2-4.4.0/drivers/usb/core/quirks.c @@ -57,8 +57,9 @@ /* Microsoft LifeCam-VX700 v2.0 */ { USB_DEVICE(0x045e, 0x0770), .driver_info = USB_QUIRK_RESET_RESUME }, - /* Logitech HD Pro Webcams C920 and C930e */ + /* Logitech HD Pro Webcams C920, C920-C and C930e */ { USB_DEVICE(0x046d, 0x082d), .driver_info = USB_QUIRK_DELAY_INIT }, + { USB_DEVICE(0x046d, 0x0841), .driver_info = USB_QUIRK_DELAY_INIT }, { USB_DEVICE(0x046d, 0x0843), .driver_info = USB_QUIRK_DELAY_INIT }, /* Logitech ConferenceCam CC3000e */ @@ -150,6 +151,9 @@ /* appletouch */ { USB_DEVICE(0x05ac, 0x021a), .driver_info = USB_QUIRK_RESET_RESUME }, + /* Genesys Logic hub, internally used by Moshi USB to Ethernet Adapter */ + { USB_DEVICE(0x05e3, 0x0616), .driver_info = USB_QUIRK_NO_LPM }, + /* Avision AV600U */ { USB_DEVICE(0x0638, 0x0a13), .driver_info = USB_QUIRK_STRING_FETCH_255 }, @@ -214,6 +218,13 @@ { USB_DEVICE(0x1a0a, 0x0200), .driver_info = USB_QUIRK_LINEAR_UFRAME_INTR_BINTERVAL }, + /* Corsair Strafe RGB */ + { USB_DEVICE(0x1b1c, 0x1b20), .driver_info = USB_QUIRK_DELAY_INIT }, + + /* MIDI keyboard WORLDE MINI */ + { USB_DEVICE(0x1c75, 0x0204), .driver_info = + USB_QUIRK_CONFIG_INTF_STRINGS }, + /* Acer C120 LED Projector */ { USB_DEVICE(0x1de1, 0xc102), .driver_info = USB_QUIRK_NO_LPM }, @@ -223,6 +234,10 @@ /* Blackmagic Design UltraStudio SDI */ { USB_DEVICE(0x1edb, 0xbd4f), .driver_info = USB_QUIRK_NO_LPM }, + /* Hauppauge HVR-950q */ + { USB_DEVICE(0x2040, 0x7200), .driver_info = + USB_QUIRK_CONFIG_INTF_STRINGS }, + /* INTEL VALUE SSD */ { USB_DEVICE(0x8086, 0xf1a5), .driver_info = USB_QUIRK_RESET_RESUME }, @@ -245,6 +260,7 @@ { USB_DEVICE(0x093a, 0x2500), .driver_info = USB_QUIRK_RESET_RESUME }, { USB_DEVICE(0x093a, 0x2510), .driver_info = USB_QUIRK_RESET_RESUME }, { USB_DEVICE(0x093a, 0x2521), .driver_info = USB_QUIRK_RESET_RESUME }, + { USB_DEVICE(0x03f0, 0x2b4a), .driver_info = USB_QUIRK_RESET_RESUME }, /* Logitech Optical Mouse M90/M100 */ { USB_DEVICE(0x046d, 0xc05a), .driver_info = USB_QUIRK_RESET_RESUME }, diff -u linux-raspi2-4.4.0/drivers/usb/dwc3/gadget.c linux-raspi2-4.4.0/drivers/usb/dwc3/gadget.c --- linux-raspi2-4.4.0/drivers/usb/dwc3/gadget.c +++ linux-raspi2-4.4.0/drivers/usb/dwc3/gadget.c @@ -1219,7 +1219,7 @@ goto out; } - if (WARN(req->dep != dep, "request %p belongs to '%s'\n", + if (WARN(req->dep != dep, "request %pK belongs to '%s'\n", request, req->dep->name)) { ret = -EINVAL; goto out; @@ -1264,7 +1264,7 @@ dwc3_stop_active_transfer(dwc, dep->number, true); goto out1; } - dev_err(dwc->dev, "request %p was not queued to %s\n", + dev_err(dwc->dev, "request %pK was not queued to %s\n", request, ep->name); ret = -EINVAL; goto out0; @@ -1866,7 +1866,7 @@ * would help. Lets hope that if this occurs, someone * fixes the root cause instead of looking away :) */ - dev_err(dwc->dev, "%s's TRB (%p) still owned by HW\n", + dev_err(dwc->dev, "%s's TRB (%pK) still owned by HW\n", dep->name, trb); count = trb->size & DWC3_TRB_SIZE_MASK; diff -u linux-raspi2-4.4.0/drivers/usb/gadget/composite.c linux-raspi2-4.4.0/drivers/usb/gadget/composite.c --- linux-raspi2-4.4.0/drivers/usb/gadget/composite.c +++ linux-raspi2-4.4.0/drivers/usb/gadget/composite.c @@ -1905,6 +1905,8 @@ static void __composite_unbind(struct usb_gadget *gadget, bool unbind_driver) { struct usb_composite_dev *cdev = get_gadget_data(gadget); + struct usb_gadget_strings *gstr = cdev->driver->strings[0]; + struct usb_string *dev_str = gstr->strings; /* composite_disconnect() must already have been called * by the underlying peripheral controller driver! @@ -1924,6 +1926,9 @@ composite_dev_cleanup(cdev); + if (dev_str[USB_GADGET_MANUFACTURER_IDX].s == cdev->def_manufacturer) + dev_str[USB_GADGET_MANUFACTURER_IDX].s = ""; + kfree(cdev->def_manufacturer); kfree(cdev); set_gadget_data(gadget, NULL); diff -u linux-raspi2-4.4.0/drivers/usb/gadget/function/f_mass_storage.c linux-raspi2-4.4.0/drivers/usb/gadget/function/f_mass_storage.c --- linux-raspi2-4.4.0/drivers/usb/gadget/function/f_mass_storage.c +++ linux-raspi2-4.4.0/drivers/usb/gadget/function/f_mass_storage.c @@ -306,8 +306,6 @@ struct completion thread_notifier; struct task_struct *thread_task; - /* Callback functions. */ - const struct fsg_operations *ops; /* Gadget's private data. */ void *private_data; @@ -2504,6 +2502,7 @@ static int fsg_main_thread(void *common_) { struct fsg_common *common = common_; + int i; /* * Allow the thread to be killed by a signal, but set the signal mask @@ -2565,21 +2564,16 @@ common->thread_task = NULL; spin_unlock_irq(&common->lock); - if (!common->ops || !common->ops->thread_exits - || common->ops->thread_exits(common) < 0) { - int i; + /* Eject media from all LUNs */ - down_write(&common->filesem); - for (i = 0; i < ARRAY_SIZE(common->luns); --i) { - struct fsg_lun *curlun = common->luns[i]; - if (!curlun || !fsg_lun_is_open(curlun)) - continue; + down_write(&common->filesem); + for (i = 0; i < ARRAY_SIZE(common->luns); i++) { + struct fsg_lun *curlun = common->luns[i]; + if (curlun && fsg_lun_is_open(curlun)) fsg_lun_close(curlun); - curlun->unit_attention_data = SS_MEDIUM_NOT_PRESENT; - } - up_write(&common->filesem); } + up_write(&common->filesem); /* Let fsg_unbind() know the thread has exited */ complete_and_exit(&common->thread_notifier, 0); @@ -2785,13 +2779,6 @@ } EXPORT_SYMBOL_GPL(fsg_common_remove_luns); -void fsg_common_set_ops(struct fsg_common *common, - const struct fsg_operations *ops) -{ - common->ops = ops; -} -EXPORT_SYMBOL_GPL(fsg_common_set_ops); - void fsg_common_free_buffers(struct fsg_common *common) { _fsg_common_free_buffers(common->buffhds, common->fsg_num_buffers); diff -u linux-raspi2-4.4.0/drivers/usb/gadget/function/f_mass_storage.h linux-raspi2-4.4.0/drivers/usb/gadget/function/f_mass_storage.h --- linux-raspi2-4.4.0/drivers/usb/gadget/function/f_mass_storage.h +++ linux-raspi2-4.4.0/drivers/usb/gadget/function/f_mass_storage.h @@ -60,17 +60,6 @@ struct fsg_common; /* FSF callback functions */ -struct fsg_operations { - /* - * Callback function to call when thread exits. If no - * callback is set or it returns value lower then zero MSF - * will force eject all LUNs it operates on (including those - * marked as non-removable or with prevent_medium_removal flag - * set). - */ - int (*thread_exits)(struct fsg_common *common); -}; - struct fsg_lun_opts { struct config_group group; struct fsg_lun *lun; @@ -141,9 +130,6 @@ void fsg_common_remove_luns(struct fsg_common *common); -void fsg_common_set_ops(struct fsg_common *common, - const struct fsg_operations *ops); - int fsg_common_create_lun(struct fsg_common *common, struct fsg_lun_config *cfg, unsigned int id, const char *name, const char **name_pfx); diff -u linux-raspi2-4.4.0/drivers/usb/gadget/legacy/inode.c linux-raspi2-4.4.0/drivers/usb/gadget/legacy/inode.c --- linux-raspi2-4.4.0/drivers/usb/gadget/legacy/inode.c +++ linux-raspi2-4.4.0/drivers/usb/gadget/legacy/inode.c @@ -27,7 +27,7 @@ #include #include #include - +#include #include #include @@ -116,6 +116,7 @@ struct dev_data { spinlock_t lock; atomic_t count; + int udc_usage; enum ep0_state state; /* P: lock */ struct usb_gadgetfs_event event [N_EVENT]; unsigned ev_next; @@ -512,9 +513,9 @@ INIT_WORK(&priv->work, ep_user_copy_worker); schedule_work(&priv->work); } - spin_unlock(&epdata->dev->lock); usb_ep_free_request(ep, req); + spin_unlock(&epdata->dev->lock); put_ep(epdata); } @@ -938,9 +939,11 @@ struct usb_request *req = dev->req; if ((retval = setup_req (ep, req, 0)) == 0) { + ++dev->udc_usage; spin_unlock_irq (&dev->lock); retval = usb_ep_queue (ep, req, GFP_KERNEL); spin_lock_irq (&dev->lock); + --dev->udc_usage; } dev->state = STATE_DEV_CONNECTED; @@ -982,11 +985,14 @@ retval = -EIO; else { len = min (len, (size_t)dev->req->actual); -// FIXME don't call this with the spinlock held ... + ++dev->udc_usage; + spin_unlock_irq(&dev->lock); if (copy_to_user (buf, dev->req->buf, len)) retval = -EFAULT; else retval = len; + spin_lock_irq(&dev->lock); + --dev->udc_usage; clean_req (dev->gadget->ep0, dev->req); /* NOTE userspace can't yet choose to stall */ } @@ -1130,6 +1136,7 @@ retval = setup_req (dev->gadget->ep0, dev->req, len); if (retval == 0) { dev->state = STATE_DEV_CONNECTED; + ++dev->udc_usage; spin_unlock_irq (&dev->lock); if (copy_from_user (dev->req->buf, buf, len)) retval = -EFAULT; @@ -1140,10 +1147,10 @@ dev->gadget->ep0, dev->req, GFP_KERNEL); } + spin_lock_irq(&dev->lock); + --dev->udc_usage; if (retval < 0) { - spin_lock_irq (&dev->lock); clean_req (dev->gadget->ep0, dev->req); - spin_unlock_irq (&dev->lock); } else retval = len; @@ -1240,9 +1247,21 @@ struct usb_gadget *gadget = dev->gadget; long ret = -ENOTTY; - if (gadget->ops->ioctl) + spin_lock_irq(&dev->lock); + if (dev->state == STATE_DEV_OPENED || + dev->state == STATE_DEV_UNBOUND) { + /* Not bound to a UDC */ + } else if (gadget->ops->ioctl) { + ++dev->udc_usage; + spin_unlock_irq(&dev->lock); + ret = gadget->ops->ioctl (gadget, code, value); + spin_lock_irq(&dev->lock); + --dev->udc_usage; + } + spin_unlock_irq(&dev->lock); + return ret; } @@ -1460,10 +1479,12 @@ if (value < 0) break; + ++dev->udc_usage; spin_unlock (&dev->lock); value = usb_ep_queue (gadget->ep0, dev->req, GFP_KERNEL); spin_lock (&dev->lock); + --dev->udc_usage; if (value < 0) { clean_req (gadget->ep0, dev->req); break; @@ -1487,8 +1508,12 @@ req->length = value; req->zero = value < w_length; + ++dev->udc_usage; spin_unlock (&dev->lock); value = usb_ep_queue (gadget->ep0, req, GFP_KERNEL); + spin_lock(&dev->lock); + --dev->udc_usage; + spin_unlock(&dev->lock); if (value < 0) { DBG (dev, "ep_queue --> %d\n", value); req->status = 0; @@ -1515,21 +1540,24 @@ /* break link to FS */ ep = list_first_entry (&dev->epfiles, struct ep_data, epfiles); list_del_init (&ep->epfiles); + spin_unlock_irq (&dev->lock); + dentry = ep->dentry; ep->dentry = NULL; parent = d_inode(dentry->d_parent); /* break link to controller */ + mutex_lock(&ep->lock); if (ep->state == STATE_EP_ENABLED) (void) usb_ep_disable (ep->ep); ep->state = STATE_EP_UNBOUND; usb_ep_free_request (ep->ep, ep->req); ep->ep = NULL; + mutex_unlock(&ep->lock); + wake_up (&ep->wait); put_ep (ep); - spin_unlock_irq (&dev->lock); - /* break link to dcache */ mutex_lock (&parent->i_mutex); d_delete (dentry); @@ -1600,6 +1628,11 @@ spin_lock_irq (&dev->lock); dev->state = STATE_DEV_UNBOUND; + while (dev->udc_usage > 0) { + spin_unlock_irq(&dev->lock); + usleep_range(1000, 2000); + spin_lock_irq(&dev->lock); + } spin_unlock_irq (&dev->lock); destroy_ep_files (dev); diff -u linux-raspi2-4.4.0/drivers/usb/gadget/legacy/mass_storage.c linux-raspi2-4.4.0/drivers/usb/gadget/legacy/mass_storage.c --- linux-raspi2-4.4.0/drivers/usb/gadget/legacy/mass_storage.c +++ linux-raspi2-4.4.0/drivers/usb/gadget/legacy/mass_storage.c @@ -107,15 +107,6 @@ FSG_MODULE_PARAMETERS(/* no prefix */, mod_data); -static unsigned long msg_registered; -static void msg_cleanup(void); - -static int msg_thread_exits(struct fsg_common *common) -{ - msg_cleanup(); - return 0; -} - static int msg_do_config(struct usb_configuration *c) { struct fsg_opts *opts; @@ -154,9 +145,6 @@ static int msg_bind(struct usb_composite_dev *cdev) { - static const struct fsg_operations ops = { - .thread_exits = msg_thread_exits, - }; struct fsg_opts *opts; struct fsg_config config; int status; @@ -173,8 +161,6 @@ if (status) goto fail; - fsg_common_set_ops(opts->common, &ops); - status = fsg_common_set_cdev(opts->common, cdev, config.can_stall); if (status) goto fail_set_cdev; @@ -210,7 +196,6 @@ usb_composite_overwrite_options(cdev, &coverwrite); dev_info(&cdev->gadget->dev, DRIVER_DESC ", version: " DRIVER_VERSION "\n"); - set_bit(0, &msg_registered); return 0; fail_otg_desc: @@ -262,8 +247,7 @@ module_init(msg_init); -static void msg_cleanup(void) +static void __exit msg_cleanup(void) { - if (test_and_clear_bit(0, &msg_registered)) - usb_composite_unregister(&msg_driver); + usb_composite_unregister(&msg_driver); } module_exit(msg_cleanup); diff -u linux-raspi2-4.4.0/drivers/usb/gadget/udc/dummy_hcd.c linux-raspi2-4.4.0/drivers/usb/gadget/udc/dummy_hcd.c --- linux-raspi2-4.4.0/drivers/usb/gadget/udc/dummy_hcd.c +++ linux-raspi2-4.4.0/drivers/usb/gadget/udc/dummy_hcd.c @@ -237,6 +237,8 @@ struct usb_device *udev; struct list_head urbp_list; + struct urbp *next_frame_urbp; + u32 stream_en_ep; u8 num_stream[30 / 2]; @@ -253,11 +255,13 @@ */ struct dummy_ep ep[DUMMY_ENDPOINTS]; int address; + int callback_usage; struct usb_gadget gadget; struct usb_gadget_driver *driver; struct dummy_request fifo_req; u8 fifo_buf[FIFO_SIZE]; u16 devstatus; + unsigned ints_enabled:1; unsigned udc_suspended:1; unsigned pullup:1; @@ -416,6 +420,7 @@ static void set_link_state(struct dummy_hcd *dum_hcd) { struct dummy *dum = dum_hcd->dum; + unsigned int power_bit; dum_hcd->active = 0; if (dum->pullup) @@ -426,32 +431,43 @@ return; set_link_state_by_speed(dum_hcd); + power_bit = (dummy_hcd_to_hcd(dum_hcd)->speed == HCD_USB3 ? + USB_SS_PORT_STAT_POWER : USB_PORT_STAT_POWER); if ((dum_hcd->port_status & USB_PORT_STAT_ENABLE) == 0 || dum_hcd->active) dum_hcd->resuming = 0; /* Currently !connected or in reset */ - if ((dum_hcd->port_status & USB_PORT_STAT_CONNECTION) == 0 || + if ((dum_hcd->port_status & power_bit) == 0 || (dum_hcd->port_status & USB_PORT_STAT_RESET) != 0) { - unsigned disconnect = USB_PORT_STAT_CONNECTION & + unsigned int disconnect = power_bit & dum_hcd->old_status & (~dum_hcd->port_status); - unsigned reset = USB_PORT_STAT_RESET & + unsigned int reset = USB_PORT_STAT_RESET & (~dum_hcd->old_status) & dum_hcd->port_status; /* Report reset and disconnect events to the driver */ - if (dum->driver && (disconnect || reset)) { + if (dum->ints_enabled && (disconnect || reset)) { stop_activity(dum); + ++dum->callback_usage; + spin_unlock(&dum->lock); if (reset) usb_gadget_udc_reset(&dum->gadget, dum->driver); else dum->driver->disconnect(&dum->gadget); + spin_lock(&dum->lock); + --dum->callback_usage; } - } else if (dum_hcd->active != dum_hcd->old_active) { + } else if (dum_hcd->active != dum_hcd->old_active && + dum->ints_enabled) { + ++dum->callback_usage; + spin_unlock(&dum->lock); if (dum_hcd->old_active && dum->driver->suspend) dum->driver->suspend(&dum->gadget); else if (!dum_hcd->old_active && dum->driver->resume) dum->driver->resume(&dum->gadget); + spin_lock(&dum->lock); + --dum->callback_usage; } dum_hcd->old_status = dum_hcd->port_status; @@ -967,8 +983,11 @@ * can't enumerate without help from the driver we're binding. */ + spin_lock_irq(&dum->lock); dum->devstatus = 0; dum->driver = driver; + dum->ints_enabled = 1; + spin_unlock_irq(&dum->lock); return 0; } @@ -979,6 +998,16 @@ struct dummy *dum = dum_hcd->dum; spin_lock_irq(&dum->lock); + dum->ints_enabled = 0; + stop_activity(dum); + + /* emulate synchronize_irq(): wait for callbacks to finish */ + while (dum->callback_usage > 0) { + spin_unlock_irq(&dum->lock); + usleep_range(1000, 2000); + spin_lock_irq(&dum->lock); + } + dum->driver = NULL; spin_unlock_irq(&dum->lock); @@ -1032,7 +1061,12 @@ memzero_explicit(&dum->gadget, sizeof(struct usb_gadget)); dum->gadget.name = gadget_name; dum->gadget.ops = &dummy_ops; - dum->gadget.max_speed = USB_SPEED_SUPER; + if (mod_data.is_super_speed) + dum->gadget.max_speed = USB_SPEED_SUPER; + else if (mod_data.is_high_speed) + dum->gadget.max_speed = USB_SPEED_HIGH; + else + dum->gadget.max_speed = USB_SPEED_FULL; dum->gadget.dev.parent = &pdev->dev; init_dummy_udc_hw(dum); @@ -1241,6 +1275,8 @@ list_add_tail(&urbp->urbp_list, &dum_hcd->urbp_list); urb->hcpriv = urbp; + if (!dum_hcd->next_frame_urbp) + dum_hcd->next_frame_urbp = urbp; if (usb_pipetype(urb->pipe) == PIPE_CONTROL) urb->error_count = 1; /* mark as a new urb */ @@ -1517,6 +1553,8 @@ if (!is_active((dum->gadget.speed == USB_SPEED_SUPER ? dum->ss_hcd : dum->hs_hcd))) return NULL; + if (!dum->ints_enabled) + return NULL; if ((address & ~USB_DIR_IN) == 0) return &dum->ep[0]; for (i = 1; i < DUMMY_ENDPOINTS; i++) { @@ -1758,6 +1796,7 @@ spin_unlock_irqrestore(&dum->lock, flags); return; } + dum_hcd->next_frame_urbp = NULL; for (i = 0; i < DUMMY_ENDPOINTS; i++) { if (!ep_info[i].name) @@ -1774,6 +1813,10 @@ int type; int status = -EINPROGRESS; + /* stop when we reach URBs queued after the timer interrupt */ + if (urbp == dum_hcd->next_frame_urbp) + break; + urb = urbp->urb; if (urb->unlinked) goto return_urb; @@ -1853,10 +1896,12 @@ * until setup() returns; no reentrancy issues etc. */ if (value > 0) { + ++dum->callback_usage; spin_unlock(&dum->lock); value = dum->driver->setup(&dum->gadget, &setup); spin_lock(&dum->lock); + --dum->callback_usage; if (value >= 0) { /* no delays (max 64KB data stage) */ @@ -2564,8 +2609,6 @@ .product_desc = "Dummy host controller", .hcd_priv_size = sizeof(struct dummy_hcd), - .flags = HCD_USB3 | HCD_SHARED, - .reset = dummy_setup, .start = dummy_start, .stop = dummy_stop, @@ -2594,8 +2637,12 @@ dev_info(&pdev->dev, "%s, driver " DRIVER_VERSION "\n", driver_desc); dum = *((void **)dev_get_platdata(&pdev->dev)); - if (!mod_data.is_super_speed) + if (mod_data.is_super_speed) + dummy_hcd.flags = HCD_USB3 | HCD_SHARED; + else if (mod_data.is_high_speed) dummy_hcd.flags = HCD_USB2; + else + dummy_hcd.flags = HCD_USB11; hs_hcd = usb_create_hcd(&dummy_hcd, &pdev->dev, dev_name(&pdev->dev)); if (!hs_hcd) return -ENOMEM; diff -u linux-raspi2-4.4.0/drivers/usb/host/xhci-hub.c linux-raspi2-4.4.0/drivers/usb/host/xhci-hub.c --- linux-raspi2-4.4.0/drivers/usb/host/xhci-hub.c +++ linux-raspi2-4.4.0/drivers/usb/host/xhci-hub.c @@ -403,15 +403,25 @@ GFP_NOWAIT); if (!command) { spin_unlock_irqrestore(&xhci->lock, flags); - xhci_free_command(xhci, cmd); - return -ENOMEM; + ret = -ENOMEM; + goto cmd_cleanup; + } + ret = xhci_queue_stop_endpoint(xhci, command, slot_id, + i, suspend); + if (ret) { + spin_unlock_irqrestore(&xhci->lock, flags); + xhci_free_command(xhci, command); + goto cmd_cleanup; } - xhci_queue_stop_endpoint(xhci, command, slot_id, i, - suspend); } } - xhci_queue_stop_endpoint(xhci, cmd, slot_id, 0, suspend); + ret = xhci_queue_stop_endpoint(xhci, cmd, slot_id, 0, suspend); + if (ret) { + spin_unlock_irqrestore(&xhci->lock, flags); + goto cmd_cleanup; + } + xhci_ring_cmd_db(xhci); spin_unlock_irqrestore(&xhci->lock, flags); @@ -422,6 +432,8 @@ xhci_warn(xhci, "Timeout while waiting for stop endpoint command\n"); ret = -ETIME; } + +cmd_cleanup: xhci_free_command(xhci, cmd); return ret; } @@ -777,6 +789,9 @@ clear_bit(wIndex, &bus_state->resuming_ports); set_bit(wIndex, &bus_state->rexit_ports); + + xhci_test_and_clear_bit(xhci, port_array, wIndex, + PORT_PLC); xhci_set_link_state(xhci, port_array, wIndex, XDEV_U0); diff -u linux-raspi2-4.4.0/drivers/usb/host/xhci-pci.c linux-raspi2-4.4.0/drivers/usb/host/xhci-pci.c --- linux-raspi2-4.4.0/drivers/usb/host/xhci-pci.c +++ linux-raspi2-4.4.0/drivers/usb/host/xhci-pci.c @@ -60,4 +60,6 @@ #define PCI_DEVICE_ID_AMD_PROMONTORYA_1 0x43bc +#define PCI_DEVICE_ID_ASMEDIA_1042A_XHCI 0x1142 + static const char hcd_name[] = "xhci_hcd"; @@ -216,4 +218,8 @@ xhci->quirks |= XHCI_TRUST_TX_LENGTH; + if (pdev->vendor == PCI_VENDOR_ID_ASMEDIA && + pdev->device == PCI_DEVICE_ID_ASMEDIA_1042A_XHCI) + xhci->quirks |= XHCI_ASMEDIA_MODIFY_FLOWCONTROL; + if (xhci->quirks & XHCI_RESET_ON_RESUME) xhci_dbg_trace(xhci, trace_xhci_dbg_quirks, diff -u linux-raspi2-4.4.0/drivers/usb/host/xhci-ring.c linux-raspi2-4.4.0/drivers/usb/host/xhci-ring.c --- linux-raspi2-4.4.0/drivers/usb/host/xhci-ring.c +++ linux-raspi2-4.4.0/drivers/usb/host/xhci-ring.c @@ -856,13 +856,16 @@ (ep->ep_state & EP_GETTING_NO_STREAMS)) { int stream_id; - for (stream_id = 0; stream_id < ep->stream_info->num_streams; + for (stream_id = 1; stream_id < ep->stream_info->num_streams; stream_id++) { + ring = ep->stream_info->stream_rings[stream_id]; + if (!ring) + continue; + xhci_dbg_trace(xhci, trace_xhci_dbg_cancel_urb, "Killing URBs for slot ID %u, ep index %u, stream %u", - slot_id, ep_index, stream_id + 1); - xhci_kill_ring_urbs(xhci, - ep->stream_info->stream_rings[stream_id]); + slot_id, ep_index, stream_id); + xhci_kill_ring_urbs(xhci, ring); } } else { ring = ep->ring; diff -u linux-raspi2-4.4.0/drivers/usb/host/xhci.c linux-raspi2-4.4.0/drivers/usb/host/xhci.c --- linux-raspi2-4.4.0/drivers/usb/host/xhci.c +++ linux-raspi2-4.4.0/drivers/usb/host/xhci.c @@ -191,6 +191,9 @@ if (ret) return ret; + if (xhci->quirks & XHCI_ASMEDIA_MODIFY_FLOWCONTROL) + usb_asmedia_modifyflowcontrol(to_pci_dev(xhci_to_hcd(xhci)->self.controller)); + xhci_dbg_trace(xhci, trace_xhci_dbg_init, "Wait for controller to be ready for doorbell rings"); /* @@ -1121,6 +1124,9 @@ if ((xhci->quirks & XHCI_COMP_MODE_QUIRK) && !comp_timer_running) compliance_mode_recovery_timer_init(xhci); + if (xhci->quirks & XHCI_ASMEDIA_MODIFY_FLOWCONTROL) + usb_asmedia_modifyflowcontrol(to_pci_dev(hcd->self.controller)); + /* Re-enable port polling. */ xhci_dbg(xhci, "%s: starting port polling.\n", __func__); set_bit(HCD_FLAG_POLL_RH, &xhci->shared_hcd->flags); diff -u linux-raspi2-4.4.0/drivers/usb/host/xhci.h linux-raspi2-4.4.0/drivers/usb/host/xhci.h --- linux-raspi2-4.4.0/drivers/usb/host/xhci.h +++ linux-raspi2-4.4.0/drivers/usb/host/xhci.h @@ -1499,7 +1499,7 @@ static inline unsigned int hcd_index(struct usb_hcd *hcd) { - if (hcd->speed == HCD_USB3) + if (hcd->speed >= HCD_USB3) return 0; else return 1; @@ -1645,6 +1645,7 @@ #define XHCI_PME_STUCK_QUIRK (1 << 20) #define XHCI_MISSING_CAS (1 << 24) #define XHCI_U2_DISABLE_WAKE (1 << 27) +#define XHCI_ASMEDIA_MODIFY_FLOWCONTROL (1 << 28) unsigned int num_active_eps; unsigned int limit_active_eps; diff -u linux-raspi2-4.4.0/drivers/usb/musb/musb_core.c linux-raspi2-4.4.0/drivers/usb/musb/musb_core.c --- linux-raspi2-4.4.0/drivers/usb/musb/musb_core.c +++ linux-raspi2-4.4.0/drivers/usb/musb/musb_core.c @@ -877,7 +877,7 @@ */ if (int_usb & MUSB_INTR_RESET) { handled = IRQ_HANDLED; - if (devctl & MUSB_DEVCTL_HM) { + if (is_host_active(musb)) { /* * When BABBLE happens what we can depends on which * platform MUSB is running, because some platforms @@ -887,9 +887,7 @@ * drop the session. */ dev_err(musb->controller, "Babble\n"); - - if (is_host_active(musb)) - musb_recover_from_babble(musb); + musb_recover_from_babble(musb); } else { dev_dbg(musb->controller, "BUS RESET as %s\n", usb_otg_state_string(musb->xceiv->otg->state)); diff -u linux-raspi2-4.4.0/drivers/usb/musb/musb_host.c linux-raspi2-4.4.0/drivers/usb/musb/musb_host.c --- linux-raspi2-4.4.0/drivers/usb/musb/musb_host.c +++ linux-raspi2-4.4.0/drivers/usb/musb/musb_host.c @@ -138,6 +138,7 @@ "Could not flush host TX%d fifo: csr: %04x\n", ep->epnum, csr)) return; + mdelay(1); } } diff -u linux-raspi2-4.4.0/drivers/usb/renesas_usbhs/fifo.c linux-raspi2-4.4.0/drivers/usb/renesas_usbhs/fifo.c --- linux-raspi2-4.4.0/drivers/usb/renesas_usbhs/fifo.c +++ linux-raspi2-4.4.0/drivers/usb/renesas_usbhs/fifo.c @@ -285,11 +285,26 @@ struct usbhs_fifo *fifo) { struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe); + int ret = 0; - if (!usbhs_pipe_is_dcp(pipe)) - usbhsf_fifo_barrier(priv, fifo); + if (!usbhs_pipe_is_dcp(pipe)) { + /* + * This driver checks the pipe condition first to avoid -EBUSY + * from usbhsf_fifo_barrier() with about 10 msec delay in + * the interrupt handler if the pipe is RX direction and empty. + */ + if (usbhs_pipe_is_dir_in(pipe)) + ret = usbhs_pipe_is_accessible(pipe); + if (!ret) + ret = usbhsf_fifo_barrier(priv, fifo); + } - usbhs_write(priv, fifo->ctr, BCLR); + /* + * if non-DCP pipe, this driver should set BCLR when + * usbhsf_fifo_barrier() returns 0. + */ + if (!ret) + usbhs_write(priv, fifo->ctr, BCLR); } static int usbhsf_fifo_rcv_len(struct usbhs_priv *priv, @@ -843,9 +858,9 @@ fifo->name, usbhs_pipe_number(pipe), pkt->length, pkt->zero); usbhs_pipe_running(pipe, 1); - usbhsf_dma_start(pipe, fifo); usbhs_pipe_set_trans_count_if_bulk(pipe, pkt->trans); dma_async_issue_pending(chan); + usbhsf_dma_start(pipe, fifo); usbhs_pipe_enable(pipe); xfer_work_end: diff -u linux-raspi2-4.4.0/drivers/usb/renesas_usbhs/mod_gadget.c linux-raspi2-4.4.0/drivers/usb/renesas_usbhs/mod_gadget.c --- linux-raspi2-4.4.0/drivers/usb/renesas_usbhs/mod_gadget.c +++ linux-raspi2-4.4.0/drivers/usb/renesas_usbhs/mod_gadget.c @@ -37,6 +37,7 @@ struct usbhsg_uep { struct usb_ep ep; struct usbhs_pipe *pipe; + spinlock_t lock; /* protect the pipe */ char ep_name[EP_NAME_SIZE]; @@ -638,10 +639,16 @@ static int usbhsg_ep_disable(struct usb_ep *ep) { struct usbhsg_uep *uep = usbhsg_ep_to_uep(ep); - struct usbhs_pipe *pipe = usbhsg_uep_to_pipe(uep); + struct usbhs_pipe *pipe; + unsigned long flags; + int ret = 0; - if (!pipe) - return -EINVAL; + spin_lock_irqsave(&uep->lock, flags); + pipe = usbhsg_uep_to_pipe(uep); + if (!pipe) { + ret = -EINVAL; + goto out; + } usbhsg_pipe_disable(uep); usbhs_pipe_free(pipe); @@ -649,6 +656,9 @@ uep->pipe->mod_private = NULL; uep->pipe = NULL; +out: + spin_unlock_irqrestore(&uep->lock, flags); + return 0; } @@ -698,8 +708,11 @@ { struct usbhsg_uep *uep = usbhsg_ep_to_uep(ep); struct usbhsg_request *ureq = usbhsg_req_to_ureq(req); - struct usbhs_pipe *pipe = usbhsg_uep_to_pipe(uep); + struct usbhs_pipe *pipe; + unsigned long flags; + spin_lock_irqsave(&uep->lock, flags); + pipe = usbhsg_uep_to_pipe(uep); if (pipe) usbhs_pkt_pop(pipe, usbhsg_ureq_to_pkt(ureq)); @@ -708,6 +721,7 @@ * even if the pipe is NULL. */ usbhsg_queue_pop(uep, ureq, -ECONNRESET); + spin_unlock_irqrestore(&uep->lock, flags); return 0; } @@ -854,10 +868,10 @@ { struct usbhsg_gpriv *gpriv = usbhsg_priv_to_gpriv(priv); struct usbhs_mod *mod = usbhs_mod_get_current(priv); - struct usbhsg_uep *dcp = usbhsg_gpriv_to_dcp(gpriv); + struct usbhsg_uep *uep; struct device *dev = usbhs_priv_to_dev(priv); unsigned long flags; - int ret = 0; + int ret = 0, i; /******************** spin lock ********************/ usbhs_lock(priv, flags); @@ -889,7 +903,9 @@ usbhs_sys_set_test_mode(priv, 0); usbhs_sys_function_ctrl(priv, 0); - usbhsg_ep_disable(&dcp->ep); + /* disable all eps */ + usbhsg_for_each_uep_with_dcp(uep, gpriv, i) + usbhsg_ep_disable(&uep->ep); dev_dbg(dev, "stop gadget\n"); @@ -1072,6 +1088,7 @@ ret = -ENOMEM; goto usbhs_mod_gadget_probe_err_gpriv; } + spin_lock_init(&uep->lock); gpriv->transceiver = usb_get_phy(USB_PHY_TYPE_UNDEFINED); dev_info(dev, "%stransceiver found\n", diff -u linux-raspi2-4.4.0/drivers/usb/serial/cp210x.c linux-raspi2-4.4.0/drivers/usb/serial/cp210x.c --- linux-raspi2-4.4.0/drivers/usb/serial/cp210x.c +++ linux-raspi2-4.4.0/drivers/usb/serial/cp210x.c @@ -134,6 +134,8 @@ { USB_DEVICE(0x10C4, 0x8977) }, /* CEL MeshWorks DevKit Device */ { USB_DEVICE(0x10C4, 0x8998) }, /* KCF Technologies PRN */ { USB_DEVICE(0x10C4, 0x8A2A) }, /* HubZ dual ZigBee and Z-Wave dongle */ + { USB_DEVICE(0x10C4, 0x8A5E) }, /* CEL EM3588 ZigBee USB Stick Long Range */ + { USB_DEVICE(0x10C4, 0x8B34) }, /* Qivicon ZigBee USB Radio Stick */ { USB_DEVICE(0x10C4, 0xEA60) }, /* Silicon Labs factory default */ { USB_DEVICE(0x10C4, 0xEA61) }, /* Silicon Labs factory default */ { USB_DEVICE(0x10C4, 0xEA70) }, /* Silicon Labs factory default */ @@ -168,6 +170,7 @@ { USB_DEVICE(0x1843, 0x0200) }, /* Vaisala USB Instrument Cable */ { USB_DEVICE(0x18EF, 0xE00F) }, /* ELV USB-I2C-Interface */ { USB_DEVICE(0x18EF, 0xE025) }, /* ELV Marble Sound Board 1 */ + { USB_DEVICE(0x18EF, 0xE032) }, /* ELV TFD500 Data Logger */ { USB_DEVICE(0x1901, 0x0190) }, /* GE B850 CP2105 Recorder interface */ { USB_DEVICE(0x1901, 0x0193) }, /* GE B650 CP2104 PMC interface */ { USB_DEVICE(0x1901, 0x0194) }, /* GE Healthcare Remote Alarm Box */ diff -u linux-raspi2-4.4.0/drivers/usb/serial/ftdi_sio.c linux-raspi2-4.4.0/drivers/usb/serial/ftdi_sio.c --- linux-raspi2-4.4.0/drivers/usb/serial/ftdi_sio.c +++ linux-raspi2-4.4.0/drivers/usb/serial/ftdi_sio.c @@ -1015,6 +1015,8 @@ { USB_DEVICE(WICED_VID, WICED_USB20706V2_PID) }, { USB_DEVICE(TI_VID, TI_CC3200_LAUNCHPAD_PID), .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk }, + { USB_DEVICE(CYPRESS_VID, CYPRESS_WICED_BT_USB_PID) }, + { USB_DEVICE(CYPRESS_VID, CYPRESS_WICED_WL_USB_PID) }, { } /* Terminating entry */ }; diff -u linux-raspi2-4.4.0/drivers/usb/serial/ftdi_sio_ids.h linux-raspi2-4.4.0/drivers/usb/serial/ftdi_sio_ids.h --- linux-raspi2-4.4.0/drivers/usb/serial/ftdi_sio_ids.h +++ linux-raspi2-4.4.0/drivers/usb/serial/ftdi_sio_ids.h @@ -610,6 +610,13 @@ #define ADI_GNICEPLUS_PID 0xF001 /* + * Cypress WICED USB UART + */ +#define CYPRESS_VID 0x04B4 +#define CYPRESS_WICED_BT_USB_PID 0x009B +#define CYPRESS_WICED_WL_USB_PID 0xF900 + +/* * Microchip Technology, Inc. * * MICROCHIP_VID (0x04D8) and MICROCHIP_USB_BOARD_PID (0x000A) are diff -u linux-raspi2-4.4.0/drivers/usb/serial/mos7720.c linux-raspi2-4.4.0/drivers/usb/serial/mos7720.c --- linux-raspi2-4.4.0/drivers/usb/serial/mos7720.c +++ linux-raspi2-4.4.0/drivers/usb/serial/mos7720.c @@ -234,11 +234,16 @@ status = usb_control_msg(usbdev, pipe, request, requesttype, value, index, buf, 1, MOS_WDR_TIMEOUT); - if (status == 1) + if (status == 1) { *data = *buf; - else if (status < 0) + } else { dev_err(&usbdev->dev, "mos7720: usb_control_msg() failed: %d\n", status); + if (status >= 0) + status = -EIO; + *data = 0; + } + kfree(buf); return status; diff -u linux-raspi2-4.4.0/drivers/usb/serial/mos7840.c linux-raspi2-4.4.0/drivers/usb/serial/mos7840.c --- linux-raspi2-4.4.0/drivers/usb/serial/mos7840.c +++ linux-raspi2-4.4.0/drivers/usb/serial/mos7840.c @@ -285,9 +285,15 @@ ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), MCS_RDREQ, MCS_RD_RTYPE, 0, reg, buf, VENDOR_READ_LENGTH, MOS_WDR_TIMEOUT); + if (ret < VENDOR_READ_LENGTH) { + if (ret >= 0) + ret = -EIO; + goto out; + } + *val = buf[0]; dev_dbg(&port->dev, "%s offset is %x, return val %x\n", __func__, reg, *val); - +out: kfree(buf); return ret; } @@ -353,8 +359,13 @@ ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), MCS_RDREQ, MCS_RD_RTYPE, Wval, reg, buf, VENDOR_READ_LENGTH, MOS_WDR_TIMEOUT); + if (ret < VENDOR_READ_LENGTH) { + if (ret >= 0) + ret = -EIO; + goto out; + } *val = buf[0]; - +out: kfree(buf); return ret; } @@ -1490,10 +1501,10 @@ return -ENODEV; status = mos7840_get_uart_reg(port, MODEM_STATUS_REGISTER, &msr); - if (status != 1) + if (status < 0) return -EIO; status = mos7840_get_uart_reg(port, MODEM_CONTROL_REGISTER, &mcr); - if (status != 1) + if (status < 0) return -EIO; result = ((mcr & MCR_DTR) ? TIOCM_DTR : 0) | ((mcr & MCR_RTS) ? TIOCM_RTS : 0) diff -u linux-raspi2-4.4.0/drivers/usb/serial/option.c linux-raspi2-4.4.0/drivers/usb/serial/option.c --- linux-raspi2-4.4.0/drivers/usb/serial/option.c +++ linux-raspi2-4.4.0/drivers/usb/serial/option.c @@ -522,6 +522,7 @@ /* TP-LINK Incorporated products */ #define TPLINK_VENDOR_ID 0x2357 +#define TPLINK_PRODUCT_LTE 0x000D #define TPLINK_PRODUCT_MA180 0x0201 /* Changhong products */ @@ -1877,6 +1878,10 @@ .driver_info = (kernel_ulong_t)&four_g_w100_blacklist }, { USB_DEVICE_INTERFACE_CLASS(LONGCHEER_VENDOR_ID, SPEEDUP_PRODUCT_SU9800, 0xff) }, + { USB_DEVICE_INTERFACE_CLASS(LONGCHEER_VENDOR_ID, 0x9801, 0xff), + .driver_info = (kernel_ulong_t)&net_intf3_blacklist }, + { USB_DEVICE_INTERFACE_CLASS(LONGCHEER_VENDOR_ID, 0x9803, 0xff), + .driver_info = (kernel_ulong_t)&net_intf4_blacklist }, { USB_DEVICE(LONGCHEER_VENDOR_ID, ZOOM_PRODUCT_4597) }, { USB_DEVICE(LONGCHEER_VENDOR_ID, IBALL_3_5G_CONNECT) }, { USB_DEVICE(HAIER_VENDOR_ID, HAIER_PRODUCT_CE100) }, @@ -2007,6 +2012,7 @@ { USB_DEVICE(CELLIENT_VENDOR_ID, CELLIENT_PRODUCT_MEN200) }, { USB_DEVICE(PETATEL_VENDOR_ID, PETATEL_PRODUCT_NP10T_600A) }, { USB_DEVICE(PETATEL_VENDOR_ID, PETATEL_PRODUCT_NP10T_600E) }, + { USB_DEVICE_AND_INTERFACE_INFO(TPLINK_VENDOR_ID, TPLINK_PRODUCT_LTE, 0xff, 0x00, 0x00) }, /* TP-Link LTE Module */ { USB_DEVICE(TPLINK_VENDOR_ID, TPLINK_PRODUCT_MA180), .driver_info = (kernel_ulong_t)&net_intf4_blacklist }, { USB_DEVICE(TPLINK_VENDOR_ID, 0x9000), /* TP-Link MA260 */ @@ -2019,8 +2025,11 @@ { USB_DEVICE_AND_INTERFACE_INFO(0x2001, 0x7d03, 0xff, 0x02, 0x01) }, { USB_DEVICE_AND_INTERFACE_INFO(0x2001, 0x7d03, 0xff, 0x00, 0x00) }, { USB_DEVICE_INTERFACE_CLASS(0x2001, 0x7d04, 0xff) }, /* D-Link DWM-158 */ + { USB_DEVICE_INTERFACE_CLASS(0x2001, 0x7d0e, 0xff) }, /* D-Link DWM-157 C1 */ { USB_DEVICE_INTERFACE_CLASS(0x2001, 0x7e19, 0xff), /* D-Link DWM-221 B1 */ .driver_info = (kernel_ulong_t)&net_intf4_blacklist }, + { USB_DEVICE_INTERFACE_CLASS(0x2001, 0x7e35, 0xff), /* D-Link DWM-222 */ + .driver_info = (kernel_ulong_t)&net_intf4_blacklist }, { USB_DEVICE_AND_INTERFACE_INFO(0x07d1, 0x3e01, 0xff, 0xff, 0xff) }, /* D-Link DWM-152/C1 */ { USB_DEVICE_AND_INTERFACE_INFO(0x07d1, 0x3e02, 0xff, 0xff, 0xff) }, /* D-Link DWM-156/C1 */ { USB_DEVICE_AND_INTERFACE_INFO(0x07d1, 0x7e11, 0xff, 0xff, 0xff) }, /* D-Link DWM-156/A3 */ diff -u linux-raspi2-4.4.0/drivers/usb/serial/pl2303.c linux-raspi2-4.4.0/drivers/usb/serial/pl2303.c --- linux-raspi2-4.4.0/drivers/usb/serial/pl2303.c +++ linux-raspi2-4.4.0/drivers/usb/serial/pl2303.c @@ -49,6 +49,7 @@ { USB_DEVICE(IODATA_VENDOR_ID, IODATA_PRODUCT_ID) }, { USB_DEVICE(IODATA_VENDOR_ID, IODATA_PRODUCT_ID_RSAQ5) }, { USB_DEVICE(ATEN_VENDOR_ID, ATEN_PRODUCT_ID) }, + { USB_DEVICE(ATEN_VENDOR_ID, ATEN_PRODUCT_UC485) }, { USB_DEVICE(ATEN_VENDOR_ID, ATEN_PRODUCT_ID2) }, { USB_DEVICE(ATEN_VENDOR_ID2, ATEN_PRODUCT_ID) }, { USB_DEVICE(ELCOM_VENDOR_ID, ELCOM_PRODUCT_ID) }, diff -u linux-raspi2-4.4.0/drivers/usb/serial/pl2303.h linux-raspi2-4.4.0/drivers/usb/serial/pl2303.h --- linux-raspi2-4.4.0/drivers/usb/serial/pl2303.h +++ linux-raspi2-4.4.0/drivers/usb/serial/pl2303.h @@ -27,6 +27,7 @@ #define ATEN_VENDOR_ID 0x0557 #define ATEN_VENDOR_ID2 0x0547 #define ATEN_PRODUCT_ID 0x2008 +#define ATEN_PRODUCT_UC485 0x2021 #define ATEN_PRODUCT_ID2 0x2118 #define IODATA_VENDOR_ID 0x04bb diff -u linux-raspi2-4.4.0/drivers/usb/serial/qcserial.c linux-raspi2-4.4.0/drivers/usb/serial/qcserial.c --- linux-raspi2-4.4.0/drivers/usb/serial/qcserial.c +++ linux-raspi2-4.4.0/drivers/usb/serial/qcserial.c @@ -158,6 +158,7 @@ {DEVICE_SWI(0x1199, 0x9056)}, /* Sierra Wireless Modem */ {DEVICE_SWI(0x1199, 0x9060)}, /* Sierra Wireless Modem */ {DEVICE_SWI(0x1199, 0x9061)}, /* Sierra Wireless Modem */ + {DEVICE_SWI(0x1199, 0x9063)}, /* Sierra Wireless EM7305 */ {DEVICE_SWI(0x1199, 0x9070)}, /* Sierra Wireless MC74xx */ {DEVICE_SWI(0x1199, 0x9071)}, /* Sierra Wireless MC74xx */ {DEVICE_SWI(0x1199, 0x9078)}, /* Sierra Wireless EM74xx */ @@ -173,6 +174,10 @@ {DEVICE_SWI(0x413c, 0x81b3)}, /* Dell Wireless 5809e Gobi(TM) 4G LTE Mobile Broadband Card (rev3) */ {DEVICE_SWI(0x413c, 0x81b5)}, /* Dell Wireless 5811e QDL */ {DEVICE_SWI(0x413c, 0x81b6)}, /* Dell Wireless 5811e QDL */ + {DEVICE_SWI(0x413c, 0x81cf)}, /* Dell Wireless 5819 */ + {DEVICE_SWI(0x413c, 0x81d0)}, /* Dell Wireless 5819 */ + {DEVICE_SWI(0x413c, 0x81d1)}, /* Dell Wireless 5818 */ + {DEVICE_SWI(0x413c, 0x81d2)}, /* Dell Wireless 5818 */ /* Huawei devices */ {DEVICE_HWI(0x03f0, 0x581d)}, /* HP lt4112 LTE/HSPA+ Gobi 4G Modem (Huawei me906e) */ diff -u linux-raspi2-4.4.0/drivers/usb/storage/uas.c linux-raspi2-4.4.0/drivers/usb/storage/uas.c --- linux-raspi2-4.4.0/drivers/usb/storage/uas.c +++ linux-raspi2-4.4.0/drivers/usb/storage/uas.c @@ -849,14 +849,14 @@ static int uas_switch_interface(struct usb_device *udev, struct usb_interface *intf) { - int alt; + struct usb_host_interface *alt; alt = uas_find_uas_alt_setting(intf); - if (alt < 0) - return alt; + if (!alt) + return -ENODEV; - return usb_set_interface(udev, - intf->altsetting[0].desc.bInterfaceNumber, alt); + return usb_set_interface(udev, alt->desc.bInterfaceNumber, + alt->desc.bAlternateSetting); } static int uas_configure_endpoints(struct uas_dev_info *devinfo) diff -u linux-raspi2-4.4.0/drivers/usb/storage/unusual_devs.h linux-raspi2-4.4.0/drivers/usb/storage/unusual_devs.h --- linux-raspi2-4.4.0/drivers/usb/storage/unusual_devs.h +++ linux-raspi2-4.4.0/drivers/usb/storage/unusual_devs.h @@ -1386,6 +1386,13 @@ USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_SANE_SENSE ), +/* Reported by Kris Lindgren */ +UNUSUAL_DEV( 0x0bc2, 0x3332, 0x0000, 0x9999, + "Seagate", + "External", + USB_SC_DEVICE, USB_PR_DEVICE, NULL, + US_FL_NO_WP_DETECT ), + UNUSUAL_DEV( 0x0d49, 0x7310, 0x0000, 0x9999, "Maxtor", "USB to SATA", diff -u linux-raspi2-4.4.0/drivers/usb/storage/unusual_uas.h linux-raspi2-4.4.0/drivers/usb/storage/unusual_uas.h --- linux-raspi2-4.4.0/drivers/usb/storage/unusual_uas.h +++ linux-raspi2-4.4.0/drivers/usb/storage/unusual_uas.h @@ -123,9 +123,9 @@ /* Reported-by: Benjamin Tissoires */ UNUSUAL_DEV(0x13fd, 0x3940, 0x0000, 0x9999, "Initio Corporation", - "", + "INIC-3069", USB_SC_DEVICE, USB_PR_DEVICE, NULL, - US_FL_NO_ATA_1X), + US_FL_NO_ATA_1X | US_FL_IGNORE_RESIDUE), /* Reported-by: Tom Arild Naess */ UNUSUAL_DEV(0x152d, 0x0539, 0x0000, 0x9999, diff -u linux-raspi2-4.4.0/drivers/uwb/hwa-rc.c linux-raspi2-4.4.0/drivers/uwb/hwa-rc.c --- linux-raspi2-4.4.0/drivers/uwb/hwa-rc.c +++ linux-raspi2-4.4.0/drivers/uwb/hwa-rc.c @@ -827,6 +827,8 @@ if (iface->cur_altsetting->desc.bNumEndpoints < 1) return -ENODEV; + if (!usb_endpoint_xfer_int(&iface->cur_altsetting->endpoint[0].desc)) + return -ENODEV; result = -ENOMEM; uwb_rc = uwb_rc_alloc(); diff -u linux-raspi2-4.4.0/drivers/vfio/pci/vfio_pci.c linux-raspi2-4.4.0/drivers/vfio/pci/vfio_pci.c --- linux-raspi2-4.4.0/drivers/vfio/pci/vfio_pci.c +++ linux-raspi2-4.4.0/drivers/vfio/pci/vfio_pci.c @@ -902,6 +902,10 @@ return ret; vdev->barmap[index] = pci_iomap(pdev, index, 0); + if (!vdev->barmap[index]) { + pci_release_selected_regions(pdev, 1 << index); + return -ENOMEM; + } } vma->vm_private_data = vdev; diff -u linux-raspi2-4.4.0/drivers/xen/gntdev.c linux-raspi2-4.4.0/drivers/xen/gntdev.c --- linux-raspi2-4.4.0/drivers/xen/gntdev.c +++ linux-raspi2-4.4.0/drivers/xen/gntdev.c @@ -827,6 +827,7 @@ mutex_unlock(&priv->lock); if (use_ptemod) { + map->pages_vm_start = vma->vm_start; err = apply_to_page_range(vma->vm_mm, vma->vm_start, vma->vm_end - vma->vm_start, find_grant_ptes, map); @@ -864,7 +865,6 @@ set_grant_ptes_as_special, NULL); } #endif - map->pages_vm_start = vma->vm_start; } return 0; diff -u linux-raspi2-4.4.0/drivers/xen/swiotlb-xen.c linux-raspi2-4.4.0/drivers/xen/swiotlb-xen.c --- linux-raspi2-4.4.0/drivers/xen/swiotlb-xen.c +++ linux-raspi2-4.4.0/drivers/xen/swiotlb-xen.c @@ -682,0 +683,19 @@ + +/* + * Create userspace mapping for the DMA-coherent memory. + * This function should be called with the pages from the current domain only, + * passing pages mapped from other domains would lead to memory corruption. + */ +int +xen_swiotlb_dma_mmap(struct device *dev, struct vm_area_struct *vma, + void *cpu_addr, dma_addr_t dma_addr, size_t size, + struct dma_attrs *attrs) +{ +#if defined(CONFIG_ARM) || defined(CONFIG_ARM64) + if (__generic_dma_ops(dev)->mmap) + return __generic_dma_ops(dev)->mmap(dev, vma, cpu_addr, + dma_addr, size, attrs); +#endif + return dma_common_mmap(dev, vma, cpu_addr, dma_addr, size); +} +EXPORT_SYMBOL_GPL(xen_swiotlb_dma_mmap); diff -u linux-raspi2-4.4.0/fs/aio.c linux-raspi2-4.4.0/fs/aio.c --- linux-raspi2-4.4.0/fs/aio.c +++ linux-raspi2-4.4.0/fs/aio.c @@ -438,10 +438,9 @@ #endif }; -static int aio_setup_ring(struct kioctx *ctx) +static int aio_setup_ring(struct kioctx *ctx, unsigned int nr_events) { struct aio_ring *ring; - unsigned nr_events = ctx->max_reqs; struct mm_struct *mm = current->mm; unsigned long size, unused; int nr_pages; @@ -699,6 +698,12 @@ int err = -ENOMEM; /* + * Store the original nr_events -- what userspace passed to io_setup(), + * for counting against the global limit -- before it changes. + */ + unsigned int max_reqs = nr_events; + + /* * We keep track of the number of available ringbuffer slots, to prevent * overflow (reqs_available), and we also use percpu counters for this. * @@ -716,14 +721,14 @@ return ERR_PTR(-EINVAL); } - if (!nr_events || (unsigned long)nr_events > (aio_max_nr * 2UL)) + if (!nr_events || (unsigned long)max_reqs > aio_max_nr) return ERR_PTR(-EAGAIN); ctx = kmem_cache_zalloc(kioctx_cachep, GFP_KERNEL); if (!ctx) return ERR_PTR(-ENOMEM); - ctx->max_reqs = nr_events; + ctx->max_reqs = max_reqs; spin_lock_init(&ctx->ctx_lock); spin_lock_init(&ctx->completion_lock); @@ -745,7 +750,7 @@ if (!ctx->cpu) goto err; - err = aio_setup_ring(ctx); + err = aio_setup_ring(ctx, nr_events); if (err < 0) goto err; @@ -756,8 +761,8 @@ /* limit the number of system wide aios */ spin_lock(&aio_nr_lock); - if (aio_nr + nr_events > (aio_max_nr * 2UL) || - aio_nr + nr_events < aio_nr) { + if (aio_nr + ctx->max_reqs > aio_max_nr || + aio_nr + ctx->max_reqs < aio_nr) { spin_unlock(&aio_nr_lock); err = -EAGAIN; goto err_ctx; diff -u linux-raspi2-4.4.0/fs/binfmt_elf.c linux-raspi2-4.4.0/fs/binfmt_elf.c --- linux-raspi2-4.4.0/fs/binfmt_elf.c +++ linux-raspi2-4.4.0/fs/binfmt_elf.c @@ -905,17 +905,60 @@ elf_flags = MAP_PRIVATE | MAP_DENYWRITE | MAP_EXECUTABLE; vaddr = elf_ppnt->p_vaddr; + /* + * If we are loading ET_EXEC or we have already performed + * the ET_DYN load_addr calculations, proceed normally. + */ if (loc->elf_ex.e_type == ET_EXEC || load_addr_set) { elf_flags |= MAP_FIXED; } else if (loc->elf_ex.e_type == ET_DYN) { - /* Try and get dynamic programs out of the way of the - * default mmap base, as well as whatever program they - * might try to exec. This is because the brk will - * follow the loader, and is not movable. */ - load_bias = ELF_ET_DYN_BASE - vaddr; - if (current->flags & PF_RANDOMIZE) - load_bias += arch_mmap_rnd(); - load_bias = ELF_PAGESTART(load_bias); + /* + * This logic is run once for the first LOAD Program + * Header for ET_DYN binaries to calculate the + * randomization (load_bias) for all the LOAD + * Program Headers, and to calculate the entire + * size of the ELF mapping (total_size). (Note that + * load_addr_set is set to true later once the + * initial mapping is performed.) + * + * There are effectively two types of ET_DYN + * binaries: programs (i.e. PIE: ET_DYN with INTERP) + * and loaders (ET_DYN without INTERP, since they + * _are_ the ELF interpreter). The loaders must + * be loaded away from programs since the program + * may otherwise collide with the loader (especially + * for ET_EXEC which does not have a randomized + * position). For example to handle invocations of + * "./ld.so someprog" to test out a new version of + * the loader, the subsequent program that the + * loader loads must avoid the loader itself, so + * they cannot share the same load range. Sufficient + * room for the brk must be allocated with the + * loader as well, since brk must be available with + * the loader. + * + * Therefore, programs are loaded offset from + * ELF_ET_DYN_BASE and loaders are loaded into the + * independently randomized mmap region (0 load_bias + * without MAP_FIXED). + */ + if (elf_interpreter) { + load_bias = ELF_ET_DYN_BASE; + if (current->flags & PF_RANDOMIZE) + load_bias += arch_mmap_rnd(); + elf_flags |= MAP_FIXED; + } else + load_bias = 0; + + /* + * Since load_bias is used for all subsequent loading + * calculations, we must lower it by the first vaddr + * so that the remaining calculations based on the + * ELF vaddrs will be correctly offset. The result + * is then page aligned. + */ + load_bias = ELF_PAGESTART(load_bias - vaddr); + total_size = total_mapping_size(elf_phdata, loc->elf_ex.e_phnum); if (!total_size) { diff -u linux-raspi2-4.4.0/fs/btrfs/inode.c linux-raspi2-4.4.0/fs/btrfs/inode.c --- linux-raspi2-4.4.0/fs/btrfs/inode.c +++ linux-raspi2-4.4.0/fs/btrfs/inode.c @@ -7521,11 +7521,18 @@ * within our reservation, otherwise we need to adjust our inode * counter appropriately. */ - if (dio_data->outstanding_extents) { + if (dio_data->outstanding_extents >= num_extents) { dio_data->outstanding_extents -= num_extents; } else { + /* + * If dio write length has been split due to no large enough + * contiguous space, we need to compensate our inode counter + * appropriately. + */ + u64 num_needed = num_extents - dio_data->outstanding_extents; + spin_lock(&BTRFS_I(inode)->lock); - BTRFS_I(inode)->outstanding_extents += num_extents; + BTRFS_I(inode)->outstanding_extents += num_needed; spin_unlock(&BTRFS_I(inode)->lock); } } diff -u linux-raspi2-4.4.0/fs/btrfs/ioctl.c linux-raspi2-4.4.0/fs/btrfs/ioctl.c --- linux-raspi2-4.4.0/fs/btrfs/ioctl.c +++ linux-raspi2-4.4.0/fs/btrfs/ioctl.c @@ -2984,7 +2984,7 @@ out: if (ret) btrfs_cmp_data_free(cmp); - return 0; + return ret; } static int btrfs_cmp_data(struct inode *src, u64 loff, struct inode *dst, @@ -4118,6 +4118,10 @@ ret = PTR_ERR(new_root); goto out; } + if (!is_fstree(new_root->objectid)) { + ret = -ENOENT; + goto out; + } path = btrfs_alloc_path(); if (!path) { diff -u linux-raspi2-4.4.0/fs/btrfs/relocation.c linux-raspi2-4.4.0/fs/btrfs/relocation.c --- linux-raspi2-4.4.0/fs/btrfs/relocation.c +++ linux-raspi2-4.4.0/fs/btrfs/relocation.c @@ -2350,11 +2350,11 @@ while (!list_empty(list)) { reloc_root = list_entry(list->next, struct btrfs_root, root_list); + __del_reloc_root(reloc_root); free_extent_buffer(reloc_root->node); free_extent_buffer(reloc_root->commit_root); reloc_root->node = NULL; reloc_root->commit_root = NULL; - __del_reloc_root(reloc_root); } } diff -u linux-raspi2-4.4.0/fs/btrfs/send.c linux-raspi2-4.4.0/fs/btrfs/send.c --- linux-raspi2-4.4.0/fs/btrfs/send.c +++ linux-raspi2-4.4.0/fs/btrfs/send.c @@ -1648,6 +1648,9 @@ { int ret; + if (ino == BTRFS_FIRST_FREE_OBJECTID) + return 1; + ret = get_cur_inode_state(sctx, ino, gen); if (ret < 0) goto out; @@ -1833,7 +1836,7 @@ * not delted and then re-created, if it was then we have no overwrite * and we can just unlink this entry. */ - if (sctx->parent_root) { + if (sctx->parent_root && dir != BTRFS_FIRST_FREE_OBJECTID) { ret = get_inode_info(sctx->parent_root, dir, NULL, &gen, NULL, NULL, NULL, NULL); if (ret < 0 && ret != -ENOENT) diff -u linux-raspi2-4.4.0/fs/btrfs/super.c linux-raspi2-4.4.0/fs/btrfs/super.c --- linux-raspi2-4.4.0/fs/btrfs/super.c +++ linux-raspi2-4.4.0/fs/btrfs/super.c @@ -1727,6 +1727,8 @@ goto restore; } + btrfs_qgroup_rescan_resume(fs_info); + if (!fs_info->uuid_root) { btrfs_info(fs_info, "creating UUID tree"); ret = btrfs_create_uuid_tree(fs_info); diff -u linux-raspi2-4.4.0/fs/btrfs/volumes.c linux-raspi2-4.4.0/fs/btrfs/volumes.c --- linux-raspi2-4.4.0/fs/btrfs/volumes.c +++ linux-raspi2-4.4.0/fs/btrfs/volumes.c @@ -108,7 +108,7 @@ }, }; -const u64 const btrfs_raid_group[BTRFS_NR_RAID_TYPES] = { +const u64 btrfs_raid_group[BTRFS_NR_RAID_TYPES] = { [BTRFS_RAID_RAID10] = BTRFS_BLOCK_GROUP_RAID10, [BTRFS_RAID_RAID1] = BTRFS_BLOCK_GROUP_RAID1, [BTRFS_RAID_DUP] = BTRFS_BLOCK_GROUP_DUP, diff -u linux-raspi2-4.4.0/fs/ceph/addr.c linux-raspi2-4.4.0/fs/ceph/addr.c --- linux-raspi2-4.4.0/fs/ceph/addr.c +++ linux-raspi2-4.4.0/fs/ceph/addr.c @@ -189,7 +189,7 @@ /* * read a single page, without unlocking it. */ -static int readpage_nounlock(struct file *filp, struct page *page) +static int ceph_do_readpage(struct file *filp, struct page *page) { struct inode *inode = file_inode(filp); struct ceph_inode_info *ci = ceph_inode(inode); @@ -219,7 +219,7 @@ err = ceph_readpage_from_fscache(inode, page); if (err == 0) - goto out; + return -EINPROGRESS; dout("readpage inode %p file %p page %p index %lu\n", inode, filp, page, page->index); @@ -249,8 +249,11 @@ static int ceph_readpage(struct file *filp, struct page *page) { - int r = readpage_nounlock(filp, page); - unlock_page(page); + int r = ceph_do_readpage(filp, page); + if (r != -EINPROGRESS) + unlock_page(page); + else + r = 0; return r; } @@ -1094,7 +1097,7 @@ goto retry_locked; r = writepage_nounlock(page, NULL); if (r < 0) - goto fail_nosnap; + goto fail_unlock; goto retry_locked; } @@ -1122,11 +1125,14 @@ } /* we need to read it. */ - r = readpage_nounlock(file, page); - if (r < 0) - goto fail_nosnap; + r = ceph_do_readpage(file, page); + if (r < 0) { + if (r == -EINPROGRESS) + return -EAGAIN; + goto fail_unlock; + } goto retry_locked; -fail_nosnap: +fail_unlock: unlock_page(page); return r; } diff -u linux-raspi2-4.4.0/fs/ceph/mds_client.c linux-raspi2-4.4.0/fs/ceph/mds_client.c --- linux-raspi2-4.4.0/fs/ceph/mds_client.c +++ linux-raspi2-4.4.0/fs/ceph/mds_client.c @@ -1845,13 +1845,18 @@ int *pfreepath) { char *path; + struct inode *dir; - if (ceph_snap(d_inode(dentry->d_parent)) == CEPH_NOSNAP) { - *pino = ceph_ino(d_inode(dentry->d_parent)); + rcu_read_lock(); + dir = d_inode_rcu(dentry->d_parent); + if (dir && ceph_snap(dir) == CEPH_NOSNAP) { + *pino = ceph_ino(dir); + rcu_read_unlock(); *ppath = dentry->d_name.name; *ppathlen = dentry->d_name.len; return 0; } + rcu_read_unlock(); path = ceph_mdsc_build_path(dentry, ppathlen, pino, 1); if (IS_ERR(path)) return PTR_ERR(path); diff -u linux-raspi2-4.4.0/fs/cifs/cifsglob.h linux-raspi2-4.4.0/fs/cifs/cifsglob.h --- linux-raspi2-4.4.0/fs/cifs/cifsglob.h +++ linux-raspi2-4.4.0/fs/cifs/cifsglob.h @@ -367,6 +367,8 @@ unsigned int (*calc_smb_size)(void *); /* check for STATUS_PENDING and process it in a positive case */ bool (*is_status_pending)(char *, struct TCP_Server_Info *, int); + /* check for STATUS_NETWORK_SESSION_EXPIRED */ + bool (*is_session_expired)(char *); /* send oplock break response */ int (*oplock_response)(struct cifs_tcon *, struct cifs_fid *, struct cifsInodeInfo *); diff -u linux-raspi2-4.4.0/fs/cifs/cifssmb.c linux-raspi2-4.4.0/fs/cifs/cifssmb.c --- linux-raspi2-4.4.0/fs/cifs/cifssmb.c +++ linux-raspi2-4.4.0/fs/cifs/cifssmb.c @@ -1463,6 +1463,13 @@ return length; server->total_read += length; + if (server->ops->is_session_expired && + server->ops->is_session_expired(buf)) { + cifs_reconnect(server); + wake_up(&server->response_q); + return -1; + } + if (server->ops->is_status_pending && server->ops->is_status_pending(buf, server, 0)) { cifs_discard_remaining_data(server); diff -u linux-raspi2-4.4.0/fs/cifs/connect.c linux-raspi2-4.4.0/fs/cifs/connect.c --- linux-raspi2-4.4.0/fs/cifs/connect.c +++ linux-raspi2-4.4.0/fs/cifs/connect.c @@ -806,6 +806,13 @@ cifs_dump_mem("Bad SMB: ", buf, min_t(unsigned int, server->total_read, 48)); + if (server->ops->is_session_expired && + server->ops->is_session_expired(buf)) { + cifs_reconnect(server); + wake_up(&server->response_q); + return -1; + } + if (server->ops->is_status_pending && server->ops->is_status_pending(buf, server, length)) return -1; @@ -4125,6 +4132,14 @@ cifs_dbg(FYI, "Security Mode: 0x%x Capabilities: 0x%x TimeAdjust: %d\n", server->sec_mode, server->capabilities, server->timeAdj); + if (ses->auth_key.response) { + cifs_dbg(VFS, "Free previous auth_key.response = %p\n", + ses->auth_key.response); + kfree(ses->auth_key.response); + ses->auth_key.response = NULL; + ses->auth_key.len = 0; + } + if (server->ops->sess_setup) rc = server->ops->sess_setup(xid, ses, nls_info); diff -u linux-raspi2-4.4.0/fs/cifs/dir.c linux-raspi2-4.4.0/fs/cifs/dir.c --- linux-raspi2-4.4.0/fs/cifs/dir.c +++ linux-raspi2-4.4.0/fs/cifs/dir.c @@ -183,15 +183,21 @@ } /* + * Don't allow path components longer than the server max. * Don't allow the separator character in a path component. * The VFS will not allow "/", but "\" is allowed by posix. */ static int -check_name(struct dentry *direntry) +check_name(struct dentry *direntry, struct cifs_tcon *tcon) { struct cifs_sb_info *cifs_sb = CIFS_SB(direntry->d_sb); int i; + if (unlikely(tcon->fsAttrInfo.MaxPathNameComponentLength && + direntry->d_name.len > + le32_to_cpu(tcon->fsAttrInfo.MaxPathNameComponentLength))) + return -ENAMETOOLONG; + if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_POSIX_PATHS)) { for (i = 0; i < direntry->d_name.len; i++) { if (direntry->d_name.name[i] == '\\') { @@ -489,10 +495,6 @@ return finish_no_open(file, res); } - rc = check_name(direntry); - if (rc) - return rc; - xid = get_xid(); cifs_dbg(FYI, "parent inode = 0x%p name is: %pd and dentry = 0x%p\n", @@ -505,6 +507,11 @@ } tcon = tlink_tcon(tlink); + + rc = check_name(direntry, tcon); + if (rc) + goto out; + server = tcon->ses->server; if (server->ops->new_lease_key) @@ -765,7 +772,7 @@ } pTcon = tlink_tcon(tlink); - rc = check_name(direntry); + rc = check_name(direntry, pTcon); if (rc) goto lookup_out; diff -u linux-raspi2-4.4.0/fs/cifs/file.c linux-raspi2-4.4.0/fs/cifs/file.c --- linux-raspi2-4.4.0/fs/cifs/file.c +++ linux-raspi2-4.4.0/fs/cifs/file.c @@ -224,6 +224,13 @@ if (backup_cred(cifs_sb)) create_options |= CREATE_OPEN_BACKUP_INTENT; + /* O_SYNC also has bit for O_DSYNC so following check picks up either */ + if (f_flags & O_SYNC) + create_options |= CREATE_WRITE_THROUGH; + + if (f_flags & O_DIRECT) + create_options |= CREATE_NO_BUFFER; + oparms.tcon = tcon; oparms.cifs_sb = cifs_sb; oparms.desired_access = desired_access; diff -u linux-raspi2-4.4.0/fs/cifs/smb2ops.c linux-raspi2-4.4.0/fs/cifs/smb2ops.c --- linux-raspi2-4.4.0/fs/cifs/smb2ops.c +++ linux-raspi2-4.4.0/fs/cifs/smb2ops.c @@ -976,6 +976,18 @@ return true; } +static bool +smb2_is_session_expired(char *buf) +{ + struct smb2_sync_hdr *shdr = get_sync_hdr(buf); + + if (shdr->Status != STATUS_NETWORK_SESSION_EXPIRED) + return false; + + cifs_dbg(FYI, "Session expired\n"); + return true; +} + static int smb2_oplock_response(struct cifs_tcon *tcon, struct cifs_fid *fid, struct cifsInodeInfo *cinode) @@ -2214,6 +2226,7 @@ .close_dir = smb2_close_dir, .calc_smb_size = smb2_calc_size, .is_status_pending = smb2_is_status_pending, + .is_session_expired = smb2_is_session_expired, .oplock_response = smb2_oplock_response, .queryfs = smb2_queryfs, .mand_lock = smb2_mand_lock, @@ -2295,6 +2308,7 @@ .close_dir = smb2_close_dir, .calc_smb_size = smb2_calc_size, .is_status_pending = smb2_is_status_pending, + .is_session_expired = smb2_is_session_expired, .oplock_response = smb2_oplock_response, .queryfs = smb2_queryfs, .mand_lock = smb2_mand_lock, @@ -2377,6 +2391,7 @@ .close_dir = smb2_close_dir, .calc_smb_size = smb2_calc_size, .is_status_pending = smb2_is_status_pending, + .is_session_expired = smb2_is_session_expired, .oplock_response = smb2_oplock_response, .queryfs = smb2_queryfs, .mand_lock = smb2_mand_lock, @@ -2469,6 +2484,7 @@ .close_dir = smb2_close_dir, .calc_smb_size = smb2_calc_size, .is_status_pending = smb2_is_status_pending, + .is_session_expired = smb2_is_session_expired, .oplock_response = smb2_oplock_response, .queryfs = smb2_queryfs, .mand_lock = smb2_mand_lock, diff -u linux-raspi2-4.4.0/fs/cifs/smb2pdu.c linux-raspi2-4.4.0/fs/cifs/smb2pdu.c --- linux-raspi2-4.4.0/fs/cifs/smb2pdu.c +++ linux-raspi2-4.4.0/fs/cifs/smb2pdu.c @@ -418,7 +418,7 @@ build_encrypt_ctxt((struct smb2_encryption_neg_context *)pneg_ctxt); req->NegotiateContextOffset = cpu_to_le32(OFFSET_OF_NEG_CONTEXT); req->NegotiateContextCount = cpu_to_le16(2); - inc_rfc1001_len(req, 4 + sizeof(struct smb2_preauth_neg_context) + 2 + inc_rfc1001_len(req, 4 + sizeof(struct smb2_preauth_neg_context) + sizeof(struct smb2_encryption_neg_context)); /* calculate hash */ } #else @@ -584,13 +584,20 @@ /* * validation ioctl must be signed, so no point sending this if we - * can not sign it. We could eventually change this to selectively + * can not sign it (ie are not known user). Even if signing is not + * required (enabled but not negotiated), in those cases we selectively * sign just this, the first and only signed request on a connection. - * This is good enough for now since a user who wants better security - * would also enable signing on the mount. Having validation of - * negotiate info for signed connections helps reduce attack vectors + * Having validation of negotiate info helps reduce attack vectors. */ - if (tcon->ses->server->sign == false) + if (tcon->ses->session_flags & SMB2_SESSION_FLAG_IS_GUEST) return 0; /* validation requires signing */ + if (tcon->ses->user_name == NULL) { + cifs_dbg(FYI, "Can't validate negotiate: null user mount\n"); + return 0; /* validation requires signing */ + } + + if (tcon->ses->session_flags & SMB2_SESSION_FLAG_IS_NULL) + cifs_dbg(VFS, "Unexpected null user (anonymous) auth flag sent by server\n"); + vneg_inbuf.Capabilities = cpu_to_le32(tcon->ses->server->vals->req_capabilities); @@ -1772,6 +1779,9 @@ } else iov[0].iov_len = get_rfc1002_length(req) + 4; + /* validate negotiate request must be signed - see MS-SMB2 3.2.5.5 */ + if (opcode == FSCTL_VALIDATE_NEGOTIATE_INFO) + req->hdr.sync_hdr.Flags |= SMB2_FLAGS_SIGNED; rc = SendReceive2(xid, ses, iov, n_iov, &resp_buftype, flags, &rsp_iov); cifs_small_buf_release(req); @@ -3072,8 +3082,8 @@ kst->f_bsize = le32_to_cpu(pfs_inf->BytesPerSector) * le32_to_cpu(pfs_inf->SectorsPerAllocationUnit); kst->f_blocks = le64_to_cpu(pfs_inf->TotalAllocationUnits); - kst->f_bfree = le64_to_cpu(pfs_inf->ActualAvailableAllocationUnits); - kst->f_bavail = le64_to_cpu(pfs_inf->CallerAvailableAllocationUnits); + kst->f_bfree = kst->f_bavail = + le64_to_cpu(pfs_inf->CallerAvailableAllocationUnits); return; } diff -u linux-raspi2-4.4.0/fs/cifs/smb2pdu.h linux-raspi2-4.4.0/fs/cifs/smb2pdu.h --- linux-raspi2-4.4.0/fs/cifs/smb2pdu.h +++ linux-raspi2-4.4.0/fs/cifs/smb2pdu.h @@ -82,8 +82,8 @@ #define NUMBER_OF_SMB2_COMMANDS 0x0013 -/* BB FIXME - analyze following length BB */ -#define MAX_SMB2_HDR_SIZE 0x78 /* 4 len + 64 hdr + (2*24 wct) + 2 bct + 2 pad */ +/* 4 len + 52 transform hdr + 64 hdr + 56 create rsp */ +#define MAX_SMB2_HDR_SIZE 0x00b0 #define SMB2_PROTO_NUMBER cpu_to_le32(0x424d53fe) #define SMB2_TRANSFORM_PROTO_NUM cpu_to_le32(0x424d53fd) diff -u linux-raspi2-4.4.0/fs/dcache.c linux-raspi2-4.4.0/fs/dcache.c --- linux-raspi2-4.4.0/fs/dcache.c +++ linux-raspi2-4.4.0/fs/dcache.c @@ -1155,11 +1155,12 @@ LIST_HEAD(dispose); freed = list_lru_walk(&sb->s_dentry_lru, - dentry_lru_isolate_shrink, &dispose, UINT_MAX); + dentry_lru_isolate_shrink, &dispose, 1024); this_cpu_sub(nr_dentry_unused, freed); shrink_dentry_list(&dispose); - } while (freed > 0); + cond_resched(); + } while (list_lru_count(&sb->s_dentry_lru) > 0); } EXPORT_SYMBOL(shrink_dcache_sb); diff -u linux-raspi2-4.4.0/fs/direct-io.c linux-raspi2-4.4.0/fs/direct-io.c --- linux-raspi2-4.4.0/fs/direct-io.c +++ linux-raspi2-4.4.0/fs/direct-io.c @@ -823,7 +823,8 @@ */ if (sdio->boundary) { ret = dio_send_cur_page(dio, sdio, map_bh); - dio_bio_submit(dio, sdio); + if (sdio->bio) + dio_bio_submit(dio, sdio); page_cache_release(sdio->cur_page); sdio->cur_page = NULL; } diff -u linux-raspi2-4.4.0/fs/exec.c linux-raspi2-4.4.0/fs/exec.c --- linux-raspi2-4.4.0/fs/exec.c +++ linux-raspi2-4.4.0/fs/exec.c @@ -216,8 +216,7 @@ if (write) { unsigned long size = bprm->vma->vm_end - bprm->vma->vm_start; - unsigned long ptr_size; - struct rlimit *rlim; + unsigned long ptr_size, limit; /* * Since the stack will hold pointers to the strings, we @@ -246,14 +245,16 @@ return page; /* - * Limit to 1/4-th the stack size for the argv+env strings. + * Limit to 1/4 of the max stack size or 3/4 of _STK_LIM + * (whichever is smaller) for the argv+env strings. * This ensures that: * - the remaining binfmt code will not run out of stack space, * - the program will have a reasonable amount of stack left * to work from. */ - rlim = current->signal->rlim; - if (size > READ_ONCE(rlim[RLIMIT_STACK].rlim_cur) / 4) + limit = _STK_LIM / 4 * 3; + limit = min(limit, rlimit(RLIMIT_STACK) / 4); + if (size > limit) goto fail; } diff -u linux-raspi2-4.4.0/fs/ext4/acl.c linux-raspi2-4.4.0/fs/ext4/acl.c --- linux-raspi2-4.4.0/fs/ext4/acl.c +++ linux-raspi2-4.4.0/fs/ext4/acl.c @@ -206,13 +206,6 @@ switch (type) { case ACL_TYPE_ACCESS: name_index = EXT4_XATTR_INDEX_POSIX_ACL_ACCESS; - if (acl) { - error = posix_acl_update_mode(inode, &inode->i_mode, &acl); - if (error) - return error; - inode->i_ctime = ext4_current_time(inode); - ext4_mark_inode_dirty(handle, inode); - } break; case ACL_TYPE_DEFAULT: @@ -245,6 +238,8 @@ { handle_t *handle; int error, retries = 0; + umode_t mode = inode->i_mode; + int update_mode = 0; retry: handle = ext4_journal_start(inode, EXT4_HT_XATTR, @@ -252,7 +247,20 @@ if (IS_ERR(handle)) return PTR_ERR(handle); + if ((type == ACL_TYPE_ACCESS) && acl) { + error = posix_acl_update_mode(inode, &mode, &acl); + if (error) + goto out_stop; + update_mode = 1; + } + error = __ext4_set_acl(handle, inode, type, acl); + if (!error && update_mode) { + inode->i_mode = mode; + inode->i_ctime = ext4_current_time(inode); + ext4_mark_inode_dirty(handle, inode); + } +out_stop: ext4_journal_stop(handle); if (error == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries)) goto retry; diff -u linux-raspi2-4.4.0/fs/ext4/crypto_key.c linux-raspi2-4.4.0/fs/ext4/crypto_key.c --- linux-raspi2-4.4.0/fs/ext4/crypto_key.c +++ linux-raspi2-4.4.0/fs/ext4/crypto_key.c @@ -204,6 +204,12 @@ } down_read(&keyring_key->sem); ukp = user_key_payload(keyring_key); + if (!ukp) { + /* key was revoked before we acquired its semaphore */ + res = -EKEYREVOKED; + up_read(&keyring_key->sem); + goto out; + } if (ukp->datalen != sizeof(struct ext4_encryption_key)) { res = -EINVAL; up_read(&keyring_key->sem); diff -u linux-raspi2-4.4.0/fs/ext4/file.c linux-raspi2-4.4.0/fs/ext4/file.c --- linux-raspi2-4.4.0/fs/ext4/file.c +++ linux-raspi2-4.4.0/fs/ext4/file.c @@ -500,6 +500,8 @@ lastoff = page_offset(page); bh = head = page_buffers(page); do { + if (lastoff + bh->b_size <= startoff) + goto next; if (buffer_uptodate(bh) || buffer_unwritten(bh)) { if (whence == SEEK_DATA) @@ -514,6 +516,7 @@ unlock_page(page); goto out; } +next: lastoff += bh->b_size; bh = bh->b_this_page; } while (bh != head); @@ -555,7 +558,7 @@ mutex_lock(&inode->i_mutex); isize = i_size_read(inode); - if (offset >= isize) { + if (offset < 0 || offset >= isize) { mutex_unlock(&inode->i_mutex); return -ENXIO; } @@ -618,7 +621,7 @@ mutex_lock(&inode->i_mutex); isize = i_size_read(inode); - if (offset >= isize) { + if (offset < 0 || offset >= isize) { mutex_unlock(&inode->i_mutex); return -ENXIO; } diff -u linux-raspi2-4.4.0/fs/ext4/inode.c linux-raspi2-4.4.0/fs/ext4/inode.c --- linux-raspi2-4.4.0/fs/ext4/inode.c +++ linux-raspi2-4.4.0/fs/ext4/inode.c @@ -663,6 +663,20 @@ ret = check_block_validity(inode, map); if (ret != 0) return ret; + + /* + * Inodes with freshly allocated blocks where contents will be + * visible after transaction commit must be on transaction's + * ordered data list. + */ + if (map->m_flags & EXT4_MAP_NEW && + !(map->m_flags & EXT4_MAP_UNWRITTEN) && + !IS_NOQUOTA(inode) && + ext4_should_order_data(inode)) { + ret = ext4_jbd2_file_inode(handle, inode); + if (ret) + return ret; + } } return retval; } @@ -1157,15 +1171,6 @@ int i_size_changed = 0; trace_ext4_write_end(inode, pos, len, copied); - if (ext4_test_inode_state(inode, EXT4_STATE_ORDERED_MODE)) { - ret = ext4_jbd2_file_inode(handle, inode); - if (ret) { - unlock_page(page); - page_cache_release(page); - goto errout; - } - } - if (ext4_has_inline_data(inode)) { ret = ext4_write_inline_data_end(inode, pos, len, copied, page); @@ -1951,15 +1956,29 @@ static int mpage_submit_page(struct mpage_da_data *mpd, struct page *page) { int len; - loff_t size = i_size_read(mpd->inode); + loff_t size; int err; BUG_ON(page->index != mpd->first_page); - if (page->index == size >> PAGE_CACHE_SHIFT) - len = size & ~PAGE_CACHE_MASK; - else - len = PAGE_CACHE_SIZE; clear_page_dirty_for_io(page); + /* + * We have to be very careful here! Nothing protects writeback path + * against i_size changes and the page can be writeably mapped into + * page tables. So an application can be growing i_size and writing + * data through mmap while writeback runs. clear_page_dirty_for_io() + * write-protects our page in page tables and the page cannot get + * written to again until we release page lock. So only after + * clear_page_dirty_for_io() we are safe to sample i_size for + * ext4_bio_write_page() to zero-out tail of the written page. We rely + * on the barrier provided by TestClearPageDirty in + * clear_page_dirty_for_io() to make sure i_size is really sampled only + * after page tables are updated. + */ + size = i_size_read(mpd->inode); + if (page->index == size >> PAGE_SHIFT) + len = size & ~PAGE_MASK; + else + len = PAGE_SIZE; err = ext4_bio_write_page(&mpd->io_submit, page, len, mpd->wbc, false); if (!err) mpd->wbc->nr_to_write--; diff -u linux-raspi2-4.4.0/fs/ext4/mballoc.c linux-raspi2-4.4.0/fs/ext4/mballoc.c --- linux-raspi2-4.4.0/fs/ext4/mballoc.c +++ linux-raspi2-4.4.0/fs/ext4/mballoc.c @@ -2136,8 +2136,10 @@ * We search using buddy data only if the order of the request * is greater than equal to the sbi_s_mb_order2_reqs * You can tune it via /sys/fs/ext4//mb_order2_req + * We also support searching for power-of-two requests only for + * requests upto maximum buddy size we have constructed. */ - if (i >= sbi->s_mb_order2_reqs) { + if (i >= sbi->s_mb_order2_reqs && i <= sb->s_blocksize_bits + 2) { /* * This should tell if fe_len is exactly power of 2 */ @@ -2207,7 +2209,7 @@ } ac->ac_groups_scanned++; - if (cr == 0 && ac->ac_2order < sb->s_blocksize_bits+2) + if (cr == 0) ext4_mb_simple_scan_group(ac, &e4b); else if (cr == 1 && sbi->s_stripe && !(ac->ac_g_ex.fe_len % sbi->s_stripe)) diff -u linux-raspi2-4.4.0/fs/ext4/namei.c linux-raspi2-4.4.0/fs/ext4/namei.c --- linux-raspi2-4.4.0/fs/ext4/namei.c +++ linux-raspi2-4.4.0/fs/ext4/namei.c @@ -3506,6 +3506,12 @@ int credits; u8 old_file_type; + if ((ext4_encrypted_inode(old_dir) && + !ext4_has_encryption_key(old_dir)) || + (ext4_encrypted_inode(new_dir) && + !ext4_has_encryption_key(new_dir))) + return -ENOKEY; + retval = dquot_initialize(old.dir); if (retval) return retval; @@ -3706,6 +3712,12 @@ u8 new_file_type; int retval; + if ((ext4_encrypted_inode(old_dir) && + !ext4_has_encryption_key(old_dir)) || + (ext4_encrypted_inode(new_dir) && + !ext4_has_encryption_key(new_dir))) + return -ENOKEY; + if ((ext4_encrypted_inode(old_dir) || ext4_encrypted_inode(new_dir)) && (old_dir != new_dir) && diff -u linux-raspi2-4.4.0/fs/ext4/resize.c linux-raspi2-4.4.0/fs/ext4/resize.c --- linux-raspi2-4.4.0/fs/ext4/resize.c +++ linux-raspi2-4.4.0/fs/ext4/resize.c @@ -1926,7 +1926,8 @@ n_desc_blocks = o_desc_blocks + le16_to_cpu(es->s_reserved_gdt_blocks); n_group = n_desc_blocks * EXT4_DESC_PER_BLOCK(sb); - n_blocks_count = n_group * EXT4_BLOCKS_PER_GROUP(sb); + n_blocks_count = (ext4_fsblk_t)n_group * + EXT4_BLOCKS_PER_GROUP(sb); n_group--; /* set to last group number */ } diff -u linux-raspi2-4.4.0/fs/ext4/super.c linux-raspi2-4.4.0/fs/ext4/super.c --- linux-raspi2-4.4.0/fs/ext4/super.c +++ linux-raspi2-4.4.0/fs/ext4/super.c @@ -2230,6 +2230,7 @@ unsigned int s_flags = sb->s_flags; int nr_orphans = 0, nr_truncates = 0; #ifdef CONFIG_QUOTA + int quota_update = 0; int i; #endif if (!es->s_last_orphan) { @@ -2268,14 +2269,32 @@ #ifdef CONFIG_QUOTA /* Needed for iput() to work correctly and not trash data */ sb->s_flags |= MS_ACTIVE; - /* Turn on quotas so that they are updated correctly */ + + /* + * Turn on quotas which were not enabled for read-only mounts if + * filesystem has quota feature, so that they are updated correctly. + */ + if (ext4_has_feature_quota(sb) && (s_flags & MS_RDONLY)) { + int ret = ext4_enable_quotas(sb); + + if (!ret) + quota_update = 1; + else + ext4_msg(sb, KERN_ERR, + "Cannot turn on quotas: error %d", ret); + } + + /* Turn on journaled quotas used for old sytle */ for (i = 0; i < EXT4_MAXQUOTAS; i++) { if (EXT4_SB(sb)->s_qf_names[i]) { int ret = ext4_quota_on_mount(sb, i); - if (ret < 0) + + if (!ret) + quota_update = 1; + else ext4_msg(sb, KERN_ERR, "Cannot turn on journaled " - "quota: error %d", ret); + "quota: type %d: error %d", i, ret); } } #endif @@ -2334,10 +2353,12 @@ ext4_msg(sb, KERN_INFO, "%d truncate%s cleaned up", PLURAL(nr_truncates)); #ifdef CONFIG_QUOTA - /* Turn quotas off */ - for (i = 0; i < EXT4_MAXQUOTAS; i++) { - if (sb_dqopt(sb)->files[i]) - dquot_quota_off(sb, i); + /* Turn off quotas if they were enabled for orphan cleanup */ + if (quota_update) { + for (i = 0; i < EXT4_MAXQUOTAS; i++) { + if (sb_dqopt(sb)->files[i]) + dquot_quota_off(sb, i); + } } #endif sb->s_flags = s_flags; /* Restore MS_RDONLY status */ @@ -2503,9 +2524,9 @@ if (sbi->s_stripe && sbi->s_stripe <= sbi->s_blocks_per_group) ret = sbi->s_stripe; - else if (stripe_width <= sbi->s_blocks_per_group) + else if (stripe_width && stripe_width <= sbi->s_blocks_per_group) ret = stripe_width; - else if (stride <= sbi->s_blocks_per_group) + else if (stride && stride <= sbi->s_blocks_per_group) ret = stride; else ret = 0; @@ -5156,6 +5177,9 @@ err = ext4_quota_enable(sb, type, QFMT_VFS_V1, DQUOT_USAGE_ENABLED); if (err) { + for (type--; type >= 0; type--) + dquot_quota_off(sb, type); + ext4_warning(sb, "Failed to enable quota tracking " "(type=%d, err=%d). Please run " diff -u linux-raspi2-4.4.0/fs/ext4/sysfs.c linux-raspi2-4.4.0/fs/ext4/sysfs.c --- linux-raspi2-4.4.0/fs/ext4/sysfs.c +++ linux-raspi2-4.4.0/fs/ext4/sysfs.c @@ -100,7 +100,7 @@ int ret; ret = kstrtoull(skip_spaces(buf), 0, &val); - if (!ret || val >= clusters) + if (ret || val >= clusters) return -EINVAL; atomic64_set(&sbi->s_resv_clusters, val); diff -u linux-raspi2-4.4.0/fs/f2fs/acl.c linux-raspi2-4.4.0/fs/f2fs/acl.c --- linux-raspi2-4.4.0/fs/f2fs/acl.c +++ linux-raspi2-4.4.0/fs/f2fs/acl.c @@ -213,7 +213,7 @@ switch (type) { case ACL_TYPE_ACCESS: name_index = F2FS_XATTR_INDEX_POSIX_ACL_ACCESS; - if (acl) { + if (acl && !ipage) { error = posix_acl_update_mode(inode, &inode->i_mode, &acl); if (error) return error; diff -u linux-raspi2-4.4.0/fs/f2fs/crypto_fname.c linux-raspi2-4.4.0/fs/f2fs/crypto_fname.c --- linux-raspi2-4.4.0/fs/f2fs/crypto_fname.c +++ linux-raspi2-4.4.0/fs/f2fs/crypto_fname.c @@ -124,7 +124,6 @@ ablkcipher_request_set_crypt(req, &src_sg, &dst_sg, ciphertext_len, iv); res = crypto_ablkcipher_encrypt(req); if (res == -EINPROGRESS || res == -EBUSY) { - BUG_ON(req->base.data != &ecr); wait_for_completion(&ecr.completion); res = ecr.res; } @@ -180,7 +179,6 @@ ablkcipher_request_set_crypt(req, &src_sg, &dst_sg, iname->len, iv); res = crypto_ablkcipher_decrypt(req); if (res == -EINPROGRESS || res == -EBUSY) { - BUG_ON(req->base.data != &ecr); wait_for_completion(&ecr.completion); res = ecr.res; } diff -u linux-raspi2-4.4.0/fs/f2fs/crypto_key.c linux-raspi2-4.4.0/fs/f2fs/crypto_key.c --- linux-raspi2-4.4.0/fs/f2fs/crypto_key.c +++ linux-raspi2-4.4.0/fs/f2fs/crypto_key.c @@ -75,7 +75,6 @@ F2FS_AES_256_XTS_KEY_SIZE, NULL); res = crypto_ablkcipher_encrypt(req); if (res == -EINPROGRESS || res == -EBUSY) { - BUG_ON(req->base.data != &ecr); wait_for_completion(&ecr.completion); res = ecr.res; } @@ -189,18 +188,38 @@ keyring_key = NULL; goto out; } - BUG_ON(keyring_key->type != &key_type_logon); + if (keyring_key->type != &key_type_logon) { + printk_once(KERN_WARNING "f2fs: key type must be logon\n"); + res = -ENOKEY; + goto out; + } + down_read(&keyring_key->sem); ukp = user_key_payload(keyring_key); + if (!ukp) { + /* key was revoked before we acquired its semaphore */ + res = -EKEYREVOKED; + up_read(&keyring_key->sem); + goto out; + } if (ukp->datalen != sizeof(struct f2fs_encryption_key)) { res = -EINVAL; + up_read(&keyring_key->sem); goto out; } master_key = (struct f2fs_encryption_key *)ukp->data; BUILD_BUG_ON(F2FS_AES_128_ECB_KEY_SIZE != F2FS_KEY_DERIVATION_NONCE_SIZE); - BUG_ON(master_key->size != F2FS_AES_256_XTS_KEY_SIZE); + if (master_key->size != F2FS_AES_256_XTS_KEY_SIZE) { + printk_once(KERN_WARNING + "f2fs: key size incorrect: %d\n", + master_key->size); + res = -ENOKEY; + up_read(&keyring_key->sem); + goto out; + } res = f2fs_derive_key_aes(ctx.nonce, master_key->raw, raw_key); + up_read(&keyring_key->sem); if (res) goto out; diff -u linux-raspi2-4.4.0/fs/f2fs/file.c linux-raspi2-4.4.0/fs/f2fs/file.c --- linux-raspi2-4.4.0/fs/f2fs/file.c +++ linux-raspi2-4.4.0/fs/f2fs/file.c @@ -1541,12 +1541,18 @@ sizeof(policy))) return -EFAULT; + err = mnt_want_write_file(filp); + if (err) + return err; + mutex_lock(&inode->i_mutex); err = f2fs_process_policy(&policy, inode); mutex_unlock(&inode->i_mutex); + mnt_drop_write_file(filp); + return err; #else return -EOPNOTSUPP; diff -u linux-raspi2-4.4.0/fs/f2fs/super.c linux-raspi2-4.4.0/fs/f2fs/super.c --- linux-raspi2-4.4.0/fs/f2fs/super.c +++ linux-raspi2-4.4.0/fs/f2fs/super.c @@ -1078,6 +1078,8 @@ unsigned int total, fsmeta; struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi); struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi); + unsigned int main_segs, blocks_per_seg; + int i; total = le32_to_cpu(raw_super->segment_count); fsmeta = le32_to_cpu(raw_super->segment_count_ckpt); @@ -1089,6 +1091,20 @@ if (unlikely(fsmeta >= total)) return 1; + main_segs = le32_to_cpu(raw_super->segment_count_main); + blocks_per_seg = sbi->blocks_per_seg; + + for (i = 0; i < NR_CURSEG_NODE_TYPE; i++) { + if (le32_to_cpu(ckpt->cur_node_segno[i]) >= main_segs || + le16_to_cpu(ckpt->cur_node_blkoff[i]) >= blocks_per_seg) + return 1; + } + for (i = 0; i < NR_CURSEG_DATA_TYPE; i++) { + if (le32_to_cpu(ckpt->cur_data_segno[i]) >= main_segs || + le16_to_cpu(ckpt->cur_data_blkoff[i]) >= blocks_per_seg) + return 1; + } + if (unlikely(f2fs_cp_error(sbi))) { f2fs_msg(sbi->sb, KERN_ERR, "A bug case: need to run fsck"); return 1; diff -u linux-raspi2-4.4.0/fs/fuse/dir.c linux-raspi2-4.4.0/fs/fuse/dir.c --- linux-raspi2-4.4.0/fs/fuse/dir.c +++ linux-raspi2-4.4.0/fs/fuse/dir.c @@ -1297,7 +1297,8 @@ */ over = !dir_emit(ctx, dirent->name, dirent->namelen, dirent->ino, dirent->type); - ctx->pos = dirent->off; + if (!over) + ctx->pos = dirent->off; } buf += reclen; diff -u linux-raspi2-4.4.0/fs/fuse/file.c linux-raspi2-4.4.0/fs/fuse/file.c --- linux-raspi2-4.4.0/fs/fuse/file.c +++ linux-raspi2-4.4.0/fs/fuse/file.c @@ -46,7 +46,7 @@ { struct fuse_file *ff; - ff = kmalloc(sizeof(struct fuse_file), GFP_KERNEL); + ff = kzalloc(sizeof(struct fuse_file), GFP_KERNEL); if (unlikely(!ff)) return NULL; diff -u linux-raspi2-4.4.0/fs/gfs2/glock.c linux-raspi2-4.4.0/fs/gfs2/glock.c --- linux-raspi2-4.4.0/fs/gfs2/glock.c +++ linux-raspi2-4.4.0/fs/gfs2/glock.c @@ -80,9 +80,9 @@ static struct rhashtable gl_hash_table; -void gfs2_glock_free(struct gfs2_glock *gl) +static void gfs2_glock_dealloc(struct rcu_head *rcu) { - struct gfs2_sbd *sdp = gl->gl_name.ln_sbd; + struct gfs2_glock *gl = container_of(rcu, struct gfs2_glock, gl_rcu); if (gl->gl_ops->go_flags & GLOF_ASPACE) { kmem_cache_free(gfs2_glock_aspace_cachep, gl); @@ -90,6 +90,13 @@ kfree(gl->gl_lksb.sb_lvbptr); kmem_cache_free(gfs2_glock_cachep, gl); } +} + +void gfs2_glock_free(struct gfs2_glock *gl) +{ + struct gfs2_sbd *sdp = gl->gl_name.ln_sbd; + + call_rcu(&gl->gl_rcu, gfs2_glock_dealloc); if (atomic_dec_and_test(&sdp->sd_glock_disposal)) wake_up(&sdp->sd_glock_wait); } @@ -1791,29 +1798,28 @@ static void gfs2_glock_iter_next(struct gfs2_glock_iter *gi) { - do { - gi->gl = rhashtable_walk_next(&gi->hti); + while ((gi->gl = rhashtable_walk_next(&gi->hti))) { if (IS_ERR(gi->gl)) { if (PTR_ERR(gi->gl) == -EAGAIN) continue; gi->gl = NULL; + return; } - /* Skip entries for other sb and dead entries */ - } while ((gi->gl) && ((gi->sdp != gi->gl->gl_name.ln_sbd) || - __lockref_is_dead(&gi->gl->gl_lockref))); + /* Skip entries for other sb and dead entries */ + if (gi->sdp == gi->gl->gl_name.ln_sbd && + !__lockref_is_dead(&gi->gl->gl_lockref)) + return; + } } static void *gfs2_glock_seq_start(struct seq_file *seq, loff_t *pos) { struct gfs2_glock_iter *gi = seq->private; loff_t n = *pos; - int ret; - if (gi->last_pos <= *pos) - n = (*pos - gi->last_pos); - - ret = rhashtable_walk_start(&gi->hti); - if (ret) + if (rhashtable_walk_init(&gl_hash_table, &gi->hti) != 0) + return NULL; + if (rhashtable_walk_start(&gi->hti) != 0) return NULL; do { @@ -1821,6 +1827,7 @@ } while (gi->gl && n--); gi->last_pos = *pos; + return gi->gl; } @@ -1832,6 +1839,7 @@ (*pos)++; gi->last_pos = *pos; gfs2_glock_iter_next(gi); + return gi->gl; } @@ -1840,7 +1848,10 @@ struct gfs2_glock_iter *gi = seq->private; gi->gl = NULL; - rhashtable_walk_stop(&gi->hti); + if (gi->hti.walker) { + rhashtable_walk_stop(&gi->hti); + rhashtable_walk_exit(&gi->hti); + } } static int gfs2_glock_seq_show(struct seq_file *seq, void *iter_ptr) @@ -1903,12 +1914,10 @@ struct gfs2_glock_iter *gi = seq->private; gi->sdp = inode->i_private; - gi->last_pos = 0; seq->buf = kmalloc(GFS2_SEQ_GOODSIZE, GFP_KERNEL | __GFP_NOWARN); if (seq->buf) seq->size = GFS2_SEQ_GOODSIZE; gi->gl = NULL; - ret = rhashtable_walk_init(&gl_hash_table, &gi->hti); } return ret; } @@ -1919,7 +1928,6 @@ struct gfs2_glock_iter *gi = seq->private; gi->gl = NULL; - rhashtable_walk_exit(&gi->hti); return seq_release_private(inode, file); } @@ -1931,12 +1939,10 @@ struct seq_file *seq = file->private_data; struct gfs2_glock_iter *gi = seq->private; gi->sdp = inode->i_private; - gi->last_pos = 0; seq->buf = kmalloc(GFS2_SEQ_GOODSIZE, GFP_KERNEL | __GFP_NOWARN); if (seq->buf) seq->size = GFS2_SEQ_GOODSIZE; gi->gl = NULL; - ret = rhashtable_walk_init(&gl_hash_table, &gi->hti); } return ret; } diff -u linux-raspi2-4.4.0/fs/gfs2/incore.h linux-raspi2-4.4.0/fs/gfs2/incore.h --- linux-raspi2-4.4.0/fs/gfs2/incore.h +++ linux-raspi2-4.4.0/fs/gfs2/incore.h @@ -367,6 +367,7 @@ loff_t end; } gl_vm; }; + struct rcu_head gl_rcu; struct rhash_head gl_node; }; diff -u linux-raspi2-4.4.0/fs/mount.h linux-raspi2-4.4.0/fs/mount.h --- linux-raspi2-4.4.0/fs/mount.h +++ linux-raspi2-4.4.0/fs/mount.h @@ -57,6 +57,7 @@ struct mnt_namespace *mnt_ns; /* containing namespace */ struct mountpoint *mnt_mp; /* where is it mounted */ struct hlist_node mnt_mp_list; /* list mounts with the same mountpoint */ + struct list_head mnt_umounting; /* list entry for umount propagation */ #ifdef CONFIG_FSNOTIFY struct hlist_head mnt_fsnotify_marks; __u32 mnt_fsnotify_mask; diff -u linux-raspi2-4.4.0/fs/namespace.c linux-raspi2-4.4.0/fs/namespace.c --- linux-raspi2-4.4.0/fs/namespace.c +++ linux-raspi2-4.4.0/fs/namespace.c @@ -237,6 +237,7 @@ INIT_LIST_HEAD(&mnt->mnt_slave_list); INIT_LIST_HEAD(&mnt->mnt_slave); INIT_HLIST_NODE(&mnt->mnt_mp_list); + INIT_LIST_HEAD(&mnt->mnt_umounting); #ifdef CONFIG_FSNOTIFY INIT_HLIST_HEAD(&mnt->mnt_fsnotify_marks); #endif diff -u linux-raspi2-4.4.0/fs/nfs/dir.c linux-raspi2-4.4.0/fs/nfs/dir.c --- linux-raspi2-4.4.0/fs/nfs/dir.c +++ linux-raspi2-4.4.0/fs/nfs/dir.c @@ -1135,11 +1135,13 @@ /* Force a full look up iff the parent directory has changed */ if (!nfs_is_exclusive_create(dir, flags) && nfs_check_verifier(dir, dentry, flags & LOOKUP_RCU)) { - - if (nfs_lookup_verify_inode(inode, flags)) { + error = nfs_lookup_verify_inode(inode, flags); + if (error) { if (flags & LOOKUP_RCU) return -ECHILD; - goto out_zap_parent; + if (error == -ESTALE) + goto out_zap_parent; + goto out_error; } goto out_valid; } @@ -1163,8 +1165,10 @@ trace_nfs_lookup_revalidate_enter(dir, dentry, flags); error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr, label); trace_nfs_lookup_revalidate_exit(dir, dentry, flags, error); - if (error) + if (error == -ESTALE || error == -ENOENT) goto out_bad; + if (error) + goto out_error; if (nfs_compare_fh(NFS_FH(inode), fhandle)) goto out_bad; if ((error = nfs_refresh_inode(inode, fattr)) != 0) diff -u linux-raspi2-4.4.0/fs/nfs/inode.c linux-raspi2-4.4.0/fs/nfs/inode.c --- linux-raspi2-4.4.0/fs/nfs/inode.c +++ linux-raspi2-4.4.0/fs/nfs/inode.c @@ -1241,9 +1241,9 @@ return 0; /* Has the inode gone and changed behind our back? */ if ((fattr->valid & NFS_ATTR_FATTR_FILEID) && nfsi->fileid != fattr->fileid) - return -EIO; + return -ESTALE; if ((fattr->valid & NFS_ATTR_FATTR_TYPE) && (inode->i_mode & S_IFMT) != (fattr->mode & S_IFMT)) - return -EIO; + return -ESTALE; if ((fattr->valid & NFS_ATTR_FATTR_CHANGE) != 0 && inode->i_version != fattr->change_attr) diff -u linux-raspi2-4.4.0/fs/nfs/pnfs.c linux-raspi2-4.4.0/fs/nfs/pnfs.c --- linux-raspi2-4.4.0/fs/nfs/pnfs.c +++ linux-raspi2-4.4.0/fs/nfs/pnfs.c @@ -1943,7 +1943,6 @@ nfs_pageio_reset_write_mds(desc); mirror->pg_recoalesce = 1; } - nfs_pgio_data_destroy(hdr); hdr->release(hdr); } @@ -2059,7 +2058,6 @@ nfs_pageio_reset_read_mds(desc); mirror->pg_recoalesce = 1; } - nfs_pgio_data_destroy(hdr); hdr->release(hdr); } diff -u linux-raspi2-4.4.0/fs/nfsd/nfs4callback.c linux-raspi2-4.4.0/fs/nfsd/nfs4callback.c --- linux-raspi2-4.4.0/fs/nfsd/nfs4callback.c +++ linux-raspi2-4.4.0/fs/nfsd/nfs4callback.c @@ -696,6 +696,14 @@ return 0; } +void cleanup_callback_cred(void) +{ + if (callback_cred) { + put_rpccred(callback_cred); + callback_cred = NULL; + } +} + static struct rpc_cred *get_backchannel_cred(struct nfs4_client *clp, struct rpc_clnt *client, struct nfsd4_session *ses) { if (clp->cl_minorversion == 0) { diff -u linux-raspi2-4.4.0/fs/nfsd/nfs4state.c linux-raspi2-4.4.0/fs/nfsd/nfs4state.c --- linux-raspi2-4.4.0/fs/nfsd/nfs4state.c +++ linux-raspi2-4.4.0/fs/nfsd/nfs4state.c @@ -1145,9 +1145,7 @@ static bool unhash_lock_stateid(struct nfs4_ol_stateid *stp) { - struct nfs4_openowner *oo = openowner(stp->st_openstp->st_stateowner); - - lockdep_assert_held(&oo->oo_owner.so_client->cl_lock); + lockdep_assert_held(&stp->st_stid.sc_client->cl_lock); list_del_init(&stp->st_locks); nfs4_unhash_stid(&stp->st_stid); @@ -1156,12 +1154,12 @@ static void release_lock_stateid(struct nfs4_ol_stateid *stp) { - struct nfs4_openowner *oo = openowner(stp->st_openstp->st_stateowner); + struct nfs4_client *clp = stp->st_stid.sc_client; bool unhashed; - spin_lock(&oo->oo_owner.so_client->cl_lock); + spin_lock(&clp->cl_lock); unhashed = unhash_lock_stateid(stp); - spin_unlock(&oo->oo_owner.so_client->cl_lock); + spin_unlock(&clp->cl_lock); if (unhashed) nfs4_put_stid(&stp->st_stid); } @@ -6794,23 +6792,24 @@ ret = set_callback_cred(); if (ret) - return -ENOMEM; + return ret; + laundry_wq = alloc_workqueue("%s", WQ_UNBOUND, 0, "nfsd4"); if (laundry_wq == NULL) { ret = -ENOMEM; - goto out_recovery; + goto out_cleanup_cred; } ret = nfsd4_create_callback_queue(); if (ret) goto out_free_laundry; set_max_delegations(); - return 0; out_free_laundry: destroy_workqueue(laundry_wq); -out_recovery: +out_cleanup_cred: + cleanup_callback_cred(); return ret; } @@ -6849,6 +6848,7 @@ { destroy_workqueue(laundry_wq); nfsd4_destroy_callback_queue(); + cleanup_callback_cred(); } static void diff -u linux-raspi2-4.4.0/fs/nfsd/nfs4xdr.c linux-raspi2-4.4.0/fs/nfsd/nfs4xdr.c --- linux-raspi2-4.4.0/fs/nfsd/nfs4xdr.c +++ linux-raspi2-4.4.0/fs/nfsd/nfs4xdr.c @@ -129,7 +129,7 @@ argp->p = page_address(argp->pagelist[0]); argp->pagelist++; if (argp->pagelen < PAGE_SIZE) { - argp->end = argp->p + (argp->pagelen>>2); + argp->end = argp->p + XDR_QUADLEN(argp->pagelen); argp->pagelen = 0; } else { argp->end = argp->p + (PAGE_SIZE>>2); @@ -1246,9 +1246,7 @@ argp->pagelen -= pages * PAGE_SIZE; len -= pages * PAGE_SIZE; - argp->p = (__be32 *)page_address(argp->pagelist[0]); - argp->pagelist++; - argp->end = argp->p + XDR_QUADLEN(PAGE_SIZE); + next_decode_page(argp); } argp->p += XDR_QUADLEN(len); diff -u linux-raspi2-4.4.0/fs/nfsd/state.h linux-raspi2-4.4.0/fs/nfsd/state.h --- linux-raspi2-4.4.0/fs/nfsd/state.h +++ linux-raspi2-4.4.0/fs/nfsd/state.h @@ -595,6 +595,7 @@ extern __be32 nfs4_check_open_reclaim(clientid_t *clid, struct nfsd4_compound_state *cstate, struct nfsd_net *nn); extern int set_callback_cred(void); +extern void cleanup_callback_cred(void); extern void nfsd4_probe_callback(struct nfs4_client *clp); extern void nfsd4_probe_callback_sync(struct nfs4_client *clp); extern void nfsd4_change_callback(struct nfs4_client *clp, struct nfs4_cb_conn *); diff -u linux-raspi2-4.4.0/fs/ocfs2/dlmglue.c linux-raspi2-4.4.0/fs/ocfs2/dlmglue.c --- linux-raspi2-4.4.0/fs/ocfs2/dlmglue.c +++ linux-raspi2-4.4.0/fs/ocfs2/dlmglue.c @@ -531,6 +531,7 @@ init_waitqueue_head(&res->l_event); INIT_LIST_HEAD(&res->l_blocked_list); INIT_LIST_HEAD(&res->l_mask_waiters); + INIT_LIST_HEAD(&res->l_holders); } void ocfs2_inode_lock_res_init(struct ocfs2_lock_res *res, @@ -748,6 +749,50 @@ res->l_flags = 0UL; } +/* + * Keep a list of processes who have interest in a lockres. + * Note: this is now only uesed for check recursive cluster locking. + */ +static inline void ocfs2_add_holder(struct ocfs2_lock_res *lockres, + struct ocfs2_lock_holder *oh) +{ + INIT_LIST_HEAD(&oh->oh_list); + oh->oh_owner_pid = get_pid(task_pid(current)); + + spin_lock(&lockres->l_lock); + list_add_tail(&oh->oh_list, &lockres->l_holders); + spin_unlock(&lockres->l_lock); +} + +static inline void ocfs2_remove_holder(struct ocfs2_lock_res *lockres, + struct ocfs2_lock_holder *oh) +{ + spin_lock(&lockres->l_lock); + list_del(&oh->oh_list); + spin_unlock(&lockres->l_lock); + + put_pid(oh->oh_owner_pid); +} + +static inline int ocfs2_is_locked_by_me(struct ocfs2_lock_res *lockres) +{ + struct ocfs2_lock_holder *oh; + struct pid *pid; + + /* look in the list of holders for one with the current task as owner */ + spin_lock(&lockres->l_lock); + pid = task_pid(current); + list_for_each_entry(oh, &lockres->l_holders, oh_list) { + if (oh->oh_owner_pid == pid) { + spin_unlock(&lockres->l_lock); + return 1; + } + } + spin_unlock(&lockres->l_lock); + + return 0; +} + static inline void ocfs2_inc_holders(struct ocfs2_lock_res *lockres, int level) { @@ -2343,8 +2388,9 @@ goto getbh; } - if (ocfs2_mount_local(osb)) - goto local; + if ((arg_flags & OCFS2_META_LOCK_GETBH) || + ocfs2_mount_local(osb)) + goto update; if (!(arg_flags & OCFS2_META_LOCK_RECOVERY)) ocfs2_wait_for_recovery(osb); @@ -2373,7 +2419,7 @@ if (!(arg_flags & OCFS2_META_LOCK_RECOVERY)) ocfs2_wait_for_recovery(osb); -local: +update: /* * We only see this flag if we're being called from * ocfs2_read_locked_inode(). It means we're locking an inode @@ -2515,6 +2561,59 @@ ocfs2_cluster_unlock(OCFS2_SB(inode->i_sb), lockres, level); } +/* + * This _tracker variantes are introduced to deal with the recursive cluster + * locking issue. The idea is to keep track of a lock holder on the stack of + * the current process. If there's a lock holder on the stack, we know the + * task context is already protected by cluster locking. Currently, they're + * used in some VFS entry routines. + * + * return < 0 on error, return == 0 if there's no lock holder on the stack + * before this call, return == 1 if this call would be a recursive locking. + */ +int ocfs2_inode_lock_tracker(struct inode *inode, + struct buffer_head **ret_bh, + int ex, + struct ocfs2_lock_holder *oh) +{ + int status; + int arg_flags = 0, has_locked; + struct ocfs2_lock_res *lockres; + + lockres = &OCFS2_I(inode)->ip_inode_lockres; + has_locked = ocfs2_is_locked_by_me(lockres); + /* Just get buffer head if the cluster lock has been taken */ + if (has_locked) + arg_flags = OCFS2_META_LOCK_GETBH; + + if (likely(!has_locked || ret_bh)) { + status = ocfs2_inode_lock_full(inode, ret_bh, ex, arg_flags); + if (status < 0) { + if (status != -ENOENT) + mlog_errno(status); + return status; + } + } + if (!has_locked) + ocfs2_add_holder(lockres, oh); + + return has_locked; +} + +void ocfs2_inode_unlock_tracker(struct inode *inode, + int ex, + struct ocfs2_lock_holder *oh, + int had_lock) +{ + struct ocfs2_lock_res *lockres; + + lockres = &OCFS2_I(inode)->ip_inode_lockres; + if (!had_lock) { + ocfs2_remove_holder(lockres, oh); + ocfs2_inode_unlock(inode, ex); + } +} + int ocfs2_orphan_scan_lock(struct ocfs2_super *osb, u32 *seqno) { struct ocfs2_lock_res *lockres; diff -u linux-raspi2-4.4.0/fs/open.c linux-raspi2-4.4.0/fs/open.c --- linux-raspi2-4.4.0/fs/open.c +++ linux-raspi2-4.4.0/fs/open.c @@ -890,6 +890,12 @@ int lookup_flags = 0; int acc_mode; + /* + * Clear out all open flags we don't know about so that we don't report + * them in fcntl(F_GETFD) or similar interfaces. + */ + flags &= VALID_OPEN_FLAGS; + if (flags & (O_CREAT | __O_TMPFILE)) op->mode = (mode & S_IALLUGO) | S_IFREG; else diff -u linux-raspi2-4.4.0/fs/overlayfs/dir.c linux-raspi2-4.4.0/fs/overlayfs/dir.c --- linux-raspi2-4.4.0/fs/overlayfs/dir.c +++ linux-raspi2-4.4.0/fs/overlayfs/dir.c @@ -176,8 +176,35 @@ if (err) return err; + /* + * When all layers are on the same fs, use the copy-up-origin st_ino, + * which is persistent, unique and constant across copy up. + * + * Otherwise the pair {real st_ino; overlay st_dev} is not unique, so + * use the non persistent overlay st_ino. + */ + if (ovl_same_sb(dentry->d_sb)) { + if (OVL_TYPE_MERGE(type) && OVL_TYPE_UPPER(type)) { + struct kstat lowerstat; + + ovl_path_lower(dentry, &realpath); + err = vfs_getattr(&realpath, &lowerstat); + if (err) + return err; + + WARN_ON_ONCE(stat->dev != lowerstat.dev); + stat->ino = lowerstat.ino; + } + } else { + stat->ino = dentry->d_inode->i_ino; + } + + /* + * Always use the overlay st_dev for directories, so 'find -xdev' will + * scan the entire overlay mount and won't cross the overlay mount + * boundaries. + */ stat->dev = dentry->d_sb->s_dev; - stat->ino = dentry->d_inode->i_ino; /* * It's probably not worth it to count subdirs to get the diff -u linux-raspi2-4.4.0/fs/overlayfs/overlayfs.h linux-raspi2-4.4.0/fs/overlayfs/overlayfs.h --- linux-raspi2-4.4.0/fs/overlayfs/overlayfs.h +++ linux-raspi2-4.4.0/fs/overlayfs/overlayfs.h @@ -164,6 +164,7 @@ } const struct cred *ovl_override_creds(struct super_block *sb); +struct super_block *ovl_same_sb(struct super_block *sb); enum ovl_path_type ovl_path_type(struct dentry *dentry); u64 ovl_dentry_version_get(struct dentry *dentry); void ovl_dentry_version_inc(struct dentry *dentry); diff -u linux-raspi2-4.4.0/fs/overlayfs/super.c linux-raspi2-4.4.0/fs/overlayfs/super.c --- linux-raspi2-4.4.0/fs/overlayfs/super.c +++ linux-raspi2-4.4.0/fs/overlayfs/super.c @@ -44,6 +44,8 @@ /* pathnames of lower and upper dirs, for show_options */ struct ovl_config config; struct cred *mounter_creds; + /* sb common to all layers */ + struct super_block *same_sb; }; struct ovl_dir_cache; @@ -430,6 +432,13 @@ .d_weak_revalidate = ovl_dentry_weak_revalidate, }; +struct super_block *ovl_same_sb(struct super_block *sb) +{ + struct ovl_fs *ofs = sb->s_fs_info; + + return ofs->same_sb; +} + static struct ovl_entry *ovl_alloc_entry(unsigned int numlower) { size_t size = offsetof(struct ovl_entry, lowerstack[numlower]); @@ -1157,11 +1166,19 @@ ufs->lower_mnt[ufs->numlower] = mnt; ufs->numlower++; + + /* Check if all lower layers are on same sb */ + if (i == 0) + ufs->same_sb = mnt->mnt_sb; + else if (ufs->same_sb != mnt->mnt_sb) + ufs->same_sb = NULL; } /* If the upper fs is nonexistent, we mark overlayfs r/o too */ if (!ufs->upper_mnt) sb->s_flags |= MS_RDONLY; + else if (ufs->upper_mnt->mnt_sb != ufs->same_sb) + ufs->same_sb = NULL; if (remote) sb->s_d_op = &ovl_reval_dentry_operations; diff -u linux-raspi2-4.4.0/fs/pnode.c linux-raspi2-4.4.0/fs/pnode.c --- linux-raspi2-4.4.0/fs/pnode.c +++ linux-raspi2-4.4.0/fs/pnode.c @@ -24,6 +24,11 @@ return list_entry(p->mnt_slave_list.next, struct mount, mnt_slave); } +static inline struct mount *last_slave(struct mount *p) +{ + return list_entry(p->mnt_slave_list.prev, struct mount, mnt_slave); +} + static inline struct mount *next_slave(struct mount *p) { return list_entry(p->mnt_slave.next, struct mount, mnt_slave); @@ -164,6 +169,19 @@ } } +static struct mount *skip_propagation_subtree(struct mount *m, + struct mount *origin) +{ + /* + * Advance m such that propagation_next will not return + * the slaves of m. + */ + if (!IS_MNT_NEW(m) && !list_empty(&m->mnt_slave_list)) + m = last_slave(m); + + return m; +} + static struct mount *next_group(struct mount *m, struct mount *origin) { while (1) { @@ -415,68 +433,107 @@ } } -/* - * Mark all mounts that the MNT_LOCKED logic will allow to be unmounted. - */ -static void mark_umount_candidates(struct mount *mnt) +static void umount_one(struct mount *mnt, struct list_head *to_umount) { - struct mount *parent = mnt->mnt_parent; - struct mount *m; - - BUG_ON(parent == mnt); - - for (m = propagation_next(parent, parent); m; - m = propagation_next(m, parent)) { - struct mount *child = __lookup_mnt(&m->mnt, - mnt->mnt_mountpoint); - if (!child || (child->mnt.mnt_flags & MNT_UMOUNT)) - continue; - if (!IS_MNT_LOCKED(child) || IS_MNT_MARKED(m)) { - SET_MNT_MARK(child); - } - } + CLEAR_MNT_MARK(mnt); + mnt->mnt.mnt_flags |= MNT_UMOUNT; + list_del_init(&mnt->mnt_child); + list_del_init(&mnt->mnt_umounting); + list_move_tail(&mnt->mnt_list, to_umount); } /* * NOTE: unmounting 'mnt' naturally propagates to all other mounts its * parent propagates to. */ -static void __propagate_umount(struct mount *mnt) +static bool __propagate_umount(struct mount *mnt, + struct list_head *to_umount, + struct list_head *to_restore) { - struct mount *parent = mnt->mnt_parent; - struct mount *m; + bool progress = false; + struct mount *child; - BUG_ON(parent == mnt); + /* + * The state of the parent won't change if this mount is + * already unmounted or marked as without children. + */ + if (mnt->mnt.mnt_flags & (MNT_UMOUNT | MNT_MARKED)) + goto out; - for (m = propagation_next(parent, parent); m; - m = propagation_next(m, parent)) { - struct mount *topper; - struct mount *child = __lookup_mnt(&m->mnt, - mnt->mnt_mountpoint); - /* - * umount the child only if the child has no children - * and the child is marked safe to unmount. - */ - if (!child || !IS_MNT_MARKED(child)) + /* Verify topper is the only grandchild that has not been + * speculatively unmounted. + */ + list_for_each_entry(child, &mnt->mnt_mounts, mnt_child) { + if (child->mnt_mountpoint == mnt->mnt.mnt_root) continue; - CLEAR_MNT_MARK(child); + if (!list_empty(&child->mnt_umounting) && IS_MNT_MARKED(child)) + continue; + /* Found a mounted child */ + goto children; + } - /* If there is exactly one mount covering all of child - * replace child with that mount. - */ - topper = find_topper(child); - if (topper) - mnt_change_mountpoint(child->mnt_parent, child->mnt_mp, - topper); + /* Mark mounts that can be unmounted if not locked */ + SET_MNT_MARK(mnt); + progress = true; + + /* If a mount is without children and not locked umount it. */ + if (!IS_MNT_LOCKED(mnt)) { + umount_one(mnt, to_umount); + } else { +children: + list_move_tail(&mnt->mnt_umounting, to_restore); + } +out: + return progress; +} - if (list_empty(&child->mnt_mounts)) { - list_del_init(&child->mnt_child); - child->mnt.mnt_flags |= MNT_UMOUNT; - list_move_tail(&child->mnt_list, &mnt->mnt_list); +static void umount_list(struct list_head *to_umount, + struct list_head *to_restore) +{ + struct mount *mnt, *child, *tmp; + list_for_each_entry(mnt, to_umount, mnt_list) { + list_for_each_entry_safe(child, tmp, &mnt->mnt_mounts, mnt_child) { + /* topper? */ + if (child->mnt_mountpoint == mnt->mnt.mnt_root) + list_move_tail(&child->mnt_umounting, to_restore); + else + umount_one(child, to_umount); } } } +static void restore_mounts(struct list_head *to_restore) +{ + /* Restore mounts to a clean working state */ + while (!list_empty(to_restore)) { + struct mount *mnt, *parent; + struct mountpoint *mp; + + mnt = list_first_entry(to_restore, struct mount, mnt_umounting); + CLEAR_MNT_MARK(mnt); + list_del_init(&mnt->mnt_umounting); + + /* Should this mount be reparented? */ + mp = mnt->mnt_mp; + parent = mnt->mnt_parent; + while (parent->mnt.mnt_flags & MNT_UMOUNT) { + mp = parent->mnt_mp; + parent = parent->mnt_parent; + } + if (parent != mnt->mnt_parent) + mnt_change_mountpoint(parent, mp, mnt); + } +} + +static void cleanup_umount_visitations(struct list_head *visited) +{ + while (!list_empty(visited)) { + struct mount *mnt = + list_first_entry(visited, struct mount, mnt_umounting); + list_del_init(&mnt->mnt_umounting); + } +} + /* * collect all mounts that receive propagation from the mount in @list, * and return these additional mounts in the same list. @@ -488,10 +545,67 @@ { struct mount *mnt; + LIST_HEAD(to_restore); + LIST_HEAD(to_umount); + LIST_HEAD(visited); + + /* Find candidates for unmounting */ + list_for_each_entry_reverse(mnt, list, mnt_list) { + struct mount *parent = mnt->mnt_parent; + struct mount *m; + + /* + * If this mount has already been visited it is known that it's + * entire peer group and all of their slaves in the propagation + * tree for the mountpoint has already been visited and there is + * no need to visit them again. + */ + if (!list_empty(&mnt->mnt_umounting)) + continue; + + list_add_tail(&mnt->mnt_umounting, &visited); + for (m = propagation_next(parent, parent); m; + m = propagation_next(m, parent)) { + struct mount *child = __lookup_mnt(&m->mnt, + mnt->mnt_mountpoint); + if (!child) + continue; + + if (!list_empty(&child->mnt_umounting)) { + /* + * If the child has already been visited it is + * know that it's entire peer group and all of + * their slaves in the propgation tree for the + * mountpoint has already been visited and there + * is no need to visit this subtree again. + */ + m = skip_propagation_subtree(m, parent); + continue; + } else if (child->mnt.mnt_flags & MNT_UMOUNT) { + /* + * We have come accross an partially unmounted + * mount in list that has not been visited yet. + * Remember it has been visited and continue + * about our merry way. + */ + list_add_tail(&child->mnt_umounting, &visited); + continue; + } + + /* Check the child and parents while progress is made */ + while (__propagate_umount(child, + &to_umount, &to_restore)) { + /* Is the parent a umount candidate? */ + child = child->mnt_parent; + if (list_empty(&child->mnt_umounting)) + break; + } + } + } - list_for_each_entry_reverse(mnt, list, mnt_list) - mark_umount_candidates(mnt); + umount_list(&to_umount, &to_restore); + restore_mounts(&to_restore); + cleanup_umount_visitations(&visited); + list_splice_tail(&to_umount, list); - list_for_each_entry(mnt, list, mnt_list) - __propagate_umount(mnt); return 0; } diff -u linux-raspi2-4.4.0/fs/pstore/ram.c linux-raspi2-4.4.0/fs/pstore/ram.c --- linux-raspi2-4.4.0/fs/pstore/ram.c +++ linux-raspi2-4.4.0/fs/pstore/ram.c @@ -413,7 +413,7 @@ for (i = 0; i < cxt->max_dump_cnt; i++) { cxt->przs[i] = persistent_ram_new(*paddr, cxt->record_size, 0, &cxt->ecc_info, - cxt->memtype); + cxt->memtype, 0); if (IS_ERR(cxt->przs[i])) { err = PTR_ERR(cxt->przs[i]); dev_err(dev, "failed to request mem region (0x%zx@0x%llx): %d\n", @@ -450,7 +450,8 @@ return -ENOMEM; } - *prz = persistent_ram_new(*paddr, sz, sig, &cxt->ecc_info, cxt->memtype); + *prz = persistent_ram_new(*paddr, sz, sig, &cxt->ecc_info, + cxt->memtype, 0); if (IS_ERR(*prz)) { int err = PTR_ERR(*prz); diff -u linux-raspi2-4.4.0/fs/pstore/ram_core.c linux-raspi2-4.4.0/fs/pstore/ram_core.c --- linux-raspi2-4.4.0/fs/pstore/ram_core.c +++ linux-raspi2-4.4.0/fs/pstore/ram_core.c @@ -47,16 +47,15 @@ return atomic_read(&prz->buffer->start); } -static DEFINE_RAW_SPINLOCK(buffer_lock); - /* increase and wrap the start pointer, returning the old value */ static size_t buffer_start_add(struct persistent_ram_zone *prz, size_t a) { int old; int new; - unsigned long flags; + unsigned long flags = 0; - raw_spin_lock_irqsave(&buffer_lock, flags); + if (!(prz->flags & PRZ_FLAG_NO_LOCK)) + raw_spin_lock_irqsave(&prz->buffer_lock, flags); old = atomic_read(&prz->buffer->start); new = old + a; @@ -64,7 +63,8 @@ new -= prz->buffer_size; atomic_set(&prz->buffer->start, new); - raw_spin_unlock_irqrestore(&buffer_lock, flags); + if (!(prz->flags & PRZ_FLAG_NO_LOCK)) + raw_spin_unlock_irqrestore(&prz->buffer_lock, flags); return old; } @@ -74,9 +74,10 @@ { size_t old; size_t new; - unsigned long flags; + unsigned long flags = 0; - raw_spin_lock_irqsave(&buffer_lock, flags); + if (!(prz->flags & PRZ_FLAG_NO_LOCK)) + raw_spin_lock_irqsave(&prz->buffer_lock, flags); old = atomic_read(&prz->buffer->size); if (old == prz->buffer_size) @@ -88,7 +89,8 @@ atomic_set(&prz->buffer->size, new); exit: - raw_spin_unlock_irqrestore(&buffer_lock, flags); + if (!(prz->flags & PRZ_FLAG_NO_LOCK)) + raw_spin_unlock_irqrestore(&prz->buffer_lock, flags); } static void notrace persistent_ram_encode_rs8(struct persistent_ram_zone *prz, @@ -448,6 +450,7 @@ prz->buffer->sig); } + /* Rewind missing or invalid memory area. */ prz->buffer->sig = sig; persistent_ram_zap(prz); @@ -474,7 +477,7 @@ struct persistent_ram_zone *persistent_ram_new(phys_addr_t start, size_t size, u32 sig, struct persistent_ram_ecc_info *ecc_info, - unsigned int memtype) + unsigned int memtype, u32 flags) { struct persistent_ram_zone *prz; int ret = -ENOMEM; @@ -485,6 +488,10 @@ goto err; } + /* Initialize general buffer state. */ + raw_spin_lock_init(&prz->buffer_lock); + prz->flags = flags; + ret = persistent_ram_buffer_map(start, size, prz, memtype); if (ret) goto err; diff -u linux-raspi2-4.4.0/fs/read_write.c linux-raspi2-4.4.0/fs/read_write.c --- linux-raspi2-4.4.0/fs/read_write.c +++ linux-raspi2-4.4.0/fs/read_write.c @@ -112,7 +112,7 @@ * In the generic case the entire file is data, so as long as * offset isn't at the end of the file then the offset is data. */ - if (offset >= eof) + if ((unsigned long long)offset >= eof) return -ENXIO; break; case SEEK_HOLE: @@ -120,7 +120,7 @@ * There is a virtual hole at the end of the file, so as long as * offset isn't i_size or larger, return i_size. */ - if (offset >= eof) + if ((unsigned long long)offset >= eof) return -ENXIO; offset = eof; break; diff -u linux-raspi2-4.4.0/fs/udf/inode.c linux-raspi2-4.4.0/fs/udf/inode.c --- linux-raspi2-4.4.0/fs/udf/inode.c +++ linux-raspi2-4.4.0/fs/udf/inode.c @@ -1235,8 +1235,8 @@ return err; } set_size: - truncate_setsize(inode, newsize); up_write(&iinfo->i_data_sem); + truncate_setsize(inode, newsize); } else { if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) { down_write(&iinfo->i_data_sem); @@ -1253,9 +1253,9 @@ udf_get_block); if (err) return err; + truncate_setsize(inode, newsize); down_write(&iinfo->i_data_sem); udf_clear_extent_cache(inode); - truncate_setsize(inode, newsize); udf_truncate_extents(inode); up_write(&iinfo->i_data_sem); } diff -u linux-raspi2-4.4.0/fs/xattr.c linux-raspi2-4.4.0/fs/xattr.c --- linux-raspi2-4.4.0/fs/xattr.c +++ linux-raspi2-4.4.0/fs/xattr.c @@ -170,7 +170,7 @@ } memcpy(value, buffer, len); out: - security_release_secctx(buffer, len); + kfree(buffer); out_noalloc: return len; } diff -u linux-raspi2-4.4.0/fs/xfs/xfs_aops.c linux-raspi2-4.4.0/fs/xfs/xfs_aops.c --- linux-raspi2-4.4.0/fs/xfs/xfs_aops.c +++ linux-raspi2-4.4.0/fs/xfs/xfs_aops.c @@ -214,10 +214,12 @@ struct xfs_inode *ip = XFS_I(ioend->io_inode); int error = 0; - if (XFS_FORCED_SHUTDOWN(ip->i_mount)) { + /* + * Set an error if the mount has shut down and proceed with end I/O + * processing so it can perform whatever cleanups are necessary. + */ + if (XFS_FORCED_SHUTDOWN(ip->i_mount)) ioend->io_error = -EIO; - goto done; - } /* * For unwritten extents we need to issue transactions to convert a @@ -1426,6 +1428,26 @@ if (error) goto out_unlock; + /* + * The only time we can ever safely find delalloc blocks on direct I/O + * is a dio write to post-eof speculative preallocation. All other + * scenarios are indicative of a problem or misuse (such as mixing + * direct and mapped I/O). + * + * The file may be unmapped by the time we get here so we cannot + * reliably fail the I/O based on mapping. Instead, fail the I/O if this + * is a read or a write within eof. Otherwise, carry on but warn as a + * precuation if the file happens to be mapped. + */ + if (direct && imap.br_startblock == DELAYSTARTBLOCK) { + if (!create || offset < i_size_read(VFS_I(ip))) { + WARN_ON_ONCE(1); + error = -EIO; + goto out_unlock; + } + WARN_ON_ONCE(mapping_mapped(VFS_I(ip)->i_mapping)); + } + /* for DAX, we convert unwritten extents directly */ if (create && (!nimaps || @@ -1525,7 +1547,6 @@ set_buffer_new(bh_result); if (imap.br_startblock == DELAYSTARTBLOCK) { - BUG_ON(direct); if (create) { set_buffer_uptodate(bh_result); set_buffer_mapped(bh_result); diff -u linux-raspi2-4.4.0/include/asm-generic/vmlinux.lds.h linux-raspi2-4.4.0/include/asm-generic/vmlinux.lds.h --- linux-raspi2-4.4.0/include/asm-generic/vmlinux.lds.h +++ linux-raspi2-4.4.0/include/asm-generic/vmlinux.lds.h @@ -725,7 +725,14 @@ */ #define PERCPU_INPUT(cacheline) \ VMLINUX_SYMBOL(__per_cpu_start) = .; \ + VMLINUX_SYMBOL(__per_cpu_user_mapped_start) = .; \ *(.data..percpu..first) \ + . = ALIGN(cacheline); \ + *(.data..percpu..user_mapped) \ + *(.data..percpu..user_mapped..shared_aligned) \ + . = ALIGN(PAGE_SIZE); \ + *(.data..percpu..user_mapped..page_aligned) \ + VMLINUX_SYMBOL(__per_cpu_user_mapped_end) = .; \ . = ALIGN(PAGE_SIZE); \ *(.data..percpu..page_aligned) \ . = ALIGN(cacheline); \ diff -u linux-raspi2-4.4.0/include/linux/compaction.h linux-raspi2-4.4.0/include/linux/compaction.h --- linux-raspi2-4.4.0/include/linux/compaction.h +++ linux-raspi2-4.4.0/include/linux/compaction.h @@ -135,6 +135,10 @@ return false; } + +bool compaction_zonelist_suitable(struct alloc_context *ac, int order, + int alloc_flags); + #else static inline enum compact_result try_to_compact_pages(gfp_t gfp_mask, unsigned int order, int alloc_flags, diff -u linux-raspi2-4.4.0/include/linux/key.h linux-raspi2-4.4.0/include/linux/key.h --- linux-raspi2-4.4.0/include/linux/key.h +++ linux-raspi2-4.4.0/include/linux/key.h @@ -126,6 +126,11 @@ return (unsigned long) key_ref & 1UL; } +enum key_state { + KEY_IS_UNINSTANTIATED, + KEY_IS_POSITIVE, /* Positively instantiated */ +}; + /*****************************************************************************/ /* * authentication token / access credential / keyring @@ -157,6 +162,7 @@ * - may not match RCU dereferenced payload * - payload should contain own length */ + short state; /* Key state (+) or rejection error (-) */ #ifdef KEY_DEBUGGING unsigned magic; @@ -165,18 +171,17 @@ #endif unsigned long flags; /* status flags (change with bitops) */ -#define KEY_FLAG_INSTANTIATED 0 /* set if key has been instantiated */ -#define KEY_FLAG_DEAD 1 /* set if key type has been deleted */ -#define KEY_FLAG_REVOKED 2 /* set if key had been revoked */ -#define KEY_FLAG_IN_QUOTA 3 /* set if key consumes quota */ -#define KEY_FLAG_USER_CONSTRUCT 4 /* set if key is being constructed in userspace */ -#define KEY_FLAG_NEGATIVE 5 /* set if key is negative */ -#define KEY_FLAG_ROOT_CAN_CLEAR 6 /* set if key can be cleared by root without permission */ -#define KEY_FLAG_INVALIDATED 7 /* set if key has been invalidated */ -#define KEY_FLAG_TRUSTED 8 /* set if key is trusted */ -#define KEY_FLAG_TRUSTED_ONLY 9 /* set if keyring only accepts links to trusted keys */ -#define KEY_FLAG_BUILTIN 10 /* set if key is builtin */ -#define KEY_FLAG_ROOT_CAN_INVAL 11 /* set if key can be invalidated by root without permission */ +#define KEY_FLAG_DEAD 0 /* set if key type has been deleted */ +#define KEY_FLAG_REVOKED 1 /* set if key had been revoked */ +#define KEY_FLAG_IN_QUOTA 2 /* set if key consumes quota */ +#define KEY_FLAG_USER_CONSTRUCT 3 /* set if key is being constructed in userspace */ +#define KEY_FLAG_ROOT_CAN_CLEAR 4 /* set if key can be cleared by root without permission */ +#define KEY_FLAG_INVALIDATED 5 /* set if key has been invalidated */ +#define KEY_FLAG_TRUSTED 6 /* set if key is trusted */ +#define KEY_FLAG_TRUSTED_ONLY 7 /* set if keyring only accepts links to trusted keys */ +#define KEY_FLAG_BUILTIN 8 /* set if key is builtin */ +#define KEY_FLAG_ROOT_CAN_INVAL 9 /* set if key can be invalidated by root without permission */ +#define KEY_FLAG_UID_KEYRING 10 /* set if key is a user or user session keyring */ /* the key type and key description string * - the desc is used to match a key against search criteria @@ -202,7 +207,6 @@ struct list_head name_link; struct assoc_array keys; }; - int reject_error; }; }; @@ -219,6 +223,7 @@ #define KEY_ALLOC_NOT_IN_QUOTA 0x0002 /* not in quota */ #define KEY_ALLOC_TRUSTED 0x0004 /* Key should be flagged as trusted */ #define KEY_ALLOC_BUILT_IN 0x0008 /* Key is built into kernel */ +#define KEY_ALLOC_UID_KEYRING 0x0010 /* allocating a user or user session keyring */ extern void key_revoke(struct key *key); extern void key_invalidate(struct key *key); @@ -318,17 +323,27 @@ #define KEY_NEED_SETATTR 0x20 /* Require permission to change attributes */ #define KEY_NEED_ALL 0x3f /* All the above permissions */ +static inline short key_read_state(const struct key *key) +{ + /* Barrier versus mark_key_instantiated(). */ + return smp_load_acquire(&key->state); +} + /** - * key_is_instantiated - Determine if a key has been positively instantiated + * key_is_positive - Determine if a key has been positively instantiated * @key: The key to check. * * Return true if the specified key has been positively instantiated, false * otherwise. */ -static inline bool key_is_instantiated(const struct key *key) +static inline bool key_is_positive(const struct key *key) +{ + return key_read_state(key) == KEY_IS_POSITIVE; +} + +static inline bool key_is_negative(const struct key *key) { - return test_bit(KEY_FLAG_INSTANTIATED, &key->flags) && - !test_bit(KEY_FLAG_NEGATIVE, &key->flags); + return key_read_state(key) < 0; } #define rcu_dereference_key(KEY) \ diff -u linux-raspi2-4.4.0/include/linux/lightnvm.h linux-raspi2-4.4.0/include/linux/lightnvm.h --- linux-raspi2-4.4.0/include/linux/lightnvm.h +++ linux-raspi2-4.4.0/include/linux/lightnvm.h @@ -373,6 +373,7 @@ { struct ppa_addr l; + l.ppa = 0; /* * (r.ppa << X offset) & X len bitmask. X eq. blk, pg, etc. */ diff -u linux-raspi2-4.4.0/include/linux/mm_types.h linux-raspi2-4.4.0/include/linux/mm_types.h --- linux-raspi2-4.4.0/include/linux/mm_types.h +++ linux-raspi2-4.4.0/include/linux/mm_types.h @@ -506,6 +506,10 @@ */ bool tlb_flush_pending; #endif +#ifdef CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH + /* See flush_tlb_batched_pending() */ + bool tlb_flush_batched; +#endif struct uprobes_state uprobes_state; #ifdef CONFIG_X86_INTEL_MPX /* address of the bounds directory */ diff -u linux-raspi2-4.4.0/include/linux/mmzone.h linux-raspi2-4.4.0/include/linux/mmzone.h --- linux-raspi2-4.4.0/include/linux/mmzone.h +++ linux-raspi2-4.4.0/include/linux/mmzone.h @@ -131,8 +131,9 @@ NR_SLAB_RECLAIMABLE, NR_SLAB_UNRECLAIMABLE, NR_PAGETABLE, /* used for pagetables */ - NR_KERNEL_STACK, /* Second 128 byte cacheline */ + NR_KERNEL_STACK, + NR_KAISERTABLE, NR_UNSTABLE_NFS, /* NFS unstable pages */ NR_BOUNCE, NR_VMSCAN_WRITE, @@ -738,6 +739,9 @@ extern struct mutex zonelists_mutex; void build_all_zonelists(pg_data_t *pgdat, struct zone *zone); void wakeup_kswapd(struct zone *zone, int order, enum zone_type classzone_idx); +bool __zone_watermark_ok(struct zone *z, unsigned int order, unsigned long mark, + int classzone_idx, unsigned int alloc_flags, + long free_pages); bool zone_watermark_ok(struct zone *z, unsigned int order, unsigned long mark, int classzone_idx, unsigned int alloc_flags); diff -u linux-raspi2-4.4.0/include/linux/netdevice.h linux-raspi2-4.4.0/include/linux/netdevice.h --- linux-raspi2-4.4.0/include/linux/netdevice.h +++ linux-raspi2-4.4.0/include/linux/netdevice.h @@ -3149,6 +3149,7 @@ int dev_change_name(struct net_device *, const char *); int dev_set_alias(struct net_device *, const char *, size_t); int dev_change_net_namespace(struct net_device *, struct net *, const char *); +int __dev_set_mtu(struct net_device *, int); int dev_set_mtu(struct net_device *, int); void dev_set_group(struct net_device *, int); int dev_set_mac_address(struct net_device *, struct sockaddr *); diff -u linux-raspi2-4.4.0/include/linux/pci_ids.h linux-raspi2-4.4.0/include/linux/pci_ids.h --- linux-raspi2-4.4.0/include/linux/pci_ids.h +++ linux-raspi2-4.4.0/include/linux/pci_ids.h @@ -573,6 +573,7 @@ #define PCI_DEVICE_ID_AMD_CS5536_EHC 0x2095 #define PCI_DEVICE_ID_AMD_CS5536_UDC 0x2096 #define PCI_DEVICE_ID_AMD_CS5536_UOC 0x2097 +#define PCI_DEVICE_ID_AMD_CS5536_DEV_IDE 0x2092 #define PCI_DEVICE_ID_AMD_CS5536_IDE 0x209A #define PCI_DEVICE_ID_AMD_LX_VIDEO 0x2081 #define PCI_DEVICE_ID_AMD_LX_AES 0x2082 diff -u linux-raspi2-4.4.0/include/linux/sched.h linux-raspi2-4.4.0/include/linux/sched.h --- linux-raspi2-4.4.0/include/linux/sched.h +++ linux-raspi2-4.4.0/include/linux/sched.h @@ -801,6 +801,16 @@ #define SIGNAL_UNKILLABLE 0x00000040 /* for init: ignore fatal signals */ +#define SIGNAL_STOP_MASK (SIGNAL_CLD_MASK | SIGNAL_STOP_STOPPED | \ + SIGNAL_STOP_CONTINUED) + +static inline void signal_set_stop_flags(struct signal_struct *sig, + unsigned int flags) +{ + WARN_ON(sig->flags & (SIGNAL_GROUP_EXIT|SIGNAL_GROUP_COREDUMP)); + sig->flags = (sig->flags & ~SIGNAL_STOP_MASK) | flags; +} + /* If true, all threads except ->group_exit_task have pending SIGKILL */ static inline int signal_group_exit(const struct signal_struct *sig) { @@ -1939,31 +1949,8 @@ return tsk->tgid; } -pid_t task_tgid_nr_ns(struct task_struct *tsk, struct pid_namespace *ns); - -static inline pid_t task_tgid_vnr(struct task_struct *tsk) -{ - return pid_vnr(task_tgid(tsk)); -} - static inline int pid_alive(const struct task_struct *p); -static inline pid_t task_ppid_nr_ns(const struct task_struct *tsk, struct pid_namespace *ns) -{ - pid_t pid = 0; - - rcu_read_lock(); - if (pid_alive(tsk)) - pid = task_tgid_nr_ns(rcu_dereference(tsk->real_parent), ns); - rcu_read_unlock(); - - return pid; -} - -static inline pid_t task_ppid_nr(const struct task_struct *tsk) -{ - return task_ppid_nr_ns(tsk, &init_pid_ns); -} static inline pid_t task_pgrp_nr_ns(struct task_struct *tsk, struct pid_namespace *ns) @@ -1988,6 +1975,33 @@ return __task_pid_nr_ns(tsk, PIDTYPE_SID, NULL); } +static inline pid_t task_tgid_nr_ns(struct task_struct *tsk, struct pid_namespace *ns) +{ + return __task_pid_nr_ns(tsk, __PIDTYPE_TGID, ns); +} + +static inline pid_t task_tgid_vnr(struct task_struct *tsk) +{ + return __task_pid_nr_ns(tsk, __PIDTYPE_TGID, NULL); +} + +static inline pid_t task_ppid_nr_ns(const struct task_struct *tsk, struct pid_namespace *ns) +{ + pid_t pid = 0; + + rcu_read_lock(); + if (pid_alive(tsk)) + pid = task_tgid_nr_ns(rcu_dereference(tsk->real_parent), ns); + rcu_read_unlock(); + + return pid; +} + +static inline pid_t task_ppid_nr(const struct task_struct *tsk) +{ + return task_ppid_nr_ns(tsk, &init_pid_ns); +} + /* obsolete, do not use */ static inline pid_t task_pgrp_nr(struct task_struct *tsk) { diff -u linux-raspi2-4.4.0/include/linux/skbuff.h linux-raspi2-4.4.0/include/linux/skbuff.h --- linux-raspi2-4.4.0/include/linux/skbuff.h +++ linux-raspi2-4.4.0/include/linux/skbuff.h @@ -522,6 +522,7 @@ * @wifi_acked_valid: wifi_acked was set * @wifi_acked: whether frame was acked on wifi or not * @no_fcs: Request NIC to treat last 4 bytes as Ethernet FCS + * @dst_pending_confirm: need to confirm neighbour * @napi_id: id of the NAPI struct this skb came from * @secmark: security marking * @offload_fwd_mark: fwding offload mark @@ -636,6 +637,7 @@ __u8 csum_level:2; __u8 csum_bad:1; + __u8 dst_pending_confirm:1; #ifdef CONFIG_IPV6_NDISC_NODETYPE __u8 ndisc_nodetype:2; #endif @@ -3495,6 +3497,16 @@ return skb->queue_mapping != 0; } +static inline void skb_set_dst_pending_confirm(struct sk_buff *skb, u32 val) +{ + skb->dst_pending_confirm = val; +} + +static inline bool skb_get_dst_pending_confirm(const struct sk_buff *skb) +{ + return skb->dst_pending_confirm != 0; +} + static inline struct sec_path *skb_sec_path(struct sk_buff *skb) { #ifdef CONFIG_XFRM diff -u linux-raspi2-4.4.0/include/linux/trace_events.h linux-raspi2-4.4.0/include/linux/trace_events.h --- linux-raspi2-4.4.0/include/linux/trace_events.h +++ linux-raspi2-4.4.0/include/linux/trace_events.h @@ -301,6 +301,7 @@ int perf_refcount; struct hlist_head __percpu *perf_events; struct bpf_prog *prog; + struct perf_event *bpf_prog_owner; int (*perf_perm)(struct trace_event_call *, struct perf_event *); diff -u linux-raspi2-4.4.0/include/linux/tty.h linux-raspi2-4.4.0/include/linux/tty.h --- linux-raspi2-4.4.0/include/linux/tty.h +++ linux-raspi2-4.4.0/include/linux/tty.h @@ -498,7 +498,8 @@ extern struct tty_ldisc *tty_ldisc_ref(struct tty_struct *); extern void tty_ldisc_deref(struct tty_ldisc *); extern struct tty_ldisc *tty_ldisc_ref_wait(struct tty_struct *); -extern void tty_ldisc_hangup(struct tty_struct *tty); +extern void tty_ldisc_hangup(struct tty_struct *tty, bool reset); +extern int tty_ldisc_reinit(struct tty_struct *tty, int disc); extern const struct file_operations tty_ldiscs_proc_fops; extern void tty_wakeup(struct tty_struct *tty); @@ -580,7 +581,7 @@ extern int tty_register_ldisc(int disc, struct tty_ldisc_ops *new_ldisc); extern int tty_unregister_ldisc(int disc); -extern int tty_set_ldisc(struct tty_struct *tty, int ldisc); +extern int tty_set_ldisc(struct tty_struct *tty, int disc); extern int tty_ldisc_setup(struct tty_struct *tty, struct tty_struct *o_tty); extern void tty_ldisc_release(struct tty_struct *tty); extern void tty_ldisc_init(struct tty_struct *tty); diff -u linux-raspi2-4.4.0/include/linux/usb/hcd.h linux-raspi2-4.4.0/include/linux/usb/hcd.h --- linux-raspi2-4.4.0/include/linux/usb/hcd.h +++ linux-raspi2-4.4.0/include/linux/usb/hcd.h @@ -560,9 +560,9 @@ ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_INTERFACE)<<8) #define EndpointRequest \ - ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_INTERFACE)<<8) + ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_ENDPOINT)<<8) #define EndpointOutRequest \ - ((USB_DIR_OUT|USB_TYPE_STANDARD|USB_RECIP_INTERFACE)<<8) + ((USB_DIR_OUT|USB_TYPE_STANDARD|USB_RECIP_ENDPOINT)<<8) /* class requests from the USB 2.0 hub spec, table 11-15 */ /* GetBusState and SetHubDescriptor are optional, omitted */ diff -u linux-raspi2-4.4.0/include/net/addrconf.h linux-raspi2-4.4.0/include/net/addrconf.h --- linux-raspi2-4.4.0/include/net/addrconf.h +++ linux-raspi2-4.4.0/include/net/addrconf.h @@ -301,6 +301,16 @@ in6_dev_finish_destroy(idev); } +static inline void in6_dev_put_clear(struct inet6_dev **pidev) +{ + struct inet6_dev *idev = *pidev; + + if (idev) { + in6_dev_put(idev); + *pidev = NULL; + } +} + static inline void __in6_dev_put(struct inet6_dev *idev) { atomic_dec(&idev->refcnt); diff -u linux-raspi2-4.4.0/include/net/dst.h linux-raspi2-4.4.0/include/net/dst.h --- linux-raspi2-4.4.0/include/net/dst.h +++ linux-raspi2-4.4.0/include/net/dst.h @@ -59,8 +59,6 @@ #define DST_XFRM_QUEUE 0x0100 #define DST_METADATA 0x0200 - unsigned short pending_confirm; - short error; /* A non-zero value of dst->obsolete forces by-hand validation @@ -78,6 +76,8 @@ #define DST_OBSOLETE_KILL -2 unsigned short header_len; /* more space at head required */ unsigned short trailer_len; /* space to reserve at tail */ + unsigned short __pad3; + #ifdef CONFIG_IP_ROUTE_CLASSID __u32 tclassid; #else @@ -437,7 +437,6 @@ static inline void dst_confirm(struct dst_entry *dst) { - dst->pending_confirm = 1; } static inline int dst_neigh_output(struct dst_entry *dst, struct neighbour *n, @@ -445,15 +444,6 @@ { const struct hh_cache *hh; - if (dst->pending_confirm) { - unsigned long now = jiffies; - - dst->pending_confirm = 0; - /* avoid dirtying neighbour */ - if (n->confirmed != now) - n->confirmed = now; - } - hh = &n->hh; if ((n->nud_state & NUD_CONNECTED) && hh->hh_len) return neigh_hh_output(hh, skb); @@ -474,6 +464,13 @@ return IS_ERR(n) ? NULL : n; } +static inline void dst_confirm_neigh(const struct dst_entry *dst, + const void *daddr) +{ + if (dst->ops->confirm_neigh) + dst->ops->confirm_neigh(dst, daddr); +} + static inline void dst_link_failure(struct sk_buff *skb) { struct dst_entry *dst = skb_dst(skb); diff -u linux-raspi2-4.4.0/include/net/ip.h linux-raspi2-4.4.0/include/net/ip.h --- linux-raspi2-4.4.0/include/net/ip.h +++ linux-raspi2-4.4.0/include/net/ip.h @@ -314,7 +314,7 @@ !forwarding) return dst_mtu(dst); - return min(dst->dev->mtu, IP_MAX_MTU); + return min(READ_ONCE(dst->dev->mtu), IP_MAX_MTU); } static inline unsigned int ip_skb_dst_mtu(const struct sk_buff *skb) @@ -327,7 +327,7 @@ return ip_dst_mtu_maybe_forward(skb_dst(skb), forwarding); } - return min(skb_dst(skb)->dev->mtu, IP_MAX_MTU); + return min(READ_ONCE(skb_dst(skb)->dev->mtu), IP_MAX_MTU); } u32 ip_idents_reserve(u32 hash, int segs); diff -u linux-raspi2-4.4.0/include/net/ip6_route.h linux-raspi2-4.4.0/include/net/ip6_route.h --- linux-raspi2-4.4.0/include/net/ip6_route.h +++ linux-raspi2-4.4.0/include/net/ip6_route.h @@ -21,6 +21,7 @@ #include #include #include +#include #include #include #include @@ -210,2 +211,9 @@ +static inline bool rt6_duplicate_nexthop(struct rt6_info *a, struct rt6_info *b) +{ + return a->dst.dev == b->dst.dev && + a->rt6i_idev == b->rt6i_idev && + ipv6_addr_equal(&a->rt6i_gateway, &b->rt6i_gateway) && + !lwtunnel_cmp_encap(a->dst.lwtstate, b->dst.lwtstate); +} #endif diff -u linux-raspi2-4.4.0/include/net/iw_handler.h linux-raspi2-4.4.0/include/net/iw_handler.h --- linux-raspi2-4.4.0/include/net/iw_handler.h +++ linux-raspi2-4.4.0/include/net/iw_handler.h @@ -556,7 +556,8 @@ memcpy(stream + lcp_len, ((char *) &iwe->u) + IW_EV_POINT_OFF, IW_EV_POINT_PK_LEN - IW_EV_LCP_PK_LEN); - memcpy(stream + point_len, extra, iwe->u.data.length); + if (iwe->u.data.length && extra) + memcpy(stream + point_len, extra, iwe->u.data.length); stream += event_len; } return stream; diff -u linux-raspi2-4.4.0/include/net/sch_generic.h linux-raspi2-4.4.0/include/net/sch_generic.h --- linux-raspi2-4.4.0/include/net/sch_generic.h +++ linux-raspi2-4.4.0/include/net/sch_generic.h @@ -717,8 +717,11 @@ old = *pold; *pold = new; if (old != NULL) { - qdisc_tree_reduce_backlog(old, old->q.qlen, old->qstats.backlog); + unsigned int qlen = old->q.qlen; + unsigned int backlog = old->qstats.backlog; + qdisc_reset(old); + qdisc_tree_reduce_backlog(old, qlen, backlog); } sch_tree_unlock(sch); diff -u linux-raspi2-4.4.0/include/net/sock.h linux-raspi2-4.4.0/include/net/sock.h --- linux-raspi2-4.4.0/include/net/sock.h +++ linux-raspi2-4.4.0/include/net/sock.h @@ -254,6 +254,7 @@ * @sk_wq: sock wait queue and async head * @sk_rx_dst: receive input route used by early demux * @sk_dst_cache: destination cache + * @sk_dst_pending_confirm: need to confirm neighbour * @sk_policy: flow policy * @sk_receive_queue: incoming packets * @sk_wmem_alloc: transmit queue bytes committed @@ -397,6 +398,7 @@ atomic_t sk_omem_alloc; int sk_sndbuf; struct sk_buff_head sk_write_queue; + __u32 sk_dst_pending_confirm; kmemcheck_bitfield_begin(flags); unsigned int sk_shutdown : 2, sk_no_check_tx : 1, @@ -1748,6 +1750,7 @@ if (ndst != dst) { rcu_assign_pointer(sk->sk_dst_cache, ndst); sk_tx_queue_clear(sk); + sk->sk_dst_pending_confirm = 0; } } } @@ -1758,6 +1761,7 @@ struct dst_entry *old_dst; sk_tx_queue_clear(sk); + sk->sk_dst_pending_confirm = 0; /* * This can be called while sk is owned by the caller only, * with no state that can be checked in a rcu_dereference_check() cond @@ -1773,6 +1777,7 @@ struct dst_entry *old_dst; sk_tx_queue_clear(sk); + sk->sk_dst_pending_confirm = 0; old_dst = xchg((__force struct dst_entry **)&sk->sk_dst_cache, dst); dst_release(old_dst); } @@ -1793,6 +1798,26 @@ struct dst_entry *sk_dst_check(struct sock *sk, u32 cookie); +static inline void sk_dst_confirm(struct sock *sk) +{ + if (!sk->sk_dst_pending_confirm) + sk->sk_dst_pending_confirm = 1; +} + +static inline void sock_confirm_neigh(struct sk_buff *skb, struct neighbour *n) +{ + if (skb_get_dst_pending_confirm(skb)) { + struct sock *sk = skb->sk; + unsigned long now = jiffies; + + /* avoid dirtying neighbour */ + if (n->confirmed != now) + n->confirmed = now; + if (sk && sk->sk_dst_pending_confirm) + sk->sk_dst_pending_confirm = 0; + } +} + bool sk_mc_loop(struct sock *sk); static inline bool sk_can_gso(const struct sock *sk) diff -u linux-raspi2-4.4.0/include/target/target_core_base.h linux-raspi2-4.4.0/include/target/target_core_base.h --- linux-raspi2-4.4.0/include/target/target_core_base.h +++ linux-raspi2-4.4.0/include/target/target_core_base.h @@ -717,6 +717,7 @@ #define SE_LUN_LINK_MAGIC 0xffff7771 u32 lun_link_magic; u32 lun_access; + bool lun_shutdown; u32 lun_index; /* RELATIVE TARGET PORT IDENTIFER */ diff -u linux-raspi2-4.4.0/include/uapi/linux/usb/ch9.h linux-raspi2-4.4.0/include/uapi/linux/usb/ch9.h --- linux-raspi2-4.4.0/include/uapi/linux/usb/ch9.h +++ linux-raspi2-4.4.0/include/uapi/linux/usb/ch9.h @@ -735,6 +735,7 @@ __u8 iFunction; } __attribute__ ((packed)); +#define USB_DT_INTERFACE_ASSOCIATION_SIZE 8 /*-------------------------------------------------------------------------*/ diff -u linux-raspi2-4.4.0/ipc/mqueue.c linux-raspi2-4.4.0/ipc/mqueue.c --- linux-raspi2-4.4.0/ipc/mqueue.c +++ linux-raspi2-4.4.0/ipc/mqueue.c @@ -1249,8 +1249,10 @@ timeo = MAX_SCHEDULE_TIMEOUT; ret = netlink_attachskb(sock, nc, &timeo, NULL); - if (ret == 1) + if (ret == 1) { + sock = NULL; goto retry; + } if (ret) { sock = NULL; nc = NULL; diff -u linux-raspi2-4.4.0/kernel/audit_watch.c linux-raspi2-4.4.0/kernel/audit_watch.c --- linux-raspi2-4.4.0/kernel/audit_watch.c +++ linux-raspi2-4.4.0/kernel/audit_watch.c @@ -457,13 +457,15 @@ list_del(&krule->rlist); if (list_empty(&watch->rules)) { + /* + * audit_remove_watch() drops our reference to 'parent' which + * can get freed. Grab our own reference to be safe. + */ + audit_get_parent(parent); audit_remove_watch(watch); - - if (list_empty(&parent->watches)) { - audit_get_parent(parent); + if (list_empty(&parent->watches)) fsnotify_destroy_mark(&parent->mark, audit_watch_group); - audit_put_parent(parent); - } + audit_put_parent(parent); } } diff -u linux-raspi2-4.4.0/kernel/bpf/verifier.c linux-raspi2-4.4.0/kernel/bpf/verifier.c --- linux-raspi2-4.4.0/kernel/bpf/verifier.c +++ linux-raspi2-4.4.0/kernel/bpf/verifier.c @@ -765,6 +765,11 @@ if (err) return err; + if (is_pointer_value(env, insn->src_reg)) { + verbose("R%d leaks addr into mem\n", insn->src_reg); + return -EACCES; + } + /* check whether atomic_add can read the memory */ err = check_mem_access(env, insn->dst_reg, insn->off, BPF_SIZE(insn->code), BPF_READ, -1); @@ -1039,7 +1044,8 @@ } } else { if (insn->src_reg != BPF_REG_0 || insn->off != 0 || - (insn->imm != 16 && insn->imm != 32 && insn->imm != 64)) { + (insn->imm != 16 && insn->imm != 32 && insn->imm != 64) || + BPF_CLASS(insn->code) == BPF_ALU64) { verbose("BPF_END uses reserved fields\n"); return -EINVAL; } diff -u linux-raspi2-4.4.0/kernel/cpuset.c linux-raspi2-4.4.0/kernel/cpuset.c --- linux-raspi2-4.4.0/kernel/cpuset.c +++ linux-raspi2-4.4.0/kernel/cpuset.c @@ -60,6 +60,7 @@ #include #include +struct static_key cpusets_pre_enable_key __read_mostly = STATIC_KEY_INIT_FALSE; struct static_key cpusets_enabled_key __read_mostly = STATIC_KEY_INIT_FALSE; /* See "Frequency meter" comments, below. */ @@ -1909,6 +1910,7 @@ { .name = "memory_pressure", .read_u64 = cpuset_read_u64, + .private = FILE_MEMORY_PRESSURE, }, { @@ -2279,6 +2281,13 @@ mutex_unlock(&cpuset_mutex); } +static bool force_rebuild; + +void cpuset_force_rebuild(void) +{ + force_rebuild = true; +} + /** * cpuset_hotplug_workfn - handle CPU/memory hotunplug for a cpuset * @@ -2353,8 +2362,10 @@ } /* rebuild sched domains if cpus_allowed has changed */ - if (cpus_updated) + if (cpus_updated || force_rebuild) { + force_rebuild = false; rebuild_sched_domains(); + } } void cpuset_update_active_cpus(bool cpu_online) @@ -2373,6 +2384,11 @@ schedule_work(&cpuset_hotplug_work); } +void cpuset_wait_for_hotplug(void) +{ + flush_work(&cpuset_hotplug_work); +} + /* * Keep top_cpuset.mems_allowed tracking node_states[N_MEMORY]. * Call this routine anytime after node_states[N_MEMORY] changes. diff -u linux-raspi2-4.4.0/kernel/events/core.c linux-raspi2-4.4.0/kernel/events/core.c --- linux-raspi2-4.4.0/kernel/events/core.c +++ linux-raspi2-4.4.0/kernel/events/core.c @@ -6410,21 +6410,6 @@ perf_output_end(&handle); } -static bool sample_is_allowed(struct perf_event *event, struct pt_regs *regs) -{ - /* - * Due to interrupt latency (AKA "skid"), we may enter the - * kernel before taking an overflow, even if the PMU is only - * counting user events. - * To avoid leaking information to userspace, we must always - * reject kernel samples when exclude_kernel is set. - */ - if (event->attr.exclude_kernel && !user_mode(regs)) - return false; - - return true; -} - /* * Generic event overflow handling, sampling. */ @@ -6472,12 +6457,6 @@ } /* - * For security, drop the skid kernel samples if necessary. - */ - if (!sample_is_allowed(event, regs)) - return ret; - - /* * XXX event_limit might not quite work as expected on inherited * events */ @@ -7129,6 +7108,7 @@ } event->tp_event->prog = prog; + event->tp_event->bpf_prog_owner = event; return 0; } @@ -7141,7 +7121,7 @@ return; prog = event->tp_event->prog; - if (prog) { + if (prog && event->tp_event->bpf_prog_owner == event) { event->tp_event->prog = NULL; bpf_prog_put_rcu(prog); } @@ -8494,28 +8474,27 @@ goto err_context; /* - * Do not allow to attach to a group in a different - * task or CPU context: + * Make sure we're both events for the same CPU; + * grouping events for different CPUs is broken; since + * you can never concurrently schedule them anyhow. */ - if (move_group) { - /* - * Make sure we're both on the same task, or both - * per-cpu events. - */ - if (group_leader->ctx->task != ctx->task) - goto err_context; - - /* - * Make sure we're both events for the same CPU; - * grouping events for different CPUs is broken; since - * you can never concurrently schedule them anyhow. - */ - if (group_leader->cpu != event->cpu) - goto err_context; - } else { - if (group_leader->ctx != ctx) - goto err_context; - } + if (group_leader->cpu != event->cpu) + goto err_context; + + /* + * Make sure we're both on the same task, or both + * per-CPU events. + */ + if (group_leader->ctx->task != ctx->task) + goto err_context; + + /* + * Do not allow to attach to a group in a different task + * or CPU context. If we're moving SW events, we'll fix + * this up later, so allow that. + */ + if (!move_group && group_leader->ctx != ctx) + goto err_context; /* * Only a group leader can be exclusive or pinned diff -u linux-raspi2-4.4.0/kernel/fork.c linux-raspi2-4.4.0/kernel/fork.c --- linux-raspi2-4.4.0/kernel/fork.c +++ linux-raspi2-4.4.0/kernel/fork.c @@ -58,6 +58,7 @@ #include #include #include +#include #include #include #include @@ -174,6 +175,7 @@ static inline void free_thread_info(struct thread_info *ti) { + kaiser_unmap_thread_stack(ti); free_kmem_pages((unsigned long)ti, THREAD_SIZE_ORDER); } # else @@ -357,6 +359,10 @@ goto free_ti; tsk->stack = ti; + + err = kaiser_map_thread_stack(tsk->stack); + if (err) + goto free_ti; #ifdef CONFIG_SECCOMP /* * We must handle setting up seccomp filters once we're under diff -u linux-raspi2-4.4.0/kernel/gcov/base.c linux-raspi2-4.4.0/kernel/gcov/base.c --- linux-raspi2-4.4.0/kernel/gcov/base.c +++ linux-raspi2-4.4.0/kernel/gcov/base.c @@ -98,6 +98,12 @@ } EXPORT_SYMBOL(__gcov_merge_icall_topn); +void __gcov_exit(void) +{ + /* Unused. */ +} +EXPORT_SYMBOL(__gcov_exit); + /** * gcov_enable_events - enable event reporting through gcov_event() * diff -u linux-raspi2-4.4.0/kernel/sched/core.c linux-raspi2-4.4.0/kernel/sched/core.c --- linux-raspi2-4.4.0/kernel/sched/core.c +++ linux-raspi2-4.4.0/kernel/sched/core.c @@ -5553,7 +5553,6 @@ case CPU_UP_PREPARE: rq->calc_load_update = calc_load_update; - account_reset_rq(rq); break; case CPU_ONLINE: @@ -6123,6 +6122,9 @@ * Build an iteration mask that can exclude certain CPUs from the upwards * domain traversal. * + * Only CPUs that can arrive at this group should be considered to continue + * balancing. + * * Asymmetric node setups can result in situations where the domain tree is of * unequal depth, make sure to skip domains that already cover the entire * range. @@ -6134,18 +6136,31 @@ */ static void build_group_mask(struct sched_domain *sd, struct sched_group *sg) { - const struct cpumask *span = sched_domain_span(sd); + const struct cpumask *sg_span = sched_group_cpus(sg); struct sd_data *sdd = sd->private; struct sched_domain *sibling; int i; - for_each_cpu(i, span) { + for_each_cpu(i, sg_span) { sibling = *per_cpu_ptr(sdd->sd, i); - if (!cpumask_test_cpu(i, sched_domain_span(sibling))) + + /* + * Can happen in the asymmetric case, where these siblings are + * unused. The mask will not be empty because those CPUs that + * do have the top domain _should_ span the domain. + */ + if (!sibling->child) + continue; + + /* If we would not end up here, we can't continue from here */ + if (!cpumask_equal(sg_span, sched_domain_span(sibling->child))) continue; cpumask_set_cpu(i, sched_group_mask(sg)); } + + /* We must not have empty masks here */ + WARN_ON_ONCE(cpumask_empty(sched_group_mask(sg))); } /* @@ -7271,17 +7286,16 @@ * operation in the resume sequence, just build a single sched * domain, ignoring cpusets. */ - num_cpus_frozen--; - if (likely(num_cpus_frozen)) { - partition_sched_domains(1, NULL, NULL); + partition_sched_domains(1, NULL, NULL); + if (--num_cpus_frozen) break; - } /* * This is the last CPU online operation. So fall through and * restore the original sched domains by considering the * cpuset configurations. */ + cpuset_force_rebuild(); case CPU_ONLINE: cpuset_update_active_cpus(true); @@ -8237,11 +8251,20 @@ if (IS_ERR(tg)) return ERR_PTR(-ENOMEM); - sched_online_group(tg, parent); - return &tg->css; } +/* Expose task group only after completing cgroup initialization */ +static int cpu_cgroup_css_online(struct cgroup_subsys_state *css) +{ + struct task_group *tg = css_tg(css); + struct task_group *parent = css_tg(css->parent); + + if (parent) + sched_online_group(tg, parent); + return 0; +} + static void cpu_cgroup_css_released(struct cgroup_subsys_state *css) { struct task_group *tg = css_tg(css); @@ -8616,6 +8639,7 @@ struct cgroup_subsys cpu_cgrp_subsys = { .css_alloc = cpu_cgroup_css_alloc, + .css_online = cpu_cgroup_css_online, .css_released = cpu_cgroup_css_released, .css_free = cpu_cgroup_css_free, .fork = cpu_cgroup_fork, diff -u linux-raspi2-4.4.0/kernel/sched/sched.h linux-raspi2-4.4.0/kernel/sched/sched.h --- linux-raspi2-4.4.0/kernel/sched/sched.h +++ linux-raspi2-4.4.0/kernel/sched/sched.h @@ -1773,13 +1772,0 @@ - -static inline void account_reset_rq(struct rq *rq) -{ -#ifdef CONFIG_IRQ_TIME_ACCOUNTING - rq->prev_irq_time = 0; -#endif -#ifdef CONFIG_PARAVIRT - rq->prev_steal_time = 0; -#endif -#ifdef CONFIG_PARAVIRT_TIME_ACCOUNTING - rq->prev_steal_time_rq = 0; -#endif -} diff -u linux-raspi2-4.4.0/kernel/seccomp.c linux-raspi2-4.4.0/kernel/seccomp.c --- linux-raspi2-4.4.0/kernel/seccomp.c +++ linux-raspi2-4.4.0/kernel/seccomp.c @@ -16,10 +16,12 @@ #include #include #include +#include #include #include #include #include +#include #ifdef CONFIG_HAVE_ARCH_SECCOMP_FILTER #include @@ -40,6 +42,7 @@ * get/put helpers should be used when accessing an instance * outside of a lifetime-guarded section. In general, this * is only needed for handling filters shared across tasks. + * @log: true if all actions except for SECCOMP_RET_ALLOW should be logged * @prev: points to a previously installed, or inherited, filter * @len: the number of instructions in the program * @insnsi: the BPF program instructions to evaluate @@ -56,6 +59,7 @@ */ struct seccomp_filter { atomic_t usage; + bool log; struct seccomp_filter *prev; struct bpf_prog *prog; }; @@ -170,10 +174,14 @@ /** * seccomp_run_filters - evaluates all seccomp filters against @syscall * @syscall: number of the current system call + * @match: stores struct seccomp_filter that resulted in the return value, + * unless filter returned SECCOMP_RET_ALLOW, in which case it will + * be unchanged. * * Returns valid seccomp BPF response codes. */ -static u32 seccomp_run_filters(struct seccomp_data *sd) +static u32 seccomp_run_filters(struct seccomp_data *sd, + struct seccomp_filter **match) { struct seccomp_data sd_local; u32 ret = SECCOMP_RET_ALLOW; @@ -197,8 +205,10 @@ for (; f; f = f->prev) { u32 cur_ret = BPF_PROG_RUN(f->prog, (void *)sd); - if ((cur_ret & SECCOMP_RET_ACTION) < (ret & SECCOMP_RET_ACTION)) + if ((cur_ret & SECCOMP_RET_ACTION) < (ret & SECCOMP_RET_ACTION)) { ret = cur_ret; + *match = f; + } } return ret; } @@ -443,6 +453,10 @@ return ret; } + /* Set log flag, if present. */ + if (flags & SECCOMP_FILTER_FLAG_LOG) + filter->log = true; + /* * If there is an existing filter, make it the prev and don't drop its * task reference. @@ -457,14 +471,19 @@ return 0; } +void __get_seccomp_filter(struct seccomp_filter *filter) +{ + /* Reference count is bounded by the number of total processes. */ + atomic_inc(&filter->usage); +} + /* get_seccomp_filter - increments the reference count of the filter on @tsk */ void get_seccomp_filter(struct task_struct *tsk) { struct seccomp_filter *orig = tsk->seccomp.filter; if (!orig) return; - /* Reference count is bounded by the number of total processes. */ - atomic_inc(&orig->usage); + __get_seccomp_filter(orig); } static inline void seccomp_filter_free(struct seccomp_filter *filter) @@ -475,10 +494,8 @@ } } -/* put_seccomp_filter - decrements the ref count of tsk->seccomp.filter */ -void put_seccomp_filter(struct task_struct *tsk) +static void __put_seccomp_filter(struct seccomp_filter *orig) { - struct seccomp_filter *orig = tsk->seccomp.filter; /* Clean up single-reference branches iteratively. */ while (orig && atomic_dec_and_test(&orig->usage)) { struct seccomp_filter *freeme = orig; @@ -487,6 +504,12 @@ } } +/* put_seccomp_filter - decrements the ref count of tsk->seccomp.filter */ +void put_seccomp_filter(struct task_struct *tsk) +{ + __put_seccomp_filter(tsk->seccomp.filter); +} + /** * seccomp_send_sigsys - signals the task to allow in-process syscall emulation * @syscall: syscall number to send to userland @@ -508,6 +531,58 @@ } #endif /* CONFIG_SECCOMP_FILTER */ +/* For use with seccomp_actions_logged */ +#define SECCOMP_LOG_KILL (1 << 0) +#define SECCOMP_LOG_TRAP (1 << 2) +#define SECCOMP_LOG_ERRNO (1 << 3) +#define SECCOMP_LOG_TRACE (1 << 4) +#define SECCOMP_LOG_LOG (1 << 5) +#define SECCOMP_LOG_ALLOW (1 << 6) + +static u32 seccomp_actions_logged = SECCOMP_LOG_KILL | SECCOMP_LOG_TRAP | + SECCOMP_LOG_ERRNO | SECCOMP_LOG_TRACE | + SECCOMP_LOG_LOG; + +static inline void seccomp_log(unsigned long syscall, long signr, u32 action, + bool requested) +{ + bool log = false; + + switch (action) { + case SECCOMP_RET_ALLOW: + break; + case SECCOMP_RET_TRAP: + log = requested && seccomp_actions_logged & SECCOMP_LOG_TRAP; + break; + case SECCOMP_RET_ERRNO: + log = requested && seccomp_actions_logged & SECCOMP_LOG_ERRNO; + break; + case SECCOMP_RET_TRACE: + log = requested && seccomp_actions_logged & SECCOMP_LOG_TRACE; + break; + case SECCOMP_RET_LOG: + log = seccomp_actions_logged & SECCOMP_LOG_LOG; + break; + case SECCOMP_RET_KILL: + default: + log = seccomp_actions_logged & SECCOMP_LOG_KILL; + } + + /* + * Force an audit message to be emitted when the action is RET_KILL, + * RET_LOG, or the FILTER_FLAG_LOG bit was set and the action is + * allowed to be logged by the admin. + */ + if (log) + return __audit_seccomp(syscall, signr, action); + + /* + * Let the audit subsystem decide if the action should be audited based + * on whether the current task itself is being audited. + */ + return audit_seccomp(syscall, signr, action); +} + /* * Secure computing mode 1 allows only read/write/exit/sigreturn. * To be fully secure this must be combined with rlimit @@ -540,7 +615,7 @@ #ifdef SECCOMP_DEBUG dump_stack(); #endif - audit_seccomp(this_syscall, SIGKILL, SECCOMP_RET_KILL); + seccomp_log(this_syscall, SIGKILL, SECCOMP_RET_KILL, true); do_exit(SIGKILL); } @@ -577,6 +652,7 @@ static u32 __seccomp_phase1_filter(int this_syscall, struct seccomp_data *sd) { u32 filter_ret, action; + struct seccomp_filter *match = NULL; int data; /* @@ -585,7 +661,7 @@ */ rmb(); - filter_ret = seccomp_run_filters(sd); + filter_ret = seccomp_run_filters(sd, &match); data = filter_ret & SECCOMP_RET_DATA; action = filter_ret & SECCOMP_RET_ACTION; @@ -608,19 +684,28 @@ case SECCOMP_RET_TRACE: return filter_ret; /* Save the rest for phase 2. */ + case SECCOMP_RET_LOG: + seccomp_log(this_syscall, 0, action, true); + return SECCOMP_PHASE1_OK; + case SECCOMP_RET_ALLOW: + /* + * Note that the "match" filter will always be NULL for + * this action since SECCOMP_RET_ALLOW is the starting + * state in seccomp_run_filters(). + */ return SECCOMP_PHASE1_OK; case SECCOMP_RET_KILL: default: - audit_seccomp(this_syscall, SIGSYS, action); + seccomp_log(this_syscall, SIGSYS, action, true); do_exit(SIGSYS); } unreachable(); skip: - audit_seccomp(this_syscall, 0, action); + seccomp_log(this_syscall, 0, action, match ? match->log : false); return SECCOMP_PHASE1_SKIP; } #endif @@ -687,7 +772,13 @@ BUG_ON(action != SECCOMP_RET_TRACE); - audit_seccomp(syscall_get_nr(current, regs), 0, action); + /* We don't have access to the filter that was matched in the phase1 + * stage in order to know if logging was requested when the filter was + * loaded. Logging for SECCOMP_RET_TRACE isn't particularly useful so + * hard-coding the _requested_ parameter of seccomp_log() to 'false' + * will suffice for this backport. + */ + seccomp_log(syscall_get_nr(current, regs), 0, action, false); /* Skip these calls if there is no tracer. */ if (!ptrace_event_enabled(current, PTRACE_EVENT_SECCOMP)) { @@ -813,6 +904,28 @@ } #endif +static long seccomp_get_action_avail(const char __user *uaction) +{ + u32 action; + + if (copy_from_user(&action, uaction, sizeof(action))) + return -EFAULT; + + switch (action) { + case SECCOMP_RET_KILL: + case SECCOMP_RET_TRAP: + case SECCOMP_RET_ERRNO: + case SECCOMP_RET_TRACE: + case SECCOMP_RET_LOG: + case SECCOMP_RET_ALLOW: + break; + default: + return -EOPNOTSUPP; + } + + return 0; +} + /* Common entry point for both prctl and syscall. */ static long do_seccomp(unsigned int op, unsigned int flags, const char __user *uargs) @@ -824,6 +937,11 @@ return seccomp_set_mode_strict(); case SECCOMP_SET_MODE_FILTER: return seccomp_set_mode_filter(flags, uargs); + case SECCOMP_GET_ACTION_AVAIL: + if (flags != 0) + return -EINVAL; + + return seccomp_get_action_avail(uargs); default: return -EINVAL; } @@ -927,13 +1045,13 @@ if (!data) goto out; - get_seccomp_filter(task); + __get_seccomp_filter(filter); spin_unlock_irq(&task->sighand->siglock); if (copy_to_user(data, fprog->filter, bpf_classic_proglen(fprog))) ret = -EFAULT; - put_seccomp_filter(task); + __put_seccomp_filter(filter); return ret; out: @@ -943,0 +1062,178 @@ + +#ifdef CONFIG_SYSCTL + +/* Human readable action names for friendly sysctl interaction */ +#define SECCOMP_RET_KILL_NAME "kill" +#define SECCOMP_RET_TRAP_NAME "trap" +#define SECCOMP_RET_ERRNO_NAME "errno" +#define SECCOMP_RET_TRACE_NAME "trace" +#define SECCOMP_RET_LOG_NAME "log" +#define SECCOMP_RET_ALLOW_NAME "allow" + +static const char seccomp_actions_avail[] = SECCOMP_RET_KILL_NAME " " + SECCOMP_RET_TRAP_NAME " " + SECCOMP_RET_ERRNO_NAME " " + SECCOMP_RET_TRACE_NAME " " + SECCOMP_RET_LOG_NAME " " + SECCOMP_RET_ALLOW_NAME; + +struct seccomp_log_name { + u32 log; + const char *name; +}; + +static const struct seccomp_log_name seccomp_log_names[] = { + { SECCOMP_LOG_KILL, SECCOMP_RET_KILL_NAME }, + { SECCOMP_LOG_TRAP, SECCOMP_RET_TRAP_NAME }, + { SECCOMP_LOG_ERRNO, SECCOMP_RET_ERRNO_NAME }, + { SECCOMP_LOG_TRACE, SECCOMP_RET_TRACE_NAME }, + { SECCOMP_LOG_LOG, SECCOMP_RET_LOG_NAME }, + { SECCOMP_LOG_ALLOW, SECCOMP_RET_ALLOW_NAME }, + { } +}; + +static bool seccomp_names_from_actions_logged(char *names, size_t size, + u32 actions_logged) +{ + const struct seccomp_log_name *cur; + bool append_space = false; + + for (cur = seccomp_log_names; cur->name && size; cur++) { + ssize_t ret; + + if (!(actions_logged & cur->log)) + continue; + + if (append_space) { + ret = strscpy(names, " ", size); + if (ret < 0) + return false; + + names += ret; + size -= ret; + } else + append_space = true; + + ret = strscpy(names, cur->name, size); + if (ret < 0) + return false; + + names += ret; + size -= ret; + } + + return true; +} + +static bool seccomp_action_logged_from_name(u32 *action_logged, + const char *name) +{ + const struct seccomp_log_name *cur; + + for (cur = seccomp_log_names; cur->name; cur++) { + if (!strcmp(cur->name, name)) { + *action_logged = cur->log; + return true; + } + } + + return false; +} + +static bool seccomp_actions_logged_from_names(u32 *actions_logged, char *names) +{ + char *name; + + *actions_logged = 0; + while ((name = strsep(&names, " ")) && *name) { + u32 action_logged = 0; + + if (!seccomp_action_logged_from_name(&action_logged, name)) + return false; + + *actions_logged |= action_logged; + } + + return true; +} + +static int seccomp_actions_logged_handler(struct ctl_table *ro_table, int write, + void __user *buffer, size_t *lenp, + loff_t *ppos) +{ + char names[sizeof(seccomp_actions_avail)]; + struct ctl_table table; + int ret; + + if (write && !capable(CAP_SYS_ADMIN)) + return -EPERM; + + memset(names, 0, sizeof(names)); + + if (!write) { + if (!seccomp_names_from_actions_logged(names, sizeof(names), + seccomp_actions_logged)) + return -EINVAL; + } + + table = *ro_table; + table.data = names; + table.maxlen = sizeof(names); + ret = proc_dostring(&table, write, buffer, lenp, ppos); + if (ret) + return ret; + + if (write) { + u32 actions_logged; + + if (!seccomp_actions_logged_from_names(&actions_logged, + table.data)) + return -EINVAL; + + if (actions_logged & SECCOMP_LOG_ALLOW) + return -EINVAL; + + seccomp_actions_logged = actions_logged; + } + + return 0; +} + +static struct ctl_path seccomp_sysctl_path[] = { + { .procname = "kernel", }, + { .procname = "seccomp", }, + { } +}; + +static struct ctl_table seccomp_sysctl_table[] = { + { + .procname = "actions_avail", + .data = (void *) &seccomp_actions_avail, + .maxlen = sizeof(seccomp_actions_avail), + .mode = 0444, + .proc_handler = proc_dostring, + }, + { + .procname = "actions_logged", + .mode = 0644, + .proc_handler = seccomp_actions_logged_handler, + }, + { } +}; + +static int __init seccomp_sysctl_init(void) +{ + struct ctl_table_header *hdr; + + hdr = register_sysctl_paths(seccomp_sysctl_path, seccomp_sysctl_table); + if (!hdr) + pr_warn("seccomp: sysctl registration failed\n"); + else + kmemleak_not_leak(hdr); + + return 0; +} + +device_initcall(seccomp_sysctl_init) + +#endif /* CONFIG_SYSCTL */ diff -u linux-raspi2-4.4.0/kernel/signal.c linux-raspi2-4.4.0/kernel/signal.c --- linux-raspi2-4.4.0/kernel/signal.c +++ linux-raspi2-4.4.0/kernel/signal.c @@ -346,7 +346,7 @@ * fresh group stop. Read comment in do_signal_stop() for details. */ if (!sig->group_stop_count && !(sig->flags & SIGNAL_STOP_STOPPED)) { - sig->flags = SIGNAL_STOP_STOPPED; + signal_set_stop_flags(sig, SIGNAL_STOP_STOPPED); return true; } return false; @@ -845,7 +845,7 @@ * will take ->siglock, notice SIGNAL_CLD_MASK, and * notify its parent. See get_signal_to_deliver(). */ - signal->flags = why | SIGNAL_STOP_CONTINUED; + signal_set_stop_flags(signal, why | SIGNAL_STOP_CONTINUED); signal->group_stop_count = 0; signal->group_exit_code = 0; } diff -u linux-raspi2-4.4.0/kernel/sysctl.c linux-raspi2-4.4.0/kernel/sysctl.c --- linux-raspi2-4.4.0/kernel/sysctl.c +++ linux-raspi2-4.4.0/kernel/sysctl.c @@ -1202,6 +1202,8 @@ .maxlen = sizeof(unsigned int), .mode = 0644, .proc_handler = timer_migration_handler, + .extra1 = &zero, + .extra2 = &one, }, #endif #ifdef CONFIG_BPF_SYSCALL @@ -2110,9 +2112,12 @@ if (write) { if (*negp) return -EINVAL; + if (*lvalp > UINT_MAX) + return -EINVAL; *valp = *lvalp; } else { unsigned int val = *valp; + *negp = false; *lvalp = (unsigned long)val; } return 0; diff -u linux-raspi2-4.4.0/kernel/time/alarmtimer.c linux-raspi2-4.4.0/kernel/time/alarmtimer.c --- linux-raspi2-4.4.0/kernel/time/alarmtimer.c +++ linux-raspi2-4.4.0/kernel/time/alarmtimer.c @@ -616,7 +616,8 @@ * Rate limit to the tick as a hot fix to prevent DOS. Will be * mopped up later. */ - if (ktime_to_ns(timr->it.alarm.interval) < TICK_NSEC) + if (timr->it.alarm.interval.tv64 && + ktime_to_ns(timr->it.alarm.interval) < TICK_NSEC) timr->it.alarm.interval = ktime_set(0, TICK_NSEC); exp = timespec_to_ktime(new_setting->it_value); diff -u linux-raspi2-4.4.0/kernel/trace/ftrace.c linux-raspi2-4.4.0/kernel/trace/ftrace.c --- linux-raspi2-4.4.0/kernel/trace/ftrace.c +++ linux-raspi2-4.4.0/kernel/trace/ftrace.c @@ -2667,13 +2667,14 @@ if (!command || !ftrace_enabled) { /* - * If these are control ops, they still need their - * per_cpu field freed. Since, function tracing is + * If these are dynamic or control ops, they still + * need their data freed. Since, function tracing is * not currently active, we can just free them * without synchronizing all CPUs. */ - if (ops->flags & FTRACE_OPS_FL_CONTROL) - control_ops_free(ops); + if (ops->flags & (FTRACE_OPS_FL_DYNAMIC | FTRACE_OPS_FL_CONTROL)) + goto free_ops; + return 0; } @@ -2728,6 +2729,7 @@ if (ops->flags & (FTRACE_OPS_FL_DYNAMIC | FTRACE_OPS_FL_CONTROL)) { schedule_on_each_cpu(ftrace_sync); + free_ops: arch_ftrace_trampoline_free(ops); if (ops->flags & FTRACE_OPS_FL_CONTROL) @@ -3535,7 +3537,7 @@ int exclude_mod = 0; int found = 0; int ret; - int clear_filter; + int clear_filter = 0; if (func) { func_g.type = filter_parse_regex(func, len, &func_g.search, @@ -4313,9 +4315,6 @@ static char ftrace_graph_notrace_buf[FTRACE_FILTER_SIZE] __initdata; static int ftrace_set_func(unsigned long *array, int *idx, int size, char *buffer); -static unsigned long save_global_trampoline; -static unsigned long save_global_flags; - static int __init set_graph_function(char *str) { strlcpy(ftrace_graph_buf, str, FTRACE_FILTER_SIZE); @@ -5905,17 +5904,6 @@ unregister_pm_notifier(&ftrace_suspend_notifier); unregister_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL); -#ifdef CONFIG_DYNAMIC_FTRACE - /* - * Function graph does not allocate the trampoline, but - * other global_ops do. We need to reset the ALLOC_TRAMP flag - * if one was used. - */ - global_ops.trampoline = save_global_trampoline; - if (save_global_flags & FTRACE_OPS_FL_ALLOC_TRAMP) - global_ops.flags |= FTRACE_OPS_FL_ALLOC_TRAMP; -#endif - out: mutex_unlock(&ftrace_lock); } diff -u linux-raspi2-4.4.0/kernel/trace/trace.c linux-raspi2-4.4.0/kernel/trace/trace.c --- linux-raspi2-4.4.0/kernel/trace/trace.c +++ linux-raspi2-4.4.0/kernel/trace/trace.c @@ -1660,7 +1660,7 @@ TRACE_FLAG_IRQS_NOSUPPORT | #endif ((pc & HARDIRQ_MASK) ? TRACE_FLAG_HARDIRQ : 0) | - ((pc & SOFTIRQ_MASK) ? TRACE_FLAG_SOFTIRQ : 0) | + ((pc & SOFTIRQ_OFFSET) ? TRACE_FLAG_SOFTIRQ : 0) | (tif_need_resched() ? TRACE_FLAG_NEED_RESCHED : 0) | (test_preempt_need_resched() ? TRACE_FLAG_PREEMPT_RESCHED : 0); } @@ -3226,11 +3226,17 @@ /* If this file was open for write, then erase contents */ if ((file->f_mode & FMODE_WRITE) && (file->f_flags & O_TRUNC)) { int cpu = tracing_get_cpu(inode); + struct trace_buffer *trace_buf = &tr->trace_buffer; + +#ifdef CONFIG_TRACER_MAX_TRACE + if (tr->current_trace->print_max) + trace_buf = &tr->max_buffer; +#endif if (cpu == RING_BUFFER_ALL_CPUS) - tracing_reset_online_cpus(&tr->trace_buffer); + tracing_reset_online_cpus(trace_buf); else - tracing_reset(&tr->trace_buffer, cpu); + tracing_reset(trace_buf, cpu); } if (file->f_mode & FMODE_READ) { @@ -4701,7 +4707,7 @@ * * iter->pos will be 0 if we haven't read anything. */ - if (!tracing_is_on() && iter->pos) + if (!tracer_tracing_is_on(iter->tr) && iter->pos) break; mutex_unlock(&iter->mutex); @@ -5237,7 +5243,7 @@ tracing_reset_online_cpus(&tr->trace_buffer); #ifdef CONFIG_TRACER_MAX_TRACE - if (tr->flags & TRACE_ARRAY_FL_GLOBAL && tr->max_buffer.buffer) + if (tr->max_buffer.buffer) ring_buffer_set_clock(tr->max_buffer.buffer, trace_clocks[i].func); tracing_reset_online_cpus(&tr->max_buffer); #endif @@ -6737,6 +6743,7 @@ } kfree(tr->topts); + free_cpumask_var(tr->tracing_cpumask); kfree(tr->name); kfree(tr); diff -u linux-raspi2-4.4.0/kernel/trace/trace_events_filter.c linux-raspi2-4.4.0/kernel/trace/trace_events_filter.c --- linux-raspi2-4.4.0/kernel/trace/trace_events_filter.c +++ linux-raspi2-4.4.0/kernel/trace/trace_events_filter.c @@ -1979,6 +1979,10 @@ if (err && set_str) append_filter_err(ps, filter); } + if (err && !set_str) { + free_event_filter(filter); + filter = NULL; + } create_filter_finish(ps); *filterp = filter; diff -u linux-raspi2-4.4.0/kernel/trace/trace_kprobe.c linux-raspi2-4.4.0/kernel/trace/trace_kprobe.c --- linux-raspi2-4.4.0/kernel/trace/trace_kprobe.c +++ linux-raspi2-4.4.0/kernel/trace/trace_kprobe.c @@ -659,30 +659,25 @@ pr_info("Probe point is not specified.\n"); return -EINVAL; } - if (isdigit(argv[1][0])) { - if (is_return) { - pr_info("Return probe point must be a symbol.\n"); - return -EINVAL; - } - /* an address specified */ - ret = kstrtoul(&argv[1][0], 0, (unsigned long *)&addr); - if (ret) { - pr_info("Failed to parse address.\n"); - return ret; - } - } else { + + /* try to parse an address. if that fails, try to read the + * input as a symbol. */ + if (kstrtoul(argv[1], 0, (unsigned long *)&addr)) { /* a symbol specified */ symbol = argv[1]; /* TODO: support .init module functions */ ret = traceprobe_split_symbol_offset(symbol, &offset); if (ret) { - pr_info("Failed to parse symbol.\n"); + pr_info("Failed to parse either an address or a symbol.\n"); return ret; } if (offset && is_return) { pr_info("Return probe must be used without offset.\n"); return -EINVAL; } + } else if (is_return) { + pr_info("Return probe point must be a symbol.\n"); + return -EINVAL; } argc -= 2; argv += 2; diff -u linux-raspi2-4.4.0/kernel/workqueue.c linux-raspi2-4.4.0/kernel/workqueue.c --- linux-raspi2-4.4.0/kernel/workqueue.c +++ linux-raspi2-4.4.0/kernel/workqueue.c @@ -68,6 +68,7 @@ * attach_mutex to avoid changing binding state while * worker_attach_to_pool() is in progress. */ + POOL_MANAGER_ACTIVE = 1 << 0, /* being managed */ POOL_DISASSOCIATED = 1 << 2, /* cpu can't serve workers */ /* worker flags */ @@ -163,7 +164,6 @@ /* L: hash of busy workers */ /* see manage_workers() for details on the two manager mutexes */ - struct mutex manager_arb; /* manager arbitration */ struct worker *manager; /* L: purely informational */ struct mutex attach_mutex; /* attach/detach exclusion */ struct list_head workers; /* A: attached workers */ @@ -295,6 +295,7 @@ static DEFINE_MUTEX(wq_pool_mutex); /* protects pools and workqueues list */ static DEFINE_SPINLOCK(wq_mayday_lock); /* protects wq->maydays list */ +static DECLARE_WAIT_QUEUE_HEAD(wq_manager_wait); /* wait for manager to go away */ static LIST_HEAD(workqueues); /* PR: list of all workqueues */ static bool workqueue_freezing; /* PL: have wqs started freezing? */ @@ -808,7 +809,7 @@ /* Do we have too many workers and should some go away? */ static bool too_many_workers(struct worker_pool *pool) { - bool managing = mutex_is_locked(&pool->manager_arb); + bool managing = pool->flags & POOL_MANAGER_ACTIVE; int nr_idle = pool->nr_idle + managing; /* manager is considered idle */ int nr_busy = pool->nr_workers - nr_idle; @@ -1952,24 +1953,17 @@ { struct worker_pool *pool = worker->pool; - /* - * Anyone who successfully grabs manager_arb wins the arbitration - * and becomes the manager. mutex_trylock() on pool->manager_arb - * failure while holding pool->lock reliably indicates that someone - * else is managing the pool and the worker which failed trylock - * can proceed to executing work items. This means that anyone - * grabbing manager_arb is responsible for actually performing - * manager duties. If manager_arb is grabbed and released without - * actual management, the pool may stall indefinitely. - */ - if (!mutex_trylock(&pool->manager_arb)) + if (pool->flags & POOL_MANAGER_ACTIVE) return false; + + pool->flags |= POOL_MANAGER_ACTIVE; pool->manager = worker; maybe_create_worker(pool); pool->manager = NULL; - mutex_unlock(&pool->manager_arb); + pool->flags &= ~POOL_MANAGER_ACTIVE; + wake_up(&wq_manager_wait); return true; } @@ -3119,7 +3113,6 @@ setup_timer(&pool->mayday_timer, pool_mayday_timeout, (unsigned long)pool); - mutex_init(&pool->manager_arb); mutex_init(&pool->attach_mutex); INIT_LIST_HEAD(&pool->workers); @@ -3189,13 +3182,15 @@ hash_del(&pool->hash_node); /* - * Become the manager and destroy all workers. Grabbing - * manager_arb prevents @pool's workers from blocking on - * attach_mutex. + * Become the manager and destroy all workers. This prevents + * @pool's workers from blocking on attach_mutex. We're the last + * manager and @pool gets freed with the flag set. */ - mutex_lock(&pool->manager_arb); - spin_lock_irq(&pool->lock); + wait_event_lock_irq(wq_manager_wait, + !(pool->flags & POOL_MANAGER_ACTIVE), pool->lock); + pool->flags |= POOL_MANAGER_ACTIVE; + while ((worker = first_idle_worker(pool))) destroy_worker(worker); WARN_ON(pool->nr_workers || pool->nr_idle); @@ -3209,8 +3204,6 @@ if (pool->detach_completion) wait_for_completion(pool->detach_completion); - mutex_unlock(&pool->manager_arb); - /* shut down the timers */ del_timer_sync(&pool->idle_timer); del_timer_sync(&pool->mayday_timer); @@ -3647,8 +3640,12 @@ return -EINVAL; /* creating multiple pwqs breaks ordering guarantee */ - if (WARN_ON((wq->flags & __WQ_ORDERED) && !list_empty(&wq->pwqs))) - return -EINVAL; + if (!list_empty(&wq->pwqs)) { + if (WARN_ON(wq->flags & __WQ_ORDERED_EXPLICIT)) + return -EINVAL; + + wq->flags &= ~__WQ_ORDERED; + } ctx = apply_wqattrs_prepare(wq, attrs); @@ -3834,6 +3831,16 @@ struct workqueue_struct *wq; struct pool_workqueue *pwq; + /* + * Unbound && max_active == 1 used to imply ordered, which is no + * longer the case on NUMA machines due to per-node pools. While + * alloc_ordered_workqueue() is the right way to create an ordered + * workqueue, keep the previous behavior to avoid subtle breakages + * on NUMA. + */ + if ((flags & WQ_UNBOUND) && max_active == 1) + flags |= __WQ_ORDERED; + /* see the comment above the definition of WQ_POWER_EFFICIENT */ if ((flags & WQ_POWER_EFFICIENT) && wq_power_efficient) flags |= WQ_UNBOUND; @@ -4022,13 +4029,14 @@ struct pool_workqueue *pwq; /* disallow meddling with max_active for ordered workqueues */ - if (WARN_ON(wq->flags & __WQ_ORDERED)) + if (WARN_ON(wq->flags & __WQ_ORDERED_EXPLICIT)) return; max_active = wq_clamp_max_active(max_active, wq->flags, wq->name); mutex_lock(&wq->mutex); + wq->flags &= ~__WQ_ORDERED; wq->saved_max_active = max_active; for_each_pwq(pwq, wq) @@ -5154,7 +5162,7 @@ * attributes breaks ordering guarantee. Disallow exposing ordered * workqueues. */ - if (WARN_ON(wq->flags & __WQ_ORDERED)) + if (WARN_ON(wq->flags & __WQ_ORDERED_EXPLICIT)) return -EINVAL; wq->wq_dev = wq_dev = kzalloc(sizeof(*wq_dev), GFP_KERNEL); diff -u linux-raspi2-4.4.0/lib/asn1_decoder.c linux-raspi2-4.4.0/lib/asn1_decoder.c --- linux-raspi2-4.4.0/lib/asn1_decoder.c +++ linux-raspi2-4.4.0/lib/asn1_decoder.c @@ -227,7 +227,7 @@ hdr = 2; /* Extract a tag from the data */ - if (unlikely(dp >= datalen - 1)) + if (unlikely(datalen - dp < 2)) goto data_overrun_error; tag = data[dp++]; if (unlikely((tag & 0x1f) == ASN1_LONG_TAG)) @@ -273,7 +273,7 @@ int n = len - 0x80; if (unlikely(n > 2)) goto length_too_long; - if (unlikely(dp >= datalen - n)) + if (unlikely(n > datalen - dp)) goto data_overrun_error; hdr += n; for (len = 0; n > 0; n--) { @@ -283,6 +283,9 @@ if (unlikely(len > datalen - dp)) goto data_overrun_error; } + } else { + if (unlikely(len > datalen - dp)) + goto data_overrun_error; } if (flags & FLAG_CONS) { diff -u linux-raspi2-4.4.0/lib/assoc_array.c linux-raspi2-4.4.0/lib/assoc_array.c --- linux-raspi2-4.4.0/lib/assoc_array.c +++ linux-raspi2-4.4.0/lib/assoc_array.c @@ -598,21 +598,31 @@ if ((edit->segment_cache[ASSOC_ARRAY_FAN_OUT] ^ base_seg) == 0) goto all_leaves_cluster_together; - /* Otherwise we can just insert a new node ahead of the old - * one. + /* Otherwise all the old leaves cluster in the same slot, but + * the new leaf wants to go into a different slot - so we + * create a new node (n0) to hold the new leaf and a pointer to + * a new node (n1) holding all the old leaves. + * + * This can be done by falling through to the node splitting + * path. */ - goto present_leaves_cluster_but_not_new_leaf; + pr_devel("present leaves cluster but not new leaf\n"); } split_node: pr_devel("split node\n"); - /* We need to split the current node; we know that the node doesn't - * simply contain a full set of leaves that cluster together (it - * contains meta pointers and/or non-clustering leaves). + /* We need to split the current node. The node must contain anything + * from a single leaf (in the one leaf case, this leaf will cluster + * with the new leaf) and the rest meta-pointers, to all leaves, some + * of which may cluster. + * + * It won't contain the case in which all the current leaves plus the + * new leaves want to cluster in the same slot. * * We need to expel at least two leaves out of a set consisting of the - * leaves in the node and the new leaf. + * leaves in the node and the new leaf. The current meta pointers can + * just be copied as they shouldn't cluster with any of the leaves. * * We need a new node (n0) to replace the current one and a new node to * take the expelled nodes (n1). @@ -717,33 +727,6 @@ pr_devel("<--%s() = ok [split node]\n", __func__); return true; -present_leaves_cluster_but_not_new_leaf: - /* All the old leaves cluster in the same slot, but the new leaf wants - * to go into a different slot, so we create a new node to hold the new - * leaf and a pointer to a new node holding all the old leaves. - */ - pr_devel("present leaves cluster but not new leaf\n"); - - new_n0->back_pointer = node->back_pointer; - new_n0->parent_slot = node->parent_slot; - new_n0->nr_leaves_on_branch = node->nr_leaves_on_branch; - new_n1->back_pointer = assoc_array_node_to_ptr(new_n0); - new_n1->parent_slot = edit->segment_cache[0]; - new_n1->nr_leaves_on_branch = node->nr_leaves_on_branch; - edit->adjust_count_on = new_n0; - - for (i = 0; i < ASSOC_ARRAY_FAN_OUT; i++) - new_n1->slots[i] = node->slots[i]; - - new_n0->slots[edit->segment_cache[0]] = assoc_array_node_to_ptr(new_n0); - edit->leaf_p = &new_n0->slots[edit->segment_cache[ASSOC_ARRAY_FAN_OUT]]; - - edit->set[0].ptr = &assoc_array_ptr_to_node(node->back_pointer)->slots[node->parent_slot]; - edit->set[0].to = assoc_array_node_to_ptr(new_n0); - edit->excised_meta[0] = assoc_array_node_to_ptr(node); - pr_devel("<--%s() = ok [insert node before]\n", __func__); - return true; - all_leaves_cluster_together: /* All the leaves, new and old, want to cluster together in this node * in the same slot, so we have to replace this node with a shortcut to diff -u linux-raspi2-4.4.0/mm/compaction.c linux-raspi2-4.4.0/mm/compaction.c --- linux-raspi2-4.4.0/mm/compaction.c +++ linux-raspi2-4.4.0/mm/compaction.c @@ -1271,7 +1271,8 @@ */ static enum compact_result __compaction_suitable(struct zone *zone, int order, unsigned int alloc_flags, - int classzone_idx) + int classzone_idx, + unsigned long wmark_target) { int fragindex; unsigned long watermark; @@ -1294,7 +1295,8 @@ * allocated and for a short time, the footprint is higher */ watermark += (2UL << order); - if (!zone_watermark_ok(zone, 0, watermark, classzone_idx, alloc_flags)) + if (!__zone_watermark_ok(zone, 0, watermark, classzone_idx, + alloc_flags, wmark_target)) return COMPACT_SKIPPED; /* @@ -1321,7 +1323,8 @@ { enum compact_result ret; - ret = __compaction_suitable(zone, order, alloc_flags, classzone_idx); + ret = __compaction_suitable(zone, order, alloc_flags, classzone_idx, + zone_page_state(zone, NR_FREE_PAGES)); trace_mm_compaction_suitable(zone, order, ret); if (ret == COMPACT_NOT_SUITABLE_ZONE) ret = COMPACT_SKIPPED; @@ -1329,6 +1332,39 @@ return ret; } +bool compaction_zonelist_suitable(struct alloc_context *ac, int order, + int alloc_flags) +{ + struct zone *zone; + struct zoneref *z; + + /* + * Make sure at least one zone would pass __compaction_suitable if we continue + * retrying the reclaim. + */ + for_each_zone_zonelist_nodemask(zone, z, ac->zonelist, ac->high_zoneidx, + ac->nodemask) { + unsigned long available; + enum compact_result compact_result; + + /* + * Do not consider all the reclaimable memory because we do not + * want to trash just for a single high order allocation which + * is even not guaranteed to appear even if __compaction_suitable + * is happy about the watermark check. + */ + available = zone_reclaimable_pages(zone) / order; + available += zone_page_state_snapshot(zone, NR_FREE_PAGES); + compact_result = __compaction_suitable(zone, order, alloc_flags, + ac->classzone_idx, available); + if (compact_result != COMPACT_SKIPPED && + compact_result != COMPACT_NOT_SUITABLE_ZONE) + return true; + } + + return false; +} + static enum compact_result compact_zone(struct zone *zone, struct compact_control *cc) { enum compact_result ret; diff -u linux-raspi2-4.4.0/mm/huge_memory.c linux-raspi2-4.4.0/mm/huge_memory.c --- linux-raspi2-4.4.0/mm/huge_memory.c +++ linux-raspi2-4.4.0/mm/huge_memory.c @@ -1304,17 +1304,11 @@ VM_BUG_ON_PAGE(!PageHead(page), page); if (flags & FOLL_TOUCH) { pmd_t _pmd; - /* - * We should set the dirty bit only for FOLL_WRITE but - * for now the dirty bit in the pmd is meaningless. - * And if the dirty bit will become meaningful and - * we'll only set it with FOLL_WRITE, an atomic - * set_bit will be required on the pmd to set the - * young bit, instead of the current set_pmd_at. - */ - _pmd = pmd_mkyoung(pmd_mkdirty(*pmd)); + _pmd = pmd_mkyoung(*pmd); + if (flags & FOLL_WRITE) + _pmd = pmd_mkdirty(_pmd); if (pmdp_set_access_flags(vma, addr & HPAGE_PMD_MASK, - pmd, _pmd, 1)) + pmd, _pmd, flags & FOLL_WRITE)) update_mmu_cache_pmd(vma, addr, pmd); } if ((flags & FOLL_MLOCK) && (vma->vm_flags & VM_LOCKED)) { diff -u linux-raspi2-4.4.0/mm/internal.h linux-raspi2-4.4.0/mm/internal.h --- linux-raspi2-4.4.0/mm/internal.h +++ linux-raspi2-4.4.0/mm/internal.h @@ -454,6 +454,7 @@ #ifdef CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH void try_to_unmap_flush(void); void try_to_unmap_flush_dirty(void); +void flush_tlb_batched_pending(struct mm_struct *mm); #else static inline void try_to_unmap_flush(void) { @@ -462,5 +463,7 @@ { } - +static inline void flush_tlb_batched_pending(struct mm_struct *mm) +{ +} #endif /* CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH */ #endif /* __MM_INTERNAL_H */ diff -u linux-raspi2-4.4.0/mm/ksm.c linux-raspi2-4.4.0/mm/ksm.c --- linux-raspi2-4.4.0/mm/ksm.c +++ linux-raspi2-4.4.0/mm/ksm.c @@ -126,9 +126,12 @@ * struct stable_node - node of the stable rbtree * @node: rb node of this ksm page in the stable tree * @head: (overlaying parent) &migrate_nodes indicates temporarily on that list + * @hlist_dup: linked into the stable_node->hlist with a stable_node chain * @list: linked into migrate_nodes, pending placement in the proper node tree * @hlist: hlist head of rmap_items using this ksm page * @kpfn: page frame number of this ksm page (perhaps temporarily on wrong nid) + * @chain_prune_time: time of the last full garbage collection + * @rmap_hlist_len: number of rmap_item entries in hlist or STABLE_NODE_CHAIN * @nid: NUMA node id of stable tree in which linked (may not match kpfn) */ struct stable_node { @@ -136,11 +139,24 @@ struct rb_node node; /* when node of stable tree */ struct { /* when listed for migration */ struct list_head *head; - struct list_head list; + struct { + struct hlist_node hlist_dup; + struct list_head list; + }; }; }; struct hlist_head hlist; - unsigned long kpfn; + union { + unsigned long kpfn; + unsigned long chain_prune_time; + }; + /* + * STABLE_NODE_CHAIN can be any negative number in + * rmap_hlist_len negative range, but better not -1 to be able + * to reliably detect underflows. + */ +#define STABLE_NODE_CHAIN -1024 + int rmap_hlist_len; #ifdef CONFIG_NUMA int nid; #endif @@ -190,6 +206,7 @@ /* Recently migrated nodes of stable tree, pending proper placement */ static LIST_HEAD(migrate_nodes); +#define STABLE_NODE_DUP_HEAD ((struct list_head *)&migrate_nodes.prev) #define MM_SLOTS_HASH_BITS 10 static DEFINE_HASHTABLE(mm_slots_hash, MM_SLOTS_HASH_BITS); @@ -217,6 +234,18 @@ /* The number of rmap_items in use: to calculate pages_volatile */ static unsigned long ksm_rmap_items; +/* The number of stable_node chains */ +static unsigned long ksm_stable_node_chains; + +/* The number of stable_node dups linked to the stable_node chains */ +static unsigned long ksm_stable_node_dups; + +/* Delay in pruning stale stable_node_dups in the stable_node_chains */ +static int ksm_stable_node_chains_prune_millisecs = 2000; + +/* Maximum number of page slots sharing a stable node */ +static int ksm_max_page_sharing = 256; + /* Number of pages ksmd should scan in one batch */ static unsigned int ksm_thread_pages_to_scan = 100; @@ -279,6 +308,45 @@ mm_slot_cache = NULL; } +static __always_inline bool is_stable_node_chain(struct stable_node *chain) +{ + return chain->rmap_hlist_len == STABLE_NODE_CHAIN; +} + +static __always_inline bool is_stable_node_dup(struct stable_node *dup) +{ + return dup->head == STABLE_NODE_DUP_HEAD; +} + +static inline void stable_node_chain_add_dup(struct stable_node *dup, + struct stable_node *chain) +{ + VM_BUG_ON(is_stable_node_dup(dup)); + dup->head = STABLE_NODE_DUP_HEAD; + VM_BUG_ON(!is_stable_node_chain(chain)); + hlist_add_head(&dup->hlist_dup, &chain->hlist); + ksm_stable_node_dups++; +} + +static inline void __stable_node_dup_del(struct stable_node *dup) +{ + VM_BUG_ON(!is_stable_node_dup(dup)); + hlist_del(&dup->hlist_dup); + ksm_stable_node_dups--; +} + +static inline void stable_node_dup_del(struct stable_node *dup) +{ + VM_BUG_ON(is_stable_node_chain(dup)); + if (is_stable_node_dup(dup)) + __stable_node_dup_del(dup); + else + rb_erase(&dup->node, root_stable_tree + NUMA(dup->nid)); +#ifdef CONFIG_DEBUG_VM + dup->head = NULL; +#endif +} + static inline struct rmap_item *alloc_rmap_item(void) { struct rmap_item *rmap_item; @@ -304,6 +372,8 @@ static inline void free_stable_node(struct stable_node *stable_node) { + VM_BUG_ON(stable_node->rmap_hlist_len && + !is_stable_node_chain(stable_node)); kmem_cache_free(stable_node_cache, stable_node); } @@ -494,25 +564,82 @@ return ksm_merge_across_nodes ? 0 : NUMA(pfn_to_nid(kpfn)); } +static struct stable_node *alloc_stable_node_chain(struct stable_node *dup, + struct rb_root *root) +{ + struct stable_node *chain = alloc_stable_node(); + VM_BUG_ON(is_stable_node_chain(dup)); + if (likely(chain)) { + INIT_HLIST_HEAD(&chain->hlist); + chain->chain_prune_time = jiffies; + chain->rmap_hlist_len = STABLE_NODE_CHAIN; +#if defined (CONFIG_DEBUG_VM) && defined(CONFIG_NUMA) + chain->nid = -1; /* debug */ +#endif + ksm_stable_node_chains++; + + /* + * Put the stable node chain in the first dimension of + * the stable tree and at the same time remove the old + * stable node. + */ + rb_replace_node(&dup->node, &chain->node, root); + + /* + * Move the old stable node to the second dimension + * queued in the hlist_dup. The invariant is that all + * dup stable_nodes in the chain->hlist point to pages + * that are wrprotected and have the exact same + * content. + */ + stable_node_chain_add_dup(dup, chain); + } + return chain; +} + +static inline void free_stable_node_chain(struct stable_node *chain, + struct rb_root *root) +{ + rb_erase(&chain->node, root); + free_stable_node(chain); + ksm_stable_node_chains--; +} + static void remove_node_from_stable_tree(struct stable_node *stable_node) { struct rmap_item *rmap_item; + /* check it's not STABLE_NODE_CHAIN or negative */ + BUG_ON(stable_node->rmap_hlist_len < 0); + hlist_for_each_entry(rmap_item, &stable_node->hlist, hlist) { if (rmap_item->hlist.next) ksm_pages_sharing--; else ksm_pages_shared--; + VM_BUG_ON(stable_node->rmap_hlist_len <= 0); + stable_node->rmap_hlist_len--; put_anon_vma(rmap_item->anon_vma); rmap_item->address &= PAGE_MASK; cond_resched(); } + /* + * We need the second aligned pointer of the migrate_nodes + * list_head to stay clear from the rb_parent_color union + * (aligned and different than any node) and also different + * from &migrate_nodes. This will verify that future list.h changes + * don't break STABLE_NODE_DUP_HEAD. + */ +#if GCC_VERSION >= 40903 /* only recent gcc can handle it */ + BUILD_BUG_ON(STABLE_NODE_DUP_HEAD <= &migrate_nodes); + BUILD_BUG_ON(STABLE_NODE_DUP_HEAD >= &migrate_nodes + 1); +#endif + if (stable_node->head == &migrate_nodes) list_del(&stable_node->list); else - rb_erase(&stable_node->node, - root_stable_tree + NUMA(stable_node->nid)); + stable_node_dup_del(stable_node); free_stable_node(stable_node); } @@ -631,6 +758,8 @@ ksm_pages_sharing--; else ksm_pages_shared--; + VM_BUG_ON(stable_node->rmap_hlist_len <= 0); + stable_node->rmap_hlist_len--; put_anon_vma(rmap_item->anon_vma); rmap_item->address &= PAGE_MASK; @@ -739,6 +868,31 @@ return err; } +static int remove_stable_node_chain(struct stable_node *stable_node, + struct rb_root *root) +{ + struct stable_node *dup; + struct hlist_node *hlist_safe; + + if (!is_stable_node_chain(stable_node)) { + VM_BUG_ON(is_stable_node_dup(stable_node)); + if (remove_stable_node(stable_node)) + return true; + else + return false; + } + + hlist_for_each_entry_safe(dup, hlist_safe, + &stable_node->hlist, hlist_dup) { + VM_BUG_ON(!is_stable_node_dup(dup)); + if (remove_stable_node(dup)) + return true; + } + BUG_ON(!hlist_empty(&stable_node->hlist)); + free_stable_node_chain(stable_node, root); + return false; +} + static int remove_all_stable_nodes(void) { struct stable_node *stable_node; @@ -750,7 +904,8 @@ while (root_stable_tree[nid].rb_node) { stable_node = rb_entry(root_stable_tree[nid].rb_node, struct stable_node, node); - if (remove_stable_node(stable_node)) { + if (remove_stable_node_chain(stable_node, + root_stable_tree + nid)) { err = -EBUSY; break; /* proceed to next nid */ } @@ -1137,6 +1292,214 @@ return err ? NULL : page; } +static __always_inline +bool __is_page_sharing_candidate(struct stable_node *stable_node, int offset) +{ + VM_BUG_ON(stable_node->rmap_hlist_len < 0); + /* + * Check that at least one mapping still exists, otherwise + * there's no much point to merge and share with this + * stable_node, as the underlying tree_page of the other + * sharer is going to be freed soon. + */ + return stable_node->rmap_hlist_len && + stable_node->rmap_hlist_len + offset < ksm_max_page_sharing; +} + +static __always_inline +bool is_page_sharing_candidate(struct stable_node *stable_node) +{ + return __is_page_sharing_candidate(stable_node, 0); +} + +struct page *stable_node_dup(struct stable_node **_stable_node_dup, + struct stable_node **_stable_node, + struct rb_root *root, + bool prune_stale_stable_nodes) +{ + struct stable_node *dup, *found = NULL, *stable_node = *_stable_node; + struct hlist_node *hlist_safe; + struct page *_tree_page, *tree_page = NULL; + int nr = 0; + int found_rmap_hlist_len; + + if (!prune_stale_stable_nodes || + time_before(jiffies, stable_node->chain_prune_time + + msecs_to_jiffies( + ksm_stable_node_chains_prune_millisecs))) + prune_stale_stable_nodes = false; + else + stable_node->chain_prune_time = jiffies; + + hlist_for_each_entry_safe(dup, hlist_safe, + &stable_node->hlist, hlist_dup) { + cond_resched(); + /* + * We must walk all stable_node_dup to prune the stale + * stable nodes during lookup. + * + * get_ksm_page can drop the nodes from the + * stable_node->hlist if they point to freed pages + * (that's why we do a _safe walk). The "dup" + * stable_node parameter itself will be freed from + * under us if it returns NULL. + */ + _tree_page = get_ksm_page(dup, false); + if (!_tree_page) + continue; + nr += 1; + if (is_page_sharing_candidate(dup)) { + if (!found || + dup->rmap_hlist_len > found_rmap_hlist_len) { + if (found) + put_page(tree_page); + found = dup; + found_rmap_hlist_len = found->rmap_hlist_len; + tree_page = _tree_page; + + /* skip put_page for found dup */ + if (!prune_stale_stable_nodes) + break; + continue; + } + } + put_page(_tree_page); + } + + if (found) { + /* + * nr is counting all dups in the chain only if + * prune_stale_stable_nodes is true, otherwise we may + * break the loop at nr == 1 even if there are + * multiple entries. + */ + if (prune_stale_stable_nodes && nr == 1) { + /* + * If there's not just one entry it would + * corrupt memory, better BUG_ON. In KSM + * context with no lock held it's not even + * fatal. + */ + BUG_ON(stable_node->hlist.first->next); + + /* + * There's just one entry and it is below the + * deduplication limit so drop the chain. + */ + rb_replace_node(&stable_node->node, &found->node, + root); + free_stable_node(stable_node); + ksm_stable_node_chains--; + ksm_stable_node_dups--; + /* + * NOTE: the caller depends on the stable_node + * to be equal to stable_node_dup if the chain + * was collapsed. + */ + *_stable_node = found; + /* + * Just for robustneess as stable_node is + * otherwise left as a stable pointer, the + * compiler shall optimize it away at build + * time. + */ + stable_node = NULL; + } else if (stable_node->hlist.first != &found->hlist_dup && + __is_page_sharing_candidate(found, 1)) { + /* + * If the found stable_node dup can accept one + * more future merge (in addition to the one + * that is underway) and is not at the head of + * the chain, put it there so next search will + * be quicker in the !prune_stale_stable_nodes + * case. + * + * NOTE: it would be inaccurate to use nr > 1 + * instead of checking the hlist.first pointer + * directly, because in the + * prune_stale_stable_nodes case "nr" isn't + * the position of the found dup in the chain, + * but the total number of dups in the chain. + */ + hlist_del(&found->hlist_dup); + hlist_add_head(&found->hlist_dup, + &stable_node->hlist); + } + } + + *_stable_node_dup = found; + return tree_page; +} + +static struct stable_node *stable_node_dup_any(struct stable_node *stable_node, + struct rb_root *root) +{ + if (!is_stable_node_chain(stable_node)) + return stable_node; + if (hlist_empty(&stable_node->hlist)) { + free_stable_node_chain(stable_node, root); + return NULL; + } + return hlist_entry(stable_node->hlist.first, + typeof(*stable_node), hlist_dup); +} + +/* + * Like for get_ksm_page, this function can free the *_stable_node and + * *_stable_node_dup if the returned tree_page is NULL. + * + * It can also free and overwrite *_stable_node with the found + * stable_node_dup if the chain is collapsed (in which case + * *_stable_node will be equal to *_stable_node_dup like if the chain + * never existed). It's up to the caller to verify tree_page is not + * NULL before dereferencing *_stable_node or *_stable_node_dup. + * + * *_stable_node_dup is really a second output parameter of this + * function and will be overwritten in all cases, the caller doesn't + * need to initialize it. + */ +static struct page *__stable_node_chain(struct stable_node **_stable_node_dup, + struct stable_node **_stable_node, + struct rb_root *root, + bool prune_stale_stable_nodes) +{ + struct stable_node *stable_node = *_stable_node; + if (!is_stable_node_chain(stable_node)) { + if (is_page_sharing_candidate(stable_node)) { + *_stable_node_dup = stable_node; + return get_ksm_page(stable_node, false); + } + /* + * _stable_node_dup set to NULL means the stable_node + * reached the ksm_max_page_sharing limit. + */ + *_stable_node_dup = NULL; + return NULL; + } + return stable_node_dup(_stable_node_dup, _stable_node, root, + prune_stale_stable_nodes); +} + +static __always_inline struct page *chain_prune(struct stable_node **s_n_d, + struct stable_node **s_n, + struct rb_root *root) +{ + return __stable_node_chain(s_n_d, s_n, root, true); +} + +static __always_inline struct page *chain(struct stable_node **s_n_d, + struct stable_node *s_n, + struct rb_root *root) +{ + struct stable_node *old_stable_node = s_n; + struct page *tree_page; + + tree_page = __stable_node_chain(s_n_d, &s_n, root, false); + /* not pruning dups so s_n cannot have changed */ + VM_BUG_ON(s_n != old_stable_node); + return tree_page; +} + /* * stable_tree_search - search for page inside the stable tree * @@ -1152,7 +1515,7 @@ struct rb_root *root; struct rb_node **new; struct rb_node *parent; - struct stable_node *stable_node; + struct stable_node *stable_node, *stable_node_dup, *stable_node_any; struct stable_node *page_node; page_node = page_stable_node(page); @@ -1174,7 +1537,44 @@ cond_resched(); stable_node = rb_entry(*new, struct stable_node, node); - tree_page = get_ksm_page(stable_node, false); + stable_node_any = NULL; + tree_page = chain_prune(&stable_node_dup, &stable_node, root); + /* + * NOTE: stable_node may have been freed by + * chain_prune() if the returned stable_node_dup is + * not NULL. stable_node_dup may have been inserted in + * the rbtree instead as a regular stable_node (in + * order to collapse the stable_node chain if a single + * stable_node dup was found in it). In such case the + * stable_node is overwritten by the calleee to point + * to the stable_node_dup that was collapsed in the + * stable rbtree and stable_node will be equal to + * stable_node_dup like if the chain never existed. + */ + if (!stable_node_dup) { + /* + * Either all stable_node dups were full in + * this stable_node chain, or this chain was + * empty and should be rb_erased. + */ + stable_node_any = stable_node_dup_any(stable_node, + root); + if (!stable_node_any) { + /* rb_erase just run */ + goto again; + } + /* + * Take any of the stable_node dups page of + * this stable_node chain to let the tree walk + * continue. All KSM pages belonging to the + * stable_node dups in a stable_node chain + * have the same content and they're + * wrprotected at all times. Any will work + * fine to continue the walk. + */ + tree_page = get_ksm_page(stable_node_any, false); + } + VM_BUG_ON(!stable_node_dup ^ !!stable_node_any); if (!tree_page) { /* * If we walked over a stale stable_node, @@ -1197,6 +1597,34 @@ else if (ret > 0) new = &parent->rb_right; else { + if (page_node) { + VM_BUG_ON(page_node->head != &migrate_nodes); + /* + * Test if the migrated page should be merged + * into a stable node dup. If the mapcount is + * 1 we can migrate it with another KSM page + * without adding it to the chain. + */ + if (page_mapcount(page) > 1) + goto chain_append; + } + + if (!stable_node_dup) { + /* + * If the stable_node is a chain and + * we got a payload match in memcmp + * but we cannot merge the scanned + * page in any of the existing + * stable_node dups because they're + * all full, we need to wait the + * scanned page to find itself a match + * in the unstable tree to create a + * brand new KSM page to add later to + * the dups of this stable_node. + */ + return NULL; + } + /* * Lock and unlock the stable_node's page (which * might already have been migrated) so that page @@ -1204,23 +1632,21 @@ * It would be more elegant to return stable_node * than kpage, but that involves more changes. */ - tree_page = get_ksm_page(stable_node, true); - if (tree_page) { - unlock_page(tree_page); - if (get_kpfn_nid(stable_node->kpfn) != - NUMA(stable_node->nid)) { - put_page(tree_page); - goto replace; - } - return tree_page; - } - /* - * There is now a place for page_node, but the tree may - * have been rebalanced, so re-evaluate parent and new. - */ - if (page_node) + tree_page = get_ksm_page(stable_node_dup, true); + if (unlikely(!tree_page)) + /* + * The tree may have been rebalanced, + * so re-evaluate parent and new. + */ goto again; - return NULL; + unlock_page(tree_page); + + if (get_kpfn_nid(stable_node_dup->kpfn) != + NUMA(stable_node_dup->nid)) { + put_page(tree_page); + goto replace; + } + return tree_page; } } @@ -1231,22 +1657,95 @@ DO_NUMA(page_node->nid = nid); rb_link_node(&page_node->node, parent, new); rb_insert_color(&page_node->node, root); - get_page(page); - return page; +out: + if (is_page_sharing_candidate(page_node)) { + get_page(page); + return page; + } else + return NULL; replace: - if (page_node) { - list_del(&page_node->list); - DO_NUMA(page_node->nid = nid); - rb_replace_node(&stable_node->node, &page_node->node, root); - get_page(page); + /* + * If stable_node was a chain and chain_prune collapsed it, + * stable_node has been updated to be the new regular + * stable_node. A collapse of the chain is indistinguishable + * from the case there was no chain in the stable + * rbtree. Otherwise stable_node is the chain and + * stable_node_dup is the dup to replace. + */ + if (stable_node_dup == stable_node) { + VM_BUG_ON(is_stable_node_chain(stable_node_dup)); + VM_BUG_ON(is_stable_node_dup(stable_node_dup)); + /* there is no chain */ + if (page_node) { + VM_BUG_ON(page_node->head != &migrate_nodes); + list_del(&page_node->list); + DO_NUMA(page_node->nid = nid); + rb_replace_node(&stable_node_dup->node, + &page_node->node, + root); + if (is_page_sharing_candidate(page_node)) + get_page(page); + else + page = NULL; + } else { + rb_erase(&stable_node_dup->node, root); + page = NULL; + } } else { - rb_erase(&stable_node->node, root); - page = NULL; + VM_BUG_ON(!is_stable_node_chain(stable_node)); + __stable_node_dup_del(stable_node_dup); + if (page_node) { + VM_BUG_ON(page_node->head != &migrate_nodes); + list_del(&page_node->list); + DO_NUMA(page_node->nid = nid); + stable_node_chain_add_dup(page_node, stable_node); + if (is_page_sharing_candidate(page_node)) + get_page(page); + else + page = NULL; + } else { + page = NULL; + } } - stable_node->head = &migrate_nodes; - list_add(&stable_node->list, stable_node->head); + stable_node_dup->head = &migrate_nodes; + list_add(&stable_node_dup->list, stable_node_dup->head); return page; + +chain_append: + /* stable_node_dup could be null if it reached the limit */ + if (!stable_node_dup) + stable_node_dup = stable_node_any; + /* + * If stable_node was a chain and chain_prune collapsed it, + * stable_node has been updated to be the new regular + * stable_node. A collapse of the chain is indistinguishable + * from the case there was no chain in the stable + * rbtree. Otherwise stable_node is the chain and + * stable_node_dup is the dup to replace. + */ + if (stable_node_dup == stable_node) { + VM_BUG_ON(is_stable_node_chain(stable_node_dup)); + VM_BUG_ON(is_stable_node_dup(stable_node_dup)); + /* chain is missing so create it */ + stable_node = alloc_stable_node_chain(stable_node_dup, + root); + if (!stable_node) + return NULL; + } + /* + * Add this stable_node dup that was + * migrated to the stable_node chain + * of the current nid for this page + * content. + */ + VM_BUG_ON(!is_stable_node_chain(stable_node)); + VM_BUG_ON(!is_stable_node_dup(stable_node_dup)); + VM_BUG_ON(page_node->head != &migrate_nodes); + list_del(&page_node->list); + DO_NUMA(page_node->nid = nid); + stable_node_chain_add_dup(page_node, stable_node); + goto out; } /* @@ -1263,7 +1762,8 @@ struct rb_root *root; struct rb_node **new; struct rb_node *parent; - struct stable_node *stable_node; + struct stable_node *stable_node, *stable_node_dup, *stable_node_any; + bool need_chain = false; kpfn = page_to_pfn(kpage); nid = get_kpfn_nid(kpfn); @@ -1278,7 +1778,32 @@ cond_resched(); stable_node = rb_entry(*new, struct stable_node, node); - tree_page = get_ksm_page(stable_node, false); + stable_node_any = NULL; + tree_page = chain(&stable_node_dup, stable_node, root); + if (!stable_node_dup) { + /* + * Either all stable_node dups were full in + * this stable_node chain, or this chain was + * empty and should be rb_erased. + */ + stable_node_any = stable_node_dup_any(stable_node, + root); + if (!stable_node_any) { + /* rb_erase just run */ + goto again; + } + /* + * Take any of the stable_node dups page of + * this stable_node chain to let the tree walk + * continue. All KSM pages belonging to the + * stable_node dups in a stable_node chain + * have the same content and they're + * wrprotected at all times. Any will work + * fine to continue the walk. + */ + tree_page = get_ksm_page(stable_node_any, false); + } + VM_BUG_ON(!stable_node_dup ^ !!stable_node_any); if (!tree_page) { /* * If we walked over a stale stable_node, @@ -1301,27 +1826,37 @@ else if (ret > 0) new = &parent->rb_right; else { - /* - * It is not a bug that stable_tree_search() didn't - * find this node: because at that time our page was - * not yet write-protected, so may have changed since. - */ - return NULL; + need_chain = true; + break; } } - stable_node = alloc_stable_node(); - if (!stable_node) + stable_node_dup = alloc_stable_node(); + if (!stable_node_dup) return NULL; - INIT_HLIST_HEAD(&stable_node->hlist); - stable_node->kpfn = kpfn; - set_page_stable_node(kpage, stable_node); - DO_NUMA(stable_node->nid = nid); - rb_link_node(&stable_node->node, parent, new); - rb_insert_color(&stable_node->node, root); + INIT_HLIST_HEAD(&stable_node_dup->hlist); + stable_node_dup->kpfn = kpfn; + set_page_stable_node(kpage, stable_node_dup); + stable_node_dup->rmap_hlist_len = 0; + DO_NUMA(stable_node_dup->nid = nid); + if (!need_chain) { + rb_link_node(&stable_node_dup->node, parent, new); + rb_insert_color(&stable_node_dup->node, root); + } else { + if (!is_stable_node_chain(stable_node)) { + struct stable_node *orig = stable_node; + /* chain is missing so create it */ + stable_node = alloc_stable_node_chain(orig, root); + if (!stable_node) { + free_stable_node(stable_node_dup); + return NULL; + } + } + stable_node_chain_add_dup(stable_node_dup, stable_node); + } - return stable_node; + return stable_node_dup; } /* @@ -1411,8 +1946,27 @@ * the same ksm page. */ static void stable_tree_append(struct rmap_item *rmap_item, - struct stable_node *stable_node) + struct stable_node *stable_node, + bool max_page_sharing_bypass) { + /* + * rmap won't find this mapping if we don't insert the + * rmap_item in the right stable_node + * duplicate. page_migration could break later if rmap breaks, + * so we can as well crash here. We really need to check for + * rmap_hlist_len == STABLE_NODE_CHAIN, but we can as well check + * for other negative values as an undeflow if detected here + * for the first time (and not when decreasing rmap_hlist_len) + * would be sign of memory corruption in the stable_node. + */ + BUG_ON(stable_node->rmap_hlist_len < 0); + + stable_node->rmap_hlist_len++; + if (!max_page_sharing_bypass) + /* possibly non fatal but unexpected overflow, only warn */ + WARN_ON_ONCE(stable_node->rmap_hlist_len > + ksm_max_page_sharing); + rmap_item->head = stable_node; rmap_item->address |= STABLE_FLAG; hlist_add_head(&rmap_item->hlist, &stable_node->hlist); @@ -1440,19 +1994,26 @@ struct page *kpage; unsigned int checksum; int err; + bool max_page_sharing_bypass = false; stable_node = page_stable_node(page); if (stable_node) { if (stable_node->head != &migrate_nodes && - get_kpfn_nid(stable_node->kpfn) != NUMA(stable_node->nid)) { - rb_erase(&stable_node->node, - root_stable_tree + NUMA(stable_node->nid)); + get_kpfn_nid(READ_ONCE(stable_node->kpfn)) != + NUMA(stable_node->nid)) { + stable_node_dup_del(stable_node); stable_node->head = &migrate_nodes; list_add(&stable_node->list, stable_node->head); } if (stable_node->head != &migrate_nodes && rmap_item->head == stable_node) return; + /* + * If it's a KSM fork, allow it to go over the sharing limit + * without warnings. + */ + if (!is_page_sharing_candidate(stable_node)) + max_page_sharing_bypass = true; } /* We first start with searching the page inside the stable tree */ @@ -1472,7 +2033,8 @@ * add its rmap_item to the stable tree. */ lock_page(kpage); - stable_tree_append(rmap_item, page_stable_node(kpage)); + stable_tree_append(rmap_item, page_stable_node(kpage), + max_page_sharing_bypass); unlock_page(kpage); } put_page(kpage); @@ -1505,8 +2067,10 @@ lock_page(kpage); stable_node = stable_tree_insert(kpage); if (stable_node) { - stable_tree_append(tree_rmap_item, stable_node); - stable_tree_append(rmap_item, stable_node); + stable_tree_append(tree_rmap_item, stable_node, + false); + stable_tree_append(rmap_item, stable_node, + false); } unlock_page(kpage); @@ -2010,6 +2574,48 @@ } } +static bool stable_node_dup_remove_range(struct stable_node *stable_node, + unsigned long start_pfn, + unsigned long end_pfn) +{ + if (stable_node->kpfn >= start_pfn && + stable_node->kpfn < end_pfn) { + /* + * Don't get_ksm_page, page has already gone: + * which is why we keep kpfn instead of page* + */ + remove_node_from_stable_tree(stable_node); + return true; + } + return false; +} + +static bool stable_node_chain_remove_range(struct stable_node *stable_node, + unsigned long start_pfn, + unsigned long end_pfn, + struct rb_root *root) +{ + struct stable_node *dup; + struct hlist_node *hlist_safe; + + if (!is_stable_node_chain(stable_node)) { + VM_BUG_ON(is_stable_node_dup(stable_node)); + return stable_node_dup_remove_range(stable_node, start_pfn, + end_pfn); + } + + hlist_for_each_entry_safe(dup, hlist_safe, + &stable_node->hlist, hlist_dup) { + VM_BUG_ON(!is_stable_node_dup(dup)); + stable_node_dup_remove_range(dup, start_pfn, end_pfn); + } + if (hlist_empty(&stable_node->hlist)) { + free_stable_node_chain(stable_node, root); + return true; /* notify caller that tree was rebalanced */ + } else + return false; +} + static void ksm_check_stable_tree(unsigned long start_pfn, unsigned long end_pfn) { @@ -2022,15 +2628,12 @@ node = rb_first(root_stable_tree + nid); while (node) { stable_node = rb_entry(node, struct stable_node, node); - if (stable_node->kpfn >= start_pfn && - stable_node->kpfn < end_pfn) { - /* - * Don't get_ksm_page, page has already gone: - * which is why we keep kpfn instead of page* - */ - remove_node_from_stable_tree(stable_node); + if (stable_node_chain_remove_range(stable_node, + start_pfn, end_pfn, + root_stable_tree + + nid)) node = rb_first(root_stable_tree + nid); - } else + else node = rb_next(node); cond_resched(); } @@ -2255,6 +2858,47 @@ KSM_ATTR(merge_across_nodes); #endif +static ssize_t max_page_sharing_show(struct kobject *kobj, + struct kobj_attribute *attr, char *buf) +{ + return sprintf(buf, "%u\n", ksm_max_page_sharing); +} + +static ssize_t max_page_sharing_store(struct kobject *kobj, + struct kobj_attribute *attr, + const char *buf, size_t count) +{ + int err; + int knob; + + err = kstrtoint(buf, 10, &knob); + if (err) + return err; + /* + * When a KSM page is created it is shared by 2 mappings. This + * being a signed comparison, it implicitly verifies it's not + * negative. + */ + if (knob < 2) + return -EINVAL; + + if (READ_ONCE(ksm_max_page_sharing) == knob) + return count; + + mutex_lock(&ksm_thread_mutex); + wait_while_offlining(); + if (ksm_max_page_sharing != knob) { + if (ksm_pages_shared || remove_all_stable_nodes()) + err = -EBUSY; + else + ksm_max_page_sharing = knob; + } + mutex_unlock(&ksm_thread_mutex); + + return err ? err : count; +} +KSM_ATTR(max_page_sharing); + static ssize_t pages_shared_show(struct kobject *kobj, struct kobj_attribute *attr, char *buf) { @@ -2293,6 +2937,46 @@ } KSM_ATTR_RO(pages_volatile); +static ssize_t stable_node_dups_show(struct kobject *kobj, + struct kobj_attribute *attr, char *buf) +{ + return sprintf(buf, "%lu\n", ksm_stable_node_dups); +} +KSM_ATTR_RO(stable_node_dups); + +static ssize_t stable_node_chains_show(struct kobject *kobj, + struct kobj_attribute *attr, char *buf) +{ + return sprintf(buf, "%lu\n", ksm_stable_node_chains); +} +KSM_ATTR_RO(stable_node_chains); + +static ssize_t +stable_node_chains_prune_millisecs_show(struct kobject *kobj, + struct kobj_attribute *attr, + char *buf) +{ + return sprintf(buf, "%u\n", ksm_stable_node_chains_prune_millisecs); +} + +static ssize_t +stable_node_chains_prune_millisecs_store(struct kobject *kobj, + struct kobj_attribute *attr, + const char *buf, size_t count) +{ + unsigned long msecs; + int err; + + err = kstrtoul(buf, 10, &msecs); + if (err || msecs > UINT_MAX) + return -EINVAL; + + ksm_stable_node_chains_prune_millisecs = msecs; + + return count; +} +KSM_ATTR(stable_node_chains_prune_millisecs); + static ssize_t full_scans_show(struct kobject *kobj, struct kobj_attribute *attr, char *buf) { @@ -2312,6 +2996,10 @@ #ifdef CONFIG_NUMA &merge_across_nodes_attr.attr, #endif + &max_page_sharing_attr.attr, + &stable_node_chains_attr.attr, + &stable_node_dups_attr.attr, + &stable_node_chains_prune_millisecs_attr.attr, NULL, }; diff -u linux-raspi2-4.4.0/mm/list_lru.c linux-raspi2-4.4.0/mm/list_lru.c --- linux-raspi2-4.4.0/mm/list_lru.c +++ linux-raspi2-4.4.0/mm/list_lru.c @@ -117,6 +117,7 @@ l = list_lru_from_kmem(nlru, item); list_add_tail(item, &l->list); l->nr_items++; + nlru->nr_items++; spin_unlock(&nlru->lock); return true; } @@ -136,6 +137,7 @@ l = list_lru_from_kmem(nlru, item); list_del_init(item); l->nr_items--; + nlru->nr_items--; spin_unlock(&nlru->lock); return true; } @@ -183,15 +185,10 @@ unsigned long list_lru_count_node(struct list_lru *lru, int nid) { - long count = 0; - int memcg_idx; + struct list_lru_node *nlru; - count += __list_lru_count_one(lru, nid, -1); - if (list_lru_memcg_aware(lru)) { - for_each_memcg_cache_index(memcg_idx) - count += __list_lru_count_one(lru, nid, memcg_idx); - } - return count; + nlru = &lru->node[nid]; + return nlru->nr_items; } EXPORT_SYMBOL_GPL(list_lru_count_node); @@ -226,6 +223,7 @@ assert_spin_locked(&nlru->lock); case LRU_REMOVED: isolated++; + nlru->nr_items--; /* * If the lru lock has been dropped, our list * traversal is now invalid and so we have to diff -u linux-raspi2-4.4.0/mm/memory.c linux-raspi2-4.4.0/mm/memory.c --- linux-raspi2-4.4.0/mm/memory.c +++ linux-raspi2-4.4.0/mm/memory.c @@ -1127,6 +1127,7 @@ init_rss_vec(rss); start_pte = pte_offset_map_lock(mm, pmd, addr, &ptl); pte = start_pte; + flush_tlb_batched_pending(mm); arch_enter_lazy_mmu_mode(); do { pte_t ptent = *pte; diff -u linux-raspi2-4.4.0/mm/mempolicy.c linux-raspi2-4.4.0/mm/mempolicy.c --- linux-raspi2-4.4.0/mm/mempolicy.c +++ linux-raspi2-4.4.0/mm/mempolicy.c @@ -894,11 +894,6 @@ *policy |= (pol->flags & MPOL_MODE_FLAGS); } - if (vma) { - up_read(¤t->mm->mmap_sem); - vma = NULL; - } - err = 0; if (nmask) { if (mpol_store_user_nodemask(pol)) { diff -u linux-raspi2-4.4.0/mm/migrate.c linux-raspi2-4.4.0/mm/migrate.c --- linux-raspi2-4.4.0/mm/migrate.c +++ linux-raspi2-4.4.0/mm/migrate.c @@ -38,6 +38,7 @@ #include #include #include +#include #include @@ -1483,7 +1484,6 @@ const int __user *, nodes, int __user *, status, int, flags) { - const struct cred *cred = current_cred(), *tcred; struct task_struct *task; struct mm_struct *mm; int err; @@ -1507,14 +1507,9 @@ /* * Check if this process has the right to modify the specified - * process. The right exists if the process has administrative - * capabilities, superuser privileges or the same - * userid as the target process. + * process. Use the regular "ptrace_may_access()" checks. */ - tcred = __task_cred(task); - if (!uid_eq(cred->euid, tcred->suid) && !uid_eq(cred->euid, tcred->uid) && - !uid_eq(cred->uid, tcred->suid) && !uid_eq(cred->uid, tcred->uid) && - !capable(CAP_SYS_NICE)) { + if (!ptrace_may_access(task, PTRACE_MODE_READ_REALCREDS)) { rcu_read_unlock(); err = -EPERM; goto out; diff -u linux-raspi2-4.4.0/mm/mmap.c linux-raspi2-4.4.0/mm/mmap.c --- linux-raspi2-4.4.0/mm/mmap.c +++ linux-raspi2-4.4.0/mm/mmap.c @@ -2196,7 +2196,7 @@ /* Guard against exceeding limits of the address space. */ address &= PAGE_MASK; - if (address >= TASK_SIZE) + if (address >= (TASK_SIZE & PAGE_MASK)) return -ENOMEM; address += PAGE_SIZE; diff -u linux-raspi2-4.4.0/mm/page_alloc.c linux-raspi2-4.4.0/mm/page_alloc.c --- linux-raspi2-4.4.0/mm/page_alloc.c +++ linux-raspi2-4.4.0/mm/page_alloc.c @@ -1527,14 +1527,14 @@ #endif for (page = start_page; page <= end_page;) { - /* Make sure we are not inadvertently changing nodes */ - VM_BUG_ON_PAGE(page_to_nid(page) != zone_to_nid(zone), page); - if (!pfn_valid_within(page_to_pfn(page))) { page++; continue; } + /* Make sure we are not inadvertently changing nodes */ + VM_BUG_ON_PAGE(page_to_nid(page) != zone_to_nid(zone), page); + if (!PageBuddy(page)) { page++; continue; @@ -1748,13 +1748,25 @@ struct page, lru); /* - * It should never happen but changes to locking could - * inadvertently allow a per-cpu drain to add pages - * to MIGRATE_HIGHATOMIC while unreserving so be safe - * and watch for underflows. + * In page freeing path, migratetype change is racy so + * we can counter several free pages in a pageblock + * in this loop althoug we changed the pageblock type + * from highatomic to ac->migratetype. So we should + * adjust the count once. */ - zone->nr_reserved_highatomic -= min(pageblock_nr_pages, - zone->nr_reserved_highatomic); + if (get_pageblock_migratetype(page) == + MIGRATE_HIGHATOMIC) { + /* + * It should never happen but changes to + * locking could inadvertently allow a per-cpu + * drain to add pages to MIGRATE_HIGHATOMIC + * while unreserving so be safe and watch for + * underflows. + */ + zone->nr_reserved_highatomic -= min( + pageblock_nr_pages, + zone->nr_reserved_highatomic); + } /* * Convert to ac->migratetype and avoid the normal @@ -2392,10 +2404,9 @@ * one free page of a suitable size. Checking now avoids taking the zone lock * to check in the allocation paths if no pages are free. */ -static bool __zone_watermark_ok(struct zone *z, unsigned int order, - unsigned long mark, int classzone_idx, - unsigned int alloc_flags, - long free_pages) +bool __zone_watermark_ok(struct zone *z, unsigned int order, unsigned long mark, + int classzone_idx, unsigned int alloc_flags, + long free_pages) { long min = mark; int o; @@ -2864,43 +2875,6 @@ return NULL; } - -static inline bool -should_compact_retry(unsigned int order, enum compact_result compact_result, - enum migrate_mode *migrate_mode, - int compaction_retries) -{ - if (!order) - return false; - - /* - * compaction considers all the zone as desperately out of memory - * so it doesn't really make much sense to retry except when the - * failure could be caused by weak migration mode. - */ - if (compaction_failed(compact_result)) { - if (*migrate_mode == MIGRATE_ASYNC) { - *migrate_mode = MIGRATE_SYNC_LIGHT; - return true; - } - return false; - } - - /* - * !costly allocations are really important and we have to make sure - * the compaction wasn't deferred or didn't bail out early due to locks - * contention before we go OOM. Still cap the reclaim retry loops with - * progress to prevent from looping forever and potential trashing. - */ - if (order <= PAGE_ALLOC_COSTLY_ORDER) { - if (compaction_withdrawn(compact_result)) - return true; - if (compaction_retries <= MAX_COMPACT_RETRIES) - return true; - } - - return false; -} #else static inline struct page * __alloc_pages_direct_compact(gfp_t gfp_mask, unsigned int order, @@ -2911,14 +2885,34 @@ return NULL; } +#endif /* CONFIG_COMPACTION */ + static inline bool -should_compact_retry(unsigned int order, enum compact_result compact_result, +should_compact_retry(struct alloc_context *ac, unsigned int order, int alloc_flags, + enum compact_result compact_result, enum migrate_mode *migrate_mode, int compaction_retries) { + struct zone *zone; + struct zoneref *z; + + if (!order || order > PAGE_ALLOC_COSTLY_ORDER) + return false; + + /* + * There are setups with compaction disabled which would prefer to loop + * inside the allocator rather than hit the oom killer prematurely. + * Let's give them a good hope and keep retrying while the order-0 + * watermarks are OK. + */ + for_each_zone_zonelist_nodemask(zone, z, ac->zonelist, ac->high_zoneidx, + ac->nodemask) { + if (zone_watermark_ok(zone, 0, min_wmark_pages(zone), + ac->classzone_idx, alloc_flags)) + return true; + } return false; } -#endif /* CONFIG_COMPACTION */ /* Perform direct synchronous page reclaim */ static int @@ -3081,18 +3075,17 @@ * Checks whether it makes sense to retry the reclaim to make a forward progress * for the given allocation request. * The reclaim feedback represented by did_some_progress (any progress during - * the last reclaim round), pages_reclaimed (cumulative number of reclaimed - * pages) and no_progress_loops (number of reclaim rounds without any progress - * in a row) is considered as well as the reclaimable pages on the applicable - * zone list (with a backoff mechanism which is a function of no_progress_loops). + * the last reclaim round) and no_progress_loops (number of reclaim rounds without + * any progress in a row) is considered as well as the reclaimable pages on the + * applicable zone list (with a backoff mechanism which is a function of + * no_progress_loops). * * Returns true if a retry is viable or false to enter the oom path. */ static inline bool should_reclaim_retry(gfp_t gfp_mask, unsigned order, struct alloc_context *ac, int alloc_flags, - bool did_some_progress, unsigned long pages_reclaimed, - int no_progress_loops) + bool did_some_progress, int no_progress_loops) { struct zone *zone; struct zoneref *z; @@ -3104,14 +3097,6 @@ if (no_progress_loops > MAX_RECLAIM_RETRIES) return false; - if (order > PAGE_ALLOC_COSTLY_ORDER) { - if (pages_reclaimed >= (1< PAGE_ALLOC_COSTLY_ORDER && !(gfp_mask & __GFP_REPEAT)) goto noretry; - if (did_some_progress) { + /* + * Costly allocations might have made a progress but this doesn't mean + * their order will become available due to high fragmentation so + * always increment the no progress counter for them + */ + if (did_some_progress && order <= PAGE_ALLOC_COSTLY_ORDER) no_progress_loops = 0; - pages_reclaimed += did_some_progress; - } else { + else no_progress_loops++; - } if (should_reclaim_retry(gfp_mask, order, ac, alloc_flags, - did_some_progress > 0, pages_reclaimed, - no_progress_loops)) + did_some_progress > 0, no_progress_loops)) goto retry; /* @@ -3348,8 +3334,9 @@ * of free memory (see __compaction_suitable) */ if (did_some_progress > 0 && - should_compact_retry(order, compact_result, - &migration_mode, compaction_retries)) + should_compact_retry(ac, order, alloc_flags, + compact_result, &migration_mode, + compaction_retries)) goto retry; /* Reclaim has failed us, start killing things */ @@ -6072,8 +6059,8 @@ } if (pages && s) - pr_info("Freeing %s memory: %ldK (%p - %p)\n", - s, pages << (PAGE_SHIFT - 10), start, end); + pr_info("Freeing %s memory: %ldK\n", + s, pages << (PAGE_SHIFT - 10)); return pages; } diff -u linux-raspi2-4.4.0/mm/slab_common.c linux-raspi2-4.4.0/mm/slab_common.c --- linux-raspi2-4.4.0/mm/slab_common.c +++ linux-raspi2-4.4.0/mm/slab_common.c @@ -250,7 +250,7 @@ { struct kmem_cache *s; - if (slab_nomerge || (flags & SLAB_NEVER_MERGE)) + if (slab_nomerge) return NULL; if (ctor) @@ -261,6 +261,9 @@ size = ALIGN(size, align); flags = kmem_cache_flags(size, flags, name, NULL); + if (flags & SLAB_NEVER_MERGE) + return NULL; + list_for_each_entry_reverse(s, &slab_caches, list) { if (slab_unmergeable(s)) continue; diff -u linux-raspi2-4.4.0/mm/vmscan.c linux-raspi2-4.4.0/mm/vmscan.c --- linux-raspi2-4.4.0/mm/vmscan.c +++ linux-raspi2-4.4.0/mm/vmscan.c @@ -2526,7 +2526,7 @@ if (!populated_zone(zone)) continue; - classzone_idx = requested_highidx; + classzone_idx = gfp_zone(sc->gfp_mask); while (!populated_zone(zone->zone_pgdat->node_zones + classzone_idx)) classzone_idx--; diff -u linux-raspi2-4.4.0/net/bluetooth/hci_core.c linux-raspi2-4.4.0/net/bluetooth/hci_core.c --- linux-raspi2-4.4.0/net/bluetooth/hci_core.c +++ linux-raspi2-4.4.0/net/bluetooth/hci_core.c @@ -3365,7 +3365,7 @@ } hdev->req_workqueue = alloc_workqueue("%s", WQ_HIGHPRI | WQ_UNBOUND | - WQ_MEM_RECLAIM, 1, hdev->name); + WQ_MEM_RECLAIM | WQ_FREEZABLE, 1, hdev->name); if (!hdev->req_workqueue) { destroy_workqueue(hdev->workqueue); error = -ENOMEM; diff -u linux-raspi2-4.4.0/net/bluetooth/smp.c linux-raspi2-4.4.0/net/bluetooth/smp.c --- linux-raspi2-4.4.0/net/bluetooth/smp.c +++ linux-raspi2-4.4.0/net/bluetooth/smp.c @@ -23,6 +23,7 @@ #include #include #include +#include #include #include @@ -524,7 +525,7 @@ if (err) return false; - return !memcmp(bdaddr->b, hash, 3); + return !crypto_memneq(bdaddr->b, hash, 3); } int smp_generate_rpa(struct hci_dev *hdev, const u8 irk[16], bdaddr_t *rpa) @@ -577,7 +578,7 @@ /* This is unlikely, but we need to check that * we didn't accidentially generate a debug key. */ - if (memcmp(smp->local_sk, debug_sk, 32)) + if (crypto_memneq(smp->local_sk, debug_sk, 32)) break; } smp->debug_key = false; @@ -991,7 +992,7 @@ if (ret) return SMP_UNSPECIFIED; - if (memcmp(smp->pcnf, confirm, sizeof(smp->pcnf)) != 0) { + if (crypto_memneq(smp->pcnf, confirm, sizeof(smp->pcnf))) { BT_ERR("Pairing failed (confirmation values mismatch)"); return SMP_CONFIRM_FAILED; } @@ -1491,7 +1492,7 @@ smp->rrnd, r, cfm)) return SMP_UNSPECIFIED; - if (memcmp(smp->pcnf, cfm, 16)) + if (crypto_memneq(smp->pcnf, cfm, 16)) return SMP_CONFIRM_FAILED; smp->passkey_round++; @@ -1875,7 +1876,7 @@ /* This is unlikely, but we need to check that * we didn't accidentially generate a debug key. */ - if (memcmp(smp->local_sk, debug_sk, 32)) + if (crypto_memneq(smp->local_sk, debug_sk, 32)) break; } } @@ -2140,7 +2141,7 @@ if (err) return SMP_UNSPECIFIED; - if (memcmp(smp->pcnf, cfm, 16)) + if (crypto_memneq(smp->pcnf, cfm, 16)) return SMP_CONFIRM_FAILED; } else { smp_send_cmd(conn, SMP_CMD_PAIRING_RANDOM, sizeof(smp->prnd), @@ -2621,7 +2622,7 @@ if (err) return SMP_UNSPECIFIED; - if (memcmp(cfm.confirm_val, smp->pcnf, 16)) + if (crypto_memneq(cfm.confirm_val, smp->pcnf, 16)) return SMP_CONFIRM_FAILED; } @@ -2654,7 +2655,7 @@ else hcon->pending_sec_level = BT_SECURITY_FIPS; - if (!memcmp(debug_pk, smp->remote_pk, 64)) + if (!crypto_memneq(debug_pk, smp->remote_pk, 64)) set_bit(SMP_FLAG_DEBUG_KEY, &smp->flags); if (smp->method == DSP_PASSKEY) { @@ -2753,7 +2754,7 @@ if (err) return SMP_UNSPECIFIED; - if (memcmp(check->e, e, 16)) + if (crypto_memneq(check->e, e, 16)) return SMP_DHKEY_CHECK_FAILED; if (!hcon->out) { @@ -3463,7 +3464,7 @@ if (err) return err; - if (memcmp(res, exp, 3)) + if (crypto_memneq(res, exp, 3)) return -EINVAL; return 0; @@ -3493,7 +3494,7 @@ if (err) return err; - if (memcmp(res, exp, 16)) + if (crypto_memneq(res, exp, 16)) return -EINVAL; return 0; @@ -3518,7 +3519,7 @@ if (err) return err; - if (memcmp(res, exp, 16)) + if (crypto_memneq(res, exp, 16)) return -EINVAL; return 0; @@ -3550,7 +3551,7 @@ if (err) return err; - if (memcmp(res, exp, 16)) + if (crypto_memneq(res, exp, 16)) return -EINVAL; return 0; @@ -3584,10 +3585,10 @@ if (err) return err; - if (memcmp(mackey, exp_mackey, 16)) + if (crypto_memneq(mackey, exp_mackey, 16)) return -EINVAL; - if (memcmp(ltk, exp_ltk, 16)) + if (crypto_memneq(ltk, exp_ltk, 16)) return -EINVAL; return 0; @@ -3620,7 +3621,7 @@ if (err) return err; - if (memcmp(res, exp, 16)) + if (crypto_memneq(res, exp, 16)) return -EINVAL; return 0; @@ -3674,7 +3675,7 @@ if (err) return err; - if (memcmp(res, exp, 16)) + if (crypto_memneq(res, exp, 16)) return -EINVAL; return 0; diff -u linux-raspi2-4.4.0/net/bridge/br_netlink.c linux-raspi2-4.4.0/net/bridge/br_netlink.c --- linux-raspi2-4.4.0/net/bridge/br_netlink.c +++ linux-raspi2-4.4.0/net/bridge/br_netlink.c @@ -1073,11 +1073,14 @@ spin_unlock_bh(&br->lock); } - err = br_changelink(dev, tb, data); + err = register_netdevice(dev); if (err) return err; - return register_netdevice(dev); + err = br_changelink(dev, tb, data); + if (err) + unregister_netdevice(dev); + return err; } static size_t br_get_size(const struct net_device *brdev) diff -u linux-raspi2-4.4.0/net/core/dev.c linux-raspi2-4.4.0/net/core/dev.c --- linux-raspi2-4.4.0/net/core/dev.c +++ linux-raspi2-4.4.0/net/core/dev.c @@ -2338,6 +2338,9 @@ { unsigned long flags; + if (unlikely(!skb)) + return; + if (likely(atomic_read(&skb->users) == 1)) { smp_rmb(); atomic_set(&skb->users, 0); @@ -2550,9 +2553,10 @@ static inline bool skb_needs_check(struct sk_buff *skb, bool tx_path) { if (tx_path) - return skb->ip_summed != CHECKSUM_PARTIAL; - else - return skb->ip_summed == CHECKSUM_NONE; + return skb->ip_summed != CHECKSUM_PARTIAL && + skb->ip_summed != CHECKSUM_UNNECESSARY; + + return skb->ip_summed == CHECKSUM_NONE; } /** @@ -2571,11 +2575,12 @@ struct sk_buff *__skb_gso_segment(struct sk_buff *skb, netdev_features_t features, bool tx_path) { + struct sk_buff *segs; + if (unlikely(skb_needs_check(skb, tx_path))) { int err; - skb_warn_bad_offload(skb); - + /* We're going to init ->check field in TCP or UDP header */ err = skb_cow_head(skb, 0); if (err < 0) return ERR_PTR(err); @@ -2590,7 +2595,12 @@ skb_reset_mac_header(skb); skb_reset_mac_len(skb); - return skb_mac_gso_segment(skb, features); + segs = skb_mac_gso_segment(skb, features); + + if (unlikely(skb_needs_check(skb, tx_path))) + skb_warn_bad_offload(skb); + + return segs; } EXPORT_SYMBOL(__skb_gso_segment); @@ -4375,6 +4385,12 @@ } EXPORT_SYMBOL(gro_find_complete_by_type); +static void napi_skb_free_stolen_head(struct sk_buff *skb) +{ + skb_dst_drop(skb); + kmem_cache_free(skbuff_head_cache, skb); +} + static gro_result_t napi_skb_finish(gro_result_t ret, struct sk_buff *skb) { switch (ret) { @@ -4388,12 +4404,10 @@ break; case GRO_MERGED_FREE: - if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD) { - skb_dst_drop(skb); - kmem_cache_free(skbuff_head_cache, skb); - } else { + if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD) + napi_skb_free_stolen_head(skb); + else __kfree_skb(skb); - } break; case GRO_HELD: @@ -4459,10 +4473,16 @@ break; case GRO_DROP: - case GRO_MERGED_FREE: napi_reuse_skb(napi, skb); break; + case GRO_MERGED_FREE: + if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD) + napi_skb_free_stolen_head(skb); + else + napi_reuse_skb(napi, skb); + break; + case GRO_MERGED: break; } @@ -6055,7 +6075,7 @@ } EXPORT_SYMBOL(dev_change_flags); -static int __dev_set_mtu(struct net_device *dev, int new_mtu) +int __dev_set_mtu(struct net_device *dev, int new_mtu) { const struct net_device_ops *ops = dev->netdev_ops; @@ -6065,6 +6085,7 @@ dev->mtu = new_mtu; return 0; } +EXPORT_SYMBOL(__dev_set_mtu); /** * dev_set_mtu - Change maximum transfer unit @@ -7053,8 +7074,8 @@ } else { netdev_stats_to_stats64(storage, &dev->stats); } - storage->rx_dropped += atomic_long_read(&dev->rx_dropped); - storage->tx_dropped += atomic_long_read(&dev->tx_dropped); + storage->rx_dropped += (unsigned long)atomic_long_read(&dev->rx_dropped); + storage->tx_dropped += (unsigned long)atomic_long_read(&dev->tx_dropped); return storage; } EXPORT_SYMBOL(dev_get_stats); diff -u linux-raspi2-4.4.0/net/core/dst.c linux-raspi2-4.4.0/net/core/dst.c --- linux-raspi2-4.4.0/net/core/dst.c +++ linux-raspi2-4.4.0/net/core/dst.c @@ -190,7 +190,6 @@ dst->__use = 0; dst->lastuse = jiffies; dst->flags = flags; - dst->pending_confirm = 0; dst->next = NULL; if (!(flags & DST_NOCOUNT)) dst_entries_add(ops, 1); diff -u linux-raspi2-4.4.0/net/core/rtnetlink.c linux-raspi2-4.4.0/net/core/rtnetlink.c --- linux-raspi2-4.4.0/net/core/rtnetlink.c +++ linux-raspi2-4.4.0/net/core/rtnetlink.c @@ -1742,7 +1742,8 @@ struct sockaddr *sa; int len; - len = sizeof(sa_family_t) + dev->addr_len; + len = sizeof(sa_family_t) + max_t(size_t, dev->addr_len, + sizeof(*sa)); sa = kmalloc(len, GFP_KERNEL); if (!sa) { err = -ENOMEM; diff -u linux-raspi2-4.4.0/net/core/sock.c linux-raspi2-4.4.0/net/core/sock.c --- linux-raspi2-4.4.0/net/core/sock.c +++ linux-raspi2-4.4.0/net/core/sock.c @@ -532,6 +532,7 @@ if (dst && dst->obsolete && dst->ops->check(dst, cookie) == NULL) { sk_tx_queue_clear(sk); + sk->sk_dst_pending_confirm = 0; RCU_INIT_POINTER(sk->sk_dst_cache, NULL); dst_release(dst); return NULL; @@ -1516,6 +1517,8 @@ sock_copy(newsk, sk); + newsk->sk_prot_creator = sk->sk_prot; + /* SANITY */ if (likely(newsk->sk_net_refcnt)) get_net(sock_net(newsk)); @@ -1540,6 +1543,7 @@ af_family_clock_key_strings[newsk->sk_family]); newsk->sk_dst_cache = NULL; + newsk->sk_dst_pending_confirm = 0; newsk->sk_wmem_queued = 0; newsk->sk_forward_alloc = 0; newsk->sk_send_head = NULL; diff -u linux-raspi2-4.4.0/net/dccp/ipv4.c linux-raspi2-4.4.0/net/dccp/ipv4.c --- linux-raspi2-4.4.0/net/dccp/ipv4.c +++ linux-raspi2-4.4.0/net/dccp/ipv4.c @@ -635,6 +635,7 @@ goto drop_and_free; inet_csk_reqsk_queue_hash_add(sk, req, DCCP_TIMEOUT_INIT); + reqsk_put(req); return 0; drop_and_free: diff -u linux-raspi2-4.4.0/net/dccp/ipv6.c linux-raspi2-4.4.0/net/dccp/ipv6.c --- linux-raspi2-4.4.0/net/dccp/ipv6.c +++ linux-raspi2-4.4.0/net/dccp/ipv6.c @@ -376,6 +376,7 @@ goto drop_and_free; inet_csk_reqsk_queue_hash_add(sk, req, DCCP_TIMEOUT_INIT); + reqsk_put(req); return 0; drop_and_free: diff -u linux-raspi2-4.4.0/net/dccp/proto.c linux-raspi2-4.4.0/net/dccp/proto.c --- linux-raspi2-4.4.0/net/dccp/proto.c +++ linux-raspi2-4.4.0/net/dccp/proto.c @@ -24,6 +24,7 @@ #include #include +#include #include #include @@ -170,6 +171,15 @@ EXPORT_SYMBOL_GPL(dccp_packet_name); +static void dccp_sk_destruct(struct sock *sk) +{ + struct dccp_sock *dp = dccp_sk(sk); + + ccid_hc_tx_delete(dp->dccps_hc_tx_ccid, sk); + dp->dccps_hc_tx_ccid = NULL; + inet_sock_destruct(sk); +} + int dccp_init_sock(struct sock *sk, const __u8 ctl_sock_initialized) { struct dccp_sock *dp = dccp_sk(sk); @@ -179,6 +189,7 @@ icsk->icsk_syn_retries = sysctl_dccp_request_retries; sk->sk_state = DCCP_CLOSED; sk->sk_write_space = dccp_write_space; + sk->sk_destruct = dccp_sk_destruct; icsk->icsk_sync_mss = dccp_sync_mss; dp->dccps_mss_cache = 536; dp->dccps_rate_last = jiffies; @@ -201,10 +212,7 @@ { struct dccp_sock *dp = dccp_sk(sk); - /* - * DCCP doesn't use sk_write_queue, just sk_send_head - * for retransmissions - */ + __skb_queue_purge(&sk->sk_write_queue); if (sk->sk_send_head != NULL) { kfree_skb(sk->sk_send_head); sk->sk_send_head = NULL; @@ -222,8 +230,7 @@ dp->dccps_hc_rx_ackvec = NULL; } ccid_hc_rx_delete(dp->dccps_hc_rx_ccid, sk); - ccid_hc_tx_delete(dp->dccps_hc_tx_ccid, sk); - dp->dccps_hc_rx_ccid = dp->dccps_hc_tx_ccid = NULL; + dp->dccps_hc_rx_ccid = NULL; /* clean up feature negotiation state */ dccp_feat_list_purge(&dp->dccps_featneg); diff -u linux-raspi2-4.4.0/net/ipv4/fib_frontend.c linux-raspi2-4.4.0/net/ipv4/fib_frontend.c --- linux-raspi2-4.4.0/net/ipv4/fib_frontend.c +++ linux-raspi2-4.4.0/net/ipv4/fib_frontend.c @@ -1321,11 +1321,12 @@ { - rtnl_register(PF_INET, RTM_NEWROUTE, inet_rtm_newroute, NULL, NULL); - rtnl_register(PF_INET, RTM_DELROUTE, inet_rtm_delroute, NULL, NULL); - rtnl_register(PF_INET, RTM_GETROUTE, NULL, inet_dump_fib, NULL); + fib_trie_init(); register_pernet_subsys(&fib_net_ops); + register_netdevice_notifier(&fib_netdev_notifier); register_inetaddr_notifier(&fib_inetaddr_notifier); - fib_trie_init(); + rtnl_register(PF_INET, RTM_NEWROUTE, inet_rtm_newroute, NULL, NULL); + rtnl_register(PF_INET, RTM_DELROUTE, inet_rtm_delroute, NULL, NULL); + rtnl_register(PF_INET, RTM_GETROUTE, NULL, inet_dump_fib, NULL); } diff -u linux-raspi2-4.4.0/net/ipv4/fib_semantics.c linux-raspi2-4.4.0/net/ipv4/fib_semantics.c --- linux-raspi2-4.4.0/net/ipv4/fib_semantics.c +++ linux-raspi2-4.4.0/net/ipv4/fib_semantics.c @@ -1044,15 +1044,17 @@ fi = kzalloc(sizeof(*fi)+nhs*sizeof(struct fib_nh), GFP_KERNEL); if (!fi) goto failure; - fib_info_cnt++; if (cfg->fc_mx) { fi->fib_metrics = kzalloc(sizeof(*fi->fib_metrics), GFP_KERNEL); - if (!fi->fib_metrics) - goto failure; + if (unlikely(!fi->fib_metrics)) { + kfree(fi); + return ERR_PTR(err); + } atomic_set(&fi->fib_metrics->refcnt, 1); - } else + } else { fi->fib_metrics = (struct dst_metrics *)&dst_default_metrics; - + } + fib_info_cnt++; fi->fib_net = net; fi->fib_protocol = cfg->fc_protocol; fi->fib_scope = cfg->fc_scope; diff -u linux-raspi2-4.4.0/net/ipv4/ip_fragment.c linux-raspi2-4.4.0/net/ipv4/ip_fragment.c --- linux-raspi2-4.4.0/net/ipv4/ip_fragment.c +++ linux-raspi2-4.4.0/net/ipv4/ip_fragment.c @@ -840,8 +840,6 @@ static int __net_init ipv4_frags_init_net(struct net *net) { - int res; - /* Fragment cache limits. * * The fragment memory accounting code, (tries to) account for @@ -865,13 +863,9 @@ */ net->ipv4.frags.timeout = IP_FRAG_TIME; - res = inet_frags_init_net(&net->ipv4.frags); - if (res) - return res; - res = ip4_frags_ns_ctl_register(net); - if (res) - inet_frags_uninit_net(&net->ipv4.frags); - return res; + inet_frags_init_net(&net->ipv4.frags); + + return ip4_frags_ns_ctl_register(net); } static void __net_exit ipv4_frags_exit_net(struct net *net) diff -u linux-raspi2-4.4.0/net/ipv4/ip_output.c linux-raspi2-4.4.0/net/ipv4/ip_output.c --- linux-raspi2-4.4.0/net/ipv4/ip_output.c +++ linux-raspi2-4.4.0/net/ipv4/ip_output.c @@ -210,7 +210,10 @@ if (unlikely(!neigh)) neigh = __neigh_create(&arp_tbl, &nexthop, dev, false); if (!IS_ERR(neigh)) { - int res = dst_neigh_output(dst, neigh, skb); + int res; + + sock_confirm_neigh(skb, neigh); + res = dst_neigh_output(dst, neigh, skb); rcu_read_unlock_bh(); return res; @@ -850,6 +853,9 @@ skb->csum = 0; + if (flags & MSG_CONFIRM) + skb_set_dst_pending_confirm(skb, 1); + __skb_queue_tail(queue, skb); } else if (skb_is_gso(skb)) { goto append; @@ -1052,6 +1058,9 @@ exthdrlen = 0; csummode = CHECKSUM_NONE; + if ((flags & MSG_CONFIRM) && !skb_prev) + skb_set_dst_pending_confirm(skb, 1); + /* * Put the packet on the pending queue. */ diff -u linux-raspi2-4.4.0/net/ipv4/ip_vti.c linux-raspi2-4.4.0/net/ipv4/ip_vti.c --- linux-raspi2-4.4.0/net/ipv4/ip_vti.c +++ linux-raspi2-4.4.0/net/ipv4/ip_vti.c @@ -156,6 +156,7 @@ struct ip_tunnel_parm *parms = &tunnel->parms; struct dst_entry *dst = skb_dst(skb); struct net_device *tdev; /* Device to other host */ + int pkt_len = skb->len; int err; if (!dst) { @@ -199,7 +200,7 @@ err = dst_output(tunnel->net, skb->sk, skb); if (net_xmit_eval(err) == 0) - err = skb->len; + err = pkt_len; iptunnel_xmit_stats(err, &dev->stats, dev->tstats); return NETDEV_TX_OK; diff -u linux-raspi2-4.4.0/net/ipv4/ping.c linux-raspi2-4.4.0/net/ipv4/ping.c --- linux-raspi2-4.4.0/net/ipv4/ping.c +++ linux-raspi2-4.4.0/net/ipv4/ping.c @@ -852,7 +852,8 @@ return err; do_confirm: - dst_confirm(&rt->dst); + if (msg->msg_flags & MSG_PROBE) + dst_confirm_neigh(&rt->dst, &fl4.daddr); if (!(msg->msg_flags & MSG_PROBE) || len) goto back_from_confirm; err = 0; diff -u linux-raspi2-4.4.0/net/ipv4/raw.c linux-raspi2-4.4.0/net/ipv4/raw.c --- linux-raspi2-4.4.0/net/ipv4/raw.c +++ linux-raspi2-4.4.0/net/ipv4/raw.c @@ -382,6 +382,9 @@ sock_tx_timestamp(sk, &skb_shinfo(skb)->tx_flags); + if (flags & MSG_CONFIRM) + skb_set_dst_pending_confirm(skb, 1); + skb->transport_header = skb->network_header; err = -EFAULT; if (memcpy_from_msg(iph, msg, length)) @@ -670,7 +673,8 @@ return len; do_confirm: - dst_confirm(&rt->dst); + if (msg->msg_flags & MSG_PROBE) + dst_confirm_neigh(&rt->dst, &fl4.daddr); if (!(msg->msg_flags & MSG_PROBE) || len) goto back_from_confirm; err = 0; diff -u linux-raspi2-4.4.0/net/ipv4/route.c linux-raspi2-4.4.0/net/ipv4/route.c --- linux-raspi2-4.4.0/net/ipv4/route.c +++ linux-raspi2-4.4.0/net/ipv4/route.c @@ -154,6 +154,7 @@ static struct neighbour *ipv4_neigh_lookup(const struct dst_entry *dst, struct sk_buff *skb, const void *daddr); +static void ipv4_confirm_neigh(const struct dst_entry *dst, const void *daddr); static struct dst_ops ipv4_dst_ops = { .family = AF_INET, @@ -168,6 +169,7 @@ .redirect = ip_do_redirect, .local_out = __ip_local_out, .neigh_lookup = ipv4_neigh_lookup, + .confirm_neigh = ipv4_confirm_neigh, }; #define ECN_OR_COST(class) TC_PRIO_##class @@ -461,6 +463,23 @@ return neigh_create(&arp_tbl, pkey, dev); } +static void ipv4_confirm_neigh(const struct dst_entry *dst, const void *daddr) +{ + struct net_device *dev = dst->dev; + const __be32 *pkey = daddr; + const struct rtable *rt; + + rt = (const struct rtable *)dst; + if (rt->rt_gateway) + pkey = (const __be32 *)&rt->rt_gateway; + else if (!daddr || + (rt->rt_flags & + (RTCF_MULTICAST | RTCF_BROADCAST | RTCF_LOCAL))) + return; + + __ipv4_confirm_neigh(dev, *(__force u32 *)pkey); +} + #define IP_IDENTS_SZ 2048u static atomic_t *ip_idents __read_mostly; @@ -1241,7 +1260,7 @@ if (mtu) return mtu; - mtu = dst->dev->mtu; + mtu = READ_ONCE(dst->dev->mtu); if (unlikely(dst_metric_locked(dst, RTAX_MTU))) { if (rt->rt_uses_gateway && mtu > 576) diff -u linux-raspi2-4.4.0/net/ipv4/tcp.c linux-raspi2-4.4.0/net/ipv4/tcp.c --- linux-raspi2-4.4.0/net/ipv4/tcp.c +++ linux-raspi2-4.4.0/net/ipv4/tcp.c @@ -2260,9 +2260,15 @@ tcp_set_ca_state(sk, TCP_CA_Open); tcp_clear_retrans(tp); inet_csk_delack_init(sk); + /* Initialize rcv_mss to TCP_MIN_MSS to avoid division by 0 + * issue in __tcp_select_window() + */ + icsk->icsk_ack.rcv_mss = TCP_MIN_MSS; tcp_init_send_head(sk); memset(&tp->rx_opt, 0, sizeof(tp->rx_opt)); __sk_dst_reset(sk); + dst_release(sk->sk_rx_dst); + sk->sk_rx_dst = NULL; tcp_saved_syn_free(tp); WARN_ON(inet->inet_num && !icsk->icsk_bind_hash); diff -u linux-raspi2-4.4.0/net/ipv4/tcp_input.c linux-raspi2-4.4.0/net/ipv4/tcp_input.c --- linux-raspi2-4.4.0/net/ipv4/tcp_input.c +++ linux-raspi2-4.4.0/net/ipv4/tcp_input.c @@ -2165,8 +2165,7 @@ { struct tcp_sock *tp = tcp_sk(sk); struct sk_buff *skb; - int cnt, oldcnt; - int err; + int cnt, oldcnt, lost; unsigned int mss; /* Use SACK to deduce losses of new sequences sent during recovery */ const u32 loss_high = tcp_is_sack(tp) ? tp->snd_nxt : tp->high_seq; @@ -2206,9 +2205,10 @@ break; mss = tcp_skb_mss(skb); - err = tcp_fragment(sk, skb, (packets - oldcnt) * mss, - mss, GFP_ATOMIC); - if (err < 0) + /* If needed, chop off the prefix to mark as lost. */ + lost = (packets - oldcnt) * mss; + if (lost < skb->len && + tcp_fragment(sk, skb, lost, mss, GFP_ATOMIC) < 0) break; cnt = packets; } @@ -2503,8 +2503,8 @@ struct tcp_sock *tp = tcp_sk(sk); /* Reset cwnd to ssthresh in CWR or Recovery (unless it's undone) */ - if (inet_csk(sk)->icsk_ca_state == TCP_CA_CWR || - (tp->undo_marker && tp->snd_ssthresh < TCP_INFINITE_SSTHRESH)) { + if (tp->snd_ssthresh < TCP_INFINITE_SSTHRESH && + (inet_csk(sk)->icsk_ca_state == TCP_CA_CWR || tp->undo_marker)) { tp->snd_cwnd = tp->snd_ssthresh; tp->snd_cwnd_stamp = tcp_time_stamp; } @@ -3028,8 +3028,7 @@ /* delta may not be positive if the socket is locked * when the retrans timer fires and is rescheduled. */ - if (delta > 0) - rto = delta; + rto = max(delta, 1); } inet_csk_reset_xmit_timer(sk, ICSK_TIME_RETRANS, rto, TCP_RTO_MAX); @@ -3637,11 +3636,8 @@ if (tcp_may_raise_cwnd(sk, flag)) tcp_cong_avoid(sk, ack, acked); - if ((flag & FLAG_FORWARD_PROGRESS) || !(flag & FLAG_NOT_DUP)) { - struct dst_entry *dst = __sk_dst_get(sk); - if (dst) - dst_confirm(dst); - } + if ((flag & FLAG_FORWARD_PROGRESS) || !(flag & FLAG_NOT_DUP)) + sk_dst_confirm(sk); if (icsk->icsk_pending == ICSK_TIME_RETRANS) tcp_schedule_loss_probe(sk); @@ -5897,7 +5893,6 @@ break; case TCP_FIN_WAIT1: { - struct dst_entry *dst; int tmo; /* If we enter the TCP_FIN_WAIT1 state and we are a @@ -5924,9 +5919,7 @@ tcp_set_state(sk, TCP_FIN_WAIT2); sk->sk_shutdown |= SEND_SHUTDOWN; - dst = __sk_dst_get(sk); - if (dst) - dst_confirm(dst); + sk_dst_confirm(sk); if (!sock_flag(sk, SOCK_DEAD)) { /* Wake up lingering close() */ diff -u linux-raspi2-4.4.0/net/ipv4/tcp_metrics.c linux-raspi2-4.4.0/net/ipv4/tcp_metrics.c --- linux-raspi2-4.4.0/net/ipv4/tcp_metrics.c +++ linux-raspi2-4.4.0/net/ipv4/tcp_metrics.c @@ -374,12 +374,10 @@ u32 val; int m; + sk_dst_confirm(sk); if (sysctl_tcp_nometrics_save || !dst) return; - if (dst->flags & DST_HOST) - dst_confirm(dst); - rcu_read_lock(); if (icsk->icsk_backoff || !tp->srtt_us) { /* This session failed to estimate rtt. Why? @@ -492,11 +490,10 @@ struct tcp_metrics_block *tm; u32 val, crtt = 0; /* cached RTT scaled by 8 */ + sk_dst_confirm(sk); if (!dst) goto reset; - dst_confirm(dst); - rcu_read_lock(); tm = tcp_get_metrics(sk, dst, true); if (!tm) { diff -u linux-raspi2-4.4.0/net/ipv4/tcp_output.c linux-raspi2-4.4.0/net/ipv4/tcp_output.c --- linux-raspi2-4.4.0/net/ipv4/tcp_output.c +++ linux-raspi2-4.4.0/net/ipv4/tcp_output.c @@ -957,6 +957,8 @@ skb_set_hash_from_sk(skb, sk); atomic_add(skb->truesize, &sk->sk_wmem_alloc); + skb_set_dst_pending_confirm(skb, sk->sk_dst_pending_confirm); + /* Build TCP header and checksum it. */ th = tcp_hdr(skb); th->source = inet->inet_sport; @@ -3256,6 +3258,9 @@ struct sk_buff *buff; int err; + if (inet_csk(sk)->icsk_af_ops->rebuild_header(sk)) + return -EHOSTUNREACH; /* Routing failure or similar. */ + tcp_connect_init(sk); if (unlikely(tp->repair)) { diff -u linux-raspi2-4.4.0/net/ipv4/tcp_timer.c linux-raspi2-4.4.0/net/ipv4/tcp_timer.c --- linux-raspi2-4.4.0/net/ipv4/tcp_timer.c +++ linux-raspi2-4.4.0/net/ipv4/tcp_timer.c @@ -606,7 +606,8 @@ goto death; } - if (!sock_flag(sk, SOCK_KEEPOPEN) || sk->sk_state == TCP_CLOSE) + if (!sock_flag(sk, SOCK_KEEPOPEN) || + ((1 << sk->sk_state) & (TCPF_CLOSE | TCPF_SYN_SENT))) goto out; elapsed = keepalive_time_when(tp); diff -u linux-raspi2-4.4.0/net/ipv4/udp.c linux-raspi2-4.4.0/net/ipv4/udp.c --- linux-raspi2-4.4.0/net/ipv4/udp.c +++ linux-raspi2-4.4.0/net/ipv4/udp.c @@ -819,7 +819,7 @@ if (is_udplite) /* UDP-Lite */ csum = udplite_csum(skb); - else if (sk->sk_no_check_tx) { /* UDP csum disabled */ + else if (sk->sk_no_check_tx && !skb_is_gso(skb)) { /* UDP csum off */ skb->ip_summed = CHECKSUM_NONE; goto send; @@ -1123,7 +1123,8 @@ return err; do_confirm: - dst_confirm(&rt->dst); + if (msg->msg_flags & MSG_PROBE) + dst_confirm_neigh(&rt->dst, &fl4->daddr); if (!(msg->msg_flags&MSG_PROBE) || len) goto back_from_confirm; err = 0; diff -u linux-raspi2-4.4.0/net/ipv4/udp_offload.c linux-raspi2-4.4.0/net/ipv4/udp_offload.c --- linux-raspi2-4.4.0/net/ipv4/udp_offload.c +++ linux-raspi2-4.4.0/net/ipv4/udp_offload.c @@ -231,7 +231,7 @@ if (uh->check == 0) uh->check = CSUM_MANGLED_0; - skb->ip_summed = CHECKSUM_NONE; + skb->ip_summed = CHECKSUM_UNNECESSARY; /* Fragment the skb. IP headers of the fragments are updated in * inet_gso_segment() diff -u linux-raspi2-4.4.0/net/ipv6/addrconf.c linux-raspi2-4.4.0/net/ipv6/addrconf.c --- linux-raspi2-4.4.0/net/ipv6/addrconf.c +++ linux-raspi2-4.4.0/net/ipv6/addrconf.c @@ -1772,17 +1772,7 @@ static void addrconf_dad_stop(struct inet6_ifaddr *ifp, int dad_failed) { - if (ifp->flags&IFA_F_PERMANENT) { - spin_lock_bh(&ifp->lock); - addrconf_del_dad_work(ifp); - ifp->flags |= IFA_F_TENTATIVE; - if (dad_failed) - ifp->flags |= IFA_F_DADFAILED; - spin_unlock_bh(&ifp->lock); - if (dad_failed) - ipv6_ifa_notify(0, ifp); - in6_ifa_put(ifp); - } else if (ifp->flags&IFA_F_TEMPORARY) { + if (ifp->flags&IFA_F_TEMPORARY) { struct inet6_ifaddr *ifpub; spin_lock_bh(&ifp->lock); ifpub = ifp->ifpub; @@ -1795,6 +1785,16 @@ spin_unlock_bh(&ifp->lock); } ipv6_del_addr(ifp); + } else if (ifp->flags&IFA_F_PERMANENT || !dad_failed) { + spin_lock_bh(&ifp->lock); + addrconf_del_dad_work(ifp); + ifp->flags |= IFA_F_TENTATIVE; + if (dad_failed) + ifp->flags |= IFA_F_DADFAILED; + spin_unlock_bh(&ifp->lock); + if (dad_failed) + ipv6_ifa_notify(0, ifp); + in6_ifa_put(ifp); } else { ipv6_del_addr(ifp); } @@ -3143,6 +3143,7 @@ { struct net_device *dev = netdev_notifier_info_to_dev(ptr); struct inet6_dev *idev = __in6_dev_get(dev); + struct net *net = dev_net(dev); int run_pending = 0; int err; @@ -3158,7 +3159,7 @@ case NETDEV_CHANGEMTU: /* if MTU under IPV6_MIN_MTU stop IPv6 on this interface. */ if (dev->mtu < IPV6_MIN_MTU) { - addrconf_ifdown(dev, 1); + addrconf_ifdown(dev, dev != net->loopback_dev); break; } @@ -3271,7 +3272,7 @@ * IPV6_MIN_MTU stop IPv6 on this interface. */ if (dev->mtu < IPV6_MIN_MTU) - addrconf_ifdown(dev, 1); + addrconf_ifdown(dev, dev != net->loopback_dev); } break; @@ -5151,7 +5152,7 @@ * our DAD process, so we don't need * to do it again */ - if (!(ifp->rt->rt6i_node)) + if (!rcu_access_pointer(ifp->rt->rt6i_node)) ip6_ins_rt(ifp->rt); if (ifp->idev->cnf.forwarding) addrconf_join_anycast(ifp); diff -u linux-raspi2-4.4.0/net/ipv6/ip6_fib.c linux-raspi2-4.4.0/net/ipv6/ip6_fib.c --- linux-raspi2-4.4.0/net/ipv6/ip6_fib.c +++ linux-raspi2-4.4.0/net/ipv6/ip6_fib.c @@ -150,11 +150,23 @@ return fn; } -static void node_free(struct fib6_node *fn) +static void node_free_immediate(struct fib6_node *fn) +{ + kmem_cache_free(fib6_node_kmem, fn); +} + +static void node_free_rcu(struct rcu_head *head) { + struct fib6_node *fn = container_of(head, struct fib6_node, rcu); + kmem_cache_free(fib6_node_kmem, fn); } +static void node_free(struct fib6_node *fn) +{ + call_rcu(&fn->rcu, node_free_rcu); +} + static void rt6_rcu_free(struct rt6_info *rt) { call_rcu(&rt->dst.rcu_head, dst_rcu_free); @@ -191,6 +203,12 @@ } } +static void fib6_free_table(struct fib6_table *table) +{ + inetpeer_invalidate_tree(&table->tb6_peers); + kfree(table); +} + static void fib6_link_table(struct net *net, struct fib6_table *tb) { unsigned int h; @@ -588,9 +606,9 @@ if (!in || !ln) { if (in) - node_free(in); + node_free_immediate(in); if (ln) - node_free(ln); + node_free_immediate(ln); return ERR_PTR(-ENOMEM); } @@ -767,10 +785,7 @@ goto next_iter; } - if (iter->dst.dev == rt->dst.dev && - iter->rt6i_idev == rt->rt6i_idev && - ipv6_addr_equal(&iter->rt6i_gateway, - &rt->rt6i_gateway)) { + if (rt6_duplicate_nexthop(iter, rt)) { if (rt->rt6i_nsiblings) rt->rt6i_nsiblings = 0; if (!(iter->rt6i_flags & RTF_EXPIRES)) @@ -860,7 +875,7 @@ rt->dst.rt6_next = iter; *ins = rt; - rt->rt6i_node = fn; + rcu_assign_pointer(rt->rt6i_node, fn); atomic_inc(&rt->rt6i_ref); inet6_rt_notify(RTM_NEWROUTE, rt, info, 0); info->nl_net->ipv6.rt6_stats->fib_rt_entries++; @@ -885,7 +900,7 @@ return err; *ins = rt; - rt->rt6i_node = fn; + rcu_assign_pointer(rt->rt6i_node, fn); rt->dst.rt6_next = iter->dst.rt6_next; atomic_inc(&rt->rt6i_ref); inet6_rt_notify(RTM_NEWROUTE, rt, info, NLM_F_REPLACE); @@ -895,6 +910,8 @@ } nsiblings = iter->rt6i_nsiblings; fib6_purge_rt(iter, fn, info->nl_net); + if (fn->rr_ptr == iter) + fn->rr_ptr = NULL; rt6_release(iter); if (nsiblings) { @@ -907,6 +924,8 @@ if (rt6_qualify_for_ecmp(iter)) { *ins = iter->dst.rt6_next; fib6_purge_rt(iter, fn, info->nl_net); + if (fn->rr_ptr == iter) + fn->rr_ptr = NULL; rt6_release(iter); nsiblings--; } else { @@ -995,7 +1014,7 @@ /* Create subtree root node */ sfn = node_alloc(); if (!sfn) - goto st_failure; + goto failure; sfn->leaf = info->nl_net->ipv6.ip6_null_entry; atomic_inc(&info->nl_net->ipv6.ip6_null_entry->rt6i_ref); @@ -1011,12 +1030,12 @@ if (IS_ERR(sn)) { /* If it is failed, discard just allocated - root, and then (in st_failure) stale node + root, and then (in failure) stale node in main tree. */ - node_free(sfn); + node_free_immediate(sfn); err = PTR_ERR(sn); - goto st_failure; + goto failure; } /* Now link new subtree to main tree */ @@ -1030,7 +1049,7 @@ if (IS_ERR(sn)) { err = PTR_ERR(sn); - goto st_failure; + goto failure; } } @@ -1072,22 +1091,22 @@ atomic_inc(&pn->leaf->rt6i_ref); } #endif - if (!(rt->dst.flags & DST_NOCACHE)) - dst_free(&rt->dst); + goto failure; } return err; -#ifdef CONFIG_IPV6_SUBTREES - /* Subtree creation failed, probably main tree node - is orphan. If it is, shoot it. +failure: + /* fn->leaf could be NULL if fn is an intermediate node and we + * failed to add the new route to it in both subtree creation + * failure and fib6_add_rt2node() failure case. + * In both cases, fib6_repair_tree() should be called to fix + * fn->leaf. */ -st_failure: if (fn && !(fn->fn_flags & (RTN_RTINFO|RTN_ROOT))) fib6_repair_tree(info->nl_net, fn); if (!(rt->dst.flags & DST_NOCACHE)) dst_free(&rt->dst); return err; -#endif } /* @@ -1441,8 +1460,9 @@ int fib6_del(struct rt6_info *rt, struct nl_info *info) { + struct fib6_node *fn = rcu_dereference_protected(rt->rt6i_node, + lockdep_is_held(&rt->rt6i_table->tb6_lock)); struct net *net = info->nl_net; - struct fib6_node *fn = rt->rt6i_node; struct rt6_info **rtp; #if RT6_DEBUG >= 2 @@ -1631,7 +1651,9 @@ if (res) { #if RT6_DEBUG >= 2 pr_debug("%s: del failed: rt=%p@%p err=%d\n", - __func__, rt, rt->rt6i_node, res); + __func__, rt, + rcu_access_pointer(rt->rt6i_node), + res); #endif continue; } @@ -1869,15 +1891,22 @@ static void fib6_net_exit(struct net *net) { + unsigned int i; + rt6_ifdown(net, NULL); del_timer_sync(&net->ipv6.ip6_fib_timer); -#ifdef CONFIG_IPV6_MULTIPLE_TABLES - inetpeer_invalidate_tree(&net->ipv6.fib6_local_tbl->tb6_peers); - kfree(net->ipv6.fib6_local_tbl); -#endif - inetpeer_invalidate_tree(&net->ipv6.fib6_main_tbl->tb6_peers); - kfree(net->ipv6.fib6_main_tbl); + for (i = 0; i < FIB6_TABLE_HASHSZ; i++) { + struct hlist_head *head = &net->ipv6.fib_table_hash[i]; + struct hlist_node *tmp; + struct fib6_table *tb; + + hlist_for_each_entry_safe(tb, tmp, head, tb6_hlist) { + hlist_del(&tb->tb6_hlist); + fib6_free_table(tb); + } + } + kfree(net->ipv6.fib_table_hash); kfree(net->ipv6.rt6_stats); } diff -u linux-raspi2-4.4.0/net/ipv6/ip6_gre.c linux-raspi2-4.4.0/net/ipv6/ip6_gre.c --- linux-raspi2-4.4.0/net/ipv6/ip6_gre.c +++ linux-raspi2-4.4.0/net/ipv6/ip6_gre.c @@ -1173,24 +1173,25 @@ } static int ip6gre_header(struct sk_buff *skb, struct net_device *dev, - unsigned short type, - const void *daddr, const void *saddr, unsigned int len) + unsigned short type, const void *daddr, + const void *saddr, unsigned int len) { struct ip6_tnl *t = netdev_priv(dev); - struct ipv6hdr *ipv6h = (struct ipv6hdr *)skb_push(skb, t->hlen); - __be16 *p = (__be16 *)(ipv6h+1); + struct ipv6hdr *ipv6h; + __be16 *p; - ip6_flow_hdr(ipv6h, 0, - ip6_make_flowlabel(dev_net(dev), skb, - t->fl.u.ip6.flowlabel, true, - &t->fl.u.ip6)); + ipv6h = (struct ipv6hdr *)skb_push(skb, t->hlen + sizeof(*ipv6h)); + ip6_flow_hdr(ipv6h, 0, ip6_make_flowlabel(dev_net(dev), skb, + t->fl.u.ip6.flowlabel, + true, &t->fl.u.ip6)); ipv6h->hop_limit = t->parms.hop_limit; ipv6h->nexthdr = NEXTHDR_GRE; ipv6h->saddr = t->parms.laddr; ipv6h->daddr = t->parms.raddr; - p[0] = t->parms.o_flags; - p[1] = htons(type); + p = (__be16 *)(ipv6h + 1); + p[0] = t->parms.o_flags; + p[1] = htons(type); /* * Set the source hardware address. diff -u linux-raspi2-4.4.0/net/ipv6/ip6_output.c linux-raspi2-4.4.0/net/ipv6/ip6_output.c --- linux-raspi2-4.4.0/net/ipv6/ip6_output.c +++ linux-raspi2-4.4.0/net/ipv6/ip6_output.c @@ -110,6 +110,7 @@ if (unlikely(!neigh)) neigh = __neigh_create(&nd_tbl, nexthop, dst->dev, false); if (!IS_ERR(neigh)) { + sock_confirm_neigh(skb, neigh); ret = dst_neigh_output(dst, neigh, skb); rcu_read_unlock_bh(); return ret; @@ -647,8 +648,6 @@ *prevhdr = NEXTHDR_FRAGMENT; tmp_hdr = kmemdup(skb_network_header(skb), hlen, GFP_ATOMIC); if (!tmp_hdr) { - IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)), - IPSTATS_MIB_FRAGFAILS); err = -ENOMEM; goto fail; } @@ -767,8 +766,6 @@ frag = alloc_skb(len + hlen + sizeof(struct frag_hdr) + hroom + troom, GFP_ATOMIC); if (!frag) { - IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)), - IPSTATS_MIB_FRAGFAILS); err = -ENOMEM; goto fail; } @@ -1133,6 +1130,9 @@ skb->protocol = htons(ETH_P_IPV6); skb->csum = 0; + if (flags & MSG_CONFIRM) + skb_set_dst_pending_confirm(skb, 1); + __skb_queue_tail(queue, skb); } else if (skb_is_gso(skb)) { goto append; @@ -1506,6 +1506,9 @@ exthdrlen = 0; dst_exthdrlen = 0; + if ((flags & MSG_CONFIRM) && !skb_prev) + skb_set_dst_pending_confirm(skb, 1); + /* * Put the packet on the pending queue */ diff -u linux-raspi2-4.4.0/net/ipv6/ip6_vti.c linux-raspi2-4.4.0/net/ipv6/ip6_vti.c --- linux-raspi2-4.4.0/net/ipv6/ip6_vti.c +++ linux-raspi2-4.4.0/net/ipv6/ip6_vti.c @@ -434,6 +434,7 @@ struct dst_entry *dst = skb_dst(skb); struct net_device *tdev; struct xfrm_state *x; + int pkt_len = skb->len; int err = -1; int mtu; @@ -487,7 +488,7 @@ struct pcpu_sw_netstats *tstats = this_cpu_ptr(dev->tstats); u64_stats_update_begin(&tstats->syncp); - tstats->tx_bytes += skb->len; + tstats->tx_bytes += pkt_len; tstats->tx_packets++; u64_stats_update_end(&tstats->syncp); } else { diff -u linux-raspi2-4.4.0/net/ipv6/output_core.c linux-raspi2-4.4.0/net/ipv6/output_core.c --- linux-raspi2-4.4.0/net/ipv6/output_core.c +++ linux-raspi2-4.4.0/net/ipv6/output_core.c @@ -78,7 +78,7 @@ int ip6_find_1stfragopt(struct sk_buff *skb, u8 **nexthdr) { - u16 offset = sizeof(struct ipv6hdr); + unsigned int offset = sizeof(struct ipv6hdr); unsigned int packet_len = skb_tail_pointer(skb) - skb_network_header(skb); int found_rhdr = 0; @@ -112,6 +112,8 @@ exthdr = (struct ipv6_opt_hdr *)(skb_network_header(skb) + offset); offset += ipv6_optlen(exthdr); + if (offset > IPV6_MAXPLEN) + return -EINVAL; *nexthdr = &exthdr->nexthdr; } diff -u linux-raspi2-4.4.0/net/ipv6/raw.c linux-raspi2-4.4.0/net/ipv6/raw.c --- linux-raspi2-4.4.0/net/ipv6/raw.c +++ linux-raspi2-4.4.0/net/ipv6/raw.c @@ -654,6 +654,9 @@ skb->ip_summed = CHECKSUM_NONE; + if (flags & MSG_CONFIRM) + skb_set_dst_pending_confirm(skb, 1); + skb->transport_header = skb->network_header; err = memcpy_from_msg(iph, msg, length); if (err) @@ -918,7 +921,8 @@ txopt_put(opt_to_free); return err < 0 ? err : len; do_confirm: - dst_confirm(dst); + if (msg->msg_flags & MSG_PROBE) + dst_confirm_neigh(dst, &fl6.daddr); if (!(msg->msg_flags & MSG_PROBE) || len) goto back_from_confirm; err = 0; diff -u linux-raspi2-4.4.0/net/ipv6/reassembly.c linux-raspi2-4.4.0/net/ipv6/reassembly.c --- linux-raspi2-4.4.0/net/ipv6/reassembly.c +++ linux-raspi2-4.4.0/net/ipv6/reassembly.c @@ -708,19 +708,13 @@ static int __net_init ipv6_frags_init_net(struct net *net) { - int res; - net->ipv6.frags.high_thresh = IPV6_FRAG_HIGH_THRESH; net->ipv6.frags.low_thresh = IPV6_FRAG_LOW_THRESH; net->ipv6.frags.timeout = IPV6_FRAG_TIMEOUT; - res = inet_frags_init_net(&net->ipv6.frags); - if (res) - return res; - res = ip6_frags_ns_sysctl_register(net); - if (res) - inet_frags_uninit_net(&net->ipv6.frags); - return res; + inet_frags_init_net(&net->ipv6.frags); + + return ip6_frags_ns_sysctl_register(net); } static void __net_exit ipv6_frags_exit_net(struct net *net) diff -u linux-raspi2-4.4.0/net/ipv6/route.c linux-raspi2-4.4.0/net/ipv6/route.c --- linux-raspi2-4.4.0/net/ipv6/route.c +++ linux-raspi2-4.4.0/net/ipv6/route.c @@ -214,6 +214,21 @@ return neigh_create(&nd_tbl, daddr, dst->dev); } +static void ip6_confirm_neigh(const struct dst_entry *dst, const void *daddr) +{ + struct net_device *dev = dst->dev; + struct rt6_info *rt = (struct rt6_info *)dst; + + daddr = choose_neigh_daddr(rt, NULL, daddr); + if (!daddr) + return; + if (dev->flags & (IFF_NOARP | IFF_LOOPBACK)) + return; + if (ipv6_addr_is_multicast((const struct in6_addr *)daddr)) + return; + __ipv6_confirm_neigh(dev, daddr); +} + static struct dst_ops ip6_dst_ops_template = { .family = AF_INET6, .gc = ip6_dst_gc, @@ -230,6 +245,7 @@ .redirect = rt6_do_redirect, .local_out = __ip6_local_out, .neigh_lookup = ip6_neigh_lookup, + .confirm_neigh = ip6_confirm_neigh, }; static unsigned int ip6_blackhole_mtu(const struct dst_entry *dst) @@ -1248,7 +1264,9 @@ static struct dst_entry *rt6_check(struct rt6_info *rt, u32 cookie) { - if (!rt->rt6i_node || (rt->rt6i_node->fn_sernum != cookie)) + u32 rt_cookie; + + if (!rt6_get_cookie_safe(rt, &rt_cookie) || rt_cookie != cookie) return NULL; if (rt6_check_expired(rt)) @@ -1316,8 +1334,14 @@ if (rt->rt6i_flags & RTF_CACHE) { dst_hold(&rt->dst); ip6_del_rt(rt); - } else if (rt->rt6i_node && (rt->rt6i_flags & RTF_DEFAULT)) { - rt->rt6i_node->fn_sernum = -1; + } else { + struct fib6_node *fn; + + rcu_read_lock(); + fn = rcu_dereference(rt->rt6i_node); + if (fn && (rt->rt6i_flags & RTF_DEFAULT)) + fn->fn_sernum = -1; + rcu_read_unlock(); } } } @@ -1334,37 +1358,39 @@ static bool rt6_cache_allowed_for_pmtu(const struct rt6_info *rt) { return !(rt->rt6i_flags & RTF_CACHE) && - (rt->rt6i_flags & RTF_PCPU || rt->rt6i_node); + (rt->rt6i_flags & RTF_PCPU || + rcu_access_pointer(rt->rt6i_node)); } static void __ip6_rt_update_pmtu(struct dst_entry *dst, const struct sock *sk, const struct ipv6hdr *iph, u32 mtu) { + const struct in6_addr *daddr, *saddr; struct rt6_info *rt6 = (struct rt6_info *)dst; if (rt6->rt6i_flags & RTF_LOCAL) return; - dst_confirm(dst); + if (iph) { + daddr = &iph->daddr; + saddr = &iph->saddr; + } else if (sk) { + daddr = &sk->sk_v6_daddr; + saddr = &inet6_sk(sk)->saddr; + } else { + daddr = NULL; + saddr = NULL; + } + dst_confirm_neigh(dst, daddr); mtu = max_t(u32, mtu, IPV6_MIN_MTU); if (mtu >= dst_mtu(dst)) return; if (!rt6_cache_allowed_for_pmtu(rt6)) { rt6_do_update_pmtu(rt6, mtu); - } else { - const struct in6_addr *daddr, *saddr; + } else if (daddr) { struct rt6_info *nrt6; - if (iph) { - daddr = &iph->daddr; - saddr = &iph->saddr; - } else if (sk) { - daddr = &sk->sk_v6_daddr; - saddr = &inet6_sk(sk)->saddr; - } else { - return; - } nrt6 = ip6_rt_cache_alloc(rt6, daddr, saddr); if (nrt6) { rt6_do_update_pmtu(nrt6, mtu); @@ -2172,7 +2198,7 @@ * Look, redirects are sent only in response to data packets, * so that this nexthop apparently is reachable. --ANK */ - dst_confirm(&rt->dst); + dst_confirm_neigh(&rt->dst, &ipv6_hdr(skb)->saddr); neigh = __neigh_lookup(&nd_tbl, &msg->target, skb->dev, 1); if (!neigh) @@ -2833,17 +2859,11 @@ struct rt6_info *rt, struct fib6_config *r_cfg) { struct rt6_nh *nh; - struct rt6_info *rtnh; int err = -EEXIST; list_for_each_entry(nh, rt6_nh_list, next) { /* check if rt6_info already exists */ - rtnh = nh->rt6_info; - - if (rtnh->dst.dev == rt->dst.dev && - rtnh->rt6i_idev == rt->rt6i_idev && - ipv6_addr_equal(&rtnh->rt6i_gateway, - &rt->rt6i_gateway)) + if (rt6_duplicate_nexthop(nh->rt6_info, rt)) return err; } @@ -3375,11 +3395,15 @@ net->ipv6.ip6_blk_hole_entry->dst.dev = dev; net->ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(dev); #endif - } else if (event == NETDEV_UNREGISTER) { - in6_dev_put(net->ipv6.ip6_null_entry->rt6i_idev); + } else if (event == NETDEV_UNREGISTER && + dev->reg_state != NETREG_UNREGISTERED) { + /* NETDEV_UNREGISTER could be fired for multiple times by + * netdev_wait_allrefs(). Make sure we only call this once. + */ + in6_dev_put_clear(&net->ipv6.ip6_null_entry->rt6i_idev); #ifdef CONFIG_IPV6_MULTIPLE_TABLES - in6_dev_put(net->ipv6.ip6_prohibit_entry->rt6i_idev); - in6_dev_put(net->ipv6.ip6_blk_hole_entry->rt6i_idev); + in6_dev_put_clear(&net->ipv6.ip6_prohibit_entry->rt6i_idev); + in6_dev_put_clear(&net->ipv6.ip6_blk_hole_entry->rt6i_idev); #endif } diff -u linux-raspi2-4.4.0/net/ipv6/udp.c linux-raspi2-4.4.0/net/ipv6/udp.c --- linux-raspi2-4.4.0/net/ipv6/udp.c +++ linux-raspi2-4.4.0/net/ipv6/udp.c @@ -1007,6 +1007,7 @@ */ offset = skb_transport_offset(skb); skb->csum = skb_checksum(skb, offset, skb->len - offset, 0); + csum = skb->csum; skb->ip_summed = CHECKSUM_NONE; @@ -1398,7 +1399,8 @@ return err; do_confirm: - dst_confirm(dst); + if (msg->msg_flags & MSG_PROBE) + dst_confirm_neigh(dst, &fl6.daddr); if (!(msg->msg_flags&MSG_PROBE) || len) goto back_from_confirm; err = 0; diff -u linux-raspi2-4.4.0/net/ipv6/udp_offload.c linux-raspi2-4.4.0/net/ipv6/udp_offload.c --- linux-raspi2-4.4.0/net/ipv6/udp_offload.c +++ linux-raspi2-4.4.0/net/ipv6/udp_offload.c @@ -86,7 +86,7 @@ if (uh->check == 0) uh->check = CSUM_MANGLED_0; - skb->ip_summed = CHECKSUM_NONE; + skb->ip_summed = CHECKSUM_UNNECESSARY; /* Check if there is enough headroom to insert fragment header. */ tnl_hlen = skb_tnl_header_len(skb); diff -u linux-raspi2-4.4.0/net/irda/af_irda.c linux-raspi2-4.4.0/net/irda/af_irda.c --- linux-raspi2-4.4.0/net/irda/af_irda.c +++ linux-raspi2-4.4.0/net/irda/af_irda.c @@ -2227,7 +2227,7 @@ { struct sock *sk = sock->sk; struct irda_sock *self = irda_sk(sk); - struct irda_device_list list; + struct irda_device_list list = { 0 }; struct irda_device_info *discoveries; struct irda_ias_set * ias_opt; /* IAS get/query params */ struct ias_object * ias_obj; /* Object in IAS */ diff -u linux-raspi2-4.4.0/net/key/af_key.c linux-raspi2-4.4.0/net/key/af_key.c --- linux-raspi2-4.4.0/net/key/af_key.c +++ linux-raspi2-4.4.0/net/key/af_key.c @@ -63,8 +63,13 @@ } u; struct sk_buff *skb; } dump; + struct mutex dump_lock; }; +static int parse_sockaddr_pair(struct sockaddr *sa, int ext_len, + xfrm_address_t *saddr, xfrm_address_t *daddr, + u16 *family); + static inline struct pfkey_sock *pfkey_sk(struct sock *sk) { return (struct pfkey_sock *)sk; @@ -139,6 +144,7 @@ { struct netns_pfkey *net_pfkey = net_generic(net, pfkey_net_id); struct sock *sk; + struct pfkey_sock *pfk; int err; if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) @@ -153,6 +159,9 @@ if (sk == NULL) goto out; + pfk = pfkey_sk(sk); + mutex_init(&pfk->dump_lock); + sock->ops = &pfkey_ops; sock_init_data(sock, sk); @@ -219,7 +228,7 @@ #define BROADCAST_ONE 1 #define BROADCAST_REGISTERED 2 #define BROADCAST_PROMISC_ONLY 4 -static int pfkey_broadcast(struct sk_buff *skb, +static int pfkey_broadcast(struct sk_buff *skb, gfp_t allocation, int broadcast_flags, struct sock *one_sk, struct net *net) { @@ -269,7 +278,7 @@ rcu_read_unlock(); if (one_sk != NULL) - err = pfkey_broadcast_one(skb, &skb2, GFP_KERNEL, one_sk); + err = pfkey_broadcast_one(skb, &skb2, allocation, one_sk); kfree_skb(skb2); kfree_skb(skb); @@ -281,23 +290,36 @@ struct sadb_msg *hdr; int rc; + mutex_lock(&pfk->dump_lock); + if (!pfk->dump.dump) { + rc = 0; + goto out; + } + rc = pfk->dump.dump(pfk); - if (rc == -ENOBUFS) - return 0; + if (rc == -ENOBUFS) { + rc = 0; + goto out; + } if (pfk->dump.skb) { - if (!pfkey_can_dump(&pfk->sk)) - return 0; + if (!pfkey_can_dump(&pfk->sk)) { + rc = 0; + goto out; + } hdr = (struct sadb_msg *) pfk->dump.skb->data; hdr->sadb_msg_seq = 0; hdr->sadb_msg_errno = rc; - pfkey_broadcast(pfk->dump.skb, BROADCAST_ONE, + pfkey_broadcast(pfk->dump.skb, GFP_ATOMIC, BROADCAST_ONE, &pfk->sk, sock_net(&pfk->sk)); pfk->dump.skb = NULL; } pfkey_terminate_dump(pfk); + +out: + mutex_unlock(&pfk->dump_lock); return rc; } @@ -333,7 +355,7 @@ hdr->sadb_msg_len = (sizeof(struct sadb_msg) / sizeof(uint64_t)); - pfkey_broadcast(skb, BROADCAST_ONE, sk, sock_net(sk)); + pfkey_broadcast(skb, GFP_KERNEL, BROADCAST_ONE, sk, sock_net(sk)); return 0; } @@ -1374,7 +1396,7 @@ xfrm_state_put(x); - pfkey_broadcast(resp_skb, BROADCAST_ONE, sk, net); + pfkey_broadcast(resp_skb, GFP_KERNEL, BROADCAST_ONE, sk, net); return 0; } @@ -1461,7 +1483,7 @@ hdr->sadb_msg_seq = c->seq; hdr->sadb_msg_pid = c->portid; - pfkey_broadcast(skb, BROADCAST_ALL, NULL, xs_net(x)); + pfkey_broadcast(skb, GFP_ATOMIC, BROADCAST_ALL, NULL, xs_net(x)); return 0; } @@ -1574,7 +1596,7 @@ out_hdr->sadb_msg_reserved = 0; out_hdr->sadb_msg_seq = hdr->sadb_msg_seq; out_hdr->sadb_msg_pid = hdr->sadb_msg_pid; - pfkey_broadcast(out_skb, BROADCAST_ONE, sk, sock_net(sk)); + pfkey_broadcast(out_skb, GFP_ATOMIC, BROADCAST_ONE, sk, sock_net(sk)); return 0; } @@ -1679,8 +1701,8 @@ return -ENOBUFS; } - pfkey_broadcast(supp_skb, BROADCAST_REGISTERED, sk, sock_net(sk)); - + pfkey_broadcast(supp_skb, GFP_KERNEL, BROADCAST_REGISTERED, sk, + sock_net(sk)); return 0; } @@ -1698,7 +1720,8 @@ hdr->sadb_msg_errno = (uint8_t) 0; hdr->sadb_msg_len = (sizeof(struct sadb_msg) / sizeof(uint64_t)); - return pfkey_broadcast(skb, BROADCAST_ONE, sk, sock_net(sk)); + return pfkey_broadcast(skb, GFP_ATOMIC, BROADCAST_ONE, sk, + sock_net(sk)); } static int key_notify_sa_flush(const struct km_event *c) @@ -1719,7 +1742,7 @@ hdr->sadb_msg_len = (sizeof(struct sadb_msg) / sizeof(uint64_t)); hdr->sadb_msg_reserved = 0; - pfkey_broadcast(skb, BROADCAST_ALL, NULL, c->net); + pfkey_broadcast(skb, GFP_ATOMIC, BROADCAST_ALL, NULL, c->net); return 0; } @@ -1776,7 +1799,7 @@ out_hdr->sadb_msg_pid = pfk->dump.msg_portid; if (pfk->dump.skb) - pfkey_broadcast(pfk->dump.skb, BROADCAST_ONE, + pfkey_broadcast(pfk->dump.skb, GFP_ATOMIC, BROADCAST_ONE, &pfk->sk, sock_net(&pfk->sk)); pfk->dump.skb = out_skb; @@ -1802,19 +1825,26 @@ struct xfrm_address_filter *filter = NULL; struct pfkey_sock *pfk = pfkey_sk(sk); - if (pfk->dump.dump != NULL) + mutex_lock(&pfk->dump_lock); + if (pfk->dump.dump != NULL) { + mutex_unlock(&pfk->dump_lock); return -EBUSY; + } proto = pfkey_satype2proto(hdr->sadb_msg_satype); - if (proto == 0) + if (proto == 0) { + mutex_unlock(&pfk->dump_lock); return -EINVAL; + } if (ext_hdrs[SADB_X_EXT_FILTER - 1]) { struct sadb_x_filter *xfilter = ext_hdrs[SADB_X_EXT_FILTER - 1]; filter = kmalloc(sizeof(*filter), GFP_KERNEL); - if (filter == NULL) + if (filter == NULL) { + mutex_unlock(&pfk->dump_lock); return -ENOMEM; + } memcpy(&filter->saddr, &xfilter->sadb_x_filter_saddr, sizeof(xfrm_address_t)); @@ -1830,6 +1860,7 @@ pfk->dump.dump = pfkey_dump_sa; pfk->dump.done = pfkey_dump_sa_done; xfrm_state_walk_init(&pfk->dump.u.state, proto, filter); + mutex_unlock(&pfk->dump_lock); return pfkey_do_dump(pfk); } @@ -1856,7 +1887,7 @@ new_hdr->sadb_msg_errno = 0; } - pfkey_broadcast(skb, BROADCAST_ALL, NULL, sock_net(sk)); + pfkey_broadcast(skb, GFP_KERNEL, BROADCAST_ALL, NULL, sock_net(sk)); return 0; } @@ -1922,19 +1953,14 @@ /* addresses present only in tunnel mode */ if (t->mode == XFRM_MODE_TUNNEL) { - u8 *sa = (u8 *) (rq + 1); - int family, socklen; + int err; - family = pfkey_sockaddr_extract((struct sockaddr *)sa, - &t->saddr); - if (!family) - return -EINVAL; - - socklen = pfkey_sockaddr_len(family); - if (pfkey_sockaddr_extract((struct sockaddr *)(sa + socklen), - &t->id.daddr) != family) - return -EINVAL; - t->encap_family = family; + err = parse_sockaddr_pair( + (struct sockaddr *)(rq + 1), + rq->sadb_x_ipsecrequest_len - sizeof(*rq), + &t->saddr, &t->id.daddr, &t->encap_family); + if (err) + return err; } else t->encap_family = xp->family; @@ -1954,7 +1980,11 @@ if (pol->sadb_x_policy_len * 8 < sizeof(struct sadb_x_policy)) return -EINVAL; - while (len >= sizeof(struct sadb_x_ipsecrequest)) { + while (len >= sizeof(*rq)) { + if (len < rq->sadb_x_ipsecrequest_len || + rq->sadb_x_ipsecrequest_len < sizeof(*rq)) + return -EINVAL; + if ((err = parse_ipsecrequest(xp, rq)) < 0) return err; len -= rq->sadb_x_ipsecrequest_len; @@ -2190,7 +2220,7 @@ out_hdr->sadb_msg_errno = 0; out_hdr->sadb_msg_seq = c->seq; out_hdr->sadb_msg_pid = c->portid; - pfkey_broadcast(out_skb, BROADCAST_ALL, NULL, xp_net(xp)); + pfkey_broadcast(out_skb, GFP_ATOMIC, BROADCAST_ALL, NULL, xp_net(xp)); return 0; } @@ -2410,14 +2440,13 @@ out_hdr->sadb_msg_errno = 0; out_hdr->sadb_msg_seq = hdr->sadb_msg_seq; out_hdr->sadb_msg_pid = hdr->sadb_msg_pid; - pfkey_broadcast(out_skb, BROADCAST_ONE, sk, xp_net(xp)); + pfkey_broadcast(out_skb, GFP_ATOMIC, BROADCAST_ONE, sk, xp_net(xp)); err = 0; out: return err; } -#ifdef CONFIG_NET_KEY_MIGRATE static int pfkey_sockaddr_pair_size(sa_family_t family) { return PFKEY_ALIGN8(pfkey_sockaddr_len(family) * 2); @@ -2429,7 +2458,7 @@ { int af, socklen; - if (ext_len < pfkey_sockaddr_pair_size(sa->sa_family)) + if (ext_len < 2 || ext_len < pfkey_sockaddr_pair_size(sa->sa_family)) return -EINVAL; af = pfkey_sockaddr_extract(sa, saddr); @@ -2445,6 +2474,7 @@ return 0; } +#ifdef CONFIG_NET_KEY_MIGRATE static int ipsecrequests_to_migrate(struct sadb_x_ipsecrequest *rq1, int len, struct xfrm_migrate *m) { @@ -2452,13 +2482,14 @@ struct sadb_x_ipsecrequest *rq2; int mode; - if (len <= sizeof(struct sadb_x_ipsecrequest) || - len < rq1->sadb_x_ipsecrequest_len) + if (len < sizeof(*rq1) || + len < rq1->sadb_x_ipsecrequest_len || + rq1->sadb_x_ipsecrequest_len < sizeof(*rq1)) return -EINVAL; /* old endoints */ err = parse_sockaddr_pair((struct sockaddr *)(rq1 + 1), - rq1->sadb_x_ipsecrequest_len, + rq1->sadb_x_ipsecrequest_len - sizeof(*rq1), &m->old_saddr, &m->old_daddr, &m->old_family); if (err) @@ -2467,13 +2498,14 @@ rq2 = (struct sadb_x_ipsecrequest *)((u8 *)rq1 + rq1->sadb_x_ipsecrequest_len); len -= rq1->sadb_x_ipsecrequest_len; - if (len <= sizeof(struct sadb_x_ipsecrequest) || - len < rq2->sadb_x_ipsecrequest_len) + if (len <= sizeof(*rq2) || + len < rq2->sadb_x_ipsecrequest_len || + rq2->sadb_x_ipsecrequest_len < sizeof(*rq2)) return -EINVAL; /* new endpoints */ err = parse_sockaddr_pair((struct sockaddr *)(rq2 + 1), - rq2->sadb_x_ipsecrequest_len, + rq2->sadb_x_ipsecrequest_len - sizeof(*rq2), &m->new_saddr, &m->new_daddr, &m->new_family); if (err) @@ -2664,7 +2696,7 @@ out_hdr->sadb_msg_pid = pfk->dump.msg_portid; if (pfk->dump.skb) - pfkey_broadcast(pfk->dump.skb, BROADCAST_ONE, + pfkey_broadcast(pfk->dump.skb, GFP_ATOMIC, BROADCAST_ONE, &pfk->sk, sock_net(&pfk->sk)); pfk->dump.skb = out_skb; @@ -2688,14 +2720,18 @@ { struct pfkey_sock *pfk = pfkey_sk(sk); - if (pfk->dump.dump != NULL) + mutex_lock(&pfk->dump_lock); + if (pfk->dump.dump != NULL) { + mutex_unlock(&pfk->dump_lock); return -EBUSY; + } pfk->dump.msg_version = hdr->sadb_msg_version; pfk->dump.msg_portid = hdr->sadb_msg_pid; pfk->dump.dump = pfkey_dump_sp; pfk->dump.done = pfkey_dump_sp_done; xfrm_policy_walk_init(&pfk->dump.u.policy, XFRM_POLICY_TYPE_MAIN); + mutex_unlock(&pfk->dump_lock); return pfkey_do_dump(pfk); } @@ -2717,7 +2753,7 @@ hdr->sadb_msg_satype = SADB_SATYPE_UNSPEC; hdr->sadb_msg_len = (sizeof(struct sadb_msg) / sizeof(uint64_t)); hdr->sadb_msg_reserved = 0; - pfkey_broadcast(skb_out, BROADCAST_ALL, NULL, c->net); + pfkey_broadcast(skb_out, GFP_ATOMIC, BROADCAST_ALL, NULL, c->net); return 0; } @@ -2779,7 +2815,7 @@ void *ext_hdrs[SADB_EXT_MAX]; int err; - pfkey_broadcast(skb_clone(skb, GFP_KERNEL), + pfkey_broadcast(skb_clone(skb, GFP_KERNEL), GFP_KERNEL, BROADCAST_PROMISC_ONLY, NULL, sock_net(sk)); memset(ext_hdrs, 0, sizeof(ext_hdrs)); @@ -3001,7 +3037,8 @@ out_hdr->sadb_msg_seq = 0; out_hdr->sadb_msg_pid = 0; - pfkey_broadcast(out_skb, BROADCAST_REGISTERED, NULL, xs_net(x)); + pfkey_broadcast(out_skb, GFP_ATOMIC, BROADCAST_REGISTERED, NULL, + xs_net(x)); return 0; } @@ -3191,7 +3228,8 @@ xfrm_ctx->ctx_len); } - return pfkey_broadcast(skb, BROADCAST_REGISTERED, NULL, xs_net(x)); + return pfkey_broadcast(skb, GFP_ATOMIC, BROADCAST_REGISTERED, NULL, + xs_net(x)); } static struct xfrm_policy *pfkey_compile_policy(struct sock *sk, int opt, @@ -3389,7 +3427,8 @@ n_port->sadb_x_nat_t_port_port = sport; n_port->sadb_x_nat_t_port_reserved = 0; - return pfkey_broadcast(skb, BROADCAST_REGISTERED, NULL, xs_net(x)); + return pfkey_broadcast(skb, GFP_ATOMIC, BROADCAST_REGISTERED, NULL, + xs_net(x)); } #ifdef CONFIG_NET_KEY_MIGRATE @@ -3581,7 +3620,7 @@ } /* broadcast migrate message to sockets */ - pfkey_broadcast(skb, BROADCAST_ALL, NULL, &init_net); + pfkey_broadcast(skb, GFP_ATOMIC, BROADCAST_ALL, NULL, &init_net); return 0; diff -u linux-raspi2-4.4.0/net/l2tp/l2tp_core.c linux-raspi2-4.4.0/net/l2tp/l2tp_core.c --- linux-raspi2-4.4.0/net/l2tp/l2tp_core.c +++ linux-raspi2-4.4.0/net/l2tp/l2tp_core.c @@ -1321,6 +1321,9 @@ struct sock *sk = NULL; tunnel = container_of(work, struct l2tp_tunnel, del_work); + + l2tp_tunnel_closeall(tunnel); + sk = l2tp_tunnel_sock_lookup(tunnel); if (!sk) goto out; @@ -1640,15 +1643,12 @@ /* This function is used by the netlink TUNNEL_DELETE command. */ -int l2tp_tunnel_delete(struct l2tp_tunnel *tunnel) +void l2tp_tunnel_delete(struct l2tp_tunnel *tunnel) { - l2tp_tunnel_inc_refcount(tunnel); - l2tp_tunnel_closeall(tunnel); - if (false == queue_work(l2tp_wq, &tunnel->del_work)) { - l2tp_tunnel_dec_refcount(tunnel); - return 1; + if (!test_and_set_bit(0, &tunnel->dead)) { + l2tp_tunnel_inc_refcount(tunnel); + queue_work(l2tp_wq, &tunnel->del_work); } - return 0; } EXPORT_SYMBOL_GPL(l2tp_tunnel_delete); diff -u linux-raspi2-4.4.0/net/l2tp/l2tp_core.h linux-raspi2-4.4.0/net/l2tp/l2tp_core.h --- linux-raspi2-4.4.0/net/l2tp/l2tp_core.h +++ linux-raspi2-4.4.0/net/l2tp/l2tp_core.h @@ -169,6 +169,9 @@ struct l2tp_tunnel { int magic; /* Should be L2TP_TUNNEL_MAGIC */ + + unsigned long dead; + struct rcu_head rcu; rwlock_t hlist_lock; /* protect session_hlist */ struct hlist_head session_hlist[L2TP_HASH_SIZE]; @@ -253,7 +256,7 @@ u32 peer_tunnel_id, struct l2tp_tunnel_cfg *cfg, struct l2tp_tunnel **tunnelp); void l2tp_tunnel_closeall(struct l2tp_tunnel *tunnel); -int l2tp_tunnel_delete(struct l2tp_tunnel *tunnel); +void l2tp_tunnel_delete(struct l2tp_tunnel *tunnel); struct l2tp_session *l2tp_session_create(int priv_size, struct l2tp_tunnel *tunnel, u32 session_id, u32 peer_session_id, diff -u linux-raspi2-4.4.0/net/l2tp/l2tp_ip6.c linux-raspi2-4.4.0/net/l2tp/l2tp_ip6.c --- linux-raspi2-4.4.0/net/l2tp/l2tp_ip6.c +++ linux-raspi2-4.4.0/net/l2tp/l2tp_ip6.c @@ -642,7 +642,8 @@ return err < 0 ? err : len; do_confirm: - dst_confirm(dst); + if (msg->msg_flags & MSG_PROBE) + dst_confirm_neigh(dst, &fl6.daddr); if (!(msg->msg_flags & MSG_PROBE) || len) goto back_from_confirm; err = 0; diff -u linux-raspi2-4.4.0/net/mac80211/sta_info.c linux-raspi2-4.4.0/net/mac80211/sta_info.c --- linux-raspi2-4.4.0/net/mac80211/sta_info.c +++ linux-raspi2-4.4.0/net/mac80211/sta_info.c @@ -661,7 +661,7 @@ } /* No need to do anything if the driver does all */ - if (ieee80211_hw_check(&local->hw, AP_LINK_PS)) + if (ieee80211_hw_check(&local->hw, AP_LINK_PS) && !local->ops->set_tim) return; if (sta->dead) diff -u linux-raspi2-4.4.0/net/netfilter/ipvs/ip_vs_core.c linux-raspi2-4.4.0/net/netfilter/ipvs/ip_vs_core.c --- linux-raspi2-4.4.0/net/netfilter/ipvs/ip_vs_core.c +++ linux-raspi2-4.4.0/net/netfilter/ipvs/ip_vs_core.c @@ -845,10 +845,8 @@ { unsigned int verdict = NF_DROP; - if (IP_VS_FWD_METHOD(cp) != 0) { - pr_err("shouldn't reach here, because the box is on the " - "half connection in the tun/dr module.\n"); - } + if (IP_VS_FWD_METHOD(cp) != IP_VS_CONN_F_MASQ) + goto ignore_cp; /* Ensure the checksum is correct */ if (!skb_csum_unnecessary(skb) && ip_vs_checksum_complete(skb, ihl)) { @@ -882,6 +880,8 @@ ip_vs_notrack(skb); else ip_vs_update_conntrack(skb, cp, 0); + +ignore_cp: verdict = NF_ACCEPT; out: @@ -1242,8 +1242,11 @@ */ cp = pp->conn_out_get(ipvs, af, skb, &iph); - if (likely(cp)) + if (likely(cp)) { + if (IP_VS_FWD_METHOD(cp) != IP_VS_CONN_F_MASQ) + goto ignore_cp; return handle_response(af, skb, pd, cp, &iph, hooknum); + } if (sysctl_nat_icmp_send(ipvs) && (pp->protocol == IPPROTO_TCP || pp->protocol == IPPROTO_UDP || @@ -1285,9 +1288,15 @@ } } } + +out: IP_VS_DBG_PKT(12, af, pp, skb, iph.off, "ip_vs_out: packet continues traversal as normal"); return NF_ACCEPT; + +ignore_cp: + __ip_vs_conn_put(cp); + goto out; } /* diff -u linux-raspi2-4.4.0/net/netfilter/nf_conntrack_expect.c linux-raspi2-4.4.0/net/netfilter/nf_conntrack_expect.c --- linux-raspi2-4.4.0/net/netfilter/nf_conntrack_expect.c +++ linux-raspi2-4.4.0/net/netfilter/nf_conntrack_expect.c @@ -395,7 +395,7 @@ struct net *net = nf_ct_exp_net(expect); struct hlist_node *next; unsigned int h; - int ret = 1; + int ret = 0; if (!master_help) { ret = -ESHUTDOWN; @@ -445,7 +445,7 @@ spin_lock_bh(&nf_conntrack_expect_lock); ret = __nf_ct_expect_check(expect); - if (ret <= 0) + if (ret < 0) goto out; ret = nf_ct_expect_insert(expect); diff -u linux-raspi2-4.4.0/net/netfilter/nf_conntrack_netlink.c linux-raspi2-4.4.0/net/netfilter/nf_conntrack_netlink.c --- linux-raspi2-4.4.0/net/netfilter/nf_conntrack_netlink.c +++ linux-raspi2-4.4.0/net/netfilter/nf_conntrack_netlink.c @@ -3415,6 +3415,7 @@ #ifdef CONFIG_NETFILTER_NETLINK_GLUE_CT RCU_INIT_POINTER(nfnl_ct_hook, NULL); #endif + synchronize_rcu(); } module_init(ctnetlink_init); diff -u linux-raspi2-4.4.0/net/netlink/af_netlink.c linux-raspi2-4.4.0/net/netlink/af_netlink.c --- linux-raspi2-4.4.0/net/netlink/af_netlink.c +++ linux-raspi2-4.4.0/net/netlink/af_netlink.c @@ -2199,6 +2199,7 @@ cb = &nlk->cb; memset(cb, 0, sizeof(*cb)); + cb->start = control->start; cb->dump = control->dump; cb->done = control->done; cb->nlh = nlh; @@ -2211,6 +2212,9 @@ mutex_unlock(nlk->cb_mutex); + if (cb->start) + cb->start(cb); + ret = netlink_dump(sk); sock_put(sk); diff -u linux-raspi2-4.4.0/net/netlink/genetlink.c linux-raspi2-4.4.0/net/netlink/genetlink.c --- linux-raspi2-4.4.0/net/netlink/genetlink.c +++ linux-raspi2-4.4.0/net/netlink/genetlink.c @@ -513,6 +513,20 @@ } EXPORT_SYMBOL(genlmsg_put); +static int genl_lock_start(struct netlink_callback *cb) +{ + /* our ops are always const - netlink API doesn't propagate that */ + const struct genl_ops *ops = cb->data; + int rc = 0; + + if (ops->start) { + genl_lock(); + rc = ops->start(cb); + genl_unlock(); + } + return rc; +} + static int genl_lock_dumpit(struct sk_buff *skb, struct netlink_callback *cb) { /* our ops are always const - netlink API doesn't propagate that */ @@ -581,6 +595,7 @@ .module = family->module, /* we have const, but the netlink API doesn't */ .data = (void *)ops, + .start = genl_lock_start, .dump = genl_lock_dumpit, .done = genl_lock_done, }; @@ -592,6 +607,7 @@ } else { struct netlink_dump_control c = { .module = family->module, + .start = ops->start, .dump = ops->dumpit, .done = ops->done, }; diff -u linux-raspi2-4.4.0/net/openvswitch/conntrack.c linux-raspi2-4.4.0/net/openvswitch/conntrack.c --- linux-raspi2-4.4.0/net/openvswitch/conntrack.c +++ linux-raspi2-4.4.0/net/openvswitch/conntrack.c @@ -582,8 +582,8 @@ nla_for_each_nested(a, attr, rem) { int type = nla_type(a); - int maxlen = ovs_ct_attr_lens[type].maxlen; - int minlen = ovs_ct_attr_lens[type].minlen; + int maxlen; + int minlen; if (type > OVS_CT_ATTR_MAX) { OVS_NLERR(log, @@ -591,6 +591,9 @@ type, OVS_CT_ATTR_MAX); return -EINVAL; } + + maxlen = ovs_ct_attr_lens[type].maxlen; + minlen = ovs_ct_attr_lens[type].minlen; if (nla_len(a) < minlen || nla_len(a) > maxlen) { OVS_NLERR(log, "Conntrack attr type has unexpected length (type=%d, length=%d, expected=%d)", diff -u linux-raspi2-4.4.0/net/packet/af_packet.c linux-raspi2-4.4.0/net/packet/af_packet.c --- linux-raspi2-4.4.0/net/packet/af_packet.c +++ linux-raspi2-4.4.0/net/packet/af_packet.c @@ -1652,10 +1652,6 @@ mutex_lock(&fanout_mutex); - err = -EINVAL; - if (!po->running) - goto out; - err = -EALREADY; if (po->fanout) goto out; @@ -1704,7 +1700,10 @@ list_add(&match->list, &fanout_list); } err = -EINVAL; - if (match->type == type && + + spin_lock(&po->bind_lock); + if (po->running && + match->type == type && match->prot_hook.type == po->prot_hook.type && match->prot_hook.dev == po->prot_hook.dev) { err = -ENOSPC; @@ -1716,6 +1715,13 @@ err = 0; } } + spin_unlock(&po->bind_lock); + + if (err && !atomic_read(&match->sk_ref)) { + list_del(&match->list); + kfree(match); + } + out: if (err && rollover) { kfree(rollover); @@ -2650,6 +2656,7 @@ int vnet_hdr_len; struct packet_sock *po = pkt_sk(sk); unsigned short gso_type = 0; + bool has_vnet_hdr = false; int hlen, tlen, linear; int extra_len = 0; ssize_t n; @@ -2737,6 +2744,7 @@ goto out_unlock; } + has_vnet_hdr = true; } if (unlikely(sock_flag(sk, SOCK_NOFCS))) { @@ -2796,7 +2804,7 @@ packet_pick_tx_queue(dev, skb); - if (po->has_vnet_hdr) { + if (has_vnet_hdr) { if (vnet_hdr.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) { u16 s = __virtio16_to_cpu(vio_le(), vnet_hdr.csum_start); u16 o = __virtio16_to_cpu(vio_le(), vnet_hdr.csum_offset); @@ -2938,13 +2946,15 @@ int ret = 0; bool unlisted = false; - if (po->fanout) - return -EINVAL; - lock_sock(sk); spin_lock(&po->bind_lock); rcu_read_lock(); + if (po->fanout) { + ret = -EINVAL; + goto out_unlock; + } + if (name) { dev = dev_get_by_name_rcu(sock_net(sk), name); if (!dev) { @@ -3627,9 +3637,9 @@ if (val > INT_MAX) return -EINVAL; lock_sock(sk); - if (po->rx_ring.pg_vec || po->tx_ring.pg_vec) + if (po->rx_ring.pg_vec || po->tx_ring.pg_vec) { ret = -EBUSY; - else { + } else { po->tp_reserve = val; ret = 0; } @@ -3802,6 +3812,8 @@ case PACKET_HDRLEN: if (len > sizeof(int)) len = sizeof(int); + if (len < sizeof(int)) + return -EINVAL; if (copy_from_user(&val, optval, len)) return -EFAULT; switch (val) { @@ -4230,7 +4242,7 @@ register_prot_hook(sk); } spin_unlock(&po->bind_lock); - if (closing && (po->tp_version > TPACKET_V2)) { + if (pg_vec && (po->tp_version > TPACKET_V2)) { /* Because we don't support block-based V3 on tx-ring */ if (!tx_ring) prb_shutdown_retire_blk_timer(po, rb_queue); diff -u linux-raspi2-4.4.0/net/rds/ib_send.c linux-raspi2-4.4.0/net/rds/ib_send.c --- linux-raspi2-4.4.0/net/rds/ib_send.c +++ linux-raspi2-4.4.0/net/rds/ib_send.c @@ -68,16 +68,6 @@ complete(rm, notify_status); } -static void rds_ib_send_unmap_data(struct rds_ib_connection *ic, - struct rm_data_op *op, - int wc_status) -{ - if (op->op_nents) - ib_dma_unmap_sg(ic->i_cm_id->device, - op->op_sg, op->op_nents, - DMA_TO_DEVICE); -} - static void rds_ib_send_unmap_rdma(struct rds_ib_connection *ic, struct rm_rdma_op *op, int wc_status) @@ -138,6 +128,21 @@ rds_ib_stats_inc(s_ib_atomic_fadd); } +static void rds_ib_send_unmap_data(struct rds_ib_connection *ic, + struct rm_data_op *op, + int wc_status) +{ + struct rds_message *rm = container_of(op, struct rds_message, data); + + if (op->op_nents) + ib_dma_unmap_sg(ic->i_cm_id->device, + op->op_sg, op->op_nents, + DMA_TO_DEVICE); + + if (rm->rdma.op_active && rm->data.op_notify) + rds_ib_send_unmap_rdma(ic, &rm->rdma, wc_status); +} + /* * Unmap the resources associated with a struct send_work. * diff -u linux-raspi2-4.4.0/net/sched/sch_api.c linux-raspi2-4.4.0/net/sched/sch_api.c --- linux-raspi2-4.4.0/net/sched/sch_api.c +++ linux-raspi2-4.4.0/net/sched/sch_api.c @@ -1004,6 +1004,9 @@ return sch; } + /* ops->init() failed, we call ->destroy() like qdisc_create_dflt() */ + if (ops->destroy) + ops->destroy(sch); err_out3: dev_put(dev); kfree((char *) sch - sch->padded); diff -u linux-raspi2-4.4.0/net/sched/sch_hhf.c linux-raspi2-4.4.0/net/sched/sch_hhf.c --- linux-raspi2-4.4.0/net/sched/sch_hhf.c +++ linux-raspi2-4.4.0/net/sched/sch_hhf.c @@ -636,7 +636,9 @@ q->hhf_arrays[i] = hhf_zalloc(HHF_ARRAYS_LEN * sizeof(u32)); if (!q->hhf_arrays[i]) { - hhf_destroy(sch); + /* Note: hhf_destroy() will be called + * by our caller. + */ return -ENOMEM; } } @@ -647,7 +649,9 @@ q->hhf_valid_bits[i] = hhf_zalloc(HHF_ARRAYS_LEN / BITS_PER_BYTE); if (!q->hhf_valid_bits[i]) { - hhf_destroy(sch); + /* Note: hhf_destroy() will be called + * by our caller. + */ return -ENOMEM; } } diff -u linux-raspi2-4.4.0/net/sched/sch_mqprio.c linux-raspi2-4.4.0/net/sched/sch_mqprio.c --- linux-raspi2-4.4.0/net/sched/sch_mqprio.c +++ linux-raspi2-4.4.0/net/sched/sch_mqprio.c @@ -118,20 +118,17 @@ /* pre-allocate qdisc, attachment can't fail */ priv->qdiscs = kcalloc(dev->num_tx_queues, sizeof(priv->qdiscs[0]), GFP_KERNEL); - if (priv->qdiscs == NULL) { - err = -ENOMEM; - goto err; - } + if (!priv->qdiscs) + return -ENOMEM; for (i = 0; i < dev->num_tx_queues; i++) { dev_queue = netdev_get_tx_queue(dev, i); qdisc = qdisc_create_dflt(dev_queue, default_qdisc_ops, TC_H_MAKE(TC_H_MAJ(sch->handle), TC_H_MIN(i + 1))); - if (qdisc == NULL) { - err = -ENOMEM; - goto err; - } + if (!qdisc) + return -ENOMEM; + priv->qdiscs[i] = qdisc; qdisc->flags |= TCQ_F_ONETXQUEUE | TCQ_F_NOPARENT; } @@ -147,7 +144,7 @@ priv->hw_owned = 1; err = dev->netdev_ops->ndo_setup_tc(dev, sch->handle, 0, &tc); if (err) - goto err; + return err; } else { netdev_set_num_tc(dev, qopt->num_tc); for (i = 0; i < qopt->num_tc; i++) @@ -161,10 +158,6 @@ sch->flags |= TCQ_F_MQROOT; return 0; - -err: - mqprio_destroy(sch); - return err; } static void mqprio_attach(struct Qdisc *sch) diff -u linux-raspi2-4.4.0/net/sched/sch_sfq.c linux-raspi2-4.4.0/net/sched/sch_sfq.c --- linux-raspi2-4.4.0/net/sched/sch_sfq.c +++ linux-raspi2-4.4.0/net/sched/sch_sfq.c @@ -434,6 +434,7 @@ qdisc_drop(head, sch); slot_queue_add(slot, skb); + qdisc_tree_reduce_backlog(sch, 0, delta); return NET_XMIT_CN; } @@ -465,8 +466,10 @@ /* Return Congestion Notification only if we dropped a packet * from this flow. */ - if (qlen != slot->qlen) + if (qlen != slot->qlen) { + qdisc_tree_reduce_backlog(sch, 0, dropped - qdisc_pkt_len(skb)); return NET_XMIT_CN; + } /* As we dropped a packet, better let upper stack know this */ qdisc_tree_reduce_backlog(sch, 1, dropped); @@ -742,9 +745,10 @@ q->ht = sfq_alloc(sizeof(q->ht[0]) * q->divisor); q->slots = sfq_alloc(sizeof(q->slots[0]) * q->maxflows); if (!q->ht || !q->slots) { - sfq_destroy(sch); + /* Note: sfq_destroy() will be called by our caller */ return -ENOMEM; } + for (i = 0; i < q->divisor; i++) q->ht[i] = SFQ_EMPTY_SLOT; diff -u linux-raspi2-4.4.0/net/sctp/ipv6.c linux-raspi2-4.4.0/net/sctp/ipv6.c --- linux-raspi2-4.4.0/net/sctp/ipv6.c +++ linux-raspi2-4.4.0/net/sctp/ipv6.c @@ -510,7 +510,9 @@ { addr->sa.sa_family = AF_INET6; addr->v6.sin6_port = port; + addr->v6.sin6_flowinfo = 0; addr->v6.sin6_addr = *saddr; + addr->v6.sin6_scope_id = 0; } /* Compare addresses exactly. diff -u linux-raspi2-4.4.0/net/sctp/output.c linux-raspi2-4.4.0/net/sctp/output.c --- linux-raspi2-4.4.0/net/sctp/output.c +++ linux-raspi2-4.4.0/net/sctp/output.c @@ -380,6 +380,7 @@ { struct sctp_transport *tp = packet->transport; struct sctp_association *asoc = tp->asoc; + int confirm; struct sctphdr *sh; struct sk_buff *nskb; struct sctp_chunk *chunk, *tmp; @@ -592,7 +593,14 @@ pr_debug("***sctp_transmit_packet*** skb->len:%d\n", nskb->len); nskb->ignore_df = packet->ipfragok; - tp->af_specific->sctp_xmit(nskb, tp); + confirm = tp->dst_pending_confirm; + if (confirm) + skb_set_dst_pending_confirm(nskb, 1); + /* neighbour should be confirmed on successful transmission or + * positive error + */ + if (tp->af_specific->sctp_xmit(nskb, tp) >= 0 && confirm) + tp->dst_pending_confirm = 0; out: sctp_packet_reset(packet); diff -u linux-raspi2-4.4.0/net/sctp/socket.c linux-raspi2-4.4.0/net/sctp/socket.c --- linux-raspi2-4.4.0/net/sctp/socket.c +++ linux-raspi2-4.4.0/net/sctp/socket.c @@ -590,7 +590,7 @@ list_for_each_entry(trans, &asoc->peer.transport_addr_list, transports) { /* Clear the source and route cache */ - dst_release(trans->dst); + sctp_transport_dst_release(trans); trans->cwnd = min(4*asoc->pathmtu, max_t(__u32, 2*asoc->pathmtu, 4380)); trans->ssthresh = asoc->peer.i.a_rwnd; @@ -841,7 +841,7 @@ */ list_for_each_entry(transport, &asoc->peer.transport_addr_list, transports) { - dst_release(transport->dst); + sctp_transport_dst_release(transport); sctp_transport_route(transport, NULL, sctp_sk(asoc->base.sk)); } diff -u linux-raspi2-4.4.0/net/tipc/netlink_compat.c linux-raspi2-4.4.0/net/tipc/netlink_compat.c --- linux-raspi2-4.4.0/net/tipc/netlink_compat.c +++ linux-raspi2-4.4.0/net/tipc/netlink_compat.c @@ -258,13 +258,15 @@ arg = nlmsg_new(0, GFP_KERNEL); if (!arg) { kfree_skb(msg->rep); + msg->rep = NULL; return -ENOMEM; } err = __tipc_nl_compat_dumpit(cmd, msg, arg); - if (err) + if (err) { kfree_skb(msg->rep); - + msg->rep = NULL; + } kfree_skb(arg); return err; diff -u linux-raspi2-4.4.0/net/wireless/nl80211.c linux-raspi2-4.4.0/net/wireless/nl80211.c --- linux-raspi2-4.4.0/net/wireless/nl80211.c +++ linux-raspi2-4.4.0/net/wireless/nl80211.c @@ -302,8 +302,7 @@ [NL80211_ATTR_WPA_VERSIONS] = { .type = NLA_U32 }, [NL80211_ATTR_PID] = { .type = NLA_U32 }, [NL80211_ATTR_4ADDR] = { .type = NLA_U8 }, - [NL80211_ATTR_PMKID] = { .type = NLA_BINARY, - .len = WLAN_PMKID_LEN }, + [NL80211_ATTR_PMKID] = { .len = WLAN_PMKID_LEN }, [NL80211_ATTR_DURATION] = { .type = NLA_U32 }, [NL80211_ATTR_COOKIE] = { .type = NLA_U64 }, [NL80211_ATTR_TX_RATES] = { .type = NLA_NESTED }, @@ -359,6 +358,7 @@ [NL80211_ATTR_SCAN_FLAGS] = { .type = NLA_U32 }, [NL80211_ATTR_P2P_CTWINDOW] = { .type = NLA_U8 }, [NL80211_ATTR_P2P_OPPPS] = { .type = NLA_U8 }, + [NL80211_ATTR_LOCAL_MESH_POWER_MODE] = {. type = NLA_U32 }, [NL80211_ATTR_ACL_POLICY] = {. type = NLA_U32 }, [NL80211_ATTR_MAC_ADDRS] = { .type = NLA_NESTED }, [NL80211_ATTR_STA_CAPABILITY] = { .type = NLA_U16 }, @@ -485,6 +485,14 @@ [NL80211_SCHED_SCAN_PLAN_ITERATIONS] = { .type = NLA_U32 }, }; +/* policy for packet pattern attributes */ +static const struct nla_policy +nl80211_packet_pattern_policy[MAX_NL80211_PKTPAT + 1] = { + [NL80211_PKTPAT_MASK] = { .type = NLA_BINARY, }, + [NL80211_PKTPAT_PATTERN] = { .type = NLA_BINARY, }, + [NL80211_PKTPAT_OFFSET] = { .type = NLA_U32 }, +}; + static int nl80211_prepare_wdev_dump(struct sk_buff *skb, struct netlink_callback *cb, struct cfg80211_registered_device **rdev, @@ -5705,6 +5713,10 @@ struct nlattr *attr1, *attr2; int n_channels = 0, tmp1, tmp2; + nla_for_each_nested(attr1, freqs, tmp1) + if (nla_len(attr1) != sizeof(u32)) + return 0; + nla_for_each_nested(attr1, freqs, tmp1) { n_channels++; /* @@ -9406,7 +9418,7 @@ u8 *mask_pat; nla_parse(pat_tb, MAX_NL80211_PKTPAT, nla_data(pat), - nla_len(pat), NULL); + nla_len(pat), nl80211_packet_pattern_policy); err = -EINVAL; if (!pat_tb[NL80211_PKTPAT_MASK] || !pat_tb[NL80211_PKTPAT_PATTERN]) @@ -9656,7 +9668,7 @@ u8 *mask_pat; nla_parse(pat_tb, MAX_NL80211_PKTPAT, nla_data(pat), - nla_len(pat), NULL); + nla_len(pat), nl80211_packet_pattern_policy); if (!pat_tb[NL80211_PKTPAT_MASK] || !pat_tb[NL80211_PKTPAT_PATTERN]) return -EINVAL; @@ -9782,6 +9794,9 @@ if (err) return err; + if (!tb[NL80211_REKEY_DATA_REPLAY_CTR] || !tb[NL80211_REKEY_DATA_KEK] || + !tb[NL80211_REKEY_DATA_KCK]) + return -EINVAL; if (nla_len(tb[NL80211_REKEY_DATA_REPLAY_CTR]) != NL80211_REPLAY_CTR_LEN) return -ERANGE; if (nla_len(tb[NL80211_REKEY_DATA_KEK]) != NL80211_KEK_LEN) diff -u linux-raspi2-4.4.0/net/xfrm/xfrm_policy.c linux-raspi2-4.4.0/net/xfrm/xfrm_policy.c --- linux-raspi2-4.4.0/net/xfrm/xfrm_policy.c +++ linux-raspi2-4.4.0/net/xfrm/xfrm_policy.c @@ -1220,7 +1220,7 @@ } static struct xfrm_policy *xfrm_sk_policy_lookup(const struct sock *sk, int dir, - const struct flowi *fl) + const struct flowi *fl, u16 family) { struct xfrm_policy *pol; struct net *net = sock_net(sk); @@ -1229,8 +1229,7 @@ read_lock_bh(&net->xfrm.xfrm_policy_lock); pol = rcu_dereference(sk->sk_policy[dir]); if (pol != NULL) { - bool match = xfrm_selector_match(&pol->selector, fl, - sk->sk_family); + bool match = xfrm_selector_match(&pol->selector, fl, family); int err = 0; if (match) { @@ -2178,7 +2177,7 @@ sk = sk_const_to_full_sk(sk); if (sk && sk->sk_policy[XFRM_POLICY_OUT]) { num_pols = 1; - pols[0] = xfrm_sk_policy_lookup(sk, XFRM_POLICY_OUT, fl); + pols[0] = xfrm_sk_policy_lookup(sk, XFRM_POLICY_OUT, fl, family); err = xfrm_expand_policies(fl, family, pols, &num_pols, &num_xfrms); if (err < 0) @@ -2457,7 +2456,7 @@ pol = NULL; sk = sk_to_full_sk(sk); if (sk && sk->sk_policy[dir]) { - pol = xfrm_sk_policy_lookup(sk, dir, &fl); + pol = xfrm_sk_policy_lookup(sk, dir, &fl, family); if (IS_ERR(pol)) { XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR); return 0; @@ -2781,6 +2780,23 @@ return dst->path->ops->neigh_lookup(dst, skb, daddr); } +static void xfrm_confirm_neigh(const struct dst_entry *dst, const void *daddr) +{ + const struct dst_entry *path = dst->path; + + for (; dst != path; dst = dst->child) { + const struct xfrm_state *xfrm = dst->xfrm; + + if (xfrm->props.mode == XFRM_MODE_TRANSPORT) + continue; + if (xfrm->type->flags & XFRM_TYPE_REMOTE_COADDR) + daddr = xfrm->coaddr; + else if (!(xfrm->type->flags & XFRM_TYPE_LOCAL_COADDR)) + daddr = &xfrm->id.daddr; + } + path->ops->confirm_neigh(path, daddr); +} + int xfrm_policy_register_afinfo(struct xfrm_policy_afinfo *afinfo) { int err = 0; @@ -2807,6 +2823,8 @@ dst_ops->link_failure = xfrm_link_failure; if (likely(dst_ops->neigh_lookup == NULL)) dst_ops->neigh_lookup = xfrm_neigh_lookup; + if (likely(!dst_ops->confirm_neigh)) + dst_ops->confirm_neigh = xfrm_confirm_neigh; if (likely(afinfo->garbage_collect == NULL)) afinfo->garbage_collect = xfrm_garbage_collect_deferred; rcu_assign_pointer(xfrm_policy_afinfo[afinfo->family], afinfo); @@ -3280,9 +3298,15 @@ struct xfrm_state *x_new[XFRM_MAX_DEPTH]; struct xfrm_migrate *mp; + /* Stage 0 - sanity checks */ if ((err = xfrm_migrate_check(m, num_migrate)) < 0) goto out; + if (dir >= XFRM_POLICY_MAX) { + err = -EINVAL; + goto out; + } + /* Stage 1 - find policy */ if ((pol = xfrm_migrate_policy_find(sel, dir, type, net)) == NULL) { err = -ENOENT; diff -u linux-raspi2-4.4.0/net/xfrm/xfrm_user.c linux-raspi2-4.4.0/net/xfrm/xfrm_user.c --- linux-raspi2-4.4.0/net/xfrm/xfrm_user.c +++ linux-raspi2-4.4.0/net/xfrm/xfrm_user.c @@ -1652,32 +1652,34 @@ static int xfrm_dump_policy_done(struct netlink_callback *cb) { - struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *) &cb->args[1]; + struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args; struct net *net = sock_net(cb->skb->sk); xfrm_policy_walk_done(walk, net); return 0; } +static int xfrm_dump_policy_start(struct netlink_callback *cb) +{ + struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args; + + BUILD_BUG_ON(sizeof(*walk) > sizeof(cb->args)); + + xfrm_policy_walk_init(walk, XFRM_POLICY_TYPE_ANY); + return 0; +} + static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb) { struct net *net = sock_net(skb->sk); - struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *) &cb->args[1]; + struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args; struct xfrm_dump_info info; - BUILD_BUG_ON(sizeof(struct xfrm_policy_walk) > - sizeof(cb->args) - sizeof(cb->args[0])); - info.in_skb = cb->skb; info.out_skb = skb; info.nlmsg_seq = cb->nlh->nlmsg_seq; info.nlmsg_flags = NLM_F_MULTI; - if (!cb->args[0]) { - cb->args[0] = 1; - xfrm_policy_walk_init(walk, XFRM_POLICY_TYPE_ANY); - } - (void) xfrm_policy_walk(net, walk, dump_one_policy, &info); return skb->len; @@ -2415,6 +2417,7 @@ static const struct xfrm_link { int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **); + int (*start)(struct netlink_callback *); int (*dump)(struct sk_buff *, struct netlink_callback *); int (*done)(struct netlink_callback *); const struct nla_policy *nla_pol; @@ -2428,6 +2431,7 @@ [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy }, [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy }, [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy, + .start = xfrm_dump_policy_start, .dump = xfrm_dump_policy, .done = xfrm_dump_policy_done }, [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi }, @@ -2479,6 +2483,7 @@ { struct netlink_dump_control c = { + .start = link->start, .dump = link->dump, .done = link->done, }; diff -u linux-raspi2-4.4.0/security/apparmor/lsm.c linux-raspi2-4.4.0/security/apparmor/lsm.c --- linux-raspi2-4.4.0/security/apparmor/lsm.c +++ linux-raspi2-4.4.0/security/apparmor/lsm.c @@ -41,7 +41,7 @@ #include "include/mount.h" /* Flag indicating whether initialization completed */ -int apparmor_initialized __initdata; +int apparmor_initialized; DEFINE_PER_CPU(struct aa_buffers, aa_buffers); @@ -1409,74 +1409,83 @@ /* set global flag turning off the ability to load policy */ static int param_set_aalockpolicy(const char *val, const struct kernel_param *kp) { - if (!policy_admin_capable(NULL)) + if (!apparmor_enabled) + return -EINVAL; + if (apparmor_initialized && !policy_admin_capable(NULL)) return -EPERM; return param_set_bool(val, kp); } static int param_get_aalockpolicy(char *buffer, const struct kernel_param *kp) { - if (!policy_view_capable(NULL)) - return -EPERM; if (!apparmor_enabled) return -EINVAL; + if (apparmor_initialized && !policy_view_capable(NULL)) + return -EPERM; return param_get_bool(buffer, kp); } static int param_set_aabool(const char *val, const struct kernel_param *kp) { - if (!policy_admin_capable(NULL)) - return -EPERM; if (!apparmor_enabled) return -EINVAL; + if (apparmor_initialized && !policy_admin_capable(NULL)) + return -EPERM; return param_set_bool(val, kp); } static int param_get_aabool(char *buffer, const struct kernel_param *kp) { - if (!policy_view_capable(NULL)) - return -EPERM; if (!apparmor_enabled) return -EINVAL; + if (apparmor_initialized && !policy_view_capable(NULL)) + return -EPERM; return param_get_bool(buffer, kp); } static int param_set_aauint(const char *val, const struct kernel_param *kp) { - if (!policy_admin_capable(NULL)) - return -EPERM; + int error; + if (!apparmor_enabled) return -EINVAL; - return param_set_uint(val, kp); + if (apparmor_initialized && !policy_admin_capable(NULL)) + return -EPERM; + + error = param_set_uint(val, kp); + pr_info("AppArmor: buffer size set to %d bytes\n", aa_g_path_max); + + return error; } static int param_get_aauint(char *buffer, const struct kernel_param *kp) { - if (!policy_view_capable(NULL)) - return -EPERM; if (!apparmor_enabled) return -EINVAL; + if (apparmor_initialized && !policy_view_capable(NULL)) + return -EPERM; return param_get_uint(buffer, kp); } static int param_get_audit(char *buffer, struct kernel_param *kp) { - if (!policy_view_capable(NULL)) - return -EPERM; if (!apparmor_enabled) return -EINVAL; + if (apparmor_initialized && !policy_view_capable(NULL)) + return -EPERM; return sprintf(buffer, "%s", audit_mode_names[aa_g_audit]); } static int param_set_audit(const char *val, struct kernel_param *kp) { int i; - if (!policy_admin_capable(NULL)) - return -EPERM; + if (!apparmor_enabled) return -EINVAL; if (!val) return -EINVAL; + if (apparmor_initialized && !policy_admin_capable(NULL)) + return -EPERM; for (i = 0; i < AUDIT_MAX_INDEX; i++) { if (strcmp(val, audit_mode_names[i]) == 0) { @@ -1490,10 +1499,10 @@ static int param_get_mode(char *buffer, struct kernel_param *kp) { - if (!policy_view_capable(NULL)) - return -EPERM; if (!apparmor_enabled) return -EINVAL; + if (apparmor_initialized && !policy_view_capable(NULL)) + return -EPERM; return sprintf(buffer, "%s", aa_profile_mode_names[aa_g_profile_mode]); } @@ -1501,12 +1510,13 @@ static int param_set_mode(const char *val, struct kernel_param *kp) { int i; - if (!policy_admin_capable(NULL)) - return -EPERM; + if (!apparmor_enabled) return -EINVAL; if (!val) return -EINVAL; + if (apparmor_initialized && !policy_admin_capable(NULL)) + return -EPERM; for (i = 0; i < APPARMOR_MODE_NAMES_MAX_INDEX; i++) { if (strcmp(val, aa_profile_mode_names[i]) == 0) { diff -u linux-raspi2-4.4.0/security/keys/gc.c linux-raspi2-4.4.0/security/keys/gc.c --- linux-raspi2-4.4.0/security/keys/gc.c +++ linux-raspi2-4.4.0/security/keys/gc.c @@ -129,15 +129,15 @@ while (!list_empty(keys)) { struct key *key = list_entry(keys->next, struct key, graveyard_link); + short state = key->state; + list_del(&key->graveyard_link); kdebug("- %u", key->serial); key_check(key); /* Throw away the key data if the key is instantiated */ - if (test_bit(KEY_FLAG_INSTANTIATED, &key->flags) && - !test_bit(KEY_FLAG_NEGATIVE, &key->flags) && - key->type->destroy) + if (state == KEY_IS_POSITIVE && key->type->destroy) key->type->destroy(key); security_key_free(key); @@ -151,7 +151,7 @@ } atomic_dec(&key->user->nkeys); - if (test_bit(KEY_FLAG_INSTANTIATED, &key->flags)) + if (state != KEY_IS_UNINSTANTIATED) atomic_dec(&key->user->nikeys); key_user_put(key->user); diff -u linux-raspi2-4.4.0/security/keys/key.c linux-raspi2-4.4.0/security/keys/key.c --- linux-raspi2-4.4.0/security/keys/key.c +++ linux-raspi2-4.4.0/security/keys/key.c @@ -298,6 +298,8 @@ key->flags |= 1 << KEY_FLAG_TRUSTED; if (flags & KEY_ALLOC_BUILT_IN) key->flags |= 1 << KEY_FLAG_BUILTIN; + if (flags & KEY_ALLOC_UID_KEYRING) + key->flags |= 1 << KEY_FLAG_UID_KEYRING; #ifdef KEY_DEBUGGING key->magic = KEY_DEBUG_MAGIC; @@ -396,6 +398,18 @@ EXPORT_SYMBOL(key_payload_reserve); /* + * Change the key state to being instantiated. + */ +static void mark_key_instantiated(struct key *key, int reject_error) +{ + /* Commit the payload before setting the state; barrier versus + * key_read_state(). + */ + smp_store_release(&key->state, + (reject_error < 0) ? reject_error : KEY_IS_POSITIVE); +} + +/* * Instantiate a key and link it into the target keyring atomically. Must be * called with the target keyring's semaphore writelocked. The target key's * semaphore need not be locked as instantiation is serialised by @@ -418,14 +432,14 @@ mutex_lock(&key_construction_mutex); /* can't instantiate twice */ - if (!test_bit(KEY_FLAG_INSTANTIATED, &key->flags)) { + if (key->state == KEY_IS_UNINSTANTIATED) { /* instantiate the key */ ret = key->type->instantiate(key, prep); if (ret == 0) { /* mark the key as being instantiated */ atomic_inc(&key->user->nikeys); - set_bit(KEY_FLAG_INSTANTIATED, &key->flags); + mark_key_instantiated(key, 0); if (test_and_clear_bit(KEY_FLAG_USER_CONSTRUCT, &key->flags)) awaken = 1; @@ -553,13 +567,10 @@ mutex_lock(&key_construction_mutex); /* can't instantiate twice */ - if (!test_bit(KEY_FLAG_INSTANTIATED, &key->flags)) { + if (key->state == KEY_IS_UNINSTANTIATED) { /* mark the key as being negatively instantiated */ atomic_inc(&key->user->nikeys); - key->reject_error = -error; - smp_wmb(); - set_bit(KEY_FLAG_NEGATIVE, &key->flags); - set_bit(KEY_FLAG_INSTANTIATED, &key->flags); + mark_key_instantiated(key, -error); now = current_kernel_time(); key->expiry = now.tv_sec + timeout; key_schedule_gc(key->expiry + key_gc_delay); @@ -731,8 +742,8 @@ ret = key->type->update(key, prep); if (ret == 0) - /* updating a negative key instantiates it */ - clear_bit(KEY_FLAG_NEGATIVE, &key->flags); + /* Updating a negative key positively instantiates it */ + mark_key_instantiated(key, 0); up_write(&key->sem); @@ -907,6 +918,16 @@ */ __key_link_end(keyring, &index_key, edit); + key = key_ref_to_ptr(key_ref); + if (test_bit(KEY_FLAG_USER_CONSTRUCT, &key->flags)) { + ret = wait_for_key_construction(key, true); + if (ret < 0) { + key_ref_put(key_ref); + key_ref = ERR_PTR(ret); + goto error_free_prep; + } + } + key_ref = __key_update(key_ref, &prep); goto error_free_prep; } @@ -957,8 +978,8 @@ ret = key->type->update(key, &prep); if (ret == 0) - /* updating a negative key instantiates it */ - clear_bit(KEY_FLAG_NEGATIVE, &key->flags); + /* Updating a negative key positively instantiates it */ + mark_key_instantiated(key, 0); up_write(&key->sem); diff -u linux-raspi2-4.4.0/security/keys/keyctl.c linux-raspi2-4.4.0/security/keys/keyctl.c --- linux-raspi2-4.4.0/security/keys/keyctl.c +++ linux-raspi2-4.4.0/security/keys/keyctl.c @@ -738,6 +738,10 @@ key = key_ref_to_ptr(key_ref); + ret = key_read_state(key); + if (ret < 0) + goto error2; /* Negatively instantiated */ + /* see if we can read it directly */ ret = key_permission(key_ref, KEY_NEED_READ); if (ret == 0) @@ -868,7 +872,7 @@ atomic_dec(&key->user->nkeys); atomic_inc(&newowner->nkeys); - if (test_bit(KEY_FLAG_INSTANTIATED, &key->flags)) { + if (key->state != KEY_IS_UNINSTANTIATED) { atomic_dec(&key->user->nikeys); atomic_inc(&newowner->nikeys); } diff -u linux-raspi2-4.4.0/security/keys/proc.c linux-raspi2-4.4.0/security/keys/proc.c --- linux-raspi2-4.4.0/security/keys/proc.c +++ linux-raspi2-4.4.0/security/keys/proc.c @@ -182,6 +182,7 @@ unsigned long timo; key_ref_t key_ref, skey_ref; char xbuf[16]; + short state; int rc; struct keyring_search_context ctx = { @@ -240,17 +241,19 @@ sprintf(xbuf, "%luw", timo / (60*60*24*7)); } + state = key_read_state(key); + #define showflag(KEY, LETTER, FLAG) \ (test_bit(FLAG, &(KEY)->flags) ? LETTER : '-') seq_printf(m, "%08x %c%c%c%c%c%c%c %5d %4s %08x %5d %5d %-9.9s ", key->serial, - showflag(key, 'I', KEY_FLAG_INSTANTIATED), + state != KEY_IS_UNINSTANTIATED ? 'I' : '-', showflag(key, 'R', KEY_FLAG_REVOKED), showflag(key, 'D', KEY_FLAG_DEAD), showflag(key, 'Q', KEY_FLAG_IN_QUOTA), showflag(key, 'U', KEY_FLAG_USER_CONSTRUCT), - showflag(key, 'N', KEY_FLAG_NEGATIVE), + state < 0 ? 'N' : '-', showflag(key, 'i', KEY_FLAG_INVALIDATED), atomic_read(&key->usage), xbuf, diff -u linux-raspi2-4.4.0/security/keys/process_keys.c linux-raspi2-4.4.0/security/keys/process_keys.c --- linux-raspi2-4.4.0/security/keys/process_keys.c +++ linux-raspi2-4.4.0/security/keys/process_keys.c @@ -76,7 +76,9 @@ if (IS_ERR(uid_keyring)) { uid_keyring = keyring_alloc(buf, user->uid, INVALID_GID, cred, user_keyring_perm, - KEY_ALLOC_IN_QUOTA, NULL); + KEY_ALLOC_UID_KEYRING | + KEY_ALLOC_IN_QUOTA, + NULL); if (IS_ERR(uid_keyring)) { ret = PTR_ERR(uid_keyring); goto error; @@ -92,7 +94,9 @@ session_keyring = keyring_alloc(buf, user->uid, INVALID_GID, cred, user_keyring_perm, - KEY_ALLOC_IN_QUOTA, NULL); + KEY_ALLOC_UID_KEYRING | + KEY_ALLOC_IN_QUOTA, + NULL); if (IS_ERR(session_keyring)) { ret = PTR_ERR(session_keyring); goto error_release; @@ -723,7 +727,7 @@ ret = -EIO; if (!(lflags & KEY_LOOKUP_PARTIAL) && - !test_bit(KEY_FLAG_INSTANTIATED, &key->flags)) + key_read_state(key) == KEY_IS_UNINSTANTIATED) goto invalid_key; /* check the permissions */ diff -u linux-raspi2-4.4.0/security/keys/trusted.c linux-raspi2-4.4.0/security/keys/trusted.c --- linux-raspi2-4.4.0/security/keys/trusted.c +++ linux-raspi2-4.4.0/security/keys/trusted.c @@ -70,7 +70,7 @@ } ret = crypto_shash_digest(&sdesc->shash, data, datalen, digest); - kfree(sdesc); + kzfree(sdesc); return ret; } @@ -114,7 +114,7 @@ if (!ret) ret = crypto_shash_final(&sdesc->shash, digest); out: - kfree(sdesc); + kzfree(sdesc); return ret; } @@ -165,7 +165,7 @@ paramdigest, TPM_NONCE_SIZE, h1, TPM_NONCE_SIZE, h2, 1, &c, 0, 0); out: - kfree(sdesc); + kzfree(sdesc); return ret; } @@ -246,7 +246,7 @@ if (memcmp(testhmac, authdata, SHA1_DIGEST_SIZE)) ret = -EINVAL; out: - kfree(sdesc); + kzfree(sdesc); return ret; } @@ -347,7 +347,7 @@ if (memcmp(testhmac2, authdata2, SHA1_DIGEST_SIZE)) ret = -EINVAL; out: - kfree(sdesc); + kzfree(sdesc); return ret; } @@ -564,7 +564,7 @@ *bloblen = storedsize; } out: - kfree(td); + kzfree(td); return ret; } @@ -678,7 +678,7 @@ if (ret < 0) pr_info("trusted_key: srkseal failed (%d)\n", ret); - kfree(tb); + kzfree(tb); return ret; } @@ -703,7 +703,7 @@ /* pull migratable flag out of sealed key */ p->migratable = p->key[--p->key_len]; - kfree(tb); + kzfree(tb); return ret; } @@ -1037,12 +1037,12 @@ if (!ret && options->pcrlock) ret = pcrlock(options->pcrlock); out: - kfree(datablob); - kfree(options); + kzfree(datablob); + kzfree(options); if (!ret) rcu_assign_keypointer(key, payload); else - kfree(payload); + kzfree(payload); return ret; } @@ -1051,8 +1051,7 @@ struct trusted_key_payload *p; p = container_of(rcu, struct trusted_key_payload, rcu); - memset(p->key, 0, p->key_len); - kfree(p); + kzfree(p); } /* @@ -1067,7 +1066,7 @@ char *datablob; int ret = 0; - if (test_bit(KEY_FLAG_NEGATIVE, &key->flags)) + if (key_is_negative(key)) return -ENOKEY; p = key->payload.data[0]; if (!p->migratable) @@ -1094,13 +1093,13 @@ ret = datablob_parse(datablob, new_p, new_o); if (ret != Opt_update) { ret = -EINVAL; - kfree(new_p); + kzfree(new_p); goto out; } if (!new_o->keyhandle) { ret = -EINVAL; - kfree(new_p); + kzfree(new_p); goto out; } @@ -1114,22 +1113,22 @@ ret = key_seal(new_p, new_o); if (ret < 0) { pr_info("trusted_key: key_seal failed (%d)\n", ret); - kfree(new_p); + kzfree(new_p); goto out; } if (new_o->pcrlock) { ret = pcrlock(new_o->pcrlock); if (ret < 0) { pr_info("trusted_key: pcrlock failed (%d)\n", ret); - kfree(new_p); + kzfree(new_p); goto out; } } rcu_assign_keypointer(key, new_p); call_rcu(&p->rcu, trusted_rcu_free); out: - kfree(datablob); - kfree(new_o); + kzfree(datablob); + kzfree(new_o); return ret; } @@ -1148,34 +1147,30 @@ p = rcu_dereference_key(key); if (!p) return -EINVAL; - if (!buffer || buflen <= 0) - return 2 * p->blob_len; - ascii_buf = kmalloc(2 * p->blob_len, GFP_KERNEL); - if (!ascii_buf) - return -ENOMEM; - - bufp = ascii_buf; - for (i = 0; i < p->blob_len; i++) - bufp = hex_byte_pack(bufp, p->blob[i]); - if ((copy_to_user(buffer, ascii_buf, 2 * p->blob_len)) != 0) { - kfree(ascii_buf); - return -EFAULT; + + if (buffer && buflen >= 2 * p->blob_len) { + ascii_buf = kmalloc(2 * p->blob_len, GFP_KERNEL); + if (!ascii_buf) + return -ENOMEM; + + bufp = ascii_buf; + for (i = 0; i < p->blob_len; i++) + bufp = hex_byte_pack(bufp, p->blob[i]); + if (copy_to_user(buffer, ascii_buf, 2 * p->blob_len) != 0) { + kzfree(ascii_buf); + return -EFAULT; + } + kzfree(ascii_buf); } - kfree(ascii_buf); return 2 * p->blob_len; } /* - * trusted_destroy - before freeing the key, clear the decrypted data + * trusted_destroy - clear and free the key's payload */ static void trusted_destroy(struct key *key) { - struct trusted_key_payload *p = key->payload.data[0]; - - if (!p) - return; - memset(p->key, 0, p->key_len); - kfree(key->payload.data[0]); + kzfree(key->payload.data[0]); } struct key_type key_type_trusted = { diff -u linux-raspi2-4.4.0/security/smack/smack_lsm.c linux-raspi2-4.4.0/security/smack/smack_lsm.c --- linux-raspi2-4.4.0/security/smack/smack_lsm.c +++ linux-raspi2-4.4.0/security/smack/smack_lsm.c @@ -1482,7 +1482,7 @@ * @inode: the object * @name: attribute name * @buffer: where to put the result - * @alloc: unused + * @alloc: duplicate memory * * Returns the size of the attribute or an error code */ @@ -1495,43 +1495,38 @@ struct super_block *sbp; struct inode *ip = (struct inode *)inode; struct smack_known *isp; - int ilen; - int rc = 0; - if (strcmp(name, XATTR_SMACK_SUFFIX) == 0) { + if (strcmp(name, XATTR_SMACK_SUFFIX) == 0) isp = smk_of_inode(inode); - ilen = strlen(isp->smk_known); - *buffer = isp->smk_known; - return ilen; + else { + /* + * The rest of the Smack xattrs are only on sockets. + */ + sbp = ip->i_sb; + if (sbp->s_magic != SOCKFS_MAGIC) + return -EOPNOTSUPP; + + sock = SOCKET_I(ip); + if (sock == NULL || sock->sk == NULL) + return -EOPNOTSUPP; + + ssp = sock->sk->sk_security; + + if (strcmp(name, XATTR_SMACK_IPIN) == 0) + isp = ssp->smk_in; + else if (strcmp(name, XATTR_SMACK_IPOUT) == 0) + isp = ssp->smk_out; + else + return -EOPNOTSUPP; } - /* - * The rest of the Smack xattrs are only on sockets. - */ - sbp = ip->i_sb; - if (sbp->s_magic != SOCKFS_MAGIC) - return -EOPNOTSUPP; - - sock = SOCKET_I(ip); - if (sock == NULL || sock->sk == NULL) - return -EOPNOTSUPP; - - ssp = sock->sk->sk_security; - - if (strcmp(name, XATTR_SMACK_IPIN) == 0) - isp = ssp->smk_in; - else if (strcmp(name, XATTR_SMACK_IPOUT) == 0) - isp = ssp->smk_out; - else - return -EOPNOTSUPP; - - ilen = strlen(isp->smk_known); - if (rc == 0) { - *buffer = isp->smk_known; - rc = ilen; + if (alloc) { + *buffer = kstrdup(isp->smk_known, GFP_KERNEL); + if (*buffer == NULL) + return -ENOMEM; } - return rc; + return strlen(isp->smk_known); } diff -u linux-raspi2-4.4.0/snapcraft.yaml linux-raspi2-4.4.0/snapcraft.yaml --- linux-raspi2-4.4.0/snapcraft.yaml +++ linux-raspi2-4.4.0/snapcraft.yaml @@ -1,7 +1,12 @@ -name: ubuntu-raspi2-kernel -version: 4.4.0 -summary: The Raspberry Pi 2/3 kernel for snappy -description: This is a snapped kernel, based off the xenial raspi2 branch and config +name: pi2-kernel +version: null +version-script: | + . debian/debian.env + dpkg-parsechangelog -l $DEBIAN/changelog -S version +summary: The Canonical raspi2 Linux kernel +description: The Canonical raspi2 Linux kernel +grade: stable +confinement: strict type: kernel parts: @@ -12,5 +17,42 @@ - kdefconfig: ['--makefile=debian/snapcraft.mk', 'branch=raspi2','flavour=raspi2', 'config'] + kconfigflavour: raspi2 kconfigs: - - CONFIG_LOCALVERSION="-xenial_raspi2" - CONFIG_DEBUG_INFO=n kernel-image-target: zImage + install: | + tar -C $SNAPCRAFT_PART_INSTALL/dtbs -f $SNAPCRAFT_PART_INSTALL/dtbs/overlays.tgz -czv overlays + rm -rf $SNAPCRAFT_PART_INSTALL/dtbs/overlays + firmware: + plugin: nil + stage-packages: + - linux-firmware + organize: + lib/firmware: firmware + prime: + - -usr + - -lib + install: | + rm $SNAPCRAFT_PART_INSTALL/lib/firmware/brcm/brcmfmac43430-sdio.bin + build-packages: + - cpio + - libssl-dev + - dpkg-dev + raspiwififw: + plugin: nil + source: . + after: + - firmware + prepare: | + PKGS="http://ppa.launchpad.net/snappy-dev/image/ubuntu/dists/xenial/main/binary-armhf/Packages.gz" + PKGPATH="$(wget -q -O- $PKGS|zcat|grep-dctrl raspberrypi-wireless-firmware |\ + grep Filename|tail -1| sed 's/^Filename: //')" + wget http://ppa.launchpad.net/snappy-dev/image/ubuntu/$PKGPATH + dpkg -x $(basename $PKGPATH) unpack/ + install: | + mkdir -p $SNAPCRAFT_PART_INSTALL/firmware/brcm + mv unpack/usr/share/doc/raspberrypi-wireless-firmware $SNAPCRAFT_PART_INSTALL/firmware/rpi-wlanfw-licenses + mv unpack/lib/firmware/brcm80211/brcm/* $SNAPCRAFT_PART_INSTALL/firmware/brcm + build-packages: + - coreutils + - dctrl-tools + - sed + - wget diff -u linux-raspi2-4.4.0/sound/core/compress_offload.c linux-raspi2-4.4.0/sound/core/compress_offload.c --- linux-raspi2-4.4.0/sound/core/compress_offload.c +++ linux-raspi2-4.4.0/sound/core/compress_offload.c @@ -872,14 +872,13 @@ static int snd_compress_dev_register(struct snd_device *device) { int ret = -EINVAL; - char str[16]; struct snd_compr *compr; if (snd_BUG_ON(!device || !device->device_data)) return -EBADFD; compr = device->device_data; - pr_debug("reg %s for device %s, direction %d\n", str, compr->name, + pr_debug("reg device %s, direction %d\n", compr->name, compr->direction); /* register compressed device */ ret = snd_register_device(SNDRV_DEVICE_TYPE_COMPRESS, diff -u linux-raspi2-4.4.0/sound/core/control.c linux-raspi2-4.4.0/sound/core/control.c --- linux-raspi2-4.4.0/sound/core/control.c +++ linux-raspi2-4.4.0/sound/core/control.c @@ -1126,7 +1126,7 @@ mutex_lock(&ue->card->user_ctl_lock); change = ue->tlv_data_size != size; if (!change) - change = memcmp(ue->tlv_data, new_data, size); + change = memcmp(ue->tlv_data, new_data, size) != 0; kfree(ue->tlv_data); ue->tlv_data = new_data; ue->tlv_data_size = size; diff -u linux-raspi2-4.4.0/sound/core/seq/seq_clientmgr.c linux-raspi2-4.4.0/sound/core/seq/seq_clientmgr.c --- linux-raspi2-4.4.0/sound/core/seq/seq_clientmgr.c +++ linux-raspi2-4.4.0/sound/core/seq/seq_clientmgr.c @@ -676,7 +676,7 @@ if (atomic) read_lock(&grp->list_lock); else - down_read(&grp->list_mutex); + down_read_nested(&grp->list_mutex, hop); list_for_each_entry(subs, &grp->list_head, src_list) { /* both ports ready? */ if (atomic_read(&subs->ref_count) != 2) @@ -1260,6 +1260,7 @@ struct snd_seq_client_port *port; struct snd_seq_port_info info; struct snd_seq_port_callback *callback; + int port_idx; if (copy_from_user(&info, arg, sizeof(info))) return -EFAULT; @@ -1273,7 +1274,9 @@ return -ENOMEM; if (client->type == USER_CLIENT && info.kernel) { - snd_seq_delete_port(client, port->addr.port); + port_idx = port->addr.port; + snd_seq_port_unlock(port); + snd_seq_delete_port(client, port_idx); return -EINVAL; } if (client->type == KERNEL_CLIENT) { @@ -1294,6 +1297,7 @@ snd_seq_set_port_info(port, &info); snd_seq_system_client_ev_port_start(port->addr.client, port->addr.port); + snd_seq_port_unlock(port); if (copy_to_user(arg, &info, sizeof(info))) return -EFAULT; @@ -1530,19 +1534,14 @@ void __user *arg) { struct snd_seq_queue_info info; - int result; struct snd_seq_queue *q; if (copy_from_user(&info, arg, sizeof(info))) return -EFAULT; - result = snd_seq_queue_alloc(client->number, info.locked, info.flags); - if (result < 0) - return result; - - q = queueptr(result); - if (q == NULL) - return -EINVAL; + q = snd_seq_queue_alloc(client->number, info.locked, info.flags); + if (IS_ERR(q)) + return PTR_ERR(q); info.queue = q->queue; info.locked = q->locked; @@ -1552,7 +1551,7 @@ if (! info.name[0]) snprintf(info.name, sizeof(info.name), "Queue-%d", q->queue); strlcpy(q->name, info.name, sizeof(q->name)); - queuefree(q); + snd_use_lock_free(&q->use_lock); if (copy_to_user(arg, &info, sizeof(info))) return -EFAULT; diff -u linux-raspi2-4.4.0/sound/core/seq/seq_lock.c linux-raspi2-4.4.0/sound/core/seq/seq_lock.c --- linux-raspi2-4.4.0/sound/core/seq/seq_lock.c +++ linux-raspi2-4.4.0/sound/core/seq/seq_lock.c @@ -23,8 +23,6 @@ #include #include "seq_lock.h" -#if defined(CONFIG_SMP) || defined(CONFIG_SND_DEBUG) - /* wait until all locks are released */ void snd_use_lock_sync_helper(snd_use_lock_t *lockp, const char *file, int line) { @@ -45,2 +42,0 @@ - -#endif diff -u linux-raspi2-4.4.0/sound/core/seq/seq_ports.c linux-raspi2-4.4.0/sound/core/seq/seq_ports.c --- linux-raspi2-4.4.0/sound/core/seq/seq_ports.c +++ linux-raspi2-4.4.0/sound/core/seq/seq_ports.c @@ -122,7 +122,9 @@ } -/* create a port, port number is returned (-1 on failure) */ +/* create a port, port number is returned (-1 on failure); + * the caller needs to unref the port via snd_seq_port_unlock() appropriately + */ struct snd_seq_client_port *snd_seq_create_port(struct snd_seq_client *client, int port) { @@ -151,6 +153,7 @@ snd_use_lock_init(&new_port->use_lock); port_subs_info_init(&new_port->c_src); port_subs_info_init(&new_port->c_dest); + snd_use_lock_use(&new_port->use_lock); num = port >= 0 ? port : 0; mutex_lock(&client->ports_mutex); @@ -165,9 +168,9 @@ list_add_tail(&new_port->list, &p->list); client->num_ports++; new_port->addr.port = num; /* store the port number in the port */ + sprintf(new_port->name, "port-%d", num); write_unlock_irqrestore(&client->ports_lock, flags); mutex_unlock(&client->ports_mutex); - sprintf(new_port->name, "port-%d", num); return new_port; } diff -u linux-raspi2-4.4.0/sound/core/seq/seq_queue.c linux-raspi2-4.4.0/sound/core/seq/seq_queue.c --- linux-raspi2-4.4.0/sound/core/seq/seq_queue.c +++ linux-raspi2-4.4.0/sound/core/seq/seq_queue.c @@ -184,22 +184,26 @@ static void queue_use(struct snd_seq_queue *queue, int client, int use); /* allocate a new queue - - * return queue index value or negative value for error + * return pointer to new queue or ERR_PTR(-errno) for error + * The new queue's use_lock is set to 1. It is the caller's responsibility to + * call snd_use_lock_free(&q->use_lock). */ -int snd_seq_queue_alloc(int client, int locked, unsigned int info_flags) +struct snd_seq_queue *snd_seq_queue_alloc(int client, int locked, unsigned int info_flags) { struct snd_seq_queue *q; q = queue_new(client, locked); if (q == NULL) - return -ENOMEM; + return ERR_PTR(-ENOMEM); q->info_flags = info_flags; queue_use(q, client, 1); + snd_use_lock_use(&q->use_lock); if (queue_list_add(q) < 0) { + snd_use_lock_free(&q->use_lock); queue_delete(q); - return -ENOMEM; + return ERR_PTR(-ENOMEM); } - return q->queue; + return q; } /* delete a queue - queue must be owned by the client */ diff -u linux-raspi2-4.4.0/sound/core/seq/seq_virmidi.c linux-raspi2-4.4.0/sound/core/seq/seq_virmidi.c --- linux-raspi2-4.4.0/sound/core/seq/seq_virmidi.c +++ linux-raspi2-4.4.0/sound/core/seq/seq_virmidi.c @@ -77,13 +77,17 @@ * decode input event and put to read buffer of each opened file */ static int snd_virmidi_dev_receive_event(struct snd_virmidi_dev *rdev, - struct snd_seq_event *ev) + struct snd_seq_event *ev, + bool atomic) { struct snd_virmidi *vmidi; unsigned char msg[4]; int len; - read_lock(&rdev->filelist_lock); + if (atomic) + read_lock(&rdev->filelist_lock); + else + down_read(&rdev->filelist_sem); list_for_each_entry(vmidi, &rdev->filelist, list) { if (!vmidi->trigger) continue; @@ -97,7 +101,10 @@ snd_rawmidi_receive(vmidi->substream, msg, len); } } - read_unlock(&rdev->filelist_lock); + if (atomic) + read_unlock(&rdev->filelist_lock); + else + up_read(&rdev->filelist_sem); return 0; } @@ -115,7 +122,7 @@ struct snd_virmidi_dev *rdev; rdev = rmidi->private_data; - return snd_virmidi_dev_receive_event(rdev, ev); + return snd_virmidi_dev_receive_event(rdev, ev, true); } #endif /* 0 */ @@ -130,7 +137,7 @@ rdev = private_data; if (!(rdev->flags & SNDRV_VIRMIDI_USE)) return 0; /* ignored */ - return snd_virmidi_dev_receive_event(rdev, ev); + return snd_virmidi_dev_receive_event(rdev, ev, atomic); } /* @@ -209,7 +216,6 @@ struct snd_virmidi_dev *rdev = substream->rmidi->private_data; struct snd_rawmidi_runtime *runtime = substream->runtime; struct snd_virmidi *vmidi; - unsigned long flags; vmidi = kzalloc(sizeof(*vmidi), GFP_KERNEL); if (vmidi == NULL) @@ -223,9 +229,11 @@ vmidi->client = rdev->client; vmidi->port = rdev->port; runtime->private_data = vmidi; - write_lock_irqsave(&rdev->filelist_lock, flags); + down_write(&rdev->filelist_sem); + write_lock_irq(&rdev->filelist_lock); list_add_tail(&vmidi->list, &rdev->filelist); - write_unlock_irqrestore(&rdev->filelist_lock, flags); + write_unlock_irq(&rdev->filelist_lock); + up_write(&rdev->filelist_sem); vmidi->rdev = rdev; return 0; } @@ -264,9 +272,11 @@ struct snd_virmidi_dev *rdev = substream->rmidi->private_data; struct snd_virmidi *vmidi = substream->runtime->private_data; + down_write(&rdev->filelist_sem); write_lock_irq(&rdev->filelist_lock); list_del(&vmidi->list); write_unlock_irq(&rdev->filelist_lock); + up_write(&rdev->filelist_sem); snd_midi_event_free(vmidi->parser); substream->runtime->private_data = NULL; kfree(vmidi); @@ -520,6 +530,7 @@ rdev->rmidi = rmidi; rdev->device = device; rdev->client = -1; + init_rwsem(&rdev->filelist_sem); rwlock_init(&rdev->filelist_lock); INIT_LIST_HEAD(&rdev->filelist); rdev->seq_mode = SNDRV_VIRMIDI_SEQ_DISPATCH; diff -u linux-raspi2-4.4.0/sound/core/timer_compat.c linux-raspi2-4.4.0/sound/core/timer_compat.c --- linux-raspi2-4.4.0/sound/core/timer_compat.c +++ linux-raspi2-4.4.0/sound/core/timer_compat.c @@ -106,7 +106,8 @@ #endif /* CONFIG_X86_X32 */ }; -static long snd_timer_user_ioctl_compat(struct file *file, unsigned int cmd, unsigned long arg) +static long __snd_timer_user_ioctl_compat(struct file *file, unsigned int cmd, + unsigned long arg) { void __user *argp = compat_ptr(arg); @@ -127,7 +128,7 @@ case SNDRV_TIMER_IOCTL_PAUSE: case SNDRV_TIMER_IOCTL_PAUSE_OLD: case SNDRV_TIMER_IOCTL_NEXT_DEVICE: - return snd_timer_user_ioctl(file, cmd, (unsigned long)argp); + return __snd_timer_user_ioctl(file, cmd, (unsigned long)argp); case SNDRV_TIMER_IOCTL_INFO32: return snd_timer_user_info_compat(file, argp); case SNDRV_TIMER_IOCTL_STATUS32: @@ -141,0 +143,12 @@ + +static long snd_timer_user_ioctl_compat(struct file *file, unsigned int cmd, + unsigned long arg) +{ + struct snd_timer_user *tu = file->private_data; + long ret; + + mutex_lock(&tu->ioctl_lock); + ret = __snd_timer_user_ioctl_compat(file, cmd, arg); + mutex_unlock(&tu->ioctl_lock); + return ret; +} diff -u linux-raspi2-4.4.0/sound/pci/au88x0/au88x0_core.c linux-raspi2-4.4.0/sound/pci/au88x0/au88x0_core.c --- linux-raspi2-4.4.0/sound/pci/au88x0/au88x0_core.c +++ linux-raspi2-4.4.0/sound/pci/au88x0/au88x0_core.c @@ -2150,8 +2150,7 @@ stream->resources, en, VORTEX_RESOURCE_SRC)) < 0) { memset(stream->resources, 0, - sizeof(unsigned char) * - VORTEX_RESOURCE_LAST); + sizeof(stream->resources)); return -EBUSY; } if (stream->type != VORTEX_PCM_A3D) { @@ -2161,7 +2160,7 @@ VORTEX_RESOURCE_MIXIN)) < 0) { memset(stream->resources, 0, - sizeof(unsigned char) * VORTEX_RESOURCE_LAST); + sizeof(stream->resources)); return -EBUSY; } } @@ -2174,8 +2173,7 @@ stream->resources, en, VORTEX_RESOURCE_A3D)) < 0) { memset(stream->resources, 0, - sizeof(unsigned char) * - VORTEX_RESOURCE_LAST); + sizeof(stream->resources)); dev_err(vortex->card->dev, "out of A3D sources. Sorry\n"); return -EBUSY; @@ -2281,6 +2279,9 @@ } else { int src[2], mix[2]; + if (nr_ch < 1) + return -EINVAL; + /* Get SRC and MIXER hardware resources. */ for (i = 0; i < nr_ch; i++) { if ((mix[i] = @@ -2289,8 +2290,7 @@ VORTEX_RESOURCE_MIXOUT)) < 0) { memset(stream->resources, 0, - sizeof(unsigned char) * - VORTEX_RESOURCE_LAST); + sizeof(stream->resources)); return -EBUSY; } if ((src[i] = @@ -2298,8 +2298,7 @@ stream->resources, en, VORTEX_RESOURCE_SRC)) < 0) { memset(stream->resources, 0, - sizeof(unsigned char) * - VORTEX_RESOURCE_LAST); + sizeof(stream->resources)); return -EBUSY; } } diff -u linux-raspi2-4.4.0/sound/pci/hda/patch_conexant.c linux-raspi2-4.4.0/sound/pci/hda/patch_conexant.c --- linux-raspi2-4.4.0/sound/pci/hda/patch_conexant.c +++ linux-raspi2-4.4.0/sound/pci/hda/patch_conexant.c @@ -854,6 +854,7 @@ SND_PCI_QUIRK(0x17aa, 0x390b, "Lenovo G50-80", CXT_FIXUP_STEREO_DMIC), SND_PCI_QUIRK(0x17aa, 0x3975, "Lenovo U300s", CXT_FIXUP_STEREO_DMIC), SND_PCI_QUIRK(0x17aa, 0x3977, "Lenovo IdeaPad U310", CXT_FIXUP_STEREO_DMIC), + SND_PCI_QUIRK(0x17aa, 0x3978, "Lenovo G50-70", CXT_FIXUP_STEREO_DMIC), SND_PCI_QUIRK(0x17aa, 0x397b, "Lenovo S205", CXT_FIXUP_STEREO_DMIC), SND_PCI_QUIRK_VENDOR(0x17aa, "Thinkpad", CXT_FIXUP_THINKPAD_ACPI), SND_PCI_QUIRK(0x1c06, 0x2011, "Lemote A1004", CXT_PINCFG_LEMOTE_A1004), diff -u linux-raspi2-4.4.0/sound/pci/hda/patch_realtek.c linux-raspi2-4.4.0/sound/pci/hda/patch_realtek.c --- linux-raspi2-4.4.0/sound/pci/hda/patch_realtek.c +++ linux-raspi2-4.4.0/sound/pci/hda/patch_realtek.c @@ -329,6 +329,7 @@ break; case 0x10ec0225: case 0x10ec0233: + case 0x10ec0236: case 0x10ec0255: case 0x10ec0256: case 0x10ec0282: @@ -909,6 +910,7 @@ { 0x10ec0275, 0x1028, 0, "ALC3260" }, { 0x10ec0899, 0x1028, 0, "ALC3861" }, { 0x10ec0298, 0x1028, 0, "ALC3266" }, + { 0x10ec0236, 0x1028, 0, "ALC3204" }, { 0x10ec0256, 0x1028, 0, "ALC3246" }, { 0x10ec0225, 0x1028, 0, "ALC3253" }, { 0x10ec0295, 0x1028, 0, "ALC3254" }, @@ -2233,6 +2235,7 @@ SND_PCI_QUIRK(0x1043, 0x8691, "ASUS ROG Ranger VIII", ALC882_FIXUP_GPIO3), SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC889_FIXUP_VAIO_TT), SND_PCI_QUIRK(0x104d, 0x905a, "Sony Vaio Z", ALC882_FIXUP_NO_PRIMARY_HP), + SND_PCI_QUIRK(0x104d, 0x9060, "Sony Vaio VPCL14M1R", ALC882_FIXUP_NO_PRIMARY_HP), SND_PCI_QUIRK(0x104d, 0x9043, "Sony Vaio VGC-LN51JGB", ALC882_FIXUP_NO_PRIMARY_HP), SND_PCI_QUIRK(0x104d, 0x9044, "Sony VAIO AiO", ALC882_FIXUP_NO_PRIMARY_HP), @@ -3693,6 +3696,7 @@ alc_process_coef_fw(codec, coef0255_1); alc_process_coef_fw(codec, coef0255); break; + case 0x10ec0236: case 0x10ec0256: alc_process_coef_fw(codec, coef0256); alc_process_coef_fw(codec, coef0255); @@ -3773,6 +3777,7 @@ switch (codec->core.vendor_id) { + case 0x10ec0236: case 0x10ec0255: case 0x10ec0256: alc_write_coef_idx(codec, 0x45, 0xc489); @@ -3878,6 +3883,7 @@ case 0x10ec0295: alc_process_coef_fw(codec, coef0225); break; + case 0x10ec0236: case 0x10ec0255: case 0x10ec0256: alc_process_coef_fw(codec, coef0255); @@ -3961,6 +3967,7 @@ case 0x10ec0255: alc_process_coef_fw(codec, coef0255); break; + case 0x10ec0236: case 0x10ec0256: alc_process_coef_fw(codec, coef0256); break; @@ -4051,6 +4058,7 @@ case 0x10ec0255: alc_process_coef_fw(codec, coef0255); break; + case 0x10ec0236: case 0x10ec0256: alc_process_coef_fw(codec, coef0256); break; @@ -4118,6 +4126,7 @@ }; switch (codec->core.vendor_id) { + case 0x10ec0236: case 0x10ec0255: case 0x10ec0256: alc_process_coef_fw(codec, coef0255); @@ -4319,6 +4328,7 @@ case 0x10ec0255: alc_process_coef_fw(codec, alc255fw); break; + case 0x10ec0236: case 0x10ec0256: alc_process_coef_fw(codec, alc256fw); break; @@ -5833,6 +5843,14 @@ ALC225_STANDARD_PINS, {0x12, 0xb7a60130}, {0x1b, 0x90170110}), + SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, + {0x12, 0x90a60140}, + {0x14, 0x90170110}, + {0x21, 0x02211020}), + SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, + {0x12, 0x90a60140}, + {0x14, 0x90170150}, + {0x21, 0x02211020}), SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL2_MIC_NO_PRESENCE, {0x14, 0x90170110}, {0x21, 0x02211020}), @@ -6207,6 +6225,7 @@ case 0x10ec0255: spec->codec_variant = ALC269_TYPE_ALC255; break; + case 0x10ec0236: case 0x10ec0256: spec->codec_variant = ALC269_TYPE_ALC256; spec->gen.mixer_nid = 0; /* ALC256 does not have any loopback mixer path */ @@ -7146,6 +7165,7 @@ HDA_CODEC_ENTRY(0x10ec0233, "ALC233", patch_alc269), HDA_CODEC_ENTRY(0x10ec0234, "ALC234", patch_alc269), HDA_CODEC_ENTRY(0x10ec0235, "ALC233", patch_alc269), + HDA_CODEC_ENTRY(0x10ec0236, "ALC236", patch_alc269), HDA_CODEC_ENTRY(0x10ec0255, "ALC255", patch_alc269), HDA_CODEC_ENTRY(0x10ec0256, "ALC256", patch_alc269), HDA_CODEC_ENTRY(0x10ec0260, "ALC260", patch_alc260), diff -u linux-raspi2-4.4.0/sound/soc/soc-compress.c linux-raspi2-4.4.0/sound/soc/soc-compress.c --- linux-raspi2-4.4.0/sound/soc/soc-compress.c +++ linux-raspi2-4.4.0/sound/soc/soc-compress.c @@ -68,7 +68,8 @@ static int soc_compr_open_fe(struct snd_compr_stream *cstream) { struct snd_soc_pcm_runtime *fe = cstream->private_data; - struct snd_pcm_substream *fe_substream = fe->pcm->streams[0].substream; + struct snd_pcm_substream *fe_substream = + fe->pcm->streams[cstream->direction].substream; struct snd_soc_platform *platform = fe->platform; struct snd_soc_dpcm *dpcm; struct snd_soc_dapm_widget_list *list; @@ -412,7 +413,8 @@ struct snd_compr_params *params) { struct snd_soc_pcm_runtime *fe = cstream->private_data; - struct snd_pcm_substream *fe_substream = fe->pcm->streams[0].substream; + struct snd_pcm_substream *fe_substream = + fe->pcm->streams[cstream->direction].substream; struct snd_soc_platform *platform = fe->platform; int ret = 0, stream; diff -u linux-raspi2-4.4.0/sound/soc/soc-dapm.c linux-raspi2-4.4.0/sound/soc/soc-dapm.c --- linux-raspi2-4.4.0/sound/soc/soc-dapm.c +++ linux-raspi2-4.4.0/sound/soc/soc-dapm.c @@ -358,6 +358,10 @@ snd_soc_dapm_new_control_unlocked(widget->dapm, &template); kfree(name); + if (IS_ERR(data->widget)) { + ret = PTR_ERR(data->widget); + goto err_data; + } if (!data->widget) { ret = -ENOMEM; goto err_data; @@ -392,6 +396,10 @@ data->widget = snd_soc_dapm_new_control_unlocked( widget->dapm, &template); kfree(name); + if (IS_ERR(data->widget)) { + ret = PTR_ERR(data->widget); + goto err_data; + } if (!data->widget) { ret = -ENOMEM; goto err_data; @@ -3278,11 +3286,22 @@ mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME); w = snd_soc_dapm_new_control_unlocked(dapm, widget); + /* Do not nag about probe deferrals */ + if (IS_ERR(w)) { + int ret = PTR_ERR(w); + + if (ret != -EPROBE_DEFER) + dev_err(dapm->dev, + "ASoC: Failed to create DAPM control %s (%d)\n", + widget->name, ret); + goto out_unlock; + } if (!w) dev_err(dapm->dev, "ASoC: Failed to create DAPM control %s\n", widget->name); +out_unlock: mutex_unlock(&dapm->card->dapm_mutex); return w; } @@ -3304,6 +3323,8 @@ w->regulator = devm_regulator_get(dapm->dev, w->name); if (IS_ERR(w->regulator)) { ret = PTR_ERR(w->regulator); + if (ret == -EPROBE_DEFER) + return ERR_PTR(ret); dev_err(dapm->dev, "ASoC: Failed to request %s: %d\n", w->name, ret); return NULL; @@ -3322,6 +3343,8 @@ w->clk = devm_clk_get(dapm->dev, w->name); if (IS_ERR(w->clk)) { ret = PTR_ERR(w->clk); + if (ret == -EPROBE_DEFER) + return ERR_PTR(ret); dev_err(dapm->dev, "ASoC: Failed to request %s: %d\n", w->name, ret); return NULL; @@ -3435,6 +3458,16 @@ mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT); for (i = 0; i < num; i++) { w = snd_soc_dapm_new_control_unlocked(dapm, widget); + if (IS_ERR(w)) { + ret = PTR_ERR(w); + /* Do not nag about probe deferrals */ + if (ret == -EPROBE_DEFER) + break; + dev_err(dapm->dev, + "ASoC: Failed to create DAPM control %s (%d)\n", + widget->name, ret); + break; + } if (!w) { dev_err(dapm->dev, "ASoC: Failed to create DAPM control %s\n", @@ -3701,6 +3734,15 @@ dev_dbg(card->dev, "ASoC: adding %s widget\n", link_name); w = snd_soc_dapm_new_control_unlocked(&card->dapm, &template); + if (IS_ERR(w)) { + ret = PTR_ERR(w); + /* Do not nag about probe deferrals */ + if (ret != -EPROBE_DEFER) + dev_err(card->dev, + "ASoC: Failed to create %s widget (%d)\n", + link_name, ret); + goto outfree_kcontrol_news; + } if (!w) { dev_err(card->dev, "ASoC: Failed to create %s widget\n", link_name); @@ -3752,6 +3794,16 @@ template.name); w = snd_soc_dapm_new_control_unlocked(dapm, &template); + if (IS_ERR(w)) { + int ret = PTR_ERR(w); + + /* Do not nag about probe deferrals */ + if (ret != -EPROBE_DEFER) + dev_err(dapm->dev, + "ASoC: Failed to create %s widget (%d)\n", + dai->driver->playback.stream_name, ret); + return ret; + } if (!w) { dev_err(dapm->dev, "ASoC: Failed to create %s widget\n", dai->driver->playback.stream_name); @@ -3771,6 +3823,16 @@ template.name); w = snd_soc_dapm_new_control_unlocked(dapm, &template); + if (IS_ERR(w)) { + int ret = PTR_ERR(w); + + /* Do not nag about probe deferrals */ + if (ret != -EPROBE_DEFER) + dev_err(dapm->dev, + "ASoC: Failed to create %s widget (%d)\n", + dai->driver->playback.stream_name, ret); + return ret; + } if (!w) { dev_err(dapm->dev, "ASoC: Failed to create %s widget\n", dai->driver->capture.stream_name); diff -u linux-raspi2-4.4.0/sound/soc/soc-pcm.c linux-raspi2-4.4.0/sound/soc/soc-pcm.c --- linux-raspi2-4.4.0/sound/soc/soc-pcm.c +++ linux-raspi2-4.4.0/sound/soc/soc-pcm.c @@ -181,6 +181,10 @@ dev_dbg(be->dev, "ASoC: BE %s event %d dir %d\n", be->dai_link->name, event, dir); + if ((event == SND_SOC_DAPM_STREAM_STOP) && + (be->dpcm[dir].users >= 1)) + continue; + snd_soc_dapm_stream_event(be, dir, event); } @@ -2073,9 +2077,11 @@ break; case SNDRV_PCM_TRIGGER_STOP: case SNDRV_PCM_TRIGGER_SUSPEND: - case SNDRV_PCM_TRIGGER_PAUSE_PUSH: fe->dpcm[stream].state = SND_SOC_DPCM_STATE_STOP; break; + case SNDRV_PCM_TRIGGER_PAUSE_PUSH: + fe->dpcm[stream].state = SND_SOC_DPCM_STATE_PAUSED; + break; } out: diff -u linux-raspi2-4.4.0/sound/soc/soc-topology.c linux-raspi2-4.4.0/sound/soc/soc-topology.c --- linux-raspi2-4.4.0/sound/soc/soc-topology.c +++ linux-raspi2-4.4.0/sound/soc/soc-topology.c @@ -1481,6 +1481,15 @@ widget = snd_soc_dapm_new_control(dapm, &template); else widget = snd_soc_dapm_new_control_unlocked(dapm, &template); + if (IS_ERR(widget)) { + ret = PTR_ERR(widget); + /* Do not nag about probe deferrals */ + if (ret != -EPROBE_DEFER) + dev_err(tplg->dev, + "ASoC: failed to create widget %s controls (%d)\n", + w->name, ret); + goto hdr_err; + } if (widget == NULL) { dev_err(tplg->dev, "ASoC: failed to create widget %s controls\n", w->name); diff -u linux-raspi2-4.4.0/sound/usb/card.c linux-raspi2-4.4.0/sound/usb/card.c --- linux-raspi2-4.4.0/sound/usb/card.c +++ linux-raspi2-4.4.0/sound/usb/card.c @@ -217,6 +217,7 @@ struct usb_interface_descriptor *altsd; void *control_header; int i, protocol; + int rest_bytes; /* find audiocontrol interface */ host_iface = &usb_ifnum_to_if(dev, ctrlif)->altsetting[0]; @@ -231,6 +232,15 @@ return -EINVAL; } + rest_bytes = (void *)(host_iface->extra + host_iface->extralen) - + control_header; + + /* just to be sure -- this shouldn't hit at all */ + if (rest_bytes <= 0) { + dev_err(&dev->dev, "invalid control header\n"); + return -EINVAL; + } + switch (protocol) { default: dev_warn(&dev->dev, @@ -241,11 +251,21 @@ case UAC_VERSION_1: { struct uac1_ac_header_descriptor *h1 = control_header; + if (rest_bytes < sizeof(*h1)) { + dev_err(&dev->dev, "too short v1 buffer descriptor\n"); + return -EINVAL; + } + if (!h1->bInCollection) { dev_info(&dev->dev, "skipping empty audio interface (v1)\n"); return -EINVAL; } + if (rest_bytes < h1->bLength) { + dev_err(&dev->dev, "invalid buffer length (v1)\n"); + return -EINVAL; + } + if (h1->bLength < sizeof(*h1) + h1->bInCollection) { dev_err(&dev->dev, "invalid UAC_HEADER (v1)\n"); return -EINVAL; diff -u linux-raspi2-4.4.0/sound/usb/endpoint.c linux-raspi2-4.4.0/sound/usb/endpoint.c --- linux-raspi2-4.4.0/sound/usb/endpoint.c +++ linux-raspi2-4.4.0/sound/usb/endpoint.c @@ -384,6 +384,9 @@ if (unlikely(atomic_read(&ep->chip->shutdown))) goto exit_clear; + if (unlikely(!test_bit(EP_FLAG_RUNNING, &ep->flags))) + goto exit_clear; + if (usb_pipeout(ep->pipe)) { retire_outbound_urb(ep, ctx); /* can be stopped during retire callback */ diff -u linux-raspi2-4.4.0/sound/usb/line6/driver.c linux-raspi2-4.4.0/sound/usb/line6/driver.c --- linux-raspi2-4.4.0/sound/usb/line6/driver.c +++ linux-raspi2-4.4.0/sound/usb/line6/driver.c @@ -586,9 +586,10 @@ return 0; error: - if (line6->disconnect) - line6->disconnect(line6); - snd_card_free(card); + /* we can call disconnect callback here because no close-sync is + * needed yet at this point + */ + line6_disconnect(interface); return ret; } EXPORT_SYMBOL_GPL(line6_probe); diff -u linux-raspi2-4.4.0/sound/usb/mixer.c linux-raspi2-4.4.0/sound/usb/mixer.c --- linux-raspi2-4.4.0/sound/usb/mixer.c +++ linux-raspi2-4.4.0/sound/usb/mixer.c @@ -541,6 +541,8 @@ if (size < sizeof(scale)) return -ENOMEM; + if (cval->min_mute) + scale[0] = SNDRV_CTL_TLVT_DB_MINMAX_MUTE; scale[2] = cval->dBmin; scale[3] = cval->dBmax; if (copy_to_user(_tlv, scale, sizeof(scale))) @@ -2159,6 +2161,9 @@ static void snd_usb_mixer_free(struct usb_mixer_interface *mixer) { + /* kill pending URBs */ + snd_usb_mixer_disconnect(mixer); + kfree(mixer->id_elems); if (mixer->urb) { kfree(mixer->urb->transfer_buffer); @@ -2502,8 +2507,13 @@ void snd_usb_mixer_disconnect(struct usb_mixer_interface *mixer) { - usb_kill_urb(mixer->urb); - usb_kill_urb(mixer->rc_urb); + if (mixer->disconnected) + return; + if (mixer->urb) + usb_kill_urb(mixer->urb); + if (mixer->rc_urb) + usb_kill_urb(mixer->rc_urb); + mixer->disconnected = true; } #ifdef CONFIG_PM diff -u linux-raspi2-4.4.0/sound/usb/mixer_quirks.c linux-raspi2-4.4.0/sound/usb/mixer_quirks.c --- linux-raspi2-4.4.0/sound/usb/mixer_quirks.c +++ linux-raspi2-4.4.0/sound/usb/mixer_quirks.c @@ -1874,4 +1874,10 @@ snd_dragonfly_quirk_db_scale(mixer, cval, kctl); break; + /* lowest playback value is muted on C-Media devices */ + case USB_ID(0x0d8c, 0x000c): + case USB_ID(0x0d8c, 0x0014): + if (strstr(kctl->id.name, "Playback")) + cval->min_mute = 1; + break; } } diff -u linux-raspi2-4.4.0/sound/usb/quirks.c linux-raspi2-4.4.0/sound/usb/quirks.c --- linux-raspi2-4.4.0/sound/usb/quirks.c +++ linux-raspi2-4.4.0/sound/usb/quirks.c @@ -1139,16 +1139,19 @@ case USB_ID(0x047F, 0x02F7): /* Plantronics BT-600 */ case USB_ID(0x047F, 0x0415): /* Plantronics BT-300 */ case USB_ID(0x047F, 0xAA05): /* Plantronics DA45 */ + case USB_ID(0x047F, 0xC022): /* Plantronics C310 */ + case USB_ID(0x047F, 0xC02F): /* Plantronics P610 */ + case USB_ID(0x047F, 0xC036): /* Plantronics C520-M */ case USB_ID(0x04D8, 0xFEEA): /* Benchmark DAC1 Pre */ case USB_ID(0x0556, 0x0014): /* Phoenix Audio TMX320VC */ case USB_ID(0x05A3, 0x9420): /* ELP HD USB Camera */ case USB_ID(0x074D, 0x3553): /* Outlaw RR2150 (Micronas UAC3553B) */ + case USB_ID(0x1395, 0x740a): /* Sennheiser DECT */ case USB_ID(0x1901, 0x0191): /* GE B850V3 CP2114 audio interface */ case USB_ID(0x1de7, 0x0013): /* Phoenix Audio MT202exe */ case USB_ID(0x1de7, 0x0014): /* Phoenix Audio TMX320 */ case USB_ID(0x1de7, 0x0114): /* Phoenix Audio MT202pcs */ case USB_ID(0x21B4, 0x0081): /* AudioQuest DragonFly */ - case USB_ID(0x1395, 0x740a): /* Sennheiser Officerunner */ return true; } return false; @@ -1305,6 +1308,7 @@ case USB_ID(0x20b1, 0x2008): /* Matrix Audio X-Sabre */ case USB_ID(0x20b1, 0x300a): /* Matrix Audio Mini-i Pro */ case USB_ID(0x22d9, 0x0416): /* OPPO HA-1 */ + case USB_ID(0x2772, 0x0230): /* Pro-Ject Pre Box S2 Digital */ if (fp->altsetting == 2) return SNDRV_PCM_FMTBIT_DSD_U32_BE; break; diff -u linux-raspi2-4.4.0/tools/perf/Makefile.perf linux-raspi2-4.4.0/tools/perf/Makefile.perf --- linux-raspi2-4.4.0/tools/perf/Makefile.perf +++ linux-raspi2-4.4.0/tools/perf/Makefile.perf @@ -563,9 +563,9 @@ $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/tests/attr'; \ $(INSTALL) tests/attr/* '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/tests/attr' -install-bin: install-tools install-tests +install-bin: install-tools install-tests install-traceevent-plugins -install: install-bin try-install-man install-traceevent-plugins +install: install-bin try-install-man install-python_ext: $(PYTHON_WORD) util/setup.py --quiet install --root='/$(DESTDIR_SQ)' diff -u linux-raspi2-4.4.0/tools/perf/util/event.c linux-raspi2-4.4.0/tools/perf/util/event.c --- linux-raspi2-4.4.0/tools/perf/util/event.c +++ linux-raspi2-4.4.0/tools/perf/util/event.c @@ -416,7 +416,7 @@ { char filename[PATH_MAX]; DIR *tasks; - struct dirent dirent, *next; + struct dirent *dirent; pid_t tgid, ppid; int rc = 0; @@ -445,11 +445,11 @@ return 0; } - while (!readdir_r(tasks, &dirent, &next) && next) { + while ((dirent = readdir(tasks)) != NULL) { char *end; pid_t _pid; - _pid = strtol(dirent.d_name, &end, 10); + _pid = strtol(dirent->d_name, &end, 10); if (*end) continue; @@ -558,7 +558,7 @@ { DIR *proc; char proc_path[PATH_MAX]; - struct dirent dirent, *next; + struct dirent *dirent; union perf_event *comm_event, *mmap_event, *fork_event; int err = -1; @@ -583,9 +583,9 @@ if (proc == NULL) goto out_free_fork; - while (!readdir_r(proc, &dirent, &next) && next) { + while ((dirent = readdir(proc)) != NULL) { char *end; - pid_t pid = strtol(dirent.d_name, &end, 10); + pid_t pid = strtol(dirent->d_name, &end, 10); if (*end) /* only interested in proper numerical dirents */ continue; diff -u linux-raspi2-4.4.0/tools/perf/util/intel-pt-decoder/intel-pt-decoder.c linux-raspi2-4.4.0/tools/perf/util/intel-pt-decoder/intel-pt-decoder.c --- linux-raspi2-4.4.0/tools/perf/util/intel-pt-decoder/intel-pt-decoder.c +++ linux-raspi2-4.4.0/tools/perf/util/intel-pt-decoder/intel-pt-decoder.c @@ -22,6 +22,7 @@ #include #include #include +#include #include "../cache.h" #include "../util.h" @@ -63,6 +64,25 @@ INTEL_PT_STATE_FUP_NO_TIP, }; +static inline bool intel_pt_sample_time(enum intel_pt_pkt_state pkt_state) +{ + switch (pkt_state) { + case INTEL_PT_STATE_NO_PSB: + case INTEL_PT_STATE_NO_IP: + case INTEL_PT_STATE_ERR_RESYNC: + case INTEL_PT_STATE_IN_SYNC: + case INTEL_PT_STATE_TNT: + return true; + case INTEL_PT_STATE_TIP: + case INTEL_PT_STATE_TIP_PGD: + case INTEL_PT_STATE_FUP: + case INTEL_PT_STATE_FUP_NO_TIP: + return false; + default: + return true; + }; +} + #ifdef INTEL_PT_STRICT #define INTEL_PT_STATE_ERR1 INTEL_PT_STATE_NO_PSB #define INTEL_PT_STATE_ERR2 INTEL_PT_STATE_NO_PSB @@ -90,6 +110,7 @@ bool have_tma; bool have_cyc; bool fixup_last_mtc; + bool have_last_ip; uint64_t pos; uint64_t last_ip; uint64_t ip; @@ -97,6 +118,7 @@ uint64_t timestamp; uint64_t tsc_timestamp; uint64_t ref_timestamp; + uint64_t sample_timestamp; uint64_t ret_addr; uint64_t ctc_timestamp; uint64_t ctc_delta; @@ -124,8 +146,6 @@ bool have_calc_cyc_to_tsc; int exec_mode; unsigned int insn_bytes; - uint64_t sign_bit; - uint64_t sign_bits; uint64_t period; enum intel_pt_period_type period_type; uint64_t tot_insn_cnt; @@ -139,6 +159,7 @@ unsigned int fup_tx_flags; unsigned int tx_flags; uint64_t timestamp_insn_cnt; + uint64_t sample_insn_cnt; uint64_t stuck_ip; int no_progress; int stuck_ip_prd; @@ -192,9 +213,6 @@ decoder->data = params->data; decoder->return_compression = params->return_compression; - decoder->sign_bit = (uint64_t)1 << 47; - decoder->sign_bits = ~(((uint64_t)1 << 48) - 1); - decoder->period = params->period; decoder->period_type = params->period_type; @@ -363,21 +381,30 @@ return 0; } -static uint64_t intel_pt_calc_ip(struct intel_pt_decoder *decoder, - const struct intel_pt_pkt *packet, +static uint64_t intel_pt_calc_ip(const struct intel_pt_pkt *packet, uint64_t last_ip) { uint64_t ip; switch (packet->count) { - case 2: + case 1: ip = (last_ip & (uint64_t)0xffffffffffff0000ULL) | packet->payload; break; - case 4: + case 2: ip = (last_ip & (uint64_t)0xffffffff00000000ULL) | packet->payload; break; + case 3: + ip = packet->payload; + /* Sign-extend 6-byte ip */ + if (ip & (uint64_t)0x800000000000ULL) + ip |= (uint64_t)0xffff000000000000ULL; + break; + case 4: + ip = (last_ip & (uint64_t)0xffff000000000000ULL) | + packet->payload; + break; case 6: ip = packet->payload; break; @@ -385,16 +412,13 @@ return 0; } - if (ip & decoder->sign_bit) - return ip | decoder->sign_bits; - return ip; } static inline void intel_pt_set_last_ip(struct intel_pt_decoder *decoder) { - decoder->last_ip = intel_pt_calc_ip(decoder, &decoder->packet, - decoder->last_ip); + decoder->last_ip = intel_pt_calc_ip(&decoder->packet, decoder->last_ip); + decoder->have_last_ip = true; } static inline void intel_pt_set_ip(struct intel_pt_decoder *decoder) @@ -895,6 +919,7 @@ decoder->tot_insn_cnt += insn_cnt; decoder->timestamp_insn_cnt += insn_cnt; + decoder->sample_insn_cnt += insn_cnt; decoder->period_insn_cnt += insn_cnt; if (err) { @@ -1413,7 +1438,8 @@ case INTEL_PT_FUP: decoder->pge = true; - intel_pt_set_last_ip(decoder); + if (decoder->packet.count) + intel_pt_set_last_ip(decoder); break; case INTEL_PT_MODE_TSX: @@ -1617,6 +1643,8 @@ break; case INTEL_PT_PSB: + decoder->last_ip = 0; + decoder->have_last_ip = true; intel_pt_clear_stack(&decoder->stack); err = intel_pt_walk_psbend(decoder); if (err == -EAGAIN) @@ -1695,6 +1723,13 @@ } } +static inline bool intel_pt_have_ip(struct intel_pt_decoder *decoder) +{ + return decoder->packet.count && + (decoder->have_last_ip || decoder->packet.count == 3 || + decoder->packet.count == 6); +} + /* Walk PSB+ packets to get in sync. */ static int intel_pt_walk_psb(struct intel_pt_decoder *decoder) { @@ -1708,6 +1743,7 @@ switch (decoder->packet.type) { case INTEL_PT_TIP_PGD: decoder->continuous_period = false; + __fallthrough; case INTEL_PT_TIP_PGE: case INTEL_PT_TIP: intel_pt_log("ERROR: Unexpected packet\n"); @@ -1715,8 +1751,7 @@ case INTEL_PT_FUP: decoder->pge = true; - if (decoder->last_ip || decoder->packet.count == 6 || - decoder->packet.count == 0) { + if (intel_pt_have_ip(decoder)) { uint64_t current_ip = decoder->ip; intel_pt_set_ip(decoder); @@ -1762,6 +1797,8 @@ decoder->pge = false; decoder->continuous_period = false; intel_pt_clear_tx_flags(decoder); + __fallthrough; + case INTEL_PT_TNT: decoder->have_tma = false; intel_pt_log("ERROR: Unexpected packet\n"); @@ -1802,27 +1839,21 @@ switch (decoder->packet.type) { case INTEL_PT_TIP_PGD: decoder->continuous_period = false; + __fallthrough; case INTEL_PT_TIP_PGE: case INTEL_PT_TIP: decoder->pge = decoder->packet.type != INTEL_PT_TIP_PGD; - if (decoder->last_ip || decoder->packet.count == 6 || - decoder->packet.count == 0) + if (intel_pt_have_ip(decoder)) intel_pt_set_ip(decoder); if (decoder->ip) return 0; break; case INTEL_PT_FUP: - if (decoder->overflow) { - if (decoder->last_ip || - decoder->packet.count == 6 || - decoder->packet.count == 0) - intel_pt_set_ip(decoder); - if (decoder->ip) - return 0; - } - if (decoder->packet.count) - intel_pt_set_last_ip(decoder); + if (intel_pt_have_ip(decoder)) + intel_pt_set_ip(decoder); + if (decoder->ip) + return 0; break; case INTEL_PT_MTC: @@ -1871,6 +1902,9 @@ break; case INTEL_PT_PSB: + decoder->last_ip = 0; + decoder->have_last_ip = true; + intel_pt_clear_stack(&decoder->stack); err = intel_pt_walk_psb(decoder); if (err) return err; @@ -1896,6 +1930,8 @@ { int err; + decoder->set_fup_tx_flags = false; + intel_pt_log("Scanning for full IP\n"); err = intel_pt_walk_to_ip(decoder); if (err) @@ -2004,6 +2040,7 @@ decoder->pge = false; decoder->continuous_period = false; + decoder->have_last_ip = false; decoder->last_ip = 0; decoder->ip = 0; intel_pt_clear_stack(&decoder->stack); @@ -2012,6 +2049,7 @@ if (err) return err; + decoder->have_last_ip = true; decoder->pkt_state = INTEL_PT_STATE_NO_IP; err = intel_pt_walk_psb(decoder); @@ -2030,7 +2068,7 @@ static uint64_t intel_pt_est_timestamp(struct intel_pt_decoder *decoder) { - uint64_t est = decoder->timestamp_insn_cnt << 1; + uint64_t est = decoder->sample_insn_cnt << 1; if (!decoder->cbr || !decoder->max_non_turbo_ratio) goto out; @@ -2038,7 +2076,7 @@ est *= decoder->max_non_turbo_ratio; est /= decoder->cbr; out: - return decoder->timestamp + est; + return decoder->sample_timestamp + est; } const struct intel_pt_state *intel_pt_decode(struct intel_pt_decoder *decoder) @@ -2054,7 +2092,9 @@ err = intel_pt_sync(decoder); break; case INTEL_PT_STATE_NO_IP: + decoder->have_last_ip = false; decoder->last_ip = 0; + decoder->ip = 0; /* Fall through */ case INTEL_PT_STATE_ERR_RESYNC: err = intel_pt_sync_ip(decoder); @@ -2091,15 +2131,24 @@ } } while (err == -ENOLINK); - decoder->state.err = err ? intel_pt_ext_err(err) : 0; - decoder->state.timestamp = decoder->timestamp; + if (err) { + decoder->state.err = intel_pt_ext_err(err); + decoder->state.from_ip = decoder->ip; + decoder->sample_timestamp = decoder->timestamp; + decoder->sample_insn_cnt = decoder->timestamp_insn_cnt; + } else { + decoder->state.err = 0; + if (intel_pt_sample_time(decoder->pkt_state)) { + decoder->sample_timestamp = decoder->timestamp; + decoder->sample_insn_cnt = decoder->timestamp_insn_cnt; + } + } + + decoder->state.timestamp = decoder->sample_timestamp; decoder->state.est_timestamp = intel_pt_est_timestamp(decoder); decoder->state.cr3 = decoder->cr3; decoder->state.tot_insn_cnt = decoder->tot_insn_cnt; - if (err) - decoder->state.from_ip = decoder->ip; - return &decoder->state; } diff -u linux-raspi2-4.4.0/tools/perf/util/parse-events.c linux-raspi2-4.4.0/tools/perf/util/parse-events.c --- linux-raspi2-4.4.0/tools/perf/util/parse-events.c +++ linux-raspi2-4.4.0/tools/perf/util/parse-events.c @@ -138,11 +138,11 @@ #define PERF_EVENT_TYPE(config) __PERF_EVENT_FIELD(config, TYPE) #define PERF_EVENT_ID(config) __PERF_EVENT_FIELD(config, EVENT) -#define for_each_subsystem(sys_dir, sys_dirent, sys_next) \ - while (!readdir_r(sys_dir, &sys_dirent, &sys_next) && sys_next) \ - if (sys_dirent.d_type == DT_DIR && \ - (strcmp(sys_dirent.d_name, ".")) && \ - (strcmp(sys_dirent.d_name, ".."))) +#define for_each_subsystem(sys_dir, sys_dirent) \ + while ((sys_dirent = readdir(sys_dir)) != NULL) \ + if (sys_dirent->d_type == DT_DIR && \ + (strcmp(sys_dirent->d_name, ".")) && \ + (strcmp(sys_dirent->d_name, ".."))) static int tp_event_has_id(struct dirent *sys_dir, struct dirent *evt_dir) { @@ -159,12 +159,12 @@ return 0; } -#define for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) \ - while (!readdir_r(evt_dir, &evt_dirent, &evt_next) && evt_next) \ - if (evt_dirent.d_type == DT_DIR && \ - (strcmp(evt_dirent.d_name, ".")) && \ - (strcmp(evt_dirent.d_name, "..")) && \ - (!tp_event_has_id(&sys_dirent, &evt_dirent))) +#define for_each_event(sys_dirent, evt_dir, evt_dirent) \ + while ((evt_dirent = readdir(evt_dir)) != NULL) \ + if (evt_dirent->d_type == DT_DIR && \ + (strcmp(evt_dirent->d_name, ".")) && \ + (strcmp(evt_dirent->d_name, "..")) && \ + (!tp_event_has_id(sys_dirent, evt_dirent))) #define MAX_EVENT_LENGTH 512 @@ -173,7 +173,7 @@ { struct tracepoint_path *path = NULL; DIR *sys_dir, *evt_dir; - struct dirent *sys_next, *evt_next, sys_dirent, evt_dirent; + struct dirent *sys_dirent, *evt_dirent; char id_buf[24]; int fd; u64 id; @@ -184,18 +184,18 @@ if (!sys_dir) return NULL; - for_each_subsystem(sys_dir, sys_dirent, sys_next) { + for_each_subsystem(sys_dir, sys_dirent) { snprintf(dir_path, MAXPATHLEN, "%s/%s", tracing_events_path, - sys_dirent.d_name); + sys_dirent->d_name); evt_dir = opendir(dir_path); if (!evt_dir) continue; - for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) { + for_each_event(sys_dirent, evt_dir, evt_dirent) { snprintf(evt_path, MAXPATHLEN, "%s/%s/id", dir_path, - evt_dirent.d_name); + evt_dirent->d_name); fd = open(evt_path, O_RDONLY); if (fd < 0) continue; @@ -220,9 +220,9 @@ free(path); return NULL; } - strncpy(path->system, sys_dirent.d_name, + strncpy(path->system, sys_dirent->d_name, MAX_EVENT_LENGTH); - strncpy(path->name, evt_dirent.d_name, + strncpy(path->name, evt_dirent->d_name, MAX_EVENT_LENGTH); return path; } @@ -291,10 +291,11 @@ event_attr_init(attr); - evsel = perf_evsel__new_idx(attr, (*idx)++); + evsel = perf_evsel__new_idx(attr, *idx); if (!evsel) return NULL; + (*idx)++; evsel->cpus = cpu_map__get(cpus); evsel->own_cpus = cpu_map__get(cpus); @@ -1629,7 +1630,7 @@ bool name_only) { DIR *sys_dir, *evt_dir; - struct dirent *sys_next, *evt_next, sys_dirent, evt_dirent; + struct dirent *sys_dirent, *evt_dirent; char evt_path[MAXPATHLEN]; char dir_path[MAXPATHLEN]; char **evt_list = NULL; @@ -1647,20 +1648,20 @@ goto out_close_sys_dir; } - for_each_subsystem(sys_dir, sys_dirent, sys_next) { + for_each_subsystem(sys_dir, sys_dirent) { if (subsys_glob != NULL && - !strglobmatch(sys_dirent.d_name, subsys_glob)) + !strglobmatch(sys_dirent->d_name, subsys_glob)) continue; snprintf(dir_path, MAXPATHLEN, "%s/%s", tracing_events_path, - sys_dirent.d_name); + sys_dirent->d_name); evt_dir = opendir(dir_path); if (!evt_dir) continue; - for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) { + for_each_event(sys_dirent, evt_dir, evt_dirent) { if (event_glob != NULL && - !strglobmatch(evt_dirent.d_name, event_glob)) + !strglobmatch(evt_dirent->d_name, event_glob)) continue; if (!evt_num_known) { @@ -1669,7 +1670,7 @@ } snprintf(evt_path, MAXPATHLEN, "%s:%s", - sys_dirent.d_name, evt_dirent.d_name); + sys_dirent->d_name, evt_dirent->d_name); evt_list[evt_i] = strdup(evt_path); if (evt_list[evt_i] == NULL) @@ -1722,7 +1723,7 @@ int is_valid_tracepoint(const char *event_string) { DIR *sys_dir, *evt_dir; - struct dirent *sys_next, *evt_next, sys_dirent, evt_dirent; + struct dirent *sys_dirent, *evt_dirent; char evt_path[MAXPATHLEN]; char dir_path[MAXPATHLEN]; @@ -1730,17 +1731,17 @@ if (!sys_dir) return 0; - for_each_subsystem(sys_dir, sys_dirent, sys_next) { + for_each_subsystem(sys_dir, sys_dirent) { snprintf(dir_path, MAXPATHLEN, "%s/%s", tracing_events_path, - sys_dirent.d_name); + sys_dirent->d_name); evt_dir = opendir(dir_path); if (!evt_dir) continue; - for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) { + for_each_event(sys_dirent, evt_dir, evt_dirent) { snprintf(evt_path, MAXPATHLEN, "%s:%s", - sys_dirent.d_name, evt_dirent.d_name); + sys_dirent->d_name, evt_dirent->d_name); if (!strcmp(evt_path, event_string)) { closedir(evt_dir); closedir(sys_dir); diff -u linux-raspi2-4.4.0/tools/perf/util/pmu.c linux-raspi2-4.4.0/tools/perf/util/pmu.c --- linux-raspi2-4.4.0/tools/perf/util/pmu.c +++ linux-raspi2-4.4.0/tools/perf/util/pmu.c @@ -153,7 +153,7 @@ if (fd == -1) return -1; - sret = read(fd, alias->unit, UNIT_MAX_LEN); + sret = read(fd, alias->unit, UNIT_MAX_LEN); if (sret < 0) goto error; diff -u linux-raspi2-4.4.0/tools/perf/util/symbol-elf.c linux-raspi2-4.4.0/tools/perf/util/symbol-elf.c --- linux-raspi2-4.4.0/tools/perf/util/symbol-elf.c +++ linux-raspi2-4.4.0/tools/perf/util/symbol-elf.c @@ -488,6 +488,12 @@ break; } else { int n = namesz + descsz; + + if (n > (int)sizeof(bf)) { + n = sizeof(bf); + pr_debug("%s: truncating reading of build id in sysfs file %s: n_namesz=%u, n_descsz=%u.\n", + __func__, filename, nhdr.n_namesz, nhdr.n_descsz); + } if (read(fd, bf, n) != n) break; } diff -u linux-raspi2-4.4.0/ubuntu/Kconfig linux-raspi2-4.4.0/ubuntu/Kconfig --- linux-raspi2-4.4.0/ubuntu/Kconfig +++ linux-raspi2-4.4.0/ubuntu/Kconfig @@ -27,4 +27,18 @@ ## ## +source "ubuntu/opennsl/Kconfig" +## +## +## +## +## +## +source "ubuntu/bnxt/Kconfig" +## +## +## +## +## +## endmenu diff -u linux-raspi2-4.4.0/ubuntu/Makefile linux-raspi2-4.4.0/ubuntu/Makefile --- linux-raspi2-4.4.0/ubuntu/Makefile +++ linux-raspi2-4.4.0/ubuntu/Makefile @@ -40,6 +40,16 @@ ## ## ## +obj-$(CONFIG_OPENNSL) += opennsl/ +## +## +## +## +obj-$(CONFIG_BNXT_BPO) += bnxt/ +## +## +## +## ## ## diff -u linux-raspi2-4.4.0/ubuntu/rsi/rsi_91x_mac80211.c linux-raspi2-4.4.0/ubuntu/rsi/rsi_91x_mac80211.c --- linux-raspi2-4.4.0/ubuntu/rsi/rsi_91x_mac80211.c +++ linux-raspi2-4.4.0/ubuntu/rsi/rsi_91x_mac80211.c @@ -2835,6 +2835,9 @@ // NL80211_FEATURE_P2P_GO_OPPPS); #endif + if (common->coex_mode > 1) + wiphy->flags |= WIPHY_FLAG_PS_ON_BY_DEFAULT; + status = ieee80211_register_hw(hw); if (status) { ven_rsi_dbg(ERR_ZONE, "Failed to register to mac80211\n"); diff -u linux-raspi2-4.4.0/ubuntu/rsi/rsi_91x_mgmt.c linux-raspi2-4.4.0/ubuntu/rsi/rsi_91x_mgmt.c --- linux-raspi2-4.4.0/ubuntu/rsi/rsi_91x_mgmt.c +++ linux-raspi2-4.4.0/ubuntu/rsi/rsi_91x_mgmt.c @@ -2114,13 +2114,15 @@ ps->ps_sleep.connected_sleep = DEEP_SLEEP; ps->ps_listen_interval = cpu_to_le32(ps_info->listen_interval); - ps->ps_dtim_interval_duration = - cpu_to_le32(ps_info->dtim_interval_duration); + ps->ps_dtim_interval_duration = RSI_DEFAULT_DTIM_INTERVAL; if (ps->ps_listen_interval > ps->ps_dtim_interval_duration) ps->ps_listen_interval = 0; - ps->ps_num_dtim_intervals = cpu_to_le32(ps_info->num_dtims_per_sleep); + ps->ps_uapsd_acs = (adapter->hw->uapsd_max_sp_len << + IEEE80211_WMM_IE_STA_QOSINFO_SP_SHIFT) | + IEEE80211_WMM_IE_STA_QOSINFO_AC_MASK; + ps->ps_uapsd_wakeup_period = RSI_UAPSD_WAKEUP_PERIOD; skb_put(skb, frame_len); diff -u linux-raspi2-4.4.0/ubuntu/rsi/rsi_mgmt.h linux-raspi2-4.4.0/ubuntu/rsi/rsi_mgmt.h --- linux-raspi2-4.4.0/ubuntu/rsi/rsi_mgmt.h +++ linux-raspi2-4.4.0/ubuntu/rsi/rsi_mgmt.h @@ -117,6 +117,8 @@ #define LOWER_20_ENABLE (0x4 << 12) #define FULL40M_ENABLE 0x6 +#define RSI_UAPSD_WAKEUP_PERIOD 0x1e +#define RSI_DEFAULT_DTIM_INTERVAL 0x0 #define RSI_LMAC_CLOCK_80MHZ 0x1 #define RSI_ENABLE_40MHZ (0x1 << 3) #define ENABLE_SHORTGI_RATE BIT(9) only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/Documentation/devicetree/bindings/iio/adc/avia-hx711.txt +++ linux-raspi2-4.4.0/Documentation/devicetree/bindings/iio/adc/avia-hx711.txt @@ -0,0 +1,18 @@ +* AVIA HX711 ADC chip for weight cells + Bit-banging driver + +Required properties: + - compatible: Should be "avia,hx711" + - sck-gpios: Definition of the GPIO for the clock + - dout-gpios: Definition of the GPIO for data-out + See Documentation/devicetree/bindings/gpio/gpio.txt + - avdd-supply: Definition of the regulator used as analog supply + +Example: +weight@0 { + compatible = "avia,hx711"; + sck-gpios = <&gpio3 10 GPIO_ACTIVE_HIGH>; + dout-gpios = <&gpio0 7 GPIO_ACTIVE_HIGH>; + avdd-suppy = <&avdd>; +}; + only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/Documentation/prctl/seccomp_filter.txt +++ linux-raspi2-4.4.0/Documentation/prctl/seccomp_filter.txt @@ -138,6 +138,15 @@ allow use of ptrace, even of other sandboxed processes, without extreme care; ptracers can use this mechanism to escape.) +``SECCOMP_RET_LOG``: + Results in the system call being executed after it is logged. This + should be used by application developers to learn which syscalls their + application needs without having to iterate through multiple test and + development cycles to build the list. + + This action will only be logged if "log" is present in the + actions_logged sysctl string. + SECCOMP_RET_ALLOW: Results in the system call being executed. @@ -166,7 +175,41 @@ and a more generic example of a higher level macro interface for BPF program generation. +Sysctls +======= + +Seccomp's sysctl files can be found in the ``/proc/sys/kernel/seccomp/`` +directory. Here's a description of each file in that directory: +``actions_avail``: + A read-only ordered list of seccomp return values (refer to the + ``SECCOMP_RET_*`` macros above) in string form. The ordering, from + left-to-right, is the least permissive return value to the most + permissive return value. + + The list represents the set of seccomp return values supported + by the kernel. A userspace program may use this list to + determine if the actions found in the ``seccomp.h``, when the + program was built, differs from the set of actions actually + supported in the current running kernel. + +``actions_logged``: + A read-write ordered list of seccomp return values (refer to the + ``SECCOMP_RET_*`` macros above) that are allowed to be logged. Writes + to the file do not need to be in ordered form but reads from the file + will be ordered in the same way as the actions_avail sysctl. + + It is important to note that the value of ``actions_logged`` does not + prevent certain actions from being logged when the audit subsystem is + configured to audit a task. If the action is not found in + ``actions_logged`` list, the final decision on whether to audit the + action for that task is ultimately left up to the audit subsystem to + decide for all seccomp return values other than ``SECCOMP_RET_ALLOW``. + + The ``allow`` string is not accepted in the ``actions_logged`` sysctl + as it is not possible to log ``SECCOMP_RET_ALLOW`` actions. Attempting + to write ``allow`` to the sysctl will result in an EINVAL being + returned. Adding architecture support ----------------------- only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/Documentation/vm/ksm.txt +++ linux-raspi2-4.4.0/Documentation/vm/ksm.txt @@ -80,6 +80,50 @@ Default: 0 (must be changed to 1 to activate KSM, except if CONFIG_SYSFS is disabled) +max_page_sharing - Maximum sharing allowed for each KSM page. This + enforces a deduplication limit to avoid the virtual + memory rmap lists to grow too large. The minimum + value is 2 as a newly created KSM page will have at + least two sharers. The rmap walk has O(N) + complexity where N is the number of rmap_items + (i.e. virtual mappings) that are sharing the page, + which is in turn capped by max_page_sharing. So + this effectively spread the the linear O(N) + computational complexity from rmap walk context + over different KSM pages. The ksmd walk over the + stable_node "chains" is also O(N), but N is the + number of stable_node "dups", not the number of + rmap_items, so it has not a significant impact on + ksmd performance. In practice the best stable_node + "dup" candidate will be kept and found at the head + of the "dups" list. The higher this value the + faster KSM will merge the memory (because there + will be fewer stable_node dups queued into the + stable_node chain->hlist to check for pruning) and + the higher the deduplication factor will be, but + the slowest the worst case rmap walk could be for + any given KSM page. Slowing down the rmap_walk + means there will be higher latency for certain + virtual memory operations happening during + swapping, compaction, NUMA balancing and page + migration, in turn decreasing responsiveness for + the caller of those virtual memory operations. The + scheduler latency of other tasks not involved with + the VM operations doing the rmap walk is not + affected by this parameter as the rmap walks are + always schedule friendly themselves. + +stable_node_chains_prune_millisecs - How frequently to walk the whole + list of stable_node "dups" linked in the + stable_node "chains" in order to prune stale + stable_nodes. Smaller milllisecs values will free + up the KSM metadata with lower latency, but they + will make ksmd use more CPU during the scan. This + only applies to the stable_node chains so it's a + noop if not a single KSM page hit the + max_page_sharing yet (there would be no stable_node + chains in such case). + The effectiveness of KSM and MADV_MERGEABLE is shown in /sys/kernel/mm/ksm/: pages_shared - how many shared pages are being used @@ -88,10 +132,29 @@ pages_volatile - how many pages changing too fast to be placed in a tree full_scans - how many times all mergeable areas have been scanned +stable_node_chains - number of stable node chains allocated, this is + effectively the number of KSM pages that hit the + max_page_sharing limit +stable_node_dups - number of stable node dups queued into the + stable_node chains + A high ratio of pages_sharing to pages_shared indicates good sharing, but a high ratio of pages_unshared to pages_sharing indicates wasted effort. pages_volatile embraces several different kinds of activity, but a high proportion there would also indicate poor use of madvise MADV_MERGEABLE. +The maximum possible page_sharing/page_shared ratio is limited by the +max_page_sharing tunable. To increase the ratio max_page_sharing must +be increased accordingly. + +The stable_node_dups/stable_node_chains ratio is also affected by the +max_page_sharing tunable, and an high ratio may indicate fragmentation +in the stable_node dups, which could be solved by introducing +fragmentation algorithms in ksmd which would refile rmap_items from +one stable_node dup to another stable_node dup, in order to freeup +stable_node "dups" with few rmap_items in them, but that may increase +the ksmd CPU usage and possibly slowdown the readonly computations on +the KSM pages of the applications. + Izik Eidus, Hugh Dickins, 17 Nov 2009 only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/alpha/include/asm/types.h +++ linux-raspi2-4.4.0/arch/alpha/include/asm/types.h @@ -1,6 +1,6 @@ #ifndef _ALPHA_TYPES_H #define _ALPHA_TYPES_H -#include +#include #endif /* _ALPHA_TYPES_H */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/alpha/include/uapi/asm/types.h +++ linux-raspi2-4.4.0/arch/alpha/include/uapi/asm/types.h @@ -9,8 +9,18 @@ * need to be careful to avoid a name clashes. */ -#ifndef __KERNEL__ +/* + * This is here because we used to use l64 for alpha + * and we don't want to impact user mode with our change to ll64 + * in the kernel. + * + * However, some user programs are fine with this. They can + * flag __SANE_USERSPACE_TYPES__ to get int-ll64.h here. + */ +#if !defined(__SANE_USERSPACE_TYPES__) && !defined(__KERNEL__) #include +#else +#include #endif #endif /* _UAPI_ALPHA_TYPES_H */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/arc/include/asm/cache.h +++ linux-raspi2-4.4.0/arch/arc/include/asm/cache.h @@ -88,7 +88,9 @@ #define ARC_REG_SLC_FLUSH 0x904 #define ARC_REG_SLC_INVALIDATE 0x905 #define ARC_REG_SLC_RGN_START 0x914 +#define ARC_REG_SLC_RGN_START1 0x915 #define ARC_REG_SLC_RGN_END 0x916 +#define ARC_REG_SLC_RGN_END1 0x917 /* Bit val in SLC_CONTROL */ #define SLC_CTRL_IM 0x040 only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/arc/kernel/entry.S +++ linux-raspi2-4.4.0/arch/arc/kernel/entry.S @@ -104,6 +104,12 @@ lr r0, [efa] mov r1, sp + ; hardware auto-disables MMU, re-enable it to allow kernel vaddr + ; access for say stack unwinding of modules for crash dumps + lr r3, [ARC_REG_PID] + or r3, r3, MMU_ENABLE + sr r3, [ARC_REG_PID] + lsr r3, r2, 8 bmsk r3, r3, 7 brne r3, ECR_C_MCHK_DUP_TLB, 1f only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/arc/mm/tlb.c +++ linux-raspi2-4.4.0/arch/arc/mm/tlb.c @@ -885,9 +885,6 @@ local_irq_save(flags); - /* re-enable the MMU */ - write_aux_reg(ARC_REG_PID, MMU_ENABLE | read_aux_reg(ARC_REG_PID)); - /* loop thru all sets of TLB */ for (set = 0; set < mmu->sets; set++) { only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/arm/Kconfig-nommu +++ linux-raspi2-4.4.0/arch/arm/Kconfig-nommu @@ -34,8 +34,7 @@ used instead of the auto-probing which utilizes the register. config REMAP_VECTORS_TO_RAM - bool 'Install vectors to the beginning of RAM' if DRAM_BASE - depends on DRAM_BASE + bool 'Install vectors to the beginning of RAM' help The kernel needs to change the hardware exception vectors. In nommu mode, the hardware exception vectors are normally only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/arm/boot/dts/armada-38x.dtsi +++ linux-raspi2-4.4.0/arch/arm/boot/dts/armada-38x.dtsi @@ -143,9 +143,9 @@ reg = <0x8000 0x1000>; cache-unified; cache-level = <2>; - arm,double-linefill-incr = <1>; + arm,double-linefill-incr = <0>; arm,double-linefill-wrap = <0>; - arm,double-linefill = <1>; + arm,double-linefill = <0>; prefetch-data = <1>; }; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/arm/boot/dts/armada-39x.dtsi +++ linux-raspi2-4.4.0/arch/arm/boot/dts/armada-39x.dtsi @@ -104,9 +104,9 @@ reg = <0x8000 0x1000>; cache-unified; cache-level = <2>; - arm,double-linefill-incr = <1>; + arm,double-linefill-incr = <0>; arm,double-linefill-wrap = <0>; - arm,double-linefill = <1>; + arm,double-linefill = <0>; prefetch-data = <1>; }; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/arm/boot/dts/omap3-n900.dts +++ linux-raspi2-4.4.0/arch/arm/boot/dts/omap3-n900.dts @@ -697,6 +697,8 @@ vmmc_aux-supply = <&vsim>; bus-width = <8>; non-removable; + no-sdio; + no-sd; }; &mmc3 { only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/arm/boot/dts/pxa27x.dtsi +++ linux-raspi2-4.4.0/arch/arm/boot/dts/pxa27x.dtsi @@ -13,6 +13,7 @@ interrupts = <25>; #dma-channels = <32>; #dma-cells = <2>; + #dma-requests = <75>; status = "okay"; }; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/arm/boot/dts/r8a7790.dtsi +++ linux-raspi2-4.4.0/arch/arm/boot/dts/r8a7790.dtsi @@ -1409,7 +1409,8 @@ }; msiof0: spi@e6e20000 { - compatible = "renesas,msiof-r8a7790"; + compatible = "renesas,msiof-r8a7790", + "renesas,rcar-gen2-msiof"; reg = <0 0xe6e20000 0 0x0064>; interrupts = <0 156 IRQ_TYPE_LEVEL_HIGH>; clocks = <&mstp0_clks R8A7790_CLK_MSIOF0>; @@ -1422,7 +1423,8 @@ }; msiof1: spi@e6e10000 { - compatible = "renesas,msiof-r8a7790"; + compatible = "renesas,msiof-r8a7790", + "renesas,rcar-gen2-msiof"; reg = <0 0xe6e10000 0 0x0064>; interrupts = <0 157 IRQ_TYPE_LEVEL_HIGH>; clocks = <&mstp2_clks R8A7790_CLK_MSIOF1>; @@ -1435,7 +1437,8 @@ }; msiof2: spi@e6e00000 { - compatible = "renesas,msiof-r8a7790"; + compatible = "renesas,msiof-r8a7790", + "renesas,rcar-gen2-msiof"; reg = <0 0xe6e00000 0 0x0064>; interrupts = <0 158 IRQ_TYPE_LEVEL_HIGH>; clocks = <&mstp2_clks R8A7790_CLK_MSIOF2>; @@ -1448,7 +1451,8 @@ }; msiof3: spi@e6c90000 { - compatible = "renesas,msiof-r8a7790"; + compatible = "renesas,msiof-r8a7790", + "renesas,rcar-gen2-msiof"; reg = <0 0xe6c90000 0 0x0064>; interrupts = <0 159 IRQ_TYPE_LEVEL_HIGH>; clocks = <&mstp2_clks R8A7790_CLK_MSIOF3>; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/arm/configs/omap2plus_defconfig +++ linux-raspi2-4.4.0/arch/arm/configs/omap2plus_defconfig @@ -221,6 +221,7 @@ CONFIG_SERIAL_8250=y CONFIG_SERIAL_8250_CONSOLE=y CONFIG_SERIAL_8250_NR_UARTS=32 +CONFIG_SERIAL_8250_RUNTIME_UARTS=6 CONFIG_SERIAL_8250_EXTENDED=y CONFIG_SERIAL_8250_MANY_PORTS=y CONFIG_SERIAL_8250_SHARE_IRQ=y only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/arm/configs/s3c2410_defconfig +++ linux-raspi2-4.4.0/arch/arm/configs/s3c2410_defconfig @@ -87,9 +87,9 @@ CONFIG_NETFILTER=y CONFIG_NF_CONNTRACK=m CONFIG_NF_CONNTRACK_EVENTS=y -CONFIG_NF_CT_PROTO_DCCP=m -CONFIG_NF_CT_PROTO_SCTP=m -CONFIG_NF_CT_PROTO_UDPLITE=m +CONFIG_NF_CT_PROTO_DCCP=y +CONFIG_NF_CT_PROTO_SCTP=y +CONFIG_NF_CT_PROTO_UDPLITE=y CONFIG_NF_CONNTRACK_AMANDA=m CONFIG_NF_CONNTRACK_FTP=m CONFIG_NF_CONNTRACK_H323=m only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/arm/include/asm/Kbuild +++ linux-raspi2-4.4.0/arch/arm/include/asm/Kbuild @@ -36,4 +36,3 @@ generic-y += termios.h generic-y += timex.h generic-y += trace_clock.h -generic-y += unaligned.h only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/arm/include/asm/elf.h +++ linux-raspi2-4.4.0/arch/arm/include/asm/elf.h @@ -112,12 +112,8 @@ #define CORE_DUMP_USE_REGSET #define ELF_EXEC_PAGESIZE 4096 -/* This is the location that an ET_DYN program is loaded if exec'ed. Typical - use of this is to invoke "./ld.so someprog" to test out a new version of - the loader. We need to make sure that it is out of the way of the program - that it will "exec", and that there is sufficient room for the brk. */ - -#define ELF_ET_DYN_BASE (TASK_SIZE / 3 * 2) +/* This is the base location for PIE (ET_DYN with INTERP) loads. */ +#define ELF_ET_DYN_BASE 0x400000UL /* When the program starts, a1 contains a pointer to a function to be registered with atexit, as per the SVR4 ABI. A value of 0 means we only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/arm/include/asm/ftrace.h +++ linux-raspi2-4.4.0/arch/arm/include/asm/ftrace.h @@ -54,6 +54,24 @@ #define ftrace_return_address(n) return_address(n) +#define ARCH_HAS_SYSCALL_MATCH_SYM_NAME + +static inline bool arch_syscall_match_sym_name(const char *sym, + const char *name) +{ + if (!strcmp(sym, "sys_mmap2")) + sym = "sys_mmap_pgoff"; + else if (!strcmp(sym, "sys_statfs64_wrapper")) + sym = "sys_statfs64"; + else if (!strcmp(sym, "sys_fstatfs64_wrapper")) + sym = "sys_fstatfs64"; + else if (!strcmp(sym, "sys_arm_fadvise64_64")) + sym = "sys_fadvise64_64"; + + /* Ignore case since sym may start with "SyS" instead of "sys" */ + return !strcasecmp(sym, name); +} + #endif /* ifndef __ASSEMBLY__ */ #endif /* _ASM_ARM_FTRACE */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/arm/include/asm/unaligned.h +++ linux-raspi2-4.4.0/arch/arm/include/asm/unaligned.h @@ -0,0 +1,27 @@ +#ifndef __ASM_ARM_UNALIGNED_H +#define __ASM_ARM_UNALIGNED_H + +/* + * We generally want to set CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS on ARMv6+, + * but we don't want to use linux/unaligned/access_ok.h since that can lead + * to traps on unaligned stm/ldm or strd/ldrd. + */ +#include + +#if defined(__LITTLE_ENDIAN) +# include +# include +# include +# define get_unaligned __get_unaligned_le +# define put_unaligned __put_unaligned_le +#elif defined(__BIG_ENDIAN) +# include +# include +# include +# define get_unaligned __get_unaligned_be +# define put_unaligned __put_unaligned_be +#else +# error need to define endianess +#endif + +#endif /* __ASM_ARM_UNALIGNED_H */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/arm/kernel/traps.c +++ linux-raspi2-4.4.0/arch/arm/kernel/traps.c @@ -132,30 +132,26 @@ set_fs(fs); } -static void dump_instr(const char *lvl, struct pt_regs *regs) +static void __dump_instr(const char *lvl, struct pt_regs *regs) { unsigned long addr = instruction_pointer(regs); const int thumb = thumb_mode(regs); const int width = thumb ? 4 : 8; - mm_segment_t fs; char str[sizeof("00000000 ") * 5 + 2 + 1], *p = str; int i; /* - * We need to switch to kernel mode so that we can use __get_user - * to safely read from kernel space. Note that we now dump the - * code first, just in case the backtrace kills us. + * Note that we now dump the code first, just in case the backtrace + * kills us. */ - fs = get_fs(); - set_fs(KERNEL_DS); for (i = -4; i < 1 + !!thumb; i++) { unsigned int val, bad; if (thumb) - bad = __get_user(val, &((u16 *)addr)[i]); + bad = get_user(val, &((u16 *)addr)[i]); else - bad = __get_user(val, &((u32 *)addr)[i]); + bad = get_user(val, &((u32 *)addr)[i]); if (!bad) p += sprintf(p, i == 0 ? "(%0*x) " : "%0*x ", @@ -166,8 +162,20 @@ } } printk("%sCode: %s\n", lvl, str); +} - set_fs(fs); +static void dump_instr(const char *lvl, struct pt_regs *regs) +{ + mm_segment_t fs; + + if (!user_mode(regs)) { + fs = get_fs(); + set_fs(KERNEL_DS); + __dump_instr(lvl, regs); + set_fs(fs); + } else { + __dump_instr(lvl, regs); + } } #ifdef CONFIG_ARM_UNWIND only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/arm/mach-bcm/bcm_kona_smc.c +++ linux-raspi2-4.4.0/arch/arm/mach-bcm/bcm_kona_smc.c @@ -33,7 +33,7 @@ unsigned result; }; -static const struct of_device_id const bcm_kona_smc_ids[] __initconst = { +static const struct of_device_id bcm_kona_smc_ids[] __initconst = { {.compatible = "brcm,kona-smc"}, {.compatible = "bcm,kona-smc"}, /* deprecated name */ {}, only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/arm/mach-cns3xxx/core.c +++ linux-raspi2-4.4.0/arch/arm/mach-cns3xxx/core.c @@ -346,7 +346,7 @@ .power_off = csn3xxx_usb_power_off, }; -static const struct of_dev_auxdata const cns3xxx_auxdata[] __initconst = { +static const struct of_dev_auxdata cns3xxx_auxdata[] __initconst = { { "intel,usb-ehci", CNS3XXX_USB_BASE, "ehci-platform", &cns3xxx_usb_ehci_pdata }, { "intel,usb-ohci", CNS3XXX_USB_OHCI_BASE, "ohci-platform", &cns3xxx_usb_ohci_pdata }, { "cavium,cns3420-ahci", CNS3XXX_SATA2_BASE, "ahci", NULL }, only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/arm/mach-omap2/prm_common.c +++ linux-raspi2-4.4.0/arch/arm/mach-omap2/prm_common.c @@ -706,7 +706,7 @@ }; #endif -static const struct of_device_id const omap_prcm_dt_match_table[] __initconst = { +static const struct of_device_id omap_prcm_dt_match_table[] __initconst = { #ifdef CONFIG_SOC_AM33XX { .compatible = "ti,am3-prcm", .data = &am3_prm_data }, #endif only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/arm/mach-omap2/vc.c +++ linux-raspi2-4.4.0/arch/arm/mach-omap2/vc.c @@ -559,7 +559,7 @@ u8 hsscll_12; }; -static const struct i2c_init_data const omap4_i2c_timing_data[] __initconst = { +static const struct i2c_init_data omap4_i2c_timing_data[] __initconst = { { .load = 50, .loadbits = 0x3, only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/arm/mach-pxa/balloon3.c +++ linux-raspi2-4.4.0/arch/arm/mach-pxa/balloon3.c @@ -17,6 +17,7 @@ #include #include #include +#include #include #include #include only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/arm/mach-pxa/colibri-pxa270-income.c +++ linux-raspi2-4.4.0/arch/arm/mach-pxa/colibri-pxa270-income.c @@ -17,6 +17,7 @@ #include #include #include +#include #include #include #include only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/arm/mach-pxa/corgi.c +++ linux-raspi2-4.4.0/arch/arm/mach-pxa/corgi.c @@ -18,6 +18,7 @@ #include #include #include +#include #include #include #include only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/arm/mach-pxa/devices.c +++ linux-raspi2-4.4.0/arch/arm/mach-pxa/devices.c @@ -1203,6 +1203,7 @@ static struct mmp_dma_platdata pxa_dma_pdata = { .dma_channels = 0, + .nb_requestors = 0, }; static struct resource pxa_dma_resource[] = { @@ -1231,8 +1232,9 @@ .resource = pxa_dma_resource, }; -void __init pxa2xx_set_dmac_info(int nb_channels) +void __init pxa2xx_set_dmac_info(int nb_channels, int nb_requestors) { pxa_dma_pdata.dma_channels = nb_channels; + pxa_dma_pdata.nb_requestors = nb_requestors; pxa_register_device(&pxa2xx_pxa_dma, &pxa_dma_pdata); } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/arm/mach-pxa/pxa25x.c +++ linux-raspi2-4.4.0/arch/arm/mach-pxa/pxa25x.c @@ -206,7 +206,7 @@ register_syscore_ops(&pxa_irq_syscore_ops); register_syscore_ops(&pxa2xx_mfp_syscore_ops); - pxa2xx_set_dmac_info(16); + pxa2xx_set_dmac_info(16, 40); pxa_register_device(&pxa25x_device_gpio, &pxa25x_gpio_info); ret = platform_add_devices(pxa25x_devices, ARRAY_SIZE(pxa25x_devices)); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/arm/mach-pxa/pxa27x.c +++ linux-raspi2-4.4.0/arch/arm/mach-pxa/pxa27x.c @@ -309,7 +309,7 @@ if (!of_have_populated_dt()) { pxa_register_device(&pxa27x_device_gpio, &pxa27x_gpio_info); - pxa2xx_set_dmac_info(32); + pxa2xx_set_dmac_info(32, 75); ret = platform_add_devices(devices, ARRAY_SIZE(devices)); } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/arm/mach-pxa/pxa3xx.c +++ linux-raspi2-4.4.0/arch/arm/mach-pxa/pxa3xx.c @@ -450,7 +450,7 @@ if (of_have_populated_dt()) return 0; - pxa2xx_set_dmac_info(32); + pxa2xx_set_dmac_info(32, 100); ret = platform_add_devices(devices, ARRAY_SIZE(devices)); if (ret) return ret; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/arm/mach-pxa/trizeps4.c +++ linux-raspi2-4.4.0/arch/arm/mach-pxa/trizeps4.c @@ -16,6 +16,7 @@ #include #include #include +#include #include #include #include only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/arm/mach-pxa/vpac270.c +++ linux-raspi2-4.4.0/arch/arm/mach-pxa/vpac270.c @@ -15,6 +15,7 @@ #include #include #include +#include #include #include #include only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/arm/mach-pxa/zeus.c +++ linux-raspi2-4.4.0/arch/arm/mach-pxa/zeus.c @@ -13,6 +13,7 @@ #include #include +#include #include #include #include only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/arm/mach-pxa/zylonite.c +++ linux-raspi2-4.4.0/arch/arm/mach-pxa/zylonite.c @@ -16,6 +16,7 @@ #include #include #include +#include #include #include #include only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/arm/mach-spear/time.c +++ linux-raspi2-4.4.0/arch/arm/mach-spear/time.c @@ -204,7 +204,7 @@ setup_irq(irq, &spear_timer_irq); } -static const struct of_device_id const timer_of_match[] __initconst = { +static const struct of_device_id timer_of_match[] __initconst = { { .compatible = "st,spear-timer", }, { }, }; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/arm/plat-pxa/include/plat/dma.h +++ linux-raspi2-4.4.0/arch/arm/plat-pxa/include/plat/dma.h @@ -95,6 +95,6 @@ } #endif -extern void __init pxa2xx_set_dmac_info(int nb_channels); +extern void __init pxa2xx_set_dmac_info(int nb_channels, int nb_requestors); #endif /* __PLAT_DMA_H */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/arm/xen/mm.c +++ linux-raspi2-4.4.0/arch/arm/xen/mm.c @@ -199,6 +199,7 @@ .unmap_page = xen_swiotlb_unmap_page, .dma_supported = xen_swiotlb_dma_supported, .set_dma_mask = xen_swiotlb_set_dma_mask, + .mmap = xen_swiotlb_dma_mmap, }; int __init xen_mm_init(void) only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/arm64/boot/dts/xilinx/zynqmp-ep108.dts +++ linux-raspi2-4.4.0/arch/arm64/boot/dts/xilinx/zynqmp-ep108.dts @@ -26,7 +26,7 @@ stdout-path = "serial0:115200n8"; }; - memory { + memory@0 { device_type = "memory"; reg = <0x0 0x0 0x40000000>; }; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/arm64/boot/dts/xilinx/zynqmp.dtsi +++ linux-raspi2-4.4.0/arch/arm64/boot/dts/xilinx/zynqmp.dtsi @@ -71,7 +71,7 @@ <1 10 0xf01>; }; - amba_apu { + amba_apu: amba_apu@0 { compatible = "simple-bus"; #address-cells = <2>; #size-cells = <1>; @@ -191,7 +191,7 @@ }; i2c0: i2c@ff020000 { - compatible = "cdns,i2c-r1p10"; + compatible = "cdns,i2c-r1p14", "cdns,i2c-r1p10"; status = "disabled"; interrupt-parent = <&gic>; interrupts = <0 17 4>; @@ -202,7 +202,7 @@ }; i2c1: i2c@ff030000 { - compatible = "cdns,i2c-r1p10"; + compatible = "cdns,i2c-r1p14", "cdns,i2c-r1p10"; status = "disabled"; interrupt-parent = <&gic>; interrupts = <0 18 4>; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/arm64/kernel/fpsimd.c +++ linux-raspi2-4.4.0/arch/arm64/kernel/fpsimd.c @@ -157,9 +157,11 @@ void fpsimd_flush_thread(void) { + preempt_disable(); memset(¤t->thread.fpsimd_state, 0, sizeof(struct fpsimd_state)); fpsimd_flush_task_state(current); set_thread_flag(TIF_FOREIGN_FPSTATE); + preempt_enable(); } /* only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/mips/ar7/platform.c +++ linux-raspi2-4.4.0/arch/mips/ar7/platform.c @@ -576,6 +576,7 @@ uart_port.type = PORT_AR7; uart_port.uartclk = clk_get_rate(bus_clk) / 2; uart_port.iotype = UPIO_MEM32; + uart_port.flags = UPF_FIXED_TYPE; uart_port.regshift = 2; uart_port.line = 0; @@ -654,6 +655,10 @@ u32 val; int res; + res = ar7_gpio_init(); + if (res) + pr_warn("unable to register gpios: %d\n", res); + res = ar7_register_uarts(); if (res) pr_err("unable to setup uart(s): %d\n", res); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/mips/ar7/prom.c +++ linux-raspi2-4.4.0/arch/mips/ar7/prom.c @@ -246,8 +246,6 @@ ar7_init_cmdline(fw_arg0, (char **)fw_arg1); ar7_init_env((struct env_var *)fw_arg2); console_config(); - - ar7_gpio_init(); } #define PORT(offset) (KSEG1ADDR(AR7_REGS_UART0 + (offset * 4))) only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/mips/include/asm/branch.h +++ linux-raspi2-4.4.0/arch/mips/include/asm/branch.h @@ -74,10 +74,7 @@ return __microMIPS_compute_return_epc(regs); if (cpu_has_mips16) return __MIPS16e_compute_return_epc(regs); - return regs->cp0_epc; - } - - if (!delay_slot(regs)) { + } else if (!delay_slot(regs)) { regs->cp0_epc += 4; return 0; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/mips/include/asm/mips-cm.h +++ linux-raspi2-4.4.0/arch/mips/include/asm/mips-cm.h @@ -238,8 +238,8 @@ #define CM_GCR_BASE_GCRBASE_MSK (_ULCAST_(0x1ffff) << 15) #define CM_GCR_BASE_CMDEFTGT_SHF 0 #define CM_GCR_BASE_CMDEFTGT_MSK (_ULCAST_(0x3) << 0) -#define CM_GCR_BASE_CMDEFTGT_DISABLED 0 -#define CM_GCR_BASE_CMDEFTGT_MEM 1 +#define CM_GCR_BASE_CMDEFTGT_MEM 0 +#define CM_GCR_BASE_CMDEFTGT_RESERVED 1 #define CM_GCR_BASE_CMDEFTGT_IOCU0 2 #define CM_GCR_BASE_CMDEFTGT_IOCU1 3 only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/mips/kernel/proc.c +++ linux-raspi2-4.4.0/arch/mips/kernel/proc.c @@ -83,7 +83,7 @@ } seq_printf(m, "isa\t\t\t:"); - if (cpu_has_mips_r1) + if (cpu_has_mips_1) seq_printf(m, " mips1"); if (cpu_has_mips_2) seq_printf(m, "%s", " mips2"); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/mips/kernel/scall32-o32.S +++ linux-raspi2-4.4.0/arch/mips/kernel/scall32-o32.S @@ -372,7 +372,7 @@ PTR sys_writev PTR sys_cacheflush PTR sys_cachectl - PTR sys_sysmips + PTR __sys_sysmips PTR sys_ni_syscall /* 4150 */ PTR sys_getsid PTR sys_fdatasync only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/mips/kernel/scall64-64.S +++ linux-raspi2-4.4.0/arch/mips/kernel/scall64-64.S @@ -312,7 +312,7 @@ PTR sys_sched_getaffinity PTR sys_cacheflush PTR sys_cachectl - PTR sys_sysmips + PTR __sys_sysmips PTR sys_io_setup /* 5200 */ PTR sys_io_destroy PTR sys_io_getevents only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/mips/kernel/syscall.c +++ linux-raspi2-4.4.0/arch/mips/kernel/syscall.c @@ -28,6 +28,7 @@ #include #include +#include #include #include #include @@ -138,10 +139,12 @@ __asm__ __volatile__ ( " .set "MIPS_ISA_ARCH_LEVEL" \n" " li %[err], 0 \n" - "1: ll %[old], (%[addr]) \n" + "1: \n" + user_ll("%[old]", "(%[addr])") " move %[tmp], %[new] \n" - "2: sc %[tmp], (%[addr]) \n" - " bnez %[tmp], 4f \n" + "2: \n" + user_sc("%[tmp]", "(%[addr])") + " beqz %[tmp], 4f \n" "3: \n" " .insn \n" " .subsection 2 \n" @@ -199,6 +202,12 @@ unreachable(); } +/* + * mips_atomic_set() normally returns directly via syscall_exit potentially + * clobbering static registers, so be sure to preserve them. + */ +save_static_function(sys_sysmips); + SYSCALL_DEFINE3(sysmips, long, cmd, long, arg1, long, arg2) { switch (cmd) { only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/mips/kernel/vmlinux.lds.S +++ linux-raspi2-4.4.0/arch/mips/kernel/vmlinux.lds.S @@ -159,7 +159,7 @@ * Force .bss to 64K alignment so that .bss..swapper_pg_dir * gets that alignment. .sbss should be empty, so there will be * no holes after __init_end. */ - BSS_SECTION(0, 0x10000, 0) + BSS_SECTION(0, 0x10000, 8) _end = . ; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/mips/math-emu/dp_fmax.c +++ linux-raspi2-4.4.0/arch/mips/math-emu/dp_fmax.c @@ -47,14 +47,26 @@ case CLPAIR(IEEE754_CLASS_SNAN, IEEE754_CLASS_INF): return ieee754dp_nanxcpt(x); - /* numbers are preferred to NaNs */ + /* + * Quiet NaN handling + */ + + /* + * The case of both inputs quiet NaNs + */ + case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_QNAN): + return x; + + /* + * The cases of exactly one input quiet NaN (numbers + * are here preferred as returned values to NaNs) + */ case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_NORM, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_QNAN): return x; - case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_ZERO): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_NORM): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_DNORM): @@ -80,9 +92,7 @@ return ys ? x : y; case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_ZERO): - if (xs == ys) - return x; - return ieee754dp_zero(1); + return ieee754dp_zero(xs & ys); case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_DNORM): DPDNORMX; @@ -106,16 +116,32 @@ else if (xs < ys) return x; - /* Compare exponent */ - if (xe > ye) - return x; - else if (xe < ye) - return y; + /* Signs of inputs are equal, let's compare exponents */ + if (xs == 0) { + /* Inputs are both positive */ + if (xe > ye) + return x; + else if (xe < ye) + return y; + } else { + /* Inputs are both negative */ + if (xe > ye) + return y; + else if (xe < ye) + return x; + } - /* Compare mantissa */ + /* Signs and exponents of inputs are equal, let's compare mantissas */ + if (xs == 0) { + /* Inputs are both positive, with equal signs and exponents */ + if (xm <= ym) + return y; + return x; + } + /* Inputs are both negative, with equal signs and exponents */ if (xm <= ym) - return y; - return x; + return x; + return y; } union ieee754dp ieee754dp_fmaxa(union ieee754dp x, union ieee754dp y) @@ -147,14 +173,26 @@ case CLPAIR(IEEE754_CLASS_SNAN, IEEE754_CLASS_INF): return ieee754dp_nanxcpt(x); - /* numbers are preferred to NaNs */ + /* + * Quiet NaN handling + */ + + /* + * The case of both inputs quiet NaNs + */ + case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_QNAN): + return x; + + /* + * The cases of exactly one input quiet NaN (numbers + * are here preferred as returned values to NaNs) + */ case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_NORM, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_QNAN): return x; - case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_ZERO): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_NORM): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_DNORM): @@ -164,6 +202,9 @@ /* * Infinity and zero handling */ + case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_INF): + return ieee754dp_inf(xs & ys); + case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_ZERO): case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_NORM): case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_DNORM): @@ -171,7 +212,6 @@ case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_ZERO): return x; - case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_INF): case CLPAIR(IEEE754_CLASS_NORM, IEEE754_CLASS_INF): case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_INF): case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_INF): @@ -180,9 +220,7 @@ return y; case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_ZERO): - if (xs == ys) - return x; - return ieee754dp_zero(1); + return ieee754dp_zero(xs & ys); case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_DNORM): DPDNORMX; @@ -207,7 +245,11 @@ return y; /* Compare mantissa */ - if (xm <= ym) + if (xm < ym) return y; - return x; + else if (xm > ym) + return x; + else if (xs == 0) + return x; + return y; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/mips/math-emu/dp_fmin.c +++ linux-raspi2-4.4.0/arch/mips/math-emu/dp_fmin.c @@ -47,14 +47,26 @@ case CLPAIR(IEEE754_CLASS_SNAN, IEEE754_CLASS_INF): return ieee754dp_nanxcpt(x); - /* numbers are preferred to NaNs */ + /* + * Quiet NaN handling + */ + + /* + * The case of both inputs quiet NaNs + */ + case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_QNAN): + return x; + + /* + * The cases of exactly one input quiet NaN (numbers + * are here preferred as returned values to NaNs) + */ case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_NORM, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_QNAN): return x; - case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_ZERO): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_NORM): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_DNORM): @@ -80,9 +92,7 @@ return ys ? y : x; case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_ZERO): - if (xs == ys) - return x; - return ieee754dp_zero(1); + return ieee754dp_zero(xs | ys); case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_DNORM): DPDNORMX; @@ -106,16 +116,32 @@ else if (xs < ys) return y; - /* Compare exponent */ - if (xe > ye) - return y; - else if (xe < ye) - return x; + /* Signs of inputs are the same, let's compare exponents */ + if (xs == 0) { + /* Inputs are both positive */ + if (xe > ye) + return y; + else if (xe < ye) + return x; + } else { + /* Inputs are both negative */ + if (xe > ye) + return x; + else if (xe < ye) + return y; + } - /* Compare mantissa */ + /* Signs and exponents of inputs are equal, let's compare mantissas */ + if (xs == 0) { + /* Inputs are both positive, with equal signs and exponents */ + if (xm <= ym) + return x; + return y; + } + /* Inputs are both negative, with equal signs and exponents */ if (xm <= ym) - return x; - return y; + return y; + return x; } union ieee754dp ieee754dp_fmina(union ieee754dp x, union ieee754dp y) @@ -147,14 +173,26 @@ case CLPAIR(IEEE754_CLASS_SNAN, IEEE754_CLASS_INF): return ieee754dp_nanxcpt(x); - /* numbers are preferred to NaNs */ + /* + * Quiet NaN handling + */ + + /* + * The case of both inputs quiet NaNs + */ + case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_QNAN): + return x; + + /* + * The cases of exactly one input quiet NaN (numbers + * are here preferred as returned values to NaNs) + */ case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_NORM, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_QNAN): return x; - case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_ZERO): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_NORM): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_DNORM): @@ -164,25 +202,25 @@ /* * Infinity and zero handling */ + case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_INF): + return ieee754dp_inf(xs | ys); + case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_ZERO): case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_NORM): case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_DNORM): case CLPAIR(IEEE754_CLASS_NORM, IEEE754_CLASS_ZERO): case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_ZERO): - return x; + return y; - case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_INF): case CLPAIR(IEEE754_CLASS_NORM, IEEE754_CLASS_INF): case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_INF): case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_INF): case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_NORM): case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_DNORM): - return y; + return x; case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_ZERO): - if (xs == ys) - return x; - return ieee754dp_zero(1); + return ieee754dp_zero(xs | ys); case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_DNORM): DPDNORMX; @@ -207,7 +245,11 @@ return x; /* Compare mantissa */ - if (xm <= ym) + if (xm < ym) + return x; + else if (xm > ym) + return y; + else if (xs == 1) return x; return y; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/mips/math-emu/sp_fmax.c +++ linux-raspi2-4.4.0/arch/mips/math-emu/sp_fmax.c @@ -47,14 +47,26 @@ case CLPAIR(IEEE754_CLASS_SNAN, IEEE754_CLASS_INF): return ieee754sp_nanxcpt(x); - /* numbers are preferred to NaNs */ + /* + * Quiet NaN handling + */ + + /* + * The case of both inputs quiet NaNs + */ + case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_QNAN): + return x; + + /* + * The cases of exactly one input quiet NaN (numbers + * are here preferred as returned values to NaNs) + */ case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_NORM, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_QNAN): return x; - case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_ZERO): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_NORM): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_DNORM): @@ -80,9 +92,7 @@ return ys ? x : y; case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_ZERO): - if (xs == ys) - return x; - return ieee754sp_zero(1); + return ieee754sp_zero(xs & ys); case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_DNORM): SPDNORMX; @@ -106,16 +116,32 @@ else if (xs < ys) return x; - /* Compare exponent */ - if (xe > ye) - return x; - else if (xe < ye) - return y; + /* Signs of inputs are equal, let's compare exponents */ + if (xs == 0) { + /* Inputs are both positive */ + if (xe > ye) + return x; + else if (xe < ye) + return y; + } else { + /* Inputs are both negative */ + if (xe > ye) + return y; + else if (xe < ye) + return x; + } - /* Compare mantissa */ + /* Signs and exponents of inputs are equal, let's compare mantissas */ + if (xs == 0) { + /* Inputs are both positive, with equal signs and exponents */ + if (xm <= ym) + return y; + return x; + } + /* Inputs are both negative, with equal signs and exponents */ if (xm <= ym) - return y; - return x; + return x; + return y; } union ieee754sp ieee754sp_fmaxa(union ieee754sp x, union ieee754sp y) @@ -147,14 +173,26 @@ case CLPAIR(IEEE754_CLASS_SNAN, IEEE754_CLASS_INF): return ieee754sp_nanxcpt(x); - /* numbers are preferred to NaNs */ + /* + * Quiet NaN handling + */ + + /* + * The case of both inputs quiet NaNs + */ + case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_QNAN): + return x; + + /* + * The cases of exactly one input quiet NaN (numbers + * are here preferred as returned values to NaNs) + */ case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_NORM, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_QNAN): return x; - case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_ZERO): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_NORM): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_DNORM): @@ -164,6 +202,9 @@ /* * Infinity and zero handling */ + case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_INF): + return ieee754sp_inf(xs & ys); + case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_ZERO): case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_NORM): case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_DNORM): @@ -171,7 +212,6 @@ case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_ZERO): return x; - case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_INF): case CLPAIR(IEEE754_CLASS_NORM, IEEE754_CLASS_INF): case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_INF): case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_INF): @@ -180,9 +220,7 @@ return y; case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_ZERO): - if (xs == ys) - return x; - return ieee754sp_zero(1); + return ieee754sp_zero(xs & ys); case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_DNORM): SPDNORMX; @@ -207,7 +245,11 @@ return y; /* Compare mantissa */ - if (xm <= ym) + if (xm < ym) return y; - return x; + else if (xm > ym) + return x; + else if (xs == 0) + return x; + return y; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/mips/math-emu/sp_fmin.c +++ linux-raspi2-4.4.0/arch/mips/math-emu/sp_fmin.c @@ -47,14 +47,26 @@ case CLPAIR(IEEE754_CLASS_SNAN, IEEE754_CLASS_INF): return ieee754sp_nanxcpt(x); - /* numbers are preferred to NaNs */ + /* + * Quiet NaN handling + */ + + /* + * The case of both inputs quiet NaNs + */ + case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_QNAN): + return x; + + /* + * The cases of exactly one input quiet NaN (numbers + * are here preferred as returned values to NaNs) + */ case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_NORM, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_QNAN): return x; - case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_ZERO): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_NORM): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_DNORM): @@ -80,9 +92,7 @@ return ys ? y : x; case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_ZERO): - if (xs == ys) - return x; - return ieee754sp_zero(1); + return ieee754sp_zero(xs | ys); case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_DNORM): SPDNORMX; @@ -106,16 +116,32 @@ else if (xs < ys) return y; - /* Compare exponent */ - if (xe > ye) - return y; - else if (xe < ye) - return x; + /* Signs of inputs are the same, let's compare exponents */ + if (xs == 0) { + /* Inputs are both positive */ + if (xe > ye) + return y; + else if (xe < ye) + return x; + } else { + /* Inputs are both negative */ + if (xe > ye) + return x; + else if (xe < ye) + return y; + } - /* Compare mantissa */ + /* Signs and exponents of inputs are equal, let's compare mantissas */ + if (xs == 0) { + /* Inputs are both positive, with equal signs and exponents */ + if (xm <= ym) + return x; + return y; + } + /* Inputs are both negative, with equal signs and exponents */ if (xm <= ym) - return x; - return y; + return y; + return x; } union ieee754sp ieee754sp_fmina(union ieee754sp x, union ieee754sp y) @@ -147,14 +173,26 @@ case CLPAIR(IEEE754_CLASS_SNAN, IEEE754_CLASS_INF): return ieee754sp_nanxcpt(x); - /* numbers are preferred to NaNs */ + /* + * Quiet NaN handling + */ + + /* + * The case of both inputs quiet NaNs + */ + case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_QNAN): + return x; + + /* + * The cases of exactly one input quiet NaN (numbers + * are here preferred as returned values to NaNs) + */ case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_NORM, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_QNAN): return x; - case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_ZERO): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_NORM): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_DNORM): @@ -164,25 +202,25 @@ /* * Infinity and zero handling */ + case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_INF): + return ieee754sp_inf(xs | ys); + case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_ZERO): case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_NORM): case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_DNORM): case CLPAIR(IEEE754_CLASS_NORM, IEEE754_CLASS_ZERO): case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_ZERO): - return x; + return y; - case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_INF): case CLPAIR(IEEE754_CLASS_NORM, IEEE754_CLASS_INF): case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_INF): case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_INF): case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_NORM): case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_DNORM): - return y; + return x; case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_ZERO): - if (xs == ys) - return x; - return ieee754sp_zero(1); + return ieee754sp_zero(xs | ys); case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_DNORM): SPDNORMX; @@ -207,7 +245,11 @@ return x; /* Compare mantissa */ - if (xm <= ym) + if (xm < ym) + return x; + else if (xm > ym) + return y; + else if (xs == 1) return x; return y; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/mips/mm/uasm-micromips.c +++ linux-raspi2-4.4.0/arch/mips/mm/uasm-micromips.c @@ -75,7 +75,7 @@ { insn_jr, M(mm_pool32a_op, 0, 0, 0, mm_jalr_op, mm_pool32axf_op), RS }, { insn_lb, M(mm_lb32_op, 0, 0, 0, 0, 0), RT | RS | SIMM }, { insn_ld, 0, 0 }, - { insn_lh, M(mm_lh32_op, 0, 0, 0, 0, 0), RS | RS | SIMM }, + { insn_lh, M(mm_lh32_op, 0, 0, 0, 0, 0), RT | RS | SIMM }, { insn_ll, M(mm_pool32c_op, 0, 0, (mm_ll_func << 1), 0, 0), RS | RT | SIMM }, { insn_lld, 0, 0 }, { insn_lui, M(mm_pool32i_op, mm_lui_op, 0, 0, 0, 0), RS | SIMM }, only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/openrisc/kernel/vmlinux.lds.S +++ linux-raspi2-4.4.0/arch/openrisc/kernel/vmlinux.lds.S @@ -38,6 +38,8 @@ /* Read-only sections, merged into text segment: */ . = LOAD_BASE ; + _text = .; + /* _s_kernel_ro must be page aligned */ . = ALIGN(PAGE_SIZE); _s_kernel_ro = .; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/parisc/include/asm/dma-mapping.h +++ linux-raspi2-4.4.0/arch/parisc/include/asm/dma-mapping.h @@ -39,6 +39,8 @@ ** flush/purge and allocate "regular" cacheable pages for everything. */ +#define DMA_ERROR_CODE (~(dma_addr_t)0) + #ifdef CONFIG_PA11 extern struct hppa_dma_ops pcxl_dma_ops; extern struct hppa_dma_ops pcx_dma_ops; @@ -209,12 +211,13 @@ break; } } - BUG_ON(!dev->platform_data); return dev->platform_data; } - -#define GET_IOC(dev) (HBA_DATA(parisc_walk_tree(dev))->iommu) - + +#define GET_IOC(dev) ({ \ + void *__pdata = parisc_walk_tree(dev); \ + __pdata ? HBA_DATA(__pdata)->iommu : NULL; \ +}) #ifdef CONFIG_IOMMU_CCIO struct parisc_device; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/parisc/include/asm/mmu_context.h +++ linux-raspi2-4.4.0/arch/parisc/include/asm/mmu_context.h @@ -49,15 +49,26 @@ mtctl(__space_to_prot(context), 8); } -static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next, struct task_struct *tsk) +static inline void switch_mm_irqs_off(struct mm_struct *prev, + struct mm_struct *next, struct task_struct *tsk) { - if (prev != next) { mtctl(__pa(next->pgd), 25); load_context(next->context); } } +static inline void switch_mm(struct mm_struct *prev, + struct mm_struct *next, struct task_struct *tsk) +{ + unsigned long flags; + + local_irq_save(flags); + switch_mm_irqs_off(prev, next, tsk); + local_irq_restore(flags); +} +#define switch_mm_irqs_off switch_mm_irqs_off + #define deactivate_mm(tsk,mm) do { } while (0) static inline void activate_mm(struct mm_struct *prev, struct mm_struct *next) only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/parisc/kernel/perf.c +++ linux-raspi2-4.4.0/arch/parisc/kernel/perf.c @@ -39,7 +39,7 @@ * the PDC INTRIGUE calls. This is done to eliminate bugs introduced * in various PDC revisions. The code is much more maintainable * and reliable this way vs having to debug on every version of PDC - * on every box. + * on every box. */ #include @@ -195,8 +195,8 @@ static int perf_release(struct inode *inode, struct file *file); static int perf_open(struct inode *inode, struct file *file); static ssize_t perf_read(struct file *file, char __user *buf, size_t cnt, loff_t *ppos); -static ssize_t perf_write(struct file *file, const char __user *buf, size_t count, - loff_t *ppos); +static ssize_t perf_write(struct file *file, const char __user *buf, + size_t count, loff_t *ppos); static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg); static void perf_start_counters(void); static int perf_stop_counters(uint32_t *raddr); @@ -222,7 +222,7 @@ /* * configure: * - * Configure the cpu with a given data image. First turn off the counters, + * Configure the cpu with a given data image. First turn off the counters, * then download the image, then turn the counters back on. */ static int perf_config(uint32_t *image_ptr) @@ -234,7 +234,7 @@ error = perf_stop_counters(raddr); if (error != 0) { printk("perf_config: perf_stop_counters = %ld\n", error); - return -EINVAL; + return -EINVAL; } printk("Preparing to write image\n"); @@ -242,7 +242,7 @@ error = perf_write_image((uint64_t *)image_ptr); if (error != 0) { printk("perf_config: DOWNLOAD = %ld\n", error); - return -EINVAL; + return -EINVAL; } printk("Preparing to start counters\n"); @@ -254,7 +254,7 @@ } /* - * Open the device and initialize all of its memory. The device is only + * Open the device and initialize all of its memory. The device is only * opened once, but can be "queried" by multiple processes that know its * file descriptor. */ @@ -298,8 +298,8 @@ * called on the processor that the download should happen * on. */ -static ssize_t perf_write(struct file *file, const char __user *buf, size_t count, - loff_t *ppos) +static ssize_t perf_write(struct file *file, const char __user *buf, + size_t count, loff_t *ppos) { int err; size_t image_size; @@ -307,11 +307,11 @@ uint32_t interface_type; uint32_t test; - if (perf_processor_interface == ONYX_INTF) + if (perf_processor_interface == ONYX_INTF) image_size = PCXU_IMAGE_SIZE; - else if (perf_processor_interface == CUDA_INTF) + else if (perf_processor_interface == CUDA_INTF) image_size = PCXW_IMAGE_SIZE; - else + else return -EFAULT; if (!capable(CAP_SYS_ADMIN)) @@ -331,22 +331,22 @@ /* First check the machine type is correct for the requested image */ - if (((perf_processor_interface == CUDA_INTF) && - (interface_type != CUDA_INTF)) || - ((perf_processor_interface == ONYX_INTF) && - (interface_type != ONYX_INTF))) + if (((perf_processor_interface == CUDA_INTF) && + (interface_type != CUDA_INTF)) || + ((perf_processor_interface == ONYX_INTF) && + (interface_type != ONYX_INTF))) return -EINVAL; /* Next check to make sure the requested image is valid */ - if (((interface_type == CUDA_INTF) && + if (((interface_type == CUDA_INTF) && (test >= MAX_CUDA_IMAGES)) || - ((interface_type == ONYX_INTF) && - (test >= MAX_ONYX_IMAGES))) + ((interface_type == ONYX_INTF) && + (test >= MAX_ONYX_IMAGES))) return -EINVAL; /* Copy the image into the processor */ - if (interface_type == CUDA_INTF) + if (interface_type == CUDA_INTF) return perf_config(cuda_images[test]); else return perf_config(onyx_images[test]); @@ -360,7 +360,7 @@ static void perf_patch_images(void) { #if 0 /* FIXME!! */ -/* +/* * NOTE: this routine is VERY specific to the current TLB image. * If the image is changed, this routine might also need to be changed. */ @@ -368,9 +368,9 @@ extern void $i_dtlb_miss_2_0(); extern void PA2_0_iva(); - /* + /* * We can only use the lower 32-bits, the upper 32-bits should be 0 - * anyway given this is in the kernel + * anyway given this is in the kernel */ uint32_t itlb_addr = (uint32_t)&($i_itlb_miss_2_0); uint32_t dtlb_addr = (uint32_t)&($i_dtlb_miss_2_0); @@ -378,21 +378,21 @@ if (perf_processor_interface == ONYX_INTF) { /* clear last 2 bytes */ - onyx_images[TLBMISS][15] &= 0xffffff00; + onyx_images[TLBMISS][15] &= 0xffffff00; /* set 2 bytes */ onyx_images[TLBMISS][15] |= (0x000000ff&((dtlb_addr) >> 24)); onyx_images[TLBMISS][16] = (dtlb_addr << 8)&0xffffff00; onyx_images[TLBMISS][17] = itlb_addr; /* clear last 2 bytes */ - onyx_images[TLBHANDMISS][15] &= 0xffffff00; + onyx_images[TLBHANDMISS][15] &= 0xffffff00; /* set 2 bytes */ onyx_images[TLBHANDMISS][15] |= (0x000000ff&((dtlb_addr) >> 24)); onyx_images[TLBHANDMISS][16] = (dtlb_addr << 8)&0xffffff00; onyx_images[TLBHANDMISS][17] = itlb_addr; /* clear last 2 bytes */ - onyx_images[BIG_CPI][15] &= 0xffffff00; + onyx_images[BIG_CPI][15] &= 0xffffff00; /* set 2 bytes */ onyx_images[BIG_CPI][15] |= (0x000000ff&((dtlb_addr) >> 24)); onyx_images[BIG_CPI][16] = (dtlb_addr << 8)&0xffffff00; @@ -405,24 +405,24 @@ } else if (perf_processor_interface == CUDA_INTF) { /* Cuda interface */ - cuda_images[TLBMISS][16] = + cuda_images[TLBMISS][16] = (cuda_images[TLBMISS][16]&0xffff0000) | ((dtlb_addr >> 8)&0x0000ffff); - cuda_images[TLBMISS][17] = + cuda_images[TLBMISS][17] = ((dtlb_addr << 24)&0xff000000) | ((itlb_addr >> 16)&0x000000ff); cuda_images[TLBMISS][18] = (itlb_addr << 16)&0xffff0000; - cuda_images[TLBHANDMISS][16] = + cuda_images[TLBHANDMISS][16] = (cuda_images[TLBHANDMISS][16]&0xffff0000) | ((dtlb_addr >> 8)&0x0000ffff); - cuda_images[TLBHANDMISS][17] = + cuda_images[TLBHANDMISS][17] = ((dtlb_addr << 24)&0xff000000) | ((itlb_addr >> 16)&0x000000ff); cuda_images[TLBHANDMISS][18] = (itlb_addr << 16)&0xffff0000; - cuda_images[BIG_CPI][16] = + cuda_images[BIG_CPI][16] = (cuda_images[BIG_CPI][16]&0xffff0000) | ((dtlb_addr >> 8)&0x0000ffff); - cuda_images[BIG_CPI][17] = + cuda_images[BIG_CPI][17] = ((dtlb_addr << 24)&0xff000000) | ((itlb_addr >> 16)&0x000000ff); cuda_images[BIG_CPI][18] = (itlb_addr << 16)&0xffff0000; } else { @@ -434,7 +434,7 @@ /* * ioctl routine - * All routines effect the processor that they are executed on. Thus you + * All routines effect the processor that they are executed on. Thus you * must be running on the processor that you wish to change. */ @@ -460,7 +460,7 @@ } /* copy out the Counters */ - if (copy_to_user((void __user *)arg, raddr, + if (copy_to_user((void __user *)arg, raddr, sizeof (raddr)) != 0) { error = -EFAULT; break; @@ -488,7 +488,7 @@ .open = perf_open, .release = perf_release }; - + static struct miscdevice perf_dev = { MISC_DYNAMIC_MINOR, PA_PERF_DEV, @@ -596,7 +596,7 @@ /* OR sticky2 (bit 1496) to counter2 bit 32 */ tmp64 |= (userbuf[23] >> 8) & 0x0000000080000000; raddr[2] = (uint32_t)tmp64; - + /* Counter3 is bits 1497 to 1528 */ tmp64 = (userbuf[23] >> 7) & 0x00000000ffffffff; /* OR sticky3 (bit 1529) to counter3 bit 32 */ @@ -618,7 +618,7 @@ userbuf[22] = 0; userbuf[23] = 0; - /* + /* * Write back the zeroed bytes + the image given * the read was destructive. */ @@ -626,13 +626,13 @@ } else { /* - * Read RDR-15 which contains the counters and sticky bits + * Read RDR-15 which contains the counters and sticky bits */ if (!perf_rdr_read_ubuf(15, userbuf)) { return -13; } - /* + /* * Clear out the counters */ perf_rdr_clear(15); @@ -645,7 +645,7 @@ raddr[2] = (uint32_t)((userbuf[1] >> 32) & 0x00000000ffffffffUL); raddr[3] = (uint32_t)(userbuf[1] & 0x00000000ffffffffUL); } - + return 0; } @@ -683,7 +683,7 @@ i = tentry->num_words; while (i--) { buffer[i] = 0; - } + } /* Check for bits an even number of 64 */ if ((xbits = width & 0x03f) != 0) { @@ -809,18 +809,22 @@ } runway = ioremap_nocache(cpu_device->hpa.start, 4096); + if (!runway) { + pr_err("perf_write_image: ioremap failed!\n"); + return -ENOMEM; + } /* Merge intrigue bits into Runway STATUS 0 */ tmp64 = __raw_readq(runway + RUNWAY_STATUS) & 0xffecfffffffffffful; - __raw_writeq(tmp64 | (*memaddr++ & 0x0013000000000000ul), + __raw_writeq(tmp64 | (*memaddr++ & 0x0013000000000000ul), runway + RUNWAY_STATUS); - + /* Write RUNWAY DEBUG registers */ for (i = 0; i < 8; i++) { __raw_writeq(*memaddr++, runway + RUNWAY_DEBUG); } - return 0; + return 0; } /* @@ -844,7 +848,7 @@ perf_rdr_shift_out_U(rdr_num, buffer[i]); } else { perf_rdr_shift_out_W(rdr_num, buffer[i]); - } + } } printk("perf_rdr_write done\n"); } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/parisc/kernel/syscall_table.S +++ linux-raspi2-4.4.0/arch/parisc/kernel/syscall_table.S @@ -361,7 +361,7 @@ ENTRY_SAME(ni_syscall) /* 263: reserved for vserver */ ENTRY_SAME(add_key) ENTRY_SAME(request_key) /* 265 */ - ENTRY_SAME(keyctl) + ENTRY_COMP(keyctl) ENTRY_SAME(ioprio_set) ENTRY_SAME(ioprio_get) ENTRY_SAME(inotify_init) only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/powerpc/boot/dts/fsl/kmcoge4.dts +++ linux-raspi2-4.4.0/arch/powerpc/boot/dts/fsl/kmcoge4.dts @@ -83,6 +83,10 @@ }; }; + sdhc@114000 { + status = "disabled"; + }; + i2c@119000 { status = "disabled"; }; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/powerpc/include/asm/elf.h +++ linux-raspi2-4.4.0/arch/powerpc/include/asm/elf.h @@ -23,12 +23,13 @@ #define CORE_DUMP_USE_REGSET #define ELF_EXEC_PAGESIZE PAGE_SIZE -/* This is the location that an ET_DYN program is loaded if exec'ed. Typical - use of this is to invoke "./ld.so someprog" to test out a new version of - the loader. We need to make sure that it is out of the way of the program - that it will "exec", and that there is sufficient room for the brk. */ - -#define ELF_ET_DYN_BASE 0x20000000 +/* + * This is the base location for PIE (ET_DYN with INTERP) loads. On + * 64-bit, this is raised to 4GB to leave the entire 32-bit address + * space open for things that want to use the area for 32-bit pointers. + */ +#define ELF_ET_DYN_BASE (is_32bit_task() ? 0x000400000UL : \ + 0x100000000UL) #define ELF_CORE_EFLAGS (is_elf2_task() ? 2 : 0) only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/powerpc/include/asm/kvm_book3s.h +++ linux-raspi2-4.4.0/arch/powerpc/include/asm/kvm_book3s.h @@ -83,6 +83,7 @@ u64 sdr1; u64 hior; u64 msr_mask; + u64 vtb; #ifdef CONFIG_PPC_BOOK3S_32 u32 vsid_pool[VSID_POOL_SIZE]; u32 vsid_next; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/powerpc/kvm/book3s.c +++ linux-raspi2-4.4.0/arch/powerpc/kvm/book3s.c @@ -591,9 +591,6 @@ case KVM_REG_PPC_BESCR: *val = get_reg_val(id, vcpu->arch.bescr); break; - case KVM_REG_PPC_VTB: - *val = get_reg_val(id, vcpu->arch.vtb); - break; case KVM_REG_PPC_IC: *val = get_reg_val(id, vcpu->arch.ic); break; @@ -665,9 +662,6 @@ case KVM_REG_PPC_BESCR: vcpu->arch.bescr = set_reg_val(id, *val); break; - case KVM_REG_PPC_VTB: - vcpu->arch.vtb = set_reg_val(id, *val); - break; case KVM_REG_PPC_IC: vcpu->arch.ic = set_reg_val(id, *val); break; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/powerpc/kvm/book3s_64_vio.c +++ linux-raspi2-4.4.0/arch/powerpc/kvm/book3s_64_vio.c @@ -101,22 +101,17 @@ struct kvm_create_spapr_tce *args) { struct kvmppc_spapr_tce_table *stt = NULL; + struct kvmppc_spapr_tce_table *siter; long npages; int ret = -ENOMEM; int i; - /* Check this LIOBN hasn't been previously allocated */ - list_for_each_entry(stt, &kvm->arch.spapr_tce_tables, list) { - if (stt->liobn == args->liobn) - return -EBUSY; - } - npages = kvmppc_stt_npages(args->window_size); stt = kzalloc(sizeof(*stt) + npages * sizeof(struct page *), GFP_KERNEL); if (!stt) - goto fail; + return ret; stt->liobn = args->liobn; stt->window_size = args->window_size; @@ -128,23 +123,36 @@ goto fail; } - kvm_get_kvm(kvm); - mutex_lock(&kvm->lock); - list_add(&stt->list, &kvm->arch.spapr_tce_tables); + + /* Check this LIOBN hasn't been previously allocated */ + ret = 0; + list_for_each_entry(siter, &kvm->arch.spapr_tce_tables, list) { + if (siter->liobn == args->liobn) { + ret = -EBUSY; + break; + } + } + + if (!ret) + ret = anon_inode_getfd("kvm-spapr-tce", &kvm_spapr_tce_fops, + stt, O_RDWR | O_CLOEXEC); + + if (ret >= 0) { + list_add(&stt->list, &kvm->arch.spapr_tce_tables); + kvm_get_kvm(kvm); + } mutex_unlock(&kvm->lock); - return anon_inode_getfd("kvm-spapr-tce", &kvm_spapr_tce_fops, - stt, O_RDWR | O_CLOEXEC); + if (ret >= 0) + return ret; -fail: - if (stt) { - for (i = 0; i < npages; i++) - if (stt->pages[i]) - __free_page(stt->pages[i]); + fail: + for (i = 0; i < npages; i++) + if (stt->pages[i]) + __free_page(stt->pages[i]); - kfree(stt); - } + kfree(stt); return ret; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/powerpc/kvm/book3s_hv_rm_xics.c +++ linux-raspi2-4.4.0/arch/powerpc/kvm/book3s_hv_rm_xics.c @@ -280,6 +280,7 @@ */ if (reject && reject != XICS_IPI) { arch_spin_unlock(&ics->lock); + icp->n_reject++; new_irq = reject; goto again; } @@ -611,10 +612,8 @@ state = &ics->irq_state[src]; /* Still asserted, resend it */ - if (state->asserted) { - icp->n_reject++; + if (state->asserted) icp_rm_deliver_irq(xics, icp, irq); - } if (!hlist_empty(&vcpu->kvm->irq_ack_notifier_list)) { icp->rm_action |= XICS_RM_NOTIFY_EOI; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/powerpc/platforms/pseries/mobility.c +++ linux-raspi2-4.4.0/arch/powerpc/platforms/pseries/mobility.c @@ -225,8 +225,10 @@ return -ENOENT; dn = dlpar_configure_connector(drc_index, parent_dn); - if (!dn) + if (!dn) { + of_node_put(parent_dn); return -ENOENT; + } rc = dlpar_attach_node(dn); if (rc) only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/powerpc/platforms/pseries/reconfig.c +++ linux-raspi2-4.4.0/arch/powerpc/platforms/pseries/reconfig.c @@ -82,7 +82,6 @@ of_detach_node(np); of_node_put(parent); - of_node_put(np); /* Must decrement the refcount */ return 0; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/s390/include/asm/elf.h +++ linux-raspi2-4.4.0/arch/s390/include/asm/elf.h @@ -154,14 +154,13 @@ #define CORE_DUMP_USE_REGSET #define ELF_EXEC_PAGESIZE 4096 -/* This is the location that an ET_DYN program is loaded if exec'ed. Typical - use of this is to invoke "./ld.so someprog" to test out a new version of - the loader. We need to make sure that it is out of the way of the program - that it will "exec", and that there is sufficient room for the brk. 64-bit - tasks are aligned to 4GB. */ -#define ELF_ET_DYN_BASE (is_32bit_task() ? \ - (STACK_TOP / 3 * 2) : \ - (STACK_TOP / 3 * 2) & ~((1UL << 32) - 1)) +/* + * This is the base location for PIE (ET_DYN with INTERP) loads. On + * 64-bit, this is raised to 4GB to leave the entire 32-bit address + * space open for things that want to use the area for 32-bit pointers. + */ +#define ELF_ET_DYN_BASE (is_compat_task() ? 0x000400000UL : \ + 0x100000000UL) /* This yields a mask that user programs can use to figure out what instruction set this CPU supports. */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/s390/include/asm/syscall.h +++ linux-raspi2-4.4.0/arch/s390/include/asm/syscall.h @@ -64,6 +64,12 @@ { unsigned long mask = -1UL; + /* + * No arguments for this syscall, there's nothing to do. + */ + if (!n) + return; + BUG_ON(i + n > 6); #ifdef CONFIG_COMPAT if (test_tsk_thread_flag(task, TIF_31BIT)) only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/s390/mm/gup.c +++ linux-raspi2-4.4.0/arch/s390/mm/gup.c @@ -54,13 +54,12 @@ static inline int gup_huge_pmd(pmd_t *pmdp, pmd_t pmd, unsigned long addr, unsigned long end, int write, struct page **pages, int *nr) { - unsigned long mask, result; struct page *head, *page, *tail; + unsigned long mask; int refs; - result = write ? 0 : _SEGMENT_ENTRY_PROTECT; - mask = result | _SEGMENT_ENTRY_INVALID; - if ((pmd_val(pmd) & mask) != result) + mask = (write ? _SEGMENT_ENTRY_PROTECT : 0) | _SEGMENT_ENTRY_INVALID; + if ((pmd_val(pmd) & mask) != 0) return 0; VM_BUG_ON(!pfn_valid(pmd_val(pmd) >> PAGE_SHIFT)); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/sh/kernel/cpu/sh3/setup-sh770x.c +++ linux-raspi2-4.4.0/arch/sh/kernel/cpu/sh3/setup-sh770x.c @@ -165,7 +165,6 @@ .scscr = SCSCR_TE | SCSCR_RE, .type = PORT_IRDA, .ops = &sh770x_sci_port_ops, - .regshift = 1, }; static struct resource scif2_resources[] = { only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/sparc/include/asm/trap_block.h +++ linux-raspi2-4.4.0/arch/sparc/include/asm/trap_block.h @@ -54,6 +54,7 @@ void init_cur_cpu_trap(struct thread_info *); void setup_tba(void); extern int ncpus_probed; +extern u64 cpu_mondo_counter[NR_CPUS]; unsigned long real_hard_smp_processor_id(void); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/sparc/kernel/sun4v_ivec.S +++ linux-raspi2-4.4.0/arch/sparc/kernel/sun4v_ivec.S @@ -26,6 +26,21 @@ ldxa [%g0] ASI_SCRATCHPAD, %g4 sub %g4, TRAP_PER_CPU_FAULT_INFO, %g4 + /* Get smp_processor_id() into %g3 */ + sethi %hi(trap_block), %g5 + or %g5, %lo(trap_block), %g5 + sub %g4, %g5, %g3 + srlx %g3, TRAP_BLOCK_SZ_SHIFT, %g3 + + /* Increment cpu_mondo_counter[smp_processor_id()] */ + sethi %hi(cpu_mondo_counter), %g5 + or %g5, %lo(cpu_mondo_counter), %g5 + sllx %g3, 3, %g3 + add %g5, %g3, %g5 + ldx [%g5], %g3 + add %g3, 1, %g3 + stx %g3, [%g5] + /* Get CPU mondo queue base phys address into %g7. */ ldx [%g4 + TRAP_PER_CPU_CPU_MONDO_PA], %g7 only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/sparc/power/hibernate.c +++ linux-raspi2-4.4.0/arch/sparc/power/hibernate.c @@ -35,6 +35,5 @@ { struct mm_struct *mm = current->active_mm; - load_secondary_context(mm); - tsb_context_switch(mm); + tsb_context_switch_ctx(mm, CTX_HWBITS(mm->context)); } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/x86/boot/compressed/misc.h +++ linux-raspi2-4.4.0/arch/x86/boot/compressed/misc.h @@ -9,6 +9,7 @@ */ #undef CONFIG_PARAVIRT #undef CONFIG_PARAVIRT_SPINLOCKS +#undef CONFIG_KAISER #undef CONFIG_KASAN #include only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/x86/boot/string.c +++ linux-raspi2-4.4.0/arch/x86/boot/string.c @@ -14,6 +14,7 @@ #include #include "ctype.h" +#include "string.h" int memcmp(const void *s1, const void *s2, size_t len) { only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/x86/boot/string.h +++ linux-raspi2-4.4.0/arch/x86/boot/string.h @@ -18,4 +18,13 @@ #define memset(d,c,l) __builtin_memset(d,c,l) #define memcmp __builtin_memcmp +extern int strcmp(const char *str1, const char *str2); +extern int strncmp(const char *cs, const char *ct, size_t count); +extern size_t strlen(const char *s); +extern char *strstr(const char *s1, const char *s2); +extern size_t strnlen(const char *s, size_t maxlen); +extern unsigned int atou(const char *s); +extern unsigned long long simple_strtoull(const char *cp, char **endp, + unsigned int base); + #endif /* BOOT_STRING_H */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/x86/crypto/sha-mb/sha1_mb_mgr_flush_avx2.S +++ linux-raspi2-4.4.0/arch/x86/crypto/sha-mb/sha1_mb_mgr_flush_avx2.S @@ -174,8 +174,8 @@ .endr # Find min length - vmovdqa _lens+0*16(state), %xmm0 - vmovdqa _lens+1*16(state), %xmm1 + vmovdqu _lens+0*16(state), %xmm0 + vmovdqu _lens+1*16(state), %xmm1 vpminud %xmm1, %xmm0, %xmm2 # xmm2 has {D,C,B,A} vpalignr $8, %xmm2, %xmm3, %xmm3 # xmm3 has {x,x,D,C} @@ -195,8 +195,8 @@ vpsubd %xmm2, %xmm0, %xmm0 vpsubd %xmm2, %xmm1, %xmm1 - vmovdqa %xmm0, _lens+0*16(state) - vmovdqa %xmm1, _lens+1*16(state) + vmovdqu %xmm0, _lens+0*16(state) + vmovdqu %xmm1, _lens+1*16(state) # "state" and "args" are the same address, arg1 # len is arg2 @@ -260,8 +260,8 @@ jc .return_null # Find min length - vmovdqa _lens(state), %xmm0 - vmovdqa _lens+1*16(state), %xmm1 + vmovdqu _lens(state), %xmm0 + vmovdqu _lens+1*16(state), %xmm1 vpminud %xmm1, %xmm0, %xmm2 # xmm2 has {D,C,B,A} vpalignr $8, %xmm2, %xmm3, %xmm3 # xmm3 has {x,x,D,C} only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/x86/crypto/sha1_avx2_x86_64_asm.S +++ linux-raspi2-4.4.0/arch/x86/crypto/sha1_avx2_x86_64_asm.S @@ -117,11 +117,10 @@ .set T1, REG_T1 .endm -#define K_BASE %r8 #define HASH_PTR %r9 +#define BLOCKS_CTR %r8 #define BUFFER_PTR %r10 #define BUFFER_PTR2 %r13 -#define BUFFER_END %r11 #define PRECALC_BUF %r14 #define WK_BUF %r15 @@ -205,14 +204,14 @@ * blended AVX2 and ALU instruction scheduling * 1 vector iteration per 8 rounds */ - vmovdqu ((i * 2) + PRECALC_OFFSET)(BUFFER_PTR), W_TMP + vmovdqu (i * 2)(BUFFER_PTR), W_TMP .elseif ((i & 7) == 1) - vinsertf128 $1, (((i-1) * 2)+PRECALC_OFFSET)(BUFFER_PTR2),\ + vinsertf128 $1, ((i-1) * 2)(BUFFER_PTR2),\ WY_TMP, WY_TMP .elseif ((i & 7) == 2) vpshufb YMM_SHUFB_BSWAP, WY_TMP, WY .elseif ((i & 7) == 4) - vpaddd K_XMM(K_BASE), WY, WY_TMP + vpaddd K_XMM + K_XMM_AR(%rip), WY, WY_TMP .elseif ((i & 7) == 7) vmovdqu WY_TMP, PRECALC_WK(i&~7) @@ -255,7 +254,7 @@ vpxor WY, WY_TMP, WY_TMP .elseif ((i & 7) == 7) vpxor WY_TMP2, WY_TMP, WY - vpaddd K_XMM(K_BASE), WY, WY_TMP + vpaddd K_XMM + K_XMM_AR(%rip), WY, WY_TMP vmovdqu WY_TMP, PRECALC_WK(i&~7) PRECALC_ROTATE_WY @@ -291,7 +290,7 @@ vpsrld $30, WY, WY vpor WY, WY_TMP, WY .elseif ((i & 7) == 7) - vpaddd K_XMM(K_BASE), WY, WY_TMP + vpaddd K_XMM + K_XMM_AR(%rip), WY, WY_TMP vmovdqu WY_TMP, PRECALC_WK(i&~7) PRECALC_ROTATE_WY @@ -446,6 +445,16 @@ .endm +/* Add constant only if (%2 > %3) condition met (uses RTA as temp) + * %1 + %2 >= %3 ? %4 : 0 + */ +.macro ADD_IF_GE a, b, c, d + mov \a, RTA + add $\d, RTA + cmp $\c, \b + cmovge RTA, \a +.endm + /* * macro implements 80 rounds of SHA-1, for multiple blocks with s/w pipelining */ @@ -463,13 +472,16 @@ lea (2*4*80+32)(%rsp), WK_BUF # Precalc WK for first 2 blocks - PRECALC_OFFSET = 0 + ADD_IF_GE BUFFER_PTR2, BLOCKS_CTR, 2, 64 .set i, 0 .rept 160 PRECALC i .set i, i + 1 .endr - PRECALC_OFFSET = 128 + + /* Go to next block if needed */ + ADD_IF_GE BUFFER_PTR, BLOCKS_CTR, 3, 128 + ADD_IF_GE BUFFER_PTR2, BLOCKS_CTR, 4, 128 xchg WK_BUF, PRECALC_BUF .align 32 @@ -479,8 +491,8 @@ * we use K_BASE value as a signal of a last block, * it is set below by: cmovae BUFFER_PTR, K_BASE */ - cmp K_BASE, BUFFER_PTR - jne _begin + test BLOCKS_CTR, BLOCKS_CTR + jnz _begin .align 32 jmp _end .align 32 @@ -512,10 +524,10 @@ .set j, j+2 .endr - add $(2*64), BUFFER_PTR /* move to next odd-64-byte block */ - cmp BUFFER_END, BUFFER_PTR /* is current block the last one? */ - cmovae K_BASE, BUFFER_PTR /* signal the last iteration smartly */ - + /* Update Counter */ + sub $1, BLOCKS_CTR + /* Move to the next block only if needed*/ + ADD_IF_GE BUFFER_PTR, BLOCKS_CTR, 4, 128 /* * rounds * 60,62,64,66,68 @@ -532,8 +544,8 @@ UPDATE_HASH 12(HASH_PTR), D UPDATE_HASH 16(HASH_PTR), E - cmp K_BASE, BUFFER_PTR /* is current block the last one? */ - je _loop + test BLOCKS_CTR, BLOCKS_CTR + jz _loop mov TB, B @@ -575,10 +587,10 @@ .set j, j+2 .endr - add $(2*64), BUFFER_PTR2 /* move to next even-64-byte block */ - - cmp BUFFER_END, BUFFER_PTR2 /* is current block the last one */ - cmovae K_BASE, BUFFER_PTR /* signal the last iteration smartly */ + /* update counter */ + sub $1, BLOCKS_CTR + /* Move to the next block only if needed*/ + ADD_IF_GE BUFFER_PTR2, BLOCKS_CTR, 4, 128 jmp _loop3 _loop3: @@ -641,19 +653,12 @@ avx2_zeroupper - lea K_XMM_AR(%rip), K_BASE - + /* Setup initial values */ mov CTX, HASH_PTR mov BUF, BUFFER_PTR - lea 64(BUF), BUFFER_PTR2 - - shl $6, CNT /* mul by 64 */ - add BUF, CNT - add $64, CNT - mov CNT, BUFFER_END - cmp BUFFER_END, BUFFER_PTR2 - cmovae K_BASE, BUFFER_PTR2 + mov BUF, BUFFER_PTR2 + mov CNT, BLOCKS_CTR xmm_mov BSWAP_SHUFB_CTL(%rip), YMM_SHUFB_BSWAP only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/x86/entry/entry_64.S +++ linux-raspi2-4.4.0/arch/x86/entry/entry_64.S @@ -35,6 +35,7 @@ #include #include #include +#include #include /* Avoid __ASSEMBLER__'ifying just for this. */ @@ -135,6 +136,7 @@ * it is too small to ever cause noticeable irq latency. */ SWAPGS_UNSAFE_STACK + SWITCH_KERNEL_CR3_NO_STACK /* * A hypervisor implementation might want to use a label * after the swapgs, so that it can do the swapgs @@ -207,9 +209,17 @@ testl $_TIF_ALLWORK_MASK, ASM_THREAD_INFO(TI_flags, %rsp, SIZEOF_PTREGS) jnz int_ret_from_sys_call_irqs_off /* Go to the slow path */ - RESTORE_C_REGS_EXCEPT_RCX_R11 movq RIP(%rsp), %rcx movq EFLAGS(%rsp), %r11 + RESTORE_C_REGS_EXCEPT_RCX_R11 + /* + * This opens a window where we have a user CR3, but are + * running in the kernel. This makes using the CS + * register useless for telling whether or not we need to + * switch CR3 in NMIs. Normal interrupts are OK because + * they are off here. + */ + SWITCH_USER_CR3 movq RSP(%rsp), %rsp /* * 64-bit SYSRET restores rip from rcx, @@ -347,10 +357,26 @@ syscall_return_via_sysret: /* rcx and r11 are already restored (see code above) */ RESTORE_C_REGS_EXCEPT_RCX_R11 + /* + * This opens a window where we have a user CR3, but are + * running in the kernel. This makes using the CS + * register useless for telling whether or not we need to + * switch CR3 in NMIs. Normal interrupts are OK because + * they are off here. + */ + SWITCH_USER_CR3 movq RSP(%rsp), %rsp USERGS_SYSRET64 opportunistic_sysret_failed: + /* + * This opens a window where we have a user CR3, but are + * running in the kernel. This makes using the CS + * register useless for telling whether or not we need to + * switch CR3 in NMIs. Normal interrupts are OK because + * they are off here. + */ + SWITCH_USER_CR3 SWAPGS jmp restore_c_regs_and_iret END(entry_SYSCALL_64) @@ -509,6 +535,7 @@ * tracking that we're in kernel mode. */ SWAPGS + SWITCH_KERNEL_CR3 /* * We need to tell lockdep that IRQs are off. We can't do this until @@ -568,6 +595,7 @@ mov %rsp,%rdi call prepare_exit_to_usermode TRACE_IRQS_IRETQ + SWITCH_USER_CR3 SWAPGS jmp restore_regs_and_iret @@ -625,6 +653,7 @@ pushq %rax pushq %rdi SWAPGS + SWITCH_KERNEL_CR3 movq PER_CPU_VAR(espfix_waddr), %rdi movq %rax, (0*8)(%rdi) /* RAX */ movq (2*8)(%rsp), %rax /* RIP */ @@ -640,6 +669,7 @@ andl $0xffff0000, %eax popq %rdi orq PER_CPU_VAR(espfix_stack), %rax + SWITCH_USER_CR3 SWAPGS movq %rax, %rsp popq %rax @@ -995,7 +1025,11 @@ /* * Save all registers in pt_regs, and switch gs if needed. * Use slow, but surefire "are we in kernel?" check. - * Return: ebx=0: need swapgs on exit, ebx=1: otherwise + * + * Return: ebx=0: needs swapgs but not SWITCH_USER_CR3 in paranoid_exit + * ebx=1: needs neither swapgs nor SWITCH_USER_CR3 in paranoid_exit + * ebx=2: needs both swapgs and SWITCH_USER_CR3 in paranoid_exit + * ebx=3: needs SWITCH_USER_CR3 but not swapgs in paranoid_exit */ ENTRY(paranoid_entry) cld @@ -1008,7 +1042,26 @@ js 1f /* negative -> in kernel */ SWAPGS xorl %ebx, %ebx -1: ret +1: +#ifdef CONFIG_KAISER + /* + * We might have come in between a swapgs and a SWITCH_KERNEL_CR3 + * on entry, or between a SWITCH_USER_CR3 and a swapgs on exit. + * Do a conditional SWITCH_KERNEL_CR3: this could safely be done + * unconditionally, but we need to find out whether the reverse + * should be done on return (conveyed to paranoid_exit in %ebx). + */ + ALTERNATIVE "jmp 2f", "movq %cr3, %rax", X86_FEATURE_KAISER + testl $KAISER_SHADOW_PGD_OFFSET, %eax + jz 2f + orl $2, %ebx + andq $(~(X86_CR3_PCID_ASID_MASK | KAISER_SHADOW_PGD_OFFSET)), %rax + /* If PCID enabled, set X86_CR3_PCID_NOFLUSH_BIT */ + ALTERNATIVE "", "bts $63, %rax", X86_FEATURE_PCID + movq %rax, %cr3 +2: +#endif + ret END(paranoid_entry) /* @@ -1021,19 +1074,26 @@ * be complicated. Fortunately, we there's no good reason * to try to handle preemption here. * - * On entry, ebx is "no swapgs" flag (1: don't need swapgs, 0: need it) + * On entry: ebx=0: needs swapgs but not SWITCH_USER_CR3 + * ebx=1: needs neither swapgs nor SWITCH_USER_CR3 + * ebx=2: needs both swapgs and SWITCH_USER_CR3 + * ebx=3: needs SWITCH_USER_CR3 but not swapgs */ ENTRY(paranoid_exit) DISABLE_INTERRUPTS(CLBR_NONE) TRACE_IRQS_OFF_DEBUG - testl %ebx, %ebx /* swapgs needed? */ + TRACE_IRQS_IRETQ_DEBUG +#ifdef CONFIG_KAISER + /* No ALTERNATIVE for X86_FEATURE_KAISER: paranoid_entry sets %ebx */ + testl $2, %ebx /* SWITCH_USER_CR3 needed? */ + jz paranoid_exit_no_switch + SWITCH_USER_CR3 +paranoid_exit_no_switch: +#endif + testl $1, %ebx /* swapgs needed? */ jnz paranoid_exit_no_swapgs - TRACE_IRQS_IRETQ SWAPGS_UNSAFE_STACK - jmp paranoid_exit_restore paranoid_exit_no_swapgs: - TRACE_IRQS_IRETQ_DEBUG -paranoid_exit_restore: RESTORE_EXTRA_REGS RESTORE_C_REGS REMOVE_PT_GPREGS_FROM_STACK 8 @@ -1048,6 +1108,13 @@ cld SAVE_C_REGS 8 SAVE_EXTRA_REGS 8 + /* + * error_entry() always returns with a kernel gsbase and + * CR3. We must also have a kernel CR3/gsbase before + * calling TRACE_IRQS_*. Just unconditionally switch to + * the kernel CR3 here. + */ + SWITCH_KERNEL_CR3 xorl %ebx, %ebx testb $3, CS+8(%rsp) jz .Lerror_kernelspace @@ -1190,6 +1257,8 @@ * other IST entries. */ + ASM_CLAC + /* Use %rdx as our temp variable throughout */ pushq %rdx @@ -1208,6 +1277,10 @@ */ SWAPGS_UNSAFE_STACK + /* + * percpu variables are mapped with user CR3, so no need + * to switch CR3 here. + */ cld movq %rsp, %rdx movq PER_CPU_VAR(cpu_current_top_of_stack), %rsp @@ -1241,12 +1314,34 @@ movq %rsp, %rdi movq $-1, %rsi +#ifdef CONFIG_KAISER + /* Unconditionally use kernel CR3 for do_nmi() */ + /* %rax is saved above, so OK to clobber here */ + ALTERNATIVE "jmp 2f", "movq %cr3, %rax", X86_FEATURE_KAISER + /* If PCID enabled, NOFLUSH now and NOFLUSH on return */ + ALTERNATIVE "", "bts $63, %rax", X86_FEATURE_PCID + pushq %rax + /* mask off "user" bit of pgd address and 12 PCID bits: */ + andq $(~(X86_CR3_PCID_ASID_MASK | KAISER_SHADOW_PGD_OFFSET)), %rax + movq %rax, %cr3 +2: +#endif call do_nmi +#ifdef CONFIG_KAISER + /* + * Unconditionally restore CR3. I know we return to + * kernel code that needs user CR3, but do we ever return + * to "user mode" where we need the kernel CR3? + */ + ALTERNATIVE "", "popq %rax; movq %rax, %cr3", X86_FEATURE_KAISER +#endif + /* * Return back to user mode. We must *not* do the normal exit - * work, because we don't want to enable interrupts. Fortunately, - * do_nmi doesn't modify pt_regs. + * work, because we don't want to enable interrupts. Do not + * switch to user CR3: we might be going back to kernel code + * that had a user CR3 set. */ SWAPGS jmp restore_c_regs_and_iret @@ -1443,22 +1538,55 @@ ALLOC_PT_GPREGS_ON_STACK /* - * Use paranoid_entry to handle SWAPGS, but no need to use paranoid_exit - * as we should not be calling schedule in NMI context. - * Even with normal interrupts enabled. An NMI should not be - * setting NEED_RESCHED or anything that normal interrupts and - * exceptions might do. + * Use the same approach as paranoid_entry to handle SWAPGS, but + * without CR3 handling since we do that differently in NMIs. No + * need to use paranoid_exit as we should not be calling schedule + * in NMI context. Even with normal interrupts enabled. An NMI + * should not be setting NEED_RESCHED or anything that normal + * interrupts and exceptions might do. */ - call paranoid_entry - - /* paranoidentry do_nmi, 0; without TRACE_IRQS_OFF */ + cld + SAVE_C_REGS + SAVE_EXTRA_REGS + movl $1, %ebx + movl $MSR_GS_BASE, %ecx + rdmsr + testl %edx, %edx + js 1f /* negative -> in kernel */ + SWAPGS + xorl %ebx, %ebx +1: movq %rsp, %rdi movq $-1, %rsi +#ifdef CONFIG_KAISER + /* Unconditionally use kernel CR3 for do_nmi() */ + /* %rax is saved above, so OK to clobber here */ + ALTERNATIVE "jmp 2f", "movq %cr3, %rax", X86_FEATURE_KAISER + /* If PCID enabled, NOFLUSH now and NOFLUSH on return */ + ALTERNATIVE "", "bts $63, %rax", X86_FEATURE_PCID + pushq %rax + /* mask off "user" bit of pgd address and 12 PCID bits: */ + andq $(~(X86_CR3_PCID_ASID_MASK | KAISER_SHADOW_PGD_OFFSET)), %rax + movq %rax, %cr3 +2: +#endif + + /* paranoidentry do_nmi, 0; without TRACE_IRQS_OFF */ call do_nmi +#ifdef CONFIG_KAISER + /* + * Unconditionally restore CR3. We might be returning to + * kernel code that needs user CR3, like just just before + * a sysret. + */ + ALTERNATIVE "", "popq %rax; movq %rax, %cr3", X86_FEATURE_KAISER +#endif + testl %ebx, %ebx /* swapgs needed? */ jnz nmi_restore nmi_swapgs: + /* We fixed up CR3 above, so no need to switch it here */ SWAPGS_UNSAFE_STACK nmi_restore: RESTORE_EXTRA_REGS only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/x86/entry/vdso/vclock_gettime.c +++ linux-raspi2-4.4.0/arch/x86/entry/vdso/vclock_gettime.c @@ -36,6 +36,11 @@ } #endif +#ifdef CONFIG_PARAVIRT_CLOCK +extern u8 pvclock_page + __attribute__((visibility("hidden"))); +#endif + #ifndef BUILD_VDSO32 #include @@ -62,63 +67,65 @@ #ifdef CONFIG_PARAVIRT_CLOCK -static notrace const struct pvclock_vsyscall_time_info *get_pvti(int cpu) +static notrace const struct pvclock_vsyscall_time_info *get_pvti0(void) { - const struct pvclock_vsyscall_time_info *pvti_base; - int idx = cpu / (PAGE_SIZE/PVTI_SIZE); - int offset = cpu % (PAGE_SIZE/PVTI_SIZE); - - BUG_ON(PVCLOCK_FIXMAP_BEGIN + idx > PVCLOCK_FIXMAP_END); - - pvti_base = (struct pvclock_vsyscall_time_info *) - __fix_to_virt(PVCLOCK_FIXMAP_BEGIN+idx); - - return &pvti_base[offset]; + return (const struct pvclock_vsyscall_time_info *)&pvclock_page; } static notrace cycle_t vread_pvclock(int *mode) { - const struct pvclock_vsyscall_time_info *pvti; + const struct pvclock_vcpu_time_info *pvti = &get_pvti0()->pvti; cycle_t ret; - u64 last; - u32 version; - u8 flags; - unsigned cpu, cpu1; - + u64 tsc, pvti_tsc; + u64 last, delta, pvti_system_time; + u32 version, pvti_tsc_to_system_mul, pvti_tsc_shift; /* - * Note: hypervisor must guarantee that: - * 1. cpu ID number maps 1:1 to per-CPU pvclock time info. - * 2. that per-CPU pvclock time info is updated if the - * underlying CPU changes. - * 3. that version is increased whenever underlying CPU - * changes. + * Note: The kernel and hypervisor must guarantee that cpu ID + * number maps 1:1 to per-CPU pvclock time info. + * + * Because the hypervisor is entirely unaware of guest userspace + * preemption, it cannot guarantee that per-CPU pvclock time + * info is updated if the underlying CPU changes or that that + * version is increased whenever underlying CPU changes. * + * On KVM, we are guaranteed that pvti updates for any vCPU are + * atomic as seen by *all* vCPUs. This is an even stronger + * guarantee than we get with a normal seqlock. + * + * On Xen, we don't appear to have that guarantee, but Xen still + * supplies a valid seqlock using the version field. + + * We only do pvclock vdso timing at all if + * PVCLOCK_TSC_STABLE_BIT is set, and we interpret that bit to + * mean that all vCPUs have matching pvti and that the TSC is + * synced, so we can just look at vCPU 0's pvti. */ - do { - cpu = __getcpu() & VGETCPU_CPU_MASK; - /* TODO: We can put vcpu id into higher bits of pvti.version. - * This will save a couple of cycles by getting rid of - * __getcpu() calls (Gleb). - */ - - pvti = get_pvti(cpu); - - version = __pvclock_read_cycles(&pvti->pvti, &ret, &flags); - - /* - * Test we're still on the cpu as well as the version. - * We could have been migrated just after the first - * vgetcpu but before fetching the version, so we - * wouldn't notice a version change. - */ - cpu1 = __getcpu() & VGETCPU_CPU_MASK; - } while (unlikely(cpu != cpu1 || - (pvti->pvti.version & 1) || - pvti->pvti.version != version)); - if (unlikely(!(flags & PVCLOCK_TSC_STABLE_BIT))) + if (unlikely(!(pvti->flags & PVCLOCK_TSC_STABLE_BIT))) { *mode = VCLOCK_NONE; + return 0; + } + + do { + version = pvti->version; + + /* This is also a read barrier, so we'll read version first. */ + tsc = rdtsc_ordered(); + + pvti_tsc_to_system_mul = pvti->tsc_to_system_mul; + pvti_tsc_shift = pvti->tsc_shift; + pvti_system_time = pvti->system_time; + pvti_tsc = pvti->tsc_timestamp; + + /* Make sure that the version double-check is last. */ + smp_rmb(); + } while (unlikely((version & 1) || version != pvti->version)); + + delta = tsc - pvti_tsc; + ret = pvti_system_time + + pvclock_scale_delta(delta, pvti_tsc_to_system_mul, + pvti_tsc_shift); /* refer to tsc.c read_tsc() comment for rationale */ last = gtod->cycle_last; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/x86/entry/vdso/vdso-layout.lds.S +++ linux-raspi2-4.4.0/arch/x86/entry/vdso/vdso-layout.lds.S @@ -25,7 +25,7 @@ * segment. */ - vvar_start = . - 2 * PAGE_SIZE; + vvar_start = . - 3 * PAGE_SIZE; vvar_page = vvar_start; /* Place all vvars at the offsets in asm/vvar.h. */ @@ -36,6 +36,7 @@ #undef EMIT_VVAR hpet_page = vvar_start + PAGE_SIZE; + pvclock_page = vvar_start + 2 * PAGE_SIZE; . = SIZEOF_HEADERS; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/x86/entry/vdso/vdso2c.c +++ linux-raspi2-4.4.0/arch/x86/entry/vdso/vdso2c.c @@ -73,6 +73,7 @@ sym_vvar_start, sym_vvar_page, sym_hpet_page, + sym_pvclock_page, sym_VDSO_FAKE_SECTION_TABLE_START, sym_VDSO_FAKE_SECTION_TABLE_END, }; @@ -80,6 +81,7 @@ const int special_pages[] = { sym_vvar_page, sym_hpet_page, + sym_pvclock_page, }; struct vdso_sym { @@ -91,6 +93,7 @@ [sym_vvar_start] = {"vvar_start", true}, [sym_vvar_page] = {"vvar_page", true}, [sym_hpet_page] = {"hpet_page", true}, + [sym_pvclock_page] = {"pvclock_page", true}, [sym_VDSO_FAKE_SECTION_TABLE_START] = { "VDSO_FAKE_SECTION_TABLE_START", false }, only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/x86/include/asm/alternative-asm.h +++ linux-raspi2-4.4.0/arch/x86/include/asm/alternative-asm.h @@ -62,8 +62,10 @@ #define new_len2 145f-144f /* - * max without conditionals. Idea adapted from: + * gas compatible max based on the idea from: * http://graphics.stanford.edu/~seander/bithacks.html#IntegerMinOrMax + * + * The additional "-" is needed because gas uses a "true" value of -1. */ #define alt_max_short(a, b) ((a) ^ (((a) ^ (b)) & -(-((a) < (b))))) only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/x86/include/asm/cmdline.h +++ linux-raspi2-4.4.0/arch/x86/include/asm/cmdline.h @@ -2,5 +2,7 @@ #define _ASM_X86_CMDLINE_H int cmdline_find_option_bool(const char *cmdline_ptr, const char *option); +int cmdline_find_option(const char *cmdline_ptr, const char *option, + char *buffer, int bufsize); #endif /* _ASM_X86_CMDLINE_H */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/x86/include/asm/desc.h +++ linux-raspi2-4.4.0/arch/x86/include/asm/desc.h @@ -43,7 +43,7 @@ struct desc_struct gdt[GDT_ENTRIES]; } __attribute__((aligned(PAGE_SIZE))); -DECLARE_PER_CPU_PAGE_ALIGNED(struct gdt_page, gdt_page); +DECLARE_PER_CPU_PAGE_ALIGNED_USER_MAPPED(struct gdt_page, gdt_page); static inline struct desc_struct *get_cpu_gdt_table(unsigned int cpu) { only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/x86/include/asm/io.h +++ linux-raspi2-4.4.0/arch/x86/include/asm/io.h @@ -304,13 +304,13 @@ static inline void outs##bwl(int port, const void *addr, unsigned long count) \ { \ asm volatile("rep; outs" #bwl \ - : "+S"(addr), "+c"(count) : "d"(port)); \ + : "+S"(addr), "+c"(count) : "d"(port) : "memory"); \ } \ \ static inline void ins##bwl(int port, void *addr, unsigned long count) \ { \ asm volatile("rep; ins" #bwl \ - : "+D"(addr), "+c"(count) : "d"(port)); \ + : "+D"(addr), "+c"(count) : "d"(port) : "memory"); \ } BUILDIO(b, b, char) only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/x86/include/asm/kaiser.h +++ linux-raspi2-4.4.0/arch/x86/include/asm/kaiser.h @@ -0,0 +1,141 @@ +#ifndef _ASM_X86_KAISER_H +#define _ASM_X86_KAISER_H + +#include /* For PCID constants */ + +/* + * This file includes the definitions for the KAISER feature. + * KAISER is a counter measure against x86_64 side channel attacks on + * the kernel virtual memory. It has a shadow pgd for every process: the + * shadow pgd has a minimalistic kernel-set mapped, but includes the whole + * user memory. Within a kernel context switch, or when an interrupt is handled, + * the pgd is switched to the normal one. When the system switches to user mode, + * the shadow pgd is enabled. By this, the virtual memory caches are freed, + * and the user may not attack the whole kernel memory. + * + * A minimalistic kernel mapping holds the parts needed to be mapped in user + * mode, such as the entry/exit functions of the user space, or the stacks. + */ + +#define KAISER_SHADOW_PGD_OFFSET 0x1000 + +#ifdef __ASSEMBLY__ +#ifdef CONFIG_KAISER + +.macro _SWITCH_TO_KERNEL_CR3 reg +movq %cr3, \reg +andq $(~(X86_CR3_PCID_ASID_MASK | KAISER_SHADOW_PGD_OFFSET)), \reg +/* If PCID enabled, set X86_CR3_PCID_NOFLUSH_BIT */ +ALTERNATIVE "", "bts $63, \reg", X86_FEATURE_PCID +movq \reg, %cr3 +.endm + +.macro _SWITCH_TO_USER_CR3 reg regb +/* + * regb must be the low byte portion of reg: because we have arranged + * for the low byte of the user PCID to serve as the high byte of NOFLUSH + * (0x80 for each when PCID is enabled, or 0x00 when PCID and NOFLUSH are + * not enabled): so that the one register can update both memory and cr3. + */ +movq %cr3, \reg +orq PER_CPU_VAR(x86_cr3_pcid_user), \reg +js 9f +/* If PCID enabled, FLUSH this time, reset to NOFLUSH for next time */ +movb \regb, PER_CPU_VAR(x86_cr3_pcid_user+7) +9: +movq \reg, %cr3 +.endm + +.macro SWITCH_KERNEL_CR3 +ALTERNATIVE "jmp 8f", "pushq %rax", X86_FEATURE_KAISER +_SWITCH_TO_KERNEL_CR3 %rax +popq %rax +8: +.endm + +.macro SWITCH_USER_CR3 +ALTERNATIVE "jmp 8f", "pushq %rax", X86_FEATURE_KAISER +_SWITCH_TO_USER_CR3 %rax %al +popq %rax +8: +.endm + +.macro SWITCH_KERNEL_CR3_NO_STACK +ALTERNATIVE "jmp 8f", \ + __stringify(movq %rax, PER_CPU_VAR(unsafe_stack_register_backup)), \ + X86_FEATURE_KAISER +_SWITCH_TO_KERNEL_CR3 %rax +movq PER_CPU_VAR(unsafe_stack_register_backup), %rax +8: +.endm + +#else /* CONFIG_KAISER */ + +.macro SWITCH_KERNEL_CR3 +.endm +.macro SWITCH_USER_CR3 +.endm +.macro SWITCH_KERNEL_CR3_NO_STACK +.endm + +#endif /* CONFIG_KAISER */ + +#else /* __ASSEMBLY__ */ + +#ifdef CONFIG_KAISER +/* + * Upon kernel/user mode switch, it may happen that the address + * space has to be switched before the registers have been + * stored. To change the address space, another register is + * needed. A register therefore has to be stored/restored. +*/ +DECLARE_PER_CPU_USER_MAPPED(unsigned long, unsafe_stack_register_backup); + +DECLARE_PER_CPU(unsigned long, x86_cr3_pcid_user); + +extern char __per_cpu_user_mapped_start[], __per_cpu_user_mapped_end[]; + +extern int kaiser_enabled; +extern void __init kaiser_check_boottime_disable(void); +#else +#define kaiser_enabled 0 +static inline void __init kaiser_check_boottime_disable(void) {} +#endif /* CONFIG_KAISER */ + +/* + * Kaiser function prototypes are needed even when CONFIG_KAISER is not set, + * so as to build with tests on kaiser_enabled instead of #ifdefs. + */ + +/** + * kaiser_add_mapping - map a virtual memory part to the shadow (user) mapping + * @addr: the start address of the range + * @size: the size of the range + * @flags: The mapping flags of the pages + * + * The mapping is done on a global scope, so no bigger + * synchronization has to be done. the pages have to be + * manually unmapped again when they are not needed any longer. + */ +extern int kaiser_add_mapping(unsigned long addr, unsigned long size, unsigned long flags); + +/** + * kaiser_remove_mapping - unmap a virtual memory part of the shadow mapping + * @addr: the start address of the range + * @size: the size of the range + */ +extern void kaiser_remove_mapping(unsigned long start, unsigned long size); + +/** + * kaiser_init - Initialize the shadow mapping + * + * Most parts of the shadow mapping can be mapped upon boot + * time. Only per-process things like the thread stacks + * or a new LDT have to be mapped at runtime. These boot- + * time mappings are permanent and never unmapped. + */ +extern void kaiser_init(void); + +#endif /* __ASSEMBLY */ + +#endif /* _ASM_X86_KAISER_H */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/x86/include/asm/pgtable.h +++ linux-raspi2-4.4.0/arch/x86/include/asm/pgtable.h @@ -18,6 +18,12 @@ #ifndef __ASSEMBLY__ #include +#ifdef CONFIG_KAISER +extern int kaiser_enabled; +#else +#define kaiser_enabled 0 +#endif + void ptdump_walk_pgd_level(struct seq_file *m, pgd_t *pgd); void ptdump_walk_pgd_level_checkwx(void); @@ -653,7 +659,17 @@ static inline int pgd_bad(pgd_t pgd) { - return (pgd_flags(pgd) & ~_PAGE_USER) != _KERNPG_TABLE; + pgdval_t ignore_flags = _PAGE_USER; + /* + * We set NX on KAISER pgds that map userspace memory so + * that userspace can not meaningfully use the kernel + * page table by accident; it will fault on the first + * instruction it tries to run. See native_set_pgd(). + */ + if (kaiser_enabled) + ignore_flags |= _PAGE_NX; + + return (pgd_flags(pgd) & ~ignore_flags) != _KERNPG_TABLE; } static inline int pgd_none(pgd_t pgd) @@ -855,7 +871,15 @@ */ static inline void clone_pgd_range(pgd_t *dst, pgd_t *src, int count) { - memcpy(dst, src, count * sizeof(pgd_t)); + memcpy(dst, src, count * sizeof(pgd_t)); +#ifdef CONFIG_KAISER + if (kaiser_enabled) { + /* Clone the shadow pgd part as well */ + memcpy(native_get_shadow_pgd(dst), + native_get_shadow_pgd(src), + count * sizeof(pgd_t)); + } +#endif } #define PTE_SHIFT ilog2(PTRS_PER_PTE) only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/x86/include/asm/pgtable_64.h +++ linux-raspi2-4.4.0/arch/x86/include/asm/pgtable_64.h @@ -106,9 +106,32 @@ native_set_pud(pud, native_make_pud(0)); } +#ifdef CONFIG_KAISER +extern pgd_t kaiser_set_shadow_pgd(pgd_t *pgdp, pgd_t pgd); + +static inline pgd_t *native_get_shadow_pgd(pgd_t *pgdp) +{ +#ifdef CONFIG_DEBUG_VM + /* linux/mmdebug.h may not have been included at this point */ + BUG_ON(!kaiser_enabled); +#endif + return (pgd_t *)((unsigned long)pgdp | (unsigned long)PAGE_SIZE); +} +#else +static inline pgd_t kaiser_set_shadow_pgd(pgd_t *pgdp, pgd_t pgd) +{ + return pgd; +} +static inline pgd_t *native_get_shadow_pgd(pgd_t *pgdp) +{ + BUILD_BUG_ON(1); + return NULL; +} +#endif /* CONFIG_KAISER */ + static inline void native_set_pgd(pgd_t *pgdp, pgd_t pgd) { - *pgdp = pgd; + *pgdp = kaiser_set_shadow_pgd(pgdp, pgd); } static inline void native_pgd_clear(pgd_t *pgd) only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/x86/include/asm/vdso.h +++ linux-raspi2-4.4.0/arch/x86/include/asm/vdso.h @@ -22,6 +22,7 @@ long sym_vvar_page; long sym_hpet_page; + long sym_pvclock_page; long sym_VDSO32_NOTE_MASK; long sym___kernel_sigreturn; long sym___kernel_rt_sigreturn; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/x86/include/asm/xen/hypercall.h +++ linux-raspi2-4.4.0/arch/x86/include/asm/xen/hypercall.h @@ -43,6 +43,7 @@ #include #include +#include #include #include @@ -213,10 +214,12 @@ __HYPERCALL_DECLS; __HYPERCALL_5ARG(a1, a2, a3, a4, a5); + stac(); asm volatile("call *%[call]" : __HYPERCALL_5PARAM : [call] "a" (&hypercall_page[call]) : __HYPERCALL_CLOBBER5); + clac(); return (long)__res; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/x86/include/uapi/asm/processor-flags.h +++ linux-raspi2-4.4.0/arch/x86/include/uapi/asm/processor-flags.h @@ -77,7 +77,8 @@ #define X86_CR3_PWT _BITUL(X86_CR3_PWT_BIT) #define X86_CR3_PCD_BIT 4 /* Page Cache Disable */ #define X86_CR3_PCD _BITUL(X86_CR3_PCD_BIT) -#define X86_CR3_PCID_MASK _AC(0x00000fff,UL) /* PCID Mask */ +#define X86_CR3_PCID_NOFLUSH_BIT 63 /* Preserve old PCID */ +#define X86_CR3_PCID_NOFLUSH _BITULL(X86_CR3_PCID_NOFLUSH_BIT) /* * Intel CPU features in CR4 only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/x86/kernel/espfix_64.c +++ linux-raspi2-4.4.0/arch/x86/kernel/espfix_64.c @@ -41,6 +41,7 @@ #include #include #include +#include /* * Note: we only need 6*8 = 48 bytes for the espfix stack, but round @@ -126,6 +127,15 @@ /* Install the espfix pud into the kernel page directory */ pgd_p = &init_level4_pgt[pgd_index(ESPFIX_BASE_ADDR)]; pgd_populate(&init_mm, pgd_p, (pud_t *)espfix_pud_page); + /* + * Just copy the top-level PGD that is mapping the espfix + * area to ensure it is mapped into the shadow user page + * tables. + */ + if (kaiser_enabled) { + set_pgd(native_get_shadow_pgd(pgd_p), + __pgd(_KERNPG_TABLE | __pa((pud_t *)espfix_pud_page))); + } /* Randomize the locations */ init_espfix_random(); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/x86/kernel/fpu/regset.c +++ linux-raspi2-4.4.0/arch/x86/kernel/fpu/regset.c @@ -116,6 +116,11 @@ xsave = &fpu->state.xsave; ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, xsave, 0, -1); + + /* xcomp_bv must be 0 when using uncompacted format */ + if (!ret && xsave->header.xcomp_bv) + ret = -EINVAL; + /* * mxcsr reserved bits must be masked to zero for security reasons. */ @@ -126,6 +131,12 @@ */ memset(&xsave->header.reserved, 0, 48); + /* + * In case of failure, mark all states as init: + */ + if (ret) + fpstate_init(&fpu->state); + return ret; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/x86/kernel/fpu/signal.c +++ linux-raspi2-4.4.0/arch/x86/kernel/fpu/signal.c @@ -309,7 +309,9 @@ fpu__drop(fpu); if (__copy_from_user(&fpu->state.xsave, buf_fx, state_size) || - __copy_from_user(&env, buf, sizeof(env))) { + __copy_from_user(&env, buf, sizeof(env)) || + (state_size > offsetof(struct xregs_state, header) && + fpu->state.xsave.header.xcomp_bv)) { fpstate_init(&fpu->state); err = -1; } else { only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/x86/kernel/head_64.S +++ linux-raspi2-4.4.0/arch/x86/kernel/head_64.S @@ -183,8 +183,8 @@ movq $(init_level4_pgt - __START_KERNEL_map), %rax 1: - /* Enable PAE mode and PGE */ - movl $(X86_CR4_PAE | X86_CR4_PGE), %ecx + /* Enable PAE and PSE, but defer PGE until kaiser_enabled is decided */ + movl $(X86_CR4_PAE | X86_CR4_PSE), %ecx movq %rcx, %cr4 /* Setup early boot stage 4 level pagetables. */ @@ -441,6 +441,27 @@ .balign PAGE_SIZE; \ GLOBAL(name) +#ifdef CONFIG_KAISER +/* + * Each PGD needs to be 8k long and 8k aligned. We do not + * ever go out to userspace with these, so we do not + * strictly *need* the second page, but this allows us to + * have a single set_pgd() implementation that does not + * need to worry about whether it has 4k or 8k to work + * with. + * + * This ensures PGDs are 8k long: + */ +#define KAISER_USER_PGD_FILL 512 +/* This ensures they are 8k-aligned: */ +#define NEXT_PGD_PAGE(name) \ + .balign 2 * PAGE_SIZE; \ +GLOBAL(name) +#else +#define NEXT_PGD_PAGE(name) NEXT_PAGE(name) +#define KAISER_USER_PGD_FILL 0 +#endif + /* Automate the creation of 1 to 1 mapping pmd entries */ #define PMDS(START, PERM, COUNT) \ i = 0 ; \ @@ -450,9 +471,10 @@ .endr __INITDATA -NEXT_PAGE(early_level4_pgt) +NEXT_PGD_PAGE(early_level4_pgt) .fill 511,8,0 .quad level3_kernel_pgt - __START_KERNEL_map + _PAGE_TABLE + .fill KAISER_USER_PGD_FILL,8,0 NEXT_PAGE(early_dynamic_pgts) .fill 512*EARLY_DYNAMIC_PAGE_TABLES,8,0 @@ -460,16 +482,18 @@ .data #ifndef CONFIG_XEN -NEXT_PAGE(init_level4_pgt) +NEXT_PGD_PAGE(init_level4_pgt) .fill 512,8,0 + .fill KAISER_USER_PGD_FILL,8,0 #else -NEXT_PAGE(init_level4_pgt) +NEXT_PGD_PAGE(init_level4_pgt) .quad level3_ident_pgt - __START_KERNEL_map + _KERNPG_TABLE .org init_level4_pgt + L4_PAGE_OFFSET*8, 0 .quad level3_ident_pgt - __START_KERNEL_map + _KERNPG_TABLE .org init_level4_pgt + L4_START_KERNEL*8, 0 /* (2^48-(2*1024*1024*1024))/(2^39) = 511 */ .quad level3_kernel_pgt - __START_KERNEL_map + _PAGE_TABLE + .fill KAISER_USER_PGD_FILL,8,0 NEXT_PAGE(level3_ident_pgt) .quad level2_ident_pgt - __START_KERNEL_map + _KERNPG_TABLE @@ -480,6 +504,7 @@ */ PMDS(0, __PAGE_KERNEL_IDENT_LARGE_EXEC, PTRS_PER_PMD) #endif + .fill KAISER_USER_PGD_FILL,8,0 NEXT_PAGE(level3_kernel_pgt) .fill L3_START_KERNEL,8,0 only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/x86/kernel/irqinit.c +++ linux-raspi2-4.4.0/arch/x86/kernel/irqinit.c @@ -51,7 +51,7 @@ .flags = IRQF_NO_THREAD, }; -DEFINE_PER_CPU(vector_irq_t, vector_irq) = { +DEFINE_PER_CPU_USER_MAPPED(vector_irq_t, vector_irq) = { [0 ... NR_VECTORS - 1] = VECTOR_UNUSED, }; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/x86/kernel/kexec-bzimage64.c +++ linux-raspi2-4.4.0/arch/x86/kernel/kexec-bzimage64.c @@ -180,6 +180,7 @@ if (efi_enabled(EFI_OLD_MEMMAP)) return 0; + params->secure_boot = boot_params.secure_boot; ei->efi_loader_signature = current_ei->efi_loader_signature; ei->efi_systab = current_ei->efi_systab; ei->efi_systab_hi = current_ei->efi_systab_hi; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/x86/kernel/kvmclock.c +++ linux-raspi2-4.4.0/arch/x86/kernel/kvmclock.c @@ -45,6 +45,11 @@ static struct pvclock_vsyscall_time_info *hv_clock; static struct pvclock_wall_clock wall_clock; +struct pvclock_vsyscall_time_info *pvclock_pvti_cpu0_va(void) +{ + return hv_clock; +} + /* * The wallclock is the time of day when we booted. Since then, some time may * have elapsed since the hypervisor wrote the data. So we try to account for only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/x86/kernel/ldt.c +++ linux-raspi2-4.4.0/arch/x86/kernel/ldt.c @@ -15,6 +15,7 @@ #include #include #include +#include #include #include @@ -33,11 +34,21 @@ set_ldt(pc->ldt->entries, pc->ldt->size); } +static void __free_ldt_struct(struct ldt_struct *ldt) +{ + if (ldt->size * LDT_ENTRY_SIZE > PAGE_SIZE) + vfree(ldt->entries); + else + free_page((unsigned long)ldt->entries); + kfree(ldt); +} + /* The caller must call finalize_ldt_struct on the result. LDT starts zeroed. */ static struct ldt_struct *alloc_ldt_struct(int size) { struct ldt_struct *new_ldt; int alloc_size; + int ret; if (size > LDT_ENTRIES) return NULL; @@ -65,7 +76,13 @@ return NULL; } + ret = kaiser_add_mapping((unsigned long)new_ldt->entries, alloc_size, + __PAGE_KERNEL); new_ldt->size = size; + if (ret) { + __free_ldt_struct(new_ldt); + return NULL; + } return new_ldt; } @@ -91,12 +108,10 @@ if (likely(!ldt)) return; + kaiser_remove_mapping((unsigned long)ldt->entries, + ldt->size * LDT_ENTRY_SIZE); paravirt_free_ldt(ldt->entries, ldt->size); - if (ldt->size * LDT_ENTRY_SIZE > PAGE_SIZE) - vfree(ldt->entries); - else - free_page((unsigned long)ldt->entries); - kfree(ldt); + __free_ldt_struct(ldt); } /* only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/x86/kernel/paravirt_patch_64.c +++ linux-raspi2-4.4.0/arch/x86/kernel/paravirt_patch_64.c @@ -9,7 +9,6 @@ DEF_NATIVE(pv_mmu_ops, read_cr2, "movq %cr2, %rax"); DEF_NATIVE(pv_mmu_ops, read_cr3, "movq %cr3, %rax"); DEF_NATIVE(pv_mmu_ops, write_cr3, "movq %rdi, %cr3"); -DEF_NATIVE(pv_mmu_ops, flush_tlb_single, "invlpg (%rdi)"); DEF_NATIVE(pv_cpu_ops, clts, "clts"); DEF_NATIVE(pv_cpu_ops, wbinvd, "wbinvd"); @@ -62,7 +61,6 @@ PATCH_SITE(pv_mmu_ops, read_cr3); PATCH_SITE(pv_mmu_ops, write_cr3); PATCH_SITE(pv_cpu_ops, clts); - PATCH_SITE(pv_mmu_ops, flush_tlb_single); PATCH_SITE(pv_cpu_ops, wbinvd); #if defined(CONFIG_PARAVIRT_SPINLOCKS) && defined(CONFIG_QUEUED_SPINLOCKS) case PARAVIRT_PATCH(pv_lock_ops.queued_spin_unlock): only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/x86/kernel/tracepoint.c +++ linux-raspi2-4.4.0/arch/x86/kernel/tracepoint.c @@ -9,10 +9,12 @@ #include atomic_t trace_idt_ctr = ATOMIC_INIT(0); +__aligned(PAGE_SIZE) struct desc_ptr trace_idt_descr = { NR_VECTORS * 16 - 1, (unsigned long) trace_idt_table }; /* No need to be aligned, but done to keep all IDTs defined the same way. */ +__aligned(PAGE_SIZE) gate_desc trace_idt_table[NR_VECTORS] __page_aligned_bss; static int trace_irq_vector_refcount; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/x86/kvm/cpuid.h +++ linux-raspi2-4.4.0/arch/x86/kvm/cpuid.h @@ -4,6 +4,7 @@ #include "x86.h" int kvm_update_cpuid(struct kvm_vcpu *vcpu); +bool kvm_mpx_supported(void); struct kvm_cpuid_entry2 *kvm_find_cpuid_entry(struct kvm_vcpu *vcpu, u32 function, u32 index); int kvm_dev_ioctl_get_cpuid(struct kvm_cpuid2 *cpuid, @@ -134,20 +135,20 @@ return best && (best->ebx & bit(X86_FEATURE_RTM)); } -static inline bool guest_cpuid_has_mpx(struct kvm_vcpu *vcpu) +static inline bool guest_cpuid_has_pcommit(struct kvm_vcpu *vcpu) { struct kvm_cpuid_entry2 *best; best = kvm_find_cpuid_entry(vcpu, 7, 0); - return best && (best->ebx & bit(X86_FEATURE_MPX)); + return best && (best->ebx & bit(X86_FEATURE_PCOMMIT)); } -static inline bool guest_cpuid_has_pcommit(struct kvm_vcpu *vcpu) +static inline bool guest_cpuid_has_mpx(struct kvm_vcpu *vcpu) { struct kvm_cpuid_entry2 *best; best = kvm_find_cpuid_entry(vcpu, 7, 0); - return best && (best->ebx & bit(X86_FEATURE_PCOMMIT)); + return best && (best->ebx & bit(X86_FEATURE_MPX)); } static inline bool guest_cpuid_has_rdtscp(struct kvm_vcpu *vcpu) only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/x86/lib/cmdline.c +++ linux-raspi2-4.4.0/arch/x86/lib/cmdline.c @@ -82,3 +82,108 @@ return 0; /* Buffer overrun */ } + +/* + * Find a non-boolean option (i.e. option=argument). In accordance with + * standard Linux practice, if this option is repeated, this returns the + * last instance on the command line. + * + * @cmdline: the cmdline string + * @max_cmdline_size: the maximum size of cmdline + * @option: option string to look for + * @buffer: memory buffer to return the option argument + * @bufsize: size of the supplied memory buffer + * + * Returns the length of the argument (regardless of if it was + * truncated to fit in the buffer), or -1 on not found. + */ +static int +__cmdline_find_option(const char *cmdline, int max_cmdline_size, + const char *option, char *buffer, int bufsize) +{ + char c; + int pos = 0, len = -1; + const char *opptr = NULL; + char *bufptr = buffer; + enum { + st_wordstart = 0, /* Start of word/after whitespace */ + st_wordcmp, /* Comparing this word */ + st_wordskip, /* Miscompare, skip */ + st_bufcpy, /* Copying this to buffer */ + } state = st_wordstart; + + if (!cmdline) + return -1; /* No command line */ + + /* + * This 'pos' check ensures we do not overrun + * a non-NULL-terminated 'cmdline' + */ + while (pos++ < max_cmdline_size) { + c = *(char *)cmdline++; + if (!c) + break; + + switch (state) { + case st_wordstart: + if (myisspace(c)) + break; + + state = st_wordcmp; + opptr = option; + /* fall through */ + + case st_wordcmp: + if ((c == '=') && !*opptr) { + /* + * We matched all the way to the end of the + * option we were looking for, prepare to + * copy the argument. + */ + len = 0; + bufptr = buffer; + state = st_bufcpy; + break; + } else if (c == *opptr++) { + /* + * We are currently matching, so continue + * to the next character on the cmdline. + */ + break; + } + state = st_wordskip; + /* fall through */ + + case st_wordskip: + if (myisspace(c)) + state = st_wordstart; + break; + + case st_bufcpy: + if (myisspace(c)) { + state = st_wordstart; + } else { + /* + * Increment len, but don't overrun the + * supplied buffer and leave room for the + * NULL terminator. + */ + if (++len < bufsize) + *bufptr++ = c; + } + break; + } + } + + if (bufsize) + *bufptr = '\0'; + + return len; +} + +int cmdline_find_option(const char *cmdline, const char *option, char *buffer, + int bufsize) +{ + return __cmdline_find_option(cmdline, COMMAND_LINE_SIZE, option, + buffer, bufsize); +} only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/x86/mm/Makefile +++ linux-raspi2-4.4.0/arch/x86/mm/Makefile @@ -1,5 +1,5 @@ obj-y := init.o init_$(BITS).o fault.o ioremap.o extable.o pageattr.o mmap.o \ - pat.o pgtable.o physaddr.o gup.o setup_nx.o + pat.o pgtable.o physaddr.o gup.o setup_nx.o tlb.o # Make sure __phys_addr has no stackprotector nostackp := $(call cc-option, -fno-stack-protector) @@ -9,7 +9,6 @@ CFLAGS_fault.o := -I$(src)/../include/asm/trace obj-$(CONFIG_X86_PAT) += pat_rbtree.o -obj-$(CONFIG_SMP) += tlb.o obj-$(CONFIG_X86_32) += pgtable_32.o iomap_32.o @@ -33,3 +32,4 @@ obj-$(CONFIG_NUMA_EMU) += numa_emulation.o obj-$(CONFIG_X86_INTEL_MPX) += mpx.o +obj-$(CONFIG_KAISER) += kaiser.o only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/x86/mm/kaiser.c +++ linux-raspi2-4.4.0/arch/x86/mm/kaiser.c @@ -0,0 +1,456 @@ +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#undef pr_fmt +#define pr_fmt(fmt) "Kernel/User page tables isolation: " fmt + +#include +#include /* to verify its kaiser declarations */ +#include +#include +#include +#include + +int kaiser_enabled __read_mostly = 1; +EXPORT_SYMBOL(kaiser_enabled); /* for inlined TLB flush functions */ + +__visible +DEFINE_PER_CPU_USER_MAPPED(unsigned long, unsafe_stack_register_backup); + +/* + * These can have bit 63 set, so we can not just use a plain "or" + * instruction to get their value or'd into CR3. It would take + * another register. So, we use a memory reference to these instead. + * + * This is also handy because systems that do not support PCIDs + * just end up or'ing a 0 into their CR3, which does no harm. + */ +DEFINE_PER_CPU(unsigned long, x86_cr3_pcid_user); + +/* + * At runtime, the only things we map are some things for CPU + * hotplug, and stacks for new processes. No two CPUs will ever + * be populating the same addresses, so we only need to ensure + * that we protect between two CPUs trying to allocate and + * populate the same page table page. + * + * Only take this lock when doing a set_p[4um]d(), but it is not + * needed for doing a set_pte(). We assume that only the *owner* + * of a given allocation will be doing this for _their_ + * allocation. + * + * This ensures that once a system has been running for a while + * and there have been stacks all over and these page tables + * are fully populated, there will be no further acquisitions of + * this lock. + */ +static DEFINE_SPINLOCK(shadow_table_allocation_lock); + +/* + * Returns -1 on error. + */ +static inline unsigned long get_pa_from_mapping(unsigned long vaddr) +{ + pgd_t *pgd; + pud_t *pud; + pmd_t *pmd; + pte_t *pte; + + pgd = pgd_offset_k(vaddr); + /* + * We made all the kernel PGDs present in kaiser_init(). + * We expect them to stay that way. + */ + BUG_ON(pgd_none(*pgd)); + /* + * PGDs are either 512GB or 128TB on all x86_64 + * configurations. We don't handle these. + */ + BUG_ON(pgd_large(*pgd)); + + pud = pud_offset(pgd, vaddr); + if (pud_none(*pud)) { + WARN_ON_ONCE(1); + return -1; + } + + if (pud_large(*pud)) + return (pud_pfn(*pud) << PAGE_SHIFT) | (vaddr & ~PUD_PAGE_MASK); + + pmd = pmd_offset(pud, vaddr); + if (pmd_none(*pmd)) { + WARN_ON_ONCE(1); + return -1; + } + + if (pmd_large(*pmd)) + return (pmd_pfn(*pmd) << PAGE_SHIFT) | (vaddr & ~PMD_PAGE_MASK); + + pte = pte_offset_kernel(pmd, vaddr); + if (pte_none(*pte)) { + WARN_ON_ONCE(1); + return -1; + } + + return (pte_pfn(*pte) << PAGE_SHIFT) | (vaddr & ~PAGE_MASK); +} + +/* + * This is a relatively normal page table walk, except that it + * also tries to allocate page tables pages along the way. + * + * Returns a pointer to a PTE on success, or NULL on failure. + */ +static pte_t *kaiser_pagetable_walk(unsigned long address) +{ + pmd_t *pmd; + pud_t *pud; + pgd_t *pgd = native_get_shadow_pgd(pgd_offset_k(address)); + gfp_t gfp = (GFP_KERNEL | __GFP_NOTRACK | __GFP_ZERO); + + if (pgd_none(*pgd)) { + WARN_ONCE(1, "All shadow pgds should have been populated"); + return NULL; + } + BUILD_BUG_ON(pgd_large(*pgd) != 0); + + pud = pud_offset(pgd, address); + /* The shadow page tables do not use large mappings: */ + if (pud_large(*pud)) { + WARN_ON(1); + return NULL; + } + if (pud_none(*pud)) { + unsigned long new_pmd_page = __get_free_page(gfp); + if (!new_pmd_page) + return NULL; + spin_lock(&shadow_table_allocation_lock); + if (pud_none(*pud)) { + set_pud(pud, __pud(_KERNPG_TABLE | __pa(new_pmd_page))); + __inc_zone_page_state(virt_to_page((void *) + new_pmd_page), NR_KAISERTABLE); + } else + free_page(new_pmd_page); + spin_unlock(&shadow_table_allocation_lock); + } + + pmd = pmd_offset(pud, address); + /* The shadow page tables do not use large mappings: */ + if (pmd_large(*pmd)) { + WARN_ON(1); + return NULL; + } + if (pmd_none(*pmd)) { + unsigned long new_pte_page = __get_free_page(gfp); + if (!new_pte_page) + return NULL; + spin_lock(&shadow_table_allocation_lock); + if (pmd_none(*pmd)) { + set_pmd(pmd, __pmd(_KERNPG_TABLE | __pa(new_pte_page))); + __inc_zone_page_state(virt_to_page((void *) + new_pte_page), NR_KAISERTABLE); + } else + free_page(new_pte_page); + spin_unlock(&shadow_table_allocation_lock); + } + + return pte_offset_kernel(pmd, address); +} + +static int kaiser_add_user_map(const void *__start_addr, unsigned long size, + unsigned long flags) +{ + int ret = 0; + pte_t *pte; + unsigned long start_addr = (unsigned long )__start_addr; + unsigned long address = start_addr & PAGE_MASK; + unsigned long end_addr = PAGE_ALIGN(start_addr + size); + unsigned long target_address; + + /* + * It is convenient for callers to pass in __PAGE_KERNEL etc, + * and there is no actual harm from setting _PAGE_GLOBAL, so + * long as CR4.PGE is not set. But it is nonetheless troubling + * to see Kaiser itself setting _PAGE_GLOBAL (now that "nokaiser" + * requires that not to be #defined to 0): so mask it off here. + */ + flags &= ~_PAGE_GLOBAL; + + for (; address < end_addr; address += PAGE_SIZE) { + target_address = get_pa_from_mapping(address); + if (target_address == -1) { + ret = -EIO; + break; + } + pte = kaiser_pagetable_walk(address); + if (!pte) { + ret = -ENOMEM; + break; + } + if (pte_none(*pte)) { + set_pte(pte, __pte(flags | target_address)); + } else { + pte_t tmp; + set_pte(&tmp, __pte(flags | target_address)); + WARN_ON_ONCE(!pte_same(*pte, tmp)); + } + } + return ret; +} + +static int kaiser_add_user_map_ptrs(const void *start, const void *end, unsigned long flags) +{ + unsigned long size = end - start; + + return kaiser_add_user_map(start, size, flags); +} + +/* + * Ensure that the top level of the (shadow) page tables are + * entirely populated. This ensures that all processes that get + * forked have the same entries. This way, we do not have to + * ever go set up new entries in older processes. + * + * Note: we never free these, so there are no updates to them + * after this. + */ +static void __init kaiser_init_all_pgds(void) +{ + pgd_t *pgd; + int i = 0; + + pgd = native_get_shadow_pgd(pgd_offset_k((unsigned long )0)); + for (i = PTRS_PER_PGD / 2; i < PTRS_PER_PGD; i++) { + pgd_t new_pgd; + pud_t *pud = pud_alloc_one(&init_mm, + PAGE_OFFSET + i * PGDIR_SIZE); + if (!pud) { + WARN_ON(1); + break; + } + inc_zone_page_state(virt_to_page(pud), NR_KAISERTABLE); + new_pgd = __pgd(_KERNPG_TABLE |__pa(pud)); + /* + * Make sure not to stomp on some other pgd entry. + */ + if (!pgd_none(pgd[i])) { + WARN_ON(1); + continue; + } + set_pgd(pgd + i, new_pgd); + } +} + +#define kaiser_add_user_map_early(start, size, flags) do { \ + int __ret = kaiser_add_user_map(start, size, flags); \ + WARN_ON(__ret); \ +} while (0) + +#define kaiser_add_user_map_ptrs_early(start, end, flags) do { \ + int __ret = kaiser_add_user_map_ptrs(start, end, flags); \ + WARN_ON(__ret); \ +} while (0) + +void __init kaiser_check_boottime_disable(void) +{ + bool enable = true; + char arg[5]; + int ret; + + if (boot_cpu_has(X86_FEATURE_XENPV)) + goto silent_disable; + + ret = cmdline_find_option(boot_command_line, "pti", arg, sizeof(arg)); + if (ret > 0) { + if (!strncmp(arg, "on", 2)) + goto enable; + + if (!strncmp(arg, "off", 3)) + goto disable; + + if (!strncmp(arg, "auto", 4)) + goto skip; + } + + if (cmdline_find_option_bool(boot_command_line, "nopti")) + goto disable; + +skip: + if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD) + goto disable; + +enable: + if (enable) + setup_force_cpu_cap(X86_FEATURE_KAISER); + + return; + +disable: + pr_info("disabled\n"); + +silent_disable: + kaiser_enabled = 0; + setup_clear_cpu_cap(X86_FEATURE_KAISER); +} + +/* + * If anything in here fails, we will likely die on one of the + * first kernel->user transitions and init will die. But, we + * will have most of the kernel up by then and should be able to + * get a clean warning out of it. If we BUG_ON() here, we run + * the risk of being before we have good console output. + */ +void __init kaiser_init(void) +{ + int cpu; + + if (!kaiser_enabled) + return; + + kaiser_init_all_pgds(); + + for_each_possible_cpu(cpu) { + void *percpu_vaddr = __per_cpu_user_mapped_start + + per_cpu_offset(cpu); + unsigned long percpu_sz = __per_cpu_user_mapped_end - + __per_cpu_user_mapped_start; + kaiser_add_user_map_early(percpu_vaddr, percpu_sz, + __PAGE_KERNEL); + } + + /* + * Map the entry/exit text section, which is needed at + * switches from user to and from kernel. + */ + kaiser_add_user_map_ptrs_early(__entry_text_start, __entry_text_end, + __PAGE_KERNEL_RX); + +#if defined(CONFIG_FUNCTION_GRAPH_TRACER) || defined(CONFIG_KASAN) + kaiser_add_user_map_ptrs_early(__irqentry_text_start, + __irqentry_text_end, + __PAGE_KERNEL_RX); +#endif + kaiser_add_user_map_early((void *)idt_descr.address, + sizeof(gate_desc) * NR_VECTORS, + __PAGE_KERNEL_RO); +#ifdef CONFIG_TRACING + kaiser_add_user_map_early(&trace_idt_descr, + sizeof(trace_idt_descr), + __PAGE_KERNEL); + kaiser_add_user_map_early(&trace_idt_table, + sizeof(gate_desc) * NR_VECTORS, + __PAGE_KERNEL); +#endif + kaiser_add_user_map_early(&debug_idt_descr, sizeof(debug_idt_descr), + __PAGE_KERNEL); + kaiser_add_user_map_early(&debug_idt_table, + sizeof(gate_desc) * NR_VECTORS, + __PAGE_KERNEL); + + pr_info("enabled\n"); +} + +/* Add a mapping to the shadow mapping, and synchronize the mappings */ +int kaiser_add_mapping(unsigned long addr, unsigned long size, unsigned long flags) +{ + if (!kaiser_enabled) + return 0; + return kaiser_add_user_map((const void *)addr, size, flags); +} + +void kaiser_remove_mapping(unsigned long start, unsigned long size) +{ + extern void unmap_pud_range_nofree(pgd_t *pgd, + unsigned long start, unsigned long end); + unsigned long end = start + size; + unsigned long addr, next; + pgd_t *pgd; + + if (!kaiser_enabled) + return; + pgd = native_get_shadow_pgd(pgd_offset_k(start)); + for (addr = start; addr < end; pgd++, addr = next) { + next = pgd_addr_end(addr, end); + unmap_pud_range_nofree(pgd, addr, next); + } +} + +/* + * Page table pages are page-aligned. The lower half of the top + * level is used for userspace and the top half for the kernel. + * This returns true for user pages that need to get copied into + * both the user and kernel copies of the page tables, and false + * for kernel pages that should only be in the kernel copy. + */ +static inline bool is_userspace_pgd(pgd_t *pgdp) +{ + return ((unsigned long)pgdp % PAGE_SIZE) < (PAGE_SIZE / 2); +} + +pgd_t kaiser_set_shadow_pgd(pgd_t *pgdp, pgd_t pgd) +{ + if (!kaiser_enabled) + return pgd; + /* + * Do we need to also populate the shadow pgd? Check _PAGE_USER to + * skip cases like kexec and EFI which make temporary low mappings. + */ + if (pgd.pgd & _PAGE_USER) { + if (is_userspace_pgd(pgdp)) { + native_get_shadow_pgd(pgdp)->pgd = pgd.pgd; + /* + * Even if the entry is *mapping* userspace, ensure + * that userspace can not use it. This way, if we + * get out to userspace running on the kernel CR3, + * userspace will crash instead of running. + */ + if (__supported_pte_mask & _PAGE_NX) + pgd.pgd |= _PAGE_NX; + } + } else if (!pgd.pgd) { + /* + * pgd_clear() cannot check _PAGE_USER, and is even used to + * clear corrupted pgd entries: so just rely on cases like + * kexec and EFI never to be using pgd_clear(). + */ + if (!WARN_ON_ONCE((unsigned long)pgdp & PAGE_SIZE) && + is_userspace_pgd(pgdp)) + native_get_shadow_pgd(pgdp)->pgd = pgd.pgd; + } + return pgd; +} + +void kaiser_setup_pcid(void) +{ + unsigned long user_cr3 = KAISER_SHADOW_PGD_OFFSET; + + if (this_cpu_has(X86_FEATURE_PCID)) + user_cr3 |= X86_CR3_PCID_USER_NOFLUSH; + /* + * These variables are used by the entry/exit + * code to change PCID and pgd and TLB flushing. + */ + this_cpu_write(x86_cr3_pcid_user, user_cr3); +} + +/* + * Make a note that this cpu will need to flush USER tlb on return to user. + * If cpu does not have PCID, then the NOFLUSH bit will never have been set. + */ +void kaiser_flush_tlb_on_return_to_user(void) +{ + if (this_cpu_has(X86_FEATURE_PCID)) + this_cpu_write(x86_cr3_pcid_user, + X86_CR3_PCID_USER_FLUSH | KAISER_SHADOW_PGD_OFFSET); +} +EXPORT_SYMBOL(kaiser_flush_tlb_on_return_to_user); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/x86/mm/pgtable.c +++ linux-raspi2-4.4.0/arch/x86/mm/pgtable.c @@ -6,7 +6,7 @@ #include #include -#define PGALLOC_GFP GFP_KERNEL | __GFP_NOTRACK | __GFP_REPEAT | __GFP_ZERO +#define PGALLOC_GFP (GFP_KERNEL | __GFP_NOTRACK | __GFP_REPEAT | __GFP_ZERO) #ifdef CONFIG_HIGHPTE #define PGALLOC_USER_GFP __GFP_HIGHMEM @@ -340,14 +340,24 @@ kmem_cache_free(pgd_cache, pgd); } #else + +/* + * Instead of one pgd, Kaiser acquires two pgds. Being order-1, it is + * both 8k in size and 8k-aligned. That lets us just flip bit 12 + * in a pointer to swap between the two 4k halves. + */ +#define PGD_ALLOCATION_ORDER kaiser_enabled + static inline pgd_t *_pgd_alloc(void) { - return (pgd_t *)__get_free_page(PGALLOC_GFP); + /* No __GFP_REPEAT: to avoid page allocation stalls in order-1 case */ + return (pgd_t *)__get_free_pages(PGALLOC_GFP & ~__GFP_REPEAT, + PGD_ALLOCATION_ORDER); } static inline void _pgd_free(pgd_t *pgd) { - free_page((unsigned long)pgd); + free_pages((unsigned long)pgd, PGD_ALLOCATION_ORDER); } #endif /* CONFIG_X86_PAE */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/x86/oprofile/op_model_ppro.c +++ linux-raspi2-4.4.0/arch/x86/oprofile/op_model_ppro.c @@ -212,8 +212,8 @@ eax.full = cpuid_eax(0xa); /* Workaround for BIOS bugs in 6/15. Taken from perfmon2 */ - if (eax.split.version_id == 0 && __this_cpu_read(cpu_info.x86) == 6 && - __this_cpu_read(cpu_info.x86_model) == 15) { + if (eax.split.version_id == 0 && boot_cpu_data.x86 == 6 && + boot_cpu_data.x86_model == 15) { eax.split.version_id = 2; eax.split.num_counters = 2; eax.split.bit_width = 40; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/arch/x86/tools/relocs.c +++ linux-raspi2-4.4.0/arch/x86/tools/relocs.c @@ -992,11 +992,12 @@ die("Segment relocations found but --realmode not specified\n"); /* Order the relocations for more efficient processing */ - sort_relocs(&relocs16); sort_relocs(&relocs32); #if ELF_BITS == 64 sort_relocs(&relocs32neg); sort_relocs(&relocs64); +#else + sort_relocs(&relocs16); #endif /* Print the relocations */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/block/partitions/efi.c +++ linux-raspi2-4.4.0/block/partitions/efi.c @@ -293,7 +293,7 @@ if (!gpt) return NULL; - count = le32_to_cpu(gpt->num_partition_entries) * + count = (size_t)le32_to_cpu(gpt->num_partition_entries) * le32_to_cpu(gpt->sizeof_partition_entry); if (!count) return NULL; @@ -352,7 +352,7 @@ gpt_header **gpt, gpt_entry **ptes) { u32 crc, origcrc; - u64 lastlba; + u64 lastlba, pt_size; if (!ptes) return 0; @@ -434,13 +434,20 @@ goto fail; } + /* Sanity check partition table size */ + pt_size = (u64)le32_to_cpu((*gpt)->num_partition_entries) * + le32_to_cpu((*gpt)->sizeof_partition_entry); + if (pt_size > KMALLOC_MAX_SIZE) { + pr_debug("GUID Partition Table is too large: %llu > %lu bytes\n", + (unsigned long long)pt_size, KMALLOC_MAX_SIZE); + goto fail; + } + if (!(*ptes = alloc_read_gpt_entries(state, *gpt))) goto fail; /* Check the GUID Partition Entry Array CRC */ - crc = efi_crc32((const unsigned char *) (*ptes), - le32_to_cpu((*gpt)->num_partition_entries) * - le32_to_cpu((*gpt)->sizeof_partition_entry)); + crc = efi_crc32((const unsigned char *) (*ptes), pt_size); if (crc != le32_to_cpu((*gpt)->partition_entry_array_crc32)) { pr_debug("GUID Partitition Entry Array CRC check failed.\n"); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/crypto/Kconfig +++ linux-raspi2-4.4.0/crypto/Kconfig @@ -343,6 +343,7 @@ select CRYPTO_BLKCIPHER select CRYPTO_MANAGER select CRYPTO_GF128MUL + select CRYPTO_ECB help XTS: IEEE1619/D16 narrow block cipher use with aes-xts-plain, key size 256, 384 or 512 bits. This implementation currently only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/crypto/authencesn.c +++ linux-raspi2-4.4.0/crypto/authencesn.c @@ -245,6 +245,9 @@ u8 *ihash = ohash + crypto_ahash_digestsize(auth); u32 tmp[2]; + if (!authsize) + goto decrypt; + /* Move high-order bits of sequence number back. */ scatterwalk_map_and_copy(tmp, dst, 4, 4, 0); scatterwalk_map_and_copy(tmp + 1, dst, assoclen + cryptlen, 4, 0); @@ -253,6 +256,8 @@ if (crypto_memneq(ihash, ohash, authsize)) return -EBADMSG; +decrypt: + sg_init_table(areq_ctx->dst, 2); dst = scatterwalk_ffwd(areq_ctx->dst, dst, assoclen); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-106.129/abiname +++ linux-raspi2-4.4.0/debian.master/abi/4.4.0-106.129/abiname @@ -0,0 +1 @@ +106 only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-106.129/amd64/generic +++ linux-raspi2-4.4.0/debian.master/abi/4.4.0-106.129/amd64/generic @@ -0,0 +1,18903 @@ +EXPORT_SYMBOL arch/x86/kvm/kvm 0xa3a2bb39 kvm_cpu_has_pending_timer +EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe +EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble +EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL crypto/mcryptd 0x73892a61 mcryptd_arm_flusher +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/acpi/nfit 0xa7e9a159 to_nfit_uuid +EXPORT_SYMBOL drivers/acpi/video 0x6de7f7ff acpi_video_get_backlight_type +EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister +EXPORT_SYMBOL drivers/acpi/video 0x841b6bf1 acpi_video_get_edid +EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register +EXPORT_SYMBOL drivers/acpi/video 0xe92ca535 acpi_video_set_dmi_backlight_type +EXPORT_SYMBOL drivers/atm/suni 0x315f82b7 suni_init +EXPORT_SYMBOL drivers/atm/uPD98402 0xdfd2cc1e uPD98402_init +EXPORT_SYMBOL drivers/bcma/bcma 0xa35eb9a0 bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0xd4cfd049 bcma_core_irq +EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str +EXPORT_SYMBOL drivers/block/paride/paride 0x101d0a54 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x39c242ad paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x3aed4348 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x646e4efd pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x6b0349b7 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x7e12e53d pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x7ef7fbc8 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x97ad7040 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0xa7e63e7b pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xcb845d38 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xd8a6ad45 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0xf4c1a7de pi_read_regr +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x10eec917 btbcm_patchram +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fae3bac ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x3f61b6d3 ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8caa3c42 ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xab8ede5c ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xc9c73ce2 ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xce9a124d ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/nvram 0x0f28cb91 nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x17ff2c1d __nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x2adec1e0 __nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x7da28f12 nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x9ce3f83f nvram_write_byte +EXPORT_SYMBOL drivers/char/nvram 0xa8813189 __nvram_write_byte +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x585a85ca st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x64f09e1c st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x88467d83 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xaa792e79 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x1206690b xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x43cd74fb xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x881156e6 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x0a015800 dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x6109c91f dw_dma_get_src_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x8c81a6bd dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xc51c659a dw_dma_cyclic_free +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xc8c491a3 dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xe2af5d34 dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/edac/edac_core 0xc506b6bd edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04d0f641 fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0f7d6af8 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1704bbc8 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x25e694df fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2ea504e4 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x36f92e50 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3ead6280 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x43b5b822 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4b277058 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4f79cae2 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x605680cc fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x60ef8c0e fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x645b715f fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x66c76c92 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x688d1056 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x71c78c4d fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x75b8dcb9 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x83019afa fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8d018229 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x921b2410 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9a540094 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9abf52d4 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa304ff3a fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbb08b491 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd25bd20b fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe17ff243 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xec95e8a5 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfb96bfd3 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfd6ca1b9 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firmware/dcdbas 0xa75079d6 dcdbas_smi_request +EXPORT_SYMBOL drivers/fmc/fmc 0x0f1d76fe fmc_device_unregister_n +EXPORT_SYMBOL drivers/fmc/fmc 0x17432df4 fmc_device_register_n +EXPORT_SYMBOL drivers/fmc/fmc 0x18367e17 fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x2a256ea8 fmc_device_register +EXPORT_SYMBOL drivers/fmc/fmc 0x3491a125 fmc_reprogram +EXPORT_SYMBOL drivers/fmc/fmc 0x5fc1d447 fmc_find_sdb_device +EXPORT_SYMBOL drivers/fmc/fmc 0x63e9b49e fmc_device_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x716ba0b2 fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x827ae2e3 fmc_show_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xb1c7cbce fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xce0761d8 fmc_driver_register +EXPORT_SYMBOL drivers/gpu/drm/amd/amdkfd/amdkfd 0x4d5896ef kgd2kfd_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x002f897c drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c3a772 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x043a80c7 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x046e83d4 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06760165 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06dde2a1 drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06f6bc53 drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06fd3113 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x070d0dbb drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07a77897 drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08b74c8e drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08c36289 drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a8d9a2f drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b9b9b56 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ca56ec9 drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cfa60d4 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e7fc82f drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7f4748 drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11910c5d drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13aaffae drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14457c92 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a67600 drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x163e1d57 drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0x183498e1 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a19525e drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b11f24b drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bd886c3 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c603e5c drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dae2244 drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e7677f3 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ef45d90 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x208c26ab drm_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20da9720 drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x217e7f43 drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x219b24c5 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22590103 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x233493e4 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x246d704c drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24feffa1 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25de693f drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26a2be84 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26d3c16e drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27d266bc drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28c56fd5 drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28f3c3a0 drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29d8adb7 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a47b4a5 drm_agp_bind_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c0f503b drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cc0172f drm_framebuffer_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ea04ccf drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fa3f095 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x304256fb drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x309f8807 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x325baa4e drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32b07edd drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x330a0a7f drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x334986e1 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x340e14f4 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x341c02a7 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3423dad9 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34eeea90 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3946facf drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3960bdc7 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39f5febd drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bb8eb24 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d53f631 drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40a003fe drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42920fff drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4343fa22 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43989ce9 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4491f02e drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44b6320c drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45166da4 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45c28f11 drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x463c3b9e drm_connector_unplug_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x463d58a8 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x470074bd drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4716042a drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4810d659 drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x483ff6c2 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x483ff8b3 drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c0066e9 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c0ecf66 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cfe28e0 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d815906 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50882f01 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5150d146 drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x517c290e drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5231c0e0 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54181b2d drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5529ee5e drm_encoder_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x556a5778 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55f18d27 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x565fc2c8 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5680b098 drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x569039a5 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56b6c52b drm_atomic_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58304318 drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x583bc69a drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x591a2af4 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a58bec1 drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a73d001 drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ad27f06 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bb80e2a drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7318dc drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e1b91d0 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e68c8cc drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5eae3a90 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fdb6109 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x605c2ebe drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6351ba67 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63bf9307 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63d8cf07 drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63d93030 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64391ffa drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64896e4d drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x676d304a drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67f3a970 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68e80296 drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a64d8ea drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6be7df7d drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bebff37 drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cb05fe6 drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d68fdc7 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6eb7d90e drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f3a8938 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f979bde drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f9fe4d1 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6fa2854e drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70cddf71 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71d45caa drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74c32e81 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75b34268 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75d8905c drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76758778 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77243a02 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x780eb3cc drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b221788 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cd8358e drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f61dfd7 drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fde318d drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x818475bd drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82707f02 drm_framebuffer_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8357cd64 drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84660d04 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x851dc8fa drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x853fdd9b drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8543959c drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8552eae9 drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86998a40 drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87f13461 drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8819b0c8 drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8860a7d3 drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88934a53 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88f87120 drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a1a884f drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8aab3e00 drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8acc0668 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ae83ac6 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b5cecac drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c9f6cda drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cbec006 drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d166c6f drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de0bafb drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e0c2b1f drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x925ede4f drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x957e84a3 drm_platform_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9778e965 drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97b45e59 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97f1c830 drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x981ff7c7 drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9898e95b drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x998a488b drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99e053f9 drm_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e85f4fc drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e86cd72 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ea9dc6b drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ef1774a drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f2c3af1 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0689805 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa07dc441 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa07e3457 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa17a194b drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1944811 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa27e9705 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3443b53 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa34c5c0a drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa38d37f7 drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4f3972c drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5174fc6 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6066c1e drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa690bfe7 drm_crtc_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7410bc2 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7958b19 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa2b7546 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa64cb6f drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa7be498 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaac552eb drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xabac5a91 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xabb18126 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xabb79121 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac2c20d0 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacca57a7 drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacca796d drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xadf6c58d drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae5b2d6b drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb17a078f drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb29d527d drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2a1dbf5 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2ded4af drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb34de41f drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3dbf5ad drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4c6eca0 drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5540008 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb565ff34 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6826955 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6f916c3 drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7517346 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb77aa809 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb781a3b6 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb94a8cc2 drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9fc37fc drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba0cef54 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba46f120 drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbae70f47 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcd4d9b7 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe3d6712 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbed115fa drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf198898 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0f6064d drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1681d53 drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc29e6a85 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5d71fab drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7064817 drm_legacy_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc96cee8a drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca571f42 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca64cb05 drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb952c54 drm_connector_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd74574a drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcda6a288 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfb2ef62 drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd272d488 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd341141e drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5222e40 drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda436f18 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb657eb9 drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbe9929e drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc591de2 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcecd867 drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd924b42 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfe0c71e drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe02fa92d drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0f4f973 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1dc6c58 drm_plane_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe32e5714 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3405f70 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe38edbf5 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe39da800 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe46f39e6 drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe522d4ba drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6e03f1a drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7cb79bf drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8f19058 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe92dc1d2 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe98ed86c drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeaa8d3ee drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb731606 drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xecda3170 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed498ad7 drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed94bb87 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed9c46d2 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee5457e5 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0080509 drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1e359a8 drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf25db327 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf785b93b drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf81e44ba drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf83f8250 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa54dad8 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb325563 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb7cc4c5 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbf34871 drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc172c64 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc5ce81e drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfed4f569 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x030a4b31 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04ac4792 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08d5b93b drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x099d299c drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09c3cfd5 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a603e1b drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ae6e65a drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ccae59a drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e6c2f39 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f9cf57d __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1038c0d2 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11c62e1e drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1356b416 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x188b087f drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19391172 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b48ab50 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b8b55a1 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2035a04f drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2045f1b7 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2311a4aa drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cfc55c2 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fafdee3 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30ea12a4 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3263d966 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x347f235d drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37a37316 drm_helper_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3aaa5bb9 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b9f7e2a drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3db4e630 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3dee4692 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e8ac584 drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3eadb18f drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4096d3c1 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x410782d8 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43bd6b33 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x468e3523 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x483874ac drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x492bc1fc drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4cf4c901 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5079705d drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55d302c3 drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x570b3558 drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x579ac602 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d678e8d drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x615b3d52 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63991dea drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x641b44b1 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65448619 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66dc9f0c drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6aec610a drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6edbc0be drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6fce07c6 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70b6f982 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7286fca1 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72a06379 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7438037a drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7447a8a1 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76ecb2bd drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79036df0 drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79359497 drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7998114e drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a1a507a drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d04452a drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e081db1 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x818cad8d drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84db501d drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x888f307f drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88b7486a drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89f1a3e5 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9242e2e0 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x933c44db drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x955d1d44 drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x971eaa3e drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b099164 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b93a5c9 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d57fb8a drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9eb56f41 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa18d0173 drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3788c42 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa50044ef drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa640c135 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa67088ff drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9109ec0 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9b84983 drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xabd809fc drm_helper_probe_single_connector_modes_nomerge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaedb642d drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf499d26 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf586861 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xafd0671c drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb20ec94c drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb32d0095 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4edfbbe drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb71c861d drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7709417 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb82ff82b drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb951c7cb drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9635dbb drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc61da5b drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc18877c4 drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc670d1fe drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7464025 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9080ff6 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb1bfdb1 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce9a25c9 drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcea45690 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd05c6f37 drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd382c968 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd53c4789 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd54a8ebe drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8244039 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb251590 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb74f61a drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbe01ae6 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc10a9e3 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdcdc70fd drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde4c61ac drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfdb86ef drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe005d3b7 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1b887f2 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe346b88b drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3837c1b drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe64848ff drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6ab3564 drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7d2f465 drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb28eee3 drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec0b980f drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeca9a91a __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed62547c drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeeafb430 drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef558871 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1c3da8a drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2290882 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf373798d drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf393d8d8 drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf58a868c drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf89dfc5d drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc571d6b drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd16bad4 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe11afc5 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe8aec67 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfebe2485 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffa498f4 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x04ab444e ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x05e60c83 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x06354968 ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0bab7f47 ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0f84c60a ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1225f046 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x167f0d6b ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1940e4cd ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1b9fc1de ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1c9c7282 ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2033a8c0 ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x22d8d168 ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x22ec80fe ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x24765c33 ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x29c136ee ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x29d8129b ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2c172f18 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2c22c4b2 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x35818e93 ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x35a4fcc0 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3c6cca6e ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4122e708 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4899b9a9 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4ad6e181 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4dc4f019 ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e8dd264 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x55440b7f ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x564e1aee ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5978f20d ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6052860c ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c8dc6bf ttm_vt_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6db6c3bd ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6e875de9 ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x79855254 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8188c129 ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x83643253 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x836d8fd0 ttm_suspend_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x85d3c277 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x88e3bb57 ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x915f38d9 ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x93e52482 ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x946d9ea3 ttm_write_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x95b117a7 ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d0eb91 ttm_ref_object_add +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9ab7e956 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9d0f18ee ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9fa9ffa6 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa1437865 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa489b7c7 ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa555af0a ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa6eb35ec ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbb5e7a98 ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc4d4618d ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc8aa1885 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcbb62902 ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf49f835 ttm_suspend_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd40851f4 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd5167af7 ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd56aebaf ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeb4c2e6c ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xed5b3eca ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf00695cf ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf40edaaf ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf45fefe3 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf5ee18bc ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf63eb728 ttm_agp_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfb146efd ttm_agp_tt_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfc0c5178 ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfcc2d35d ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfd14eb4f ttm_prime_object_init +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x140bc083 vmbus_sendpacket_ctl +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x4c6ee679 vmbus_sendpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x81612ee5 vmbus_recvpacket +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0e2a6864 sch56xx_read_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0f5877d4 sch56xx_read_virtual_reg16 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x33c2040d sch56xx_watchdog_register +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe5022f95 sch56xx_read_virtual_reg12 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xed1d2a08 sch56xx_write_virtual_reg +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x05fffa79 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x779885ae i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xfaaaeaa2 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x030399d1 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x40128409 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x9ac65b39 amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0a643e16 mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x17f6ebb7 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x2236b189 mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x27958174 mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x2c7bf506 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x30ebf62f mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x373378c7 mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4c9a6d11 mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4fad65b6 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x72737b9b mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x86e43b72 mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb327a66a mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb5a466e3 mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe9c625d7 mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xee235821 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfb049b4d mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xa038f55d st_accel_common_probe +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xce5a1a8b st_accel_common_remove +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x2fbe0a10 iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x7397fae8 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x40176a0e iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x5a69f59e iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x78d4aa8b devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xed02bb57 devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x266be5b6 hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x4125e3c6 hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xa04b0f22 hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc7dd36fb hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xd8f3bb0c hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xe7152334 hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x5b070896 hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x780833da hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xde7f0810 hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xe7c51f7d hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x17b0dced ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x1d077b4e ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x1f2647aa ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2d858448 ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x370784c2 ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x6896ea5f ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc07b42ad ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc71b5c80 ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xfb425ecb ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x309266f9 ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x4d12a23a ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x7bd758cd ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x845f454c ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xf7fa0d5e ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x60232ffd ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x8b044e9b ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xe16c7a46 ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x09084eaa st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0d48a676 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x14de658b st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1ff80aac st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x205a173e st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x388c52da st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x70b66f62 st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x78919e33 st_sensors_get_buffer_element +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb223de64 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc0e654dc st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc4a612ba st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc551ae96 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xcd601005 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd2218664 st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xdb3c85a9 st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe8dfe3cb st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf3921143 st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x9d1b262f st_sensors_match_acpi_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xaf5ba78c st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x9e2011f7 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x7404a808 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x866374de st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/humidity/hts221 0xf37a6cc2 hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x52d08d9a adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x78ad8f0e adis_enable_irq +EXPORT_SYMBOL drivers/iio/industrialio 0x14d4d299 iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x1deabe99 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x20608172 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x21df1062 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x3cd6c23a iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x4c4cf210 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x6cc485e0 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x9d5c563a iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x9f77cb7b iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0xb4117b1b iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0xb417bd7f iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xc2d40d3c iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0xc8d5b86d iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0xc990f815 iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0xd67db27e iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0xde54f89f iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xfb5e0c41 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x3b635648 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x73f6b978 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x97e6029d st_magn_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x9bc03d54 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xbdd85dfb ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x8db92854 st_press_common_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xb7ab23f2 st_press_common_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x049ace30 rdma_addr_find_smac_by_sgid +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1edc4064 rdma_addr_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x70828554 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x76fa6d16 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x9d9cabc5 rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xd85225a2 rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xfd999941 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x034d874a ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0558911e ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x16541be5 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1ab1d6f1 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x26eb1816 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2fa91234 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x422fd70b ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4de0fbc1 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5af18656 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x744e9b00 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x980ad1cd ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x98b3d7fc ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa4eec8c7 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa6086779 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa723ec4b ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc155d728 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd0ec98c3 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd17234a3 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00476345 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0589f87d ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07940f4f ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x093608d7 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b37ec34 ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x139d9eb3 ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14989e2f ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15036971 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21f0abcd ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2337b074 ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25dc7241 ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2947999d ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29f3530d ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c4392a6 ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2dbd23ff ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30b25707 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31dcc1e2 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x354ceb1d ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49546393 ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4bb68ed6 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e9f5927 ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f61e7a7 ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53457448 ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55aa70d3 ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b3e57fa ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d5e59f5 ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ead4dba ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61f55400 ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x631e8073 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64ac5623 ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x651ef289 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67da499a ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68113273 ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6cbbe6e8 ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6cec5d05 ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6dc3a4ce ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e189438 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7227ac53 ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75430c27 ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77086b64 ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7792e6ae ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78034364 ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x798c5ae9 ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7abe7174 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ace6409 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84e97334 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8822e73b ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92e2f4f2 ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9327eb63 ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9591d5d9 ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95d20871 ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c27cf1f ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9da75712 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0a8c3a3 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa152861f ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4512ce9 ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa540ca15 ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa916b280 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaeb8ccb1 ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf754df4 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb51d7b35 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9beac82 ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba49f422 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4058703 ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4b1e15f ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc782a82d ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc97b9bdb ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9e85d26 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc1ece04 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd413e30 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf8f55b8 ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3e7b0d5 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd74e77e5 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd808155e ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdfc6ebcc ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe33bc024 ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7ebcd6e ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea669687 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea66a784 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb07b2bf ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb3faa48 ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc59e272 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfcc652f2 ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x07eaa171 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x0ce17af5 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x17b608eb ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x18bcbb6e ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x21f6d071 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x257860a9 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x286de3c7 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x37462a7a ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x8b5a88ea ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xa2d6c82e ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xa61baaa7 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xaf0dbe5f ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xe0a86a9e ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x01c69b73 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x05f51c4a ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x09bbf38c ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x0e70c182 ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x287d1e73 ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x32274d83 ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x42e5eeca ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x92fe9b13 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x957e9f7e ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xa0232f44 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf334af3d ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2dadd7fa ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb1fc9988 ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1281f501 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x19bfa864 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x60ababf4 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8004b16d iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x937ace73 iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9e1105d1 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa6eae885 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb13463af iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb7b84727 iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc2b6202f iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd38018b6 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd475391c iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd4b61a41 iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xefef3378 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf6d21431 iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x09ceca21 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0d2c7356 rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x150db943 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x20e890e0 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x24fca91a rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x286b2018 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2ccd03ef rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3d87fc5e rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3e888316 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x461d80cd rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5ade6098 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5e39edaa rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x77afd474 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8ba2cdce rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa6f423d7 rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa99e7001 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xba638f52 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbd8b477e rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbdd835ac rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcc850e29 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdd6d1b83 rdma_resolve_route +EXPORT_SYMBOL drivers/input/gameport/gameport 0x10c67ae7 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x21e3ce73 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x30ccb029 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x5b4e5a12 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xc31aa36e __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xd6aca6cd gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0xe23f3fd8 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0xe32845f2 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xef7b9584 gameport_start_polling +EXPORT_SYMBOL drivers/input/input-polldev 0x31c24ee0 input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x42d3c26b devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x928faeb3 input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xb4642c5a input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xeb866ac1 input_register_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0xefbdd52e matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x4f9bccb9 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xaa846a5c ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xf5d8a2be ad714x_probe +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xb0bc60f6 cma3000_init +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/sparse-keymap 0x11e785fb sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0x34eb19eb sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x4b23a3d9 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x6881e19f sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x794bfa0e sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x7c8eadc3 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x6dfc4788 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xcfcd7b95 ad7879_pm_ops +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x0728730e amd_iommu_init_device +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x742b0129 amd_iommu_set_invalid_ppr_cb +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x9687f347 amd_iommu_set_invalidate_ctx_cb +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0xab8cfc9f amd_iommu_free_device +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0xdb014730 amd_iommu_bind_pasid +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0xfc8281da amd_iommu_unbind_pasid +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x020cd237 capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x121606af detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x30433736 capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x329f2918 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x61d144fe capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6fe04e60 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7292ab34 cdebbuf_free +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x72a25a72 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7fdea068 capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd8663c87 capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd8982f54 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xed82f735 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfd552f7a capi_message2str +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0c48b074 b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x30fd8a82 b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x48311bf8 b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x5da31433 b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x690134d8 b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x6cc7f2cd b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x75ccb8df avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x7cfcb840 b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x9507a6d0 b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xa23f5e85 b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xabd1ef35 avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb31c884c b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb8db960d b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xbafb312b b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xedf6d0ed b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x22e8be66 b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x3c742a92 b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x42cc297b b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x7ec53226 t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xb012dbde b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xca3c09a5 b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xe07f3e18 b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xeb80b53b b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xed1d9148 b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0x29562993 b1pcmcia_delcard +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x3f94c34d mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x41fe14a1 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x5aaed705 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x6e79e20d mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xc6874659 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xe538cc8a mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x039ad31b hisax_init_pcmcia +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6fe1ca04 FsmDelTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9f987c85 FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xa1bc94b9 FsmInitTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x0b874902 isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x19c03119 isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x49fcb253 isac_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x6ec2e7cd isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xff446cd3 isacsx_setup +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x8844ff2e register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xa483fb61 isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xb324d00e isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0b869c74 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0efd6b84 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x17f628a5 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x19f47331 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1a2095ba mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1bbf3c7d bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1dc71fdf bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2c61c9f2 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x31532c33 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x326c2709 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6d4f79d5 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x709d1a2a recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7629a835 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7b95f5b2 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa4a5fe86 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa8bad672 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xae1a1919 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcced6b4c mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xceca9e84 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd382fd98 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd7c19d6d mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe2865a98 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf743c839 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/md/bcache/bcache 0x0824bc14 closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0x1f529ce8 bch_bset_build_written_tree +EXPORT_SYMBOL drivers/md/bcache/bcache 0x440b4830 bch_btree_iter_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x44a37d62 bch_btree_iter_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x4528bcfd closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0x5b59b856 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7daccb73 bch_btree_keys_alloc +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7f2a56c0 bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x8833b0e8 bch_btree_keys_free +EXPORT_SYMBOL drivers/md/bcache/bcache 0x8f8fc624 bch_btree_sort_lazy +EXPORT_SYMBOL drivers/md/bcache/bcache 0xa0b4b1b8 closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0xa3c5c702 bch_bset_fix_invalidated_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0xa5df0d33 closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0xca5df778 __bch_bset_search +EXPORT_SYMBOL drivers/md/bcache/bcache 0xce47a6d9 bch_btree_keys_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0xd2813054 bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0xd97c32a1 bch_btree_sort_partial +EXPORT_SYMBOL drivers/md/bcache/bcache 0xdf892351 bch_bkey_try_merge +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up +EXPORT_SYMBOL drivers/md/bcache/bcache 0xec6f33d0 bch_bset_init_next +EXPORT_SYMBOL drivers/md/dm-bufio 0x268682d2 dm_bufio_forget +EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL drivers/md/dm-log 0x47a2656c dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x69a45e26 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xbca9f5ed dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xea10c345 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x553a4d3e dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x6b8ae9bc dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x9b4ee5f5 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xd73a0d8d dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0xed1c020a dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xf4cad9a5 dm_exception_store_create +EXPORT_SYMBOL drivers/md/raid456 0x733247bf raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0df92a91 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1316acae flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3946668e flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x47cedcfa flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7e7cd239 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x807915b0 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x89655650 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9c85a5b9 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xabb81ee2 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xbea183fa flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd77dfcf7 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdd9653f1 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf931d903 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/cx2341x 0x07c52782 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1c04e906 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0x30cb4cd7 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7221e6ca cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0xffedf63e cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x667e8c2f cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x16d9bbd3 tveeprom_read +EXPORT_SYMBOL drivers/media/common/tveeprom 0x2890a967 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08c0ecf2 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0d3c856a dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x12f5425e dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x14fdf0ee dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1c053a2e dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1cd2401a dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2739cfba dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2d836ce7 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x303b2662 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3405dbfc dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4cf3b0d9 dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4ec6c199 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x577d2144 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6560e532 dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x67256b08 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x69481245 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x70d370f4 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a854d9 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7c8740ba dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8bcbbafd dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8bf46765 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8e8a637a dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa582ddd4 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa992e4af dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa9c9c39f dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xacc510c8 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb0ca2500 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb671ff24 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc1be5844 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc2dfe52e dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc7a3740a dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc9af1a47 dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcb77c98d dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd8988b7b dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xeaf47cb5 dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf1d78344 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf5bd7142 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfff5fd61 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0xdbce7d8d af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x1d4bae05 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xc9e9f4cc atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x551928aa au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7a2d6982 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9271d32c au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa0433d85 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa125b91e au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xc8050842 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd424182d au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xde1523ed au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xfbfc5669 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xaddbde90 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xd40e00be bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xf20d3b60 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xc05accfc cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x3d94f7bc cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x2e932a13 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xeccbeace cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x81c89dac cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xf8e9a043 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x5449e53e cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xac9ed56b cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xa4b628b3 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x6f2fc435 cxd2841er_attach_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x7d7df72d cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x973e9d99 cxd2841er_attach_t +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x0a847a6c dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x57cb6549 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x9adb6b14 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xa0fb29b1 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xca1c48a4 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0905215b dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2f31ddfe dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x39afb215 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x536dcb9f dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5d9a3c35 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x63094238 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6e045f58 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x748d3cb8 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8a10a58b dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9cdd0658 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa5cece70 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa98905dd dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc4f98ff9 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdebf1169 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf316c0ec dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x4b89478c dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x00d5809f dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x320ba869 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x38b877a4 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x8ff28fe7 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xe0f2cc88 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xe1d1cf3b dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x36296e7a dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x6425ebc0 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x91c95c0d dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xc3328597 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x382b207b dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x57c18a04 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x30606734 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x7b14074d dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x977659ac dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xab49eedd dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc54315f9 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x446e5ea2 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xf8e14c3c drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x72a1895b drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xbf74968b ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x2c3f48d5 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x6d391224 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x25d9877c horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x6d2a0014 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x0ecc7ed4 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x58e384ab isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x9027612d itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x474bb698 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x504f3677 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xc0f63998 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x6f586b18 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x77881a87 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x42b5c836 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x55b82efe lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x64605f10 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x807bf4d6 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xbc204e02 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x850a3c77 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x160233da m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x49f70a6d m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xcaeb67d6 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x0987ff0c mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x7626133a mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x1a36f3ab mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xc94dfcc2 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x84c34e7e nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xaae0a0d4 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x3f1dbe4b or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x9ce42ac9 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x63a2339f s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x8f1a4f6b s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x4f0a1592 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x8844101c s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xea6b2a2c s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0xe383140d si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x7f0dae23 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x396c088f sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x6ad9ca4e sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x18a2ff7e stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x48077170 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x7a6e2430 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xc339499f stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xc6098a5e stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x7acd5b40 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x69341fb4 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x6a6d27ae stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xd54220f3 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x27da7512 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x532c00b1 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xd333e552 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xd5f40bc8 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xe08b4051 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xf6d2c6ab tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x843c244c tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xb0298c24 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xc9abdc0b tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x018d6852 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x9fb73b3c tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x4f6366ac tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x3e03aede tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x715add18 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x83cdecb1 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x21440b93 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x77dfd3cd ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x366033ff zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x9ed6bf0a zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xba397edd zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x04817d0a flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x1f539527 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x73cd5987 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9097f5d9 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb768d195 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc5bb16cf flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf7c9bc11 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x717010df bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xb4322e8e bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xe3777d56 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xe41670ff bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x1188dfd6 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xba9b854a bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbba5cf77 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3384156c write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x33f308ee dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3e7ecfd4 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x51ba8acb dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x6640aa2d dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x714b2508 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x830084b9 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x98f80877 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xfca4eaa2 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xe7335532 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x046994f6 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x22c82d7d cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xa55d3393 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xaa30977b cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe8861c0a cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x0c36e553 altera_ci_init +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x301b3e67 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x4d8cd7e6 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x4eb4b1f2 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x91970961 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xba648fed cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xbcbc2b68 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe7f47347 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x19084cbf vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x7e32b8bf vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x14265ef6 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x748ac9e5 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x85d8ff49 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xb26e908e cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x548d3cff cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x940e6e25 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xa5bd0977 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xc50e830b cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe1a26df2 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe2500d8a cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe6ed28cd cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0b5be4e1 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1b767031 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1cd5568c cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x25866a27 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x39b64163 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x47b087b5 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4f9088ab cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x50cb49a8 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5e1e3d78 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x71e9a24b cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7c7e0eeb cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x88195e91 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xaf03b166 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc0d47ce5 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc78d277c cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xccba5a93 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe3f0149f cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xec30783a cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf2e2fb0a cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf8856373 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0351b07d ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x10260bec ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3aae0926 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6942d2b8 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6f804688 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7c334ad3 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x86451dd3 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x994bf411 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa52b9de8 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa5732489 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb3a19443 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd4bc653e ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd4e7e6e8 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe818746a ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xee110299 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf0bedab2 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf838a413 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x29080802 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2f995d45 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x31ab9c1b saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4cbfbef0 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5839b6cc saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5938356b saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6ea090a2 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9288ab2f saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa0e4be65 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xeafd4cdc saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xef948845 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xfe0e263a saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x25c54706 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x2346d1c8 videocodec_unregister +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x66d30627 videocodec_detach +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xbb1baafc videocodec_register +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xf75dce9c videocodec_attach +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x23196f2e soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x40067efc soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x50fc382c soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x898bcb93 soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x9f6fa904 soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xa328b7d8 soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xed3676a0 soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc +EXPORT_SYMBOL drivers/media/radio/tea575x 0x0845f9eb snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x2f1864fe snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0x3069de4d snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x3b6e4c8d snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0xadf811fb snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xd36b0a69 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0xfa41584c snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x018718ae lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x189be094 lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x4bc67282 lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x9959fa9d lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xa3e98a21 lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xb155c29b lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xd13ad941 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xe41b2344 lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/rc-core 0x3d942386 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0xc537f9b8 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x1dd1d31a fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x99612c15 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x51f30450 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xa50015fe fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xb834a061 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/max2165 0x83152b18 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x8860b0cc mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0xa43026d6 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x9c7891f3 mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0xc768f15b mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x415c30f3 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0xbec7f271 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0xc2091828 tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x2c2d1658 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0xb3a01145 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x20a2cac5 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xc855bac4 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xe603dbb9 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x2a169825 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x2a759898 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x500000d8 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6c2d0101 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa0752816 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xac99dd5d dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xbab15bc5 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc96a4d8a dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf0cb00c4 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x06c7ad44 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x735c98aa dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x763ae30c dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x769d2283 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x9c4b37e2 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xdce47f15 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xfcf34b93 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x295a4c1d af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x0377cb89 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3a75efef dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x40b01e3d dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5fd6071d dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x614123fb dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x74ecb73f dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8a6729df dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9804f98a dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9fe34623 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xaebef93d dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf446f7ae dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x2cb84661 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xa1958414 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x047ab291 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x09fa073c go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x18fe27d4 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x2603aab8 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4fc43596 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x529a6cc2 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x71c30e80 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe5ce6de2 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xededd131 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x17b56772 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x6a614e31 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x710fc003 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x90a9450b gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x960d8b84 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa8611e27 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xad54ee70 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xfcbec9e5 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xb4039cc4 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xe5d0bbc3 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xf67741cf tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x566728d0 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x7da0291a ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x2ff8ba8d v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xa1c60549 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xed637ba0 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x11a325c3 videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x961fe466 videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xa5515a83 videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xab5dfe07 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xabba257b videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xd4200117 videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x005a69ed vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x83115e54 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x3f00f73e vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x510ff514 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x60acd49f vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x6c1c675c vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x91609b73 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xf8bc38f0 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0xaa31277f vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x03b20e91 v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x05104a91 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x06c7dbfa __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x07e2488c __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x09e7012d v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0bf721a0 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x11bd5b5c v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1c1cf2d9 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28daa37a v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3460b893 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x35423395 __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x38f38e87 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3c0f8da4 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45ad1ef8 video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x46d3f4ea v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x48581651 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x489daed2 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b9ca023 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4c230a2d v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4fa2d7ed v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x61c15f69 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x649aa3fa v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x668e5008 v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6ae9ca28 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6d72c772 v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6f23ec5d v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6fd86f24 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x71cf5d61 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x73f90157 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x74294f56 v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x75738f83 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7575acca v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x77deb2ab v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a5ec39c v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x83b5c284 v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8798d7fc v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8861a6ca v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8b4e5143 v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8b6857b1 v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8dd20a13 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x93b8c4bd v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x97382116 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x977c4810 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x983f66f4 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x99900f1c v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x99d35023 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9ea7d291 v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa0ad9642 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xadac5693 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xae6ba219 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb00cea15 v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb5c5c399 v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbaf9871b v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc496a837 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc6143239 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc7adb6ee v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xca68b182 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcd7167a7 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcfcb2fe2 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdd900651 v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe16eac52 v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeb2461c1 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xee3a78b9 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xef32d304 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf00bd689 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf6e28373 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf7cc6cdf v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xff77a091 video_unregister_device +EXPORT_SYMBOL drivers/memstick/core/memstick 0x0d5c824d memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x15e7bddb memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d1fcabf memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x64f56710 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6b59d0d8 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x862fc3e7 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x9251ae3d memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa66ad9ca memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xaaf3670f memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xbd0bc0c4 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0xcfbb692b memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd8085878 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc07e67e memstick_init_req +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x08b7b9b6 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x08f16213 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0fd4d507 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x133dd807 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x147fb6d2 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x217b66df mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x21e38c33 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2c935d87 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2fa0aa9c mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3b4a9983 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3b8fb1ac mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x409eb581 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x47fb1a20 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6dacb440 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6ed59d79 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6f986ea1 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x84b35d1d mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x84d55f72 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8756417a mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8910103c mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8a648ada mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x996b1561 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9b8698c0 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xacd2ebf3 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb2fea11c mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd20b6302 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe02af561 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf0274cfb mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfaf8c7f0 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x040348f2 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x260102eb mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x35cbd929 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x36346388 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x36a59ba8 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3a9c97b6 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x473c39d2 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x580dcf66 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6d379535 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7ee9673b mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x83ac723d mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa079d3a9 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb4cc11d8 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb8316aa8 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc075bcec mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc1aee7e6 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc568209f mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xca48176c mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcbbb9dad mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcf74eec2 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd29e22b9 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd3758711 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdc90de4a mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe06df9e7 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfaca692f mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfd146cf9 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfeca3640 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/mfd/cros_ec 0x74508695 cros_ec_suspend +EXPORT_SYMBOL drivers/mfd/cros_ec 0xb89251f2 cros_ec_resume +EXPORT_SYMBOL drivers/mfd/cros_ec 0xb97e2230 cros_ec_register +EXPORT_SYMBOL drivers/mfd/cros_ec 0xf376ce36 cros_ec_remove +EXPORT_SYMBOL drivers/mfd/dln2 0xd05d98bf dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xf12f3e9d dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xfc61b5d3 dln2_transfer +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xb74273cd pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xd9ab9232 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0fbc1392 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x26ecca58 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2ab02f5f mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x306a1977 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x560c69e4 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb5ead0ec mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb9b98eb3 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc9120204 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xdead27cd mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf51339d1 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfbf5c8a5 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 +EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 +EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib +EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led +EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw +EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x27c4cd31 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x8b94360a wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x2fbdef2b wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x7d71acbd wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x82e5569f wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xb0dfed06 wm8958_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xb52c7a44 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xce4da626 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x13090222 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x0a496c44 c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0x30249205 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/ioc4 0xe3c1bdac ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0xf52e7864 ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/mei/mei 0x5eddbbc9 __tracepoint_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xdd1b8214 __tracepoint_mei_reg_write +EXPORT_SYMBOL drivers/misc/tifm_core 0x35272a2e tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x38b4922b tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x3f77ca8f tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x627eadd8 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0xa8c2ec46 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0xac889e31 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xb639d902 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xc0e390f5 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xc27d1025 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xcf4c6b01 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xe291baa3 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xf6844b71 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xfce0411a tifm_add_adapter +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0x2313d7e0 mmc_cleanup_queue +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x228ed68a cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x4406d39c cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x6f10f53a cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc997cc9b cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xce3ecc9f cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xdb87daf0 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xdcc07f6a cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x0b94a01b map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x27eda614 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x5824e7b3 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xd0617ac2 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xcf40b4ee mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xee59efe0 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xd0244026 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x15c39273 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0xa5119260 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/nand/denali 0x14b5cd7e denali_remove +EXPORT_SYMBOL drivers/mtd/nand/denali 0x37b08685 denali_init +EXPORT_SYMBOL drivers/mtd/nand/nand 0x070152e0 nand_scan_bbt +EXPORT_SYMBOL drivers/mtd/nand/nand 0x1c41c5d6 nand_scan +EXPORT_SYMBOL drivers/mtd/nand/nand 0x557afbc8 nand_lock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8a9b37d7 nand_scan_ident +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/nand 0xc2520c6f nand_unlock +EXPORT_SYMBOL drivers/mtd/nand/nand 0xcc099dcf nand_scan_tail +EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x2c99b97d nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xb2f70374 nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xee4f0e81 nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x7092526f nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xc2d0e7ba nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x8cfcf75c nand_flash_ids +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x29740c3d onenand_default_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x7a25fe5e onenand_scan_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xbe261fd9 flexonenand_region +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xd2627178 onenand_addr +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0cceb7c4 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1db5c089 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3ed18f57 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4f7915b2 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8e1cf6b5 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbed501a1 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xed01f5ef arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf9cb3ff7 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfbbc9ed9 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfbee8a7d alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x447da3c8 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xf56f5878 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xf987d3b5 com20020_found +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3e6d7b2d ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4c5be829 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x81c6fb96 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8d1e4f52 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9d255c5c ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa383a804 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xaf5dadb7 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xca699f97 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xca9061d2 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd69cb6b1 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0x2e93ccb3 bnx2x_schedule_sp_rtnl +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xa047438d cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x0d8be5fd bgx_lmac_rx_tx_enable +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x285bde59 bgx_get_rx_stats +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x42264715 bgx_get_lmac_count +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x6dc1648d bgx_get_lmac_mac +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc397f585 bgx_lmac_internal_loopback +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc82be691 bgx_get_map +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xe48ca42a bgx_get_tx_stats +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf101d1b2 bgx_get_lmac_link_state +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf9508980 bgx_set_lmac_mac +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x190a29cc cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x27f53fee t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3e8045ae cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x45dd7939 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x484b79db cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x582ad6f0 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5ca10516 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7a1071b9 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x80e1b4aa cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8ae4be30 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x92e9f2f7 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa90f04fb t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc370f0d4 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc7b36980 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd93eb89a t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdef6cef6 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x13c70f61 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x21f2cf9a cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3273364c cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x35d51ca9 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4070e237 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x40a1b8be cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4c8d7411 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50a30000 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x57707dfc cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5991bf8c cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6d64795a cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x70ec8029 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7153a84d cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x822b3de5 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8be50142 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9e08269b cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa4bb946e cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaed9933b cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb7aba21c cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbb485cc2 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc446804d cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc58d2556 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcfd84c21 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdb6e26a6 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe040c701 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe3cc0de5 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe56135f1 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xeaab4214 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xebcc087b cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xedad6185 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xef29e5ab cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfdef5342 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfdfb585c cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfe333f6e cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x2351f800 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x56e01ac6 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x5f927497 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x61fa727d vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x90fa1692 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd0b06fae vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x02df08b9 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x75e7470b be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a9c1d2c get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18410e84 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19cac4be mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c6c991f mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3113fb3a mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36a63f84 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x487151a0 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ae06267 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b18c028 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4cd6274c mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x544bd120 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5dbc9982 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64097389 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c35142d mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d26ca71 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d5c91e6 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f8cf8be mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7454d83f mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78315111 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79631422 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b25b17e mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x850a63aa mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x913bd898 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95faad6a mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ee8bcf5 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f23cb42 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb16cbed5 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb53263a3 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb75b88d2 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbbffff11 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbef96d43 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8016f7e mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcffbad70 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1b6fc1b mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1ef3044 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe110945a mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe21d599c mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec33729a mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04af2850 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x077ffe6e mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0857aabd mlx5_get_flow_table_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0beb1d8c mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb7287e mlx5_del_flow_table_entry +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x287aa4fd mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x298c44e4 mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x346b1d83 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x373873e0 mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3851e1d4 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f76e8c2 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48f7074c mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bcf9316 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c87c186 mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6088598c mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6163a27b mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x686c88ec mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73639d5f mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x791be54f mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80eaa91d mlx5_modify_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x846633d8 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a865d5e mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9643a051 mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b714979 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3a108ed mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa481be12 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8261824 mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9aa93e6 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbdb5cedb mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe31a468 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc184eb3f mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc34e5bf2 mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd86c968f mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd923e6b5 mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda85ab5c mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4012a04 mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6af33e4 mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6e842d1 mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeec0b5d8 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf37a24d1 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7df4b45 mlx5_query_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc728a49 mlx5_add_flow_table_entry +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0b2f66fd mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2d07a992 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x39a7d6d9 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x422ddb2c mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x72831829 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80205bcf mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9669e9bf mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcf30418a mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee8e0771 mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x655d32f3 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa209d1af qed_get_protocol_version +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x07bcb275 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x9e03fa05 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xbdaca126 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xdb6ee6eb hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xf29faa05 hdlcdrv_register +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x330a3cf7 sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x488d51a6 sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x4c0974c5 sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x9b6f518c irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xacd63abe sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xbecea234 sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xc38383ec irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xd2ab345f sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xe4833a00 sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xec72795e sirdev_write_complete +EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mii 0x120fb501 mii_check_link +EXPORT_SYMBOL drivers/net/mii 0x4151cc02 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0x6276769d generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x8ead6df4 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x9a903495 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0xc741894b mii_check_media +EXPORT_SYMBOL drivers/net/mii 0xd80ddc70 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0xfc178949 mii_link_ok +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x87e372a5 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xbdc6b6c2 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x62968f3e cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0xa2c763f7 cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x2471b9a7 xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x6f67c811 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xa5fa2818 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/phy/vitesse 0x027a9618 vsc824x_add_skew +EXPORT_SYMBOL drivers/net/ppp/pppox 0x0f90965e pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x50c7e573 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xd86ef864 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x18e2d918 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x09a40efb team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x3eb09843 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x4125afee team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x54c3bd85 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x6b096ea9 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x862966cc team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x9eb2ca72 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0xbbad1799 team_options_unregister +EXPORT_SYMBOL drivers/net/usb/usbnet 0x01429bd8 cdc_parse_cdc_header +EXPORT_SYMBOL drivers/net/usb/usbnet 0x7bc870d5 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0x7f046ced usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xfe52e04c usbnet_manage_power +EXPORT_SYMBOL drivers/net/wan/hdlc 0x04d78cc1 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x09c2e3c7 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x1aa908e0 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x54452677 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x842a8f4f hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x9f5a6488 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb632579c register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xba813608 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xc67ceb24 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0xc89c6341 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf595f571 hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x65085a12 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/airo 0x5c8f5b8c init_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0xcd50531f reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0xd79f9ce4 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x10d5d03e ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x14ae9b3f ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4da00d30 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x607712c3 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6b8cc5bd ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9acaa33d ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb3bb3801 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb9b24c03 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd36f9d45 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xda443bf6 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xeebfbb0d ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf4861b1b ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2534dd99 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x292e9988 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x694f015d ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x705b899c ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9e3d8bba ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9f4c5866 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa00c83a0 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa9d1c1b5 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc1061a7d ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc56b128a ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc83f79b5 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcce43c71 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd2997b6e ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd8270662 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xec2c8194 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x160adfdb ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x184e074b ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x34162e5f ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x41a8b970 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x43d13790 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5424eb72 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x94143075 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xbe7400df ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc98873e4 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xccc93e41 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xffe5d06f ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x069fa112 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x169100f0 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1dcd2648 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2b203cad ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x382605f7 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x39bbee5d ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x39e4a60e ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x527890d8 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x541b555c ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x56574730 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5cad00ea ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x710726dd ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7d374b2e ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x81fb72e7 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8a5e30d7 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x92a38ace ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9ac62245 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9cf10301 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc37fb198 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd043b022 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe2892542 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe685e2db ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xeadb76e9 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x020e3396 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05980fc3 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x07145f78 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x09875187 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e727401 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x150e2955 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x18a39412 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x26985f2c ath9k_hw_request_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ce9449c ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2dc6efb4 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f8510f2 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x30d0054f ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x31e7a839 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x339daf37 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x34830c74 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x36100d83 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x362185ee ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3bfa593e ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d70a4a1 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x40728236 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x41177ecf ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x41e3e445 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x436faa16 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4fc4d1c8 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x50770dd2 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5383fdeb ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x587af694 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5888fab0 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x58920c12 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x58ab6433 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x59f906dd ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5f3d47c5 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6278d177 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x65af55d7 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ae1d455 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f100633 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x70d330f4 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x70fe7a38 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x71c8e4e6 ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x775eaf6f ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x79e06df6 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ae6aa64 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7beefc76 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d044a12 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x804b33c9 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81db16ea ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81eee77a ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x83cd9f5a ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x86eac350 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x89606ec4 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c248c79 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8fa55db3 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8ff5bdc2 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9586e043 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x967b4ffa ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x984d400e ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98620681 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x99f5f36a ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a6d43cb ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a8e05b9 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ab07aab ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ddd261a ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f0069bc ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f116297 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa15b3485 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa1cd53c2 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa23f6c05 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa2c36686 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa513de98 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa5e0354e ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7d96e72 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa9722a91 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xab43968d ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae63438a ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf6bf0ff ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf97077d ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xafe686a0 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb06114a9 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2544090 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb57c693d ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbbdcba68 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbbe437ab ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc190f2a1 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc2219734 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc8c85c91 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc908a489 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd34825d ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1083c44 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1f59cf4 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd2b0906c ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4386a6d ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6f303bc ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd7ef3818 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf0a281d ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0b54664 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe43a8a68 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe5a9c3f6 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xea6909f4 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee6c2d9c ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0103207 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf240bfbc ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3ee78d7 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd7dc929 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfdc4aea6 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff5fb69b ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/atmel 0x462146b6 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0xa1659ce5 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel 0xbb359826 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x044aa83a brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x0da7a2ca brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3e8f8dd9 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x4b20720c brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x6367f329 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x6fcc7148 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x757fca3b brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x8cc6751d brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x8cf0ab19 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x977f81eb brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xb6bba6fc brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xba33bf78 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xde54c086 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x08dc3538 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0fb62790 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x150ee004 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1723ac32 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x229beaf3 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x25b739b9 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x275b5cda hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2a1e12ff hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x30bb90f0 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x36708de6 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3d3bec45 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x428e1a3d hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5d92384e hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x667e5793 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x75ccc1c3 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x76292e3a hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x803fadcb hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x80c4fa25 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x85280fac prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x91aa786c hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xac178745 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xac2d2b7d hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbcc843b1 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc6b590ed hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xcf2ad0a8 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xeacd11ee hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x03def3bd libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x313b2901 libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x327a8f34 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x38945e06 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x3ec8b263 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4cc46fcf libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4d2ad8e8 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4e8d1de3 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x58e6eadc libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x61577d75 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x714a636e libipw_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7817e42e libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x9ecf20c4 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa03169a7 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa1db6d35 free_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa66b3573 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb710b0df libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xbfa58beb libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf1e6d4db libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xfcf4ea17 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xff2a8bb0 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x03446cd3 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x06d70f52 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0ab5d250 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0ad33945 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0c1f8d2e il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0d5ef4c3 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0fded2a1 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x127e530e il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x132b622b il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x13a86e70 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x14e4b7fd il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1dbbf380 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1df452fe il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x204eee74 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x21eb0b0d il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x221c3e20 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2f179d6b il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x309a359d il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x382cce69 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3c8e25aa il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3eeed93e il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3f850d38 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x42bb44a3 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x46ba49c3 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4ffe5841 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x509146c4 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x516d1ae8 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x51a75805 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x57079395 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5715891c il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5b959348 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6356bb1c il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6b5c32c4 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6fe795b7 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x715fea25 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x71c1c423 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x73b87042 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x73ea6ac6 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x76d56653 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x775678bc il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7952a0da il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7b665ab6 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7dbdf6e9 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7fa0ddac il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x84455c4d il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x86112de9 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x86670a29 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x86faa4a8 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x921dcbad il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x94083984 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9784de0f il_update_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9a59e8cb il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9e7777bb il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9ed9c9f1 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa0ff668a il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa421a994 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa7618dfc il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb0032a06 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb3436dff il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb3d35a35 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb87e1293 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb9e239de il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbbe3e3a1 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbdc9527b il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbe7e8789 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc4ef9d20 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc83bef0b il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc8f5f441 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc9bdce17 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc9cae199 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcd8ae4c6 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xceeb69ba il_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcefb2e18 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcf105b00 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd215edad il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd3864d2a il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd547797c il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd6633c4c il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdb1ebb9d _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdd2b41b4 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe08c1f4d il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe18889d0 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe3b6fa2f il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe48116cd il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe563a6bb il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xec394b82 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf2cb3197 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf4a5c038 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf7b7a8e5 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfa89f6e7 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfb7733ef il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfcfacaf5 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfd36944a il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfed55cdd il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfef42857 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xff19c1b0 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xff4940f4 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xff5e5a3d il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x1b06ce78 __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x2447a6ab __tracepoint_iwlwifi_dev_iowrite8 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x314a20a8 __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x5e9c24ff __tracepoint_iwlwifi_dev_ucode_error +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x8c8ab242 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x9a1b1df9 __tracepoint_iwlwifi_dev_ioread32 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xdced6db1 __tracepoint_iwlwifi_dev_iowrite32 +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x02cf7fcf hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x1a73d9f4 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x1fbd604c __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x3d5134c5 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x4d5b2135 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x52d75d27 orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x6a625c82 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x6d0c554b orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xa8a1eedd orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xad7bd015 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xafd8f4ea orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xbb026f84 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc471513b orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xcf7f70c5 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xf763f707 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xfdc906a7 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffd08257 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x8d593a89 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0b922e31 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x14250d32 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x178fa9fd rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1b0a1dd3 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x26334fba rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x29d47c04 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2b9439c5 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2ebefdd4 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2f12410f _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x39f30666 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3d3f2d5e rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3d78691e rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x43241bc7 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x43733944 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x44841059 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4797d2e6 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x51cb15fa rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x52e5d2e0 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5301021c _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x58a5fe66 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5b5bfa23 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5f61d66b rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6e937848 _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6f5ead8f rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7bdebef7 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x84025750 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x849511bf rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x91dd1f09 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa6ec7308 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa9e42dba rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaf41bcac _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb8fc9fdd rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbaba3611 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbcd01d24 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xced964be rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdd93b5d7 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdf371eb4 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xee5ba461 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeee886d7 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf165cc64 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf70fa4fd _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x09ffea9e rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x4a864137 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xcc524d95 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xfe93e6fc rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x05634a7c rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x0a620e8b rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x17aab717 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xd77719f4 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0459d5f0 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x13917a2b rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x170e91c2 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1ad2098b rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1e335cf2 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2004504d rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x21a113df rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3845b71c rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4ed59840 rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x53c97a3a rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x58904535 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6113d371 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6301acd8 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x65b47907 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6ccc3bd0 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7de4d7ad rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7f149dbc efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x874ac125 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8f42638a rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8fb685a2 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa15ab3c4 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa4aaf047 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd668a9ed efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdd85ea71 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf1835ba7 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf202434e rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf38c88b6 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf9e0326f efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x6a151732 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xb9abc530 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xd7dbdcc3 wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xd84e44a6 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x853fc756 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xa976ab50 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xf8baddb1 fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/microread/microread 0x6bca998c microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0xa9eb440c microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x1759738f nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x9f11defc nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xe13af357 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x70a1ba1a pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x7e503b29 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x1856dd75 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xb369f9b0 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xe51595dc s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x20d1888e ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x270450b1 st_nci_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5d88a499 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x6c66750a ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7d1344eb ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x86d38660 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x97c4f0ea st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9d15b7bb st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc51857c4 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd6fe5419 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf6a9b662 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x05f7a021 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0ff55bea st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1caa025b st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x319df548 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4044a03a st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4f1640f0 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6123b505 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x723546e4 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7edbb323 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x912af6d2 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9eb62070 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb0ccd21c st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbad04f6e st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcab1d3e2 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd1b183a1 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdaeb1c2d st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdeaebdab st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe0e8aab3 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/ntb/ntb 0x013aa9d5 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x28ad5ee1 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x340d44a2 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x90646885 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x91353a8e ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x9f4101d0 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0xac2986dc ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0xecefe114 ntb_db_event +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xdde394de nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xf70f83e9 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0xadbe335e devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x01a72d25 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x0301a374 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x0e51db8f parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x10164f93 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x18256b64 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x1f8f1cc2 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x3fa3505d parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x54f171d5 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x62aaae14 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x63174987 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x63ecd552 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x6c56cb7b parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x709827d8 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x7d846b48 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x7e63baa7 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x920b9c9c parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x967bca51 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x9d0f30b7 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xad273b80 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0xb2ef627f parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xb3926367 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0xb86d3f1a parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xba5f87ad parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xbe9296a8 parport_release +EXPORT_SYMBOL drivers/parport/parport 0xc09e58c1 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xd036d554 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0xda180bfb parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0xdc7a452a parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0xe3152bec parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xe7b93e8f parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xeb4e1f1d parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xfc4f56e2 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport_pc 0x60a647d7 parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xf65a7be8 parport_pc_unregister_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x050b4629 pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0b798d80 pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2d963c1c pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4d0de0c7 pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4fdde982 pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5668fc0e pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x61ce1e70 pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x69a099d1 pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6b106dc0 pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x853881ec pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x85d23b76 __pcmcia_request_exclusive_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x876c6fbf pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x984b6cdb pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x999f6281 pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9f8ece53 pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb8212998 pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xda0f3a62 pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xef1ad1bb pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf0e5e243 pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x33359016 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x468b072d pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x47cab305 pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x6429ffc7 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x64c44c09 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x75a6fb60 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x81d537b7 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa058800d pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xde4ad6d9 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xde91b0ad pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf78254a7 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x93fd1886 pccard_static_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xb59601ea pccard_nonstatic_ops +EXPORT_SYMBOL drivers/platform/x86/intel_ips 0xf97d7d0e i915_bpo_enabled +EXPORT_SYMBOL drivers/platform/x86/intel_punit_ipc 0x3a0b563a intel_punit_ipc_simple_command +EXPORT_SYMBOL drivers/platform/x86/sony-laptop 0x5bb1e117 sony_pic_camera_command +EXPORT_SYMBOL drivers/pps/pps_core 0x19f6c09e pps_lookup_dev +EXPORT_SYMBOL drivers/pps/pps_core 0x1b3f158a pps_unregister_source +EXPORT_SYMBOL drivers/pps/pps_core 0xc307f600 pps_register_source +EXPORT_SYMBOL drivers/pps/pps_core 0xd1b9b420 pps_event +EXPORT_SYMBOL drivers/ptp/ptp 0x151232c5 ptp_clock_event +EXPORT_SYMBOL drivers/ptp/ptp 0x5e6681c8 ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp 0x80073b66 ptp_clock_register +EXPORT_SYMBOL drivers/ptp/ptp 0x8fa77f2d ptp_clock_index +EXPORT_SYMBOL drivers/ptp/ptp 0xd5698174 ptp_clock_unregister +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x30bc43db rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x3d975320 rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x50cfb950 rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x53115109 rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x57267467 rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x77a3d35a rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x938fd89d rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xbff996f3 rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xcbf8af76 rproc_boot +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xe69af76e rproc_get_by_phandle +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x538bf710 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x026825b4 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x9d758a9b scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xae07cc82 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xfabe39ac scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x01a8063a fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0ddff693 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3f4bc66f fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x50120119 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8e5ff614 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9ab89312 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9fdd3d17 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xad949815 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xba281b91 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd0f2fd72 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe73b25ee fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfa25e47d fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0294b227 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x07073e45 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x093df805 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x12e4ff96 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x13c074f4 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1870e17a fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x18e7fbe6 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1cef6f9e fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2146aea5 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x21b53309 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27a8029a fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2d3254d1 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x349e9468 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36239523 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3adee925 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3bcf5157 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x42cc6cd6 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x44fc00ee fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x461a8e1d fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4724e26b fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5236c381 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5303afb0 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ccc441b _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x64d61f87 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x64eaa80a libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x67c7564a fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x702c3d12 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7eeb3cb9 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fc068d8 fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x87306420 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x892170d2 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8edd2620 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8ef2feb2 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9910ec72 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9da78331 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa9ddb25b fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbf4c89d5 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc049a99f fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc1be63cc fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc2d88b6a fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc6b45c40 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xca5cf18e fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcebab9b8 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd2e3b3e4 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdce9c573 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf43b63a7 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf92353e8 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf9f8977a fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfafb2852 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfba062fc fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x28f5c01f sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x388432af sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8aa95d8d sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xf3795e7d sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x0c110f9d mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0504378c osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1388f248 osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1dce5fbe osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x225c5d63 osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x228843d4 osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2812aeef osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2c50ca91 osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3052c669 osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x325c2729 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3299996a osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x34c591db osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x386a5087 osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3a8bc536 osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3febab28 osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x47a27535 osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5c2b0d48 osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x65cebae1 osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6ec606f7 osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7219ea5b osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x772c5c97 osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7e2eb5d2 osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x87e98b21 osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8e904df8 osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9372695f osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x95308484 osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xab9d9339 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb2cbccac osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb473a13a osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc9101912 osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdab048b3 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xde0ef9e4 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe2d2709d osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe43bb283 osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe811490d osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe9700a0d osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfd20e20a osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/osd 0x06a6c9ee osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0x23d1941b osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x819010cb osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0xbbffdab7 osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0xbd8cdd49 osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0xfb830749 osduld_device_same +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x01ee56f4 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x18a75903 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1b9611e5 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3fc88410 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4eb8889a qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x65286ced qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7f1656dd qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8724600e qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb8669044 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb8c6425e qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd0b44bb6 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfe8a9001 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3c93d279 qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x7101378d qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x79a2b570 qlogicfas408_bus_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x7fc17c32 qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xa614eb41 qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf23fd8bc qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup +EXPORT_SYMBOL drivers/scsi/raid_class 0x1658d595 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0x53af71a9 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0x785d4823 raid_class_release +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x075a99e4 scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x266cfd3e fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x67360b60 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x69061f3e fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7022a9e5 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x78875b40 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x88bcb0aa fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x958e572e fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xaaa73b56 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd675d665 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe52366aa fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe9268924 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xff6e7a32 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x08339db6 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1559196e sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x25eb1f54 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x28a6688c sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x293c78f0 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3391f4b8 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x39abee32 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x46a66836 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5107444f sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x599d8cb7 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x62fdc395 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7203728e sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7d0e3d5b sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7d1ecc90 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x883533ec sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x89be810e sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8a0c8bc5 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9152ab74 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x92bac403 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x93a4cc5c sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xba802c47 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc34e079e sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd8226e0a sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd93480b2 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe0999a85 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe9618fc9 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xea9be036 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf35ad9da sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf9e5b095 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x324b370c spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x4be3525f spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7b6a7219 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x95ce1480 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xd00105f6 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x441e3c8c srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x74ae80b6 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xb5090b47 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xf3d96d7f srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x5445a31c ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x6f5283e8 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x985be339 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xbd1276cb ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xe3974140 ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xe88f4dda ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xf6dabccc ufshcd_system_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x0c93ea6c ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x0f4c05f1 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x17ff179c ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x217c78dc ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x55eba0be ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x5c1235f2 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x6049b68f ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x67a9835e ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x6db739db ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x8a09f531 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xa7826c4d ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xaafd7047 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0xb0f01c5b __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xc338baec ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0xc9c9b673 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xd1ae1ff5 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xe9b25961 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xf055874b ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xfa8121ba ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0xfd6f7b52 ssb_dma_translation +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x02d4a052 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0f7b9ccf fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1622cd75 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x17de602d fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1d866825 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1fb289d2 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x398a043b fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x57f41697 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5a3bc127 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6c0707c0 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6fd59c1a fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x713f127e fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x765c7a9f fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x77d6dd52 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7e0cc54a fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x870eac4d fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x88bd9162 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x90acdd84 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa81b69fa fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc59d6276 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc7fb6d0c fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xceeacc4b fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe886b0da fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfd13ae72 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xa8812f37 fwtty_port_put +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xddcd31df fwtty_port_get +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x31d5e958 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x41716ff9 hmc5843_common_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xb676dd06 hmc5843_common_remove +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xd91929b9 hmc5843_common_resume +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xf74c94cd hmc5843_common_suspend +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x339fb6d9 ade7854_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xf807412f ade7854_remove +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0xb37ada18 cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x9f196cc7 most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0640d050 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x18d3faa0 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x25dea4e4 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2e5c7e3e rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x318b020c rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x34f6144f free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3b6e26ce rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3c8f1b60 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3d79d1a9 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x41088434 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x41d27435 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x430fd365 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4df9d7f4 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x506bb3a8 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5301bfaf Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x56cf386b rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5851e529 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5c6914e0 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6af900a4 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6f0a3c65 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x777da036 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7ee491db rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x87e8587f rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x88f19fb0 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8a304a34 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8a7767cc rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8b0a94cf rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8c186dce rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8db393a0 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8e8bf61b rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9008f375 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x92dd2c4a rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x94c95006 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9a784333 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9e1b345b notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9eae5e4d rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa0fb5ad7 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc0aa5b39 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc11beb73 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc55bbcb4 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc58e3ad0 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcd9eccf2 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd0caf93b rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd639d027 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd7c00727 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe12b31ae rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe8a3c55a rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeca356e9 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xed559c20 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfb12492e rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x02804a64 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x046c098c ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x04d68624 DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0996bc36 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x099c394a ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f099f61 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x13b0fb5b ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1513bf12 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d7a7e94 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1db0319b ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1ecf06a1 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2b00c049 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2c831c95 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2d24704e ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x39c23790 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3cb6f094 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x46e71977 Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x47202b39 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4a7fd9dd ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4d8da2cf ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4dfc0501 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5d6f0dd6 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61ea895d ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6ac7bb85 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6d06bd16 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x73c6ccc5 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x746ca686 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x76f878fc ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x79481750 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x80ec64d6 ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x85ee9054 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8c4eb823 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8c996f2a IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8e4b3f14 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8e552713 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x913b0a5c Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x93bbae07 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9522b9f7 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9cf65eca Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9dc493c1 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xab453afc ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xadcaf3b3 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb9359e81 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xba9dab90 DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbd779044 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc3d80c46 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcc905ffc ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf15ccfe ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd84a8715 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdef50380 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe4951bf2 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe506f000 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe8c35fea ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xec0fddfc ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xff4a4853 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/unisys/visorbus/visorbus 0x515b800f visorbus_get_device_by_id +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x06c02d3e iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x120b7831 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x129f0a7e iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4450b163 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x49df144e iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x502cddae iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x55bb9418 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x589c1a1d iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5e878f5c iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x65a66337 iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7932c1e1 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7e1b99cd iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8491a649 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9949ec61 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa7791b78 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb5ce0e9f iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb60b5314 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xba94c93d iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcd0a1413 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd176a41f iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd35e5470 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd3b47d2b iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdb753246 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe1bf4b0c iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe8fa4118 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe99925d1 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xebf6b3da iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf842d2e7 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x00657bc5 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x018a6fe2 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x06d427a8 target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x07754c4c transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x07ae75eb core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x0a836a22 target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x0e23d481 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x1526bb54 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x1a408ac4 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x1dbd836d transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x1e0c7cc8 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x21668e97 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x24bd4ea8 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x2c90803d target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x2f48796f transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x30f45f88 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x3331ba9a target_put_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x342c080c target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x34e4010e target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x3fb7e64c core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x40fb5a55 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x43553d6d transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x47eab3da target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x48e4d944 transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x4960f0fd sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x49abecf0 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x4fc2b322 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x5285df96 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x5476dbe1 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x56695346 target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0x59fca58e target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0x5a26f9c3 target_get_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x5a4ce54d spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x5f675550 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x610c5483 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x65eea97e transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6d7f1e18 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x6e8aeeb5 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x6efb327f core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x7210ac60 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x75b9aac9 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x80699a7a transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x83a485ad transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x8a1af3e1 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x8d2c2016 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x9166fc7b sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x96db3e86 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x97055c9a target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x97c1e625 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x99aa2fe2 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x9d6188f0 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa29ddef1 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xa77028e2 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xb253c58c target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xb76747a3 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xb788cdaf __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xb8b43087 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xbe3a8ed8 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xc2627d32 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xca8d633c transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0xd839f36d sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0xd953f597 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xda3a1678 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xe9451905 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0xeb4bd1a9 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xefa0d983 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0xefe80a91 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf66a0f8b target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xfa3e3bea core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x1887763e acpi_thermal_rel_misc_device_add +EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x5007fc2c acpi_parse_art +EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x86c998e6 acpi_thermal_rel_misc_device_remove +EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0xdf707fab acpi_parse_trt +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x7967e17a usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x7a3aa5c7 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x9e6d9864 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1c3d20c0 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x23d0ad59 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x47cc5318 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5bbecea3 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x691e8797 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x98e55df4 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb0eab020 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc01244a0 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc6c894d7 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xdb08bd38 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe54099c1 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xffe0f906 usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x99ca4fac usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xcfd6a15e usb_serial_resume +EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user +EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x3c71c418 vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0x5fedea44 vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user +EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/video/backlight/lcd 0x44fe5fee lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x778f457e devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x8b9d4cbf lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xc65075a4 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x2594a4d2 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ba857a0 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x79010f81 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x93ed8a7a svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xaafb6ae8 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe8bb6861 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe8bd6727 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x4c4f5966 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xf9b30ccf sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x44986dbc sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0e8fb484 cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xa358eac0 mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x604cc71f matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x86d41cec g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x9b6c3ebc matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x8e6cead5 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x92d8cd45 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xaabab231 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xacc057e6 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xaef712bc matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xdd38e78a matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x22c182bf matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x2b439674 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x2e2e6f26 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xf0932a8a matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x1f17eca6 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xd9952f62 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x4e089be6 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xa69afda5 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xbac5c7e0 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xc5a94237 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcc8c01be matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x296f0c97 mb862xxfb_init_accel +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x41315461 w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x5aaff41d w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xc98aa4ed w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xe2845823 w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x47cfb34c w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x59964d77 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x55d0ceea w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x714b01f7 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x1f7410d3 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x2972c17e w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0x7560172a w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x97bdcefb w1_remove_master_device +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x04e133fc iTCO_vendor_check_noreboot_on +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xa78bd894 iTCO_vendor_pre_set_heartbeat +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xb5f20875 iTCO_vendor_pre_keepalive +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xc4f657bf iTCO_vendor_pre_stop +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xdc6effc9 iTCO_vendor_pre_start +EXPORT_SYMBOL fs/configfs/configfs 0x0060b3a6 configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0x0a9548e4 configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x1567df3f configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0x18860b43 configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x2f394b2c configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0x3cd678b8 config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x5b2d7994 config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0x70ba3ceb config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0x7ed3e100 configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x805598d9 config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0xa355c678 configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0xb7fd018f config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0xd01cbf55 config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0xd6989fbe configfs_unregister_default_group +EXPORT_SYMBOL fs/configfs/configfs 0xe42b19f4 config_group_find_item +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x44dd8038 ore_read +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x4b0e7cfe ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0x4d4f838c ore_create +EXPORT_SYMBOL fs/exofs/libore 0x7b831320 ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0x90ce1252 ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xa7259ca0 ore_write +EXPORT_SYMBOL fs/exofs/libore 0xbe50522b extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0xdcaefe53 ore_remove +EXPORT_SYMBOL fs/exofs/libore 0xe4df6077 ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0xfb1ffe7e ore_truncate +EXPORT_SYMBOL fs/fscache/fscache 0x0561534e __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x07fd6762 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x100789ab __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x1bb09f26 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x26eb2a86 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x270c7b2c __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x27c838e0 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x28954659 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x2b0c4a5a __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x3054e8a2 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x32cc2af8 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x3351496e __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x3615090e __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x39beff38 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x3f4e2ec7 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x46e3bb8e fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x4bfc3c53 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x6475f2ae fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x65a456bb fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x6750697f __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x6d77ad87 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x70f12dc0 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x73723678 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x743ba2de fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x7612299a fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x8c03888b __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x9bdf323e fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0xa07fa567 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xa90511c6 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xac9f469a __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xb0500948 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0xb51a85ca fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0xb5c284fc __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0xb5ec55b4 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xbac6f7f3 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0xc9e3041c fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0xcc181d91 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0xd44f3e68 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0xf2537b91 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0xfb831951 __fscache_check_consistency +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x29e8d935 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x738b9fd0 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x7d16f2f5 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xa27e1691 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xea61ecf0 qtree_delete_dquot +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-ccitt 0x1a703ba1 crc_ccitt +EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table +EXPORT_SYMBOL lib/crc-itu-t 0x6d356209 crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0x56329ecc crc7_be +EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd09b2cba crc8 +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c +EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x175924ca lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed +EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of +EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset +EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used +EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del +EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get +EXPORT_SYMBOL lib/lru_cache 0x94f2dbc7 lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create +EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set +EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find +EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put +EXPORT_SYMBOL lib/lz4/lz4_compress 0x0c222eb5 lz4_compress +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x682a23e0 lz4hc_compress +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul +EXPORT_SYMBOL net/6lowpan/6lowpan 0x1f817d5b lowpan_netdev_setup +EXPORT_SYMBOL net/6lowpan/6lowpan 0x464895cb lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0xe7e9f87e lowpan_nhc_add +EXPORT_SYMBOL net/802/p8022 0x48f9be98 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0xe944d237 register_8022_client +EXPORT_SYMBOL net/802/p8023 0x1507bd68 make_8023_client +EXPORT_SYMBOL net/802/p8023 0x492430ab destroy_8023_client +EXPORT_SYMBOL net/802/psnap 0x22cebab8 unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0xc027f835 register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x006cdab7 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x011cb620 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x1707aa54 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x1ab6d9b5 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x2aff5f27 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x2ba0eee6 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x2ce0fd55 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x32d2f5f7 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x38ad26da p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x394bca22 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x3aeaa2d6 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x4a5dc459 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x4c168203 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x534cc3dd p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x54c0198e p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x570c814c p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x5c908c74 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x5fe8a423 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x6774a217 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x7165495c p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x74a1fae2 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x8b8d9d97 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x8f76d88d p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x90f66a5c p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x9244fbfb p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x9f6791a6 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xa91e4a66 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xab59ddff p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xac964400 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xaec3dcff p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xaf7952d6 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0xc02ce270 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xc357ac34 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0xc3aa5b4c p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xcd7d5caa p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xcf5353ce p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xdb3bab36 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xdb684998 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xe12595bb p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xf0afdcda p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xf12b79ec p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xf2462acb v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x1e423269 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x23e60a82 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x791bffcc aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xee5143e2 atalk_find_dev_addr +EXPORT_SYMBOL net/atm/atm 0x0fbf9a22 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x19bcb006 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x1e3ef96e atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x320bfe6c atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x3272b4b3 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x340eaba6 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x54e02ec5 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x6b9d1507 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x8ddbfc86 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0x99b543dc atm_charge +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xa6fb0f4c register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xba6abd27 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xdbf8c265 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xe292d60f vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x100a2b8a ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x4da5ce36 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x517eba95 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x8662856e ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x8fdc5f7e ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xcbcc2f57 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xd7351772 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xd91b3abe ax25_find_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x02682ef4 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x06d2eb77 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0b5c9bf8 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x134df408 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x15245e70 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x175ed68e l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1b2f3918 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1b374531 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x21566b48 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2e599ebb hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x31c235d2 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x37bf83f8 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4b276917 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x53686278 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x59a7466b bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x69483ab2 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x793e238c hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7a73518a hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b30a442 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7c57b7b5 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x82e7aeda l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8464af7d bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x85c67c1e hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x94614ca6 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9b943abd __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9d73d1a5 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9f214b82 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa2e7db42 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa4157443 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0xaa590995 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0xabe0eda1 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0bcf5a8 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbc7242ff bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc4dd58b5 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0xca7c288a __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd707254a hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdba1c99d bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdef49762 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeb79c47a bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xefea7460 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfce841a3 hci_register_cb +EXPORT_SYMBOL net/bridge/bridge 0x1fef3c31 br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x26b8292e ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x82381dd7 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x95d45ab7 ebt_do_table +EXPORT_SYMBOL net/caif/caif 0x026657c6 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info +EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x8fecdac9 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x968b75cd caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xdd8c350f caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0xfddaad98 get_cfcnfg +EXPORT_SYMBOL net/can/can 0x21e8ac05 can_rx_unregister +EXPORT_SYMBOL net/can/can 0x45d84cfb can_proto_register +EXPORT_SYMBOL net/can/can 0x6748167c can_rx_register +EXPORT_SYMBOL net/can/can 0xaf1c6697 can_proto_unregister +EXPORT_SYMBOL net/can/can 0xbb2e6605 can_ioctl +EXPORT_SYMBOL net/can/can 0xc1bc5144 can_send +EXPORT_SYMBOL net/ceph/libceph 0x02c86417 ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0x05d67882 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x07bccb5b ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0a0d9d6f ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x136cc6fa ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x1b07d62a ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x1bb1a0c8 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x201877e4 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x212ab0ac osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x21c60751 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x23015b46 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x23fb3722 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x24d897df ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x2764198b osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x2873411c ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x2caa7b94 ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0x2d57f408 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x2f4c7866 ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0x33f1848e ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x38fcad3f ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x408b9bb0 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0x4134a00e osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x419cb09b ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part +EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0x4410e9fe osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x445c8e48 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x46854978 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x48ef7d57 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x503cef02 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x514178bb ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x53cbf15d ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x53d7a8a1 ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0x55623ca6 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5f693b72 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x6325147f ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x65ee34d6 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x6a0a2704 osd_req_op_watch_init +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6fabc1c0 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x6fcdafef ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x70d231b4 ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0x7788bd66 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x790d7335 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x79a265d6 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x7bfb8e6b ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0x7d447a15 ceph_oloc_oid_to_pg +EXPORT_SYMBOL net/ceph/libceph 0x7dd2fd9d ceph_monc_do_get_version +EXPORT_SYMBOL net/ceph/libceph 0x81f58f73 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x84dec33e ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x89212ab2 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x8b769aac ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x8c10d350 ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0x90996d95 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x93dbfeb6 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x944393c7 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x9506b25f ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9e848f44 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa776fb30 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xa9b4246d ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xaa3ca31d ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb12a64e2 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xb507076b ceph_monc_request_next_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xb6a0f5b2 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0xb7504440 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0xb8e28643 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0xb90c6a8b ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xbe87112b osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xc1e0d92f ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0xc3b16285 ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc4d8459a ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xc890f420 osd_req_op_cls_response_data +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd3654ddd ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xd7acd83f ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xdeda2e37 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xdfd1a866 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xe0fd2ea2 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xe35af346 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xe3b042ca ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xe960ebc4 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0xeb966825 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0xf03fba7b ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xf075b6e7 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0xf17f7f39 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xf35cb4d9 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xf50f4c44 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0xf7b576a7 ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0xf8c0d8e2 ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0xf99e6e8b ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0xfbf236cb ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xfd1b9234 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x379ab92b dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x8f85c762 dccp_req_err +EXPORT_SYMBOL net/ieee802154/ieee802154 0x1769766e wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x4171d87c wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x55df503c wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xd0ed9591 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0xd1ca94b5 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0xeb19c16c wpan_phy_unregister +EXPORT_SYMBOL net/ipv4/fou 0x3106aeb4 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x8f56986b fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xb51dd683 gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xd0750778 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x0f52718f ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x2728ac63 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x3242dc0a ip_tunnel_encap +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x91a62b9b ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xa548fbc8 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xed88d3d0 ip_tunnel_dst_reset_all +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x2e472fc6 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x863070c3 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xd975530f arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x117737d7 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xf6bc974d ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xffa9179d ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0xb64e6bdc xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0xe145ab0c xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x7682f596 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4cbcad07 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5bcb4c99 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7c08d804 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc9647a38 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x4132b18d ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x95d45bf9 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xdcfcb2fe ip6t_register_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x3e0335c2 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0x8904db1b xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x8073b16b xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xe33aadaf xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x0213bbd7 ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x2a3ba727 ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x30ad0f7c ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x5ea5493a ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x620a4898 ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x62591a33 ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xa7335b12 ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xf72bdd21 ircomm_close +EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value +EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service +EXPORT_SYMBOL net/irda/irda 0x0963c24b irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0x09939c11 irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0x0d00cd59 iriap_close +EXPORT_SYMBOL net/irda/irda 0x11b30524 irttp_data_request +EXPORT_SYMBOL net/irda/irda 0x175a24f7 irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0x23bbc2ce irias_find_object +EXPORT_SYMBOL net/irda/irda 0x24a8a459 irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0x2a93a5c8 async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0x2b432980 hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0x30d0fcef irlap_close +EXPORT_SYMBOL net/irda/irda 0x3284b1b0 alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x3766d836 irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0x385847aa irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x3f8513f7 irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value +EXPORT_SYMBOL net/irda/irda 0x46b00fdf irias_insert_object +EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service +EXPORT_SYMBOL net/irda/irda 0x4f7c51b4 irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0x523dd613 irda_notify_init +EXPORT_SYMBOL net/irda/irda 0x577cab45 irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0x601e786a irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0x6450c849 irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x70a3f20f hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0x71100168 irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client +EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client +EXPORT_SYMBOL net/irda/irda 0x7d643faa irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0x98a8b3b4 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0x9ccbdfca hashbin_insert +EXPORT_SYMBOL net/irda/irda 0xa023ccb3 irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0xa13bf60e irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0xac3dc858 irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0xaeeff2b5 hashbin_find +EXPORT_SYMBOL net/irda/irda 0xb2559e1b irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0xb392e608 iriap_open +EXPORT_SYMBOL net/irda/irda 0xb75feb3a iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value +EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute +EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request +EXPORT_SYMBOL net/irda/irda 0xd214798a async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma +EXPORT_SYMBOL net/irda/irda 0xd973e469 irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0xdc0196c2 hashbin_remove +EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0xe1ba6308 irias_new_object +EXPORT_SYMBOL net/irda/irda 0xe329462a hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0xeaeb168e irttp_dup +EXPORT_SYMBOL net/irda/irda 0xeb78333e hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0xec242b93 hashbin_new +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0xee747751 irlap_open +EXPORT_SYMBOL net/l2tp/l2tp_core 0x5aca7645 l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0x6a45b006 l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x1d387131 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x31d9b4cc lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x3f4f427d lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x59ae5809 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x66c8f45f lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0xbd5d5146 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0xc4dd4e02 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0xf04edc8a lapb_connect_request +EXPORT_SYMBOL net/llc/llc 0x04475363 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x29e63cf8 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x398b6303 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x401372f1 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x58e52504 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x9c422412 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xc3291f81 llc_sap_open +EXPORT_SYMBOL net/mac80211/mac80211 0x02ca907f ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x02d9c0be ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x0340bab2 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x0b7e1249 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x0bd609f2 ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x0c1d770a ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x0d61561a rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x0ef70671 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x13418469 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x192f91f3 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x197f937b ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x1c5a385d ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x203ce8fd ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x207ad47e ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x210349d3 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x21dea6b2 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x27ed2841 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x2d51b6f5 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x2eeac4f0 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x30db55fe ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x3179a296 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x3468a49e ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x3c2d5714 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x419c0202 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x44ecb135 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x474f21f1 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x4a086c5b ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x4c2b011a ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x4c53c81c ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x55f97e4f ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x58a1d7ef ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x5dc6a15a ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x603e5c0d ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x61de9768 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x652527e8 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x65f12cea ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0x67355b7b ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x6982ec35 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x6ca282ff ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x6cc2610a ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x6f18aaf0 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x71a714e1 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x781a95cd ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x796d3327 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x7a86eb57 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x7cd559a2 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x815e5189 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x83153d6f ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x85bdb1e2 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x8acfea05 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x8e0d3396 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0x91e974e3 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x92dbcf04 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x95cf611f ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x9965d869 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x9d0fc03f ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xa1ce1962 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xa34e5fa2 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xa38427eb ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xaa2e9fee ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0xaa6dd0e8 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0xaa88f36e ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0xab425556 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0xb4fe5233 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xb55e9e7a ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xb854a4e8 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xba4337fd ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xbce3ea96 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xbe571749 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xc291b69c ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xc4e8aa6b ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0xc8eee485 ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xcdd639e7 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xd4fe9c8f ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xd72d2263 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0xd82bee2d __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xddbe3ab9 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xdf796f60 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xe13b8f61 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0xe50b9fce ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xf0fb8e93 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xf9d8f614 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac802154/mac802154 0x0316882d ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x14344f4c ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x61f1bf32 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x6cdbdd9a ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0xa3cfaad9 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xce1f9cde ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xe9669353 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xf279fb1c ieee802154_xmit_complete +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0858b102 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3073f9da register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x856b8546 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x97b663d1 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9d17c56b ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb3829f84 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb90242fe ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xba7969ab ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc7e26535 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd462ebfb ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd6c58ab8 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf1c3be86 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfa649726 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfc84f80e ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x03c65b5e nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x29699191 __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x29ec4119 __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x25f45257 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x3b753b4f nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x6a535819 nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/nf_nat 0x79cdacd3 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xc471e360 nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0xe11ea506 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/x_tables 0x10908c7e xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x1ea066a3 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x253e8b44 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x31292867 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x31d64108 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xaeaf1c68 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xd09649ea xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0xd1e8e49e xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xd819a3e5 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xe1804ed1 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0xec2eee14 xt_register_match +EXPORT_SYMBOL net/nfc/hci/hci 0x01787370 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x08b94748 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x0c53386a nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x11d1f463 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x13ac50fa nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x18f45e74 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x192a4e36 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x20040ebb nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x2b272f46 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x2f726cad nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x3434c4e4 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x533c5df1 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x6195ddd3 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x6d393578 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0xaf9d18b5 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xcc141f13 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0xe7cda966 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xf050c260 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0xf09c77f7 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0xf339ac1a nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xf40d746b nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/nci/nci 0x0bbdab04 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x0d5a36a1 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x23f347a6 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x2dfc10ba nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x2fc0922b nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x31de50a4 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x39dc6698 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x4693512d nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x4b38db4f nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x58835f31 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x70c6a5dc nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x77c33be8 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x7e38fb07 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x7fec28b4 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x863bd352 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x8b9900c5 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x955a66a2 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0xa78540b6 nci_get_conn_info_by_id +EXPORT_SYMBOL net/nfc/nci/nci 0xa8d5a631 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xadd5135e nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0xaefd7332 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xc5d278e4 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0xde3db4d7 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0xe47b599c nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0xedd7efec nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0xeffc8a9b nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xf005cf51 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xf178e74b nci_free_device +EXPORT_SYMBOL net/nfc/nfc 0x0886e857 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x0ead5136 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x33c6971a nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x3513ba8a nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x3a671d3d nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x3f328c36 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x43d70d56 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x4cc57125 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x50b8327a nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x5880ad5a nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x593e8ee6 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x7839ae13 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x9ee54be3 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xaf8d46e4 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xb2b15f20 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xb92361b6 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xc7fe868b __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xce836107 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xdb27074a nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xdd7c9cf7 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xe8ff519e nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xeded2cff nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0xf44a6507 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xfa7732c1 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc_digital 0x08b142d6 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x3e892cf8 nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xc241a11d nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xf9405e7b nfc_digital_register_device +EXPORT_SYMBOL net/phonet/phonet 0x15c394aa phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x25417a18 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x260f5fba pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x3031aeed pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x4eff4c07 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x77c88a99 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xc67540ba phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0xe7838d3e phonet_proto_register +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x0431af01 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x0b6fff9e rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1ba4d814 rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x5238efe7 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x54034039 rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x62dc51e4 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x67c0ab91 rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x78fee76f rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x7bee50a9 rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb088b788 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xcb0be81e rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xda726a9b rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe1df11ad rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf033ee0a key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf4c87f81 rxrpc_kernel_end_call +EXPORT_SYMBOL net/sctp/sctp 0xb9238945 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x249ee440 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x754c6429 gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xbc4080a8 gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0x95e3abf9 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xb5d6beb1 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xd1209d2f xdr_restrict_buflen +EXPORT_SYMBOL net/wimax/wimax 0x1948cb76 wimax_rfkill +EXPORT_SYMBOL net/wimax/wimax 0x47eeedd3 wimax_reset +EXPORT_SYMBOL net/wireless/cfg80211 0x027a10b5 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0ac1b285 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x0f3e1b1b cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x15132275 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x19417522 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x1ba21403 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x1da9852d cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x1daf6642 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x1ecb5bc2 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x21ae7d6c cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x2697119f cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x2a2d2de7 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x2c81e29a cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x3444cc9b cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x3af9619d cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x3be63138 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x41af163b freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x44d2dca6 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x47c99d90 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x498170a9 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x527417bb cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x56d5fdb6 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x57eaf886 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x5b605e96 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x5ebd8e60 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x5f441f61 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x5f62004b cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x60bd3c15 regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x67cfcf51 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x68f01636 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x6f0912d8 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x70501bbe cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x70ba8e64 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x70d91e92 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x72ff2dd1 __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x734e9564 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x7c624e5b cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1f42d cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x81106860 cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0x811e2427 ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x83e2485a regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x8969fa56 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x8b02456c cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x8f9a49a3 cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x91d7a142 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x9c8efaa5 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x9f78285e cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xa05bd8c0 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xa1425906 ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xa5b21a54 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0xa7339db8 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xab8a63a4 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xad816e47 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xaee421bb regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xb0b7e6bb wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xb13cdb5b cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xb83bb952 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xbe0d75e3 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xc2182102 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xc51838b9 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0xc5ad1042 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xc7f8fddd cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xc9571d7b cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xc9786cd9 ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xc98f6411 wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0xc9a4d992 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xcc4e0f9a cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd2f2e27c cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd50b0a22 ieee80211_ie_split +EXPORT_SYMBOL net/wireless/cfg80211 0xd838fe85 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0xd99434b9 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xda1f796d wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xdaa07a83 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdd7e3cf5 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xe0d7f50a cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xe2526365 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xe560f888 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe70d835e cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0xea3b3870 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xeaa83c60 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xef8cd6e4 cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xf04a37fb cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xf8f0b31f cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xfcce2451 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/cfg80211 0xffb285f3 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/lib80211 0x144ebfa8 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0x34e4e04d lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x6c7f68df lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xa86f5b3d lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xd01b1b6b lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xd41d70d5 lib80211_crypt_info_init +EXPORT_SYMBOL sound/ac97_bus 0x464f8689 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xc6249a11 snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl +EXPORT_SYMBOL sound/core/seq/snd-seq 0x28ecae33 snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x4dad1853 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6a2895cf snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xdc30e683 snd_seq_kernel_client_enqueue_blocking +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x0bbe1288 snd_seq_device_new +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x205395a0 snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x614705ff snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x7746bb9b snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x79794472 snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x991c0f60 snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xef8fa3d2 snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xf3f0324e snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xf6fdda44 snd_midi_event_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x37db47ed snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x083789e6 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x1024a8ac snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x11a37977 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x12129d96 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x16ca19e1 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x172b2108 snd_device_register +EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program +EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer +EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL sound/core/snd 0x220f9dbf snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x285a054f snd_card_free +EXPORT_SYMBOL sound/core/snd 0x2a977a35 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0x2bb88428 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x2e0bf201 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x317545c1 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3eb613b9 _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0x4336eb82 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x4395574c snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x445aa287 snd_component_add +EXPORT_SYMBOL sound/core/snd 0x490b7a4f snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4cbcde0c snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x573662a7 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x5c2ce190 snd_info_register +EXPORT_SYMBOL sound/core/snd 0x5cce0a8a snd_cards +EXPORT_SYMBOL sound/core/snd 0x5edc5646 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x6050ae49 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x669e1e28 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x6dbdcf2e snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0x6ee2e42f snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x76587904 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x85e79203 snd_card_register +EXPORT_SYMBOL sound/core/snd 0x862eca84 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x87af9dc5 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x898ef94a snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x9186a0c0 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0x9f85055a snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0xa1694441 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0xa4f0b3e9 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0xa72358e7 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0xa7539bbb snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0xa77df7c1 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0xaa02562c snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xc32a5144 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0xc3b6b337 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0xc6402e09 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0xd59f27c0 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0xeba8410e snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xedc902f5 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0xf0813dba snd_card_new +EXPORT_SYMBOL sound/core/snd 0xf5522000 snd_register_device +EXPORT_SYMBOL sound/core/snd 0xfc1d8bc4 snd_device_new +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-hwdep 0x4ced144a snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x0297e85f snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x035112f3 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x06b310c9 snd_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x09248629 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0x0cfe5f4f snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x0d0e0db5 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x1467da48 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x160edd03 snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0x17a46296 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x2acf0df3 snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0x2f040610 snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0x2f897364 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x33b1b6da snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x3b161509 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x3b4f21a4 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x41f18fae snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x42afbf83 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x4c0d4a4a snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x55d754cd snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0x56e33055 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x5898dcba snd_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x5929d1d1 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x61979db7 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL sound/core/snd-pcm 0x69d9f11f snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x7bbe611e snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x7f7d9a54 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x85fa0f9e snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x8ace9682 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0x8c2be957 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x9455099a snd_pcm_sgbuf_ops_page +EXPORT_SYMBOL sound/core/snd-pcm 0x957435b1 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x98035409 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x9aea8213 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xac22e325 snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xb0981b74 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xb69372ae snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xbd7ba76e snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0xc8055964 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0xca34c226 snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0xcab45699 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xccc4f9ce snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xcffb39bc snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xd46c6c88 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xdcb5c3ee snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xf131660f snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0xf2a34727 snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0xf4354c70 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xf8e3d66c snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0xf9965b7c snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0xfd61adc0 snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-pcm 0xffb57735 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-rawmidi 0x12ba29f7 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1e60dccf snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x36a18bcf snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3c914b34 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x42030508 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x49776e86 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x56088499 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x70a92d1a snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7c22c798 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x977dab67 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa215b4ba snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa4dbccca snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa9935424 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb512750e snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xcf253066 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd222f21e snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd2f44fe9 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xdf009695 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xeb309c38 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-timer 0x118e5344 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x32aa8e67 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x3f31280e snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x4b8f402a snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x601e8f3d snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x68692372 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x6e6cedb8 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0x724915fb snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0xa59f325c snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xba80d6da snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0xc04926fa snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0xec525f98 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0xf8546ecb snd_timer_resolution +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xfc4afa86 snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x037a4fbf snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x0731eaae snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x2829a90b snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x48d5554f snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6293e785 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x757a792a snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xbda00865 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd3d3c0f0 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd7dad577 snd_opl3_new +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x04860ae5 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x200445ae snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x20ecc678 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x467e2481 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x59f134c1 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x65ecd7e4 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x74df90ad snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7515df28 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xce062bf1 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x020ed703 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0cabaf3a fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x19a0e4e2 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1b96203e iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x292d2dff amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3736f928 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3d94fdb9 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x47ba6046 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x56863c51 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5ed29f3c cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x75bc3e3c snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x76454b57 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x784655df amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7a6bc933 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7dfabb8d snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8e297667 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x99c39643 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9e74eb9c cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa63c665d iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa9264c8b amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaaea7bce avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xae932164 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb3a2ece1 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbf18edfa fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdab1be6f cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe4f08b7b amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe7f14418 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xed654cc4 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf1d8a3ef avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf3269058 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf59073e1 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf9316d65 cmp_connection_establish +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x3ab1baa1 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x708362ea snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x00c4c058 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0218effb snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0b4ebe14 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x18180bd0 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2c059cb1 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x9cd03c4d snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xc20f714b snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xe4e07d32 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x0daccb1d snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x406eb46a snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x7b9021af snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xb6e50dc9 snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xdbe74b6a snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xfadcc40a snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x07e3f2be snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x459f4a60 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x88178e82 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xed2dccdc snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x6f7e764e snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x8972782e snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x115b39ea snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x13ef0258 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x72e8f7eb snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x800580d4 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x8b784c07 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xb775eca1 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-i2c 0x01dffd65 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0xc71fbf14 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xd6a73bef snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xdf8d9761 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xe727cc03 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xfc319266 snd_i2c_sendbytes +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x00103977 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x2cc41d88 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x45b28261 snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x4990dee9 snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x57428566 snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x6517da25 snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x7918485c snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xc5765b51 snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xc596b50b snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xc8c99e5f snd_sbdsp_reset +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x04df590d snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x28ba47e9 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3106a447 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x33b53104 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x51d9aa34 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x543eb3df snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6262c4c7 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7a480cdc snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x80d9e00c snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb9bb29a8 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbfeea60a snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc3f1b13f snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe0d146fc snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xec72447e snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xec90b478 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xee7a9fcb snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfb9574f8 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0x94dac707 hpi_send_recv +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x07692b30 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x17fa0f6c snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x210ebcb9 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x230f02d8 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x28b2c49d snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x9bcca925 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd33c983f snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe6e2dd4b snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xfc368de4 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x47eb9adc snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x57ebe73f snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xc1c21304 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x11e11c7e oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1991a5f7 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3301994d oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3f363943 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x457cdebe oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x45afef84 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4af04dbf oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5203223c oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x62d44476 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x65508561 oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x85801122 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb7def749 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb969991f oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc3a4a159 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc3c6228b oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe101d176 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe6081dcc oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe9620522 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xee9b3c6c oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf80dee54 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfbc8b9c3 oxygen_write_spi +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x33c0110d snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x88289475 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x90d4891e snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xa2b8248f snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xedf64d6b snd_trident_alloc_voice +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x42c82f7a tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xbe894576 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-dsp 0x36d294bb sst_dma_new +EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-dsp 0xdc045797 sst_dma_free +EXPORT_SYMBOL sound/soc/snd-soc-core 0x7763e0fa snd_soc_alloc_ac97_codec +EXPORT_SYMBOL sound/soundcore 0x0c2aa5aa sound_class +EXPORT_SYMBOL sound/soundcore 0x3efff1e1 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x77912045 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x8e02b660 register_sound_midi +EXPORT_SYMBOL sound/soundcore 0x98a03595 register_sound_special +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xa2d36ef5 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x2be2de8a snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x7c661e47 snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xae742ffd snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xb0912db1 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xc5c0a011 snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xfa9f69f6 snd_emux_register +EXPORT_SYMBOL sound/synth/snd-util-mem 0x4b1521d2 snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x7efdf912 snd_util_memhdr_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x9a6380a1 __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0xba294bfc snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0xcb687579 __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0xd4a87146 snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0xe1eb6709 snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0xe20b233d __snd_util_mem_free +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x187560d0 snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL ubuntu/hio/hio 0x14e2b9e3 ssd_get_temperature +EXPORT_SYMBOL ubuntu/hio/hio 0x36cf031e ssd_submit_pbio +EXPORT_SYMBOL ubuntu/hio/hio 0x5622407c ssd_register_event_notifier +EXPORT_SYMBOL ubuntu/hio/hio 0x597c4ae7 ssd_unregister_event_notifier +EXPORT_SYMBOL ubuntu/hio/hio 0x6e1247b6 ssd_get_version +EXPORT_SYMBOL ubuntu/hio/hio 0x7a9a6c1e ssd_set_wmode +EXPORT_SYMBOL ubuntu/hio/hio 0x7cc0f661 ssd_get_pciaddr +EXPORT_SYMBOL ubuntu/hio/hio 0x991e5618 ssd_get_label +EXPORT_SYMBOL ubuntu/hio/hio 0xb06b2419 ssd_set_otprotect +EXPORT_SYMBOL ubuntu/hio/hio 0xdac6c999 ssd_bm_status +EXPORT_SYMBOL ubuntu/hio/hio 0xeda35a76 ssd_reset +EXPORT_SYMBOL ubuntu/opennsl/linux-bcm-knet 0x05450fc9 bkn_filter_cb_register +EXPORT_SYMBOL ubuntu/opennsl/linux-bcm-knet 0x54c30906 bkn_tx_skb_cb_register +EXPORT_SYMBOL ubuntu/opennsl/linux-bcm-knet 0x7c878071 bkn_tx_skb_cb_unregister +EXPORT_SYMBOL ubuntu/opennsl/linux-bcm-knet 0x9d1e8257 bkn_filter_cb_unregister +EXPORT_SYMBOL ubuntu/opennsl/linux-bcm-knet 0x9e25de11 bkn_rx_skb_cb_unregister +EXPORT_SYMBOL ubuntu/opennsl/linux-bcm-knet 0xaa63bd12 bkn_rx_skb_cb_register +EXPORT_SYMBOL ubuntu/opennsl/linux-kernel-bde 0x0b5382e1 lkbde_dev_instid_set +EXPORT_SYMBOL ubuntu/opennsl/linux-kernel-bde 0x0f2744ab lkbde_dev_instid_get +EXPORT_SYMBOL ubuntu/opennsl/linux-kernel-bde 0x1a60fb89 lkbde_get_dma_info +EXPORT_SYMBOL ubuntu/opennsl/linux-kernel-bde 0x1bcd46ff lkbde_get_hw_dev +EXPORT_SYMBOL ubuntu/opennsl/linux-kernel-bde 0x29805c13 ___strtok +EXPORT_SYMBOL ubuntu/opennsl/linux-kernel-bde 0x29a863d1 lkbde_get_dev_phys_hi +EXPORT_SYMBOL ubuntu/opennsl/linux-kernel-bde 0x2ebd13e4 lkbde_irq_mask_get +EXPORT_SYMBOL ubuntu/opennsl/linux-kernel-bde 0x514ea590 lkbde_get_dev_phys +EXPORT_SYMBOL ubuntu/opennsl/linux-kernel-bde 0x6409c305 linux_bde_create +EXPORT_SYMBOL ubuntu/opennsl/linux-kernel-bde 0xb5692429 lkbde_irq_mask_set +EXPORT_SYMBOL ubuntu/opennsl/linux-kernel-bde 0xb8f8dc3d lkbde_get_dev_virt +EXPORT_SYMBOL ubuntu/opennsl/linux-kernel-bde 0xc36868a4 lkbde_get_dev_resource +EXPORT_SYMBOL ubuntu/opennsl/linux-kernel-bde 0xccfba9a2 lkbde_get_dma_dev +EXPORT_SYMBOL ubuntu/opennsl/linux-kernel-bde 0xd558f821 kmalloc_giant +EXPORT_SYMBOL ubuntu/opennsl/linux-kernel-bde 0xd63cc59b kfree_giant +EXPORT_SYMBOL ubuntu/opennsl/linux-kernel-bde 0xee9c1bd4 strtok +EXPORT_SYMBOL ubuntu/opennsl/linux-kernel-bde 0xf0338bb1 linux_bde_destroy +EXPORT_SYMBOL ubuntu/opennsl/linux-kernel-bde 0xf06cd208 lkbde_dev_state_get +EXPORT_SYMBOL ubuntu/opennsl/linux-kernel-bde 0xf3ad288d lkbde_dev_state_set +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x00322056 VBoxGuest_RTMpCpuIdFromSetIndex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x01674ab7 VBoxGuest_RTSemMutexRequestNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0429a6f0 VBoxGuest_RTThreadCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x057fd386 VBoxGuest_RTR0MemObjLockKernelTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0731e88d VBoxGuest_RTAssertMsg2Add +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x079b132d VBoxGuest_RTMemTmpAllocTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x08ed98db VBoxGuest_RTMemDupExTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x09a88bc3 VBoxGuest_RTTimeExplode +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0a442050 VBoxGuest_RTAssertAreQuiet +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0b94344b VBoxGuest_g_pszRTAssertExpr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0beb235d VBoxGuest_RTMpIsCpuWorkPending +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0cd1b64d VBoxGuest_RTMpCurSetIndex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0d10d1ca VBoxGuest_RTTimeNormalize +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0f3e114a VBoxGuest_RTSemSpinMutexCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0f884b3a VBoxGuest_RTStrToInt64Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x11ced39a VBoxGuest_RTSemEventWaitEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x11e95d2e VBoxGuest_RTLogLoggerEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x11f80121 VBoxGuest_RTSemMutexRelease +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x12614b82 VBoxGuest_RTStrToInt8Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x12f430f3 VBoxGuest_RTAssertMsg2AddV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x147206e1 VBoxGuest_RTStrToUInt64 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x151752ec VBoxGuest_RTHeapSimpleGetFreeSize +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1520b2c8 VBoxGuest_RTLogCreateEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x160b14d4 VBoxGuest_RTMpGetPresentSet +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1926b25c VBoxGuest_RTLogRelLogger +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x19790b4c VBoxGuest_RTLogFlags +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x197acd65 VBoxGuest_RTR0Init +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1a6d7d86 VBoxGuest_RTThreadPreemptIsEnabled +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1ae28abb VBoxGuest_RTThreadIsSelfAlive +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1c3b0f90 VBoxGuest_RTR0MemObjAddressR3 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1dc5ebbe VBoxGuest_RTThreadWaitNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1f3e577b VBoxGuest_RTMemTmpAllocZTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1f70d065 VBoxGuest_RTErrConvertToErrno +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2003169b VBoxGuest_RTSpinlockAcquire +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x20728ae6 VBoxGuest_RTThreadCreateV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x20d9d625 VBoxGuest_RTTimeToString +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x22058511 VBoxGuest_RTSemMutexRequestDebug +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2254228b VBoxGuest_RTMpGetPresentCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2387f039 VBoxGuest_RTMpIsCpuPresent +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x25219f5e VBoxGuest_RTR0Term +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2580d04c VBoxGuest_RTSemEventMultiSignal +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2632a013 VBoxGuest_RTLogRelLoggerV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x29708cf0 VBoxGuest_RTR0MemUserCopyTo +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2a2284fb VBoxGuest_RTAssertMayPanic +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2af3453c VBoxGuest_RTLogPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2c2b5b46 VBoxGuest_RTTimerGetSystemGranularity +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2cfefa48 VBoxGuest_RTLogBackdoorPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2d445217 VBoxGuest_RTStrToInt64Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2d581c06 VBoxGuest_RTMpCurSetIndexAndId +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2eca7777 VBoxGuest_RTHeapSimpleAlloc +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2fb7502f VBoxGuest_RTThreadSetName +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x30e40c69 VBoxGuest_RTLogSetDefaultInstanceThread +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3168cadf VBoxGuest_RTTimeSystemMilliTS +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x31ac4c5f VBoxGuest_RTThreadIsInitialized +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x33d7313a VBoxGuest_RTMpCpuId +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x343e3e1b VBoxGuest_RTLogGetDestinations +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3480f453 VBoxGuest_RTSemMutexDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x358153bb VBoxGuest_RTStrCopy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x362275e8 VBoxGuest_RTMemContFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x372d5e29 VBoxGuest_RTPowerNotificationDeregister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x376d539c VBoxGuest_RTThreadGetType +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x381d7c24 VBoxGuest_RTMemAllocVarTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x383a0b9d VBoxGuest_RTMpPokeCpu +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3a47392e VBoxGuest_RTErrConvertFromErrno +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3b04381e VBoxGuest_RTSemEventMultiReset +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3b231c95 VBoxGuest_RTTimeNanoTS +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3bcf543a VBoxGuest_RTLogGetDefaultInstanceEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3d00f113 VBoxGuest_g_u32RTAssertLine +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3de43f66 VBoxGuest_RTSemEventCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3dfc9ab8 VBoxGuest_RTSemMutexIsOwned +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3fbf3c07 VBoxGuest_RTThreadIsInInterrupt +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x40996438 VBoxGuest_RTSemEventMultiWait +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x42ecc6d1 VBoxGuest_RTThreadPreemptRestore +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x43fdd8d9 VBoxGuest_RTSemFastMutexRelease +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x44cfbc28 VBoxGuest_RTThreadGetNative +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x461fa9fe VBoxGuest_RTLogRelGetDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x46c14223 VBoxGuest_RTLogSetCustomPrefixCallback +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x49f1be17 VBoxGuest_RTThreadFromNative +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x49f4d19c VBoxGuest_RTLogDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4ba5006e VBoxGuest_RTLogPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4bbec091 VBoxGuest_RTR0MemObjGetPagePhysAddr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4c7d8a56 VBoxGuest_RTSemEventMultiCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4cac3157 VBoxGuest_RTLogFormatV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4cecc93d VBoxGuest_RTR0MemObjEnterPhysTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4cf913a1 VBoxGuest_RTThreadGetName +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4ea67110 VBoxGuest_RTStrToInt32 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4f041d39 VBoxGuest_RTMemContAlloc +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4fc8e10c VBoxGuest_RTMpGetSet +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4fe9e5f1 VBoxGuest_RTR0MemObjProtect +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5040043b VBoxGuest_RTSemEventWaitExDebug +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x508bb2c4 VBoxGuest_RTLogSetDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x51ec28bd VBoxGuest_RTLogGetFlags +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x53265abc VBoxGuest_RTLogSetBuffering +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5352c915 VBoxGuest_RTSemMutexRequest +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x54098f34 VBoxGuest_RTTimerStop +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x54ddf87c VBoxGuest_RTThreadPreemptIsPossible +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5595fc22 VBoxGuest_RTSpinlockDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x56596e82 VBoxGuest_RTThreadSelfName +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x56c939fe VBoxGuest_RTAssertMsg1 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5847ae52 VBoxGuest_RTMpGetCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x58d1b65e VBoxGuest_RTThreadPreemptIsPending +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x598d3622 VBoxGuest_RTAssertMsg2AddWeak +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5a97195c VBoxGuest_RTHeapSimpleRelocate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5aa6ed66 VBoxGuest_RTPowerSignalEvent +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5b3a5164 VBoxGuest_RTLogWriteUser +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5cc0b1b2 VBoxGuest_RTProcSelf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5d3b1bd6 VBoxGuest_RTSemSpinMutexRelease +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5e071eb3 VBoxGuest_RTSemEventMultiDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5e17b70e VBoxGuest_RTSpinlockRelease +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5e75c570 VBoxGuest_RTStrToUInt16 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5eaea89a VBoxGuest_RTSemFastMutexCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5ee65bb7 VBoxGuest_RTStrToUInt16Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5ef42fe5 VBoxGuest_RTTimerStart +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5f2f48bb VBoxGuest_RTLogWriteStdErr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x61143878 VBoxGuestIDCCall +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6173b384 VBoxGuest_RTMpOnPairIsConcurrentExecSupported +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x61770e8c VBoxGuest_RTStrToUInt32 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x63378722 VBoxGuest_RTLogBackdoorPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x634946f7 VBoxGuest_RTMpIsCpuOnline +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x637a1d69 VBoxGuest_RTLogWriteStdOut +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6381bb97 VBoxGuest_RTStrFormat +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x63b1fde6 VBoxGuest_RTMpCpuIdToSetIndex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x63bc10b0 VBoxGuest_RTLogCreateExV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x658cd915 VBoxGuest_RTR0MemObjFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x67135d2b VBoxGuest_RTSemFastMutexRequest +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6862822a VBoxGuest_RTHeapSimpleSize +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x695d63ad VBoxGuest_RTMpNotificationDeregister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6b01bbf3 VBoxGuest_RTMpOnSpecific +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6b58b79d VBoxGuest_RTSemSpinMutexDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6b91f1ce VBoxGuest_RTStrFormatTypeDeregister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6c8460ac VBoxGuest_RTLogRelGetDefaultInstanceEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6cec7c3b VBoxGuest_RTTimerCreateEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6d8e9c87 VBoxGuest_RTTimeNow +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6e8541b7 VBoxGuest_RTAssertMsg2Weak +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x704e1f6f VBoxGuest_RTAssertMsg2AddWeakV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x70867323 VBoxGuest_RTStrToUInt8Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x71060970 VBoxGuest_RTStrToUInt16Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x716e3be3 VBoxGuest_RTMpGetOnlineCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x729cc4ab VBoxGuest_RTR0MemObjSize +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x72ff1bc3 VBoxGuest_RTTimeIsLeapYear +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x730a01b0 VBoxGuest_RTLogRelSetDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x74812dde VBoxGuest_RTStrToInt32Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x759e7492 VBoxGuest_RTSemFastMutexDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x764ecb18 VBoxGuest_RTR0MemObjAllocLowTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x76a3c47b VBoxGuest_RTMemAllocZVarTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x79d59e24 VBoxGuest_RTSemSpinMutexRequest +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7d0d9dae VBoxGuest_RTR0MemObjAllocPhysNCTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7d15e878 VBoxGuest_RTMpGetOnlineSet +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7dcc30d8 VBoxGuest_RTStrToInt32Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7e29739a VBoxGuest_RTStrToInt16 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7f0a40ea VBoxGuest_RTLogComPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7fc5bdcf VBoxGuest_RTR0MemObjAllocPhysTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8196c4e6 VBoxGuest_RTSemSpinMutexTryRequest +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x82e081bc VBoxGuest_RTStrFormatTypeSetUser +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x83e78406 VBoxGuest_RTR0MemAreKrnlAndUsrDifferent +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x841e42e9 VBoxGuest_RTSemMutexCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8484a0d6 VBoxGuest_RTStrToInt16Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x84e227f6 VBoxGuest_RTThreadIsSelfKnown +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x86120100 VBoxGuest_RTLogDumpPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x867be0d2 VBoxGuest_RTLogDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x868b79a5 VBoxGuest_RTStrPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x879761cf VBoxGuest_RTR0MemObjAllocPhysExTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x87da3860 VBoxGuest_RTAssertSetQuiet +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8826d9de VBoxGuest_RTMpGetMaxCpuId +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x883d496c VBoxGuest_RTMpGetCoreCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x885274fe VBoxGuest_RTThreadUserWaitNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x89117f68 VBoxGuest_RTMemExecAllocTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8a3c154f VBoxGuest_RTR0MemObjLockUserTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8a454b31 VBoxGuest_RTSemEventGetResolution +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8e01e3fd VBoxGuest_RTStrFormatV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8f1309e3 VBoxGuest_RTAssertMsg2 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x90312938 VBoxGuest_RTStrToUInt64Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x91204a9b VBoxGuest_RTTimeSpecToString +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x916e42f0 VBoxGuest_RTAssertMsg1Weak +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9264ffc0 VBoxGuest_RTLogRelPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x926bf9f7 VBoxGuest_RTThreadPreemptDisable +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x92e716ae VBoxGuest_RTLogGetDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x94f7365f VBoxGuest_RTPowerNotificationRegister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x95fa480d VBoxGuest_RTSpinlockCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x961772f3 VBoxGuestIDCOpen +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x967ea4b6 VBoxGuest_RTStrToInt64 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x96893ce3 VBoxGuest_RTR0MemObjAllocPageTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x96f2e65b VBoxGuest_RTR0MemUserCopyFrom +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9796440b VBoxGuest_RTSemEventWaitNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x97eb2414 VBoxGuest_RTThreadNativeSelf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9874cd16 VBoxGuest_RTMpIsCpuPossible +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9909ff3d VBoxGuest_g_pszRTAssertFunction +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9a2ee747 VBoxGuest_RTSemEventDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9bcc539d VBoxGuest_RTThreadUserReset +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9cd9213f VBoxGuest_RTR0MemKernelIsValidAddr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9d6b527c VBoxGuest_RTThreadWait +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9dbd63d6 VBoxGuest_RTStrPrintfEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9eaecd9d VBoxGuest_RTStrPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9f301085 VBoxGuest_RTTimeSpecFromString +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9f4f616a VBoxGuest_RTLogLogger +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9fb0596d VBoxGuest_RTMemDupTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa168a070 VBoxGuest_RTLogLoggerExV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa34eb1b3 VBoxGuest_RTTimeSystemNanoTS +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa486e710 VBoxGuestIDCClose +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa554bd97 VBoxGuest_RTLogFlushRC +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa5a26703 VBoxGuest_RTMpNotificationRegister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa696baed VBoxGuest_RTR0MemObjAddress +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa6a22472 VBoxGuest_RTThreadUserWait +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa6de1bcd VBoxGuest_RTTimerChangeInterval +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa86c5a96 VBoxGuest_RTSemEventSignal +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xaba9bc9c VBoxGuest_RTLogCloneRC +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xac990d74 VBoxGuest_RTTimerCanDoHighResolution +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xacaac41d VBoxGuest_g_szRTAssertMsg1 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xad4fdf4e VBoxGuest_RTSemMutexRequestNoResumeDebug +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xad649089 VBoxGuest_RTStrToUInt64Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xae3e0ecd VBoxGuest_RTLogRelPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xaf6ffbfc VBoxGuest_RTThreadSleep +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb05840a7 VBoxGuest_RTSemEventMultiWaitExDebug +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb1cc9148 VBoxGuest_RTLogWriteCom +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb42ea0e3 VBoxGuest_g_pszRTAssertFile +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb444f4a1 VBoxGuest_RTLogDestinations +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb6941b2e VBoxGuest_RTStrToUInt8 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb8c6e615 VBoxGuest_RTStrToUInt32Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb8ca8fcb VBoxGuest_RTMpOnPair +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb8df2b3a VBoxGuest_RTAssertShouldPanic +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb9b070b7 VBoxGuest_RTAssertMsg2V +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb9d7a27d VBoxGuest_RTHeapSimpleDump +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbaa97421 VBoxGuest_g_szRTAssertMsg2 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbb1ead73 VBoxGuest_RTR0MemKernelCopyTo +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbba928e6 VBoxGuest_RTHeapSimpleGetHeapSize +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbc4d30f6 VBoxGuest_RTR0MemObjAllocContTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbc85935a VBoxGuest_RTR0MemKernelCopyFrom +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbe4e6114 VBoxGuest_RTLogFlushToLogger +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbffedb55 VBoxGuest_RTMemAllocExTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc1095c44 VBoxGuest_RTTimeImplode +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc1b3ada4 VBoxGuest_RTAssertMsg2WeakV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc3a1e5de VBoxGuest_RTLogGetGroupSettings +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc3fee96e VBoxGuest_RTMemAllocTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc4bd5fd8 VBoxGuest_RTStrPrintfExV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc63cc2f0 VBoxGuest_RTR0MemExecDonate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc71362b7 VBoxGuest_RTLogRelSetBuffering +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc8fbf4aa VBoxGuest_RTHeapSimpleInit +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc91cea98 VBoxGuest_RTStrCopyEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc9a6a8e7 VBoxGuest_RTThreadCreateF +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcaee97bf VBoxGuest_RTLogComPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcb2a6b54 VBoxGuest_RTMemExecFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xceae9d6a VBoxGuest_RTStrConvertHexBytes +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd14e8ec2 VBoxGuest_RTTimerDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd1f3f0b9 VBoxGuest_RTSemEventWait +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd2a37e73 VBoxGuest_RTTimerReleaseSystemGranularity +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd2d290ab VBoxGuest_RTStrToUInt8Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd3a125cb VBoxGuest_RTR0MemObjMapKernelTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd46c35d4 VBoxGuest_RTMpOnAll +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd4b597fc VBoxGuest_RTStrCopyP +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd5bfc897 VBoxGuest_RTHeapSimpleAllocZ +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd637869e VBoxGuest_RTMemReallocTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd69bc8e4 VBoxGuest_RTR0MemObjReserveUserTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd706d85c VBoxGuest_RTTimeFromString +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd88c9330 VBoxGuest_RTLogLoggerV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd984a7f4 VBoxGuest_RTStrFormatTypeRegister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdc700594 VBoxGuest_RTSemEventMultiGetResolution +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xde9ca744 VBoxGuest_RTThreadYield +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdfbc69bb VBoxGuest_RTThreadPreemptIsPendingTrusty +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe054d759 VBoxGuest_RTMemTmpFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe095cef8 VBoxGuest_RTThreadSetType +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe0dc7391 VBoxGuest_RTThreadIsMain +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe1c6b3d7 VBoxGuest_RTR0MemObjMapKernelExTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe2765c54 VBoxGuest_RTR0AssertPanicSystem +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe38d562c VBoxGuest_RTStrFormatNumber +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe3fd228f VBoxGuest_RTTimeMilliTS +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe7e42113 VBoxGuest_RTThreadSleepNoLog +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe88dae73 VBoxGuest_RTMemFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe8fad285 VBoxGuest_RTSemEventMultiWaitNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xea2f2944 VBoxGuest_RTStrToInt8Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xea38e4f7 VBoxGuest_RTLogDefaultInstanceEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xea71842b VBoxGuest_RTMpGetPresentCoreCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xebeefa0e VBoxGuest_RTR0ProcHandleSelf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xec3cc9a6 VBoxGuest_RTSemEventMultiWaitEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xee774b8e VBoxGuest_RTLogWriteDebugger +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xeea4ee73 VBoxGuest_RTR0MemObjMapUserTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xef6e1359 VBoxGuest_RTMpOnOthers +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf02f22ab VBoxGuest_RTMemAllocZTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf0dbb702 VBoxGuest_RTHeapSimpleFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf26294bb VBoxGuest_RTR0MemObjIsMapping +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf2aa79bb VBoxGuest_RTThreadUserSignal +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf3943009 VBoxGuest_RTTimerRequestSystemGranularity +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf5d89855 VBoxGuest_RTLogGroupSettings +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf69aec24 VBoxGuest_RTStrToInt16Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf7397dd2 VBoxGuest_RTAssertSetMayPanic +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf8113d66 VBoxGuest_RTMpOnAllIsConcurrentSafe +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf956a4e8 VBoxGuest_RTLogFlush +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf958d9cb VBoxGuest_RTLogCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfa7d95c9 VBoxGuest_RTR0MemUserIsValidAddr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfb31e12b VBoxGuest_RTStrToUInt32Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfba93ac9 VBoxGuest_RTR0MemObjReserveKernelTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfbc67e88 VBoxGuest_RTMemFreeEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfe72cef7 VBoxGuest_RTStrToInt8 +EXPORT_SYMBOL vmlinux 0x001243fe nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x00297107 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x00315742 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x0046e701 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x004aa21f __module_get +EXPORT_SYMBOL vmlinux 0x0055cbe6 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x005cf447 param_set_ullong +EXPORT_SYMBOL vmlinux 0x0070cd1f queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x007440c7 nf_register_hook +EXPORT_SYMBOL vmlinux 0x0078d677 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x0085e1f1 __do_once_done +EXPORT_SYMBOL vmlinux 0x00947ed3 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x00b8c3a7 mempool_alloc +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x0112b0ae unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x011f0be2 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x0125b495 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x013c8469 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x016bba17 x86_hyper_ms_hyperv +EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer +EXPORT_SYMBOL vmlinux 0x019b70bc set_disk_ro +EXPORT_SYMBOL vmlinux 0x01a7997a __mdiobus_register +EXPORT_SYMBOL vmlinux 0x01a856a9 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x01b8ac7c tcp_make_synack +EXPORT_SYMBOL vmlinux 0x01d633da n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x01d83e02 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x020589b3 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x02131d27 dquot_commit +EXPORT_SYMBOL vmlinux 0x02337d87 udp_disconnect +EXPORT_SYMBOL vmlinux 0x02349608 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x024bf827 radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x02504539 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02d2497f ppp_dev_name +EXPORT_SYMBOL vmlinux 0x02e25038 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x031be92c sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x0326165b cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x03288483 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x033345e2 bio_clone_bioset +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x035396e0 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x03913774 dquot_resume +EXPORT_SYMBOL vmlinux 0x03aa2dd2 mdiobus_write +EXPORT_SYMBOL vmlinux 0x03c6a779 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x03d9c5b8 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x03e24c3b down_write_trylock +EXPORT_SYMBOL vmlinux 0x03ee5b33 inet_shutdown +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x0416d6b9 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x0426ba24 idr_for_each +EXPORT_SYMBOL vmlinux 0x0438b65d netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x04392a9c locks_free_lock +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x045f13cd dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x047129f7 module_refcount +EXPORT_SYMBOL vmlinux 0x04820a31 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x048a273a inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x04b197f2 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x04b448ed udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x04c62fd7 __memset +EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi +EXPORT_SYMBOL vmlinux 0x04d99b00 __serio_register_driver +EXPORT_SYMBOL vmlinux 0x04e6b9ce __devm_request_region +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x04f49cb4 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x05190745 get_cached_acl +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x052fc500 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x05303b87 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x0542744b build_skb +EXPORT_SYMBOL vmlinux 0x055ad4b4 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x055c8559 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x056530ce revert_creds +EXPORT_SYMBOL vmlinux 0x056562f6 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x0574b9d3 tcf_hash_check +EXPORT_SYMBOL vmlinux 0x057c4088 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x05868bc0 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x05a1bdf2 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x05a512db bdget_disk +EXPORT_SYMBOL vmlinux 0x05f4f470 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x06052f8d __memmove +EXPORT_SYMBOL vmlinux 0x06073585 param_ops_ullong +EXPORT_SYMBOL vmlinux 0x0611a26b inet_getname +EXPORT_SYMBOL vmlinux 0x0615b2fa mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x061f4039 acpi_get_table_with_size +EXPORT_SYMBOL vmlinux 0x0623743b proc_douintvec +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x063ee507 pnp_possible_config +EXPORT_SYMBOL vmlinux 0x06688789 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x0688bf03 tcp_destroy_cgroup +EXPORT_SYMBOL vmlinux 0x068c7263 ioremap_cache +EXPORT_SYMBOL vmlinux 0x068c9995 dev_driver_string +EXPORT_SYMBOL vmlinux 0x06a61158 unregister_nls +EXPORT_SYMBOL vmlinux 0x06a75635 bdi_destroy +EXPORT_SYMBOL vmlinux 0x06c0dae5 __kernel_fpu_end +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x06ffde99 kernel_listen +EXPORT_SYMBOL vmlinux 0x071d1650 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x0784fa6e kill_pgrp +EXPORT_SYMBOL vmlinux 0x07861e48 tty_register_driver +EXPORT_SYMBOL vmlinux 0x078822e4 gen_pool_create +EXPORT_SYMBOL vmlinux 0x07893c9c account_page_dirtied +EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free +EXPORT_SYMBOL vmlinux 0x07a5621f copy_from_iter +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07a9ef84 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x07c73a38 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07eb3909 __inode_permission +EXPORT_SYMBOL vmlinux 0x08030785 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x0812e60e neigh_ifdown +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x08316b23 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x0855cf60 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x08603cd0 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x0897287b acpi_disable_all_gpes +EXPORT_SYMBOL vmlinux 0x08975d6e dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x08a97504 compat_sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x08b8ddf1 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x08cbb38a simple_write_begin +EXPORT_SYMBOL vmlinux 0x08d41d3f mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x0915d9f5 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x092a6a69 have_submounts +EXPORT_SYMBOL vmlinux 0x093e9b0c kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key +EXPORT_SYMBOL vmlinux 0x095a2ff3 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x0969567c submit_bh +EXPORT_SYMBOL vmlinux 0x09696626 acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x0975023d dev_change_flags +EXPORT_SYMBOL vmlinux 0x0980c14d iget5_locked +EXPORT_SYMBOL vmlinux 0x098431ba acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0x0985aca1 tso_build_data +EXPORT_SYMBOL vmlinux 0x098ae045 iunique +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x099c309e inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x09af5196 devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0x09b66856 deactivate_super +EXPORT_SYMBOL vmlinux 0x09b86fb6 generic_fillattr +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09da0d2f scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x09de64df set_pages_array_wc +EXPORT_SYMBOL vmlinux 0x09dedfa6 padata_alloc +EXPORT_SYMBOL vmlinux 0x09e88526 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x09fe2504 swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0x0a135b70 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a2b1a38 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x0a40a6dc backlight_force_update +EXPORT_SYMBOL vmlinux 0x0a51fe3c dquot_operations +EXPORT_SYMBOL vmlinux 0x0a57863e cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x0a661faa lg_local_unlock +EXPORT_SYMBOL vmlinux 0x0a67dd52 make_bad_inode +EXPORT_SYMBOL vmlinux 0x0a6972e8 inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0x0a76b139 file_update_time +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a9921b8 cdev_add +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0accd56a dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b122e37 __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b284142 dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x0b36dcc2 generic_removexattr +EXPORT_SYMBOL vmlinux 0x0b45ac32 __destroy_inode +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b7f1fa2 skb_unlink +EXPORT_SYMBOL vmlinux 0x0b8110ed jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x0b905c66 __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x0b93e4fb ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x0ba0198f ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x0ba619cc tty_unthrottle +EXPORT_SYMBOL vmlinux 0x0bb00c5a netif_device_attach +EXPORT_SYMBOL vmlinux 0x0bb8f00d input_inject_event +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bcdfae1 phy_attach +EXPORT_SYMBOL vmlinux 0x0bebd2d4 sock_register +EXPORT_SYMBOL vmlinux 0x0bfa3349 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x0bfc0ff1 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x0c21d019 flush_delayed_work +EXPORT_SYMBOL vmlinux 0x0c255c53 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x0c32ae88 pci_dev_put +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c4b83c0 __brelse +EXPORT_SYMBOL vmlinux 0x0c4e6616 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c69c353 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c7013dc agp_create_memory +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0ca7b7a8 acpi_check_region +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cb24ce7 bio_split +EXPORT_SYMBOL vmlinux 0x0cdb7d12 __kernel_fpu_begin +EXPORT_SYMBOL vmlinux 0x0cf14048 devm_ioport_map +EXPORT_SYMBOL vmlinux 0x0cf4449a tcp_prot +EXPORT_SYMBOL vmlinux 0x0d0810b0 bioset_create +EXPORT_SYMBOL vmlinux 0x0d177aac blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x0d254767 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x0d289aaa ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x0d3dda14 acpi_get_type +EXPORT_SYMBOL vmlinux 0x0d4a4fc9 set_pages_uc +EXPORT_SYMBOL vmlinux 0x0d53155f bh_submit_read +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d6ea39e jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x0d7258f2 param_get_short +EXPORT_SYMBOL vmlinux 0x0d77cda0 __page_cache_alloc +EXPORT_SYMBOL vmlinux 0x0d7a9a04 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x0d80efb5 acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0x0d9219fe ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0da55903 inode_set_flags +EXPORT_SYMBOL vmlinux 0x0dbfa4b3 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x0dc7fce8 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x0dcc4361 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x0dd599df __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x0df57cc5 dentry_unhash +EXPORT_SYMBOL vmlinux 0x0df64590 fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0x0e1738b3 elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x0e1fcb68 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x0e216492 dev_get_flags +EXPORT_SYMBOL vmlinux 0x0e22094c xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x0e2d7e73 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x0e5f63fb pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e87daf6 seq_release +EXPORT_SYMBOL vmlinux 0x0e8a3d14 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x0eb22410 inet_sendpage +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0eca8a13 nf_log_packet +EXPORT_SYMBOL vmlinux 0x0ed8cc7b acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f116119 vfs_getattr +EXPORT_SYMBOL vmlinux 0x0f332839 __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x0f386d98 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x0f434650 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x0f4a8a74 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f62da84 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f8114ec bdi_register_dev +EXPORT_SYMBOL vmlinux 0x0f87dd27 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x0f8ad1c4 param_get_uint +EXPORT_SYMBOL vmlinux 0x0f9adb37 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fd00a68 acpi_clear_event +EXPORT_SYMBOL vmlinux 0x0fe67804 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x0fed6c86 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress +EXPORT_SYMBOL vmlinux 0x0ffc6270 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x1000c0cd netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x100e00e9 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x1046b38c tty_do_resize +EXPORT_SYMBOL vmlinux 0x105b53dd block_write_full_page +EXPORT_SYMBOL vmlinux 0x10630953 put_page +EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user +EXPORT_SYMBOL vmlinux 0x107bce56 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x10860bd8 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x10950ee1 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x109c58af devm_free_irq +EXPORT_SYMBOL vmlinux 0x10ac0ccd vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0x10bee9c5 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x10d6413c nvm_put_blk +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x10fa3b3e scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x1104f63b neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x113580bb scsi_device_put +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x118eaf72 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x119aa83f dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x11a1a688 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x11b7cd52 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0x11bab38d inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x123f82f3 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x1250c7e1 _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x125f91a7 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x1281827a capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x1287db1d inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x129e692a jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12dfeb12 vprintk_emit +EXPORT_SYMBOL vmlinux 0x12f32e1c compat_tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x1305d532 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x130c9455 udp_proc_register +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x131d86bb __scsi_add_device +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x1324473c phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x132606f5 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x132c7d47 vga_switcheroo_fini_domain_pm_ops +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc +EXPORT_SYMBOL vmlinux 0x13448e3e genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x1346987f md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x134bad44 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x135e4e93 param_get_ullong +EXPORT_SYMBOL vmlinux 0x13847644 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x138bb668 mmc_start_req +EXPORT_SYMBOL vmlinux 0x13ae01d7 put_filp +EXPORT_SYMBOL vmlinux 0x13b2bc95 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x13b402fd kernel_read +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13e04fbb mmc_power_save_host +EXPORT_SYMBOL vmlinux 0x13e82a14 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x13ebd175 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13ff1b98 pci_iounmap +EXPORT_SYMBOL vmlinux 0x140bc2ab simple_transaction_read +EXPORT_SYMBOL vmlinux 0x14224bea blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x142e04e4 nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x14440887 vga_con +EXPORT_SYMBOL vmlinux 0x144bbb87 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x14670779 register_shrinker +EXPORT_SYMBOL vmlinux 0x14670aac pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x147872db pci_disable_device +EXPORT_SYMBOL vmlinux 0x1482978b mmc_can_erase +EXPORT_SYMBOL vmlinux 0x14920eaa blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x149da1fa mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14da772f agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0x14f0cd9a blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x150389d6 acpi_processor_power_init_bm_check +EXPORT_SYMBOL vmlinux 0x1514c04c nf_log_trace +EXPORT_SYMBOL vmlinux 0x152958c4 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x154372f7 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x1547bfd6 __wait_on_bit +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x156a8a59 down_trylock +EXPORT_SYMBOL vmlinux 0x15799c11 _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x15ae3884 skb_pull +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bc6c81 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x15c302e1 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x15c93f55 input_release_device +EXPORT_SYMBOL vmlinux 0x15d768f5 register_gifconf +EXPORT_SYMBOL vmlinux 0x15d7a0d8 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x160ea4c8 sfi_disabled +EXPORT_SYMBOL vmlinux 0x1616cb30 acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0x162e3da5 fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null +EXPORT_SYMBOL vmlinux 0x1646c767 loop_register_transfer +EXPORT_SYMBOL vmlinux 0x164e4072 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x1678c52b generic_update_time +EXPORT_SYMBOL vmlinux 0x16790082 flow_cache_lookup +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 +EXPORT_SYMBOL vmlinux 0x16855149 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x16978fb6 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x16b930f0 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x16dc4d1f fence_init +EXPORT_SYMBOL vmlinux 0x16e04302 init_net +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x170c25ee acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x1713c6c0 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x176627f1 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x177f5e62 notify_change +EXPORT_SYMBOL vmlinux 0x178044b0 proto_register +EXPORT_SYMBOL vmlinux 0x1783dafd devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x178fc438 gen_new_estimator +EXPORT_SYMBOL vmlinux 0x179122b3 nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0x1793f685 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x179651ac _raw_read_lock +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17b3ff44 pci_save_state +EXPORT_SYMBOL vmlinux 0x17b504bb max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x17b6c18e send_sig_info +EXPORT_SYMBOL vmlinux 0x17ccd3b7 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x17ee365e mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x17fc297e sock_sendmsg +EXPORT_SYMBOL vmlinux 0x17fee311 __pagevec_release +EXPORT_SYMBOL vmlinux 0x18091ea0 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x18272d55 dm_io +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x182c49db update_devfreq +EXPORT_SYMBOL vmlinux 0x182d8ebc set_cached_acl +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x186b0128 mmc_put_card +EXPORT_SYMBOL vmlinux 0x187f8585 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x1883b68c nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x188a74e0 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x1896dc50 set_binfmt +EXPORT_SYMBOL vmlinux 0x1896fe37 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x18a5472e xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x18b72573 register_kmmio_probe +EXPORT_SYMBOL vmlinux 0x18ca6192 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x18cadc0b truncate_pagecache +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x1916e38c _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x19178ea6 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x194e23f0 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x1954fbe7 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x19678148 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x196c3be9 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x1974a575 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x19756c3e dev_add_pack +EXPORT_SYMBOL vmlinux 0x198a4385 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19a290ca devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19bef053 vme_register_driver +EXPORT_SYMBOL vmlinux 0x19eb1ad7 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x19fee265 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x1a03950b kernel_param_lock +EXPORT_SYMBOL vmlinux 0x1a0b6ad9 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x1a41af32 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a617351 blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch +EXPORT_SYMBOL vmlinux 0x1a69e5c0 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x1a7af6ef blk_get_request +EXPORT_SYMBOL vmlinux 0x1a8ca55d md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x1a92eb0a bio_add_page +EXPORT_SYMBOL vmlinux 0x1ab66bd2 d_path +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1ad3e107 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x1ae88b3a i2c_master_send +EXPORT_SYMBOL vmlinux 0x1aea9970 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x1afb1aaa acpi_mark_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b072548 kill_anon_super +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b570d23 acpi_warning +EXPORT_SYMBOL vmlinux 0x1b61aac2 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b71669b get_mm_exe_file +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b9e8888 elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer +EXPORT_SYMBOL vmlinux 0x1bd7ea44 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x1bd941ca eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x1be1dd26 lg_global_lock +EXPORT_SYMBOL vmlinux 0x1bef262a set_pages_x +EXPORT_SYMBOL vmlinux 0x1bf2aebc jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x1bfaf517 mmc_get_card +EXPORT_SYMBOL vmlinux 0x1bfc4391 dev_deactivate +EXPORT_SYMBOL vmlinux 0x1c0adf19 inode_permission +EXPORT_SYMBOL vmlinux 0x1c2e85e1 misc_deregister +EXPORT_SYMBOL vmlinux 0x1c301f33 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x1c30b100 d_genocide +EXPORT_SYMBOL vmlinux 0x1c4630b7 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x1c5ff4ae update_region +EXPORT_SYMBOL vmlinux 0x1c78e7b4 __init_rwsem +EXPORT_SYMBOL vmlinux 0x1c8a04b0 acpi_reset +EXPORT_SYMBOL vmlinux 0x1c9a30a6 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x1cad915a dquot_release +EXPORT_SYMBOL vmlinux 0x1caf0cfd tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x1cb99042 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x1cbc68a2 dcache_readdir +EXPORT_SYMBOL vmlinux 0x1cbc9618 pskb_expand_head +EXPORT_SYMBOL vmlinux 0x1cbcaeb9 inet_offloads +EXPORT_SYMBOL vmlinux 0x1ceae786 uart_register_driver +EXPORT_SYMBOL vmlinux 0x1d1056e5 crc32_be +EXPORT_SYMBOL vmlinux 0x1d169ae7 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x1d1fac20 skb_seq_read +EXPORT_SYMBOL vmlinux 0x1d23db84 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x1d2dc20b ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0x1d476074 devm_gpiod_put +EXPORT_SYMBOL vmlinux 0x1d4a0e66 module_put +EXPORT_SYMBOL vmlinux 0x1d56a68e ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x1d8717c4 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x1d890288 led_set_brightness +EXPORT_SYMBOL vmlinux 0x1d8e70c2 phy_stop +EXPORT_SYMBOL vmlinux 0x1db7706b __copy_user_nocache +EXPORT_SYMBOL vmlinux 0x1dc1ed61 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1de74f72 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0x1de98fe6 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x1df44acf pci_scan_bus +EXPORT_SYMBOL vmlinux 0x1e036c98 acpi_set_gpe +EXPORT_SYMBOL vmlinux 0x1e047854 warn_slowpath_fmt +EXPORT_SYMBOL vmlinux 0x1e0c2be4 ioremap_wc +EXPORT_SYMBOL vmlinux 0x1e0dadb6 dns_query +EXPORT_SYMBOL vmlinux 0x1e1ee0f2 padata_remove_cpu +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e34d222 scsi_init_io +EXPORT_SYMBOL vmlinux 0x1e58b9e0 qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e765a59 filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0x1e87a395 mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea5f404 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x1ea9c10d devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector +EXPORT_SYMBOL vmlinux 0x1edc53c5 param_set_short +EXPORT_SYMBOL vmlinux 0x1efbf1b4 param_get_charp +EXPORT_SYMBOL vmlinux 0x1efddf81 kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0x1f15073c blk_finish_request +EXPORT_SYMBOL vmlinux 0x1f159457 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x1f2a4e2a agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0x1f385737 seq_lseek +EXPORT_SYMBOL vmlinux 0x1f3b6126 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x1f6ce67a sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x1f6e4937 register_console +EXPORT_SYMBOL vmlinux 0x1f756756 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x1f75f29a sg_miter_next +EXPORT_SYMBOL vmlinux 0x1fa698da finish_open +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fcac1db cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x1fd02dad swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fde0311 skb_push +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x2005e68a acpi_remove_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x20092385 acpi_enter_sleep_state_s4bios +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x200cf0bc swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x200d2a2e netdev_info +EXPORT_SYMBOL vmlinux 0x200d5dec dma_ops +EXPORT_SYMBOL vmlinux 0x201b0ac0 lg_global_unlock +EXPORT_SYMBOL vmlinux 0x2026e488 key_invalidate +EXPORT_SYMBOL vmlinux 0x203eeb90 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0x2044aea7 amd_iommu_pc_get_max_banks +EXPORT_SYMBOL vmlinux 0x204aa53e nd_pfn_probe +EXPORT_SYMBOL vmlinux 0x204b8c16 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204c371c mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x206cc6b8 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x20777b0c nobh_writepage +EXPORT_SYMBOL vmlinux 0x208739f6 acpi_load_table +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20bcd34c vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x20c325ab sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20d1e255 kill_litter_super +EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x20f53539 scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0x20f57bdc vga_tryget +EXPORT_SYMBOL vmlinux 0x20f58a4a tcp_disconnect +EXPORT_SYMBOL vmlinux 0x20fbe8ee __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x211f68f1 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x213034b0 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x21760124 agp_bridge +EXPORT_SYMBOL vmlinux 0x21779159 blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0x217f3a78 swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0x2189ce75 dev_addr_add +EXPORT_SYMBOL vmlinux 0x218be917 dev_change_carrier +EXPORT_SYMBOL vmlinux 0x219b8d00 clear_nlink +EXPORT_SYMBOL vmlinux 0x21a181d3 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x21a701fe fence_signal +EXPORT_SYMBOL vmlinux 0x21ab2243 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x21afe95e mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x21cc724b blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x21d1c8e4 vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0x21dcad02 __alloc_skb +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21e992a5 ida_simple_get +EXPORT_SYMBOL vmlinux 0x21ee96bd get_user_pages +EXPORT_SYMBOL vmlinux 0x2203f316 bmap +EXPORT_SYMBOL vmlinux 0x2207a57f prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x22113b84 file_open_root +EXPORT_SYMBOL vmlinux 0x221bccc2 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x2223316f blk_peek_request +EXPORT_SYMBOL vmlinux 0x22260701 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x2229b9d9 param_ops_byte +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x2247419b max8925_set_bits +EXPORT_SYMBOL vmlinux 0x224e5692 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x2253d8f0 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x226704a8 compat_ip_setsockopt +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x22840e74 skb_copy +EXPORT_SYMBOL vmlinux 0x2287f651 posix_acl_valid +EXPORT_SYMBOL vmlinux 0x229647d6 make_kuid +EXPORT_SYMBOL vmlinux 0x22968030 nvm_unregister_target +EXPORT_SYMBOL vmlinux 0x2298be58 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22cee791 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x22d9f40a acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x22e6971c blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x22e712ff __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x22f33727 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x22f90d2f dquot_transfer +EXPORT_SYMBOL vmlinux 0x22f9916b inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x2310adcc xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x232af19f generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x232d18ec rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x232e4d85 kthread_bind +EXPORT_SYMBOL vmlinux 0x23325995 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x234202c2 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x234bd8fd pnp_activate_dev +EXPORT_SYMBOL vmlinux 0x2359e2ff fb_class +EXPORT_SYMBOL vmlinux 0x235d3640 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x23690eea scsi_scan_host +EXPORT_SYMBOL vmlinux 0x236aae18 inode_init_owner +EXPORT_SYMBOL vmlinux 0x236ac8a3 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x2373f491 mutex_trylock +EXPORT_SYMBOL vmlinux 0x23861461 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x2386ccb8 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x23955bf3 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x239ac099 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23a779fd __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x23a9661a read_cache_pages +EXPORT_SYMBOL vmlinux 0x23ae4a92 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23bfa65a dev_open +EXPORT_SYMBOL vmlinux 0x23c35c10 nf_hook_slow +EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x23ce0d28 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x23cf97db vm_event_states +EXPORT_SYMBOL vmlinux 0x23ebf91e neigh_seq_next +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x240227ac set_posix_acl +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x242a242d inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0x24422330 inode_init_once +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x2444759a simple_pin_fs +EXPORT_SYMBOL vmlinux 0x24539748 import_iovec +EXPORT_SYMBOL vmlinux 0x2458703c md_reload_sb +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x24817579 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x24906767 may_umount_tree +EXPORT_SYMBOL vmlinux 0x2494fbb9 unload_nls +EXPORT_SYMBOL vmlinux 0x249b6181 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0x24d1a848 down_write +EXPORT_SYMBOL vmlinux 0x24e85fce start_tty +EXPORT_SYMBOL vmlinux 0x24f1281e make_kgid +EXPORT_SYMBOL vmlinux 0x24f48310 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x24fdf4d4 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x2537c9ad vfs_rename +EXPORT_SYMBOL vmlinux 0x2562dca3 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x256577a8 padata_do_serial +EXPORT_SYMBOL vmlinux 0x256e4dc7 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x25836ddf simple_transaction_set +EXPORT_SYMBOL vmlinux 0x25a8cb6d swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0x25c11130 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x25cd061e gnttab_alloc_pages +EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25f1a91a register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x26376157 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263e6ebd proc_create_data +EXPORT_SYMBOL vmlinux 0x26416672 arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0x264f5ceb sock_from_file +EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux +EXPORT_SYMBOL vmlinux 0x265b76e9 generic_setlease +EXPORT_SYMBOL vmlinux 0x2661d2b4 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x2665d53a key_create_or_update +EXPORT_SYMBOL vmlinux 0x267c2016 cros_ec_check_result +EXPORT_SYMBOL vmlinux 0x2687c52a scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x2689968b rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x26948d96 copy_user_enhanced_fast_string +EXPORT_SYMBOL vmlinux 0x269bb40e register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x26c31cae __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x26cb34a2 mempool_create +EXPORT_SYMBOL vmlinux 0x26e24021 skb_find_text +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x26ec8380 try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x26fbaf28 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x27246ac0 set_groups +EXPORT_SYMBOL vmlinux 0x272a4306 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x27504227 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x2754064a simple_lookup +EXPORT_SYMBOL vmlinux 0x2770e4ae fasync_helper +EXPORT_SYMBOL vmlinux 0x27734ed9 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x27769db0 xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0x2777e9f7 arp_xmit +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x2786e71a kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x27882b9b ida_simple_remove +EXPORT_SYMBOL vmlinux 0x278eb432 inet_listen +EXPORT_SYMBOL vmlinux 0x2791a0b8 register_xen_selfballooning +EXPORT_SYMBOL vmlinux 0x27ae7d0c ec_transaction +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c33efe csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x27c400b1 cdev_del +EXPORT_SYMBOL vmlinux 0x27cd90a2 bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x27cfea5a mutex_unlock +EXPORT_SYMBOL vmlinux 0x27d62347 block_commit_write +EXPORT_SYMBOL vmlinux 0x27d8c0bb pci_select_bars +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x280fe60a xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x28133f43 kernel_sendpage +EXPORT_SYMBOL vmlinux 0x2815f3b7 skb_store_bits +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x28318305 snprintf +EXPORT_SYMBOL vmlinux 0x2833fcb7 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x28439d19 blk_put_queue +EXPORT_SYMBOL vmlinux 0x2848f164 phy_print_status +EXPORT_SYMBOL vmlinux 0x28490a6e pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x2859d9b5 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x289be2a3 inet_release +EXPORT_SYMBOL vmlinux 0x28a2b29f radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28a45741 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x28abfe6e scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x28b047f3 vme_register_bridge +EXPORT_SYMBOL vmlinux 0x28d4137d input_flush_device +EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available +EXPORT_SYMBOL vmlinux 0x28f12cb3 __scm_send +EXPORT_SYMBOL vmlinux 0x2908e024 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x291b290f nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0x294118b2 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x294cf0b2 key_revoke +EXPORT_SYMBOL vmlinux 0x295158fd dentry_update_name_case +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x29680bff generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x29b0c263 pci_assign_resource +EXPORT_SYMBOL vmlinux 0x29b2279e __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x29ff14f0 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x2a15d70e genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x2a2e2788 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a4d7038 dev_notice +EXPORT_SYMBOL vmlinux 0x2a565a25 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x2a5f4882 replace_mount_options +EXPORT_SYMBOL vmlinux 0x2a6a16ee iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x2aa1e4de jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x2aad04c6 netpoll_setup +EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x2ab69220 netdev_master_upper_dev_link_private +EXPORT_SYMBOL vmlinux 0x2abe2a32 read_cache_page +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2ad9a73d nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0x2af15baa inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x2af7e095 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x2b05a21b intel_gtt_get +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b35d701 skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x2b4433df end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x2b47b9ee key_unlink +EXPORT_SYMBOL vmlinux 0x2b4a97c0 devm_clk_put +EXPORT_SYMBOL vmlinux 0x2b541876 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x2b6bf62a inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x2b779563 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x2b7f87fc sock_alloc_file +EXPORT_SYMBOL vmlinux 0x2b8dd26f ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2ba8e703 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x2bb55d6e acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x2bcce224 textsearch_register +EXPORT_SYMBOL vmlinux 0x2bfeb410 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c2873cb key_reject_and_link +EXPORT_SYMBOL vmlinux 0x2c3bd23f tty_unlock +EXPORT_SYMBOL vmlinux 0x2c5d5b64 __sock_create +EXPORT_SYMBOL vmlinux 0x2c61dea8 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x2ca319a6 wrmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x2ca3f5b6 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x2cabc6a4 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x2cad8ec8 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x2cc40ecf fence_remove_callback +EXPORT_SYMBOL vmlinux 0x2ccc5367 md_flush_request +EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x2cf742d9 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x2cf875ee security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x2cfb902a skb_dequeue +EXPORT_SYMBOL vmlinux 0x2d08f841 sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x2d12c8e4 input_reset_device +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d144e21 rdmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x2d2bfc01 ht_create_irq +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d5abe64 eth_header_parse +EXPORT_SYMBOL vmlinux 0x2d70596a audit_log_start +EXPORT_SYMBOL vmlinux 0x2d9b4681 parent_mem_cgroup +EXPORT_SYMBOL vmlinux 0x2db19f75 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x2db787c7 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu +EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink +EXPORT_SYMBOL vmlinux 0x2ddc3bb3 vfs_readv +EXPORT_SYMBOL vmlinux 0x2de3d75e tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x2de7b62d param_get_bool +EXPORT_SYMBOL vmlinux 0x2decc278 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x2dedc4c2 acpi_format_exception +EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write +EXPORT_SYMBOL vmlinux 0x2dff016b param_get_string +EXPORT_SYMBOL vmlinux 0x2e0d2f7f queue_work_on +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e497440 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x2e4ecc81 path_noexec +EXPORT_SYMBOL vmlinux 0x2e593a27 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0x2e94ba76 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x2e9dbdda phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x2ea84ac6 tty_lock +EXPORT_SYMBOL vmlinux 0x2ebe372d dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x2eed1cfe pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource +EXPORT_SYMBOL vmlinux 0x2f0fd3ea zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x2f2880df iterate_dir +EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f5573d8 read_code +EXPORT_SYMBOL vmlinux 0x2f64f89f cpu_present_mask +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fbd5267 icmpv6_send +EXPORT_SYMBOL vmlinux 0x2fd051dc inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2ff063b5 acpi_get_name +EXPORT_SYMBOL vmlinux 0x2ff16a45 d_walk +EXPORT_SYMBOL vmlinux 0x2ffa3dc0 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x3000355d blk_start_queue_async +EXPORT_SYMBOL vmlinux 0x30085292 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x3027475e textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x304895bc proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x3050f7dc redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x3058ebf0 param_ops_bint +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30b01053 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x30b04526 ida_init +EXPORT_SYMBOL vmlinux 0x30c55c94 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x30ca4ccb flow_cache_fini +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30e96c0c tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x30f5da8c xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x30faad02 blk_start_request +EXPORT_SYMBOL vmlinux 0x3102d680 ps2_end_command +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310f02ec memremap +EXPORT_SYMBOL vmlinux 0x312e8a51 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x313d7635 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x31465f96 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x3153d353 ata_dev_printk +EXPORT_SYMBOL vmlinux 0x316235ff dentry_needs_remove_privs +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x31a9a33f dev_alloc_name +EXPORT_SYMBOL vmlinux 0x31b31f5c csum_partial_copy_nocheck +EXPORT_SYMBOL vmlinux 0x31d33bb4 __blk_end_request_all +EXPORT_SYMBOL vmlinux 0x31e648fb pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x31e76b57 recalibrate_cpu_khz +EXPORT_SYMBOL vmlinux 0x31ec44a0 _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0x31f18486 audit_log_task_info +EXPORT_SYMBOL vmlinux 0x3202435a wrmsr_safe_regs +EXPORT_SYMBOL vmlinux 0x320bd327 qdisc_list_add +EXPORT_SYMBOL vmlinux 0x321536eb serio_unregister_port +EXPORT_SYMBOL vmlinux 0x322070f4 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x322ffcdb blk_end_request_all +EXPORT_SYMBOL vmlinux 0x324adee6 tcp_poll +EXPORT_SYMBOL vmlinux 0x324fcff5 is_nd_btt +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x32568194 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom +EXPORT_SYMBOL vmlinux 0x3266aed9 pci_restore_state +EXPORT_SYMBOL vmlinux 0x326c03d9 setattr_copy +EXPORT_SYMBOL vmlinux 0x327cd399 generic_file_open +EXPORT_SYMBOL vmlinux 0x3293fd5f pci_get_slot +EXPORT_SYMBOL vmlinux 0x3297ae80 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x32ca5139 register_md_personality +EXPORT_SYMBOL vmlinux 0x32ce767f generic_make_request +EXPORT_SYMBOL vmlinux 0x32cfe803 inode_dio_wait +EXPORT_SYMBOL vmlinux 0x32d09891 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x32ede6b0 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x3315c855 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x331620fa netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x333cb37c __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x333cf866 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x336ef409 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x33917b58 input_set_keycode +EXPORT_SYMBOL vmlinux 0x33956712 arch_dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x3399eb6d blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x33a74249 amd_iommu_flush_tlb +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33c03ac3 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33d61242 fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0x33dd25c0 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x33dd420a netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x33ea2057 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33fb1e0f netdev_warn +EXPORT_SYMBOL vmlinux 0x33fc9e62 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x344298a0 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x3465a5a0 inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x347044fe fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x347f7c03 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x349213ef cpu_core_map +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34b5e6d8 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x34cb137e __put_cred +EXPORT_SYMBOL vmlinux 0x34daad66 devm_gpio_request +EXPORT_SYMBOL vmlinux 0x34dba3cb param_set_charp +EXPORT_SYMBOL vmlinux 0x34ddd4bb filemap_map_pages +EXPORT_SYMBOL vmlinux 0x34e71809 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x351c17e6 fget_raw +EXPORT_SYMBOL vmlinux 0x35366a00 sk_capable +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x353e21e3 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x355c85d3 page_put_link +EXPORT_SYMBOL vmlinux 0x35630259 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x357bf710 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x358f7ff2 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x35907029 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x35a42460 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35b705f5 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x35fc0443 netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0x3601be89 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x3630d162 inet_ioctl +EXPORT_SYMBOL vmlinux 0x3632ca45 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x363fc5e7 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x36406496 clkdev_alloc +EXPORT_SYMBOL vmlinux 0x368b3baf scm_fp_dup +EXPORT_SYMBOL vmlinux 0x369e1115 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x36aea309 dst_init +EXPORT_SYMBOL vmlinux 0x36b002a1 dev_trans_start +EXPORT_SYMBOL vmlinux 0x36b05f74 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x36b17f7e pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36c0c566 generic_setxattr +EXPORT_SYMBOL vmlinux 0x3701a196 csum_partial_copy_to_user +EXPORT_SYMBOL vmlinux 0x370f9850 efi +EXPORT_SYMBOL vmlinux 0x37136729 mmc_flush_cache +EXPORT_SYMBOL vmlinux 0x3729f6db mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x37504d05 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x3754a16a jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0x3774376c pci_fixup_device +EXPORT_SYMBOL vmlinux 0x377a4405 search_binary_handler +EXPORT_SYMBOL vmlinux 0x37800514 empty_aops +EXPORT_SYMBOL vmlinux 0x379b6bc7 xfrm_input +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37dc30b1 mntput +EXPORT_SYMBOL vmlinux 0x38099e13 wrmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x38273d32 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x382a5ddb acpi_device_hid +EXPORT_SYMBOL vmlinux 0x383c7a0d elv_add_request +EXPORT_SYMBOL vmlinux 0x386f9701 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0x3880435a tcp_req_err +EXPORT_SYMBOL vmlinux 0x3884d76c submit_bio_wait +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x38877d46 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38b4eff8 __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x38bf7f75 netif_napi_add +EXPORT_SYMBOL vmlinux 0x38c23acd param_get_invbool +EXPORT_SYMBOL vmlinux 0x38cbde9d neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x38d69319 ether_setup +EXPORT_SYMBOL vmlinux 0x38e6b0f0 __dst_free +EXPORT_SYMBOL vmlinux 0x38e92f50 dump_page +EXPORT_SYMBOL vmlinux 0x38e9d20b dm_get_device +EXPORT_SYMBOL vmlinux 0x38f33bed dump_fpu +EXPORT_SYMBOL vmlinux 0x39078b41 pagecache_write_end +EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages +EXPORT_SYMBOL vmlinux 0x390b5752 kset_unregister +EXPORT_SYMBOL vmlinux 0x3917f8cc inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x391e526e vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x392c92ae dquot_drop +EXPORT_SYMBOL vmlinux 0x39388109 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393d4de9 crc32_le +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x394e875a device_get_mac_address +EXPORT_SYMBOL vmlinux 0x39525e28 d_tmpfile +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x395a4fc3 mpage_writepage +EXPORT_SYMBOL vmlinux 0x395dcd3d uart_update_timeout +EXPORT_SYMBOL vmlinux 0x39657e6a fd_install +EXPORT_SYMBOL vmlinux 0x397bdd46 param_array_ops +EXPORT_SYMBOL vmlinux 0x397bfb86 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0x3996e90f ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x399d434c register_key_type +EXPORT_SYMBOL vmlinux 0x39a055f3 acpi_remove_gpe_handler +EXPORT_SYMBOL vmlinux 0x39a25f66 scsi_print_command +EXPORT_SYMBOL vmlinux 0x39aee1fe vme_irq_free +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39c30879 simple_empty +EXPORT_SYMBOL vmlinux 0x39dd9223 x86_hyper_vmware +EXPORT_SYMBOL vmlinux 0x39e42cfc mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x39f1c2f4 ida_get_new_above +EXPORT_SYMBOL vmlinux 0x39f372a9 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x39f6f0c7 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x39f74849 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify +EXPORT_SYMBOL vmlinux 0x3a151cf6 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush +EXPORT_SYMBOL vmlinux 0x3a3bdd3b netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x3a46f1d0 simple_statfs +EXPORT_SYMBOL vmlinux 0x3a4af2ee __vfs_read +EXPORT_SYMBOL vmlinux 0x3a535272 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x3a7497e7 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x3a8967e7 amd_iommu_device_info +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3aab0c1d jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x3ab8b8dc udp_add_offload +EXPORT_SYMBOL vmlinux 0x3ad9fc9d backlight_device_register +EXPORT_SYMBOL vmlinux 0x3adcb504 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x3aef1f2f compat_ip_getsockopt +EXPORT_SYMBOL vmlinux 0x3afe96eb scsi_host_get +EXPORT_SYMBOL vmlinux 0x3b100f96 bio_unmap_user +EXPORT_SYMBOL vmlinux 0x3b2fefaf bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0x3b5ad2ef blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0x3b63cf08 tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6f6cd2 udp_table +EXPORT_SYMBOL vmlinux 0x3b728155 d_move +EXPORT_SYMBOL vmlinux 0x3b7aa2f4 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x3b8c2d72 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x3b8d6dd8 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x3bb5114a prepare_to_wait +EXPORT_SYMBOL vmlinux 0x3becef4e netlink_net_capable +EXPORT_SYMBOL vmlinux 0x3bf55869 agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x3c1624e1 unregister_md_personality +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c483012 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x3c4c2be4 __ps2_command +EXPORT_SYMBOL vmlinux 0x3c533ec6 page_cache_next_hole +EXPORT_SYMBOL vmlinux 0x3c54ea20 bio_integrity_endio +EXPORT_SYMBOL vmlinux 0x3c6ec525 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c840957 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x3c9898f6 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x3c9b5884 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3ce84682 blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0x3cfc453c dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x3d009ca6 setup_new_exec +EXPORT_SYMBOL vmlinux 0x3d07fd96 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x3d09c5d1 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x3d1391e2 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x3d241127 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x3d4f3cd3 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x3d544aa5 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x3d6976bf module_layout +EXPORT_SYMBOL vmlinux 0x3d6b3685 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x3d7a4605 bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x3d7c1ed7 msrs_alloc +EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page +EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start +EXPORT_SYMBOL vmlinux 0x3dad4696 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x3dbf36c9 sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dd6c42e arp_send +EXPORT_SYMBOL vmlinux 0x3defa872 __elv_add_request +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e09054c scsi_host_put +EXPORT_SYMBOL vmlinux 0x3e1c77a1 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x3e2ae3a8 acpi_release_global_lock +EXPORT_SYMBOL vmlinux 0x3e3cff07 ip_ct_attach +EXPORT_SYMBOL vmlinux 0x3e3d9789 pci_claim_resource +EXPORT_SYMBOL vmlinux 0x3e462763 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x3e4eac91 i2c_release_client +EXPORT_SYMBOL vmlinux 0x3e514af9 blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x3e66e114 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x3e67fc31 pci_iomap +EXPORT_SYMBOL vmlinux 0x3e759e8b bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x3e792b61 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get +EXPORT_SYMBOL vmlinux 0x3ebd5523 thaw_super +EXPORT_SYMBOL vmlinux 0x3eed825c __nlmsg_put +EXPORT_SYMBOL vmlinux 0x3efed36b __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f1188ce vme_slave_request +EXPORT_SYMBOL vmlinux 0x3f181bc3 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x3f20ca97 rtc_lock +EXPORT_SYMBOL vmlinux 0x3f227692 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x3f3d2fcd new_inode +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4761ca generic_writepages +EXPORT_SYMBOL vmlinux 0x3f48a0fb ilookup +EXPORT_SYMBOL vmlinux 0x3f5dd17a inode_change_ok +EXPORT_SYMBOL vmlinux 0x3f5edb99 pci_set_master +EXPORT_SYMBOL vmlinux 0x3f81746b max8925_reg_read +EXPORT_SYMBOL vmlinux 0x3f9ebb58 elv_register_queue +EXPORT_SYMBOL vmlinux 0x3faaf98d fsnotify_put_group +EXPORT_SYMBOL vmlinux 0x3fc48160 file_path +EXPORT_SYMBOL vmlinux 0x3fc575c9 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x3fdc9f10 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x400e91e9 vfs_create +EXPORT_SYMBOL vmlinux 0x4023d1d6 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev +EXPORT_SYMBOL vmlinux 0x40473b53 is_nd_pfn +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x406011da udp_prot +EXPORT_SYMBOL vmlinux 0x406ed060 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x407d1ecd sk_common_release +EXPORT_SYMBOL vmlinux 0x408126d4 compat_ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x40960039 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x4097fa45 acpi_read_bit_register +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40ae0f5a simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0x40c6074b udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40c7d843 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x40c89d46 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40d86de6 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x40e56eba get_task_io_context +EXPORT_SYMBOL vmlinux 0x40e56f04 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x40e6df69 __nla_reserve +EXPORT_SYMBOL vmlinux 0x40ed9ff0 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x40f1a2fd compat_mc_setsockopt +EXPORT_SYMBOL vmlinux 0x40f34968 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x40feef64 pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0x40ff21d8 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x4121ddcd inode_set_bytes +EXPORT_SYMBOL vmlinux 0x41268242 tty_port_close +EXPORT_SYMBOL vmlinux 0x4134bdb1 nf_afinfo +EXPORT_SYMBOL vmlinux 0x41437dc2 sock_init_data +EXPORT_SYMBOL vmlinux 0x41449a21 mem_cgroup_end_page_stat +EXPORT_SYMBOL vmlinux 0x4144c937 peernet2id_alloc +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x414aebf6 serio_close +EXPORT_SYMBOL vmlinux 0x4150455a serio_bus +EXPORT_SYMBOL vmlinux 0x4166c892 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x416a302a cap_mmap_file +EXPORT_SYMBOL vmlinux 0x417d203e pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x41a3fbf1 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x41a99cd5 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x41baf194 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x41e3706c tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x4212461a vme_master_request +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x4234f096 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x42350e8d ucs2_strlen +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424c7673 fb_get_mode +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x4290d30a devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0x429952d8 nvm_put_blk_unlocked +EXPORT_SYMBOL vmlinux 0x429c0347 gnttab_free_pages +EXPORT_SYMBOL vmlinux 0x429dc9b0 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x42a04a14 agp_bind_memory +EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x42b76351 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x42b905d1 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x42c8de35 ioremap_nocache +EXPORT_SYMBOL vmlinux 0x42ef826d crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x42f98047 netif_napi_del +EXPORT_SYMBOL vmlinux 0x42ff7709 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x4319fe03 bdgrab +EXPORT_SYMBOL vmlinux 0x432e1a4b cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x43307623 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x43465cd0 napi_gro_frags +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x4352eb85 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x4365ed9a vfs_write +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x4381bb34 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x438b35ff mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x43a56f52 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x43bc4c2d dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x43cb9f9b blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x43cfe6cb lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x43d76cbb ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x43fc9bed mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x4408a2d1 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x4428e6d5 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x445f9df8 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x446052c0 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x4488ae17 param_ops_charp +EXPORT_SYMBOL vmlinux 0x4489da02 register_sysctl_table +EXPORT_SYMBOL vmlinux 0x448e085f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x448eac3e kmemdup +EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp +EXPORT_SYMBOL vmlinux 0x449fe84b acpi_set_firmware_waking_vectors +EXPORT_SYMBOL vmlinux 0x44a81d5f acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz +EXPORT_SYMBOL vmlinux 0x44ae8aff lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x44b7a1be __breadahead +EXPORT_SYMBOL vmlinux 0x44bedeba phy_register_fixup +EXPORT_SYMBOL vmlinux 0x44d09599 clkdev_add +EXPORT_SYMBOL vmlinux 0x44db0149 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44f989b9 find_get_entry +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x45659747 __napi_schedule +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource +EXPORT_SYMBOL vmlinux 0x45bb63af ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x45dfe53d unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x4604a43a mem_section +EXPORT_SYMBOL vmlinux 0x4604e28b vme_bus_type +EXPORT_SYMBOL vmlinux 0x46102f2d set_pages_array_wb +EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x461b9910 amd_northbridges +EXPORT_SYMBOL vmlinux 0x4620a36a jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x46224dda dev_printk_emit +EXPORT_SYMBOL vmlinux 0x4629334c __preempt_count +EXPORT_SYMBOL vmlinux 0x463b6448 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x4667f310 iov_iter_init +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x467f2afe uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x4687add0 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x46a007c5 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x46aabbff skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x46ae2df9 I_BDEV +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46d10a5d intel_gmch_probe +EXPORT_SYMBOL vmlinux 0x46e2de9b filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x46e34093 mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x4700b235 follow_pfn +EXPORT_SYMBOL vmlinux 0x470fa622 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x4712f5cb jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x4714275f read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x47203d5b security_path_symlink +EXPORT_SYMBOL vmlinux 0x4721d5ee get_super_thawed +EXPORT_SYMBOL vmlinux 0x472a1779 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x4740b3bc xen_arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x475f010b acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x4762c336 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x476fc258 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x477e6dcb amd_iommu_pc_get_set_reg_val +EXPORT_SYMBOL vmlinux 0x478d10b2 ht_destroy_irq +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47a1c05f sock_kfree_s +EXPORT_SYMBOL vmlinux 0x47d93cae generic_getxattr +EXPORT_SYMBOL vmlinux 0x47e87c55 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x47ec2518 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x4818bebc blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x481cb9ab acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x483842ac nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x48483878 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x4852204f __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x4855b054 register_quota_format +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x48666566 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x487f661f rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x489741a2 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x48b2664e ip_defrag +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48c70335 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x48d50e79 amd_iommu_register_ppr_notifier +EXPORT_SYMBOL vmlinux 0x48df4781 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x48e9f90a vm_insert_page +EXPORT_SYMBOL vmlinux 0x48ef79b9 fb_set_var +EXPORT_SYMBOL vmlinux 0x49016ace inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x49168fd6 generic_end_io_acct +EXPORT_SYMBOL vmlinux 0x494e3393 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x4951af5a inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x4987c91e jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x4993f357 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x49999f01 nf_unregister_hook +EXPORT_SYMBOL vmlinux 0x499df539 arp_create +EXPORT_SYMBOL vmlinux 0x49a14fa6 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x49a9c9f9 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x49fd2aa5 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x4a0442a9 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x4a0805e8 acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0x4a28480f page_readlink +EXPORT_SYMBOL vmlinux 0x4a49eaae generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x4a5bce10 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x4a8961f5 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x4a92e3a9 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x4aa75c27 lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0x4ab1a7b3 tcp_proc_register +EXPORT_SYMBOL vmlinux 0x4ab6d721 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk +EXPORT_SYMBOL vmlinux 0x4ac99e84 blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource +EXPORT_SYMBOL vmlinux 0x4adac422 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x4aefac58 done_path_create +EXPORT_SYMBOL vmlinux 0x4af44067 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x4af4eb51 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b0a21fc tso_count_descs +EXPORT_SYMBOL vmlinux 0x4b181a33 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x4b204ec0 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x4b371c99 noop_fsync +EXPORT_SYMBOL vmlinux 0x4b39187b qdisc_list_del +EXPORT_SYMBOL vmlinux 0x4b3d80c5 get_fs_type +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b667176 lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x4b82224f fsync_bdev +EXPORT_SYMBOL vmlinux 0x4b9a6a52 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x4b9dfb04 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bc724cf __scm_destroy +EXPORT_SYMBOL vmlinux 0x4bcc2c5a sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x4be93df7 blkdev_put +EXPORT_SYMBOL vmlinux 0x4bf9cfca abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c0923b5 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x4c2cdf6d find_inode_nowait +EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf +EXPORT_SYMBOL vmlinux 0x4c3654bb kobject_set_name +EXPORT_SYMBOL vmlinux 0x4c62ff4e sk_mc_loop +EXPORT_SYMBOL vmlinux 0x4c673b3d scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x4c6f1806 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x4c82710c __skb_checksum +EXPORT_SYMBOL vmlinux 0x4c878322 iosf_mbi_modify +EXPORT_SYMBOL vmlinux 0x4c8c5b7a fb_set_cmap +EXPORT_SYMBOL vmlinux 0x4c916a19 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x4c9d28b0 phys_base +EXPORT_SYMBOL vmlinux 0x4c9fc5e2 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x4ca37b78 mmc_request_done +EXPORT_SYMBOL vmlinux 0x4ca4326f seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x4ca5f57f mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x4ca9669f scnprintf +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4ce666e8 clk_register_clkdevs +EXPORT_SYMBOL vmlinux 0x4cf421c9 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x4cf9b163 dev_addr_flush +EXPORT_SYMBOL vmlinux 0x4cfc1008 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x4d0b6791 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x4d54185c sk_stream_error +EXPORT_SYMBOL vmlinux 0x4d6f77af sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x4d909c36 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9a2aa5 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4de22c25 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4df58c83 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x4e010297 devfreq_interval_update +EXPORT_SYMBOL vmlinux 0x4e08ccef sock_no_getname +EXPORT_SYMBOL vmlinux 0x4e1ccf42 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e371411 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e74f0af blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4ebba2ec iput +EXPORT_SYMBOL vmlinux 0x4ebd7a66 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x4ec11f4f up_read +EXPORT_SYMBOL vmlinux 0x4ed4094b mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x4ee312f1 registered_fb +EXPORT_SYMBOL vmlinux 0x4f16adfc get_thermal_instance +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f1fbca5 mntget +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f3361ae rtnl_create_link +EXPORT_SYMBOL vmlinux 0x4f339be8 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f4729e5 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x4f4ec745 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x4f556241 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f6b400b _copy_from_user +EXPORT_SYMBOL vmlinux 0x4f783f30 acpi_read +EXPORT_SYMBOL vmlinux 0x4f7a4827 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x4f84dd8d filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x4f8b5ddb _copy_to_user +EXPORT_SYMBOL vmlinux 0x4f9c0ba5 lookup_one_len +EXPORT_SYMBOL vmlinux 0x4fa23d8b ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x4fb6bc6c elv_rb_del +EXPORT_SYMBOL vmlinux 0x4fc8baa0 bdput +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4ff08ff7 dm_put_device +EXPORT_SYMBOL vmlinux 0x4ff204ea init_buffer +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x50505faa input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x50523d34 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x50529870 acpi_get_gpe_status +EXPORT_SYMBOL vmlinux 0x505f511d get_empty_filp +EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x506f7a60 security_inode_readlink +EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method +EXPORT_SYMBOL vmlinux 0x50a905c3 pci_release_region +EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch +EXPORT_SYMBOL vmlinux 0x50b1badb tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x50ba769a kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x50c7236f alloc_fddidev +EXPORT_SYMBOL vmlinux 0x50cc559d PDE_DATA +EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del +EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x50f45e9d nvm_get_blk +EXPORT_SYMBOL vmlinux 0x50fd5f1d ll_rw_block +EXPORT_SYMBOL vmlinux 0x51164ad9 cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x51272b49 tcp_seq_open +EXPORT_SYMBOL vmlinux 0x5141d311 try_to_release_page +EXPORT_SYMBOL vmlinux 0x514b6512 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x51548fe7 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x5169d6cb dev_uc_flush +EXPORT_SYMBOL vmlinux 0x51719973 dq_data_lock +EXPORT_SYMBOL vmlinux 0x518c7f40 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x519102b6 override_creds +EXPORT_SYMBOL vmlinux 0x51a28015 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x51ccd5c8 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x51d11d47 md_write_start +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51dd7418 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x51e2662c generic_permission +EXPORT_SYMBOL vmlinux 0x51e4a0af posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x51f212c3 md_done_sync +EXPORT_SYMBOL vmlinux 0x51f5f326 seq_path +EXPORT_SYMBOL vmlinux 0x51ff4805 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x52095e19 acpi_get_data +EXPORT_SYMBOL vmlinux 0x52130046 acpi_check_address_range +EXPORT_SYMBOL vmlinux 0x521623af nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x523fe0ef skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x52420e92 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x525e026f acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0x52810970 proc_set_user +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x52aa9abd twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x52ce78fb block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x52d4b490 __nd_iostat_start +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x5319db9f __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x5343334a pci_set_power_state +EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x536c148e pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x536cc847 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x5377e556 hex2bin +EXPORT_SYMBOL vmlinux 0x538b32df devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x53ac4217 put_cmsg +EXPORT_SYMBOL vmlinux 0x53e058dc __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x54059a2a amd_iommu_pc_get_max_counters +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x540b08e4 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x541d7ee1 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x541f910a kmem_cache_create +EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x5429d9c1 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x54472810 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x544b0c11 acpi_lid_notifier_register +EXPORT_SYMBOL vmlinux 0x5464d3f6 acpi_remove_sci_handler +EXPORT_SYMBOL vmlinux 0x54693173 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54b3fb06 pci_get_device +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54c8d525 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x54dab42e lock_fb_info +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54f24d1a fence_default_wait +EXPORT_SYMBOL vmlinux 0x551b0c42 led_update_brightness +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x551bedc7 fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x553a5855 uart_get_divisor +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x555f0791 blk_queue_split +EXPORT_SYMBOL vmlinux 0x555f6938 lockref_get +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x55a560b5 inet6_getname +EXPORT_SYMBOL vmlinux 0x55b726bb pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55d7fdf9 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x55dac311 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x55dfe666 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x55e1780b noop_llseek +EXPORT_SYMBOL vmlinux 0x55e60a36 queued_spin_unlock_wait +EXPORT_SYMBOL vmlinux 0x55ed7366 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x55f5019b __kmalloc_node +EXPORT_SYMBOL vmlinux 0x5608cff4 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x56115ba3 __blk_end_request +EXPORT_SYMBOL vmlinux 0x56128a2c pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x5641419b wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x5642f21a tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x5648ef18 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x565e6f26 bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0x56829940 blk_mq_all_tag_busy_iter +EXPORT_SYMBOL vmlinux 0x56838d14 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x5687f7b4 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x56947009 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56d476f2 put_tty_driver +EXPORT_SYMBOL vmlinux 0x57131705 input_register_handler +EXPORT_SYMBOL vmlinux 0x57220936 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x57769226 agp_generic_enable +EXPORT_SYMBOL vmlinux 0x5776a61f tcp_release_cb +EXPORT_SYMBOL vmlinux 0x577d35f3 hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x57ae63cf buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x57ba72ab fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x57cc82c8 neigh_destroy +EXPORT_SYMBOL vmlinux 0x57d40a30 release_firmware +EXPORT_SYMBOL vmlinux 0x58154462 path_nosuid +EXPORT_SYMBOL vmlinux 0x581919e2 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x581d2519 skb_checksum +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x5820aea8 d_add_ci +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x584738f9 rdmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x584de6aa skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep +EXPORT_SYMBOL vmlinux 0x58604e4d alloc_iova_mem +EXPORT_SYMBOL vmlinux 0x586103be acpi_setup_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x586c2034 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x586d23f6 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x5886b132 phy_driver_register +EXPORT_SYMBOL vmlinux 0x58a13217 up_write +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58c89557 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x58d5b18a sock_no_accept +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x5900aee1 __getblk_slow +EXPORT_SYMBOL vmlinux 0x5902d0ad skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x5906b8f6 pci_get_class +EXPORT_SYMBOL vmlinux 0x590ad503 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x5925fa53 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x59396432 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x5944d015 __cachemode2pte_tbl +EXPORT_SYMBOL vmlinux 0x59474073 pci_find_bus +EXPORT_SYMBOL vmlinux 0x59492a23 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x59556904 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x596905ae blk_delay_queue +EXPORT_SYMBOL vmlinux 0x596c0e94 input_get_keycode +EXPORT_SYMBOL vmlinux 0x5973ad63 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x5979220f tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x5984d690 mmc_detect_change +EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x5995a4ba dquot_initialize +EXPORT_SYMBOL vmlinux 0x59a0d1b7 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59bc9609 acpi_write_bit_register +EXPORT_SYMBOL vmlinux 0x59bf6795 phy_device_register +EXPORT_SYMBOL vmlinux 0x59c1e31e ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x59c219e9 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x59dd665e insert_inode_locked +EXPORT_SYMBOL vmlinux 0x59e93004 vga_switcheroo_register_audio_client +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a0cbc7f init_task +EXPORT_SYMBOL vmlinux 0x5a2f5519 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x5a33e219 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 +EXPORT_SYMBOL vmlinux 0x5a592afa swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x5a82c44a complete_and_exit +EXPORT_SYMBOL vmlinux 0x5a83cb83 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a9a0e75 fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0x5a9f25e0 vfs_fsync +EXPORT_SYMBOL vmlinux 0x5aa5245c arp_tbl +EXPORT_SYMBOL vmlinux 0x5ac376a5 acpi_install_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x5ad7d0ba mpage_readpage +EXPORT_SYMBOL vmlinux 0x5af0cc3d dev_get_stats +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b1843cd tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x5b29bf3d blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b65d6ef km_state_notify +EXPORT_SYMBOL vmlinux 0x5b6bb50f ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x5b6f37e5 vfs_setpos +EXPORT_SYMBOL vmlinux 0x5b8560cf compat_tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x5b9c808a acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0x5ba71a18 sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x5bc10524 printk_emit +EXPORT_SYMBOL vmlinux 0x5bc22400 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x5bc64c24 input_register_device +EXPORT_SYMBOL vmlinux 0x5bc8d583 copy_from_user_overflow +EXPORT_SYMBOL vmlinux 0x5bd23e3e tcf_em_register +EXPORT_SYMBOL vmlinux 0x5bee82fc vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x5bf4cb76 follow_down +EXPORT_SYMBOL vmlinux 0x5bfeef92 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x5c0442fd acpi_gbl_FADT +EXPORT_SYMBOL vmlinux 0x5c08b1e3 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0x5c0c5411 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x5c290dfc blk_init_tags +EXPORT_SYMBOL vmlinux 0x5c39588e xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x5c41ed7e xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x5c495d29 request_key_async +EXPORT_SYMBOL vmlinux 0x5c76ab00 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x5c9808cc register_netdev +EXPORT_SYMBOL vmlinux 0x5caaa78b skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x5cacd573 key_put +EXPORT_SYMBOL vmlinux 0x5cc6cdbc security_path_mkdir +EXPORT_SYMBOL vmlinux 0x5ccb829e __napi_complete +EXPORT_SYMBOL vmlinux 0x5ccfd6c9 drop_nlink +EXPORT_SYMBOL vmlinux 0x5cd58428 request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x5cdae16f abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0x5ce44439 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cf6cd5b proc_mkdir +EXPORT_SYMBOL vmlinux 0x5d0161ec proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x5d0cc974 padata_start +EXPORT_SYMBOL vmlinux 0x5d272fee dev_get_nest_level +EXPORT_SYMBOL vmlinux 0x5d339b37 eth_type_trans +EXPORT_SYMBOL vmlinux 0x5d433bc8 ps2_init +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d74dbcf pnp_range_reserved +EXPORT_SYMBOL vmlinux 0x5d752c8c tty_set_operations +EXPORT_SYMBOL vmlinux 0x5d79e05a generic_readlink +EXPORT_SYMBOL vmlinux 0x5d802f6e wake_up_process +EXPORT_SYMBOL vmlinux 0x5d8475e0 completion_done +EXPORT_SYMBOL vmlinux 0x5d89ffbe netlink_capable +EXPORT_SYMBOL vmlinux 0x5d8f91f2 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x5d8f92f4 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x5d98dd91 page_follow_link_light +EXPORT_SYMBOL vmlinux 0x5daf96ee pci_enable_msix +EXPORT_SYMBOL vmlinux 0x5dc86a2b __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x5de50a56 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x5dee30c0 register_framebuffer +EXPORT_SYMBOL vmlinux 0x5e0783de revalidate_disk +EXPORT_SYMBOL vmlinux 0x5e0d0cf8 kernel_bind +EXPORT_SYMBOL vmlinux 0x5e13f815 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x5e1f2cef bio_clone_fast +EXPORT_SYMBOL vmlinux 0x5e266209 pcie_get_mps +EXPORT_SYMBOL vmlinux 0x5e358e95 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x5e5ea056 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e9e8017 __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0x5ea71c56 free_page_put_link +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ecd74e7 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x5ecfeec6 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5eeab21e security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x5ef9062c scsi_execute +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f0a694b dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x5f21a711 put_io_context +EXPORT_SYMBOL vmlinux 0x5f45c965 pci_match_id +EXPORT_SYMBOL vmlinux 0x5f551f92 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x5f591c0c devm_memremap +EXPORT_SYMBOL vmlinux 0x5f5fb85f lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x5f8da4d8 copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x5f9f5c27 dma_common_mmap +EXPORT_SYMBOL vmlinux 0x5fa0d3df copy_to_iter +EXPORT_SYMBOL vmlinux 0x5fb2e8ef idr_init +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x600902c6 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x6024c80d dma_supported +EXPORT_SYMBOL vmlinux 0x602ed00d acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x604316d8 acpi_finish_gpe +EXPORT_SYMBOL vmlinux 0x6045e4a8 bio_uncopy_user +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x60854036 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x609b149b security_path_rename +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x609f5b35 ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x60a11832 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60be0a14 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x60c9e30a blk_init_queue_node +EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x6109146e security_path_mknod +EXPORT_SYMBOL vmlinux 0x610aaa40 mempool_destroy +EXPORT_SYMBOL vmlinux 0x610e898f phy_init_eee +EXPORT_SYMBOL vmlinux 0x611273ee generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x6113beb8 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x61194e4c netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x612a9cb6 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x612bd401 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x61433e5e __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x614bb773 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x61520529 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0x615dd47b release_sock +EXPORT_SYMBOL vmlinux 0x61609996 pneigh_lookup +EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x6191bf29 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x61ab0285 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61bb25b1 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x61be14ec proc_remove +EXPORT_SYMBOL vmlinux 0x61c44035 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x61c61141 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x61d31dd8 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x61db4381 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x61ef6170 __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0x61f38615 blk_register_region +EXPORT_SYMBOL vmlinux 0x61fb248a node_states +EXPORT_SYMBOL vmlinux 0x62049256 acpi_disable +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6226b9fa machine_to_phys_mapping +EXPORT_SYMBOL vmlinux 0x6227bb4d genl_notify +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x6237f6b5 acpi_enable_event +EXPORT_SYMBOL vmlinux 0x6255eb95 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x6256308b set_security_override +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62748e70 acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x62978012 abort_creds +EXPORT_SYMBOL vmlinux 0x629ab041 ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x62b2db35 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x62bfacb8 __get_page_tail +EXPORT_SYMBOL vmlinux 0x62de553f tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x6317356c textsearch_unregister +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x632a322e nd_btt_probe +EXPORT_SYMBOL vmlinux 0x63352dba kobject_del +EXPORT_SYMBOL vmlinux 0x634d43cc dev_set_group +EXPORT_SYMBOL vmlinux 0x6351bcd9 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x6357f3cd pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x636a5691 acpi_register_ioapic +EXPORT_SYMBOL vmlinux 0x636b04b8 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x637fd387 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x6388591c down_timeout +EXPORT_SYMBOL vmlinux 0x6393ada8 netif_rx +EXPORT_SYMBOL vmlinux 0x63a01291 acpi_leave_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63b9190d inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x63bf104d scsi_register +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63d57a95 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63fae632 devm_memunmap +EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x640665b2 d_invalidate +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x642e3e06 mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0x6434e3a1 sk_net_capable +EXPORT_SYMBOL vmlinux 0x6449fd41 acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0x645a1801 kill_pid +EXPORT_SYMBOL vmlinux 0x648963ed blk_fetch_request +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64ab0e98 wait_for_completion +EXPORT_SYMBOL vmlinux 0x64ac2f01 km_new_mapping +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64cf41a0 devm_gpiod_get +EXPORT_SYMBOL vmlinux 0x64d8fd10 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x64eae7ad set_memory_array_wb +EXPORT_SYMBOL vmlinux 0x64fa7693 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x651b1d9e kthread_stop +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x65324be5 sk_alloc +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x655f1ab0 set_memory_array_wc +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x656c926c pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x6577109c xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x658ffc03 consume_skb +EXPORT_SYMBOL vmlinux 0x6598f9d4 simple_dname +EXPORT_SYMBOL vmlinux 0x659c78eb nvm_dev_factory +EXPORT_SYMBOL vmlinux 0x65ab76a1 bitmap_unplug +EXPORT_SYMBOL vmlinux 0x65b992ac xen_alloc_p2m_entry +EXPORT_SYMBOL vmlinux 0x65c35fc0 __seq_open_private +EXPORT_SYMBOL vmlinux 0x65c544a3 current_task +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x65eff4cc xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x66132e76 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x663f7cd0 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0x66429016 pci_map_biosrom +EXPORT_SYMBOL vmlinux 0x6650e004 bio_reset +EXPORT_SYMBOL vmlinux 0x66552ba7 uart_resume_port +EXPORT_SYMBOL vmlinux 0x66569a82 nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0x666586aa max8998_update_reg +EXPORT_SYMBOL vmlinux 0x66895057 nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0x668bb964 tty_devnum +EXPORT_SYMBOL vmlinux 0x66907707 install_exec_creds +EXPORT_SYMBOL vmlinux 0x66945714 dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0x66d804b1 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x66dd2a55 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x66ee7cea devm_gpio_free +EXPORT_SYMBOL vmlinux 0x671d5c8a dev_crit +EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 +EXPORT_SYMBOL vmlinux 0x6731a37c serio_reconnect +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create +EXPORT_SYMBOL vmlinux 0x679e3ea8 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b362b5 amd_iommu_domain_enable_v2 +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67b933e2 lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x67be9b0c __vfs_write +EXPORT_SYMBOL vmlinux 0x67cc428f nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0x67f132f7 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x680ec266 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x6816bc1c phy_disconnect +EXPORT_SYMBOL vmlinux 0x682013a8 devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0x683c3be9 pci_bus_put +EXPORT_SYMBOL vmlinux 0x684cd104 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x6867e74c pci_read_vpd +EXPORT_SYMBOL vmlinux 0x68746ccd devm_memremap_pages +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x688fb740 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68a3e99f framebuffer_release +EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x68c2fcad unregister_console +EXPORT_SYMBOL vmlinux 0x68d8031c ip6_xmit +EXPORT_SYMBOL vmlinux 0x68dc800d pci_remove_bus +EXPORT_SYMBOL vmlinux 0x68e08c3d __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x6900dedd tso_build_hdr +EXPORT_SYMBOL vmlinux 0x691001b5 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x6920ff27 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x6943fe20 __register_binfmt +EXPORT_SYMBOL vmlinux 0x69472e13 udp_seq_open +EXPORT_SYMBOL vmlinux 0x694e598e brioctl_set +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6982a9f2 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x69840daf elevator_change +EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69a103c1 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource +EXPORT_SYMBOL vmlinux 0x69acdf38 memcpy +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69c5d804 sock_i_uid +EXPORT_SYMBOL vmlinux 0x69daeabc mmc_of_parse +EXPORT_SYMBOL vmlinux 0x69fbc0a2 acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a16cbbd dev_mc_flush +EXPORT_SYMBOL vmlinux 0x6a2fdea9 to_nd_pfn +EXPORT_SYMBOL vmlinux 0x6a4a09ad pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a60277d acpi_buffer_to_resource +EXPORT_SYMBOL vmlinux 0x6a6f6265 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6a77633d __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x6a83c544 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x6a9061a9 bdi_register_owner +EXPORT_SYMBOL vmlinux 0x6a994775 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x6a9d2929 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x6aae3863 mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0x6aba2836 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be +EXPORT_SYMBOL vmlinux 0x6ad85887 acpi_enable_gpe +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6ade8487 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x6ae60faa jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b0c8f60 sock_no_connect +EXPORT_SYMBOL vmlinux 0x6b0ce306 km_query +EXPORT_SYMBOL vmlinux 0x6b19b5a4 elevator_exit +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b208348 mmc_can_discard +EXPORT_SYMBOL vmlinux 0x6b262e17 simple_open +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b33be42 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x6b50faea xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0x6b54d136 swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x6b59bfeb backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6b6ccf71 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x6b74b9be bit_waitqueue +EXPORT_SYMBOL vmlinux 0x6b998031 param_get_byte +EXPORT_SYMBOL vmlinux 0x6bac34ba dev_uc_init +EXPORT_SYMBOL vmlinux 0x6bb97a8e blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x6bc2068f pnp_stop_dev +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bcf066d _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x6bdb7524 agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6be46a37 amd_iommu_flush_page +EXPORT_SYMBOL vmlinux 0x6bf1c17f pv_lock_ops +EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer +EXPORT_SYMBOL vmlinux 0x6c15e5ea md_write_end +EXPORT_SYMBOL vmlinux 0x6c2fa4b1 devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0x6c40cccf uart_match_port +EXPORT_SYMBOL vmlinux 0x6c40e715 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x6c44bc15 neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c63ce18 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x6c643559 keyring_alloc +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c825e1c kern_path_create +EXPORT_SYMBOL vmlinux 0x6c8751ad x86_hyper +EXPORT_SYMBOL vmlinux 0x6c93767e __serio_register_port +EXPORT_SYMBOL vmlinux 0x6caa63ef truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x6cb54530 d_rehash +EXPORT_SYMBOL vmlinux 0x6cb5c718 param_get_long +EXPORT_SYMBOL vmlinux 0x6cc42aee proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x6cfec72f ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x6cff1d11 sock_no_bind +EXPORT_SYMBOL vmlinux 0x6d00cef0 agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d1d5d9b iosf_mbi_write +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d299e57 tcp_close +EXPORT_SYMBOL vmlinux 0x6d30f8c4 may_umount +EXPORT_SYMBOL vmlinux 0x6d334118 __get_user_8 +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d3a2782 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x6d4b2065 sock_release +EXPORT_SYMBOL vmlinux 0x6d4f4973 tcf_register_action +EXPORT_SYMBOL vmlinux 0x6d549830 redraw_screen +EXPORT_SYMBOL vmlinux 0x6d5cdac0 pci_release_regions +EXPORT_SYMBOL vmlinux 0x6d6aa90d bio_endio +EXPORT_SYMBOL vmlinux 0x6d94b2b0 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x6da5789e tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x6dc0c9dc down_interruptible +EXPORT_SYMBOL vmlinux 0x6dc2a1be scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x6dc6dd56 down +EXPORT_SYMBOL vmlinux 0x6de0ef80 param_set_bool +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e357b8a neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x6e363841 vc_cons +EXPORT_SYMBOL vmlinux 0x6e3deb33 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x6e47a08b mmc_fixup_device +EXPORT_SYMBOL vmlinux 0x6e669232 write_cache_pages +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e7b12f4 bdev_read_only +EXPORT_SYMBOL vmlinux 0x6e7f0fd2 cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x6e80936b generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x6e8c6c87 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x6e9404a6 netif_device_detach +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6e9e55db ab3100_event_register +EXPORT_SYMBOL vmlinux 0x6ea2e10b ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0x6ea368d2 key_task_permission +EXPORT_SYMBOL vmlinux 0x6ec5fb9a __bforget +EXPORT_SYMBOL vmlinux 0x6ed682b3 input_register_handle +EXPORT_SYMBOL vmlinux 0x6ee9e843 skb_trim +EXPORT_SYMBOL vmlinux 0x6eea9103 blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0x6ef35181 __kernel_write +EXPORT_SYMBOL vmlinux 0x6ef66e8a _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x6f1bf786 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x6f1e801b phy_resume +EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash +EXPORT_SYMBOL vmlinux 0x6f29c8e5 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x6f2e4f46 __cond_resched_lock +EXPORT_SYMBOL vmlinux 0x6f3784b0 seq_write +EXPORT_SYMBOL vmlinux 0x6f52efc0 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x6f556bdb acpi_get_gpe_device +EXPORT_SYMBOL vmlinux 0x6f6235b7 d_find_alias +EXPORT_SYMBOL vmlinux 0x6f7e9e66 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6f8c352d mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x6f9af886 xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0x6fb4ccee cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd11024 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x6fd5e7d2 blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x6fdf683a i8042_install_filter +EXPORT_SYMBOL vmlinux 0x6feb2039 acpi_write +EXPORT_SYMBOL vmlinux 0x6feda463 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x6ffed434 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x7029f11b iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0x702b2690 param_get_ulong +EXPORT_SYMBOL vmlinux 0x70379ac1 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync +EXPORT_SYMBOL vmlinux 0x7073c5d7 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x70878115 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x708a79f7 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x708bdcec tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x70a88c9a dev_load +EXPORT_SYMBOL vmlinux 0x70c81625 icmp_send +EXPORT_SYMBOL vmlinux 0x70d12284 keyring_clear +EXPORT_SYMBOL vmlinux 0x70d16661 security_file_permission +EXPORT_SYMBOL vmlinux 0x70d8ab82 acpi_acquire_global_lock +EXPORT_SYMBOL vmlinux 0x70e9f676 param_ops_string +EXPORT_SYMBOL vmlinux 0x70f605e9 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x7111e4d6 get_agp_version +EXPORT_SYMBOL vmlinux 0x7125fa5f input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x712c588f pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0x712f27f0 get_disk +EXPORT_SYMBOL vmlinux 0x715adc77 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x716ecc12 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x717a40bc cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x71828a66 proc_dostring +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71adf0e7 mount_bdev +EXPORT_SYMBOL vmlinux 0x71b1381f __genl_register_family +EXPORT_SYMBOL vmlinux 0x71c70e22 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x71dbcc2e generic_file_fsync +EXPORT_SYMBOL vmlinux 0x71ee4762 pid_task +EXPORT_SYMBOL vmlinux 0x71eeddca thaw_bdev +EXPORT_SYMBOL vmlinux 0x71fa9e0e cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x72220176 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x7223efff xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x72724529 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x7280af6c load_nls +EXPORT_SYMBOL vmlinux 0x72873e81 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x729b1645 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x72a40973 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x72a98fdb copy_user_generic_unrolled +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72b75830 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x72b938a2 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x72c24949 dump_trace +EXPORT_SYMBOL vmlinux 0x72cd94dc writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x72d37aeb security_inode_init_security +EXPORT_SYMBOL vmlinux 0x72dd3f48 path_is_under +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72ee368c blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x73316952 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x734c013f mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay +EXPORT_SYMBOL vmlinux 0x736fc01c clkdev_drop +EXPORT_SYMBOL vmlinux 0x738714db ida_pre_get +EXPORT_SYMBOL vmlinux 0x7398f74d jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x73a098e7 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x73ba73e7 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x73bd54ec gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable +EXPORT_SYMBOL vmlinux 0x740596b4 vme_dma_request +EXPORT_SYMBOL vmlinux 0x7405a78e d_alloc_name +EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x741d26b5 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x745f20a3 idr_is_empty +EXPORT_SYMBOL vmlinux 0x74662f36 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x746ae1dc padata_do_parallel +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x74763ee4 phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0x7478c84e km_policy_notify +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x749b370b eth_validate_addr +EXPORT_SYMBOL vmlinux 0x74a9ea4b pnp_device_attach +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c213b0 should_remove_suid +EXPORT_SYMBOL vmlinux 0x74c586e7 poll_initwait +EXPORT_SYMBOL vmlinux 0x74cffdd2 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x750f444c pnp_register_driver +EXPORT_SYMBOL vmlinux 0x7525a60d kobject_init +EXPORT_SYMBOL vmlinux 0x7532588a alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x754d539c strlen +EXPORT_SYMBOL vmlinux 0x757fd35d tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x758908b4 reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0x7590f8dc unregister_binfmt +EXPORT_SYMBOL vmlinux 0x75bc549a x86_cpu_to_apicid +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75d4388d param_ops_ushort +EXPORT_SYMBOL vmlinux 0x75f79460 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x75fbdefd acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x75fc8f99 vga_switcheroo_client_fb_set +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x760fbf91 simple_release_fs +EXPORT_SYMBOL vmlinux 0x7645af6f sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764bd77c request_resource +EXPORT_SYMBOL vmlinux 0x764cc3a0 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x76532634 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x765a75c7 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x765f961b misc_register +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x7676b167 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0x767dd8fd acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc +EXPORT_SYMBOL vmlinux 0x767e5358 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x768d3543 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x76961c24 skb_append +EXPORT_SYMBOL vmlinux 0x76a06d06 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x76a46b04 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x76d3923b xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76d99624 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x76dd3eaa dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x76f4f306 km_is_alive +EXPORT_SYMBOL vmlinux 0x76fb08a7 amd_iommu_unregister_ppr_notifier +EXPORT_SYMBOL vmlinux 0x770d8f52 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x77102b42 alloc_disk_node +EXPORT_SYMBOL vmlinux 0x771ae0bb phy_detach +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x773bc6ea i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x773c9252 blkdev_get +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir +EXPORT_SYMBOL vmlinux 0x77853e4d jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x7785c684 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x779afbd0 kill_fasync +EXPORT_SYMBOL vmlinux 0x77a60ab8 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77d46454 request_firmware +EXPORT_SYMBOL vmlinux 0x77ee2b78 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x77ef9cb2 xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0x77f53abc acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x77f57034 blk_free_tags +EXPORT_SYMBOL vmlinux 0x77ff0cc6 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x780fdfd1 intel_enable_gtt +EXPORT_SYMBOL vmlinux 0x7822691c tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x7829c3bd reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0x7839a763 mdiobus_read +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x784b498b kset_register +EXPORT_SYMBOL vmlinux 0x785c6561 tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0x78764f4e pv_irq_ops +EXPORT_SYMBOL vmlinux 0x78794eaf tcp_splice_read +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x788d590a param_ops_invbool +EXPORT_SYMBOL vmlinux 0x789aeec3 genphy_read_status +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x789d81c9 agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x78a2d26b dquot_alloc +EXPORT_SYMBOL vmlinux 0x78a324a4 elv_rb_add +EXPORT_SYMBOL vmlinux 0x78a5ff8a fence_add_callback +EXPORT_SYMBOL vmlinux 0x78b4cd20 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x78bcdc29 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x78be5b63 from_kuid +EXPORT_SYMBOL vmlinux 0x78db81c4 mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e739aa up +EXPORT_SYMBOL vmlinux 0x78ea433a inet_sendmsg +EXPORT_SYMBOL vmlinux 0x79068fda acpi_install_method +EXPORT_SYMBOL vmlinux 0x791313b1 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x791ed1c9 rename_lock +EXPORT_SYMBOL vmlinux 0x79237f48 ppp_channel_index +EXPORT_SYMBOL vmlinux 0x793d018c i2c_verify_client +EXPORT_SYMBOL vmlinux 0x793f4b8a msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x79583b63 nvm_register_mgr +EXPORT_SYMBOL vmlinux 0x79635b6a vfs_iter_write +EXPORT_SYMBOL vmlinux 0x796783b1 vfs_writef +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x7975e183 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x7981b316 sk_dst_check +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x7985d043 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x79976b1d sock_wfree +EXPORT_SYMBOL vmlinux 0x799f81b1 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79d7927c agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0x7a0a5c44 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number +EXPORT_SYMBOL vmlinux 0x7a342896 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x7a371a0c dev_addr_init +EXPORT_SYMBOL vmlinux 0x7a3c3ce1 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a5d80a9 skb_put +EXPORT_SYMBOL vmlinux 0x7a5f740f serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x7a612de2 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x7a6cdedc do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a82cb47 rdmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x7a8c03f9 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x7a918a9a dev_mc_init +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7abe729f security_path_chmod +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ad318d1 nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x7addda31 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x7aec9089 clear_user +EXPORT_SYMBOL vmlinux 0x7aee7b4a phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x7af4b25f tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0x7b06a747 __neigh_create +EXPORT_SYMBOL vmlinux 0x7b0c2cdd netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x7b0de404 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x7b16235f hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b2aef6c __krealloc +EXPORT_SYMBOL vmlinux 0x7b491801 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x7b4af9dc seq_read +EXPORT_SYMBOL vmlinux 0x7b4be739 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x7b52a859 wrmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x7b68595d get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x7b8c018f inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x7bad7a1a acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x7bcc7c65 lwtunnel_input +EXPORT_SYMBOL vmlinux 0x7be75ffc acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0x7c0b8561 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c27f6cc sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x7c2d098f krealloc +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c61340c __release_region +EXPORT_SYMBOL vmlinux 0x7c65b1a3 seq_open_private +EXPORT_SYMBOL vmlinux 0x7c946aad blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7cac1c7c free_buffer_head +EXPORT_SYMBOL vmlinux 0x7cb0e95e from_kgid +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cc824e6 agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce72776 md_integrity_register +EXPORT_SYMBOL vmlinux 0x7ce83365 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cf3dd9b cfb_copyarea +EXPORT_SYMBOL vmlinux 0x7d05f0dc input_event +EXPORT_SYMBOL vmlinux 0x7d088d32 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x7d0b6c95 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d166ec1 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x7d24e15a twl6040_power +EXPORT_SYMBOL vmlinux 0x7d287136 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x7d326028 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x7d4d2ef8 blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x7d5e2795 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d71445d cpu_active_mask +EXPORT_SYMBOL vmlinux 0x7d7cd46e lease_modify +EXPORT_SYMBOL vmlinux 0x7d84977b pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0x7d8ab44b request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x7d94f746 acpi_os_write_port +EXPORT_SYMBOL vmlinux 0x7d96cea3 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x7da30008 padata_stop +EXPORT_SYMBOL vmlinux 0x7daee664 would_dump +EXPORT_SYMBOL vmlinux 0x7db116e9 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x7db6f01a netdev_alert +EXPORT_SYMBOL vmlinux 0x7dbc2e57 mmiotrace_printk +EXPORT_SYMBOL vmlinux 0x7dc30683 sk_wait_data +EXPORT_SYMBOL vmlinux 0x7dd554fc unregister_kmmio_probe +EXPORT_SYMBOL vmlinux 0x7def3866 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e0480cf first_ec +EXPORT_SYMBOL vmlinux 0x7e0ffdb9 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x7e318aeb phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x7e5c35b1 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x7e7fc3fb __wake_up_bit +EXPORT_SYMBOL vmlinux 0x7e833a94 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x7e83cc3c to_ndd +EXPORT_SYMBOL vmlinux 0x7e8eb6b9 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x7e9ab0bb skb_copy_expand +EXPORT_SYMBOL vmlinux 0x7ea39625 pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0x7ea8d651 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x7eb0365f submit_bio +EXPORT_SYMBOL vmlinux 0x7eb550b1 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x7eba45a1 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x7ebd4be4 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x7ec38d2d __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f147a49 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x7f1b9d5c follow_up +EXPORT_SYMBOL vmlinux 0x7f1c27fe frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f263ed9 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x7f276ea1 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x7f2775bc dma_pool_create +EXPORT_SYMBOL vmlinux 0x7f39a5bb sockfd_lookup +EXPORT_SYMBOL vmlinux 0x7f5ebe60 qdisc_destroy +EXPORT_SYMBOL vmlinux 0x7f61d7da xattr_full_name +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f94c3d3 pci_find_capability +EXPORT_SYMBOL vmlinux 0x7f9a0160 tty_vhangup +EXPORT_SYMBOL vmlinux 0x7fbd10d2 radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x7fdd540f skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fe38f48 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x8028fabb bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x8067a111 pagevec_lookup +EXPORT_SYMBOL vmlinux 0x8068c15c kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x80791a8c radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0x809388ca idr_destroy +EXPORT_SYMBOL vmlinux 0x80a6c6c2 default_llseek +EXPORT_SYMBOL vmlinux 0x80ae5b99 force_sig +EXPORT_SYMBOL vmlinux 0x80b248fd bdget +EXPORT_SYMBOL vmlinux 0x80b71e9e dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80e6e9dd lock_sock_fast +EXPORT_SYMBOL vmlinux 0x80eb423b acpi_get_object_info +EXPORT_SYMBOL vmlinux 0x80fe7b44 vga_put +EXPORT_SYMBOL vmlinux 0x810a992f vga_switcheroo_get_client_state +EXPORT_SYMBOL vmlinux 0x81144f9d idr_find_slowpath +EXPORT_SYMBOL vmlinux 0x811b6681 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x813816c3 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x81472677 acpi_get_table +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815b806a agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page +EXPORT_SYMBOL vmlinux 0x8161b4fd iov_iter_advance +EXPORT_SYMBOL vmlinux 0x81641b68 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x819604c9 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x819dcf76 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x81a12fe4 netif_skb_features +EXPORT_SYMBOL vmlinux 0x81aec362 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x81c3077a nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0x81da207f netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e43d52 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x820a4089 seq_release_private +EXPORT_SYMBOL vmlinux 0x8212721d xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0x8224141b add_random_ready_callback +EXPORT_SYMBOL vmlinux 0x82458f7f radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x824d354c __dquot_free_space +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82854c7b devfreq_add_device +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x8293979c md_register_thread +EXPORT_SYMBOL vmlinux 0x829534b3 fence_free +EXPORT_SYMBOL vmlinux 0x829cf250 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82cbeada skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x82dc9896 seq_dentry +EXPORT_SYMBOL vmlinux 0x82e151aa blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x82ee1753 tcp_check_req +EXPORT_SYMBOL vmlinux 0x82f4708b vga_switcheroo_set_dynamic_switch +EXPORT_SYMBOL vmlinux 0x82fa1117 pci_enable_device +EXPORT_SYMBOL vmlinux 0x830e547b ioremap_prot +EXPORT_SYMBOL vmlinux 0x83314e49 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x833c03aa acpi_enable_all_runtime_gpes +EXPORT_SYMBOL vmlinux 0x8354a582 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x83619aac i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x836fede0 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x8384647a acpi_map_pxm_to_online_node +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83dbbf7d devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x84060081 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x840cd53e dev_add_offload +EXPORT_SYMBOL vmlinux 0x840e6b13 blk_queue_bounce +EXPORT_SYMBOL vmlinux 0x84147abc bio_copy_kern +EXPORT_SYMBOL vmlinux 0x8417f512 acpi_update_all_gpes +EXPORT_SYMBOL vmlinux 0x844c0f31 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x844e3767 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x84521c25 amd_iommu_enable_device_erratum +EXPORT_SYMBOL vmlinux 0x84540921 add_disk +EXPORT_SYMBOL vmlinux 0x845fce2f dev_uc_add +EXPORT_SYMBOL vmlinux 0x8460152e block_write_end +EXPORT_SYMBOL vmlinux 0x847764dc netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x84787f5c copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x8489bc5a do_SAK +EXPORT_SYMBOL vmlinux 0x848c55df pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x84909777 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x84a29dce take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x84acf249 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x84bc0570 genphy_config_init +EXPORT_SYMBOL vmlinux 0x84bd9351 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x84c74f71 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0x84c9123c migrate_page +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x8501b98c invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x8507c383 proc_dointvec +EXPORT_SYMBOL vmlinux 0x85214ab2 vme_irq_request +EXPORT_SYMBOL vmlinux 0x8526c35a remove_wait_queue +EXPORT_SYMBOL vmlinux 0x853cb3c7 param_set_uint +EXPORT_SYMBOL vmlinux 0x8540bb5e pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x854e682b dst_alloc +EXPORT_SYMBOL vmlinux 0x855cdab7 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x8567596f tcp_parse_options +EXPORT_SYMBOL vmlinux 0x857582f7 acpi_enable_all_wakeup_gpes +EXPORT_SYMBOL vmlinux 0x857da20e __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x858b3fe3 free_iova_mem +EXPORT_SYMBOL vmlinux 0x858e6a08 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x85900891 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x8593884c cdrom_open +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x8600e131 dump_align +EXPORT_SYMBOL vmlinux 0x861e22a4 acpi_map_cpu +EXPORT_SYMBOL vmlinux 0x86304412 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x863662cc pci_set_mwi +EXPORT_SYMBOL vmlinux 0x863a0d34 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x86416370 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x86574ca9 bioset_integrity_free +EXPORT_SYMBOL vmlinux 0x865d263c tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x866251b8 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x866352ed vme_slot_num +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86a214b8 netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86a6b430 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x86d796cf sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x86e34e3c unregister_key_type +EXPORT_SYMBOL vmlinux 0x86e49f77 phy_start_interrupts +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x870d3c16 mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x87188d13 nf_log_unset +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x8722acb0 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x87487567 nvm_get_blk_unlocked +EXPORT_SYMBOL vmlinux 0x874f0e72 bio_init +EXPORT_SYMBOL vmlinux 0x8752dc1a tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x875b0b19 kfree_put_link +EXPORT_SYMBOL vmlinux 0x8760ee29 __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x87612e44 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x8769e108 eth_change_mtu +EXPORT_SYMBOL vmlinux 0x876a9aae __mutex_init +EXPORT_SYMBOL vmlinux 0x876dafc3 ec_write +EXPORT_SYMBOL vmlinux 0x8789be64 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x878b75bb __nd_driver_register +EXPORT_SYMBOL vmlinux 0x878cd015 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x879f6087 napi_disable +EXPORT_SYMBOL vmlinux 0x87a16e57 agp_copy_info +EXPORT_SYMBOL vmlinux 0x87aaddf8 wrmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0x87ac41f6 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x87b3aeb7 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x87ba5a3a amd_iommu_get_v2_domain +EXPORT_SYMBOL vmlinux 0x87c86926 bdi_init +EXPORT_SYMBOL vmlinux 0x87e896e2 lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0x87ebfd89 free_netdev +EXPORT_SYMBOL vmlinux 0x87fdb0fb tty_port_close_end +EXPORT_SYMBOL vmlinux 0x88068ad7 mmc_start_bkops +EXPORT_SYMBOL vmlinux 0x881acdd5 pcim_iomap +EXPORT_SYMBOL vmlinux 0x88203616 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x886f204a get_task_exe_file +EXPORT_SYMBOL vmlinux 0x887044c7 finish_no_open +EXPORT_SYMBOL vmlinux 0x887fa47e __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x88816ad9 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x8895192d sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x88d1bb49 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x89013a20 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x890f6189 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x89276022 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0x892b26a0 set_memory_nx +EXPORT_SYMBOL vmlinux 0x892de3fb __nla_put +EXPORT_SYMBOL vmlinux 0x89347d60 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x89519845 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x89547fd6 mmc_free_host +EXPORT_SYMBOL vmlinux 0x896f14d8 vc_resize +EXPORT_SYMBOL vmlinux 0x89790349 compat_sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89c0a9b0 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x89c13434 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x89d1502c component_match_add +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89d591d3 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x89dc10a7 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x8a0b12c6 complete_all +EXPORT_SYMBOL vmlinux 0x8a0b81b6 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a1ba4e6 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x8a3f5aa1 acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0x8a43f884 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a608649 generic_show_options +EXPORT_SYMBOL vmlinux 0x8a675472 clear_inode +EXPORT_SYMBOL vmlinux 0x8a6944f9 percpu_counter_set +EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x8a6cf45f __frontswap_load +EXPORT_SYMBOL vmlinux 0x8a7a9af9 kernel_write +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a80d7a5 acpi_error +EXPORT_SYMBOL vmlinux 0x8a840b95 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8add66a1 do_truncate +EXPORT_SYMBOL vmlinux 0x8afc1151 padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0x8b2f9f47 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b3b3d77 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x8b3ee291 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x8b41ac04 xen_biovec_phys_mergeable +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b4bbd0a devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x8b4c0387 vga_switcheroo_init_domain_pm_optimus_hdmi_audio +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b8329a6 ilookup5 +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8ba82b10 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x8bacd034 scsi_print_result +EXPORT_SYMBOL vmlinux 0x8bb5fb90 vme_bus_num +EXPORT_SYMBOL vmlinux 0x8bd696d8 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x8be76d96 __d_drop +EXPORT_SYMBOL vmlinux 0x8bf8632e phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x8c0e2191 compat_sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c2172fe md_cluster_ops +EXPORT_SYMBOL vmlinux 0x8c2759b7 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x8c400fec vga_switcheroo_init_domain_pm_ops +EXPORT_SYMBOL vmlinux 0x8c5eb0a2 lru_cache_add_file +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c6f16c7 no_llseek +EXPORT_SYMBOL vmlinux 0x8c71c0e1 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x8c82a186 devm_clk_get +EXPORT_SYMBOL vmlinux 0x8c86171f mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0x8c8e7739 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8cdaca92 lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0x8cf1a339 load_nls_default +EXPORT_SYMBOL vmlinux 0x8d087929 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x8d1b8aea swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0x8d28298f netlink_ack +EXPORT_SYMBOL vmlinux 0x8d295ff4 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x8d38d8ea blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x8d49df51 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d55d4b9 netif_rx_ni +EXPORT_SYMBOL vmlinux 0x8d5cb48f follow_down_one +EXPORT_SYMBOL vmlinux 0x8d6d4696 mem_cgroup_begin_page_stat +EXPORT_SYMBOL vmlinux 0x8d6fcbc2 lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d73b92f generic_delete_inode +EXPORT_SYMBOL vmlinux 0x8d7dd320 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x8d838d91 ida_remove +EXPORT_SYMBOL vmlinux 0x8d8b894b skb_free_datagram +EXPORT_SYMBOL vmlinux 0x8d8d96c6 acpi_get_sleep_type_data +EXPORT_SYMBOL vmlinux 0x8d985206 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x8da1a3cb acpi_remove_interface +EXPORT_SYMBOL vmlinux 0x8da6135f gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x8daf8c42 dql_init +EXPORT_SYMBOL vmlinux 0x8deffe68 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x8df465de scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8e002cda acpi_remove_gpe_block +EXPORT_SYMBOL vmlinux 0x8e16c7ef security_path_rmdir +EXPORT_SYMBOL vmlinux 0x8e2d83b6 node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x8e352cd7 lock_rename +EXPORT_SYMBOL vmlinux 0x8e62dee6 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x8e71758a phy_find_first +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e9b1d65 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler +EXPORT_SYMBOL vmlinux 0x8ecc423c pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x8eeef016 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x8f041d3e generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus +EXPORT_SYMBOL vmlinux 0x8f6ace30 pnp_is_active +EXPORT_SYMBOL vmlinux 0x8f840b34 devm_iounmap +EXPORT_SYMBOL vmlinux 0x8f8812cf udp6_csum_init +EXPORT_SYMBOL vmlinux 0x8f8dd1bd send_sig +EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 +EXPORT_SYMBOL vmlinux 0x8fa8feca devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x8fcfa011 key_alloc +EXPORT_SYMBOL vmlinux 0x8fe2c032 mount_nodev +EXPORT_SYMBOL vmlinux 0x8fe59cef convert_art_to_tsc +EXPORT_SYMBOL vmlinux 0x8fee828e filemap_flush +EXPORT_SYMBOL vmlinux 0x9008ead7 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x901ba548 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x901eac4b dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x9023a30a __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x90270d85 neigh_lookup +EXPORT_SYMBOL vmlinux 0x90278ac8 pci_bus_get +EXPORT_SYMBOL vmlinux 0x9041f1bb cdev_init +EXPORT_SYMBOL vmlinux 0x904409c6 acpi_set_firmware_waking_vector +EXPORT_SYMBOL vmlinux 0x904abd6f __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x9050ece4 __sb_end_write +EXPORT_SYMBOL vmlinux 0x905b583a filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x908575fe queued_write_lock_slowpath +EXPORT_SYMBOL vmlinux 0x90949ce3 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x90d03b87 set_device_ro +EXPORT_SYMBOL vmlinux 0x90d72f8e rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x90ea3dff mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x90f35bee xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x910d7b85 devm_request_resource +EXPORT_SYMBOL vmlinux 0x9113c343 genlmsg_put +EXPORT_SYMBOL vmlinux 0x91193fb0 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x911c243d vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x914968f0 posix_test_lock +EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb +EXPORT_SYMBOL vmlinux 0x9162b4e3 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x91656840 key_link +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x91772502 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x91967e8e xen_selfballoon_init +EXPORT_SYMBOL vmlinux 0x91ac822f vscnprintf +EXPORT_SYMBOL vmlinux 0x91aef84f vfs_getxattr_alloc +EXPORT_SYMBOL vmlinux 0x91b07fed ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x91b1e05e twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x91ce301b xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x91d53d37 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x91d5ea67 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x91f4e25a ip_setsockopt +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x91ffb193 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x9203acf6 phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0x9213b4b5 console_stop +EXPORT_SYMBOL vmlinux 0x921abacd unlock_buffer +EXPORT_SYMBOL vmlinux 0x922b7a22 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x92314569 get_tz_trend +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x924cf75f cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x92554b68 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x92578d40 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x927f77ce tty_name +EXPORT_SYMBOL vmlinux 0x9284951f eth_gro_receive +EXPORT_SYMBOL vmlinux 0x9287e464 unlink_framebuffer +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x929cf440 __f_setown +EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm +EXPORT_SYMBOL vmlinux 0x92ab4f56 phy_device_create +EXPORT_SYMBOL vmlinux 0x92c0d3f2 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x92f6767f lg_local_lock +EXPORT_SYMBOL vmlinux 0x92f8496b inet_put_port +EXPORT_SYMBOL vmlinux 0x92f9592c mark_page_accessed +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x93208656 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x932493a8 iosf_mbi_read +EXPORT_SYMBOL vmlinux 0x934821fe nvm_register_target +EXPORT_SYMBOL vmlinux 0x935b9110 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x935ee833 nvm_erase_blk +EXPORT_SYMBOL vmlinux 0x9362846c __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x938232d5 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x9383b89e simple_rename +EXPORT_SYMBOL vmlinux 0x93a68c23 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93b65bc7 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x93b7db79 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x93c0f05e ipv4_specific +EXPORT_SYMBOL vmlinux 0x93f3e52b acpi_extract_package +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x93fd7bf3 bio_copy_data +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x94087dfd nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x9412e10e blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x94178922 dst_discard_out +EXPORT_SYMBOL vmlinux 0x946c71ad __inet_hash +EXPORT_SYMBOL vmlinux 0x948c088d unlock_page +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94bd4088 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x94d852d7 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x94e740e0 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x950f720b truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x952a9d9b __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x95395301 acpi_exception +EXPORT_SYMBOL vmlinux 0x953c5f2d blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x9540b857 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x955943ff inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x955bf803 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x9560ee55 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x9578db09 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x95ae1213 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x95bd6e26 acpi_install_sci_handler +EXPORT_SYMBOL vmlinux 0x95c98cb3 md_cluster_mod +EXPORT_SYMBOL vmlinux 0x95dd3410 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x95e1f4c2 ppp_input +EXPORT_SYMBOL vmlinux 0x960a8f85 skb_pad +EXPORT_SYMBOL vmlinux 0x96194880 phy_start +EXPORT_SYMBOL vmlinux 0x961ff9d1 rwsem_wake +EXPORT_SYMBOL vmlinux 0x9625c7e6 dqget +EXPORT_SYMBOL vmlinux 0x9630a7fb scsi_ioctl +EXPORT_SYMBOL vmlinux 0x96389c0a skb_queue_head +EXPORT_SYMBOL vmlinux 0x963a2376 vfs_mknod +EXPORT_SYMBOL vmlinux 0x9648af43 md_update_sb +EXPORT_SYMBOL vmlinux 0x965593c6 set_wb_congested +EXPORT_SYMBOL vmlinux 0x9671cf35 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x9692f154 set_pages_wb +EXPORT_SYMBOL vmlinux 0x9699cb3a napi_gro_receive +EXPORT_SYMBOL vmlinux 0x96aba385 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96b4f166 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x96b7515a __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x96ca12c3 mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d6cf6e request_key +EXPORT_SYMBOL vmlinux 0x96ea4642 param_ops_bool +EXPORT_SYMBOL vmlinux 0x96f3dfa5 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x970e57b1 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x977e9a99 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x97868aef __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97bf320e pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x97c5bd0a acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x97d72537 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x97de0ddd acpi_install_gpe_block +EXPORT_SYMBOL vmlinux 0x97dfc650 write_inode_now +EXPORT_SYMBOL vmlinux 0x97e4a860 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x97e5b645 page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0x97f43f03 wireless_send_event +EXPORT_SYMBOL vmlinux 0x97faed2b pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x98482fc9 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x985fe9ae neigh_direct_output +EXPORT_SYMBOL vmlinux 0x98601bc6 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x986da01f seq_pad +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x9878745c _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x988d0a29 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x988ed85d set_memory_x +EXPORT_SYMBOL vmlinux 0x98b9f739 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x98bcbb39 blk_rq_init +EXPORT_SYMBOL vmlinux 0x98c68c41 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x98d37bc0 tty_register_device +EXPORT_SYMBOL vmlinux 0x98de1def dquot_scan_active +EXPORT_SYMBOL vmlinux 0x98ecbae2 noop_qdisc +EXPORT_SYMBOL vmlinux 0x98fb85b5 amd_iommu_domain_set_gcr3 +EXPORT_SYMBOL vmlinux 0x98fbeb27 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x98ffbdd2 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x990d879b agp_unbind_memory +EXPORT_SYMBOL vmlinux 0x99195078 vsnprintf +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x99714dc4 set_anon_super +EXPORT_SYMBOL vmlinux 0x9976105c eth_header_cache +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99aa2bb9 alloc_disk +EXPORT_SYMBOL vmlinux 0x99c5ed14 seq_file_path +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x99d3a43c dm_table_get_size +EXPORT_SYMBOL vmlinux 0x99d998f6 dqput +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99ddf9b1 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x99ed424b filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x99f068d5 x86_cpu_to_node_map +EXPORT_SYMBOL vmlinux 0x99f175d8 napi_complete_done +EXPORT_SYMBOL vmlinux 0x99f3f93e serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x9a091879 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x9a1019b5 kobject_add +EXPORT_SYMBOL vmlinux 0x9a1c6d2e blk_init_queue +EXPORT_SYMBOL vmlinux 0x9a1d755b d_splice_alias +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a3d4d7a dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0x9a7992cd sock_rfree +EXPORT_SYMBOL vmlinux 0x9a9e301d pcie_set_mps +EXPORT_SYMBOL vmlinux 0x9aab0bd7 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x9ab437f5 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x9ad2d93e iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x9ae5f0cd xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0x9ae6f874 node_data +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9afa039e lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b596272 pci_choose_state +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba146bf wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put +EXPORT_SYMBOL vmlinux 0x9bdcb8f7 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9c14ff25 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x9c161158 mount_pseudo +EXPORT_SYMBOL vmlinux 0x9c3b6ee5 __frontswap_test +EXPORT_SYMBOL vmlinux 0x9c41624c compat_ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x9c46685e security_task_getsecid +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c6a6b64 udplite_prot +EXPORT_SYMBOL vmlinux 0x9c9075e5 kobject_get +EXPORT_SYMBOL vmlinux 0x9c9dd1b9 sock_create_kern +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9ccb3589 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x9ce76489 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d14dae4 vga_switcheroo_register_client +EXPORT_SYMBOL vmlinux 0x9d2b3a51 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x9d33ef5e acpi_enable +EXPORT_SYMBOL vmlinux 0x9d3635fd proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d41c7b0 skb_clone +EXPORT_SYMBOL vmlinux 0x9d54ed5c blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x9d5a3eb7 mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0x9d5bb6a5 flow_cache_init +EXPORT_SYMBOL vmlinux 0x9d855e17 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x9d9c8324 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x9da05e10 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x9df5da1f vme_lm_request +EXPORT_SYMBOL vmlinux 0x9dfc3e38 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x9e098e2b cpu_sibling_map +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e2f8c90 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9e363b6b acpi_disable_gpe +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e621f47 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read +EXPORT_SYMBOL vmlinux 0x9e6c5ae1 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e85b34e pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x9e8a0fe2 md_check_recovery +EXPORT_SYMBOL vmlinux 0x9e97fc66 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9eaf4194 dev_base_lock +EXPORT_SYMBOL vmlinux 0x9eaf6910 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource +EXPORT_SYMBOL vmlinux 0x9ed11456 napi_get_frags +EXPORT_SYMBOL vmlinux 0x9ef6ad62 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x9efaed7d mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x9f41daed sock_wake_async +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f6a3408 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x9f7c1be8 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fa70f2f tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x9fabfa78 sock_update_memcg +EXPORT_SYMBOL vmlinux 0x9fc47ae6 __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa005a51c scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa0152de7 tcf_hash_create +EXPORT_SYMBOL vmlinux 0xa040a612 abx500_remove_ops +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa049182f user_path_create +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa04a345f __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xa04bf95b rt6_lookup +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa05d1020 mdiobus_scan +EXPORT_SYMBOL vmlinux 0xa06ff399 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xa072c55b lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa0824497 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa08d385c block_read_full_page +EXPORT_SYMBOL vmlinux 0xa08f3a7f input_allocate_device +EXPORT_SYMBOL vmlinux 0xa0a43264 sget +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0dbea2d vfs_whiteout +EXPORT_SYMBOL vmlinux 0xa0e63942 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa0ff74d6 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa1309da6 dup_iter +EXPORT_SYMBOL vmlinux 0xa135ad7a nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xa13684bd ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xa139b8ef dev_mc_del +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts +EXPORT_SYMBOL vmlinux 0xa15ac66f __pci_register_driver +EXPORT_SYMBOL vmlinux 0xa1622117 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xa1809250 rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0xa180eebf do_splice_to +EXPORT_SYMBOL vmlinux 0xa1aba20e netdev_notice +EXPORT_SYMBOL vmlinux 0xa1b1c528 __ht_create_irq +EXPORT_SYMBOL vmlinux 0xa1b59b90 nonseekable_open +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1cb5c3c invalidate_bdev +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa202a8e5 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa20b0854 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0xa213b814 clk_add_alias +EXPORT_SYMBOL vmlinux 0xa2263f7a vfs_mkdir +EXPORT_SYMBOL vmlinux 0xa246d3dd iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0xa27bc636 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0xa283420e inode_needs_sync +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa297db40 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xa2a335bd vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0xa2c32b61 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0xa2facbd4 simple_link +EXPORT_SYMBOL vmlinux 0xa2fe4c05 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0xa304156b __block_write_begin +EXPORT_SYMBOL vmlinux 0xa30dc5dd jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0xa30e18f8 pv_cpu_ops +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa33c5491 iov_iter_zero +EXPORT_SYMBOL vmlinux 0xa34bf438 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xa34c7e3e netlink_unicast +EXPORT_SYMBOL vmlinux 0xa34fcb2d mempool_create_node +EXPORT_SYMBOL vmlinux 0xa350a8f8 set_memory_array_uc +EXPORT_SYMBOL vmlinux 0xa3687147 rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0xa37a816d inet6_bind +EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get +EXPORT_SYMBOL vmlinux 0xa38671b2 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0xa3a12147 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xa3b75735 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0xa3e0422e fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xa3e22c89 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xa3fde6e2 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xa425e908 set_page_dirty +EXPORT_SYMBOL vmlinux 0xa438d12e bdev_stack_limits +EXPORT_SYMBOL vmlinux 0xa438e2a8 neigh_update +EXPORT_SYMBOL vmlinux 0xa4416412 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xa4511467 crc16 +EXPORT_SYMBOL vmlinux 0xa469a3cc tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa475c418 d_set_d_op +EXPORT_SYMBOL vmlinux 0xa484cfd9 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4d0e9a9 vme_irq_generate +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4db8321 ppp_unit_number +EXPORT_SYMBOL vmlinux 0xa4e0c1e4 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0xa4e15088 d_delete +EXPORT_SYMBOL vmlinux 0xa4eca6a8 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xa4f6c63f agp_find_bridge +EXPORT_SYMBOL vmlinux 0xa4f6d98e xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xa4f87310 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0xa50a80c2 boot_cpu_data +EXPORT_SYMBOL vmlinux 0xa52e4ca1 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0xa5366824 migrate_page_copy +EXPORT_SYMBOL vmlinux 0xa53ca5ee netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa5701399 blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0xa57114b1 register_cdrom +EXPORT_SYMBOL vmlinux 0xa5753021 mount_single +EXPORT_SYMBOL vmlinux 0xa59593dc udp_ioctl +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa5a51eee __crc32c_le +EXPORT_SYMBOL vmlinux 0xa5a98e13 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xa5ad5a3d tty_throttle +EXPORT_SYMBOL vmlinux 0xa5dc40e1 current_fs_time +EXPORT_SYMBOL vmlinux 0xa5e7f188 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0xa5ec2325 kfree_skb_list +EXPORT_SYMBOL vmlinux 0xa5f62b93 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xa5fa236a dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0xa615bdc5 kmalloc_caches +EXPORT_SYMBOL vmlinux 0xa63322c6 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember +EXPORT_SYMBOL vmlinux 0xa6489437 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xa65d050a jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xa669e70b mapping_tagged +EXPORT_SYMBOL vmlinux 0xa66e718a uart_suspend_port +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6ad83e7 security_path_link +EXPORT_SYMBOL vmlinux 0xa6bbd805 __wake_up +EXPORT_SYMBOL vmlinux 0xa6bd63ca acpi_bios_error +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi +EXPORT_SYMBOL vmlinux 0xa713acf1 tcf_action_exec +EXPORT_SYMBOL vmlinux 0xa713f3a6 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0xa7163bb8 lookup_bdev +EXPORT_SYMBOL vmlinux 0xa71d99dd km_policy_expired +EXPORT_SYMBOL vmlinux 0xa72a0f5b nr_online_nodes +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa748ac3d genphy_setup_forced +EXPORT_SYMBOL vmlinux 0xa74a6525 padata_free +EXPORT_SYMBOL vmlinux 0xa74bcd62 rdmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xa75aa9d0 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xa763a046 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0xa77df734 path_get +EXPORT_SYMBOL vmlinux 0xa788f1a0 i8253_lock +EXPORT_SYMBOL vmlinux 0xa7b21bd5 open_check_o_direct +EXPORT_SYMBOL vmlinux 0xa7cb4871 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xa7ccb6f1 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0xa7d7ec65 netdev_crit +EXPORT_SYMBOL vmlinux 0xa8022b70 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xa80fca46 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xa81462a0 iterate_fd +EXPORT_SYMBOL vmlinux 0xa828fa43 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa8638435 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa8a06f88 fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0xa8a1719e netif_receive_skb +EXPORT_SYMBOL vmlinux 0xa8aa72a8 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0xa8bd66dc dm_register_target +EXPORT_SYMBOL vmlinux 0xa8cba40d in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xa8cbe9f8 locks_remove_posix +EXPORT_SYMBOL vmlinux 0xa8ccfe55 simple_readpage +EXPORT_SYMBOL vmlinux 0xa8cfe1f4 sk_reset_timer +EXPORT_SYMBOL vmlinux 0xa8fe98f2 filp_open +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa90af8f3 x86_dma_fallback_dev +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa91761f9 elevator_init +EXPORT_SYMBOL vmlinux 0xa91d90d3 nla_put +EXPORT_SYMBOL vmlinux 0xa9220a25 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xa92fc8a8 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0xa9311c3e scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xa9504bc2 __blk_run_queue +EXPORT_SYMBOL vmlinux 0xa959aacb inet6_ioctl +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa982f03d __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes +EXPORT_SYMBOL vmlinux 0xa9a8e17f arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0xa9ab1788 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0xa9bd2676 __vmalloc +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xaa0c8612 set_bh_page +EXPORT_SYMBOL vmlinux 0xaa207881 phy_start_aneg +EXPORT_SYMBOL vmlinux 0xaa392e83 napi_consume_skb +EXPORT_SYMBOL vmlinux 0xaa5bd08d __pv_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaaa306c6 pci_request_region +EXPORT_SYMBOL vmlinux 0xaaaac71a blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0xaab68850 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xaac5a89f mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaad9218b agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable +EXPORT_SYMBOL vmlinux 0xaaeedeeb blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab4cb7c9 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0xab4e65e5 ps2_command +EXPORT_SYMBOL vmlinux 0xab551fad acpi_get_data_full +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab65ed80 set_memory_uc +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab770678 rdmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab7f6697 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xaba3159c gen_pool_destroy +EXPORT_SYMBOL vmlinux 0xaba5ac08 cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0xabbbb61b inet_frags_fini +EXPORT_SYMBOL vmlinux 0xabc3b66b twl6040_get_pll +EXPORT_SYMBOL vmlinux 0xabc9e148 ata_print_version +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xac09832c mb_cache_shrink +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac1eb1d6 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear +EXPORT_SYMBOL vmlinux 0xac3d1d56 kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0xac48f3b9 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xac604020 blk_end_request +EXPORT_SYMBOL vmlinux 0xac6a6408 register_filesystem +EXPORT_SYMBOL vmlinux 0xaca5727a agp_put_bridge +EXPORT_SYMBOL vmlinux 0xaca9bcd2 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb99769 ida_destroy +EXPORT_SYMBOL vmlinux 0xacc76868 on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf56f49 genphy_update_link +EXPORT_SYMBOL vmlinux 0xad01744f kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad164875 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xad17fa37 dev_err +EXPORT_SYMBOL vmlinux 0xad1e91bf skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xad261d36 tcp_filter +EXPORT_SYMBOL vmlinux 0xad3c9b62 swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xad698f77 dqstats +EXPORT_SYMBOL vmlinux 0xad6e1555 padata_add_cpu +EXPORT_SYMBOL vmlinux 0xad6e4bb6 mempool_free +EXPORT_SYMBOL vmlinux 0xad73ef4b vm_mmap +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad8ffc74 soft_cursor +EXPORT_SYMBOL vmlinux 0xada3412a dev_mc_del_global +EXPORT_SYMBOL vmlinux 0xadb2a920 address_space_init_once +EXPORT_SYMBOL vmlinux 0xadb2bef3 acl_by_type +EXPORT_SYMBOL vmlinux 0xadd6dae6 tty_check_change +EXPORT_SYMBOL vmlinux 0xadd771b2 security_path_unlink +EXPORT_SYMBOL vmlinux 0xade21e6f path_put +EXPORT_SYMBOL vmlinux 0xade3d4f0 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae044bc7 panic_notifier_list +EXPORT_SYMBOL vmlinux 0xae0826e9 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0xae0ba24b input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xae26de29 set_pages_array_uc +EXPORT_SYMBOL vmlinux 0xae2867a1 dev_addr_del +EXPORT_SYMBOL vmlinux 0xae520a16 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0xae6766e6 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xae71feb4 xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0xae732686 freeze_super +EXPORT_SYMBOL vmlinux 0xae74188c generic_file_mmap +EXPORT_SYMBOL vmlinux 0xae90438f mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0xaea140b8 single_release +EXPORT_SYMBOL vmlinux 0xaea976a8 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xaeb0a47b bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xaeb9f98d __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0xaef5ff2e dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xaeffd738 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0xaf09dec1 vmap +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf460dba netdev_features_change +EXPORT_SYMBOL vmlinux 0xaf5b1085 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xaf606bd9 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xaf611eac amd_nb_misc_ids +EXPORT_SYMBOL vmlinux 0xaf6ae696 kstrndup +EXPORT_SYMBOL vmlinux 0xaf6cce6c skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0xafb8c6ff copy_user_generic_string +EXPORT_SYMBOL vmlinux 0xafc50476 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0xafd5ff2c amd_iommu_v2_supported +EXPORT_SYMBOL vmlinux 0xafe0fd24 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0xaff05472 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xaffa7830 rtnl_unicast +EXPORT_SYMBOL vmlinux 0xaffa8ae2 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xb00a4c75 rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0xb01244c2 set_blocksize +EXPORT_SYMBOL vmlinux 0xb0140dfb cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xb016369e devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xb019eb9b neigh_parms_release +EXPORT_SYMBOL vmlinux 0xb01b1db8 intel_gtt_insert_sg_entries +EXPORT_SYMBOL vmlinux 0xb028d8fd __cleancache_get_page +EXPORT_SYMBOL vmlinux 0xb051579b skb_insert +EXPORT_SYMBOL vmlinux 0xb057ef0b d_drop +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb09de40c jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0a39f0b inet_select_addr +EXPORT_SYMBOL vmlinux 0xb0b34544 netdev_err +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0bd0533 locks_init_lock +EXPORT_SYMBOL vmlinux 0xb0d12af0 simple_setattr +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e602eb memmove +EXPORT_SYMBOL vmlinux 0xb0e9be2e netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xb0eb41ff iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0xb0f44b3b inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0xb0f64288 dcb_getapp +EXPORT_SYMBOL vmlinux 0xb101ea46 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0xb10604db sync_inode +EXPORT_SYMBOL vmlinux 0xb113240a genphy_resume +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb123b82b datagram_poll +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb152d87d cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb16acd2e iterate_mounts +EXPORT_SYMBOL vmlinux 0xb176c05e acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xb17ec862 mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0xb1873bd3 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0xb187b3a8 lg_lock_init +EXPORT_SYMBOL vmlinux 0xb19e1f56 dcb_setapp +EXPORT_SYMBOL vmlinux 0xb1a0be2f pipe_unlock +EXPORT_SYMBOL vmlinux 0xb1ba6826 dev_activate +EXPORT_SYMBOL vmlinux 0xb1c1170d dentry_open +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xb1cfad22 rdmsr_on_cpu +EXPORT_SYMBOL vmlinux 0xb1d3ed0f vfs_llseek +EXPORT_SYMBOL vmlinux 0xb20ecf88 acpi_run_osc +EXPORT_SYMBOL vmlinux 0xb20f9ca4 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu +EXPORT_SYMBOL vmlinux 0xb2255e2c udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xb235c373 __dquot_transfer +EXPORT_SYMBOL vmlinux 0xb240ac21 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xb241b093 vlan_vid_add +EXPORT_SYMBOL vmlinux 0xb24e7b28 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xb24fbc0e da903x_query_status +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb269dc76 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0xb274ec72 bio_advance +EXPORT_SYMBOL vmlinux 0xb27cd284 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xb2d5a552 complete +EXPORT_SYMBOL vmlinux 0xb2d966a8 simple_fill_super +EXPORT_SYMBOL vmlinux 0xb2e3db61 nf_log_set +EXPORT_SYMBOL vmlinux 0xb2e9bcf7 fsnotify_get_group +EXPORT_SYMBOL vmlinux 0xb2f74fb6 intel_gmch_remove +EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 +EXPORT_SYMBOL vmlinux 0xb30e206c __free_pages +EXPORT_SYMBOL vmlinux 0xb3284531 acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xb3332a6f jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0xb334161e blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xb33e34b0 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0xb34a7199 inet_add_offload +EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb40d2fe3 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0xb40d8a63 stop_tty +EXPORT_SYMBOL vmlinux 0xb41bab83 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0xb4231b14 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb42e5f78 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xb430b84e inet_del_protocol +EXPORT_SYMBOL vmlinux 0xb4328ac4 mutex_lock +EXPORT_SYMBOL vmlinux 0xb441fdf7 simple_transaction_get +EXPORT_SYMBOL vmlinux 0xb45abdc3 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0xb464b31f md_wakeup_thread +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb47189b5 reservation_ww_class +EXPORT_SYMBOL vmlinux 0xb4783235 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0xb4a28341 pci_dev_get +EXPORT_SYMBOL vmlinux 0xb4c80374 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xb4ceab69 key_payload_reserve +EXPORT_SYMBOL vmlinux 0xb4d5984b filemap_fdatawait +EXPORT_SYMBOL vmlinux 0xb4d5b679 zero_fill_bio +EXPORT_SYMBOL vmlinux 0xb4da68a1 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xb50c8cb9 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range +EXPORT_SYMBOL vmlinux 0xb55027c3 dev_close +EXPORT_SYMBOL vmlinux 0xb56001cb sock_get_timestamp +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb589afec generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xb59443da ip_options_compile +EXPORT_SYMBOL vmlinux 0xb5971222 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xb597b3f7 fb_pan_display +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5b185b1 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xb5b41feb netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free +EXPORT_SYMBOL vmlinux 0xb5cc8bf1 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xb5cc9b7e phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0xb5d238a1 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0xb5dbd16a __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xb5ecf214 tc_classify +EXPORT_SYMBOL vmlinux 0xb5ef8745 proc_symlink +EXPORT_SYMBOL vmlinux 0xb5fecb9e abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xb60b2957 nf_register_hooks +EXPORT_SYMBOL vmlinux 0xb6150a07 param_set_invbool +EXPORT_SYMBOL vmlinux 0xb615cf1b setup_arg_pages +EXPORT_SYMBOL vmlinux 0xb61f7200 kern_path +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb6395a35 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0xb640708c inet_dgram_ops +EXPORT_SYMBOL vmlinux 0xb65960a9 tcp_proto_cgroup +EXPORT_SYMBOL vmlinux 0xb66928ea mnt_set_expiry +EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb681f6ce __i2c_transfer +EXPORT_SYMBOL vmlinux 0xb6920562 downgrade_write +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6ae54a8 sync_filesystem +EXPORT_SYMBOL vmlinux 0xb6b1a614 pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0xb6c3f396 generic_write_checks +EXPORT_SYMBOL vmlinux 0xb700ab7d copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xb70213fc bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xb70688b1 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0xb7225ad6 account_page_redirty +EXPORT_SYMBOL vmlinux 0xb72c5845 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xb735920f mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb758b225 acpi_disable_event +EXPORT_SYMBOL vmlinux 0xb75be552 mount_ns +EXPORT_SYMBOL vmlinux 0xb7681e7c dev_warn +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb788c428 __register_chrdev +EXPORT_SYMBOL vmlinux 0xb7a06cba blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7d2a32f ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0xb80d9912 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xb812fd7f blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xb81afd72 set_create_files_as +EXPORT_SYMBOL vmlinux 0xb821647c netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xb827d039 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xb871dc54 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb87d6019 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xb8a5bd81 generic_start_io_acct +EXPORT_SYMBOL vmlinux 0xb8a5f8bb skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0xb8b6a76c __percpu_counter_add +EXPORT_SYMBOL vmlinux 0xb8bf8996 d_instantiate +EXPORT_SYMBOL vmlinux 0xb8e3aaa6 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 +EXPORT_SYMBOL vmlinux 0xb8fdcd10 mempool_resize +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb909e0e6 get_super +EXPORT_SYMBOL vmlinux 0xb9377a91 input_set_capability +EXPORT_SYMBOL vmlinux 0xb94a8915 inode_init_always +EXPORT_SYMBOL vmlinux 0xb95a4f68 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0xb979bdfb get_unmapped_area +EXPORT_SYMBOL vmlinux 0xb99ab7ac ip_do_fragment +EXPORT_SYMBOL vmlinux 0xb9aef31e pci_biosrom_size +EXPORT_SYMBOL vmlinux 0xb9c4db76 agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0xb9d4f09e sync_blockdev +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9ff0ac9 swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0xba087a71 phy_suspend +EXPORT_SYMBOL vmlinux 0xba0d7cae neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xba25df74 sock_no_listen +EXPORT_SYMBOL vmlinux 0xba2d8594 ec_read +EXPORT_SYMBOL vmlinux 0xba370af2 seq_escape +EXPORT_SYMBOL vmlinux 0xba3b31e9 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xba3b3a86 seq_hex_dump +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba69804a blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0xba69b120 unlock_rename +EXPORT_SYMBOL vmlinux 0xba8acdbf blk_recount_segments +EXPORT_SYMBOL vmlinux 0xbabb7400 fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb2ec6cc blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0xbb34134a iov_shorten +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb63b023 check_disk_size_change +EXPORT_SYMBOL vmlinux 0xbb9638b4 pci_write_vpd +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbb9ddbc0 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xbba70a2d _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xbba9745a simple_write_end +EXPORT_SYMBOL vmlinux 0xbbaeb559 memcg_socket_limit_enabled +EXPORT_SYMBOL vmlinux 0xbbaf5968 tso_start +EXPORT_SYMBOL vmlinux 0xbbe4a04b twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0xbbeb1ec6 ioremap_wt +EXPORT_SYMBOL vmlinux 0xbc03d1cc tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xbc155aed locks_mandatory_area +EXPORT_SYMBOL vmlinux 0xbc1974e9 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0xbc1a7c56 param_set_copystring +EXPORT_SYMBOL vmlinux 0xbc1ea818 touch_atime +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc605c10 scsi_remove_device +EXPORT_SYMBOL vmlinux 0xbc9db617 handle_edge_irq +EXPORT_SYMBOL vmlinux 0xbca20545 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xbca6143b xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xbcb49d38 bioset_free +EXPORT_SYMBOL vmlinux 0xbcbd6199 ppp_input_error +EXPORT_SYMBOL vmlinux 0xbcbd6d3e vfs_link +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcdc1d91 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xbcef02ad proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xbcfc3cd5 tty_kref_put +EXPORT_SYMBOL vmlinux 0xbd1a7e55 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xbd26f77e inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xbd27bd2d user_path_at_empty +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd6cf327 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xbd6d79f1 __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbdaf5b07 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xbdc6b187 cpu_tss +EXPORT_SYMBOL vmlinux 0xbdc99c2f iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xbde70e44 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xbdf2533c dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xbdfb6dbb __fentry__ +EXPORT_SYMBOL vmlinux 0xbe067e1f pci_clear_master +EXPORT_SYMBOL vmlinux 0xbe0ab81e dev_alert +EXPORT_SYMBOL vmlinux 0xbe1150a6 register_netdevice +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe3146b6 amd_iommu_domain_direct_map +EXPORT_SYMBOL vmlinux 0xbe9ca4d8 sock_i_ino +EXPORT_SYMBOL vmlinux 0xbec30d05 x86_match_cpu +EXPORT_SYMBOL vmlinux 0xbec3424c ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xbed1ade8 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xbee276c6 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0xbeed2e8e mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbf1b07ee tty_port_hangup +EXPORT_SYMBOL vmlinux 0xbf1cd2a7 alloc_xenballooned_pages +EXPORT_SYMBOL vmlinux 0xbf439646 __get_user_pages +EXPORT_SYMBOL vmlinux 0xbf4dca92 neigh_event_ns +EXPORT_SYMBOL vmlinux 0xbf4f8eab phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xbf54873e tty_free_termios +EXPORT_SYMBOL vmlinux 0xbf6c0682 acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf829e0b tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0xbf832354 neigh_app_ns +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf98863a tty_hangup +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfa3e5f4 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0xbfac13ba tcp_init_cgroup +EXPORT_SYMBOL vmlinux 0xbfb0e196 unregister_filesystem +EXPORT_SYMBOL vmlinux 0xbfb760a9 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfe1152b kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xc017f56c kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xc04794e3 inet6_protos +EXPORT_SYMBOL vmlinux 0xc04a03be padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xc0520b6b reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0xc05e355f idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc07c80f5 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc09c8e35 create_empty_buffers +EXPORT_SYMBOL vmlinux 0xc0a1407d netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0cd3b13 ___ratelimit +EXPORT_SYMBOL vmlinux 0xc108b7f4 mark_info_dirty +EXPORT_SYMBOL vmlinux 0xc119b2d4 fget +EXPORT_SYMBOL vmlinux 0xc1414e3f file_remove_privs +EXPORT_SYMBOL vmlinux 0xc15a44c6 memzero_explicit +EXPORT_SYMBOL vmlinux 0xc1965605 __invalidate_device +EXPORT_SYMBOL vmlinux 0xc1c9543c set_trace_device +EXPORT_SYMBOL vmlinux 0xc1cbbd10 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc1e843d5 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0xc1f0fca6 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xc208a0b1 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0xc210c982 param_set_ushort +EXPORT_SYMBOL vmlinux 0xc2120ad9 inet6_add_offload +EXPORT_SYMBOL vmlinux 0xc2146bde blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0xc21e73a5 inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0xc22bb673 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xc2316fc9 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0xc234c00a abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc24449d3 sk_free +EXPORT_SYMBOL vmlinux 0xc26b1766 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xc288044b acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc29ef5a5 max8925_reg_write +EXPORT_SYMBOL vmlinux 0xc2a5d328 phy_device_free +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2af3120 nla_append +EXPORT_SYMBOL vmlinux 0xc2c28213 fb_find_mode +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2e58833 unregister_netdev +EXPORT_SYMBOL vmlinux 0xc2f220b2 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc312dfde __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0xc315cbf4 mount_subtree +EXPORT_SYMBOL vmlinux 0xc3201a46 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0xc32acc76 vfs_writev +EXPORT_SYMBOL vmlinux 0xc34ba9bf input_unregister_handler +EXPORT_SYMBOL vmlinux 0xc350b4eb wrmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xc356aa25 skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0xc38ddf78 netdev_state_change +EXPORT_SYMBOL vmlinux 0xc393146e block_truncate_page +EXPORT_SYMBOL vmlinux 0xc3966737 is_bad_inode +EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 +EXPORT_SYMBOL vmlinux 0xc3b0a9f2 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xc3bf1cf6 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3c7d03e blkdev_fsync +EXPORT_SYMBOL vmlinux 0xc3d2c0cd __register_nls +EXPORT_SYMBOL vmlinux 0xc3da66d6 nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0xc3e05a3c scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0xc3e49e64 fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0xc3ed1ebb param_ops_short +EXPORT_SYMBOL vmlinux 0xc4025314 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xc441369a __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0xc4596795 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xc482c967 proc_set_size +EXPORT_SYMBOL vmlinux 0xc48307db lz4_decompress +EXPORT_SYMBOL vmlinux 0xc4908af0 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xc4915808 fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4b591a9 del_gendisk +EXPORT_SYMBOL vmlinux 0xc4c0bac2 dev_get_iflink +EXPORT_SYMBOL vmlinux 0xc4f331c6 cpu_online_mask +EXPORT_SYMBOL vmlinux 0xc4f7503f inet_frag_find +EXPORT_SYMBOL vmlinux 0xc4fdb30b tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xc5137552 x86_bios_cpu_apicid +EXPORT_SYMBOL vmlinux 0xc52ec2bf udp_poll +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc558530d profile_pc +EXPORT_SYMBOL vmlinux 0xc5621972 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0xc5669258 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0xc5718826 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xc57287f3 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xc57a2078 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0xc5929eb0 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0xc59776b8 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5d0cfc9 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5e222ab ping_prot +EXPORT_SYMBOL vmlinux 0xc5f16c03 inet_frags_init +EXPORT_SYMBOL vmlinux 0xc5f6a5d8 elevator_alloc +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc6150ab6 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc6415013 locks_copy_lock +EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc6772da2 radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0xc6824601 sk_stop_timer +EXPORT_SYMBOL vmlinux 0xc6975826 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xc6b368d3 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc712502d mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0xc71ed727 d_set_fallthru +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc734381f nf_getsockopt +EXPORT_SYMBOL vmlinux 0xc73834b7 dst_destroy +EXPORT_SYMBOL vmlinux 0xc74d41b0 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0xc75047a3 neigh_for_each +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc7591cf0 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xc76ab71e devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0xc7717b1d acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0xc7782a17 inet_bind +EXPORT_SYMBOL vmlinux 0xc77af30f swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xc7803a62 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc79bb4cb gen_pool_alloc +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7c49ffe dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0xc7d035d0 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xc7fa4700 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xc7fcc5bf acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xc815137c single_open +EXPORT_SYMBOL vmlinux 0xc81d643a i2c_del_adapter +EXPORT_SYMBOL vmlinux 0xc81deaf1 flush_signals +EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0xc83f5cfc cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc85b6841 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xc860e0d3 param_set_int +EXPORT_SYMBOL vmlinux 0xc862469b param_set_byte +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc8799f38 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0xc88b2702 lease_get_mtime +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc89acaaf tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xc89e8a40 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8a9759f pm860x_set_bits +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8cd16a9 nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xc8cff934 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0xc8f6d231 tcp_child_process +EXPORT_SYMBOL vmlinux 0xc90f8832 cfb_fillrect +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc93c5c60 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc96c635d neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xc978479a xz_dec_run +EXPORT_SYMBOL vmlinux 0xc97cc7aa free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xc98a9367 single_open_size +EXPORT_SYMBOL vmlinux 0xc9912792 __dax_fault +EXPORT_SYMBOL vmlinux 0xc995ca54 security_inode_permission +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc99f6aae dma_spin_lock +EXPORT_SYMBOL vmlinux 0xc9a4407f md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0xc9b2191e mmc_erase +EXPORT_SYMBOL vmlinux 0xc9b24d2a phy_device_remove +EXPORT_SYMBOL vmlinux 0xc9d2c62c d_find_any_alias +EXPORT_SYMBOL vmlinux 0xc9f3bea1 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xc9f77f44 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xc9fb6af2 simple_transaction_release +EXPORT_SYMBOL vmlinux 0xc9fef317 add_wait_queue +EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy +EXPORT_SYMBOL vmlinux 0xca1a2783 fput +EXPORT_SYMBOL vmlinux 0xca2e829b kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xca4d6313 pci_map_rom +EXPORT_SYMBOL vmlinux 0xca5ee09a vme_free_consistent +EXPORT_SYMBOL vmlinux 0xca763303 inet6_offloads +EXPORT_SYMBOL vmlinux 0xca832efe kmalloc_order +EXPORT_SYMBOL vmlinux 0xca8acc78 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xca8d95d4 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xca900955 fb_is_primary_device +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xcab5b3c1 current_in_userns +EXPORT_SYMBOL vmlinux 0xcabea97b security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xcac83b66 blk_stop_queue +EXPORT_SYMBOL vmlinux 0xcacf29e4 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0xcaee698a agp_backend_acquire +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcaf5f117 d_obtain_root +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb031945 input_close_device +EXPORT_SYMBOL vmlinux 0xcb271276 nd_integrity_init +EXPORT_SYMBOL vmlinux 0xcb4e8bb7 acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb8a2048 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xcb8d9322 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xcb8e1d16 i2c_register_driver +EXPORT_SYMBOL vmlinux 0xcb936989 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcbae6c7a acpi_lid_notifier_unregister +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbcf190a __netif_schedule +EXPORT_SYMBOL vmlinux 0xcbd6d852 pnp_start_dev +EXPORT_SYMBOL vmlinux 0xcbec4bdf param_ops_long +EXPORT_SYMBOL vmlinux 0xcbf17a89 page_waitqueue +EXPORT_SYMBOL vmlinux 0xcc0428ed fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0xcc24648d default_qdisc_ops +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc27f909 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xcc2bc20a udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xcc3a6f88 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0xcc3ae51b __lock_page +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc546254 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0xcc5680fc inet6_release +EXPORT_SYMBOL vmlinux 0xcc580f11 mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0xcc6082be simple_getattr +EXPORT_SYMBOL vmlinux 0xcc82add3 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xcc838223 __pte2cachemode_tbl +EXPORT_SYMBOL vmlinux 0xcc8d3f4f acpi_os_execute +EXPORT_SYMBOL vmlinux 0xcc9aa2a6 register_sysctl +EXPORT_SYMBOL vmlinux 0xccb0d76f amd_iommu_complete_ppr +EXPORT_SYMBOL vmlinux 0xccbc0084 sg_miter_start +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccdba8d8 open_exec +EXPORT_SYMBOL vmlinux 0xcceee8d6 pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0xccfa2bb2 __neigh_event_send +EXPORT_SYMBOL vmlinux 0xcd20667a kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd3438a5 simple_dir_operations +EXPORT_SYMBOL vmlinux 0xcd57f7b0 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xcd58ce84 serio_open +EXPORT_SYMBOL vmlinux 0xcd828db5 agp_backend_release +EXPORT_SYMBOL vmlinux 0xcda427d9 dquot_free_inode +EXPORT_SYMBOL vmlinux 0xcda63344 mpage_writepages +EXPORT_SYMBOL vmlinux 0xcdabe586 keyring_search +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdc63c35 dquot_get_state +EXPORT_SYMBOL vmlinux 0xcdca60d3 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0xcdd39abf block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xce0e2d66 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce2c45cc wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xce4904a4 acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce652cef filemap_fault +EXPORT_SYMBOL vmlinux 0xce7778bd serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0xce7850e1 crc32_le_shift +EXPORT_SYMBOL vmlinux 0xce84fdee scsi_device_resume +EXPORT_SYMBOL vmlinux 0xce9c630a __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceae504f cmdline_parts_free +EXPORT_SYMBOL vmlinux 0xcec74ad3 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0xcedbd003 md_error +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcef6e12b uart_add_one_port +EXPORT_SYMBOL vmlinux 0xcef8d9c3 invalidate_partition +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf112ff0 mmc_add_host +EXPORT_SYMBOL vmlinux 0xcf36fe73 proto_unregister +EXPORT_SYMBOL vmlinux 0xcf484eee xfrm_register_mode +EXPORT_SYMBOL vmlinux 0xcf4e186e wireless_spy_update +EXPORT_SYMBOL vmlinux 0xcf649e4f release_pages +EXPORT_SYMBOL vmlinux 0xcf6cfe1f msrs_free +EXPORT_SYMBOL vmlinux 0xcf800d9f blk_start_queue +EXPORT_SYMBOL vmlinux 0xcf80e0d5 swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0xcf9c88c9 pagecache_get_page +EXPORT_SYMBOL vmlinux 0xcfa1c596 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0xcfb4a296 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xcfcdbc3a agp_allocate_memory +EXPORT_SYMBOL vmlinux 0xcfe46ead dev_mc_sync +EXPORT_SYMBOL vmlinux 0xd012f4a4 tcp_read_sock +EXPORT_SYMBOL vmlinux 0xd026f568 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xd04668e8 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xd04df91b __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xd0537bb5 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0xd0665727 genphy_suspend +EXPORT_SYMBOL vmlinux 0xd06f2367 neigh_xmit +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd08da6d3 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xd08f6239 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd1104291 unregister_qdisc +EXPORT_SYMBOL vmlinux 0xd136c8e0 key_validate +EXPORT_SYMBOL vmlinux 0xd13ae4ac uart_remove_one_port +EXPORT_SYMBOL vmlinux 0xd1577498 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xd1652a93 acpi_info +EXPORT_SYMBOL vmlinux 0xd178ff70 vm_stat +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd1ac1346 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xd1b30d48 ip_check_defrag +EXPORT_SYMBOL vmlinux 0xd1cfba77 cdev_alloc +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings +EXPORT_SYMBOL vmlinux 0xd2064e2f idr_replace +EXPORT_SYMBOL vmlinux 0xd20f3020 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xd2286108 get_phy_device +EXPORT_SYMBOL vmlinux 0xd23b30d5 netlink_set_err +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2546927 bio_integrity_free +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd270943c mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd27cbeb4 netdev_change_features +EXPORT_SYMBOL vmlinux 0xd27fa985 prepare_binprm +EXPORT_SYMBOL vmlinux 0xd29b6fda dev_remove_pack +EXPORT_SYMBOL vmlinux 0xd2b09ce5 __kmalloc +EXPORT_SYMBOL vmlinux 0xd2b9548c generic_file_llseek +EXPORT_SYMBOL vmlinux 0xd2c5ed04 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0xd2d10e7e dev_mc_add +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2f4ddea tty_port_open +EXPORT_SYMBOL vmlinux 0xd2f5d089 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xd34a17ef inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0xd36b1ad5 bd_set_size +EXPORT_SYMBOL vmlinux 0xd36d3bb4 scsi_add_device +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd3719d59 paravirt_ticketlocks_enabled +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3f1867b vfs_symlink +EXPORT_SYMBOL vmlinux 0xd3f76442 dma_find_channel +EXPORT_SYMBOL vmlinux 0xd402c1a3 ihold +EXPORT_SYMBOL vmlinux 0xd448ad7f __break_lease +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd4619915 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0xd47a9bc5 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd4b42432 audit_log +EXPORT_SYMBOL vmlinux 0xd4b6d393 ps2_begin_command +EXPORT_SYMBOL vmlinux 0xd4d392f1 kernel_connect +EXPORT_SYMBOL vmlinux 0xd4e67b4c simple_nosetlease +EXPORT_SYMBOL vmlinux 0xd4f33909 agp_enable +EXPORT_SYMBOL vmlinux 0xd50fef48 acpi_detach_data +EXPORT_SYMBOL vmlinux 0xd511bca0 to_nd_btt +EXPORT_SYMBOL vmlinux 0xd5138f41 vfs_unlink +EXPORT_SYMBOL vmlinux 0xd530cb5f sget_userns +EXPORT_SYMBOL vmlinux 0xd5430173 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0xd55ebc7e truncate_setsize +EXPORT_SYMBOL vmlinux 0xd56a30e0 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0xd586e77b clk_get +EXPORT_SYMBOL vmlinux 0xd5877263 i2c_transfer +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd5d51b8d abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0xd5d71373 fb_show_logo +EXPORT_SYMBOL vmlinux 0xd5f760d8 iget_locked +EXPORT_SYMBOL vmlinux 0xd60dad12 seq_open +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd626e425 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd6419547 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd6607fd1 sock_create +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68cad4d cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0xd68e177f ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xd68e1d1b _raw_read_trylock +EXPORT_SYMBOL vmlinux 0xd68f7305 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xd6990313 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace +EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz +EXPORT_SYMBOL vmlinux 0xd6e2893d __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xd6e707f7 dquot_acquire +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6f8d60c scsi_register_interface +EXPORT_SYMBOL vmlinux 0xd707808a nvm_register +EXPORT_SYMBOL vmlinux 0xd730959d seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xd7389705 pci_get_subsys +EXPORT_SYMBOL vmlinux 0xd75374ad pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd77c2c12 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0xd78e0450 abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0xd7b06182 make_kprojid +EXPORT_SYMBOL vmlinux 0xd7be2995 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7ead6e1 nlmsg_notify +EXPORT_SYMBOL vmlinux 0xd7fba6d8 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xd7fdc508 mdiobus_free +EXPORT_SYMBOL vmlinux 0xd801786d d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0xd8161326 register_qdisc +EXPORT_SYMBOL vmlinux 0xd81dc270 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xd83f8169 from_kuid_munged +EXPORT_SYMBOL vmlinux 0xd861352f netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0xd8738d5d lock_sock_nested +EXPORT_SYMBOL vmlinux 0xd87ac9e5 try_module_get +EXPORT_SYMBOL vmlinux 0xd8854bc6 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd9091363 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0xd90ebf8f save_mount_options +EXPORT_SYMBOL vmlinux 0xd912a2c7 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0xd91e001c read_dev_sector +EXPORT_SYMBOL vmlinux 0xd91faa21 __kfree_skb +EXPORT_SYMBOL vmlinux 0xd92e2dca tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xd940652f nd_device_register +EXPORT_SYMBOL vmlinux 0xd94322e7 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0xd945c1f3 __tcf_hash_release +EXPORT_SYMBOL vmlinux 0xd95254ac igrab +EXPORT_SYMBOL vmlinux 0xd969b2c7 amd_e400_c1e_detected +EXPORT_SYMBOL vmlinux 0xd9717d8d alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd9b07cba ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xd9c2b771 processors +EXPORT_SYMBOL vmlinux 0xd9c67fa9 cpu_info +EXPORT_SYMBOL vmlinux 0xd9d3bcd3 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9f8d7ba neigh_table_clear +EXPORT_SYMBOL vmlinux 0xda186067 vm_map_ram +EXPORT_SYMBOL vmlinux 0xda1a1dc1 clear_wb_congested +EXPORT_SYMBOL vmlinux 0xda1fb5ad generic_write_end +EXPORT_SYMBOL vmlinux 0xda29655a __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xda3241cc dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0xda35577e i2c_use_client +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda43fc50 _dev_info +EXPORT_SYMBOL vmlinux 0xda447f99 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xda5108e1 unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0xda636cc3 compat_nf_getsockopt +EXPORT_SYMBOL vmlinux 0xda77de13 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda9fc7ae kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0xdab22ac9 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell +EXPORT_SYMBOL vmlinux 0xdaf1eb29 cont_write_begin +EXPORT_SYMBOL vmlinux 0xdafdeaab nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0xdb043c8a bio_integrity_advance +EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg +EXPORT_SYMBOL vmlinux 0xdb186e97 d_prune_aliases +EXPORT_SYMBOL vmlinux 0xdb3bcca6 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0xdb50c2dd dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xdb5bd395 filp_close +EXPORT_SYMBOL vmlinux 0xdb60abfa nvm_end_io +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb6dc028 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0xdb7020ba iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb854474 poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0xdb86a079 page_symlink +EXPORT_SYMBOL vmlinux 0xdb8fc278 pv_mmu_ops +EXPORT_SYMBOL vmlinux 0xdb9e26ea pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xdb9f83e1 end_page_writeback +EXPORT_SYMBOL vmlinux 0xdbc3eea7 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xdbce16a2 vfs_read +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc293114 tty_write_room +EXPORT_SYMBOL vmlinux 0xdc309283 max8998_write_reg +EXPORT_SYMBOL vmlinux 0xdc30f707 pnp_get_resource +EXPORT_SYMBOL vmlinux 0xdc3c41a8 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xdc3c9fa4 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc57f532 acpi_install_gpe_handler +EXPORT_SYMBOL vmlinux 0xdc5f5da8 lockref_put_return +EXPORT_SYMBOL vmlinux 0xdc75ef59 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xdc8699f8 dquot_enable +EXPORT_SYMBOL vmlinux 0xdc892f3b blk_requeue_request +EXPORT_SYMBOL vmlinux 0xdc9b6823 check_disk_change +EXPORT_SYMBOL vmlinux 0xdca20af1 dget_parent +EXPORT_SYMBOL vmlinux 0xdca5c4f8 __skb_get_hash +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcd4b472 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0xdd2260f4 fddi_change_mtu +EXPORT_SYMBOL vmlinux 0xdd2cb0b2 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd9697f5 sock_no_poll +EXPORT_SYMBOL vmlinux 0xddb583f6 gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0xdddb28a2 seq_puts +EXPORT_SYMBOL vmlinux 0xddef0ae2 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0xde0f1a20 dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0xde16dc16 tboot +EXPORT_SYMBOL vmlinux 0xde17c7b0 kaiser_enabled +EXPORT_SYMBOL vmlinux 0xde2543f2 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0xde29abac agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0xde3c289d bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xde45bd2f zpool_register_driver +EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0xde6232ea skb_make_writable +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdec2864a d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0xdedb6611 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0xdedbf17a twl6040_set_bits +EXPORT_SYMBOL vmlinux 0xdef92c8e phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0xdf0da3cc acpi_get_devices +EXPORT_SYMBOL vmlinux 0xdf12a927 acpi_check_dsm +EXPORT_SYMBOL vmlinux 0xdf1427e5 idr_remove +EXPORT_SYMBOL vmlinux 0xdf29b0de elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf358b6f pcie_set_readrq +EXPORT_SYMBOL vmlinux 0xdf35f46b neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xdf47824c mutex_lock_killable +EXPORT_SYMBOL vmlinux 0xdf531c1c vme_register_error_handler +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf5b1698 seq_vprintf +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf9b2477 dump_skip +EXPORT_SYMBOL vmlinux 0xdfa252c5 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xdfb62ac1 tcp_ioctl +EXPORT_SYMBOL vmlinux 0xdfbc6290 kernel_setsockopt +EXPORT_SYMBOL vmlinux 0xdfc46bbd blk_make_request +EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init +EXPORT_SYMBOL vmlinux 0xdfd3a075 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0xdfe6a6e5 give_up_console +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffdaca4 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0xe00d3922 inc_nlink +EXPORT_SYMBOL vmlinux 0xe01b1c37 pipe_lock +EXPORT_SYMBOL vmlinux 0xe03d175a twl6040_reg_write +EXPORT_SYMBOL vmlinux 0xe04e00e9 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe0573427 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe08226db d_lookup +EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe090200c i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xe0ac8bd2 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0xe0b0cfb7 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0c54972 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xe0cbc8f7 dev_printk +EXPORT_SYMBOL vmlinux 0xe0d07318 ip6_frag_match +EXPORT_SYMBOL vmlinux 0xe0d8f9ae devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0xe0e8983e jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xe0ea67da __dev_get_by_index +EXPORT_SYMBOL vmlinux 0xe10b6aee con_is_bound +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe12377ae pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0xe124c087 sock_create_lite +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe1505731 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe17bfadd xfrm_state_update +EXPORT_SYMBOL vmlinux 0xe18301bc complete_request_key +EXPORT_SYMBOL vmlinux 0xe183f867 secpath_dup +EXPORT_SYMBOL vmlinux 0xe19856f8 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0xe1bb17f1 cdrom_release +EXPORT_SYMBOL vmlinux 0xe1bde4cc con_copy_unimap +EXPORT_SYMBOL vmlinux 0xe1cd5cfb blk_complete_request +EXPORT_SYMBOL vmlinux 0xe1ece345 dump_emit +EXPORT_SYMBOL vmlinux 0xe1f67094 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe20372ae radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0xe226f641 bdevname +EXPORT_SYMBOL vmlinux 0xe2330722 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe2427f94 mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0xe247cf4f input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe259ae9e _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xe25b045e scsi_unregister +EXPORT_SYMBOL vmlinux 0xe27283db pnp_device_detach +EXPORT_SYMBOL vmlinux 0xe27d4549 kernel_accept +EXPORT_SYMBOL vmlinux 0xe298a062 param_ops_uint +EXPORT_SYMBOL vmlinux 0xe29b04e9 acpi_set_firmware_waking_vector64 +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2a27095 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0xe2b46958 amd_iommu_domain_clear_gcr3 +EXPORT_SYMBOL vmlinux 0xe2b4f781 down_read +EXPORT_SYMBOL vmlinux 0xe2b53897 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xe2c15524 pci_bus_type +EXPORT_SYMBOL vmlinux 0xe2c75b48 sock_setsockopt +EXPORT_SYMBOL vmlinux 0xe2cff3c8 eth_header +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2df6648 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xe2e6e0fb bitmap_endwrite +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe2f81ee5 scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0xe308cdbe __bread_gfp +EXPORT_SYMBOL vmlinux 0xe317764d jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0xe319eb24 acpi_pci_osc_control_set +EXPORT_SYMBOL vmlinux 0xe3278ed2 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0xe3399a75 native_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0xe35730a9 serio_rescan +EXPORT_SYMBOL vmlinux 0xe359140c blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xe37e8c3a inode_add_bytes +EXPORT_SYMBOL vmlinux 0xe393da4a cdrom_check_events +EXPORT_SYMBOL vmlinux 0xe3965da1 key_type_keyring +EXPORT_SYMBOL vmlinux 0xe3992461 free_xenballooned_pages +EXPORT_SYMBOL vmlinux 0xe3a53f4c sort +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3d03364 netdev_emerg +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe408d98b blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xe4124a5f get_io_context +EXPORT_SYMBOL vmlinux 0xe46688a4 cad_pid +EXPORT_SYMBOL vmlinux 0xe46fd920 init_special_inode +EXPORT_SYMBOL vmlinux 0xe47c7cfb nf_log_unregister +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe4937091 agp_free_memory +EXPORT_SYMBOL vmlinux 0xe49b2b0c skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xe4a4b009 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0xe4ca259a dmam_free_coherent +EXPORT_SYMBOL vmlinux 0xe4ccdc03 __lock_buffer +EXPORT_SYMBOL vmlinux 0xe4d140ce dma_sync_wait +EXPORT_SYMBOL vmlinux 0xe4d99100 input_unregister_device +EXPORT_SYMBOL vmlinux 0xe4e0c91a poll_freewait +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4eaab2e t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xe4f83ca0 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0xe50eac1a vga_client_register +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe524e233 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xe5284e79 neigh_table_init +EXPORT_SYMBOL vmlinux 0xe530d757 acpi_clear_gpe +EXPORT_SYMBOL vmlinux 0xe53e848d nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0xe5404251 dump_truncate +EXPORT_SYMBOL vmlinux 0xe5438c14 posix_lock_file +EXPORT_SYMBOL vmlinux 0xe5616ef6 mmc_release_host +EXPORT_SYMBOL vmlinux 0xe57199ca netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe57d97ff d_instantiate_unique +EXPORT_SYMBOL vmlinux 0xe5815f8a _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe5958c6b neigh_connected_output +EXPORT_SYMBOL vmlinux 0xe5a8f2f3 tcp_prequeue +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5d74faa phy_connect +EXPORT_SYMBOL vmlinux 0xe5d8703f __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0xe5eaf807 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe5f408ee xfrm_init_replay +EXPORT_SYMBOL vmlinux 0xe60f0154 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xe6162877 down_killable +EXPORT_SYMBOL vmlinux 0xe61c50fc jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0xe647a6e2 tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0xe64d98fe rdmsr_safe_regs +EXPORT_SYMBOL vmlinux 0xe65a73d7 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xe66fc1bd tty_port_put +EXPORT_SYMBOL vmlinux 0xe675c5b7 mpage_readpages +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe69a9df4 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe6a1c3d4 netdev_update_features +EXPORT_SYMBOL vmlinux 0xe6b8cb49 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xe6be97e2 free_task +EXPORT_SYMBOL vmlinux 0xe6dd21e6 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xe6f0d56e kmem_cache_size +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe6fc528b skb_tx_error +EXPORT_SYMBOL vmlinux 0xe708c67e led_blink_set +EXPORT_SYMBOL vmlinux 0xe716baed acpi_unregister_ioapic +EXPORT_SYMBOL vmlinux 0xe74ba8d3 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xe7516813 simple_follow_link +EXPORT_SYMBOL vmlinux 0xe7629fad sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0xe7690453 blk_put_request +EXPORT_SYMBOL vmlinux 0xe76b1f30 __frontswap_store +EXPORT_SYMBOL vmlinux 0xe78e2f9f phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7ad3ecf mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0xe7c0cc5a kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xe7c4ab39 simple_unlink +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7d912da simple_rmdir +EXPORT_SYMBOL vmlinux 0xe7eec68c lro_receive_skb +EXPORT_SYMBOL vmlinux 0xe80cda97 input_unregister_handle +EXPORT_SYMBOL vmlinux 0xe8122f40 nobh_write_end +EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe8731918 x86_hyper_xen +EXPORT_SYMBOL vmlinux 0xe877e13b seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8b85365 dev_remove_offload +EXPORT_SYMBOL vmlinux 0xe8bd0d36 from_kprojid +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8d3fce5 devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0xe8da8288 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xe8db8dd2 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xe8ef0ff0 current_kernel_time64 +EXPORT_SYMBOL vmlinux 0xe9015131 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0xe90aa3a4 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe92135af input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0xe94071cb linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xe951adb9 dev_set_mtu +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0xe964194b i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xe96deaaa elv_rb_find +EXPORT_SYMBOL vmlinux 0xe9744cf1 pci_request_regions +EXPORT_SYMBOL vmlinux 0xe997667b wrmsr_on_cpu +EXPORT_SYMBOL vmlinux 0xe9a45455 pci_scan_slot +EXPORT_SYMBOL vmlinux 0xe9ac774c led_blink_set_oneshot +EXPORT_SYMBOL vmlinux 0xe9acfac4 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0xe9bd7844 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xe9e068bd netdev_printk +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9f78bab down_read_trylock +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea0e1f88 n_tty_compat_ioctl_helper +EXPORT_SYMBOL vmlinux 0xea10048f devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0xea18edeb do_splice_direct +EXPORT_SYMBOL vmlinux 0xea2238f6 kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0xea2cd705 scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0xea3718a7 bio_put +EXPORT_SYMBOL vmlinux 0xea37487a write_one_page +EXPORT_SYMBOL vmlinux 0xea3f725d _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0xea75db93 tcp_conn_request +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xea7b8a44 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xea7cf94e mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0xea8bd8da tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xea8c3f4d dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0xea90bdd3 acpi_attach_data +EXPORT_SYMBOL vmlinux 0xea946285 max8998_read_reg +EXPORT_SYMBOL vmlinux 0xea94c50e ps2_drain +EXPORT_SYMBOL vmlinux 0xea9f76c8 blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0xeaa32eb1 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xeac73847 irq_regs +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeafcc2cf do_splice_from +EXPORT_SYMBOL vmlinux 0xeb0acb4f file_ns_capable +EXPORT_SYMBOL vmlinux 0xeb1ca0e5 dquot_file_open +EXPORT_SYMBOL vmlinux 0xeb2191cf __secpath_destroy +EXPORT_SYMBOL vmlinux 0xeb22e0c1 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xeb30b52b default_file_splice_read +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb540d5f get_acl +EXPORT_SYMBOL vmlinux 0xeb5a3189 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xeb6d75b4 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xeb6e2360 inet_recvmsg +EXPORT_SYMBOL vmlinux 0xeb7b46f5 f_setown +EXPORT_SYMBOL vmlinux 0xeb7f22ce generic_listxattr +EXPORT_SYMBOL vmlinux 0xeb9f564f mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xeba1836d udp_del_offload +EXPORT_SYMBOL vmlinux 0xebc0f1eb put_disk +EXPORT_SYMBOL vmlinux 0xebc94dc5 ata_port_printk +EXPORT_SYMBOL vmlinux 0xebe687d1 blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0xebe8a7ef pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xebecfa1c sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xebf540f5 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xebff5cf5 fence_signal_locked +EXPORT_SYMBOL vmlinux 0xec0e5069 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0xec1b975b param_ops_int +EXPORT_SYMBOL vmlinux 0xec1ce6e8 d_make_root +EXPORT_SYMBOL vmlinux 0xec1fdfa4 devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0xec262607 napi_gro_flush +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec957a5c find_vma +EXPORT_SYMBOL vmlinux 0xecab65f0 __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0xecac8407 __memcpy +EXPORT_SYMBOL vmlinux 0xeccd3e0c acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xecd92d62 posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xece9ce1b compat_mc_getsockopt +EXPORT_SYMBOL vmlinux 0xecee92f0 ata_link_printk +EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node +EXPORT_SYMBOL vmlinux 0xed2f5275 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xed340b5a gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0xed3e5dd2 mmc_can_reset +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed5a604a drop_super +EXPORT_SYMBOL vmlinux 0xed730bfc bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xed74757e generic_perform_write +EXPORT_SYMBOL vmlinux 0xed98475d kernel_getsockname +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xedb18ffb __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xedb53c45 sk_receive_skb +EXPORT_SYMBOL vmlinux 0xedb9903f param_set_long +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc78e94 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xedca0326 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0xedd11647 udp_set_csum +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xedf6ae56 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xedf7ab08 pci_disable_msi +EXPORT_SYMBOL vmlinux 0xedfcc439 pci_iomap_range +EXPORT_SYMBOL vmlinux 0xedffcc28 mmc_align_data_size +EXPORT_SYMBOL vmlinux 0xee0dcd01 param_get_ushort +EXPORT_SYMBOL vmlinux 0xee141054 tcf_hash_search +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee316def blk_run_queue +EXPORT_SYMBOL vmlinux 0xee34d6b5 acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0xee3e5e4e __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xee61b390 fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xeea3cd7a nla_reserve +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeab11f2 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xeec2c7cf ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0xeedd92dc console_start +EXPORT_SYMBOL vmlinux 0xeee4c2bd pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xeee9e30c irq_to_desc +EXPORT_SYMBOL vmlinux 0xeeed532a crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xeef427cb lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0xeef9075d inet_accept +EXPORT_SYMBOL vmlinux 0xef0be79f ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0xef1263ec dquot_disable +EXPORT_SYMBOL vmlinux 0xef34f9da pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xef43a014 scsi_remove_host +EXPORT_SYMBOL vmlinux 0xef4a9c6f eth_mac_addr +EXPORT_SYMBOL vmlinux 0xef530c46 km_report +EXPORT_SYMBOL vmlinux 0xef5680a1 udp6_set_csum +EXPORT_SYMBOL vmlinux 0xef766ec2 scsi_device_get +EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override +EXPORT_SYMBOL vmlinux 0xefa05c48 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xefda8d99 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefe099c3 acpi_get_event_status +EXPORT_SYMBOL vmlinux 0xefe0d792 inet_add_protocol +EXPORT_SYMBOL vmlinux 0xeff809a3 lwtunnel_output +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf03ff904 fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0xf0425a0d simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf062576b ucs2_utf8size +EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be +EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0xf069ff15 fb_blank +EXPORT_SYMBOL vmlinux 0xf0815cba i2c_master_recv +EXPORT_SYMBOL vmlinux 0xf08242c2 finish_wait +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf0a4e773 blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0xf0a5ff1f bio_map_kern +EXPORT_SYMBOL vmlinux 0xf0a8237a radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xf0adef22 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xf0ea101f input_grab_device +EXPORT_SYMBOL vmlinux 0xf0eaffce _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf0f6b822 inet_del_offload +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 +EXPORT_SYMBOL vmlinux 0xf11543ff find_first_zero_bit +EXPORT_SYMBOL vmlinux 0xf116d4b5 copy_in_user +EXPORT_SYMBOL vmlinux 0xf129a01a generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xf1333ab0 pci_platform_rom +EXPORT_SYMBOL vmlinux 0xf1398e2e lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf14fa2a3 __find_get_block +EXPORT_SYMBOL vmlinux 0xf17b39f3 bdi_register +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1a0415d dput +EXPORT_SYMBOL vmlinux 0xf1a3f3d8 scsi_dma_map +EXPORT_SYMBOL vmlinux 0xf1b312b4 vga_get +EXPORT_SYMBOL vmlinux 0xf1b4380c jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xf1c2044d set_user_nice +EXPORT_SYMBOL vmlinux 0xf1c9d085 fs_bio_set +EXPORT_SYMBOL vmlinux 0xf1ca9d84 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xf1cfa6f3 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1fdb436 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0xf2048c33 blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf212dd05 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0xf217726d __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xf23533aa block_write_begin +EXPORT_SYMBOL vmlinux 0xf23a4675 tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf2529314 km_state_expired +EXPORT_SYMBOL vmlinux 0xf28ed6e2 machine_to_phys_nr +EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered +EXPORT_SYMBOL vmlinux 0xf2a2b163 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0xf2ad3c52 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xf2b41efc bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xf2b7f352 __sb_start_write +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2dda68f dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0xf2e01c98 dev_uc_sync +EXPORT_SYMBOL vmlinux 0xf2e57aab kdb_current_task +EXPORT_SYMBOL vmlinux 0xf2feb959 tcf_exts_change +EXPORT_SYMBOL vmlinux 0xf312cb9d ucs2_strsize +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf3152403 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf35321cf devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf358794d nf_reinject +EXPORT_SYMBOL vmlinux 0xf3817795 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf395d164 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xf3986b06 acpi_os_map_generic_address +EXPORT_SYMBOL vmlinux 0xf3a2be53 dev_get_by_name +EXPORT_SYMBOL vmlinux 0xf3ab56a0 generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3f37c52 vfs_readf +EXPORT_SYMBOL vmlinux 0xf415231e inet_register_protosw +EXPORT_SYMBOL vmlinux 0xf43f6a24 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf4439009 set_pages_nx +EXPORT_SYMBOL vmlinux 0xf46426b9 sock_edemux +EXPORT_SYMBOL vmlinux 0xf4692cdb dev_disable_lro +EXPORT_SYMBOL vmlinux 0xf473cf11 dm_put_table_device +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf476082c input_free_device +EXPORT_SYMBOL vmlinux 0xf47a269d sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xf4a05c79 __quota_error +EXPORT_SYMBOL vmlinux 0xf4a5c213 avail_to_resrv_perfctr_nmi_bit +EXPORT_SYMBOL vmlinux 0xf4ab0994 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0xf4afb28f dquot_quota_off +EXPORT_SYMBOL vmlinux 0xf4b26af5 commit_creds +EXPORT_SYMBOL vmlinux 0xf4b4ce61 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4c8b9e7 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0xf4d3778c input_open_device +EXPORT_SYMBOL vmlinux 0xf4d568a2 dcache_dir_close +EXPORT_SYMBOL vmlinux 0xf4e1442d blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf513fa02 alloc_file +EXPORT_SYMBOL vmlinux 0xf51ae235 touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xf51bf88b nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xf51c14fe pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0xf536d22e acpi_set_gpe_wake_mask +EXPORT_SYMBOL vmlinux 0xf53c4309 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf548abb7 nvm_submit_io +EXPORT_SYMBOL vmlinux 0xf57b4271 mmc_register_driver +EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set +EXPORT_SYMBOL vmlinux 0xf5b10e67 acpi_install_global_event_handler +EXPORT_SYMBOL vmlinux 0xf5c1dc25 set_nlink +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5c3b754 kern_unmount +EXPORT_SYMBOL vmlinux 0xf5da342b alloc_pages_current +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf5f3b07a i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0xf60e31c5 security_mmap_file +EXPORT_SYMBOL vmlinux 0xf6267ba9 kmem_cache_free +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf63fbbab touch_buffer +EXPORT_SYMBOL vmlinux 0xf65f1236 tcp_init_sock +EXPORT_SYMBOL vmlinux 0xf669f4e4 kill_bdev +EXPORT_SYMBOL vmlinux 0xf66e2c7d kfree_skb_partial +EXPORT_SYMBOL vmlinux 0xf672d00e sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf67f4dc6 softnet_data +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xf68c1b82 find_get_pages_tag +EXPORT_SYMBOL vmlinux 0xf68dbc14 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xf693a145 irq_stat +EXPORT_SYMBOL vmlinux 0xf699984e kobject_put +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf70d18bf security_path_truncate +EXPORT_SYMBOL vmlinux 0xf72bf475 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xf72e1811 param_set_ulong +EXPORT_SYMBOL vmlinux 0xf73d0785 kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf764868a udplite_table +EXPORT_SYMBOL vmlinux 0xf77d324b iget_failed +EXPORT_SYMBOL vmlinux 0xf783e815 rtnl_notify +EXPORT_SYMBOL vmlinux 0xf788d318 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xf79bac2c compat_sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xf79e97cd acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0xf7b2cae3 tty_port_init +EXPORT_SYMBOL vmlinux 0xf7b778be dev_uc_del +EXPORT_SYMBOL vmlinux 0xf7c2269b nf_log_register +EXPORT_SYMBOL vmlinux 0xf7d6b7b9 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xf7e0823a rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0xf7e153b7 phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0xf7fb76f1 irq_set_chip +EXPORT_SYMBOL vmlinux 0xf805b24a freeze_bdev +EXPORT_SYMBOL vmlinux 0xf80b4b93 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf87e3be0 remove_arg_zero +EXPORT_SYMBOL vmlinux 0xf88e0ee2 acpi_get_table_header +EXPORT_SYMBOL vmlinux 0xf8bbe0af netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xf8c3b1b8 mmc_can_trim +EXPORT_SYMBOL vmlinux 0xf8d04f09 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0xf8e02a5e tcp_connect +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf8f777c7 param_set_bint +EXPORT_SYMBOL vmlinux 0xf90b25de __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0xf92f84a5 agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0xf9304d12 inet_addr_type +EXPORT_SYMBOL vmlinux 0xf9326899 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xf93d6c96 tty_mutex +EXPORT_SYMBOL vmlinux 0xf9881da8 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xf98af266 pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0xf9a3dfbe d_obtain_alias +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9a4a141 user_revoke +EXPORT_SYMBOL vmlinux 0xf9b1075f skb_split +EXPORT_SYMBOL vmlinux 0xf9bd4ca0 kfree_skb +EXPORT_SYMBOL vmlinux 0xf9bf144f inet_stream_connect +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9c714a6 devm_release_resource +EXPORT_SYMBOL vmlinux 0xfa07e00b passthru_features_check +EXPORT_SYMBOL vmlinux 0xfa1cace5 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xfa268cd2 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0xfa2e1b45 d_alloc +EXPORT_SYMBOL vmlinux 0xfa345ab5 vm_insert_pfn +EXPORT_SYMBOL vmlinux 0xfa4365f0 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xfa48c6e9 kill_block_super +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa6328bf kernel_getpeername +EXPORT_SYMBOL vmlinux 0xfaadbba7 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL vmlinux 0xfae74c4d __devm_release_region +EXPORT_SYMBOL vmlinux 0xfb0443fb acpi_get_parent +EXPORT_SYMBOL vmlinux 0xfb099ada devm_ioremap +EXPORT_SYMBOL vmlinux 0xfb138a8e vfs_statfs +EXPORT_SYMBOL vmlinux 0xfb28de91 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0xfb3f60ef __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xfb473fb0 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0xfb578fc5 memset +EXPORT_SYMBOL vmlinux 0xfb691d2f gen_pool_free +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb80c7a0 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfb959c51 find_lock_entry +EXPORT_SYMBOL vmlinux 0xfba58595 ns_capable +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbb3ff03 __page_symlink +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbc9f382 scmd_printk +EXPORT_SYMBOL vmlinux 0xfbd676c6 seq_printf +EXPORT_SYMBOL vmlinux 0xfbdb0721 nd_iostat_end +EXPORT_SYMBOL vmlinux 0xfbdeb1fa blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc08b925 pci_pme_active +EXPORT_SYMBOL vmlinux 0xfc10e845 blk_get_queue +EXPORT_SYMBOL vmlinux 0xfc13088f netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3ee5bd prepare_creds +EXPORT_SYMBOL vmlinux 0xfc537be4 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xfc734327 queued_read_lock_slowpath +EXPORT_SYMBOL vmlinux 0xfc7c05a9 serio_interrupt +EXPORT_SYMBOL vmlinux 0xfc8210b8 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0xfc872fd1 get_ibs_caps +EXPORT_SYMBOL vmlinux 0xfc918953 inetdev_by_index +EXPORT_SYMBOL vmlinux 0xfca0a626 loop_backing_file +EXPORT_SYMBOL vmlinux 0xfcac0d40 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0xfcb926cd kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xfcbeae14 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcc40602 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xfccc59bd vmalloc_to_page +EXPORT_SYMBOL vmlinux 0xfcda24ac alloc_anon_inode +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfcfa722e memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xfd009954 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xfd0a3b95 param_get_int +EXPORT_SYMBOL vmlinux 0xfd48e2ed free_user_ns +EXPORT_SYMBOL vmlinux 0xfd576bac kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xfd635115 get_gendisk +EXPORT_SYMBOL vmlinux 0xfd85d1bf sock_efree +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfd9f53bf inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xfda281e9 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0xfdd1943f phy_init_hw +EXPORT_SYMBOL vmlinux 0xfde044aa __check_sticky +EXPORT_SYMBOL vmlinux 0xfdf2d480 dst_release +EXPORT_SYMBOL vmlinux 0xfdfb792f amd_iommu_pc_supported +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfdfd6c90 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xfe026c36 generic_read_dir +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe033169 dev_emerg +EXPORT_SYMBOL vmlinux 0xfe047ce6 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0xfe13c522 acpi_install_gpe_raw_handler +EXPORT_SYMBOL vmlinux 0xfe17047b kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0xfe1f84f3 sg_miter_skip +EXPORT_SYMBOL vmlinux 0xfe26fc7c nr_node_ids +EXPORT_SYMBOL vmlinux 0xfe353f4e pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xfe5d30e9 _raw_write_trylock +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe6d755b qdisc_reset +EXPORT_SYMBOL vmlinux 0xfe6f11fa bio_phys_segments +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe855087 security_path_chown +EXPORT_SYMBOL vmlinux 0xfe8b388e compat_nf_setsockopt +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe9230da mfd_add_devices +EXPORT_SYMBOL vmlinux 0xfe976ac6 flush_old_exec +EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 +EXPORT_SYMBOL vmlinux 0xfeb9e6a6 nd_device_unregister +EXPORT_SYMBOL vmlinux 0xfebd4542 bio_chain +EXPORT_SYMBOL vmlinux 0xfec65de2 nd_pfn_validate +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfef2c78f idr_get_next +EXPORT_SYMBOL vmlinux 0xff0245c5 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xff028791 seq_putc +EXPORT_SYMBOL vmlinux 0xff14f09d kaiser_flush_tlb_on_return_to_user +EXPORT_SYMBOL vmlinux 0xff16ff4d lro_flush_all +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff6b0bdf __cleancache_put_page +EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff9aa856 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xff9d85a7 abx500_register_ops +EXPORT_SYMBOL vmlinux 0xffa355d1 __register_nmi_handler +EXPORT_SYMBOL vmlinux 0xffa3c891 dquot_destroy +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffd70041 acpi_pm_device_run_wake +EXPORT_SYMBOL vmlinux 0xffdbb2de __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0xfff7cd57 bio_alloc_pages +EXPORT_SYMBOL vmlinux 0xfffbc853 posix_unblock_lock +EXPORT_SYMBOL_GPL arch/x86/crypto/aes-x86_64 0x7060bf0a crypto_aes_encrypt_x86 +EXPORT_SYMBOL_GPL arch/x86/crypto/aes-x86_64 0xe409b491 crypto_aes_decrypt_x86 +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x13a65ecf camellia_ecb_enc_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x17bf48dc camellia_xts_dec_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x1a08ded1 camellia_xts_enc +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x47129015 camellia_xts_enc_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x7d54edc2 camellia_cbc_dec_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x7e87ef55 camellia_ecb_dec_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x8f185793 camellia_xts_dec +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x9e8086dc camellia_ctr_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x16061d06 __camellia_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x1636abdf __camellia_enc_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x1da0e256 camellia_crypt_ctr +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x31bbe42b camellia_crypt_ctr_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x3e14798e xts_camellia_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x50dc55b6 __camellia_enc_blk_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x930f687f camellia_decrypt_cbc_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x9ceb996b lrw_camellia_exit_tfm +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xa41a5ad3 camellia_dec_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xadd83ce5 lrw_camellia_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xf4521fda camellia_dec_blk_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x1dd85921 glue_cbc_decrypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x61ce5b1f glue_ecb_crypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x8f02ac4d glue_xts_crypt_128bit_one +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xa28ed48e glue_cbc_encrypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xe112890c glue_xts_crypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xf3592bcf glue_ctr_crypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x016a957f serpent_xts_enc_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x0c5a8af6 serpent_xts_dec_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x0ff3c26d serpent_xts_dec +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x606a8162 serpent_cbc_dec_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x79ff0b7a serpent_ecb_dec_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x7dd29718 lrw_serpent_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x8742ee73 lrw_serpent_exit_tfm +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x9ae34b2f serpent_xts_enc +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x9e018632 __serpent_crypt_ctr +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x9f99663c serpent_ctr_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xa84ea33d serpent_ecb_enc_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xb8686195 xts_serpent_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64 0x19dc7881 twofish_dec_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64 0x5e752773 twofish_enc_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x1fd77fb1 twofish_dec_blk_3way +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x277c7851 lrw_twofish_exit_tfm +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x56ed3161 xts_twofish_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x61694b97 twofish_dec_blk_cbc_3way +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x8d75ab44 twofish_enc_blk_ctr +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x8e856922 twofish_enc_blk_ctr_3way +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x9357c7ec lrw_twofish_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xf2e80e9c __twofish_enc_blk_3way +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00aaf935 kvm_disable_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x01a293da kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x01ccd216 __tracepoint_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x01ce9974 reprogram_gp_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x04bf49c7 kvm_get_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x070f9719 __tracepoint_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x078418c4 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x080be3ad __tracepoint_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0823d76b kvm_get_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0abc4564 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0c90541f kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d4adf8b __tracepoint_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d820409 kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d938463 kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x11512be1 kvm_get_dirty_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x11ee03ff kvm_arch_register_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x12049ad7 x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x125bffd5 kvm_mtrr_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x13e52069 kvm_mtrr_valid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1691258a kvm_vcpu_uninit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17c114b8 kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1802c663 vcpu_put +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x18e0bf1c gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1a04de0a kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1ccea948 kvm_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d4bc855 kvm_vcpu_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1fae429e kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20d688b7 kvm_get_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x21564cf4 __tracepoint_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x221f88ab kvm_vcpu_is_reset_bsp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x246be811 gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2600e9b2 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2b74cdda kvm_mmu_unprotect_page_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2b79a35a kvm_cpu_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c78b8d4 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2eacf80d kvm_lmsw +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x317f9e6b kvm_enable_efer_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x31e01c31 kvm_set_cr3 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x33ace9fd load_pdptrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x35f2bf52 kvm_write_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3618c095 kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x36654ac3 kvm_mmu_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3aac76d4 kvm_set_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3c1c054a kvm_vcpu_reload_apic_access_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x40132823 kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x40140428 kvm_set_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x40e52b11 kvm_mmu_sync_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x417821e1 kvm_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x42a8a932 kvm_inject_realmode_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x42b8e2ed kvm_get_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x430ab602 kvm_rdpmc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x43b641d4 kvm_before_handle_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x44046cb1 __tracepoint_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x44a5dc3a kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x49f7d71f reset_shadow_zero_bits_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4bef156f kvm_cpu_get_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4da5149f kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4ef14f5e kvm_task_switch +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4f1e278c kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x50b5322e __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55a0707a kvm_clear_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x56b7af09 kvm_scale_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5843cfef handle_mmio_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d9fe995 kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x602b6f66 kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x607fc70a __x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x64020e10 kvm_set_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6427221c kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x64dee912 reprogram_fixed_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6579dd58 kvm_arch_unregister_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x669da1fd kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66a15fe7 kvm_require_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6815ae8d kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68b621f1 kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ae3562e mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6b617629 kvm_arch_start_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c839309 kvm_vcpu_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6cce3c1b kvm_apic_set_eoi_accelerated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6f425fc4 kvm_requeue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6f75e3ea __tracepoint_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6fed95ea kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x70413731 kvm_mmu_slot_largepage_remove_write_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x709cd8cb kvm_spurious_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x70a87994 kvm_get_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x73ae496a __tracepoint_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79ae7687 kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7aa64803 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7b490ba0 kvm_init_shadow_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ff1ca84 __tracepoint_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8120406c kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x822965ef kvm_is_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x822c587e kvm_emulate_wbinvd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x831327da kvm_max_guest_tsc_khz +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8372e115 kvm_x86_ops +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x861dc6d8 cpuid_query_maxphyaddr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8b39aa6c kvm_mmu_unprotect_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ce4f3ab kvm_enable_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8d62ad71 kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8da01274 kvm_get_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8db0aae5 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8e1cd06f kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8f29c7b0 kvm_mmu_slot_set_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x91206a34 kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93e44fef gfn_to_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x95309eea kvm_intr_is_single_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x95976d04 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96dbe382 kvm_mpx_supported +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x97751fd0 kvm_mmu_invlpg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x97eb4807 kvm_after_handle_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a216313 kvm_define_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9b15f180 kvm_emulate_hypercall +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9b5369e1 kvm_arch_has_assigned_device +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9d015cbe kvm_require_cpl +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e63518d kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa0ec3a0a gfn_to_hva_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa0fc8d67 kvm_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa16a1128 kvm_get_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa4d57013 __tracepoint_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa8bf3b89 kvm_get_dirty_log_protect +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa8e00f0a kvm_put_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa8fe404b kvm_inject_pending_timer_irqs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xacf7f97c gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xadc89433 kvm_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb0b89dda kvm_requeue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1cc6be5 __tracepoint_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb326aecf kvm_read_guest_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb3c1508b kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb3c633b7 kvm_get_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb5ed7dda kvm_arch_end_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb6843636 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba9ed435 kvm_mmu_set_mmio_spte_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbec53c32 kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc00be533 kvm_read_guest_page_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc05b3faf kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc1431891 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc1adc2cb __tracepoint_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc36aa202 kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc3cfe83f kvm_vcpu_block +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc440de36 kvm_inject_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc56d75ce __kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc599bc18 kvm_max_tsc_scaling_ratio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc5a2dd43 kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc6537b7d kvm_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc86f40ce kvm_mmu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcf0b30d5 __tracepoint_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcfaeebaf kvm_mmu_unload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0459e67 kvm_has_tsc_control +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd04d45c3 kvm_emulate_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0b2727a kvm_mmu_set_mask_ptes +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd2076504 kvm_fast_pio_out +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd240eddc kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd2904fac kvm_set_xcr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd6f171c2 kvm_valid_efer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd7669547 kvm_apic_write_nodecode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd93bbd46 gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda28baea reprogram_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc2516fe kvm_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdda98c01 kvm_mmu_slot_leaf_clear_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde29a5ac kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde567656 kvm_read_l1_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdf5d98b8 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe1741637 gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe69690cd kvm_arch_has_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe826d004 x86_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe99ab635 gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea5ce604 kvm_set_msi_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xec25209b gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeecbc96e kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xefceb87e kvm_mmu_clear_dirty_pt_masked +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf0c55a75 kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2312a76 __tracepoint_kvm_ple_window +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2f286c4 kvm_tsc_scaling_ratio_frac_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf41e94f5 __tracepoint_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf5252e67 kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf5492e95 kvm_inject_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf64752cb kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf6726d08 kvm_get_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf6b05024 vcpu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf85f093e kvm_init_shadow_ept_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf8f4642c __tracepoint_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfbd95c91 __tracepoint_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfed1d94f kvm_set_apic_base +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x02b0cbfb ablk_set_key +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x2796ca74 ablk_exit +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x540be3ef ablk_decrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x85b05ba1 ablk_init_common +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x8d0f0e28 ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x94e8eba2 ablk_init +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xf3d8c0e9 __ablk_encrypt +EXPORT_SYMBOL_GPL crypto/af_alg 0x0e204d41 af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x11badcb8 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0x33398615 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x3bb614e1 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x54ccd55f af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x7940d99b af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xa523d3e7 af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0xaf840c64 af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0xece51d9f af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xfaf10a64 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xfe74e081 af_alg_release +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xda92b072 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x64039ded async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x7808a3b4 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x630e9e83 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xb47faafc async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x381a0467 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xad58fd60 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xc2ff8c1e async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xeb6864cb __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x312d0148 async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x5ba6edaf async_xor_val +EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0xa171fac7 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x6e0f985e cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xa7c54ced cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 +EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 +EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 +EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x19621dd9 crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x65af3ac3 crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/cryptd 0x5b4bb7ba cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x772d8135 cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x975a49e4 cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xadbf7406 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xc91aadaa cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xdc22c416 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xdf7772de cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xe0079835 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xe6b5b88c cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xf0e77a95 cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey +EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey +EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table +EXPORT_SYMBOL_GPL crypto/lrw 0xc44d5075 lrw_crypt +EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table +EXPORT_SYMBOL_GPL crypto/mcryptd 0x40013cb2 shash_ahash_mcryptd_digest +EXPORT_SYMBOL_GPL crypto/mcryptd 0x5bbd576c mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x5e46ec5e shash_ahash_mcryptd_finup +EXPORT_SYMBOL_GPL crypto/mcryptd 0x653ba238 shash_ahash_mcryptd_update +EXPORT_SYMBOL_GPL crypto/mcryptd 0x6ac3b312 mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x8347667c mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0x8bcaaec5 shash_ahash_mcryptd_final +EXPORT_SYMBOL_GPL crypto/mcryptd 0xac3d5595 mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/mcryptd 0xe47fc2df mcryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x73944ca8 crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xb31efc57 crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xcbea3473 crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xf18c3b31 crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xa69e93ac serpent_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xc11686b6 twofish_setkey +EXPORT_SYMBOL_GPL crypto/xts 0x46718c92 xts_crypt +EXPORT_SYMBOL_GPL drivers/acpi/nfit 0xb496c7a3 acpi_nfit_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit 0xd02b6e4d acpi_nfit_attribute_groups +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x1c8984c7 acpi_smbus_unregister_callback +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x87bd07bd acpi_smbus_register_callback +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0xb9a141b0 acpi_smbus_read +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0xe1372311 acpi_smbus_write +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x06eb56ea ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x14dd2b79 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x226c746c ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2e164358 ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3e769df2 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4493ad37 ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x84b88a0a ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8785043c ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa9fbfa1b ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xad96eb2d ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xadf74d41 ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xaf0d952d ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb0f5bb7b ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb2c8b4e7 ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb5d0dbb2 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc5738653 ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe41fd813 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe5917620 ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe5bd1a96 ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe9acc3c5 ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf58830f5 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xfa5544af ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xfe22c2d0 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x004f32e4 ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x50672a66 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5d953235 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x63de2eaa ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x65ac4e2a ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6e5c4695 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x8b24f98d ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x99eea469 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa2d1aa58 ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xaeabc2c6 ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xccc88275 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xcf7405aa ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd5a2477e ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x8b9283cb __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x02ff9464 cfag12864b_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x0ecb2e5d cfag12864b_disable +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x305dc3c6 cfag12864b_isenabled +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x3389f926 cfag12864b_enable +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x9522a342 cfag12864b_getrate +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0xc48e9d95 cfag12864b_buffer +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x08ab6ae4 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x7c05aad1 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xebf7749e __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xee5fc43b __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1bebf384 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3b9efd3b bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3ebb1788 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x50b71386 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x53ade01b bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x55dd7114 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x60901028 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x69cdad6e bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6c2a2c11 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6f460f14 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7d628a0f bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x86854d44 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x96895a4d bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaa3c183a bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb678d582 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb8a3f5f4 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc09e0b23 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc95e194c bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd52bad0d bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd765127b bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd8fdd71e bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe70fde65 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe83fe414 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xeebd7b88 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x15c811f6 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x28f83b1b btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x53e46a9d btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x6efe559a btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7054d54c btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x8320f5d5 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0068c774 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x24e0e7a9 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x37b2930b btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x389f6a0d btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x67eb4847 btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x778c6441 btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8b88b720 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8e7b82af btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa9f47cba btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe0103fdb btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf4e09e34 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfca5fef5 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x112f1a5e btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2506ba25 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x445a5d80 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7e465a51 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x865b4a85 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8f6fbe25 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9231780c btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9ad6d3a8 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa188dc51 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xaf292d47 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbdd41523 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x45a595e8 qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x5e162507 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x75ae9b13 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xcbdc19ce h4_recv_buf +EXPORT_SYMBOL_GPL drivers/cpufreq/speedstep-lib 0x1b1f2bda speedstep_get_freqs +EXPORT_SYMBOL_GPL drivers/cpufreq/speedstep-lib 0x2b67f096 speedstep_get_frequency +EXPORT_SYMBOL_GPL drivers/cpufreq/speedstep-lib 0xd7ab2c0c speedstep_detect_processor +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x04773b60 ccp_present +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xe1b73272 ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x082008f4 adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x11b410e1 adf_disable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1af1ae00 adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1dd74122 adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1e3fd243 adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x25ce9c47 adf_service_unregister +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2b687087 adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x404c0ba8 adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4c12ea06 adf_response_handler +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5461f6d5 adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x55d7a3cc adf_enable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5d784fa9 adf_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6d18be43 adf_service_register +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x75f0b0bc adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x80257519 adf_iov_putmsg +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8df26525 adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x942a8f85 adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x99a161f9 adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9c376607 adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9dcdc0fb adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9e12c4ae adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa7dcd479 adf_disable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xab89ffb0 adf_dev_stop +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xac6fdf4c adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xae996d7b adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb170746f adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc7573772 adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc7e65655 adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcc3b167a adf_clean_vf_map +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd08a790b adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd137ec96 adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd1bb420c adf_update_ring_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd6118923 adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd9abe560 adf_dev_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe0ce4081 adf_dev_start +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe85c3057 adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe909e49f adf_enable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xedafb42b adf_disable_vf2pf_interrupts +EXPORT_SYMBOL_GPL drivers/dca/dca 0x01a33ab9 dca_unregister_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0x31a2c8df dca_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0x35162369 free_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x79170d39 dca_add_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0x7b4a0492 dca_remove_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0xa84dc501 register_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0xac34ecec dca_register_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0xacf920f1 alloc_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0xbe2d69ee unregister_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0xe120d815 dca3_get_tag +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x235a7d08 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x550722b8 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xb3b9db29 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xbd9badff dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xdfcb8c20 dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x54689c9a hsu_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x71d23ee7 hsu_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x841dc3fa hsu_dma_irq +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x0efd4220 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x39bb98a2 vchan_find_desc +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x5969f55f vchan_init +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xc3df7dd0 vchan_tx_submit +EXPORT_SYMBOL_GPL drivers/edac/amd64_edac_mod 0xfc72d086 amd64_get_dram_hole_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x057807d7 edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1c8c09c7 find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x200b1a51 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2f6c0146 edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x39368897 edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3ae0bbcf edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x41b794e8 edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x478082be edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4aa8c162 edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x56d0b9c7 edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6745f9e9 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x687cb711 edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7599c3aa edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7f787611 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x812b91fa edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x85984c4c edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9161484d edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x922db0fd edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xad0f4fb9 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbe3348db edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd3e70df5 edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd698e2db edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xdf98f02f edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x14878009 amd_report_gart_errors +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x1d34e996 pp_msgs +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x81d75507 amd_register_ecc_decoder +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xb30b7e56 amd_decode_mce +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xd3cc2686 amd_unregister_ecc_decoder +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x07262998 fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2067fe47 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x299cad9a fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2e3b3a34 fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x48a5d1b0 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6a85c0de fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x17cc5ed3 bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x2e16ad3f bgpio_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x7ec7b75d __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xe25d224d __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1c32ad30 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xadcb97e6 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe9e52e67 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x05876c69 i915_gpu_busy +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x08a7896d i915_gpu_raise +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x402468e9 i915_gpu_lower +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x500858b9 i915_read_mch_val +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0xe7237b0b i915_gpu_turbo_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x836a969c ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xaa6ff558 ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xcb50beaf ttm_dma_page_alloc_debugfs +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd +EXPORT_SYMBOL_GPL drivers/hid/hid 0x03c35813 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x04075be3 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0ac4638d hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1044839d hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x29c5918a hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3e495ed4 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4914fc96 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4a2ec069 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4cc0328e hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4f4dd487 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x581ed124 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5a6bdc47 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x60905e43 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x60a38de6 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x74473ec7 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x88018fa7 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8890df31 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8f861ba8 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x950a399c hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbc9c1db7 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc95c47a4 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd76e7dd8 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd86fe546 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd9e55731 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdadda6e6 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdd0fb94f hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdf15a802 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdf5a2fb3 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe310c53d hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe320e442 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe3ca16da hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe4c523e9 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf1aa5253 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf76998ce hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfba2fb4d hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfc2c5b5a hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x60476113 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x329c5fe9 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x373d97ca roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x485e095c roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x58d9ab3a roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x8c208993 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xf9f85218 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2a34bf66 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x36fad31e sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x58bdc966 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x60bf40aa hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x86723df4 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9bef9206 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc92298b4 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xed1e0edf sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf87f1312 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x1827c3f2 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x425a24b6 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4e485989 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x58638d68 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x680ffc29 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x72f29900 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x86f11f42 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x97d93f94 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9cf5e468 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbccc1c37 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc423180d hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd5a8148b hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd5d1124a hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdf4375d1 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe0c6a03e hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xeb47e9c1 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xec6d772f hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfcf8fee9 hsi_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x06ab4a34 vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1a25cd8a hv_do_hypercall +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x25a0a3d2 vmbus_cpu_number_to_vp_number +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2764e941 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2de6e406 vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x311f26f8 vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x337a7e1d __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x358fafa5 vmbus_prep_negotiate_resp +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x41b4d5fc vmbus_sendpacket_pagebuffer_ctl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5cc1a761 vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x71a41c49 vmbus_are_subchannels_present +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x74bd5324 vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8419e122 vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x86ff5fa6 hyperv_cs +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x88f7ebfe vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9fe04980 vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa32d7a2c vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xabffc492 vmbus_get_outgoing_channel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb87e1f17 vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc68a30b5 vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd201beee vmbus_sendpacket_multipagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd2c559d7 vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xda40aea3 vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdb2f6047 vmbus_free_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xeadb5fcc vmbus_send_tl_connect_request +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x2eda5a44 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xe893492f adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xfc7c9086 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0b1cdadf pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x1d11ca7b pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x20ddbfde pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2f09b032 pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x43a844bf pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x501f24e1 pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x6f8ee98c pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x939b4b19 pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xac434338 pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb1d56fdc pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xca45bd7a pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xceff98d7 pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xd144e856 pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe6bc11e4 pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xfe5e515b pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2692aa0f intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x450820eb intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5dd17239 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x8a13d3d7 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xab4e31f9 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd76f9144 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf9a38f84 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x060f302a stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x0c197ce3 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5756d218 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x82b7e234 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb19c097e stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x4c8deff1 i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x5e363ee6 i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xa22b5c24 i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xd2134f81 i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xe7f4348e i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0xb6605a6f nforce2_smbus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x771d92e1 i2c_del_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x886255df i2c_add_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x5250287e i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x75825cdf i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x394c23ad bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x7ff00330 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x8c924715 bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x18f18145 ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x2b7bc8bb ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x2d9c4e3a ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x3390ed96 ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x71b98f97 ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x900d0af3 ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xbb90d59f ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xc64c07f5 ad_sd_reset +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd18a3f90 ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd4cbccfe ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x8ff0bd86 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xdee6236f iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xea5326d6 ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xebb48e72 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x3c4663e9 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xc62c8f68 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xefbccc52 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0334bf10 adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0c52123f adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x3e2972d6 adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x4d3f1004 adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x501e98ad adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x6512a8f7 adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x72118a03 adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x9dfab02c adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xae059a71 adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc474f10c adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xca6bce4b adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf6bb30bc adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0cb1288d iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0fc02137 devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x124f1bb3 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x22e27bfa devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2566fc9c iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x286f3dca devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x35c40313 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x49877c35 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5390fa5f iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5eaf363c iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x67ade851 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x750be603 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x75de49fb iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7eabe4ca iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7ed3fb72 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7f4a1868 devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x879b8785 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x88ba560e iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x905f06fa iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x93d08a95 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9a1da9de iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc2439784 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc4406bcd iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcb08485d iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe25a5810 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe738306d iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe765f105 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xeac8cfc0 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xec443136 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xec677a7a iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf5135a2d devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xc7c84dc2 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x6d486197 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x7f9f0a60 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xa4141aeb cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xb7947dd5 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x3b2bbf55 cyttsp_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x90e8f8e3 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xe743ce66 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x964b3da2 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xbeff3437 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x26e43182 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x608b552f tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x89a2631a tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xb3ea7a9f tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x030ed630 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x18ecfb97 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1f65f519 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x27225c4f wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x557ff799 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x643b3398 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x964872ad wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x979bedac wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb12195a3 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc692fc47 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xcfa4d6ae wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd21acbf4 wm9705_codec +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x04f6a5ae ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1480b3ad ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x332ab3f1 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4cbcddd4 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x53d3f353 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5407221b ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7e393ab7 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc00dbbb8 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc5389e3b ipack_put_device +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0b697396 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x12ed5d99 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x22e6a046 gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x291ed516 gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3e3a0245 gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4eee72b2 gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x5570dc33 gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x5a3422ca gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x66357706 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x6aa10e84 gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7a5acd03 gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x93bcff1d gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb5ab2c41 gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc9282ff7 gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xcd39c062 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe3cb9f0b gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe5acf770 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/leds/dell-led 0x86fd1ffb dell_app_wmi_led_set +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1aa88520 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x4e6a8222 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x588826c8 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x6b4e6e07 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xbeba5234 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xeccecb16 led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x0f8771ce lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x191b3f4a lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3705a6bb lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x402802f3 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x43919472 lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x51b232ac lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x6dfb154c lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd39b0bab lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xdd620099 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe2870328 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xfab0e3f7 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x0cc27b4d mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x23004ff2 mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x41a9214e chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4949aa16 mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x49df63aa mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4fb1a66f mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x50d155ba mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x5ff431ab mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x69e8f845 __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x81c2063a mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xab8f59f8 mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xbd9a5a0f mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xee3cc4d2 mcb_bus_get +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x021811cf __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0f0677b8 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x10e6a889 __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1154f7a1 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15aa8e40 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x174c2a29 __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2205bcf9 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3fc7cb7f __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x469f38de __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4ba51ecf __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5b2a89c7 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d950f2a __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5e21030c __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5ed04550 __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6eef9654 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x74ab7b0f __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x84efb763 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8fe32879 __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x91f02667 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x93f7fc02 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa1de5277 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa81bf581 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7d964de __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbbace2cd __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc6673631 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8a2f711 __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe3de2ba2 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe902838d __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec919105 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeea27f46 __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfad1ec73 __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x09fd3574 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0bc28390 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0d22d981 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x224fbffb dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5d77326b dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6d1358cc dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x93b41a1e dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xbe353c06 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd6c6f895 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aba7f5e dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9310ba06 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9c256008 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa1d2413a dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa448e19f dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa47dc687 dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xafbda3f3 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcbb1bae2 dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x29582fc8 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x2f7166c0 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x44879f3a dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x56603ab7 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x69bcd51c dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x6db6dc94 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x8c07395e dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x9a433b82 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xaf13252a dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x013f8e07 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4430764e dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x45ab972a dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x6ec989c3 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x72dd2529 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x80713cbb dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa289db7e dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa68e1f06 dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd1bc9451 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfad9d53a dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfc62ef4e dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x17c36f29 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3c7a085c dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42dbdfc3 dm_tm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49b35849 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x55b4bd4d dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x827a42f4 dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9f624559 dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xafeda29f dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd29923fb dm_tm_shadow_block +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf375d009 dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf5455120 dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x3116fe7e saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4099528d saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x717707b3 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa1b5e5a7 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa4553417 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xbb1a392b saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc7a4c7bc saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xcddd3373 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf9b8d00d saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfd5324b7 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x321945e3 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x3feb683f saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xb15bf789 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xcfa684e9 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xd9b526b0 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xdc305b09 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xff4bc6fc saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0868701c smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x248541d8 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x39c9bd73 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x54ada951 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x66b61c03 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6ec1206b smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7e672107 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb797a67c smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xba561c57 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc4d9e832 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdce48c0f smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdd1d6763 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdfdb18f6 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe620c8d8 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe7e4e59e sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfaec54e9 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfe72be24 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xba2dde3d as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xf9dfd782 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xec667786 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x098f63b2 media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0x3090cb01 media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0x39ad4e66 media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0x40b54bce __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0x40cd1029 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x4694c8b0 media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0x5d5de39c media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0x63259c79 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0x69de546c media_entity_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0x6aa9bbd9 media_entity_create_link +EXPORT_SYMBOL_GPL drivers/media/media 0x7283d986 media_entity_init +EXPORT_SYMBOL_GPL drivers/media/media 0x90268671 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0x91c7994b media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0x98344344 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x99d79a4f media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0xb54398c9 media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0xccdc9532 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0xfcc0aed4 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x22527eab cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x21454b35 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x357c8e05 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4021f812 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5405a2c1 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x67880910 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6ee93e96 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7d5f6d37 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x80cd2f4e mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x869b296d mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x91f345e4 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa355f954 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xad7ff5ad mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xaef867c6 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb45c8d90 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe31f4223 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe846ab92 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf291cfb5 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf52b4535 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf77451ae mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x05d7794a saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x20af6576 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x32c72240 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x55dbda5e saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x62f76b27 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x65204b18 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6bfeec29 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x75206628 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x941a328e saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9e8247b0 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbb4ff028 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcdc08a81 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd0d18260 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd92d9942 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe0b670aa saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe2ee2335 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe3f66bbf saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe913d94c saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xff15fac9 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x012354d8 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x3be76877 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x493cac48 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xa6c952e7 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xab1d49b2 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xc133ffeb ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xe71ce81f ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x1a4b9365 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x303b08f6 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x054267fb rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x29a91501 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x37c163e3 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x57b17815 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5bd7e58f rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x636c2180 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6a3b1292 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x76c71f94 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x819fac72 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8ec2e810 rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x990cf3af rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa2c3fb00 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa9e2786a rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb99c1e67 rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc21de712 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc28901b1 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd57b73db rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd81753d6 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf65b7967 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x32125fe4 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x6253a8c1 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xe064a585 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x878aff41 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xe93e31a3 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x2d778774 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x87bb69fd tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xae23e15e tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xe498e42a tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x19d18124 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x310db14c tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x8cebb4bf tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xd8831b12 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xf593df78 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x045e7a9e is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x267cd015 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3d58db83 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x52db7be4 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x57a3fe70 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x58048a88 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6478ccf5 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x66ce4300 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6d7a959a cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x73b0929b cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8d724308 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9334dfb5 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa85f37e1 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb9f5e08f cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcd04474f cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xedce28f4 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xedd015cd cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf04bf7ea cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf2fad670 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf94b0041 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x55c1bc02 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xa9f0ef32 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x139dc5fc em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x247d6d7c em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x39bec675 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3d8a6070 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5336c3d7 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x580c9225 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x64b44509 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x665708cf em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7972c5e0 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x84bb615b em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9f6d62e2 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa978540f em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb93b5288 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xca6ac348 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xeed3bbbb em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf21287b1 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfb492048 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfc327c4a em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x22c7f145 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x5bbcd9e6 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x8f48576a tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xf0dc6e51 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x04160110 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x0f8271bb v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x18326c5f v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x2dbc8be1 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xd01775be v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5237a15 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08982d59 v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x27e63a1a v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x7912938b v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0c3cdbe7 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x18611cb2 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x18ab443b v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3730a5e0 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x39a4ecbc v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3dd47671 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4724ec06 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x517d0a74 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x596566c5 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5ba7b03c v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5f9aa183 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6a272c00 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6ed25d9b v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x75eb2e0c v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x77e46f36 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7aa21bcf v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7da77f89 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8784b1d0 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8fd9cfee v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x96938db4 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9fce5aac v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb10d10ea v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd6ceb998 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xde0e552f v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe511ff53 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe60228fa v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xee7f2e78 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0d40f7a8 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x18aeac66 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x194481aa videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x26685fd6 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x423d969f videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x44258738 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4962a6ea videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4c923257 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x52b81ffb videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x54471b7e videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5e48a922 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x607cac3d __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x61a65353 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x682869b7 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x696d072e videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6b516e6a videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x738f1e2f videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x87238159 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa0654c89 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa7bd3868 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xaa69dbc0 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xac181523 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbe4487c0 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xeba8ac4f videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x8a62a6a3 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x91ffa343 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xcf45db64 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xfd422cd5 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x1a51d8bf videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x38702637 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x87fa2526 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x248c587f vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2dba821d vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x54b8385e vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x5571451b vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x5aaf824d vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x5ca2dffd vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x72b0add5 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x831060f7 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x8a24e8ac vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x99871c8e vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x99fc0ecd vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xcebd243f vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xdd456ff3 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xddbe7cb6 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe5cc3c5f vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf0988bb1 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf17092e9 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xfe9edda0 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x5568098a vb2_dma_contig_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xfe9d2968 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x5ef5eac0 vb2_dma_sg_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd30ec30f vb2_dma_sg_cleanup_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd4f726cf vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0x74de8710 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x079262f5 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0c66cd3b vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2abdbcb1 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2f9fedee vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x30c4856f vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3745a003 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x40bc4044 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x48752e52 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x59ed3f10 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5d977f7b vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6908818c vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7672c593 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7a052ea4 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7d69d36f vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7f20b928 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x890debe1 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8da450b2 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa91270ca vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xaabc798c vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xabdd4f03 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xad9d6ee2 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xaf31ad79 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb27c438e vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb6fd82f3 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb93ed7ec vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbe2fbc0e vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc166d5a0 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc9d1f69e _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xce23636c vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xcf67160e vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf2b2a64e vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf67ca0bc vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x72d2523a vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x027abe31 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x08e330f6 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0e7acfb6 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x114a1f5a v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11ea03c5 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x133adfc4 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x19986f4f v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1ef3a428 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ab9d732 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2fbe2b80 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e73fa8d __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5833a575 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x61362225 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6184e475 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x624f7e10 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6ea25f95 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74a017c5 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7bfda7d4 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7c8fba0e v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x80d85335 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x82ecd9db v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x882f49c6 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x88d66582 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8c70c76c v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8cdfbe43 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9058c58c v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9a86e92c v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa4567336 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa55c185e v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaca2544a __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb801d24f v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6429d8b __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd8bdd6bb v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe56527f2 v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe63f3901 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe7366c60 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xef4419bf v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x33583656 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd15859a3 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd30fbec5 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x20b0f6b8 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2166c271 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x3b482e58 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xc4d83e05 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xcf316779 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xda58d8fd da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xe826396c da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x63752762 intel_lpss_probe +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x75c527ee intel_lpss_remove +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x8fde8250 intel_lpss_prepare +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xbda6b4d9 intel_lpss_resume +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xfea1041c intel_lpss_suspend +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x05801b76 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0c4671a2 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x220e8d0b kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x5b613820 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x69fd8105 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xaf1bb1d0 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xafceee75 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe315ec08 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x2a1bacfd lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xa37b73ab lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xc9b3b20c lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x0fc2a62b lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x36db83a8 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x507c55dc lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc0c6d550 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xd6dcd9cb lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xe449ab26 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xe9af674a lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x5f4a55d0 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x93c8893f lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xe3c0c790 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x130264bb mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x1bd2724b mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x2c2ddd1b mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x4967cc03 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x5b68396b mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x877f9505 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0b437431 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x149c698f pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2acb9ea7 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x54f756d2 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6255cc8d pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6993d3be pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x73f83a35 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xab34bbd7 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb278d3a7 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc62f284f pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd5297461 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x8bd158e8 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xdc3138ff pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x59a334f9 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd5e3fc19 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xee9f94e4 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xf6a10940 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xf9c065af pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x01c86f0f rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0a8dc0bc rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0e56a3af rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x22712ca5 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2ce00e93 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3a58312d rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3e3bd08c rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4058e6e0 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x44a7940a rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5cb7cad4 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5e7ecf6c rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x75b0f06e rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7bc31d35 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x97658c7d rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9b4cad29 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa519ec46 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa8a5ecdf rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xbea21cde rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc05bc17e rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xdc677d93 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe0e00811 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf18c6834 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf428fb00 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xffa80735 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x1dc9a14e rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x1ef6b221 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x2c67d962 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x625a5c6d rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x64599656 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x7c1090a2 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x977438a1 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xa9b4c510 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb269e6b8 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb6c4b148 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe2bea90a rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe989da76 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xedc13654 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x03453fae si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x06683b07 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0b83f578 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x184a24be si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2606926f si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x26840452 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x26cbfa06 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x297cba73 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3b39cb8f si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3f456da5 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x67ad1f2a si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7934d31b si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7f1296d9 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8db9c2e2 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x92e6433a si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x97dbbb38 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9bc25549 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9c7885cf devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa949376b si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb022edb6 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb5404799 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc146508a si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc58ba5bc si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc7f8da1d si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcd98e5cd si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xce009eb5 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd0596839 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd4f88aee si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe280fb4e si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xec386d38 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xefd788be si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf46c7532 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xff00da92 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfffd65da si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x300ed43e sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x3f975aac sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x5d1b4c35 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x9d3ae635 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xd228e47a sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x2acbd42e am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x7e23b1ec am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xca22cde0 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xde7828a2 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x09f639ca tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x89ef9685 tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x9d0d686f tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xb9951775 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xe86a6cd1 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x363d50c2 bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x8d25014d bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xcae9c39b bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xd58aa980 bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x0c0b9fec cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x2d4b9859 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x5fa70e38 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xb528931f cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1399a1cc enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x35285cac enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x64037f31 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x77d9c0bb enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xc5fd824e enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xc93eeef1 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xf1fd42ba enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xfab2ed4c enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x0477ae66 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1fb04b7c lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4ff210db lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd5e4540b lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd8fe586f lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe62bb222 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe6c0108e lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf4909bc5 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x05db1d3a mei_restart +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0a9408fc mei_cldev_enabled +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0f6ab964 mei_hbm_pg_resume +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x186adcb3 mei_irq_read_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x23e05f30 mei_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x28683e05 mei_irq_write_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3000b7f3 mei_cldev_register_event_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x332e67e0 mei_deregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x395bedf2 mei_cldev_enable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3991b6d5 mei_cldev_disable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3b20d522 mei_cancel_work +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3bc5ab0f mei_write_is_idle +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3c92459e mei_cldev_get_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x67e939b0 mei_stop +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x68e7430d __mei_cldev_driver_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x754f2816 mei_cldev_set_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7905e092 mei_cldev_uuid +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7ac23963 mei_cldev_ver +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x91e20713 mei_hbm_pg +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa4e70fa5 mei_reset +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa7ab2395 mei_irq_compl_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xadcf4054 mei_device_init +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbad780ba mei_start +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe59bc6eb mei_cldev_recv +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe8dd0278 mei_fw_status2str +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf2062ce6 mei_cldev_driver_unregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfed3d175 mei_cldev_send +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x110353ad cosm_unregister_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x4ebd3fa2 cosm_unregister_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x612982b5 cosm_register_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x84a24ee4 cosm_find_cdev_by_id +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0xbd27c3d3 cosm_register_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0x3e059d33 mbus_unregister_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0x477adcc1 mbus_register_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0xa71f2bac mbus_register_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0xfe46efd1 mbus_unregister_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x27b8858d scif_register_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x87aac2b2 scif_register_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0xa61f04d3 scif_unregister_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0xab9337ed scif_unregister_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x08df0400 scif_accept +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x0c126e87 scif_vreadfrom +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x1d555617 scif_pin_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x29b9251c scif_poll +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x2a449095 scif_recv +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x2d1b72f7 scif_listen +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x31f517c5 scif_get_node_ids +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x34de4a0f scif_fence_mark +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x37aaafea scif_register +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x3dee0a27 scif_close +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x3fd88411 scif_open +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x506d999e scif_writeto +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x52add8ad scif_unpin_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x72571e79 scif_unregister +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x808e83a3 scif_readfrom +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x83036207 scif_fence_wait +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x92477ccc scif_bind +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xb59c747d scif_send +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xbc1dd1f8 scif_put_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xc5c49db6 scif_vwriteto +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xc754a79c scif_register_pinned_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xca8a0881 scif_client_unregister +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xd1beaee4 scif_client_register +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xf32f4912 scif_get_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xf92dbf71 scif_fence_signal +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xff3bb2d3 scif_connect +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x95ea0797 st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xbe92fb75 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x0f6680ea vmci_qpair_produce_buf_ready +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1152e318 vmci_qpair_get_produce_indexes +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x13aa5a5d vmci_datagram_create_handle +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1872c7af vmci_qpair_produce_free_space +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1a195863 vmci_context_get_priv_flags +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3ef56cd5 vmci_qpair_alloc +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x46fbf193 vmci_qpair_peekv +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4b630dac vmci_get_context_id +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4ba5c46b vmci_qpair_peek +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x50a255c9 vmci_doorbell_create +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x612df9ae vmci_qpair_detach +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x677c36d0 vmci_is_context_owner +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x69ef87ff vmci_datagram_destroy_handle +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x6cc1a5f7 vmci_datagram_create_handle_priv +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x722d488a vmci_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x7d540b50 vmci_qpair_consume_free_space +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x81d61eef vmci_qpair_dequeue +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9624c58c vmci_datagram_send +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9973b9b2 vmci_qpair_consume_buf_ready +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9d16164a vmci_send_datagram +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xa2ac811a vmci_qpair_enquev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xccbb53d1 vmci_doorbell_notify +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xcf5ed7ef vmci_event_subscribe +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xdac94780 vmci_qpair_get_consume_indexes +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xdb1b1663 vmci_qpair_dequev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe67343c1 vmci_qpair_enqueue +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe7e7c107 vmci_doorbell_destroy +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x162caab1 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1d4b012b sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x291761c4 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3b5251f7 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x74a867d3 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x92988db0 sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9a0af0ba sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa47ed5e9 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc56ed884 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdb330141 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe0b53931 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe45478c8 sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf32785f0 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf36a4a55 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x278cec58 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x470a7376 sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x50ce5fd8 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x51664891 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x69d77b63 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa1d63ab5 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xacfd9496 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc775825e sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf0efd184 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x529aa98b cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x90ada9f5 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xaf848c1d cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x2b971e77 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x55c555a7 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xd86ed1f1 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x21d7786e cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x7def63c9 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xa1650d08 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xd2b99433 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x03ad60c1 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x04ff9f9f get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0d99ac09 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1b405465 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1c7657fe mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x24eb36c1 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2559c20a mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2c47b0fb mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2f9b66f4 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x32299fa2 mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3f4de0f8 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x49de2317 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x49f62a17 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4c365a0e mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x53a0065b mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5f8a6a3d get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x61024f99 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6fce2a80 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x75e3e771 register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x762eec31 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x763d006c mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7bf932fe mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x94797ec0 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x96797f9c kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9adcae9c mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9c113f61 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9f0df80c __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa6f78026 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa7c6022b mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa964f57a mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb47aea4a mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb8fae755 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbea0270a deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc24e96c3 mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc39d83b8 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcb3f8a02 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcfcef9a8 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd14015da mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe37b6672 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xeb8a9443 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfd7cb051 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfe642257 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x06da8b95 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x31728d94 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x515da5ba mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x59f10161 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x83d83daf del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x82d8ba6c nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xd85a789b nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x6300ae7e sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x15d4679f onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xcb10f64b onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xfeac4e67 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0eb72244 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x17a6df57 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1e7345fc ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4587f8aa ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4d0c5a4d ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7cb0461e ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8436b704 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9c9fb696 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa39db9ef ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc5de10ce ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc970851c ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc97d9478 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe4deb13b ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe7daa38e ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x590982f3 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xebf4160e devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x24a0105d register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6b9b933d unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x97fb83dc alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xa123b209 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe6d20024 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xee8626f1 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0977d576 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0b322ec3 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x18ed7ac6 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x3a6d327f can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x53882c76 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x56b3019b unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x572e84f3 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x59c547cd can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x60644f72 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x712b8d1e free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7618cb73 alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x81b85140 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x89ba19ab alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb0abd05a devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb30c6c12 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xba1411c0 can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xbb7534a9 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xbb932270 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x17787c41 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x675e37c5 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xbf050a61 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xd8126f7e alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x1f24a67b unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x33c6fead free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x5dbf0069 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xa1c5130a register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x013ebe92 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05db2bdc mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x062a5192 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x066a81e6 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0bf8e16d mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0cf6765c mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10258527 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10bc821b mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12f92455 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13e9e236 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b13a551 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b896c51 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d06aa5d mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20b8907a mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21d6cc48 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22ad30e5 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x275f0bf6 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27812dc5 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x291d2b59 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a56f35f mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c8d67ad mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ce70f82 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2df92352 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ecca305 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35a5c37a mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39b296b9 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3bf1e90e mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f91d2c0 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3fa66e09 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x401fdd60 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x466aca18 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47137003 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49bf3ceb mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b999b09 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4cf9ea65 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4fb5b633 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5388660a mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5755ce5a mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59719c1c mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b1eee70 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b78a873 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d4da985 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d55b788 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60d2eee3 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61690fe3 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x637b8fdd mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63f68bce mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64b4bfa2 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fb64059 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x703724a9 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x743116e6 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7494b469 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a08897e mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7cf05ad0 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d0a788b mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fca41b8 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x823e887c mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84d2e1bf mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8631308c mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89dc07bb mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a8820e4 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8dc7d7d2 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8fe3d0ec mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92e6b2d5 mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92e71616 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94286245 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x954c2b30 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x988bdf72 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x995591db mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99f6b4db mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a31438a mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a59d9d6 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b464e85 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d7e9cbd mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa256af6f mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa401b83d mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6a48cc3 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9abc8dc mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae10d48e mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf645bd1 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0914f3b mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0c1a8f0 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb23a9865 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2ac6d34 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3cd8b6c mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3ce5158 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9b5dc6a mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb2e5d34 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc42e783 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0c1e49b mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc14b25cc mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5bc8ce6 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6300e31 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9b8547e mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9e39c06 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcbc3ad54 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0ceb35e mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2c36116 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd571a05c __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6ae80d0 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd945601b mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9958579 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9c45164 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda48148d mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde23958f mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe26186ee mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe381b801 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe52f3f51 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5dc9715 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6b53347 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe900fc48 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9fd953a mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec99c990 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xecebdba8 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xecf60a64 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed4baf98 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0d8025b mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2273537 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3b202d1 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf55ed37f mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7da039a mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9c49cfc mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd5f3964 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe165508 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02a9e0e5 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06a21585 mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e573e35 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f28fef1 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x101e28ab mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1143c6ee mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12c4ee78 mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x158c6017 mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1fa735f9 mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a20ccc7 mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2cc1ab6a mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d892b2e mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x340e0c4c mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39a21809 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b0a54d6 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x400aebfd mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4435ae93 mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c28e368 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e10c34e mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f195792 mlx5_set_port_proto +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63021b77 mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x643dd61a mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6642d8f0 mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66fcddb0 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d19b0ff mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x805b0765 mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x852d3d33 mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x897fd2be mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90d9a5d8 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1d26b74 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb64165bd mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd97cfdc mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5103549 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7c41b95 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc43788e mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1c18eae mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1e63d69 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5ae579b mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2071c53 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe53f47ab mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe70c01df mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xede04514 mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee4086ef mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0c6a048 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf77aaacf mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x5e28947e regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xac144314 regmap_encx24j600_spi_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xdc2c8acf devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x4c6345d2 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x90ec8e52 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xa9b67f76 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd8e192c4 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x13656f89 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x24aa8045 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xe195bac5 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xeb42883c stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x045cbf6e cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x07fab775 cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x09a60b26 cpsw_ale_control_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x16567e56 cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x662c2aa2 cpsw_ale_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x7d04f368 cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x857a8763 cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x93daf45c cpsw_ale_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x98a6db9c cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xada6f39f cpsw_ale_control_get +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xbd37fd11 cpsw_ale_dump +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xc97f9b39 cpsw_ale_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xdf7b0237 cpsw_ale_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xe78605b2 cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xfb183cc4 cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL drivers/net/geneve 0x7f11d472 geneve_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/geneve 0xe0ceb962 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x314c60db macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x4893d90a macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xda1a7998 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xdf072582 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvtap 0x79630150 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1c465f89 bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x45d6a6f2 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5e8663d0 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x75e178c6 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xada41e6d bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xae8cf3bb bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdb263ab1 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xde6f877f bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe8b339b8 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xed31902e bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x027ca1a9 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x1d964fb8 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x37e7d4e2 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xc4957ece usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1f879f03 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x458da18b cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x46ec362c cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6e0efcf0 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa3a6ed69 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc3ffe96d cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd3cb491a cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd643ba0c cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xfc29eeb7 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x1aa07946 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x25fc1300 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x86834e1c generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x9c0deeca rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xd1fc4837 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xe0bbf6df rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0a5dc59f usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0e7dc05c usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0fa87e02 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x103a7a15 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1fedf201 usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x36266e4c usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x39d1e6d1 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3a44af6c usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x465cdac7 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4a33bf19 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4a87f1b2 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4c4ca322 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4cfae407 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4f20643a usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x565dd95c usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x602a5963 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6a246129 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8e0c7b64 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x92d2e74b usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x945a88bf usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x995e105f usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9d0d2459 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9e25926c usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa0c2f02f usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb5ecabd7 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbc1bd716 usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd116d933 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd826045d usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd858019e usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdad0bfcb usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe65b1da2 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf84e5b4e usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x3cc09dd5 vxlan_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x6b97a2f1 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x08df6349 i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1404c4f5 i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x186fca6e i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1f831562 i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2b10a6d3 i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x34e83e64 i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x693a283f i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x6f681efd i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x7569b892 i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x9e516212 i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb5c71a33 i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xcadd4f7f i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xdcd4da49 i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf1086a44 i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf50e72e8 i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xfe96c9f0 i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xa4f04b36 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xbebc1ebd cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xed64b883 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xfd4961f6 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x3fd9b9d9 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x2327381e il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x29fd41f8 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x72eec18d il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xcbe42a2e il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xce6c4429 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0ccbce98 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0e76e67e iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x18377514 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1b074767 iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x202a9ac0 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x43f2ba3c iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x512a2413 iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x56428b7b iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5719cf84 iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5b2bdcec __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5ee5ab54 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x76d20e36 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7a3ec41c iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8bedbbdf __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8e53edad iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9195ff5d iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x97a5b9bc iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9a2df7d6 iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa5055f95 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xaa6ce8ff iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb260109f iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb8979af3 iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xbefbbec4 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc1273c21 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc4a8fc91 iwl_notification_wait_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd49b4b3e iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd676ce68 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd6da7753 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xdcece30e iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf3f98af3 iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xfc197511 iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x0009561f lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x35c977aa lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x3d335458 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x554f0c7c lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5acd7a2b lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x62cfb63e lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x724f718e lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x7dcd79a7 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x81ebd547 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9294ccf8 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x980fcb40 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xd96dbc16 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xdbcbd6a6 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe9314bce lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xea9ea435 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xeb9ace3d lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x36117724 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x62447420 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x6afcb35e lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x888a7f8c lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x988e4d6b lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x9fd26dcb lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xb27ca797 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xf0206fae __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x205a9ea6 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x27d53021 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2ac8c154 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2ad53cd7 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x37f975a2 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x4eb34949 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x50781d3e mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x60248bfd mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x715cb9e4 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x84c9bba3 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x84ca4128 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x898a03fc mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xbd38f2d9 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc29946e5 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc7b0f20a mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xec949e98 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xee24b9d3 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf4cef922 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xfbc02f1a mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x00a52d07 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x073677c8 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x243bed8f p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x3a9be87a p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x5573fd25 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xabf0fffc p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xb64ae2f6 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xc9321391 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xe66013d0 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0ec8267e dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6559682b rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd7317694 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf178d4c2 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0dfb5520 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0fb7ecbe rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x12339576 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1f0f2260 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x200058c7 rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2fb24374 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f147f5e rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x416490ec rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4597be64 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x49e91d2b rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4ba6e630 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4e2f59b1 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x563511b5 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x732a03d4 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x75c6a017 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7a759ba5 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8b0433d1 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa47a889c rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa5d1ed2c rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf7344f7 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb80d5753 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc0805d9c rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xca9210a8 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcd91c11d rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd48c0c76 rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdc6add8c rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfb85966d rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x011061df rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x08fce469 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d62d0d1 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x132e7fd4 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2ef4ec8b rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x32a60989 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3348551e rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x37ee191a rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x65963750 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b202899 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b4de810 rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db00dd5 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xafcdc668 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb44ba6c4 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbb88e6d1 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc2a77c07 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc70cb313 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdbc8d597 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf4b2f230 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8e3b352 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfa88b478 rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x1d2c36a5 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x1e7f0df9 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x4ea00f4e rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xc09641a9 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0758d0c4 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x07b76928 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x09e98742 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0ce36f31 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x139bc04b rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x339978c9 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x41cdb945 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x44a7c653 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x48fa90c7 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4f57068a rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4fcf021e rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x59c397ef rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6145500e rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6ae73118 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6e7350e7 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6e9aca94 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x737c0eff rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7843c3f9 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x85cdf10a rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x97698457 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x99876a3f rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa0ee9537 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xba061347 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbd8b4860 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbdd12040 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc10019e3 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcecf84a4 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd3718b72 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd38976bb rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd591935c rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd94759b6 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xdf8d0c02 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe53805c1 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe601d96a rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe6b33682 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xee0fc43f rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xeeffe6ec rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xefe8f6b8 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x25b751ca rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x29ccbf1b rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2cf21d39 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x30502c36 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x3bfede01 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x41f2df1d rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x70d74eb2 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x7aadaf7f rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x858c6aca rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xb0cad76f rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xb4d305c5 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xb61db2b3 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc3957570 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0446aed2 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x04800f34 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x057eb35d rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0811f043 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0c0de359 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1567519d rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x18b5c303 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1e150f6a rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x22c5bb01 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3114c951 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x34dd184b rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x41537fc2 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x41a1842c rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4fbbe2a1 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x590b0549 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x59343362 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5ad81222 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x68d77cc3 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7db29299 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7e77b3d3 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7f245372 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8c7b2049 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x90029501 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x904813f8 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x904b164f rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x984eea41 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa87d53ba rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xaa6bb93b rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb443482b rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xba74868f rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbe7bdf17 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbf72bb2d rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd135c1c4 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdb7b7b40 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xde29c13c rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdef29462 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe522890d rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe5ede11f rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe62947be rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe77523df rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xec080211 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf006ee58 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf84bf266 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfa84b832 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfcdd8b97 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfdd871ba rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x07238446 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x216c20a8 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x43be7ea3 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x6283aba5 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xd6e994d6 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x1b1ee3b5 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x8df283fb rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xc68a4896 rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xd1e90284 rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x06c37260 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x10358467 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1eb3c8e9 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1eeb5edb rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x235bed8a rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x3db7678e rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x46494f73 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x5bc3f797 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x5ebce741 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x7df4bf7c rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x897f4b06 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x92eda220 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xbb94757f rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xbeceed88 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xdd10f11f rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf01405c8 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x360883d7 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x503b834a wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x6c85ffe9 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x03656d44 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0e2da949 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x118cec52 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x16147349 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x18b27987 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1ee30738 wl1271_ps_elp_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x219560e5 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x274a345f wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x34702d6f wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3880426c wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3aabc252 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3fde67e8 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x48b1cd58 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x49ce152d wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4c35ad16 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x528ce3d6 wl1271_ps_elp_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53b0dab3 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x546106ac wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x626c4da6 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x63cb25dc wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x69f8bcc2 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6d142030 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6e225cd1 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x73e5c3be wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x775baac9 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7b5650d2 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7e1a047c wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8eedfb0f wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8f557ae1 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9e951004 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa5890eee wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa6c524f2 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaa2fedd7 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xae9c3544 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb491c43b wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb62486d3 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb805a0fa wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc1797150 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc38e4bdd wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc9078626 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd4355423 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf272f020 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf40494b7 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf8c80da1 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfbf4d2d4 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x22ca38e3 mei_phy_ops +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x521a6b9a nfc_mei_phy_free +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0xb3a30243 nfc_mei_phy_alloc +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x1e922ff3 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x7c50718c nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xf583b0b3 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xfbb7040c nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x0db48239 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x0df5052c st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x2298b362 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7d41fcca st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x99b9afa5 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xd925fb42 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xdd242528 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xeec90a9d st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x20c7d459 ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x2cc91f85 ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x52c611b2 ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x0c80bf9d nvmem_register +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x16e16764 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x224f51bf nvmem_device_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3866e217 nvmem_device_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x72a337b5 devm_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x7ba66918 devm_nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x93e24e90 nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xa408fe3c nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc697b0f7 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x1ac2e6ca intel_pinctrl_remove +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x41e14396 intel_pinctrl_probe +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x51eefe57 intel_pinctrl_resume +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x7708c008 intel_pinctrl_suspend +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xf7f9dbd8 asus_wmi_register_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xfe08cb63 asus_wmi_unregister_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-rbtn 0x51552fca dell_rbtn_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-rbtn 0xa060fe7d dell_rbtn_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_ips 0x46809fa9 ips_link_to_i915_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x56235c72 intel_pmc_ipc_command +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x75068282 intel_pmc_ipc_raw_cmd +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xdea07053 intel_pmc_ipc_simple_command +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_punit_ipc 0xa6c87106 intel_punit_ipc_command +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x111aafa7 telemetry_set_trace_verbosity +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x1bbf0813 telemetry_add_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x1be25432 telemetry_get_sampling_period +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x4294042b telemetry_get_eventconfig +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x4cb51f18 telemetry_pltconfig_valid +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x50c1c0a8 telemetry_get_trace_verbosity +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x5847f501 telemetry_clear_pltdata +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x611fd2a7 telemetry_read_eventlog +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x64c6a83e telemetry_read_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x73dcd24f telemetry_raw_read_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x82bb2dbe telemetry_get_evtname +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xb78846ce telemetry_set_sampling_period +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xbb9a2726 telemetry_reset_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xbf0d3d83 telemetry_set_pltdata +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xcbdc93cf telemetry_update_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xe7eb1528 telemetry_raw_read_eventlog +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x232b5238 mxm_wmi_supported +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x61cdf799 mxm_wmi_call_mxds +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0xe26032eb mxm_wmi_call_mxmx +EXPORT_SYMBOL_GPL drivers/platform/x86/thinkpad_acpi 0x706cdcef tpacpi_led_set +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x3ecf6cfc wmi_install_notify_handler +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x561c634a wmi_evaluate_method +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x876d29f1 wmi_get_event_data +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xb5a6ebe2 wmi_remove_notify_handler +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc9d4d6d1 wmi_has_guid +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xda29f8b0 wmi_set_block +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xfb882fb7 wmi_query_block +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xd8c82379 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xe25c93b8 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xf208968e pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0x6365870a pwm_lpss_byt_info +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xafcf8794 pwm_lpss_bxt_info +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xb563cdb0 pwm_lpss_remove +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xc34d815f pwm_lpss_bsw_info +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xf3b40a39 pwm_lpss_probe +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x3a573d59 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x86cdd329 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xc37d467f mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x35c4132b wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4dde3c27 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x80d75c8e wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x8c103174 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa63fcd1e wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xbbe0e6c6 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xe50e53b4 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x002167e3 cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x16c042e8 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x19919e77 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1aa4e57c cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1ea12345 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2353438d cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x26bcf178 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2dd81f27 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x35b2b499 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x38b9e05e cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3af297c4 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x40e09f62 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x43524617 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x506e3562 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5b34d197 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5c177eea cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5f55b912 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x605e916e cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7814a0d2 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x796683b8 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x83fec4d2 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x857d08e8 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9b4dbbe0 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaa6ebe3f cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xacaf9c3b cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xacfd0729 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xadf97960 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb1082fe2 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbaa4dfc8 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbe107ac9 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc99203fd cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xca3e1aea cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcbc481d7 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcc589d74 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xce713434 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd16d951a cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe324ee7a cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe4d48fe3 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xec67c2c3 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xeca95fd0 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xedce3d22 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xefd89ba8 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf6d0179b cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf77a790e cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfd9fb2e5 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfec290b4 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x00c980d8 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x06750e1c fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x14797d94 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3a5e15e0 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x48f0b577 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x78fa2ef5 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7ef8ff8e fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8a67d367 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8f9b21bc fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x96705086 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9c5a6c62 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xca9fc5c9 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd57b97ec fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf0774e9a __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf2af2aad fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfd87b00a fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x367f04cc iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x48b447b6 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x48ed768b iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x5416cdd2 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd6428a05 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe3b1c24b iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x098ad3db iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0cfbf2d1 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12182fb8 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x21290637 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x22699bfa iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x278c713f iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x28031698 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3458c647 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x36ca3bbf iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3741f13a iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3872f988 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x409a1239 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4cbd6d57 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x50ec3c04 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x542edb26 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x57e2f368 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5edf724d iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5f3771d0 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6142e25d iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x655b64e9 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6e7b9c5a iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7366479f iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x74b3987d iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7a3c9d07 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7ac7710a iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7da2e529 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7e906535 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x82be83bb iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x85e59a9a iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8b686749 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x92b1a2ce iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9c739b3c iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa40f0610 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb022183f iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb2dc6895 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb5ecb109 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbc075ed3 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xce5e33f5 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd4eb4adc iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe0158600 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe8c80f52 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeb6b0384 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0018ff2a iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1596fa91 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x181c502b iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x336fd13d iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x63f6cc30 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x68930b61 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6c45ebae iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x73d625d4 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x775faaa8 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7c3a2df7 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7f2c094a iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x90494d25 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9e481a09 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa23631e2 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xaffc70f7 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xceca5fc7 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe5d3f272 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0273ee5e sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x04f23708 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x050e0057 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1f4df05e sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x20f4610c sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x22c8b421 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2d8640fd sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x32f472e6 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x37422cb3 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x443a6046 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6ab6159e sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x75f66782 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x79a75ef6 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x81356f1e sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8c56bd81 sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8f3047fe sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9c663c4a sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa11f0fce sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa82140d4 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc632a9f3 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcf8c212f sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xda738f48 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xeecea7c3 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf69df1d5 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x003daaeb iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x04b5f65f iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x06f7fa3f iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0b6dc439 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0b95baeb iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1921fd54 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x20a60fb9 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3e08bf8f iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3ff12c9b iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4276dacd iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4f33a387 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x501b1956 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x50b443cb iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x56d18642 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x670fa63f iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6e8f465e iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x73aebe80 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x769361c1 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7ef6cce7 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x801f8757 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x83040340 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8b753577 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x90130498 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x90db02b6 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9970fad6 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9af96303 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa23b34fd iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa3ee40d5 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa964e8f5 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb1b6ef47 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb38f5810 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb59b9728 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb5f9991c iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbe7e41c9 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc379acbe iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc64ea57f iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc6a59da2 iscsi_is_flashnode_conn_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd1c9f86e iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdd54434e iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe68b77b8 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x21ef7494 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x44b702de sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x679a89b7 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xf11b7cb5 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xc7e1f04f spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x46c39879 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x4eb527da srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x880293d7 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xa8bde6bc srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb36d6110 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb600fb5b srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x2be04b4a ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x3d4635b8 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x40e1bf2b ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x5d4c4067 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x82088565 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xd5202e25 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xd6c9c42c ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x17768567 ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x186f6bfe ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x2681c579 ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x2f87f7ed ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x3642afdc ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xa466214b ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xdf233303 ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x3d4c7bf2 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x4cab8d49 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x55dad84d spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x7800302f spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xf2e864d4 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x2799c82a dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x37aac021 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x7fbe3896 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xf2377b7a dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x06baaecc spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x19aca355 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1c0a67eb spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x396b214d spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x44953490 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4c34c3c0 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x56245b07 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5a247d7c spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7ba79791 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x81aff360 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8788d64b spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x930c2f12 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9dbd5d06 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xaf0d4c3c spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb3671444 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc2626c84 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcf94feed spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe99744b3 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x388e052c ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x05fba4cd comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0aeb1725 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0e183937 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0f6b5fba comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1d4cae64 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1dabce15 comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2102150f comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f4f1684 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3094aceb comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3db04b00 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x457ac479 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4d59ae18 comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x532b36c6 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x552abc25 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x642bdb72 comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6df1b75d comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x79a61cf0 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7fb0c547 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9609612e comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x98303237 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9af1336c comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9b78ec3f comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa6f72de8 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb0218dbc comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb78f5f93 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb791ce6a comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcc4b4f54 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd06ae41c comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd2a1efa2 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd6bc7c5f comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdcd86c14 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe18e1f36 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe63f38cf comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xea3793da comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf848cb9e comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x0cc42f55 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x251603bd comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x308d95fd comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x373f2fae comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x5c8c9b77 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xa6843eed comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xbe4e3e53 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xf99aef8b comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x191048d1 comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x278cd6d1 comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x27f6f953 comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x6dc9978e comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xac52e2c1 comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xb7e84e99 comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xd317f4db comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x158da47f comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x67f73567 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x924fd942 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xa000072d comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xe49d4573 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xf3acffaf comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x508295fb addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xb7d388e8 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xbae0895a amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x6ebbc1b9 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x16510501 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x2f2588b9 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x422a054f comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x552404bf comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x670906ca comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x68280a57 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6e0af0d4 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6f7e5e0c comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x9f9e8b7f comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xa3102dda comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb1308b1e comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb8cbd872 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xd7415fd4 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x12d888b8 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x54e56aaf subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x7794dc58 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x0d68fcd9 comedi_isadma_poll +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x61f9b59b comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x6815a033 comedi_isadma_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa3d01a85 comedi_isadma_program +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa7ebb8a3 comedi_isadma_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x9d2d7ffb das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x277ba529 mite_bytes_read_from_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x29c7ccb7 mite_setup2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2c45b66c mite_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x43ca548f mite_get_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x49655853 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5797e25f mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5a040786 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x671c0a4f mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x678364c2 mite_bytes_read_from_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7574459f mite_sync_input_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7979f116 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xaad38835 mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb1e6f4c2 mite_bytes_written_to_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc6a530ff mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd19cb9c8 mite_sync_output_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd2834d4a mite_dma_tcr +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xde2133e3 mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe0a143f4 mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe1de43b5 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf11e3529 mite_bytes_written_to_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf7fb7a78 mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x2d4952f5 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x96e8e48e labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x0f44cf69 labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x2ce83aaa labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x4bdf3677 labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xb3e39c96 labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xbae9144d labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x43df697c ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x6aa99d56 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x738f182f ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x8c132732 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xa24b17db ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xe02a9459 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xf1551b59 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xfc5bf2f5 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x06d9b7b6 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x29b7516f ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x6f932d57 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x88bcf173 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x92e06083 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xf664cf3d ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x25a968d8 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x492dd1a6 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x5c4c5a9f comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x6aa8dfd2 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x71671601 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x97dda4a0 comedi_close +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xda41b936 comedi_open +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x67736947 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x0edfb1cc most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x299f1679 most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x4ae7fc45 most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x4bd5e61e most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x53c610b1 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x602e185b most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x9b86cc86 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x9f5d11c9 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xab9d7fac most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xb4838799 most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xc50639e8 most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xd396ad81 most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/rdma/ipath/ib_ipath 0x1514b2b2 ipath_debug +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x01f6a04d spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1a0edd9f spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2ab8daa7 speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x3997a436 spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x410b102a synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x503fd4fc spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x5094c4a3 spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6698e0e8 synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8ab7113e spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8b3aeb81 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbcd8d392 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xf24271ab spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x0877dd5c visor_periodic_work_start +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x0ec0434e visorchannel_zoneid +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x149bde55 visorchannel_clear +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x1582a13b visorchannel_signalempty +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x2886afa3 visorchannel_debug +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x37626eff visorchannel_get_clientpartition +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x39fe5de1 visorchannel_signalqueue_max_slots +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x4063ea9d visorchannel_signalqueue_slots_avail +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x4e4bfbe5 visorchannel_signalremove +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x563d32aa visorbus_read_channel +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x5e533597 visor_periodic_work_nextperiod +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x60aaf74b visorchannel_uuid_id +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x610d19dd visorbus_enable_channel_interrupts +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x6d2236e7 visorbus_clear_channel +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x720775df visorchannel_set_clientpartition +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x7948d062 visorchannel_get_header +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x7a4ec5c5 visor_periodic_work_stop +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x85b49e2d visorchannel_get_uuid +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x865e5ab6 visor_periodic_work_destroy +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x96401fe5 visor_periodic_work_create +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xa428b832 visorchannel_create +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xa77f3c8a visorbus_write_channel +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xac7771ac visorchannel_signalinsert +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xae9128e9 visorchannel_create_with_lock +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xaeb9627f visorchipset_register_busdev +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xb21866a9 visorbus_disable_channel_interrupts +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xb4aab617 visorchannel_write +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xca18358d visorchannel_id +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xcc89f91f visorchannel_destroy +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xd7edca34 visorbus_register_visor_driver +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xe3b5efe1 visorchannel_get_physaddr +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xebc59b20 visorbus_unregister_visor_driver +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xed313c21 visorchannel_read +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xf990f627 visorchannel_get_nbytes +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xfece836b visorbus_registerdevnode +EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0x628c48ab int340x_thermal_zone_add +EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0xe829eae2 int340x_thermal_zone_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x5b471184 intel_soc_dts_iosf_init +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x63edb99f intel_soc_dts_iosf_interrupt_handler +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x96c831c9 intel_soc_dts_iosf_add_read_only_critical_trip +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0xe691cb08 intel_soc_dts_iosf_exit +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x50292d96 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x664b22b7 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xe780b034 __uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xbf90c79d usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xbfec053a usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x253d452b ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x4a9c4a4f ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x0539d70f ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x57f1b705 ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x84f2d39b ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xb8966d23 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc5d7a920 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xccaa5650 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x00a60f80 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x21e46079 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3f73a6eb gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x48a80637 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6f2ddf0c gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x91007091 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xab14499e gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb1a029dc gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb3f1e3a4 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb6181ed5 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbcfa3f4a gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd9c8765f gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe83f4331 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf528aa88 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf8f3dca8 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xeb2dd117 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xf41130d0 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x18b1224e ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x56a4d0d6 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xd667b34c ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0172237f fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x076de66f fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x08195931 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0de43e24 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x17253077 fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x19b7aa9b fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x28ffc25a fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2b6ad518 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2cad632b fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3c7598b9 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x471006c4 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4d7a8daa fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5255b366 fsg_common_create_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8407ddd8 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99930a7c fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb3c44db9 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc898d9c6 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x27bf599d rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3929a83c rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x39f49d4f rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5cff0607 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6535715e rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6a087ca6 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7870152e rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x846dbf1b rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa6f26255 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xad6ee7a5 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc11251a4 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcb070d7f rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd0ad6f0e rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe178b217 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf2fefa11 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x02d65867 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x03b1db0e usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x081db4c9 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c0ebd3f usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x126550b5 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x14899298 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1904a256 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x29ef52fc usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x35b3e733 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x39ed719b usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4295d5b2 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x48e41cd9 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x52e776e6 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5bf48a5a usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x719fab7e usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7938f755 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x84cf33df usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa3218b41 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xac191861 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc23f84c1 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc3dcf116 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc8d3b895 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xca267db3 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xce1c96ae unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd28b0148 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2eec10a config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd5868984 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd8d3a27e usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdf736660 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfc2ae9b2 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x05eafb4a usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x14c7f6d0 usb_udc_attach_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x25113c48 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3021a9e0 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x41b4d1ad gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x64e3497f usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x79ae69dc usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x82c9e1ad usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x93e793cd usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9e2926cc usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4744dba usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa9a36447 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdaa4b493 usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xea172b88 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x72bb7cab ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x9f92167a ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x1bdee7d2 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x1d272c0e usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4cbeb3c2 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x56382208 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8af34b75 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb99771cc usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xcc9f36c6 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe7959292 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xef1db977 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x7b2a2254 musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x36a4dcb8 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xe79b8b04 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x04ecc853 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x168944b4 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1fb5c1ee usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x27cf33a8 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2a5e3559 usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x30bb6d2e usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x47e87bc3 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4e251a8a usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x67f2feb0 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7352dd4f usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7bcc8fd4 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x803b1b24 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8e9d0d75 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x93bcfeee usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa9b1535e usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xadc92af6 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xaefc3232 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc0d22934 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdf10a3bd usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xeb44f282 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfe2c3a5f usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x007e2728 usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0904f6e0 usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x21496d94 usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x236238a9 usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2dafa2d5 usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x35d6fd8b usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x38364dae usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x389fb8e0 usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x48a7928c usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x53fe35e7 fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x54c95ef2 usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x59f01d8d usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6567fc5f usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x67179876 usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x72ebf468 usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8461fd04 usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x84864d3d usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8c99512b usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8da47664 usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc9725989 usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xcced6673 usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd4ea878b usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xea7de6f1 usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf5a1d544 usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x09490a7b dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1e283a27 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5d89c9f9 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7adfa905 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8eb0bf3a usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x96637fc5 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9ba95499 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa184d210 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa38e2fb5 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa516758e usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa9f99d20 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd5d263dc usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0bd816f0 wa_process_errored_transfers_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x122f15ac wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x17720501 __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x31085255 wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x6e53f743 rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x7026de83 wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x85a801b4 wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x87ef0cb8 wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xa79a5345 rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x07d7e3dc wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x1878ad5e wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x1f44a9a7 __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3bc93ff6 wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4091d397 wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x553b256b wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x862ed80a wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa80002a0 wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xafc63e39 wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb50a982f wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb7a20fdd wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xdcc34c49 wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xee3aa672 wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfbdd9782 wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x01fce8ea i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x1e61d7fd i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x217e82d8 i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x180df6b0 umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x511dac48 __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x8f7cbdcd umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x9e1dbde7 umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x9e66ce00 umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x9f9574fa umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xa5cbffeb umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xda1581e5 umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x067cdc8c uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x06abd058 uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x092839a4 uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0be1a874 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0d78016e __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0fc02440 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x154e2db6 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x15574bf2 uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x176d4619 uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1c167fb4 uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1f3c00e7 uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x28fc242e uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x353741be uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3878c259 uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3c88ec4c uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4091de8f uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x47108af7 uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x490d248c uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x54c908d2 uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x592c39e0 uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5c7dcecc __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5d5180ec uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6313baaf uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6a255bd0 uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6e5d7fab uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x748cf859 uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7619f7a2 uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7ae9cbe8 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7beeff23 uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x816b9e92 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x868c397c uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x89e44ec9 uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8f3079c2 uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x939704f0 uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa7dd0d19 uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xaa049372 uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xac97316b uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xcdd156d2 uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf2ecbf18 uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfc8f2963 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xff3e3770 uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/whci 0x0f0749b3 whci_wait_for +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x07f8d19c vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x1098089d vfio_external_group_match_file +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x12b3dfbc vfio_del_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x319609e3 vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4586f06f vfio_add_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x69b438e6 vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb3900359 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x43c5ade0 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xf6962e93 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0265de87 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1debec77 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x33029292 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3ece6ab3 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x47293371 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4cb96f77 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4f7cc8a6 vhost_init_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x737a34e6 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8157f477 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x84c53843 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8cca519f vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x98ee0a41 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9f432c3e vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa359f34f vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa5bbdc95 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa814317e vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xad1337e8 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaeb59b4c vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc1280e6d vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc5a6643d vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcc64d9c1 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcd530593 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd5600d98 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xde1726d9 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe1b932b4 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe5abc999 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xeb7ee4c7 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf691d050 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd08cb71 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfe97695f vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/video/backlight/apple_bl 0x2c63e051 apple_bl_register +EXPORT_SYMBOL_GPL drivers/video/backlight/apple_bl 0xdab0f892 apple_bl_unregister +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x22be72ba ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x2dcbadb6 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x517512cd ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa4de5a95 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xaa8632cb ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xdb5c4371 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xf3f33c5d ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x111541de auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x1af01a98 auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x56545b41 auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x5c54d274 auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x6846e93d auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xadf40fb4 auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xdb35ad3a auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xe41efd6b auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xee2686f3 auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xf7f0d1b6 auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x4472cb61 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xbf02a4ef fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xfec0ee69 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xa3a9088a sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xdc4e6afc sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x016e6c20 vmlfb_unregister_subsys +EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x90c018c6 vmlfb_register_subsys +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x15446974 viafb_find_i2c_adapter +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x22a7af24 viafb_dma_copy_out_sg +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x292da7a2 viafb_irq_enable +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x30cc9311 viafb_request_dma +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x31469540 viafb_pm_unregister +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x79e6190a viafb_irq_disable +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xb4f863e6 viafb_pm_register +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xcaefb732 viafb_release_dma +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xfff2dfd2 viafb_gpio_lookup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x00088dd2 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x23d4de74 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x3f177a0a w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xca0f39b5 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xd21ff68a w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0xe19956e3 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xea413082 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xf9f5b490 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xfbd41297 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x37d748b1 xen_privcmd_fops +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x1671caf7 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x607a3870 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x841c8690 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x209e0cf9 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x2eb1f94a nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x76399c04 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8d509d4e nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x930fad5d lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xba9e173b nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xea48528f lockd_up +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00f0a71e nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05177a84 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08ac1913 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08f9c15b nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0920535e nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x097bb08d nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a033855 nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b575956 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c2e818f nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ebd2154 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0fbe84c9 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1013c378 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10a79376 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x125923a0 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12e7c379 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x141e3fe2 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19cc4823 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a1b13b8 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c0c7431 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e107205 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x238d1f8a nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2431f0c9 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26ab6d29 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29a96cf5 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ac90f69 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ad80922 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e85db80 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2eb51550 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f2ec84f nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34946067 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3594850c nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35f4149f nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x370a62ac nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x388ba15d nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3bc137f3 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e6dd8ac nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f6b16d4 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45d5c869 nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x475b7ea8 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x490c7345 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c691576 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d0e4d3f nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d1cc548 nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4fd03437 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5089ae7f nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x544fd027 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5631ca69 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58204b26 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5afc11ca nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e7d6533 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ec46e91 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x648e1a94 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66190ae6 nfs_file_fsync_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66341d72 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x676d0bb2 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x679b284f nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6902283e nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6aaf3fea nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d5d71fa nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e46dfe0 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6fa1b514 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70e48fe4 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7372601a nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7793308e nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77a0e0fd nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x799d9eba __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7cdeb2bd nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d82c62f nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85b17ad9 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86c45104 nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x871fea63 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87daa93b nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a229ec5 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ae92a04 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d278734 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d9e1aea nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ea562c6 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8fc1139e nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x902ee052 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92969cbb nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9387e4ea nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9456c218 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x954e7f97 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x992f38fb nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x996b4fdf nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9cf6866a nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d36588e alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9fa61a0a nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa372957a nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaadde206 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaea173a8 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb40beab5 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb77eead5 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd33ac68 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbececadb nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf240e85 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0080312 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc120a29c nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc235fabd nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2e117f9 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8d13d09 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca5adaa1 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce85166f nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0933cfa nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd15aa2ba nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4806680 nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5140df3 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd81fd314 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9d26ac3 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe39aecaa nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe5c12ae4 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe630755c nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9277bcf nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9a67cca nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec672515 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef8b61c4 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf410328f nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf46aee54 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8119021 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf97e1475 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc7661aa nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfcf119b4 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe6d623a nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff5c18cf nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x393dbf1f nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x03105db7 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0431c72e pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x04409d4b pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0b2eec9c nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0c701c34 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1093b108 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1ac29ac6 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x22fb63bd pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x23928458 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x25b082d8 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b303724 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e088d04 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2fcf137d pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x318c70a9 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x31f0e475 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x372882e3 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4786d5e1 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4e3605a6 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ce538a5 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5e7cb9a7 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5eb7f201 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5f36948b pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6179a70b pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x62ee8b87 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6ad72985 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b563516 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7bfa5b65 nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7dacbf5c pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x826db747 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x870a7dd4 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8846d9d6 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x89ad9f97 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8b68402a pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9563656c nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x959f201c nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96b0af04 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9c9f5955 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa6e0663f nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa9e7c327 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xad59343c pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaedb8127 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0480ef3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb32d0a6e pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5249a98 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb787af19 pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba46c581 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc6513216 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7b77b1b nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0b5b7dc __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd898c38d nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda181497 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda7036a2 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdbf0af36 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd7f88fa pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe6d56001 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xecbbd4af nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeefb9c8c pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf2fa1834 _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf32f7f23 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf76c92bb pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfc8be3f4 nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x6ee769b3 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xc364ecd1 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xffd73afe locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x21611e4c nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xef0341d3 nfsacl_decode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x200dfbe3 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36a28a9e o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5ea493e7 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7c1bcba0 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa0a780b6 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xafb81975 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb38bfeb8 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf9715706 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x169afd60 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x43e30571 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x57289aef dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa16123d2 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa25f4c13 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xb8046306 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0dd169c4 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x58d22e3a ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc7260236 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 0x43f8a56e _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb +EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random +EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0x5d4e0515 _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait +EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop +EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end +EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0x8b9f71fd torture_shuffle_task_register +EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin +EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress +EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch +EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch +EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch +EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x893f921e notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xc7293205 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x201d8ea3 encode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x29fa419f decode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x0adcb055 base_inv_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x221df614 base_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x4da25bec base_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x63f42b6a base_inv_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x76203267 base_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xca3140ce base_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfa5eee0a base_inv_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfc02472a base_inv_true_key +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x4d9cabcc lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xfd50aeb8 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x2ff08c54 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x5a3e07c7 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x5f052d19 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xb2bcc32c garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xcc4defaa garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xfd04de1a garp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x520f3f7e mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x5a19a05e mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x897523b4 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xc85e2ba6 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xeefd72ec mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0xf09a4125 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/stp 0xed651fb7 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0xef7615af stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x012ec818 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0x0f1a25cf p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier +EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier +EXPORT_SYMBOL_GPL net/ax25/ax25 0x4f9bb71b ax25_register_pid +EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast +EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x1907eda0 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x75916165 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7f4c44b9 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8b3c3784 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x91b8df56 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x976a6c22 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa3884e13 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xef3e4608 bt_debugfs +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0fbd0946 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1fe3f5e2 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3ba79f04 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x41500615 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4d46af60 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x92d5ea49 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe9eafba5 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf6ea7da4 br_deliver +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x0b57ad36 nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x17d4abae nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0243ed7e dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0c1c0654 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0e0e7417 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1c928600 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x20971804 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x233a2500 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x23672cd0 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x24fed8f1 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3490815d dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3cc49947 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4e2d4d99 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6184e3d8 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6b1e4651 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6ec46362 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x83a3c269 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x840f2d94 compat_dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9180bde1 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x940a67c9 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x97658cc0 compat_dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9aca485b dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9c70dc0b dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa025b4af dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa02c934d dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa1589684 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb2497572 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb7b07659 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb87666c5 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbc655c38 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbe5c61da dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc28c8e19 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xda3b64d1 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xda4405c2 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe2c93ff3 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xed77252c dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xee23193c inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xee87ad5e dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4f8af54d dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x5066c6bb dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x8c12cd38 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xad1741fa dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb025b6c2 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd4763ee2 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x51939f6e ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x554f9682 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x8e448410 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x938c7b00 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ipv4/gre 0xf19dd4aa gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xf3fc1b1d gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x0b5cbfb5 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4917354b inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5af4d98f inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x675640da inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x771d68dd inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8919e19f inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x317a2c04 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x06dffd5a ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2fffb1e7 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5b1efac0 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x67390583 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7a93cab3 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7c873bc6 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xad545ab1 ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc8582bfe __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd0c2c637 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd0ea4ad1 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd1d7326b ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd5fbf878 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd9e03d3a ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe1031c9d ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfd9d41f7 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x3485fe19 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xc55f3aea ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x0decfab7 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x723bfaea nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xadfe7ab2 nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xf92ec55c nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xfb89d214 nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xfda0ccae nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x18bd12eb nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x00e6a680 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6f8a2b2e nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x748507ce nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x8dfc8e04 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xee090aeb nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x5cbcc3e4 nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x42ab1ce0 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x63050157 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xeb1f1dd0 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xf9b5598b tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xfacaca01 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0036e8b5 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x96818e08 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xde75525b udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf9167a83 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x107f69b3 ip6_tnl_dst_init +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x17ae4861 ip6_tnl_dst_reset +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x523d40c2 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x5cc81c0a ip6_tnl_dst_destroy +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x5e1f9f71 ip6_tnl_dst_get +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xa42b3070 ip6_tnl_dst_set +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xb96ecbd9 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x08fed159 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x25300743 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x9c6eb897 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x376c1439 nf_ct_frag6_consume_orig +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x65322f31 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x24e598a1 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x43e5048d nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x4c4d807e nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x9c6b5ecb nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xc5042acf nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xee2283cd nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x16142333 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x23beff05 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x42ac6251 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x67851bdd nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa4de5ebd nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb5b9388c nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x41e09ba3 nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x08744a87 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x18c652ab l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1d6f0af6 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x23e29055 l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2a8e1a37 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3666718b l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x65c90dd1 l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6a67193a l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x797f9b40 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x806a18a1 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x829e129b l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x90e4ca56 l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x95e17c64 __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xba85c5ca l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcadf2af6 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd4b70805 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xd286ca2e l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0d8f6043 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x11e1f72f ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1f216d2c ieee80211_set_key_tx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x52f86a52 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x58a151ae ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5b36d08e ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6e427bd1 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x817bd7e7 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x86b1dad7 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8a760de8 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x98c716a2 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa4b193ad ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xaa8bdbe4 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb8a241b6 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc1a2d804 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdad73c11 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe05a6187 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe8cc782b ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8c74bc38 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x923e895f nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xa307e421 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xfa231c1e mpls_output_possible +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3958305b ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3c0e7ef6 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5f740e14 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x615af51f ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6a77e3ca ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6f7fda4c ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7786a421 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7881d187 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa020b076 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc89f5f55 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcd2956f4 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd1638705 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf1e5f12b ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3a99ab2 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfc5c87f4 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfd58cd5f ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x166c1331 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x7433a1f5 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xacb63972 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xe44a9049 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c0bd125 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x137c6edb nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1497885b nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1e367f73 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f31fdf4 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x295d1e3a nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x298f530f nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2ac348d9 nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b7d6614 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2cee0203 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2d4df134 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2e8c12f2 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3484f8e7 nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b90328e nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ca1ade2 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ef2abf6 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x42cfc811 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4395096a __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x440a12a3 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x446bea64 nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4495125a nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44ff69fa nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x45534b23 nf_connlabel_match +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4653e904 nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47704932 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5364aafd nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a8234ec nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a84d8f8 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5fff8e74 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x600db1a6 nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6025ae3a nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6314f44a nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6459e411 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x666da1ba nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x68b4566e nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a18dc58 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d318308 nf_connlabel_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x73756342 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x741be4b5 nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7629b73f nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7a0ec560 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7a0fe489 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7bc4138b nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c989cfb nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fc7d18e __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8403147f nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8507bce7 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x85f992ba nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x87df62ad nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8d85ccb6 nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8d9b8af2 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ea0df79 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90bf61c2 nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x950e7e54 seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x951d2fe8 nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x96753218 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x97b39f39 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9aa8726d nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9aef4198 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa2d59abb nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa30c5217 nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa5012b66 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaab3ea81 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xadf8dad3 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xae600172 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb1bd992c nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbffe235b __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xca44cdc4 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce0c7cb6 nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xceb09022 nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd1fac7af nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd2a83a19 __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd8289eaf nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6b3731d nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf04bf0c0 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf186acae nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf8845f60 nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf8d9a3cc nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfb00ecf1 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfc3a1e34 nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xb8c6754a nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x03989441 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x6b2fd39a nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1924f4e3 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x286cc99a set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3e59e01c nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x54de0e3f nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x60c92573 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6ab3b631 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x86f41a41 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xcc3d0fac nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf1c5fa7c set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf7580331 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xdbffcdea nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x40729058 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x5f97c606 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xd0efb406 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xe80a3795 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x9eb8d66f nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xd9eb739d nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0ef31f73 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x47729e51 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x4e07bda1 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xaf7877a1 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd5437511 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xdc4ee838 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xedd56362 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x37442ca5 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x4ba742d1 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x6ab35cee nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x74f1cb1d nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xa870ffa1 nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xd049c1fc nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x08c18545 __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x92243535 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x92c41150 nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x94bb1628 nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb0b3c610 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xea858da9 nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf8ab9f62 nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf8ece4b3 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfaadb7df nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x38134e6b nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x69af166d nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8841d39b synproxy_build_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9392cb92 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc84c9809 synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x082a8270 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x12048908 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2c08adde nft_register_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2f6cfe48 nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3f802371 nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x447779c0 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4f224a22 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x593cfba8 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x634bc4a6 nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6bf89820 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa864fa75 nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb792d9a1 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbccb2f4a nft_unregister_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd0c27f4a nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xef3ed2d1 nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf130cf96 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfd0b9f0d nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x216f689c nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x424de106 nfnetlink_alloc_skb +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x513a8637 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x8b628bfb nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x997c4469 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa50366d5 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xb8bcc7df nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x046488b9 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x09a653d3 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xba23eb22 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x7762ed05 nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x5e5ceeef nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x6192a1ae nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xb8ca865e nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x10bedcae nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x233c5e03 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x26fbf989 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x361035eb nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x6afad014 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xf66a44d4 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x327b4d2a nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x5b75e6e2 nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xe34e409a nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x511a35e7 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe7b94527 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x161d1417 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24f663cc xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x33e595c8 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x44301d6c xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x51611aad xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f44c5ed xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f82f1f7 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x691a6d69 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x73cee41e xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x78a43041 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9625fe02 xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x99856a8d xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9b215ec9 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb0176f60 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb02c5f1f xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb0a06092 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbeb74a16 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc1bcfe2d xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd55acfa3 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd6ef6014 xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd78161d2 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0b4971b xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe357e0fd xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec24fd82 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfb3809c2 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x4c32c169 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xb7459345 xt_rateest_put +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x6af75388 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xf1a97db3 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xf63cd4dc nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x299ec646 nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x84dc0264 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x9a4a65bb nci_uart_set_config +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x14a44208 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1b6fa268 ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x292aacf3 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x4e7aa0d4 ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8b1d8b54 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xad7232f1 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb6a8748c ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe3ed9341 ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf2b90ceb ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x1263ed70 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x17cac343 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x274a7376 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x35c106ef rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x5af12fa4 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x5b8ba62d rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x5f976a97 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x684640c4 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x750fbe82 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x793ded17 rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0x7bc62829 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x7c518050 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x8b47e485 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x8efd3d1d rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x93ae6ffd rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xa16b9def rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0xb3a5ccd5 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xb7452602 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xba5149bd rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xbcedc61f rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xca935705 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xd990f0f7 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xde673448 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0xe8dc3744 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0xf7ba349e rds_recv_incoming +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x1d3d7858 rxrpc_unregister_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xe5b55823 rxrpc_register_security +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x415117dc svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x986d9506 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd4055792 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01488262 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x021fa37c auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02e20cd9 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05b432f8 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05d9ee66 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x060e7b7a rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x064141e4 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06f93112 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07dcc2c8 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07ed6b65 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0904fd10 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bfa2267 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c8b1608 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ca367ac xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e96fb8e rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ef9fbff unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fbf2bc0 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10066c69 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x109d6e28 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14acd881 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x154077d9 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15feb477 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16e40d9b rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x171e31b5 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ae4c95a put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1afff6ab xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b04f52e xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d6eed8b cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1df7cb3b svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x225a398c svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x226bc4ec xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x233d2863 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x279a4d5a csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27c7d1eb svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x284ad0ed sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29140a9f cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x299dce95 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ff9f19f rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30727fdd rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31f64792 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32a64981 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x354ec999 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35a2e6d5 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3624b70a rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bd78f15 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c2e4b21 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c46572e rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c80c20a svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cae1560 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d25ba92 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3eac6474 cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f8c5c96 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fb81907 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41c0819a cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42d330ff xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44d45239 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46dfc2c9 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46f21cce sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bd846a6 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c2519ec rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c93c8dc cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ceff076 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ebbd9e1 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f3ac16a sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fb8639d svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fd34465 rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52acf11a rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52bd5f00 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5377c0cc svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55d0bb4b rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x561744c2 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x563591c6 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x585ab2c0 rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a4c70de rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e90af55 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61a75840 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63fea2cd xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67c32c89 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69474cf1 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b2c4d84 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c5089a6 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d72196b rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e3e5f6b svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fabb2a4 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7208173d rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x724a821e write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73c838b2 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74984eef svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74b2259f sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75f151eb rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x764d8367 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7726f947 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x773521e7 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7900df9b svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79f8342c xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c981f0c svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cfc478d auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e541d83 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80646536 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x820a30ff rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x828a83a5 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84ae7ff8 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x856cf597 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x863aeef7 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87099d94 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x876db969 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88857a8a rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89439d62 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d048537 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e381ca3 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e69a75b rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fb20614 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x911235e0 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9297adaf rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94c2fa18 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9507daa4 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9579ff56 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97454a69 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97784330 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x983e4d4c xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x999505b6 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9add17fa rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f56c55a xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa17a9146 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa44bee3a svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5a4e8b2 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf1109be rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb07d1246 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb241befd svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2696a20 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2853966 cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2afce79 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb44a24ae svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5047f91 xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb50b7c7d rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb854bac4 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb886dc8d xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9adf17d svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9ff9cb3 rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc3ea613 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc896f75 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1253a10 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc14e4004 xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1679080 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc17d0b74 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1db5e14 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc24a1ebb xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3744075 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc81b6fa1 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc95d9141 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbba175a xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbbbb564 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc2e43e1 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdd356ad __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd14c8eb9 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd244bf23 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2d7a1d1 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd382995b rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd39b1075 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3da2815 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4af6172 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd56a7bb0 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd648f887 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6695867 rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7085007 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9874b8e rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd98f2b62 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb789342 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd70c9b6 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdffe0102 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe26b875f rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4070958 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe432e4a9 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe66d5124 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8b1fb5d rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8e0f162 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe945ddf4 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeabc5c22 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebb794ab xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebb9a842 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec80f4fa rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed00af62 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedeb2fec rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef52ba19 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf219f135 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf229274f sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf26dd582 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf510a506 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf551fe09 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf565a937 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf80d4c02 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8961787 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf93b7f0b svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9e395b7 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa01939c xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa4cef9e xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc94be87 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfeb14851 rpc_lookup_cred +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x04b68e8e __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0dbe951a __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x185de7b0 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3052b7af vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x71a5b4f4 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x79346836 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x927410e3 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9546036e vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x970b77bc vsock_pending_work +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd44c6b8c vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd68e316b vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec7001e8 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf4c495d4 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf65bb4d5 vsock_insert_connected +EXPORT_SYMBOL_GPL net/wimax/wimax 0x3204696e wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0x4296e5a3 wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0x53dc0a18 wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0x6655496f wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x66c48996 wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0x6bd87e08 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0x70b15ec3 wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0x80cf9ae6 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0xadd5ed6f wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0xcd654e06 wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xd051b079 wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0xdcf031de wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xf8f5c919 wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x187f32dc cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x28dd12b4 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x42ad6ee0 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4d467e67 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5e99f3ea cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6313c944 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7e473959 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8c1a8ad1 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x94810867 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa2881e8a cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdd91eec9 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xef5f96aa cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfbb30704 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x50be518e ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x7c33df84 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x8305bbde ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xedf3b029 ipcomp_destroy +EXPORT_SYMBOL_GPL sound/ac97_bus 0x306c0332 snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x048e449f snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x4eeea7b4 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd 0x017aa327 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x14c4cd44 snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0x3c63f1f9 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0xb96766e5 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0xc97fed2d snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0xcc11b999 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xce224f01 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x29b85a48 snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xca6fe9fa snd_compress_deregister +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xe9cd752e snd_compress_register +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x122029b1 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4330de74 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8ea09dcf snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x920f35c8 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xbebf9e16 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe5d5f5ee snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf1a9a80c snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf7d17eac snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xfd7dd86b snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x09b5eb9b snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1655582c snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2084b4a8 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x529f479e snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x7abb90d5 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x806e526f snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8ce31df0 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9585ac5e snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9e2f7adb snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc83b03da snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe4b4a282 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x25e7549b amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x463474e3 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x52259a0b amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x543a748c amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8dda2f6d amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa1c8cfbf amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa4329670 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x08f8bf5a snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x15697a30 snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x15e2f969 snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1884a9f7 snd_hdac_ext_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x18c053f2 snd_hdac_ext_bus_device_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x297e38eb snd_hdac_ext_link_stream_setup +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2a43e33f snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2d142876 snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4370d877 snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x580d65a6 snd_hdac_ext_link_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5b8e16c1 snd_hdac_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x641a0afa snd_hdac_ext_stop_streams +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7f7f6f49 snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8ca4c3fd snd_hdac_ext_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x90ba9ac3 snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x90f4cd62 snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9a4e9a7f snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb60c539d snd_hdac_ext_bus_get_link +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc46f0424 snd_hdac_ext_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc57aeafa snd_hdac_ext_bus_device_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc59edca1 snd_hdac_ext_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xcbee7c58 snd_hdac_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xce3451cb snd_hdac_ext_link_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd09c3e83 snd_hdac_ext_stream_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd66dbb5a snd_hdac_ext_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd7242760 snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd99d8c71 snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe3f740cb snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xebf59208 snd_hdac_ext_stream_set_spib +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xeee03bcd snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf494fb21 snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf9366fe0 snd_hdac_ext_link_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x03b0a9e4 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0958ea7e snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0abee42b snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0f316892 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0f5aaa06 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1630bac3 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x18c641e4 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x225f374d snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2716de6d snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x27a110ce snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2b4b973e snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2d96c9bb snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x407c4941 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x418d4f12 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x426b495d snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4496ae61 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4a9c90c5 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c0b1990 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4d6584ea snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4e977c00 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x522fb611 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x549f0111 snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x563f98b1 snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5ad1bebf snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5fa81f59 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x680d9971 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x685fe664 snd_hdac_i915_init_bpo +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6c850489 snd_hdac_i915_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73187668 snd_hdac_i915_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x734c43d7 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7911901e snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7aefd3bb snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7b6497a8 snd_hdac_i915_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7cb53bfc snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7cc293e8 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7f4ce0c5 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7f70d80b snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x800ceebc snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x830b5462 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x888f5f04 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x93c59f4c snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x99254714 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9c3a5ab3 snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9e3d3583 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9eb3017c snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9f5fde6c snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa552dd26 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa6293f41 snd_hdac_get_display_clk +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa86eb0ca snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa90b9656 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xab79e813 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb55028e2 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbbfaf242 snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd105128 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbeb4618f snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc59b16a7 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc9acc4b8 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcb3ab735 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcc9ebfc1 snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcd83c2a7 snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd0051b95 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd28aa73d snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd36b961e snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd64d2280 snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd6e91078 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd8852072 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdc4ac173 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xded652a2 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe0859ee8 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe3fc883a snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xea2f88ba snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xea43e73b snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xefbd1b85 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf13e8c1a snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf31b5d04 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf83c2be7 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf8a4f11a snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfb862a15 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x3c74ef25 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x685261b8 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x6f4d727a snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa317232e snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xab996486 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xc19145be snd_ak4113_create +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0459add8 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b151638 snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b43f4fe snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c922a12 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e1a09e6 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x130a94ce snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x143d46d6 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16790d27 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18028436 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1b44b875 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1be2c099 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d4f85a7 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1fc87c6a snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x20d383d3 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2278b0ca snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x281cc80b __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2b3c7512 snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ca42e34 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ec29558 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2f93e1d0 snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30265673 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x378c6326 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3c3ec350 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d7fafe7 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3da6c3aa snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x430c56de azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46e6d009 snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x473eebc5 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4974757a snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49f5eaa8 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4cdd011d is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ded93c1 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x50170024 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x520ba60d snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52565762 snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x53d48c12 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x54171865 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x57b22d08 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59b0a82e snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5ae03984 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x602ba500 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x667f1566 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x697d78ca snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69980804 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x71994d97 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x770b132e snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b28876d snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d203a6e snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f601431 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x81ef0d72 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8853fb14 snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89f6fad4 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8cb0e33a snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8da0a79d snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x90c1db57 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x944b148e snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ab42c10 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9aea5b8e azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9bba889d snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9bc579df snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c2a661f snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c8e3e7c snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ea81c1b snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f1c27e3 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9facbb7c snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa03db17d __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa048bed1 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa38c6941 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa43775ad snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa68d2443 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa865f374 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8ce6a37 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa94934a4 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa9794187 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa9fe50a4 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xab33134e snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaef81795 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf4accd4 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf6ec37f snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf71d5d7 snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb34cc22d snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb42acea6 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb6a0dfb0 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbf3c7f75 snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc037819c snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc0957c09 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc125d20e snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc26a88d4 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3c2ed74 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc42eb444 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc8e7f66b snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9e8f69b snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcacbb815 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcbcb4f45 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcd310a66 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf3b5675 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd1057a47 snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd2da243a snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd7fe0529 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd91ef58b snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdaf5db05 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xde84f3ed snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3e80485 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe404f459 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe5f61f22 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe679f048 snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe7ba2766 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe7dd94fa snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea769f3a snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeed7ed6b snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef558d02 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf020203a snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1e7ddd4 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf34a1b6f snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf35ba461 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf4423cab azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6de26cc snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf9910732 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf9bc79ae snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfab5f847 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfcd2cc37 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd980263 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xffa0d9d1 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xffabdbf2 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x107308d7 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x12b55b8d snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x12c1f916 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3730aa51 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3ec87043 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x453b3344 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x463e6dbf snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4ad58d2b snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5af23d01 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7eec99a0 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x81fc34bb snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9e754550 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa5901460 snd_hda_get_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb3844cb4 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb5f20a10 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xceeff0bf snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd0cafc8c snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd2cb4498 snd_hda_parse_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe43363cd snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe5efe9aa snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe9606edf snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x1978e900 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x5d7451c5 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x381e7d5e cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xcb245058 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x5ceacd3f cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x66ad0191 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xdce2d9ff cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x80e4a80f es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x965df68d es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x193cc4cb max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x665b56e1 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x7017e473 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xd2f35e14 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xde5b846d pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xa7aa810f rl6347a_hw_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xade4bf4c rl6347a_hw_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt286 0xa79cac21 rt286_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x374cb79a rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x21145389 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x23dabb5b rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x823e508b rt5670_jack_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xb886595e rt5670_jack_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xc90a3df7 rt5670_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xd728ebad rt5670_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x89669ca9 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x9131149d sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xa0d183be sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xb6605a1d sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xb69c7777 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x119e9888 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x1154536c ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x34da9316 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x9766dd13 tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xb84b9742 tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xd56231ba ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x0e666090 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x4e8a353f wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x82bca4d4 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x9ecf1047 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xb4d334fa wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xf5908fbe wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x847de4f3 fsl_asrc_platform +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x9d042d08 fsl_asrc_get_dma_channel +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x30693bb7 imx_audmux_v1_configure_port +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x58631dab imx_audmux_v2_configure_port +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-mfld-platform 0x0b38904b sst_register_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-mfld-platform 0x95ca54d5 sst_unregister_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x14444671 intel_sst_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x1513d5c4 sst_context_init +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x24380a35 sst_context_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x292f6a2b sst_configure_runtime_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x74e43b1d sst_alloc_drv_context +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xab14edd5 relocate_imr_addr_mrfld +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x0f749a1a sst_byt_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x8918f8cb sst_byt_dsp_wait_for_ready +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0xc2ea61c2 sst_byt_dsp_suspend_late +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0xd1d7361d sst_byt_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0xf914b4bc sst_byt_dsp_boot +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x02046079 sst_memcpy_toio_32 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x07365ff6 sst_block_alloc_scratch +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x10698949 sst_dsp_shim_update_bits64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x179d927b sst_fw_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1b5e8b82 sst_shim32_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1e60dea6 sst_module_runtime_save +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1fb78beb sst_dsp_get_offset +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2ad6e0a1 sst_dsp_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3414ab6b sst_dsp_shim_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x35736b99 sst_dsp_dump +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x35f2c6ec sst_dsp_dma_copyto +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x36ee56ee sst_dsp_shim_update_bits_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3791506b sst_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4515a885 sst_module_runtime_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x484c13c2 sst_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x49fcb719 sst_memcpy_fromio_32 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4a045773 sst_shim32_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5444e413 sst_module_runtime_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x55e7e4ec sst_dsp_shim_read64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5ae7de6c sst_dsp_shim_read_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5ec126bf sst_module_runtime_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5f33e38e sst_fw_reload +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x64ae9b14 sst_block_free_scratch +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6745c4c8 sst_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x68b4feda sst_module_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6afd4b28 sst_dsp_dma_get_channel +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6d9e57e0 sst_module_runtime_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6e6d9a33 sst_module_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x70712069 sst_fw_free_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x77227d7b sst_module_runtime_restore +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x83f861f1 sst_dsp_dma_copyfrom +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x88b9b82e sst_dsp_outbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x898266a7 sst_mem_block_register +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x94a08dc4 sst_dsp_shim_write64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9b111216 sst_dsp_shim_write64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9bfe2fbb sst_dsp_shim_write_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9f7d9c2c sst_module_get_from_id +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9f809c04 sst_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa921765d sst_dsp_reset +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xaa392dc4 sst_dsp_shim_update_bits_forced_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb41b755a sst_dsp_inbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb4be1f8e sst_dsp_mailbox_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbc9d6fc0 sst_dsp_inbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbcd44f6c sst_mem_block_unregister_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbcec5387 sst_shim32_read64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbdeb29ce sst_dsp_dma_put_channel +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc96f942e sst_fw_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc9f35297 sst_dsp_shim_update_bits64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xcca4862c sst_dsp_stall +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd9a2c94c sst_shim32_write64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xde597d19 sst_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe262edc3 sst_module_runtime_get_from_id +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe2f6d51d sst_dsp_ipc_msg_tx +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe3ae8ca9 sst_fw_unload +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe94d7981 sst_dsp_boot +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe984c840 sst_dsp_shim_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xee9ef002 sst_module_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf09066f3 sst_dsp_shim_update_bits_forced +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf1d4981d sst_dsp_register_poll +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf3520c49 sst_dsp_ipc_msg_rx +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf39d9ef2 sst_dsp_outbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf4315c04 sst_dsp_shim_update_bits +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf8fa6e3c sst_dsp_shim_read64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xfc23356b sst_module_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x4edf4d0c sst_ipc_tx_msg_reply_complete +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x5165bc82 sst_ipc_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x54a13a81 sst_ipc_tx_message_wait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x5f96b758 sst_ipc_reply_find_msg +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x83b6b219 sst_ipc_tx_message_nowait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x948070bd sst_ipc_fini +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xc5f43996 sst_ipc_drop_all +EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0x3dc813eb sst_hsw_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0xd1f69f64 sst_hsw_device_set_config +EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0xe49ed9c4 sst_hsw_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x0bd61f69 skl_ipc_create_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x107ea843 skl_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x30bfcb55 skl_ipc_init_instance +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x34bdd970 skl_ipc_delete_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x58bec114 skl_ipc_bind_unbind +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x6332ecde skl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x876a885f skl_ipc_restore_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x990e7f19 is_skl_dsp_running +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xa1790e03 skl_ipc_set_pipeline_state +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xab00afea skl_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xb148beec skl_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xc217e159 skl_ipc_save_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xdc60005d skl_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xde3e15d6 skl_ipc_set_dx +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xea2205d0 skl_ipc_set_large_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00377e22 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x004e093f snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0104fca2 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0855caf3 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a8f0419 snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0cfe326d snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0eceb272 snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x109978d3 snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x141cc719 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x157d25f0 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x174c395f snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17bad9aa snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18106679 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1881bb6a dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a11cad8 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a2ee81c snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1dc15084 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f8dfe12 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x232f0e5b snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2369635a snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23d3ec91 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23d5d0a1 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2431a0b2 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26d46e53 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28d564d5 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2cac1ff4 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2cfdaf78 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d12f022 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3249f834 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33dc2324 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38c1ac49 snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x396975fb snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3dd1acc0 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f7c860c snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ffa3d67 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x413ec4d6 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42f0f350 snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43e7d06a snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4638d52e snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47ae5476 snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48129323 snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x486ec8dc dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48842c44 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4aa28721 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b5fd1b6 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c148da4 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4dd6cf0d snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4faca343 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57fae621 snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58e8a403 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5abacaca snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b30ea65 snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e771c70 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5eb9d19b snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x60846260 snd_soc_lookup_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6112f668 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63202373 snd_soc_remove_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63238bcf snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63389694 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x672c1ef7 snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x676bfbfb snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67ca971c snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6fff479a snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x706cba9d snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71524325 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71c63b72 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74190a3f snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74fd4f6b snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x771173fe snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7726ac48 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a1b7d51 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a3d7781 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f3da87a snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8175b25c snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8409e128 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8547e468 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85f40e0e snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87b59d38 snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8bd95798 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8de0c4d4 snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90e2132c snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x926bd5bb snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9272eaee snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x929cfc73 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9314f2bc snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x939347f4 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x962f3f4b snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96ca5dea snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x988f6770 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9939bcf8 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b5373e7 snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9caabc19 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ccb64c1 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9da474e5 snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9fb5dac7 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa064cae5 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa21063b9 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa5f31f4f snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa610e367 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa699cd1b snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7bf914e snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa95eb8ed snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xacb665d6 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xada41eec snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb2fedca2 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb30c9ac9 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb406815a snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb57091bf snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9526d5d snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb8f5cae snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe0f2bef snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe68e9c9 snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbeb46b73 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc02c1fcb dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc303e53e snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc379e95f snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4638ada snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4764559 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc49b8e91 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4e4039e devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7128682 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7666116 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca754b04 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcba0d3ad snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcda8b04c snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd32d6cd3 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd998ef81 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd9e4298 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde1be97c snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe208233c snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe258e94d snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3e15383 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5a5f6bf snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5f26633 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7d8400b snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea1fb739 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeaa5cb46 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb390821 snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec70ac82 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xedc3f285 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee618b43 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2c0a328 snd_soc_add_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4ae43ef snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf53053f4 snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5eec29a snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6be6e4f snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf7bbfa46 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf87d463f snd_soc_tplg_widget_remove_all +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa6931d1 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb66982a snd_soc_tplg_widget_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfcf94647 snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfdcdeb28 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe37a7fb snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe89537e snd_soc_platform_trigger +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x22348497 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x24f7b27a line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x27e33183 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x28e56990 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x54dad910 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7a1a0b5b line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7e354ca6 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x829c10da line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xabcd8f0f line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xad983ea0 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb0bd7b9d line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc087e75c line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd80d5a88 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe90fd0c4 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf7a5b1b9 line6_pcm_release +EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x08003b2f i915_bpo_gpu_turbo_disable +EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x0d97d346 i915_bpo_gpu_raise +EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x358a54ae i915_bpo_gpu_busy +EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x451432c2 i915_bpo_gpu_lower +EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x7d4de94c i915_bpo_read_mch_val +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x035b3a19 rsi_default_ps_params +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x0b8af985 rsi_init_dbgfs +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x1e678bb2 dot11_pkt_type +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x206a2bc3 rsi_deregister_bt +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x3b657e26 rsi_hal_device_init +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x40725363 rsi_send_rx_filter_frame +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x41f45ef5 ven_rsi_mac80211_detach +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x437447f4 rsi_hex_dump +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x45ca198c ven_rsi_dbg +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x463ef029 rsi_hci_detach +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x563d7f77 rsi_hci_recv_pkt +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x5e0fdf3d rsi_remove_dbgfs +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x7e8f7d87 rsi_send_rfmode_frame +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x866db18f ven_rsi_91x_deinit +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x932ca0ef ven_rsi_91x_init +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x9f2a2788 rsi_hci_attach +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xa94efeea rsi_config_wowlan +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xd8e77311 ven_rsi_read_pkt +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0xf6e772c3 irq_bypass_unregister_producer +EXPORT_SYMBOL_GPL vmlinux 0x0018fe49 __netlink_alloc_skb +EXPORT_SYMBOL_GPL vmlinux 0x0034f3b6 xen_has_pv_nic_devices +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x006c4abf dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x0082878e fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x0082f454 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x0086e787 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x00ce8128 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x00d4be75 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x00e427b9 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x00ea1b01 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x00f0fa5e crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x00f10363 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x01091c47 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x0109d998 gdt_page +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x012dc41c unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x013fdb8f sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x0172f2ae wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok +EXPORT_SYMBOL_GPL vmlinux 0x019ad7cd hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x019c868e rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x01bf673a hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x01c57047 acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0x01c7fae3 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x02022aa8 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x0203ef05 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x02040675 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x020f27d8 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x0254dd08 use_mm +EXPORT_SYMBOL_GPL vmlinux 0x02579e45 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x025f0325 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x026211e2 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x0267f213 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x027e2e3f task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x029084c7 btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x029c93c2 edac_subsys +EXPORT_SYMBOL_GPL vmlinux 0x02b74582 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x02b7f9a4 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x02c4f3e4 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x02d23a7b sis_info133_for_sata +EXPORT_SYMBOL_GPL vmlinux 0x02d818d6 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x032a1855 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x0361ce34 acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0x0365b728 xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0x0392648d blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03bf7cdb da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x03bfbc98 phy_init +EXPORT_SYMBOL_GPL vmlinux 0x03c22609 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x03c55157 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x03fd01a4 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x03fdbd1e crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x0405c0de dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x041a9639 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x042a31a8 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x043b935f __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x0444a808 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x044c5c8f kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x044e05d1 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x04607da2 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x0485655f amd_get_nodes_per_socket +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0x04a8c179 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x04c1501f of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x04c3f2c1 gnttab_empty_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04caf886 blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x04e130da platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x04ecfb5c set_memory_wt +EXPORT_SYMBOL_GPL vmlinux 0x051239e9 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x053494cb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x05388cb2 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x0538c38a ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x054803df spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x05484689 swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x055f2d37 wm8400_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x0563e4a4 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x057ffe26 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x0592f041 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x05c4831d virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x05d3c5fd fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0x060bdd0e xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x061e47cf modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x06222a7a rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x0634e614 dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x06454971 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x064cdc7b usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x064ce65c ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x0656a0f7 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x068e148b extcon_set_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x06a84a67 arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio +EXPORT_SYMBOL_GPL vmlinux 0x06de9060 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x07251663 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x0759e32e gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x0763f8ca nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x0772ed17 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x077a7b5d md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x077eedf8 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x0788adfc blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x0788b634 irqd_cfg +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b28849 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07d67acb ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x07f4fb9d xen_swiotlb_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x0800c365 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x081106cf ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x0822fb82 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x08360509 tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x0853863c srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x085509a0 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x088b98af regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x089cb5ed pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x08a7592f devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x08aa4010 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec +EXPORT_SYMBOL_GPL vmlinux 0x08c7e3f5 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x08de3fbd blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x08e73696 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x08f24a21 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x08fb916f da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x0921d60a platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x094f7083 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x0961aa2a seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0x096b2e8b pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x096c0c3b ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x09869d9a usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x098e12ba ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x0a3dfcd9 tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0x0a4fde00 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0a6a09a7 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x0a77076c xen_swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0a845c41 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x0a8d21ae list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x0a8dc27e usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x0a93cf6b pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x0a94281c ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x0ac2308e firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x0ac637b3 inet_csk_compat_setsockopt +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b1fbc55 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b7e1416 xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0x0b9e3096 fpu__save +EXPORT_SYMBOL_GPL vmlinux 0x0b9feb53 tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x0ba0dcdd regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x0bd726ae ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x0be25a17 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c00ea74 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c186753 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x0c227a4c dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c71f738 xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range +EXPORT_SYMBOL_GPL vmlinux 0x0c80e3fe efivar_init +EXPORT_SYMBOL_GPL vmlinux 0x0c873fd2 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x0c88dabf regmap_fields_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0cd05e81 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x0ce0126a __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0x0cef466f tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x0cfa8ef2 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0d18b892 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x0d327303 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x0d42f411 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d51f037 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x0d6a4419 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x0d6aa401 pinctrl_utils_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0da3016f gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x0dba3445 rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0x0dccb01a blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1b38 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de3b019 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x0df925f6 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels +EXPORT_SYMBOL_GPL vmlinux 0x0e04dcdf ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release +EXPORT_SYMBOL_GPL vmlinux 0x0e31cfcc relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x0e5058b2 i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0x0e507884 acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x0e5bf407 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x0e5e07da trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x0e67fdd4 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x0e7f4f87 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x0e9acf27 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x0ea41f64 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x0eb1b216 devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x0eb43a76 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x0ebab034 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x0ec0651b pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x0ec4e33b __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x0ec58c80 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x0ec69353 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x0ecf823a static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x0ee01453 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x0ef1107e dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x0effc1c3 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x0f012044 __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x0f170383 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x0f26f8a8 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0x0f30f035 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x0f312e86 cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0f316a0d digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f33d080 wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0f35c1b8 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x0f5c5e9c bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x0f6ec1f0 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0x0f739404 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f95da9c nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0fa138de xen_hvm_need_lapic +EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi +EXPORT_SYMBOL_GPL vmlinux 0x0fd161f1 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x0fe2d570 xenbus_directory +EXPORT_SYMBOL_GPL vmlinux 0x1001a241 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x101e2399 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x102589df devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x102c0591 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x10574719 put_hwpoison_page +EXPORT_SYMBOL_GPL vmlinux 0x1059ce4e flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x107dad8e led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0x109a0831 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x109cc1d3 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x10be69b1 device_add +EXPORT_SYMBOL_GPL vmlinux 0x10e65ae9 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10f4e491 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x1109f09c serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x110ba97a ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x1111ba85 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x1126bf34 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0x1150206f crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x1167b282 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x117c7305 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x117c92f9 blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0x1196f921 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x11aa102e devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x11bd8626 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x11caddc7 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x11e57569 xen_swiotlb_sync_single_for_device +EXPORT_SYMBOL_GPL vmlinux 0x12012dd4 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x120cb535 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x123a67ad scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x123d3c0c regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x123fc0db unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x12483e58 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x125b6dad usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x12644708 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x12a9680f pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x12c28cfa sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x12d0f0b5 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0x12e6d13a rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x12ea3c14 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x13013945 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x130146fb driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x13053ba4 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x130a7f6e driver_register +EXPORT_SYMBOL_GPL vmlinux 0x130bd388 check_tsc_disabled +EXPORT_SYMBOL_GPL vmlinux 0x130de01d trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x131a2cb3 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x132ecbc1 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x133fa60e phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x134bff42 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x1361ade1 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x13936b53 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen +EXPORT_SYMBOL_GPL vmlinux 0x13ae73c1 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x13b89dee pinctrl_request_gpio +EXPORT_SYMBOL_GPL vmlinux 0x13cabc43 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13f51fc3 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0x140c987f vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x142807d2 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x142f63e4 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x14791e6c register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x149f09ad irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x15010e1f arbitrary_virt_to_machine +EXPORT_SYMBOL_GPL vmlinux 0x15118765 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x15247f12 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x1530e82c gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x15325776 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x1534106d pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x153b519a scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x155d7130 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x158a0a3e ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x15b0606e e820_any_mapped +EXPORT_SYMBOL_GPL vmlinux 0x15ba3629 bpf_prog_get +EXPORT_SYMBOL_GPL vmlinux 0x15e4b4b8 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x15f1bb18 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x15f93bde pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x15f9aa1f dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x15fa6915 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x160acef9 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x162bf367 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x163297ab __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x163690e2 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x164e157a bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x165246d6 sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x169301d2 usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0x169a6e1a sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x169f2f5b bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x16dd32e2 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x16e215c6 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0x1709d3ba pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x171d62c4 call_filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x17340627 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x173b894d driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub +EXPORT_SYMBOL_GPL vmlinux 0x17799660 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online +EXPORT_SYMBOL_GPL vmlinux 0x179a5991 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x17a8360c devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x17af3477 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x17c087b9 usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0x17dea724 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x17e1a3ac pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x17eb45ce __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x17f3eabd set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x1829b9ed hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x1835da8d xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x1841ff95 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x186c74aa net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x18cabdd3 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0x18dcc4a4 gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0x18f5e50e arch_apei_enable_cmcff +EXPORT_SYMBOL_GPL vmlinux 0x18f83fab gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x19119803 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x194d812f pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore +EXPORT_SYMBOL_GPL vmlinux 0x197c9d16 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x1987dab4 rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19b9e40c relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x19bb8eba pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x19e08e01 percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0x19e4fede ping_close +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x19f9e5b4 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x1a0520ca pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x1a063be6 set_pages_array_wt +EXPORT_SYMBOL_GPL vmlinux 0x1a0b77f4 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1a1aad80 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x1a3ab27b rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x1a42b68e rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x1a4c489d security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x1a4d7cb5 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1a699bc4 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0x1a6ce4db platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x1a726fe5 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x1a7624a8 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x1a8db718 cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x1a8ee9e5 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x1a995dc1 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x1a9cb062 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x1ac0e2b3 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x1ac1171f tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1ac55dc9 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x1aca901d crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1aecf1d1 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x1b06f4e0 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x1b38b3c6 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x1b5452f9 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x1b86d36e usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b93377c console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1bbb9f48 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bcc31c8 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x1bddfecf devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1c01ad91 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x1c0c2485 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x1c14e3f7 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x1c2f2e33 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase +EXPORT_SYMBOL_GPL vmlinux 0x1c6417a4 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x1c650049 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x1c654b23 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x1c6660c7 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0x1c6bde75 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x1c73eeb6 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c899130 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x1c8fe88e iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x1cb7650a __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x1cdb2147 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x1ce26736 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0x1cf8602d clk_debugfs_add_file +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d2e9f19 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x1d3eacec usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0x1d459685 xstate_size +EXPORT_SYMBOL_GPL vmlinux 0x1d52c47d devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x1d652735 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x1d6996ee mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x1d739e1c xen_set_callback_via +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x1d7cb586 clk_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x1d8714f8 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x1dbd544f serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x1dc15316 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x1dc84e93 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x1dcecf48 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x1def880e bind_interdomain_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x1e000879 hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0x1e0d7a5e serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x1e44fd8c dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e5f7ec2 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x1e68ce14 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x1e7042f3 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e8663fd devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e951548 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1eabc56a __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1eac4d28 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebac2bd getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ecc368a cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1ecd18c6 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x1ecf28c5 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1ed5119d regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x1edc21cb hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x1f169100 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x1f186217 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x1f1988f7 hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x1f372291 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x1f3a7bb5 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1f962d8a request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x1fac2832 ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x1fb29377 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x1fc544d0 trace_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0x1fd34b3a debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x1fe2e475 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x1fee7e9e ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x1fef0dcb regmap_update_bits_check_async +EXPORT_SYMBOL_GPL vmlinux 0x200cc695 __free_iova +EXPORT_SYMBOL_GPL vmlinux 0x203a66c3 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x203d134a lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x2076a45a find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x207f2ede hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x209ec764 xen_event_channel_op_compat +EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x20be22ba rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x20c73524 wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0x20f752f7 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x20f935a0 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x2108ed92 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x2140a0e7 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x214ffaec ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x218d65f9 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x219c8d60 ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21b7e436 __nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x21bfaf13 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x21c56fec cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x21c71c62 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21dcea12 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x22240afd sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x222e4647 iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0x223936b7 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x223ff585 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x2240b197 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x22530d05 dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0x2285510c device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x2299ec81 perf_assign_events +EXPORT_SYMBOL_GPL vmlinux 0x229edaaa power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x229fad27 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x22a18df5 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x22b84034 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x22bca852 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x22d76641 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x22f2b136 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x2303aa0e component_add +EXPORT_SYMBOL_GPL vmlinux 0x2304dea8 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x231ca14e usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x233b20f6 fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0x23620dbb user_update +EXPORT_SYMBOL_GPL vmlinux 0x2366a2c0 errata +EXPORT_SYMBOL_GPL vmlinux 0x237a0d33 xen_swiotlb_dma_mmap +EXPORT_SYMBOL_GPL vmlinux 0x238245b5 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23da0263 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x23dcb506 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x23e31407 system_trusted_keyring +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x23fed2b0 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x24011e14 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x240f04a3 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x24491f7d tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x2449ac19 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0x24565e02 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x247c4f58 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x248affdf dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x249102be kick_process +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24bb05cd irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x24c7698a xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x24d10995 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f45195 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x250bbb45 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x25268c32 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x252c09be injectm +EXPORT_SYMBOL_GPL vmlinux 0x252ef50e extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x25425917 acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x2545c170 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x2567768e skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x256e45af i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x258ad3ef tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x258f7ebb gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x25d3db19 security_kernel_fw_from_file +EXPORT_SYMBOL_GPL vmlinux 0x25d700b8 gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0x25dbf705 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x25dfef8d __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr +EXPORT_SYMBOL_GPL vmlinux 0x25f6c56f iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x25fa0d3b l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x25fa5908 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x26006b48 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x2601de2e rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x2633b731 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2634a3e1 pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x263e4192 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x2643baef led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x264ae4c6 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x265b7b15 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x267e9027 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x26965721 slow_virt_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x269bb076 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x26ad6577 irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0x26b3c701 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26ce0665 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x26f382f2 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x274555a9 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x2768e7f3 dax_clear_blocks +EXPORT_SYMBOL_GPL vmlinux 0x276aab92 xen_swiotlb_set_dma_mask +EXPORT_SYMBOL_GPL vmlinux 0x277e49f2 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x278754b0 save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0x27884207 led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x279cb985 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x27c0c4be eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27cb1269 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x27dd7abf wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x27f04e6e gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x27f4a676 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x2800ed09 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x2800fdb5 regmap_fields_write +EXPORT_SYMBOL_GPL vmlinux 0x28084a7d reserve_iova +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x28302a80 xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0x283160c4 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x283dc496 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x28794588 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x28aa4a89 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x28b3e928 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x28bc583f regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x28d26c6d __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x28ded88f ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x28e514bf acpi_dev_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0x28e70667 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x2924534b param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x2932427a irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x2933cfb2 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x294bc1a5 arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x2950b1bd tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x29653c93 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x2965a26b crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x298f98a0 smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x299efdb6 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x29a5aba2 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x29aa13df led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x29b56f81 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x29b7ed42 __sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x29bfb141 pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0x29d11ff4 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x29ea222a da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29fa16d9 acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2a5cb540 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x2a66fbea cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a78570c hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x2aa5cba2 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x2aa79bb6 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x2ab114df __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x2ac9484c rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x2acbc83f tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x2ad67252 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x2af63321 acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0x2b116fc8 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x2b1fa505 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b286805 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x2b477aad netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2bc0c9d0 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2bc730fd usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0x2bfc6d79 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x2c14a782 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x2c1f7908 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c2d3e79 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c331921 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x2c53839e ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x2c58a808 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x2c6fa0e0 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x2c7d9c64 xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c7e5fab swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0x2c8f130e pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x2c9289e2 input_class +EXPORT_SYMBOL_GPL vmlinux 0x2ca5a9e4 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x2cb25c43 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x2cc2ec63 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x2cd0b218 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2cee9968 extcon_unregister_interest +EXPORT_SYMBOL_GPL vmlinux 0x2d0bda44 xen_swiotlb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x2d0c7c2e usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x2d111d22 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x2d11485c virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x2d16b29e regmap_update_bits_check +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d4fe8bf fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d5b0848 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x2d81a003 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x2d94d713 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x2d9f2ce3 sched_clock_idle_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x2da282da aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x2db35afa rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x2dd05401 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x2de9696f gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x2deee045 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x2e0dcb3b klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0x2e1da9fb probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2924ed tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x2e2df7f4 irq_remapping_cap +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e3bd528 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x2e490dc7 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x2e506e16 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x2e519600 ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x2e88780e pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x2e9c0c03 bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0x2e9d2617 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2ede2bb5 swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x2efc1076 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f1aa710 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x2f212f21 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x2f2a5224 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x2f360412 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f4c1ceb devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f76285d __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x2f7c20a6 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0x2fb7bada generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x2fd44e62 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake +EXPORT_SYMBOL_GPL vmlinux 0x2fdfbd73 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x30119c69 xenbus_grant_ring +EXPORT_SYMBOL_GPL vmlinux 0x30216080 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x3025619e usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x302e8c61 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x30635782 cpu_has_xfeatures +EXPORT_SYMBOL_GPL vmlinux 0x30757a2e led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x307fba32 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x3089ce1e inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x308aedd2 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x3094c355 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x30ad187d crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x30ba7a98 acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x30c7a595 dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x30cff1bb wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0x30f7fa68 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x30fdab26 blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x310197b5 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x310560f7 clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0x311c2dee sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x3120ab27 pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x313b5a75 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x314fad93 efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0x316bdff3 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x31929029 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31cff85d fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x31d1e9ab xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0x31e3eb37 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x3201bd0e dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x32114450 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x3214bc77 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval +EXPORT_SYMBOL_GPL vmlinux 0x3226249e tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x322a28bf usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x32365cff devres_release +EXPORT_SYMBOL_GPL vmlinux 0x325e677c gnttab_grant_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x32690c72 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x3269a6c0 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x326fbfee usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x327b7488 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x328b8ef9 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x32963abc platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x32a77bad device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32dde084 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x32e3b076 mxcsr_feature_mask +EXPORT_SYMBOL_GPL vmlinux 0x32eda4a6 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x331cb115 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x3333b581 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x333927e9 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x333a7831 percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x3359c07c blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x336234a1 xenbus_unmap_ring +EXPORT_SYMBOL_GPL vmlinux 0x3362b03c xen_p2m_size +EXPORT_SYMBOL_GPL vmlinux 0x33655159 xen_pcpu_hotplug_sync +EXPORT_SYMBOL_GPL vmlinux 0x3368a4dc pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x3378725a serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x33804147 efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0x3389e4c2 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x339dbbd9 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x33ab9e1c kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0x33ac6abe tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x33b87dbd phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x33b96e5d apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x33c4eb98 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x33f99f25 i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0x340eb2b8 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0x342dac9a ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x3443b755 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x344d0bd6 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x34507c22 clear_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0x3451ce4b kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x346113d1 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x3461a43c usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x34915a4c pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34a8da5f __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x34b30ce4 devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x34b482f0 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x34d2b434 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x34e49be3 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x34edd635 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x3500bdef usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x35026c52 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x35124f07 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x352650ee gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0x352b6aac scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x353e93d9 tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0x3547cbfe usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x354fec56 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x357e2a8c i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35910f72 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x35a7027c phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x35b50d2a platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x35bf2acd nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0x35c2f089 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x35c638d9 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x360cd5ec pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x366b9703 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x368f1fea static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x36905d60 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x369c5b0e clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36a7f5ed sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x36b1aac9 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled +EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x36c1794d ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x3732d909 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x374971fe xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0x37571c6f key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x3795a8bb register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x37da8929 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x37ff7a43 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x380798d3 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x38158737 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x3862cce5 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x386369a9 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x386997d4 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end +EXPORT_SYMBOL_GPL vmlinux 0x38866889 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3891e066 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x38c9ce6b clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38f9df82 wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0x38fafc5a dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x39104880 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x392fe739 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x394c4d62 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x39512c10 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x39597d25 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x39802b67 rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x399ad7a8 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x39a1a062 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x39f36e96 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x3a08fb8b sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x3a0c5647 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x3a197f64 xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a290f97 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x3a38dc65 memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x3a420411 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x3a4e054f device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a512a14 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a5c2b18 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn +EXPORT_SYMBOL_GPL vmlinux 0x3a8b4440 acpi_subsys_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x3a960378 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aafee4b klp_disable_patch +EXPORT_SYMBOL_GPL vmlinux 0x3ab8317d ref_module +EXPORT_SYMBOL_GPL vmlinux 0x3ab8a4b9 xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ad0e201 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x3b00fb2a irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x3b2693bb percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x3b3991d8 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x3b458c00 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3b4ba8e3 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x3b547bc9 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x3b7145bb apei_exec_read_register_value +EXPORT_SYMBOL_GPL vmlinux 0x3b7c4779 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x3b92b1eb tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x3b9718da wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x3b9bfc8b ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x3be86a54 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3beb7ae7 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x3c0a43d5 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x3c112ec6 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x3c2badd6 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3c3f73a8 blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x3c78287f pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3c7a8d48 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x3c7d4cd3 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3cb29369 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cef79b6 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x3d203f7b unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d5d0a15 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x3d5f392d acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x3d6b1d5b ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x3d7ea99a gnttab_grant_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x3d863d17 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x3da67a23 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x3dae6404 unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x3dc795e8 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3df64137 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x3dfc436e percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x3dfd01b3 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x3e1ef78a pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e3cd018 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x3e5384de devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x3e54b244 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e611fdc con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x3e68bd9e ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x3e6d4fe8 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x3e6dc296 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e76cd00 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x3e7d7546 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x3e8bdeb8 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x3ea1ebb5 dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3ec1321b is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0x3ed554fa devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3ed589bf devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f04450c i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x3f1b5f65 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x3f229c4c oops_begin +EXPORT_SYMBOL_GPL vmlinux 0x3f31c307 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x3f749f0d skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0x3f84d4c9 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x3f93f20f crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0x3faba502 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x3fc74aef intel_svm_unbind_mm +EXPORT_SYMBOL_GPL vmlinux 0x4004205e md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4009cb45 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x4010b80f pmc_atom_read +EXPORT_SYMBOL_GPL vmlinux 0x401e84c8 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x40356d20 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x404da1fe queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x40671255 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x406e9373 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x4081c31d ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x408212ba hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40de46cf ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x40e7ddd5 __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x40ef495f tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f73430 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x410691b8 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x4106e96a posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x41114a8e ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x41177fc0 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x4125e8ca blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x41765870 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x41835d60 device_create +EXPORT_SYMBOL_GPL vmlinux 0x418710e7 mce_inject_log +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x4213a51a efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x42324d32 ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x4255026d kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x42591ba5 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x425e49dd udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x427d5c68 register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x427de547 pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x42a21f5e led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x42b3e22a devres_find +EXPORT_SYMBOL_GPL vmlinux 0x42bb8d80 perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0x42c0c9b3 efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0x42ce92e0 ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x42de21dd mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x4319b991 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x431bc4cd raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x43480fa7 thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x4378416c regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4383903e dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x4395953e usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x43fa2970 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x440c777b ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x441fa356 irq_ts_save +EXPORT_SYMBOL_GPL vmlinux 0x4428f0a2 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x443defee register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x446e3c47 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x449cf6ab device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x44b10ada perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x44b85596 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44d0f90f blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x44d3bcd2 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x44e96da5 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x450fb522 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x451ac048 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x4527a1e8 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x4533ec38 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x4539fe18 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state +EXPORT_SYMBOL_GPL vmlinux 0x45466d86 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x454f1cb4 efi_query_variable_store +EXPORT_SYMBOL_GPL vmlinux 0x455876e8 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x4572c2c4 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x458859b9 spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0x4593ba00 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x45b7d6a0 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x45bd429d gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x460247e6 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x460f31aa rodata_test_data +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x46434934 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x465270ae mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x465e144f netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x4663d883 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x4678157d pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46b70eca iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x4743fc1d devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x47447cce ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x47649534 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x4779f4d2 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x4789d000 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x479e2c6e regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47b8de82 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x47be2669 pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0x47c4f7fc nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47e02ebc usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x47e51f94 __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x47e6a08f of_css +EXPORT_SYMBOL_GPL vmlinux 0x47ea5cce xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x47ed5009 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x47fb8a99 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x4805229c unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x4811d532 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x4832b211 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x4838cdbc xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0x4842719c rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x48520747 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x48682db9 perf_guest_get_msrs +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x4875d18b ping_err +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x4897995b task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x489c8742 arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x48b3fd4a xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x4909fc8d l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x490a8df6 x86_platform +EXPORT_SYMBOL_GPL vmlinux 0x4981be30 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x4984bc4c regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x499034f5 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49b16057 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x49b481bd xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x49e4eb33 pv_info +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4a02ab07 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x4a3c3cf9 microcode_sanity_check +EXPORT_SYMBOL_GPL vmlinux 0x4a3c889d pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x4a44b614 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name +EXPORT_SYMBOL_GPL vmlinux 0x4a5b5d6a wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4a90160e bprintf +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4abdbae8 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x4ac3e61f pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x4b06869f virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x4b211246 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x4b33c81b xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x4b3965aa xen_swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x4b7465fb pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x4b7be658 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x4b8275f2 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x4b88a3e0 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x4bb94dee crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0x4beddbe1 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4bf1ed8b dma_request_slave_channel_reason +EXPORT_SYMBOL_GPL vmlinux 0x4c0b11cc wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4c231e47 dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x4c2a472b __static_cpu_has_safe +EXPORT_SYMBOL_GPL vmlinux 0x4c34c274 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x4c4fa0aa cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c645f9e static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4c78ce4d regmap_field_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x4c917d1f tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x4ce2df70 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x4cea7f58 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x4cf4bcda transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d545bc3 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x4d57fc04 blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0x4d70ff85 devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x4d81ca58 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x4d8577f3 apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x4da0bf58 raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0x4dbee430 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4e042286 extcon_register_interest +EXPORT_SYMBOL_GPL vmlinux 0x4e06e294 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path +EXPORT_SYMBOL_GPL vmlinux 0x4e45d555 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x4e57723d apei_read +EXPORT_SYMBOL_GPL vmlinux 0x4e5f3efa pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4e74e625 gnttab_batch_copy +EXPORT_SYMBOL_GPL vmlinux 0x4e783c89 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x4e790907 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x4e804ba9 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x4e97a832 tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0x4ea8074c usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x4eaf6cfd bus_register +EXPORT_SYMBOL_GPL vmlinux 0x4eb08374 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x4ebe9cb0 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x4ee58c71 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4f05925c devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f3c62eb ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x4f3fef7d trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f81b531 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x4f93621b zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x4faf8fb3 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x4fb383de ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4ff1e5b3 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ff5fcaa crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x50098cd4 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x5025a5ac blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi +EXPORT_SYMBOL_GPL vmlinux 0x503aa000 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x503ebba9 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x50432fdc regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x50433639 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0x50596d22 bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x5062aefc regulator_can_change_voltage +EXPORT_SYMBOL_GPL vmlinux 0x507de8c6 add_memory +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50920811 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x50c7a482 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x50d1f870 pgprot_writecombine +EXPORT_SYMBOL_GPL vmlinux 0x50db3980 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50e937df ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x50f0c871 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x511459a7 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x5119ffad clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x512b1d19 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x5133dab9 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x513ccc63 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x5143f6a3 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x516992fd wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x517e8239 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x51859c28 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x518c217c gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq +EXPORT_SYMBOL_GPL vmlinux 0x5191bd3c efivar_work +EXPORT_SYMBOL_GPL vmlinux 0x519504f0 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x51c96b5f pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x51e26b08 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x5209f4df acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL vmlinux 0x52131d59 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x522f538b tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x523db296 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x52754995 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x528f8d6b fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x52903271 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x529733f6 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x529dd3f4 debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x52b3d110 crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x52c29e2f palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x52c4c3dc adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x52c4dddc proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x52cc038f rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x52d8c375 clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x52e9538f fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x531caa0d pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x532039af register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x532f49b6 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x534a16c8 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x53541fa3 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x535b33d2 blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x5361e7b1 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x539f13da device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late +EXPORT_SYMBOL_GPL vmlinux 0x53a11be7 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x53b8ec43 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x53cbddeb pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x53d0af76 nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x53da37d7 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x53f35dbe tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x541231f4 tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x5431c811 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x545cd49c arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0x545ee955 fpu__activate_curr +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x5460f4df crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x5463d0bb regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x5475fab2 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x5485dcfa __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54a29dae watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x54ac6a13 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled +EXPORT_SYMBOL_GPL vmlinux 0x55181725 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x554271cc rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x55526907 xen_features +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x557027f4 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x5588c7e1 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x558ecb61 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x5593d715 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x55ac152a driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x55b8e2c2 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x55e5218d sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x55eb90e8 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f52127 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x55fc87eb arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0x560abccc wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x56300a79 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x563102b2 acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x563ae0c2 __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x56482bc0 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x5651bb7e nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x5654f836 erst_get_record_id_next +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0x56947347 dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x56974180 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x56a7a333 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56d7426b sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56f39d37 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x5705a391 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x57198934 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5719e669 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x572e2909 usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x57530470 __sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x575c5f94 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x5779d445 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0x578a30ad crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57c3e0d2 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x57e1c003 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x57ead3f0 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x57f3f81f sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x57f41f0f mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x57f5274a debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x57f8062c acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0x58110346 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x5813a189 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x5835338e subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x585704ab aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0x587bd46f alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x589924bb tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58a5e7a8 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x58c9c906 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x58db9633 agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0x58f8b910 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x590246fd find_module +EXPORT_SYMBOL_GPL vmlinux 0x590d5566 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0x59367333 xen_remap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x59409b4f usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x594a0eba wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0x59688cf7 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x59828a5b alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x59909e73 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x5995a5a8 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x59aa6dbb spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x59abe37a tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x59b0882b md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59b9f235 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x59bcfda9 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x59d570e9 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x59db3c98 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x59e0458d nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x59e17ccc regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x59e36b68 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5a03c730 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x5a171008 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x5a2b1b67 gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5a35d82e usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x5a4460e3 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x5a50c823 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x5a73549b usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5ac877e5 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x5aeec53a nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0x5af03a28 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5b13e53b netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x5b1899f8 free_iova +EXPORT_SYMBOL_GPL vmlinux 0x5b380c54 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x5b83b36e uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x5bb4d519 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x5bb73368 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x5bce8ca1 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bdbee8a pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x5be5a88c ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x5beefea6 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x5c143f02 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x5c27801f bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0x5c47fd7b ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c65e6f4 acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker +EXPORT_SYMBOL_GPL vmlinux 0x5c67cf89 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x5c8d7f62 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cc129cc scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5cd78169 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x5ce56d4a max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x5ce7bf3b input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x5ce7eb3f __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x5d0e73c5 pwm_set_polarity +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d193502 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x5d2b968b anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x5d2de0ad pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x5d3537a1 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x5d366dec gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x5d42bea7 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x5d5ca512 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x5d5ef138 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x5d7fa30f raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x5d8d97f8 __module_address +EXPORT_SYMBOL_GPL vmlinux 0x5d932c95 _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid +EXPORT_SYMBOL_GPL vmlinux 0x5dc719ac ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x5dcd7160 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x5dd0f6a7 __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0x5dd9f2ac blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x5de25d28 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x5dfdb07d pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x5e0831bc serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x5e219587 device_remove_property_set +EXPORT_SYMBOL_GPL vmlinux 0x5e3c89cc usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e6da803 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x5e70bd6f pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x5e8a02aa led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x5ea3fbdf clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x5ea8a054 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x5eaab96d regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x5edd8400 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x5eee2ea5 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x5ef9d207 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x5f12d200 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x5f226035 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5f49bc1d dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5f5aa447 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x5f6d1b1d gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x5f89d96f iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x5faf82d7 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x5fc27be9 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x5fc57d85 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5fd0e4f7 acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0x5fdcbd09 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt +EXPORT_SYMBOL_GPL vmlinux 0x5fe907b7 hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x5ff50674 cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x60238be0 blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x6051a105 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x605c340f lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x605d0da0 component_del +EXPORT_SYMBOL_GPL vmlinux 0x607cdbd0 wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0x60879664 acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6087d6dc ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x608a1c68 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x60930d37 save_mc_for_early +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60aa5cdc ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x60b08606 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x60cd73ed pv_apic_ops +EXPORT_SYMBOL_GPL vmlinux 0x60d50b24 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x60e1252b sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0x61577115 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x615b1616 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x615b4c40 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x616877a5 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x6172e954 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x617fb036 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x6188c3da da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x61a11ddd __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x61afce04 nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0x61cde409 acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0x61d20a08 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x61d48a1d dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x620ef2e4 crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x6214b16c pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x62237d6b srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x62283c0b dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x622a2eae __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x623803c8 hest_disable +EXPORT_SYMBOL_GPL vmlinux 0x624b660a tpm2_startup +EXPORT_SYMBOL_GPL vmlinux 0x625fcea3 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x62628ca3 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x627f7085 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x62a0145d devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x62a1c981 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x62a34b40 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x62a4ad18 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x62bd5a6d __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x62ef0bf0 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x6318d75f shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x6333072c gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x634637c1 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x635b0db9 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x635ec980 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0x638fe045 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x63e00b69 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str +EXPORT_SYMBOL_GPL vmlinux 0x63f14ebe io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x63f90b6c set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x63fdb64f __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0x6407b445 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x64081eb3 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6412dfc8 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x641d1de9 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x642aea92 sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0x64318593 acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x6431b7cf nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x644c7025 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x6453799f devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x645c838b __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x646b7ea9 rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x64749dfc pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x647f5865 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x6498a22b usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x64a466a2 set_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0x64a8ae76 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x64ac58c2 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x64b6565a pci_get_hp_params +EXPORT_SYMBOL_GPL vmlinux 0x64b7069e apei_mce_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0x64b8a2d9 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x64e80dfb freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x64ee1421 __remove_pages +EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x6536953b btree_last +EXPORT_SYMBOL_GPL vmlinux 0x655586fa md_stop +EXPORT_SYMBOL_GPL vmlinux 0x656ae987 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x658c8186 amd_get_nb_id +EXPORT_SYMBOL_GPL vmlinux 0x65981bb6 __online_page_free +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65d506a1 tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x65ea14f5 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x65f28a88 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x65f70357 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x6608a3ef pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x660a8606 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x660dee66 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x660ee6d4 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x665ecab0 pv_time_ops +EXPORT_SYMBOL_GPL vmlinux 0x666e1ddb regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x6673cf9c __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66fd265e regmap_write_bits +EXPORT_SYMBOL_GPL vmlinux 0x6719e366 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x67333136 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy +EXPORT_SYMBOL_GPL vmlinux 0x675ba9cb devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67968b28 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x67973bd7 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x67b802b6 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x67d5304d blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x67ea03bf perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x67ffb3dc crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x683c85ad __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x68489f99 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x685488ec crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x685ee377 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x68607302 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x68626879 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x68646a1c handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x689267d6 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x68a0ef23 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x68a1ff2c spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x68b111d1 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x68cebdd6 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x6919114e rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x6959790c usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x695fd06b sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x69bf4027 pwm_disable +EXPORT_SYMBOL_GPL vmlinux 0x69e536aa ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x69fb594d usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x69fcef81 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x6a0856e7 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x6a08c31c __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x6a10f384 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a592d4e udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a694462 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a936feb system_verify_data +EXPORT_SYMBOL_GPL vmlinux 0x6ab1b8bb usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x6ab32054 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x6abdfa3d shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0x6acad21f acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority +EXPORT_SYMBOL_GPL vmlinux 0x6b1d7448 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b2ef235 blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0x6b51577d relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x6b56da48 pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6bcc69b9 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x6bf1b90d dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x6bf5c4c7 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x6bf7984f transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6c042d59 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c0abea3 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x6c1251fd apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c6538df init_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c65ae60 xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0x6c79906a __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x6c7db967 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6cdb2005 extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x6cfc084c page_endio +EXPORT_SYMBOL_GPL vmlinux 0x6d08ddeb __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6d239bef cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d33757a pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x6d53ef0a sock_update_netprioidx +EXPORT_SYMBOL_GPL vmlinux 0x6d6b072f blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0x6d6b8b34 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x6d865e4e rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x6d91a0d0 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x6d957c51 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x6d9f3300 xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x6da4ede7 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x6da54fb4 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x6dab70b6 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x6dc5e0b9 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e0eaf85 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x6e0eef46 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x6e17bdda pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x6e18c542 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x6e272f00 pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x6e2c2592 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x6e34600d pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x6e393f0b wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x6e3ef4e9 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x6e460138 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x6e58ddf0 gnttab_end_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x6e6a2f35 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e85b00b local_touch_nmi +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e91340b acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x6e938603 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x6ea98361 ioremap_page_range +EXPORT_SYMBOL_GPL vmlinux 0x6ebe8259 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x6ec1b096 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x6ed4d20c acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0x6edcd348 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x6ef209c8 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x6f02efd9 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f2431ee crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x6f402ba6 acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x6f59ba6c __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x6f5ac2bb regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x6f9b4ec4 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x6fa8e34e raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x6fc0fef3 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x6fc89892 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x6fdcf31f irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6feb6001 extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x7027c76e crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x7029c830 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x70317e7b invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x7034ed49 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x7057293e acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0x705ec281 usb_string +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x708d8ddf irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0x709d8afe devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x70a789a2 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x70b11f7d ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x70bfcb54 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x70bfd694 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70ed5bd9 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x71094bde ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x712159d1 tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x7127f94d security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x7132696c single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x71359802 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x715f18b0 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x716d5536 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x71777ac6 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0x717f1828 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x71913f13 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71a1bfe8 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x71d78511 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71e7c7a5 crypto_lookup_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x720040e6 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7206b7b3 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x72252316 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x7238ab9a usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x7288d311 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x7296383e dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x72b644a9 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x72b678d1 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x72c3a397 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x72cf714d klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x72df3043 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x72fe73ef register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x73013896 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type +EXPORT_SYMBOL_GPL vmlinux 0x732260a1 crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0x73263b64 xenbus_dev_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7344e08f shake_page +EXPORT_SYMBOL_GPL vmlinux 0x73674689 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x7386edf9 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x73a2918a nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73a62718 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x73afb372 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0x73b1720e dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x73bb76dc dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73d93880 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x74027424 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x743159e0 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini +EXPORT_SYMBOL_GPL vmlinux 0x7449d0c5 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x7458e4a8 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x747da2d3 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x747e8a87 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x7481afc6 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x74876d6d __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x748e15cc gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0x74a3843e synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74b9478f ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x74b9f79b hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74c08941 kvm_async_pf_task_wake +EXPORT_SYMBOL_GPL vmlinux 0x74ca4083 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0x74deb10c used_vectors +EXPORT_SYMBOL_GPL vmlinux 0x74e493b7 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x74ee5af3 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x751d12c7 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x75283d6a eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x75414fde devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x754c4ce7 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x757b49d2 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x75815247 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x75869e30 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x75a585b9 flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75df7479 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x75fcef9e usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x7641ab4b regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x76437689 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x768fb920 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x76a65d0e pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x76c18a2f gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x76c6fe89 acpi_dev_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76da420c inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x76e57a8e __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x76ebb258 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x76f90a97 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x77027b55 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x7737ed87 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x775a6ef5 kvm_read_and_reset_pf_reason +EXPORT_SYMBOL_GPL vmlinux 0x7761d416 filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x777a23e5 nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x778b675a pmc_atom_write +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77affecc crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x77cc53b6 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x77d31318 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x77da9931 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x77ddaf3d iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x784973b6 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x784d640e ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x78575bee atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x7874b5ec unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78b8b793 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x78c2a7b6 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x78cc5bec hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x78d02e2d device_attach +EXPORT_SYMBOL_GPL vmlinux 0x78d80aca policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x78f21cf6 get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x795c92e3 efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x797f5779 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x7985239d sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x798d6459 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss +EXPORT_SYMBOL_GPL vmlinux 0x79bb44f3 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x79c3cc49 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x79c87977 dax_fault +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped +EXPORT_SYMBOL_GPL vmlinux 0x7a01d993 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x7a093833 set_memory_array_wt +EXPORT_SYMBOL_GPL vmlinux 0x7a164eb8 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x7a20829f md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x7a43efb5 single_release_net +EXPORT_SYMBOL_GPL vmlinux 0x7a5e3a3d ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x7a782de7 split_page +EXPORT_SYMBOL_GPL vmlinux 0x7a7c6c92 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7ab35493 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x7ac8e5b0 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x7ace6f69 pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0x7ad700c3 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x7ad9fafa devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x7af95716 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x7b0c6762 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b1a5ccf regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b202401 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x7b307b1f splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x7b3e0cac class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x7b3f5d2d inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x7b5a7486 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x7b67b19d xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0x7b70ed5c pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x7b7a6424 get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7c004e17 user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x7c13a19d iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x7c1722f6 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x7c2064c2 msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x7c40de53 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7c9ef889 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x7cab1185 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cd8c6e5 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cedf677 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d0456c4 pin_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x7d0e1d95 hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0x7d36d6a8 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x7d467dc7 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x7d4b8958 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d9c2402 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7db32284 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x7dcdc93f __tracepoint_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0x7e2f9f7f irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x7e412b70 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x7e63d5f7 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e661239 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7ea1a2bc probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x7ebfbe71 tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x7ed700ac get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x7f13d491 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature +EXPORT_SYMBOL_GPL vmlinux 0x7f29e9ab __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x7f3658e6 fpstate_init +EXPORT_SYMBOL_GPL vmlinux 0x7f5c4a5f regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x7f739248 crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f85abbb pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0x7f8a9129 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x7f9f6be8 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x7fa54a50 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x7fb806c7 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x800ada01 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x8012553a ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x80156244 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x801656cf nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x801917a4 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x80261072 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x804c07bb of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x806ba4b3 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x806f5710 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x80753ea0 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x809529fd alloc_iova +EXPORT_SYMBOL_GPL vmlinux 0x80960aa8 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x80c04d98 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x80c6015b handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80d8d96e sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x80fd4aee regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x81086b5a __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x8119c524 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x812a9be9 dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x815084b5 acpi_dev_gpio_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x8151b1d6 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x8152e111 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x81897657 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x81a84515 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x81cd3f33 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x81ee5caa mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0x8224b593 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x8235f5f6 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x823c2631 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x823c9e8a rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x823d5091 efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x825ea7fe clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x8284b859 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x82991e0d acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x829e0c3e vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x82b0d1e3 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x82c1da30 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x82c6a57c regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82dbec19 erst_write +EXPORT_SYMBOL_GPL vmlinux 0x830f24b0 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x836666ce alarm_init +EXPORT_SYMBOL_GPL vmlinux 0x83746945 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x83764aab inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x83b4d5bf irq_find_matching_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x83ba5fbb hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x83cf4dd9 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x83f21ec6 regmap_field_write +EXPORT_SYMBOL_GPL vmlinux 0x8409fe09 tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x841861f3 acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x841da5ed subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x8427a6d3 xen_swiotlb_map_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0x8429eed5 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x842cab77 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x84368bed __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x846e0381 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x848f8f50 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x8490d7cc gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x84a9ca7f virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84e3b24a fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x84e7855c register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x84e7a70d pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x84f98752 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x84fc9e91 blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x84fdb0a4 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x8500f247 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x850283db security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x8508891b sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x85375c19 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x853b49b6 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x854aad8e fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x855059ae pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x8559e4fe regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x85613a90 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x85710364 acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0x859875b7 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x859a6dc3 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x859aea9a xen_set_domain_pte +EXPORT_SYMBOL_GPL vmlinux 0x85b82f1e component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x85ba86aa replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85cb2c45 xen_has_pv_devices +EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq +EXPORT_SYMBOL_GPL vmlinux 0x85ed6390 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x861181c7 i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x862f6d76 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x864058ee wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x864146a6 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x864a2d97 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8654be58 hv_remove_vmbus_irq +EXPORT_SYMBOL_GPL vmlinux 0x865b7928 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq +EXPORT_SYMBOL_GPL vmlinux 0x8666a7c5 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x86819bc6 irq_ts_restore +EXPORT_SYMBOL_GPL vmlinux 0x8683ea9c ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x86849bf9 gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x86a378aa pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0x86a51007 gnttab_end_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x86ae4ed7 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x86bc3f15 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x86d476ca inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x86eb0a3f pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x86f69b90 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x86fefa88 clk_gpio_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x8702e548 process_srcu +EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared +EXPORT_SYMBOL_GPL vmlinux 0x872530d0 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x872a22a4 percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0x87323e1b pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x87329ae8 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x87453390 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x876760ec crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x87731651 blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x8780acef dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x87878e45 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x879b3749 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x879d1b1c pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x87b57ec5 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x87cedfcd usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x87d42b63 blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0x87d7c353 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x87ea0002 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x88136838 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8815270d dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x884381c2 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8844d236 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x88599e55 crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0x886f4004 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x8873af68 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x887d89e7 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x88841cd9 efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88bbcc1a tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x88c14387 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x88c3cae5 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x88f7e69b dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x89056db7 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x892537e3 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x8937011f crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x89382983 nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x89495374 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x8956aeae apei_exec_ctx_init +EXPORT_SYMBOL_GPL vmlinux 0x895985ee sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x895d20b2 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x897426b0 acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0x89a25e5a ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x89a70660 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89bd2aea unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x89becd68 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x89cdb825 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x89d05abc devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x8a02b6c2 extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x8a456737 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x8a4b8066 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x8a559846 gnttab_setup_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod +EXPORT_SYMBOL_GPL vmlinux 0x8a5b5816 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x8a78989f irq_from_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control +EXPORT_SYMBOL_GPL vmlinux 0x8a7e8dd1 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x8a835788 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8a951089 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x8ab630db gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ac4a86b power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x8ad191f6 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x8ad30432 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x8ade2c51 virtqueue_get_avail +EXPORT_SYMBOL_GPL vmlinux 0x8aeb5c8a tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0x8b03c71a __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x8b04668e bind_interdomain_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b462d3a device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x8b52e457 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x8b540f1a serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x8b6ba5dd elv_register +EXPORT_SYMBOL_GPL vmlinux 0x8b7861f9 blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8b8dd7ac class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8b9200fd lookup_address +EXPORT_SYMBOL_GPL vmlinux 0x8bddd69f sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x8be7aadc bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8bf7f004 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c06a108 xenbus_transaction_start +EXPORT_SYMBOL_GPL vmlinux 0x8c11bff3 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x8c1ee7a0 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8c2c01c9 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x8c40c226 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c9d1661 arch_phys_wc_index +EXPORT_SYMBOL_GPL vmlinux 0x8c9eabaa usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x8ca2e291 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x8caaaa12 devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0x8cae54b5 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8cc830d2 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x8ccd68f4 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params +EXPORT_SYMBOL_GPL vmlinux 0x8cd9f935 setup_APIC_eilvt +EXPORT_SYMBOL_GPL vmlinux 0x8cea765f memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0x8cefb899 rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0x8cf00d6b pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x8d005769 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x8d0e5a78 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d304670 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x8d389db4 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x8d398ba2 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x8d39eba7 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x8d3b7056 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x8d3e04a6 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x8d3fedd6 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x8d43b4a3 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x8d45152c add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x8d707b57 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x8d71377d sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x8d9fa235 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x8db946cf acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0x8e026c90 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x8e198b66 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e4334db ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0x8e51d923 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x8e542fbf fpu__restore +EXPORT_SYMBOL_GPL vmlinux 0x8e5ac881 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x8e5f2865 xen_swiotlb_sync_single_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0x8e79c2b4 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x8e7b4361 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x8e854b7a irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x8ea147ff acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x8ea3270d spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x8eba4f8f sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x8ec8993f devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8ed08041 pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x8ed2458d xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x8ed4282c blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0x8edddc3c fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x8ef6393e iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x8ef67a11 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x8ef89697 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x8efd5376 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f67844e irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f7d90a5 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x8fb41a02 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x8fb6c1d3 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8fbbbc95 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x8fd1c2e3 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x8fee274f __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x8ffc523a register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x9009602a acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x901d7c66 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x903bb65b acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0x90525921 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x906e8a9d dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x907feb52 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x90862d22 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x909a9d88 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90b7e815 blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x90bcdca2 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x90c5c342 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x90d9829d __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x90dc29df aout_dump_debugregs +EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify +EXPORT_SYMBOL_GPL vmlinux 0x90e0d5bf sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x911facc5 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x9125d4b1 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x912f609d xen_swiotlb_dma_mapping_error +EXPORT_SYMBOL_GPL vmlinux 0x91375f21 spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0x9145eec5 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x91523124 tpm2_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x915a2994 xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x916dd403 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x91826bf6 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x919ec103 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x91b516fb xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91d60985 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x91d8108a virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x91f0c992 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x921d2f95 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x92341fbc sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x924f7057 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x9273028d kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x927a26ec ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x929167a1 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x92a2609b smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x92a7b6b4 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x92b32ba6 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x92b8118d class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e03492 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x92ea30c1 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x92f42253 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x930a7bca fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0x9312d80e evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x9316f3fe gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x9333a104 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x9341be5a usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x935bd2a3 phy_create +EXPORT_SYMBOL_GPL vmlinux 0x9361d426 blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0x936db988 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x93731e9f usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x937d3c74 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x93a82a66 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x93d4116a fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x93dc2586 pgprot_writethrough +EXPORT_SYMBOL_GPL vmlinux 0x93ec847e devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x93f9f3a6 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x942a6c34 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x9430937a nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x943508e5 acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event +EXPORT_SYMBOL_GPL vmlinux 0x9450550e percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0x94720414 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94c318be apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x94c38f90 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x94ca8260 xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0x94dcfab7 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x9519fcb5 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x9544f868 __online_page_increment_counters +EXPORT_SYMBOL_GPL vmlinux 0x9546b5c9 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x9558489f __put_net +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x958bd7a8 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x959056d1 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x95b62f07 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95cba492 reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x96436239 pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x964add15 xenbus_scanf +EXPORT_SYMBOL_GPL vmlinux 0x964c6d21 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x964d5c39 acpi_os_map_memory +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9657a6aa ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x96626387 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x967672f0 phy_put +EXPORT_SYMBOL_GPL vmlinux 0x96776025 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x96897001 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x968e4266 xen_swiotlb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x96ab8751 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x96e1abc5 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x96e9ac84 trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x96f47e9f scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x96f62c41 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x9707a7de napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x971baa9d key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x972ba455 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x97359873 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x9739b45a blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x973ab8ad cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x976be982 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x976cec43 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x9786a753 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x979c0afd fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0x97afcb5c iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x97be6505 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x97d6549d mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x98320fa4 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x9839849f crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9855c639 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x985824e8 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x985a03df metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x985e7495 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9886e421 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x98d60c3e get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x98d731b0 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x98ed1a64 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x98f9f73d fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on +EXPORT_SYMBOL_GPL vmlinux 0x98ff4efb pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x99091212 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x990f75fd tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x991eddea pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x99200c4c pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x99412854 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x99457f76 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x99608282 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x9973add9 __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x99921495 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99bfca9c pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x99cac210 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x99cf05aa usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a3c21b3 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x9a3d2816 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x9a4be63c debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x9a785c54 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x9a863668 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9aab1f39 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x9ab04626 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x9ab14b93 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ad1b551 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x9ad65adc sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9afe26dc key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x9b05a955 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x9b085977 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x9b1599cc ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x9b1d15d7 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x9b39ec8a serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x9b6a7412 idle_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x9b7048cb handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x9b720312 acpi_target_system_state +EXPORT_SYMBOL_GPL vmlinux 0x9b934050 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9bbbd141 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x9bbd182c devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x9bc5ba84 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x9bc66123 percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0x9bc9912c pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x9bca03ca ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x9bd35a61 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x9bd72b78 apei_write +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9c09dc5c nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x9c10b6d2 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9c248b07 wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0x9c2de449 memory_add_physaddr_to_nid +EXPORT_SYMBOL_GPL vmlinux 0x9c2e4b66 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x9c462261 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x9c781803 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x9c7a3fe5 tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x9c90c5a8 nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x9c92992c ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x9c96a45b iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x9cb6b429 regmap_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0x9cbab8bb tps65912_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cc6f286 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x9cd68e75 rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9cda64ab preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x9cdf33d5 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x9cf6ff04 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x9cfd1dd7 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x9d06688b register_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x9d1441cb dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x9d193d23 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x9d20a089 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x9d3850e1 gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x9d3f4f48 rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0x9d5a0739 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x9d61d6b1 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported +EXPORT_SYMBOL_GPL vmlinux 0x9ddaedc1 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x9e05499a init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x9e1e9210 md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x9e293cbb ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x9e39dd6e regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x9e3a4b25 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e47c69d relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x9e53caa5 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x9e71d7e7 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x9e86a9f6 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x9e8df904 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x9ea7e335 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9f353441 nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x9f3c1c45 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x9f3dd633 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x9f723c5d devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x9f92af83 x86_hyper_kvm +EXPORT_SYMBOL_GPL vmlinux 0x9fbced97 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fde333b wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9ff519b6 __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0x9fffbcb8 acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0xa002060a perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0xa0052a01 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0xa0128e88 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xa0143810 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xa014a6ac trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xa03d7442 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0xa08792fe blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0xa09a7bc3 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0xa0b8b1eb fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xa0c082e8 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xa0c64d8a bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0xa0c7d20e pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xa0e0a473 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa0f334d1 arch_add_memory +EXPORT_SYMBOL_GPL vmlinux 0xa0ff01d4 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type +EXPORT_SYMBOL_GPL vmlinux 0xa11b55b2 xen_start_info +EXPORT_SYMBOL_GPL vmlinux 0xa1244ec5 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0xa12fef87 gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0xa1498221 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xa151836e __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa15fa3c2 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xa16742d3 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xa188048b xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa1ace321 xen_pci_frontend +EXPORT_SYMBOL_GPL vmlinux 0xa1afeafc generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0xa1b13779 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xa1b538bb napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0xa1c22190 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xa1d27207 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xa1e399c9 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0xa1e674c1 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0xa1f79553 xen_create_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0xa26d0f5e get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2718017 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa2a1ce03 shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xa2a257e0 bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0xa2ac5519 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0xa2b9c993 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2d01710 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0xa30f41d4 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xa353fffc xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xa35fe53f power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xa36f5a2a rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa3748943 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa384918b pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa386c029 trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a448ba ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3c3c801 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xa3e58789 efivar_validate +EXPORT_SYMBOL_GPL vmlinux 0xa3e76da0 acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa3f6274a platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xa4116d5d inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa41cc9e7 shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0xa42aee34 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0xa4415fc2 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xa447465d ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xa452c297 hpet_mask_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq +EXPORT_SYMBOL_GPL vmlinux 0xa466de38 acpi_processor_ffh_cstate_enter +EXPORT_SYMBOL_GPL vmlinux 0xa46bb061 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa4a1128f rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xa4ba24cd nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xa4e74982 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xa5109c40 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xa53e5840 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xa56de7ac cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xa5834428 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xa58f6f15 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xa5a1f630 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0xa5ac0ed5 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xa5ae3f4d acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5f90534 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xa60a53ef cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xa616585b __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0xa621d04c power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xa623d515 devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa62892c6 efivar_sysfs_list +EXPORT_SYMBOL_GPL vmlinux 0xa63bad57 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xa660eaa7 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0xa66438e8 erst_read +EXPORT_SYMBOL_GPL vmlinux 0xa6647139 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa6aacd1a device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xa6acf78d bpf_prog_realloc +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6ca92f2 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6d5607d tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6e6237c mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0xa6ed02fa thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa70ca802 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0xa7119661 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xa7315d7d xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0xa743b02a mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xa74b7cd3 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xa74da95b blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa771d090 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa7a54417 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xa7b0b2d8 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xa7c05aff perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa7d34bfc pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xa7e713d6 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xa7fae3cb alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xa7fe5404 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xa801b359 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0xa81bef70 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa8228444 skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa837231b tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa866c149 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0xa86ff83e dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0xa8707931 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0xa8771834 scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0xa8774821 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xa87d1ee1 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xa880c38c nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xa89c44a1 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0xa8a9156c gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8e3efde phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xa9008cba srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa9143342 find_iova +EXPORT_SYMBOL_GPL vmlinux 0xa92d6d08 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa9317db7 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa9674e24 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0xa99f146f wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0xa99ff199 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0xa9aa15bf bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0xa9ae8621 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa9b9cb18 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaa070b27 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0xaa3518ce devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xaa53d522 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xaa60429a regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xaa71cf8f phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0xaa8a73a9 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0xaa8bf341 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xaa8f985e bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xaa99aab7 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xaa9e4cd7 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xaaa23d73 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaab24d62 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0xaabb1441 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xaaf44ba3 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0xab01acbe gnttab_request_free_callback +EXPORT_SYMBOL_GPL vmlinux 0xab07c28b irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xab161e9b class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xab1a708d __online_page_set_limits +EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xab2fecb7 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xab34b564 iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0xab387011 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xab567d31 percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab86e20c attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xabbf7416 component_master_add +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabd34543 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xabe0f64b dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xabe980b9 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xac0e59bd fat_scan +EXPORT_SYMBOL_GPL vmlinux 0xac27f43b wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0xac76a038 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0xac8c3c2d to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0xac8f64df wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xac9ce195 kvm_async_pf_task_wait +EXPORT_SYMBOL_GPL vmlinux 0xaca645de xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0xacae8a02 iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0xacafa8e7 vector_used_by_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xaccd6887 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xad15825f rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0xad1b04b9 print_context_stack_bp +EXPORT_SYMBOL_GPL vmlinux 0xad1b2d62 __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0xad1bc423 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xad541832 cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0xad570a4a led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xad70eae7 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0xad7a49f8 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0xad8d8ab0 xen_physdev_op_compat +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xadd9486e vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xae2eef20 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xae323b15 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0xae44bdec tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xae574393 efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0xae57879c crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xae660fc2 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae6eaf93 hwpoison_filter_dev_minor +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae7c7c5b dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xae7ebc5a acpi_dev_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xae91f629 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xae960a89 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xaec55ac2 usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xaec628d0 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xaecba6be percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0xaeea8ef2 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xaeec159a platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xaef373b5 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0xaf071408 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xaf26c446 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0xaf50345e wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0xaf51e7cd usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xaf6bb4ab class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xaf8574d8 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xaf9439db leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xaf953fa3 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0xafa4ad4e pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xafaab145 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb0012c5c pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xb00b833e pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xb0661d73 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb08fa0f5 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xb0957646 genlmsg_new_unicast +EXPORT_SYMBOL_GPL vmlinux 0xb0a70f22 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0bce4f0 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xb0c21ccb bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb13844b1 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb145a22b pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0xb15845f1 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb172ffac efivars_sysfs_init +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb1a5f2fe usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xb1a8660d inet_csk_compat_getsockopt +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1b370bd __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xb1b82e72 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1bedeb7 register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xb1d90832 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1f32450 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xb2034006 smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xb2129d6d regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xb217dd47 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb21bbef9 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb254ea62 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb275076b class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xb276838d debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xb285b8f8 xen_in_preemptible_hcall +EXPORT_SYMBOL_GPL vmlinux 0xb286ecf7 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xb2c3c7ad driver_find +EXPORT_SYMBOL_GPL vmlinux 0xb2c9ff49 crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xb2cba732 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2f0e12c crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init +EXPORT_SYMBOL_GPL vmlinux 0xb33b6f0b ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0xb33e4aee clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy +EXPORT_SYMBOL_GPL vmlinux 0xb35119cd pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xb352939f da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xb3642505 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xb3a0f0b8 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0xb3dc3424 irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0xb3f44210 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xb3fedd4e aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb43f0eaf crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xb4548d80 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xb4557e67 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xb45aab2c ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4e14553 gnttab_query_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb4ea277f ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb5398600 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xb53d7367 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0xb54c38d6 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xb553c015 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xb56d463f crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xb5848bae __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5a145bf dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xb5c59610 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0xb5da1435 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0xb5de4bc2 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xb5e73af8 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xb5f1549e acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb5f7e464 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xb60b89ea ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xb6143675 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0xb61b2abe device_reset +EXPORT_SYMBOL_GPL vmlinux 0xb6230f1f gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb630bce8 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0xb632d90a debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xb63f50c8 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xb64e9b91 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xb66421b2 acpi_str_to_uuid +EXPORT_SYMBOL_GPL vmlinux 0xb66967c4 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0xb66f3adc put_pid +EXPORT_SYMBOL_GPL vmlinux 0xb67b63ec sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0xb68c4cbf __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0xb694e039 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xb695f934 md_run +EXPORT_SYMBOL_GPL vmlinux 0xb6a6e964 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6b76720 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xb6d8fba6 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6e9ca78 efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xb718f2f9 sfi_table_parse +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb73b740a trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0xb75c5884 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0xb76a166c regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xb7b7f514 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0xb7b7f920 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0xb7d387a2 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time +EXPORT_SYMBOL_GPL vmlinux 0xb7e55c53 xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb81aca50 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xb8353f51 intel_svm_bind_mm +EXPORT_SYMBOL_GPL vmlinux 0xb844a457 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xb8546bef pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0xb85fc64d tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xb8806322 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb89bd38b regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb8a0328b exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xb8a1c88f rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0xb8b34c4a usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8e50962 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xb8e6c0e0 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xb8f71e6e adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb900c3ee rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb931607a sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0xb945ace8 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xb96dcfa4 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0xb98eec9d regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xb99d5837 xenbus_read +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9e9d006 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xba00d55d devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xba00f918 devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0xba19754b scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba3dc4ef thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0xba5b6ec9 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0xba7e331e ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xba883f61 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0xba94c685 cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb162e8e pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0xbb341dce gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xbb355944 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xbb390228 reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbb75912c shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xbb768919 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xbb7c922a crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info +EXPORT_SYMBOL_GPL vmlinux 0xbbc98da9 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0xbbd1aef4 acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0xbbd46dde pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbbd4f657 xen_pcpu_id +EXPORT_SYMBOL_GPL vmlinux 0xbbf7e42a percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xbc1294ea tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xbc18e66b crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbc2c4d4c __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0xbc4217d4 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0xbc49db86 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc6cdd81 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0xbc72075b pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xbc7c88cc __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xbc8f1670 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xbc9e510b tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcd1e92b usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbd02cf00 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xbd0c1f58 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0xbd22a123 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xbd280fb4 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0xbd2c272d pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd611e09 acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0xbd671048 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xbd86b127 usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xbd8a9571 reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbd9cfddb posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0xbda18748 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbdd5f10f apei_hest_parse +EXPORT_SYMBOL_GPL vmlinux 0xbdee8c23 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0xbdfa0a98 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0xbe0500cf led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xbe153e84 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe31f2f4 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xbe5d0996 idle_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe781c85 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xbe80473a xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xbe8f4502 virtqueue_get_used +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbebcd541 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xbed48142 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xbee2ce86 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xbeea9a80 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xbeeee742 pwm_config +EXPORT_SYMBOL_GPL vmlinux 0xbf02d56b irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf088119 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xbf10959a list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xbf3ea525 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xbf70c548 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xbf89379d da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0xbf909261 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xbfa12f1f rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0xbfa877b4 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xbfaec24e to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0xbfb1be70 hv_setup_vmbus_irq +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfc1a3bb usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xbfd10bb7 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0xbfde06a8 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfe80de5 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xbfef7770 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space +EXPORT_SYMBOL_GPL vmlinux 0xc015a3d1 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0xc0250219 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc02e5039 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0xc0317ee7 trace_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xc04b21bd acpi_os_unmap_iomem +EXPORT_SYMBOL_GPL vmlinux 0xc04ba76e xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xc04d6f0a to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc0900fcf acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0xc090dd06 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xc092f5ca device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xc09b507e rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0addf94 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0d9cfd0 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0xc0eedbb5 register_mce_write_callback +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc101e257 xen_remap_domain_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0xc10bce31 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0xc1396fdb crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0xc13cc042 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xc14c2824 xenbus_probe +EXPORT_SYMBOL_GPL vmlinux 0xc164642e xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc17f45ca ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xc187696a gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0xc1afd79d usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0xc1e3c1fc devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0xc1f29022 device_rename +EXPORT_SYMBOL_GPL vmlinux 0xc1fb554f irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xc2007b1a crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0xc202f54e simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xc2105ee9 extcon_get_cable_state +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc240d17f wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xc246b590 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xc26351f8 bind_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xc2690330 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc287d96a kvm_set_posted_intr_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0xc2909b76 nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xc290ae44 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xc2a57600 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xc2b6de0c get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xc2bd2f16 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xc2d65f3f ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xc2dbee5c __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xc2ee89c0 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0xc2fdbae4 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xc3098b37 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xc3098be6 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xc30d161d phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc3567ef3 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xc357923c pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xc35f9499 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xc3611b97 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xc36831d7 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc37f2a3d regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xc38f36d9 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xc39c41ba get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0xc3a04506 devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc3c900a0 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0xc3cc7467 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc3d2dba6 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xc3f141fe usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0xc403434d pwm_enable +EXPORT_SYMBOL_GPL vmlinux 0xc40418c5 devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc41c932c pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0xc426bded xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc4301a53 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc447dd93 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xc44898ae mmput +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc4796bf3 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0xc48182e1 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc48f6d71 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xc4a2f58e bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc4d35a59 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xc4d760c7 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc4ded348 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xc4e7ac96 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xc4f1dc0b ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0xc512626a __supported_pte_mask +EXPORT_SYMBOL_GPL vmlinux 0xc5397da6 xenbus_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc54bde31 skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc589021b __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xc589dbd1 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0xc59171b4 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xc5ef860f sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc63e7d93 static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xc64aafec __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xc64e0579 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc6732728 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc68cefc7 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xc68dbe32 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6ab4cde usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0xc6bac7ec put_device +EXPORT_SYMBOL_GPL vmlinux 0xc6bfce66 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xc6da7a0a __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0xc6de3a94 crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0xc7002ac4 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc7146bfe dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc7566b1b __bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xc75f6d8d pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xc771b773 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xc7894993 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer +EXPORT_SYMBOL_GPL vmlinux 0xc7ca51a4 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xc7cb49f5 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xc7cd6018 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xc7df8bfd skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7e4cb1b shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xc7f174be devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc814fb4e ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0xc81b765d put_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xc845dc99 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0xc856f132 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xc87196ff rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event +EXPORT_SYMBOL_GPL vmlinux 0xc8874d01 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xc8931ea1 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8b75b76 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xc8cb97aa cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc8f941a8 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0xc8fd2fc6 regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc9420ac2 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0xc950ea92 page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc9705eeb has_newer_microcode +EXPORT_SYMBOL_GPL vmlinux 0xc98f8bc7 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xc99416ee posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0xc9b74073 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xc9c89bcf __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xca0302db xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xca092e65 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xca3b7fd5 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xca5a79de transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xca7903a1 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca81ea9a xenbus_transaction_end +EXPORT_SYMBOL_GPL vmlinux 0xcabbc405 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcae37d01 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0xcaf270b4 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb227a00 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcb45f851 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xcb496225 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xcb51b8f7 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xcb5b116e raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0xcb5d0af3 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xcb7219a8 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0xcb86998d devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xcb87014a ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0xcb9749d1 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xcb986baa sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbe8808d pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xcbedba44 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcbf7ddf4 xen_swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0xcc04b356 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xcc05cc48 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xcc0c1584 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xcc1633cc device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xcc265861 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xcc590f40 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0xcc604750 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xcc7a2922 iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcca4d2d8 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xcca6bb78 acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0xccc24256 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd6e657 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xccd859a8 devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xcce238b5 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0xcce73109 smp_ops +EXPORT_SYMBOL_GPL vmlinux 0xccea4e34 perf_get_x86_pmu_capability +EXPORT_SYMBOL_GPL vmlinux 0xccf7b421 devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xcd02f1dc blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xcd161fed spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0xcd192bc8 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xcd377150 spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcd5d4ef9 btree_update +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcd9fdd23 dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0xcda2618e syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdc87274 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdd990a2 efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0xcddaf9a2 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0xcddb9dc1 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xcde34ce3 add_memory_resource +EXPORT_SYMBOL_GPL vmlinux 0xcdf6d3f1 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0xce12d037 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0xce151a36 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0xce5829e1 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce714bf6 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0xce79ea2a cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xce8ab5c3 dbs_check_cpu +EXPORT_SYMBOL_GPL vmlinux 0xce9ab7d6 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xce9fc779 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xceaa8fb2 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xceaeb390 acpi_dev_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xceb591a4 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xcebcae34 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xcec32fa9 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcef1dd0e perf_check_microcode +EXPORT_SYMBOL_GPL vmlinux 0xcef274d3 xen_swiotlb_unmap_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0xcef7770a dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xcf264fc6 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcfaac056 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfe3bdc6 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0xcff48317 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd02331a4 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xd02d0832 cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0xd02dbe53 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xd03b826e ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd068342c led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0xd08da653 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xd092116c xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xd0922552 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xd0b12460 __dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0dfad1e xen_swiotlb_sync_sg_for_device +EXPORT_SYMBOL_GPL vmlinux 0xd0e61e8c klp_register_patch +EXPORT_SYMBOL_GPL vmlinux 0xd0f4dda3 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xd0f9eea5 klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xd108086d device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xd11c855e rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xd12629c8 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xd13a2891 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xd13b4b19 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xd1403b4d led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xd1507e59 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0xd1553b3b srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0xd160a17c sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd17d26b3 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xd1985553 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xd1ca4984 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xd1d418c2 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0xd1d79882 xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd1f84573 klp_unregister_patch +EXPORT_SYMBOL_GPL vmlinux 0xd1ff0b5f devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd2400fab __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0xd25205ed hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd258d2c3 kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0xd25ea5a4 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xd25ee25a of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xd25fa113 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd2751c03 securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0xd2817892 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xd28285ef power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd2c58ab2 apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0xd2d1927b hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2e5cda3 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0xd2e88de5 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0xd2f01b17 __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0xd2fa622b dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0xd30c4a6d rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xd3295ad3 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xd37bab0b __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xd3b19bf5 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xd3bcc7cd dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xd3d12269 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xd3d8685c gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd404a937 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd40eb9c1 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xd411cef0 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0xd418ea2a cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xd435c181 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xd43eced9 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0xd4487fd5 snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd45ea32f hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0xd4788579 device_del +EXPORT_SYMBOL_GPL vmlinux 0xd4a347f4 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0xd4ba1891 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0xd4bd66a0 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd4c07ee4 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd5030f07 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xd51d4230 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0xd52a56bc regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xd54d4ae3 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd5659033 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xd56b5f64 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0xd58318ba da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xd58745bf pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xd59bc23c fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xd5bb7f68 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5cc4d70 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd640afef crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xd65fe9d2 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd68e6b3c pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0xd6cde341 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0xd6d9c42e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0xd6e973af ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xd6ed3a8e cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0xd6f90089 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd74a41bd dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xd74ec514 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0xd764d265 inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd76ae33f clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd78c6bd2 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd7ceaadf class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7f2f1b7 rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0xd7f3c845 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xd804aaec mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd82922ac component_master_add_child +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd878bdfb seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0xd87a8ff8 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xd87fa3b6 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd88f409d ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xd8aec26c ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xd8b3d780 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0xd8b85191 pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0xd8cf61d7 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd8eb57c5 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xd9026c42 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd905f38f iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd919672e platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges +EXPORT_SYMBOL_GPL vmlinux 0xd91a98ad init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0xd923afae list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xd9264c4e xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xd93263ca rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xd935292f apic +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd94c96a2 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xd94cccdf subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd94de9f9 blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0xd94fa823 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0xd962052b ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd9863d69 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xd986dad1 kernel_fpu_begin +EXPORT_SYMBOL_GPL vmlinux 0xd9944232 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0xd995ec4f fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd99fd583 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0xd9ae8b44 regmap_fields_force_write +EXPORT_SYMBOL_GPL vmlinux 0xd9b207c9 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xd9c5c6be PageHuge +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9fb9b47 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xda1f18ca thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0xda389561 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0xda45124d scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0xda67da43 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xda8e399a sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xda9c3a79 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdaaaf7c7 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0xdabb7450 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0xdad2583a crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xdaf34969 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaff9147 get_hwpoison_page +EXPORT_SYMBOL_GPL vmlinux 0xdb03b778 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xdb0bf9f5 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb48101d register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb69993c rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xdb747300 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb916fd0 trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0xdb91e05c tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xdbd29a58 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbfb2109 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall +EXPORT_SYMBOL_GPL vmlinux 0xdc1d0f9f efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0xdc1ec55e cpu_tlbstate +EXPORT_SYMBOL_GPL vmlinux 0xdc4d145f fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdc5b3dfb user_read +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9c172d io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdca5a237 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdcb2d696 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xdcb359e5 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0xdcc0888d ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xdcccfce2 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0xdcfb4a25 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xdd0eff61 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xdd20d031 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xdd227165 devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xdd2d0ff2 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd415154 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0xdd57e2b5 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0xdd64008d xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0xdd70cbc9 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0xdd84a310 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xdd96bcfd fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xdda1dfb5 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xddd7eac3 irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xddfd51dc sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xde16f9f0 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xde37be19 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xde51f1d8 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0xde647383 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0xde829697 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xde8dd926 klist_next +EXPORT_SYMBOL_GPL vmlinux 0xde929cff get_device +EXPORT_SYMBOL_GPL vmlinux 0xde9bdace each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0xde9e2403 memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdec5e33a acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0xdf0a2c38 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0xdf21c8b9 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xdf36c66a extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xdf3a2761 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xdf4a6bd6 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xdf622181 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xdf66ca81 ucode_cpu_info +EXPORT_SYMBOL_GPL vmlinux 0xdf6b7c61 gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0xdf73943a spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0xdf73fe2a __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xdf75282c inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xdfa6fa56 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xdfaca769 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdfb6b5f0 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0xdff11e33 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xdff6ca0f disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xdffd82a0 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xe00719af device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe0159c1e mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0xe0289fd0 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xe02b9e90 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe0427277 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xe04b7dfc clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xe052aaf6 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xe05d8f3d pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe0931cd0 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0xe0a988b3 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe0ada9b0 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0xe0addfbb led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0xe0afaf3c pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0c71d03 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq +EXPORT_SYMBOL_GPL vmlinux 0xe0c811b0 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xe0ceec30 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0xe0d151fc power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0xe0d4189e reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe1303c9b print_context_stack +EXPORT_SYMBOL_GPL vmlinux 0xe1629a81 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0xe16b0d30 unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe1b8c279 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1d0e51b sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xe1de0878 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xe1f1f309 x86_vector_domain +EXPORT_SYMBOL_GPL vmlinux 0xe2311567 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0xe234175c pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0xe249e2e9 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe28e8d67 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xe290704d od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0xe292c6ca __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xe29349dc copy_reserved_iova +EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe2bf4344 wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0xe2bf501e acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xe2c7eb93 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0xe2de5ea6 dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0xe2fad8ff hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe31e729f relay_open +EXPORT_SYMBOL_GPL vmlinux 0xe3215942 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0xe34554c3 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0xe34a1c9f ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xe35d177d ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xe35f003e tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xe3692279 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xe3925249 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe3948ff4 acpi_walk_dep_device_list +EXPORT_SYMBOL_GPL vmlinux 0xe399413b dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0xe3b97803 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3bda663 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe3ffe2cd debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xe41534ce bind_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0xe418fde4 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe433c6ac spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0xe4635aa1 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe47d9548 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe48beb97 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4ad9d1c register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xe4adc317 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0xe4db8265 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xe4e68bc8 apei_map_generic_address +EXPORT_SYMBOL_GPL vmlinux 0xe50e2398 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0xe514d401 usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xe519861c usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xe51e1c7e kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xe5243788 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe5454a73 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xe545a811 get_xsave_addr +EXPORT_SYMBOL_GPL vmlinux 0xe5498c5b usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xe5623fe9 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0xe5648b55 xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0xe570e3ce ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58b02fb iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe5b8082b cper_estatus_check_header +EXPORT_SYMBOL_GPL vmlinux 0xe5fda007 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0xe62a781a sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe660d527 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xe6793630 rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0xe693ca11 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0xe6b6ba7f regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6df60eb ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6ed141e xenbus_map_ring +EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data +EXPORT_SYMBOL_GPL vmlinux 0xe708c0a9 __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe734a197 crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe768d444 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe7877de4 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xe7bb9f21 __class_register +EXPORT_SYMBOL_GPL vmlinux 0xe7c1a685 xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0xe7cbcfab __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0xe7f40528 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xe7f5dc26 __add_pages +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe82c0e86 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xe83f164f tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe87422c7 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xe87e2d0c xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xe89bd243 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe8bbe923 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xe8c62862 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xe8dd237c __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0xe8e9a235 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0xe8f46963 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xe8fdd326 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xe937c01b dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9880b36 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0xe99e462b blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0xe9a62b4a ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe9a818e6 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xe9ab9862 device_move +EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9db377a skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xe9ddc688 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xe9efdbae clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea147be6 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0xea1b6249 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0xea224e21 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea4662cc usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xea4ebd64 xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0xea5d2844 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0xea628c20 bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0xea6399e9 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xea64c665 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xea66eaee simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xea99c5e1 nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xea9fd51f rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0xeab9e18f ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xeb14f65f usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0xeb194e2b pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xeb22caca l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xeb2798f7 xen_destroy_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0xeb2eb288 efivar_variable_is_removable +EXPORT_SYMBOL_GPL vmlinux 0xeb306801 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0xeb370805 __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xeb3ba46f dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xeb3f148a inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0xeb4428e3 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0xeb6f3823 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xeb72e74e crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xeb76532f crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0xeb7a31bb ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0xeb7c8bd8 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xeb7d183e jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xeb8274d2 percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0xeb833c22 xen_has_pv_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0xeb844743 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0xeb89c0cf usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xebbe7ac5 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xebd0b939 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0xebe80421 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xebea0478 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xebf73ce0 device_register +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec4b29ea gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xec519da1 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0xec631f34 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0xec85e27c sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0xecad3b34 do_machine_check +EXPORT_SYMBOL_GPL vmlinux 0xecba321c pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0xecd6fdfb of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xecdd4821 cpufreq_governor_dbs +EXPORT_SYMBOL_GPL vmlinux 0xeced40c5 gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0xed0a1f4d efivars_register +EXPORT_SYMBOL_GPL vmlinux 0xed0ee16c usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xed0f3204 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xed200276 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xed565d63 devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xed80784a acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xed981a16 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xed9ce7ef inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0xedbc6f67 gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xedc4cad1 pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0xedcdffd4 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0xee0b47f6 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xee13102a x509_request_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xee13e697 set_personality_ia32 +EXPORT_SYMBOL_GPL vmlinux 0xee1e680a clk_register +EXPORT_SYMBOL_GPL vmlinux 0xee2c3d2a skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xee6615fc usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee765736 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xee9caf6c devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xeeb68672 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xeee22cb8 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xeef07ec7 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xef0be3a3 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xef14de9b gov_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef22da16 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0xef2e02d6 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xef45bca0 device_add_property_set +EXPORT_SYMBOL_GPL vmlinux 0xef679d1e usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef6d007a sigset_from_compat +EXPORT_SYMBOL_GPL vmlinux 0xef72653f skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefacb4ec cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0xefc50d37 default_iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0xefd127ff find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xefd5bd21 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xefe153df sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xefe80f8b arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0xf00691fc skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xf0234101 skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf04ce61e device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf050197b regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xf0522199 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf064d467 fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xf0722c3f regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf0787b3e rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xf0865561 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0xf09ccd5f ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0xf0ad5c20 pci_msi_set_desc +EXPORT_SYMBOL_GPL vmlinux 0xf0bf48ca skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xf0c4cfa3 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0xf0c4d251 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xf0ce9e72 pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0xf0f172c5 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf10df554 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xf14e4d24 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xf14e733b ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0xf15f8543 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0xf16929f6 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0xf16a355e spi_async +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf1857c3b usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xf18c7897 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0xf18d9930 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xf192b79f tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1b551d9 ibft_addr +EXPORT_SYMBOL_GPL vmlinux 0xf1c36117 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0xf1ca251e tpm2_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf222aa67 cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0xf229b2e9 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xf22ab548 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xf23e8f63 usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0xf2411c29 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0xf26084bd wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf2630668 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf291252d alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2d4de05 blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0xf2e7b795 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xf2f15fcc acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf3086da0 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf3265fff dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf33dc43c sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xf34962f9 __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xf34c7054 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0xf35d7284 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xf3623cfb arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf3894916 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xf38defcd regmap_read +EXPORT_SYMBOL_GPL vmlinux 0xf39a301d acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xf3ab94b3 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3ba3e56 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xf3bd273b bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0xf3be69ca ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0xf3d16a69 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0xf3dd3ec1 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf3ebf4eb arch_apei_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0xf3effa9a pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xf3f06b68 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf3f4cc5e devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf4174b48 ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xf445506a metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xf45f84d1 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0xf46ea06b subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xf492d63e crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf49c079c crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xf4cb7b8e platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xf4cc6600 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0xf4e1387e xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xf4ea2ce1 blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xf513e585 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0xf52a8ffa call_srcu +EXPORT_SYMBOL_GPL vmlinux 0xf53435d9 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0xf5379771 net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf5489437 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf5785b42 evtchn_get +EXPORT_SYMBOL_GPL vmlinux 0xf589ff6c regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0xf5945bac gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5a8eefc vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xf5b9ca54 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0xf5e9f0dd napi_by_id +EXPORT_SYMBOL_GPL vmlinux 0xf5f60965 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xf6185bb8 __class_create +EXPORT_SYMBOL_GPL vmlinux 0xf6630358 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xf6713209 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0xf6740a1c ping_hash +EXPORT_SYMBOL_GPL vmlinux 0xf69a0823 scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0xf6a9556a btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0xf6c58153 __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6ce4173 __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xf6d553c1 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0xf6da310d iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6ecc1d7 gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0xf7016530 xenbus_gather +EXPORT_SYMBOL_GPL vmlinux 0xf72d8e44 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xf72d9c48 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xf78c7a39 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0xf7911d4c _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0xf7a09b2f tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xf7a2de26 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xf7a585fd reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf7c6365d tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xf7d20c70 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xf7df703c regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0xf7dfd765 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xf7f07a0f bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xf7f1d2c2 pci_msi_prepare +EXPORT_SYMBOL_GPL vmlinux 0xf8032508 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf8374a0a sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xf843f322 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xf845b344 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf84c8d6c ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf8990820 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xf89dd932 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xf8df41dc devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xf8e9459e irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf90da188 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf920c1a5 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf939c937 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xf9426bd0 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0xf9466a67 i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0xf94d3b62 i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf95b4906 __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xf9765833 dmi_match +EXPORT_SYMBOL_GPL vmlinux 0xf98683f9 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9a55249 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0xf9b083fa usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0xf9c338d5 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9d9264e xen_have_vector_callback +EXPORT_SYMBOL_GPL vmlinux 0xf9e97f92 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0xf9eaf6f8 rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xf9f5d2f3 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xf9fb2f04 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xfa0d3900 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0xfa2c0632 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched +EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec +EXPORT_SYMBOL_GPL vmlinux 0xfa9e33f7 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xfaa25473 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xfacbe684 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xfad980fe blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0xfadfb9ee gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xfae6c1fc xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0xfaf7e751 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xfb0047f6 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xfb142f55 bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xfb223f45 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfb237cad acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0xfb25ce06 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0xfb2cd145 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb383515 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xfb64b230 acpi_processor_ffh_cstate_probe +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb7570f8 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xfb77ec2d usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xfb7ff697 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xfbadbacd regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xfbb39334 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbd2b4fc device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0xfbe020f8 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xfbe442b0 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xfbe92719 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc410567 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xfc4c6263 __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0xfc77177b ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0xfc92d7ff pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xfc968c8b apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0xfcc5bc3a event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0xfcc89d2b pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0xfcf36802 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xfd01a657 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfd0a2f43 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xfd4f1cb9 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xfd51b281 gnttab_end_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xfd54a887 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0xfd9437b4 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xfe0267ad __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xfe0c0244 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xfe0d7572 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0xfe4684ae da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xfe5218fc debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xfe6249f1 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xfe6bc608 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfe9b6625 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0xfea10de5 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xfeb4b008 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0xfec85113 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xfecaa4da rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfee02f24 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfee83cc3 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xfeff5d59 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xff01e48b regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff2978c4 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xff2ce747 machine_check_poll +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff5f427c mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xff7799f8 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xff89ba20 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xff903cb4 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0xffa64552 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xffa7d0be regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffb87dd2 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0xffd387e1 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xffd6a9ee pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0xffe0c40f swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0xffe3890f crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xffe5bde3 clockevents_register_device only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-106.129/amd64/generic.compiler +++ linux-raspi2-4.4.0/debian.master/abi/4.4.0-106.129/amd64/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.5) 5.4.0 20160609 only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-106.129/amd64/generic.modules +++ linux-raspi2-4.4.0/debian.master/abi/4.4.0-106.129/amd64/generic.modules @@ -0,0 +1,4620 @@ +3c574_cs +3c589_cs +3c59x +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_dw +8250_fintek +8250_mid +8255 +8255_pci +8390 +842 +842_compress +842_decompress +88pm800 +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +BusLogic +DAC960 +a100u2w +a3d +a8293 +aacraid +aat2870-regulator +aat2870_bl +ab3100 +ab3100-otp +abituguru +abituguru3 +ablk_helper +ac97_bus +acard-ahci +acecad +acenic +acer-wmi +acerhdf +acpi-als +acpi_extlog +acpi_ipmi +acpi_pad +acpi_power_meter +acpi_thermal_rel +acpiphp_ibm +acquirewdt +act200l-sir +act8865-regulator +act_bpf +act_connmark +act_csum +act_gact +act_ipt +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +act_vlan +actisys-sir +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5755 +ad5764 +ad5791 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7266 +ad7280a +ad7291 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7746 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad799x +ad8366 +ad9523 +ad9832 +ad9834 +ad_sigma_delta +adc128d818 +adcxx +addi_apci_1032 +addi_apci_1500 +addi_apci_1516 +addi_apci_1564 +addi_apci_16xx +addi_apci_2032 +addi_apci_2200 +addi_apci_3120 +addi_apci_3501 +addi_apci_3xxx +addi_watchdog +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adfs +adi +adis16060 +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16204 +adis16209 +adis16220 +adis16240 +adis16260 +adis16400 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1275 +adm8211 +adm9240 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adv7170 +adv7175 +adv7511 +adv7604 +adv7842 +adv_pci1710 +adv_pci1723 +adv_pci1724 +adv_pci_dio +advansys +advantechwdt +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +aes-x86_64 +aesni-intel +af-rxrpc +af9013 +af9033 +af_alg +af_key +af_packet_diag +affs +ah4 +ah6 +aha152x_cs +ahci +ahci_platform +aic79xx +aic7xxx +aic94xx +aim_cdev +aim_network +aim_sound +aim_v4l2 +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airo +airo_cs +airspy +ak8975 +al3320a +algif_aead +algif_hash +algif_rng +algif_skcipher +ali-ircc +alienware-wmi +alim1535_wdt +alim7101_wdt +altera-ci +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am53c974 +ambassador +amc6821 +amd +amd-rng +amd5536udc +amd64_edac_mod +amd76xrom +amd8111e +amd_freq_sensitivity +amd_iommu_v2 +amdgpu +amdkfd +amilo-rfkill +amplc_dio200 +amplc_dio200_common +amplc_dio200_pci +amplc_pc236 +amplc_pc236_common +amplc_pc263 +amplc_pci224 +amplc_pci230 +amplc_pci236 +amplc_pci263 +ams369fg06 +analog +anatop-regulator +ansi_cprng +anubis +aoe +apanel +apds9300 +apds9802als +apds990x +apds9960 +apple-gmux +apple_bl +appledisplay +applesmc +appletalk +appletouch +applicom +aquantia +ar5523 +ar7part +arc-rawmode +arc-rimi +arc4 +arc_ps2 +arc_uart +arcfb +arcmsr +arcnet +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arp_tables +arpt_mangle +arptable_filter +as102_fe +as3711-regulator +as3711_bl +as3935 +as5011 +asb100 +asc7621 +ascot2e +asix +ast +asus-laptop +asus-nb-wmi +asus-wmi +asus_atk0110 +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +atbm8830 +aten +ath +ath10k_core +ath10k_pci +ath3k +ath5k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atlas_btns +atm +atmel +atmel_cs +atmel_mxt_ts +atmel_pci +atmtcp +atp +atp870u +atusb +atxp1 +aty128fb +atyfb +au0828 +au8522_common +au8522_decoder +au8522_dig +aufs +auo-pixcir-ts +auo_k1900fb +auo_k1901fb +auo_k190x +auth_rpcgss +authenc +authencesn +autofs4 +avm_cs +avma1_cs +avmfritz +ax25 +ax88179_178a +axnet_cs +axp20x-pek +axp20x-regulator +axp20x_usb_power +axp288_adc +axp288_charger +axp288_fuel_gauge +b1 +b1dma +b1pci +b1pcmcia +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +bas_gigaset +batman-adv +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bch +bcm-phy-lib +bcm203x +bcm3510 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm7038_wdt +bcm7xxx +bcm87xx +bcma +bcma-hcd +bd6107 +bdc +bdc_pci +be2iscsi +be2net +befs +belkin_sa +bfa +bfs +bfusb +bh1750 +bh1770glc +bh1780gli +binfmt_misc +block2mtd +blocklayoutdriver +blowfish-x86_64 +blowfish_common +blowfish_generic +bluecard_cs +bluetooth +bluetooth_6lowpan +bma150 +bma180 +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmg160_core +bmg160_i2c +bmg160_spi +bmp085 +bmp085-i2c +bmp085-spi +bmp280 +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bnxt_en_bpo +bonding +bpa10x +bpck +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +br2684 +br_netfilter +brcmfmac +brcmsmac +brcmutil +brd +bridge +broadcom +broadsheetfb +bsd_comp +bt3c_cs +bt819 +bt856 +bt866 +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btqca +btrfs +btrtl +btsdio +bttv +btuart_cs +btusb +btwilink +bu21013_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c2port-duramar2150 +c4 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +cachefiles +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +caif_usb +caif_virtio +camellia-aesni-avx-x86_64 +camellia-aesni-avx2 +camellia-x86_64 +camellia_generic +can +can-bcm +can-dev +can-gw +can-raw +capi +capidrv +capmode +carl9170 +carminefb +cassini +cast5-avx-x86_64 +cast5_generic +cast6-avx-x86_64 +cast6_generic +cast_common +catc +cb710 +cb710-mmc +cb_das16_cs +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcimdas +cb_pcimdda +cc10001_adc +cc2520 +cc770 +cc770_isa +cc770_platform +cciss +ccm +ccp +ccp-crypto +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +ceph +cfag12864b +cfag12864bfb +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha20-x86_64 +chacha20_generic +chacha20poly1305 +chaoskey +chipreg +chnl_net +chromeos_laptop +chromeos_pstore +ci_hdrc +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +cirrus +cirrusfb +ck804xrom +classmate-laptop +clip +clk-cdce706 +clk-palmas +clk-pwm +clk-s2mps11 +clk-si5351 +clk-twl6040 +clk-wm831x +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm36651 +cm4000_cs +cm4040_cs +cma3000_d0x +cma3000_d0x_i2c +cmac +cmdlinepart +cmtp +cnic +cobalt +cobra +coda +com20020 +com20020-pci +com20020_cs +com90io +com90xx +comedi +comedi_8254 +comedi_8255 +comedi_bond +comedi_isadma +comedi_parport +comedi_pci +comedi_pcmcia +comedi_test +comedi_usb +comm +compal-laptop +configfs +contec_pci_dio +cordic +core +coretemp +cosm_bus +cosm_client +cp210x +cpcihp_generic +cpcihp_zt5550 +cpia2 +cpsw_ale +cpu-notifier-error-inject +cpu5wdt +cpuid +cr_bllcd +cramfs +crc-ccitt +crc-itu-t +crc32 +crc32-pclmul +crc7 +crc8 +crct10dif-pclmul +cros_ec +cros_ec_devs +cros_ec_i2c +cros_ec_keyb +cros_ec_lpc +cros_ec_spi +crvml +cryptd +crypto_user +cryptoloop +cs5345 +cs53l32a +csiostor +ct82c710 +ctr +cts +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +cx18 +cx18-alsa +cx22700 +cx22702 +cx231xx +cx231xx-alsa +cx231xx-dvb +cx2341x +cx23885 +cx24110 +cx24113 +cx24116 +cx24117 +cx24120 +cx24123 +cx25821 +cx25821-alsa +cx25840 +cx82310_eth +cx88-alsa +cx88-blackbird +cx88-dvb +cx88-vp3054-i2c +cx8800 +cx8802 +cx88xx +cxacru +cxd2099 +cxd2820r +cxd2841er +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cyclades +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da9030_battery +da9034-ts +da903x +da903x_bl +da9052-battery +da9052-hwmon +da9052-regulator +da9052_bl +da9052_onkey +da9052_tsi +da9052_wdt +da9055-hwmon +da9055-regulator +da9055_onkey +da9055_wdt +da9062-core +da9062-regulator +da9062_wdt +da9063-regulator +da9063_onkey +da9063_wdt +da9150-charger +da9150-core +da9150-fg +da9150-gpadc +da9210-regulator +da9211-regulator +dac02 +daqboard2000 +das08 +das08_cs +das08_isa +das08_pci +das16 +das16m1 +das1800 +das6402 +das800 +davicom +db9 +dc395x +dca +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +dcdbas +ddbridge +de2104x +de4x5 +decnet +deflate +defxx +dell-laptop +dell-led +dell-rbtn +dell-smm-hwmon +dell-smo8800 +dell-wmi +dell-wmi-aio +dell_rbu +denali +denali_dt +denali_pci +des3_ede-x86_64 +des_generic +designware_i2s +dgap +dgnc +dht11 +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dibx000_common +digi_acceleport +diskonchip +diva_idi +diva_mnt +divacapi +divadidd +divas +dl2k +dlci +dlm +dln2 +dm-bio-prison +dm-bufio +dm-cache +dm-cache-cleaner +dm-cache-mq +dm-cache-smq +dm-crypt +dm-delay +dm-era +dm-flakey +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-verity +dm-zero +dm1105 +dm9601 +dme1737 +dmfe +dmi-sysfs +dmm32at +dmx3191d +dn_rtmsg +dnet +docg3 +docg4 +dp83848 +dp83867 +dpt_i2o +drbd +drbg +drm +drm_kms_helper +drop_monitor +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds620 +dsbr100 +dscc4 +dss1_divert +dst +dst_ca +dstr +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x +dt3000 +dt3155 +dt9812 +dtl1_cs +dummy +dummy-irq +dummy_stm +dvb-as102 +dvb-bt8xx +dvb-core +dvb-pll +dvb-ttpci +dvb-ttusb-budget +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-af9035 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6007 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-rtl28xxu +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dvb_usb_v2 +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_wdt +dwc3 +dwc3-pci +dwmac-generic +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +e752x_edac +earth-pt1 +earth-pt3 +eata +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ec100 +ec_bhf +ec_sys +echainiv +echo +edac_core +edac_mce_amd +edt-ft5x06 +eeepc-laptop +eeepc-wmi +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efi-pstore +efi_test +efs +ehset +einj +elan_i2c +elo +elsa_cs +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_meta +em_nbyte +em_text +em_u32 +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +empeg +ems_pci +ems_pcmcia +ems_usb +emu10k1-gp +ena +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +ene_ir +eni +enic +epat +epia +epic100 +eql +esas2r +esb2rom +esd_usb2 +esi-sir +esp4 +esp6 +esp_scsi +et1011c +et131x +ethoc +eurotechwdt +evbug +exofs +extcon-adc-jack +extcon-arizona +extcon-axp288 +extcon-gpio +extcon-max14577 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +ezusb +f2fs +f71805f +f71808e_wdt +f71882fg +f75375s +f81232 +fakelb +fam15h_power +fan53555 +farsync +faulty +fb_agm1264k-fl +fb_bd663474 +fb_ddc +fb_hx8340bn +fb_hx8347d +fb_hx8353d +fb_hx8357d +fb_ili9163 +fb_ili9320 +fb_ili9325 +fb_ili9340 +fb_ili9341 +fb_ili9481 +fb_ili9486 +fb_pcd8544 +fb_ra8875 +fb_s6d02a1 +fb_s6d1121 +fb_ssd1289 +fb_ssd1306 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_sys_fops +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fbtft_device +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdomain_cs +fdp +fdp_i2c +fealnx +ff-memless +fintek-cir +firedtv +firestream +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fit2 +fit3 +fixed +fjes +fl512 +flexfb +floppy +fm10k +fm801-gp +fm_drv +fmc +fmc-chardev +fmc-fakedev +fmc-trivial +fmc-write-eeprom +fmvj18x_cs +fnic +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fpga-mgr +freevxfs +friq +frpw +fsa9480 +fscache +fschmd +fsl_lpuart +ft6236 +ftdi-elan +ftdi_sio +ftl +fujitsu-laptop +fujitsu-tablet +fujitsu_ts +g450_pll +g760a +g762 +g_acm_ms +g_audio +g_cdc +g_dbgp +g_ether +g_ffs +g_hid +g_mass_storage +g_midi +g_ncm +g_nokia +g_printer +g_serial +g_webcam +g_zero +gadgetfs +gamecon +gameport +garmin_gps +garp +gcm +gdmtty +gdmulte +gdmwm +gdth +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +gennvm +genwqe_card +gf128mul +gf2k +gfs2 +ghash-clmulni-intel +ghash-generic +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +glue_helper +gluebi +gma500_gfx +go7007 +go7007-loader +go7007-usb +goku_udc +goodix +gp2ap002a00f +gp2ap020a00f +gpio +gpio-104-idio-16 +gpio-addr-flash +gpio-adp5520 +gpio-adp5588 +gpio-amd8111 +gpio-amdpt +gpio-arizona +gpio-beeper +gpio-charger +gpio-crystalcove +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-f7188x +gpio-fan +gpio-generic +gpio-ich +gpio-ir-recv +gpio-it87 +gpio-janz-ttl +gpio-kempld +gpio-lp3943 +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-mc33880 +gpio-mcp23s08 +gpio-ml-ioh +gpio-pca953x +gpio-pcf857x +gpio-rdc321x +gpio-regulator +gpio-sch +gpio-sch311x +gpio-tps65912 +gpio-twl4030 +gpio-twl6040 +gpio-ucb1400 +gpio-viperboard +gpio-vx855 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio_backlight +gpio_keys +gpio_keys_polled +gpio_mouse +gpio_tilt_polled +gr_udc +grace +gre +grip +grip_mp +gs_fpga +gs_usb +gsc_hpdi +gspca_benq +gspca_conex +gspca_cpia1 +gspca_dtcs033 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_jl2005bcd +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stk1135 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_touptek +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtco +guillemot +gunze +gxt4500 +hackrf +hamachi +hampshire +hangcheck-timer +hanwang +hci +hci_uart +hci_vhci +hdaps +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcdrv +hdm_dim2 +hdm_i2c +hdm_usb +hdpvr +he +hecubafb +hexium_gemini +hexium_orion +hfc4s8s_l1 +hfc_usb +hfcmulti +hfcpci +hfcsusb +hfi1 +hfs +hfsplus +hgafb +hi8435 +hid +hid-a4tech +hid-alps +hid-apple +hid-appleir +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-cherry +hid-chicony +hid-corsair +hid-cp2112 +hid-cypress +hid-dr +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-hyperv +hid-icade +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-lenovo +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-primax +hid-prodikeys +hid-rmi +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-isku +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-konepure +hid-roccat-kovaplus +hid-roccat-lua +hid-roccat-pyra +hid-roccat-ryos +hid-roccat-savu +hid-saitek +hid-samsung +hid-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steelseries +hid-sunplus +hid-thingm +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hidp +hih6130 +hio +hisax +hisax_fcpcipnp +hisax_isac +hisax_st5481 +hisi504_nand +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hopper +horizon +horus3a +hostap +hostap_cs +hostap_pci +hostap_plx +hp-wireless +hp-wmi +hp100 +hp_accel +hpfs +hpilo +hpsa +hptiop +hpwdt +hsi +hsi_char +hso +hsr +hsu_dma +htc-pasic3 +hts221 +hts221_i2c +hts221_spi +htu21 +huawei_cdc_ncm +hv_balloon +hv_netvsc +hv_storvsc +hv_utils +hv_vmbus +hwa-hc +hwa-rc +hwmon-vid +hwpoison-inject +hx8357 +hyperv-keyboard +hyperv_fb +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd756-s4882 +i2c-amd8111 +i2c-cbus-gpio +i2c-cros-ec-tunnel +i2c-designware-core +i2c-designware-pci +i2c-designware-platform +i2c-diolan-u2c +i2c-dln2 +i2c-emev2 +i2c-gpio +i2c-hid +i2c-i801 +i2c-isch +i2c-ismt +i2c-kempld +i2c-matroxfb +i2c-mux +i2c-mux-gpio +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-pinctrl +i2c-mux-reg +i2c-nforce2 +i2c-nforce2-s4985 +i2c-ocores +i2c-parport +i2c-parport-light +i2c-pca-platform +i2c-piix4 +i2c-robotfuzz-osif +i2c-scmi +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-smbus +i2c-stub +i2c-taos-evm +i2c-tiny-usb +i2c-via +i2c-viapro +i2c-viperboard +i2c-xiic +i3000_edac +i3200_edac +i40e +i40evf +i5000_edac +i5100_edac +i5400_edac +i5500_temp +i5k_amb +i6300esb +i7300_edac +i7300_idle +i740fb +i7core_edac +i810 +i82092 +i82975x_edac +i915 +i915_bpo +iTCO_vendor_support +iTCO_wdt +ib700wdt +ib_addr +ib_cm +ib_core +ib_ipath +ib_ipoib +ib_iser +ib_isert +ib_mad +ib_mthca +ib_qib +ib_sa +ib_srp +ib_srpt +ib_ucm +ib_umad +ib_uverbs +ibm_rtl +ibmaem +ibmasm +ibmasr +ibmpex +ichxrom +icp_multi +icplus +ics932s401 +ideapad-laptop +ideapad_slidebar +idma64 +idmouse +idt77252 +idt_gen2 +idtcps +ie31200_edac +ie6xx_wdt +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +iforce +igb +igbvf +igorplugusb +iguanair +ii_pci20kc +iio-trig-interrupt +iio-trig-periodic-rtc +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili922x +ili9320 +imm +imon +ims-pcu +imx074 +ina209 +ina2xx +industrialio +industrialio-buffer-cb +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +input-polldev +int3400_thermal +int3402_thermal +int3403_thermal +int340x_thermal_zone +int51x1 +intel-hid +intel-lpss +intel-lpss-acpi +intel-lpss-pci +intel-rng +intel-rst +intel-smartconnect +intel-vbtn +intel_ips +intel_menlow +intel_oaktrail +intel_pch_thermal +intel_pmc_ipc +intel_powerclamp +intel_punit_ipc +intel_qat +intel_quark_i2c_gpio +intel_rapl +intel_soc_dts_iosf +intel_soc_dts_thermal +intel_telemetry_core +intel_telemetry_debugfs +intel_telemetry_pltdrv +intel_th +intel_th_gth +intel_th_msu +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +intelfb +interact +interval_tree_test +inv-mpu6050 +io_edgeport +io_ti +ioatdma +ioc4 +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_MASQUERADE +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_tunnel +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_wlc +ip_vs_wrr +ip_vti +ipack +ipaq +ipcomp +ipcomp6 +ipddp +iphase +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +ipr +ips +ipt_CLUSTERIP +ipt_ECN +ipt_MASQUERADE +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipw +ipw2100 +ipw2200 +ipwireless +ipx +ir-hix5hd2 +ir-jvc-decoder +ir-kbd-i2c +ir-lirc-codec +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-usb +ir-xmp-decoder +ircomm +ircomm-tty +irda +irda-usb +irlan +irnet +irqbypass +irtty-sir +isci +iscsi_boot_sysfs +iscsi_ibft +iscsi_target_mod +iscsi_tcp +isdn +isdn_bsdcomp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl9305 +isofs +isp116x-hcd +isp1362-hcd +isp1704_charger +isp1760 +it87 +it8712f_wdt +it87_wdt +it913x +itd1000 +ite-cir +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_c2 +iw_cm +iw_cxgb3 +iw_cxgb4 +iw_nes +iwl3945 +iwl4965 +iwldvm +iwlegacy +iwlmvm +iwlwifi +ix2505v +ixgb +ixgbe +ixgbevf +janz-cmodio +janz-ican3 +jc42 +jedec_probe +jffs2 +jfs +jitterentropy_rng +jmb38x_ms +jme +joydev +joydump +jr3_pci +jsa1212 +jsm +k10temp +k8temp +kafs +kalmia +kaweth +kb3886_bl +kbic +kbtab +kcomedilib +ke_counter +kempld-core +kempld_wdt +kernelcapi +keyspan +keyspan_pda +keyspan_remote +keywrap +kfifo_buf +khazad +kingsun-sir +kl5kusb105 +kmx61 +kobil_sct +ks0108 +ks0127 +ks8842 +ks8851 +ks8851_mll +ks959-sir +ksdazzle-sir +ksz884x +ktti +kvaser_pci +kvaser_usb +kvm +kvm-amd +kvm-intel +kxcjk-1013 +kxsd9 +kxtj9 +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l440gx +l4f00242t03 +l64781 +lan78xx +lanai +lapb +lapbether +latch-addr-flash +lattice-ecp3-config +lcd +ld9040 +ldusb +lec +led-class-flash +leds-88pm860x +leds-adp5520 +leds-bd2802 +leds-blinkm +leds-clevo-mail +leds-da903x +leds-da9052 +leds-dac124s085 +leds-gpio +leds-lm3530 +leds-lm3533 +leds-lm355x +leds-lm3642 +leds-lp3944 +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pwm +leds-regulator +leds-ss4200 +leds-tca6507 +leds-tlc591xx +leds-wm831x-status +leds-wm8350 +ledtrig-backlight +ledtrig-camera +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-oneshot +ledtrig-timer +ledtrig-transient +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libahci +libahci_platform +libceph +libcomposite +libcrc32c +libcxgbi +libertas +libertas_cs +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libore +libosd +libsas +lightning +lineage-pem +linear +linux-bcm-knet +linux-kernel-bde +linux-user-bde +liquidio +lirc_bt829 +lirc_dev +lirc_imon +lirc_parallel +lirc_sasem +lirc_serial +lirc_sir +lirc_zilog +lis3l02dq +lis3lv02d +lis3lv02d_i2c +litelink-sir +lkkbd +llc +llc2 +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3630a_bl +lm3639_bl +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lmc +lms283gf05 +lms501kf03 +lnbh25 +lnbp21 +lnbp22 +lockd +locktorture +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp8755 +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpc_ich +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +ltc2941-battery-gauge +ltc2945 +ltc2978 +ltc3589 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltr501 +ltv350qv +lv5207lp +lvstest +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m25p80 +m2m-deinterlace +m52790 +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +ma600-sir +mac-celtic +mac-centeuro +mac-croatian +mac-cyrillic +mac-gaelic +mac-greek +mac-iceland +mac-inuit +mac-roman +mac-romanian +mac-turkish +mac80211 +mac80211_hwsim +mac802154 +mac_hid +macb +machzwd +macmodes +macvlan +macvtap +mag3110 +magellan +mailbox-altera +mantis +mantis_core +map_absent +map_funcs +map_ram +map_rom +marvell +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max1111 +max11801_ts +max1363 +max14577 +max14577_charger +max1586 +max16064 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max197 +max20751 +max2165 +max3100 +max31790 +max3421-hcd +max34440 +max517 +max63xx_wdt +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77693 +max77693-haptic +max77693_charger +max8649 +max8660 +max8688 +max8903_charger +max8907 +max8907-regulator +max8925-regulator +max8925_bl +max8925_onkey +max8925_power +max8952 +max8973-regulator +max8997 +max8997_charger +max8997_haptic +max8998 +max8998_charger +mb862xxfb +mb86a16 +mb86a20s +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc44s803 +mcb +mcb-pci +mce-inject +mce_amd_inj +mceusb +mcp2120-sir +mcp251x +mcp3021 +mcp320x +mcp3422 +mcp4531 +mcp4725 +mcp4922 +mcryptd +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md-cluster +md4 +mdc800 +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-cavium +mdio-gpio +mdio-octeon +mdio-thunder +mdio-xgene +me4000 +me_daq +media +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +mei +mei-me +mei-txe +mei_phy +memory-notifier-error-inject +memstick +men_z135_uart +men_z188_adc +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +metro-usb +metronomefb +meye +mf6x4 +mga +mic_bus +mic_card +mic_cosm +mic_host +mic_x100_dma +michael_mic +micrel +microchip +microread +microread_i2c +microread_mei +microtek +mii +minix +mip6 +mite +mk712 +mkiss +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx90614 +mlxsw_core +mlxsw_pci +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmc_block +mmc_spi +mms114 +mn88472 +mn88473 +mos7720 +mos7840 +mostcore +moxa +mpc624 +mpl115 +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +msdos +msi-laptop +msi-wmi +msi001 +msi2500 +msp3400 +mspro_block +msr +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt29f_spinand +mt312 +mt352 +mt6311-regulator +mt6397-core +mt6397-regulator +mt7601u +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd +mtd_blkdevs +mtd_dataflash +mtdblock +mtdblock_ro +mtdoops +mtdram +mtdswap +mtip32xx +mtk-sd +mtouch +multipath +multiq3 +musb_hdrc +mv_u3d_core +mv_udc +mvmdio +mvsas +mvumi +mwave +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc4005 +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxm-wmi +mxser +mxuport +myri10ge +n411 +n_gsm +n_hdlc +n_r3964 +n_tracerouter +n_tracesink +nand +nand_bch +nand_ecc +nand_ids +nandsim +national +natsemi +nau7802 +navman +nb8800 +nbd +nci +nci_spi +nci_uart +ncpfs +nct6683 +nct6775 +nct7802 +nct7904 +nd_blk +nd_btt +nd_pmem +ne2k-pci +neofb +net1080 +net2272 +net2280 +netconsole +netjet +netlink_diag +netrom +nettel +netup-unidvb +netxen_nic +newtonkbd +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_ipv4 +nf_nat_ipv6 +nf_nat_irc +nf_nat_masquerade_ipv4 +nf_nat_masquerade_ipv6 +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_redirect +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_synproxy_core +nf_tables +nf_tables_arp +nf_tables_bridge +nf_tables_inet +nf_tables_ipv4 +nf_tables_ipv6 +nf_tables_netdev +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfcwilink +nfit +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_log +nfnetlink_queue +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat_ipv4 +nft_chain_nat_ipv6 +nft_chain_route_ipv4 +nft_chain_route_ipv6 +nft_compat +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_exthdr +nft_hash +nft_limit +nft_log +nft_masq +nft_masq_ipv4 +nft_masq_ipv6 +nft_meta +nft_meta_bridge +nft_nat +nft_queue +nft_rbtree +nft_redir +nft_redir_ipv4 +nft_redir_ipv6 +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +ni_6527 +ni_65xx +ni_660x +ni_670x +ni_at_a2150 +ni_at_ao +ni_atmio +ni_atmio16d +ni_daq_700 +ni_daq_dio24 +ni_labpc +ni_labpc_common +ni_labpc_cs +ni_labpc_isadma +ni_labpc_pci +ni_mio_cs +ni_pcidio +ni_pcimio +ni_tio +ni_tiocmd +ni_usb6501 +nicpf +nicstar +nicvf +nilfs2 +niu +nlmon +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +nmclan_cs +nosy +notifier-error-inject +nouveau +nozomi +ns558 +ns83820 +nsc-ircc +ntb +ntb_hw_amd +ntb_hw_intel +ntb_netdev +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +null_blk +nuvoton-cir +nv_tco +nvidiafb +nvme +nvmem_core +nvram +nxp-nci +nxp-nci_i2c +nxt200x +nxt6000 +objlayoutdriver +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +of_xilinx_wdt +old_belkin-sir +omfs +omninet +on20 +on26 +onenand +opencores-kbd +openvswitch +oprofile +opt3001 +opticon +option +or51132 +or51211 +orinoco +orinoco_cs +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +osd +osdblk +osst +oti6858 +ov2640 +ov5642 +ov6650 +ov7640 +ov7670 +ov772x +ov9640 +ov9740 +overlay +oxu210hp-hcd +p4-clockmod +p54common +p54pci +p54spi +p54usb +p8022 +p8023 +pa12203001 +padlock-aes +padlock-sha +palmas-pwrbutton +palmas-regulator +panasonic-laptop +pandora_bl +panel +paride +parkbd +parport +parport_ax88796 +parport_cs +parport_pc +parport_serial +pata_acpi +pata_ali +pata_amd +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_oldpiix +pata_opti +pata_optidma +pata_pcmcia +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sch +pata_serverworks +pata_sil680 +pata_sl82c105 +pata_triflex +pata_via +pc300too +pc87360 +pc87413_wdt +pc87427 +pcap-regulator +pcap_keys +pcap_ts +pcbc +pcd +pcf50633 +pcf50633-adc +pcf50633-backlight +pcf50633-charger +pcf50633-gpio +pcf50633-input +pcf50633-regulator +pcf8574_keypad +pcf8591 +pch_udc +pci +pci-hyperv +pci-stub +pci200syn +pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad +pcmcia +pcmcia_core +pcmcia_rsrc +pcmciamtd +pcmda12 +pcmmio +pcmuio +pcnet32 +pcnet_cs +pcrypt +pcspkr +pcwd_pci +pcwd_usb +pd +pd6729 +pda_power +pdc_adma +peak_pci +peak_pcmcia +peak_usb +pegasus +penmount +percpu_test +pf +pfuze100-regulator +pg +phantom +phonet +phram +phy-bcm-kona-usb2 +phy-exynos-usb2 +phy-gpio-vbus-usb +phy-isp1301 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-tahvo +phy-tusb1210 +physmap +pinctrl-broxton +pinctrl-intel +pinctrl-sunrisepoint +pixcir_i2c_ts +pkcs7_test_key +pktcdvd +pktgen +pl2303 +plat-ram +plat_nand +platform_lcd +plip +plusb +pluto2 +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm80xx +pm8941-wled +pmbus +pmbus_core +pmc551 +pmcraid +pn533 +pn544 +pn544_i2c +pn544_mei +pn_pep +poly1305-x86_64 +poly1305_generic +port100 +powermate +powr1220 +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_core +pps_parport +pptp +prism2_usb +processor_thermal_device +ps2mult +psmouse +psnap +pt +ptp +pulsedlight-lidar-lite-v2 +punit_atom_debug +pvpanic +pvrusb2 +pwc +pwm-beeper +pwm-lp3943 +pwm-lpss +pwm-lpss-pci +pwm-lpss-platform +pwm-pca9685 +pwm-regulator +pwm-twl +pwm-twl-led +pwm_bl +pxa27x_udc +qat_dh895xcc +qat_dh895xccvf +qcaux +qcom-spmi-iadc +qcom-spmi-vadc +qcom_spmi-regulator +qcserial +qed +qede +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qlogic_cs +qlogicfas408 +qm1d1c0042 +qmi_wwan +qnx4 +qnx6 +qsemi +qt1010 +qt1070 +qt2160 +quatech2 +quatech_daqp_cs +quota_tree +quota_v1 +quota_v2 +qxl +r128 +r592 +r6040 +r8152 +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r852 +r8712u +r8723au +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-bcm2048 +radio-i2c-si470x +radio-keene +radio-ma901 +radio-maxiradio +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-shark +radio-si476x +radio-tea5764 +radio-usb-si470x +radio-usb-si4713 +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ramoops +raw +ray_cs +rbd +rbtree_test +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-asus-pc39 +rc-asus-ps3-100 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-delock-61959 +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-dvbsky +rc-em-terratec +rc-encore-enltv +rc-encore-enltv-fm53 +rc-encore-enltv2 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-pctv-sedna +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-reddo +rc-snapstream-firefly +rc-streamzap +rc-su3000 +rc-tbs-nec +rc-technisat-ts35 +rc-technisat-usb2 +rc-terratec-cinergy-c-pci +rc-terratec-cinergy-s2-hd +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-total-media-in-hand-02 +rc-trekstor +rc-tt-1500 +rc-twinhan-dtv-cab-ci +rc-twinhan1027 +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rc5t583-regulator +rdc321x-southbridge +rdma_cm +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +redboot +redrat3 +reed_solomon +regmap-spmi +regulator-haptic +reiserfs +remoteproc +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd_ftl +rfkill-gpio +rfkill-regulator +rio-scan +rio500 +rionet +rivafb +rj54n1cb0c +rmd128 +rmd160 +rmd256 +rmd320 +rn5t618 +rn5t618-regulator +rn5t618_wdt +rndis_host +rndis_wlan +rocket +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpcrdma +rpcsec_gss_krb5 +rpr0521 +rrpc +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt5033 +rt5033-regulator +rt5033_battery +rt61pci +rt73usb +rt9455_charger +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab3100 +rtc-abx80x +rtc-bq32k +rtc-bq4802 +rtc-da9052 +rtc-da9055 +rtc-da9063 +rtc-ds1286 +rtc-ds1305 +rtc-ds1307 +rtc-ds1343 +rtc-ds1347 +rtc-ds1374 +rtc-ds1390 +rtc-ds1511 +rtc-ds1553 +rtc-ds1672 +rtc-ds1685 +rtc-ds1742 +rtc-ds2404 +rtc-ds3232 +rtc-ds3234 +rtc-em3027 +rtc-fm3130 +rtc-hid-sensor-time +rtc-isl12022 +rtc-isl12057 +rtc-isl1208 +rtc-lp8788 +rtc-m41t80 +rtc-m41t93 +rtc-m41t94 +rtc-m48t35 +rtc-m48t59 +rtc-m48t86 +rtc-max6900 +rtc-max6902 +rtc-max8907 +rtc-max8925 +rtc-max8997 +rtc-max8998 +rtc-mc13xxx +rtc-mcp795 +rtc-msm6242 +rtc-mt6397 +rtc-palmas +rtc-pcap +rtc-pcf2123 +rtc-pcf2127 +rtc-pcf50633 +rtc-pcf85063 +rtc-pcf8523 +rtc-pcf8563 +rtc-pcf8583 +rtc-r9701 +rtc-rc5t583 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rv8803 +rtc-rx4581 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-stk17ta8 +rtc-tps6586x +rtc-tps65910 +rtc-tps80031 +rtc-twl +rtc-v3020 +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtd520 +rti800 +rti802 +rtl2830 +rtl2832 +rtl2832_sdr +rtl8150 +rtl8187 +rtl8188ee +rtl818x_pci +rtl8192c-common +rtl8192ce +rtl8192cu +rtl8192de +rtl8192ee +rtl8192se +rtl8723-common +rtl8723ae +rtl8723be +rtl8821ae +rtl8xxxu +rtl_pci +rtl_usb +rtllib +rtllib_crypt_ccmp +rtllib_crypt_tkip +rtllib_crypt_wep +rtlwifi +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rx51_battery +rxkad +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3fb +s3fwrn5 +s3fwrn5_i2c +s526 +s5h1409 +s5h1411 +s5h1420 +s5m8767 +s626 +s6e63m0 +s921 +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7185 +saa7706h +safe_serial +salsa20-x86_64 +salsa20_generic +samsung-keypad +samsung-laptop +samsung-q10 +samsung-sxgbe +sata_inic162x +sata_mv +sata_nv +sata_promise +sata_qstor +sata_sil +sata_sil24 +sata_sis +sata_svw +sata_sx4 +sata_uli +sata_via +sata_vsc +savage +savagefb +sb1000 +sb_edac +sbc60xxwdt +sbc_epx_c3 +sbc_fitpc2_wdt +sbc_gxx +sbni +sbp_target +sbs +sbs-battery +sbshc +sc1200wdt +sc16is7xx +sc92031 +sca3000 +scb2_flash +sch311x_wdt +sch5627 +sch5636 +sch56xx-common +sch_atm +sch_cbq +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_fq +sch_fq_codel +sch_gred +sch_hfsc +sch_hhf +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_pie +sch_plug +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_tbf +sch_teql +scif +scif_bus +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +scsi_transport_srp +sctp +sctp_probe +sdhci +sdhci-acpi +sdhci-pci +sdhci-pltfm +sdio_uart +sdricoh_cs +sedlbauer_cs +seed +sensorhub +seqiv +ser_gigaset +serial2002 +serial_cs +serio_raw +sermouse +serpent-avx-x86_64 +serpent-avx2 +serpent-sse2-x86_64 +serpent_generic +serport +ses +sfc +sh_veu +sha1-mb +sha1-ssse3 +sha256-ssse3 +sha512-ssse3 +shark2 +shpchp +sht15 +sht21 +shtc1 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sil164 +sir-dev +sis +sis-agp +sis190 +sis5595 +sis900 +sisfb +sisusbvga +sit +sja1000 +sja1000_isa +sja1000_platform +skd +skfp +skge +skx_edac +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +sl811_cs +slcan +slicoss +slip +slram +sm501 +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smb347-charger +smc91c92_cs +smipcie +smm665 +smsc +smsc-ircc2 +smsc37b787_wdt +smsc47b397 +smsc47m1 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsmdtv +smssdio +smsusb +snd +snd-ac97-codec +snd-ad1889 +snd-ak4113 +snd-ak4114 +snd-ak4117 +snd-ak4xxx-adda +snd-ali5451 +snd-aloop +snd-als300 +snd-als4000 +snd-asihpi +snd-atiixp +snd-atiixp-modem +snd-au8810 +snd-au8820 +snd-au8830 +snd-aw2 +snd-azt3328 +snd-bcd2000 +snd-bebob +snd-bt87x +snd-ca0106 +snd-cmipci +snd-compress +snd-cs4281 +snd-cs46xx +snd-cs8427 +snd-ctxfi +snd-darla20 +snd-darla24 +snd-dice +snd-dummy +snd-echo3g +snd-emu10k1 +snd-emu10k1-synth +snd-emu10k1x +snd-emux-synth +snd-ens1370 +snd-ens1371 +snd-es1938 +snd-es1968 +snd-firewire-digi00x +snd-firewire-lib +snd-firewire-tascam +snd-fireworks +snd-fm801 +snd-gina20 +snd-gina24 +snd-hda-codec +snd-hda-codec-analog +snd-hda-codec-ca0110 +snd-hda-codec-ca0132 +snd-hda-codec-cirrus +snd-hda-codec-cmedia +snd-hda-codec-conexant +snd-hda-codec-generic +snd-hda-codec-hdmi +snd-hda-codec-idt +snd-hda-codec-realtek +snd-hda-codec-si3054 +snd-hda-codec-via +snd-hda-core +snd-hda-ext-core +snd-hda-intel +snd-hdsp +snd-hdspm +snd-hrtimer +snd-hwdep +snd-i2c +snd-ice1712 +snd-ice1724 +snd-ice17xx-ak4xxx +snd-indigo +snd-indigodj +snd-indigodjx +snd-indigoio +snd-indigoiox +snd-intel-sst-acpi +snd-intel-sst-core +snd-intel8x0 +snd-intel8x0m +snd-isight +snd-korg1212 +snd-layla20 +snd-layla24 +snd-lola +snd-lx6464es +snd-maestro3 +snd-mia +snd-mixart +snd-mixer-oss +snd-mona +snd-mpu401 +snd-mpu401-uart +snd-mtpav +snd-mts64 +snd-nm256 +snd-opl3-lib +snd-opl3-synth +snd-oxfw +snd-oxygen +snd-oxygen-lib +snd-pcm +snd-pcm-dmaengine +snd-pcm-oss +snd-pcsp +snd-pcxhr +snd-pdaudiocf +snd-portman2x4 +snd-pt2258 +snd-rawmidi +snd-riptide +snd-rme32 +snd-rme96 +snd-rme9652 +snd-sb-common +snd-scs1x +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-soc-ac97 +snd-soc-adau1701 +snd-soc-ak4104 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-alc5623 +snd-soc-core +snd-soc-cs35l32 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42xx8 +snd-soc-cs42xx8-i2c +snd-soc-cs4349 +snd-soc-dmic +snd-soc-es8328 +snd-soc-fsl-asrc +snd-soc-fsl-esai +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-gtm601 +snd-soc-imx-audmux +snd-soc-max98090 +snd-soc-pcm1681 +snd-soc-pcm1792a-codec +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-rl6231 +snd-soc-rl6347a +snd-soc-rt286 +snd-soc-rt5631 +snd-soc-rt5640 +snd-soc-rt5645 +snd-soc-rt5660 +snd-soc-rt5670 +snd-soc-sgtl5000 +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-simple-card +snd-soc-skl +snd-soc-skl-ipc +snd-soc-skl_rt286 +snd-soc-spdif-rx +snd-soc-spdif-tx +snd-soc-ssm2602 +snd-soc-ssm2602-i2c +snd-soc-ssm2602-spi +snd-soc-ssm4567 +snd-soc-sst-acpi +snd-soc-sst-baytrail-pcm +snd-soc-sst-broadwell +snd-soc-sst-byt-max98090-mach +snd-soc-sst-byt-rt5640-mach +snd-soc-sst-bytcr-rt5640 +snd-soc-sst-bytcr-rt5660 +snd-soc-sst-cht-bsw-max98090_ti +snd-soc-sst-cht-bsw-rt5645 +snd-soc-sst-cht-bsw-rt5672 +snd-soc-sst-dsp +snd-soc-sst-haswell +snd-soc-sst-haswell-pcm +snd-soc-sst-ipc +snd-soc-sst-mfld-platform +snd-soc-sta32x +snd-soc-sta350 +snd-soc-sti-sas +snd-soc-tas2552 +snd-soc-tas5086 +snd-soc-tas571x +snd-soc-tfa9879 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic3x +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8962 +snd-soc-wm8978 +snd-soc-xtfpga-i2s +snd-sonicvibes +snd-timer +snd-trident +snd-ua101 +snd-usb-6fire +snd-usb-audio +snd-usb-caiaq +snd-usb-hiface +snd-usb-line6 +snd-usb-pod +snd-usb-podhd +snd-usb-toneport +snd-usb-us122l +snd-usb-usx2y +snd-usb-variax +snd-usbmidi-lib +snd-util-mem +snd-via82xx +snd-via82xx-modem +snd-virmidi +snd-virtuoso +snd-vx-lib +snd-vx222 +snd-vxpocket +snd-ymfpci +snic +soc_button_array +soc_camera +soc_camera_platform +soc_mediabus +softdog +softing +softing_cs +solo6x10 +solos-pci +sony-btf-mpx +sony-laptop +soundcore +sp2 +sp5100_tco +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +spectrum_cs +speedfax +speedstep-lib +speedtch +spi-altera +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-gpio +spi-lm70llp +spi-nor +spi-oc-tiny +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-sc18is602 +spi-tle62x0 +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spl +splat +spmi +sr9700 +sr9800 +ssb +ssb-hcd +ssfdc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +sstfb +ssu100 +st +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_spi +st_magn +st_magn_i2c +st_magn_spi +st_pressure +st_pressure_i2c +st_pressure_spi +st_sensors +st_sensors_i2c +st_sensors_spi +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +ste_modem_rproc +stex +stinger +stir4200 +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm_console +stm_core +stmmac +stmmac-platform +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv6110 +stv6110x +sun4i-codec +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +surfacepro3_button +svgalib +sx8 +sx8654 +sx9500 +sym53c500_cs +sym53c8xx +symbolserial +synaptics_i2c +synaptics_i2c_rmi4 +synaptics_usb +synclink +synclink_cs +synclink_gt +synclinkmp +syscopyarea +sysfillrect +sysimgblt +sysv +t1pci +t5403 +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +target_core_user +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tcs3414 +tcs3472 +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tda998x +tdfx +tdfxfb +tdo24m +tea +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tef6862 +tehuti +tekram-sir +teles_cs +teranetics +test-hexdump +test-kstrtox +test-string_helpers +test_bpf +test_firmware +test_module +test_power +test_printf +test_static_key_base +test_static_keys +test_udelay +test_user_copy +tg3 +tgr192 +thinkpad_acpi +thmc50 +thunder_bgx +thunderbolt +ti-adc081c +ti-adc128s052 +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_dac7512 +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timeriomem-rng +tipc +tlan +tlclk +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmem +tmp006 +tmp102 +tmp103 +tmp401 +tmp421 +toim3232-sir +topstar-laptop +torture +toshiba-wmi +toshiba_acpi +toshiba_bluetooth +toshiba_haps +toshsd +touchit213 +touchright +touchwin +tpci200 +tpm-rng +tpm_atmel +tpm_crb +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_infineon +tpm_nsc +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tps40422 +tps51632-regulator +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65090-charger +tps65090-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps80031-regulator +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsi568 +tsi57x +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2x7x_core +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tvaudio +tveeprom +tvp5150 +tw2804 +tw68 +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-madc-hwmon +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6040-vibra +twofish-avx-x86_64 +twofish-x86_64 +twofish-x86_64-3way +twofish_common +twofish_generic +typhoon +u132-hcd +uPD98402 +u_ether +u_serial +uartlite +uas +ubi +ubifs +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +uda1342 +udc-core +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufshcd +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uli526x +ulpi +umc +umem +ums-alauda +ums-cypress +ums-datafab +ums-eneub6250 +ums-freecom +ums-isd200 +ums-jumpshot +ums-karma +ums-onetouch +ums-realtek +ums-sddr09 +ums-sddr55 +ums-usbat +unix_diag +upd64031a +upd64083 +us5182d +usb-serial-simple +usb-storage +usb3503 +usb8xxx +usb_8dev +usb_debug +usb_f_acm +usb_f_ecm +usb_f_ecm_subset +usb_f_eem +usb_f_fs +usb_f_hid +usb_f_mass_storage +usb_f_midi +usb_f_ncm +usb_f_obex +usb_f_phonet +usb_f_printer +usb_f_rndis +usb_f_serial +usb_f_ss_lb +usb_f_uac1 +usb_f_uac2 +usb_f_uvc +usb_gigaset +usb_wwan +usbatm +usbdux +usbduxfast +usbduxsigma +usbhid +usbip-core +usbip-host +usbkbd +usblcd +usbled +usblp +usbmon +usbmouse +usbnet +usbserial +usbsevseg +usbtest +usbtmc +usbtouchscreen +usbtv +usbvision +usdhi6rol0 +userio +userspace-consumer +ushc +usnic_verbs +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-dv-timings +v4l2-flash-led-class +v4l2-mem2mem +vboxguest +vboxsf +vboxvideo +vcan +vcnl4000 +ven_rsi_91x +ven_rsi_sdio +ven_rsi_usb +ves1820 +ves1x93 +veth +vfio +vfio-pci +vfio_iommu_type1 +vfio_virqfd +vga16fb +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_net +vhost_scsi +via +via-camera +via-cputemp +via-ircc +via-rhine +via-rng +via-sdmmc +via-velocity +via686a +via_wdt +viafb +video +videobuf-core +videobuf-dma-sg +videobuf-dvb +videobuf-vmalloc +videobuf2-core +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-dvb +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videocodec +videodev +vim2m +viperboard +viperboard_adc +virt-dma +virtio-gpu +virtio-rng +virtio_input +virtio_scsi +virtual +visor +visorbus +visorhba +visorinput +visornic +vitesse +vivid +vlsi_ir +vmac +vme_ca91cx42 +vme_pio2 +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmlfb +vmw_balloon +vmw_pvscsi +vmw_vmci +vmw_vsock_vmci_transport +vmwgfx +vmxnet3 +vp27smpx +vport-geneve +vport-gre +vport-vxlan +vpx3220 +vrf +vringh +vsock +vsxxxaa +vt1211 +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxge +vxlan +vz89x +w1-gpio +w1_bq27000 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1_ds2781 +w1_ds28e04 +w1_smem +w1_therm +w5100 +w5300 +w6692 +w83627ehf +w83627hf +w83627hf_wdt +w83781d +w83791d +w83792d +w83793 +w83795 +w83877f_wdt +w83977af_ir +w83977f_wdt +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +wafer5823wdt +walkera0701 +wanxl +warrior +wbsd +wcn36xx +wd719x +wdt87xx_i2c +wdt_pci +whc-rc +whci +whci-hcd +whiteheat +wil6210 +wimax +winbond-840 +winbond-cir +wire +wishbone-serial +wl1251 +wl1251_sdio +wl1251_spi +wl1273-core +wl12xx +wl18xx +wl3501_cs +wlcore +wlcore_sdio +wlcore_spi +wm831x-dcdc +wm831x-hwmon +wm831x-isink +wm831x-ldo +wm831x-on +wm831x-ts +wm831x_backup +wm831x_bl +wm831x_power +wm831x_wdt +wm8350-hwmon +wm8350-regulator +wm8350_power +wm8350_wdt +wm8400-regulator +wm8739 +wm8775 +wm8994-core +wm8994-irq +wm8994-regmap +wm8994-regulator +wm97xx-ts +wmi +wp512 +wusb-cbaf +wusb-wa +wusbcore +x25 +x25_asy +x38_edac +x86_pkg_temp_thermal +x_tables +xc4000 +xc5000 +xcbc +xen-blkback +xen-evtchn +xen-fbfront +xen-gntalloc +xen-gntdev +xen-kbdfront +xen-netback +xen-pciback +xen-pcifront +xen-privcmd +xen-scsiback +xen-scsifront +xen-tpmfront +xen_wdt +xenfs +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_ipcomp +xfrm_user +xfs +xgifb +xhci-plat-hcd +xillybus_core +xillybus_pcie +xirc2ps_cs +xircom_cb +xor +xpad +xr_usb_serial_common +xsens_mt +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +xt_NETMAP +xt_NFLOG +xt_NFQUEUE +xt_RATEEST +xt_REDIRECT +xt_SECMARK +xt_TCPMSS +xt_TCPOPTSTRIP +xt_TEE +xt_TPROXY +xt_TRACE +xt_addrtype +xt_bpf +xt_cgroup +xt_cluster +xt_comment +xt_connbytes +xt_connlabel +xt_connlimit +xt_connmark +xt_conntrack +xt_cpu +xt_dccp +xt_devgroup +xt_dscp +xt_ecn +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_ipcomp +xt_iprange +xt_ipvs +xt_l2tp +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_nat +xt_nfacct +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_realm +xt_recent +xt_sctp +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_tcpudp +xt_time +xt_u32 +xtkbd +xts +xusbatm +xz_dec_test +yam +yealink +yellowfin +yenta_socket +yurex +zatm +zaurus +zavl +zcommon +zd1201 +zd1211rw +zforce_ts +zfs +zhenhua +zl10036 +zl10039 +zl10353 +zl6100 +zlib +znvpair +zpios +zr36016 +zr36050 +zr36060 +zr36067 +zr364xx +zram +zunicode +zynq-fpga only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-106.129/amd64/lowlatency +++ linux-raspi2-4.4.0/debian.master/abi/4.4.0-106.129/amd64/lowlatency @@ -0,0 +1,18891 @@ +EXPORT_SYMBOL arch/x86/kvm/kvm 0x39992ee0 kvm_cpu_has_pending_timer +EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe +EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble +EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL crypto/mcryptd 0x73892a61 mcryptd_arm_flusher +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/acpi/nfit 0xa7e9a159 to_nfit_uuid +EXPORT_SYMBOL drivers/acpi/video 0x6de7f7ff acpi_video_get_backlight_type +EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister +EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register +EXPORT_SYMBOL drivers/acpi/video 0xa56e83c7 acpi_video_get_edid +EXPORT_SYMBOL drivers/acpi/video 0xe92ca535 acpi_video_set_dmi_backlight_type +EXPORT_SYMBOL drivers/atm/suni 0x5a8ee5d6 suni_init +EXPORT_SYMBOL drivers/atm/uPD98402 0x3ca73fc7 uPD98402_init +EXPORT_SYMBOL drivers/bcma/bcma 0xa35eb9a0 bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0xd4cfd049 bcma_core_irq +EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str +EXPORT_SYMBOL drivers/block/paride/paride 0x254a39c1 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x403b3a12 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x445abb00 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x49001b27 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x4ae081f3 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x5496c40f pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x55ec42f8 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x5a44b9c4 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x5bd944c7 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x5ecb4d0b pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x63a24078 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x662d51bd pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x47c06e4a btbcm_patchram +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0318c77a ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x13816d72 ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fae3bac ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4e039e81 ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xcc460dfb ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcca77ec ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/nvram 0x0f28cb91 nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x17ff2c1d __nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x2adec1e0 __nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x7da28f12 nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x9ce3f83f nvram_write_byte +EXPORT_SYMBOL drivers/char/nvram 0xa8813189 __nvram_write_byte +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x0b2ebd23 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xae622848 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xc4e3ae29 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xffeb2338 st33zp24_probe +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x2798856e xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x5ab1ede0 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xc01c6763 xillybus_init_endpoint +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x0a015800 dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x6109c91f dw_dma_get_src_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x8c81a6bd dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xc51c659a dw_dma_cyclic_free +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xc8c491a3 dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xe2af5d34 dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/edac/edac_core 0x3ba20b7f edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04d0f641 fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0f7d6af8 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1704bbc8 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x25e694df fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2ea504e4 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x36f92e50 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3ead6280 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x43b5b822 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4b277058 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4f79cae2 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x605680cc fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x60ef8c0e fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x645b715f fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x66c76c92 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x688d1056 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x71c78c4d fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x75b8dcb9 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x83019afa fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8d018229 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x921b2410 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9a540094 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9abf52d4 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa304ff3a fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbb08b491 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd25bd20b fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe17ff243 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xec95e8a5 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfb96bfd3 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfd6ca1b9 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firmware/dcdbas 0xa75079d6 dcdbas_smi_request +EXPORT_SYMBOL drivers/fmc/fmc 0x0f1d76fe fmc_device_unregister_n +EXPORT_SYMBOL drivers/fmc/fmc 0x17432df4 fmc_device_register_n +EXPORT_SYMBOL drivers/fmc/fmc 0x18367e17 fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x2a256ea8 fmc_device_register +EXPORT_SYMBOL drivers/fmc/fmc 0x3491a125 fmc_reprogram +EXPORT_SYMBOL drivers/fmc/fmc 0x5fc1d447 fmc_find_sdb_device +EXPORT_SYMBOL drivers/fmc/fmc 0x63e9b49e fmc_device_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x716ba0b2 fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x827ae2e3 fmc_show_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xb1c7cbce fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xce0761d8 fmc_driver_register +EXPORT_SYMBOL drivers/gpu/drm/amd/amdkfd/amdkfd 0xf71b4088 kgd2kfd_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00c05a11 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01ff42ce drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x022b9ae0 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0273729e drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02740511 drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02cc2423 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x058d1309 drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05c65552 drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0622ba24 drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06395a22 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06457fff drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0677584b drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06799fc2 drm_legacy_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06f98e84 drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0722e09f drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07825abf drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a2b6497 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a5321fe drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0aa079f4 drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b4b521c drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ba17e5d drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cfd958e drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d7e6f42 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e1fbf05 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f02d4a4 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f0ce6dd drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7f4748 drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10d19d0e drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13d62de0 drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x157038a7 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1581bafd drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15d83e5d drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15dc0d4d drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18b9e9a8 drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19417c02 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194588b5 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1949a36a drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x196906f8 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a0b0c43 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b4a2ca9 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ee9c241 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f58e2b8 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2013e396 drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2125cebf drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2163b449 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21a4b7b1 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21f40626 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24f8a100 drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25c15c8c drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2644e70c drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x277632db drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27f9fba8 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x281e1d96 drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28c07738 drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a418c87 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2aa50f55 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bead4e6 drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c4847f7 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d23297d drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31e8ecba drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3204b3bd drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3218e738 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x342b3b4f drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x361b32b2 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36a3f25d drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x394233bb drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39db5a22 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a7ec2a3 drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a951859 drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d52f0b8 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d6e8769 drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3df78744 drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e05bf1b drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ea3be3a drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40e1bec3 drm_encoder_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40ef0dcc drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41c256b0 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42dfbc55 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x436677fe drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x439c58b9 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43cafe17 drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43e92f75 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x447657b3 drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45581f84 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45959909 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45b1f2fe drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46299af5 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4787736d drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48f75e03 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490172f1 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4923ca26 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49fafc2d drm_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bb4891d drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d2359d2 drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e3b8ffe drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e4374cf drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f2d3036 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fbc4507 drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x512b089b drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53796367 drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x552ea322 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56331600 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x586e5d92 drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59d3b6d4 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a72e8f0 drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b1ac89d drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b82ad9e drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c84d6b4 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d663584 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7318dc drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6020f61b drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x608b0974 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x638d8c4d drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6477d9b4 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0x650fbeb8 drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x657d2881 drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67297c0a drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6789feef drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x694e2868 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b58e24e drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6de8b10c drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6df51dc2 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6eb6278d drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6eff3f70 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f219021 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7119e39b drm_connector_unplug_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x748ec840 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74bcd755 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75d3b334 drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76752eae drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76758778 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77548619 drm_framebuffer_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x794af188 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x798fd372 drm_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79cd5cda drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79d92c7b drm_plane_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b410983 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cfbfc16 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d4cc1e2 drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f3999ae drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81c07c12 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82e09ece drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8357cd64 drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x843ea63e drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84b20349 drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84e15657 drm_crtc_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85f12c25 drm_atomic_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x862d2ee2 drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8652d99a drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871b8bc6 drm_connector_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x874f9075 drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87eaad5d drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a588d6d drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ade3309 drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b1f571a drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d30a6c0 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d79df85 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de5c57f drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8df94a3f drm_agp_bind_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e87f2cf drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ebb79d2 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f45f5a9 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f47c46e drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x904f9f2d drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90fc0957 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x911bb482 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x916443c9 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x925d4d24 drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9282e4b5 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94bc0ca2 drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96a15ff1 drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9772c6ac drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97f4be59 drm_platform_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9898e95b drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9938708f drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a45d8c4 drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d3b74c2 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e78fba8 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fc589cc drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1365525 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2875976 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa395878e drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4f15dc9 drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5b3f8e3 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa77f8467 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa1f98f5 drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaae21d25 drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xabbb48fb drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacb5c941 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacca57a7 drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad33f0d7 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad7155c1 drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae088517 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf613444 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf9a3748 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaffeb2a9 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb210bb9c drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2462a8d drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb34de41f drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5540008 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5c1aadd drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb637b331 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7880b3c drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb84c1b19 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb88253b6 drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba9f4ef7 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdeb32b1 drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe409342 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc146757a drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1523d0b drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2b89ea7 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2dbcf60 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc31ed25b drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3f3443b drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc514c7a1 drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5ca6367 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6b48007 drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc860c0ac drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8b952a8 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc94697f5 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9a466ca drm_framebuffer_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca16530d drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb79079a drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbc8e2ba drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbd55ac4 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbda0e1e drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcce0e2e9 drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd100ecd drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd406db9 drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd478c86 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf6eb399 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf940c81 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1d4ff50 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2942279 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3be6ab4 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd44b234d drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6d89710 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd734f6cf drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7af0417 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda156c9f drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda3c3bf9 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbea915e drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbf61c39 drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc908053 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd1e4aa9 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd773ab4 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xddb86234 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde334dc0 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0781161 drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0a4a153 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3514284 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3f73a4a drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe522d4ba drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5b8a75a drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6c42bc4 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6f6994f drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe90a0395 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9f2de47 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea111c3c drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeba71e59 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec38c4b8 drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeca25a50 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed71d6a9 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed7c4a91 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed992dd6 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef3fb638 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef9c6a2e drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0f1dbba drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf11bb2fc drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf25a07e6 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf47b97da drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf64aa778 drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6f59f8a drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf81e44ba drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9f0d96e drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa121d3d drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb296380 drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb325563 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb49d36b drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbf34871 drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd0ebdb5 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd33b607 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdc4efd7 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff4f70b3 drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff74c00a drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00e6b1f2 drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02c564e3 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02d8cda5 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x034e3ffe drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x036b847e __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04f671f1 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x054decfc drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06315b6d drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07254c74 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c1f108a __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x119bb909 drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12b0bec4 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12caf0dc drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x130b4aa2 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x141d91f3 drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163044f6 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17910222 drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17ce2057 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x190eea8c drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1914ddb7 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b6596a6 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1dc7727f drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e66639f drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x213a36bd drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21a6451e drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21c4f036 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x237e2d9f drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24d9a4a3 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25b78736 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a889e15 drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2aa2550f drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2daec5f4 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2dff8175 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x339d5f37 drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33f9f24c drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3638c2c1 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x374d160c __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37adfea1 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b31eb9e drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b9eea4e drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d70a865 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3fc70371 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x404f0569 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44231d9f drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44e8b5ef drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x455488a7 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47110d6a drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e5c849f drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f138ca3 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51e31fad drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5320118b drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55a25a50 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55e12bdf drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x569988eb drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5873cda9 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5984e235 drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a6e6f6c drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b631bbe drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5cb4ed87 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5db6ad72 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x602fa8d9 drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61433b12 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61bad27c drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x633df5d1 drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63c6dbb8 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6458b7a8 drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64798c78 drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67c3b171 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68f84ea6 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a305e5c drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b13fff8 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ef697fe drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x736fadf3 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x759b15b0 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75d5f570 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77e7d6c8 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78289593 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78d5ae78 drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a517c40 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f4827f0 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80117697 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x810aee01 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x819bcaca drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81bf9c24 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a62d2dd drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8aa608f8 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92e0b9b9 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x937bc17c drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93ac7fe6 drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94ed6c56 drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95461544 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x962a51a0 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x974eb7cc drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b0e4556 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ef8f7f0 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f7ebda2 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9fd73729 drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1dfd76d drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa599717e drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa64681cf drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8ed1cf8 drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa9d73f2 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaae84839 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaafa6ae1 drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab6d38db drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xabd3c4e7 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae603c6e drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1927085 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2e1ee36 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3d10936 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3d922ac drm_helper_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8443a69 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbcaa3be2 drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf09f2a6 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf854327 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0f64690 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc19cfc71 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc85f57cc drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc89bfebd drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xccc7ec7c drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce9d5e6a drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf63da9e drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2850c2a __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2fee719 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3e9eecc drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4489bfa drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9521509 drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbc6103c drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc7a506c drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe123189e drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5f74c65 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7b31900 drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xecedb4fa drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeda2f866 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee37ee75 drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xefda794c drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0a4b927 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0e7eadc drm_helper_probe_single_connector_modes_nomerge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3421507 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf671a1b9 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd19b019 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd4d14bb drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0728fce6 ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x09dd6014 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0bab7f47 ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x113b333c ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1940e4cd ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1c540c90 ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x203c6968 ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x22ec80fe ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x24765c33 ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2947383a ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x297e8dd9 ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b677ad2 ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x30648c80 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3082916b ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x316e9f8e ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x356d1b0f ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3e84fdfb ttm_agp_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4207fd41 ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4559f925 ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x46fb8572 ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x479a4062 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4c322012 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4dbc67c2 ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e8dd264 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4ef50856 ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x56447ef3 ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x564e1aee ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6052860c ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x623d1fc6 ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6366432f ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x68410754 ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c8dc6bf ttm_vt_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6e875de9 ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6ffba21d ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x71760080 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7378a00c ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x762bd848 ttm_agp_tt_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x78a90bef ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7c57012b ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7cdcf184 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x836d8fd0 ttm_suspend_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8bac541a ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8bafd632 ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x946d9ea3 ttm_write_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d0eb91 ttm_ref_object_add +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9dd23bfd ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xab0bdcf5 ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xadd015f8 ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb579eac1 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xba9d102f ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbaa01a47 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbbb652cf ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc397a11b ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc4d4618d ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc63102fd ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc9834fcf ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce19ea2a ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf49f835 ttm_suspend_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcfe5f8d1 ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd144eac3 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd6610063 ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd779bfab ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd7bd4f0e ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdf55a6ad ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeb68a735 ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf08e0dcf ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf37eda13 ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf48188e4 ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf7d5dd1f ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfb5dd460 ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xa73e8aab vmbus_sendpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xbd9d6482 vmbus_recvpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xddb277c9 vmbus_sendpacket_ctl +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0e2a6864 sch56xx_read_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0f5877d4 sch56xx_read_virtual_reg16 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe5022f95 sch56xx_read_virtual_reg12 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xed1d2a08 sch56xx_write_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xef315a1d sch56xx_watchdog_register +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x114b42c7 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x3a347fba i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x59e1f217 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x6d15ac21 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xeed31e6c i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x32bd8c79 amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1221116b mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1b610c86 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1bd95852 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x33e61336 mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4b04aa8e mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x55036f40 mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x561dc5c6 mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6aabad00 mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x99233583 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa5aea588 mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbca75634 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xcdc24f28 mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xcffd9f03 mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd9643787 mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf13b687a mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf5401961 mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x5d413e3c st_accel_common_probe +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xd6fe207b st_accel_common_remove +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x2fbe0a10 iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x7397fae8 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x1b8d92e9 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x29ba4937 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x8879b510 devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xfe353a10 devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x266be5b6 hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x4125e3c6 hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xa04b0f22 hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc7dd36fb hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xd8f3bb0c hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xe7152334 hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x5b070896 hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x780833da hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xde7f0810 hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xe7c51f7d hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x1f2f0e7e ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x5fd43a99 ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x700711bc ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x768388b3 ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x7b0404d1 ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xa5a443cf ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xa9e6c68f ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xde4c3693 ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xec244adb ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x258c08dc ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x4b909089 ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x9609d9ad ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x9ff9c218 ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xb143e16e ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x60232ffd ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x8b044e9b ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xe16c7a46 ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0ebc3e0d st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2aa3a7b4 st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4828c4bf st_sensors_get_buffer_element +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x51571580 st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5dc8a600 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x6bdbb2c6 st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7436242d st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x768cf7fd st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x77785c3f st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7b432026 st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8478cbdb st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x866c0a6e st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x971c84c5 st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9d8ced6e st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xcd713d7a st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf0b05bfb st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf2900ab2 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x885f99fd st_sensors_match_acpi_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xc5384a69 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xbf527fe0 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x150e51f5 st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xa8e35a86 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/humidity/hts221 0xf37a6cc2 hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x12fce446 adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xbaf519c9 adis_enable_irq +EXPORT_SYMBOL drivers/iio/industrialio 0x025e854a iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x064e69f4 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x14d4d299 iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x1deabe99 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x308a43bc iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x33698391 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x3d1e0b15 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x7b5addf6 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x9d5c563a iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x9f77cb7b iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0xa50aa3c7 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xae802924 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xb4117b1b iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0xc2d40d3c iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0xd67db27e iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0xde54f89f iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xfb5e0c41 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x3b635648 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x73f6b978 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x3c66efaa st_magn_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x531e7e5d st_magn_common_remove +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xbdd85dfb ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x8b18bb97 st_press_common_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xd3c1d0c6 st_press_common_probe +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x049ace30 rdma_addr_find_smac_by_sgid +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1edc4064 rdma_addr_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x81cb1f37 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x8a7f2f7a rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x8f6152f7 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x9d9cabc5 rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xa2c039eb rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x07b3cae4 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x17ae73ba cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1e9bf6fd ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x24ec9b77 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x33eabada ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x44c66540 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5c025ce9 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7f16e23f ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8ac7eefd ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xae7896ac ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb4e9f3d2 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc0067d67 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc4731fd7 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xccb3e069 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd69ef88c ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe4351ebb ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xef7202ec ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfb410d37 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x004f0006 ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01f7b989 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05992298 ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05d6b050 ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0741840f ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a89d2a8 ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0dbe3a63 ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0dc8d01d ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e066965 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10a4feea ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x161763e8 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a958973 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d5205f1 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2395b86f ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x242fdee9 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2644aa67 ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e1edb59 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f76215a ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3002165d ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30ce30e3 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39020935 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3afa1b3a ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4222b3aa ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x422e4f4e ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x460510ae ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4994a60c ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b57ce0e ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b93fbfd ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4faa66fb ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x555c2f05 ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5787bb6b ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59b61f23 ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a28e7a0 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f526519 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6884c8f9 ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6aff8c43 ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6dcc101d ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71f49d96 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x783b4037 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7875dc98 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80bb5b15 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8251ea94 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8374cf9d ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86b992d8 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x890042b6 ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8bb10036 ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c0583d0 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d6428e0 ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94f707f9 ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x970f0d78 ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99c84863 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b9df26c ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ba5d93a ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c27c071 ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e4eee9f ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa38d1a2d ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa822196b ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa2ced41 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa35bd61 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac8ea35b ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6678d23 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93761c9 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb277c37 ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd7a437a ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc08ff804 ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc143b361 ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6772e8c ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6c5e93e ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc70b8e1b ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca28ed21 ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb4084a1 ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb68729e ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce746cb8 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcec18a2a ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd17b4191 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2a84106 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd775fa0a ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xecf09ca3 ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf40fba36 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5577c47 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf61f1013 ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf90637c3 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb32ea09 ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x07eaa171 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x0ce17af5 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x17b608eb ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x18bcbb6e ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x21f6d071 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x257860a9 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x286de3c7 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x37462a7a ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x8b5a88ea ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xa2d6c82e ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xa61baaa7 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xaf0dbe5f ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xe0a86a9e ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x05f51c4a ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x0e401710 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x287d1e73 ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x51427021 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9a65f041 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xa59dff5c ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xb25629e9 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xb67f27a4 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xdba22b82 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf23dfdd7 ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xfda7d463 ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0217ca87 ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x75578784 ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2e532149 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3a0e0208 iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4e365787 iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5260aee8 iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x56f67f78 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5cb8648f iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x69586590 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7bedf905 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99b5bb69 iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xbe5ba0b5 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xbefeb831 iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xcb891797 iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd0a7d7f3 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe8b24155 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfece8aeb iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0311efc8 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x269ae3ab rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2f7abeb1 rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x32fdd36f rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x35f9d310 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3689d353 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x38ee070a rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3961f687 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x512f8065 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x52b17565 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x55ecee32 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5b323afb rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6cb40e83 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6eba0bae rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7b301ea0 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x81f422d8 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8e340969 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa0c9f9e0 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbb22ab7e rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe18e1575 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe249553c rdma_create_id +EXPORT_SYMBOL drivers/input/gameport/gameport 0x300b0a06 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x57ce58a9 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x76827be4 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0xb30476e9 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xb4d7d08b gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xb6e63aab gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xbe9d7ed3 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xecf8bd5a gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0xf9b89130 gameport_set_phys +EXPORT_SYMBOL drivers/input/input-polldev 0x31c24ee0 input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x42d3c26b devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x928faeb3 input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xb4642c5a input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xeb866ac1 input_register_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0xefbdd52e matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x4f9bccb9 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xaa846a5c ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xf5d8a2be ad714x_probe +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xb0bc60f6 cma3000_init +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/sparse-keymap 0x11e785fb sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0x34eb19eb sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x4b23a3d9 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x6881e19f sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x794bfa0e sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x7c8eadc3 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x3e0c65d0 ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x7efc04d0 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x2432991d amd_iommu_init_device +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x7afef95c amd_iommu_set_invalid_ppr_cb +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x9296bb23 amd_iommu_bind_pasid +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x950173e3 amd_iommu_free_device +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0xf4bba096 amd_iommu_set_invalidate_ctx_cb +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0xf4d856d4 amd_iommu_unbind_pasid +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x63653a15 capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6e76c78e capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7292ab34 cdebbuf_free +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x72a25a72 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x744a7cab attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x79ca9ea9 capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x822e1ac2 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8c83755e capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8e3e6b79 capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xca4c9625 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe71fa3e3 capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf0681caf capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfd552f7a capi_message2str +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x05f59c3e b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x08bbaf77 avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x262c7ed4 avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x36d4f63a b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x3d9fb144 b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x49bd73cf b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x62de4a6c b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x8636ad1a b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x9f4fb45f b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xa2038988 b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xc325b9ca b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xca598386 b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd2dde5a1 b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe189151d b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa6fa20b b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x2c6dbda4 b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x2fa0ec09 b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x3cdd5556 b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x5fd5b638 b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x6b72e77d t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x864b0767 b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x8859ecc0 b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x8c207290 b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xead909ab b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0x29562993 b1pcmcia_delcard +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x665e9c71 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x8b2418f8 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x953bee26 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xe6a95cd9 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x0441d3e4 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x4337d002 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x473a0464 hisax_init_pcmcia +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6fe1ca04 FsmDelTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9f987c85 FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xa1bc94b9 FsmInitTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x174a8c56 isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x19e4604a isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x4475e642 isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xe2c4ea6c isac_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xec497eae isacsx_irq +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x1b0f1cd7 isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xd482c8c4 isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xff95c68d register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x012100ad bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x02924640 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x355086e4 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3b029653 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3df5aa34 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3ecc9623 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x652a5ca4 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x657f3f33 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x67905925 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6910f021 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x79609402 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x873b9970 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xac611cf2 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb6c31ac8 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb77a21c8 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbb72a995 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcb35e5ee mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd46e4738 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdb54c157 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe2151a88 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe62e3728 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe86ad54b mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfa183696 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/md/bcache/bcache 0x1f529ce8 bch_bset_build_written_tree +EXPORT_SYMBOL drivers/md/bcache/bcache 0x440b4830 bch_btree_iter_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x44a37d62 bch_btree_iter_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x5b59b856 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0x60f0bd65 closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7daccb73 bch_btree_keys_alloc +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7f2a56c0 bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x8833b0e8 bch_btree_keys_free +EXPORT_SYMBOL drivers/md/bcache/bcache 0x8f8fc624 bch_btree_sort_lazy +EXPORT_SYMBOL drivers/md/bcache/bcache 0x8f9cb905 closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0x94126895 closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0x9aea0422 closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0xa3c5c702 bch_bset_fix_invalidated_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0xca5df778 __bch_bset_search +EXPORT_SYMBOL drivers/md/bcache/bcache 0xce47a6d9 bch_btree_keys_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0xd2813054 bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0xd97c32a1 bch_btree_sort_partial +EXPORT_SYMBOL drivers/md/bcache/bcache 0xdf892351 bch_bkey_try_merge +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up +EXPORT_SYMBOL drivers/md/bcache/bcache 0xec6f33d0 bch_bset_init_next +EXPORT_SYMBOL drivers/md/dm-bufio 0x268682d2 dm_bufio_forget +EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL drivers/md/dm-log 0x92c6404a dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xacc5755a dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xb733f338 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xea021a7b dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x25e215aa dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xb8386883 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xbb6663db dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xd2e703eb dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xe36bc328 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xe9d409d8 dm_snap_cow +EXPORT_SYMBOL drivers/md/raid456 0x6e6667a3 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0b9463b1 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x32d6ec6b flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3ea05d74 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4a967449 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4ccfd6e9 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x84e357be flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x878bf668 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x992d62c5 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9bf66f9c flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb7c1f3b1 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf658118e flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf6ea7dbb flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf9878b93 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/cx2341x 0x0a0daa1e cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0x30cb4cd7 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x87897fbc cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0xa066b7eb cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0xae319202 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0xf8534971 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x38c689cb tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0x9e18d38d tveeprom_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08c0ecf2 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0d3c856a dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x12f5425e dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x14fdf0ee dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1c053a2e dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3405dbfc dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x37ebb3d0 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3dd7e0af dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x447ac290 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4cf3b0d9 dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4ec6c199 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x58e81ea8 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x59d758b0 dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6057518b dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6560e532 dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x69481245 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x69ec96ba dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x69fb82dd dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x746c98c7 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x808a9064 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x85e876a5 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x87dd6b71 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8bcbbafd dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x96ffa5f0 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xaae396eb dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb0ca2500 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb34d782d dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbfda6501 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc2dfe52e dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc4e7cfc0 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc7a3740a dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xca7ca95c dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd6d6f856 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd8988b7b dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe1c71dee dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xeaf47cb5 dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf1d78344 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfe467947 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0xb19bc23a af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x3180a36b ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x608ed33d atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0474765b au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2dec9bc1 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x347640eb au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5f8e7830 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb02422e6 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd8b1409c au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe3b0b270 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe68f7c2a au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xef138b2f au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x332ad577 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x5260c735 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xcca0ee25 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xdd4e101f cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x033922f9 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x361b0a30 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x98b0ad32 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xaf28c04c cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x09f9f9e1 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x2a10b2a8 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x5b11f07b cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xbae130b9 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x655f914d cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x770da255 cxd2841er_attach_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x8f1cfbf9 cxd2841er_attach_t +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x0cacc5be dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x3fa1aeb5 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xbf52dc3f dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xcb54396b dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xebf3928c dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x00aa7841 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x00f137c1 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x11f1922a dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6ab69a04 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6bff5dab dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7146cb03 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7adf830f dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7ae15f5f dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x80984682 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa1ee9aee dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xab48461c dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc1f3160e dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xcb769885 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdcf44c16 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xea67b589 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x495336ae dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x00fef423 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x2d902a0e dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x411ab86b dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x550ccb73 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x79f6302f dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x9ebdba83 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x363b1ae9 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x5c9e8687 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x65b23197 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x8f93480a dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xc1668e3f dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x0548a612 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x4bfad68c dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x5987d0eb dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x8091f5a6 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x84e12f86 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd2c17eba dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x3c31909e drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x262d4e77 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xa7f0beb2 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x12ae4d52 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xf8740a28 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x2093511a ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x09128a12 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x18dc5502 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xcd14bb37 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xbce3afc2 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x33ebe63d itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x4a64746b ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xfe5f708a l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x044dd949 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x8eb5f0aa lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xfc9162c9 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x9e9e46d0 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x04eada42 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x1120153d lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x1c8d7e14 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x242eb926 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x8cd34ab6 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x09c7d943 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x9934226d m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x14646980 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xd4a245f2 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xf0bc45c1 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x6f76b986 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xb2df52af mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x2f58ef3f nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xcbebf8d9 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x94861f0a or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xe9b06a64 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x09f78c28 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xd3be3a9c s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x03f1f1ff s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x405200d7 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x7f4a3dfb s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0x1d31dd47 si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x621972c0 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x91c1c47f sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xc27406be sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xc98698da stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x06fb5931 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x7ed55d81 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xf7a9da72 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x8c959271 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x1126bab1 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xb411a54a stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xb7489d50 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x91edce95 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xd12d10ec stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x10916ed5 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xa30d323c stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x2fc2280c tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x3e044e07 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xc1d3fe50 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x80654f2f tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xb470e747 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xc4841ef8 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x486fab41 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xa11aee79 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x4d887bc1 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xbd021a07 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xa40beaf1 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xcd31c4f0 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xc7650d24 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xf1458536 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xde4e10d6 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x667daae8 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xca9a7d23 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x13911351 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x16fc9238 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x4c3cae1f flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x8cde1ff7 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc0e72ae5 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xd49c198b flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xde9a744b flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xad042d5d bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xb33dff47 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd17b225e bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd8212def bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x04867ad1 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x292f6119 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x4fda2e1a bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x01e44e6f dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x64fbc83e dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x833dd449 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x882387ab dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9fbe9176 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc46e6865 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xdf689dab dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xdf861202 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xeaedf210 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x0cf59497 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x076d9e47 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2b1df380 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x6196e21d cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x791ef10b cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xc6e56980 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x73d78ab3 altera_ci_init +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x026769b1 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x3f044424 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x448fe8f5 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x4c6987fb cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x91fa511b cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd2557676 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd457b13b cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x98f7f601 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xe9c0e193 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xa306e627 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xec810a94 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xfa65e65f cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xff4f5325 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x2d9b3d1a cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x3a4577d9 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x3e99a933 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x87a3fd59 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x95db3046 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe498689f cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xf9cd9983 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x183ec162 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x24123956 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x25b6c75c cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x29aa6dee cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x33f5ef9f cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x46deeca3 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x54778dbe cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x625e3cb2 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x65ad6bff cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x65fd31f3 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x67707b77 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x751be0cc cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9423e6cd cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa2c8523a cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa96d82ed cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc64f2b21 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcd860a51 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdc8a955d cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf70894fb cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfe5e7fe0 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x29c7ae08 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x40992ffb ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x48d5dd8c ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x540b4256 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x60c8b9fc ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7637857f ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x85ea3d70 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x940c09a9 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x98859328 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xafe24207 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbb5f7631 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbc14cd65 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd1e6fa48 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe43bc854 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfabf411d ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfc63234a ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xff2d0aaf ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x01adba95 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x151b5571 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1aa54170 saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4d128293 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x63e7762c saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x65b4b03a saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7307a273 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8c258cea saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa509fd5b saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xba5a185e saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xdf3dd386 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xeeeba60b saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xd7e6747c ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x2346d1c8 videocodec_unregister +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x66d30627 videocodec_detach +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xbb1baafc videocodec_register +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xf75dce9c videocodec_attach +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x0d52a9d7 soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x216df3b8 soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x267e272e soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x73a0211d soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x8522b818 soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xc5897fe7 soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xf6d11695 soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc +EXPORT_SYMBOL drivers/media/radio/tea575x 0x01f76545 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x22ee9ee7 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0x289d81f5 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x41b9632d snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x486c0399 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0xe51b89a1 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0xf20441a1 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x0fdbd063 lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x24d02aa0 lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x45f0f75d lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x5780ac4e lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xc724ea58 lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xd544cb1d lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xd9e06165 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xff8f0272 lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/rc-core 0x7a685baa ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0xb807990c ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x8122e390 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0xe38d187a fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x4c11c3da fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xedb3535f fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xf9b5c2ea fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/max2165 0xca9104c8 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xa289010e mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0xe8ef150f mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0xd0a7a22a mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x2af81c5e mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x940d071a mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x53571f74 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x81b4764c tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x77d7683d xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0xef0464b2 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0xab172b26 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x45a865c1 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x80c49a1b cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0591f80f dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x07ed413e dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x424734ca dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7708e26f dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7a35354a dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x84d307ac dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x944a5c20 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x9ed80598 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf116b517 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x04d49cb6 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x0d08997d dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x5ccd7f71 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd9272627 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xdf577477 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe79b12b9 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf6fa7f52 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xded74c8e af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x0029a6b3 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1b05d962 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x47aa896c dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5729ce15 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5c58a569 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x83809a45 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xba30a9d0 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xccc181af dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd5209a80 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe578ad94 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfe6b7ab4 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x0583ee48 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x8e22ae21 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x09a4ead2 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5040b903 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5622301b go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x958ac59c go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd0781765 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd4a9418a go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd93af9c3 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf9d71ddf go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xfdf77713 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x0f33af09 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x1fb08f1b gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x48decc1e gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8d2c4dcb gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa4edf63a gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xae7c5947 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb4f59077 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc9770cfe gspca_resume +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x5c76df9c tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xf30035a1 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xf3b7933e tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x0cae3b05 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x27693acf ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x852ee5b7 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xc92ac1d6 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xd6f44ebe v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x37f4e6e7 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x3ae2d458 videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x4bac46e3 videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x5da5121c videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xae2c82b0 videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xe20cc0d5 videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x1d3259b5 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x90bee7ee vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x23072925 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x237f7054 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x50ff30b2 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x6a01517b vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xd21dccb4 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xf9d636c9 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0xb94c398b vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x04ee859f v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0a752dc6 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0c2ebee8 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x12ea0bfa v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1428a17d video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b002a0d v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1bd379f8 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1cc04bff v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1ce615d3 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x23249aef video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x24947e82 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x24bfdf61 v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x27ceae2c v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2c8899b9 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x33c66bd9 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3676f221 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bf27cc2 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x42449414 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x46eb55d6 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x476bd25e v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4cd9b3a3 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x512226e0 v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x59648336 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5f01a00b v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x609bb6dc v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x664904ef v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x66cdaad7 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x67bde0e8 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6859db45 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6f250b4a v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x765e2b81 v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7c3d8b00 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7f8c00c0 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x803ae0f2 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8450f404 v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x859916ee v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x87a62ee2 video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8a911dad v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8bbf020c v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8bd4bcdd v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8c914a1d v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8e5a85ca video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8f4b3e81 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x996c99f5 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x99b56ed4 v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa00f3bd8 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa3035e85 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa9e2df63 v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xac1d28dc v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaf13d741 v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb618dc2f __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbad035f7 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbde51706 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc33f1ee1 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd61b5553 v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdf0a2b67 v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe432e416 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe4f55f41 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe628ac1b v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe912b917 __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeaebb1e9 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xec95c74f v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xedef177e v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf1c42a69 v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf38b49c6 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf430f210 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf4791f0d v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf7230a71 v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/memstick/core/memstick 0x0d5c824d memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x15e7bddb memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d1fcabf memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x64f56710 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6b59d0d8 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x862fc3e7 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x9251ae3d memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa66ad9ca memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xaaf3670f memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xbd0bc0c4 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0xcfbb692b memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd8085878 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc07e67e memstick_init_req +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0116f3eb mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x13d0d5ed mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x17ec3619 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1d56bafd mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x211f56f9 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x397c93c4 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4a60a9aa mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4c2e48c9 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4c79404c mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x53892c2b mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5dec3ce1 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x68f055b1 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x698311ce mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7e772aba mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x84cf189f mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x864bb2ce mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x89919b1a mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8be6261b mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8c187285 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x92cfce34 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xab1c106f mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb1f25e66 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc9712a3f mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc9a9182f mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdcfbc187 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdf440160 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe4683331 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf3b79f68 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xff50efe0 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x079e0831 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0ff52e8c mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x177e9640 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2e1c68fa mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x32d05a53 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x402391d2 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x511add79 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x52f61b32 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x56d35dbc mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5b725c6f mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7087e56d mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x70ca8802 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7330113c mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x767d4ea6 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7f0ebdb3 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fba83de mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x831050f6 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x927088e9 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9ce1c437 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb6032d7a mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbb3d4d1b mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd2cae94e mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe0c14f83 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe12128f0 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xea1277c0 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf62b1ad5 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfcd92246 mptscsih_abort +EXPORT_SYMBOL drivers/mfd/cros_ec 0x74508695 cros_ec_suspend +EXPORT_SYMBOL drivers/mfd/cros_ec 0xb89251f2 cros_ec_resume +EXPORT_SYMBOL drivers/mfd/cros_ec 0xb97e2230 cros_ec_register +EXPORT_SYMBOL drivers/mfd/cros_ec 0xf376ce36 cros_ec_remove +EXPORT_SYMBOL drivers/mfd/dln2 0x4eae9d7d dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0x5809efd6 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xa6369c2f dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xb74273cd pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xd9ab9232 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0fbc1392 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x26ecca58 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2ab02f5f mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x306a1977 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x560c69e4 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb5ead0ec mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb9b98eb3 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc9120204 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xdead27cd mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf51339d1 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfbf5c8a5 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 +EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 +EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib +EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led +EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw +EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x0787fef2 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x77bec1ee wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x2fbdef2b wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x7d71acbd wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x82e5569f wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xb0dfed06 wm8958_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xb52c7a44 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xce4da626 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x13090222 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x2e2c2109 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0x4094dd31 c2port_device_register +EXPORT_SYMBOL drivers/misc/ioc4 0xe3c1bdac ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0xf52e7864 ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/mei/mei 0x5eddbbc9 __tracepoint_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xdd1b8214 __tracepoint_mei_reg_write +EXPORT_SYMBOL drivers/misc/tifm_core 0x35272a2e tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x38b4922b tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x3f77ca8f tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x627eadd8 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0xa8c2ec46 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0xac889e31 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xb639d902 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xc0e390f5 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xc27d1025 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xcf4c6b01 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xe291baa3 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xf6844b71 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xfce0411a tifm_add_adapter +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0x28b21366 mmc_cleanup_queue +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x40447ee3 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x584a22e5 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7a11fe77 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xcd378499 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xcf323972 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd3249e27 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd940dc13 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x0b94a01b map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x27eda614 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x5824e7b3 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xd0617ac2 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xdf0ad4e7 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x16505ca6 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xd0244026 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x114dc366 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/mtd 0x83218739 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/nand/denali 0x5f3863f6 denali_init +EXPORT_SYMBOL drivers/mtd/nand/denali 0xd3b37346 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/nand 0x0e9b7379 nand_scan +EXPORT_SYMBOL drivers/mtd/nand/nand 0x298fae08 nand_lock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x2f718d94 nand_scan_tail +EXPORT_SYMBOL drivers/mtd/nand/nand 0x66b9af66 nand_scan_bbt +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/nand 0xe93268c6 nand_scan_ident +EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL drivers/mtd/nand/nand 0xff2ce258 nand_unlock +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x38cfb625 nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xde082306 nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xfd8a70b3 nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x2d2b8978 nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xffaa45b1 nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x8cfcf75c nand_flash_ids +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x4b509b2e onenand_addr +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xb7757545 onenand_scan_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xcab50476 flexonenand_region +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xdc8a1f38 onenand_default_bbt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1b007f1f arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x33c4e4a9 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4552c8b2 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8eb1c762 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xab5a8d52 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbde43596 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xcf2e5005 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd643a746 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf3fe9b1c arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfdbd65c6 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x33ea5c3e com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x8ab26171 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xbc676556 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x122e1316 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x45adf62d ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x77d202ca ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8aea3762 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9174f2f1 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb7f1accc ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd10ff626 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xde9b036a ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe2291284 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe41d233b NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0xfac712db bnx2x_schedule_sp_rtnl +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xd4304d78 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x0d8be5fd bgx_lmac_rx_tx_enable +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x285bde59 bgx_get_rx_stats +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x42264715 bgx_get_lmac_count +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x6dc1648d bgx_get_lmac_mac +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc397f585 bgx_lmac_internal_loopback +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc82be691 bgx_get_map +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xe48ca42a bgx_get_tx_stats +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf101d1b2 bgx_get_lmac_link_state +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf9508980 bgx_set_lmac_mac +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1110b12d cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2c8e1b2e cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x486a6f04 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6348c407 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x641047e1 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x678348bd cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7e8093a8 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x875be631 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8beb9132 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x955ef9b5 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xad95903a cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb4a204a1 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcc9b0e26 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd11d0a62 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd192ffa7 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfd3cfb53 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x03caf6ea cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x05e82631 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0822d158 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x09efdd40 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0dfcfe95 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1611f32b cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1a40f324 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3273364c cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x35d51ca9 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x36d2a977 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3d166c32 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x42b65d38 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x564e17cb cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x57707dfc cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5bb8e80c cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66388b7b cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6d9b2a63 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7c29d91e cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9376847b cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9d78f63e cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaed9933b cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb0715f6f cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb8903984 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc6033a5f cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc8678561 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd6ccab32 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdaecb519 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe0884753 cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe60701ca cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xec74af65 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xedad6185 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf3e5e595 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfe333f6e cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xff6074db cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x05745fd9 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x3cec35de vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x40ebf745 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xb4bb075b vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf21d2d3c vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf5e4f4a6 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4a571be9 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xff3341f5 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02fea453 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a6cae07 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b559029 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x193487ff mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a3c50eb set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20c18e28 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26eb367f mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33d3d2a0 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3544b9c1 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38cd835b mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39c7edcf mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ae4bc44 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x537c41d9 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57d9ef64 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5998d2c6 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a196711 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63e515c3 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6832ec34 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c3ec01b mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7cc6c8ea mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8dfacf77 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8fb20be0 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x974b1e8a mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f2bdc67 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f658395 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa642a8da mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7c3115f mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xadb7dc16 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae6453bb mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb52ff99f mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe357e8a mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd07dd050 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5102a7c mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5170bc3 mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6f94643 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4dfca40 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc095422 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff8266d9 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0857aabd mlx5_get_flow_table_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb7287e mlx5_del_flow_table_entry +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10a8c2d2 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1230ff83 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2db8d08f mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x409f2a36 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d742747 mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4de844ff mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4df6eed0 mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5482d56a mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5bf58ec2 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c3a1a26 mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5dd96966 mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x680c6599 mlx5_query_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a7ff154 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cdb98e7 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e099901 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x717886f9 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x729c3ea3 mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78b6455f mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x861109ae mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88f5ccb5 mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d8b4582 mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9425a0f7 mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x967ccf86 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x97a2ee46 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9aa3c8dd mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c0f1766 mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c10a0e0 mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c10e3f3 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9dfd222a mlx5_modify_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7173c05 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad44c1c5 mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0aa2810 mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0da66e9 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcda7e3c4 mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd04a8b06 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1b55e56 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6af33e4 mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfaef3ebc mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfba86fd0 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc728a49 mlx5_add_flow_table_entry +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x037028bb mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1875feaf mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2d07a992 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4b6fa25a mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x64bb6db2 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6300fde mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd45f67ff mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee8e0771 mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfe193303 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa209d1af qed_get_protocol_version +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xfa265020 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x0fdbaf62 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x5d0b3609 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xc19d4b96 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xce8d7122 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xe2632151 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x02f6b52f irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x0cad3300 sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x2c08e4cb sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x3206141c sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x3747a0cf sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x3fcadd52 sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x4f50bcae sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x5c0f62c5 sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x5d6fbc09 irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xc51656d7 sirdev_set_dongle +EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mii 0x107b04aa mii_check_media +EXPORT_SYMBOL drivers/net/mii 0x4082c2fb generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x47e9b44f mii_check_link +EXPORT_SYMBOL drivers/net/mii 0x5390bb23 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0x86a2d5cc mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0xaddab581 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0xd28b931c mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0xf1f3fab7 mii_link_ok +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x6b2caac3 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xbfd1eac1 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x3e30ff4b cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0xd7c40f61 cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x0a28978c xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xc9c08f55 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xcd40d3a4 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/phy/vitesse 0x53fb2518 vsc824x_add_skew +EXPORT_SYMBOL drivers/net/ppp/pppox 0x2a771182 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x2e4ae6fd register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0x722c1f53 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0xbafb1c01 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x37c519e9 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x4c06c38d team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x57a3404f team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x78933bce team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x7a255e98 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x89c55791 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0xb12543ab team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xd3225d36 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/usb/usbnet 0x3ad0dc97 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0x52c59a3c usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xdf30a084 usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0xeebc078f cdc_parse_cdc_header +EXPORT_SYMBOL drivers/net/wan/hdlc 0x18faa8ab unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x485e4f01 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x521ad61e hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x69dc2c3a register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x76bb773f unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd5b41ccd detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd843a841 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0xe191b019 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0xe62f5a44 hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0xfb818b3e alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0xfbfce0e0 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0xdfb88a93 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/airo 0x272482fe reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0x89c20601 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0xe882ae8c stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1c773150 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x24a6fee8 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2b925f5a ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2ef3e045 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4a470310 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x589110f6 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5a2e3bc9 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5bbf4c2f dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6f33eed8 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7d5c367b ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x83e2ca57 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9978490f ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0dc06dec ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x11041022 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1dfbc9f7 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6ad36f2d ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7b5e0ebe ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7cba0ba0 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9190cfd6 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x925a1ece ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa93b90b4 ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xab01bff2 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xab3de418 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xac8abaed ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb71cb8ba ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc873e37d ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xeb8d7294 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x280784a4 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x329e5e26 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x33e1b361 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x491b41d6 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4decfe00 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7ee29f95 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8b8e76f9 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x9b2467db ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb8784704 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc92e66e7 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd774963b ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x08757352 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0c572a8a ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x12123b3a ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x17476def ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1bd8a7a4 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d88d8f2 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x30bd74fa ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x393794f4 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x47a22344 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4ed395a9 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6004c244 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x64326d81 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7a187507 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x82601b2a ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x89a4a707 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9609c137 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9c0eb62d ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb1433c6d ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc6280457 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc70e2ef5 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc71032b6 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe7dab5b6 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xefbc20f2 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02f2462a ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04d7d974 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0680b340 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x080e0cde ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x09dd0836 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c496870 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d2a54dc ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0db5e373 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1851c4d5 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b9e96d2 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1cc720e6 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1e286ff7 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ef8ea4e ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1f0737f0 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1f427c8a ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x20a24b48 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2279ee8d ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x237bbd93 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25373b52 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x26d1afb2 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x26dae048 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d35e9bf ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ee79d39 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ee90099 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2fd99c55 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x30099627 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x35ee12cd ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x374becb8 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3cc23a5d ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3ff9ec05 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x415f4425 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x41e6e9dd ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46a75ca9 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x483fa279 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c1dbb77 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ca8ef3d ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x519fdd5b ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x52b76cf8 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53971b91 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5693167c ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5830af13 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x58b651ef ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c59b1c0 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x647274e4 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b6578b8 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7078d6ef ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x727609cc ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x771a1fcc ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x782bc1a4 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x789047e0 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x78f54e2b ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ae7534e ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x83f82969 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8a1593c3 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8dc7cc3f ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x907760f5 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91af79c9 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9367b970 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x94006d43 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x94d48b17 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9683d229 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9c22b603 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d4faa24 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9dc534ec ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9e7e0575 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa1db1ec5 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa2a514fa ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa30f4a03 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa455ce12 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6036234 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xabcfc8d6 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae6e5633 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf3f6870 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2c781e8 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb8cdfb13 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0123344 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc21d2342 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc4dfcad2 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc6c18f9d ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb14bdad ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb2f2d6e ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd163e5b ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd40b95c ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf7cd521 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd0a12c32 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd5eac5df ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd61fb426 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd66690e6 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6c2bd4d ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9b760f6 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9f65e30 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xda48fb07 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd2868e0 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe127cfb7 ath9k_hw_request_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe164c53e ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb747c7e ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xed44e7ff ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xedc52e02 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeeb54198 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeec3a482 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0194cfc ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf22be37b ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf410472c ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf6cc6f6f ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe1e9235 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/atmel 0x044751ab init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0x31df6dd0 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0x354e8857 atmel_open +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x038ab1dd brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x0f667bfa brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x391c78ab brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x48a552f8 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x56cdb074 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x6915e814 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x87474bbb brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x8a5963cf brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x8fd15f9e brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xb22e162b brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xcb57b0da brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd76aea40 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xf99455a9 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x11938aad hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1723ac32 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1ac0f037 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1fef7d8d hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x239eca61 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4505bdb7 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x47240b8c hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x484ed78d hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x499f5331 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x50a5babf hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x545c49f3 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5c2b3f49 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6177ebee hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x61fba936 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x66cdb83e hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x69dbc35f hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x899a24ff hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xae2937f0 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb7f1b8b7 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbed237f5 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbfcef73e hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xcc988e68 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xce849a34 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd04bb4af hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd30bddfe hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xff56dd20 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x01b8ef3b libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x32efbe0b libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x358f43db libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x3609f6b9 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x409a1d76 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x535f2945 libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x6a0b40ef libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x6cd43be4 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x757fbf9d libipw_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x8504a535 free_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa9e9ae66 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb6a0b46d libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc4444e73 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd0e414ca libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd2f1f48e libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xdcf32433 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xde7037ab libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe363e29a libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe82987f1 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xebe5fc83 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf754a510 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x005a85e2 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x013f677e il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x018f4661 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0543620d il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0a93bc82 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0d8c4f37 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x11c52f2f _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1502a5cc il_update_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x15fb717b il_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x18ec7002 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1933f84f il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1ef3405c il_force_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x20e10b9b il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x21547f4b _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2633d51c il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2b3c8d27 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2b46a752 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2c379949 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3243271a il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x36c3ae56 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x407f1bbb il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x40d16bf7 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x43209a92 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x462f7dc4 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4d899a9c il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4e52edc4 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x51ee0495 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x54188a95 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5573d000 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x574aa088 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5c040100 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5d70bf96 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x649bf9b2 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6577ffa9 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x65eeca2a il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x663a1ac0 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x678417e8 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x67ac939a il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x68b85a2a il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x68c3b0af il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x69bcd38c il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6fed38f5 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x74832050 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x74973980 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x768c9941 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x77cdb06a il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x79d671e1 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7bd7cf60 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7fbbbe4a il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8201f6eb il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8262fb9c il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8366a5d6 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x869541a2 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8a582dcd il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8b97fe14 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8d1b797e il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9b266e05 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9b47b2a2 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9bf29743 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9e55ec79 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa04c93ce il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa06861fb il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa58182df il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa7cd2e82 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa83fb1e6 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa9ba45a0 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xaa5ea312 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xaec92927 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb1c1141e il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb200c016 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb2e7c86b il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb50e41f0 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb69526b5 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbcc6e21b il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbd260186 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbe1d8492 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc9ea9652 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcb44eefb il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcd4342f3 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xce56a930 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xce83deaf il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xceeb2b5b il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcf3844fb il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd23a36cd il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd3cc5f08 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd4220f56 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd55e72d2 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd574ca2b il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd6fac3f9 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe0183655 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe0b5fccf il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe8723cf5 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xea3f2149 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xeda89530 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xedeffac9 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf324a743 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf3f0f16c il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf4a92641 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x1b06ce78 __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x2447a6ab __tracepoint_iwlwifi_dev_iowrite8 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x314a20a8 __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x5e9c24ff __tracepoint_iwlwifi_dev_ucode_error +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x8c8ab242 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x9a1b1df9 __tracepoint_iwlwifi_dev_ioread32 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xdced6db1 __tracepoint_iwlwifi_dev_iowrite32 +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x00bc266c orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x02cf7fcf hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x09af522e orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x6777dc36 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x747537b4 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x91450e3b orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x9c1d3d0d __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xa776bf4d orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc2ac4a7e orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xcdf029f7 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd3a8db61 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xdd6c1239 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe3019590 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xed6f033e orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xf3fee895 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xf49d14a1 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xf79d0846 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x008b9c2b rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0f795e0c rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x11595a4a rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x137b4001 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x177f7f61 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x18c5f96c rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x21fb222b rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x237d4310 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2c047e16 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x41e76efe rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x43c1fa62 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x54133ca1 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x559a9137 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5c29ba06 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5f90c116 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x61cfc6e2 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6ef90295 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7c10f5b4 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7c7ad937 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7eca5d19 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8a5c7106 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x93e2f0d4 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x97393caf rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xae53c5bf rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb196cb15 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb497e7f0 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbbf456e2 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbdf0686b rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc7f92b4f rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcc571d38 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd0cac57a rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd0dd3f58 _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd3e0ba47 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd47e2693 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd4b5f5dd rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd797af26 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdcec089d _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdd8efb5d _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe29d75a0 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeb02dece rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf1a954d5 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf8f0273b rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x23717b6c rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x5abe7a60 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x9535ad7e rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xb83ebf26 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x1176dc62 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x9ee041ea rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xd64e6775 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xe005027c rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0fda996b rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x254d41b1 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x25fa23c9 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x29252d39 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x29dc0d74 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5a15f303 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6381b40a rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7ddf983a rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fad1ce2 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x88ce55cb rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x898ba440 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8c263614 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8fd22b82 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9065ca7e rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9559d411 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97201501 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x99537b11 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9f7cd381 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9f8c536a rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa4a06f9b efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa7d4ca5f rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaae07126 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaeaf12f8 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb531fa53 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb81d3c9a rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc0c1db7a rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc70c552e rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc79fc2d9 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xbe2c8c11 wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xc24c8c12 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xe8a4cabc wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xed60cde0 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x0372f8f8 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x2e953bd4 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xe235c6df fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/microread/microread 0x56a41cd9 microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0xf4ab9e25 microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x4a6c810b nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xf3718795 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xf7ced4a0 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x96a2c83e pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xc307e744 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x140de69d s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x89395690 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xe73fefc6 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4c382b31 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4c7fd24f st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x523f1229 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x549a868e st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x6b9d1193 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8e9d7f2f ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8eeaae1a st_nci_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x93a2ad91 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x95710b8a ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf199b025 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf92ce329 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0237bf8b st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x066f330e st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1a155f8a st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3010dca3 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x367ec622 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x36fc8f8c st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x47a86aa6 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x55560ad2 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5754fd07 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6c94b1d9 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8241cccc st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9e0e3cc3 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9ee6e100 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa19fe724 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb1f46d2e st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb2ec27a9 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc6fd4a29 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe6ebe063 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/ntb/ntb 0x013aa9d5 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x28ad5ee1 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x340d44a2 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x90646885 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x91353a8e ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x9f4101d0 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0xac2986dc ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0xecefe114 ntb_db_event +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x09a1ccfe nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x356e8fc1 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0xadbe335e devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x002085ca parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x12968736 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x13c170df parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x14346ce6 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x1fc8bee5 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x249d28c5 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x309bb8b0 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x34bcc10c parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x3dd08c4b parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x444eae00 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x53a79795 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x5ee25c76 parport_release +EXPORT_SYMBOL drivers/parport/parport 0x640ba6bd parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x6daa53a5 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x764af8ec parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x859888cc __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x9b2765a0 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x9d2dab97 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x9e45950f parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0xa14a0054 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xaf98f993 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xbb9e69e6 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xbf7a287d parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0xc5378bd9 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xc8ef0e28 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0xd40a1991 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0xe64ef6d9 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0xe6f263d9 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0xf0d28374 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xf582fc38 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0xf8ef0841 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xfc720d57 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x9b35d458 parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xdff4a5f8 parport_pc_unregister_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x120ffd37 __pcmcia_request_exclusive_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1a17aa52 pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x274c8259 pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x287a92d1 pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2b3d5f2c pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x40416f37 pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4b968569 pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4d3d49ca pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x61170185 pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x633ee469 pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6536d157 pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6c197e33 pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x70ac52b5 pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8c7e75a1 pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd1255b39 pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd384fbd6 pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdd1d16a1 pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf0a2628c pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xfd485988 pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x48d3f5e5 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x590d8796 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x6bfbea0b pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x9a8ae310 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x9f245db9 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb884c979 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xbed4e47b pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xc7270c55 pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xdd646f53 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe8cc121f pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xfc9ecf76 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x139960da pccard_nonstatic_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x96721afd pccard_static_ops +EXPORT_SYMBOL drivers/platform/x86/intel_ips 0xf97d7d0e i915_bpo_enabled +EXPORT_SYMBOL drivers/platform/x86/intel_punit_ipc 0x3a0b563a intel_punit_ipc_simple_command +EXPORT_SYMBOL drivers/platform/x86/sony-laptop 0x5bb1e117 sony_pic_camera_command +EXPORT_SYMBOL drivers/pps/pps_core 0x4f7f72b3 pps_lookup_dev +EXPORT_SYMBOL drivers/pps/pps_core 0x5ca93a15 pps_event +EXPORT_SYMBOL drivers/pps/pps_core 0x6721a623 pps_register_source +EXPORT_SYMBOL drivers/pps/pps_core 0xff522617 pps_unregister_source +EXPORT_SYMBOL drivers/ptp/ptp 0x240f159c ptp_clock_event +EXPORT_SYMBOL drivers/ptp/ptp 0x5aa8ed57 ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp 0x75271576 ptp_clock_index +EXPORT_SYMBOL drivers/ptp/ptp 0x80e80ac3 ptp_clock_unregister +EXPORT_SYMBOL drivers/ptp/ptp 0xee42fede ptp_clock_register +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x30bc43db rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x3d975320 rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x50cfb950 rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x53115109 rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x57267467 rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x77a3d35a rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x938fd89d rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xbff996f3 rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xcbf8af76 rproc_boot +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xe69af76e rproc_get_by_phandle +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x538bf710 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x278d5af8 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x640edd4f scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xbc8b8259 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xeed73792 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0273bd4c fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2278c566 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x31ed1ae3 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x38ed2b4c fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x43329167 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x484785fa fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5d385839 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xafe9c6f6 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xbdab4319 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xbf97f5e7 fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd6e9a4a6 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf41a0653 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x04a043a3 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0b1dea47 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0f03813d fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1107deca fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x13c074f4 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x141db087 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x15b19b28 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1d69bd19 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2192ce51 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2615fd6e fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x28a358fe fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2d3254d1 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2d964347 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x359e5307 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x38a3355e fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x391eec83 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x40c0296e fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x42cc6cd6 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x48007465 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4abff7ec fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x50b4de26 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5303afb0 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5677026f fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ccc441b _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x62dfdde9 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x681975ee fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69543f64 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6f76ded0 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x70aea72b fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7163c835 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x783a0ad3 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x78d46dcd fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x88e0572e fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9009d988 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9a762ad3 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbf4c89d5 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc2963674 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc6b45c40 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc9dcb5ae fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd19c4971 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd73ce7d5 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd837813d fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdb414dc8 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdcfa942f fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdde8a603 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe8533676 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xecb345f0 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xee4f4071 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf56ba323 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfb162d34 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x3542864e sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x3947904f sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x5ec31086 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xe0443a45 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x72bcd1fd mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x02d0c466 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x06bac0e7 osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0adf0bfa osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0b36e5c4 osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1024abbe osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x105e5ad2 osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1d4304f3 osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1e086a41 osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1f4c9ad9 osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x22332afe osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x32b558b0 osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3562be1a osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x36dc48fd osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3e3e172c osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x40adc9d5 osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x46cb8635 osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5ca190b4 osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5cfc31e9 osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5f37ca1c osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5f3c31df osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7440aa33 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x78513457 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x812d7878 osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x81f529f6 osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x91ca5fbd osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x999c24b1 osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9e115f0b osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa676780f osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc1c66e99 osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd92b3fb1 osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdbceece1 osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe4ff80fe osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe6ffecca osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf0916277 osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf55ffbf0 osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfae5ccbc osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/osd 0x2ab9b65b osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5b18f70b osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x6136e5f9 osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x931fe52a osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0xd40a4ae5 osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0xf0ea977c osduld_put_device +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1e266bfd qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4626d3cb qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x55347d8b qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5f73ef37 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7cfd3ec9 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x82e15695 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x83157c7c qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8424e0ac qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9597197a qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa9ee2be0 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc6634648 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfa805da1 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3f605821 qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x63464591 qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x77f4260f qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xa6796060 qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xa7efaaee qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xb41186dc qlogicfas408_bus_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup +EXPORT_SYMBOL drivers/scsi/raid_class 0x1d3573ac raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0x53bae440 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0x9f5c463e raid_class_release +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x24a78071 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x272b9083 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x290cc805 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x29e7d06a fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x308dd8db fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x36abc1f3 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3a0ec19d scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x566173dd fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7b149abf fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x852c3a77 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x90bb1391 scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc7f8e711 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfb906b5d fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x04ad6ceb sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0bd66aef sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1141ec10 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x15c5a54e sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1b326a71 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x25f20207 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2884fab6 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x314799e4 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x352317bb sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x427ba612 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x51c82dc9 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x58522eb9 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5bae4847 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x61a58dc7 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x64012aa7 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6825eb83 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6a260fc1 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6b7f3295 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x81525a67 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8d7792fa sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa3331d75 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa5764d71 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xadd06b32 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb35026cd sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb8a9be05 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc5b6c31d sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd3b26da1 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd4c5583c sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfbd4212e sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x03850c7d spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x510e2580 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x9a0bb1aa spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x9cb9686b spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe2e6a4b3 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x078f29c8 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x2fce4e00 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x7a8fd5fd srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xbadfb431 srp_rport_get +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x09bf7dc6 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x27a3424d ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x39d6546c ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x5462b9d8 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x6199df9f ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x7bf12906 ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xaf73180a ufshcd_runtime_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x068ab77b __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x217c78dc ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x3d0f810d ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x55eba0be ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x7f33d4cb ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x8a09f531 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x9bde69c5 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0xa7826c4d ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xaaaed338 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0xabb937f3 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xac61964a ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0xad176612 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0xaf8933d5 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0xbe210070 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xcf100942 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xd1ae1ff5 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xe8102695 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xeb361281 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xf4dfc2f6 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0xfc7ad91d ssb_device_is_enabled +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x068cdc48 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x070805aa fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0792fb41 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x097be66a fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x09a0d718 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0eaf2837 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x187c5b07 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2fdd6765 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x432ce86b fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x44a2f9e1 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x45b9308d fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x598ce08c fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5db571a1 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x617ad5f9 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x64363b2d fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7fad5445 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x82bffaf4 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xab536120 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb4759b0f fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb47a8d6c fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc41237e1 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd6d47afc fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe362c611 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xee664dda fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x07f968b0 fwtty_port_put +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xda171fbc fwtty_port_get +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x04a43e78 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x41716ff9 hmc5843_common_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xb676dd06 hmc5843_common_remove +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xd91929b9 hmc5843_common_resume +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xf74c94cd hmc5843_common_suspend +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x339fb6d9 ade7854_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xf807412f ade7854_remove +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0x90e84900 cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x7db9ec19 most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x032059e5 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1b26a3ad rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x20aab2d6 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x27df9b9c rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x28acecd0 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x28b9212b rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2a37cceb rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2c63123a rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2cd9ec70 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x34634c2c rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3569e33b alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x38ac489e rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3b6ec364 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3d0bfb9c rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4c7c8374 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x50a6ee73 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x56ef275e rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5adadb4f rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5d04ffdd rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5ed459a1 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x66744432 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6e02a66b rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7244788c notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x76d2d5dc Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x79323dde rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7d2caa9a rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8c639f66 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8c8c9e22 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8cb6c44b rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8f75f4ef rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9465652e rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x97730ea7 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9b9861a8 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9edae3d2 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa7fd22e9 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaf5d9ca7 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb0fe7420 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb2267f36 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb23e80b9 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb3e23c9f rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcc681353 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd53e2a3f rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd555364c rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd7447345 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdfbf99bc rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe7791fe4 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe9f3ca73 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xea997ad4 rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xecaadcec rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfe50a7a1 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x08ba397a notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f099f61 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x112ab000 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x12fbd93b ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x25f9030e ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x26a3da9d SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x27de9c05 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x31ddfc75 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x37a7336f ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3aa3318a ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x428821b6 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x438a8603 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4662c42b ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4c7e0608 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x56ef7111 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5ad073cf ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5ca9ff60 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5eb17c7f ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x60f419a5 Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61ea895d ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x62a52139 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x65fb1261 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6df3a99c DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6eab1dbb IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6eaf0dbf ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x752d2cc7 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x77fb5ad4 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x78b7d0a5 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7c7ae5c1 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7cc287c1 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7e29c9c1 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x86bb8290 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8cec8a01 Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8e5bf4de DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x93766e03 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x93a0e3ec ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x93a9fc6e ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x93c1e919 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9428e960 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9cdee311 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa5f59038 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaeccd7c1 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb435f5f9 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc7061ae1 Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcbf8b06f ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd67f4e3b ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd6c12417 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdba9911c ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe31e27aa ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe50d417c ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe84a3874 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf506fab0 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf89c06d2 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf978bca1 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfaad661c ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/unisys/visorbus/visorbus 0x83b2e9c2 visorbus_get_device_by_id +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x020d0867 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0ebc9e34 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x113859fa iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x16da5908 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x281e437c iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x376e9cce iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3b6cddc0 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x40331b3d iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x409aeef9 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4d57129b iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5145bbd3 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x576c6a15 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6b913a2b iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8575bc86 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa08931ed iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa0b13887 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa0d0c705 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa1e9e250 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa9d27ad4 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xabf25fea iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc2c40082 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc43e917e iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd2d6522f iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdeb196ca iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe1b72886 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe1e40285 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xef214569 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf9ecbec4 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x089e86f2 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x0ab6c677 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x0b21eb0f passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x0c35dc17 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x0cbd121c spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x0cfe50a7 target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x12b368a3 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x12f8ded2 transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x1442f161 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x200ccd9f transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x212975e4 target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0x212cd002 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x2206c2d9 target_put_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x22d36dc0 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x24d281db target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x25c571ba target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0x28261629 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x2a6f7164 target_get_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x2e5ee1ac transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x30b3220e spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x33a4f7b3 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x34a3961d core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x38ae7087 target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x3ab2fc05 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x3ef536ca target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x43c8e183 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x49d1d293 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x50c005ea target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x5fa90d72 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x6062f574 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x6147a0a8 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x67f09102 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x68a0f3ac transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x6cfec785 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x6dadb587 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x70b26d9a transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x70caf728 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x7bb7d78e spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x829dd46a target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x8445d217 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x8846c122 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x8ff1803c transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x91e7567f target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x9c21ffa7 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9e164029 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0xa029e5d9 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xa71d8c23 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xad8c76e8 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0xb3d7a88a core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xb6ffc24a target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb7508948 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xbe517511 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xc4e4ed56 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xc5940024 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xc65d836c transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xcd803f56 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0xd263c46a core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0xd5f47f42 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xd5f86a4f transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd7f3b8f5 transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0xdb4342ca passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xeed9a3e5 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf0a33d2f core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xf200024d target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xf25ffc16 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf89fdb54 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xfea13913 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xff50753e transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xff572e75 sbc_dif_verify +EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x1887763e acpi_thermal_rel_misc_device_add +EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x5007fc2c acpi_parse_art +EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x86c998e6 acpi_thermal_rel_misc_device_remove +EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0xdf707fab acpi_parse_trt +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x42e659a9 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x7a3aa5c7 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xcb9c0105 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0b189907 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x15503d76 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x429ac9fe usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6bb0ca30 usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x71d0a750 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x796fcf2d usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7dbb275a usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7eca3c76 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x89deac75 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb459e974 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xcd49b15f usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xda7c669e usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x8c60bf1f usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x9bde8c23 usb_serial_resume +EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user +EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x3c71c418 vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0x5fedea44 vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user +EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/video/backlight/lcd 0x5de5a07e devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xccb1fee2 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xe9ee4446 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xef8b97c1 lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0bf231e9 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x159a8c27 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x2dcc1ef0 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ee25313 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8dfceeb5 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc91630cf svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd49e494e svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0xd7dc83cd sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x1ae1434e sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xbbc2debd sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xa142f6ee cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x8725f226 mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x406179b2 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x5bddf600 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x6f9ab5a7 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x1b752276 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x22dc1d19 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xc2f74afa DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xfb30aa49 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xffd9aaa0 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x555301df matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x0f767086 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x0f9eb3c4 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xbd443cd3 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xe0a333fd matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x44e3237d matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xc402f78f matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x05914d85 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x0d94c616 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x377298f5 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xad65bc7d matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xaf4c733d matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x212ed6d7 mb862xxfb_init_accel +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x41315461 w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x5aaff41d w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xc98aa4ed w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xe2845823 w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x47cfb34c w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x59964d77 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x55d0ceea w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x714b01f7 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x48b12c45 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x4c28198f w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0x85a6df39 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xf24a4c6d w1_unregister_family +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x04e133fc iTCO_vendor_check_noreboot_on +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xa78bd894 iTCO_vendor_pre_set_heartbeat +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xb5f20875 iTCO_vendor_pre_keepalive +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xc4f657bf iTCO_vendor_pre_stop +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xdc6effc9 iTCO_vendor_pre_start +EXPORT_SYMBOL fs/configfs/configfs 0x0060b3a6 configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0x0a9548e4 configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x1567df3f configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0x18860b43 configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x2f394b2c configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0x3cd678b8 config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x5b2d7994 config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0x70ba3ceb config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0x7ed3e100 configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x805598d9 config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0xa355c678 configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0xb7fd018f config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0xd01cbf55 config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0xd6989fbe configfs_unregister_default_group +EXPORT_SYMBOL fs/configfs/configfs 0xe42b19f4 config_group_find_item +EXPORT_SYMBOL fs/exofs/libore 0x0ed15ed6 ore_create +EXPORT_SYMBOL fs/exofs/libore 0x26752205 ore_write +EXPORT_SYMBOL fs/exofs/libore 0x27f45dda ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x2a12f83f extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0x3d50a227 ore_remove +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x630ef6f5 ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0x88cffe1a ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xb25073d9 ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0xbe8da832 ore_read +EXPORT_SYMBOL fs/exofs/libore 0xc8556fa2 ore_get_io_state +EXPORT_SYMBOL fs/fscache/fscache 0x0c60ccfd fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x1914d5fe fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x19386ec8 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x25d71617 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x29fe5eac __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x2b2502ef fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x31e99eba __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x353cef5a __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x382752f5 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x3d0d5cbd fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x404f007a fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x427259db __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x49427c09 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x553c2a2c __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x6279516d fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x65f9401f __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x66d50783 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x6cdcaef9 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x6e6058a2 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x7d81de10 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x8175841a __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x86f26278 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x883e5bae __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x8a5f8642 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x9116aad3 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x93e89b5b fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x961bfe2e __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x97b95c0f fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x9bdf323e fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x9d426074 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0xa1aa74c9 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0xa28e9ceb fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0xab9689fc __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xb4701121 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xba333866 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0xbd7eaf90 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0xc7fda0f2 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xce90312c fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0xe483ae6d fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xf0553ac1 fscache_fsdef_index +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x29e8d935 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x738b9fd0 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x7d16f2f5 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xa27e1691 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xea61ecf0 qtree_delete_dquot +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-ccitt 0x1a703ba1 crc_ccitt +EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table +EXPORT_SYMBOL lib/crc-itu-t 0x6d356209 crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0x56329ecc crc7_be +EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd09b2cba crc8 +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c +EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x175924ca lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed +EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of +EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset +EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used +EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del +EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get +EXPORT_SYMBOL lib/lru_cache 0x94f2dbc7 lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create +EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set +EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find +EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put +EXPORT_SYMBOL lib/lz4/lz4_compress 0x0c222eb5 lz4_compress +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x682a23e0 lz4hc_compress +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul +EXPORT_SYMBOL net/6lowpan/6lowpan 0x56193a6d lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x69eeae35 lowpan_netdev_setup +EXPORT_SYMBOL net/6lowpan/6lowpan 0xfb36163c lowpan_nhc_del +EXPORT_SYMBOL net/802/p8022 0x46cc3639 register_8022_client +EXPORT_SYMBOL net/802/p8022 0xc394328a unregister_8022_client +EXPORT_SYMBOL net/802/p8023 0x41413278 make_8023_client +EXPORT_SYMBOL net/802/p8023 0x9b2f8012 destroy_8023_client +EXPORT_SYMBOL net/802/psnap 0x1829d3ba unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0x22d6f6f1 register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x02790115 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x037d7ac4 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x10e25895 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x18f47e80 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x1c8a8705 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x1d3d0762 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x21988915 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x316961bb p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x34a3ac16 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x36b48b45 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x3aeaa2d6 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x3f0e4478 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x42713bac p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x42ae3aed p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x441561b0 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x4ea7af18 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x505511ce v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x5f84ae80 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x645c6df9 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x699dd6bd v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x72c9d59b p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x7fca8cf8 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x83536918 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x8b8d9d97 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x8c79e8c2 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x8f76d88d p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x90f66a5c p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x91ac5ea2 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x94c276d2 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xa8c6f45f p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xad8b917d p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0xafda1315 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xb278ecdb p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xbb6e1d73 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc907aad5 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd34ebbd1 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xd6ae1161 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xee803d0a p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xf0dbb166 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xf36d0879 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xf3b2f0f9 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/9p/9pnet 0xff56addb p9_client_unlinkat +EXPORT_SYMBOL net/appletalk/appletalk 0x32c78696 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x4f987c9b alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x81abcf18 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x835b1e25 atrtr_get_dev +EXPORT_SYMBOL net/atm/atm 0x2929ce93 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x2f3eda37 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x2f8bad05 atm_charge +EXPORT_SYMBOL net/atm/atm 0x3423571f atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x487129f1 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x5bc48d7f vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x5c797fc8 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x8ddbfc86 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xb02f37c2 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0xc4581c69 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0xf08fa4be atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xf559153e atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xf8d9925d vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0xfdc80bb4 atm_dev_release_vccs +EXPORT_SYMBOL net/ax25/ax25 0x08c6c756 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x0c0f30ae ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x30aecbde ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x3dca3f77 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x4b863cf5 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x5c392dff ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x779b2a33 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0xbf45f5d3 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0e21b0ed hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x14e51379 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2350d4ba bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x315a6d06 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x31e67092 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3e8a963c hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4064448a hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47eefd85 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4d505f94 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x50ab97b8 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x560694fd hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x59c109f8 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x669b9d73 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x68dd40e7 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6a04c851 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6a4bfdce __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6c63da9d bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x718fe79a hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7725c8eb __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7a943d0b hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7c58e4a7 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x81941935 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x946602a2 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa1941a2d hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xaafea009 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xab30da64 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0xaed103a7 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb453d2b6 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb565f51b l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc955a79c bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc9a72dd1 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7e1b2b6 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd8b2e432 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdbd22ad2 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xde480197 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe0b9c07a bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe44e84bf l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe5d9b5fe hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe7d68075 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf911392c hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xffcdcdec bt_sock_wait_ready +EXPORT_SYMBOL net/bridge/bridge 0x2f186828 br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x541b7518 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x6b624adc ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa6723752 ebt_unregister_table +EXPORT_SYMBOL net/caif/caif 0x0e097c96 caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info +EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x46db2f40 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x8f97ae7b caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xb22a6cc9 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xebd1df15 get_cfcnfg +EXPORT_SYMBOL net/can/can 0x18f34c00 can_proto_unregister +EXPORT_SYMBOL net/can/can 0x5dfa5585 can_ioctl +EXPORT_SYMBOL net/can/can 0x830c19c5 can_send +EXPORT_SYMBOL net/can/can 0xb4a9a029 can_rx_unregister +EXPORT_SYMBOL net/can/can 0xc7c85b16 can_rx_register +EXPORT_SYMBOL net/can/can 0xee2849a6 can_proto_register +EXPORT_SYMBOL net/ceph/libceph 0x06763d4c ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0c11b0c5 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x10372c1a ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0x1309a1b8 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x166eba09 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x17e261f5 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x18826396 osd_req_op_cls_response_data +EXPORT_SYMBOL net/ceph/libceph 0x1d16a92e ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x21c60751 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x23618143 osd_req_op_watch_init +EXPORT_SYMBOL net/ceph/libceph 0x23c21fde ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x24d897df ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x2972e9f1 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x2b85d232 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x33324fce osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x34ff06d5 ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0x3639d102 ceph_monc_request_next_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x38040805 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x384e3c66 ceph_monc_do_get_version +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3b5d328e __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x3f27df16 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0x419cb09b ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part +EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x496ae417 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x4aa10165 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x4d4fbe8e osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x50aaf6ff osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x59327d66 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x5a651f36 ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0x62111879 ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x62451b36 ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x635eb17d ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x68b970a5 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x696e9826 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6c7a66fc ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x6dbda31f ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x6e3f309e ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x6f38ef8a ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x6f4bf4d0 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x6fcdafef ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x7285f0c1 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x74bc397a ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x7e3c98a5 ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0x80f89300 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x85f7eafb ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x886490b3 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x889fe63a ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x897ef3f5 ceph_oloc_oid_to_pg +EXPORT_SYMBOL net/ceph/libceph 0x8b34474f ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x8febe185 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x9202d09c osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x95775938 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x9746d9a3 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x97d442e8 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x98ef7abe osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x9978be5d ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa03a4416 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xa397fdd0 ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0xa518ea6c ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0xa54d6b8c ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0xa79aa610 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xad20b9f4 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xaff93975 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0xb041d6d7 ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0xb40f79f9 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xb742eea2 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xb85172fa osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xc3ce6dec ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xc86b9e0e ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0xc8a67a2d osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xc93b6cda ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xd27c7f50 ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd7acd83f ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xd9b85986 ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0xdf8aff41 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xe0d18569 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xe184fdbb ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xe25aae1e ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xe3b042ca ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xe5f8bbd8 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xe63fa614 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xe8b53500 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xea5db2a0 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xf32882e5 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xf35cb4d9 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xf3a06108 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0xf8722228 ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xff2b13f3 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xffb7931b ceph_calc_pg_primary +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x0f913de3 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x85b7f0a6 dccp_req_err +EXPORT_SYMBOL net/ieee802154/ieee802154 0x25993fb3 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x3f90c3d4 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x5fa6407d wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x70023029 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xd844d46e wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xff141e4d wpan_phy_register +EXPORT_SYMBOL net/ipv4/fou 0x3106aeb4 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x61cada3b gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xd0750778 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0xea67ac99 fou_build_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x4fdc2b82 ip_tunnel_encap +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x78284752 ip_tunnel_dst_reset_all +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xb63109ae ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xd9549402 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xe0416a7b ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xef4fb7be ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x34bd6525 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x6490f65a arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xa807be81 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x203388a1 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xdd4b26d8 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xe2139583 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x7356ac62 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0xd1a38c7f xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0xe0a6dd68 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x129ecc52 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1a846e23 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc6db4068 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd9f4b4f3 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xaf0b5efe ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xb12049eb ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xf6418942 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/tunnel6 0xda4fcb39 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0xe2bd4da3 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x5e6a7d6f xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x959165e6 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x523fe467 ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x7ae31c56 ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x7c7f75c0 ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x90bdda9c ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xa04d1f90 ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xafe887cc ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xb0e48169 ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xc74a51e4 ircomm_connect_request +EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value +EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service +EXPORT_SYMBOL net/irda/irda 0x08a32eb8 irlap_close +EXPORT_SYMBOL net/irda/irda 0x0963c24b irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0x09939c11 irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0x23bbc2ce irias_find_object +EXPORT_SYMBOL net/irda/irda 0x271b30a8 irttp_data_request +EXPORT_SYMBOL net/irda/irda 0x2aa485d4 irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x2b432980 hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0x2d4bc458 irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0x2da83814 iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x385847aa irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x3e601626 irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0x3e8da4cd irlap_open +EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value +EXPORT_SYMBOL net/irda/irda 0x46b00fdf irias_insert_object +EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service +EXPORT_SYMBOL net/irda/irda 0x499956e2 irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0x4aa61b5e irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0x553f6446 async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0x58943351 irda_notify_init +EXPORT_SYMBOL net/irda/irda 0x61edf197 alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x6b34be4d irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x70a3f20f hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client +EXPORT_SYMBOL net/irda/irda 0x77b14a1d irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client +EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x87ecb024 irttp_dup +EXPORT_SYMBOL net/irda/irda 0x8c003ad6 irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0x91151f90 iriap_close +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x91eb33af irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0x98a8b3b4 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0x9ccbdfca hashbin_insert +EXPORT_SYMBOL net/irda/irda 0xa1e606a5 async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0xac3dc858 irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0xaeeff2b5 hashbin_find +EXPORT_SYMBOL net/irda/irda 0xb82cd448 irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value +EXPORT_SYMBOL net/irda/irda 0xba72ef11 irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute +EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request +EXPORT_SYMBOL net/irda/irda 0xc12e01e2 irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0xd41df8d4 irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma +EXPORT_SYMBOL net/irda/irda 0xd85d972e irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0xd92ca872 iriap_open +EXPORT_SYMBOL net/irda/irda 0xdc0196c2 hashbin_remove +EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0xe1ba6308 irias_new_object +EXPORT_SYMBOL net/irda/irda 0xe329462a hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0xeb78333e hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0xec242b93 hashbin_new +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/l2tp/l2tp_core 0x57545387 l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0xe03fd787 l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x213a44e4 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x4eebaa43 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x7aa9ffcc lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x7be51ffe lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xcd5c2fd4 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xdedb3c12 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0xe5354fea lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xe775f4da lapb_setparms +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x3afec058 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x453096fa llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x5f0a43c4 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x79bf2b53 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xc4882921 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xf7f88357 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0xfb3bffe9 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/mac80211/mac80211 0x0673d165 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x08111529 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x0bd609f2 ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x1134840a ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x11440f58 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x117371b9 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x12de2635 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x13a54652 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x1720ff12 ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x27287d62 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x2b0761a7 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x2df48fa0 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x3062bb01 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x316988e0 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x31d938a9 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x3224e53b ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x337a20bb ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x36027608 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x3781e96f ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x3d34886f ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0x3fd2c19d ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x419c0202 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x4274cc98 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x445bfa80 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x4576d97b ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x4b8d470a ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x4bf9f5e8 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x4c2b011a ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x4ce4648f ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x53033b33 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x55f97e4f ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x56e31876 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x5b0d559f __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x60b0fa07 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x623c8cb9 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x66b47ee0 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x6fb058aa ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x79657fd5 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x7a28f21a ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x7b2f47d6 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x8256d6a8 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x8485fe7d ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x8b4298fc ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0x902d162f ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x935353e4 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x96faf836 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x986bdaf8 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x9df8dc29 ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x9fc46bba ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xa489ae32 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xa71bc85a ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xa8a13bf6 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xa9fc577a ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xae3b6389 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0xae5a25f6 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xb35e2995 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xb73daf67 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0xbacfebb3 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xbe306eca ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0xbff11c6b ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xc2bd4872 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xc4d8cd05 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xc6db6572 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xca16e8ed ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0xcce0ff82 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xd0ff67e9 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0xd1bf7fd1 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xd2dcd2c3 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xd2e454f1 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xd4cb3acb ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xdf0d9ec0 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xe0420def ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xe9eece01 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xeaedbb20 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xeeac854d wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xf1cfc142 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0xf1edef54 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xf493e621 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xf763e572 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0xf812b004 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xfbe03359 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0xffa4f83c ieee80211_iter_keys +EXPORT_SYMBOL net/mac802154/mac802154 0x12fe6e70 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x15363b8a ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x51947538 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xa9c2c7ff ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0xb8601e93 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xdc068b00 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xe17e4f23 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xe331e50d ieee802154_register_hw +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x053cc5eb ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x08cbab90 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2c9cdfa3 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x30f71b1b ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x31551408 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x47c447b0 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x517d1773 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5f597565 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb1ba7a38 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbf46bded register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbfc1b69b ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc0f6344e ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc85b0beb ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe4bb9b75 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x4093324c __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x488bba60 __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xe5842e8e nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x577471d3 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x5e3f1729 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x77079d54 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xdb77d9d6 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xe1d4337e nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0xf87a93cb nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/x_tables 0x050dff85 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x253e8b44 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x2fea56b3 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x4bfadf5d xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x5ea4f289 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x65c1a893 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x8f3f40b6 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x9e6f3c1d xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xa973c272 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xc5998e8d xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xf11f3743 xt_register_target +EXPORT_SYMBOL net/nfc/hci/hci 0x039c632a nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x0a63e613 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x178b9d3f nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x2e4f7a4f nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x3867d7e9 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x3a8fc3d9 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x58ea3d79 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x6e6608d8 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x6f6f70b0 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x7ef7f2fe nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x7f18b53d nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x9dbbeb57 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0xb44ede3f nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0xb905b653 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xbeca23e0 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0xbed6753c nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0xd01e2a5f nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xd0e80c5b nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0xd721c29b nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xd917e175 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xeb09648f nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/nci/nci 0x03fc46fb nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x14db07eb nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x21c26cc4 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x239beb7b nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x355e758e nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x41bb5674 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x45ec6bd6 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x45f7718c nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x5f3c339b nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x61f0a715 nci_get_conn_info_by_id +EXPORT_SYMBOL net/nfc/nci/nci 0x62f325ab nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x69148e74 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x6ce09032 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x855505cd nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x94fef26d nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x960fd5e8 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0xa07ca7b2 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xa71e31b0 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0xad8f290c nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xb1d47f39 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xb6697a5b nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0xb7733a40 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xbf261efe nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xc4f600cc nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0xcdc865c2 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xd0d77db3 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xd125c934 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0xe5f34e8c nci_hci_get_param +EXPORT_SYMBOL net/nfc/nfc 0x0031fa66 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x0fab3f3b nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x110b769a nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x13122288 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x1b5e0515 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x1f67fb40 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x20b3c9df nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x2472029f nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x29ea91db nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x429acb45 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x58b6c50d nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x61555740 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x66729efc nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x6941609b nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x878f9753 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x983ec619 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xa17247e2 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0xb3719bda nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0xd2f95e65 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xe4b06b8e __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xe707db16 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xf192a9eb nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xf3f1b518 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0xf4cb3074 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc_digital 0x0795fa22 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x351df39b nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x6c62597a nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xbbff2e44 nfc_digital_unregister_device +EXPORT_SYMBOL net/phonet/phonet 0x05c3121a phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x1104aecd phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x6908ceae pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x6ce0f0f3 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x86346a32 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x8c968fbe pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0xa7a8a0d5 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xae6288a2 pn_sock_hash +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4e559211 rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x55c5693f rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x71ce6b54 rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x733a0d7b rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x7b47ac38 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8cfa3516 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8e105bbb key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x99b8dce2 rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xac718e2c rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xaed4f51b rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc3f1be37 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe70ea352 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe81b5ef5 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xed5a7574 rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xfe5d8d3d rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/sctp/sctp 0xc8fdcc85 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x479540db gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x9a459b36 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xdbedb097 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/sunrpc 0x6ff474ce svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x79a9ac47 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0x86545f8d xdr_restrict_buflen +EXPORT_SYMBOL net/wimax/wimax 0x0119276f wimax_reset +EXPORT_SYMBOL net/wimax/wimax 0x61cb4d99 wimax_rfkill +EXPORT_SYMBOL net/wireless/cfg80211 0x048b4791 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x092138d5 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0b8ffa01 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x0cb424f1 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x21ae7045 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x255ac855 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x27d0a1b3 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x2b7e6877 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x2dfbe311 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x301eeb82 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x34012cbf cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x37b7fe23 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x383a315a cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x3dacc6dc cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x3e707998 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x3ec81d06 ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x454e9913 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x46d09925 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x4733f5da cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x49fbb434 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x50e4f23b cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x58959d87 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x5e68c630 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x5eb24611 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x62c337ca cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x6446df7f cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x6970a43a regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x69eaa7a3 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x6a4373b6 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x6b2d8025 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x727785ec cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x78e5fff9 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x7d4a5816 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x85e85cb9 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x8769e97d cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x887b0eac cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x88db0d1f cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x91d7a142 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x96ad30c3 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x9ade30b9 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x9b377994 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x9dc0f37f cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x9e188fca cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x9e7ccb32 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xa1425906 ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xa5ea0bb0 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xa8746d8d cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xaa478b4e cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xab60082c ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xadc7ba74 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xadfc4dd3 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xae22de27 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xb16cf0e7 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xb57bdd2d cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xb6422e34 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0xb653db72 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xb85f5237 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0xba4088df __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xbd5351d3 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0xbe83b7a1 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0xbeeac1f1 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc0f3852d wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xcabb81c9 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0xcb0a6b6f wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0xcc088cee cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xcedf5fea cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0xd3095ff6 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xd4667f24 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd50b0a22 ieee80211_ie_split +EXPORT_SYMBOL net/wireless/cfg80211 0xd5823245 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0xd8814dce __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdca564df cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xde700115 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xdf686755 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xe4f53c1a cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe8f5fdbd ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xea4b6586 cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0xef54c6a4 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xef9a96c3 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xefa82c22 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xf0048458 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0xf2143676 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xfadae348 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xfc77a482 cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/cfg80211 0xffec4b0d cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/lib80211 0x15537a03 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0x3da92bd1 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x633dc3f7 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x8e120812 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0xc5ccc3af lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xe67df343 lib80211_register_crypto_ops +EXPORT_SYMBOL sound/ac97_bus 0x07740cc5 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xa30bcfed snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x75c1e0c6 snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x93bfc8ab snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xd72672f1 snd_seq_kernel_client_enqueue_blocking +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0xf5047698 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0xf2bef094 snd_seq_device_new +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x205395a0 snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x614705ff snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x7746bb9b snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x79794472 snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x991c0f60 snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xef8fa3d2 snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xf3f0324e snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xf6fdda44 snd_midi_event_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xaec61b98 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x056ea9f0 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x0621f23a snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x0827e61b snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x17550188 snd_card_new +EXPORT_SYMBOL sound/core/snd 0x185af367 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program +EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer +EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL sound/core/snd 0x1af45826 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x1d3ad354 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x1e1cc59b snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x1fdd3da0 snd_card_free +EXPORT_SYMBOL sound/core/snd 0x21fa9030 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x2726f2b3 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0x32935221 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x32ae2749 snd_component_add +EXPORT_SYMBOL sound/core/snd 0x33081368 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x34e54284 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x3897102d snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3a2e51e6 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x3ce890a6 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x3e48823f snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x409c8418 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x468d9f46 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4b3c6cd9 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x522d0efa snd_cards +EXPORT_SYMBOL sound/core/snd 0x52be9500 snd_register_device +EXPORT_SYMBOL sound/core/snd 0x602a741e snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x67367a71 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x6a5c8123 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x71239ae4 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x8261be1a snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x8dc6546b snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x9242512e snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x95e27e4d snd_device_new +EXPORT_SYMBOL sound/core/snd 0x9835798a snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0xa6282774 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0xa84ef6be snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0xacf318cd snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0xb08a7b52 snd_info_register +EXPORT_SYMBOL sound/core/snd 0xb0d9f2c1 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb313569a snd_jack_new +EXPORT_SYMBOL sound/core/snd 0xba1c3baa snd_jack_report +EXPORT_SYMBOL sound/core/snd 0xc0208076 _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0xc5348442 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0xd4b0ff7e snd_device_register +EXPORT_SYMBOL sound/core/snd 0xdfecae62 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0xf65a87ad snd_card_register +EXPORT_SYMBOL sound/core/snd 0xf6b77a64 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0xf70e920c snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0xfbcb8a0d snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-hwdep 0xd1f43d77 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x02428dcd snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x035112f3 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x06b310c9 snd_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x0e45d53d snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x148db5d0 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x1ae7e314 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x1dcd1438 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x25d8159e snd_pcm_sgbuf_ops_page +EXPORT_SYMBOL sound/core/snd-pcm 0x2892198d snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0x2c6a0ead snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x2d6cb0ec snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x37cf4d21 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x39d406fd snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x468fe178 snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0x476233ae snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0x4d393ef7 snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0x4d445d4e snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x4daa914b snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x542b8861 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x55d92af9 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x5898dcba snd_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x60425da5 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x60e887fd snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x62cddf5b snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x64f09d12 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL sound/core/snd-pcm 0x6cca3450 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x713a1fb1 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x78e3063e snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x80214432 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x832c5265 snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x849d5630 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x909280d6 snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0x92fc8330 snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0x93cd9156 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x966169c7 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x9b0b95dd snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xb284ca43 snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0xb44d7d25 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xba72c8c6 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0xbc5d74d4 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0xbdd11579 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xc96973e7 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0xca34c226 snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0xcd260252 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xd46c6c88 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xda45ba6a snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xe5b70cf4 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0xeacfc2c1 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0xf9965b7c snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0xfcf81733 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0xff2732f9 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0595732f snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x095cb6c0 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3c08fe58 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x43f08535 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4835e107 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x53e3bc54 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5d1130b7 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x65694238 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x65cac207 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6ed9428e snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x884b3f8f snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x89250087 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbde3072e snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc1874ab2 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc8e8c5fa snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0xcf2acb98 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd0f130bd __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xdaaaa88a snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf326a0e2 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-timer 0x3309ceb9 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x448af078 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x48dd4c98 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0x6b854631 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x6d289247 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x763246d6 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x9aa52038 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0xa2f32e41 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xa5911885 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0xbfd565bb snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0xd96439e6 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0xed760e2a snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0xf1cda83a snd_timer_pause +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xbca43a46 snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x06bb53d2 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x18f7b4b6 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x69dd7fa4 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7eba931e snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9e21f152 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9f92d91d snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa1da723e snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xcef1ede4 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xdaa727ae snd_opl3_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2aae4322 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x31ce73e5 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3bd3c184 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x48859687 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x53915249 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7db44af9 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x96a05d30 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9f1d9133 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xbc13b33e snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x04c473ae snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0585872f fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0d893f7a cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1b96203e iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x280c7f8c snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x31114a3a amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3c2abe84 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4455a6bc cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4e4926f2 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x54812112 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5a3d7d76 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6316dd1b fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x64605f14 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7102ea09 amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7172b255 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7713f117 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7785e3f2 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x88b42930 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x905f2256 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x937bdaa1 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x969e0e94 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa63c665d iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaf50188f amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb85164e2 snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbcbe6268 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc54706f7 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd61bc739 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xda5e9e20 amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdb410eb3 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe7904fb0 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe8991fbe amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xed1cdec4 fw_iso_resources_destroy +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x1fd5323f snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xfcf62816 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1917a555 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x25b7afac snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x33323563 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x5a5741c2 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x60950ce2 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x781c21f4 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd9888769 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf88725c1 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x0b9cc78e snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x7d6d0cfe snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x8a62ed54 snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xa9715356 snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xbb5c899e snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xe3dc659a snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x68612885 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x6f763723 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xd94cbc56 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xf210e655 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x2ea38307 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x4ec3122e snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x483c7c1c snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x498a51a5 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x4e075b81 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x5cd15b79 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x6ca0afb7 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xbdd14df6 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x32c4ba14 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x6397e3cf snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x7b750e5d snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0x978e0031 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xbd62f4fb snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xd9065178 snd_i2c_device_free +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x07d1d6c4 snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x265856d6 snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x2fe74790 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x50da5b15 snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x61b3c77f snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x79085603 snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x802af604 snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x86b5c553 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xdb36104a snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xfdf7af19 snd_sbdsp_reset +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x13db3734 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x17c71503 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2491b8b9 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x28ddd3fa snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5ae08884 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5b83615d snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x765631f6 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x85b6132d snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8ab4b381 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa15a4004 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xad6ef2e7 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc5cbc14a snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd299cecd snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xda39db5f snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xda570669 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe838b1da snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf488195d snd_ac97_write +EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0xf1fc1a61 hpi_send_recv +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1968c142 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x303eaadc snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x31381fa4 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x5c6a53dc snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7ed6b1c2 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xa45ac73b snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb7d7447e snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xcb1513f0 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf2f5b853 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x835b2176 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xae1eca84 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xafee8d64 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x130bab1a oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x26fed330 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x31588699 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3a179550 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x44887907 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4befd2bb oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4de5260d oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x51185ba9 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5fce1b7f oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6484668b oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7892f653 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x802ee865 oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8e17c940 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x95a6f5aa oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa6e7cdc5 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb59eb080 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcd52a6b8 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd6acfdfe oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xecd0344c oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf351b5ec oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf83d41b1 oxygen_write_uart +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x06ae7d7a snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x5943cae1 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x68ecbe74 snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xcf46d513 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xed8e1cd7 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x2113e84b tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x64003106 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-dsp 0x582ce052 sst_dma_new +EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-dsp 0xdc045797 sst_dma_free +EXPORT_SYMBOL sound/soc/snd-soc-core 0xb6d7062e snd_soc_alloc_ac97_codec +EXPORT_SYMBOL sound/soundcore 0x291bd857 sound_class +EXPORT_SYMBOL sound/soundcore 0x48b52754 register_sound_midi +EXPORT_SYMBOL sound/soundcore 0x600a6a6c register_sound_special +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xe4a806b5 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xf4ca5970 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0xf9dffcc2 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x063a3fd7 snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x3a6cbd94 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x8194a564 snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x97d18ce8 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xa873f079 snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xce8ac189 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/snd-util-mem 0x01ca02d7 __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x22511cd2 snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0x60a52fc8 snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x85cc7e76 snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0xa3728dc0 __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xcecdf26e snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xe8e20091 __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0xfb5e8277 snd_util_memhdr_free +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbef93959 snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL ubuntu/hio/hio 0x0448b53b ssd_get_pciaddr +EXPORT_SYMBOL ubuntu/hio/hio 0x20e876a3 ssd_unregister_event_notifier +EXPORT_SYMBOL ubuntu/hio/hio 0x21097539 ssd_set_otprotect +EXPORT_SYMBOL ubuntu/hio/hio 0x26b39671 ssd_get_temperature +EXPORT_SYMBOL ubuntu/hio/hio 0x295bad6e ssd_submit_pbio +EXPORT_SYMBOL ubuntu/hio/hio 0x2a5eb2e2 ssd_reset +EXPORT_SYMBOL ubuntu/hio/hio 0x4e849fc5 ssd_bm_status +EXPORT_SYMBOL ubuntu/hio/hio 0x659ccffe ssd_get_label +EXPORT_SYMBOL ubuntu/hio/hio 0x66eade8f ssd_get_version +EXPORT_SYMBOL ubuntu/hio/hio 0x7edc7e9d ssd_register_event_notifier +EXPORT_SYMBOL ubuntu/hio/hio 0xf105b860 ssd_set_wmode +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x00322056 VBoxGuest_RTMpCpuIdFromSetIndex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x01674ab7 VBoxGuest_RTSemMutexRequestNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0429a6f0 VBoxGuest_RTThreadCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x057fd386 VBoxGuest_RTR0MemObjLockKernelTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0731e88d VBoxGuest_RTAssertMsg2Add +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x079b132d VBoxGuest_RTMemTmpAllocTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x08ed98db VBoxGuest_RTMemDupExTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x09a88bc3 VBoxGuest_RTTimeExplode +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0a442050 VBoxGuest_RTAssertAreQuiet +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0b94344b VBoxGuest_g_pszRTAssertExpr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0beb235d VBoxGuest_RTMpIsCpuWorkPending +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0cd1b64d VBoxGuest_RTMpCurSetIndex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0d10d1ca VBoxGuest_RTTimeNormalize +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0f3e114a VBoxGuest_RTSemSpinMutexCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0f884b3a VBoxGuest_RTStrToInt64Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x11ced39a VBoxGuest_RTSemEventWaitEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x11e95d2e VBoxGuest_RTLogLoggerEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x11f80121 VBoxGuest_RTSemMutexRelease +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x12614b82 VBoxGuest_RTStrToInt8Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x12f430f3 VBoxGuest_RTAssertMsg2AddV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x147206e1 VBoxGuest_RTStrToUInt64 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x151752ec VBoxGuest_RTHeapSimpleGetFreeSize +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1520b2c8 VBoxGuest_RTLogCreateEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x160b14d4 VBoxGuest_RTMpGetPresentSet +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1926b25c VBoxGuest_RTLogRelLogger +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x19790b4c VBoxGuest_RTLogFlags +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x197acd65 VBoxGuest_RTR0Init +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1a6d7d86 VBoxGuest_RTThreadPreemptIsEnabled +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1ae28abb VBoxGuest_RTThreadIsSelfAlive +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1c3b0f90 VBoxGuest_RTR0MemObjAddressR3 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1dc5ebbe VBoxGuest_RTThreadWaitNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1f3e577b VBoxGuest_RTMemTmpAllocZTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1f70d065 VBoxGuest_RTErrConvertToErrno +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2003169b VBoxGuest_RTSpinlockAcquire +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x20728ae6 VBoxGuest_RTThreadCreateV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x20d9d625 VBoxGuest_RTTimeToString +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x22058511 VBoxGuest_RTSemMutexRequestDebug +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2254228b VBoxGuest_RTMpGetPresentCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2387f039 VBoxGuest_RTMpIsCpuPresent +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x25219f5e VBoxGuest_RTR0Term +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2580d04c VBoxGuest_RTSemEventMultiSignal +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2632a013 VBoxGuest_RTLogRelLoggerV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x29708cf0 VBoxGuest_RTR0MemUserCopyTo +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2a2284fb VBoxGuest_RTAssertMayPanic +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2af3453c VBoxGuest_RTLogPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2c2b5b46 VBoxGuest_RTTimerGetSystemGranularity +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2cfefa48 VBoxGuest_RTLogBackdoorPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2d445217 VBoxGuest_RTStrToInt64Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2d581c06 VBoxGuest_RTMpCurSetIndexAndId +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2eca7777 VBoxGuest_RTHeapSimpleAlloc +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2fb7502f VBoxGuest_RTThreadSetName +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x30e40c69 VBoxGuest_RTLogSetDefaultInstanceThread +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3168cadf VBoxGuest_RTTimeSystemMilliTS +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x31ac4c5f VBoxGuest_RTThreadIsInitialized +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x33d7313a VBoxGuest_RTMpCpuId +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x343e3e1b VBoxGuest_RTLogGetDestinations +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3480f453 VBoxGuest_RTSemMutexDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x358153bb VBoxGuest_RTStrCopy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x362275e8 VBoxGuest_RTMemContFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x372d5e29 VBoxGuest_RTPowerNotificationDeregister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x376d539c VBoxGuest_RTThreadGetType +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x381d7c24 VBoxGuest_RTMemAllocVarTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x383a0b9d VBoxGuest_RTMpPokeCpu +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3a47392e VBoxGuest_RTErrConvertFromErrno +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3b04381e VBoxGuest_RTSemEventMultiReset +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3b231c95 VBoxGuest_RTTimeNanoTS +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3bcf543a VBoxGuest_RTLogGetDefaultInstanceEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3d00f113 VBoxGuest_g_u32RTAssertLine +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3de43f66 VBoxGuest_RTSemEventCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3dfc9ab8 VBoxGuest_RTSemMutexIsOwned +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3fbf3c07 VBoxGuest_RTThreadIsInInterrupt +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x40996438 VBoxGuest_RTSemEventMultiWait +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x42ecc6d1 VBoxGuest_RTThreadPreemptRestore +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x43fdd8d9 VBoxGuest_RTSemFastMutexRelease +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x44cfbc28 VBoxGuest_RTThreadGetNative +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x461fa9fe VBoxGuest_RTLogRelGetDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x46c14223 VBoxGuest_RTLogSetCustomPrefixCallback +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x49f1be17 VBoxGuest_RTThreadFromNative +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x49f4d19c VBoxGuest_RTLogDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4ba5006e VBoxGuest_RTLogPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4bbec091 VBoxGuest_RTR0MemObjGetPagePhysAddr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4c7d8a56 VBoxGuest_RTSemEventMultiCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4cac3157 VBoxGuest_RTLogFormatV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4cecc93d VBoxGuest_RTR0MemObjEnterPhysTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4cf913a1 VBoxGuest_RTThreadGetName +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4ea67110 VBoxGuest_RTStrToInt32 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4f041d39 VBoxGuest_RTMemContAlloc +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4fc8e10c VBoxGuest_RTMpGetSet +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4fe9e5f1 VBoxGuest_RTR0MemObjProtect +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5040043b VBoxGuest_RTSemEventWaitExDebug +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x508bb2c4 VBoxGuest_RTLogSetDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x51ec28bd VBoxGuest_RTLogGetFlags +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x53265abc VBoxGuest_RTLogSetBuffering +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5352c915 VBoxGuest_RTSemMutexRequest +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x54098f34 VBoxGuest_RTTimerStop +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x54ddf87c VBoxGuest_RTThreadPreemptIsPossible +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5595fc22 VBoxGuest_RTSpinlockDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x56596e82 VBoxGuest_RTThreadSelfName +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x56c939fe VBoxGuest_RTAssertMsg1 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5847ae52 VBoxGuest_RTMpGetCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x58d1b65e VBoxGuest_RTThreadPreemptIsPending +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x598d3622 VBoxGuest_RTAssertMsg2AddWeak +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5a97195c VBoxGuest_RTHeapSimpleRelocate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5aa6ed66 VBoxGuest_RTPowerSignalEvent +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5b3a5164 VBoxGuest_RTLogWriteUser +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5cc0b1b2 VBoxGuest_RTProcSelf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5d3b1bd6 VBoxGuest_RTSemSpinMutexRelease +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5e071eb3 VBoxGuest_RTSemEventMultiDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5e17b70e VBoxGuest_RTSpinlockRelease +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5e75c570 VBoxGuest_RTStrToUInt16 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5eaea89a VBoxGuest_RTSemFastMutexCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5ee65bb7 VBoxGuest_RTStrToUInt16Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5ef42fe5 VBoxGuest_RTTimerStart +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5f2f48bb VBoxGuest_RTLogWriteStdErr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x61143878 VBoxGuestIDCCall +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6173b384 VBoxGuest_RTMpOnPairIsConcurrentExecSupported +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x61770e8c VBoxGuest_RTStrToUInt32 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x63378722 VBoxGuest_RTLogBackdoorPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x634946f7 VBoxGuest_RTMpIsCpuOnline +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x637a1d69 VBoxGuest_RTLogWriteStdOut +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6381bb97 VBoxGuest_RTStrFormat +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x63b1fde6 VBoxGuest_RTMpCpuIdToSetIndex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x63bc10b0 VBoxGuest_RTLogCreateExV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x658cd915 VBoxGuest_RTR0MemObjFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x67135d2b VBoxGuest_RTSemFastMutexRequest +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6862822a VBoxGuest_RTHeapSimpleSize +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x695d63ad VBoxGuest_RTMpNotificationDeregister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6b01bbf3 VBoxGuest_RTMpOnSpecific +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6b58b79d VBoxGuest_RTSemSpinMutexDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6b91f1ce VBoxGuest_RTStrFormatTypeDeregister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6c8460ac VBoxGuest_RTLogRelGetDefaultInstanceEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6cec7c3b VBoxGuest_RTTimerCreateEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6d8e9c87 VBoxGuest_RTTimeNow +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6e8541b7 VBoxGuest_RTAssertMsg2Weak +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x704e1f6f VBoxGuest_RTAssertMsg2AddWeakV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x70867323 VBoxGuest_RTStrToUInt8Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x71060970 VBoxGuest_RTStrToUInt16Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x716e3be3 VBoxGuest_RTMpGetOnlineCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x729cc4ab VBoxGuest_RTR0MemObjSize +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x72ff1bc3 VBoxGuest_RTTimeIsLeapYear +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x730a01b0 VBoxGuest_RTLogRelSetDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x74812dde VBoxGuest_RTStrToInt32Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x759e7492 VBoxGuest_RTSemFastMutexDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x764ecb18 VBoxGuest_RTR0MemObjAllocLowTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x76a3c47b VBoxGuest_RTMemAllocZVarTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x79d59e24 VBoxGuest_RTSemSpinMutexRequest +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7d0d9dae VBoxGuest_RTR0MemObjAllocPhysNCTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7d15e878 VBoxGuest_RTMpGetOnlineSet +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7dcc30d8 VBoxGuest_RTStrToInt32Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7e29739a VBoxGuest_RTStrToInt16 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7f0a40ea VBoxGuest_RTLogComPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7fc5bdcf VBoxGuest_RTR0MemObjAllocPhysTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8196c4e6 VBoxGuest_RTSemSpinMutexTryRequest +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x82e081bc VBoxGuest_RTStrFormatTypeSetUser +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x83e78406 VBoxGuest_RTR0MemAreKrnlAndUsrDifferent +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x841e42e9 VBoxGuest_RTSemMutexCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8484a0d6 VBoxGuest_RTStrToInt16Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x84e227f6 VBoxGuest_RTThreadIsSelfKnown +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x86120100 VBoxGuest_RTLogDumpPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x867be0d2 VBoxGuest_RTLogDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x868b79a5 VBoxGuest_RTStrPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x879761cf VBoxGuest_RTR0MemObjAllocPhysExTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x87da3860 VBoxGuest_RTAssertSetQuiet +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8826d9de VBoxGuest_RTMpGetMaxCpuId +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x883d496c VBoxGuest_RTMpGetCoreCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x885274fe VBoxGuest_RTThreadUserWaitNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x89117f68 VBoxGuest_RTMemExecAllocTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8a3c154f VBoxGuest_RTR0MemObjLockUserTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8a454b31 VBoxGuest_RTSemEventGetResolution +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8e01e3fd VBoxGuest_RTStrFormatV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8f1309e3 VBoxGuest_RTAssertMsg2 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x90312938 VBoxGuest_RTStrToUInt64Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x91204a9b VBoxGuest_RTTimeSpecToString +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x916e42f0 VBoxGuest_RTAssertMsg1Weak +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9264ffc0 VBoxGuest_RTLogRelPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x926bf9f7 VBoxGuest_RTThreadPreemptDisable +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x92e716ae VBoxGuest_RTLogGetDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x94f7365f VBoxGuest_RTPowerNotificationRegister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x95fa480d VBoxGuest_RTSpinlockCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x961772f3 VBoxGuestIDCOpen +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x967ea4b6 VBoxGuest_RTStrToInt64 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x96893ce3 VBoxGuest_RTR0MemObjAllocPageTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x96f2e65b VBoxGuest_RTR0MemUserCopyFrom +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9796440b VBoxGuest_RTSemEventWaitNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x97eb2414 VBoxGuest_RTThreadNativeSelf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9874cd16 VBoxGuest_RTMpIsCpuPossible +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9909ff3d VBoxGuest_g_pszRTAssertFunction +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9a2ee747 VBoxGuest_RTSemEventDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9bcc539d VBoxGuest_RTThreadUserReset +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9cd9213f VBoxGuest_RTR0MemKernelIsValidAddr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9d6b527c VBoxGuest_RTThreadWait +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9dbd63d6 VBoxGuest_RTStrPrintfEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9eaecd9d VBoxGuest_RTStrPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9f301085 VBoxGuest_RTTimeSpecFromString +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9f4f616a VBoxGuest_RTLogLogger +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9fb0596d VBoxGuest_RTMemDupTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa168a070 VBoxGuest_RTLogLoggerExV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa34eb1b3 VBoxGuest_RTTimeSystemNanoTS +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa486e710 VBoxGuestIDCClose +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa554bd97 VBoxGuest_RTLogFlushRC +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa5a26703 VBoxGuest_RTMpNotificationRegister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa696baed VBoxGuest_RTR0MemObjAddress +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa6a22472 VBoxGuest_RTThreadUserWait +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa6de1bcd VBoxGuest_RTTimerChangeInterval +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa86c5a96 VBoxGuest_RTSemEventSignal +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xaba9bc9c VBoxGuest_RTLogCloneRC +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xac990d74 VBoxGuest_RTTimerCanDoHighResolution +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xacaac41d VBoxGuest_g_szRTAssertMsg1 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xad4fdf4e VBoxGuest_RTSemMutexRequestNoResumeDebug +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xad649089 VBoxGuest_RTStrToUInt64Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xae3e0ecd VBoxGuest_RTLogRelPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xaf6ffbfc VBoxGuest_RTThreadSleep +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb05840a7 VBoxGuest_RTSemEventMultiWaitExDebug +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb1cc9148 VBoxGuest_RTLogWriteCom +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb42ea0e3 VBoxGuest_g_pszRTAssertFile +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb444f4a1 VBoxGuest_RTLogDestinations +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb6941b2e VBoxGuest_RTStrToUInt8 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb8c6e615 VBoxGuest_RTStrToUInt32Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb8ca8fcb VBoxGuest_RTMpOnPair +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb8df2b3a VBoxGuest_RTAssertShouldPanic +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb9b070b7 VBoxGuest_RTAssertMsg2V +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb9d7a27d VBoxGuest_RTHeapSimpleDump +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbaa97421 VBoxGuest_g_szRTAssertMsg2 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbb1ead73 VBoxGuest_RTR0MemKernelCopyTo +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbba928e6 VBoxGuest_RTHeapSimpleGetHeapSize +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbc4d30f6 VBoxGuest_RTR0MemObjAllocContTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbc85935a VBoxGuest_RTR0MemKernelCopyFrom +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbe4e6114 VBoxGuest_RTLogFlushToLogger +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbffedb55 VBoxGuest_RTMemAllocExTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc1095c44 VBoxGuest_RTTimeImplode +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc1b3ada4 VBoxGuest_RTAssertMsg2WeakV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc3a1e5de VBoxGuest_RTLogGetGroupSettings +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc3fee96e VBoxGuest_RTMemAllocTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc4bd5fd8 VBoxGuest_RTStrPrintfExV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc63cc2f0 VBoxGuest_RTR0MemExecDonate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc71362b7 VBoxGuest_RTLogRelSetBuffering +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc8fbf4aa VBoxGuest_RTHeapSimpleInit +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc91cea98 VBoxGuest_RTStrCopyEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc9a6a8e7 VBoxGuest_RTThreadCreateF +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcaee97bf VBoxGuest_RTLogComPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcb2a6b54 VBoxGuest_RTMemExecFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xceae9d6a VBoxGuest_RTStrConvertHexBytes +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd14e8ec2 VBoxGuest_RTTimerDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd1f3f0b9 VBoxGuest_RTSemEventWait +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd2a37e73 VBoxGuest_RTTimerReleaseSystemGranularity +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd2d290ab VBoxGuest_RTStrToUInt8Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd3a125cb VBoxGuest_RTR0MemObjMapKernelTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd46c35d4 VBoxGuest_RTMpOnAll +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd4b597fc VBoxGuest_RTStrCopyP +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd5bfc897 VBoxGuest_RTHeapSimpleAllocZ +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd637869e VBoxGuest_RTMemReallocTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd69bc8e4 VBoxGuest_RTR0MemObjReserveUserTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd706d85c VBoxGuest_RTTimeFromString +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd88c9330 VBoxGuest_RTLogLoggerV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd984a7f4 VBoxGuest_RTStrFormatTypeRegister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdc700594 VBoxGuest_RTSemEventMultiGetResolution +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xde9ca744 VBoxGuest_RTThreadYield +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdfbc69bb VBoxGuest_RTThreadPreemptIsPendingTrusty +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe054d759 VBoxGuest_RTMemTmpFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe095cef8 VBoxGuest_RTThreadSetType +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe0dc7391 VBoxGuest_RTThreadIsMain +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe1c6b3d7 VBoxGuest_RTR0MemObjMapKernelExTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe2765c54 VBoxGuest_RTR0AssertPanicSystem +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe38d562c VBoxGuest_RTStrFormatNumber +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe3fd228f VBoxGuest_RTTimeMilliTS +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe7e42113 VBoxGuest_RTThreadSleepNoLog +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe88dae73 VBoxGuest_RTMemFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe8fad285 VBoxGuest_RTSemEventMultiWaitNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xea2f2944 VBoxGuest_RTStrToInt8Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xea38e4f7 VBoxGuest_RTLogDefaultInstanceEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xea71842b VBoxGuest_RTMpGetPresentCoreCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xebeefa0e VBoxGuest_RTR0ProcHandleSelf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xec3cc9a6 VBoxGuest_RTSemEventMultiWaitEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xee774b8e VBoxGuest_RTLogWriteDebugger +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xeea4ee73 VBoxGuest_RTR0MemObjMapUserTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xef6e1359 VBoxGuest_RTMpOnOthers +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf02f22ab VBoxGuest_RTMemAllocZTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf0dbb702 VBoxGuest_RTHeapSimpleFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf26294bb VBoxGuest_RTR0MemObjIsMapping +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf2aa79bb VBoxGuest_RTThreadUserSignal +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf3943009 VBoxGuest_RTTimerRequestSystemGranularity +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf5d89855 VBoxGuest_RTLogGroupSettings +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf69aec24 VBoxGuest_RTStrToInt16Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf7397dd2 VBoxGuest_RTAssertSetMayPanic +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf8113d66 VBoxGuest_RTMpOnAllIsConcurrentSafe +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf956a4e8 VBoxGuest_RTLogFlush +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf958d9cb VBoxGuest_RTLogCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfa7d95c9 VBoxGuest_RTR0MemUserIsValidAddr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfb31e12b VBoxGuest_RTStrToUInt32Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfba93ac9 VBoxGuest_RTR0MemObjReserveKernelTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfbc67e88 VBoxGuest_RTMemFreeEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfe72cef7 VBoxGuest_RTStrToInt8 +EXPORT_SYMBOL vmlinux 0x00001eef scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x0033b3a5 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x003f0064 inet6_protos +EXPORT_SYMBOL vmlinux 0x0053db54 get_phy_device +EXPORT_SYMBOL vmlinux 0x0057a42f netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0x005c1542 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x005cf447 param_set_ullong +EXPORT_SYMBOL vmlinux 0x0069557b mdiobus_free +EXPORT_SYMBOL vmlinux 0x0070cd1f queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x0085e1f1 __do_once_done +EXPORT_SYMBOL vmlinux 0x00b8c3a7 mempool_alloc +EXPORT_SYMBOL vmlinux 0x00bd6b44 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x00cc4b7b jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00daf6a2 dev_change_carrier +EXPORT_SYMBOL vmlinux 0x00e1d088 d_invalidate +EXPORT_SYMBOL vmlinux 0x00effacc PDE_DATA +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x010a3a42 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x0125b495 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x013ddb0d nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x013f1bf1 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0x01535f83 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x015bc04d dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x016bba17 x86_hyper_ms_hyperv +EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer +EXPORT_SYMBOL vmlinux 0x01a275e1 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x01bdff09 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x01c32173 unlock_page +EXPORT_SYMBOL vmlinux 0x01d1af43 mntput +EXPORT_SYMBOL vmlinux 0x01d83e02 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x01f25d97 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x02036975 __invalidate_device +EXPORT_SYMBOL vmlinux 0x020c7b70 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x0221dbf7 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x0230d3a0 mb_cache_shrink +EXPORT_SYMBOL vmlinux 0x02327dd7 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x024bf827 radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x0261d418 force_sig +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02e9bdb4 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02f4f298 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x02fedce6 mmc_register_driver +EXPORT_SYMBOL vmlinux 0x0301d8be bio_map_kern +EXPORT_SYMBOL vmlinux 0x03292b8c devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x0334ff19 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x033d78d1 page_symlink +EXPORT_SYMBOL vmlinux 0x033e8f44 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x03a69301 bdev_read_only +EXPORT_SYMBOL vmlinux 0x03a70c4b inode_set_bytes +EXPORT_SYMBOL vmlinux 0x03cbbad4 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x03d385e0 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x03dc968c update_region +EXPORT_SYMBOL vmlinux 0x03e8b811 block_commit_write +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x0426ba24 idr_for_each +EXPORT_SYMBOL vmlinux 0x0437b311 sync_blockdev +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x0449609e sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x0457fe71 __lock_page +EXPORT_SYMBOL vmlinux 0x045c5e5c pagecache_get_page +EXPORT_SYMBOL vmlinux 0x046efd57 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x04953668 nvm_unregister_target +EXPORT_SYMBOL vmlinux 0x04b197f2 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x04c62fd7 __memset +EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x04ee7038 register_netdev +EXPORT_SYMBOL vmlinux 0x04f49cb4 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0x04fff17d skb_clone_sk +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x05332de5 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x0535b926 inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0x053b427c netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x055c8559 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x05916789 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x0591e63e jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x0595e91a jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x05b793c5 padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0x05cc2e5e account_page_dirtied +EXPORT_SYMBOL vmlinux 0x06052f8d __memmove +EXPORT_SYMBOL vmlinux 0x06073585 param_ops_ullong +EXPORT_SYMBOL vmlinux 0x060778c9 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x061f4039 acpi_get_table_with_size +EXPORT_SYMBOL vmlinux 0x0623743b proc_douintvec +EXPORT_SYMBOL vmlinux 0x062d9709 mmc_get_card +EXPORT_SYMBOL vmlinux 0x0630f96f soft_cursor +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x063ee507 pnp_possible_config +EXPORT_SYMBOL vmlinux 0x06410d19 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x064a19bd tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x067a2fae __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x068a6efe remap_pfn_range +EXPORT_SYMBOL vmlinux 0x068c7263 ioremap_cache +EXPORT_SYMBOL vmlinux 0x06a61158 unregister_nls +EXPORT_SYMBOL vmlinux 0x06c0dae5 __kernel_fpu_end +EXPORT_SYMBOL vmlinux 0x06c8c60f brioctl_set +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x0711f0ea netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x071f1d23 key_invalidate +EXPORT_SYMBOL vmlinux 0x0723dabd elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x0735b18c block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x0752d8bc dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x0757dc32 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x07825dad jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x078772d5 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x078822e4 gen_pool_create +EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07a9ef84 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x07b180b2 write_one_page +EXPORT_SYMBOL vmlinux 0x07b1dfb6 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x07be655d ip6_frag_init +EXPORT_SYMBOL vmlinux 0x07c56eae elv_rb_add +EXPORT_SYMBOL vmlinux 0x07cc24b4 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07ce86aa xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x07f298a5 __elv_add_request +EXPORT_SYMBOL vmlinux 0x07fb2a97 would_dump +EXPORT_SYMBOL vmlinux 0x07ff0849 twl6040_power +EXPORT_SYMBOL vmlinux 0x08062573 revalidate_disk +EXPORT_SYMBOL vmlinux 0x081f10d2 __kfree_skb +EXPORT_SYMBOL vmlinux 0x0820fc87 lro_flush_all +EXPORT_SYMBOL vmlinux 0x08265113 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x0844364b netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x0846717b datagram_poll +EXPORT_SYMBOL vmlinux 0x0864fb0d blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x0897287b acpi_disable_all_gpes +EXPORT_SYMBOL vmlinux 0x08a986b1 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x08d37945 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x08d41d3f mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x08ed39b2 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x08fcb3b5 vfs_writev +EXPORT_SYMBOL vmlinux 0x093e9b0c kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x0948d823 simple_write_begin +EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key +EXPORT_SYMBOL vmlinux 0x09696626 acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x0975f2fa generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x0980f1c9 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x098431ba acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x09af5196 devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0x09bc644c ps2_begin_command +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09e88526 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x0a030233 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x0a0dbf87 dev_notice +EXPORT_SYMBOL vmlinux 0x0a25b9e8 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a57863e cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x0a63cff4 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x0a65a8c6 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x0a661faa lg_local_unlock +EXPORT_SYMBOL vmlinux 0x0a67dd52 make_bad_inode +EXPORT_SYMBOL vmlinux 0x0a68ec72 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x0a6db909 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a8ce049 uart_resume_port +EXPORT_SYMBOL vmlinux 0x0a957cb0 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0ac92312 inode_set_flags +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ad42388 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x0af8074b neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b284142 dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x0b2fac5c d_path +EXPORT_SYMBOL vmlinux 0x0b3de68a neigh_update +EXPORT_SYMBOL vmlinux 0x0b42366f invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b758a26 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x0b893dcf blk_finish_request +EXPORT_SYMBOL vmlinux 0x0b905c66 __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x0b990688 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x0ba49aa5 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x0ba94b04 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x0babcf80 open_exec +EXPORT_SYMBOL vmlinux 0x0bba2069 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc3f77f dquot_alloc +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bc919ca acl_by_type +EXPORT_SYMBOL vmlinux 0x0bdb2dc8 do_splice_direct +EXPORT_SYMBOL vmlinux 0x0be2ad5b bio_alloc_pages +EXPORT_SYMBOL vmlinux 0x0bfcca83 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x0bff4e36 xattr_full_name +EXPORT_SYMBOL vmlinux 0x0c00ad92 max8998_update_reg +EXPORT_SYMBOL vmlinux 0x0c0ae894 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x0c21d019 flush_delayed_work +EXPORT_SYMBOL vmlinux 0x0c42913f call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c69c353 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c825b9d ilookup +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0ca7b7a8 acpi_check_region +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cdb7d12 __kernel_fpu_begin +EXPORT_SYMBOL vmlinux 0x0cf14048 devm_ioport_map +EXPORT_SYMBOL vmlinux 0x0d021cd4 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x0d3dda14 acpi_get_type +EXPORT_SYMBOL vmlinux 0x0d42a510 mmc_free_host +EXPORT_SYMBOL vmlinux 0x0d53ed85 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d597d1d __f_setown +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d68e7c5 ab3100_event_register +EXPORT_SYMBOL vmlinux 0x0d71ef32 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x0d7258f2 param_get_short +EXPORT_SYMBOL vmlinux 0x0d80efb5 acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0x0d9019dd netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x0d96ebd5 compat_ip_setsockopt +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0da190a9 bio_add_page +EXPORT_SYMBOL vmlinux 0x0dc6feca serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x0dcc4361 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x0dd599df __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x0df439a8 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0x0df58112 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x0e075aee uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x0e0f38b6 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x0e3027bd inet6_ioctl +EXPORT_SYMBOL vmlinux 0x0e33f39c netlink_broadcast +EXPORT_SYMBOL vmlinux 0x0e36496d __secpath_destroy +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e763606 mmc_put_card +EXPORT_SYMBOL vmlinux 0x0e7ef864 generic_write_checks +EXPORT_SYMBOL vmlinux 0x0e87daf6 seq_release +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ed8cc7b acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x0ee7b834 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x0eeec7bb bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f3999f1 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x0f3b576e tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f5dab6c __pagevec_release +EXPORT_SYMBOL vmlinux 0x0f66a9b0 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f8ad1c4 param_get_uint +EXPORT_SYMBOL vmlinux 0x0f9114b4 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x0f9b4a97 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x0fa55ffb nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb0f70d nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fb7d3de __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x0fc3569d inode_add_bytes +EXPORT_SYMBOL vmlinux 0x0fc6943e fb_set_var +EXPORT_SYMBOL vmlinux 0x0fc87c38 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x0fd00a68 acpi_clear_event +EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress +EXPORT_SYMBOL vmlinux 0x0fff2b42 page_waitqueue +EXPORT_SYMBOL vmlinux 0x100e00e9 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x10126ec7 tcf_em_register +EXPORT_SYMBOL vmlinux 0x1027f4a8 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x10294acd cdev_init +EXPORT_SYMBOL vmlinux 0x10309451 icmpv6_send +EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user +EXPORT_SYMBOL vmlinux 0x10738989 netdev_err +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x108d6f06 agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0x10950ee1 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x1099fa5c security_path_symlink +EXPORT_SYMBOL vmlinux 0x109c58af devm_free_irq +EXPORT_SYMBOL vmlinux 0x10c3e712 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x10c7d031 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x10eae2d3 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x10fd7c9f try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x1100999e dma_async_device_register +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x111137f8 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x114f7292 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x11666881 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x117bcf99 __blk_end_request +EXPORT_SYMBOL vmlinux 0x118ae3f9 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x118b0ed2 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x118c0dc9 skb_push +EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x11bf7d48 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x11ee94f9 sock_release +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120c42d6 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x1217830a compat_sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x123f82f3 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x12433d54 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x1243abd1 __kernel_write +EXPORT_SYMBOL vmlinux 0x1248ab0f audit_log_task_info +EXPORT_SYMBOL vmlinux 0x1250c7e1 _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x12558ea1 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x127b2c4d fb_set_cmap +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12cc0645 sg_miter_next +EXPORT_SYMBOL vmlinux 0x12d95aa2 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x12dfeb12 vprintk_emit +EXPORT_SYMBOL vmlinux 0x1305d532 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x1306b06c i2c_transfer +EXPORT_SYMBOL vmlinux 0x1317b1f3 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x132a2b10 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc +EXPORT_SYMBOL vmlinux 0x13363f70 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x135e4e93 param_get_ullong +EXPORT_SYMBOL vmlinux 0x1360122a tty_port_close_end +EXPORT_SYMBOL vmlinux 0x137760c3 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x138cd66f input_reset_device +EXPORT_SYMBOL vmlinux 0x138ea778 dev_add_pack +EXPORT_SYMBOL vmlinux 0x13968c7f sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x13a146a9 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x13a7f271 udp_del_offload +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13e05678 generic_setxattr +EXPORT_SYMBOL vmlinux 0x13f004f9 kernel_accept +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13ff1b98 pci_iounmap +EXPORT_SYMBOL vmlinux 0x1403a42d ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x141ce8c1 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x14557fb2 up_write +EXPORT_SYMBOL vmlinux 0x1463d80d put_tty_driver +EXPORT_SYMBOL vmlinux 0x146eb343 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x147a798b sync_filesystem +EXPORT_SYMBOL vmlinux 0x14820128 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x14838266 serio_rescan +EXPORT_SYMBOL vmlinux 0x149a62a0 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x14ab06a3 pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0x14b3289e acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0x14c06b51 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x14c3769d secpath_dup +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14d5f9fc free_task +EXPORT_SYMBOL vmlinux 0x14da914f scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x14e298d4 arp_xmit +EXPORT_SYMBOL vmlinux 0x14e56ed4 bitmap_unplug +EXPORT_SYMBOL vmlinux 0x14e6cf02 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x14e7a58c ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x1501a3bc __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x150389d6 acpi_processor_power_init_bm_check +EXPORT_SYMBOL vmlinux 0x15136f1e input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x151b71cb set_binfmt +EXPORT_SYMBOL vmlinux 0x151fd60e swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x1530ef67 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x1533083e xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x1547bfd6 __wait_on_bit +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x15500247 fb_class +EXPORT_SYMBOL vmlinux 0x156a8a59 down_trylock +EXPORT_SYMBOL vmlinux 0x15799c11 _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x158294e5 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x15a83997 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15c302e1 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x160ea4c8 sfi_disabled +EXPORT_SYMBOL vmlinux 0x1616cb30 acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0x162d53cc security_path_unlink +EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null +EXPORT_SYMBOL vmlinux 0x1642b519 prepare_creds +EXPORT_SYMBOL vmlinux 0x165284c9 mmc_align_data_size +EXPORT_SYMBOL vmlinux 0x165dadba __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x1665a916 key_alloc +EXPORT_SYMBOL vmlinux 0x1667ad75 tty_name +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 +EXPORT_SYMBOL vmlinux 0x16855149 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x16a87ec8 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x16b85c69 mutex_unlock +EXPORT_SYMBOL vmlinux 0x16c851ca fb_show_logo +EXPORT_SYMBOL vmlinux 0x16dc4d1f fence_init +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16f4bd6b inet_frag_find +EXPORT_SYMBOL vmlinux 0x170c25ee acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x17353a27 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x17465b17 set_pages_array_wc +EXPORT_SYMBOL vmlinux 0x174b5c79 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x178926b2 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x178fc438 gen_new_estimator +EXPORT_SYMBOL vmlinux 0x1793f685 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x179651ac _raw_read_lock +EXPORT_SYMBOL vmlinux 0x17a161b2 mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17c532a8 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x17e537e9 generic_perform_write +EXPORT_SYMBOL vmlinux 0x17ee365e mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x17efeedb do_splice_to +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x18091ea0 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x182af0fa scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x1835811b pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x1842616c skb_tx_error +EXPORT_SYMBOL vmlinux 0x1848874b simple_transaction_get +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x18828ac8 input_event +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x189acf49 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x18a0715b nd_iostat_end +EXPORT_SYMBOL vmlinux 0x18a59c2c i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x18b72573 register_kmmio_probe +EXPORT_SYMBOL vmlinux 0x18b8d92e should_remove_suid +EXPORT_SYMBOL vmlinux 0x18ca6192 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18e8b540 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x190355a0 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x190c37f5 nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0x1916e38c _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x1946776e sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x1983154e bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x19865fac __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19c0ef20 account_page_redirty +EXPORT_SYMBOL vmlinux 0x19e55061 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x19ec4a82 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x19f5857d inet_sendpage +EXPORT_SYMBOL vmlinux 0x1a03950b kernel_param_lock +EXPORT_SYMBOL vmlinux 0x1a0c2d90 da903x_query_status +EXPORT_SYMBOL vmlinux 0x1a24ec66 find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a4d7bc2 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x1a4f7ba7 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x1a50ad6b blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x1a50bda2 set_page_dirty +EXPORT_SYMBOL vmlinux 0x1a50c096 sock_no_listen +EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch +EXPORT_SYMBOL vmlinux 0x1a6415d2 inode_change_ok +EXPORT_SYMBOL vmlinux 0x1a654cb3 tc_classify +EXPORT_SYMBOL vmlinux 0x1a7f8ff7 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x1a86e5f4 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x1a9f8ac2 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x1aa41715 uart_suspend_port +EXPORT_SYMBOL vmlinux 0x1aae9d85 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1ac9885d pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x1acd9b05 tcp_prot +EXPORT_SYMBOL vmlinux 0x1ae09f75 _raw_write_unlock_irq +EXPORT_SYMBOL vmlinux 0x1aee6df2 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x1afb1aaa acpi_mark_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b13f3f6 dev_warn +EXPORT_SYMBOL vmlinux 0x1b189b2c request_key_async +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b29d19c tty_free_termios +EXPORT_SYMBOL vmlinux 0x1b411645 input_grab_device +EXPORT_SYMBOL vmlinux 0x1b570d23 acpi_warning +EXPORT_SYMBOL vmlinux 0x1b5d7f4e fsync_bdev +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b7ed715 blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x1b82dba2 nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1ba71c4c skb_unlink +EXPORT_SYMBOL vmlinux 0x1ba878cc proc_mkdir +EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer +EXPORT_SYMBOL vmlinux 0x1bb3e2c5 qdisc_list_del +EXPORT_SYMBOL vmlinux 0x1bbb6f98 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x1bd4c807 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x1bddb1bb __ps2_command +EXPORT_SYMBOL vmlinux 0x1be1dd26 lg_global_lock +EXPORT_SYMBOL vmlinux 0x1c24f74d generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x1c2e85e1 misc_deregister +EXPORT_SYMBOL vmlinux 0x1c301f33 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x1c699798 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x1c8a04b0 acpi_reset +EXPORT_SYMBOL vmlinux 0x1c9a6feb acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x1cac4727 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0x1ce5cede nd_pfn_probe +EXPORT_SYMBOL vmlinux 0x1d1056e5 crc32_be +EXPORT_SYMBOL vmlinux 0x1d476074 devm_gpiod_put +EXPORT_SYMBOL vmlinux 0x1d5c2f35 dump_trace +EXPORT_SYMBOL vmlinux 0x1d7b5df3 vm_map_ram +EXPORT_SYMBOL vmlinux 0x1d890288 led_set_brightness +EXPORT_SYMBOL vmlinux 0x1d8b40c6 free_buffer_head +EXPORT_SYMBOL vmlinux 0x1d96a5d9 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x1db658c3 is_nd_pfn +EXPORT_SYMBOL vmlinux 0x1db6ee1f netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x1db7706b __copy_user_nocache +EXPORT_SYMBOL vmlinux 0x1db7f531 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dc39582 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1ddd9889 __find_get_block +EXPORT_SYMBOL vmlinux 0x1de74f72 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0x1df984ab bioset_integrity_free +EXPORT_SYMBOL vmlinux 0x1dfd47b3 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x1e00ba5f d_instantiate +EXPORT_SYMBOL vmlinux 0x1e036c98 acpi_set_gpe +EXPORT_SYMBOL vmlinux 0x1e047854 warn_slowpath_fmt +EXPORT_SYMBOL vmlinux 0x1e0c2be4 ioremap_wc +EXPORT_SYMBOL vmlinux 0x1e0dadb6 dns_query +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e3364b5 dev_addr_add +EXPORT_SYMBOL vmlinux 0x1e3764b3 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x1e3c1ff3 input_free_device +EXPORT_SYMBOL vmlinux 0x1e40df47 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x1e51af8a blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea9c10d devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0x1eb42448 __sb_start_write +EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector +EXPORT_SYMBOL vmlinux 0x1ec37ca0 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x1edc53c5 param_set_short +EXPORT_SYMBOL vmlinux 0x1ef80b99 fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0x1efbf1b4 param_get_charp +EXPORT_SYMBOL vmlinux 0x1f1307b8 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x1f385737 seq_lseek +EXPORT_SYMBOL vmlinux 0x1f3ddcbe swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0x1f6ce67a sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x1f7459f6 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x1f988b05 ping_prot +EXPORT_SYMBOL vmlinux 0x1faa9bd4 phy_device_free +EXPORT_SYMBOL vmlinux 0x1fac09fd dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x1fb6612c pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fc8e63e nvm_end_io +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region +EXPORT_SYMBOL vmlinux 0x1ff8bffc __mutex_init +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x2005e68a acpi_remove_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x20092385 acpi_enter_sleep_state_s4bios +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x200e0a97 swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x201b0ac0 lg_global_unlock +EXPORT_SYMBOL vmlinux 0x201d4961 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x2044aea7 amd_iommu_pc_get_max_banks +EXPORT_SYMBOL vmlinux 0x204b8c16 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x2062db11 xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x2084ede5 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x208739f6 acpi_load_table +EXPORT_SYMBOL vmlinux 0x20a1975a pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20a9e61b dev_get_flags +EXPORT_SYMBOL vmlinux 0x20bf7bd1 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20d7e292 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x20d88e31 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x20dc5481 pci_dev_get +EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x20fbe8ee __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x20fc1ecc __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x21088823 tty_port_open +EXPORT_SYMBOL vmlinux 0x21108a99 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x211f68f1 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x21508af3 netdev_warn +EXPORT_SYMBOL vmlinux 0x217fc053 tso_start +EXPORT_SYMBOL vmlinux 0x218124d3 poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x21875925 genphy_config_init +EXPORT_SYMBOL vmlinux 0x218a36b6 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x218a6847 dput +EXPORT_SYMBOL vmlinux 0x219b3196 compat_sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x21a701fe fence_signal +EXPORT_SYMBOL vmlinux 0x21ceda93 elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21e133f8 dquot_transfer +EXPORT_SYMBOL vmlinux 0x21e992a5 ida_simple_get +EXPORT_SYMBOL vmlinux 0x220693a2 blk_rq_init +EXPORT_SYMBOL vmlinux 0x2207a57f prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x220ef981 security_path_truncate +EXPORT_SYMBOL vmlinux 0x2216463c dma_find_channel +EXPORT_SYMBOL vmlinux 0x2229b9d9 param_ops_byte +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x2250b9b1 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x225aded9 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x225d42bc i2c_register_driver +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x2275a315 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x22767127 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22d2d913 napi_gro_frags +EXPORT_SYMBOL vmlinux 0x22dce004 blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0x22ee0f89 dqput +EXPORT_SYMBOL vmlinux 0x22fb64a6 nf_log_register +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x231e1843 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x23281121 bioset_free +EXPORT_SYMBOL vmlinux 0x232d18ec rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x234bd8fd pnp_activate_dev +EXPORT_SYMBOL vmlinux 0x235d3640 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x235fcc13 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x237902bb vga_switcheroo_register_audio_client +EXPORT_SYMBOL vmlinux 0x2381496e nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x23892dfb dev_alloc_name +EXPORT_SYMBOL vmlinux 0x23a10e4d unregister_console +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c4a74c dev_uc_del +EXPORT_SYMBOL vmlinux 0x23c826a7 sock_no_getname +EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x23cf97db vm_event_states +EXPORT_SYMBOL vmlinux 0x23d02ba4 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x23ea0ed2 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x241ab06c fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x2439da12 pci_choose_state +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x2445a234 md_write_end +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x246d838a unregister_md_personality +EXPORT_SYMBOL vmlinux 0x246f437a crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x247482a9 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x2484262a pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x2494fbb9 unload_nls +EXPORT_SYMBOL vmlinux 0x249b6181 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x250b45f9 xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x252cd274 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x25338d91 vme_bus_num +EXPORT_SYMBOL vmlinux 0x2565b4e9 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x256e4dc7 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x2574eea5 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x257de643 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x25856b5d dev_mc_del +EXPORT_SYMBOL vmlinux 0x25b486d9 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x25be085f agp_free_memory +EXPORT_SYMBOL vmlinux 0x25c0646a pv_cpu_ops +EXPORT_SYMBOL vmlinux 0x25cd061e gnttab_alloc_pages +EXPORT_SYMBOL vmlinux 0x25dd9186 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x2602d2fc phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0x2610f0e2 pci_set_master +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux +EXPORT_SYMBOL vmlinux 0x2665d53a key_create_or_update +EXPORT_SYMBOL vmlinux 0x267c2016 cros_ec_check_result +EXPORT_SYMBOL vmlinux 0x267c54c9 pci_enable_device +EXPORT_SYMBOL vmlinux 0x26948d96 copy_user_enhanced_fast_string +EXPORT_SYMBOL vmlinux 0x2696fc55 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x26ac0089 cont_write_begin +EXPORT_SYMBOL vmlinux 0x26b41431 d_alloc_name +EXPORT_SYMBOL vmlinux 0x26b84045 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x26bef759 md_register_thread +EXPORT_SYMBOL vmlinux 0x26c31cae __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x26cb34a2 mempool_create +EXPORT_SYMBOL vmlinux 0x26cef793 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x26dca014 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x271c315c dquot_free_inode +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x27443b19 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274b799a del_gendisk +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x275edd8d sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x27613e1e vga_switcheroo_set_dynamic_switch +EXPORT_SYMBOL vmlinux 0x27717e43 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x277be5f6 dget_parent +EXPORT_SYMBOL vmlinux 0x27845b78 kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x27882b9b ida_simple_remove +EXPORT_SYMBOL vmlinux 0x27ae7d0c ec_transaction +EXPORT_SYMBOL vmlinux 0x27b5c5f1 sk_common_release +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c33efe csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x28009c63 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x2813fcac inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x28318305 snprintf +EXPORT_SYMBOL vmlinux 0x284692b8 genlmsg_put +EXPORT_SYMBOL vmlinux 0x284d1739 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x2859d9b5 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x28761c5b block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x289160e2 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x28997d8f cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x28a2b29f radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28abfe6e scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available +EXPORT_SYMBOL vmlinux 0x292720df iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x292c520c eth_validate_addr +EXPORT_SYMBOL vmlinux 0x29331872 dev_get_stats +EXPORT_SYMBOL vmlinux 0x293651c8 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x295e6c9c nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0x297fed15 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0x298168a6 bdgrab +EXPORT_SYMBOL vmlinux 0x29818e30 dquot_initialize +EXPORT_SYMBOL vmlinux 0x29925b2c vfs_readv +EXPORT_SYMBOL vmlinux 0x299933ec phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x29a83529 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x29ad58e5 __destroy_inode +EXPORT_SYMBOL vmlinux 0x29b0c263 pci_assign_resource +EXPORT_SYMBOL vmlinux 0x29b2279e __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x29bf09cf blk_init_queue +EXPORT_SYMBOL vmlinux 0x29bf847d ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x29c4158e filemap_fault +EXPORT_SYMBOL vmlinux 0x29cd1b6d kfree_skb_list +EXPORT_SYMBOL vmlinux 0x2a04f7a8 block_write_full_page +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a3d8ca9 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x2a442ff8 page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0x2a4e8223 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x2a565a25 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x2a572390 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x2a74362b sock_no_mmap +EXPORT_SYMBOL vmlinux 0x2a778032 mem_cgroup_end_page_stat +EXPORT_SYMBOL vmlinux 0x2a91e6b0 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x2aaee03d udp_proc_unregister +EXPORT_SYMBOL vmlinux 0x2ac7ae9b lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2ae7eb50 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x2af7e095 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x2b05a21b intel_gtt_get +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b239f32 elv_rb_del +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b403c57 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x2b45431e dev_mc_add +EXPORT_SYMBOL vmlinux 0x2b4a97c0 devm_clk_put +EXPORT_SYMBOL vmlinux 0x2b4c169c follow_pfn +EXPORT_SYMBOL vmlinux 0x2b674ff2 kernel_write +EXPORT_SYMBOL vmlinux 0x2b954221 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2b9fa57d nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2bb55d6e acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x2bc0bb5b devfreq_add_device +EXPORT_SYMBOL vmlinux 0x2bcce224 textsearch_register +EXPORT_SYMBOL vmlinux 0x2bd26d8f xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x2bdbf9d0 security_path_rename +EXPORT_SYMBOL vmlinux 0x2bfeb410 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x2c0ce567 inet_shutdown +EXPORT_SYMBOL vmlinux 0x2c16a088 fput +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c540faf security_path_chown +EXPORT_SYMBOL vmlinux 0x2c61dea8 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x2c668d7b neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x2c6babb0 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x2c7b00ad scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x2ca319a6 wrmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x2cb7f160 netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x2cc40ecf fence_remove_callback +EXPORT_SYMBOL vmlinux 0x2cc6499e tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x2cc93760 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x2cd4db8d twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x2cd90423 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x2ce4c2db __get_page_tail +EXPORT_SYMBOL vmlinux 0x2cf4617b ata_dev_printk +EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x2d048f0f dev_uc_add +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d144e21 rdmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x2d240ea5 d_move +EXPORT_SYMBOL vmlinux 0x2d294419 clear_wb_congested +EXPORT_SYMBOL vmlinux 0x2d2bfc01 ht_create_irq +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d30f7d0 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d563fe0 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x2d739cc4 dentry_needs_remove_privs +EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu +EXPORT_SYMBOL vmlinux 0x2dd89e3a scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink +EXPORT_SYMBOL vmlinux 0x2de7b62d param_get_bool +EXPORT_SYMBOL vmlinux 0x2dedc4c2 acpi_format_exception +EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write +EXPORT_SYMBOL vmlinux 0x2dff016b param_get_string +EXPORT_SYMBOL vmlinux 0x2e08e9f4 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x2e0d2f7f queue_work_on +EXPORT_SYMBOL vmlinux 0x2e0fe05a filemap_map_pages +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e3027df gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x2e593a27 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0x2e5d1f36 md_write_start +EXPORT_SYMBOL vmlinux 0x2e61cb65 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x2e6cee29 page_follow_link_light +EXPORT_SYMBOL vmlinux 0x2e86c9ea request_key +EXPORT_SYMBOL vmlinux 0x2e8c3379 blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0x2ea6ecf2 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x2eacc48e iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x2eae71e5 __quota_error +EXPORT_SYMBOL vmlinux 0x2eb15b80 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x2eb8e3dc netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x2ef24fb9 bdget_disk +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource +EXPORT_SYMBOL vmlinux 0x2f0fd3ea zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x2f454a62 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f64f89f cpu_present_mask +EXPORT_SYMBOL vmlinux 0x2f6f9a59 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x2f8bed12 file_update_time +EXPORT_SYMBOL vmlinux 0x2fa9214f __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x2fb4f3e6 md_integrity_register +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fd9eafb bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2ff063b5 acpi_get_name +EXPORT_SYMBOL vmlinux 0x2fff7bf0 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x30045b50 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x3027475e textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x303542c1 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x3040d417 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x304602a7 phy_detach +EXPORT_SYMBOL vmlinux 0x304895bc proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x3058ebf0 param_ops_bint +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x307d7ede swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x30914151 scsi_unregister +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30b04526 ida_init +EXPORT_SYMBOL vmlinux 0x30b8cd99 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30faf705 mutex_trylock +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x3108e6ba tty_do_resize +EXPORT_SYMBOL vmlinux 0x310ac1be consume_skb +EXPORT_SYMBOL vmlinux 0x310f02ec memremap +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x3174667e inet6_add_offload +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x3178a4e9 nobh_writepage +EXPORT_SYMBOL vmlinux 0x3179745e phy_stop +EXPORT_SYMBOL vmlinux 0x31802191 add_disk +EXPORT_SYMBOL vmlinux 0x31a76715 d_set_fallthru +EXPORT_SYMBOL vmlinux 0x31a7cffb agp_enable +EXPORT_SYMBOL vmlinux 0x31b31f5c csum_partial_copy_nocheck +EXPORT_SYMBOL vmlinux 0x31c4961b tty_port_close +EXPORT_SYMBOL vmlinux 0x31e648fb pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x31e76b57 recalibrate_cpu_khz +EXPORT_SYMBOL vmlinux 0x31ec44a0 _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0x3202435a wrmsr_safe_regs +EXPORT_SYMBOL vmlinux 0x322707e9 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x3232293c jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x323aba2a down_write_trylock +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x3250821b cfb_imageblit +EXPORT_SYMBOL vmlinux 0x325444ea _dev_info +EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom +EXPORT_SYMBOL vmlinux 0x3293fd5f pci_get_slot +EXPORT_SYMBOL vmlinux 0x329df35e __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x32b41ea0 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x32b6984e xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x32c783e0 mmc_can_erase +EXPORT_SYMBOL vmlinux 0x32cc163f inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x32e2572c sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x32fa7583 free_page_put_link +EXPORT_SYMBOL vmlinux 0x330698a0 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x333cb37c __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x33486c56 start_tty +EXPORT_SYMBOL vmlinux 0x33722104 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x337a41de noop_llseek +EXPORT_SYMBOL vmlinux 0x33a74249 amd_iommu_flush_tlb +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33c38e75 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x33c5d3fc bdi_destroy +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33c9cc20 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x33eee910 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x34143b24 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x341b0228 mutex_lock +EXPORT_SYMBOL vmlinux 0x34408e9c neigh_direct_output +EXPORT_SYMBOL vmlinux 0x344340ae mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x344aa414 locks_remove_posix +EXPORT_SYMBOL vmlinux 0x344e4d1b vme_bus_type +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x349213ef cpu_core_map +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34abfd5f sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x34cc4ff7 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x34d6543b read_code +EXPORT_SYMBOL vmlinux 0x34daad66 devm_gpio_request +EXPORT_SYMBOL vmlinux 0x34dba3cb param_set_charp +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x3530caee nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x353e21e3 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x35494357 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x35567848 vm_mmap +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x35725335 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x35a327e2 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35d64d2f xfrm_lookup +EXPORT_SYMBOL vmlinux 0x35e02e0d blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0x360156d4 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x362dd738 put_disk +EXPORT_SYMBOL vmlinux 0x3632ca45 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x363aacb7 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x36406496 clkdev_alloc +EXPORT_SYMBOL vmlinux 0x36628614 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x366875ea qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x366b5db6 tty_set_operations +EXPORT_SYMBOL vmlinux 0x367c753e sock_init_data +EXPORT_SYMBOL vmlinux 0x3680037c vc_cons +EXPORT_SYMBOL vmlinux 0x368f308e ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x369e1115 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36d194a4 nf_afinfo +EXPORT_SYMBOL vmlinux 0x36edfa31 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x36f07ce9 mmc_release_host +EXPORT_SYMBOL vmlinux 0x3701a196 csum_partial_copy_to_user +EXPORT_SYMBOL vmlinux 0x370325be __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x370a091f __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x370f9850 efi +EXPORT_SYMBOL vmlinux 0x3729f6db mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3753e41e free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x375a3bb8 bio_advance +EXPORT_SYMBOL vmlinux 0x3798f9e4 dev_set_group +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37cfe835 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37f68ac4 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x37ff48c8 tty_devnum +EXPORT_SYMBOL vmlinux 0x38099e13 wrmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x3849183a blk_start_queue +EXPORT_SYMBOL vmlinux 0x3862e484 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x38662153 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x386688ef sock_wake_async +EXPORT_SYMBOL vmlinux 0x38749aa4 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x3877b207 agp_copy_info +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x3886cdf8 open_check_o_direct +EXPORT_SYMBOL vmlinux 0x38a2bd2b blk_end_request_all +EXPORT_SYMBOL vmlinux 0x38a4e4e8 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a76d50 pci_request_regions +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38b1cae3 dst_release +EXPORT_SYMBOL vmlinux 0x38b76b2b jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x38b870b6 copy_from_iter +EXPORT_SYMBOL vmlinux 0x38be367d rfkill_alloc +EXPORT_SYMBOL vmlinux 0x38c23acd param_get_invbool +EXPORT_SYMBOL vmlinux 0x38dd8a0d pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0x38f33bed dump_fpu +EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages +EXPORT_SYMBOL vmlinux 0x390a1155 phy_suspend +EXPORT_SYMBOL vmlinux 0x390b5752 kset_unregister +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393d4de9 crc32_le +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x39592d39 nvm_dev_factory +EXPORT_SYMBOL vmlinux 0x3964c441 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x397bdd46 param_array_ops +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x399f6ac1 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x399f9042 inode_dio_wait +EXPORT_SYMBOL vmlinux 0x39a055f3 acpi_remove_gpe_handler +EXPORT_SYMBOL vmlinux 0x39a1572a inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x39a824db register_md_personality +EXPORT_SYMBOL vmlinux 0x39b16649 __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39bc0b83 udp_add_offload +EXPORT_SYMBOL vmlinux 0x39bcce3a register_qdisc +EXPORT_SYMBOL vmlinux 0x39c640b5 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x39dd9223 x86_hyper_vmware +EXPORT_SYMBOL vmlinux 0x39edab12 skb_make_writable +EXPORT_SYMBOL vmlinux 0x39f1c2f4 ida_get_new_above +EXPORT_SYMBOL vmlinux 0x39f51c32 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x39f9a2ff dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x3a0779b1 register_framebuffer +EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify +EXPORT_SYMBOL vmlinux 0x3a1e3d9e bio_integrity_advance +EXPORT_SYMBOL vmlinux 0x3a1e4170 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x3a2255d8 md_error +EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush +EXPORT_SYMBOL vmlinux 0x3a4c3b46 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x3a595f02 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x3a763872 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x3a8967e7 amd_iommu_device_info +EXPORT_SYMBOL vmlinux 0x3a938b20 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x3a99e4c8 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3abd1647 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x3ac30fe5 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x3acaa9c5 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x3ad6bb9a blk_stop_queue +EXPORT_SYMBOL vmlinux 0x3ad734c3 inet_bind +EXPORT_SYMBOL vmlinux 0x3ae7ee3e in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x3b04ea9a proc_set_size +EXPORT_SYMBOL vmlinux 0x3b1f0b08 netpoll_setup +EXPORT_SYMBOL vmlinux 0x3b21fe84 from_kuid +EXPORT_SYMBOL vmlinux 0x3b267a53 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x3b31b1e8 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x3b3956ff vfs_fsync +EXPORT_SYMBOL vmlinux 0x3b600dda swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6f6cd2 udp_table +EXPORT_SYMBOL vmlinux 0x3b7aa2f4 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x3b81b0b9 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x3ba5667f file_ns_capable +EXPORT_SYMBOL vmlinux 0x3bae349e nobh_write_begin +EXPORT_SYMBOL vmlinux 0x3bb5114a prepare_to_wait +EXPORT_SYMBOL vmlinux 0x3bd4cb99 follow_down_one +EXPORT_SYMBOL vmlinux 0x3c0725c9 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x3c0736cb xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c483012 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x3c4b28a4 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x3c4ee114 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x3c531a89 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x3c5c3796 write_cache_pages +EXPORT_SYMBOL vmlinux 0x3c5d68a1 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x3c665c56 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c81b1ac acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0x3c865542 d_drop +EXPORT_SYMBOL vmlinux 0x3c91b697 scsi_register +EXPORT_SYMBOL vmlinux 0x3c9898f6 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x3cafeea8 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x3cbd19fe ata_port_printk +EXPORT_SYMBOL vmlinux 0x3cc4a711 mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3d1391e2 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x3d26f767 udp_prot +EXPORT_SYMBOL vmlinux 0x3d2d86f6 filp_open +EXPORT_SYMBOL vmlinux 0x3d544aa5 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x3d7c1ed7 msrs_alloc +EXPORT_SYMBOL vmlinux 0x3d864f39 skb_split +EXPORT_SYMBOL vmlinux 0x3d900220 i2c_master_send +EXPORT_SYMBOL vmlinux 0x3d9abda1 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page +EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start +EXPORT_SYMBOL vmlinux 0x3dbf36c9 sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3de148a4 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x3de7bb0c freezing_slow_path +EXPORT_SYMBOL vmlinux 0x3de7fd82 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x3deba128 proc_remove +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e065e81 napi_consume_skb +EXPORT_SYMBOL vmlinux 0x3e084316 posix_test_lock +EXPORT_SYMBOL vmlinux 0x3e1729a5 put_io_context +EXPORT_SYMBOL vmlinux 0x3e1e6424 simple_release_fs +EXPORT_SYMBOL vmlinux 0x3e220949 skb_copy +EXPORT_SYMBOL vmlinux 0x3e22c0b1 from_kuid_munged +EXPORT_SYMBOL vmlinux 0x3e2ae3a8 acpi_release_global_lock +EXPORT_SYMBOL vmlinux 0x3e2c4692 eth_change_mtu +EXPORT_SYMBOL vmlinux 0x3e324648 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x3e3d9789 pci_claim_resource +EXPORT_SYMBOL vmlinux 0x3e3e4c58 node_data +EXPORT_SYMBOL vmlinux 0x3e4dc5c4 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x3e5bb9bd scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0x3e67fc31 pci_iomap +EXPORT_SYMBOL vmlinux 0x3e6af823 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource +EXPORT_SYMBOL vmlinux 0x3e8b5fe9 phy_print_status +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get +EXPORT_SYMBOL vmlinux 0x3ea35991 tcp_connect +EXPORT_SYMBOL vmlinux 0x3ed33cab tty_vhangup +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f0ba86e eth_header +EXPORT_SYMBOL vmlinux 0x3f20ca97 rtc_lock +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f494964 dma_supported +EXPORT_SYMBOL vmlinux 0x3f580079 fb_is_primary_device +EXPORT_SYMBOL vmlinux 0x3f58012a crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x3f785314 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x3f7dd44f submit_bio_wait +EXPORT_SYMBOL vmlinux 0x3f9bcc28 sget +EXPORT_SYMBOL vmlinux 0x3fb6cbcf devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x3fd08ba4 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x3ff597fc tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x3ff95218 flush_signals +EXPORT_SYMBOL vmlinux 0x4010e00b lease_get_mtime +EXPORT_SYMBOL vmlinux 0x4011e255 tcf_hash_search +EXPORT_SYMBOL vmlinux 0x401c0e16 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev +EXPORT_SYMBOL vmlinux 0x403a629d blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x4042b3ab tcp_prequeue +EXPORT_SYMBOL vmlinux 0x40498229 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x4052b3f0 kern_path +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x406b867f pci_release_region +EXPORT_SYMBOL vmlinux 0x407c9cd3 mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0x40854caa fget +EXPORT_SYMBOL vmlinux 0x408a4ed5 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x4097fa45 acpi_read_bit_register +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40bc108b compat_nf_getsockopt +EXPORT_SYMBOL vmlinux 0x40befdbb pci_set_power_state +EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40c7d843 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x40c89d46 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40dc2987 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x40e6df69 __nla_reserve +EXPORT_SYMBOL vmlinux 0x4125a773 current_task +EXPORT_SYMBOL vmlinux 0x4132344d pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x414d9060 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x414e50b1 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x41525446 dm_get_device +EXPORT_SYMBOL vmlinux 0x4162b81a netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x417d203e pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x41a3fbf1 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x41baf194 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x41bb51ff __getblk_slow +EXPORT_SYMBOL vmlinux 0x41c06b11 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x41eb6d06 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x421a11c2 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x4234f096 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x42350e8d ucs2_strlen +EXPORT_SYMBOL vmlinux 0x42376605 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x424f89c8 km_state_expired +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x425d0855 bdi_register_dev +EXPORT_SYMBOL vmlinux 0x42873050 fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0x4290d30a devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0x429c0347 gnttab_free_pages +EXPORT_SYMBOL vmlinux 0x42a02767 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x42a8955c skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x42a93b8f udp6_csum_init +EXPORT_SYMBOL vmlinux 0x42c8de35 ioremap_nocache +EXPORT_SYMBOL vmlinux 0x42f245b6 passthru_features_check +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x432815dd find_lock_entry +EXPORT_SYMBOL vmlinux 0x432c634a skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x432e1a4b cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x4337bf4e pci_scan_slot +EXPORT_SYMBOL vmlinux 0x433ab7d5 security_path_rmdir +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x43607d51 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x437cccc9 dev_mc_init +EXPORT_SYMBOL vmlinux 0x438424fb jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43a9d32c dentry_update_name_case +EXPORT_SYMBOL vmlinux 0x43ac46fd mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x43b0c9c3 preempt_schedule +EXPORT_SYMBOL vmlinux 0x43cfe6cb lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x43d9960f mmc_start_req +EXPORT_SYMBOL vmlinux 0x43e39b43 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x43fc9bed mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x4401f993 pagecache_write_end +EXPORT_SYMBOL vmlinux 0x440d19c1 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x4411072b skb_insert +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x44475d62 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x444df961 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x4488ae17 param_ops_charp +EXPORT_SYMBOL vmlinux 0x4489da02 register_sysctl_table +EXPORT_SYMBOL vmlinux 0x448e085f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x448eac3e kmemdup +EXPORT_SYMBOL vmlinux 0x4498731a ip_defrag +EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp +EXPORT_SYMBOL vmlinux 0x449fe84b acpi_set_firmware_waking_vectors +EXPORT_SYMBOL vmlinux 0x44a81d5f acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz +EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x44d09599 clkdev_add +EXPORT_SYMBOL vmlinux 0x44d50a8e find_get_entry +EXPORT_SYMBOL vmlinux 0x44db0149 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x4500ee57 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x452d5f9f blk_run_queue +EXPORT_SYMBOL vmlinux 0x452e4eda bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x45403778 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x457e8fec kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x457f95b4 d_instantiate_unique +EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource +EXPORT_SYMBOL vmlinux 0x45db9e9c netif_rx_ni +EXPORT_SYMBOL vmlinux 0x45ed278f kfree_skb +EXPORT_SYMBOL vmlinux 0x45f1df0a scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x45f9750f ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x45fb3293 dquot_operations +EXPORT_SYMBOL vmlinux 0x4604a43a mem_section +EXPORT_SYMBOL vmlinux 0x46076ad5 abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0x460de9ac inet_addr_type +EXPORT_SYMBOL vmlinux 0x46113bb3 compat_mc_setsockopt +EXPORT_SYMBOL vmlinux 0x461858c3 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x461b9910 amd_northbridges +EXPORT_SYMBOL vmlinux 0x461bcd8d eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x4629334c __preempt_count +EXPORT_SYMBOL vmlinux 0x46598de0 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x468b290e bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x469a5605 sock_create +EXPORT_SYMBOL vmlinux 0x46a024e7 __neigh_create +EXPORT_SYMBOL vmlinux 0x46a2bcea nf_setsockopt +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46ce8c87 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x46ede833 fget_raw +EXPORT_SYMBOL vmlinux 0x46f4b10d scsi_scan_host +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x470b4107 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x4725fdf5 kill_litter_super +EXPORT_SYMBOL vmlinux 0x4740b3bc xen_arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x47500263 unregister_key_type +EXPORT_SYMBOL vmlinux 0x475f010b acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x4778d003 vga_switcheroo_init_domain_pm_optimus_hdmi_audio +EXPORT_SYMBOL vmlinux 0x477e6dcb amd_iommu_pc_get_set_reg_val +EXPORT_SYMBOL vmlinux 0x4786f5a2 unregister_binfmt +EXPORT_SYMBOL vmlinux 0x478cd648 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x478d10b2 ht_destroy_irq +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x479a08ab xfrm_register_km +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47b69619 bmap +EXPORT_SYMBOL vmlinux 0x47dd2063 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x47eed8e7 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x47fc7bad tcp_child_process +EXPORT_SYMBOL vmlinux 0x4801257d tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x481cb9ab acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x481f39db free_netdev +EXPORT_SYMBOL vmlinux 0x482484f6 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x483a705d capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x4841fc47 ip6_xmit +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x485a358b dev_load +EXPORT_SYMBOL vmlinux 0x486e361c __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x48881ef6 blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0x4895d342 try_module_get +EXPORT_SYMBOL vmlinux 0x48ad5c25 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48d50e79 amd_iommu_register_ppr_notifier +EXPORT_SYMBOL vmlinux 0x48fc56f0 fb_blank +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x492cf6e8 __serio_register_driver +EXPORT_SYMBOL vmlinux 0x49387290 netif_device_attach +EXPORT_SYMBOL vmlinux 0x494e3393 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x495be582 simple_transaction_release +EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init +EXPORT_SYMBOL vmlinux 0x495e3085 sk_receive_skb +EXPORT_SYMBOL vmlinux 0x495fd2ec __sock_create +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x498419f1 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x498b6444 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x49a14c0e __scsi_add_device +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49d06d8c devfreq_interval_update +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x49fd2aa5 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x4a17e233 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x4a1ca083 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x4a200d9d path_nosuid +EXPORT_SYMBOL vmlinux 0x4a228829 __get_user_pages +EXPORT_SYMBOL vmlinux 0x4a3f25c8 set_pages_x +EXPORT_SYMBOL vmlinux 0x4a4db42c sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x4a793765 blk_peek_request +EXPORT_SYMBOL vmlinux 0x4a862ffe __devm_release_region +EXPORT_SYMBOL vmlinux 0x4a8961f5 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk +EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource +EXPORT_SYMBOL vmlinux 0x4ade75f0 tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0x4adeddec create_empty_buffers +EXPORT_SYMBOL vmlinux 0x4afe7e02 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b120022 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x4b5dc58e netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b667176 lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x4b6924cd unlink_framebuffer +EXPORT_SYMBOL vmlinux 0x4b756ca7 agp_put_bridge +EXPORT_SYMBOL vmlinux 0x4b87a7bb generic_update_time +EXPORT_SYMBOL vmlinux 0x4b9dfb04 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bc06cf2 proto_unregister +EXPORT_SYMBOL vmlinux 0x4bf71d4e rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0x4c0795c3 dst_alloc +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf +EXPORT_SYMBOL vmlinux 0x4c3654bb kobject_set_name +EXPORT_SYMBOL vmlinux 0x4c3b8ad5 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x4c5e1f18 complete_request_key +EXPORT_SYMBOL vmlinux 0x4c6ee72d inet_put_port +EXPORT_SYMBOL vmlinux 0x4c783ac6 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x4c7a6ba6 inet6_release +EXPORT_SYMBOL vmlinux 0x4c829dc3 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x4c829e63 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x4c878322 iosf_mbi_modify +EXPORT_SYMBOL vmlinux 0x4c903e80 lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0x4c9d28b0 phys_base +EXPORT_SYMBOL vmlinux 0x4c9db616 mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0x4ca4326f seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x4ca9669f scnprintf +EXPORT_SYMBOL vmlinux 0x4caa35cc mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x4cb618ca ns_capable +EXPORT_SYMBOL vmlinux 0x4cb8c78f dquot_quota_off +EXPORT_SYMBOL vmlinux 0x4cc8ee69 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x4cc9c851 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4cde88a2 __serio_register_port +EXPORT_SYMBOL vmlinux 0x4ce666e8 clk_register_clkdevs +EXPORT_SYMBOL vmlinux 0x4ce8852b locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x4cf4bf26 try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x4cf67dbb nvm_get_blk_unlocked +EXPORT_SYMBOL vmlinux 0x4cfd6b9e sk_stream_error +EXPORT_SYMBOL vmlinux 0x4d0cde91 unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0x4d1750a4 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x4d48374f xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x4d4ac179 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x4d4b82b5 __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x4d5c0cef cfb_copyarea +EXPORT_SYMBOL vmlinux 0x4d66ac54 nvm_put_blk +EXPORT_SYMBOL vmlinux 0x4d810060 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4dba34fd elv_rb_find +EXPORT_SYMBOL vmlinux 0x4dc3c05b kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x4dd6761a disk_stack_limits +EXPORT_SYMBOL vmlinux 0x4de22c25 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4ded0d0c pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4dfdea17 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x4e07176e rwsem_wake +EXPORT_SYMBOL vmlinux 0x4e0b829e __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x4e317554 bio_integrity_endio +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e3a9fce mount_bdev +EXPORT_SYMBOL vmlinux 0x4e4c0d97 rtnl_notify +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e852bd5 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4ed2b393 nd_device_register +EXPORT_SYMBOL vmlinux 0x4ed64c90 nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0x4eeb270a pci_scan_bus +EXPORT_SYMBOL vmlinux 0x4ef4deca jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x4efa8c13 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x4f03547a dst_init +EXPORT_SYMBOL vmlinux 0x4f1aa117 key_validate +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f2f9dfe udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x4f31f3bf mmc_can_trim +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f409a25 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x4f6629ef serio_unregister_port +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f692f7e fb_pan_display +EXPORT_SYMBOL vmlinux 0x4f6b400b _copy_from_user +EXPORT_SYMBOL vmlinux 0x4f783f30 acpi_read +EXPORT_SYMBOL vmlinux 0x4f7a4827 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x4f8650f9 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x4f8b5ddb _copy_to_user +EXPORT_SYMBOL vmlinux 0x4fd831c3 pv_mmu_ops +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4ff6e60c kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x501f52da __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x50235938 elv_register_queue +EXPORT_SYMBOL vmlinux 0x50505faa input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x50529870 acpi_get_gpe_status +EXPORT_SYMBOL vmlinux 0x5057271d send_sig +EXPORT_SYMBOL vmlinux 0x5058984b bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x506a5355 lock_sock_fast +EXPORT_SYMBOL vmlinux 0x5073b407 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x5077bdca __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method +EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch +EXPORT_SYMBOL vmlinux 0x50b5c8cc pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0x50ba769a kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x50d4e49b ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del +EXPORT_SYMBOL vmlinux 0x50de2325 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x50df5015 default_llseek +EXPORT_SYMBOL vmlinux 0x50fd64a5 give_up_console +EXPORT_SYMBOL vmlinux 0x51164ad9 cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x514a3fd0 vga_switcheroo_fini_domain_pm_ops +EXPORT_SYMBOL vmlinux 0x51719973 dq_data_lock +EXPORT_SYMBOL vmlinux 0x517fffe5 may_umount +EXPORT_SYMBOL vmlinux 0x518469dc dump_page +EXPORT_SYMBOL vmlinux 0x51b5f8d1 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51dded8c zero_fill_bio +EXPORT_SYMBOL vmlinux 0x51f4f396 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x51f5f326 seq_path +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x52095e19 acpi_get_data +EXPORT_SYMBOL vmlinux 0x52130046 acpi_check_address_range +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x52286b1a tcf_action_exec +EXPORT_SYMBOL vmlinux 0x523dae18 dev_open +EXPORT_SYMBOL vmlinux 0x52402f54 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0x525e026f acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0x526bcd44 set_user_nice +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x52f85c2f dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x5308b2e0 submit_bio +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid +EXPORT_SYMBOL vmlinux 0x531da21d get_thermal_instance +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x533d9f1c to_nd_pfn +EXPORT_SYMBOL vmlinux 0x534626a1 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x53608253 km_report +EXPORT_SYMBOL vmlinux 0x536a93fa vme_irq_generate +EXPORT_SYMBOL vmlinux 0x536cc847 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x536fe70e freeze_bdev +EXPORT_SYMBOL vmlinux 0x5377e556 hex2bin +EXPORT_SYMBOL vmlinux 0x53983836 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x53a0a6b5 blk_recount_segments +EXPORT_SYMBOL vmlinux 0x53a4b60a unregister_shrinker +EXPORT_SYMBOL vmlinux 0x53d18f83 bio_uncopy_user +EXPORT_SYMBOL vmlinux 0x53e9e12b get_tz_trend +EXPORT_SYMBOL vmlinux 0x53f723ec sk_dst_check +EXPORT_SYMBOL vmlinux 0x54059a2a amd_iommu_pc_get_max_counters +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x540dab91 set_pages_wb +EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x544b0c11 acpi_lid_notifier_register +EXPORT_SYMBOL vmlinux 0x544ce8a2 have_submounts +EXPORT_SYMBOL vmlinux 0x545fd280 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x5464d3f6 acpi_remove_sci_handler +EXPORT_SYMBOL vmlinux 0x546abd5b d_obtain_root +EXPORT_SYMBOL vmlinux 0x547b24e0 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x548cf880 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x54a23294 deactivate_super +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54ae01b4 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x54b3fb06 pci_get_device +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54e15f9b nf_log_unset +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54f24d1a fence_default_wait +EXPORT_SYMBOL vmlinux 0x550d04e7 dev_addr_init +EXPORT_SYMBOL vmlinux 0x5511e198 mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0x551b0c42 led_update_brightness +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x551bedc7 fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x551ff1d3 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x5529d53f vfs_statfs +EXPORT_SYMBOL vmlinux 0x552ad070 blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0x5533cdef writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x553614bd tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x554a1b3d d_walk +EXPORT_SYMBOL vmlinux 0x55596ee6 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x555d2909 get_empty_filp +EXPORT_SYMBOL vmlinux 0x555f6938 lockref_get +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x559464c7 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x55a1431d security_inode_init_security +EXPORT_SYMBOL vmlinux 0x55b5738a xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x55d01445 bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55e60a36 queued_spin_unlock_wait +EXPORT_SYMBOL vmlinux 0x55f5019b __kmalloc_node +EXPORT_SYMBOL vmlinux 0x55fbbef2 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x56053823 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x5608cff4 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x56128a2c pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x5616e254 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x56183954 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x561ef03c tty_hangup +EXPORT_SYMBOL vmlinux 0x562d7353 get_gendisk +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563aa5a7 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x5640ec23 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x5641419b wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x56611eb4 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x5665b5d3 generic_fillattr +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x568ff9ee may_umount_tree +EXPORT_SYMBOL vmlinux 0x56c2a6c7 vm_insert_page +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56da318b __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x56fc1429 serio_bus +EXPORT_SYMBOL vmlinux 0x57018c0e ip_setsockopt +EXPORT_SYMBOL vmlinux 0x5717217c phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x571aa590 blk_get_queue +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x5731895e elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x573191d3 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x573cbeec tty_mutex +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57573cd6 peernet2id_alloc +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x577d35f3 hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x57940a78 nf_log_packet +EXPORT_SYMBOL vmlinux 0x5794bdb4 mmc_power_save_host +EXPORT_SYMBOL vmlinux 0x5795be8c xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x579e1a33 security_inode_readlink +EXPORT_SYMBOL vmlinux 0x57a7b36d skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x57ba72ab fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x57c12c25 swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0x57cbae47 qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x57dee96f blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x57e78ff1 do_splice_from +EXPORT_SYMBOL vmlinux 0x57f64d2f bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x580d984c __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x581796db unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x581af860 d_genocide +EXPORT_SYMBOL vmlinux 0x581dd694 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x5826ef62 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x583530b1 scmd_printk +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x583d1b98 sock_no_bind +EXPORT_SYMBOL vmlinux 0x584738f9 rdmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x5847c560 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x5849cf68 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x58565ffe key_put +EXPORT_SYMBOL vmlinux 0x58573dfc inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep +EXPORT_SYMBOL vmlinux 0x58581f2f agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0x58604e4d alloc_iova_mem +EXPORT_SYMBOL vmlinux 0x586103be acpi_setup_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x587badb2 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x587f4475 __check_sticky +EXPORT_SYMBOL vmlinux 0x588b2956 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x58ac3cff dev_driver_string +EXPORT_SYMBOL vmlinux 0x58b12577 __vfs_write +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58c5c8d7 module_layout +EXPORT_SYMBOL vmlinux 0x58ccf553 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x58db8af6 unregister_netdev +EXPORT_SYMBOL vmlinux 0x58e2c6b8 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58e4f525 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0x5906b8f6 pci_get_class +EXPORT_SYMBOL vmlinux 0x590e5789 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x5939a151 dentry_open +EXPORT_SYMBOL vmlinux 0x5944d015 __cachemode2pte_tbl +EXPORT_SYMBOL vmlinux 0x59474073 pci_find_bus +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x596034cd pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x5960b465 agp_bridge +EXPORT_SYMBOL vmlinux 0x596d271b xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x59856243 ps2_init +EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x59a0c30e locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59bc9609 acpi_write_bit_register +EXPORT_SYMBOL vmlinux 0x59cd0685 md_update_sb +EXPORT_SYMBOL vmlinux 0x59fadccf get_super +EXPORT_SYMBOL vmlinux 0x59fc40d7 ps2_end_command +EXPORT_SYMBOL vmlinux 0x5a016867 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x5a07695d simple_rename +EXPORT_SYMBOL vmlinux 0x5a0a0470 cdrom_open +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a0bf56c netdev_info +EXPORT_SYMBOL vmlinux 0x5a37fb25 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 +EXPORT_SYMBOL vmlinux 0x5a82c44a complete_and_exit +EXPORT_SYMBOL vmlinux 0x5a82dfa8 __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x5a82e693 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5aabb731 kthread_stop +EXPORT_SYMBOL vmlinux 0x5aacb439 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x5ac376a5 acpi_install_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x5ad14f32 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x5af4953a nf_hook_slow +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b24b5a8 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x5b44ef16 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b72d011 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x5b79942a genl_notify +EXPORT_SYMBOL vmlinux 0x5b83944a napi_get_frags +EXPORT_SYMBOL vmlinux 0x5b9c808a acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0x5ba46709 __skb_checksum +EXPORT_SYMBOL vmlinux 0x5bc10524 printk_emit +EXPORT_SYMBOL vmlinux 0x5bc8d583 copy_from_user_overflow +EXPORT_SYMBOL vmlinux 0x5bfd514d __put_cred +EXPORT_SYMBOL vmlinux 0x5c0442fd acpi_gbl_FADT +EXPORT_SYMBOL vmlinux 0x5c044473 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x5c062aab blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x5c1b9411 scsi_register_interface +EXPORT_SYMBOL vmlinux 0x5c2f5d85 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x5c2fc0f9 make_kgid +EXPORT_SYMBOL vmlinux 0x5c48c7a8 inet_listen +EXPORT_SYMBOL vmlinux 0x5c6286c9 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x5c63ebda truncate_pagecache +EXPORT_SYMBOL vmlinux 0x5c864e09 padata_do_parallel +EXPORT_SYMBOL vmlinux 0x5ca5428a scsi_scan_target +EXPORT_SYMBOL vmlinux 0x5ca73dd8 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cf7ed3b key_link +EXPORT_SYMBOL vmlinux 0x5cfd0f5e pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x5cfee5eb skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x5d0161ec proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x5d3140ad tty_unthrottle +EXPORT_SYMBOL vmlinux 0x5d37c913 __frontswap_load +EXPORT_SYMBOL vmlinux 0x5d5476c5 cap_mmap_file +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d63b2f7 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x5d7208fd sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x5d74dbcf pnp_range_reserved +EXPORT_SYMBOL vmlinux 0x5d8475e0 completion_done +EXPORT_SYMBOL vmlinux 0x5d869e78 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x5da2a365 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x5daf96ee pci_enable_msix +EXPORT_SYMBOL vmlinux 0x5dcb6aae block_truncate_page +EXPORT_SYMBOL vmlinux 0x5dd4bff9 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x5de113c4 write_inode_now +EXPORT_SYMBOL vmlinux 0x5de7a3fb irq_set_chip +EXPORT_SYMBOL vmlinux 0x5e0f646f __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x5e18b16e eth_mac_addr +EXPORT_SYMBOL vmlinux 0x5e1d8138 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x5e2b8c76 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x5e33937e skb_pad +EXPORT_SYMBOL vmlinux 0x5e3b05d3 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x5e8e1d9f vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ecfeec6 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed6cfd3 is_nd_btt +EXPORT_SYMBOL vmlinux 0x5ee0fcf6 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x5efc5021 key_type_keyring +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f0a6426 netlink_unicast +EXPORT_SYMBOL vmlinux 0x5f1b6690 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x5f3c7eb8 inc_nlink +EXPORT_SYMBOL vmlinux 0x5f3f4966 pci_restore_state +EXPORT_SYMBOL vmlinux 0x5f4c904d security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x5f4dd519 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x5f591c0c devm_memremap +EXPORT_SYMBOL vmlinux 0x5f5fb85f lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x5f7b89ec dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x5f7e451d noop_qdisc +EXPORT_SYMBOL vmlinux 0x5f9a5753 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0x5f9f5c27 dma_common_mmap +EXPORT_SYMBOL vmlinux 0x5fa43bcc sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x5fb2e8ef idr_init +EXPORT_SYMBOL vmlinux 0x5fbdf3f9 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x5fd1ac5a read_dev_sector +EXPORT_SYMBOL vmlinux 0x5fd5b396 compat_ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x5fd7d437 blk_start_request +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5fe5f446 ip_ct_attach +EXPORT_SYMBOL vmlinux 0x5ffcff9c dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x60159416 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x601734cd netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x601da172 agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x602ed00d acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x603df82c scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x604316d8 acpi_finish_gpe +EXPORT_SYMBOL vmlinux 0x604b525e skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x606e7182 thaw_super +EXPORT_SYMBOL vmlinux 0x607c63a7 d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0x6089b5b0 register_filesystem +EXPORT_SYMBOL vmlinux 0x608e2fa0 dump_truncate +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x609f5b35 ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x60a11832 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60a6e965 unlock_buffer +EXPORT_SYMBOL vmlinux 0x60afc4ff d_splice_alias +EXPORT_SYMBOL vmlinux 0x60c4b0eb napi_complete_done +EXPORT_SYMBOL vmlinux 0x60c64ef3 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x60e37060 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x61006836 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0x610aaa40 mempool_destroy +EXPORT_SYMBOL vmlinux 0x61180359 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x614bb773 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x61520529 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0x6164274f vfs_readf +EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61c44035 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x61c78d10 __dst_free +EXPORT_SYMBOL vmlinux 0x61de6f0e generic_file_open +EXPORT_SYMBOL vmlinux 0x61ef6170 __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0x61f6bf1a blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x61fb248a node_states +EXPORT_SYMBOL vmlinux 0x62049256 acpi_disable +EXPORT_SYMBOL vmlinux 0x62069401 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6226b9fa machine_to_phys_mapping +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x6237f6b5 acpi_enable_event +EXPORT_SYMBOL vmlinux 0x6249b559 sock_update_memcg +EXPORT_SYMBOL vmlinux 0x624cc57a sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x62663113 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62748e70 acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x628e1d4a qdisc_reset +EXPORT_SYMBOL vmlinux 0x62b2428f phy_driver_register +EXPORT_SYMBOL vmlinux 0x62e466cd proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x6317356c textsearch_unregister +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x6327bf45 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x63352dba kobject_del +EXPORT_SYMBOL vmlinux 0x634b1325 vfs_llseek +EXPORT_SYMBOL vmlinux 0x636a5691 acpi_register_ioapic +EXPORT_SYMBOL vmlinux 0x637bfdbb km_policy_notify +EXPORT_SYMBOL vmlinux 0x637fd387 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x6388591c down_timeout +EXPORT_SYMBOL vmlinux 0x63a01291 acpi_leave_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63aafc7d dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63c50d92 inet6_bind +EXPORT_SYMBOL vmlinux 0x63c5e2e9 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x63d57a95 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x63ddb3f0 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x63e9bc92 sk_mc_loop +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63f3e1cd pci_bus_type +EXPORT_SYMBOL vmlinux 0x63fae632 devm_memunmap +EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x64055a19 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x6449fd41 acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0x645da051 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x6461924a remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0x6472641c tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64ab0e98 wait_for_completion +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64c32105 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x64cf41a0 devm_gpiod_get +EXPORT_SYMBOL vmlinux 0x64eae7ad set_memory_array_wb +EXPORT_SYMBOL vmlinux 0x64fa7693 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x6552d37b simple_link +EXPORT_SYMBOL vmlinux 0x655f1ab0 set_memory_array_wc +EXPORT_SYMBOL vmlinux 0x6561884f vga_client_register +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x656c926c pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x6572d1e9 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x65817195 bdput +EXPORT_SYMBOL vmlinux 0x659806e3 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x65b876a7 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x65b992ac xen_alloc_p2m_entry +EXPORT_SYMBOL vmlinux 0x65bed5c3 padata_do_serial +EXPORT_SYMBOL vmlinux 0x65c12d6c __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x65c35fc0 __seq_open_private +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x663b60ac uart_add_one_port +EXPORT_SYMBOL vmlinux 0x663f7cd0 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0x6642eaff blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x664e3408 ll_rw_block +EXPORT_SYMBOL vmlinux 0x665105ad clear_nlink +EXPORT_SYMBOL vmlinux 0x6652a9e3 __sb_end_write +EXPORT_SYMBOL vmlinux 0x665ab6ce agp_unbind_memory +EXPORT_SYMBOL vmlinux 0x66945714 dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0x669a43cd tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x669d5aa9 blk_delay_queue +EXPORT_SYMBOL vmlinux 0x66d804b1 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x66dcebee rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x66dd2a55 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x66e1a039 compat_ip_getsockopt +EXPORT_SYMBOL vmlinux 0x66e268ea dev_uc_flush +EXPORT_SYMBOL vmlinux 0x66e5c007 dev_addr_del +EXPORT_SYMBOL vmlinux 0x66ee7cea devm_gpio_free +EXPORT_SYMBOL vmlinux 0x66ef65e9 netdev_update_features +EXPORT_SYMBOL vmlinux 0x66f436b9 lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x6712b9f6 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x671739ab blkdev_get +EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 +EXPORT_SYMBOL vmlinux 0x6736bb18 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x674ca1e4 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x6766da7b max8925_reg_write +EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create +EXPORT_SYMBOL vmlinux 0x67744726 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b321b3 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x67b362b5 amd_iommu_domain_enable_v2 +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67bd5a93 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x67f07591 init_task +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x680ec266 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x681f7cb1 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x682013a8 devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0x6822d70e generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x6824a7fb tty_register_driver +EXPORT_SYMBOL vmlinux 0x683261d5 scsi_execute +EXPORT_SYMBOL vmlinux 0x683c3be9 pci_bus_put +EXPORT_SYMBOL vmlinux 0x68426a24 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x6858b718 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x687124d1 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x68746ccd devm_memremap_pages +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x689b8cec generic_removexattr +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x68cf0525 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x68d0ec81 alloc_fddidev +EXPORT_SYMBOL vmlinux 0x68dc800d pci_remove_bus +EXPORT_SYMBOL vmlinux 0x68f3a7ec netdev_features_change +EXPORT_SYMBOL vmlinux 0x691001b5 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x69190965 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x691c8cb5 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x6920ff27 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x69271f97 pipe_lock +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6981b716 set_trace_device +EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 +EXPORT_SYMBOL vmlinux 0x698f2f04 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource +EXPORT_SYMBOL vmlinux 0x69a9736b ilookup5 +EXPORT_SYMBOL vmlinux 0x69a9f48e devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x69acdf38 memcpy +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69b87484 tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0x69c1f1be kern_path_create +EXPORT_SYMBOL vmlinux 0x69ebf57e fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0x69fbc0a2 acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a1229e0 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x6a206520 dev_add_offload +EXPORT_SYMBOL vmlinux 0x6a2dca52 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x6a35f768 generic_show_options +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a60277d acpi_buffer_to_resource +EXPORT_SYMBOL vmlinux 0x6a64d61d devm_request_resource +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6a77633d __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x6ac66cbe generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be +EXPORT_SYMBOL vmlinux 0x6ad85887 acpi_enable_gpe +EXPORT_SYMBOL vmlinux 0x6add41eb tcf_hash_insert +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6ae41bc6 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b3fe051 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x6b4275f6 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x6b5a0e28 abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6b6ba5f6 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x6b74b9be bit_waitqueue +EXPORT_SYMBOL vmlinux 0x6b8f46c3 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x6b998031 param_get_byte +EXPORT_SYMBOL vmlinux 0x6b9c0ef5 inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0x6bc2068f pnp_stop_dev +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bc9510f inode_permission +EXPORT_SYMBOL vmlinux 0x6bcf066d _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6be17093 serio_reconnect +EXPORT_SYMBOL vmlinux 0x6be46a37 amd_iommu_flush_page +EXPORT_SYMBOL vmlinux 0x6bf1c17f pv_lock_ops +EXPORT_SYMBOL vmlinux 0x6c0137d2 input_close_device +EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer +EXPORT_SYMBOL vmlinux 0x6c2fa4b1 devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0x6c3011cb mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x6c44bc15 neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c6b74ff agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c748b8a neigh_table_init +EXPORT_SYMBOL vmlinux 0x6c8627ba pci_find_capability +EXPORT_SYMBOL vmlinux 0x6c8751ad x86_hyper +EXPORT_SYMBOL vmlinux 0x6c9ea25c iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x6cb0f303 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x6cb3dbd3 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x6cb5c718 param_get_long +EXPORT_SYMBOL vmlinux 0x6cbea728 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x6cc42aee proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x6cd08804 sk_net_capable +EXPORT_SYMBOL vmlinux 0x6cd40328 request_firmware +EXPORT_SYMBOL vmlinux 0x6cdcce35 blk_queue_bounce +EXPORT_SYMBOL vmlinux 0x6cec0a11 pci_map_biosrom +EXPORT_SYMBOL vmlinux 0x6d0352db acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x6d0a08d1 blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0x6d0a2ffd lookup_bdev +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d1d5d9b iosf_mbi_write +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d3096ed netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x6d334118 __get_user_8 +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d361b94 lock_sock_nested +EXPORT_SYMBOL vmlinux 0x6d3bc7ca kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x6d530bfb xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x6d616c9e get_fs_type +EXPORT_SYMBOL vmlinux 0x6d7d2105 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x6d8575ad blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x6d93bf9f elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x6db37bee blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x6dc0c9dc down_interruptible +EXPORT_SYMBOL vmlinux 0x6dc6dd56 down +EXPORT_SYMBOL vmlinux 0x6dcbc8eb mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x6ddef005 vlan_vid_add +EXPORT_SYMBOL vmlinux 0x6de0ef80 param_set_bool +EXPORT_SYMBOL vmlinux 0x6de19a29 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x6de22e65 lock_fb_info +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e1517f7 bio_copy_kern +EXPORT_SYMBOL vmlinux 0x6e3a3382 nvm_register_target +EXPORT_SYMBOL vmlinux 0x6e3b8625 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x6e3eeba3 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x6e41f997 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x6e47a08b mmc_fixup_device +EXPORT_SYMBOL vmlinux 0x6e4e7f4f pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x6e696cc3 filemap_flush +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e7962a7 nf_register_hooks +EXPORT_SYMBOL vmlinux 0x6e7f0fd2 cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x6e8a32f7 dma_ops +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6eaa9626 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x6ec446ac mmc_add_host +EXPORT_SYMBOL vmlinux 0x6ec607c2 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x6eedbf57 d_delete +EXPORT_SYMBOL vmlinux 0x6ef66e8a _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x6f1bf786 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash +EXPORT_SYMBOL vmlinux 0x6f2e4f46 __cond_resched_lock +EXPORT_SYMBOL vmlinux 0x6f308ea8 input_get_keycode +EXPORT_SYMBOL vmlinux 0x6f321b8f tcp_init_sock +EXPORT_SYMBOL vmlinux 0x6f3784b0 seq_write +EXPORT_SYMBOL vmlinux 0x6f556bdb acpi_get_gpe_device +EXPORT_SYMBOL vmlinux 0x6f60ac9b dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x6f66cecf neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x6f70ff02 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x6f803c73 search_binary_handler +EXPORT_SYMBOL vmlinux 0x6f82261b end_page_writeback +EXPORT_SYMBOL vmlinux 0x6f877a0b kill_pgrp +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6f8c352d mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x6f9701c9 dcb_setapp +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fde6821 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x6feb2039 acpi_write +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x7029f11b iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0x702b2690 param_get_ulong +EXPORT_SYMBOL vmlinux 0x703224f8 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x7032e7fa tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x705b6674 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x706ae566 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync +EXPORT_SYMBOL vmlinux 0x706d5492 netdev_crit +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x708a79f7 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x70a17d34 acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0x70a7847e dcache_readdir +EXPORT_SYMBOL vmlinux 0x70cbd94f generic_read_dir +EXPORT_SYMBOL vmlinux 0x70d8ab82 acpi_acquire_global_lock +EXPORT_SYMBOL vmlinux 0x70e9f676 param_ops_string +EXPORT_SYMBOL vmlinux 0x70f0a2e2 cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x710fdd79 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x71362d51 __brelse +EXPORT_SYMBOL vmlinux 0x71415783 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x71431de3 phy_device_remove +EXPORT_SYMBOL vmlinux 0x714bddae from_kprojid +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x717a40bc cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x71828a66 proc_dostring +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71a7035a file_remove_privs +EXPORT_SYMBOL vmlinux 0x71d42b07 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x71ff4675 vme_slave_request +EXPORT_SYMBOL vmlinux 0x7217c9e6 lock_rename +EXPORT_SYMBOL vmlinux 0x721ce219 __devm_request_region +EXPORT_SYMBOL vmlinux 0x72220176 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x724484da netlink_set_err +EXPORT_SYMBOL vmlinux 0x724c5dcd generic_make_request +EXPORT_SYMBOL vmlinux 0x7260e249 ___preempt_schedule_notrace +EXPORT_SYMBOL vmlinux 0x72611370 get_task_io_context +EXPORT_SYMBOL vmlinux 0x72657636 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x727e91f8 vfs_getattr +EXPORT_SYMBOL vmlinux 0x7280af6c load_nls +EXPORT_SYMBOL vmlinux 0x72a393ca set_pages_nx +EXPORT_SYMBOL vmlinux 0x72a98fdb copy_user_generic_unrolled +EXPORT_SYMBOL vmlinux 0x72ae4f38 kdb_current_task +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72ce680a bdi_register +EXPORT_SYMBOL vmlinux 0x72e73d2b serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72f640b0 netlink_capable +EXPORT_SYMBOL vmlinux 0x72f9724a cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x72ffebcf end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x73137e23 sock_efree +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x733ee138 nf_unregister_hook +EXPORT_SYMBOL vmlinux 0x734c013f mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay +EXPORT_SYMBOL vmlinux 0x7362024e sock_create_lite +EXPORT_SYMBOL vmlinux 0x73688398 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x736fc01c clkdev_drop +EXPORT_SYMBOL vmlinux 0x7370b255 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0x73722e62 qdisc_list_add +EXPORT_SYMBOL vmlinux 0x738714db ida_pre_get +EXPORT_SYMBOL vmlinux 0x73a47157 skb_pull +EXPORT_SYMBOL vmlinux 0x73a85909 cdev_alloc +EXPORT_SYMBOL vmlinux 0x73ad7ab8 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x73b3415d register_cdrom +EXPORT_SYMBOL vmlinux 0x73ba73e7 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x73bbd56f mdiobus_read +EXPORT_SYMBOL vmlinux 0x73d237f9 keyring_search +EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable +EXPORT_SYMBOL vmlinux 0x73e7b7d4 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x73ec86f5 blk_queue_split +EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi +EXPORT_SYMBOL vmlinux 0x740e9c54 abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0x740ef746 fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x745f20a3 idr_is_empty +EXPORT_SYMBOL vmlinux 0x7464f09e nvm_put_blk_unlocked +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x74894c27 dev_emerg +EXPORT_SYMBOL vmlinux 0x7489cccf phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x74904361 dma_pool_create +EXPORT_SYMBOL vmlinux 0x74a13cbb generic_getxattr +EXPORT_SYMBOL vmlinux 0x74a9ea4b pnp_device_attach +EXPORT_SYMBOL vmlinux 0x74afb4de mpage_writepage +EXPORT_SYMBOL vmlinux 0x74b3c4ad generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74df11e2 phy_init_hw +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74e653d9 inet_offloads +EXPORT_SYMBOL vmlinux 0x74f43e83 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x75091ffb dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x750f444c pnp_register_driver +EXPORT_SYMBOL vmlinux 0x7525a60d kobject_init +EXPORT_SYMBOL vmlinux 0x752a06ee xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0x7532588a alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x754d539c strlen +EXPORT_SYMBOL vmlinux 0x754e716c module_refcount +EXPORT_SYMBOL vmlinux 0x7553bcbc alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x75b889c5 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x75bc549a x86_cpu_to_apicid +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75d4388d param_ops_ushort +EXPORT_SYMBOL vmlinux 0x75fbdefd acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x76208273 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x7645af6f sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764bd77c request_resource +EXPORT_SYMBOL vmlinux 0x765d7480 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x765f961b misc_register +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x766795e8 agp_create_memory +EXPORT_SYMBOL vmlinux 0x76717ddb phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x767dd8fd acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc +EXPORT_SYMBOL vmlinux 0x76960ab8 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x76bb6b11 mpage_readpages +EXPORT_SYMBOL vmlinux 0x76c5ec99 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x76c8c0a5 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76ec93f0 dquot_drop +EXPORT_SYMBOL vmlinux 0x76fb08a7 amd_iommu_unregister_ppr_notifier +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir +EXPORT_SYMBOL vmlinux 0x7751adb2 finish_open +EXPORT_SYMBOL vmlinux 0x7757140d con_is_bound +EXPORT_SYMBOL vmlinux 0x7765a385 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x7775fba7 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x778c90a1 tty_kref_put +EXPORT_SYMBOL vmlinux 0x778e2341 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77c9de07 sk_capable +EXPORT_SYMBOL vmlinux 0x77ec9d6f devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x77f517ab __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x77f53abc acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x780eb124 skb_dequeue +EXPORT_SYMBOL vmlinux 0x780fdfd1 intel_enable_gtt +EXPORT_SYMBOL vmlinux 0x7816e7df compat_ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x783b5276 elevator_alloc +EXPORT_SYMBOL vmlinux 0x7841980b remove_arg_zero +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x784b498b kset_register +EXPORT_SYMBOL vmlinux 0x78756807 mount_ns +EXPORT_SYMBOL vmlinux 0x78764f4e pv_irq_ops +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x788d590a param_ops_invbool +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78a5ff8a fence_add_callback +EXPORT_SYMBOL vmlinux 0x78acb6dc blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x78aec06a ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e739aa up +EXPORT_SYMBOL vmlinux 0x78efd31a skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0x78f05511 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x78f8c876 kfree_put_link +EXPORT_SYMBOL vmlinux 0x79068fda acpi_install_method +EXPORT_SYMBOL vmlinux 0x791ed1c9 rename_lock +EXPORT_SYMBOL vmlinux 0x79253b6d first_ec +EXPORT_SYMBOL vmlinux 0x793f4b8a msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x7985d043 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x7994fc4d inet_release +EXPORT_SYMBOL vmlinux 0x799e6cdc dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79ad0370 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x79b24b1d __page_cache_alloc +EXPORT_SYMBOL vmlinux 0x79b60f80 __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x79bf865d fsnotify_put_group +EXPORT_SYMBOL vmlinux 0x79bfa089 locks_init_lock +EXPORT_SYMBOL vmlinux 0x79d43d3c skb_queue_purge +EXPORT_SYMBOL vmlinux 0x79dfcbdb dentry_unhash +EXPORT_SYMBOL vmlinux 0x79efeb74 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x79f3d3de dev_get_by_index +EXPORT_SYMBOL vmlinux 0x7a0a5c44 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a6cdedc do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a6e7c0b pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x7a82cb47 rdmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x7aa100f3 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aad1f96 skb_clone +EXPORT_SYMBOL vmlinux 0x7ab33443 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ad4b34f bdi_register_owner +EXPORT_SYMBOL vmlinux 0x7aec9089 clear_user +EXPORT_SYMBOL vmlinux 0x7b16235f hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b2aef6c __krealloc +EXPORT_SYMBOL vmlinux 0x7b33a8e4 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x7b34c227 __nd_driver_register +EXPORT_SYMBOL vmlinux 0x7b4af9dc seq_read +EXPORT_SYMBOL vmlinux 0x7b4c0faa ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0x7b52a859 wrmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x7b5a703e devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x7b710907 no_llseek +EXPORT_SYMBOL vmlinux 0x7ba627f8 put_page +EXPORT_SYMBOL vmlinux 0x7bad7a1a acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x7bc2749e setattr_copy +EXPORT_SYMBOL vmlinux 0x7bd632e1 scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0x7be75ffc acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0x7bfa8ee6 phy_connect +EXPORT_SYMBOL vmlinux 0x7c02b6f5 dm_register_target +EXPORT_SYMBOL vmlinux 0x7c042498 netdev_alert +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c2d098f krealloc +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c61340c __release_region +EXPORT_SYMBOL vmlinux 0x7c65b1a3 seq_open_private +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7c99b289 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x7c9aa5e9 __d_drop +EXPORT_SYMBOL vmlinux 0x7caaa381 get_mm_exe_file +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cb2a752 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x7cb8ceb6 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x7cd65e27 get_disk +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce247d6 input_register_handle +EXPORT_SYMBOL vmlinux 0x7ce83365 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0x7ceb114a lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d166ec1 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x7d287136 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x7d2a082f ps2_drain +EXPORT_SYMBOL vmlinux 0x7d39e3e3 nf_reinject +EXPORT_SYMBOL vmlinux 0x7d3cda1c file_open_root +EXPORT_SYMBOL vmlinux 0x7d4d7c11 mount_pseudo +EXPORT_SYMBOL vmlinux 0x7d6c4b4e md_finish_reshape +EXPORT_SYMBOL vmlinux 0x7d6cc3e8 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d71445d cpu_active_mask +EXPORT_SYMBOL vmlinux 0x7d73144e kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0x7d882509 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x7d94f746 acpi_os_write_port +EXPORT_SYMBOL vmlinux 0x7d95ff5e __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x7d96cea3 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x7da2b6aa tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x7dbc2e57 mmiotrace_printk +EXPORT_SYMBOL vmlinux 0x7dcf5918 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x7dd41b1f nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x7dd554fc unregister_kmmio_probe +EXPORT_SYMBOL vmlinux 0x7ddb48e2 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e14aaf0 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x7e1e7dcc jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x7e46ec94 mmc_can_reset +EXPORT_SYMBOL vmlinux 0x7e5c35b1 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x7e7fc3fb __wake_up_bit +EXPORT_SYMBOL vmlinux 0x7eaa15b9 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x7ebd4be4 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x7ec8765e simple_follow_link +EXPORT_SYMBOL vmlinux 0x7ec8a4eb freeze_super +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7ef0a1b2 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x7efb837d tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f033073 thaw_bdev +EXPORT_SYMBOL vmlinux 0x7f0edab8 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f263ed9 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x7f381152 dev_printk +EXPORT_SYMBOL vmlinux 0x7f53af62 nd_device_unregister +EXPORT_SYMBOL vmlinux 0x7f5e8b58 dev_err +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f6ee416 file_path +EXPORT_SYMBOL vmlinux 0x7f759144 udp_proc_register +EXPORT_SYMBOL vmlinux 0x7f95f92a tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x7fbd10d2 radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x7fd4ff71 phy_device_create +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fe38f48 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x803184b7 make_kprojid +EXPORT_SYMBOL vmlinux 0x8051c010 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x8061cc6c cfb_fillrect +EXPORT_SYMBOL vmlinux 0x8063087f ip_options_compile +EXPORT_SYMBOL vmlinux 0x8067c299 vme_register_bridge +EXPORT_SYMBOL vmlinux 0x8068c15c kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x806e3629 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x80791a8c radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0x80818d37 blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x809388ca idr_destroy +EXPORT_SYMBOL vmlinux 0x80998456 udplite_prot +EXPORT_SYMBOL vmlinux 0x80b18c4d input_flush_device +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80eb423b acpi_get_object_info +EXPORT_SYMBOL vmlinux 0x810d2644 neigh_for_each +EXPORT_SYMBOL vmlinux 0x81144f9d idr_find_slowpath +EXPORT_SYMBOL vmlinux 0x8116d9fe swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0x8116f13b sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x811b661e __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x812ad51d gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x81472677 acpi_get_table +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x8153019e sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page +EXPORT_SYMBOL vmlinux 0x817156e7 kernel_listen +EXPORT_SYMBOL vmlinux 0x817483c3 loop_register_transfer +EXPORT_SYMBOL vmlinux 0x817f0c68 inet6_getname +EXPORT_SYMBOL vmlinux 0x81b9aa39 __module_get +EXPORT_SYMBOL vmlinux 0x81ce1013 md_check_recovery +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e43d52 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x81e59ee3 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x820a4089 seq_release_private +EXPORT_SYMBOL vmlinux 0x8212721d xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0x82147a70 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0x82162e6c eth_type_trans +EXPORT_SYMBOL vmlinux 0x82340ade dm_unregister_target +EXPORT_SYMBOL vmlinux 0x82360fa8 tty_lock +EXPORT_SYMBOL vmlinux 0x823912af vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x823b0111 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x82458f7f radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x82574ba1 tso_build_data +EXPORT_SYMBOL vmlinux 0x825fc953 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x826c2bb9 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x829534b3 fence_free +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82bdcdbd dst_discard_out +EXPORT_SYMBOL vmlinux 0x82bfe720 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x82cda9d3 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x82cf0682 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x82dc9896 seq_dentry +EXPORT_SYMBOL vmlinux 0x82f475fa skb_vlan_push +EXPORT_SYMBOL vmlinux 0x830e547b ioremap_prot +EXPORT_SYMBOL vmlinux 0x833c03aa acpi_enable_all_runtime_gpes +EXPORT_SYMBOL vmlinux 0x8345871e vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x8354a582 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x836b2247 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x8373f402 abx500_register_ops +EXPORT_SYMBOL vmlinux 0x8384647a acpi_map_pxm_to_online_node +EXPORT_SYMBOL vmlinux 0x838f3647 vfs_create +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x83ad5dcf twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83bb18be km_policy_expired +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83d8a97b gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x83eb6b0d dev_get_by_name +EXPORT_SYMBOL vmlinux 0x83ec0317 inet_ioctl +EXPORT_SYMBOL vmlinux 0x83fbbbe6 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x8403322c __netif_schedule +EXPORT_SYMBOL vmlinux 0x84060081 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x8417f512 acpi_update_all_gpes +EXPORT_SYMBOL vmlinux 0x841b3996 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x84236ca3 pneigh_lookup +EXPORT_SYMBOL vmlinux 0x84240c0a dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x8434d0f5 blk_fetch_request +EXPORT_SYMBOL vmlinux 0x84406716 user_revoke +EXPORT_SYMBOL vmlinux 0x844e3767 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x84521c25 amd_iommu_enable_device_erratum +EXPORT_SYMBOL vmlinux 0x845fd23b __dax_fault +EXPORT_SYMBOL vmlinux 0x846ab25c elevator_change +EXPORT_SYMBOL vmlinux 0x847763ac __neigh_event_send +EXPORT_SYMBOL vmlinux 0x84e38a3d fb_get_mode +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x8507c383 proc_dointvec +EXPORT_SYMBOL vmlinux 0x8512fc2c end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x851449ca register_xen_selfballooning +EXPORT_SYMBOL vmlinux 0x8526c35a remove_wait_queue +EXPORT_SYMBOL vmlinux 0x853cb3c7 param_set_uint +EXPORT_SYMBOL vmlinux 0x8540bb5e pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x854d047b neigh_lookup +EXPORT_SYMBOL vmlinux 0x855707b4 mapping_tagged +EXPORT_SYMBOL vmlinux 0x856191cd mmc_request_done +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x856a3051 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x856b2074 nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0x857582f7 acpi_enable_all_wakeup_gpes +EXPORT_SYMBOL vmlinux 0x8576d77c agp_allocate_memory +EXPORT_SYMBOL vmlinux 0x858473ad serio_close +EXPORT_SYMBOL vmlinux 0x858975cb sockfd_lookup +EXPORT_SYMBOL vmlinux 0x858b3fe3 free_iova_mem +EXPORT_SYMBOL vmlinux 0x85a67911 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85c657c9 skb_seq_read +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e1f7d8 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85fa3322 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x8600412b __break_lease +EXPORT_SYMBOL vmlinux 0x860cfc43 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x861e22a4 acpi_map_cpu +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x86574d49 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x865d263c tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x867ac5af nd_integrity_init +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x869face6 md_done_sync +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86a6b430 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x86ab9ad3 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x86b5a4a1 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x86cea3c8 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x86e3db17 dev_trans_start +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x87143afb mmc_can_discard +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x874adcf2 __nd_iostat_start +EXPORT_SYMBOL vmlinux 0x8752aa74 simple_readpage +EXPORT_SYMBOL vmlinux 0x876dafc3 ec_write +EXPORT_SYMBOL vmlinux 0x877ee20f reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0x8780fa24 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x878cd015 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x878ff694 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x87aaddf8 wrmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0x87ac08a6 inet6_offloads +EXPORT_SYMBOL vmlinux 0x87b3aeb7 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x87ba5a3a amd_iommu_get_v2_domain +EXPORT_SYMBOL vmlinux 0x87be1199 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x87d30b84 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x87f1cac1 alloc_pages_current +EXPORT_SYMBOL vmlinux 0x880cf017 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x881acdd5 pcim_iomap +EXPORT_SYMBOL vmlinux 0x883fb204 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x884f7bd2 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x886b355c netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x886fe93b lwtunnel_output +EXPORT_SYMBOL vmlinux 0x887fa47e __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x888a5577 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x888de571 xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0x88908872 f_setown +EXPORT_SYMBOL vmlinux 0x88917eba abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x88a79c2e remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x88c8be34 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x88d15341 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x88d1bb49 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x88fd863c mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x891b81d9 sock_edemux +EXPORT_SYMBOL vmlinux 0x892b26a0 set_memory_nx +EXPORT_SYMBOL vmlinux 0x892ba16d mdiobus_write +EXPORT_SYMBOL vmlinux 0x892de3fb __nla_put +EXPORT_SYMBOL vmlinux 0x8948bd01 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x896e4d36 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x897cb731 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x89ae483a truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89c034a5 blk_init_tags +EXPORT_SYMBOL vmlinux 0x89d1502c component_match_add +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89fd55e8 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x8a010e0a tcp_close +EXPORT_SYMBOL vmlinux 0x8a0b12c6 complete_all +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a3f5aa1 acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a53bca4 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x8a6944f9 percpu_counter_set +EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a80d7a5 acpi_error +EXPORT_SYMBOL vmlinux 0x8a8f0ad9 blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aa9a51c bdget +EXPORT_SYMBOL vmlinux 0x8aadb5c0 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x8ab91ef1 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x8ac828fc tty_port_init +EXPORT_SYMBOL vmlinux 0x8ad188c6 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x8add6c30 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x8aec22b2 noop_fsync +EXPORT_SYMBOL vmlinux 0x8af124e5 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x8b009427 iterate_fd +EXPORT_SYMBOL vmlinux 0x8b095b8b icmp_send +EXPORT_SYMBOL vmlinux 0x8b2f9f47 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b454798 set_posix_acl +EXPORT_SYMBOL vmlinux 0x8b48aed9 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0x8b4deaa9 vme_lm_request +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8baa75ea inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x8baaa245 inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0x8bbb3254 __lock_buffer +EXPORT_SYMBOL vmlinux 0x8bc5bc2c blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x8bdcdaa6 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x8bfe8c7c pci_pme_active +EXPORT_SYMBOL vmlinux 0x8c15831e netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c2e3cca d_find_any_alias +EXPORT_SYMBOL vmlinux 0x8c3e4641 wake_up_process +EXPORT_SYMBOL vmlinux 0x8c40a029 udp_disconnect +EXPORT_SYMBOL vmlinux 0x8c4d3255 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x8c4e725d write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x8c5ca80b phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x8c5e6cbe sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c670799 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x8c7aa1ae netif_rx +EXPORT_SYMBOL vmlinux 0x8c82a186 devm_clk_get +EXPORT_SYMBOL vmlinux 0x8c934ce1 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x8c9fc15c generic_end_io_acct +EXPORT_SYMBOL vmlinux 0x8ca22964 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x8ca5cd99 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x8cae0de3 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x8cc519d3 input_register_device +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8ce341e8 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x8ce73b8b filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x8cf1a339 load_nls_default +EXPORT_SYMBOL vmlinux 0x8cf6d04b blk_make_request +EXPORT_SYMBOL vmlinux 0x8cfd6cd0 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x8d04ec23 netdev_state_change +EXPORT_SYMBOL vmlinux 0x8d0d3ea0 kernel_sendpage +EXPORT_SYMBOL vmlinux 0x8d2af3d0 clear_inode +EXPORT_SYMBOL vmlinux 0x8d34eaa6 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x8d43c200 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d5526f9 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d5b26c0 set_pages_uc +EXPORT_SYMBOL vmlinux 0x8d690582 __block_write_begin +EXPORT_SYMBOL vmlinux 0x8d6d034c inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d838d91 ida_remove +EXPORT_SYMBOL vmlinux 0x8d8d96c6 acpi_get_sleep_type_data +EXPORT_SYMBOL vmlinux 0x8da1a3cb acpi_remove_interface +EXPORT_SYMBOL vmlinux 0x8daf8c42 dql_init +EXPORT_SYMBOL vmlinux 0x8dca3a06 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x8dee5b78 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x8deffe68 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8e002cda acpi_remove_gpe_block +EXPORT_SYMBOL vmlinux 0x8e1953d6 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x8e2d83b6 node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x8e2fd299 submit_bh +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e8231d6 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x8e86b972 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x8e9edf35 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler +EXPORT_SYMBOL vmlinux 0x8eb90a61 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x8eba3f5a xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x8eeddc48 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x8f0562bc elv_unregister_queue +EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus +EXPORT_SYMBOL vmlinux 0x8f4ea17a pci_match_id +EXPORT_SYMBOL vmlinux 0x8f55dc5b insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x8f6ace30 pnp_is_active +EXPORT_SYMBOL vmlinux 0x8f840b34 devm_iounmap +EXPORT_SYMBOL vmlinux 0x8f8e34c5 drop_super +EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 +EXPORT_SYMBOL vmlinux 0x8fd1152e _raw_write_unlock +EXPORT_SYMBOL vmlinux 0x8fe1186d tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x8fe59cef convert_art_to_tsc +EXPORT_SYMBOL vmlinux 0x8fe95b40 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x90121045 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x90220ea4 sock_no_poll +EXPORT_SYMBOL vmlinux 0x9023a30a __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x90241804 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x90252bdc fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0x90253aa0 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x90256141 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x90278ac8 pci_bus_get +EXPORT_SYMBOL vmlinux 0x902ac743 d_rehash +EXPORT_SYMBOL vmlinux 0x902cb0f9 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x902fd536 to_nd_btt +EXPORT_SYMBOL vmlinux 0x9035a4b5 tcp_poll +EXPORT_SYMBOL vmlinux 0x9039b551 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x903be13e commit_creds +EXPORT_SYMBOL vmlinux 0x903d3212 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x904409c6 acpi_set_firmware_waking_vector +EXPORT_SYMBOL vmlinux 0x9047b1fe ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x90564f31 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x905cf16a request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x9078127e __free_pages +EXPORT_SYMBOL vmlinux 0x90794fdf pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x908575fe queued_write_lock_slowpath +EXPORT_SYMBOL vmlinux 0x90a0f731 path_is_under +EXPORT_SYMBOL vmlinux 0x90bcc176 lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0x90e0b426 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x90ea3dff mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x90fba0a1 set_pages_array_uc +EXPORT_SYMBOL vmlinux 0x90fff955 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x9140e426 udp_poll +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x914d6c97 wireless_send_event +EXPORT_SYMBOL vmlinux 0x9156de53 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x915da533 genphy_resume +EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb +EXPORT_SYMBOL vmlinux 0x9162b4e3 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x9169e226 security_inode_permission +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x91738c59 audit_log_start +EXPORT_SYMBOL vmlinux 0x918289d0 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x918c43d6 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x91967e8e xen_selfballoon_init +EXPORT_SYMBOL vmlinux 0x91983498 serio_interrupt +EXPORT_SYMBOL vmlinux 0x91ac822f vscnprintf +EXPORT_SYMBOL vmlinux 0x91b21240 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x91b52b35 get_task_exe_file +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x9205d0ba dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x9211e6fc inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x9211e872 mmc_erase +EXPORT_SYMBOL vmlinux 0x92351562 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x92364d70 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x9258eb92 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x925c7ccb jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x9270cea8 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x92a0e43d tcf_register_action +EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm +EXPORT_SYMBOL vmlinux 0x92b770d3 new_inode +EXPORT_SYMBOL vmlinux 0x92b7d3a3 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0x92c61b66 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x92d9f048 blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0x92f6767f lg_local_lock +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x92fcedfd dump_skip +EXPORT_SYMBOL vmlinux 0x92fd604b acpi_pm_device_run_wake +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x930a1308 get_unmapped_area +EXPORT_SYMBOL vmlinux 0x9310b576 vmap +EXPORT_SYMBOL vmlinux 0x9318cf58 agp_find_bridge +EXPORT_SYMBOL vmlinux 0x93216325 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x932493a8 iosf_mbi_read +EXPORT_SYMBOL vmlinux 0x932ae46d dev_activate +EXPORT_SYMBOL vmlinux 0x933f3e4a scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0x934bd46b bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x935273f6 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x9359b4e8 fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0x93607c7d ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x939a1ca3 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93c12eb7 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x93e47472 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x93ed30b6 generic_write_end +EXPORT_SYMBOL vmlinux 0x93eeee2b bdi_init +EXPORT_SYMBOL vmlinux 0x93f3e52b acpi_extract_package +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x93fe09d3 uart_get_divisor +EXPORT_SYMBOL vmlinux 0x94026d06 inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x942c9516 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x94475928 vme_register_driver +EXPORT_SYMBOL vmlinux 0x945a6bc3 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x9493161b jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94a9d410 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x94ba1991 install_exec_creds +EXPORT_SYMBOL vmlinux 0x94bbdab0 d_find_alias +EXPORT_SYMBOL vmlinux 0x94ca08f0 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x94d39c91 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x94e740e0 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x94e7e180 pid_task +EXPORT_SYMBOL vmlinux 0x94fdbae6 vme_master_request +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x95395301 acpi_exception +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x955a832f ___preempt_schedule +EXPORT_SYMBOL vmlinux 0x956c941b i2c_verify_client +EXPORT_SYMBOL vmlinux 0x9594c329 blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0x95ab90de blk_free_tags +EXPORT_SYMBOL vmlinux 0x95bd6e26 acpi_install_sci_handler +EXPORT_SYMBOL vmlinux 0x95c1f535 dquot_file_open +EXPORT_SYMBOL vmlinux 0x95d726d3 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x95db45b6 agp_backend_release +EXPORT_SYMBOL vmlinux 0x9604065c pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x96050177 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x961b72dd pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x969899b8 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x96aba385 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96b5ba06 dquot_enable +EXPORT_SYMBOL vmlinux 0x96b5d0e1 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x96c80d86 release_sock +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96ea4642 param_ops_bool +EXPORT_SYMBOL vmlinux 0x96f4cb36 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x96f8af0a pci_read_vpd +EXPORT_SYMBOL vmlinux 0x97051ca7 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x970b4783 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x9719c407 generic_listxattr +EXPORT_SYMBOL vmlinux 0x9719c409 tcp_seq_open +EXPORT_SYMBOL vmlinux 0x971a8632 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x97235316 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x9739f40d blk_get_request +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x9786100b pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x97868aef __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x9795743f max8925_set_bits +EXPORT_SYMBOL vmlinux 0x9799482c pci_release_regions +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x979f517b sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97c5bd0a acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x97dcff38 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x97de0ddd acpi_install_gpe_block +EXPORT_SYMBOL vmlinux 0x97faed2b pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x980100a0 filp_close +EXPORT_SYMBOL vmlinux 0x9815ed0f jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint +EXPORT_SYMBOL vmlinux 0x98299526 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x98475508 skb_append +EXPORT_SYMBOL vmlinux 0x985556ba scsi_remove_device +EXPORT_SYMBOL vmlinux 0x985a565a init_special_inode +EXPORT_SYMBOL vmlinux 0x986ab1c7 pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0x986d857a qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x986da01f seq_pad +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x9878745c _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x988ed85d set_memory_x +EXPORT_SYMBOL vmlinux 0x98b5bb16 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x98c68c41 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x98f3774c dev_remove_offload +EXPORT_SYMBOL vmlinux 0x98f433db unregister_quota_format +EXPORT_SYMBOL vmlinux 0x98fb85b5 amd_iommu_domain_set_gcr3 +EXPORT_SYMBOL vmlinux 0x98ffbdd2 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x99081d24 __scm_send +EXPORT_SYMBOL vmlinux 0x99195078 vsnprintf +EXPORT_SYMBOL vmlinux 0x992d300c ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x9949627b dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x996e5f13 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x996ed3ce acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x997f62d0 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x9998a5f1 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99c5ed14 seq_file_path +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x99d3a43c dm_table_get_size +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99f068d5 x86_cpu_to_node_map +EXPORT_SYMBOL vmlinux 0x99fb2aa1 free_xenballooned_pages +EXPORT_SYMBOL vmlinux 0x99fc790d iov_iter_advance +EXPORT_SYMBOL vmlinux 0x9a1019b5 kobject_add +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1e94d2 lease_modify +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a1fccc2 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x9a27e2d8 inet_add_offload +EXPORT_SYMBOL vmlinux 0x9a3d4d7a dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0x9a655268 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x9aa994b1 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x9ac2d2c1 mmc_start_bkops +EXPORT_SYMBOL vmlinux 0x9adb1aad vfs_writef +EXPORT_SYMBOL vmlinux 0x9ae2da27 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x9ae410ae mdio_bus_type +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9afa039e lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x9b09bde9 irq_to_desc +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b72d292 generic_readlink +EXPORT_SYMBOL vmlinux 0x9b741091 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x9b74f925 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x9b9b1f42 bdevname +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba146bf wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9bbc5112 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put +EXPORT_SYMBOL vmlinux 0x9bbf9c4e d_tmpfile +EXPORT_SYMBOL vmlinux 0x9bda7677 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9beb493f inet_del_offload +EXPORT_SYMBOL vmlinux 0x9bf1a718 set_cached_acl +EXPORT_SYMBOL vmlinux 0x9c14ff25 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c529dfe napi_disable +EXPORT_SYMBOL vmlinux 0x9c53838b sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x9c7ad8e8 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x9c9075e5 kobject_get +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cbe65f5 phy_device_register +EXPORT_SYMBOL vmlinux 0x9cc4c8a9 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d299391 swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0x9d33ef5e acpi_enable +EXPORT_SYMBOL vmlinux 0x9d3635fd proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d718752 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x9d9e7959 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x9da05e10 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x9dca6970 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x9dca9a74 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x9dcfa052 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x9dd748e4 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x9de1f663 d_set_d_op +EXPORT_SYMBOL vmlinux 0x9de3be85 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x9de4d400 xfrm_input +EXPORT_SYMBOL vmlinux 0x9de69abb netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x9df6a5da netdev_master_upper_dev_link_private +EXPORT_SYMBOL vmlinux 0x9dfff8d7 __mdiobus_register +EXPORT_SYMBOL vmlinux 0x9e089ae8 blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0x9e098e2b cpu_sibling_map +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e1f1753 bio_clone_bioset +EXPORT_SYMBOL vmlinux 0x9e257e22 generic_start_io_acct +EXPORT_SYMBOL vmlinux 0x9e2f8c90 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9e323d36 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x9e363b6b acpi_disable_gpe +EXPORT_SYMBOL vmlinux 0x9e3688a6 kthread_bind +EXPORT_SYMBOL vmlinux 0x9e4e6193 simple_rmdir +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e543cb7 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x9e59fedc udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e79bf7b pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e8a07b7 console_start +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9eaf4194 dev_base_lock +EXPORT_SYMBOL vmlinux 0x9eb419d4 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource +EXPORT_SYMBOL vmlinux 0x9ef0c6d7 ip6_frag_match +EXPORT_SYMBOL vmlinux 0x9ef1a139 locks_mandatory_area +EXPORT_SYMBOL vmlinux 0x9effd427 scsi_device_put +EXPORT_SYMBOL vmlinux 0x9f1ad640 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f511477 tcp_proto_cgroup +EXPORT_SYMBOL vmlinux 0x9f5a478e eth_gro_receive +EXPORT_SYMBOL vmlinux 0x9f6576a4 blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0x9f7c1be8 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x9f825420 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x9f87c25f cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x9f8b90c0 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x9f918e03 finish_no_open +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fae5714 generic_permission +EXPORT_SYMBOL vmlinux 0x9fc0658c thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x9fcf4ee9 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x9fdd679e blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9ff6017b do_SAK +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa0408086 posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0xa0426214 sk_wait_data +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa04f863e inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xa052ea7f set_pages_array_wb +EXPORT_SYMBOL vmlinux 0xa053526c inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xa0582698 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa0686eb4 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xa06ad3ff kernel_getsockname +EXPORT_SYMBOL vmlinux 0xa06ff399 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xa0766a92 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xa07773d1 follow_up +EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa07b4a5a dquot_get_state +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa07f6f7c padata_alloc +EXPORT_SYMBOL vmlinux 0xa0821827 mntget +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa095bb64 ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xa0abfb65 setup_arg_pages +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0b61ed2 skb_copy_bits +EXPORT_SYMBOL vmlinux 0xa0be2fea netif_napi_del +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0e95de0 module_put +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa0ff74d6 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa1394ba4 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts +EXPORT_SYMBOL vmlinux 0xa152319c blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xa1695345 cad_pid +EXPORT_SYMBOL vmlinux 0xa16e520d flow_cache_fini +EXPORT_SYMBOL vmlinux 0xa178f011 posix_acl_valid +EXPORT_SYMBOL vmlinux 0xa18eee89 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xa19e7e55 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xa1b1c528 __ht_create_irq +EXPORT_SYMBOL vmlinux 0xa1b3494e sock_from_file +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1be8c42 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1c7a1ed iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa201540a eth_header_cache +EXPORT_SYMBOL vmlinux 0xa202a8e5 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa2105278 current_fs_time +EXPORT_SYMBOL vmlinux 0xa213b814 clk_add_alias +EXPORT_SYMBOL vmlinux 0xa218f4ee sock_register +EXPORT_SYMBOL vmlinux 0xa2337cc7 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xa23e0143 __init_rwsem +EXPORT_SYMBOL vmlinux 0xa23e0720 i2c_del_driver +EXPORT_SYMBOL vmlinux 0xa246d3dd iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0xa2578326 dquot_commit +EXPORT_SYMBOL vmlinux 0xa25fdd7e get_acl +EXPORT_SYMBOL vmlinux 0xa27bc636 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0xa27d8bdb genphy_setup_forced +EXPORT_SYMBOL vmlinux 0xa2820a8b pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa28b3c7b pagecache_write_begin +EXPORT_SYMBOL vmlinux 0xa28e247d md_set_array_sectors +EXPORT_SYMBOL vmlinux 0xa2a335bd vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0xa2bbc5d7 migrate_page +EXPORT_SYMBOL vmlinux 0xa2bbe984 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xa2c32b61 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0xa2c7aa98 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0xa2dd9965 kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0xa2eea5bc skb_put +EXPORT_SYMBOL vmlinux 0xa3010a3c tcp_parse_options +EXPORT_SYMBOL vmlinux 0xa3035d68 inet_select_addr +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa34fcb2d mempool_create_node +EXPORT_SYMBOL vmlinux 0xa350a8f8 set_memory_array_uc +EXPORT_SYMBOL vmlinux 0xa36b2395 keyring_alloc +EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get +EXPORT_SYMBOL vmlinux 0xa3828bce starget_for_each_device +EXPORT_SYMBOL vmlinux 0xa3a69b46 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xa3ace499 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0xa3c2bb69 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xa3f819b4 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0xa4511467 crc16 +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa482bc6c filemap_fdatawait +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4c4f717 set_blocksize +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4eb5286 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0xa4eca6a8 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xa4fbcb79 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xa50a80c2 boot_cpu_data +EXPORT_SYMBOL vmlinux 0xa50ab78d user_path_create +EXPORT_SYMBOL vmlinux 0xa5120c7f inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xa51b4e89 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0xa52adeba bio_reset +EXPORT_SYMBOL vmlinux 0xa538a6b4 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa552dbb8 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xa56251d5 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xa56a21be tcp_init_cgroup +EXPORT_SYMBOL vmlinux 0xa58abf9f intel_gmch_probe +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa5a51eee __crc32c_le +EXPORT_SYMBOL vmlinux 0xa5c5ba49 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xa5faaea4 release_pages +EXPORT_SYMBOL vmlinux 0xa5fca81e vme_master_mmap +EXPORT_SYMBOL vmlinux 0xa5fff89b serio_open +EXPORT_SYMBOL vmlinux 0xa632ed2d unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xa63322c6 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember +EXPORT_SYMBOL vmlinux 0xa642f588 netdev_notice +EXPORT_SYMBOL vmlinux 0xa6610133 alloc_disk +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa67ef30b tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6a0f38c block_read_full_page +EXPORT_SYMBOL vmlinux 0xa6b8e2ce skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0xa6bbd805 __wake_up +EXPORT_SYMBOL vmlinux 0xa6bd63ca acpi_bios_error +EXPORT_SYMBOL vmlinux 0xa6c16c28 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xa6febd8a input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa70b16aa scsi_add_device +EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi +EXPORT_SYMBOL vmlinux 0xa71638b6 inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0xa72a0f5b nr_online_nodes +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa74bcd62 rdmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xa75aa9d0 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xa7718c8d __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xa7762746 cdev_del +EXPORT_SYMBOL vmlinux 0xa788f1a0 i8253_lock +EXPORT_SYMBOL vmlinux 0xa7b385e7 tcp_check_req +EXPORT_SYMBOL vmlinux 0xa7d9facd read_cache_pages +EXPORT_SYMBOL vmlinux 0xa8076c09 genl_unregister_family +EXPORT_SYMBOL vmlinux 0xa8115cf4 register_gifconf +EXPORT_SYMBOL vmlinux 0xa827cf6d flush_old_exec +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa8638435 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xa87190db save_mount_options +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa881cdd4 make_kuid +EXPORT_SYMBOL vmlinux 0xa8827dec proc_symlink +EXPORT_SYMBOL vmlinux 0xa883b127 sock_get_timestamp +EXPORT_SYMBOL vmlinux 0xa890bbc5 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xa8b11577 copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0xa8b3ded4 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0xa8c9e255 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xa8e56a3b kernel_setsockopt +EXPORT_SYMBOL vmlinux 0xa8f4504f vme_irq_free +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa91d90d3 nla_put +EXPORT_SYMBOL vmlinux 0xa9220a25 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xa927513a __genl_register_family +EXPORT_SYMBOL vmlinux 0xa952daef __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0xa9569cb0 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa9831c10 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xa98e6799 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xa998214b tcp_read_sock +EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes +EXPORT_SYMBOL vmlinux 0xa9a8e17f arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0xa9ba9469 input_register_handler +EXPORT_SYMBOL vmlinux 0xa9bd2676 __vmalloc +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9ff6fe2 netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xaa142d01 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xaa5bd08d __pv_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa766159 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0xaaa229b2 kill_pid +EXPORT_SYMBOL vmlinux 0xaac273c8 tty_check_change +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab0ca36c nobh_write_end +EXPORT_SYMBOL vmlinux 0xab324f57 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xab47cab3 ppp_input +EXPORT_SYMBOL vmlinux 0xab4884f0 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xab551fad acpi_get_data_full +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab65ed80 set_memory_uc +EXPORT_SYMBOL vmlinux 0xab6948cc iput +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab770678 rdmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab7865fa mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0xab8d80c0 block_write_begin +EXPORT_SYMBOL vmlinux 0xaba09689 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xaba3159c gen_pool_destroy +EXPORT_SYMBOL vmlinux 0xaba5ac08 cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0xaba95312 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabdbe099 clocksource_unregister +EXPORT_SYMBOL vmlinux 0xabf65de9 tcp_destroy_cgroup +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac2babe8 scsi_init_io +EXPORT_SYMBOL vmlinux 0xac2f60f5 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear +EXPORT_SYMBOL vmlinux 0xac53b870 compat_mc_getsockopt +EXPORT_SYMBOL vmlinux 0xac7f31e6 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xac8c07ce ata_link_printk +EXPORT_SYMBOL vmlinux 0xaca9bcd2 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb574f4 __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0xacb99769 ida_destroy +EXPORT_SYMBOL vmlinux 0xacc76868 on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xad01744f kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xad025e60 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad0d18e7 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0xad164875 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xad5b78c3 mount_single +EXPORT_SYMBOL vmlinux 0xad698f77 dqstats +EXPORT_SYMBOL vmlinux 0xad6aa8be pci_clear_master +EXPORT_SYMBOL vmlinux 0xad6e4bb6 mempool_free +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad94dec9 blkdev_fsync +EXPORT_SYMBOL vmlinux 0xadb0577d blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0xadd9ff5b dev_get_nest_level +EXPORT_SYMBOL vmlinux 0xaddbf9d0 mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0xadf5eed7 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae044bc7 panic_notifier_list +EXPORT_SYMBOL vmlinux 0xae062e89 qdisc_destroy +EXPORT_SYMBOL vmlinux 0xae0ba24b input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xae117d83 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0xae1e3ffa inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xae2cae79 nf_register_hook +EXPORT_SYMBOL vmlinux 0xae2f878a padata_start +EXPORT_SYMBOL vmlinux 0xae407474 key_revoke +EXPORT_SYMBOL vmlinux 0xae55f04b netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0xae65c15c mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xae9dddb3 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0xaea140b8 single_release +EXPORT_SYMBOL vmlinux 0xaea73cd0 fasync_helper +EXPORT_SYMBOL vmlinux 0xaea976a8 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xaee75cd1 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xaeee7983 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xaf11982d __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xaf1adf77 bio_clone_fast +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf611eac amd_nb_misc_ids +EXPORT_SYMBOL vmlinux 0xaf6aa973 acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0xaf6ae696 kstrndup +EXPORT_SYMBOL vmlinux 0xaf85ef5c path_get +EXPORT_SYMBOL vmlinux 0xafb8c6ff copy_user_generic_string +EXPORT_SYMBOL vmlinux 0xafbd8029 bio_endio +EXPORT_SYMBOL vmlinux 0xafbe0c53 insert_inode_locked +EXPORT_SYMBOL vmlinux 0xafc33af7 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xafc50476 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0xafc95cc2 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0xafd5ff2c amd_iommu_v2_supported +EXPORT_SYMBOL vmlinux 0xaff82810 dquot_release +EXPORT_SYMBOL vmlinux 0xb01b1db8 intel_gtt_insert_sg_entries +EXPORT_SYMBOL vmlinux 0xb028d8fd __cleancache_get_page +EXPORT_SYMBOL vmlinux 0xb02bd591 _raw_read_unlock_irq +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb06e291a mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0xb081d5ba __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0xb08cd9b1 sync_inode +EXPORT_SYMBOL vmlinux 0xb09aec05 register_key_type +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0a5b820 compat_tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0c019d9 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0xb0c03e33 tcf_hash_check +EXPORT_SYMBOL vmlinux 0xb0c7fe0f __breadahead +EXPORT_SYMBOL vmlinux 0xb0d39d36 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xb0dbe167 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e602eb memmove +EXPORT_SYMBOL vmlinux 0xb0e6d03d input_set_abs_params +EXPORT_SYMBOL vmlinux 0xb0ea6102 simple_write_end +EXPORT_SYMBOL vmlinux 0xb0eb41ff iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0xb10820e4 _raw_read_unlock +EXPORT_SYMBOL vmlinux 0xb108e1ef skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb1293235 sock_create_kern +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb138b713 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xb152d87d cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb17378bd blk_put_queue +EXPORT_SYMBOL vmlinux 0xb1873bd3 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0xb187b3a8 lg_lock_init +EXPORT_SYMBOL vmlinux 0xb192415e mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xb1a3e33f proc_create_data +EXPORT_SYMBOL vmlinux 0xb1ac32d7 iunique +EXPORT_SYMBOL vmlinux 0xb1bb93a8 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xb1cfad22 rdmsr_on_cpu +EXPORT_SYMBOL vmlinux 0xb1e5d6c9 tso_build_hdr +EXPORT_SYMBOL vmlinux 0xb1ffd7c2 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0xb208513c forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0xb20ecf88 acpi_run_osc +EXPORT_SYMBOL vmlinux 0xb20f9ca4 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xb217a80a blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu +EXPORT_SYMBOL vmlinux 0xb21f29ce __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xb25051b4 sk_stop_timer +EXPORT_SYMBOL vmlinux 0xb25c0892 notify_change +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb269dc76 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0xb27cd284 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0xb2aeac79 vfs_getxattr_alloc +EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xb2bf8201 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xb2d46e5f scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xb2d5a552 complete +EXPORT_SYMBOL vmlinux 0xb2e560f2 padata_add_cpu +EXPORT_SYMBOL vmlinux 0xb2f1c04a kern_unmount +EXPORT_SYMBOL vmlinux 0xb2f74fb6 intel_gmch_remove +EXPORT_SYMBOL vmlinux 0xb2f81f88 ps2_handle_response +EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 +EXPORT_SYMBOL vmlinux 0xb302e51e __frontswap_store +EXPORT_SYMBOL vmlinux 0xb309a426 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xb30d91f0 swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xb3284531 acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xb34dd30b inet_getname +EXPORT_SYMBOL vmlinux 0xb34fc7cf acpi_device_hid +EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit +EXPORT_SYMBOL vmlinux 0xb39bf65b nf_log_trace +EXPORT_SYMBOL vmlinux 0xb3bd9e17 simple_lookup +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3d64ad4 input_open_device +EXPORT_SYMBOL vmlinux 0xb3e0df8d tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xb3e226ba mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xb3ebd092 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb429fb8b xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xb42a52bb dev_crit +EXPORT_SYMBOL vmlinux 0xb42e5f78 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xb439a2b3 bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0xb443dadd generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xb44c1438 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xb4550762 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0xb4581ac2 phy_resume +EXPORT_SYMBOL vmlinux 0xb4601a9e generic_setlease +EXPORT_SYMBOL vmlinux 0xb46c215b bio_init +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb470b875 security_task_getsecid +EXPORT_SYMBOL vmlinux 0xb47189b5 reservation_ww_class +EXPORT_SYMBOL vmlinux 0xb478d93d acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0xb47959ad __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0xb4b2000c i2c_use_client +EXPORT_SYMBOL vmlinux 0xb4cd07fd ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xb4f78623 mpage_writepages +EXPORT_SYMBOL vmlinux 0xb4fc36e6 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0xb4ff5083 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0xb50a673a reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0xb51961dd tty_port_put +EXPORT_SYMBOL vmlinux 0xb525bf57 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range +EXPORT_SYMBOL vmlinux 0xb53e44de inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xb53e9267 __bforget +EXPORT_SYMBOL vmlinux 0xb553342f ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0xb561193c mpage_readpage +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb57df0f4 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xb58e15c5 sock_rfree +EXPORT_SYMBOL vmlinux 0xb592b357 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5c652d5 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free +EXPORT_SYMBOL vmlinux 0xb5d095ea max8998_bulk_write +EXPORT_SYMBOL vmlinux 0xb5d8be36 backlight_force_update +EXPORT_SYMBOL vmlinux 0xb5dbd16a __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xb6150a07 param_set_invbool +EXPORT_SYMBOL vmlinux 0xb6234590 security_path_link +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb624fe81 mmc_remove_host +EXPORT_SYMBOL vmlinux 0xb631ec40 find_inode_nowait +EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6b1a614 pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0xb6ccbe62 tty_unregister_device +EXPORT_SYMBOL vmlinux 0xb705cb30 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0xb70c356e fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0xb7131406 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xb721b9bc sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xb735920f mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0xb742b2bf pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb7543baa tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0xb75705c2 get_super_thawed +EXPORT_SYMBOL vmlinux 0xb758b225 acpi_disable_event +EXPORT_SYMBOL vmlinux 0xb761646c backlight_device_register +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb775df6d __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xb7b1208b inode_needs_sync +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7d13b93 send_sig_info +EXPORT_SYMBOL vmlinux 0xb7d886fd proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xb8074008 vfs_rename +EXPORT_SYMBOL vmlinux 0xb8093690 kill_bdev +EXPORT_SYMBOL vmlinux 0xb81b7535 pci_biosrom_size +EXPORT_SYMBOL vmlinux 0xb825ae33 phy_disconnect +EXPORT_SYMBOL vmlinux 0xb835c9e3 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xb84d449e phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0xb84d541f ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xb863285b current_in_userns +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb87f2018 phy_attach +EXPORT_SYMBOL vmlinux 0xb8b5395b scsi_remove_target +EXPORT_SYMBOL vmlinux 0xb8b6a76c __percpu_counter_add +EXPORT_SYMBOL vmlinux 0xb8c16463 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xb8c5c1f9 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 +EXPORT_SYMBOL vmlinux 0xb8eea404 netif_device_detach +EXPORT_SYMBOL vmlinux 0xb8fc5079 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xb8fdcd10 mempool_resize +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb9195144 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xb9329f2c netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xb93c96f8 bh_submit_read +EXPORT_SYMBOL vmlinux 0xb9468d4e blk_run_queue_async +EXPORT_SYMBOL vmlinux 0xb94db2cf eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0xb96e5115 nvm_get_blk +EXPORT_SYMBOL vmlinux 0xb96fda51 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0xb985c393 set_create_files_as +EXPORT_SYMBOL vmlinux 0xb99e20b4 sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0xb99f8a27 netdev_change_features +EXPORT_SYMBOL vmlinux 0xb9b5a572 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0xb9ca9b0a bio_phys_segments +EXPORT_SYMBOL vmlinux 0xb9cc9cae copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xba0c6c69 ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0xba2bb5db sock_i_ino +EXPORT_SYMBOL vmlinux 0xba2d8594 ec_read +EXPORT_SYMBOL vmlinux 0xba308af2 up_read +EXPORT_SYMBOL vmlinux 0xba370af2 seq_escape +EXPORT_SYMBOL vmlinux 0xba377bbc pci_disable_device +EXPORT_SYMBOL vmlinux 0xba3b3a86 seq_hex_dump +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba54455f md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0xba65020d padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xba6da29b kfree_skb_partial +EXPORT_SYMBOL vmlinux 0xba8ade49 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xbac3d67e mmc_flush_cache +EXPORT_SYMBOL vmlinux 0xbad98284 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xbade624e scsi_block_requests +EXPORT_SYMBOL vmlinux 0xbadf5da2 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xbae47c05 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb072f5e ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xbb0ae327 blk_register_region +EXPORT_SYMBOL vmlinux 0xbb11c9d1 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xbb2c5603 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xbb34134a iov_shorten +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb89585f get_agp_version +EXPORT_SYMBOL vmlinux 0xbb8c5db0 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbba70a2d _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xbbaeb559 memcg_socket_limit_enabled +EXPORT_SYMBOL vmlinux 0xbbd2036f __bio_clone_fast +EXPORT_SYMBOL vmlinux 0xbbd4e07b key_payload_reserve +EXPORT_SYMBOL vmlinux 0xbbeb1ec6 ioremap_wt +EXPORT_SYMBOL vmlinux 0xbc142db8 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xbc1a7c56 param_set_copystring +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc20d6aa fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xbc23360e neigh_seq_next +EXPORT_SYMBOL vmlinux 0xbc638c19 __blk_run_queue +EXPORT_SYMBOL vmlinux 0xbc65df25 dm_io +EXPORT_SYMBOL vmlinux 0xbcb35cb9 __vfs_read +EXPORT_SYMBOL vmlinux 0xbcbd2ddb input_unregister_device +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcf11079 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xbd01b6fb eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xbd09754f twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0xbd22ce45 loop_backing_file +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd6d79f1 __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0xbd7f2bc5 vfs_link +EXPORT_SYMBOL vmlinux 0xbd87bff9 agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbdaf5b07 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xbdc6b187 cpu_tss +EXPORT_SYMBOL vmlinux 0xbdcc6265 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0xbdde7a6f inet_stream_connect +EXPORT_SYMBOL vmlinux 0xbde61d52 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xbde70e44 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xbded2a34 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xbdf39147 simple_open +EXPORT_SYMBOL vmlinux 0xbdfa238f phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0xbdfb6dbb __fentry__ +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe20d36a bio_unmap_user +EXPORT_SYMBOL vmlinux 0xbe24d0c4 security_path_mknod +EXPORT_SYMBOL vmlinux 0xbe2f9307 dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0xbe30499b skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0xbe3146b6 amd_iommu_domain_direct_map +EXPORT_SYMBOL vmlinux 0xbe33a2e9 dev_deactivate +EXPORT_SYMBOL vmlinux 0xbe63846f copy_strings_kernel +EXPORT_SYMBOL vmlinux 0xbe678752 x86_dma_fallback_dev +EXPORT_SYMBOL vmlinux 0xbe75c174 vga_con +EXPORT_SYMBOL vmlinux 0xbe8a9f42 set_security_override +EXPORT_SYMBOL vmlinux 0xbeb8d102 pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0xbec282a6 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0xbec30d05 x86_match_cpu +EXPORT_SYMBOL vmlinux 0xbeda4626 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbefe67de md_cluster_mod +EXPORT_SYMBOL vmlinux 0xbf29d0a5 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xbf3670d0 dev_set_mtu +EXPORT_SYMBOL vmlinux 0xbf594923 phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0xbf59eb7a ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xbf6ecccb vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf8f7da6 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xbf97da31 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfdb835b iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xbfe1c15c jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xbfe6f427 _raw_spin_unlock_irq +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbff6024e dev_addr_flush +EXPORT_SYMBOL vmlinux 0xc0157947 down_read_trylock +EXPORT_SYMBOL vmlinux 0xc033a9a5 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0xc0356cd4 set_bh_page +EXPORT_SYMBOL vmlinux 0xc05e355f idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xc067f4bb poll_freewait +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc07c751e vc_resize +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc0996a8a blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0a4f17f vfs_rmdir +EXPORT_SYMBOL vmlinux 0xc0aa04a0 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0xc0abc0f2 __tcf_hash_release +EXPORT_SYMBOL vmlinux 0xc0cd3b13 ___ratelimit +EXPORT_SYMBOL vmlinux 0xc1061670 dump_emit +EXPORT_SYMBOL vmlinux 0xc15a44c6 memzero_explicit +EXPORT_SYMBOL vmlinux 0xc1625c6f crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xc1744dce agp_bind_memory +EXPORT_SYMBOL vmlinux 0xc18340c8 down_read +EXPORT_SYMBOL vmlinux 0xc18be15d xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xc1af2b9a put_cmsg +EXPORT_SYMBOL vmlinux 0xc1b48209 swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0xc1c0b052 simple_statfs +EXPORT_SYMBOL vmlinux 0xc1d31e0c inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc1f1716f bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xc203788a pcim_enable_device +EXPORT_SYMBOL vmlinux 0xc20f289c blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xc210c982 param_set_ushort +EXPORT_SYMBOL vmlinux 0xc21b419b grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xc22aa11b agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0xc237ce8f gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc245fa7c tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xc24eaee7 __pci_enable_wake +EXPORT_SYMBOL vmlinux 0xc273104f blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0xc27ff2ba inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0xc28879f6 filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2af3120 nla_append +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc31f0343 nd_pfn_validate +EXPORT_SYMBOL vmlinux 0xc3264d4c __starget_for_each_device +EXPORT_SYMBOL vmlinux 0xc34cc0b5 swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0xc35058ae __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xc350b4eb wrmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xc3966737 is_bad_inode +EXPORT_SYMBOL vmlinux 0xc39de4de generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 +EXPORT_SYMBOL vmlinux 0xc3ac36ff nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0xc3aeb985 vfs_unlink +EXPORT_SYMBOL vmlinux 0xc3b0a9f2 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xc3b78d9d udp_set_csum +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3d2c0cd __register_nls +EXPORT_SYMBOL vmlinux 0xc3e27e00 tcp_disconnect +EXPORT_SYMBOL vmlinux 0xc3ed1ebb param_ops_short +EXPORT_SYMBOL vmlinux 0xc439f23c xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xc43d6742 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xc441369a __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0xc451e86c bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xc482cbdb lro_receive_skb +EXPORT_SYMBOL vmlinux 0xc48307db lz4_decompress +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4add59b bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xc4b01d49 iterate_mounts +EXPORT_SYMBOL vmlinux 0xc4f2344c dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xc4f331c6 cpu_online_mask +EXPORT_SYMBOL vmlinux 0xc50604d6 touch_buffer +EXPORT_SYMBOL vmlinux 0xc5137552 x86_bios_cpu_apicid +EXPORT_SYMBOL vmlinux 0xc5215c6e netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xc528983a scsi_device_resume +EXPORT_SYMBOL vmlinux 0xc52c3f23 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc558530d profile_pc +EXPORT_SYMBOL vmlinux 0xc570e69a km_query +EXPORT_SYMBOL vmlinux 0xc5718826 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5caf21b abort_creds +EXPORT_SYMBOL vmlinux 0xc5d6811c scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0xc5d84324 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc62e09c3 iterate_dir +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc667e4dc security_path_chmod +EXPORT_SYMBOL vmlinux 0xc6720e69 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xc6772da2 radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0xc67db37a vga_put +EXPORT_SYMBOL vmlinux 0xc69977f8 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0xc69a5601 put_filp +EXPORT_SYMBOL vmlinux 0xc6a5e3d2 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0xc6ae0fd5 __napi_schedule +EXPORT_SYMBOL vmlinux 0xc6b27cc7 udp_seq_open +EXPORT_SYMBOL vmlinux 0xc6b368d3 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6e0b4b0 arp_send +EXPORT_SYMBOL vmlinux 0xc6f6dd90 sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0xc6f8b81b to_ndd +EXPORT_SYMBOL vmlinux 0xc702e2ca km_is_alive +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc72c23e4 release_firmware +EXPORT_SYMBOL vmlinux 0xc73f10f1 build_skb +EXPORT_SYMBOL vmlinux 0xc74431cf ata_print_version +EXPORT_SYMBOL vmlinux 0xc749ed50 sk_free +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc7591cf0 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xc75b05f7 tty_port_close_start +EXPORT_SYMBOL vmlinux 0xc7648204 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xc76ab71e devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0xc7717b1d acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc78fcb91 km_state_notify +EXPORT_SYMBOL vmlinux 0xc79407a3 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xc79bb4cb gen_pool_alloc +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7c112fa fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0xc7c12fbf blk_sync_queue +EXPORT_SYMBOL vmlinux 0xc7c75d42 scsi_print_result +EXPORT_SYMBOL vmlinux 0xc7cb92e7 get_user_pages +EXPORT_SYMBOL vmlinux 0xc7ddce9a kmem_cache_free +EXPORT_SYMBOL vmlinux 0xc7fcc5bf acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xc7ff94f2 mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0xc815137c single_open +EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0xc83f5cfc cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc85318e2 truncate_setsize +EXPORT_SYMBOL vmlinux 0xc854715d blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xc8581353 simple_transaction_set +EXPORT_SYMBOL vmlinux 0xc860e0d3 param_set_int +EXPORT_SYMBOL vmlinux 0xc862469b param_set_byte +EXPORT_SYMBOL vmlinux 0xc8642791 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xc8689cce ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xc872dcab kill_block_super +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc88074e4 block_write_end +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc8a5a76a ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0xc8a88969 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8e28e3b kernel_bind +EXPORT_SYMBOL vmlinux 0xc8e621e3 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xc8e926f9 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc94aa359 fddi_type_trans +EXPORT_SYMBOL vmlinux 0xc9533529 sock_recvmsg +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc96c635d neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xc9736bf7 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xc9748b44 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xc978479a xz_dec_run +EXPORT_SYMBOL vmlinux 0xc97a2685 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0xc98a9367 single_open_size +EXPORT_SYMBOL vmlinux 0xc98f553e nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc99f6aae dma_spin_lock +EXPORT_SYMBOL vmlinux 0xc9a49693 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xc9ace8bd security_mmap_file +EXPORT_SYMBOL vmlinux 0xc9fef317 add_wait_queue +EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy +EXPORT_SYMBOL vmlinux 0xca399774 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xca4d6313 pci_map_rom +EXPORT_SYMBOL vmlinux 0xca591fb6 inode_init_owner +EXPORT_SYMBOL vmlinux 0xca5ee09a vme_free_consistent +EXPORT_SYMBOL vmlinux 0xca832efe kmalloc_order +EXPORT_SYMBOL vmlinux 0xca8acc78 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xca8f1fa1 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xcaa0bc94 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xcab35d49 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xcacb9f83 md_reload_sb +EXPORT_SYMBOL vmlinux 0xcad3ba14 neigh_xmit +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb101bc3 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xcb13709e __skb_tx_hash +EXPORT_SYMBOL vmlinux 0xcb1a0571 phy_find_first +EXPORT_SYMBOL vmlinux 0xcb1b19b5 d_alloc +EXPORT_SYMBOL vmlinux 0xcb1dcfcc mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xcb343468 alloc_file +EXPORT_SYMBOL vmlinux 0xcb444f9c mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0xcb460c1f nvm_submit_io +EXPORT_SYMBOL vmlinux 0xcb5ad2a4 __register_chrdev +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb7dc89d md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xcb84ec95 tcp_filter +EXPORT_SYMBOL vmlinux 0xcb936989 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcb96845c set_disk_ro +EXPORT_SYMBOL vmlinux 0xcbae6c7a acpi_lid_notifier_unregister +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbd6d852 pnp_start_dev +EXPORT_SYMBOL vmlinux 0xcbec4bdf param_ops_long +EXPORT_SYMBOL vmlinux 0xcbee2d8c vfs_setpos +EXPORT_SYMBOL vmlinux 0xcc15d6e4 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xcc1c4aeb fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc4dd6d0 scsi_remove_host +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc527608 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0xcc652efa devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0xcc75d7d8 dev_mc_flush +EXPORT_SYMBOL vmlinux 0xcc82add3 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xcc838223 __pte2cachemode_tbl +EXPORT_SYMBOL vmlinux 0xcc87bc77 tty_register_device +EXPORT_SYMBOL vmlinux 0xcc8d3f4f acpi_os_execute +EXPORT_SYMBOL vmlinux 0xcc970f7f mount_nodev +EXPORT_SYMBOL vmlinux 0xcc9aa2a6 register_sysctl +EXPORT_SYMBOL vmlinux 0xccb0d76f amd_iommu_complete_ppr +EXPORT_SYMBOL vmlinux 0xccb68448 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccde6c15 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xcceee8d6 pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0xccf4f8ce path_noexec +EXPORT_SYMBOL vmlinux 0xcd02081e vga_switcheroo_register_client +EXPORT_SYMBOL vmlinux 0xcd20667a kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0xcd2236b4 reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd377549 skb_find_text +EXPORT_SYMBOL vmlinux 0xcd57f7b0 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xcd7140ec prepare_binprm +EXPORT_SYMBOL vmlinux 0xcd7ae39c ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0xcd838e1b poll_initwait +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdca60d3 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0xcddb0270 xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0xcdde2ac5 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xcdf7f7ae scsi_host_get +EXPORT_SYMBOL vmlinux 0xce044088 pagevec_lookup +EXPORT_SYMBOL vmlinux 0xce0e2d66 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce2c45cc wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xce31856b jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0xce447c63 vfs_iter_write +EXPORT_SYMBOL vmlinux 0xce4904a4 acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce67469d phy_start_aneg +EXPORT_SYMBOL vmlinux 0xce783737 pskb_expand_head +EXPORT_SYMBOL vmlinux 0xce7850e1 crc32_le_shift +EXPORT_SYMBOL vmlinux 0xce7f9a4f xen_biovec_phys_mergeable +EXPORT_SYMBOL vmlinux 0xce898423 read_cache_page +EXPORT_SYMBOL vmlinux 0xce9f3f4a skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceae504f cmdline_parts_free +EXPORT_SYMBOL vmlinux 0xcec3e99b abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xceeee392 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf0a8b2d pipe_unlock +EXPORT_SYMBOL vmlinux 0xcf2b1caf input_inject_event +EXPORT_SYMBOL vmlinux 0xcf2b8230 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xcf53557c __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0xcf5a1a11 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0xcf62b51c md_unregister_thread +EXPORT_SYMBOL vmlinux 0xcf6cfe1f msrs_free +EXPORT_SYMBOL vmlinux 0xcf76b851 vga_switcheroo_init_domain_pm_ops +EXPORT_SYMBOL vmlinux 0xcfa1208a vfs_read +EXPORT_SYMBOL vmlinux 0xcfb4a296 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xcfd4fa9f dev_alert +EXPORT_SYMBOL vmlinux 0xd00e42da generic_delete_inode +EXPORT_SYMBOL vmlinux 0xd014bbbf nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0xd0181dc7 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xd022bf9d key_task_permission +EXPORT_SYMBOL vmlinux 0xd02abf2b replace_mount_options +EXPORT_SYMBOL vmlinux 0xd035c3b9 ppp_input_error +EXPORT_SYMBOL vmlinux 0xd0493e66 sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0xd054bc52 dev_change_flags +EXPORT_SYMBOL vmlinux 0xd0565f39 I_BDEV +EXPORT_SYMBOL vmlinux 0xd05c70b4 import_iovec +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd08b19f2 copy_to_iter +EXPORT_SYMBOL vmlinux 0xd08f6239 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0ea3b13 xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f32c4e sock_no_accept +EXPORT_SYMBOL vmlinux 0xd0f358ee scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd0ffc396 i8042_install_filter +EXPORT_SYMBOL vmlinux 0xd10d11ca mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0xd11f66ba set_anon_super +EXPORT_SYMBOL vmlinux 0xd1301740 scsi_host_put +EXPORT_SYMBOL vmlinux 0xd14b778c skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0xd1652a93 acpi_info +EXPORT_SYMBOL vmlinux 0xd172e44c crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0xd178ff70 vm_stat +EXPORT_SYMBOL vmlinux 0xd17fc2e2 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd1911b1d elevator_exit +EXPORT_SYMBOL vmlinux 0xd1acddb2 tcp_splice_read +EXPORT_SYMBOL vmlinux 0xd1af29ee padata_remove_cpu +EXPORT_SYMBOL vmlinux 0xd1b56d94 downgrade_write +EXPORT_SYMBOL vmlinux 0xd1d86523 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1dd67c6 nvm_register_mgr +EXPORT_SYMBOL vmlinux 0xd1f5d729 vfs_symlink +EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings +EXPORT_SYMBOL vmlinux 0xd2064e2f idr_replace +EXPORT_SYMBOL vmlinux 0xd20f3020 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xd2194e8b blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0xd22215ca down_write +EXPORT_SYMBOL vmlinux 0xd22daee2 ppp_unit_number +EXPORT_SYMBOL vmlinux 0xd2343054 inet_register_protosw +EXPORT_SYMBOL vmlinux 0xd242a61b elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0xd247a236 audit_log +EXPORT_SYMBOL vmlinux 0xd24d0494 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd2916c6a simple_unlink +EXPORT_SYMBOL vmlinux 0xd2ad5f5e inet_frags_fini +EXPORT_SYMBOL vmlinux 0xd2b09ce5 __kmalloc +EXPORT_SYMBOL vmlinux 0xd2bb6c4d xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2fe0616 tcp_sendpage +EXPORT_SYMBOL vmlinux 0xd310d7d4 rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0xd34cf56c tcp_shutdown +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd3719d59 paravirt_ticketlocks_enabled +EXPORT_SYMBOL vmlinux 0xd3ad96a3 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3cf2cde mdiobus_unregister +EXPORT_SYMBOL vmlinux 0xd40a1592 skb_store_bits +EXPORT_SYMBOL vmlinux 0xd439b5c1 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xd453af12 revert_creds +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd4b4f75e blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0xd4f697a1 input_allocate_device +EXPORT_SYMBOL vmlinux 0xd50fef48 acpi_detach_data +EXPORT_SYMBOL vmlinux 0xd53b6c37 bd_set_size +EXPORT_SYMBOL vmlinux 0xd5480e6b mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0xd548dc1d security_d_instantiate +EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0xd563bf04 vfs_mknod +EXPORT_SYMBOL vmlinux 0xd586e77b clk_get +EXPORT_SYMBOL vmlinux 0xd587c2c7 mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd5c265c6 n_tty_compat_ioctl_helper +EXPORT_SYMBOL vmlinux 0xd5db75bd i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0xd5f41d60 dcb_getapp +EXPORT_SYMBOL vmlinux 0xd5f61fa6 page_cache_next_hole +EXPORT_SYMBOL vmlinux 0xd5fd4566 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0xd6068bf4 simple_getattr +EXPORT_SYMBOL vmlinux 0xd60dad12 seq_open +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd620e580 blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0xd623af83 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0xd627cb65 blk_complete_request +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd62c83d4 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xd6419547 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd64eefa0 drop_nlink +EXPORT_SYMBOL vmlinux 0xd65b8b85 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xd66b7a03 lookup_one_len +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68cad4d cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0xd68e1d1b _raw_read_trylock +EXPORT_SYMBOL vmlinux 0xd6a1455e security_file_permission +EXPORT_SYMBOL vmlinux 0xd6aed5d0 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0xd6b2d0c8 path_put +EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace +EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz +EXPORT_SYMBOL vmlinux 0xd6d9a087 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0xd6de7073 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xd6dfeb9e jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6f644a8 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xd6fd5621 lwtunnel_input +EXPORT_SYMBOL vmlinux 0xd71c0b5f serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0xd7270c0d sock_wfree +EXPORT_SYMBOL vmlinux 0xd730959d seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xd7389705 pci_get_subsys +EXPORT_SYMBOL vmlinux 0xd75374ad pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd772377b posix_unblock_lock +EXPORT_SYMBOL vmlinux 0xd798de2e done_path_create +EXPORT_SYMBOL vmlinux 0xd7a29ea0 neigh_destroy +EXPORT_SYMBOL vmlinux 0xd7b82846 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0xd7ce11d3 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0xd7ce9c85 pci_request_region +EXPORT_SYMBOL vmlinux 0xd7db1dbf inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7ee926a inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0xd82833b3 vga_switcheroo_get_client_state +EXPORT_SYMBOL vmlinux 0xd833db80 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xd8444c1f bio_integrity_free +EXPORT_SYMBOL vmlinux 0xd86a8a4d netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b4b598 rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0xd8b78d2d pcie_get_mps +EXPORT_SYMBOL vmlinux 0xd8d42968 register_quota_format +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd9091363 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0xd90c2c2f tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xd90d65e0 nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0xd910d8df atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xd9238f28 from_kgid +EXPORT_SYMBOL vmlinux 0xd92e2dca tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xd94322e7 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0xd948aece register_netdevice +EXPORT_SYMBOL vmlinux 0xd956f6b5 dquot_destroy +EXPORT_SYMBOL vmlinux 0xd969b2c7 amd_e400_c1e_detected +EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu +EXPORT_SYMBOL vmlinux 0xd9810f07 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd990d62c is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0xd9a03b9c netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xd9aa566a inet_sendmsg +EXPORT_SYMBOL vmlinux 0xd9c67fa9 cpu_info +EXPORT_SYMBOL vmlinux 0xd9c6f6bc tcp_proc_register +EXPORT_SYMBOL vmlinux 0xd9d3bcd3 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9e20c7c phy_start_interrupts +EXPORT_SYMBOL vmlinux 0xd9ec2f95 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xd9ee6733 simple_dname +EXPORT_SYMBOL vmlinux 0xda02e13f skb_vlan_untag +EXPORT_SYMBOL vmlinux 0xda1d0c1a stop_tty +EXPORT_SYMBOL vmlinux 0xda34ff46 inode_init_always +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda42fd16 __page_symlink +EXPORT_SYMBOL vmlinux 0xda65d1f4 netif_skb_features +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda9fc7ae kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0xdab932b0 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdad6853f skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xdae80100 _raw_spin_unlock +EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell +EXPORT_SYMBOL vmlinux 0xdb026db4 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0xdb0e4776 md_flush_request +EXPORT_SYMBOL vmlinux 0xdb12d8a2 iov_iter_init +EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg +EXPORT_SYMBOL vmlinux 0xdb28a39d unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xdb2e540a blk_init_queue_node +EXPORT_SYMBOL vmlinux 0xdb3bcca6 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0xdb3d2994 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xdb40760c unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xdb4604c6 phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0xdb47f4cd blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb8d7a2f dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xdb8e7ddb sget_userns +EXPORT_SYMBOL vmlinux 0xdb953c57 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0xdbaf8b71 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xdbb12a20 pci_dev_driver +EXPORT_SYMBOL vmlinux 0xdbc65abc invalidate_partition +EXPORT_SYMBOL vmlinux 0xdbff6351 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc22e69e sock_kfree_s +EXPORT_SYMBOL vmlinux 0xdc30f707 pnp_get_resource +EXPORT_SYMBOL vmlinux 0xdc3c41a8 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xdc3d0afb dmam_pool_create +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc498feb genphy_update_link +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc573cd4 mmc_detect_change +EXPORT_SYMBOL vmlinux 0xdc57f532 acpi_install_gpe_handler +EXPORT_SYMBOL vmlinux 0xdc5e0904 alloc_disk_node +EXPORT_SYMBOL vmlinux 0xdc5f5da8 lockref_put_return +EXPORT_SYMBOL vmlinux 0xdc699032 pci_save_state +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdccf131f __scm_destroy +EXPORT_SYMBOL vmlinux 0xdce04084 get_io_context +EXPORT_SYMBOL vmlinux 0xdce2fbf0 lru_cache_add_file +EXPORT_SYMBOL vmlinux 0xdcedb4f3 sg_miter_start +EXPORT_SYMBOL vmlinux 0xdd0df62c i2c_master_recv +EXPORT_SYMBOL vmlinux 0xdd3ba0da locks_free_lock +EXPORT_SYMBOL vmlinux 0xdd42952b nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0xdd5f27d4 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd6b2358 input_set_keycode +EXPORT_SYMBOL vmlinux 0xdd87df2d xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xdd8e2174 blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xddb583f6 gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0xdddb28a2 seq_puts +EXPORT_SYMBOL vmlinux 0xdde09e37 compat_nf_setsockopt +EXPORT_SYMBOL vmlinux 0xddea2e78 nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0xddef0ae2 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0xde055136 nonseekable_open +EXPORT_SYMBOL vmlinux 0xde0c5bc7 sock_alloc_file +EXPORT_SYMBOL vmlinux 0xde0e4903 padata_stop +EXPORT_SYMBOL vmlinux 0xde11516a sock_kmalloc +EXPORT_SYMBOL vmlinux 0xde11ccd7 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xde16dc16 tboot +EXPORT_SYMBOL vmlinux 0xde17c7b0 kaiser_enabled +EXPORT_SYMBOL vmlinux 0xde1ef4d4 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xde389503 __alloc_skb +EXPORT_SYMBOL vmlinux 0xde4235e0 __napi_complete +EXPORT_SYMBOL vmlinux 0xde45bd2f zpool_register_driver +EXPORT_SYMBOL vmlinux 0xde6033c9 bio_chain +EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0xde709c92 vfs_write +EXPORT_SYMBOL vmlinux 0xde7acca2 phy_init_eee +EXPORT_SYMBOL vmlinux 0xde8bdc09 empty_aops +EXPORT_SYMBOL vmlinux 0xde8fa1a7 dev_uc_init +EXPORT_SYMBOL vmlinux 0xde912354 sk_reset_timer +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde9ac0fb nd_btt_probe +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdead93b5 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xdec51a53 vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0xdedac7ef agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0xdedb6611 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0xdeee66a2 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0xdf0da3cc acpi_get_devices +EXPORT_SYMBOL vmlinux 0xdf12a927 acpi_check_dsm +EXPORT_SYMBOL vmlinux 0xdf1427e5 idr_remove +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf5367fb __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf5b1698 seq_vprintf +EXPORT_SYMBOL vmlinux 0xdf5d7e22 agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0xdf5feada ipv4_specific +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf716457 free_user_ns +EXPORT_SYMBOL vmlinux 0xdf785418 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf9afac6 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xdfba7ea7 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init +EXPORT_SYMBOL vmlinux 0xdfd3a075 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0xdff66710 nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xe00bd6bc dquot_disable +EXPORT_SYMBOL vmlinux 0xe00d2f3f nf_log_set +EXPORT_SYMBOL vmlinux 0xe034f953 page_readlink +EXPORT_SYMBOL vmlinux 0xe03f153e try_to_release_page +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe081680e pcie_get_readrq +EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe087f8b6 simple_empty +EXPORT_SYMBOL vmlinux 0xe0918dc9 bprm_change_interp +EXPORT_SYMBOL vmlinux 0xe0ac8bd2 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0caf778 dquot_quota_on +EXPORT_SYMBOL vmlinux 0xe0cc4470 vlan_vid_del +EXPORT_SYMBOL vmlinux 0xe0ccb770 dst_destroy +EXPORT_SYMBOL vmlinux 0xe0d8f9ae devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0xe0fee085 neigh_seq_start +EXPORT_SYMBOL vmlinux 0xe1059f03 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xe108f343 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe17d78b5 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xe19f3baa mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xe1a31d5b check_disk_size_change +EXPORT_SYMBOL vmlinux 0xe1b26b44 set_groups +EXPORT_SYMBOL vmlinux 0xe1bde4cc con_copy_unimap +EXPORT_SYMBOL vmlinux 0xe1bf84b7 d_make_root +EXPORT_SYMBOL vmlinux 0xe1c54c49 default_file_splice_read +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe20372ae radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0xe212887f inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0xe221df57 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0xe23a5101 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe23c3139 i2c_release_client +EXPORT_SYMBOL vmlinux 0xe247cf4f input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe259ae9e _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xe25d9601 blk_end_request +EXPORT_SYMBOL vmlinux 0xe27283db pnp_device_detach +EXPORT_SYMBOL vmlinux 0xe298a062 param_ops_uint +EXPORT_SYMBOL vmlinux 0xe29b04e9 acpi_set_firmware_waking_vector64 +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2a5a525 arp_create +EXPORT_SYMBOL vmlinux 0xe2ac1905 bio_copy_data +EXPORT_SYMBOL vmlinux 0xe2b46958 amd_iommu_domain_clear_gcr3 +EXPORT_SYMBOL vmlinux 0xe2cbf007 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xe2cdc763 udp_ioctl +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2e21fbd tcf_exts_change +EXPORT_SYMBOL vmlinux 0xe2f0cefd arch_dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe317764d jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0xe319eb24 acpi_pci_osc_control_set +EXPORT_SYMBOL vmlinux 0xe334bb8c max8998_write_reg +EXPORT_SYMBOL vmlinux 0xe3399a75 native_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0xe3532760 __nlmsg_put +EXPORT_SYMBOL vmlinux 0xe35d2a38 neigh_app_ns +EXPORT_SYMBOL vmlinux 0xe3687937 proc_set_user +EXPORT_SYMBOL vmlinux 0xe372e8f9 blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0xe37a7a8e skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0xe3a53f4c sort +EXPORT_SYMBOL vmlinux 0xe3aa9378 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3c6a99c netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xe3cef790 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3da2383 tty_write_room +EXPORT_SYMBOL vmlinux 0xe3e6902c set_device_ro +EXPORT_SYMBOL vmlinux 0xe40b3c43 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xe40dc306 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0xe44aecfb find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xe45fe0af clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xe4662452 elv_add_request +EXPORT_SYMBOL vmlinux 0xe46cdc45 nf_ct_attach +EXPORT_SYMBOL vmlinux 0xe4753372 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0xe484b4ab tcp_req_err +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe4950f82 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0xe49baaee follow_down +EXPORT_SYMBOL vmlinux 0xe4a4b009 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0xe4c20891 dquot_scan_active +EXPORT_SYMBOL vmlinux 0xe4ca259a dmam_free_coherent +EXPORT_SYMBOL vmlinux 0xe4dcfded pci_enable_device_io +EXPORT_SYMBOL vmlinux 0xe4e3fab7 uart_update_timeout +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4eaab2e t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xe502e5f3 ether_setup +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe52eb8e7 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xe530d757 acpi_clear_gpe +EXPORT_SYMBOL vmlinux 0xe531ac3b tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xe5558cad kernel_connect +EXPORT_SYMBOL vmlinux 0xe575732b dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe5815f8a _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe588895e blk_mq_all_tag_busy_iter +EXPORT_SYMBOL vmlinux 0xe594d17b mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xe5b1c388 register_shrinker +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5ca7cd6 mount_subtree +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe6162877 down_killable +EXPORT_SYMBOL vmlinux 0xe6426153 ihold +EXPORT_SYMBOL vmlinux 0xe64d98fe rdmsr_safe_regs +EXPORT_SYMBOL vmlinux 0xe65a73d7 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xe67221ab nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0xe683b83d blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe69a9df4 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe6a34955 setup_new_exec +EXPORT_SYMBOL vmlinux 0xe6a3e811 phy_start +EXPORT_SYMBOL vmlinux 0xe6a5a1aa nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xe6fa60a6 bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe708c67e led_blink_set +EXPORT_SYMBOL vmlinux 0xe716baed acpi_unregister_ioapic +EXPORT_SYMBOL vmlinux 0xe71f28b4 nf_log_unregister +EXPORT_SYMBOL vmlinux 0xe7470ad9 dev_printk_emit +EXPORT_SYMBOL vmlinux 0xe749c52c md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xe74ba8d3 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xe767da1f twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0xe7790f5e generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0xe77d416d blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xe78eb6c9 scsi_device_get +EXPORT_SYMBOL vmlinux 0xe79d0cc8 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xe7a504f6 key_unlink +EXPORT_SYMBOL vmlinux 0xe7a586b5 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7ad3ecf mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0xe7bc3482 dm_put_table_device +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7d736de netdev_emerg +EXPORT_SYMBOL vmlinux 0xe7e93f16 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xe7f3f51a __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0xe8033384 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe862153b d_lookup +EXPORT_SYMBOL vmlinux 0xe8731918 x86_hyper_xen +EXPORT_SYMBOL vmlinux 0xe877e13b seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss +EXPORT_SYMBOL vmlinux 0xe88a1f09 phy_register_fixup +EXPORT_SYMBOL vmlinux 0xe893e2bb unlock_rename +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8ad9269 vme_irq_request +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8d3fce5 devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0xe8db8dd2 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xe8ece1e8 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xe8ef0ff0 current_kernel_time64 +EXPORT_SYMBOL vmlinux 0xe90be5f3 console_stop +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe92135af input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0xe92b512d dm_put_device +EXPORT_SYMBOL vmlinux 0xe9313d80 arp_tbl +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0xe9772a88 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xe996c25d security_path_mkdir +EXPORT_SYMBOL vmlinux 0xe997667b wrmsr_on_cpu +EXPORT_SYMBOL vmlinux 0xe9a3ddcd __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xe9ac774c led_blink_set_oneshot +EXPORT_SYMBOL vmlinux 0xe9acfac4 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0xe9adfd85 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xe9dac6f5 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea0ced12 mem_cgroup_begin_page_stat +EXPORT_SYMBOL vmlinux 0xea10048f devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0xea11b977 processors +EXPORT_SYMBOL vmlinux 0xea1c7dfa arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0xea37524e iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0xea3f725d _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0xea76371a __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xea7b8a44 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xea7cf94e mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0xea90bdd3 acpi_attach_data +EXPORT_SYMBOL vmlinux 0xea99e9a4 do_truncate +EXPORT_SYMBOL vmlinux 0xeab77bf8 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0xeac542cf pci_add_new_bus +EXPORT_SYMBOL vmlinux 0xeac73847 irq_regs +EXPORT_SYMBOL vmlinux 0xead626c8 migrate_page_copy +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeaedb49b agp_generic_enable +EXPORT_SYMBOL vmlinux 0xeaf3462d blkdev_put +EXPORT_SYMBOL vmlinux 0xeb02f4eb udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xeb1b20a8 igrab +EXPORT_SYMBOL vmlinux 0xeb1cce94 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb5d2fb5 netif_napi_add +EXPORT_SYMBOL vmlinux 0xeb5e0f0f skb_trim +EXPORT_SYMBOL vmlinux 0xeb8700ce sk_ns_capable +EXPORT_SYMBOL vmlinux 0xeb9f564f mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xeba85c7a blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xebaba91b netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0xebac74d8 cdrom_release +EXPORT_SYMBOL vmlinux 0xebb67fc2 skb_checksum +EXPORT_SYMBOL vmlinux 0xebbe266b vga_tryget +EXPORT_SYMBOL vmlinux 0xebf5cb00 __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0xebff5cf5 fence_signal_locked +EXPORT_SYMBOL vmlinux 0xec1b975b param_ops_int +EXPORT_SYMBOL vmlinux 0xec1fdfa4 devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0xec29ed5a i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec591803 pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0xec59ee37 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0xec5ce167 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xec9646cd netdev_printk +EXPORT_SYMBOL vmlinux 0xecac8407 __memcpy +EXPORT_SYMBOL vmlinux 0xecaeeae0 skb_free_datagram +EXPORT_SYMBOL vmlinux 0xecbf4bd2 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0xeccd3e0c acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xece2b6bd eth_header_parse +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node +EXPORT_SYMBOL vmlinux 0xed0558d7 dquot_resume +EXPORT_SYMBOL vmlinux 0xed0d6708 agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0xed1b9bea vga_get +EXPORT_SYMBOL vmlinux 0xed20168a jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xed4bce1c nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed7a2275 __bread_gfp +EXPORT_SYMBOL vmlinux 0xed7ec9e6 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xedb9903f param_set_long +EXPORT_SYMBOL vmlinux 0xedba6876 __register_binfmt +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc62a37 blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0xede68339 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xedefc01a phy_attach_direct +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xedf7ab08 pci_disable_msi +EXPORT_SYMBOL vmlinux 0xedfcc439 pci_iomap_range +EXPORT_SYMBOL vmlinux 0xee0377e5 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xee0dcd01 param_get_ushort +EXPORT_SYMBOL vmlinux 0xee1b50e8 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0xee1e9f23 fd_install +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee3c00fc tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xee3e5e4e __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xee4a7d80 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee80bbdf abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0xee814ad1 compat_sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xee8fb824 find_vma +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xeea3cd7a nla_reserve +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeb92510 parent_mem_cgroup +EXPORT_SYMBOL vmlinux 0xeec2c7cf ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xeef427cb lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0xef021fff init_net +EXPORT_SYMBOL vmlinux 0xef227b1e nvm_erase_blk +EXPORT_SYMBOL vmlinux 0xef2a00c6 bio_put +EXPORT_SYMBOL vmlinux 0xef47c4b2 skb_copy_expand +EXPORT_SYMBOL vmlinux 0xef609be9 generic_writepages +EXPORT_SYMBOL vmlinux 0xef873024 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0xef887695 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0xef9673a9 __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override +EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xefd66947 touch_atime +EXPORT_SYMBOL vmlinux 0xefd9d31e __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xefda8d99 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefe099c3 acpi_get_event_status +EXPORT_SYMBOL vmlinux 0xeff4d5bb ppp_channel_index +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf00cbc85 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xf017120d blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf0356e5b kernel_read +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf062576b ucs2_utf8size +EXPORT_SYMBOL vmlinux 0xf06556e4 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be +EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0xf08242c2 finish_wait +EXPORT_SYMBOL vmlinux 0xf08ba178 flow_cache_lookup +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf09dcb6f ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf0a2820b prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xf0a8237a radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xf0adef22 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xf0c6e15e mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0xf0d763a5 inode_init_once +EXPORT_SYMBOL vmlinux 0xf0eaffce _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf10684c1 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xf10c41b4 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 +EXPORT_SYMBOL vmlinux 0xf11543ff find_first_zero_bit +EXPORT_SYMBOL vmlinux 0xf116d4b5 copy_in_user +EXPORT_SYMBOL vmlinux 0xf1234148 blk_put_request +EXPORT_SYMBOL vmlinux 0xf12fcc13 km_new_mapping +EXPORT_SYMBOL vmlinux 0xf1333ab0 pci_platform_rom +EXPORT_SYMBOL vmlinux 0xf137c90f alloc_anon_inode +EXPORT_SYMBOL vmlinux 0xf1398e2e lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0xf13bc7cb __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xf13e7b39 __inode_permission +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf1620c25 blk_requeue_request +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1afe392 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0xf1b3b399 __inet_hash +EXPORT_SYMBOL vmlinux 0xf1b405ea xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1f398ab override_creds +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf21355eb update_devfreq +EXPORT_SYMBOL vmlinux 0xf217726d __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xf229121d blk_start_queue_async +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf2453283 dev_close +EXPORT_SYMBOL vmlinux 0xf2796e33 simple_transaction_read +EXPORT_SYMBOL vmlinux 0xf28ed6e2 machine_to_phys_nr +EXPORT_SYMBOL vmlinux 0xf2975262 bio_split +EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered +EXPORT_SYMBOL vmlinux 0xf2a2b163 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0xf2a9e465 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xf2af682d __dquot_transfer +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2cb4699 vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0xf2d615fd blk_alloc_queue +EXPORT_SYMBOL vmlinux 0xf2dda68f dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0xf2fa8ce6 cdev_add +EXPORT_SYMBOL vmlinux 0xf312cb9d ucs2_strsize +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf32c6e2d tty_unlock +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf3496180 kill_anon_super +EXPORT_SYMBOL vmlinux 0xf350ed10 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0xf3516490 d_add_ci +EXPORT_SYMBOL vmlinux 0xf35321cf devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf36906b7 softnet_data +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf38bc082 iget5_locked +EXPORT_SYMBOL vmlinux 0xf38fb795 dqget +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf395d660 genphy_suspend +EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xf3986b06 acpi_os_map_generic_address +EXPORT_SYMBOL vmlinux 0xf3afe9ee dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xf3b0f85a ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0xf3bcdd7d del_random_ready_callback +EXPORT_SYMBOL vmlinux 0xf3bfe648 inet_recvmsg +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3f4804c abx500_remove_ops +EXPORT_SYMBOL vmlinux 0xf3f82ecf compat_tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xf3fa2585 input_release_device +EXPORT_SYMBOL vmlinux 0xf3fb95a4 compat_sock_get_timestamp +EXPORT_SYMBOL vmlinux 0xf41185dd fs_bio_set +EXPORT_SYMBOL vmlinux 0xf412a451 set_wb_congested +EXPORT_SYMBOL vmlinux 0xf41b2907 vme_slot_num +EXPORT_SYMBOL vmlinux 0xf42fcfab __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0xf435cb2f uart_match_port +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf4440537 kernel_getpeername +EXPORT_SYMBOL vmlinux 0xf44d7a67 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0xf453f832 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0xf45e6ab7 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf47818ca netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xf4a5c213 avail_to_resrv_perfctr_nmi_bit +EXPORT_SYMBOL vmlinux 0xf4a764f5 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4c8b9e7 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0xf4cec2f2 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4f5aa42 simple_fill_super +EXPORT_SYMBOL vmlinux 0xf4fe736a vme_dma_request +EXPORT_SYMBOL vmlinux 0xf4ffbede pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0xf5138c3c agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0xf51ae235 touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xf51bf88b nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xf536d22e acpi_set_gpe_wake_mask +EXPORT_SYMBOL vmlinux 0xf53ad062 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf54ae6f4 tso_count_descs +EXPORT_SYMBOL vmlinux 0xf5689f27 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xf572f2bb netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xf57e9666 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0xf5971526 bioset_create +EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set +EXPORT_SYMBOL vmlinux 0xf5b10e67 acpi_install_global_event_handler +EXPORT_SYMBOL vmlinux 0xf5c1c485 dup_iter +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5deee22 fddi_change_mtu +EXPORT_SYMBOL vmlinux 0xf5e82cfd fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf5ecc9fe lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0xf5fc2c0f inet_frags_init +EXPORT_SYMBOL vmlinux 0xf6130c12 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xf61c3662 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0xf62fb602 keyring_clear +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf643c1f2 kill_fasync +EXPORT_SYMBOL vmlinux 0xf65382a9 lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf67a4f6c pci_fixup_device +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xf693a145 irq_stat +EXPORT_SYMBOL vmlinux 0xf699984e kobject_put +EXPORT_SYMBOL vmlinux 0xf6b52d2b mfd_add_devices +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6bc3df9 fsnotify_get_group +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf7013ac0 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0xf7208475 key_reject_and_link +EXPORT_SYMBOL vmlinux 0xf727fade tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xf72e1811 param_set_ulong +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf764868a udplite_table +EXPORT_SYMBOL vmlinux 0xf7769e78 simple_dir_operations +EXPORT_SYMBOL vmlinux 0xf77913ff jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xf77d324b iget_failed +EXPORT_SYMBOL vmlinux 0xf77eb393 bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0xf78b290b posix_lock_file +EXPORT_SYMBOL vmlinux 0xf79e97cd acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0xf7c9e6a1 registered_fb +EXPORT_SYMBOL vmlinux 0xf7d66b20 address_space_init_once +EXPORT_SYMBOL vmlinux 0xf7db0172 vfs_whiteout +EXPORT_SYMBOL vmlinux 0xf7e7a9fa ps2_command +EXPORT_SYMBOL vmlinux 0xf80cd7e4 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf81c27f0 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82d33a4 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf8539e93 framebuffer_release +EXPORT_SYMBOL vmlinux 0xf87f0412 sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xf88e0ee2 acpi_get_table_header +EXPORT_SYMBOL vmlinux 0xf8908451 register_console +EXPORT_SYMBOL vmlinux 0xf8b3b184 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xf8d04f09 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0xf8d099f1 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xf8d5108e input_set_capability +EXPORT_SYMBOL vmlinux 0xf8dd41d9 tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0xf8de2313 tcf_hash_create +EXPORT_SYMBOL vmlinux 0xf8e652cc tcp_release_cb +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf8f777c7 param_set_bint +EXPORT_SYMBOL vmlinux 0xf904e327 padata_free +EXPORT_SYMBOL vmlinux 0xf908dce4 uart_register_driver +EXPORT_SYMBOL vmlinux 0xf92c2ab6 fb_find_mode +EXPORT_SYMBOL vmlinux 0xf93e99d4 init_buffer +EXPORT_SYMBOL vmlinux 0xf941b411 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0xf944fb76 netlink_ack +EXPORT_SYMBOL vmlinux 0xf97c49ec nvm_register +EXPORT_SYMBOL vmlinux 0xf99350f9 simple_setattr +EXPORT_SYMBOL vmlinux 0xf996dbab phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0xf9a07397 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9d53ebe __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xf9ea3a86 sg_miter_stop +EXPORT_SYMBOL vmlinux 0xf9f664ad add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0xfa03d4f6 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0xfa14cc3c blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xfa1687b6 elevator_init +EXPORT_SYMBOL vmlinux 0xfa1ca269 pci_select_bars +EXPORT_SYMBOL vmlinux 0xfa3088a3 netif_carrier_on +EXPORT_SYMBOL vmlinux 0xfa454265 __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa703090 page_put_link +EXPORT_SYMBOL vmlinux 0xfa8625e7 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xfa981d08 swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xfaab804a scsi_print_command +EXPORT_SYMBOL vmlinux 0xfab334e4 proto_register +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL vmlinux 0xfaf029a7 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xfaff1f47 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xfb0443fb acpi_get_parent +EXPORT_SYMBOL vmlinux 0xfb099ada devm_ioremap +EXPORT_SYMBOL vmlinux 0xfb2146d3 alloc_xenballooned_pages +EXPORT_SYMBOL vmlinux 0xfb28de91 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0xfb31d100 skb_queue_head +EXPORT_SYMBOL vmlinux 0xfb337420 agp_backend_acquire +EXPORT_SYMBOL vmlinux 0xfb507276 vga_switcheroo_client_fb_set +EXPORT_SYMBOL vmlinux 0xfb578fc5 memset +EXPORT_SYMBOL vmlinux 0xfb691d2f gen_pool_free +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb6f05e3 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0xfb78d136 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xfb80c7a0 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfb95753a scsi_register_driver +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbcc20b3 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xfbcec7f1 inet_accept +EXPORT_SYMBOL vmlinux 0xfbd676c6 seq_printf +EXPORT_SYMBOL vmlinux 0xfbf36c4f flow_cache_init +EXPORT_SYMBOL vmlinux 0xfbf43652 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc0fc8d8 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xfc19b939 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3d2b66 get_cached_acl +EXPORT_SYMBOL vmlinux 0xfc734327 queued_read_lock_slowpath +EXPORT_SYMBOL vmlinux 0xfc872fd1 get_ibs_caps +EXPORT_SYMBOL vmlinux 0xfc8793c3 devm_release_resource +EXPORT_SYMBOL vmlinux 0xfc898f20 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xfc8bf4a1 genphy_read_status +EXPORT_SYMBOL vmlinux 0xfcac0d40 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0xfcb2a56f pci_dev_put +EXPORT_SYMBOL vmlinux 0xfcb926cd kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xfcbb620d dquot_acquire +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcee0ae4 iget_locked +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfd0a3b95 param_get_int +EXPORT_SYMBOL vmlinux 0xfd213cf9 __frontswap_test +EXPORT_SYMBOL vmlinux 0xfd527b3b dev_get_iflink +EXPORT_SYMBOL vmlinux 0xfd687efb sock_i_uid +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfd9ca86d vme_dma_list_add +EXPORT_SYMBOL vmlinux 0xfda281e9 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0xfdc4dec9 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0xfded3019 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xfdfb792f amd_iommu_pc_supported +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfdfd6c90 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe047ce6 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0xfe113a52 rt6_lookup +EXPORT_SYMBOL vmlinux 0xfe13c522 acpi_install_gpe_raw_handler +EXPORT_SYMBOL vmlinux 0xfe17047b kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0xfe19480f skb_queue_tail +EXPORT_SYMBOL vmlinux 0xfe252fe3 d_prune_aliases +EXPORT_SYMBOL vmlinux 0xfe26fc7c nr_node_ids +EXPORT_SYMBOL vmlinux 0xfe44a191 inet_del_protocol +EXPORT_SYMBOL vmlinux 0xfe5d30e9 _raw_write_trylock +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe682de2 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0xfe7456a8 set_nlink +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe7ef0a8 xfrm_init_state +EXPORT_SYMBOL vmlinux 0xfe82ef95 tty_throttle +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 +EXPORT_SYMBOL vmlinux 0xfeacab87 check_disk_change +EXPORT_SYMBOL vmlinux 0xfeb8e028 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0xfed3a8a6 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfee8a2c3 sock_no_connect +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfef2c78f idr_get_next +EXPORT_SYMBOL vmlinux 0xff028791 seq_putc +EXPORT_SYMBOL vmlinux 0xff14f09d kaiser_flush_tlb_on_return_to_user +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff2c0e32 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xff2fc45d redraw_screen +EXPORT_SYMBOL vmlinux 0xff32d82d page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xff361c07 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xff4b78a3 vm_insert_pfn +EXPORT_SYMBOL vmlinux 0xff4c55f5 dump_align +EXPORT_SYMBOL vmlinux 0xff642b3d sk_alloc +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff6b0bdf __cleancache_put_page +EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource +EXPORT_SYMBOL vmlinux 0xff81416f devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xffa355d1 __register_nmi_handler +EXPORT_SYMBOL vmlinux 0xffbf945e ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xffc02836 __blk_end_request_all +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffde34ee nd_region_to_nstype +EXPORT_SYMBOL_GPL arch/x86/crypto/aes-x86_64 0x7060bf0a crypto_aes_encrypt_x86 +EXPORT_SYMBOL_GPL arch/x86/crypto/aes-x86_64 0xe409b491 crypto_aes_decrypt_x86 +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x13a65ecf camellia_ecb_enc_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x17bf48dc camellia_xts_dec_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x1a08ded1 camellia_xts_enc +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x47129015 camellia_xts_enc_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x7d54edc2 camellia_cbc_dec_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x7e87ef55 camellia_ecb_dec_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x8f185793 camellia_xts_dec +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x9e8086dc camellia_ctr_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x11b3de9f xts_camellia_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x16061d06 __camellia_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x1636abdf __camellia_enc_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x1da0e256 camellia_crypt_ctr +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x31bbe42b camellia_crypt_ctr_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x4193fc2a lrw_camellia_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x50dc55b6 __camellia_enc_blk_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x8b719630 lrw_camellia_exit_tfm +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x930f687f camellia_decrypt_cbc_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xa41a5ad3 camellia_dec_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xf4521fda camellia_dec_blk_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x4713f3be glue_cbc_encrypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x8f02ac4d glue_xts_crypt_128bit_one +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xac7f9f95 glue_xts_crypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xc9c41280 glue_cbc_decrypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xdbbef7ef glue_ctr_crypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xf8535337 glue_ecb_crypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x016a957f serpent_xts_enc_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x0c5a8af6 serpent_xts_dec_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x0ff3c26d serpent_xts_dec +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x606a8162 serpent_cbc_dec_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x79ff0b7a serpent_ecb_dec_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x94404ac7 xts_serpent_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x9ae34b2f serpent_xts_enc +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x9e018632 __serpent_crypt_ctr +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x9f99663c serpent_ctr_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xa84ea33d serpent_ecb_enc_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xb113c3b7 lrw_serpent_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xe83e9650 lrw_serpent_exit_tfm +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64 0x19dc7881 twofish_dec_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64 0x5e752773 twofish_enc_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x1fd77fb1 twofish_dec_blk_3way +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x5eb02726 xts_twofish_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x61694b97 twofish_dec_blk_cbc_3way +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x7be3ae56 lrw_twofish_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x8d75ab44 twofish_enc_blk_ctr +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x8e856922 twofish_enc_blk_ctr_3way +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xc1ce98b1 lrw_twofish_exit_tfm +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xf2e80e9c __twofish_enc_blk_3way +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00aaf935 kvm_disable_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00b30762 kvm_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00cd9bf5 kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x01ccd216 __tracepoint_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x028e44b9 kvm_vcpu_uninit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x070f9719 __tracepoint_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x080be3ad __tracepoint_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x089a86de kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x08bf04ed kvm_init_shadow_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b049b6a kvm_arch_unregister_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0ca341f5 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d4adf8b __tracepoint_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0e57909e kvm_mmu_slot_leaf_clear_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0fb59bf3 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x117ba91f kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x11b13973 kvm_set_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x125eb44b kvm_set_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x129cc3e7 __x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x16e18a21 kvm_requeue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17c114b8 kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1824ee78 kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x183ca959 reprogram_gp_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x19566b01 kvm_mmu_sync_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x199d022b kvm_vcpu_reload_apic_access_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1efde06d x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1ff6abf0 kvm_set_msi_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x21564cf4 __tracepoint_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2179fc84 load_pdptrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2341dbe9 kvm_mmu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25203e8a kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2665e46f kvm_init_shadow_ept_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x270dfc24 reprogram_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c78b8d4 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2de58b13 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x308c9636 kvm_rdpmc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x30b350be kvm_task_switch +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x31650c43 kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x317f9e6b kvm_enable_efer_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3248affa kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x34e96dc1 kvm_requeue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x35b84c76 kvm_set_xcr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x36ea3088 kvm_lmsw +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a599519 kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a8153dc kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a921245 x86_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3bafe40e kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x41515262 kvm_scale_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x427d8e7c kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x42c4f008 kvm_mtrr_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x43091bea kvm_get_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x435d2f4f kvm_get_dirty_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4366dc1a kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x44046cb1 __tracepoint_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x48d5b6f7 kvm_mmu_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4b084770 kvm_clear_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4c0f1c05 kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x51bdfb8e kvm_read_l1_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x530e4aad kvm_vcpu_is_reset_bsp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x53c20c16 kvm_vcpu_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x54c60a60 kvm_apic_write_nodecode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5527d981 kvm_arch_end_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5b12f274 gfn_to_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c40ed8d kvm_x86_ops +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d09c2ff kvm_get_dirty_log_protect +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5e1aec96 kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x63791493 cpuid_query_maxphyaddr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x64020e10 kvm_set_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x661640ea kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x669da1fd kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6b18eefd kvm_fast_pio_out +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c0792d3 handle_mmio_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ce026af gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6d446e15 kvm_mmu_invlpg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ebdc87d kvm_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6f75e3ea __tracepoint_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x709c4e20 kvm_set_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x709cd8cb kvm_spurious_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7339845d kvm_require_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x73ae496a __tracepoint_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x73d9583a kvm_mtrr_valid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x77001583 kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x771e141f kvm_write_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x775bf92e kvm_is_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7aa64803 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7e12f9de kvm_inject_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7efc622d kvm_cpu_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ff1ca84 __tracepoint_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x831327da kvm_max_guest_tsc_khz +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x84743988 kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x87cac438 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x89a52afa reset_shadow_zero_bits_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x89f9d7bd kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8b81b933 gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8bbaacb7 kvm_emulate_wbinvd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8cd538d9 kvm_arch_register_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ce4f3ab kvm_enable_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8da01274 kvm_get_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8da434db kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8e1cd06f kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93b29af8 kvm_vcpu_block +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x94e603d0 vcpu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x953145b3 kvm_after_handle_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x95333cc0 kvm_mmu_unload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9536088c kvm_emulate_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x95812972 kvm_vcpu_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96605276 kvm_inject_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96dbe382 kvm_mpx_supported +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a216313 kvm_define_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9c00ee7c kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9cc765f0 mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e1dda5b kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e482a48 kvm_mmu_unprotect_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f520c9f kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa0ec3a0a gfn_to_hva_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa339cd38 reprogram_fixed_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa33f8a16 kvm_before_handle_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa4d57013 __tracepoint_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa6397b90 vcpu_put +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa884406c kvm_mmu_unprotect_page_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xacf7f97c gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xad94a24f kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1cc6be5 __tracepoint_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb21ff1cb kvm_get_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb22af775 kvm_get_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb326aecf kvm_read_guest_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb398b716 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb5d59d62 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb66bef95 kvm_valid_efer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb908b718 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba9ed435 kvm_mmu_set_mmio_spte_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbbad828e kvm_read_guest_page_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbc5580bf kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc1adc2cb __tracepoint_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc38adfad kvm_set_cr3 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc3cc74c8 kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc4ce4a3e kvm_put_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc56d75ce __kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc599bc18 kvm_max_tsc_scaling_ratio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc5f4107f kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc66a628d kvm_arch_has_assigned_device +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc905040d kvm_get_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xca513700 kvm_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcacbf372 kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcafeddc6 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcbc520a4 kvm_get_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce7d6b6a kvm_inject_pending_timer_irqs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcf0b30d5 __tracepoint_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0459e67 kvm_has_tsc_control +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0b2727a kvm_mmu_set_mask_ptes +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd17f0128 kvm_mmu_slot_set_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd2216785 kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd26b28db gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd2b530a0 gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd4e0c35f kvm_intr_is_single_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd6dd060a kvm_get_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd6f1aeb1 kvm_get_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd74f4219 kvm_arch_has_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd7d40c64 kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd813b677 kvm_get_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd93bbd46 gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe067c2a3 kvm_require_cpl +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0bca343 kvm_inject_realmode_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe3212a4b kvm_mmu_slot_largepage_remove_write_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe3da889e __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe5830471 kvm_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe5bc8bde kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe80330b4 kvm_arch_start_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe88f25cd kvm_apic_set_eoi_accelerated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe90f70bf kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xec24c02b kvm_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xee470717 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf00880c4 kvm_emulate_hypercall +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2312a76 __tracepoint_kvm_ple_window +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2f286c4 kvm_tsc_scaling_ratio_frac_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf41e94f5 __tracepoint_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf704289f kvm_mmu_clear_dirty_pt_masked +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf7fa1258 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf8f4642c __tracepoint_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfbd95c91 __tracepoint_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfc4ac6a9 kvm_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfd8b0add kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfe1a0267 kvm_cpu_get_interrupt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x28717510 ablk_decrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x298031bd ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x35fc584a ablk_exit +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x4c51aada ablk_init +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x66e7c146 __ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x72d037ff ablk_init_common +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xee862376 ablk_set_key +EXPORT_SYMBOL_GPL crypto/af_alg 0x107ed95b af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0x11badcb8 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0x1f22d91e af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x250c48b8 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x3884b348 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x494d193c af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x5bb5d113 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x838d9bb5 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x876b84cf af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0x9c4cd872 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xf4569a8b af_alg_release +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x64aaace4 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xe00f69d6 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xee8f8eaa async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x616e20eb async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xe56cc3b2 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x381a0467 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xad58fd60 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xc2ff8c1e async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xeb6864cb __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x312d0148 async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x5ba6edaf async_xor_val +EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x4cfbb5c8 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x9d24bf2b cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xf1a00811 cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 +EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 +EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 +EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x0e846088 crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x9008f9c8 crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/cryptd 0x04b11dd3 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x20a66df6 cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x21340466 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x259190e5 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x69c2138e cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x83170739 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x86ccce46 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x88fb21ba cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xe8e3551a cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xfae5bf31 cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey +EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey +EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table +EXPORT_SYMBOL_GPL crypto/lrw 0x41a3a4e4 lrw_crypt +EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table +EXPORT_SYMBOL_GPL crypto/mcryptd 0x0824b26f shash_ahash_mcryptd_final +EXPORT_SYMBOL_GPL crypto/mcryptd 0x0a367202 mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x2e019077 mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/mcryptd 0x57c6475c shash_ahash_mcryptd_update +EXPORT_SYMBOL_GPL crypto/mcryptd 0x826e9034 shash_ahash_mcryptd_finup +EXPORT_SYMBOL_GPL crypto/mcryptd 0x8347667c mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0xa94128f7 mcryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/mcryptd 0xc07d9c62 shash_ahash_mcryptd_digest +EXPORT_SYMBOL_GPL crypto/mcryptd 0xeed645f6 mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x308fb1c5 crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x45a8b595 crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x4e0fe220 crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xa4572568 crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x0b430de0 serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/twofish_common 0x5a3b412f twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey +EXPORT_SYMBOL_GPL crypto/xts 0x8bd13dba xts_crypt +EXPORT_SYMBOL_GPL drivers/acpi/nfit 0x2c746d04 acpi_nfit_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit 0xecb7411c acpi_nfit_attribute_groups +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x1c8984c7 acpi_smbus_unregister_callback +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x87bd07bd acpi_smbus_register_callback +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0xb9a141b0 acpi_smbus_read +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0xe1372311 acpi_smbus_write +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x06d55595 ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x160bd0ea ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x184c21be ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2fe29d50 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3fc9fd6a ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x425a6b73 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x456c065b ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6c999086 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x75ed9a02 ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7a945dfb ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7b7f6d4b ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7c56599c ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7f902791 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x914fd9eb ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x92c3b220 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbeba4937 ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc386ae18 ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc47b9b91 ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xcbeffaef ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd32eb28c ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd4cfd2c3 ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe6eca1f4 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xee854aea ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2470d4d3 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2eae57b5 ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3cd63154 ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x694b4eee ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6db3a10f ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x780e5a91 ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7ce69b93 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x8616da3a ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9e52f30e ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb12df78a ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb92a43af ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc2739369 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd20b9055 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xe5e12fbf __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x02ff9464 cfag12864b_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x0ecb2e5d cfag12864b_disable +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x305dc3c6 cfag12864b_isenabled +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x3389f926 cfag12864b_enable +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x9522a342 cfag12864b_getrate +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0xc48e9d95 cfag12864b_buffer +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x08ab6ae4 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x7c05aad1 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xebf7749e __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xee5fc43b __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1bebf384 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3b9efd3b bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3ebb1788 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x50b71386 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x53ade01b bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x55dd7114 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x60901028 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x69cdad6e bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6c2a2c11 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6f460f14 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7d628a0f bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x86854d44 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x96895a4d bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaa3c183a bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb678d582 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb8a3f5f4 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc09e0b23 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc95e194c bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd52bad0d bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd765127b bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd8fdd71e bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe70fde65 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe83fe414 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xeebd7b88 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x4f1bb881 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x6852c494 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x6f4cbdaa btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x98011250 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xa5d366d5 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xabb9c070 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1d89270f btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x42786588 btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x438c636b btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4bc2cbbc btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5426d48d btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5a01063e btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5be90b1e btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5cd27a1d btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8acd03b4 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x933f15a6 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd4ad3f10 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe2dd4d39 btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x08a0984f btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1b618187 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x22b803e7 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2fb4672d btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x610c6360 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6c8fde42 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x95942b82 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xaa430da8 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc3c9887b btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xdbe405a5 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xdcf53921 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x6650cf42 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xa0f406db qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaddebddd btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x49966d61 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/cpufreq/speedstep-lib 0x1b1f2bda speedstep_get_freqs +EXPORT_SYMBOL_GPL drivers/cpufreq/speedstep-lib 0x2b67f096 speedstep_get_frequency +EXPORT_SYMBOL_GPL drivers/cpufreq/speedstep-lib 0xd7ab2c0c speedstep_detect_processor +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x04773b60 ccp_present +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x7b9cea7b ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x082008f4 adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x11b410e1 adf_disable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1af1ae00 adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1dd74122 adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1e3fd243 adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x25ce9c47 adf_service_unregister +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2b687087 adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x404c0ba8 adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4c12ea06 adf_response_handler +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5461f6d5 adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x55d7a3cc adf_enable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5d784fa9 adf_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6d18be43 adf_service_register +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x75f0b0bc adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x80257519 adf_iov_putmsg +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8df26525 adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x942a8f85 adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x99a161f9 adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9c376607 adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9dcdc0fb adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9e12c4ae adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa7dcd479 adf_disable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xab89ffb0 adf_dev_stop +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xac6fdf4c adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xae996d7b adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb170746f adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc7573772 adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc7e65655 adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcc3b167a adf_clean_vf_map +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd08a790b adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd137ec96 adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd1bb420c adf_update_ring_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd6118923 adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd9abe560 adf_dev_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe0ce4081 adf_dev_start +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe85c3057 adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe909e49f adf_enable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xedafb42b adf_disable_vf2pf_interrupts +EXPORT_SYMBOL_GPL drivers/dca/dca 0x01a33ab9 dca_unregister_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0x31a2c8df dca_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0x35162369 free_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x79170d39 dca_add_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0x7b4a0492 dca_remove_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0xa84dc501 register_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0xac34ecec dca_register_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0xacf920f1 alloc_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0xbe2d69ee unregister_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0xe120d815 dca3_get_tag +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x235a7d08 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x550722b8 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xb3b9db29 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xbd9badff dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xdfcb8c20 dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x54689c9a hsu_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x71d23ee7 hsu_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x841dc3fa hsu_dma_irq +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x0efd4220 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x39bb98a2 vchan_find_desc +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x5969f55f vchan_init +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xc3df7dd0 vchan_tx_submit +EXPORT_SYMBOL_GPL drivers/edac/amd64_edac_mod 0x1eed5db6 amd64_get_dram_hole_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0878e998 edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x158a2e34 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x17d9fba7 edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1b7257d6 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x245e354b edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x24e1d881 edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3cbccc6b edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x518df5af edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x53978c4c edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x55bdffe2 edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x65a49b13 edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6ff11f88 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x769ea863 edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7b74bad3 edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x827c196e edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x85d1af8b edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x894d5235 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa2e4b958 edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa59ba788 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd138d1e3 find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd1ee6d9c edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xefe545ce edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xfc2ee4cc edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x14878009 amd_report_gart_errors +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x1d34e996 pp_msgs +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x81d75507 amd_register_ecc_decoder +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xb30b7e56 amd_decode_mce +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xd3cc2686 amd_unregister_ecc_decoder +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x07262998 fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2067fe47 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x299cad9a fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2e3b3a34 fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x48a5d1b0 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6a85c0de fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x17cc5ed3 bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x2e16ad3f bgpio_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x7ec7b75d __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xe25d224d __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x075fb2c4 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x29ea46d2 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf755fa77 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x05876c69 i915_gpu_busy +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x08a7896d i915_gpu_raise +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x402468e9 i915_gpu_lower +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x500858b9 i915_read_mch_val +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0xe7237b0b i915_gpu_turbo_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x0a1fb27a ttm_dma_page_alloc_debugfs +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x412a7e72 ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x4ff2010c ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0288f239 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x04075be3 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x04d0561a hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0a544f15 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0d5cde9f hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0faa0f96 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1c1c5494 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x29c5918a hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x333a2af6 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3af87a50 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4528a377 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x46a2a036 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4cc0328e hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4f4dd487 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x52ef4245 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5707168f hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5dfe3733 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6c7cf827 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6e39ae7f hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x814ca588 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x85ada380 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8bfc216f hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8dc12f25 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x979aa791 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbc9c1db7 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc6119ef9 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc887586e hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xce3430b0 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd0f4b5c5 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd66abad2 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd8f41d0c hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd9bee719 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe310c53d hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe38e1201 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf08c9a22 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf76998ce hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x427ab222 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x43f2acb7 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x47ea76d1 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x4a32211c roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x6f236dfb roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xe5e6e7b3 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xecc441d0 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2a34bf66 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x36fad31e sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x58bdc966 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x60bf40aa hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x86723df4 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9bef9206 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc92298b4 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xed1e0edf sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf87f1312 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x873983d3 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x425a24b6 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4e485989 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x58638d68 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x680ffc29 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x72f29900 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x86f11f42 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x97d93f94 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9cf5e468 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbccc1c37 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc423180d hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd5a8148b hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd5d1124a hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdf4375d1 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe0c6a03e hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xeb47e9c1 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xec6d772f hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfcf8fee9 hsi_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0a00a372 vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0e067a67 vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x15903638 vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1a25cd8a hv_do_hypercall +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x25a0a3d2 vmbus_cpu_number_to_vp_number +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x271cc563 vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2c2dcf02 vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2e6b9b0c vmbus_get_outgoing_channel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2eee8cee vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x358fafa5 vmbus_prep_negotiate_resp +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x38382e06 vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x506536b6 vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7df4c9b7 vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x86ff5fa6 hyperv_cs +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9ce36713 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa7adb86e vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa8a80a2c vmbus_are_subchannels_present +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc36f3c1c vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc8c24c80 vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd447e5e7 __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdaa07c15 vmbus_sendpacket_pagebuffer_ctl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdb2f6047 vmbus_free_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xde52b16d vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe1831da6 vmbus_sendpacket_multipagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xeadb5fcc vmbus_send_tl_connect_request +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x2eda5a44 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xe893492f adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xfc7c9086 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0b56a526 pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0d5bb7b1 pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x32a9852f pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x50ec7c67 pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x7d3476ab pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8ff06d22 pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa740ff18 pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xbafab530 pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xc8c51b8f pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xcd3460da pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xcdb981ce pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xd2172080 pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xdb47ee98 pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xed82ae3b pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf6dcf9a2 pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2692aa0f intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x450820eb intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5dd17239 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x8a13d3d7 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xab4e31f9 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd76f9144 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf9a38f84 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x01c13453 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x036437c5 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x544b2ac8 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xcdb39a93 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xdf94b484 stm_register_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x1d486ea0 i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x7220967b i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x7a01480c i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x9cf401a1 i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xb38ba2f2 i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0xcf542c6b nforce2_smbus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xad0678dc i2c_add_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xd6af55ac i2c_del_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x79d852f7 i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x7bd7138c i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x2376cdab bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xe5f7eb35 bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xf6ab15f1 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x14f97591 ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x18308dee ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x41989dc3 ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x8878185d ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x896a84a5 ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x9fd9f8dc ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xb7f44b1f ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xcc3c3b0a ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd616aa07 ad_sd_reset +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe10a3589 ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x8ff0bd86 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xdee6236f iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xea5326d6 ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xebb48e72 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x7f148bb2 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xb20c930a bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xfd5b6730 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x037c2512 adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x06d211bd adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x35a138ea adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x36b765b9 adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x40c8b040 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x5b54f7bd adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x5ece5916 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xa4dff0ee adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xa627d221 adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc3adaf4f adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xcf179b0b adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xe58cee3d adis_reset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0cb1288d iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0d119a8c iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0fc02137 devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x124f1bb3 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x14b4a442 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2481d1bc iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2566fc9c iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4aff53ae devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5f17f51c iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x64c7ab19 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x67338971 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x67ade851 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6ca3ca80 devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x75de49fb iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7eabe4ca iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7ed3fb72 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x879b8785 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x918ea73a iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xab122cfc devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc2439784 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc4406bcd iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcb08485d iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcdd0c0cd devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd9deefa5 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe25a5810 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe738306d iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe765f105 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xea5ccb8b iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xeac8cfc0 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xec443136 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf79ef2f6 iio_update_demux +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xc7c84dc2 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x6d486197 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x4785dd44 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x92114833 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xd7c15e4f cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x3b2bbf55 cyttsp_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x90e8f8e3 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xe743ce66 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x66504856 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x727eed57 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x26e43182 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x608b552f tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x89a2631a tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xb3ea7a9f tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2251093a wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x25ae1cc8 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x38100192 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x459dbf3f wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8cf6da5d wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9111cc4e wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9f446c61 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbff8dbe7 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xca22b82c wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd08d3cd0 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf4ba010c wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf646b2f4 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x04f6a5ae ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1480b3ad ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x332ab3f1 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4cbcddd4 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x53d3f353 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5407221b ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7e393ab7 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc00dbbb8 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc5389e3b ipack_put_device +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x046df3aa gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x081d72f1 gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x11ee2cf6 gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x1507dc3d gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x2161fca3 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x37d6043d gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3a3b0709 gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x410fd5ec gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4f87ccf8 gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x91863eaf gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x992c39ff gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb2a12929 gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb4c12ed9 gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb9a8f70c gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf237d15b gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf6f0e465 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf8c7e8b5 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/leds/dell-led 0x86fd1ffb dell_app_wmi_led_set +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1aa88520 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x4e6a8222 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x588826c8 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x6b4e6e07 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xbeba5234 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xeccecb16 led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x06c22db4 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x080aae89 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x10ff5447 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x25d83986 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x477a799b lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x4d13f919 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x4fdab16d lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8f044730 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd8c911d5 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe8ab290c lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf6197fb5 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x0cc27b4d mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x23004ff2 mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x41a9214e chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4949aa16 mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x49df63aa mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4fb1a66f mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x50d155ba mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x5ff431ab mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x69e8f845 __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x81c2063a mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xab8f59f8 mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xbd9a5a0f mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xee3cc4d2 mcb_bus_get +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x021811cf __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0f0677b8 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x10e6a889 __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1154f7a1 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15aa8e40 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x174c2a29 __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2205bcf9 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3fc7cb7f __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x469f38de __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4ba51ecf __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5b2a89c7 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d950f2a __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5e21030c __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5ed04550 __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6eef9654 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x74ab7b0f __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x84efb763 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8fe32879 __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x91f02667 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x93f7fc02 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa1de5277 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa81bf581 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7d964de __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbbace2cd __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc6673631 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8a2f711 __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe3de2ba2 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe902838d __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec919105 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeea27f46 __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfad1ec73 __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x23392fd6 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2e7a658e dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3058a91b dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6d58c0ee dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x83bb3b50 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x94ecdd79 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc5ac0262 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xebf572e4 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfc6de507 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aba7f5e dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9310ba06 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9c256008 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa1d2413a dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa448e19f dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xafbda3f3 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb696c482 dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcbb1bae2 dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x41520f32 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x61b0569e dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x862c9a61 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x95efe834 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x968b6681 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbc652342 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe2d6c698 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x2caa6d09 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xa42b202d dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x39ad2dff dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4430764e dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x45ab972a dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x6b34e71c dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x81bfdb91 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa68e1f06 dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xb5a19cd1 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbf1ecaf9 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc1d3e9bd dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfad9d53a dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfc62ef4e dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x17c36f29 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42dbdfc3 dm_tm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49b35849 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x55b4bd4d dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x827a42f4 dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x956b291c dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9f624559 dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xafeda29f dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd29923fb dm_tm_shadow_block +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf375d009 dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf5455120 dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4ab74be7 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x528b6111 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x5a019546 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x8db98e39 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa2abde4a saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb12d72e6 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb2707283 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb2bfdb70 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb5634556 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd356c6a9 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x1a2d76c2 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x3b03c750 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x533f7981 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x65767192 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xa94d7a17 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xbf151982 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xf610a3fa saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0d910550 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21d0381c smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2c7348c8 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3443c1af sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x42c90fec smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4f9b1bdd smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x76fd2c87 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7e4e8107 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa0702bce sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xab7543a9 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb527e44b sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbe2a83ac smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc1628294 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc1db84f0 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc7b06124 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xec275c5b smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf3c3f73f smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x2ecdaca6 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xc77202c7 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xd0fd9da0 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x098f63b2 media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0x14e11e91 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x3090cb01 media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0x39ad4e66 media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0x40cd1029 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x4694c8b0 media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0x61c7fe70 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x63259c79 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0x69de546c media_entity_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0x6aa9bbd9 media_entity_create_link +EXPORT_SYMBOL_GPL drivers/media/media 0x7283d986 media_entity_init +EXPORT_SYMBOL_GPL drivers/media/media 0x90268671 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0x91c7994b media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0x98344344 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xa92e7160 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0xa9ee0002 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0xb54398c9 media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0xccdc9532 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x95385fb3 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x01b595b2 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x14f640b1 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x18f0bcf9 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x27044ef7 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x302a12e0 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x31524079 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x35e70dbe mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4b1a868e mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4b478bd5 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x50465532 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x51f3a609 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x558b4a6c mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6c7fa556 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8e95d936 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x96d521ef mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb363abc7 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbaf64248 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe7ace5f3 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xeb3481ba mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x10739e52 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2ac95030 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2d603b4d saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2d69beb2 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x344163e7 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x48ae7cb6 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x559d79a1 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6439e62f saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x68c168d8 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7aac554b saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x89384fe1 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbebcd293 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xca44b81e saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcbc95a15 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdb7955b2 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdd87c7eb saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf6df29bb saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfc8191df saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfd2188d6 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x0cec1ce7 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x4712436c ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x5aaa7020 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x6372226a ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xe1c6d440 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xe9018759 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xfe51bfb2 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x10831f61 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x7002f9ed radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x054267fb rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x29a91501 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x37c163e3 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4ba81ef6 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x57b17815 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5bd7e58f rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6a3b1292 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x76c71f94 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7f95af84 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8ec2e810 rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x990cf3af rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa9e2786a rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb581dd0e ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb99c1e67 rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc28901b1 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc551f35d ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd57b73db rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd81753d6 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf57ba059 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x18fbee26 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x63c625ef microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x25d74a7b mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x5a5d9a5d r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x3b605557 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0xc8370a85 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x09dd2f9f tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xba8c6ddf tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x0574611c tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x46505945 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xc9a6a4ae tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x20280ef0 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xcda58097 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x3487ec17 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x03330c05 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0756b862 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1a12151f cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1a5aa3e9 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x43ee82b1 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5ebe9148 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6cb15910 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7686ae15 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x82ef0ee1 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8844de9d cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8dabe797 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x909e7f1e cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9299754a cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9812e29c cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa7440b7d cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbfbad7b2 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xeaaad561 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf3cd3c66 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf58e2977 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf6f6787d cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xe053776f mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x2aa79c97 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0463ef1c em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x112314c3 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x14e0e3ca em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1843a959 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x261e2c5d em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2cac8469 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x34394f50 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7aa2828d em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8b64a2aa em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x910c5836 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc60893e9 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcf18e9e3 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd342f80f em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd3af28bd em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdc0af122 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf69dc7a2 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf6ae59c1 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfc3775c5 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x314652bf tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x439fd1e9 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x501449af tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xbad5b8b8 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x030c74f9 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x063d4f98 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x7afab65e v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x86468a30 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xdd0c4e05 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xe19c00b4 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08982d59 v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x63839a44 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x69acd1ca v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0134e2bb v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x06ceb837 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x08844a75 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x08d5c25a v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x123fda9f v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x187ce5c1 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x18fdfd78 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2d92539c v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x30b98434 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6dec5a01 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x83ea3106 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x85869d04 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8c07936b v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x95175a06 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x97344ff6 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9d5d7cf8 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa582f6d2 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xae5face9 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xae98eac3 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc16b524e v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcb31f103 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd08b5116 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd4a8019a v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xda79aa09 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe21ed450 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe2b92017 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfba47804 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0a656b4c videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x126706ad __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x26184a9f videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2e7078a6 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x50b246fb videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x54662de5 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5725550b videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x732a0e15 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x75346033 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x76b7688d videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8f7248ba videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9a61ef2a videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9a695ab7 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9e02b2f6 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa783e941 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb2ddd80e videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb898f650 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbbf328f0 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc6c6301c videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xca7aeae3 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd357dacf videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf3accdd6 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfa2b5f55 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfb29ab08 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x396b9e79 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x6df52355 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x8e8873f9 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xbe568849 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x947d7fd2 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x9f85dfe7 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xa294636c videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1558bbe8 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1e6e440a vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x20a80b03 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x30718d66 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x3758ec19 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x4ac5979c vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x60ae6723 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6dfe67ba vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7dd7f442 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7def558f vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xadceacbf vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xae4d092c vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xbd6f7033 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc74c6e91 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc974432d vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xdc97f834 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe2348784 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xefb2e3db vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x5b1e31cc vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x9fc12a7b vb2_dma_contig_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x6af50478 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd30ec30f vb2_dma_sg_cleanup_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xe940f50c vb2_dma_sg_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0x66310cf3 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x01d3267c vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x02cf47de vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x06f7ccc1 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x07c7e5aa vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0985aa65 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1d6a20ef vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2d2735bf vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x386b11f3 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3a871e04 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3e0bcb11 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3f13dd9d vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x413ac03f vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x42a684d7 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x47701cd8 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x48d410d9 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4ab7f2cb vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5d20a346 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x63944535 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6cc3e18b vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x809fd0d8 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x86eca4df vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8ebce0ad vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8ff71228 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x906d2fd6 vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x96183525 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa1116f73 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd8919ec4 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdae76327 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdf9378c3 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe0a6b98a vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf216a23b vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xfbd35e36 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x27697637 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0219c4f8 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x08e330f6 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x114a1f5a v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x133adfc4 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x184964ca v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1cace362 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1ef3a428 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x213938f5 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x23b418e5 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ab9d732 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2e6934ab v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2f13bc64 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e73fa8d __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4fa5de21 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5833a575 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x624f7e10 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x71ef9d72 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74a017c5 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7bfda7d4 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8443d1f2 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8c70c76c v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8cdfbe43 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x928659d0 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x93a798cb v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9c3e8239 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa55c185e v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaca2544a __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc0867b17 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc111835c v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6429d8b __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd76e439f v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdbc8c6f2 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe3f75a04 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe943cae7 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xea5fccdf v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf377311f v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf664d6c8 v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x00829869 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xac5c68f6 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xfa93fa35 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x0e7022f7 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2991b634 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x3fdb7e8d da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x6ed17808 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x7bc1a24b da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x9e156570 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb41d5054 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x63752762 intel_lpss_probe +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x75c527ee intel_lpss_remove +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x8fde8250 intel_lpss_prepare +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xbda6b4d9 intel_lpss_resume +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xfea1041c intel_lpss_suspend +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x05801b76 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0c4671a2 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x220e8d0b kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x5b613820 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x69fd8105 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xaf1bb1d0 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xafceee75 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe315ec08 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x661ac0a5 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xe054f4b3 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xfaa4cc42 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x0fc2a62b lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x36db83a8 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x507c55dc lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc0c6d550 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xd6dcd9cb lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xe449ab26 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xe9af674a lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x2759968d lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xaa358beb lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xf3ebfed1 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x130264bb mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x1bd2724b mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x2c2ddd1b mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x4967cc03 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x5b68396b mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x877f9505 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x070b51ad pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0d367d6c pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0d67a9e2 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x226536da pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x26553858 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2d2b3460 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4060a082 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x45318d55 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xad154836 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xba8a50d3 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe5b0b1e9 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x7bac75ac pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xf9f6dd37 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x5ad20d95 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x744fe2aa pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd0124bc9 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xf410d2f3 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xfb6b8e87 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0986c9aa rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3412f8ed rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3d5dbdbe rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4247c805 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x49add85f rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4b8c850e rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x546ff0eb rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x57e48eef rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x770eca89 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x83afb5ee rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8685d628 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8827ce4e rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8b257d2f rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9084fd67 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x92209ada rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa3bb056b rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa3ccd138 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa3dadfe5 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb1738579 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb5549146 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc266ab5c rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd26c864a rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xde5c0e69 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xec14b050 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x014b0671 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x31376bcf rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x58d5875c rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x5f3a47a3 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x6bae0d0b rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x886f4ae9 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x9473baa6 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x973884b9 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x9b66e35b rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xbe26ce13 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xcc4dcc47 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xdb0dd6d4 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe94c05f5 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0452892a si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0b65a1b2 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x11d0efe3 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1db0c67f si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2bed2bea si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2c246a19 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2c2e2737 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x31e0c23c si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x34221688 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5159375e si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5ecad30f si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x68bf4e20 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6950af85 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x69d44561 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6e2ca62b si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7de99000 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x834917e2 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x91cbae16 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9be95c10 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa26212d9 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa7607cfc si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa9ca76b0 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb6c97fc9 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbc06cd06 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc5125ced si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc8e81876 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc99a2c09 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcacd2636 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd4955bd1 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd66e2f94 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xde5c1d3b si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe10b3cbe si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf89833e1 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf97019ca si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x3cf7d6e2 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x41902cb6 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x5dc41362 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x63eeb20f sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xd59663ed sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x844ca77a am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x8b23586c am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x8eca24ad am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xbd333b0a am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x4786d6aa tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x74da58a1 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xa203a81b tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xd1579bad tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x7ba34674 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x363d50c2 bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x8d25014d bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xcae9c39b bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xd58aa980 bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x127e4ce3 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x1d61be50 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x22dfe806 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x2ccfea35 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1399a1cc enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x35285cac enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x64037f31 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x77d9c0bb enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xc5fd824e enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xc93eeef1 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xf1fd42ba enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xfab2ed4c enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x21e3b010 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x364c0362 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4347d3d6 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x619f3230 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x68b44531 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x75dc1ff0 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd472a5dc lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xffef200a lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x09c92393 mei_cldev_uuid +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0d456971 mei_cldev_get_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1422f780 mei_cldev_register_event_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1acda26d mei_device_init +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x2074ecdb mei_cldev_enabled +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3c0b2219 mei_hbm_pg +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3d42f91b mei_hbm_pg_resume +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x43094540 mei_cldev_send +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x45e8737d __mei_cldev_driver_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6005070a mei_cldev_recv +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x74065028 mei_cldev_disable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x794f3261 mei_cldev_set_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8f4a9ac0 mei_cldev_ver +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa1425701 mei_irq_compl_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa3acc419 mei_reset +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa48dc6e7 mei_deregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa8e23e28 mei_irq_write_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xae188d24 mei_cldev_driver_unregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb16b57ec mei_cancel_work +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb8762357 mei_write_is_idle +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc5e53517 mei_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc671519a mei_restart +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xcb8cc678 mei_cldev_enable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xccd5f695 mei_start +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xcebb199d mei_stop +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe6f2821b mei_irq_read_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe8dd0278 mei_fw_status2str +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x110353ad cosm_unregister_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x4ebd3fa2 cosm_unregister_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x612982b5 cosm_register_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x84a24ee4 cosm_find_cdev_by_id +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0xbd27c3d3 cosm_register_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0x3e059d33 mbus_unregister_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0x477adcc1 mbus_register_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0xa71f2bac mbus_register_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0xfe46efd1 mbus_unregister_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x27b8858d scif_register_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x87aac2b2 scif_register_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0xa61f04d3 scif_unregister_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0xab9337ed scif_unregister_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x04e359ce scif_register_pinned_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x072ed52a scif_readfrom +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x31f517c5 scif_get_node_ids +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x4c6f9582 scif_fence_mark +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x54cf5d79 scif_listen +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x5b2df187 scif_accept +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x5e5d00c7 scif_register +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x633eb428 scif_connect +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x6842b5ae scif_send +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x6fe733a2 scif_unpin_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x73291e22 scif_close +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x75203b49 scif_open +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x7d503356 scif_bind +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x81537fe1 scif_poll +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x8bf0dc9c scif_client_unregister +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x9037e83d scif_vreadfrom +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x9182618e scif_get_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x9f9ec119 scif_vwriteto +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xa96dfaa7 scif_unregister +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xbc1dd1f8 scif_put_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xd454b750 scif_recv +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xde5e3e3a scif_fence_wait +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xe01e4926 scif_pin_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xf7826056 scif_fence_signal +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xfa34c380 scif_client_register +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xfe96394f scif_writeto +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x95ea0797 st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xbe92fb75 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x0f6680ea vmci_qpair_produce_buf_ready +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1152e318 vmci_qpair_get_produce_indexes +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x13aa5a5d vmci_datagram_create_handle +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1872c7af vmci_qpair_produce_free_space +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1a195863 vmci_context_get_priv_flags +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x25cdddea vmci_qpair_dequev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3ef56cd5 vmci_qpair_alloc +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4b630dac vmci_get_context_id +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4ba5c46b vmci_qpair_peek +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x50a255c9 vmci_doorbell_create +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x612df9ae vmci_qpair_detach +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x677c36d0 vmci_is_context_owner +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x69ef87ff vmci_datagram_destroy_handle +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x6cc1a5f7 vmci_datagram_create_handle_priv +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x7172fdc0 vmci_qpair_enquev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x722d488a vmci_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x7d540b50 vmci_qpair_consume_free_space +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x81d61eef vmci_qpair_dequeue +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9624c58c vmci_datagram_send +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9973b9b2 vmci_qpair_consume_buf_ready +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9d16164a vmci_send_datagram +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xccbb53d1 vmci_doorbell_notify +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xcf5ed7ef vmci_event_subscribe +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xdac94780 vmci_qpair_get_consume_indexes +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe67343c1 vmci_qpair_enqueue +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe7e7c107 vmci_doorbell_destroy +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xee2daa1e vmci_qpair_peekv +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x10da7434 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3d8b740e sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x42751943 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x498f4d59 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4d6de911 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4de9f393 sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4ea24a84 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5771e30b sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6057ea51 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x60d6c96d sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x74355463 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x93507e9d sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb004ea3f sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcf1c341a sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x02e77418 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x2585d679 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x41cc8bc6 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x5109965a sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x51fa6547 sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x6865a871 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x71a23f6c sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa6b26f4e sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa9911b34 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x2febd547 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xd2f5f0d1 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xeddcd539 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x1b2f86f9 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x657dcd29 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x968402af cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x5ca604a2 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x70f64a26 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x97260288 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xb4ed2699 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0d845afa mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0f347acc mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x11ed468f mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x14602f47 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x15b8c675 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x16efb705 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1c7657fe mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1e04bfdf mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2559c20a mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2708bf71 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x28259b24 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2c99c5e8 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x33e56298 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3cbfb323 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3dd23777 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x40587898 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x49de2317 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4c365a0e mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4d984f30 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x544abaf9 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5984626f unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x59b0ac44 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5d111bd6 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6175f40e mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x64c40bd7 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6cf805ff get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x75e3e771 register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x76db09a2 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7bf932fe mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x82747ebc mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x96797f9c kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9ed87b33 mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb3652f27 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbcb0d005 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbea0270a deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc205e768 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc24e96c3 mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd4a9778d __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd7cf30e8 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe89528b0 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf4e9d27d __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfa5fb1a9 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x1478afeb add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x560b49d6 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x7371b707 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x757cece0 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x9358f8f7 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xb7486c47 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xbcbf833e nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x17ab90d8 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x59ebd822 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x9e16fce9 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x91078f3a spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x03b5aa7e ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2426d6a2 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2d275e33 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2f92309f ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x37b29dfe ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4ba9965b ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7b7b611d ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x88e81c6c ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9021ec61 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb307c531 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb33d9715 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc127c6e9 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xea23e29d ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf03d5a77 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x37376fc3 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xe05989bd devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x02cf6d31 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x64d42f2e c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x8ad85e81 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x952503e6 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xb59d92b3 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xcefbc413 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x04213470 devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0e4de0f2 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x3614c773 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x37ab1c2a alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x37e372ff can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x3abd83c0 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x3baa94b0 can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x3bff38b4 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x49d517aa can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5fffa4c5 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x6293319b alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x74ea8915 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7b002add alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x8464c3bc register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x8fbd98f3 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x97b75e8c close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc9898ec5 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xdccde644 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x476ff135 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x56477adf alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xa8074dca free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xc0ab570c register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x160663e9 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x47f58e54 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x76c482f7 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x877ee77f alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01c10160 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02ec4fbc mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02fb2bbe __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02fe7d23 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x037cf94e mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x045d7bba mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0743c951 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08e98ebc mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x096d33e6 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0aad2a7a mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e3e5422 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11400273 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1543da52 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x172c682b mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a4a3ad9 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d9ecdef mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x206c63f0 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2668f24a mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26dc3613 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ad0256c mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2cfdda9c mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f1401cb mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f3f8da1 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x301b09f0 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x318538c6 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3654fd77 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36c870d8 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37447fe1 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a6d7fb7 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a8f2bff mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x417aad73 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43ba5b26 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43bd84c6 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4507cddf __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4663639e mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47e4aa9d mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4866e3db mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5127299d mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51a601aa mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5253909a mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52f25c5d mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55added6 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x568e82d1 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57cb9774 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b65a167 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c09c8c9 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ceef683 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5cfff9fe mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d2b59a7 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d84c709 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e067210 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6224b1c0 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b17d90d __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ee5747d mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x713e9f39 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x718a20ed mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x771d7dfd mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77e70f42 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8388e07a __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84716045 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84fcfcd5 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a4f7a84 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b09d374 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b9d52ed mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ceba7d4 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f6b0124 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9079bb61 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x933caa25 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95d7868e mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x997fc3fb mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b1667bc mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ca0fe01 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d57c638 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e5b483e mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ea0afa4 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ff15dc4 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1c2e6e0 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa33c85e7 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4e879e1 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6f9926f mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7c34922 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa810e18a mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab3031b1 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae80c2f0 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7a6e92b mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb96488bd mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba2bdeea mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbdf439e7 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe2c3890 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe5757a2 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe7c8e28 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf541e1b mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc08bc17c mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0c879e6 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0f4d542 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc138347f mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcafcd6d9 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd118678 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0823e00 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd193cc9a mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3aae543 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4a51e7d mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd74dba79 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7b79d77 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdcb99011 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde2924d8 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdfe9945e mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe287348e mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe577165e mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5a98383 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7a567af mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe919a232 mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe97fa429 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9ff5a02 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf067155b mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8858b06 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8f972db mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa069841 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa7ddfd8 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb15e7a7 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbd18c78 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcc5f2aa mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe0da167 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff8e0e90 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x004dad91 mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06731ada mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09dc16ee mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0bd19bcd mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12c266fc mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x213e29f9 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2bd6135e mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x321df4b2 mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x371a95be mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38869ac0 mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e595690 mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x444e6a4b mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45aa2b29 mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f2a5968 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4fb8f126 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5df8fd1c mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x612473a0 mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6825cd72 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e04afb4 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76801b40 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d739597 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x822325b6 mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d9d9d89 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93add442 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98438e41 mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c35eb59 mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa722f7ca mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae0e432f mlx5_set_port_proto +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4a2873c mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbbc57f45 mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1b5d0dd mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcce75328 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd0cabddc mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd12ac3cb mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4615c2b mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4c696cb mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd69062a6 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6aab49e mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda923a44 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde462559 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdfc473c0 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe88498db mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3bcf80e mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfea6c24f mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff3bf9b3 mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x5e28947e regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xac144314 regmap_encx24j600_spi_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xfe3a92f5 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x0c2b750a stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x1428f781 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x75e49f99 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x7b50e7df stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x426cec30 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xb1bd908a stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xbb4a5b25 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xc1e75ca2 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x2c95b466 cpsw_ale_control_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x37f01847 cpsw_ale_dump +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x4428c2d9 cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x48591484 cpsw_ale_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x6e819021 cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x7319b519 cpsw_ale_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x791a2d9e cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x81711c06 cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x86537da6 cpsw_ale_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x8d37def7 cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xa660679d cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xb624da39 cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xc77fd038 cpsw_ale_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xe15bafd0 cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xf746f98b cpsw_ale_control_get +EXPORT_SYMBOL_GPL drivers/net/geneve 0x4939d0b0 geneve_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/geneve 0x73d37496 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x79c14ff1 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x8aa51d98 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xdcf38683 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xee591f63 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvtap 0xbb89c302 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0304eb96 bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1cb88a19 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3481a3fa bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6f27c7f9 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6fba1c10 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x82b7741b bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9fe86214 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa2c0478c bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc0d4e83d bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xce923696 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x0801d0b4 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x0fb8e952 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x8316158f usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb117b207 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x172cb64e cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x254153ba cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x59e7683d cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5a012c8f cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6201e1e0 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x63f0736b cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa05ac435 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa8fb33d2 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd39d7479 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x03c85470 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x3d6f8c0d rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5fa1ad54 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x64e29dfc rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xc158749b generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xe85f8549 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x069893f9 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0a939d40 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1103a427 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1b829882 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2598b7e3 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2acab46b usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2f69c6f6 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x396f91e8 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3d0c376b usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3d6ad033 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4525eb88 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4748d50d usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4b06f9a8 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x66373324 usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x67ceea63 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x825f543e usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x852138ee usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x93bec3c6 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa9a7aaed usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xacbe7f0a usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbd5aa924 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbfcf1a01 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc6c60c1a usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc8704437 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd3720329 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdb7acf7e usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe0365016 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe7cc596b usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xee9ac807 usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf37eccfb usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfa18a1e3 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfc0e7a3e usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x1e68d83e vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x71179089 vxlan_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x135601e8 i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x18c92ff4 i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x268e2265 i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3f2c4d3f i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x44e591bb i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x451408c1 i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5d04d46c i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x7c809a2f i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x80dcbddb i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x970c6089 i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa1fd653a i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb93eaa37 i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xbeca439b i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd25d0e29 i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd827a6f9 i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf5316279 i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x4bf8cf87 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x655d0f42 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xa47a2488 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xaecde430 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0xc03345e8 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x3a0fec9d il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x437f884d _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x64cdae7d il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x75d270f0 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xebf9a276 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x02aade35 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x08964e46 iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x127e7b78 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x16f1235a iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1b074767 iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1bf35041 __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x243c6413 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3f7dd8fb iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4c4068e3 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x512a2413 iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x57813145 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x58e953c6 iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5ee5ab54 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x70f6e701 iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9f455a20 iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa39a3b34 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb8979af3 iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb905a2fc iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xbc50de19 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc43732de iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc4a8fc91 iwl_notification_wait_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd40e1631 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd49b4b3e iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xda5efbab __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe05a23ae iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe5d249af __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe6099deb iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xea826aaf iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xecfce5a8 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xeecd7ee9 iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf7c79d79 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x0747ab23 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x1df780a2 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x28aba080 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5310ee59 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x60cf58d2 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x61e518d7 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x865a9500 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc43d0641 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xcec445f0 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xd701f877 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xddf92fca lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xde368a81 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe522dfa2 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf4639d7c lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf91fc3a9 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xfd0a92aa lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x02aecc8a lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x14a54960 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x232aeaf7 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x4e962830 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x51268449 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x7bd566d3 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xded5ee4c lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xecd9a8e7 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x0620ab5b mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x11c7c5a5 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x13beb931 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x16357492 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2b10c0dd mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31d55d21 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x3e274ba1 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x46e923c3 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x4f8da0cb mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x5d309c33 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x75067d51 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8ec57f3e mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa93b6881 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xab473368 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xbc60d47d mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xccb4bb86 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xcdf51ab6 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xeb9097df mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf286d08f mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x1ab0dd6a p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x2a58aeb0 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x3279eddb p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x6ed13d6f p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x8e7ca42a p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x917f1a26 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xc008e155 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xcffc0281 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xe380eee0 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x029abbb4 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x218913e5 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x997219bc dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd314b9d6 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x04f88a09 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x062563eb rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x07ac0aa7 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x08168aad rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0d030bd1 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x23706b54 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x26ef8fba rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x31c54045 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x379c25ef rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4db61953 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x634af0be rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x70e36ad7 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7cb61160 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7e964dee rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x84fa95ba rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8bc14cf9 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x90ea74bd rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x91de0f8e rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9a58f091 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xab051dfc rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xad96a962 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbb98ccbe rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe2f8dcfb rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf43eafbc rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf9917a69 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfadfdd23 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfe0519ec rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x04dae290 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0fb98d2a rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x16d03516 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1d9050c7 rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1ed7dba8 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x20ac47af rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3630ad09 rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x382e49da rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5dff6618 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b4de810 rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6c64eacf rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6d3a61da rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x72ea1058 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x81497c4c rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8e0eb81d rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xafcdc668 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb70f58c7 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc41bb691 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc4e9fc8e rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcf7e7b92 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xead471e4 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x74029f0f rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x748c88e5 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x83fd3516 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xb8ef2c09 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x00a5f52e rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x02636a72 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0432c949 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0594e406 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x09e4f571 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0c36fda9 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0c5821cd rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x23db7471 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x313a4cbb rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x323a0085 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3c62951e rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3e875b26 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x477182b0 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x54ee43ed rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x57b29e18 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6676adbe rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6774c8f1 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x72522507 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x76db7937 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x888c56e5 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x926e940c rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9fc95397 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa23dac34 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa2486430 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa24ed4fd rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa452e893 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa50ab60e rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xaab8ace0 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xac7f9c7d rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb44a6ae6 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd3aadc42 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe2497b24 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe9b296d7 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xef66c6b4 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf30fe0a0 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf9532a7e rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfaedc662 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xff361f27 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x236c66f4 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x46d1e17a rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x50a01e50 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x78c3cd49 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x88dd1479 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x91fa2370 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xb3ad4e22 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xb520f130 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xba530192 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc1a0d894 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xd2f254d8 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe2f4802a rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xf8dd7f6e rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x00e0a59b rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x01bce126 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x07fc741a rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0ad116ab rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0e586779 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x113b2871 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1f764ee4 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3af95363 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x421ed02a rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x426a6fd3 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x44cd7a02 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x48590f92 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x499105f8 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4cd5a526 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x51aa548c rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5c68308e rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6242c194 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x68d45523 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x71c5d479 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x81814408 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x825b6add rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x870cffd7 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x889cd7bc rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x89292b34 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8eb6a1d0 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x95dc158d rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x95f20c71 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9608508c rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9fb94bf1 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xacd8e788 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb17d18c8 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb98aada4 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb9f754a6 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbb78746d rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbc1b32a5 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc308b902 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc6f2bc6e rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcf617deb rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd10f7e6c rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xde76731b rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe0dc81b8 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe15aee7d rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe4828d7d rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe9d505f5 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xee440638 rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf74f9504 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x7d931249 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x9d17b0bd rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xbcbc95e0 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xed5a58b1 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xefaec751 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x012b5aea rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x0a8b13e2 rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x416101df rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x7503bb15 rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x062a93ce rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x14dba920 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x16dd7d44 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1c206c76 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x5833dd4e rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x59367b3f rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x5970e885 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x6bfb3c0e rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x6d5a9368 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x6febcec4 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x719ac0a7 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x72718971 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x734797c1 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xcb585edc rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe1b10a06 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xfb5ae8de rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x36d1d342 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x8495ec4a wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x8a281858 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x021f7a06 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x036a4105 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06411f51 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0717ca3b wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0b4317d7 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x10c7682d wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x249b8850 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x26d1731c wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2f42fcb0 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3507ae96 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x413ed090 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x43e8486d wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x48435ed1 wl1271_ps_elp_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x49dccc44 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4a5844e4 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4cb5d883 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x57f9f187 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x58bbd434 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5c6cc3b1 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5dfbc748 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x68066548 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x71ae125e wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7584a315 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7ad2e512 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x82ea6322 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x84294cf1 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x88d0a212 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x88d56245 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8ed452e0 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8ff2ed6e wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9b3ee08a wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9e49ef67 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9feb68b1 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xae679e1b wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb805a0fa wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc330ed7e wl1271_ps_elp_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xceab3aa3 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd2ff118d wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd717ace8 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe16b37c1 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xece83a22 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf00b9738 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf41da692 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf4f5e70f wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfd852482 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x22ca38e3 mei_phy_ops +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x69b62c21 nfc_mei_phy_alloc +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0xb91361d3 nfc_mei_phy_free +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x2f601ed3 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x68267de4 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x7e46df89 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x95061e42 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x1c12b410 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x350bcd4f st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x88fdcfb5 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x8a5aef5a st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x8fd1b74f st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x9835a8b3 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xe47bd8d4 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xfc5179b5 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x03d88a78 ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x13c3f067 ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x45ba2863 ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x0c80bf9d nvmem_register +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x16e16764 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x224f51bf nvmem_device_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3866e217 nvmem_device_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x72a337b5 devm_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x7ba66918 devm_nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x93e24e90 nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xa408fe3c nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc697b0f7 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x73e8c6e2 intel_pinctrl_probe +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x91159c15 intel_pinctrl_remove +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0xd035d65f intel_pinctrl_suspend +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0xf5181c72 intel_pinctrl_resume +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x2520d5a8 asus_wmi_register_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x388a2101 asus_wmi_unregister_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-rbtn 0x51552fca dell_rbtn_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-rbtn 0xa060fe7d dell_rbtn_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_ips 0x46809fa9 ips_link_to_i915_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x56235c72 intel_pmc_ipc_command +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x75068282 intel_pmc_ipc_raw_cmd +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xdea07053 intel_pmc_ipc_simple_command +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_punit_ipc 0xa6c87106 intel_punit_ipc_command +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x111aafa7 telemetry_set_trace_verbosity +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x1bbf0813 telemetry_add_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x1be25432 telemetry_get_sampling_period +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x4294042b telemetry_get_eventconfig +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x4cb51f18 telemetry_pltconfig_valid +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x50c1c0a8 telemetry_get_trace_verbosity +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x5847f501 telemetry_clear_pltdata +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x611fd2a7 telemetry_read_eventlog +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x64c6a83e telemetry_read_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x73dcd24f telemetry_raw_read_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x82bb2dbe telemetry_get_evtname +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xb78846ce telemetry_set_sampling_period +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xbb9a2726 telemetry_reset_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xbf0d3d83 telemetry_set_pltdata +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xcbdc93cf telemetry_update_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xe7eb1528 telemetry_raw_read_eventlog +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x232b5238 mxm_wmi_supported +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x61cdf799 mxm_wmi_call_mxds +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0xe26032eb mxm_wmi_call_mxmx +EXPORT_SYMBOL_GPL drivers/platform/x86/thinkpad_acpi 0x706cdcef tpacpi_led_set +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x3ecf6cfc wmi_install_notify_handler +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x561c634a wmi_evaluate_method +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x876d29f1 wmi_get_event_data +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xb5a6ebe2 wmi_remove_notify_handler +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc9d4d6d1 wmi_has_guid +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xda29f8b0 wmi_set_block +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xfb882fb7 wmi_query_block +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x4d1b4c27 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x78166ce9 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x8e039a65 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0x6365870a pwm_lpss_byt_info +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xafcf8794 pwm_lpss_bxt_info +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xb563cdb0 pwm_lpss_remove +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xc34d815f pwm_lpss_bsw_info +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xf3b40a39 pwm_lpss_probe +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x0bae4768 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x77c5362a mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xddd3f9a6 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x330ba72b wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4e039089 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4ee1e048 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa80a3de3 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xb7641524 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xe34851ba wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xa29a5221 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x04fe5850 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0d61dbd3 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x10411be7 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x10715b20 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x10d276cc cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x19ac83e1 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1b982f63 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x256513ce cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x31869a47 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3355831f cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3614741a cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x36f4bb17 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3c6a0950 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3d9f27df cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x40349302 cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x448b1143 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4502bc6c cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x48ae972d cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x51dd9fe2 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x61a23fa4 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6bd41fa9 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6c8f5701 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6db06da5 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6debfcdd cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6f7fa790 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x70d77a01 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x74ac9f9e cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x751bfd30 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x761e5c3d cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7be0eab7 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8273c8bb cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x86f4adf8 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x89ad174c cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x92331ad3 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x99d50232 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9e2ba92e cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa475de18 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaa766db0 cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb233efef cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb31b11da cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb6519be7 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe4f09a61 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfc7c89a0 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfc855c27 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfd7932e9 cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xff354e2a cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0d86890e fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x13914350 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x16d02b29 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1e3bd742 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2eda742c fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x42c5472f fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x44cdf1e0 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x64bc1f63 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6cbbee84 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7d2a39c4 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x88f25cc0 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9206c265 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb316145d fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xce3ee038 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd5327371 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xebf1ac37 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x367f04cc iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x48b447b6 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x48ed768b iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x5416cdd2 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd6428a05 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe3b1c24b iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x011e9484 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0731b776 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0b6710e9 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0db4ddd0 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x18d578aa iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x203da786 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x23c27635 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x26f325cd iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2aeb199a iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x33529762 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x34f97836 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3ab6a36d iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3d7269c0 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x44681e4a iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4485a12f __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4ba59abc iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4e4110dc iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5e5ef9fa iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x618ebb97 iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x72f7ddee iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7b49336b iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x898aca82 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8af2ecff iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8cc02862 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x939a9e93 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x941e2f1b iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9500d70d iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9ceccf31 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaee963a6 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaef6b49d iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbc0ac449 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbe49d9c5 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf1f32d9 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc190b128 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc70243cf __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc880168d iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd250c2ec iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe4b2298a iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xebb671c2 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xec04c25b iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xed843b9c iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf8716b70 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0e478270 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x33f95d8f iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4e110adf iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x55b7b78f iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x747b38e4 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x79ca0b00 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x89099cc1 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8ff3940e iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9073deb3 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x92bf774f iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa43341e9 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa9569ad3 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc27aac8a iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc6ae8909 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdc6ed935 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe56292e3 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe8ed3140 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0a5e3b53 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x13973b09 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1459d5f4 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x15463d89 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1797e913 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x193815b0 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1eff5d50 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x215da0e6 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2b567cf5 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x550e832d sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x55eda8db sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5e52af92 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6727a0f4 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x88b04520 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8cd1ecc0 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa4caa2ae sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xae62f695 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb1074a7d sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb2704ce3 sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcb7fe8f9 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd613b784 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe475fc43 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe6d98202 sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfca8f777 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x00b983fa iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x01ec32d8 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x05563aff iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0787cae7 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x089864ad iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0981031c iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x107fd2b0 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1c4ff1c7 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1fc7ae96 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x212ff790 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2ac6922d iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2aef7d91 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x39a02fef iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x415c6652 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x433c3dec iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x45fe5279 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x599bc7a5 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5a41e2b9 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5b0d9c93 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5b692f60 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5b9801c4 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x69109347 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84019d8f iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8b822275 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9a42cfd3 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9c570089 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9e8448c0 iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8f82fda iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa9ef4d7b iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb2b9229c iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb73b8a18 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xba57ce0e iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbf513973 iscsi_is_flashnode_conn_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc003d10b iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcc805fb1 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd6ab4909 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe27cd88f iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7002f24 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf9febd58 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfdf79db5 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x2ab14991 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x39a3aad7 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x46961668 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x70f8dcec sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xc5b535d2 spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x09ef26c8 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x4e11e713 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x6c7c0519 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xbb79e0db srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xc73d30bb srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xc9bdffd6 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x0ca2803f ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x2eda71a9 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x3409bcc9 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x97e00f53 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xa6b8057c ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xb4919a1c ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xe990d271 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x43bff86b ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x7e3fbec7 ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xa4d0c10d ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xa650964a ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xb0fd3d21 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xd06e68de ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xf7615101 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x376561eb spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x3c617713 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xae230c49 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xc32b11ad spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xdd1426a2 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x10dc6e5f dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x2b41ae76 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xa49ded00 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xedd43325 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1d64ac91 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2492591a spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2593079b spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x30f19596 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3bbfe01b spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5bce93f1 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7d7a0eea spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x813395ed spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x829b1364 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8adb7447 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa0d1ea78 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa50520aa __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xaafb5402 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc75708e0 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc82e41a4 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd1e721ee spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xee8a718c spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfcb21891 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x388e052c ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x050668a7 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x05fba4cd comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0aeb1725 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0e183937 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0f6b5fba comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1d4cae64 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2102150f comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f4f1684 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3094aceb comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x32f21743 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3831c516 comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x457ac479 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4aab73f9 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4d59ae18 comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x642bdb72 comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6ab6d8c0 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6df1b75d comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x79a61cf0 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7fb0c547 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9609612e comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x98303237 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9af1336c comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9b78ec3f comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa6f72de8 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb0218dbc comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb1773ca4 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb78f5f93 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb791ce6a comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xca5e707a comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd06ae41c comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd2a1efa2 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd6bc7c5f comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe18e1f36 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe63f38cf comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xea3793da comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x0cc42f55 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x251603bd comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x308d95fd comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x373f2fae comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x5c8c9b77 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xa6843eed comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xbe4e3e53 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xf99aef8b comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x207927da comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x27f9aab9 comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x2aaebc2f comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x5953cb98 comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x770b6e05 comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x77c840d4 comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xd7f77cd1 comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x0777b6b0 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xa1acf007 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xc367f44e comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xc875844e comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xde5d2e02 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xe205fed9 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x508295fb addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xb7d388e8 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xbae0895a amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x6ebbc1b9 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x16510501 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x2f2588b9 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x422a054f comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x552404bf comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x670906ca comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x68280a57 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6e0af0d4 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6f7e5e0c comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x9f9e8b7f comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xa3102dda comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb1308b1e comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb8cbd872 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xd7415fd4 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x12d888b8 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x54e56aaf subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x7794dc58 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x0d68fcd9 comedi_isadma_poll +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x61f9b59b comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x6815a033 comedi_isadma_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa3d01a85 comedi_isadma_program +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa7ebb8a3 comedi_isadma_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x9d2d7ffb das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x277ba529 mite_bytes_read_from_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x29c7ccb7 mite_setup2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2c45b66c mite_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x43ca548f mite_get_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x49655853 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5797e25f mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5a040786 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x671c0a4f mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x678364c2 mite_bytes_read_from_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7574459f mite_sync_input_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7979f116 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xaad38835 mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb1e6f4c2 mite_bytes_written_to_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc6a530ff mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd19cb9c8 mite_sync_output_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd2834d4a mite_dma_tcr +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xde2133e3 mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe0a143f4 mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe1de43b5 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf11e3529 mite_bytes_written_to_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf7fb7a78 mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x2d4952f5 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x96e8e48e labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x0f44cf69 labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x2ce83aaa labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x4bdf3677 labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xb3e39c96 labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xbae9144d labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x43df697c ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x6aa99d56 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x738f182f ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x8c132732 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xa24b17db ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xe02a9459 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xf1551b59 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xfc5bf2f5 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x06d9b7b6 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x29b7516f ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x6f932d57 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x88bcf173 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x92e06083 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xf664cf3d ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x40b354b3 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x54fb68bf comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x5578b430 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x6a189f00 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x8497017d comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x987275e3 comedi_close +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xa52483cb comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xec7f612a adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x031b1961 most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x1146d209 most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x18b7f581 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x1e1f01fa most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x1f359592 most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x4215e550 most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x5a0da99b most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x64e05b8f most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x7e795091 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x8e3b74a1 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xc46c753f most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xc49eef29 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/rdma/ipath/ib_ipath 0x1514b2b2 ipath_debug +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2ab8daa7 speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4cf5936b synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x503fd4fc spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x5ab9a7f6 spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x649a5b01 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8b3aeb81 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x97af6220 synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xa82076db spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe87ffa90 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xedeafa76 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xf24271ab spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xffa8741f spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x0877dd5c visor_periodic_work_start +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x0ec0434e visorchannel_zoneid +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x149bde55 visorchannel_clear +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x1582a13b visorchannel_signalempty +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x2886afa3 visorchannel_debug +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x37626eff visorchannel_get_clientpartition +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x39fe5de1 visorchannel_signalqueue_max_slots +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x4063ea9d visorchannel_signalqueue_slots_avail +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x4cbbd3e9 visorchipset_register_busdev +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x4e4bfbe5 visorchannel_signalremove +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x563d32aa visorbus_read_channel +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x5e533597 visor_periodic_work_nextperiod +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x60aaf74b visorchannel_uuid_id +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x610d19dd visorbus_enable_channel_interrupts +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x6d2236e7 visorbus_clear_channel +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x720775df visorchannel_set_clientpartition +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x7948d062 visorchannel_get_header +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x7a4ec5c5 visor_periodic_work_stop +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x85b49e2d visorchannel_get_uuid +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x865e5ab6 visor_periodic_work_destroy +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x96401fe5 visor_periodic_work_create +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xa428b832 visorchannel_create +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xa77f3c8a visorbus_write_channel +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xac7771ac visorchannel_signalinsert +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xae9128e9 visorchannel_create_with_lock +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xb21866a9 visorbus_disable_channel_interrupts +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xb4aab617 visorchannel_write +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xca18358d visorchannel_id +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xcc89f91f visorchannel_destroy +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xd7edca34 visorbus_register_visor_driver +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xe3b5efe1 visorchannel_get_physaddr +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xebc59b20 visorbus_unregister_visor_driver +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xed313c21 visorchannel_read +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xf990f627 visorchannel_get_nbytes +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xfece836b visorbus_registerdevnode +EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0x247c9968 int340x_thermal_zone_remove +EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0x66bf36ab int340x_thermal_zone_add +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x5b471184 intel_soc_dts_iosf_init +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x63edb99f intel_soc_dts_iosf_interrupt_handler +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x96c831c9 intel_soc_dts_iosf_add_read_only_critical_trip +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0xe691cb08 intel_soc_dts_iosf_exit +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x63f00ce9 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x64f4c62c uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xd4d8313e uio_event_notify +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x2553db34 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x74f034d3 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x1cc56370 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xbec057c0 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x1bfc6284 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x52056784 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc4d6d924 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc6b71159 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xe3ced7cf ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xff5d16b2 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0adc6e89 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x12182335 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x13d1fc1d gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2b294ec5 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x90f131a8 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x986e195a gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa5a1ddd2 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xae076f8e gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb4f29a05 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbeace95f gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd38845ba gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd61c4897 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd7bc0240 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe22330ed gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xff3f483f gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x619375aa gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd1e47518 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x4c880ed7 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xb6b0e582 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xef0dcebd ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x17253077 fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1bf166eb fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2535c086 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x41a7fe49 fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5255b366 fsg_common_create_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5cbe1323 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6713ab02 fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6a148544 fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x748f013a fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8e191733 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x908d7851 fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x920566d9 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x92e4fdc0 fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd0dfdb3f fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe623c788 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf2655d6e fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xfd04c716 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4ddd26ab rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x52da2f28 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x59ec8feb rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5f9da52f rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x69c58f47 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x70a60e07 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7377e5fd rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x85089fb1 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb4aa1a53 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbef80c73 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc48b0bbb rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xccf812a6 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdd4b4eb9 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdea103bd rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xeff9dec5 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x04e70fee usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x081db4c9 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0f1859ba usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0f481a21 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x126550b5 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x29a57856 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4534fa61 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x69874614 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x719fab7e usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7a0d711c config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x84cf33df usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x91faac0e usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x95907679 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x98b91cce usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa3218b41 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xae6ad129 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xaf0ecfba usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb57dfda3 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc3c457cf usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc3dcf116 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc8d187c0 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xce1c96ae unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd5868984 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdef10143 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdf736660 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe199b4bf usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf1ab100f usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf998a53c usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf9bcacae usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfc2ae9b2 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0a5fbced usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x11741784 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x28f12e7e usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x44665416 usb_udc_attach_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4bb74b45 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x62d1a6a1 usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6813c979 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x94710ba2 usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x96726756 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9ccab1c5 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4744dba usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd01e1796 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe3b9d533 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe63c6f80 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x14829d33 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xdc32e9c0 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x1e1a1030 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2db1d042 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x488330be usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x55f5088a usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x57f1d740 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x68ea0a01 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xbb003a02 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe73d35db ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf4b4a111 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x499ea075 musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x2d465b91 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x19e1ce27 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x17f4c53f usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1f567929 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2b28ced6 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2d7e315a usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x36b8b751 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3916895d usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3e956c0a usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x560247e3 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x59266267 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5ea63bd8 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7cdcaa59 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x88c7187d usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa7d74803 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb5d829e2 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbaf00be6 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xca112e6e usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xcda9828c usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe15675c8 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe29736ef usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xeabca588 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf5b8e9ce usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x04e64200 usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x04fedffe usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x11d4249e usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x13ed5443 usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x22467a88 usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x27dbf95d usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x353978d2 usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3e78217c usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x45f88564 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5acf68bd usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x62b50fa6 usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x663332d5 usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6723246b usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8f8a2b5b usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd12593e9 usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xdcef4be5 usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xdfcb231c usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe1561d63 usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe3389044 usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xed4da7ef fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf1fdec47 usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf710ce23 usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf9895fb9 usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xfd9af100 usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2e430b3b usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x318d4450 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4964f653 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x520b3c40 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x56b29371 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7740ba2d usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa907cc47 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbb6884c6 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbff3d0f3 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd19c0a0d usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd9f7c949 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xde82ca8e usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x01f7f977 wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x06e63110 wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0bd816f0 wa_process_errored_transfers_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x122f15ac wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xb8393d34 rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc6a35d9f wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xeac816e1 wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf564a79f rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf8ff83ce __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x05f34861 wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x16a15d6f __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x173ac9b3 wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x23b89d7d wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x35f2465d wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x427c8fd3 wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x5ca7a08e wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x68cd34d8 wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7160e743 wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xbae25c07 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xbfb445a1 wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xc3f8c316 wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe0d8fd82 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfdc3cfe0 wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x32ce357c i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x3cc1d3d6 i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xdb3c000a i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x180df6b0 umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x511dac48 __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x8f7cbdcd umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x9e1dbde7 umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x9e66ce00 umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x9f9574fa umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xa5cbffeb umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xda1581e5 umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x06765f88 uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x072f36a0 uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x09a6f937 uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0d78016e __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0fc02440 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x13cea5d5 uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1a4049fd uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1b7854b7 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x20e11437 uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x24ca8232 uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x277cdc05 uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2c87be97 uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x30893591 uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x333fee2c uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x396a2e7a uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3ab2b0ed uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3b59e664 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x40f326ba uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x439f45c0 uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4540b7cf uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x479534c5 __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5550a2a5 uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6661c734 uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x748567a5 uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x77f5c956 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x816b9e92 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa0b52e5e uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa963f20d uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xac97316b uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb0c63b5a uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbb21c36d uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbec0c8e4 uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbf22c20f uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc4bf0a28 uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc65694c5 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc95201ed uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd4d2765d uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd715e41f uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf4fd31d3 uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf78e8e47 uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xff28f3bd uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/whci 0x0f0749b3 whci_wait_for +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0836b63d vfio_del_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4023c4be vfio_add_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4a78cd79 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4d7623cd vfio_external_group_match_file +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6a6ed456 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd297c66f vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf6e3ff51 vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x43c5ade0 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xf6962e93 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x01970115 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x033ee020 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x132b2336 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2245369b vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2245643a vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x31511644 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3625763a vhost_init_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x43cf4d98 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4cb96f77 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4e01be74 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x546d10ad vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x584529b0 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5ec6551c vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5f74a213 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x602a8289 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x68ebc4d1 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x71981b39 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x77dda6a6 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7bbf080c vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fab7f0c vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x91e35994 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x94e38683 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9a1f0125 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb592fa24 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbeec2f28 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc459dc4b vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd57ece0d vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd65fcfff vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd74fa6b7 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfb916e80 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/video/backlight/apple_bl 0x2c63e051 apple_bl_register +EXPORT_SYMBOL_GPL drivers/video/backlight/apple_bl 0xdab0f892 apple_bl_unregister +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x18226f43 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x194ce5b5 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x58324077 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xb29588ea ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xb715222d ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xc13c707e ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd4296df8 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x1f22fb1c auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x5df69a47 auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x6b786c6f auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x96d9af24 auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xa5709089 auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xaf9a85d4 auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xd03ba67c auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xeb2f313b auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xeb4f9b59 auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xfec611ad auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x139e3b1e fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x7269c204 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xd3642d91 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x6b79b39e sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x756743dc sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x016e6c20 vmlfb_unregister_subsys +EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x90c018c6 vmlfb_register_subsys +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x22a7af24 viafb_dma_copy_out_sg +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x292da7a2 viafb_irq_enable +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x30cc9311 viafb_request_dma +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x31469540 viafb_pm_unregister +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x79e6190a viafb_irq_disable +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x9c96ecf7 viafb_find_i2c_adapter +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xb4f863e6 viafb_pm_register +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xcaefb732 viafb_release_dma +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xfff2dfd2 viafb_gpio_lookup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x00088dd2 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x23d4de74 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x3f177a0a w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xca0f39b5 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xd21ff68a w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0xe19956e3 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xea413082 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xf9f5b490 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xfbd41297 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x4f9b932b xen_privcmd_fops +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x2f352ae5 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x8d247839 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xb00541c0 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x27bacf07 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x449c2fd5 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4d0af966 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x5c9c7776 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9b5912fb nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb9919f52 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xeafd7c7d nlmsvc_ops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00b2e5b7 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x010f82b1 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x02c6ed56 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06025724 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06d58609 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07631047 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08855367 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a916bf6 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b3d0756 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c98626f nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d1efc4a nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0fa89d80 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10b4626f nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13753b01 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16726f00 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x167c927a nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a1b13b8 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1aadd502 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ecab46f nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21233953 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2215f827 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23c388c8 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28099ffd nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x283eb58c nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2bdcc8cc nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c09a893 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2fb696ff nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3484316f nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x396013c9 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a253c08 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a774132 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c29a8df get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c49c7e2 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3dd47789 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e10d33b nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e9b62aa nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f663f26 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x404bc43c nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x432ab74f nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x43d878f7 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4425aeca nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45705d13 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45ab65fa nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46e88901 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f77292e nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x532edc2e nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x537af83d nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53c8d4fb nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55c2a742 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x596df71a nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x599edcd9 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c290e89 nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d35ede7 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ec9e679 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62198cfa nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63d64cd4 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67986a70 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b38e699 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c7d848b nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f005c2f nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7168db6c nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x721903cc nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74119470 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76ee56e6 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x770334a1 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77245f17 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x784a6a15 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x799d9eba __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x79e5b2ca nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b73ccc5 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7bea54f0 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f48c1b6 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fc6eecc nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x814e021a nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81ba0698 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87dbb8d6 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8861ac36 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a24dccc nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8fffb2ec nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x949f5483 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9549ff5a nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9564ff18 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96dc8647 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9affe027 nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b93da55 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f03c304 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9fc24f71 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa361b411 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa80342b5 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa4c4f2b nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xacb4e10e nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaebdb66d nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb02b5a74 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb376b22d alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3984960 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb520cf06 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb871423a nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbaf05686 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc59f3fe nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe7dcbc9 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbfcec814 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0c7a55d nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcab0040e nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce2be313 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd131f564 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1ab67fd nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9adf92f nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc0ea18d nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd02cf51 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd692206 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdedc1f7a nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe19c2d38 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe54fd4c7 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe89f0831 nfs_file_fsync_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8a98d78 nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb5fa33a nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xebbf41fb nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec2fdf8d nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xedff58e2 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf0a9a283 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1679cc1 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2bca5fc nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf588145a nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd5732f0 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x20eea84a nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x00d27d54 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0360c134 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0719e9b1 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x09442965 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0edb3d28 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1093b108 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x13708fbf pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x14370df2 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x17889f99 _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x24dd818c pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b6e5f19 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b8eb322 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3478f8b4 nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4777f0b1 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4c15cfbb nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4f3c6888 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5199f89a pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x55bcf0f6 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5f5afa4e pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x613718ad nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a9c1203 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f47067f pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7101b6cf nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x85e8f5d1 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x86dcf55e pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x889103fa nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c29952b nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x94b60705 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9bca6fd4 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa084f81d pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa312d253 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa3bb0406 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa422f719 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa71bc093 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa857f655 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xad3a427d nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0278de0 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0480ef3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb33cf6d2 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbb45e6be pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbbccebda nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc79ce1e6 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcceb2aeb nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xce1cd38c pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0b5b7dc __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd1bf4b74 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd89b116b pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd885c89 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe263e0ca pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe4d3b95f pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe9176c9f pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xef177656 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeff15085 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf1002d16 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf13e13fd pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf30f6962 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf4a78fea pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf507a544 nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfbcad741 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfc010439 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfcb78250 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1871d2f6 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x3f0bbcdf locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xa4a2c6e0 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x21611e4c nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xef0341d3 nfsacl_decode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d62fac4 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36a28a9e o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x3879f2cf o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6bd121d3 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa5e93d91 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa8432e33 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xce8bf057 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xeeb51ead o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x39bce11b dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4b7bb452 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x658d145b dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x8000b8f0 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xabdbd159 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc22c8a49 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0dd169c4 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x58d22e3a ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc7260236 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb +EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random +EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0x53e9cf99 _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait +EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop +EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end +EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init +EXPORT_SYMBOL_GPL kernel/torture 0x6f90cfec torture_shuffle_task_register +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0x9f8b1900 _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin +EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress +EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch +EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch +EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch +EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x893f921e notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xc7293205 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x201d8ea3 encode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x29fa419f decode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x0adcb055 base_inv_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x221df614 base_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x4da25bec base_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x63f42b6a base_inv_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x76203267 base_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xca3140ce base_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfa5eee0a base_inv_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfc02472a base_inv_true_key +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x4e9cc652 lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x8572ce0b lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x64d41e6b garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x65b0975a garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x7ed817cc garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x9094003a garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xa0ec6ba5 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xbff6ea2b garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x3c8405b0 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x573ee572 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x8388bd4a mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x99a51557 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xb7e3125c mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xfcb1515b mrp_register_application +EXPORT_SYMBOL_GPL net/802/stp 0x5ed813dc stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xf1684b12 stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x420cabd4 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0x65f21358 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier +EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier +EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast +EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr +EXPORT_SYMBOL_GPL net/ax25/ax25 0xc3e6901b ax25_register_pid +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x207797ec bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x31b88865 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x79f810f0 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7b38d353 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa32f2a0a l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa6769d05 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xbfbde97f l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xdee167b5 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x131b73cc br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1b51158d br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3dcb1e23 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x50d19fb0 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9b1d5d8d br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa48f6427 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xcb5dc6f7 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xffe32249 br_deliver +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x204bcb0c nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0xd437fe6c nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0a11e3e3 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x11caa1fb dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x139a26b2 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1410e8eb dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x16861659 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d3d372f dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x23672cd0 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2b6be7d2 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x316da947 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x31daa6c1 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x33319b66 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x43d59af2 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x49f2d695 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4a7cb791 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4e2d4d99 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x58144322 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59169ce6 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5bc4561f dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5f6ba00e dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6ad49876 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x73e79f04 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8da9cc22 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9c41150c dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9e25b22d dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb0ec73ee dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb63137b4 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb7393153 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb89fa1c2 compat_dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc3724633 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcd1d4070 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xda4405c2 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe4320819 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe5e45385 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xed5c63a0 compat_dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfa9759ff dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfc537ec8 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x0fd91eae dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x2f3a25b2 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x555554e0 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x5ad184bb dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe84f761c dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf0f1daa1 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x13ad690e ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x19922390 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x1f892808 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x72558576 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ipv4/gre 0xa3e113f2 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xa5dbe332 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x151a1a37 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x25412bac inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2dbec952 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x423fff9b inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd7c7aa32 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xeb68a4b6 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x9fad29fa gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0cdca2bf ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2ebb79c6 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3b411c7e ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x431485ef ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x56b2eeeb ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6fbd2014 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8a7e296d ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8c2eb12e ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9015e7f3 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb611c610 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc285ee5b ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcab46598 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd7c05e6d ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe2f6184a ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf1943fe4 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x20ba082f arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x0dfd7c45 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xb45d4d22 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x29b49bda nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x2cc6d78e nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xaa43e82d nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xdcb6ef2d nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xf1f5ce78 nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x78b39ab3 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x0c2f6a87 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3be91eac nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x9d34e7bc nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa33fd5f5 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xedf1727c nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x993c74c2 nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x0b333622 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x26592890 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x8c032a0a tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x9f120761 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xba520551 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x453ab1da udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x6504fad5 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x6d910978 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x6e1ca2ad setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x24ef7131 ip6_tnl_dst_destroy +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x3af5823e ip6_tnl_dst_reset +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x3c920ce8 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x5d77d54b ip6_tnl_dst_set +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xb37c4029 ip6_tnl_dst_get +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd5f432ec ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xf6c9e59a ip6_tnl_dst_init +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xa94a85a8 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xd5b2ec1c udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xc4f7aed1 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x29aab61a nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x49a3d191 nf_ct_frag6_consume_orig +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x8666f9a9 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x5091f977 nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x5359f6dd nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x788b4ecd nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x84755b28 nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xd5fedb85 nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x711f1fdc nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x18f17226 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x59c26671 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xcd8a0937 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe452850b nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe712cc0b nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x0e298a59 nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x12091f79 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x24e3a6db l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x278df277 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2eebda4b __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3ad4714f l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3ea2a6fb l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4aa78758 l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x56495141 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5c74315e l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x62da3de0 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x72b5fe83 l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x791f98a2 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7be4d919 l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb123087a l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd3bfc237 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xde40c8b0 l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x0cf112a2 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x00b3ed17 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x023347de ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0b76454f ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x11e1f72f ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x163e59e8 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1d2be057 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1f216d2c ieee80211_set_key_tx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x267ef6c5 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4cea265b ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4e2b2da9 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x58a151ae ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6baad18c ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9e154b8c ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb247864f wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcb4eb768 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcc424807 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd4393a0a ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdb29ea5b ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x3464c59d mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x44a69a55 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x73110423 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xfb0d068f mpls_dev_mtu +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x03e8a132 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0abc7e3e ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1b8b8ff4 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x308a1c73 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3f96a061 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4ea837f0 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x57958aea ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9d6df8cc ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa8120ff0 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcd075f86 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xce3e1c39 ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd28ceb7a ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd927e2d1 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd9391a94 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xddbd66d3 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xed73b629 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x5a0a61f5 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xa9790bde ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xab568104 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xf55def51 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x00e7825e nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c43b437 nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0cac8429 nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x13333ff9 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x14558fcc nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1497885b nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1e2cc460 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x21aab3f3 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x23f18be8 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25ad90ac nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x264daa84 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2736161e nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2d3d03b6 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3261e150 seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x33441320 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3756a818 nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3a38e1d0 nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3a7e2875 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b28be7c nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d8e8fe9 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x45303951 nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4a9a7a0d nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4d3156fa nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x53434385 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x546dc4b4 nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5605df6d nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x570c8521 nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x603546c0 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x65aa4443 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a18dc58 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6fbd19fe nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x747fc17e __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7503168d nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c984a1a nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x832011cb nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x882397df nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8b6bb10c __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x91aca217 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x92c4b749 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x99adf8f5 nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x99c1dda2 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c2f6b05 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa1e719bc nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa6f616ba nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa81457e3 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1a8109 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb0b1c412 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb1167349 nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb3e9ffb3 nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb416e56e nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb43c41e9 nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb4f7843b nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb91e5e45 nf_connlabel_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb96ff7f4 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbaee3719 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbe30e77a nf_connlabel_match +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc0fea649 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc31fbe37 nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc3e32d59 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc95a9db2 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcbde17a4 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xccbeb51a nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xccfcb596 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd0a90284 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd70351cc nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd917bba6 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda0edb8d nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe0335943 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe095483a nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe1925d8f nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeedc2368 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf0ef9ea5 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf129dcb5 nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf1c57025 nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf5ee8803 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf8733f23 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf967e0b2 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfb39bef3 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfeac72c3 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xffe24b30 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xbc089f1e nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x9ce6f94e nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x617a215a nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0b8d7b15 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5d22fd33 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x62c374a5 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x66c478a7 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6b0f4f38 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7cc5feed set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8e247657 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x94de8e39 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x9bdc399d nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf5a6b82e set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xc7c99ed3 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x033a0c5e nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x51e11dbf nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x66dd48ef nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xd5259c9e nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x69aab6a1 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xd20e9d53 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1e4e35b1 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x35de0616 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3f0ea1da ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb8b8d129 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc77173ed nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd06bebfe ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xebf7e349 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xd9e57bf9 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xf87bbe1c nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x467e896c nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xd75d601d nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xe0857a35 nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xf867b5a7 nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x38699250 nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x416ad84e nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x55384806 __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x581e7197 nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb7191952 nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe816847e nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf024ed39 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf152d599 nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfdd233ec nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x6f637c46 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xada673f7 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x74a58334 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x76b57018 synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8841d39b synproxy_build_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0d91d9ec nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x21d0ad4a nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x295d41e0 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2b5a1fae nft_unregister_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2e428d06 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3c922c8d nft_register_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x63249a95 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6a26b1a2 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6d58b99f nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6e3efd08 nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x716adf9e nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x77013d61 nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8405e6b4 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8a725de0 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9b156d2b nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa2dd1a51 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa6d24b45 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x11db3352 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x15120981 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1f381d8e nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x76448d53 nfnetlink_alloc_skb +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x8f60d113 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xb6f8be98 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xda8aec06 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x04ada63b nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xe0d73d21 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xf264e030 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x0e6b39d1 nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x25faefe6 nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x4022e57e nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x87bc7a43 nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x20c88aad nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x4fa0e1bf nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xa0001649 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb2553c4e nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xe38d09b0 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xe6381b5b nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x21e5403d nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x51c3a204 nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xe2fb1c0a nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6dc39b8e nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x74e166c6 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x108bc7ef xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x161d1417 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2c9b2540 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x306c808d xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3a1a1f84 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3ad5cde0 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3bbe7b3a xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4a121873 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5a2f74ab xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5cf81f81 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f82f1f7 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x691a6d69 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x73cee41e xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8e44c016 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb471c669 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc200b493 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc8a5a9b4 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcb27b72d xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xccaebfa1 xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0b4971b xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe5d7cde3 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec24fd82 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xecb73661 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf31fd269 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf3836110 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x4c32c169 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xb7459345 xt_rateest_put +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x14ef8334 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xb9bfe74a nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xd7deb309 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x41108243 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x6eaba6a0 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xf59ce69f nci_uart_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0e8f6238 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x10217d38 ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x2bf0e269 ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x36a96530 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x76381fef __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8daab7c5 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa362f2b9 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd6e9e6ba ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd7f87a21 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x05762f6c rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x1e16e792 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x308ff5e5 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x4434b724 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x49409b64 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x58457511 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x59efbe21 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x68f53351 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x706b0efb rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x7a03786f rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x7bc62829 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x845c7cd6 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x86dff261 rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x8b04cc86 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xac3db34b rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xaf3abeba rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xcd487104 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xd436f8ea rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xdc3d1368 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xde673448 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0xeaef569d rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xf193127f rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xf3821fcf rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0xf4b196b2 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xf8fac400 rds_send_get_message +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x944ae3b8 rxrpc_register_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xcb17c69f rxrpc_unregister_security +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x46274090 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb9cb41dd svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xe2c4b5e1 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0135ab7d rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02963132 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x039e18ea xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0473e023 rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x067243e1 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06c0fa49 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09473932 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a9a2936 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ba81cc9 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0be3c4a5 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bfa2267 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c7f5a3f xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ec773b5 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x119ccef7 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11efa72e svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12a54678 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14196661 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17e072ff svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c8be5bf cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d0aaafb rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e6bc598 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f42dedd read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2235ee0c rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26443446 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26d23c1e rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2737a6f8 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27619378 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x276b756d rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2873cf16 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29bc9056 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c6a5c27 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d47c9c6 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33e709e8 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35e5ba75 rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37a3b0e4 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38b16f64 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a8dfe62 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a8f50ee svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b72b245 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bd0552e cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c2b12a3 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c46572e rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cb34612 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e9274b1 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f560c10 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40fee90d svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x429866ff svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4636f899 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46eb534b xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4831d012 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48cd7994 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x498cbace sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b97673c rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d11462a xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dd3161b rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f7ffc16 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x505acc5d rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50974303 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x510b2d3d rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52749154 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5393323f auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53d85ef7 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x546cca7b xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5491fc24 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a30b519 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b130be2 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b3efcc7 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bc5d7dd bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cc6f66f xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f70e786 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f9f9356 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6280fad7 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x630654e4 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6413083a rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64ca3eab svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69af3e7a xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ba0fc3c rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ca3e19d xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ea0ffff svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f0926bc rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fb846cd xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x702ac044 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x717ec341 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74505013 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74ae6635 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x750d246c rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75e27f27 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7722e167 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x776da7fb rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78c8d2bd xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x793094a9 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c3a5ab2 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c4e2ab0 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c5a422c rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x829acb9a xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83279e6b xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x852b6c15 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86e8c0a5 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87056257 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89b58c1b rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a8a5679 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c43e4e2 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d413e24 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8dce9bdb xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e381ca3 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e50b828 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f4520d8 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90776e0d cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92a7cf39 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92f6b08c cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x964e0f59 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x986417e2 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9921291c rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99d89b6d xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a4949f6 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a58e7ba svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b6d2626 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c6329bb unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cf80410 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ee88fff rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa089f652 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0de995c rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa28e7fd6 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2b66b53 rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4542183 xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa50a2847 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7a28ed1 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7bab75d rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9b08a34 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa531944 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa7aac1e xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaaf83b0a svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabaac56c rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabae9cd9 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac2a5431 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacf044ce rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacf527af rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad56dd52 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaff481a0 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0b211c2 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6b325d0 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6e6ed7f svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6f54fee rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb788bc4b svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb83d5d67 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb894d2a3 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8dcca71 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9a237b0 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9ff9cb3 rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba338fbb xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc20dace svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd4506cc sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe896426 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc02cdc2c svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc463e886 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc513806c xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7010d16 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7d749bf rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc940ec1c xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc7262ab xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd246a96 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcebcebda write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd14c8eb9 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd14ef264 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd17835dc rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2a2bbd7 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2e72db3 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd44ebce5 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd53dec04 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8afef12 cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb3d94ff rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd144a24 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0792b66 rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe10425e0 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe12ff222 xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe18ede21 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1aefa4f svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe248c86b rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe634fccd svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6ca9c77 rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9b1e1aa cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea4b2f3b svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb6c1f84 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebf3fca9 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed378116 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee8c244d rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2b49304 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf442546a svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4e0ba9e svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf51d0323 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf55db780 xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6113b5e rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf80d4c02 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf81aa785 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfac5de62 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe41eb3d __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe7c702c svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffd1e0db sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0d2fb6dd vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15bdae95 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2a45fe67 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3a4b8594 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x595b559f vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x69ca570b vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6b34f2bb vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6d72ffdd vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x80bacbe6 __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x970b77bc vsock_pending_work +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb9897a79 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd0f154bf __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xeddd614a vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf0b58738 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/wimax/wimax 0x06421d63 wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0x487fc6e9 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0x4ce5747d wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x5511ee00 wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x70e2578c wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x77094114 wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0x7f551198 wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0x87594bc6 wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0x8a17076d wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0xb86b690f wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0xc17a94c5 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0xdc2096ea wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xed0011b2 wimax_dev_rm +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x09d630f6 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x465ec787 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4e3959a8 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x56032672 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6b64eed0 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6f29126b cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7702fdff cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8f257aae cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa59f7c8f cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xacbaad5a cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbded1c25 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc384209a cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd5121c7e cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x47c24478 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x5c614075 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x912f1ae0 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xfdacead5 ipcomp_input +EXPORT_SYMBOL_GPL sound/ac97_bus 0xf276c8f7 snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x1be218dd __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xd4bb070e snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd 0x1d0ad32d snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x48490371 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0x92d0069b snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0xc4c2c725 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0xdd40339f snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0xee0f5de5 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xfe8b28f9 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x2ad21ffc snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x8eb3e674 snd_compress_deregister +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xf6327eaf snd_compress_register +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x1b447983 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x528bf021 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x68cd52cd _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6e98b682 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7ecdbd56 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa2ee4ffa snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa4dc07eb snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xcf67293b snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xeea95e1f snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2a6ac9b7 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2b67c75f snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2d4c36bf snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x57fdce11 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x7c200c13 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9657f8ec snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc01c2492 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xdacb636d snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe01b67a9 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe88cc003 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xed127e35 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x20b45a23 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2d25d621 amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x84715bf5 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xae859e86 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd0947e90 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd9ca5341 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe2404fbb amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0727dd8d snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x122f37d4 snd_hdac_ext_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x196e3e41 snd_hdac_ext_link_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1ce378b5 snd_hdac_ext_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x216e5dad snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x24940094 snd_hdac_ext_bus_device_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x38db0b5c snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x438da405 snd_hdac_ext_stream_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4486cb7e snd_hdac_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4b211d32 snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x57673f93 snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x60a51894 snd_hdac_ext_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x63e21cae snd_hdac_ext_bus_device_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x65e0fef2 snd_hdac_ext_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6c975233 snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x78664366 snd_hdac_ext_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x810c0b62 snd_hdac_ext_link_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x89e4c439 snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8aa5b678 snd_hdac_ext_link_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x984cb2ab snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9ae3e876 snd_hdac_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa733390d snd_hdac_ext_stream_set_spib +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xad010719 snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb49ccff3 snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc1781099 snd_hdac_ext_bus_get_link +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd032ab49 snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd6213aeb snd_hdac_ext_link_stream_setup +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xddd39355 snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe7a7404f snd_hdac_ext_stop_streams +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xec58d8c6 snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf4bc6914 snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xfae2ddc5 snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x03afc92e snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0410c355 snd_hdac_i915_init_bpo +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05a3ef09 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0a985156 snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x14871f3f snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x17288330 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x189474c0 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x21c82a54 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x274d803b snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x282b729d snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2fdf9f70 snd_hdac_i915_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x32e76e3d snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x37510c87 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3d692a2a snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x42029d93 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x46a19c21 snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x47960252 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x499499d9 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x49d7d139 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c8eef75 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4e040cd4 snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4f52599f snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4fb181ec snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5230df36 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5434bf41 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x54596642 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5484b964 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5591d5db snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x575bfc3a snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x580d71e1 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x61fba5b1 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6587d448 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x664db731 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x676bc344 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6950c1d3 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6997af31 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6f81210f snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73187668 snd_hdac_i915_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x750d357e snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x79c68183 snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7da5f886 snd_hdac_i915_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x800f31aa snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x80499d6a snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x82ec0e2d hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8884fc2e snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8eb87ad0 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x90756ff9 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x92a45ea0 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x95b2561c snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x96959122 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x98f2227a snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x99c697a1 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9d21e7c2 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9d3cd08a snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa07d899d _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xadcb1916 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb0be40c1 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb1bd4dea snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb933eb2a snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbbaff0d0 snd_hdac_get_display_clk +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbbd14aec snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd4c7a99 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc1f65eb3 snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc304526b snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc66069fd snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd5b69ce8 snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd9ef5c38 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd8395ed snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdfd11752 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe707ca83 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe76111a8 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe97c522d snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe9d2a115 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xed396a6e snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf4efcda2 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf6e468e5 snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfc407394 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfc8a0cd7 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x116bb0f5 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x1f5376a9 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x50c61c3b snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x54528aeb snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xbf7878a9 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xf9c67db7 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x03758530 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0402db5a azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x078a0582 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0960322f snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a35d909 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ae59ff9 snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b627f50 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ee05c29 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12c96f26 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15311336 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15766e76 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16e072f6 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1da83ae3 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ddbce6d snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x20ebdd79 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x210ee3ad snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2192ecf1 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x230614ee azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x239df4ec snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x23d5feaa snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2495dbc3 snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2797a60a snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a446593 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a9abbb4 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3aa9c768 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3bba1b0f azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3be3f28d snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x40bffa87 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41b9dfdb snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x430ec919 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x44a4896b snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x460eea9b snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x471bda2e snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47230e2e snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49e7180a azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49f1b435 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ec01298 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52f20ae9 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x53072004 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x543b1428 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x54de78a1 snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x580f6690 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x593132a8 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5e48ecba snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5e6df704 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6042c285 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x614c8553 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6175615c snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61dd334d snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64100aae snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x651f1fc4 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x666d6da2 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x66805928 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67fae8ed snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d06032b snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d24f2ec snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x765d94aa snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x767ad33f snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77ace9fc snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78532b1f snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7aad5fc5 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7bbc7547 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7bc9e151 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8484273b snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x856d159c snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86970033 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8724e738 snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89c82bee snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b6428ac snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8baea060 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x90ea9a8a snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x92653b97 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96108037 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96e1c706 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a31680a snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9bc14e74 snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa30b6f57 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa68aa8c0 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa6f82649 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa80f155d snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaae8be1b snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xabc7179e snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf5c26a4 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1163556 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb246a23f snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4cc19b0 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7dd9a51 snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb90c2401 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbcbc04f7 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbea6187f snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc0b5d1a4 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc468795b __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc81d647d snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc8739cbd hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc94427a snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce99ae46 snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xced1a779 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf5a6e18 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd10f5cab snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd1c86d69 snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd2f8b42a hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd3720694 snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdaef49ac snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb449f19 snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd977eab snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xddbac971 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe77d3076 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe98b87f7 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb628ab9 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xebbdc053 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xedb0b7d8 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeeae47fa snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef0f8512 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef619cd5 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2c37352 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf5310424 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf652174b snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf85d3946 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8e0f439 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf9587702 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf966eeff snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf989f56c snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb9d8e9d snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfbee0b8e snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0bd69fcb snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1602b7c0 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1d7e7c31 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1dece41c snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x23635c0c snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x32a0bb11 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3cb8f321 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x44d39d23 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x45e21ebc snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x51bbb4fa snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x587c3a01 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x683faef6 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa7e9d413 snd_hda_get_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xabbc2c0b snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xad9f6ce7 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd7a5d169 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe57fbbbd snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xeb3fa9ab snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf3882f47 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf3da45c7 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf6b14337 snd_hda_parse_nid_path +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xd9ee7202 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xe6958cdc cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xba7cbcc8 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xe7ffd0d3 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x325349fd cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7b2a039d cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xddaa1776 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x54d2fefc es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x7f8aae09 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x04028274 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x0d12f399 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x668cf2d6 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x9a9c330d pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xbe6b6cd0 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xa7aa810f rl6347a_hw_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xade4bf4c rl6347a_hw_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt286 0x5c7daabc rt286_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x4632d1ce rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x5a788a36 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xb384d870 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x4398caea rt5670_jack_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x83b60f35 rt5670_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xc81ffd7f rt5670_jack_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xc9915e35 rt5670_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x5369aaad sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x9965ebc5 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xc108101b sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xc8e061b3 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xf5f3358a sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x18474e6a devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x131a5db4 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x7baf56bb ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x0f618a55 tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xb55f2802 tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x4f308843 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x0545439f wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x0d709f06 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x8bb3a092 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x8c053d4e wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xdde99d9a wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x324c0cab wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x52088869 fsl_asrc_get_dma_channel +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x8d8602b7 fsl_asrc_platform +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x30693bb7 imx_audmux_v1_configure_port +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x58631dab imx_audmux_v2_configure_port +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-mfld-platform 0x1ecbaa9d sst_register_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-mfld-platform 0xc00b934c sst_unregister_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x2095a146 sst_configure_runtime_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x25bfe21b sst_alloc_drv_context +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x82d98b8c intel_sst_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x882d4c66 sst_context_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x94d5f1dc sst_context_init +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xab14edd5 relocate_imr_addr_mrfld +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x0e40f7af sst_byt_dsp_wait_for_ready +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x70a1ff93 sst_byt_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0xded07a41 sst_byt_dsp_suspend_late +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0xe10632dd sst_byt_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0xe2da224a sst_byt_dsp_boot +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0066abcb sst_dsp_ipc_msg_tx +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x01ea14aa sst_dsp_dump +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0e78b57f sst_block_alloc_scratch +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0ea91f10 sst_fw_reload +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x135dbb6b sst_module_runtime_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x176d8473 sst_dsp_shim_write64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x17b6509f sst_dsp_outbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x17bd680e sst_dsp_dma_put_channel +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1a3ac2d1 sst_dsp_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1b5e8b82 sst_shim32_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x281e91ad sst_dsp_reset +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x32963ec1 sst_block_free_scratch +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3adeea8d sst_dsp_shim_update_bits64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3b46697e sst_module_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3fe87dc4 sst_dsp_dma_copyto +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x43acb439 sst_dsp_shim_write64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x48d121ad sst_module_runtime_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4a045773 sst_shim32_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5138f48e sst_memcpy_toio_32 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x515b7310 sst_memcpy_fromio_32 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x526444ec sst_dsp_shim_update_bits64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5c1e219a sst_dsp_dma_get_channel +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5d81758f sst_dsp_shim_update_bits_forced +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x61bc6499 sst_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6c5de75b sst_dsp_ipc_msg_rx +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6e1fda1b sst_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x74687e39 sst_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x76821c79 sst_module_runtime_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7a8cb304 sst_fw_free_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7cd15b5a sst_module_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7ce77ba8 sst_dsp_mailbox_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7e7296d3 sst_dsp_shim_write_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x80079304 sst_module_get_from_id +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8cb92017 sst_dsp_register_poll +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x925236ca sst_module_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9468ff82 sst_dsp_shim_read64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x94f758c4 sst_mem_block_unregister_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x96962854 sst_dsp_shim_update_bits_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9d4c422a sst_dsp_shim_read_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9eb8ed5e sst_module_runtime_save +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xaddd0bf5 sst_dsp_dma_copyfrom +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb18fd74f sst_module_runtime_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb37020a6 sst_dsp_shim_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb54b597f sst_dsp_shim_update_bits_forced_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb6125be7 sst_dsp_outbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb7d44277 sst_fw_unload +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbad661c7 sst_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbcec5387 sst_shim32_read64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbe3aadf3 sst_module_runtime_restore +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc4d5b903 sst_dsp_stall +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc863e2f9 sst_dsp_shim_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc879d115 sst_module_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc897025a sst_fw_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xcf76b4ba sst_dsp_shim_update_bits +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xcf935374 sst_fw_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd009edf8 sst_dsp_inbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd61dc2a5 sst_mem_block_register +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd9a2c94c sst_shim32_write64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xdc62e86a sst_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xde07889c sst_dsp_inbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe259ff81 sst_dsp_get_offset +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf4230a4c sst_dsp_shim_read64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf78d0a44 sst_dsp_boot +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xff8c0f96 sst_module_runtime_get_from_id +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x2feca923 sst_ipc_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x73a89794 sst_ipc_tx_message_nowait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x7a79d2bb sst_ipc_drop_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x7f12fba1 sst_ipc_reply_find_msg +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xcd1f45f8 sst_ipc_fini +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xea50dfa4 sst_ipc_tx_msg_reply_complete +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xea88ab17 sst_ipc_tx_message_wait +EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0x5117d628 sst_hsw_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0x98bc44ca sst_hsw_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0xd1f69f64 sst_hsw_device_set_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x01279a63 skl_ipc_set_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x031e2a53 skl_ipc_bind_unbind +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x149b8a2c is_skl_dsp_running +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x20ffb436 skl_ipc_create_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x2bf4d895 skl_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x308a9880 skl_ipc_set_dx +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x4690da39 skl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x5535b9d9 skl_ipc_save_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xbaee1267 skl_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xc689e8e7 skl_ipc_delete_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xc7fa501f skl_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xd6c2eff3 skl_ipc_set_pipeline_state +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xea828b42 skl_ipc_restore_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xf4cfb899 skl_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xff84e11f skl_ipc_init_instance +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0362e190 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x038aea08 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05569a43 snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0794568a snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x079e36f4 snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d0700d3 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0dbda330 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0dffff6d snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e6ed7fe dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x117032fb snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14cb9fb9 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14da7985 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1624c4fd snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1630f473 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17fe1ad0 snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18526a8e devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x191d44bb snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1949cf66 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1958b8ea snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b4cf75d snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x234a954d snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26ec9dca snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b113d73 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2fc22407 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2fdc1acd snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31c012e9 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31cc7d08 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x326978ef snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x330d54a0 snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33f0702a snd_soc_tplg_widget_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x357eef99 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x35867318 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x375968c7 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3849ea59 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39111c88 devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d36cd3a snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f9ab5a8 snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x422d18bd snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x446802f7 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44f8f324 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4553d28f snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48954f6a snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4afd5bce snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c11fbb6 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5016e6dd snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x511a0eca snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5167a419 snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x517413ff snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51ff62c5 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5284da7b snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5603b4a0 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58ffec81 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b0d4608 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b9f39bd devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x60c7420e snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x60f30195 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6282e924 snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6353f274 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63bd4fb2 snd_soc_lookup_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6595d01b snd_soc_add_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6778cd8c snd_soc_tplg_widget_remove_all +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6886f74e snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b4bbed9 snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6bf0a15b snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d9f793d snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70858d74 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71f267cb snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75218ee4 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75b493e1 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75be8938 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e2e10d0 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f881f6d snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81878d41 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83dc5b09 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8401107f snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86d9d010 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x88fb3111 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b2ae875 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8eba4b13 snd_soc_remove_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ebd6591 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8fc43b92 snd_soc_platform_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8fdd7452 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x912de288 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9183777e snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x931753f7 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98844545 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98c291e1 snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a05d823 snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9aaab646 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c51f42a snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c5673f5 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d0f7a4f devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0d3f30a snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3bba03d snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa489afa3 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8c1320d snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9b9acf2 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa69ac29 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab43abe4 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf58aecd snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb001d40e snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb1791b87 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb1850240 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb19939cd snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb2209f99 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb466444b snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7c17d96 snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb91e4f77 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9b9b15b snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbcc2dea6 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbdb501b9 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc25f442a snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5905bf3 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc65079c3 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca06f1c5 snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xccc16ed2 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd92f2be snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce8ab522 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1d330cc dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd265dbff dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd286edb8 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5d5d7c7 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8548f29 snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda568c07 snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdaf70109 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb48f5a7 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb57bc67 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdcc32556 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd0571f4 snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde4e771c snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe07d835f snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe474d260 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5bd35ec snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe79375bd snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe85621e0 snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb5c8de7 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee62aa5d snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef33f46c snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0e993e9 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf175cf9e snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf24ca204 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf37e60cc snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3cd1952 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4421ef9 snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa824d26 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfbdfa0c7 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc79aa79 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfceaf5a4 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd6cb18a snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfeae1e1c snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff1d310c snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff238202 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffc30e1b snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffd7eac0 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0417d4f3 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0817a847 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0d5cc3c6 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x16b1658c line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x462be3ec line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5f3ee5f5 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x671ef022 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x829461c4 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x84cfdab9 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x87ed69a2 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x93f20ef5 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xcb3790f4 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd64d9642 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xee0367f6 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf2bb90b7 line6_init_midi +EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x08003b2f i915_bpo_gpu_turbo_disable +EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x0d97d346 i915_bpo_gpu_raise +EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x358a54ae i915_bpo_gpu_busy +EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x451432c2 i915_bpo_gpu_lower +EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x7d4de94c i915_bpo_read_mch_val +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x00832f14 rsi_config_wowlan +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x05b6e0dd ven_rsi_91x_init +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x0748b463 rsi_default_ps_params +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x0a3486cd ven_rsi_read_pkt +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x1e678bb2 dot11_pkt_type +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x1e6ea350 ven_rsi_91x_deinit +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x3e83544c rsi_hal_device_init +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x40801a54 rsi_send_rx_filter_frame +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x437447f4 rsi_hex_dump +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x45ca198c ven_rsi_dbg +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x86ee27d6 rsi_init_dbgfs +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x8e4b9d01 rsi_hci_recv_pkt +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xa54100aa rsi_send_rfmode_frame +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xbeb5d8f5 rsi_hci_attach +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xd3025481 ven_rsi_mac80211_detach +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xd7fca56b rsi_hci_detach +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xe20fc41c rsi_deregister_bt +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xe777f54d rsi_remove_dbgfs +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0xf6e772c3 irq_bypass_unregister_producer +EXPORT_SYMBOL_GPL vmlinux 0x0034f3b6 xen_has_pv_nic_devices +EXPORT_SYMBOL_GPL vmlinux 0x00571304 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x005bff98 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x005d0832 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x006098b1 mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x00ea1b01 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x00ecd632 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x00f884d9 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x00fc947d pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x01091c47 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x0109d998 gdt_page +EXPORT_SYMBOL_GPL vmlinux 0x010f8e53 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x0120dd93 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x014079f7 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x01492a60 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x0172f2ae wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x0173e5c4 pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok +EXPORT_SYMBOL_GPL vmlinux 0x018cc84d key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x01927ba2 dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0x019514eb ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0x01aa63ad wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x01acc214 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x01b11ac3 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x01c676ce trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x01c7fae3 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x02022aa8 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x0214fd57 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x022b5458 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x0232bc9e devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x023a44df pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x026211e2 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x029084c7 btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x0294cf60 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x029b5a65 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x029c93c2 edac_subsys +EXPORT_SYMBOL_GPL vmlinux 0x02cce250 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x02ef7f7b mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x02f26963 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x0314b640 bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x031c3436 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x03224582 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x03468250 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x0351e2d3 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x035413f8 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x03614dfb securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x0365b728 xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0x036d0d60 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x036d404c ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0x037eea6b gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x0391af81 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x039bf30e thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x039ec550 __sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03ba631b perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x03bf7cdb da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x03bfbc98 phy_init +EXPORT_SYMBOL_GPL vmlinux 0x03deaa15 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x03ee48af wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0x03fbedd5 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x042a31a8 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x0434822e ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x043607da pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x043b935f __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x04607da2 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x04661819 queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x0469dfea ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x0485655f amd_get_nodes_per_socket +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x04a3baa9 __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0x04a8c179 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x04c1501f of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x04c3f2c1 gnttab_empty_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c6ee32 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x04cd5045 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x04e98501 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x04ecfb5c set_memory_wt +EXPORT_SYMBOL_GPL vmlinux 0x04f0eba8 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x04f5c52c pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x050d035d usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x0518149d pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x05235ee2 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x053494cb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x0537de4e get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x05388cb2 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x055fedfe usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x0560d155 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x056d5294 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x0595c0e2 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x05c4831d virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x05e2bd6b devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x05ec3e2a inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x05ed7059 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x063bc01b tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x06601a78 nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0x0682075d skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x0684537f dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x068e148b extcon_set_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x0693f836 acpi_dev_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio +EXPORT_SYMBOL_GPL vmlinux 0x06dbfb53 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x06f5d89c tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x0734af95 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x0740d399 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x074f0b84 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x07524009 arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0x075a8f6d scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x07602b7f inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x077eedf8 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x0788b634 irqd_cfg +EXPORT_SYMBOL_GPL vmlinux 0x07b1f734 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07f04269 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x07f4fb9d xen_swiotlb_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x0815d487 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x082f0ab7 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x0839830c nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x086b1f07 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x0874c965 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x08809133 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x088b98af regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x08a7592f devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x08adee76 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x08aecfb8 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec +EXPORT_SYMBOL_GPL vmlinux 0x08c7e3f5 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x08dba64c crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x08f28603 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x08f36b41 arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0x08fb916f da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x090caadb ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x090dfaf9 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x093d0151 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0948896a sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0x094f7083 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x095a27a9 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x0963cdcf usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x0989127e crypto_lookup_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x0a07ce5f usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x0a4fde00 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0a63b2d2 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x0a77076c xen_swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0a8d21ae list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x0a9a535c nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x0ac2308e firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x0ac6c7ed xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x0acc4127 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b30be87 __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0b30e80c wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b654b1c crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x0b7e1416 xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0x0b8b22d4 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x0b9e3096 fpu__save +EXPORT_SYMBOL_GPL vmlinux 0x0ba3a643 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x0bb8037b __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x0bb9e76f max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x0bc649c6 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x0bd58dad exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x0be189bb rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0be25a17 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x0bf7a07a __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0bfdee9c dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x0bfe9788 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c227a4c dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x0c27fcc1 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c3862bb debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x0c45d2be debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x0c4d62bf pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x0c74af44 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range +EXPORT_SYMBOL_GPL vmlinux 0x0c80e3fe efivar_init +EXPORT_SYMBOL_GPL vmlinux 0x0c94594f ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x0c98d2b3 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0cb1b8cf crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0ce37e0a get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x0cfb44da ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x0d1eea68 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x0d327303 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d4f78c0 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x0d63b13f bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x0d6aa401 pinctrl_utils_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0d7d668a lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x0dba3445 rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1b38 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0deb204b crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x0df925f6 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels +EXPORT_SYMBOL_GPL vmlinux 0x0e0b1e49 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x0e0b8b0c ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release +EXPORT_SYMBOL_GPL vmlinux 0x0e4cea6e ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x0e5f76c2 set_pages_array_wt +EXPORT_SYMBOL_GPL vmlinux 0x0e6353d8 device_create +EXPORT_SYMBOL_GPL vmlinux 0x0e6daf39 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x0e7484f3 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x0e762d2d cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x0ea41f64 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x0eb1acc9 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x0ebab034 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x0ebcfb64 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0ec58c80 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x0ecf823a static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x0f012044 __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x0f036812 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x0f170383 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x0f21a845 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0x0f312e86 cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f33d080 wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0f428a8c bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x0f488886 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x0f4efae2 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x0f5bd3ad pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x0f6763b7 sock_update_netprioidx +EXPORT_SYMBOL_GPL vmlinux 0x0f6ecdc5 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f86b96e irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x0f89d546 securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0x0fa138de xen_hvm_need_lapic +EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi +EXPORT_SYMBOL_GPL vmlinux 0x0fcca4c7 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x0fcea368 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x0fe2d570 xenbus_directory +EXPORT_SYMBOL_GPL vmlinux 0x0ff29128 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x102589df devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x103a92ec rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x1050fe7a device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x1068e204 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x107dad8e led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0x1080f548 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x109fc271 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x10daff5d pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x1160e87f platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x116ce656 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x117c7305 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x118f4043 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x1196f921 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x11aa102e devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x11caddc7 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x11da93e5 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x11e57569 xen_swiotlb_sync_single_for_device +EXPORT_SYMBOL_GPL vmlinux 0x11f283ff tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x124edcac ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x1268c8ab cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x127c0bbe vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x1289d584 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x12cf637a kick_process +EXPORT_SYMBOL_GPL vmlinux 0x12d0f0b5 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0x12e6d13a rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x12ea3c14 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x13053ba4 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x130a7f6e driver_register +EXPORT_SYMBOL_GPL vmlinux 0x130bd388 check_tsc_disabled +EXPORT_SYMBOL_GPL vmlinux 0x130de01d trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x133fa60e phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13669fae usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x13711956 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x138348e2 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x13a8e067 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen +EXPORT_SYMBOL_GPL vmlinux 0x13b89dee pinctrl_request_gpio +EXPORT_SYMBOL_GPL vmlinux 0x13c7ca89 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13ec8bed perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x13f51fc3 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0x141dfe84 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x142807d2 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x1450cc70 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x146a6747 tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x1477f3e9 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x149a7d2f ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x149de3de sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x149f09ad irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x14a1c3c8 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x14a2d0c7 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x14a7c565 regulator_can_change_voltage +EXPORT_SYMBOL_GPL vmlinux 0x14bbc02e of_css +EXPORT_SYMBOL_GPL vmlinux 0x14ead387 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x14f45cdf crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x15010e1f arbitrary_virt_to_machine +EXPORT_SYMBOL_GPL vmlinux 0x15398237 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x1559a7c6 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0x155dfdcb __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x157e8ff0 xen_remap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x15b0606e e820_any_mapped +EXPORT_SYMBOL_GPL vmlinux 0x15dab540 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x15e4b4b8 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x15f93bde pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x15faa8f7 acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x160d5646 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x160dc494 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x16237389 wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0x162bf367 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x164300fa ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x16555ec7 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x16769053 md_run +EXPORT_SYMBOL_GPL vmlinux 0x16947339 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x169f2f5b bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x16ca6280 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x16e215c6 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0x1709d3ba pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x171e1025 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x1722cfe3 blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x1723f1e2 __online_page_set_limits +EXPORT_SYMBOL_GPL vmlinux 0x173b894d driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x174b207a ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online +EXPORT_SYMBOL_GPL vmlinux 0x179a5991 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x17a8360c devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x17cd81cf ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x17dea724 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x17e1a3ac pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x17eb45ce __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x17f2b4fb print_context_stack_bp +EXPORT_SYMBOL_GPL vmlinux 0x17fcf775 spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0x1809c905 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x1829b9ed hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x183425ad iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt +EXPORT_SYMBOL_GPL vmlinux 0x185ee5dc crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x1898ef45 filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x189a534b __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x18a9cf07 single_release_net +EXPORT_SYMBOL_GPL vmlinux 0x18adca70 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x18c57f5a tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x18dcc4a4 gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0x18f5e50e arch_apei_enable_cmcff +EXPORT_SYMBOL_GPL vmlinux 0x18f83fab gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x19119803 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x19129cec __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x192e8fd3 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x1930003a hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore +EXPORT_SYMBOL_GPL vmlinux 0x198a1c64 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x199106ff list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19e08e01 percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x19fb015b register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x1a0520ca pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x1a2b4430 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x1a42b68e rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x1a555277 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x1a6b4536 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x1a726fe5 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x1a84333f ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1a8db718 cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x1a9712ff regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x1a995dc1 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x1a9cb062 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x1aa1a1c1 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1ad78a83 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1aeb9071 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x1aec3e03 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x1b0bb5ca __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x1b38b3c6 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x1b459352 blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0x1b61bb96 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b94a4fc percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1ba50043 tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x1badf138 pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bddfecf devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1bde66af __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x1c0c2485 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x1c14e3f7 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x1c311cfb kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x1c4517ab pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c58b870 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase +EXPORT_SYMBOL_GPL vmlinux 0x1c6660c7 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0x1c67d919 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c829910 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c8fe88e iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x1cc1379b ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x1cdb2147 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x1ce26736 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0x1d0f9a3b regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d23440b scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x1d2c6658 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x1d459685 xstate_size +EXPORT_SYMBOL_GPL vmlinux 0x1d52c47d devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x1d551b9b fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x1d652735 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x1d739e1c xen_set_callback_via +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d7954f2 xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0x1d7b6427 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x1d7cb586 clk_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x1d91f7f4 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x1da80f42 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x1daa7302 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x1db76feb l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1dc15316 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x1dda0fdf ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x1dde11ea regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x1de7dc35 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x1def880e bind_interdomain_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x1e000879 hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0x1e1e08bb __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e5f7ec2 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x1e68ce14 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x1e7808a9 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e8663fd devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e951548 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1ea0b004 __dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0x1eaac5ba serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebac2bd getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ec12779 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x1ec4ed47 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x1ecc368a cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1edc21cb hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x1ede3ff6 ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0x1f1988f7 hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x1f28041f ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x1f5683a4 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x1f5dd733 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x1f72f097 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1f7f3253 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x1f84ab41 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1f9bcb97 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x1faed4d8 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x1fbbdd29 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x200cc695 __free_iova +EXPORT_SYMBOL_GPL vmlinux 0x20386a2f dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x206de88d noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x207f2ede hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x209ec764 xen_event_channel_op_compat +EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x20d9086e crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x20f935a0 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x2140a0e7 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x215f779d skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x21645f2f fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21b5dd8c set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x21be0bd5 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x21c71c62 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x21cc8c91 rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21e5250c rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x21ed199a regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x22240afd sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x222e4647 iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0x223ff585 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x2240b197 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x228d4c6b acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x2299ec81 perf_assign_events +EXPORT_SYMBOL_GPL vmlinux 0x229edaaa power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x229fad27 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x22c22b97 regmap_field_write +EXPORT_SYMBOL_GPL vmlinux 0x22e2f06b ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0x2303aa0e component_add +EXPORT_SYMBOL_GPL vmlinux 0x23083290 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x2318e4e4 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x231b8ebd pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x234aa22e ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x2366a2c0 errata +EXPORT_SYMBOL_GPL vmlinux 0x237a0d33 xen_swiotlb_dma_mmap +EXPORT_SYMBOL_GPL vmlinux 0x237a9e8d rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x239f16aa regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x23d51c45 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x23dcb506 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x23df3396 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x23e5186c hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x23fed2b0 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x24011e14 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x2401cb8a free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x240af384 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x240f04a3 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x2432b45f md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x2449ac19 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0x245255ba rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x2462f07c __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2469810f __rcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2488210c pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x24a096bc usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24c37dec serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x24c7698a xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x24d50d98 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f45195 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x24f8c3ca inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x250bbb45 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x25142c56 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x252c09be injectm +EXPORT_SYMBOL_GPL vmlinux 0x252ef50e extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x2545c170 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x25bc3394 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x25bf7a0c relay_open +EXPORT_SYMBOL_GPL vmlinux 0x25ce3745 blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0x25d649c7 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x25d700b8 gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr +EXPORT_SYMBOL_GPL vmlinux 0x25f2ee03 xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0x25f473dd device_register +EXPORT_SYMBOL_GPL vmlinux 0x25f6c56f iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x2601de2e rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x26062cc4 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x2639f462 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x263e4192 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x2643baef led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x264ae4c6 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x265b7b15 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x2676f57d tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x26965721 slow_virt_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x269b4914 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x269bb076 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x26ad6577 irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0x26b3c701 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26fd5f00 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x2707eca0 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x27296b0b regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x274aa8cf device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x274d8fed regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x276aab92 xen_swiotlb_set_dma_mask +EXPORT_SYMBOL_GPL vmlinux 0x27884207 led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x278bddcb da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x279cb985 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x27a4259e usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x27aee62c __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x27b25e36 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0x27c0c4be eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27cb1269 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x27d2fffc crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x27dd7abf wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x27eac0b1 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x28084a7d reserve_iova +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x28302a80 xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0x28780150 spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0x287f8ec3 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x28aa4a89 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x28b220b9 xen_remap_domain_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0x28d68aaf spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x28da8864 fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0x28e98a4d ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x28ece97c ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x28fe0ba4 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x29191965 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x2924534b param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x292e604a ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x292f8e0b acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0x294bc1a5 arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x29722f4c rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x29aa13df led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x29c56d75 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x29c76cb7 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x29cf809d ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x29d11ff4 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x29d3e729 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x29d9c6d6 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x2a5cb540 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x2a66fbea cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a78570c hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x2a820596 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x2a8e6d04 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0x2a8ea857 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x2a9c0f3a gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x2aa4e7af dax_clear_blocks +EXPORT_SYMBOL_GPL vmlinux 0x2aa5cba2 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x2ac9484c rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x2aebdadb scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x2af28370 acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x2af63321 acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0x2b015b49 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x2b022c29 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x2b116fc8 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b683324 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x2b7666d6 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x2b787bff ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2ba2060c fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x2bb5695d ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x2bc0c9d0 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2bd16757 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x2bda8773 __bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0x2c16c1a8 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x2c1f9573 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c26633c ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c33f967 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x2c5e2388 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x2c6be107 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x2c6dc130 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x2c7d9c64 xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c8f130e pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x2cb25c43 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x2cbb4127 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2cbf8ef9 acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0x2cd0b218 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x2ce662f6 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x2ce80094 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2cee9968 extcon_unregister_interest +EXPORT_SYMBOL_GPL vmlinux 0x2d0bda44 xen_swiotlb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x2d11485c virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d25fbaf regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x2d29ea0d dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x2d3d8d17 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d628355 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x2d6436a6 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x2d6e2dd5 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x2d9f2ce3 sched_clock_idle_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x2dcd87f2 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0x2dcf9a49 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x2de65157 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x2de79bcf ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x2e0e4e7e locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x2e1da9fb probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2924ed tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x2e2df7f4 irq_remapping_cap +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e490dc7 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x2e490e29 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x2e561c32 irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x2e5cc3e7 klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0x2e6915c9 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x2e81046a irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x2e88780e pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f2a5224 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f48a778 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x2f619b68 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f6810d4 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x2f742f7b pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x2f76a2c5 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x2f7746bf __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2f8bfd3d ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x2fd503c0 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake +EXPORT_SYMBOL_GPL vmlinux 0x2fdaf14a crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x2fe1b40f usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x2fe434ce tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x2fece8ef debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x3007af5b gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x300bee0b ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x30119c69 xenbus_grant_ring +EXPORT_SYMBOL_GPL vmlinux 0x301da6d7 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3027c047 _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0x3029be81 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x303456c4 bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0x303b7ccb register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x303c2793 intel_svm_bind_mm +EXPORT_SYMBOL_GPL vmlinux 0x3050c337 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x30574fc3 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x30635782 cpu_has_xfeatures +EXPORT_SYMBOL_GPL vmlinux 0x306f7c22 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3071dce4 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x30738fe9 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x30755450 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x30757a2e led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x3078d6ad shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x309497d8 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x30bf21b5 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x30cff1bb wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0x30e57ee4 clk_debugfs_add_file +EXPORT_SYMBOL_GPL vmlinux 0x30f7fa68 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x310560f7 clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0x311f32a4 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x3120ab27 pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x31309115 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x314fad93 efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0x3166e9b8 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x31720aff __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x3175141e cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x31b4cb43 irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31d09988 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x31d1e9ab xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0x31da152e ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x31e3eb37 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x32007748 blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0x3200e515 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x320554b0 acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval +EXPORT_SYMBOL_GPL vmlinux 0x32365cff devres_release +EXPORT_SYMBOL_GPL vmlinux 0x3236e42f blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x325e677c gnttab_grant_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x32625697 reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0x327b7488 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32e3b076 mxcsr_feature_mask +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x336234a1 xenbus_unmap_ring +EXPORT_SYMBOL_GPL vmlinux 0x3362b03c xen_p2m_size +EXPORT_SYMBOL_GPL vmlinux 0x33655159 xen_pcpu_hotplug_sync +EXPORT_SYMBOL_GPL vmlinux 0x33804147 efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0x3393c162 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x33b87dbd phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x33b96e5d apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x33be6bfd debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x33c1b145 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x33cae143 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x3417a563 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x3429426f regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x34491193 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x344d0bd6 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x346113d1 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x3475654f call_filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x34915a4c pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x349826aa register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x3499a93a is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34a8da5f __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x34b30ce4 devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x34c26ab9 save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0x34d3967a driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x34d4f388 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x34e4d1cc usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x34ee8cca usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x35026c52 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x352650ee gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0x357689e2 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35910f72 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x35a1be97 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x35a7027c phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x35bf2acd nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0x35c2f089 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x35d86128 bpf_prog_realloc +EXPORT_SYMBOL_GPL vmlinux 0x35d97efc usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x35e90a64 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x360cd5ec pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x360d62e2 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x36181fc6 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0x361b6ef5 register_mce_write_callback +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x365e9765 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x3667c70c ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x366a1bb1 napi_by_id +EXPORT_SYMBOL_GPL vmlinux 0x366b9703 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x367eb510 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x368f1fea static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x3694f883 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x36969846 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x369c5b0e clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36b1aac9 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled +EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x36c2c677 klp_unregister_patch +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36f5ce08 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x3719d7bc ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x37203614 xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x3742d90d platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x374fc448 crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0x376e1b20 acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x3779a5c9 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x377cc10a fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x379e9886 debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x37c29c74 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x37e0b728 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x38105f6c device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x384dcbc5 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x385fcc10 platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x38663eb2 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x386997d4 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end +EXPORT_SYMBOL_GPL vmlinux 0x38844dd5 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x38b50b89 clear_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0x38c9ce6b clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0x38db7152 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x38dde2c6 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x38e4b4d3 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38e82214 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x391f6825 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x392fe739 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x393f57ab rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x394c4d62 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x39597d25 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x39605c8a mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x397043cd xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x397ca2fa __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x39802b67 rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x3997bfb0 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x399f7d9b tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x39a1a062 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x39b21e29 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x39c6479c usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x39c8c858 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39e1cf4b splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x3a01d9df spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a38dc65 memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a5c2b18 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn +EXPORT_SYMBOL_GPL vmlinux 0x3a8e3898 pci_msi_prepare +EXPORT_SYMBOL_GPL vmlinux 0x3a9422cd crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ad0e201 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x3ad70907 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x3b00fb2a irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x3b3991d8 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x3b547bc9 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x3b63382a __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x3b7145bb apei_exec_read_register_value +EXPORT_SYMBOL_GPL vmlinux 0x3b79007f dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x3b79ce87 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x3b92b1eb tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x3b9718da wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x3bd36fb4 __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x3be822c5 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3be86a54 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3bf2adfe ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x3bfe94cb pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0x3c17c910 raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0x3c209c76 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x3c211ac6 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x3c561ea3 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x3c787fe3 nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x3c7a8d48 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x3c8afb99 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x3c8c60ab xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x3c906865 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3c98264e gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x3ca6136a __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cdd165b __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x3cdfc218 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d5f392d acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x3d631956 acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0x3d6ccf52 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x3d7ea99a gnttab_grant_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x3d8452d0 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3d9418ac percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0x3da67a23 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x3dae6404 unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3de64d18 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x3de92077 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3debbf33 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x3df9593f device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x3dfc436e percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x3dfd01b3 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x3dfe298f fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x3dff01ef skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0x3e1806aa usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e4c25e9 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x3e5384de devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x3e54b244 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3e5b0d02 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e68404f crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x3e6bc0a7 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e7d7546 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x3e846a81 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x3e8bdeb8 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3eb6c744 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x3ebeacec trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x3ec0add1 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0x3ece4c31 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x3ed554fa devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3ed589bf devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3ee30a3b regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f1678a9 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x3f209a8c kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x3f229c4c oops_begin +EXPORT_SYMBOL_GPL vmlinux 0x3f2f060a register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x3f3a2745 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x3f584f2f dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x3f5e8000 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x3f6b7718 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x3f70fda6 rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x3f77f4fe __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x3f84d4c9 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x3fa39a15 crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0x3fae792b ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x3fbac71f xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0x3fdca19b cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x3fef001c crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x3ff71028 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x4009cb45 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x4010b80f pmc_atom_read +EXPORT_SYMBOL_GPL vmlinux 0x401e84c8 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x40356d20 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x40357740 blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x404e7c93 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406abf58 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x406e9373 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x408212ba hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0x4084e3ba sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x40984875 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x40aef116 usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40ed9d0c regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x410691b8 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x41112e41 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x414e409d metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4174886c ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x418710e7 mce_inject_log +EXPORT_SYMBOL_GPL vmlinux 0x41a034d0 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x41abdef4 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x41cdfffa usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x41e6d35c crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x4213a51a efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x42174d8b bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x4252b7c7 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4255026d kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x4259eb86 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x4277b8a7 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x427d5c68 register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x427de547 pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x42828380 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x42841583 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x42847f59 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x42893c9a udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x4289fbe3 acpi_dev_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x42912415 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x42a21f5e led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x42b3d8c4 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x42b3e22a devres_find +EXPORT_SYMBOL_GPL vmlinux 0x42b630fd xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0x42b7be91 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x42bb8d80 perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0x42c0c9b3 efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0x42e5c704 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x42f26ec7 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x42f5753e usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x42f71e80 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x43118174 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x4320a82c put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x4346225b gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x434b99c8 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x4378416c regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x437f6671 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x4395953e usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x439709ff crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x43a201f1 user_read +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43bd1f7d crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x43fa2970 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x44017092 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x441fa356 irq_ts_save +EXPORT_SYMBOL_GPL vmlinux 0x446e3c47 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x4470f812 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44b85596 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x450fb522 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x45166e9d mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x45217bb5 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state +EXPORT_SYMBOL_GPL vmlinux 0x454ae78c scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x454f1cb4 efi_query_variable_store +EXPORT_SYMBOL_GPL vmlinux 0x455876e8 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x4577b6f3 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x45946f80 dbs_check_cpu +EXPORT_SYMBOL_GPL vmlinux 0x45b7d6a0 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45c2afa5 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x45d065b5 blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x460247e6 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x46046b98 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x460f31aa rodata_test_data +EXPORT_SYMBOL_GPL vmlinux 0x46373660 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x46434934 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x4643b1ad rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x465270ae mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4663d883 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x466eaf5c device_add_property_set +EXPORT_SYMBOL_GPL vmlinux 0x46713a2d napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0x4678157d pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46b2917d usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x46b70eca iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x47082f2d kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x47322066 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x473a4ac9 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x4743fc1d devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x475c41f9 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x47745785 regmap_field_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47b914d4 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x47be2669 pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0x47c4f7fc nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47e49d09 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x47e51f94 __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x4816f63b flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x4820bc17 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x48682db9 perf_guest_get_msrs +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x486f78bd __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x489c8742 arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x48c05e6f gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x48d0b9a8 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x48d477f7 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x48d49bb5 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x48f94558 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x490a8df6 x86_platform +EXPORT_SYMBOL_GPL vmlinux 0x493a806e devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0x495ae653 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x498b227c nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49992a9c xen_pci_frontend +EXPORT_SYMBOL_GPL vmlinux 0x49b35b40 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x49cf9a70 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x49e4eb33 pv_info +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49f038b7 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x4a017cc8 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x4a02ab07 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x4a36e4b1 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x4a3c3cf9 microcode_sanity_check +EXPORT_SYMBOL_GPL vmlinux 0x4a3c889d pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x4a43fd72 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name +EXPORT_SYMBOL_GPL vmlinux 0x4a861843 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x4a90160e bprintf +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ac37299 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x4ac3e61f pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x4ad159e6 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x4ad741d2 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ad80d1d bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x4aece87c platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x4b06869f virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x4b211246 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x4b3965aa xen_swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x4b5ec22d regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x4b5eec83 __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0x4b613bc4 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x4b684ea0 mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0x4b6cc111 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x4b88a3e0 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x4b9ea47f cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x4bae58fc pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x4bb511ad kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x4bea6ef0 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x4bedf39d tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x4c0b11cc wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4c0cc372 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x4c2a472b __static_cpu_has_safe +EXPORT_SYMBOL_GPL vmlinux 0x4c5948a1 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x4c59900b acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c645f9e static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x4c6774dd pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4c8165c0 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x4c874505 crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x4c896cb1 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x4cdeb9f4 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x4cf4bcda transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d03b724 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x4d3ac991 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x4d49b4f9 acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x4d5c7c05 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x4d6aa807 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x4d70ff85 devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x4da1c2d0 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4de61feb blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x4e042286 extcon_register_interest +EXPORT_SYMBOL_GPL vmlinux 0x4e06e294 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path +EXPORT_SYMBOL_GPL vmlinux 0x4e3c0ebf trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x4e45d555 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x4e549d34 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x4e55496f sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x4e57723d apei_read +EXPORT_SYMBOL_GPL vmlinux 0x4e5f3efa pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4e6aaa96 get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0x4e74e625 gnttab_batch_copy +EXPORT_SYMBOL_GPL vmlinux 0x4e758045 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x4e97a832 tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0x4e9ea51b blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0x4ea54bfa inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4eaf6cfd bus_register +EXPORT_SYMBOL_GPL vmlinux 0x4ee1a6fd pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x4eeec615 ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4f05925c devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4f1621fc i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x4f232ae7 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f451987 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x4f4efc17 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0x4f663197 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f730459 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x4f81b531 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x4fa6860c __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x4fccdbcd spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x4fd44083 dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe0f522 wm8400_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4ff1e5b3 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5001a0ac securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x50098cd4 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x50120936 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi +EXPORT_SYMBOL_GPL vmlinux 0x5029bfab xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0x502fd88c gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x5061b054 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x507de8c6 add_memory +EXPORT_SYMBOL_GPL vmlinux 0x5084b1bb pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50b07f97 acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0x50d1f870 pgprot_writecombine +EXPORT_SYMBOL_GPL vmlinux 0x50dc0b24 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50e76b42 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x511459a7 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x512b1d19 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x512c0c26 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x51346b02 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x5140aad4 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x5149c731 print_context_stack +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x517e8239 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x5180bff2 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x518935d7 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq +EXPORT_SYMBOL_GPL vmlinux 0x518cf477 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x518fb8b2 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x5191bd3c efivar_work +EXPORT_SYMBOL_GPL vmlinux 0x51d93548 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x51eb4dbd __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x51fe53d8 __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x51fe7f9c crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL vmlinux 0x52233f9d dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x5229873a netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x522f538b tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x523d9028 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x523db296 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x526582b4 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x527a19bc alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x52813a36 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x529733f6 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x52a82c28 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x52c9476c crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x52cb50f7 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x52cc038f rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x52d8c375 clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x52dd1c66 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x52e9fcce posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x53541fa3 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x53577394 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53601769 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x5360a4fe od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x53649e41 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x538ad82c dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late +EXPORT_SYMBOL_GPL vmlinux 0x539f19ec request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x53b738b2 scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x53b82960 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x53d25f58 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x53df3186 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x53f33858 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x542d67af fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x544dbc88 blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x54513345 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x545ee955 fpu__activate_curr +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x5460d1e9 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x5474b55f devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x54837120 crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54a29dae watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x54e02a82 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x54eae123 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled +EXPORT_SYMBOL_GPL vmlinux 0x55181725 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x55526907 xen_features +EXPORT_SYMBOL_GPL vmlinux 0x556a6cd4 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x5571ccee ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x55843f2c dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x558fbc83 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x5593d715 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x55ac152a driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x55b3d3cb thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x55bb3289 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x55c644fa mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x55e5218d sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x560abccc wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x562f4167 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x5637174b ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x564871a2 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x5654f836 erst_get_record_id_next +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x565cb272 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x567b0fb4 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x567e27d7 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0x56905901 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x56931ad6 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x56947347 dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x569b3117 dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0x56b2c3e0 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x56c1c5da regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56d7426b sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56f39d37 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x5704e7a7 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x5705a391 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x572e2909 usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x5749b94f gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x57506f34 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x575c5f94 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x5774ce57 pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x5779d445 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57c0292f percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57d1fdb7 regmap_fields_write +EXPORT_SYMBOL_GPL vmlinux 0x57e1c003 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x57f8062c acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0x5801bb11 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x58091bfb crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x580bf930 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x58110346 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x5835338e subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x584cc350 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x585704ab aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0x585d34de xenbus_dev_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x5871637e usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x587bd46f alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x58817ec6 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x588b0703 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58a5e7a8 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x58c4c574 __online_page_free +EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x5907df23 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x59371588 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x594bac77 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x594f61b4 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x594ffd40 get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x5960d6b0 user_update +EXPORT_SYMBOL_GPL vmlinux 0x59688cf7 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x5975c487 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x597e4542 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x59b0882b md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59b9f235 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x59bed875 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x59d570e9 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x59d9ac09 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x59e7a8bb blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5a171008 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x5a198162 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x5a2b1b67 gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5a40e4fd pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5a5a6586 ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0x5a6a8530 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x5a6c62ef sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a7ee148 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x5a91b861 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x5ab0a105 tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x5ab4de91 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x5ae75bbe device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x5ae8b829 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x5af03a28 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5b0eb600 xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x5b1899f8 free_iova +EXPORT_SYMBOL_GPL vmlinux 0x5b1ad987 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x5b52e25e rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x5b572787 sis_info133_for_sata +EXPORT_SYMBOL_GPL vmlinux 0x5b5eefb1 blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x5b615718 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x5bb73368 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x5bce8ca1 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5bcec8ee gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bdbee8a pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x5bdf32d3 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x5c586c6e usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c5dc460 device_remove_property_set +EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker +EXPORT_SYMBOL_GPL vmlinux 0x5c8d7f62 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x5c9b905a tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x5ca69439 blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cb5c9b8 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5cd78169 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x5cd9fce8 blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x5d075c2f pci_msi_set_desc +EXPORT_SYMBOL_GPL vmlinux 0x5d0e73c5 pwm_set_polarity +EXPORT_SYMBOL_GPL vmlinux 0x5d0f7f54 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d2b968b anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x5d3537a1 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x5d366dec gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x5d4df68c blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x5d5ca512 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x5d7701dc tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x5d8f75d0 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid +EXPORT_SYMBOL_GPL vmlinux 0x5dc8262c locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x5dcd7160 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x5de1692f perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x5dfdb07d pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x5e0fbda5 flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x5e249b32 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x5e3f7c88 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x5e41d7ae ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x5e43494c regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e70bd6f pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x5e732a87 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5e77bc0a agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x5e8091cc ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x5e8a02aa led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x5e9cc825 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x5eaab96d regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x5ec06a60 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x5ec4db95 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x5edd8400 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x5ee0ffb1 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x5eef92bf dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x5f110447 trace_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x5f226035 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5f2f8f56 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x5f6d1b1d gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x5f83c9a3 split_page +EXPORT_SYMBOL_GPL vmlinux 0x5f84ba5e scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x5f89d96f iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x5f925651 inet_csk_compat_setsockopt +EXPORT_SYMBOL_GPL vmlinux 0x5f9957fc ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x5fc010da usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x5fc27be9 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x5fc3f89d ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x5fdcbd09 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt +EXPORT_SYMBOL_GPL vmlinux 0x5fe907b7 hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x5ff50674 cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x60218ba9 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x603978ce ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x6051a105 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x6054e50c ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x605cd0d0 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x605d0da0 component_del +EXPORT_SYMBOL_GPL vmlinux 0x60786286 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x60930d37 save_mc_for_early +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a1c713 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x60a7b226 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x60b42d88 blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x60b9665d blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x60cd73ed pv_apic_ops +EXPORT_SYMBOL_GPL vmlinux 0x60df7e5a __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0x60ec2944 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x6143fe79 acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0x614582d0 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x615b1616 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x615b4c40 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x616877a5 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x6172e954 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x61bdbbae swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0x61cde409 acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0x61f09d36 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x620bc08e inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x6213659d rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6214b16c pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x621c1a29 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x6221cb1c bpf_prog_get +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x623803c8 hest_disable +EXPORT_SYMBOL_GPL vmlinux 0x625fcea3 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x6289508f ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x62a0145d devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x62a1c981 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x62bd5a6d __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x62e3b7b4 devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x62ef0bf0 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x62ef14cc blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0x62f9c06e uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x62fc49c5 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x6333072c gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x635b0db9 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x635ec980 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0x6382485d crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x638fe045 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x639e8462 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x63bdcb8b xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x63e00b69 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str +EXPORT_SYMBOL_GPL vmlinux 0x63f14ebe io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6412dfc8 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x64198a37 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x642409a5 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x64276f1f crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x64318593 acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x6453799f devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x64749dfc pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x64a17f01 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x64a3e0a9 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x64b1ce42 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x64b53188 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x64b7069e apei_mce_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0x64d9a6bc acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x64e80dfb freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x652fdde4 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x6536953b btree_last +EXPORT_SYMBOL_GPL vmlinux 0x6564e99e unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x656ae987 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x657ace9c i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0x657c029c blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x658c8186 amd_get_nb_id +EXPORT_SYMBOL_GPL vmlinux 0x659fc137 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x65a0e4d9 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x65bae1c0 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65d506a1 tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x6613cfab regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x66251018 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x6638b6cb serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x665eaf68 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x665ecab0 pv_time_ops +EXPORT_SYMBOL_GPL vmlinux 0x666900d9 _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0x666e1ddb regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x6675a981 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x667a15f7 pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x66903ce0 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x6694a249 rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0x669cd7e1 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x66c2ce1c ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66d27e06 fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0x66d443cc device_del +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66dd60aa ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x66e16f83 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x66fb1d3e xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0x6703db51 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x671ea36e blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x674dd1b1 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy +EXPORT_SYMBOL_GPL vmlinux 0x675ba9cb devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x676e3a05 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67968b28 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x679f2c60 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0x67a67a04 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x67d5a8bd crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0x6828177b cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x683c85ad __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x68422e98 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x684f2f98 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x6852f62d digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x685ee377 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6863c4ee platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x686c5944 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x68808abe pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x68b30092 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x6910dd3e bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x69284b87 kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x695fa438 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x69bf4027 pwm_disable +EXPORT_SYMBOL_GPL vmlinux 0x69c013bd dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x69c832a2 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x69c904ff pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x69e6ef45 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0x69f4464e xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0x6a10f384 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a184f9f input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6a26ca0a blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a694462 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x6a82f56b xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a936feb system_verify_data +EXPORT_SYMBOL_GPL vmlinux 0x6ab1b8bb usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x6ab32054 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x6acad21f acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority +EXPORT_SYMBOL_GPL vmlinux 0x6b1039e9 i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b4ef397 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x6b63e497 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x6b68a4dc ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b8525ba usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x6ba0bdeb preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6bb549d9 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x6bbf114f cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x6bf1b90d dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x6bf5c4c7 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x6bf7984f transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c1251fd apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c58dc33 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x6c6538df init_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c73bd41 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6c8d012f fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x6ca08aea gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0x6cb09208 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6cdb2005 extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x6ce41672 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6ce99d02 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x6d15896f page_endio +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d56e5b0 nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x6d66b73d ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x6d6b8b34 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x6d865e4e rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x6d9bb1c7 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x6da7ec70 bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x6dcc57bf crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x6ddc9899 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x6dee3701 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x6dfd5d64 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e0d0364 pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0x6e30cb09 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x6e326b51 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x6e58ddf0 gnttab_end_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e7b2a52 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x6e85b00b local_touch_nmi +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6ea98361 ioremap_page_range +EXPORT_SYMBOL_GPL vmlinux 0x6eab0907 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x6eb69e4b acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x6eb97a13 blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0x6ef209c8 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x6ef66de9 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f265fe6 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x6f3ee029 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x6f402ba6 acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x6f44171f ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x6f4f2257 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x6f5ac2bb regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x6f5fe36c trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x6f890012 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x6fc89892 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x6fdaf654 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x6fe03ef4 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6feb6001 extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ffed6b9 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x701ca03e kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x7029c830 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x702be89a uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x704c6975 rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0x707d6f09 dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x7085dcea regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x708622f2 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x708d8ddf irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0x70a789a2 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70e2c883 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x710d084c tpm2_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7119c2d6 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x71777ac6 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0x717ad389 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71a1bfe8 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x71c385e8 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x71cc1d5e pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x722ce187 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7274dd87 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x728ca3bd thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x729a043f md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x72cf714d klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x72dfa67b usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x72e16e54 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x72e230ee rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x72fe73ef register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x73013896 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x73155196 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type +EXPORT_SYMBOL_GPL vmlinux 0x731f8599 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x73219e13 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x73254335 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x7342d5be tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x7380dbfe gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x73811d47 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x739ac4a5 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73a77ed7 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x73afb372 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x73cbceba ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73f95314 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x741cb25a cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x7443e631 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini +EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x745a6e5d crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x745c14de skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x74694e13 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x74719515 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x7481afc6 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x748677ea ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x748e15cc gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0x74a3843e synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74b871bf usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x74b9f79b hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74c08941 kvm_async_pf_task_wake +EXPORT_SYMBOL_GPL vmlinux 0x74deb10c used_vectors +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x751d12c7 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x75414fde devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x754c4ce7 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x757b49d2 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x757bac58 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x757ed190 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x758bdd82 tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x7598e8e3 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x75bf4983 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75df7479 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x76022c56 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x7603e988 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x761dabf4 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x7623d736 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x763e61a0 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x76437689 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x76837518 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x768fb920 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x76a80f04 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76ebb258 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x770f61f9 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x772bbaab vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x7737ed87 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x775a6ef5 kvm_read_and_reset_pf_reason +EXPORT_SYMBOL_GPL vmlinux 0x77678f57 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x778b675a pmc_atom_write +EXPORT_SYMBOL_GPL vmlinux 0x77923ca7 shake_page +EXPORT_SYMBOL_GPL vmlinux 0x77a325a6 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x77aa8e34 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77c7bc19 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x77d31318 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x77dcfc7b pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x77ddaf3d iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x77e9499d devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0x780aaf4f validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x7825c9ee single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x78575bee atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x7874b5ec unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x789939af pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x78a4942e ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x78a87728 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x78a89000 xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78c98269 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x78cc5bec hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x78cd264d dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x78d80aca policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x78e81925 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x78f0348e usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x791d192a ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x795c92e3 efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0x795fad41 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped +EXPORT_SYMBOL_GPL vmlinux 0x79fdd1f7 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x7a01d993 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x7a093833 set_memory_array_wt +EXPORT_SYMBOL_GPL vmlinux 0x7a1565a5 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7a1b0091 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x7a21d515 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x7a488c23 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7a4b7549 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a9df390 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x7aa0abfd __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7ab35493 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x7ac689eb acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0x7ac8e5b0 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x7ace6f69 pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0x7ad293a8 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x7ad88cc7 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x7ad9fafa devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x7aed367f fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x7aedf73f rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b202401 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x7b388df2 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x7b3e0cac class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x7b42fdb7 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x7b4997ce crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x7b53ad54 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7b67b19d xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0x7b70ed5c pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7b9831eb clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x7b9b0992 blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0x7bbc3f3e sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x7be2cf13 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x7c004e17 user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x7c069649 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x7c13a19d iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x7c1722f6 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x7c2064c2 msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x7c29b819 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x7c40de53 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x7c4269dd security_kernel_fw_from_file +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7c9ef889 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x7cb10de2 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x7cceae18 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cd8c6e5 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cedf677 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d0456c4 pin_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x7d0e1d95 hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0x7d36d6a8 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d662159 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x7d84d464 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x7d9c2402 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7dc3f358 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x7dcdc93f __tracepoint_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0x7de9a021 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x7e210734 blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0x7e2f80d3 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x7e2f8759 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x7e4cf6fb regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x7e59a07f find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x7e63d5f7 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e76b3c4 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x7e86cd7a devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7e96801a swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0x7e96b77b sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x7ea1a2bc probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x7f12e93d pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x7f13d491 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x7f1557f2 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature +EXPORT_SYMBOL_GPL vmlinux 0x7f29e9ab __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x7f3658e6 fpstate_init +EXPORT_SYMBOL_GPL vmlinux 0x7f3fc9d7 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7f43bb7b dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0x7f638fb3 regmap_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0x7f70d61d ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x7f79bbf3 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f8a9129 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x7fa6033f blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x7fb9a1ac dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fd8c618 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x7fe731b4 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x7fe822e6 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x7febf0ab generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x7ff0753d usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x800ada01 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x8014c824 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x80156244 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x801668bf pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x80229b9e rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x8033605a wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x80443e4f ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x804c07bb of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x808ed2f8 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x809529fd alloc_iova +EXPORT_SYMBOL_GPL vmlinux 0x80b76d5b skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80c9c66b sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80f12459 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x80f473dd ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x8137f1e7 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x8151b1d6 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x8152e111 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x8177081b trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x8180e344 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x81897657 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x81a84515 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x81af2397 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x81b98f9a ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x81ccb866 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x81cd3f33 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x8235f5f6 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x823c2631 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x823c9e8a rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x823d5091 efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x82575c40 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x825ea7fe clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x82627353 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x8284b859 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x829a7091 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x829e0c3e vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x82aef706 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x82b46f0a posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0x82c1da30 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x82c27bfd scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82dbec19 erst_write +EXPORT_SYMBOL_GPL vmlinux 0x831525c3 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x8318eac9 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x8329ad02 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x832a73a0 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x832a7b13 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x832eabe4 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x834ff81a da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x836666ce alarm_init +EXPORT_SYMBOL_GPL vmlinux 0x836e7b00 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x83b4d5bf irq_find_matching_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x83ba5fbb hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x83e7fa83 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x83f6d7e2 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x841da5ed subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x8423b019 ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0x8427a6d3 xen_swiotlb_map_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0x8429eed5 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x842cab77 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x8431d6b2 shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x84368bed __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x844a9152 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x844e4083 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x84539aac fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x848f8f50 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x848fe3ed crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x84a11f10 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x84a9ca7f virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84cd2fbf pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x84d6fec7 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x84e0d85e tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x84e7855c register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x84fdb0a4 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x84ffac3b debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x85054a40 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x855059ae pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x858594ae spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x859875b7 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x8598ac58 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x859a6dc3 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x859aea9a xen_set_domain_pte +EXPORT_SYMBOL_GPL vmlinux 0x85b82f1e component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85cb2c45 xen_has_pv_devices +EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq +EXPORT_SYMBOL_GPL vmlinux 0x85ed6390 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x86000f4c crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x8605f136 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x864db66d dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x8654be58 hv_remove_vmbus_irq +EXPORT_SYMBOL_GPL vmlinux 0x86601b10 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq +EXPORT_SYMBOL_GPL vmlinux 0x8666a7c5 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x866b073b smp_ops +EXPORT_SYMBOL_GPL vmlinux 0x8670aae3 skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x86724241 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x86819bc6 irq_ts_restore +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x86a51007 gnttab_end_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x86bc3f15 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x86db4654 page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x86e51e74 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x86eb0a3f pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x86fefa88 clk_gpio_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x8702e548 process_srcu +EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared +EXPORT_SYMBOL_GPL vmlinux 0x87329ae8 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x87350718 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x8748671b usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x874cc791 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x875720c1 i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x876643fc cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x87878e45 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x879d1b1c pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x87de525c __sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x87ea0002 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x880da9a1 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x88136838 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x8856f51f __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x886f409c ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x88841cd9 efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88b58874 sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x88df2c16 scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0x88fd9e16 agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x892537e3 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x8926f83c thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x89495374 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x8956aeae apei_exec_ctx_init +EXPORT_SYMBOL_GPL vmlinux 0x89593a44 blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0x897102a4 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89cdb825 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x89d05abc devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x89e04be4 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x89e37c79 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x8a02b6c2 extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x8a43d028 pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x8a456737 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x8a4b8066 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x8a559846 gnttab_setup_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod +EXPORT_SYMBOL_GPL vmlinux 0x8a67a903 xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0x8a78989f irq_from_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x8a78f9d3 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control +EXPORT_SYMBOL_GPL vmlinux 0x8a835788 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8a951089 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x8aafb860 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ac4a86b power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x8ad191f6 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x8ade2c51 virtqueue_get_avail +EXPORT_SYMBOL_GPL vmlinux 0x8afc4a31 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x8afd97df ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x8b03c71a __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x8b04668e bind_interdomain_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b2373e4 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8b3762ae crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x8b6ce896 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x8b75c18a do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8b8ae8d3 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8b8dd7ac class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8b9200fd lookup_address +EXPORT_SYMBOL_GPL vmlinux 0x8b95f20b i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x8b9c1480 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x8bec1620 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x8bfadbfd xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c06a108 xenbus_transaction_start +EXPORT_SYMBOL_GPL vmlinux 0x8c0bb8d3 gov_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x8c1c4b8b netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x8c1ee7a0 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8c27e94c to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x8c549bb2 reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c66b199 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x8c6bf90a usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x8c6f30c9 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c9d1661 arch_phys_wc_index +EXPORT_SYMBOL_GPL vmlinux 0x8c9f5720 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x8cae54b5 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params +EXPORT_SYMBOL_GPL vmlinux 0x8cd9f935 setup_APIC_eilvt +EXPORT_SYMBOL_GPL vmlinux 0x8cde0dcd get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x8cea765f memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0x8cf00d6b pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x8d005769 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x8d068635 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x8d09c1a8 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x8d0e53bf xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d3018fd get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x8d3fedd6 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x8d522714 __rcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x8d9fa235 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x8da1256d __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x8da19d6e __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x8dacb6b5 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x8dc4378e __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0x8e134365 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x8e21f890 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e2fccfe ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x8e542fbf fpu__restore +EXPORT_SYMBOL_GPL vmlinux 0x8e54a221 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x8e5f2865 xen_swiotlb_sync_single_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0x8e7b4361 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x8e854b7a irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x8e875419 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x8e90d6ed blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x8ee465af tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x8ef6393e iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x8efd5376 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f4483ba xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0x8f67844e irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0x8f6bd330 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f71628d arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x8f7c2e7e crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x8f7d90a5 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x8f9a47a6 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x8fc2963b skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x8ff56c4c ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x9009602a acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x900d8e12 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x90144415 bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x90365c0e nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x903bb65b acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x907feb52 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x908aa306 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90bbe03b debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x90c96789 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x90dc29df aout_dump_debugregs +EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify +EXPORT_SYMBOL_GPL vmlinux 0x912f609d xen_swiotlb_dma_mapping_error +EXPORT_SYMBOL_GPL vmlinux 0x913c2ffc wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0x914c12e3 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x915ba58f event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x91676f39 dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x91708adf __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x919ec103 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x91b516fb xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91d8108a virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x91e5cdbe swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x91f0c992 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x9203e87b regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x921cd0a4 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x9227f94f kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x92410bbf usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x9273028d kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x929167a1 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x92b8118d class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92f81643 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x9312d80e evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x9322761e key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x932b50f7 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x933f5639 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x935bd2a3 phy_create +EXPORT_SYMBOL_GPL vmlinux 0x93650064 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x936951f3 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x936db988 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x93a82a66 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x93d8a374 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x93dc2586 pgprot_writethrough +EXPORT_SYMBOL_GPL vmlinux 0x93ec847e devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x93faad44 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x940224e5 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x94243f93 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x943778ef xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event +EXPORT_SYMBOL_GPL vmlinux 0x9447291d perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x9450550e percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0x94599c41 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x946d5e47 crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x948c84ad pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x949de465 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94a36598 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x94bf904d tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x94c318be apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x94e9aec5 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x9519fcb5 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x95538dc6 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x956aab70 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x957e2e60 cpufreq_governor_dbs +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x959056d1 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x9591d6d1 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x95b3e62d adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95cba492 reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x95d1a7eb pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x95f13fb2 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x95f5d8ce device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x960b05a6 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x9618f5c0 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x962b64f3 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x96436239 pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x964add15 xenbus_scanf +EXPORT_SYMBOL_GPL vmlinux 0x964d5c39 acpi_os_map_memory +EXPORT_SYMBOL_GPL vmlinux 0x965444b2 device_add +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9660dd56 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x96626387 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x966d3bbd ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x967672f0 phy_put +EXPORT_SYMBOL_GPL vmlinux 0x96776025 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x968e4266 xen_swiotlb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x96b0b240 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x96d8d795 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x96e1abc5 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x972ba455 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x97386844 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x973ab8ad cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x9755b52d tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x975bcb4f sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x977d2821 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x9786a753 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x97afcb5c iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x97b132e2 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x98101f7b usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x9818fcde gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x983f1236 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x987df1a4 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x98a9a3e1 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x98dccd62 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x98e5e7fc __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x98f9f73d fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on +EXPORT_SYMBOL_GPL vmlinux 0x98ff4efb pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x9902f845 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x99091212 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x991eddea pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x9931b9bb tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x99436736 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x99587230 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x99608282 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x9973add9 __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99bfca9c pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x99c02273 ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x99cac210 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a247c8e sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0x9a4b4442 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x9a59a92f ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x9a785c54 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9aab1f39 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x9ab14b93 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ad1b551 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x9ae66799 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af4045c crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x9b3e0058 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x9b422d19 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x9b6a7412 idle_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x9b720312 acpi_target_system_state +EXPORT_SYMBOL_GPL vmlinux 0x9b783ddd task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x9b8f357c scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x9b934050 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus +EXPORT_SYMBOL_GPL vmlinux 0x9ba1b6d3 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9bac32f6 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x9bbd182c devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x9bc44921 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x9bc5ba84 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x9bc66123 percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0x9bca03ca ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x9bcbeb4b init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x9bd72b78 apei_write +EXPORT_SYMBOL_GPL vmlinux 0x9be637f5 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9c09dc5c nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x9c10b6d2 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9c1a0797 acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0x9c2de449 memory_add_physaddr_to_nid +EXPORT_SYMBOL_GPL vmlinux 0x9c2e4b66 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x9c462261 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x9c5b3f25 bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x9c73bcfd acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0x9c8321ad usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x9c85ff15 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x9c96a45b iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x9caabbd3 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x9cbab8bb tps65912_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cc6f286 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x9cc81dd2 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x9cd68e75 rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9cd6c6d8 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x9cdeeb16 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x9ceb69a4 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x9ced82f9 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x9d06688b register_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x9d332713 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x9d3850e1 gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x9d3dae8a platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x9d71dcec register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported +EXPORT_SYMBOL_GPL vmlinux 0x9dc42d7e find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x9dee0a20 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x9e053cbe kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x9e05499a init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x9e1e9210 md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x9e204943 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x9e32e17c blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x9e3810b8 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e697e8a usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x9e71d7e7 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x9e86a9f6 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x9eb9ae87 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x9ec15107 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9efc3651 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x9f078392 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x9f0bc1e8 device_move +EXPORT_SYMBOL_GPL vmlinux 0x9f0e20bd ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x9f1b5ac2 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x9f2fe763 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x9f428713 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x9f44f49d thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0x9f4edfc1 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x9f723c5d devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x9f73ec9d usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0x9f7aa93e pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x9f849ec1 xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x9f92af83 x86_hyper_kvm +EXPORT_SYMBOL_GPL vmlinux 0x9fc78475 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9fe9c2ec fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x9fec5b71 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x9ffb1e73 trace_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0xa00d4bd4 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0xa014a6ac trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xa034d5f7 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0xa054fdee nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xa05b5234 acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0xa07c8d9e posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0xa07e90b9 __remove_pages +EXPORT_SYMBOL_GPL vmlinux 0xa0892273 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xa0b05bff ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xa0c082e8 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xa0dd33b0 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xa0f334d1 arch_add_memory +EXPORT_SYMBOL_GPL vmlinux 0xa10b5001 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type +EXPORT_SYMBOL_GPL vmlinux 0xa11b55b2 xen_start_info +EXPORT_SYMBOL_GPL vmlinux 0xa1244ec5 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0xa12fef87 gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0xa1415ac6 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0xa1462f61 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0xa1498221 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa1b7e4ed sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xa1bad785 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0xa1c10e04 nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xa1d27207 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0xa1f79553 xen_create_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0xa206be13 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xa20afa48 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2718017 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa2760f6c blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa288e3fe debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xa2ac5519 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0xa2b1674d crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xa2b9c993 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2d886ca dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xa3095369 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xa3298446 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xa34fbd2d blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0xa353fffc xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xa35d9ef7 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xa35fe53f power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xa3748943 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa3803300 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa384918b pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa386c029 trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa39c87b6 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3aa1e2f wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3e58789 efivar_validate +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa3f918a2 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0xa3faf5a6 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xa4126860 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xa42aee34 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0xa4415fc2 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xa452c297 hpet_mask_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq +EXPORT_SYMBOL_GPL vmlinux 0xa4623cbc fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xa466de38 acpi_processor_ffh_cstate_enter +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa48a5a59 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xa4a1128f rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xa4a92c31 input_class +EXPORT_SYMBOL_GPL vmlinux 0xa4b73f78 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xa4bd875c regmap_update_bits_check_async +EXPORT_SYMBOL_GPL vmlinux 0xa503918a gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xa50b1c4d gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xa54d6636 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xa57e9c7a fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0xa5834428 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xa5a3038e regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0xa5baad7a clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0xa5ce7e2f device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xa5da6cdb ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xa5e6ecbe acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa60a53ef cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xa61df3a0 __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0xa621d04c power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa62892c6 efivar_sysfs_list +EXPORT_SYMBOL_GPL vmlinux 0xa62aceda ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0xa64103a9 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xa66438e8 erst_read +EXPORT_SYMBOL_GPL vmlinux 0xa6647139 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6c32dad usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6e6237c mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0xa7067a7b i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xa70ca802 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0xa7144677 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xa7212498 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0xa7315d7d xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0xa769d2db regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xa7785599 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xa799d514 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0xa7c05aff perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa7d34bfc pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xa7fae3cb alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xa7fe5404 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xa801b359 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0xa80f3b73 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xa817074c security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0xa81bef70 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa820b788 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0xa82b1ba6 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0xa82eec5e pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xa845fa52 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa859f6d5 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xa8a3f2f6 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8b95bed trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xa8dac047 mmput +EXPORT_SYMBOL_GPL vmlinux 0xa8e3efde phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xa8fd8e84 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xa9065f93 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa9143342 find_iova +EXPORT_SYMBOL_GPL vmlinux 0xa92fdde1 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9303a5b ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa941ed8c inet_csk_compat_getsockopt +EXPORT_SYMBOL_GPL vmlinux 0xa97e2997 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0xa99ebb7e bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xa99f146f wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0xa9b94ef1 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xa9d888b1 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaa18f467 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xaa3518ce devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xaa60429a regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xaa71cf8f phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0xaa99aab7 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xaa9c3d20 pci_get_hp_params +EXPORT_SYMBOL_GPL vmlinux 0xaaa23d73 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xab01acbe gnttab_request_free_callback +EXPORT_SYMBOL_GPL vmlinux 0xab07c28b irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xab1154df tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0xab161e9b class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xab34b564 iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0xab387011 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xab54d57c blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0xab567d31 percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xab573eb7 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab75d3ce usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xab86e20c attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xabbf7416 component_master_add +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabe4c20e usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0xabfb924a tpm2_startup +EXPORT_SYMBOL_GPL vmlinux 0xac4c1063 rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0xac568dc3 blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0xac8440fd securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xac8f64df wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xac8ffef2 dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0xac998810 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xac9ce195 kvm_async_pf_task_wait +EXPORT_SYMBOL_GPL vmlinux 0xaca0adc1 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xaca27e28 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xacae8a02 iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0xacafa8e7 vector_used_by_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xacb9a962 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xaccd6887 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0xacd595b7 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xacdd5d46 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xacffe377 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xad12cbd7 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0xad13772b perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xad32eb77 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xad541832 cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0xad570a4a led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xad8d8ab0 xen_physdev_op_compat +EXPORT_SYMBOL_GPL vmlinux 0xadaac565 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xadd9e496 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xae013184 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xae15469a ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xae178a8b nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xae2eef20 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xae2f44a7 acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0xae574393 efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0xae5ec4c0 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae6eaf93 hwpoison_filter_dev_minor +EXPORT_SYMBOL_GPL vmlinux 0xae723c65 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xae737dde crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xae7a08db fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae7c7c5b dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xae850bcd rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0xaea159a5 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xaeabe2d2 nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xaec35d7f usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xaec8fb83 nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0xaecba6be percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0xaed8a171 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0xaef314e7 usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0xaefa8537 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xaf18cd23 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xaf6bb4ab class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xaf78c803 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xaf849170 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xaf89d9db unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xaf9439db leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xaf9b5aa7 klp_register_patch +EXPORT_SYMBOL_GPL vmlinux 0xafa4ad4e pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xafd49fc7 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xaff3f721 devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0xaff6cc2f ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xb0012c5c pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xb00b833e pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xb018830f fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb02e6bc4 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xb0345f9e regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xb072953c dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb0864747 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0bce4f0 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xb0c21ccb bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0xb0c4cd53 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb145a22b pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0xb15845f1 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb172ffac efivars_sysfs_init +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb1a5f2fe usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1b370bd __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1bedeb7 register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xb1d93751 put_device +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1ed8d0b fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0xb1f32450 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xb1f79df5 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0xb2064ee5 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb241f25b usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xb24a3407 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xb24c95a2 bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0xb254ea62 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xb2610308 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb275076b class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xb292822a put_pid +EXPORT_SYMBOL_GPL vmlinux 0xb2c3c7ad driver_find +EXPORT_SYMBOL_GPL vmlinux 0xb2d3f997 pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2eed852 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xb312da6a debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xb31aa325 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init +EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy +EXPORT_SYMBOL_GPL vmlinux 0xb352939f da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xb36f6a6f debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xb3cf9f0d __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0xb3db0fe2 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0xb3ec28f7 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xb408ce20 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0xb429b943 set_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0xb4548d80 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xb4557e67 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xb487f5aa device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4bb8a14 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xb4d53c7a skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xb4e14553 gnttab_query_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb4ea2320 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb53cda0c ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xb53d7367 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0xb5431454 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb54f4dfa task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xb554fb48 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xb55e4b4f ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0xb5652b6a security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xb57bd8d9 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xb5848bae __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb59d42ef __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5a145bf dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xb5a92313 klp_disable_patch +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb60717fb blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0xb60c5b60 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xb61b2abe device_reset +EXPORT_SYMBOL_GPL vmlinux 0xb6230f1f gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb6302f7e __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xb634030d __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb63f50c8 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xb646ccba smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xb64e9b91 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xb66421b2 acpi_str_to_uuid +EXPORT_SYMBOL_GPL vmlinux 0xb68f03b4 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xb6a2fcfd page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6e9ca78 efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xb6ef5db5 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xb7058cb2 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb70afe15 use_mm +EXPORT_SYMBOL_GPL vmlinux 0xb718f2f9 sfi_table_parse +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb73b740a trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0xb755fa04 wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0xb75610d8 regmap_fields_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xb7718b8b ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xb77f4586 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0xb791c332 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0xb7b7f514 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0xb7d387a2 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time +EXPORT_SYMBOL_GPL vmlinux 0xb7daef3c __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xb7e3140f pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0xb7e55c53 xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xb7e72987 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xb7f65f9c tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb7fa24e8 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xb7fcec43 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xb80e6fc4 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xb8353296 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xb844a457 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xb84bb951 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0xb84d5ab4 tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0xb8546bef pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb88face7 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xb8a1c88f rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xb8a7fe27 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0xb8bcb9b7 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8d784b0 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0xb8e50962 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xb900c3ee rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb93ca495 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xb945ace8 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xb96d2b99 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xb977e7fe ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0xb97acb77 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xb99d5837 xenbus_read +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025ae usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9d2d7df gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0xb9daa999 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xb9df6c13 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xb9e59c10 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xb9ebc031 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0xba00d55d devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xba041d58 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xba1124c6 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba302236 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0xba4bf808 thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0xba84e06f fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xba94c685 cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0xbaa0243f ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbac069a2 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0xbaf8081f nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb0610e3 acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb162e8e pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0xbb1a9621 pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0xbb661124 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbb767001 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xbb768919 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xbb916ca5 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info +EXPORT_SYMBOL_GPL vmlinux 0xbbd4f657 xen_pcpu_id +EXPORT_SYMBOL_GPL vmlinux 0xbbeea1c0 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xbc11b69a fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0xbc1c98db __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0xbc1e7480 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0xbc2c4d4c __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0xbc4217d4 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0xbc4754cd mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbc483e6c ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc72075b pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xbc7c88cc __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xbc8f1670 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xbc931ff5 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd614e80 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xbd671048 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xbd86b127 usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xbd9381d1 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0xbda0e753 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0xbdb49968 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbdd5f10f apei_hest_parse +EXPORT_SYMBOL_GPL vmlinux 0xbdf01611 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xbe0500cf led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xbe0a6d9a evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe5d0996 idle_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe8f4502 virtqueue_get_used +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbeaa1cd4 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbebcd541 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xbebefbe3 tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xbeeee742 pwm_config +EXPORT_SYMBOL_GPL vmlinux 0xbef4ebf7 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf10959a list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xbf3c0fe8 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xbf546fa3 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0xbf70c548 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xbf7495b7 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xbf89379d da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0xbf923f69 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xbf959b8a spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xbfa12f1f rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0xbfaaafff blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0xbfb1be70 hv_setup_vmbus_irq +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfd10bb7 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0xbfe2e9b2 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfe80de5 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xbff6079a skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xbff7888b tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space +EXPORT_SYMBOL_GPL vmlinux 0xc00305f6 regmap_update_bits_check +EXPORT_SYMBOL_GPL vmlinux 0xc0494705 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xc04b21bd acpi_os_unmap_iomem +EXPORT_SYMBOL_GPL vmlinux 0xc0506ddd xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0xc05ec844 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc0900fcf acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0b25690 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0f97dfb init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xc11db8ba __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xc1234479 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xc124613a spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xc12bfc81 napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xc13669ad device_find_child +EXPORT_SYMBOL_GPL vmlinux 0xc145b0d8 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0xc14c2824 xenbus_probe +EXPORT_SYMBOL_GPL vmlinux 0xc164642e xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc183a7eb crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xc187696a gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0xc19ce477 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0xc1aa1be6 get_device +EXPORT_SYMBOL_GPL vmlinux 0xc1b2ab31 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xc1bd8540 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xc1e3c1fc devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0xc1ee3044 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xc1ef4829 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0xc1fd0b12 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xc2105ee9 extcon_get_cable_state +EXPORT_SYMBOL_GPL vmlinux 0xc21b2b05 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc236f924 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xc240d17f wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xc246b590 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xc254e136 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xc26351f8 bind_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc287d96a kvm_set_posted_intr_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0xc2b7e1f3 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc2c5726c irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xc30d161d phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc31d59a4 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc3567ef3 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xc357923c pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xc35894d4 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc3783a27 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0xc38f36d9 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xc3a04506 devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc3a04dcd pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0xc3a9986b unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xc3add187 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xc3cc7467 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc3f4cec3 intel_svm_unbind_mm +EXPORT_SYMBOL_GPL vmlinux 0xc403434d pwm_enable +EXPORT_SYMBOL_GPL vmlinux 0xc40418c5 devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc426bded xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc447dd93 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xc4508626 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc48182e1 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xc484fd34 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc4a33f79 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xc4ca9428 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc4d760c7 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc4e7ac96 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xc4fad0ff serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xc50554d7 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0xc512626a __supported_pte_mask +EXPORT_SYMBOL_GPL vmlinux 0xc52970ae task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xc5397da6 xenbus_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xc53c5c8f platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xc53fea7c cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc5503362 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0xc553768e ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc59f0196 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0xc5ad2d38 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc5b3406c scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0xc5b51676 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xc5c4911b dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xc60886ba fat_scan +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc63e7d93 static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xc64b7d95 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0xc64c5a49 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc665ec7d irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc6724a93 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc68cefc7 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6bb1366 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xc6c116ad crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xc6da7a0a __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0xc7002ac4 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0xc700bdc6 rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc70e7e04 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc75f6d8d pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xc7659419 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0xc76fa6cf aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer +EXPORT_SYMBOL_GPL vmlinux 0xc7cd6018 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xc7db996a wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7f174be devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc801634d balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xc81b765d put_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xc8223c68 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0xc8406165 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0xc8466ea0 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0xc856f132 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xc87196ff rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc93b2dc6 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc9705eeb has_newer_microcode +EXPORT_SYMBOL_GPL vmlinux 0xc978032f part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0xc996763e __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xc9b60b5f ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xc9ca3066 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xca26bd10 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xca26d568 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0xca294a0c unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xca3dfe2e regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xca50734f crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0xca52e235 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xca5a79de transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xca6343d1 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xca73da88 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xca7903a1 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca81ea9a xenbus_transaction_end +EXPORT_SYMBOL_GPL vmlinux 0xca9767cc xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0xca985e09 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xca9e293e vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcae37d01 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0xcaf270b4 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xcb056b50 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb1c96a2 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0xcb36c331 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xcb51b8f7 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xcb7219a8 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0xcb86998d devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xcb87014a ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0xcb929e49 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xcb958c40 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xcbb33d88 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0xcbd0a827 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xcbd2270f crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0xcbdd8f94 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xcbe068cd mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbe8808d pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xcbedba44 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcbf7ddf4 xen_swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0xcbfbddd3 get_hwpoison_page +EXPORT_SYMBOL_GPL vmlinux 0xcc06ecbf usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0xcc108a68 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc17495b blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0xcc295ae5 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0xcc2a88fa crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xcc4f5ef9 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xcc620626 acpi_dev_gpio_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xcc6213d0 devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xcc7a2922 iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcc92ce6d ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xccb84b0a __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0xccbeb2b4 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0xccc24256 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xccc96910 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd6e657 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xccea4e34 perf_get_x86_pmu_capability +EXPORT_SYMBOL_GPL vmlinux 0xccf7b421 devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xcd2253f0 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0xcd4dd163 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xcd5d4ef9 btree_update +EXPORT_SYMBOL_GPL vmlinux 0xcd667d7d balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcda2618e syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xcdaf4138 bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdd990a2 efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0xcde34ce3 add_memory_resource +EXPORT_SYMBOL_GPL vmlinux 0xce12d037 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0xce151a36 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0xce28a788 device_attach +EXPORT_SYMBOL_GPL vmlinux 0xce4f534d genlmsg_new_unicast +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce84ab19 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xce9ab7d6 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xceab4b16 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xceacf3d0 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xceb591a4 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xceb88d4d shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0xcec32fa9 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee3008d platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcee9837f __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xceed5627 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0xcef1dd0e perf_check_microcode +EXPORT_SYMBOL_GPL vmlinux 0xcef274d3 xen_swiotlb_unmap_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0xcf0e9b37 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xcf53bade wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf5d8585 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0xcf8d9aab bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0xcf8dbc34 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0xcf8dc0e7 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xcfaf5ead scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0xcfb3a883 acpi_dev_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfe3bdc6 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0xcff48317 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd00401d4 fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0xd02d0832 cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0xd02dbe53 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd040dda2 reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate +EXPORT_SYMBOL_GPL vmlinux 0xd04edf4a tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xd055af5c blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd068342c led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0xd069972c usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xd0c00e36 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0d12e67 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xd0dfad1e xen_swiotlb_sync_sg_for_device +EXPORT_SYMBOL_GPL vmlinux 0xd0f9eea5 klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xd0fddee8 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0xd1403b4d led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xd14f9678 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xd14f9b42 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xd1507e59 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0xd1553b3b srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0xd15e91b9 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xd160a17c sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd169e009 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xd16ab1f4 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0xd17d26b3 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xd1a6b97c pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xd1b4d8d1 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xd1efdb01 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd1fb0f8f bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd20fe808 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd2400fab __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0xd25205ed hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd25ee25a of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xd25fa113 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd273207e spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd2817892 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xd281fd05 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xd28285ef power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd2a272c5 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0xd2a61952 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xd2c58ab2 apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0xd2d1927b hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2e5cda3 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0xd2e88de5 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0xd2eecfa4 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xd3052fe8 acpi_subsys_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xd30c4a6d rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xd32dd88c fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xd37bab0b __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0xd38ba998 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xd3a04a43 arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xd3bb396b device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xd3bbf198 fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0xd3bddcf9 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0xd3d10ac6 nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd404a937 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd4080357 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xd40daf73 acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xd42dfb5c inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xd42f55e6 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xd43eced9 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0xd4487fd5 snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd45da5d8 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0xd45ea32f hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0xd4826646 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd4914069 regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xd4b173df device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xd4b9a449 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xd4ba1891 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0xd4bd66a0 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4ece40c __put_net +EXPORT_SYMBOL_GPL vmlinux 0xd4ee9c99 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xd5030f07 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xd51e7b3f xhci_run +EXPORT_SYMBOL_GPL vmlinux 0xd534d00d adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xd54d4ae3 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xd5510d71 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd56b5f64 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0xd58745bf pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xd590a4d5 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xd5bb7f68 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5f323a3 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xd5f8b7e9 system_trusted_keyring +EXPORT_SYMBOL_GPL vmlinux 0xd5fb6eb1 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd6171fb7 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd6267717 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xd63ffa07 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xd65bd9c8 put_hwpoison_page +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd68a4bd0 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0xd68e6b3c pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0xd6d9c42e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0xd6ed3a8e cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0xd6f23da3 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xd6f31808 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xd6f90089 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd70236dc sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd70f4677 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd74a41bd dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xd75467f8 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xd75b6314 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xd764d265 inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd798480f fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xd7a62b74 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0xd7abf362 crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xd7b81ee0 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xd7c0b43d ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xd7ceaadf class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd8157354 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd82922ac component_master_add_child +EXPORT_SYMBOL_GPL vmlinux 0xd82c0dcf acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xd85c1c87 gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0xd872d515 usb_string +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd87b07a7 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd88cd406 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0xd8a079df debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xd8a928ae tpm2_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xd8ad827c __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xd8b0a12b acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xd8b3d780 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0xd8b85191 pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0xd8cf61d7 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd8dfcfad sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0xd8e0abdc pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0xd8f41fc8 x509_request_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xd9028f13 acpi_dev_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd905f38f iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges +EXPORT_SYMBOL_GPL vmlinux 0xd923afae list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xd93263ca rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xd935292f apic +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd94cccdf subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd94fa823 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd96bc1a5 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xd97fd282 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd986dad1 kernel_fpu_begin +EXPORT_SYMBOL_GPL vmlinux 0xd98c72a5 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xd9944232 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0xd9b207c9 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9f39e86 blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0xda206f28 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0xda389561 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0xda3c5859 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0xda8d4921 rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0xda959746 __nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdab77d12 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xdadfd290 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xdae4ac06 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdb1a046c key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xdb446afa dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb622cd3 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb69993c rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xdb747300 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xdb7a3c9c smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb916fd0 trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0xdb91e05c tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xdb95874e pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0xdbea5ca1 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall +EXPORT_SYMBOL_GPL vmlinux 0xdc188b7c platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdc1d0f9f efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0xdc2bcbb2 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc7cab5a preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc90ae6d regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xdc90e889 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9945db mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdcb24901 usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0xdcb2d696 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xdcdb6a02 nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xdce4f03f usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xdceba854 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xdd18aff5 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd227165 devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd39bb3b ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0xdd415154 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0xdd57e2b5 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0xdd58945d ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xdd599a4a crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xdd7606f4 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0xdd9a5346 shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xddb6ca47 spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddbf42da regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xddedecdf ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0xddfd51dc sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xde16f9f0 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xde183315 shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0xde1cf934 __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xde1e684e ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xde709102 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0xde78f368 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0xde7bf22d wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xde804b73 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0xde8dd926 klist_next +EXPORT_SYMBOL_GPL vmlinux 0xde9e2403 memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdeac5ef5 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xdeb13647 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xdeea23a0 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xdefb2759 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0xdf210213 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0xdf36c66a extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xdf55fc18 dma_request_slave_channel_reason +EXPORT_SYMBOL_GPL vmlinux 0xdf5df374 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xdf622181 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xdf66ca81 ucode_cpu_info +EXPORT_SYMBOL_GPL vmlinux 0xdf75282c inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xdf776b91 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xdf8c4a76 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xdf8d8892 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xdfa19ce8 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdfa6fa56 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xdfaca769 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdfcbca60 swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0xe0026fda __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe0159c1e mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0xe022dd0f pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe0427277 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xe04b7dfc clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xe05128b5 __add_pages +EXPORT_SYMBOL_GPL vmlinux 0xe052aaf6 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xe05e8ebc register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe0862031 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xe0873918 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xe088667c ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe0ada9b0 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0xe0addfbb led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq +EXPORT_SYMBOL_GPL vmlinux 0xe0c811b0 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xe0ceec30 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0xe0d151fc power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0xe0d4189e reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xe0fc070c device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe140c1bf ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0xe149f7d2 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xe16b0d30 unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xe1749431 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe18ad747 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0xe1b1d5e5 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xe1b592ba irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1ee951a ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xe1f1f309 x86_vector_domain +EXPORT_SYMBOL_GPL vmlinux 0xe1f8b106 apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xe218ed70 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xe2311567 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0xe25349e0 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xe25ec4ee dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xe27e694a pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xe2866cd7 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe29349dc copy_reserved_iova +EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe2abd6d2 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0xe2fad8ff hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe310ad3f sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0xe323c797 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xe33e5f6c sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0xe35f9cba elv_register +EXPORT_SYMBOL_GPL vmlinux 0xe36547aa blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xe3925249 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe3948ff4 acpi_walk_dep_device_list +EXPORT_SYMBOL_GPL vmlinux 0xe39e9089 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xe3b1d5f9 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xe3b97803 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3bda663 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe3c7022e regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe3cb7b6b shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xe4015746 gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0xe41534ce bind_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0xe418fde4 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0xe427d54d usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xe42b0091 find_module +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe44796a6 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0xe4594cc5 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xe466f8d1 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe47d9548 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe48726d3 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe49d9769 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xe4b271a6 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0xe4e68bc8 apei_map_generic_address +EXPORT_SYMBOL_GPL vmlinux 0xe4ef5bf9 tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xe4fe400a irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0xe50e2398 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0xe514d401 usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xe5175d56 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0xe5243788 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe5261477 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0xe52c8173 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xe545a811 get_xsave_addr +EXPORT_SYMBOL_GPL vmlinux 0xe5648b55 xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0xe5677213 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xe5867495 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58d647f dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe59c3a7f inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0xe5a15097 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xe5aa134b mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0xe5b478c7 __module_address +EXPORT_SYMBOL_GPL vmlinux 0xe5b5cf44 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xe5b8082b cper_estatus_check_header +EXPORT_SYMBOL_GPL vmlinux 0xe5f9c10d spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0xe61ba4ce pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xe627cad9 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler +EXPORT_SYMBOL_GPL vmlinux 0xe651539d rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe65b093b spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0xe660d527 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xe66f1fc5 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6ed141e xenbus_map_ring +EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data +EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe746849a usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe756105e ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0xe768d444 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe7b4350e vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xe7b48a29 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe7bb9f21 __class_register +EXPORT_SYMBOL_GPL vmlinux 0xe7cd9289 skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0xe7e2a728 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xe7f68a35 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xe7f96857 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe8155bfe ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe862cc89 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xe8762a49 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0xe87e2d0c xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xe88083cf gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0xe8898891 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xe89bd243 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe8b23a3c crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xe8cc1251 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xe8f46963 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xe9087543 tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0xe90c2e7c user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe91a63e2 acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0xe91d6e27 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe97c3ed2 wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0xe9859f40 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xe99144b6 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0xe9b4e993 __netlink_alloc_skb +EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea147be6 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea433c60 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xea4ebd64 xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0xea563046 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0xea628c20 bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0xea6a905b ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xea9fd51f rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0xeaa9fe7a gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xeafd7930 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0xeb194e2b pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xeb2798f7 xen_destroy_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0xeb2eb288 efivar_variable_is_removable +EXPORT_SYMBOL_GPL vmlinux 0xeb306801 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0xeb370805 __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xeb4428e3 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0xeb4ff736 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xeb7c8bd8 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xeb7d183e jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xeb8274d2 percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0xeb833c22 xen_has_pv_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0xeb99d2c6 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xebafb77f blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec3e636f eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xec4012f8 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xec631f34 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0xec7cff9c regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xec938cae da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xecad3b34 do_machine_check +EXPORT_SYMBOL_GPL vmlinux 0xecba321c pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0xecd6fdfb of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xece7dfaf pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xeced40c5 gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0xecfdbfc4 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0xed0a1f4d efivars_register +EXPORT_SYMBOL_GPL vmlinux 0xed200276 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xed4b1df4 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0xed5080d2 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0xed565d63 devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xed6b8c01 regmap_fields_force_write +EXPORT_SYMBOL_GPL vmlinux 0xed7e81e0 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0xed981a16 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xed9ce7ef inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0xeda8652c debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xedbc6f67 gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xedcdffd4 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0xedee1f76 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0xee0b212f acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xee0b47f6 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xee13e697 set_personality_ia32 +EXPORT_SYMBOL_GPL vmlinux 0xee302af2 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xee3c9892 usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee86d70b acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xee9caf6c devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xeebcf5ad ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xeee22cb8 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xef002518 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xef1973b5 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef351018 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0xef48aba9 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xef5b97c0 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef6d007a sigset_from_compat +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xef9632d6 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xefa045a2 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefbb05b2 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xefc16059 wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0xefc4c902 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0xefc50d37 default_iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0xefc94c6a regmap_write_bits +EXPORT_SYMBOL_GPL vmlinux 0xf013f921 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xf0318dfe shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xf0387355 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf057c960 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0xf06906d2 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xf06ec677 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xf06fcbfa clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf091145e cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xf0b553ab thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xf0c4cfa3 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0xf0df784c pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf1049874 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0xf10a0e73 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0xf10f2818 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0xf14e4d24 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xf15f8543 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf192b79f tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1b551d9 ibft_addr +EXPORT_SYMBOL_GPL vmlinux 0xf1d17057 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xf1dab640 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xf1fcbccb udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf1ff48f2 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf222aa67 cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0xf2275924 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xf229b2e9 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xf241f6b6 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xf24a02f6 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xf26084bd wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf2672510 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xf27769d7 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf291252d alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0xf29d3999 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xf2a52e1b tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2b27a06 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0xf2ded878 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xf2f8f75f mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf33dc43c sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xf3623cfb arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xf368769d crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0xf36af28b ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xf37453ed skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf3815391 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xf38922f9 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0xf3894916 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xf38b19cb mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b84dfb spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xf3c7cdce acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0xf3d00667 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf3d16a69 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0xf3dd3ec1 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf3ebf4eb arch_apei_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0xf3effa9a pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf3f4cc5e devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf3fe15a0 dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xf4029d4d ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0xf436327e page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0xf442843b crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xf46ea06b subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4ab256f acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0xf4ba0eb4 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf4ba53a2 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xf4baeca1 acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xf4dbbb9d platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xf52a8ffa call_srcu +EXPORT_SYMBOL_GPL vmlinux 0xf5379771 net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf53c7269 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xf5488ffc i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf5774c77 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xf5785b42 evtchn_get +EXPORT_SYMBOL_GPL vmlinux 0xf589ff6c regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0xf5945bac gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xf5a38b70 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5d0e69d ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xf609a771 __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0xf6185bb8 __class_create +EXPORT_SYMBOL_GPL vmlinux 0xf62e9f01 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xf631d525 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0xf644c626 rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0xf6a9556a btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0xf6b2052b __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6ce4173 __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xf6d3843a gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xf6da310d iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0xf6e29632 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6ebc4e4 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xf6ecc1d7 gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0xf6eefa76 nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0xf6f095bd dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0xf7016530 xenbus_gather +EXPORT_SYMBOL_GPL vmlinux 0xf70e4a4d preempt_schedule_notrace +EXPORT_SYMBOL_GPL vmlinux 0xf72f4da0 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0xf780f563 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xf79d79cf sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xf7a1bb8f srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xf7a2de26 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xf7b1bb03 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xf7bc099c crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf7cbe304 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xf7dfd765 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xf7e48691 ref_module +EXPORT_SYMBOL_GPL vmlinux 0xf7f07a0f bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xf8070ec3 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xf811b466 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0xf8142a5a regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf8374a0a sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xf8420c3b ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf8990820 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xf89be8d7 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0xf8df41dc devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xf8e29f0a crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xf8e809dd dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0xf8e9459e irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf90da188 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf91774e0 dax_fault +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf94de4cb swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf9765833 dmi_match +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9a55249 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0xf9a99f22 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0xf9ace424 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0xf9af67de pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9d9264e xen_have_vector_callback +EXPORT_SYMBOL_GPL vmlinux 0xf9de6aea ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9e53e2a blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xf9e97f92 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xf9f5d2f3 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xf9fb2f04 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xfa003ad5 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xfa0d3900 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched +EXPORT_SYMBOL_GPL vmlinux 0xfa456414 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec +EXPORT_SYMBOL_GPL vmlinux 0xfa9e33f7 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xfaa25473 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xfab78d03 acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0xfacbe684 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xfadfb9ee gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xfae1a7a3 __online_page_increment_counters +EXPORT_SYMBOL_GPL vmlinux 0xfaf302b4 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0xfb0047f6 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xfb0319d2 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xfb11c599 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xfb25ce06 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb383515 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xfb6358f9 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xfb64b230 acpi_processor_ffh_cstate_probe +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb9b68a6 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0xfba4fff6 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0xfbb440fd pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0xfbb8f837 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbcb0f80 dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xfbdc5496 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfbe020f8 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xfbee0324 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc053274 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xfc08c89a ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xfc2adfd2 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc473d7e inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xfc4c6263 __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0xfc62c492 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xfc709995 cpu_tlbstate +EXPORT_SYMBOL_GPL vmlinux 0xfc968c8b apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0xfca6bc38 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xfcc89d2b pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0xfcddf0ca usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xfce35802 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xfd51b281 gnttab_end_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xfd63cbd7 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd792dd1 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0xfd9437b4 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xfdccc149 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0xfe0267ad __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xfe055d7c alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xfe085d1f raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xfe0c5bf0 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xfe0d7572 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0xfe2d93ed platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xfe4684ae da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xfe5f6506 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xfe6249f1 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xfe7406a7 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xfe87711a fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfe8893ac irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfe9d94da zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0xfea6b569 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0xfeb4b008 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0xfebe0af2 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0xfec85113 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfee02f24 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfee83cc3 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfef4be1f acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff0a3c33 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff2ce747 machine_check_poll +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff5f427c mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xff966377 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xffab90cf ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffb87dd2 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-106.129/amd64/lowlatency.compiler +++ linux-raspi2-4.4.0/debian.master/abi/4.4.0-106.129/amd64/lowlatency.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.5) 5.4.0 20160609 only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-106.129/amd64/lowlatency.modules +++ linux-raspi2-4.4.0/debian.master/abi/4.4.0-106.129/amd64/lowlatency.modules @@ -0,0 +1,4616 @@ +3c574_cs +3c589_cs +3c59x +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_dw +8250_fintek +8250_mid +8255 +8255_pci +8390 +842 +842_compress +842_decompress +88pm800 +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +BusLogic +DAC960 +a100u2w +a3d +a8293 +aacraid +aat2870-regulator +aat2870_bl +ab3100 +ab3100-otp +abituguru +abituguru3 +ablk_helper +ac97_bus +acard-ahci +acecad +acenic +acer-wmi +acerhdf +acpi-als +acpi_extlog +acpi_ipmi +acpi_pad +acpi_power_meter +acpi_thermal_rel +acpiphp_ibm +acquirewdt +act200l-sir +act8865-regulator +act_bpf +act_connmark +act_csum +act_gact +act_ipt +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +act_vlan +actisys-sir +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5755 +ad5764 +ad5791 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7266 +ad7280a +ad7291 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7746 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad799x +ad8366 +ad9523 +ad9832 +ad9834 +ad_sigma_delta +adc128d818 +adcxx +addi_apci_1032 +addi_apci_1500 +addi_apci_1516 +addi_apci_1564 +addi_apci_16xx +addi_apci_2032 +addi_apci_2200 +addi_apci_3120 +addi_apci_3501 +addi_apci_3xxx +addi_watchdog +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adfs +adi +adis16060 +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16204 +adis16209 +adis16220 +adis16240 +adis16260 +adis16400 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1275 +adm8211 +adm9240 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adv7170 +adv7175 +adv7511 +adv7604 +adv7842 +adv_pci1710 +adv_pci1723 +adv_pci1724 +adv_pci_dio +advansys +advantechwdt +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +aes-x86_64 +aesni-intel +af-rxrpc +af9013 +af9033 +af_alg +af_key +af_packet_diag +affs +ah4 +ah6 +aha152x_cs +ahci +ahci_platform +aic79xx +aic7xxx +aic94xx +aim_cdev +aim_network +aim_sound +aim_v4l2 +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airo +airo_cs +airspy +ak8975 +al3320a +algif_aead +algif_hash +algif_rng +algif_skcipher +ali-ircc +alienware-wmi +alim1535_wdt +alim7101_wdt +altera-ci +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am53c974 +ambassador +amc6821 +amd +amd-rng +amd5536udc +amd64_edac_mod +amd76xrom +amd8111e +amd_freq_sensitivity +amd_iommu_v2 +amdgpu +amdkfd +amilo-rfkill +amplc_dio200 +amplc_dio200_common +amplc_dio200_pci +amplc_pc236 +amplc_pc236_common +amplc_pc263 +amplc_pci224 +amplc_pci230 +amplc_pci236 +amplc_pci263 +ams369fg06 +analog +anatop-regulator +ansi_cprng +anubis +aoe +apanel +apds9300 +apds9802als +apds990x +apds9960 +apple-gmux +apple_bl +appledisplay +applesmc +appletalk +appletouch +applicom +aquantia +ar5523 +ar7part +arc-rawmode +arc-rimi +arc4 +arc_ps2 +arc_uart +arcfb +arcmsr +arcnet +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arp_tables +arpt_mangle +arptable_filter +as102_fe +as3711-regulator +as3711_bl +as3935 +as5011 +asb100 +asc7621 +ascot2e +asix +ast +asus-laptop +asus-nb-wmi +asus-wmi +asus_atk0110 +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +atbm8830 +aten +ath +ath10k_core +ath10k_pci +ath3k +ath5k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atlas_btns +atm +atmel +atmel_cs +atmel_mxt_ts +atmel_pci +atmtcp +atp +atp870u +atusb +atxp1 +aty128fb +atyfb +au0828 +au8522_common +au8522_decoder +au8522_dig +aufs +auo-pixcir-ts +auo_k1900fb +auo_k1901fb +auo_k190x +auth_rpcgss +authenc +authencesn +autofs4 +avm_cs +avma1_cs +avmfritz +ax25 +ax88179_178a +axnet_cs +axp20x-pek +axp20x-regulator +axp20x_usb_power +axp288_adc +axp288_charger +axp288_fuel_gauge +b1 +b1dma +b1pci +b1pcmcia +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +bas_gigaset +batman-adv +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bch +bcm-phy-lib +bcm203x +bcm3510 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm7038_wdt +bcm7xxx +bcm87xx +bcma +bcma-hcd +bd6107 +bdc +bdc_pci +be2iscsi +be2net +befs +belkin_sa +bfa +bfs +bfusb +bh1750 +bh1770glc +bh1780gli +binfmt_misc +block2mtd +blocklayoutdriver +blowfish-x86_64 +blowfish_common +blowfish_generic +bluecard_cs +bluetooth +bluetooth_6lowpan +bma150 +bma180 +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmg160_core +bmg160_i2c +bmg160_spi +bmp085 +bmp085-i2c +bmp085-spi +bmp280 +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bnxt_en_bpo +bonding +bpa10x +bpck +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +br2684 +br_netfilter +brcmfmac +brcmsmac +brcmutil +brd +bridge +broadcom +broadsheetfb +bsd_comp +bt3c_cs +bt819 +bt856 +bt866 +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btqca +btrfs +btrtl +btsdio +bttv +btuart_cs +btusb +btwilink +bu21013_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c2port-duramar2150 +c4 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +cachefiles +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +caif_usb +caif_virtio +camellia-aesni-avx-x86_64 +camellia-aesni-avx2 +camellia-x86_64 +camellia_generic +can +can-bcm +can-dev +can-gw +can-raw +capi +capidrv +capmode +carl9170 +carminefb +cassini +cast5-avx-x86_64 +cast5_generic +cast6-avx-x86_64 +cast6_generic +cast_common +catc +cb710 +cb710-mmc +cb_das16_cs +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcimdas +cb_pcimdda +cc10001_adc +cc2520 +cc770 +cc770_isa +cc770_platform +cciss +ccm +ccp +ccp-crypto +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +ceph +cfag12864b +cfag12864bfb +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha20-x86_64 +chacha20_generic +chacha20poly1305 +chaoskey +chipreg +chnl_net +chromeos_laptop +chromeos_pstore +ci_hdrc +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +cirrus +cirrusfb +ck804xrom +classmate-laptop +clip +clk-cdce706 +clk-palmas +clk-pwm +clk-s2mps11 +clk-si5351 +clk-twl6040 +clk-wm831x +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm36651 +cm4000_cs +cm4040_cs +cma3000_d0x +cma3000_d0x_i2c +cmac +cmdlinepart +cmtp +cnic +cobalt +cobra +coda +com20020 +com20020-pci +com20020_cs +com90io +com90xx +comedi +comedi_8254 +comedi_8255 +comedi_bond +comedi_isadma +comedi_parport +comedi_pci +comedi_pcmcia +comedi_test +comedi_usb +comm +compal-laptop +configfs +contec_pci_dio +cordic +core +coretemp +cosm_bus +cosm_client +cp210x +cpcihp_generic +cpcihp_zt5550 +cpia2 +cpsw_ale +cpu-notifier-error-inject +cpu5wdt +cpuid +cr_bllcd +cramfs +crc-ccitt +crc-itu-t +crc32 +crc32-pclmul +crc7 +crc8 +crct10dif-pclmul +cros_ec +cros_ec_devs +cros_ec_i2c +cros_ec_keyb +cros_ec_lpc +cros_ec_spi +crvml +cryptd +crypto_user +cryptoloop +cs5345 +cs53l32a +csiostor +ct82c710 +ctr +cts +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +cx18 +cx18-alsa +cx22700 +cx22702 +cx231xx +cx231xx-alsa +cx231xx-dvb +cx2341x +cx23885 +cx24110 +cx24113 +cx24116 +cx24117 +cx24120 +cx24123 +cx25821 +cx25821-alsa +cx25840 +cx82310_eth +cx88-alsa +cx88-blackbird +cx88-dvb +cx88-vp3054-i2c +cx8800 +cx8802 +cx88xx +cxacru +cxd2099 +cxd2820r +cxd2841er +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cyclades +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da9030_battery +da9034-ts +da903x +da903x_bl +da9052-battery +da9052-hwmon +da9052-regulator +da9052_bl +da9052_onkey +da9052_tsi +da9052_wdt +da9055-hwmon +da9055-regulator +da9055_onkey +da9055_wdt +da9062-core +da9062-regulator +da9062_wdt +da9063-regulator +da9063_onkey +da9063_wdt +da9150-charger +da9150-core +da9150-fg +da9150-gpadc +da9210-regulator +da9211-regulator +dac02 +daqboard2000 +das08 +das08_cs +das08_isa +das08_pci +das16 +das16m1 +das1800 +das6402 +das800 +davicom +db9 +dc395x +dca +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +dcdbas +ddbridge +de2104x +de4x5 +decnet +deflate +defxx +dell-laptop +dell-led +dell-rbtn +dell-smm-hwmon +dell-smo8800 +dell-wmi +dell-wmi-aio +dell_rbu +denali +denali_dt +denali_pci +des3_ede-x86_64 +des_generic +designware_i2s +dgap +dgnc +dht11 +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dibx000_common +digi_acceleport +diskonchip +diva_idi +diva_mnt +divacapi +divadidd +divas +dl2k +dlci +dlm +dln2 +dm-bio-prison +dm-bufio +dm-cache +dm-cache-cleaner +dm-cache-mq +dm-cache-smq +dm-crypt +dm-delay +dm-era +dm-flakey +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-verity +dm-zero +dm1105 +dm9601 +dme1737 +dmfe +dmi-sysfs +dmm32at +dmx3191d +dn_rtmsg +dnet +docg3 +docg4 +dp83848 +dp83867 +dpt_i2o +drbd +drbg +drm +drm_kms_helper +drop_monitor +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds620 +dsbr100 +dscc4 +dss1_divert +dst +dst_ca +dstr +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x +dt3000 +dt3155 +dt9812 +dtl1_cs +dummy +dummy-irq +dummy_stm +dvb-as102 +dvb-bt8xx +dvb-core +dvb-pll +dvb-ttpci +dvb-ttusb-budget +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-af9035 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6007 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-rtl28xxu +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dvb_usb_v2 +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_wdt +dwc3 +dwc3-pci +dwmac-generic +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +e752x_edac +earth-pt1 +earth-pt3 +eata +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ec100 +ec_bhf +ec_sys +echainiv +echo +edac_core +edac_mce_amd +edt-ft5x06 +eeepc-laptop +eeepc-wmi +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efi-pstore +efi_test +efs +ehset +einj +elan_i2c +elo +elsa_cs +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_meta +em_nbyte +em_text +em_u32 +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +empeg +ems_pci +ems_pcmcia +ems_usb +emu10k1-gp +ena +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +ene_ir +eni +enic +epat +epia +epic100 +eql +esas2r +esb2rom +esd_usb2 +esi-sir +esp4 +esp6 +esp_scsi +et1011c +et131x +ethoc +eurotechwdt +evbug +exofs +extcon-adc-jack +extcon-arizona +extcon-axp288 +extcon-gpio +extcon-max14577 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +ezusb +f2fs +f71805f +f71808e_wdt +f71882fg +f75375s +f81232 +fakelb +fam15h_power +fan53555 +farsync +faulty +fb_agm1264k-fl +fb_bd663474 +fb_ddc +fb_hx8340bn +fb_hx8347d +fb_hx8353d +fb_hx8357d +fb_ili9163 +fb_ili9320 +fb_ili9325 +fb_ili9340 +fb_ili9341 +fb_ili9481 +fb_ili9486 +fb_pcd8544 +fb_ra8875 +fb_s6d02a1 +fb_s6d1121 +fb_ssd1289 +fb_ssd1306 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_sys_fops +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fbtft_device +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdomain_cs +fdp +fdp_i2c +fealnx +ff-memless +fintek-cir +firedtv +firestream +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fit2 +fit3 +fixed +fjes +fl512 +flexfb +floppy +fm10k +fm801-gp +fm_drv +fmc +fmc-chardev +fmc-fakedev +fmc-trivial +fmc-write-eeprom +fmvj18x_cs +fnic +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fpga-mgr +freevxfs +friq +frpw +fsa9480 +fscache +fschmd +fsl_lpuart +ft6236 +ftdi-elan +ftdi_sio +ftl +fujitsu-laptop +fujitsu-tablet +fujitsu_ts +g450_pll +g760a +g762 +g_acm_ms +g_audio +g_cdc +g_dbgp +g_ether +g_ffs +g_hid +g_mass_storage +g_midi +g_ncm +g_nokia +g_printer +g_serial +g_webcam +g_zero +gadgetfs +gamecon +gameport +garmin_gps +garp +gcm +gdmtty +gdmulte +gdmwm +gdth +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +gennvm +genwqe_card +gf128mul +gf2k +gfs2 +ghash-clmulni-intel +ghash-generic +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +glue_helper +gluebi +gma500_gfx +go7007 +go7007-loader +go7007-usb +goku_udc +goodix +gp2ap002a00f +gp2ap020a00f +gpio +gpio-104-idio-16 +gpio-addr-flash +gpio-adp5520 +gpio-adp5588 +gpio-amd8111 +gpio-amdpt +gpio-arizona +gpio-beeper +gpio-charger +gpio-crystalcove +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-f7188x +gpio-fan +gpio-generic +gpio-ich +gpio-ir-recv +gpio-it87 +gpio-janz-ttl +gpio-kempld +gpio-lp3943 +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-mc33880 +gpio-mcp23s08 +gpio-ml-ioh +gpio-pca953x +gpio-pcf857x +gpio-rdc321x +gpio-regulator +gpio-sch +gpio-sch311x +gpio-tps65912 +gpio-twl4030 +gpio-twl6040 +gpio-ucb1400 +gpio-viperboard +gpio-vx855 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio_backlight +gpio_keys +gpio_keys_polled +gpio_mouse +gpio_tilt_polled +gr_udc +grace +gre +grip +grip_mp +gs_fpga +gs_usb +gsc_hpdi +gspca_benq +gspca_conex +gspca_cpia1 +gspca_dtcs033 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_jl2005bcd +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stk1135 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_touptek +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtco +guillemot +gunze +gxt4500 +hackrf +hamachi +hampshire +hangcheck-timer +hanwang +hci +hci_uart +hci_vhci +hdaps +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcdrv +hdm_dim2 +hdm_i2c +hdm_usb +hdpvr +he +hecubafb +hexium_gemini +hexium_orion +hfc4s8s_l1 +hfc_usb +hfcmulti +hfcpci +hfcsusb +hfi1 +hfs +hfsplus +hgafb +hi8435 +hid +hid-a4tech +hid-alps +hid-apple +hid-appleir +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-cherry +hid-chicony +hid-corsair +hid-cp2112 +hid-cypress +hid-dr +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-hyperv +hid-icade +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-lenovo +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-primax +hid-prodikeys +hid-rmi +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-isku +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-konepure +hid-roccat-kovaplus +hid-roccat-lua +hid-roccat-pyra +hid-roccat-ryos +hid-roccat-savu +hid-saitek +hid-samsung +hid-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steelseries +hid-sunplus +hid-thingm +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hidp +hih6130 +hio +hisax +hisax_fcpcipnp +hisax_isac +hisax_st5481 +hisi504_nand +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hopper +horizon +horus3a +hostap +hostap_cs +hostap_pci +hostap_plx +hp-wireless +hp-wmi +hp100 +hp_accel +hpfs +hpilo +hpsa +hptiop +hpwdt +hsi +hsi_char +hso +hsr +hsu_dma +htc-pasic3 +hts221 +hts221_i2c +hts221_spi +htu21 +huawei_cdc_ncm +hv_balloon +hv_netvsc +hv_storvsc +hv_utils +hv_vmbus +hwa-hc +hwa-rc +hwmon-vid +hwpoison-inject +hx8357 +hyperv-keyboard +hyperv_fb +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd756-s4882 +i2c-amd8111 +i2c-cbus-gpio +i2c-cros-ec-tunnel +i2c-designware-core +i2c-designware-pci +i2c-designware-platform +i2c-diolan-u2c +i2c-dln2 +i2c-emev2 +i2c-gpio +i2c-hid +i2c-i801 +i2c-isch +i2c-ismt +i2c-kempld +i2c-matroxfb +i2c-mux +i2c-mux-gpio +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-pinctrl +i2c-mux-reg +i2c-nforce2 +i2c-nforce2-s4985 +i2c-ocores +i2c-parport +i2c-parport-light +i2c-pca-platform +i2c-piix4 +i2c-robotfuzz-osif +i2c-scmi +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-smbus +i2c-stub +i2c-taos-evm +i2c-tiny-usb +i2c-via +i2c-viapro +i2c-viperboard +i2c-xiic +i3000_edac +i3200_edac +i40e +i40evf +i5000_edac +i5100_edac +i5400_edac +i5500_temp +i5k_amb +i6300esb +i7300_edac +i7300_idle +i740fb +i7core_edac +i82092 +i82975x_edac +i915 +i915_bpo +iTCO_vendor_support +iTCO_wdt +ib700wdt +ib_addr +ib_cm +ib_core +ib_ipath +ib_ipoib +ib_iser +ib_isert +ib_mad +ib_mthca +ib_qib +ib_sa +ib_srp +ib_srpt +ib_ucm +ib_umad +ib_uverbs +ibm_rtl +ibmaem +ibmasm +ibmasr +ibmpex +ichxrom +icp_multi +icplus +ics932s401 +ideapad-laptop +ideapad_slidebar +idma64 +idmouse +idt77252 +idt_gen2 +idtcps +ie31200_edac +ie6xx_wdt +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +iforce +igb +igbvf +igorplugusb +iguanair +ii_pci20kc +iio-trig-interrupt +iio-trig-periodic-rtc +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili922x +ili9320 +imm +imon +ims-pcu +imx074 +ina209 +ina2xx +industrialio +industrialio-buffer-cb +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +input-polldev +int3400_thermal +int3402_thermal +int3403_thermal +int340x_thermal_zone +int51x1 +intel-hid +intel-lpss +intel-lpss-acpi +intel-lpss-pci +intel-rng +intel-rst +intel-smartconnect +intel-vbtn +intel_ips +intel_menlow +intel_oaktrail +intel_pch_thermal +intel_pmc_ipc +intel_powerclamp +intel_punit_ipc +intel_qat +intel_quark_i2c_gpio +intel_rapl +intel_soc_dts_iosf +intel_soc_dts_thermal +intel_telemetry_core +intel_telemetry_debugfs +intel_telemetry_pltdrv +intel_th +intel_th_gth +intel_th_msu +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +intelfb +interact +interval_tree_test +inv-mpu6050 +io_edgeport +io_ti +ioatdma +ioc4 +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_MASQUERADE +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_tunnel +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_wlc +ip_vs_wrr +ip_vti +ipack +ipaq +ipcomp +ipcomp6 +ipddp +iphase +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +ipr +ips +ipt_CLUSTERIP +ipt_ECN +ipt_MASQUERADE +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipw +ipw2100 +ipw2200 +ipwireless +ipx +ir-hix5hd2 +ir-jvc-decoder +ir-kbd-i2c +ir-lirc-codec +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-usb +ir-xmp-decoder +ircomm +ircomm-tty +irda +irda-usb +irlan +irnet +irqbypass +irtty-sir +isci +iscsi_boot_sysfs +iscsi_ibft +iscsi_target_mod +iscsi_tcp +isdn +isdn_bsdcomp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl9305 +isofs +isp116x-hcd +isp1362-hcd +isp1704_charger +isp1760 +it87 +it8712f_wdt +it87_wdt +it913x +itd1000 +ite-cir +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_c2 +iw_cm +iw_cxgb3 +iw_cxgb4 +iw_nes +iwl3945 +iwl4965 +iwldvm +iwlegacy +iwlmvm +iwlwifi +ix2505v +ixgb +ixgbe +ixgbevf +janz-cmodio +janz-ican3 +jc42 +jedec_probe +jffs2 +jfs +jitterentropy_rng +jmb38x_ms +jme +joydev +joydump +jr3_pci +jsa1212 +jsm +k10temp +k8temp +kafs +kalmia +kaweth +kb3886_bl +kbic +kbtab +kcomedilib +ke_counter +kempld-core +kempld_wdt +kernelcapi +keyspan +keyspan_pda +keyspan_remote +keywrap +kfifo_buf +khazad +kingsun-sir +kl5kusb105 +kmx61 +kobil_sct +ks0108 +ks0127 +ks8842 +ks8851 +ks8851_mll +ks959-sir +ksdazzle-sir +ksz884x +ktti +kvaser_pci +kvaser_usb +kvm +kvm-amd +kvm-intel +kxcjk-1013 +kxsd9 +kxtj9 +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l440gx +l4f00242t03 +l64781 +lan78xx +lanai +lapb +lapbether +latch-addr-flash +lattice-ecp3-config +lcd +ld9040 +ldusb +lec +led-class-flash +leds-88pm860x +leds-adp5520 +leds-bd2802 +leds-blinkm +leds-clevo-mail +leds-da903x +leds-da9052 +leds-dac124s085 +leds-gpio +leds-lm3530 +leds-lm3533 +leds-lm355x +leds-lm3642 +leds-lp3944 +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pwm +leds-regulator +leds-ss4200 +leds-tca6507 +leds-tlc591xx +leds-wm831x-status +leds-wm8350 +ledtrig-backlight +ledtrig-camera +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-oneshot +ledtrig-timer +ledtrig-transient +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libahci +libahci_platform +libceph +libcomposite +libcrc32c +libcxgbi +libertas +libertas_cs +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libore +libosd +libsas +lightning +lineage-pem +linear +liquidio +lirc_bt829 +lirc_dev +lirc_imon +lirc_parallel +lirc_sasem +lirc_serial +lirc_sir +lirc_zilog +lis3l02dq +lis3lv02d +lis3lv02d_i2c +litelink-sir +lkkbd +llc +llc2 +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3630a_bl +lm3639_bl +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lmc +lms283gf05 +lms501kf03 +lnbh25 +lnbp21 +lnbp22 +lockd +locktorture +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp8755 +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpc_ich +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +ltc2941-battery-gauge +ltc2945 +ltc2978 +ltc3589 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltr501 +ltv350qv +lv5207lp +lvstest +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m25p80 +m2m-deinterlace +m52790 +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +ma600-sir +mac-celtic +mac-centeuro +mac-croatian +mac-cyrillic +mac-gaelic +mac-greek +mac-iceland +mac-inuit +mac-roman +mac-romanian +mac-turkish +mac80211 +mac80211_hwsim +mac802154 +mac_hid +macb +machzwd +macmodes +macvlan +macvtap +mag3110 +magellan +mailbox-altera +mantis +mantis_core +map_absent +map_funcs +map_ram +map_rom +marvell +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max1111 +max11801_ts +max1363 +max14577 +max14577_charger +max1586 +max16064 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max197 +max20751 +max2165 +max3100 +max31790 +max3421-hcd +max34440 +max517 +max63xx_wdt +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77693 +max77693-haptic +max77693_charger +max8649 +max8660 +max8688 +max8903_charger +max8907 +max8907-regulator +max8925-regulator +max8925_bl +max8925_onkey +max8925_power +max8952 +max8973-regulator +max8997 +max8997_charger +max8997_haptic +max8998 +max8998_charger +mb862xxfb +mb86a16 +mb86a20s +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc44s803 +mcb +mcb-pci +mce-inject +mce_amd_inj +mceusb +mcp2120-sir +mcp251x +mcp3021 +mcp320x +mcp3422 +mcp4531 +mcp4725 +mcp4922 +mcryptd +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md-cluster +md4 +mdc800 +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-cavium +mdio-gpio +mdio-octeon +mdio-thunder +mdio-xgene +me4000 +me_daq +media +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +mei +mei-me +mei-txe +mei_phy +memory-notifier-error-inject +memstick +men_z135_uart +men_z188_adc +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +metro-usb +metronomefb +meye +mf6x4 +mga +mic_bus +mic_card +mic_cosm +mic_host +mic_x100_dma +michael_mic +micrel +microchip +microread +microread_i2c +microread_mei +microtek +mii +minix +mip6 +mite +mk712 +mkiss +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx90614 +mlxsw_core +mlxsw_pci +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmc_block +mmc_spi +mms114 +mn88472 +mn88473 +mos7720 +mos7840 +mostcore +moxa +mpc624 +mpl115 +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +msdos +msi-laptop +msi-wmi +msi001 +msi2500 +msp3400 +mspro_block +msr +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt29f_spinand +mt312 +mt352 +mt6311-regulator +mt6397-core +mt6397-regulator +mt7601u +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd +mtd_blkdevs +mtd_dataflash +mtdblock +mtdblock_ro +mtdoops +mtdram +mtdswap +mtip32xx +mtk-sd +mtouch +multipath +multiq3 +musb_hdrc +mv_u3d_core +mv_udc +mvmdio +mvsas +mvumi +mwave +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc4005 +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxm-wmi +mxser +mxuport +myri10ge +n411 +n_gsm +n_hdlc +n_r3964 +n_tracerouter +n_tracesink +nand +nand_bch +nand_ecc +nand_ids +nandsim +national +natsemi +nau7802 +navman +nb8800 +nbd +nci +nci_spi +nci_uart +ncpfs +nct6683 +nct6775 +nct7802 +nct7904 +nd_blk +nd_btt +nd_pmem +ne2k-pci +neofb +net1080 +net2272 +net2280 +netconsole +netjet +netlink_diag +netrom +nettel +netup-unidvb +netxen_nic +newtonkbd +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_ipv4 +nf_nat_ipv6 +nf_nat_irc +nf_nat_masquerade_ipv4 +nf_nat_masquerade_ipv6 +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_redirect +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_synproxy_core +nf_tables +nf_tables_arp +nf_tables_bridge +nf_tables_inet +nf_tables_ipv4 +nf_tables_ipv6 +nf_tables_netdev +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfcwilink +nfit +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_log +nfnetlink_queue +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat_ipv4 +nft_chain_nat_ipv6 +nft_chain_route_ipv4 +nft_chain_route_ipv6 +nft_compat +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_exthdr +nft_hash +nft_limit +nft_log +nft_masq +nft_masq_ipv4 +nft_masq_ipv6 +nft_meta +nft_meta_bridge +nft_nat +nft_queue +nft_rbtree +nft_redir +nft_redir_ipv4 +nft_redir_ipv6 +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +ni_6527 +ni_65xx +ni_660x +ni_670x +ni_at_a2150 +ni_at_ao +ni_atmio +ni_atmio16d +ni_daq_700 +ni_daq_dio24 +ni_labpc +ni_labpc_common +ni_labpc_cs +ni_labpc_isadma +ni_labpc_pci +ni_mio_cs +ni_pcidio +ni_pcimio +ni_tio +ni_tiocmd +ni_usb6501 +nicpf +nicstar +nicvf +nilfs2 +niu +nlmon +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +nmclan_cs +nosy +notifier-error-inject +nouveau +nozomi +ns558 +ns83820 +nsc-ircc +ntb +ntb_hw_amd +ntb_hw_intel +ntb_netdev +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +null_blk +nuvoton-cir +nv_tco +nvidiafb +nvme +nvmem_core +nvram +nxp-nci +nxp-nci_i2c +nxt200x +nxt6000 +objlayoutdriver +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +of_xilinx_wdt +old_belkin-sir +omfs +omninet +on20 +on26 +onenand +opencores-kbd +openvswitch +oprofile +opt3001 +opticon +option +or51132 +or51211 +orinoco +orinoco_cs +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +osd +osdblk +osst +oti6858 +ov2640 +ov5642 +ov6650 +ov7640 +ov7670 +ov772x +ov9640 +ov9740 +overlay +oxu210hp-hcd +p4-clockmod +p54common +p54pci +p54spi +p54usb +p8022 +p8023 +pa12203001 +padlock-aes +padlock-sha +palmas-pwrbutton +palmas-regulator +panasonic-laptop +pandora_bl +panel +paride +parkbd +parport +parport_ax88796 +parport_cs +parport_pc +parport_serial +pata_acpi +pata_ali +pata_amd +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_oldpiix +pata_opti +pata_optidma +pata_pcmcia +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sch +pata_serverworks +pata_sil680 +pata_sl82c105 +pata_triflex +pata_via +pc300too +pc87360 +pc87413_wdt +pc87427 +pcap-regulator +pcap_keys +pcap_ts +pcbc +pcd +pcf50633 +pcf50633-adc +pcf50633-backlight +pcf50633-charger +pcf50633-gpio +pcf50633-input +pcf50633-regulator +pcf8574_keypad +pcf8591 +pch_udc +pci +pci-hyperv +pci-stub +pci200syn +pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad +pcmcia +pcmcia_core +pcmcia_rsrc +pcmciamtd +pcmda12 +pcmmio +pcmuio +pcnet32 +pcnet_cs +pcrypt +pcspkr +pcwd_pci +pcwd_usb +pd +pd6729 +pda_power +pdc_adma +peak_pci +peak_pcmcia +peak_usb +pegasus +penmount +percpu_test +pf +pfuze100-regulator +pg +phantom +phonet +phram +phy-bcm-kona-usb2 +phy-exynos-usb2 +phy-gpio-vbus-usb +phy-isp1301 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-tahvo +phy-tusb1210 +physmap +pinctrl-broxton +pinctrl-intel +pinctrl-sunrisepoint +pixcir_i2c_ts +pkcs7_test_key +pktcdvd +pktgen +pl2303 +plat-ram +plat_nand +platform_lcd +plip +plusb +pluto2 +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm80xx +pm8941-wled +pmbus +pmbus_core +pmc551 +pmcraid +pn533 +pn544 +pn544_i2c +pn544_mei +pn_pep +poly1305-x86_64 +poly1305_generic +port100 +powermate +powr1220 +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_core +pps_parport +pptp +prism2_usb +processor_thermal_device +ps2mult +psmouse +psnap +pt +ptp +pulsedlight-lidar-lite-v2 +punit_atom_debug +pvpanic +pvrusb2 +pwc +pwm-beeper +pwm-lp3943 +pwm-lpss +pwm-lpss-pci +pwm-lpss-platform +pwm-pca9685 +pwm-regulator +pwm-twl +pwm-twl-led +pwm_bl +pxa27x_udc +qat_dh895xcc +qat_dh895xccvf +qcaux +qcom-spmi-iadc +qcom-spmi-vadc +qcom_spmi-regulator +qcserial +qed +qede +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qlogic_cs +qlogicfas408 +qm1d1c0042 +qmi_wwan +qnx4 +qnx6 +qsemi +qt1010 +qt1070 +qt2160 +quatech2 +quatech_daqp_cs +quota_tree +quota_v1 +quota_v2 +qxl +r128 +r592 +r6040 +r8152 +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r852 +r8712u +r8723au +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-bcm2048 +radio-i2c-si470x +radio-keene +radio-ma901 +radio-maxiradio +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-shark +radio-si476x +radio-tea5764 +radio-usb-si470x +radio-usb-si4713 +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ramoops +raw +ray_cs +rbd +rbtree_test +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-asus-pc39 +rc-asus-ps3-100 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-delock-61959 +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-dvbsky +rc-em-terratec +rc-encore-enltv +rc-encore-enltv-fm53 +rc-encore-enltv2 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-pctv-sedna +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-reddo +rc-snapstream-firefly +rc-streamzap +rc-su3000 +rc-tbs-nec +rc-technisat-ts35 +rc-technisat-usb2 +rc-terratec-cinergy-c-pci +rc-terratec-cinergy-s2-hd +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-total-media-in-hand-02 +rc-trekstor +rc-tt-1500 +rc-twinhan-dtv-cab-ci +rc-twinhan1027 +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rc5t583-regulator +rdc321x-southbridge +rdma_cm +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +redboot +redrat3 +reed_solomon +regmap-spmi +regulator-haptic +reiserfs +remoteproc +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd_ftl +rfkill-gpio +rfkill-regulator +rio-scan +rio500 +rionet +rivafb +rj54n1cb0c +rmd128 +rmd160 +rmd256 +rmd320 +rn5t618 +rn5t618-regulator +rn5t618_wdt +rndis_host +rndis_wlan +rocket +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpcrdma +rpcsec_gss_krb5 +rpr0521 +rrpc +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt5033 +rt5033-regulator +rt5033_battery +rt61pci +rt73usb +rt9455_charger +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab3100 +rtc-abx80x +rtc-bq32k +rtc-bq4802 +rtc-da9052 +rtc-da9055 +rtc-da9063 +rtc-ds1286 +rtc-ds1305 +rtc-ds1307 +rtc-ds1343 +rtc-ds1347 +rtc-ds1374 +rtc-ds1390 +rtc-ds1511 +rtc-ds1553 +rtc-ds1672 +rtc-ds1685 +rtc-ds1742 +rtc-ds2404 +rtc-ds3232 +rtc-ds3234 +rtc-em3027 +rtc-fm3130 +rtc-hid-sensor-time +rtc-isl12022 +rtc-isl12057 +rtc-isl1208 +rtc-lp8788 +rtc-m41t80 +rtc-m41t93 +rtc-m41t94 +rtc-m48t35 +rtc-m48t59 +rtc-m48t86 +rtc-max6900 +rtc-max6902 +rtc-max8907 +rtc-max8925 +rtc-max8997 +rtc-max8998 +rtc-mc13xxx +rtc-mcp795 +rtc-msm6242 +rtc-mt6397 +rtc-palmas +rtc-pcap +rtc-pcf2123 +rtc-pcf2127 +rtc-pcf50633 +rtc-pcf85063 +rtc-pcf8523 +rtc-pcf8563 +rtc-pcf8583 +rtc-r9701 +rtc-rc5t583 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rv8803 +rtc-rx4581 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-stk17ta8 +rtc-tps6586x +rtc-tps65910 +rtc-tps80031 +rtc-twl +rtc-v3020 +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtd520 +rti800 +rti802 +rtl2830 +rtl2832 +rtl2832_sdr +rtl8150 +rtl8187 +rtl8188ee +rtl818x_pci +rtl8192c-common +rtl8192ce +rtl8192cu +rtl8192de +rtl8192ee +rtl8192se +rtl8723-common +rtl8723ae +rtl8723be +rtl8821ae +rtl8xxxu +rtl_pci +rtl_usb +rtllib +rtllib_crypt_ccmp +rtllib_crypt_tkip +rtllib_crypt_wep +rtlwifi +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rx51_battery +rxkad +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3fb +s3fwrn5 +s3fwrn5_i2c +s526 +s5h1409 +s5h1411 +s5h1420 +s5m8767 +s626 +s6e63m0 +s921 +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7185 +saa7706h +safe_serial +salsa20-x86_64 +salsa20_generic +samsung-keypad +samsung-laptop +samsung-q10 +samsung-sxgbe +sata_inic162x +sata_mv +sata_nv +sata_promise +sata_qstor +sata_sil +sata_sil24 +sata_sis +sata_svw +sata_sx4 +sata_uli +sata_via +sata_vsc +savage +savagefb +sb1000 +sb_edac +sbc60xxwdt +sbc_epx_c3 +sbc_fitpc2_wdt +sbc_gxx +sbni +sbp_target +sbs +sbs-battery +sbshc +sc1200wdt +sc16is7xx +sc92031 +sca3000 +scb2_flash +sch311x_wdt +sch5627 +sch5636 +sch56xx-common +sch_atm +sch_cbq +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_fq +sch_fq_codel +sch_gred +sch_hfsc +sch_hhf +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_pie +sch_plug +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_tbf +sch_teql +scif +scif_bus +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +scsi_transport_srp +sctp +sctp_probe +sdhci +sdhci-acpi +sdhci-pci +sdhci-pltfm +sdio_uart +sdricoh_cs +sedlbauer_cs +seed +sensorhub +seqiv +ser_gigaset +serial2002 +serial_cs +serio_raw +sermouse +serpent-avx-x86_64 +serpent-avx2 +serpent-sse2-x86_64 +serpent_generic +serport +ses +sfc +sh_veu +sha1-mb +sha1-ssse3 +sha256-ssse3 +sha512-ssse3 +shark2 +shpchp +sht15 +sht21 +shtc1 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sil164 +sir-dev +sis +sis-agp +sis190 +sis5595 +sis900 +sisfb +sisusbvga +sit +sja1000 +sja1000_isa +sja1000_platform +skd +skfp +skge +skx_edac +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +sl811_cs +slcan +slicoss +slip +slram +sm501 +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smb347-charger +smc91c92_cs +smipcie +smm665 +smsc +smsc-ircc2 +smsc37b787_wdt +smsc47b397 +smsc47m1 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsmdtv +smssdio +smsusb +snd +snd-ac97-codec +snd-ad1889 +snd-ak4113 +snd-ak4114 +snd-ak4117 +snd-ak4xxx-adda +snd-ali5451 +snd-aloop +snd-als300 +snd-als4000 +snd-asihpi +snd-atiixp +snd-atiixp-modem +snd-au8810 +snd-au8820 +snd-au8830 +snd-aw2 +snd-azt3328 +snd-bcd2000 +snd-bebob +snd-bt87x +snd-ca0106 +snd-cmipci +snd-compress +snd-cs4281 +snd-cs46xx +snd-cs8427 +snd-ctxfi +snd-darla20 +snd-darla24 +snd-dice +snd-dummy +snd-echo3g +snd-emu10k1 +snd-emu10k1-synth +snd-emu10k1x +snd-emux-synth +snd-ens1370 +snd-ens1371 +snd-es1938 +snd-es1968 +snd-firewire-digi00x +snd-firewire-lib +snd-firewire-tascam +snd-fireworks +snd-fm801 +snd-gina20 +snd-gina24 +snd-hda-codec +snd-hda-codec-analog +snd-hda-codec-ca0110 +snd-hda-codec-ca0132 +snd-hda-codec-cirrus +snd-hda-codec-cmedia +snd-hda-codec-conexant +snd-hda-codec-generic +snd-hda-codec-hdmi +snd-hda-codec-idt +snd-hda-codec-realtek +snd-hda-codec-si3054 +snd-hda-codec-via +snd-hda-core +snd-hda-ext-core +snd-hda-intel +snd-hdsp +snd-hdspm +snd-hrtimer +snd-hwdep +snd-i2c +snd-ice1712 +snd-ice1724 +snd-ice17xx-ak4xxx +snd-indigo +snd-indigodj +snd-indigodjx +snd-indigoio +snd-indigoiox +snd-intel-sst-acpi +snd-intel-sst-core +snd-intel8x0 +snd-intel8x0m +snd-isight +snd-korg1212 +snd-layla20 +snd-layla24 +snd-lola +snd-lx6464es +snd-maestro3 +snd-mia +snd-mixart +snd-mixer-oss +snd-mona +snd-mpu401 +snd-mpu401-uart +snd-mtpav +snd-mts64 +snd-nm256 +snd-opl3-lib +snd-opl3-synth +snd-oxfw +snd-oxygen +snd-oxygen-lib +snd-pcm +snd-pcm-dmaengine +snd-pcm-oss +snd-pcsp +snd-pcxhr +snd-pdaudiocf +snd-portman2x4 +snd-pt2258 +snd-rawmidi +snd-riptide +snd-rme32 +snd-rme96 +snd-rme9652 +snd-sb-common +snd-scs1x +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-soc-ac97 +snd-soc-adau1701 +snd-soc-ak4104 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-alc5623 +snd-soc-core +snd-soc-cs35l32 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42xx8 +snd-soc-cs42xx8-i2c +snd-soc-cs4349 +snd-soc-dmic +snd-soc-es8328 +snd-soc-fsl-asrc +snd-soc-fsl-esai +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-gtm601 +snd-soc-imx-audmux +snd-soc-max98090 +snd-soc-pcm1681 +snd-soc-pcm1792a-codec +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-rl6231 +snd-soc-rl6347a +snd-soc-rt286 +snd-soc-rt5631 +snd-soc-rt5640 +snd-soc-rt5645 +snd-soc-rt5660 +snd-soc-rt5670 +snd-soc-sgtl5000 +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-simple-card +snd-soc-skl +snd-soc-skl-ipc +snd-soc-skl_rt286 +snd-soc-spdif-rx +snd-soc-spdif-tx +snd-soc-ssm2602 +snd-soc-ssm2602-i2c +snd-soc-ssm2602-spi +snd-soc-ssm4567 +snd-soc-sst-acpi +snd-soc-sst-baytrail-pcm +snd-soc-sst-broadwell +snd-soc-sst-byt-max98090-mach +snd-soc-sst-byt-rt5640-mach +snd-soc-sst-bytcr-rt5640 +snd-soc-sst-bytcr-rt5660 +snd-soc-sst-cht-bsw-max98090_ti +snd-soc-sst-cht-bsw-rt5645 +snd-soc-sst-cht-bsw-rt5672 +snd-soc-sst-dsp +snd-soc-sst-haswell +snd-soc-sst-haswell-pcm +snd-soc-sst-ipc +snd-soc-sst-mfld-platform +snd-soc-sta32x +snd-soc-sta350 +snd-soc-sti-sas +snd-soc-tas2552 +snd-soc-tas5086 +snd-soc-tas571x +snd-soc-tfa9879 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic3x +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8962 +snd-soc-wm8978 +snd-soc-xtfpga-i2s +snd-sonicvibes +snd-timer +snd-trident +snd-ua101 +snd-usb-6fire +snd-usb-audio +snd-usb-caiaq +snd-usb-hiface +snd-usb-line6 +snd-usb-pod +snd-usb-podhd +snd-usb-toneport +snd-usb-us122l +snd-usb-usx2y +snd-usb-variax +snd-usbmidi-lib +snd-util-mem +snd-via82xx +snd-via82xx-modem +snd-virmidi +snd-virtuoso +snd-vx-lib +snd-vx222 +snd-vxpocket +snd-ymfpci +snic +soc_button_array +soc_camera +soc_camera_platform +soc_mediabus +softdog +softing +softing_cs +solo6x10 +solos-pci +sony-btf-mpx +sony-laptop +soundcore +sp2 +sp5100_tco +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +spectrum_cs +speedfax +speedstep-lib +speedtch +spi-altera +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-gpio +spi-lm70llp +spi-nor +spi-oc-tiny +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-sc18is602 +spi-tle62x0 +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spl +splat +spmi +sr9700 +sr9800 +ssb +ssb-hcd +ssfdc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +sstfb +ssu100 +st +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_spi +st_magn +st_magn_i2c +st_magn_spi +st_pressure +st_pressure_i2c +st_pressure_spi +st_sensors +st_sensors_i2c +st_sensors_spi +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +ste_modem_rproc +stex +stinger +stir4200 +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm_console +stm_core +stmmac +stmmac-platform +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv6110 +stv6110x +sun4i-codec +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +surfacepro3_button +svgalib +sx8 +sx8654 +sx9500 +sym53c500_cs +sym53c8xx +symbolserial +synaptics_i2c +synaptics_i2c_rmi4 +synaptics_usb +synclink +synclink_cs +synclink_gt +synclinkmp +syscopyarea +sysfillrect +sysimgblt +sysv +t1pci +t5403 +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +target_core_user +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tcs3414 +tcs3472 +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tda998x +tdfx +tdfxfb +tdo24m +tea +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tef6862 +tehuti +tekram-sir +teles_cs +teranetics +test-hexdump +test-kstrtox +test-string_helpers +test_bpf +test_firmware +test_module +test_power +test_printf +test_static_key_base +test_static_keys +test_udelay +test_user_copy +tg3 +tgr192 +thinkpad_acpi +thmc50 +thunder_bgx +thunderbolt +ti-adc081c +ti-adc128s052 +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_dac7512 +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timeriomem-rng +tipc +tlan +tlclk +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmem +tmp006 +tmp102 +tmp103 +tmp401 +tmp421 +toim3232-sir +topstar-laptop +torture +toshiba-wmi +toshiba_acpi +toshiba_bluetooth +toshiba_haps +toshsd +touchit213 +touchright +touchwin +tpci200 +tpm-rng +tpm_atmel +tpm_crb +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_infineon +tpm_nsc +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tps40422 +tps51632-regulator +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65090-charger +tps65090-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps80031-regulator +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsi568 +tsi57x +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2x7x_core +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tvaudio +tveeprom +tvp5150 +tw2804 +tw68 +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-madc-hwmon +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6040-vibra +twofish-avx-x86_64 +twofish-x86_64 +twofish-x86_64-3way +twofish_common +twofish_generic +typhoon +u132-hcd +uPD98402 +u_ether +u_serial +uartlite +uas +ubi +ubifs +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +uda1342 +udc-core +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufshcd +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uli526x +ulpi +umc +umem +ums-alauda +ums-cypress +ums-datafab +ums-eneub6250 +ums-freecom +ums-isd200 +ums-jumpshot +ums-karma +ums-onetouch +ums-realtek +ums-sddr09 +ums-sddr55 +ums-usbat +unix_diag +upd64031a +upd64083 +us5182d +usb-serial-simple +usb-storage +usb3503 +usb8xxx +usb_8dev +usb_debug +usb_f_acm +usb_f_ecm +usb_f_ecm_subset +usb_f_eem +usb_f_fs +usb_f_hid +usb_f_mass_storage +usb_f_midi +usb_f_ncm +usb_f_obex +usb_f_phonet +usb_f_printer +usb_f_rndis +usb_f_serial +usb_f_ss_lb +usb_f_uac1 +usb_f_uac2 +usb_f_uvc +usb_gigaset +usb_wwan +usbatm +usbdux +usbduxfast +usbduxsigma +usbhid +usbip-core +usbip-host +usbkbd +usblcd +usbled +usblp +usbmon +usbmouse +usbnet +usbserial +usbsevseg +usbtest +usbtmc +usbtouchscreen +usbtv +usbvision +usdhi6rol0 +userio +userspace-consumer +ushc +usnic_verbs +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-dv-timings +v4l2-flash-led-class +v4l2-mem2mem +vboxguest +vboxsf +vboxvideo +vcan +vcnl4000 +ven_rsi_91x +ven_rsi_sdio +ven_rsi_usb +ves1820 +ves1x93 +veth +vfio +vfio-pci +vfio_iommu_type1 +vfio_virqfd +vga16fb +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_net +vhost_scsi +via +via-camera +via-cputemp +via-ircc +via-rhine +via-rng +via-sdmmc +via-velocity +via686a +via_wdt +viafb +video +videobuf-core +videobuf-dma-sg +videobuf-dvb +videobuf-vmalloc +videobuf2-core +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-dvb +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videocodec +videodev +vim2m +viperboard +viperboard_adc +virt-dma +virtio-gpu +virtio-rng +virtio_input +virtio_scsi +virtual +visor +visorbus +visorhba +visorinput +visornic +vitesse +vivid +vlsi_ir +vmac +vme_ca91cx42 +vme_pio2 +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmlfb +vmw_balloon +vmw_pvscsi +vmw_vmci +vmw_vsock_vmci_transport +vmwgfx +vmxnet3 +vp27smpx +vport-geneve +vport-gre +vport-vxlan +vpx3220 +vrf +vringh +vsock +vsxxxaa +vt1211 +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxge +vxlan +vz89x +w1-gpio +w1_bq27000 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1_ds2781 +w1_ds28e04 +w1_smem +w1_therm +w5100 +w5300 +w6692 +w83627ehf +w83627hf +w83627hf_wdt +w83781d +w83791d +w83792d +w83793 +w83795 +w83877f_wdt +w83977af_ir +w83977f_wdt +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +wafer5823wdt +walkera0701 +wanxl +warrior +wbsd +wcn36xx +wd719x +wdt87xx_i2c +wdt_pci +whc-rc +whci +whci-hcd +whiteheat +wil6210 +wimax +winbond-840 +winbond-cir +wire +wishbone-serial +wl1251 +wl1251_sdio +wl1251_spi +wl1273-core +wl12xx +wl18xx +wl3501_cs +wlcore +wlcore_sdio +wlcore_spi +wm831x-dcdc +wm831x-hwmon +wm831x-isink +wm831x-ldo +wm831x-on +wm831x-ts +wm831x_backup +wm831x_bl +wm831x_power +wm831x_wdt +wm8350-hwmon +wm8350-regulator +wm8350_power +wm8350_wdt +wm8400-regulator +wm8739 +wm8775 +wm8994-core +wm8994-irq +wm8994-regmap +wm8994-regulator +wm97xx-ts +wmi +wp512 +wusb-cbaf +wusb-wa +wusbcore +x25 +x25_asy +x38_edac +x86_pkg_temp_thermal +x_tables +xc4000 +xc5000 +xcbc +xen-blkback +xen-evtchn +xen-fbfront +xen-gntalloc +xen-gntdev +xen-kbdfront +xen-netback +xen-pciback +xen-pcifront +xen-privcmd +xen-scsiback +xen-scsifront +xen-tpmfront +xen_wdt +xenfs +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_ipcomp +xfrm_user +xfs +xgifb +xhci-plat-hcd +xillybus_core +xillybus_pcie +xirc2ps_cs +xircom_cb +xor +xpad +xr_usb_serial_common +xsens_mt +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +xt_NETMAP +xt_NFLOG +xt_NFQUEUE +xt_RATEEST +xt_REDIRECT +xt_SECMARK +xt_TCPMSS +xt_TCPOPTSTRIP +xt_TEE +xt_TPROXY +xt_TRACE +xt_addrtype +xt_bpf +xt_cgroup +xt_cluster +xt_comment +xt_connbytes +xt_connlabel +xt_connlimit +xt_connmark +xt_conntrack +xt_cpu +xt_dccp +xt_devgroup +xt_dscp +xt_ecn +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_ipcomp +xt_iprange +xt_ipvs +xt_l2tp +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_nat +xt_nfacct +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_realm +xt_recent +xt_sctp +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_tcpudp +xt_time +xt_u32 +xtkbd +xts +xusbatm +xz_dec_test +yam +yealink +yellowfin +yenta_socket +yurex +zatm +zaurus +zavl +zcommon +zd1201 +zd1211rw +zforce_ts +zfs +zhenhua +zl10036 +zl10039 +zl10353 +zl6100 +zlib +znvpair +zpios +zr36016 +zr36050 +zr36060 +zr36067 +zr364xx +zram +zunicode +zynq-fpga only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-106.129/arm64/generic +++ linux-raspi2-4.4.0/debian.master/abi/4.4.0-106.129/arm64/generic @@ -0,0 +1,17649 @@ +EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0x2500f1d2 ce_aes_setkey +EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0xa2125399 ce_aes_expandkey +EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe +EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble +EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL crypto/mcryptd 0x7726d288 mcryptd_arm_flusher +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/atm/suni 0xc33c6c30 suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x43a85bcc bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0xa7748a1d bcma_core_irq +EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x30d46b97 btbcm_patchram +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fae3bac ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e1d6d5d ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5ebef131 ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7fe3014a ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd13ba5d0 ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf06d1d74 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x01f258a1 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x582f1f59 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xc534b075 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xc5828c60 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x3b3f7ed9 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x81e23739 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xe67ca73b xillybus_endpoint_remove +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x217b078b dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x2d42f25a dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x5d371057 dw_dma_cyclic_free +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x9da4aba4 dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xe4d81f65 dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xf94afa89 dw_dma_get_src_addr +EXPORT_SYMBOL drivers/dma/pl330 0x185b9e5c pl330_filter +EXPORT_SYMBOL drivers/edac/edac_core 0x1041734c edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x006d5c25 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x03900e9b fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04d0f641 fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x050d7cd9 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x064e8b6a fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0958c610 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0f7d6af8 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x10303178 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x27a824f6 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x367cb465 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3ecbecf3 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3f80d292 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x45d007c7 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5c6e9764 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x645b715f fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x688b0853 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6e123da6 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7f458927 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x819f38ab fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8950fab1 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x980c6e93 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa4a89a37 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xadaf5b5c fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xca79ecc3 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcdf00673 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcf34f91f fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xdadf0c98 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe5ec3a25 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xea7e2f4b fw_core_remove_card +EXPORT_SYMBOL drivers/fmc/fmc 0x5d83cd85 fmc_device_register +EXPORT_SYMBOL drivers/fmc/fmc 0x6a1f54f5 fmc_reprogram +EXPORT_SYMBOL drivers/fmc/fmc 0x72539b56 fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x8c87975c fmc_device_unregister_n +EXPORT_SYMBOL drivers/fmc/fmc 0x94827f7a fmc_show_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x993d0932 fmc_device_register_n +EXPORT_SYMBOL drivers/fmc/fmc 0xa3a956c3 fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xc11233e0 fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0xd5607a46 fmc_driver_register +EXPORT_SYMBOL drivers/fmc/fmc 0xe5a1553b fmc_find_sdb_device +EXPORT_SYMBOL drivers/fmc/fmc 0xf25ee80f fmc_device_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00e1bf5b drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01e2871b drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x023bdbe0 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02b4ef58 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03bde15e drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x042eda98 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06a66c91 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07bee77b drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x088e51a8 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x091ef661 drm_encoder_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a042c35 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a05547d drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0aa2c88f drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c07696c drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c10c8cf drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c134a6d drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d23527b drm_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11cef0de drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1256b83f drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12c8ab02 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12e4a263 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13066087 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x130bdab5 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13f6176b drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14c579cd drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17c5c7f0 drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17e0de23 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a1229b0 drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c1e0592 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c5a83e2 drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ca8606b drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d83d8ba drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20adbccc drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24c08ed7 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25e87576 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x260c065b drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x261f49de drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2660e7a1 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27e513b0 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28c1e923 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c4926e0 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2dce979f drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e17c6cd drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e356875 drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e9151c2 drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ec211ce drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f60d0a5 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x301c2375 drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3065044f drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30765a3f drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30faa97a drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31da48e7 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34362dbe drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34568581 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34aa1255 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3589b48f drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38baa739 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a01c4c8 drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3acfb26f drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b87f362 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b974af8 drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d30d678 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d8a1bbb drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3dd66600 drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f739062 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4053ae68 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40c681db drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40c93434 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43006d0f drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44d00307 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48912036 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4997a857 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c272b6f drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c9dd7fb drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d3f6fde drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e1af0a3 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4efc33ce drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ffd4825 drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50ca25a1 drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x527d73d0 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52987504 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x536166b8 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53c65362 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x545602d3 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x549c5801 drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55759379 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55c607b6 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57c36a77 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58345f2b drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a094322 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a910fe9 drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a9fb2ed drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cf28aa4 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d2de09d drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7318dc drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d98f27c drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5de23c77 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e1f8f7d drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fed895d drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x608599d8 drm_platform_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x612d8de5 drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63a44f91 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64eb6165 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67053407 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67b431fe drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68383fa5 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68ee5df2 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69763630 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a8f559a drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6aba1ecf drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ad7d6d9 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c9434e4 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d84ca78 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f54b4c6 drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f844d82 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6fceb8e5 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70ee88c4 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70f7f08d drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71e9834d drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72c1cc6b drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x740c4db6 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75088815 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75197756 drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7834a2d3 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79859b0b drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a9e0642 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7be4c18c drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c6543ba drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c79f3f2 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ca06d4c drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7df0f62d drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e53eb5d drm_framebuffer_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e920ea9 drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ec13ee0 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81320dfa drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82270f2c drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82560920 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x825a95fa drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8352d198 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x847aca98 drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88569c20 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89258ab9 drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8947ac77 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a9913d6 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bb6334d drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c80310b drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d97fe10 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8db6cfa7 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de7bb89 drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e5b0869 drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91d356c0 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x940101ac drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x947685c3 drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94de8a9e drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96387173 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97854402 drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97ae58d1 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x983d9d4e drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x984dd406 drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ba54494 drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c78d63a drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c926acd drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cd09bb9 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d42b03e drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e669ab7 drm_connector_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0560a54 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0602948 drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0c8f151 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0dd2ae3 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2925a98 drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3314794 drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa48872ed drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4b3c979 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa676da92 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa853fe35 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8e668a7 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9f077b0 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa739394 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad75eb78 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae51ca00 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafe8663c drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0dc2629 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb10b6851 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb189c4f2 drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb20cb689 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2c8dda2 drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3a764c3 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4228080 drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb494ac2a drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb531584d drm_connector_unplug_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5540008 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5d79549 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6d5506f drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6d98288 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb712727c drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8b14f88 drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8fa328c drm_plane_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba39d264 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbac4eb44 drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb54f7bc drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbcb3195 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd52b24d drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe3a1282 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe4220d6 drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0bced15 drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1fbaf4f drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc48f7a8f drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4ed0043 drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5430675 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5beeb4c drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc91fe318 drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca252ec4 drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdbc6c04 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce97bb07 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf0cd4d2 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf65fc09 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf7024bc drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfaefb85 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfcf86fc drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0b51cd0 drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1456a73 drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1c5c005 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd24d1d6e drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd297f392 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd34582e5 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd380d39f drm_framebuffer_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3e83a94 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4f51437 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5344f82 drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5ee09a5 drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7cd408c drm_atomic_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7d77e20 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8834681 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8bd693a drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9e21b1d drm_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdaebcb92 drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdde09773 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde061e1e drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf0997e9 of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf96ec88 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0206216 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0c9d82d drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0cf0ceb drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0e5af60 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe22753e2 drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2d12ce7 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe462b039 drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe467e26e drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe660905c drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe68917ca drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe704f542 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7224fcb drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7a41e35 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9b237c9 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb4fb55c drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb8317ed drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed05590c drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed9075c8 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee4ac59f drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeec99c83 drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef520c76 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef646bf5 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0c4623d drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0fac240 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1955b9b drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1cb09c6 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1eb1497 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf284868b drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3d2edcb drm_crtc_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf40fce69 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5a09851 drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa691552 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb6755bd drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbdf100c drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbee89ab drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd214e51 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdc0669e drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdf6e09e drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfedb6e5d drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0107c256 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01b064f2 drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0255dc6b drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02ecb3ca drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0612d7ce drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ab9b7b6 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c1b65ac drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0cc4a808 drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d02e2f6 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x119b28fe drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12777e84 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12cfe1e0 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x145d3825 drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14657aab drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a11cf56 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1afc05b8 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b707020 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1cfd8646 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20bd7f77 drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2153d7c6 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x240e0c9b drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x245ffac4 drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27e41433 drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c61ecfb drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d178da6 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f4fbdef drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x315c36e7 drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32b5b143 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x337d8295 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x384bb130 drm_helper_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x390060e6 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39ce187e drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a25a854 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3be193a0 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42120396 drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x423a4be6 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x439eb62b drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a2566ce drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e68001d drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4fd4742d __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51376c82 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53581a09 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54c93660 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x567c63d4 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x593402d8 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c1b942f drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d7c49ae drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5efef669 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fc9cbf8 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fec8888 drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62a3989c drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62b97c26 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62ff231d drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6590f36b drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65c98e67 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6660157f drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b6d6ed7 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6cf51f37 drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71827588 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x730ab724 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7333ece3 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x740f5635 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74cffc56 drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x754c59e7 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77765581 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x782082b9 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x786593be drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c739719 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d9f33d6 drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83b1a9ba drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8627ffa0 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86f5bd96 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8de02cb6 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9285487f drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x940657ee drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9406b343 drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9417ddd3 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94411324 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x959d6690 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x987448a7 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9922bc2b drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9eac8dc3 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0eabc7c drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5e98016 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa64994c1 drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa516928 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaafb1115 drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xacba3e7a drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xacdfedd9 drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0376ddf __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb34129a7 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb40a7e87 drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb434c7c5 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6615b0f drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb723a802 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7bc8263 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8179229 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba7b8f1d drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe4e9903 drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe88e366 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2250c71 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc27ba4cc drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc326dc99 drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3a691e1 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc98e9b1e drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca79107b drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb9edb8a drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc006418 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc6a4a85 drm_helper_probe_single_connector_modes_nomerge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcca4208a drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce228156 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce643396 drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3d43dd3 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3e2cf99 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd646db57 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd83cb9b5 drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdaff0234 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb3c59e9 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc2bad91 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdcd95e5c drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdcdc74d8 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd7dda2e drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xddd5fc00 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xded43b36 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0f7b350 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2709245 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe354fa68 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3cf0d31 drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeaf51521 drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb827e0f drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeec514ce drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef7ac027 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf094d91c drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf260bd7c drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf28cb93b drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf41a7b35 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4d4927e drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf500019b drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5ce8bb9 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9f16d78 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfcb35022 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe20f732 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x037a426f ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0eec9dbf ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1047b47c ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x14343d9e ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x149fd58a ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x216c7be8 ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x24c84384 ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x26364c3c ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x263756e0 ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b6d12e4 ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2c1fc621 ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2f486337 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x33468e89 ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x359187bc ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x37f20345 ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3bd6daf0 ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x440cf455 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4874b969 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e8dd264 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5570c7f7 ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x564e1aee ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x591d7b41 ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5ee53c77 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5ee757e7 ttm_vt_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6052860c ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6ac66b4b ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6fa23711 ttm_suspend_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7353f936 ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7857d22d ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7df6a58c ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7ee38fe7 ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x891d05fe ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8a32f1cc ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8bc7c667 ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9497364e ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x95c98805 ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x95d2ff0e ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9708d8ba ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d0eb91 ttm_ref_object_add +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9bc89593 ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9d491f7e ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9db78a2a ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9ed36a67 ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9fcfac8c ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa0e1f89b ttm_write_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa5ddb5f5 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa6ea2adb ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae87b61d ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaf8c9df0 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb0febceb ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb22b1217 ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb5e2b313 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc2eb39ec ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc63af8d0 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce230be5 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xceaa037e ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd2360e92 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd2e3e689 ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd5df2098 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdd0de527 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe0d89ae9 ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe37a9443 ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe5382ec1 ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe6ec87f5 ttm_suspend_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf892c1a4 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf91768c4 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf947d771 ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0e2a6864 sch56xx_read_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0f5877d4 sch56xx_read_virtual_reg16 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xd0417424 sch56xx_watchdog_register +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe5022f95 sch56xx_read_virtual_reg12 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xed1d2a08 sch56xx_write_virtual_reg +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x36ae279d i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xa4e25ab6 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xabd30d26 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x14a28850 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x1cf2d250 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xc9f1e0ea amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x30126b87 mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x35693ff6 mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4bf6e0e4 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4d5e6160 mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x613fb32a mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8613bf14 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x885889f9 mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9cad82f4 mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa8f5cc3e mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xca385079 mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xca4e80a6 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xcd3fac6e mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe6eb8ee0 mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xea14b261 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf4878884 mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfefd2645 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x21678a45 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x4d3d9aba st_accel_common_remove +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xb4aeb60a iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xc3fb1d0f iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x2a3845a5 devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x9a866215 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xb36f821d devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xc4f2e197 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x9bf6c4e9 hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x9fcb9df5 hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xb02483b3 hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc001f274 hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc5f20dd2 hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xd0d1f8a4 hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x2173b22f hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x2e55916f hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x7a628335 hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xd07f4162 hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x1803a19d ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x1a5fd0ff ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3375a1ec ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x4e01aa99 ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x771a6ab3 ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xa4ec5e7e ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xafea648f ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xba2cd8e9 ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc80e1b76 ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x121c307b ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x4c31f979 ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x4dafdc36 ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xa72f323b ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xde013df5 ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xc3ab40df ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xd50007a5 ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xedfd353a ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x05801c13 st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x05c2b5ec st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x094b131b st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0dc6a9e5 st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x220bf663 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3027faba st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x6c133276 st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x6dd3bead st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7c074e0a st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9c70fc6b st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa0890ee1 st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd269811a st_sensors_get_buffer_element +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd5154908 st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe8c3ee28 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf0d965ba st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xfd0e0999 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xfe6f39ce st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x031b81b8 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xd8c0aefb st_sensors_match_acpi_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xffdfe2cb st_sensors_of_i2c_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xd60c15ca st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x9e9fcc36 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xd0b05536 st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/humidity/hts221 0xe6094170 hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x96c7a8a2 adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xc910a41d adis_enable_irq +EXPORT_SYMBOL drivers/iio/industrialio 0x231eb7cf iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x27741062 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x2c86fc0e iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x3dd6c646 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x546b238f iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x676a3874 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x7d270ef4 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x800e387c iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x8fe0c771 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0xab26c8d0 iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0xad1ee7bf iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0xad81be63 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xb851700c iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0xca89c7f1 iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0xcb8eac4f iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xebcc711b iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xfd8ee2a1 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x5f378f72 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xde9037c2 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xada44990 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xe828165b st_magn_common_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x08678f10 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x06cb1232 st_press_common_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x837bd2bd st_press_common_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x049ace30 rdma_addr_find_smac_by_sgid +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x4c33e170 rdma_addr_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x59bd7d7e rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x6d94fc46 rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x96786e16 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xf969d1b4 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xfe6e58a5 rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1f57f907 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x23c9f4da ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x289e8936 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x32358e8a ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x37ee6ae0 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x566b6b0d ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x906b24ee ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x956c8b36 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x95ec7120 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x98b997cb ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa62f6f50 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xaede07e9 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc7fdef7e ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd86e9d6f ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd9cd8e56 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe4043b3e ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xeb4b46b6 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf5512d43 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00957723 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0375c711 ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0851f3f8 ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0aad8bf4 ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x133475e7 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ea952f3 ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20cef799 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21cc1c9e ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x231c4d44 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28e8f30d ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29afd1b3 ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a1b4fcf ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2be91321 ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34949cbf ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34df7704 ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38d0154d ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d1ecf7a ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x406de9a6 ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43352032 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43e99588 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45a770de ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45ce8e72 ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4760c674 ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a4e736b ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c5e74b8 ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c93c500 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f1e85de ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x534d81f2 ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58896481 ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b8b28c9 ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x651e33b7 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x664a5de6 ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66e15a39 ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ae8894a ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6dd25a12 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e12d5d9 ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73d8c620 ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76047f2b ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77745e18 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a782261 ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7bbed987 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7dfc1049 ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x814d6353 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8226161f ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x898307c0 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x899ae007 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ca990d7 ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e91d84 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9836eb53 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x985f88b0 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9bc29a92 ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f5122dc ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3e9416f ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab55bd4d ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae7d17a9 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf1cff9c ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb063ed16 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9e6a91a ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbabfd756 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbceddb28 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbebba21b ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc12efb89 ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc415184e ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc89c6a0e ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca4688af ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca75833e ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc0b9fdb ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc86bd07 ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcdaeac4b ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce60f9e0 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd071be73 ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd14bb371 ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1d00248 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5215d58 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8c3a231 ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea9af21b ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb4920b9 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xedc4b8ce ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2bb751e ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf909e02c ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9e9192d ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb0c4bdf ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfcabf7b4 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x1ec9085c ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2c9790fc ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x396c336f ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x404b3f03 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x4da0cd0b ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x57524f26 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x67989774 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x8d255cd3 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x91977601 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xa3e46920 ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xcbc2ef32 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xcea82833 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xd51054f7 ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x162063bf ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x2d839beb ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5e7c7e9a ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x6f7e97ab ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x709f09c2 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x8165626d ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x8e3cb999 ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x8ed9af46 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xa93ae1de ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xc4eba57c ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf1bf0cc7 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x89765f8a ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x981d8677 ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0020d26d iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x12e9fe95 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x19a964fe iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2de2b571 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4d097de5 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4fa91663 iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x677d5289 iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x759ac55b iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8afe0267 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9a631abf iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc23f0d81 iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd54762ff iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe11a9386 iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xebed9274 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfc237799 iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1ed55bbc rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1eeff78e rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x23285d56 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2fbbec4f rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x39620d70 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3c1d231f rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x454071d7 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x493332ea rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6549d43f rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x65b370ee rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x67c431e6 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x82564c65 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x82e809e7 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9cb67831 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9ec041db rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbe3f947d rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd04eaea9 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd7b47e1d rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xed8ac435 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf3b6a54c rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfba74fec rdma_resolve_route +EXPORT_SYMBOL drivers/input/gameport/gameport 0x06f74472 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x070602b1 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x15677cb4 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x1cf5de27 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x3fb9a42a gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x6993acf8 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x74552abc gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xac1a2a26 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0xfb3e046c __gameport_register_driver +EXPORT_SYMBOL drivers/input/input-polldev 0x2896f732 input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x7c808bbd input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x98bdc2e5 devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xde39b5ca input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xdf7b0f53 input_register_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0x242fcc0a matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0xa78ea7eb ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xb4eaf37a ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xeb15c3ba ad714x_probe +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xb3f0d8a3 cma3000_init +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/sparse-keymap 0x0773c69c sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0x2c90686f sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x6b35c74b sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x6d82db0d sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x87ae826f sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x9e486ce0 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x0de47b2e ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xc93ac674 ad7879_probe +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x0e0387ac capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x12c17801 capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x3eee6862 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50ae28c0 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x5b3251e6 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7292ab34 cdebbuf_free +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x72a25a72 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa34a63ed capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc2e1debe capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc7104837 capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd8898d63 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xdd2718c7 capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfd552f7a capi_message2str +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x08d6dc37 b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x3740a150 b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x50536715 b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x631c64f4 b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x8acb6a31 b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x970974c0 b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x9b2a8a1b b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x9fb1c0ad b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xa48a417c b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xbc19fb89 avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xcfec61d6 avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd6e63125 b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfa0ef66 b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xeb1247f7 b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf00ec90d b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x2870fca8 b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x7246ae15 b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x9241827e b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x92808153 b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xb60ead22 b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xba6623d9 b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xbc740399 b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xc06de05b b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd783dc2a t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x0264f5b8 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x44fa96a4 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x9b419bcd mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xdc623242 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x863f7fa5 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xf05e8a32 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x1a0dab7e hisax_init_pcmcia +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6fe1ca04 FsmDelTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9f987c85 FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xa1bc94b9 FsmInitTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x49545b6d isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xcb024b5c isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xcd213e7e isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xd482bbd9 isac_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xee8be3a1 isacsx_irq +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x25355c6c isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x721556b2 isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xdfaf9f07 register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x00d2860c bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x12e00b3f recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1a9a8a9c mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26229258 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x47484b01 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x51e94882 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x545538f6 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x606982d6 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6086bc2a mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x641c704e dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7a10b345 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7ed28c7c create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x80e18e0c mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x85938908 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8eb73799 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9afe727c mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb95b5ee2 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc839e5c3 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe1623624 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe7fc7ab8 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe90e1a30 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xea675fd9 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfb8fef64 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/md/bcache/bcache 0x0c161f5b bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x11f9991b bch_btree_sort_partial +EXPORT_SYMBOL drivers/md/bcache/bcache 0x1f529ce8 bch_bset_build_written_tree +EXPORT_SYMBOL drivers/md/bcache/bcache 0x2a9240fe closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0x440b4830 bch_btree_iter_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x44a37d62 bch_btree_iter_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x5b59b856 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0x6d7dda0f bch_btree_sort_lazy +EXPORT_SYMBOL drivers/md/bcache/bcache 0x70147bfd closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0x78faf1bb closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7daccb73 bch_btree_keys_alloc +EXPORT_SYMBOL drivers/md/bcache/bcache 0x8833b0e8 bch_btree_keys_free +EXPORT_SYMBOL drivers/md/bcache/bcache 0xa3c5c702 bch_bset_fix_invalidated_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0xca5df778 __bch_bset_search +EXPORT_SYMBOL drivers/md/bcache/bcache 0xce47a6d9 bch_btree_keys_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0xd2813054 bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0xd947cd25 closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0xdf892351 bch_bkey_try_merge +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up +EXPORT_SYMBOL drivers/md/bcache/bcache 0xec6f33d0 bch_bset_init_next +EXPORT_SYMBOL drivers/md/dm-bufio 0x268682d2 dm_bufio_forget +EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL drivers/md/dm-log 0x6b3e9cbd dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x6eb2b9ab dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x9feae671 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xfa77ceb7 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x89aa5b0a dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xa0479350 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0xc1b905df dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xcac32295 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xdf69e9f4 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xfe19fee2 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/raid456 0x916accc8 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x14e436ff flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x209401d2 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2677bb56 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x301b8ab9 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x434673b1 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x47beb30e flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x51a4059e flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x63114686 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7e8848ab flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8c1a146d flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xbfe2e13e flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd1a8b122 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd9ef5890 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0x30cb4cd7 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x6096d1d8 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b44b995 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7d368259 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0xdc412bfe cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x65d99375 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x142123cf tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0x5d9898df tveeprom_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x05dfe876 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x15ada4f6 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1e51dfbd dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2251860b dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x269086df dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2975b9bd dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b99eee7 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3e19b685 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x41f65fd2 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5ab4496e dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x67347ac4 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x686b97e4 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6b28e85d dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7092ba42 dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x73f4cf35 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x77b472e1 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7caa224e dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x92885f27 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9510a851 dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x953d0287 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x96a1a3d5 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9a74fc43 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9bdeab9e dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9c436925 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa10e976c dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa1ef0cf5 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xaabf0000 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xab56e804 dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb9b68548 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc0eb14ba dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3c77f8d dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd11247dc dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe4271b09 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe51e2ea1 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe60d865f dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe6319145 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf23a08e3 dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf5a34ab0 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts +EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0xe4ad9df5 af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xd44a1c36 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xc293a34b atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x243c6154 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5b38ccbb au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x724d0a48 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7262d336 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb66b4e52 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xc79bc7c5 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe32893d1 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xed3f7139 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf0afbfb4 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x69ddc383 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x8f71fefd bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x828b4f10 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x29ab6a1d cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x4d1283cc cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x28d7ecaf cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x7bd34315 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x6636075b cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xc88ad3e4 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x92cccfc5 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xe3c3583a cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x936dbeea cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x2bb860f1 cxd2841er_attach_t +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xc1fb0a45 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xd3a9395d cxd2841er_attach_c +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x8877941b dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x8c3e38dd dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x981bff6d dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xd59bbad0 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xfeaa30d7 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x24ba5f39 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4d80a2cf dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5320c8bb dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6e76e3c5 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8f3970ee dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x91b0b510 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa7c3a3d0 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb208442a dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc170cca7 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xda6eae8c dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdcca62c3 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe34a7cb5 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xebcf7769 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf378c0f9 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf9d9cc9e dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xefb2547b dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x05277101 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x11508d0c dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x3d937969 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x6eab3227 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x87dd5e33 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa194ac60 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x01e97078 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x3129546f dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xc2f15d4b dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xf07692ab dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xfd59366c dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x2878dc09 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x15bf27c4 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x26a2f8c8 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x4c9c9bfb dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x5ab56c55 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x731ff253 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xa5d8dcb8 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x34690839 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xbd58c321 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xeecdd40d ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x683074b5 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x2eec7db3 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xecd8354f horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x2206c96a isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x433a10b0 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x2f2356ff isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x0224b52b itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x90787760 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xb34215b6 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x167a7777 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x5a350fbd lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x3c04c258 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x33088b02 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x28df2cb8 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x75c35443 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x7340d875 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x7e96dd3e lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x5e0ee18b lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x1565235d m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x5a466f40 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x3a24cce8 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xca122781 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x1158ba19 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x0b95f8f8 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xc2101d0d mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x708a7499 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x3aeb0c6d nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xcb5484ac or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x480271cc or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x5cc1d3e7 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x622654bb s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xe0996275 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xf880a896 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x0a15589d s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0x9707db43 si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x96fc08c2 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0xb8a1c92e sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xeb140bef sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xea9a77a2 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x41acb674 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xddb6f265 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x0301330f stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x5b863c48 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x1aa29607 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xa9f8ff23 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xaaa1c739 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xa3fe3229 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x9a9f7e49 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x0eedb934 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xba504971 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xad242649 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x1044eb6f tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xb50b30a0 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x460b425d tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x721eea35 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x1e981df3 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x0d450526 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xef314f4c tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x7e33ba59 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x6b1c7d88 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xbea39762 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x8a662bb5 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xc8fb1d8a ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x10a17aee ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x5341fad1 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x835d9006 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xf0393caa zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x3e61693d flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x51bb71e2 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x792bd85a flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x88b88dac flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x91f6064b flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xe755ca6c flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf36665a7 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x24395b8f bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x52ed1f2a bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x8c633cef bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xa50e9d03 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x030d61b3 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xf25ca171 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xff98f352 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x30324ccf dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x366a7541 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3f1aae73 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5c55fd37 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x671f6c7e dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7979320b read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7a7eb31a dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xbb8c0f48 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc351501a rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xd6b1abf9 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x18187e48 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x1bd0ffe3 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x916d1edb cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xa1945f2b cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xc3d8a289 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x87d84094 altera_ci_init +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x0db74939 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x177f6dc7 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x413905c1 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x9267c0c8 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xb409722d cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xb7447205 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xec0afa57 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x497e2379 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x65800d89 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x07b702c3 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x6be905ca cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xa5d35780 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xead67c69 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x5631ac48 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7f29860c cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x8441a255 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x937f0cf8 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9c946c6a cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd14dc67b cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd9640832 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x03a162fe cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x07d46b3b cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1fbccec8 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2ede701c cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x30f73571 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x43d6168d cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x46e1a027 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4aa694c7 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5dd74616 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6c2d9278 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7154e43a cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x90775412 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x950d6f4f cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa9af20ca cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb3bd3fbf cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc2a719e4 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc7d20647 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdc9c3e69 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf1a9bc3e cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfd79d7cb cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x28803e40 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2a84e2c0 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4dda6a30 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4e3c98a0 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x53327270 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5fe9b3ec ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7c57b613 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x81203d02 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x93215eab ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa24fe469 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa4b289a1 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xba4c5ca2 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbc82ecc9 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcd1ada58 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe35afac5 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe7040057 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xffe3bd1e ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0a4ffc32 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4b9312ac saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x63db4822 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7ce02bb7 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7e68008d saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7fd1352e saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb3220a8e saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb78c0407 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xbc004298 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xda5e0ecd saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf526c5d5 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xfa61e90b saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x16dc1e92 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x0c33f33b soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x338aaa52 soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x3629f00a soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x39659f4a soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x798f5011 soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x958f3f50 soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xe0fc3917 soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc +EXPORT_SYMBOL drivers/media/radio/tea575x 0x1b8c398b snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x4b3d7495 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x4f4642c4 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0x75b4b6a2 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x905d6978 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0xbc1aa763 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xc00fa583 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x3ceb6f4e lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x3f2742f4 lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x6421dda0 lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xa6e88678 lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xae6fc2c6 lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xca2e4b64 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xcc323051 lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xdd401c9b lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/rc-core 0x79b11a76 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0xd889e990 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x8716b081 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x76ef43c1 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x07a3891f fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x1f4a1d6c fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x72335d2e fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/max2165 0x20f6c483 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x2a60bf17 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x66e19db7 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x5ea92a92 mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x2692ccff mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x8ea57a89 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x5f3dcfd5 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x9fc8a1ad tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0xb07dcfdb xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x5e9c0a95 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x487fb8ac xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x9ed9944c cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xd54dba12 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x00773503 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x02925133 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0ca493ba dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x65335381 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x660d7a58 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x83c108b3 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x88eee8a4 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa694f236 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd2ab043f dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x3f7cd528 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x462d5729 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xaf9bbc24 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xafdd27dd dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc41a3a41 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc7d4a754 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xcb7acee5 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xae213473 af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x199323ec dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1f0aa340 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5bbe71c1 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x68e37ed0 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x70cf8f24 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x738d4f21 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8f709f67 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc43a9ae2 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xcf84ea36 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xda519924 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xee3a8206 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x53ec46cf em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xff3a4126 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x18aa9362 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4e5ca5aa go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7185435d go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x84d6d032 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9c93b251 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xad9e072f go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xbc070269 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf6eab47d go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xff6d76fc go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x3567601d gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x57b0fd8c gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x67ad42ef gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x71b8ec70 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x77b5b7a2 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x77c660ab gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x925a8fb9 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb26f0ecf gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x634d10fa tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x835dc98f tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xef3f0ac4 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x108837d4 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x3b4f361e ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x08ee4f5a v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x54757d31 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xe32ce5ad v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x377817e1 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x44d0d31e videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x45d7da2e videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x60fb2ae9 videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x8c898755 videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xa314503b videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xb5a9fdc2 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xca4e335c vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x59a4cbab vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x6db39e99 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x957ce088 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xdfbe0156 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xf14e3350 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xf4a75e79 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0x4cf430dd vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0e403887 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0e788bf5 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1201d3d1 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x120b9268 v4l2_of_free_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x17ad63e9 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1802c661 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x19275b38 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1f204e52 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x200efd2a v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x22836dab v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x22abb491 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x22fe5128 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x25145c0b v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2a42e727 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2e557d28 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2e93d890 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3773ce40 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3d838d49 v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3f0bf49d video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x437b3cc1 v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x46a76b3e v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4adcfd15 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b1a5af0 v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4d382701 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x505e71e5 v4l2_of_put_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5262ae7b v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5e81322d v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x619d5190 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x67119785 v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6891d98e video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6e961745 v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x71c118a7 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x73350f7f v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x73e6de45 v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7f306e8b v4l2_of_parse_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x83ba51d0 v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x84916821 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89de7b3a v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x90ccbd5a v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9b30259e v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9d58d3e1 v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa1b230b6 v4l2_of_alloc_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa9918250 v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaa771bd9 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaedaa65c v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xafc8c324 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb00699e8 v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb03183bf v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb391b30f __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb4b8bfee video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb895e422 v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbd0f8f51 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbdbbd477 v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc3ee32cb v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc4dfadfb v4l2_of_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc6603385 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc6831ece v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc9d7349c v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xca89ca93 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcbeabc09 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcf00127c v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd7d5db74 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd8b181e8 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xda0d2445 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe0fb078f __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe1d6e2f9 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe20e313c v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeaf3ab3f __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xedfc862f __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfaf3b1e4 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfb667c6d v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfcf87d0a v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfff42777 video_device_release_empty +EXPORT_SYMBOL drivers/memstick/core/memstick 0x298cd145 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x373e3ffa memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x42c53286 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x538f407e memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5ced8505 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6264d976 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x780a993e memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x825c5d40 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x9be4ecda memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xab88fe16 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb51f745f memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc8c5cd3c memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc07e67e memstick_init_req +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x070270fa mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x12e5f427 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x14ecfd0a mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1b139ecd mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x21263090 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2f281ac1 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x396d3303 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3beaf8a0 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3eaf507b mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x46af17bc mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5760684b mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x666fb21a mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6684c673 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x67f62256 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6b834a8e mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x750ca384 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x81007323 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x856808c6 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x94e46fca mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa61df94c mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaebf3ab3 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb38cd047 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb7b59153 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcde7b221 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd128453f mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd40ea3d9 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd6a4c482 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd953b94a mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf34214af mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x097004c2 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1b1d06c3 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1b2fae84 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2f0086e5 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5328b86b mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5407a6b6 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5456304b mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x65da0520 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x666eb319 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x749c8174 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7990c43b mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7d05fa14 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x86c7d65d mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x87f0d223 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x952fca52 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x954cfcf3 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9f3a37eb mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbb7cee47 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcd324ca4 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd92b8a76 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xde7c3ef9 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xde998676 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdf394dd8 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe080236f mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xec248ed7 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf43c4026 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf58b76c9 mptscsih_resume +EXPORT_SYMBOL drivers/mfd/dln2 0x1d876499 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x7b4102eb dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x969e8ad9 dln2_transfer +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x645e4717 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xfcfb2666 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0f250927 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x252d640d mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3fd6945a mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4af83420 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8774bf9a mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8a54bd3d mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x97459a1d mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x98268e87 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa046f6a2 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb65f95af mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf078a9aa mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/qcom_rpm 0x295fb567 qcom_rpm_write +EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 +EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 +EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib +EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led +EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw +EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x1e51e983 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x6f0fd087 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x1c906870 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x717052a4 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xdc28eb10 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xee125089 wm8958_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x4f11f2c0 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xb59ee4a7 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0xd2c54d67 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0xb1ed8aa6 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0xb7351eb1 c2port_device_register +EXPORT_SYMBOL drivers/misc/ioc4 0x21e7e0a1 ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0x397ccde7 ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/tifm_core 0x00567d87 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x21f72606 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x36b99b6e tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x42762af2 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x59bd5d37 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x77c95361 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x9882c466 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xa4747088 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xa8c2ec46 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0xd01be92f tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xdc5b4e4c tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xe2188818 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xefcd2c4f tifm_map_sg +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x09c5b30c dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x33359f31 dw_mci_suspend +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x82f887ce dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x9a12662a dw_mci_resume +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x10112359 mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x41201c56 mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x0b63fa58 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x1c6aedb7 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x35ca52ed cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x4356f653 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x70d0d998 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xa925bf97 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xda999b86 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x3d85bbe0 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x478ebe9f do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x6f93ca45 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xe77c9a85 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xc4aabfdd mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xf5562c42 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xc3b8609f simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x1b5cffc7 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0x70c02392 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/nand/denali 0xaad47e71 denali_init +EXPORT_SYMBOL drivers/mtd/nand/denali 0xad556fb1 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/nand 0x0fe29210 nand_scan_bbt +EXPORT_SYMBOL drivers/mtd/nand/nand 0x38349969 nand_scan +EXPORT_SYMBOL drivers/mtd/nand/nand 0x81f530f0 nand_unlock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8b027eb8 nand_scan_ident +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8f51a559 nand_lock +EXPORT_SYMBOL drivers/mtd/nand/nand 0xb20a0354 nand_scan_tail +EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x7ed732e5 nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xa71e9f27 nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xe6a17836 nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x5f40c2af nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xa5001b26 nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x8cfcf75c nand_flash_ids +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x23c1fce4 onenand_addr +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x4af355eb flexonenand_region +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x559f3300 onenand_scan_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x76e6fdba onenand_default_bbt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x023da3dc arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0f639a86 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x29e4786f arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x311cd851 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x34aca2f9 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6d43b1d4 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6fcf5d6a arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9ab54187 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa3009a70 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd0018e9d arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x2e5fb299 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x5c7dab1d com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xd5289f08 com20020_check +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x05f741f1 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x31fb0e51 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4bf309c1 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x76cf9400 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x83e1a7bc ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8463cae1 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa02d2cc5 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xceb19baf ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd7f9a7f6 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xdf37c255 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0x55746055 bnx2x_schedule_sp_rtnl +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x9d797ead cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x0d8be5fd bgx_lmac_rx_tx_enable +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x285bde59 bgx_get_rx_stats +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x42264715 bgx_get_lmac_count +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x6dc1648d bgx_get_lmac_mac +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc397f585 bgx_lmac_internal_loopback +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc82be691 bgx_get_map +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xe48ca42a bgx_get_tx_stats +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf101d1b2 bgx_get_lmac_link_state +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf9508980 bgx_set_lmac_mac +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x13ca05f8 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x28896ae3 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2911849d dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x41f3f394 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5f7fc0d1 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8b6ebb6f t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x95d334b0 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa13aaeca cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xacbae801 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb4181e4a cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb6e39d2d cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcabf41f6 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd3e1e38a cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd786f7f5 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdd680aff cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe7549487 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x00878854 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0507c731 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x053d3e3e cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0ac3c393 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0fe96165 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x120e9753 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x16f752e1 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1840a987 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2c6b4505 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3a8496ba cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x47033e68 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x521b24df cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5417ed83 cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6d1dce4b cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x71310c9a cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7a98f500 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8943f0a2 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8975c3ce cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8a7e675c cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9d55fd1b cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa60361a1 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa775a186 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xac8bfaf9 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaf38c2fe cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb0103812 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb6160433 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbaf981d0 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcf165385 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdb96bfa9 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdbf36231 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xded1d584 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe6380023 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf1938c6c cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf773d076 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x1728cfbe vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x1f19d093 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x5daa342f vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x891d2c35 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd9df26c9 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf5119026 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xc07ed5db be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xc16f59ad be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/freescale/gianfar_driver 0x79f28897 gfar_phc_index +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x087c64e8 hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x3a54afea hnae_put_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x96f68073 hnae_ae_unregister +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xcd78e56d hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xd5b22815 hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03a70586 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03abe20b mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x047f0a08 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0640517f get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10f90b14 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x171b5a99 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23a57467 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24a31d08 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33c6908e mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3503ca7e mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36235f4b mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a9d95b2 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4462b9ac mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x522234c8 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5876c372 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e8d73fe mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6cd2cf0a mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f64a085 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8022e969 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8fa13feb mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x913e46eb mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91a29492 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91b9f5e2 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x961928ab mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa14e778b mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbaedabd3 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3b0bd00 mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcbf8059f mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd464d53 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcfa3b5d6 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd05a7357 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd52f107d mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb9680ff mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf8603f1 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6170d1c mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe74be032 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea205dc5 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xefdcf4cd mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00343752 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0857aabd mlx5_get_flow_table_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb7287e mlx5_del_flow_table_entry +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10cc58db mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29ea367c mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2dba909a mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34b34b78 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37b782ad mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3960f855 mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39e58ef3 mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d83f49c mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47f08144 mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b98aacb mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x504c7474 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52b7abfe mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c90ad0a mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61c1f714 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63c98257 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b509678 mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c8422fc mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6edf16b1 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ef0785f mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f190585 mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x741d5751 mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75bed9cb mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x790d36eb mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f62f0ad mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0eec385 mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa17a0f8a mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa635a00f mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa76649f0 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbef0067d mlx5_query_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7db88d8 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc829461f mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc9cddeb mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd520ad83 mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6af33e4 mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeeb43759 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf111e042 mlx5_modify_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4fd9970 mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc728a49 mlx5_add_flow_table_entry +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd54f74e mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1c54e2da mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x201c876a mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2d07a992 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3302bfb2 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5d0da4c5 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7e5355ab mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa9e0b7d2 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd17e168a mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee8e0771 mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x1c2c2a98 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa209d1af qed_get_protocol_version +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x0c07e66f hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x0d531c77 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x5855d85f hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xd7cc9cdc hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xf2dbe3a0 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x20192336 sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x2fc19607 sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x5b434583 sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x7eb228f0 irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x9a83d0eb sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xcb13ae2a sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xd2d81d9f sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xd3b41168 sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xd7a34ef7 irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xfd4c4427 sirdev_write_complete +EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x5d4a193f alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x782cb439 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0xae317f1f cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0xc4122cf4 cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x3ea98d44 xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x63e832dc xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xc1fe2a63 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/phy/vitesse 0x1f16cc9c vsc824x_add_skew +EXPORT_SYMBOL drivers/net/ppp/pppox 0x77836be0 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe6c7ff38 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xeef6b928 register_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x72923d3f sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x064448c5 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x2bc5d5b7 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x3b67ae1a team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x47b4bb08 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x5dda22c5 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x76e79335 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xb0b52403 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0xfda75630 team_options_register +EXPORT_SYMBOL drivers/net/usb/usbnet 0x004b1a1b usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0x599107f4 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0x6a43ad14 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xb579d0bb cdc_parse_cdc_header +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0ef66112 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x16669db9 hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3aad5327 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x468aecfe hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x75f46d31 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x9431786e hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xaf85a6d8 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb3865ac3 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd26aaad5 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd8f1c6ed register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xe38913a0 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x76ef3131 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1b18301b ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2ce5df24 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x58fb6168 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6714c14f ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x727f7cbb ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7c3fe789 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7e8fa29b ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8f253514 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x91817fba ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x92bef6e8 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc0e0116b ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd18687fd ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2216100f ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3035b4e5 ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x34c7d45d ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4c71ad90 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4fa3bf85 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x54474e5b ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6daf961c ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa7efae45 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb3a6a358 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb8f080b6 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc0694a23 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xccf3c7f0 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd2756f13 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xec3c84ed ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf937c337 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0ed27ee7 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1c76551f ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x347ac2b6 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6ed504df ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x86954bce ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8f7f1fd5 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xbb2473de ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc15debb4 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc985f5af ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd5285530 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe5a570c8 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x06137590 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0e54ef0d ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x16be4551 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2156f648 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2344d4a1 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2a6c231e ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2cfcf884 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2f4d1632 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x538c3b44 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x54b3371e ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x69e0a481 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x841133a9 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x84458404 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x98d38a84 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa3da30ea ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa4ed1980 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xad3b4e3c ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb0c803c5 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb8457907 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdf0f7760 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe55f63fa ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf3ee1351 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf8fad127 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02d1eeb6 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04837a19 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x095e252f ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b0efa71 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1302cc82 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13f18ab7 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16e78ffc ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x18fe74c5 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a1d53c3 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d38ad2e ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x33b4ec93 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3522bf42 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x36d29b2c ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3c799366 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3cc332a1 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e4b1e40 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3fa83048 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4018593f ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x425bab5a ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x47fc0ea8 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4809eb50 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x492d0504 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x498fb85c ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x49b25319 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4aba9d9c ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b6101a8 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b644245 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c115758 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e802e86 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x50f5ca70 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x528afd81 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53c3713f ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a311d30 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a66b88e ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5cfab81e ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5fd13421 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6c92f802 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x70e08da0 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x72212a60 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x74da9e74 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x757eccff ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x758a0de3 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x75902a9c ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x75d8c535 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x76756f69 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x79ead190 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a9bde52 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c522da6 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7cc879d3 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x819e5d4a ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x83dcce5f ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8610dfd9 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x862c7e47 ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x893a2c5f ath9k_hw_request_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c21dd68 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c723eee ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c856aeb ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8f07ce89 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x97454080 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x978f9adb ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9915398a ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9b773569 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9c1fa50f ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9dab2196 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa0dc53e9 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa204e1e0 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa2cc57f8 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa5fc5613 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7f6bf27 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa450cba ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb5af7e34 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb8a65524 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xba3403d7 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc9043c5 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd2b9aa9 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbdc46168 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0bdcf5f ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0c9f210 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc34ff08c ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc36e1ec4 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3cbb4d6 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc5949cd9 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc80e792b ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc85c761a ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcac41f89 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcca92caa ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xce92b245 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd0f24fc6 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd398dee4 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd57e43ba ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd60ebc99 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6cca11b ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf6b0136 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0c881bf ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe2f8c6fd ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe40d0eff ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee071f5e ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0a70215 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf11f82e9 ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf4f480a2 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf5f9b108 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf888a191 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfdaa9d71 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe1ce865 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe3960cc ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/atmel 0x2a9c6c89 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0xa6ad7131 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel 0xbf9066a3 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x00550528 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x0d15af26 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x0d373bd5 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x2dc81049 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x4b6a1dba brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x508e5cea brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x7fc06c15 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x8f72927e brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x946434c5 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x998e9f49 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xa8168197 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd8a1e431 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xf42779e8 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0f76bf21 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1723ac32 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x221275e3 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x241ce9ea hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x28237876 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x28ae197d hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4018e45c hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5b76ad6b hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x78ade0ad hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7be1b461 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x83c0d8e9 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8cae72aa hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9292dd40 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x98d13604 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9f4c76b2 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9ffbd45d hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb12a8949 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb897e3e8 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xba345378 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc3f2d45a hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc440b90f hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd88c258d hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe27fe1bb hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe7885fdd hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xeb9104ff prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf56788a4 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0287b9e7 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x02bf8682 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x02d561b6 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0e867174 libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x31a591d8 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x3e34f76b libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x47d9123e libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5691ee76 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x63d796fe free_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x80cd8eff libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x84e62506 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x9802f789 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x9a700808 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xae5e87e9 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb78a0ede libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc4c3363a libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xceaed7ff alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xcf9a6a4d libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xdb5c7c33 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf4fbc049 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf542de27 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x019009ff il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x01f57255 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0fcb3161 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0feb14a2 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1433f258 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x17204782 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x18f2f668 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1b291734 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1fa42fd7 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x22f9225d il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x284c358d il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2cf09328 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2d1aeb9d il_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2d449b15 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x30a236fa il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x312ead9b il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x31c8f7ac il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x330820b3 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x35894cd7 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x35ef6e6b il_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3710bc7b il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x39967d7c il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3bfe6370 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3c0ecde8 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3d612aeb il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3e33519c il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3f811768 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x40776c0c il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x47074a4f il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x47195a37 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x481e42d5 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4cb554b0 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4e08dfcc il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4f7711ff il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x530f7769 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x537b6da9 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x582ae443 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5c44e57c il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5d3becb7 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x606b6e51 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6093fc75 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6169e9a1 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x653b2eb4 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x65e5c679 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x661a7d4e il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x66c7ad1a il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x692825e1 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x69de8729 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6fc7a058 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x70e4197d il_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x71d8f7b7 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7338bf77 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x76bd64c6 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7da1c87f il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8a4e36a2 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8b668553 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8ba7e3e2 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8c4708bd il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8c926d0e il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8dbbad50 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x971551f2 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x98c0eb40 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9dac16c2 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9eacee42 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa3db6139 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa6a0eca3 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa92f4096 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xaa152503 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xaa591dca il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xabce6b9c il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xabf18101 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xabfc47db il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xac133c41 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb0dcd311 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb315a60d il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb4008436 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb6e4750c il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbba94067 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbdbadc6c il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc1eab9f4 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc23e4a9b il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc42eadc2 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcc01eee4 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcecac090 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd6d74e61 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd9930065 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd9dd10e6 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdea13c0d il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe2cc1ea5 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe30ff156 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe6036458 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe7a977eb il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xeb86882f il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf3b8f5a1 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf525b432 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf6b98c19 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfe0e6111 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xffca7622 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x1b06ce78 __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x2447a6ab __tracepoint_iwlwifi_dev_iowrite8 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x314a20a8 __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x5e9c24ff __tracepoint_iwlwifi_dev_ucode_error +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x8c8ab242 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x9a1b1df9 __tracepoint_iwlwifi_dev_ioread32 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xdced6db1 __tracepoint_iwlwifi_dev_iowrite32 +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x0170090d orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x050890d2 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x1b97f459 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x21a07e6c __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x25294c73 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x2e49c76f orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x3359ef1b alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x9f8e021c orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xa0afca1c orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb7161e85 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xbc4a37f5 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc8623cce orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xdee9eaf2 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe8375ea8 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xead7b05e orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xef64033b hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xf85f1771 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x03111dbd rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x04b65ad9 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x04d45a38 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x14cf46d4 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x15132a73 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2047cf09 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3d095b9c rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3d7a4303 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3eced7d5 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4319d68e rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x43e871e5 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x43f2409e rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x575d3a52 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x58831099 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x670f4d98 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x67e48895 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6d2e7f63 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x765c850b rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7d46899d rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x80926a6c rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x836c034a _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x86da02d1 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x879b5a5e rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8a8eb9c7 _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9a6df254 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa91739a9 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xacc4cf8e rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb76b3d21 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbd4cb719 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc2132e19 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc327f9f3 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc9d83dd6 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd5f1732a rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd6218126 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd7f1949b rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdf62d37e rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe0d9401a rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe0ed0f2e _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe7154a6b rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe882b64e _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf581d3f7 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfccfa875 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x001e475d rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x2e254425 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x74691b09 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xe3098893 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x1d62c883 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x5a3cbf8e rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x8590a6c5 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x90b4d28f rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x213cf11f rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x29aa1bb6 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3507daa7 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x43cb285f rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x46958a0f rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x47910272 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x558b4636 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x62d5cae2 rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6595f60f rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x66783590 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6813ab22 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x75a07f45 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x80ae2cd5 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x86e0443f rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x89b5a392 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8bf085c2 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa27a76e6 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa3b4ddfe rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa6a632b2 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaafcd494 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xae19f1fe rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb7562544 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbcea5c7d rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbe226daa rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbf4779d7 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd92a4208 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeafb478e rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf64ce85f rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x4b5f0bd7 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x941c8202 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xbbd15eb1 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xe5225d3a wlcore_tx_complete +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x1abde707 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x4b06877f fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x8f810cba fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/microread/microread 0x83e449e5 microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0xa19c960c microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x05602228 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x1c7fa98c nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xe5bbc76e nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x83549372 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xb97a5169 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x79422135 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x8e606f4d s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xec0da0e0 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x04164b1a st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x17faf8e7 st_nci_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1ae86b05 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2af24679 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x763e1dbe ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x86a81dfd ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9375c24e st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa1c2f9c1 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb1d45c11 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd223dfd3 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xebbabefe ndlc_open +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0838c51f st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0bea23ef st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x509669be st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x57b63717 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6dbb6ff2 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x75385c62 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x75f8fa95 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7ab2fb63 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8d30eb63 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8de3ba3f st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8f6a00a5 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9701ea58 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc2055a61 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc30b2aac st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd8839267 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe23ec428 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xea0e018f st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf9403b07 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/ntb/ntb 0x09bbe31a __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x12a830ee ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x1dee7eed ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x29df7309 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x45ab4902 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x66c0956a ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xae9b9271 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0xe0fde429 ntb_register_device +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x162705fc nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x7c580a2e nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0xab034273 devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x08d534c6 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x0cbfab28 parport_release +EXPORT_SYMBOL drivers/parport/parport 0x1281baf1 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x185b52c4 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x1f2c5e38 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x2292d490 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x2555e28d parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x2f97a058 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x30f8b17b parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x33f35291 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x354939f9 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x35fc3e01 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x36070116 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x43f9f13f parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x4996bffd parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x4a28d380 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x58e0c64c parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x611d8261 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x6c2192c4 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x6dc18a36 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x6ffca2b6 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x74e48bb2 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x7ef3fe8f parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x83384945 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x84da0af9 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x96579a64 parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0x9c38bb64 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0xa4ddefd2 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xb615fa1e parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xc735455d parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0xd1496d8e parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xfd6089fb parport_negotiate +EXPORT_SYMBOL drivers/pci/host/pcie-iproc 0x3d29a9d8 iproc_pcie_setup +EXPORT_SYMBOL drivers/pci/host/pcie-iproc 0x850d42de iproc_pcie_remove +EXPORT_SYMBOL drivers/pps/pps_core 0x6bb7b1c8 pps_lookup_dev +EXPORT_SYMBOL drivers/pps/pps_core 0x7d4450ef pps_unregister_source +EXPORT_SYMBOL drivers/pps/pps_core 0xaa28fa9a pps_event +EXPORT_SYMBOL drivers/pps/pps_core 0xc827b33e pps_register_source +EXPORT_SYMBOL drivers/ptp/ptp 0x49106bc3 ptp_clock_register +EXPORT_SYMBOL drivers/ptp/ptp 0x65f62bc3 ptp_clock_index +EXPORT_SYMBOL drivers/ptp/ptp 0x789f34f2 ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp 0xecf5679b ptp_clock_event +EXPORT_SYMBOL drivers/ptp/ptp 0xede7a913 ptp_clock_unregister +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x03c1ea4f rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x09a19990 rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x1a1a393f rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x55717245 rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x6987247f rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x89d4958c rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x9d637b39 rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xaad10df3 rproc_get_by_phandle +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xcdb84d6e rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xfb0f3d79 rproc_boot +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xc3153b61 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x0b5077fc scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x31343d8a scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x535ca770 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x6a3ea1fd scsi_esp_template +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0912badd fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1764f5da fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x257d23bf fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x306b6c08 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4c39f937 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4f54ea41 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5034e362 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x56eef3c3 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7afc6c86 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa88e61c9 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xbb327eef fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe4a792e2 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x03fa3e83 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x07349c3c fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0a951cc6 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0bc6899f fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x13c074f4 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x148371da fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x149d5257 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x183c5794 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x24a9a1a3 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2550e340 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2d3254d1 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x320edf98 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x428b55be fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x42cc6cd6 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4ed1d747 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5242a0ef fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x529b73fa fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5303afb0 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x54da1acc fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x560816fd fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5915b7ce fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x59292183 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ccc441b _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x68071b27 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x757a9ac2 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x770c3649 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7efb6110 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ff90571 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8401d6c3 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x84270588 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8e1e5c54 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa5beea88 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa600e28f fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaabe2688 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb244e664 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb3111525 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb42c28ac fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb636cfd6 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbf4c89d5 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc6b45c40 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc8b2dc27 fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd8b340df fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe21ae5a7 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe62dbadd fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe66a53b5 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe8866065 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xef4bb5ff fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf6033290 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa42254f fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfebc11a6 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x58b0ae03 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xd174fa75 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xf920a9b9 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xfffcbc31 sas_wait_eh +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x81453260 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x01624b0c osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x033b99bd osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x034b862f osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x161befe6 osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1857339c osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2c3fbf5a osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x309b799b osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x35d5cd1e osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x408efd99 osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4cd1336a osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x542fb030 osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x54b227ff osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5854de0d osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x612e7e2e osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x660a8790 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x67772d35 osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x695d0003 osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6a502ba5 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6c00aa09 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6d092505 osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8c38388d osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x957c125d osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9e0576d2 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9f174b51 osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa0c81d73 osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa91de33a osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb5536af6 osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbf67e51d osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcf22a5cb osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdace18a6 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe32fb008 osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe34d346d osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xeab3be75 osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xef7c35be osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf1a585ef osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfc3108cf osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/osd 0x297bf928 osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0xbada9716 osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0xe8a1f383 osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0xf061e6a3 osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0xf5131052 osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0xfbe1b69c osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x01696f75 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x028a656b qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x10246713 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x32071545 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x32a0067e qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x33914ca3 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x73898860 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xad1765ae qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xdc620a39 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xefb1a207 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf5130051 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf6e8ba0e qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/raid_class 0x09454445 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0x25335c63 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0x7f2ddbd3 raid_class_release +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x035f0782 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x046eae27 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x05d9833e scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x15e13a20 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x28d7683c fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4cd88fc2 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x54b0a74d fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6180923f fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6658ed5a fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9a14b0df scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa98511f0 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd265c301 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf9705377 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0bb74967 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0cb9cb8e sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x23fbaed2 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x28687b45 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x32b22f08 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x38c14c06 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3d6ca429 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3fbdd1b1 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x414e81c8 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x479bac4a scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4c26d38f sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5377fb4f sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x58946fc3 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5edc4670 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6348b0fe sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x65fbd8c8 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x703f9fa8 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x735bdea9 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x78c4ba27 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8db1a1c8 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x929a94b9 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x92dc76a0 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9b929727 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa8f28d5b sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb2cd660b sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd0e917da scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdb5df541 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe11d4481 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf3e8c116 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x4aafd99f spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x603a95cc spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x973ad8a9 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa1c613ea spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xf0642320 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x30a8d4ea srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x442d974d srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xce1f11a8 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xf7760a46 srp_rport_put +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x13faa081 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x1541f8c0 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xb0243266 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xd3c09615 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xd4843ff7 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xd96961b2 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xe7825372 ufshcd_runtime_idle +EXPORT_SYMBOL drivers/soc/qcom/smd 0x4ed55fea qcom_smd_driver_unregister +EXPORT_SYMBOL drivers/soc/qcom/smd 0x932cbc2a qcom_smd_driver_register +EXPORT_SYMBOL drivers/soc/qcom/smd 0xeda44e54 qcom_smd_send +EXPORT_SYMBOL drivers/soc/qcom/smd-rpm 0xad43c23b qcom_rpm_smd_write +EXPORT_SYMBOL drivers/soc/qcom/smem 0x34b57571 qcom_smem_alloc +EXPORT_SYMBOL drivers/soc/qcom/smem 0x5a710273 qcom_smem_get_free_space +EXPORT_SYMBOL drivers/soc/qcom/smem 0xeeffa750 qcom_smem_get +EXPORT_SYMBOL drivers/ssb/ssb 0x0121cae6 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x06bd344a ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x08f111e5 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x1df6b8d4 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x2a2704ff ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x326236ed __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x496f8785 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x6461692f ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x65d21619 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x700e7af1 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x950432fe ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x9cadae99 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x9fdb4b81 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0xaceb50a5 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0xb628d10f ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xc215e232 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0xc9cdeb6b ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xe3ce5df5 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0xe3f3df83 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xf3411c5c ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0c1e48aa fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0f30ee57 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0fed8315 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x155b6dbb fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x161cda94 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x19152454 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x35153364 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3755a557 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4b1903d0 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x635fd633 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x63ba88f4 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x85c506df fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9a111aa9 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa37b9ab8 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa466b103 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xac723206 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb73efda6 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xccb756e2 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcd68596f fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd97fd25c fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdcbf43b4 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe5456972 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeb136beb fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xec185868 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x17aec61c dprc_get_obj +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x1f3aa0d3 dprc_close +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x231570c6 dprc_get_obj_irq +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x2d12b5d8 dprc_set_obj_irq +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x44940a75 dprc_get_obj_desc +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x46b4fed4 dprc_get_obj_count +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x486173df dprc_get_res_ids +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x5aec9bb8 mc_send_command +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x5f32ddef dpbp_close +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x72498418 dpbp_enable +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x7712a80c dpbp_disable +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x7d9ded0a dprc_get_obj_region +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x90f52310 dprc_set_obj_label +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0xa9fd8a16 dprc_get_res_count +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0xb2eb5723 dpbp_get_attributes +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0xbb1a7c85 dprc_open +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0xc801be40 dpbp_open +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x738dc4bd fwtty_port_get +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x8f45318a fwtty_port_put +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xcdfbf5e3 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x21da865c hmc5843_common_resume +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x2ef7c92c hmc5843_common_remove +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x639dcf52 hmc5843_common_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xcc1999d4 hmc5843_common_suspend +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x439e69f8 ade7854_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xf109d78f ade7854_remove +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0x142ee331 cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x15b56eca most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x021d74eb free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x03b85ca7 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0e4058e6 Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x120f9e85 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x14d64cca alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x16331ffa rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x18396b63 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1e431568 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x21cc782b rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2bccb696 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2cbf774a rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x322f64db rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x32528547 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x32720a4a rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x38a7052b rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x393cb009 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x418a9487 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4620c658 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x48574a1d rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4fdc14be rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x54b94b01 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x560d25cc rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x57158454 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x57755c48 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x58b80914 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5b3a4aa5 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x68b738a8 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6974f3bd rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x70ca4f61 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x73dad738 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7b16f008 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7f545530 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fe3e3a0 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8cda232c rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x93003911 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa454a32b rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xada78399 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb31ff07c rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb4d33509 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe14db2f rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe718a20 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xccc9b8fe rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd03def72 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd161497a rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd7c42957 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xda4986fc RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xddd29176 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe0a5c94d rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe9fe2694 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf346d5bd rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x075346b0 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0aba3152 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0c6d537c ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f099f61 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1b063bf1 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1b1f1397 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x20d1165f ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x22a83ccb Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x362431d5 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x43fbbb9c HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x48cefea8 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4bbecc8b ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x56c79275 Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5c7d93b3 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61ea895d ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x641cc1d7 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6555decf ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7cf14a3f ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x82a64f3f ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x867cb022 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x88e84627 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x95494bf9 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9bf09722 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9d47fdab ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa68ff87e ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa6d9c88b DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa7a125ac ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa8c43126 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa8d4501f ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xac6ca871 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaef121a8 ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaf463e77 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbb83acb7 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc940131f ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcb957e21 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcc2c2ff3 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcd79eeb0 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd34fc52f IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd403148a ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd4b03e6e DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd651d6a7 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd747ed58 Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xda1607bf ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdb54546c ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdc0394e4 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdd8f1ad8 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xde41a827 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe3b309fe ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe55f996f ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf2854c95 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf55667a7 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf8406b85 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf8967f5f ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf9dff1e1 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfda47a57 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x07c7ab47 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0c18547f iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0ff74d9a iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0ffae1e8 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x312a9b45 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3790298a iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3abc497a iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4d229aa6 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x603b1329 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6888fb8d iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7b4435bd iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa14cb715 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa188ed6d iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa90dd892 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xadcc7d8f iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaf95e23c iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb1a896b9 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xba73970c iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc06e7e7b iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc76ac6d8 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc9429c23 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xccc4dd48 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd2899307 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd5640332 iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf29f12f5 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfa2f10dd iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfe5ae893 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfe8353f4 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/target_core_mod 0x02aa354c transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x07cdd778 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x1a38c728 target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0x1fb9c0c0 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x28b3bff6 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x2d78c307 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x2fca6bfd spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x35432fef target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x36c65f3c target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x3889ba19 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a149d15 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x4092a71b core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x41a0d9d3 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x4411bae8 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x4d1fbf76 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x4da9a83b target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x522d1284 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x596aa1bf __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x5a3ef174 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x5db778bf transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x5ddaf1c3 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x63b48e8f target_get_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x668ea252 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x669174a1 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x671b5fbf target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x67d25887 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x716ec11f core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x721a441e core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x7d61fffb transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x7e5955b1 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x83dd9577 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x8763062a target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x897cb8cf target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x8af0831f core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x8e471c0a core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x8e8f2e74 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x8eafcaee core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x8f8ec616 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x914abb71 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x93dbfa8b target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x9a1bb58f transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9a1ec45f target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x9b4f0918 transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x9f723a17 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xa4ac79c8 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xb2afc1ac transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xb743de1a core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0xbdb1c919 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xbdd70903 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xc437f2db transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xc534f376 target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0xc58d69a0 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xca0d046e target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xca223abb core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0xcd79016f sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xcefba603 transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xd06ba20d transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xd203020c transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xda4cfbe6 target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xdf80ffbc core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xdf9640df spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xe04461eb transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0xe3f00bee sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0xeeb677a7 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xef85886b target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf18db591 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0xf38319bb transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xf91b1cac transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xfcc533e3 target_put_session +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x430d5b77 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x305ad968 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xe84b79d8 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0e373793 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3fb71fc6 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x49c869f5 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4c3ee603 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x757feac9 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7a4f3ca5 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x89059c95 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8f1e17c2 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb479987a usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc5186be7 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd61ece50 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf5e441e1 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x1f36bc45 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x47767b99 usb_serial_suspend +EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user +EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x3c71c418 vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0x5fedea44 vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user +EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/video/backlight/lcd 0x56b0112d devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x5f8d56d9 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x9c379411 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xadfe7376 lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x254e4125 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x5918ce92 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7775ec85 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7eb59910 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd60501cf svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe697914d svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf0f4f083 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x753eb24e sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x06cdec9e sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x21a4f822 sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xf316902f cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xaa38e36b mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x112596a4 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x35f4bda5 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xa828db0b g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x23d841c6 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x358b4d60 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x88820b34 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xc9bf9026 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xcfa70c57 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x665c89c9 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x0deb1fc9 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x145b58a8 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x537bad2c matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xf3aa4aab matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x33cc9d31 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xb9552b0a matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x41ad3c57 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x73ddff96 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x78e6c28d matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xd0f054b4 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xf04a9822 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0xf0d37466 mb862xxfb_init_accel +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x09ada4d7 w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x25f4d6d6 w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x845531d0 w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xfb0d579e w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x26225b82 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x67b37080 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x079f7fe2 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x9416e953 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x2cb4cffc w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0xba90c91e w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0xbe25cea6 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0xf93f6d40 w1_remove_master_device +EXPORT_SYMBOL fs/configfs/configfs 0x1ef825ae config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0x27b4f934 config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x4e0ecf10 config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x6ec83fb6 configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x77dd409e config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x8552af48 config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0x922feafb config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0xc94a8a0d configfs_unregister_default_group +EXPORT_SYMBOL fs/configfs/configfs 0xcd9b1c0d configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0xd16dc93b configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0xd8bf5e79 configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0xe84e3fed configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0xf7dc23d8 configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0xf96b6e6f configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0xfa57b204 config_item_put +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x2cc925e0 ore_create +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x4856c4a0 ore_read +EXPORT_SYMBOL fs/exofs/libore 0x5000b0c5 ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0x67ae5e32 ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0x8a098bd3 ore_write +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xb1522d93 ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0xb90bd1ff ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0xd5e629a2 ore_remove +EXPORT_SYMBOL fs/exofs/libore 0xe69cd729 extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0xf66e4974 ore_get_rw_state +EXPORT_SYMBOL fs/fscache/fscache 0x070dddfd __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x0c498ea8 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x0ecdca9b __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x11831941 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x1447e843 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x2b6f409a __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0x3232df79 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x3f8fa90a __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x458427fc fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x503bb974 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x53f6437a fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x690bab17 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x6dac81c9 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x7b6c4c44 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x81498834 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x841510b7 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x90ad6122 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x9a42c56c __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x9f68977b fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0xa13dc31e __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0xa217e389 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xa477ad4a __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0xaef627f2 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xaf158a42 fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0xb658be48 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0xb6f40230 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xba03b703 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0xbcbb29cd __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0xc31c1de6 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xc419b704 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0xda1b6208 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xdabf3329 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xdca42978 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0xdce7da41 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0xe606b79b fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xe8610bc3 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0xec75adb7 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0xf1b892b5 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xf9caf751 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0xfaf55cf0 __fscache_update_cookie +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x7e511a56 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x8c74dd1d qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x9ff58bac qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xafafc732 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xe79e8b2a qtree_release_dquot +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-ccitt 0x1a703ba1 crc_ccitt +EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table +EXPORT_SYMBOL lib/crc-itu-t 0x6d356209 crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0x56329ecc crc7_be +EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd09b2cba crc8 +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c +EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed +EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of +EXPORT_SYMBOL lib/lru_cache 0x3dae6a2d lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset +EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used +EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del +EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get +EXPORT_SYMBOL lib/lru_cache 0xa25dfb25 lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create +EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set +EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find +EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put +EXPORT_SYMBOL lib/lz4/lz4_compress 0x0c222eb5 lz4_compress +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x682a23e0 lz4hc_compress +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul +EXPORT_SYMBOL net/6lowpan/6lowpan 0x6703409f lowpan_netdev_setup +EXPORT_SYMBOL net/6lowpan/6lowpan 0xad8efda5 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0xf75f661f lowpan_nhc_del +EXPORT_SYMBOL net/802/p8022 0x63732499 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0xd8118863 register_8022_client +EXPORT_SYMBOL net/802/p8023 0x141b32ad make_8023_client +EXPORT_SYMBOL net/802/p8023 0x8b373c0e destroy_8023_client +EXPORT_SYMBOL net/802/psnap 0x56ecbb82 register_snap_client +EXPORT_SYMBOL net/802/psnap 0x9f0ba4fb unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x06dcf9a2 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x075dfcb5 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x092432be p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x11fe1135 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x12405f61 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x13cf9b23 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x15204987 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x3aeaa2d6 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x3bdf0089 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x432b893f p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x43ea3a08 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x44e2ab7e p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x54b8c408 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x58814c8a v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x596de006 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x62db898b p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x640b2a1c p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x65db6f68 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x6b2f6ff5 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x6dcb9b56 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x729afe14 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x75cfe78f p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x7f9fd1c5 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x82e19459 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x82ffdbf0 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x8945fc0f p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x9345b3be p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x9934b81a p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x9b820e1e p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x9d69d19a p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xa4b0673b p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0xb0bc5265 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xba2c0084 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0xbd0e88cc p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xc1d41afd p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xd0a7965c p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd9cdebec p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xdde47042 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xde1090f8 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xee4a2c4c p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf58f70c6 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xfb642cb9 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x39638481 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x6d498eff atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xe05c72cc atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xfdc2b5fe aarp_send_ddp +EXPORT_SYMBOL net/atm/atm 0x19620422 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x48d08f1c vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x5b26d856 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x6ea553c6 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x724f513b atm_charge +EXPORT_SYMBOL net/atm/atm 0x94751304 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xa62af99e vcc_release_async +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xc74b11bb deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xcb539211 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xcb64a59d atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xe76ef328 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0xf34b63a3 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xf919c28f atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0xfac5ae25 vcc_sklist_lock +EXPORT_SYMBOL net/ax25/ax25 0x02f3e039 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x286d91f8 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x4bb9dd48 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xddb7ded2 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0xea937163 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0xec489295 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0xed802e87 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xfc659eec ax25_ip_xmit +EXPORT_SYMBOL net/bluetooth/bluetooth 0x07463dd7 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x088700e5 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0baf04b2 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0fd5fa9d hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1b12b0ad hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1f1eca51 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x272a8ff9 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2b4b8c6e __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x30d94f03 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x353f0b78 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x36ec1831 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x399c5e7f hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x473b059e bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5345ec5f l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x534971c9 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5696ea0a hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x593ba1a8 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5a48e66c bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6386f08e hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x76ae1e82 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x79e15548 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x80bb571c l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x80d304c3 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8e82e0da hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x909ddbd1 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x95fc0255 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9ae32dff bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa56e7b56 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb696bb70 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbc1bf11e bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc0839282 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc6443659 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd018dc7a bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd1888807 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xde731924 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe2b79033 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe61b9352 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeae3beea hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xef2a7fd7 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf2e48501 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf331b098 hci_unregister_cb +EXPORT_SYMBOL net/bridge/bridge 0x7f04a49c br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x35f01696 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x728de689 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xc81f23ef ebt_register_table +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info +EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x43cfb90e caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x4c1d2523 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xacf16789 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0xad3c5851 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xf27eaeb4 caif_enroll_dev +EXPORT_SYMBOL net/can/can 0x1e373eab can_send +EXPORT_SYMBOL net/can/can 0x200d73bb can_ioctl +EXPORT_SYMBOL net/can/can 0x880b3719 can_rx_unregister +EXPORT_SYMBOL net/can/can 0x9389ed4c can_proto_register +EXPORT_SYMBOL net/can/can 0xe0d6a8de can_rx_register +EXPORT_SYMBOL net/can/can 0xe7bdf467 can_proto_unregister +EXPORT_SYMBOL net/ceph/libceph 0x01203403 ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0x03e1009a ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x05aac563 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x08653c48 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0c648e2e ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x1096abe3 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x165c4376 ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0x169978b1 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x1d09ab1d osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x211dee73 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x21c60751 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x22c4e73c ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x24d897df ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x25cd096b ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x2ad91414 ceph_monc_do_get_version +EXPORT_SYMBOL net/ceph/libceph 0x2d6b88aa ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x337dfcd0 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x37815261 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3c7995d0 ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0x3c8d95cc ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x3fd49c4e ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x401a473a ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0x419cb09b ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0x420f8019 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x427eef26 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x4280dfa6 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x428484f3 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part +EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0x4496ed1e ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x457ba9b1 osd_req_op_cls_response_data +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x4a627ebd osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x4a698df1 ceph_monc_request_next_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x4cdcd8c8 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x50be44d4 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x5378a965 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5abd03a3 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x68c80c5e ceph_oloc_oid_to_pg +EXPORT_SYMBOL net/ceph/libceph 0x693f16b7 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x6956dd82 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x6a38c128 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6fcdafef ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x702f2625 ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x7211db4f ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x7347e2e6 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x77938e5a ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x78c25177 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x7c66feb6 ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0x7e8965c8 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x81f0dbb3 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x81f91acd ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x85c3c176 osd_req_op_watch_init +EXPORT_SYMBOL net/ceph/libceph 0x8acd474d ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x8bed27ec osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x8c7a33d6 ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0x8ee867c6 ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0x8efe1be8 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x914f2db2 ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x92fd8f22 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x932303fb ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x9985719c osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0x9f8688b7 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xa1861d67 ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xa240c54f osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0xa3b1aded ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0xa54b38eb ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xacc08164 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb190136f ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xb23fecf2 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xb40c6f2f ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xb42e79a1 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xb733ab2d ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0xbab1d406 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xbff0325a ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xc0db9bba ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc6cee4f2 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xc918d122 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xc9441cb0 ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0xc966708b ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xcff6fd9f osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd7acd83f ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xda8e5975 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xdd43e1fb ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0xe1d1c47e ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xe3b042ca ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xecb55c8f __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xf1800993 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xf35cb4d9 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xfd62d3c9 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xfe2bf57c ceph_msg_data_add_bio +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x36bfd088 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x50c94942 dccp_syn_ack_timeout +EXPORT_SYMBOL net/ieee802154/ieee802154 0x281a1969 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x505accf6 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x904231d4 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xa698401a wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0xb2e195d1 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0xe553eacb wpan_phy_find +EXPORT_SYMBOL net/ipv4/fou 0x3106aeb4 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x57557ca0 fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xd0750778 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0xe81594e3 gue_build_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x4fe0392c ip_tunnel_dst_reset_all +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x529efaa0 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x89cd5c93 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xd534821b ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xee9fcdcc ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xfb242c58 ip_tunnel_encap +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x4b4fd9f5 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x87ea5c4e arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xf16b99b9 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x45f6b723 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x7b478462 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xecdbcb3c ipt_unregister_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x0ad9a4fc xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0x8e57f5ec xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x48729ee1 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9f2e7d13 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe349b405 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe67f8e30 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xef3c6a23 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x494d478c ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x6b46cbb8 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xcb7e64fe ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x3324bb54 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0xc672f38c xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x2ad8cf67 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xdcd3d2ba xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x2d1fcbe1 ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x51c60cfc ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x99a93335 ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xa1927403 ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xb03c93aa ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xc8384ea4 ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xca08ca61 ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xfb8d3aaf ircomm_open +EXPORT_SYMBOL net/irda/irda 0x01590a8b irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x041570a9 irias_insert_object +EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value +EXPORT_SYMBOL net/irda/irda 0x07015ee1 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service +EXPORT_SYMBOL net/irda/irda 0x092d38f6 irlap_open +EXPORT_SYMBOL net/irda/irda 0x0e270af5 irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x15d51cac irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0x1a9f11b6 hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0x22f4efe6 irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0x2a17732a hashbin_insert +EXPORT_SYMBOL net/irda/irda 0x2ab606bf iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0x3379720b irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value +EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service +EXPORT_SYMBOL net/irda/irda 0x4ac9328b irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0x4f26320c alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0x56b99f6a hashbin_new +EXPORT_SYMBOL net/irda/irda 0x69be6b33 irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x6b7f50b3 hashbin_find +EXPORT_SYMBOL net/irda/irda 0x6dbf5f8a irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client +EXPORT_SYMBOL net/irda/irda 0x7797e138 irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client +EXPORT_SYMBOL net/irda/irda 0x7c2635b9 irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x8bded5a2 iriap_open +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0x94b1f906 irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0x9516f690 irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0x96fd8638 iriap_close +EXPORT_SYMBOL net/irda/irda 0xaa4cdd94 irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0xaad2d90a irias_find_object +EXPORT_SYMBOL net/irda/irda 0xaec635e4 irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0xaf552faf irlap_close +EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value +EXPORT_SYMBOL net/irda/irda 0xb9d75d30 irda_notify_init +EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute +EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request +EXPORT_SYMBOL net/irda/irda 0xc0099d7b irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0xd22e8861 irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0xd7702e20 irias_new_object +EXPORT_SYMBOL net/irda/irda 0xdcc5d5a8 irttp_data_request +EXPORT_SYMBOL net/irda/irda 0xdd988ce6 hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0xe4ac6f08 async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0xe58ba397 hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0xe7327612 irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0xe7aa593d hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0xf0f25ffe hashbin_remove +EXPORT_SYMBOL net/irda/irda 0xf1d817c4 irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0xf2b37dee async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0xfc518aa7 irttp_dup +EXPORT_SYMBOL net/l2tp/l2tp_core 0x59e01660 l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0x340a707a l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x06793aaa lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x0c21220f lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x55a4b17c lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x9c68f223 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0xc1ea34f5 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xcd471314 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0xdb1ba155 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xf38b87b0 lapb_unregister +EXPORT_SYMBOL net/llc/llc 0x17ef4b52 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x5d4500d4 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x9816c71a llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x985bbf87 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0xb0319dff llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xbcde2313 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0xbff90337 llc_set_station_handler +EXPORT_SYMBOL net/mac80211/mac80211 0x001cc872 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x035b0250 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x06908d1f ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x0809945c ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x0bd609f2 ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x0d776352 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x14f6dab2 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x18b71484 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x1d6c5ff1 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x1e8ccef0 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x1fbd523e ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x2431298a ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x25dd4850 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x28e5d7e2 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x30c83f92 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x333a161d ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x3753d257 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x3a157da8 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x3b32f65c ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x404c6c71 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x419c0202 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x47f736cf ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x4c2b011a ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x5298c4fb ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x55f97e4f ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x5ee69ecf rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0x6104381e ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x6231910c ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x625e7477 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x64115afa ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x66c3b857 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x701a5f00 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x773d9ad1 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x785550dd ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x791a8422 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x7db92782 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x7e98a691 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x85096f68 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x8650e731 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x86af62f2 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x87a8abe5 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x87b24a4a ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x8e5fee67 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x8e6f30c6 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x8ea366d9 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x8f08f192 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x90a6799b ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x955ff08e ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x96140dd1 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x99be41d4 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x9a6302aa ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x9c616302 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x9e63e94a ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xa134e9bb ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xa6bb9fc4 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xa7e3ec24 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xaa582476 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0xaac21de0 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xabe3fb08 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0xad62debd ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xae106eb4 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xaffc09ca ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xb21e798a ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xb472dbbd ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xb64af6dd ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0xb71f11d0 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xbc5a0475 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0xbe72493b __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xc508dbe6 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xc7b65324 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xcaeb18b6 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xd0f08a2b wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xd30af2a8 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xd85f560e ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xe2e812d0 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xe8f9bb51 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xeed3569b ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xefd4d478 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xf1673b19 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0xf552f893 ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0xf7c9319c ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0xf9bf8e38 ieee80211_restart_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x126412f2 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x2b8f8781 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x4c54dbad ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x4fc5a22c ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x6b21c115 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x7da8c57b ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0xd2ee1a04 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xe9d105f3 ieee802154_unregister_hw +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x10c82761 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x204f80d9 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x357b1f5c ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x37a50615 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x42018d64 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4f9bd823 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5ef2d944 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x712064d6 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x792c618d unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7a5c715c ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x848ba30b ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x899f30c9 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe2fec14c ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe787065a ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x700ea973 __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x972a9974 nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xbb1ba884 __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x70916321 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x7623388d nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x961e33a0 nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/nf_nat 0xe17c24ea __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xe7f17e09 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xe8cb9ed3 nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/x_tables 0x253e8b44 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x2f0630c1 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x3149502b xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x50e8afe5 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x52e45992 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x71ad054f xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x7888cae9 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x91abae98 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xa3ba46a6 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xdb0cae0e xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0xfe35f240 xt_find_match +EXPORT_SYMBOL net/nfc/hci/hci 0x1773c186 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x20cda224 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x3f4a26f8 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x46114fb2 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x514b4d46 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x5a9a0c51 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x5be1ed03 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x63c5ab4d nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x8a26672d nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x915836e1 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x92a3ac3b nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xa0c533d4 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xa2653756 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0xa4186418 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0xa5a6e1c3 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0xa8de0a30 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0xa9470251 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xaa902d33 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0xac99cb27 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xea292b87 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0xf308c3a3 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/nci/nci 0x00fe5d65 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x033255aa nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x13f1598b nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x14857578 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x2d78622c nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x4397ef04 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x48551031 nci_get_conn_info_by_id +EXPORT_SYMBOL net/nfc/nci/nci 0x4e4de30b nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x5606fd4a nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x606336ea nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x71fe700a nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x7753dbcf nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x785c0d0f nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x7df36b5b nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x8d671e35 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0xa60d8aa3 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xa9d56e4a nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0xb6a0d25b nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xbf510fc2 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0xbf620ab7 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xd0ceae33 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xd5c7b473 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0xde2926e6 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xe173bbf4 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0xe4a1eb9f nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xe539cd05 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xe76f2f2e nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0xe9af075d nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nfc 0x05df4677 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x07ee2ca0 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x13c4c892 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x1e4de0ef nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x20c6b9fe nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x21bfeee0 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x24dafca7 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x26b45dfb nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x2ed8bec9 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x40fd7afb nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x4cbf0477 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x4e84cade nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x6747d4c8 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x75c2133f nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x7bb95aef nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x95d2fc57 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x9afcd157 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x9b0dc825 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0xa1c92737 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xa5a9a88a nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xce3e1824 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xe5c9d77d nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xea8d8624 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xf7850d1c nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc_digital 0x28d85dad nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x39c4b146 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x7e23d870 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xac7d4f8a nfc_digital_register_device +EXPORT_SYMBOL net/phonet/phonet 0x19047d3f pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x4879c7c7 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x62925657 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x6415eec6 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x7f31221c phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x89c6f513 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xd8ca0975 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xe4efe844 pn_skb_send +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x10f23baf rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x23f7a410 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x6379aced rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8d42addb rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x916aa7c7 rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x94ef092c rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x9e47187c key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xaccb1c30 rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc546e58c rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc619d46e rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xca6a6c68 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xdf426645 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe20b10ad rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe7bf3c7c rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe896e22a rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/sctp/sctp 0x058887e4 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x1b6c69a2 gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x9fcd66b0 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xef00807a gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0x2598a475 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0x76d6e6e4 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xb6a05f70 xdr_truncate_encode +EXPORT_SYMBOL net/wimax/wimax 0x1770632b wimax_rfkill +EXPORT_SYMBOL net/wimax/wimax 0xb6373097 wimax_reset +EXPORT_SYMBOL net/wireless/cfg80211 0x043e8485 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x0441103b cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x054c5580 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0b04943f ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x0b05d02d wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x0c4959ea cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x0d2dc1a2 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x0f3b5479 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x0fba07d6 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x108f83a5 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x12136d36 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x13aee0ce cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x13c0605e cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x18a37989 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x216f0ee6 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x2558ca62 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x25ca75e8 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x2bff0fa8 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x2c7a979d cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x309d0308 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x37cfd35f cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x3a3204b1 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x3cd0a72d cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x3d6c99f8 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x4155c79a cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x42e6b961 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x454e93fc ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x5075c756 regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x538f0937 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x547cecd4 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x589c178b cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x58ed9185 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x5a628d79 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x5af5be40 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x62d4b888 wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x687cd28f cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x6fa3cc1b cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x71786cb2 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x7463bb24 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x842e7ec1 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x86a186a6 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x8bfc7ebd cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x8f3ff0c5 cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x91d7a142 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x935761b2 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x93e5b348 cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x948579b6 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x9930cd04 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x9bd55917 __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x9be36c29 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x9e02a0a9 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x9e660d80 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x9f96655a cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xa1425906 ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xa1a15190 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xa78db6bf wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0xa850d7a3 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xacd5f934 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0xba3a79d1 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xbda7442c cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xc1f6b093 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xc200bf05 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xc310df6f cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc485e821 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xc56d3af2 cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xc5e89905 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xc61c0f9b cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xca76d360 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0xcab036eb cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xd3d79cab wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xd50b0a22 ieee80211_ie_split +EXPORT_SYMBOL net/wireless/cfg80211 0xd5842348 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0xd64876fd cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xd7870f73 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xdac94f37 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdf39cb81 cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0xe13d0f9e cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0xe29cd2b0 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xe430fb58 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0xe55d7114 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xebe51d7f cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xf47e7062 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xf881ad5e cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xfa3f5709 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xfc7bc6d8 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/lib80211 0x37e46be7 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x5c8b1bf6 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x69dea410 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x7326dda7 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x9b75cb09 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0xfc4aa5de lib80211_crypt_info_free +EXPORT_SYMBOL sound/ac97_bus 0x70bfa0e2 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xb79f20c8 snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x09278efd snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1859c4f2 snd_seq_kernel_client_enqueue_blocking +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x5dddaaa0 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xd0a8d929 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x22c5fc9a snd_seq_device_new +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x045df6a4 snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x19644b06 snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x237c480c snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x46d509d4 snd_midi_event_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x48501cc2 snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x57427cce snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x6e4581b3 snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xfdab5ab4 snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xeae81b48 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x05b98f34 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x0d3960e6 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x172e3612 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL sound/core/snd 0x1a61751c snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x1def8604 snd_register_device +EXPORT_SYMBOL sound/core/snd 0x207535ec snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x28e026d7 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0x2b85b547 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x36d025a6 snd_device_register +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x40ebf0d4 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x45132b1f snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x51d72d17 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x59993577 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x5b444c57 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x5d95ca2e snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x5f78e79a snd_info_register +EXPORT_SYMBOL sound/core/snd 0x62a2b41f snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x638e08f4 _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0x77e4fea5 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0x7add7252 snd_card_new +EXPORT_SYMBOL sound/core/snd 0x7f9baa83 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x81d53c75 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x8ab20b45 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x8da6eaba snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x93b6903e snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x986dddba snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x9d3fbec4 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x9d63da89 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x9e5bbb6b snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0x9f41ea93 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0xa19b2f87 snd_cards +EXPORT_SYMBOL sound/core/snd 0xa2d8e4b8 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xa6251602 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0xa81a0233 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xbb5e6e5c snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0xbb7f69eb snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0xc2b4a031 snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xc513c90e snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0xc6bd8b43 snd_card_free +EXPORT_SYMBOL sound/core/snd 0xc6c172f3 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0xd25dc1db snd_device_free +EXPORT_SYMBOL sound/core/snd 0xd264bd36 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0xd622896f snd_device_new +EXPORT_SYMBOL sound/core/snd 0xd88d7fb8 snd_card_register +EXPORT_SYMBOL sound/core/snd 0xe5e80e02 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0xe9f42b2d snd_component_add +EXPORT_SYMBOL sound/core/snd 0xea42d7aa snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0xef9aa6f5 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-hwdep 0x3ecf144e snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x06b310c9 snd_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x0a633941 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x0bc4896c snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x0ea8fdc0 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0x0fa5bfa7 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x213f26d1 snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0x2204b75b snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x2893a6bb snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x2c4cf06a snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0x33434298 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x346c3d23 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x34a8f5af snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x3cebeb0c snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x3d6ac53d snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x40e4e9d5 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x4e561702 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x530a5086 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x5898dcba snd_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x5b5ada79 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x5c66f3fd snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x60cd79aa snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL sound/core/snd-pcm 0x6a096259 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x6abc8c9e snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x6d0b8284 snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x6fdce13f snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x71e3579a snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x78344217 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x7e30468d snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x86540b82 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x91d2753e snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x9a474df6 snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0x9abf3f90 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x9be9f9e2 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x9ec82701 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa754e292 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0xa80d3461 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xaedf1861 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xc1554b3f snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xca96d19a snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0xcaded9b1 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0xd303ff03 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xd8deb8b1 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xd96a6441 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xdb10e823 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0xe1047cad snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xe1c274a4 snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xe5753234 snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0xf510b511 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x01dc2c0e snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x11d73c85 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2922913e snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2d8e2f8e snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2da276b0 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3634460f snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x427b7cb5 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x49f3ec2a snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x53a545ed snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5aee6360 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5dfa8dd6 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x645bb3f2 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x649c0253 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6964052f snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x69a24bcf snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7abcc6f6 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb67f285d snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd2897c2e snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe286016c snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-timer 0x01b11d28 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x285a9917 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x2bf4b193 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x4700a6e3 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x59458183 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x659cdae9 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x7c7b7ecb snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0xac8f0551 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0xcc2c94e9 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0xd0d7f69d snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0xe35b99e2 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0xea2d1817 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0xf8a5978b snd_timer_new +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xfa8a522a snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x17e78c79 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1c2188b2 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x5197aca7 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x66ed5990 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x844f2fc0 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xaf12d877 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xbd534d67 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xdec6dc65 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xfb54967f snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x121d44bd snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3a4a324c snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x50948a3d snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x63a7e41d snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6db6d2d1 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6e75becd snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x837d74fc snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8609e078 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xbaba1dca snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0b108858 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0f6b62d9 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0ff34007 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x17b4613d cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x220ccba4 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x23c0c556 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x26ce1efd avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x31e941ca amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4736c3f1 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x49a83bbe amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x618979b1 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x623a956a amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6c091624 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7139aeae cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x766c7e99 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7c4bec1e cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7e1d0233 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x800c37f2 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8eaf4b16 snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x909d2d21 amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x958afad8 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9711ab1d fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x982707b0 snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9fcf2a83 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa78a56d7 amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xab9efa08 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc1347566 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcbd0c991 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd27f8f39 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd474ac76 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf5a4ecf5 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfb1f1294 fw_iso_resources_free +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x6d5c48f1 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x9b37c2d6 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0d1572a9 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1dfa14b9 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x53174dd8 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x5ebb775a snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x6d5cc1d8 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7514922b snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x75e9949f snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xcca49ac7 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x7b7b96ab snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xb9eadd54 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xcbdf10a5 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xe38e567d snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x0a382c8d snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xe834ba97 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x1cef78f1 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x420bae57 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x51088c3d snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x5c6a040a snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x843c84be snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xe92b3022 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-i2c 0x53d958be snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0x64897953 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xb38e7885 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xba9f3907 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xe39c231a snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xfed63956 snd_i2c_device_create +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x03a4edca snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x041058c9 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x13de7ae5 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x27975cb9 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4b1df50a snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4ec1ae0e snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x62732e6a snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x73e5b5eb snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7c06f4c4 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb4028ba7 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb8a60773 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb9c8585d snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xba349dda snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcb7e3005 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf5c5acfa snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf81a66d7 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xff3e6b33 snd_ac97_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x0eb751a5 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x140136ac snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x19674e4b snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x409de96b snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4aa691b7 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x695b77e6 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x8a513e2a snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xcc0c7f2d snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf0ea5042 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x1d9878d3 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x397b2607 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xedac822f snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x14cb9e28 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x15cfc4a0 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x32c2881c oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3f110a0b oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x515d6423 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5b6b5d51 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x679c0eca oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x67bc72e5 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7f2f6d8d oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x91d66430 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb3b4b81c oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb3b879f6 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb5d167e6 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd0c0a545 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd273f56f oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd4d0699c oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xea94e6d1 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xecf45ea0 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xef8aa2d1 oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf3660e55 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf8b09490 oxygen_write_spi +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x659b7183 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x6a2db364 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x8c6465e0 snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xb08d1db3 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xbf72d191 snd_trident_start_voice +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x73f1ae21 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x8a4c40b7 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/snd-soc-core 0xe18b8502 snd_soc_alloc_ac97_codec +EXPORT_SYMBOL sound/soundcore 0x1347e769 register_sound_special +EXPORT_SYMBOL sound/soundcore 0x2c1f78ca register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x8fbe530c sound_class +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xb32a6cfa register_sound_midi +EXPORT_SYMBOL sound/soundcore 0xb7b929b5 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xd5fc4873 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x11779f20 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x1c81daa3 snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x698ef89f snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x83c42d46 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x87c9ab56 snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xd513c0fb snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/snd-util-mem 0x25d4b326 snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x4abf9f95 __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x81be962a snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x8fa5f186 __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0xda157ec1 snd_util_memhdr_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xe5301ba3 snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0xf81adc3c __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xfd2ad139 snd_util_memhdr_new +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd42a056c snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL vmlinux 0x00198002 blk_fetch_request +EXPORT_SYMBOL vmlinux 0x004ab51b tc_classify +EXPORT_SYMBOL vmlinux 0x0058f756 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x0059c7f3 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x0070cd1f queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x0085e1f1 __do_once_done +EXPORT_SYMBOL vmlinux 0x00b89f97 kern_path_create +EXPORT_SYMBOL vmlinux 0x00cc6580 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00e61772 register_netdev +EXPORT_SYMBOL vmlinux 0x00fa2149 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x0131aaf6 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x0133326f of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x016badab blk_register_region +EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer +EXPORT_SYMBOL vmlinux 0x0171d14d tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x0173e909 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x01768c34 __sb_end_write +EXPORT_SYMBOL vmlinux 0x01783e98 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x01790e94 csum_partial_copy +EXPORT_SYMBOL vmlinux 0x01856b8e input_reset_device +EXPORT_SYMBOL vmlinux 0x01975ad9 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x019927e4 blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x01ae0dc5 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x01cd2597 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x01e4f467 rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0x01f32aaf scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x0213b4f9 pnp_get_resource +EXPORT_SYMBOL vmlinux 0x0224b729 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x023998a3 cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0x0243c384 keyring_alloc +EXPORT_SYMBOL vmlinux 0x024bf827 radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x0257addd iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x02687bf4 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x02693882 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x026d23cb netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x029873f4 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x029fe114 of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a4db3b xfrm_state_update +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02b84013 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x02be3b33 nf_hook_slow +EXPORT_SYMBOL vmlinux 0x02cc30ec lease_modify +EXPORT_SYMBOL vmlinux 0x02d68fa3 param_get_short +EXPORT_SYMBOL vmlinux 0x02e5c637 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02ff3196 tcf_hash_check +EXPORT_SYMBOL vmlinux 0x03049b57 set_wb_congested +EXPORT_SYMBOL vmlinux 0x031ee4b0 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x0321ab25 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x032c162b sk_stream_error +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x0338478e uart_update_timeout +EXPORT_SYMBOL vmlinux 0x034c1104 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x03588a5c kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x035f891b down_interruptible +EXPORT_SYMBOL vmlinux 0x0360c0ef of_get_parent +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x0390d4ca mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x03ac3617 md_integrity_register +EXPORT_SYMBOL vmlinux 0x03ca6e63 devm_gpio_request +EXPORT_SYMBOL vmlinux 0x03e43963 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x03edac76 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x040d05b6 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x0428d696 pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x045e8419 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x048d16ec bio_map_kern +EXPORT_SYMBOL vmlinux 0x049d6cbd pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x04b42f6e __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x04bc7fd5 input_register_handle +EXPORT_SYMBOL vmlinux 0x04dac95d dev_err +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x0508046b inet6_bind +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x0508c7cb jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x050cdec6 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range +EXPORT_SYMBOL vmlinux 0x051e2473 flow_cache_lookup +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x052e8b07 of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x053fd287 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x055ab0e9 compat_nf_getsockopt +EXPORT_SYMBOL vmlinux 0x055c8559 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x05644d0d bio_integrity_endio +EXPORT_SYMBOL vmlinux 0x056a7ee7 blkdev_get +EXPORT_SYMBOL vmlinux 0x0575176c param_get_string +EXPORT_SYMBOL vmlinux 0x05757d3e dev_mc_add +EXPORT_SYMBOL vmlinux 0x0588fc78 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x05a5caa8 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x05b09848 kernel_listen +EXPORT_SYMBOL vmlinux 0x05ba6c9e acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0x05bf8041 lro_flush_all +EXPORT_SYMBOL vmlinux 0x05d6eaf4 vfs_setpos +EXPORT_SYMBOL vmlinux 0x061225bc tcp_child_process +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x061f4039 acpi_get_table_with_size +EXPORT_SYMBOL vmlinux 0x06201008 account_page_dirtied +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x064d62cd blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x065cbde3 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x0660d35b abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x066247dc qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x066f92bf scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x067a8424 inet_ioctl +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x068c7b31 should_remove_suid +EXPORT_SYMBOL vmlinux 0x068c876a may_umount +EXPORT_SYMBOL vmlinux 0x06911320 mmc_register_driver +EXPORT_SYMBOL vmlinux 0x06ce433e dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x06e88bb1 vga_put +EXPORT_SYMBOL vmlinux 0x06f73614 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x06fa94de i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x0707ae0a kmem_cache_free +EXPORT_SYMBOL vmlinux 0x0708740f security_d_instantiate +EXPORT_SYMBOL vmlinux 0x072b1666 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x0751fb52 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x0758d772 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x07788111 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x0779c69d acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0x078cd1d5 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x079f8a4a pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07a9ef84 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07ec2b4f inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x07fdc7cb of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x0820802d flush_old_exec +EXPORT_SYMBOL vmlinux 0x08216310 of_get_property +EXPORT_SYMBOL vmlinux 0x082a0eb6 qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x0841e623 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x0847056b ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x084fc808 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x085558b7 bio_clone_fast +EXPORT_SYMBOL vmlinux 0x085fef63 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x087945e6 acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0x088a30c8 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x089d0420 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x08d0e5a0 vc_cons +EXPORT_SYMBOL vmlinux 0x08db5210 dquot_acquire +EXPORT_SYMBOL vmlinux 0x08e273a3 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x09058f0e crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x090fe7bc netif_napi_del +EXPORT_SYMBOL vmlinux 0x0914c234 revalidate_disk +EXPORT_SYMBOL vmlinux 0x093bfc3f proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x094cca1c jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x094cdbab xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key +EXPORT_SYMBOL vmlinux 0x095983cd __secpath_destroy +EXPORT_SYMBOL vmlinux 0x095fad83 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x096655a4 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x09696626 acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x097baff7 seq_open_private +EXPORT_SYMBOL vmlinux 0x097ca606 param_ops_ullong +EXPORT_SYMBOL vmlinux 0x098431ba acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0x09866fb3 vfs_unlink +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x09952fc1 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0x09a9b948 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x09b595e1 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x09b5d7c0 input_register_handler +EXPORT_SYMBOL vmlinux 0x09c4b167 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c745bf security_path_mknod +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09d0dee8 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09db4c56 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0x09ea9873 __neigh_event_send +EXPORT_SYMBOL vmlinux 0x0a0ddd2d skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a2d7df4 d_set_d_op +EXPORT_SYMBOL vmlinux 0x0a3a98fa dput +EXPORT_SYMBOL vmlinux 0x0a54867a touch_atime +EXPORT_SYMBOL vmlinux 0x0a57863e cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x0a5d3524 of_parse_phandle +EXPORT_SYMBOL vmlinux 0x0a62573a netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x0a6505b0 xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0x0a97451f insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x0aa055d9 generic_write_end +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aacfd46 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ae060ca __neigh_create +EXPORT_SYMBOL vmlinux 0x0ae6be6a jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x0aea8ba9 sock_efree +EXPORT_SYMBOL vmlinux 0x0af180fd __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x0af2fcb4 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b20afce scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x0b34af6d seq_release +EXPORT_SYMBOL vmlinux 0x0b43d995 __bread_gfp +EXPORT_SYMBOL vmlinux 0x0b4a4ed3 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x0b510283 rtnl_notify +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b70876e nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b891ec0 md_cluster_mod +EXPORT_SYMBOL vmlinux 0x0b89cfab uart_register_driver +EXPORT_SYMBOL vmlinux 0x0b8e6da1 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x0b973901 scsi_device_get +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bbd0408 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0c05e1c2 kernel_write +EXPORT_SYMBOL vmlinux 0x0c2020be netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x0c21d019 flush_delayed_work +EXPORT_SYMBOL vmlinux 0x0c31f7cc __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x0c33f003 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x0c3a757c vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x0c403a35 dev_printk +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c4c6479 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c6586e4 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c6fa9d5 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x0c782d44 input_release_device +EXPORT_SYMBOL vmlinux 0x0c968ae4 from_kuid_munged +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0ca1b03d request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x0ca7b7a8 acpi_check_region +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cb166c5 get_task_exe_file +EXPORT_SYMBOL vmlinux 0x0cc62817 gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x0cd3dc7f netlink_capable +EXPORT_SYMBOL vmlinux 0x0cdf8f37 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x0ce05506 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x0ceb32fd dev_change_carrier +EXPORT_SYMBOL vmlinux 0x0cefd735 __module_get +EXPORT_SYMBOL vmlinux 0x0cfeb30d pci_iomap +EXPORT_SYMBOL vmlinux 0x0d0445c4 ppp_channel_index +EXPORT_SYMBOL vmlinux 0x0d39d375 register_qdisc +EXPORT_SYMBOL vmlinux 0x0d3dda14 acpi_get_type +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d80efb5 acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0da7f832 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0x0dcc4361 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x0ddf8ead tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x0e05daf8 fddi_change_mtu +EXPORT_SYMBOL vmlinux 0x0e0977e2 sk_alloc +EXPORT_SYMBOL vmlinux 0x0e28d9a0 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x0e2d5906 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x0e3034b6 find_vma +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e754950 from_kuid +EXPORT_SYMBOL vmlinux 0x0e77a781 lockref_put_return +EXPORT_SYMBOL vmlinux 0x0e8c4e9a filemap_fault +EXPORT_SYMBOL vmlinux 0x0e9a8aa9 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x0ea124de udp_ioctl +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ecfe6c5 generic_show_options +EXPORT_SYMBOL vmlinux 0x0ed62261 follow_down_one +EXPORT_SYMBOL vmlinux 0x0ed8cc7b acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x0eedb3b1 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f08062f blk_stop_queue +EXPORT_SYMBOL vmlinux 0x0f1732cc jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x0f1a970a free_page_put_link +EXPORT_SYMBOL vmlinux 0x0f2c820f truncate_setsize +EXPORT_SYMBOL vmlinux 0x0f3b43a9 console_start +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f508f7e do_truncate +EXPORT_SYMBOL vmlinux 0x0f546391 bh_submit_read +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f826382 dev_load +EXPORT_SYMBOL vmlinux 0x0f89ad81 put_cmsg +EXPORT_SYMBOL vmlinux 0x0f917480 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fbf4924 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x0fc2d2df __free_pages +EXPORT_SYMBOL vmlinux 0x0fc480b2 sock_no_getname +EXPORT_SYMBOL vmlinux 0x0fccc98c ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress +EXPORT_SYMBOL vmlinux 0x0ff2c759 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x1029c920 posix_acl_valid +EXPORT_SYMBOL vmlinux 0x103386f1 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x10517247 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x105d535c phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x1070ac15 param_ops_long +EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x108619aa vm_insert_pfn +EXPORT_SYMBOL vmlinux 0x10950ee1 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x10a0d18b tso_build_hdr +EXPORT_SYMBOL vmlinux 0x10a126f1 bio_flush_dcache_pages +EXPORT_SYMBOL vmlinux 0x10a5d326 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x10ad9d98 d_alloc_name +EXPORT_SYMBOL vmlinux 0x10ae4be3 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x10bac640 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x10bcf03c dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x10c28b53 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x10e2d2b9 dev_uc_init +EXPORT_SYMBOL vmlinux 0x10e488aa skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x10f03591 register_console +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x110d8153 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x1147fc36 sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x1151f460 vme_bus_num +EXPORT_SYMBOL vmlinux 0x1153b0f4 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0x1154b03c of_get_next_parent +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x11797fa8 blk_requeue_request +EXPORT_SYMBOL vmlinux 0x11987b1c xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x11c68d61 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x11d151b0 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x11e3aa46 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x12184756 complete_request_key +EXPORT_SYMBOL vmlinux 0x1224161e i2c_register_driver +EXPORT_SYMBOL vmlinux 0x123f82f3 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x1251c439 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x1263a626 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x126ff9ad find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12bf2e88 sock_create_kern +EXPORT_SYMBOL vmlinux 0x12c34130 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x12c4e166 devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0x12ccd0e4 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x12d01360 misc_deregister +EXPORT_SYMBOL vmlinux 0x12de74d1 pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0x12df67d7 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x12dfeb12 vprintk_emit +EXPORT_SYMBOL vmlinux 0x12f7d0aa mdiobus_free +EXPORT_SYMBOL vmlinux 0x1305d532 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x132eaf3b twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc +EXPORT_SYMBOL vmlinux 0x133c7311 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x13430c18 bdget +EXPORT_SYMBOL vmlinux 0x1351877c netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x135d9806 ipv4_specific +EXPORT_SYMBOL vmlinux 0x138130a7 vme_irq_generate +EXPORT_SYMBOL vmlinux 0x13a8fa48 lookup_bdev +EXPORT_SYMBOL vmlinux 0x13b46454 udp_add_offload +EXPORT_SYMBOL vmlinux 0x13ba3df9 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x13cdee1c framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13dabf77 clear_nlink +EXPORT_SYMBOL vmlinux 0x13ed2fc6 nvm_register_mgr +EXPORT_SYMBOL vmlinux 0x13efc3af mmc_fixup_device +EXPORT_SYMBOL vmlinux 0x13fe4af7 tcp_proto_cgroup +EXPORT_SYMBOL vmlinux 0x14100f8c kobject_add +EXPORT_SYMBOL vmlinux 0x1414c17a dqput +EXPORT_SYMBOL vmlinux 0x14195b17 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x144830f4 generic_removexattr +EXPORT_SYMBOL vmlinux 0x1453ba20 cont_write_begin +EXPORT_SYMBOL vmlinux 0x1459e85b gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x14ba7583 vme_irq_free +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14f32ffc key_invalidate +EXPORT_SYMBOL vmlinux 0x150665b2 set_binfmt +EXPORT_SYMBOL vmlinux 0x150c82f2 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x1520497a i2c_master_send +EXPORT_SYMBOL vmlinux 0x1523388b netdev_warn +EXPORT_SYMBOL vmlinux 0x1530720a dquot_resume +EXPORT_SYMBOL vmlinux 0x15364b63 ida_remove +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x1554a083 blkdev_fsync +EXPORT_SYMBOL vmlinux 0x1554d8d9 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x15571d5a ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x1563ae0b scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0x15894aa2 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x159ac449 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x15b630b3 qcom_scm_set_cold_boot_addr +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15c302e1 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x15c6ca59 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x15cdc4c5 dev_mc_init +EXPORT_SYMBOL vmlinux 0x15d0bb38 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x15ede059 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x15eed9bd jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x1616cb30 acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0x16266a51 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x162cb8f7 blk_finish_request +EXPORT_SYMBOL vmlinux 0x16766435 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x167c3d6d make_kuid +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x1682ea05 proc_douintvec +EXPORT_SYMBOL vmlinux 0x16b11f4e kdb_current_task +EXPORT_SYMBOL vmlinux 0x16d5d2cd cpu_all_bits +EXPORT_SYMBOL vmlinux 0x16d9bffd compat_ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x16dde15b netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16e2d2ff dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x16fc7ac0 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x170c25ee acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x170d6607 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x17171f0c __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x1732ee50 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x173afc25 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x17755207 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x178ee0d9 vm_insert_page +EXPORT_SYMBOL vmlinux 0x179034d8 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x1793f685 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x17a142df __copy_from_user +EXPORT_SYMBOL vmlinux 0x17a54753 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17baff12 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x17c1ae00 __init_rwsem +EXPORT_SYMBOL vmlinux 0x17cc1ad7 dev_get_stats +EXPORT_SYMBOL vmlinux 0x17ce7915 tcp_close +EXPORT_SYMBOL vmlinux 0x180d13f3 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x1818ddb1 skb_queue_head +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x183ad76c pci_request_regions +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x186d207e __alloc_skb +EXPORT_SYMBOL vmlinux 0x187cf587 bio_copy_kern +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x188a75bb pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x189af188 generic_permission +EXPORT_SYMBOL vmlinux 0x189d98b3 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x18adf1f1 sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0x18b48e28 __memset_io +EXPORT_SYMBOL vmlinux 0x18cda8dc inc_nlink +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18fef9cb xen_start_info +EXPORT_SYMBOL vmlinux 0x1902317b sock_no_accept +EXPORT_SYMBOL vmlinux 0x19070a79 inet_offloads +EXPORT_SYMBOL vmlinux 0x1924a454 fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0x192c40fb eth_gro_receive +EXPORT_SYMBOL vmlinux 0x1943ce34 compat_sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x1978779c dm_put_device +EXPORT_SYMBOL vmlinux 0x198ae015 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x1992d8dd tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0x1994e9a0 swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x19b8a613 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19bf12a9 bdev_read_only +EXPORT_SYMBOL vmlinux 0x19c66139 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x19c8d665 udp_set_csum +EXPORT_SYMBOL vmlinux 0x19c92189 vfs_writef +EXPORT_SYMBOL vmlinux 0x19dfbdde __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x19e0cdf2 mutex_unlock +EXPORT_SYMBOL vmlinux 0x1a450280 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x1a450a66 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a4fb35c iput +EXPORT_SYMBOL vmlinux 0x1a72b586 pnp_register_driver +EXPORT_SYMBOL vmlinux 0x1a744ac6 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x1ab06748 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0x1abb02e8 file_ns_capable +EXPORT_SYMBOL vmlinux 0x1abff136 put_page +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1acbd42e nd_device_register +EXPORT_SYMBOL vmlinux 0x1af39403 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b2d6d2c qcom_scm_cpu_power_down +EXPORT_SYMBOL vmlinux 0x1b2d727f __napi_schedule +EXPORT_SYMBOL vmlinux 0x1b44c91e tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0x1b498698 elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x1b523b25 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x1b570d23 acpi_warning +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b789da8 sock_wfree +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b9fd2fa vfs_mkdir +EXPORT_SYMBOL vmlinux 0x1ba6527f xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x1baa80dd tty_free_termios +EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer +EXPORT_SYMBOL vmlinux 0x1bc6a0c9 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x1bca2a90 prepare_to_wait +EXPORT_SYMBOL vmlinux 0x1bd09b75 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x1bd9d60f sock_no_connect +EXPORT_SYMBOL vmlinux 0x1c0a79a2 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x1c114a6a vm_event_states +EXPORT_SYMBOL vmlinux 0x1c3554aa of_get_named_gpio_flags +EXPORT_SYMBOL vmlinux 0x1c63d901 ata_dev_printk +EXPORT_SYMBOL vmlinux 0x1c7407d0 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x1c7ca0e0 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x1c854f1c tty_port_put +EXPORT_SYMBOL vmlinux 0x1c8a04b0 acpi_reset +EXPORT_SYMBOL vmlinux 0x1c95c0b7 current_in_userns +EXPORT_SYMBOL vmlinux 0x1ca40c5a tcp_prot +EXPORT_SYMBOL vmlinux 0x1ca546e2 profile_pc +EXPORT_SYMBOL vmlinux 0x1cb3f2a1 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x1ce48000 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x1d1056e5 crc32_be +EXPORT_SYMBOL vmlinux 0x1d190878 file_path +EXPORT_SYMBOL vmlinux 0x1d1c9aed get_gendisk +EXPORT_SYMBOL vmlinux 0x1d5c9743 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x1d6795ee skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x1d70db25 nf_log_unset +EXPORT_SYMBOL vmlinux 0x1d89bdac neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x1d92d898 complete_and_exit +EXPORT_SYMBOL vmlinux 0x1dbbce0c __skb_tx_hash +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dcc5a9e tcp_check_req +EXPORT_SYMBOL vmlinux 0x1dd27b8b fget +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1dda1ba9 posix_lock_file +EXPORT_SYMBOL vmlinux 0x1de0f70a pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0x1de74f72 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0x1de9c165 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x1deac342 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x1df23a12 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x1df51d4e __frontswap_store +EXPORT_SYMBOL vmlinux 0x1e0dadb6 dns_query +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e272d58 bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x1e4d0ce4 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e8c4653 bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0x1e9c7202 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea06663 _raw_write_lock +EXPORT_SYMBOL vmlinux 0x1ea0a7ab kernel_neon_begin_partial +EXPORT_SYMBOL vmlinux 0x1ea82e26 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0x1eb9a7f1 kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x1edba5f4 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x1eeb0844 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x1f0fd642 param_set_byte +EXPORT_SYMBOL vmlinux 0x1f15a2fb __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x1f6435e7 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x1f6ce67a sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x1f9764bc of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x1fad1be2 register_key_type +EXPORT_SYMBOL vmlinux 0x1fad61e1 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x1faf5aee xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fc601a2 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x1fcf4d4b _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fdc7df2 _mcount +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x1fede718 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x202eee21 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x202f1cba get_fs_type +EXPORT_SYMBOL vmlinux 0x204346af proc_dostring +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204f70b0 __napi_complete +EXPORT_SYMBOL vmlinux 0x205e7182 rwsem_wake +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x20861a13 inode_permission +EXPORT_SYMBOL vmlinux 0x208739f6 acpi_load_table +EXPORT_SYMBOL vmlinux 0x20892274 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x20906cd5 idr_destroy +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20ae26ac clk_get +EXPORT_SYMBOL vmlinux 0x20b2ad40 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x20ba1388 d_alloc +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20d12b30 tty_check_change +EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x20e668ef mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x20ffa7f6 _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0x2108a569 inet_sendpage +EXPORT_SYMBOL vmlinux 0x21157aab __sb_start_write +EXPORT_SYMBOL vmlinux 0x2119b522 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x211f68f1 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x212ee0df __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x214316b0 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x21471461 vme_slave_request +EXPORT_SYMBOL vmlinux 0x214b913f inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x218979cd napi_consume_skb +EXPORT_SYMBOL vmlinux 0x219c8acb register_sysctl +EXPORT_SYMBOL vmlinux 0x21a6ed85 dev_alert +EXPORT_SYMBOL vmlinux 0x21cad0e4 bdput +EXPORT_SYMBOL vmlinux 0x21d97420 param_get_uint +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21eae615 __mutex_init +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x2234b7ca fb_blank +EXPORT_SYMBOL vmlinux 0x2238f8c5 address_space_init_once +EXPORT_SYMBOL vmlinux 0x223973a9 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x223b44f7 tcf_em_register +EXPORT_SYMBOL vmlinux 0x224695ed pci_set_power_state +EXPORT_SYMBOL vmlinux 0x224ff4ad wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x2251bc68 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x227bae42 tcp_destroy_cgroup +EXPORT_SYMBOL vmlinux 0x22adbf55 __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x22adf114 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22b83fbf unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0x22baea3d proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x22c8f1b3 __break_lease +EXPORT_SYMBOL vmlinux 0x22e9a2dc pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0x230b5cc5 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x23266ed8 eth_header_cache +EXPORT_SYMBOL vmlinux 0x2364c326 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x23852630 iget_locked +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23b74eb0 would_dump +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23bcae7d blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x23da6fb9 bio_phys_segments +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x240bb574 fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0x241443b0 serio_reconnect +EXPORT_SYMBOL vmlinux 0x24180200 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x24213ea9 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x242a2ce2 alloc_fddidev +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x24554b35 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x24656858 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x249847e9 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x24b7ef43 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x24d1219e pcim_pin_device +EXPORT_SYMBOL vmlinux 0x24d6665e from_kgid +EXPORT_SYMBOL vmlinux 0x24f303d8 fb_class +EXPORT_SYMBOL vmlinux 0x24f7bfca shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x251156f9 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x252142d6 of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x252d902f vme_dma_request +EXPORT_SYMBOL vmlinux 0x2536277b dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x25583e23 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x255bb072 change_bit +EXPORT_SYMBOL vmlinux 0x25612ba0 twl6040_power +EXPORT_SYMBOL vmlinux 0x256a0a17 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x256cb176 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x2570e830 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x25a28d01 mem_cgroup_begin_page_stat +EXPORT_SYMBOL vmlinux 0x25a4457f devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0x25a90dab dentry_open +EXPORT_SYMBOL vmlinux 0x25b1360e input_flush_device +EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x2600882b pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x26243706 seq_path +EXPORT_SYMBOL vmlinux 0x2625aa7e devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x26301fbb padata_do_serial +EXPORT_SYMBOL vmlinux 0x263971d1 bio_clone_bioset +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x264dbf52 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux +EXPORT_SYMBOL vmlinux 0x265636b0 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x2665d53a key_create_or_update +EXPORT_SYMBOL vmlinux 0x26689b0c seq_lseek +EXPORT_SYMBOL vmlinux 0x2685421a load_nls_default +EXPORT_SYMBOL vmlinux 0x26ae3256 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x26d077ae msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x26ed2f7c elevator_alloc +EXPORT_SYMBOL vmlinux 0x27012e6c swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x2711878c pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x2724ba66 __ioremap +EXPORT_SYMBOL vmlinux 0x273a82e1 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x273ec35b phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x275e2243 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x2781763e __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x2781bfb6 get_task_io_context +EXPORT_SYMBOL vmlinux 0x27852d99 __destroy_inode +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x2787d728 key_unlink +EXPORT_SYMBOL vmlinux 0x27961538 tty_port_close +EXPORT_SYMBOL vmlinux 0x27ae7d0c ec_transaction +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27d17d90 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x27d53e5a mark_info_dirty +EXPORT_SYMBOL vmlinux 0x27d6b048 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x27e1ff9b abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0x27e507b7 write_one_page +EXPORT_SYMBOL vmlinux 0x27ec0e8d dev_open +EXPORT_SYMBOL vmlinux 0x28027fe5 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x281cd328 nf_log_register +EXPORT_SYMBOL vmlinux 0x282bbf09 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x28318305 snprintf +EXPORT_SYMBOL vmlinux 0x2857611f md_write_start +EXPORT_SYMBOL vmlinux 0x285e9f27 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x287707ee proc_symlink +EXPORT_SYMBOL vmlinux 0x2892febb block_write_full_page +EXPORT_SYMBOL vmlinux 0x289c6647 dev_uc_add +EXPORT_SYMBOL vmlinux 0x289efd1e of_device_is_available +EXPORT_SYMBOL vmlinux 0x28a2b29f radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28a8d2e2 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x28abfe6e scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x28bd7e1f mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x28bdce0d nvm_register +EXPORT_SYMBOL vmlinux 0x28d7ffea lg_local_unlock +EXPORT_SYMBOL vmlinux 0x28f0fb34 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x28fa0441 of_match_node +EXPORT_SYMBOL vmlinux 0x28fa1448 seq_release_private +EXPORT_SYMBOL vmlinux 0x29007343 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x290562fa dm_get_device +EXPORT_SYMBOL vmlinux 0x290e67d6 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0x2911c291 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x291ba05d udplite_table +EXPORT_SYMBOL vmlinux 0x29301bc0 free_task +EXPORT_SYMBOL vmlinux 0x293d6e1b nf_register_hooks +EXPORT_SYMBOL vmlinux 0x2944be03 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x2957ad54 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x29686676 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x297866d1 iunique +EXPORT_SYMBOL vmlinux 0x297898b5 simple_write_begin +EXPORT_SYMBOL vmlinux 0x29b2279e __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x29c4f403 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x2a0e2649 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x2a2bab87 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a3fc9cb netdev_alert +EXPORT_SYMBOL vmlinux 0x2a802d91 fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0x2a88a3b8 ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0x2a9aaa6e deactivate_super +EXPORT_SYMBOL vmlinux 0x2aa1ad41 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x2aa1e98c __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x2aa2bcb6 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2afaa1fc ns_capable +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b1053d9 elevator_exit +EXPORT_SYMBOL vmlinux 0x2b2174c6 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b3e1994 scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0x2b9737a9 d_path +EXPORT_SYMBOL vmlinux 0x2b988723 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x2b9a217f default_llseek +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2ba8288e noop_qdisc +EXPORT_SYMBOL vmlinux 0x2bb55d6e acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x2bbc954a bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x2bd143b6 vme_register_driver +EXPORT_SYMBOL vmlinux 0x2bfbab10 __memmove +EXPORT_SYMBOL vmlinux 0x2bfeb410 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x2c013c1a __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x2c0ebcb9 __inode_permission +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c334b08 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x2c3d2c09 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x2c4ccd00 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x2c75332c get_disk +EXPORT_SYMBOL vmlinux 0x2c784d16 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x2c7bc4aa blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x2c84f8f2 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x2c8d427e devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0x2c96ce78 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x2cac5530 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x2cb9b73a seq_putc +EXPORT_SYMBOL vmlinux 0x2cbab359 scsi_unregister +EXPORT_SYMBOL vmlinux 0x2cce48b3 elevator_init +EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x2cf8d489 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x2cfdff87 seq_write +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d358888 blk_make_request +EXPORT_SYMBOL vmlinux 0x2d4008be __ip_dev_find +EXPORT_SYMBOL vmlinux 0x2d45e2b2 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x2d5e1c76 mpage_writepage +EXPORT_SYMBOL vmlinux 0x2d658a12 blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x2d699e6b get_tz_trend +EXPORT_SYMBOL vmlinux 0x2d71a8ce debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x2d76f925 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x2d872e7b netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x2d991d22 reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0x2da7a895 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x2db1e0c6 dql_init +EXPORT_SYMBOL vmlinux 0x2dc7d02c dmam_pool_create +EXPORT_SYMBOL vmlinux 0x2dd0ea0a page_cache_next_hole +EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink +EXPORT_SYMBOL vmlinux 0x2ddd0658 do_splice_direct +EXPORT_SYMBOL vmlinux 0x2de1327b bit_waitqueue +EXPORT_SYMBOL vmlinux 0x2de8e491 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x2dedc4c2 acpi_format_exception +EXPORT_SYMBOL vmlinux 0x2dee212d blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x2df720a0 devm_gpiod_put +EXPORT_SYMBOL vmlinux 0x2e0d2f7f queue_work_on +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e25b0e2 scsi_register_interface +EXPORT_SYMBOL vmlinux 0x2e25de76 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x2e2a966e padata_start +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e4a8138 sk_wait_data +EXPORT_SYMBOL vmlinux 0x2e593a27 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0x2e6628eb xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x2e7922f0 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x2e7be112 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0x2e7de757 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x2e86025b dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x2ea4c1c9 lg_global_unlock +EXPORT_SYMBOL vmlinux 0x2eb2e051 dm_io +EXPORT_SYMBOL vmlinux 0x2ec8d798 build_skb +EXPORT_SYMBOL vmlinux 0x2ecbce17 of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0x2ed22486 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x2ed64963 mpage_writepages +EXPORT_SYMBOL vmlinux 0x2eeb06e9 input_inject_event +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2ef985dc abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0x2f031697 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource +EXPORT_SYMBOL vmlinux 0x2f10bffc skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x2f3857e2 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x2f461948 netif_rx +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f4adc41 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x2f69bd0e nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0x2f7c5100 vfs_writev +EXPORT_SYMBOL vmlinux 0x2f9cf162 devfreq_add_device +EXPORT_SYMBOL vmlinux 0x2fa47374 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x2fb26a40 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fba07c9 scsi_print_result +EXPORT_SYMBOL vmlinux 0x2fbb815d tcf_hash_create +EXPORT_SYMBOL vmlinux 0x2fbc53b9 cdev_init +EXPORT_SYMBOL vmlinux 0x2fbd4046 phy_stop +EXPORT_SYMBOL vmlinux 0x2fc7db24 netdev_err +EXPORT_SYMBOL vmlinux 0x2fdc8b1b sk_free +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2ff063b5 acpi_get_name +EXPORT_SYMBOL vmlinux 0x300461bb scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x301a9788 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x301add7d udp_prot +EXPORT_SYMBOL vmlinux 0x3022e627 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x302b0557 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x30400a1c kobject_del +EXPORT_SYMBOL vmlinux 0x304cb22f sk_mc_loop +EXPORT_SYMBOL vmlinux 0x304ec72b _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x305cec12 _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x307cf82e pci_dev_get +EXPORT_SYMBOL vmlinux 0x309270b7 dev_addr_init +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a18299 search_binary_handler +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30ac9cf7 napi_complete_done +EXPORT_SYMBOL vmlinux 0x30b1a97a proc_set_size +EXPORT_SYMBOL vmlinux 0x30c91128 mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0x30e2bf7f mdiobus_scan +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310f02ec memremap +EXPORT_SYMBOL vmlinux 0x310fb90c memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x312930ec inet_accept +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x3148b49a security_path_chown +EXPORT_SYMBOL vmlinux 0x315d04bf kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x315d66f0 inode_change_ok +EXPORT_SYMBOL vmlinux 0x31711ec6 bio_unmap_user +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x3192d28a generic_start_io_acct +EXPORT_SYMBOL vmlinux 0x319d2aad netlink_unicast +EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available +EXPORT_SYMBOL vmlinux 0x31a6e091 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x31b3ab9c mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0x31c13372 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x31c7b37a empty_aops +EXPORT_SYMBOL vmlinux 0x31cf8771 posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0x31e1181a blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x31ecd408 param_set_ulong +EXPORT_SYMBOL vmlinux 0x31f4261b tcp_read_sock +EXPORT_SYMBOL vmlinux 0x32002aeb vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x3209cc37 clkdev_alloc +EXPORT_SYMBOL vmlinux 0x320fdc35 commit_creds +EXPORT_SYMBOL vmlinux 0x3211724f scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x3236c3f4 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x324b3877 up +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x3258b116 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x3258e7d6 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x32d43cc7 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x33332aa5 inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0x333cb37c __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x3344e7df vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x33465b74 softnet_data +EXPORT_SYMBOL vmlinux 0x3350d369 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x336eb716 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x33778321 bio_add_page +EXPORT_SYMBOL vmlinux 0x33ac5616 mmc_put_card +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33f52656 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x34025654 blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0x341bdb4f handle_edge_irq +EXPORT_SYMBOL vmlinux 0x3420fbe8 iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0x34477055 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x3459c30e dump_skip +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34bebaa9 locks_mandatory_area +EXPORT_SYMBOL vmlinux 0x34c16168 of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0x34c1b9a8 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x34c60d31 skb_find_text +EXPORT_SYMBOL vmlinux 0x34cb61b2 loop_backing_file +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x352014ee serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x353e21e3 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x3540a469 pci_iomap_range +EXPORT_SYMBOL vmlinux 0x3541b26e generic_file_mmap +EXPORT_SYMBOL vmlinux 0x35423d51 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x35975647 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x35a69dc2 of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35aa6fbe __getblk_slow +EXPORT_SYMBOL vmlinux 0x35f6f906 sg_miter_start +EXPORT_SYMBOL vmlinux 0x35f917c6 pid_task +EXPORT_SYMBOL vmlinux 0x36008157 padata_add_cpu +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x360f8f8a __cond_resched_lock +EXPORT_SYMBOL vmlinux 0x360ff19f down +EXPORT_SYMBOL vmlinux 0x3629f77a nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x362c2cda xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x3637e777 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x365c3e95 ll_rw_block +EXPORT_SYMBOL vmlinux 0x366cc73c unlock_rename +EXPORT_SYMBOL vmlinux 0x369e1115 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x36a3b9ef pagecache_write_end +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36d005e8 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x36f272a1 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x370f9850 efi +EXPORT_SYMBOL vmlinux 0x371549e4 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x376783d1 ps2_init +EXPORT_SYMBOL vmlinux 0x376c60d8 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x376d3bd5 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x378b623b rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x37acaee7 generic_setlease +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37b1b1ae mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37ec9e28 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x37efe3f3 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x37fb5941 dump_truncate +EXPORT_SYMBOL vmlinux 0x3806d8bf ps2_handle_response +EXPORT_SYMBOL vmlinux 0x380ee87a abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x381cce9c console_stop +EXPORT_SYMBOL vmlinux 0x3821b354 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x3832e2e2 ata_port_printk +EXPORT_SYMBOL vmlinux 0x38538a67 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x385600a2 genlmsg_put +EXPORT_SYMBOL vmlinux 0x3860621b phy_start_aneg +EXPORT_SYMBOL vmlinux 0x386fda4e param_set_int +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x38892944 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x3889fe45 proc_create_data +EXPORT_SYMBOL vmlinux 0x388f6574 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x38986e93 of_platform_device_create +EXPORT_SYMBOL vmlinux 0x38a331ad ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x38a6b158 phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x390447a8 param_ops_uint +EXPORT_SYMBOL vmlinux 0x391ff865 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393a5ead scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x393d4de9 crc32_le +EXPORT_SYMBOL vmlinux 0x3940f028 inet_put_port +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x39683712 is_bad_inode +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39c9e9b6 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x39d95e45 sget +EXPORT_SYMBOL vmlinux 0x39de2aa9 is_nd_btt +EXPORT_SYMBOL vmlinux 0x39e943d6 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x39eb2ee1 misc_register +EXPORT_SYMBOL vmlinux 0x3a11ee2f redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x3a16030d vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x3a2ac330 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x3a2fe795 of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x3a31a3ab nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x3a583a68 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x3a612316 up_write +EXPORT_SYMBOL vmlinux 0x3a6681e3 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x3a6abd35 iget_failed +EXPORT_SYMBOL vmlinux 0x3a6e66c5 ppp_input_error +EXPORT_SYMBOL vmlinux 0x3a734858 of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0x3a8545df inet6_ioctl +EXPORT_SYMBOL vmlinux 0x3a87d50f lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3ab41b25 __copy_in_user +EXPORT_SYMBOL vmlinux 0x3af47da9 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x3b0d2948 page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0x3b26bd23 __dax_fault +EXPORT_SYMBOL vmlinux 0x3b2a0f00 km_policy_expired +EXPORT_SYMBOL vmlinux 0x3b300948 percpu_counter_set +EXPORT_SYMBOL vmlinux 0x3b397fc3 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x3b39b9ec gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6d2d5b xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x3b7959e5 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x3b7aa2f4 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x3b90439f locks_remove_posix +EXPORT_SYMBOL vmlinux 0x3b99aad3 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x3bd32936 current_fs_time +EXPORT_SYMBOL vmlinux 0x3bf092c6 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x3c090872 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x3c15deb8 sk_receive_skb +EXPORT_SYMBOL vmlinux 0x3c2781ae inode_add_bytes +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c483012 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x3c549b21 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x3c79801b block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x3c7a852e netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3cdf5e60 dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3ceb6f4a blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x3cf1dae2 path_is_under +EXPORT_SYMBOL vmlinux 0x3cf453c0 kobject_put +EXPORT_SYMBOL vmlinux 0x3cf6ae7b rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x3cfae893 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x3cffe2d9 tty_mutex +EXPORT_SYMBOL vmlinux 0x3d04c042 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x3d05281f pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x3d093081 __percpu_counter_add +EXPORT_SYMBOL vmlinux 0x3d1d1976 kernel_sendpage +EXPORT_SYMBOL vmlinux 0x3d1e59c9 devm_gpio_free +EXPORT_SYMBOL vmlinux 0x3d1fa6f0 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x3d216c52 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x3d2fbad1 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x3d43ea1a xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x3d5f7194 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x3d95020f udp_proc_register +EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page +EXPORT_SYMBOL vmlinux 0x3da6f525 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x3db3e9db nd_btt_probe +EXPORT_SYMBOL vmlinux 0x3dbc52ef get_super_thawed +EXPORT_SYMBOL vmlinux 0x3dbf36c9 sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x3dc6e09a blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dd5f9b7 eth_change_mtu +EXPORT_SYMBOL vmlinux 0x3deac448 uart_suspend_port +EXPORT_SYMBOL vmlinux 0x3df986cc pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e1d3345 on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x3e32f0ae tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x3e36b63c skb_make_writable +EXPORT_SYMBOL vmlinux 0x3e46421b __scm_send +EXPORT_SYMBOL vmlinux 0x3e57ea21 inet_listen +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get +EXPORT_SYMBOL vmlinux 0x3ea8d00a of_device_register +EXPORT_SYMBOL vmlinux 0x3eed83c8 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x3eef6b45 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x3efb7e1d nf_reinject +EXPORT_SYMBOL vmlinux 0x3efea462 genl_notify +EXPORT_SYMBOL vmlinux 0x3f126281 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x3f39d96c padata_stop +EXPORT_SYMBOL vmlinux 0x3f41d2c6 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f88837d input_allocate_device +EXPORT_SYMBOL vmlinux 0x3f94dc05 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x3fd13173 skb_split +EXPORT_SYMBOL vmlinux 0x3fd395a1 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x3fe0b032 bio_chain +EXPORT_SYMBOL vmlinux 0x3fe2195e param_ops_charp +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x3fec47e4 input_free_device +EXPORT_SYMBOL vmlinux 0x40261a03 force_sig +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x405fad35 down_read_trylock +EXPORT_SYMBOL vmlinux 0x406a7a2f dev_emerg +EXPORT_SYMBOL vmlinux 0x4088e609 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40b28355 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x40bd07a6 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40c89d46 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40e6df69 __nla_reserve +EXPORT_SYMBOL vmlinux 0x4102c4ee make_bad_inode +EXPORT_SYMBOL vmlinux 0x410f4bb7 __irq_regs +EXPORT_SYMBOL vmlinux 0x411d026c __nd_driver_register +EXPORT_SYMBOL vmlinux 0x41233aa8 lock_rename +EXPORT_SYMBOL vmlinux 0x414269ed get_io_context +EXPORT_SYMBOL vmlinux 0x41456be8 __get_page_tail +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x41506ca5 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x41531b84 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x4171cb57 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x41a3fbf1 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x41a860d0 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x41ac0931 pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0x41b3c739 pcim_iomap +EXPORT_SYMBOL vmlinux 0x41baf194 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x41d7bd4e simple_transaction_release +EXPORT_SYMBOL vmlinux 0x41e828ca napi_gro_frags +EXPORT_SYMBOL vmlinux 0x41ed30cd max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x42026de8 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x42116a0f param_array_ops +EXPORT_SYMBOL vmlinux 0x42122cbf inode_init_once +EXPORT_SYMBOL vmlinux 0x42123390 find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x42350e8d ucs2_strlen +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x426a8ac5 cpu_active_mask +EXPORT_SYMBOL vmlinux 0x42780e8e textsearch_prepare +EXPORT_SYMBOL vmlinux 0x428434b4 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x42889a89 qdisc_list_add +EXPORT_SYMBOL vmlinux 0x4289324d fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x42ae5af0 dqstats +EXPORT_SYMBOL vmlinux 0x42ef087e mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x42fb8542 dma_mark_declared_memory_occupied +EXPORT_SYMBOL vmlinux 0x42ff9892 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x43080a58 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x431bb27e tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x4382ee13 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x439910e8 seq_read +EXPORT_SYMBOL vmlinux 0x439efcc7 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x43c28f02 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x440db70d nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x441e135b sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x442612dd compat_tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x442bca4e bio_copy_data +EXPORT_SYMBOL vmlinux 0x44362d99 get_cached_acl +EXPORT_SYMBOL vmlinux 0x443a4f1d phy_device_create +EXPORT_SYMBOL vmlinux 0x443aea28 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x4441b4ff netif_rx_ni +EXPORT_SYMBOL vmlinux 0x4449d9b8 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x44512f1a padata_do_parallel +EXPORT_SYMBOL vmlinux 0x44619120 find_lock_entry +EXPORT_SYMBOL vmlinux 0x4462332b kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0x44680168 mii_ethtool_gset +EXPORT_SYMBOL vmlinux 0x447d3417 inode_set_flags +EXPORT_SYMBOL vmlinux 0x44832189 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x448447ce vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x448eac3e kmemdup +EXPORT_SYMBOL vmlinux 0x4494692f get_user_pages +EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp +EXPORT_SYMBOL vmlinux 0x44a81d5f acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0x44b0a4e9 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x44bb99d5 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x44c63710 dst_discard_out +EXPORT_SYMBOL vmlinux 0x44da2b70 param_set_charp +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44f814aa __find_get_block +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x4509119c vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x4509f80e acpi_device_hid +EXPORT_SYMBOL vmlinux 0x45166994 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x452af0be tcp_parse_options +EXPORT_SYMBOL vmlinux 0x452c8389 mount_bdev +EXPORT_SYMBOL vmlinux 0x4533fbb3 of_n_size_cells +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x453e081a inet_shutdown +EXPORT_SYMBOL vmlinux 0x45520ec7 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x45832567 unlock_buffer +EXPORT_SYMBOL vmlinux 0x459478b7 input_event +EXPORT_SYMBOL vmlinux 0x4595a46d __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x45a55ec8 __iounmap +EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource +EXPORT_SYMBOL vmlinux 0x45df0dd6 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x45f1a098 of_device_alloc +EXPORT_SYMBOL vmlinux 0x45fd9191 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x46195cec param_set_bool +EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x461dded5 simple_getattr +EXPORT_SYMBOL vmlinux 0x462c660f proc_dointvec +EXPORT_SYMBOL vmlinux 0x46359720 phy_device_remove +EXPORT_SYMBOL vmlinux 0x4646a1a1 gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0x46473021 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x4651a2c1 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x465e32df tcf_hash_search +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x466af742 kill_bdev +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x4695bdfb single_release +EXPORT_SYMBOL vmlinux 0x469bb0a0 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x469f4e11 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x46c26f34 devm_request_resource +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46cfc302 dquot_transfer +EXPORT_SYMBOL vmlinux 0x46eb81e7 filemap_flush +EXPORT_SYMBOL vmlinux 0x46fa72d3 __put_cred +EXPORT_SYMBOL vmlinux 0x46fbd812 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x46ff37dc i2c_verify_client +EXPORT_SYMBOL vmlinux 0x470b530a con_is_bound +EXPORT_SYMBOL vmlinux 0x470f490a adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x4722ea66 datagram_poll +EXPORT_SYMBOL vmlinux 0x4728aa77 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x4728fe50 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x4743b306 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x4751e46e md_register_thread +EXPORT_SYMBOL vmlinux 0x475f010b acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x477beb34 devm_memunmap +EXPORT_SYMBOL vmlinux 0x478df3d4 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47a86a69 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x47a87ada remove_arg_zero +EXPORT_SYMBOL vmlinux 0x47deef86 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x47f05be9 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x47f2df4e vfs_create +EXPORT_SYMBOL vmlinux 0x47fc6aea blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x481cb9ab acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x48208c4c pnp_device_attach +EXPORT_SYMBOL vmlinux 0x4829a47e memcpy +EXPORT_SYMBOL vmlinux 0x483524ba dcache_dir_close +EXPORT_SYMBOL vmlinux 0x4839dca3 tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x48511666 keyring_search +EXPORT_SYMBOL vmlinux 0x4851dd14 fsnotify_get_group +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x485ea905 iterate_mounts +EXPORT_SYMBOL vmlinux 0x48718af4 done_path_create +EXPORT_SYMBOL vmlinux 0x488a240e inet6_getname +EXPORT_SYMBOL vmlinux 0x48a35942 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x48ac8df4 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48be0672 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x48d1aa01 up_read +EXPORT_SYMBOL vmlinux 0x48e47cfd of_get_next_child +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x490ce836 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x493d9b01 bdi_register_dev +EXPORT_SYMBOL vmlinux 0x49419641 mmc_add_host +EXPORT_SYMBOL vmlinux 0x494c48e8 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x494ecfbb __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x4955aea5 d_make_root +EXPORT_SYMBOL vmlinux 0x4956828e phy_attach +EXPORT_SYMBOL vmlinux 0x4956e60f unregister_binfmt +EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x49689bf8 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x497743c6 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x497a1d8e elv_add_request +EXPORT_SYMBOL vmlinux 0x497e2681 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x49829e9b blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x49930938 idr_replace +EXPORT_SYMBOL vmlinux 0x49931643 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x49a2fa04 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49bab933 inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0x49cec1e3 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x4a1a72bf dev_get_flags +EXPORT_SYMBOL vmlinux 0x4a2205b9 __serio_register_driver +EXPORT_SYMBOL vmlinux 0x4a3bd063 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x4a745019 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x4a85e9f6 mii_check_media +EXPORT_SYMBOL vmlinux 0x4a8929c1 down_write +EXPORT_SYMBOL vmlinux 0x4a8961f5 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x4aa8c794 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk +EXPORT_SYMBOL vmlinux 0x4ac342dd serio_rescan +EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource +EXPORT_SYMBOL vmlinux 0x4ae73f80 scmd_printk +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b22b35f mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x4b2c73e8 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x4b42e2f9 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b7de1c3 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x4b7e4e32 ps2_end_command +EXPORT_SYMBOL vmlinux 0x4b7f75a6 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x4b9a6f1d input_grab_device +EXPORT_SYMBOL vmlinux 0x4b9bf432 block_write_end +EXPORT_SYMBOL vmlinux 0x4ba2560b jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x4baf1712 qdisc_destroy +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bf89340 iov_iter_advance +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c14cd30 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x4c25b0ea pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x4c2c88d1 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf +EXPORT_SYMBOL vmlinux 0x4c58b752 nvm_submit_io +EXPORT_SYMBOL vmlinux 0x4c5a76c1 dquot_operations +EXPORT_SYMBOL vmlinux 0x4c6f9ef3 test_and_change_bit +EXPORT_SYMBOL vmlinux 0x4c74ae09 module_refcount +EXPORT_SYMBOL vmlinux 0x4ca9669f scnprintf +EXPORT_SYMBOL vmlinux 0x4cada7bd padata_remove_cpu +EXPORT_SYMBOL vmlinux 0x4cc13251 neigh_for_each +EXPORT_SYMBOL vmlinux 0x4cd07790 register_shrinker +EXPORT_SYMBOL vmlinux 0x4cd584c2 tcp_poll +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4ce736c9 __register_nls +EXPORT_SYMBOL vmlinux 0x4ce8fd5f posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x4cf9f379 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x4cfb51a2 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x4cfba808 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x4d084f86 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page +EXPORT_SYMBOL vmlinux 0x4d22a93b xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0x4d27da75 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x4d5130a2 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x4d5a0ded blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x4d748daf vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x4d76a188 param_ops_bool +EXPORT_SYMBOL vmlinux 0x4d894e11 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x4d8b3b8e free_user_ns +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9af71e simple_rmdir +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4da84d59 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x4db9835d tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x4dc491f5 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4e03ceb1 uart_match_port +EXPORT_SYMBOL vmlinux 0x4e096b59 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x4e0be919 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x4e1bba15 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x4e229d83 scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0x4e237ea7 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x4e2a32c6 nvm_erase_blk +EXPORT_SYMBOL vmlinux 0x4e2b0225 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e38a78f block_invalidatepage +EXPORT_SYMBOL vmlinux 0x4e4335de mmc_power_save_host +EXPORT_SYMBOL vmlinux 0x4e44a84c fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0x4e5717f8 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x4e6781d3 inet_getname +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6aba8e tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e72bd32 acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0x4e9dffb5 ip_fast_csum +EXPORT_SYMBOL vmlinux 0x4ea0b708 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x4ea2569d blk_init_tags +EXPORT_SYMBOL vmlinux 0x4ea4cea3 try_to_release_page +EXPORT_SYMBOL vmlinux 0x4ea84b02 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x4efad5b5 bdi_init +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f1d199d phy_resume +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f25784b blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f441a02 inet_release +EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f6c2072 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x4f74f963 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x4f783f30 acpi_read +EXPORT_SYMBOL vmlinux 0x4f7a4827 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x4f8a4481 elv_rb_del +EXPORT_SYMBOL vmlinux 0x4f8a5132 bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x4f9c36e0 of_device_unregister +EXPORT_SYMBOL vmlinux 0x4fbac036 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x4fbf8cb0 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x4fc94042 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x4fcdc4ff dquot_release +EXPORT_SYMBOL vmlinux 0x4fd9b9af __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x4feaf654 PDE_DATA +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x50271f50 page_put_link +EXPORT_SYMBOL vmlinux 0x50542d11 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x5060f6f9 dquot_initialize +EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x5085646b lock_sock_nested +EXPORT_SYMBOL vmlinux 0x5085bcb6 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x5094e57d __ps2_command +EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method +EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch +EXPORT_SYMBOL vmlinux 0x50b2372a alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x50ba769a kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x50c55c03 dev_printk_emit +EXPORT_SYMBOL vmlinux 0x50d4cdbd override_creds +EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x51110975 pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x51164ad9 cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x51174a17 inet6_offloads +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x5129ea20 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x51416774 fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0x51563e5d scm_fp_dup +EXPORT_SYMBOL vmlinux 0x515e2975 pci_bus_get +EXPORT_SYMBOL vmlinux 0x51749fc8 _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x517690a2 mmc_can_reset +EXPORT_SYMBOL vmlinux 0x51930ec4 file_update_time +EXPORT_SYMBOL vmlinux 0x51ac1bbd generic_ro_fops +EXPORT_SYMBOL vmlinux 0x51c1fcbe pci_read_vpd +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51e6dd07 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid +EXPORT_SYMBOL vmlinux 0x52013df2 fd_install +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x52049ebb nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x52095e19 acpi_get_data +EXPORT_SYMBOL vmlinux 0x52130046 acpi_check_address_range +EXPORT_SYMBOL vmlinux 0x5216e0b0 blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x52260211 blk_start_queue +EXPORT_SYMBOL vmlinux 0x522aed34 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x5239ce3b ___ratelimit +EXPORT_SYMBOL vmlinux 0x524cefe5 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x525248c0 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x525e026f acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0x52762c0f generic_listxattr +EXPORT_SYMBOL vmlinux 0x5280bd13 redraw_screen +EXPORT_SYMBOL vmlinux 0x52840a4e of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x5288ec17 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x528d92b9 fsync_bdev +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x52ba628a truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x52cb4ae2 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x52d45422 input_set_capability +EXPORT_SYMBOL vmlinux 0x52e3b397 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x52f46c09 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x530f0197 amba_request_regions +EXPORT_SYMBOL vmlinux 0x53162b21 netdev_change_features +EXPORT_SYMBOL vmlinux 0x531c828d led_set_brightness +EXPORT_SYMBOL vmlinux 0x531ff1d7 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x5337df25 vfs_rename +EXPORT_SYMBOL vmlinux 0x534d21c8 vfs_read +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x536cc847 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x5377e556 hex2bin +EXPORT_SYMBOL vmlinux 0x538660cf twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x53981748 bio_integrity_advance +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x53b7075b mii_ethtool_sset +EXPORT_SYMBOL vmlinux 0x53d03ed1 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x53d7f3cb pnp_stop_dev +EXPORT_SYMBOL vmlinux 0x53f6e7a9 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x53ff2003 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x54216812 inode_init_always +EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x543570e6 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x54399c83 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x544b0c11 acpi_lid_notifier_register +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54b3b792 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x54c192ed sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54cf4898 ip6_frag_match +EXPORT_SYMBOL vmlinux 0x54d4bded ida_init +EXPORT_SYMBOL vmlinux 0x54dbce24 phy_connect +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54fef89d gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x550a1f79 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x55107d0f unregister_qdisc +EXPORT_SYMBOL vmlinux 0x5511ff6a blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x553c61eb pci_claim_resource +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x5544c84a __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x555b70b5 of_node_to_nid +EXPORT_SYMBOL vmlinux 0x555dabc9 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x556112ae fence_signal_locked +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x55772753 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x558407eb nvm_put_blk +EXPORT_SYMBOL vmlinux 0x5584e535 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x55bf2942 input_open_device +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55efee64 compat_ip_setsockopt +EXPORT_SYMBOL vmlinux 0x55f5019b __kmalloc_node +EXPORT_SYMBOL vmlinux 0x560df0a5 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x56176859 dev_close +EXPORT_SYMBOL vmlinux 0x561b25ea pnp_possible_config +EXPORT_SYMBOL vmlinux 0x562f0f22 ida_simple_remove +EXPORT_SYMBOL vmlinux 0x56342ce1 down_timeout +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x564f4f0d phy_find_first +EXPORT_SYMBOL vmlinux 0x566e480e jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x56745399 proc_mkdir +EXPORT_SYMBOL vmlinux 0x5674cbc2 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x569b81c9 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x569be04c phy_init_eee +EXPORT_SYMBOL vmlinux 0x56a7b98e tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56daa6ad bioset_create +EXPORT_SYMBOL vmlinux 0x56e5a059 mmc_start_req +EXPORT_SYMBOL vmlinux 0x56ea2028 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x56eda255 bio_integrity_free +EXPORT_SYMBOL vmlinux 0x572d0104 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x573e5b3b dquot_alloc +EXPORT_SYMBOL vmlinux 0x573ee331 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x5747878a blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x57681532 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x57729976 path_get +EXPORT_SYMBOL vmlinux 0x577d35f3 hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x5788ff48 vme_bus_type +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x579f164a unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x57a8792d walk_stackframe +EXPORT_SYMBOL vmlinux 0x57b1c8ea proc_remove +EXPORT_SYMBOL vmlinux 0x57cb01af phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x57d608f1 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x57dd3a38 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x581bb64d lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x58604e4d alloc_iova_mem +EXPORT_SYMBOL vmlinux 0x586c6b3e inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x58ac2127 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x58ac360a key_revoke +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58c543dc generic_readlink +EXPORT_SYMBOL vmlinux 0x58de1239 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x58dfa857 fasync_helper +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58f4994a truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x5903fe1c blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0x5913897b ip_defrag +EXPORT_SYMBOL vmlinux 0x5914d567 mii_check_gmii_support +EXPORT_SYMBOL vmlinux 0x59200079 lwtunnel_output +EXPORT_SYMBOL vmlinux 0x59237842 path_nosuid +EXPORT_SYMBOL vmlinux 0x5974b86b kernel_bind +EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x59979ea6 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59d5a64a finish_open +EXPORT_SYMBOL vmlinux 0x59ec892a inet_frags_init +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a0f917a csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a9b90b0 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x5a9c9cf3 lg_lock_init +EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove +EXPORT_SYMBOL vmlinux 0x5a9fcc92 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x5aade2f5 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x5ab22c10 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x5ab506f5 da903x_query_status +EXPORT_SYMBOL vmlinux 0x5ae041fd input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x5af66df5 sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x5af7e43c pskb_expand_head +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b253638 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x5b41e85d dquot_free_inode +EXPORT_SYMBOL vmlinux 0x5b4b0078 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b64c348 input_close_device +EXPORT_SYMBOL vmlinux 0x5b86697f xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x5b9c808a acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0x5baafac2 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x5bbff954 block_truncate_page +EXPORT_SYMBOL vmlinux 0x5bc10524 printk_emit +EXPORT_SYMBOL vmlinux 0x5bc1ec96 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0x5bc2052f nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x5bdfafce pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x5bf7098d pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x5c0442fd acpi_gbl_FADT +EXPORT_SYMBOL vmlinux 0x5c4b4f41 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x5c5d75d2 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x5c7c8cc1 d_drop +EXPORT_SYMBOL vmlinux 0x5cb9864e mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x5cc89365 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0x5cc8c7c7 get_mm_exe_file +EXPORT_SYMBOL vmlinux 0x5cd885d5 _raw_spin_lock +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5d0d4922 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x5d112304 __memcpy_fromio +EXPORT_SYMBOL vmlinux 0x5d160b38 sync_blockdev +EXPORT_SYMBOL vmlinux 0x5d2422ff mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0x5d29cf3d netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x5d3670e3 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x5d36a048 arp_xmit +EXPORT_SYMBOL vmlinux 0x5d4e250d notify_change +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d703ee7 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x5d74dbcf pnp_range_reserved +EXPORT_SYMBOL vmlinux 0x5db1511b pcie_get_mps +EXPORT_SYMBOL vmlinux 0x5dbce5ba inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x5dbf732d phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x5dfa5b6d bdget_disk +EXPORT_SYMBOL vmlinux 0x5dfe4cec bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x5e1a5e22 inet6_protos +EXPORT_SYMBOL vmlinux 0x5e21f8e2 uart_resume_port +EXPORT_SYMBOL vmlinux 0x5e3268bd vga_client_register +EXPORT_SYMBOL vmlinux 0x5e34ba63 ppp_input +EXPORT_SYMBOL vmlinux 0x5e4b722c inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0x5e5da5ee dummy_dma_ops +EXPORT_SYMBOL vmlinux 0x5e61489a pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x5e64f6bb padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0x5e72ab85 phy_init_hw +EXPORT_SYMBOL vmlinux 0x5e88f791 blk_get_request +EXPORT_SYMBOL vmlinux 0x5e8fefbc param_set_ushort +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5ea79efe fence_default_wait +EXPORT_SYMBOL vmlinux 0x5eaba6db blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ece766f udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ee4d6fd pagevec_lookup +EXPORT_SYMBOL vmlinux 0x5ef0803c bd_set_size +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f00d2bc sock_from_file +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f0c3d5c nvm_end_io +EXPORT_SYMBOL vmlinux 0x5f17154a __check_sticky +EXPORT_SYMBOL vmlinux 0x5f1d1a37 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x5f2628f3 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x5f80d5ab ps2_drain +EXPORT_SYMBOL vmlinux 0x5f9ecfc2 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x5fd9b233 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5fe7184f jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x602cb0a7 nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0x602ed00d acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0x6032995e udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x6058a0c8 release_sock +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x6095ee8a find_get_entry +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x609f5b35 ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x60a4ba8c pci_disable_msi +EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x60e07a70 vfs_statfs +EXPORT_SYMBOL vmlinux 0x60e85b2d lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0x610ef0c3 blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0x6112781e pci_select_bars +EXPORT_SYMBOL vmlinux 0x61194f46 kobject_get +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x6149e19b blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x614bb773 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x61520529 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0x61640afd forget_cached_acl +EXPORT_SYMBOL vmlinux 0x6165baf6 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x617a71fb vmap +EXPORT_SYMBOL vmlinux 0x6181fded pci_match_id +EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x619547bb tcp_seq_open +EXPORT_SYMBOL vmlinux 0x6196456d tcf_register_action +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61e149d2 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x61ef6170 __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0x61f7721f kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6214f07a sock_recvmsg +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6228042b eth_type_trans +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x622ada9e __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0x62435756 serio_close +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62748e70 acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0x6276bace blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x627f188c tty_port_open +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x62cd13a6 __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0x62d77950 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x62e09753 skb_insert +EXPORT_SYMBOL vmlinux 0x62ea9088 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x62fd243e of_find_property +EXPORT_SYMBOL vmlinux 0x6312f8d8 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x63172507 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x632e3b14 dev_add_offload +EXPORT_SYMBOL vmlinux 0x63364ab8 of_node_put +EXPORT_SYMBOL vmlinux 0x6383f762 block_commit_write +EXPORT_SYMBOL vmlinux 0x63a01291 acpi_leave_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63b867c4 pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0x63bf7da5 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63d00bf2 param_get_int +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63f50663 __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0x63f65e61 __inet_hash +EXPORT_SYMBOL vmlinux 0x63fa80b9 kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x640de7d0 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x642c9fc1 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x6431a819 tty_port_init +EXPORT_SYMBOL vmlinux 0x6449fd41 acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0x64511336 copy_to_iter +EXPORT_SYMBOL vmlinux 0x645f4a2a ps2_begin_command +EXPORT_SYMBOL vmlinux 0x6460cc85 dma_common_mmap +EXPORT_SYMBOL vmlinux 0x64676dbe bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x6474618b tty_unlock +EXPORT_SYMBOL vmlinux 0x648bb6ab __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a9e33b netdev_state_change +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64d3f879 cdrom_open +EXPORT_SYMBOL vmlinux 0x64de42f0 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x64f38642 setattr_copy +EXPORT_SYMBOL vmlinux 0x64fa7693 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0x650bb597 scsi_device_put +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x6515a372 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x651910bb input_get_keycode +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x652e25e1 md_check_recovery +EXPORT_SYMBOL vmlinux 0x65345022 __wake_up +EXPORT_SYMBOL vmlinux 0x653892fe __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x653dc254 key_put +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x654bd764 of_root +EXPORT_SYMBOL vmlinux 0x655f93eb simple_fill_super +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x65817527 d_add_ci +EXPORT_SYMBOL vmlinux 0x65a07ba7 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x65aaf889 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x65c76f05 scsi_execute +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x65f1416c iterate_supers_type +EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x660d2f26 dev_add_pack +EXPORT_SYMBOL vmlinux 0x663f7cd0 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0x6650aaa9 md_write_end +EXPORT_SYMBOL vmlinux 0x66532bb1 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x66591465 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x66a34909 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x66f0349a dcache_readdir +EXPORT_SYMBOL vmlinux 0x671eb0ee devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0x67276286 gen_new_estimator +EXPORT_SYMBOL vmlinux 0x67309181 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x67454958 xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0x675229a3 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create +EXPORT_SYMBOL vmlinux 0x6782fcd0 read_dev_sector +EXPORT_SYMBOL vmlinux 0x679713c9 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x679d6c5c __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x67aa41d2 d_find_alias +EXPORT_SYMBOL vmlinux 0x67b00636 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x67b0fcda netpoll_setup +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b334ca mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67fe7903 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x680adbda gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x680beebe xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x681d8ddc processors +EXPORT_SYMBOL vmlinux 0x6824988f dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x6828d0a9 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x6834e43c devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x6835bbdf have_submounts +EXPORT_SYMBOL vmlinux 0x6859ee9b pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x687b2391 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x68812c15 phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0x68830423 reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0x68947ad8 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x68948063 tty_kref_put +EXPORT_SYMBOL vmlinux 0x689b12c3 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x68d524aa mount_single +EXPORT_SYMBOL vmlinux 0x68f278ef fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0x691001b5 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x69150785 inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0x691a2e5a get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x691ada92 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0x69287857 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0x693b99b7 pnp_is_active +EXPORT_SYMBOL vmlinux 0x693bcce5 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x6954df55 bio_split +EXPORT_SYMBOL vmlinux 0x69564440 set_nlink +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x69867882 gen_pool_create +EXPORT_SYMBOL vmlinux 0x69954beb crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69ae44fc neigh_event_ns +EXPORT_SYMBOL vmlinux 0x69e764d9 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x69f69ef0 pci_find_bus +EXPORT_SYMBOL vmlinux 0x69fbc0a2 acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0x69fe0bfe blk_mq_all_tag_busy_iter +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a403f91 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x6a57e0bf devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a60277d acpi_buffer_to_resource +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6a9de420 dev_addr_add +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6ad2066a tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x6adbc067 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6aea21e1 dentry_needs_remove_privs +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af44c9c jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x6af76595 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6b696a04 lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0x6b73ab21 kset_register +EXPORT_SYMBOL vmlinux 0x6b7e3eef page_symlink +EXPORT_SYMBOL vmlinux 0x6b8a3b0d pci_platform_rom +EXPORT_SYMBOL vmlinux 0x6b8eb6c4 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bd6a506 vfs_getxattr_alloc +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6be3b3bf end_page_writeback +EXPORT_SYMBOL vmlinux 0x6be66ede devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x6be70afe generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x6bf98745 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer +EXPORT_SYMBOL vmlinux 0x6c2cdc47 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0x6c367c20 irq_set_chip +EXPORT_SYMBOL vmlinux 0x6c392546 sock_init_data +EXPORT_SYMBOL vmlinux 0x6c3c3310 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x6c465f18 km_state_expired +EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat +EXPORT_SYMBOL vmlinux 0x6c5535b6 d_rehash +EXPORT_SYMBOL vmlinux 0x6c5d99c7 neigh_lookup +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c64ac55 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c70a3b7 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x6c77212e __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x6c7c352d mutex_trylock +EXPORT_SYMBOL vmlinux 0x6cbf8f47 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x6cd0d7d0 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x6cdba154 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x6ced5f5c nonseekable_open +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d2eabf3 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d58ca15 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x6d73018b dm_put_table_device +EXPORT_SYMBOL vmlinux 0x6d7c8688 pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0x6d8e805b simple_link +EXPORT_SYMBOL vmlinux 0x6db1b80c loop_register_transfer +EXPORT_SYMBOL vmlinux 0x6dbf3507 __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x6dd8fba2 audit_log_start +EXPORT_SYMBOL vmlinux 0x6ddefdcb phy_driver_register +EXPORT_SYMBOL vmlinux 0x6dec332b generic_setxattr +EXPORT_SYMBOL vmlinux 0x6ded9efa gnttab_alloc_pages +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6df410eb forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x6e0a129a padata_free +EXPORT_SYMBOL vmlinux 0x6e0d55fb try_module_get +EXPORT_SYMBOL vmlinux 0x6e11d676 d_walk +EXPORT_SYMBOL vmlinux 0x6e254bf7 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x6e265637 tty_name +EXPORT_SYMBOL vmlinux 0x6e2868f8 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e7b9f42 prepare_creds +EXPORT_SYMBOL vmlinux 0x6e7f0fd2 cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x6e805810 fence_init +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea76843 ida_get_new_above +EXPORT_SYMBOL vmlinux 0x6eb01263 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x6ecf85a9 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x6ecf929f dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x6efabdac phy_disconnect +EXPORT_SYMBOL vmlinux 0x6efd1518 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash +EXPORT_SYMBOL vmlinux 0x6f26cb7b idr_get_next +EXPORT_SYMBOL vmlinux 0x6f2b2dbd param_get_invbool +EXPORT_SYMBOL vmlinux 0x6f3f1952 request_key_async +EXPORT_SYMBOL vmlinux 0x6f428079 of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x6f4d81ed tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x6f5679f4 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x6f5e6ec0 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x6f5ec7ec idr_init +EXPORT_SYMBOL vmlinux 0x6f6736f4 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x6f6e24f6 dup_iter +EXPORT_SYMBOL vmlinux 0x6f86b600 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6f8e09db sock_create +EXPORT_SYMBOL vmlinux 0x6f98a140 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x6fa9f8e8 rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0x6fbc50c0 iterate_fd +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6feb2039 acpi_write +EXPORT_SYMBOL vmlinux 0x6ff89ab8 security_mmap_file +EXPORT_SYMBOL vmlinux 0x700283c5 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x70160088 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x7029de98 __page_symlink +EXPORT_SYMBOL vmlinux 0x703a203b __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x7047c251 to_nd_btt +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7067f839 __elv_add_request +EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x70b0bb78 fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0x70c51726 mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x71123e3d phy_print_status +EXPORT_SYMBOL vmlinux 0x7115fc1a __devm_release_region +EXPORT_SYMBOL vmlinux 0x71274271 param_set_uint +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x7162069a param_get_ushort +EXPORT_SYMBOL vmlinux 0x716f4477 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x7178ae96 to_ndd +EXPORT_SYMBOL vmlinux 0x717ecdae blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71a7a989 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x71b211b6 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x7226968d uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x722f2cde blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x723cdbdc single_open +EXPORT_SYMBOL vmlinux 0x72402364 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x7265ac65 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x7283b8d3 d_instantiate_unique +EXPORT_SYMBOL vmlinux 0x728a3ad4 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x728f194b vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x72a4f317 netif_device_detach +EXPORT_SYMBOL vmlinux 0x72c7c81e vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x72d545a9 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72edf28e register_netdevice +EXPORT_SYMBOL vmlinux 0x72fa4aac __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x72fd470d genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x73156ea2 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x731dba7a xen_domain_type +EXPORT_SYMBOL vmlinux 0x732f5d8c eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x7335791a mmc_can_trim +EXPORT_SYMBOL vmlinux 0x73359498 do_splice_to +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x735f6acd xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x7376a8e9 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x7378a327 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x739a604e __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x73a04d8a sock_setsockopt +EXPORT_SYMBOL vmlinux 0x73c900ec md_reload_sb +EXPORT_SYMBOL vmlinux 0x73cafb34 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x73ea4733 inet_add_offload +EXPORT_SYMBOL vmlinux 0x73eb2e45 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x73f01ac6 fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7411a885 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x741608c3 cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x742b6d83 path_noexec +EXPORT_SYMBOL vmlinux 0x74480fe0 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x747422b1 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x74a472c5 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x74b23289 param_set_invbool +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74cdf9b6 km_policy_notify +EXPORT_SYMBOL vmlinux 0x74d42d75 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74eb9142 thaw_super +EXPORT_SYMBOL vmlinux 0x752c4c86 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x752c8f9e locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x7531f190 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x7532588a alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x753c0591 mmc_get_card +EXPORT_SYMBOL vmlinux 0x75573801 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x755db024 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x7561238a dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0x7562b0f9 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x75850d01 __vmalloc +EXPORT_SYMBOL vmlinux 0x759a0bfe generic_update_time +EXPORT_SYMBOL vmlinux 0x759fb902 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x75ba2c54 msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75ce1511 iommu_get_dma_cookie +EXPORT_SYMBOL vmlinux 0x75cfa192 filemap_fdatawait +EXPORT_SYMBOL vmlinux 0x75fbdefd acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x760e9fe0 abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x761a5dc9 sk_common_release +EXPORT_SYMBOL vmlinux 0x76211c91 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x762168fb dma_find_channel +EXPORT_SYMBOL vmlinux 0x762188b8 inet_frag_find +EXPORT_SYMBOL vmlinux 0x763dc945 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x7643a36f jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x7645af6f sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764bd77c request_resource +EXPORT_SYMBOL vmlinux 0x7658d0d7 __dst_free +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x766cf794 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x767d5d4a revert_creds +EXPORT_SYMBOL vmlinux 0x767dd8fd acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0x768f3a9b nobh_writepage +EXPORT_SYMBOL vmlinux 0x769e1bce tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x76a35f54 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x76a5b343 iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0x76aa9bdb in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x76ab4033 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x76abf68b scsi_register +EXPORT_SYMBOL vmlinux 0x76cd4b59 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x76d08052 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76d7adfc seq_open +EXPORT_SYMBOL vmlinux 0x76e50ddf __ip_select_ident +EXPORT_SYMBOL vmlinux 0x76ed772b scsi_print_command +EXPORT_SYMBOL vmlinux 0x76f41530 ilookup5 +EXPORT_SYMBOL vmlinux 0x76fdb988 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x770f4bc2 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x7710cb45 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x774341f4 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir +EXPORT_SYMBOL vmlinux 0x7753ad3d devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77b30354 free_netdev +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77e1bfb8 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x77ea42a6 dm_register_target +EXPORT_SYMBOL vmlinux 0x77f53abc acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x78025ecf balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x783ba1a5 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x787a0a97 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78bcb3e1 skb_tx_error +EXPORT_SYMBOL vmlinux 0x78c19a6d mempool_resize +EXPORT_SYMBOL vmlinux 0x78d47d50 dev_warn +EXPORT_SYMBOL vmlinux 0x78dc7962 add_disk +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78eb7938 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x78f3bff1 eth_header +EXPORT_SYMBOL vmlinux 0x78f75981 submit_bh +EXPORT_SYMBOL vmlinux 0x78ffeae6 bdi_destroy +EXPORT_SYMBOL vmlinux 0x79068fda acpi_install_method +EXPORT_SYMBOL vmlinux 0x790d26de seq_file_path +EXPORT_SYMBOL vmlinux 0x792f82ff dst_destroy +EXPORT_SYMBOL vmlinux 0x793c59d6 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x793f94e6 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x7956d437 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x79575e68 devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0x79607008 init_net +EXPORT_SYMBOL vmlinux 0x7967a3c7 of_dev_get +EXPORT_SYMBOL vmlinux 0x796fc4d7 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x7978ed45 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x7985d043 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79bf5156 scsi_host_put +EXPORT_SYMBOL vmlinux 0x79f46a1a bioset_free +EXPORT_SYMBOL vmlinux 0x7a09e930 __f_setown +EXPORT_SYMBOL vmlinux 0x7a1fbaca blk_sync_queue +EXPORT_SYMBOL vmlinux 0x7a34eaee __blk_end_request_all +EXPORT_SYMBOL vmlinux 0x7a3591ec key_validate +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a548a95 node_states +EXPORT_SYMBOL vmlinux 0x7a6cdedc do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a72aa84 vga_get +EXPORT_SYMBOL vmlinux 0x7a9bf2d0 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aafab0e param_ops_ushort +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7accad01 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7b02bd0d d_invalidate +EXPORT_SYMBOL vmlinux 0x7b16235f hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b2aef6c __krealloc +EXPORT_SYMBOL vmlinux 0x7b2b0bf9 sync_inode +EXPORT_SYMBOL vmlinux 0x7b332e27 inode_init_owner +EXPORT_SYMBOL vmlinux 0x7b52b594 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x7b6646bb _raw_read_lock +EXPORT_SYMBOL vmlinux 0x7b7acab0 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x7b809578 wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x7b9094d8 module_put +EXPORT_SYMBOL vmlinux 0x7b9c304f xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x7bad7a1a acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x7bb96349 mpage_readpages +EXPORT_SYMBOL vmlinux 0x7bbb9156 sg_miter_next +EXPORT_SYMBOL vmlinux 0x7bbe4779 compat_mc_setsockopt +EXPORT_SYMBOL vmlinux 0x7bdddf30 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x7be75ffc acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0x7bf2d3e0 lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0x7bf6bc59 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c1d4500 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x7c2d098f krealloc +EXPORT_SYMBOL vmlinux 0x7c3fbf70 kfree_skb_list +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c61340c __release_region +EXPORT_SYMBOL vmlinux 0x7c74cf4c mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x7c7853a8 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x7c78f77e gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x7c8c90e0 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cb7ba56 input_register_device +EXPORT_SYMBOL vmlinux 0x7cd85ea8 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x7cde31d1 security_task_getsecid +EXPORT_SYMBOL vmlinux 0x7ce08e2d pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce83365 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7d0235c2 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d17e38d sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x7d440dfd skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d7d63df cpumask_next_and +EXPORT_SYMBOL vmlinux 0x7d8b463e inet_frag_kill +EXPORT_SYMBOL vmlinux 0x7d94f746 acpi_os_write_port +EXPORT_SYMBOL vmlinux 0x7dae5af5 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x7db329f9 do_SAK +EXPORT_SYMBOL vmlinux 0x7db4c6d8 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x7dba55da register_quota_format +EXPORT_SYMBOL vmlinux 0x7dd4ba95 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7dfa7710 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x7e01989a key_task_permission +EXPORT_SYMBOL vmlinux 0x7e0b5a09 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x7e147408 nobh_write_end +EXPORT_SYMBOL vmlinux 0x7e1b7066 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x7e21c5b6 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x7e747995 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x7e9da777 __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x7ea7c37f netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x7eaf81c7 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x7ebb5df1 bitmap_unplug +EXPORT_SYMBOL vmlinux 0x7ebd4be4 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x7ed35979 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x7edda9c7 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7ef9b4e1 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f197c5f d_genocide +EXPORT_SYMBOL vmlinux 0x7f1b184e sock_create_lite +EXPORT_SYMBOL vmlinux 0x7f1c4ed2 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f263ed9 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x7f2d40d2 rt6_lookup +EXPORT_SYMBOL vmlinux 0x7f4fbe87 md_error +EXPORT_SYMBOL vmlinux 0x7f557f78 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x7f59ffc1 vm_map_ram +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f9265f5 param_ops_string +EXPORT_SYMBOL vmlinux 0x7f9be15e migrate_page_copy +EXPORT_SYMBOL vmlinux 0x7fbb6433 netlink_set_err +EXPORT_SYMBOL vmlinux 0x7fbd10d2 radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x7fcc2af3 mmc_release_host +EXPORT_SYMBOL vmlinux 0x7fd50115 compat_tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fe38f48 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x800a948c blk_end_request_all +EXPORT_SYMBOL vmlinux 0x805e4b20 simple_follow_link +EXPORT_SYMBOL vmlinux 0x8068c15c kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x80791a8c radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0x80820566 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x8085b32c i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x80b429e7 blk_complete_request +EXPORT_SYMBOL vmlinux 0x80beac4e dev_get_by_name +EXPORT_SYMBOL vmlinux 0x80c76fa3 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80ca87e9 pci_find_capability +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80d85a46 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x80eb423b acpi_get_object_info +EXPORT_SYMBOL vmlinux 0x80f5cd14 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x81275f46 compat_sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x81376ae2 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x81472677 acpi_get_table +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x814efa30 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x814f7a1b generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x8152a402 flush_signals +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x81533edb __netif_schedule +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x81754e62 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x818253de __kfree_skb +EXPORT_SYMBOL vmlinux 0x81a7094f tty_port_close_start +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81de29fa elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x81e8ad17 sock_no_listen +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x8212721d xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0x822122aa elv_register_queue +EXPORT_SYMBOL vmlinux 0x82458f7f radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x829d3cbd inode_set_bytes +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82b37648 simple_open +EXPORT_SYMBOL vmlinux 0x82ba5bd8 set_bh_page +EXPORT_SYMBOL vmlinux 0x82c1cc20 genphy_update_link +EXPORT_SYMBOL vmlinux 0x82edddcb __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x82fd2343 blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x8306375b input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x8313e670 replace_mount_options +EXPORT_SYMBOL vmlinux 0x833ea7cc wireless_spy_update +EXPORT_SYMBOL vmlinux 0x83461af7 mii_link_ok +EXPORT_SYMBOL vmlinux 0x83474216 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x83a65a8d __d_drop +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83c1269e km_is_alive +EXPORT_SYMBOL vmlinux 0x83c43bee icmpv6_send +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83d05ea5 vc_resize +EXPORT_SYMBOL vmlinux 0x83e2d7a0 compat_ip_getsockopt +EXPORT_SYMBOL vmlinux 0x84060081 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x84271222 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x84397514 devm_free_irq +EXPORT_SYMBOL vmlinux 0x843f3da5 cfb_copyarea +EXPORT_SYMBOL vmlinux 0x8448a79e ip6_xmit +EXPORT_SYMBOL vmlinux 0x844e3767 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x846225c6 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x847d8b25 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x84873902 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x84c38a0a inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x84c82e3f inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x84cadf80 netdev_crit +EXPORT_SYMBOL vmlinux 0x84e3be99 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x85030730 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x85061b76 _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x853c3821 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x854d7bfa dev_deactivate +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x85705f4c wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x858b3fe3 free_iova_mem +EXPORT_SYMBOL vmlinux 0x85a4c911 security_path_link +EXPORT_SYMBOL vmlinux 0x85b35e34 abort_creds +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85b6aeb6 get_acl +EXPORT_SYMBOL vmlinux 0x85c5a33e __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e673c2 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x8605dbde pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x8623aeac tty_port_destroy +EXPORT_SYMBOL vmlinux 0x863ce981 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86cb2ae3 blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0x86d8572d phy_drivers_register +EXPORT_SYMBOL vmlinux 0x86deb7e3 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x86ea4d38 complete_all +EXPORT_SYMBOL vmlinux 0x86ed6f1f blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x8703851b cdev_add +EXPORT_SYMBOL vmlinux 0x870ace6c acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x8713dfa1 of_mdio_parse_addr +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x8736dc86 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x873bbed1 set_user_nice +EXPORT_SYMBOL vmlinux 0x873fade4 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x87463141 tty_vhangup +EXPORT_SYMBOL vmlinux 0x876dafc3 ec_write +EXPORT_SYMBOL vmlinux 0x87744bc1 blkdev_put +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x879651b6 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x87c3b1ad param_set_long +EXPORT_SYMBOL vmlinux 0x87d8b692 make_kprojid +EXPORT_SYMBOL vmlinux 0x87e84d1d cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x87eb69f5 irq_stat +EXPORT_SYMBOL vmlinux 0x880d5276 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x881f6358 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x883ab471 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x8845cfc0 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x884da2c1 release_firmware +EXPORT_SYMBOL vmlinux 0x88772551 compat_mc_getsockopt +EXPORT_SYMBOL vmlinux 0x8879b38f inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x887f6334 dump_page +EXPORT_SYMBOL vmlinux 0x887fa47e __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x88928cb6 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x889a35f0 mb_cache_shrink +EXPORT_SYMBOL vmlinux 0x889c757f xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x88b4e83b down_trylock +EXPORT_SYMBOL vmlinux 0x88b64b33 dma_alloc_from_coherent +EXPORT_SYMBOL vmlinux 0x88d1d196 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x88e15dd8 dquot_get_state +EXPORT_SYMBOL vmlinux 0x88e39746 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x890a6ffb of_node_get +EXPORT_SYMBOL vmlinux 0x890c30ea mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x892de3fb __nla_put +EXPORT_SYMBOL vmlinux 0x89377985 init_task +EXPORT_SYMBOL vmlinux 0x897dffe9 pci_request_region +EXPORT_SYMBOL vmlinux 0x89865f63 max8998_update_reg +EXPORT_SYMBOL vmlinux 0x898abf5a security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x8997503d lro_receive_skb +EXPORT_SYMBOL vmlinux 0x89981c8b update_region +EXPORT_SYMBOL vmlinux 0x899c6469 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89b12986 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x89b8faf1 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x89b9dc0d tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x89cecf26 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89ff9936 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x8a128602 update_devfreq +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a2549b5 locks_init_lock +EXPORT_SYMBOL vmlinux 0x8a2627b6 blk_get_queue +EXPORT_SYMBOL vmlinux 0x8a372b5d inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x8a3b34d2 put_io_context +EXPORT_SYMBOL vmlinux 0x8a48cee2 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a5ac174 pci_get_subsys +EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x8a6e6564 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x8a701eae __dquot_free_space +EXPORT_SYMBOL vmlinux 0x8a7c557f set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a80d7a5 acpi_error +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aa57c4f udp_table +EXPORT_SYMBOL vmlinux 0x8abb2201 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x8afd6af6 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x8b00bc46 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x8b25096a uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x8b2cd0af tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b47f101 skb_seq_read +EXPORT_SYMBOL vmlinux 0x8b484538 iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b7b2563 start_tty +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8baae5d8 from_kprojid +EXPORT_SYMBOL vmlinux 0x8bb3cb1e blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x8bb90980 security_path_truncate +EXPORT_SYMBOL vmlinux 0x8bbbbb44 cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x8bc5e2d2 register_gifconf +EXPORT_SYMBOL vmlinux 0x8bcac3f2 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x8bcc5b39 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x8bce2653 flow_cache_init +EXPORT_SYMBOL vmlinux 0x8bcfb90b abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0x8bd0a3fd _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x8be76dc5 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x8be96c39 page_waitqueue +EXPORT_SYMBOL vmlinux 0x8beeae72 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x8bffd200 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x8c0cc366 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x8c314c4e noop_llseek +EXPORT_SYMBOL vmlinux 0x8c31ecec pci_scan_bus +EXPORT_SYMBOL vmlinux 0x8c37170b sk_dst_check +EXPORT_SYMBOL vmlinux 0x8c463705 set_device_ro +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c63e736 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x8c77af12 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x8ca6de7f irq_to_desc +EXPORT_SYMBOL vmlinux 0x8cb021ab fput +EXPORT_SYMBOL vmlinux 0x8cc2fa05 of_gpio_simple_xlate +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8cdcdf22 no_llseek +EXPORT_SYMBOL vmlinux 0x8ce47f47 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x8cf8198a scsi_host_get +EXPORT_SYMBOL vmlinux 0x8d179528 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x8d2a030f input_set_abs_params +EXPORT_SYMBOL vmlinux 0x8d4ae15c acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d651b59 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x8d6eb673 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d7cf02e ata_link_printk +EXPORT_SYMBOL vmlinux 0x8d8b27c2 __register_chrdev +EXPORT_SYMBOL vmlinux 0x8d8d96c6 acpi_get_sleep_type_data +EXPORT_SYMBOL vmlinux 0x8d90b5b9 keyring_clear +EXPORT_SYMBOL vmlinux 0x8da1a3cb acpi_remove_interface +EXPORT_SYMBOL vmlinux 0x8dbc8375 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x8dc727b2 dev_set_group +EXPORT_SYMBOL vmlinux 0x8de2576e dmam_release_declared_memory +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8e0921dd netdev_info +EXPORT_SYMBOL vmlinux 0x8e1fea16 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x8e228ae5 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x8e40d4ad genphy_resume +EXPORT_SYMBOL vmlinux 0x8e42e9ea dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x8e44f60e scsi_init_io +EXPORT_SYMBOL vmlinux 0x8e4db788 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x8e4e545b ip_options_compile +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e79a2cf netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x8eab8752 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x8eaca4f4 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x8eb8e8e7 blk_queue_bounce +EXPORT_SYMBOL vmlinux 0x8ebaa876 lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x8ed8a9a0 lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x8eea49fa amba_device_register +EXPORT_SYMBOL vmlinux 0x8f20d534 pci_dev_put +EXPORT_SYMBOL vmlinux 0x8f2eb215 amba_find_device +EXPORT_SYMBOL vmlinux 0x8f3787be panic_notifier_list +EXPORT_SYMBOL vmlinux 0x8f3a3e77 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x8f3b8b64 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x8f572676 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x8f591440 blk_put_request +EXPORT_SYMBOL vmlinux 0x8f678b07 __stack_chk_guard +EXPORT_SYMBOL vmlinux 0x8f695ca0 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x8fce5282 fb_find_mode +EXPORT_SYMBOL vmlinux 0x8fdaaf67 unregister_nls +EXPORT_SYMBOL vmlinux 0x8fea6fb3 mntget +EXPORT_SYMBOL vmlinux 0x8ff6f386 netdev_master_upper_dev_link_private +EXPORT_SYMBOL vmlinux 0x900a09d8 audit_log +EXPORT_SYMBOL vmlinux 0x9023994e ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x9023a30a __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x902a32f1 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x9054068d scsi_print_sense +EXPORT_SYMBOL vmlinux 0x90565dd3 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x906581ec mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0x90807ad2 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x90875aa9 mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0x90970029 pci_save_state +EXPORT_SYMBOL vmlinux 0x909e346f pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x90ac3102 dev_base_lock +EXPORT_SYMBOL vmlinux 0x90ba1540 dma_pool_create +EXPORT_SYMBOL vmlinux 0x90bbe4c7 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x90c3b265 sock_edemux +EXPORT_SYMBOL vmlinux 0x90e6ec66 qdisc_list_del +EXPORT_SYMBOL vmlinux 0x90f85655 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x90f86748 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x9102bfc4 tcp_proc_register +EXPORT_SYMBOL vmlinux 0x911b6d80 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x911f4647 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x91203258 lwtunnel_input +EXPORT_SYMBOL vmlinux 0x912ff2c6 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x9136298f inet6_add_offload +EXPORT_SYMBOL vmlinux 0x913656f3 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x9137feb5 iommu_put_dma_cookie +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x9161610a of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x91817439 compat_sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x918c6374 mempool_alloc +EXPORT_SYMBOL vmlinux 0x919cb19e pci_fixup_device +EXPORT_SYMBOL vmlinux 0x91ac2f79 peernet2id_alloc +EXPORT_SYMBOL vmlinux 0x91ac822f vscnprintf +EXPORT_SYMBOL vmlinux 0x91c38477 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x91eddf22 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x92205cb6 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x923a31d8 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x9289e19c pci_release_region +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x92a117c2 alloc_pages_current +EXPORT_SYMBOL vmlinux 0x92a44a80 fence_add_callback +EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm +EXPORT_SYMBOL vmlinux 0x92de484e blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x92f5f5fd skb_pad +EXPORT_SYMBOL vmlinux 0x92f9c591 nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x92fab92b param_set_copystring +EXPORT_SYMBOL vmlinux 0x92fbf694 unlock_page +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x9308a3a9 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x9332527e elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0x934544cf ppp_unit_number +EXPORT_SYMBOL vmlinux 0x934fddad dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x93538371 lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0x9368567b scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x936b6c78 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x93836fc2 copy_from_iter +EXPORT_SYMBOL vmlinux 0x93891e7d netlink_ack +EXPORT_SYMBOL vmlinux 0x9390f226 ida_destroy +EXPORT_SYMBOL vmlinux 0x9394b285 filp_open +EXPORT_SYMBOL vmlinux 0x93a5c449 phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93d679d2 down_write_trylock +EXPORT_SYMBOL vmlinux 0x93df0922 request_firmware +EXPORT_SYMBOL vmlinux 0x93f3e52b acpi_extract_package +EXPORT_SYMBOL vmlinux 0x93f62a3b pci_enable_device +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x9450e19e fddi_type_trans +EXPORT_SYMBOL vmlinux 0x9451e6d2 generic_file_open +EXPORT_SYMBOL vmlinux 0x9456acba kmem_cache_create +EXPORT_SYMBOL vmlinux 0x94782027 mii_nway_restart +EXPORT_SYMBOL vmlinux 0x9488e728 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x948b5fb8 may_umount_tree +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x949b754f mempool_destroy +EXPORT_SYMBOL vmlinux 0x94a01d84 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x94a2d99b netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x94b88628 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x94bd0da0 __frontswap_test +EXPORT_SYMBOL vmlinux 0x94c083c2 generic_mii_ioctl +EXPORT_SYMBOL vmlinux 0x94c14c82 inet_bind +EXPORT_SYMBOL vmlinux 0x94e52301 input_set_keycode +EXPORT_SYMBOL vmlinux 0x94f7ec71 locks_free_lock +EXPORT_SYMBOL vmlinux 0x94f94c56 sk_capable +EXPORT_SYMBOL vmlinux 0x94fc00e5 dq_data_lock +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x9515abf5 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x9516c0d1 pnp_start_dev +EXPORT_SYMBOL vmlinux 0x95395301 acpi_exception +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x954d4502 __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x956cdfae vfs_mknod +EXPORT_SYMBOL vmlinux 0x956e39d1 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x956f9d18 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x9588d789 nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0x958a6c29 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x95bbeadc set_posix_acl +EXPORT_SYMBOL vmlinux 0x95e6f5e7 sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x95f23bc8 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x96220280 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x962aa11e of_get_min_tck +EXPORT_SYMBOL vmlinux 0x96318a71 stop_tty +EXPORT_SYMBOL vmlinux 0x9632199d fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x964482ad cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x96680d30 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x966bccdf smp_call_function_many +EXPORT_SYMBOL vmlinux 0x967ec1d0 set_anon_super +EXPORT_SYMBOL vmlinux 0x969b972b pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0x969cf15d sock_kfree_s +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96c0a984 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x96c46c13 __breadahead +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96cdbfed fb_set_var +EXPORT_SYMBOL vmlinux 0x96fbb19c blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x970dc69e devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x970fc182 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x97193271 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x9719558d __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x971a260a blk_queue_split +EXPORT_SYMBOL vmlinux 0x972f8928 of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x97371575 nf_log_packet +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x97651ac5 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x976fe0ba alloc_disk_node +EXPORT_SYMBOL vmlinux 0x978591b7 register_cdrom +EXPORT_SYMBOL vmlinux 0x97868aef __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97c5bd0a acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x97f52fb2 km_new_mapping +EXPORT_SYMBOL vmlinux 0x97fdbab9 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x98082893 __copy_to_user +EXPORT_SYMBOL vmlinux 0x9821ff76 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x98446ff7 ether_setup +EXPORT_SYMBOL vmlinux 0x98461957 mii_check_link +EXPORT_SYMBOL vmlinux 0x985cd241 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x985e6777 mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x98849b56 unload_nls +EXPORT_SYMBOL vmlinux 0x989b28a8 phy_start_interrupts +EXPORT_SYMBOL vmlinux 0x98b62324 __wait_on_bit +EXPORT_SYMBOL vmlinux 0x98c43561 of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x98c68c41 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen +EXPORT_SYMBOL vmlinux 0x98e1ad9c devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x98fa154d tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x99195078 vsnprintf +EXPORT_SYMBOL vmlinux 0x9922fc84 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x99335958 page_follow_link_light +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x993e7130 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x99412010 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x99441a83 read_cache_page +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99529f74 pagecache_get_page +EXPORT_SYMBOL vmlinux 0x9956fe8b request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x996b3e93 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x996c7db8 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x99896476 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x99937fd7 passthru_features_check +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99c6c3cc xen_biovec_phys_mergeable +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x99d3a43c dm_table_get_size +EXPORT_SYMBOL vmlinux 0x99db75aa generic_perform_write +EXPORT_SYMBOL vmlinux 0x9a10af71 vfs_write +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a259890 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x9a2b692c simple_setattr +EXPORT_SYMBOL vmlinux 0x9a58ce7d pci_get_device +EXPORT_SYMBOL vmlinux 0x9a7c2084 drop_nlink +EXPORT_SYMBOL vmlinux 0x9a908b80 test_and_clear_bit +EXPORT_SYMBOL vmlinux 0x9a97566a pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x9aae20d1 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x9ab02d32 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x9ac9c9e6 skb_clone +EXPORT_SYMBOL vmlinux 0x9adeaba0 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9aef7188 dcb_getapp +EXPORT_SYMBOL vmlinux 0x9b2ad4e5 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b70ae90 bdi_register_owner +EXPORT_SYMBOL vmlinux 0x9b7e3573 xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0x9b857e13 blk_start_request +EXPORT_SYMBOL vmlinux 0x9b9a691a unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9ba78fc9 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x9ba8db72 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x9bb47c75 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x9bbc1f4b scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put +EXPORT_SYMBOL vmlinux 0x9bc2e70e mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x9bc6ef31 add_wait_queue +EXPORT_SYMBOL vmlinux 0x9bc792b6 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9c1a7601 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x9c1ae76f blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x9c2f557c kfree_put_link +EXPORT_SYMBOL vmlinux 0x9c3cd0a0 simple_dname +EXPORT_SYMBOL vmlinux 0x9c480717 noop_fsync +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c5bc552 finish_wait +EXPORT_SYMBOL vmlinux 0x9c632dd6 swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0x9c76d50c sock_no_poll +EXPORT_SYMBOL vmlinux 0x9c7ac405 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x9c7e9804 copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x9c9a9092 __vfs_read +EXPORT_SYMBOL vmlinux 0x9ca1536e sk_net_capable +EXPORT_SYMBOL vmlinux 0x9ca37b63 ps2_command +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cba14cc xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0x9cbaf09d netdev_update_features +EXPORT_SYMBOL vmlinux 0x9cc33e33 send_sig +EXPORT_SYMBOL vmlinux 0x9cc9b35e kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d1386e6 set_security_override +EXPORT_SYMBOL vmlinux 0x9d1a5e3a __memcpy +EXPORT_SYMBOL vmlinux 0x9d1aa952 dev_addr_del +EXPORT_SYMBOL vmlinux 0x9d3676b7 sock_i_ino +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d6c06c1 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x9d767815 dma_release_from_coherent +EXPORT_SYMBOL vmlinux 0x9d825412 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x9d8ffca1 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x9d98e718 devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0x9da05e10 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x9dba371f follow_up +EXPORT_SYMBOL vmlinux 0x9dc7c2eb devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x9e0104b3 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x9e0176f4 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e1a32cb touch_buffer +EXPORT_SYMBOL vmlinux 0x9e25f589 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x9e2f8c90 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9e38fa25 write_cache_pages +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e73cb48 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e8953f9 pci_choose_state +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9eae3b3b skb_free_datagram +EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource +EXPORT_SYMBOL vmlinux 0x9ec25cd1 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x9eccbfa0 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x9edd107e pci_bus_type +EXPORT_SYMBOL vmlinux 0x9eebb027 block_read_full_page +EXPORT_SYMBOL vmlinux 0x9ef518e6 padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x9f11be7e down_killable +EXPORT_SYMBOL vmlinux 0x9f20b8a0 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x9f25963f mmc_can_erase +EXPORT_SYMBOL vmlinux 0x9f3d3415 elevator_change +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f4ca63a generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x9f5a6e2d tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x9f6735a7 fget_raw +EXPORT_SYMBOL vmlinux 0x9f7c1be8 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x9f948897 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x9f97e196 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fac6b12 dev_get_nest_level +EXPORT_SYMBOL vmlinux 0x9fc3a63a dm_unregister_target +EXPORT_SYMBOL vmlinux 0x9fd338a1 __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0x9fd55567 dev_trans_start +EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9ff823ee set_page_dirty +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa002db53 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xa0234f40 pci_pme_capable +EXPORT_SYMBOL vmlinux 0xa0307ef6 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04581ef migrate_page +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa05a6fe8 km_query +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa0647b31 md_update_sb +EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa0854aae dm_kobject_release +EXPORT_SYMBOL vmlinux 0xa086fd20 pcibus_to_node +EXPORT_SYMBOL vmlinux 0xa0a3c418 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0xa0af0da7 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0b6ece6 scsi_add_device +EXPORT_SYMBOL vmlinux 0xa0d6a53a mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0e11c3f migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa0ff74d6 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0xa100d1bc netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0xa1042496 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa116d50f rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa12697d3 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa1498e03 phy_detach +EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts +EXPORT_SYMBOL vmlinux 0xa16efc70 backlight_device_register +EXPORT_SYMBOL vmlinux 0xa184dc98 netdev_features_change +EXPORT_SYMBOL vmlinux 0xa1872afc filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xa18b56e1 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0xa19d537a vm_insert_mixed +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1d46941 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1f34342 generic_make_request +EXPORT_SYMBOL vmlinux 0xa202a8e5 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xa2088013 iommu_dma_init_domain +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa23afabd jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0xa23f712f bdi_register +EXPORT_SYMBOL vmlinux 0xa257f3e0 get_thermal_instance +EXPORT_SYMBOL vmlinux 0xa2702ea8 of_dev_put +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa2a335bd vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0xa2a57803 dev_uc_flush +EXPORT_SYMBOL vmlinux 0xa2ad55d2 set_cached_acl +EXPORT_SYMBOL vmlinux 0xa2b788d5 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xa2c0b6e2 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0xa2d4a483 neigh_update +EXPORT_SYMBOL vmlinux 0xa2ea220d freeze_super +EXPORT_SYMBOL vmlinux 0xa2eb25bd __block_write_begin +EXPORT_SYMBOL vmlinux 0xa2ef3e31 vme_lm_request +EXPORT_SYMBOL vmlinux 0xa2fdcb8e set_create_files_as +EXPORT_SYMBOL vmlinux 0xa3021ab6 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xa311e1c9 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa32a4989 tty_unregister_device +EXPORT_SYMBOL vmlinux 0xa339022c inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xa354e8e5 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0xa358c37e init_special_inode +EXPORT_SYMBOL vmlinux 0xa35bde3e dst_init +EXPORT_SYMBOL vmlinux 0xa3671cb0 input_unregister_device +EXPORT_SYMBOL vmlinux 0xa36c0101 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xa36d3a09 registered_fb +EXPORT_SYMBOL vmlinux 0xa37011ac filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get +EXPORT_SYMBOL vmlinux 0xa3800675 tso_count_descs +EXPORT_SYMBOL vmlinux 0xa39a0f3f netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0xa39bf40a xfrm_state_add +EXPORT_SYMBOL vmlinux 0xa3aa2d7b __sk_dst_check +EXPORT_SYMBOL vmlinux 0xa3e17f56 node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0xa3f44a80 module_layout +EXPORT_SYMBOL vmlinux 0xa40111bd load_nls +EXPORT_SYMBOL vmlinux 0xa4168b60 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xa416ee7b skb_trim +EXPORT_SYMBOL vmlinux 0xa426b5c0 fb_set_cmap +EXPORT_SYMBOL vmlinux 0xa4292f11 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xa43b01e1 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0xa44290b3 of_iomap +EXPORT_SYMBOL vmlinux 0xa44f5c24 kmalloc_caches +EXPORT_SYMBOL vmlinux 0xa4511467 crc16 +EXPORT_SYMBOL vmlinux 0xa4526dca neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xa454653a seq_hex_dump +EXPORT_SYMBOL vmlinux 0xa46c0f20 empty_zero_page +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa473398f of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0xa4812f0c dquot_disable +EXPORT_SYMBOL vmlinux 0xa49b012f n_tty_compat_ioctl_helper +EXPORT_SYMBOL vmlinux 0xa4b189ab sync_inodes_sb +EXPORT_SYMBOL vmlinux 0xa4d48b76 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xa4e3f66c security_path_unlink +EXPORT_SYMBOL vmlinux 0xa53dab6e of_mm_gpiochip_add +EXPORT_SYMBOL vmlinux 0xa547ef6f check_disk_size_change +EXPORT_SYMBOL vmlinux 0xa54b1ddd bioset_integrity_free +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa567a9c6 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0xa572179e drop_super +EXPORT_SYMBOL vmlinux 0xa5765434 rtnl_create_link +EXPORT_SYMBOL vmlinux 0xa5976124 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa59fa009 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0xa5a51eee __crc32c_le +EXPORT_SYMBOL vmlinux 0xa5dcf280 unregister_netdev +EXPORT_SYMBOL vmlinux 0xa5ed0a3f mutex_lock +EXPORT_SYMBOL vmlinux 0xa60d55af clk_register_clkdevs +EXPORT_SYMBOL vmlinux 0xa614beb1 unregister_key_type +EXPORT_SYMBOL vmlinux 0xa61570f2 user_revoke +EXPORT_SYMBOL vmlinux 0xa616e8ea serio_interrupt +EXPORT_SYMBOL vmlinux 0xa6183d9a tso_build_data +EXPORT_SYMBOL vmlinux 0xa63322c6 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember +EXPORT_SYMBOL vmlinux 0xa6488f0e vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa67ab424 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6bd63ca acpi_bios_error +EXPORT_SYMBOL vmlinux 0xa6c31b60 register_framebuffer +EXPORT_SYMBOL vmlinux 0xa6ce705f blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0xa6e79984 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0xa6ef1e1d jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa7079e35 scm_detach_fds +EXPORT_SYMBOL vmlinux 0xa72a0f5b nr_online_nodes +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa7373dea dmam_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0xa739e139 blk_init_queue +EXPORT_SYMBOL vmlinux 0xa751e4ec security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xa7542043 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xa75c80a6 vfs_getattr +EXPORT_SYMBOL vmlinux 0xa75ca8a2 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xa761b513 simple_transaction_set +EXPORT_SYMBOL vmlinux 0xa78df429 param_get_bool +EXPORT_SYMBOL vmlinux 0xa7a71341 file_remove_privs +EXPORT_SYMBOL vmlinux 0xa7ae0fad remap_pfn_range +EXPORT_SYMBOL vmlinux 0xa7bcaa6a xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0xa7be526f _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xa7da41c7 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xa7edb25c blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xa7ee4348 bio_advance +EXPORT_SYMBOL vmlinux 0xa7f67a49 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0xa827a0f6 simple_unlink +EXPORT_SYMBOL vmlinux 0xa8390889 follow_pfn +EXPORT_SYMBOL vmlinux 0xa840df33 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa8539120 vlan_vid_del +EXPORT_SYMBOL vmlinux 0xa862242e dev_disable_lro +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa87cf413 clear_bit +EXPORT_SYMBOL vmlinux 0xa87cfcc1 blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0xa8a39641 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0xa8a56595 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end +EXPORT_SYMBOL vmlinux 0xa8c66d9d frontswap_register_ops +EXPORT_SYMBOL vmlinux 0xa8cb9902 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xa8cbe740 sock_wake_async +EXPORT_SYMBOL vmlinux 0xa8fa0523 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa91088cc inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa91d90d3 nla_put +EXPORT_SYMBOL vmlinux 0xa91e5485 prepare_binprm +EXPORT_SYMBOL vmlinux 0xa9220a25 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xa92d0171 dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa97b3b21 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0xa9838c16 simple_statfs +EXPORT_SYMBOL vmlinux 0xa994c670 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0xa9992614 i2c_clients_command +EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes +EXPORT_SYMBOL vmlinux 0xa9a0d91c abx500_register_ops +EXPORT_SYMBOL vmlinux 0xa9a4f320 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0xa9a6d82a generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xa9b248b6 idr_for_each +EXPORT_SYMBOL vmlinux 0xa9ba34d7 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9e07767 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xa9fc193e mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0xaa02e4da jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0xaa03879a amba_release_regions +EXPORT_SYMBOL vmlinux 0xaa08f90a genphy_aneg_done +EXPORT_SYMBOL vmlinux 0xaa0c52b4 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0xaa0eb1b8 dentry_update_name_case +EXPORT_SYMBOL vmlinux 0xaa0f3159 of_mm_gpiochip_remove +EXPORT_SYMBOL vmlinux 0xaa1963a3 of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xaa1f1a37 bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0xaa40619c napi_disable +EXPORT_SYMBOL vmlinux 0xaa50f7b0 swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0xaa5b82cb ppp_dev_name +EXPORT_SYMBOL vmlinux 0xaa61dd40 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xaa66dbe1 netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0xaa6ed06e crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa89f41a dquot_enable +EXPORT_SYMBOL vmlinux 0xaa8a6194 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0xaa9bc305 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0xaaa3d980 alloc_disk +EXPORT_SYMBOL vmlinux 0xaab2a2d1 dquot_quota_off +EXPORT_SYMBOL vmlinux 0xaab98203 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0xaacc3134 idr_find_slowpath +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable +EXPORT_SYMBOL vmlinux 0xaaf3dc7e __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xaaf52fa5 install_exec_creds +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab0e69d0 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0xab206150 d_set_fallthru +EXPORT_SYMBOL vmlinux 0xab2d9daf inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0xab40cca9 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xab435267 blk_free_tags +EXPORT_SYMBOL vmlinux 0xab551fad acpi_get_data_full +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab668abf scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab6e210b ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0xab72ddcd pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xaba57cbe sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xabbbd444 _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xabbc4335 simple_write_end +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabcd1cbe mem_cgroup_end_page_stat +EXPORT_SYMBOL vmlinux 0xabd2e45c dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xabde4436 param_set_bint +EXPORT_SYMBOL vmlinux 0xabf144dc register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xabf6b5bb generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac226d8d xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xac330002 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0xac3737d1 ilookup +EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear +EXPORT_SYMBOL vmlinux 0xac435e88 put_tty_driver +EXPORT_SYMBOL vmlinux 0xac46be3a jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xac4727d0 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xac5e1d6c xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xac708eda nvm_unregister_target +EXPORT_SYMBOL vmlinux 0xac930f2c nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xac9ab5da sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xac9cb009 sock_alloc_file +EXPORT_SYMBOL vmlinux 0xac9d2d83 register_sysctl_table +EXPORT_SYMBOL vmlinux 0xaca5824b __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacc5b5d2 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacd76bc6 generic_getxattr +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xad01744f kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad12df1f dst_release +EXPORT_SYMBOL vmlinux 0xad164875 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xad2945d1 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xad33fc0e ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xad418f77 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xad45bcdf __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xad5be382 textsearch_register +EXPORT_SYMBOL vmlinux 0xad63e4b5 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad898dd5 of_phy_connect +EXPORT_SYMBOL vmlinux 0xad89b0d1 __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0xad9facd6 fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0xada6e5b8 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xaddeec12 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xade1e1b4 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0xadf33470 mmc_cleanup_queue +EXPORT_SYMBOL vmlinux 0xadf64ca3 tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae15036c blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xae4a1bda csum_tcpudp_nofold +EXPORT_SYMBOL vmlinux 0xae4a2d49 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0xae4af362 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xae5eda39 udp_poll +EXPORT_SYMBOL vmlinux 0xae78f252 cdrom_release +EXPORT_SYMBOL vmlinux 0xae8c4d0c set_bit +EXPORT_SYMBOL vmlinux 0xae8d7eb6 unregister_md_personality +EXPORT_SYMBOL vmlinux 0xaea8e059 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0xaea976a8 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xaec11255 max8925_reg_read +EXPORT_SYMBOL vmlinux 0xaef0e66d inet_del_offload +EXPORT_SYMBOL vmlinux 0xaef428f0 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xaef6c567 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0xaefebbdd iov_iter_alignment +EXPORT_SYMBOL vmlinux 0xaeff954f fb_pan_display +EXPORT_SYMBOL vmlinux 0xaf0e5ed6 send_sig_info +EXPORT_SYMBOL vmlinux 0xaf2161a1 bio_init +EXPORT_SYMBOL vmlinux 0xaf33d0f4 swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf4011b6 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0xaf53f745 led_blink_set_oneshot +EXPORT_SYMBOL vmlinux 0xaf6ae696 kstrndup +EXPORT_SYMBOL vmlinux 0xaf6bf4bd iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xaf819163 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0xaf8eb4b9 security_inode_readlink +EXPORT_SYMBOL vmlinux 0xafa5d057 param_set_ullong +EXPORT_SYMBOL vmlinux 0xafa7f7f9 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0xafbc2861 do_splice_from +EXPORT_SYMBOL vmlinux 0xafc9c8f9 dentry_unhash +EXPORT_SYMBOL vmlinux 0xb0085b6f bio_endio +EXPORT_SYMBOL vmlinux 0xb009bec8 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0xb00f5d91 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0xb02249a4 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0xb024ec43 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xb032b6e4 __kernel_write +EXPORT_SYMBOL vmlinux 0xb0362af6 dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0xb03f6691 framebuffer_release +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb05fd1c1 nvm_get_blk_unlocked +EXPORT_SYMBOL vmlinux 0xb06cb1fd i2c_release_client +EXPORT_SYMBOL vmlinux 0xb0763117 secpath_dup +EXPORT_SYMBOL vmlinux 0xb078a6a4 phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0xb07fb4f7 tcp_init_cgroup +EXPORT_SYMBOL vmlinux 0xb0871b4e __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xb0946219 pci_clear_master +EXPORT_SYMBOL vmlinux 0xb094e3d0 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0e0f008 poll_freewait +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb11383ce pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb13ae87a kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0xb147a855 dql_reset +EXPORT_SYMBOL vmlinux 0xb1508faf thaw_bdev +EXPORT_SYMBOL vmlinux 0xb152e9db mount_pseudo +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb161c4bc i2c_use_client +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1c86f11 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xb1d2b6b3 blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0xb1ff47c6 blk_end_request +EXPORT_SYMBOL vmlinux 0xb20ecf88 acpi_run_osc +EXPORT_SYMBOL vmlinux 0xb2116994 bdevname +EXPORT_SYMBOL vmlinux 0xb21dd9d3 dump_emit +EXPORT_SYMBOL vmlinux 0xb2469c65 set_groups +EXPORT_SYMBOL vmlinux 0xb25edae3 clkdev_add +EXPORT_SYMBOL vmlinux 0xb25f0859 arp_create +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb281b86b key_alloc +EXPORT_SYMBOL vmlinux 0xb29c75de generic_end_io_acct +EXPORT_SYMBOL vmlinux 0xb2ab6609 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xb2dcd45e mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0xb3035556 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0xb31e8cc3 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xb31fcb5a nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xb3284531 acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xb3291d0f mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xb37789e4 xen_dma_ops +EXPORT_SYMBOL vmlinux 0xb37bee52 rename_lock +EXPORT_SYMBOL vmlinux 0xb3861370 genphy_config_init +EXPORT_SYMBOL vmlinux 0xb38721c2 devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0xb3a3b3dc devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xb3aee8c5 write_inode_now +EXPORT_SYMBOL vmlinux 0xb3b76b4d sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3d926ef nd_device_unregister +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb3f84166 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xb40557d6 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb425132e iov_iter_zero +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb4717d2d write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xb47189b5 reservation_ww_class +EXPORT_SYMBOL vmlinux 0xb485fdee jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0xb4b9fd60 pnp_device_detach +EXPORT_SYMBOL vmlinux 0xb4cdca20 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0xb4dbd0c7 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xb4f8bea0 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xb4fc735b idr_remove +EXPORT_SYMBOL vmlinux 0xb502adb1 devm_iounmap +EXPORT_SYMBOL vmlinux 0xb51a0b0b inode_dio_wait +EXPORT_SYMBOL vmlinux 0xb51e3cc7 of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0xb5291dd7 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xb540d5d5 request_key +EXPORT_SYMBOL vmlinux 0xb54cab27 bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xb55811ff pci_set_master +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5b6d668 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xb5c90fad lookup_one_len +EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free +EXPORT_SYMBOL vmlinux 0xb5d92671 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0xb5ddb7ab ihold +EXPORT_SYMBOL vmlinux 0xb6051d65 cap_mmap_file +EXPORT_SYMBOL vmlinux 0xb6157625 sock_rfree +EXPORT_SYMBOL vmlinux 0xb6203ffa pci_get_class +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb626080c xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xb641fdb1 d_obtain_alias +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67b55b3 free_xenballooned_pages +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb69877c1 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0xb69f9b00 mempool_free +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6a73ba4 finish_no_open +EXPORT_SYMBOL vmlinux 0xb6d13eeb netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xb6d3daf1 qcom_scm_hdcp_req +EXPORT_SYMBOL vmlinux 0xb6dfd754 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xb6e09436 give_up_console +EXPORT_SYMBOL vmlinux 0xb71fb74f _raw_read_trylock +EXPORT_SYMBOL vmlinux 0xb7384bc2 nf_register_hook +EXPORT_SYMBOL vmlinux 0xb747f6ed jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb74caff7 gen_pool_free +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb7810799 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xb79831aa fs_bio_set +EXPORT_SYMBOL vmlinux 0xb7a1e1e9 tty_register_device +EXPORT_SYMBOL vmlinux 0xb7a9d4dc flush_dcache_page +EXPORT_SYMBOL vmlinux 0xb7b89bb6 sget_userns +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7d46b54 param_get_charp +EXPORT_SYMBOL vmlinux 0xb7d7e1e1 poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0xb7e4b758 __tcf_hash_release +EXPORT_SYMBOL vmlinux 0xb7f511da lockref_get +EXPORT_SYMBOL vmlinux 0xb80fa620 devm_ioport_map +EXPORT_SYMBOL vmlinux 0xb8543dfa nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xb85a478d vfs_link +EXPORT_SYMBOL vmlinux 0xb85d2069 swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb887a9f2 param_ops_short +EXPORT_SYMBOL vmlinux 0xb89eb40c pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xb8cd6c51 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0xb8ce0991 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xb8ddbbe2 sock_update_memcg +EXPORT_SYMBOL vmlinux 0xb8ddbfa6 __blk_end_request +EXPORT_SYMBOL vmlinux 0xb8e8e06b register_filesystem +EXPORT_SYMBOL vmlinux 0xb8ec9e4f tty_lock +EXPORT_SYMBOL vmlinux 0xb8fa8eaa dqget +EXPORT_SYMBOL vmlinux 0xb8fdc9e8 tty_register_driver +EXPORT_SYMBOL vmlinux 0xb8ff83fa vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xb92d2365 reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0xb93c4e20 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xb9613a6a pci_release_regions +EXPORT_SYMBOL vmlinux 0xb98639cf security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xb98827c6 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xb99c0636 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xb9db201e pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0xb9db8dd0 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xb9dcff1d free_buffer_head +EXPORT_SYMBOL vmlinux 0xb9ddf11c mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9f33719 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0xba277ed2 nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0xba2c7dbb sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xba2d8594 ec_read +EXPORT_SYMBOL vmlinux 0xba2ffec2 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xba3dd124 swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba4a05d4 scsi_register_driver +EXPORT_SYMBOL vmlinux 0xba5aa85b iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0xba5bde53 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0xba6773a9 seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xba687ed6 dev_get_iflink +EXPORT_SYMBOL vmlinux 0xba766d81 kill_block_super +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb22ae3d lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xbb34134a iov_shorten +EXPORT_SYMBOL vmlinux 0xbb34be87 rtnl_unicast +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb4086db netif_receive_skb +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb6ba498 netpoll_print_options +EXPORT_SYMBOL vmlinux 0xbb7735dc kern_path +EXPORT_SYMBOL vmlinux 0xbb7c5680 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0xbb88a8f4 __lock_page +EXPORT_SYMBOL vmlinux 0xbb93d6ff input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbbaeb559 memcg_socket_limit_enabled +EXPORT_SYMBOL vmlinux 0xbbccb5a0 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xbbdd7555 tcp_filter +EXPORT_SYMBOL vmlinux 0xbbf3b71d security_path_rename +EXPORT_SYMBOL vmlinux 0xbc07e281 qdisc_reset +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc3b3696 cdev_alloc +EXPORT_SYMBOL vmlinux 0xbc4ca93d pci_disable_link_state +EXPORT_SYMBOL vmlinux 0xbc797713 blk_run_queue +EXPORT_SYMBOL vmlinux 0xbc9c9e82 tty_throttle +EXPORT_SYMBOL vmlinux 0xbca410e7 param_get_ulong +EXPORT_SYMBOL vmlinux 0xbca6685a devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xbcba3210 eth_gro_complete +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcd04ac3 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0xbd07ba7f tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xbd15846c read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xbd2feeb4 seq_printf +EXPORT_SYMBOL vmlinux 0xbd3654c8 kthread_bind +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd5e15c8 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0xbd66c65b cdrom_check_events +EXPORT_SYMBOL vmlinux 0xbd6d79f1 __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0xbd702083 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0xbd747890 __bforget +EXPORT_SYMBOL vmlinux 0xbd8fb634 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbd936652 netdev_printk +EXPORT_SYMBOL vmlinux 0xbdab8bd1 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0xbdae32d0 of_cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0xbdaf5b07 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xbdb6bf96 gnttab_free_pages +EXPORT_SYMBOL vmlinux 0xbdbc13a1 complete +EXPORT_SYMBOL vmlinux 0xbdbd313a xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0xbdcc7117 unregister_console +EXPORT_SYMBOL vmlinux 0xbdd5fc2b netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xbde05aa8 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xbdf8083a ab3100_event_register +EXPORT_SYMBOL vmlinux 0xbdf82bd3 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xbe04cf6e single_open_size +EXPORT_SYMBOL vmlinux 0xbe1add73 qcom_scm_set_warm_boot_addr +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe48e789 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xbe50fd80 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xbe534a5d delete_from_page_cache +EXPORT_SYMBOL vmlinux 0xbe76ad17 check_disk_change +EXPORT_SYMBOL vmlinux 0xbe8d73d4 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xbe9d17f9 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xbea12735 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xbed30104 dcb_setapp +EXPORT_SYMBOL vmlinux 0xbee51c38 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbf06f97c put_filp +EXPORT_SYMBOL vmlinux 0xbf189671 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0xbf1d2056 get_empty_filp +EXPORT_SYMBOL vmlinux 0xbf27d21f del_gendisk +EXPORT_SYMBOL vmlinux 0xbf2d5fd5 kill_fasync +EXPORT_SYMBOL vmlinux 0xbf41ee8b fsnotify_put_group +EXPORT_SYMBOL vmlinux 0xbf762625 nd_iostat_end +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf98cbdc register_md_personality +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfaa9b37 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xbfab5faf pci_remove_bus +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xc012d515 fence_remove_callback +EXPORT_SYMBOL vmlinux 0xc0159677 ppp_register_channel +EXPORT_SYMBOL vmlinux 0xc016cff7 neigh_seq_start +EXPORT_SYMBOL vmlinux 0xc02c4f7f pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc0a15f5b input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0bf0089 __seq_open_private +EXPORT_SYMBOL vmlinux 0xc0c20ef3 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc0d5d4fb page_readlink +EXPORT_SYMBOL vmlinux 0xc0de9e47 blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0xc0fa40e4 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xc0fbb068 key_type_keyring +EXPORT_SYMBOL vmlinux 0xc104db1c pci_get_slot +EXPORT_SYMBOL vmlinux 0xc1057170 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xc13ce0b8 __serio_register_port +EXPORT_SYMBOL vmlinux 0xc14d3a82 kill_pid +EXPORT_SYMBOL vmlinux 0xc15a44c6 memzero_explicit +EXPORT_SYMBOL vmlinux 0xc169cdd1 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0xc1948d3b icmp_send +EXPORT_SYMBOL vmlinux 0xc1966d8d netlink_net_capable +EXPORT_SYMBOL vmlinux 0xc1a6c8db md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0xc1b4bff0 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xc1badf39 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xc1bbaf6f nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0xc1bd6fed try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e416f8 sk_ns_capable +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc1f5cc24 zpool_register_driver +EXPORT_SYMBOL vmlinux 0xc21a044b cdrom_ioctl +EXPORT_SYMBOL vmlinux 0xc2291c7f dev_activate +EXPORT_SYMBOL vmlinux 0xc249f4ab mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0xc26194d2 amba_driver_register +EXPORT_SYMBOL vmlinux 0xc286055c pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0xc286f194 pcim_enable_device +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2a227cc skb_checksum +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2af3120 nla_append +EXPORT_SYMBOL vmlinux 0xc2bc0315 neigh_table_init +EXPORT_SYMBOL vmlinux 0xc2bc120e dev_notice +EXPORT_SYMBOL vmlinux 0xc2d5724a phy_device_free +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2ff2f00 dquot_destroy +EXPORT_SYMBOL vmlinux 0xc2ff86a6 inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0xc30622a6 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xc30c4b4f __brelse +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc310daf8 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0xc3674f5c netif_device_attach +EXPORT_SYMBOL vmlinux 0xc36a629d dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0xc3735914 tcp_req_err +EXPORT_SYMBOL vmlinux 0xc37a4dfc nvm_register_target +EXPORT_SYMBOL vmlinux 0xc3a7be25 lg_global_lock +EXPORT_SYMBOL vmlinux 0xc3bebaca blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xc3c27b73 sync_filesystem +EXPORT_SYMBOL vmlinux 0xc3c28af2 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3d74204 nvm_put_blk_unlocked +EXPORT_SYMBOL vmlinux 0xc3deb75c sock_wmalloc +EXPORT_SYMBOL vmlinux 0xc418fcb4 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0xc4542d54 of_clk_get +EXPORT_SYMBOL vmlinux 0xc459e847 phy_start +EXPORT_SYMBOL vmlinux 0xc47f10b9 unlock_new_inode +EXPORT_SYMBOL vmlinux 0xc47fd8e8 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xc48307db lz4_decompress +EXPORT_SYMBOL vmlinux 0xc484556e kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0xc4973907 param_get_byte +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4cc7ffb filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0xc4dad695 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xc4f629d9 save_mount_options +EXPORT_SYMBOL vmlinux 0xc540fff3 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xc5434ea4 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xc568717c sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xc56be5fe acpi_pm_device_run_wake +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc59a990a kernel_param_lock +EXPORT_SYMBOL vmlinux 0xc59b00fc security_path_rmdir +EXPORT_SYMBOL vmlinux 0xc5df7be6 kernel_read +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc6133ddd scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc63785fa fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xc65b7f2f simple_lookup +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc6746eb5 eth_validate_addr +EXPORT_SYMBOL vmlinux 0xc6772da2 radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0xc699d625 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xc6b368d3 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6fc461b generic_fillattr +EXPORT_SYMBOL vmlinux 0xc705ad6a netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc72cdfe5 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xc734490e of_get_cpu_node +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc7591cf0 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xc7712347 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0xc77248f3 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0xc779b90e init_buffer +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc78463ac lru_cache_add_file +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc78ceec7 fb_validate_mode +EXPORT_SYMBOL vmlinux 0xc7975aa8 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc79f8743 compat_ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7c6fa1a mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0xc7db968b tcp_connect +EXPORT_SYMBOL vmlinux 0xc7ed42f3 of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0xc7f00777 brioctl_set +EXPORT_SYMBOL vmlinux 0xc7f53385 get_phy_device +EXPORT_SYMBOL vmlinux 0xc7fcc5bf acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xc8009348 nvm_dev_factory +EXPORT_SYMBOL vmlinux 0xc800ff28 seq_pad +EXPORT_SYMBOL vmlinux 0xc803ad48 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xc8163153 __register_binfmt +EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0xc83eba65 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xc83f5cfc cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc866cb17 tty_set_operations +EXPORT_SYMBOL vmlinux 0xc869c221 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc877f3aa pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc89f79d4 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8ad1169 acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0xc8b46863 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8b8dd55 fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0xc8cd7466 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0xc8da3314 get_super +EXPORT_SYMBOL vmlinux 0xc8e37178 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xc8effc88 mntput +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc913b690 new_inode +EXPORT_SYMBOL vmlinux 0xc91b12cd block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xc92ec61e cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xc931df2e skb_dequeue +EXPORT_SYMBOL vmlinux 0xc93f8dd7 make_kgid +EXPORT_SYMBOL vmlinux 0xc952b0b2 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc96b03ca fence_wait_timeout +EXPORT_SYMBOL vmlinux 0xc978479a xz_dec_run +EXPORT_SYMBOL vmlinux 0xc98514f4 bio_reset +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9a0a53b bio_uncopy_user +EXPORT_SYMBOL vmlinux 0xc9a0a580 poll_initwait +EXPORT_SYMBOL vmlinux 0xc9a51f61 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xc9a9b081 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0xc9aba090 skb_unlink +EXPORT_SYMBOL vmlinux 0xc9b19192 downgrade_write +EXPORT_SYMBOL vmlinux 0xc9b3b637 dev_uc_del +EXPORT_SYMBOL vmlinux 0xc9d15de9 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xc9ed60ca generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xc9f29f13 vlan_vid_add +EXPORT_SYMBOL vmlinux 0xc9f6235d simple_transaction_get +EXPORT_SYMBOL vmlinux 0xc9f73e62 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xca0ca571 __mdiobus_register +EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy +EXPORT_SYMBOL vmlinux 0xca2d3919 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xca2ff204 down_read +EXPORT_SYMBOL vmlinux 0xca406537 scsi_device_resume +EXPORT_SYMBOL vmlinux 0xca54052f genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xca5ee09a vme_free_consistent +EXPORT_SYMBOL vmlinux 0xca6c8a60 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xca757005 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xca7b34d7 vme_irq_request +EXPORT_SYMBOL vmlinux 0xca832efe kmalloc_order +EXPORT_SYMBOL vmlinux 0xca8acc78 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca9523f0 blk_integrity_register +EXPORT_SYMBOL vmlinux 0xcabc7888 idr_is_empty +EXPORT_SYMBOL vmlinux 0xcabdef2b clkdev_drop +EXPORT_SYMBOL vmlinux 0xcad47639 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xcadd12ab mount_ns +EXPORT_SYMBOL vmlinux 0xcaf13b5a mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0xcaf1b455 vfs_whiteout +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcafaff05 neigh_connected_output +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb095c69 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xcb128141 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0xcb2acace linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xcb358b71 param_ops_int +EXPORT_SYMBOL vmlinux 0xcb3721fc sock_no_sendpage +EXPORT_SYMBOL vmlinux 0xcb4dac73 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0xcb4e4edc md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0xcb604f3c fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb76aefb km_state_notify +EXPORT_SYMBOL vmlinux 0xcb7fd82b __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0xcb936989 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcbae6c7a acpi_lid_notifier_unregister +EXPORT_SYMBOL vmlinux 0xcbbbc43a __blk_run_queue +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbed6894 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0xcbff5e68 mempool_create +EXPORT_SYMBOL vmlinux 0xcc047754 iov_iter_init +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc440f28 dst_alloc +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc59637f ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0xcc6d8844 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xcc73d9a4 user_path_create +EXPORT_SYMBOL vmlinux 0xcc7482d0 d_lookup +EXPORT_SYMBOL vmlinux 0xcc856d88 nf_log_trace +EXPORT_SYMBOL vmlinux 0xcc8d3f4f acpi_os_execute +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccfd3b46 __pagevec_release +EXPORT_SYMBOL vmlinux 0xcd114f1f tty_hangup +EXPORT_SYMBOL vmlinux 0xcd20667a kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd44da04 clk_add_alias +EXPORT_SYMBOL vmlinux 0xcd4fa5ca phy_attach_direct +EXPORT_SYMBOL vmlinux 0xcd52b447 sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xcd57f7b0 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xcd6f8828 phy_register_fixup +EXPORT_SYMBOL vmlinux 0xcd935a8d blk_init_queue_node +EXPORT_SYMBOL vmlinux 0xcd994293 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdc46ea8 vfs_fsync +EXPORT_SYMBOL vmlinux 0xcdebeb24 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0xcded9fa9 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xcdfad0c1 of_translate_address +EXPORT_SYMBOL vmlinux 0xce0e2d66 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xce150fa9 blk_start_queue_async +EXPORT_SYMBOL vmlinux 0xce195031 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xce1a23f2 unlink_framebuffer +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce308228 pci_bus_put +EXPORT_SYMBOL vmlinux 0xce3dbc57 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0xce41c600 d_delete +EXPORT_SYMBOL vmlinux 0xce45d41d blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0xce4904a4 acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xce4c636b __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce58f6e1 key_payload_reserve +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce772fec ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xce7850e1 crc32_le_shift +EXPORT_SYMBOL vmlinux 0xce99e6b0 find_inode_nowait +EXPORT_SYMBOL vmlinux 0xcea67e78 jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0xcea6f151 backlight_force_update +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceae504f cmdline_parts_free +EXPORT_SYMBOL vmlinux 0xceb1717d completion_done +EXPORT_SYMBOL vmlinux 0xcec96ad8 skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xcecc98e0 napi_gro_receive +EXPORT_SYMBOL vmlinux 0xcee4dfc9 unregister_filesystem +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcefdf2ec __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0xcf0243b4 wake_up_process +EXPORT_SYMBOL vmlinux 0xcf058146 elv_rb_find +EXPORT_SYMBOL vmlinux 0xcf5a32d6 bitmap_startwrite +EXPORT_SYMBOL vmlinux 0xcf63d2dd blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0xcf6b27e9 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xcf7a1185 d_instantiate +EXPORT_SYMBOL vmlinux 0xcf7b720d __sock_create +EXPORT_SYMBOL vmlinux 0xcf87ef12 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xcf8f6d16 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xcfa460f8 file_open_root +EXPORT_SYMBOL vmlinux 0xcfad823c iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0xcfae9b91 ping_prot +EXPORT_SYMBOL vmlinux 0xcfb4a296 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xcfc69f7a pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0xcff0f5dc netif_skb_features +EXPORT_SYMBOL vmlinux 0xd0086627 vme_master_request +EXPORT_SYMBOL vmlinux 0xd0312db3 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0xd0511ee9 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xd0530dfd unregister_quota_format +EXPORT_SYMBOL vmlinux 0xd0587156 genphy_read_status +EXPORT_SYMBOL vmlinux 0xd06380e6 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd0721297 ip_check_defrag +EXPORT_SYMBOL vmlinux 0xd072b6b4 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xd08f6239 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xd0963ad4 pipe_lock +EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0b5c2bb of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0xd0d10e0b blk_rq_init +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0f5c49b dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0xd1033632 netdev_emerg +EXPORT_SYMBOL vmlinux 0xd138dd08 fb_get_mode +EXPORT_SYMBOL vmlinux 0xd1615e23 seq_escape +EXPORT_SYMBOL vmlinux 0xd1652a93 acpi_info +EXPORT_SYMBOL vmlinux 0xd178ff70 vm_stat +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd1898b27 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xd18ff827 cpu_present_mask +EXPORT_SYMBOL vmlinux 0xd1aeffb6 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1e9c401 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xd1ebd536 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0xd1f7e61c vm_mmap +EXPORT_SYMBOL vmlinux 0xd2148a16 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xd225a785 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xd22d682e security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0xd24260ca of_phy_attach +EXPORT_SYMBOL vmlinux 0xd24ba4c1 fence_free +EXPORT_SYMBOL vmlinux 0xd24db1d3 account_page_redirty +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd25e16e3 remove_wait_queue +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd2916290 km_report +EXPORT_SYMBOL vmlinux 0xd2b09ce5 __kmalloc +EXPORT_SYMBOL vmlinux 0xd2d03845 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd3259d65 test_and_set_bit +EXPORT_SYMBOL vmlinux 0xd3559ef4 __memset +EXPORT_SYMBOL vmlinux 0xd358fe3c pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd3935074 mmc_start_bkops +EXPORT_SYMBOL vmlinux 0xd3a78b6e sock_register +EXPORT_SYMBOL vmlinux 0xd3b12742 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0xd3b28225 netif_napi_add +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3c0c411 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0xd3f25734 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xd3fd1d44 lock_sock_fast +EXPORT_SYMBOL vmlinux 0xd40faee5 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xd41fe818 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xd43baa60 param_get_long +EXPORT_SYMBOL vmlinux 0xd44995eb nd_integrity_init +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd46a7e94 dget_parent +EXPORT_SYMBOL vmlinux 0xd46dcb72 set_disk_ro +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd48fae42 simple_release_fs +EXPORT_SYMBOL vmlinux 0xd48fdeef dql_completed +EXPORT_SYMBOL vmlinux 0xd496e435 inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0xd49a565c igrab +EXPORT_SYMBOL vmlinux 0xd49e9450 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xd4a53a0a __invalidate_device +EXPORT_SYMBOL vmlinux 0xd4c3fefb inet_select_addr +EXPORT_SYMBOL vmlinux 0xd4c9f53f tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0xd4cf4db0 swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0xd4d7bd47 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xd4e7aa3d ioremap_cache +EXPORT_SYMBOL vmlinux 0xd50cd0e6 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xd50fef48 acpi_detach_data +EXPORT_SYMBOL vmlinux 0xd5107f2a mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0xd521bc11 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0xd53b1f28 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0xd53e7d76 mmc_detect_change +EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0xd54fedc2 nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0xd560ab35 dump_align +EXPORT_SYMBOL vmlinux 0xd5692116 sock_i_uid +EXPORT_SYMBOL vmlinux 0xd569703c mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0xd56f9fd3 skb_copy +EXPORT_SYMBOL vmlinux 0xd5753c26 pci_disable_device +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd5bbdf3d genphy_suspend +EXPORT_SYMBOL vmlinux 0xd5c11790 tcp_conn_request +EXPORT_SYMBOL vmlinux 0xd5c18e13 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xd5d2e9a2 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xd5dcdd59 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xd5eeb682 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xd5f84369 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xd600cdf4 eth_header_parse +EXPORT_SYMBOL vmlinux 0xd600e307 mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0xd60d01fb kill_anon_super +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd62d6977 pci_enable_msix +EXPORT_SYMBOL vmlinux 0xd632d73a unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0xd63c0398 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd649f89f led_blink_set +EXPORT_SYMBOL vmlinux 0xd655f199 acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd6cda4e2 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0xd6d8d162 kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0xd6ea832d simple_empty +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd729cd4c path_put +EXPORT_SYMBOL vmlinux 0xd729eb66 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0xd7426c99 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd75d1aa3 input_unregister_handle +EXPORT_SYMBOL vmlinux 0xd7a640ca arp_tbl +EXPORT_SYMBOL vmlinux 0xd7bfaae3 security_path_mkdir +EXPORT_SYMBOL vmlinux 0xd7d98900 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0xd7daa5d5 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0xd7e236b8 of_get_pci_address +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7fdc645 pipe_unlock +EXPORT_SYMBOL vmlinux 0xd824f53b of_find_compatible_node +EXPORT_SYMBOL vmlinux 0xd840459c dev_driver_string +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a597f9 __get_user_pages +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8acdf28 inode_get_bytes +EXPORT_SYMBOL vmlinux 0xd8b124f2 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0xd8be2b1f mmc_can_discard +EXPORT_SYMBOL vmlinux 0xd8d939bc del_random_ready_callback +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8fec09e abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xd901a34b dev_addr_flush +EXPORT_SYMBOL vmlinux 0xd907ac27 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0xd9091363 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0xd9108fdf clear_inode +EXPORT_SYMBOL vmlinux 0xd92a9785 kernel_accept +EXPORT_SYMBOL vmlinux 0xd92afb55 of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0xd9399c28 mdiobus_read +EXPORT_SYMBOL vmlinux 0xd94279cd ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xd94322e7 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0xd9468197 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xd9586a12 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xd9681e76 blk_peek_request +EXPORT_SYMBOL vmlinux 0xd96c6ed7 vga_tryget +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd9b549e2 __nd_iostat_start +EXPORT_SYMBOL vmlinux 0xd9c7f0cf soft_cursor +EXPORT_SYMBOL vmlinux 0xd9d88441 __vfs_write +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9e0d174 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xd9e8b176 seq_puts +EXPORT_SYMBOL vmlinux 0xd9f33fcf __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0xda01479c mempool_create_node +EXPORT_SYMBOL vmlinux 0xda124963 kernel_connect +EXPORT_SYMBOL vmlinux 0xda28f7ac seq_dentry +EXPORT_SYMBOL vmlinux 0xda38fb06 devfreq_interval_update +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda54091b flow_cache_fini +EXPORT_SYMBOL vmlinux 0xda7647ac security_path_symlink +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda8ffdaa mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xda9fc7ae kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0xdac236e7 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdad69f38 inode_needs_sync +EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell +EXPORT_SYMBOL vmlinux 0xdb2bfce0 pneigh_lookup +EXPORT_SYMBOL vmlinux 0xdb395f78 inet6_release +EXPORT_SYMBOL vmlinux 0xdb3bcca6 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0xdb4469f5 dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0xdb4a0051 led_update_brightness +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb6febad netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdbbc18cb pnp_activate_dev +EXPORT_SYMBOL vmlinux 0xdc03ab85 nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc1b54d5 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xdc2640a6 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0xdc3c41a8 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc4ea282 nf_ct_attach +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcb764ad memset +EXPORT_SYMBOL vmlinux 0xdcc0b004 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xdcc1cf02 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xdcd6bd76 of_get_mac_address +EXPORT_SYMBOL vmlinux 0xdceda190 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0xdcf3ea11 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0xdcf43861 audit_log_task_info +EXPORT_SYMBOL vmlinux 0xdd0cc37b wireless_send_event +EXPORT_SYMBOL vmlinux 0xdd0e7941 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xdd3b9ebb blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0xdd4859e4 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0xdd5a3b6b max8925_bulk_write +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd7a1a2b default_file_splice_read +EXPORT_SYMBOL vmlinux 0xdd7b1ce1 netif_carrier_on +EXPORT_SYMBOL vmlinux 0xdd82a139 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0xdd98e3b2 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xdd9be6b1 iget5_locked +EXPORT_SYMBOL vmlinux 0xddc999b4 sock_no_bind +EXPORT_SYMBOL vmlinux 0xddd44680 security_inode_permission +EXPORT_SYMBOL vmlinux 0xddf3e254 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xde2317e2 compat_sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xde434656 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0xde47aeb6 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xde5cc2a6 put_disk +EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0xde79d6f0 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xde80a735 devm_memremap +EXPORT_SYMBOL vmlinux 0xde8a3918 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde977239 ip_ct_attach +EXPORT_SYMBOL vmlinux 0xdea57829 compat_nf_setsockopt +EXPORT_SYMBOL vmlinux 0xdec61345 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xdefe30f1 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0xdf00fe24 blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0xdf0d5a63 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xdf0da3cc acpi_get_devices +EXPORT_SYMBOL vmlinux 0xdf12a927 acpi_check_dsm +EXPORT_SYMBOL vmlinux 0xdf230cf0 scsi_block_requests +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf5c288c xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf76c3b2 dentry_path_raw +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdfab8b1c xfrm_input +EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xe000e63f __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xe031c235 netdev_notice +EXPORT_SYMBOL vmlinux 0xe0326c0b node_data +EXPORT_SYMBOL vmlinux 0xe0438a25 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xe0444878 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe068f910 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xe06f04d8 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0xe083e3a8 clear_wb_congested +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe08ec1cf eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xe09aa2a9 key_link +EXPORT_SYMBOL vmlinux 0xe0ac8bd2 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0xe0aec74c nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0c10c92 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xe1005c17 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xe1041b4f md_done_sync +EXPORT_SYMBOL vmlinux 0xe110189e ida_pre_get +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe11a23e8 pci_map_rom +EXPORT_SYMBOL vmlinux 0xe11f3cbc _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0xe12dfd38 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe162b329 __frontswap_load +EXPORT_SYMBOL vmlinux 0xe1727117 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe1763885 __devm_request_region +EXPORT_SYMBOL vmlinux 0xe17c5953 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0xe187871a swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xe19c5d82 bio_put +EXPORT_SYMBOL vmlinux 0xe1aabded tty_do_resize +EXPORT_SYMBOL vmlinux 0xe1b0f928 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0xe1b5fe84 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0xe1b940ec serio_open +EXPORT_SYMBOL vmlinux 0xe1d65576 vfs_symlink +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe20372ae radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0xe225b677 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe2492db0 devm_ioremap +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe2628761 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0xe2684593 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0xe278468c dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0xe27f88cd skb_store_bits +EXPORT_SYMBOL vmlinux 0xe294f814 devm_release_resource +EXPORT_SYMBOL vmlinux 0xe29b83ab genphy_setup_forced +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2c1a315 skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe310ce39 generic_writepages +EXPORT_SYMBOL vmlinux 0xe317764d jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0xe319eb24 acpi_pci_osc_control_set +EXPORT_SYMBOL vmlinux 0xe34f0b92 simple_readpage +EXPORT_SYMBOL vmlinux 0xe3647862 mapping_tagged +EXPORT_SYMBOL vmlinux 0xe36f8cc9 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0xe383b8fc __skb_checksum +EXPORT_SYMBOL vmlinux 0xe3a53f4c sort +EXPORT_SYMBOL vmlinux 0xe3acd102 vfs_iter_write +EXPORT_SYMBOL vmlinux 0xe3ae1bb6 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3c4c2c6 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe422bbd0 xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0xe449a081 lock_fb_info +EXPORT_SYMBOL vmlinux 0xe44a9b40 freezing_slow_path +EXPORT_SYMBOL vmlinux 0xe45aad4e dev_mc_del +EXPORT_SYMBOL vmlinux 0xe48291f0 ip_getsockopt +EXPORT_SYMBOL vmlinux 0xe497d75e bio_alloc_pages +EXPORT_SYMBOL vmlinux 0xe4a47b15 napi_get_frags +EXPORT_SYMBOL vmlinux 0xe4a48890 md_flush_request +EXPORT_SYMBOL vmlinux 0xe4a81788 dev_change_flags +EXPORT_SYMBOL vmlinux 0xe4bb20d2 read_code +EXPORT_SYMBOL vmlinux 0xe4e31f47 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4eaab2e t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xe4f11bb7 d_move +EXPORT_SYMBOL vmlinux 0xe4f3017d serio_bus +EXPORT_SYMBOL vmlinux 0xe505969c vfs_llseek +EXPORT_SYMBOL vmlinux 0xe51487cf padata_alloc +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe52ab7a8 skb_copy_expand +EXPORT_SYMBOL vmlinux 0xe5514d51 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe5a0a3e2 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0xe5b36734 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5e4773c blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe5f69788 udp_disconnect +EXPORT_SYMBOL vmlinux 0xe6318d8e __page_cache_alloc +EXPORT_SYMBOL vmlinux 0xe65a73d7 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xe660c4f7 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xe66286c5 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0xe667067f sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0xe6700597 blk_delay_queue +EXPORT_SYMBOL vmlinux 0xe67bd7fe get_unmapped_area +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe69a9df4 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe6bc0a20 mdiobus_write +EXPORT_SYMBOL vmlinux 0xe6ddad02 skb_queue_tail +EXPORT_SYMBOL vmlinux 0xe6e3f53e xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe70235e7 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xe706d5ad locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0xe7235b2d mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xe725eda0 rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0xe7353072 tcp_release_cb +EXPORT_SYMBOL vmlinux 0xe74ba8d3 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xe764ef56 kill_pgrp +EXPORT_SYMBOL vmlinux 0xe7655dba jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xe78bd45d pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0xe79b55b2 phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0xe7a07c06 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7e751f8 scsi_remove_host +EXPORT_SYMBOL vmlinux 0xe7f8230b __genl_register_family +EXPORT_SYMBOL vmlinux 0xe8088ea5 f_setown +EXPORT_SYMBOL vmlinux 0xe81b9305 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xe81ffd6b tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe84096c9 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xe843de9f wait_iff_congested +EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss +EXPORT_SYMBOL vmlinux 0xe87d259f max8998_bulk_write +EXPORT_SYMBOL vmlinux 0xe87e9ea2 dma_mmap_from_coherent +EXPORT_SYMBOL vmlinux 0xe8844ba7 sg_miter_skip +EXPORT_SYMBOL vmlinux 0xe8855b3b grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xe8a16f88 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8b67c95 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8cf6615 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0xe8e74e0c tty_devnum +EXPORT_SYMBOL vmlinux 0xe8ef0ff0 current_kernel_time64 +EXPORT_SYMBOL vmlinux 0xe90ddc5e ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xe912dafe ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe92368f6 nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0xe93deec5 proto_register +EXPORT_SYMBOL vmlinux 0xe9424aa7 xfrm_register_type +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0xe975274b blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xe97e5df2 swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xe97ea521 skb_push +EXPORT_SYMBOL vmlinux 0xe98e2faf dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0xe9986ef6 xattr_full_name +EXPORT_SYMBOL vmlinux 0xe99bc786 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xe9b68e0b release_pages +EXPORT_SYMBOL vmlinux 0xe9bbfb6f dev_alloc_name +EXPORT_SYMBOL vmlinux 0xe9d4adfe nvm_get_blk +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9f8beb1 of_get_address +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea63858c pm860x_reg_read +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xea7b8a44 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xea90bdd3 acpi_attach_data +EXPORT_SYMBOL vmlinux 0xea928efe d_splice_alias +EXPORT_SYMBOL vmlinux 0xea96805f serio_unregister_port +EXPORT_SYMBOL vmlinux 0xeaa15c51 nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0xeabcddb6 __scsi_add_device +EXPORT_SYMBOL vmlinux 0xeacc06f7 fence_signal +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeae760f0 devm_clk_get +EXPORT_SYMBOL vmlinux 0xeb1949a5 swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xeb264670 acl_by_type +EXPORT_SYMBOL vmlinux 0xeb363c09 pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb603e21 vme_irq_handler +EXPORT_SYMBOL vmlinux 0xeb6bb9b2 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xeb960183 generic_read_dir +EXPORT_SYMBOL vmlinux 0xeba1d5a7 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0xebc3ff4e page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xebc40c3a param_ops_bint +EXPORT_SYMBOL vmlinux 0xebc7bb37 pcim_iounmap +EXPORT_SYMBOL vmlinux 0xebc8c59a vfs_readv +EXPORT_SYMBOL vmlinux 0xebd7aa9e mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0xebe1ef21 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xebf90d6f security_path_chmod +EXPORT_SYMBOL vmlinux 0xebfe978d get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0xec1133be bdgrab +EXPORT_SYMBOL vmlinux 0xec20411b key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xec3ae04f dma_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec61626d kset_unregister +EXPORT_SYMBOL vmlinux 0xec756806 parent_mem_cgroup +EXPORT_SYMBOL vmlinux 0xeca22695 dquot_drop +EXPORT_SYMBOL vmlinux 0xeca632e7 tcp_prequeue +EXPORT_SYMBOL vmlinux 0xecb46636 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xecbbf490 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0xeccd3e0c acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xecdc392c mmc_free_host +EXPORT_SYMBOL vmlinux 0xece34b94 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecf1b770 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xecf23fab proto_unregister +EXPORT_SYMBOL vmlinux 0xecf92fb7 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xed05da22 neigh_seq_next +EXPORT_SYMBOL vmlinux 0xed076f70 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xed11a98d posix_test_lock +EXPORT_SYMBOL vmlinux 0xed11f6ca xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xed41e3b8 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0xed433664 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed5a3241 neigh_xmit +EXPORT_SYMBOL vmlinux 0xed8694b7 neigh_destroy +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc2ac52 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xedc30bed alloc_fcdev +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xee032596 freeze_bdev +EXPORT_SYMBOL vmlinux 0xee09d342 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xee24efc3 phy_device_register +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee32de34 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0xee3e5e4e __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xee43b816 lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0xee4e633f follow_down +EXPORT_SYMBOL vmlinux 0xee6167d0 sock_release +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee97678e inet_addr_type +EXPORT_SYMBOL vmlinux 0xeea3cd7a nla_reserve +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeb4ef4e input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0xeebe1ec5 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0xeec2c7cf ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0xeec8de0d of_match_device +EXPORT_SYMBOL vmlinux 0xeeee5e88 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xeef23851 abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0xef0933d9 dma_async_device_register +EXPORT_SYMBOL vmlinux 0xef0a2e6e elv_rb_add +EXPORT_SYMBOL vmlinux 0xef56a03c tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xef8a5cf0 generic_write_checks +EXPORT_SYMBOL vmlinux 0xef8df7a9 param_ops_ulong +EXPORT_SYMBOL vmlinux 0xefa165ce eth_mac_addr +EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefe7132f __quota_error +EXPORT_SYMBOL vmlinux 0xeff72ea5 pci_assign_resource +EXPORT_SYMBOL vmlinux 0xeffb2242 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xefffcaad skb_append +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0066c75 arp_send +EXPORT_SYMBOL vmlinux 0xf014d94f pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xf0155e4a max8925_bulk_read +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf0303e19 read_cache_pages +EXPORT_SYMBOL vmlinux 0xf036ebea n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xf0542112 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf062576b ucs2_utf8size +EXPORT_SYMBOL vmlinux 0xf06c8b3c _dev_info +EXPORT_SYMBOL vmlinux 0xf070159d amba_driver_unregister +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf0915de8 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0xf0972a3a bmap +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf0a27b87 d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0xf0a8237a radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xf0d6fa00 fb_show_logo +EXPORT_SYMBOL vmlinux 0xf0d7a187 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf0f339e2 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0xf0f78887 udp_del_offload +EXPORT_SYMBOL vmlinux 0xf102b5cc dquot_commit +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf11316e1 alloc_file +EXPORT_SYMBOL vmlinux 0xf122f68c of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0xf135cf6e first_ec +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf157e1bb swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0xf1655704 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xf1720e8d tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1baa94c ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xf1bda30d netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xf1c0b299 scsi_ioctl +EXPORT_SYMBOL vmlinux 0xf1c2bed9 tcp_ioctl +EXPORT_SYMBOL vmlinux 0xf1c2c922 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1ee6a07 vfs_readf +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf217726d __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf24717c9 mfd_add_devices +EXPORT_SYMBOL vmlinux 0xf25170b2 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xf26039e7 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xf2793eb0 neigh_app_ns +EXPORT_SYMBOL vmlinux 0xf27ec4dd skb_pull +EXPORT_SYMBOL vmlinux 0xf28b68c3 seq_vprintf +EXPORT_SYMBOL vmlinux 0xf2996278 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0xf2a0459d lg_local_lock +EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered +EXPORT_SYMBOL vmlinux 0xf2a2b163 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0xf2b7ebdc phy_connect_direct +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2ed5d7f vme_register_bridge +EXPORT_SYMBOL vmlinux 0xf312cb9d ucs2_strsize +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf32eefe3 tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf3343cef ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf37d3499 uart_get_divisor +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xf3986b06 acpi_os_map_generic_address +EXPORT_SYMBOL vmlinux 0xf39d52cb skb_put +EXPORT_SYMBOL vmlinux 0xf39da3da of_get_child_by_name +EXPORT_SYMBOL vmlinux 0xf3a3b25c phy_suspend +EXPORT_SYMBOL vmlinux 0xf3a426a4 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0xf3b0b01d tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xf3ca109d simple_rename +EXPORT_SYMBOL vmlinux 0xf3e24395 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf4584828 dev_remove_pack +EXPORT_SYMBOL vmlinux 0xf466f4b8 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf4835f92 wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xf484f8f8 invalidate_partition +EXPORT_SYMBOL vmlinux 0xf495a686 pci_pme_active +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4e3e068 mount_subtree +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf51bf88b nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xf5309e79 devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf552eff9 mpage_readpage +EXPORT_SYMBOL vmlinux 0xf55440d9 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xf559d050 mmc_flush_cache +EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set +EXPORT_SYMBOL vmlinux 0xf5b6e9d2 mmc_request_done +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5d45448 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf6034709 ata_print_version +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf63b5ca3 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0xf6598537 tty_write_room +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xf694e92a tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xf6b6cfe3 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xf6b8cc21 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6bc57ef iterate_dir +EXPORT_SYMBOL vmlinux 0xf6c913fa skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0xf6daac51 d_tmpfile +EXPORT_SYMBOL vmlinux 0xf6e0fa06 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0xf6e8ee98 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f0ffed _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf725acb4 d_obtain_root +EXPORT_SYMBOL vmlinux 0xf737765c scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf77555cd __memcpy_toio +EXPORT_SYMBOL vmlinux 0xf78992c3 consume_skb +EXPORT_SYMBOL vmlinux 0xf790c4d6 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xf79e97cd acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0xf79ebaab blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xf7b0695a mem_section +EXPORT_SYMBOL vmlinux 0xf7cc6375 cfb_fillrect +EXPORT_SYMBOL vmlinux 0xf7d4f18f kfree_skb +EXPORT_SYMBOL vmlinux 0xf7dedad8 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf819ec4c jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xf8252fc0 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf835b60c tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xf839382d neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xf8507e78 mmc_erase +EXPORT_SYMBOL vmlinux 0xf85a5c1f pnp_request_card_device +EXPORT_SYMBOL vmlinux 0xf87450d0 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0xf883c215 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xf88597be param_set_short +EXPORT_SYMBOL vmlinux 0xf8885aef param_get_ullong +EXPORT_SYMBOL vmlinux 0xf88c900f kobject_set_name +EXPORT_SYMBOL vmlinux 0xf88e0ee2 acpi_get_table_header +EXPORT_SYMBOL vmlinux 0xf8924ff4 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xf89620a0 __scm_destroy +EXPORT_SYMBOL vmlinux 0xf89e97d4 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xf8abe649 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0xf8bf7ddc nf_log_set +EXPORT_SYMBOL vmlinux 0xf8d049ab mmc_align_data_size +EXPORT_SYMBOL vmlinux 0xf8d04f09 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0xf8d4f343 __lock_buffer +EXPORT_SYMBOL vmlinux 0xf8e398fc memstart_addr +EXPORT_SYMBOL vmlinux 0xf8ea63a6 blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf8f0d8c7 mount_nodev +EXPORT_SYMBOL vmlinux 0xf8f892c2 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xf916e181 open_check_o_direct +EXPORT_SYMBOL vmlinux 0xf92f5b9f tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xf93136d1 udp_seq_open +EXPORT_SYMBOL vmlinux 0xf93218d0 dma_release_declared_memory +EXPORT_SYMBOL vmlinux 0xf93e25f1 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xf956c339 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xf96fdbdd tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0xf9702a1a inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xf971b318 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xf9753e05 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0xf9836f56 i2c_transfer +EXPORT_SYMBOL vmlinux 0xf9848c65 nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0xf989b2c5 blk_put_queue +EXPORT_SYMBOL vmlinux 0xf992ffa6 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xf99ef5d1 nf_log_unregister +EXPORT_SYMBOL vmlinux 0xf9a2dde0 tty_port_close_end +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9a5373e ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xf9b55e13 param_ops_byte +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9d4997a skb_vlan_push +EXPORT_SYMBOL vmlinux 0xf9dde891 wait_for_completion +EXPORT_SYMBOL vmlinux 0xf9e01863 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xf9e31d32 truncate_pagecache +EXPORT_SYMBOL vmlinux 0xf9edc4f9 import_iovec +EXPORT_SYMBOL vmlinux 0xf9f741af max8998_read_reg +EXPORT_SYMBOL vmlinux 0xf9fac1b2 I_BDEV +EXPORT_SYMBOL vmlinux 0xf9fbe6d1 nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0xfa47465f ida_simple_get +EXPORT_SYMBOL vmlinux 0xfa50951f of_find_node_by_type +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa53ecad vme_slot_num +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa5e36ee alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xfa5f8ca2 dquot_file_open +EXPORT_SYMBOL vmlinux 0xfa60a8e2 proc_set_user +EXPORT_SYMBOL vmlinux 0xfa7633f8 pci_restore_state +EXPORT_SYMBOL vmlinux 0xfa843739 kern_unmount +EXPORT_SYMBOL vmlinux 0xfaa9c280 blk_recount_segments +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfad57702 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xfadc06c5 devm_gpiod_get +EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL vmlinux 0xfaf4ee9e nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0xfafca23d max8925_set_bits +EXPORT_SYMBOL vmlinux 0xfb0443fb acpi_get_parent +EXPORT_SYMBOL vmlinux 0xfb103f99 devm_clk_put +EXPORT_SYMBOL vmlinux 0xfb106721 filp_close +EXPORT_SYMBOL vmlinux 0xfb12406e tso_start +EXPORT_SYMBOL vmlinux 0xfb136a02 dev_mc_flush +EXPORT_SYMBOL vmlinux 0xfb1e660a pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0xfb2b6b9f blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0xfb5d890e sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb80c7a0 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfb95e472 setup_arg_pages +EXPORT_SYMBOL vmlinux 0xfba2108b blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbe8ff5e cpu_online_mask +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc0cb047 lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0xfc0e8c64 acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0xfc48db8f amba_device_unregister +EXPORT_SYMBOL vmlinux 0xfc4b6d0a __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xfc52047f __wake_up_bit +EXPORT_SYMBOL vmlinux 0xfc772238 kobject_init +EXPORT_SYMBOL vmlinux 0xfc849c1d blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xfc8dfe35 setup_new_exec +EXPORT_SYMBOL vmlinux 0xfc8ecce4 cad_pid +EXPORT_SYMBOL vmlinux 0xfc9ce196 nlmsg_notify +EXPORT_SYMBOL vmlinux 0xfca4b754 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0xfca6db10 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0xfcac0d40 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0xfcb926cd kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf412af component_match_add +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfcfecaf3 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xfd3540f0 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xfd7d2f14 i2c_master_recv +EXPORT_SYMBOL vmlinux 0xfd7fd50f nf_afinfo +EXPORT_SYMBOL vmlinux 0xfd863ef8 kill_litter_super +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0xfdf5f643 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfdffd458 textsearch_unregister +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe047ce6 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0xfe0edefe nf_unregister_hook +EXPORT_SYMBOL vmlinux 0xfe17047b kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0xfe1fd55f of_phy_find_device +EXPORT_SYMBOL vmlinux 0xfe26fc7c nr_node_ids +EXPORT_SYMBOL vmlinux 0xfe5127ac capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe5e1cca generic_file_read_iter +EXPORT_SYMBOL vmlinux 0xfe7aca5d sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe832a45 security_file_permission +EXPORT_SYMBOL vmlinux 0xfe83c112 dev_remove_offload +EXPORT_SYMBOL vmlinux 0xfe8f18cd skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe951f7c set_blocksize +EXPORT_SYMBOL vmlinux 0xfe9d54c5 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 +EXPORT_SYMBOL vmlinux 0xfeb696b1 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xfebb2b52 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0xfec8dcfc pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfee33616 open_exec +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xff0471be md_finish_reshape +EXPORT_SYMBOL vmlinux 0xff0b3d19 kthread_stop +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff1f60ad posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0xff256dbf cdev_del +EXPORT_SYMBOL vmlinux 0xff2a2fa6 generic_file_fsync +EXPORT_SYMBOL vmlinux 0xff3197f6 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff6e76a1 submit_bio +EXPORT_SYMBOL vmlinux 0xff6f6d28 alloc_xenballooned_pages +EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource +EXPORT_SYMBOL vmlinux 0xff7cc786 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0xff7e15b6 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0xff8cd740 block_write_begin +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff90a205 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xffc83b78 dev_crit +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xfffb1362 udplite_prot +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x0de87c6d ablk_set_key +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x60d428b3 __ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x6aec89ba ablk_exit +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x9614ba3b ablk_init_common +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xc1f23811 ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xd0a09e44 ablk_decrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xe2abc0d7 ablk_init +EXPORT_SYMBOL_GPL crypto/af_alg 0x157fd021 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x36dfbfd8 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x373614f5 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x3a2af6d6 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x3adf1280 af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0x42449c9c af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0x5d7e28c3 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x9bd0baa0 af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xae17ec44 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xc6222c18 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xcb39de78 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x97f55968 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xb865c29a async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xee295397 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xca026a62 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xd0c4fc6f async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x4aac0822 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x4d20b260 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x9ac66fc0 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xc75ff472 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x6ecbaf4c async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xf211e47a async_xor +EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0xd5926094 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x241be770 cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x9769a386 cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 +EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 +EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 +EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x7d90db70 crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0xf9e66c25 crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/cryptd 0x1334951a cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x18bee0ec cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x20fe9b70 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x2f59e28b cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x345ebc6a cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x386718c8 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x75a9c005 cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xac57a7a9 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xb935f338 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xc5607d81 cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey +EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey +EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table +EXPORT_SYMBOL_GPL crypto/lrw 0x83a493bb lrw_crypt +EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table +EXPORT_SYMBOL_GPL crypto/mcryptd 0x25d4da0b mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x4877b10a shash_ahash_mcryptd_update +EXPORT_SYMBOL_GPL crypto/mcryptd 0x4cfb3c0a shash_ahash_mcryptd_final +EXPORT_SYMBOL_GPL crypto/mcryptd 0x69295d4e mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x756bb735 shash_ahash_mcryptd_finup +EXPORT_SYMBOL_GPL crypto/mcryptd 0x8347667c mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0x9e28d4e8 mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/mcryptd 0xe2a2f067 mcryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/mcryptd 0xfed8d22e shash_ahash_mcryptd_digest +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x62fea1a8 crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x96d11d59 crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xe8b43656 crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xea686fe5 crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xb1472896 serpent_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x8f3a8b58 twofish_setkey +EXPORT_SYMBOL_GPL crypto/xts 0x73baa2ba xts_crypt +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1bea3038 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x21faa853 ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x27925e3b ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x494ba7fa ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x50a61451 ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x54ff97ab ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x56274b4b ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5909b328 ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x618746a0 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x73f896cc ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7459986f ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x76ee644a ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x79880c56 ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7eab1992 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x96d8d25a ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa0bbd397 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa8442870 ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xac3af4c4 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb44be916 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb8c9e5dd ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd1ef7165 ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdbf00951 ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf7863717 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2e44502f ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x36687cd7 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3737776c ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3b887ecb ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x707dd74b ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x891b7ce7 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9b12a4ad ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb11261b2 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd074b507 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd0c76804 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe5c2e08c ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xeb5c4793 ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf7c0ac84 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xfa1efe5c __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0xc88b537a sis_info133_for_sata +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x35117f79 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xa7e9bf63 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xa9413c01 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xfeac6ea7 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x01e6c9fa bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1750233c bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x30e5745e bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x347318d0 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x35190218 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x364d6304 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x39276860 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3c19abf7 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x450964b8 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x47845b2f bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x58af2789 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5cfd8629 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5fafc343 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x85aa9c4d bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x89f44867 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x94c4e484 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9d290491 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa9395ca3 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc4b89843 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xda72a1eb bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdc6ef468 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe99bdc7f bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf07b5b26 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfd250d3d bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x45734e8d btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x555a20c4 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x82b62931 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc40b657a btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc51e59c1 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xe467f053 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0624f65b btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0be26b21 btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x48385cbf btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4f924d67 btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x92fcadc8 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa7fb8afa btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb72632fb btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd2250a10 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd2cd0494 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe0eeb475 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xee9fde34 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xffe65509 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x21154027 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3911b618 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3d5b3e26 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x40b502a6 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x57695e25 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x59ac251f btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa42c162a btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb5cc1950 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xcbff133f btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd6b0ff21 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf66d4cef btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x4f10c1db qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xb3709421 qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x9cbf04a7 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x17268489 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x184703dc qcom_cc_map +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x18c43deb clk_is_enabled_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1ad28e9c clk_rcg_bypass_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1f4159b0 clk_byte2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3b0b58e5 clk_regmap_mux_closest_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x53f95e39 clk_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x612214bd clk_edp_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x669bd1fd qcom_find_freq +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x67ae803a clk_rcg_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x709d9cf0 clk_pll_configure_sr +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x73964fc2 clk_dyn_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x73b3f9cb qcom_find_src_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x77c457fa qcom_reset_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x77d31a97 devm_clk_register_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8c4dbdbe clk_branch_simple_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8d53d96e clk_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x90b53166 clk_pll_configure_sr_hpm_lp +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x95b69adf qcom_cc_really_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x999e1e71 clk_branch2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x99d2c773 clk_rcg2_shared_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9e2e91a1 clk_rcg_bypass2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaace56b1 clk_rcg_esc_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb190ca1b clk_enable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc7994798 clk_branch_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcb0c5248 clk_byte_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcd0a83c6 clk_rcg2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd25fd154 clk_rcg_lcc_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd5834229 clk_disable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe703bcad clk_pll_vote_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xed2aa16c qcom_cc_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf1f136dc clk_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf69c2f55 clk_pll_sr2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf93e315f clk_regmap_div_ops +EXPORT_SYMBOL_GPL drivers/cpufreq/arm_big_little 0x29c20777 bL_cpufreq_unregister +EXPORT_SYMBOL_GPL drivers/cpufreq/arm_big_little 0xe81a5cc8 bL_cpufreq_register +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x04773b60 ccp_present +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x1f486895 ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x0eaf186f dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x71018251 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x816feef7 dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xdf986b01 dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xe25e411a dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x01b6e398 hsu_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x18b7186a hsu_dma_irq +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x59cabcda hsu_dma_probe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c75af1d edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x22c782c2 edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x44463502 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x45697d44 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5872b3e9 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x59840e97 edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5c74f48a edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6ceb4404 edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x76102611 edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7cf0a5ca edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7faa68ba edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x82054145 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x89a82246 edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x90fd3957 edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9130d778 edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x93a1b745 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xaf245b49 find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb488f2f1 edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb5b78fbb edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd9422738 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe0f3f343 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xeb33a276 edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf94cd7fe edac_mc_free +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release +EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0xe342fbf5 get_scpi_ops +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x07a2a8ef fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1003790c fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6846ac8f fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd3434b12 fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xee9a0540 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xfd365a17 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xc263d331 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xf4be044d __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x10b49e27 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8d4c02dc drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa1b94fbc drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa833b3d5 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcad3e1bc drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xed22a979 of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x3744e909 ttm_dma_page_alloc_debugfs +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x91a5ef3a ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xa23b471f ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd +EXPORT_SYMBOL_GPL drivers/hid/hid 0x01eaa6c3 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0653d05d hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x084c05b4 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0ceb04f4 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0db5c6a7 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x216b8943 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x22f0f41a hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2965428c __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x298b8cf8 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2f2897ef hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2f37b55f hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x32354dd0 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x33dfc6f0 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x36576a29 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x372f3e64 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x38fe5193 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x44ef6e4d hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x468319dd hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4de2556a hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5047197d hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x697dd28d hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x746f65d9 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x77f404c2 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x88d8e84b hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x955d40c1 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9b0dd535 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa35d2174 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa55557b6 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xacb72838 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb030cfdb hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbec7e5b1 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc4270761 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd2542134 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd638ca51 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdca6b2db hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xeb19a628 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x45c731b6 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x160c803a roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x23d9d22e roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x466cbafb roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x5c8ea18e roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xab0e7786 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xbed40f00 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0081cbe3 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0d4f5b36 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x20427b5e sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x20fcd54c hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x68b1fd8c sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x69d3c08c sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb269cd7c sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe0b21328 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xea2290dd sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x6b181db9 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x01435b04 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x09553a5a hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x21f583b2 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2304e8c3 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x38fa43b9 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3912c69e hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3f19ba34 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3f38bc03 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x59202e8f hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x97b51fb5 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9b922748 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa1671e47 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa65ed36a hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc471f471 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc740de7e hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd1514288 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdac42fa7 hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe21a9661 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xa8b91e16 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xb02a84ca adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xf71bdb80 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x076524af pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2721ccff pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2af66529 pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2f642720 pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4a013897 pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8b32106e pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8dc9dbf8 pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa5b377a3 pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xaf320c03 pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb214b8e9 pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xc5ec6549 pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xd1a458d7 pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe4ee9fa0 pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xeba66ddf pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xfa1e18ec pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x077f03a5 hwspin_lock_register +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x121722e6 hwspin_lock_unregister +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x3490d54c hwspin_lock_request_specific +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x4ad9b23b hwspin_lock_get_id +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x4f95b0d8 __hwspin_trylock +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x861100c9 __hwspin_lock_timeout +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x991a32df hwspin_lock_free +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xcf1e9812 hwspin_lock_request +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xd054c455 __hwspin_unlock +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xe977b532 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x053cdd6a intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x12199842 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x1642c3de intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x206a86ca intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6ed46691 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x92708b22 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xbb54ca2f intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2ead4898 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x671ced97 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x9320ec6b stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc624a4bd stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf16b26e7 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x1d069ddf i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x64949f09 i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x7d2942b9 i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xceec3a94 i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xf230cabe i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x07027b57 i2c_add_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xcfd39942 i2c_del_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x1d937dc5 i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x1f4607b3 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xaf13b2b7 bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xcd1c74c5 bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xfd4245e9 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x070c37ac ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x13429c4f ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x22b26633 ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x4fdd357a ad_sd_reset +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x8902f8c4 ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x989025f4 ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xa20328ec ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xc004014f ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe8adfb29 ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe9f2d1af ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x5ecbd11b iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x65923228 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xa6ee5af9 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xec2003a9 ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x74319cf0 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xce7f0de4 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xee334c5e bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0db3453a adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x1b0d55cf adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x52225f40 adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x60a993b8 adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x790d4825 adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x938d0200 adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x948c73fa adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc0144e80 adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xcae769cd adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xe3b16f21 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf27aa65d adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xfdd8454f adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0313b25e iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x068bf5a1 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0a0aa067 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x132e471a iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1843a6c2 iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2d28f89d iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2e871f75 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3606b51c iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x36860813 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4bcc7e49 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x57db93f1 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5f591357 devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x650ae2d3 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6dcd7dfc iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8d73e9de iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8de529e4 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8e6c3afa iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x92a923ca iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa0bbac0e iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa8f16b15 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xab3cd0e5 devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xabb84c94 devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb3adaaa9 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb3bb4261 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbaac9a3d iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd88cece6 devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xde7e2e69 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdfe9926c iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe2061f9c iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe221c725 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf531358f iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x95ca0b0a input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xded35569 matrix_keypad_parse_of_params +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x834e429b adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x299e2897 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xab4a7d3b cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xd4a3d0fd cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x315e33f2 cyttsp_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x747e5313 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xf9492f3f cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x427f7084 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x782fc9b2 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x34ff9b92 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x540f0394 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xc1bd2fa3 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xcd301645 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x16f95168 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x19cea53b wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x26318c2f wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3b8f9175 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x538d0f87 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x63bf3471 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x976ed078 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb477ef21 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe2483622 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xea9b8cb1 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xec2dddd1 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xef6807d8 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x26e98892 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x3b1b24aa ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x426ba147 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5f01978f ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x8250d2ab ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x9e4467ad ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xae245f87 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc48b766f ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xcc5cde01 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x042479bd gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x14d8b76c gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x1ea0bb7c gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x2a38895b gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3cd05ab0 gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x40dbe1be gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x40dd906a gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x5e8e62fe gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x6d1ac04d gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x78cc0a99 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x82c8bfd5 gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa33c67ad gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc053d7d6 gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc0bc7ec8 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc795421f gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xdf401399 gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xee32fb3b gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x2fa1096e led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x5e7dfe01 led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x731c121e led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x918dde43 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x9ab23920 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa5d53c04 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2566863c lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3326a89d lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x36bbcb51 lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3e69cac6 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7d5a271d lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8d92827e lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8e67cb40 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb00ca950 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xdcd6a815 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe17b3164 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe2d3edd7 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x15170300 mcb_bus_get +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x23361d64 mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x37870cc5 mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x59c2df26 mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x5a23cda7 mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x6927650a mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x85f12646 mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x9e04b86d __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc5e1dba3 mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xca04c910 mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd5bcc230 mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd84d4359 chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd9b768c7 mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x021811cf __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0f0677b8 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x10e6a889 __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1154f7a1 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15aa8e40 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x174c2a29 __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2205bcf9 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3fc7cb7f __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x469f38de __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4ba51ecf __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5b2a89c7 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d950f2a __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5e21030c __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5ed04550 __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6eef9654 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x74ab7b0f __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x84efb763 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8fe32879 __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x91f02667 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x93f7fc02 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa1de5277 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa81bf581 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7d964de __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbbace2cd __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc6673631 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8a2f711 __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe3de2ba2 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe902838d __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec919105 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeea27f46 __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfad1ec73 __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2ebcb317 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4f84a053 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa3318dba dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb5630ecc dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xbd755087 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc08ae58d dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd94b9e32 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xef60bd62 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf4372d6a dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2f799b20 dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aba7f5e dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9310ba06 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9c256008 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa1d2413a dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa448e19f dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xafbda3f3 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcbb1bae2 dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x2aa99890 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5c1fd4dd dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5fc86fc6 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7361a36f dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x8de9ca6e dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xd4dde53e dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe340a9fb dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x65b4ad34 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xcfc61aa2 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x17f32c81 dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4430764e dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x45ab972a dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x60b182fd dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x714fc5db dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7c199038 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x97a04078 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa68e1f06 dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xdcdd2e33 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfad9d53a dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfc62ef4e dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x100f8d64 dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x17c36f29 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42dbdfc3 dm_tm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49b35849 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x55b4bd4d dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x827a42f4 dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9f624559 dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xafeda29f dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd29923fb dm_tm_shadow_block +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf375d009 dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf5455120 dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x048a1e77 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x163eb4ba saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x56651425 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6c2d9325 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9417da59 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9cf5a1e6 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc6eb0871 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd4252ed6 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd790bd75 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xee50ac86 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x057076e0 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0c617ce2 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x1965eaa2 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x293984a6 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x7f96df3f saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xcfa549d4 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xe86c71df saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0e00f408 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2496b4ed smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2c284346 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3cbc993c smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x474e19f2 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x583ec228 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6a8815eb smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7012da7b smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x81bf417c sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x926a4250 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xabf25c8d smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc22747b0 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcb418d3d smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe2dffc88 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe5596693 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xec2c5c95 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf481d8af smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x96121f26 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x8959a3f2 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xc3cbbd92 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x0c4db4ff media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x2326f5c9 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0x2851df0b media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0x2ce989a1 media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0x2df5c50b media_entity_init +EXPORT_SYMBOL_GPL drivers/media/media 0x30a73411 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0x32fe7449 media_entity_create_link +EXPORT_SYMBOL_GPL drivers/media/media 0x37d9203c media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0x4ffb13cf __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0x5c0f9ce6 media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0x6b66a4e8 media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0x71c29fbe media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0x9e1f3229 media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0xa8fb56b5 media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0xc51a8376 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0xdacd331b media_entity_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0xdd961ed3 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0xe0dc76ec __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x57914a26 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x13a7047e mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x22dbc661 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x22deb6fa mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x240de3b9 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2ecaee89 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x364dec5c mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4475e8af mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x740f70ee mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7f0eb135 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x83a07504 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x850f4eb9 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8d98c01f mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x993c5ce0 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9ca88133 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc41e1e20 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcae3286d mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcd025f46 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd2642ab8 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf1dc091d mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x13e11d2c saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x28c33119 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x34da67b3 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x39d70329 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x40c34786 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x40d14f52 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4a93600f saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4cfe095d saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x52c4505e saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x600e7ea1 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x667a08ee saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6b77c698 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7d0f1623 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x88fdf39b saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa1ecff84 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa438ec78 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xee15ab6d saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xee5cd390 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfa2f9fb8 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x192a5b9a ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x1c299069 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x756361b1 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x8c175a9b ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xcae2a6f3 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd1c8ef8a ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xf1bb4d39 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0b2585ce xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x490bd11c xvip_get_format_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x5a8a8ee5 xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x66a2d746 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb3395181 xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xdc6211da xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe818dc55 xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe895d3b0 xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xfbe93ab2 xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x16c440e6 xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x424a2178 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x961fbfed radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x11bd5dd5 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x11d7bda4 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1d589572 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x59f052f3 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5c75ead6 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x66726878 rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6bed271f rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7b6f6dab ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x869139b6 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x86aa2ff2 rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9ce752b3 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa2c6afd0 rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xae1f07f3 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xba750b79 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc1b41c55 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcb8b4939 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd3aeb2e4 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd84e30dd rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfb3db78e ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x9012503f mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x6537c71f microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x7cbf7ee8 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x7ef28139 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xe97fcca5 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x97f16ee8 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xd0da4d3b tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xf1c8b84a tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x1df5006e tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x2c869e40 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x330a4fac tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xc508341e tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xca16a237 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x3d9d5d44 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x086dc6b1 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x08b5273c cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x09e95913 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0b1c8b5f cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x184bf0a5 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2bb55218 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2be70a98 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x36b77825 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4928754f cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5401183e cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x62271689 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x78a0b9cb cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8a891f39 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9312e97f is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbae42f07 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd4e67508 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xda474eaa cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xde6a9275 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe8ee4e15 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfdc35a7d cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x5ac1cdaa mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x35bad508 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0ffb16b4 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x157e8d0e em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1ebc995f em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x252b73e5 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4b4947fe em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x50972535 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x513795e1 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7e5991f8 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9369c020 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9b9709c1 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9ddf9b06 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa5a847a0 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb3548dfb em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd129fbc4 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd6d7185c em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xecf9333d em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xee1a6e5f em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xff2e66a2 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x23727ade tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x68480867 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x88b42763 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x9f332f04 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x1d3a18ab v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x41aaaaf9 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x7bb6bd7f v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x7d4743db v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xc49f8cdf v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf6900747 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08982d59 v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x8ccbacaa v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xff65b90c v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x04adad11 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x05d7f703 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0e3f75f6 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1ea7889c v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x20e7be20 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x29fc1b15 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3700e630 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x424276d6 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x484ff1e5 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6259c18c v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x75fbd13d v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x77c7136e v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7ba6049e v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7bc5a664 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7d14d377 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8cb74086 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9ee76c40 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa541f78e v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa8ac8560 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaf400eae v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb1ff4427 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb9e55719 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc37d8b7f v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd1b9ff63 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xda0417a3 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xde6ad01b v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf3c47a6d v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x03685914 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x14286df3 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x24f7038f videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x26a456ed videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x29fa07fe videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2d00ea29 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x34bb9c4d videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4b7c68f1 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x64a56599 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6a8da6b6 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8d6c536f videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9138fdbd videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa19ad793 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb831ffba videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb85bd5b1 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbdd9c1a9 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcb2d2b57 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcbf39d8a videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd8322ef7 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe317111d videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf8801e3d videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfb7272f6 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfd5612b4 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xffe4b24f videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x2673f178 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x9e84da65 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xabe92e7b videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xbc8f35ef videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x297523a2 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xbd4484a9 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xfb183d9f videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1c8fa2a8 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2a48a8c2 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2eeddc65 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x35328274 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x3a976c3c vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x43c8f892 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x44a68dbc vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x493ec6ad vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x5b61d874 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x62c77d76 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x87b7f500 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa31b3667 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa96f3bf7 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xac916792 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc68ccba8 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe49f98c7 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf58c1537 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xfc84ae44 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x392637e6 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x71ca45f0 vb2_dma_contig_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xb08ce783 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd30ec30f vb2_dma_sg_cleanup_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xffc2ce95 vb2_dma_sg_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0x8ae30758 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x015e4f96 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x07612643 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x09b7dd95 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0a04b7eb vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1d1b70a8 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1d707504 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x227631f2 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x22fee211 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x24f8e77f vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x265b0d0d vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2865d56a vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2cf4b655 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x516dcab1 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6a3a593c vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x73de5fd3 vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x89506cc4 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8eaf085a vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa33e5f50 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa3e33a9b vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa7023525 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xacd0e5b0 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xae776955 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb0c5a4ec vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc19a821b vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc91ad516 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc9e736a7 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd0ddf34c vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xed0f9a13 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf2ba4189 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf9048ec8 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf9d87c69 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xfc967df9 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x0ddc2440 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x007ec2f1 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x02a51d95 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x133adfc4 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x160c1b54 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1ef3a428 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ab9d732 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2f654dbe v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x355f710a v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3832f95a v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3f317f1f v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4a5907bf v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4c7c12b0 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e73fa8d __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4f1aaa92 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x55276b36 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x577ce198 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x59ec3269 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x71c7cc90 v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x72f92055 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74a017c5 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x757edd40 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7bfda7d4 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa703ec55 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaab64d31 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaca2544a __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xae33e2c6 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb4697517 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb771b2c5 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc2746eeb v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6429d8b __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdeec3f1d v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe3a31678 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe8cfe6fa v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xed716246 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2159e2f v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf329880a v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf4c03d3f v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x28b6acbc pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x9f85658c pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xf8e4cd2a pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x040fb053 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x1768df17 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x365b03f3 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x3afde6c7 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xcf293595 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xe37ffc64 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xe440e118 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x218fe6c0 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x76f269b5 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xa551aeca kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xa64e67d0 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xa9867470 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xc59132d1 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xc5b75e39 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf7c66c13 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x37edb9d5 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x4e23e82e lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xeb2caf5c lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x5443dbc8 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x61d739f9 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x897ea51e lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xabcf1dd5 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xca3d1b56 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xe05d97b4 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xea8fa361 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x1e5d8e78 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x32f8bd50 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x43b1e3b2 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x2079bb29 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x32764e41 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x72cc0561 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xbce1b55f mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xcd001fc6 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xef390115 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x12de9e6f pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1c266945 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1d6c66ff pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x303aa9c5 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4b164cb3 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x96dd7e37 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb3eec59b pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xcd692839 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd9b85a87 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdc43d892 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xfd5d302f pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x3bbce250 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x3c9e22a9 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x45171651 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x75362e1c pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x7859689a pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xce976e5f pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd6c14727 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0426cc03 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x08bf242d rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0c7370e4 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x14fd8a6f rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x20bba084 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x250bfe67 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x469397da rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5a586902 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5e25e205 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5fccea82 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x61dd89b0 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x68055f2e rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x79738223 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7ae55982 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7e76e5d2 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x800d7a23 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9e3efaba rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa2c114a4 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa8f18049 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb3c10e2c rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xbd76a325 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc642c0d3 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xebbab936 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf59f010d rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x15faaa77 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x42df5fd3 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x454fa784 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x5c5d550d rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x5f7d6885 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x6fd62efc rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x70407652 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x7a260b04 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x7bffdde1 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x82fc665b rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb5a3f6c0 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xcfd31171 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe77cd264 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0248a10e si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x03077570 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0727a062 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x13ed5fec si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x17340a21 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x24b340c2 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2c090b3d si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x308c8124 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x35bf0229 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3d1fbe99 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x414e093c si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5a44db02 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x60565437 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6f966fa8 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x76066d63 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7ef7de9d si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7f8cd3aa si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x909400aa si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9952130a si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa969c7fe si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa99490c0 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb3f26e05 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbf8446ad si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcb57c4c2 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcefa35f6 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd56fee47 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xea352e8c si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf1466dc1 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf256b27d devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf26063cc si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf386f43f si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf519f42c si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf548614e si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf6ad655a si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x160a9200 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x27eae693 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x44ae616e sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x4e183196 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x8d93d2dc sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x14e0a454 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x6841f5a5 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x8f08dea8 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xfcb4c476 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x22563af1 tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x35b91dbc tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x59630957 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xe73a8071 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x78cc04bb ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x433ce429 bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x5b192ac5 bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xb56719cd bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xe88a1441 bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x12cb5bbe cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x1e4659ce cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xea265698 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xec7b995b cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x004db518 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x09f3e74e enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x205690f4 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x427837b5 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x793ccf52 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x845b9384 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xfcf84550 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xfd9b3eb9 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x3d5c975e lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x50a44478 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8e718182 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x96b37d14 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9d1ce543 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb49b2eae lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf02a9b24 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf705dd18 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x95ea0797 st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xbe92fb75 st_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x465be09e dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x9689e166 dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xcc532ba0 dw_mci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x08ca123f sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x173ba328 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1769bebd sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3395d1a2 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x46db3ded sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x522313b7 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6034c5c6 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x62f17361 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6e07a3ef sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa006b200 sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa5b96afc sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa755c5a4 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe11259b6 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf0e80013 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0c63887b sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x201af957 sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x20fa3261 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x2ebdb5a5 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x4f146c06 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x9bfc1026 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xbe457e08 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xdac97d22 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xfb160b8f sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x0a6eeed5 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xc859eeab cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xf770cb43 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x1a709ad2 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x6422d102 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xe9895554 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x79233f30 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x3465937a cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xbe84303e cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xea47bd03 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00a4927e mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x079e6811 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x08a6154d mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0daf773e mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x111bf88d mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x11eb45ad deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x14dfdc98 register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1519dc74 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1a54daaf mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1ace1f01 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1c50ac65 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x20c95690 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x348b8ab2 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3539466a unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3cea5fad get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4a49e2db mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4d347997 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x535beddf mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x59c5be78 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x66c62e16 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6f939b1d mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x70412780 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x788ac3e7 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7c2e8f20 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x80590305 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x868ce4df mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x900e6c1b mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x940c788d kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9454398f register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa56aef7a mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa92bf585 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb15089a8 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb87367d2 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc082f8eb mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc1d3ee21 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc9bd3111 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcbdf1df9 mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xddee932e mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe0e4dc08 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe58fc1a7 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xee63df6e mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfa688767 mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x7651aecb register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x7bc38963 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x9ab10c91 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xaf2523ca del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xd3c18c0b mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0x35fe0408 brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0x37112db7 brcmnand_remove +EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0xaee44341 brcmnand_pm_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x0b8f59d2 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x106aae29 nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0xfab51961 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x8249c3d5 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xfcd439ad onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xecd9005f spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x16e9c798 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x254ea914 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2e252267 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4f2648d1 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x82293e2d ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x83b86936 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8b1578f2 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8bf11237 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9f734227 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa1cb2658 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa3a8c135 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd09eedb2 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xde1ed00a ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfd3cb810 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x39750183 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x8c1cc3af arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x28334bc9 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x68fdd923 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x9286651e unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xad0579e1 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xb6d664bd alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd49e0ed5 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x040dc0e6 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x04510c34 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x104f9120 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x1372ae58 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x19441bf4 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x24753782 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x376c1a73 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x4d64b478 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5d1ce639 can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x62a283c7 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x64283e57 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x75dc037c devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x8cce8fcf can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb328a8bc can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc0837b28 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe1803e2d close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xf193c840 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xfd20a288 alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x0002f05e register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x66ec9df0 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x83546626 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xe9722088 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x30d97d4d register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x61682470 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xab0c9862 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xce533b94 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x5d3ad084 arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x77035210 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00c8c3b8 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x022f1631 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0411ae62 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04e66bcc mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x086629c2 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x088c9550 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08e12934 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08ec9419 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0919213a mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b7c7068 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x100b99e8 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11252d25 mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11cff8ec mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14e5e90a mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x178582d6 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18fd0bc1 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a3f020b mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c7dc768 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c90d24c mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1de260c2 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x217de901 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24921ce8 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2613a6de mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x276be6b3 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c4176ff mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2de2b877 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e09fb96 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e4124b1 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3327adb3 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x394ac983 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44ceafc9 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45c0b783 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45ccd892 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4648d443 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c51670f mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e109105 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5273138b mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x536fd2af mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54d818b1 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55981ea2 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57bfcebd mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5bfdc0dd mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c1a9377 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60059b03 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65b98106 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x679ca179 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x686ef0be mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68ad3035 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68f81eac mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6be2bd9b mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6cf81687 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f3654b4 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x768e24e8 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76ecd451 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x784a3921 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7987c446 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a1d529d mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b1f8c80 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f5b5baf mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83c2401c mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83e3d5d8 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86084d91 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87da673f mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b001033 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e2226c4 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ed4c3d6 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x922ba4fc mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92d7d9fd mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94b63b8c mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95687b9a mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9645d199 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a6d773c mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c5b1fa2 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e254e33 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa09c3628 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa19ed9f1 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1fb5752 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa252ca6c mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3475149 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa45e0653 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4cb9174 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5f4f402 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa83b37c2 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8835315 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9635ed4 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad564cd7 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb356d2e0 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb36c89b0 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb662b5a5 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb76e6444 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8183219 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb892af48 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb90497f3 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb7f03ce mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd493a89 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbdde9b61 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2e41d8b mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3c72b4e mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc44499ea mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc56e456e mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc747e635 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7ed4526 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9fbe444 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca7151be mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb45db07 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd9522c7 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd04e58db mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5e40ad9 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7aa1eea mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc0eb614 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd155463 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd24077d mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdffccef1 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe441d240 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6c161be mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9fbf1ed mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec648070 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xecd29de4 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee5e3e30 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0cfefb0 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf42fd2a1 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7064ff5 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8d6f8ec mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8e8be9b mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1590d617 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15b359e6 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1df175f1 mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28c508d3 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c7ef130 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47047cdc mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x493771fc mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a3085c5 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5fa8993e mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65b594c2 mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68f16f2f mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a6cb38d mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71a1013e mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78762b9e mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79c305f0 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79dc6e28 mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b447d73 mlx5_set_port_proto +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82e378f4 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87105654 mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x875f8a41 mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8bc3ad2f mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c0d32de mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ec57b06 mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x984e78c0 mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c30e1ea mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9cbdc9a4 mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9dbc680b mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa12cdea1 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa162221d mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6ffc8df mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb81e6b4f mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb87180cb mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb894c358 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb909a5d mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbfadb418 mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8d8c300 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3ece570 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2c07599 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3257b81 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6454fa9 mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xedfd3bc3 mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2ec4661 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3767941 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3781b36 mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf79f10f7 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x269de73b devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x5e28947e regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xac144314 regmap_encx24j600_spi_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x266823df stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x64f7cc7b stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x95b81399 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xa1774be1 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x80598585 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x84913482 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xd2670495 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xe49b571e stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x508bd7a1 cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x5d6d72b7 cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x5fe97620 cpsw_ale_control_get +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x67ef5a38 cpsw_ale_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x687bb020 cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x78337bed cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x8ac4a47b cpsw_ale_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x91563224 cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xa869bc16 cpsw_ale_control_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xbcd9cda8 cpsw_ale_dump +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xbd4175c7 cpsw_ale_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xcf910ff9 cpsw_ale_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xd67302d6 cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xdf076062 cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xf440aa1b cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL drivers/net/geneve 0xd1faa205 geneve_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/geneve 0xfb3c083d geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x0baafd40 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x168b67d8 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x39b2e39c macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xab3aea5c macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvtap 0xebaabf5a macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2f321094 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3760f801 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7e62cf72 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa12a61be bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbfb85aec bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcbe62e9f bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcce00245 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd66f7cd3 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdf892db1 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf69e1378 bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x279aa60d mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x40e95be0 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x81f8bb91 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xf3fd98bb usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xfa4ba7a2 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x04c07e26 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x09395c66 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x112ca513 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x16d8f6e2 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1ba25fa5 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x61f98bdb cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6fa8c661 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x775c416e cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xbaaf9992 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x06ace317 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x4b00a0ef rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x7de499bd rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x7e28712f rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xb7457142 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xfdaf4114 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x10448412 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1b8143a3 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1d9c888c usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2d91e8fa usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2f917577 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x34181130 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x378cce51 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3943d81d usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3a8e441a usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3dc7902f usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5582e35f usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x578b78e2 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6afd4174 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8ad77da3 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8e44670e usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x92be9a9c usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x942dd3b3 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9479dcef usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x94bb8913 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa9888400 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xaa19faa0 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xaa311b7d usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb55eaf56 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb78130d2 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbc78d97c usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc54b38d0 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc76aa22f usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdb490af9 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe2b01f82 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe3a756b9 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe699b4ae usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf8fa1fdd usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x32fde5cd vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x5bae90a9 vxlan_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x00aa7311 i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1397f8fa i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1978ae7c i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1b9f7ada i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3723038a i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3de22fa6 i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x579c0173 i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x58070ebe i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x62c5c680 i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8f4f25cd i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x9a3c4ca8 i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x9be5193c i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x9ce69b36 i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xabf4bf8f i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc22ea769 i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe7c37d20 i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x4675453a cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x5697d553 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x687302e3 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x9387abd1 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x7319be77 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x24ce874c il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x4fcb72e9 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x8e7a6786 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xb2735ddf il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xf755424a il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0a144e65 iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x126c5af8 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1e1dc4f4 iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x216d960a iwl_notification_wait_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x223333ac iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x272ff23e iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2ff1cbd7 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x44f7e827 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x47e5051f iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4dd8b2d9 iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x56845365 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x70107690 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x71b9e8b5 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7971fbd4 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7ab0e0f7 iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7c50b8f2 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7dde5b58 iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x839b9936 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8da16094 iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa125db36 iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa40a720d iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xaa40a0c9 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xaaf3e478 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xba490ce4 __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc6ffe064 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd17574dd iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd9fac131 iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xee37d24d iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf039f255 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf0634b52 iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xfee51904 iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x0dbb85f7 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x16cddd7a lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x2a25b5c1 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x4a7d6ec4 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x4d2483ec lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5620e001 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x86ad8c60 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9ba8c098 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9cf0ad8f lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xaf9cef43 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb47dd2ce lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc9a36328 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe350e13f lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe793d706 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe9c22a00 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xfe5fddeb lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x0449f79b lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x1bf4d0d4 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x4a5b2600 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x806fd10b lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xaf7200f1 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xe017c357 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xee93164b lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xff144578 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x04a92459 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x08e6d27c mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x11a21f65 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x16741e47 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x1a40c6c8 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2b54769d mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31919f45 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x3394223d mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x481da5d5 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x492e67cd mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x9f94f7fb _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xac365615 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xafc95829 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb6665bf6 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xbfaec758 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xcfd29bc9 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xd1c34125 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf4d00146 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xfb93ccc8 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x060998bb p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x259d5f26 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x538b2330 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x5b9f0a84 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x6d32631b p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x7718fe50 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x9691ee63 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xa8794683 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xd9518642 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x590bdd4b dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8ed3a457 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc80d7678 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf694b71d rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0219d6d7 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x055aba3b rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x16bcff4a rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x23461df0 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x25318379 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2d58c72d rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3723eb0c rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3c1f7e31 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x453d7162 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x458cb7be rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x549e2024 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5c395857 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x63321303 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x63f1108f rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x77267da5 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7989bc89 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x84f6616e rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x899e03e6 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x947196fc rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9e5a1a89 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaea62eb8 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb217357f rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbb7dc11b rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc14c956c rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc9231376 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xceb5295f rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe354eba4 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x013f4414 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x150fde16 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1e6a722d rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x35238b68 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3a3c3b64 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4366fcf3 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x56069591 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b4de810 rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x71b44887 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x74f2bab9 rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x904cb684 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x92f9e8c2 rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x96f2e20d rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x99b80a86 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa90f3cc8 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb6e17f1b rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xba71a497 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc93c1453 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd444e03a rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe03c604f rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe3bba7be rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x06b74d72 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7ec0af32 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x91ee8471 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xb53a3be4 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x017ea821 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x09151fb0 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0f5842c7 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x14207cc1 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x183cf1df rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2566e1ad rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x34f951af rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x35893126 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x402a6236 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4363f38b rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4499a65e rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x48e9e8db rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x51fe8146 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5e987e2b rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6a4b2704 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x70fe1bcd rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x795d9388 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7bfbf07e rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7d947729 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7e7c25e0 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8d50a009 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x924cdbf9 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x98c6d92b rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa1fa000a rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa64c2a01 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa741e6f1 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xaed9bd4f rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb05404f3 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb13f1f6f rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc18988c7 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc8406ca5 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc9d510ba rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd23a2822 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd8e4591b rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe0a8ff0a rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe8606995 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xeec8623c rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf1a0f8c5 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x23cd983d rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x48b23bcc rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5721ba88 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x60093b5f rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x66fcfcac rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x77421226 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x9f90631d rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xa308811a rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xa9060977 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc45f2b97 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc7a8c030 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xceb9f73b rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xfe0dc97b rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x004a19a9 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x02a3fca5 rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0773e2e6 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1898f2e6 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2186838a rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x229fb756 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x252958a7 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x29dde0f5 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2b1d9603 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2e7acdb4 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3289c52f rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x350903ff rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3599772d rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3777ec2e rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3819a2cd rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3c0166d2 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3e0027e9 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x41b71b1e rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x41fce233 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x42ec7a6e rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x50ee6184 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x59c75666 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x632450b3 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6fa309b5 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7372ad1e rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x771e0dbf rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x780a5658 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7a8cbb03 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7aaa89d6 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x87dd1441 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x885bbe09 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8b30fafb rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9445409d rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x96b6313c rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9af4f197 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9c2d66fa rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xaf4df7fd rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb95332e1 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbe35103d rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xda4117b4 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdeef3f91 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe053261a rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf3ea25fd rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf49169d3 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf51b8e64 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf62ed647 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x1e4ce304 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x34062491 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x54e9a2cf rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x7c933df3 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x89540146 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x636f2dbd rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x72ffc7c2 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x972891a4 rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xe952cfe1 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x0dea1162 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x11c6bd55 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x16cbaf01 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2033e76c rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x218c0999 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2a18f420 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x6cae2a6d rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x787f2a30 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x7b6ea8e3 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x8e750d9d rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd66160d3 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe18f610c rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe2a4cb35 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe99c28c5 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xfc0503cf rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xfe2237aa rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x325ddecf wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x48dbfab2 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x7f8bb77a wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x08331da5 wl1271_ps_elp_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x08bd89df wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0bb92656 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0fd3d423 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x10198595 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x12db5709 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x158d1aec wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1619afe2 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1e4dfbee wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1f73a129 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x22756adf wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x22c1f007 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2614399d wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x27da9a8a wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2bd12722 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2ee63e48 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2f0041a5 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x382686ca wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x40e291b4 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5417046b wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5a6d3bc5 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5a9736ed wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5b074062 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5b1fa1d8 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x620e799c wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x62397dd4 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x62778053 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x646b0d2c wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x70469697 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x706503c8 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8365f56e wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8a67ec4a wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8aa7e59c wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9230ef88 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x96d23ccc wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa3d00221 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa913b0b5 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb198763d wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb805a0fa wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc3a041f8 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcd547767 wl1271_ps_elp_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xde0037e8 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xeefc05a4 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf7d89455 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfd2a11ba wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x2de36eb3 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xaf71f65b nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xb7342191 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xc4a15ff6 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x19b73710 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x2872087d st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7302cf2d st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x8dd66f77 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa0a6eb73 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb5335ac8 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb833b8c7 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xdaaac5b4 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x16f7d737 ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x1a94f131 ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x5cc417c7 ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x12adf52a nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x15abbf84 nvmem_register +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x1d72d4de of_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x224f51bf nvmem_device_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x35599f29 of_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3866e217 nvmem_device_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3b9a3c8f devm_nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3ea2f7ca devm_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xaacb2980 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc697b0f7 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe9a5d74a nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x045574cb ufs_qcom_phy_disable_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x07e038c3 ufs_qcom_phy_init_clks +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x0a51a42d ufs_qcom_phy_power_off +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x0ecc05a4 ufs_qcom_phy_calibrate_phy +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x10735c70 ufs_qcom_phy_remove +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x3a70c0ea ufs_qcom_phy_power_on +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x3d8e69ad ufs_qcom_phy_init_vregulators +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x4982d01e ufs_qcom_phy_enable_dev_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x4bc66a88 get_ufs_qcom_phy +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x6873417d ufs_qcom_phy_generic_probe +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x75ef51e3 ufs_qcom_phy_start_serdes +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x7a630182 ufs_qcom_phy_set_tx_lane_enable +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x83e5cebc ufs_qcom_phy_calibrate +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x890d0d82 ufs_qcom_phy_exit +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x8c28372b ufs_qcom_phy_is_pcs_ready +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x8eaa90fd ufs_qcom_phy_disable_dev_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x953841c2 ufs_qcom_phy_enable_iface_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xae9dc3af ufs_qcom_phy_save_controller_version +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xcaa35dc8 ufs_qcom_phy_enable_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xfca7449b ufs_qcom_phy_disable_iface_clk +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x8626e4bc pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xbd5dd69c pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xec7f4db5 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x3384b40f mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x3db9142c mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x3f7a9697 mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xb876cb48 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xc09fffa6 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x30b502c9 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x64efb6b9 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x6c5e3e76 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xb14bf9a0 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xbadfb5ed wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf3ffb0be wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x3ae553e0 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x049b170d cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x04cdd10e cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0a5adc69 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1032c5b7 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1344683b cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1556b664 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x24577e7d cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x26a1fc77 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x274ed1e8 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x298d2b59 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2fbd5f39 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x34c07612 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x365aa0a8 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x36f20f8d cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x382d417e cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x38f34343 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3927acdc cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a84e82e cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3c4445b7 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4e058758 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4ee9ee60 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x56d6e78f cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5c2a51aa cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x62e57c14 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6da3ec27 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7039e79f cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x73862c44 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x749d9b94 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7944103c cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7b89f55a cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7c8bf5e9 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x83736194 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8d8420fc cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x964d8fb8 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x981a395b cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa5f43b7f cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa7ef4518 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb08c5919 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb251d11b cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbf22cd27 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc3bc8fc0 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc7e2960b cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe5a597ec cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef1f155c cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef4d9301 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfadd279c cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x00b03abf fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x15b77fdc fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x33706674 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x59816b52 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x59f6a45d fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x75108404 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7cf84922 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7e3087f2 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xaba8accd fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xae715c1e fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb6269cf9 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc2cf04a5 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdb95fbf1 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xef326e1c fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf12505b2 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf77b88b0 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x03f2936b iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x1400a2c9 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x6f98ae4b iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x8b14afd9 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x9b412f44 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xf922c3fc iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x02aea2ab iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x04a034df iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0e175f0b iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x116983d7 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x117d086c iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1336906a iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1596237f iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1d751553 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2ff76b35 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x363273ad iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3f3818a5 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x48506a86 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x577b0f2d iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5e526332 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x66560212 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6adf62e7 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6d785107 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x78c76afa iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7ddd58f7 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7e8850cb iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x81339060 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x948670d6 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x97cebe45 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9e805d10 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa1b89445 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa7a5469f iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa967320b iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa9e2bfbb iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xad75e89e iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbe90e50b iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc25af3a4 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc6e25285 iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd048f1cc iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd1c48c34 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd743b264 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd7b12454 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd8c5cd31 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd8cd5555 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe7dd261f iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf447fa8d __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfb6bbdd5 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfe1eaa5e iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x04f4a6ec iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x08e17dbf iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0b20087b iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x14bc7b4a iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x311b0a76 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3469bc8f iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x36b2f7df iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5856485a iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5ec3ea49 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x679988ca iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x918990ae iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xacf5d4c6 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb6963b22 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb8772981 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbf0dd5b6 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcdddaa14 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd19fa5f5 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0add27da sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x20d55aeb sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x243aa42a sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2927306a sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x321f9513 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x37a245a1 sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x40e03de3 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x539fdb91 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5811c6f9 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5c5898cf sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5dcabfac sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6457690b sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6722c4f4 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x74603c81 sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x839a0a22 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x998b9da0 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9df5d152 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa3e3c5dc sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb98c37bc sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdffcf20d sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xeb22cd4b sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf0fbdde7 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf10717fa sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfce47b57 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0b1de088 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0edc64fa iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x12bb37d0 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x12bf9887 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1ecad041 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1fe134a9 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x23dba846 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2cf3fe40 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x34c139b5 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x47fa9fc2 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4a112e9a iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5774d9d1 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x63c06873 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6b3b9fd5 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6b810d3c iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6d490866 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6ec77981 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7163dfd8 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x743eb98e iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7dbf32b3 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8e9b77d7 iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8fb817f8 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9176c38f iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x94ac18b2 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa2a206fc iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa3c35908 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa64515f iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaaf9e4b3 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xafac19c8 iscsi_is_flashnode_conn_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb3eb9de8 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb80a4e26 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb8f3abfb iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xba69fb06 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc9d24e6 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xda919db0 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdc1603e5 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe2e4202a iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe8c987bd iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf293be3d iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfbfb2a61 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x66e2812a sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x944a362e sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xbb13ce91 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xe6108393 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0bac2817 spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x10d569cc srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1800e7a0 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x43cf34da srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x81070660 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xd79ad1af srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf88d3615 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x0231e7ed ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x1f9adccd ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x2807ac5f ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x43c42f38 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x75320cfd ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xb1327f4c ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xbf4503fc ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x0397927a ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x0c0b2394 ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x2c29044c ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xa8a7e23a ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xc21e5a4b ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xd4812397 ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xe505894f ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x58988041 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x9f706fea spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xa24ec535 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xc1387343 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xdd4b9b37 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x3cb79f1f dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x4fc87ca7 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x84c5dbea dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xf79f6ec7 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x01bd5e08 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1c26f4aa spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2cad06d3 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x39ae6d4d spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x52c2f4a7 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6a2f7f0e spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6d526fcc spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6d856a1f spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x784a38e2 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x791053e7 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8122943b spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x823e6b30 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8b4a19a8 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc3b791b1 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcbbecb2e spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdbcc6c2e spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe0e41c0e spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfe054e33 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xf0239914 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x03d4dad8 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x10700776 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x196138d7 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1b9d1062 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1ef5813c comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x22ab9e71 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x24d0dd65 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2b2e5332 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x31e32acf comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x45117c14 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x486ff2bc comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5029efc6 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5497d796 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x56b82457 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5dfad081 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x634080ae comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6f351a78 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x76fa9d82 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x785dce9c comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x82e585dd comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8407492e comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9706c589 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9a01b3d5 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa05b9597 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa5092297 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa787df47 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xaa4bec02 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xca0dc546 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcfb2ee1e comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd128b53e comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd85d04b1 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe5e5e0b1 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf0251642 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf104df0f comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf86c7b36 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x31dc7c5d comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x6f8fbba7 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x79bd9235 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x85440426 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x9570dac0 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x989fb095 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xcee97118 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xecb5a48f comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x25728805 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x44a370bc comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x53c7c0ea comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x64cb0f7c comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xd02d2a3b comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xd26baabc comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0xa90e528a addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x48999d00 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x742be731 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x6d2d8b50 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x1c198ed0 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x271dc7cd comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x374dbcdc comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x66d57106 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6eecc073 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x7ef38f00 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x823e6ab4 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x92c19371 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xaad7d70d comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb19d2110 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xbdd39422 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xccb140e6 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xf687b1be comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xc1b3fe65 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xdd7e871d subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xe99a770d subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0xc77de2e8 das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x173d3afd mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x187c400f mite_dma_tcr +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x21b6aa1d mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x3121beca mite_sync_input_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x3e29f61e mite_bytes_read_from_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x3f40afb6 mite_sync_output_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x400abc74 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x487c2045 mite_get_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6d5248dc mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x79a6a371 mite_bytes_read_from_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9bacc455 mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa889c421 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xaf1904ef mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb0da904b mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb6bee8df mite_bytes_written_to_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd17bbc44 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd9fd0879 mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xef24f417 mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf131bdb0 mite_bytes_written_to_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf8bde62f mite_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfcec0fd7 mite_setup2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x560d0ef8 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xe8d13b78 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x62fa8e53 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x7507b603 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x910c7591 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xac91f1a3 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xb654ba40 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xc44007b7 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xc4bbedae ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xfff4bfb2 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x28fa437d ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x4cdc157f ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x52f391e1 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x9b0bb9b4 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xc17e7ba9 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xe2afe636 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x0b29db1b comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x2625eda9 comedi_close +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x36d763c7 comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x4af1572a comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x5d1d5127 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x86628806 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xca07519b comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x15f27437 fsl_mc_resource_free +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x22ebe54c fsl_mc_object_free +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x26ae0f34 dprc_scan_objects +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x2912c6a9 fsl_mc_io_set_dpmcp +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x415de135 fsl_destroy_mc_io +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x4ddcc96a fsl_create_mc_io +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x5fddc8b4 fsl_mc_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x62d1c89c fsl_mc_portal_allocate +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x6d48e82f fsl_mc_bus_exists +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x6e00454c fsl_mc_resource_allocate +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x8aca6100 fsl_mc_portal_reset +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x8fdbb066 fsl_mc_bus_type +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0xa7ea280e fsl_mc_io_unset_dpmcp +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0xaf57121f fsl_mc_object_allocate +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0xc79322e8 fsl_mc_device_remove +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0xd24178ca fsl_mc_device_add +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0xe73c4178 fsl_mc_portal_free +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0xebbc5e8f dprc_scan_container +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0xfe2c7ff5 __fsl_mc_driver_register +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x96b58fbc adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x1a0fbd27 most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x23786f65 most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x369c1824 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x7b40d05b most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x7ce1833d most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x8b12d7a0 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x8ee5b352 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xa22ff03a most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xd2151543 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xf148a4b5 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xf85999ca most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xf870891a most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1b8405aa speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x46a0fb94 synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x523c4964 spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x56355aa9 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x91eeb28b spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xa150b798 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xca0006c7 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xcc8263f4 spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe1165ed5 spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe276d36e synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xf7095f2e spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xfb60671d spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x260ec4ae __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xab1e1263 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xea2e76bb uio_unregister_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x6676ad8b usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x7f0289c8 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x9496a298 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xb10f21c6 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x973d5ee9 imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xa2553988 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xbefe3dc2 imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x21b7c96c ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x4f8a1b96 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x791c1e4f ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x9d63adc1 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x9e3500a0 ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc9f0d089 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0b6ec58e gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0c7991b8 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1191de9c gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x17e13411 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x30bfafba gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x39bd6cd6 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x41652627 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x47785b5a gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x616dc70a gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6b2ea4ed gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x70631117 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x72394db7 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x82382ddf gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9957f5cb gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc3bbe1a9 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x23192f9f gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x52134434 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x418956f6 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x9d63e9bf ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x9fda93d2 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x16ca691b fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x17253077 fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1dcefe32 fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2e58bbd5 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3863e2be fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5255b366 fsg_common_create_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6240d703 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x64c78c45 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6a464e3a fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x759621d2 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8c3489c7 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8c8b4666 fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xab9f50cd fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb2125d8d fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd128abd6 fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf315ad74 fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xfcdfcf44 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1d1b03d8 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1df46690 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4587f736 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5865d982 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x63ada566 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6fd38bf2 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7505df7f rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7a572ec3 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7e823bf0 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7fe97ab8 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x986df35f rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9a80c2aa rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe4934e3f rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe6156c6a rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf2bc3316 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x00534b10 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x057e4a37 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x09b7151f usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x124442ca usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x20df9c82 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x27484492 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2d5261b4 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x39ddabcc usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x486a9280 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4aaedbdc usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4ad2bc1f usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4b040d01 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4f386527 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x51f50db7 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x565ceb35 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x631ea281 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7726d63b usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x77baab68 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8207b078 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x887e5eb8 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8bbd499b usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9ea74d07 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9ed6d7f5 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc0ccf880 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2fd6673 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdadc3e74 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe984fe62 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe9f81948 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xeca8d85f config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xee1789b5 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x05b2eb52 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1c5ba183 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x77ce7389 usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7e3eafb4 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9b079286 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9f391d98 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa460e3d1 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4744dba usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa90e178c usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xce35920f usb_udc_attach_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd09ed744 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd36fcf53 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd44bfe91 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xffa60d83 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x5e337a34 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xd07cb016 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8e44c5b4 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x94e18a3a usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x9fcf5ef1 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa71f7d78 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb15d307d usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb75bda1d usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc185f9b0 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc19eaa28 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd624607c usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xbbdb84cb musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x59651c4a isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x52f2b906 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0b6baabc usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x100e0fde usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x19e43980 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1aef7c37 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1f1194fc usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2b0f9847 usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x69f61664 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7992612f usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x855a65d3 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9f3ec6b2 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xba4e1b75 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc565bf60 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xcb17f8ee usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xcf7b91f6 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdd3fa395 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe692c831 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf1d28c8c usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf24a159d usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfbae34ad usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfd5d2b84 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfefc9045 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x11b52171 usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x210a7fcb usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x258d34ab usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3a8a385a usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4c66c8f6 fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4f7de1e0 usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5476f23d usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5b39e547 usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6df2e6f2 usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6ef46ef9 usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x71df200b usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x75c4d44d usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x866572b8 usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9192509c usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x944de70e usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xabf41b26 usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xaed00082 usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb2f8fbce usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb90b7cdf usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xcc146108 usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe1528e53 usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xedbad93c usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf5174591 usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xffab9eda usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0db67bf6 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x205ce0a7 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x494da29b usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5637a49e usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x598c67af usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8825b5b1 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb766d48d dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbe51b63f usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc5032c17 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc688f3af usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc74311fc usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd3968af7 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0bd816f0 wa_process_errored_transfers_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x122f15ac wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x16035ca7 wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x1f487b42 __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x39d58e11 wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x4e2f2560 rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x8d5b3f67 rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc1db9ce1 wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xd3dd2bd0 wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x059ed094 wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x08f6d4ee wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x10e8cfda wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x23d89adc wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x2d42d34c wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x2e07ad34 wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x34071818 wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x41356c56 wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x511c8e73 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9ad34447 __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xad1cb96c wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xca568ea3 wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xced0daf9 wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xdbceaeaa wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x18f50991 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x26c59518 i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x8fff3041 i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x174aba40 umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x2c24ff37 __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x41928418 umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x9ca23aed umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xb426561f umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xfbcd9374 umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xfdba58e8 umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xfddee83e umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0c07be41 uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0d78016e __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0e6bf50c uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0fc02440 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x11be25ba uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x13e82d3c uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1423699f uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1632e313 uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x184ead64 uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x18b8b296 uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1d05b68a uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x22d35c37 uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2580ed12 uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2ee4db7a uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x335c326d uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x389b55a7 uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3b35d878 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3dc2f40a uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x40efa5aa uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4e1bc53b uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4f7c0842 uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x60179dd1 uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x61a113f2 uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6e8521fd uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6fbebe50 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x816b9e92 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x90204094 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x91215eba uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x95e873f9 uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x99ba1fdc uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9ad5a3ff uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9b5b795f uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa67e53e1 __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa7b09551 uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa8e1aa79 uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xac97316b uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xad34c843 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb81205d5 uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd2195751 uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd91247e9 uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdfbe58df uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/whci 0xbfc12438 whci_wait_for +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x09354409 __vfio_platform_register_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x84dbee1a vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xd5e0b705 vfio_platform_remove_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xdc1b7297 vfio_platform_probe_common +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3b2fac32 vfio_external_group_match_file +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x601a23f2 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x94d0e726 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa8c3e122 vfio_add_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe0ace7e0 vfio_del_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe1d5a6ec vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf24dd7ee vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x3f9fb178 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x80502bbf vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0ba91889 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x16d236da vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1a19f393 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1e52f6f9 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x21147741 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x23156c8c vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x29e357c6 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x39076137 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3a8e8d5f vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3bcc5413 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x52170513 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5362e064 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x58ccc7e8 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x65cada4e vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6724d3af vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x72aac5ca vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x846a045c vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x96170780 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9ccf11a5 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9e0fcc00 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa9e34688 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaa41d22e vhost_init_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xafa17b67 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbe3af66f vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc7eac1fc vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xccebc768 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd3d50067 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdf7f499f vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe713111e vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xea4c1a37 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x12423e88 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x47b7a008 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x67fe8da6 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x7d3b15fd ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9e345634 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa6a3ec9b ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xf25c4b01 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x0a1bdfe7 auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x12f064bf auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x2158f475 auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x73f1db0e auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x98a3d8e1 auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xb14c7026 auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xb5c72cd4 auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xc4e22fa7 auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xd5ff6e56 auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xff68e36f auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xa7c5a432 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x0913c0e8 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x150a5e8a fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x16ffe563 sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xcf70b0b1 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x0a35550e w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x1be2c907 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x5917acf9 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x80fd4a0f w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x897e217e w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xad3bcfa9 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xb5dbcd9e w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0xc8ece771 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xd5442a7c w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x823e4c3c xen_privcmd_fops +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x13668e03 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x3040d3f0 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x8708e516 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x05943e3a nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x156dcc10 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x59981451 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x80218c29 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8a531f00 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd62c0194 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xebb78d05 nlmclnt_done +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x012e5dff nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x02148f84 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05fe83a6 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08fd1d3a register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a586f8f nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a876290 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e755512 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x169c19d7 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x173a7c9d nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18316fc6 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a1b13b8 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d458b62 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x219573ce nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x259d2295 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x276351b1 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27faa7aa nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x284f1496 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x292d3799 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a687eda nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b105707 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x315d05bc nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32113da0 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x341ea369 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34282b53 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3596e606 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b317059 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b56924b nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b7c2f24 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c3de50b nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d12e682 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f9c1c77 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x437a9acf nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4408c9c2 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x448670f9 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44dff28a nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d998f06 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e0cfa77 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e4c706a nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4fb6a7a9 nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51e31a40 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52d205c2 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53cfa4fc nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53f0cbe2 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5433069c nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54c824e6 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56405290 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58ffe22f nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x591fe4ae nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59d5a2c8 nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a477608 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b159aaa nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c1e8e97 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d9ce83f nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e29ba67 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61bbac19 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61de3fb4 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x620f0051 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6371aa39 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6655bfc2 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x688f1173 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x696b37f3 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69d52719 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a94b718 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70cd93a6 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7333a036 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73e13d47 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77fada57 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78b417e6 nfs_file_fsync_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x796ede4b nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x799d9eba __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e0f2d7c nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82b9d267 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85b90f08 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88289af1 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8cbb8083 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8da5bbd0 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8fde4ef5 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ff63e6e nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x919e4751 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x953ed1d1 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9578d6ff nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96fcc827 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d91adc5 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e9d6d79 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f230649 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1d9683a nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4d9cc0c nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb103eb49 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb10d8a3b nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1370d57 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb41f7c02 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4b74b3d nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbbee7153 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd353c3e nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf7b451a nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc073a66e nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1f4c018 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc344f844 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc63cb018 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8608aa6 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc920e4b2 nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9a73f22 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf9d3534 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcff281ac nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0adf378 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0f4eb2d nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2bf1d3f nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2d0d044 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9268a27 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe09f165e nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1689964 nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe17fde24 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe5178db5 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe572d5a2 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe689c128 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe709c4b7 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe89dc784 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf04f18d3 nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf21db6bc nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf647dbc1 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa45f831 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa4bb38c nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xffc33dcb nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xffd20bb2 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x5fa2f832 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x017cd641 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x056f8b0c nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0d67cca7 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1093b108 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x119f6683 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x16d41bd5 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1a983675 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1e66e9fe nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1f8f4494 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x247fa563 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x26e9d47c nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2a13fa50 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3310948b pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x390dac81 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x392b5386 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3aaa2cbe pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3e052148 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x435c6a9f pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x49a37069 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4b144431 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5c8215e8 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5d29cee9 pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x70c0891e nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7654f347 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x787b1151 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x804960f1 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x89636e14 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8d2b93fc pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x972756ee nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a86d989 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa5e8572d nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa6090adf pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa831526a pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0480ef3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb39ff10b pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb6b60849 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb89596b6 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbcd24af8 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc03da5e6 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc2beb273 _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3138488 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3f98621 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc5d186fc nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcad7be29 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcd0877b3 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xce7c1fd4 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0b5b7dc __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd5dbe981 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd688c4b1 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd894cbfe nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xde1e5ad4 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xde391e21 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe226f9bf nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe7f8acbd nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe9814ddc pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed841e88 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf097afba pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf6640d3a nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf986ae89 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfcc3ca72 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfd24985d pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x685615d7 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x98068911 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xcafde29c locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x2eacc8f8 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x5c7c685d nfsacl_decode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x06206bcb o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36a28a9e o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x62c94fb4 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x695b5ba9 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x70386cbe o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7fe5bde0 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xdfcc1e56 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xe0ecc0fb o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x0bd168ba dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x1f83e52e dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x3a1b03aa dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x54b69530 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x6d48a266 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xba093ec9 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x2a6ac76a ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x2d36909e ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xf028c16a ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL kernel/torture 0x0d3809aa torture_shuffle_task_register +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb +EXPORT_SYMBOL_GPL kernel/torture 0x5095dc41 _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random +EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait +EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop +EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end +EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin +EXPORT_SYMBOL_GPL kernel/torture 0xcfbd6c58 _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress +EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch +EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch +EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch +EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x4d8e8a5c notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x52c234c9 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x201d8ea3 encode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x29fa419f decode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x0adcb055 base_inv_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x221df614 base_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x4da25bec base_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x63f42b6a base_inv_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x76203267 base_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xca3140ce base_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfa5eee0a base_inv_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfc02472a base_inv_true_key +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x5a4fedaa lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x83b08557 lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x26b30821 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x2a04d5ff garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x4b714a03 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x6a547d93 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xab7648a4 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xb29d2793 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x3845a141 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x97503f0a mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xa719ed9d mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xb75c0543 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0xdc5be33c mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0xe8ecb783 mrp_register_application +EXPORT_SYMBOL_GPL net/802/stp 0x5bdb5327 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xf92b9e8d stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x43aacc44 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0x99156f30 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier +EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier +EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast +EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr +EXPORT_SYMBOL_GPL net/ax25/ax25 0xfab338a4 ax25_register_pid +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x078fd6f6 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x43fcabdc l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x4d6ed7c2 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x53953f1a l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc2341a4a l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd7827cf6 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe579e223 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xea182d51 bt_debugfs +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6204b406 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x74899e77 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x902294b0 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa97bf7db br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbf8a1849 br_deliver +EXPORT_SYMBOL_GPL net/bridge/bridge 0xceb7213d br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xdee824b4 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe609839e br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x64f34c17 nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0xb9cfd22d nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/dccp/dccp 0x06711d6b dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x144e2be2 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1c371116 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1e54d81e dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x28c2c340 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2a5f7c13 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2b53b7c4 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3505c49e dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3c63189d compat_dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x42f628ea dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4a7e28fb dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5231d686 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x526144ca dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59e93606 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5a784ff1 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x609abaa7 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x623cb169 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x64e8ebe0 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0x68cb080b inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8ab8a88b dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8b5289a0 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x908995f7 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x99c521b0 compat_dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9f1a62f3 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa5c2ed55 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa5eae370 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbb09037b dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbcf4a5fb dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc01f49df dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc4e95e42 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcdd97689 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xce5d1128 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd05268a8 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdf87254a dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xea5db010 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xff17995c dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x2f936d67 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x49458fe0 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x5064904d dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x7360268f dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe14537c5 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xeb8a857e dccp_invalid_packet +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x0d0d9998 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x14ec4836 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x410f8d0b ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x42e45c04 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ipv4/gre 0x9b4d3da4 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xe0636522 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2c5d2738 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x40e8b2f4 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9e848d55 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa9348e49 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xebdf0ca2 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf20d2f6b inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x098adb8a gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x018f5c27 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x19f3bf15 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1c11fc60 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1c8296ba ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x295f3dea ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4ea5430d ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x508cd007 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6d742738 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc2c50ef1 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcfade8b1 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe7e29e08 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xec53672d ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf31d8136 ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfc79b0b2 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfe2bd2f1 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xa5422e84 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xd98c41db ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x14bfd4b1 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x3dc5fd27 nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x9c2f1040 nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xa33d0c32 nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xdc4fc2e8 nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xddef1360 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x40ece27e nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x27693bef nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x99a370ae nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xd8b10c8a nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xefb843cc nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf1ee8e1c nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0xda067fc2 nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x06dd9ae6 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x80bd9619 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x909890e4 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa12faa82 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xe1ca1f93 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x00bf912a udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2e974871 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x4b3b6004 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x97153886 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x02d6f742 ip6_tnl_dst_reset +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x291d4b43 ip6_tnl_dst_get +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x4de4d979 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd7e8984e ip6_tnl_dst_init +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xdd103328 ip6_tnl_dst_destroy +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xe268d145 ip6_tnl_dst_set +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xf2619a25 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x0da73ad0 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x4c1d1bf9 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x2519967e ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x334b2bb2 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xc70f3da3 nf_ct_frag6_consume_orig +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x59a30793 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x139d37ea nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x13d1cd86 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x62590170 nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x73b39d14 nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xab307748 nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x6ea30a5b nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x539d50bb nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x8ffbef0e nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x9197bea8 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa533a106 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa683aecb nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0xd5cc5df3 nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0eb5574e l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1064fe7e l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1ff12936 l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3e2ec352 __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4d06ae63 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x613ed2b6 l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x61afc47c l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x730e7188 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x86638f97 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9adbc4f5 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc653f47d l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcf8d3d77 l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd528185c l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd73c69da l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe382dbe5 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xff57a389 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x90e93ca1 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x00d813ec ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x08cb3e5d ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x11e1f72f ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1f216d2c ieee80211_set_key_tx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2142d062 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x33441e12 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x43f90bba ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x57f7dd57 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x58a151ae ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5e4c8997 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6307ef23 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x668fd28c ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x683f3501 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x95ecf18b ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb06004fd ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbcd3e2ed ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe1745601 ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf8f93179 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x44998607 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8729a220 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8a1ce48c nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xb9107e88 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x033a730a ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x03b97d7e ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1b7b6af6 ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x35295367 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3784cc3e ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5506eff7 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x61a7fc83 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x65c8d546 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6e4934c0 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7bc98af9 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x93feacb5 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9495ead1 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd06a5682 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdd57fbfd ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe1985c08 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe288f689 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x0c38c017 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x3dcd63ee unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc54163dd ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xd59d3549 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x02357c55 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x03f22d11 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x08044cac __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0934633d nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ac75d9f nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1135c19d nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1166232b nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x125b8fc1 nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x177fe163 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f104050 nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x206ded43 nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20df469d nf_connlabel_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2d2622d2 nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2dd02ed2 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2f23f60b nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31d3bce7 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x35277805 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x379fafe4 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x38c2e269 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3bc10891 nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3e6b0da5 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x408c140d nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x411b2a4d nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x53297554 nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x585ef5fa nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x586e66a9 nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59df1ad5 __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5db9d965 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6212661e nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x670f06a3 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6868defc nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x688a525d nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6b60f8ab nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6ebc264a nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6ecc3af5 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7227521d nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x765b2547 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x806ad15c nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x825199bb nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x82d2adda nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x83ae002c __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x84d86cac nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a93821b __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8dc5de70 nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f69020c seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8fc6ec95 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x92532e14 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x938432cb nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9450a9ef nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9526d4b9 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x985aa0fb nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9a3eb644 nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ee1850a nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9f036ba7 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa0bf0c3 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xabb464bf nf_connlabel_match +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb14534de nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb354f879 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb4219ce2 nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb79cf94a nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc1329c66 nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc644fad3 nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc68c5976 nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd0e434f2 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd1c8bf3e nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd39b001c nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd492a9a5 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd4fcdba1 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd6fdf59d nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe1275999 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe12881b2 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea37cb1b nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec187081 nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee6d0de1 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2e1588e nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2e710f9 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf5e94a07 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf63c2469 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf653ad1a nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfde03963 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x465a5f4a nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x7d3fa5fb nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x929753aa nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0a284587 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0df9be4f set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1546182b set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x154cf707 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x43baa4c6 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4aa09c5b nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb26d4532 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe05322b2 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe8d1b723 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xea55413a nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xbed5cd23 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x41f609cc nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x5b51adbb nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x6e457ac0 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xc4f13fc5 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xad131109 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xae9ecb7a nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x023ba664 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x09157149 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0bff34ea ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1d3b0b37 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2e9f4c30 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd07a993d ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd6d7f0b6 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x06e5e6be nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x08eaa549 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x08cd01d1 nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x3f346823 nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x4e94782a nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xc9ee4162 nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1376cf90 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2ea649c7 nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3f70abf2 nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5354377b nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7091a5c1 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9a7694ab nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa71e4f22 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xabbec2e8 nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc8ff393b __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x1d36d064 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xf5364599 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8841d39b synproxy_build_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8c467622 synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf57a006a synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x07acb807 nft_register_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0d753944 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1318fdc2 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x198a5d28 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2649e202 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x326d2245 nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x35b7c21b nft_unregister_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x376322ed nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x39bb555a nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x58b3f2bf nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x66b03e44 nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x73f5df3f nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb76149dd nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb7b4c04e nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc3e3d1c3 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc3ed3c6c nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe7c55aec nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5d044c13 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5d2d54d0 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x74678f21 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x8261a046 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x8b6f89e0 nfnetlink_alloc_skb +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x8fba14c6 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc280aadc nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x37a48c15 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x47e569df nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xf73e5ad0 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x64d72bcf nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x30773c43 nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x438f64b5 nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x5d42bb32 nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x07ae83ac nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x5cbacd54 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x97269007 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xadeecb3e nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xc445a811 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xef127a4d nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x12d8da20 nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x7df71812 nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xc2e17e76 nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x66a7958e nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x7fa9b9b9 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x00388f3b xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x161d1417 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1880a5ae xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x37694de7 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3a80e1e3 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x54994873 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5d9ac9e3 xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f82f1f7 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6483d5ec xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x691a6d69 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x73088912 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x73cee41e xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7502ab2b xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7b83ee8e xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8cb47df6 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9aed4e38 xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa2afe21e xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbaa7d856 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc66b587a xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1863d39 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd6911ba7 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0b4971b xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec24fd82 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfb71cdb1 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfc635ee1 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xe9ef9dd0 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xf156a7fd xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x2381022a nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x612bc9d6 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xa6376ed0 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x173b5e03 nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x430e8aad nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x48209b80 nci_uart_set_config +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1002c835 ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x16dc21e9 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1f5a6b29 ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3128743a ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x39183ff0 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x65931b7b ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9e58bea0 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa0c4f170 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd49c5a53 ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x08ca4e52 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x0982e907 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x099e3769 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x0eb3b677 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x1190c662 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x15be20fe rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x2eb78f83 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x37a5f9d1 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x4c17e0bd rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x598164c5 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x7b2fa5db rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x7bc62829 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x7c167352 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x85132417 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x8771eb0f rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x8a32f9a2 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x9faca91f rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xa43080bf rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xb2a95c34 rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0xb95bdc15 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xc2a02c0e rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc9983424 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xdc31c1c2 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xfdab668c rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xfe840783 rds_info_register_func +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x8c02234a rxrpc_register_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xdc9649fe rxrpc_unregister_security +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x090302f6 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x254e9e7d gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xa2adbf2f gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00325002 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x004eaaef svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03da6b53 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0435b4a6 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05b865c3 xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x061a940f xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x075013eb rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x075c92b9 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07c95274 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x081f2ef3 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0846db58 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b9d1620 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c699896 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d04102e svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e185ece __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10490f43 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10faf9dc rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12e10e91 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13599a61 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14564725 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1506f3e1 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15716f80 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16f1a164 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17428b8e auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1765aac8 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19ecb4cc svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a85eaff svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ac7daa1 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b327902 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b551c16 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bb76a2c rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d0d1671 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e2aec35 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fe0ab0a rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20057c28 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x219b1e5a rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x229edf11 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x246f3fce xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25f3f505 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x267eb195 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26cb32cb svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27d4aaca xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27f81202 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x284164a2 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x289f95a8 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29938c12 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29b7c461 xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a6887ba rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bf338e9 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c626025 rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c7d778b svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c82ec7f rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d703da7 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ddb8129 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e5801ea rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31e46761 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37117a3d rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37392ca9 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39698753 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c1f992b xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d3bf214 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e008938 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42d54f64 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47458223 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47ca2ef8 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a75d505 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4af0ddef csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bdbac87 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ca8e7f6 rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d8695ee xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e00f213 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50be4f9f xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53dfc630 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55a0d440 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55e5795a svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57861b58 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58540713 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5863e256 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b244892 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5df9a772 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f0eb6ed rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fb31fea rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x649f75b3 rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6517c1e4 cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x664cd472 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68e5bf2e xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69c807b2 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ae46bfb sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b2af141 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d0fd9bd sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7246759e svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74bd2713 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x787cb438 rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a2c799c cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ae5d192 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7afb8b60 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7baf8f64 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dbc437f xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dc6dedd xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e25a40c rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80209eda xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8088d9d7 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80dca99a rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81877a69 rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8422a5d8 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85be0466 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8608904d unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87801f26 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89cbca95 rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a2fa280 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cce36d5 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8de0c0e0 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ff75ab4 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91fecb9e rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9272be7d rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94f8d444 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94fb8840 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x951a98f1 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98335e14 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x983dd6dd svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98a71da1 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b2499c9 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b612e83 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b7f06b3 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cab4fae svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cb5d6ee svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa08957ff rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa80816cc rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9114c0b rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab121b00 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabc5f2ea rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad760673 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae3c0e88 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf21bb28 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0e7729a xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb13a0001 rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2657701 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb29a4024 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb33436e8 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb339cf10 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb42f8efd sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5af41d1 rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb60ac573 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8220bd4 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb941abd2 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0060bbd auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc18d1c55 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1b062c7 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3e6c3f7 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc51f65d0 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc67dcad1 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7067e51 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7284cd1 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc774a4af rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc981cc43 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb8c8b36 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc193337 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc7a2cfd xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd19607d write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1de6a9b svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd23b07ad rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd28804ce rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd48de102 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd79069e4 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd819a07f svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb080289 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdba6490d rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdba70d76 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbc83283 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc5f2728 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdef7eade rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfba95dd svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdffd4ec5 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe31e9783 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe33d3aab rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3c72636 cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5afc5fa rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6829be7 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe90aeb7c xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9bc1143 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeae51c3b rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebae5d45 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec0d5452 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec3361cc xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedac6cf4 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee39b397 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef7adc13 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0dc5de0 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1372155 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2114e0e rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf46c1375 cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5187a7c auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5c11666 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6f3a94d xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9236123 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb15f2bb xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb3c2720 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfce42f43 xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x03439003 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0d1f22d0 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x483ac492 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4f5c2123 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x79d98244 __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x87b13c3e vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x970b77bc vsock_pending_work +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9f7d49bb vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb365fa95 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcbd296d0 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd01c3340 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdb05d97d vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xea541b80 __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfdee048c vsock_stream_has_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0x06c4a32e wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x308e22eb wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0x36eae013 wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0x4c320139 wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0x5681665a wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0x7e72fb93 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0x9444ea9b wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xb4f47de9 wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0xcba32c78 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0xd2e8b507 wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0xd568f374 wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0xd5b3bb06 wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xef7321c2 wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x06848b4f cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x14269660 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x156d9e9a cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x442affc9 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x47c5a859 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4b740296 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x89465208 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xab172dae cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xaef3febe cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc7198f6a cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc988c158 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd09ac015 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd767f398 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x362c2005 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x47281d12 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xb5fa7759 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xbc2d2412 ipcomp_destroy +EXPORT_SYMBOL_GPL sound/ac97_bus 0xe6bc75e7 snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x4a8195ab __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x5954292a snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd 0x4056107e snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0x46d92a0c snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0x78757160 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0xb7ba9926 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0xb7ce30c8 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0xcf953392 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0xd024c08a snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x389bc339 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5158d14b snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x75230961 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x83f582d8 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xabad44c6 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xad6f172e snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe27a3a8b snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xee791f47 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xfe7af512 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x188a372f snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2ac11cd8 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x372dbad3 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x42a70324 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5d6f32ed snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x73ddbbd2 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa73a7edf snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb4c3d93b snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xba105f1f snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xdc2fc632 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xefde7d71 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x02a633a1 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x12dac3f0 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x50324e68 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x57cb4254 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6103ad2b amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x78fa9017 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe0fc2398 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0033be34 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x006fc33b snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0155c3e1 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05d55a57 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x06b2f674 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0924e507 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0aed2c8f snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0b019e2a snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x13e9c8fb snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x15156212 snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x15de06a9 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x17ac0396 snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x186ebd5c snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1ef00bed snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x28f2e11f snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2e9388c5 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x413d12df snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x42069ac6 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4422fc42 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x48c5aa04 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x492db876 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c77eebd hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4ccf72b8 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4fc3e69c snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x533ee054 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x544a62c9 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x55ea9416 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5a784813 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5db2aacc snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5e721209 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x63f2fb4f snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x684d8676 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6d4af999 snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6ece4346 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x70d67c11 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73fc8bbc snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73ff46a2 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x783c5839 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7a8a88c0 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ec0ba0c snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8222b262 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x840b3006 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8bd108fd snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x91e1e9ac snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9ae4ed1d snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa4e29588 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa7b0afa7 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa98150b1 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa9eceed2 snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xab725b2d snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xad3bb77e snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb7ce49a9 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb8f83621 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb99daec2 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbad924c1 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc142bb9f snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc2260373 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcd482251 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcf273e88 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd051eafd snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd24b993d snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd78b5b0e snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xde364830 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdea3c518 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdf92cd00 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe662064b snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xebdba487 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xec4e7bc4 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf4321c0f snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf947b2e2 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfc057f3a snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x27dc7c38 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x4109f2fb snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x81c66b03 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xcb4ef198 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xcd41d767 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xeca82bdc snd_ak4113_create +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01e4d483 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x02869cfc snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04e16500 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05032796 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x053b34af snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x090a9e2b snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a30bc87 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0d3bd44a snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0d801e58 snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e847122 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x147fecd3 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x158cad8a azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x17223faf azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x185a5469 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x190aae98 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19a44185 snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x261a6749 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x280bb1d6 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x28b3823a snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x28d846e8 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x29f97767 snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a1a1b22 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d90e74a snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2f68c5bd snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30af5b11 snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30bc2bc0 snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d19c414 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d818edd snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e450f8d snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4d85566c azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e24425e snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x56f18160 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a829cf3 snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5e1d80c8 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f84bbc4 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x632179e6 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x672c6338 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6964abd3 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a68acd0 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b219b3e __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b329cd3 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b33c07c snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c0a45b8 snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c193569 snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f6abd2b snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7135f9e3 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72f6a55c snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x785cf4e1 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x79633797 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a5a4e0a snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c1bdbba azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e4a68b0 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f5a223e snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x808e8962 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x82eccb64 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e0eb144 snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e4303d4 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f96c81a snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9188305c snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x94f61108 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9600b08c snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96a638c7 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9806bfdd snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x996a6900 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa0f7ea56 snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa39447d2 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3b14bc2 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa620f335 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa6c50662 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa75f7af4 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8f07725 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xada181f6 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb13a3800 snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb26f2ff6 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb80da27d __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9726120 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbbbc18ac snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbcc1c943 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd849361 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbdac7f26 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbecc4352 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc45c1852 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc477b28c snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc76b4890 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc99dece8 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcab6eabf __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcbb93208 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcbea5888 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc170b04 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce1f1a39 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xceaf2dfe snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf116f0a snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf5b1ee4 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd1e715fd snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd412a0d8 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd43bc2fe snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd7114120 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd77ea919 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda14ccc8 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb81ca8e hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe043986f snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe109618f snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe4370911 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe5be0398 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe70115c0 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe795c894 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe9285206 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeaa6e396 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed8766e2 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xee2d2ef1 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf0279e13 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf03000ef snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf18bb826 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1cab010 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf37c00e9 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf61a48a7 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf72919fd snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf766a80c snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf9efad1e snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb39b429 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb596c26 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfbbd0663 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfbc5217f is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc7caa0e snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x05e35bac snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0b94ae0b snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1585939b snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x44a5931b snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4a1f73ce snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x642ad372 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x86f2de72 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9b943582 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa03827d3 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa1261328 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa4bc2006 snd_hda_get_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xaf40e507 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbb941f21 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc084b7ad snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xca7122c3 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd0292cc8 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd26cd91a snd_hda_parse_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdbf61794 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe712fd00 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xeda36503 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf33ac589 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xc3d8d52f cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xc51b420f cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xbf638dbf cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xbfeb1c4b cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x5afef306 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x8c876018 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x9d7f74a8 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x34d6d0c8 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xd7dda028 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x241ca6ae max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x188142f7 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x55063f01 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x9c15f814 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xa88d8d3b pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x3e81021d rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x4e7d624a rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x353b33c1 rt5677_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x0414ffa7 rt5677_spi_write_firmware +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x8d584a9f rt5677_spi_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xd658ccf9 rt5677_spi_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x2765c5f1 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x85f25e36 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x86b9a016 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xdd370573 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xf51f60f6 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xe5f96733 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x32cead2f ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xcc3276f3 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x5ac34972 tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xa9f9fad8 tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x9ce3c363 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x071827ec wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x8d06873b wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xa0bdf544 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xec01137a wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xb107d187 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xf90c02d1 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xa555f3c3 fsl_asrc_platform +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xedf62bac fsl_asrc_get_dma_channel +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x30693bb7 imx_audmux_v1_configure_port +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x58631dab imx_audmux_v2_configure_port +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x7e78a386 asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x8a0ca204 asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xaba35299 asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xba652082 asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0xae160151 asoc_qcom_lpass_platform_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x03dc13bf snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x098d2c78 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0bd47a5c snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11837e44 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12cc95b7 snd_soc_remove_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13cad695 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x152a974a snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1aed5b90 snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1db37b8d snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e30a778 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e676d1b snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1fb1a7c5 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ffd40ed snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20f0cd9f dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23f14109 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23f1a776 snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x244b4556 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29232ba7 snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x292b0881 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b73648a snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2bb1774a snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c56e27d snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d06f073 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d8364b6 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32bf9d4a snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36dc90e5 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ceba97f dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d978d0e snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f33fcfc snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4006bde8 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4040e895 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41d56eb1 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43a566b9 snd_soc_platform_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4484c1b1 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x451ab423 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x466139ab snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x491b4929 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b2b86b6 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x504166dd snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x513117d7 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51af3d20 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53d97f0d snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54b7f147 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x581d6a87 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x598a6141 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a933b75 snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a94063d snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b92718b snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d88e2f9 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6058e2dc dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62566480 snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x628a8b6a snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63ef2185 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x64a173a4 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67fc0778 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x697d0812 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a75b9bb snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b9bc5e8 snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ddbe09d snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6fec4f8a snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71552721 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73658305 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a74ba40 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7cc3495c snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e852642 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f4ebc80 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x806032ed snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x80ba8351 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81652f37 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85335e62 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86235903 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86d6d247 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8783bac1 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8786d174 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e2deb2c snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90f1dd59 snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x91213661 snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x926c95a7 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92d7ae14 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9427c66e snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9699b717 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97a55f8a snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97ca9e09 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a529e28 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9aa606cf snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f119eab snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0b07ac7 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1e6ab35 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa23781d9 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa42c4c34 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa562a65f snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa5b47537 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6c551fe snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa98bb2cb snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9a935e6 snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa64f67d snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac69c007 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xacdf247e snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad840477 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaee4da20 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb27161ca snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5367e07 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb69ee640 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb733487f snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb78ba51d snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7c54b68 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8387d68 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb5fda91 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc803b74 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbccc77e3 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbdf462f7 snd_soc_add_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3e2f024 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3e85bbd snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc575ea11 devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc66d6845 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc94d45ab snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb7bb298 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcbc2a9e3 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcdbb1aa5 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcee7966c snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf850b67 snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd27cbd0b snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3f90b89 snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd449b9b1 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd606e92c devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd629beb9 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8c2a8b6 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9616256 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdad182f7 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdcfd1bc5 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd9860a7 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde14f7a9 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdebde15f snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe140f865 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2414b9a soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe27a8dc9 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe581a402 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8b1f0fb snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf09268d3 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0ce4960 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf167b4c1 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1d636de snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf837e36d snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf84dbe42 snd_soc_lookup_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf98e41b6 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa4eb02f snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfae398a7 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfbef4dac snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x03bc7402 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x058cbf78 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4b08215b line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7fc3e2d9 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x87b1c3f1 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8d94dd59 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9cf521d9 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xae03de02 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb4bdf529 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc52855ec line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xce7beae4 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd079cb26 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd99add49 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf07d5614 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf4961b88 line6_init_midi +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0xf6e772c3 irq_bypass_unregister_producer +EXPORT_SYMBOL_GPL vmlinux 0x000727e6 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x00418287 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x0054e764 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x0058dd62 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x007a86e4 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x00bc8bd5 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x00da0734 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x00f9ca74 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x014c03cd wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x015d4436 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x017bb602 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x0199be18 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e1dc10 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x01f4a648 iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x01fc230b power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x0200ea5e pwm_disable +EXPORT_SYMBOL_GPL vmlinux 0x022029ee vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x022fe091 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x02362a8a arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x024f5b41 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x026c17cd perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x02731983 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x0273526a fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x0293a800 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x02af4867 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x02cf3cd9 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x02d8aa42 xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0x02d9bf87 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x02da7200 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x02e90b0d nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x03275457 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x0345555a ioremap_page_range +EXPORT_SYMBOL_GPL vmlinux 0x034648ed reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0x03482ed8 of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x03535d7a of_reserved_mem_device_init +EXPORT_SYMBOL_GPL vmlinux 0x036175d0 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x037aff07 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x03853ded platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x0389b853 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03a70861 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x03a94e5d ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x03a9e18e usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x03adafea shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x03c2597e ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x0405f950 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x04064796 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x043b935f __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x043dd02d platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x043f39fd ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x044c3a12 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x049a5259 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0x04b5d2d1 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x04c29301 crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0x04c3f2c1 gnttab_empty_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04d4e5a5 usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x04ec17a5 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x04f59392 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x050b10ae blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x050bb5dc devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x051d986c sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x053494cb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x0534e309 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x054014e8 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x054116cf ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x054cc119 alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x05573fd7 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x05577955 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x055d8fb8 of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0x055ff12e xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0x056b063d transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x057db067 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x05813fea pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x059f085d relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x05b651cb mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x05de7276 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x060e4a9a iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x0611d53a wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x064517f7 crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x06ad3eda pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0x06bbcf2e ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x06cab725 xen_dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio +EXPORT_SYMBOL_GPL vmlinux 0x06dc75c1 thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x071f5752 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x0732d786 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0736aae4 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x073ba9a9 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x074be532 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x075c8daa arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0x075f4c98 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x077eedf8 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x078eeab6 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x0790fb80 regmap_field_write +EXPORT_SYMBOL_GPL vmlinux 0x079939f4 devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07c8bdea fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x07e0dcea sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x07e54717 __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x07eeb243 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x08034a59 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x08080b88 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x080817a1 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x0808f36d regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x0809a147 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x080a7639 dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x080b171d wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x0828e143 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x084535d4 blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0x0860da59 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x0867b1bb of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x08719d3b device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x08729f1f wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x0874b3b6 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x087c2603 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x08974957 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x08a32e26 crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x08b6d934 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec +EXPORT_SYMBOL_GPL vmlinux 0x08c654c2 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x08e52062 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x08f0f2a0 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x090c1275 __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0x0919e9a5 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x094bab42 skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x095509dd srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x0956becd da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x096c89f4 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x097adb57 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x0983b9ae serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x098886a3 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x0993407f sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x09ab86d6 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x09b09b29 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x09d1195f sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x09ed1151 blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x0a027bed ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x0a071c27 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x0a26ecb5 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x0a495443 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x0a6b8326 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0a87efff cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x0ab0e4c3 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x0ab74684 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x0acfa48e led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x0ade4d4f ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x0ae99bde dev_pm_opp_get_suspend_opp +EXPORT_SYMBOL_GPL vmlinux 0x0aeda021 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x0af4a2a9 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x0af8455f ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b212df4 tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x0b4cf31a usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x0b52d745 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x0b6b4b34 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x0b76054d crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x0bb256bd regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x0bcc14da wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0x0bd56790 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x0be13fff smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x0be29f64 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x0bf68452 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c130827 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c367827 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x0c80e3fe efivar_init +EXPORT_SYMBOL_GPL vmlinux 0x0c9d77d8 usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0x0ca95934 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x0cb8061f pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0d085af2 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x0d1a7e41 thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0d222e30 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x0d37c14f regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d4a5658 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x0d539781 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x0d699ebb ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x0d7a7e2d ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0d95871d md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x0da1f692 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x0da295c6 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x0da6a3db to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x0da74c6e is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0df0889c phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels +EXPORT_SYMBOL_GPL vmlinux 0x0e047d86 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x0e2a80f0 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x0e38202a regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x0e382f89 cpu_topology +EXPORT_SYMBOL_GPL vmlinux 0x0e48c501 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x0e5ba5ed regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0e857eaf kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x0ea41f64 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x0ebb8180 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x0ecf823a static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x0ed4b19b generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x0edadc32 acpi_dev_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x0f012044 __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x0f044b39 arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x0f2260e9 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x0f2d2fa9 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x0f312e86 cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f39dc07 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x0f6ebbeb crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f885976 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x0f9b28c3 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x0fe2d182 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x0fe2d570 xenbus_directory +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x10165981 blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0x10166f06 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x103278e7 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x104c9927 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1052c8c7 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x1078a8ce crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x108fa72f iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x10ba2f4c attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x10d326d2 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x10da60bc acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x10e2b409 bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10edf404 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x10f63ed6 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x1108690f __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x111d0d08 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x113f2335 regmap_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0x113f5397 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x1148d40b l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x114988f8 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x1169ac49 reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0x117201c1 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x1179f2c9 of_overlay_create +EXPORT_SYMBOL_GPL vmlinux 0x11821d33 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x11879cc8 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0x11b56d59 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x11c25e57 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x11caddc7 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x11e7a24a __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x11ff059c pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x120cc828 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x121e40ec kvm_get_dirty_log_protect +EXPORT_SYMBOL_GPL vmlinux 0x122075d6 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x1223ec95 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x125a121b debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x1263e462 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x1295d57c ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x12b17889 dev_pm_opp_of_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x12bace49 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x12cb5ef6 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x12d903c7 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x12e0be2b pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x12fd878b crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x130de01d trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x1318fde4 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13791b5a edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen +EXPORT_SYMBOL_GPL vmlinux 0x13b89dee pinctrl_request_gpio +EXPORT_SYMBOL_GPL vmlinux 0x13b94d6b kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13d19998 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x13df9827 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x1400127c ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x1428b5ce efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0x143098d1 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x14321080 device_reset +EXPORT_SYMBOL_GPL vmlinux 0x14339760 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x145e179b wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x14c82778 user_update +EXPORT_SYMBOL_GPL vmlinux 0x14f4ac2e __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x152b1f9a acpi_dev_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x153fbb81 fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0x15757029 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x15c77b61 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x15d802fb sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x1617f275 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x1620e94e led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x162ebf91 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x1670084d dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x1677a4e4 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x1696faa4 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x16b8a4fe fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x16bff484 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x16c0958f da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x16f4c780 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x16f7cb14 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x17326a4e regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x1740e33c da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x1755326b crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x178333eb crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x178dd6f6 pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0x17a18aa1 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x1809afd2 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x180bbd5b da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x180c57ca device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x181c6a38 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x181ca621 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x184e524c wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0x184f5b7e crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x18522ddb regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x18603301 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x1863f79c page_endio +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x187b7511 dev_pm_opp_of_cpumask_add_table +EXPORT_SYMBOL_GPL vmlinux 0x189695a5 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x189f45d4 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x18a2b380 mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x18add928 xen_swiotlb_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x18ae68a8 blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x18b38126 __nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x18c4838c ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x18db9cec devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x18f83fab gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x19119803 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x19450f5b driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x1947e466 pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x1965f735 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x19a2a541 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19a36c72 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x19b39dad crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x19bf6224 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x19c66b23 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x19ddc584 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1a1e6ede arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x1a369c02 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x1a38a574 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x1a482458 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x1a497655 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x1a5e574d tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x1aa960cd of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x1ac98f2e tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1b0c5448 kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0x1b0e74e6 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x1b22cd62 dax_clear_blocks +EXPORT_SYMBOL_GPL vmlinux 0x1b297d1b devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x1b356377 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x1b4949e2 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x1b4d9afd nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x1b4ec9df regmap_field_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x1b588577 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x1b5e8ec7 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x1b746245 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b96ef33 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x1b99eaa1 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x1bc3e133 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bc9a8a9 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x1be3e7e3 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x1bf79554 xenbus_unmap_ring +EXPORT_SYMBOL_GPL vmlinux 0x1c0e74a8 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1c1f7305 __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0x1c207064 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x1c3933fd clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5e3dbb sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c898a29 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x1c93df42 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x1c949507 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x1c953b16 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1c9baaea device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x1cc93ef6 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x1ccced9c regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x1cce687d ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0x1cdb2147 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x1ce37750 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x1d1b4c31 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x1d5e5247 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x1d652735 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x1d739e1c xen_set_callback_via +EXPORT_SYMBOL_GPL vmlinux 0x1d73b4d5 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x1d7cb586 clk_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x1d802119 sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x1dc3b52d regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x1dd31d73 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x1de6e54b debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x1def880e bind_interdomain_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x1df9fd02 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x1e2372ef spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x1e353fac perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x1e3b7950 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x1e420cd6 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x1e593e8c tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e68ce14 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x1e6ae5c0 __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e83fee6 HYPERVISOR_physdev_op +EXPORT_SYMBOL_GPL vmlinux 0x1e872da4 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e9903b4 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x1eadd8b6 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebac2bd getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ecc368a cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1ecf367f l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1ef66522 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x1f064eaf crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x1f131579 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x1f3d8432 of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x1f4172ec dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x1f490044 acpi_cppc_processor_probe +EXPORT_SYMBOL_GPL vmlinux 0x1f5cddf5 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x1f5e4cbb md_stop +EXPORT_SYMBOL_GPL vmlinux 0x1f6e9a77 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1fa05f68 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x1fb111f9 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x1fdb7161 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x1fef2190 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x1fef6bd0 nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0x2018b8cd fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x202e4180 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x203e5470 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x20497c5a swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0x205a42f3 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x20938d8d tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x20986a11 kvm_vcpu_init +EXPORT_SYMBOL_GPL vmlinux 0x209cdff5 pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x20a283a6 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x20b7a0f9 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x20c3967c napi_by_id +EXPORT_SYMBOL_GPL vmlinux 0x20c86f0e ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x20daebb4 of_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL vmlinux 0x20e81d61 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x20ec9737 acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0x211ca02e alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x212a3ee3 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x21466a34 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x214ccaa4 fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2173ae76 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x21771b81 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x2192c3c7 bpf_prog_get +EXPORT_SYMBOL_GPL vmlinux 0x2196ce4a kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21a99ca4 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21bd635f vchan_init +EXPORT_SYMBOL_GPL vmlinux 0x21c5e605 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x21c8e723 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21ddac44 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x21eb73b2 of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x21ebeea6 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x221eb471 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x222e906f devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x223cf9d7 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x2245c5f4 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x224604fa dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x2253aab1 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x22bdf47b sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x22d134c9 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x22fb6b28 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x23003aaf devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x23059b51 devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x2315b184 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x23344c6b iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x236556c4 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x2366a2c0 errata +EXPORT_SYMBOL_GPL vmlinux 0x23680181 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x236c0b42 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x23703e36 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23a09498 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x23b23f23 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x23b797db btree_last +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x23fc8519 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x24011e14 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x24016ba7 blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x2402bb1b i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x2436e347 of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x243b192b ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x2444eadf devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x245394b6 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x24563693 acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2496c461 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24c7698a xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x24d2bfec fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0x24e57c4a crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x24e84718 of_pci_msi_chip_remove +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x2520a5d6 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x252ea6c0 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x2545c170 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x2579c995 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x258bea37 xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0x25c94816 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x25d72c5b xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x25e5c14f bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x25f33ed3 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x25ffe268 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x261594f8 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x2648fa82 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x265b1cab fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x265dd9f3 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x26655ce5 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x267b6cdb regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x268fe1e4 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26bb5b7a ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x26c3db49 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26f1428a pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x26f7dde2 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL vmlinux 0x27087d3c ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x27178b45 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x272532f4 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x2729bfb2 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x273d1c17 __sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x273f5f44 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x274fcf82 gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0x275173b7 tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0x277e15fa efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x277f34de regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x2780ca0b pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x27c0c4be eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27d354b1 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x27e72428 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x27f37ff2 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x2807af62 of_css +EXPORT_SYMBOL_GPL vmlinux 0x281c3bd4 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x282ca723 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x28304b1d pin_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x283a7a23 cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0x2840556b crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x2841e284 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x2861bbee input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x286349d6 of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x28669007 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x28a2e03a usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x28a74cb5 pinctrl_utils_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0x28d8a10c platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x28e05fcb pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0x28f211d2 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x28fbcc58 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x29066ea1 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x29094607 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x290997b2 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x290d6a4f crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x290d87a8 acpi_dev_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x2911da24 nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x291b60c5 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x293aa830 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x294df28e nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x2970094e ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x299cdb35 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x29b3d5b8 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x29b52a00 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x29caf42f tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29ed2130 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x2a461033 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a72832d iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x2a787eab arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0x2a81be35 xen_remap_domain_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0x2a8286dd x509_request_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x2a8334de crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x2a8c2142 page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x2a95cbd2 arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x2aacacb3 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x2abfc540 kvm_init +EXPORT_SYMBOL_GPL vmlinux 0x2ad605cd device_add +EXPORT_SYMBOL_GPL vmlinux 0x2ad9d24d free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x2ae013f4 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x2af63321 acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0x2b07debf ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x2b116fc8 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x2b11cea3 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x2b1f3266 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b29ba94 kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x2b351382 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2b505bbd devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x2b59dae5 pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0x2b5ccd21 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x2b5e2ec3 acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2b9ddab2 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x2ba62b0f pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0x2ba6d944 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x2bc5662a net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x2bd9bede clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x2bdfa79b scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0x2bfd3356 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x2c1cef9c pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c4f0b53 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x2c70d584 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x2c744fc5 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x2c7d9c64 xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2c9c140a regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x2cb3b718 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x2cd0b218 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cece7b4 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0x2d08e17c raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x2d18d81e sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x2d19924f ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d230128 acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0x2d2e053d dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x2d3c4d6e ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d5aaceb mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2d6d3061 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x2d8cad24 rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0x2d977df2 gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0x2d98d23d xen_swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2da4034e exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x2da8cbe5 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x2dac6883 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x2db7cfbb ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x2db8d5e6 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x2de0b6c7 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0x2de5d76f fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x2df84ec4 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x2e0857e5 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x2e1bf3eb tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x2e1da9fb probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e39196f pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x2e435842 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x2e5d14da dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x2e8867f1 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x2e8bbad9 kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x2e9670c0 pl320_ipc_transmit +EXPORT_SYMBOL_GPL vmlinux 0x2eb22264 regmap_update_bits_check_async +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec509c6 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x2ec534d4 xen_swiotlb_map_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2ec96cfb __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0x2ecf411e key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x2efd84bc max_gen_clk_ops +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f37f098 xen_swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f6c29ea sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x2f7a7c99 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x2f83c425 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x2fa0bf21 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x2fa32ca2 wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake +EXPORT_SYMBOL_GPL vmlinux 0x300cfa9f fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x300e8bed pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x30153d89 xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0x3020816f ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x304e4ad3 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x3079f9d3 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x307e538f __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0x308d0d11 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x309496c0 kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x309fbdd9 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x30a4627e ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x30c819d2 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x30d3cf24 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x30dd94e5 clear_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x3128865c __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x313d7f79 acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x3141f2bd _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0x31433e6b pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x3150e4db pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x3152b9da acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x317d3703 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x318dba34 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x31bb89f4 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31d03fa0 dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x31d73541 xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x31f4619e fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x31f5b8c2 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x3205b1ac blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x321132f8 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval +EXPORT_SYMBOL_GPL vmlinux 0x3227df6f kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x32441cb8 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x325e677c gnttab_grant_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x327cb845 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x328915c0 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x328c7930 usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32eb20c3 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x3326d61f dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x33506c51 xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0x3350c615 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x33554ded pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x33579d47 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x33831c26 cppc_get_perf_caps +EXPORT_SYMBOL_GPL vmlinux 0x339ad9ba alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x33a347f8 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x33d3dfd8 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x33fc179b adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x34436d17 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x3447fa22 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x3459dff6 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x3474a3ba init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x3474d7d9 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34a8da5f __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x34ce9d9b skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x34d9d7a5 nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x34e0e062 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x34f5956c kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x350633b0 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x352650ee gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0x3541d4dc pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x354b222f ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x35503dc5 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x357daddc __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35bf2acd nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0x35e4ed2c regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x35fec963 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x36247e21 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3625a48c devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x363f1dde fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x3656cd1c __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x36674b86 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x367eed23 kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0x368f1fea static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x3692835b regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36b826d9 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x36c43263 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x36d5d8c6 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36e2eeee bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x36e3614e regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x36e39024 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x36e702fe public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x36eab37e fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x371dbd7c gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x372d07fa sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x372ddd35 mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x37376cfc usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x373c8a8d unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x375fda1e acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x37698f5f devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x377d6e80 user_read +EXPORT_SYMBOL_GPL vmlinux 0x3783e8c2 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x37980c9d dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x37b14f4b scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x37b9e43b transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x37ccab90 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x37fa9bd8 pl08x_filter_id +EXPORT_SYMBOL_GPL vmlinux 0x37fed6f4 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x380cf537 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x380edecf xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x381069c8 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x3824b2c9 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x382e7f97 btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x38304231 skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x383600a2 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x384a6981 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x384d0b21 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy +EXPORT_SYMBOL_GPL vmlinux 0x38b21dcd ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x38b2c484 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x38e02884 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38ee470a flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x38f9e7ab extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x390e126d pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x39239c6e thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x392fe739 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x3954a269 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x39597d25 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x397598ee kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0x39897224 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x3990bad0 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x39927625 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x39b19eaa __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x39bfbc70 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x39eeea91 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x3a0203c2 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a6775d4 of_dma_get_range +EXPORT_SYMBOL_GPL vmlinux 0x3a84f528 of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0x3a87f9a1 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aac9a90 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x3aadb3a4 of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0x3ab867b6 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ad0e201 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x3ad1e524 unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x3addc7d5 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x3ae3329d sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0x3ae4eca8 bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x3b05cd41 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x3b3b820f security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x3b3fb3dc pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x3b547bc9 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x3b676edd devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3b7bb80f efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0x3b92b1eb tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x3b9d3225 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x3bcaca18 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x3c290984 wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0x3c382643 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x3c3862fc usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3c3b3221 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x3c5d460b __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0x3c7a8d48 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x3c831441 arm_check_condition +EXPORT_SYMBOL_GPL vmlinux 0x3c8882e7 mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3c9c9e13 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3ccd436f pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cdc3904 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x3cf013cb device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x3cf76b98 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x3cfb7134 of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x3d057eb2 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x3d1e58f3 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x3d1ebbc3 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x3d3273b1 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d4e5fde fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0x3d5f392d acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x3d64abc6 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x3d669013 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x3d7ea99a gnttab_grant_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x3d8dd34f regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x3da67a23 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3ddeeba9 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x3ddfa951 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3def8e08 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x3dfc436e percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e375c28 spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0x3e3950f6 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x3e4b8b3c serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x3e55ec6c clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e740b03 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x3e7a2f7e sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x3e7fe7c2 blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x3e900e6f usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x3e926d21 clk_debugfs_add_file +EXPORT_SYMBOL_GPL vmlinux 0x3ea39e84 xen_swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x3ea60e7c dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x3eb63593 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3ebd0bc0 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x3ec8e671 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3ef3a71c usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f01b364 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x3f2c0f8e set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x3f30b883 of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x3f49cfb8 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x3f4f5bcc crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0x3f52c651 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x3f648286 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x3f84d4c9 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x3f907237 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0x3fb974b3 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0x3fdb5e45 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0x40053394 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x404ec0e8 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x40a1b554 acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0x40a8d1e7 ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40d4fb5d irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x40dbc442 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x40e73a6c fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x40e8237a pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f396a8 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x414f5535 blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x41502f73 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x415ba6d5 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x4190042e nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x419a0bf4 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x41a13cee dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x41a60abc spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x41b32f40 cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x41de6a5a gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x41e4c749 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x4213a51a efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x422f58b0 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x4235d31d clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x4259f14f lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x427de547 pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x42823660 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x428c8b1e percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0x42a7dd6f fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x42b8556a power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x42d2ca92 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x42d79467 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x42f133c3 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4312f61b sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x43184f29 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x432671ba fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x432c16f6 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x433a5041 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43b466b0 gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL vmlinux 0x43c2a786 __cpu_clear_user_page +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43d510e5 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x43d98114 crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x43e78954 nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0x43f0b02d hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x43f2a60c pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f73ba9 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x43fd8aeb ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x44140109 ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x443a2f7d of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x446b2a59 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x446e3c47 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x4474f2db blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x4479f0aa security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x449aa69d i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x44a793ab HYPERVISOR_grant_table_op +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44de3140 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x44e16ccc devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x450cea8d xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0x450fb522 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x45489c6b extcon_register_interest +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x4576337f atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x458255b7 xen_swiotlb_sync_single_for_device +EXPORT_SYMBOL_GPL vmlinux 0x4587c452 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x459b34e7 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x45a34de4 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x45aff401 max_gen_clk_probe +EXPORT_SYMBOL_GPL vmlinux 0x45b05c72 devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x45be423b crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45d1a7b3 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x45e0cec4 usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0x45e32e62 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x45f138c9 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46066e5b perf_pmu_name +EXPORT_SYMBOL_GPL vmlinux 0x460ab1ea gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x461a2e5d clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x461bb269 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x46297db5 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x46390cce max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x463ef60e tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0x4642e9aa acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x4659b2e5 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x4661024d tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x466e3ef6 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x467ed88b tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x468dfeaf __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0x46b650fa gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x46ca36f0 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x46ce49da digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x46f46e11 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x46fd31cb trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x47112ff0 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x4713484e class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x471c55f2 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x471daf86 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x4752984b mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x475beb18 shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x477a190d bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x477b1206 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x477ed1c4 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x478424cb skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x4785519b fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47b4d25b cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x47b96b15 clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0x47c4f7fc nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47e48cd8 arizona_of_get_type +EXPORT_SYMBOL_GPL vmlinux 0x47ea0ada cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x47f67fff spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x485021f2 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x48586d90 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL vmlinux 0x486634aa device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x487326f7 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x489355d0 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x4895eda2 of_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x48adf8f5 led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x48b32053 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x48c84813 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x48e43504 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x48e9dc90 bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x48f612e3 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x48ff5070 xen_swiotlb_sync_single_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0x493376b3 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x4992059e usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x499806d6 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x49dd75ef pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x49e0fd21 __cpu_copy_user_page +EXPORT_SYMBOL_GPL vmlinux 0x49e8074c __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49feb496 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x4a1cd5fd regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x4a35c1d8 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name +EXPORT_SYMBOL_GPL vmlinux 0x4a62e590 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x4a657d3b pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x4a72e6c0 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x4a8b75e8 kvm_clear_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x4a90160e bprintf +EXPORT_SYMBOL_GPL vmlinux 0x4a945624 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4acde6f0 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x4adc40b9 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x4ae56fdf da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x4ae82044 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x4af56a26 free_iova +EXPORT_SYMBOL_GPL vmlinux 0x4b01c9e6 spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0x4b33d651 wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4b4a4c9f __bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x4b5b6a43 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x4b604af9 xenbus_grant_ring +EXPORT_SYMBOL_GPL vmlinux 0x4b72c4f4 amba_apb_device_add +EXPORT_SYMBOL_GPL vmlinux 0x4b8541c0 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x4bc5a1b9 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x4bcdcb5e dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c645f9e static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x4c7ac74d regmap_write_bits +EXPORT_SYMBOL_GPL vmlinux 0x4ca0cb10 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x4ca1b389 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x4cd43668 call_filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x4cd566a8 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d0f59ea device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x4d185105 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x4d393a54 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x4d47af35 blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0x4d56c375 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x4d70d889 pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x4d91f430 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x4d96da25 acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x4d9d75b6 pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x4da4d78f mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x4dc0a874 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x4dc5d7f6 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0x4dc6f4f6 efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x4ddc20ab of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x4ddedc42 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4dfcc2cf sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e113519 elf_hwcap +EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path +EXPORT_SYMBOL_GPL vmlinux 0x4e2b42a0 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x4e48b401 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x4e5f3efa pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4e67af8a posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x4e6f56f2 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x4e926b11 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x4e9782ea fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x4eae0827 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x4ebb1465 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4eda17f8 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x4ede37f4 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x4ef2dc8d pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4f05925c devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4f08b6d1 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x4f0c8aa8 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x4f1999b9 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f378f3e napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0x4f5069b3 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f781379 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fa001bb regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x4fab11ab __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x4fb118bc ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x4fb66559 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x4fbada8d platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4fcb6237 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4ff9ad1e param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x50035c2d raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x5005b69e btree_update +EXPORT_SYMBOL_GPL vmlinux 0x50075a10 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x5011e2ee usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x501b6297 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x50233774 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi +EXPORT_SYMBOL_GPL vmlinux 0x503f0dfb xen_swiotlb_set_dma_mask +EXPORT_SYMBOL_GPL vmlinux 0x5047202a sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x505261f0 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x505f796b irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5068e20a tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x506cec73 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x50837001 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x509654ec device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x50b80599 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50f63a52 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x510bd618 xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x5117b500 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x5121385a msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x5121cce9 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x512c17a8 xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0x5143b473 device_move +EXPORT_SYMBOL_GPL vmlinux 0x514b9327 ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x51606299 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x5191bd3c efivar_work +EXPORT_SYMBOL_GPL vmlinux 0x519bdada acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x51abc305 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x51bb991d fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x51c62eb2 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL vmlinux 0x52182b32 crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0x521e6fc7 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x522f538b tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x523324a1 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x52415ee9 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x5265363b tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x52ae6191 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x52c8f60c pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x52d35f18 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x52f75139 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x53073226 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x5310a5a8 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x53313e00 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x5365b04d securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x539ba031 arch_pick_mmap_layout +EXPORT_SYMBOL_GPL vmlinux 0x53a3bbea class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x53ad40af xenbus_map_ring +EXPORT_SYMBOL_GPL vmlinux 0x53efc2e4 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x543fca58 of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x54473115 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x547afd49 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x547d25d2 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54aa7108 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x54b0ff56 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x54bd7f0d mmput +EXPORT_SYMBOL_GPL vmlinux 0x54d3b42c device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x54e1d488 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x55021407 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x550ee0c3 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x551fabb9 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0x5533862f sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x55526907 xen_features +EXPORT_SYMBOL_GPL vmlinux 0x55619a01 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0x556aac3a serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x5575a3aa trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x55879900 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x559f2b4e of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0x55bb62c8 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x55d800fd ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x55e6e762 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f7cd12 of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x5606adb5 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x561b5fa8 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x5624c671 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x563a8149 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x56401158 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x564226d5 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0x56529601 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x565447b2 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x565c09f2 rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x565ee25e regmap_fields_force_write +EXPORT_SYMBOL_GPL vmlinux 0x566465e8 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x567a0c5e usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x5680542e evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0x568c1862 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x56947347 dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x56c21b81 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x56f63a64 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x570ac4dd alloc_iova +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x573e3690 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x575c5f94 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x575eeefe gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x57670662 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5775bed5 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x5779d445 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0x577c5f93 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x578bc17e ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57ab95f2 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57c86f20 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x57e24f4f iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x57f28e45 tps65912_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x57f7f501 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x57f8062c acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0x58086e8e vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0x58110346 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x581e6ed1 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x585d1f82 blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0x587a561c irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x588ffbf2 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x58958b43 list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58a9d916 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x58d936e1 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x58e14f15 HYPERVISOR_event_channel_op +EXPORT_SYMBOL_GPL vmlinux 0x58eca86b map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x5915ed00 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x59984724 blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0x59b05cac clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59b58738 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x59c49e7e ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x59cac3a2 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x59f40659 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x59ff7a28 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x5a02967f kvm_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x5a15499c ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x5a2b1b67 gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5a37baa7 blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0x5a3dc24c acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0x5a609c59 gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a845851 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x5ac68de9 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x5ad7bd0e serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x5ae6118c regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x5ae79466 percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0x5aef8808 pci_fixup_irqs +EXPORT_SYMBOL_GPL vmlinux 0x5af03a28 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5afbc8bc syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5b19a82c dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x5b32620c pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x5b51395d sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x5b5534a5 blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x5b57ba22 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x5b86f05a irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0x5bb59242 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bd4970b flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5be8c2de cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x5c27f55c led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x5c28d977 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x5c2e21cf pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x5c5917c8 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cb95cb6 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x5cb9de67 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x5cbbc62a devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5cd04eb1 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x5d0e5b2d nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d12f373 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x5d366dec gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x5d4cb6a0 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x5d54084e seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0x5d55722e dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x5d56fa74 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x5d5734b9 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x5d6f5189 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x5d828eae list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5da77452 kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0x5daea356 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x5db18786 skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0x5db2b9d6 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x5dbef774 of_fixed_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0x5dbf8815 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x5dcd7160 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x5dde35d2 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x5de38807 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x5df5bcdf crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e61bf19 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x5e66439e ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x5e8b8e44 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x5eb891f7 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x5efa61c9 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x5f16b820 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x5f226035 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x5f3abca3 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x5f61558f sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x5fc27be9 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x5fec6d15 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x5ff52bbd inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x5ffdb9b7 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x6015e6e6 device_add_property_set +EXPORT_SYMBOL_GPL vmlinux 0x6018af5a irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x603603e4 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x60442822 phys_to_mach +EXPORT_SYMBOL_GPL vmlinux 0x604d470f mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x60506567 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x6076d7ea efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60b68057 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x60df526e ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0x612050d0 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x615159fc preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x615a881f devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x617c0d42 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x61a54419 of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x61ae4e8d kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x61c66ae1 i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0x61ca6c2e fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x61cde409 acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0x61d7f610 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x61e0abd3 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x61ea233e extcon_get_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x61f243fd hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x6202519b cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x620ac713 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x620b6e1f power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x620bf64b cppc_set_perf +EXPORT_SYMBOL_GPL vmlinux 0x6214b16c pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x62197ba2 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x624173db __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x6264c011 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x6274b64a debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x62924c82 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x62a558b1 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x62bd5a6d __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x62dd8cd2 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x62ea2c57 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x631bf29c pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x63223427 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x63304059 __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x63329c37 default_iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x633d05ac dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0x6340a25a ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x635993cf __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x635a7abc usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x638e7c8a tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x63c9bf6b regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x63ebcef1 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x63f14ebe io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x640683ce usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6415c022 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x64318593 acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x644781ef debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x644d7b14 find_module +EXPORT_SYMBOL_GPL vmlinux 0x6452b545 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x646d4887 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x647209ab __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x64b27250 kvm_vcpu_uninit +EXPORT_SYMBOL_GPL vmlinux 0x64cb95a8 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x64e80dfb freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x650d23a0 pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x6579f4be tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65de0503 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x65e78d97 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x65fc5100 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x66012b84 percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x660721c9 xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x660cf4ad of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6616a142 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x661d9c77 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x664fdf65 vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0x6664bd37 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x66661183 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x66918a31 blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x6696411b usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0x669da1fd kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0x66ab55c2 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0x66b9b7dc dbs_check_cpu +EXPORT_SYMBOL_GPL vmlinux 0x66bcb855 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x66bd8b90 devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66ed025b usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x67012b9b blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0x671117b3 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x671eda66 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x6740f2f6 of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x674a0a22 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy +EXPORT_SYMBOL_GPL vmlinux 0x674eb7ba pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x67516d76 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x675281ce __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x676ad5ef register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x677689a6 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x679b1359 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x679b8f50 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x67cca607 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x67cd6f01 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x67e4a24f ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x67e7ba99 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x6806d6d4 __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x681578fe devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x68187066 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x681ae195 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x6828e4b2 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x682bae85 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x68517eb2 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x685d2ad0 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x686e2d92 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x688e23a7 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x68975d13 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x68b8fcd6 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x68c20662 clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x68cbed37 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x68f59400 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x690d9a30 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x6926277d usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x69347a39 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x69370070 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x693ada78 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x69448669 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x69597723 gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0x6966d235 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x697ae409 of_get_nand_bus_width +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x69810015 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x699012ed driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x69ae066e ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x69c6c688 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x69ed50c9 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x69f04353 system_trusted_keyring +EXPORT_SYMBOL_GPL vmlinux 0x6a02ed73 get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x6a1271cb ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a2fdc13 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a569bc3 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a936feb system_verify_data +EXPORT_SYMBOL_GPL vmlinux 0x6a97eef2 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x6aa9a280 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6aaae8fc split_page +EXPORT_SYMBOL_GPL vmlinux 0x6abae301 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x6acad21f acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x6aeb79aa inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority +EXPORT_SYMBOL_GPL vmlinux 0x6b18546e irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x6b1bb0f8 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x6b20597d device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b424128 of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x6b46c8f1 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x6b6764d0 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b9e9e56 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x6bb6c8a2 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x6bd13ea5 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x6bd90ffe sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x6bda211d device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x6bf1b90d dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x6c07bef2 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c1904b1 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c515aff platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x6c61a15b i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c836af4 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6c8c21ce of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x6c8daffe spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x6c9aae76 pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6ce8d429 ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0x6cf47ecc vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0x6cf66d64 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x6cf816d9 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x6d0a0fd7 xen_swiotlb_sync_sg_for_device +EXPORT_SYMBOL_GPL vmlinux 0x6d0c3ad8 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x6d1b43dd fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x6d249b51 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x6d2a644e class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d354cb5 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x6d447ed1 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x6d52a1a7 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6d5a458d alarm_init +EXPORT_SYMBOL_GPL vmlinux 0x6d6cb45b gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x6d7e10ad platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6d802a0b xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x6ddd51ed powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x6de7a30a wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e0f31c8 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x6e58ddf0 gnttab_end_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e8b57b3 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x6e906fb4 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6e95264a key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x6e9a7d3e usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x6ea93f5a blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x6eb593c4 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x6ec50638 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x6ed7e436 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x6ee05c4b gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x6ef96962 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x6f124a2c pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x6f145325 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6f147de0 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x6f18d1ec vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x6f1c7bbf devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f210d9f regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x6f241188 __netlink_alloc_skb +EXPORT_SYMBOL_GPL vmlinux 0x6f25d9f4 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x6f36f606 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x6f402ba6 acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x6f42fbf0 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x6f433ffd __free_iova +EXPORT_SYMBOL_GPL vmlinux 0x6f5199b6 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x6f51fda5 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x6f63a813 devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6f673b3a xenbus_dev_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x6f79e47a pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x6f7c3e89 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x6f9e49c0 device_remove_property_set +EXPORT_SYMBOL_GPL vmlinux 0x6f9f3890 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6fcae8e8 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x6fd14912 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6fd35319 wm8400_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x6fdbfc63 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6fe92080 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6ff0c23b pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x70104d3b led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x70118c4b pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x704e9a07 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0x7064da8b btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x709017d1 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x70a789a2 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x70b7eab5 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x70b97089 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70c91637 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70e493ba otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0x70eab0b4 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x70ecf41a pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x70ed51fd usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x7106bccf usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x710b2f43 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x71374bf4 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x7179ed04 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x718643aa devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71c52da5 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71c54107 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71dca6a1 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x721e9aa7 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x722d069b regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x722dc962 devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x723456c1 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x723e5bc0 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x725436ff devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7275dff7 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x72864e0a ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x7290aa85 fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7295e701 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x72a514b7 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x72babb7f __dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0x72e2f348 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x72ec394b regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x73013896 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x731947f3 regmap_fields_write +EXPORT_SYMBOL_GPL vmlinux 0x731a623a devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x7321c01b device_del +EXPORT_SYMBOL_GPL vmlinux 0x73378a39 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x733c888d adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7364dd90 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x73675e23 register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73ac895c of_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73debeec pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x73ea029e clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x73fa2112 inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x74301787 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x74454148 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x74499da6 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x7459fcd2 phy_init +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x746ecd5d usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x74861e05 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x749fb923 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x74a22ad4 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x74a8b202 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74da3c0e acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x750596a3 posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0x750aca25 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x750e4fcd fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x750e7d34 ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x751b716f mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x7526000a crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x7534975f sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x754228de efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0x755f7d25 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x7568ebbb usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x757b49d2 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x75802938 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x75ac93d3 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x75c35695 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x75c3eae8 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75d80971 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x75dc1382 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x75e4fc28 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x762a0be6 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x76590f45 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x765eaf1d irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x765f455e usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x76999a26 rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x769c6b63 _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0x76aaa2f7 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x76b10d5b init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x76c49af1 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x76cab0a6 dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x7742cd75 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x776b3d91 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x7774b0e2 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77b60414 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x77b835cf of_get_nand_ecc_strength +EXPORT_SYMBOL_GPL vmlinux 0x77b9ec66 crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x77c41e16 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x77f9c4e2 dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x785f9263 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x789c3b1c fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x789eff28 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x78ae7a14 trace_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78b5cdfe __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x78cc5bec hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x790c80a9 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x794667cf acpi_get_psd_map +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x795a93fd pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x7995c5e9 tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x799fb71a get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x79a3f0d7 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x7a01fd01 kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x7a0b59ee md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x7a0c8a84 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a30fd84 mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x7a3e97fc rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x7a519ab9 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x7a546be5 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7a679604 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x7a8b7986 of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7aa6285a alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x7aa64803 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL vmlinux 0x7ab2f064 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x7ac8e5b0 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x7adeb87a debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b2163bd HYPERVISOR_tmem_op +EXPORT_SYMBOL_GPL vmlinux 0x7b3354e7 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x7b41240b dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x7b661483 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x7b678562 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x7b70ed5c pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7b9135be __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x7b94c3aa ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0x7b952271 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x7b957987 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x7bba23d7 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x7bba2402 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x7bd9a283 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0x7c004e17 user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x7c147be2 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x7c16d540 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x7c1722f6 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x7c1907fe od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x7c34ed44 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x7c39b6ea metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7c8123b1 init_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0x7c889463 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x7c96a6f2 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7c9c8d4e fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0x7c9eec07 dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x7ca81022 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x7cb06816 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x7cb65406 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x7cbd6dfe debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x7cc53b51 xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cd8c6e5 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cedf677 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x7cf37d48 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d3ecd57 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d5dd4d1 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x7d742ffe regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x7d87fc51 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x7d982202 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x7d9d79d4 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7da81251 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7db9e524 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x7dca0518 HYPERVISOR_multicall +EXPORT_SYMBOL_GPL vmlinux 0x7dd7be86 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0x7deb73b4 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x7df65884 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x7df6ba19 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x7e064eb4 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x7e0ca40e pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x7e115070 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x7e133671 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x7e2cb40b stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x7e43cdb8 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x7e4841cb pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e64d7b5 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x7e64f6d3 xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0x7e65c0f2 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x7e66c2a6 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x7e7d3bfb ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x7e8152d5 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7ea1a2bc probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x7ea54c1b pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x7ebd073b devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x7ec7a5a2 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x7ecef81a cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0x7ee9ae6d pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x7efa0a3d ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7efc80cc crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x7f030f55 max_gen_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x7f109389 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x7f133e68 acpi_dev_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x7f13d491 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x7f21af5e regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature +EXPORT_SYMBOL_GPL vmlinux 0x7f2551a1 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x7f379748 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f8e28d5 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x7f8e49cd pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fa6e70d user_describe +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fc208d1 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fe4b39a blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x8013dbe6 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x8035eba1 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x813b9a1a of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x8141817b cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x8143b386 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x8152e111 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x8165c4a8 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x8169c38a dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x8170ccef virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x81717e2b kvm_vcpu_kick +EXPORT_SYMBOL_GPL vmlinux 0x81772466 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x817f07e1 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x81a0485a sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x81b2f496 mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x81c2ff8d sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x820aacf7 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x820e15ff regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x8237de11 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x8272b9d9 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x82781d01 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x82873d20 of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0x828ed8c3 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x82b18e88 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0x82c86670 bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0x82c885da crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x82d41c1a phy_put +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82e9c4be crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x82f01e93 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x834faca6 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x836c588b gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x83742948 cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x83764323 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x839bb420 bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x83bdaf16 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x83c1fb75 pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0x83c7c860 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x83e42537 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x83ee0635 dax_fault +EXPORT_SYMBOL_GPL vmlinux 0x84039e73 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x841bb359 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x84298aa7 virtqueue_get_used +EXPORT_SYMBOL_GPL vmlinux 0x84368bed __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x8444deb3 xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x84aabda6 crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84bfac29 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x84efa89a wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x85024844 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x8515fce1 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x851882b9 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x851f1efa sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x8533f4a2 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x853e9dbe __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x85c3d483 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85d0f8d5 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x85d7211c bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x85da6367 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x85ffa4bc phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x8617cb32 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq +EXPORT_SYMBOL_GPL vmlinux 0x8666a7c5 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x866b33df unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x866fa680 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x867cf98b wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x868e73c6 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0x868fb4c6 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x86a51007 gnttab_end_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x86a65d91 amba_ahb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0x86a94554 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x86f3f49b ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x86f4d5ce bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x8702e548 process_srcu +EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared +EXPORT_SYMBOL_GPL vmlinux 0x8722a885 rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8723b979 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x87362f1b ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x874800ce shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x87672d85 pwm_enable +EXPORT_SYMBOL_GPL vmlinux 0x87a5b10e irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x87b28cd5 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x87c9e4b0 trace_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x87ceb73f ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x87dd74a0 of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x87e52483 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x87f8846a crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x88136838 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x883208d1 of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x884a805a blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x886b3439 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x886b5575 dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0x88776f1c pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x887e54a0 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x8898b7b6 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x88a223ed tpm2_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88c0a5c0 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x88ec4c0c power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x89013f17 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x8914d4ea virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x8924f677 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x892b26a0 set_memory_nx +EXPORT_SYMBOL_GPL vmlinux 0x892b48a3 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8932eaae devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x8939b143 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x893c5cab gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x8945ccf3 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x894fbf33 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x896a6e63 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x8978952c simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x89aa8574 xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0x89ac492f kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89bd0e97 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x89d282fb virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x89ea6e27 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x89fab6a9 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x8a0f1fc8 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x8a25cc8e console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x8a449163 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x8a4b61d3 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a559846 gnttab_setup_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod +EXPORT_SYMBOL_GPL vmlinux 0x8a78989f irq_from_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x8a9306c1 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x8a943181 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x8aa507fc shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x8ab0a000 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ac1cf2c xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x8ac728c9 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x8acaba21 scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0x8ad96aac ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8ae2fe24 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x8b03c71a __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x8b04668e bind_interdomain_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x8b0d1765 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b1f4e3e pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x8b353f6c leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x8b56d75c genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x8b5edf69 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8ba5afe9 HYPERVISOR_memory_op +EXPORT_SYMBOL_GPL vmlinux 0x8bc72122 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x8bd8e006 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x8bec2d55 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x8bf1299f transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c06a108 xenbus_transaction_start +EXPORT_SYMBOL_GPL vmlinux 0x8c154607 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x8c1ef03e pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x8c25413b stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x8c365d59 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x8c642361 xen_swiotlb_unmap_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c659b6c btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0x8c7238e2 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x8c72a970 securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c95767b platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8c96dde8 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x8c987d40 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x8ca1e204 percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8cae54b5 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8cb577bb spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params +EXPORT_SYMBOL_GPL vmlinux 0x8ce1720b power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x8cea765f memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0x8cf9f262 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x8cfaad17 __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0x8cfb3326 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x8d046f52 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x8d1ff7ab tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d372ea9 xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x8d7fc280 xen_swiotlb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x8d855bfa nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x8d8a3817 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x8d9fa235 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x8da01274 kvm_get_pfn +EXPORT_SYMBOL_GPL vmlinux 0x8dabcac2 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x8dbf7aaa privcmd_call +EXPORT_SYMBOL_GPL vmlinux 0x8de07726 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x8e1cd06f kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL vmlinux 0x8e2b25c2 videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e3001d2 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x8e3cc019 put_device +EXPORT_SYMBOL_GPL vmlinux 0x8e8af9e4 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x8e9736f6 tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x8eab694e tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x8ebbc651 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x8ee9694e ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x8eff2bba gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f35b7a0 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x8f563853 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x8f58de86 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8f600f21 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f843080 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x8fa78a22 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8fa98c05 xen_swiotlb_dma_mapping_error +EXPORT_SYMBOL_GPL vmlinux 0x8faac947 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x9009602a acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x901c09e6 inet_csk_compat_getsockopt +EXPORT_SYMBOL_GPL vmlinux 0x9028194d usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x9033c293 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x903bb65b acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x908d827f skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0x908fe032 acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x90930f15 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90b763f1 HYPERVISOR_console_io +EXPORT_SYMBOL_GPL vmlinux 0x90d8e4b4 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x90e0def6 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x90efb40b __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x90f37aed ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x9108ee8d pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x910a7c99 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x910da37d blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x912bca1a get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x913f39a9 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9141806f xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x9146524e wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0x9156f276 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x91655545 acpi_cppc_processor_exit +EXPORT_SYMBOL_GPL vmlinux 0x91722f75 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x91951d42 pm_genpd_syscore_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x91a428b8 devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x91aa9618 of_get_nand_on_flash_bbt +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91f0c992 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x920aacca nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x924e9581 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x9258a817 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x926f3d00 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x9282ecb1 swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x92987d00 blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0x92a86927 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x92abdeda vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x92b14cbc of_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x92b17b1b inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x92b9fa7a usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x92c0f9c4 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x92d9f078 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92dddf14 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x92e80a0f of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x9312d80e evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x9367b64d disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x93771404 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x93846161 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x9384beb5 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x9384ce87 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x93b28e77 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x93d8beb8 acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0x93dc785b of_get_nand_ecc_mode +EXPORT_SYMBOL_GPL vmlinux 0x9400c5af set_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0x9405a572 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94a173be usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x94c70f61 wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0x94e236b4 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x94e62d2e __set_phys_to_machine_multi +EXPORT_SYMBOL_GPL vmlinux 0x94ee6c62 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x9519ffa4 blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x9523c906 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x952eb775 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x954f2863 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x9571f1d3 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x9583018b fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x958dc1c1 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x95b78c30 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95d19a29 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x95df7148 ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0x95ea827e fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0x95ffd45d pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x96158b5e devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x96214789 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9625e652 klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x962a8600 reserve_iova +EXPORT_SYMBOL_GPL vmlinux 0x963422e0 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x964264bd usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x96474e16 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x964add15 xenbus_scanf +EXPORT_SYMBOL_GPL vmlinux 0x964d5c39 acpi_os_map_memory +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x965a01c7 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9664d82f __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x968a9b61 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x96946d50 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x9695058f fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x96956b24 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x96a2ee56 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x96b9f6c6 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x96c0f9dc regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x96f273bb kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x97206fde sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x9723ba6d rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x9733e6f4 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x97425499 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x97454da0 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x9746da92 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x974981d8 clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x97646244 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x977f11c8 of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x97816139 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x9792db97 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x97948f07 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x97c850e2 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x97ccd69a ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x97d687e3 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x9805d37d bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x981060e8 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x98128223 blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0x98183b06 gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x984303ab clk_gpio_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x98574320 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x98746eb7 kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x9874d128 __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x988ed85d set_memory_x +EXPORT_SYMBOL_GPL vmlinux 0x98a2c4ed regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x98b766a1 of_get_nand_ecc_step_size +EXPORT_SYMBOL_GPL vmlinux 0x98ba1c47 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x98d1507c iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x98e18068 acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0x98efa53f napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x98f9f73d fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on +EXPORT_SYMBOL_GPL vmlinux 0x99152712 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x993d21b5 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x99551030 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x9973add9 __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x9977185c ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x9990a79f adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x99b0fc9b scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99be7dd2 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x99e4a4f8 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a45b07e usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x9a545e31 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x9a6cee13 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x9a6f2ec3 of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x9a7d77e2 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x9a849ab3 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x9a87ab68 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9a923583 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x9aa78e4e pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ac134ed __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x9acb6480 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x9adb3a22 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x9adb5fc4 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x9ae02b9b mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0x9ae65f31 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9aee7ff5 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9b3dc7cf xen_swiotlb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x9b634e9d __class_create +EXPORT_SYMBOL_GPL vmlinux 0x9b6b58c9 hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x9b709686 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x9b7a80b2 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x9b7aea8e ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9bb50477 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9bb94293 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x9bca03ca ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x9bcb3c23 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9c01d795 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x9c2e4b66 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x9c3f0955 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x9c42b950 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x9c4935cc cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x9c515d05 acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0x9c8a7f00 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9c8ccf18 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x9c93b764 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0x9cabe712 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9cb43ecd wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ceed576 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x9d062818 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x9d06688b register_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x9d1e1244 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x9d296893 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x9d2bc06c perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0x9d31137f sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x9d3850e1 gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x9d3bb958 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x9d466ad7 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x9d8ac05f extcon_set_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x9d96c0a6 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported +EXPORT_SYMBOL_GPL vmlinux 0x9dd0930d nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x9dd5a2d2 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x9dd6c044 blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0x9e17e3de kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e61ddc9 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x9e7e48d5 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x9e84b7f1 iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0x9e86ff61 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x9e8ca699 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x9e955ff3 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x9ea1116f regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x9eb18fd3 xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0x9eb725f7 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x9eb85890 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ef7dfda btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9f00ad33 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x9f2766df bpf_prog_realloc +EXPORT_SYMBOL_GPL vmlinux 0x9f472ad4 amba_device_put +EXPORT_SYMBOL_GPL vmlinux 0x9f517986 HYPERVISOR_hvm_op +EXPORT_SYMBOL_GPL vmlinux 0x9f5bdb05 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x9fbdfcc6 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x9fc0e5fe get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x9fcb8e58 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe30d1a virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9ff86c1f of_pci_find_msi_chip_by_node +EXPORT_SYMBOL_GPL vmlinux 0xa01199b8 efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0xa014a6ac trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xa03439db kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0xa04bbe7c wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0xa06820b9 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0xa0743c14 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xa09ef299 of_genpd_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0xa0bcbe98 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0xa0be15e9 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xa0c8f3b4 debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0xa10e0d50 single_release_net +EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type +EXPORT_SYMBOL_GPL vmlinux 0xa1498221 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xa160c26a regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0xa1695cc5 i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa1a663a3 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xa1c5475f spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0xa1c980a4 find_iova +EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0xa1f79553 xen_create_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0xa1ff8887 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xa2159e9b of_device_get_modalias +EXPORT_SYMBOL_GPL vmlinux 0xa24fa884 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa25d8343 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xa266fa63 tpm2_startup +EXPORT_SYMBOL_GPL vmlinux 0xa26b6248 dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2718017 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa28b12c4 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xa2ac5519 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0xa2b48d16 btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0xa2b9c993 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa30dd2cc __put_net +EXPORT_SYMBOL_GPL vmlinux 0xa310f5d4 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xa3222287 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xa32346a7 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xa3408713 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0xa349bf34 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa34ee837 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0xa353fffc xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xa382bd61 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0xa384918b pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa386c029 trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a35864 of_fixed_factor_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3e58789 efivar_validate +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa3e8482e virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xa3ed8a48 __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0xa40dadca regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa427ae64 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0xa428e201 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0xa42a804e crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xa437a446 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq +EXPORT_SYMBOL_GPL vmlinux 0xa457712a mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xa461d629 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xa47792a4 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa4837caa power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa4bbbbfb usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xa4c22e8b clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xa4e0e1a1 virtqueue_get_avail +EXPORT_SYMBOL_GPL vmlinux 0xa4eb879b register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xa4ec3611 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0xa516a5a6 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0xa55d942a kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0xa56de409 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xa573f4a0 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xa5854261 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0xa5944755 single_open_net +EXPORT_SYMBOL_GPL vmlinux 0xa59a3b08 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xa5ad3a37 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0xa5b32dea to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0xa5c99a1d sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa601131e pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0xa616b28c blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa62892c6 efivar_sysfs_list +EXPORT_SYMBOL_GPL vmlinux 0xa62cdcfc usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xa62e4c78 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0xa6345d11 smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xa63e682d bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0xa64cafc6 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xa6647139 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa67959dc sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0xa67c4cd2 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xa68a5d8e pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6bcf97f acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa6c68449 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0xa6debf25 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa714384c devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa738af57 acpi_subsys_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xa73ab21a regmap_fields_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xa74f2cac blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xa77b82bf tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0xa7841b38 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0xa7925498 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa7ac7e46 relay_open +EXPORT_SYMBOL_GPL vmlinux 0xa7c05aff perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa7ccc758 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xa7da9db7 skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0xa7fbc604 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xa7fd1051 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xa801b359 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0xa804a39e extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0xa850dafc idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa8a7f414 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0xa8b061da crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xa8b18185 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8b95473 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0xa8cd0e6a posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xa8fb4827 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xa8fc2004 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xa900a0b2 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xa913689b xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa935b4b9 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xa952b7eb acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xa9aef2e1 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL vmlinux 0xa9c1d705 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xa9dc6c98 of_pci_msi_chip_add +EXPORT_SYMBOL_GPL vmlinux 0xa9dcd7f1 spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9e41608 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xaa0d93f0 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xaa102bf3 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0xaa136511 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0xaa1746cc tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xaa1eaaa4 xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xaa3e6760 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0xaa41a148 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xaa62002e ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xaa70b9d1 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaabcbaa0 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xaac9e14b ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xaad6ebc6 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xab01acbe gnttab_request_free_callback +EXPORT_SYMBOL_GPL vmlinux 0xab117daa xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xab46f307 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xab4bedf6 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xab567d31 percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del +EXPORT_SYMBOL_GPL vmlinux 0xab63fbf4 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab86b58f __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xab8ceced gnttab_batch_copy +EXPORT_SYMBOL_GPL vmlinux 0xab973d42 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xabab79ed usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabd41786 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0xabe262d5 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xabf43a13 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0xac407382 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xac54f272 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xac61d61a sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0xac642bec cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xac6fbb74 use_mm +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xace9848e __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0xacef9e1d md_run +EXPORT_SYMBOL_GPL vmlinux 0xacf721f2 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xad10fa6f xhci_run +EXPORT_SYMBOL_GPL vmlinux 0xad2d70be ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xad3242c0 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xad3e35c4 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xad5fe647 efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0xad74aa29 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xad827b06 amba_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xad834820 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xad83bce2 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0xad9514cf usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0xada912b3 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xadd70ac9 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xade6c821 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xae519221 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0xae57927d rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0xae5a0a20 acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0xae5c6116 device_register +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae6c3cdd blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae7e7e41 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xae81922b of_overlay_destroy_all +EXPORT_SYMBOL_GPL vmlinux 0xaeb2c9a2 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xaeb928aa acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0xaec32b6c tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0xaef31438 of_get_dma_window +EXPORT_SYMBOL_GPL vmlinux 0xaf0e32ed regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xaf17ca24 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0xaf1fe905 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xaf58560d pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0xaf90d103 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xaf9a111a iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0xaf9fed1b gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xafaefd79 xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0xafaf8048 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0xafb07262 __pfn_to_mfn +EXPORT_SYMBOL_GPL vmlinux 0xafb680ef get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0xafb8a69c da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xafc0e75e thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xafc3f927 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xafc9a40b sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0xafd94a01 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xafed0d2c bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0xafedc5b2 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xb005e74d scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xb00b833e pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xb0213dc8 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xb025ef4e skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb0377bc6 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xb046d35f ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0xb0604953 crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0xb075996a bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xb0771f25 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb0b46be1 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0bce4f0 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0fc71da phy_create +EXPORT_SYMBOL_GPL vmlinux 0xb10da827 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xb1352f19 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb161bb3a rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0xb172ffac efivars_sysfs_init +EXPORT_SYMBOL_GPL vmlinux 0xb17bd66f do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xb17f1698 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1ae4061 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb1aeba47 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xb1b370bd __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xb1b65109 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1f367de crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0xb1f46f83 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xb205f58c of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0xb211436e thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb225f5ad xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0xb255bc43 smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xb260bfa5 unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xb285b8f8 xen_in_preemptible_hcall +EXPORT_SYMBOL_GPL vmlinux 0xb287799e blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xb28b893b ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xb28f9084 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xb2901560 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0xb29c6a58 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xb2b7fd93 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb2ba986b usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xb2ce4350 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb2dd090c dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2e915b3 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0xb2ea581f led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0xb2f89990 bgpio_remove +EXPORT_SYMBOL_GPL vmlinux 0xb3018bb4 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb3042981 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xb31fa773 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xb32e1334 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xb345f5e7 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy +EXPORT_SYMBOL_GPL vmlinux 0xb3511b55 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0xb355864f tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0xb35942c7 kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xb35a6032 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0xb37aa174 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xb38811a7 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0xb392c21c sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xb3a69712 dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xb3b0f9e0 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xb3bc2d12 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0xb3c4430f pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0xb3e5794e usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xb400c2e1 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xb401b22e do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0xb4295bcc usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xb42b99e4 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb4302cee task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xb46929e8 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xb46d3b90 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xb478a4c1 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0xb48617c1 xen_dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0xb494c197 percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4bcaa16 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xb4cac147 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0xb4d227f0 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0xb4d4c570 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xb4dd16f1 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0xb4e14553 gnttab_query_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4edf76e kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0xb4fa7465 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xb50645f7 kvm_get_dirty_log +EXPORT_SYMBOL_GPL vmlinux 0xb5159e50 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb5278e98 rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0xb53418e8 edac_subsys +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb54e53d6 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xb56f999c pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xb5848bae __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xb58b3222 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb5942e84 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xb596bd91 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5b3ffd4 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xb5c37a1e tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb5e5c069 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0xb5ea1d41 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xb5eaeac9 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb5fff9b7 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xb6230f1f gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb628e9cc cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xb62d2a04 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xb6341925 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xb63c99f6 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0xb660826c wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb66421b2 acpi_str_to_uuid +EXPORT_SYMBOL_GPL vmlinux 0xb6825608 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0xb6917e77 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xb6942d1e unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xb6a34c3f amba_ahb_device_add +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6da14c1 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xb6dee91f blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6f3a587 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb700fbc6 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xb7154114 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0xb7181dc5 kvm_vcpu_block +EXPORT_SYMBOL_GPL vmlinux 0xb721311e driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb73b740a trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0xb7409268 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0xb78a9658 devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xb7a95656 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0xb7a99707 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xb7b00a3f mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0xb7bef2b0 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0xb7f2fe2d relay_flush +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb81b7789 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xb823285b pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0xb83a05a4 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xb83b50b7 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xb8446948 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xb86379c7 fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0xb866ec42 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0xb86d854c ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb8929b67 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xb8936b22 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xb8a234ee hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8cd4560 acpi_dev_gpio_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xb8d1f25c dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xb8e5d14c __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb9065f5e get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address +EXPORT_SYMBOL_GPL vmlinux 0xb9216371 devres_find +EXPORT_SYMBOL_GPL vmlinux 0xb931fdaf devres_add +EXPORT_SYMBOL_GPL vmlinux 0xb935e306 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xb9365cf0 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xb93cc84b phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0xb945ace8 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xb956e101 xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0xb97bdc62 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0xb99d5837 xenbus_read +EXPORT_SYMBOL_GPL vmlinux 0xb99fcb80 acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9bdadf9 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9f22512 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0xba1e6aeb netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba323156 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xba6412a7 bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0xba83d177 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xbaab2b7f of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbac5a0ff rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0xbad282ea srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0xbae28c30 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xbaf49676 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb24b451 rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0xbb2cb128 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0xbb2e5c8b efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0xbb3e0285 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xbb406ed3 genlmsg_new_unicast +EXPORT_SYMBOL_GPL vmlinux 0xbb4a3584 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xbb5e0164 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbb72f687 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xbbd0f49c of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0xbbf5c2c8 of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0xbbf857f3 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbc054766 queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xbc06c159 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xbc12f66a ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xbc1ac2b5 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xbc3cb16b crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xbc50ab83 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc744a94 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0xbc7511de mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0xbc9b5317 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0xbc9bcc4b i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcbcdd2f hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbcf48c00 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xbd038a83 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd5e6aa8 of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xbd606ec6 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0xbd671048 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xbd6d05d9 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xbd7188bc pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0xbd82e35b da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xbd883518 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0xbdb4c490 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbddea563 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xbde6ac9e devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xbded2df3 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xbdf78b08 cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe2da513 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xbe31ad24 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0xbe367a21 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xbe476e04 tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe985e7e __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbeabd2cf dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xbeade8f8 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbebcd541 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xbecb6b87 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0xbedec016 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xbef8fa49 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0xbefa1485 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xbefdd96c subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf48bd33 security_kernel_fw_from_file +EXPORT_SYMBOL_GPL vmlinux 0xbf4bc22c blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0xbf556321 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xbf5e2370 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbf628e41 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xbf651893 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xbf74119b tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xbf89987d serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xbf8d1cb1 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xbf9fc6c8 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfeb8301 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0xbfec1d49 ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space +EXPORT_SYMBOL_GPL vmlinux 0xc00023eb pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xc00ac7f3 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0xc00d64f5 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xc04b1fc6 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0xc04b21bd acpi_os_unmap_iomem +EXPORT_SYMBOL_GPL vmlinux 0xc052deee amba_device_add +EXPORT_SYMBOL_GPL vmlinux 0xc0594649 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xc069f60e efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xc06e3cd3 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0xc07ea3e7 of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc0900fcf acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0xc099a341 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0b97e41 thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0xc0c23d7e regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0xc0d0bdde add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0f9caa3 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0xc10abab3 pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xc127cb42 pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0xc14c2824 xenbus_probe +EXPORT_SYMBOL_GPL vmlinux 0xc156dd39 xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xc15b4f48 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xc164642e xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc1a1a4db of_irq_parse_pci +EXPORT_SYMBOL_GPL vmlinux 0xc1a7bdc6 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xc1b8c9be get_device +EXPORT_SYMBOL_GPL vmlinux 0xc1c62327 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0xc1ea24e0 md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xc2016f55 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xc2070153 ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0xc2262fab ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc22d77f8 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0xc2338f68 of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0xc23d2d81 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0xc23d8f6a debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xc257b984 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0xc2610be6 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xc26351f8 bind_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xc27bc911 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc294ff32 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0xc2ac3282 pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xc2b3e7fa pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0xc2bd7249 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0xc2cb8dd3 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0xc2d7abd8 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xc2e75598 swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0xc2f07ed6 driver_find +EXPORT_SYMBOL_GPL vmlinux 0xc2f0b78e usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xc2fc09fa crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xc3053e99 gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0xc305b826 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0xc31fa5fc inet_csk_compat_setsockopt +EXPORT_SYMBOL_GPL vmlinux 0xc337f76c dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc34a8574 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0xc3514e6f mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xc352cb02 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xc357923c pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xc3664b1e skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc384e97e irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0xc385cb58 perf_num_counters +EXPORT_SYMBOL_GPL vmlinux 0xc38cc8a5 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xc38f36d9 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xc39683ab metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc39a79e3 gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0xc3a04506 devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc3cea382 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0xc402e842 bus_register +EXPORT_SYMBOL_GPL vmlinux 0xc41d6f95 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc4292bdc usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xc42f0155 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0xc444106c filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc45813eb ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc46981f6 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc49bb59a devres_get +EXPORT_SYMBOL_GPL vmlinux 0xc4c6b225 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc4e363ba arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0xc4e9e47b percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc4ffc1ec __sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0xc5149446 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc537425c kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xc5397da6 xenbus_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc542ffd6 acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0xc55e495c dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc58044c0 nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xc5c5b804 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xc5c66223 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xc5ee6550 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0xc60813cc ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc6242224 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xc6327246 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc63dae86 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xc63e7d93 static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc65f5cfc kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc69ef7ea regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6b4ba8e of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc6c43839 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xc6cbd3fe pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xc6cf919f pwm_config +EXPORT_SYMBOL_GPL vmlinux 0xc6d2c6d9 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0xc6da7a0a __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0xc6f86205 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xc7002ac4 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc710e938 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0xc719c432 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc73f9dc7 devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xc7415bbb usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0xc77847a9 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xc77f2236 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc7810075 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc79dcf60 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7b179ea ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer +EXPORT_SYMBOL_GPL vmlinux 0xc7d1951a iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7fa2846 extcon_unregister_interest +EXPORT_SYMBOL_GPL vmlinux 0xc80256f9 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0xc8094035 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0xc811c3ff irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xc81ca9fc platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xc8276e68 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xc8455fce component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xc85d85ef acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc893f932 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8ce5791 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xc8ceebfd ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc916e992 pwm_set_polarity +EXPORT_SYMBOL_GPL vmlinux 0xc929db63 input_class +EXPORT_SYMBOL_GPL vmlinux 0xc929e6eb clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc95e96b6 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc974e66c __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xc9779dc9 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level +EXPORT_SYMBOL_GPL vmlinux 0xc97e5c5f virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0xc9847225 get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0xc9a6f330 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xc9b184b3 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xc9b1c154 usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xc9e5036a anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9fb865e component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xca33c3e2 percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0xca488302 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0xca5cff31 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xca6983da shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xca6fb112 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xca72dbc0 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca81ea9a xenbus_transaction_end +EXPORT_SYMBOL_GPL vmlinux 0xcab91d83 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcad3869d of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0xcaf58713 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0xcb0e56cb clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0xcb14c0fb pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb1d1bf6 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0xcb236596 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xcb2ed5a7 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0xcb42cb40 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xcb5859e2 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0xcb592952 mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xcb692fba of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0xcb883d97 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcc057881 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0xcc0703ad sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0xcc17599d da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0xcc292851 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xcc2f6a0f serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0xcc397b57 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xcc4dae13 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xcc5cae2b gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0xcc608d99 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcc98cce6 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xccaf495f sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0xccbe11ef usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd65236 tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xcd03b471 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xcd0e711e dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0xcd46e83d inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xcd6949fd module_mutex +EXPORT_SYMBOL_GPL vmlinux 0xcd7b0337 reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xcd80c256 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xcd84b547 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd9ab45e ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcdad5539 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0xcdb2b912 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcde10f5e usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xcdf3943d usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0xcdf9799b max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xce151a36 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0xce37466a devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0xce3feef3 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce7487b8 rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0xce9ae62d pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xcec9cd23 extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee82549 __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xceed8c16 __set_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xcef18bf7 of_pci_get_host_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xcf035c1a phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0xcf497573 xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xcf54e0ae fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf5c0514 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xcf61e28f devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xcf638e2f fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcf88cd35 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xcf8bf3f1 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xcf8f71d0 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0xcf91dcde invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xd0048eae dev_pm_opp_get_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd01b2524 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xd026d518 HYPERVISOR_vcpu_op +EXPORT_SYMBOL_GPL vmlinux 0xd02bc107 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd0424a53 cpufreq_governor_dbs +EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate +EXPORT_SYMBOL_GPL vmlinux 0xd057c6e2 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xd05a3351 of_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xd0612d57 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd068ce61 i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0xd0857cdf crypto_lookup_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xd0928bed efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0d750c3 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0xd0e7adf0 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xd10c8df7 acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xd10f90e4 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0xd1109c6a pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xd11ae2d1 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0xd11b966c __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0xd124c086 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xd1256217 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xd139868a __of_genpd_add_provider +EXPORT_SYMBOL_GPL vmlinux 0xd139f708 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0xd144b77b usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xd146f870 rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0xd14791d7 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xd15460d0 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xd15b95bc cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xd15df943 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd17b3ba3 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xd181fc8e of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xd185a08a adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd1a65fea palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0xd1aa7d8d disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xd1afc849 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0xd1bd8c19 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xd1e301dd inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd1f64399 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd23bb32e pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xd2401d33 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xd249ee30 bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0xd25205ed hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd267160e debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd2817892 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xd2a1c430 shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0xd2ab202f usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xd2b492fc scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0xd2bd938d xen_remap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xd2dcac4e spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2e4a83d cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0xd322d582 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xd32a46fe md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0xd32b6da7 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0xd334f800 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0xd33795d8 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0xd3399042 tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed +EXPORT_SYMBOL_GPL vmlinux 0xd34ba057 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0xd361ccff xen_swiotlb_dma_mmap +EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xd3c5a318 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xd3dce3da bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd404a937 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd408425f __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xd4093ac6 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd424db81 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xd432a76d gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0xd4487fd5 snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd4570f58 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xd463caa0 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd468407f tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd471760e fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xd47b3a07 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xd49b8f81 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0xd4a5f503 blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0xd4bd66a0 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4c3a952 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xd4c467ba devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0xd4d5bf34 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xd4db2ba7 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0xd4e92628 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xd4ebb116 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xd52fbb0d usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xd53ca083 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0xd552414b device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0xd55545c8 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd56b5f64 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0xd59856b4 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0xd5ba47ed tpm2_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd6097b31 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd622ed70 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xd638283a regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xd6446ae6 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0xd6515705 devres_release +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd6862038 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0xd6d4a192 component_add +EXPORT_SYMBOL_GPL vmlinux 0xd6d8f36c pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xd6d9c42e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0xd6e17cea subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd7009328 gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd70a29e5 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xd728a5c1 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0xd729cc35 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xd72abee5 kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0xd72b2041 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd74bb580 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xd754e362 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0xd76860e8 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd76d355f usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd77f1347 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0xd792294d klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0xd7976f42 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xd7d1d94e sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0xd7d4470e iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7e95bb3 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd81ff90a tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd8245366 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0xd83bcee5 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xd8408b61 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd88e235d acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0xd8a6eacf platform_bus +EXPORT_SYMBOL_GPL vmlinux 0xd8a92c25 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xd8c455dd thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xd8e7f708 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0xd8f0ef0c thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xd8f157cf sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xd916dd39 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xd932080a kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0xd933adc0 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd942f78d regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xd9445269 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xd94aa457 display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd9876c86 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0xd996045e __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xd9a5425d dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0xd9b4a054 devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xd9b6bedc usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0xd9d7afd6 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xd9da1c21 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xd9e25aad ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9f10a79 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xda0e3ec4 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xda0ef981 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0xda143e35 vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0xda238d16 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xda2e37cc list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0xda3600c0 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0xda44b860 blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0xda555e9a shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xda578901 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xda6fc80d regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xda84ff7f sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xda8fabc9 component_del +EXPORT_SYMBOL_GPL vmlinux 0xda914ac3 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdaa0f101 irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0xdab28e32 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0xdab39f2d __module_address +EXPORT_SYMBOL_GPL vmlinux 0xdadc7de9 copy_reserved_iova +EXPORT_SYMBOL_GPL vmlinux 0xdae1e369 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xdae715e0 videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xdaf0b19a device_rename +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdb038eee devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xdb0550a6 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0xdb18ddfa pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xdb22edd4 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdb31b435 tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xdb37b487 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xdb3c5147 stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb5c3dd9 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0xdb636b13 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb6ff40c mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xdb736319 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0xdb84da2b regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb915183 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0xdb916fd0 trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0xdb91e05c tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xdb962b1f devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdbc87c98 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0xdbcc9135 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xdbd8d68e posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0xdbe579b0 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0xdbebe67c scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0xdbf38f3e device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall +EXPORT_SYMBOL_GPL vmlinux 0xdc237da4 reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0xdc27efa2 pci_get_hp_params +EXPORT_SYMBOL_GPL vmlinux 0xdc2c9aa3 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0xdc38d266 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0xdc5e9f2f crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc8adaa0 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xdc910a62 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0xdc9769ee ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdcc3150b da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xdccd5038 __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xdcefd8f0 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd3cf762 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd57e2b5 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0xdd5cd0d5 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xdd60dc69 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0xdd7d2910 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xdd89f793 acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xde090781 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xde27bc96 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xde40c637 dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0xde4239a1 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xde63a5f1 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xde9e2403 memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdebbb07b regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xded3bd4b pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xdee017c0 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xdee5630b usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xdef38560 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xdf0518ca irq_find_matching_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdf091357 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf156a8f alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0xdf21b876 of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xdf29b316 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xdf542d22 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xdf7e7bbb blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xdf8c8c11 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xdfa587a2 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0xdfb9fde5 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xdfdd2c59 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe02f1361 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0xe0353ee0 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xe04560dd __class_register +EXPORT_SYMBOL_GPL vmlinux 0xe0535f47 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe074477e reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xe08fda2f ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0xe092aad1 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0xe09928f9 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0xe0a8f14f rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0b2d0e1 usb_string +EXPORT_SYMBOL_GPL vmlinux 0xe0b78b01 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0xe0e3147c HYPERVISOR_sched_op +EXPORT_SYMBOL_GPL vmlinux 0xe0f43ae2 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xe135b4e3 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xe13c73d6 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xe13d9365 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0xe16e82b3 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xe16f4b7e ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe17aae33 xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0xe17c1ac6 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xe17f641e tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe1a6ef28 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0xe1b9ecc4 xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0xe2050091 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0xe24c3dff crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xe25fddb1 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0xe26a9d08 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xe26fab9c dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe28226ba led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe298c611 kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0xe2993d39 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xe2a1d666 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0xe2dfa5bb ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xe2f26ebc sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xe2f39377 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0xe2f5a5f2 spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe303a9d8 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe30aac55 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xe336e3af subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0xe358115a screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xe3739b4c sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xe3948ff4 acpi_walk_dep_device_list +EXPORT_SYMBOL_GPL vmlinux 0xe39ebb0d cppc_get_perf_ctrs +EXPORT_SYMBOL_GPL vmlinux 0xe3bd6eed usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xe3cd405a tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xe3f12a3f ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0xe41534ce bind_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0xe4181758 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe44638ad fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xe44a260c dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xe455a539 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe46a61c4 nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4a6f1bc vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0xe4c158e2 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0xe4d5bda8 component_master_add_child +EXPORT_SYMBOL_GPL vmlinux 0xe4e31279 gov_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe4e9df28 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xe4f1515a usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xe4f4426d pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0xe4fb67da pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0xe52e2dfc each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0xe52e9322 amba_apb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0xe535db95 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0xe538cd65 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0xe538d695 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xe53d056d klist_next +EXPORT_SYMBOL_GPL vmlinux 0xe546b736 rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xe5568b3b uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xe57dc9a7 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xe5800e07 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58a35f2 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe59d70df debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xe5bbe468 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xe5cbd3c0 component_master_add +EXPORT_SYMBOL_GPL vmlinux 0xe5de7e6a scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xe5ea4d7a ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0xe5f99af5 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xe601fbb0 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe6154358 xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0xe6325f9d platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xe64dc69f clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe65d8653 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xe66183b9 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0xe67adcc0 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe68260a2 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0xe69fdbdc mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0xe6be82aa mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6e13d69 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data +EXPORT_SYMBOL_GPL vmlinux 0xe6fb38cf arizona_of_get_named_gpio +EXPORT_SYMBOL_GPL vmlinux 0xe7086256 __of_genpd_xlate_simple +EXPORT_SYMBOL_GPL vmlinux 0xe714bb4e ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xe7216340 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xe725f3a8 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe74f1b10 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xe74f8b1d sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xe767a3ff raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xe768d444 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe7bb0dd5 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xe7bbe27c irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xe7bd985c device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe7e788f5 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xe7ed71e2 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe80a0a62 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe853d6c0 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xe861034a md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe89bd243 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe89e8b8a evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xe8a96073 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0xe8ba1ec3 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0xe8c3971e irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xe8ccd305 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xe8f46963 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xe8f83b2f sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xe9066578 regmap_update_bits_check +EXPORT_SYMBOL_GPL vmlinux 0xe9104bba __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xe912239c skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe959ecf4 of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0xe99e0244 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xe9a363cd unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xe9a8e38f regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe9af74d8 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xe9d0869f devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9d26e1c usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xe9e43537 dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0xea021eec inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea20cb01 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xea267c84 inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0xea2c553e gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea44d5d2 of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0xea4ff0af regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xea580e38 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0xea628c20 bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0xea661462 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xea73db01 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0xea84e1b8 blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xeaa60a34 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0xeaa70ab1 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xeac4f037 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xeae08ca3 pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0xeae82ed9 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0xeafc435e __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0xeb0f4a3c blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xeb15e405 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xeb2798f7 xen_destroy_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0xeb2eb288 efivar_variable_is_removable +EXPORT_SYMBOL_GPL vmlinux 0xeb459b8c __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xeb6a3b90 acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xeb7d183e jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xebc02b26 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0xebc48108 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xebeca308 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xec0528bb of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xec0e1750 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec1b3ef4 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec353217 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xec5d79fc exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0xec75ef37 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0xec7a4029 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xec934473 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0xec951565 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xeca0a974 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xeca11b0f pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xecb78166 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0xece11f2f cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0xece149dc pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xecf04566 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xecf224d6 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0xed2850cd of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xed8014d8 thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0xed8fabda cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xed981a16 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xeda3caee crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xedbc6f67 gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xedc04068 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0xedd26dec cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xedee13f8 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0xedf5760b phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0xedfeec65 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xee26f06b usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xee42bcc7 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xee472e40 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee7b7d65 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xee87a30c gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xee94cae5 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0xeeb81c0f pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xeec34e4f inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0xeec419f4 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0xeedb3915 dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0xeee22cb8 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xeefab77e __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0xef302581 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef6d007a sigset_from_compat +EXPORT_SYMBOL_GPL vmlinux 0xef84408f __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xef8d3006 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefb0fe23 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xefbfd2a0 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0xefd44bcb devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xefdab0a3 pm_genpd_syscore_poweron +EXPORT_SYMBOL_GPL vmlinux 0xefe33ec6 tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xefea041b acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0xeff0f9a7 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xeff2e95f ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xeff3ad3d ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xeffd0b84 extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0xf018ff4f init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xf032e4bb relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf05dd959 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf0922faf usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xf0d94c81 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf107f8ee devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0xf10cbf45 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xf1232ac1 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xf1261697 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xf13fc43e aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf14e4d24 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xf158d777 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xf1684648 elv_register +EXPORT_SYMBOL_GPL vmlinux 0xf17a69e7 wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0xf17dc0d6 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xf18044a2 rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf18e9292 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xf195d905 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1ca85f7 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xf1da20b1 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xf1f44469 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf234882a dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2b75a39 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xf2d237e2 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xf2ea68d8 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0xf2ec53c2 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf2fca959 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf3171efc ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf33dc43c sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xf34b26cd tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xf35e793f crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf37eb580 acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf38c6aeb of_display_timings_exist +EXPORT_SYMBOL_GPL vmlinux 0xf395b1e0 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf3adc8ea xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3bc3e85 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xf3cda6a2 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xf3cedb25 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xf3d16a69 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0xf3e3d846 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xf3f0e417 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf3f68d39 blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0xf3f9c626 raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0xf3fa3b08 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xf403eb46 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xf42ae2ef vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0xf44a80e5 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0xf44fc361 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xf45788b4 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xf46ae88c nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xf476e327 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf49574be da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xf4984457 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4abf8f7 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xf4e5219b devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xf515c331 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xf5379771 net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf549524a ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf5571547 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xf5584320 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf55e4cc7 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xf5657510 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xf5785b42 evtchn_get +EXPORT_SYMBOL_GPL vmlinux 0xf58fee33 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0xf5945bac gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xf5965f5f __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5c16763 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xf5d58674 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xf5edfac5 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0xf5f2a4e2 __of_genpd_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xf60eb1a4 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0xf626e88b yield_to +EXPORT_SYMBOL_GPL vmlinux 0xf6357ebd regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0xf64862b1 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0xf64e293b dma_request_slave_channel_reason +EXPORT_SYMBOL_GPL vmlinux 0xf6585005 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0xf667a680 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xf66b00fe acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0xf6745e85 mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0xf6a6fc55 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6d861c6 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0xf6de8ebf acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0xf6e492a2 irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf7016530 xenbus_gather +EXPORT_SYMBOL_GPL vmlinux 0xf717b743 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xf719d1ff extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xf742b925 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0xf764782d sock_update_netprioidx +EXPORT_SYMBOL_GPL vmlinux 0xf767ccc3 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xf796bcdf get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0xf79daff5 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0xf7a2de26 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xf7a387dd tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf7d63e0c devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xf7f0ab52 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xf7f81272 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0xf8087728 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0xf80b3175 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xf82c5a8f usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf862a648 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xf86810db usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf8825cc9 iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0xf883e15b sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf89cbf73 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0xf8a0b1e4 ref_module +EXPORT_SYMBOL_GPL vmlinux 0xf8ac2c54 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xf8df78fd dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf90756b4 regulator_can_change_voltage +EXPORT_SYMBOL_GPL vmlinux 0xf9285c87 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf931f4b3 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf935beb7 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xf93d278f pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf967422b HYPERVISOR_xen_version +EXPORT_SYMBOL_GPL vmlinux 0xf9765833 dmi_match +EXPORT_SYMBOL_GPL vmlinux 0xf98ccda5 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf9987a62 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9d8256f scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xf9f5d2f3 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xf9f640cd pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0xfa1e3e6c usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0xfa8061a5 swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec +EXPORT_SYMBOL_GPL vmlinux 0xfab55a4e ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0xfab59529 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xfad8d516 of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0xfb0047f6 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xfb153692 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfb165467 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb3577ee device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0xfb626aa8 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc100600 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc20b74e crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xfc25da26 put_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xfc30b9c2 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xfc31287d tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc436610 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xfc5bef55 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0xfc605d18 irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0xfc750406 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xfc82f83d sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xfc8675b0 rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0xfc9e6184 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xfce2c99a regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xfcfd65ff devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xfd3e0531 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xfd514e2e blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0xfd51b281 gnttab_end_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xfd525fb4 fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0xfd5dd111 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xfd667cba wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0xfd8ee5e0 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xfdbbf423 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfdc0e53a to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0xfdc13b7e ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xfdc1f6d9 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfdeb6f8c nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xfdf1255f crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xfe0b8177 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0xfe0f7740 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xfe17e93d dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0xfe18dfe6 devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xfe46424a gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xfe470a83 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0xfe588407 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfe9f836b gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xfea55166 dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0xfeab7c2c sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0xfebdda59 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfee9f30b device_create +EXPORT_SYMBOL_GPL vmlinux 0xfeeeaadf blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xfefafff4 acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfeffee0e xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff23cad3 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff2d6e96 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0xff5424a9 xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff607313 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xff6c01e0 usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xff7c9c71 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0xffcbf5ea of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0xffcf13f6 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0xffd40995 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xffe7881b dummy_con only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-106.129/arm64/generic.compiler +++ linux-raspi2-4.4.0/debian.master/abi/4.4.0-106.129/arm64/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu/Linaro 5.4.0-6ubuntu1~16.04.5) 5.4.0 20160609 only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-106.129/arm64/generic.modules +++ linux-raspi2-4.4.0/debian.master/abi/4.4.0-106.129/arm64/generic.modules @@ -0,0 +1,4393 @@ +3c59x +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_fintek +8250_mid +8255 +8255_pci +8390 +842 +842_compress +842_decompress +88pm800 +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +DAC960 +a100u2w +a3d +a8293 +aacraid +aat2870-regulator +aat2870_bl +ab3100 +ab3100-otp +ablk_helper +ac97_bus +acard-ahci +acecad +acenic +acpi-als +acpi_ipmi +acpi_power_meter +acpiphp_ibm +act200l-sir +act8865-regulator +act_bpf +act_connmark +act_csum +act_gact +act_ipt +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +act_vlan +actisys-sir +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5755 +ad5764 +ad5791 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7266 +ad7280a +ad7291 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7746 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad799x +ad8366 +ad9523 +ad9832 +ad9834 +ad_sigma_delta +adc128d818 +adcxx +addi_apci_1032 +addi_apci_1500 +addi_apci_1516 +addi_apci_1564 +addi_apci_16xx +addi_apci_2032 +addi_apci_2200 +addi_apci_3120 +addi_apci_3501 +addi_apci_3xxx +addi_watchdog +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adfs +adi +adis16060 +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16204 +adis16209 +adis16220 +adis16240 +adis16260 +adis16400 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1275 +adm8211 +adm9240 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adv7511 +adv7604 +adv7842 +adv_pci1710 +adv_pci1723 +adv_pci1724 +adv_pci_dio +advansys +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +aes-ce-blk +aes-ce-ccm +aes-ce-cipher +aes-neon-blk +af-rxrpc +af9013 +af9033 +af_alg +af_key +af_packet_diag +affs +ah4 +ah6 +ahci +ahci_ceva +ahci_platform +ahci_qoriq +ahci_xgene +aic79xx +aic7xxx +aic94xx +aim_cdev +aim_network +aim_sound +aim_v4l2 +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airspy +ak8975 +al3320a +algif_aead +algif_hash +algif_rng +algif_skcipher +alim7101_wdt +altera-ci +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am53c974 +amba-pl010 +ambakmi +amc6821 +amd +amd-xgbe +amd5536udc +amd8111e +amdgpu +amplc_dio200 +amplc_dio200_common +amplc_dio200_pci +amplc_pc236 +amplc_pc236_common +amplc_pc263 +amplc_pci224 +amplc_pci230 +amplc_pci236 +amplc_pci263 +ams369fg06 +analog +anatop-regulator +ansi_cprng +anubis +aoe +apbps2 +apds9300 +apds9802als +apds990x +apds9960 +appledisplay +appletalk +appletouch +applicom +aquantia +ar1021_i2c +ar5523 +ar7part +arc-rawmode +arc-rimi +arc4 +arc_emac +arc_ps2 +arc_uart +arcmsr +arcnet +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arm_big_little +arm_big_little_dt +arm_mhu +arm_scpi +arp_tables +arpt_mangle +arptable_filter +as102_fe +as3711-regulator +as3711_bl +as3722-regulator +as3935 +as5011 +asc7621 +ascot2e +asix +ast +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +ata_generic +ata_piix +atbm8830 +ath +ath10k_core +ath10k_pci +ath3k +ath5k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atm +atmel +atmel-flexcom +atmel-hlcdc +atmel_mxt_ts +atmel_pci +atmtcp +atp870u +atusb +atxp1 +aty128fb +atyfb +au0828 +au8522_common +au8522_decoder +au8522_dig +aufs +auo-pixcir-ts +auo_k1900fb +auo_k1901fb +auo_k190x +auth_rpcgss +authenc +authencesn +autofs4 +avmfritz +ax25 +ax88179_178a +axp20x-pek +axp20x-regulator +axp20x_usb_power +axp288_adc +axp288_charger +axp288_fuel_gauge +b1 +b1dma +b1pci +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +bas_gigaset +batman-adv +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bch +bcm-keypad +bcm-phy-lib +bcm203x +bcm3510 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm63138_nand +bcm7038_wdt +bcm7xxx +bcm87xx +bcm_iproc_tsc +bcma +bcma-hcd +bcmsysport +bd6107 +bdc +bdc_pci +be2iscsi +be2net +befs +belkin_sa +berlin2-adc +bfa +bfs +bfusb +bh1750 +bh1770glc +bh1780gli +binfmt_misc +block2mtd +blocklayoutdriver +blowfish_common +blowfish_generic +bluetooth +bluetooth_6lowpan +bma150 +bma180 +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmg160_core +bmg160_i2c +bmg160_spi +bmp085 +bmp085-i2c +bmp085-spi +bmp280 +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bnxt_en_bpo +bonding +bpa10x +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +br2684 +br_netfilter +brcmfmac +brcmnand +brcmsmac +brcmstb_nand +brcmutil +brd +bridge +broadcom +broadsheetfb +bsd_comp +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btqca +btrfs +btrtl +btsdio +bttv +btusb +btwilink +bu21013_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c4 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +cachefiles +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +caif_usb +caif_virtio +camellia_generic +can +can-bcm +can-dev +can-gw +can-raw +cap11xx +capi +capidrv +capmode +carl9170 +carminefb +cassini +cast5_generic +cast6_generic +cast_common +catc +cb710 +cb710-mmc +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcimdas +cb_pcimdda +cc10001_adc +cc2520 +cc770 +cc770_isa +cc770_platform +cciss +ccm +ccp +ccp-crypto +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +ceph +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha20_generic +chacha20poly1305 +chaoskey +chipone_icn8318 +chipreg +chnl_net +ci_hdrc +ci_hdrc_imx +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +cirrus +cirrusfb +clip +clk-cdce706 +clk-cdce925 +clk-max77686 +clk-max77802 +clk-palmas +clk-pwm +clk-qcom +clk-rk808 +clk-s2mps11 +clk-scpi +clk-si514 +clk-si5351 +clk-si570 +clk-twl6040 +clk-wm831x +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm36651 +cma3000_d0x +cma3000_d0x_i2c +cmac +cmdlinepart +cmtp +cnic +cobalt +cobra +coda +colibri-vf50-ts +com20020 +com20020-pci +com90io +com90xx +comedi +comedi_8254 +comedi_8255 +comedi_bond +comedi_parport +comedi_pci +comedi_test +comedi_usb +configfs +contec_pci_dio +cordic +core +cp210x +cpia2 +cppc_cpufreq +cpsw_ale +cpu-notifier-error-inject +cramfs +crc-ccitt +crc-itu-t +crc32 +crc32-arm64 +crc7 +crc8 +cryptd +crypto_user +cryptoloop +cs5345 +cs53l32a +csiostor +ctr +cts +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +cx18 +cx18-alsa +cx22700 +cx22702 +cx231xx +cx231xx-alsa +cx231xx-dvb +cx2341x +cx23885 +cx24110 +cx24113 +cx24116 +cx24117 +cx24120 +cx24123 +cx25821 +cx25821-alsa +cx25840 +cx82310_eth +cx88-alsa +cx88-blackbird +cx88-dvb +cx88-vp3054-i2c +cx8800 +cx8802 +cx88xx +cxacru +cxd2099 +cxd2820r +cxd2841er +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cyclades +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da9030_battery +da9034-ts +da903x +da903x_bl +da9052-battery +da9052-hwmon +da9052-regulator +da9052_bl +da9052_onkey +da9052_tsi +da9052_wdt +da9055-hwmon +da9055-regulator +da9055_onkey +da9055_wdt +da9062-core +da9062-regulator +da9062_wdt +da9063-regulator +da9063_onkey +da9063_wdt +da9150-charger +da9150-core +da9150-fg +da9150-gpadc +da9210-regulator +da9211-regulator +dac02 +daqboard2000 +das08 +das08_isa +das08_pci +das16 +das16m1 +das1800 +das6402 +das800 +davicom +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +ddbridge +de2104x +decnet +deflate +defxx +denali +denali_dt +denali_pci +des_generic +designware_i2s +dgap +dgnc +dht11 +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dibx000_common +digi_acceleport +digicolor-usart +diskonchip +diva_idi +diva_mnt +divacapi +divadidd +divas +dl2k +dlci +dlm +dln2 +dm-bio-prison +dm-bufio +dm-cache +dm-cache-cleaner +dm-cache-mq +dm-cache-smq +dm-crypt +dm-delay +dm-era +dm-flakey +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-verity +dm-zero +dm1105 +dm9601 +dme1737 +dmfe +dmi-sysfs +dmm32at +dmx3191d +dn_rtmsg +dnet +docg3 +docg4 +dp83848 +dp83867 +drbd +drbg +drm +drm_kms_helper +drop_monitor +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds620 +dsbr100 +dscc4 +dss1_divert +dst +dst_ca +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x +dt3000 +dt3155 +dt9812 +dummy +dummy-irq +dummy_stm +dvb-as102 +dvb-bt8xx +dvb-core +dvb-pll +dvb-ttpci +dvb-ttusb-budget +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-af9035 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6007 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-rtl28xxu +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dvb_usb_v2 +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_mmc +dw_mmc-exynos +dw_mmc-k3 +dw_mmc-pci +dw_mmc-pltfm +dw_wdt +dwc3 +dwc3-pci +dwc3-qcom +dwc_eth_qos +dwmac-generic +dwmac-ipq806x +dwmac-lpc18xx +dwmac-meson +dwmac-rk +dwmac-socfpga +dwmac-sti +dwmac-sunxi +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +earth-pt1 +earth-pt3 +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ec100 +ec_sys +echainiv +echo +edac_core +edt-ft5x06 +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efi-pstore +efi_test +efs +egalax_ts +ehci-msm +ehci-platform +ehset +elan_i2c +elo +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_meta +em_nbyte +em_text +em_u32 +emac_arc +emac_rockchip +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +empeg +ems_pci +ems_usb +emu10k1-gp +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +ene_ir +eni +enic +epic100 +eql +esas2r +esd_usb2 +esi-sir +esp4 +esp6 +esp_scsi +et1011c +et131x +ethoc +evbug +exofs +extcon-adc-jack +extcon-arizona +extcon-axp288 +extcon-gpio +extcon-max14577 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +ezusb +f2fs +f71805f +f71882fg +f75375s +f81232 +fakelb +fan53555 +farsync +faulty +fb_agm1264k-fl +fb_bd663474 +fb_ddc +fb_hx8340bn +fb_hx8347d +fb_hx8353d +fb_hx8357d +fb_ili9163 +fb_ili9320 +fb_ili9325 +fb_ili9340 +fb_ili9341 +fb_ili9481 +fb_ili9486 +fb_pcd8544 +fb_ra8875 +fb_s6d02a1 +fb_s6d1121 +fb_ssd1289 +fb_ssd1306 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_sys_fops +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fbtft_device +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdp +fdp_i2c +fealnx +ff-memless +fintek-cir +firedtv +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fixed +fjes +fl512 +flexfb +fm10k +fm801-gp +fm_drv +fmc +fmc-chardev +fmc-fakedev +fmc-trivial +fmc-write-eeprom +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fpga-mgr +freevxfs +fsa9480 +fscache +fsl-edma +fsl_lpuart +fsl_pq_mdio +ft6236 +ftdi-elan +ftdi_sio +ftl +fujitsu_ts +g450_pll +g760a +g762 +g_acm_ms +g_audio +g_cdc +g_dbgp +g_ether +g_ffs +g_hid +g_mass_storage +g_midi +g_ncm +g_nokia +g_printer +g_serial +g_webcam +g_zero +gadgetfs +gamecon +gameport +garmin_gps +garp +gcc-apq8084 +gcc-ipq806x +gcc-msm8660 +gcc-msm8916 +gcc-msm8960 +gcc-msm8974 +gcm +gdmtty +gdmulte +gdmwm +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +gennvm +genwqe_card +gf128mul +gf2k +gfs2 +ghash-ce +ghash-generic +gianfar_driver +gianfar_ptp +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +gluebi +go7007 +go7007-loader +go7007-usb +goku_udc +goodix +gp2ap002a00f +gp2ap020a00f +gpio +gpio-74x164 +gpio-74xx-mmio +gpio-addr-flash +gpio-adnp +gpio-adp5520 +gpio-adp5588 +gpio-altera +gpio-amd8111 +gpio-amdpt +gpio-arizona +gpio-beeper +gpio-charger +gpio-crystalcove +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-fan +gpio-grgpio +gpio-ir-recv +gpio-janz-ttl +gpio-kempld +gpio-lp3943 +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-mc33880 +gpio-mcp23s08 +gpio-ml-ioh +gpio-pca953x +gpio-pcf857x +gpio-rdc321x +gpio-regulator +gpio-syscon +gpio-tps65912 +gpio-twl4030 +gpio-twl6040 +gpio-ucb1400 +gpio-viperboard +gpio-vx855 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio-xgene-sb +gpio-zynq +gpio_backlight +gpio_keys +gpio_keys_polled +gpio_mouse +gpio_tilt_polled +gpio_wdt +gr_udc +grace +grcan +gre +grip +grip_mp +gs_fpga +gs_usb +gsc_hpdi +gspca_benq +gspca_conex +gspca_cpia1 +gspca_dtcs033 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_jl2005bcd +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stk1135 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_touptek +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtco +guillemot +gunze +gxt4500 +hackrf +hamachi +hampshire +hanwang +hci +hci_uart +hci_vhci +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcdrv +hdm_dim2 +hdm_i2c +hdm_usb +hdpvr +he +hexium_gemini +hexium_orion +hfc4s8s_l1 +hfc_usb +hfcmulti +hfcpci +hfcsusb +hfs +hfsplus +hi6421-pmic-core +hi6421-regulator +hi8435 +hid +hid-a4tech +hid-alps +hid-apple +hid-appleir +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-cherry +hid-chicony +hid-corsair +hid-cp2112 +hid-cypress +hid-dr +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-icade +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-lenovo +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-primax +hid-prodikeys +hid-rmi +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-isku +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-konepure +hid-roccat-kovaplus +hid-roccat-lua +hid-roccat-pyra +hid-roccat-ryos +hid-roccat-savu +hid-saitek +hid-samsung +hid-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steelseries +hid-sunplus +hid-thingm +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hidp +hih6130 +hip04_eth +hisax +hisax_fcpcipnp +hisax_isac +hisax_st5481 +hisi-acpu-cpufreq +hisi504_nand +hisi_thermal +hix5hd2_gmac +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hnae +hns_dsaf +hns_enet_drv +hns_mdio +hopper +horus3a +hostap +hostap_pci +hostap_plx +hp100 +hpfs +hpilo +hpsa +hptiop +hsi +hsi_char +hso +hsr +hsu_dma +htc-pasic3 +hts221 +hts221_i2c +hts221_spi +htu21 +huawei_cdc_ncm +hwa-hc +hwa-rc +hwmon-vid +hwspinlock_core +hx8357 +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd8111 +i2c-arb-gpio-challenge +i2c-bcm-iproc +i2c-cadence +i2c-cbus-gpio +i2c-designware-core +i2c-designware-pci +i2c-designware-platform +i2c-diolan-u2c +i2c-dln2 +i2c-emev2 +i2c-gpio +i2c-hid +i2c-i801 +i2c-isch +i2c-kempld +i2c-matroxfb +i2c-mt65xx +i2c-mux +i2c-mux-gpio +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-pinctrl +i2c-mux-reg +i2c-nforce2 +i2c-nomadik +i2c-ocores +i2c-parport +i2c-parport-light +i2c-pca-platform +i2c-piix4 +i2c-qup +i2c-rk3x +i2c-robotfuzz-osif +i2c-scmi +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-smbus +i2c-stub +i2c-taos-evm +i2c-thunderx +i2c-tiny-usb +i2c-versatile +i2c-via +i2c-viapro +i2c-viperboard +i2c-xgene-slimpro +i2c-xiic +i40e +i40evf +i5k_amb +i6300esb +i740fb +ib_addr +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mad +ib_mthca +ib_qib +ib_sa +ib_srp +ib_srpt +ib_ucm +ib_umad +ib_uverbs +ibmaem +ibmpex +icp_multi +icplus +ics932s401 +idma64 +idmouse +idt77252 +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +iforce +igb +igbvf +igorplugusb +iguanair +ii_pci20kc +iio-trig-interrupt +iio-trig-periodic-rtc +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili922x +ili9320 +imon +ims-pcu +imx074 +imx2_wdt +imx6ul_tsc +imx_thermal +ina209 +ina2xx +industrialio +industrialio-buffer-cb +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +input-polldev +int51x1 +intel_th +intel_th_gth +intel_th_msu +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +interact +interval_tree_test +inv-mpu6050 +io_edgeport +io_ti +ioc4 +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_MASQUERADE +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_tunnel +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_wlc +ip_vs_wrr +ip_vti +ipack +ipaq +ipcomp +ipcomp6 +ipddp +iphase +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +ipr +iproc-rng200 +iproc_nand +ips +ipt_CLUSTERIP +ipt_ECN +ipt_MASQUERADE +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipw +ipw2100 +ipw2200 +ipx +ir-hix5hd2 +ir-jvc-decoder +ir-kbd-i2c +ir-lirc-codec +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-usb +ir-xmp-decoder +ircomm +ircomm-tty +irda +irda-usb +irlan +irnet +irqbypass +irtty-sir +iscsi_boot_sysfs +iscsi_target_mod +iscsi_tcp +isdn +isdn_bsdcomp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl9305 +isofs +isp116x-hcd +isp1362-hcd +isp1704_charger +isp1760 +it87 +it913x +itd1000 +ite-cir +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_c2 +iw_cm +iw_cxgb3 +iw_cxgb4 +iw_nes +iwl3945 +iwl4965 +iwldvm +iwlegacy +iwlmvm +iwlwifi +ix2505v +ixgb +ixgbe +ixgbevf +janz-cmodio +janz-ican3 +jc42 +jedec_probe +jffs2 +jfs +jitterentropy_rng +jmb38x_ms +jme +joydev +joydump +jr3_pci +jsa1212 +jsm +kafs +kalmia +kaweth +kbtab +kcomedilib +ke_counter +kempld-core +kempld_wdt +kernelcapi +keyspan +keyspan_pda +keyspan_remote +keywrap +kfifo_buf +khazad +kingsun-sir +kl5kusb105 +kmx61 +kobil_sct +ks8842 +ks8851 +ks8851_mll +ks959-sir +ksdazzle-sir +ksz884x +kvaser_pci +kvaser_usb +kxcjk-1013 +kxsd9 +kxtj9 +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l4f00242t03 +l64781 +lan78xx +lanai +lapb +lapbether +latch-addr-flash +lattice-ecp3-config +lcc-ipq806x +lcc-msm8960 +lcd +ld9040 +ldusb +lec +led-class-flash +leds-88pm860x +leds-aat1290 +leds-adp5520 +leds-bcm6328 +leds-bcm6358 +leds-bd2802 +leds-blinkm +leds-da903x +leds-da9052 +leds-dac124s085 +leds-gpio +leds-ktd2692 +leds-lm3530 +leds-lm3533 +leds-lm355x +leds-lm3642 +leds-lp3944 +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max77693 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pwm +leds-regulator +leds-ss4200 +leds-tca6507 +leds-tlc591xx +leds-wm831x-status +leds-wm8350 +ledtrig-backlight +ledtrig-camera +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-oneshot +ledtrig-timer +ledtrig-transient +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libahci +libahci_platform +libceph +libcomposite +libcrc32c +libcxgbi +libertas +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libore +libosd +libsas +lightning +lineage-pem +linear +liquidio +lirc_bt829 +lirc_dev +lirc_imon +lirc_parallel +lirc_sasem +lirc_serial +lirc_sir +lirc_zilog +lis3l02dq +lis3lv02d +lis3lv02d_i2c +litelink-sir +lkkbd +llc +llc2 +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3630a_bl +lm3639_bl +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lms283gf05 +lms501kf03 +lnbh25 +lnbp21 +lnbp22 +lockd +locktorture +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp8755 +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpc_ich +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +ltc2941-battery-gauge +ltc2945 +ltc2978 +ltc3589 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltr501 +ltv350qv +lv5207lp +lvstest +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m25p80 +m2m-deinterlace +m52790 +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +ma600-sir +mac-celtic +mac-centeuro +mac-croatian +mac-cyrillic +mac-gaelic +mac-greek +mac-iceland +mac-inuit +mac-roman +mac-romanian +mac-turkish +mac80211 +mac80211_hwsim +mac802154 +macb +macmodes +macvlan +macvtap +mag3110 +magellan +mailbox-altera +mailbox-test +mailbox-xgene-slimpro +mantis +mantis_core +map_absent +map_funcs +map_ram +map_rom +marvell +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max1111 +max11801_ts +max1363 +max14577 +max14577_charger +max1586 +max16064 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max197 +max20751 +max2165 +max3100 +max31790 +max3421-hcd +max34440 +max517 +max5821 +max63xx_wdt +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77686 +max77693 +max77693-haptic +max77693_charger +max77802 +max8649 +max8660 +max8688 +max8903_charger +max8907 +max8907-regulator +max8925-regulator +max8925_bl +max8925_onkey +max8925_power +max8952 +max8973-regulator +max8997 +max8997_charger +max8997_haptic +max8998 +max8998_charger +mb862xxfb +mb86a16 +mb86a20s +mc-bus-driver +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc44s803 +mcb +mcb-pci +mceusb +mcp2120-sir +mcp251x +mcp3021 +mcp320x +mcp3422 +mcp4531 +mcp4725 +mcp4922 +mcryptd +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md-cluster +md4 +mdc800 +mdio +mdio-bcm-iproc +mdio-bcm-unimac +mdio-bitbang +mdio-cavium +mdio-gpio +mdio-mux +mdio-mux-gpio +mdio-mux-mmioreg +mdio-octeon +mdio-thunder +mdio-xgene +me4000 +me_daq +media +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +memstick +men_z135_uart +men_z188_adc +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +metro-usb +metronomefb +mf6x4 +mga +michael_mic +micrel +microchip +microread +microread_i2c +microtek +minix +mip6 +mite +mk712 +mkiss +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx90614 +mlxsw_core +mlxsw_pci +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmc_spi +mmcc-apq8084 +mmcc-msm8960 +mmcc-msm8974 +mmci_qcom_dml +mms114 +mn88472 +mn88473 +mos7720 +mos7840 +mostcore +moxa +mpc624 +mpl115 +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +msdos +msi001 +msi2500 +msm +msm-rng +msp3400 +mspro_block +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt29f_spinand +mt312 +mt352 +mt6311-regulator +mt6397-core +mt6397-regulator +mt7601u +mt8173-max98090 +mt8173-rt5650-rt5676 +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd +mtd_blkdevs +mtd_dataflash +mtdblock +mtdblock_ro +mtdoops +mtdram +mtdswap +mtip32xx +mtk-afe-pcm +mtk-pmic-wrap +mtk-sd +mtk_wdt +mtouch +multipath +multiq3 +musb_hdrc +mv_u3d_core +mv_udc +mvmdio +mvsas +mvumi +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc4005 +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxser +mxuport +myri10ge +n_gsm +n_hdlc +n_r3964 +n_tracerouter +n_tracesink +nand +nand_bch +nand_ecc +nand_ids +nandsim +national +natsemi +nau7802 +navman +nb8800 +nbd +nci +nci_spi +nci_uart +ncpfs +nct6683 +nct6775 +nct7802 +nct7904 +nd_blk +nd_btt +nd_pmem +ne2k-pci +neofb +net1080 +net2272 +net2280 +netconsole +netjet +netlink_diag +netrom +netup-unidvb +netxen_nic +newtonkbd +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_ipv4 +nf_nat_ipv6 +nf_nat_irc +nf_nat_masquerade_ipv4 +nf_nat_masquerade_ipv6 +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_redirect +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_synproxy_core +nf_tables +nf_tables_arp +nf_tables_bridge +nf_tables_inet +nf_tables_ipv4 +nf_tables_ipv6 +nf_tables_netdev +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfcwilink +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_log +nfnetlink_queue +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat_ipv4 +nft_chain_nat_ipv6 +nft_chain_route_ipv4 +nft_chain_route_ipv6 +nft_compat +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_exthdr +nft_hash +nft_limit +nft_log +nft_masq +nft_masq_ipv4 +nft_masq_ipv6 +nft_meta +nft_meta_bridge +nft_nat +nft_queue +nft_rbtree +nft_redir +nft_redir_ipv4 +nft_redir_ipv6 +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +ni_6527 +ni_65xx +ni_660x +ni_670x +ni_at_a2150 +ni_at_ao +ni_atmio +ni_atmio16d +ni_labpc +ni_labpc_common +ni_labpc_pci +ni_pcidio +ni_pcimio +ni_tio +ni_tiocmd +ni_usb6501 +nicpf +nicstar +nicvf +nilfs2 +niu +nlmon +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +nosy +notifier-error-inject +nouveau +nozomi +nps_enet +ns558 +ns83820 +ntb +ntb_netdev +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +null_blk +nuvoton-cir +nvidiafb +nvme +nvmem_core +nvmem_qfprom +nxp-nci +nxp-nci_i2c +nxp-ptn3460 +nxt200x +nxt6000 +objlayoutdriver +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +of_mmc_spi +of_xilinx_wdt +ofpart +ohci-platform +old_belkin-sir +omap4-keypad +omfs +omninet +onenand +opencores-kbd +openvswitch +opt3001 +opticon +option +or51132 +or51211 +orinoco +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +osd +osdblk +osst +oti6858 +ov2640 +ov5642 +ov6650 +ov7640 +ov7670 +ov772x +ov9640 +ov9740 +overlay +oxu210hp-hcd +p54common +p54pci +p54spi +p54usb +p8022 +p8023 +pa12203001 +palmas-pwrbutton +palmas-regulator +pandora_bl +panel +panel-lg-lg4573 +panel-samsung-ld9040 +panel-samsung-s6e8aa0 +panel-sharp-lq101r1sx01 +panel-simple +parade-ps8622 +parkbd +parport +parport_ax88796 +pata_acpi +pata_ali +pata_amd +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_of_platform +pata_oldpiix +pata_opti +pata_optidma +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sch +pata_serverworks +pata_sil680 +pata_sis +pata_sl82c105 +pata_triflex +pata_via +pc300too +pc87360 +pc87427 +pcap-regulator +pcap_keys +pcap_ts +pcbc +pcf50633 +pcf50633-adc +pcf50633-backlight +pcf50633-charger +pcf50633-gpio +pcf50633-input +pcf50633-regulator +pcf8574_keypad +pcf8591 +pch_udc +pci +pci-stub +pci200syn +pcie-iproc +pcie-iproc-platform +pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad +pcmda12 +pcmmio +pcmuio +pcnet32 +pcrypt +pcwd_pci +pcwd_usb +pda_power +pdc_adma +peak_pci +peak_usb +pegasus +penmount +percpu_test +pfuze100-regulator +phantom +phonet +phram +phy-bcm-kona-usb2 +phy-berlin-sata +phy-berlin-usb +phy-exynos-usb2 +phy-gpio-vbus-usb +phy-isp1301 +phy-msm-usb +phy-mt65xx-usb3 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-qcom-8x16-usb +phy-qcom-apq8064-sata +phy-qcom-ipq806x-sata +phy-qcom-ufs +phy-qcom-ufs-qmp-14nm +phy-qcom-ufs-qmp-20nm +phy-tahvo +phy-tusb1210 +physmap +physmap_of +pinctrl-apq8064 +pinctrl-apq8084 +pinctrl-ipq8064 +pinctrl-msm8660 +pinctrl-msm8916 +pinctrl-msm8960 +pinctrl-msm8x74 +pinctrl-qdf2xxx +pinctrl-spmi-gpio +pinctrl-spmi-mpp +pinctrl-ssbi-gpio +pinctrl-ssbi-mpp +pixcir_i2c_ts +pkcs7_test_key +pktcdvd +pktgen +pl172 +pl2303 +pl330 +plat-ram +plat_nand +platform_lcd +plip +plusb +pluto2 +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm80xx +pm8941-pwrkey +pm8941-wled +pmbus +pmbus_core +pmc551 +pmcraid +pn533 +pn544 +pn544_i2c +pn_pep +poly1305_generic +port100 +powermate +powr1220 +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_core +pps_parport +pptp +prism2_usb +ps2mult +psmouse +psnap +ptp +pulsedlight-lidar-lite-v2 +pvrusb2 +pwc +pwm-atmel-hlcdc +pwm-beeper +pwm-berlin +pwm-fan +pwm-fsl-ftm +pwm-lp3943 +pwm-mtk-disp +pwm-pca9685 +pwm-regulator +pwm-twl +pwm-twl-led +pwm_bl +pxa168_eth +pxa27x_udc +qcaspi +qcaux +qcom-coincell +qcom-spmi-iadc +qcom-spmi-pmic +qcom-spmi-temp-alarm +qcom-spmi-vadc +qcom-wdt +qcom_bam_dma +qcom_gsbi +qcom_hwspinlock +qcom_rpm +qcom_rpm-regulator +qcom_smbb +qcom_smd-regulator +qcom_spmi-regulator +qcrypto +qcserial +qed +qede +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qm1d1c0042 +qmi_wwan +qnx4 +qnx6 +qsemi +qt1010 +qt1070 +qt2160 +quatech2 +quota_tree +quota_v1 +quota_v2 +qxl +r128 +r592 +r6040 +r8152 +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r852 +r8712u +r8723au +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-bcm2048 +radio-i2c-si470x +radio-keene +radio-ma901 +radio-maxiradio +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-shark +radio-si476x +radio-tea5764 +radio-usb-si470x +radio-usb-si4713 +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ramoops +raw +rbd +rbtree_test +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-asus-pc39 +rc-asus-ps3-100 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-delock-61959 +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-dvbsky +rc-em-terratec +rc-encore-enltv +rc-encore-enltv-fm53 +rc-encore-enltv2 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-pctv-sedna +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-reddo +rc-snapstream-firefly +rc-streamzap +rc-su3000 +rc-tbs-nec +rc-technisat-ts35 +rc-technisat-usb2 +rc-terratec-cinergy-c-pci +rc-terratec-cinergy-s2-hd +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-total-media-in-hand-02 +rc-trekstor +rc-tt-1500 +rc-twinhan-dtv-cab-ci +rc-twinhan1027 +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rc5t583-regulator +rdc321x-southbridge +rdma_cm +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +redboot +redrat3 +reed_solomon +regmap-spmi +regulator-haptic +reiserfs +remoteproc +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd_ftl +rfkill-gpio +rfkill-regulator +rio500 +rivafb +rj54n1cb0c +rk808 +rk808-regulator +rmd128 +rmd160 +rmd256 +rmd320 +rn5t618 +rn5t618-regulator +rn5t618_wdt +rndis_host +rndis_wlan +rocket +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpcrdma +rpcsec_gss_krb5 +rpr0521 +rrpc +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt5033 +rt5033-regulator +rt5033_battery +rt61pci +rt73usb +rt9455_charger +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab3100 +rtc-abx80x +rtc-as3722 +rtc-bq32k +rtc-bq4802 +rtc-da9052 +rtc-da9055 +rtc-da9063 +rtc-ds1286 +rtc-ds1305 +rtc-ds1307 +rtc-ds1343 +rtc-ds1347 +rtc-ds1374 +rtc-ds1390 +rtc-ds1511 +rtc-ds1553 +rtc-ds1672 +rtc-ds1685 +rtc-ds1742 +rtc-ds2404 +rtc-ds3232 +rtc-ds3234 +rtc-em3027 +rtc-fm3130 +rtc-hid-sensor-time +rtc-hym8563 +rtc-isl12022 +rtc-isl12057 +rtc-isl1208 +rtc-lp8788 +rtc-m41t80 +rtc-m41t93 +rtc-m41t94 +rtc-m48t35 +rtc-m48t59 +rtc-m48t86 +rtc-max6900 +rtc-max6902 +rtc-max77686 +rtc-max77802 +rtc-max8907 +rtc-max8925 +rtc-max8997 +rtc-max8998 +rtc-mc13xxx +rtc-mcp795 +rtc-msm6242 +rtc-mt6397 +rtc-palmas +rtc-pcap +rtc-pcf2123 +rtc-pcf2127 +rtc-pcf50633 +rtc-pcf85063 +rtc-pcf8523 +rtc-pcf8563 +rtc-pcf8583 +rtc-pl030 +rtc-pl031 +rtc-pm8xxx +rtc-r9701 +rtc-rc5t583 +rtc-rk808 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rv8803 +rtc-rx4581 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-snvs +rtc-stk17ta8 +rtc-tps6586x +rtc-tps65910 +rtc-tps80031 +rtc-twl +rtc-v3020 +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtc-zynqmp +rtd520 +rti800 +rti802 +rtl2830 +rtl2832 +rtl2832_sdr +rtl8150 +rtl8187 +rtl8188ee +rtl818x_pci +rtl8192c-common +rtl8192ce +rtl8192cu +rtl8192de +rtl8192ee +rtl8192se +rtl8723-common +rtl8723ae +rtl8723be +rtl8821ae +rtl8xxxu +rtl_pci +rtl_usb +rtllib +rtllib_crypt_ccmp +rtllib_crypt_tkip +rtllib_crypt_wep +rtlwifi +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rx51_battery +rxkad +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3fb +s3fwrn5 +s3fwrn5_i2c +s526 +s5h1409 +s5h1411 +s5h1420 +s5m8767 +s626 +s6e63m0 +s921 +saa6588 +saa6752hs +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7706h +safe_serial +salsa20_generic +samsung-keypad +samsung-sxgbe +sata_inic162x +sata_mv +sata_nv +sata_promise +sata_qstor +sata_sil +sata_sil24 +sata_sis +sata_svw +sata_sx4 +sata_uli +sata_via +sata_vsc +savage +savagefb +sb1000 +sbp_target +sbs-battery +sc16is7xx +sc92031 +sca3000 +sch5627 +sch5636 +sch56xx-common +sch_atm +sch_cbq +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_fq +sch_fq_codel +sch_gred +sch_hfsc +sch_hhf +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_pie +sch_plug +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_tbf +sch_teql +scpi-cpufreq +scpi-hwmon +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +scsi_transport_srp +sctp +sdhci +sdhci-acpi +sdhci-iproc +sdhci-msm +sdhci-of-arasan +sdhci-of-at91 +sdhci-of-esdhc +sdhci-pci +sdhci-pltfm +sdhci-pxav3 +sdhci_f_sdh30 +sdio_uart +seed +sensorhub +seqiv +ser_gigaset +serial2002 +serio_raw +sermouse +serpent_generic +serport +ses +sfc +sh_veu +sha1-ce +sha2-ce +shark2 +shpchp +sht15 +sht21 +shtc1 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sil164 +sir-dev +sis190 +sis5595 +sis900 +sisfb +sisusbvga +sit +sja1000 +sja1000_isa +sja1000_platform +skd +skfp +skge +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +slcan +slip +slram +sm501 +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smb347-charger +smd +smd-rpm +smem +smipcie +smm665 +smsc +smsc47b397 +smsc47m1 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsmdtv +smssdio +smsusb +snd +snd-ac97-codec +snd-ad1889 +snd-ak4113 +snd-ak4114 +snd-ak4xxx-adda +snd-ali5451 +snd-aloop +snd-als300 +snd-atiixp +snd-atiixp-modem +snd-au8810 +snd-au8820 +snd-au8830 +snd-aw2 +snd-azt3328 +snd-bcd2000 +snd-bebob +snd-bt87x +snd-ca0106 +snd-cmipci +snd-cs4281 +snd-cs46xx +snd-cs8427 +snd-ctxfi +snd-darla20 +snd-darla24 +snd-dice +snd-dummy +snd-echo3g +snd-emu10k1 +snd-emu10k1-synth +snd-emu10k1x +snd-emux-synth +snd-ens1370 +snd-ens1371 +snd-es1938 +snd-es1968 +snd-firewire-digi00x +snd-firewire-lib +snd-firewire-tascam +snd-fireworks +snd-fm801 +snd-gina20 +snd-gina24 +snd-hda-codec +snd-hda-codec-analog +snd-hda-codec-ca0110 +snd-hda-codec-ca0132 +snd-hda-codec-cirrus +snd-hda-codec-cmedia +snd-hda-codec-conexant +snd-hda-codec-generic +snd-hda-codec-hdmi +snd-hda-codec-idt +snd-hda-codec-realtek +snd-hda-codec-si3054 +snd-hda-codec-via +snd-hda-core +snd-hda-intel +snd-hdsp +snd-hdspm +snd-hrtimer +snd-hwdep +snd-i2c +snd-ice1712 +snd-ice1724 +snd-ice17xx-ak4xxx +snd-indigo +snd-indigodj +snd-indigodjx +snd-indigoio +snd-indigoiox +snd-intel8x0 +snd-intel8x0m +snd-isight +snd-korg1212 +snd-layla20 +snd-layla24 +snd-lola +snd-lx6464es +snd-maestro3 +snd-mia +snd-mixart +snd-mixer-oss +snd-mona +snd-mpu401 +snd-mpu401-uart +snd-mtpav +snd-mts64 +snd-nm256 +snd-opl3-lib +snd-opl3-synth +snd-oxfw +snd-oxygen +snd-oxygen-lib +snd-pcm +snd-pcm-dmaengine +snd-pcm-oss +snd-pcxhr +snd-portman2x4 +snd-pt2258 +snd-rawmidi +snd-riptide +snd-rme32 +snd-rme96 +snd-rme9652 +snd-scs1x +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-soc-ac97 +snd-soc-adau1701 +snd-soc-ak4104 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-alc5623 +snd-soc-apq8016-sbc +snd-soc-core +snd-soc-cs35l32 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42xx8 +snd-soc-cs42xx8-i2c +snd-soc-cs4349 +snd-soc-es8328 +snd-soc-fsl-asrc +snd-soc-fsl-esai +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-gtm601 +snd-soc-imx-audmux +snd-soc-lpass-apq8016 +snd-soc-lpass-cpu +snd-soc-lpass-ipq806x +snd-soc-lpass-platform +snd-soc-max98090 +snd-soc-max98357a +snd-soc-pcm1681 +snd-soc-pcm1792a-codec +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-rl6231 +snd-soc-rt5631 +snd-soc-rt5645 +snd-soc-rt5677 +snd-soc-rt5677-spi +snd-soc-sgtl5000 +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-simple-card +snd-soc-spdif-rx +snd-soc-spdif-tx +snd-soc-ssm2602 +snd-soc-ssm2602-i2c +snd-soc-ssm2602-spi +snd-soc-ssm4567 +snd-soc-sta32x +snd-soc-sta350 +snd-soc-sti-sas +snd-soc-storm +snd-soc-tas2552 +snd-soc-tas5086 +snd-soc-tas571x +snd-soc-tfa9879 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic3x +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8962 +snd-soc-wm8978 +snd-soc-xtfpga-i2s +snd-sonicvibes +snd-timer +snd-trident +snd-ua101 +snd-usb-6fire +snd-usb-audio +snd-usb-caiaq +snd-usb-hiface +snd-usb-line6 +snd-usb-pod +snd-usb-podhd +snd-usb-toneport +snd-usb-variax +snd-usbmidi-lib +snd-util-mem +snd-via82xx +snd-via82xx-modem +snd-virmidi +snd-virtuoso +snd-vx-lib +snd-vx222 +snd-ymfpci +snic +soc_button_array +soc_camera +soc_camera_platform +soc_mediabus +softdog +softing +solo6x10 +solos-pci +sony-btf-mpx +soundcore +sp2 +sp805_wdt +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +speedfax +speedtch +spi-altera +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-fsl-dspi +spi-gpio +spi-lm70llp +spi-mt65xx +spi-nor +spi-oc-tiny +spi-pl022 +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-qup +spi-rockchip +spi-sc18is602 +spi-tle62x0 +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spl +splat +spmi +spmi-pmic-arb +sprd_serial +sr9700 +sr9800 +ssb +ssb-hcd +ssd1307fb +ssfdc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +sstfb +ssu100 +st +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_spi +st_magn +st_magn_i2c +st_magn_spi +st_pressure +st_pressure_i2c +st_pressure_spi +st_sensors +st_sensors_i2c +st_sensors_spi +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +ste_modem_rproc +stex +stinger +stir4200 +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm_console +stm_core +stmmac +stmmac-platform +stmpe-keypad +stmpe-ts +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv6110 +stv6110x +sun4i-codec +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +svgalib +sx8 +sx8654 +sx9500 +sym53c8xx +symbolserial +synaptics_i2c +synaptics_i2c_rmi4 +synaptics_usb +synclink_gt +synclinkmp +syscopyarea +sysfillrect +sysimgblt +sysv +t1pci +t5403 +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +target_core_user +tc3589x-keypad +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tcs3414 +tcs3472 +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tda998x +tdfx +tdfxfb +tdo24m +tea +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tef6862 +tehuti +tekram-sir +teranetics +test-hexdump +test-kstrtox +test-string_helpers +test_bpf +test_firmware +test_module +test_power +test_printf +test_static_key_base +test_static_keys +test_udelay +test_user_copy +tg3 +tgr192 +thmc50 +thunder_bgx +thunderbolt +ti-adc081c +ti-adc128s052 +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_dac7512 +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timeriomem-rng +tipc +tlan +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmp006 +tmp102 +tmp103 +tmp401 +tmp421 +toim3232-sir +torture +toshsd +touchit213 +touchright +touchwin +tpci200 +tpm-rng +tpm_atmel +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_infineon +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tps40422 +tps51632-regulator +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65090-charger +tps65090-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps65218-regulator +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps80031-regulator +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsl2550 +tsl2563 +tsl2583 +tsl2x7x_core +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tvaudio +tveeprom +tvp5150 +tw2804 +tw68 +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-madc-hwmon +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6040-vibra +twofish_common +twofish_generic +typhoon +u132-hcd +u_ether +u_serial +uartlite +uas +ubi +ubifs +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +uda1342 +udc-core +udc-xilinx +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufshcd +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uli526x +ulpi +umc +umem +ums-alauda +ums-cypress +ums-datafab +ums-eneub6250 +ums-freecom +ums-isd200 +ums-jumpshot +ums-karma +ums-onetouch +ums-realtek +ums-sddr09 +ums-sddr55 +ums-usbat +unix_diag +upd64031a +upd64083 +us5182d +usb-serial-simple +usb-storage +usb3503 +usb8xxx +usb_8dev +usb_debug +usb_f_acm +usb_f_ecm +usb_f_ecm_subset +usb_f_eem +usb_f_fs +usb_f_hid +usb_f_mass_storage +usb_f_midi +usb_f_ncm +usb_f_obex +usb_f_phonet +usb_f_printer +usb_f_rndis +usb_f_serial +usb_f_ss_lb +usb_f_uac1 +usb_f_uac2 +usb_f_uvc +usb_gigaset +usb_wwan +usbatm +usbdux +usbduxfast +usbduxsigma +usbhid +usbip-core +usbip-host +usbkbd +usblcd +usbled +usblp +usbmisc_imx +usbmon +usbmouse +usbnet +usbserial +usbsevseg +usbtest +usbtmc +usbtouchscreen +usbtv +usbvision +usdhi6rol0 +userio +userspace-consumer +ushc +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-dv-timings +v4l2-flash-led-class +v4l2-mem2mem +vcan +vcnl4000 +ves1820 +ves1x93 +veth +vexpress +vf610_adc +vfio +vfio-amba +vfio-pci +vfio-platform +vfio-platform-amdxgbe +vfio-platform-base +vfio-platform-calxedaxgmac +vfio_iommu_type1 +vfio_virqfd +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_net +vhost_scsi +via +via-rhine +via-sdmmc +via-velocity +via686a +videobuf-core +videobuf-dma-sg +videobuf-dvb +videobuf-vmalloc +videobuf2-core +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-dvb +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videodev +vim2m +viperboard +viperboard_adc +virtio-gpu +virtio-rng +virtio_input +virtio_scsi +virtual +visor +vitesse +vivid +vlsi_ir +vmac +vme_pio2 +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmxnet3 +vp27smpx +vport-geneve +vport-gre +vport-vxlan +vrf +vringh +vsock +vsxxxaa +vt1211 +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxge +vxlan +vz89x +w1-gpio +w1_bq27000 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1_ds2781 +w1_ds28e04 +w1_smem +w1_therm +w5100 +w5300 +w6692 +w83627ehf +w83627hf +w83781d +w83791d +w83792d +w83793 +w83795 +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +walkera0701 +wanxl +warrior +wcn36xx +wd719x +wdt87xx_i2c +wdt_pci +whc-rc +whci +whci-hcd +whiteheat +wil6210 +wimax +winbond-840 +wire +wishbone-serial +wl1251 +wl1251_sdio +wl1251_spi +wl1273-core +wl12xx +wl18xx +wlcore +wlcore_sdio +wlcore_spi +wm831x-dcdc +wm831x-hwmon +wm831x-isink +wm831x-ldo +wm831x-on +wm831x-ts +wm831x_backup +wm831x_bl +wm831x_power +wm831x_wdt +wm8350-hwmon +wm8350-regulator +wm8350_power +wm8350_wdt +wm8400-regulator +wm8739 +wm8775 +wm8994-core +wm8994-irq +wm8994-regmap +wm8994-regulator +wm97xx-ts +wp512 +wusb-cbaf +wusb-wa +wusbcore +x25 +x25_asy +x_tables +xc4000 +xc5000 +xcbc +xen-blkback +xen-evtchn +xen-fbfront +xen-gntalloc +xen-gntdev +xen-kbdfront +xen-netback +xen-privcmd +xen-scsiback +xen-scsifront +xen-tpmfront +xen_wdt +xenfs +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_ipcomp +xfrm_user +xfs +xgene-dma +xgene-enet +xgene-rng +xgene_edac +xgifb +xhci-plat-hcd +xilinx-tpg +xilinx-video +xilinx-vtc +xilinx_can +xilinx_uartps +xillybus_core +xillybus_of +xillybus_pcie +xor +xpad +xr_usb_serial_common +xsens_mt +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +xt_NETMAP +xt_NFLOG +xt_NFQUEUE +xt_RATEEST +xt_REDIRECT +xt_SECMARK +xt_TCPMSS +xt_TCPOPTSTRIP +xt_TEE +xt_TPROXY +xt_TRACE +xt_addrtype +xt_bpf +xt_cgroup +xt_cluster +xt_comment +xt_connbytes +xt_connlabel +xt_connlimit +xt_connmark +xt_conntrack +xt_cpu +xt_dccp +xt_devgroup +xt_dscp +xt_ecn +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_ipcomp +xt_iprange +xt_ipvs +xt_l2tp +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_nat +xt_nfacct +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_realm +xt_recent +xt_sctp +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_tcpudp +xt_time +xt_u32 +xtkbd +xts +xusbatm +xz_dec_test +yam +yealink +yellowfin +yurex +zaurus +zavl +zcommon +zd1201 +zd1211rw +zforce_ts +zfs +zhenhua +zl10036 +zl10039 +zl10353 +zl6100 +zlib +znvpair +zpios +zr364xx +zram +zunicode +zynq-fpga only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-106.129/armhf/generic +++ linux-raspi2-4.4.0/debian.master/abi/4.4.0-106.129/armhf/generic @@ -0,0 +1,17617 @@ +EXPORT_SYMBOL arch/arm/crypto/aes-arm 0x276b2f72 private_AES_set_encrypt_key +EXPORT_SYMBOL arch/arm/crypto/aes-arm 0x6c62e582 AES_decrypt +EXPORT_SYMBOL arch/arm/crypto/aes-arm 0xc30fcbed AES_encrypt +EXPORT_SYMBOL arch/arm/crypto/aes-arm 0xcf024ae9 private_AES_set_decrypt_key +EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0xb2fb22d3 crypto_sha256_arm_update +EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0xfe72d9b0 crypto_sha256_arm_finup +EXPORT_SYMBOL arch/arm/lib/xor-neon 0x0f051164 xor_block_neon_inner +EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe +EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble +EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL crypto/mcryptd 0x28865246 mcryptd_arm_flusher +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/atm/suni 0x60735f70 suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x21349343 bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0xa5cf640c bcma_core_irq +EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str +EXPORT_SYMBOL drivers/block/paride/paride 0x0b2fc68d pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x14a61d86 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x1a5366ad pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x32e95dbc pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x54aeb4e7 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x77cb7e98 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x934ced6d pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xba8572da pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xc4535e64 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0xcd61ed66 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0xf401bf9a pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0xf8861f31 pi_write_regr +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xf3c1edc8 btbcm_patchram +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1b97b3aa ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fae3bac ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x2d7b39da ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7017d696 ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80673e93 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xc789b2ae ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/nvram 0x0f28cb91 nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x17ff2c1d __nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x2adec1e0 __nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x7da28f12 nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x9ce3f83f nvram_write_byte +EXPORT_SYMBOL drivers/char/nvram 0xa8813189 __nvram_write_byte +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x10ea5d1c st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x2ef04afe st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xc1d80b27 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xdab79a76 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xa58737d1 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xb6fa5fdb xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xc3951615 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/crypto/caam/caam 0x1c758e97 caam_get_era +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x0eeeda83 caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x39f7a4ea caam_jr_free +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x4f72b77d caam_jr_strstatus +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xa9acf1c7 split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xbf5c38b3 caam_jr_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xcfae1daa gen_split_key +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x2d3b8e7d dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x77232b05 dw_dma_get_src_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xc361df8a dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xd41b767d dw_dma_cyclic_free +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xeb0b4d9d dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xfdd6f19e dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/pl330 0x5b1b30e0 pl330_filter +EXPORT_SYMBOL drivers/edac/edac_core 0x723d88cf edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0155015f fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04dd92ce fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x12078646 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16932a5b fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1892c4a6 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2433a624 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x29f991dd fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x402acacb fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x476ca0ab fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d5d4eca fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6366fcc7 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6a378268 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6d3a9cd7 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x743d9fdc fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7a63914d fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e431b14 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e7a8ca4 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8f10da39 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9bc62b9c fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa4054c10 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0xad4bb1db fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb33e37b8 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb4381a23 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbd79dbdb fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc09d918c fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc3351ee7 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcafd6e35 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd958d5eb fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf5d7c26a fw_cancel_transaction +EXPORT_SYMBOL drivers/fmc/fmc 0x1c5dd5d2 fmc_device_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x217af28f fmc_reprogram +EXPORT_SYMBOL drivers/fmc/fmc 0x49282c21 fmc_find_sdb_device +EXPORT_SYMBOL drivers/fmc/fmc 0x4f4e2e6d fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x73769209 fmc_show_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x76687a6d fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x9d231fdc fmc_device_unregister_n +EXPORT_SYMBOL drivers/fmc/fmc 0xb68d3298 fmc_driver_register +EXPORT_SYMBOL drivers/fmc/fmc 0xd2b212cd fmc_device_register_n +EXPORT_SYMBOL drivers/fmc/fmc 0xfbd2b46b fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xfed999ca fmc_device_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01702970 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x058a5feb drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07e365a5 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0845b221 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a5434c2 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b02d0d6 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b0ee1ce drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0be3efd0 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d04fb20 drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fccafb1 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1040e60a drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10d80e29 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11117238 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16795d05 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1828c054 drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18eada96 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19556d5c drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x199305ea drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19d0e504 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a4d348f drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a708d10 of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1adb9b89 drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b657b66 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c12e1bb drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d5175b3 drm_connector_unplug_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f5a985b drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20a01c17 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20b7f60e drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20cf6d1a drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20e8e8af drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2128ceaf drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x217c0aa1 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22c1d7a0 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22cb3e42 drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2346be15 drm_connector_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24de41b4 drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2664bf6f drm_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x266aaddd drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x283e4146 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2945379f drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ab2d7fd drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2af36995 drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b4b735e drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c2b6f00 drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ce3f9f1 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cf26f42 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d924dd1 drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e539904 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f7e1ec2 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3004c03a drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3010d70c drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30f825e7 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3202aacd drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x323f50f8 drm_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x343fd321 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x346127a7 drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34bef6d9 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35b559dd drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a80da06 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a95f59c drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b7a8f6b drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bfe21b6 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c4a61f6 drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d873fd5 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3df051d6 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e229318 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f2b43c4 drm_plane_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40b41502 drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4267c72b drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x433850de drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4394ed4a drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43ad8cef drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4588cee0 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x469649f7 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x482c78ba drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48660ba7 drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x492780c1 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bc06e98 drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d343214 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d72d2ef drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d9e3c7d drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50312251 drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5046b582 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5089f0d3 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50d8b31a drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x515a89c7 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x544e0704 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54541cfc drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x549c8681 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55a4870f drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5760e410 drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0x576d2482 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x579a89f3 drm_framebuffer_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a1adb68 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a268d54 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d5379a8 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d56a873 drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5da26702 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f1c3b44 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fac7566 drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60705c37 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61297f57 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x619cef3d drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61a779f6 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61a8f4c2 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65633c7b drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0x665b7704 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66938852 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x672b3cb2 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69827995 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69e2ac2a drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a0dd4c6 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6aa05474 drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b047178 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c010fd4 drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f61ff4d drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71bdba4b drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71e3005e drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71fed2a2 drm_atomic_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72825fb4 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73310d00 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76e8b212 drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x786eba9d drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0x788dd5a3 drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x792c0b18 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79b02ee9 drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a491e83 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a59bb13 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a9d557c drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ae9f5b2 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b612a69 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b9fbf85 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d6ac1c9 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e574728 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ec7cc80 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fc66427 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x802e3249 drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80606d1e drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x820bd217 drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x823b0c90 drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84e706b6 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8518e420 drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x861d167f drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8752799b drm_platform_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8793f17d drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87c9aad9 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87cfa9cc drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x880cfd03 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x888c0ca1 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88987525 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89895e87 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c2c93e3 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c3ac142 drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e3a72dc drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e89370f drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f4bdf84 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x911013d4 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91e2377e drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92fa718a drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x930fd3e0 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93b6085c drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9477e132 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94822865 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95a7101b drm_framebuffer_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x964b2d11 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96a8c3f8 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96b215dc drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97258c4b drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x974bebf4 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97607789 drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bf7693d drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c0a10d1 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce981e8 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d5d80bc drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa11351d5 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa142614c drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa23515ec drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa29641de drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa371d8fe drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa39e0abb drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa428c286 drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa44784fe drm_crtc_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa457e0fa drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa638709f drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa669b540 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa78c2344 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa794d915 drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8a6f4b6 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8c3235b drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa973af26 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa86ea26 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaaffbcaa drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad00c3b1 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xadf62c6d drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae6ffa55 drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae8f9184 drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaeab4f72 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0227aa0 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1953a1e drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb276aa59 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3905fa3 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4c949c7 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb501e994 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb526c596 drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb59086e3 drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5ffefc0 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb63249e5 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb740d1b2 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8e3adc4 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd4c6eeb drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdc1b815 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdf1b76f drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe3cd6b3 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbef26cae drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfea5292 drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc04233c0 drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc084b7f7 drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc120bca0 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc26a18f7 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2d81a69 drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc353e4ee drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3901dcd drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3eefafb drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4aa2808 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc61e3f07 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6985205 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc71d8496 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc898e02c drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9972a90 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9fadd7e drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcddf932a drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcde1b0c9 drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce68a113 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf29a9b1 drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd40d1a81 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd49f410e drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4e255a0 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4f82a25 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd64afb6f drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda855e63 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda9c5f88 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdae187d9 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb212186 drm_encoder_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc477a87 drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe179553b drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe18c079e drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe21e757b drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe514eb56 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5aaef01 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5bb11bb drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe655c929 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe752e50a drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8cae44c drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe91d77be drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea7bfb47 drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeaad29a2 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeac9fc97 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed937148 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeec805f4 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef0e2bf6 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0179e1c drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf569249e drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf585b300 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5a8375a drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf70f5932 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8645719 drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf89aeb2b drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf94b1539 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9ed744f drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9f16d45 drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfac72b04 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb845719 drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc274d0d drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd4ad1c0 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdc59134 drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdcf10dd drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe6762ea drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe6dfbbc drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff98b3c2 drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04cbef66 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06dcf726 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09f33f69 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0bb4f74b drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e222386 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f075f5c drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12823958 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12f6737d drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1308a3b8 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13c0c770 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13fe6b10 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x145cfd0c drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x150c249b drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x169d7fe1 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x176404dd drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x178823e1 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ab65610 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c0b2173 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1dfaba21 drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2008d8ee drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20f63499 drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21604521 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21a5ddf8 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24e89e94 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29f587ef __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e17a704 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3321540f drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x366ed18d drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3963ed57 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39b38961 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c69a0e8 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3dadbf8b drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e96d709 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f6ef70a drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40539fbe drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41838302 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41e98349 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44ea137d drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x450c170a drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x470ae482 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4765b5a6 drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49ecba25 drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b64453a drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d6b4ad8 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4de8ddad __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e5d83a9 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x518e50df drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x561f8f34 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56ddaede drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x590d3e27 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a0e0065 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c42030d drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d9ac3f6 drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61e1b4bd drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63168954 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x633757a3 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6379858d drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6393744d drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6422e6f8 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64661eab drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67adbe49 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6976494b drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6bc5daf7 drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c19a748 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e77bfd6 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ec6a37a drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78f24bd2 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e8ea845 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ed10bc2 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x818ecab5 drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81c8e755 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8262d362 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84bf73ed drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89e43543 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ba3124f drm_helper_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8da603ba drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e169ef1 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e1e01f3 drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x916b2773 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9290c829 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9363de3f drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x999c8b90 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9df0917b drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f4c6a6b drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f5c2e69 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1b9cbfb drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa35f6a68 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa43cf23d drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4ea784f drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa67e6e41 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7ab605d drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7dcaac3 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa90bd3e7 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9298b47 drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9e1ea12 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaaa5c493 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0b7fc1 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab6a09f3 drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaca6dd95 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae09cf6d drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae227655 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb31e5b13 drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4d2c593 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb72711fb drm_helper_probe_single_connector_modes_nomerge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb754c54a drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb88c56ea drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb414fe8 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe580179 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1b8f3ca drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc315ce49 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc48c27e8 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c8f58b drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc649d338 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8ebe29f drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc236372 drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc28ce32 drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xccd7e210 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0c459cf drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd386dbdf __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd49e42cd drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6362d67 drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd733200a drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda046fde drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda996666 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb4d0a6e drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd5aa78a drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd72f025 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfc2f7c8 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe008b08d drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe29594e4 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe548796c drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9ef072d drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb45b95c drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb4c15f3 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec48e82b drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeef650fb drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf42ed710 drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf52e9c49 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf56e5310 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8bc5e09 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd2be624 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe817f8c drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x024ae3b7 ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x07187d74 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x07ed8317 ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x081b0409 ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0ab411c8 ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0f9c41e4 ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132b05be ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x136ec7fa ttm_suspend_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1b336a9e ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1d87c039 ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x21cdf2ac ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x23daeb64 ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x23dd1c52 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x25b4bc50 ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2c7fac9b ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x35e22cf0 ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x381b9e2a ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x39e7de7d ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x44520d82 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x44f5031e ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4628b006 ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4ffdb3eb ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x534114bf ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x55d20c0d ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cf59609 ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67b1d568 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c0ec969 ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6d0a7db1 ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x792404b5 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7e42c319 ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8064631e ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x82ea7c4f ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84efaa06 ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x850da819 ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8589758d ttm_suspend_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86bb8a6c ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8b2a80ae ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8b82c35b ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x92434b89 ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x92c98a16 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d0eb91 ttm_ref_object_add +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9e515b33 ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9f77c8da ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa5e8be19 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa610a7ca ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaf6f5af5 ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb51417d6 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xba4bfa2a ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbc250d26 ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc403ce66 ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc4389b90 ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc4f69ff4 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc6883d7f ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc968d68f ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc97a5560 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc9fafd1d ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd166368b ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd38fd1fb ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd6638ec9 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe7a4013e ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe9ec2d3e ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xed43df93 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xefc4df0d ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf658468a ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfd7484d3 ttm_write_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfe8cc064 ttm_vt_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xff72c92c ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x05c4129f host1x_syncpt_read_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x09da8ff0 host1x_job_add_gather +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1f7e884f host1x_channel_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x21f564aa tegra_mipi_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x369d7b41 host1x_device_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x43799a4e tegra_mipi_calibrate +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5bc17440 host1x_job_submit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5e4eec7f host1x_syncpt_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6144c39f host1x_client_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6ff9dc76 host1x_job_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7b8242e6 host1x_device_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x89722559 host1x_syncpt_get_base +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8c04ae8f host1x_job_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8e5d2683 host1x_syncpt_read_min +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9451a33e tegra_mipi_free +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x97c3cd70 host1x_job_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa158b6e7 host1x_syncpt_base_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa30b9558 host1x_channel_free +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa615905b host1x_syncpt_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa9448779 host1x_driver_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xab84f521 host1x_syncpt_incr_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xafb6b1cd host1x_syncpt_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbb7076a9 host1x_syncpt_free +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbdf82579 host1x_job_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc2befdd8 host1x_syncpt_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc6e8bf34 host1x_syncpt_incr +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc788d980 host1x_driver_register_full +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xce9d5a76 host1x_client_register +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd01ed311 host1x_channel_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd9b3dd95 host1x_channel_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe1717509 host1x_job_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf87367fd host1x_syncpt_read +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0e2a6864 sch56xx_read_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0f5877d4 sch56xx_read_virtual_reg16 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x78fee2cc sch56xx_watchdog_register +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe5022f95 sch56xx_read_virtual_reg12 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xed1d2a08 sch56xx_write_virtual_reg +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x24bac235 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x2a0d78d3 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x70afa14a i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x203e5aaa i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xafec2d46 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xec81e009 amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0b96a47c mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0bc469f3 mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1a5b179c mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x33801bc9 mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x3508b720 mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x359944a1 mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x55626aa9 mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x720d2989 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x723f2ec3 mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xaa0bc933 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc3735c9d mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd1421dfa mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xefede4e1 mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf7ae91f7 mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf8399002 mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfa9f86ad mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x037824e5 st_accel_common_remove +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x0ea26d36 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x1842da0d iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x80922b9a iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x01e274cc iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x95acb968 devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xdeadb178 devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xf29e711a iio_kfifo_free +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x667d3a00 hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x91ccb437 hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xce7bc909 hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xd4505c9e hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xde25280d hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xe01e704d hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x6140e765 hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x66206304 hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x7962b160 hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xd97f9b17 hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x07099efa ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x100a3af0 ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2b141003 ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x369f9d68 ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3945c7e9 ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x5bb398f0 ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x5ed41563 ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8e7a9526 ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x903c4b17 ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x151694e4 ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x27b0dad1 ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xbe8f3cae ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xefa5580f ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xfb798839 ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xb0d1afb3 ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xcc2bf909 ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xf975317b ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x18bcecb3 st_sensors_get_buffer_element +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1ee3d2b4 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4985eeda st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4e549e4c st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x6e4dc103 st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x75fbeac2 st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7be2e707 st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8c775d8f st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x903e66b9 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x95e0b342 st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x988eb7b2 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa9ad91b1 st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbe0f6a94 st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd45b2145 st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe1b5518c st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf8b66f93 st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xfe0a299e st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xa3d7b8b1 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xd100fdfe st_sensors_of_i2c_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x46822e0d st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xc1a9099e st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xffc4168e st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x61c2b0a9 hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x79bcb494 adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xf6e327a4 adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/industrialio 0x03a331db iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0x040ec79b iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x404a7783 iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x417353cf iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x4f98af00 iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0x5242ddf3 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x5a27ba72 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x80c9edf4 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x8e9a1070 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x92dbfdf8 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0xa6d8d765 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0xa8c9ff2e iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xbe315bca iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0xbf9ec717 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xd699c09a iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe3486a1b iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0xf99686d8 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x6d53afb0 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xcdc11e4d iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x642f84ef st_magn_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xd863d1a9 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x1ba92718 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x1a8c0729 st_press_common_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x96b7d0a0 st_press_common_probe +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x049ace30 rdma_addr_find_smac_by_sgid +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x39943785 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x5347cc38 rdma_addr_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x6d61f062 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x7df81f32 rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x8e7ebec0 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xdb079dcb rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x07bd0b0c ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x12b7cecc ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1c9f7b88 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2236345b ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x25ffe96a ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x34cf4300 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4414df46 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x44366cf0 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x51c24dbe ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8fde99a0 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9a0dccae ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa64dbe7f ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb2ee5705 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbd0e8cb9 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdc2a1b88 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf1cf5045 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfc3546f5 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfd39ef11 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03c8fa6e ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x045701b2 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x076edd29 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07f68eaf ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d5146c9 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0dd4a24d ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x104b0bcc ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1143fa07 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12a1823a ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ce9f490 ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e79b131 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ffd4ca5 ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27e68366 ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28174a4b ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28dfa1ee ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29fbe7c7 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a8bb0ed ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c8ea8af ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f1d7744 ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fe4aea4 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3054926c ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31a7c281 ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3334935e ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3581cf3f ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3693c1a3 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3be9d986 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f0fd1bd ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46bae125 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x475c4901 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f40a7a3 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f9c958b ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5336555c ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55beccbd ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57969949 ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57fc39da ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c7afe43 ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f571911 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60ef2f9e ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a2efad8 ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a30845f ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e54fe7c ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73747d33 ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7801b6b3 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7857f2d2 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78e025cf ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b01d4fb ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x828b6fbc ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86a6dddf ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88d6ffcc ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8941a74b ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e3c587 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x924e939c ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97ca3231 ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98430510 ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a4e7518 ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b58a7d6 ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa127eff0 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa165109c ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3055be7 ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaeec157e ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb038ce56 ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb74c9b3c ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb79fe4a0 ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9343a91 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc4f72e8 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf965ec0 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7afa43e ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8fa3fcf ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd40d542 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf20bfb7 ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcff541f1 ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd056227d ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd24d6c1c ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4c34115 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5232e8b ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd96cea57 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe104fca4 ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe19846f0 ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4c8c58c ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe76c6e3f ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef979f26 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf145a477 ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfecb4643 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2be5ca57 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2e319d62 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2e464bb9 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x4eb12ff3 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x4ff84933 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x5329076e ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x88a14227 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x9004ca8f ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xa797755c ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc6bfe073 ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xd85cd1e2 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xf7095f84 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xfe8fc02a ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x52c2a014 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x72d1e281 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x73c30593 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9e7aad54 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xaba6119f ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xb9c38b34 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xba08f56a ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xbc3b83e4 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xc55dc59f ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xde9e1b2c ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xfaf6ef74 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x704eb386 ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe4c3a55e ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x047e6c96 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x08e1e8a1 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x109792ae iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x214afbb4 iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x51ca3885 iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x52c9e429 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5ac18ebc iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x78a6474d iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x986d9059 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9ff0d13a iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb351ab57 iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb9576aa6 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc03db78a iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xde4e2e10 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf9b4973d iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x19dabb80 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2545ced8 rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x44a989ef rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x44e4eb9a rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4ffcb4ff rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5a772680 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5e8ce063 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5f669af7 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x678fd2b5 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6ad77be2 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x71da1989 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x72950fc4 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x757b32f0 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa8b55e1c rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbb787e94 rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcada1c6e rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd7ae5c96 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdf5f2c22 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe587d58e rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf7d8f80f rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf8514261 rdma_get_service_id +EXPORT_SYMBOL drivers/input/gameport/gameport 0x197024d6 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x1a3f7cca gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x427ea5c2 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x45617c31 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x499ae997 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x50039de3 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x55186a40 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7f424ad2 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0xc7998fb0 __gameport_register_port +EXPORT_SYMBOL drivers/input/input-polldev 0x11a17587 input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x6ecfc24c devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x6f2c4d4f input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x7ce98e98 input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x8531fe21 input_allocate_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0xf5a96ac7 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x44ce1b0c ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x80a6210f ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0xf26a8ffa ad714x_disable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x15358af5 cma3000_init +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/sparse-keymap 0x60293371 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xa6264e54 sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0xde5547c7 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0xfbb69827 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xfd3c095e sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0xfde208b2 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x533ec80f ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x66a4834d ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2f135ece capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x309be598 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x44e324d4 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4cad034b capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7be43632 capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7c75a886 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x96fcd87f capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa7c4fd6c capi_message2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc10fe128 cdebbuf_free +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc3ea61c9 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xdcbe44e6 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8ad9bd1 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf02c9a9b capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x078498af b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2014d987 b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x27d040bf b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x4c5ef6be b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x507b009f b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x65fddc6e b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x7300afb7 avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x8d0bc962 b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x99632ed9 b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xa909acbc b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xbdb5cdf8 avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd9dd75b3 b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdd3340ca b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xed990606 b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf5a0997f b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x0a92c2a2 b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x1a9d4786 t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x273b82aa b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x400fa7f5 b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x68e7b3dd b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x9e7dabfe b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xc3292c3f b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xca5a7e2c b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xfe4a83fb b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x27f6080d mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x85c6536d mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xa691f595 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xc4d035cb mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x0348aee6 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x80bcc207 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6d5b2497 hisax_init_pcmcia +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6fe1ca04 FsmDelTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9f987c85 FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xa1bc94b9 FsmInitTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x1902813d isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x53678c4e isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x8c6e878d isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xcbfc3945 isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xf46ae679 isac_irq +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x78b5baa1 isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xa5082632 register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xe8a36acf isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x088900e3 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x09815650 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x14a472d9 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x21c011d8 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x22df7260 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x37b1f8a7 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x38b73dcc mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4f2bd96e queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x513879be bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6575d503 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x729ada76 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x75cf3f17 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x782920c0 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9117cc5b mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa36bc1bc mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb755543c mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb93204b0 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc2206f6e recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcded436e dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd403bb26 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5deb0d5 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe1e81011 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe499a69b recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x3c50baa9 omap_mbox_disable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x441e2964 omap_mbox_enable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x7c7e2c3b omap_mbox_restore_ctx +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xafaec100 omap_mbox_request_channel +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xe0d58ed2 omap_mbox_save_ctx +EXPORT_SYMBOL drivers/md/bcache/bcache 0x097f2af8 closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0x10dc0d06 bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0x21c7828c bch_btree_sort_partial +EXPORT_SYMBOL drivers/md/bcache/bcache 0x3361c614 bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x442c40f3 closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0x66d28e22 bch_btree_iter_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x6969b5d8 bch_bset_init_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7b55ca4f bch_bset_fix_invalidated_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0x9e8b3cee bch_btree_keys_alloc +EXPORT_SYMBOL drivers/md/bcache/bcache 0xa00946d0 closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0xab2d2b84 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0xad29a6f5 bch_bset_build_written_tree +EXPORT_SYMBOL drivers/md/bcache/bcache 0xaec09a2b bch_bkey_try_merge +EXPORT_SYMBOL drivers/md/bcache/bcache 0xaf77343c bch_btree_keys_free +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc04554f7 bch_btree_iter_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0xca580595 bch_btree_keys_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0xd5d0b1ec closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe47e0829 __bch_bset_search +EXPORT_SYMBOL drivers/md/bcache/bcache 0xf8fd4bac bch_btree_sort_lazy +EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL drivers/md/dm-bufio 0xa7978f56 dm_bufio_forget +EXPORT_SYMBOL drivers/md/dm-log 0x5628cfa8 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0xa661f883 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xa80f66b9 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xad9617f9 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x99865772 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x99907599 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xa7559b2f dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xab27e62d dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xb5db9b1e dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xf0695d36 dm_exception_store_create +EXPORT_SYMBOL drivers/md/raid456 0x85b71bb1 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x14001acf flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x38aa7d3e flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5d03a6f5 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x664332ff flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8bf685f5 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x96705fe1 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa6902a2c flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xab0fe299 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb34d5e61 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc219bbfb flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xce1b8433 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xcf21ddb5 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdae7d9ee flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/cx2341x 0x03865958 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0x30cb4cd7 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x756fa1de cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x95848c08 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0xb241f706 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0xaada2c08 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x0c59dc8a tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0x2280ca05 tveeprom_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0c777d9f dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0f52e45a dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1dd85735 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2c26329b dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x31a87056 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x344908d4 dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3656cb10 dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x43c173c5 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5ba918c0 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5d8d7411 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5e7b38e7 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5e8a94c9 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x629f9d31 dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x645f4003 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6660376b dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x72180695 dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7f561fd8 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80c8dd54 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8633f37b dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8dedab4f dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x923be4d4 dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9850cb88 dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9c19040b dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb196ca0a dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xba05f27f dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbb1e97ce dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc0158331 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc79e0b51 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd5757859 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdb1a8bd4 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdc094c39 dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe3a188e1 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xead71b30 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xef861f33 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf1d3726e dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf48116c6 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf7a115cf dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfd459c8b dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x03776d54 af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x553ec009 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xf4650f86 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0296788e au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x258829ea au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7668456c au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x83c50749 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa1acfc8c au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xc2d94262 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xcec7e607 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe80e667d au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xefc0d4d2 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xa7e3bddd au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xd1235b24 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xe69081fe cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xc7a1be6a cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xd94566cc cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x2f06d2ff cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x46207883 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x798ffed5 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x4cbc1bdf cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x9d09af8e cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xa8731ad2 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x6795d903 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x5452f9e3 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x9084c3b8 cxd2841er_attach_t +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xfb617f70 cxd2841er_attach_c +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x11f271ff dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x172af3cb dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xa14ccffc dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xab9316f2 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xd0c444f4 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x093c1c75 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x16091c2d dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1f341936 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x376b2ed7 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3827ac1f dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3eddca7a dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5b2d5529 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x63530b2e dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x67c00ef2 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6a2eb97e dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7c132154 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9db860f3 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc87898a3 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe3b900f3 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf0734eb6 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x92a8ebe6 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x214f8327 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x7490a802 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xaca83000 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xcfdbd710 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xe5b8e8cb dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xf6ef9cf2 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x16abce8d dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x6f297d8e dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xa9f2a178 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xbe7c97ab dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xc5a732e1 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xe5af7444 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x2a905fd0 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x345099a6 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x36789543 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x54094c8a dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xbe8698ae dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x7ef48650 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x538f3ebc drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xa4918463 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x737d6265 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x34d090f2 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x7cccc340 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xa28b0453 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x4ce2add7 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x8415f25c isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x065b4120 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x7e6c6d45 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x9402c9fe ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xfe2dae4d l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x0a1e0abf lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x2438b1a4 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x1c2c5615 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x8ab43f2e lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x9591713d lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xa8e7998a lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x30ea58d2 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x4236cec2 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x3cc81ffd lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x5022bdbe m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xeffa4f7d m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x1571c679 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x4e73eed0 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xf9db9a68 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0xda9741ce mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x33e1840f mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xd10b1ee5 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x7de2105b nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x7f10ee9a or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xf1ab8f80 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xcf633bed s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x42599d33 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x864a5f22 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xd541de66 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x2a75821b s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0xd1872316 si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x2bb102eb si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0xe2e1c542 sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xc3ca4423 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x7901b3b5 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xcbedf74f stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x3b205aa7 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x551cd346 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x6dcd11d8 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x58a9ea61 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x453e4081 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x93dc4566 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xd94dc628 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xa5bbda21 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x7ca24e97 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xaca3d9b6 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xb775d256 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xdb547f19 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x5d033caf tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x09f207c1 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x1b0c948b tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x57987e5c tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x481bd9be tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x3f9381a9 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xd3b6cd6d tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x3a7846b2 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x3cdf3d11 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x838beb9a tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xe0476e4a ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x5e612819 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xc37c6493 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x9bfc6826 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x423d2271 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x4b219479 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x62fc9e7f flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x6f7df600 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x7aec0f04 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xa43a2700 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf6f711b4 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xfe6a447f flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x06b34e5e bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x128fbf05 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x27d6d075 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x5f2a75fb bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x9fc9ed3c bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xf1c0a06f bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xf82427e3 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x192e0a58 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x41b10c89 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x444ff2d8 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x44b700fb dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x75c93ae9 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x77aefee0 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x869cb3c6 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x87a2b53c rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf9e68885 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xdcf1e746 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x358aa18f cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x5f6e9c1a cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x60cd3501 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x79cf827b cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xca41b8e2 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe70da410 altera_ci_init +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x181fc91c cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x4dc7762d cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x65db6206 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x8fcd94b2 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x9f448826 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xbb2f5622 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xdb6f8fa2 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x45db04ca vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xe12bc4ca vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x46189693 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x5655b45d cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xe9c5be7c cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xec0c9adf cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x3b234a35 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x491cc953 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x70cec2da cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd6cf6fb2 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xdce1cdb6 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe04761d4 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xeb47247a cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x032120e8 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0603dacf cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2284bbfd cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x28a208bf cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3a5cce81 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3bf676b3 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x43eed874 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x44125bc7 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4eefe5d6 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4feac66e cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x590fc09b cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x690943a0 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6f2a73b2 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d5cd042 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9de6d007 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9f328c06 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb344c18c cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb4de5fde cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc7523e33 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdc34e453 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0ac3016e ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x23ba22d7 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4089efe0 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4e66eb5a ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4fdd3502 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x60c92993 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6338dc64 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x68c0c559 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7013e54b ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x768c14e8 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x76e6600e ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8b0c53c6 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa8350d33 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xba6484de ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd089a3b3 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xeac00e54 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfe412439 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x48870733 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4a046ecb saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x72cb6f81 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x74491379 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7b8c807d saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x870a0b53 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa1094887 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xafcfdbe8 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xbacee3ac saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc0097294 saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xed868fef saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xee45dae3 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x6852015d ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x424de473 soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x47b9a455 soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x88c72e91 soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x895a58b7 soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xbaae5800 soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xd0f9c356 soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xf6106110 soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0x971870c7 soc_camera_client_g_rect +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0xa9ad5efc soc_camera_calc_client_output +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0xbcc128c0 soc_camera_client_s_crop +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0xd548da82 soc_camera_client_scale +EXPORT_SYMBOL drivers/media/radio/tea575x 0x28b9d87f snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x6b2d5955 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x7a867b8b snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0x8095ab68 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x8d87ed28 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xc3dea060 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xde595dec snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x58f76c59 lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x9541920e lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x997de40d lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xa3065c6b lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xc9cb2d6c lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xdf9b8266 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xe4bdfd2b lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xf8c4838f lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/rc-core 0x181b11d4 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0x8ecf7afb ir_raw_handler_register +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x2c6949a1 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x71136d5e fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x4e1b98bb fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x840e3b55 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xb1c6490d fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/max2165 0x4707ab20 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xad801c8c mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x227e503e mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0xa1b656ca mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0xabfb8862 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x28baa614 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x1e46df4a qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x880ab7b5 tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x7fcd06f5 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0xa1bd4a86 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0xc440d56a xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x323d9a19 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x7b732463 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x04aa7bc0 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x14a0f6a8 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x48ad2691 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5d4d9421 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6049beec dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x62b1c1b3 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa8abee5f dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xcaa788c3 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xe9561bc3 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x001a75fa dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x4b52cf64 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x550e7831 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x8f8d33a7 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xce16b769 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd79300bc dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf67c7da6 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x8393bca6 af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x0ae53a2e dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x10f8972f dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x112f801a dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x25a774a7 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6bbe1052 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x84714ddc dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8b1ebb3a dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa8779b5d dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xabdf0bee dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf9feca3f dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfc6e5519 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x861e0e16 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xe0a45a99 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x0163967b go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1d36d5df go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x78611d6a go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa5004320 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb6cd9a8b go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xcd67a1b4 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xdcfdae59 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe0bb8335 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf4d1da0e go7007_alloc +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x06a3ea3b gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x10e459a1 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x1a25b347 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x1d29aa67 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x323b5be9 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x7183a474 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8e6dffb8 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb8848e0b gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x1edaa73b tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xa1607c5d tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xdeb994c2 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xd582318d ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xfe453047 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x31fbf694 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xb0efdce1 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xef13b27a v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x067085e1 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x1257e361 videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x3ac66a6c videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x75ffad8d videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xa677bc2f videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xe8629cc9 videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x96f2b975 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xe153090a vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x1660a731 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x9cca4e51 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x9df4466b vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xa135c6a8 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xd175ed1d vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xeb55a642 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0x135d8e63 vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0506b093 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0992b2b6 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0b53bf2f v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0bfd1f76 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x10d6202e v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x11b24fa4 v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x13aead98 v4l2_of_free_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x142c826f v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x174a5988 v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1828e7b6 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1f2ab1da v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x214cacf1 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x240fe006 v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x24ac34f0 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d9e41c v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36d7dbe4 v4l2_of_alloc_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x378ae0ae video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3a15cfd0 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3a523282 v4l2_of_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bf47be2 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3fde67f2 v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x418a409b v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x42273866 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x463d5aab v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x50d90b76 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x540797e0 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x57d1e4e7 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x59d8bf48 v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x651067fd v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x658e4a20 v4l2_of_parse_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x666c5708 v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x690d3b8f video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x69c7be79 v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6ba07d53 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6d2a1a9b v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x75b823ff v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x791b3642 v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7c64c61b video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7ddb0466 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x84826813 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x851aa6a5 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x87683259 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x88843c62 v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89943850 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8ab5d504 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8c5d3f9a v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8c80ed03 v4l2_of_put_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x91822ed9 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9cc35d7f v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa08914b7 v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaecf6417 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc056e705 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc1d264ea v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc4259f5c v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc96e2328 v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcaa70785 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcb5db031 v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcb8804b9 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcbdf2a97 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcdd5cb05 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd3aa84ad v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdadb8cc8 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdae7d4a7 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdb5f1301 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc86b200 v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe754fb30 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xec1da54c __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeeabdc50 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf7a11de1 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf7a4085d __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf9adbcb9 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfd349f69 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfe6b815a v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/memstick/core/memstick 0x28179388 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x2fb75fea memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x43b10ac4 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5b5c17c8 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x645afb31 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6ca69b32 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6fb88eb2 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x8c9b5da4 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x8f7e5fe3 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x94dc915a memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x9b92f785 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x9c8608b4 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa323ef21 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb12ff19c memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x098755f9 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0e315a37 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x12facd51 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1c228078 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1e59399f mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x24882b93 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x290f18f5 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2d92cd9d mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2efb7631 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3256dc3e mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4094f96c mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x51a6f040 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5372ae36 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x66450193 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6bfa80ac mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x716a4321 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x754cab90 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x762230a7 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x79d9cccb mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8755076b mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x94a24b3c mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaab42aed mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xae51c586 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc85cb875 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc9b375d2 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd942c9c9 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdc180bf6 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xde8ca46c mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xeda86a79 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x039a9d8b mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0822adaf mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x15decc1b mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1620ce1f mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3582ae9c mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3da0921d mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x56afb662 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5c32b596 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x601b93d0 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6a0092a9 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6f4cc504 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x79521573 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x84ed62de mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x88f5c11c mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x893bc828 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9df5c02b mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9f0d7ecc mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb3a3742c mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb7344589 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb8b7ac26 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcfee7e7f mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd5728026 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd627587f mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xda85f1b5 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xde062ef5 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe5e33ea2 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfb133181 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/mfd/cros_ec 0x2ac405dd cros_ec_register +EXPORT_SYMBOL drivers/mfd/cros_ec 0xa7805423 cros_ec_remove +EXPORT_SYMBOL drivers/mfd/cros_ec 0xa82273fd cros_ec_resume +EXPORT_SYMBOL drivers/mfd/cros_ec 0xe6f49cd9 cros_ec_suspend +EXPORT_SYMBOL drivers/mfd/dln2 0x148da556 dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0xaab526cd dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xc95c30f4 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x705464df pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xc21b8bab pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1922df45 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1e09e9b9 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x499d858f mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6d344121 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7afb0986 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xae357bea mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb261b124 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xbcabc5cb mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xbccdbd3a mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe3f68599 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf11c8317 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/qcom_rpm 0xd042c9be qcom_rpm_write +EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 +EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 +EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib +EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led +EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw +EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x6ac9f451 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x96a6b023 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x0659ec9e wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x34635707 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xa17571c8 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xab01552a wm1811_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x6204713c ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x757bdbcf ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x8a05ed90 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x2f2833e6 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0x6f671c6d c2port_device_register +EXPORT_SYMBOL drivers/misc/ioc4 0xcf1bdfce ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0xf81018d3 ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/tifm_core 0x0f00cb7e tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x2091287a tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x232a14b7 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x3c5f7576 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x627798f1 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x6bbfdc3c tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x6e64bf39 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x6f03d881 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x807f4182 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xacf2e7f6 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xd71ac5c2 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xd74b2700 tifm_alloc_adapter +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x45e50f5b dw_mci_resume +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x52ab9010 dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xe113c0fd dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xe8c7a308 dw_mci_suspend +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x378f2335 tmio_mmc_irq +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x6d3deee9 tmio_mmc_sdcard_irq +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x753b53af tmio_mmc_host_probe +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x7a6fd700 tmio_mmc_sdio_irq +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x83dae06f tmio_mmc_host_free +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x90805728 tmio_mmc_host_runtime_resume +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x93099aaf tmio_mmc_host_alloc +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xd3f398b2 tmio_mmc_host_remove +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xe8f50627 tmio_mmc_host_runtime_suspend +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xf02062dd tmio_mmc_card_detect_irq +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x186c95db cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x42b318bc cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x575e56c0 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x70167940 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7fbb35ec cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xbf7a6cd8 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc5e42847 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xada7ee88 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x865b1cc3 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/nand/denali 0xb1b04c3e denali_init +EXPORT_SYMBOL drivers/mtd/nand/denali 0xe4a80928 denali_remove +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x0042376c onenand_default_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x42547943 onenand_addr +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x484c042e onenand_scan_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x990d9a36 flexonenand_region +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1d3f4aba arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x29d53845 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4d1a819d arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4ec771c7 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7351fe97 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa8edaf7f alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb9a924d1 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xceec02f3 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xdb6d51ae arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xed86a7e8 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x3aee36a8 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x8e1f3785 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x94dd28d3 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0e30c448 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1a576ec6 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1a6e6cd6 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1f24e3de ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x59690bc6 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x76a2c75e ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8ad08bb0 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xaa4a0349 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb166bd7d ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe3e92165 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0xde1b12f4 bnx2x_schedule_sp_rtnl +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xbbd5476f cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0eda6198 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x230ad79d t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2cdd4fbd cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2dd7d59b cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x495328c8 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6ea064df cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x90006dbb cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x90e41fdc t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa9171642 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xae12dcea cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb098d2af cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbb085360 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc641c6a3 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd8defa1c cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdc65afd3 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf6d9c501 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x01d4238b cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x06223b9e cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0649ff1e cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x09e571aa cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0ec3aa1a cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x19fd6c08 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x21d7b74a cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2b9e03c0 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x32841b43 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x32fee243 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3cacf585 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3e522c99 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x407e2c8e cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x409ecbac cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x448f3b34 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4b478893 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4bb1ecd8 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4de31aaf cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x57e8cab4 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x59f57cf7 cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x75639a2b cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7dc572f3 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8fb7b062 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x95fdf682 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa08f12bf cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa273ab5a cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8b6ac9a cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb31cda9e cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb66200cc cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc44db77d cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc531fffc cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00a4f2f cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe74f3899 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf1a2e08f cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x255cc1ba vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x3f1a9cf7 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x4f1a9a61 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x74c2be41 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x81508123 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xc1a80bd5 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x268f202b be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x7fc720c8 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/freescale/gianfar_driver 0x79f28897 gfar_phc_index +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x081b37e8 hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x091db4f9 hnae_ae_unregister +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x0a642da2 hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x2ce1d3f2 hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdec4873d hnae_put_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b11cf7b mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0bc03466 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e4836bd mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1756ddb4 mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17a1ed77 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18a165ac mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20e6e3ca set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d00ef73 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36be7142 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x379af837 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f0fc542 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ca5873b mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a3f10bd mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d7cfa78 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5fdd6e52 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6012cee5 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68e20a57 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x731ece62 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f6fd916 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x816af207 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x857f3685 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x875f280c mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8aa73380 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b3be309 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c5807e7 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91d864a5 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e21b539 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa65a449d mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab5a2417 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb548426 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6c706dc mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7c26948 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0508910 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdff30781 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe751c396 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe85237be mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc547df4 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfed4a5b2 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01e4ac90 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x062e0eca mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0857aabd mlx5_get_flow_table_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a101d0d mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b241ff5 mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb7287e mlx5_del_flow_table_entry +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x190791c5 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19b3f8e4 mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b06bdb8 mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a734d63 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34f457db mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x389b564d mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45e85197 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4cee40e6 mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5562b945 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e0c9f37 mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68121063 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69659cab mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6dbaea61 mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f41607e mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7007eec1 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72f59953 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e5499c5 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x874ef215 mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x885dc453 mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9314cff6 mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa560ddab mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8442fa8 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad683ae3 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2e1cdbb mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb45b04ca mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf0d022a mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf6437c2 mlx5_query_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd73264f mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6b0be56 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd302e30 mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6af33e4 mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8583eaa mlx5_modify_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9249293 mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7a32c03 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc728a49 mlx5_add_flow_table_entry +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffb3480b mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x075a30db mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2038b9d8 mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x51d5f256 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x55e30b93 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcb5c8545 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee8e0771 mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf1558af8 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf741371d mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf742cbb9 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa209d1af qed_get_protocol_version +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xe3e8b3a9 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x0a31a781 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x2e4a402e hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x7ef67f78 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xafd57826 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xb8ffcc4d hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x27fa866e sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x3a1aa161 sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x3c8034d0 sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x7057e69a irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x86ddc364 sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x934108b2 sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xa02f854c irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xa9356528 sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xc9c9a2fe sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xe8a94c0f sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mii 0x2848a050 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0x4fad86d4 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x6556febd mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0x7d0c50ea mii_check_media +EXPORT_SYMBOL drivers/net/mii 0xc6dabcc6 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0xeda294d0 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0xf96ea56a mii_check_link +EXPORT_SYMBOL drivers/net/mii 0xfa4a9094 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x4a265bca alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xad3a3f5b free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x056c81c4 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x3ba7b68b xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x8b8788a0 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/phy/vitesse 0x87f92709 vsc824x_add_skew +EXPORT_SYMBOL drivers/net/ppp/pppox 0x50f31801 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0x8e7a4a50 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x9cd4823c pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0xc7f532e9 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x1088b88c team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x1d48c0b8 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x1de83e03 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x438b68b4 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x4f2e7735 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x8338922f team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x88582c59 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0xd2ed42f4 team_mode_register +EXPORT_SYMBOL drivers/net/usb/usbnet 0xbc487c3f usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0xbe18d6fd usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xf617daa8 usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0xf7453bfe cdc_parse_cdc_header +EXPORT_SYMBOL drivers/net/wan/hdlc 0x06f6fb4e detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x09cf457c hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x54bf5a78 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7cd21b8f alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x8e801aef hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0xad64b9dc unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xbe456ee1 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xc9e2f727 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd7152319 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd791ef41 hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0xfad7ff3c register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0xd883d531 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0129729b ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x21ca6739 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2758a0c7 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4d881e1c ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4e206a48 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5150bc01 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x59111643 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x65706843 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8744270a ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc339f777 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfa928b3b ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfcaab3cd dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x05e9b376 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2cf757de ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3f243bf9 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x49e4cac2 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x49f33e33 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4e579f3f ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7493aa23 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa7ed5dbb ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc10d80b7 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd0e43672 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdc5958d6 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdd5c95a4 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf056e2db ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfabe987b ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfbce95ac ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x20c20cfd ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x62b4d6a3 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x739ae933 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x9b540432 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb52d87e9 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb70c47bf ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc6723c5d ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd0554cbf ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xdeb178ee ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe12ac269 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe475e614 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0ad5ccdf ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1268fc81 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x144e39ad ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x29f29fb3 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3cfbc755 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x617d2819 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x63e2ef1e ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x64322beb ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x690f4542 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7619cdfd ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x80e7bf7c ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x85620edc ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8dbc05bc ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9cc48dcc ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa4339295 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa52e5967 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb1f79564 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb2714ee9 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb55577e5 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc80848b6 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd167c3fc ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe91f804f ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe9401f60 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0224295d ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0599f1da ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x095ae6a4 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0bb3ef43 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c69924d ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0cbd18fd ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d17a5ec ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d99cbba ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0fb3cfbd ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x146b552c ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16a863f6 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x24ee288c ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b68eb2c ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c9e5bb3 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x30d60e9c ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x325a6d65 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x33d905c4 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x348162b6 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3632433b ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37ce4b36 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3858aa3a ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x38811a35 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x397412b5 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x39a70c5a ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e5a06f4 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4009a24f ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x430a08b2 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x432e094b ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x438a2683 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x44b8acf5 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x491c0bb1 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4aa48c78 ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b06edb4 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ea9504f ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51d6f42c ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53da5fd1 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x56db0f32 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x57008d4d ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5ae4d75f ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5de97c94 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5e8e2d3a ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5f474589 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5f6ecb63 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5fd9eaf7 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x63016a88 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x640f6f26 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x649a6755 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x689b2ee4 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6a08a70a ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6bc03a8c ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6cea49de ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e632967 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f23c805 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x749c46a1 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x76c4176f ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ddb4e49 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fc85fb0 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x826321e6 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x83981ab5 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x84a6e403 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85d69384 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8694eca4 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x88e31069 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8945031b ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8997c39a ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8fbcb288 ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x907f4be9 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9412bb53 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x95527151 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x95c770fd ath9k_hw_request_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a750b1e ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9c4b6d15 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9e733b11 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa05b97bb ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa0dd8665 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa5324b86 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa5bbf27b ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa72f7ee2 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa767531 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf5db13a ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb14c5bdb ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb200f30c ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb5cffd52 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbabac192 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbadf2160 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe985ee8 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc46071df ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc7887829 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcfd2a847 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd359a07b ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd5801f80 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd7458259 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe11c282a ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe3aeeebe ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe67c75ae ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe9ed289c ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb8ef855 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef6ae004 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0323fdb ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf19e3c5c ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf1df7fb7 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3e0df35 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf8fbc8e6 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb34d61d ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe628b98 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/atmel 0x25e1a2aa atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel 0x9322848d init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0xa247d9be stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x009f88b1 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x1c3ebae8 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x1e848bef brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x41eb2ebe brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x63548f8e brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x6a4877cf brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x777b3b55 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x92b341e3 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xa7de38d5 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xbbb93fdd brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xc7153351 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd76fdc1b brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xe4ddf0fc brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x01873018 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x08580e37 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x11ed711f hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x16a946d1 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1a3bfb01 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x35ba6c5a prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3937a87f hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3b7f884b hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4593a77a hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x523ab11c hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x53348ec0 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x554e6750 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6b5c668b hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x76902394 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x81434184 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x85971e65 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8bb1d3d8 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9004629b hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x99c4ac35 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xaef21f6a hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb3a36294 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbeb119c9 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc7cdfbcc hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe0c89585 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xefbd9888 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0e8dc252 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x16c33e4b libipw_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x16d13542 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2723b380 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2726e2ac free_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4b35b6bc libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x72df9c60 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x72fe3f07 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x858c8181 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x9ef6a580 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa7231706 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb3b946a9 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb5012c68 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc30951ec libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc793f30e libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xcd516b68 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xdb4a45e7 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe7c7ec80 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf2fe4097 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xfaa4ae4d libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xfba3e00b libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x005db417 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x00ac0be4 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x01c009ac _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x03e4fb75 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x055e228d il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0bf66024 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0db6744d il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0df66f7c il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0f505fad il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x140e6573 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x17f5eac8 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x19d02c85 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1a7f22f7 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1da5ee47 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x22e8cec3 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x239b7811 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x24ab0d6b il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x295cc70b il_force_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2d4e3a10 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2e34e5af il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2e91497a il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3157f850 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x35252e72 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3792ded1 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x37bec136 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3dd56380 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4110516c il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x41282ae2 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x48a87e66 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aadfbc2 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4b6fa313 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4c3ac897 il_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4da9bbc0 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x537c848e il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x58276a53 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x583e44b5 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5d6702b7 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x620b7678 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6d60d260 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6f53dc4e il_update_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x713e1235 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x72df1c29 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7649e3e1 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7a17b39d il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7af8b521 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7c4a2eab il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x80650100 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8136fb66 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x82f9ec2d il_free_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8563e214 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x86bf7ef9 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x876bb254 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8df54667 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8e397060 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8ef04219 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8effefc5 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x940888dd il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9830471f il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9ec8c527 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9f13a4b2 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9f80e48e il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa375fbdc il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa443e030 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa55f1cca il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa64d6ff3 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa74ea66a il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa91f3245 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xab3ffb08 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xabb932d4 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb154c943 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb20872eb il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb2dc1fb7 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb6127fba il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb6429d36 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbe01cb40 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc1540a26 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc2593247 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc4bead48 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc7e89a69 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xca3e31ab il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcbccd9c8 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd0d4686f il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd202b721 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd7a3701c il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd827e829 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd975e6fd il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd98ebb61 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdb4b5f4c il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdd2ec5ce il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdfd77856 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe4cda72f il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe7404263 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xed0ddb2c il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf290538d il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf4515a68 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf4c4c138 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf72e9d98 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf83ee14d il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf9687081 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x180d7a46 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x208d96c4 __tracepoint_iwlwifi_dev_iowrite32 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x26bb7eb8 __tracepoint_iwlwifi_dev_ucode_error +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x436814a2 __tracepoint_iwlwifi_dev_ioread32 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x496d7aef __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x8f81067c __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xfd34aff0 __tracepoint_iwlwifi_dev_iowrite8 +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x05182837 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x08072747 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x19391fa0 orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x279a7c05 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x4d837754 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5bfb0c47 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5c59a092 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5d8151f7 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x8202c9a4 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x8bb7feab orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x8ce51af7 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xa5c73e36 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc1d3c041 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xcac33ef8 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xce2cb7f2 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xef9e637d orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xf5e9f8a5 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x031bfd9c rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x042a75b4 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0a36c28c rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0b93e820 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x10f7aa5d _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x275aaa36 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x33eb74de _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x377cc8e3 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x39733cf7 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3bb3c3e9 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3c3f32f2 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3cf6eb56 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3d11dd94 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4bbee457 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4ca42fcd rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4f62e7a9 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5df66c60 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x71bd484a rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x76855a00 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x77d4ecaa rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7c29e8b3 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x838880c7 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8842da97 _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8851589f _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8eb8e914 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x941a705c rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9b920e24 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa32d89fd rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaac4cc55 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xab73706d rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xabd85b14 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbad3d3a6 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc4256f72 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc7eb8255 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcf1c7bf0 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdecead33 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdfc60f29 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe137e24e rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xea9129a4 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf7bb137d rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf9672706 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfc049182 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x13ccc653 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x83f85bfc rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xcaa30216 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xcfea4645 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x095189e0 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x33118c98 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x6bf928a8 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xbf0f2f82 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x10122aad rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1f719554 rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x24f15cbc rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2aa3d369 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3352b182 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x36be4e39 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3b93e62a rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3d4c6f71 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3faac9e2 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x44dae7f7 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4c19be73 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6a3e6095 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7b202e73 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x86b5dd75 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8c2df732 rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x90a2594f rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9735885d rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa3239742 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb0304fc3 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbb87fcf8 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbf905272 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcccc9b20 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcce44f90 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd002a4dc rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd71faeba rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd734f96b efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xec5c6e37 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf176bb23 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x1f4203c3 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x20479eea wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x8a5a8fff wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xcbd1737f wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x142103d0 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x96a537ef fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x9d1bbcdf fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/microread/microread 0x1ce8844f microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x98dc1367 microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x046b3234 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x6f8b446c nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xfe53b3c0 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x4d64cdca pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x8c6c1c62 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x0cbdd888 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x1e7a6e01 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x3c9d6959 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x08e2536b st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x0daccf8f ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2753aa51 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4de0dbf8 st_nci_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5ea58997 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x767af843 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa3fa2502 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xaa6f7c84 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc06e5fe2 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc38ef1a8 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf2d272de ndlc_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x09fe66cb st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x18fb87c5 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2b03336c st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4338f4d0 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x47762f3f st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4b8a8fe9 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x768010c4 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x86d33413 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x977c363d st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa9e3fc50 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb95db3ac st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcbd7a141 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcc559e0b st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcc6b0b52 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd20ee2ed st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd957e2bf st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xef2c959e st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfb48db14 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/ntb/ntb 0x18f952fe ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x56483876 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x5cb206a4 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x62733a02 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x7ff110be ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x8da2bba4 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0xcf3a7cf7 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xd1b30171 ntb_set_ctx +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0xdb6e5b0a devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x038ee0a9 parport_release +EXPORT_SYMBOL drivers/parport/parport 0x0a28d509 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x19fad623 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x1c098d8a parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x25fecd78 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x2d485e4f parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x38cd3188 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x3947939c parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x4ba9d6e8 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x6720fc29 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x6b580372 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x79f2fa53 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x7cba3fd7 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x880a8687 parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0x9b7f70ba parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x9e1bbab4 parport_write +EXPORT_SYMBOL drivers/parport/parport 0xb1182720 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0xb19d8ce5 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xb72284be parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0xbbe633b4 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xc243ab4c parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xd27057a4 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0xd5a197e9 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xe68b84f2 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0xeec76bd1 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0xeefc8039 parport_read +EXPORT_SYMBOL drivers/parport/parport 0xf243add4 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xf2569442 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0xf3d70af4 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xf47195c8 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xf77ae3e3 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xf876af5d parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport_pc 0x4cab5001 parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x52b52061 parport_pc_probe_port +EXPORT_SYMBOL drivers/pci/host/pcie-iproc 0x8a1601f5 iproc_pcie_setup +EXPORT_SYMBOL drivers/pci/host/pcie-iproc 0xd3fa94e5 iproc_pcie_remove +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x196dc724 rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x212a169a rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x336c2edc rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x99251618 rproc_boot +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xb199f18f rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xbe97709c rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xde68f4f7 rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xe3b9af09 rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xe5d92baf rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xf36f7721 rproc_get_by_phandle +EXPORT_SYMBOL drivers/rpmsg/virtio_rpmsg_bus 0x68009703 rpmsg_send_offchannel_raw +EXPORT_SYMBOL drivers/rpmsg/virtio_rpmsg_bus 0x88ae4762 rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/virtio_rpmsg_bus 0x8df90ea0 rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/virtio_rpmsg_bus 0xb7e01e1e register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/virtio_rpmsg_bus 0xc4cc4c03 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x3e06da02 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4ac73793 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x60d59edc scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x9d371116 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xf010b230 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x23fdc4a4 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3a7a702f fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5a2580ce fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6832399d fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6cef238b fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x79028b84 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x79425123 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x89c24009 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8c7a97f2 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb42947f2 fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xbbd73ff0 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xce4a6cd8 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x06ca172d fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0be1aec5 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0e49cb7a fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x105d3659 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x109e2831 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1185aa2a fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1339c595 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1384c88d fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x13f9504f fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x14718517 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x177a8d78 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1c7b67de fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2b03e77c fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2b110724 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4e740621 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x503f0de6 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x59163335 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5b64a3bd fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5bc335d8 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x632c1da4 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x63794b88 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x74e2e838 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7a3801dc fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ac35c31 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7acdfbc0 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ce50738 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8a0d6b98 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x904b4db8 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x95639822 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa2e67aaa fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa64866d1 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaa4225ce fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xade948f4 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaea21842 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xafb3bc4e fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbcb181e4 fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbd80de6d fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc6409d6c fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd0a5964c fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd186153b fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd3a03483 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xde2b1945 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdfcb97a9 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe2cb201c fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe9f9d152 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xed9e90aa fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf24259c2 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf92e4b58 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfbfc1217 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfc4489f9 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x20d8b3ae sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x34cc7156 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a65878d sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x95193c16 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xeb5e6290 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0494177a osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0571ed71 osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c81c545 osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0d9d40e4 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x18c86d1e osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1a171a5c osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1c3c189e osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3d68b663 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x46199bb0 osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x467d698d osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x533f2a01 osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x54ff9a40 osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x63ebebb5 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x679a48db osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x70ef987e osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x798d0b8e osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7b34b250 osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8592823b osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8916fe06 osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8c56c94c osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8ecc0e8c osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x96928eb2 osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xac03cb6c osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb15c10b8 osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb28651fc osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb40cefa0 osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb55dceba osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xba37681f osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbc23194b osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc0d80341 osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc13b2342 osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc887b598 osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcbe99585 osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd4d31780 osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe83d92f2 osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe9877114 osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/osd 0x03c81e44 osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x172f542a osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0x1ae9c485 osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0xa97b6c9e osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0xbee03eea osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0xe76d3a3a osduld_device_info +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x00f5d3d1 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0f245823 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x15010e78 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x33fbe5e8 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5fc01750 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x616d2876 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xad23509d qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb00a8d01 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc222536b qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcfa74ec9 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xddc4968c qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf05d1637 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/raid_class 0xb3609724 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xe38a0fbe raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0xf564962a raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x177ff1e6 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x205cf692 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x31215a28 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x508c4a38 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6b0e9f0b fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x753c3177 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x91cdb038 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9fc6e839 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa4350546 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbcdff7ef fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd3e699f0 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xdcfe66a0 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf31e3a81 scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x02f8ccf0 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0e4c87b2 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x126494ca sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x146aa871 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x179c502f sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1c565132 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x20f91100 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5035ad69 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x50f4b443 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6cb46221 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6cddf46d sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x714af75b sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x78bc5f39 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7cbf8e1e sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7d437518 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x83f407d5 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x85af0f5b scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8a765c98 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x929bd77c sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc6b808cd sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd15f8ff0 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe5884dc9 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe815f97b sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe96522da sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xeed17bb3 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf8db582f sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfc64c336 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfeb22106 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfebaa8dd sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x1d45bdef spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7df2e4f5 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa2158068 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xd0d2821a spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe05f4d94 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x0a0719cd srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x281f37ae srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x2a173a80 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xf4619d85 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x352ef0b2 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x61a17c00 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x62e18496 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x9c465aa7 ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xca1e4024 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xd37136ad ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xe5aaa6a7 ufshcd_alloc_host +EXPORT_SYMBOL drivers/soc/qcom/smd 0x8161c0de qcom_smd_driver_register +EXPORT_SYMBOL drivers/soc/qcom/smd 0xb2bf1b9d qcom_smd_driver_unregister +EXPORT_SYMBOL drivers/soc/qcom/smd 0xeda44e54 qcom_smd_send +EXPORT_SYMBOL drivers/soc/qcom/smd-rpm 0x2f5501c0 qcom_rpm_smd_write +EXPORT_SYMBOL drivers/soc/qcom/smem 0x5a710273 qcom_smem_get_free_space +EXPORT_SYMBOL drivers/soc/qcom/smem 0x63ef36e3 qcom_smem_alloc +EXPORT_SYMBOL drivers/soc/qcom/smem 0x932eb0e3 qcom_smem_get +EXPORT_SYMBOL drivers/ssb/ssb 0x000cbe94 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x3ba18221 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x4a104b6a __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x559ca68c ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x5e444d9b ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x5ee62299 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x7d94607b ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x8333efdc ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x9a956f90 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x9c51e225 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0xadaf6c3c ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0xadf00ed8 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0xb5d917a7 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xb731e868 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xbed474c5 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xdd69e065 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0xe688385d ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xe9f712bd ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0xf51c3af1 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xf9669994 ssb_device_is_enabled +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x11f72c82 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x12172608 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x13abe828 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1d641d04 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x25d60a11 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x27801dd9 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x340e0b5a fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3ce36afe fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4145ea54 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x47eefaa6 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4910dd10 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4d039a71 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7246661c fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8e3e08eb fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9d69c6f0 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa01b37c0 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa1bcfe43 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa9e64fd2 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xaf0a80b1 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb79d2c66 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd1b619a1 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xde19b212 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe0da5e07 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe973b079 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x7faf6bd8 fwtty_port_put +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x910374d9 fwtty_port_get +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x1de776b4 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x183aabca hmc5843_common_remove +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x89e19161 hmc5843_common_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xd16c5e70 hmc5843_common_resume +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xebde9eda hmc5843_common_suspend +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x24f77508 ade7854_remove +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x2692755b ade7854_probe +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0x47a65abb cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x34a2ab3c most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/nvec/nvec 0x459c12ee nvec_write_async +EXPORT_SYMBOL drivers/staging/nvec/nvec 0x6a1a153b nvec_write_sync +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x00d32ec7 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x010e17f7 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0a465ff6 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0bb01060 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0c99a7a2 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0e533682 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0e979699 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x18a02ba4 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1f893d10 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x203ee996 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x28653261 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2a8c52a9 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x32fefc24 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3cd161c1 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3fa22a37 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4120fd88 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x47f99892 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x510f4f75 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x53503bdf rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5662b7bb rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x56c04fa3 rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5758537a rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x59fb36d5 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5c12dc1f rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x62894319 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x690a8d29 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x767765d0 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7c1d9635 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7c6e26dc rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8683532f rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x86b1ea77 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x89d43baf rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8dc152db rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8f048390 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9315a090 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x981c8e29 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa1a6e8dd HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa3ae7a8a rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb10dfa05 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc47900dc rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc54825df rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc9b9d4dd rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd1dd4a3b rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdbc3bf8a notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdd6d0d07 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe22ab15e Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xecbd1e6c rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf039e28b rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf54b7271 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfcfe6bb0 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x041ee992 ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x07feb41c ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x095a9a09 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0bb6b5d3 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0e7d98d3 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x106494f6 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x15b1de89 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d7a93a1 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x293548eb ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2a6bd0b4 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2b364fb7 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2f6d2746 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x38ea9fff ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3c568424 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3f7969d5 DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x408243b0 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x421aed6d ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x44ddfeb5 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4df01c77 DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5b026557 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x641072f7 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x645eae1b ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x68959a86 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x691cf2ed ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6f10fbc4 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x740ddd4b ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8a7afa27 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8aeb16f4 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x90bd6bca Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x91281115 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x97e1dca6 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x982bf39a ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa0823741 IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa0eb3d03 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa6d62771 Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaa85c9cd ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb3828ee6 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb5183c04 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc82f8ef3 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xca2c47f5 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf4c2491 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd19841a8 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd9b593de ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdbed5aad ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xde6895e8 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe3c65065 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe511d4bd ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe5ee82ab ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeaca9ae9 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeb914002 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xebc3f786 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf0caa22d ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf1beffdc ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfa311949 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfc7b0d9e Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x019edf66 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x07cc5957 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1d1be6a7 iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1def640b iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x305f6e3c iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x33070798 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4538a714 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x51234e99 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x537c8e65 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5ada30f9 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5fa18b5e iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6cc813fe iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8004a59f iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x82834fa5 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x971baf72 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x99d61feb iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9ce8a92d iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa0c15ccb iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa1c5bd0d iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa8dfbcb5 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xabe40eca iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb10416ac iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb15e780f iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb9e188d0 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc2440b9a iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc3affc8b iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe47f51aa iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe68ca88f iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/target_core_mod 0x02bafdf4 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x04cc0edb target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x07011271 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x11ddcb3f spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x128ad4a4 target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x14dd9fe4 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x16aadb85 target_put_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x1fd60b19 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x1fef0ca2 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x20fe0a93 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x277dc497 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x28a94d2d target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0x2c21b644 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x3180a8f5 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x33b44037 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x386d2c54 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x389e7261 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x38d462c7 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x393024a8 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x3ba33a9c __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x3dd68b52 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x3e99008e target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x45a5faab target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x4707f681 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x476b33af sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x4818c539 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x4a8ddc52 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x4d6f9ea7 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x5067753d core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x51d6d208 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x523b64fd target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x56353522 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x5933221e transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x5b7df050 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x5ba956f1 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x5bfaefa6 target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0x70cea526 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x79835a8c target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7bd85b65 transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x839dbf3a sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x8475f4ca target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x8622560c core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x86bd1b77 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x8722437f transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x8a43b4c4 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x8c5f2e38 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x8d5984bf target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x9c3b344b target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa3695382 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0xb24d81cf transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xbdf2c8da target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xbea494c6 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0xc0562c39 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xc9c39344 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xc9d637fc transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xcaba53cb target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xcb6a46cc target_get_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xccb585cb spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xcf989dd0 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xd4289d55 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xd50766f7 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xdba27308 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xdc49538f core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xe58ece05 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xe894d436 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3ab182c core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xf7d93569 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xfbe1f1b2 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xfd94ba39 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x04ef09aa usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x856b66f2 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x41501004 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x22f81dc6 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x32b3d3a4 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x38f3a4dc usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4c04006b usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x69e82cb4 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x71c0614d usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7651e99a usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xcd3e7b79 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xdab13912 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xdf2f0040 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe60f85ee usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf7c6908d usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x796996a7 usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x9f5fecb0 usb_serial_resume +EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user +EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x2e91ca97 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x367ce26a vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0x59f824d9 vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x7bda5e6d vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x821e9390 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x937e412c vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user +EXPORT_SYMBOL drivers/video/backlight/lcd 0x2be05e5b devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x91f15814 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xdc9d7695 lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xdff85253 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x08388bc1 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x18e16b49 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1ce75fc9 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x475fc6fc svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xa7cd52b3 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd65762d5 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf3cb5abb svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0xa50ceb6b sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x3e2c2c8c sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x987b5b3c sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xe9e76187 cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xfbfe32ef mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x2822d166 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x35baf93e matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x3e36fa23 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x613feca4 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x9f9e6ec6 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xdaed1dd3 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xe542ca23 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x9acf0ea9 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xd119dd5f matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x3424948d matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x69e878a5 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x9eb161db matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xd1e2ef02 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x8919bdbf matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xc9125a10 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x6e303757 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x8903b899 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x9ac8d81b matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xa557ec5d matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xadb94f4a matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x8aaa158b mb862xxfb_init_accel +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x1618bed3 w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x25dd31bf w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x2c9dbd6f w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xf2ce9350 w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x2406d401 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x9b547eb3 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x5e98963c w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x842f751c w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0x14d4bfb8 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0xbd1ad4e4 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xc8946a24 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0xf3006573 w1_unregister_family +EXPORT_SYMBOL fs/configfs/configfs 0x05ff8d88 configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0x1cadb62e configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x1e7b9a8a config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x2a702015 configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0x30cc25d5 configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0x34bea5d1 configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0x428804c1 config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x4fdf250d config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0x68e68da0 config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0x693134d1 configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x74958d33 configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0xd2a7f61a config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0xe4132d8f config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0xf5cdb856 config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0xfede5146 configfs_unregister_default_group +EXPORT_SYMBOL fs/exofs/libore 0x0d22d2ee ore_create +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x724d93a1 ore_remove +EXPORT_SYMBOL fs/exofs/libore 0x8c2104c7 extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0xa2338dd8 ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xb5ce5870 ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0xd8f3e9b0 ore_write +EXPORT_SYMBOL fs/exofs/libore 0xe02937ba ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0xe29f69a9 ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0xebc309f6 ore_read +EXPORT_SYMBOL fs/exofs/libore 0xfc416ec2 ore_truncate +EXPORT_SYMBOL fs/fscache/fscache 0x01166d01 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x02f05c61 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x05ab1850 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x177d08f3 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x18514066 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x1b94a60d fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x25631afd fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x2d4b4e16 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x324a0030 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x499a9ace fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x4b1ce5de fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x4be68262 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x4d67be44 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x4dc41049 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x563930c0 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x60eff1b9 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x611425b5 fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x616aa005 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x67972715 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x6ab195db __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x6af4ec75 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x6c641f7f fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x7022218f fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x811858e0 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x8a4b96aa __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x8e449211 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x9944ee72 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0xab90d6dc __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xc39024b6 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xc89afb7b __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0xce03939f fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xdc536d8f __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xdd10cc1e __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xe195e1b2 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0xe483419a __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0xedd04140 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xf6b3c20f __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xf9717730 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xfc9a0b53 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xfcbc75fd fscache_object_mark_killed +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x1b708e28 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x305ab4c1 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x3dbdc8c5 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xc1ab07b1 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xcbc7ef53 qtree_write_dquot +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-ccitt 0x3771b461 crc_ccitt +EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc-itu-t 0xf5b4a948 crc_itu_t +EXPORT_SYMBOL lib/crc7 0x66213969 crc7_be +EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc8 0x41248eaf crc8 +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c +EXPORT_SYMBOL lib/lru_cache 0x03f599c7 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0x22ee90d9 lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0x4feade4b lc_create +EXPORT_SYMBOL lib/lru_cache 0x56fc3ea0 lc_put +EXPORT_SYMBOL lib/lru_cache 0x619ed575 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x84e0214b lc_committed +EXPORT_SYMBOL lib/lru_cache 0xb673970e lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0xbbe7c23c lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0xc48fa976 lc_set +EXPORT_SYMBOL lib/lru_cache 0xc6e4cd46 lc_reset +EXPORT_SYMBOL lib/lru_cache 0xcb990a55 lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xcea6747e lc_destroy +EXPORT_SYMBOL lib/lru_cache 0xd212c9f0 lc_get +EXPORT_SYMBOL lib/lru_cache 0xeb13128b lc_del +EXPORT_SYMBOL lib/lru_cache 0xf460a486 lc_is_used +EXPORT_SYMBOL lib/lru_cache 0xf5ea5f5c lc_index_of +EXPORT_SYMBOL lib/lru_cache 0xf6acec20 lc_find +EXPORT_SYMBOL lib/lz4/lz4_compress 0xcbc5d521 lz4_compress +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x26c3aa22 lz4hc_compress +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul +EXPORT_SYMBOL net/6lowpan/6lowpan 0x269de703 lowpan_netdev_setup +EXPORT_SYMBOL net/6lowpan/6lowpan 0xb33de3fa lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0xd9ed6158 lowpan_nhc_add +EXPORT_SYMBOL net/802/p8022 0x45cd6b6e unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0xe9c92084 register_8022_client +EXPORT_SYMBOL net/802/p8023 0x309cb34e destroy_8023_client +EXPORT_SYMBOL net/802/p8023 0x35fc3aae make_8023_client +EXPORT_SYMBOL net/802/psnap 0x6011dcd4 unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0xc9910587 register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x00a10a91 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x0166ab87 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x0ee279bb p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x20aa5d87 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x23033634 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x239a6273 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x2493ff2f p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x3200689b p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x4377515f p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x45946329 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x45c2947c p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x46982cdf p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x47653791 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x4cf1af66 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x546bfc07 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x76c3985a p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x7a8c94dd p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x7db87f3f p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x832b09d9 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x8e2d7a5c p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x8f0490d0 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x9ce58e4f p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x9fff6394 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xa0bed5a3 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xa414d79e p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xa4e7dd2e p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xa9ba4956 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xad78c0e9 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xafed9db0 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xb5715e74 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xb6e096c6 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xb75a2370 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xc0fcfe60 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc8d6e130 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xd20ff10f p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xd2353dc0 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xd605f6ef p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe8f3b87f p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xeb19c171 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xeb212644 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xf180eb0b v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x79569ac8 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xcf712946 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xe608d51f atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xf5b4eef8 alloc_ltalkdev +EXPORT_SYMBOL net/atm/atm 0x105ecc3e atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x279c945c vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x5b1277dc vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x77ef835d atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x8d52d9f8 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x9acd0d97 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xa46cfdfc atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xa75d193c deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xbfb3ccdb register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xc8c48f1c atm_dev_register +EXPORT_SYMBOL net/atm/atm 0xcc56159f atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0xedf81350 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0xf1774b53 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xf69f4920 atm_charge +EXPORT_SYMBOL net/ax25/ax25 0x0e714d92 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x1dbe5d61 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x30ab3ea0 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x3eff790c ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x5c576c1e ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x68c7f637 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x9ea72c37 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd0974115 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/bluetooth/bluetooth 0x089e44de l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x097277bb hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0abdf2a3 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0b6dce1e bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0c3f1b76 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0c92e03b __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1300e46c bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x141950b4 hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x15bd45c2 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1b8d22e2 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1d21d2ab bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1df1c49a hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2c44740e hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2f6c54c2 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x369f658f bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3ff21bc3 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x454c887f hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4d181eba bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x629decde hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x64c949c1 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6e98fd31 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x704c9f38 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x70676325 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x75593edb hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x80381e9c bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x88b7d0d8 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8f8ce4e7 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x93f53e56 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x944d8653 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9f54a243 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb4ea399a bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc9357007 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd2259027 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd37f7ec6 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe4b33473 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe56ec06b hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe69c751d hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe8d0b881 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe9f2d98b bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xedf46244 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfeed54a3 bt_sock_unlink +EXPORT_SYMBOL net/bridge/bridge 0x1ce97d9f br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x06a04042 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x100e43cb ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa522763a ebt_do_table +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info +EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x3cd53c9f cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x509598d0 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x98cb41b2 caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xa58c5538 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xba9da190 caif_disconnect_client +EXPORT_SYMBOL net/can/can 0x05c16228 can_send +EXPORT_SYMBOL net/can/can 0x3aa8ce45 can_ioctl +EXPORT_SYMBOL net/can/can 0x9b856ac7 can_rx_unregister +EXPORT_SYMBOL net/can/can 0xb56542f9 can_proto_unregister +EXPORT_SYMBOL net/can/can 0xc52323c4 can_proto_register +EXPORT_SYMBOL net/can/can 0xcca71ec3 can_rx_register +EXPORT_SYMBOL net/ceph/libceph 0x08e2c808 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0c21bed0 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x0d4de47d ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x13542f04 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x13695166 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x1525c9e2 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x152f9ee2 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x159aa0f7 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x1a1dc311 ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x20d81cac ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x22a027ce ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x24489f8b ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0x2a684497 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x2b45bb31 ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x2d0ccda8 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x31c948f1 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x32c6d5ad ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x3894fb60 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3d144d3f ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x3da4ee03 osd_req_op_cls_response_data +EXPORT_SYMBOL net/ceph/libceph 0x3f4529e4 ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x40e1d2fa ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part +EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0x459d47f9 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x46ffcf2a ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x47886603 ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0x47a9920e ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x4ca7240d osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x4fa1379d ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x5091e966 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x51f3f3a1 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x542061f5 ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x54ef988e ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x60d68bcf ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x61f015b9 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x61fa18b9 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6f345c1a ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x71f01c20 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x72b37b9f ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0x74cc3d56 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x75e9a202 ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0x7e7dea0f osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x7f4313bd ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x8060df73 ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0x85520843 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x8b7fafb1 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x8f27c0b4 ceph_oloc_oid_to_pg +EXPORT_SYMBOL net/ceph/libceph 0x90d749e2 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9aaff844 ceph_monc_request_next_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa1ebde8f ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xa394aa2d ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0xa4cc81bc ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0xaaac2844 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xadf75da4 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xaf199884 ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb189bdb8 ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0xb19dc152 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xb22ee579 osd_req_op_watch_init +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xb655e08c ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xb9a85d33 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xc091669d ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc645d800 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xc7b0c0f3 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0xc9458067 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xca670f06 ceph_monc_do_get_version +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xcf06af2f ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xcfd089ff __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd5383217 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xd813625e ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xdbf22739 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xdd4ddf68 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xde0eb6ba ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0xe3c929bf ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xe41c52ce ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0xe55d9bcd ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0xe69000be ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xecfa48d7 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xeee19bf6 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0xef41c898 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0xeff72249 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xf4de86fe ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xf58739aa ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0xf5965d46 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0xf5d17500 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0xf5ed769e osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xf7e3713b ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xfa27171c ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xfa47d77a ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0xffd9d43a osd_req_op_extent_osd_data +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x5270e55f dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x6c9dd34c dccp_req_err +EXPORT_SYMBOL net/ieee802154/ieee802154 0x00b5f807 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x5bba91f7 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x69d52073 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x825be101 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xbd9b4cec wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0xd293b073 wpan_phy_new +EXPORT_SYMBOL net/ipv4/fou 0x0c07b4a3 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x481970c0 fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xed741d6f gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0xf6616a60 gue_build_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x2451d8ba ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x2ff3d674 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xc0dcce5e ip_tunnel_encap +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xcfaa5a67 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xe4de0a4e ip_tunnel_dst_reset_all +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf40cc6a8 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x7798e5e5 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x9bb0a872 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xd041ee06 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x6f8edf5f ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xd7c62acf ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xf061b02e ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x39632d4d xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0x5e9ce3a1 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0xae6078e7 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1f6a3b6e ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x8bf02102 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9f050310 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa5c5fffc ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x381e39f9 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x7a92821e ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xe63655b2 ip6t_do_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x9d5c02ec xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0xfa2e21ad xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x21570429 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x3672cf7e xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x2c1b1a4c ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x2caefa95 ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x2fa69276 ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x33689294 ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x765bfec4 ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xa082ce73 ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xa3cbbb69 ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xb0989b81 ircomm_flow_request +EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value +EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service +EXPORT_SYMBOL net/irda/irda 0x0ce16a84 iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0x156a6b0c irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0x16b2c5cc irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0x17a491c5 irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0x1e8d817d irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0x1f1b3031 irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x2a774e45 irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x36cad55b hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0x37791344 hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value +EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service +EXPORT_SYMBOL net/irda/irda 0x495ec116 irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0x4fec0251 iriap_close +EXPORT_SYMBOL net/irda/irda 0x5284a821 irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x5c62fef2 iriap_open +EXPORT_SYMBOL net/irda/irda 0x6257a6a0 alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0x6492e28c hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0x6974c7f3 irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0x6a339789 async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x6b76aa70 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0x6c27e761 irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0x6c923bc1 irlap_open +EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x731cec71 hashbin_insert +EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client +EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client +EXPORT_SYMBOL net/irda/irda 0x7e67ca6e irias_new_object +EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x82a0567e irttp_data_request +EXPORT_SYMBOL net/irda/irda 0x8982c8d9 irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x8a44dd5e hashbin_new +EXPORT_SYMBOL net/irda/irda 0x90ddb6bd hashbin_remove +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x93445ab7 irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0x9b3673c5 irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0x9ffda243 irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0xa0af73e1 irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0xa66d461c irda_notify_init +EXPORT_SYMBOL net/irda/irda 0xb357084f irlap_close +EXPORT_SYMBOL net/irda/irda 0xb3c13d7f irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0xb8916442 irttp_dup +EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value +EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute +EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request +EXPORT_SYMBOL net/irda/irda 0xbf7dd554 hashbin_find +EXPORT_SYMBOL net/irda/irda 0xbfa7c08d hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0xc477368d irias_find_object +EXPORT_SYMBOL net/irda/irda 0xcadce3d0 irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0xf199cba4 irias_insert_object +EXPORT_SYMBOL net/irda/irda 0xf80be94f irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0xfe86bcc5 async_wrap_skb +EXPORT_SYMBOL net/l2tp/l2tp_core 0x0722148f l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0x7b2b9499 l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x1877dee8 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x1a934bac lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x33e40592 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x3a354fa5 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x64659d48 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0xc177f3df lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xcfcd5e96 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xd458623b lapb_connect_request +EXPORT_SYMBOL net/llc/llc 0x03425f5a llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x07083bd5 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x093a267b llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0xe1275434 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0xe4d13528 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0xe634a9df llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xed4b8929 llc_sap_open +EXPORT_SYMBOL net/mac80211/mac80211 0x02166686 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x030e96b5 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x037503c9 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x05835f27 ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0x0aabe15a ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x0fbb9658 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0x112b0279 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x115b1ba9 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x22f89030 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x26d760b3 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x2ceaf4e6 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x2d93cbfd ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x32e0c810 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x3420a016 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x361e8777 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x3c5f9792 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x40fc15a4 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x41122ef0 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x4a7b9f47 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x4ab5d3ed ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x5aab2eb9 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x5bbdcad1 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x5f5cad90 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x61bc1d7f ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x6668bec7 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x66eff3a9 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x68e52799 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x68e9a69f ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x69b607e5 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x69de096c ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x6c7003b5 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x6fc88cf2 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x72fb6df6 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x7410134d ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x76b9ef28 ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x77a719a0 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x7fda4748 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x80f69e35 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x87cf8722 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x907f65e5 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x91434a4b ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x94ed48e7 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x952a4d74 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x9688c3fd ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x980d9260 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x993514af ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x9d67616c ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xa7933817 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xb1aaef91 ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xb3001df4 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xb48c72cb ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xb53a5a8a ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xbc7839a4 ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xbe93040f ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xc3ab5395 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xc3c9eab3 ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0xc8278c4c ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xc8de30ad __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xc9fc54a8 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xcbc6c766 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xcc58d639 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xced89626 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xcf87c057 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xd5362840 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xd6a47bb0 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xd7a88266 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0xd9b63d9f ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xda0e4f25 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xda2ae79d ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xdae94003 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xdb3e38dc ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0xdf98cd1c ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xe49b24ca rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xe6562ce9 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0xe7419b30 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xea7d2c35 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xec5dad7d ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xef68bf65 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xefe2a696 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xf1ce0774 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xff0d887c __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xfffcdd92 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac802154/mac802154 0x11ad1036 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x2e03aef2 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x45a0587e ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x50daa4da ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x74a0d5bc ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x9c8f5408 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xaf66186b ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0xb6fcb381 ieee802154_register_hw +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x051023cf ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x15790420 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1ba32c43 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x29b9353b ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2b01093d ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x38e514e2 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4b71ac50 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6a601028 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8ff5c825 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9a26c14d ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9c238527 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xaf00c179 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc8b4a51e unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf7872e52 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x45eebc00 __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xe10c3ddd __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xf2d920c3 nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x8fab7f6a nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xa95707fb __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xac06dedc nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0xba70369d nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xbea27287 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0xf3148105 nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/x_tables 0x0d1080b0 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x26eb388b xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x517b4141 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x5a46b8fc xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x5f8b0aac xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x9dae53c0 xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0x9ed22da4 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xae4e6a75 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xb8cb7278 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xf142b3ce xt_unregister_match +EXPORT_SYMBOL net/nfc/hci/hci 0x07b94087 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x177c7f98 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x182c5dd9 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x192e24c7 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x1d3e198e nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x1ea608b2 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x2d1df2ef nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x3df393d9 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x4725a975 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x6a03c72c nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x7121e3aa nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x9ab6d56d nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x9c5cfd05 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0xac2cef72 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xc54898de nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0xc7c40fc3 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xd1ca5cf6 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0xdbffc141 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0xe9437d80 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xf4c15b40 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xf5eeb40f nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x00bcbb31 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x05373843 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x07671483 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x17e6a4d2 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x1e5593e0 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x2a8eb0ff nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x2cd7ce3b nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x4459c313 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x5d2924b4 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x67a4d9bc nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x6959e9c7 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x70cd8b78 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x74b1096f nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x7be02db2 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x803e7bda nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x81626f40 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x939d7ff7 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x93d02b80 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x99cf0c10 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x9f53007d nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xa5c8e1b9 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0xa880c68c nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xd5b380a5 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0xd8bfc36d nci_get_conn_info_by_id +EXPORT_SYMBOL net/nfc/nci/nci 0xdce207d6 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xde819531 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xea993704 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0xf0d2f4e7 nci_core_cmd +EXPORT_SYMBOL net/nfc/nfc 0x06ed9c43 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x27f899cb nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x392e8042 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x428672f4 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x5052025e nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x541a5bd7 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x6bd49833 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x6d8fea78 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x755c6705 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x793c17b9 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x82669e4a nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x8e06791c nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x91089ea9 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x97c5eb4d nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x9e289dab nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xae12811c nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xaed2cc56 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xb3ba7a33 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0xbb32397e nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0xc22044c8 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0xc3000e50 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xd2ec7871 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xf353b5ea nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xffb7b726 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc_digital 0x15a9737d nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x94f8c2ee nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x9d816a6a nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xf2c9c4c4 nfc_digital_allocate_device +EXPORT_SYMBOL net/phonet/phonet 0x28a0941a pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x391b58de phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x463f7b1c phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x5726452c pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x7791abd7 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xe1e03ecf pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0xe94ebee8 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0xee8a1c1b phonet_proto_unregister +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x14a18313 rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1c8ef8fc rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x323c44e3 rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x3d386298 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x70344ed1 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x7b8e5346 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x9347c243 rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x99ecb259 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x9ddf9580 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xbdb1f2b2 rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xda12f549 rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe3f3b806 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf2e6a81e rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf786198c rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf9638a79 rxrpc_get_server_data_key +EXPORT_SYMBOL net/sctp/sctp 0x255d748c sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x2bd05589 gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x5d9061cf gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xc405f33d gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/sunrpc 0x32952aee svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xd36b6ba1 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xe72e9614 xdr_restrict_buflen +EXPORT_SYMBOL net/wimax/wimax 0x926930e7 wimax_rfkill +EXPORT_SYMBOL net/wimax/wimax 0xe6b73d0d wimax_reset +EXPORT_SYMBOL net/wireless/cfg80211 0x08cd4871 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0e4ee2e5 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x12410294 __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x18c2c933 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x1acfb34b cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x1ea19502 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x2128e54a wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x213fe3a8 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x24128b44 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x249f2605 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x25af8483 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x27ba2a26 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x28b4713d cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x2a0a83b6 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x2c0bec05 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x2d271b3a cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x30540452 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x3111f0ef cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x3261273f ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x327a83be cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x3795fffd cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x414e9f8c ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x42408965 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x424d9a36 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x4e6aa21a cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x526cc5d4 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x54281177 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x5812ecf2 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x5a44dcea cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x5f4577c3 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x62543fa0 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x63f36531 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x68da613b cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6a6f47aa cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x6db9500a __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x716df198 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x74b562c0 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7678e2cd freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x76900928 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x84589266 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x84c6e59b __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x851a2629 cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0x871ccf95 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x87a28a53 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x88a9b995 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x8c49708f cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x928a73e6 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x952aa315 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x9581b655 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x966ff54d ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x9b7b6ad6 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xa0455ad1 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xa1425906 ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xa1e94eae cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0xa32d9c97 wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0xa5f914c7 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xa9715396 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xa99d8f07 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xabe57ebe cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xb2eabe7f cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0xb3382741 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xb3bec628 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xb6c2e398 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xbae5f878 cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xbd661b58 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xc4c99179 cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xce29e513 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xd2d7a80d wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xd55dd064 regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xd5a5cd0e cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xd6d40027 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xd7b9eaf1 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xd838bf40 ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xd8bb7928 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xd9ca3b99 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xe1231925 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0xe5b6d907 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe673aa48 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0xe853f2f1 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xeb6d7c6c ieee80211_ie_split +EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xf10477e6 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xf42c6d5e cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0xf7e66485 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0xf806d431 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0xf9e4e347 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/lib80211 0x097aeb5b lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x0f246b62 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x7603f7c5 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x9b86178b lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xb6dfad95 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0xfc94cda7 lib80211_crypt_info_init +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xa126d2b4 snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x090e48f4 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x4391dc67 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x926fc38b snd_seq_kernel_client_enqueue_blocking +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xd1a3389f snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0xaffc6982 snd_seq_device_new +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x127b30fb snd_midi_event_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x1cdc0812 snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x59eb74ae snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x8102ed2f snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xb11ba32d snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xb2c7f684 snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xea0e5748 snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xed42580b snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x68c87646 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd-hwdep 0x453db91c snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0966d18d snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0c16fcb2 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x19ef6546 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1fc042b8 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x230c55af snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x45a10251 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x45b8d988 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4bfbffc0 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x670ce41e snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x74a44bab snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7818524a snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7f6d7c67 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x87c12213 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8f6ac83c snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8f8cc321 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa2cf3d64 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xaab3441d snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb9b7db5f snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0xee8a0f5f snd_rawmidi_output_params +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xf213bcd9 snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x25ec34f2 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x3868ec31 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x3ce32021 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x41876fe7 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x43a57657 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6363a0a5 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x93b2a5f3 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf2c719f6 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf7daac3d snd_opl3_init +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x016728d8 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2d73b866 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x85762629 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8f27bfd1 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x93f03492 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd0d52b26 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xdf1535bf snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe78f414f snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf72d9189 snd_vx_setup_firmware +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x08f9cb19 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x10bce2db fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x12c05401 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x14d604d9 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1ef24866 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x368097a5 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3a4ac735 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4462ba95 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4de50af8 snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x51e85d8e amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x549c2fe1 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x54ff6e4f amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x606e3b1a amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x60e80ef7 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x659ab42e amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x65c286d1 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6f0e4a8f amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7330e4ba iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x74a68f35 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x759e4f1e amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8fab3ad8 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9c87f4bb amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa78ea0e4 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd1e3e0f4 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd35e6311 amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xedbfdfb4 snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf14bee72 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf1ce1036 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf21a8ff7 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfc37fa3e avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xff668852 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xff95a1c0 snd_fw_transaction +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x0ba0fad5 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xe70be2fe snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0dc5f34c snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x41ede8ca snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x550a7091 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x59f4044c snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x5da1bad8 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7faa469d snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xc1788ea7 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xc91ad5f3 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x1d7193c0 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x29fbd126 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x67c26138 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x6ac50dc8 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x1ea1794e snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xa741f45d snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-i2c 0x7d487702 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x81ca5bf2 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xbb35491f snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0xbe6bb37b snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xdfa78b94 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xea3d881f snd_i2c_device_create +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x093fd4f0 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x28d09f82 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x29b24eae snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3602954d snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3920b924 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3cf16ae0 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x40f27690 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9b1b0bab snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa2d4a2e0 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xac93cd5a snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb640a3fd snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb9a3f781 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcf2ee897 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcf64ec49 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdab44140 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe46bd88e snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe9dd3ed8 snd_ac97_write +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x03c1ac2c snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x5ff115a8 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x9911cf64 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x092b443a oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0f89eda9 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x19fb0d16 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x27188883 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2d67bfef oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x354378b7 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3f92fd9c oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x415e4d84 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x47dab05e oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6277547f oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8070211b oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x90c51c43 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9dbf64be oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa523058d oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xab2c69b0 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb12de3e5 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb2f410fd oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb4a69e93 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb5e4bdda oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc74f5def oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf9e89488 oxygen_write16_masked +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x40100520 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x93782251 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x46c9472d fsl_asoc_get_dma_channel +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x04fcaae0 snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL vmlinux 0x0018454e kmalloc_caches +EXPORT_SYMBOL vmlinux 0x001ee95a imx_ssi_fiq_base +EXPORT_SYMBOL vmlinux 0x003aa7fe mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x003ed69a __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x00467a05 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x004db6ce simple_transaction_set +EXPORT_SYMBOL vmlinux 0x004eda74 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x005065a0 do_splice_to +EXPORT_SYMBOL vmlinux 0x008584b2 of_find_property +EXPORT_SYMBOL vmlinux 0x00887eaa tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x0095b072 dump_align +EXPORT_SYMBOL vmlinux 0x00c5ac2f inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x00ce96f1 nvm_register +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00e0b287 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x00e4bce5 kern_path +EXPORT_SYMBOL vmlinux 0x00ee529c sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x01044858 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr +EXPORT_SYMBOL vmlinux 0x0116e79e inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0x011a9e53 elf_hwcap2 +EXPORT_SYMBOL vmlinux 0x013e0a75 of_get_min_tck +EXPORT_SYMBOL vmlinux 0x01425840 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x01552e7a blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x0163eebc serio_bus +EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer +EXPORT_SYMBOL vmlinux 0x01717a49 set_disk_ro +EXPORT_SYMBOL vmlinux 0x0176121a fget +EXPORT_SYMBOL vmlinux 0x0186e2de smp_call_function_many +EXPORT_SYMBOL vmlinux 0x019611c0 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x01a3d310 omap_set_dma_channel_mode +EXPORT_SYMBOL vmlinux 0x01a557f4 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x01b2a85c ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x01b7fd59 dispc_read_irqstatus +EXPORT_SYMBOL vmlinux 0x01c670fa md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x01cf6c74 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x01e912f3 alloc_disk_node +EXPORT_SYMBOL vmlinux 0x01ea132e dispc_runtime_put +EXPORT_SYMBOL vmlinux 0x01eebf2f param_ops_charp +EXPORT_SYMBOL vmlinux 0x01fcca46 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x0203e378 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x02196324 __aeabi_idiv +EXPORT_SYMBOL vmlinux 0x02239d4b tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x0238f408 snd_cards +EXPORT_SYMBOL vmlinux 0x02573b36 omap_disable_dma_irq +EXPORT_SYMBOL vmlinux 0x02627eb3 of_gpio_simple_xlate +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x02735b8b phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL vmlinux 0x0287990f nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0x029b767e nvm_put_blk_unlocked +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact +EXPORT_SYMBOL vmlinux 0x02ef742b percpu_counter_set +EXPORT_SYMBOL vmlinux 0x02fb4584 input_allocate_device +EXPORT_SYMBOL vmlinux 0x02fdf039 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x03005606 omapdss_get_version +EXPORT_SYMBOL vmlinux 0x03026722 mempool_alloc +EXPORT_SYMBOL vmlinux 0x0303cc57 sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0x030eaacb copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x0313be5e inet6_offloads +EXPORT_SYMBOL vmlinux 0x0331cc3b kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x0339a336 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x034faea4 simple_write_begin +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x035a1d10 tcp_check_req +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x03676d4b xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x037385d2 dev_alloc_name +EXPORT_SYMBOL vmlinux 0x03753cec dump_page +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x0399a584 scsi_print_result +EXPORT_SYMBOL vmlinux 0x039a80e2 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x03a1ee0b bdi_destroy +EXPORT_SYMBOL vmlinux 0x03ba39b0 v7_flush_user_cache_all +EXPORT_SYMBOL vmlinux 0x03d2173b tcp_init_cgroup +EXPORT_SYMBOL vmlinux 0x03d22642 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x03d6e28e search_binary_handler +EXPORT_SYMBOL vmlinux 0x03e543c4 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL vmlinux 0x03f4273c blk_free_tags +EXPORT_SYMBOL vmlinux 0x03f7666b fget_raw +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x0404ddf5 blk_put_request +EXPORT_SYMBOL vmlinux 0x0417717d snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x0425269b pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x042ac44a of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x042d7954 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x043e33a3 md_write_start +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x04509380 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x0460b324 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x04666a84 skb_store_bits +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x048a5fa2 simple_map_init +EXPORT_SYMBOL vmlinux 0x04942810 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x04afd4fb release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x04cda566 snd_interval_refine +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04fb6a93 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x05004223 unload_nls +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x053123e5 textsearch_unregister +EXPORT_SYMBOL vmlinux 0x053a224c dev_get_iflink +EXPORT_SYMBOL vmlinux 0x05567428 swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0x055ac146 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x056abb62 km_new_mapping +EXPORT_SYMBOL vmlinux 0x05773cb9 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x057e924f nf_log_trace +EXPORT_SYMBOL vmlinux 0x05a28065 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x05d6b1d6 nand_scan_tail +EXPORT_SYMBOL vmlinux 0x05fe562f shdma_chan_remove +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x062c5029 tty_register_driver +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x065dc2b5 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x065f2374 omapdss_default_get_resolution +EXPORT_SYMBOL vmlinux 0x06607f92 dss_feat_get_supported_outputs +EXPORT_SYMBOL vmlinux 0x0669d851 pci_platform_rom +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x06b74716 skb_checksum +EXPORT_SYMBOL vmlinux 0x06b77ec2 tcp_filter +EXPORT_SYMBOL vmlinux 0x06b88dc0 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x06bbd02d dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x06c96ef1 vc_cons +EXPORT_SYMBOL vmlinux 0x06e477fa lease_get_mtime +EXPORT_SYMBOL vmlinux 0x06f738a1 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x072a3c29 netif_napi_del +EXPORT_SYMBOL vmlinux 0x072a8f8d __set_fiq_regs +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x0738d509 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x073f8508 register_gifconf +EXPORT_SYMBOL vmlinux 0x073ff079 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0x0753e932 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x07597153 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x075e7035 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x0769c590 __put_cred +EXPORT_SYMBOL vmlinux 0x0773749f pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07b49bdf dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07cf9099 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x07f27ba7 km_state_notify +EXPORT_SYMBOL vmlinux 0x08181990 phy_start_interrupts +EXPORT_SYMBOL vmlinux 0x081f3afb complete_all +EXPORT_SYMBOL vmlinux 0x0821ef27 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x086c289b nonseekable_open +EXPORT_SYMBOL vmlinux 0x088d3717 cdrom_open +EXPORT_SYMBOL vmlinux 0x088e4341 blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0x08a26e10 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x08a83705 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x08ae047c omapdss_output_unset_device +EXPORT_SYMBOL vmlinux 0x08c88b6b __kernel_write +EXPORT_SYMBOL vmlinux 0x08d8da8d serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x08e26800 down_write_trylock +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x08fc2593 md_error +EXPORT_SYMBOL vmlinux 0x09073ede tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x094c05a9 mount_bdev +EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key +EXPORT_SYMBOL vmlinux 0x0960be97 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x0961bb2f request_key_async +EXPORT_SYMBOL vmlinux 0x0964666c udp_ioctl +EXPORT_SYMBOL vmlinux 0x096694e1 snd_unregister_device +EXPORT_SYMBOL vmlinux 0x096985ec skb_clone_sk +EXPORT_SYMBOL vmlinux 0x097ec1ff _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x0982551c nla_put +EXPORT_SYMBOL vmlinux 0x0982c3b4 generic_write_end +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x099de538 put_page +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09cf1b46 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09ddff54 max8998_update_reg +EXPORT_SYMBOL vmlinux 0x09dea6e6 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x0a0786de udplite_table +EXPORT_SYMBOL vmlinux 0x0a11563a pci_find_capability +EXPORT_SYMBOL vmlinux 0x0a1cfea6 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a2dfd6f kmem_cache_size +EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr +EXPORT_SYMBOL vmlinux 0x0a373226 crc32_le_shift +EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell +EXPORT_SYMBOL vmlinux 0x0a5bb9b3 bio_add_page +EXPORT_SYMBOL vmlinux 0x0a6e6994 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0ab47b2c blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x0ac84643 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x0acaf67b free_netdev +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0aed40dc simple_fill_super +EXPORT_SYMBOL vmlinux 0x0af4debc phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b280984 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x0b2d425c of_node_put +EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b4c14c7 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x0b57155e tegra_io_rail_power_off +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b784e1b snd_dma_free_pages +EXPORT_SYMBOL vmlinux 0x0b8399f5 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x0b94088e truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x0b9afb67 snd_timer_open +EXPORT_SYMBOL vmlinux 0x0ba92431 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bbcf7b4 inode_permission +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bf8df2d locks_init_lock +EXPORT_SYMBOL vmlinux 0x0c03a0c3 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x0c10b570 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x0c2b5ea0 vm_insert_page +EXPORT_SYMBOL vmlinux 0x0c31ea7c mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x0c33d28f tcp_parse_options +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c549551 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c75b1ac __init_rwsem +EXPORT_SYMBOL vmlinux 0x0c816aab iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0ca54fee _test_and_set_bit +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cbc61a6 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x0cbe5918 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x0ce25b75 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x0ce66529 pci_iomap +EXPORT_SYMBOL vmlinux 0x0ce81af7 snd_info_register +EXPORT_SYMBOL vmlinux 0x0cfefe1e percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x0d19e84f genphy_read_status +EXPORT_SYMBOL vmlinux 0x0d1bcfca seq_path +EXPORT_SYMBOL vmlinux 0x0d20677f eth_type_trans +EXPORT_SYMBOL vmlinux 0x0d218c76 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x0d3f57a2 _find_next_bit_le +EXPORT_SYMBOL vmlinux 0x0d4d7a32 _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d843123 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex +EXPORT_SYMBOL vmlinux 0x0dd3fbfc bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x0de0dd84 elevator_init +EXPORT_SYMBOL vmlinux 0x0dfca621 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x0e0a3e8c devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0x0e1cfd86 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x0e3343f7 inet_put_port +EXPORT_SYMBOL vmlinux 0x0e4dfd2b pci_iounmap +EXPORT_SYMBOL vmlinux 0x0e524884 abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e778918 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x0e89381d filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0x0e987230 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x0ea9b388 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x0eaeae0a md_update_sb +EXPORT_SYMBOL vmlinux 0x0eaf451e hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0eb34e45 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x0ebeb310 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0x0ec1b47f udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f0dea5e iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x0f2f284a send_sig_info +EXPORT_SYMBOL vmlinux 0x0f2fa670 proc_set_size +EXPORT_SYMBOL vmlinux 0x0f312d1b xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x0f3fb63a scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x0f42a810 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f5a5c8b of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f83ace7 cdrom_release +EXPORT_SYMBOL vmlinux 0x0f848910 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x0f9683e9 snd_ctl_boolean_mono_info +EXPORT_SYMBOL vmlinux 0x0fa2a45e __memzero +EXPORT_SYMBOL vmlinux 0x0fa31bdf pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x0fa5e3b2 lock_rename +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fcac39f sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x0fd55ad2 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x0fded04c bio_advance +EXPORT_SYMBOL vmlinux 0x0ff178f6 __aeabi_idivmod +EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress +EXPORT_SYMBOL vmlinux 0x0ffcb649 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x1005336b block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x1013e70e __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x1028808d snd_ctl_replace +EXPORT_SYMBOL vmlinux 0x10436099 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL vmlinux 0x104c3c88 proc_set_user +EXPORT_SYMBOL vmlinux 0x1054dc44 omap_dss_get_overlay +EXPORT_SYMBOL vmlinux 0x105d1993 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x10994586 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x10a45d99 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x10b1c48d amba_find_device +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x11145431 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x112748bd omap_vrfb_adjust_size +EXPORT_SYMBOL vmlinux 0x11446fd5 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x1165ce6d max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x116a5a95 swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x119b50e7 elf_check_arch +EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x11ce7a74 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x11edfc52 of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x11ee57a2 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x12122737 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x121a00c7 mpage_readpages +EXPORT_SYMBOL vmlinux 0x121d8aaa generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x122fcabf sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x123508bf devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x1251e5f5 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x126a724d inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x1282af01 tty_hangup +EXPORT_SYMBOL vmlinux 0x1289c48c noop_fsync +EXPORT_SYMBOL vmlinux 0x12961b5b pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12a53c13 udp_poll +EXPORT_SYMBOL vmlinux 0x12c07f72 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc +EXPORT_SYMBOL vmlinux 0x12dd4d24 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x12e8317c flush_dcache_page +EXPORT_SYMBOL vmlinux 0x12eaf17c of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x12f7c68f blk_delay_queue +EXPORT_SYMBOL vmlinux 0x1300f205 snd_device_new +EXPORT_SYMBOL vmlinux 0x130ebc9f netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x1312353b jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc +EXPORT_SYMBOL vmlinux 0x13713b09 dquot_operations +EXPORT_SYMBOL vmlinux 0x1389f102 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x13953e0b path_noexec +EXPORT_SYMBOL vmlinux 0x13a01cce get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x13a4958f cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0x13ab2e2c dev_warn +EXPORT_SYMBOL vmlinux 0x13bc8da4 notify_change +EXPORT_SYMBOL vmlinux 0x13c32e2a snd_dma_alloc_pages +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13e82432 blk_fetch_request +EXPORT_SYMBOL vmlinux 0x13f1713f set_create_files_as +EXPORT_SYMBOL vmlinux 0x13f18020 check_disk_size_change +EXPORT_SYMBOL vmlinux 0x13f373f3 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x1420b379 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x143363cb ether_setup +EXPORT_SYMBOL vmlinux 0x144d6f29 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x144d79bb pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x144e5c5e pskb_expand_head +EXPORT_SYMBOL vmlinux 0x14628c2a make_kuid +EXPORT_SYMBOL vmlinux 0x14847267 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x149557cc cdev_add +EXPORT_SYMBOL vmlinux 0x14a1a776 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x14a41e88 of_root +EXPORT_SYMBOL vmlinux 0x14aaf062 tty_free_termios +EXPORT_SYMBOL vmlinux 0x14b15e48 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14d4a9c5 _change_bit +EXPORT_SYMBOL vmlinux 0x14f3fa0a of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x14f845c6 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x15230849 inet_getname +EXPORT_SYMBOL vmlinux 0x154ba012 pagecache_get_page +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x1558f693 udp_set_csum +EXPORT_SYMBOL vmlinux 0x1578555f blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x157c5c82 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x15929ec3 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x1593c8ef xfrm_state_add +EXPORT_SYMBOL vmlinux 0x15a51cef omap_dss_find_output_by_port_node +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bdf967 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x15d998bb xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0x160f7d5a xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0x161080f7 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x1612ca2a dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x162ccc0c lg_local_lock +EXPORT_SYMBOL vmlinux 0x162f5487 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null +EXPORT_SYMBOL vmlinux 0x16334174 sock_rfree +EXPORT_SYMBOL vmlinux 0x1641e68f unregister_binfmt +EXPORT_SYMBOL vmlinux 0x164d1ce7 set_posix_acl +EXPORT_SYMBOL vmlinux 0x164f02ba vfs_setpos +EXPORT_SYMBOL vmlinux 0x166250c3 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x16753144 pps_event +EXPORT_SYMBOL vmlinux 0x16820a5e mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x1683a50b radix_tree_delete +EXPORT_SYMBOL vmlinux 0x168cf911 nla_reserve +EXPORT_SYMBOL vmlinux 0x16a03228 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x16afe616 snd_ctl_rename_id +EXPORT_SYMBOL vmlinux 0x16b495b3 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x16bd0514 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x16d83714 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x17434491 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x174afb1a __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x17615297 dss_mgr_start_update +EXPORT_SYMBOL vmlinux 0x1784f057 dispc_ovl_set_fifo_threshold +EXPORT_SYMBOL vmlinux 0x179c7a20 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x179d6636 i2c_transfer +EXPORT_SYMBOL vmlinux 0x179d75ae nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17c3e063 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x17e9df27 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x17f96191 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x18034aa8 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x180bd219 genlmsg_put +EXPORT_SYMBOL vmlinux 0x1813a0e3 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x1830e248 devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0x183c29e3 skb_find_text +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x18444b84 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x184e48f1 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x185933d6 elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0x18727d0e d_move +EXPORT_SYMBOL vmlinux 0x187c37de fsync_bdev +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x189c5980 arm_copy_to_user +EXPORT_SYMBOL vmlinux 0x18b6d498 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x18bd76a4 _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x18c2227f cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18ef5045 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x19000f56 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x1929f521 get_tz_trend +EXPORT_SYMBOL vmlinux 0x19579780 mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0x19610e1f cpu_all_bits +EXPORT_SYMBOL vmlinux 0x19673c60 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x19674e35 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x196ca79d of_device_alloc +EXPORT_SYMBOL vmlinux 0x1970a11d input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x197dc3b3 omap_set_dma_src_burst_mode +EXPORT_SYMBOL vmlinux 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19a051fd abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0x19a273f9 read_dev_sector +EXPORT_SYMBOL vmlinux 0x19ac4674 dev_get_stats +EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19ca07ce vm_event_states +EXPORT_SYMBOL vmlinux 0x19cbf364 posix_acl_valid +EXPORT_SYMBOL vmlinux 0x19daa02b register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x19f5809b dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0x1a20c540 omap_vrfb_supported +EXPORT_SYMBOL vmlinux 0x1a3162bb netdev_crit +EXPORT_SYMBOL vmlinux 0x1a592a01 __f_setown +EXPORT_SYMBOL vmlinux 0x1a5a88e1 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x1a65f4ad __arm_ioremap_pfn +EXPORT_SYMBOL vmlinux 0x1a70b06a inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x1a8ae252 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x1a929120 pci_match_id +EXPORT_SYMBOL vmlinux 0x1aaa074c open_exec +EXPORT_SYMBOL vmlinux 0x1abbd226 cros_ec_check_result +EXPORT_SYMBOL vmlinux 0x1ac7242d tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x1ad1f2e7 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0x1adbf6b4 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b021bb8 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x1b2d6d2c qcom_scm_cpu_power_down +EXPORT_SYMBOL vmlinux 0x1b2e4db6 tty_mutex +EXPORT_SYMBOL vmlinux 0x1b498d8a d_find_alias +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1badc9c9 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x1bb1536f snd_info_create_module_entry +EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer +EXPORT_SYMBOL vmlinux 0x1bb694a2 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x1bc71ce2 sk_common_release +EXPORT_SYMBOL vmlinux 0x1bf53617 down_write +EXPORT_SYMBOL vmlinux 0x1bf60a64 get_super +EXPORT_SYMBOL vmlinux 0x1c018ff7 secpath_dup +EXPORT_SYMBOL vmlinux 0x1c1326eb __break_lease +EXPORT_SYMBOL vmlinux 0x1c1d8101 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x1c4fb15f scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x1c59b83a __inet_hash +EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s +EXPORT_SYMBOL vmlinux 0x1c6575c1 tcf_em_register +EXPORT_SYMBOL vmlinux 0x1c6b4371 dma_supported +EXPORT_SYMBOL vmlinux 0x1c8eb3d6 reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0x1cb98296 follow_down_one +EXPORT_SYMBOL vmlinux 0x1cd4bf3e snd_jack_set_parent +EXPORT_SYMBOL vmlinux 0x1cfb04fa finish_wait +EXPORT_SYMBOL vmlinux 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL vmlinux 0x1d06c1cf mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x1d1758fd __nla_put +EXPORT_SYMBOL vmlinux 0x1d1fc1a2 __frontswap_store +EXPORT_SYMBOL vmlinux 0x1d3657df __elv_add_request +EXPORT_SYMBOL vmlinux 0x1d3d214e user_path_at_empty +EXPORT_SYMBOL vmlinux 0x1d54c56a pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x1d6b1280 eth_header_parse +EXPORT_SYMBOL vmlinux 0x1d6e398e pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x1d7aeb17 elv_add_request +EXPORT_SYMBOL vmlinux 0x1db7dc40 pgprot_kernel +EXPORT_SYMBOL vmlinux 0x1dc26826 __mutex_init +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dc6761b dquot_enable +EXPORT_SYMBOL vmlinux 0x1dd41cef sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1e041b4c _snd_ctl_add_slave +EXPORT_SYMBOL vmlinux 0x1e047854 warn_slowpath_fmt +EXPORT_SYMBOL vmlinux 0x1e092854 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e400a34 serio_rescan +EXPORT_SYMBOL vmlinux 0x1e4976d3 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x1e5840b7 vga_get +EXPORT_SYMBOL vmlinux 0x1e602c96 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x1e63bbcd simple_release_fs +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e978065 of_dev_put +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea7fd62 nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x1eae3556 tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0x1ec38bbd __scm_destroy +EXPORT_SYMBOL vmlinux 0x1ecbc3c1 sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x1ecc7b52 put_disk +EXPORT_SYMBOL vmlinux 0x1eeb848e __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x1f1a24c5 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x1f2b3c35 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x1f34cd6c security_inode_readlink +EXPORT_SYMBOL vmlinux 0x1f38aa06 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x1f471f3b misc_deregister +EXPORT_SYMBOL vmlinux 0x1f4aac7a dev_printk_emit +EXPORT_SYMBOL vmlinux 0x1f530054 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x1f665a2d dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x1f720d0d tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x1fa7c516 dup_iter +EXPORT_SYMBOL vmlinux 0x1fab5905 wait_for_completion +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fc3f137 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x1fca35f8 kernel_bind +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x1febceac inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x200ca532 devm_clk_get +EXPORT_SYMBOL vmlinux 0x20205f64 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0x2032cac7 param_set_bint +EXPORT_SYMBOL vmlinux 0x20421305 on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x205ec8de omap_dispc_register_isr +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x207a6e76 snd_pcm_new_internal +EXPORT_SYMBOL vmlinux 0x2094fb62 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20b00659 param_set_int +EXPORT_SYMBOL vmlinux 0x20b48453 sk_dst_check +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x20ee820b of_get_named_gpio_flags +EXPORT_SYMBOL vmlinux 0x20f6fcc0 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x2104400f ppp_channel_index +EXPORT_SYMBOL vmlinux 0x21110dbf mmioset +EXPORT_SYMBOL vmlinux 0x211331fa __divsi3 +EXPORT_SYMBOL vmlinux 0x2117dae7 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x2133aa2b ns_capable +EXPORT_SYMBOL vmlinux 0x213f72dd nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x214679c3 blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x21577a55 lookup_one_len +EXPORT_SYMBOL vmlinux 0x2157965d vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x215d352c blk_get_queue +EXPORT_SYMBOL vmlinux 0x216d759a mmiocpy +EXPORT_SYMBOL vmlinux 0x21847dff inet_accept +EXPORT_SYMBOL vmlinux 0x219410d7 submit_bio +EXPORT_SYMBOL vmlinux 0x21b35d61 from_kuid +EXPORT_SYMBOL vmlinux 0x21c601b4 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21e4ea1f alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x21f02cf2 bio_clone_bioset +EXPORT_SYMBOL vmlinux 0x21f7eb8f claim_fiq +EXPORT_SYMBOL vmlinux 0x2206434b vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x221fa2d0 mntput +EXPORT_SYMBOL vmlinux 0x2225441a filp_open +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x222fa684 lg_global_lock +EXPORT_SYMBOL vmlinux 0x2232a8a5 mempool_free +EXPORT_SYMBOL vmlinux 0x223cc898 omap_vrfb_max_height +EXPORT_SYMBOL vmlinux 0x224c7761 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x2252cb88 dss_mgr_disable +EXPORT_SYMBOL vmlinux 0x2256fafa div64_u64_rem +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x2277d558 mx53_revision +EXPORT_SYMBOL vmlinux 0x229c418d blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x22a72d81 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22ba0bf4 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x22c4563f __dquot_free_space +EXPORT_SYMBOL vmlinux 0x22ca5f4c pci_select_bars +EXPORT_SYMBOL vmlinux 0x22ce8ac0 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x22dfdd06 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x22e46d58 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x22e53f50 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0x22f6b423 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x22fc4f3a trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x22ff8d67 bdi_register_dev +EXPORT_SYMBOL vmlinux 0x230d2404 bioset_integrity_free +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x231ea417 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x232ff0a5 devm_gpiod_get +EXPORT_SYMBOL vmlinux 0x2373ddd8 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23a5fa0e xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x23aa49d3 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c1e442 xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x23d08724 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x23f5c468 param_get_invbool +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x243cd544 cap_mmap_file +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x246dda66 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x2480fad3 snd_ctl_free_one +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x2489700e page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL vmlinux 0x24a97e7e __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x24add95e pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x24e28859 nvm_get_blk +EXPORT_SYMBOL vmlinux 0x24f677b4 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x2527a087 vme_slave_set +EXPORT_SYMBOL vmlinux 0x252be3cf __lock_buffer +EXPORT_SYMBOL vmlinux 0x25305434 elevator_alloc +EXPORT_SYMBOL vmlinux 0x253e4a57 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x2545b70e vme_bus_type +EXPORT_SYMBOL vmlinux 0x255acb5f tegra_powergate_sequence_power_up +EXPORT_SYMBOL vmlinux 0x25630570 pci_bus_put +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x257782fa blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x2578a911 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x25a6e50b dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x25b1e72e fput +EXPORT_SYMBOL vmlinux 0x25c1a972 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x25c369cf kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x2642e451 clkdev_drop +EXPORT_SYMBOL vmlinux 0x2647f295 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux +EXPORT_SYMBOL vmlinux 0x2664b633 clk_register_clkdevs +EXPORT_SYMBOL vmlinux 0x26667376 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x26765ea4 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x26855ddb neigh_lookup +EXPORT_SYMBOL vmlinux 0x268d5988 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x269a00e9 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x26c2128c lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x26c29b3b dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x26c80382 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x26df7325 snd_card_free +EXPORT_SYMBOL vmlinux 0x26e18f10 snd_pcm_hw_constraint_step +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x26eb7756 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x2704c027 param_set_ulong +EXPORT_SYMBOL vmlinux 0x271fe233 vfs_link +EXPORT_SYMBOL vmlinux 0x2742ca9b bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x27437c87 snd_timer_start +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x2748e172 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x274d6e72 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x275ef902 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x27636858 block_read_full_page +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x279e587d uart_get_divisor +EXPORT_SYMBOL vmlinux 0x27a2d045 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c0e93b netlink_unicast +EXPORT_SYMBOL vmlinux 0x27cfd7b0 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x27d4b02c generic_getxattr +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x27e7dec0 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x27edcbff key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x27ef2be2 mtd_concat_destroy +EXPORT_SYMBOL vmlinux 0x28118cb6 __get_user_1 +EXPORT_SYMBOL vmlinux 0x28153a39 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x282e5b10 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x283212d0 input_open_device +EXPORT_SYMBOL vmlinux 0x28342b8c sg_miter_start +EXPORT_SYMBOL vmlinux 0x28353aa9 release_pages +EXPORT_SYMBOL vmlinux 0x283a9e52 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x283e266b key_type_keyring +EXPORT_SYMBOL vmlinux 0x284642fd proc_remove +EXPORT_SYMBOL vmlinux 0x286001b5 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x287b87fb nf_register_hook +EXPORT_SYMBOL vmlinux 0x28875d02 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x288d5e49 tegra_dfll_register +EXPORT_SYMBOL vmlinux 0x28a2bfd5 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28c69bb5 pci_request_regions +EXPORT_SYMBOL vmlinux 0x28d6861d __vmalloc +EXPORT_SYMBOL vmlinux 0x28f1c46a bio_endio +EXPORT_SYMBOL vmlinux 0x291325b8 register_sound_special +EXPORT_SYMBOL vmlinux 0x2926cd15 unlock_buffer +EXPORT_SYMBOL vmlinux 0x29380022 tegra_ahb_enable_smmu +EXPORT_SYMBOL vmlinux 0x29415b49 pagecache_write_end +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x29551e5b omap_dss_find_output +EXPORT_SYMBOL vmlinux 0x296bc320 blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x297060e0 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x29a56167 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x29e1b020 ida_simple_remove +EXPORT_SYMBOL vmlinux 0x29f209d1 phy_connect +EXPORT_SYMBOL vmlinux 0x29f63d05 of_device_register +EXPORT_SYMBOL vmlinux 0x29fdda53 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0x2a0575d1 mmc_release_host +EXPORT_SYMBOL vmlinux 0x2a079479 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x2a23c7e7 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a31b08d vme_irq_free +EXPORT_SYMBOL vmlinux 0x2a3aa678 _test_and_clear_bit +EXPORT_SYMBOL vmlinux 0x2a4041fd __napi_schedule +EXPORT_SYMBOL vmlinux 0x2a57cc9b dm_put_device +EXPORT_SYMBOL vmlinux 0x2a5afaef remove_arg_zero +EXPORT_SYMBOL vmlinux 0x2a5b560f of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0x2a716e56 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x2a7476ff fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x2a7cac99 pci_add_resource +EXPORT_SYMBOL vmlinux 0x2a8820f4 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp +EXPORT_SYMBOL vmlinux 0x2aa9af95 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x2ab387e9 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x2abf4b50 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x2abf5311 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2adbe7db mb_cache_shrink +EXPORT_SYMBOL vmlinux 0x2ae93cbe devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0x2af48197 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x2af4b9ca d_walk +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b12925d cpumask_next_and +EXPORT_SYMBOL vmlinux 0x2b19d9ff vga_client_register +EXPORT_SYMBOL vmlinux 0x2b20bd12 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b4e956e mempool_create +EXPORT_SYMBOL vmlinux 0x2b5c83e5 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0x2b5c8b86 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2bd25af8 alloc_file +EXPORT_SYMBOL vmlinux 0x2be0f12d dql_completed +EXPORT_SYMBOL vmlinux 0x2beb31ba snd_timer_pause +EXPORT_SYMBOL vmlinux 0x2bf407aa of_phy_connect +EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c292f38 security_path_unlink +EXPORT_SYMBOL vmlinux 0x2c335e82 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0x2c3cb0be param_set_short +EXPORT_SYMBOL vmlinux 0x2c3d6054 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x2c3e9ee7 __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x2c4c4e0f sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x2c5b59d2 vme_irq_generate +EXPORT_SYMBOL vmlinux 0x2c709f2f snd_pcm_open_substream +EXPORT_SYMBOL vmlinux 0x2c79fc4e vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x2c7c8e9a pcibios_min_mem +EXPORT_SYMBOL vmlinux 0x2c81ec75 __irq_regs +EXPORT_SYMBOL vmlinux 0x2c95f91a vfs_create +EXPORT_SYMBOL vmlinux 0x2c97642b pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0x2c988955 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x2caf61ff tcp_splice_read +EXPORT_SYMBOL vmlinux 0x2cb98afa dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x2cc9557e eth_header +EXPORT_SYMBOL vmlinux 0x2cefb27e snd_ctl_notify +EXPORT_SYMBOL vmlinux 0x2cf11d63 set_blocksize +EXPORT_SYMBOL vmlinux 0x2d080f29 dev_printk +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d3e3837 dquot_file_open +EXPORT_SYMBOL vmlinux 0x2d4647f9 vfs_getxattr_alloc +EXPORT_SYMBOL vmlinux 0x2d49e707 noop_qdisc +EXPORT_SYMBOL vmlinux 0x2d558cbd devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0x2d6004db tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x2d6507b5 _find_next_zero_bit_le +EXPORT_SYMBOL vmlinux 0x2d770676 dispc_mgr_go +EXPORT_SYMBOL vmlinux 0x2d971d7e snd_timer_stop +EXPORT_SYMBOL vmlinux 0x2dd6e6f4 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink +EXPORT_SYMBOL vmlinux 0x2dda372b pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x2de4b45e phy_device_remove +EXPORT_SYMBOL vmlinux 0x2e01daa3 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x2e022666 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x2e056ab2 would_dump +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e40eb0a param_ops_ullong +EXPORT_SYMBOL vmlinux 0x2e5810c6 __aeabi_unwind_cpp_pr1 +EXPORT_SYMBOL vmlinux 0x2e5ac7e7 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x2e83af74 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x2e94a5b2 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x2e974e90 unlock_page +EXPORT_SYMBOL vmlinux 0x2ea1e081 blk_mq_all_tag_busy_iter +EXPORT_SYMBOL vmlinux 0x2eaa47ba blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0x2ebae93f devm_free_irq +EXPORT_SYMBOL vmlinux 0x2ebc8675 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0x2ec4c3fe bmap +EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x2ecd441b fence_free +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2ef744f7 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f087d1a snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL vmlinux 0x2f1cdb65 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x2f1d67b4 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x2f24d359 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x2f3ea1c8 devm_gpio_request +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f4ce050 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x2f5f2a57 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x2f6a2f4f mmc_align_data_size +EXPORT_SYMBOL vmlinux 0x2f97749b kobject_put +EXPORT_SYMBOL vmlinux 0x2fa70b6f param_ops_bool +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2ffc62c5 snd_ctl_find_id +EXPORT_SYMBOL vmlinux 0x30127f47 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL vmlinux 0x301ab7f8 md_done_sync +EXPORT_SYMBOL vmlinux 0x301feb55 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x302e8dbf drop_nlink +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x3033f555 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x303fed20 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x3046c8e7 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x30805c96 proc_symlink +EXPORT_SYMBOL vmlinux 0x3082a0b3 dss_feat_get_supported_color_modes +EXPORT_SYMBOL vmlinux 0x308aad56 omap_vrfb_min_phys_size +EXPORT_SYMBOL vmlinux 0x309654a0 cfb_fillrect +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x3098b52f netif_rx_ni +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30a9122d __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x30c45cc3 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x30c4cc3c of_get_address +EXPORT_SYMBOL vmlinux 0x30ce346b mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x30ce80e0 tty_register_device +EXPORT_SYMBOL vmlinux 0x30cffaf6 tcf_hash_create +EXPORT_SYMBOL vmlinux 0x30de4686 ppp_input_error +EXPORT_SYMBOL vmlinux 0x30df6c6a scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x30e3241a snd_pci_quirk_lookup +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30e8d074 blk_init_queue +EXPORT_SYMBOL vmlinux 0x30ffad99 dev_mc_del +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310917fe sort +EXPORT_SYMBOL vmlinux 0x310e2013 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL vmlinux 0x31380354 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x313bf7c6 __skb_checksum +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x315c2ae8 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x31749656 netif_rx +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x318799fa page_follow_link_light +EXPORT_SYMBOL vmlinux 0x318db920 qdisc_reset +EXPORT_SYMBOL vmlinux 0x3191f109 __krealloc +EXPORT_SYMBOL vmlinux 0x31a0caa9 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available +EXPORT_SYMBOL vmlinux 0x31aaf14f scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x31b31f5c csum_partial_copy_nocheck +EXPORT_SYMBOL vmlinux 0x31de7cf9 sock_no_connect +EXPORT_SYMBOL vmlinux 0x31f0bb78 __kmap_atomic_idx +EXPORT_SYMBOL vmlinux 0x31f6ad14 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x32105c9b netdev_printk +EXPORT_SYMBOL vmlinux 0x32369c42 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x3243b574 acl_by_type +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x3273b3d0 snd_device_register +EXPORT_SYMBOL vmlinux 0x3276d36c mem_cgroup_begin_page_stat +EXPORT_SYMBOL vmlinux 0x327e6556 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy +EXPORT_SYMBOL vmlinux 0x32907b91 idr_remove +EXPORT_SYMBOL vmlinux 0x329d62b9 __vfs_write +EXPORT_SYMBOL vmlinux 0x32a12d8d mmc_flush_cache +EXPORT_SYMBOL vmlinux 0x32cfd42b skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0x32ea8769 snd_info_create_card_entry +EXPORT_SYMBOL vmlinux 0x3316845e idr_get_next +EXPORT_SYMBOL vmlinux 0x3317e709 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x335401cf phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x3363b490 devm_gpiod_put +EXPORT_SYMBOL vmlinux 0x3365c2d5 ping_prot +EXPORT_SYMBOL vmlinux 0x3395b5e8 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33f32071 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x3413d539 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x3413f500 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x341dbfa3 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x3440e3ad napi_disable +EXPORT_SYMBOL vmlinux 0x344b7739 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x346f9578 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x34711a9e pci_restore_state +EXPORT_SYMBOL vmlinux 0x3478d323 pci_choose_state +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x349d8218 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x34ac4674 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x34dc71f5 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x34dee224 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x34e4710a mmc_remove_host +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34f6ed20 sget_userns +EXPORT_SYMBOL vmlinux 0x3507a132 _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0x35163cd4 bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x3517ab90 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x3529fc41 swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x353ca4f1 skb_copy +EXPORT_SYMBOL vmlinux 0x353de98f cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x353e3fa5 __get_user_4 +EXPORT_SYMBOL vmlinux 0x3546d038 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x356b0f85 nand_scan_ident +EXPORT_SYMBOL vmlinux 0x356facef bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x35826289 pipe_unlock +EXPORT_SYMBOL vmlinux 0x3586f745 inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0x359a5c56 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x35a22af7 bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35c2a5a0 phy_stop +EXPORT_SYMBOL vmlinux 0x35c7a871 nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0x35f31c77 audit_log +EXPORT_SYMBOL vmlinux 0x35fbd6a1 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x3612c10f tmio_core_mmc_enable +EXPORT_SYMBOL vmlinux 0x36149dd7 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x36216902 mmc_erase +EXPORT_SYMBOL vmlinux 0x3623e2ba cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x362da24c pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x3649e016 vga_put +EXPORT_SYMBOL vmlinux 0x364ee807 vfs_rename +EXPORT_SYMBOL vmlinux 0x366a4b27 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x367ba856 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x36889610 block_write_begin +EXPORT_SYMBOL vmlinux 0x36994960 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x36a9e764 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x36bb7fc0 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36cf26b4 kernel_listen +EXPORT_SYMBOL vmlinux 0x36dcfefc uart_update_timeout +EXPORT_SYMBOL vmlinux 0x36fdda67 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x370e0511 wake_up_process +EXPORT_SYMBOL vmlinux 0x372400fd snd_pcm_stop +EXPORT_SYMBOL vmlinux 0x3741e173 ata_link_printk +EXPORT_SYMBOL vmlinux 0x37448371 save_mount_options +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3758a50f cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x3775fa1b ps2_drain +EXPORT_SYMBOL vmlinux 0x37768f05 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x3779785c clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x37846c91 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL vmlinux 0x3798eab9 vfs_whiteout +EXPORT_SYMBOL vmlinux 0x379dee5f trace_print_symbols_seq_u64 +EXPORT_SYMBOL vmlinux 0x37a6c305 d_add_ci +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37b8f456 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37df31a2 inet6_protos +EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 +EXPORT_SYMBOL vmlinux 0x37f24acc tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x380666d2 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x380ce0e0 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x38355142 soft_cursor +EXPORT_SYMBOL vmlinux 0x38379ae0 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x385605b0 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x3893549e commit_creds +EXPORT_SYMBOL vmlinux 0x389acf0c gpmc_configure +EXPORT_SYMBOL vmlinux 0x389ecf9e __bswapdi2 +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38d3b5ee netlink_capable +EXPORT_SYMBOL vmlinux 0x38fc89e1 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x390beb83 blk_start_queue_async +EXPORT_SYMBOL vmlinux 0x390f51d4 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x3910a612 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x3924dd56 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x39582651 __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL vmlinux 0x39730d06 atomic_io_modify +EXPORT_SYMBOL vmlinux 0x397f2e02 pci_get_subsys +EXPORT_SYMBOL vmlinux 0x39809f76 phy_find_first +EXPORT_SYMBOL vmlinux 0x3993ed4a security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399de6b5 blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0x39a33502 snd_seq_root +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39beead1 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL vmlinux 0x39cd60f8 poll_initwait +EXPORT_SYMBOL vmlinux 0x39e61b4d mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x39ef68fe d_alloc_name +EXPORT_SYMBOL vmlinux 0x3a09332a seq_release +EXPORT_SYMBOL vmlinux 0x3a1ac054 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x3a2044ec do_SAK +EXPORT_SYMBOL vmlinux 0x3a430c38 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x3a56147d xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x3a638808 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x3a89a5e9 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3abb26b0 ioremap_wc +EXPORT_SYMBOL vmlinux 0x3ac60bf2 __seq_open_private +EXPORT_SYMBOL vmlinux 0x3ad254bc xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x3aea53b1 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x3af378de tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x3afee99b scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x3b090e81 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x3b2c2015 led_blink_set_oneshot +EXPORT_SYMBOL vmlinux 0x3b632681 blkdev_get +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b708b01 snd_info_free_entry +EXPORT_SYMBOL vmlinux 0x3b891a71 snd_ctl_remove_id +EXPORT_SYMBOL vmlinux 0x3b91f3af snd_free_pages +EXPORT_SYMBOL vmlinux 0x3b9545f0 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x3bb116f7 lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x3bbc56e1 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x3bbf46ea vga_base +EXPORT_SYMBOL vmlinux 0x3bc24eeb filemap_flush +EXPORT_SYMBOL vmlinux 0x3bdbca8a fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0x3bfe0bce tcp_release_cb +EXPORT_SYMBOL vmlinux 0x3c1837e6 simple_open +EXPORT_SYMBOL vmlinux 0x3c3462c0 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x3c3b226c zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x3c3e3f17 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x3c3f528b blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c4a2e9a generic_file_mmap +EXPORT_SYMBOL vmlinux 0x3c6c8965 mount_ns +EXPORT_SYMBOL vmlinux 0x3c77663e devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x3c7a2ff4 skb_trim +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c83f770 generic_listxattr +EXPORT_SYMBOL vmlinux 0x3caabeda xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x3cb9c869 ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3ced9ce6 poll_freewait +EXPORT_SYMBOL vmlinux 0x3cfa969a proc_douintvec +EXPORT_SYMBOL vmlinux 0x3d10b96d padata_alloc +EXPORT_SYMBOL vmlinux 0x3d30409d iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0x3d3c540f elf_hwcap +EXPORT_SYMBOL vmlinux 0x3d45d38c scsi_host_put +EXPORT_SYMBOL vmlinux 0x3d4f8e47 arp_send +EXPORT_SYMBOL vmlinux 0x3d64d39a of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0x3d8657c5 get_acl +EXPORT_SYMBOL vmlinux 0x3da526aa generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x3db7fc1e dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x3db9c299 dquot_initialize +EXPORT_SYMBOL vmlinux 0x3dc58977 sock_edemux +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3dff20af nf_unregister_hook +EXPORT_SYMBOL vmlinux 0x3e2b7a51 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0x3e2c93df dmam_release_declared_memory +EXPORT_SYMBOL vmlinux 0x3e43714c nobh_writepage +EXPORT_SYMBOL vmlinux 0x3e56562f inet_sendmsg +EXPORT_SYMBOL vmlinux 0x3e7b70a7 may_umount +EXPORT_SYMBOL vmlinux 0x3e884f4b vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x3e8b086c kunmap +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3ea69cf2 skb_clone +EXPORT_SYMBOL vmlinux 0x3ee152ca kdb_current_task +EXPORT_SYMBOL vmlinux 0x3ee593b2 fb_find_mode +EXPORT_SYMBOL vmlinux 0x3ef1b496 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x3ef3537b snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL vmlinux 0x3ef8bf96 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x3f1b6bf0 single_release +EXPORT_SYMBOL vmlinux 0x3f29b3b9 ip_defrag +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f46bba6 dss_mgr_disconnect +EXPORT_SYMBOL vmlinux 0x3f4da97b fb_class +EXPORT_SYMBOL vmlinux 0x3f5b67d5 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x3f616ce2 queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x3f7ccf82 mpage_writepage +EXPORT_SYMBOL vmlinux 0x3f7dbc5c textsearch_register +EXPORT_SYMBOL vmlinux 0x3f800449 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x3f995d94 d_path +EXPORT_SYMBOL vmlinux 0x3fa6f225 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x3fab3ca9 register_sysctl_table +EXPORT_SYMBOL vmlinux 0x3facd7cd blk_sync_queue +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev +EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x407136b1 __put_user_8 +EXPORT_SYMBOL vmlinux 0x407a3275 omap_start_dma +EXPORT_SYMBOL vmlinux 0x4080315f gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0x4085c17c jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a2d1dd dm_table_get_size +EXPORT_SYMBOL vmlinux 0x40a7c8c9 netdev_err +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40ab31d1 bio_clone_fast +EXPORT_SYMBOL vmlinux 0x40ad3abc neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x40b013bc fs_bio_set +EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0x40c5edbf max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40cbac39 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40ed524a _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x40ef5d32 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x40f07981 __ashldi3 +EXPORT_SYMBOL vmlinux 0x40f19e30 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x411acc07 make_bad_inode +EXPORT_SYMBOL vmlinux 0x4134b50a tty_unlock +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x4152b0f5 vc_resize +EXPORT_SYMBOL vmlinux 0x41579469 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x415d192c submit_bio_wait +EXPORT_SYMBOL vmlinux 0x41690404 pneigh_lookup +EXPORT_SYMBOL vmlinux 0x4171072f from_kuid_munged +EXPORT_SYMBOL vmlinux 0x417ced06 path_put +EXPORT_SYMBOL vmlinux 0x41804208 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x4194f197 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x41ae0569 generic_removexattr +EXPORT_SYMBOL vmlinux 0x41bddf6e blk_finish_request +EXPORT_SYMBOL vmlinux 0x41c00f35 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x41c3a8be kern_unmount +EXPORT_SYMBOL vmlinux 0x41ce0215 lwtunnel_output +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x421e5f63 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x42356932 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x423d81ed ida_pre_get +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x4258a0f7 ptp_clock_index +EXPORT_SYMBOL vmlinux 0x425c74d5 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x4279b749 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x427c4f7e netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x42851bb7 touch_atime +EXPORT_SYMBOL vmlinux 0x428c5b86 __register_nls +EXPORT_SYMBOL vmlinux 0x429376e8 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x4298b775 v7_flush_kern_cache_all +EXPORT_SYMBOL vmlinux 0x429be6d3 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x42b55720 md_reload_sb +EXPORT_SYMBOL vmlinux 0x42d4bb99 __register_binfmt +EXPORT_SYMBOL vmlinux 0x42dd1f9b km_state_expired +EXPORT_SYMBOL vmlinux 0x42f295ab read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x4308f67f mmc_can_erase +EXPORT_SYMBOL vmlinux 0x4319dc4f param_set_uint +EXPORT_SYMBOL vmlinux 0x4326ae49 fb_pan_display +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x435769dc pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x437e2524 inet_shutdown +EXPORT_SYMBOL vmlinux 0x43811663 amba_driver_register +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x4386f3ee d_instantiate_unique +EXPORT_SYMBOL vmlinux 0x43a3962a of_cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0x43aaa73a __getblk_gfp +EXPORT_SYMBOL vmlinux 0x43d2b492 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x43e08d45 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x43f90c7a __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x441ed159 omap_get_dma_src_pos +EXPORT_SYMBOL vmlinux 0x442495c9 tmio_core_mmc_resume +EXPORT_SYMBOL vmlinux 0x442a45d7 tso_start +EXPORT_SYMBOL vmlinux 0x442ea3ef security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x443c67db mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0x443dd5e3 update_region +EXPORT_SYMBOL vmlinux 0x44438b96 hex2bin +EXPORT_SYMBOL vmlinux 0x444569f2 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x4454786e blk_peek_request +EXPORT_SYMBOL vmlinux 0x445d5eac __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x44643b93 __aeabi_lmul +EXPORT_SYMBOL vmlinux 0x446c90ed twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x4477d4d4 inet6_add_offload +EXPORT_SYMBOL vmlinux 0x447cec0c __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x44816200 snd_ctl_remove +EXPORT_SYMBOL vmlinux 0x44af70c9 set_cached_acl +EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x44cd3212 truncate_setsize +EXPORT_SYMBOL vmlinux 0x44da5d0f __csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x44dd3d8d completion_done +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44f33917 mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0x44f34095 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x450672f5 inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0x45199775 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x452a979b vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x457968ad sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x45846b52 i2c_use_client +EXPORT_SYMBOL vmlinux 0x4596f759 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x45aea035 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0x45bda0d5 system_serial_low +EXPORT_SYMBOL vmlinux 0x45ca69f1 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x45ce2ecb dev_addr_flush +EXPORT_SYMBOL vmlinux 0x45d40f1b uart_match_port +EXPORT_SYMBOL vmlinux 0x45d81a3d generic_setlease +EXPORT_SYMBOL vmlinux 0x461ff521 account_page_redirty +EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy +EXPORT_SYMBOL vmlinux 0x4656155c __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x465757c3 cpu_present_mask +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x468ff47d sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x46ca5f9f tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0x46cf73a6 sock_register +EXPORT_SYMBOL vmlinux 0x46d3b28c __div0 +EXPORT_SYMBOL vmlinux 0x46d76b71 inet_frags_init +EXPORT_SYMBOL vmlinux 0x46f2af46 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x46ff761d dev_add_pack +EXPORT_SYMBOL vmlinux 0x470f2481 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x471b5bb0 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x473e5e21 rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x4747b5f6 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x476b1969 mutex_trylock +EXPORT_SYMBOL vmlinux 0x478df0cb skb_queue_purge +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x47acf829 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0x47bfe63e __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x47c11c8a __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x47c1d6f6 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x47d0d1a0 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x47d0f585 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x47dff5a6 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x47e70229 v7_flush_user_cache_range +EXPORT_SYMBOL vmlinux 0x47f757de elf_platform +EXPORT_SYMBOL vmlinux 0x47f99322 snd_timer_global_free +EXPORT_SYMBOL vmlinux 0x480f2f6b pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x481ce6ce cpu_active_mask +EXPORT_SYMBOL vmlinux 0x485938c1 __register_chrdev +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x485cafae mutex_unlock +EXPORT_SYMBOL vmlinux 0x485e933c scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x48601988 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0x4875a19c pci_dev_put +EXPORT_SYMBOL vmlinux 0x488d2a90 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x488e25dc unregister_md_personality +EXPORT_SYMBOL vmlinux 0x48a5b067 __machine_arch_type +EXPORT_SYMBOL vmlinux 0x48b79cbf elv_register_queue +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48ba4df8 __serio_register_port +EXPORT_SYMBOL vmlinux 0x48c8670f dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x48e658df dss_mgr_set_timings +EXPORT_SYMBOL vmlinux 0x48f2eaaf cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x490a0804 dput +EXPORT_SYMBOL vmlinux 0x490b99ac seq_pad +EXPORT_SYMBOL vmlinux 0x49178719 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x4942a81d iget5_locked +EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x4963bd0b mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0x4967796e dst_destroy +EXPORT_SYMBOL vmlinux 0x4980a627 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x498c48b7 tty_do_resize +EXPORT_SYMBOL vmlinux 0x49986deb request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x499cb58c prepare_to_wait +EXPORT_SYMBOL vmlinux 0x499f59df kmap_to_page +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49b77ed2 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x49b84ec8 bio_map_kern +EXPORT_SYMBOL vmlinux 0x49be09e7 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x49bf213d add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x49c6545f __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x49ca43fc i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x49ebacbd _clear_bit +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x4a009a05 get_task_exe_file +EXPORT_SYMBOL vmlinux 0x4a0eeb09 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x4a222e61 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x4a2cc05e netdev_emerg +EXPORT_SYMBOL vmlinux 0x4a39e5a1 omap_set_dma_src_params +EXPORT_SYMBOL vmlinux 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL vmlinux 0x4a5565c4 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x4a57b339 wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x4a6d35d8 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x4a766656 skb_insert +EXPORT_SYMBOL vmlinux 0x4a7b595d mmc_of_parse +EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk +EXPORT_SYMBOL vmlinux 0x4ac11307 genphy_resume +EXPORT_SYMBOL vmlinux 0x4ac58331 unregister_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0x4ae2bd61 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x4aea2bb8 security_path_rmdir +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x4b25a208 sock_create_kern +EXPORT_SYMBOL vmlinux 0x4b3eea3a arp_create +EXPORT_SYMBOL vmlinux 0x4b469b36 amba_release_regions +EXPORT_SYMBOL vmlinux 0x4b570b7b snd_pcm_lib_read +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b666f52 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x4b77ca17 free_user_ns +EXPORT_SYMBOL vmlinux 0x4b78933c qcom_scm_set_cold_boot_addr +EXPORT_SYMBOL vmlinux 0x4b8b242f kernel_getsockname +EXPORT_SYMBOL vmlinux 0x4b8f189e mark_page_accessed +EXPORT_SYMBOL vmlinux 0x4b9642ee filemap_fault +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bafd021 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x4bce0f36 gen_pool_create +EXPORT_SYMBOL vmlinux 0x4bcf03a4 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x4bd2df55 ll_rw_block +EXPORT_SYMBOL vmlinux 0x4be7fb63 up +EXPORT_SYMBOL vmlinux 0x4be85a03 memweight +EXPORT_SYMBOL vmlinux 0x4c1abade tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x4c2165fa inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x4c233a44 _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0x4c24e17e genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x4c28d297 tc6393xb_lcd_set_power +EXPORT_SYMBOL vmlinux 0x4c29dcbf cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr +EXPORT_SYMBOL vmlinux 0x4c33081d omapdss_compat_uninit +EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf +EXPORT_SYMBOL vmlinux 0x4c3492a7 of_get_parent +EXPORT_SYMBOL vmlinux 0x4c3d0c0c kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x4c42467d inode_set_bytes +EXPORT_SYMBOL vmlinux 0x4c5b0273 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x4c5d0f16 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x4c5fc58c _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x4c70a59a devm_memremap +EXPORT_SYMBOL vmlinux 0x4c80c574 __dst_free +EXPORT_SYMBOL vmlinux 0x4c86184b remove_wait_queue +EXPORT_SYMBOL vmlinux 0x4c982bfb mmc_cleanup_queue +EXPORT_SYMBOL vmlinux 0x4ca03bd3 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x4cbc6ed1 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x4cc2854d tegra114_clock_assert_dfll_dvco_reset +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4d076f51 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page +EXPORT_SYMBOL vmlinux 0x4d146d68 vfs_writef +EXPORT_SYMBOL vmlinux 0x4d1f9bef vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x4d26f927 __get_user_pages +EXPORT_SYMBOL vmlinux 0x4d3ac3b6 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask +EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d525b05 mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0x4d5e876f seq_read +EXPORT_SYMBOL vmlinux 0x4d7903a8 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x4d818fdd pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x4d83b295 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x4d8d82d2 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4d9b6d35 snd_pcm_format_size +EXPORT_SYMBOL vmlinux 0x4dd71d09 bh_submit_read +EXPORT_SYMBOL vmlinux 0x4dd81e51 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4dec6038 memscan +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4e0fe78e have_submounts +EXPORT_SYMBOL vmlinux 0x4e1562f1 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x4e2c6d6d __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e506013 omap_dma_link_lch +EXPORT_SYMBOL vmlinux 0x4e645238 uart_resume_port +EXPORT_SYMBOL vmlinux 0x4e66cbf6 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6db866 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e70ff08 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x4e7fae86 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x4e932a0d md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x4ea0da4a ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x4ea8959b __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x4ebf44ec free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x4ec5dab1 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x4ee557f1 snd_pcm_new_stream +EXPORT_SYMBOL vmlinux 0x4ef2f5cf d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0x4f14ef5a rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x4f17a826 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x4f6041ef dns_query +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f6d9ca5 devm_gpio_free +EXPORT_SYMBOL vmlinux 0x4f74e9cc md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x4f77a21d register_shrinker +EXPORT_SYMBOL vmlinux 0x4f7d0150 skb_pull +EXPORT_SYMBOL vmlinux 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL vmlinux 0x4f89c9de gpmc_cs_free +EXPORT_SYMBOL vmlinux 0x4f916aaf fb_set_var +EXPORT_SYMBOL vmlinux 0x4f9eb0a2 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x4fa6fc8c key_task_permission +EXPORT_SYMBOL vmlinux 0x4fa9837e tcp_conn_request +EXPORT_SYMBOL vmlinux 0x4fba6c89 udp_proc_register +EXPORT_SYMBOL vmlinux 0x4fe5d55d pci_map_rom +EXPORT_SYMBOL vmlinux 0x4fe95c0d crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x4ff5526c iov_iter_advance +EXPORT_SYMBOL vmlinux 0x4ffc0157 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x4ffc7860 __secpath_destroy +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x50321cac tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL vmlinux 0x503dea45 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x5041aeba simple_nosetlease +EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x506c326d netdev_state_change +EXPORT_SYMBOL vmlinux 0x5079d1d4 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x509784c3 seq_open +EXPORT_SYMBOL vmlinux 0x509817cf vprintk_emit +EXPORT_SYMBOL vmlinux 0x50b134bf iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x50b2947d dev_uc_init +EXPORT_SYMBOL vmlinux 0x50b66bcb radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x50bca9a1 bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x50d3551b netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x50d5612e dispc_mgr_get_sync_lost_irq +EXPORT_SYMBOL vmlinux 0x50d669fc scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x50fdcf54 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x511746c1 dump_fpu +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x51277349 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x5132b832 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x514cc273 arm_copy_from_user +EXPORT_SYMBOL vmlinux 0x514db909 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x51c6db18 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x51d559d1 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid +EXPORT_SYMBOL vmlinux 0x51e868f1 d_drop +EXPORT_SYMBOL vmlinux 0x51e9de1c inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup +EXPORT_SYMBOL vmlinux 0x51f4a5c9 of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x51f9fcd5 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x52165f97 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x522a3a22 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x522dbc03 snd_card_new +EXPORT_SYMBOL vmlinux 0x522edb3b n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x523b1351 force_sig +EXPORT_SYMBOL vmlinux 0x52569df4 led_set_brightness +EXPORT_SYMBOL vmlinux 0x5266c716 generic_write_checks +EXPORT_SYMBOL vmlinux 0x5272535e inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x5279bd7e dm_io +EXPORT_SYMBOL vmlinux 0x5284728f clear_inode +EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x528d0c14 idr_init +EXPORT_SYMBOL vmlinux 0x5290328e scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x529a684e __frontswap_test +EXPORT_SYMBOL vmlinux 0x52aa2aa5 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x52af562a __crc32c_le +EXPORT_SYMBOL vmlinux 0x52bb841c atomic_io_modify_relaxed +EXPORT_SYMBOL vmlinux 0x52c0d9e6 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL vmlinux 0x52e9f41e dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x52f81007 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x533052a1 set_user_nice +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x534b408d xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x53776096 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x53795ae8 blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0x53957d60 input_grab_device +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x541cfd31 registered_fb +EXPORT_SYMBOL vmlinux 0x54301f48 xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x54326658 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x54348868 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x54597c70 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x547077ec __wake_up_bit +EXPORT_SYMBOL vmlinux 0x547ce898 dispc_read_irqenable +EXPORT_SYMBOL vmlinux 0x54812610 __invalidate_device +EXPORT_SYMBOL vmlinux 0x54840f36 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x548dc7b2 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54b22e1a xattr_full_name +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54d2c6a6 flow_cache_init +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54f21487 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x54f6830a omapdss_get_default_display_name +EXPORT_SYMBOL vmlinux 0x54fc36e7 seq_lseek +EXPORT_SYMBOL vmlinux 0x55070dce vme_lm_request +EXPORT_SYMBOL vmlinux 0x5508cc69 clear_nlink +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x55502815 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x555467c8 iterate_fd +EXPORT_SYMBOL vmlinux 0x5567198b pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x556abe61 padata_do_serial +EXPORT_SYMBOL vmlinux 0x557a1f5e neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x55b0854c vfs_mknod +EXPORT_SYMBOL vmlinux 0x55c6b231 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55dff2e6 do_splice_from +EXPORT_SYMBOL vmlinux 0x55e1add9 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x5628e231 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x562b6949 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x565aeb39 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x565d85cb neigh_destroy +EXPORT_SYMBOL vmlinux 0x567cb5ca gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x5689afe7 dispc_ovl_enable +EXPORT_SYMBOL vmlinux 0x568d6e64 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x56a026bb mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x56a25d0a param_set_ushort +EXPORT_SYMBOL vmlinux 0x56a76805 fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0x56b7fe8a xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x56bc2f15 dispc_ovl_set_channel_out +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56e856cb skb_queue_head +EXPORT_SYMBOL vmlinux 0x56efb124 page_readlink +EXPORT_SYMBOL vmlinux 0x56f1d895 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x570de61c tty_port_close_end +EXPORT_SYMBOL vmlinux 0x5726b9e5 path_is_under +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x5748b16d blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x575d6376 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x577184fd path_nosuid +EXPORT_SYMBOL vmlinux 0x57a6c2d5 unlock_rename +EXPORT_SYMBOL vmlinux 0x57b157e0 of_node_get +EXPORT_SYMBOL vmlinux 0x57bc169b dev_close +EXPORT_SYMBOL vmlinux 0x57c18ed8 __inode_permission +EXPORT_SYMBOL vmlinux 0x57c51a6b blk_stack_limits +EXPORT_SYMBOL vmlinux 0x57d408b9 dev_err +EXPORT_SYMBOL vmlinux 0x57e2bfee uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x57f7add4 skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x5804e127 scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0x580a38c2 generic_file_open +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x58227d9a vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x5826a269 f_setown +EXPORT_SYMBOL vmlinux 0x5827e12a shdma_init +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x58516557 omap_set_dma_src_data_pack +EXPORT_SYMBOL vmlinux 0x5865468f ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x58769651 param_get_charp +EXPORT_SYMBOL vmlinux 0x58990bd0 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x58a0fdd2 snd_pcm_lib_free_pages +EXPORT_SYMBOL vmlinux 0x58ae28f9 param_ops_string +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58c277ff cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x58d4be15 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x58d633c7 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x5905b3cb inet_csk_accept +EXPORT_SYMBOL vmlinux 0x5905d860 vm_stat +EXPORT_SYMBOL vmlinux 0x5919ef1e __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x591a1b6b elv_rb_add +EXPORT_SYMBOL vmlinux 0x5942e45b kfree_skb +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x594e1317 __modsi3 +EXPORT_SYMBOL vmlinux 0x594ffd4f revert_creds +EXPORT_SYMBOL vmlinux 0x59569f3f pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x598542b2 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x598cd828 udp_table +EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x598fc5ad netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x59a17bfc tegra114_clock_tune_cpu_trimmers_high +EXPORT_SYMBOL vmlinux 0x59a567e9 mmc_power_save_host +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59b59e45 dev_set_group +EXPORT_SYMBOL vmlinux 0x59c42b98 locks_free_lock +EXPORT_SYMBOL vmlinux 0x59d29dab v7_flush_kern_dcache_area +EXPORT_SYMBOL vmlinux 0x59d8223a ioport_resource +EXPORT_SYMBOL vmlinux 0x59db12b2 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x59dce247 sock_wfree +EXPORT_SYMBOL vmlinux 0x59e5070d __do_div64 +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a0dda57 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x5a5d8a08 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x5a6c74c1 swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x5a71d0a5 devm_release_resource +EXPORT_SYMBOL vmlinux 0x5a822a4d inc_nlink +EXPORT_SYMBOL vmlinux 0x5a9571ea down_read +EXPORT_SYMBOL vmlinux 0x5aa0a327 tso_build_data +EXPORT_SYMBOL vmlinux 0x5ab166cc md_unregister_thread +EXPORT_SYMBOL vmlinux 0x5abf01cf generic_start_io_acct +EXPORT_SYMBOL vmlinux 0x5ae5be44 lg_lock_init +EXPORT_SYMBOL vmlinux 0x5afe6427 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b025e51 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x5b04be5a disable_fiq +EXPORT_SYMBOL vmlinux 0x5b0ad32b zpool_register_driver +EXPORT_SYMBOL vmlinux 0x5b0c560e neigh_event_ns +EXPORT_SYMBOL vmlinux 0x5b14a80b blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem +EXPORT_SYMBOL vmlinux 0x5b39c3c8 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x5b4f887b mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x5b5e799a pci_set_power_state +EXPORT_SYMBOL vmlinux 0x5ba93f6e simple_rmdir +EXPORT_SYMBOL vmlinux 0x5bb9daec __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0x5bd5ed4f param_ops_uint +EXPORT_SYMBOL vmlinux 0x5bea4d6d blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x5bf912f1 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x5c22ac15 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x5c265cba sg_init_one +EXPORT_SYMBOL vmlinux 0x5c2d8378 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x5c45bea6 __find_get_block +EXPORT_SYMBOL vmlinux 0x5c76a7a9 kmap +EXPORT_SYMBOL vmlinux 0x5c81c4a3 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x5c9284a0 processor_id +EXPORT_SYMBOL vmlinux 0x5c966717 sock_i_uid +EXPORT_SYMBOL vmlinux 0x5cad151b proto_register +EXPORT_SYMBOL vmlinux 0x5cb238c0 sock_kfree_s +EXPORT_SYMBOL vmlinux 0x5cc1f228 scsi_print_command +EXPORT_SYMBOL vmlinux 0x5cc78e61 __bforget +EXPORT_SYMBOL vmlinux 0x5cdcf53a t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x5ce8983e ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x5cedfefc pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x5cee9652 page_waitqueue +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5d240936 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d657fcd pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x5d6e1496 tegra_dfll_runtime_suspend +EXPORT_SYMBOL vmlinux 0x5d812fc5 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x5d93e602 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x5da8f67a generic_permission +EXPORT_SYMBOL vmlinux 0x5daa6a13 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL vmlinux 0x5dbd0cdd snd_pcm_hw_param_first +EXPORT_SYMBOL vmlinux 0x5dce60d2 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x5dcf6341 outer_cache +EXPORT_SYMBOL vmlinux 0x5dd08e21 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x5dd60b32 update_devfreq +EXPORT_SYMBOL vmlinux 0x5e0f0dc9 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x5e1f67b2 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x5e1fcf28 mmc_start_req +EXPORT_SYMBOL vmlinux 0x5e2a6f5f nand_unlock +EXPORT_SYMBOL vmlinux 0x5e372f28 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x5e38e581 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x5e3b6db0 vfs_readv +EXPORT_SYMBOL vmlinux 0x5e48b158 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x5e76f2b6 phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e9c1fbd crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x5e9f431c __check_sticky +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ebbc33c phy_init_eee +EXPORT_SYMBOL vmlinux 0x5ec09d58 finish_open +EXPORT_SYMBOL vmlinux 0x5ec50fb1 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ef74115 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x5effdea3 nvm_end_io +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f065de7 register_cdrom +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f199d55 omapdss_unregister_output +EXPORT_SYMBOL vmlinux 0x5f27323c _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x5f28272a neigh_connected_output +EXPORT_SYMBOL vmlinux 0x5f35b396 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x5f3eb0ee omapdss_register_display +EXPORT_SYMBOL vmlinux 0x5f4a0e84 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x5f64028f send_sig +EXPORT_SYMBOL vmlinux 0x5f754e5a memset +EXPORT_SYMBOL vmlinux 0x5f7e1ad2 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x5f870bee insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x5fb2ac97 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x5fb5769c arm_coherent_dma_ops +EXPORT_SYMBOL vmlinux 0x5fbfaa44 simple_lookup +EXPORT_SYMBOL vmlinux 0x5fce2e23 file_ns_capable +EXPORT_SYMBOL vmlinux 0x5fd268cb radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5ff11cc3 pcibios_min_io +EXPORT_SYMBOL vmlinux 0x5ff5110a __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x60055baa dispc_mgr_get_vsync_irq +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x60196726 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x602c96f0 copy_to_user_fromio +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x6038cdf9 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x604b8789 dquot_acquire +EXPORT_SYMBOL vmlinux 0x6066ee30 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x606ce740 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x60835f71 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60ad576e pci_bus_get +EXPORT_SYMBOL vmlinux 0x60bc1ad0 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x60d9b18a pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x60e0c717 kernel_sendpage +EXPORT_SYMBOL vmlinux 0x610c409d dispc_ovl_check +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x61398f3f __skb_get_hash +EXPORT_SYMBOL vmlinux 0x61594c9a of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x6178e7b9 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x617a218d __cond_resched_lock +EXPORT_SYMBOL vmlinux 0x61914ada inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x61aba5f4 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x61b2b70a neigh_xmit +EXPORT_SYMBOL vmlinux 0x61b3560c cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61c37e3b proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x61c6914c blk_get_request +EXPORT_SYMBOL vmlinux 0x61c8b97b devm_request_resource +EXPORT_SYMBOL vmlinux 0x61d2b08c jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x61f51ec9 mount_nodev +EXPORT_SYMBOL vmlinux 0x6200c1e1 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x6202de56 lock_sock_fast +EXPORT_SYMBOL vmlinux 0x6205f16e reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0x62064d86 pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0x620b78ea omap_dss_get_next_device +EXPORT_SYMBOL vmlinux 0x620c63ff sock_init_data +EXPORT_SYMBOL vmlinux 0x6210cae7 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x621b2076 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x6220b4a2 crc32_le +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x62296be1 qcom_scm_get_version +EXPORT_SYMBOL vmlinux 0x62375a16 mmc_get_card +EXPORT_SYMBOL vmlinux 0x626caa0d pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62740cdb input_release_device +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x62895ebb pci_get_class +EXPORT_SYMBOL vmlinux 0x62a9313b blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x62ae2d0e inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x62bec5c2 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x62c59f75 __free_pages +EXPORT_SYMBOL vmlinux 0x62cae6b1 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x62cb7bbc sock_i_ino +EXPORT_SYMBOL vmlinux 0x62d214fe snd_pcm_set_sync +EXPORT_SYMBOL vmlinux 0x62fe183f tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x630845f1 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x631e815f edma_filter_fn +EXPORT_SYMBOL vmlinux 0x6344d256 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x634eb100 dqput +EXPORT_SYMBOL vmlinux 0x63535636 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x636b3461 omap_dss_get_num_overlays +EXPORT_SYMBOL vmlinux 0x637b7532 tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0x63904382 cpu_user +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63d35610 bio_reset +EXPORT_SYMBOL vmlinux 0x63e8ddfe msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63eebb33 default_file_splice_read +EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x64140bb6 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x641e3789 ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x6424432a pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x642cff64 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x648961a1 single_open_size +EXPORT_SYMBOL vmlinux 0x6498244d scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a22ff0 dispc_mgr_set_lcd_config +EXPORT_SYMBOL vmlinux 0x64b3793e i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x64cb45a4 peernet2id_alloc +EXPORT_SYMBOL vmlinux 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL vmlinux 0x6510a5a9 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x6527e34a ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x652e0ea8 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x653e44c4 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x6543c822 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x65466939 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x656de0f4 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x6574ada2 pci_request_region +EXPORT_SYMBOL vmlinux 0x659028d9 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x659fd7f1 simple_getattr +EXPORT_SYMBOL vmlinux 0x65afe064 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x65b6e927 bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0x65b928a5 udp_disconnect +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65de7d06 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x66227eae vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x6630a823 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x6638468e __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x664e46bb kfree_put_link +EXPORT_SYMBOL vmlinux 0x6658b385 pci_iomap_range +EXPORT_SYMBOL vmlinux 0x66626835 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x6663dde1 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x666c1195 security_mmap_file +EXPORT_SYMBOL vmlinux 0x6672a7dc ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x66d6912e rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x66de1f5e dma_release_declared_memory +EXPORT_SYMBOL vmlinux 0x66e2cb75 snd_power_wait +EXPORT_SYMBOL vmlinux 0x66eac305 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x66ffa736 da903x_query_status +EXPORT_SYMBOL vmlinux 0x6730c039 tty_lock +EXPORT_SYMBOL vmlinux 0x675c6c7d fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0x676bbc0f _set_bit +EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create +EXPORT_SYMBOL vmlinux 0x677762d0 dquot_release +EXPORT_SYMBOL vmlinux 0x6797751a skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x679c2a38 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x67a37882 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b73692 bio_init +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67cbe720 find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x67d9f3c5 proc_create_data +EXPORT_SYMBOL vmlinux 0x67db9277 dev_crit +EXPORT_SYMBOL vmlinux 0x67e02294 kobject_set_name +EXPORT_SYMBOL vmlinux 0x67f71652 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x680cb98e snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL vmlinux 0x6810c535 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x68182a69 param_get_ulong +EXPORT_SYMBOL vmlinux 0x683ee517 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x685133b1 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x6856b7ad mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x68749231 kern_path_create +EXPORT_SYMBOL vmlinux 0x6879fd7a dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x688304d6 ipv4_specific +EXPORT_SYMBOL vmlinux 0x68869bae panic_notifier_list +EXPORT_SYMBOL vmlinux 0x68932797 pci_get_device +EXPORT_SYMBOL vmlinux 0x6894b11a of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL vmlinux 0x68ad0bd4 from_kgid +EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x68dcf87d dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x68e01ab8 __vfs_read +EXPORT_SYMBOL vmlinux 0x68f5aeb7 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s +EXPORT_SYMBOL vmlinux 0x68fef2cf padata_add_cpu +EXPORT_SYMBOL vmlinux 0x69118735 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x6915eb38 down_interruptible +EXPORT_SYMBOL vmlinux 0x691c5ca4 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x691c6102 default_llseek +EXPORT_SYMBOL vmlinux 0x692819de dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x6943566c tcp_read_sock +EXPORT_SYMBOL vmlinux 0x69533ca7 get_mm_exe_file +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x697510be pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x697c05d5 iterate_mounts +EXPORT_SYMBOL vmlinux 0x69a315a2 security_path_symlink +EXPORT_SYMBOL vmlinux 0x69a35e03 snd_register_device +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69aeb63e seq_open_private +EXPORT_SYMBOL vmlinux 0x69b40d42 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x69b6f8d9 omap_set_dma_transfer_params +EXPORT_SYMBOL vmlinux 0x69f2f1bb jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a0e85d3 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a65ac00 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x6a733e51 _dev_info +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6a8d479b inet_addr_type +EXPORT_SYMBOL vmlinux 0x6a8fec1f nvm_register_mgr +EXPORT_SYMBOL vmlinux 0x6a958917 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x6aa01a34 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x6ab48403 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x6ab5bd1c delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x6ac14431 sock_no_accept +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6ad571a2 vfs_getattr +EXPORT_SYMBOL vmlinux 0x6ad809ed key_validate +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6afb0b06 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b09706c kthread_bind +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b2de90e ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x6b3ac0be find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x6b41c604 may_umount_tree +EXPORT_SYMBOL vmlinux 0x6b4b1bc1 mpage_writepages +EXPORT_SYMBOL vmlinux 0x6b7226e9 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x6bbc6c45 nvm_get_blk_unlocked +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bd816eb swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer +EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn +EXPORT_SYMBOL vmlinux 0x6c1ebc19 snd_ctl_unregister_ioctl +EXPORT_SYMBOL vmlinux 0x6c399004 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x6c44cac1 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c6cdd4d wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c72ed55 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x6c98e51d truncate_pagecache +EXPORT_SYMBOL vmlinux 0x6ca34abf elevator_exit +EXPORT_SYMBOL vmlinux 0x6cb072a4 nand_bch_init +EXPORT_SYMBOL vmlinux 0x6cc38b50 tty_throttle +EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6cdfe47e md_flush_request +EXPORT_SYMBOL vmlinux 0x6cf2fb34 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x6cf7d02a starget_for_each_device +EXPORT_SYMBOL vmlinux 0x6d0a6e58 lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d1c44dd lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x6d271464 dma_common_mmap +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d348384 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x6d6599ba rtnl_unicast +EXPORT_SYMBOL vmlinux 0x6d662533 _find_first_bit_le +EXPORT_SYMBOL vmlinux 0x6d71b33c page_put_link +EXPORT_SYMBOL vmlinux 0x6d779d98 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x6d811771 snd_jack_report +EXPORT_SYMBOL vmlinux 0x6d859e4d init_task +EXPORT_SYMBOL vmlinux 0x6d8967fb dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x6d9a088c buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x6da8a028 start_tty +EXPORT_SYMBOL vmlinux 0x6da9ca5e input_register_handler +EXPORT_SYMBOL vmlinux 0x6dd9cff4 snd_pcm_hw_constraint_list +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6df92c58 mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0x6e0b8a39 __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x6e0bcb33 dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x6e11b7ca nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0x6e3b819f sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x6e4b023c flow_cache_lookup +EXPORT_SYMBOL vmlinux 0x6e61ece7 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x6e62ff08 snd_pcm_period_elapsed +EXPORT_SYMBOL vmlinux 0x6e64f2c5 request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x6e6514ed radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6e68e70a dquot_free_inode +EXPORT_SYMBOL vmlinux 0x6e6ccac3 snd_timer_global_new +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e879060 mapping_tagged +EXPORT_SYMBOL vmlinux 0x6e8cc930 address_space_init_once +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea84116 skb_append +EXPORT_SYMBOL vmlinux 0x6ec9ccdb _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x6ece94ca tty_set_operations +EXPORT_SYMBOL vmlinux 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL vmlinux 0x6f0f06bd param_get_long +EXPORT_SYMBOL vmlinux 0x6f13130c mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash +EXPORT_SYMBOL vmlinux 0x6f299527 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x6f3037c3 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x6f5cfcd1 mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0x6f710106 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6f9c5663 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x6fa20a2c key_put +EXPORT_SYMBOL vmlinux 0x6faa450b dev_addr_del +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fcfd938 eth_header_cache +EXPORT_SYMBOL vmlinux 0x6ff74212 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x6ffa49ba ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x70097aa0 nand_bch_free +EXPORT_SYMBOL vmlinux 0x7029b1d7 inet6_getname +EXPORT_SYMBOL vmlinux 0x703dc458 uart_suspend_port +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7062b4cd cmdline_parts_free +EXPORT_SYMBOL vmlinux 0x706b6669 vfs_readf +EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync +EXPORT_SYMBOL vmlinux 0x7073ea76 snd_ctl_register_ioctl +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x70a2f416 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x70a7b4d8 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x70aef38d setattr_copy +EXPORT_SYMBOL vmlinux 0x70ba2b6c dentry_update_name_case +EXPORT_SYMBOL vmlinux 0x70bef355 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x70ceebe4 nf_log_register +EXPORT_SYMBOL vmlinux 0x70d78339 bitmap_unplug +EXPORT_SYMBOL vmlinux 0x70e39dae dss_uninstall_mgr_ops +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x710cfd6f inet_bind +EXPORT_SYMBOL vmlinux 0x7119db7f omap_dss_pal_timings +EXPORT_SYMBOL vmlinux 0x7123fa91 arp_xmit +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x712ae15b import_iovec +EXPORT_SYMBOL vmlinux 0x712ed37b radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x71342f95 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x71470ff1 blk_init_queue_node +EXPORT_SYMBOL vmlinux 0x7169102e omap_dss_ntsc_timings +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x7195aeef dma_mark_declared_memory_occupied +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a5bd88 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71a9bd34 thaw_super +EXPORT_SYMBOL vmlinux 0x71c90087 memcmp +EXPORT_SYMBOL vmlinux 0x71cfb419 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x71f65175 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x71f95bb7 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x71fc8e3a dquot_resume +EXPORT_SYMBOL vmlinux 0x72110810 should_remove_suid +EXPORT_SYMBOL vmlinux 0x7215ce39 tegra_dfll_unregister +EXPORT_SYMBOL vmlinux 0x7226bd59 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x72350130 ___ratelimit +EXPORT_SYMBOL vmlinux 0x723b2ac8 vm_map_ram +EXPORT_SYMBOL vmlinux 0x7270b2ab nvm_unregister_target +EXPORT_SYMBOL vmlinux 0x7273d1f0 sk_mc_loop +EXPORT_SYMBOL vmlinux 0x7296d8a2 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x72a0e6f2 __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x72a106f2 param_ops_long +EXPORT_SYMBOL vmlinux 0x72b9492b textsearch_prepare +EXPORT_SYMBOL vmlinux 0x72b9672d phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x72cc3e7b key_link +EXPORT_SYMBOL vmlinux 0x72d58de9 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x730522de elm_config +EXPORT_SYMBOL vmlinux 0x73158440 of_match_node +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x73284c2c pps_unregister_source +EXPORT_SYMBOL vmlinux 0x733b927f __quota_error +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x73435ae6 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x73911cba pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x7393c18e crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x73973923 I_BDEV +EXPORT_SYMBOL vmlinux 0x73d1d253 __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy +EXPORT_SYMBOL vmlinux 0x73e827a6 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x73f58e8d rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x7406b944 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x742e08f2 mmc_add_host +EXPORT_SYMBOL vmlinux 0x746e9274 skb_push +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x7475bceb end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x74ba3cc0 blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0x74bb05d8 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x74bb848c find_inode_nowait +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c31e2c xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x74e46dac imx_ssi_fiq_tx_buffer +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74f3ef75 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv +EXPORT_SYMBOL vmlinux 0x751175ca inet_offloads +EXPORT_SYMBOL vmlinux 0x751b40b5 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x7524fe8e zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x7542d8f4 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x754f5224 do_splice_direct +EXPORT_SYMBOL vmlinux 0x75546a6b mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x755cbb72 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x7561a5af load_nls_default +EXPORT_SYMBOL vmlinux 0x7567d381 __get_fiq_regs +EXPORT_SYMBOL vmlinux 0x75709d50 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x7573faa8 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x75923888 snd_pcm_kernel_ioctl +EXPORT_SYMBOL vmlinux 0x75923dab inode_needs_sync +EXPORT_SYMBOL vmlinux 0x7592eb57 generic_update_time +EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 +EXPORT_SYMBOL vmlinux 0x75a5b44a contig_page_data +EXPORT_SYMBOL vmlinux 0x75afdcdd tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x75b073e9 inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75c0c3ce padata_start +EXPORT_SYMBOL vmlinux 0x75d8811d sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x75e18418 snd_timer_resolution +EXPORT_SYMBOL vmlinux 0x75ee67b1 vme_register_bridge +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x7611bc0f sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x76184d98 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x7625aea7 blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0x7627be04 bio_unmap_user +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x76478ce5 set_anon_super +EXPORT_SYMBOL vmlinux 0x7655fd24 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x76591123 __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x767583a1 kunmap_high +EXPORT_SYMBOL vmlinux 0x7676416b d_make_root +EXPORT_SYMBOL vmlinux 0x76987cbd of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0x769a5aa6 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x76a76414 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x76aa2d00 inet_add_offload +EXPORT_SYMBOL vmlinux 0x76ae215a __nla_reserve +EXPORT_SYMBOL vmlinux 0x76cf47f6 __aeabi_llsl +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76d4e1e2 no_llseek +EXPORT_SYMBOL vmlinux 0x76d9bf11 crc32_be +EXPORT_SYMBOL vmlinux 0x76f6c5ef kmalloc_order +EXPORT_SYMBOL vmlinux 0x771fe434 alloc_fddidev +EXPORT_SYMBOL vmlinux 0x772519be gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x772d9a0c remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x773eec31 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x77472eed block_write_end +EXPORT_SYMBOL vmlinux 0x774900eb nand_scan +EXPORT_SYMBOL vmlinux 0x775a130e __sg_free_table +EXPORT_SYMBOL vmlinux 0x775abeb5 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x7776a685 snd_jack_add_new_kctl +EXPORT_SYMBOL vmlinux 0x7776dbf4 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x779efb21 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x779fc45e nvm_put_blk +EXPORT_SYMBOL vmlinux 0x77a0a648 skb_dequeue +EXPORT_SYMBOL vmlinux 0x77ba3b76 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77d3fc09 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x77d4e332 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x77e190b2 mem_cgroup_end_page_stat +EXPORT_SYMBOL vmlinux 0x77e588ca i2c_verify_client +EXPORT_SYMBOL vmlinux 0x77e9e94d of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0x77fa1a63 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x78003391 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x7810a88b fence_signal_locked +EXPORT_SYMBOL vmlinux 0x7837ed01 phy_device_free +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x783b977a kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x784a9a68 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x78575272 __destroy_inode +EXPORT_SYMBOL vmlinux 0x7865ab18 dump_truncate +EXPORT_SYMBOL vmlinux 0x78779c0b set_fiq_handler +EXPORT_SYMBOL vmlinux 0x787ad01e devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x78824ebe nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x788fe103 iomem_resource +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78a105b1 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x78a7abac check_disk_change +EXPORT_SYMBOL vmlinux 0x78b2ddd9 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78f86c3d __blk_run_queue +EXPORT_SYMBOL vmlinux 0x78ff4cc1 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x79119ddb posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0x79183936 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x791c0b89 of_mm_gpiochip_remove +EXPORT_SYMBOL vmlinux 0x792e7a54 security_path_chmod +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x7970bc1f __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x7981c571 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x7984080b inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0x7992b0bc pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79c5a9f0 ioremap +EXPORT_SYMBOL vmlinux 0x79fa1deb imx_ssi_fiq_rx_buffer +EXPORT_SYMBOL vmlinux 0x7a122a55 dentry_open +EXPORT_SYMBOL vmlinux 0x7a17ce97 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x7a1ca216 tcp_destroy_cgroup +EXPORT_SYMBOL vmlinux 0x7a1f2611 dispc_mgr_set_timings +EXPORT_SYMBOL vmlinux 0x7a29f349 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x7a2add7d current_kernel_time64 +EXPORT_SYMBOL vmlinux 0x7a41f6cd tty_devnum +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a466173 load_nls +EXPORT_SYMBOL vmlinux 0x7a51d717 phy_resume +EXPORT_SYMBOL vmlinux 0x7a6c5fc1 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x7a7510d8 module_refcount +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a9fb6c3 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aa2ab55 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x7aa9538d __scm_send +EXPORT_SYMBOL vmlinux 0x7ab1243a inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ac60aae i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7aeb774d dmam_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf +EXPORT_SYMBOL vmlinux 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b1ade38 lz4_decompress +EXPORT_SYMBOL vmlinux 0x7b2733e2 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x7b35bf33 __serio_register_driver +EXPORT_SYMBOL vmlinux 0x7b383830 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x7b3c27de noop_llseek +EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap +EXPORT_SYMBOL vmlinux 0x7b635b16 iunique +EXPORT_SYMBOL vmlinux 0x7b6ee3f6 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x7b76bbcf tcf_hash_search +EXPORT_SYMBOL vmlinux 0x7b8ecc99 generic_make_request +EXPORT_SYMBOL vmlinux 0x7b8f984a pps_register_source +EXPORT_SYMBOL vmlinux 0x7bbd1455 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x7bfea345 migrate_page +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c1a942d rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x7c1dcc7e param_array_ops +EXPORT_SYMBOL vmlinux 0x7c271756 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x7c2af2b0 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c46458b input_set_capability +EXPORT_SYMBOL vmlinux 0x7c466037 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x7c4ccf97 simple_link +EXPORT_SYMBOL vmlinux 0x7c599225 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x7c6bf2a9 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x7c78e9c9 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x7c92a904 ihold +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cc035a7 __ucmpdi2 +EXPORT_SYMBOL vmlinux 0x7ccacca6 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x7cd3caf7 fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0x7cd44ed9 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cfe8c0c __kfree_skb +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d157c5a sget +EXPORT_SYMBOL vmlinux 0x7d179960 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x7d2ed6c0 vme_slot_num +EXPORT_SYMBOL vmlinux 0x7d3af40b mdio_bus_type +EXPORT_SYMBOL vmlinux 0x7d3e11c9 inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0x7d48c259 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d85dae3 blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0x7d9343d5 sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x7da51756 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x7dbc3c8c of_get_property +EXPORT_SYMBOL vmlinux 0x7dccc294 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x7dde52ad blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7df11c6b scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x7df5e557 param_get_ushort +EXPORT_SYMBOL vmlinux 0x7dff21ee bdi_register_owner +EXPORT_SYMBOL vmlinux 0x7e04562c jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x7e04da70 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x7e0865c2 mdiobus_read +EXPORT_SYMBOL vmlinux 0x7e23b3f1 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x7e35fe5c phy_driver_register +EXPORT_SYMBOL vmlinux 0x7e47b4d1 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x7e6fa3ef tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0x7e7c4d38 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x7e927afb neigh_ifdown +EXPORT_SYMBOL vmlinux 0x7e9efe8e complete_and_exit +EXPORT_SYMBOL vmlinux 0x7ea43958 swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x7eae30d3 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x7eb605d5 proto_unregister +EXPORT_SYMBOL vmlinux 0x7ed12c8c vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x7ed7f229 get_io_context +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7ee7f093 dispc_ovl_compute_fifo_thresholds +EXPORT_SYMBOL vmlinux 0x7ef80108 rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f1400b9 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x7f17d6cd netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x7f207ac0 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f63b31e _memcpy_toio +EXPORT_SYMBOL vmlinux 0x7f63e38b sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x7f76bbe6 dev_mc_add +EXPORT_SYMBOL vmlinux 0x7f783659 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x7f979a07 devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0x7f9f70bb pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x7fa02279 of_get_pci_address +EXPORT_SYMBOL vmlinux 0x7fa9ab13 devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0x7fab82b7 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x7faf54ba __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fe3f661 kernel_connect +EXPORT_SYMBOL vmlinux 0x800e4ffa __muldi3 +EXPORT_SYMBOL vmlinux 0x80298be6 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x802e66a2 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x804aabdf idr_is_empty +EXPORT_SYMBOL vmlinux 0x805c4ebb fsnotify_put_group +EXPORT_SYMBOL vmlinux 0x80787596 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x8086b032 dst_discard_out +EXPORT_SYMBOL vmlinux 0x80988e26 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x809d48b6 mdiobus_free +EXPORT_SYMBOL vmlinux 0x80c00a04 finish_no_open +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80cf4b59 tc_classify +EXPORT_SYMBOL vmlinux 0x80d43711 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80d81308 omap_vrfb_release_ctx +EXPORT_SYMBOL vmlinux 0x80e69eb7 fddi_change_mtu +EXPORT_SYMBOL vmlinux 0x8102e1a6 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x810bbecb bprm_change_interp +EXPORT_SYMBOL vmlinux 0x812665d8 posix_lock_file +EXPORT_SYMBOL vmlinux 0x812c0243 single_open +EXPORT_SYMBOL vmlinux 0x812fdca5 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x813b6dca bd_set_size +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x8155d1a0 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815ddead simple_unlink +EXPORT_SYMBOL vmlinux 0x8164e859 genl_notify +EXPORT_SYMBOL vmlinux 0x8168f38e call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x816bc7ac jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x81721c9f mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x81937cd4 dev_uc_add +EXPORT_SYMBOL vmlinux 0x81aef16d module_layout +EXPORT_SYMBOL vmlinux 0x81b3d575 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL vmlinux 0x81d339ae mount_pseudo +EXPORT_SYMBOL vmlinux 0x81d36e14 ps2_command +EXPORT_SYMBOL vmlinux 0x81d8cf6c pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x82174aeb serio_reconnect +EXPORT_SYMBOL vmlinux 0x822137e2 arm_heavy_mb +EXPORT_SYMBOL vmlinux 0x82217009 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x82307e03 dev_get_flags +EXPORT_SYMBOL vmlinux 0x82338062 nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0x8237ea9f framebuffer_release +EXPORT_SYMBOL vmlinux 0x824a4367 tmio_core_mmc_pwr +EXPORT_SYMBOL vmlinux 0x824f94bd datagram_poll +EXPORT_SYMBOL vmlinux 0x8250be9a dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x82750eb7 inode_set_flags +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x8293dc71 nvm_dev_factory +EXPORT_SYMBOL vmlinux 0x829b85eb file_path +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82b5dd52 of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0x82b6a07e dev_deactivate +EXPORT_SYMBOL vmlinux 0x830e5560 tty_vhangup +EXPORT_SYMBOL vmlinux 0x831396c3 fence_signal +EXPORT_SYMBOL vmlinux 0x8320bea8 __umodsi3 +EXPORT_SYMBOL vmlinux 0x83232ce0 genphy_update_link +EXPORT_SYMBOL vmlinux 0x833bff44 tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0x83626050 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x8370ec4d pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x8372cd2f __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x8375d79d ida_destroy +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83b83b94 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83f2391a amba_device_register +EXPORT_SYMBOL vmlinux 0x8407da9e empty_aops +EXPORT_SYMBOL vmlinux 0x8436d4b3 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x843fa9ad genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x845410c0 sock_no_bind +EXPORT_SYMBOL vmlinux 0x846c0a9c __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x84891257 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x8495e6fd blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x84982054 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x8498ea40 console_start +EXPORT_SYMBOL vmlinux 0x84a69fdc vme_slave_get +EXPORT_SYMBOL vmlinux 0x84b183ae strncmp +EXPORT_SYMBOL vmlinux 0x84b7755c devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x853d657a jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x85440119 mount_subtree +EXPORT_SYMBOL vmlinux 0x85445d15 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x854e1c0b sg_nents +EXPORT_SYMBOL vmlinux 0x854fec83 tegra_sku_info +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x85765fee omap_enable_dma_irq +EXPORT_SYMBOL vmlinux 0x85827472 ilookup +EXPORT_SYMBOL vmlinux 0x858a2ea7 of_match_device +EXPORT_SYMBOL vmlinux 0x8592f651 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x85ae1eb7 __neigh_event_send +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85ca024e mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85edcf11 snd_ctl_add +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85fe9fbc blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x85ff0e4a abx500_register_ops +EXPORT_SYMBOL vmlinux 0x861d90bd tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x8636bfc4 abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0x86444486 keyring_alloc +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x86535cc2 follow_pfn +EXPORT_SYMBOL vmlinux 0x865c2c8f request_firmware +EXPORT_SYMBOL vmlinux 0x86615891 scmd_printk +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x867e2d37 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x86860195 dss_feat_get_supported_displays +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x868b0f83 param_ops_short +EXPORT_SYMBOL vmlinux 0x86a17f50 rt6_lookup +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86a4889a kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x86cb69bb dss_mgr_set_lcd_config +EXPORT_SYMBOL vmlinux 0x86d97175 seq_vprintf +EXPORT_SYMBOL vmlinux 0x86dac31d device_get_mac_address +EXPORT_SYMBOL vmlinux 0x86e49090 snd_mixer_oss_notify_callback +EXPORT_SYMBOL vmlinux 0x86ec3f7c tegra_dfll_runtime_resume +EXPORT_SYMBOL vmlinux 0x86f4bbd2 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x86f735c4 input_flush_device +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x87003790 fence_init +EXPORT_SYMBOL vmlinux 0x8701e168 posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x8703f3b2 omap_dss_get_overlay_manager +EXPORT_SYMBOL vmlinux 0x8706a7f4 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x8740b23e nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0x875f1a9e pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x8780310a dquot_quota_off +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x87a465f8 dss_mgr_unregister_framedone_handler +EXPORT_SYMBOL vmlinux 0x87a84376 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x87b0f2a1 downgrade_write +EXPORT_SYMBOL vmlinux 0x87b50b72 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x87b7bb79 shdma_request_irq +EXPORT_SYMBOL vmlinux 0x87bd81b0 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x87c89670 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x87d12f1c serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x880f37f8 inet6_bind +EXPORT_SYMBOL vmlinux 0x8817fc4a __neigh_create +EXPORT_SYMBOL vmlinux 0x883386d9 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x886bc76f mempool_resize +EXPORT_SYMBOL vmlinux 0x88751451 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x887c55bc tcp_child_process +EXPORT_SYMBOL vmlinux 0x888fa1b5 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x88a408c1 key_unlink +EXPORT_SYMBOL vmlinux 0x88a9cd96 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x88ac9410 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x88b19f45 system_serial +EXPORT_SYMBOL vmlinux 0x88c781e2 dev_change_carrier +EXPORT_SYMBOL vmlinux 0x88fb6f08 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x8910658c vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x8915a6dd param_ops_bint +EXPORT_SYMBOL vmlinux 0x892e161e vfs_symlink +EXPORT_SYMBOL vmlinux 0x893c2689 fb_show_logo +EXPORT_SYMBOL vmlinux 0x8946d120 new_inode +EXPORT_SYMBOL vmlinux 0x8951b391 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x8953f0e2 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x898dd774 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x89a63b0f snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL vmlinux 0x89ab44e8 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x89d02e9e jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89db52b5 inet6_release +EXPORT_SYMBOL vmlinux 0x89e55ad9 devfreq_interval_update +EXPORT_SYMBOL vmlinux 0x89e72793 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x89fc893e neigh_update +EXPORT_SYMBOL vmlinux 0x89fcfb46 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x8a0f4230 rename_lock +EXPORT_SYMBOL vmlinux 0x8a12e71d clk_get +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a290459 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x8a2c4c95 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x8a48156f block_commit_write +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a4fa83b __aeabi_llsr +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a6f3be2 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x8a773878 install_exec_creds +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a970b84 ps2_init +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aa6ed6c pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0x8adcf988 pci_claim_resource +EXPORT_SYMBOL vmlinux 0x8ae1ae8b __tcf_hash_release +EXPORT_SYMBOL vmlinux 0x8aeb207b phy_attach_direct +EXPORT_SYMBOL vmlinux 0x8af0b3b5 snd_pcm_hw_param_last +EXPORT_SYMBOL vmlinux 0x8b40d2f1 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b4a59fd unregister_console +EXPORT_SYMBOL vmlinux 0x8b4d432e d_genocide +EXPORT_SYMBOL vmlinux 0x8b548bee sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b820948 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x8b89062c __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x8b9761e4 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x8b9a68a4 get_gendisk +EXPORT_SYMBOL vmlinux 0x8bba0d57 vfs_statfs +EXPORT_SYMBOL vmlinux 0x8bd1f834 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x8bdf1fa4 __sock_create +EXPORT_SYMBOL vmlinux 0x8bf70158 snd_pcm_lib_readv +EXPORT_SYMBOL vmlinux 0x8c0520f5 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x8c110484 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x8c175599 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x8c55548f is_bad_inode +EXPORT_SYMBOL vmlinux 0x8c560065 revalidate_disk +EXPORT_SYMBOL vmlinux 0x8c586ae0 dev_mc_flush +EXPORT_SYMBOL vmlinux 0x8c5bc69e tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c7b846c make_kprojid +EXPORT_SYMBOL vmlinux 0x8c91cf9a nand_calculate_ecc +EXPORT_SYMBOL vmlinux 0x8c91dfd9 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x8c962c23 md_cluster_mod +EXPORT_SYMBOL vmlinux 0x8c9886fb scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x8c9ea84d kill_pgrp +EXPORT_SYMBOL vmlinux 0x8ca30873 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x8ca5ad41 tty_port_init +EXPORT_SYMBOL vmlinux 0x8cd0b064 snd_pcm_new +EXPORT_SYMBOL vmlinux 0x8cd8c339 omap_free_dma +EXPORT_SYMBOL vmlinux 0x8cf0284e nf_register_hooks +EXPORT_SYMBOL vmlinux 0x8cfcf75c nand_flash_ids +EXPORT_SYMBOL vmlinux 0x8d134c39 idr_replace +EXPORT_SYMBOL vmlinux 0x8d2daacd mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x8d3d4a4a mmc_put_card +EXPORT_SYMBOL vmlinux 0x8d4199d4 replace_mount_options +EXPORT_SYMBOL vmlinux 0x8d484e77 of_phy_attach +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d64153f sk_receive_skb +EXPORT_SYMBOL vmlinux 0x8d64495d of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x8d6504c1 dev_alert +EXPORT_SYMBOL vmlinux 0x8d6b2ce1 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x8d6f81b4 __div64_32 +EXPORT_SYMBOL vmlinux 0x8d72495b __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d8b6353 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x8d902613 sock_release +EXPORT_SYMBOL vmlinux 0x8dcff6e2 __pv_offset +EXPORT_SYMBOL vmlinux 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL vmlinux 0x8df484ce tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x8e1dd6af mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x8e2ad5e8 snd_card_register +EXPORT_SYMBOL vmlinux 0x8e2fe890 vfs_fsync +EXPORT_SYMBOL vmlinux 0x8e497146 of_get_next_child +EXPORT_SYMBOL vmlinux 0x8e5bf9ca skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x8e6851d6 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e808986 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x8e845e73 find_vma +EXPORT_SYMBOL vmlinux 0x8e865d3c arm_delay_ops +EXPORT_SYMBOL vmlinux 0x8e95bc0f inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x8e9659b5 put_filp +EXPORT_SYMBOL vmlinux 0x8eb593b0 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL vmlinux 0x8ee1328b tcp_prot +EXPORT_SYMBOL vmlinux 0x8eea9741 dma_mmap_from_coherent +EXPORT_SYMBOL vmlinux 0x8ef4292e skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x8f1e1ee3 dev_emerg +EXPORT_SYMBOL vmlinux 0x8f595b11 snd_major +EXPORT_SYMBOL vmlinux 0x8f678b07 __stack_chk_guard +EXPORT_SYMBOL vmlinux 0x8f70c76e snd_ctl_find_numid +EXPORT_SYMBOL vmlinux 0x8f800052 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x8f89429f keyring_search +EXPORT_SYMBOL vmlinux 0x8fa4130a omap_set_dma_callback +EXPORT_SYMBOL vmlinux 0x8fbb7d67 of_n_size_cells +EXPORT_SYMBOL vmlinux 0x8fc32850 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin +EXPORT_SYMBOL vmlinux 0x8ff40c6b mount_single +EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 +EXPORT_SYMBOL vmlinux 0x9004f74a end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x900a8b4d devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x90182b40 abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0x901a1390 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x903a1a9a mdiobus_scan +EXPORT_SYMBOL vmlinux 0x903d67ff snd_ctl_boolean_stereo_info +EXPORT_SYMBOL vmlinux 0x904e87e3 of_parse_phandle +EXPORT_SYMBOL vmlinux 0x90682b52 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x907bfe7a up_read +EXPORT_SYMBOL vmlinux 0x9081604d pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x90873754 d_set_d_op +EXPORT_SYMBOL vmlinux 0x908d493f empty_zero_page +EXPORT_SYMBOL vmlinux 0x909c73b4 dm_put_table_device +EXPORT_SYMBOL vmlinux 0x909d12db follow_down +EXPORT_SYMBOL vmlinux 0x90a1b7ad inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x90a93479 dev_get_nest_level +EXPORT_SYMBOL vmlinux 0x90b29d8f block_truncate_page +EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x90f28e68 snd_timer_close +EXPORT_SYMBOL vmlinux 0x90f3bfaf scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0x911491c5 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x914aef75 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x91585aef loop_register_transfer +EXPORT_SYMBOL vmlinux 0x91621d6a allocate_resource +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x91715406 lru_cache_add_file +EXPORT_SYMBOL vmlinux 0x917c747b pci_set_master +EXPORT_SYMBOL vmlinux 0x918ed5e0 __sb_start_write +EXPORT_SYMBOL vmlinux 0x919029aa __readwrite_bug +EXPORT_SYMBOL vmlinux 0x919fd1eb snd_component_add +EXPORT_SYMBOL vmlinux 0x91a0ee79 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x91a598eb try_module_get +EXPORT_SYMBOL vmlinux 0x91b035f9 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x91b84f13 omapdss_find_mgr_from_display +EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz +EXPORT_SYMBOL vmlinux 0x91cb6161 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x91ceb15c snd_timer_interrupt +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x91f7b14c shdma_chan_probe +EXPORT_SYMBOL vmlinux 0x92036327 file_remove_privs +EXPORT_SYMBOL vmlinux 0x9222d6fa scsi_device_resume +EXPORT_SYMBOL vmlinux 0x92245c9a pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0x9232130c inet_del_offload +EXPORT_SYMBOL vmlinux 0x92365d2a amba_request_regions +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x923d988e freeze_bdev +EXPORT_SYMBOL vmlinux 0x92570464 netif_napi_add +EXPORT_SYMBOL vmlinux 0x92606d36 blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x9267456b unregister_filesystem +EXPORT_SYMBOL vmlinux 0x926e9559 register_sound_dsp +EXPORT_SYMBOL vmlinux 0x9277b830 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x927fe691 snd_pcm_create_iec958_consumer +EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm +EXPORT_SYMBOL vmlinux 0x92ba1dc7 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x92c45d9f omapdss_find_output_from_display +EXPORT_SYMBOL vmlinux 0x92cba228 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x92da6f29 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x92e996be d_obtain_root +EXPORT_SYMBOL vmlinux 0x92ec5d1b dispc_mgr_enable +EXPORT_SYMBOL vmlinux 0x92f4ce64 shdma_reset +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x930a6e75 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x9317195a netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x9329d30a mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x9330cb9f sg_alloc_table +EXPORT_SYMBOL vmlinux 0x934f63f3 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x935d34ef gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x93625bfd cdev_init +EXPORT_SYMBOL vmlinux 0x9364e7af __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x93771277 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x939066b0 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x93963a85 dss_feat_get_num_mgrs +EXPORT_SYMBOL vmlinux 0x93a79e60 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93d345ef snd_pcm_lib_ioctl +EXPORT_SYMBOL vmlinux 0x93e262b3 lock_sock_nested +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x94061a7b inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x94095e3f vfs_iter_write +EXPORT_SYMBOL vmlinux 0x94098ff8 snd_interval_list +EXPORT_SYMBOL vmlinux 0x940f9cf6 kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x94268d0f dev_addr_init +EXPORT_SYMBOL vmlinux 0x943c98e7 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x943cbcb1 follow_up +EXPORT_SYMBOL vmlinux 0x946efbfa __wait_on_bit +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94abcd34 nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0x94b162b1 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x94b2590f vme_free_consistent +EXPORT_SYMBOL vmlinux 0x94cf56f2 tty_port_open +EXPORT_SYMBOL vmlinux 0x94d3da68 rtc_lock +EXPORT_SYMBOL vmlinux 0x94d5e91c kmem_cache_create +EXPORT_SYMBOL vmlinux 0x94d75b1e inet_stream_connect +EXPORT_SYMBOL vmlinux 0x94df6ace dss_mgr_connect +EXPORT_SYMBOL vmlinux 0x94eea794 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x9502572c key_revoke +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x953d4d91 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x95622f41 down_timeout +EXPORT_SYMBOL vmlinux 0x956e9f62 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x95842b97 abort_creds +EXPORT_SYMBOL vmlinux 0x95851e38 account_page_dirtied +EXPORT_SYMBOL vmlinux 0x95990718 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x959cd942 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x95c28103 lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0x95dbe078 __get_user_2 +EXPORT_SYMBOL vmlinux 0x960dfaf5 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x96575701 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x967831cd phy_attach +EXPORT_SYMBOL vmlinux 0x9688f86f scsi_block_requests +EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x96aee64c abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96dce98c resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x96e213f0 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0x96e30346 napi_get_frags +EXPORT_SYMBOL vmlinux 0x96f59cfa dma_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0x9719875e __genl_register_family +EXPORT_SYMBOL vmlinux 0x97255bdf strlen +EXPORT_SYMBOL vmlinux 0x97277390 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x973078c5 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x9732cabd override_creds +EXPORT_SYMBOL vmlinux 0x9741bf3c swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x976e700f down_trylock +EXPORT_SYMBOL vmlinux 0x9773caa7 omap_dss_get_device +EXPORT_SYMBOL vmlinux 0x9774ef7e vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x9778da06 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x977cd975 bdi_init +EXPORT_SYMBOL vmlinux 0x97884811 sock_no_getname +EXPORT_SYMBOL vmlinux 0x9793c93a dispc_mgr_setup +EXPORT_SYMBOL vmlinux 0x9795a7d9 do_map_probe +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x979c4190 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x97b7e090 simple_readpage +EXPORT_SYMBOL vmlinux 0x97bcf43b param_set_bool +EXPORT_SYMBOL vmlinux 0x981631a9 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint +EXPORT_SYMBOL vmlinux 0x982dcc15 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x983c396b tcp_prequeue +EXPORT_SYMBOL vmlinux 0x986c5b3e nla_append +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x987c11c7 __pv_phys_pfn_offset +EXPORT_SYMBOL vmlinux 0x9880b465 bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x988996ad dcb_getapp +EXPORT_SYMBOL vmlinux 0x98c78305 generic_setxattr +EXPORT_SYMBOL vmlinux 0x98e68eca cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x98e9695f netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x98f124fa blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x990c280e dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x991d45ca blk_put_queue +EXPORT_SYMBOL vmlinux 0x9924f41a dump_emit +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x9964ca23 __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x996c4d30 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x997d4c3b fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a5bad1 mmc_can_discard +EXPORT_SYMBOL vmlinux 0x99bb8806 memmove +EXPORT_SYMBOL vmlinux 0x99c5e2bc __get_page_tail +EXPORT_SYMBOL vmlinux 0x99c6dd65 mmc_detect_change +EXPORT_SYMBOL vmlinux 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x99f58330 lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a3a706d uart_register_driver +EXPORT_SYMBOL vmlinux 0x9a5daa37 padata_free +EXPORT_SYMBOL vmlinux 0x9a623142 ida_get_new_above +EXPORT_SYMBOL vmlinux 0x9a6abdb4 dst_release +EXPORT_SYMBOL vmlinux 0x9a8318ef v7_coherent_kern_range +EXPORT_SYMBOL vmlinux 0x9a8919a9 param_set_copystring +EXPORT_SYMBOL vmlinux 0x9a91d67d netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x9aa3f1f9 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x9aab7d62 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x9ad377a3 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9af4aa9f of_get_next_parent +EXPORT_SYMBOL vmlinux 0x9b0bc5be sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x9b0caae8 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b42dd14 d_instantiate +EXPORT_SYMBOL vmlinux 0x9b6305ca sock_create +EXPORT_SYMBOL vmlinux 0x9b64f4f4 param_ops_byte +EXPORT_SYMBOL vmlinux 0x9b6ba228 dentry_unhash +EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize +EXPORT_SYMBOL vmlinux 0x9b8cc8fe truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x9b9314ed xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0x9b9885fa of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put +EXPORT_SYMBOL vmlinux 0x9bce482f __release_region +EXPORT_SYMBOL vmlinux 0x9bd318e3 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x9bdc5875 snd_pcm_lib_writev +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9bf3534d jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0x9bfaa452 mntget +EXPORT_SYMBOL vmlinux 0x9c09e7bf __block_write_begin +EXPORT_SYMBOL vmlinux 0x9c0bd51f _raw_spin_lock +EXPORT_SYMBOL vmlinux 0x9c0f4c90 mmc_fixup_device +EXPORT_SYMBOL vmlinux 0x9c2971a1 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x9c3af856 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x9c6ccae0 netpoll_setup +EXPORT_SYMBOL vmlinux 0x9c7a82bd md_check_recovery +EXPORT_SYMBOL vmlinux 0x9c7f0db3 qcom_scm_set_warm_boot_addr +EXPORT_SYMBOL vmlinux 0x9c8931f1 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x9c91a1e4 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x9c9659a9 __d_drop +EXPORT_SYMBOL vmlinux 0x9c9ec2a0 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cad89e7 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x9cba3c37 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x9cd09275 copy_from_iter +EXPORT_SYMBOL vmlinux 0x9d0034b0 omapdss_default_get_recommended_bpp +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d118ec4 __getblk_slow +EXPORT_SYMBOL vmlinux 0x9d12dd7d tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x9d1cba6c dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d591742 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x9d5d7576 simple_statfs +EXPORT_SYMBOL vmlinux 0x9d5dc2d2 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x9d669763 memcpy +EXPORT_SYMBOL vmlinux 0x9d68d813 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x9d7750df softnet_data +EXPORT_SYMBOL vmlinux 0x9d820148 devm_memunmap +EXPORT_SYMBOL vmlinux 0x9dabea92 pwmss_submodule_state_change +EXPORT_SYMBOL vmlinux 0x9db6acd1 dm_register_target +EXPORT_SYMBOL vmlinux 0x9dbfd48d iget_failed +EXPORT_SYMBOL vmlinux 0x9dc04593 dev_mc_init +EXPORT_SYMBOL vmlinux 0x9dd17ff9 dev_load +EXPORT_SYMBOL vmlinux 0x9deca508 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x9dfe7307 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9dfe9cb9 __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0e2ba2 sk_stream_error +EXPORT_SYMBOL vmlinux 0x9e1bff9c xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x9e22097a fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x9e30c0a7 phy_device_register +EXPORT_SYMBOL vmlinux 0x9e45a847 con_is_bound +EXPORT_SYMBOL vmlinux 0x9e4c6330 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x9e4cec0d kernel_write +EXPORT_SYMBOL vmlinux 0x9e4ec69c pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e57be50 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x9e58d0ed dma_find_channel +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e672ff6 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x9e6c1f9a mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL vmlinux 0x9e7283f9 omap_dss_put_device +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e7a6cfd swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0x9e9e198d phy_init_hw +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ecbcf22 register_filesystem +EXPORT_SYMBOL vmlinux 0x9eff9aab dquot_commit +EXPORT_SYMBOL vmlinux 0x9f0108cd blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x9f1994aa eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x9f24b023 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x9f37a2d1 sk_alloc +EXPORT_SYMBOL vmlinux 0x9f3bd1e2 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f5f21ba do_truncate +EXPORT_SYMBOL vmlinux 0x9f6566e2 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x9f73b657 sk_free +EXPORT_SYMBOL vmlinux 0x9f823cea dispc_mgr_is_enabled +EXPORT_SYMBOL vmlinux 0x9f8584f2 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9f9dab2c gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x9f9ebbde scsi_register_interface +EXPORT_SYMBOL vmlinux 0x9fcc7921 arm_dma_ops +EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fe36b45 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x9fee2fa2 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x9ff7485e ip6_frag_match +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa0044066 kset_register +EXPORT_SYMBOL vmlinux 0xa0053b54 sock_alloc_file +EXPORT_SYMBOL vmlinux 0xa00eb15b ioremap_page +EXPORT_SYMBOL vmlinux 0xa017942c snd_timer_continue +EXPORT_SYMBOL vmlinux 0xa017edca km_policy_notify +EXPORT_SYMBOL vmlinux 0xa02054b2 pci_pme_active +EXPORT_SYMBOL vmlinux 0xa02f4a8a inetdev_by_index +EXPORT_SYMBOL vmlinux 0xa04222f4 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa048a3d2 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa04b51f7 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0xa06fc3c4 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa08f6b47 iov_iter_npages +EXPORT_SYMBOL vmlinux 0xa0981f2b phy_device_create +EXPORT_SYMBOL vmlinux 0xa0a3b04e __mdiobus_register +EXPORT_SYMBOL vmlinux 0xa0aae687 imx_ssi_fiq_end +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0c42041 mmc_can_trim +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0ecd94f md_cluster_ops +EXPORT_SYMBOL vmlinux 0xa0efead8 inet6_del_offload +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa0fd2427 snd_pci_quirk_lookup_id +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa11b61a6 __blk_end_request +EXPORT_SYMBOL vmlinux 0xa11b89d2 netdev_features_change +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa144582b blk_rq_init +EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts +EXPORT_SYMBOL vmlinux 0xa17b7aa6 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xa192813b idr_for_each +EXPORT_SYMBOL vmlinux 0xa1a05f52 neigh_parms_release +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1bf21f7 tcp_init_sock +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1d55e90 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xa1d9a252 pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1e82fd8 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xa1f0ebea bit_waitqueue +EXPORT_SYMBOL vmlinux 0xa1fdfe27 inode_init_once +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa220e5c6 nf_getsockopt +EXPORT_SYMBOL vmlinux 0xa2237f01 blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0xa22c02ea omapdss_default_get_timings +EXPORT_SYMBOL vmlinux 0xa2646ebe backlight_device_register +EXPORT_SYMBOL vmlinux 0xa2672ba7 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa2872d57 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0xa2abc69b __page_symlink +EXPORT_SYMBOL vmlinux 0xa2c143dd dev_change_flags +EXPORT_SYMBOL vmlinux 0xa2e25e35 blk_start_queue +EXPORT_SYMBOL vmlinux 0xa2e74536 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xa2f0c4ea ps2_end_command +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa31daa3e seq_file_path +EXPORT_SYMBOL vmlinux 0xa3211046 security_path_rename +EXPORT_SYMBOL vmlinux 0xa3295a6b fb_set_cmap +EXPORT_SYMBOL vmlinux 0xa33414bb __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0xa336feb7 nand_manuf_ids +EXPORT_SYMBOL vmlinux 0xa33eb6a7 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xa3430e74 fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0xa348608c dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0xa35444e4 dispc_write_irqenable +EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get +EXPORT_SYMBOL vmlinux 0xa381944f dql_reset +EXPORT_SYMBOL vmlinux 0xa3855145 security_file_permission +EXPORT_SYMBOL vmlinux 0xa38be088 param_get_byte +EXPORT_SYMBOL vmlinux 0xa39a123a fence_add_callback +EXPORT_SYMBOL vmlinux 0xa3bdc245 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL vmlinux 0xa3f793dd ndisc_mc_map +EXPORT_SYMBOL vmlinux 0xa4058ce1 give_up_console +EXPORT_SYMBOL vmlinux 0xa40b442e dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xa414882d add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xa4235263 max8925_set_bits +EXPORT_SYMBOL vmlinux 0xa43708e9 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf +EXPORT_SYMBOL vmlinux 0xa43b193c inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xa441d6aa eth_gro_complete +EXPORT_SYMBOL vmlinux 0xa448a5ca skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xa4610bc6 omap_rev +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa47755af d_invalidate +EXPORT_SYMBOL vmlinux 0xa4867ced __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xa48f5b09 omap_dma_set_global_params +EXPORT_SYMBOL vmlinux 0xa4b42c55 omap_set_dma_priority +EXPORT_SYMBOL vmlinux 0xa4bfd402 user_path_create +EXPORT_SYMBOL vmlinux 0xa4c3cd86 eth_validate_addr +EXPORT_SYMBOL vmlinux 0xa4d02cfd generic_writepages +EXPORT_SYMBOL vmlinux 0xa4df06a0 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0xa4dfc145 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xa4e805b6 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0xa4eadcc9 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xa4f58891 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0xa50218cb of_iomap +EXPORT_SYMBOL vmlinux 0xa50f33cc bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xa52bb79a jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0xa546275b pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xa5504988 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa557cd69 current_in_userns +EXPORT_SYMBOL vmlinux 0xa55a11ca sk_wait_data +EXPORT_SYMBOL vmlinux 0xa5897627 nand_scan_bbt +EXPORT_SYMBOL vmlinux 0xa58fea9d mempool_destroy +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa5a633b9 sg_last +EXPORT_SYMBOL vmlinux 0xa5a84715 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xa5b85f0e unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xa5c3e4b1 vme_master_request +EXPORT_SYMBOL vmlinux 0xa5c9f541 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xa5cef8ad release_resource +EXPORT_SYMBOL vmlinux 0xa5da7243 vme_dma_request +EXPORT_SYMBOL vmlinux 0xa617a8e8 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL vmlinux 0xa61e4362 omap_request_dma +EXPORT_SYMBOL vmlinux 0xa6394011 xfrm_input +EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember +EXPORT_SYMBOL vmlinux 0xa652c0c6 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xa652c4ef __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0xa65c23c9 put_tty_driver +EXPORT_SYMBOL vmlinux 0xa6721f54 udp_seq_open +EXPORT_SYMBOL vmlinux 0xa67374f0 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0xa6753cb8 of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa69c159c rtnl_create_link +EXPORT_SYMBOL vmlinux 0xa6a49e9e dev_mc_sync +EXPORT_SYMBOL vmlinux 0xa6b64150 dev_get_by_index +EXPORT_SYMBOL vmlinux 0xa6bab23d dqstats +EXPORT_SYMBOL vmlinux 0xa6beccfb simple_write_end +EXPORT_SYMBOL vmlinux 0xa6c94ab9 key_reject_and_link +EXPORT_SYMBOL vmlinux 0xa6d27498 fsnotify_get_group +EXPORT_SYMBOL vmlinux 0xa6efb998 tso_count_descs +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa71a0cbe bio_phys_segments +EXPORT_SYMBOL vmlinux 0xa71e588b blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xa7263f69 init_buffer +EXPORT_SYMBOL vmlinux 0xa7322c47 dev_trans_start +EXPORT_SYMBOL vmlinux 0xa73426ee scsi_dma_map +EXPORT_SYMBOL vmlinux 0xa734a3e9 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa7426c94 blk_complete_request +EXPORT_SYMBOL vmlinux 0xa75fc426 init_net +EXPORT_SYMBOL vmlinux 0xa7645ca4 lock_fb_info +EXPORT_SYMBOL vmlinux 0xa7800f19 kobject_del +EXPORT_SYMBOL vmlinux 0xa7b1507e d_lookup +EXPORT_SYMBOL vmlinux 0xa7b63d62 pps_lookup_dev +EXPORT_SYMBOL vmlinux 0xa7b89271 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xa7d2ef80 dmam_pool_create +EXPORT_SYMBOL vmlinux 0xa7d4253d qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0xa7d97bbc deactivate_super +EXPORT_SYMBOL vmlinux 0xa7e0f4b2 input_event +EXPORT_SYMBOL vmlinux 0xa7ec6806 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xa7fa9d2d phy_disconnect +EXPORT_SYMBOL vmlinux 0xa7ffe272 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0xa8010795 simple_follow_link +EXPORT_SYMBOL vmlinux 0xa82c8be9 pcie_get_mps +EXPORT_SYMBOL vmlinux 0xa82ee134 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa8580f5c km_is_alive +EXPORT_SYMBOL vmlinux 0xa869929f xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa875908a dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xa889b2cc dget_parent +EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end +EXPORT_SYMBOL vmlinux 0xa8d116bd xfrm_register_mode +EXPORT_SYMBOL vmlinux 0xa8d5669e tcp_close +EXPORT_SYMBOL vmlinux 0xa8de6c6b snd_pcm_notify +EXPORT_SYMBOL vmlinux 0xa8ecd62c ac97_bus_type +EXPORT_SYMBOL vmlinux 0xa8f137de fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa9389c1c devm_iounmap +EXPORT_SYMBOL vmlinux 0xa943f0b0 elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0xa964dd13 gpmc_cs_request +EXPORT_SYMBOL vmlinux 0xa9658cd3 kobject_add +EXPORT_SYMBOL vmlinux 0xa96a2161 bio_alloc_pages +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9c953b3 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0xa9d2f3f7 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xa9ecb9c9 phy_start +EXPORT_SYMBOL vmlinux 0xa9ed908f scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xaa051404 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xaa287241 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0xaa321e15 ip_ct_attach +EXPORT_SYMBOL vmlinux 0xaa33e535 alloc_disk +EXPORT_SYMBOL vmlinux 0xaa4818b5 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa95940f always_delete_dentry +EXPORT_SYMBOL vmlinux 0xaab9e6ef jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xaac51217 flush_kernel_dcache_page +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaae2e8d1 __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0xaaeb8be8 ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab00ca77 generic_readlink +EXPORT_SYMBOL vmlinux 0xab15c91d blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xab1f50d8 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0xab21a6ed dss_mgr_register_framedone_handler +EXPORT_SYMBOL vmlinux 0xab3e0ac2 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xab4acf23 prepare_creds +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab64cc15 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0xab694444 bsearch +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab7603e7 imx_ssi_fiq_start +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab978d8e handle_edge_irq +EXPORT_SYMBOL vmlinux 0xab983f6b rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0xaba3ad0c radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xabb69347 cfb_copyarea +EXPORT_SYMBOL vmlinux 0xabc86cb4 vme_bus_num +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabcd7d27 netif_skb_features +EXPORT_SYMBOL vmlinux 0xabdd6463 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xabe44430 sock_create_lite +EXPORT_SYMBOL vmlinux 0xabf3d41d blk_queue_bounce +EXPORT_SYMBOL vmlinux 0xabfcb4c3 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac3498a3 lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0xac390091 dev_base_lock +EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear +EXPORT_SYMBOL vmlinux 0xac41c428 input_set_abs_params +EXPORT_SYMBOL vmlinux 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL vmlinux 0xac463bea devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xac48ac97 tegra_powergate_remove_clamping +EXPORT_SYMBOL vmlinux 0xac59b05d phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0xac59fdf3 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0xac811df3 clkdev_alloc +EXPORT_SYMBOL vmlinux 0xac937a86 __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacbc52bf ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacceabd0 register_netdev +EXPORT_SYMBOL vmlinux 0xacd474bd irq_to_desc +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacdbfaf0 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0xace0a728 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xacee04f6 arp_tbl +EXPORT_SYMBOL vmlinux 0xacefffb9 genl_unregister_family +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacfc834f write_cache_pages +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad099d7f shdma_cleanup +EXPORT_SYMBOL vmlinux 0xad0dc098 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xad442aaa snd_device_free +EXPORT_SYMBOL vmlinux 0xad57adb9 __pci_register_driver +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xadb047e6 skb_copy_bits +EXPORT_SYMBOL vmlinux 0xadd01b63 insert_inode_locked +EXPORT_SYMBOL vmlinux 0xadd0539a skb_pad +EXPORT_SYMBOL vmlinux 0xadd0dfa1 generic_fillattr +EXPORT_SYMBOL vmlinux 0xade88e76 snd_malloc_pages +EXPORT_SYMBOL vmlinux 0xadf42bd5 __request_region +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae003b54 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0xae11f147 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0xae2d3f25 tc6393xb_lcd_mode +EXPORT_SYMBOL vmlinux 0xae31613f scsi_register +EXPORT_SYMBOL vmlinux 0xae711fea generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xae77a595 radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0xae7f7eb0 input_unregister_device +EXPORT_SYMBOL vmlinux 0xae85a27e radix_tree_lookup +EXPORT_SYMBOL vmlinux 0xaea65429 kill_bdev +EXPORT_SYMBOL vmlinux 0xaebc5627 pci_dev_get +EXPORT_SYMBOL vmlinux 0xaebd6f41 key_payload_reserve +EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0xaed56a27 netlink_broadcast +EXPORT_SYMBOL vmlinux 0xaee8e8d8 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL vmlinux 0xaf08f65c snd_card_file_add +EXPORT_SYMBOL vmlinux 0xaf2cf7a5 scsi_init_io +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf42ee5a pcie_set_mps +EXPORT_SYMBOL vmlinux 0xaf4c71bd md_finish_reshape +EXPORT_SYMBOL vmlinux 0xaf50e76d elf_set_personality +EXPORT_SYMBOL vmlinux 0xaf654f8b i2c_release_client +EXPORT_SYMBOL vmlinux 0xaf7c8367 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0xaf84865e __get_user_8 +EXPORT_SYMBOL vmlinux 0xaf85e2dd key_alloc +EXPORT_SYMBOL vmlinux 0xaf8aa518 system_rev +EXPORT_SYMBOL vmlinux 0xaf8ee9a7 inet_frag_kill +EXPORT_SYMBOL vmlinux 0xaf968209 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0xaf9ea96e netif_device_attach +EXPORT_SYMBOL vmlinux 0xafb7d40a ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0xafd5bfc4 init_special_inode +EXPORT_SYMBOL vmlinux 0xb01ae7fc mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0xb01fe737 set_binfmt +EXPORT_SYMBOL vmlinux 0xb04cf0fe lg_local_unlock +EXPORT_SYMBOL vmlinux 0xb04e5777 fb_blank +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb066b530 iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0xb081b9c3 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xb08d4b23 dev_driver_string +EXPORT_SYMBOL vmlinux 0xb0913303 elm_decode_bch_error_page +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0a9bbe4 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0c1d258 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xb0d2aa8d done_path_create +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0ffdc83 __blk_end_request_all +EXPORT_SYMBOL vmlinux 0xb11badff blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb135e1ad blk_register_region +EXPORT_SYMBOL vmlinux 0xb1366e3d tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xb146dcf8 ppp_input +EXPORT_SYMBOL vmlinux 0xb15c988b skb_split +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb18c2aad neigh_direct_output +EXPORT_SYMBOL vmlinux 0xb1a53107 blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0xb1ad28e0 __gnu_mcount_nc +EXPORT_SYMBOL vmlinux 0xb1af49a6 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xb1b14981 seq_dentry +EXPORT_SYMBOL vmlinux 0xb1bb20b6 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1c9da0d pid_task +EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xb1d9aabd lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0xb1eb0200 vfs_write +EXPORT_SYMBOL vmlinux 0xb1fab95d mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xb1fca84f pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xb1ff923a get_task_io_context +EXPORT_SYMBOL vmlinux 0xb20bf6a0 kernel_accept +EXPORT_SYMBOL vmlinux 0xb225e81b __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xb2309274 genphy_config_init +EXPORT_SYMBOL vmlinux 0xb261d4c0 security_path_link +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb29b6ef8 nf_log_unset +EXPORT_SYMBOL vmlinux 0xb2a2b815 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0xb2b8274b eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0xb2b943fc skb_seq_read +EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xb2c54197 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on +EXPORT_SYMBOL vmlinux 0xb2d76623 serio_interrupt +EXPORT_SYMBOL vmlinux 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL vmlinux 0xb2ee3e91 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xb2fa3dbf nf_log_packet +EXPORT_SYMBOL vmlinux 0xb324b742 get_disk +EXPORT_SYMBOL vmlinux 0xb32d7b7e radix_tree_tagged +EXPORT_SYMBOL vmlinux 0xb367c984 mxc_set_irq_fiq +EXPORT_SYMBOL vmlinux 0xb370f83d scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xb37c6cf6 pcim_enable_device +EXPORT_SYMBOL vmlinux 0xb382a45a netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0xb397509f page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xb3b3d720 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xb3bb6744 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0xb3c4dd1f sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xb3c8bafc fd_install +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3de5cce dev_notice +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb41b8e19 bio_copy_data +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb428735c param_get_int +EXPORT_SYMBOL vmlinux 0xb4390f9a mcount +EXPORT_SYMBOL vmlinux 0xb4392fbf security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xb43ae786 of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem +EXPORT_SYMBOL vmlinux 0xb455768c blk_recount_segments +EXPORT_SYMBOL vmlinux 0xb459468a tty_kref_put +EXPORT_SYMBOL vmlinux 0xb4608945 fasync_helper +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb47aa088 nand_bch_calculate_ecc +EXPORT_SYMBOL vmlinux 0xb483395a tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0xb491d4af bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0xb4a807ef skb_unlink +EXPORT_SYMBOL vmlinux 0xb4b160e7 dcache_dir_close +EXPORT_SYMBOL vmlinux 0xb4b94377 __nand_correct_data +EXPORT_SYMBOL vmlinux 0xb4c240bf __alloc_skb +EXPORT_SYMBOL vmlinux 0xb4c328fa flush_old_exec +EXPORT_SYMBOL vmlinux 0xb4c6d967 inet_del_protocol +EXPORT_SYMBOL vmlinux 0xb4c8bb01 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0xb4e02242 get_unmapped_area +EXPORT_SYMBOL vmlinux 0xb4f141a2 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xb4fe8b6f d_tmpfile +EXPORT_SYMBOL vmlinux 0xb5198b77 _raw_read_lock +EXPORT_SYMBOL vmlinux 0xb55a988b blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0xb55d902d blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xb5684e29 idr_find_slowpath +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb576c393 htc_egpio_get_wakeup_irq +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5a4bca1 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5aabef1 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xb5abc219 of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0xb5b14a20 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xb5c00014 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free +EXPORT_SYMBOL vmlinux 0xb5d9454c printk_emit +EXPORT_SYMBOL vmlinux 0xb5d9fcba pci_find_bus +EXPORT_SYMBOL vmlinux 0xb5df11f4 pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0xb5e548be gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0xb60ef030 invalidate_partition +EXPORT_SYMBOL vmlinux 0xb62db46a copy_strings_kernel +EXPORT_SYMBOL vmlinux 0xb630b45a netlink_ack +EXPORT_SYMBOL vmlinux 0xb65e8cd8 unregister_nls +EXPORT_SYMBOL vmlinux 0xb665368a __ps2_command +EXPORT_SYMBOL vmlinux 0xb6682fa4 nvm_submit_io +EXPORT_SYMBOL vmlinux 0xb675c645 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6a7175f truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0xb6ab239e audit_log_start +EXPORT_SYMBOL vmlinux 0xb6cae182 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xb6d3daf1 qcom_scm_hdcp_req +EXPORT_SYMBOL vmlinux 0xb6f78efb gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0xb714690b drop_super +EXPORT_SYMBOL vmlinux 0xb72da20e input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0xb73d9ec1 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb755a959 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL vmlinux 0xb7706a95 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb7823e2f dispc_ovl_setup +EXPORT_SYMBOL vmlinux 0xb782b951 lookup_bdev +EXPORT_SYMBOL vmlinux 0xb78715c0 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0xb78f634d dm_get_device +EXPORT_SYMBOL vmlinux 0xb79eb569 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xb79ec15d mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0xb7a6a0c5 security_task_getsecid +EXPORT_SYMBOL vmlinux 0xb7ba76c7 __aeabi_unwind_cpp_pr2 +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7d0e97c mmc_register_driver +EXPORT_SYMBOL vmlinux 0xb7d69da9 km_report +EXPORT_SYMBOL vmlinux 0xb7fd9bd6 bio_put +EXPORT_SYMBOL vmlinux 0xb8049542 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xb817261c register_framebuffer +EXPORT_SYMBOL vmlinux 0xb81960ca snprintf +EXPORT_SYMBOL vmlinux 0xb83bd831 fb_get_mode +EXPORT_SYMBOL vmlinux 0xb8452652 register_key_type +EXPORT_SYMBOL vmlinux 0xb866ad9e vme_irq_request +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb87831cb neigh_table_init +EXPORT_SYMBOL vmlinux 0xb8821c8a skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xb8ce945a __sk_dst_check +EXPORT_SYMBOL vmlinux 0xb8d23d80 copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0xb8dd818e kfree_skb_partial +EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xb8e997f3 input_set_keycode +EXPORT_SYMBOL vmlinux 0xb9019edd cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0xb911cc46 snd_card_set_id +EXPORT_SYMBOL vmlinux 0xb9154302 snd_pcm_lib_write +EXPORT_SYMBOL vmlinux 0xb928869e lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0xb92f75c6 dquot_get_state +EXPORT_SYMBOL vmlinux 0xb95f98d6 _memset_io +EXPORT_SYMBOL vmlinux 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL vmlinux 0xb9673264 del_gendisk +EXPORT_SYMBOL vmlinux 0xb97c2367 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0xb991d4ce udp_sendmsg +EXPORT_SYMBOL vmlinux 0xb9937199 tcf_register_action +EXPORT_SYMBOL vmlinux 0xb99984d4 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xb9a8f03b omap_stop_dma +EXPORT_SYMBOL vmlinux 0xb9acd3d9 __put_user_2 +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9f640e5 sock_update_memcg +EXPORT_SYMBOL vmlinux 0xb9fddcdd bdev_read_only +EXPORT_SYMBOL vmlinux 0xba1e07a4 inet_listen +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba4ae097 enable_fiq +EXPORT_SYMBOL vmlinux 0xba5157c1 pagevec_lookup +EXPORT_SYMBOL vmlinux 0xba52abc5 padata_remove_cpu +EXPORT_SYMBOL vmlinux 0xba6590d4 find_get_entry +EXPORT_SYMBOL vmlinux 0xba759401 devfreq_add_device +EXPORT_SYMBOL vmlinux 0xba75a209 module_put +EXPORT_SYMBOL vmlinux 0xba7d870a __mxc_cpu_type +EXPORT_SYMBOL vmlinux 0xbabe3a6d __dev_set_mtu +EXPORT_SYMBOL vmlinux 0xbac3cbf2 ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0xbad1b179 blk_integrity_register +EXPORT_SYMBOL vmlinux 0xbad52e8a max8998_bulk_read +EXPORT_SYMBOL vmlinux 0xbaf6cb54 scsi_remove_host +EXPORT_SYMBOL vmlinux 0xbaf97c32 rtnl_notify +EXPORT_SYMBOL vmlinux 0xbafa13a2 bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xbafeee36 dispc_runtime_get +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb05ee31 snd_card_disconnect +EXPORT_SYMBOL vmlinux 0xbb147ff1 seq_puts +EXPORT_SYMBOL vmlinux 0xbb2b4455 shdma_chan_filter +EXPORT_SYMBOL vmlinux 0xbb2d479d freeze_super +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb4c9200 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0xbb4e54a0 dma_async_device_register +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb5fc294 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0xbb660627 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xbb72d4fe __put_user_1 +EXPORT_SYMBOL vmlinux 0xbb881aaf dev_activate +EXPORT_SYMBOL vmlinux 0xbb8dd5ac tegra_io_rail_power_on +EXPORT_SYMBOL vmlinux 0xbb8e3888 register_md_personality +EXPORT_SYMBOL vmlinux 0xbb92c7ed set_page_dirty +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbbb834f8 unregister_netdev +EXPORT_SYMBOL vmlinux 0xbbc59506 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xbbc65e04 amba_driver_unregister +EXPORT_SYMBOL vmlinux 0xbbd09580 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xbbd1fba0 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xbc10dd97 __put_user_4 +EXPORT_SYMBOL vmlinux 0xbc16623c mdiobus_write +EXPORT_SYMBOL vmlinux 0xbc18b052 flush_signals +EXPORT_SYMBOL vmlinux 0xbc30f692 ptp_find_pin +EXPORT_SYMBOL vmlinux 0xbc358241 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xbc42be1c jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0xbc6329b0 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xbc6d507e ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0xbc7f8b39 tty_port_close +EXPORT_SYMBOL vmlinux 0xbc883a1a serio_open +EXPORT_SYMBOL vmlinux 0xbc907085 dquot_drop +EXPORT_SYMBOL vmlinux 0xbca3cb6a phy_detach +EXPORT_SYMBOL vmlinux 0xbca863f6 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xbca9b335 snd_pcm_suspend +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcc5be1c md_write_end +EXPORT_SYMBOL vmlinux 0xbd0273a5 simple_dname +EXPORT_SYMBOL vmlinux 0xbd02ed4d dss_install_mgr_ops +EXPORT_SYMBOL vmlinux 0xbd0d78f8 abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xbd17c6de gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xbd2c9467 inode_change_ok +EXPORT_SYMBOL vmlinux 0xbd64bb1d filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0xbd798e4f twl6040_power +EXPORT_SYMBOL vmlinux 0xbd8bbd52 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbd9f66cb blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0xbd9f7f04 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xbda45ad5 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xbda8eb62 path_get +EXPORT_SYMBOL vmlinux 0xbdab3cb8 kill_anon_super +EXPORT_SYMBOL vmlinux 0xbdbb4cb4 add_disk +EXPORT_SYMBOL vmlinux 0xbdc4f9d7 pci_release_regions +EXPORT_SYMBOL vmlinux 0xbdce054e console_stop +EXPORT_SYMBOL vmlinux 0xbdcfbd2c devm_clk_put +EXPORT_SYMBOL vmlinux 0xbddf0c39 netlink_set_err +EXPORT_SYMBOL vmlinux 0xbde60e3c nlmsg_notify +EXPORT_SYMBOL vmlinux 0xbdec4d08 fence_remove_callback +EXPORT_SYMBOL vmlinux 0xbdedb6b2 irq_stat +EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp +EXPORT_SYMBOL vmlinux 0xbe10713e scsi_host_lookup +EXPORT_SYMBOL vmlinux 0xbe1a0592 icmp_send +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe3e0f99 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0xbe63ee40 request_resource +EXPORT_SYMBOL vmlinux 0xbe7545df kobject_init +EXPORT_SYMBOL vmlinux 0xbe8860a8 dispc_mgr_go_busy +EXPORT_SYMBOL vmlinux 0xbe8fb90c dispc_mgr_get_framedone_irq +EXPORT_SYMBOL vmlinux 0xbea6343d tty_check_change +EXPORT_SYMBOL vmlinux 0xbebf665f bitmap_endwrite +EXPORT_SYMBOL vmlinux 0xbee8c114 nf_reinject +EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xbeed92cc redraw_screen +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbf077e6f lease_modify +EXPORT_SYMBOL vmlinux 0xbf091150 page_symlink +EXPORT_SYMBOL vmlinux 0xbf0c06d0 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0xbf0e50f1 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0xbf24bca3 d_set_fallthru +EXPORT_SYMBOL vmlinux 0xbf2930e1 bdgrab +EXPORT_SYMBOL vmlinux 0xbf2a093a swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0xbf2c6753 skb_tx_error +EXPORT_SYMBOL vmlinux 0xbf3146d9 elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0xbf32664f generic_show_options +EXPORT_SYMBOL vmlinux 0xbf3b8675 snd_ctl_make_virtual_master +EXPORT_SYMBOL vmlinux 0xbf41ae4e snd_timer_new +EXPORT_SYMBOL vmlinux 0xbf436225 tty_unregister_device +EXPORT_SYMBOL vmlinux 0xbf486982 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xbf58afd7 vfs_unlink +EXPORT_SYMBOL vmlinux 0xbf75ea6c tegra114_clock_tune_cpu_trimmers_low +EXPORT_SYMBOL vmlinux 0xbf781872 param_get_bool +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf865a65 phy_print_status +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfb89b6e clear_wb_congested +EXPORT_SYMBOL vmlinux 0xbfc04219 set_security_override +EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block +EXPORT_SYMBOL vmlinux 0xbfd4be63 locks_mandatory_area +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbff3826c mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0xc003bad4 release_sock +EXPORT_SYMBOL vmlinux 0xc0056be5 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0xc006af6c of_get_cpu_node +EXPORT_SYMBOL vmlinux 0xc00955ae mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0xc05119fe sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xc066ac8c kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0xc068440e __kfifo_alloc +EXPORT_SYMBOL vmlinux 0xc06dc98b sg_miter_skip +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc08a945a jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xc08f68ce tty_name +EXPORT_SYMBOL vmlinux 0xc092b2fc pci_disable_device +EXPORT_SYMBOL vmlinux 0xc0a6a8c5 omap_set_dma_dest_burst_mode +EXPORT_SYMBOL vmlinux 0xc0a98385 profile_pc +EXPORT_SYMBOL vmlinux 0xc0aa518f inode_init_owner +EXPORT_SYMBOL vmlinux 0xc0bc1cce put_io_context +EXPORT_SYMBOL vmlinux 0xc0bfd55d tty_write_room +EXPORT_SYMBOL vmlinux 0xc0c92537 unregister_cdrom +EXPORT_SYMBOL vmlinux 0xc0cf95f9 omap_vrfb_request_ctx +EXPORT_SYMBOL vmlinux 0xc0dd6a66 register_netdevice +EXPORT_SYMBOL vmlinux 0xc0fa0ba9 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xc1005774 udp6_set_csum +EXPORT_SYMBOL vmlinux 0xc10e84b4 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xc1134af5 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0xc117b70a tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten +EXPORT_SYMBOL vmlinux 0xc135b4ca locks_remove_posix +EXPORT_SYMBOL vmlinux 0xc1497d05 read_code +EXPORT_SYMBOL vmlinux 0xc14cdbb7 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xc1648730 copy_to_iter +EXPORT_SYMBOL vmlinux 0xc16e3610 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0xc179a596 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xc18cfc9f get_user_pages +EXPORT_SYMBOL vmlinux 0xc1af8f3b tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xc1ca91c4 thaw_bdev +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1da847c pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc1eda0e8 pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0xc21c0d4f unregister_quota_format +EXPORT_SYMBOL vmlinux 0xc22f6a0a mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0xc257223c i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0xc260c965 d_delete +EXPORT_SYMBOL vmlinux 0xc268e984 scsi_register_driver +EXPORT_SYMBOL vmlinux 0xc269c871 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xc27100d3 get_super_thawed +EXPORT_SYMBOL vmlinux 0xc27dc208 dquot_destroy +EXPORT_SYMBOL vmlinux 0xc2a050d8 napi_gro_frags +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2a81c5f wait_on_page_bit +EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xc2d711e1 krealloc +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc3091ba3 snd_ctl_new1 +EXPORT_SYMBOL vmlinux 0xc31753c3 tegra_powergate_power_off +EXPORT_SYMBOL vmlinux 0xc32f1aa8 user_revoke +EXPORT_SYMBOL vmlinux 0xc342f064 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xc345d866 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0xc359fb65 abort +EXPORT_SYMBOL vmlinux 0xc3729df2 block_write_full_page +EXPORT_SYMBOL vmlinux 0xc37a0e46 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xc3834de5 free_task +EXPORT_SYMBOL vmlinux 0xc38e8257 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0xc394be34 netdev_change_features +EXPORT_SYMBOL vmlinux 0xc39fb0d5 snd_pcm_hw_refine +EXPORT_SYMBOL vmlinux 0xc3a2df3c get_cached_acl +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3ecd584 bio_copy_kern +EXPORT_SYMBOL vmlinux 0xc3fe5659 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xc40355df elv_rb_find +EXPORT_SYMBOL vmlinux 0xc41b7517 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xc41f0516 node_states +EXPORT_SYMBOL vmlinux 0xc42a9167 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xc43f4289 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0xc447bd4f qdisc_list_del +EXPORT_SYMBOL vmlinux 0xc45e760a register_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0xc47c929c of_dev_get +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4bb1d50 nand_bch_correct_data +EXPORT_SYMBOL vmlinux 0xc4bbef6b xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xc4e20fb4 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0xc5004107 __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0xc5036a73 migrate_page_copy +EXPORT_SYMBOL vmlinux 0xc505afcf devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xc506b53f open_check_o_direct +EXPORT_SYMBOL vmlinux 0xc52da066 omap_set_dma_dest_params +EXPORT_SYMBOL vmlinux 0xc552fa70 scsi_host_get +EXPORT_SYMBOL vmlinux 0xc5718627 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0xc57b3171 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0xc5883313 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xc58e0d42 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5afd323 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0xc5c140ca __devm_request_region +EXPORT_SYMBOL vmlinux 0xc5d38946 nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc620de8b sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc632da03 sk_capable +EXPORT_SYMBOL vmlinux 0xc6463aca release_firmware +EXPORT_SYMBOL vmlinux 0xc64a26d9 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xc64c41f1 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0xc65537d0 memremap +EXPORT_SYMBOL vmlinux 0xc6699e01 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xc66bd448 padata_do_parallel +EXPORT_SYMBOL vmlinux 0xc66fa6a6 ida_remove +EXPORT_SYMBOL vmlinux 0xc672f6b8 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xc67fb289 param_set_ullong +EXPORT_SYMBOL vmlinux 0xc683b095 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xc688d45e wireless_spy_update +EXPORT_SYMBOL vmlinux 0xc68b070f phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0xc6938686 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xc6a94fdb devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6d37f29 submit_bh +EXPORT_SYMBOL vmlinux 0xc6de77b4 gen_new_estimator +EXPORT_SYMBOL vmlinux 0xc6fb06af xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xc7106199 input_free_device +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc72d22f1 d_splice_alias +EXPORT_SYMBOL vmlinux 0xc74818b3 xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0xc751e76a iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc77721a1 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc782b32d param_ops_int +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a06332 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7ab4086 seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xc7bcbc8d add_wait_queue +EXPORT_SYMBOL vmlinux 0xc7bf32b9 kmap_high +EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn +EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape +EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0xc845bf40 tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xc846e05f dma_pool_create +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc85384de nf_hook_slow +EXPORT_SYMBOL vmlinux 0xc859aae8 sock_efree +EXPORT_SYMBOL vmlinux 0xc8681dad find_lock_entry +EXPORT_SYMBOL vmlinux 0xc8687783 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xc870ea76 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc89bb0c1 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xc89fd7a2 get_empty_filp +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b252d1 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8e2fe78 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xc8e4f8d4 seq_release_private +EXPORT_SYMBOL vmlinux 0xc900da7b sock_setsockopt +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc91bb3a1 bio_chain +EXPORT_SYMBOL vmlinux 0xc91c6fbe abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0xc92b399f sg_miter_stop +EXPORT_SYMBOL vmlinux 0xc9361e11 scsi_device_get +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc977759b simple_rename +EXPORT_SYMBOL vmlinux 0xc9973fba __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9aaa9a5 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0xc9b8c308 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0xc9e60d55 omap_dss_find_device +EXPORT_SYMBOL vmlinux 0xc9f857f5 snd_pcm_hw_rule_add +EXPORT_SYMBOL vmlinux 0xc9f8891c fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy +EXPORT_SYMBOL vmlinux 0xca11ca1b omapdss_register_output +EXPORT_SYMBOL vmlinux 0xca3cfd3c tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xca3e839c __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xca410eb7 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xca41eaa3 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0xca5d7cd4 input_register_device +EXPORT_SYMBOL vmlinux 0xca7f222f nf_log_set +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca9ad655 omapdss_output_set_device +EXPORT_SYMBOL vmlinux 0xca9f713b blk_make_request +EXPORT_SYMBOL vmlinux 0xca9ff827 kernel_setsockopt +EXPORT_SYMBOL vmlinux 0xcab013b0 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xcabcfc33 cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0xcad65f13 pci_release_region +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcaff2b36 set_groups +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb0cac47 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xcb17c41e padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xcb27d74e dev_uc_flush +EXPORT_SYMBOL vmlinux 0xcb466063 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xcb4b700a dcache_readdir +EXPORT_SYMBOL vmlinux 0xcb7fa822 km_query +EXPORT_SYMBOL vmlinux 0xcb8af4f2 locks_copy_lock +EXPORT_SYMBOL vmlinux 0xcb92e85f blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xcbba3adb simple_setattr +EXPORT_SYMBOL vmlinux 0xcbbbe065 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc01d03 unregister_key_type +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbeac4be hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcbee6439 ida_simple_get +EXPORT_SYMBOL vmlinux 0xcc01b8c3 mtd_concat_create +EXPORT_SYMBOL vmlinux 0xcc0748f4 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc25ec98 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0xcc4ff65a bio_uncopy_user +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5393ba make_kgid +EXPORT_SYMBOL vmlinux 0xcc8b48f6 rwsem_wake +EXPORT_SYMBOL vmlinux 0xcc90f88e pci_bus_type +EXPORT_SYMBOL vmlinux 0xccb2f14a kobject_get +EXPORT_SYMBOL vmlinux 0xccb74075 __nlmsg_put +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccc9aab7 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xccfef64f skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL vmlinux 0xcd091d0c seq_escape +EXPORT_SYMBOL vmlinux 0xcd0a4d31 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd30b95a tmio_core_mmc_clk_div +EXPORT_SYMBOL vmlinux 0xcd3e0f68 security_inode_permission +EXPORT_SYMBOL vmlinux 0xcd4f3edd sync_blockdev +EXPORT_SYMBOL vmlinux 0xcd5747c2 inet_ioctl +EXPORT_SYMBOL vmlinux 0xcd63c845 __aeabi_lasr +EXPORT_SYMBOL vmlinux 0xcd646fed swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0xcd6a2c2e mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0xcd6e7449 parent_mem_cgroup +EXPORT_SYMBOL vmlinux 0xcda2a1b0 ata_dev_printk +EXPORT_SYMBOL vmlinux 0xcdb6e8c4 cdev_alloc +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdc49e19 lockref_get +EXPORT_SYMBOL vmlinux 0xcdca2bbd phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0xcdcde551 bio_split +EXPORT_SYMBOL vmlinux 0xcdd0ca9c of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0xcdd30409 inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0xcddf2034 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0xcdf1a259 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0xcdf216ff kthread_stop +EXPORT_SYMBOL vmlinux 0xce0eb7f7 dst_alloc +EXPORT_SYMBOL vmlinux 0xce1a6aab dev_uc_del +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce30f482 gen_pool_free +EXPORT_SYMBOL vmlinux 0xce3ca308 copy_from_user_toio +EXPORT_SYMBOL vmlinux 0xce3caf88 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0xce5577c2 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce665c65 snd_pcm_mmap_data +EXPORT_SYMBOL vmlinux 0xce79a00d mmc_can_reset +EXPORT_SYMBOL vmlinux 0xce9ffdca inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0xcea1647f sock_sendmsg +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceab1abf i2c_master_send +EXPORT_SYMBOL vmlinux 0xceb36696 __scsi_add_device +EXPORT_SYMBOL vmlinux 0xcebfa15b kernel_read +EXPORT_SYMBOL vmlinux 0xcec0be58 param_get_uint +EXPORT_SYMBOL vmlinux 0xcec24a86 scsi_execute +EXPORT_SYMBOL vmlinux 0xcecfd42e omapdss_unregister_display +EXPORT_SYMBOL vmlinux 0xceeb0985 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0xceed7f85 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcefdc0ed security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xcf124e9d __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0xcf169fea kset_unregister +EXPORT_SYMBOL vmlinux 0xcf28b41e i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0xcf608fed brioctl_set +EXPORT_SYMBOL vmlinux 0xcf762aec dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0xcf88625f mempool_create_node +EXPORT_SYMBOL vmlinux 0xcfa6bf35 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xcfb7d94a i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0xcfd41446 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xcfd8bfae complete_request_key +EXPORT_SYMBOL vmlinux 0xcfdc15c8 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xcfecef8c omap_dss_get_output +EXPORT_SYMBOL vmlinux 0xcfeed8d2 amba_device_unregister +EXPORT_SYMBOL vmlinux 0xcff0a552 nf_afinfo +EXPORT_SYMBOL vmlinux 0xcff6b676 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0xd00f3962 processor +EXPORT_SYMBOL vmlinux 0xd01b95fb scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0xd022e8c0 snd_pcm_release_substream +EXPORT_SYMBOL vmlinux 0xd034105f lockref_put_return +EXPORT_SYMBOL vmlinux 0xd04a3f4d vfs_read +EXPORT_SYMBOL vmlinux 0xd053ce8e blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0xd06762da grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xd06834ca jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd07bf237 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0xd099b090 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0bd1173 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0xd0ddc169 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xd0e67a8f ip6_frag_init +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0xd100acbd _raw_write_lock +EXPORT_SYMBOL vmlinux 0xd1067ba7 dispc_ovl_enabled +EXPORT_SYMBOL vmlinux 0xd1135bb3 fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0xd1157735 release_and_free_resource +EXPORT_SYMBOL vmlinux 0xd14824a7 blk_requeue_request +EXPORT_SYMBOL vmlinux 0xd1664669 vlan_vid_add +EXPORT_SYMBOL vmlinux 0xd169679f frontswap_register_ops +EXPORT_SYMBOL vmlinux 0xd17386bb register_sound_midi +EXPORT_SYMBOL vmlinux 0xd18151d8 param_ops_ulong +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd18e7610 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xd1920a5c scsi_add_device +EXPORT_SYMBOL vmlinux 0xd194a0ca of_phy_find_device +EXPORT_SYMBOL vmlinux 0xd196c9be kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xd1990ce0 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xd19a7516 phy_drivers_register +EXPORT_SYMBOL vmlinux 0xd19cbd4b input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0xd1a69b69 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0xd1ad352a nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0xd1ad8d4e component_match_add +EXPORT_SYMBOL vmlinux 0xd1b89c22 snd_timer_notify +EXPORT_SYMBOL vmlinux 0xd1bd4290 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xd1c84dfb hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xd1c8cc4f pci_dev_driver +EXPORT_SYMBOL vmlinux 0xd1cbad85 md_register_thread +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1e2c93b __breadahead +EXPORT_SYMBOL vmlinux 0xd1e79cae fence_wait_timeout +EXPORT_SYMBOL vmlinux 0xd20ad406 uart_add_one_port +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd25c47f1 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd25fa572 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd2907403 page_address +EXPORT_SYMBOL vmlinux 0xd295898a snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL vmlinux 0xd2a941d4 sg_init_table +EXPORT_SYMBOL vmlinux 0xd2af138b reservation_ww_class +EXPORT_SYMBOL vmlinux 0xd2b353b4 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd3078e3d dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd343c4f8 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xd34aa966 vm_insert_pfn +EXPORT_SYMBOL vmlinux 0xd34de401 bioset_create +EXPORT_SYMBOL vmlinux 0xd355787f pci_get_slot +EXPORT_SYMBOL vmlinux 0xd36644b8 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xd3862c56 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0xd3a26f78 mmc_free_host +EXPORT_SYMBOL vmlinux 0xd3a9dd53 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xd3aa83ac ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xd3b3dcac param_set_long +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3c2c139 param_set_invbool +EXPORT_SYMBOL vmlinux 0xd3dbfbc4 _find_first_zero_bit_le +EXPORT_SYMBOL vmlinux 0xd3e6f60d cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xd3f63f1c bdput +EXPORT_SYMBOL vmlinux 0xd4106339 generic_read_dir +EXPORT_SYMBOL vmlinux 0xd41298a8 key_invalidate +EXPORT_SYMBOL vmlinux 0xd418e1c0 adjust_resource +EXPORT_SYMBOL vmlinux 0xd41b76d7 __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0xd42eaa42 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xd44763f3 seq_putc +EXPORT_SYMBOL vmlinux 0xd45dda80 kill_pid +EXPORT_SYMBOL vmlinux 0xd4669fad complete +EXPORT_SYMBOL vmlinux 0xd46b16a6 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0xd46f2fd4 serio_unregister_port +EXPORT_SYMBOL vmlinux 0xd488d8c1 of_device_is_available +EXPORT_SYMBOL vmlinux 0xd49a7cd8 misc_register +EXPORT_SYMBOL vmlinux 0xd4a8d164 elv_rb_del +EXPORT_SYMBOL vmlinux 0xd4b31f50 bioset_free +EXPORT_SYMBOL vmlinux 0xd4bd3b57 nvm_register_target +EXPORT_SYMBOL vmlinux 0xd4c89ef1 ptp_clock_register +EXPORT_SYMBOL vmlinux 0xd4c94205 get_phy_device +EXPORT_SYMBOL vmlinux 0xd4fdfe60 blk_end_request +EXPORT_SYMBOL vmlinux 0xd515394a sock_get_timestamp +EXPORT_SYMBOL vmlinux 0xd5476254 current_fs_time +EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0xd572aa5d inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xd57d9368 tcp_seq_open +EXPORT_SYMBOL vmlinux 0xd581a24b set_device_ro +EXPORT_SYMBOL vmlinux 0xd58761d3 iget_locked +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd59f5aa8 con_copy_unimap +EXPORT_SYMBOL vmlinux 0xd5a193d3 dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0xd5b1d616 dma_release_from_coherent +EXPORT_SYMBOL vmlinux 0xd5c4ffc3 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0xd5d2c29c of_get_mac_address +EXPORT_SYMBOL vmlinux 0xd5f3f31f cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0xd5f58b39 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0xd6054905 phy_register_fixup +EXPORT_SYMBOL vmlinux 0xd6083318 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xd61347c6 register_sysctl +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd626702d input_register_handle +EXPORT_SYMBOL vmlinux 0xd627480b strncat +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd63a05bb adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xd640e2f7 inode_get_bytes +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd66a22f1 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68f1138 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xd696212b mmc_request_done +EXPORT_SYMBOL vmlinux 0xd6cbce30 serio_close +EXPORT_SYMBOL vmlinux 0xd6cdc71d jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0xd6e6a4b6 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd71af494 pipe_lock +EXPORT_SYMBOL vmlinux 0xd74289f9 __percpu_counter_add +EXPORT_SYMBOL vmlinux 0xd74ca8fe padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write +EXPORT_SYMBOL vmlinux 0xd7b11dec eth_change_mtu +EXPORT_SYMBOL vmlinux 0xd7bbd729 kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0xd7c39b18 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0xd7c4edab __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xd7daab18 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0xd7dfb244 unregister_qdisc +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7fad685 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0xd81a9727 led_blink_set +EXPORT_SYMBOL vmlinux 0xd85cd67e __wake_up +EXPORT_SYMBOL vmlinux 0xd87612b0 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0xd8775014 end_page_writeback +EXPORT_SYMBOL vmlinux 0xd8a81407 pci_enable_msix +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b07f08 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0xd8bb8f85 sock_from_file +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8f96006 passthru_features_check +EXPORT_SYMBOL vmlinux 0xd9070acb pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0xd91d7315 neigh_seq_start +EXPORT_SYMBOL vmlinux 0xd94ae173 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0xd951b1db rfkill_alloc +EXPORT_SYMBOL vmlinux 0xd955d2b7 omap_set_dma_dest_data_pack +EXPORT_SYMBOL vmlinux 0xd961e284 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xd96cf471 netlink_net_capable +EXPORT_SYMBOL vmlinux 0xd978c6a0 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0xd97edd47 neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0xd9817728 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd98cd291 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xd98f3b7a twl6040_reg_read +EXPORT_SYMBOL vmlinux 0xd9a45c73 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xd9ba8f1a shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen +EXPORT_SYMBOL vmlinux 0xd9d8dd71 d_rehash +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9dace0f __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xd9ea02b0 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xd9ec26d4 __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xd9ff002d gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xda032f46 ip6_xmit +EXPORT_SYMBOL vmlinux 0xda05cebc lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0xda1167b0 filp_close +EXPORT_SYMBOL vmlinux 0xda15a6a5 tty_unthrottle +EXPORT_SYMBOL vmlinux 0xda1e3685 param_set_byte +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda492afc ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0xda61f453 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xda644845 sock_no_listen +EXPORT_SYMBOL vmlinux 0xda65ef30 inet_frag_find +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda92eeaf setup_new_exec +EXPORT_SYMBOL vmlinux 0xda9b4f6a tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xdaa57ec3 totalhigh_pages +EXPORT_SYMBOL vmlinux 0xdaa5cebf input_inject_event +EXPORT_SYMBOL vmlinux 0xdaabd8ad netdev_master_upper_dev_link_private +EXPORT_SYMBOL vmlinux 0xdaafc807 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdad97f94 __raw_writesw +EXPORT_SYMBOL vmlinux 0xdb02fc81 snd_card_free_when_closed +EXPORT_SYMBOL vmlinux 0xdb0e969b backlight_force_update +EXPORT_SYMBOL vmlinux 0xdb4292e4 omap_set_dma_params +EXPORT_SYMBOL vmlinux 0xdb562b27 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb8faed3 md_integrity_register +EXPORT_SYMBOL vmlinux 0xdb93b838 dispc_free_irq +EXPORT_SYMBOL vmlinux 0xdb940d24 iterate_supers_type +EXPORT_SYMBOL vmlinux 0xdbb46c0b free_buffer_head +EXPORT_SYMBOL vmlinux 0xdbcce0c8 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0xdbd783d8 generic_file_llseek +EXPORT_SYMBOL vmlinux 0xdbe89a02 swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xdbf8a8fe pcim_iomap +EXPORT_SYMBOL vmlinux 0xdc02757f snd_jack_set_key +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc14ab78 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc1e955c tcp_disconnect +EXPORT_SYMBOL vmlinux 0xdc2c7a84 ps2_begin_command +EXPORT_SYMBOL vmlinux 0xdc38816d ip_getsockopt +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc5c6297 videomode_to_omap_video_timings +EXPORT_SYMBOL vmlinux 0xdc6928aa of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0xdc6f65db buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0xdc834296 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0xdc8372a0 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL vmlinux 0xdc942659 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0xdc98986b pci_enable_device +EXPORT_SYMBOL vmlinux 0xdca522d2 xfrm_lookup +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcb21cab mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xdcb66a34 get_fs_type +EXPORT_SYMBOL vmlinux 0xdcd07c69 __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0xdcd45758 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xdcf7aa47 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xdcfabdfb reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0xdd056bc2 pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0xdd06e4f4 keyring_clear +EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat +EXPORT_SYMBOL vmlinux 0xdd1343d8 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0xdd226fa9 __raw_readsw +EXPORT_SYMBOL vmlinux 0xdd24aa85 free_page_put_link +EXPORT_SYMBOL vmlinux 0xdd25f5c8 generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr +EXPORT_SYMBOL vmlinux 0xdd3916ac _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xdd430415 mmc_start_bkops +EXPORT_SYMBOL vmlinux 0xdd71311f pm860x_reg_write +EXPORT_SYMBOL vmlinux 0xdd724fa5 PDE_DATA +EXPORT_SYMBOL vmlinux 0xdd729f4d cdrom_check_events +EXPORT_SYMBOL vmlinux 0xdd8b28d7 scsi_unregister +EXPORT_SYMBOL vmlinux 0xdd9a48eb tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xddb61ab0 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0xddbce3c6 inet_release +EXPORT_SYMBOL vmlinux 0xddbe59bc vmap +EXPORT_SYMBOL vmlinux 0xddd99d42 sock_wmalloc +EXPORT_SYMBOL vmlinux 0xddea1e1a devm_ioremap +EXPORT_SYMBOL vmlinux 0xde37494b netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xde474aaf param_get_string +EXPORT_SYMBOL vmlinux 0xde48c665 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde948ce2 vme_register_driver +EXPORT_SYMBOL vmlinux 0xdeacbe7a pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0xdebfd1b6 inet_frags_fini +EXPORT_SYMBOL vmlinux 0xdec030e5 arm_clear_user +EXPORT_SYMBOL vmlinux 0xdecaf078 d_alloc +EXPORT_SYMBOL vmlinux 0xdecbb295 snd_card_file_remove +EXPORT_SYMBOL vmlinux 0xded09bb4 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xded49cd9 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xdf0a9762 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0xdf15587e blk_execute_rq +EXPORT_SYMBOL vmlinux 0xdf1be8a1 dquot_disable +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf2c374f input_get_keycode +EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update +EXPORT_SYMBOL vmlinux 0xdf40e72f linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf5d780d jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf6ed4a6 skb_checksum_help +EXPORT_SYMBOL vmlinux 0xdf767310 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf970c2c bdevname +EXPORT_SYMBOL vmlinux 0xdf9dcb5c unlink_framebuffer +EXPORT_SYMBOL vmlinux 0xdfa065fe nand_lock +EXPORT_SYMBOL vmlinux 0xdfa2ec71 simple_empty +EXPORT_SYMBOL vmlinux 0xdfb2521d tcp_connect +EXPORT_SYMBOL vmlinux 0xdfb79a85 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0xdfc4ae08 __i2c_transfer +EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init +EXPORT_SYMBOL vmlinux 0xdfc81cdd ata_print_version +EXPORT_SYMBOL vmlinux 0xdfd91ce9 omap_type +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xe001d12f ilookup5 +EXPORT_SYMBOL vmlinux 0xe02b557e dst_init +EXPORT_SYMBOL vmlinux 0xe0413f66 dquot_alloc +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe063efbd mutex_lock +EXPORT_SYMBOL vmlinux 0xe06c764a qdisc_destroy +EXPORT_SYMBOL vmlinux 0xe0740e47 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe0926100 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0xe094ef39 sg_next +EXPORT_SYMBOL vmlinux 0xe0952200 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0xe09e64e4 file_open_root +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b60cc6 __pagevec_release +EXPORT_SYMBOL vmlinux 0xe0bcf275 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco +EXPORT_SYMBOL vmlinux 0xe0d32f49 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xe0e9013e snd_register_oss_device +EXPORT_SYMBOL vmlinux 0xe0fd7b50 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0xe112d297 pci_clear_master +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe1156e28 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xe11e1f94 invalidate_bdev +EXPORT_SYMBOL vmlinux 0xe127fb18 down_killable +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe1368d66 mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0xe13a09eb fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0xe1639adb igrab +EXPORT_SYMBOL vmlinux 0xe16b87b8 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe181adbe __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xe18812e2 blkdev_put +EXPORT_SYMBOL vmlinux 0xe1aabe11 request_key +EXPORT_SYMBOL vmlinux 0xe1c256cc netdev_warn +EXPORT_SYMBOL vmlinux 0xe1e0a281 blk_run_queue +EXPORT_SYMBOL vmlinux 0xe1f0ab3a _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe20f3688 phy_suspend +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2c12417 sock_no_poll +EXPORT_SYMBOL vmlinux 0xe2cc96f7 __do_once_done +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2d900b2 __netif_schedule +EXPORT_SYMBOL vmlinux 0xe2e09482 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe2f92042 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup +EXPORT_SYMBOL vmlinux 0xe2fb510a kill_fasync +EXPORT_SYMBOL vmlinux 0xe305f0e5 freezing_slow_path +EXPORT_SYMBOL vmlinux 0xe308e160 bio_integrity_advance +EXPORT_SYMBOL vmlinux 0xe334717d tcp_poll +EXPORT_SYMBOL vmlinux 0xe339a320 from_kprojid +EXPORT_SYMBOL vmlinux 0xe3459755 ptp_clock_event +EXPORT_SYMBOL vmlinux 0xe361bbbb __bread_gfp +EXPORT_SYMBOL vmlinux 0xe36a4a73 mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0xe36b0b4c gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xe3706e34 napi_gro_flush +EXPORT_SYMBOL vmlinux 0xe37d10ae omap_dispc_unregister_isr +EXPORT_SYMBOL vmlinux 0xe3844a18 pci_scan_bus +EXPORT_SYMBOL vmlinux 0xe38f1f1d touch_buffer +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3d7c440 snd_soc_alloc_ac97_codec +EXPORT_SYMBOL vmlinux 0xe3d8781a mfd_add_devices +EXPORT_SYMBOL vmlinux 0xe3e991e8 lwtunnel_input +EXPORT_SYMBOL vmlinux 0xe40d7762 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xe410dc95 set_bh_page +EXPORT_SYMBOL vmlinux 0xe4137a76 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0xe413be4a memcg_socket_limit_enabled +EXPORT_SYMBOL vmlinux 0xe43014db snd_timer_global_register +EXPORT_SYMBOL vmlinux 0xe43274bc proc_dointvec +EXPORT_SYMBOL vmlinux 0xe44bc265 devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0xe44cadd0 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0xe45579f3 vm_mmap +EXPORT_SYMBOL vmlinux 0xe4701a47 dentry_needs_remove_privs +EXPORT_SYMBOL vmlinux 0xe47992e3 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xe48e0858 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xe4903ebd dev_uc_unsync +EXPORT_SYMBOL vmlinux 0xe4c80097 cacheid +EXPORT_SYMBOL vmlinux 0xe4ca9376 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0xe4ccfc55 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xe4cf1ba0 iput +EXPORT_SYMBOL vmlinux 0xe4d4693d filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0xe4e6f7ee seq_write +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4f4c0ac mpage_readpage +EXPORT_SYMBOL vmlinux 0xe50d2635 inet_add_protocol +EXPORT_SYMBOL vmlinux 0xe5197b20 write_one_page +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe525c1bd of_device_unregister +EXPORT_SYMBOL vmlinux 0xe530e2d7 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0xe533f3c6 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xe53823e2 dev_add_offload +EXPORT_SYMBOL vmlinux 0xe5445af6 omap_get_dma_dst_pos +EXPORT_SYMBOL vmlinux 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe582f13f get_mem_type +EXPORT_SYMBOL vmlinux 0xe5840540 clocksource_unregister +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe588c552 param_set_charp +EXPORT_SYMBOL vmlinux 0xe58dc818 put_cmsg +EXPORT_SYMBOL vmlinux 0xe5b20e6a sync_inode +EXPORT_SYMBOL vmlinux 0xe5bbea8d blk_start_request +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5ec46a3 nvm_erase_blk +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe6087c4e udp_del_offload +EXPORT_SYMBOL vmlinux 0xe634dcc3 flow_cache_fini +EXPORT_SYMBOL vmlinux 0xe63b304a bio_flush_dcache_pages +EXPORT_SYMBOL vmlinux 0xe659e75f alloc_anon_inode +EXPORT_SYMBOL vmlinux 0xe65bb471 __frontswap_load +EXPORT_SYMBOL vmlinux 0xe663a465 skb_make_writable +EXPORT_SYMBOL vmlinux 0xe66452ab dql_init +EXPORT_SYMBOL vmlinux 0xe66ca510 blk_queue_split +EXPORT_SYMBOL vmlinux 0xe68773bc __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xe691ace6 irq_set_chip +EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe69e1a55 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0xe69e5784 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0xe6c57aaa scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xe6dcddeb tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe7075b97 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xe707d823 __aeabi_uidiv +EXPORT_SYMBOL vmlinux 0xe70a9854 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0xe712a4ae vfs_writev +EXPORT_SYMBOL vmlinux 0xe738c332 nobh_write_end +EXPORT_SYMBOL vmlinux 0xe75cf1bf ata_port_printk +EXPORT_SYMBOL vmlinux 0xe78240c3 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7b6315e kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7e15910 dispc_clear_irqstatus +EXPORT_SYMBOL vmlinux 0xe7f7d83b md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xe80c785c netdev_alert +EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe829f603 generic_end_io_acct +EXPORT_SYMBOL vmlinux 0xe82a0cb3 netdev_info +EXPORT_SYMBOL vmlinux 0xe82ab440 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xe86ec444 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss +EXPORT_SYMBOL vmlinux 0xe87ebdae dev_open +EXPORT_SYMBOL vmlinux 0xe8832df4 __devm_release_region +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8a89ce0 nand_correct_data +EXPORT_SYMBOL vmlinux 0xe8af2b0b phy_start_aneg +EXPORT_SYMBOL vmlinux 0xe8b9a3d4 mx51_revision +EXPORT_SYMBOL vmlinux 0xe8ba46a3 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8cfce09 tegra114_clock_deassert_dfll_dvco_reset +EXPORT_SYMBOL vmlinux 0xe8f65fc9 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xe912da6b unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe931f8e8 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0xe93de8a7 dev_get_by_name +EXPORT_SYMBOL vmlinux 0xe93f6042 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xe953662d inode_dio_wait +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0xe962e674 i2c_master_recv +EXPORT_SYMBOL vmlinux 0xe96b1505 lro_flush_all +EXPORT_SYMBOL vmlinux 0xe9772b62 try_to_release_page +EXPORT_SYMBOL vmlinux 0xe98993ba ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xe98e36be vmalloc_to_page +EXPORT_SYMBOL vmlinux 0xe99027cd fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0xe996e8f9 filemap_fdatawait +EXPORT_SYMBOL vmlinux 0xe9a3c951 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xe9ad2c3c ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xe9be808d lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0xe9ccfcd3 ioremap_cache +EXPORT_SYMBOL vmlinux 0xe9ea0ec4 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0xe9f0a704 __brelse +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea0a706d cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xea115ab8 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0xea1f5b88 samsung_rev +EXPORT_SYMBOL vmlinux 0xea20eafd of_platform_device_create +EXPORT_SYMBOL vmlinux 0xea237412 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0xea3193af skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xea34155b dma_sync_wait +EXPORT_SYMBOL vmlinux 0xea52bde6 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0xea59f9f3 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xea5e2c9b tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xea6690da cad_pid +EXPORT_SYMBOL vmlinux 0xea682de0 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0xea787144 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xea7987f1 key_update +EXPORT_SYMBOL vmlinux 0xea8b4d8d bio_integrity_free +EXPORT_SYMBOL vmlinux 0xeac05e89 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xeac3933d register_qdisc +EXPORT_SYMBOL vmlinux 0xeaf02e3e padata_stop +EXPORT_SYMBOL vmlinux 0xeb03b389 __raw_readsl +EXPORT_SYMBOL vmlinux 0xeb1b120e omap_set_dma_write_mode +EXPORT_SYMBOL vmlinux 0xeb1f944b wireless_send_event +EXPORT_SYMBOL vmlinux 0xeb304bdc up_write +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xeb66dfe9 km_policy_expired +EXPORT_SYMBOL vmlinux 0xeb8a7034 sg_miter_next +EXPORT_SYMBOL vmlinux 0xeb92fc30 inode_init_always +EXPORT_SYMBOL vmlinux 0xebc8e418 phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0xebd18deb sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xebe163bd dquot_transfer +EXPORT_SYMBOL vmlinux 0xebfdcbdf system_serial_high +EXPORT_SYMBOL vmlinux 0xec1aa6ef memzero_explicit +EXPORT_SYMBOL vmlinux 0xec2dfe61 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xec303199 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xec3ac437 snd_pcm_limit_hw_rates +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec4fa3eb pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xec509520 sync_filesystem +EXPORT_SYMBOL vmlinux 0xec8e920c kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xeca85d90 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0xecafbb88 ip_options_compile +EXPORT_SYMBOL vmlinux 0xecbcb8bb radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0xecbda538 blk_end_request_all +EXPORT_SYMBOL vmlinux 0xecbf4687 pcim_pin_device +EXPORT_SYMBOL vmlinux 0xecd65670 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xece86a84 __module_get +EXPORT_SYMBOL vmlinux 0xececcd1a loop_backing_file +EXPORT_SYMBOL vmlinux 0xecf8a3b4 __raw_writesl +EXPORT_SYMBOL vmlinux 0xed0bc3cb napi_complete_done +EXPORT_SYMBOL vmlinux 0xed0e24d7 register_console +EXPORT_SYMBOL vmlinux 0xed11e430 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xed246101 generic_perform_write +EXPORT_SYMBOL vmlinux 0xed41fcae blk_run_queue_async +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed7055ca xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xed710c19 down_read_trylock +EXPORT_SYMBOL vmlinux 0xed87acef seq_printf +EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xeda55b40 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0xedafbd3b security_path_mknod +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc7f4ec dq_data_lock +EXPORT_SYMBOL vmlinux 0xedcdd113 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xedd9106d __ashrdi3 +EXPORT_SYMBOL vmlinux 0xedde6907 ab3100_event_register +EXPORT_SYMBOL vmlinux 0xede465f0 tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0xede707a5 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0xedf2590b bdget_disk +EXPORT_SYMBOL vmlinux 0xedf3093a vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xee1069a4 tcp_proc_register +EXPORT_SYMBOL vmlinux 0xee150d59 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xee17e19c udp_add_offload +EXPORT_SYMBOL vmlinux 0xee2bc2d0 omapdss_is_initialized +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee3496c3 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0xee3ecfa1 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0xee4a3fa3 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0xee5299d8 read_cache_page +EXPORT_SYMBOL vmlinux 0xee52dd98 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xee5473cc cont_write_begin +EXPORT_SYMBOL vmlinux 0xee715ef8 lg_global_unlock +EXPORT_SYMBOL vmlinux 0xee747ec8 prepare_binprm +EXPORT_SYMBOL vmlinux 0xee895930 snd_unregister_oss_device +EXPORT_SYMBOL vmlinux 0xee8c4ddd of_mm_gpiochip_add +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee9c3647 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeb206f6 bdget +EXPORT_SYMBOL vmlinux 0xeed3635b proc_dostring +EXPORT_SYMBOL vmlinux 0xeedba9cb register_quota_format +EXPORT_SYMBOL vmlinux 0xeee3d93a sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xeef50e3e tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xeef9d881 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0xeefa368a fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xef000f4e ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0xef0f3eb3 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0xef122d13 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xef14cd3a call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0xef2a5879 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0xef2fdc4f __percpu_counter_init +EXPORT_SYMBOL vmlinux 0xef3829d6 snd_pcm_suspend_all +EXPORT_SYMBOL vmlinux 0xef4de22b of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0xef5744d7 proc_mkdir +EXPORT_SYMBOL vmlinux 0xef587acc scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xef668ea9 dev_addr_add +EXPORT_SYMBOL vmlinux 0xef6ccdd3 clk_add_alias +EXPORT_SYMBOL vmlinux 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL vmlinux 0xef8b6215 scsi_device_put +EXPORT_SYMBOL vmlinux 0xefa7cba7 udplite_prot +EXPORT_SYMBOL vmlinux 0xefbb25bf xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0xefc0a426 bio_integrity_endio +EXPORT_SYMBOL vmlinux 0xefcf3143 wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xefd1b950 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xefd6cf06 __aeabi_unwind_cpp_pr0 +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefe64a2b mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0xefec312f omap_get_dma_active_status +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0253936 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xf03cdc9a inet_select_addr +EXPORT_SYMBOL vmlinux 0xf03f2914 set_wb_congested +EXPORT_SYMBOL vmlinux 0xf04343b8 lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf06c303c omap_video_timings_to_videomode +EXPORT_SYMBOL vmlinux 0xf0801ddd neigh_for_each +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf0bc1dba __sb_end_write +EXPORT_SYMBOL vmlinux 0xf0d3874a jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xf0dec3b9 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0xf0ea9b92 vfs_llseek +EXPORT_SYMBOL vmlinux 0xf0ed2ef4 __raw_writesb +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf1379aa2 input_close_device +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf155de13 vfs_rmdir +EXPORT_SYMBOL vmlinux 0xf16f5c9d register_sound_mixer +EXPORT_SYMBOL vmlinux 0xf192f0ca inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf196ec24 mem_map +EXPORT_SYMBOL vmlinux 0xf19e9355 cpu_online_mask +EXPORT_SYMBOL vmlinux 0xf1a1ed95 read_cache_pages +EXPORT_SYMBOL vmlinux 0xf1c03fa8 inet_sendpage +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1deabf2 div64_u64 +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1ea6f1c __bswapsi2 +EXPORT_SYMBOL vmlinux 0xf1f4f296 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0xf1f590c4 try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xf1f709d0 ppp_register_channel +EXPORT_SYMBOL vmlinux 0xf1f9a722 nf_ct_attach +EXPORT_SYMBOL vmlinux 0xf20522aa blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf223231b netdev_update_features +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf26e3c62 neigh_app_ns +EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered +EXPORT_SYMBOL vmlinux 0xf2a4979e neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2df9c85 forget_cached_acl +EXPORT_SYMBOL vmlinux 0xf2e4e7cc file_update_time +EXPORT_SYMBOL vmlinux 0xf2e782d9 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xf2f01808 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0xf306bc31 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xf309e78d mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0xf3110cb7 dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf31af68d scm_detach_fds +EXPORT_SYMBOL vmlinux 0xf327c8c7 udp_prot +EXPORT_SYMBOL vmlinux 0xf328e997 simple_transaction_get +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf3560fa1 qdisc_list_add +EXPORT_SYMBOL vmlinux 0xf3584864 elevator_change +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf389fea2 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xf3bf2d1e tegra_fuse_readl +EXPORT_SYMBOL vmlinux 0xf3c514a0 pci_save_state +EXPORT_SYMBOL vmlinux 0xf3d75774 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0xf3dd7cf5 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3ee9c99 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xf3f83d75 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xf40019c0 tegra114_clock_tune_cpu_trimmers_init +EXPORT_SYMBOL vmlinux 0xf40b2297 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xf40fd995 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0xf413412b netif_carrier_on +EXPORT_SYMBOL vmlinux 0xf421d08f vme_slave_request +EXPORT_SYMBOL vmlinux 0xf436f20b of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0xf440a71f set_nlink +EXPORT_SYMBOL vmlinux 0xf473ffaf down +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf4852eb7 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xf4855d5f pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0xf4a2d0ad dss_mgr_enable +EXPORT_SYMBOL vmlinux 0xf4a7fc6d omapdss_compat_init +EXPORT_SYMBOL vmlinux 0xf4ba566c bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4befee6 kill_litter_super +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf500dbaf vfs_mkdir +EXPORT_SYMBOL vmlinux 0xf50d7adf i2c_clients_command +EXPORT_SYMBOL vmlinux 0xf53a5036 netpoll_print_options +EXPORT_SYMBOL vmlinux 0xf53c6357 swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf54c51a2 dma_pool_free +EXPORT_SYMBOL vmlinux 0xf55fcdc8 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0xf564412a __aeabi_ulcmp +EXPORT_SYMBOL vmlinux 0xf5bd3b5e simple_transaction_release +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5caf94f scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xf5d1b049 map_destroy +EXPORT_SYMBOL vmlinux 0xf5d74d60 napi_consume_skb +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf5ecd873 tcf_hash_check +EXPORT_SYMBOL vmlinux 0xf5fed497 tcp_make_synack +EXPORT_SYMBOL vmlinux 0xf629b12d security_path_chown +EXPORT_SYMBOL vmlinux 0xf629ce8e icmpv6_send +EXPORT_SYMBOL vmlinux 0xf632f3fa fb_set_suspend +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf66bd6fc stop_tty +EXPORT_SYMBOL vmlinux 0xf67397fe ppp_unit_number +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf6834dff pci_assign_resource +EXPORT_SYMBOL vmlinux 0xf6851d5f register_sysctl_paths +EXPORT_SYMBOL vmlinux 0xf68c76bd sk_net_capable +EXPORT_SYMBOL vmlinux 0xf69e76f3 dcb_setapp +EXPORT_SYMBOL vmlinux 0xf6a41096 inet6_ioctl +EXPORT_SYMBOL vmlinux 0xf6a44075 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xf6ae2d02 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0xf6b39e3b generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6bb76b4 param_get_ullong +EXPORT_SYMBOL vmlinux 0xf6c9d666 tty_port_put +EXPORT_SYMBOL vmlinux 0xf6caa627 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f3cef6 omap_vrfb_setup +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf6ff68e9 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0xf7020eb1 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xf7082253 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xf70c9098 bdi_register +EXPORT_SYMBOL vmlinux 0xf7163ec9 __raw_readsb +EXPORT_SYMBOL vmlinux 0xf73aa5eb netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf75d7393 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xf7802486 __aeabi_uidivmod +EXPORT_SYMBOL vmlinux 0xf78b76a8 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xf78e98d9 __lock_page +EXPORT_SYMBOL vmlinux 0xf79cf012 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0xf79d81ad tty_schedule_flip +EXPORT_SYMBOL vmlinux 0xf7aaeddc ida_init +EXPORT_SYMBOL vmlinux 0xf7bc670a serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0xf7c9b248 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xf7cfc500 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xf7d60001 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xf7dc384a consume_skb +EXPORT_SYMBOL vmlinux 0xf7e01973 vlan_vid_del +EXPORT_SYMBOL vmlinux 0xf7f66a2f bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xf805dd55 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xf80d1319 build_skb +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf8133100 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xf8171c98 kmem_cache_free +EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf84d5851 scsi_remove_target +EXPORT_SYMBOL vmlinux 0xf853bbca omap_vrfb_map_angle +EXPORT_SYMBOL vmlinux 0xf8604bad block_invalidatepage +EXPORT_SYMBOL vmlinux 0xf88d7099 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL vmlinux 0xf89054c7 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xf8a0d1c0 blk_init_tags +EXPORT_SYMBOL vmlinux 0xf8a225c5 cpu_tlb +EXPORT_SYMBOL vmlinux 0xf8ad5755 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xf8b1c807 __dquot_transfer +EXPORT_SYMBOL vmlinux 0xf8d9e769 __napi_complete +EXPORT_SYMBOL vmlinux 0xf8ddb82a ip_do_fragment +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf91d0d30 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xf92ba0e6 of_clk_get +EXPORT_SYMBOL vmlinux 0xf93144b5 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run +EXPORT_SYMBOL vmlinux 0xf9427374 dispc_request_irq +EXPORT_SYMBOL vmlinux 0xf96e1d1c posix_test_lock +EXPORT_SYMBOL vmlinux 0xf977ca2c skb_put +EXPORT_SYMBOL vmlinux 0xf9795f41 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0xf9863cff register_sound_special_device +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9c97013 cdev_del +EXPORT_SYMBOL vmlinux 0xf9dcf156 of_translate_address +EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf +EXPORT_SYMBOL vmlinux 0xf9eba422 kfree_skb_list +EXPORT_SYMBOL vmlinux 0xf9ffa4d1 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xfa3b9f66 page_cache_next_hole +EXPORT_SYMBOL vmlinux 0xfa42810d of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa6abcdc unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0xfa81071c writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xfaa23a1c blk_stop_queue +EXPORT_SYMBOL vmlinux 0xfabf7b18 mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0xfac68eba arm_elf_read_implies_exec +EXPORT_SYMBOL vmlinux 0xfac7ad34 input_reset_device +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacd2e14 pgprot_user +EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfae5406c blkdev_fsync +EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL vmlinux 0xfaf71441 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xfafcbe0d lro_receive_skb +EXPORT_SYMBOL vmlinux 0xfb0eb2fd of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0xfb1860f3 blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0xfb27f82e of_find_device_by_node +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb7d9c45 __udivsi3 +EXPORT_SYMBOL vmlinux 0xfb83a915 eth_mac_addr +EXPORT_SYMBOL vmlinux 0xfb85f97c tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xfb895336 netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfba1df28 blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0xfba29584 snd_pcm_set_ops +EXPORT_SYMBOL vmlinux 0xfba6af36 iterate_dir +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbb3dac5 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xfbc48073 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbc73edd padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xfbcb6290 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0xfbdc5806 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xfbe83ac4 poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbfa0a9b dma_alloc_from_coherent +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc22aa73 vga_tryget +EXPORT_SYMBOL vmlinux 0xfc23081d sock_wake_async +EXPORT_SYMBOL vmlinux 0xfc32f221 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0xfc3908f5 fence_default_wait +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc46646c blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0xfc4ce4b6 param_get_short +EXPORT_SYMBOL vmlinux 0xfc5a7668 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0xfc69b2d6 sound_class +EXPORT_SYMBOL vmlinux 0xfc7338ad msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0xfc86bb0a padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0xfc8891bf clkdev_add +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfceab328 netif_receive_skb +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf85bff audit_log_task_info +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfd20c0ac dump_skip +EXPORT_SYMBOL vmlinux 0xfd2c23a8 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0xfd2e04aa mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0xfd305341 walk_stackframe +EXPORT_SYMBOL vmlinux 0xfd30bf8d dqget +EXPORT_SYMBOL vmlinux 0xfd33b5fa cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xfd5683b9 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0xfd8c5afc release_fiq +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfd9e64e3 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL vmlinux 0xfdc2f1f8 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0xfdc75cc8 kmap_atomic +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfdfd7247 led_update_brightness +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe24fdc8 security_path_truncate +EXPORT_SYMBOL vmlinux 0xfe259120 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xfe2c18a2 nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0xfe3a07c6 of_mdio_parse_addr +EXPORT_SYMBOL vmlinux 0xfe40bf95 dss_feat_get_num_ovls +EXPORT_SYMBOL vmlinux 0xfe46a88d mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe6b81a0 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xfe76dd6e kill_block_super +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe84a4bb xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0xfea7d3ad pci_enable_device_io +EXPORT_SYMBOL vmlinux 0xfebbbab1 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0xfeca7590 radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfedecc15 netif_device_detach +EXPORT_SYMBOL vmlinux 0xfeed268d xfrm_register_type +EXPORT_SYMBOL vmlinux 0xff0cb473 phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff1eda24 iov_iter_init +EXPORT_SYMBOL vmlinux 0xff30161a input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL vmlinux 0xff668f9f iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0xff67b37f __lshrdi3 +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff71563c security_path_mkdir +EXPORT_SYMBOL vmlinux 0xff77689d snd_jack_new +EXPORT_SYMBOL vmlinux 0xff7d683b tcp_req_err +EXPORT_SYMBOL vmlinux 0xff7e7d61 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xff88b628 genphy_suspend +EXPORT_SYMBOL vmlinux 0xff8cbb1f idr_destroy +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff983a0a write_inode_now +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xffa34390 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0xffa3a4bc xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xffb94ef0 _test_and_change_bit +EXPORT_SYMBOL vmlinux 0xffbed5f7 tcp_proto_cgroup +EXPORT_SYMBOL vmlinux 0xffd2cf99 omap_dss_get_num_overlay_managers +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffd6d3fb alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xffdb82bc sg_free_table +EXPORT_SYMBOL vmlinux 0xffe89cc2 netdev_notice +EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0x0a37b4d1 sha1_finup_arm +EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0x2190bf94 sha1_update_arm +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x0077478a ablk_decrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x257e181f __ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x61091efe ablk_set_key +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x67fcd471 ablk_exit +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xc38137b3 ablk_init_common +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xd720b3f6 ablk_init +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xe1e5f989 ablk_encrypt +EXPORT_SYMBOL_GPL crypto/af_alg 0x07f35f58 af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x1318d7d6 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x23262537 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x3d39bad4 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x5959672c af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x694a87ec af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x81487745 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x98b7d06f af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0xd954ef95 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0xec04eee1 af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0xf8e8f12f af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x6feeda84 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x99c307ff async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xc1e7a04c async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x6a60d8b4 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x8c7afade async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x5ccb0ecf __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x745b48fa async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xcb96bef9 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xe448d48b async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x784f2ba3 async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x90868a14 async_xor_val +EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x870d29cf blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x7efc9b1f cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xc826125e cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 +EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 +EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 +EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x6fe02c75 crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0xd5639578 crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/cryptd 0x09806951 cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x1a7a9e34 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x1f5e712a cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x48d5da9b cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x4ad0cecd cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x64476cf8 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x706db0d7 cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x78137f83 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xf6151c1e cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xf8abdf15 cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey +EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey +EXPORT_SYMBOL_GPL crypto/lrw 0x0ac9d067 lrw_crypt +EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table +EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table +EXPORT_SYMBOL_GPL crypto/mcryptd 0x14bdd4d3 mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0x1e46c916 shash_ahash_mcryptd_final +EXPORT_SYMBOL_GPL crypto/mcryptd 0x1e55ebf3 shash_ahash_mcryptd_update +EXPORT_SYMBOL_GPL crypto/mcryptd 0x2987d02c shash_ahash_mcryptd_finup +EXPORT_SYMBOL_GPL crypto/mcryptd 0x418227f0 shash_ahash_mcryptd_digest +EXPORT_SYMBOL_GPL crypto/mcryptd 0x50b42765 mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x81f94bbf mcryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/mcryptd 0x8aa22596 mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0xa003b215 mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x6bef5987 crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xd283a53f crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xd398eff3 crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xf4acdb27 crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xb3e082f0 serpent_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x96c16215 twofish_setkey +EXPORT_SYMBOL_GPL crypto/xts 0xe321454e xts_crypt +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x7971db77 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x83736eb6 sis_info133_for_sata +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x4e205dc3 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x88f07c1a __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xa9ea0a8b __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xfa8a3314 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x18a3a03d bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2e80ba76 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3e068cd3 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x428dd8ba bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x594aa2cf __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x74559ad9 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8172f630 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x858cb027 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8e110b84 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x94e32b2b bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa34e1e4c bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xab44e8e4 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb59aea68 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb9053bde bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd2187255 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd4a903b8 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd7dc59df bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd932b3a4 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdec26ca6 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdf978510 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe52f3663 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf22390ed bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfafa7430 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xff4697f8 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x25155911 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x72312fe3 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x757a67a3 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xbc63b986 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xcdb30f97 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xfdcb3b08 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x00e66336 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x27e57ac9 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2bc02915 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2cf44495 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4c7a565d btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4cda638f btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x508087aa btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x67552d0c btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7a9a8917 btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7fc9c6fd btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xde264d3e btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xea45ee44 btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x258dc0db btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x294db0c3 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2a865b5a btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3eb87b22 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x51abefb2 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x726297c7 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x763577cb btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc27d0544 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xcf2f29a4 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xdef4a837 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xdf542c0f btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x4f9e333a qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xe87685ed qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xf2d262b1 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xdb0c0581 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x02373dca clk_enable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0558a70f qcom_cc_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0d76ccee qcom_find_src_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1ad28e9c clk_rcg_bypass_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1f4159b0 clk_byte2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1fc82dc1 qcom_cc_really_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2bbf74c5 qcom_cc_map +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2c4a90cc clk_is_enabled_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3b0b58e5 clk_regmap_mux_closest_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x53f95e39 clk_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5d9c3e35 devm_clk_register_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x612214bd clk_edp_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x669bd1fd qcom_find_freq +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x67ae803a clk_rcg_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x709d9cf0 clk_pll_configure_sr +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x73964fc2 clk_dyn_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x77c457fa qcom_reset_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8c4dbdbe clk_branch_simple_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8d53d96e clk_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x90b53166 clk_pll_configure_sr_hpm_lp +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x999e1e71 clk_branch2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x99d2c773 clk_rcg2_shared_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9e2e91a1 clk_rcg_bypass2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa1606e61 clk_disable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaace56b1 clk_rcg_esc_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc7994798 clk_branch_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcb0c5248 clk_byte_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcd0a83c6 clk_rcg2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd25fd154 clk_rcg_lcc_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe703bcad clk_pll_vote_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf1f136dc clk_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf69c2f55 clk_pll_sr2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf93e315f clk_regmap_div_ops +EXPORT_SYMBOL_GPL drivers/cpufreq/arm_big_little 0x2f7dab4b bL_cpufreq_register +EXPORT_SYMBOL_GPL drivers/cpufreq/arm_big_little 0xeb81b998 bL_cpufreq_unregister +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x03af05c5 dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x164fb89b dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4813e10a dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x8e7432d3 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xd751e17c dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x26e9e085 hsu_dma_irq +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x809a0cca hsu_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xdb6d4e86 hsu_dma_probe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x088db24a edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0ca0b981 edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1610c0a6 edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1ea2d33e edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2df97747 edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x32dd9129 find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3b13c8ea edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x44627cdb edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4b6f881c edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5440f6bb edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5866f34d edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7a53ffd9 edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7cdd67ef edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8806293a edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x981d6601 edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9f5e339f edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa215edc3 edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb89b35c2 edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xba0f4152 edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0775fb2 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd049bafe edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd18b8896 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xfb538130 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release +EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0xe342fbf5 get_scpi_ops +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x06d6d525 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1feb0af0 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x380b8f7a fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa5f10091 fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb79df05f fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd2964c7b fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x6b3d628b __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xa9fe6d0b __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw_hdmi 0x1ad49bf7 dw_hdmi_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw_hdmi 0x8dcd6f43 dw_hdmi_set_sample_rate +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw_hdmi 0xce27012a dw_hdmi_audio_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw_hdmi 0xd8fe547b dw_hdmi_audio_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw_hdmi 0xe1e36575 dw_hdmi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x009b36ff drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x00a8c185 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0cf7177e drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x19efd665 drm_gem_cma_prime_vunmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3b93e7cb drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x42a5fbb2 drm_gem_cma_describe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x437c21ca drm_gem_cma_prime_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4c678a87 drm_gem_cma_prime_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x51b2f48b of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5bf16048 drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x637a7508 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6f74e8df drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x812ee64a drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x81b3359e drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8823d13f drm_gem_cma_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8a71312f drm_gem_cma_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xaa2712f3 drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xadbb73c9 drm_gem_cma_prime_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfdfd69d2 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1148b623 drm_fbdev_cma_fini +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x16ee793b drm_fb_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x20b8f0a2 drm_fb_cma_debugfs_show +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x72a4b9da drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa992a826 drm_fbdev_cma_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb2c912af drm_fbdev_cma_hotplug_event +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xcc337fd5 drm_fbdev_cma_restore_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x0ce51606 imx_drm_encoder_get_mux_id +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x1cfe024a imx_drm_crtc_vblank_get +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x37707c0a imx_drm_crtc_id +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x419b08de imx_drm_handle_vblank +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x50328df7 imx_drm_add_crtc +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x5df7326c imx_drm_set_bus_format_pins +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x5f056ff0 imx_drm_crtc_vblank_put +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x6ef2ebf8 imx_drm_connector_destroy +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x7f2b68b8 imx_drm_set_bus_format +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xb0dc83eb imx_drm_encoder_parse_of +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xc92795eb imx_drm_encoder_destroy +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xd652b5a4 imx_drm_remove_crtc +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchip_drm_vop 0x54e634e1 rockchip_drm_crtc_mode_config +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x2e52ec4c rockchip_register_crtc_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x5fe09b1a rockchip_fb_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x6f706580 rockchip_unregister_crtc_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x8ae3cdb8 rockchip_drm_dma_detach_device +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xab56ac29 rockchip_drm_encoder_get_mux_id +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xf0f1fb1a rockchip_drm_dma_attach_device +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xa3524bd5 ttm_dma_page_alloc_debugfs +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xc3868ba0 ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xe55cf491 ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x04f7075a ipu_csi_set_mipi_datatype +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0728116a ipu_csi_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0c4e46b0 ipu_cpmem_set_format_passthrough +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0c660b0b ipu_cpmem_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0e42bd95 ipu_csi_set_dest +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0f67337b ipu_ic_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x118160e1 ipu_ic_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x11d8f100 ipu_stride_to_bytes +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x13952dfe ipu_dmfc_enable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x14a0df74 ipu_cpmem_set_yuv_interleaved +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x15ec2ba5 ipu_di_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x16811185 ipu_csi_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x199bd5c8 ipu_dp_disable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1ba497eb ipu_pixelformat_to_colorspace +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1c326ddf ipu_set_ic_src_mux +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1e913d9f ipu_csi_get_window +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x23575f1c ipu_idmac_buffer_is_ready +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2424c9a6 ipu_csi_is_interlaced +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2f92d651 ipu_ic_task_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2f9751b4 ipu_degrees_to_rot_mode +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x30b6999c ipu_rot_mode_to_degrees +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3166aec7 ipu_dmfc_disable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x335b8f35 ipu_dc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x33ddb392 ipu_dp_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x34685f96 ipu_idmac_channel_busy +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3689f4b6 ipu_cpmem_set_block_mode +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x36e56737 ipu_module_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3752dc01 ipu_cpmem_set_yuv_planar +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3837a53c ipu_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3afbb44e ipu_smfc_set_watermark +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3d3939dd ipu_smfc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3e86ea72 ipu_di_get_num +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3fa23281 ipu_cpmem_interlaced_scan +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x48882368 ipu_module_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4917f47a ipu_ic_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4bb3354c ipu_dc_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4c179b49 ipu_dp_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5117a1c4 ipu_cpmem_set_rotation +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x51475e87 ipu_dmfc_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x527f3b94 ipu_smfc_set_burstsize +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x53de277c ipu_di_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5510f345 ipu_cpmem_set_format_rgb +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x57043a75 ipu_dmfc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5ac40a48 ipu_wait_interrupt +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5bc35f5d ipu_cpmem_set_yuv_planar_full +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6077579b ipu_cpmem_set_burstsize +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x60bdf2ec ipu_csi_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x616d1a67 ipu_srm_dp_sync_update +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x623722e2 ipu_ic_task_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x66cb879f ipu_dc_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x67893b19 ipu_idmac_enable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6a0f6b78 ipu_cpmem_set_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7068e939 ipu_dc_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7121bd07 ipu_di_init_sync_panel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x76302d14 ipu_csi_set_skip_smfc +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x76456b98 ipu_idmac_disable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x881488a3 ipu_idmac_lock_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x886c35aa ipu_smfc_map_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9058e289 ipu_smfc_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x951a09d5 ipu_csi_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9540bf80 ipu_ic_task_idma_init +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x99a066d1 ipu_cpmem_zero +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x99a0ef07 ipu_drm_fourcc_to_colorspace +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9c335d85 ipu_pixelformat_is_planar +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9f38e177 ipu_dp_enable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa11dac73 ipu_cpmem_set_axi_id +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa3a739d2 ipu_cpmem_set_stride +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa4b0cabd ipu_dc_disable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa54a83e5 ipu_dp_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa579616b ipu_di_adjust_videomode +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa5dda8e7 ipu_idmac_enable_watermark +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa60b144b ipu_csi_set_window +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa7d2b9e1 ipu_cpmem_set_high_priority +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa96882d8 ipu_ic_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb06f2189 ipu_dp_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb228bf1e ipu_dp_set_global_alpha +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb59dff86 ipu_cpmem_set_image +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb94ca95a ipu_dmfc_init_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xba224d42 ipu_cpmem_set_fmt +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbd810b77 ipu_idmac_get_current_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbeccaa39 ipu_set_csi_src_mux +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc2f55c5b ipu_idmac_set_double_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc3c2cdb0 ipu_smfc_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc6675aa9 ipu_csi_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc677177d ipu_smfc_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc848c5d7 ipu_dmfc_free_bandwidth +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc88d89a1 ipu_mbus_code_to_colorspace +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc97e7a0f ipu_di_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc9ea7b1e ipu_idmac_clear_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcd7c6998 ipu_ic_task_init +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd064a453 ipu_ic_task_graphics_init +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd3fac499 ipu_di_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd5055dd9 ipu_dmfc_alloc_bandwidth +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd5566962 ipu_idmac_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xdc19270f ipu_idmac_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe300a959 ipu_dp_setup_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe3b86336 ipu_csi_init_interface +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe6243c52 ipu_dc_enable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe7366f27 ipu_idmac_channel_irq +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe87dfe9f ipu_cpmem_set_resolution +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xedce876f ipu_idmac_wait_busy +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf1440dc1 ipu_ic_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf69d6cb6 ipu_csi_set_test_generator +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf70ff764 ipu_idmac_select_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf7c92d51 ipu_map_irq +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf7d99d69 ipu_dc_init_sync +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf9ed222e ipu_dp_set_window_pos +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0aefc54a hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0c1a7be4 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0eeb9ef0 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x21995e19 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2241a9b9 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x23ee69e6 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x24d96376 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x28a6c315 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3668d550 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x368a08c4 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x458c2de8 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x47b4d606 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x49059c9e hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4ee420f3 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x57c99d0a hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x598ef64f hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x639ca7a1 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7225c4e5 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x723a04d7 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x77794b38 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7cc709f0 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x871e071b hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x956a48b1 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9bef9bf5 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9e12d07e hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xab4e3d17 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaefce62e hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb1a255be hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb59d1744 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb8fb1078 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc59ce943 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc81e43c2 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xced35836 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe45c3227 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe6aca30d hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0xff11866d hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x81b2b0b5 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x039ca87a roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x1face84f roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x578a1ad0 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xba7b8534 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xbe2a32ef roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xc89c633f roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1a8014ba hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x29e0c937 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x5d012201 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x8f47d98a sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa22ce8b9 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa2d9207f sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xad8bbb27 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf1146560 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xfeaf992d sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x5f49665e hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x19074234 ssip_slave_start_tx +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x799f5668 ssip_slave_get_master +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x81d9332d ssip_slave_stop_tx +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0xb8e989b4 ssip_slave_running +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0xe9d45811 ssip_reset_event +EXPORT_SYMBOL_GPL drivers/hsi/controllers/omap_ssi 0x1eceb763 ssi_waketest +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0e242963 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1cac9337 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x290103ea hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x43faa8e4 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x49a6e424 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6424d3fe hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6cda50fb hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7159c800 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x724ee213 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x971d2bc4 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa9553160 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xaab93be6 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb9565154 hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbcb436c6 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe1cfaa5b hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xed92490d hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xef045298 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf739ac40 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x580ea9f9 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x888b0c55 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xe587c3fe adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0d41ef7f pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2837a80e pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x33686291 pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3922ed7c pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x421fd14d pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4e5d781f pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x67998243 pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x6949089a pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x73211202 pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x9aa13e8b pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa91e6ac5 pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xcc0e9ce6 pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xdea73186 pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe750bae5 pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf6fafcb3 pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x031dd6f0 hwspin_lock_request +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x06d7bb9b hwspin_lock_unregister +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x47595bfb hwspin_lock_free +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x61a0654a of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x7b8de27f __hwspin_trylock +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x99d2df37 __hwspin_lock_timeout +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x9e450860 hwspin_lock_get_id +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x9e6a17ec __hwspin_unlock +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xd85bdd61 hwspin_lock_register +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xde7b3a7b hwspin_lock_request_specific +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x49267cd7 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5eca8178 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7de661a1 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd1b27e02 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe1d991a4 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf8e24e79 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xfd69d134 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x1b7e031c stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x65f1772e stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xce56b703 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xee5cf51c stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf360bc6e stm_source_write +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x143eb067 i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x29a3ff46 i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x2b6d038b i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x43843c9c i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x46baa894 i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x3f235ac4 i2c_add_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xf43e237c i2c_del_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xcb76f749 i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xfd17d9a5 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x09ca77cb bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x0d4e03dc bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x4ec0de01 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x1000f082 ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x18044bc5 ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x27c29419 ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x415a3673 ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x78f0c61f ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x9bfef975 ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xc010e67c ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xc5d00689 ad_sd_reset +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd384925d ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xdbd31c29 ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x53eb6412 iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xd88981e6 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x0f57e2fe ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xcb2903a6 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x5117dc62 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x66e3c3a0 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xe7ae7482 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x00f2d1de adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0dfd77df adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x106c5df5 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x2bf78da4 adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x306f7544 adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x66d62fca adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x85bc4833 adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x87535ea3 adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x917cbf7f adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xef52c2b3 adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf0b00141 adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xfc6eb235 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x02576021 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x037773e8 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x05649d61 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0e40187b iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0f8bf4e1 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1d8f3ab0 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x298a91b2 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2ddaec7d iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3512728b iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x37795ec9 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x43fdf38f iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x485e61d9 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x513eb239 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5f0218d0 devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x631a60f4 devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6cb018b9 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6ec3ca46 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x723818c3 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9f487b82 iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa5a9c429 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaee275b7 devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb3abdd39 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb99c8787 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc4c6a5a7 iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc9594071 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xccd1e3e0 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe0426fcd iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe82744a0 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xea48439f devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf5a85729 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xffc5a2eb iio_update_buffers +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xb8f8421a input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x702f3d0d matrix_keypad_parse_of_params +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x7f127fc8 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x83316f6e cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xa53b3817 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xe25596dd cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x2b489d62 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xb62dc146 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xcdd3399a cyttsp_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x45322b0c cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x93fa5396 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x23008a77 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x2c5b9d92 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x6ded0a90 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xe8c862a2 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x014c80c3 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x166ce333 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1fe388fc wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2a136e3e wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2eba766e wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x538ce2b4 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6101f323 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc778fef7 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xcc96b449 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdac6e3ad wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xeb0ec17b wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf42329a0 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x03308fc8 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x13e51083 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1a668aa1 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x21b7f6c5 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x844a76d9 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x8a60fab0 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa8ae0b1b ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe1ec567b ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xfb69dfb4 ipack_put_device +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x1515834c gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x156086b8 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x1d5b9b69 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x2ae22109 gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x2c99ad5e gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x319c304a gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4b8cdb01 gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x6e7090c8 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7a2d5337 gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x9525defe gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa25faf37 gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa4df4100 gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa866194d gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc831cc43 gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe29655db gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf3492358 gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xfb769e75 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x3a9dd8fa led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x77f4dac5 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xc7cb9433 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xcebbe806 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xd93416dc led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xfd3f0162 led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x07c48264 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x1c0ded40 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x27b4eb76 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3003345f lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x314e7102 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3973baaf lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x4cf98d2c lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x65c4513b lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa98a877d lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb6dd03cd lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe7040d27 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x0138e9df mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x0e42c27f mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x15bb7af5 mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x1c5fbb95 mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x30e7bd1c __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x324812b8 mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x3ba6b997 mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4807711b mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x564b986b chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x729f995b mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x7e860f98 mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe1bb09c2 mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf9cca8f3 mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xfa4e2073 mcb_bus_get +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06628c2f __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06b11706 __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x07e2c777 __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0b1ed8cb __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1683a5f6 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x16c3fa29 __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x16c8cc13 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x18d1988c __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2061620b __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x230dd380 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x29a4c5fd __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2b277945 __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3ee17aab __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x402d6200 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x49c216ec __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d1e9f82 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7930d50e __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7d597e2d __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8461608d __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x84e60671 __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x92d61794 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9415be3c __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad2d4ca2 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb21fadc0 __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb364194a __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbe406c76 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc72008a2 __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd6d1aa5e __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfc24ee1e __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfcc8ed24 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xffd8c38e __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1ef9ee81 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x28450bcd dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4f7ba6ca dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x68f51c3a dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6b4c6190 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x98357d00 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa65e8f70 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc0affdd0 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf0eca080 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x22163b69 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x3909d3a8 dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x594952bd dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x5f407401 dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x62a23587 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9b2b253a dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xdc69e37a dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe004ee92 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x0f4a19e4 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x26897b1e dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x71447d66 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7504f336 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7dd72fbb dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7e33bd75 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe656317b dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x8f12b0eb dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xe7be1d24 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x09472122 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x09521698 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x433209cb dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4af0486b dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x74442a87 dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa8813ad6 dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xb80eab77 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc66ce277 dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcab63c3d dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xeb76d7e2 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf37a3cfe dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11eab9fe dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x150c85ce dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2e730a21 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x33c03da6 dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x619701dc dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9b4b5b29 dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2507774 dm_tm_shadow_block +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbcfdc290 dm_tm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbe0497aa dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe6e4822e dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xead1e727 dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x0d481cad saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x1b994d01 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x5bf5835e saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7fcbbb32 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x96be054d saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb47c0008 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc109af83 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc2e66803 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe0410b49 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfe324f48 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x5afb658c saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x5e9e1dbc saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x64da3ba2 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x65f1f119 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x9246c792 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xc62407d9 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xde130c97 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x00e19834 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x11934158 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x14397043 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x366f2552 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6210f200 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74837924 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7e42feda smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x859b159e sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8a9afc3e smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x960ca37c smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa24a496d smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc24de903 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcda2ae1a smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdfb917c0 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe3fa97f8 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe7821fc9 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf0f92fa3 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x356f7d29 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x22580082 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x3149c313 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x089dc929 media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0x0c156876 media_entity_init +EXPORT_SYMBOL_GPL drivers/media/media 0x266a2a45 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x27ff7021 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0x287915ae media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0x305096ae media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x350729eb media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x7f633bc3 media_entity_create_link +EXPORT_SYMBOL_GPL drivers/media/media 0x91986c9b media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0x92e427ac media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0xa1dc19ff media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0xa8b99f6d media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0xb188949f media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0xb766c828 media_entity_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0xcfcd9f08 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0xdd2b099c media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0xe333f8e4 media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0xf6c389a5 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x706ddb00 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x36042833 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4a350113 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4f49b62e mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5810483e mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6314b5da mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7093f6c0 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x71b69a39 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x72f1000b mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x74f360af mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9c9c6df1 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xada00ae6 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb817cc0d mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xceddcdb4 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd1bdf6d0 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd5dd60bf mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd66023db mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe645836b mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf6503fb1 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfd5ede41 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0de76d56 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x31cfc50c saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3414dd8c saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x42d4b36d saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5a94f050 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6e31f9cd saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6fa1f0a6 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x720d1268 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x742a4624 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7e63112b saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb3694bca saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb395c63d saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb9b122cc saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbca4f36f saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd96b4f5a saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdf61cc71 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe5bbcbdb saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe648b113 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf149e2af saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x27ada091 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x3de45367 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x471e625c ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x8de1341e ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb2e31417 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd480e5f6 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xf0c8d6e5 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/platform/omap/omap-vout 0x085d8e48 omap_vout_try_window +EXPORT_SYMBOL_GPL drivers/media/platform/omap/omap-vout 0x1da5563e omap_vout_default_crop +EXPORT_SYMBOL_GPL drivers/media/platform/omap/omap-vout 0x3739df24 omap_vout_new_window +EXPORT_SYMBOL_GPL drivers/media/platform/omap/omap-vout 0x6db65fc8 omap_vout_new_format +EXPORT_SYMBOL_GPL drivers/media/platform/omap/omap-vout 0xc1644e97 omap_vout_new_crop +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0b2585ce xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x1e942673 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x490bd11c xvip_get_format_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x717dc0c3 xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x7cc0b0f5 xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x7f2c6851 xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xa585953d xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xcd6a23e1 xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xde7ca96b xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x6ee657a4 xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x369d1a20 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xa6300733 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x04fe2b0e ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0efcb516 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x109696a3 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x16f55c67 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x200c0236 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x431bdd24 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x45a32608 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4afe7d00 rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x627c016b ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x66ea4efd rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x67ec0caa ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb00d76af rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb3ab6991 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb4796862 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc306745c rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xca9ea515 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdc195164 rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe1d16e58 rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe2d85bb2 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xe8aeac97 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xbfaed7ec microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xc019dc2c mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xe5b5a363 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x9f11aba7 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x98ff3d84 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x4f029ac1 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x6d42a6c1 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xed5af7d8 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x0a865599 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xcf022aff tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x8a45590d tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xac6d4df0 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x3dbcb6be simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1f3032f6 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2bfd9848 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x41128044 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4342cf8d cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x45d4d8d9 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x51c67901 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x59990ef3 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5c28e855 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x783081da cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x78f62ace cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9cc80b31 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa3d39b71 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa3fb13c1 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xaa6a438b cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb63a3cf2 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbae0f8a7 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbf182ee8 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc118812d cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe9ff5143 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xea34cfc6 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x1d4e8390 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xc84a780b mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x059d6b67 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x22f54c8d em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2fa3df39 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x357da072 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3becce63 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3f45485e em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x55a25fb8 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x672eaf89 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6b79411e em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9515a0ec em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb369b335 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbec8d26f em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc5e05b3c em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc7c9b67f em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe146226a em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe1e155c9 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xed19e1f0 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf835cee9 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x1ca5a302 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x4ec0adab tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x6afebc6b tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x84ac555b tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x0f393cb4 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x134b6009 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x27ce4c0f v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x4de8c67b v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x92cc9250 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x9978dd96 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08982d59 v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x56b55024 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x5fdbe954 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x00bd9642 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x096315e0 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0c5a69bc v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1457cf0b v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1c41e5ba v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1c7a4387 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x20d26cbc v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x20fa7614 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x228630a7 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x22a6df03 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x25d688d0 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x34e96637 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6eeb6cb3 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6f1c35f7 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6f31c7a3 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x864306b7 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9d3f2c0c v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa81704eb v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xac39ed1c v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xac717869 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xafc98f19 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb22f9ec2 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb85944c0 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbcb198b7 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc8c02ff8 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd4270947 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf665f616 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x01c1ae17 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x07535e3b videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x120d775e videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1817269a videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1c1aa294 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2653cb66 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3164bdbd videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x44a200a6 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4e60c107 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x580d65ab videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6457bd58 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x652d581b videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x81f11513 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8a928c6d videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x93163e49 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9fb6e133 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xafa38863 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb7e84a69 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbcbd41d8 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xda3e71d9 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf0ebf296 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf0f3ba34 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf34da319 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfbc47861 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0xa249432b videobuf_dma_contig_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0xd9dba661 videobuf_to_dma_contig +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0xddd09f7f videobuf_queue_dma_contig_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x19a703ec videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x6b0b581d videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x8fe6f399 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa825c75b videobuf_sg_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xf9ded4b0 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x3e4c628d videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x85b8b34f videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xd5ba7eef videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x03811549 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x0eaae2de vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1592ebd4 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x22e3cc31 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x27b06d26 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2a049996 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x33e8e60f vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x396600da vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7d8a2d4e vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x98e243db vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x9b077e05 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa63c2e7f vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa94ed890 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xad44daa6 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd51eba34 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd91fbdf6 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xdc700b8d vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf78e86ce vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x9e3acc0a vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xc8568c9a vb2_dma_contig_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x6549cb63 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x73ec0c4d vb2_dma_sg_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd30ec30f vb2_dma_sg_cleanup_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0xe568d5d5 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x08347ca3 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x08f267e6 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0a2701d2 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0a90f5e1 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0f9711b0 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1a810567 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1c0570d4 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1f603c68 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x216aade1 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2aa81c2f vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3643a761 vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3b365238 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3d8db561 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3dc72ead vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x45833c55 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4ad28c7b vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4df21251 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x574326cf vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5a7b282d vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5c0b19a1 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5d94a534 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x767c76e2 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa1eac830 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xac369ff0 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbd4d0284 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc79b604f vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd0ac1cce vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd33953ec vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdc33fa61 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xeb4eca26 vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xebbf1a31 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xeddf4cea vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0xad030314 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x023992ae __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0b1567d9 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0e2a7007 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0e8520b5 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x189a3a75 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1ebbf765 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2f828290 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3142f88c v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3c30a8c3 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3f9c3b09 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x418ba7cc v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x439c0334 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x44f52701 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x47c1260f __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4b76ee4f v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4be055fa v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5306a1ea v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x55321e47 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x556c3b7b v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5b53a71d v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5eed6ccb v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5ffee3a8 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x722e8f67 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x80598956 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x84610e42 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x94e7f302 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa1f6b9b0 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa550b5f9 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa8f919ec v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xab06e74e __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb33463dd v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc9e71aea v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd9d69cce __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe0e83c69 __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe3f79943 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe53ae0aa __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x07ca00ee pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x0c9703c3 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xf57b76a0 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2dba7d69 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x5b620619 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x80c53d27 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xa4d0fc79 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xae8a16e3 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xd2bf026d da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xf7fc8187 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x19bc74e8 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x8fb7d30b kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb5f0b961 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xede5be00 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf1301d2f kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf3dd4ed2 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xfa15d3e8 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xfd770d6d kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x0b788e24 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xcae00833 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xe941e6e9 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x21e14932 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2ae551af lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7118dcc8 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x8f47da32 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xe2682665 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xfa40df79 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xff0ecefe lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x9099ba60 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xe94eb12b lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xffdb638f lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x11c970f1 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x8ebb75d1 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xb44c5492 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xe6f9eada mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xf4f61fb2 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xf63d3b25 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1537351f pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x19c61a4a pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x454f3bcd pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x52d3126f pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x542e9a29 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5a4ab639 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5b51d515 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x700518b4 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x72542a1c pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xca840cde pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf1913ae4 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x6778fda3 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xad450ed6 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x8b14258d pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x977d888a pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa9984ea3 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xe42834d9 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xeb7965be pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0dc280a7 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x11276d4b rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x1ad2deda rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x1f536d5a rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2905884f rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x39da0628 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x39f6b2a3 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4c45f0e6 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x61b0c405 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x62a16c96 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x6c29b9b0 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x984c1f0b rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa151cbf4 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa2f2d07e rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa43508c0 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xad9cb2f4 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb52e8f80 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb9ceff80 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xbd305281 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xbe900445 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xdf7e74c6 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe939ba38 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf27fddc6 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xfee41635 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x2494db72 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x26c28b74 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x4a6e24b9 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x63adf831 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x868ecf7e rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xa8df6fe8 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xad663522 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xbffabcd5 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xc784543d rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xd5c569a9 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe775df30 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xed7cafe6 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xf1462fc6 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0b77654e si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x15fc679a si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x209ce42b si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x21e0a1ac si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x227a883d si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2660bc7c si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2b99964d si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2d03f91d si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x33412b95 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3ce05b32 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3d1d16f8 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x477eb5a2 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4c739767 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x554b0537 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5f00ccd7 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x60049485 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7e0bf4ad si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7e46dc5d si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x81d4fc1e devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x85abd248 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x88f5bff0 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x949fda18 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x99a60866 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9e5909c4 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa38e45df si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa94a6556 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa94d1b3e si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xab711830 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb091bd27 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc5636b83 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xccee15e4 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd1b255ee si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf91fbff3 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfb14f81e si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0x2d16a0d2 ssbi_read +EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0x578f6150 ssbi_write +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x24df2975 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x4702ecc4 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x4ec97030 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x7bc0df30 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x0f5710f2 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x90ea0ae4 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xd60c6953 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xf6d53313 tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xfab97e92 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x26e46ec4 bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xa586ef2a bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xb0f6a65d bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xf470e868 bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x1cc0f05e cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x7963b531 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x8beb3baf cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xa5b12e8d cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x227e45e3 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x49cb66fe enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x715ea43c enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x790b057d enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa576cca7 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xabe0201e enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xac2058af enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xcc3a30b3 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x3be33d5c lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x614e2b5d lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6e8695bf lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x770283e3 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x896318a8 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x963c3c3f lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe1f04742 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xee34ed85 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x81df6421 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xcd6e377b st_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x7239352e dw_mci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x7aefc5fe dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xf0df8489 dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x12f86101 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x2dd144e9 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xefe64497 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x06c788b1 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x8b6c0ce7 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xf53e4737 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x9cab9572 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x3bf76bdd cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x5e62ef8d cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x98a50a5b cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0x2d05fdfc brcmnand_remove +EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0x909e9ce5 brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0xf80e6c90 brcmnand_pm_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0xb7899dcf sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xc87802bf onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xd6faebad onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xd0657547 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x15b794b4 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1ccaa5b0 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x28fda49c ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4828beca ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6c0032c8 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x784f55e1 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7f387f4e ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9a97406d ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa09d3acc ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa744420a ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa74864fd ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcadcf91a ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe802ee46 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf6ff4615 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x7a64a687 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xf39f5d78 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x130d8855 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1bf9e3ed register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x8540f002 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x8f6e7efe free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xab5d6b5a unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe54ce293 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x01451b15 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x2aed3d7f devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x2d9edb49 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x2e319ba6 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x4cb15814 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7db9f257 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x85cf6142 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x89ad4b8a can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x89e17855 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x8ba850a1 alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x8fcdb9e1 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9a6b233c can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa968fbb2 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xd730e40b alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe1ecb794 can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xedfb00c2 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xf613786b safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xffe1a54f unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x09468da4 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x2ac7ecea free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x56991f3d register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xa93227cc unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x1cefa069 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x394a37a0 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x686c7ffc alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xf6222c49 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x9e29339a arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xba7cef32 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x015bc8a8 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06c5fca7 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a1d9c25 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f3f0ef3 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f5e352b mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f79e177 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x107d741b mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x121cb1f1 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x165d8083 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1673186c mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17e60f49 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19c0c05c mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x201fd863 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x227c95f1 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x227d49e3 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23d54f6c mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24419c26 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24474b3b __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25d79c63 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x272bfd6c mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x275639c9 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2af4747d mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d1820a8 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d4a7462 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31905010 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3314b670 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33f77a84 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34db53af mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3fc51b98 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40ce4070 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44995a92 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4588c705 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45c532da mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x476cd39e mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x478be0d7 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x480ead23 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x498d7ab3 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4aff1625 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b0cceb1 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4cc7ce0a mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4fc90c5b mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50f7da0c mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52255394 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52dc8750 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54cb9557 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58305a18 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5993ab9b mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b442d5e mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c08bfe0 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f9e3b18 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60f2c7cb mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61213994 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63595d4d mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65a007c8 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6848e435 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a786dd7 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ac09411 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c324eca mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6cda8079 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e8e8788 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70a750c6 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73c51dd1 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74535301 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76eb8cdb mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e92d47a mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ff423cc mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82434ac2 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ece79bf mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9006ac3b mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x967e0580 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a9db4a6 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d527c13 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9fa6abdb mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9fd453e7 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa386710a mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8136537 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8eba309 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa3e4824 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa6547d8 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac9127b6 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae96bc24 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb072fb01 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0e788ff mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0ef3d2e mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3083d32 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6aa8937 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6ccb873 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd602047 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf15826f mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf65a408 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf999ceb mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc26326fb mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc37af9ac mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3a7c150 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc76fdf23 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7fd1411 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc98a35ee mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcdc43566 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcde7ada4 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce7b753b mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce7d5f75 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd17c8c44 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd28e66cb mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2a9ca1a mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3fa21bc mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd64da43d __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9994eb5 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdddbad98 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe14cd277 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7de16b5 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe84217e5 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xead8c27e mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb19e4ca mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0c9b7c7 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf137b431 mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf14fc9b2 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2e7c654 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3373c9f mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf42d6fb2 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9213057 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9ff8c2c mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc3dca20 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc8a3c1f mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe5f522e mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ddd8dc9 mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d6eac6b mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x267fc2c4 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41487703 mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4857869d mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f212a42 mlx5_set_port_proto +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51e3c6f0 mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52375395 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x539d5342 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55f24546 mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x591482d7 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d3b430b mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62bfaa98 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64e9bd02 mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x668ea824 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69bd183d mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7329a2bc mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73bf3b3b mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76c2f892 mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f7e5e0f mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x897b8d0c mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x967f0fcc mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0e9ce9c mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa49108a1 mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4b1e2f8 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa80a4766 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaebda66e mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb04058ec mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0b449ea mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb38e5ed1 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb435e442 mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6f1cc13 mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba25698e mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbaf7dc9f mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0643531 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2f239cb mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc436f18b mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8763215 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf99c3ac mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3408904 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8baf1f7 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb6e0b7d mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec0df642 mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xecf2d5af mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1099cfe mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2a44f4a mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x368d3d71 regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x6b432660 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xd4ab3625 regmap_encx24j600_spi_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x44af3b8b stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x5356e62e stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x69dfa482 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xfa045000 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x2115e418 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x21ddf220 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x3bca3f98 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xab69f52d stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/geneve 0x3eae6401 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/geneve 0x50331fe4 geneve_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x29c22777 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x7934c23f macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xcdfde4ac macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xedf7c839 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvtap 0x72e818a6 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x26533cbb bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5fcc7b2b bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6b6fdd35 bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x91d8c4d7 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x94c9c68c bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x979dfd57 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x99410179 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb7703dc5 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe51cb1ee bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf0a0a238 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x60b683fe mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x60ee88c0 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x66764311 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x9f719599 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xeec689de usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0569c662 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x50052a32 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x66b8b6c9 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7971f700 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8489e0d5 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xadf4a28c cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb4c2ce2d cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb7649a16 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe13e55de cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x1bbc10c8 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x1d3f0f81 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x41c97138 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x75e72362 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x7fbb5ce1 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xef0d336a rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x02345374 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0528deb0 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0824ef27 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x09aebb4e usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x157dee43 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1fd7e116 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x20a11a4c usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2ad41268 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x354d0171 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3dde26b9 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4b6f61ac usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4ccd6252 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4d3be2f7 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x643519fe usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x71bda32b usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x75f5e7a2 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x76a23e15 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7d138a82 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8da9866f usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x947547dc usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x97dc339a usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9b7a1e5e usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa57c809e usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xaa54e39f usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xadbff886 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb7ba1dda usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc0c23d37 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc7e515fd usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdbabf73c usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe4602977 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfbcd2adf usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfdef3c39 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xa3b01554 vxlan_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xb0b33446 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0b73110e i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0d2b85a8 i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0f8f81fe i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x18a8d4f5 i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3de83958 i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x6f4e043b i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x74f07a36 i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x758c1673 i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x79177960 i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x88a764d6 i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa2b8070b i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xaf339906 i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xcbc7db64 i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xcc62de89 i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xea07ee1d i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf55939a1 i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x1b378dec cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x1de472f3 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xed58bbb4 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xf183fbef cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x99a20705 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x81a8272f _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xa4dda2db il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xcf931b9a il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xd34a38d9 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xf265262f il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x02f7cd04 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0912c709 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0dc0bb6a iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x15617124 iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x16474139 iwl_notification_wait_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x18011520 iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x194202ee iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1fef1ce9 iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x38080e25 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x49b542fb iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x55b66ee4 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5a10d898 iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x81e1bed1 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8270c1f5 iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x983a63f5 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9a618e5c iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9bf16097 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9c77eed0 iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa8bdc85b iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb64ba910 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xbd860a26 iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc8159ba0 iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xcc8f0ab3 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd0a87487 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd620a55c iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe1167be0 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe2557c75 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe26af9f0 __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe430cc0d iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe70071cd iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf2410a67 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x0f3e1dbf lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x1b275a41 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x1bbf52d7 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x3a860542 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x63fff179 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x758f7d06 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x7e6a89e0 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x96be7d29 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xaae60039 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb45f22c5 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe6bd2014 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xec9a9d1d lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf4065849 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xfad61867 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xfd63e2aa lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xfdb462fe lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x2703bf69 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x66c554f9 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x695e5026 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x8a8330ad lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x99f51416 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc8125ca4 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xdfe7a673 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xe87459d9 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x1f7abc01 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x21c128a4 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2d1f3efb mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x32237e89 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x3550a5ae mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x3f8ba8f6 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x63f57bd7 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x66beb066 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x7096a42c mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x7e2d91a7 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x81a9621f mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8458b97f mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8c1f34b5 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x9209b948 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb94b7cbd mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc2def850 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc683ff1f mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xd050f4cb mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xffc2ff7c mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x0547de20 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x0b6bbbbb p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x25b28678 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x3a469f87 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x7dac778a p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xb9b19f4e p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xcbc67935 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xe39631cc p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xeb9d2af5 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0db6227a dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb86c8518 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd644a8e7 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xed1dd81d dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x002c8d52 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x09c2ecf2 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0c2b7047 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0fdb3582 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1016e75d rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1717c01f rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x35cbb234 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3c9fa3f9 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3d8a7b36 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x44fdafb1 rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x51593102 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x594b8442 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x63d82853 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x708df0d8 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x93ab5712 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa224d124 rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa604be12 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa8cff1cb rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xab1957f0 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb1986b47 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbdcc6982 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd752bb59 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xde950115 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe8a9de90 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf8cc3d9c rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf8e86314 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfac265e9 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x046a421a rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0fca7466 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d882d91 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3795ba8b rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4bb74590 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4cc4b3e1 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4dc7f194 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5294efe2 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5b6b3dc2 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5db6a26b rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x606cbdf6 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x75978b13 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x84221c9b rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8798516e rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa2e64e60 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa3ea79f4 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb4752854 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc7153aa8 rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc96cd103 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfa109de1 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x9f3a0e5c rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xe0e3f3d5 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xf7ed9185 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xfebd7027 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x02ba0914 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x06b8c339 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x06f7bcaf rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0a5524c0 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x13db633e rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x23f5a0b7 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x361af6c8 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x39bd979e rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3a5145ea rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x404b0758 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x43bf4340 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4b61317b rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x529a57cb rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5acde7d4 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x61afe37f rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x69760584 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6ccac6f2 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x758aa1a3 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7917d9cc rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7d6bcb6a rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x83d4bbcf rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x85d3957b rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8aa2a9d2 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x930d1943 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa3a18f59 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xaeb80bd3 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb6a83a65 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc3a0e5c8 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc5bc0c14 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcdaa7f47 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd2f03e53 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd4586f5e rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd50c59d9 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd8682c25 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xec086f83 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf0c87921 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf58198a5 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf7d3d900 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x1ceeb164 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x250b8e21 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x3be2f7d2 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x43d3f13c rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5b51b9c8 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5d53730e rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x60d28a7b rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x772689a7 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x7cbae3a3 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xd9d99574 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe866647e rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xf3b440e2 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xfd9b3dcc rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x078c01c9 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x13e3f188 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x17e58037 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x180539ac rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1995b50a rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1e3bb041 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x20030cc8 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x21a8f814 rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x355d6ebb rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x379f02a2 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x37d27f1f rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x38ad9004 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x40dc2a20 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x436b0ae6 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x56abc1b9 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5a049d3f rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5f6b10a2 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x656a187b rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6ade3ca4 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6d7142d1 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x71cad162 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x745d76a4 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x79e115a7 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8080383b rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8979a3f3 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x90bba1a5 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x90d70e1f rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x90e5bdab rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x94c987ba rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x96c14360 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9b5023db rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa6a89900 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xaf3c150a rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb074635c rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb6a6f6f7 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbfb22bc6 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc83464e8 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc842e9fc rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd0f1f6f1 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd4709204 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd9a38945 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdf00402c rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe255bd4a rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xeb2c8a22 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xeed8f8c8 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfb71fcda rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x31793a00 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x836c5cbd rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xbf463cf6 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xe80670ca rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xfe0b4a17 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x6198a8b7 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x8ce955a8 rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xac7e77c3 rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xc916b450 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x04f4d2cf rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1891a75b rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1b25e105 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x4e5e9250 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x522aeaa5 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x6adbc3d2 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x821d0727 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x9535e97d rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb0b62258 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xbee5f8d8 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc2d53715 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc8e226e3 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xda8acfe6 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xebcfeb5c rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xee26fb9a rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf6941545 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xc651094d wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xdb0ab44e wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xdea24ad3 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x046c5880 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x04a2f495 wl1271_ps_elp_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0a1872b6 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0c0b2e17 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0c706afe wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x175d4df6 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x19574eb2 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1e44f0bd wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2217883e wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x25f2d4dc wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2f45893f wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3294e3d4 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3310b6e7 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x360bbd27 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3d33c277 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x420096f3 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x43c72276 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4709f53d wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4a0613c1 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x51acfb5a wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5484fd7a wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5586917f wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x62f7e913 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6d563a4d wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x73d7c372 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7b7676c9 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7ce37b93 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91da5146 wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9804447b wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9de320ef wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa9023272 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc3f772cf wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc4152233 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc559581e wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc561d6f8 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd1e02643 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd6e740b1 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdcb0807b wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xea3bd37c wl1271_ps_elp_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xec3e72c3 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xee2e4697 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf1ede001 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf2a32163 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf79e8e22 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfebb1dc8 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x4eb204d7 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x5c21d94e nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xaea7cf46 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xce996cba nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x1f9101a7 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x1fd7aacd st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x263bb1f4 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x6c7dc9d7 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7574d0d2 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x85af5db2 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa02a78bf st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb9dff931 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x75d13908 ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x76cd7b25 ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x8543a7ca ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x02e09fa8 of_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x07a9466d nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x13e66ec0 nvmem_register +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x2f79d236 nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x36ec8a8a nvmem_device_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x68758fda nvmem_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x7134a988 of_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xa7d8dc93 devm_nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc25815f4 devm_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc96fb674 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xcb83ad7c devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe18960ba nvmem_device_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe9a7fe16 nvmem_cell_read +EXPORT_SYMBOL_GPL drivers/phy/phy-omap-control 0x3fc5c69f omap_control_pcie_pcs +EXPORT_SYMBOL_GPL drivers/phy/phy-omap-control 0x42669c73 omap_control_phy_power +EXPORT_SYMBOL_GPL drivers/phy/phy-omap-control 0x8610bbdf omap_control_usb_set_mode +EXPORT_SYMBOL_GPL drivers/phy/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x14621b73 ufs_qcom_phy_init_clks +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x18f32660 ufs_qcom_phy_power_off +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x219035ec ufs_qcom_phy_enable_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x24f6ece2 ufs_qcom_phy_is_pcs_ready +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x2811c739 ufs_qcom_phy_set_tx_lane_enable +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x292a20c4 ufs_qcom_phy_disable_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x5e166858 ufs_qcom_phy_save_controller_version +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x690fe244 ufs_qcom_phy_start_serdes +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x85f2d9fa ufs_qcom_phy_calibrate +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x8f17d9c3 ufs_qcom_phy_exit +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x9093b5f8 ufs_qcom_phy_disable_dev_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x9d2472ae ufs_qcom_phy_power_on +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xb39591ab ufs_qcom_phy_init_vregulators +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xc294374a ufs_qcom_phy_calibrate_phy +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xd04dea28 get_ufs_qcom_phy +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xd1813b94 ufs_qcom_phy_remove +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xd3c4e6ed ufs_qcom_phy_enable_dev_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xd8de035f ufs_qcom_phy_disable_iface_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xe85e41a4 ufs_qcom_phy_enable_iface_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xfa6a870d ufs_qcom_phy_generic_probe +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x8b4a2298 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xbd85de82 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xe32a29ca pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x21915b68 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x835a4dab mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x91616744 mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xc0853b82 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xdb039f1a mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4598fc21 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4c86e691 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x5eec23f7 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x812aeee3 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xae83da5b wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xff3c8b8a wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x920918aa wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x00f470dd cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x015131a8 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x03954677 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x099ef3b0 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x10e4999a cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1866c158 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x341f8b44 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x35c6f6d9 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3c776e05 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3e1471ec cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x45b6f8d6 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4cd9fb7a cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4e59c3d4 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5179bfe2 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x53b739f5 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x593eb7c2 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5a81115c cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x692f8ba7 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x699bfb9f cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x73328883 cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x735fafff cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7d8e21b3 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7e7be29d cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x85a863d2 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x860b141b cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa0b72f6f cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa4d61f5d cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa538d448 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaa412b41 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xab418977 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xab74ef52 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb557294c cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb7831b9c cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbb9ba346 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc2cf6468 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc5c7e359 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xca1d07c7 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xca465498 cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd01891cb cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd07cc78a cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd3003a64 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd80f0bcd cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe55ed178 cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xeac4a1bf cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf7413b81 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfc668e6a cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x020149c0 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0a3f4e56 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5ca69da3 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6124a99c fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x64e95f86 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x82e2c5f3 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8d8747e4 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x903ec949 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb2f0f2b1 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb5fe60eb fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb8ae40f7 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf2fb18c8 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf82c9b7b fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf8b5c159 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfa9e0182 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfe8bf89f fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x15126736 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x1c65ebf4 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7a9cc10a iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x9d5c4988 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd46e858f iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xfe9e54de iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x027ea5b7 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x05c9d386 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0afd43e5 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0ba72d2b iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0bec000a iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0c2f9f6d iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1327ca03 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x170502f0 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x17577779 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1a7cc5b1 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x200bde36 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x247d3972 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2cd167fb iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3d889b15 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4e64d164 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5741e572 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5a077a7b iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x63ff8ad7 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x65d42a3e iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x76252d5e iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x76bac456 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x76c2a16e iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7b62fb55 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8eabe550 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8f1ec554 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa9285a4b iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb9fbb0fe iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbdf4795a iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbe3d2499 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xca402cac iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcf5f79fb iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd6c37ce5 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xddbda6d0 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xddfe2bd4 iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe12d7701 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe29db47d iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xec2caf8b __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeec23c59 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf39e139e iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf63c752a iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfc34b692 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfd257575 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0708d5b3 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0f53d821 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1800fdf8 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x28e96d1b iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x43189916 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x623665db iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x85047aeb iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8740890c iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9707eae5 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9eefb402 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa7296ef7 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xad9c7d86 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb3d99edb iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xccd1b534 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcd26cd2c iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd664edbd iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe7c3b70c iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x03594c53 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x11eff8e9 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x205b2a20 sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x291d3eb6 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3421b91b sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3f208ef9 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x41ab0f05 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x44486b63 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x53434645 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6b5a22cd sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x720ff1ad sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7796b87f sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x812528cc sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8d072b18 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9b2e4dff sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaf549e2c sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb5e6689d sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd2b71a31 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdc6f16d8 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xde058dca sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xde435861 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe9b4da68 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xeb3fc2e9 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfa366794 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0325ab60 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0c9b38b8 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0dd07866 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1c59b090 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1e12e279 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1f80e0c1 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2bc217b0 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x377c605d iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3bc79ecb iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3bd37f7a iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4af8d639 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x536b4a13 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x540e99fc iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5a291845 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5fdad2f8 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x62d77774 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6a3e8f7d iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x70f544ba iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7ada0372 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x80f0db6a iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x82bffe04 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x89eaee70 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8dc88928 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9836166f iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x987c9f79 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x99c98b54 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab154b25 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaf9ef127 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbd1c2205 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc45e9726 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc81c20c3 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xca1c2bcc iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcc9ff414 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd47f1314 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd860a5cf iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe37ce7a7 iscsi_is_flashnode_conn_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf1eef4b6 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf80e8690 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf9ebbff0 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xffb888cf iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x5c06233b sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x91f6e1b3 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd221fbfb sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xe0a271d1 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x492724bb spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x4a37a781 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x4fec6807 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x8ea4d2af srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xaf758983 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb8e9d3b9 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xd2fd4048 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x203549e5 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x26ba0b9e ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x2f6f99b6 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x9cfc58a5 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xc419693b ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xc7e2cfb2 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xd3dea9e3 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x069ae08b ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x13ce5d25 ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x1d78e7d2 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x68b80f60 ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x9f685675 ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xa1c015b1 ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xac2c1603 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x0526d8a9 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x238ccaf7 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x44cbea2a spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xb017be70 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xc8eb2a1f spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x2114f7ce dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x57dfe3d4 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x7d803b46 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x972be6a1 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x173a8e15 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x17a4c3f6 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x212bae42 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x32a4ee9b spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3f2b1c9a spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x53d58db4 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6034bff5 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6f7d9742 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x78b57f3a spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8f600c55 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xadb9af0c spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xaf53f933 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbe098083 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcfb03e05 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdb751026 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe2f01bae __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe396af8f spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe45d6f2c spmi_command_reset +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xf85486a2 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x01eba743 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x10f4e405 comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x119abfbe comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x14453376 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1acc1fe5 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1f8b02d7 comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2d3892ed comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x324d0b75 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4f6d030c comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5a4553ee comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x60306505 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x64a3f1c5 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x650c7cae comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x747734e4 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x89d4ef4c comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x95cc69e8 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xaa786e45 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb27cf164 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb2c523f2 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb8520e35 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb2c56fe comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc1bd7337 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcc831f45 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcdd4bbc3 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd101afc1 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdfb5ee07 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe0c37cd1 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe826b4ac comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe84d9313 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf121d8eb comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf2a708e3 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf5ad0281 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf6bfed24 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfa1acd1f comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfe4dc745 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x3175b719 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x544ca07b comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x5858e2d5 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x86738cf8 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x8cf3e892 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x94eac66f comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xd59ca868 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xeff080a3 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x33628a33 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x48ce0dd9 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x8e365419 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xc8558645 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xeca6a08e comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xef5de100 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x5609ba96 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x1e3cf33a amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x94c7adf3 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x1b4572b3 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x090e975d comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x0ff5dcc8 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x2907e87c comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x2e5249a0 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x3e88b331 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x4c8604df comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x5176db45 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x5e76e070 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x614809d8 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x7b377f1d comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x7e382788 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb693f1be comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xc717abe3 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x21acfeaa subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x82b9b5f8 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x86f35bd8 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x8db629e5 das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x03f03383 mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x19bdc66a mite_bytes_read_from_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x37633e05 mite_dma_tcr +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4e474e06 mite_bytes_written_to_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x54fcd941 mite_sync_output_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x55d28d64 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5eed763b mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6636d2c0 mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x90649ad7 mite_bytes_written_to_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x983714f3 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa1eab684 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa9c9e69c mite_setup2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb5fd3047 mite_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb7d74ca7 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb8ac5ff0 mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc39d25fe mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc79e12bb mite_bytes_read_from_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xde9a52c4 mite_get_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xebf3a4f1 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xecf13ba5 mite_sync_input_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfb261233 mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x1166be38 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xcfee77a9 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x028e3500 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x3bb98c84 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x717965fb ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x7b90a097 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x8d59e493 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xa59f3668 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xb0d03e40 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xcf08cd40 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x0ae16b5d ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x2bb61567 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x42c962b5 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x5954388b ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xa8df04a7 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xb36f4272 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x1cdb8a6c comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x5f52f0e4 comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x674de810 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x74ef481b comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xa3ee42a6 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xb70c54a0 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xce05d165 comedi_close +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x2734e5d2 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x0beade5d most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x10d112bc most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x1473117b most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x2bc24747 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x3d846962 most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x48c9bf9f most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x4c907673 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x86cdfac5 most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xae4851d5 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xc22efdbd most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xc4f02c31 most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xda67d350 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x00c2cf7c nvec_register_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x33fd5e92 nvec_unregister_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xd9d9f1fc nvec_msg_free +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x076997f8 spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2332f7ea synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x3eb2a48f spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x48b90a41 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x66b13f12 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x80d96690 spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x86442336 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb2978dbc speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb97e5906 spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xded8ac3a spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xea4c8536 synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xeed3bd0a spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x135ccb95 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x286e5885 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x4970dc6b __uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x9ba1aed1 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xb4c8b91e usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x6da096ac ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x71ab7ca5 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x002b0945 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xcec89fce imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xdb8c1d8d imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x33f7f5cd ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x61d5398c ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xb741fde9 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xd63946e8 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xdbc3bcbb ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xed33c2fb ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1a32338c gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1a754001 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1bf0a6d3 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x27fc3b64 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x303cd82f gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x55f40348 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x608098eb gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6177187a gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x776ca5c7 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8131b80f gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9fbf0545 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd55fb962 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xda9a36b8 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe6abba70 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xff67a981 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x692041fb gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xda9e5e25 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe4bf4699 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xfb39f842 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x1298ca39 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xce30ab2c ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xdc3c590c ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x12ac7db1 fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x17253077 fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5255b366 fsg_common_create_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5baeeb7e fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x688b6ae0 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8b6ba5b3 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x90ca2a0a fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9554d505 fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb0cc1929 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc24fd572 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc2afe47b fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc4467b32 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc8b17912 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd9615990 fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xdc293546 fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xfd461fef fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xff665e01 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1ae9814c rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2e26c4ae rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x482cf663 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4c3441e1 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4f926945 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5c045407 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6c2b6422 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6ccbd6bd rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x71022849 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7bfa1491 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7c6c6a6b rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8294be0c rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc9bddd79 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd559711f rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdaa57792 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x039d32a2 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x05f93ca6 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1776cd60 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1b697781 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2d1571ee usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x352bb6c4 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x39ab192c usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x48589362 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x51042363 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x52566694 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5e59eb57 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x626e3740 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x67818653 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68167c66 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6914ea2c usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6e75977f usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6f10ace0 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7010ebed usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x726962c8 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x73296c5e usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x764f59b3 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8f856728 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x995aa720 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9a899321 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9b533cce usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9d5fd172 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9f65746d usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa7c345cf unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb709306b usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdb3f019c usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xde9c6939 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe3a52516 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x002654e8 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xde69ab34 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x06c98019 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x236ebb04 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x25bdc23b usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2b6c8281 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x57fbd0d1 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x85868f35 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe03f32a3 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xee59c61b usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xfd609341 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/musb/omap2430 0x6fb55e1f omap_musb_mailbox +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-am335x-control 0x75eed29f am335x_get_phy_control +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x37eeaad0 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x1a7f1216 tegra_ehci_phy_restore_start +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x7bc9be66 tegra_usb_phy_preresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x882233f1 tegra_ehci_phy_restore_end +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x9add2d6c tegra_usb_phy_postresume +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x156abbbf usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0556f843 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0897015c usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x100347c0 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1025f70f usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x17962832 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x20853c7f usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x37648646 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3f25eebc usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4f5c5a0c usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x70815543 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x72b3c3ec usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x87a8570e usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9c1467e2 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9e68fa52 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xad1cd062 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc411e36f usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc6cb1890 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe1c0feb8 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf892a974 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfae93f1d usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfd16edd9 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x01d1b578 usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x04fe3525 usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x12ec6ad7 usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bdde45d usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x229940ca usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6502eba8 usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6bf35cdc usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7fbb9ffd usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x85dae0b0 usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x861fe9c8 usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8a99b0b5 usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8e4dfa00 usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x953e5bbe usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9a692bdf fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9ff14465 usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa6455a60 usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xaaa6efe0 usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xab64fbc7 usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbf041d80 usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc20c64b5 usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc25fb0dd usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc90e2255 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xcc5382e6 usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd65be87b usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x193c0116 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2c9db9b2 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x40f4069e usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x45599af9 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4c748cf8 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6ae2bba4 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8201f826 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8d6ad1ef dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x95b067f5 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd15275b7 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd56e63fc usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xdf223e3a usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x24dc4708 wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x4d039d34 rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x65c64d7c rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x744387d2 wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x84fea687 __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x88104061 wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc09a6222 wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc543b60e wa_process_errored_transfers_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf4654c3f wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0499f9d9 wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0c998ca4 wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x2952a31e wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x300cb20c wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x437bc85c wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4af29d72 wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4e75c959 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x56a6246f wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7eacec3e __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x97cceb3e wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb1a7d82f wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb867ac11 wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf6a545d1 wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf99d65dc wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x61b603d1 i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x855505c1 i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xee84f32b i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x0767348c __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x4baa83d7 umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x740975d6 umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xa2f892ca umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xc1d4eef1 umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xc7e22a4f umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xccc630af umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xdb96bb39 umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x01c77549 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x01fcee4d uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0223d7ca uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b8aad57 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0dd63a0a uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0e585c65 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1b70b106 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x202a2eb5 uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x266348f6 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2c209515 uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3a080f42 uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x43ef0af5 uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x47ddfb37 uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5372a303 uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x570b216d uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x57ba9463 uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5b324ba3 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6170b331 uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dcfcd23 uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8320dd09 uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x89eb57de uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8cfdbe07 __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa95c7d36 uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb184baca uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbe5cd754 uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbebc6935 uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbfaa3779 uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc6978b74 uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc911efc6 uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd1b389de uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd48ee796 uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd4e1dd04 uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd938cc29 uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd9ff72db uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xda0318b5 uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xeb48878d uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xeb5fb60c uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xeb7ce834 uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfe6c90f9 uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/whci 0xe638f74e whci_wait_for +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x033632e3 __vfio_platform_register_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xaf5f1d2a vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xcff8d273 vfio_platform_remove_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xdb9ed52d vfio_platform_probe_common +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x15a66ff2 vfio_external_group_match_file +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2c02a037 vfio_add_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2cf34c57 vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x32b3c7a8 vfio_del_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3bbeeba0 vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x602ff358 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x74227bfd vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x3e30bc0c vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xde51669a vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x04e91b88 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x05608299 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x06d368e9 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0ac5a684 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0bb58340 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0e3210da vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x32bcc5e8 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x32f2a030 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x398b4245 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x40a2800f vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x547b1dce vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x60e8c8b3 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x68ca3a82 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x69931552 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x69d66677 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x70bce26e vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x72b4267d vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x76d47a75 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x77fd1166 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7ac3be50 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x96363aa3 vhost_init_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaf593aa9 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb012b4b3 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbec7bfd8 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc03cb533 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc18f7b89 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xce75e7f7 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdc97f639 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe3f3bc04 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xebee6288 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x2fb22671 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x3ab1d2bf ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x5371eec3 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x7f3a4505 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xb2fbdd9b ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd125bfa5 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe355b06a ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x0edf5771 auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x1eac9c8d auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x2d38886d auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x73f98eb7 auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x9d6f08cb auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xa278909e auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xac557de0 auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xcd5f4fb1 auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xe2a3eab9 auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xf6efe277 auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x979403c9 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x12f86332 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x58fbda78 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0x018cd312 sh_mobile_meram_cache_free +EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0x0248a201 sh_mobile_meram_free +EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0x60748177 sh_mobile_meram_cache_alloc +EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0x9797cec1 sh_mobile_meram_alloc +EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0xa733e8b6 sh_mobile_meram_cache_update +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x6e36d7f2 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xcec8301d sis_free_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x2753e644 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x3241c003 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x8303fcac w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x9283aeb6 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x99a41525 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x9f29ba18 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xce1aa8e2 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0xe57eeb8c w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xf7ed60a1 w1_reset_resume_command +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x59fa6a02 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc0573c4c dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xe8bc1411 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x003b03e6 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6a8695fc nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x857a148c nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa299902b lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa2b39b5e nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xbac22402 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe5eafa2b nlmsvc_ops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01287776 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x022864cf nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a20da8d nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c121971 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d3e0532 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d5635c7 nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d57b76a nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x120c7d8f nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12592baf nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b3b0cfb nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2081d7c6 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22c3d373 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24115fe6 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x269034a3 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29d49f8d nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cd1e57d nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d6df02c nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2de36a31 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e00de11 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3086387b nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31cb0439 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33a04d75 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x347fbc8b nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34cc1ece nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3772aa28 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x389e97b6 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39d145c6 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a758f68 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3aac58e7 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f589d93 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x473a41c3 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c9092ec nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x509c1838 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53da171d nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53fa17ae nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55cab894 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x562b0a12 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58c7f3e2 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59b90a3d nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f021766 nfs_file_fsync_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5fbe7868 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x611d3e57 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x687bf3a0 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a7d0b15 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d554405 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6eef3ec3 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6fef91f8 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x724b58c5 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7352c85b nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x759860a1 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x79331a96 nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a307512 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ab86e2d nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7bd24fd6 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c3c4f7a register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d0234fd nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d8fb796 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ed8a34c nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82136794 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88a00b69 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8919923d nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89a024d8 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a03eacb nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x911b57bb nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9316770f nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9443aa25 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x94633ec9 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x950c1d8c nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9543f657 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95c69ac3 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9775e566 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97d97ce6 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x981c80ea nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b22394a nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c5a954d nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9cb781f5 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f29b443 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa24820c9 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa47722b0 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa72d139e nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa821005b nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8699d3a nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa14361 nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaccef826 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xacd0b93a nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0525b07 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0a0ca8d nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0dc97ac nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb878cbab nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba01ae32 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcc89f83 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe002833 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbfef0fb3 nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0ab2ed1 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc140f96b nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc966952c nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca78a385 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb43e9cd nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc64deba nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xccc588eb nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xccd4fb87 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcdf47f46 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce2a8de5 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf0e4267 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf9caebf nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd00e76ce nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd03918cc nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd41ab334 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd88081fe nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd95f3bbe nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbb6a5a0 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc115046 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd487446 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdffe034b nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2820da3 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe553ba30 nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6fe3ee7 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7dbc1f9 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe97e4692 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee3723ea nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee6a6877 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2abfb87 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf84e681e nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd459cf5 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd4d9874 nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xd1ca88fc nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02717741 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x04c54d69 _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0c1bb5aa pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f7ae1e7 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1299583b nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1518dffc nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x181e062d nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1ecdf798 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2825be66 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2dd783bc pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2ee24be8 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36737539 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x39d2eda1 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x39ea5b9d pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3af491a4 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3b595038 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4096e925 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x46f11607 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x49d30da6 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4c661a68 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4d5d5558 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4d88dcb2 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4e7cba67 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x520b6f24 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x58406e44 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ab91907 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x60bad237 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x648b1aac nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x68454d02 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x68ecd700 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x729e8cc6 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x741b39f7 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x74c9ae90 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7734118c pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x815c92fe pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x954621c0 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x99107c04 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x996a099e pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa10cef56 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa5609c1a pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaafe894f pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5c036e1 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb6bfc9ba pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb764ad90 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbb889e95 nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3132ca6 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc58fe26d pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc78ddd19 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcac6b7b8 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd71b899e nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc77d096 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdcfae0ea pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xddcc47c1 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe16086ac pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe7af9888 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xea267e19 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xea2f7f19 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf4717472 nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfcde292c pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe924f59 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xff64e184 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x2f5e35b3 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xdf3511d1 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xebf202c9 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x76cfbce5 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x76e6cdbf nfsacl_encode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1546a30f o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1cb231d0 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x2512c902 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x60aa1e96 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9daca2f6 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa9f5379a o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbc9a9a3e o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xce5cd2e2 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xec26d185 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x207a2b57 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x44985fc0 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x8e6f7e3b dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa4dd542d dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xb51e1d3c dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd4080952 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x52e8eaf3 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xad61fc93 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xef4682fd ocfs2_plock +EXPORT_SYMBOL_GPL kernel/torture 0x1543d37e torture_shuffle_task_register +EXPORT_SYMBOL_GPL kernel/torture 0x1935c37a _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 0x3eed46e3 _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb +EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random +EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait +EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop +EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end +EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin +EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x623f1551 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x707aa277 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x021957e1 raid6_datap_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x0f8a2742 raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xd4cb6873 raid6_call +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x2d107b5e base_inv_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x41ecf87a base_inv_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x72eb4ea9 base_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x767b8ba8 base_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x8d490167 base_inv_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x9af6b231 base_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xdba4feef base_inv_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xde0e6eb2 base_old_true_key +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x341cfd33 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xda449735 lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x03f95aa0 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x14d05d95 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x83b2000f garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xaf120ffc garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xbb131f1f garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xc34e1b24 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x02186f47 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x0df249eb mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x5dc832b5 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x84f97876 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0xc375518c mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0xe1fef2fd mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/stp 0xae0ec4c8 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0xc14e9915 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x79f0e52e p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0xa3d12247 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier +EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier +EXPORT_SYMBOL_GPL net/ax25/ax25 0x1d8276c3 ax25_register_pid +EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast +EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x12f88ebf l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6ce6d4bb l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x71f800db l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x84edbc80 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa5778c30 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xde425c9d l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe0156c85 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xee05b62a bt_debugfs +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x370bc974 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4c6ac6d1 br_deliver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4ca9a455 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x67298e95 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x73062fb9 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9434bd0a br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa8d5901f nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb7355043 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x32c77ea3 nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x7de596f3 nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/dccp/dccp 0x05e2d880 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x09a123b7 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0x14b80968 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x152d3263 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1bf047fb dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x273f74d6 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2e7e902e dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x36e8c1d4 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x49200931 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4a0ce015 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4a27c8ae dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x54a61cf1 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5ca486c4 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x63ee79c1 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x68555afc dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x754bfc4f dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x75989dee dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7dd25c9a dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9001d57b dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9fd6bbf7 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa20f2f9d dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa39854ec inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaad87ef2 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb0596156 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb221551e dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb344cc6d dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb92baf26 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xce4a9c36 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd0679199 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd932d351 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe0a457bc dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe5c81367 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe6ac241c dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf149b0f2 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x505247c0 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x5131c77b dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x82fa43af dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa15e47f6 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xaa8d55ed dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb039466b dccp_v4_connect +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x81646e05 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xab394765 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xb1d2579b ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xba05533d ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ipv4/gre 0x437a7a0a gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xeeda27ae gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x09978cda inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x43678886 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8220db67 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x913d9eb4 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe078baa5 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe9df8b1e inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x56753584 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1d3dc27c ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x45b78202 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x55e17542 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6ef89674 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8bb546d1 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb88f7e9e ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb8d58db3 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbd63eaee ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbdd28973 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcf8f14ef ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd1dee4bc ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd724fd6b ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe4991712 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe75acd9e ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xec4281a7 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x811c7f12 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x22aae514 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x8b05e9c9 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x0ab4d3ff nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x55648624 nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x8caf4ce1 nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x9b5c81be nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xa151621a nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x9c996be0 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x1cf7cadd nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3b5a6560 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x67f5eb51 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x717e77b3 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xec3c393a nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x7fb7060f nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x186a7f8a tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x65cc0fc6 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x73d1c75b tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x82e6b3f9 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa4856287 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x22be49a6 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x87e15ea1 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa2cde5bd udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc8cec050 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x007bc598 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x0198beff ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x4a2041b9 ip6_tnl_dst_get +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x6b5f0021 ip6_tnl_dst_set +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xb15f550b ip6_tnl_dst_destroy +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xb46a2a2d ip6_tnl_dst_reset +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xfa740b9b ip6_tnl_dst_init +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x2dbe56ea udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xaba00cbe udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x34941373 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x4ae620c5 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xa2fcfa63 nf_ct_frag6_consume_orig +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x3362eaa9 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x37009fae nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x69420b2a nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x7ec55fda nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xaa9ea397 nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xb51aa90a nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0xc80cfa80 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x17f48568 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x37b76410 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x38ec72ef nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xcd581d64 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xea4f3de1 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x060c0485 nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x000146b3 l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2eb0dd88 l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x39c5b055 l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x52accd06 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7a23002e l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7bf0a76c l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8b7f885b l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8f2a9abe l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9d56819a l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9d6ecab0 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc39b8a6b l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcefbab47 l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd8a29886 __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd9f6e2d1 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe1130621 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe90f5432 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x73c7a991 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x301516f5 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x310e3f0f wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3701547c ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3f1954a9 ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x75de7c69 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x77160eec ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x912ee626 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9145fa26 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x944dbe26 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9d384e34 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xad0efcfd ieee80211_set_key_tx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb124569f ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbf9fa8b3 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc93034f5 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd3bc6b1a ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe503800c ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf8a89e7c ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf9fa191d ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7ec414e7 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xb7c55183 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xeb52ba2f nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xfe406df5 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x03133f67 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2aae39bc ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x481945c5 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x52f18ef1 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x63007ba7 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x657e44dc ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7ce6f08d ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x84d61607 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8f72679d ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9303c379 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x953ba1b9 ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9d4d2b4a ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa8c14daf ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc4201f6f ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd79cbd4f ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe959e0ba ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x1581ba39 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x1ee5a0ec unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x54fcdf44 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xbb717e8a ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x019ecae8 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x07cfd8c0 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x08fb3982 nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a7e7f6c nf_connlabel_match +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0e6d4090 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0f2d098d nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ff1a99e nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a1653de nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1bab04fd nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1c2b73f9 nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x21207135 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2137b450 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b371a7a nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x32ced98b nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x33494c19 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ce199a8 nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d1b6b0f nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x407ce2de __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x42af5c35 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x46a58ea9 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x496281f9 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b424fa5 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4d782ec7 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4de65a15 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4fec7f20 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x506dd47b nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x542b0c66 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x589d17a6 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x691882f4 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6b618f48 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d0dcdc7 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x72c0ba65 nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c868078 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fe4ce4d nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8bdf7dec nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8d8787a6 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8dd333a8 nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f67e1ec nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9055b86e nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90acb432 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9130115b nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9669bc7b nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x99049bb4 nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b27c71f nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b775043 nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa2cf4109 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa44e869d nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab32f936 nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf9561b0 nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb29e82e9 nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb2b4e878 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb3882bd3 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb58d3086 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb865c534 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb9ca2dfc nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbe97f45c nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbf77e052 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2abd2fd nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc5b39c11 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc7c141d1 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc81e932f nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcaace4d2 nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd6a0104 nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd053d137 nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd076cb5a nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd2d55540 nf_connlabel_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd418b23f nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd7ab55a2 nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba58655 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe2e0fb06 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4db6a40 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe8f374af nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf1cfd8c5 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf58c1917 nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf7a60cfe nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf9105dd6 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf92ac472 seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf938c75c nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe5fa6fc nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff556f14 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x81ab880e nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xb1c26838 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x3f40e16b nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x140a797f nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x593c047e nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6676ec78 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6b1fe8e6 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xab2c9001 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc3635a2d set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc462c9a8 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc5166bbd nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf6dea40b nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xfabec646 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x34ada9f4 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x4118e5fc nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x5fb185d0 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x82794eb2 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x86d9003c nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x027c9ed0 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x9a1f12e7 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x44019361 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x62f5e3c0 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x93e34944 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa7514839 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xbfffe8ae ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd1df87c2 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf7b6b6fd ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x2acb1d2c nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x4ec17ff8 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x0d133b70 nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x32ac5882 nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x6dec3901 nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x85c87190 nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5633582f __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6942d4cd nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x70622d36 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x74f1c7f4 nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7a7e1d9d nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa9610c38 nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc3a516d4 nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc7d8df90 nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xff2be39e nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x5fed48d2 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xd4cf5893 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4af5e852 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8841d39b synproxy_build_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xcdf56f03 synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x12261b92 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x21712499 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x47150777 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x47797de1 nft_register_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4e4dcdc1 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x55fdaaf2 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8697fdb3 nft_unregister_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x99beb3ba nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa1d4fb57 nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb49d6348 nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb559ad34 nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf98beba nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc1c87d1f nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc57e9cc6 nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd51455dc nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfa805661 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xff1581c9 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x0659790f nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x4a3a310a nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x60fa8bc5 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x75a71615 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x80c086bb nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xb132c2c6 nfnetlink_alloc_skb +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdc124edb nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x48e69662 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x57de904d nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbdf8d839 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0xfd69b82d nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x67251f54 nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x8e299cc4 nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xbc72e91c nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x3aef992a nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x4546493f nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x5094a1f3 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x5a7324b9 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xac248787 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xbc02e4e2 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x5ce9d994 nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x708eaaa1 nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa031eccc nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1964a677 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xc17ccc8a nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0c51a5a6 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x37bb26d6 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3f1ef70a xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4af5a64c xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5345cb46 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x59fe1b35 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x696f077f xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6e78f8cb xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7f9aa306 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8af906a2 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9dad3c62 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb76bf412 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd900cd54 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd9f2ffdb xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x57909dc1 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xd0f26ea3 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x05836fd4 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x0d84770c nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x9d70a683 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x5c019bbd nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x66e6be3d nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x7befa76c nci_uart_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1c7d3999 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x2d8f0042 ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x48740476 ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x5dcbe6e8 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x793b24a5 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7ddbcd9a ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa2432b62 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc6b2a2cd ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xdd76e7d5 ovs_vport_receive +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x084e9f0b rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x0a2de486 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x170f8f71 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x1861f428 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x274abd14 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x30af34e1 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x389d4f67 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x3cb3916b rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x3fa03866 rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x432d7195 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x4622b59b rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x5883619e rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x590c37c6 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x632959b0 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x6b310271 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x814c0eea rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x9a270ca8 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0xb15a5aec rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xb5c8c242 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc642cc2c rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0xcca5d899 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xcccc5904 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xe11c8876 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xe9dd3f57 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xea32aeb5 rds_send_get_message +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x39b0747f rxrpc_unregister_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xcd3a151c rxrpc_register_security +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x7d02f35e gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x863af689 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf172c86f svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01879de4 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01c6e5c2 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0502551a svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x070e2a68 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x077b2cf8 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x091321e8 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09b54c1a xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bc4e567 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c1172ab rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d67c6b5 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e930cbc rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fcf6ce2 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10ff10e1 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x115036ec cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x127207a6 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15cbabc0 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15e91ac3 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x161da123 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x164480a0 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16ab2bd8 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x183018b6 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1868a281 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b0fa28e svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b2f43cf rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bd9e66d rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cc75e04 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1dfa079d rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20e70cbf rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x211640c2 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x217d574b sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22ff1bee rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24343886 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x261cf964 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2821607d rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28f8a98d rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b353aef rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bbeba3d rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bcae62c rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c9713b6 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c9f4e9e rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f18334f rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31179c8a svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34200df2 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34569874 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3511b6ce xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35e1acca svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36c7c29f svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36d0ef54 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37028d38 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a198a29 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3be97fa1 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d4439f7 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ef591a6 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x405f8261 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x436df35a rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46b30d73 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a4b5329 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b333b5c svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bb1c535 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c05d3dc rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d1e8ae9 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50b0411e rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x519bb04f rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5255fd98 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53387ad2 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x534661e8 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5492f0e7 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57236291 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x578d7a15 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58821a78 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59afe090 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b5898be rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bc0d723 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5be0cdcc xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5eeab87c rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61332979 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61a04d53 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61cd8b08 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61e732f6 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x637a843c rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x643fe88a xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x658a78fb cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x672f5a6b svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67bdb39f auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6871056c svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x695446da rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b3466f3 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b8fa87d rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e3a9f79 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fb61dc6 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ffc66b8 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71923833 rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x719c3a6d xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72851555 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72bd9226 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7471dc1e svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77ca6ebf rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dd7f3be rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fd51ab5 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x807ddf3d cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x817101eb xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82c2e8da cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8419f01b sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84b7094e xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85904e0b rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x861115c0 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86b68239 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8840214c read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c82f99e svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d322fa4 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f3bdbcf gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x902b5f87 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95c9c0d9 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95d4cb01 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x983f1ef9 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9954c7f8 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99d8dea1 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a57aaab rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d2d167d xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1098e09 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2b27acc cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa370c968 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6318f00 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6738a46 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa985c764 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9e2d45b rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab46d46f rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf750eb7 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1341f4e svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2b80197 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb50e4273 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb74b7a74 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8765cf0 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb950e4ec cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba387bd2 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb46d83d rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc040289 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbca39cbf xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcf9aa6f rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd46ab77 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdc97640 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdec2750 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfa15892 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc295b3d0 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3991e60 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc62de92c rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7e06aef svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8597ee4 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8665eb1 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcaba9503 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd00c292c xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1f12e61 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd41435c7 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5f037c6 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5fc9349 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd660e20a svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6ab1e9d xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd772882a xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7b18bed rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdac649a9 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc866b30 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcb35d7c xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdda6f4e1 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdee5310e xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf88b335 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0e89826 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe23dc915 rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe25481d5 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe392a84b xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4291775 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5f2bd80 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6124a20 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe74b93fc xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe93d88f1 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe93e8810 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe991f227 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xead6755f xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec891f8e put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeced6acd svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee1a1391 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee3eb24f __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef681eed rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf08092ae svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf090f378 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf124cd4e rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1cc179c xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2eb7c08 rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3c6b820 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf66785b3 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf74ad460 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf799daa0 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7ddd913 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7ea6d1b xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa6e5207 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc7121fa svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfec5806d auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff41d631 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffc00365 rpc_delay +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2061d7e9 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x51e92d29 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x641fb175 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x74e91915 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7718ae70 __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x77397a37 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x81085bfa vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x91511824 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa6cb9fdd vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb3063661 __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb8549351 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbc2e121c vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc3f6d384 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcd1c6ed0 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf593c40a vsock_pending_work +EXPORT_SYMBOL_GPL net/wimax/wimax 0x12576c4d wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0x20f31851 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0x20fd2fca wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x5b32dfa9 wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0x62e44ef4 wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0x6d4ef5b5 wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0x7c5d7530 wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0x82aa0435 wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0x9e2672f7 wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xabc948e8 wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0xb282cdf9 wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xc78c0d50 wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0xd59578c9 wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x18216937 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2ec5b43c cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x31943a22 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3605692a cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x384a2684 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x52901874 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9dae84aa cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa62120c1 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb6dcd730 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc4bed813 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xcca4160b cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd29763d6 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd74ed9dd cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x28cd340b ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x9cfc0508 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xcfd31c83 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xdc628ea5 ipcomp_output +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x2208e70a __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x4b1c231f snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x15e8406c amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x19d3c038 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6309726b amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa6f9d588 amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe65186fe amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf253e5ea amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xfefadd78 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x015b62a7 snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x01eb1840 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0fa5451b snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x15aa3720 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x16ba211b snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1e0d02b0 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x25941524 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2907814d snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2a1d1455 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2b433877 snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2e506d7a snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2e916198 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x337ec826 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x36ea981c snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x379e78f5 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x39cf8c1a snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3a73cbac snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3af99c49 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b4604db snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x440c202f snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x44380368 snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4a590a3b snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5508fe1a snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5521cb35 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5556fd62 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5cd52beb snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5d4e64c8 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x620baef3 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6d8e418f snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7123c2a6 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7511f28d snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x753f5d8d snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7cb280b4 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x83525688 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8357e7e8 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x83be90aa snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8c200dd1 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x91357994 snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x91a9e3e5 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9322b514 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x97ded8a0 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa405196a snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa47114cd snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa69002bf snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa72ff90b snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa740b46e snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa8286710 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaaee1f4b snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xad689a23 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb01641b7 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb48de32f snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb855df15 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbac5a161 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbae99379 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe8b6118 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbf1e53b2 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc476d662 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc65860e1 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xccaa057b snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcd7f2865 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd18fea61 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd2e76006 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd6f254bf snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd9d0e260 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdacf16ae snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe0bf2c76 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe10f3a93 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe1cc261d snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb86544d snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf03c1f3a snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf575aff2 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x09b263df snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x18eee292 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x6cfa25ef snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x74ba468a snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x9ccd085b snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xc99335c3 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x03d0e5ed snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x052c036d snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x061adf57 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0819262e snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c9c7a67 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0cd0afcc snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12559392 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16bbecc1 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ae87ae2 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1bbec0fa snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c468561 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d6e55d9 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1df518dd snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1f96d71f snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2583a4c2 snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x259df3f4 snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x28c03d20 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2b9caf4d azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ff7b3d5 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30b7d28d snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33b5a62b snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x379a0e75 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38a47cd1 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38c76490 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x39a690a0 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b0b9bd0 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3de1a3e2 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41193632 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x436344cf snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x45e5063a snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46e5ad9a snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x491822e4 snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ecbcd74 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f2ec2b1 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5064f952 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52f2ce85 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x538a8554 snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5589d8ee azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x56222699 snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5795f4dd snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x592faad7 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x596513d0 snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a1b2066 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b154b00 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5fbf42e5 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x603f7625 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x615e8e95 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63ae1475 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x68b0f3d0 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6eccc522 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6fa59800 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6fd5b7b1 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x749019da snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x799c153b snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7be251a1 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c00786b snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f32064e snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f7e36c0 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x849ddf67 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x849ecc2c snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8838dc03 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89d403c7 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a24e93f query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8bfb77c8 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8cf86c16 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x913529a9 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9287312a snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95c73605 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x99b28c69 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a7c7b92 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ac1984b snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ad4e58a snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3f58a39 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa52abe52 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5a7721e snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa843b3d6 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa919af48 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa9355fb3 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xacecd729 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0bbd244 snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb18064bc snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1c460ec snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb205e6e7 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb22ac3f4 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb3aeecd0 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8a57640 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba835447 snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbcb5bcd0 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbdc976ba snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc06e8284 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc074961d azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc49ad679 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc69dbcec snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9a5a1f7 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca12ee2e snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc8a75d1 snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xccfcb325 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcd992e8d snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0c08b52 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd37b1cb7 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4e872f1 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd7418dd0 snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd94a2293 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9c60eb2 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9e750ce snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdcf668ae snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe14af3ed snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe36c5403 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe4d27342 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe4d90c17 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe564ddcc snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xec9eceee snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeee946b3 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf07dd389 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf134af90 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf22979f3 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf38d7369 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6f32ca8 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf71d0e24 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7b0e8de snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf90ae603 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfad499a6 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd47d6f0 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfecb7617 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0314d10a snd_hda_get_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x05bb6f3c snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x090401a8 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x138256d6 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x23d3da5d snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x27957b7d snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3a90925e snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4d0c20b1 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4e825e91 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5fcc61a2 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6e3f1451 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6f86fba9 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x799c2c69 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7ff3c332 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x803ba509 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x94aaaace snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9b96ff58 snd_hda_parse_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb7a16e47 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xcd3632f5 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xda8b647b snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe815efa5 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x86e7ce1d cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xbb0b5c77 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xd12ce2e3 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xf4fa2ea7 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x81eea29d cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x9c18d0be cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xf5e842b4 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x8204c5aa es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x9f4e9de2 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x2eb2b410 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98095 0x86290270 max98095_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x3bc1c1a9 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x5c94ef6a pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x6aadc81d pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x9d9699f4 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xdb542297 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xb6442ee7 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xbe108e75 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x303a9775 rt5677_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x952df541 rt5677_spi_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x9bfef29d rt5677_spi_write_firmware +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xdc9e2327 rt5677_spi_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x2e25c127 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x4aec02d8 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x6057cb45 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x9d24a9d1 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xb2c32400 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x518b3cd9 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x4edd4012 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xe9defcb4 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x61be0f19 tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xd7907e2b tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x5cf94c39 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x1c79ec7e twl6040_hs_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x77f229c7 twl6040_get_hs_step_size +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x8de25bac twl6040_get_dl1_gain +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0xb2c04051 twl6040_get_trim_value +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0xeb9df689 twl6040_get_clk_id +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x194e1040 wm_hubs_hpl_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x209273ab wm_hubs_hpr_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x23d2cbe9 wm_hubs_update_class_w +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x3f6620b2 wm_hubs_vmid_ena +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5cd7eb9b wm_hubs_dcs_done +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x695973b4 wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x757206d5 wm_hubs_spkmix_tlv +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xaa48aa4f wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xc8035cf4 wm_hubs_add_analogue_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xda881a53 wm_hubs_set_bias_level +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x2516276a wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x47995e50 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xb0ae9442 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xbbcd37ad wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xdd54918d wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x5c416143 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x1c777905 wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xf31c1ccc wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/davinci/snd-soc-edma 0xe9ac67bf edma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xa549afef fsl_asrc_get_dma_channel +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xff40b480 fsl_asrc_platform +EXPORT_SYMBOL_GPL sound/soc/omap/snd-soc-omap-mcpdm 0x7446f149 omap_mcpdm_configure_dn_offsets +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x3da58553 asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xd23c387c asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xd8e7306d asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xe355bb8d asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0x8b29c58e asoc_qcom_lpass_platform_register +EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-idma 0x776c599d idma_reg_addr_init +EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-s3c-dma 0x338534e9 samsung_asoc_init_dma_data +EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-s3c-dma 0xc29d6b10 samsung_asoc_dma_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x67bc1874 tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xb83b7b5b tegra_pcm_platform_unregister +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xe81b2273 tegra_pcm_platform_register_with_chan_names +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-utils 0x35c88e6e tegra_asoc_utils_fini +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-utils 0x6071ab06 tegra_asoc_utils_set_ac97_rate +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-utils 0xcbf803d2 tegra_asoc_utils_init +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-utils 0xec047df5 tegra_asoc_utils_set_rate +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0x0d54c9b9 tegra20_das_connect_dap_to_dac +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0xb52cfca4 tegra20_das_connect_dac_to_dap +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0xbced7431 tegra20_das_connect_dap_to_dap +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x04ecb471 tegra30_ahub_allocate_tx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x55a40206 tegra30_ahub_disable_rx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x5d7237ff tegra30_ahub_set_cif +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x6fe20143 tegra30_ahub_set_rx_cif_source +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x72a91a91 tegra30_ahub_allocate_rx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xb419329b tegra30_ahub_disable_tx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xb4a9367d tegra30_ahub_enable_tx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xb81bca9d tegra30_ahub_free_rx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xc78c7125 tegra30_ahub_free_tx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xccb67e55 tegra124_ahub_set_cif +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xccc98372 tegra30_ahub_enable_rx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xe549513a tegra30_ahub_unset_rx_cif_source +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x12dbae98 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x17b7428f line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5ff0fd4b line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6197f527 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x644114ef line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7375fdf7 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7e3f376a line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x88cd3407 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x91e76085 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa6f3e48e line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb0a7cfe3 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc4b64531 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd079ae97 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xdf83d012 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe9ac0b86 line6_suspend +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0xf6e772c3 irq_bypass_unregister_producer +EXPORT_SYMBOL_GPL vmlinux 0x003f2f17 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x00579b29 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x00615f01 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x00694882 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x00725654 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL vmlinux 0x007763c5 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x0077e410 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x0089c787 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x00a1a7b9 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x00a49148 ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x00cc093a tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x01301ee3 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x014270de ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x014e050c device_reset +EXPORT_SYMBOL_GPL vmlinux 0x014ec8c3 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x0168bce2 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x016c890d pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x01770202 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x017986b5 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x018edcce cpdma_ctlr_dump +EXPORT_SYMBOL_GPL vmlinux 0x019ae694 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x01bb8a38 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x01c7c8ba dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x02061c9b fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x02150c62 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x021e1e00 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x0240d626 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x0245ffa5 of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x02a1770a ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x02a70bd8 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x02e0e600 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x02e40d55 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x02ea4e43 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x02ea8741 max_gen_clk_ops +EXPORT_SYMBOL_GPL vmlinux 0x02ec8a2f regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x02f226ce usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x02f65e96 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x0319345e pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x032375b0 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x03369618 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x033cc699 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x035519ea ahci_platform_disable_resources +EXPORT_SYMBOL_GPL vmlinux 0x035beba5 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x03719f7f crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x03998c7e pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x0399db50 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03af214a ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x03de4441 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x03fc6e00 rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0x0402b504 __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0x040449a7 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x04153cb8 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x0422b8f6 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x0425bf98 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x0434063b pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x0474f07e pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x047721cf ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x0485da10 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0x04be7dd3 single_release_net +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL vmlinux 0x04e7219d i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x04f4bd8d percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x04f65246 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x050d8f21 of_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x052169a4 arm_iommu_release_mapping +EXPORT_SYMBOL_GPL vmlinux 0x052ce4b1 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x05542702 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x0557fb33 dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x0587b267 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x05915e33 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x05994a74 ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0x05c2dc2c dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x05cd7ead of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x05e77f70 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x05ee63e2 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x05f5c819 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0x061a4232 cpsw_ale_stop +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x0625a328 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x06438115 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x065beac7 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x069bd27e snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL vmlinux 0x06af5189 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio +EXPORT_SYMBOL_GPL vmlinux 0x06dd5d38 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x06f4e90a component_master_add_child +EXPORT_SYMBOL_GPL vmlinux 0x07032f9e trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0x0722d5ed do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x074b95bc pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x07546c32 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x07684a40 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x078da988 irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0x07a6dedd devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x07a808b5 vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07cc2827 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x07cf7d18 skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x07d56b7b sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07d67c9c omap_dm_timer_write_status +EXPORT_SYMBOL_GPL vmlinux 0x07e36cea tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x080b3008 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x0811805d register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x083fe7dd omapdss_of_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x087c3340 system_trusted_keyring +EXPORT_SYMBOL_GPL vmlinux 0x087eb16c pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x088d3681 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x0892ae1a musb_writew +EXPORT_SYMBOL_GPL vmlinux 0x08a5fabe l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x08b5656a regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x0961fb9c iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x0967eaf1 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x097b747f snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL vmlinux 0x09ba92a2 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x09bb945d pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x09c367e5 rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x09ce1ffa pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL vmlinux 0x09ebbbca ahci_platform_disable_clks +EXPORT_SYMBOL_GPL vmlinux 0x09ff18bc sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL vmlinux 0x0a075732 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x0a2f79e7 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x0a56a482 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x0a58e3f1 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x0a7e065a sdhci_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x0aa5fc30 snd_soc_register_codec +EXPORT_SYMBOL_GPL vmlinux 0x0ac015ee mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x0ad9dc80 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x0ae8927b __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x0afc7351 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x0afd4610 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b195fcf usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x0b1dac4f power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x0b5a3606 rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x0b6003f6 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL vmlinux 0x0b6a86fb edac_subsys +EXPORT_SYMBOL_GPL vmlinux 0x0baaf2ea file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x0bb3e9f3 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x0bb56eaa percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x0bbae511 return_address +EXPORT_SYMBOL_GPL vmlinux 0x0bcb5187 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x0bde0fa0 clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x0be08d57 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x0bf02d60 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0bfd7575 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x0c00226d arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c0cc728 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c3bab44 mtd_is_locked +EXPORT_SYMBOL_GPL vmlinux 0x0c509a32 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x0c634ecf relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x0c70e1bc da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x0c89f3e8 tpm2_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x0c8d39bd extcon_unregister_interest +EXPORT_SYMBOL_GPL vmlinux 0x0c960e61 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x0ca844a8 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x0cabfad3 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0d158450 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x0d2260e3 md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0x0d2570e8 regmap_fields_force_write +EXPORT_SYMBOL_GPL vmlinux 0x0d3042a0 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL vmlinux 0x0d46f83c snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0d8a4ac0 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0x0d8c06ca ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x0d908d95 mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x0d9b7f5e raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x0d9e8754 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x0dc641e8 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0x0dd5e94b fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de15d79 pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x0deab245 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0e083633 snd_soc_platform_read +EXPORT_SYMBOL_GPL vmlinux 0x0e31baf4 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x0e4f5cd0 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0e5b9f1f mv_mbus_dram_info_nooverlap +EXPORT_SYMBOL_GPL vmlinux 0x0e7d48a4 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x0e8a574a cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0eb7f9a2 devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x0ee87b95 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x0efe3a46 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x0f289ac1 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f49f121 arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x0f4b2f37 x509_request_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x0f5bb12e rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x0f73b376 omapdss_of_get_first_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f8a5ba0 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x0fd644c0 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x0ff9af09 cpdma_ctlr_int_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x1009a95c snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x103259f0 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x103373a1 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x106f9c51 cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0x1073f2d6 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x10752674 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x1082b508 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x108a856f ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x10c953eb pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x10e74e9a snd_soc_remove_platform +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x11023b92 kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0x11025677 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x110af8d4 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x11337387 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x11568563 mtd_read +EXPORT_SYMBOL_GPL vmlinux 0x115d5fc9 pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0x115f88ed tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x11ed8376 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x1218d2d9 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x124f4c6e sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0x1256c859 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x125d35e5 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x125d89cb usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x1265fbbc dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x1280a745 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x12b0d301 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x12bf6bc5 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x12df2d8e sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x12e0f630 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x12e994c5 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x13059625 of_dma_get_range +EXPORT_SYMBOL_GPL vmlinux 0x13100499 vchan_init +EXPORT_SYMBOL_GPL vmlinux 0x1318821c gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131b301f driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x1320f00e usb_gadget_probe_driver +EXPORT_SYMBOL_GPL vmlinux 0x13241d45 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x13347a33 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x13354608 scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x1355d415 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x135c6315 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x135c6b58 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x136cb3a5 of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0x1381ac91 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x1381d4f3 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x138bcc16 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x13984ba7 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x13a7b075 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x13b53f78 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x13b89dee pinctrl_request_gpio +EXPORT_SYMBOL_GPL vmlinux 0x13d6ecb9 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x13e02dc9 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x13f19f04 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x13fc3a4a register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x140e2be2 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x1421a78d blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0x142f240e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x144093f1 register_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0x14611525 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x14614920 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x14756950 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x14a98a21 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x14ca398b devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x14db8c6d ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x14f09e04 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x15047acd ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x150ad6ee regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x1514b45e __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x152aef32 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x1533a7ae crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x155694a1 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x15ae2bbf regmap_update_bits_check_async +EXPORT_SYMBOL_GPL vmlinux 0x15b5efa1 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x15c72bbf get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x15dcd870 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x15e06ef5 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x15e666dd regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x15f41a9b pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x1628cd68 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x16529add debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x1658d218 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x165d9fa7 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x1670f6d8 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x16730eeb cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x167b8151 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x16831fb9 sm501_modify_reg +EXPORT_SYMBOL_GPL vmlinux 0x168431f5 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x16ac0a63 __sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x16b51d5e regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x16b6cd2c dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x16c310d4 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x16c7674d mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x16ed6929 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x16f020bb subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x16f1cd69 tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x170b403a iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x170e1de1 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x1717a05d omap_get_plat_info +EXPORT_SYMBOL_GPL vmlinux 0x17405494 mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0x17449cf0 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x17474eaa of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x175651c0 snd_soc_bytes_info +EXPORT_SYMBOL_GPL vmlinux 0x1756fe11 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x175b0cee thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x178034b3 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x1787f0f7 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x180b2776 platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x1825bea8 dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x18267f24 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x1831473f of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x1869d087 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x189f76a0 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x18b68d2f of_pci_get_host_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x18b9e4e7 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x18cb1317 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x18e8cf17 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x18ef108b skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x191193c8 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x192441c6 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x1927a4c9 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x192c07e8 mtd_device_parse_register +EXPORT_SYMBOL_GPL vmlinux 0x1949d61e od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x1979165c of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x1980b04f usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x1990f8ff pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19b0e9b5 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x19e03653 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x19f27d5b __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1a1c4082 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x1a3a3cf5 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x1a3d97ca blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0x1a41d490 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL vmlinux 0x1a52e49f irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x1a62e046 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x1a661ac4 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x1aabe552 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x1ac3e3a7 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x1ac6da1f device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1aea587f usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x1affbfb7 uniphier_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x1b110af9 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x1b1222a1 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x1b2fc99b securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x1b30062b sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x1b3261e0 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x1b827f4a cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b923d01 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1b9c4b9a ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0x1bb5fc26 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bcb9773 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x1bff9e7c snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL vmlinux 0x1c072354 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x1c20a42e dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x1c373c9c ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c5a7391 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase +EXPORT_SYMBOL_GPL vmlinux 0x1c63bef8 cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL vmlinux 0x1c716881 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x1c74156b stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x1c760a46 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1d08a9bc tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x1d0a396c snd_soc_register_component +EXPORT_SYMBOL_GPL vmlinux 0x1d20964c usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d2c664a crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x1d4d65ab extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x1d6a58d2 cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL vmlinux 0x1d73c494 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x1d7cb586 clk_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x1db0f9f0 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x1dc06fe9 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x1dda96ed snd_soc_unregister_card +EXPORT_SYMBOL_GPL vmlinux 0x1debe39e of_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x1e07ee2f xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x1e2e36be snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e65addb bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1e66d0e1 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x1e76bb9d of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e7d6157 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1e861e4a relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1ea7b2af snd_soc_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x1eb520ba pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebd7712 wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ec6247a virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x1eddfdff kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x1ee721a8 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL vmlinux 0x1eec6f22 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x1f217a08 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x1f244d01 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL vmlinux 0x1f3b709a alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x1f5a1b8d snd_soc_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1f6fad8c inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x1f774f46 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1f9ff2ff regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x1fa96f3b usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x1fb41f5a __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1fb716f2 mtd_is_partition +EXPORT_SYMBOL_GPL vmlinux 0x1fb9cd81 of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0x1fcc41dc debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x1fe03744 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x1fef430e bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x1ff6c8b8 perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0x201d8ea3 encode_rs8 +EXPORT_SYMBOL_GPL vmlinux 0x203e5322 extcon_set_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x205c01a5 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x205f5dbe devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x2081f581 bgpio_remove +EXPORT_SYMBOL_GPL vmlinux 0x20a1892b tpm2_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x20a692de usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x20befb17 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x20e4ed1a clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x20f269f6 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2101f42e gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x21091318 of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x210a348d arm_iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x2114d49a musb_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x212335f3 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x212d7c19 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x21395662 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x215b932d disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x21667e6f pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x21693b72 usb_gadget_set_state +EXPORT_SYMBOL_GPL vmlinux 0x216a2dcd pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21c05b34 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21d5242c bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x21d75732 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x21f3143e of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x21febf58 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x2202bd56 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x220a4554 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x22120089 omap_dm_timer_read_counter +EXPORT_SYMBOL_GPL vmlinux 0x22125c70 cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL vmlinux 0x22192b48 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x222454e1 tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x222bd455 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x222f0265 pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0x22698b5d init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x226a674d atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2277f829 snd_soc_component_read +EXPORT_SYMBOL_GPL vmlinux 0x227a7b5b single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x2293a3df regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x229a27dd inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x22f10470 of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x22f14c10 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x22f2eb54 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x22f42f75 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2302ea71 sm501_set_clock +EXPORT_SYMBOL_GPL vmlinux 0x230c78ba device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x231d70fc encode_bch +EXPORT_SYMBOL_GPL vmlinux 0x23456075 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0x23647123 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x23756cdb extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x2383618b extcon_register_interest +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x23887df1 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x2392f1a5 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23b34307 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x23d17fb6 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x23fc94e2 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x240068dc ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x2401fdef __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x24220fc6 sdhci_free_host +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x244c1899 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x247223cc tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24a23a90 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24b35a39 of_get_nand_ecc_strength +EXPORT_SYMBOL_GPL vmlinux 0x24bae359 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0x24c3999b cpsw_ale_create +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24efe2dc sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x25a69457 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x25a75b5a pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x25b219c6 __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0x25cf806e snd_device_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x25d13a71 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x25e349e9 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x25e4fa8c btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x25e90350 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x26085a7e pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x260d2be1 crypto_lookup_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x261098a6 of_display_timings_exist +EXPORT_SYMBOL_GPL vmlinux 0x261917f3 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x2620e343 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x26449489 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x2649ad84 amba_ahb_device_add +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x26997fa3 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x26adb815 thread_notify_head +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26c547c0 bL_switcher_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26c8b665 cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26d9e265 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x26e02ba4 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x26f22a53 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x27188398 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x271a2756 wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0x2733997b of_get_nand_ecc_mode +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x274f7183 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x275b869f extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x275c6445 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x275d82bd __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x279c5a18 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x27af539f unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x27bfb84c imx_pcm_dma_init +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x28100121 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x2812e97d mtd_get_device_size +EXPORT_SYMBOL_GPL vmlinux 0x281914a0 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x281b05ff led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x2825a3e5 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x283dcb6c crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x28428026 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x2866610a fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x2868f3ca gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x287a029b get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x2886d374 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x288a3afb __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x288e3683 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x289782a2 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x28b0ed78 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x28de6ae3 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x2931479d mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x29436b06 usb_add_gadget_udc +EXPORT_SYMBOL_GPL vmlinux 0x296c5ce4 mtd_block_markbad +EXPORT_SYMBOL_GPL vmlinux 0x29715cf2 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL vmlinux 0x29740577 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL vmlinux 0x297dff57 snd_soc_platform_write +EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x29d4f664 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x29de2f61 __sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x29e606ba ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29fa419f decode_rs8 +EXPORT_SYMBOL_GPL vmlinux 0x29ff67c6 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x2a06b77c securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x2a1959ed __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x2a2c6254 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x2a3e6b28 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x2a5783c3 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2a5b5501 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x2a610fa1 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a816a05 dev_pm_opp_of_cpumask_add_table +EXPORT_SYMBOL_GPL vmlinux 0x2aa84f52 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x2aae43f7 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x2ad52abb sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x2ad7afe7 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x2ad9d326 md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x2ae04de3 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x2ae356a7 omap_dm_timer_set_pwm +EXPORT_SYMBOL_GPL vmlinux 0x2ae5394e task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x2af2cd1c tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x2af9fdd0 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b2f2093 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x2b4352c8 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL vmlinux 0x2b54aa52 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x2b57d26b mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x2b639d66 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2b7a940a usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x2b92adcc clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2babe81f __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x2bd186df regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x2beaef51 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x2c144af3 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c4aef8d dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x2c6a1115 regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2cb3c34c cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x2cdd580d blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x2ce152cd pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2ce9bc45 skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2ced3de3 clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x2cf76482 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x2d0039a6 __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d1dd6ad ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0x2d29db30 arizona_of_get_named_gpio +EXPORT_SYMBOL_GPL vmlinux 0x2d3bdd63 dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d5c3e55 i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0x2d6d2e54 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x2da3ecbb regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x2dad9b05 register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x2db8fd29 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x2dcaafb7 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x2dcc544a sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x2de681b6 system_verify_data +EXPORT_SYMBOL_GPL vmlinux 0x2df4a259 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x2e1eb3bf ahci_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e278f88 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x2e29ad8b ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e5770c7 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL vmlinux 0x2e66777f ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2e742b00 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x2e9600c3 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x2e9670c0 pl320_ipc_transmit +EXPORT_SYMBOL_GPL vmlinux 0x2e9ef6f1 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x2ea1a1f2 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x2eae4a26 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2ed24d49 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x2ef4d512 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x2ef6b5bf smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x2f05441c of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x2f0567aa skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f11f02e split_page +EXPORT_SYMBOL_GPL vmlinux 0x2f27560f devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x2f308d75 pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0x2f3bcdeb ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f90da7e trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x2fc7b541 hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x2fd42faf pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x2fd715a7 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake +EXPORT_SYMBOL_GPL vmlinux 0x300d7e57 free_rs +EXPORT_SYMBOL_GPL vmlinux 0x301920aa clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x301e248b crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x3033c58c usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0x303c1831 of_overlay_create +EXPORT_SYMBOL_GPL vmlinux 0x3051984a omap_iommu_restore_ctx +EXPORT_SYMBOL_GPL vmlinux 0x305f2fd1 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x30693bb7 imx_audmux_v1_configure_port +EXPORT_SYMBOL_GPL vmlinux 0x3086f9e3 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x308fab33 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x30911176 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x30a2b5f5 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x30a7d024 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x30aad433 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x30bce10c usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x30d442ab mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x30f044cc iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x3100bf02 wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x3122628a inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x312eaba2 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL vmlinux 0x314172aa inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x314d5b42 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x314e9318 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x3166fa65 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x316e46f4 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x3188b2a6 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x319d73fb wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31cfe2d6 swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x31d78f73 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x31e0d4a0 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x31eda93b n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x31f6ac52 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x31f701c5 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x320d3e81 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x321483e1 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x322b3bee gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x3237f811 ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0x32419fb9 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x3250e5aa pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x3264cac9 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x327cac88 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x3282fe36 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x328459af dma_request_slave_channel_reason +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x3295ec8b of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32d10d43 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x32f97a8d thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x3300387a crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x331f420e regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x3320f8eb pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x3341dcee usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x3349089c mtd_read_oob +EXPORT_SYMBOL_GPL vmlinux 0x33567f82 call_filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x335b3d76 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x3398c670 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x33993b2b ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x339f0020 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x33ba0509 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x33fc6ef4 dev_pm_opp_of_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x33fefed6 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x341643ba omap_dm_timer_modify_idlect_mask +EXPORT_SYMBOL_GPL vmlinux 0x3432f510 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x3445f4ba pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x34725681 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x347682ce snmp_fold_field64 +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x349aba94 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34a9e866 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x34aa3d08 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x34c710dd devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x34ce1c26 thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0x34ef5738 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x3529f03a usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x353aab28 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x35410ec6 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL vmlinux 0x356853c0 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x356be80d tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x357745a0 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x357c0f5a bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x35817268 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35a01f05 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x35ac128a devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x35dcd1f7 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x35f3b0c0 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x362c03b8 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x362f8627 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x363eadb1 of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x364ada5a fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x364e0044 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x36740b27 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x36783070 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x368a2604 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36ad2f87 snd_soc_component_write +EXPORT_SYMBOL_GPL vmlinux 0x36ad5cfa thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36de0ca0 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x36e26658 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x36fb7480 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x371f658a __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0x372c18e3 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0x37302958 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x374d9a27 of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x3776d6c1 tegra_pinctrl_remove +EXPORT_SYMBOL_GPL vmlinux 0x378edb3d snd_soc_add_component_controls +EXPORT_SYMBOL_GPL vmlinux 0x37df0e23 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x380f825f dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x382602f3 omap_dm_timer_set_prescaler +EXPORT_SYMBOL_GPL vmlinux 0x382aad29 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x382e57f5 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0x38618cb0 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy +EXPORT_SYMBOL_GPL vmlinux 0x38697f6a kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0x386b6a44 alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x387f3aca snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL vmlinux 0x38a4ebae dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x38b527e9 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x38cb0c38 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x38dfb3f4 omapdss_of_find_source_for_first_ep +EXPORT_SYMBOL_GPL vmlinux 0x38e372d0 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38f784e2 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0x390dd184 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x39290e1c ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0x392aae93 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x394496da crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x394972bb sdhci_alloc_host +EXPORT_SYMBOL_GPL vmlinux 0x396c8d2c dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x398c6b5a spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0x398e67e5 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x39a5ef2f of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x39b598d1 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39d14265 mtd_block_isreserved +EXPORT_SYMBOL_GPL vmlinux 0x39d1d043 of_pci_find_msi_chip_by_node +EXPORT_SYMBOL_GPL vmlinux 0x39d672fa power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x39e1fc59 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x39e73ec9 of_get_nand_on_flash_bbt +EXPORT_SYMBOL_GPL vmlinux 0x3a02c870 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x3a15a2b5 of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0x3a16417f __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a2f53e1 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3a394b4c usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x3a39f91a hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x3a42dfe1 sm501_find_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a59f629 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x3a5f8095 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x3a712d22 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x3a926a47 crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3a9d93e1 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3aeeccc4 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x3b0ebb12 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x3b1831fe pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x3b20453e debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x3b2a2c8a nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0x3b3f4d6d devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x3b47df8f ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x3b547bc9 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x3b76f97f regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x3b87394b __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x3b96be7a regmap_write_bits +EXPORT_SYMBOL_GPL vmlinux 0x3ba6651e perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x3bb1c026 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3bc6b0ac __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x3bca2eb0 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x3bdaf384 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x3be26f7b inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x3bf67789 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x3bfa6694 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x3c09c859 mtd_table_mutex +EXPORT_SYMBOL_GPL vmlinux 0x3c20efd4 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x3c2a202e posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x3c5157fe snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL vmlinux 0x3c5fa08b crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0x3c831441 arm_check_condition +EXPORT_SYMBOL_GPL vmlinux 0x3c8c9015 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3c93ea25 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x3c956d10 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x3cbb9752 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x3cbd4e81 blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x3cbf7803 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x3cc0ffa9 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x3cc50447 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cf5625a blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x3cf637c8 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x3d15dc6f ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x3d16f4d0 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x3d2118d8 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3d314491 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d44f84a cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3d732c4c dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x3d75fcbf clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x3d817adc ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x3db1674b sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3dd4d3a7 bprintf +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3debd974 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e31d9c3 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x3e37ffe4 __netlink_alloc_skb +EXPORT_SYMBOL_GPL vmlinux 0x3e38c3bc yield_to +EXPORT_SYMBOL_GPL vmlinux 0x3e410620 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e836e58 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x3e98aad3 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x3e9e4c1e extcon_get_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x3ebee169 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x3ee37432 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f25ff7b __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x3f298cef i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x3f4bb005 rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0x3f664fa5 __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x3f8af5c2 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x3fa9bfdc of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x3fab4f23 snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL vmlinux 0x3fc5fdbb ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x3fdc4046 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x3ff16a52 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x3ffdc1a4 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x40189e47 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x401adc60 regmap_fields_write +EXPORT_SYMBOL_GPL vmlinux 0x401d6bd6 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x402a1330 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4044dc1e dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x4058b88b genlmsg_new_unicast +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x407acff1 pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0x407ff12f blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x408085fa phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x40947605 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x40a09493 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x40a2ff53 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x40abfa54 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f350e9 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x40f85c76 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x40ff92ad omap_dm_timer_start +EXPORT_SYMBOL_GPL vmlinux 0x4112cecc bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x413ffd27 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x414c89cf usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x415d5705 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x418de6b8 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x4194f554 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x41961fec fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x41c5274c __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x41fb747d snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL vmlinux 0x42025883 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x421b438a pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x4223be60 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x423b0dbc wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x42423bb9 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x42583f1b scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x426ecf79 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x42909a02 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x4292c50d mtd_add_partition +EXPORT_SYMBOL_GPL vmlinux 0x42a5f282 snd_soc_register_platform +EXPORT_SYMBOL_GPL vmlinux 0x42a8cc91 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x42ababa1 omap_dm_timer_get_fclk +EXPORT_SYMBOL_GPL vmlinux 0x42ac8612 shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x42b364ef scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x42b77fec platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x42d8e1b4 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x42e80724 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x430fcba0 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x43227dc3 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL vmlinux 0x432f16d7 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x436bc995 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x436dbf6d iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x437487c0 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x43876e57 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43b0cdc0 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x43ccd344 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x44020321 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x44088a5e swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0x441d8ef5 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x442ab9ea bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4452ecff wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x4463545e __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x44694817 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x4474aeee device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x44811ab6 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x448c6f58 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44bfe36d fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x44cce7f8 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x44e2e6bc usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x44f1cd1d regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x44f442ae pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x450e7e58 omap_dm_timer_request_by_node +EXPORT_SYMBOL_GPL vmlinux 0x451e435b skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x4525f69b wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0x452f0de3 dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x453b20e6 napi_by_id +EXPORT_SYMBOL_GPL vmlinux 0x45692e2e snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL vmlinux 0x45699f36 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x45970d82 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x45a1a0ae ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x45adbe71 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x45ba1367 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45e8fe1c crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46066e5b perf_pmu_name +EXPORT_SYMBOL_GPL vmlinux 0x4608f58e sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x4641d4c7 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x465bf04b pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x4663ec5b alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x466e5342 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x46776174 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x469cc2ca ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x46bfa772 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x46cd261e wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x46d0f2e4 gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0x46d88039 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x46ddac59 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x46e2e153 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x472b086d dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x4744b9fd phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x476498ce serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x47797937 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x477a8e4f usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47acf6e1 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x47b0d809 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x47c783d9 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x47d9f8dd crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x4813fda2 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4828638c rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x48475a27 dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x485d6f76 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x4871fb7c __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x48d1f4af security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x48f677cb regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x491f1e1d ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4977013b snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x4986b12a devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49ae817e pm_genpd_syscore_poweron +EXPORT_SYMBOL_GPL vmlinux 0x49be82c1 pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49ed8401 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x49ededab pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x49fcd405 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x4a1984cb __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x4a1eee12 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x4a268288 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name +EXPORT_SYMBOL_GPL vmlinux 0x4a63f3b2 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0x4a663f49 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x4a69fc58 tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x4a8119fb blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0x4a8e1546 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x4a965300 snd_soc_unregister_platform +EXPORT_SYMBOL_GPL vmlinux 0x4a987367 fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ab1a16b usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x4ab97728 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x4abfc42b pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x4aeb3558 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x4b721776 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x4b7c8e00 cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0x4b8625ac swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0x4b991631 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL vmlinux 0x4bafcdd8 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x4bb61ad6 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x4bd369e1 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x4bd5e6ae __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x4bea2953 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x4beb4bbc device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x4bf1debc bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4c00747f trace_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0x4c120e92 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x4c3d11ef led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x4c45f4e9 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x4c47ec15 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x4c5353f0 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4c5c98f8 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c6ff881 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x4c78f7a8 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x4c7e2bce snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL vmlinux 0x4c94e6fd usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x4c9b40ae snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL vmlinux 0x4c9e2011 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x4ca2d78e tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x4cadc915 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x4cc594e2 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x4cd72083 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x4ce40c43 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x4ce79375 blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d21ad08 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x4d24e475 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x4d26c955 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x4d38f1e0 bL_switcher_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4d912616 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x4d968513 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x4d981315 sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0x4d98b3ff driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4d9d1f4b i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x4dbe8d71 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4de5cea3 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x4e060d9b ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4e0d016c of_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x4e0e359f page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e134a5d omap_dm_timer_set_source +EXPORT_SYMBOL_GPL vmlinux 0x4e1560c3 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path +EXPORT_SYMBOL_GPL vmlinux 0x4e2c2dd2 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x4e2e838d scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x4e329ff8 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x4e32f117 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x4e6f100d ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x4eb520a8 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x4eb813bf fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x4ee261bd pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x4ef5a2a3 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4f17318a shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f3a379d lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x4f459792 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4f54c694 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL vmlinux 0x4f5b52f1 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f7200c9 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4f80f88d cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x4f848ba7 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x4f8849d4 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x4f97a2b0 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fa6bb98 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x4fd158f3 of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fde1d42 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4ffa5bf3 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x5010b816 otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0x50271d7a sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x50362600 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x5044f31f adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x50567edb usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x505b1fd9 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x506ac0e2 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x5074734d of_css +EXPORT_SYMBOL_GPL vmlinux 0x50806149 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x5080c352 trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50a7914c rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x50b04760 crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x50b27706 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x50b536c5 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL vmlinux 0x50b8fa35 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x50b92a15 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x510e2cff of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x511fa67c of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x5131e6bd snd_soc_dapm_sync +EXPORT_SYMBOL_GPL vmlinux 0x51472217 snd_soc_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x514a4b02 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x51855f81 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x518a6562 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x51ac102f i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x51b7db52 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x51c0ad41 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL vmlinux 0x51e75d3d iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x51f37e85 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x5200c3b4 usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x5208e43b sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x5209e713 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL vmlinux 0x5213ef4f wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0x521655b7 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x52192216 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x522dea6b blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0x526280c7 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x5289745a max_gen_clk_probe +EXPORT_SYMBOL_GPL vmlinux 0x52906617 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x52a30a8d phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x52b549c4 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x52b92206 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x52c0d5d8 scatterwalk_bytes_sglen +EXPORT_SYMBOL_GPL vmlinux 0x52cee151 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x52d46a51 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x52d569cf dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x52f26e97 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x52f94fe3 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x5317d310 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x538e84bb sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x53ae589b i2c_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0x53ceec13 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x53ea310f virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x53ee0c2e pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x53f93344 xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0x53fb67a6 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x54085b8d usb_string +EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x544aab61 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x545fec86 percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x54763681 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x547b70fe usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x548c65c1 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54b60b4b __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x54b82227 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x54c25417 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x54d468f1 pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x54eb144e bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0x54ed8414 mtd_erase_callback +EXPORT_SYMBOL_GPL vmlinux 0x55014f8b spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x55076506 of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0x551398ed gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x55145f4a extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x551e2197 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x552728f6 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x55467007 device_del +EXPORT_SYMBOL_GPL vmlinux 0x556398e6 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x557474c7 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x557b60cf pl08x_filter_id +EXPORT_SYMBOL_GPL vmlinux 0x55a66f1a usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x55cfbe63 crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0x55dd149b pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x55e023e2 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x55e6347b mtd_del_partition +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55fcf8ac component_master_add +EXPORT_SYMBOL_GPL vmlinux 0x5601b2b1 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x561af04c posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x562df030 dbs_check_cpu +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x5652a0fd eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x5699dbcc tps65912_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x56a94123 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x56d31820 musb_writel +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x56ed29a9 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x56fcc49e __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x5712e484 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x573dc48e of_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0x57557406 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x575c540e xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x5777e456 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x577f975a dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x57833c3f crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x57962c46 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57b8d13d irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57e796d9 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x58063ede srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x580d7bd3 omap_dma_filter_fn +EXPORT_SYMBOL_GPL vmlinux 0x584964af snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL vmlinux 0x584e89f5 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x58500404 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x58631dab imx_audmux_v2_configure_port +EXPORT_SYMBOL_GPL vmlinux 0x5882eae8 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x5894f8ad dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58a87d7d iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0x58ade16c __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x58b2878f sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x58bd4836 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x58c0f833 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x58d5e7b7 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x590e1f09 snd_soc_lookup_platform +EXPORT_SYMBOL_GPL vmlinux 0x59129a74 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x5919e8af devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x591d44ce pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x5925cc80 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x5929e21a debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x594cde67 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x594dee1c fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x5955d0e8 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x595d002e mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x595ec5d4 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x59638113 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x59740ba7 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x5975866a l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x5983768b ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x5986a0d1 pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0x599b41f2 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x59ae74b0 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x59d4fe58 component_add +EXPORT_SYMBOL_GPL vmlinux 0x59d711dc ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x59eb3303 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x5a0780fe ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0x5a1e89b9 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x5a220b8d usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x5a25c676 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x5a49af25 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x5a5ad32a regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x5a6f0314 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a8f213c cpdma_ctlr_eoi +EXPORT_SYMBOL_GPL vmlinux 0x5aa81d35 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x5acf6567 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x5ad670a4 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x5b09b8ea of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x5b295df5 user_update +EXPORT_SYMBOL_GPL vmlinux 0x5b3da68a crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x5b4b56be unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x5b5104fd rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x5b623d88 omap_dm_timer_free +EXPORT_SYMBOL_GPL vmlinux 0x5b6362c0 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0x5b8fd0e9 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5b9bfb71 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x5bb415bd of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0x5bbd00b1 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bd29d7c regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x5bd7e7a3 snd_soc_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5c021739 securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0x5c0c06d4 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x5c14bfc0 gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0x5c2fe4a5 cpdma_chan_stop +EXPORT_SYMBOL_GPL vmlinux 0x5c397b2b tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x5c5904cc sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c5f3bbe blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x5c604f0c get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x5c724709 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5c84364b crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x5c910743 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x5c98285e ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cb0b843 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x5cc31ee1 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5cc8bc0a ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5cc9ecfd palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x5cd44320 of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d153a7a hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0x5d19c3e3 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x5d1e4ec7 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x5d22f320 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x5d51bcf7 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0x5d5ee71c nand_release +EXPORT_SYMBOL_GPL vmlinux 0x5d8fd7dd pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x5d911686 spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x5d921cfe sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5db6ad1c pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x5ded83de crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x5e0a4f23 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x5e134147 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x5e271037 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5ea20b6b __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x5eacee6b sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x5ec37258 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x5ef2f2f2 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x5eff8f7f led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5f01bee4 percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0x5f050c03 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x5f0ca236 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x5f22400f power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x5f36cb29 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5f39cb4e __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x5f460f28 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x5fae2c8c ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x5fd59024 __module_address +EXPORT_SYMBOL_GPL vmlinux 0x5fe70002 fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x6029e9a9 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x60351573 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x6035b78e fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x603c0313 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x6045581b mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x6046c07e regmap_update_bits_check +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x60583fa3 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x60603d5e irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x60688e4f trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x6075d0c7 omap_tll_init +EXPORT_SYMBOL_GPL vmlinux 0x608ace20 tegra_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x609a607e watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x60a08300 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60abe362 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x60dc0b84 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x60e99147 pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0x60f6e6d4 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x60fec0f2 digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x610eae4f blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0x6150b4ed ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x61539990 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x6172a6be serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x6184006a __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x6187a54a sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x618df166 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0x61a40dc3 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x61c6ab11 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x61df953f balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x61e30030 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x61e44c15 use_mm +EXPORT_SYMBOL_GPL vmlinux 0x61ebf268 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x61effa8f sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x61fecd86 of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x61ff3859 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x6210299e scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x62159ca9 tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0x621ed51d sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x623ae58d i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x62452a61 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x62590ff8 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x6276fc5b snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL vmlinux 0x62b78d26 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x62c7280b init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x62db8bff anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x631eaab7 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x6327194a disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x632756e4 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x634cdfbb ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x635ee8a0 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x6374ae28 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x6375b87f xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x63a6199a fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x63a77a30 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x63b81816 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x63c04985 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x63c1c14c unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x63f023aa debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x64087c73 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x64154792 of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0x6425b243 blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x6427956b ahci_shost_attrs +EXPORT_SYMBOL_GPL vmlinux 0x643476eb ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x64426ed8 omap_dm_timer_write_counter +EXPORT_SYMBOL_GPL vmlinux 0x64600633 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x649f0259 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x64a9e840 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x64b88b0f balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x64d36333 __of_genpd_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x64eb76ae irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x64edceb3 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x64efc38b snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL vmlinux 0x64fd0ae5 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x64fe581d gadget_find_ep_by_name +EXPORT_SYMBOL_GPL vmlinux 0x65217a47 thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0x65409a67 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL vmlinux 0x65427d72 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x6543258d devres_get +EXPORT_SYMBOL_GPL vmlinux 0x65537437 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x655fcb8c icst_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x657c58c9 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x65806f89 wm8400_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x65889e08 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65c04970 imx_pcm_fiq_exit +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65e73808 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x66017ed5 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x66033f5f ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x66133e9d fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x66353103 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663d9e9a gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x664730bd pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x6661763c pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x667fe5f3 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x66a299af trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x66b21840 snd_device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66ee0ad7 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x66f1cb4b sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x670ba98e vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x670e2d64 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x67283407 ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0x67386c58 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6756695e ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0x6761a62f ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x679a6c99 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x67b491f4 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x67b6af02 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x67c1ae2d of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x67c5dffd __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x67e4be68 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x67e8ddbc snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x680c3168 __bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x68194e52 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x6838faee pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x684d2c2b rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6866a75c sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x68857f45 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x689140b5 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x689ee539 arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0x68bff004 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x68db3ab9 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x68e47b2c cpdma_ctlr_destroy +EXPORT_SYMBOL_GPL vmlinux 0x68f0be19 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x690216de __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x6906338e arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0x6908ad71 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x690be653 cci_ace_get_port +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x69244f55 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x693ed7ee usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0x694be42a usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0x697a398e ahci_platform_resume +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x699caa17 pwm_config +EXPORT_SYMBOL_GPL vmlinux 0x69aeef06 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x69f664fc pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x69fa0b5c snd_soc_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x6a04a554 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x6a1074df aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x6a16db09 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a1914b3 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x6a333d53 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x6a41e14f omap_dm_timer_set_int_disable +EXPORT_SYMBOL_GPL vmlinux 0x6a425c91 stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x6a42b519 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a6a50d7 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x6a995fe1 reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0x6a99f5b4 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x6a9e8feb blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x6aad295a ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x6ac3ef7f unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x6adacaff regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x6b27a99c sdhci_set_clock +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b2f8cc5 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x6b5933c7 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x6b596d77 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL vmlinux 0x6b612ea2 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x6b75c2eb regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x6b76df34 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x6b770f49 decode_bch +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b8366fb ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x6b8b8efa inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x6b902093 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x6b92e7f3 of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x6bbda7fd unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x6bc78f50 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x6be265ad task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x6beb826e __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x6c030e63 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c1f4475 omapdss_of_get_next_port +EXPORT_SYMBOL_GPL vmlinux 0x6c209eab __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0x6c32ee3e component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c60b9af xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x6c73cac2 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6c8e1463 sdhci_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x6c9e133f get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0x6cc5b393 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6cd937b3 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x6cdf0883 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x6cf6bc38 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d424356 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x6d595707 iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0x6d5b4f56 cpsw_ale_dump +EXPORT_SYMBOL_GPL vmlinux 0x6d8312a0 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL vmlinux 0x6d99e9f0 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x6de79f76 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e076e88 snd_soc_get_volsw +EXPORT_SYMBOL_GPL vmlinux 0x6e26bc3f ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x6e30207e tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x6e37d20f rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x6e4942af ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0x6e51afc8 percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e7ad4e4 __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x6e84bd55 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x6e85f6be gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e99c04b pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x6e9c825c security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x6e9f25ac devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x6ea7dc2b event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x6eac4329 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x6ead705e kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x6eb944f4 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x6ecd6934 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0x6ed9f20a snd_soc_unregister_component +EXPORT_SYMBOL_GPL vmlinux 0x6ee7469d snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL vmlinux 0x6efa830d pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0x6efd7e88 rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x6f067d21 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x6f0d167b cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x6f12afe2 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x6f174350 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x6f1ae0e5 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f26e5b7 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x6f2b03ce tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x6f5a03f4 i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x6f5c638f kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x6f5db668 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL vmlinux 0x6f6db608 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x6f7c3288 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x6f92f237 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x6f9f5be7 crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6fbb3bd9 init_rs_non_canonical +EXPORT_SYMBOL_GPL vmlinux 0x6fc760e4 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x6fdebc3c ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6ff1e860 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x706ecc39 genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x707abc69 arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x708695f8 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x70bd1d49 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70daac81 arm_iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x70f14fdb ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x71008581 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x711048b2 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL vmlinux 0x7118d9a6 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x71405316 arizona_of_get_type +EXPORT_SYMBOL_GPL vmlinux 0x71422be6 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x714eae11 clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0x714fc419 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x7156f021 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x715b815e of_pci_msi_chip_add +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x7164982f rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71a4e474 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x71a602da devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71dd1f25 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x71e427ca snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0x71f38e7d proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x71f89768 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0x7215ad31 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x72234dd6 musb_readw +EXPORT_SYMBOL_GPL vmlinux 0x72263238 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x72387e4e wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7246777c led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x724b1f37 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x724e0e1b crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x72515d5a snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x7252365e snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL vmlinux 0x726fc5f7 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x7291019b __cci_control_port_by_index +EXPORT_SYMBOL_GPL vmlinux 0x72935ddf find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x72b61d4a spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0x72b69d03 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x72bb4afd mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x72c2a689 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x72d4a115 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x72e3f569 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL vmlinux 0x72e64095 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x72e6578c ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0x72f40b23 msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x730bd0c7 asic3_write_register +EXPORT_SYMBOL_GPL vmlinux 0x731dc79c class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x73252296 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x73305274 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x733da5c4 devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x733f57b6 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x734f73f1 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x735e0e95 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x737d7f4a get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x738f208f usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73ab628d crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x73ad1eee usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x73af9acd ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73e1dbd8 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x73f40f65 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x7427cb76 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x742bd64c devres_release +EXPORT_SYMBOL_GPL vmlinux 0x743311de regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x743ac286 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x748b8ef3 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x749aca6a bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0x74a22c30 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x74b30e3b aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74eabb01 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x7512551b mtd_writev +EXPORT_SYMBOL_GPL vmlinux 0x75197df4 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x7558dd88 omap_dm_timer_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x755c5839 fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x75602d54 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x7579613e smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x7580bca6 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x758618f9 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x75b81638 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x75ba3dd5 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x75c8c41c device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x761e0aca btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x76276207 fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0x762b0d27 cpufreq_governor_dbs +EXPORT_SYMBOL_GPL vmlinux 0x764928a2 cpdma_chan_create +EXPORT_SYMBOL_GPL vmlinux 0x764a81fe pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x764c9b67 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x764e7307 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x765a0e89 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x76755195 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x7676979a regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x767e4510 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x769df890 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x76bd3278 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x76ca7a6b crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x770cf981 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x7726ee0c __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x772b2fc1 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x7743ca23 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x7750aefe sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x77840b00 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x7789acd1 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x77ad7199 input_class +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77b993ba pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x77de990b con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x77fe4332 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x780a1edf ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x784e9275 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x7857f77c gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x7867b878 devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0x78761bc5 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78ce9431 blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0x78d43a11 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x790e1fb0 ahci_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x79106383 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x79185154 usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x79206150 usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x792f5c0e devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7933f172 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x793b4742 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x7941bab2 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x79511e0d ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x7951d92e pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x7977f231 snd_soc_platform_trigger +EXPORT_SYMBOL_GPL vmlinux 0x797e0bec __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x79982e08 of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x799bac52 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x79c2ea9f powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x79d47795 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79f659ac __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x79f94237 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x7a02ff31 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x7a075973 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x7a14d1fd ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x7a24c300 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x7a2bb0fd crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x7a3831f4 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x7a4276d3 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x7a9119c4 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a9958b7 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x7aa92980 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x7b07c027 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b147267 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x7b1586e3 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x7b1b58cb rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x7b1cebc6 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b2dae3b of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x7b48ff53 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x7b526a6f rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7b6485a2 cpsw_ale_control_set +EXPORT_SYMBOL_GPL vmlinux 0x7b9bf2db scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x7bd923a6 sdhci_pltfm_init +EXPORT_SYMBOL_GPL vmlinux 0x7be2fe03 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x7bf17922 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x7bf58e3d ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x7c11ec9a md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x7c189abe srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x7c18dd3b virtqueue_get_used +EXPORT_SYMBOL_GPL vmlinux 0x7c26e33f i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x7c477fe6 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7c6146c6 __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7c6a49ce unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x7c6ac8ec fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x7c7c640d ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x7c8f7cd9 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7ca38bcd bus_register +EXPORT_SYMBOL_GPL vmlinux 0x7cabe163 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x7cd477c9 kill_mtd_super +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cde296a device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cf499ce of_fixed_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0x7cf78574 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x7cfec3c4 mtd_lock +EXPORT_SYMBOL_GPL vmlinux 0x7d06df08 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x7d2d9261 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x7d328059 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x7d4a72a0 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d69d375 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x7d7177b2 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x7d776e72 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x7d8abf99 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL vmlinux 0x7d9c69ce set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7dab2aa0 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0x7db18500 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x7dbe6de8 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x7dc20933 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x7dcec434 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x7dd2cd45 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7de3b2db irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x7df0cc85 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x7e3ec44c pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x7e4b300c gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7ecb9c6a i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x7ed68941 asic3_read_register +EXPORT_SYMBOL_GPL vmlinux 0x7eef0047 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature +EXPORT_SYMBOL_GPL vmlinux 0x7f5d38cf dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x7f63c7e7 ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7fa484d2 device_add +EXPORT_SYMBOL_GPL vmlinux 0x7fbb5711 probes_decode_arm_table +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fcb95fc scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0x7ffb078e mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x8000b681 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x8010d2c6 percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0x8015b29f napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x801b5316 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x805b204e scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x80733d88 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x807fbcc2 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80a9ed55 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x80b6c1c0 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80cb2e7d powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80de2a15 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x80ebd1b0 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x80ed9310 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x80f8589f trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x810441be blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x81078670 sdhci_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x8121f89b blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x812e3d9a blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0x813648f2 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x8138e2f1 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x813cf714 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x81419bc7 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x814e3943 dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x8151b99b regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x81563838 pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0x815dc806 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x8161e149 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x816f0d04 devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0x81719d26 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x819402d1 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x81a59ee8 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x81ce53b5 ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x81e526ba tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x81f610e1 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x820b4891 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x822ad4c7 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x823e0278 of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x82482b1a dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x8256788f sdhci_set_bus_width +EXPORT_SYMBOL_GPL vmlinux 0x8268779c shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x826f244f cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL vmlinux 0x82b07288 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x82b285fa srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x82c9a50f crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x82d13312 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82dd6e42 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x82f72f2c ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x83068cec perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x8311797f dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x831a1acd da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x8323983d pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x833629d8 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x83363e19 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL vmlinux 0x8359803f nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x836d0e60 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x8381972c ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x83b19129 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x83bc9278 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x83d69b52 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8414847b usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x844712df perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x8465f990 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x8475f8f1 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x848bd0fb call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x84a358ee tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x85064f73 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x85200327 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x8544920f vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x854c607c register_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0x854d459e sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x8560e463 dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0x8574ca40 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x858737ec fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x85967d3d get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x859dd40c usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x85b16181 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x85b98c51 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x85c6168e clk_debugfs_add_file +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85cb0ada ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0x85d1f1aa __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x85d9fb0d power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x861f153d lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x862b9816 cpu_topology +EXPORT_SYMBOL_GPL vmlinux 0x8652110e pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x86597e4e snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x8694e88d sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x86c7ac25 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x86ea8198 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f8909f dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x8708ebad tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8717df8b __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x87221ccb of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x877cebc2 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x87915e7f irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x879371aa ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x87b75e2d devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x87bad614 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x87d1fd9b blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0x87ebcd85 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x8803a833 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x8807f269 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x88136838 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x881b4d84 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x8826051a inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x884c5d72 snd_ac97_reset +EXPORT_SYMBOL_GPL vmlinux 0x887f9ba8 dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x88805174 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x8882cfd3 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b20e88 snd_soc_put_volsw +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88b90c1b devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x88c8da9a inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x88d23274 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x88df3a01 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x88f0bd26 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x89074516 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8912d3e9 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x89386e3c spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x8944b828 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x89510823 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x89754397 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x89762d96 blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0x89900124 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x899a64f4 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x89a1c677 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x89aecffc ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89efdfb6 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x89f4f079 trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x8a014045 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x8a25aeee __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x8a43379d da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x8a54a013 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod +EXPORT_SYMBOL_GPL vmlinux 0x8a570b7c devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x8a58780a blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x8a5f86ce fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x8a652f30 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x8a76c52f ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x8a7b35df dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x8a81de3a snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL vmlinux 0x8a878729 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x8a8b0410 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x8a952326 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x8a9a43f8 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8ab8bd0d __mtd_next_device +EXPORT_SYMBOL_GPL vmlinux 0x8ab9759f devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b19ffaa pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x8b348d29 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8b383891 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x8b533d28 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x8b6717b8 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x8b6db9a1 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x8b775d3a __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL vmlinux 0x8bafb41c serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x8bb3fab5 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x8bc749bc usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x8bc9e4c9 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c1e2084 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x8c3926d7 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x8c4103f4 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x8c421067 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x8c4584eb snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x8c52734f of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c71eb8f snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c957620 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0x8cb0e715 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x8cc3b0d5 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x8cd5f73a ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params +EXPORT_SYMBOL_GPL vmlinux 0x8cea3a45 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x8cfe779d vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x8d19c44c blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d31a848 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8d323deb power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x8d329327 snd_soc_cnew +EXPORT_SYMBOL_GPL vmlinux 0x8d4ca0cb regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8d5ba048 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL vmlinux 0x8d74c039 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x8d80068a xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x8d953345 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x8da17b42 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x8da2bd1b usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x8da4d563 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x8da52c52 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8db57487 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL vmlinux 0x8dbcabc3 skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0x8dc1feed sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x8dc91436 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x8dd80691 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x8df5e27b __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x8e051ed8 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x8e21e6a4 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x8e2b25c2 videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e42e821 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x8e54bf0f pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x8e54ffcc fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0x8e74b358 bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x8e77d547 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x8e7894bd __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x8e93380d cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL vmlinux 0x8e9efbd6 ti_cm_get_macid +EXPORT_SYMBOL_GPL vmlinux 0x8ea6955a usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0x8eb4cdad wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0x8ec049c7 sdhci_pltfm_register +EXPORT_SYMBOL_GPL vmlinux 0x8ec27e12 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x8ec2a04f usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f0ccc09 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x8f0d9488 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x8f18a165 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x8f6b2a73 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f94541d crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x8f9a1bd5 smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x8faaa519 snd_soc_write +EXPORT_SYMBOL_GPL vmlinux 0x8fb2a5a8 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x8fc9cf27 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x8fdafbff of_irq_parse_pci +EXPORT_SYMBOL_GPL vmlinux 0x8fe03100 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x8ffd9f53 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x901602ab pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x90230e99 tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x9023484f ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x9023b312 __get_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x902e7c5e snd_pcm_stream_lock +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x9047c11a trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x904efb78 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x9054e7a8 mtd_erase +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x90884f53 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90b1db59 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x90b9e056 kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0x90faea69 get_device +EXPORT_SYMBOL_GPL vmlinux 0x90fe94d1 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x9102af8b debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x915d65d2 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x916cb812 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x91714846 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x91897bff spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x918b6a5f pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x91ae6efe __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91e6e9ae kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x920c17b4 usb_del_gadget_udc +EXPORT_SYMBOL_GPL vmlinux 0x92220b65 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x92265022 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x92400d72 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x925d2815 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x92652448 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x926530de dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL vmlinux 0x92699d47 _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0x9295c27f usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x929aa808 __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0x92accbf3 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x92cb3461 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x92d09289 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92f6e4b6 __ktime_divns +EXPORT_SYMBOL_GPL vmlinux 0x92fd6a34 dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x930b1055 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x931ebcd1 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x93278656 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x9329b92c pm_genpd_syscore_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x9342f50a omap_dm_timer_stop +EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x93636034 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9387992c fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x9387f0f7 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x9396e461 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0x939db2f5 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x93b11f81 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x93c93b12 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x93d3b951 of_fixed_factor_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0x93d47d59 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x93e97e76 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x93ec0885 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x93f7bb2f swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0x93f862c2 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x94077f3a cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x94421d3e usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x9454a461 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x9463ff71 init_bch +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x94925434 irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x949334db cpdma_ctlr_start +EXPORT_SYMBOL_GPL vmlinux 0x94964783 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0x94ac571a ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x94c96f3b bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0x94fb94ed blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x9526e077 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x95332bfc device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x953b9ad8 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x95409e33 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x955af1eb synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x9586a6ed cpdma_chan_get_stats +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x95b5133e phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x95bbb758 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95c578a0 ioremap_page_range +EXPORT_SYMBOL_GPL vmlinux 0x95ea34d7 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x95f4a058 device_register +EXPORT_SYMBOL_GPL vmlinux 0x95fbcbda queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x96491f3a wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x9653f5a7 cpsw_ale_start +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x96711e14 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x967f5194 crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x9683a162 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x96919667 musb_readl +EXPORT_SYMBOL_GPL vmlinux 0x96c6f7df pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x96efc63f screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x97161491 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x9755b8e6 of_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x975736a2 ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x977e64e6 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x981f5896 cpsw_phy_sel +EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9833059d usb_gadget_map_request +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x98391433 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x9846bf25 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x984af527 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x98539ef3 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x9867b30f flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x986c4794 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x98725423 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x988319cd ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x98991e8a ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x989eb047 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x98b32824 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x98c4a888 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL vmlinux 0x98c9f584 klist_init +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98fcbbdc sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on +EXPORT_SYMBOL_GPL vmlinux 0x990967d7 i2c_slave_register +EXPORT_SYMBOL_GPL vmlinux 0x991afac6 arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x99272a65 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x996ed0b6 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x9973add9 __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x9990bb2f scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x9990f20e crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x999344b3 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x999bfaf3 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99c0db48 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x99d35e5b platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x99f16697 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x9a02f3eb crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a16d209 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x9a2f6447 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x9a39206e bpf_prog_get +EXPORT_SYMBOL_GPL vmlinux 0x9a3e0d69 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x9a70c678 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL vmlinux 0x9a7c10f0 __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9aa6dd3e irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x9abf7508 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ac64bc3 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x9ad314c5 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x9adf24ba crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9aee731f ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x9b0fe8e6 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x9b119680 md_run +EXPORT_SYMBOL_GPL vmlinux 0x9b14500a sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x9b1c88a6 get_mtd_device_nm +EXPORT_SYMBOL_GPL vmlinux 0x9b6075ab fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9b675c41 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x9b8b1765 rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9b9b8287 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9ba1d84f pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x9bb62e4d mtd_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9c3b7a2e srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x9c3e5b59 percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9c40e6ca devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x9c7fe5b4 pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0x9c938642 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x9c957e57 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x9cb1d373 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x9cb83f1d pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x9cc0a15c ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cdc9867 cpdma_ctlr_stop +EXPORT_SYMBOL_GPL vmlinux 0x9ce139a5 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x9cecc5ad find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x9d27375c fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x9d27a127 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x9d29c366 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x9d6503d2 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9d6a70d0 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0x9d746094 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x9d7dd716 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x9d7eed9a virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x9d804bd3 pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0x9d819260 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x9d822e49 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x9d8604d4 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9da0d949 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x9da297df snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported +EXPORT_SYMBOL_GPL vmlinux 0x9dadcacb perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x9dcf661c get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x9e0ea42c deregister_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0x9e19a4e6 of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x9e210071 gov_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x9e27a103 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x9e3530a2 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e5a9259 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x9e5b0ad2 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x9e5e6fb2 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x9e8525a8 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x9e9548a6 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x9e980a06 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x9e9f0204 omap_dm_timer_set_load +EXPORT_SYMBOL_GPL vmlinux 0x9ea556f8 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9eb30520 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9f0a83fb posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x9f0e76fe each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x9f1860f7 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x9f2d173e pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x9f632021 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x9faf36e3 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fd5792c ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x9fdb1681 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9fea7af6 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x9ff1e5c8 of_get_nand_bus_width +EXPORT_SYMBOL_GPL vmlinux 0xa00c4754 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0xa013a9cf init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xa01d1b6d cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa0203800 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL vmlinux 0xa033df40 clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xa05f2f2d ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xa061ddb2 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0xa089fecb sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0xa092cb64 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xa0af19c2 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xa0c9e64d gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xa10263c1 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0xa126d5bf skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xa12fd379 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xa1351e07 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0xa13a63e6 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0xa1494036 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xa14a1817 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xa176efde regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa1850546 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa1a3fb7a of_pci_msi_chip_remove +EXPORT_SYMBOL_GPL vmlinux 0xa1fbf41c virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xa2035eb7 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xa223f7ce sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0xa235a30a usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa23b0ec0 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0xa26d39e1 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL vmlinux 0xa29474b6 napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0xa295ba9d get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xa2a32418 __of_genpd_xlate_simple +EXPORT_SYMBOL_GPL vmlinux 0xa2a44228 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa2af2818 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xa2b9c993 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2c2f654 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xa2caa36a usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xa2e195bc power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0xa30bf4f6 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0xa31743ba crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0xa3259139 i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0xa357b9b6 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xa36ecfdf scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0xa3758849 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0xa378399a tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0xa382b6ad device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xa3836523 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa39cd74b register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a4e18a ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xa3b5e7b7 dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3c2005a skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xa3d1189e pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa3f26a2a sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xa3f3fbf0 component_del +EXPORT_SYMBOL_GPL vmlinux 0xa4110081 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xa412f205 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xa41b7f07 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xa4253262 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xa42d2076 dev_pm_opp_get_suspend_opp +EXPORT_SYMBOL_GPL vmlinux 0xa435b1af put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0xa4421e8c xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0xa446db31 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xa44890ee devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xa45a9bf4 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xa45f337d tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa490571e max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xa4923b56 irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0xa49298aa pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0xa4b139ca inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xa4c4d41b __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0xa4c795f6 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0xa4de4e15 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xa4e18668 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xa4f3f095 crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xa4f759c6 get_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0xa526f5d1 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0xa53b7aaf ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0xa53c6958 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0xa53fe33a pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0xa547da62 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa54facc7 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xa577f67a gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xa5935d6a pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0xa5a2849f powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0xa5ad9c82 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xa5bf138b regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa5d30995 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xa5dc1842 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5f8854a usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa63b1de1 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xa6713caf spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xa6953768 __put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6bebd5f tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0xa6c79ca1 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xa6c834b3 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6e7c976 snd_soc_add_platform +EXPORT_SYMBOL_GPL vmlinux 0xa70aa793 dapm_clock_event +EXPORT_SYMBOL_GPL vmlinux 0xa73e9930 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xa799b9c0 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xa7af6c2a fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0xa7b12a7b __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0xa7b7f77e pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xa7c2448f register_mtd_parser +EXPORT_SYMBOL_GPL vmlinux 0xa7d8ea75 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xa80f58e8 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xa83e1aea set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa857152a xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0xa862187e pwm_set_polarity +EXPORT_SYMBOL_GPL vmlinux 0xa869bc43 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0xa86e11db handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xa87b9337 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xa87f8da7 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xa8843bfe wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa887336c usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8bc717e percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0xa8d75c14 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xa8da5c9a ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xa8e4cb25 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xa8e98132 btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0xa8f73ffd register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xa9244942 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa9484b53 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0xa94e7855 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0xa9716463 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0xa975073c irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xa976bce4 led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0xa992c0c4 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0xa9ae69a1 imx_pcm_fiq_init +EXPORT_SYMBOL_GPL vmlinux 0xa9c67f5e omap_dm_timer_request +EXPORT_SYMBOL_GPL vmlinux 0xa9d17476 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xa9dc8f80 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xa9e05660 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9e59bf7 register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xaa112db7 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xaa142ce5 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0xaa22390b trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0xaa2e1dec reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xaa3ce204 clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0xaa44acff omap_tll_disable +EXPORT_SYMBOL_GPL vmlinux 0xaa49e8ab snd_soc_component_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xaa4a407f ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xaa767d66 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xaa79aa15 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaa82441c usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0xaa91aab2 pin_is_valid +EXPORT_SYMBOL_GPL vmlinux 0xaa93dc94 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaaba3b70 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xaac95fb5 omap_iommu_save_ctx +EXPORT_SYMBOL_GPL vmlinux 0xaacbde52 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xaace04f8 __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xaae6d4cf raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xaaed4d2c fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0xaafdb0d5 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xab15d4da usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xab22bc67 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xab2bd290 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL vmlinux 0xab38f3cc shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del +EXPORT_SYMBOL_GPL vmlinux 0xab657db5 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL vmlinux 0xab945a16 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xab9a6d58 rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xab9ae96a ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xabb973da fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabda1e2e decode_rs16 +EXPORT_SYMBOL_GPL vmlinux 0xabfab303 crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xabfb18dc crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0xac178eca max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xac1f24d8 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xac573ffe ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xac5f3d70 musb_readb +EXPORT_SYMBOL_GPL vmlinux 0xac651ce0 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xac686205 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xac6fb271 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL vmlinux 0xac756a2a bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xac913d33 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xacaacf39 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xaceb9d99 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0xad0b561d cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xad1bee4c of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0xad25723d desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xad36c9df ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xad72c1f1 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xad9faa4b debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xadbdcd18 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xadc641a3 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xae287f22 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xae42ff69 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xae5d5d1f clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae81922b of_overlay_destroy_all +EXPORT_SYMBOL_GPL vmlinux 0xae9f9d59 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xaeb4043d device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xaec524af task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xaed7f220 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xaeec4b36 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xaef0f39c blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0xaf01c31e device_show_int +EXPORT_SYMBOL_GPL vmlinux 0xaf040b5c eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xaf12bfb3 tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xaf7cb6a2 mtd_block_isbad +EXPORT_SYMBOL_GPL vmlinux 0xaf7fbf7d adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xaf9396fa dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xafd3de4e regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xb0004363 flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xb00048b3 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0xb0128a78 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xb01353cd xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xb01ed923 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0xb0268218 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xb0385c6c xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xb03a31d2 ahci_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xb04d1f7b perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xb050f329 init_rs +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0bce4f0 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xb0c0d106 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0xb0c3fb1b devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xb0d48bea crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0xb0eac602 sdhci_send_command +EXPORT_SYMBOL_GPL vmlinux 0xb0f46072 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0xb10d59e1 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xb11625b9 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xb11bf7d8 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0xb121a6d3 swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0xb125ceb2 cpdma_control_set +EXPORT_SYMBOL_GPL vmlinux 0xb135f540 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb14be9ca inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xb153fbd2 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb18cd599 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0xb19b1322 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xb19c002d metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1b2c60d gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xb1b2da0d usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1e467d6 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xb1e70a5c irq_find_matching_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xb1eb462d tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0xb1ed19c5 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xb1fe34b8 nand_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xb2080257 shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb23006d0 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb26c0bdd crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xb27ea468 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb295a2af usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xb29ed786 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL vmlinux 0xb2ac0eb1 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xb2c136c0 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb2dba411 uniphier_pinctrl_remove +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb30bb69a __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0xb310b4c1 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xb310e837 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xb31386c3 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0xb328a9db blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0xb36076b8 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xb386cb41 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0xb386cbf6 sdhci_add_host +EXPORT_SYMBOL_GPL vmlinux 0xb3bdc624 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xb3bf46b8 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xb3d2c6e3 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL vmlinux 0xb3dac94f ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0xb3e84a68 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xb401e132 amba_ahb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0xb402dd21 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0xb40c6376 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xb41a3f00 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xb433958d ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0xb43ce764 wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0xb47095c9 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xb490c243 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xb490ced3 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xb49af70d tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xb4a3273c sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4c63783 sdhci_pltfm_free +EXPORT_SYMBOL_GPL vmlinux 0xb4cf0322 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb4d57edc perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb5953f77 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xb595a793 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL vmlinux 0xb59b505c uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5c7a88c l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0xb5cba789 inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0xb5d02398 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xb5e31551 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb5e896fb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb5ff475a extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xb608e93c mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xb6178e58 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb654f05a of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0xb6930e02 iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0xb696e1f9 deregister_mtd_parser +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6d2481a reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6f345b5 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL vmlinux 0xb6fa3696 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xb7055e97 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0xb70a0454 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb73e94b7 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0xb74bfae0 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xb7566065 pci_fixup_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb757b9ba pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xb76317b2 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xb76d26ed omap_dm_timer_set_load_start +EXPORT_SYMBOL_GPL vmlinux 0xb771e6b7 bL_switch_request_cb +EXPORT_SYMBOL_GPL vmlinux 0xb776d561 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xb77cb0a8 cpdma_chan_submit +EXPORT_SYMBOL_GPL vmlinux 0xb793f2bf nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xb7b9ae1c mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb7c342db tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xb7c4142d xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0xb7c582c1 snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL vmlinux 0xb7c8346e of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0xb7d3d2f8 virtqueue_get_avail +EXPORT_SYMBOL_GPL vmlinux 0xb7dec471 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0xb7e07fd6 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb80b06f4 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb813d380 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xb819e48b platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xb82566eb omap_tll_enable +EXPORT_SYMBOL_GPL vmlinux 0xb82e3433 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xb8346aeb percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb84afa05 device_attach +EXPORT_SYMBOL_GPL vmlinux 0xb8628379 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xb8773267 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xb882411f of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0xb886d872 mtd_point +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb8ba00be mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xb8ba7904 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xb8beb45a snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL vmlinux 0xb8c45e4c blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xb8c8cca4 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8d0b19d wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0xb8e7daa2 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0xb91c2cb7 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xb92427b4 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xb928bd43 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0xb928fad4 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0xb93b5ac5 ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0xb94dd60e max_gen_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0xb952991e regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb96a8471 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xb974af1f ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xb992a03d of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0xb9b205c0 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9c80111 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9d1b0fc extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb9e61fd0 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL vmlinux 0xb9e87b94 bL_switcher_trace_trigger +EXPORT_SYMBOL_GPL vmlinux 0xba0308ba blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xba1f3eb9 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba2e9ac4 cpdma_ctlr_create +EXPORT_SYMBOL_GPL vmlinux 0xba52c3b6 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xba5afffd do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xba5bd06a phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0xba6723d3 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0xba8929ea percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xba8ecef6 dapm_regulator_event +EXPORT_SYMBOL_GPL vmlinux 0xbaabf313 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbabed3a6 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0xbacb8f01 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0xbae1a3d7 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xbaedca2c snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb03bf74 filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb0cf5b0 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbb11cfba klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xbb1dc9ba usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xbb203afa usb_udc_attach_driver +EXPORT_SYMBOL_GPL vmlinux 0xbb4c7570 pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xbb6bf6ce regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xbb76735b snd_soc_jack_get_type +EXPORT_SYMBOL_GPL vmlinux 0xbb9e2ab5 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xbbaa4e44 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0xbbc85dbe device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xbbd711f0 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0xbbfd82c5 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xbbfe4a14 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbbff6ea7 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbc0f4662 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0xbc21655d sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0xbc370c23 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbc62657b dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc8b84fe bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcb45e39 crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xbcb989f5 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xbcbaa80a __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0xbcc381c0 snd_ctl_activate_id +EXPORT_SYMBOL_GPL vmlinux 0xbcc5380d fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbcce4cfb raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbceb2941 md_stop +EXPORT_SYMBOL_GPL vmlinux 0xbcf89ab6 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0xbd10369e regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xbd16dd97 mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xbd18fb04 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd4c7d8b pci_ioremap_io +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8c1 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0xbd6d0f8f bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xbd78c34f snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0xbd91ce3d sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xbd969349 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xbdc66504 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbddb13dd tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0xbdf2e24d netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xbdf512de free_bch +EXPORT_SYMBOL_GPL vmlinux 0xbe0cd664 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe24b3d2 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbe3c6dbc tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe6a342b input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbec85820 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xbed746ac ahci_start_fis_rx +EXPORT_SYMBOL_GPL vmlinux 0xbed929eb dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf2956c0 find_module +EXPORT_SYMBOL_GPL vmlinux 0xbf476fa4 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xbf49ac6c pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xbf75fbfd ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xbf818595 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xbfaded22 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfbcddf8 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbfd5279b __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0xbfd8faaf edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbffe0535 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 +EXPORT_SYMBOL_GPL vmlinux 0xc0262eac relay_open +EXPORT_SYMBOL_GPL vmlinux 0xc03827df dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xc03a654b memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0xc03d4163 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xc065258a irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0xc065478a wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0xc066d298 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0xc074adad ping_hash +EXPORT_SYMBOL_GPL vmlinux 0xc081c246 bL_switcher_put_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0b70b0b gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0xc0e75cec visitor128 +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0f7cd76 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xc13c64d8 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xc1485283 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xc1539f7d wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xc1678b04 regulator_can_change_voltage +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc18578ed process_srcu +EXPORT_SYMBOL_GPL vmlinux 0xc18725ff devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xc187e6f6 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xc1984688 of_get_dma_window +EXPORT_SYMBOL_GPL vmlinux 0xc1a18615 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xc1a5414e wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xc1b42da6 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0xc1b8cfa6 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xc1bced6a cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xc1c61b59 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0xc1d00501 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xc20c8a67 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0xc2156c25 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0xc21b3cca devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc2294873 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc24a65e1 snd_soc_info_volsw +EXPORT_SYMBOL_GPL vmlinux 0xc24e6a7a ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0xc24ea97f usb_udc_vbus_handler +EXPORT_SYMBOL_GPL vmlinux 0xc264f72b ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xc272e659 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc2941966 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0xc29f0c0e kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xc2c1490d snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL vmlinux 0xc2d69341 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0xc2e728dc ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xc2f07df8 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc2fcafc7 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc30b3a36 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0xc32b6974 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xc32e7067 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xc32e7129 of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0xc32f81f6 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xc331de2f of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc3572755 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0xc357e9cb fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0xc3647854 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xc3655b26 rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc3729a1b snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL vmlinux 0xc37baecf blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0xc3833e54 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xc385cb58 perf_num_counters +EXPORT_SYMBOL_GPL vmlinux 0xc3885989 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xc388fe79 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0xc38f70f3 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xc39f4976 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc3a8abc4 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xc3ae66e3 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0xc3b93bba klist_next +EXPORT_SYMBOL_GPL vmlinux 0xc3b9d14a virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0xc3bbefff snd_soc_unregister_codec +EXPORT_SYMBOL_GPL vmlinux 0xc3c10209 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xc3c5d1e9 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xc3c7744f fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xc3d41806 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xc3f9ea78 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xc3fece9c of_genpd_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0xc404db02 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xc40efacd regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc41e0178 btree_last +EXPORT_SYMBOL_GPL vmlinux 0xc41ffd62 put_device +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc428ac08 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xc42ef93e sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xc4403a61 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xc4437ab3 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc4622df3 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc48aa3cb user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc4922605 rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc4b5cef4 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0xc4c72e4a arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc4d6eff9 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xc4e65bc9 mtd_write +EXPORT_SYMBOL_GPL vmlinux 0xc515f583 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xc52bf3fe crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xc52da40d of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc54d8fa7 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xc5550fee arm_iommu_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0xc559ce4d skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0xc563635d usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc58ad582 omap_dm_timer_request_by_cap +EXPORT_SYMBOL_GPL vmlinux 0xc5c14716 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xc5d5513e cpdma_chan_process +EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xc5e0dd66 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0xc5ed74d0 tpm2_startup +EXPORT_SYMBOL_GPL vmlinux 0xc5ee4148 of_get_nand_ecc_step_size +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc6437476 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xc649229a clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc6697d9d shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc685c037 cpdma_check_free_tx_desc +EXPORT_SYMBOL_GPL vmlinux 0xc6922131 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6c550cd shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xc6d701df i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0xc6e0b644 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xc6ef98fe unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xc6fcf89c pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xc7287aec bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc7303ddb regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xc74630c1 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0xc74a2d0b blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0xc75520dc of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xc75beb9e _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7abdcda exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0xc7b8893b bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer +EXPORT_SYMBOL_GPL vmlinux 0xc7c92655 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0xc7cb7ef5 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0xc7d1ec5a snd_soc_limit_volume +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7f4fe40 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xc813e245 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL vmlinux 0xc83a2d47 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0xc872ea3c tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xc875d487 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc87e2d7a sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xc88faa6c virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0xc8964a24 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xc897bfb6 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8d5be83 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc8e048a7 omap_dm_timer_enable +EXPORT_SYMBOL_GPL vmlinux 0xc8e92275 ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc948d924 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc963b82d register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xc968081e __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0xc968e7df regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xc96ec70f irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0xc971be40 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level +EXPORT_SYMBOL_GPL vmlinux 0xc994d512 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xc9a06e19 ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0xc9a2ab6e blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc9d8c016 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0xc9d91268 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc9dd6312 tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xc9e08fe0 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9f0687b mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0xca06322f spi_async +EXPORT_SYMBOL_GPL vmlinux 0xca1b5e11 unregister_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0xca1bb9c5 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0xca28e1d2 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0xca56f5d8 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xca5a1601 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca80ca29 snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL vmlinux 0xca899ca0 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xcaa477f5 snd_soc_bytes_put +EXPORT_SYMBOL_GPL vmlinux 0xcaa4a99c simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcad357c4 bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xcad4fe6e snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0xcaf613bf irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xcaf9f9dd clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xcb048658 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb2d505a device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xcb32cb36 musb_writeb +EXPORT_SYMBOL_GPL vmlinux 0xcb42e1a3 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xcb43943c relay_flush +EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xcb4b3fd6 pwm_disable +EXPORT_SYMBOL_GPL vmlinux 0xcb5bb04c device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xcb5fdb0b rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcb70ff46 rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xcb7c94e0 of_reserved_mem_device_init +EXPORT_SYMBOL_GPL vmlinux 0xcb814533 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xcb85cc28 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0xcbb647f8 omap_dm_timer_read_status +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcc0cbf42 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0xcc2a738b omap_mcbsp_st_add_controls +EXPORT_SYMBOL_GPL vmlinux 0xcc2a96c6 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0xcc325772 snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL vmlinux 0xcc416e9d device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0xcc53eb3f wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xcc561b2d __of_genpd_add_provider +EXPORT_SYMBOL_GPL vmlinux 0xcc71fb69 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xcc7b96af regmap_fields_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xcc7f13b5 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcc8cdc86 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcca1d2e6 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0xccb5155d bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xccbe5de8 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0xccbf4b69 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccde28a9 user_read +EXPORT_SYMBOL_GPL vmlinux 0xcce92396 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xcd0cb1fa dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0xcd0d8a9d pwm_enable +EXPORT_SYMBOL_GPL vmlinux 0xcd296e17 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0xcd31e04d regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xcd5c7b16 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0xcd794991 phy_init +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd9b68e5 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdca9edb inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xcdddd6d0 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0xcdfb3496 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcdfe08ce console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xce229fa8 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xce3223b1 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL vmlinux 0xce3f0c6b ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce6f7c16 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xce6fdfba key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0xce772dda usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL vmlinux 0xce8adc8d ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xceb25035 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0xcecacb35 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0xced28f3a cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee6f42c ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xcef7b00d rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xcf2e751a ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xcf34ae34 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0xcf4b4a47 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf5a3e75 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xcf8f8d56 cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xcfaf44fe dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfb93e43 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xcfc126f6 tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xcfc12bac ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfcf4154 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xd004c417 skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xd017c545 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd01992db gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd0407173 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0xd04a6e02 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xd050c21f regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0xd05cf2ac regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd07bb93e sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0c26e7a list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0xd0e23a73 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0xd0e9e803 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd0f1b5cd __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xd103f320 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL vmlinux 0xd10b2ce0 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xd124c7e9 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0xd133efbb pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xd139c4da add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0xd146dd49 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xd15583b5 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0xd16546d1 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL vmlinux 0xd16694c2 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd1723135 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xd1822f0b cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd183c96e snd_soc_dapm_free +EXPORT_SYMBOL_GPL vmlinux 0xd18ee2fb device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xd19d2124 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xd1a02181 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0xd1bf9753 bpf_prog_realloc +EXPORT_SYMBOL_GPL vmlinux 0xd1cb5d38 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xd1de6a20 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0xd1e2c607 phy_put +EXPORT_SYMBOL_GPL vmlinux 0xd1f0a011 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd20389ef omap_dm_timer_disable +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd231e63d omap_pcm_platform_register +EXPORT_SYMBOL_GPL vmlinux 0xd2411ead extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd28db21f pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xd2aaeb4e kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xd2d07ad1 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xd2de7533 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xd2decdc1 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0xd3272284 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0xd32df826 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed +EXPORT_SYMBOL_GPL vmlinux 0xd340ddba devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xd3566893 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd376f44d usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xd37c6682 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0xd3926165 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0xd3a15910 ahci_platform_resume_host +EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xd3c0be7e of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0xd3ce38c6 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0xd3ff1a20 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xd401336e cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xd402f96c __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd440a1f2 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xd448816b mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd44c2f38 cci_disable_port_by_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd44c3437 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xd44d3e1a tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xd46032a5 devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xd46e0261 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4d48b56 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xd4ddfb89 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0xd4ed1943 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL vmlinux 0xd50d3965 __cci_control_port_by_device +EXPORT_SYMBOL_GPL vmlinux 0xd5133d5e device_remove_property_set +EXPORT_SYMBOL_GPL vmlinux 0xd5134aa0 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd51c7f9a tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd538515b __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xd53da4e3 omap_dm_timers_active +EXPORT_SYMBOL_GPL vmlinux 0xd54dd6dd led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd55b3598 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xd57c4012 ahci_platform_ops +EXPORT_SYMBOL_GPL vmlinux 0xd58048a1 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xd591b004 of_device_get_modalias +EXPORT_SYMBOL_GPL vmlinux 0xd5937b72 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5d76982 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd5e57170 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xd5ec2eca devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xd604f626 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd61340a7 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xd6155386 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xd628877b tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xd6349f83 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0xd635534d user_preparse +EXPORT_SYMBOL_GPL vmlinux 0xd637eefc crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xd63bb40c devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xd65ad250 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0xd6684827 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd6c43478 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xd6c72e44 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xd6c94425 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0xd6facf3d dev_pm_opp_get_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd6faf631 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd72473f4 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0xd74c1c26 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd788dd29 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL vmlinux 0xd7892f81 amba_apb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0xd78a237d device_add_property_set +EXPORT_SYMBOL_GPL vmlinux 0xd796f072 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0xd79ec23e pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xd7a4d429 snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7d9349e driver_find +EXPORT_SYMBOL_GPL vmlinux 0xd7e3117d security_kernel_fw_from_file +EXPORT_SYMBOL_GPL vmlinux 0xd7e6adc6 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xd7eb6738 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xd81303fe snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd83e4293 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0xd859c69f mtd_panic_write +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd8a28462 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0xd8ac5a36 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xd8c3176c devres_find +EXPORT_SYMBOL_GPL vmlinux 0xd8ed8ac1 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xd91e023d sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xd933ce6e snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd94553f5 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xd94aa457 display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0xd94dc97c sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0xd967628e simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xd968ca0b ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd97f38e8 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xd98d2c2f of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xd98ea9be inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0xd98f3ce6 devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd9d50b12 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xd9e6362c pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9ee5b37 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0xda01e309 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda090ee1 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xda13dab5 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0xda1dc991 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xda23623e __put_net +EXPORT_SYMBOL_GPL vmlinux 0xda49e43a regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xda630761 of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0xda74489c policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0xda876191 devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xdaa22cc9 blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0xdab82014 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xdad6a168 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0xdad85bf6 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0xdadfa095 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xdae715e0 videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xdae83b29 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaf761ea snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL vmlinux 0xdb088cb1 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xdb2e2de1 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb511857 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xdb729038 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xdb72d260 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0xdb744d5d ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0xdb7d984f iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb98254f amba_apb_device_add +EXPORT_SYMBOL_GPL vmlinux 0xdbce2421 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xdbdcb406 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc096147 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xdc2a4bf3 mv_mbus_dram_info +EXPORT_SYMBOL_GPL vmlinux 0xdc2a6c21 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL vmlinux 0xdc461430 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xdc58dc9c default_iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0xdc66e596 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xdc7b251a regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc855fbd cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdcb68a14 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xdcc19045 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xdccdb96e of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xdcd1d068 devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0xdcf76e0e md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd3dd6e3 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0xdd512356 phy_create +EXPORT_SYMBOL_GPL vmlinux 0xdd62818e bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xdd6953bd crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xdd743030 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0xdd957809 pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0xdda258bf devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xddb60dc6 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xddd6a7be devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xde07c816 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xde0a73b6 rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0xde0c42cc tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0xde13a21a tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xde169871 ahci_platform_suspend +EXPORT_SYMBOL_GPL vmlinux 0xde42b39c gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xde549c08 sm501_unit_power +EXPORT_SYMBOL_GPL vmlinux 0xde5acabf ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0xde651f98 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xde7469a8 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xde7f57cf list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xde810a0b set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xde8e8a2b regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xdead0467 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xdebbabe0 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xdedb8bbb pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf1e1840 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0xdf255dcf memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf26ef83 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0xdf27859d of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xdf4408e4 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0xdf5c2ba5 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0xdf5c8468 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0xdf680a23 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xdf6c81e1 snd_soc_resume +EXPORT_SYMBOL_GPL vmlinux 0xdf6cf36e platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xdf70aa1a crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xdf85c543 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdf9d3ae8 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0xdfc2c12a stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0xdfc390a8 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xdfe98c10 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe00c604a pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xe02200aa pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe03dd802 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0xe0467acd init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0xe0559ba5 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0xe0572f5a attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xe05b6981 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL vmlinux 0xe06e4157 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe07ca631 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xe07cb617 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xe08629ca pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0xe08b680a usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0xe09374a2 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0c17bc0 list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0xe0d02055 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xe0ff818b snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL vmlinux 0xe1079cad crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0xe10910f6 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xe10be6b1 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0xe1194773 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0xe11e7e45 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0xe1415523 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe180d0e8 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe1873036 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0xe191c839 thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe1a1cc4f virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xe1ac8da3 usb_gadget_giveback_request +EXPORT_SYMBOL_GPL vmlinux 0xe1bc3499 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0xe1d14ed4 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xe1de3808 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xe1ef4305 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xe213d43a list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xe21dd022 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0xe237f314 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe243d8b1 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xe2484b98 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0xe25fdf83 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe265314e inode_congested +EXPORT_SYMBOL_GPL vmlinux 0xe2668031 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xe26a4cf3 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xe28310b7 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xe288250a rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe2c60152 rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xe2d1a48a snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL vmlinux 0xe2dbacbf ahci_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xe2f2dbc5 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xe2fcb581 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe30bbb73 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0xe3294ff5 device_move +EXPORT_SYMBOL_GPL vmlinux 0xe340a819 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0xe3596204 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe380675f sock_update_netprioidx +EXPORT_SYMBOL_GPL vmlinux 0xe3877f89 blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xe3c88ec8 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0xe3ca227d devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xe3cd631f usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xe3e272ef skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xe3ee9469 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0xe3f953b1 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0xe40628fb rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0xe410fd27 rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0xe412990d netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xe42caad5 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xe42dcb85 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0xe42e1f70 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe43ed97e regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xe4418720 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL vmlinux 0xe46615ab crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xe467f594 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4c1aba9 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xe4c22565 cpdma_chan_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe4c4f75e snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0xe4e46d40 devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0xe4ed4673 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe50b6247 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xe50d3447 arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xe52fc25f regmap_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0xe55625cb clk_gpio_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xe56f77a7 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe5929d9c snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL vmlinux 0xe5c2e2a4 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0xe5ffd587 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xe6383283 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xe645075d __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0xe64cd8ef sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe66b5945 clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xe698c8f6 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xe6c4a80e usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6d4d0f7 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xe6f2c880 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0xe712c5ab pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe7282648 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe73878f7 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0xe73cab21 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xe740a22a sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xe7437ad1 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xe74a69de platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe75f1a29 pinctrl_utils_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0xe7622fe2 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe79337a6 of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0xe797f0e7 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xe79f9cd5 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xe7ab2c3a omap_dm_timer_trigger +EXPORT_SYMBOL_GPL vmlinux 0xe7b88396 mount_mtd +EXPORT_SYMBOL_GPL vmlinux 0xe7d61fb2 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0xe7ea40e2 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xe7ebd12e debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0xe7ec1299 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0xe7f504d2 rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe80bee40 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe81f09c6 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xe8267305 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe850bdcc __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe8801cce gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xe899f633 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xe8b31787 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0xe8b91788 sm501_misc_control +EXPORT_SYMBOL_GPL vmlinux 0xe8bb7f4d snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL vmlinux 0xe8fe7f15 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xe903a3b6 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0xe90fc5a2 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xe91265cf usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xe91b9ef7 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe949b13a power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xe94fde82 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe9640d94 __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe98420f3 tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xe9923d00 user_describe +EXPORT_SYMBOL_GPL vmlinux 0xe997a768 btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0xe9aa7d6e bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0xe9aecbd5 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xe9b17a2c regmap_field_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xe9be9511 blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9dd66b4 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0xe9f16eb9 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xe9fcad4c snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL vmlinux 0xea0ec6df device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea1bb291 bL_switcher_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0xea1e8be6 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL vmlinux 0xea24e9bc snd_soc_read +EXPORT_SYMBOL_GPL vmlinux 0xea25f4a3 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xea314bb6 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea440f00 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0xea4d6912 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL vmlinux 0xea55a8ae device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xeaa0e926 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeaacba9c pwm_free +EXPORT_SYMBOL_GPL vmlinux 0xeab91c3f __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xeae6d200 of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0xeaf7f139 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xeb103a91 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0xeb2c65c7 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xeb4422a1 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0xeb5fae4d vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0xeb699989 snd_soc_get_strobe +EXPORT_SYMBOL_GPL vmlinux 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL vmlinux 0xeb793ee6 of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xeb7e0acf usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0xeb8f2ce9 snd_soc_put_strobe +EXPORT_SYMBOL_GPL vmlinux 0xeb9a819a kick_process +EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xebb3592b snmp_get_cpu_field64 +EXPORT_SYMBOL_GPL vmlinux 0xebb43b51 cpsw_ale_destroy +EXPORT_SYMBOL_GPL vmlinux 0xebb7e578 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0xebbe1622 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xec0debfe wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec29ae07 ref_module +EXPORT_SYMBOL_GPL vmlinux 0xec3951bc tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xec53ca9a omap_dm_timer_set_int_enable +EXPORT_SYMBOL_GPL vmlinux 0xec5a9fbf blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0xec5fdf9e snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL vmlinux 0xec67cc59 reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0xec7af62b dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xec883634 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0xec944198 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xeca44a19 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0xecc5ad2f alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0xecd73a21 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xecd96245 bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0xececdf2c relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xecf82718 cpsw_ale_control_get +EXPORT_SYMBOL_GPL vmlinux 0xecf8d1a4 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0xecfd8761 usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xed12f9a5 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xed165c72 clk_register +EXPORT_SYMBOL_GPL vmlinux 0xed1c99ab spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0xed241950 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xed6b8633 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xed70521d sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xed720022 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xed7f47f9 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0xed840bfa blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xeda291fb amba_device_add +EXPORT_SYMBOL_GPL vmlinux 0xedc09c26 omap_dm_timer_set_match +EXPORT_SYMBOL_GPL vmlinux 0xedc75d33 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xee0271e7 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xee04ccb2 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0xee18a349 phy_get +EXPORT_SYMBOL_GPL vmlinux 0xee69e328 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee7238e0 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xee8d7539 cpdma_chan_start +EXPORT_SYMBOL_GPL vmlinux 0xee938c3b snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL vmlinux 0xeeb1d829 blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xeed6c213 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xeef2d2dc ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xef07c449 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xef1ee410 mmput +EXPORT_SYMBOL_GPL vmlinux 0xef409b74 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef55bdf1 pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xef66075c usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef6cd5e0 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xef84e245 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xef8fdaaa iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xef9142b2 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xef9f4b34 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefa85c25 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL vmlinux 0xefb892e2 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0xefbf9e7c unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xefef1e1d cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL vmlinux 0xeffd46e2 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf049ca2d wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0xf0696d9a dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xf070759d da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf07ed7df platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xf07f3a8e ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0xf0843146 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xf091a7c3 snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL vmlinux 0xf0926e47 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xf09ccf2f ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0xf0a5c09f vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0xf0bb7b58 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xf0cb8191 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xf0d4c72d mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf11db8a2 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xf127795d soc_ac97_ops +EXPORT_SYMBOL_GPL vmlinux 0xf12caf22 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xf13d09b9 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0xf14310b6 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xf145eadc of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0xf1595369 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf193aa17 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1b3198b spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xf1e94b23 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xf1ea73f6 spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0xf1f16c9e unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0xf1fa1c98 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf2137b52 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf223db8e device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xf22a3450 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xf22b0753 sdhci_reset +EXPORT_SYMBOL_GPL vmlinux 0xf22ceffa iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0xf26b8f76 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf2884eb8 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0xf28dd784 device_create +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2ad0973 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0xf2bf352a _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0xf2c78c70 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0xf2d395fb ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xf2d954c6 pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0xf2e6e726 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xf2fb49e1 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xf30fda27 lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf3314492 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL vmlinux 0xf355dbef ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0xf3642dc8 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL vmlinux 0xf3657e46 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf3803bdc usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b4d0ff perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xf3b8c5b0 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xf3bdf6f6 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0xf3c17d55 devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0xf3c3d282 of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf3feb86c tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf40860a5 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0xf41c3d99 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xf41e1858 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xf458c2d1 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0xf4607614 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0xf467ec23 usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xf473748b __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0xf48ceebd net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf496c010 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4a9252e snd_soc_bytes_get +EXPORT_SYMBOL_GPL vmlinux 0xf4c43e32 tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xf4d8f868 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf4f92821 ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf50d4a50 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xf50dc832 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xf541b68c ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf54cadaf setup_irq +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf56636fb gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5fab209 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xf5fe94d4 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf6108447 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0xf61baa65 pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf61d5c48 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xf634d689 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0xf638ce3b pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xf671877d gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xf6880ac6 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xf69bee13 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xf69e8192 snd_soc_register_card +EXPORT_SYMBOL_GPL vmlinux 0xf6a8d08e pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0xf6b60222 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xf6c636ce ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6d77f66 spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf6e41890 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6ef36f7 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xf6f04545 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0xf6f5077b nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xf73414c9 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xf75dc4ca find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0xf766025e snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL vmlinux 0xf76b0a59 read_current_timer +EXPORT_SYMBOL_GPL vmlinux 0xf7847db8 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xf787d4ac amba_device_put +EXPORT_SYMBOL_GPL vmlinux 0xf792c2f0 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0xf7b8aae0 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xf7c9a73a device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0xf7e6e6a5 __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0xf7e8aa6e class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf846506f irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf85e5502 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xf8666519 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0xf873b247 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf8917078 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0xf8a5f468 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xf8eabb06 of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8f6e34c wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf917f64d omap_dm_timer_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf961763b platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9b3e6bc of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9f57625 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xf9f7492a cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0xf9fbda83 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xf9fd6839 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa26f622 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xfa373bc9 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xfa3a903b gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xfa3ea101 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0xfa413a01 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xfad98409 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xfaee27c0 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xfafb22a9 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xfb0228a6 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xfb0bff54 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0xfb30a5a5 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb48c052 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xfb682e4c tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb76b910 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xfb7a3d10 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xfb80ee77 regmap_field_write +EXPORT_SYMBOL_GPL vmlinux 0xfb86dafb inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xfb94f014 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xfb9a313b key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbc6c6ee ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0xfbdcd6d4 amba_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfbe5bb0a regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc057074 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0xfc248c89 __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0xfc251c74 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xfc2f0f70 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xfc3fc977 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xfc4407d5 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0xfc523f29 of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0xfc5d23f4 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xfc64cae0 scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0xfc95943a enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xfca2465f ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xfcb2723d shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0xfcb6191d debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xfcb711fc __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xfcf100e1 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfcfa8771 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0xfd088a27 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xfd0f9a21 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL vmlinux 0xfd14ada8 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xfd1950c7 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xfd21baf5 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL vmlinux 0xfd2507b4 raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0xfd41c7ce btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xfd586bae sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xfd5bf95c blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0xfd647228 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xfd64cc32 snd_soc_jack_report +EXPORT_SYMBOL_GPL vmlinux 0xfd78eebf evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0xfd7cf9c6 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0xfd8c6e71 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xfda1aebc crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xfda670bd dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0xfdb7f111 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xfdc18059 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xfdcae422 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xfde1a33e klist_prev +EXPORT_SYMBOL_GPL vmlinux 0xfe009c06 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0xfe18dfde usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xfe2a1c2f usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0xfe2ddf9e fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xfe67a7f2 sdhci_get_of_property +EXPORT_SYMBOL_GPL vmlinux 0xfe715b66 ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0xfe814eba pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfe82e722 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xfe8efb6b pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0xfe929b2d relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfe9f0b34 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xfeaf78a8 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xfed0402e tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfee5b3a5 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff1863bf serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0xff21355e ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff3ae651 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xff56ca09 mtd_unpoint +EXPORT_SYMBOL_GPL vmlinux 0xff58938c mtd_unlock +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xff6c1e0e of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0xff711567 trace_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xffa7f3c9 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0xfff50afe inet6_destroy_sock only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-106.129/armhf/generic-lpae +++ linux-raspi2-4.4.0/debian.master/abi/4.4.0-106.129/armhf/generic-lpae @@ -0,0 +1,17637 @@ +EXPORT_SYMBOL arch/arm/crypto/aes-arm 0x276b2f72 private_AES_set_encrypt_key +EXPORT_SYMBOL arch/arm/crypto/aes-arm 0x6c62e582 AES_decrypt +EXPORT_SYMBOL arch/arm/crypto/aes-arm 0xc30fcbed AES_encrypt +EXPORT_SYMBOL arch/arm/crypto/aes-arm 0xcf024ae9 private_AES_set_decrypt_key +EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0x1a807da1 crypto_sha256_arm_finup +EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0x93d99eb7 crypto_sha256_arm_update +EXPORT_SYMBOL arch/arm/lib/xor-neon 0x0f051164 xor_block_neon_inner +EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe +EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble +EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL crypto/mcryptd 0x28865246 mcryptd_arm_flusher +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/atm/suni 0xb05a3222 suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x010ba288 bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0x2caa8811 bcma_core_dma_translation +EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str +EXPORT_SYMBOL drivers/block/paride/paride 0x210cf7e5 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x26d1a0e1 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x372c7a72 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x568fb4a8 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x97b36e59 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x9d8b9926 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xa04847c2 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xb8de1e5c pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xc49d9b5e pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xe23b0940 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0xf681ffdd pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xf9e56965 pi_release +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x957749b5 btbcm_patchram +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1cf185ea ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fae3bac ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x24adc9b1 ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x2ace6bfd ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5738453c ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa3bddb88 ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/nvram 0x0f28cb91 nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x17ff2c1d __nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x2adec1e0 __nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x7da28f12 nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x9ce3f83f nvram_write_byte +EXPORT_SYMBOL drivers/char/nvram 0xa8813189 __nvram_write_byte +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x31d5617f st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x71664ca8 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xdde5900a st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xf09cd45c st33zp24_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x3c28b9e4 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x6ed57d38 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xcd23bca7 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x42bb89f9 dw_dma_get_src_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x555adcb1 dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x71ba0daa dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xdea5c5fc dw_dma_cyclic_free +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xe2cfffff dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xea7e56c7 dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/dma/pl330 0x9402e670 pl330_filter +EXPORT_SYMBOL drivers/edac/edac_core 0x4dd95c59 edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04dd92ce fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0fbee909 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x11a6254a fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x23dc3b5e fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2df468b9 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x33f17e33 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x34372ac6 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x38f67fa5 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4411737c fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d5d4eca fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4ef4e06d fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x54c80d47 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x55a9af33 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x576300d1 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5cdf7ba8 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6942c934 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x770e9f08 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7aaa7a5a fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7cee8048 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e431b14 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x892d2aff fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8bcce267 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8e3e8b6c fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x982ff170 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa712eb88 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc724d824 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd644578d fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xdf2b81f6 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe7cbaaf8 fw_send_request +EXPORT_SYMBOL drivers/fmc/fmc 0x1c5dd5d2 fmc_device_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x217af28f fmc_reprogram +EXPORT_SYMBOL drivers/fmc/fmc 0x49282c21 fmc_find_sdb_device +EXPORT_SYMBOL drivers/fmc/fmc 0x4f4e2e6d fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x73769209 fmc_show_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x76687a6d fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x9d231fdc fmc_device_unregister_n +EXPORT_SYMBOL drivers/fmc/fmc 0xb68d3298 fmc_driver_register +EXPORT_SYMBOL drivers/fmc/fmc 0xd2b212cd fmc_device_register_n +EXPORT_SYMBOL drivers/fmc/fmc 0xfbd2b46b fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xfed999ca fmc_device_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00d753f1 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01600f8a drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02365dcc drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02be3bca drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0392e1fd drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0669e641 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x070240fb drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0754c56d drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0826d43f drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0846f18b drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x095419e6 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09d23bc4 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a92fc4e drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ac603e8 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c006f51 drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e4df14e drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fc831ad drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fccafb1 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10f0903d drm_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11b0d42e drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11bee170 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12d4f884 drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13a3911f drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1457c601 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17011422 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17cdfe78 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ab8eab1 drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c9a36c1 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cdeb544 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d49a707 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x200a6c33 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x209144d4 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22779c4f drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22c1d7a0 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22cb3e42 drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24de41b4 drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x263b422c drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x270884a4 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27287626 drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2744688b drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x275eced6 drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2873bb7d drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28be489d drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29bf967c drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b2859ce drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c99f0e7 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2caf4826 drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ce0d918 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d575b90 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3260bb1c drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32ba2bca drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33457b92 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x346127a7 drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35ddf4ce drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x360c1ab6 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36b78a8a drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x376e27cc drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37e8cce6 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x384530e9 drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38b95e90 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3aebb20f drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b182d1a drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b7a8f6b drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bbd5b1a drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x404501fd drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x412e6fd8 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x420deda7 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4362e6bf drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43b0b34d drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4562f9fa drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46098801 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x469375ef drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48ca539b drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4909b612 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b30b00e drm_connector_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b92edf3 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c19fd8c drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dd552ff drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e2a2db8 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50c10dcb drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5122949e drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51a65f91 drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53621673 drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53c475ca drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54125206 drm_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54541cfc drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54dae810 drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54e07e37 drm_encoder_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54ff21bc drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56ad8c98 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57453894 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x579593db drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58bb15e7 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b62920e drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d97ffff drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e7c8b7b drm_framebuffer_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f55ccd3 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fbc7bbf drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60b2fe32 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61642e5e drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x624e55ea drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62cd85f8 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64879284 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x658c05fd drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65a5a281 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6696a7f6 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67c279b2 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6840e6b2 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68ca319c drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68d4548d drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69547e4a drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6989d18f drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69bf3a58 drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a02bafb drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a21cda7 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6af2d74f drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6de0cd96 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f4fe790 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6fdf8861 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70448907 drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72257a44 drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7483277b drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x755dc051 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x758766a5 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75ddbbb5 drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78fa2c7f drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x790d2bf0 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a2f8ce9 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7aeba706 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b64b55c drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b9fbf85 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c5fc0ab drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d001777 drm_plane_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d081e67 drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dd0ac23 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7eae4c72 drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81f26e74 drm_framebuffer_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x823812a7 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x826ba3c8 drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x828e0e5a drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83700ca1 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84f8b80b drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x850ea466 drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x869ed37a drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87013bb9 drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x873c7ae1 drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x894d8e8c drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89890681 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x899abfa7 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bf40c91 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d692903 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e105c2b drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e48187f drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ec64cc7 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90cd16d2 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9187c02a drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91aac234 drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x936bbe72 drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x940df991 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x946e9fa6 drm_connector_unplug_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96ec8b19 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9848212b drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98ccdb2e drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98fda5be drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x995919b1 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a11a6d9 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a4f81fd drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dcc2e37 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9de7f190 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ed1b612 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f2fcf11 drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f62f992 drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f66aa90 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fd3c352 drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa142614c drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1ebef41 drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1ef7c68 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa287dd62 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3dd45f4 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4204c45 drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4c9eeec drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5220c1c drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6e9588d drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa73941d9 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xabf1cfa0 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae03ed4f drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf2f13f3 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaff10573 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b6fd6e drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0e93343 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb12f2f75 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2431bab drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2bcf154 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2d046e4 drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3bfd57a drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4f9817a drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5039be9 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb602e86d drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb68de687 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba92b9b0 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb4dfc5d drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbf6b1db drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc2227f1 drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbeb13bc3 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbec3c887 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfea5292 drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc084b7f7 drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0a24fe3 drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2d15dd1 drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3e6193a drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc57e1471 drm_platform_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9a22fa0 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca127680 of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcab23df0 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcae156f2 drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcba96d97 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbac9fcb drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbe94ce1 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc8451d9 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd06cde4 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd4779a5 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd7b5176 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdc83a13 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf8a4d6d drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfaa28ca drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd167429b drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd229e133 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd254c018 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2831bb6 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2ecc9da drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd47d81a4 drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4b1ddb6 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4f2a484 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5e43478 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd64afb6f drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6babc6c drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7822e9f drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8c8f163 drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdae69b02 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb633358 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc552e5a drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdccb757b drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd209de1 drm_crtc_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd606d12 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde670353 drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde6cfe57 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0fdde82 drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2f409ee drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3f1b4ef drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4850135 drm_atomic_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe50c671e drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe53021fc drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6e31999 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe820dbf4 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9286a7c drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe997598f drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe99a4808 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea04c68d drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebc7177b drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebd99527 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xecbc53c6 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeeab60c2 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef4d85f3 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef56f865 drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0ba5d77 drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0c3e446 drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf175c681 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2433774 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4dd5380 drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf50ba3ef drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5336fe9 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5da09b6 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7dc9e5b drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf84c5a04 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb0971b4 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbdb1d43 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf03088 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfda7dad5 drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02e700b9 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x053df867 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09e952a5 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ae30f5b drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c844ffe drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x137d69a7 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1610c41b drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18b69ba9 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x198afa8a drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1bc115b4 drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d79b6e8 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ff9cb4c drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2034ac53 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23524f67 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25ef0bed drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a27cf9a drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a35185e drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2dec9834 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e1d4f65 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3319ee9f drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3420a56d drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3590ec8b drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37ac28f9 drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x386d6c03 drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3cacbec4 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d42328e drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3da0e535 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e71295c drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4105683a drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41424b89 drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41aef5fe drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43b73d3c drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43be56b1 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45219017 drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45f946a4 drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4610f019 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a21da8b drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d55c3d3 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5081d25f drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x529a01a8 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58772646 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x598bf2cd drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59a54828 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a6074db drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f0beee6 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6104246f drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x667b1185 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x676cf8fc drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68e170e7 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a105538 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e52fee3 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ee93d19 drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f3270a2 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x737586ba drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74347cae __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x759b7b3a drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76026b6d drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76795e21 drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77a53e81 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a5a6124 drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bb5d28a drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e885b00 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f27aa59 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82dac41d __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8411f290 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8719df8c drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89e585a7 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90953006 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x918d0966 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93af2e07 drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x966554e2 drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97b91fe6 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9907b2bb drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a054d93 drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa09959d0 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1310c2c drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1b70170 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2cade7a drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3d5d7c8 drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa40bb66f drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5d700d0 drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5fc0a7c drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6ba0601 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d37cfb drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa81293c drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab3256bf drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xacba5aa9 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xade37900 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb00fbb2a drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1668e7c __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb23ca67e drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4012038 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb407cd00 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4cfcbf9 drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb761e36e drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb843ad5d drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9bc45a4 drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc3c7137 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd23b23f drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd30d445 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0fe7105 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc51ea815 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7239f8d drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7cf33e0 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc937ca4a drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9b8d4de drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc3b58dc drm_helper_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd64b165 drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce002973 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0e43234 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2702566 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4216368 drm_helper_probe_single_connector_modes_nomerge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd43dda8c drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4ca1369 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd513b8b2 drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7c2448a drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd82574ec drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8630c02 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8a7c5d4 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd92efccc drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda0049da drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda18e5c0 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb0c70b6 drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdcf0e891 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe229b06d drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2431560 drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3ac01fd drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe410d82c drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe42103d1 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe459b7c1 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7d6d0d1 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe821d47d drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec1066b6 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedda695e drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf12b8c5e drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf12e578e drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2e10995 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6d4bf55 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf913d1b7 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd21786e drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfdb784a1 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfdc7dbee drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x01974b3f ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x028a06d9 ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x02ede84b ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x10400f6d ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132b05be ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x136ec7fa ttm_suspend_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x14b5d09f ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x16a284d2 ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1c52691b ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x20825d54 ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x265e69e7 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x266aee17 ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b7f8204 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x34d03536 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x37dbec1b ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3a754079 ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3c3133a7 ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4628b006 ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e8e9a71 ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5438e484 ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x572db514 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5790bac6 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5bc540b8 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cf59609 ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x60965229 ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67b1d568 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c0ec969 ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x783092ca ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x78528bbd ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7bb92603 ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x81f1f3ae ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8589758d ttm_suspend_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86bb8a6c ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x87c69531 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x898d0b54 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89af0aef ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8b6f0aca ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8f4b7911 ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d0eb91 ttm_ref_object_add +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9a6ae888 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae87b61d ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb586641e ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xba2071d0 ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xba633325 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbe2c2dbf ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc12a1903 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc38cf2e1 ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc7a8fe01 ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc7f1faef ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc968d68f ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcd54977a ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd59ded30 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8a8f43e ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe14a6562 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe2bdce24 ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe3e1e1bf ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe49b779e ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe568e6d0 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe5bd3181 ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe8295649 ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe8db4648 ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xea8db07f ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xefc4df0d ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf56de0e3 ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf58dcf85 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfd7484d3 ttm_write_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfe8cc064 ttm_vt_unlock +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0e2a6864 sch56xx_read_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0f5877d4 sch56xx_read_virtual_reg16 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x28b22c6e sch56xx_watchdog_register +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe5022f95 sch56xx_read_virtual_reg12 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xed1d2a08 sch56xx_write_virtual_reg +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x383a9032 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x38801942 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xf927ea1f i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x3aaaa1c4 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xf7acd4db i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x38fcdf7f amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0e2ea72e mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1e265e20 mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x2f71a79b mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x3707c223 mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x538c1749 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5c5e6361 mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6a980ab9 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7958b71e mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7a57d493 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7d2448b5 mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x85b6d2ad mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9ef61c8a mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb06bb8d4 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb10aa82e mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb63b16de mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc353a8db mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xdae305c0 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xe18eafe1 st_accel_common_remove +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xb047b8c1 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xfa7c5b2f iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x38050a97 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x6a197baa iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x9d4acb6b devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xb39bdc81 devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x03ecc66c hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x22a2dfef hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x4c055a56 hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xa4c195a2 hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xad623a52 hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xb749afc5 hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x0050d7ac hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x66206304 hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x7986fa2d hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xb84ab6f8 hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x00711c87 ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3251594b ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x32d754e4 ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x97b1e2c0 ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xa03924aa ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xa40562c6 ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc4272da0 ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xcbfb75ef ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf4c617ed ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x33371b24 ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x4c8a4748 ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x72a35952 ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xb0ac9b00 ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xfb9928df ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x2ea50856 ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x550e3d16 ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xc59459a1 ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0720f746 st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0ad49710 st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x11254cb7 st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1bd58a19 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x30991f11 st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x553129de st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x65e5267e st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x868c90ff st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x877763a8 st_sensors_get_buffer_element +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x902c0521 st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x999f3a11 st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xac2696ea st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb9fd34dc st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbcfc40b9 st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe7ec5690 st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xee0f7e08 st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf33477c0 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xcd0db4dc st_sensors_of_i2c_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xf0b25b85 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xb94d0640 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x4ce1430e st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x4fe4eced st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x61c2b0a9 hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x54d54462 adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x5ccb3a91 adis_enable_irq +EXPORT_SYMBOL drivers/iio/industrialio 0x03a331db iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0x07578186 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x404a7783 iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x417353cf iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x4cc92fb6 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x4f98af00 iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0x5242ddf3 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x591f5460 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x8e9a1070 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x9ff7c0a6 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xa8c9ff2e iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xab34f688 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0xb47a8d2e iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0xbe315bca iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe7406fe3 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0xefac081a iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xf99686d8 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x6d53afb0 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xcdc11e4d iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x2066758d st_magn_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x7e0fc2d8 st_magn_common_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x1ba92718 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x38c99494 st_press_common_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x4b82ac29 st_press_common_probe +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x049ace30 rdma_addr_find_smac_by_sgid +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1765b6fb rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x5347cc38 rdma_addr_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x582667fe rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x7df81f32 rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x91b3e9d4 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x9cf23610 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0ad23eb9 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x154daf27 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1aa49215 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x209a9811 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5bfe6684 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6d56823c cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x72dd81cd ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7fc31aa0 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x87f831cb ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x88cdf4e4 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8e5d7a68 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa17e73d8 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xada3b728 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb5bde182 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbbc961e0 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcb7d0564 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcfeed953 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xde50a101 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01e5cbdd ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02d4d576 ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x031077af ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05e45864 ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a59e0c3 ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a777ee8 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b1b07cb ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b2710a1 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0dc3d4af ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e6b1f35 ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1310aebb ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x162f0450 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1671984c ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16db468e ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b4de43c ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c46ec2b ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c763323 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21e39516 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26d36c2a ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26f2f944 ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x288b2d53 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28d74c1d ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2bce4a9f ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2dae76eb ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30ec413a ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34f9d9c2 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x408a41b0 ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44a13519 ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e000112 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x510dd617 ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x532bb025 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55ede31c ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b38083a ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f20caf1 ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64d87fec ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6524b220 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x654fab64 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65e9282f ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66041227 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66279fc7 ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x677a4694 ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ae6bd98 ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b5e0bb8 ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c300e54 ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70bed0b9 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70fee2f6 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73bd801b ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78ca8aba ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae5dc09 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d86a90a ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fb6086b ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86d95dff ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8860d92e ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89b047d7 ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90af052c ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e26b80 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91316dd5 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x964b43a0 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d10e48c ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e88b86c ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f579924 ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1d68cb8 ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6ea014a ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac7958a3 ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb17e9326 ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1c7c15d ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4461686 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb69df86a ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb889014d ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbdc97f33 ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1a8bdea ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2391cf7 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd00367ce ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd85603b5 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8e39c98 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8fab244 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe15b3097 ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe50acddd ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb9516b4 ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec78488a ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3951360 ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf71f6efd ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf885effd ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x1a9b3b3a ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x23b865b3 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x268868b5 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x40f14423 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x64df68fb ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x656dd589 ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x71903d0a ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x78e0af20 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7eaf55b3 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x885a3415 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xcf180f31 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xcf56788d ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xeb9f817d ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x05f4881f ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x3b880218 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x45f838d8 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x611ada85 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9e7aad54 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xa7c95d89 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xb1d6fdec ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xcca494e4 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xd3d7b81f ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xd67a69ae ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xde9e1b2c ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd5ca0801 ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf4732348 ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1bd0d307 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3cfa49ae iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x441893cd iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x544c41f1 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6eb2b5a1 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7308c6fb iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8e00af29 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x96004cd3 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9d60eb95 iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa60bf3cc iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb047f931 iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb2c66897 iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd190a153 iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe254d41f iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xff5632eb iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1485b35d rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x21f69344 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x22f9f7fc rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x261987dc rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2e7c3e3f rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x37694570 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x56d99e61 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x650e10a3 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x720f75e2 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7c0d8c71 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7f352f91 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x838b6ee0 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x88709a85 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9faff31e rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb125d3fc rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbb2d7e9a rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc0a4d6e6 rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcdba86d7 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdd589c5c rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe6dc217b rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xec835d51 rdma_destroy_qp +EXPORT_SYMBOL drivers/input/gameport/gameport 0x05166a8e gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x19ad4f05 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x54fc7470 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x67974a07 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x8180b95a __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x8ecc4788 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xd016a4d5 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xde88a3c1 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xf0246c1c gameport_unregister_port +EXPORT_SYMBOL drivers/input/input-polldev 0x11a17587 input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x6ecfc24c devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x6f2c4d4f input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x7ce98e98 input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x8531fe21 input_allocate_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0xf5a96ac7 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x44ce1b0c ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x80a6210f ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0xf26a8ffa ad714x_disable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x15358af5 cma3000_init +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/sparse-keymap 0x60293371 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xa6264e54 sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0xde5547c7 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0xfbb69827 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xfd3c095e sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0xfde208b2 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x34e25706 ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xceee204f ad7879_probe +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x18993499 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x25eea4be capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2e067ce4 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4c44d523 capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50ffb87e attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x55a40608 capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8698025b capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa7c4fd6c capi_message2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc10fe128 cdebbuf_free +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc9744b4d capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd58c737d capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8ad9bd1 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfd542522 capi20_register +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0c9ec0ad b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x19c289b3 b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2cd1b666 b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x36137460 b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x495208a2 b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x4b3e4cef b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x4ef7fcb6 b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x7841a25d avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x86797f43 b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb17a5a4c b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb9c996a9 b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xbb19a518 b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe21a575b b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfb77d231 b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xff315458 avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x22ee98c1 b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x3ea98d6b t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x4ecd4d68 b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x838804c9 b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xb27c4f04 b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xb5a0a0c9 b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xc8d3db8f b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xe33c996d b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xf63219cd b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x472852c9 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x94bdff8e mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x9fd9a54d mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xa301ef20 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x0199d9d3 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xe0f7fb3f mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x461c5a09 hisax_init_pcmcia +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6fe1ca04 FsmDelTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9f987c85 FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xa1bc94b9 FsmInitTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x50777e09 isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x80e49a9c isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xa6eb596b isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xabd3030f isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xdb734a99 isac_irq +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x17f627d0 isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xb5f46ecd register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xd806285a isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x19e9ee7f mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x22a72f82 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2fd69622 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3a750900 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x40fc3751 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4a974e9c recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4ba03279 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x518aaea7 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5a0b002a create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5d19cd27 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6bc14c1f recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6e4ef000 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7542d380 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x75e0cc46 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a19a053 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8abba832 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x99d64904 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa11ef19a recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa98c66c6 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xabb1fad1 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc1cb6d91 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd1c33e26 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xed936117 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x18466234 omap_mbox_restore_ctx +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x1b6507a6 omap_mbox_disable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x1ec5a141 omap_mbox_enable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x33866b54 omap_mbox_request_channel +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x8099d7d0 omap_mbox_save_ctx +EXPORT_SYMBOL drivers/md/bcache/bcache 0x10dc0d06 bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0x21c7828c bch_btree_sort_partial +EXPORT_SYMBOL drivers/md/bcache/bcache 0x2bf2cf95 closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0x3361c614 bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x4d2fddc6 closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0x66d28e22 bch_btree_iter_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x6969b5d8 bch_bset_init_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7b55ca4f bch_bset_fix_invalidated_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0x9e8b3cee bch_btree_keys_alloc +EXPORT_SYMBOL drivers/md/bcache/bcache 0xab2d2b84 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0xad29a6f5 bch_bset_build_written_tree +EXPORT_SYMBOL drivers/md/bcache/bcache 0xaec09a2b bch_bkey_try_merge +EXPORT_SYMBOL drivers/md/bcache/bcache 0xaf77343c bch_btree_keys_free +EXPORT_SYMBOL drivers/md/bcache/bcache 0xb4ccf7a0 closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0xb8b6357c closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc04554f7 bch_btree_iter_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0xca580595 bch_btree_keys_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe47e0829 __bch_bset_search +EXPORT_SYMBOL drivers/md/bcache/bcache 0xf8fd4bac bch_btree_sort_lazy +EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL drivers/md/dm-bufio 0xa7978f56 dm_bufio_forget +EXPORT_SYMBOL drivers/md/dm-log 0x1fbae3ed dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x99fbe31c dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xa1b8bdc3 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0xc4ecb78e dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x3f6108a4 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x92ec269d dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xa4b54081 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0xaa84b31b dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xba3b7465 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xbb340f19 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/raid456 0x4390fb12 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0159642b flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2db7f119 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3ede648a flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4e9b2f5b flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x55c29736 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5d80d5c6 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6d63364d flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8ee70d58 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9328ff6d flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9e2a9d3a flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa582b63f flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa6ecb7aa flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xed2a0622 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/cx2341x 0x11dbd485 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0x30cb4cd7 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x72cc826e cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x8ce88bdd cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc0b753c5 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0xef8cf916 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x93103dfc tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0xf39374af tveeprom_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0c777d9f dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1ad6fb27 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x23056281 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2c26329b dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x33edac1b dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x344908d4 dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x346d8495 dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x34d5eadb dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3656cb10 dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x40c0d66b dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x46493299 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4b45569e dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5b521b6e dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5d7951e4 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5e8a94c9 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x629f9d31 dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6e49396b dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x71d8a19c dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x72180695 dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x789100c8 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x819cf7fb dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8633f37b dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x91325431 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x96a0e538 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9850cb88 dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9c19040b dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa49a87f8 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xab729e01 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc0158331 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd5757859 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd942c3fe dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdb1a8bd4 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdc094c39 dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xedc2cdcb dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf4364619 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf48116c6 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf7a115cf dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfd459c8b dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0xa978901a af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x5c44f719 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x958d43ab atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x1ba18017 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x35670499 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x4e474749 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x668257a2 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7789c489 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x77b7fe0e au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb3841f1d au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xbba9c517 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xdcebd219 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x92c5efa8 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x56e97049 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xa38be2da cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xd50f3207 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x9c5e05e8 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x196f364e cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x719131b5 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x3b3a3d16 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x256c2db0 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x4cb36cb8 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x7bd9ad4b cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x91906c01 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x4e37a943 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x8ae19318 cxd2841er_attach_t +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xe1042fd0 cxd2841er_attach_c +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x423e79e6 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xd48456f3 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xf03b6cf3 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xf1173172 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xf3e6e383 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x11ea8a53 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x406fe2ae dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4431685a dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7172c207 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7233f10a dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7f00515c dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7f386117 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9c1dcb97 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa082abb9 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xabb92b65 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb1f7fb30 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xcdd24989 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdf2bae59 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf8508580 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfa91151d dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xfb65866d dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x160030a1 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x4cb49851 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x5a52f1cc dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x5d8d7a0b dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x6cebe16e dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x85f29671 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x4e5b94db dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x67472724 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xe6df5ea5 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xf348714d dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x7edaff32 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xabc5789c dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x5a851709 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x75f7983f dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x76bf218e dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x8b054c39 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd0f50e7e dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x30199880 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xbe1775f3 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x5c04ba79 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xdaf5e26e ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x3ba32a2a dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xaa0005f8 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xabf13343 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x97c123b9 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x0c12db00 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xef3f6b8f isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x6709501c itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xb280aa9e ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xa0363bb4 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xdcea9b2c lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x0d21bbee lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xe1443cd5 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x1c2b7886 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x359dacab lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xb680c19b lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x0bd3eda3 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xa8ade0f8 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xa36665ca lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x3a632678 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x52ac2fef m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x6f9d99f6 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xe62b6e6f mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x5599c2b2 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0xc4f019df mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x9c73c947 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x56664882 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x408c91cb nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xf87db8fd or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xf40046c3 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x656cc6a3 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xc67d8871 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x609a5de7 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xabb76d69 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x95f15f0f s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0x450f31d5 si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x391f8e86 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0xbda1f3fe sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x9c8a729f sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xd092d08b stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x26a49231 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x8180ccb6 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xd319f4cd stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x0838a449 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x804fb58e stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x3b84c5d9 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xed66c03e stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x991c7d16 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xddf23914 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x39ce19cf stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x02a79977 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x83281a19 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xa1b82096 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x2c4f234a tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x4e45709d tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x5cbbe3d7 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x711a1d3c tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x1c9f260a tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x7a88e28d tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x7e35855d tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x1da4867a tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xc44a030b ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x6ec28ee4 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x9f251da2 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xf22370c3 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xd01205de zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x6a1a36a6 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xc7852324 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x19c6c69e flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x466725b7 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x5d1fbb6d flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x6b72d163 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xa00e6acb flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xaf385268 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xcba3c4a7 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x0d29358f bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x29f1418e bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x720d9151 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x7b27b9d5 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x6e38e74b bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x7fa96d2a bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xd3aca3a0 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x032c3946 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x37783d9b dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x45f86a69 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7eab8819 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9499e36d write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9f224fee dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb1a5c5e4 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xcde39524 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd5272fc6 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xb0617fa3 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x460616a1 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x60528d34 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x65e176ab cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xc2bb4f90 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xf946bad1 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x3031832b altera_ci_init +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x0adc7d99 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x17c06790 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x61eb2e70 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x62baaae1 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x9baf189c cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xa98ff392 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xfe034edc cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x67595809 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xf475abe5 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x6472ba09 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xc379d6cd cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xea684ff1 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xfcbe97f2 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x13709f46 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x28894f3b cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xa7d95da1 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xc329b994 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xc95a7fb5 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd1fe254a cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe6ba59ab cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x12e2d8ec cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x166e40b7 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1b16c5dd cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2c957196 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x38411917 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x40bf7b73 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x41760ab9 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x54913e1c cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5c93c429 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6c538af4 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7013000b cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa39db13b cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb910ce41 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc9943c64 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcaeb150d cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcde6b838 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe31578c9 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xebbd3581 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xecb5580e cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf652f57d cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x18e0857f ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x28b6dc4d ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2afc4328 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4c1c78ed ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6277e6ad ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x721c139b ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x852e4d0f ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x94c0d6cd ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9b790b0c ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xaec08e8f ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb24b97c8 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc485fb6f ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc77e8eae ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xef54a07c ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf4d49b8e ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf76bbc44 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xff4d74c7 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x301c1d37 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x43e99de6 saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x547b4b9f saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5dee9471 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6c26e2a4 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7195b41f saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7cdc941a saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8c693a0a saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9ae2a0e3 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9fa9aa33 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xeb54f731 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf887ba8e saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x2c92e220 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x05a970c5 soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x180c2860 soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x1878a491 soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x1fae058a soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x689b394f soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x90f00602 soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xa68e8ae6 soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0x24194b6f soc_camera_client_s_crop +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0x28aed4f6 soc_camera_calc_client_output +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0x959f9775 soc_camera_client_scale +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0xb9be7be0 soc_camera_client_g_rect +EXPORT_SYMBOL drivers/media/radio/tea575x 0x66f25b50 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x6f1960bb snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x7c137f76 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x8289204e snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x95a3c08d snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xbc1954f1 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0xe2f92fa6 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x0c2d00cb lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x1b825012 lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x2910fca5 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x3b4a37e8 lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x3ce9f018 lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x5bc10f3e lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xa5294569 lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xf463c42d lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/rc-core 0x25bd6175 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0xcb0f0663 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/tuners/fc0011 0xca3e4868 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x4297ba90 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x010863ed fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x2cbab599 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x37f09b2e fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/max2165 0xb9a6310b max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xcb2a651e mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x9e2ebac0 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x1de6bc34 mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x169f356e mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xd02f980e mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0xa3226246 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0xcd66e0ed tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0xe5311dd1 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x25995fc4 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0xbab66665 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x0711b717 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x7bffb2ac cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x43534054 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5ee785d4 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6fb0456e dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8e1bb7b9 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x90c32d66 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x9c3b002e dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x9d6366d8 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc697f3e6 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xdf1a3bcb dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x0186e332 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x0b01d64f usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x21d93a0e dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x6ae39365 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xb44e453d dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd48b1072 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd7a2dd26 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x1dfcc473 af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x136bd681 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x154a34e8 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x308e1398 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5364f8bb dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x67b60a8a dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6eb3f02d dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7d6d98c5 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa3b8d904 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb63a33dd dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe444daab dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf5c6ec91 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x920083df em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xd32b3bf5 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x2aeb1ffa go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x37f8ab5c go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x47471ff5 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7b8d927d go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x8c52b264 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa84373db go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xbf7d5c99 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xfb086cb1 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xfb10a0c9 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x372bbaf3 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x3dc25117 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x6e7f47c3 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x76e5b439 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb05c0772 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xbcdb707f gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc2487087 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe8fb87de gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x181e3f3a tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xf191821a tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xfc0ef623 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x9f2d5c19 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xb4ea5dd3 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x9f77c08d v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xc84ed450 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xdafadb54 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x2d3accb2 videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x2ec18838 videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x4f5c87f7 videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x5225172a videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x7a76aeb9 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xcce0c1c4 videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x137d14e4 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x284abfae vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x21bda55b vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x426ec53c vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x55e43388 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xb9350200 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xc4320b09 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xe6766e98 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0x1cf5104b vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0073c603 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0195ff84 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x049171b1 v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082f41a3 v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0d60a3bc __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0dd202cf v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0eba63a4 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x13aead98 v4l2_of_free_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x25cdfe11 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2bb495e6 v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315da6bf v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x357b46eb v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x35e22155 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36d7dbe4 v4l2_of_alloc_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x38efd0e2 v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3a523282 v4l2_of_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3c706d65 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3d10ad18 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3fd1cd5e video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x40cd6e31 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x449c1733 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x46a3ce77 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4c13394e v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x53e83ffd v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5628b6e4 v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x56b47187 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5edc9d52 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5f2227f1 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5f89b24e v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6390e6ce v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x641f5322 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x64a2ff55 v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x65214fc0 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x658e4a20 v4l2_of_parse_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x73cd6705 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7505fe7d v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x772b3308 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x78a526d0 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x799b38e5 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7c80415c v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7d73ba77 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7f8943b2 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x80a3a8da v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x816c3c34 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x879b0e96 v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x88da4650 v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8c1d5107 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8c80ed03 v4l2_of_put_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9453b3d0 __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9885029c video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9d157c9b v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9fcfbb24 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa0238369 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa163d219 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa1a3be1b v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa82bab9c video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xab626805 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb0f63d42 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb0f7acf6 v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb69fbe6e video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb806ed37 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc122101 v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbeabe536 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc016f0e7 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc3f757ff v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc521f858 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc8940646 v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd05a20a7 v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd4ee6f2e v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xed78dc18 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf46fc39c v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf490f004 v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf62b408a __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1d598e42 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x2c666fff memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x58ef2e4e memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x62793614 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x64aaaf8a memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7448e7cf memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7a9f7812 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa5987a36 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa5a89715 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xab557183 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb5d8ba7f memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb7e18111 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd6b3707d memstick_add_host +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0d88779d mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x19328249 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x32f89349 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x39131239 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x42d5697e mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x432643d8 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4942d708 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4f87bdd4 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x58a34978 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x62004496 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6b4a181e mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6ff5efd5 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7420dea3 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x979c18ce mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9a852e52 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa27e0411 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xacdf3994 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xadf0ca36 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb311784e mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb3249fab mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc4e20b51 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc6e27b51 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc9589656 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9c56bde mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe7638b87 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xeb209263 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf2c95d77 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf645c44c mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xff496904 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0a2b5318 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0ad751ce mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0ae68dc6 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0b9ea57a mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x16f2a9c9 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2304a802 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x431c9113 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4980c857 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4e97e103 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x59852da1 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5d584f00 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x684774f3 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x69b2f62e mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x75c3c468 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x874aae6c mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9a289284 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xae773243 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb7d86e1b mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc74de26c mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc8a9dfe7 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe1abb61c mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe1ebab9d mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe918e963 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf35fa74a mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf7362208 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfd0b8dc2 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfddcbc0e mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/mfd/cros_ec 0x2ac405dd cros_ec_register +EXPORT_SYMBOL drivers/mfd/cros_ec 0xa7805423 cros_ec_remove +EXPORT_SYMBOL drivers/mfd/cros_ec 0xa82273fd cros_ec_resume +EXPORT_SYMBOL drivers/mfd/cros_ec 0xe6f49cd9 cros_ec_suspend +EXPORT_SYMBOL drivers/mfd/dln2 0x581b9b0b dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0x86709209 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xd18c84ec dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x705464df pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xc21b8bab pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1922df45 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1e09e9b9 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x499d858f mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6d344121 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7afb0986 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xae357bea mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb261b124 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xbcabc5cb mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xbccdbd3a mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe3f68599 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf11c8317 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/qcom_rpm 0xd042c9be qcom_rpm_write +EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 +EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 +EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib +EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led +EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw +EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x3096860c wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x822f06e1 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x0659ec9e wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x34635707 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xa17571c8 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xab01552a wm1811_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x6204713c ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x757bdbcf ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x8a05ed90 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x1a2834f0 c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0x3eaff2f2 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/ioc4 0x72d52c30 ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0xe5b2ac6c ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/tifm_core 0x164d20de tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x18603a1e tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x1dfcaab7 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x317998da tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x4b5fcf4c tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x5089d7e7 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x6f6aaff9 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x73fb8a5b tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x7b0e3058 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x8ec139c4 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xb5f1264b tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xe0e1d6fc tifm_add_adapter +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x470751eb dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x5229daa2 dw_mci_resume +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xb69fdd05 dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xf70ff5a1 dw_mci_suspend +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x17477eff tmio_mmc_host_runtime_resume +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x378f2335 tmio_mmc_irq +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x3aed3912 tmio_mmc_host_probe +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x6757b177 tmio_mmc_host_remove +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x6d3deee9 tmio_mmc_sdcard_irq +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x7a6fd700 tmio_mmc_sdio_irq +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x94cf8580 tmio_mmc_host_free +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xa1c2c55a tmio_mmc_host_alloc +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xc8d0ffb0 tmio_mmc_host_runtime_suspend +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xf02062dd tmio_mmc_card_detect_irq +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x29821cac cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x75a6ce50 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd936bccb cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe3b5c141 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe69275de cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe9e63969 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xeb2d7a9f cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x4e51284e mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x5efee554 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/nand/denali 0x492d0e91 denali_init +EXPORT_SYMBOL drivers/mtd/nand/denali 0x669768eb denali_remove +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x6a6ed5b1 flexonenand_region +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x840f1d83 onenand_addr +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x8bf00fc6 onenand_default_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x915d7fa8 onenand_scan_bbt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0085a808 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x75aedf8d arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8912979a arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8e83ba24 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x910bcd7a arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xcc0cbdac alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd15c100e arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xdb85f010 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xee7ce8a0 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf26371f1 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x358f26ab com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x7532e232 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x8a875b91 com20020_found +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x13f962cb NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x162d1b00 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x178b9d2d ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3165adf3 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x36a5b055 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x52bd24e2 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6a9b2c40 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa2a94e02 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd71572b3 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf9eef9fb ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0x531a8925 bnx2x_schedule_sp_rtnl +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x093726c8 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x25308432 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4623c666 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x62b1952c cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x67c0f8fc cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x75235ec5 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7ea36e19 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9df8ec4c cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa188ff03 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa568a397 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb964b2fd t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc95368fd cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcc6fcd53 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd7a8b115 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe06fca0f cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe3b62e82 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf6ff9718 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0a11526c cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0ec3aa1a cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1d799fd8 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3aa1bc3e t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3bb205e7 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3f120369 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x448f3b34 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4ac0847b cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4bc6d869 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4de31aaf cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4fcbcd70 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5e4df5c8 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7343a65b cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x81bafa80 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x82aa0cf5 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x86566d56 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9a779947 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa370a7f5 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xafb9bfc1 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbdf3aac1 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbe6095a9 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc43e42ff cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc531fffc cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00a4f2f cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd2df5bb3 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd2f2e067 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd78fc54b cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd83a989c cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe3395e84 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe6d1f913 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe74f3899 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xeea14738 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf3585404 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf9feedff cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x10a028dd vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x1edb79ce vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x400e904b enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x709f26cd vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xaf8a4b09 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf2d1f0d6 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x3ae57bd2 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbd944340 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x073f349e hnae_put_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x4aad0bcc hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xc981b48f hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xe476bd0b hnae_ae_unregister +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xf80315b1 hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07bf039d mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18215d6a mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a1661f0 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d7cb1f3 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20fb42e9 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28c24a73 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b4e31f2 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38ec0d37 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b4fca13 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6384ce69 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x683b7060 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f03116f set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78e6ef59 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85a989b0 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85d3a0b9 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ea5a480 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94dfe4d3 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9824dfcf mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x998bf21d mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a20dda0 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ec61b4c mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4688053 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6719350 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7a680f7 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbce8c240 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6c88a0d mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca07e763 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd081184c mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd10c6276 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd67a654e mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9ce4ab2 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdfa4d463 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe69cbe65 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebcad11b mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee05e380 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0fb39f2 mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf22cca70 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7694e54 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x076f0cef mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0857aabd mlx5_get_flow_table_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb7287e mlx5_del_flow_table_entry +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x152c0d12 mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1571f4d2 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x164a813e mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17cf72ed mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21b63333 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28db16c6 mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3413f88f mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50e87426 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x607cad8f mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64e438a8 mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70e26e1e mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d87e40f mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84ac028e mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x851e8c1e mlx5_query_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b5d4be8 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8dc24464 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e72edca mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x97313ae3 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa054f27e mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa70ae220 mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7ab257b mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8ca91f5 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac6cfff9 mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb31bb78d mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb347a16e mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb79246a8 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb78edc1 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd266e63f mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5c5fe11 mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5f00854 mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd88479ee mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb1bfe51 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6af33e4 mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe79ba788 mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe94822c7 mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb219faf mlx5_modify_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8a2aab0 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc728a49 mlx5_add_flow_table_entry +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfde87586 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x32801879 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x32f2818d mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x863c432d mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa13d7233 mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xacfbf8b4 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc14ca46d mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc8a7a5ba mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcb5c8545 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee8e0771 mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa209d1af qed_get_protocol_version +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xe681790e qed_get_eth_ops +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x0090bcec hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x670010f5 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x9d810ed6 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xddf530dc hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xfab1ce42 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x08973055 sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x13737898 sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x2232b6d9 irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x66ed313c sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x6e6d79a7 sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xa3767495 sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xcabbb61b sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xd3d729d2 sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xdf1e14c5 irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xfae3bb7d sirdev_put_instance +EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mii 0x0cfffad0 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x1869d8cc mii_check_link +EXPORT_SYMBOL drivers/net/mii 0x53cfd78a mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0x576688f1 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x7cd8fb71 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0x920812a7 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0x96151080 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0xa0f0c4e7 mii_check_media +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x05dd7fa2 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xf61234bc free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xa4766f41 xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xdd36de31 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xed06e362 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/phy/vitesse 0x67039810 vsc824x_add_skew +EXPORT_SYMBOL drivers/net/ppp/pppox 0x67ebdbc4 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xb64781a4 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe91b3e5d pppox_ioctl +EXPORT_SYMBOL drivers/net/sungem_phy 0xd8aa26fa sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x3d6f61b6 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x515e23a1 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x52940ed8 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x6be4735c team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x6c609ff4 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0xd95e9747 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0xdde5b966 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xeff82cad team_modeop_port_enter +EXPORT_SYMBOL drivers/net/usb/usbnet 0x55cc13ef cdc_parse_cdc_header +EXPORT_SYMBOL drivers/net/usb/usbnet 0x57221c9c usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0x70d9442d usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xde93a3f8 usbnet_manage_power +EXPORT_SYMBOL drivers/net/wan/hdlc 0x01ea258f detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x12c5c736 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x487a8dde hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x529a9c98 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x5b8c83b9 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x72016996 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x95f42efa hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0xde657b48 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xe2edd7c4 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf11c9bbe register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf3b27549 hdlc_open +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0xe5a4b48f i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3745dbc3 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x380b039b ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3ac8ce95 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x47e5c077 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5ebc9388 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8030c4d0 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x94f61c97 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb477234d ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb79f276a ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xbe95f53b dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb0c9d50 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb6b2380 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0ecae3b7 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x111b1c91 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1ff4bd70 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x205a05d0 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x23fc1e33 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x44e4a550 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x55484869 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x68d94d81 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6c7c3450 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7c2313e8 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x83ae4d1d ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xba714f1a ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd33f666b ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd6b78f83 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf9ab021f ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x577c0cc1 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6955dad2 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x69c796ff ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x77a65d0a ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x861077ce ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x9d3dfcf1 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa9d7efcc ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xbd058199 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xdbadf826 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe5998e91 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf810464b ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x08197c72 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0ac1c46f ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1bcae4ab ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1d889072 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x284d3a57 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x31ba8acd ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x415800d9 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x70fd4e9d ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x72cc7f5e ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x748d964f ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x756243d6 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x825ce54f ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x92347298 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9834eedb ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa3c65c74 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaa88f75c ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xad7a3ed6 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb216f0dd ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcbbc0cdb ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcd178818 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd07f538d ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd0a199bc ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe8aa42db ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x042f27b1 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0590da09 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x06b38757 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08068cc0 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08ab0b8d ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x092c8887 ath9k_hw_request_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x09541b1f ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0aeebf41 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0af4c23e ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c8eee2f ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d253009 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0dd7af37 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ed71ce5 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f02c75f ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f3d51d9 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10f658bd ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x129444d7 ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x15a0beab ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17cb8d02 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1db24cbe ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x200988bd ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x221b49ce ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2514371c ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ba79247 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c66db6c ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d566e14 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d86ff3f ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x33b11624 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3c6dd259 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3fc9e40e ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x40880f89 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x40a6b8c9 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x40dcacbf ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4423634f ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x44964036 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ec8e5cb ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5009ce38 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x513f250f ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x526d8aea ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x52c059a8 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x52dd8cce ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b436b8d ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5f6980b6 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5fbd8829 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x60835e26 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61f86bbc ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x665ac0ed ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6fad3fde ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ff6534b ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x73212dfe ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7cddc13c ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f192d04 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8228c731 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8a1af5bb ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8a59917f ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d1c7d89 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x90c2ead5 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x90f1b2e6 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x913e03dd ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92e38b56 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x983e64f5 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d5b82c8 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa0865e83 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa14d4a1d ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa28f6a47 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3d6cb40 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7915370 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7ae3701 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xab86921d ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb569d72e ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7286c97 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb91d23a2 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb97a9a17 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xba3ab7d8 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc29b0a85 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc2bf87fe ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc729e359 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc77db7bf ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xca31fbab ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb978463 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd530a68 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd3a0fd9a ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4051850 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd89ffad1 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9c59b7c ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdc2d9bf7 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd15f070 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf300948 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe309cd81 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe472e764 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe4e71df2 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe6394dda ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe689edbd ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe6c1e722 ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe7b4c59a ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe7fa08b5 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec1dc347 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xecb25ac5 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee9ddbf8 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf098832a ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf17688fd ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf459d6c1 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd2fa01a ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd501e2e ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff6893ea ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/atmel 0x2302a50c atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel 0x591d88a7 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0x59b6df7d init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x11b8cb23 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x13802948 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x1bb2663b brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x518f376a brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x75d6dca9 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x775c5919 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x77ee74d5 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x82a818c8 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9eccdb0c brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9fb71dcd brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xb4439a48 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xdfebc6d4 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xe2e4b035 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x077d260a prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x211813b2 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x22b5f02a hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x31b5078a hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3c7d6911 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x41ba1b04 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4bde21e3 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x59fbaed0 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x65f1096c hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6a5f65ad hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6b796908 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6db2b70d hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7423fc1e hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x78b88d9d hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7a49f544 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8895310d hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8f278364 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xaab2f7fb hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xabb0cc19 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbbacd1cc hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe3ea909a hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe545abae hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe687e275 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xea688131 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf686e4fe hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x093643a3 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x09a12c07 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0a753052 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x18b8fd94 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x1e8abdd0 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x23375432 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x43b9c9b6 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x489f9a84 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x56cc76c8 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x585ab3f0 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x6b2106d0 free_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x6d46cbdf libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x77fe63c2 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7bba628e alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x901310a6 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa3c02924 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xadf5ecbb libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb64df587 libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xbcbc61b2 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xbd0fe3c6 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd00ad61d libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0509b8a7 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x05561026 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x05aed295 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x06aa68fa il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x074176d1 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x08284dde il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x086af0f9 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0b9142e1 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0be83c6e il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0ca7bf81 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0ff31b5d il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x10d53b97 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x118619cd il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x132d5579 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x18400b9b il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1a76f270 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x216c95aa il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x22686672 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x24d859ad il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2543ef35 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x29462e88 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2a8f6479 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2bb93550 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x335eedda il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3d7db616 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3f24eee9 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x41aae7af il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x423e1dc7 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x482e6b80 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4bcb2e1d il_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4cbc7b5b il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x556634ea il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x560a90e0 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x570b54b5 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5713dcb3 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5b26700e il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5e0a0de4 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5ec4a863 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x63ff0e18 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6a2799bd il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6b6ed2b2 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x72dd3dac il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x72e36824 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x78ba6133 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x78d8e78f il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7948ffa2 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7aa8ac84 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7e723eac il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x80f440c4 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x833e39db il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8386d924 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8389d4a5 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x84b19b74 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x85bfd27e il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x86f4dacc il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8c497b5a il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x901955a5 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x917edd6c il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x920316d7 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9c07bafd il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9c6e7d5a il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9e041b31 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa08e4e57 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa9eded7b il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb470f0c0 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb478247a il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb8a3d41e il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xba190e60 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbb4bb7e9 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbdd97c58 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbfe83dc2 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc056f9e7 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc86d0967 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcc48f54d il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcc918d60 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcd48400a il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xce3b4dd9 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd1ad53aa il_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd459e20f il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd47ed60e il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd48c5c33 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd549b679 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd7708dc5 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd803213a il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd83cd1e7 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xda7432aa il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdbacb30f il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xde14ad15 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe34973f4 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe784e760 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xeb7512a8 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xec1d7896 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xee1e612b il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xef89cff3 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf608ac8d il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf7fc0068 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf8319efe il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfd3b3f54 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x180d7a46 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x208d96c4 __tracepoint_iwlwifi_dev_iowrite32 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x26bb7eb8 __tracepoint_iwlwifi_dev_ucode_error +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x436814a2 __tracepoint_iwlwifi_dev_ioread32 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x496d7aef __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x8f81067c __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xfd34aff0 __tracepoint_iwlwifi_dev_iowrite8 +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x05e75df5 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x1895d817 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x2fc78091 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x3f5877cd __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x54004a62 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5bfb0c47 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x7888b564 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x82df8c21 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x83387adc orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x9deecd4a orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb599ed9f free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb6049ff7 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xcd15706f __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd141f5b0 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xdbcfd9f2 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe72d4773 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xeb6fcedb orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x4ebb31f4 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0a1af356 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0a48b408 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0a4e4881 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0fe107a6 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x11cdd62d rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1398e26c _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x15262804 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1688f523 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2089cd73 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x209c9ef3 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x226e6b50 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2471ad47 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2542b673 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x34ff2a85 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x38618040 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x41d12344 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4efeb7df rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5e897d07 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x63a7d10b _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x644d0635 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6a72f8cd rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6d3c968c rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7193dd65 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x71e086e2 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7d4029e8 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7ebedbcb _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x89de299f rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x91944ac5 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa92ddfab _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xad9bf687 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xafa8e33d rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb0d15f87 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc0529006 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc6bd9b20 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc71cd0d0 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd74e4993 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe327f794 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe8047ab8 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf851be37 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfe983c1a rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xffc97eac rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x097e692e rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x6687a6b0 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x875bce09 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xaf4c7a79 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x510ee89d rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x8fd22572 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xa9d125bc rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xe86a3860 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x153c7a92 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x196a068b rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x19efe3c5 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x26363a75 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d29bf32 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x332d29d4 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5424fa7b rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x71c539a5 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8139513f rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9b1b7ca0 rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa71b1e7e rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa82bec57 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa94136fa efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xac7564d3 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb0693ecb rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb6809500 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbacc7f57 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbf6cf898 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc2c46364 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc7717e2c rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc8acb998 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd554506a efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd6a20a95 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdcaf74f9 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xefd1eb9f rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf609615e rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfb9529da rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfe876d34 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x79e02999 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x8473f690 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x9eb9e53e wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xc50a2b78 wl1271_free_tx_id +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x37d863ad fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x592e4dc0 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xd28599f7 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x1c24b499 microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x2e281838 microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x2ef32c0c nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x975386b6 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xc2e51b54 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x241fa825 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x92adfd23 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x670bbecd s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xba7b4a31 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xc455f88f s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2f40d1bc ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x388c9d73 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4ee85b1c ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5c8d4f42 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5ca7967a st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x777fc620 st_nci_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x77c41215 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8c0a583c ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xabd0ca94 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc60bd602 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc7e15afe st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x000ac5c9 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0bbfda1a st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x19966d62 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3b32cbb9 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x536fab1c st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x58cdac16 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5ea8a720 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6da8fd63 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x728118e9 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x746c4be6 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7749b999 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7e1381e4 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x851f93df st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8db023d4 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa3c7b243 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa6f63974 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc1875f90 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc6c8b669 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/ntb/ntb 0x8936c435 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x8ca0687e ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0xb5db7a2f ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xba421d06 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0xc6b05bbe ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xc9633466 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0xea9bf1f7 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xf3a94966 __ntb_register_client +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xbf52466b nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xec6daaa7 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0xdb6e5b0a devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x00da692d parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x045655de parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x10c4157d parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x1dafdb96 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x232830b6 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x2bda3b16 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x33e32cb5 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x3f20e274 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x40a32223 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x42a1351b parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x4c5dcdbf parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x54dd4a19 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x591f2f74 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x5981a684 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x5c2007ad parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x62ceff7b parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x67858a13 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x6b570d9a parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x79e4e11f parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x8037fcfb parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x88162085 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x911e3492 parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0x9e5f5a2e parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xa01b98a2 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0xa2779c31 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0xc0b56ccc parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xc353a39b parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xc3891aef parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0xd709074d __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0xd99738c3 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xda786039 parport_write +EXPORT_SYMBOL drivers/parport/parport 0xfeeadd4f parport_release +EXPORT_SYMBOL drivers/parport/parport_pc 0x01d2e122 parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xf98ffe61 parport_pc_probe_port +EXPORT_SYMBOL drivers/pci/host/pcie-iproc 0x5673d761 iproc_pcie_setup +EXPORT_SYMBOL drivers/pci/host/pcie-iproc 0xd76b6c5a iproc_pcie_remove +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x1683dba7 rproc_boot +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x4a980b00 rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x6bdf0ce8 rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xa931d6f0 rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xc31f53a8 rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xd2222007 rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xd5337d76 rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xdb031b11 rproc_get_by_phandle +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xdf5785f3 rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xf99c01c6 rproc_shutdown +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x5288ffa2 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x254fb09a scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xc04f12ba scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xc4a1afa2 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xdfb564dc scsi_esp_template +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1400d004 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x17699211 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1eab907d fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2a5357f2 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x319cab3c fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6cab4fdb fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6da4d432 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9d0574e4 fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa846d7d8 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc805e8e9 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd4d4124c fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xdbcca1aa fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x06ca172d fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0be1aec5 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0cc58896 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x14718517 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x19db9851 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1bd300d2 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x209f06f1 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x23710e1c fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x23be2f57 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2799bc36 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2b110724 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2be59ced fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2cd55081 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3aceeb11 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3ed15b95 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3ff965bc fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4933a59f fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4bbd3ff8 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4cb7fb3e fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4d862d7c fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x577b5ed5 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5c054f81 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x617dcc39 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6df4dec1 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6edcf11f fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6f6e9a7b fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x777c7737 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7c8f8d80 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x883673ee fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8a0d6b98 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8a8bcc4c fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8ab81dfb fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8f3d0d6b fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x90f44984 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9193752c fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x926ca39e fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x98be50a6 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9e59ca72 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa40d9efd fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa5663b8d fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb2599a82 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb894bfbf fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd0a5964c fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd3a03483 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd716dbf1 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd88369a5 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd9481456 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeead52c6 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf3839acb fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf8dcad6b fc_disc_init +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x05405bb9 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x6468798f sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x7d087d94 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xf95f7d83 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x9f4ad9c6 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x15adde2e osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x16208310 osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1a8c63bf osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x209fbc28 osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x25e59296 osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3a44be6f osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4cb2ed89 osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x62f35391 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6b0fdc84 osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6d20a1d5 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7682c2a7 osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x76fdc9e0 osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7aefca50 osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7d6b3c29 osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7d832ec6 osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x80aa2d4c osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8f41d1ad osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa1ae5eb6 osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa50c7e0d osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xac828ae0 osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xae95cbfd osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb7ab9213 osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb91db840 osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbb7a4fdb osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbfdd9afa osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc75f63fa osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcc252f46 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcccea8a5 osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd39adb94 osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdb81b884 osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdfdc1076 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe5ce5c81 osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xedafdcd5 osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf93e2c91 osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfd92e206 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xffb98ba8 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/osd 0x4683da55 osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x74e7de44 osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0x7e54bd8f osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0xe8c43b06 osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0xeec2e840 osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0xfddfeb0b osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x26ea5ccc qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x31100d3b qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x328cfc60 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xad20720e qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xbda6e92d qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xbe1e7cc7 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xbe4b737f qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcb170752 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xce16c76d qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xdf05f95f qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf5301542 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf9503e7b qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/raid_class 0x151b462b raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0x3f552b4c raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0x986396ad raid_component_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0cc49d6d fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0d15dd7c fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x223b1257 scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4002c201 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6f6cffa5 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x778bd3a1 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7d2900c3 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x85d77472 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb7188e50 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb7bb5406 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd6d6d0e8 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd992768b fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe8fa196d fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x05b55671 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0b24a9fa sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x11e1fb09 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x26e34ef3 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x30010248 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x39bf5bac sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x481b5498 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x497d9c0a sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x57fdf5e2 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x788da5ef sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7ab8b117 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9f29593f scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa30e0e12 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa33972e7 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xae27781e sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xae8f0ffd scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb18b0ab8 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb443e7a9 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbe53bb85 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc8166d29 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcf3e0a58 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd009d6c4 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdc8ac73d sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe0506069 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe56224aa sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe5a4b806 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xef86e5d7 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf47b3ce3 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xffa2d2d6 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x0e11e012 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x624a75a8 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x62c5bbc5 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x809f84e1 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xcb0347dd spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x12e489b8 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x37acfbbe srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x5f5c74bf srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xe143976e srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x2fdbb2df ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x3839e3e8 ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x67793c69 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x6ee534d0 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xa8b098eb ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xf83cf992 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xfb45d23a ufshcd_system_suspend +EXPORT_SYMBOL drivers/soc/qcom/smd 0x6b8bb219 qcom_smd_driver_register +EXPORT_SYMBOL drivers/soc/qcom/smd 0xeda44e54 qcom_smd_send +EXPORT_SYMBOL drivers/soc/qcom/smd 0xef60b38a qcom_smd_driver_unregister +EXPORT_SYMBOL drivers/soc/qcom/smd-rpm 0x2f5501c0 qcom_rpm_smd_write +EXPORT_SYMBOL drivers/soc/qcom/smem 0x5a710273 qcom_smem_get_free_space +EXPORT_SYMBOL drivers/soc/qcom/smem 0x63ef36e3 qcom_smem_alloc +EXPORT_SYMBOL drivers/soc/qcom/smem 0x932eb0e3 qcom_smem_get +EXPORT_SYMBOL drivers/ssb/ssb 0x0ccc8874 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x120af44b ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x14907238 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x1e568e55 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x3601c39d ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x3be030da ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x5fee53a6 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x6283ebad ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x67b0da7d ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x7ce35175 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x913807c6 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x9412761d ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xa70b73f4 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xaca35e36 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0xb6ea6253 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xdaac3159 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0xdcbf5f30 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xe0002cd7 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xe1e6b26e __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0xf8e93b68 ssb_clockspeed +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0aee6576 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0fd1690b fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1c7029f1 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1f1673a1 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x230410d6 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x35c1faad fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x38b49d6b fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x58738c86 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5a5105d6 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x70961501 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x79792ad7 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9e4e231a fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa6191690 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb710f74d fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc4e4ed28 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xca5349ed fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd26df791 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xde3f8c5e fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe3ecff00 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe49617d4 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeadc716a fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xede7298c fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfceafee8 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfd018f5a fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xb86b890e fwtty_port_get +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xd8e03c6e fwtty_port_put +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xf084c792 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x183aabca hmc5843_common_remove +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x89e19161 hmc5843_common_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xd16c5e70 hmc5843_common_resume +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xebde9eda hmc5843_common_suspend +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x24f77508 ade7854_remove +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x2692755b ade7854_probe +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0x6f790726 cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x4e3c9cb1 most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x01eddd09 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x04f6041f rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0b9cd234 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x24e9146e HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2b299554 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2c517aef rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2d1878b4 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x384c53cc rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3a07669d rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3d237fc5 Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x46e6a40f rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4c5d0892 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x51b4e9c4 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x56367f49 rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5b5e0a91 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x659090d9 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6affc0c5 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6e3105f3 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6f6710eb rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7089292f rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x76f173fd rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x84a8325a rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x84f97e06 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8dbb6ee4 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9585b897 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x95a16990 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa329c494 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xad78cae2 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb0c0647c rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbd40aa71 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe5c94be rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc572183a rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcee30b64 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcf266e7d rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd1bf86b3 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd73626d0 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd81985eb RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd8d71bd7 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xda36802b dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdaa604b4 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdb6fafd8 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe002bcd9 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe4c642fc rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe67dfe1c rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf4cc878d rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf57995ff rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf5c8421c rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf803afa7 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf8ec8fb6 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfdcc7252 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x041ee992 ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x10a7da1d ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x123cfc2d ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1581f7d6 Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x19f61df2 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x29dc112e ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2c422b5a ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x37e93e85 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3a40c8a7 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3d951ddd ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x444b5599 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x481d7ae4 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4f0f5441 IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x567a961d ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5bb6670a DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61fb6a3d ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6532efea Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6dadd2f7 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x72c0cb6c ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x732500c2 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7af9c64f ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8762513c DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x96cdedd2 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9a1ec9ae SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9a9bc2af ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9dcc4ada ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa41f821c ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb1218b6c ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb37dd276 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb79fcdbc ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbb231c06 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbc179b74 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbcd488a3 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbda4685f ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbeb3d99c ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc3a89061 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcda44ee6 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xce152621 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf4c2491 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd988447d Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdc49037d ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdd47203b ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdecf9842 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe30ca983 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe5464562 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe74e9f47 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe8c670ec ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xed9961ce ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xef096a16 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf088f9e7 ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf17bc4bd ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf284bf31 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf3a8709b ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfa62ba1f ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xffeb6ed8 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x00532f52 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x055472f3 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0dae4681 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0ff796a3 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2f064fe2 iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x31aedcab iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3235ffbe iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3547666e iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x370a72cb iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3ceee932 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3ef034dd iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x482c1ee9 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x53ce1301 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x61ef57d0 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x648ca4d5 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x66daabe8 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7c9b42d8 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x81972447 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9f1fe01c iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa58a51fe iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaf335d3b iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb139c977 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbb700c2f iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbd14bcf0 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc7f158db iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xce695376 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfce46721 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfdeffde2 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x043ba4f0 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x05cd0e3f __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x10e461a6 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x12972325 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x1754c8a0 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x1bc9c7f6 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x20f8ca29 target_put_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x2171c75f target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0x21bdae09 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x23c545f5 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x241e614f target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x27cd59f2 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x2de12f91 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x2e382108 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x3174a5d4 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x31b22073 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x373110f7 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x39ed1138 target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0x400a9eaa target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x404c79a3 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x5404bd3d sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x56a41228 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x57881f34 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x57e054b5 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x5b9e6b18 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x604a0923 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x66016074 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x6c1be0a8 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x73583365 target_get_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x8174a2c3 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x82671e63 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x84cbab29 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x88b19802 transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0x8e42ae74 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x923c0cdb sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x94b461b6 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9d74a5de sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x9f0a908d core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xa0b4f45b transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xa602b766 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0xa9c8990a transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xaa2ef95c target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xad867e28 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xb0a3fdcd transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xb2f3d54a transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xb3c8eea9 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xb4027781 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0xbba00b2a transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xc556492a target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xc78c37cd target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xcb5d381e target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xcc136b6e target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xd5c6f1ac core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xd7270dc0 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xd7277641 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd87eb229 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xdae866f6 target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xdf6a2bae transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xdff6f509 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xe1a77b01 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe438c2e6 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xe4cacbf8 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf0c4ac76 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0xf0d42416 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0xf2acaf73 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xf567b742 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xf5c24dd6 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xf6517453 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xf872bfa5 transport_init_session_tags +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xee1500b1 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x56f1e528 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xde201828 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x020f63b2 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2b24d85f usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x49c0db61 usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x59618a7a usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7150a84f usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7f9190e0 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8d197790 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb2abfcdf usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb48c2df8 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc8259459 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd913574d usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf0670561 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x49a98da0 usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x69a66b75 usb_serial_resume +EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user +EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x2e91ca97 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x367ce26a vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0x59f824d9 vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x7bda5e6d vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x821e9390 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x937e412c vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user +EXPORT_SYMBOL drivers/video/backlight/lcd 0x38b49618 lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x81f7c778 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x8be3cca0 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xab0b42fc devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x08cc2911 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0a5e2db4 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7321e5c5 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x96d04c47 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xa36f0633 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc85b2e09 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xfc3fd803 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x2f78fbe5 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x71d37295 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x6051f21e sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x6035ca1a cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xde206d16 mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x4ec00938 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xa7221dc1 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xc422a64d g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x125f1fbd DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x5f799362 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x7063bf78 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xb124764c matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xb6764b65 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x36444120 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x48df3370 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xb8af293b matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xbf383c8a matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xc5516ce4 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x825fd3b4 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xc909e152 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x07a31650 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x41f7da7a matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x4c00d7eb matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x807dac6b matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xa610607f matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0xa66b01f4 mb862xxfb_init_accel +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x1618bed3 w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x25dd31bf w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x2c9dbd6f w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xf2ce9350 w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x2406d401 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x9b547eb3 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x5e98963c w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x842f751c w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0x00708233 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0x42f6bc1a w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x94da4dc0 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xbe5637bb w1_add_master_device +EXPORT_SYMBOL fs/configfs/configfs 0x05ff8d88 configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0x1cadb62e configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x1e7b9a8a config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x2a702015 configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0x30cc25d5 configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0x34bea5d1 configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0x428804c1 config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x4fdf250d config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0x68e68da0 config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0x693134d1 configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x74958d33 configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0xd2a7f61a config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0xe4132d8f config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0xf5cdb856 config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0xfede5146 configfs_unregister_default_group +EXPORT_SYMBOL fs/exofs/libore 0x01386c00 ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0x079e28b9 ore_write +EXPORT_SYMBOL fs/exofs/libore 0x14e58ff5 ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x3cb01434 extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x4da98c24 ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0xa20061f8 ore_remove +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xa8c5ec22 ore_create +EXPORT_SYMBOL fs/exofs/libore 0xb59dd021 ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0xb8b5cf70 ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0xbb08fc46 ore_read +EXPORT_SYMBOL fs/fscache/fscache 0x0347c993 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x05ae7775 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x086d1a1a __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x093e1f05 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x10163241 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x12a6d75e __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x248c5365 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x24f7f6be __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x25631afd fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x377c8c47 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x39f8ceff __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x3fffb606 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x4250308c fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x456f6aaf __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x480855e3 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x4e402319 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x545e39b9 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x54886285 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x6b08d316 fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x71dcf11b fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x71df2f9b __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x7905623f fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x7b2e54e8 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x7b520f8d fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x808a5ccd __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x88819c7d __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x9c099405 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0xab3ee03f __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xb86cc703 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0xbaa3f49b fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0xc463d75b __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xc4abeeec fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0xc8a3ba0e fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0xcc3c6161 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0xe91cdb47 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xf03681af __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xf60e164b fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0xfdcc9865 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0xffce5fde fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0xffea9cde __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x1b708e28 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x305ab4c1 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x3dbdc8c5 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xc1ab07b1 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xcbc7ef53 qtree_write_dquot +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-ccitt 0x3771b461 crc_ccitt +EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc-itu-t 0xf5b4a948 crc_itu_t +EXPORT_SYMBOL lib/crc7 0x66213969 crc7_be +EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc8 0x41248eaf crc8 +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c +EXPORT_SYMBOL lib/lru_cache 0x03f599c7 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0x22ee90d9 lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0x4feade4b lc_create +EXPORT_SYMBOL lib/lru_cache 0x56fc3ea0 lc_put +EXPORT_SYMBOL lib/lru_cache 0x619ed575 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x84e0214b lc_committed +EXPORT_SYMBOL lib/lru_cache 0xb673970e lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0xbbe7c23c lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0xc48fa976 lc_set +EXPORT_SYMBOL lib/lru_cache 0xc6e4cd46 lc_reset +EXPORT_SYMBOL lib/lru_cache 0xcb990a55 lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xcea6747e lc_destroy +EXPORT_SYMBOL lib/lru_cache 0xd212c9f0 lc_get +EXPORT_SYMBOL lib/lru_cache 0xeb13128b lc_del +EXPORT_SYMBOL lib/lru_cache 0xf460a486 lc_is_used +EXPORT_SYMBOL lib/lru_cache 0xf5ea5f5c lc_index_of +EXPORT_SYMBOL lib/lru_cache 0xf6acec20 lc_find +EXPORT_SYMBOL lib/lz4/lz4_compress 0xcbc5d521 lz4_compress +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x26c3aa22 lz4hc_compress +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul +EXPORT_SYMBOL net/6lowpan/6lowpan 0x47b757a2 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x82acb7be lowpan_netdev_setup +EXPORT_SYMBOL net/6lowpan/6lowpan 0x916f9125 lowpan_nhc_del +EXPORT_SYMBOL net/802/p8022 0xd06f9f28 register_8022_client +EXPORT_SYMBOL net/802/p8022 0xeafd816e unregister_8022_client +EXPORT_SYMBOL net/802/p8023 0x1c4a33f3 make_8023_client +EXPORT_SYMBOL net/802/p8023 0x8739cdf9 destroy_8023_client +EXPORT_SYMBOL net/802/psnap 0x0906b9bb unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0x813ae009 register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x055ca679 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x0d8ed6f6 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x18d076cd p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x29cbf4bd v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x2b446276 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x30e3d642 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x35a82660 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x375fbdfc p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x3a6cac4a p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x3d3747a5 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x407cf23f p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x4435bb40 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x44b919bf p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x45946329 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x52a2b953 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x53307357 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x533a7da3 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x5fe65717 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x62400f0d p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x6e7b78d0 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x737a251c p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x7cdbb1b2 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x7f495da2 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x8dde8d7d p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x8fad9a5b p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x8fc9109b p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x999ee01c v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x9ce58e4f p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x9dc5993c p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xa800bee0 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xaa4b4192 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xafe40697 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xb43a917a p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0xb5b5d2a1 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xb83e3ba0 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xb877a86a p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0xbdef93e1 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xd2b50920 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xd605f6ef p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0xde54e2dc p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xfa50b4da p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x4784c80e atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x9736a8df aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xef5c84e2 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xfa890169 alloc_ltalkdev +EXPORT_SYMBOL net/atm/atm 0x04f5e98a atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x1d592aed atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x1e721e99 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x2ec1cdbf atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x6f716014 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x88274872 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x8daa3356 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x93fe73fb vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x95072a21 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x9e85f3db atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xa8300ad7 atm_charge +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xca15e3c2 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xe10d8865 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0xf1774b53 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x3b76aebd ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x503368a4 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x7829156e ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x89291213 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0xb3211ba2 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xde699d11 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0xeb63ee44 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0xeb865cdb ax25_send_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x003191e7 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x041a4dc5 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x06784174 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0c9ec97b hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0e514423 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0fb0e6cd bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0fd71703 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2773d24e hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2a242e9b __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2b28d64d hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3055781d bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3d07f04a bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x52fe6365 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x624514ff hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x67b5dbb4 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6cb97509 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7e6f0012 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x88462725 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9b23f14a hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9d0f507e bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa2efdd94 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0614619 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb1153fbf bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb60574b7 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbaf81e41 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbc0ee21d l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc142958f hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc1946344 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc87aeeee hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc897263e hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc94a9b6f l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcfbebd90 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd1f2a35d bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdbdfff8c l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdc304a40 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe0fe1341 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0xefd0802c bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf7b7a917 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfc94cc1c hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfcf14869 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfea2739f bt_sock_wait_state +EXPORT_SYMBOL net/bridge/bridge 0x47262f14 br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x6fe8ed1b ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xc5d6fa90 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xe2fb03a6 ebt_register_table +EXPORT_SYMBOL net/caif/caif 0x04d5a824 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info +EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x95cee590 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xb05a56c8 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xce35a4f8 caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0xf9cff536 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/can/can 0x37bea197 can_proto_unregister +EXPORT_SYMBOL net/can/can 0x3f380841 can_rx_unregister +EXPORT_SYMBOL net/can/can 0x425e63e7 can_proto_register +EXPORT_SYMBOL net/can/can 0x60919fcd can_ioctl +EXPORT_SYMBOL net/can/can 0x83076f38 can_send +EXPORT_SYMBOL net/can/can 0xae44940d can_rx_register +EXPORT_SYMBOL net/ceph/libceph 0x00a5d9b1 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x0281b4fe ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x072f3087 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0bc510c9 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x0d6113e0 ceph_monc_request_next_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x0fa5eda7 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x18077a3d ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x1af9dc5b ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x1f558184 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x20b126d2 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x21a83e30 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x2c9d1c24 ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x31a69789 ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0x34731276 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x35366279 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x38279a96 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x39c78c66 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x39cb0c19 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3d0dd31c osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0x416cb29e ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x41704f93 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x43caf840 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part +EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x478700b9 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x47a9920e ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x49a0442d ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x4b504810 ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x4c33f64b ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0x4d9a62f1 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x531286aa ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x569ba3c5 ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5b23fac6 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x60fe37db ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x61643c2b ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x67f06737 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x68ef6a32 ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x6a5463ef ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6bd4fbfc ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x73fab509 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x75cbb1ee ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x75e544cb ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x799cf782 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x82b4294f ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x8814ccd2 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x8872dc00 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x8d096c2d ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x8d34f552 ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0x8d85df49 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x915e47f0 ceph_oloc_oid_to_pg +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9b622c42 osd_req_op_cls_response_data +EXPORT_SYMBOL net/ceph/libceph 0x9b998a22 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x9d8d26f7 ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0x9f43facb ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0x9f5ecbed ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xa1ebde8f ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xa6a9a4f1 ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0xa9f25a84 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xaa9b73ff ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xafacffe7 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb19dc152 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xb4947fe3 ceph_monc_do_get_version +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6039791 ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xb727973b ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xbc1dedfa ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xbdf68690 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xbe1c1706 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xbec523c0 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0xc092a353 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xc24c4c59 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xc41438f7 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xcc01d384 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xcc55c820 ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0xcd29b118 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0xcddb4d9b osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd5383217 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xd813625e ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xdad44647 ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0xdb9477cb ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0xdd4793b6 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xde0eb6ba ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0xe170013c ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xe3ea89bb osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xe55d9bcd ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0xeacb10df osd_req_op_watch_init +EXPORT_SYMBOL net/ceph/libceph 0xeb36a695 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xeee16dec ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xf3c54412 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0xf477d116 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xff34c2c5 ceph_alloc_page_vector +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x82f55be5 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xee0987ea dccp_req_err +EXPORT_SYMBOL net/ieee802154/ieee802154 0x2676a958 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x29fd1b31 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x56cd6f44 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x6eba1238 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x999349a3 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xb01bbe4c wpan_phy_find +EXPORT_SYMBOL net/ipv4/fou 0x057a5b13 gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0x0c07b4a3 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x8319e9b0 fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xed741d6f gue_encap_hlen +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x1ba3de5c ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x2d0d3e87 ip_tunnel_encap +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x94dcca57 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xb08f23ec ip_tunnel_dst_reset_all +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xe6de4d3b ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xed9f10f6 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x56a8c625 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xbee2a77e arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xd3cc573f arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x233d47c3 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x6208b4cd ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x6ca4daf1 ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x339b2fbe xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0x47654a50 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x0964ae38 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0c1e15b0 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x53942a6b ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5829134f ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf863fb7f ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x5751acf2 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x9526b6f6 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xf6ae4362 ip6t_do_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x2b67bffe xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0x5ca714f8 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x140b36e1 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x7a249463 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x2a0f170a ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x2f7f5337 ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x43856446 ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x6f7431ba ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x703d652f ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x916dbbd4 ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xa859fee3 ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xcec2c8ef ircomm_connect_request +EXPORT_SYMBOL net/irda/irda 0x0004ca00 irttp_data_request +EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value +EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service +EXPORT_SYMBOL net/irda/irda 0x17a491c5 irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0x1ad09295 iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0x25e138c6 alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0x2aa3b4ea irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0x2c4bd36b irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x36cad55b hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0x37791344 hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0x432ef77c irttp_dup +EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value +EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service +EXPORT_SYMBOL net/irda/irda 0x48560905 irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0x5bbade9e irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0x6492e28c hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x6b76aa70 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0x6e83d591 irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x731cec71 hashbin_insert +EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client +EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client +EXPORT_SYMBOL net/irda/irda 0x7e67ca6e irias_new_object +EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x8982c8d9 irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x8a44dd5e hashbin_new +EXPORT_SYMBOL net/irda/irda 0x90ddb6bd hashbin_remove +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x9240cec1 irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0x97703750 irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0x9c1ddc5d irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0x9ffda243 irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0xa599dab4 async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0xaf6cdd3f irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0xb3c13d7f irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value +EXPORT_SYMBOL net/irda/irda 0xbca106b3 irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute +EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request +EXPORT_SYMBOL net/irda/irda 0xbf7dd554 hashbin_find +EXPORT_SYMBOL net/irda/irda 0xbfa7c08d hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0xc477368d irias_find_object +EXPORT_SYMBOL net/irda/irda 0xcab4f7b9 irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0xccc16d6e iriap_open +EXPORT_SYMBOL net/irda/irda 0xce9f5a43 irda_notify_init +EXPORT_SYMBOL net/irda/irda 0xcf479c73 iriap_close +EXPORT_SYMBOL net/irda/irda 0xd6936448 irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0xd946356e irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0xda15dcc3 irlap_close +EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0xe7c7dd3a irlap_open +EXPORT_SYMBOL net/irda/irda 0xe85d365d irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0xe8b37c58 async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0xf199cba4 irias_insert_object +EXPORT_SYMBOL net/l2tp/l2tp_core 0x27faeaa5 l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0x93d28364 l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x0b8e62f3 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x0c7fb1e4 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x1549076f lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x581eb052 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x82944c84 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x94e94e47 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xc73edf5a lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0xe3aea6bf lapb_register +EXPORT_SYMBOL net/llc/llc 0x112204b4 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x475128e3 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x5a3bc99d llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0xb04b262d llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xb47ffe83 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0xbfebe7b8 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xcc6a1c10 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/mac80211/mac80211 0x02166686 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x0fac5394 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x165280e7 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x1692bce3 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x16ea7fc6 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x1b1dba57 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x20794943 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x23605fef ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x28331126 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x29ef4249 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x2e264680 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x30f27908 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x31df9944 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x361bdd2d ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x36fabdd8 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x3738d8ef ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x393c7317 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x3cc12398 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x3f254ea1 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x43169924 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x44772eb3 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x51eaf728 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x57b25cc8 ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x5cea9b1e ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x5e6e0256 ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x5efcb424 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x61788bc3 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x6192bd1a ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x65fe5f77 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x69de096c ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x6a6f2f21 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x6ce8f959 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x6d7a74eb ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x72009e6a ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x738fcacd ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x76b9ef28 ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x7a45cea4 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x7f63a3f7 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x8069d63c ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x8430cd4b ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x85d589ab __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x8bbe4050 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x8bd52b67 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x9574a745 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0x9b28c06c ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x9c068326 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x9dd5d591 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x9e3ee521 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x9e8c6475 ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0xa4365677 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0xa453fa6a ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xa45c4e8e ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xa98b92f1 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xa9dbf05c ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0xabb34546 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xac2709f9 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xb1aaef91 ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xb37174c0 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xb37fa148 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0xb469eb82 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xb862395e ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xbd046ace rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xbf4952ae ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xc0150d1d __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xc479a106 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xc88d30a9 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xd0dd8b8a ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0xd5d8f4ec ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xd830ec8c ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xdbe707ac ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xe4e95f20 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xec541efe ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xef0408a8 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xf02c143a ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xf2bf216b ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xf3da1f6c ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xf6634f0c ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xf74fef91 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xfd13e017 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xfe43f46f ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0xfed1869d ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0xfeed3dca ieee80211_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x099ea108 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x10736679 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x449a2dc5 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x673b8fa3 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x6b642e39 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x6f848224 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xdf1f86df ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0xe948f72c ieee802154_alloc_hw +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x13da0c02 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x17e690e7 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x368669e5 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4e073688 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x60d1eded register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7895941e register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x95a1f551 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9a1a0599 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa4bca752 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb398748f register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbbf17719 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc38bc0ee ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf35dd131 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf675bd96 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x4cd2ec76 __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x724973e5 nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x90625478 __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x4f34a759 nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/nf_nat 0x5a7a1c23 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x603d5e6c nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x94dec02d nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0xc63f892c nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xd768616f nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/x_tables 0x16ea6dc7 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x4078b8c5 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x4b64526c xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x5f887eff xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x72464735 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xa9d1dda8 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xb4716354 xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0xd24d383f xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xf57d07ad xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0xf5b561d3 xt_unregister_match +EXPORT_SYMBOL net/nfc/hci/hci 0x0322ba73 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x1a8b070a nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x20fd912f nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x264095ff nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x3ba1afa1 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x40534fe1 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x42b88ddb nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x48116917 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x7edf4944 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x830c42b1 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x91cb7286 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0xa33c9d1c nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0xbbe2c2e5 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xc1abf73c nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0xcbe9229c nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0xd0d92c7c nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0xe1461c02 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0xe151f2d0 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0xef0b4a06 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xf193c704 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0xf4b9591f nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x09ad255d nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x0b95f36d nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x11b440f4 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x1af8324f nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x2e159fba nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x2ec065c8 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x30558594 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x40a5dc4c nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x415e40b4 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x483dccd3 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x677dbc91 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x6eff3ed9 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x9272e604 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x96e678f6 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x9806d892 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x9deabe55 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x9f238204 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0xaa1c08fd nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xb0d63cb4 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xc0671e8c nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xc11d1a99 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0xc2028c61 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0xcde82906 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0xd0ee5038 nci_get_conn_info_by_id +EXPORT_SYMBOL net/nfc/nci/nci 0xdde88159 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xe2d72040 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0xe4163f0b nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0xfdd68350 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nfc 0x09ebe29d nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x11955cbc nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x1657f5e5 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x2b2a1b63 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x300bc3e2 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x3df4edc5 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x3f682aaa __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x47388a31 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x4834de19 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x5f519eb1 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x686e9eae nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x7485dc78 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x769061e2 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x78ca9ec7 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x9ecb1952 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0xa618bdd1 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xb60e6a07 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xc5e6ca35 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xd57212ac nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xda3fb517 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xdc5cf522 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0xea8f7c0b nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xee6b9e52 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xfd23157a nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc_digital 0x3cb4e6b0 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x72571f18 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xe76a73fb nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xf288e2e8 nfc_digital_free_device +EXPORT_SYMBOL net/phonet/phonet 0x0be8f34e phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x1900be39 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x20fa8ee3 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x49cca74e pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x57c75df9 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0xa43f6997 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0xb52de437 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xd5128a58 phonet_header_ops +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x06e46571 rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x06f8e617 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x383c23c9 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4b373110 rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x565eb21b rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x5a49eba4 rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x742d00cf rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x7b9c15e8 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8882ead2 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8c4bc8ee rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x99c9a928 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc4a7939c rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe627f7f6 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xea5e4157 rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf0e835d9 key_type_rxrpc +EXPORT_SYMBOL net/sctp/sctp 0x1acd03b1 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x07aa2bfe gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xc5d3689a gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xd2e245da gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x03488738 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x3478777e xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0x7abe5dae xdr_restrict_buflen +EXPORT_SYMBOL net/wimax/wimax 0x015b33f8 wimax_rfkill +EXPORT_SYMBOL net/wimax/wimax 0x93da446f wimax_reset +EXPORT_SYMBOL net/wireless/cfg80211 0x0200bdb0 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x08191563 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x08e6b220 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0a38660a cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x0c404a89 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x10f92da6 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x14bcb052 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x15120103 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x1a6f4e94 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x1c52cad3 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x21fff31c cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x22c87551 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x23e14a49 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x2636dc50 cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x26ed7f34 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x2bdc314c cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x2d18dfb8 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x2d5aed80 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x319af015 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x3af7c677 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x3b435bb1 ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x3daf8f66 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x3f5da723 cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0x42291517 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x43aa9f08 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x441657aa __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x468c49e9 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x491bc520 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x5ec5a01e __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x61258041 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x61f32ad1 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6a3f0ecc ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x6b1eeccb cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x6c404946 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x6c83a091 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x6da934b4 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x80d858b8 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x8408738d cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x8512e4c8 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x89093c9d cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x8ac9a636 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x8ba831c8 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x907b5db9 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x923ce32c cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x9325c3df freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x9474b1c2 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x966ff54d ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x96978e4f cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x985f7416 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x9c5412fe cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x9cbfdb43 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xa1425906 ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xa2dac44e ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xa8d7d7f5 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0xaeac2494 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xb13835ec wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0xb2169f02 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0xb9c00976 regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xbc478a77 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0xbdeff2af cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xc01c285a cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xca9b6f05 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xcd067995 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0xcd29b758 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xcdd039d9 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdc624fcc wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xdf8bb0ab cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xe078216e cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xe1a61ca1 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0xe1e2c5a8 wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0xe3cc8a7e cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe46790f7 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe6a583f0 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xea89defd cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0xeb38d2ed cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xeb6d7c6c ieee80211_ie_split +EXPORT_SYMBOL net/wireless/cfg80211 0xedbd19b6 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xee096893 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xef8ddc24 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xf5189672 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xf58679c5 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xf5fbba6f cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0xf682ca2f cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0xf763ddbf cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xfd4843c5 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/lib80211 0x48d977b1 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x691b7fe5 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x760a44fc lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x7617d7f3 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x7d98e108 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xb4c57bf2 lib80211_crypt_info_free +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xe63d1870 snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x09b18dbe snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1f2fd4e5 snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x25b3947a snd_seq_kernel_client_enqueue_blocking +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x55f5fbad snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x9e3d824e snd_seq_device_new +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x127b30fb snd_midi_event_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x1cdc0812 snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x59eb74ae snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x8102ed2f snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xb11ba32d snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xb2c7f684 snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xea0e5748 snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xed42580b snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x5d00a803 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd-hwdep 0x81867e51 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x085cc5fb snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x185639a6 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1a0d3127 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x30c3748c snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x32725f40 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3af630e6 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6e7cb107 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x725393d1 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7286afcd snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x73837f9f snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x89520e1c snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x915856b3 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9f27c123 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb6f5b238 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbbbe6fd5 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbe872fba snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc15c730a snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd1abd68d snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xea3d1dad snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x624bea4a snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x09177441 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x0d9626da snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x229b7436 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x2b79703c snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x34928891 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x52d0679f snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x549a6578 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7517feb2 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf8d3a56d snd_opl3_init +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x02baf1c6 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3f83aae9 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x52670dcc snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x714c831a snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x72070534 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8ad70471 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x95fe5218 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc67763f3 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd92ceabc snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1991870d amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1b4b83a0 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2ece502d amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x386c0e3d snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3f689d6b snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x410e28e1 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4ece2401 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x51d44e96 amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53751a27 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x59572be6 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x63651f73 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6af3588a cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x718fad31 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7caccb10 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x81e54492 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x85a343ca cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8d810c23 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x906db1cf fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x94b349fd avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9da9f11f cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9f701fd5 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa69de865 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xab3eef17 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xacc49fd4 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc636a42e amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc7bb0d22 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcbd902ca fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcd243cfe amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe229caf9 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe79f760e fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf7cddc3a cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf8d6f3ff fw_iso_resources_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x2e2be60a snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xacc05d4f snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x370932d3 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x812ef63e snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa13593f9 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa768f863 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb3dd3a49 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xda8cdb83 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xde0cc3f2 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf287da0c snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x30f6974c snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x3d6319bb snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x866736c6 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xd7071a61 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x47be92d2 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xa68577dd snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x2144292f snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x490c17ef snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x8eb0b585 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xb48da292 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xc5efb968 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xe8147d18 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-i2c 0x19aaf768 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x230ab8ac snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0x34b8dbc0 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0x3bad3f9e snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x9733a981 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xec5d117f snd_i2c_readbytes +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x25397fa2 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3c375ea1 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x491fce53 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x51b18cc0 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5935365b snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7d52f19b snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x874c7f1d snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9bb8eddd snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9f980765 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa241fa76 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa8f0081b snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc073f3f1 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd09271b8 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd5f46ac2 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdca58af7 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe259f03e snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf5e786a1 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x0e48a6e8 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1e4be959 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x398cbc5e snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x48eda683 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x545fd99a snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x613f6b87 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7bf9d917 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xcf352cae snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xddba1152 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x3bb33d1f snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x5656f21f snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xf3a0b6a5 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x03a6a02f oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x08df4e3d oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0f7b5b4c oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x159ff3bb oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1f0f05a6 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2656eac2 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2eb9262a oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x33321a10 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3d55358b oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x421a72b4 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x48af1d1d oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4b0af003 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x58667e49 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6ffececb oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7abdfe22 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9025aae1 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa17c1237 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xacec84e6 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb4029af1 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbbdda46a oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdf111df9 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x88b627ca snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x8fd96b24 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xa77557e1 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xd37a9eb0 snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xd8ea92ef snd_trident_write_voice_regs +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x2c2c6ca8 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xee99e5be tlv320aic23_probe +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x1b50f931 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x53e56f7d snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x8ea75246 snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xa85591cb snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xf796778f snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xff4427d6 snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/snd-util-mem 0x00df2f56 snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x157a2487 __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x44787729 snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0x7b9c2a34 __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x859edcff snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xa82e93c5 snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0xbcb8a4fb __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xc1a8f72d snd_util_memhdr_free +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x02cc8b3e snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL vmlinux 0x00148097 bio_endio +EXPORT_SYMBOL vmlinux 0x001ecd11 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x002989f4 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x002af2ee pcie_get_mps +EXPORT_SYMBOL vmlinux 0x003ada97 request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x005a2f1a redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x005e5ab4 nf_unregister_hook +EXPORT_SYMBOL vmlinux 0x00634729 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x00696c7f __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x008584b2 of_find_property +EXPORT_SYMBOL vmlinux 0x0089d4b1 __frontswap_load +EXPORT_SYMBOL vmlinux 0x008eb47e sk_dst_check +EXPORT_SYMBOL vmlinux 0x009d84fb mount_ns +EXPORT_SYMBOL vmlinux 0x009e2567 dev_add_pack +EXPORT_SYMBOL vmlinux 0x00ce497c scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00f06d13 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x00fa7e0a neigh_direct_output +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr +EXPORT_SYMBOL vmlinux 0x011a9e53 elf_hwcap2 +EXPORT_SYMBOL vmlinux 0x013e0a75 of_get_min_tck +EXPORT_SYMBOL vmlinux 0x01670977 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer +EXPORT_SYMBOL vmlinux 0x016ff440 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x017d3890 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x017d922b scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0x0186e2de smp_call_function_many +EXPORT_SYMBOL vmlinux 0x01a3d310 omap_set_dma_channel_mode +EXPORT_SYMBOL vmlinux 0x01ac60fd bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0x01b604f9 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x01b7fd59 dispc_read_irqstatus +EXPORT_SYMBOL vmlinux 0x01d0286c netif_napi_del +EXPORT_SYMBOL vmlinux 0x01d1d07d key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x01dad93d nand_unlock +EXPORT_SYMBOL vmlinux 0x01e31149 dquot_drop +EXPORT_SYMBOL vmlinux 0x01ea132e dispc_runtime_put +EXPORT_SYMBOL vmlinux 0x01eebf2f param_ops_charp +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x02196324 __aeabi_idiv +EXPORT_SYMBOL vmlinux 0x022667d8 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x023eb724 security_path_mknod +EXPORT_SYMBOL vmlinux 0x024f3cb8 fb_set_var +EXPORT_SYMBOL vmlinux 0x02573b36 omap_disable_dma_irq +EXPORT_SYMBOL vmlinux 0x02627eb3 of_gpio_simple_xlate +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x027920a1 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x0280e683 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL vmlinux 0x02883a30 pci_request_region +EXPORT_SYMBOL vmlinux 0x02a0c18a __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact +EXPORT_SYMBOL vmlinux 0x02ef742b percpu_counter_set +EXPORT_SYMBOL vmlinux 0x02fbe43f bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0x03005606 omapdss_get_version +EXPORT_SYMBOL vmlinux 0x03013ded blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x03026722 mempool_alloc +EXPORT_SYMBOL vmlinux 0x0316fdaa lookup_bdev +EXPORT_SYMBOL vmlinux 0x033199db inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x03362637 phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0x03547c5f audit_log_start +EXPORT_SYMBOL vmlinux 0x035818c7 security_path_symlink +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x036819ca of_phy_find_device +EXPORT_SYMBOL vmlinux 0x036e28c5 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x03709c21 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x0385c8e2 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x03900728 snd_timer_global_new +EXPORT_SYMBOL vmlinux 0x03937301 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x03a8a092 iunique +EXPORT_SYMBOL vmlinux 0x03a8a482 elevator_change +EXPORT_SYMBOL vmlinux 0x03ba39b0 v7_flush_user_cache_all +EXPORT_SYMBOL vmlinux 0x03ea27fe ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x03f99288 skb_split +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x0412f5c7 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x0415c2ca nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0x04190126 netdev_crit +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x0435d572 amba_find_device +EXPORT_SYMBOL vmlinux 0x043adeaa gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x046cfde5 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x0488bcc3 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x048d1b9f phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x04a1a942 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0x04a6adc5 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x04afd4fb release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x04c451a4 tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0x04cda566 snd_interval_refine +EXPORT_SYMBOL vmlinux 0x04d567e9 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x04d99cc7 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x04e037f2 mmc_start_req +EXPORT_SYMBOL vmlinux 0x04e56db9 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04ec64b7 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0x04ee4c61 snd_pcm_set_sync +EXPORT_SYMBOL vmlinux 0x04f9a5c6 i2c_master_recv +EXPORT_SYMBOL vmlinux 0x05004223 unload_nls +EXPORT_SYMBOL vmlinux 0x051a3e06 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x0529fe55 pagecache_write_end +EXPORT_SYMBOL vmlinux 0x053123e5 textsearch_unregister +EXPORT_SYMBOL vmlinux 0x054b7798 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x055c5ddf __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x055dcaa2 of_device_unregister +EXPORT_SYMBOL vmlinux 0x0569d369 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x057f6c6b pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x05a19f0c nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0x05a28065 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x05b1d3e5 scsi_device_put +EXPORT_SYMBOL vmlinux 0x05f1ef3f __scm_send +EXPORT_SYMBOL vmlinux 0x05f566e7 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x05f8791d sk_reset_timer +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x0629f6dd md_register_thread +EXPORT_SYMBOL vmlinux 0x062ce5b8 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x0639347e flow_cache_fini +EXPORT_SYMBOL vmlinux 0x0649094a blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x064ef694 copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x065f2374 omapdss_default_get_resolution +EXPORT_SYMBOL vmlinux 0x06607f92 dss_feat_get_supported_outputs +EXPORT_SYMBOL vmlinux 0x067beec6 seq_printf +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x069d862f __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x069dccb2 of_mdio_parse_addr +EXPORT_SYMBOL vmlinux 0x069e7404 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL vmlinux 0x06ab6667 input_register_handler +EXPORT_SYMBOL vmlinux 0x06e88eb9 iterate_mounts +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x0700e334 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x0701f2ac xfrm_register_type +EXPORT_SYMBOL vmlinux 0x0708acfa jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x072fcdce snd_ctl_boolean_stereo_info +EXPORT_SYMBOL vmlinux 0x073ff079 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0x076b2dc3 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x07759bc9 kmap_high +EXPORT_SYMBOL vmlinux 0x0783162b neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07c9eea3 netdev_update_features +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07cf9099 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x0800e9d6 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x08023c4b md_error +EXPORT_SYMBOL vmlinux 0x08029de1 scmd_printk +EXPORT_SYMBOL vmlinux 0x0802f3a7 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x081f3afb complete_all +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x082f8221 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x084983e6 ps2_drain +EXPORT_SYMBOL vmlinux 0x085470a6 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x085e4715 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x088a26b6 devm_memunmap +EXPORT_SYMBOL vmlinux 0x08ad6c7d jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x08ae047c omapdss_output_unset_device +EXPORT_SYMBOL vmlinux 0x08d8b6cc skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x08fcf3a1 d_splice_alias +EXPORT_SYMBOL vmlinux 0x09018cc9 lock_fb_info +EXPORT_SYMBOL vmlinux 0x0933a2ee snd_timer_pause +EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key +EXPORT_SYMBOL vmlinux 0x0960be97 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x09729c41 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x097ec1ff _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x0982551c nla_put +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x09c0a74f vme_irq_handler +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09cf1b46 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09df7c6d d_path +EXPORT_SYMBOL vmlinux 0x09fc8091 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x0a0786de udplite_table +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr +EXPORT_SYMBOL vmlinux 0x0a33f164 passthru_features_check +EXPORT_SYMBOL vmlinux 0x0a373226 crc32_le_shift +EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell +EXPORT_SYMBOL vmlinux 0x0a6b4036 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x0a7596b5 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x0a7b8423 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0x0a7bbefd pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0ac08b33 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x0ac32dcc ___pskb_trim +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ad7c0ce memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x0adb2285 nvm_submit_io +EXPORT_SYMBOL vmlinux 0x0b0080d8 flow_cache_lookup +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b2d425c of_node_put +EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b5efe3c save_mount_options +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0ba92431 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x0bad26c4 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bc5b27f snd_ctl_add +EXPORT_SYMBOL vmlinux 0x0bcfc771 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x0bdb02a5 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x0c14d3d5 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0x0c38cd41 mount_pseudo +EXPORT_SYMBOL vmlinux 0x0c38f861 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x0c3e81b7 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c549551 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x0c58130f pci_iomap_range +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c594bf7 write_cache_pages +EXPORT_SYMBOL vmlinux 0x0c85fd58 nd_device_register +EXPORT_SYMBOL vmlinux 0x0c884c55 pci_dev_put +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0ca54fee _test_and_set_bit +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0ce1ec47 xattr_full_name +EXPORT_SYMBOL vmlinux 0x0ce78030 dump_emit +EXPORT_SYMBOL vmlinux 0x0cf19975 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x0cf85302 netdev_state_change +EXPORT_SYMBOL vmlinux 0x0cfefe1e percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x0d1d824b remap_pfn_range +EXPORT_SYMBOL vmlinux 0x0d3f57a2 _find_next_bit_le +EXPORT_SYMBOL vmlinux 0x0d4d7a32 _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d5636de blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d7797c2 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL vmlinux 0x0d85c0f8 block_truncate_page +EXPORT_SYMBOL vmlinux 0x0d87d3ee d_rehash +EXPORT_SYMBOL vmlinux 0x0d98e829 may_umount +EXPORT_SYMBOL vmlinux 0x0d9f617b scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0db9f160 free_buffer_head +EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex +EXPORT_SYMBOL vmlinux 0x0df49381 tty_register_driver +EXPORT_SYMBOL vmlinux 0x0df545f7 dst_discard_out +EXPORT_SYMBOL vmlinux 0x0dfdd052 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x0e05bf12 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x0e073542 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x0e0a3e8c devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e7566a1 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x0e778918 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x0ea5743b bio_phys_segments +EXPORT_SYMBOL vmlinux 0x0ea60522 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x0eaf451e hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0ec590ef __inet_hash +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f097c5e pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x0f36b3b3 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f4f91a5 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x0f5a5c8b of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x0f5fc9fb get_tz_trend +EXPORT_SYMBOL vmlinux 0x0f666961 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x0f667836 skb_seq_read +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f7e3b0e try_module_get +EXPORT_SYMBOL vmlinux 0x0f848910 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x0fa2a45e __memzero +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb13362 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fbf369d blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x0fd55ad2 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x0fdf485e nand_scan_tail +EXPORT_SYMBOL vmlinux 0x0ff178f6 __aeabi_idivmod +EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress +EXPORT_SYMBOL vmlinux 0x101d648f dentry_path_raw +EXPORT_SYMBOL vmlinux 0x10418c28 sock_no_connect +EXPORT_SYMBOL vmlinux 0x1069c035 of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0x106c2615 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user +EXPORT_SYMBOL vmlinux 0x1075fa06 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x109c97b6 generic_file_open +EXPORT_SYMBOL vmlinux 0x10a128e9 snd_pcm_period_elapsed +EXPORT_SYMBOL vmlinux 0x10ae62e6 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x10b66907 backlight_device_register +EXPORT_SYMBOL vmlinux 0x10e83136 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x110647a3 generic_permission +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x11145431 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x1146ba7d neigh_destroy +EXPORT_SYMBOL vmlinux 0x11599a1d account_page_redirty +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x116e57b5 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x1176bd7f file_update_time +EXPORT_SYMBOL vmlinux 0x1188cfdb xfrm_register_mode +EXPORT_SYMBOL vmlinux 0x119b50e7 elf_check_arch +EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x11bdb55b dmam_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0x11e73286 snd_pcm_lib_readv +EXPORT_SYMBOL vmlinux 0x11edfc52 of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x121b4e4b memremap +EXPORT_SYMBOL vmlinux 0x12352666 complete_request_key +EXPORT_SYMBOL vmlinux 0x12366901 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x125af295 d_invalidate +EXPORT_SYMBOL vmlinux 0x1298459d splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x1299449c pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12c7176d netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc +EXPORT_SYMBOL vmlinux 0x12e32277 path_nosuid +EXPORT_SYMBOL vmlinux 0x12fc7188 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x13016cd6 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x131387c5 install_exec_creds +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x132306ec lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc +EXPORT_SYMBOL vmlinux 0x1339951a unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0x13606413 vmap +EXPORT_SYMBOL vmlinux 0x1364d55f skb_vlan_push +EXPORT_SYMBOL vmlinux 0x137269a5 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x13764cf6 set_user_nice +EXPORT_SYMBOL vmlinux 0x13a4958f cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0x13b74c0a scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0x13bf3abe dquot_operations +EXPORT_SYMBOL vmlinux 0x13cd58e0 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13da54b5 of_phy_attach +EXPORT_SYMBOL vmlinux 0x13ef6467 phy_start_interrupts +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x14138aa3 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x1420b379 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x143023b6 __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x1441cc2b blk_get_queue +EXPORT_SYMBOL vmlinux 0x149526e5 fsync_bdev +EXPORT_SYMBOL vmlinux 0x14a41e88 of_root +EXPORT_SYMBOL vmlinux 0x14c9a70e empty_aops +EXPORT_SYMBOL vmlinux 0x14cbc4da genphy_suspend +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14d0fc39 tty_vhangup +EXPORT_SYMBOL vmlinux 0x14d4a9c5 _change_bit +EXPORT_SYMBOL vmlinux 0x14dc3c40 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x14f3fa0a of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x1527d284 follow_down_one +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x157bd58f inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x15820916 bio_uncopy_user +EXPORT_SYMBOL vmlinux 0x1592e542 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x1598f608 nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0x15a51cef omap_dss_find_output_by_port_node +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x16040a2d md_done_sync +EXPORT_SYMBOL vmlinux 0x160e975f freeze_super +EXPORT_SYMBOL vmlinux 0x1612bbb1 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x16174643 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x162ccc0c lg_local_lock +EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null +EXPORT_SYMBOL vmlinux 0x163259d9 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x164789b0 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x165cd738 cpu_tlb +EXPORT_SYMBOL vmlinux 0x16766435 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x1683a50b radix_tree_delete +EXPORT_SYMBOL vmlinux 0x16856f54 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x168cf911 nla_reserve +EXPORT_SYMBOL vmlinux 0x16a860bc dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x16b8fac9 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x16bdd7b3 snd_dma_alloc_pages +EXPORT_SYMBOL vmlinux 0x16d2dfec unregister_shrinker +EXPORT_SYMBOL vmlinux 0x16da83a1 kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16f62448 datagram_poll +EXPORT_SYMBOL vmlinux 0x1700fd03 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x17268b18 vfs_create +EXPORT_SYMBOL vmlinux 0x173b207d sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x174ba930 blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0x1750a3a0 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x17615297 dss_mgr_start_update +EXPORT_SYMBOL vmlinux 0x17775c50 make_kgid +EXPORT_SYMBOL vmlinux 0x177a6543 invalidate_partition +EXPORT_SYMBOL vmlinux 0x1782e099 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x1784f057 dispc_ovl_set_fifo_threshold +EXPORT_SYMBOL vmlinux 0x17894404 inet_getname +EXPORT_SYMBOL vmlinux 0x17a1eaa1 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x17aa0b2c skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17cb7b36 dev_crit +EXPORT_SYMBOL vmlinux 0x181c9680 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x1830e248 devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x184f3c5c ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x185107d9 tso_start +EXPORT_SYMBOL vmlinux 0x185f3b43 __genl_register_family +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x188c4c36 get_mm_exe_file +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x189b120d xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x189c5980 arm_copy_to_user +EXPORT_SYMBOL vmlinux 0x18a0ae75 inode_init_once +EXPORT_SYMBOL vmlinux 0x18adea9b put_io_context +EXPORT_SYMBOL vmlinux 0x18b6d498 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x18b959c7 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x18bd76a4 _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x18c2227f cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x18e2f08f __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18ee8f81 get_super_thawed +EXPORT_SYMBOL vmlinux 0x18f50e6a tcp_init_sock +EXPORT_SYMBOL vmlinux 0x19275b56 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x192f07e1 arp_xmit +EXPORT_SYMBOL vmlinux 0x195af4fc unregister_filesystem +EXPORT_SYMBOL vmlinux 0x19610e1f cpu_all_bits +EXPORT_SYMBOL vmlinux 0x1968c75f sync_filesystem +EXPORT_SYMBOL vmlinux 0x1970a11d input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x197dc3b3 omap_set_dma_src_burst_mode +EXPORT_SYMBOL vmlinux 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL vmlinux 0x198c2cc3 d_delete +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19d9dd34 peernet2id_alloc +EXPORT_SYMBOL vmlinux 0x19e4e5ee _snd_ctl_add_slave +EXPORT_SYMBOL vmlinux 0x19ea0fa8 bio_copy_data +EXPORT_SYMBOL vmlinux 0x19f5809b dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0x1a05c568 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x1a08dd70 snd_device_register +EXPORT_SYMBOL vmlinux 0x1a130b4a generic_end_io_acct +EXPORT_SYMBOL vmlinux 0x1a16fd55 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x1a1ff8ad vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x1a435d7a sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x1a454bec release_sock +EXPORT_SYMBOL vmlinux 0x1a4ad900 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x1a555967 km_policy_notify +EXPORT_SYMBOL vmlinux 0x1a65f4ad __arm_ioremap_pfn +EXPORT_SYMBOL vmlinux 0x1a6dddf4 __d_drop +EXPORT_SYMBOL vmlinux 0x1a81ff97 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x1a9ea048 elevator_exit +EXPORT_SYMBOL vmlinux 0x1aadaf64 deactivate_super +EXPORT_SYMBOL vmlinux 0x1abbd226 cros_ec_check_result +EXPORT_SYMBOL vmlinux 0x1ad1f2e7 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0x1aec91b8 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x1af65223 elv_add_request +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b1dc0e7 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b2d6d2c qcom_scm_cpu_power_down +EXPORT_SYMBOL vmlinux 0x1b569d73 nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0x1b581fd1 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x1b5caa62 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b76df9c pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x1b7b4c61 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1ba7807b alloc_disk +EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer +EXPORT_SYMBOL vmlinux 0x1bc01a00 dquot_release +EXPORT_SYMBOL vmlinux 0x1bc0cd49 loop_register_transfer +EXPORT_SYMBOL vmlinux 0x1bd4b828 simple_rename +EXPORT_SYMBOL vmlinux 0x1beac064 tso_build_data +EXPORT_SYMBOL vmlinux 0x1bf92d29 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x1c05cbea phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x1c113626 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x1c114a6a vm_event_states +EXPORT_SYMBOL vmlinux 0x1c151755 unregister_key_type +EXPORT_SYMBOL vmlinux 0x1c23bee1 up_write +EXPORT_SYMBOL vmlinux 0x1c311c4c vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x1c3f2009 max8925_set_bits +EXPORT_SYMBOL vmlinux 0x1c58938b md_write_start +EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s +EXPORT_SYMBOL vmlinux 0x1c730bdf skb_append +EXPORT_SYMBOL vmlinux 0x1c843d9d __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x1c907bcf xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x1c956347 phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0x1c9fb44c pci_bus_put +EXPORT_SYMBOL vmlinux 0x1cb0269b vm_insert_page +EXPORT_SYMBOL vmlinux 0x1cc0736f dma_alloc_from_coherent +EXPORT_SYMBOL vmlinux 0x1ce76302 mmc_flush_cache +EXPORT_SYMBOL vmlinux 0x1cfb04fa finish_wait +EXPORT_SYMBOL vmlinux 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL vmlinux 0x1d14237c jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x1d1758fd __nla_put +EXPORT_SYMBOL vmlinux 0x1d704600 ptp_find_pin +EXPORT_SYMBOL vmlinux 0x1d847ced scsi_block_requests +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dc7a0c4 __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x1dceffbf path_is_under +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1dd806b0 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x1defd6f5 d_genocide +EXPORT_SYMBOL vmlinux 0x1df78c94 __sb_start_write +EXPORT_SYMBOL vmlinux 0x1e047854 warn_slowpath_fmt +EXPORT_SYMBOL vmlinux 0x1e10631d ip_options_compile +EXPORT_SYMBOL vmlinux 0x1e161bac posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x1e1d2618 address_space_init_once +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e2c7b82 elevator_init +EXPORT_SYMBOL vmlinux 0x1e314c97 dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x1e4417b4 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x1e5375a6 security_inode_permission +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e725f33 vme_bus_type +EXPORT_SYMBOL vmlinux 0x1e7ad7a0 tcp_filter +EXPORT_SYMBOL vmlinux 0x1e7ca095 netdev_change_features +EXPORT_SYMBOL vmlinux 0x1e9e5c82 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ee6fb29 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x1eeb848e __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x1ef1344a secpath_dup +EXPORT_SYMBOL vmlinux 0x1f06dd4f seq_pad +EXPORT_SYMBOL vmlinux 0x1f15949f dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x1f1b15be pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x1f2ebb2e mark_info_dirty +EXPORT_SYMBOL vmlinux 0x1f461466 filemap_fault +EXPORT_SYMBOL vmlinux 0x1f471f3b misc_deregister +EXPORT_SYMBOL vmlinux 0x1f597ff8 account_page_dirtied +EXPORT_SYMBOL vmlinux 0x1f5cf310 mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0x1f5f5068 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x1f66cb16 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x1f721c88 __bread_gfp +EXPORT_SYMBOL vmlinux 0x1f72edc6 md_flush_request +EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x1f8b43a0 blk_mq_all_tag_busy_iter +EXPORT_SYMBOL vmlinux 0x1f9401a5 security_mmap_file +EXPORT_SYMBOL vmlinux 0x1f9f5bf9 snd_unregister_oss_device +EXPORT_SYMBOL vmlinux 0x1fab5905 wait_for_completion +EXPORT_SYMBOL vmlinux 0x1fb9965e mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x1fb9bcc6 snd_component_add +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fc4cfde write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fe0c240 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x1feab4bf generic_setxattr +EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region +EXPORT_SYMBOL vmlinux 0x1ff469c7 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x200bcbe2 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x200ca532 devm_clk_get +EXPORT_SYMBOL vmlinux 0x200ccd88 snd_timer_continue +EXPORT_SYMBOL vmlinux 0x2018631a free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x20205f64 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0x2030bbc2 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x2032cac7 param_set_bint +EXPORT_SYMBOL vmlinux 0x20421305 on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x2048d4e2 dquot_disable +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x205005f4 finish_open +EXPORT_SYMBOL vmlinux 0x205ec8de omap_dispc_register_isr +EXPORT_SYMBOL vmlinux 0x20661022 pagecache_get_page +EXPORT_SYMBOL vmlinux 0x206e00cd sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x20723c27 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x20929c8f nd_device_unregister +EXPORT_SYMBOL vmlinux 0x20a17765 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20b00659 param_set_int +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20ddf7ab bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x20e0134b generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x20e5a8c2 thaw_bdev +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x20ee820b of_get_named_gpio_flags +EXPORT_SYMBOL vmlinux 0x20fb9cba pci_release_regions +EXPORT_SYMBOL vmlinux 0x210861d1 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x21110dbf mmioset +EXPORT_SYMBOL vmlinux 0x211331fa __divsi3 +EXPORT_SYMBOL vmlinux 0x21168bdf dma_find_channel +EXPORT_SYMBOL vmlinux 0x211f86ce snd_ctl_find_numid +EXPORT_SYMBOL vmlinux 0x21321b04 tty_port_init +EXPORT_SYMBOL vmlinux 0x2135d034 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x213bc7c6 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x216d759a mmiocpy +EXPORT_SYMBOL vmlinux 0x21782146 blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x2192b692 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x21c2a5d2 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x21c6e24f vfs_readf +EXPORT_SYMBOL vmlinux 0x21c821ac __getblk_slow +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21e5c149 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x21fa2b07 key_validate +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x222f3359 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x222fa684 lg_global_lock +EXPORT_SYMBOL vmlinux 0x2232a8a5 mempool_free +EXPORT_SYMBOL vmlinux 0x22442f32 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x224bae15 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x2252cb88 dss_mgr_disable +EXPORT_SYMBOL vmlinux 0x2256fafa div64_u64_rem +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x22743e17 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x22764671 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x2279ca74 cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x22819e4e input_unregister_handle +EXPORT_SYMBOL vmlinux 0x22950b36 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x22ab00ab posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x22b2e251 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22ba4a01 ip6_xmit +EXPORT_SYMBOL vmlinux 0x22bcd172 bioset_free +EXPORT_SYMBOL vmlinux 0x22dfdd06 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x22e62e4a tcp_shutdown +EXPORT_SYMBOL vmlinux 0x22fc4f3a trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x22fe20e4 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x230178a1 nd_integrity_init +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x232ff0a5 devm_gpiod_get +EXPORT_SYMBOL vmlinux 0x234dafe8 parent_mem_cgroup +EXPORT_SYMBOL vmlinux 0x23521c25 arm_dma_ops +EXPORT_SYMBOL vmlinux 0x236b7476 dev_change_flags +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23aa49d3 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x23ce0041 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL vmlinux 0x23f40e2a __napi_complete +EXPORT_SYMBOL vmlinux 0x23f5c468 param_get_invbool +EXPORT_SYMBOL vmlinux 0x23fa5b86 nand_lock +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x24223014 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x242805dc call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x243570c8 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x2439ad4a touch_atime +EXPORT_SYMBOL vmlinux 0x243db9f9 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x2460e626 elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x2466944c notify_change +EXPORT_SYMBOL vmlinux 0x246df1be xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x2477386a ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x24997a3b dquot_free_inode +EXPORT_SYMBOL vmlinux 0x24a36dea blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL vmlinux 0x24ac3223 pci_set_master +EXPORT_SYMBOL vmlinux 0x24b0da54 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x24b71461 snd_ctl_rename_id +EXPORT_SYMBOL vmlinux 0x24d32fee xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x24eafd28 security_path_truncate +EXPORT_SYMBOL vmlinux 0x24f5ab45 sock_i_uid +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x25067d6d phy_register_fixup +EXPORT_SYMBOL vmlinux 0x25069b97 prepare_creds +EXPORT_SYMBOL vmlinux 0x2507ddf8 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x250cf843 reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0x251bda95 snd_pcm_new_internal +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x2559949b blk_get_request +EXPORT_SYMBOL vmlinux 0x25708302 iget_locked +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x2578a911 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x25ae2413 lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0x25aeedcc force_sig +EXPORT_SYMBOL vmlinux 0x25b5d921 blk_queue_bounce +EXPORT_SYMBOL vmlinux 0x25d745a0 __dst_free +EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x2642e451 clkdev_drop +EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux +EXPORT_SYMBOL vmlinux 0x26611443 tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0x266191dc migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x2664b633 clk_register_clkdevs +EXPORT_SYMBOL vmlinux 0x26b0cd09 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x26b3d649 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x26ba6f77 shdma_cleanup +EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x26be5442 vm_mmap +EXPORT_SYMBOL vmlinux 0x26c2128c lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x26c2b059 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x26f3c18c vc_resize +EXPORT_SYMBOL vmlinux 0x26f6ede7 snd_pcm_stop +EXPORT_SYMBOL vmlinux 0x26fd2584 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x2704c027 param_set_ulong +EXPORT_SYMBOL vmlinux 0x270b236a ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x272c31ef blk_requeue_request +EXPORT_SYMBOL vmlinux 0x2732dd24 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x273ad0f8 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274d086b tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x274fd021 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x275ef902 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x276f84ef con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x278d97ec inet_release +EXPORT_SYMBOL vmlinux 0x2790e766 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27be5048 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x27d90139 tty_throttle +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x28118cb6 __get_user_1 +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x281bb9f8 nand_correct_data +EXPORT_SYMBOL vmlinux 0x28403f94 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x28616182 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x287597bc dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x287a4cfe generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x288ca925 sock_create_lite +EXPORT_SYMBOL vmlinux 0x289ba6d7 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x289e4dd8 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL vmlinux 0x28a24337 tcp_proc_register +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28a503f5 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x28fc3037 keyring_clear +EXPORT_SYMBOL vmlinux 0x2901daa7 abort_creds +EXPORT_SYMBOL vmlinux 0x2907be57 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x29087180 register_qdisc +EXPORT_SYMBOL vmlinux 0x290935cb inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x2927db6d loop_backing_file +EXPORT_SYMBOL vmlinux 0x29351977 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x29419d6c neigh_update +EXPORT_SYMBOL vmlinux 0x294e035e to_nd_btt +EXPORT_SYMBOL vmlinux 0x294efa44 single_open_size +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x29551e5b omap_dss_find_output +EXPORT_SYMBOL vmlinux 0x296870cd sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x29687ac2 ns_capable +EXPORT_SYMBOL vmlinux 0x297060e0 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x299bd769 uart_match_port +EXPORT_SYMBOL vmlinux 0x29c96427 _dev_info +EXPORT_SYMBOL vmlinux 0x29ccb335 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x29cde03c skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x29d09c4f __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x29e1b020 ida_simple_remove +EXPORT_SYMBOL vmlinux 0x29fdda53 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0x2a138926 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a38a47d i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x2a3aa678 _test_and_clear_bit +EXPORT_SYMBOL vmlinux 0x2a49ddb1 generic_read_dir +EXPORT_SYMBOL vmlinux 0x2a523dc4 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x2a5b560f of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0x2a6511e4 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x2a678973 mem_cgroup_begin_page_stat +EXPORT_SYMBOL vmlinux 0x2a6f3d81 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x2a750cab xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x2a826795 nand_bch_correct_data +EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp +EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x2ab30d87 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x2ab387e9 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x2acd2c49 fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2ae3deaa release_and_free_resource +EXPORT_SYMBOL vmlinux 0x2ae60e82 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x2ae93cbe devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0x2af05377 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b10e5e9 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x2b12925d cpumask_next_and +EXPORT_SYMBOL vmlinux 0x2b181a1a gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0x2b18300f sock_alloc_file +EXPORT_SYMBOL vmlinux 0x2b240b2e tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b3c488e key_put +EXPORT_SYMBOL vmlinux 0x2b4e956e mempool_create +EXPORT_SYMBOL vmlinux 0x2b74e19b input_open_device +EXPORT_SYMBOL vmlinux 0x2b7be498 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL vmlinux 0x2b7c9170 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x2b7de1fe tcp_close +EXPORT_SYMBOL vmlinux 0x2b7e32aa vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2baeb9dd snd_info_register +EXPORT_SYMBOL vmlinux 0x2bc71f4b free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x2bd2e554 phy_start +EXPORT_SYMBOL vmlinux 0x2bd37f3b netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x2bdd3300 do_truncate +EXPORT_SYMBOL vmlinux 0x2be0f12d dql_completed +EXPORT_SYMBOL vmlinux 0x2bff3fbe i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x2c122d43 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x2c214260 max8998_update_reg +EXPORT_SYMBOL vmlinux 0x2c245ae0 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c3cb0be param_set_short +EXPORT_SYMBOL vmlinux 0x2c440e0f dev_mc_init +EXPORT_SYMBOL vmlinux 0x2c4ef71a wait_iff_congested +EXPORT_SYMBOL vmlinux 0x2c7c8e9a pcibios_min_mem +EXPORT_SYMBOL vmlinux 0x2c81ec75 __irq_regs +EXPORT_SYMBOL vmlinux 0x2c988955 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x2c9b54ba dev_disable_lro +EXPORT_SYMBOL vmlinux 0x2ca1dc9b kernel_connect +EXPORT_SYMBOL vmlinux 0x2ca51650 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x2cc24f61 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x2cf60385 __mutex_init +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d3a33b1 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x2d558cbd devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0x2d55cc68 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x2d5dab25 nf_log_unset +EXPORT_SYMBOL vmlinux 0x2d6507b5 _find_next_zero_bit_le +EXPORT_SYMBOL vmlinux 0x2d770676 dispc_mgr_go +EXPORT_SYMBOL vmlinux 0x2da79731 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x2da9a2d3 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x2daed56b xfrm_state_update +EXPORT_SYMBOL vmlinux 0x2dcf70ab jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x2dcfe9b4 dump_truncate +EXPORT_SYMBOL vmlinux 0x2dd56b3d fb_set_cmap +EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink +EXPORT_SYMBOL vmlinux 0x2dfacf28 snd_card_new +EXPORT_SYMBOL vmlinux 0x2e12b95a mmc_cleanup_queue +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2ab42b sget +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e3d3ca4 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x2e40eb0a param_ops_ullong +EXPORT_SYMBOL vmlinux 0x2e56ae7d bio_advance +EXPORT_SYMBOL vmlinux 0x2e5810c6 __aeabi_unwind_cpp_pr1 +EXPORT_SYMBOL vmlinux 0x2e77534f seq_vprintf +EXPORT_SYMBOL vmlinux 0x2ea63a15 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x2eb48c02 km_report +EXPORT_SYMBOL vmlinux 0x2ebae93f devm_free_irq +EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x2ec87ce0 dqget +EXPORT_SYMBOL vmlinux 0x2ec9be5a of_platform_device_create +EXPORT_SYMBOL vmlinux 0x2ecd441b fence_free +EXPORT_SYMBOL vmlinux 0x2ef16e4b swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource +EXPORT_SYMBOL vmlinux 0x2f0c1b97 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x2f3ea1c8 devm_gpio_request +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f59a43e dquot_enable +EXPORT_SYMBOL vmlinux 0x2f5f2a57 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x2f6c72b9 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x2f6d8963 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x2f75dc4e cdev_init +EXPORT_SYMBOL vmlinux 0x2f7e67c2 nvm_register_mgr +EXPORT_SYMBOL vmlinux 0x2f918f39 nvm_put_blk +EXPORT_SYMBOL vmlinux 0x2f97749b kobject_put +EXPORT_SYMBOL vmlinux 0x2f9871ed cpu_user +EXPORT_SYMBOL vmlinux 0x2f9f6484 __pagevec_release +EXPORT_SYMBOL vmlinux 0x2fa70b6f param_ops_bool +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fe307b7 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x2fec4ae5 pci_restore_state +EXPORT_SYMBOL vmlinux 0x300e3e30 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x303d8ae5 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x307bc269 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x3082a0b3 dss_feat_get_supported_color_modes +EXPORT_SYMBOL vmlinux 0x30937014 __find_get_block +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30c3ba90 proc_remove +EXPORT_SYMBOL vmlinux 0x30c4cc3c of_get_address +EXPORT_SYMBOL vmlinux 0x30e0670c unregister_cdrom +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30e99155 skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310917fe sort +EXPORT_SYMBOL vmlinux 0x31289c44 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL vmlinux 0x31380354 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x315780c5 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x315a4c3d crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x318333e4 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x318d8ece register_sound_dsp +EXPORT_SYMBOL vmlinux 0x3191f109 __krealloc +EXPORT_SYMBOL vmlinux 0x3192d5bd simple_link +EXPORT_SYMBOL vmlinux 0x319f2896 neigh_lookup +EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available +EXPORT_SYMBOL vmlinux 0x31af9231 mmc_request_done +EXPORT_SYMBOL vmlinux 0x31b31f5c csum_partial_copy_nocheck +EXPORT_SYMBOL vmlinux 0x31f04892 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x31f0bb78 __kmap_atomic_idx +EXPORT_SYMBOL vmlinux 0x31fb6950 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x323501f4 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x3254c5b3 kfree_skb +EXPORT_SYMBOL vmlinux 0x3260f8df blk_end_request_all +EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy +EXPORT_SYMBOL vmlinux 0x328a0755 get_user_pages +EXPORT_SYMBOL vmlinux 0x32907b91 idr_remove +EXPORT_SYMBOL vmlinux 0x329c3d53 netlink_set_err +EXPORT_SYMBOL vmlinux 0x32b7ccfe get_mem_type +EXPORT_SYMBOL vmlinux 0x32c5f231 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x32deffb4 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x32f32c8a dquot_commit_info +EXPORT_SYMBOL vmlinux 0x3316845e idr_get_next +EXPORT_SYMBOL vmlinux 0x331d3f8c block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x3333c10b bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x3343cec1 phy_device_create +EXPORT_SYMBOL vmlinux 0x3363b490 devm_gpiod_put +EXPORT_SYMBOL vmlinux 0x336df54e sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x3377737f serio_bus +EXPORT_SYMBOL vmlinux 0x33879b17 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x33ea4e86 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x340238d0 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x341dbfa3 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x34365d7d open_exec +EXPORT_SYMBOL vmlinux 0x343d6597 phy_print_status +EXPORT_SYMBOL vmlinux 0x344b7739 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x345ec708 sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x34623fd0 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x346694ec blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x346d389b padata_do_parallel +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x34895d2b sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34c0d31c __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x34c501c1 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x34e7c3ef pci_iomap +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x3507a132 _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x35247117 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x352acb1f mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x35390773 blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0x353de98f cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x353e3fa5 __get_user_4 +EXPORT_SYMBOL vmlinux 0x353e4cd8 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x356f8c04 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x3582045e snd_dma_alloc_pages_fallback +EXPORT_SYMBOL vmlinux 0x35a5739a key_alloc +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35cdcd05 swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x35d69ab4 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x360de884 bio_copy_kern +EXPORT_SYMBOL vmlinux 0x3612c10f tmio_core_mmc_enable +EXPORT_SYMBOL vmlinux 0x3623e2ba cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x362bba4a __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x3646f65e serio_interrupt +EXPORT_SYMBOL vmlinux 0x36492281 snd_pcm_notify +EXPORT_SYMBOL vmlinux 0x364f0602 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x36630ee6 mmc_can_trim +EXPORT_SYMBOL vmlinux 0x3675db6d kmap +EXPORT_SYMBOL vmlinux 0x36771e3d xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x367ba856 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x36935fad eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x36b78c95 kfree_skb_list +EXPORT_SYMBOL vmlinux 0x36bb7fc0 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36e9ecaf tc6393xb_lcd_mode +EXPORT_SYMBOL vmlinux 0x36fdda67 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x370e2c95 __devm_release_region +EXPORT_SYMBOL vmlinux 0x37267d5a snd_card_register +EXPORT_SYMBOL vmlinux 0x372f4bcf nf_log_set +EXPORT_SYMBOL vmlinux 0x3736964a netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x3744c020 console_start +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x377014ac generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x378fdc75 bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL vmlinux 0x379dee5f trace_print_symbols_seq_u64 +EXPORT_SYMBOL vmlinux 0x37a59bd5 udp_del_offload +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37c35ca6 devm_memremap +EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 +EXPORT_SYMBOL vmlinux 0x37ed8d97 input_free_device +EXPORT_SYMBOL vmlinux 0x37f027cd blk_fetch_request +EXPORT_SYMBOL vmlinux 0x37f06263 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x3809f6da sg_miter_start +EXPORT_SYMBOL vmlinux 0x38152f81 ac97_bus_type +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x381ccc13 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x3821ef3f set_security_override +EXPORT_SYMBOL vmlinux 0x383a07db nf_hook_slow +EXPORT_SYMBOL vmlinux 0x385c0bbc ip_ct_attach +EXPORT_SYMBOL vmlinux 0x388163ba ps2_command +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x389acf0c gpmc_configure +EXPORT_SYMBOL vmlinux 0x389ecf9e __bswapdi2 +EXPORT_SYMBOL vmlinux 0x38a161b3 dev_uc_init +EXPORT_SYMBOL vmlinux 0x38a5c63b simple_unlink +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a868b5 bio_unmap_user +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38c3fcec swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x38f20732 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x3910a612 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x3911d706 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x3924dd56 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x392e93dd cdrom_release +EXPORT_SYMBOL vmlinux 0x39334822 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x396f7265 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL vmlinux 0x39730d06 atomic_io_modify +EXPORT_SYMBOL vmlinux 0x3975e903 pci_claim_resource +EXPORT_SYMBOL vmlinux 0x397a062d filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x397a14a6 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x398004f8 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x3991a270 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x3996613f tcp_parse_options +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399b58c5 tcp_init_cgroup +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39bb87de nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL vmlinux 0x39c98bf4 input_event +EXPORT_SYMBOL vmlinux 0x39ec122b scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x39f3242f blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0x39f384b7 skb_pull +EXPORT_SYMBOL vmlinux 0x39f49133 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x3a053d56 snd_mixer_oss_notify_callback +EXPORT_SYMBOL vmlinux 0x3a19899d ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x3a1ac054 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x3a1fe359 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x3a334c69 netif_device_attach +EXPORT_SYMBOL vmlinux 0x3a416f06 tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0x3a499984 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x3a9371a9 mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0x3a9649b6 qdisc_destroy +EXPORT_SYMBOL vmlinux 0x3a977fb5 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3a9d24ba blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x3a9da2db mutex_unlock +EXPORT_SYMBOL vmlinux 0x3aafecee get_task_exe_file +EXPORT_SYMBOL vmlinux 0x3ac7cd4b qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x3ace678c tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x3acec888 bdget_disk +EXPORT_SYMBOL vmlinux 0x3b14e253 scsi_host_put +EXPORT_SYMBOL vmlinux 0x3b2c2015 led_blink_set_oneshot +EXPORT_SYMBOL vmlinux 0x3b355820 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x3b4c2fe0 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x3b52feeb mmc_detect_change +EXPORT_SYMBOL vmlinux 0x3b5be1df vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b83e931 snd_card_disconnect +EXPORT_SYMBOL vmlinux 0x3b8cbba5 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x3b91f3af snd_free_pages +EXPORT_SYMBOL vmlinux 0x3b96f139 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x3b9eabe0 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x3bac444b jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x3bb6df4a sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x3bb811a1 tcp_connect +EXPORT_SYMBOL vmlinux 0x3bb955c7 napi_complete_done +EXPORT_SYMBOL vmlinux 0x3bbf46ea vga_base +EXPORT_SYMBOL vmlinux 0x3bc462db devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x3bd74f0b omap_dss_get_overlay +EXPORT_SYMBOL vmlinux 0x3be80ed6 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x3bf00d19 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x3bfd1392 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x3c24647c mfd_add_devices +EXPORT_SYMBOL vmlinux 0x3c342423 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x3c3462c0 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x3c393574 inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c566a81 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x3c6e978f gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c8e07e1 dev_err +EXPORT_SYMBOL vmlinux 0x3c9c23b0 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x3c9c25c8 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x3c9c5ce6 kthread_stop +EXPORT_SYMBOL vmlinux 0x3cb3931b sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cfa969a proc_douintvec +EXPORT_SYMBOL vmlinux 0x3d30409d iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0x3d3c540f elf_hwcap +EXPORT_SYMBOL vmlinux 0x3d49bfde __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x3d5a2386 kern_path_create +EXPORT_SYMBOL vmlinux 0x3d6bafb3 lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0x3d6d8095 __nd_iostat_start +EXPORT_SYMBOL vmlinux 0x3d8009a2 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x3d9e39d5 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x3dbed65d nd_iostat_end +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dd5dc61 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x3ddd40d0 snd_ctl_make_virtual_master +EXPORT_SYMBOL vmlinux 0x3df01acf md_write_end +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e0319f1 blkdev_get +EXPORT_SYMBOL vmlinux 0x3e0afa4f blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x3e15cbd3 vfs_getattr +EXPORT_SYMBOL vmlinux 0x3e47b83c blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x3e54586e nobh_write_end +EXPORT_SYMBOL vmlinux 0x3e55d216 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x3e564374 mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get +EXPORT_SYMBOL vmlinux 0x3e9dbf31 kill_litter_super +EXPORT_SYMBOL vmlinux 0x3e9f6966 down_write +EXPORT_SYMBOL vmlinux 0x3eb0338c bioset_integrity_free +EXPORT_SYMBOL vmlinux 0x3eb09833 lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0x3ece8f92 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x3ed7ae9c blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x3eeb994d genl_notify +EXPORT_SYMBOL vmlinux 0x3f063971 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x3f102d94 write_one_page +EXPORT_SYMBOL vmlinux 0x3f335508 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x3f3b292c max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x3f3c2a25 alloc_disk_node +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f46bba6 dss_mgr_disconnect +EXPORT_SYMBOL vmlinux 0x3f5b67d5 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x3f616ce2 queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x3f6fe87e snd_device_free +EXPORT_SYMBOL vmlinux 0x3f781666 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x3f7dbc5c textsearch_register +EXPORT_SYMBOL vmlinux 0x3f8a9df7 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x3f948cfc pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x3fa3c1bb sync_blockdev +EXPORT_SYMBOL vmlinux 0x3fab3ca9 register_sysctl_table +EXPORT_SYMBOL vmlinux 0x3fbad455 register_cdrom +EXPORT_SYMBOL vmlinux 0x3fc99f79 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x3fefaa98 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x3ff9a7bf xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x400e708b sock_register +EXPORT_SYMBOL vmlinux 0x400f96df acl_by_type +EXPORT_SYMBOL vmlinux 0x402a7a05 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev +EXPORT_SYMBOL vmlinux 0x403fb152 pci_request_regions +EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x407136b1 __put_user_8 +EXPORT_SYMBOL vmlinux 0x4071d0a9 dm_put_device +EXPORT_SYMBOL vmlinux 0x407a3275 omap_start_dma +EXPORT_SYMBOL vmlinux 0x408b2d2b neigh_seq_next +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a2d1dd dm_table_get_size +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40ad3abc neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x40b57e4f dentry_needs_remove_privs +EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0x40c705a3 fget_raw +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40c77fd4 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40e28bd6 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x40e88c97 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x40eca8b3 input_set_capability +EXPORT_SYMBOL vmlinux 0x40ed524a _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x40f07981 __ashldi3 +EXPORT_SYMBOL vmlinux 0x4112ae39 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x411acc07 make_bad_inode +EXPORT_SYMBOL vmlinux 0x4141973b of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x416c9f3e nvm_get_blk_unlocked +EXPORT_SYMBOL vmlinux 0x417cb01d vga_put +EXPORT_SYMBOL vmlinux 0x417f72e5 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x41862ad4 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x419ec3fb elv_register_queue +EXPORT_SYMBOL vmlinux 0x41a01961 pps_lookup_dev +EXPORT_SYMBOL vmlinux 0x41a79395 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x41a85ee0 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x41a8e118 sk_capable +EXPORT_SYMBOL vmlinux 0x41b165c9 tty_set_operations +EXPORT_SYMBOL vmlinux 0x41c9dde7 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x41d8a382 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x41d9acf8 nvm_register +EXPORT_SYMBOL vmlinux 0x42079548 __check_sticky +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x42253677 mutex_lock +EXPORT_SYMBOL vmlinux 0x422cc94b inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0x422f59e8 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x42385902 i2c_verify_client +EXPORT_SYMBOL vmlinux 0x423c1ba7 iterate_dir +EXPORT_SYMBOL vmlinux 0x423c4641 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x423d81ed ida_pre_get +EXPORT_SYMBOL vmlinux 0x4241e0fd d_obtain_root +EXPORT_SYMBOL vmlinux 0x42472e88 mtd_concat_destroy +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x4248e669 tty_write_room +EXPORT_SYMBOL vmlinux 0x424b44f7 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x425a5c1d scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x425b3fe9 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x425d216b mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x4266391f genl_unregister_family +EXPORT_SYMBOL vmlinux 0x42690299 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x428c5b86 __register_nls +EXPORT_SYMBOL vmlinux 0x429435cc i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x4298b775 v7_flush_kern_cache_all +EXPORT_SYMBOL vmlinux 0x4298f94b dev_mc_add +EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x42b1bd70 block_read_full_page +EXPORT_SYMBOL vmlinux 0x42b65c6d xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x42d7c45f tcf_hash_create +EXPORT_SYMBOL vmlinux 0x42eb1d0e blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x42ecf546 ioremap +EXPORT_SYMBOL vmlinux 0x42edb35d pneigh_lookup +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x4319dc4f param_set_uint +EXPORT_SYMBOL vmlinux 0x4333d1f9 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x436ee9be pci_read_vpd +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43a3962a of_cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0x43a7b503 find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x43ee2132 of_get_mac_address +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x43f8316c snd_info_free_entry +EXPORT_SYMBOL vmlinux 0x440674ae xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x44126a14 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x442495c9 tmio_core_mmc_resume +EXPORT_SYMBOL vmlinux 0x44271fbd consume_skb +EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x44438b96 hex2bin +EXPORT_SYMBOL vmlinux 0x44643b93 __aeabi_lmul +EXPORT_SYMBOL vmlinux 0x446cd530 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x4492b61f snd_ctl_boolean_mono_info +EXPORT_SYMBOL vmlinux 0x44a84738 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x44bb4591 phy_disconnect +EXPORT_SYMBOL vmlinux 0x44bfed00 simple_fill_super +EXPORT_SYMBOL vmlinux 0x44da5d0f __csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x44dd3d8d completion_done +EXPORT_SYMBOL vmlinux 0x44dd460a mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x44e67085 iput +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44f002fc jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x450ccd5b lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0x4520c841 mdiobus_write +EXPORT_SYMBOL vmlinux 0x4529991d d_set_fallthru +EXPORT_SYMBOL vmlinux 0x4530ce39 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x4549ad4d __quota_error +EXPORT_SYMBOL vmlinux 0x45577213 skb_find_text +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x45803901 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x4586b578 fddi_change_mtu +EXPORT_SYMBOL vmlinux 0x4598d9ca devm_request_resource +EXPORT_SYMBOL vmlinux 0x45a0d9c3 snd_ctl_remove +EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource +EXPORT_SYMBOL vmlinux 0x45bda0d5 system_serial_low +EXPORT_SYMBOL vmlinux 0x45c17b30 __lock_page +EXPORT_SYMBOL vmlinux 0x45cb1fe0 init_task +EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy +EXPORT_SYMBOL vmlinux 0x464770ec __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x465757c3 cpu_present_mask +EXPORT_SYMBOL vmlinux 0x46588471 pci_platform_rom +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x4669e9f1 set_posix_acl +EXPORT_SYMBOL vmlinux 0x466bb1a5 bio_integrity_free +EXPORT_SYMBOL vmlinux 0x4670b577 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x467ddde6 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x467efc93 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x468f433b netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x46b3a093 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x46ca246c omap_get_dma_src_pos +EXPORT_SYMBOL vmlinux 0x46d3b28c __div0 +EXPORT_SYMBOL vmlinux 0x46d494aa locks_mandatory_area +EXPORT_SYMBOL vmlinux 0x46e98136 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x46f4cba4 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x471b5bb0 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x471b7a87 __init_rwsem +EXPORT_SYMBOL vmlinux 0x4722f6b7 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x47401ef5 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x47434420 path_get +EXPORT_SYMBOL vmlinux 0x475762c5 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x4766c098 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x478f79f6 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x4790bef9 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x47acf829 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0x47bfa0b6 vc_cons +EXPORT_SYMBOL vmlinux 0x47e70229 v7_flush_user_cache_range +EXPORT_SYMBOL vmlinux 0x47f757de elf_platform +EXPORT_SYMBOL vmlinux 0x480da304 sock_i_ino +EXPORT_SYMBOL vmlinux 0x48116d9e simple_readpage +EXPORT_SYMBOL vmlinux 0x481ce6ce cpu_active_mask +EXPORT_SYMBOL vmlinux 0x481fb8f3 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x481fe6b1 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x482703d2 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x48310a73 udp_proc_register +EXPORT_SYMBOL vmlinux 0x48448a79 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x485db003 rt6_lookup +EXPORT_SYMBOL vmlinux 0x487bb229 vme_slave_request +EXPORT_SYMBOL vmlinux 0x487bb85d blk_register_region +EXPORT_SYMBOL vmlinux 0x48808fbe tcp_check_req +EXPORT_SYMBOL vmlinux 0x488abac3 kill_bdev +EXPORT_SYMBOL vmlinux 0x48909ac9 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x4892a942 pci_enable_device +EXPORT_SYMBOL vmlinux 0x48a5b067 __machine_arch_type +EXPORT_SYMBOL vmlinux 0x48acd559 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x48ad5720 arm_coherent_dma_ops +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48e658df dss_mgr_set_timings +EXPORT_SYMBOL vmlinux 0x48eca817 inet_frag_find +EXPORT_SYMBOL vmlinux 0x48eddc1f csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x48f8d51c skb_clone_sk +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x4918d1b8 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x491c7dc6 inode_permission +EXPORT_SYMBOL vmlinux 0x4930b066 sock_no_getname +EXPORT_SYMBOL vmlinux 0x493489e2 key_link +EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x49621a8c snd_timer_notify +EXPORT_SYMBOL vmlinux 0x497b45e0 snd_timer_global_register +EXPORT_SYMBOL vmlinux 0x4980a627 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x498815c7 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x498d2722 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x499cb58c prepare_to_wait +EXPORT_SYMBOL vmlinux 0x49a41b82 blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49b5c219 fs_bio_set +EXPORT_SYMBOL vmlinux 0x49b77ed2 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x49c899fb inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x49ebacbd _clear_bit +EXPORT_SYMBOL vmlinux 0x49f5ce64 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x4a184c1b md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x4a28acbc netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x4a29b38a ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x4a39e5a1 omap_set_dma_src_params +EXPORT_SYMBOL vmlinux 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL vmlinux 0x4a401f72 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x4a57b339 wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x4a59030a blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x4a6a91f6 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x4a8c74e5 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x4a8fa947 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x4a904619 setattr_copy +EXPORT_SYMBOL vmlinux 0x4a96d7cf delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x4aa5a0da page_address +EXPORT_SYMBOL vmlinux 0x4aa95be3 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk +EXPORT_SYMBOL vmlinux 0x4aca2024 security_inode_readlink +EXPORT_SYMBOL vmlinux 0x4acc683c jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource +EXPORT_SYMBOL vmlinux 0x4afaab89 pci_bus_get +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b1cfca7 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x4b33ff75 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b73de06 rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0x4b78933c qcom_scm_set_cold_boot_addr +EXPORT_SYMBOL vmlinux 0x4b983543 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bafd021 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x4bb4c23e nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x4bc9bb42 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x4bce0f36 gen_pool_create +EXPORT_SYMBOL vmlinux 0x4bcf03a4 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x4be7fb63 up +EXPORT_SYMBOL vmlinux 0x4be85a03 memweight +EXPORT_SYMBOL vmlinux 0x4c233a44 _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0x4c29dcbf cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr +EXPORT_SYMBOL vmlinux 0x4c2c43fa ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x4c33081d omapdss_compat_uninit +EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf +EXPORT_SYMBOL vmlinux 0x4c3492a7 of_get_parent +EXPORT_SYMBOL vmlinux 0x4c5fc58c _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x4c6c59df sock_no_poll +EXPORT_SYMBOL vmlinux 0x4c6e5b04 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x4c7871da blk_run_queue +EXPORT_SYMBOL vmlinux 0x4c799ed2 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x4c86184b remove_wait_queue +EXPORT_SYMBOL vmlinux 0x4cac26c9 inet6_release +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4cf8a7c0 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x4d08bb2a rwsem_wake +EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page +EXPORT_SYMBOL vmlinux 0x4d209542 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x4d21599d __blk_end_request_all +EXPORT_SYMBOL vmlinux 0x4d272917 pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0x4d3ac3b6 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x4d3b0f33 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask +EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d4ce6f7 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x4d4f150f pci_enable_msix +EXPORT_SYMBOL vmlinux 0x4d55a8a4 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4d9b6d35 snd_pcm_format_size +EXPORT_SYMBOL vmlinux 0x4da8a291 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x4dae8a00 input_register_device +EXPORT_SYMBOL vmlinux 0x4daf9d44 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x4dc69370 snd_timer_new +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4dec6038 memscan +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4df1766f blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x4dff1d9d kill_pgrp +EXPORT_SYMBOL vmlinux 0x4e026d50 tc_classify +EXPORT_SYMBOL vmlinux 0x4e10081e do_splice_to +EXPORT_SYMBOL vmlinux 0x4e1562f1 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x4e1c4cda inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x4e237e68 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e3a8fe7 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x4e3fc408 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x4e44cdd5 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x4e506013 omap_dma_link_lch +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e936c56 __f_setown +EXPORT_SYMBOL vmlinux 0x4e998999 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x4e9f2d5b tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x4eaf5f91 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x4eb226a7 __kfree_skb +EXPORT_SYMBOL vmlinux 0x4eb35824 tcp_destroy_cgroup +EXPORT_SYMBOL vmlinux 0x4ecec992 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x4ecf4a8d skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x4ef9f80b netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x4efc8216 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x4efe5273 vfs_symlink +EXPORT_SYMBOL vmlinux 0x4f071c7a tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f1f719b to_ndd +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f2bae78 snd_pcm_suspend_all +EXPORT_SYMBOL vmlinux 0x4f3882a7 dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x4f54d508 vm_map_ram +EXPORT_SYMBOL vmlinux 0x4f6041ef dns_query +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f6d9ca5 devm_gpio_free +EXPORT_SYMBOL vmlinux 0x4f7882c8 clear_wb_congested +EXPORT_SYMBOL vmlinux 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL vmlinux 0x4f843fe0 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x4f89c9de gpmc_cs_free +EXPORT_SYMBOL vmlinux 0x4fda4ff4 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x4fe2f14e jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x50252ac4 devm_release_resource +EXPORT_SYMBOL vmlinux 0x50347b95 netlink_capable +EXPORT_SYMBOL vmlinux 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL vmlinux 0x505c383f __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x5079d1d4 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x5080725e input_inject_event +EXPORT_SYMBOL vmlinux 0x50831fe3 drop_super +EXPORT_SYMBOL vmlinux 0x509232b1 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x509817cf vprintk_emit +EXPORT_SYMBOL vmlinux 0x50a1c1df skb_store_bits +EXPORT_SYMBOL vmlinux 0x50b194dc dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x50b66bcb radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x50bec8d8 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x50d5612e dispc_mgr_get_sync_lost_irq +EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x50e1d265 input_get_keycode +EXPORT_SYMBOL vmlinux 0x50ed71ef __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x510f7816 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x511269ee inode_dio_wait +EXPORT_SYMBOL vmlinux 0x511746c1 dump_fpu +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x512be4f3 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x512c18e6 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x514cc273 arm_copy_from_user +EXPORT_SYMBOL vmlinux 0x515cf2af fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0x51671ec3 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x516ad155 lro_receive_skb +EXPORT_SYMBOL vmlinux 0x5175daca fb_pan_display +EXPORT_SYMBOL vmlinux 0x517a75f5 fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0x51892f6d dst_init +EXPORT_SYMBOL vmlinux 0x518ad419 genphy_update_link +EXPORT_SYMBOL vmlinux 0x51c02731 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x51d559d1 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x51e29f7d register_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid +EXPORT_SYMBOL vmlinux 0x51e9de1c inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup +EXPORT_SYMBOL vmlinux 0x51ff450e iov_iter_advance +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x5203449f inet6_getname +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x5220b5e7 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x52569df4 led_set_brightness +EXPORT_SYMBOL vmlinux 0x527be0d8 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x528d0c14 idr_init +EXPORT_SYMBOL vmlinux 0x528f79c9 fasync_helper +EXPORT_SYMBOL vmlinux 0x52906371 may_umount_tree +EXPORT_SYMBOL vmlinux 0x52acc1e8 neigh_table_init +EXPORT_SYMBOL vmlinux 0x52af562a __crc32c_le +EXPORT_SYMBOL vmlinux 0x52b863e8 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x52bb841c atomic_io_modify_relaxed +EXPORT_SYMBOL vmlinux 0x52cdd8a0 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x530ed428 d_drop +EXPORT_SYMBOL vmlinux 0x5312d28e i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x5359a2c1 of_device_alloc +EXPORT_SYMBOL vmlinux 0x535b379f skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x536f36b0 fsnotify_put_group +EXPORT_SYMBOL vmlinux 0x537f562d tcp_disconnect +EXPORT_SYMBOL vmlinux 0x5380e0b6 netdev_alert +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x53a1070b mmc_can_erase +EXPORT_SYMBOL vmlinux 0x53e81b0d fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x53ea75b4 send_sig_info +EXPORT_SYMBOL vmlinux 0x53ef24ad generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x53fc8bc5 flush_old_exec +EXPORT_SYMBOL vmlinux 0x540064d0 d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0x5408575f security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x5448acbb of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x5451be94 drop_nlink +EXPORT_SYMBOL vmlinux 0x547077ec __wake_up_bit +EXPORT_SYMBOL vmlinux 0x547526f5 processor +EXPORT_SYMBOL vmlinux 0x5476cfe2 mpage_writepages +EXPORT_SYMBOL vmlinux 0x547ce898 dispc_read_irqenable +EXPORT_SYMBOL vmlinux 0x548dc7b2 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x549e4e35 pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54c1fd16 udplite_prot +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54c592d9 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x54c72e84 cdev_alloc +EXPORT_SYMBOL vmlinux 0x54caccf8 netdev_emerg +EXPORT_SYMBOL vmlinux 0x54da34af kernel_accept +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54ef3a23 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x54f1b998 pci_get_slot +EXPORT_SYMBOL vmlinux 0x54f6830a omapdss_get_default_display_name +EXPORT_SYMBOL vmlinux 0x550eb59e snd_card_free_when_closed +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x5539f385 skb_insert +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x556e85bd pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x55bbb757 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x55c85353 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55fea2d8 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x560385fc vfs_read +EXPORT_SYMBOL vmlinux 0x5605b2ed devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x5607c494 tty_hangup +EXPORT_SYMBOL vmlinux 0x560a5a77 vfs_unlink +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x563db486 blk_delay_queue +EXPORT_SYMBOL vmlinux 0x563e9cfa lock_sock_nested +EXPORT_SYMBOL vmlinux 0x563f518e genphy_read_status +EXPORT_SYMBOL vmlinux 0x5662ebe4 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x566bc7a9 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x5674a3bc skb_copy +EXPORT_SYMBOL vmlinux 0x5689afe7 dispc_ovl_enable +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x56a026bb mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x56a25d0a param_set_ushort +EXPORT_SYMBOL vmlinux 0x56a3e8d9 __get_user_pages +EXPORT_SYMBOL vmlinux 0x56aba243 seq_read +EXPORT_SYMBOL vmlinux 0x56abb38f __elv_add_request +EXPORT_SYMBOL vmlinux 0x56b73a0c dmam_release_declared_memory +EXPORT_SYMBOL vmlinux 0x56bc2f15 dispc_ovl_set_channel_out +EXPORT_SYMBOL vmlinux 0x56c5ec62 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56f5292f padata_add_cpu +EXPORT_SYMBOL vmlinux 0x56f9050b blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x56facdbd tty_free_termios +EXPORT_SYMBOL vmlinux 0x571462bc twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x571ce75a mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x5746f94a blk_start_queue_async +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x5750ed91 input_allocate_device +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x5774d28b swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0x5779d3fa dev_addr_del +EXPORT_SYMBOL vmlinux 0x57802025 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x578fd612 dev_set_group +EXPORT_SYMBOL vmlinux 0x57a9de52 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x57b157e0 of_node_get +EXPORT_SYMBOL vmlinux 0x57b304c4 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x57bda74d framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x57be17a7 of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x57c51a6b blk_stack_limits +EXPORT_SYMBOL vmlinux 0x57d448b8 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x57d4d25e revert_creds +EXPORT_SYMBOL vmlinux 0x57e6fdc8 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x57e7278a generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x57fd2756 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x5802b297 snd_pcm_kernel_ioctl +EXPORT_SYMBOL vmlinux 0x58088728 __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x58516557 omap_set_dma_src_data_pack +EXPORT_SYMBOL vmlinux 0x5857b7cd pgprot_kernel +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x58769651 param_get_charp +EXPORT_SYMBOL vmlinux 0x588120de blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x58888dbb input_grab_device +EXPORT_SYMBOL vmlinux 0x588d0178 put_cmsg +EXPORT_SYMBOL vmlinux 0x58976fe2 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x58ae28f9 param_ops_string +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58c277ff cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x58d633c7 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x58e2cdb3 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58e48675 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x5905d860 vm_stat +EXPORT_SYMBOL vmlinux 0x59211c1a qdisc_reset +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x594e1317 __modsi3 +EXPORT_SYMBOL vmlinux 0x5959de6c dm_put_table_device +EXPORT_SYMBOL vmlinux 0x59773f7d __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x598542b2 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x598cd828 udp_table +EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x59a6c5d9 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59c6756a crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x59d29dab v7_flush_kern_dcache_area +EXPORT_SYMBOL vmlinux 0x59d603c6 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x59e5070d __do_div64 +EXPORT_SYMBOL vmlinux 0x59fef453 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a145b94 tcf_register_action +EXPORT_SYMBOL vmlinux 0x5a3005bd submit_bh +EXPORT_SYMBOL vmlinux 0x5a4c4166 jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0x5a68d79f iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x5a968601 ps2_end_command +EXPORT_SYMBOL vmlinux 0x5aa3dc7c dev_addr_init +EXPORT_SYMBOL vmlinux 0x5aa69201 blk_put_queue +EXPORT_SYMBOL vmlinux 0x5acd0f94 rtnl_notify +EXPORT_SYMBOL vmlinux 0x5ad72fda __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0x5adccb98 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x5ae5be44 lg_lock_init +EXPORT_SYMBOL vmlinux 0x5ae72aed icmp_send +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem +EXPORT_SYMBOL vmlinux 0x5b253e57 skb_checksum +EXPORT_SYMBOL vmlinux 0x5b50ad7c dev_alloc_name +EXPORT_SYMBOL vmlinux 0x5b6cd0a1 elv_rb_add +EXPORT_SYMBOL vmlinux 0x5b6ec417 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x5b777eee seq_release +EXPORT_SYMBOL vmlinux 0x5b89c8c2 dentry_unhash +EXPORT_SYMBOL vmlinux 0x5b922f80 nvm_get_blk +EXPORT_SYMBOL vmlinux 0x5b9a33d0 mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0x5bc15a7d nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0x5bd5ed4f param_ops_uint +EXPORT_SYMBOL vmlinux 0x5be5c84d ptp_clock_event +EXPORT_SYMBOL vmlinux 0x5bead40e __neigh_event_send +EXPORT_SYMBOL vmlinux 0x5beeeb99 nvm_dev_factory +EXPORT_SYMBOL vmlinux 0x5bfdda1d vlan_vid_add +EXPORT_SYMBOL vmlinux 0x5c1a5b37 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x5c2271ee generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x5c2f2b42 mtd_concat_create +EXPORT_SYMBOL vmlinux 0x5c397b1d skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x5c608da1 pci_get_class +EXPORT_SYMBOL vmlinux 0x5c77c972 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x5c7ea4b3 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x5c9284a0 processor_id +EXPORT_SYMBOL vmlinux 0x5c98fa86 vga_get +EXPORT_SYMBOL vmlinux 0x5ca0595e dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x5cbce5b7 abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0x5cdcf53a t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x5cdddddb kern_unmount +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cfdcacf pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x5d2fdb12 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x5d33e6fb bdi_register_dev +EXPORT_SYMBOL vmlinux 0x5d4edd18 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d92c2e3 netif_rx_ni +EXPORT_SYMBOL vmlinux 0x5d938ebb netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x5d93e602 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x5d9ba425 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x5da2ab4a inet_select_addr +EXPORT_SYMBOL vmlinux 0x5daf6902 snd_pcm_hw_refine +EXPORT_SYMBOL vmlinux 0x5db108ad seq_dentry +EXPORT_SYMBOL vmlinux 0x5dc1eaf3 submit_bio +EXPORT_SYMBOL vmlinux 0x5dcf6341 outer_cache +EXPORT_SYMBOL vmlinux 0x5dd11142 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x5de1169c pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x5deef4a7 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x5e0f0dc9 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x5e1a9203 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x5e2faef6 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x5e6f8ae4 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5ea6ecbc generic_file_mmap +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed4294b mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x5ee033bc devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x5ee20bc8 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x5ee6c2cb tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x5ee9162e max8925_reg_read +EXPORT_SYMBOL vmlinux 0x5efa14a2 kernel_bind +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f199d55 omapdss_unregister_output +EXPORT_SYMBOL vmlinux 0x5f1fa9ee d_prune_aliases +EXPORT_SYMBOL vmlinux 0x5f22e72e writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x5f27323c _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x5f3eb0ee omapdss_register_display +EXPORT_SYMBOL vmlinux 0x5f4f6f72 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x5f51e586 eth_type_trans +EXPORT_SYMBOL vmlinux 0x5f52c7b4 get_io_context +EXPORT_SYMBOL vmlinux 0x5f66ac59 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x5f68c805 dev_uc_del +EXPORT_SYMBOL vmlinux 0x5f754e5a memset +EXPORT_SYMBOL vmlinux 0x5f755380 blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0x5f816b6a __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x5f85148b snd_power_wait +EXPORT_SYMBOL vmlinux 0x5fcef69f set_create_files_as +EXPORT_SYMBOL vmlinux 0x5fd268cb radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5fe188af default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x5ff11cc3 pcibios_min_io +EXPORT_SYMBOL vmlinux 0x6003e794 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x60055baa dispc_mgr_get_vsync_irq +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x600e3968 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x601bb6b0 reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x602c96f0 copy_to_user_fromio +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x603be610 vfs_readv +EXPORT_SYMBOL vmlinux 0x604206c8 flush_dcache_page +EXPORT_SYMBOL vmlinux 0x60561c5f write_inode_now +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x60867deb jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x6091f6e5 __serio_register_port +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60b1e74a posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0x60b86f61 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x60b98460 set_cached_acl +EXPORT_SYMBOL vmlinux 0x60c6930d find_inode_nowait +EXPORT_SYMBOL vmlinux 0x60cddb9f generic_delete_inode +EXPORT_SYMBOL vmlinux 0x60d10504 ata_dev_printk +EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x60e90629 dget_parent +EXPORT_SYMBOL vmlinux 0x60f4d478 phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0x6122dbb2 dcache_readdir +EXPORT_SYMBOL vmlinux 0x61271d88 dquot_file_open +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x61448fcc invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x61594c9a of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x6162af77 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x617a218d __cond_resched_lock +EXPORT_SYMBOL vmlinux 0x617c2a07 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x619e966a devfreq_interval_update +EXPORT_SYMBOL vmlinux 0x61b3560c cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61c0858f mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x61d6f57a xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x61e8e48e netdev_features_change +EXPORT_SYMBOL vmlinux 0x620b78ea omap_dss_get_next_device +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6218a824 md_integrity_register +EXPORT_SYMBOL vmlinux 0x6220b4a2 crc32_le +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x62296be1 qcom_scm_get_version +EXPORT_SYMBOL vmlinux 0x6239ce7b kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x623d016f phy_suspend +EXPORT_SYMBOL vmlinux 0x6269240d kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x6279a648 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x627b4b0f devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x628cab23 mpage_readpage +EXPORT_SYMBOL vmlinux 0x6292be40 blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0x6299fb2d sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x62a5f067 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x62aa7ae9 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x62b2e44c ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x62cae6b1 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x630dcd4a filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x630dcf1d sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x6340d809 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x63440f63 snd_ctl_remove_id +EXPORT_SYMBOL vmlinux 0x63479c32 inet6_offloads +EXPORT_SYMBOL vmlinux 0x63570723 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x636b3461 omap_dss_get_num_overlays +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63b0d14b update_region +EXPORT_SYMBOL vmlinux 0x63b6016d fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63dad91b dquot_alloc +EXPORT_SYMBOL vmlinux 0x63e0ac9c bio_split +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63f10ca6 nf_log_trace +EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user +EXPORT_SYMBOL vmlinux 0x64010ab6 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x64355be0 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x6437c78a dev_add_offload +EXPORT_SYMBOL vmlinux 0x643b698a twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x64465e0e gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x645a2251 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x647ccd0d snd_ctl_unregister_ioctl +EXPORT_SYMBOL vmlinux 0x64818665 blkdev_fsync +EXPORT_SYMBOL vmlinux 0x6482c3d4 d_move +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a22ff0 dispc_mgr_set_lcd_config +EXPORT_SYMBOL vmlinux 0x64b0dfb0 get_disk +EXPORT_SYMBOL vmlinux 0x64bbfd84 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL vmlinux 0x64cde322 ll_rw_block +EXPORT_SYMBOL vmlinux 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x652bf25a blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x65348710 bitmap_unplug +EXPORT_SYMBOL vmlinux 0x653685c9 kernel_write +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x65466939 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x6546a550 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x655acac6 phy_find_first +EXPORT_SYMBOL vmlinux 0x6563864c cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x6565d33f scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x65ad2568 blk_init_queue +EXPORT_SYMBOL vmlinux 0x65bc8ab4 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x65bcbb15 con_is_bound +EXPORT_SYMBOL vmlinux 0x65ce253f generic_perform_write +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65e16f77 mmc_can_discard +EXPORT_SYMBOL vmlinux 0x65f0be68 simple_write_begin +EXPORT_SYMBOL vmlinux 0x65f0ea89 xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x65f9065f dma_release_declared_memory +EXPORT_SYMBOL vmlinux 0x66117419 snd_pcm_hw_constraint_step +EXPORT_SYMBOL vmlinux 0x661bd737 snd_pcm_suspend +EXPORT_SYMBOL vmlinux 0x6637c709 check_disk_size_change +EXPORT_SYMBOL vmlinux 0x663e9c08 key_task_permission +EXPORT_SYMBOL vmlinux 0x66419cb2 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x66422829 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x664b2cb3 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x665e1b2b of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x66654836 backlight_force_update +EXPORT_SYMBOL vmlinux 0x667d70db downgrade_write +EXPORT_SYMBOL vmlinux 0x6687f372 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x66bd52fd phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x66c59841 sock_no_accept +EXPORT_SYMBOL vmlinux 0x66d19682 elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0x66d3f309 path_put +EXPORT_SYMBOL vmlinux 0x6701589a blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x67297e1b clear_nlink +EXPORT_SYMBOL vmlinux 0x6745291e snd_timer_open +EXPORT_SYMBOL vmlinux 0x676bbc0f _set_bit +EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create +EXPORT_SYMBOL vmlinux 0x67a37882 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x67b1496e input_flush_device +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67bb503e inet_add_protocol +EXPORT_SYMBOL vmlinux 0x67d7ada1 read_cache_page +EXPORT_SYMBOL vmlinux 0x67d8e4bb pci_clear_master +EXPORT_SYMBOL vmlinux 0x67e02294 kobject_set_name +EXPORT_SYMBOL vmlinux 0x67f41643 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x67f704af get_task_io_context +EXPORT_SYMBOL vmlinux 0x68078e0b inet6_ioctl +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x68182a69 param_get_ulong +EXPORT_SYMBOL vmlinux 0x6832d7bf sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x683b5f71 stop_tty +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x6885ce8d i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x68869bae panic_notifier_list +EXPORT_SYMBOL vmlinux 0x6894b11a of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x68993d42 fput +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x68c85f5d audit_log +EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s +EXPORT_SYMBOL vmlinux 0x6905ddff bio_chain +EXPORT_SYMBOL vmlinux 0x690aeca2 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x690e25d9 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x6915eb38 down_interruptible +EXPORT_SYMBOL vmlinux 0x69225e35 kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0x6930362c neigh_xmit +EXPORT_SYMBOL vmlinux 0x6930ddb4 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x693e64b1 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x694b4b05 scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0x69636cec xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6971543a simple_release_fs +EXPORT_SYMBOL vmlinux 0x6976852f n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x698ad1cb snd_pcm_limit_hw_rates +EXPORT_SYMBOL vmlinux 0x69914e79 filemap_fdatawait +EXPORT_SYMBOL vmlinux 0x69a0fe64 snd_pcm_lib_write +EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource +EXPORT_SYMBOL vmlinux 0x69a537dc pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69ae0be6 input_register_handle +EXPORT_SYMBOL vmlinux 0x69b6f8d9 omap_set_dma_transfer_params +EXPORT_SYMBOL vmlinux 0x69e05360 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x69e3bb92 ether_setup +EXPORT_SYMBOL vmlinux 0x69ebbc60 vme_dma_request +EXPORT_SYMBOL vmlinux 0x69eeb2d8 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a15d95b sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x6a1f067d tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x6a3854c1 mutex_trylock +EXPORT_SYMBOL vmlinux 0x6a3bc7b9 mem_map +EXPORT_SYMBOL vmlinux 0x6a4803a1 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x6a567b22 scsi_execute +EXPORT_SYMBOL vmlinux 0x6a57f909 ipv4_specific +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a689794 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x6a75c1a9 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x6a76536e tcp_seq_open +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6a89044d tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x6ab44184 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x6abdf965 blk_rq_init +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b0cce87 __brelse +EXPORT_SYMBOL vmlinux 0x6b149790 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x6b160e96 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b3d3b55 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x6b48b7bf phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0x6b5e112f keyring_alloc +EXPORT_SYMBOL vmlinux 0x6b6ded79 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x6b6ea0a6 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x6b722d47 free_netdev +EXPORT_SYMBOL vmlinux 0x6b7a1e16 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x6b9525b0 sock_rfree +EXPORT_SYMBOL vmlinux 0x6b95daf3 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x6bbbf01b neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bc8f104 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer +EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn +EXPORT_SYMBOL vmlinux 0x6c2b7a2a phy_device_remove +EXPORT_SYMBOL vmlinux 0x6c3accb4 mmc_start_bkops +EXPORT_SYMBOL vmlinux 0x6c411065 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c6cdd4d wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6cdbc8af jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6cedadd8 elm_decode_bch_error_page +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d1c44dd lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d4e4a57 input_reset_device +EXPORT_SYMBOL vmlinux 0x6d508746 file_remove_privs +EXPORT_SYMBOL vmlinux 0x6d57bf70 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x6d603369 generic_make_request +EXPORT_SYMBOL vmlinux 0x6d662533 _find_first_bit_le +EXPORT_SYMBOL vmlinux 0x6d6ad5ba freeze_bdev +EXPORT_SYMBOL vmlinux 0x6d7aa464 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x6d84a28c is_nd_btt +EXPORT_SYMBOL vmlinux 0x6d8787f8 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x6d8ff308 blk_free_tags +EXPORT_SYMBOL vmlinux 0x6dafbfb8 register_console +EXPORT_SYMBOL vmlinux 0x6db3eb85 mount_single +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e19f7a6 inc_nlink +EXPORT_SYMBOL vmlinux 0x6e29a7a3 up_read +EXPORT_SYMBOL vmlinux 0x6e2a4502 mmc_release_host +EXPORT_SYMBOL vmlinux 0x6e4c909d kdb_current_task +EXPORT_SYMBOL vmlinux 0x6e5e22fe mmc_align_data_size +EXPORT_SYMBOL vmlinux 0x6e60ecbd blk_queue_split +EXPORT_SYMBOL vmlinux 0x6e61ece7 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x6e6514ed radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e949a22 tc6393xb_lcd_set_power +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ec9ccdb _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x6ed89c21 pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0x6ede03f9 page_follow_link_light +EXPORT_SYMBOL vmlinux 0x6ef07ba0 __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x6ef62bb0 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL vmlinux 0x6f07b988 eth_header_cache +EXPORT_SYMBOL vmlinux 0x6f0f06bd param_get_long +EXPORT_SYMBOL vmlinux 0x6f13130c mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x6f1a6a22 snd_dma_free_pages +EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash +EXPORT_SYMBOL vmlinux 0x6f299527 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x6f49254c tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x6f4d52d2 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x6f5edff9 generic_setlease +EXPORT_SYMBOL vmlinux 0x6f716c49 lookup_one_len +EXPORT_SYMBOL vmlinux 0x6f8116dd read_cache_pages +EXPORT_SYMBOL vmlinux 0x6f887876 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6f9a1f5f kunmap +EXPORT_SYMBOL vmlinux 0x6fa493d5 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x6fb8ce6b sk_receive_skb +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fc2bfbd devm_iounmap +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6ff3862a fb_blank +EXPORT_SYMBOL vmlinux 0x6ffb5c22 blk_init_tags +EXPORT_SYMBOL vmlinux 0x70097aa0 nand_bch_free +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x706115b9 migrate_page_copy +EXPORT_SYMBOL vmlinux 0x7062b4cd cmdline_parts_free +EXPORT_SYMBOL vmlinux 0x70696fbb override_creds +EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync +EXPORT_SYMBOL vmlinux 0x70704552 amba_driver_unregister +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x70876ec8 snd_ctl_find_id +EXPORT_SYMBOL vmlinux 0x70ae913e pci_disable_msix +EXPORT_SYMBOL vmlinux 0x70b9e12b lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0x70bbf7f2 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL vmlinux 0x70e39dae dss_uninstall_mgr_ops +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x70fd5fdc nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x70fde331 vfs_fsync +EXPORT_SYMBOL vmlinux 0x710afa69 blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x7119b085 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x7119db7f omap_dss_pal_timings +EXPORT_SYMBOL vmlinux 0x7129798c i2c_del_driver +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x712ed37b radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x7136245b do_splice_direct +EXPORT_SYMBOL vmlinux 0x71524195 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x7169102e omap_dss_ntsc_timings +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x71930c65 vme_register_bridge +EXPORT_SYMBOL vmlinux 0x71973c7e pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x7197d565 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71b59546 dm_register_target +EXPORT_SYMBOL vmlinux 0x71c15e65 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x71c3b84e find_lock_entry +EXPORT_SYMBOL vmlinux 0x71c4dcc6 seq_puts +EXPORT_SYMBOL vmlinux 0x71c90087 memcmp +EXPORT_SYMBOL vmlinux 0x71e68278 netlink_ack +EXPORT_SYMBOL vmlinux 0x71ebedaa kmem_cache_size +EXPORT_SYMBOL vmlinux 0x71f65175 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x721b9ba2 simple_lookup +EXPORT_SYMBOL vmlinux 0x722e8060 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x72350130 ___ratelimit +EXPORT_SYMBOL vmlinux 0x7238ae50 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x72405373 netdev_notice +EXPORT_SYMBOL vmlinux 0x7255b6d0 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x72619f34 generic_removexattr +EXPORT_SYMBOL vmlinux 0x72802a76 padata_stop +EXPORT_SYMBOL vmlinux 0x7296d8a2 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x72a106f2 param_ops_long +EXPORT_SYMBOL vmlinux 0x72b0b5dd sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x72b9492b textsearch_prepare +EXPORT_SYMBOL vmlinux 0x72d58de9 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x72da2336 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72f4cab9 inet_shutdown +EXPORT_SYMBOL vmlinux 0x72f6f432 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x72f7927e vga_client_register +EXPORT_SYMBOL vmlinux 0x73158440 of_match_node +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x73235cf6 from_kprojid +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x73405874 __devm_request_region +EXPORT_SYMBOL vmlinux 0x734687d4 noop_llseek +EXPORT_SYMBOL vmlinux 0x73730acd shdma_request_irq +EXPORT_SYMBOL vmlinux 0x7390eca1 unregister_binfmt +EXPORT_SYMBOL vmlinux 0x73a88564 pci_get_subsys +EXPORT_SYMBOL vmlinux 0x73bf42ce sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x73d81818 kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy +EXPORT_SYMBOL vmlinux 0x73f5ea9f __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x73fdc937 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x73fe439f blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x7406b944 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x742e1421 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x743260ed pcim_iomap +EXPORT_SYMBOL vmlinux 0x7449f2b6 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x74599212 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x74645129 mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x749788de snd_register_oss_device +EXPORT_SYMBOL vmlinux 0x749948a2 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c2c50c xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x74d18788 __serio_register_driver +EXPORT_SYMBOL vmlinux 0x74e3a6d6 dev_driver_string +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74eac2f8 key_unlink +EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv +EXPORT_SYMBOL vmlinux 0x751fac3f dev_get_stats +EXPORT_SYMBOL vmlinux 0x75254049 page_readlink +EXPORT_SYMBOL vmlinux 0x75275322 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x753652a9 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x754bfc91 d_tmpfile +EXPORT_SYMBOL vmlinux 0x754edf09 inet6_bind +EXPORT_SYMBOL vmlinux 0x7561a5af load_nls_default +EXPORT_SYMBOL vmlinux 0x7568e6c7 kernel_listen +EXPORT_SYMBOL vmlinux 0x7570e021 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x75734b1e gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x75850ab0 xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0x75850d01 __vmalloc +EXPORT_SYMBOL vmlinux 0x758af084 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 +EXPORT_SYMBOL vmlinux 0x75a21b32 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75cbf219 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x75e901eb netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x75f93143 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x7601e74d pid_task +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x761418da rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x76176bb0 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x76256dfb scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0x763237b9 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL vmlinux 0x76345456 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764b5044 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x764bd77c request_resource +EXPORT_SYMBOL vmlinux 0x7657c8a4 vme_irq_generate +EXPORT_SYMBOL vmlinux 0x76945bee redraw_screen +EXPORT_SYMBOL vmlinux 0x76987cbd of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0x76ae215a __nla_reserve +EXPORT_SYMBOL vmlinux 0x76c97e5c try_to_release_page +EXPORT_SYMBOL vmlinux 0x76cc35f3 nf_log_register +EXPORT_SYMBOL vmlinux 0x76cf47f6 __aeabi_llsl +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76d9bf11 crc32_be +EXPORT_SYMBOL vmlinux 0x76e8257c blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x76f6c5ef kmalloc_order +EXPORT_SYMBOL vmlinux 0x76f8f022 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x770e89ff blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0x77114062 migrate_page +EXPORT_SYMBOL vmlinux 0x77147aa2 find_get_entry +EXPORT_SYMBOL vmlinux 0x77154a38 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x772519be gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x773eec31 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x7759478d inode_change_ok +EXPORT_SYMBOL vmlinux 0x778cc5f5 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77ba35fe security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77d85d4d blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0x77dd6979 swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0x77e9e94d of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0x77fa1a63 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x77faa5f7 inet_listen +EXPORT_SYMBOL vmlinux 0x7810a88b fence_signal_locked +EXPORT_SYMBOL vmlinux 0x7815032d inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x782c5373 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x7833deb2 pgprot_user +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x783b977a kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x784b3310 poll_freewait +EXPORT_SYMBOL vmlinux 0x784e8a25 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x787ad01e devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78ca7155 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x78d55b6f pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78f3f6da dentry_update_name_case +EXPORT_SYMBOL vmlinux 0x78fdeaa4 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x791c0b89 of_mm_gpiochip_remove +EXPORT_SYMBOL vmlinux 0x7934536c twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x79503318 filp_open +EXPORT_SYMBOL vmlinux 0x795108aa vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x79556f36 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x796f13dd dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x797c7b56 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79ca00d6 serio_open +EXPORT_SYMBOL vmlinux 0x79d3c1ca udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x79ee19f4 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x79fa8439 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x7a1f2611 dispc_mgr_set_timings +EXPORT_SYMBOL vmlinux 0x7a2754d5 __destroy_inode +EXPORT_SYMBOL vmlinux 0x7a2add7d current_kernel_time64 +EXPORT_SYMBOL vmlinux 0x7a372ff1 ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a466173 load_nls +EXPORT_SYMBOL vmlinux 0x7a5563f4 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x7a5c8a3b proc_mkdir +EXPORT_SYMBOL vmlinux 0x7a64b6fd twl6040_power +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aa45cdb page_symlink +EXPORT_SYMBOL vmlinux 0x7ab604bf __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ad03b2d simple_transaction_release +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ad202eb tcp_release_cb +EXPORT_SYMBOL vmlinux 0x7af976bc xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf +EXPORT_SYMBOL vmlinux 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL vmlinux 0x7b012caf sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x7b0739ee mntput +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b1ade38 lz4_decompress +EXPORT_SYMBOL vmlinux 0x7b215773 blk_make_request +EXPORT_SYMBOL vmlinux 0x7b222a9f snd_card_set_id +EXPORT_SYMBOL vmlinux 0x7b262d26 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x7b2e0dbb __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x7b383830 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap +EXPORT_SYMBOL vmlinux 0x7b81c8bf tcp_proto_cgroup +EXPORT_SYMBOL vmlinux 0x7b836a05 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x7b8f0885 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x7b91125f add_random_ready_callback +EXPORT_SYMBOL vmlinux 0x7b999108 tcf_hash_check +EXPORT_SYMBOL vmlinux 0x7ba31020 seq_open_private +EXPORT_SYMBOL vmlinux 0x7ba3f5a0 dev_addr_flush +EXPORT_SYMBOL vmlinux 0x7bae2748 __secpath_destroy +EXPORT_SYMBOL vmlinux 0x7bb2a48e ip6_frag_match +EXPORT_SYMBOL vmlinux 0x7bc12a4e generic_start_io_acct +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c1dcc7e param_array_ops +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c49200b noop_fsync +EXPORT_SYMBOL vmlinux 0x7c61340c __release_region +EXPORT_SYMBOL vmlinux 0x7c758d12 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x7c83c634 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x7c8a83b8 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7c9e798e ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x7c9f79c8 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cc035a7 __ucmpdi2 +EXPORT_SYMBOL vmlinux 0x7cc9d163 sound_class +EXPORT_SYMBOL vmlinux 0x7ccd66e8 d_instantiate +EXPORT_SYMBOL vmlinux 0x7cd6155d devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce36679 dev_open +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d2c89d7 d_add_ci +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d975274 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x7d9a5e8e __skb_checksum +EXPORT_SYMBOL vmlinux 0x7dbc3c8c of_get_property +EXPORT_SYMBOL vmlinux 0x7dcad061 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x7dccc294 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7df5e557 param_get_ushort +EXPORT_SYMBOL vmlinux 0x7df91847 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x7dfffba0 snd_register_device +EXPORT_SYMBOL vmlinux 0x7e1a47be bprm_change_interp +EXPORT_SYMBOL vmlinux 0x7e1fa05f vfs_statfs +EXPORT_SYMBOL vmlinux 0x7e237b42 igrab +EXPORT_SYMBOL vmlinux 0x7e39735f scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x7e6fa3ef tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0x7e9c0e43 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x7e9efe8e complete_and_exit +EXPORT_SYMBOL vmlinux 0x7eb48d46 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x7eb5a48d amba_device_unregister +EXPORT_SYMBOL vmlinux 0x7ec113a1 mapping_tagged +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7ee7f093 dispc_ovl_compute_fifo_thresholds +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f0a7e41 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x7f0ccb20 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x7f18e5cf try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f306e9d find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x7f465e3d tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f63b31e _memcpy_toio +EXPORT_SYMBOL vmlinux 0x7f845873 abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0x7f979a07 devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0x7fa02279 of_get_pci_address +EXPORT_SYMBOL vmlinux 0x7fa9ab13 devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0x7fb87e51 do_SAK +EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7ff27bca dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x7ff724ab mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x7ffe933e fddi_type_trans +EXPORT_SYMBOL vmlinux 0x80038d7b inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x80077513 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x800e4ffa __muldi3 +EXPORT_SYMBOL vmlinux 0x8047cd32 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x804aabdf idr_is_empty +EXPORT_SYMBOL vmlinux 0x804de3fe f_setown +EXPORT_SYMBOL vmlinux 0x805112c3 free_task +EXPORT_SYMBOL vmlinux 0x8056406e seq_path +EXPORT_SYMBOL vmlinux 0x805ba299 padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x805bcca0 __inode_permission +EXPORT_SYMBOL vmlinux 0x8061d6d3 uart_register_driver +EXPORT_SYMBOL vmlinux 0x806a30d8 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x806ceeae pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0x808986ad skb_queue_head +EXPORT_SYMBOL vmlinux 0x8097da79 __vfs_read +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d664cd nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80ec5d59 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x80f3dce8 inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x810e4599 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x813a4d99 pci_choose_state +EXPORT_SYMBOL vmlinux 0x814c5d5e ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x81665e99 proc_symlink +EXPORT_SYMBOL vmlinux 0x819535c2 file_path +EXPORT_SYMBOL vmlinux 0x81a13ea6 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x81a5167d ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x81a5794d xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e73e87 lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x81e818d9 __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x81f56e9a phy_detach +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x822137e2 arm_heavy_mb +EXPORT_SYMBOL vmlinux 0x823034f7 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x824a4367 tmio_core_mmc_pwr +EXPORT_SYMBOL vmlinux 0x824d0edc tty_port_put +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x82948b96 page_put_link +EXPORT_SYMBOL vmlinux 0x8294ffc3 would_dump +EXPORT_SYMBOL vmlinux 0x8297c038 pci_save_state +EXPORT_SYMBOL vmlinux 0x829b30b2 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x82ab0806 ppp_input +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82ae0d01 init_net +EXPORT_SYMBOL vmlinux 0x82b5dd52 of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0x82bd644b module_put +EXPORT_SYMBOL vmlinux 0x82e03f0c netpoll_setup +EXPORT_SYMBOL vmlinux 0x82ec2202 request_key +EXPORT_SYMBOL vmlinux 0x82fe04f2 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x8309707d __skb_get_hash +EXPORT_SYMBOL vmlinux 0x831396c3 fence_signal +EXPORT_SYMBOL vmlinux 0x8315044c free_user_ns +EXPORT_SYMBOL vmlinux 0x8320bea8 __umodsi3 +EXPORT_SYMBOL vmlinux 0x833c9002 lock_sock_fast +EXPORT_SYMBOL vmlinux 0x8363b25e phy_stop +EXPORT_SYMBOL vmlinux 0x836be02c inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0x8372cd2f __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x8375d79d ida_destroy +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83dbcb60 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x840d405b phy_device_free +EXPORT_SYMBOL vmlinux 0x842b6c85 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x84a6ee6c bio_add_page +EXPORT_SYMBOL vmlinux 0x84aa272b sget_userns +EXPORT_SYMBOL vmlinux 0x84b183ae strncmp +EXPORT_SYMBOL vmlinux 0x84b9c536 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x84bf22b9 down_read_trylock +EXPORT_SYMBOL vmlinux 0x84c1b118 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x84c27416 locks_init_lock +EXPORT_SYMBOL vmlinux 0x84cfb43a inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x85029267 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x8527b043 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x8541c40e proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x85765fee omap_enable_dma_irq +EXPORT_SYMBOL vmlinux 0x857e2e04 generic_listxattr +EXPORT_SYMBOL vmlinux 0x8592f651 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x859911c1 copy_to_iter +EXPORT_SYMBOL vmlinux 0x85a02898 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x85b27594 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e1ec7f dev_mc_flush +EXPORT_SYMBOL vmlinux 0x85e37046 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x861d432a simple_dir_operations +EXPORT_SYMBOL vmlinux 0x862a5106 register_netdevice +EXPORT_SYMBOL vmlinux 0x863f4ffe thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x86860195 dss_feat_get_supported_displays +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x868b0f83 param_ops_short +EXPORT_SYMBOL vmlinux 0x86968dae __breadahead +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86a4889a kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x86a7b4d5 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x86aba0bd dma_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0x86cb69bb dss_mgr_set_lcd_config +EXPORT_SYMBOL vmlinux 0x86d3daf8 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x86e078d2 bio_alloc_pages +EXPORT_SYMBOL vmlinux 0x86f8d886 block_write_begin +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x86fe53cd snd_pcm_lib_ioctl +EXPORT_SYMBOL vmlinux 0x87003790 fence_init +EXPORT_SYMBOL vmlinux 0x8703f3b2 omap_dss_get_overlay_manager +EXPORT_SYMBOL vmlinux 0x870f2a6a ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x872707e7 bioset_create +EXPORT_SYMBOL vmlinux 0x87383013 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x873e3c5f ioremap_wc +EXPORT_SYMBOL vmlinux 0x873f0046 put_page +EXPORT_SYMBOL vmlinux 0x875996c6 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x87a465f8 dss_mgr_unregister_framedone_handler +EXPORT_SYMBOL vmlinux 0x87ac70f8 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x87dae2c1 build_skb +EXPORT_SYMBOL vmlinux 0x87dbd7dc generic_fillattr +EXPORT_SYMBOL vmlinux 0x87fc6beb scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x881e0e06 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x88221005 fb_find_mode +EXPORT_SYMBOL vmlinux 0x88328665 proto_register +EXPORT_SYMBOL vmlinux 0x88370d35 amba_driver_register +EXPORT_SYMBOL vmlinux 0x88417223 __mdiobus_register +EXPORT_SYMBOL vmlinux 0x884cdb68 clear_inode +EXPORT_SYMBOL vmlinux 0x886bc76f mempool_resize +EXPORT_SYMBOL vmlinux 0x886ef448 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x887ad2bc inet6_add_offload +EXPORT_SYMBOL vmlinux 0x8889f1ea devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x88a55e40 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x88adb2af tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x88b19f45 system_serial +EXPORT_SYMBOL vmlinux 0x890c57b5 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x8915a6dd param_ops_bint +EXPORT_SYMBOL vmlinux 0x8916b32d rtnl_create_link +EXPORT_SYMBOL vmlinux 0x891b05ba pps_register_source +EXPORT_SYMBOL vmlinux 0x8929372e __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x8951fa58 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x895918ce nvm_put_blk_unlocked +EXPORT_SYMBOL vmlinux 0x895c60a6 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x899a66ba security_path_link +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89b5c5b4 amba_request_regions +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89f7fbf4 vfs_rename +EXPORT_SYMBOL vmlinux 0x89fc85ee netif_device_detach +EXPORT_SYMBOL vmlinux 0x8a0f4230 rename_lock +EXPORT_SYMBOL vmlinux 0x8a12e71d clk_get +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a263082 pci_dev_get +EXPORT_SYMBOL vmlinux 0x8a2c4c95 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a4fa83b __aeabi_llsr +EXPORT_SYMBOL vmlinux 0x8a50659d blk_put_request +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a62ae94 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aa1a4cf snd_timer_interrupt +EXPORT_SYMBOL vmlinux 0x8aa4be4f mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x8ac1b86a filp_close +EXPORT_SYMBOL vmlinux 0x8ac6fca5 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x8b19619e posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x8b25fb74 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b3a5d30 nvm_register_target +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b4e835c fb_show_logo +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b637b2b skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x8b7134d0 d_walk +EXPORT_SYMBOL vmlinux 0x8b7eeeb0 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8bc7a57a dma_supported +EXPORT_SYMBOL vmlinux 0x8bca4561 dev_deactivate +EXPORT_SYMBOL vmlinux 0x8c0a5986 sk_common_release +EXPORT_SYMBOL vmlinux 0x8c131d3e from_kuid +EXPORT_SYMBOL vmlinux 0x8c2c6db5 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x8c3b0bb1 free_page_put_link +EXPORT_SYMBOL vmlinux 0x8c46ba84 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x8c4a6c91 set_wb_congested +EXPORT_SYMBOL vmlinux 0x8c50d7f5 swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0x8c55548f is_bad_inode +EXPORT_SYMBOL vmlinux 0x8c5cfa7b pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c643c43 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x8c76712b proc_create_data +EXPORT_SYMBOL vmlinux 0x8c90a4a2 inet_frags_init +EXPORT_SYMBOL vmlinux 0x8cbc177d cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x8cbc4906 ilookup +EXPORT_SYMBOL vmlinux 0x8cbdb024 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x8ccc37fd vme_irq_free +EXPORT_SYMBOL vmlinux 0x8cd1d6d6 dqput +EXPORT_SYMBOL vmlinux 0x8cd8c339 omap_free_dma +EXPORT_SYMBOL vmlinux 0x8ced3710 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x8cfc6bc3 snd_pcm_new_stream +EXPORT_SYMBOL vmlinux 0x8cfcf75c nand_flash_ids +EXPORT_SYMBOL vmlinux 0x8d129f44 sock_no_bind +EXPORT_SYMBOL vmlinux 0x8d134c39 idr_replace +EXPORT_SYMBOL vmlinux 0x8d18331c register_shrinker +EXPORT_SYMBOL vmlinux 0x8d1b04a7 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x8d2c3d93 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x8d2daacd mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x8d403936 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d5fc115 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x8d64495d of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x8d6b2ce1 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x8d6f81b4 __div64_32 +EXPORT_SYMBOL vmlinux 0x8d72495b __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d7637ef get_empty_filp +EXPORT_SYMBOL vmlinux 0x8d836c5b sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x8d89267b xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0x8d8b6353 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x8d8e6f07 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x8da86730 snd_ctl_register_ioctl +EXPORT_SYMBOL vmlinux 0x8dcff6e2 __pv_offset +EXPORT_SYMBOL vmlinux 0x8ddfcdb2 pci_find_capability +EXPORT_SYMBOL vmlinux 0x8deefe9b inet_del_protocol +EXPORT_SYMBOL vmlinux 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL vmlinux 0x8e136509 bio_reset +EXPORT_SYMBOL vmlinux 0x8e170a6d mntget +EXPORT_SYMBOL vmlinux 0x8e3555e5 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x8e497146 of_get_next_child +EXPORT_SYMBOL vmlinux 0x8e66f382 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e79263a jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x8e865d3c arm_delay_ops +EXPORT_SYMBOL vmlinux 0x8e9ded2b eth_validate_addr +EXPORT_SYMBOL vmlinux 0x8ec32c67 nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL vmlinux 0x8ecf8cb2 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x8f20b911 iget5_locked +EXPORT_SYMBOL vmlinux 0x8f27fb8f simple_getattr +EXPORT_SYMBOL vmlinux 0x8f329968 __lock_buffer +EXPORT_SYMBOL vmlinux 0x8f3c7743 block_write_end +EXPORT_SYMBOL vmlinux 0x8f595b11 snd_major +EXPORT_SYMBOL vmlinux 0x8f678b07 __stack_chk_guard +EXPORT_SYMBOL vmlinux 0x8f680e35 bd_set_size +EXPORT_SYMBOL vmlinux 0x8fa4130a omap_set_dma_callback +EXPORT_SYMBOL vmlinux 0x8fa4c9c7 phy_init_hw +EXPORT_SYMBOL vmlinux 0x8fbb7d67 of_n_size_cells +EXPORT_SYMBOL vmlinux 0x8fc2d73e tcf_em_register +EXPORT_SYMBOL vmlinux 0x8fc32850 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x8fd06ad6 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin +EXPORT_SYMBOL vmlinux 0x8fe06915 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 +EXPORT_SYMBOL vmlinux 0x90072a64 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x902e1545 set_blocksize +EXPORT_SYMBOL vmlinux 0x904e87e3 of_parse_phandle +EXPORT_SYMBOL vmlinux 0x906718b4 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x90695906 vme_free_consistent +EXPORT_SYMBOL vmlinux 0x906b2eac scsi_dma_map +EXPORT_SYMBOL vmlinux 0x908194e6 snd_pcm_mmap_data +EXPORT_SYMBOL vmlinux 0x908adc06 tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x90be3acd inet_del_offload +EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x90cf3c6e set_groups +EXPORT_SYMBOL vmlinux 0x90fd1d0d msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0x9103ab5e blk_start_request +EXPORT_SYMBOL vmlinux 0x912b8c98 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x91347f64 dump_skip +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x915238f6 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x915ec03e mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x916c44f8 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x919029aa __readwrite_bug +EXPORT_SYMBOL vmlinux 0x9197bfd1 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x91b6a00c sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x91b84f13 omapdss_find_mgr_from_display +EXPORT_SYMBOL vmlinux 0x91bb8a3a cfb_fillrect +EXPORT_SYMBOL vmlinux 0x91bdcc55 inet_offloads +EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz +EXPORT_SYMBOL vmlinux 0x91cfd7dc ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x91e0da56 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x91e9d919 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x920cdfcd nf_log_packet +EXPORT_SYMBOL vmlinux 0x9212fc01 bdev_read_only +EXPORT_SYMBOL vmlinux 0x9236c957 pipe_lock +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x929d7555 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm +EXPORT_SYMBOL vmlinux 0x92ad3ac2 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x92ae0ad5 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x92bcf493 tty_devnum +EXPORT_SYMBOL vmlinux 0x92c45d9f omapdss_find_output_from_display +EXPORT_SYMBOL vmlinux 0x92d3b44d finish_no_open +EXPORT_SYMBOL vmlinux 0x92e56fff padata_alloc +EXPORT_SYMBOL vmlinux 0x92ec5d1b dispc_mgr_enable +EXPORT_SYMBOL vmlinux 0x92ed0ec5 __bforget +EXPORT_SYMBOL vmlinux 0x92f40122 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x930d9a80 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x93238e34 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x933e8d30 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL vmlinux 0x934abbf7 snd_jack_add_new_kctl +EXPORT_SYMBOL vmlinux 0x934c4b49 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x93715391 nvm_unregister_target +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x9378b1a8 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x93963a85 dss_feat_get_num_mgrs +EXPORT_SYMBOL vmlinux 0x93a41a93 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93be3a49 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x93d12430 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x93eb3aa1 arp_tbl +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x94098ff8 snd_interval_list +EXPORT_SYMBOL vmlinux 0x940f44b7 read_code +EXPORT_SYMBOL vmlinux 0x940f9cf6 kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x9413393d mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x941e1292 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x942f72e4 blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0x945b90a7 kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0x946efbfa __wait_on_bit +EXPORT_SYMBOL vmlinux 0x94874bfc sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x948839a8 cdev_add +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x9496d7e1 set_page_dirty +EXPORT_SYMBOL vmlinux 0x949cdd2b snd_ctl_replace +EXPORT_SYMBOL vmlinux 0x949e2684 netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x94b1d52f tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x94d3da68 rtc_lock +EXPORT_SYMBOL vmlinux 0x94dbe79a md_finish_reshape +EXPORT_SYMBOL vmlinux 0x94df6ace dss_mgr_connect +EXPORT_SYMBOL vmlinux 0x94e514ce kmem_cache_free +EXPORT_SYMBOL vmlinux 0x94eea794 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x951cb39c scsi_print_result +EXPORT_SYMBOL vmlinux 0x954273d5 register_md_personality +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x95593506 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x95622f41 down_timeout +EXPORT_SYMBOL vmlinux 0x9564251f simple_dname +EXPORT_SYMBOL vmlinux 0x956e9f62 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x957adcde skb_make_writable +EXPORT_SYMBOL vmlinux 0x95894dc5 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x95a303ca snd_timer_global_free +EXPORT_SYMBOL vmlinux 0x95a7cfb6 of_dev_put +EXPORT_SYMBOL vmlinux 0x95bbe053 md_reload_sb +EXPORT_SYMBOL vmlinux 0x95c2595f __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x95c92340 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x95dbe078 __get_user_2 +EXPORT_SYMBOL vmlinux 0x95f7b4e5 snd_ctl_notify +EXPORT_SYMBOL vmlinux 0x95fef8c6 ab3100_event_register +EXPORT_SYMBOL vmlinux 0x9607625d tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x960dfaf5 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x961961ce __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x964d3ab5 phy_resume +EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x965b3a36 km_is_alive +EXPORT_SYMBOL vmlinux 0x968228a8 dma_pool_create +EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x96a2e889 __get_page_tail +EXPORT_SYMBOL vmlinux 0x96cbf850 ptp_clock_index +EXPORT_SYMBOL vmlinux 0x96cc8979 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d80b2e posix_acl_valid +EXPORT_SYMBOL vmlinux 0x96e213f0 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0x96fa209f dispc_ovl_check +EXPORT_SYMBOL vmlinux 0x96fec631 dquot_get_state +EXPORT_SYMBOL vmlinux 0x97093f32 edma_filter_fn +EXPORT_SYMBOL vmlinux 0x970eeee7 mb_cache_shrink +EXPORT_SYMBOL vmlinux 0x971372a7 inode_set_flags +EXPORT_SYMBOL vmlinux 0x97255bdf strlen +EXPORT_SYMBOL vmlinux 0x9743e750 from_kuid_munged +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x976e700f down_trylock +EXPORT_SYMBOL vmlinux 0x9773caa7 omap_dss_get_device +EXPORT_SYMBOL vmlinux 0x9793c93a dispc_mgr_setup +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x979c4190 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x97bcf43b param_set_bool +EXPORT_SYMBOL vmlinux 0x97ecec21 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x97f99fd4 dispc_ovl_setup +EXPORT_SYMBOL vmlinux 0x980d63b2 input_set_keycode +EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint +EXPORT_SYMBOL vmlinux 0x98238afa mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x9832250d inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x9838aa96 snd_timer_stop +EXPORT_SYMBOL vmlinux 0x983e1058 abx500_register_ops +EXPORT_SYMBOL vmlinux 0x9846e238 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0x986a7612 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x986c5b3e nla_append +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x987c11c7 __pv_phys_pfn_offset +EXPORT_SYMBOL vmlinux 0x987d1125 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x987dee92 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x9880718f pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x98889125 __frontswap_test +EXPORT_SYMBOL vmlinux 0x9891bcd7 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x989216cd max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x9899db87 snd_device_new +EXPORT_SYMBOL vmlinux 0x989d23ab scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x98ad373e pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x98becab8 inet_accept +EXPORT_SYMBOL vmlinux 0x98e68eca cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x98f893c9 cdrom_open +EXPORT_SYMBOL vmlinux 0x9923465d mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x9935319a register_filesystem +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x993bb4e2 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x993c201f vme_lm_request +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x995d3ca7 rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0x995f0564 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x99679232 cap_mmap_file +EXPORT_SYMBOL vmlinux 0x996c4d30 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x996f818c vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x998c2d3b xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x9995dda3 nf_reinject +EXPORT_SYMBOL vmlinux 0x999a2648 netlink_unicast +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a9febf xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0x99aa6e53 __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x99bb8806 memmove +EXPORT_SYMBOL vmlinux 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x99d148bf open_check_o_direct +EXPORT_SYMBOL vmlinux 0x99da71d8 get_phy_device +EXPORT_SYMBOL vmlinux 0x99f58330 lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x9a0d9843 __register_binfmt +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a20c1ff ps2_init +EXPORT_SYMBOL vmlinux 0x9a47ee32 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x9a490f5c dev_get_by_index +EXPORT_SYMBOL vmlinux 0x9a4a732c ppp_unit_number +EXPORT_SYMBOL vmlinux 0x9a623142 ida_get_new_above +EXPORT_SYMBOL vmlinux 0x9a6cc5a5 snd_ctl_free_one +EXPORT_SYMBOL vmlinux 0x9a8318ef v7_coherent_kern_range +EXPORT_SYMBOL vmlinux 0x9a8919a9 param_set_copystring +EXPORT_SYMBOL vmlinux 0x9a8b534e mmc_put_card +EXPORT_SYMBOL vmlinux 0x9a9de1ee snd_card_free +EXPORT_SYMBOL vmlinux 0x9aa1364a jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x9aa218e3 mmc_power_save_host +EXPORT_SYMBOL vmlinux 0x9ae46094 sk_wait_data +EXPORT_SYMBOL vmlinux 0x9ae7130f skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x9ae94f1b nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9af4aa9f of_get_next_parent +EXPORT_SYMBOL vmlinux 0x9b2000d5 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b381723 irq_set_chip +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b3f7e0b input_release_device +EXPORT_SYMBOL vmlinux 0x9b557338 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x9b557629 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x9b5ffba5 bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x9b64f4f4 param_ops_byte +EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize +EXPORT_SYMBOL vmlinux 0x9b9885fa of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put +EXPORT_SYMBOL vmlinux 0x9bc996c1 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x9bd261b4 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x9bd318e3 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x9bd4d12e put_filp +EXPORT_SYMBOL vmlinux 0x9bdbbb6f sockfd_lookup +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9bfcc406 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x9bfe1f64 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x9c0bd51f _raw_spin_lock +EXPORT_SYMBOL vmlinux 0x9c0f4c90 mmc_fixup_device +EXPORT_SYMBOL vmlinux 0x9c148a6d rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c5b58fd prepare_binprm +EXPORT_SYMBOL vmlinux 0x9c68234a __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x9c6a8d1f ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x9c74abad make_kprojid +EXPORT_SYMBOL vmlinux 0x9c75c4a4 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x9c7dd32c seq_file_path +EXPORT_SYMBOL vmlinux 0x9c7f0db3 qcom_scm_set_warm_boot_addr +EXPORT_SYMBOL vmlinux 0x9c997f31 pagevec_lookup +EXPORT_SYMBOL vmlinux 0x9c9ec2a0 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cba3c37 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x9cca80ce udp_ioctl +EXPORT_SYMBOL vmlinux 0x9cd335fa tcf_action_exec +EXPORT_SYMBOL vmlinux 0x9d0034b0 omapdss_default_get_recommended_bpp +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d0d7afc pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x9d253b9f mmc_register_driver +EXPORT_SYMBOL vmlinux 0x9d3159b2 __blk_run_queue +EXPORT_SYMBOL vmlinux 0x9d326cc2 user_revoke +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d591742 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x9d669763 memcpy +EXPORT_SYMBOL vmlinux 0x9d6cb568 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x9dabea92 pwmss_submodule_state_change +EXPORT_SYMBOL vmlinux 0x9dbfd48d iget_failed +EXPORT_SYMBOL vmlinux 0x9dd42f49 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x9dfaea51 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x9dfe7307 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9dfe9cb9 __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0x9e06dfd6 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x9e07764d __neigh_create +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e1c00d7 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x9e22097a fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x9e2aaab8 sock_no_listen +EXPORT_SYMBOL vmlinux 0x9e33b2cc max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x9e3f7b3a mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e5cd9c5 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e68e400 mount_nodev +EXPORT_SYMBOL vmlinux 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL vmlinux 0x9e7283f9 omap_dss_put_device +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e7b5d1f pci_iounmap +EXPORT_SYMBOL vmlinux 0x9e9c84bc proto_unregister +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource +EXPORT_SYMBOL vmlinux 0x9f1ca1b5 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x9f203155 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x9f37cebb tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f501c61 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x9f823cea dispc_mgr_is_enabled +EXPORT_SYMBOL vmlinux 0x9f87b590 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x9f94e190 phy_attach +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9f99a3cc dev_get_flags +EXPORT_SYMBOL vmlinux 0x9f9a6ee1 eth_header_parse +EXPORT_SYMBOL vmlinux 0x9fbd6bdc kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x9fd22315 bio_init +EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9feda519 dentry_open +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0x9ffd0f3a skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xa0044066 kset_register +EXPORT_SYMBOL vmlinux 0xa0158414 snd_pcm_hw_rule_add +EXPORT_SYMBOL vmlinux 0xa021248b seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xa0226d0b flush_signals +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa08a5379 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xa08ff604 __nlmsg_put +EXPORT_SYMBOL vmlinux 0xa090ae92 put_disk +EXPORT_SYMBOL vmlinux 0xa0aa2b81 disk_stack_limits +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0b3f8f9 rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0xa0c064ac mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xa0c2667c __mmc_claim_host +EXPORT_SYMBOL vmlinux 0xa0c8b284 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0xa0c920c3 security_path_rmdir +EXPORT_SYMBOL vmlinux 0xa0cb059e xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0f7d8db insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa0fd2427 snd_pci_quirk_lookup_id +EXPORT_SYMBOL vmlinux 0xa1013597 pci_set_power_state +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa10fbe93 make_kuid +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa13170ab kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xa13b056f of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts +EXPORT_SYMBOL vmlinux 0xa1539bab skb_trim +EXPORT_SYMBOL vmlinux 0xa15f98db jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0xa192813b idr_for_each +EXPORT_SYMBOL vmlinux 0xa197bd52 mark_page_accessed +EXPORT_SYMBOL vmlinux 0xa19a3b93 snd_pcm_lib_free_pages +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1bacac0 kernel_read +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1d55e90 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1e67eb2 generic_show_options +EXPORT_SYMBOL vmlinux 0xa1ebb215 abx500_remove_ops +EXPORT_SYMBOL vmlinux 0xa1f0ebea bit_waitqueue +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa20d514c seq_lseek +EXPORT_SYMBOL vmlinux 0xa21e7771 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xa2250f51 dm_kobject_release +EXPORT_SYMBOL vmlinux 0xa22c02ea omapdss_default_get_timings +EXPORT_SYMBOL vmlinux 0xa246765a dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xa24a2600 sk_net_capable +EXPORT_SYMBOL vmlinux 0xa26bf57d sock_setsockopt +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa2b652f4 snd_pci_quirk_lookup +EXPORT_SYMBOL vmlinux 0xa2bd8423 devm_ioremap +EXPORT_SYMBOL vmlinux 0xa2f6933e xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa32e88e0 inet_add_offload +EXPORT_SYMBOL vmlinux 0xa336feb7 nand_manuf_ids +EXPORT_SYMBOL vmlinux 0xa34003d8 page_waitqueue +EXPORT_SYMBOL vmlinux 0xa35444e4 dispc_write_irqenable +EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get +EXPORT_SYMBOL vmlinux 0xa381944f dql_reset +EXPORT_SYMBOL vmlinux 0xa3833a5e iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0xa38be088 param_get_byte +EXPORT_SYMBOL vmlinux 0xa397a881 dev_warn +EXPORT_SYMBOL vmlinux 0xa39a123a fence_add_callback +EXPORT_SYMBOL vmlinux 0xa3d54de2 __frontswap_store +EXPORT_SYMBOL vmlinux 0xa3dfe746 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0xa3e2150a page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0xa3f48acb napi_gro_frags +EXPORT_SYMBOL vmlinux 0xa3f96827 qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0xa4089571 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xa414882d add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xa42ae476 key_type_keyring +EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf +EXPORT_SYMBOL vmlinux 0xa45e02a7 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xa4610bc6 omap_rev +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa47cae11 elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0xa48f5b09 omap_dma_set_global_params +EXPORT_SYMBOL vmlinux 0xa48fa7b2 inet_addr_type +EXPORT_SYMBOL vmlinux 0xa49b5e6d pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xa4b42c55 omap_set_dma_priority +EXPORT_SYMBOL vmlinux 0xa4ca4b62 __nd_driver_register +EXPORT_SYMBOL vmlinux 0xa4eb67c1 scsi_target_resume +EXPORT_SYMBOL vmlinux 0xa50218cb of_iomap +EXPORT_SYMBOL vmlinux 0xa50778bb xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0xa508414c inet_register_protosw +EXPORT_SYMBOL vmlinux 0xa50c8878 scsi_print_command +EXPORT_SYMBOL vmlinux 0xa551eaa0 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa556909a dm_io +EXPORT_SYMBOL vmlinux 0xa58fea9d mempool_destroy +EXPORT_SYMBOL vmlinux 0xa5971dd2 generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa599a735 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xa5aaae44 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xa5bd4d03 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0xa5df7768 nvm_erase_blk +EXPORT_SYMBOL vmlinux 0xa5e6dd47 vfs_llseek +EXPORT_SYMBOL vmlinux 0xa617a8e8 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL vmlinux 0xa61e4362 omap_request_dma +EXPORT_SYMBOL vmlinux 0xa62f444d file_open_root +EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember +EXPORT_SYMBOL vmlinux 0xa65d7e35 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xa66f06f6 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xa67374f0 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa6a738dd dev_uc_add +EXPORT_SYMBOL vmlinux 0xa6bab23d dqstats +EXPORT_SYMBOL vmlinux 0xa6e0dbc8 dev_get_nest_level +EXPORT_SYMBOL vmlinux 0xa6f2179c blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa70354b7 sock_sendmsg +EXPORT_SYMBOL vmlinux 0xa71de488 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0xa734a3e9 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa75dcc7b generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0xa773f87d mdiobus_read +EXPORT_SYMBOL vmlinux 0xa77cc34c scsi_unregister +EXPORT_SYMBOL vmlinux 0xa7800f19 kobject_del +EXPORT_SYMBOL vmlinux 0xa7ac1137 __page_symlink +EXPORT_SYMBOL vmlinux 0xa7d2450e tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xa7d5b07b mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0xa7e5f24b fsnotify_get_group +EXPORT_SYMBOL vmlinux 0xa7eec48f tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xa81b0a8d dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0xa82c6f8e skb_clone +EXPORT_SYMBOL vmlinux 0xa8397757 simple_statfs +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa86da456 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa87db305 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0xa881a451 tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end +EXPORT_SYMBOL vmlinux 0xa8e23674 of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa90e222c genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa9174e4a vme_irq_request +EXPORT_SYMBOL vmlinux 0xa91ba84d skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0xa92ecf05 mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0xa952b78c simple_pin_fs +EXPORT_SYMBOL vmlinux 0xa964dd13 gpmc_cs_request +EXPORT_SYMBOL vmlinux 0xa9658cd3 kobject_add +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa98d4ae8 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xa999083c skb_push +EXPORT_SYMBOL vmlinux 0xa9a82393 new_inode +EXPORT_SYMBOL vmlinux 0xa9b69576 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xa9b981f4 flush_kernel_dcache_page +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9cb5142 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xa9cd1e76 blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0xa9d2f3f7 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xa9e80559 blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0xaa013da1 bdput +EXPORT_SYMBOL vmlinux 0xaa0b1094 inet_recvmsg +EXPORT_SYMBOL vmlinux 0xaa0da5ca blk_init_queue_node +EXPORT_SYMBOL vmlinux 0xaa12b503 __free_pages +EXPORT_SYMBOL vmlinux 0xaa3dccae pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0xaa55a2ea skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xaa5fc9dd scsi_register_driver +EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa763704 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xaa80b7c9 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0xaa82370f max8925_reg_write +EXPORT_SYMBOL vmlinux 0xaa91adfa snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL vmlinux 0xaa9d4331 current_in_userns +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaae2e8d1 __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab1f50d8 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0xab21a6ed dss_mgr_register_framedone_handler +EXPORT_SYMBOL vmlinux 0xab3ebc8d mmc_free_host +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab60dc83 of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0xab63d7ac register_framebuffer +EXPORT_SYMBOL vmlinux 0xab694444 bsearch +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab7b13a2 security_path_mkdir +EXPORT_SYMBOL vmlinux 0xaba3ad0c radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xaba68d9a gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0xaba958e6 tty_name +EXPORT_SYMBOL vmlinux 0xabc430c0 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabcb2fe6 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0xabd5ebdd generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0xabdd6463 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xabfcb4c3 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xac09226d dquot_acquire +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac0be260 end_page_writeback +EXPORT_SYMBOL vmlinux 0xac164e85 snd_pcm_hw_constraint_list +EXPORT_SYMBOL vmlinux 0xac1774f0 abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac1cb40a netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xac25d169 snd_pcm_new +EXPORT_SYMBOL vmlinux 0xac34a0b6 vfs_write +EXPORT_SYMBOL vmlinux 0xac390091 dev_base_lock +EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear +EXPORT_SYMBOL vmlinux 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL vmlinux 0xac463bea devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xac7bb854 __vfs_write +EXPORT_SYMBOL vmlinux 0xac811df3 clkdev_alloc +EXPORT_SYMBOL vmlinux 0xac97a48c import_iovec +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad2033e2 invalidate_bdev +EXPORT_SYMBOL vmlinux 0xad3660e0 snd_pcm_lib_read +EXPORT_SYMBOL vmlinux 0xad3c159a dev_change_carrier +EXPORT_SYMBOL vmlinux 0xad5acd17 mount_bdev +EXPORT_SYMBOL vmlinux 0xad694162 ip_setsockopt +EXPORT_SYMBOL vmlinux 0xad7a7ad9 udp_set_csum +EXPORT_SYMBOL vmlinux 0xad7ab0f0 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xad80d220 blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad8b76e9 dquot_resume +EXPORT_SYMBOL vmlinux 0xadad108e empty_zero_page +EXPORT_SYMBOL vmlinux 0xadb5e1d7 blk_finish_request +EXPORT_SYMBOL vmlinux 0xadd74ec5 elevator_alloc +EXPORT_SYMBOL vmlinux 0xaddb4ffc inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xade76d22 touch_buffer +EXPORT_SYMBOL vmlinux 0xade88e76 snd_malloc_pages +EXPORT_SYMBOL vmlinux 0xadf8ad09 kill_pid +EXPORT_SYMBOL vmlinux 0xadfcda5e bdev_stack_limits +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae0cef09 sk_stop_timer +EXPORT_SYMBOL vmlinux 0xae1f240c rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0xae378c99 i2c_master_send +EXPORT_SYMBOL vmlinux 0xae6f3182 simple_follow_link +EXPORT_SYMBOL vmlinux 0xae77a595 radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0xae85a27e radix_tree_lookup +EXPORT_SYMBOL vmlinux 0xae9d6c86 simple_open +EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0xaef72d74 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xaef87f09 tty_port_close_start +EXPORT_SYMBOL vmlinux 0xaf0a12d4 genphy_config_init +EXPORT_SYMBOL vmlinux 0xaf3d0478 bmap +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf461aef security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xaf50e76d elf_set_personality +EXPORT_SYMBOL vmlinux 0xaf5fd42a dma_mmap_from_coherent +EXPORT_SYMBOL vmlinux 0xaf6d32b5 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xaf6ed340 give_up_console +EXPORT_SYMBOL vmlinux 0xaf768b7e i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0xaf84865e __get_user_8 +EXPORT_SYMBOL vmlinux 0xaf890719 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xaf8aa518 system_rev +EXPORT_SYMBOL vmlinux 0xaf9ee5ff __blk_end_request +EXPORT_SYMBOL vmlinux 0xafbf4fba ps2_handle_ack +EXPORT_SYMBOL vmlinux 0xafc20065 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xafd8792e simple_nosetlease +EXPORT_SYMBOL vmlinux 0xb0036aa8 snd_jack_set_parent +EXPORT_SYMBOL vmlinux 0xb01a3731 input_close_device +EXPORT_SYMBOL vmlinux 0xb01ae7fc mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0xb01ea692 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xb02a8e3c xfrm_state_add +EXPORT_SYMBOL vmlinux 0xb0331580 device_get_mac_address +EXPORT_SYMBOL vmlinux 0xb0477526 netdev_info +EXPORT_SYMBOL vmlinux 0xb04cf0fe lg_local_unlock +EXPORT_SYMBOL vmlinux 0xb056368b ptp_clock_register +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb0648085 __block_write_begin +EXPORT_SYMBOL vmlinux 0xb0663583 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0xb066b530 iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0xb06951e2 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0xb079171b __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xb081b9c3 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xb08cc810 elv_rb_del +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0aa832d md_unregister_thread +EXPORT_SYMBOL vmlinux 0xb0b1ebaf clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0ca22ac xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xb0d72946 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0ee49b6 dma_sync_wait +EXPORT_SYMBOL vmlinux 0xb0f9d2c0 neigh_ifdown +EXPORT_SYMBOL vmlinux 0xb10451fd __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xb1071873 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0xb111d24f xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xb11bf034 inet_bind +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb127dea8 qdisc_list_del +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb13dff3f init_special_inode +EXPORT_SYMBOL vmlinux 0xb156be60 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xb15c540f __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb161d6ae tty_check_change +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb19e3443 pskb_expand_head +EXPORT_SYMBOL vmlinux 0xb1ad28e0 __gnu_mcount_nc +EXPORT_SYMBOL vmlinux 0xb1bff499 snd_pcm_open_substream +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1cf2db5 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xb1d87f8c devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xb1d9aabd lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0xb1e73677 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xb1fab95d mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xb1fbb439 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0xb235bb8e setup_new_exec +EXPORT_SYMBOL vmlinux 0xb23828b2 blk_stop_queue +EXPORT_SYMBOL vmlinux 0xb242e1d0 __tcf_hash_release +EXPORT_SYMBOL vmlinux 0xb24dc6b4 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xb257fe9f get_unmapped_area +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb26e5138 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0xb276abd7 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0xb27c0233 nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0xb28c3352 dev_emerg +EXPORT_SYMBOL vmlinux 0xb2a3fcdc simple_map_init +EXPORT_SYMBOL vmlinux 0xb2aae6b3 tcp_conn_request +EXPORT_SYMBOL vmlinux 0xb2ab7a66 seq_putc +EXPORT_SYMBOL vmlinux 0xb2bc5a42 md_cluster_mod +EXPORT_SYMBOL vmlinux 0xb2bca652 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on +EXPORT_SYMBOL vmlinux 0xb2d4b1a8 arm_dma_zone_size +EXPORT_SYMBOL vmlinux 0xb2d7d012 registered_fb +EXPORT_SYMBOL vmlinux 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL vmlinux 0xb32d7b7e radix_tree_tagged +EXPORT_SYMBOL vmlinux 0xb32f19dc unregister_md_personality +EXPORT_SYMBOL vmlinux 0xb3359281 scsi_init_io +EXPORT_SYMBOL vmlinux 0xb33c351f ioremap_cache +EXPORT_SYMBOL vmlinux 0xb33c88d7 set_disk_ro +EXPORT_SYMBOL vmlinux 0xb340f171 mmc_get_card +EXPORT_SYMBOL vmlinux 0xb39e47e0 reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0xb3a5a71b jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xb3a9fce6 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3d657bf vme_slot_num +EXPORT_SYMBOL vmlinux 0xb3f3cc99 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xb3f4f47f sock_from_file +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb405dfa4 seq_escape +EXPORT_SYMBOL vmlinux 0xb4223dfb grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb42777e3 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xb428735c param_get_int +EXPORT_SYMBOL vmlinux 0xb4390f9a mcount +EXPORT_SYMBOL vmlinux 0xb44300fb nf_afinfo +EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem +EXPORT_SYMBOL vmlinux 0xb461edf7 unlock_page +EXPORT_SYMBOL vmlinux 0xb46b4b8b generic_block_bmap +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb4742560 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xb49482cb vfs_mkdir +EXPORT_SYMBOL vmlinux 0xb4a6f468 phy_device_register +EXPORT_SYMBOL vmlinux 0xb4b94377 __nand_correct_data +EXPORT_SYMBOL vmlinux 0xb4b9622c __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0xb4c14e44 tcp_read_sock +EXPORT_SYMBOL vmlinux 0xb4e047aa nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0xb4e215ce ps2_handle_response +EXPORT_SYMBOL vmlinux 0xb51247f9 lease_modify +EXPORT_SYMBOL vmlinux 0xb5198b77 _raw_read_lock +EXPORT_SYMBOL vmlinux 0xb51f7dda snd_timer_start +EXPORT_SYMBOL vmlinux 0xb524b94e simple_transaction_set +EXPORT_SYMBOL vmlinux 0xb5301d3e of_phy_connect +EXPORT_SYMBOL vmlinux 0xb548487d swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0xb54f5072 get_gendisk +EXPORT_SYMBOL vmlinux 0xb552df1d dcb_getapp +EXPORT_SYMBOL vmlinux 0xb5684e29 idr_find_slowpath +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb576c393 htc_egpio_get_wakeup_irq +EXPORT_SYMBOL vmlinux 0xb5861116 search_binary_handler +EXPORT_SYMBOL vmlinux 0xb590c743 I_BDEV +EXPORT_SYMBOL vmlinux 0xb5951f82 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5b20288 padata_do_serial +EXPORT_SYMBOL vmlinux 0xb5bff79e poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0xb5c00014 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free +EXPORT_SYMBOL vmlinux 0xb5d28875 ppp_channel_index +EXPORT_SYMBOL vmlinux 0xb5d9454c printk_emit +EXPORT_SYMBOL vmlinux 0xb5ec4df9 scsi_add_device +EXPORT_SYMBOL vmlinux 0xb5f5700e tcp_prot +EXPORT_SYMBOL vmlinux 0xb61e1135 framebuffer_release +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb6493198 genlmsg_put +EXPORT_SYMBOL vmlinux 0xb64f409b vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xb65e8cd8 unregister_nls +EXPORT_SYMBOL vmlinux 0xb67434bc register_key_type +EXPORT_SYMBOL vmlinux 0xb675c645 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6bf7181 get_super +EXPORT_SYMBOL vmlinux 0xb6c557fd vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0xb6d3daf1 qcom_scm_hdcp_req +EXPORT_SYMBOL vmlinux 0xb738ab48 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb755f240 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb79ec15d mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0xb7af2a7d unregister_netdev +EXPORT_SYMBOL vmlinux 0xb7b65a26 cdev_del +EXPORT_SYMBOL vmlinux 0xb7ba76c7 __aeabi_unwind_cpp_pr2 +EXPORT_SYMBOL vmlinux 0xb7c45bc6 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7cc33d2 cont_write_begin +EXPORT_SYMBOL vmlinux 0xb7eb63ea bitmap_end_sync +EXPORT_SYMBOL vmlinux 0xb81960ca snprintf +EXPORT_SYMBOL vmlinux 0xb8370414 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xb858b564 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb87c6ea2 bio_integrity_advance +EXPORT_SYMBOL vmlinux 0xb87d9640 skb_tx_error +EXPORT_SYMBOL vmlinux 0xb8854ac8 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xb8acabda ata_port_printk +EXPORT_SYMBOL vmlinux 0xb8e1f665 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xb9019edd cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0xb91edc84 read_dev_sector +EXPORT_SYMBOL vmlinux 0xb92f00e2 __alloc_skb +EXPORT_SYMBOL vmlinux 0xb95696b7 pci_release_region +EXPORT_SYMBOL vmlinux 0xb95f98d6 _memset_io +EXPORT_SYMBOL vmlinux 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL vmlinux 0xb990524b zpool_register_driver +EXPORT_SYMBOL vmlinux 0xb99dfbf7 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0xb99e5c6d nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xb9a8f03b omap_stop_dma +EXPORT_SYMBOL vmlinux 0xb9acd3d9 __put_user_2 +EXPORT_SYMBOL vmlinux 0xb9ae5c17 pci_find_bus +EXPORT_SYMBOL vmlinux 0xb9ba2109 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0xb9d02f35 request_firmware +EXPORT_SYMBOL vmlinux 0xb9e58163 nand_scan_bbt +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9f460c9 d_obtain_alias +EXPORT_SYMBOL vmlinux 0xb9f6770b snd_jack_set_key +EXPORT_SYMBOL vmlinux 0xba3cff39 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba5326c4 security_d_instantiate +EXPORT_SYMBOL vmlinux 0xbab8e997 sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0xbac3cbf2 ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0xbadd29bb mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0xbadfe1a7 keyring_search +EXPORT_SYMBOL vmlinux 0xbaf94d32 scm_detach_fds +EXPORT_SYMBOL vmlinux 0xbafeee36 dispc_runtime_get +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb1ba9f3 softnet_data +EXPORT_SYMBOL vmlinux 0xbb255a05 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xbb27bd39 sg_miter_skip +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb380f27 napi_consume_skb +EXPORT_SYMBOL vmlinux 0xbb440824 sock_create_kern +EXPORT_SYMBOL vmlinux 0xbb50d47b crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xbb558392 dma_async_device_register +EXPORT_SYMBOL vmlinux 0xbb570993 dev_mc_del +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb6352ef blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xbb72d4fe __put_user_1 +EXPORT_SYMBOL vmlinux 0xbb79c6f4 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0xbb7fca2e neigh_seq_start +EXPORT_SYMBOL vmlinux 0xbb9449f2 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0xbb97ba1b __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbb992ac5 follow_pfn +EXPORT_SYMBOL vmlinux 0xbbad917a sync_inode +EXPORT_SYMBOL vmlinux 0xbbaf8454 shdma_chan_filter +EXPORT_SYMBOL vmlinux 0xbbb60c0a nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0xbbb78c47 nand_calculate_ecc +EXPORT_SYMBOL vmlinux 0xbbbf7c79 pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0xbbc3b29f sk_stream_write_space +EXPORT_SYMBOL vmlinux 0xbbea6091 inet6_del_offload +EXPORT_SYMBOL vmlinux 0xbbf7eb82 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0xbc10dd97 __put_user_4 +EXPORT_SYMBOL vmlinux 0xbc2cdca5 filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0xbc6329b0 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xbc736142 bio_map_kern +EXPORT_SYMBOL vmlinux 0xbc8836eb __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0xbc88b639 bio_clone_fast +EXPORT_SYMBOL vmlinux 0xbc9db043 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xbca80f2b dm_get_device +EXPORT_SYMBOL vmlinux 0xbca83808 vfs_mknod +EXPORT_SYMBOL vmlinux 0xbca85ea6 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xbcaa0974 netif_skb_features +EXPORT_SYMBOL vmlinux 0xbcac15ea fb_set_suspend +EXPORT_SYMBOL vmlinux 0xbcb80e36 phy_connect_direct +EXPORT_SYMBOL vmlinux 0xbcbe6a84 snd_ctl_new1 +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcc91ff5 genphy_resume +EXPORT_SYMBOL vmlinux 0xbcd89754 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0xbce76509 sock_wfree +EXPORT_SYMBOL vmlinux 0xbcf05951 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0xbd000d3f fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xbd02ed4d dss_install_mgr_ops +EXPORT_SYMBOL vmlinux 0xbd132c25 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0xbd17c6de gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xbd47e618 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0xbd4a4ccb jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xbd510472 tcp_req_err +EXPORT_SYMBOL vmlinux 0xbd6cddfb key_revoke +EXPORT_SYMBOL vmlinux 0xbd76b6d2 copy_from_iter +EXPORT_SYMBOL vmlinux 0xbd846616 tty_unlock +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbda150aa udp_sendmsg +EXPORT_SYMBOL vmlinux 0xbdb1f9be filemap_map_pages +EXPORT_SYMBOL vmlinux 0xbdb59d0a filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xbdbae6f4 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xbdcfbd2c devm_clk_put +EXPORT_SYMBOL vmlinux 0xbdeabf7e elm_config +EXPORT_SYMBOL vmlinux 0xbdec4d08 fence_remove_callback +EXPORT_SYMBOL vmlinux 0xbdedb6b2 irq_stat +EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe1cc5de __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xbe31e167 skb_put +EXPORT_SYMBOL vmlinux 0xbe3dde23 __sk_dst_check +EXPORT_SYMBOL vmlinux 0xbe6650cf fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xbe6d74d9 inode_init_owner +EXPORT_SYMBOL vmlinux 0xbe7545df kobject_init +EXPORT_SYMBOL vmlinux 0xbe8860a8 dispc_mgr_go_busy +EXPORT_SYMBOL vmlinux 0xbe8fb90c dispc_mgr_get_framedone_irq +EXPORT_SYMBOL vmlinux 0xbe9cafd8 blk_start_queue +EXPORT_SYMBOL vmlinux 0xbeb29587 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0xbeb54339 alloc_file +EXPORT_SYMBOL vmlinux 0xbed4bfd2 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbf04ab4d __sb_end_write +EXPORT_SYMBOL vmlinux 0xbf0c06d0 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0xbf12e6df jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xbf2471ae ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xbf486982 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xbf57afd8 snd_pcm_create_iec958_consumer +EXPORT_SYMBOL vmlinux 0xbf781872 param_get_bool +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf857d94 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf916ad3 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfa7b2e7 register_sound_special +EXPORT_SYMBOL vmlinux 0xbfc2c66f tty_port_hangup +EXPORT_SYMBOL vmlinux 0xbfddfccd eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0xbfe14b5b bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbfee439c netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xbff3826c mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0xbff65abc tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xc0056be5 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0xc006af6c of_get_cpu_node +EXPORT_SYMBOL vmlinux 0xc00a141f cad_pid +EXPORT_SYMBOL vmlinux 0xc0164015 seq_open +EXPORT_SYMBOL vmlinux 0xc045d75e netlink_net_capable +EXPORT_SYMBOL vmlinux 0xc068440e __kfifo_alloc +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc0a6a8c5 omap_set_dma_dest_burst_mode +EXPORT_SYMBOL vmlinux 0xc0a98385 profile_pc +EXPORT_SYMBOL vmlinux 0xc0c6bd12 security_task_getsecid +EXPORT_SYMBOL vmlinux 0xc0d209f0 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xc0da0fa1 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0xc0e7f1a9 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten +EXPORT_SYMBOL vmlinux 0xc1283d25 locks_free_lock +EXPORT_SYMBOL vmlinux 0xc163d5cf d_lookup +EXPORT_SYMBOL vmlinux 0xc1841e9f security_path_chown +EXPORT_SYMBOL vmlinux 0xc18837f2 dst_destroy +EXPORT_SYMBOL vmlinux 0xc189e70e sock_kfree_s +EXPORT_SYMBOL vmlinux 0xc1932459 d_make_root +EXPORT_SYMBOL vmlinux 0xc19a4a0b unlock_rename +EXPORT_SYMBOL vmlinux 0xc19e8711 set_nlink +EXPORT_SYMBOL vmlinux 0xc1b04168 serio_unregister_port +EXPORT_SYMBOL vmlinux 0xc1c5f483 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0xc1c8cc95 tty_port_open +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e0e035 __register_chrdev +EXPORT_SYMBOL vmlinux 0xc1e3d78b jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc1e9ab2b inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xc1ec8e71 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0xc1eca654 freezing_slow_path +EXPORT_SYMBOL vmlinux 0xc1ee4299 blk_execute_rq +EXPORT_SYMBOL vmlinux 0xc204e68d ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xc2438da8 inet_put_port +EXPORT_SYMBOL vmlinux 0xc244f556 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xc260209f ilookup5 +EXPORT_SYMBOL vmlinux 0xc2684070 sk_stream_error +EXPORT_SYMBOL vmlinux 0xc26d4bb2 devfreq_add_device +EXPORT_SYMBOL vmlinux 0xc2787009 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xc2a22cf6 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2a98c77 snd_jack_new +EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xc2ae54d3 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0xc2b137f0 follow_up +EXPORT_SYMBOL vmlinux 0xc2d711e1 krealloc +EXPORT_SYMBOL vmlinux 0xc2e12259 pci_pme_active +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc31140f5 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0xc316e8a8 blk_run_queue_async +EXPORT_SYMBOL vmlinux 0xc328f54b devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0xc330ed73 serio_close +EXPORT_SYMBOL vmlinux 0xc33267fe __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xc3388ca3 generic_file_llseek +EXPORT_SYMBOL vmlinux 0xc342f51c scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xc349bac0 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0xc359fb65 abort +EXPORT_SYMBOL vmlinux 0xc367bdbf request_firmware_nowait +EXPORT_SYMBOL vmlinux 0xc38fd8ad dev_activate +EXPORT_SYMBOL vmlinux 0xc3999b13 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xc3ac7aa3 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0xc3ad780a ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0xc3c04f20 mpage_readpages +EXPORT_SYMBOL vmlinux 0xc3c0fd23 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3c67106 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xc3c9fc85 __napi_schedule +EXPORT_SYMBOL vmlinux 0xc3d2596d nand_bch_calculate_ecc +EXPORT_SYMBOL vmlinux 0xc3dfb3ea proc_set_size +EXPORT_SYMBOL vmlinux 0xc3ecf750 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0xc41f0516 node_states +EXPORT_SYMBOL vmlinux 0xc4254276 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xc42ffe07 padata_remove_cpu +EXPORT_SYMBOL vmlinux 0xc44acc78 pps_unregister_source +EXPORT_SYMBOL vmlinux 0xc45cbdcb generic_update_time +EXPORT_SYMBOL vmlinux 0xc4725551 md_cluster_ops +EXPORT_SYMBOL vmlinux 0xc47f1a12 dev_printk +EXPORT_SYMBOL vmlinux 0xc4839969 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0xc48bbfb6 bio_clone_bioset +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc49b1467 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xc49bb83e iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0xc4ab1417 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0xc4b9f2d8 pcie_set_mps +EXPORT_SYMBOL vmlinux 0xc4bde8a3 tty_register_device +EXPORT_SYMBOL vmlinux 0xc4ce1bd7 tty_port_close_end +EXPORT_SYMBOL vmlinux 0xc4ce58de fget +EXPORT_SYMBOL vmlinux 0xc4e3bd3d udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xc4eb0dc2 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0xc4eda017 register_gifconf +EXPORT_SYMBOL vmlinux 0xc503ac3b netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0xc51af666 cdrom_check_events +EXPORT_SYMBOL vmlinux 0xc51d7105 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xc52da066 omap_set_dma_dest_params +EXPORT_SYMBOL vmlinux 0xc52e3628 console_stop +EXPORT_SYMBOL vmlinux 0xc52eb380 kmap_to_page +EXPORT_SYMBOL vmlinux 0xc55fe348 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xc56571d2 mdiobus_free +EXPORT_SYMBOL vmlinux 0xc57417c1 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xc582d279 sock_kmalloc +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5b131c7 simple_rmdir +EXPORT_SYMBOL vmlinux 0xc5c8ee24 truncate_setsize +EXPORT_SYMBOL vmlinux 0xc5fa3d8e vfs_iter_read +EXPORT_SYMBOL vmlinux 0xc5fbd6a4 start_tty +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc61200f2 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc63f6118 single_open +EXPORT_SYMBOL vmlinux 0xc641a55e always_delete_dentry +EXPORT_SYMBOL vmlinux 0xc64a26d9 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xc64f4cf2 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0xc66fa6a6 ida_remove +EXPORT_SYMBOL vmlinux 0xc672f6b8 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xc67e436d sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0xc67fb289 param_set_ullong +EXPORT_SYMBOL vmlinux 0xc6938686 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xc6a3aa0f __module_get +EXPORT_SYMBOL vmlinux 0xc6b5f7fe del_gendisk +EXPORT_SYMBOL vmlinux 0xc6c77529 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6de77b4 gen_new_estimator +EXPORT_SYMBOL vmlinux 0xc6ed350d snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL vmlinux 0xc6f2fa59 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0xc70d90dd abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc76d0187 set_binfmt +EXPORT_SYMBOL vmlinux 0xc76dde0f nonseekable_open +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc782b32d param_ops_int +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc796fb2b nf_register_hooks +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc79dfb7b neigh_connected_output +EXPORT_SYMBOL vmlinux 0xc7a06332 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7ab4086 seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xc7bad225 d_set_d_op +EXPORT_SYMBOL vmlinux 0xc7bcbc8d add_wait_queue +EXPORT_SYMBOL vmlinux 0xc7e31912 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn +EXPORT_SYMBOL vmlinux 0xc7f936ea nand_scan_ident +EXPORT_SYMBOL vmlinux 0xc8316530 bdi_destroy +EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape +EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0xc84018f9 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xc8472696 get_fs_type +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc871904d shdma_chan_probe +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc874782c ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc89badbd __ip_select_ident +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8af2cde kfree_put_link +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8c75442 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0xc8d547a6 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0xc904e37b seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0xc90ecb75 set_anon_super +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc9153aaa nd_btt_probe +EXPORT_SYMBOL vmlinux 0xc926af3b do_splice_from +EXPORT_SYMBOL vmlinux 0xc93f6ee9 nf_ct_attach +EXPORT_SYMBOL vmlinux 0xc9476d24 fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0xc9537925 alloc_fcdev +EXPORT_SYMBOL vmlinux 0xc95770f6 filemap_flush +EXPORT_SYMBOL vmlinux 0xc95bfd4e pci_assign_resource +EXPORT_SYMBOL vmlinux 0xc95f5a8f udp_add_offload +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc9648610 fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0xc964e445 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xc9775291 swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xc98adfb0 shdma_reset +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9a5d55d unregister_qdisc +EXPORT_SYMBOL vmlinux 0xc9b79172 swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0xc9cfff07 icmpv6_send +EXPORT_SYMBOL vmlinux 0xc9d2950e tty_kref_put +EXPORT_SYMBOL vmlinux 0xc9d8c987 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xc9e60d55 omap_dss_find_device +EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy +EXPORT_SYMBOL vmlinux 0xca11ca1b omapdss_register_output +EXPORT_SYMBOL vmlinux 0xca1f23c3 audit_log_task_info +EXPORT_SYMBOL vmlinux 0xca41eaa3 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0xca450282 dquot_initialize +EXPORT_SYMBOL vmlinux 0xca531806 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0xca58de37 pci_bus_type +EXPORT_SYMBOL vmlinux 0xca5e3281 generic_getxattr +EXPORT_SYMBOL vmlinux 0xca91a75f dev_change_proto_down +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca93c260 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xca9ad655 omapdss_output_set_device +EXPORT_SYMBOL vmlinux 0xca9fa2b6 of_match_device +EXPORT_SYMBOL vmlinux 0xcaf0667f unlink_framebuffer +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb0abcce pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0xcb13d278 kthread_bind +EXPORT_SYMBOL vmlinux 0xcb1dc269 tty_lock +EXPORT_SYMBOL vmlinux 0xcb1ffaf9 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0xcb3264c7 km_state_notify +EXPORT_SYMBOL vmlinux 0xcb3f23da xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xcb466063 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xcb491345 fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbbf94f6 i2c_release_client +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbcf2505 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0xcbdb0049 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0xcbeac4be hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcbeb5b00 km_query +EXPORT_SYMBOL vmlinux 0xcbee6439 ida_simple_get +EXPORT_SYMBOL vmlinux 0xcc12e4ee cfb_imageblit +EXPORT_SYMBOL vmlinux 0xcc15835e sk_mc_loop +EXPORT_SYMBOL vmlinux 0xcc173ea3 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xcc1b5f6e dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc643cfe seq_release_private +EXPORT_SYMBOL vmlinux 0xcc6ecbf8 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xcc7d36fe find_vma +EXPORT_SYMBOL vmlinux 0xcc90a433 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0xcc90f579 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xcc940390 blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0xccb2f14a kobject_get +EXPORT_SYMBOL vmlinux 0xccb894b2 snd_pcm_hw_param_last +EXPORT_SYMBOL vmlinux 0xccba28b5 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccc290cc kill_fasync +EXPORT_SYMBOL vmlinux 0xccf0b6a5 xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0xccfef64f skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd30b95a tmio_core_mmc_clk_div +EXPORT_SYMBOL vmlinux 0xcd4c1f2b __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xcd4ed039 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0xcd63c845 __aeabi_lasr +EXPORT_SYMBOL vmlinux 0xcd7693c0 xfrm_lookup +EXPORT_SYMBOL vmlinux 0xcd7bd32d fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0xcd8137e9 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xcd8ec638 sock_wmalloc +EXPORT_SYMBOL vmlinux 0xcd901441 sock_efree +EXPORT_SYMBOL vmlinux 0xcd945440 mmc_erase +EXPORT_SYMBOL vmlinux 0xcd9953c2 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xcd9d7d29 ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xcda2efa7 tso_count_descs +EXPORT_SYMBOL vmlinux 0xcdb9eaf0 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdc3af86 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0xcdc49e19 lockref_get +EXPORT_SYMBOL vmlinux 0xcdc51809 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0xcdcaa5f5 __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0xcdcdc089 pps_event +EXPORT_SYMBOL vmlinux 0xcdd0ca9c of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0xcdd2d3c3 ip_defrag +EXPORT_SYMBOL vmlinux 0xcde39944 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0xcdec0aab uart_update_timeout +EXPORT_SYMBOL vmlinux 0xcdf64744 PDE_DATA +EXPORT_SYMBOL vmlinux 0xce0f6335 mpage_writepage +EXPORT_SYMBOL vmlinux 0xce0fdbcc sock_edemux +EXPORT_SYMBOL vmlinux 0xce2760e9 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce2bddb5 swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xce2ede12 sock_release +EXPORT_SYMBOL vmlinux 0xce30f482 gen_pool_free +EXPORT_SYMBOL vmlinux 0xce3ca308 copy_from_user_toio +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xcec0be58 param_get_uint +EXPORT_SYMBOL vmlinux 0xcecfd42e omapdss_unregister_display +EXPORT_SYMBOL vmlinux 0xced68fbd blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0xcee07029 neigh_app_ns +EXPORT_SYMBOL vmlinux 0xceeb0985 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0xceed7f85 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefc1b83 dev_load +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf0a2b3f devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xcf10034a cfb_copyarea +EXPORT_SYMBOL vmlinux 0xcf169fea kset_unregister +EXPORT_SYMBOL vmlinux 0xcf55560b soft_cursor +EXPORT_SYMBOL vmlinux 0xcf6dfce5 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0xcf859ea5 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0xcf88625f mempool_create_node +EXPORT_SYMBOL vmlinux 0xcf97c22b pci_disable_msi +EXPORT_SYMBOL vmlinux 0xcf98c983 serio_rescan +EXPORT_SYMBOL vmlinux 0xcfa0e8cb blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0xcfab43fd kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xcfb2f430 seq_write +EXPORT_SYMBOL vmlinux 0xcfcd2119 generic_readlink +EXPORT_SYMBOL vmlinux 0xcfdfc083 scm_fp_dup +EXPORT_SYMBOL vmlinux 0xcfecef8c omap_dss_get_output +EXPORT_SYMBOL vmlinux 0xcff18df3 phy_init_eee +EXPORT_SYMBOL vmlinux 0xcff4939f dquot_destroy +EXPORT_SYMBOL vmlinux 0xcff6b676 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0xd0045971 mmc_add_host +EXPORT_SYMBOL vmlinux 0xd00d150d phy_connect +EXPORT_SYMBOL vmlinux 0xd00efc01 i2c_use_client +EXPORT_SYMBOL vmlinux 0xd0113cc4 netdev_warn +EXPORT_SYMBOL vmlinux 0xd027686c abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xd034105f lockref_put_return +EXPORT_SYMBOL vmlinux 0xd04027ac sock_init_data +EXPORT_SYMBOL vmlinux 0xd04231a8 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0xd05d4469 eth_header +EXPORT_SYMBOL vmlinux 0xd06b0a7b uart_remove_one_port +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd098a0b9 skb_unlink +EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0aa10bf simple_write_end +EXPORT_SYMBOL vmlinux 0xd0c16e94 kernel_sendpage +EXPORT_SYMBOL vmlinux 0xd0c6c003 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xd0e89915 down_read +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0xd100acbd _raw_write_lock +EXPORT_SYMBOL vmlinux 0xd1067ba7 dispc_ovl_enabled +EXPORT_SYMBOL vmlinux 0xd12ec037 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xd1386c40 max8998_write_reg +EXPORT_SYMBOL vmlinux 0xd1457d96 down_write_trylock +EXPORT_SYMBOL vmlinux 0xd14c79f2 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0xd15e10da vfs_getxattr_alloc +EXPORT_SYMBOL vmlinux 0xd162c0b5 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xd18151d8 param_ops_ulong +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd196c9be kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xd19cbd4b input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0xd1ad8d4e component_match_add +EXPORT_SYMBOL vmlinux 0xd1b7d071 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xd1bd096a tcf_hash_search +EXPORT_SYMBOL vmlinux 0xd1c84dfb hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1e79cae fence_wait_timeout +EXPORT_SYMBOL vmlinux 0xd1eefc34 request_key_async +EXPORT_SYMBOL vmlinux 0xd22927e6 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0xd23a26ab alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd2af138b reservation_ww_class +EXPORT_SYMBOL vmlinux 0xd2ce7792 thaw_super +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd3024bad default_llseek +EXPORT_SYMBOL vmlinux 0xd306d1f9 inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0xd30edd9c da903x_query_status +EXPORT_SYMBOL vmlinux 0xd3124827 mount_subtree +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd329396f d_find_alias +EXPORT_SYMBOL vmlinux 0xd33be7de qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xd347ed52 scsi_register_interface +EXPORT_SYMBOL vmlinux 0xd3890326 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xd39bbe44 dev_uc_sync +EXPORT_SYMBOL vmlinux 0xd39fc2d6 snd_jack_report +EXPORT_SYMBOL vmlinux 0xd3aa88df netpoll_print_options +EXPORT_SYMBOL vmlinux 0xd3ac7d68 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xd3b3dcac param_set_long +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3c2c139 param_set_invbool +EXPORT_SYMBOL vmlinux 0xd3c89906 vfs_writef +EXPORT_SYMBOL vmlinux 0xd3dab093 __kernel_write +EXPORT_SYMBOL vmlinux 0xd3dbfbc4 _find_first_zero_bit_le +EXPORT_SYMBOL vmlinux 0xd3e6f60d cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xd3e7d88f xfrm_input +EXPORT_SYMBOL vmlinux 0xd3f5be1f tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xd4026b1e ata_print_version +EXPORT_SYMBOL vmlinux 0xd4126781 km_state_expired +EXPORT_SYMBOL vmlinux 0xd42936e7 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xd43954f1 mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0xd460aec4 map_destroy +EXPORT_SYMBOL vmlinux 0xd4669fad complete +EXPORT_SYMBOL vmlinux 0xd46fdfba lru_cache_add_file +EXPORT_SYMBOL vmlinux 0xd488d8c1 of_device_is_available +EXPORT_SYMBOL vmlinux 0xd48ce7a6 arp_create +EXPORT_SYMBOL vmlinux 0xd49a7cd8 misc_register +EXPORT_SYMBOL vmlinux 0xd4db3a01 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xd4e806d4 vfs_writev +EXPORT_SYMBOL vmlinux 0xd5096b94 locks_remove_posix +EXPORT_SYMBOL vmlinux 0xd50ed405 posix_test_lock +EXPORT_SYMBOL vmlinux 0xd51b17d4 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0xd553f4bd padata_free +EXPORT_SYMBOL vmlinux 0xd55a5b39 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0xd55aa540 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xd5642412 __pci_register_driver +EXPORT_SYMBOL vmlinux 0xd56433a2 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xd56f00bf scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd5f3f31f cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0xd5fa2f8d xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0xd61347c6 register_sysctl +EXPORT_SYMBOL vmlinux 0xd614b1e8 bh_submit_read +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd626ac3f snd_card_file_remove +EXPORT_SYMBOL vmlinux 0xd627480b strncat +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd62cbf16 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xd648c9d1 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd66a2e73 add_disk +EXPORT_SYMBOL vmlinux 0xd66ec4e9 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xd6885771 dump_page +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd6c46ee8 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6efc9c3 iterate_fd +EXPORT_SYMBOL vmlinux 0xd6f2b8f7 inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0xd71fd77a netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xd74289f9 __percpu_counter_add +EXPORT_SYMBOL vmlinux 0xd74ce039 inet_stream_ops +EXPORT_SYMBOL vmlinux 0xd7597ae2 rfkill_alloc +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd76126bf i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xd778ef26 inode_set_bytes +EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write +EXPORT_SYMBOL vmlinux 0xd7a53e4d inet_csk_accept +EXPORT_SYMBOL vmlinux 0xd7af91cf qdisc_list_add +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd806bec6 blk_end_request +EXPORT_SYMBOL vmlinux 0xd8179d10 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xd81a9727 led_blink_set +EXPORT_SYMBOL vmlinux 0xd81bd33b inet6_protos +EXPORT_SYMBOL vmlinux 0xd82cc29d napi_get_frags +EXPORT_SYMBOL vmlinux 0xd8337ce8 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xd85833cb __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0xd85cd67e __wake_up +EXPORT_SYMBOL vmlinux 0xd8677ea0 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0xd86ab8e7 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xd88144e0 vme_master_request +EXPORT_SYMBOL vmlinux 0xd88660c4 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b8ed8f pci_add_new_bus +EXPORT_SYMBOL vmlinux 0xd8bf0c07 register_quota_format +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd90e6640 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xd93b2e8b blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0xd93f1e06 alloc_fddidev +EXPORT_SYMBOL vmlinux 0xd955d2b7 omap_set_dma_dest_data_pack +EXPORT_SYMBOL vmlinux 0xd970cf25 vga_tryget +EXPORT_SYMBOL vmlinux 0xd97edd47 neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd99f836e nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0xd9b43765 inode_init_always +EXPORT_SYMBOL vmlinux 0xd9b7134d block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xd9c297fe ping_prot +EXPORT_SYMBOL vmlinux 0xd9cc7727 security_path_unlink +EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9defa97 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xd9e432c3 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0xd9e59b9f netdev_printk +EXPORT_SYMBOL vmlinux 0xd9f492bf put_tty_driver +EXPORT_SYMBOL vmlinux 0xd9ff3951 vfs_whiteout +EXPORT_SYMBOL vmlinux 0xda0f4024 kern_path +EXPORT_SYMBOL vmlinux 0xda1e3685 param_set_byte +EXPORT_SYMBOL vmlinux 0xda34e484 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda3da3d2 send_sig +EXPORT_SYMBOL vmlinux 0xda4f0f3f pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0xda5332ef vfs_link +EXPORT_SYMBOL vmlinux 0xda61eed3 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xda66260b blkdev_put +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda89aa6f ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xdaa57ec3 totalhigh_pages +EXPORT_SYMBOL vmlinux 0xdaafc807 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xdac08516 pci_map_rom +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdad97f94 __raw_writesw +EXPORT_SYMBOL vmlinux 0xdb0787c3 commit_creds +EXPORT_SYMBOL vmlinux 0xdb0e855b serio_reconnect +EXPORT_SYMBOL vmlinux 0xdb304974 dst_alloc +EXPORT_SYMBOL vmlinux 0xdb4292e4 omap_set_dma_params +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb8113c1 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xdb8b9dcb sock_update_memcg +EXPORT_SYMBOL vmlinux 0xdb93b838 dispc_free_irq +EXPORT_SYMBOL vmlinux 0xdbc5dbc6 contig_page_data +EXPORT_SYMBOL vmlinux 0xdbcaace3 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xdbd1f9bf page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xdbf54142 page_cache_next_hole +EXPORT_SYMBOL vmlinux 0xdbf83a9e should_remove_suid +EXPORT_SYMBOL vmlinux 0xdc002c70 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc196d38 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0xdc32f31c __seq_open_private +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc484109 posix_lock_file +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc5c6297 videomode_to_omap_video_timings +EXPORT_SYMBOL vmlinux 0xdc5e6c14 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0xdc774661 blk_recount_segments +EXPORT_SYMBOL vmlinux 0xdc834296 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0xdc893f8f security_path_chmod +EXPORT_SYMBOL vmlinux 0xdc8ac759 mem_cgroup_end_page_stat +EXPORT_SYMBOL vmlinux 0xdc90ae4f dput +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcd45758 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xdcd6c344 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0xdcdbf598 snd_info_create_module_entry +EXPORT_SYMBOL vmlinux 0xdce5ad15 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xdcf0a875 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xdd02fe85 register_sound_special_device +EXPORT_SYMBOL vmlinux 0xdd08e288 vfs_setpos +EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat +EXPORT_SYMBOL vmlinux 0xdd0bb98e nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0xdd226fa9 __raw_readsw +EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr +EXPORT_SYMBOL vmlinux 0xdd3916ac _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xdd3e3589 ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0xdd568d29 tty_mutex +EXPORT_SYMBOL vmlinux 0xdd5c21d3 ppp_input_error +EXPORT_SYMBOL vmlinux 0xdd62775f __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0xdd7f16d4 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xdd89e52c invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xdd93e364 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xdde58228 fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0xde0640fb register_sound_mixer +EXPORT_SYMBOL vmlinux 0xde1243bd blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xde1e63bb pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0xde3c8b21 dev_alert +EXPORT_SYMBOL vmlinux 0xde474aaf param_get_string +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xdeaa0951 iov_iter_init +EXPORT_SYMBOL vmlinux 0xdec030e5 arm_clear_user +EXPORT_SYMBOL vmlinux 0xdecddb0e unlock_buffer +EXPORT_SYMBOL vmlinux 0xded931f3 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0xdede3c8c check_disk_change +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf2fdae4 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf6fc8cd wake_up_process +EXPORT_SYMBOL vmlinux 0xdf750763 amba_device_register +EXPORT_SYMBOL vmlinux 0xdf770622 nand_bch_init +EXPORT_SYMBOL vmlinux 0xdf796a46 unregister_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0xdf7cd4d0 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xdf905788 udp_prot +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf9ff5ec dev_close +EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init +EXPORT_SYMBOL vmlinux 0xdfd91ce9 omap_type +EXPORT_SYMBOL vmlinux 0xdfdab9c4 shdma_init +EXPORT_SYMBOL vmlinux 0xdff06d61 irq_to_desc +EXPORT_SYMBOL vmlinux 0xdff0f276 netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffbb293 napi_disable +EXPORT_SYMBOL vmlinux 0xe0107c62 input_unregister_handler +EXPORT_SYMBOL vmlinux 0xe03937b6 kill_anon_super +EXPORT_SYMBOL vmlinux 0xe03d8062 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe091617d tty_port_close +EXPORT_SYMBOL vmlinux 0xe09fd959 of_dev_get +EXPORT_SYMBOL vmlinux 0xe0a2b23e dmam_pool_create +EXPORT_SYMBOL vmlinux 0xe0a864c5 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b52a5c blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco +EXPORT_SYMBOL vmlinux 0xe0fdfa50 phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0xe1080d59 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0xe111178d set_bh_page +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe127fb18 down_killable +EXPORT_SYMBOL vmlinux 0xe12f138b pci_select_bars +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe14395ca dev_remove_pack +EXPORT_SYMBOL vmlinux 0xe16d258c __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0xe170836b ihold +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe18b26e5 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0xe196778c tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0xe1d1f4d2 mmc_can_reset +EXPORT_SYMBOL vmlinux 0xe1f0ab3a _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xe1f6f65b snd_pcm_release_substream +EXPORT_SYMBOL vmlinux 0xe1fcb922 snd_seq_root +EXPORT_SYMBOL vmlinux 0xe1fd1614 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe2028147 sock_get_timestamp +EXPORT_SYMBOL vmlinux 0xe21669a7 tso_build_hdr +EXPORT_SYMBOL vmlinux 0xe21c4ba5 sock_wake_async +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe28d9065 module_layout +EXPORT_SYMBOL vmlinux 0xe29523c8 dev_mc_sync +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2b20144 __put_cred +EXPORT_SYMBOL vmlinux 0xe2cc96f7 __do_once_done +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2d79074 pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0xe2e09482 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup +EXPORT_SYMBOL vmlinux 0xe330f7ec max8925_bulk_write +EXPORT_SYMBOL vmlinux 0xe33c91ee nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xe33ea462 mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0xe344b915 release_firmware +EXPORT_SYMBOL vmlinux 0xe36c41e4 __netif_schedule +EXPORT_SYMBOL vmlinux 0xe37d10ae omap_dispc_unregister_isr +EXPORT_SYMBOL vmlinux 0xe3b45e27 skb_queue_tail +EXPORT_SYMBOL vmlinux 0xe3b8bfeb fb_get_mode +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3f14a3c abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xe40e46a6 init_buffer +EXPORT_SYMBOL vmlinux 0xe413be4a memcg_socket_limit_enabled +EXPORT_SYMBOL vmlinux 0xe4185865 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xe430d6fd __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xe43274bc proc_dointvec +EXPORT_SYMBOL vmlinux 0xe44ad011 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0xe44bc265 devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0xe47815d4 nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xe4989987 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xe4a3b23b blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xe4b918ea tty_port_tty_set +EXPORT_SYMBOL vmlinux 0xe4c80097 cacheid +EXPORT_SYMBOL vmlinux 0xe4de10c6 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4f40948 ata_link_printk +EXPORT_SYMBOL vmlinux 0xe503547b revalidate_disk +EXPORT_SYMBOL vmlinux 0xe5040aed xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe55f5ab6 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL vmlinux 0xe56f096a d_alloc_name +EXPORT_SYMBOL vmlinux 0xe571e0a5 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe57e2ddd blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe588c552 param_set_charp +EXPORT_SYMBOL vmlinux 0xe598d9e4 snd_timer_resolution +EXPORT_SYMBOL vmlinux 0xe5b08d8d pci_remove_bus +EXPORT_SYMBOL vmlinux 0xe5b18759 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xe5b5bce9 neigh_table_clear +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5d7012f tcp_prequeue +EXPORT_SYMBOL vmlinux 0xe5ddebdd security_path_rename +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe601c36a from_kgid +EXPORT_SYMBOL vmlinux 0xe62f0e4a inetdev_by_index +EXPORT_SYMBOL vmlinux 0xe6375555 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xe64686ad ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0xe64f2dfe dump_align +EXPORT_SYMBOL vmlinux 0xe654def3 __ps2_command +EXPORT_SYMBOL vmlinux 0xe663cfc8 eth_change_mtu +EXPORT_SYMBOL vmlinux 0xe66452ab dql_init +EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe6a61bd7 tcp_child_process +EXPORT_SYMBOL vmlinux 0xe6a7ccea eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xe6b826b5 snd_card_file_add +EXPORT_SYMBOL vmlinux 0xe6bb929e ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xe6e25aed scsi_report_opcode +EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe7075b97 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xe707d823 __aeabi_uidiv +EXPORT_SYMBOL vmlinux 0xe70a9854 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0xe74b4b4f __sock_create +EXPORT_SYMBOL vmlinux 0xe78c5350 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xe78f3282 replace_mount_options +EXPORT_SYMBOL vmlinux 0xe790afc3 omap_get_dma_dst_pos +EXPORT_SYMBOL vmlinux 0xe79e8891 snd_cards +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7b4ce2a dma_mark_declared_memory_occupied +EXPORT_SYMBOL vmlinux 0xe7b6315e kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7dadef8 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0xe7e15910 dispc_clear_irqstatus +EXPORT_SYMBOL vmlinux 0xe7e7d3a4 netdev_master_upper_dev_link_private +EXPORT_SYMBOL vmlinux 0xe8159d25 msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe83f2b6c km_new_mapping +EXPORT_SYMBOL vmlinux 0xe85006cb unregister_console +EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss +EXPORT_SYMBOL vmlinux 0xe87b2edd sg_copy_buffer +EXPORT_SYMBOL vmlinux 0xe893a406 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8cfd00d capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xe8eade0f nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xe8ee5b14 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xe8f4219d blk_peek_request +EXPORT_SYMBOL vmlinux 0xe903caf8 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xe912da6b unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe91bfdd2 dcb_setapp +EXPORT_SYMBOL vmlinux 0xe92798f9 vm_insert_pfn +EXPORT_SYMBOL vmlinux 0xe9394405 inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0xe93d5410 single_release +EXPORT_SYMBOL vmlinux 0xe93f6042 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xe94d62e2 snd_unregister_device +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95993e6 tcp_poll +EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0xe96e3eb4 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0xe9777f12 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0xe9937247 dev_set_mtu +EXPORT_SYMBOL vmlinux 0xe997a31a generic_writepages +EXPORT_SYMBOL vmlinux 0xe998c829 mdio_bus_type +EXPORT_SYMBOL vmlinux 0xe99f2571 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xe9bcd874 snd_timer_close +EXPORT_SYMBOL vmlinux 0xe9be808d lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0xe9ea0ec4 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0xe9efe8b2 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea0c63bc udp6_set_csum +EXPORT_SYMBOL vmlinux 0xea0c8ff9 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0xea0ce26b blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xea183d7e flow_cache_init +EXPORT_SYMBOL vmlinux 0xea1f5b88 samsung_rev +EXPORT_SYMBOL vmlinux 0xea25a405 mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0xea53462b nand_scan +EXPORT_SYMBOL vmlinux 0xea688c30 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL vmlinux 0xea68d8ad bdi_init +EXPORT_SYMBOL vmlinux 0xea71cca7 kmalloc_caches +EXPORT_SYMBOL vmlinux 0xea795ca0 bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xea7987f1 key_update +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xea8f26d1 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xea9b5c30 simple_setattr +EXPORT_SYMBOL vmlinux 0xeaa0484b nd_region_release_lane +EXPORT_SYMBOL vmlinux 0xeaa6d547 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xeab1a412 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xeab7e688 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0xeac70185 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xeae36619 of_device_register +EXPORT_SYMBOL vmlinux 0xeb03b389 __raw_readsl +EXPORT_SYMBOL vmlinux 0xeb04f028 register_netdev +EXPORT_SYMBOL vmlinux 0xeb0f7772 md_check_recovery +EXPORT_SYMBOL vmlinux 0xeb1b120e omap_set_dma_write_mode +EXPORT_SYMBOL vmlinux 0xeb28d843 generic_write_checks +EXPORT_SYMBOL vmlinux 0xeb2b5b84 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb53d554 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xeb57624d get_cached_acl +EXPORT_SYMBOL vmlinux 0xeb629cb7 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xeb8911f7 udp_disconnect +EXPORT_SYMBOL vmlinux 0xeb976574 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xebaef709 km_policy_expired +EXPORT_SYMBOL vmlinux 0xebaf3dac phy_driver_register +EXPORT_SYMBOL vmlinux 0xebb5da48 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0xebba78a7 dst_release +EXPORT_SYMBOL vmlinux 0xebbd6ebf tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0xebbf17c8 udp_poll +EXPORT_SYMBOL vmlinux 0xebd496fb try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xebfdcbdf system_serial_high +EXPORT_SYMBOL vmlinux 0xec028009 dev_notice +EXPORT_SYMBOL vmlinux 0xec1aa6ef memzero_explicit +EXPORT_SYMBOL vmlinux 0xec27715b xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xec3f9467 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec539f72 dquot_quota_off +EXPORT_SYMBOL vmlinux 0xec561258 kmap_atomic +EXPORT_SYMBOL vmlinux 0xec6070ed __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xec8554a0 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0xec90532a twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0xeca85d90 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0xecaaafa3 generic_file_fsync +EXPORT_SYMBOL vmlinux 0xecb4c67d __skb_tx_hash +EXPORT_SYMBOL vmlinux 0xecbcb8bb radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0xeccee364 dev_trans_start +EXPORT_SYMBOL vmlinux 0xecdb434f linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xeceff434 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xecf8a3b4 __raw_writesl +EXPORT_SYMBOL vmlinux 0xed05ed59 register_sound_midi +EXPORT_SYMBOL vmlinux 0xed09e4a4 swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0xed16aa28 bdi_register +EXPORT_SYMBOL vmlinux 0xed36088c snd_pcm_hw_param_first +EXPORT_SYMBOL vmlinux 0xed3c43ae swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0xed444aae padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed727140 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0xed78c9d9 nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0xed9193b0 do_map_probe +EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xedabd0c5 locks_copy_lock +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedbc3d06 fd_install +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc7f4ec dq_data_lock +EXPORT_SYMBOL vmlinux 0xedd0b943 fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0xedd5befd filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xedd9106d __ashrdi3 +EXPORT_SYMBOL vmlinux 0xede7e8f0 pcim_pin_device +EXPORT_SYMBOL vmlinux 0xedebe02f no_llseek +EXPORT_SYMBOL vmlinux 0xedec3213 bio_integrity_endio +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xedfcd4b0 nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0xee0d4459 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0xee2bc2d0 omapdss_is_initialized +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee3ab8e8 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xee6a908f dma_common_mmap +EXPORT_SYMBOL vmlinux 0xee6c6dc4 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0xee6fe3c3 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0xee715ef8 lg_global_unlock +EXPORT_SYMBOL vmlinux 0xee8c4ddd of_mm_gpiochip_add +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee93f42c xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xee9c3647 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xee9cf5bf alloc_anon_inode +EXPORT_SYMBOL vmlinux 0xee9fa53e pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeed3635b proc_dostring +EXPORT_SYMBOL vmlinux 0xeed54710 pci_match_id +EXPORT_SYMBOL vmlinux 0xeee44490 module_refcount +EXPORT_SYMBOL vmlinux 0xeeeb6041 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xeef670ef ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0xef04c0d3 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0xef0a7fa8 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0xef0f3eb3 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0xef2a5879 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0xef2fdc4f __percpu_counter_init +EXPORT_SYMBOL vmlinux 0xef458a8c inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xef4bff9c scsi_register +EXPORT_SYMBOL vmlinux 0xef4de22b of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0xef61c155 bio_put +EXPORT_SYMBOL vmlinux 0xef658b5f blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xef6ccdd3 clk_add_alias +EXPORT_SYMBOL vmlinux 0xef6e13bf skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xef70b445 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xef79f7f9 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL vmlinux 0xef8c1bde noop_qdisc +EXPORT_SYMBOL vmlinux 0xefcf3143 wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xefd17c8d vme_register_error_handler +EXPORT_SYMBOL vmlinux 0xefd1b950 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xefd6cf06 __aeabi_unwind_cpp_pr0 +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefe56b3c uart_add_one_port +EXPORT_SYMBOL vmlinux 0xefe64a2b mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0xefec312f omap_get_dma_active_status +EXPORT_SYMBOL vmlinux 0xeffc883f scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf00813be arp_send +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf0260fae i2c_transfer +EXPORT_SYMBOL vmlinux 0xf05e193e scsi_device_get +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf0650d9e scsi_remove_host +EXPORT_SYMBOL vmlinux 0xf06c303c omap_video_timings_to_videomode +EXPORT_SYMBOL vmlinux 0xf07b9cab xfrm_register_km +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf096adf0 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0xf09a31d8 dquot_commit +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf0aa53cd nobh_writepage +EXPORT_SYMBOL vmlinux 0xf0c0cf01 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xf0ccfc86 dev_printk_emit +EXPORT_SYMBOL vmlinux 0xf0d6deb6 uart_suspend_port +EXPORT_SYMBOL vmlinux 0xf0ed2ef4 __raw_writesb +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf104e7dc xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf140bcac dev_addr_add +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf14cdca1 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xf1523228 d_alloc +EXPORT_SYMBOL vmlinux 0xf157dbe6 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0xf168f566 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xf17afce5 vme_bus_num +EXPORT_SYMBOL vmlinux 0xf18b9209 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xf19165b5 user_path_create +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf198e4ff dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xf19e9355 cpu_online_mask +EXPORT_SYMBOL vmlinux 0xf19f29d6 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xf1a048cf padata_start +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1deabf2 div64_u64 +EXPORT_SYMBOL vmlinux 0xf1df4714 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1ea6f1c __bswapsi2 +EXPORT_SYMBOL vmlinux 0xf1f0905f snd_pcm_set_ops +EXPORT_SYMBOL vmlinux 0xf1f2dfcf wireless_send_event +EXPORT_SYMBOL vmlinux 0xf1fa13db netif_rx +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf216adeb elv_rb_find +EXPORT_SYMBOL vmlinux 0xf235f9f7 ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf24c005c fifo_set_limit +EXPORT_SYMBOL vmlinux 0xf259f01c cdrom_media_changed +EXPORT_SYMBOL vmlinux 0xf272c757 d_find_any_alias +EXPORT_SYMBOL vmlinux 0xf29492ca uart_resume_port +EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2ce4f7c bdevname +EXPORT_SYMBOL vmlinux 0xf2d999e9 sock_create +EXPORT_SYMBOL vmlinux 0xf2dd40ba xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xf30c6ac2 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf3229baf scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0xf33963bc tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf35a14b5 dma_release_from_coherent +EXPORT_SYMBOL vmlinux 0xf36ea43b zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0xf3798ec9 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0xf386ba7e __cleancache_put_page +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf3902b6a kfree_skb_partial +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf40b2297 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xf43a6f0d pipe_unlock +EXPORT_SYMBOL vmlinux 0xf455ac0b __scsi_add_device +EXPORT_SYMBOL vmlinux 0xf4628d12 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xf473ffaf down +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf482ffc4 follow_down +EXPORT_SYMBOL vmlinux 0xf49194e6 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0xf4a2d0ad dss_mgr_enable +EXPORT_SYMBOL vmlinux 0xf4a7fc6d omapdss_compat_init +EXPORT_SYMBOL vmlinux 0xf4bd8710 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4c81fb0 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xf4e103bb scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xf4e3da52 tty_do_resize +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4fb5402 skb_dequeue +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf5514ce0 ioremap_page +EXPORT_SYMBOL vmlinux 0xf5555a33 blk_complete_request +EXPORT_SYMBOL vmlinux 0xf55fcdc8 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0xf564412a __aeabi_ulcmp +EXPORT_SYMBOL vmlinux 0xf580219e snd_info_create_card_entry +EXPORT_SYMBOL vmlinux 0xf58737b0 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set +EXPORT_SYMBOL vmlinux 0xf5ab9f43 bdi_register_owner +EXPORT_SYMBOL vmlinux 0xf5c12280 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5e2b7c2 __invalidate_device +EXPORT_SYMBOL vmlinux 0xf5eaf63a sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf6048cac uart_get_divisor +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf6625d94 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0xf669c8e8 block_commit_write +EXPORT_SYMBOL vmlinux 0xf6706110 have_submounts +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf681dba2 netdev_err +EXPORT_SYMBOL vmlinux 0xf6824a2c truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf6851d5f register_sysctl_paths +EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xf68d56b1 fb_class +EXPORT_SYMBOL vmlinux 0xf6922c6b i2c_get_adapter +EXPORT_SYMBOL vmlinux 0xf6b9dbdf vmalloc_to_page +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6bb76b4 param_get_ullong +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf7019bc0 blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0xf703a3c1 pci_get_device +EXPORT_SYMBOL vmlinux 0xf7163ec9 __raw_readsb +EXPORT_SYMBOL vmlinux 0xf737dd90 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0xf7457f21 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0xf750e80e devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf7802486 __aeabi_uidivmod +EXPORT_SYMBOL vmlinux 0xf788b424 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL vmlinux 0xf78e6145 vme_register_driver +EXPORT_SYMBOL vmlinux 0xf7a6f10a ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xf7aaeddc ida_init +EXPORT_SYMBOL vmlinux 0xf7ab6a71 key_invalidate +EXPORT_SYMBOL vmlinux 0xf7c31d81 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xf7dd6757 input_unregister_device +EXPORT_SYMBOL vmlinux 0xf7e7ea73 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xf80a8478 kunmap_high +EXPORT_SYMBOL vmlinux 0xf80d1fa5 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf81c1156 __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf84d5287 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0xf866273f pci_disable_device +EXPORT_SYMBOL vmlinux 0xf867de35 insert_inode_locked +EXPORT_SYMBOL vmlinux 0xf8722dac kill_block_super +EXPORT_SYMBOL vmlinux 0xf875a1ac input_set_abs_params +EXPORT_SYMBOL vmlinux 0xf8963589 get_acl +EXPORT_SYMBOL vmlinux 0xf8972e2e tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xf8aa734c update_devfreq +EXPORT_SYMBOL vmlinux 0xf8b3c8ed proc_set_user +EXPORT_SYMBOL vmlinux 0xf8b4b821 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0xf8d0da44 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xf8d5d9c7 done_path_create +EXPORT_SYMBOL vmlinux 0xf8e179b3 snd_soc_alloc_ac97_codec +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf8fcd74f skb_pad +EXPORT_SYMBOL vmlinux 0xf92ba0e6 of_clk_get +EXPORT_SYMBOL vmlinux 0xf92e1d51 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run +EXPORT_SYMBOL vmlinux 0xf9427374 dispc_request_irq +EXPORT_SYMBOL vmlinux 0xf95e92d5 set_device_ro +EXPORT_SYMBOL vmlinux 0xf964b8c3 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0xf97003f7 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xf97b05e6 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xf9882318 nf_register_hook +EXPORT_SYMBOL vmlinux 0xf98c034e inet_ioctl +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9a5fe1e dquot_transfer +EXPORT_SYMBOL vmlinux 0xf9cd560e blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0xf9dcf156 of_translate_address +EXPORT_SYMBOL vmlinux 0xf9df5ecf lease_get_mtime +EXPORT_SYMBOL vmlinux 0xf9e324e1 pci_scan_slot +EXPORT_SYMBOL vmlinux 0xf9e4111e __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf +EXPORT_SYMBOL vmlinux 0xf9eae00c scsi_print_sense +EXPORT_SYMBOL vmlinux 0xf9eb94b3 max8998_read_reg +EXPORT_SYMBOL vmlinux 0xf9f0756b pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0xfa0169a7 bdgrab +EXPORT_SYMBOL vmlinux 0xfa1de769 amba_release_regions +EXPORT_SYMBOL vmlinux 0xfa50f39f inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa58b7f1 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa69051b generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xfa7d98bf sk_free +EXPORT_SYMBOL vmlinux 0xfa8154a0 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0xfa843bd8 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0xfa8f778a __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0xfaaf5e42 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xfaba059f sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xfac68eba arm_elf_read_implies_exec +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfaca1d3a snd_pcm_hw_constraint_integer +EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfad29923 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xfad5f8eb dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xfae067d8 of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0xfae5394b __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL vmlinux 0xfae685c0 current_fs_time +EXPORT_SYMBOL vmlinux 0xfafae409 path_noexec +EXPORT_SYMBOL vmlinux 0xfb0eb2fd of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0xfb200cca crypto_sha256_update +EXPORT_SYMBOL vmlinux 0xfb25965b bio_flush_dcache_pages +EXPORT_SYMBOL vmlinux 0xfb33af01 wireless_spy_update +EXPORT_SYMBOL vmlinux 0xfb3775de security_file_permission +EXPORT_SYMBOL vmlinux 0xfb3d2dd8 inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0xfb48063e netif_napi_add +EXPORT_SYMBOL vmlinux 0xfb5175a4 dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0xfb5edd68 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb7d0744 block_write_full_page +EXPORT_SYMBOL vmlinux 0xfb7d9c45 __udivsi3 +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfb9e46e8 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbb61e48 neigh_for_each +EXPORT_SYMBOL vmlinux 0xfbc07c50 brioctl_set +EXPORT_SYMBOL vmlinux 0xfbc48073 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbd51901 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xfbe9a40b jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc1b00e6 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xfc2914e7 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xfc3908f5 fence_default_wait +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc4ce4b6 param_get_short +EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0xfc84689d simple_empty +EXPORT_SYMBOL vmlinux 0xfc86d58b __getblk_gfp +EXPORT_SYMBOL vmlinux 0xfc8891bf clkdev_add +EXPORT_SYMBOL vmlinux 0xfc8e0c64 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0xfc9f4245 lwtunnel_input +EXPORT_SYMBOL vmlinux 0xfcb7ca60 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfccd36bb default_file_splice_read +EXPORT_SYMBOL vmlinux 0xfcd8ebe0 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfce35ac6 inet_sendpage +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfceda2b4 md_update_sb +EXPORT_SYMBOL vmlinux 0xfcee192b pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfd0d5f12 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0xfd2e04aa mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0xfd305341 walk_stackframe +EXPORT_SYMBOL vmlinux 0xfd33b5fa cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xfd35208c shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xfd5513c5 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0xfd5683b9 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0xfd5cce86 lro_flush_all +EXPORT_SYMBOL vmlinux 0xfd7e4df9 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xfd84714e snd_pcm_lib_writev +EXPORT_SYMBOL vmlinux 0xfd8930ef scsi_is_host_device +EXPORT_SYMBOL vmlinux 0xfd93950b __scm_destroy +EXPORT_SYMBOL vmlinux 0xfd9496a5 poll_initwait +EXPORT_SYMBOL vmlinux 0xfd96b585 shdma_chan_remove +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfd9e64e3 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL vmlinux 0xfdb6c749 tcp_ioctl +EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0xfdf1f67a of_find_device_by_node +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfdfd7247 led_update_brightness +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe068775 generic_write_end +EXPORT_SYMBOL vmlinux 0xfe18e877 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xfe2ec36d dup_iter +EXPORT_SYMBOL vmlinux 0xfe351e05 dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0xfe358811 mdiobus_scan +EXPORT_SYMBOL vmlinux 0xfe360d17 tcp_sendpage +EXPORT_SYMBOL vmlinux 0xfe40bf95 dss_feat_get_num_ovls +EXPORT_SYMBOL vmlinux 0xfe420d36 release_pages +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe7309e7 bdget +EXPORT_SYMBOL vmlinux 0xfe761859 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfea1885f pm860x_reg_read +EXPORT_SYMBOL vmlinux 0xfeb6b7fe iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0xfec77b76 lock_rename +EXPORT_SYMBOL vmlinux 0xfeca7590 radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0xfedbf606 security_inode_init_security +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfef14027 sk_alloc +EXPORT_SYMBOL vmlinux 0xff0abf20 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xff1da463 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff2782bc scsi_host_get +EXPORT_SYMBOL vmlinux 0xff30161a input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL vmlinux 0xff67b37f __lshrdi3 +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource +EXPORT_SYMBOL vmlinux 0xff86a271 d_instantiate_unique +EXPORT_SYMBOL vmlinux 0xff8cbb1f idr_destroy +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff990761 __break_lease +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xffa662e7 nvm_end_io +EXPORT_SYMBOL vmlinux 0xffb03f58 lwtunnel_output +EXPORT_SYMBOL vmlinux 0xffb94ef0 _test_and_change_bit +EXPORT_SYMBOL vmlinux 0xffcfd8d3 udp_seq_open +EXPORT_SYMBOL vmlinux 0xffd2cf99 omap_dss_get_num_overlay_managers +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffdc9569 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xffe00352 file_ns_capable +EXPORT_SYMBOL vmlinux 0xffec6dac mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0xfff5da14 sg_miter_next +EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0x66525dc1 sha1_finup_arm +EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0x72777368 sha1_update_arm +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x5de7d640 ablk_set_key +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x877fe714 ablk_decrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x9457b186 __ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xc0310729 ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xcb52a733 ablk_init_common +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xf95b88f7 ablk_init +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xffa88a99 ablk_exit +EXPORT_SYMBOL_GPL crypto/af_alg 0x175fbe40 af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0x369d70fc af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x4fbb4541 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x753beb71 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xa09ba38a af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xc20d474a af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xc73e7325 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xd954ef95 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0xdb8d2b7e af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xe1e86f8d af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0xf5aea419 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xed573b30 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x15a0336a async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xd13190d3 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x5c7a4c71 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x9d9d4f2f async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x030479c5 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x21ead2ca async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x87f71546 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x9c54d3c0 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xa8a3f822 async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xaf11d5ee async_xor_val +EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x64ba4238 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x00652074 cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x4079b02c cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 +EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 +EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 +EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x141f8d18 crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0xb9f652dc crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/cryptd 0x069b26cf cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x198e667d cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x62b2f760 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x69a0b2dc cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x818b0c3d cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x979215dd cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xa9ff6c6d cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xb15316df cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xd92d8a11 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xf55125d9 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey +EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey +EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table +EXPORT_SYMBOL_GPL crypto/lrw 0x5a1a070d lrw_crypt +EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table +EXPORT_SYMBOL_GPL crypto/mcryptd 0x11f2babc shash_ahash_mcryptd_digest +EXPORT_SYMBOL_GPL crypto/mcryptd 0x14bdd4d3 mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0x87a47ecd shash_ahash_mcryptd_update +EXPORT_SYMBOL_GPL crypto/mcryptd 0x91a29f62 shash_ahash_mcryptd_final +EXPORT_SYMBOL_GPL crypto/mcryptd 0x9346eccb mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0xa6c44f09 mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/mcryptd 0xc6d8a87f shash_ahash_mcryptd_finup +EXPORT_SYMBOL_GPL crypto/mcryptd 0xec23e0b8 mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0xed87163b mcryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x8f5a6fa6 crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xb7d692cc crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xcee7e8a5 crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xe36cfda6 crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xace9eae0 serpent_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x1664e339 twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey +EXPORT_SYMBOL_GPL crypto/xts 0xd0eb640f xts_crypt +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x6a2d37b0 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x1153b921 sis_info133_for_sata +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x4e205dc3 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x88f07c1a __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xa9ea0a8b __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xfa8a3314 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x06f656fc bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0fff66de bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x103b95d2 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x281da6c1 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2ee80fb6 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4698c640 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4924b03f bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4fd81759 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x51ae3564 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x57a5eee8 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5c81345e bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x67c56d13 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6afee484 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x99f35fdc bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9ef3a7f2 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa1a81363 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xac695fee bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xba97743d bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe82efa2b bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xec13776a bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xee818be4 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf2639694 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf4712074 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfb0db692 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x05902cf3 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x63c5d9b9 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x6feec3f5 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x934f709b btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xa39ab178 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb877c1d1 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x07c36969 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x23e33e88 btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3afbaaba btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3b3aceeb btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5c6d0447 btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8f62cee7 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa426e06e btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xac089a80 btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcc3be41f btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe01668db btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xeff5df49 btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf62d5489 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0180159f btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x05b24ebf btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x06bceeb6 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x26316e62 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4ffce4ea btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5225ed88 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x68200ad8 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x837d07ff btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb7b99507 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xeace36b9 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfd1be0a3 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x05bf361b qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x23f701a3 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xda713cd3 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xa935b128 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x02373dca clk_enable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0d76ccee qcom_find_src_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x198af31b qcom_cc_map +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1ad28e9c clk_rcg_bypass_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1f4159b0 clk_byte2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2c4a90cc clk_is_enabled_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3b0b58e5 clk_regmap_mux_closest_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x53f95e39 clk_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5d9c3e35 devm_clk_register_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6012c0c9 qcom_cc_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x612214bd clk_edp_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x669bd1fd qcom_find_freq +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x67ae803a clk_rcg_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x709d9cf0 clk_pll_configure_sr +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x73964fc2 clk_dyn_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x77c457fa qcom_reset_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8c4dbdbe clk_branch_simple_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8d53d96e clk_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x90b53166 clk_pll_configure_sr_hpm_lp +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x999e1e71 clk_branch2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x99d2c773 clk_rcg2_shared_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9e2e91a1 clk_rcg_bypass2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa1606e61 clk_disable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaace56b1 clk_rcg_esc_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc7994798 clk_branch_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcb0c5248 clk_byte_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcd0a83c6 clk_rcg2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd25fd154 clk_rcg_lcc_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe703bcad clk_pll_vote_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf1f136dc clk_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf69c2f55 clk_pll_sr2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf93e315f clk_regmap_div_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xfd519b5e qcom_cc_really_probe +EXPORT_SYMBOL_GPL drivers/cpufreq/arm_big_little 0x2f7dab4b bL_cpufreq_register +EXPORT_SYMBOL_GPL drivers/cpufreq/arm_big_little 0xeb81b998 bL_cpufreq_unregister +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x1dbe6af1 dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x51e4cf97 dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc678a47e dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc98a3abc dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xdce3690a dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x22b6c7af hsu_dma_irq +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x519d5efc hsu_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x64746a03 hsu_dma_probe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0382550d edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0af17ad7 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1048d799 edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x251c1b5e edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x264e8a46 edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x39b3123c edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4328c374 edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4bd5e851 edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6189707f edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x713007cd edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x76045014 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8c532a5f edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8f2cbf03 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x945b3630 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa1507e15 edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xaf8bbde1 find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb12fbf2f edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc29ad514 edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xca7df20d edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd21263ba edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe1f31cb5 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe74adbeb edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf62f5b24 edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release +EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0xe342fbf5 get_scpi_ops +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x06d6d525 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1feb0af0 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x380b8f7a fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa5f10091 fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb79df05f fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd2964c7b fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x6b3d628b __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xa9fe6d0b __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw_hdmi 0x3ff6a321 dw_hdmi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw_hdmi 0x8dcd6f43 dw_hdmi_set_sample_rate +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw_hdmi 0xce27012a dw_hdmi_audio_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw_hdmi 0xd8fe547b dw_hdmi_audio_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw_hdmi 0xe6090181 dw_hdmi_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x07dcb6e6 drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0a5f5bf3 drm_gem_cma_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x13948658 drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x36b7ba9b drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x453b20fb drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x57d8a8f2 drm_gem_cma_describe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7484870c drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7eac1fbb drm_gem_cma_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa6066bc7 of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb00d88af drm_gem_cma_prime_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb14084fe drm_gem_cma_prime_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc8399f5d drm_gem_cma_prime_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcc5e130f drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd558e400 drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd942d304 drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe1426a6c drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe64d4734 drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xee30e0d0 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf232c895 drm_gem_cma_prime_vunmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1148b623 drm_fbdev_cma_fini +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3eda4204 drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x976aa177 drm_fb_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xac0dd2c2 drm_fbdev_cma_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb2c912af drm_fbdev_cma_hotplug_event +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xcc337fd5 drm_fbdev_cma_restore_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xfd1c9bee drm_fb_cma_debugfs_show +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x04a4053f imx_drm_encoder_get_mux_id +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x1cfe024a imx_drm_crtc_vblank_get +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x27076f8e imx_drm_encoder_destroy +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x37707c0a imx_drm_crtc_id +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x419b08de imx_drm_handle_vblank +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x562fae92 imx_drm_set_bus_format_pins +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x5f056ff0 imx_drm_crtc_vblank_put +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x96ed503b imx_drm_set_bus_format +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xa952bbe4 imx_drm_connector_destroy +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xc75d6724 imx_drm_encoder_parse_of +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xd652b5a4 imx_drm_remove_crtc +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xf2f94003 imx_drm_add_crtc +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchip_drm_vop 0x5e01d76b rockchip_drm_crtc_mode_config +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x43717425 rockchip_unregister_crtc_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x5fa6fc31 rockchip_fb_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x6e554eba rockchip_register_crtc_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xa555830c rockchip_drm_encoder_get_mux_id +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xd98fe6fe rockchip_drm_dma_detach_device +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xdac6001a rockchip_drm_dma_attach_device +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x34adda25 ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x643be18d ttm_dma_page_alloc_debugfs +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xeb982be7 ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x04f7075a ipu_csi_set_mipi_datatype +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0728116a ipu_csi_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0ac62e4a ipu_set_ic_src_mux +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0e42bd95 ipu_csi_set_dest +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1080007b ipu_smfc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x118160e1 ipu_ic_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x11d8f100 ipu_stride_to_bytes +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x13952dfe ipu_dmfc_enable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x15ec2ba5 ipu_di_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x199bd5c8 ipu_dp_disable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1b5f8907 ipu_cpmem_zero +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1b7e59c2 ipu_idmac_wait_busy +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1ba497eb ipu_pixelformat_to_colorspace +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1e913d9f ipu_csi_get_window +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2424c9a6 ipu_csi_is_interlaced +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x27c8cf7d ipu_idmac_set_double_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2d6f8248 ipu_srm_dp_sync_update +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2f92d651 ipu_ic_task_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2f9751b4 ipu_degrees_to_rot_mode +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3054923f ipu_cpmem_set_format_rgb +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x30b6999c ipu_rot_mode_to_degrees +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3166aec7 ipu_dmfc_disable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x348cb7db ipu_cpmem_set_yuv_interleaved +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3afbb44e ipu_smfc_set_watermark +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3e86ea72 ipu_di_get_num +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x434e2dc8 ipu_dp_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x459eceb9 ipu_idmac_channel_irq +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x479a8eee ipu_dc_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x47f6cfdb ipu_idmac_select_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4917f47a ipu_ic_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4aba4f30 ipu_cpmem_set_yuv_planar +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4c179b49 ipu_dp_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4d7eaa07 ipu_csi_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4fe217b8 ipu_cpmem_set_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x50de8670 ipu_ic_task_idma_init +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x51475e87 ipu_dmfc_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5228880f ipu_idmac_get_current_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x527f3b94 ipu_smfc_set_burstsize +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x53ddf3c5 ipu_module_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x53de277c ipu_di_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x598f28f5 ipu_map_irq +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5a3d39af ipu_ic_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5cf820a1 ipu_cpmem_set_yuv_planar_full +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5f1cd674 ipu_cpmem_interlaced_scan +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x60bdf2ec ipu_csi_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x61976f06 ipu_idmac_channel_busy +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x623722e2 ipu_ic_task_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x63573204 ipu_set_csi_src_mux +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x66cce6f2 ipu_cpmem_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x66edf15e ipu_dmfc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7068e939 ipu_dc_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7121bd07 ipu_di_init_sync_panel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7570d9ac ipu_module_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x76302d14 ipu_csi_set_skip_smfc +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x78b355ca ipu_cpmem_set_fmt +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7c90c46b ipu_dp_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x80f239e4 ipu_dp_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8329bc3f ipu_cpmem_set_rotation +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x886c35aa ipu_smfc_map_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x894aa787 ipu_idmac_lock_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9058e289 ipu_smfc_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x94860a6e ipu_cpmem_set_burstsize +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x951a09d5 ipu_csi_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9631866f ipu_cpmem_set_stride +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x99a0ef07 ipu_drm_fourcc_to_colorspace +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9c335d85 ipu_pixelformat_is_planar +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9cf4e7af ipu_dc_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9f38e177 ipu_dp_enable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa4b0cabd ipu_dc_disable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa57770c9 ipu_cpmem_set_high_priority +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa579616b ipu_di_adjust_videomode +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa60b144b ipu_csi_set_window +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa802e8c8 ipu_idmac_disable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa96882d8 ipu_ic_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xac27f55d ipu_cpmem_set_image +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xadaafcfc ipu_idmac_clear_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb228bf1e ipu_dp_set_global_alpha +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb2ad16cf ipu_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb51c726b ipu_idmac_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb55dbb1f ipu_idmac_buffer_is_ready +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb94ca95a ipu_dmfc_init_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbab82127 ipu_cpmem_set_block_mode +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbf5bf882 ipu_idmac_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc21913c3 ipu_dc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc3c2cdb0 ipu_smfc_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc6675aa9 ipu_csi_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc677177d ipu_smfc_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc848c5d7 ipu_dmfc_free_bandwidth +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc85f7809 ipu_cpmem_set_axi_id +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc88d89a1 ipu_mbus_code_to_colorspace +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc97e7a0f ipu_di_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcd7c6998 ipu_ic_task_init +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd064a453 ipu_ic_task_graphics_init +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd109dea9 ipu_idmac_enable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd5055dd9 ipu_dmfc_alloc_bandwidth +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd9d7e3b1 ipu_wait_interrupt +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe300a959 ipu_dp_setup_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe3b86336 ipu_csi_init_interface +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe3bb174f ipu_di_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe5875274 ipu_cpmem_set_resolution +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe6243c52 ipu_dc_enable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xeed4c54b ipu_cpmem_set_format_passthrough +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf1440dc1 ipu_ic_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf69d6cb6 ipu_csi_set_test_generator +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf7d99d69 ipu_dc_init_sync +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf9ed222e ipu_dp_set_window_pos +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xfab0d1ef ipu_idmac_enable_watermark +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0c1a7be4 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x114b0471 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x162f3180 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1d170480 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2514f6b2 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2bbd0fab __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2ed2c588 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x340e5715 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3668d550 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x40620148 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4b984fde hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x502d9f4e hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x559e4090 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x598ef64f hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5a0895c2 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5f05976a hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5f07d755 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x871e071b hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x877c0b95 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x87ddfc5d hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x884ee007 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8ae5cbaf hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9bef9bf5 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa259d2e5 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0xad346ada hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaefce62e hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb25a9d36 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbd1063fa hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc0a15da2 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc997c994 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc9df7b19 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xced35836 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdd098ad4 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0xef9e0623 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf9e2b438 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfe1b1e78 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0xe3a0ad2a roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x7fd9e560 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x85ebbfc2 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x9b7984ff roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xcb9ace99 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xcf1f9eb2 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xe2fec2dc roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x02b473f5 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1a8014ba hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x29e0c937 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x5d012201 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x8f47d98a sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa22ce8b9 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xad8bbb27 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf1146560 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xfeaf992d sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x7b6c25b5 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0173e85b hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0aac20c8 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1f82b723 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x254b2b2a hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x30bd27c9 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x55f519b2 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6cd03919 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6fe020e4 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x830544f2 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x887ea15d hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa270ccbb hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa8a5a8d5 hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb40c525c hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbf9adbf6 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd0f58466 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf5ffec02 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf8994669 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xff8c3375 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x580ea9f9 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x888b0c55 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xe587c3fe adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x24f5167d pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2637fe35 pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3929bd99 pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3f36b649 pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4c060ec3 pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4df7c7b3 pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x5ca6f1db pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x618abf1b pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x6a8891f5 pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x7d729e38 pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x816bd3e8 pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x9b4ab454 pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xbcc01b65 pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xc2a4ea92 pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xc34d3a07 pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x05efc4b0 __hwspin_unlock +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x2980b633 hwspin_lock_unregister +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x2b25678a hwspin_lock_request_specific +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x3ef63923 hwspin_lock_register +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x8da0ef5c __hwspin_trylock +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xa0e7d08e __hwspin_lock_timeout +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xa9569ba4 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xc8ef2b4a hwspin_lock_free +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xd5f4f9c4 hwspin_lock_request +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xeb611902 hwspin_lock_get_id +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x266da005 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x78cae62c intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xaad153af intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xab65cdcf intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd9c3d410 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xdec60dc9 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe5419c70 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x285a3c9a stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x3dec58d2 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7637a92e stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xad18b0bb stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe83b83dc stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x11755c06 i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x92719488 i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xac4f65b1 i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xdaf52c7e i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xdd1a5062 i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x299d884a i2c_del_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x30fd5653 i2c_add_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xabf2e45c i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xe3e8e9fa i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x1aa3283f bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x80b692b2 bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xabe322ea bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x12a361c0 ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x1a4e79a6 ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x299a8de4 ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x2c77b4e7 ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x31758f82 ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x3d67a0cf ad_sd_reset +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x4dc52bfb ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x526e7f54 ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x5e4c6d1f ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x83e419ce ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x53eb6412 iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xd88981e6 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x0f57e2fe ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xcb2903a6 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x9a8ec81c bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xc07d0dea bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xe068d316 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x314df1d8 adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x3d7f7029 adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x3f12f6a6 adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x52e43962 adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x917875d8 adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x96147c4b adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x9e8db88c adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xa27abb73 adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xa3f9a07f adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xa8fff6fc adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xce60b293 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xe630c01d adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x02576021 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x07de5366 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0e40187b iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x11909023 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x14532389 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1d8f3ab0 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2a1dd232 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2d45c580 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3512728b iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x37795ec9 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x43fdf38f iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x44fd2418 iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x485e61d9 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x513eb239 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6c5c92dc iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6cb018b9 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x723818c3 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x83fb6337 devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9e908f61 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa5a9c429 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaee275b7 devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xafdad1a3 iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb1a2cfb4 devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb3abdd39 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbec5954a devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc9594071 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe0426fcd iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe61caa1f iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe82744a0 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf0e39ae6 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf5a85729 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xb8f8421a input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x702f3d0d matrix_keypad_parse_of_params +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x7f127fc8 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xb64d24be cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xd3a76f5b cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xf7f6ff76 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x2b489d62 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xb62dc146 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xcdd3399a cyttsp_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x0bb2ba8b cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x7fae0044 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x23008a77 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x2c5b9d92 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x6ded0a90 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xe8c862a2 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2594782b wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3c95d63b wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5e0d76f4 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6a3fff8f wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x79eb448a wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7aa078af wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8599402e wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8f196b30 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x92a7766a wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa63dd01b wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xadbb97af wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb1201e1a wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x22ff6d7b ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2e7104a5 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4ecb3fd9 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x673359c5 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6743d522 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7db6d00a ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x85ef8076 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa768f97b ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xdb4440a2 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x18fff6e3 gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x19e67686 gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x2a404070 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x543131a5 gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x69e6cf19 gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7975e536 gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7b08457e gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7cdf2072 gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa77da4b4 gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xaa67ee9d gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb247c12c gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb8c31ad6 gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc2f6eb31 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc5a0835e gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xdf110b1b gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xec0a4133 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf221b988 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x3a9dd8fa led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x77f4dac5 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xc7cb9433 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xcebbe806 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xd93416dc led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xfd3f0162 led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x0961c7b1 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x0b0e2183 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x39f5ea1c lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x53250ed2 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x54d1b239 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x94237252 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9eb249e8 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa61a4766 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc31f99e7 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd473e2bd lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf30be52c lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x082f165c mcb_bus_get +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x13e642ab mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x1867794e __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x23d461d1 mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x7ee0facd chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x84ce3c87 mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xa798fa47 mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xaf00c5ee mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb77ce7fa mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xcaad87cb mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe639e522 mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xefd74e0d mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xfb70dac0 mcb_free_dev +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06628c2f __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06b11706 __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x07e2c777 __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0b1ed8cb __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1683a5f6 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x16c3fa29 __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x16c8cc13 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x18d1988c __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2061620b __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x230dd380 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x29a4c5fd __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2b277945 __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3ee17aab __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x402d6200 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x49c216ec __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d1e9f82 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7930d50e __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7d597e2d __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8461608d __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x84e60671 __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x92d61794 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9415be3c __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad2d4ca2 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb21fadc0 __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb364194a __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbe406c76 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc72008a2 __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd6d1aa5e __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfc24ee1e __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfcc8ed24 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xffd8c38e __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2a12429c dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2c7d956d dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x50219258 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x749b76f0 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x897b1e61 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xad3a0305 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf108d89f dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf3b21d9a dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfc881628 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x22163b69 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x3909d3a8 dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x594952bd dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x62a23587 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9b2b253a dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc8eae880 dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xdc69e37a dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe004ee92 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x1380464b dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x2acb434a dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x3283eb33 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x63659ec8 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x68fa14c2 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7e016c43 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa35c1c66 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x43851616 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x83be5d3a dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x02e98da7 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x09472122 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x6a650a06 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x829af9f5 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x88b0335e dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa8813ad6 dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe6bc9f5 dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc1a79c27 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc66ce277 dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcab63c3d dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf37a3cfe dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11eab9fe dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x150c85ce dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2e730a21 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x33c03da6 dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5a8d7eec dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x619701dc dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9b4b5b29 dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2507774 dm_tm_shadow_block +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbcfdc290 dm_tm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbe0497aa dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xead1e727 dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x040220d6 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2c627da1 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x369af8bb saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x90420366 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9ae08a38 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa4b4c8f1 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb627673e saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc00cc341 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xcfd16d7c saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe92ad8d7 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x253c73ba saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x3d6d7f20 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x67224181 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x6c584d68 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x74febc98 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xf36d4184 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xfc2b753d saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x04a4ad27 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x099f7930 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x120e9639 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1f8a7160 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x235028be smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45b40c84 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4b5047c4 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4d9d9410 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6715d724 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8ff8f485 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x991f6c19 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99e963d7 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb2355aa9 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb4558450 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc195b731 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc75ce26f smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xeaa74d1e smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xb2e291ce as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x674363a6 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x0bb577fe tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x089dc929 media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0x0c156876 media_entity_init +EXPORT_SYMBOL_GPL drivers/media/media 0x266a2a45 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x27ff7021 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0x287915ae media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0x305096ae media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x350729eb media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x7f633bc3 media_entity_create_link +EXPORT_SYMBOL_GPL drivers/media/media 0x91986c9b media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0x92e427ac media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0xa1dc19ff media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0xa8b99f6d media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0xb188949f media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0xb766c828 media_entity_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0xcfcd9f08 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0xdd2b099c media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0xe333f8e4 media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0xf6c389a5 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x543d8989 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0235af37 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1368e6ce mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x172323da mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x184d3eb3 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2222e2ee mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3536c9e0 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x43af07bd mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x581c7323 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6bd8cea7 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6d2e4587 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7267eb1c mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7566af31 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x75cc25ce mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x902f519a mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x99ef8084 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xaeece653 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb9f8cd5d mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc3e2c3ef mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf285fd28 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x012a747d saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0a31565e saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0db7eca9 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x14450ca7 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x16c1f05b saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3346ab81 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3f063e40 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x67ad7370 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6815ffa3 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x97a57768 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa1c41bdb saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb7bfa097 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc22bdefd saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc31eb085 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd9d2cc8e saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe22f8d03 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe6a80905 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xecf1d6bc saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xff3ff7ad saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x0d7e8436 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x18d910ea ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x36653bae ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x40a6d5b2 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7010c07d ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd634febc ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd8181d9a ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0b2585ce xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0bf3dcf1 xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x2fecb173 xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x490bd11c xvip_get_format_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x546681a1 xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x82aa77b8 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xd6434781 xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe91189bd xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xf8ab047d xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xfa2bec63 xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x758d15e8 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xd1744a91 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1244a231 rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x38fcc1b4 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x445de52d rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4ab7e971 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5320474f ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x61728815 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x63fb3fd4 rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7de07073 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8c3c1eeb rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x982315d7 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x99cd6b92 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9a8a10c0 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbd262796 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xca9ea515 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd2b2242a rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe1d16e58 rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe2d85bb2 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf6ec08bd rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfa4ac827 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x8e04d505 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x08fec2b2 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x0565bd3d mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x79501fe9 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xf1e19822 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x6d8411b8 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x5e6dd387 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xdf3870c3 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x9d63b5e7 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x3ee4747f tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x67793147 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x7ba3078d tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xe115110d tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x6df7e5de simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x01741458 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x07a345c1 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x13076c73 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x192964bc cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x212e06ea cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x46de834c cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5313e68e cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x67a94b88 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6d62f2cb cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6f479ccd cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x774afc0b cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7843ddc1 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x906243e9 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x98c591f7 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc96e91f0 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc9c66a00 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcd25428b cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd5b43dff cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd927373b cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf300527b cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xfee0ad84 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x2aa3edcd mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0de2733e em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x12e1e236 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2551681d em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2db0075f em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2e0c2713 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x648c680e em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6bf672db em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d5ac5dd em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x75e06dc2 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7d9f676a em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9a057bec em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9e3e3011 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xab79ca4d em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbc4a9703 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc6f41849 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xda37662e em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdb413925 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe3587949 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x0fa664b9 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xd8392ec9 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xe225d897 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xfea36956 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x8403e0cf v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xa40581e3 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xa66d33d2 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xadb07545 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xd6611c63 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xde8f879d v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08982d59 v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x07f89d7b v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x12570357 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x12ec10cf v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1449b8b6 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1472408c v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x14f18049 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17278837 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x29149663 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x316073c1 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x40586571 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4a9ee68f v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x54e7bbed v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x59a83ba6 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x600cc1a2 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6886b35a v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x71ac69fd v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x81661457 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x81b09c4d v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x835a482c v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x904ee188 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x91f29bdb v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9ef7533b v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa4b571e6 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaedad5e0 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb1e2cab6 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb33c166e v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf3cd252b v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfd193407 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfffb0b1a v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x00697c24 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x20795fdf videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x544409fb videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x63361717 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6a61f71f videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6f7aebd7 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x76375f7e videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7813f6a5 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x79ed4e43 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8249c091 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x91238cd6 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x979fe243 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x99b96b92 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa016bd0c __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa244c1a5 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa4e97ea5 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa99f6d20 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc137422d videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcba929c7 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdf840ccc videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe62849c8 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xeec6e204 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf777a1f0 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfa7fa315 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0x579f2938 videobuf_queue_dma_contig_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0xac1864ac videobuf_dma_contig_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0xeed9fa29 videobuf_to_dma_contig +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x16841c5a videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa825c75b videobuf_sg_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xc5240ce4 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xd79e77c5 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xf87bc2ef videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x55ede9b1 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x9db67d1e videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xaa4c65f6 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x04f64144 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x25212dfe vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x33aeba73 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x39e94d64 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x4eb291f3 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x50a34a1e vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x50c49b47 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x69a245bd vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x76a5c21f vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x8ae20c58 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x93976fc3 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa3b9bc6c vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xba6d0531 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xca2d011a vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xcbb32a05 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xecaf8ce2 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xed42aaa3 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xefa2efed vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x9dec262f vb2_dma_contig_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xbee5620b vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x02935f74 vb2_dma_sg_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xaa4de2fb vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd30ec30f vb2_dma_sg_cleanup_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0x583f613b vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0c470e1e vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0d92a527 vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x17f9292f vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1cc4c5dd vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1eab4c30 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x33b0f0ba vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x37a347dc vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3b3be822 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4cb99a6b vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x50ad7290 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x58d81e45 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x61371432 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x67732672 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x681222dd vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x74b3f898 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x786de2fb vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7bac8731 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x87483df1 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8b8f0f5e vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8c2f67cd vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x91e61985 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x990a1275 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa40aace6 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xaadd375c vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbdb475ce vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbeb2233a vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdb8b9515 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdc902063 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf31a9113 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xfd19180d vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xfebf5206 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xfefd3292 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x53181c4b vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x023992ae __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0e2a7007 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0e8520b5 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x189a3a75 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x24ff3d7a v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ad437f6 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ebd9959 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2f828290 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3dc82b9a v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x44f52701 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x47c1260f __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4d65fa16 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x556c3b7b v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5be3aa14 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x64658b54 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6508e19a v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7bb9f419 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x80575923 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8b7b2182 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x91f57604 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x94e7f302 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa1f6b9b0 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa36830e8 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa499e47d v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xab06e74e __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb251823f v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb3917c89 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd9d69cce __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xda16691c v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdba8404b v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe039da79 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe0e83c69 __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe3f79943 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe53229fc v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe53ae0aa __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xee4d0195 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x888c5c9c pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xb48dd344 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xdf487dae pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x0a9e3e5f da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x18fb35d7 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x9a51ed65 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xaa24023d da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xafc39238 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xc91b3bc2 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xf18c52f1 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x19bc74e8 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x8fb7d30b kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb5f0b961 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xede5be00 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf1301d2f kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf3dd4ed2 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xfa15d3e8 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xfd770d6d kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x6a4dbc2a lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xdea6f6ef lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xe019a697 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x21e14932 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2ae551af lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7118dcc8 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x8f47da32 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xe2682665 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xfa40df79 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xff0ecefe lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xdee328a3 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xe3609fb5 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xfd2da049 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x11c970f1 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x8ebb75d1 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xb44c5492 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xe6f9eada mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xf4f61fb2 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xf63d3b25 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x28ea6632 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2e02f305 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5704489b pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7d5bd782 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9921137f pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa27c0150 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb447f5e4 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc7247691 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe1f2a582 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe442e2f0 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf316464b pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x68b5b8fb pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x86e4aaed pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x4432c7b5 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x47ea8e99 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x50f709b8 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xcafa425c pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xe289e9e9 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x04f797ca rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0be5c123 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x1a0a4368 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x24ff01ff rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x255a6a3e rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3ac2e939 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x456bb403 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x508890b4 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x610fb1bd rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x61457cc4 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x74b093c6 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8294b2cc rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9060b664 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x950b3e4f rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xadd2e904 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xbb58c0f8 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc7e9a0d9 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd6df49d9 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd7049abb rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe5541907 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf1bf1ff2 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf321c180 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf61d294b rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf6d425f6 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x06fc1bd5 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x0efe71ff rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x122e111e rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x1f904f00 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x4160ceb5 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x46bff0f8 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x6c754856 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x78f264bf rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x7e514e6b rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x85d246bb rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb2e4b266 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xc10a4ee2 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xc85918f1 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0bf545e6 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0f11ab4f si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x13ee0075 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1a3af584 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1dcf1823 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x27f8582e si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3b5935c9 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4463611a si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x527a1c28 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x56e850d5 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x59a933a9 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5bda6982 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x60f40346 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7503f507 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x79f6b33a si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x86c299ed si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9068bd03 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x999e1b1d si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9dacce85 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xabdfd2be si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb5e0ee1b si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbb7a4861 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbc9dd31b si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbd71bdfb si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbe6a28b0 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd6c67d2a si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe3fca0d9 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe68fbc9f si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe7236d76 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xee8c4352 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf0e1fc20 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf2f01ca2 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf55ced0e si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfdecab67 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0x2d16a0d2 ssbi_read +EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0x578f6150 ssbi_write +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x56786138 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xc8d94f62 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xcc742104 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xd8fa20bd am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x01b8e081 tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x6aacb89c tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x7167f38d tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xe48f20b8 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x2223b19a ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x26e46ec4 bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xa586ef2a bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xb0f6a65d bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xf470e868 bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x1e1a6b45 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x2c4c2277 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x32a76574 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x8e985f31 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x227e45e3 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x49cb66fe enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x715ea43c enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x790b057d enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa576cca7 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xabe0201e enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xac2058af enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xcc3a30b3 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x0585f67b lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x0688dba5 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x56bb835e lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5730311c lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5b6e82f6 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa5f8541f lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb0d85d93 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xbb31afdd lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x81df6421 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xcd6e377b st_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x4aca6003 dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xa7a6f865 dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xd2cb45c7 dw_mci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x4ac8068a cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x88ff06f4 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xb7d6231c cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x2b6cf715 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xa6c77343 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xd8953893 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x3985d76f cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x0031b780 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x0fdcd765 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x6d29ab8a cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0x77b647c0 brcmnand_pm_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0x85ad4589 brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0xd5f09e88 brcmnand_remove +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x9d59acc6 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x62d745a2 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x70f79132 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x239d9994 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x01ebd63e ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x162bc0bd ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1d9a6244 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5187046e ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x58ab2a12 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6e3bab26 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa0b873b3 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xaa472ec8 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xaf90c1f9 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb8695d10 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xbdee322d ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc164a882 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe0f06a03 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf758af8c ubi_leb_read +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xc0063d27 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xc1d9fc72 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x4edbfe08 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x8093753c free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x9609076e unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xbda3a91c alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xdfe4b36a c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe074c978 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x08a3dfef can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x44461935 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5aeba5bb alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7b05de38 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7d026371 devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x864b33ab can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9c33a7d0 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa2a235e5 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xaa045761 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xac65d019 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xafdbad60 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xca6d9c2d safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe93e0172 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xf0311935 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xf74e074c close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xf98c7ce1 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xfb1f9a7c alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xffb24cef can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xa1d5ebbd free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xb79c3c81 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xed4313a4 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xf9ae296e register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x14fe45d7 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x3cf992db alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xcb8128ec free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xe3e7b74c unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x3a2e475e arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x9160a7bb arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02e4c894 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a9015fc mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e0ce0c9 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f082b95 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f3fa08f mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ff784c3 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10afeb5f mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1672f8e3 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18d9e030 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c36df29 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d4bdd44 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d696756 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f7b9065 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22355dcf mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24de5c4c mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x258cb205 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25f04a2e mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28355c3f mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2bf9fca5 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ff6ad33 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32231207 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c844568 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40800622 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x409bbdfa mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46e2db4c mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46e79c59 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ba74cd2 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x513c77d1 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51ccccb3 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x538c49a3 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x566c4b73 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58b4c171 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5cca77f2 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5de0ef50 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e3b2b07 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ea40210 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x604e60f3 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60a4d0db mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61994178 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63714e05 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6371af75 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64327347 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65433dc1 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6739c65c mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67b29fca mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67e361ea mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d76d269 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e24f51a mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f6a6adc mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72ecf5f5 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74811fe9 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74f6519c mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x784bce23 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a041cbb mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ac08307 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8085c8bf mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8094bcea mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8289f028 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a272711 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8cf40257 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d060716 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f3b2319 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90e73d1b mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x919e1fc4 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x976fad8a __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97f9db76 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99d50ce0 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99eb5487 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a1910dc mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b36bbef mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa12b6efa mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa136ed33 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1a4f4d2 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa22841b4 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa357ea02 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa49efc10 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa579a34b mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7c53574 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa817f2ce mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae6cb029 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb06fdd8a mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb248ed1e mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb28d7160 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4470eab mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5fe8b46 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6832102 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8d837a6 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb93df8a8 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb99acf5d mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc0dec67 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbeb956d4 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc656814c mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6b2afb2 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc70c613b mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7a049dd mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8001a38 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca002ec8 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc1a0b2f mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc7dcfaa mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd855a96 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcdc10c3f mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcefead3e mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf9cd0ac mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd069e09c mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd27ecf6d mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd879179b mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda02acbe mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdaceb498 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdbe621ba mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf3af7eb mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe09b617c mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe20830dd mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe689843b mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6ec6aec mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6f8ccd0 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe719ffc6 mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe824ef67 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9479742 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed61b679 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf073ba1c mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7b519d0 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf889fd1a mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbc0903e mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcecb025 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0072b792 mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00fe5362 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0abbf765 mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c31d3f7 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d0cf0ae mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e4fa545 mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12f83c4a mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x138672f3 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b1b6217 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b9162c7 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2bd4e143 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c7870b9 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31fc9989 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36acfa0d mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37d19806 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3841e756 mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62674b7a mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x698eca90 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7582576b mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77e9220a mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79f60285 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8324b092 mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x886405c3 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88b0bf89 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x894d99f8 mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b26912f mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b951d7e mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e2c35b4 mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8fc4a0a0 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9635554d mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d3c4454 mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa05cad0e mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2250d54 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4e0881a mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5d67c92 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2ada22c mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5e21074 mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd35011a4 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd37b95a8 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3c80bef mlx5_set_port_proto +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3f3784c mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3f50c6e mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd92fb32c mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe95a4124 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee773ea6 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x2d0467f7 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x368d3d71 regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xd4ab3625 regmap_encx24j600_spi_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x835d77f6 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xcc424993 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xe3d8278e stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xfc86f5a4 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xa8c4b9e4 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xd61f696f stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xdb0769eb stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xe324bec2 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/geneve 0x63eb8f37 geneve_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/geneve 0xb25ce39e geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x3ad20f05 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x631818dc macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xaa03670c macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xe639c6a0 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvtap 0xd6440aa3 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0d515191 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1064c879 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x36db9fb1 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4318256a bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x641ae069 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6accc2a4 bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x70c99f15 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8efcab41 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb852171f bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe256d7f6 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x37d7e42c mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x0365241a usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x67d716e0 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x8988f314 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xf6b5ad41 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0bb51575 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x15b2c886 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3fcd2f6c cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6bab0f77 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7ce2faba cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb06c1b4a cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc2d25230 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd5193732 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf33032c1 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x4501c2d2 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x4cdee205 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x63ef03eb rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x8bf75953 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xac8ca91a rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xb746fbef generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x026b458f usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0974cc2e usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x17b858aa usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x190e1dc3 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1c16a1ce usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2116c36b usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x219ef854 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x24b47630 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2c1f633c usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2e128a99 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x45a6e5b6 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x50a9080a usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x56034202 usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x698c015f usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6badd138 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x70c3f869 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7993150d usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x831a4bad usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9158ea5f usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x930ca25d usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x94d1d5fe usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9b6364a3 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa474352c usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xac6e7d3d usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xae9a14e7 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb9c51ce4 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc02aa850 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc58b9c69 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc8db1d6d usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdc917067 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xde19b8a9 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xedaa87fe usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x7cbaf909 vxlan_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x9c5ffc94 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0c22a9c3 i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0ef4f906 i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x22119f15 i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x23c26f8d i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4f1cc357 i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5d5899d5 i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x60ca24b5 i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x6d788371 i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x716d01ac i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x88ab4fab i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x9762e18b i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x98229dd1 i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xae06f3ca i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xcb1ea242 i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe92e8d42 i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xed949ebc i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xa1b9de3c cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xc95d8ce2 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xd878ba65 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xffdd62c0 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0xa2bc87ac libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x2a96de42 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x39903201 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x51cbe90c _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x86b591c4 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xa7baf9ba il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0c0b2d53 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x16474139 iwl_notification_wait_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x18cea784 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x194202ee iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1eebf841 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x24937408 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x45c962c4 iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x488a9ac0 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x49b542fb iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5256e3a8 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x57ebcf0c iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5a10d898 iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x66855284 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x6e415368 iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x725bdd1c __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x761554c9 iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x88dae553 iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x892f879c iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9bf16097 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9c77eed0 iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xae95beae iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb0d6ab80 __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc0ac6d38 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc52a3fe8 iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc726a88d iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd485a673 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd540668f iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe635ebd7 iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe72b9045 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe84d8c55 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf69ba80e iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x04edd7b4 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x24936bde lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5a85ad58 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5bfaf476 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x6fb82c66 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x762b3e08 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x7c77a5de lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x82a6f457 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x87f77e86 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x8f4b40cd lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x90b3cdad lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa94255b1 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xad176eeb lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb89dfa2b lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xbeac52bd __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe337a15f lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x0503537a lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x449e69b3 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xb4965407 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xb96c7dff lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc6d3a572 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xe74a7174 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xf118adbf lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xfd306d56 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x238d2d2e mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x23a320a2 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2dbfbb48 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x40b37bae mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x442424ec mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x4488cf65 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x5ee92e19 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x65214868 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x6b28f3c9 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x6b4f9217 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x6fbacf16 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x7abbf867 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x81c89a90 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x86b94f45 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb6458caa mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb728b7e7 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc84270c6 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xcc02dfd5 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf23626d6 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x07327d9e p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x3cb4a406 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x5411f8c5 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x551b3ff1 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x7c969b4e p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x87ff1caf p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xc90f5315 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xd91aa1f9 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xfbde3c72 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3c518978 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x59779537 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fcfc92a dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe48ae2da rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x06ada1bf rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x09b77be0 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0c48f33e rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x156519b8 rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1678569f rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1864a757 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1f043523 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x235cdf8b rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x271d9a12 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x28db4a7c rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x33190552 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3953edd7 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3a2f3401 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3c00dc89 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x63636d56 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x78148f6f rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7b11d809 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8f2e4a5a rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf0ae77d rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb2d2888e rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb50bcaab rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbfa507b0 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc0213d74 rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcc03afc9 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdb2ba43f rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf4448a46 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfe569f06 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b20578b rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0ceb4881 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1cca4559 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2899a023 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2c2c1528 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d882d91 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3440cee8 rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4365f839 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x48d427d5 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x525f29aa rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x593b2585 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6f6fe975 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x82508d9b rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8505f514 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x90c1ee02 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xce86044c rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd3a99b49 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe9f3ab17 rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xee1745c4 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf5388985 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0b1daa25 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x116a9215 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x58ada524 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7b2a9a7a rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x01553fde rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x031ac62e rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x03738ab5 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0abdb554 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x17a7658a rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x30a00812 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x30e9ac76 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3d37e00f rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x43856ef2 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x47f1afc6 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x49c6d622 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4c30eb27 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4e22ba54 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5e86d3ce rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6611821b rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6c6c9d90 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x700a4f47 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x817d7cc3 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x870afc9f rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x87e51ee5 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8dea37f1 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8fde94c3 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9071eab4 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x993070a0 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9bd146e4 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa62a887e rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb31410c9 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb5fc7fc7 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb7d2226c rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xccdf262f rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd121819b rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd2e5b881 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xdec3b18d rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe01045bb rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe4068f04 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe7f17e9e rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf7ff9fb2 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xffda8131 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0b42059d rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0c999d9c rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0cd2a208 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x12d0d5c8 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x204b8bea rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x41ed40cd rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x4b176d73 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x4c0c6ba9 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x65744a03 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x6bb53b1a rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xacdd81ee rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xd9b99e38 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xf5178bec rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x04690a92 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x066f746f rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x15a56352 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1e47b078 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x20d0625b rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x25ef5bed rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3a5cadee rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3b453028 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x51f00e67 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5b76b71d rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5e275357 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x608a116a rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x673a2ead rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6b867890 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x71ed21fa rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x78e9fe48 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x79daf8f5 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7affc20c rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x82d2137c rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x840c5d56 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8606cc38 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8ecd34b2 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x97fad915 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x984499bd rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9e64f893 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9f7b7d59 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xaa7f31e1 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xac54df9c rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xafa02a2f rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb42631b9 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb4f979d9 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xca289ba9 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdf2b70fb rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe0283d3b rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe05505ea rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe3e6c3ac rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe74cef35 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe7c0be4e rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe911e7d7 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xecf565bb rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xed032107 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf0c46228 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf7acf939 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf9858a58 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfc825a9c rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfd19187e rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x2b8c577f rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x4c1a7c49 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x851785fb rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x99115c62 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xcb3e24b7 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x43e647f4 rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x7260ecb8 rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xca506934 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xf17a582b rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x00e08d16 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x0de7ccba rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x144e2069 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1e532867 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x33b61e16 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x74608b23 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x7bdbd994 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x7c70567a rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x7ca5e09a rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x9e73df2d rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xa34e94fe rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xa5c2de52 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd26c9342 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd628fa46 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xdf1e61ae rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf2528be0 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x2f31d6b5 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x7f70b0b0 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xc09257cd wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x02c96266 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0670efa2 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x14717e5f wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1d144ba0 wl1271_ps_elp_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2d7c4bef wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2f7ae406 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x308ec46f wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x35371f82 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x35d0684b wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x36ca00d0 wl1271_ps_elp_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x371a1dbc wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x405d742c wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4443b825 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x476ca3e7 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x47caa72e wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4cb04c14 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x56949a0d wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x583c22ae wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6bca3b23 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6e777fa9 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x73241ff3 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x888c3b82 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8b4a9874 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x905fabcf wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x909b5393 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x90d59dbf wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91da5146 wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x977fc847 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x991fd571 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9caf8372 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa066fe0a wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xafa64b05 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbbfe0b7d wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xca7fed8b wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xccbe9615 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd23262af wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd5291329 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdb0f0caf wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe8db45c1 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf10110bb wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf4b99c69 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf86850aa wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf9e85cd6 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfa9b8025 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfc0a27f7 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x1bbb8d05 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x348915cf nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x6ceaa499 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xb9f17d58 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x1294677b st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x5730625f st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x67cb0e5d st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x6ea2ce32 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x9491857c st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb51d5368 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc181b248 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc779df8d st_nci_remove +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x4f6e7f2f ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x8f2e710a ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xdd242b78 ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x02e09fa8 of_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x07a9466d nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x13e66ec0 nvmem_register +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x2f79d236 nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x36ec8a8a nvmem_device_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x68758fda nvmem_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x7134a988 of_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xa7d8dc93 devm_nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc25815f4 devm_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc96fb674 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xcb83ad7c devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe18960ba nvmem_device_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe9a7fe16 nvmem_cell_read +EXPORT_SYMBOL_GPL drivers/phy/phy-omap-control 0x3fc5c69f omap_control_pcie_pcs +EXPORT_SYMBOL_GPL drivers/phy/phy-omap-control 0x42669c73 omap_control_phy_power +EXPORT_SYMBOL_GPL drivers/phy/phy-omap-control 0x8610bbdf omap_control_usb_set_mode +EXPORT_SYMBOL_GPL drivers/phy/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x14621b73 ufs_qcom_phy_init_clks +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x18f32660 ufs_qcom_phy_power_off +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x219035ec ufs_qcom_phy_enable_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x24f6ece2 ufs_qcom_phy_is_pcs_ready +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x2811c739 ufs_qcom_phy_set_tx_lane_enable +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x292a20c4 ufs_qcom_phy_disable_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x5e166858 ufs_qcom_phy_save_controller_version +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x690fe244 ufs_qcom_phy_start_serdes +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x7b0952aa ufs_qcom_phy_generic_probe +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x85f2d9fa ufs_qcom_phy_calibrate +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x8f17d9c3 ufs_qcom_phy_exit +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x9093b5f8 ufs_qcom_phy_disable_dev_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x9d2472ae ufs_qcom_phy_power_on +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xb39591ab ufs_qcom_phy_init_vregulators +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xc294374a ufs_qcom_phy_calibrate_phy +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xd04dea28 get_ufs_qcom_phy +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xd1813b94 ufs_qcom_phy_remove +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xd3c4e6ed ufs_qcom_phy_enable_dev_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xd8de035f ufs_qcom_phy_disable_iface_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xe85e41a4 ufs_qcom_phy_enable_iface_clk +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x178a341d pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x599dd35a pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x76a1d10d pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x027b5b1d mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x49971f5a mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xa960e9ed mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xf36b9f63 mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xfb256676 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x3e096f37 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x5a9caf84 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x9313eef4 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xe5a5e98a wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xea573335 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf03ae79b wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x0554ed49 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0617f0d7 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x06eea751 cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0a6404f8 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0abd3b4e cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x111cc98c cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x116c9263 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1e5e5343 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1ebb7321 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2bc9eb5d cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2fa7d943 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3436d99f cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x347e5532 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3d7596e8 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3debc876 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x435e9d0c cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4e5eced3 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x55debbe6 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x56a948de cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x57595b5a cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x65ea40df cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7e70b359 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7ef9bc45 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x80deb5f1 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x854f7dba cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x86c7bd5c cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x88167166 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x886db563 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x91fcce9e cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x943f19b4 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x97eb64d2 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9e614d96 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa4b35242 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xac00c081 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb086026d cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb9a9d5f2 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbab0dd87 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbbb1405f cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcf4ef9e4 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd306d660 cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdfd32f73 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe36f3c66 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe7f85c31 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe80b91e9 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe869f7e6 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf367fe21 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf7acf34d cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2b5cad97 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3c2eee8e fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x47494b1d __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x85a6851e fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8874036e fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x96c9b285 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x97dfc35e fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9ee104e0 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa6824ca2 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb635d78f fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc1b3b1cc fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xca4189ca fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd71d534a fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdf9d498e fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xec01754e fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfde2be2a fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x15126736 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x1c65ebf4 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7a9cc10a iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x9d5c4988 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd46e858f iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xfe9e54de iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x04385d6e iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0483ee16 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x04a58d51 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x059d8abb iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0878693f iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x11394468 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x151e6065 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3be57a8b iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x43b75d50 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x46330dff iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4b4a4d91 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x58a706c8 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5fb2d6e0 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x64bc21b6 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6a16ee3e iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7ce8fc9d iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x84045b27 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x85dd7c2a iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8984589d iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8ce295ef __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d581546 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9160650c iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x959e2af8 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x96a662d7 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9edffb0c iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa3d0ed66 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa3e5f640 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa48302c9 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa6284373 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa64718e6 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa918266d iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xab301a45 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xadd7336b __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb18d7eeb iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcbd29f16 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd201a469 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd7cee27f iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xda6efe53 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdec6eb75 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe15b0e05 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf5630ef4 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xff2e2902 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1ee7dff7 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2cbcf373 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x31802076 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x41578e0b iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4837f234 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4d673d76 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x67c0d23a iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x75189837 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x837420bc iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x98a9c5ed iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa348aa81 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbc26c457 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbe5e54c6 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc1061ec2 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc43dee10 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xeb07424a iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xebd74a3b iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x14a83d84 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1da7e2bf sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x47c49ec1 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6ab61fc1 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x74066f07 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7642567e sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x766dbc44 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x863b8e8c sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x89f49bbc sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x951f8f76 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9fb010d5 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa927c373 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xabbb9b07 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb389226f sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbb0b0bad sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbb92543d sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbe154669 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc7872e78 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xce5d9dc5 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe9427ca2 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xea8c31c4 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfa89d4f2 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfdda96a7 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfe192c53 sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x06d65953 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x097e13a4 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0b78239d iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x12176667 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x16d9e38d iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x17ee9ebb iscsi_is_flashnode_conn_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x22d565aa iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x27785bcb iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3463cff7 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3ba293ec iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3e3d59f5 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4b2a8fe7 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x50a61852 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x55783066 iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5de5e985 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5e5c5a0a iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5e5fafe3 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x61647348 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x656451f5 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x732fbb77 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x80926ab6 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8396e89e iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x955662af iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa2cd94e4 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa7c59f43 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa9e15033 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa9ea4204 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab6e95d4 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb72d55fe iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbf79d3de iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc0814653 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc8aa7620 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd18b9c70 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd800c15a iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd81e0818 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdc6892ff iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe5460c25 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe7299ef0 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfd770995 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfecdf203 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x2c7edf85 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x96f46b63 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x9f53f11a sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xe80dfb19 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x117dfb5c spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x0ab3df0a srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x3e38f429 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x59542ac8 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x6cd1c0cb srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x717f7c88 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x9e803c7f srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x3bceb880 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x421425a4 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x64bcdf3d ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x9a867397 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xb37cd79d ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xed5c1466 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xf963d256 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x0d68f4c6 ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x1b235611 ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x5532b02a ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x8598ae7e ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x9d39a2ab ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xb0437b9c ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xef860b05 ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x60d0cc92 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x7056ed49 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x70b25117 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xc3858805 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe9eb80d4 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x0226242f dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x4d3034aa dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x76bdeea3 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xae0a87fb dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0058ed4b spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x01f18775 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x16af4f73 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1a3f857e spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1da67ada spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2632c04a spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x37a695cc spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4c0c3efa __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5ef2e03e spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7a4db1f6 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x82b24bd4 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x88a09273 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x913fa4fb spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb118658f spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb6b7d836 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcc3ea25d spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xed91a9fe spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf1dc73b3 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xd33f1da5 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x01000aa5 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x04b022db comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0e7eed3f comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4538e8ab comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5482e3ed comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x57a38444 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x593e845e comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5be85dd7 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5c3302b4 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x67774861 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x689d3629 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x70dfa265 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x718678a3 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x759d5c2b comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7fd5e449 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x92de5bee comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x96a494e6 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x97c87eb9 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb3db056f comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb847b1c5 comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb871dcd0 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb878c680 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xba328f4c comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbbc48aa1 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbd150796 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc0bd3256 comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc18ba246 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc3434446 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd888cee5 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdf19abbb comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe58f3067 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe8bb79f4 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfcfcda3d comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfd5c2e5a comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfe3a4fe4 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x415e93e3 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x55d5abc2 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x5f978503 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x8ecf8dec comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x99e684a8 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xa0cc62ee comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xc9e1ff08 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xd92b6248 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x01b3ea18 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x0d582576 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x121590d6 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x6a9de528 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x719da48d comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x9a78a20f comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0xaa3190a1 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xcb6335a4 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xefd2f2a7 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x0421f401 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x02f6496f comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x0cd040a2 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x503ef92d comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x55b5f998 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x5f06d89a comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x7cce8b1e comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x7cf6fa98 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb492413b comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xc8fd8b9a comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xcfe26acb comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xe73934bc comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xeb2c4669 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xf27731cf comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x399a9c3b subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xe367a7ab subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xf8894b4b subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x742b71c8 das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0259b5b7 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0e6891b6 mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0ea14b11 mite_bytes_written_to_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2da82d83 mite_sync_input_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x31177899 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x39b9750b mite_bytes_written_to_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4713e2db mite_sync_output_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x48d1802a mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x54686892 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x66ca39dc mite_dma_tcr +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x67bf5fb0 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6bb7cecc mite_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x8c77cce5 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x95493c90 mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x95bec172 mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa7da4abb mite_setup2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xcfdca849 mite_bytes_read_from_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xde354e28 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xee2311f2 mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf780ba31 mite_get_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf8c49653 mite_bytes_read_from_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x7fbb19d9 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xe7ec17cd labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x1344c881 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x312977d2 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x366c48f6 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x850de1b7 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x923bb6e4 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x9eb0e132 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xa48ac618 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xa9fcbea8 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x1bf20530 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x1c73e49e ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x2c20c221 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x310aa323 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x8d1356c1 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xe47ef667 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x33da01ae comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x59716da5 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x63b3b70d comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x72ff269f comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xaaf19d1d comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xd631fdda comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xf87cd200 comedi_close +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xc3137ada adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x17e0bd0b most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x254dbef8 most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x25abac99 most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x50b1d348 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x5598a1d2 most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x99632d95 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xa4cdbe46 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xb7310887 most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xcc59a03a most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xd005190b most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xd38474d1 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xf6a0ab9d most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x5b6b590c spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x64f15142 spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x75a0594b synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x86442336 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xa786dc4a spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xad8d59a7 spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb2978dbc speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbe216c86 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd3baf5d1 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd40a37f1 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe0c8c395 spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xf7cb71d2 synth_add +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x217ddcc4 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x7ef7acab uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xcfa431e2 __uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x72a595e3 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x8b0ced20 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x6f9ad0ff ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xb9b14bd1 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x002b0945 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xcec89fce imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xdb8c1d8d imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x5bf5ffcf ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6e9222d4 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x9aad7483 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xa4d1b8db ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xdb728b5f ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xfe581cc5 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x117d6cc0 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3b993b21 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x40cde819 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4b58b7ec gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x68fd61d4 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6f6c30eb gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x852119be gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xaf9ee439 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb3880e67 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbdd84b9e gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcc574989 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd36a5f24 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe38109ae gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe87b3012 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf7cba0d2 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x159e1e87 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xbb7ba380 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x1681c7c9 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x851a8897 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xafd09e14 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x17253077 fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3862ba3f fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5255b366 fsg_common_create_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x52c79bce fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x69c2fae9 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x769cfe5d fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7f15d857 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7f5108fa fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x82019079 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x94cf243a fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa20689d0 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xdd996f40 fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xde6144e9 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe342406a fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe480e968 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf08894f7 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf1f8ed83 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0c03b8f7 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0e31dfc4 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1581c6ca rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x19ed0601 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x207c64ca rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x414ba742 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x42cddeab rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4998039d rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x57c59050 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8c48bc83 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8d9de576 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8e2a5585 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xba8fdeb3 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc02cbd94 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc3bfa664 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0085c49e usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0ab4ed6b usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x16a41c00 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1c491058 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2362bc18 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2bd7d6d4 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2cb5d701 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3587e109 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3dd5d8cd usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x46707292 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x51956c7f usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x55d6da4d usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x58857860 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7a53ecf3 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7b9264af usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8cde4270 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa0baf6b3 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa14978db config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa82e93f8 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb4046f4b usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb9ed7b16 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbb8e2612 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbccd7844 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc57ffb54 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xce85858f unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd6b5e22b usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdc91d477 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xef03bdb9 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf2cd28ba usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfab4b992 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x43a73c4f ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x5475695f ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x17eaec35 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x1b0145e5 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x378d65d4 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x3a61ea1f usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x577c0ab0 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x774b12ce ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x846be380 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe25611ff usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf532c099 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/musb/omap2430 0x6fb55e1f omap_musb_mailbox +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-am335x-control 0x75eed29f am335x_get_phy_control +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xdb02f8f3 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x43949577 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1b51a989 usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1bc47920 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1f15446e usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x36cc7b73 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x458d32d6 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4e450cd4 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6215170d usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x68dc596a usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7020ff73 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7118a0c1 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x733002f6 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x82fbdf10 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x86aabff2 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x93c9d293 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xaef49397 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb33e8164 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd36d4340 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdf896778 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe2c82781 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe49d1524 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf5a98950 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0b4aa6f7 usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1fa9b183 usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x20442104 usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x23e84458 usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2c794cad usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3adf7052 usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3ea5e532 usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4243c242 usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4361dd01 usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4930fd84 usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x59f525aa usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x725eb27b usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x88d2101e usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8a98242a usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8fc16888 usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xabe90ecc usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb2e67601 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb5ff15f3 usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbabc43d2 usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbef12590 usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xdf8630e5 usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf0661472 usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf51fd8a2 usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf8cbb2c0 fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x077e9943 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3d6b3f7f dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x45f2bbf5 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x51a8d4a8 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7bc3a268 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9aa21059 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa62e9484 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xac2802ef usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xac814c9a usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc65c7681 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xdfbe508b usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe57db387 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x21f93db3 wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x2c3e6776 __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x2d7bd1ee rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x728e9b41 wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x7d8342bc wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x8003c489 wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xb1a8cb87 rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc543b60e wa_process_errored_transfers_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf4654c3f wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x1938bfd0 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x36c89708 __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x49141971 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x5fa55689 wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x6371666b wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x6e78d40b wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x77bc8024 wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9eedb3c3 wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa913651f wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xad798ed2 wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb5348ca5 wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xba10fb7f wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd60df768 wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd8269a9a wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x1234e4ff i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x40cc7911 i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x417df92c i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x4a6f3142 umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x87b4df63 __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xa3ba7064 umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xb35ef8d8 umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xb84b267f umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xde18043e umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xf2ec867e umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xf8a369e8 umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x014e7b88 __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x08f8b998 uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b12c8bb uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b8aad57 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0d4761e3 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0f5a2f87 uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0fef5f8c uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x10051458 uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x15943863 uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x19673573 uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1cc6f1a6 uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1d716d7b uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x203094bc uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2b0b7fdb uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x38af4760 uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x563a465c uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x57cc99a9 uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x58499f42 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5c4c8332 uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6979a67b uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x74ebcaeb uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x75eedf0a uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dcfcd23 uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7f60569d uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x86c66706 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8aeac208 uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa1d89044 uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb7908d7b uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc0f52a5c uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc29f1da6 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc6f2da72 uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc81096a4 uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xcab07a4e uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xcb4777e3 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xcbc8a4f3 uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd9fa9acf uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe0be67f6 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xeceec331 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf326dc51 uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/whci 0x262c6050 whci_wait_for +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x527cad12 vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x612fac5c vfio_platform_remove_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x7af7d0e9 vfio_platform_probe_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xd20a3bdb __vfio_platform_register_reset +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x172676e7 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x36ab6bb6 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4c956b43 vfio_del_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9640a863 vfio_external_group_match_file +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd5626683 vfio_add_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd6a04b4c vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe53f4eef vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x3361fec3 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xfccad7c7 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0007793d vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0e31ee3c vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1614658b vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x17583894 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1a01c95f vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x20bc8361 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x293e3966 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x32bcc5e8 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3d427a83 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x54af12ca vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5da66b51 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x64ec3318 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x68363287 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x705893e4 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x72264608 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x74e0ca64 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8a7f66f5 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x926afc2e vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9301f0a8 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa4f72e71 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xade89bd9 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb46ef2b7 vhost_init_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbfe24982 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc0970b45 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc181c437 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd2087814 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe4761c5f vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf50bb02b vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf6c12ff5 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfe5a7ef6 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x476ad842 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x4f172a51 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6ee1c183 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x889208a7 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xdaee62ab ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xeeffd97e ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xf1ecfdbc ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x02887f85 auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x2fc30d7b auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x54efdffa auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x8c769f25 auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xbcce5fe0 auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xd41c3fa8 auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xd4d6a854 auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xeab8bedb auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xf6d0528b auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xfe20c727 auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xe2e05b56 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x6af223ec fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xfc518467 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0x0b30b5b0 sh_mobile_meram_cache_alloc +EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0x3934f3cc sh_mobile_meram_cache_free +EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0x40d8323e sh_mobile_meram_cache_update +EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0x782dc486 sh_mobile_meram_free +EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0xaf2fee1f sh_mobile_meram_alloc +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x842378f4 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xcb55486b sis_free_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x2753e644 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x3241c003 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x8303fcac w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x9283aeb6 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x99a41525 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x9f29ba18 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xce1aa8e2 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0xe57eeb8c w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xf7ed60a1 w1_reset_resume_command +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x2196d91e dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x25e88e02 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xa591c83b dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x23bbe4f5 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x331f5bca nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4e7300f1 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8023513e nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xbf4170b8 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc2da2f92 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd953462c lockd_down +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x004b3002 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f85b721 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12386a21 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12a6e4c5 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16376f41 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c30a3a9 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d3105e3 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e7867fe nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1edb70f0 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24c07bc4 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x272ef622 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x279df7f2 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x283083ee nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29515817 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a129c8d nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d2603f7 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x304a6e5e nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32484e70 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35a4a463 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x366a9ac6 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3847acfb nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x423f4652 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4291ed1f nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4456364c nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47379cfb nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4895dcaf nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48b8d1ba nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a7b77c0 nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a91d404 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ac7c938 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4dedcb8c nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5102978d nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5286b52b nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52e62708 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53ce8612 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x545a954e nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x558140d8 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5613dc6e nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x570f7ffd nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d083057 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5fed5ade nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6208758f nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6286d5ad nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x645470bb nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68376727 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a15b597 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ccfab0d nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ed26cc3 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x728f5517 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72d92042 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74437f35 nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x751f1869 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75f3ecbf nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x766536fe nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7883a8d9 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78a1b23e nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x79bde2f7 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d5946ff nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ea36dc6 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83126356 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84ac95ab nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x874853c2 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88347501 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8bc8371c nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8cfad6e9 nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e53d1f0 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ed7721b nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9030be90 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93694eaa nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x981a3e5f nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a4ec22f nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a50005f nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9dffface nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa36be473 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa66d59a2 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa71bf968 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa758d678 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7cbc812 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa993f24c nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa16f551 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa14361 nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab0b56b8 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab90cc6c nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xabafe911 nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac7963d6 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb01a4f94 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb2d5359a nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb35f6e10 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7c4533e unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc8083a9 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd5ef640 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe162596 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0330434 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc092ec40 nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc430fd6a nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc68cb70a put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6a9ab0b nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca16ee37 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca1950cb nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcdfa3e09 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2520d0e nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5139a9e nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7d2c45c nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd890c06e nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda916d6f nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbb6a5a0 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf678b41 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf9be9c0 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe049b85f nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe146610c nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3d61da8 nfs_file_fsync_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3dbeabc nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7dbc1f9 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe81d23a6 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeab31e22 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeabd664e nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xecaddc72 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeef480c8 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf186ab27 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1fc72a1 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf49f5dc2 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf4cec7d3 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5a93a00 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfdf7f3c0 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xffd400db nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x7a27ff96 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0299bdac nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x042cf4e6 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x13faabc0 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1d13431b nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x215d0f8f nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x238250d5 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x269b9377 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x29c2a35b pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c2720e5 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3458644d pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x35e42d5c nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x367f06f5 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x39c5d43c pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3e0f32a9 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x405269de pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4128ea41 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x45d741c4 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4d88dcb2 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4e8d6e62 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4efea45b pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x50ccd86f nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x51bc5912 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6135232e pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x61afe5df nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x65222085 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6aed884d pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6bbfbc99 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e18b355 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x729e8cc6 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x730625a1 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x79fadb7e pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b5435b9 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x804179d9 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8085905c nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8708f74d nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x90d38100 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x999c7fcf pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9c54fe82 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9f6dfe06 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa1ec3c26 nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab69f062 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb3721336 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4859dba nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5c036e1 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb684df92 nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb95e7e64 pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbdbfe55d nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbed68ae1 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc1ee0f92 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4b61790 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7ec8d3b pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcbdae495 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda87f974 _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc9f34d4 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe01b8f73 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5e8854a pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe7af00a6 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe98eae72 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfb9d7e57 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfc761e4d nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfdcd16c7 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x59092a0a locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x880bcec9 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xfd7fb54e locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x6b20bc1f nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x9b1f66b2 nfsacl_decode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0ee1e090 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x164f0b9e o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x18b17d47 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1cb231d0 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x425c1c07 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa31cef37 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa9f5379a o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb5427c91 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xeaf08a8a o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x315dce8b dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x45245667 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7b025c11 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x9e3d363a dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xbc556351 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xeb5bfb87 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x52e8eaf3 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xad61fc93 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xef4682fd ocfs2_plock +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x327d22b4 _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb +EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random +EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait +EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop +EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end +EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0xaa39ca63 _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin +EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0xed269c07 torture_shuffle_task_register +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x623f1551 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x707aa277 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x021957e1 raid6_datap_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x0f8a2742 raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xd4cb6873 raid6_call +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x2d107b5e base_inv_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x41ecf87a base_inv_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x72eb4ea9 base_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x767b8ba8 base_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x8d490167 base_inv_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x9af6b231 base_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xdba4feef base_inv_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xde0e6eb2 base_old_true_key +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x548bf73c lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x9c831476 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x418dad1f garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x7b62aaee garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xb64e9100 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xc4bd9097 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xc5724ac3 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xdadc7a7c garp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x133ce58c mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x295ff796 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x35e9b75d mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x8ba17058 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0xa5ca56e2 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xa6f3e973 mrp_request_join +EXPORT_SYMBOL_GPL net/802/stp 0x4e35a361 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xa6872b92 stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x16c1a9c7 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0x930ece34 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier +EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier +EXPORT_SYMBOL_GPL net/ax25/ax25 0x46d032fb ax25_register_pid +EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast +EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x219aa73f l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x3751f607 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x4ba263a7 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x542a5714 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x69fa0b17 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xeadb2585 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xeb2c0f56 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xfe5ef828 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0e8b5532 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x52ae6f4d br_deliver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x79e0e984 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8a2010ed br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa5efc48b br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa7641ef3 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd9944e7f br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf2516a59 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x2d518dac nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x5d8e1ffb nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/dccp/dccp 0x09953bef dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x09a123b7 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0da3fed1 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x14b80968 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x15cee9f6 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x164e8bf2 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1a9060eb dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1f84c833 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1f9a5492 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x280be5eb dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2bf773ac dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x37feba7d dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x42745a9d dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x566b4e23 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5b759783 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6377717c dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x68cccd01 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6bdb31d1 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x74fe2d5e dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x78369420 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7c41e236 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7d049bed dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7e8f2d3f dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x929bdda1 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa704aca3 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb0596156 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb98ceaa3 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbd9a3102 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc1f023bc dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcbd1fbaa dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd827946a dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdacda849 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xddc151e2 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf1ba6f38 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x21695288 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6b14dab8 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x83d47d16 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x8f647d72 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xdf1c2b37 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf568b4b6 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x77c856ed ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x8212ce37 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x93533487 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xca6633c5 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ipv4/gre 0x271e9bd1 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xcf54cbfb gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x431a5611 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x590d2c5c inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x79e7b4dd inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9bdabfe0 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa8ee46f2 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xcd6074d8 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x83873088 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x150da021 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3eb667a9 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4ab90ec0 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x51629979 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6541c5b1 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7a985e61 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x886b04fb ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9dab101a ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa25ac273 ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc08d7d2e ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc0ae72bd ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc10be10b ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd4a902cf ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xdefaaf8e __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe3f905bd ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xb46e17cf arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x266f7e3e ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x792f6c88 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x4b30d8b0 nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x5a434244 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x5cbd5ffd nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x6fb83c98 nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x830d2665 nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x74456c56 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x4c17169b nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x5a44bbf7 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa786c373 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xdb950896 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf04f9bc4 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0xc924f0de nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x2bdf6655 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x4befabdd tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x8e89d92a tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa1b74200 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xadc08c17 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x44b85e07 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x4e22921c udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd363c653 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xdfb066f9 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x282d6c68 ip6_tnl_dst_get +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x84a94375 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xa7c4d7a5 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xb2e07d28 ip6_tnl_dst_reset +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xbf0226e6 ip6_tnl_dst_set +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xbf0e69d9 ip6_tnl_dst_destroy +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xc24490a0 ip6_tnl_dst_init +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x255404ef udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x7d306cea udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xc6aabd14 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x0d711673 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x75049f2b nf_ct_frag6_consume_orig +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x18079b25 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x09d2a22e nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x1184c767 nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x2bb56c01 nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x5849fca9 nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xc124b0fd nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x89062db9 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x827c0f67 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xab1df80a nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xbace97f8 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xbecc60fc nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xddfdebd9 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x86cb6139 nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x149cb460 l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x183ef4c7 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2dd90fef l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3310c814 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4f238167 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x607cd679 l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8be03b1d l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8e221188 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x965a1e36 l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa933b1e3 __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc8813d6b l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcf3359c7 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdc8ebc3a l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xee8b7a31 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfb2d5b9b l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xff0eeffa l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x4c83ae5b l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0fc17f81 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1bca9d9e ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x29d0ecb2 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x301516f5 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x63aee9ac ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x65e55c68 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x67765c0d ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6d0c33e8 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x72bd93ba ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x75b5af79 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x876657e1 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x88f039a0 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xad0efcfd ieee80211_set_key_tx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb40a0a27 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcfe97116 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe4d206b0 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf06db9c9 ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf9fa191d ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x3e9fab43 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x3f92d92f mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x79fc9f64 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x85d17073 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x01523129 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x047bf075 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3131941a ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x37994899 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x38f204ce ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3bed5cf4 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4a572642 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x645fdfc7 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6a171301 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x78de9115 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xaabdfb0e ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb23b3c48 ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb9276d46 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcff4fc0f ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd82bdbf6 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfe446aed ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x09456bf7 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x78b6e2bb ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x9fee4fb9 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xb451a4fe register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0087779a nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0212263f __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x03d72f50 nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x05af1378 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x064a90e5 nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0726d531 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x07cfd8c0 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x07fed797 nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0cb73bae nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1020f1eb nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x18adce34 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a08037c nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1edffade nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x21dd82cc nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2379a316 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x293df54b nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2ce9985c nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2e585b5e nf_connlabel_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3222f339 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x39615f79 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3a3d315e nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3cf4baa6 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3fb751c3 nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4187dbdf nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44e13dea nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47da57be nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b0e67df nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4e2db5a9 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4e9aed8d nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x550e7bcc nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x603ec0f8 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x626103c8 nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6738194e nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x686f0a61 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6bdcccf8 nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d6620c0 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7141d70b nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x715fc626 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7457d87b nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x786fed39 __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x790003a3 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7a09abb6 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ed65393 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x808f3b35 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x82922946 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x84576630 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x887f03b8 nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x89a63cd2 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x89f0a977 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8bdbfca3 nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8fb5f10a nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x93cdcb97 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x946eb72b nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9975c0f7 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b2686d0 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7366ada nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb23f95fe nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb630a382 nf_connlabel_match +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb9c0e2a8 seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc14a442f nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2abd2fd nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc3a2be65 nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcbaaba8f nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc1372fe __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcead3503 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd1fb1118 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd7438106 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe3075cbc nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe8311684 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe836e12b nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe8ccdb02 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb306a3e nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xef00f611 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf041211d nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf0a3bc89 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf645a9a6 nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf75db4d4 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf9c8d842 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf9d19551 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfc8a137d nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x9f7aa943 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x924e5eb9 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xa5f05632 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0110de61 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x01766a4e nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1409ab04 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x15b2ca1f nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x379d976c set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x55020467 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa797aef3 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa996f523 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xbb0eddf9 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd1b671fd set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xb76c1ab1 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x115d0bd3 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x7e3fbc56 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x9252bb1b nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xce9bcd94 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x223e9dae nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xd1e2d589 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x19173e6e nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x33233a42 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x39093fa4 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa4e9c909 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd2b9d3a4 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xdda2a1a6 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf344335c ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xe682a730 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xee569760 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x3817a3d1 nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x839e0343 nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xa943f60c nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xd97be5f6 nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d0e99da nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x111d5f96 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x593f2548 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5c187aac nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6d043ec7 nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x71bb7795 __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7732a4f5 nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x929faca5 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa27173ed nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x9cc8da7c nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xeaeee43c nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x09c75246 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8841d39b synproxy_build_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc61febdb synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x08e0ad08 nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0ac2b475 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x13137648 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2c8bd72f nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2ef9819d nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x325d8759 nft_register_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x434624f4 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6e7c4c53 nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x75c335a0 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8326cb78 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9d351b1f nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa2a26820 nft_unregister_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc308f897 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc8536759 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe0db5ee7 nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe43db6ef nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfece4287 nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x2dfb1f6c nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5c3e113b nfnetlink_alloc_skb +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6ea3781d nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xac192d10 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xad8f508f nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xebedde9a nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf513df40 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x7e84f48e nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x932a242c nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xf68f254d nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x6eb0d024 nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x27873483 nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xc41e18ee nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xfe7b7d18 nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x19254a16 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x63df60ef nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xa73e6bcd nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xbe8f1e6a nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xc48e85a2 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xec7baa7c nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x6c154d5b nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x7cc82a95 nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x8f2b2d28 nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x00adf10d nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x25c5bbe0 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0996cb77 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x13632bbf xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1c66d509 xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3f1ef70a xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6295013f xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7f553790 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x86f2d2bb xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8b7cd618 xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa0f6f862 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa142aead xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc1eeb5a6 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcdfbdb17 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe2f788bd xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe3f56cff xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x57909dc1 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xd0f26ea3 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x58294b7a nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x68982e0b nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x9bd7561c nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x6b3cc296 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xb5469bd6 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xd5a2fcf0 nci_uart_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x03c5e7e1 ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x062ee3cc ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0f0a0745 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x2858bcd6 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x2d95b96b __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3b4ed361 ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x50ee6ba3 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x59b9542b ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xbd28e5ab ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x29590f49 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x3555ebda rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x3d375fac rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x4a2e7c1c rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x4aa56443 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x4b209685 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x55b7cee4 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x60c0f009 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x7d182692 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x8ec43834 rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x92bcb54e rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xab07843e rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xb69952a6 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xb89d7a34 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0xbf2d3d5a rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc642cc2c rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0xd543dd40 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xd66c45eb rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xe6f08ee0 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0xe7295737 rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0xecffa972 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xef2086d1 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xf1b59533 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xfb3623ce rds_recv_incoming +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x569d1201 rxrpc_unregister_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xf89849ff rxrpc_register_security +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x691b45c5 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xe44d558d gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xebd0ebe4 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x010f05d1 cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02673e6b xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x056721f3 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x061de60a svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0860bf07 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0905938c svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b3e97be xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b44ffbe svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bc67ba7 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c28be36 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d796e19 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e34ce9f xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ee7b024 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f35a7af _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f898f37 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11cd822b auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14c87bc5 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1521d2a6 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15bb43c7 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15f017b2 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19fa3bb3 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b29bb4d rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c9acaae svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d39a3a9 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2088fb80 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x214e2bc3 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23d52956 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24f0efba svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x252fe6aa rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2531f135 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x261b5094 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x281421bf xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x294cc907 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2974c611 xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a13dd58 rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b0bb171 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c749b88 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2cb28c05 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x301fe55d rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3060b97b svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30ef8298 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33476fa3 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37b3c3a6 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3978611b svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3be97fa1 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cdfa5fb rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f13c0c7 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f747bc7 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x410a71d9 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x422d10e5 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x427eedcd rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x430694bd rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x439ec6d1 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4411eaec svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4556a2c9 rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x458120cd svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48dbf091 rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49380a89 rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a4b5329 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e06b6b5 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e1b784d rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e2f18b7 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e3b577a rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50bbcc7f svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50ca882e rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51409443 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51e653a8 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53dc47f9 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54193e45 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x571995e8 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x574c62f0 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57aee2e7 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5810e6d2 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58821a78 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x591a4990 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b5898be rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5dc20588 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e0ece47 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e385205 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6026afe4 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61ea87b0 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6261c0e4 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65e97f7d xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66b5b1a7 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x670d4244 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6796c2a0 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x683c19be rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a76c42f rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a83747f svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73d0036f rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74f99933 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x765ca817 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76a42bc2 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77ca6ebf rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7912af76 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79cf4e78 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ba530eb rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d0b8f1d cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d1e1501 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x830b3f22 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83260453 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87c3a8f6 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88e875fe rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ceb14dd svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f1f190c svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f24b119 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fc464bf svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x912e39ca cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9194301f rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93d7e5b8 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x971e9203 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x992aa88a rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a14f130 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9abb2c5c xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9bebc3e6 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d0faee5 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e0b42d3 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa14da319 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1a4cd72 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1fb340c rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4000ce3 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4a4d79f rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa72ce9c5 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa82d9d22 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8eb9139 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8f3b699 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa90d1050 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa91053f9 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa95c930b svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9e2d45b rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa72ebd2 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaaf6671a svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad0a97c1 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb036f2d2 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb22fea5b sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb48e9f13 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4e3764b rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5198b2b svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5c88349 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5e14d53 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb633e8cd sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb744de03 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8b1307d rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8f5f647 xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbae6f0e0 xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb22cf1e xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb2c834d svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb5e373f xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbf98aa3 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc4e7d14 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbeed812d rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc22a7401 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc290a8aa xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2b70c36 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc512aaf5 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc55f6683 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc59093ac svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5dfbca3 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca6afdf8 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc3cc3a7 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xceaf5e22 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1e6a2ab put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2c5fccb xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2cca29d svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd49b49b4 rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd49ed0d0 rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6f81ffb auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdadce699 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb40641e cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb4692ce xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc41e5ff rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde6ab921 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf7944d6 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe14d1e36 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2a7ebfc rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3735b8a rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4c55d3c rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5cb0680 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe772ed82 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8a53d67 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8ac3ae4 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9733a87 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9f9435f svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea98b7b1 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee27b7e6 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf15af360 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf15d8d20 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3091122 cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5b8594f svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5d55789 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7cd3ac5 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8841fb6 rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa3adb56 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa75e45f svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd0c3e93 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd162dcb xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfea744c0 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff31268f rpc_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x00ff5a72 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x24ca3d33 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2d518f69 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x37924b4c vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4bdfd13f vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x54c60943 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x57dddcd0 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x74e91915 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7a935e1f vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa2e28269 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe6285309 __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xeceb7331 __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf145581d vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf593c40a vsock_pending_work +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfe9bfbbb vsock_stream_has_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0x0a718ac0 wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0x1f400039 wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x2cf8577f wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x3b065a2b wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0x417b8dc5 wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x55dc6bcb wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0x5b0fe8d9 wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0x7a846eed wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0x7afd2394 wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0xa89d358d wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xdb034a05 wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0xdb825856 wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0xdd6ccab1 wimax_state_change +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x104333b5 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x28721f51 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3040b35e cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x41294551 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4141fde6 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x63bc099a cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x68c0ff56 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6f4fab37 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x78dd4e61 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x94591d38 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9f780db5 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc4c177e2 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf357ee2c cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x762913fb ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xbef97495 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xe2a99918 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xed5dee2d ipcomp_destroy +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x08e33de6 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x789e004c __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0cfd1714 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x3497f1d3 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x3f7dcd96 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x65a0bc51 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8b3fa7b9 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x99d638e5 amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa9904e05 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x024bcf92 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0630fd14 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0685c2f9 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0846e318 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x09e1dbb8 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0af56590 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0b590a6d snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0fb51d5f snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1db1ea93 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1f572920 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x222aeb4f snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2c682703 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2ee6061c snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x38579415 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3a993453 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x40fa0a4f snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x43cb8f0e snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x455f3bed snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x49e3470a snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4a26115d snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4e0e9a7e snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x50a6012b snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x532915c9 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x550e75f4 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5a77dcb4 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x605ae747 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x63b2b384 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x64213f94 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x652ad89b snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6e2ee814 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7a9115e1 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x816c9eae snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x81fe2a82 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x84668194 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8d7e1ad2 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8ec07846 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9035a219 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x90aaea0e snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x928032f7 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9e12f2a8 snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa166ba92 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa194b3bd snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa2eca765 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa5086a73 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa85deec9 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa8f36247 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa9d31a8e snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xac221959 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb29bff76 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb674398f snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb85ba0ac snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbc62354a snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc046e6ed snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc55fdeb1 snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc652c59b snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xccf3a437 snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd8d45c2b snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xda1e85a0 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdec0d861 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4553bdd snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe63d1a89 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb98c275 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xefccb8b3 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf5c21e7b snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf5dc3ce2 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf7792fd9 snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfae108e9 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfb40211c snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfbc7f9d4 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfe16fde2 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfec1c06c snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x0ea17bed snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x22cc019b snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x50f2ea62 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x6d815740 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xbcd766cf snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xeefba90f snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x02cc826f snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x03b006ba snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x043b71f3 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04f8b64b snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05805aee azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x07a87f97 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x09b68d97 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0cf0dc85 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f7cebbe snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10af9891 snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x112ea0aa snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12c43b6b snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13301921 snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x14a4bcae snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x174feff5 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1823b69d azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18441dd0 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x192582ae snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1fde2f09 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x23c27bc3 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3127317d snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x32d663f9 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34511f66 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34bd6821 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x359819a5 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x35c93cf7 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x37fa23c0 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3877c817 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3bf1d320 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3ca11914 snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e3a8d31 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4052ee91 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x42e0321a snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x44d521c6 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4641ba81 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x479440f2 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4fed1f28 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x50c0cc6c snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5911e88f snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5bbac394 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c2d3545 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x613ec9c9 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x616d46cc snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61f23812 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x62cf5d13 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6723b43d snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x680fa4f7 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c31feb8 snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c3bc401 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7990074f snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x81210bb4 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x825c2112 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8600799d snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x88ebc188 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x898aa481 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89bcba1b snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8adc7f01 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8cdd661d snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d6cf097 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e71d06f snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f5b2163 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8fdf471e snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x91a14f35 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x92c64bfc snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x92e8403a snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9cb4e0a5 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9cc2735d hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e23ca59 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e7321c4 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f0779a4 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa179a573 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa1f6e6a0 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4b4bcf1 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa9af176d snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa9fb14a4 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa7074a6 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaca4bd80 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xad3f1705 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xadd39fb1 snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0af2b2b snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2051827 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb3de8300 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb93d43cd snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd6fb5a1 snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe6c30a4 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc1b24ac9 snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc62ef922 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7b93db8 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9d096d4 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcdac3576 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcdcdb2b2 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0369207 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0d139c9 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd2ac9a6c snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd58f7c91 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5a9cad6 snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd66ef446 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd759f1de snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdacd112f snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xded1281e snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe00f2c74 snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe2dd02d5 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe2dd884b snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3beb324 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe400bf7f snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6583350 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe87e119a snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea187a11 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea3319ad snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xebbca26c snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xedc8eeab snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3026145 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf4293b51 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf49349bc snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf4a5de4a snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf5386158 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf5e59503 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8af3550 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8b0a878 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf9ecd007 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfbb3aef3 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd3e7c22 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe75fe57 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xffd2e801 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x24ba6211 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x28761e0a snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2a067032 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3d2384a4 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x62b8f08e snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7ee447a9 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x814be012 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x893fab31 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x985bd638 snd_hda_get_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa7f3a81d snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa97c3b0c snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa9b2d988 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xaa55d362 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbf137608 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc5ea82aa snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc8fec7b4 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xde02172b snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdef078d5 snd_hda_parse_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe3dabfd1 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf224d0c3 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf98d6700 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xdf0f3324 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xe44bfe1a cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x42a0b8f2 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xea6a2612 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x39071d1b cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x92040f47 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xd1695525 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xcb5414d5 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xfa2bbc08 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x24853aa5 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98095 0xd2cb8d13 max98095_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x00870558 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x574f5200 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x717f5a8a pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xd95b0249 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x6ac3a3ee rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xeaaa3f28 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x112d3a35 rt5677_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x41b38492 rt5677_spi_write_firmware +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x952df541 rt5677_spi_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xdc9e2327 rt5677_spi_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x38c81cdb sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x462d0531 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x9067aab9 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x9aca6276 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xaa7cb2c0 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x317e452c devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x3e6bcd3d ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x51374332 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x098ee49e tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x593f0d7c tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x53ba39cd ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x14007263 wm_hubs_add_analogue_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x1840ada9 wm_hubs_hpr_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x219cce42 wm_hubs_hpl_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x2c10026d wm_hubs_set_bias_level +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x445aee17 wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5cd7eb9b wm_hubs_dcs_done +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x757206d5 wm_hubs_spkmix_tlv +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xbd8f5a05 wm_hubs_vmid_ena +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xd26a92e9 wm_hubs_update_class_w +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xe8c9114e wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x1383d767 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x6ef75ff4 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x7829f4cd wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x9be5bb5b wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x1a4a2dce wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x59991778 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xc3ab165d wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xf60b5830 wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x0e976eff fsl_asrc_platform +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x27cc5d57 fsl_asrc_get_dma_channel +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x30693bb7 imx_audmux_v1_configure_port +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x58631dab imx_audmux_v2_configure_port +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x1868b0b1 asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x7ceb64d7 asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xb962960d asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xfee2f76f asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0x6a8e6181 asoc_qcom_lpass_platform_register +EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-idma 0xade84e1d idma_reg_addr_init +EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-s3c-dma 0xb43351b0 samsung_asoc_init_dma_data +EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-s3c-dma 0xfab131b9 samsung_asoc_dma_platform_register +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1ce81c04 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2deb4a22 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x35c8573f line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3b6aa42a line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3fd55948 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x65a68569 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6e528ad2 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x92094e94 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9769ce4f line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9e209629 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9f7155c1 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb3fb5f6a line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xdbd7a0f2 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe438fddd line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfceeb007 line6_read_serial_number +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0xf6e772c3 irq_bypass_unregister_producer +EXPORT_SYMBOL_GPL vmlinux 0x0003e8cb regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x0013e097 kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x001b76bf gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x00228a45 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x003000d9 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x00306b94 kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0x003f2f17 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x007763c5 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x0077e410 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x00cb0342 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x00dc50b3 snd_device_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x00e11368 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x0102b187 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x0111d24c disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x011cbeb6 rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x01239e39 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x012f78c6 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x01301ee3 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x014e050c device_reset +EXPORT_SYMBOL_GPL vmlinux 0x015100df crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0x018edcce cpdma_ctlr_dump +EXPORT_SYMBOL_GPL vmlinux 0x019e8340 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x01a458a1 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x01aa17e1 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x01be387b scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x01c910fe device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x01e054bc regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x021e1e00 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x023f8fa6 snd_soc_unregister_platform +EXPORT_SYMBOL_GPL vmlinux 0x0245ffa5 of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x024ed110 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x0257635a blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x0273fec6 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x02a34218 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x02df2c9a metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x02ea8741 max_gen_clk_ops +EXPORT_SYMBOL_GPL vmlinux 0x02f65e96 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x032375b0 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x032c058f clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x0345555a ioremap_page_range +EXPORT_SYMBOL_GPL vmlinux 0x0399db50 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03cb6438 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x0402b504 __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x0415dd15 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x0422b8f6 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x0480f430 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0x04b64b89 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c71d36 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x04c81cb9 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL vmlinux 0x04f4bd8d percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x04f65246 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x050d8f21 of_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x0518ecec list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x052ad5ff regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x05542702 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x057c6bf7 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x05b34990 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x05cd7ead of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x05da8d1a wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0x05ecffb4 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x06438115 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x064cfda6 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x06645834 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x066aa19f ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x06820e8d to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x0695ad2a tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x06c214cb ref_module +EXPORT_SYMBOL_GPL vmlinux 0x06d29592 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio +EXPORT_SYMBOL_GPL vmlinux 0x06d583a0 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x06f4e90a component_master_add_child +EXPORT_SYMBOL_GPL vmlinux 0x07032f9e trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0x0714afab spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x073db655 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x075286c0 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x075ab4be crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x07684a40 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x07725329 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x078da988 irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0x079e0086 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x07a4dc3b iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0x07a6dedd devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07e36cea tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x07ef5849 cpufreq_governor_dbs +EXPORT_SYMBOL_GPL vmlinux 0x080a606f stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x0811102c tpm2_startup +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x08221d41 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x083fe7dd omapdss_of_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x0845bbc1 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x0854a42b dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x0856710b _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL vmlinux 0x0880af67 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x08879b54 omap_dm_timer_set_int_enable +EXPORT_SYMBOL_GPL vmlinux 0x0891d854 kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x0892ae1a musb_writew +EXPORT_SYMBOL_GPL vmlinux 0x08a44367 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x08a71183 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x08a9ccda rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x08b5656a regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x08bb7e02 mtd_unlock +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x097b8d46 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x098ad6be pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x09a3f7f0 mtd_get_device_size +EXPORT_SYMBOL_GPL vmlinux 0x09b9731b thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x09ba92a2 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x09bb945d pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x09c367e5 rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x09c6133e of_device_get_modalias +EXPORT_SYMBOL_GPL vmlinux 0x09c71abd __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL vmlinux 0x09f14039 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x09f8a38e mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x09f9cafb wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x0a0111c8 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x0a0e11ca adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0a4e57c1 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x0a550f2c __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0x0a58e3f1 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x0a5b92b4 mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x0a7d7a1c inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x0a85ea2a unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x0aa52085 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x0aac96e6 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x0ac4862c of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x0acf6170 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x0ad9e282 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x0af9304d ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x0afd4610 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b1dac4f power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x0b49a2b5 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x0b5f0f0c stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x0b6a86fb edac_subsys +EXPORT_SYMBOL_GPL vmlinux 0x0bb3e9f3 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x0bbae511 return_address +EXPORT_SYMBOL_GPL vmlinux 0x0bbeb0e9 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x0bde0fa0 clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c28d057 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c4393da anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x0c450e10 kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x0c611f71 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x0c6dab5e perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x0c70865f crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x0c70e1bc da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x0c71ae41 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x0c8d39bd extcon_unregister_interest +EXPORT_SYMBOL_GPL vmlinux 0x0c99151e snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL vmlinux 0x0cabfad3 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0cd66eab mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x0cd6a4bb sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x0cee06cc wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0x0cf3b1d8 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x0cf462c7 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x0cf6e2f3 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x0d2260e3 md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0x0d3b0ae6 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d4e2b49 genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x0d4f6187 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x0d522b9a mtd_block_isreserved +EXPORT_SYMBOL_GPL vmlinux 0x0d589aba clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x0d5923ca pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0d80bf40 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL vmlinux 0x0d9766fd gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x0d9e8754 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x0dc929dd dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de15d79 pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x0e5b9f1f mv_mbus_dram_info_nooverlap +EXPORT_SYMBOL_GPL vmlinux 0x0e5e6d99 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x0e607d5b ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x0e667631 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x0e687037 snd_soc_bytes_get +EXPORT_SYMBOL_GPL vmlinux 0x0e7d48a4 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x0e7e201d ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x0e8a574a cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0e946c1b spi_async +EXPORT_SYMBOL_GPL vmlinux 0x0ea55a83 __bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x0ee24537 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL vmlinux 0x0ef0517c nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x0ef9790d sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x0f12be19 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x0f20a5bb __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x0f27a6cb debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x0f289ac1 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f49ec7b shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x0f49f121 arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x0f60dc7f invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x0f68b8ad mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x0f73b376 omapdss_of_get_first_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0fc8fc16 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x0fdb9d75 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x0ff9af09 cpdma_ctlr_int_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x103259f0 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1034b45d ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x1047381d devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x1047a55f ti_cm_get_macid +EXPORT_SYMBOL_GPL vmlinux 0x104c9b69 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL vmlinux 0x104f346a iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x105991e8 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x106ef757 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x106f9c51 cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0x1073f2d6 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x1093d196 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x109444ca ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0x10b0bb3a i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x10d89835 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x11025677 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x110a83e1 iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x11211dc4 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x112d9b15 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x112f96f0 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x115d5fc9 pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0x116eadae dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x118285a4 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL vmlinux 0x118b8b9b nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x11b07b38 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x11c55df5 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x11c916b6 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x11f09ad2 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x125d89cb usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x126defbe pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x127de08d crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x127e0572 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x128a4e38 gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x12cf9bd5 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x13059625 of_dma_get_range +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131b301f driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x131ea56f ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x13219e49 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x134e95ec __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1381d4f3 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1386d6c4 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x13984ba7 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen +EXPORT_SYMBOL_GPL vmlinux 0x13b53f78 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x13b89dee pinctrl_request_gpio +EXPORT_SYMBOL_GPL vmlinux 0x13ca3649 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x13d6ecb9 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x13fc2f8d posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x140e2be2 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x14113b48 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x142f240e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x14451d31 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x14611525 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x146fda6c wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x14a98a21 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x14ca398b devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x14d7535a __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x14d9282a device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x14f09e04 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x14feea4f __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x150ad6ee regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x152dc323 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x154f6f8a da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x15702fe9 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x157833eb da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x15837d07 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1591e4ed usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x159c92ae ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x15b29973 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x15eddbde serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x15eec147 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x15f41a9b pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x15fb77bc netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x161eacf9 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x1621b6bf mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x1652d8ca regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x165d9fa7 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x1680cd35 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x16859fbd snd_soc_dapm_free +EXPORT_SYMBOL_GPL vmlinux 0x168d1159 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x16af2e27 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x16b6cd2c dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x16d45cdc snd_soc_resume +EXPORT_SYMBOL_GPL vmlinux 0x16f020bb subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x16f9cd52 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x1707f752 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x1717a05d omap_get_plat_info +EXPORT_SYMBOL_GPL vmlinux 0x17228b2c snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL vmlinux 0x172d0a9e gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x1761fbbe dapm_clock_event +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x177f6c95 snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL vmlinux 0x178034b3 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x17b4c5d4 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL vmlinux 0x17d97f44 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x17db45bb regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1825bea8 dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x1831473f of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x18344a1b splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x18775a01 sm501_set_clock +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x1897f28c serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x18aa890b arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0x18baf690 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x18d55483 sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0x18e6cb3d ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x18ef0ce7 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x18fcb215 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x19017911 bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x190f14b0 mtd_device_parse_register +EXPORT_SYMBOL_GPL vmlinux 0x192441c6 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x1927a4c9 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x19343b68 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x194f124f crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x195dc417 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x1970827c kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x1977af96 snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL vmlinux 0x1979165c of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x197f830b regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x1990f8ff pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19af0597 omap_pcm_platform_register +EXPORT_SYMBOL_GPL vmlinux 0x19b61808 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x19b8783d crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x19c1d455 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x19e6a978 ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0x19f164eb snd_soc_jack_get_type +EXPORT_SYMBOL_GPL vmlinux 0x19f34261 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x19f6e136 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x19f991e8 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x1a0d7480 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x1a1c4082 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x1a3a3cf5 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x1a4416b5 i2c_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1a4a628e _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0x1a5f6e49 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x1a7cb267 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x1a8b0523 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x1aabe552 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1ae43f07 __mtd_next_device +EXPORT_SYMBOL_GPL vmlinux 0x1ae556ca of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x1b21ea2c blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1b3261e0 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x1b3af596 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1bb5fc26 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bd0ddf5 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x1bd96369 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x1be5abc8 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x1be6791c musb_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x1bf960c3 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x1bfe3408 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x1c0ad03c rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x1c12c627 sm501_misc_control +EXPORT_SYMBOL_GPL vmlinux 0x1c20a42e dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c5a7391 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase +EXPORT_SYMBOL_GPL vmlinux 0x1c716881 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x1c73b82d blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1cc42df1 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x1d084215 ahci_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x1d0c2aab x509_request_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d2e8081 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x1d409c5d crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x1d45f8d2 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x1d4d65ab extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x1d7cb586 clk_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x1d96f842 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x1da61f63 securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0x1dc0eec2 kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0x1dcce6ac snd_soc_remove_platform +EXPORT_SYMBOL_GPL vmlinux 0x1dcf75cc iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x1de3c028 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x1dea470d gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x1debe39e of_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x1dfceff2 i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0x1e0313ad mtd_block_markbad +EXPORT_SYMBOL_GPL vmlinux 0x1e1de161 reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1e30e8e1 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x1e4a1f23 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e60a213 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e7d6157 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1eb520ba pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ed06793 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x1eddfdff kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x1eea89c9 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x1efd3519 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL vmlinux 0x1f13dcc2 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x1f3799cd is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x1f47a447 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x1f5a0c88 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x1f63a4b2 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x1f6dfa63 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x1f774f46 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1f7cd2d3 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1fb9cd81 of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0x1fc5a76f ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x1fcb272f security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x1fce24d9 vchan_init +EXPORT_SYMBOL_GPL vmlinux 0x1fd5bcbb snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL vmlinux 0x1fda30b9 i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x1fea3e33 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0x1ff6c8b8 perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0x1ffa27b1 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x200a7ebe flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x200d4c9d sdhci_set_clock +EXPORT_SYMBOL_GPL vmlinux 0x201cf71a snd_soc_component_read +EXPORT_SYMBOL_GPL vmlinux 0x201d8ea3 encode_rs8 +EXPORT_SYMBOL_GPL vmlinux 0x203e5322 extcon_set_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x204a30b5 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x205c01a5 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x205f1c8b kvm_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x205f5dbe devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x20672c1d mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x20797db0 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0x2081f581 bgpio_remove +EXPORT_SYMBOL_GPL vmlinux 0x209469e1 __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x209a0d1e tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x20aa179b usb_gadget_set_state +EXPORT_SYMBOL_GPL vmlinux 0x20b4c52e pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x20ddded6 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL vmlinux 0x20e51e80 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x20e70ad2 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x20f269f6 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x210e604f locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x21180eab spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x21233c34 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x212d7c19 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x21301cca dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x21395662 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x21644466 of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x21667e6f pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x216b90cb ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x216e28a0 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x21933754 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21c05b34 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21d9fb14 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x21e42e7d ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x21f3143e of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x21febf58 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x220bba9d sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL vmlinux 0x223a5911 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x226a674d atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2274e9ac ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x2296d59d snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x22d31632 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x22dc37a8 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x22f1b035 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x22f2097a debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x22f2eb54 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x231d70fc encode_bch +EXPORT_SYMBOL_GPL vmlinux 0x233997a1 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x235d37c7 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x236c32b5 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x23756cdb extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x2383618b extcon_register_interest +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2392f1a5 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23a440f3 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x23af318c handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x23b21505 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x23b34307 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x23b667fa usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x23d2189a fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x23d6e708 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x24002676 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x240dc25b da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x24452f53 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x244c1899 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x24577519 snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24cd53c6 shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x24e8e69a gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24efe2dc sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x2517807c dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x25208417 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x2561399e pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x2573287d bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0x25820163 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x25c59929 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x25e4fa8c btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x25e64405 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x26025146 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x26085a7e pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x261098a6 of_display_timings_exist +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x2635ef7e fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0x2651b860 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x2665cbd0 mtd_add_partition +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x267aa372 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x268ccb27 blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x26adb815 thread_notify_head +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26c547c0 bL_switcher_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26c8b665 cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26cc97e9 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x26e02ba4 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL vmlinux 0x270a642f usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x270fa97e usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x2725aa52 iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0x27356469 of_get_nand_bus_width +EXPORT_SYMBOL_GPL vmlinux 0x273dd22b dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x274f9f9c swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0x27526c33 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x2757afb0 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x275b869f extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x2764a786 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x2766d6ee wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x2787518f mtd_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x279ceaca pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x279d925b platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x27a82a23 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27ca7a1c device_add +EXPORT_SYMBOL_GPL vmlinux 0x27d5815f snd_soc_platform_read +EXPORT_SYMBOL_GPL vmlinux 0x27d6ce6a mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL vmlinux 0x27dcbd91 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x27e2024e __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x27fdaf94 __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x280a609b blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x281914a0 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x281b05ff led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x2841362f of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0x28428026 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x286abb55 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x287e0e8a single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x28953f61 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x28b0ed78 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x28cb2b0b of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x28e898f2 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x28ecba9b ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x290dab1f vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x293b89f1 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x29855651 of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x299a0069 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x29a5c27d __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x29c4bb79 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x29cb35a7 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x29cd97c4 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29ec27c6 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x29fa419f decode_rs8 +EXPORT_SYMBOL_GPL vmlinux 0x2a095036 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x2a1959ed __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x2a2c212b ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0x2a59c5d5 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x2a59f946 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x2a610fa1 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x2a63df2e device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a816a05 dev_pm_opp_of_cpumask_add_table +EXPORT_SYMBOL_GPL vmlinux 0x2a8c66d6 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x2aa77e56 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x2aa9e2fb usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x2aaabe63 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x2aae43f7 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x2ac762fb __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x2ad52abb sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x2ad9d326 md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x2af95b62 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b3fd87e __put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x2b54aa52 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x2b57d26b mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x2b588a5d xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x2b639d66 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2b695c17 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x2b70216b user_describe +EXPORT_SYMBOL_GPL vmlinux 0x2b7d260d bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x2b880747 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x2b8b924f snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x2b8c6988 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x2b905d1c srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2b9964c8 system_trusted_keyring +EXPORT_SYMBOL_GPL vmlinux 0x2ba9f68f tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x2babe81f __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x2bad9c6a cpsw_ale_control_get +EXPORT_SYMBOL_GPL vmlinux 0x2bb2c6ef pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x2bdabd76 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL vmlinux 0x2bdb1788 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2bea1833 cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0x2bfaeb23 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x2c144892 spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x2c179d23 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c21320d snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL vmlinux 0x2c278592 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x2c2c11ab unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c634655 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2c990b99 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x2ca67bc8 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x2cac2409 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x2cd1f822 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x2cd357d1 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x2ce152cd pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2ced3de3 clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d2e2f02 omap_dm_timer_read_counter +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d4279fd regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d5cfb4e pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x2d6d2e54 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x2d831a7a snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL vmlinux 0x2da3ecbb regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x2dad9b05 register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x2db1161d net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x2dcc544a sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x2de681b6 system_verify_data +EXPORT_SYMBOL_GPL vmlinux 0x2defbd9f device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x2df42a92 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x2e015688 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x2e0bd101 snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL vmlinux 0x2e10ee08 mtd_erase_callback +EXPORT_SYMBOL_GPL vmlinux 0x2e220e41 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e278f88 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e728db6 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x2e742b00 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x2e7928c6 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x2e7b2850 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x2e7dae0d get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x2e9670c0 pl320_ipc_transmit +EXPORT_SYMBOL_GPL vmlinux 0x2ea1d373 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x2ea2496a devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2ea61fef inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2ece9a5d usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x2ef4d512 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x2ef6b5bf smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x2f05441c of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f1842f4 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x2f1e39a4 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x2f216306 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x2f27560f devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x2f2c4ac2 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x2f308d75 pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0x2f319bb0 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f5ace35 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x2f5ddece pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x2f61f86f blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0x2f632918 of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f781546 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x2f8e74c5 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x2f90da7e trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x2fc713b8 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x2fc7b541 hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake +EXPORT_SYMBOL_GPL vmlinux 0x2fffca24 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x300d7e57 free_rs +EXPORT_SYMBOL_GPL vmlinux 0x300edce9 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x301d717b gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x3023968c fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0x3035af8d otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0x303c1831 of_overlay_create +EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x3064ecce xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x3070002a ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x308d7ccf spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x308fea6d ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x30966a3f device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x309b4c33 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x30a295de sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0x30a2b5f5 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x30ae4bd5 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x30d442ab mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x30f18c9d pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x30fa0f0a snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL vmlinux 0x30fba1c8 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x3100bf02 wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x3119e15f crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0x311d2903 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x313fa316 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x31449015 sdhci_add_host +EXPORT_SYMBOL_GPL vmlinux 0x315aae23 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x3166fa65 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x317bc1e8 kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x31b86180 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31ddadce screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x31e89a10 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x31f701c5 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x31fd1d0e pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x3213831b crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x321b2e20 find_module +EXPORT_SYMBOL_GPL vmlinux 0x322729f9 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x3248fab7 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x3250e5aa pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x325169c5 kvm_init +EXPORT_SYMBOL_GPL vmlinux 0x3252fb6e invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x3264cac9 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x32802c4c usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x32806de4 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x328a2ba1 amba_apb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0x32924a4d scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x32959917 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL vmlinux 0x3295ec8b of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c2e9b0 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32cd4c08 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x32d4e5b7 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x32f97a8d thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x3315e038 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x331cd0e9 blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x333e0819 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x3360c3e0 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x336a4b69 crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x3377e95d ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x338f9601 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x33aa7e1b do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x33cd8089 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x33fc6ef4 dev_pm_opp_of_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x33fc9851 __module_address +EXPORT_SYMBOL_GPL vmlinux 0x33fefed6 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x340a1c98 kvm_vcpu_block +EXPORT_SYMBOL_GPL vmlinux 0x341643ba omap_dm_timer_modify_idlect_mask +EXPORT_SYMBOL_GPL vmlinux 0x3432f510 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x34331d5e nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0x345f8e4f irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x347682ce snmp_fold_field64 +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x34814037 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x34bb4580 spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0x34c5bfb5 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x34d2415d skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x3529c221 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x352a5c84 bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x353b8c58 bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0x357745a0 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x357c0f5a bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35a49b54 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x35ac128a devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x35b9ba51 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x35dcd1f7 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x361886fe kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x362f8627 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x363eadb1 of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x3667bd1c snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL vmlinux 0x3669496a ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x36723b0b usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x36728cac gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x368a2604 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36b195f6 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x36c4c780 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x36c6dc7b ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36de0ca0 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x36fb7480 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x37096aaf debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x37198b2f virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x371dbd7c gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x37302958 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x374d9a27 of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x377bf2f8 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x37b4acd3 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x37c7b1af aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x37df0e23 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x38168e41 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x3825e424 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x38277010 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0x38295c34 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x382aad29 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x382e57f5 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0x382e6a03 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x384a6981 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy +EXPORT_SYMBOL_GPL vmlinux 0x386b6a44 alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x38704d8b crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x3879a04d __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x38843bce ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x38c2ecce dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x38d1d48b crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x38dfb3f4 omapdss_of_find_source_for_first_ep +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38f784e2 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0x39056c80 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x39243718 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x3933e066 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x396c9747 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x396efb80 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x3988ecda md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x398a93d0 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x399e7871 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x39a5ef2f of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x39c705a4 fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39d672fa power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x39f38e38 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x3a146390 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x3a14e0ee __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x3a15a2b5 of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0x3a15da00 regmap_fields_write +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a2f53e1 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x3a4938a1 user_read +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a7897ba max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3abbb53a mtd_table_mutex +EXPORT_SYMBOL_GPL vmlinux 0x3ac2c59e of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x3acc3cd8 kvm_vcpu_init +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ae93636 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3af0eb02 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x3b2a191e skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x3b3f4d6d devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x3b525151 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x3b547bc9 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x3b696a56 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x3b6df45b seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0x3b86556c usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x3b87394b __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x3bb6fbe7 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x3bc6b0ac __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x3bdaf384 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x3becb6c1 flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x3bfa6694 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x3c460f1d usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x3c46dbe3 snd_soc_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3c69bd85 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x3c7c3323 snd_soc_read +EXPORT_SYMBOL_GPL vmlinux 0x3c831441 arm_check_condition +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3c93ea25 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x3ca6f434 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x3caab1cc sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x3cc8fba8 devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL vmlinux 0x3ccbbad0 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd37be7 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3cdb4fd7 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x3ceb10bf usb_udc_attach_driver +EXPORT_SYMBOL_GPL vmlinux 0x3cf637c8 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x3cff5f30 filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x3d0dd39b i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x3d16f4d0 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x3d35ec4b iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d38976c bpf_prog_get +EXPORT_SYMBOL_GPL vmlinux 0x3d3d7f9c blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x3d6cbf2e dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x3d7940da snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL vmlinux 0x3d7dd329 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x3d815b5b dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x3d9573aa blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0x3d9a80a5 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x3da378f5 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x3dc264f7 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dd1182c fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3dd4d3a7 bprintf +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3e06087f mtd_is_partition +EXPORT_SYMBOL_GPL vmlinux 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e31d9c3 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x3e410620 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e68089c ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x3e69377a sdhci_alloc_host +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e719862 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL vmlinux 0x3e8f20f8 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x3e9e4c1e extcon_get_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x3eb8fd66 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x3ebee169 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x3ef502ce snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f0e2941 snd_soc_platform_trigger +EXPORT_SYMBOL_GPL vmlinux 0x3f231773 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x3f29cb03 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x3f2db59d ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3f489732 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x3f664fa5 __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x3f736d50 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x3f9028d7 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0x3fa9bfdc of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x3fdcc3b1 of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x3fe2313d usb_string +EXPORT_SYMBOL_GPL vmlinux 0x3fe9f665 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x40059e4a napi_by_id +EXPORT_SYMBOL_GPL vmlinux 0x401efcf6 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x402774be inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x402a1330 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x402eaaaf trace_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x406e8d0c amba_ahb_device_add +EXPORT_SYMBOL_GPL vmlinux 0x408085fa phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4094fda5 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x409f12e4 rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0x40a50b02 blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x40abfa54 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x40aecc10 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40b119e1 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x40c494c7 md_run +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40d741ad usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f8b582 pm_genpd_syscore_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x4115db6e iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x4127f09a __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x413889f6 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x414cadd4 get_device +EXPORT_SYMBOL_GPL vmlinux 0x41525bed crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x419dcb9d sdhci_pltfm_free +EXPORT_SYMBOL_GPL vmlinux 0x41c5274c __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x41ca2af0 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x41dcb534 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x41ede885 of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x41eef2c7 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x42141100 of_pci_msi_chip_remove +EXPORT_SYMBOL_GPL vmlinux 0x421d89b7 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x42618eb0 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x426203d7 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x42884cfc rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x428a8775 sdhci_get_of_property +EXPORT_SYMBOL_GPL vmlinux 0x42a660cc ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x42ba5376 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x42e5feb7 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x42f5871f part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0x43002d21 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0x4300976d skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x4318c5bc mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4337cc02 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x43436969 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x434864d4 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x434d3586 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x4353b267 pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x4363ff57 crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x43772e71 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x43797b99 queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x438b17af xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43b466b0 gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43ea400e pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x43f19b53 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x44020321 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x441b4e5a crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x442e5567 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x443fa49f spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4450f1ff dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x445b4889 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x445d8df9 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x445f2fe8 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x44680073 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x4482a5c4 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x4496f109 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x449e7e75 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x44af6314 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44c130b1 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x44cce7f8 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x44f1cd1d regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x45076d7a __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x45586a4f lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x457267f1 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x45947066 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x45aec56f omap_iommu_save_ctx +EXPORT_SYMBOL_GPL vmlinux 0x45ba1367 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45f1044c mtd_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x45fb14c4 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46066e5b perf_pmu_name +EXPORT_SYMBOL_GPL vmlinux 0x460b07ac pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x46157ef9 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x4624f87a mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x462a125d pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x4638ffec ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x466e5342 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4689fb6d device_register +EXPORT_SYMBOL_GPL vmlinux 0x468fd6a4 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x46ab43a7 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x46ba3e92 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL vmlinux 0x46c89986 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x46c8b0b6 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x46cd261e wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x46d81da3 snd_device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x46d88039 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x46dca8f3 amba_device_put +EXPORT_SYMBOL_GPL vmlinux 0x46f94eb5 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x4715ffcf __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x472b086d dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x4744b9fd phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x474d46ab ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x477b3845 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x4785131d relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x4793391e ahci_platform_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47acf6e1 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x47b0d809 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x47b7ba5e mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47ecbcfa crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x47f2166f vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x48068121 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x482873b3 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x482a7f0f deregister_mtd_parser +EXPORT_SYMBOL_GPL vmlinux 0x483d6826 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x484b38c8 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x48591f65 scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL vmlinux 0x486040de bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x4871fb7c __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x487eebaa scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x48b1a4ae blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x48c08c21 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x48f7dc74 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x48f8e48c crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x490a183d rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x4911c3b8 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x49360275 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x4947e66c blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0x494b7154 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49c3c708 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x49d16e13 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x49d85db0 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x49e7aed4 gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4a160060 blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x4a2fbb20 usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x4a365e30 napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x4a371044 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name +EXPORT_SYMBOL_GPL vmlinux 0x4a53db2e snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x4a5f914b regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x4a63f3b2 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0x4aa540ab debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x4aa80b37 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ab1a16b usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x4aef096b crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x4b114ee6 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x4b1b764e get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0x4b3a507d skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x4b3d72e7 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4b42a33a snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4b4bf0e7 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x4b4fda43 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x4b52bcb6 wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0x4b567231 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x4b7c8e00 cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0x4b96a515 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x4b9e5c21 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x4bafcdd8 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x4bba85aa get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x4bd369e1 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x4be810e3 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL vmlinux 0x4bed7645 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0x4bf4b4a7 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x4c0809ab __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x4c0b1077 of_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0x4c189442 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x4c19cd0b ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x4c3d11ef led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x4c442f13 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x4c45c55f dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x4c45f4e9 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x4c47ec15 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x4c599055 dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x4c5c98f8 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c6ff881 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x4c772c32 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x4c80ebf9 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x4c82cdd3 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x4c8464be rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ceee4ef __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d1c2489 blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x4d26c955 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x4d38f1e0 bL_switcher_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4d506578 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x4d75422d dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x4d97842a omap_dm_timer_get_fclk +EXPORT_SYMBOL_GPL vmlinux 0x4d98b3ff driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4dbbad50 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x4dbe8d71 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x4dc1c0df shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x4ddca622 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4df2e5be set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x4e014593 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x4e0d016c of_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e1443fa dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x4e239671 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path +EXPORT_SYMBOL_GPL vmlinux 0x4e2c2dd2 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x4e376b96 ahci_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x4e45b5f7 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x4e4c371f regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x4e4d2dd4 devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0x4e96ce34 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x4ec95ab9 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x4ecc4d28 crypto_lookup_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x4ecce09b max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4f03fc3e ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x4f1fbb29 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f5b52f1 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x4f677e28 ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f7200c9 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4f9c7dca nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x4fa5db8c ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4fae1633 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x4fc3bd26 omap_dm_timer_start +EXPORT_SYMBOL_GPL vmlinux 0x4fd8e696 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x50019d0f wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x50337384 cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL vmlinux 0x50531396 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x505b1fd9 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x506ac0e2 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x50806149 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x5080c352 trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50a20527 ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0x50b92a15 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x5102e512 amba_ahb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0x510e2cff of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x5111ccb6 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x5129731a driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x5140e0c3 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x5145abaa ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x514a4b02 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x514ed70d regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x5183470d scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x51855f81 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x519951c0 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x51b7db52 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x51dfd03a ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x51f37e85 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x5200c3b4 usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x5208e43b sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL vmlinux 0x52198152 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x5227143b md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x524af102 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x525510b8 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0x525f3068 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x526280c7 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x5273d6d3 ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0x528ae66a of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x528d6511 regmap_update_bits_check_async +EXPORT_SYMBOL_GPL vmlinux 0x5293e294 security_kernel_fw_from_file +EXPORT_SYMBOL_GPL vmlinux 0x52a0a7b2 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x52a30a8d phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x52b00d70 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x52b1dedd tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x52eda1f1 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x52f26e97 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x5301d42c usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x5324e32b __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x532fd61e ahci_platform_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x536723bb iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x536af4b6 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x536d78a6 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x537373ef crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x538a89fc thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x538e84bb sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x53bc5739 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x53c02743 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x53c2d08a skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x53ce5d85 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x53e92279 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL vmlinux 0x53ee0c2e pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x53fb67a6 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x540f2c28 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x54221bf9 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x5434a263 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x544aab61 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x544d29e7 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x545e1203 omap_dm_timer_free +EXPORT_SYMBOL_GPL vmlinux 0x545fec86 percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x5475681b kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x547900ff gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x5492204c __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54994dd8 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x54aa00b1 ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x54ac53ae usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x54d468f1 pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x54e2b803 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x54eb144e bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0x55016fa8 ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x55076506 of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0x5511afd0 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x55145f4a extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x552728f6 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x55291253 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x55526743 pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x55b25570 blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0x55d6d6cd snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL vmlinux 0x55e023e2 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f3a45a ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x55fcf8ac component_master_add +EXPORT_SYMBOL_GPL vmlinux 0x56137ae8 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x5623d21c dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x5628b12d usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x5661cede soc_ac97_ops +EXPORT_SYMBOL_GPL vmlinux 0x566c7212 of_genpd_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x566cc7a0 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x56728b8c __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x567e6195 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0x5699dbcc tps65912_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x569c78b1 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x56d31820 musb_writel +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56e66583 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x56eeedfc nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x56f3291e sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x56fcf5b0 arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0x5711a311 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x5712e484 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x57293fd1 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x572a585e pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x5732661a page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x573de960 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x57528e80 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579643f7 cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57d32233 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x58063ede srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x580ef1a0 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL vmlinux 0x582db89f regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x583a7e9b platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x583e644f ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x58500404 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x58727fb5 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x58971a26 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58bf10d1 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x58d42149 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x591d44ce pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x591f3795 kvm_vcpu_kick +EXPORT_SYMBOL_GPL vmlinux 0x593f687c __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x5948240a skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x594cde67 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x59682233 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x596b27af palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x596c8eb4 dapm_regulator_event +EXPORT_SYMBOL_GPL vmlinux 0x597eda79 register_mtd_parser +EXPORT_SYMBOL_GPL vmlinux 0x599cffaf __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0x59a013a0 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0x59c5c6f4 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x59d4fe58 component_add +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x59eaf979 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x59eb3303 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x5a1e89b9 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x5a2021a5 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x5a220bfa __netlink_alloc_skb +EXPORT_SYMBOL_GPL vmlinux 0x5a25a8e5 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x5a3271b4 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5a46d264 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x5a55683a dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL vmlinux 0x5a568037 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a82a62d gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x5a8f213c cpdma_ctlr_eoi +EXPORT_SYMBOL_GPL vmlinux 0x5a976a7e register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x5a988335 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x5a9badf1 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x5aa81d35 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x5ab00526 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x5ac858ad dbs_check_cpu +EXPORT_SYMBOL_GPL vmlinux 0x5acf6567 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x5adc4c38 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x5ae67d3f inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x5b07bf30 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x5b36cb6a crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x5b4b56be unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x5b52187d serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x5b580c0c cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x5b6362c0 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0x5b73c04e crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x5b9bfb71 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x5bb415bd of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0x5bc857c6 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bdff13e dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0x5beba81d clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x5c0e2999 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x5c2fe4a5 cpdma_chan_stop +EXPORT_SYMBOL_GPL vmlinux 0x5c3c9313 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x5c42dd7e pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c632dfb input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x5c643e2f usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x5c724709 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5c744f0a crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5c9e661f raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cb0b843 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x5cc31ee1 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5cd5cec2 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x5cd73e28 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL vmlinux 0x5cecbc93 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x5cf55b15 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x5d0caaeb ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d153a7a hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0x5d2d1646 sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x5d4e7297 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5d589f92 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x5d859088 snd_soc_limit_volume +EXPORT_SYMBOL_GPL vmlinux 0x5d911453 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x5d914ffe ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x5d994936 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x5e0389d9 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5e04920d input_class +EXPORT_SYMBOL_GPL vmlinux 0x5e0496a8 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x5e10ea8c sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x5e1dd66d reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0x5e221aba spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x5e271037 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e53b2b4 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x5e7119f5 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x5e817d88 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x5eb079d9 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x5ec95927 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x5eda24d0 pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0x5ee49601 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x5efa4a8a blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x5eff8f7f led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5f1f888b dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x5f22400f power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x5f36cb29 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5f416cb0 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x5f56cce3 of_css +EXPORT_SYMBOL_GPL vmlinux 0x5f6d62db cpsw_phy_sel +EXPORT_SYMBOL_GPL vmlinux 0x5f6f30dd pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x5f834a40 blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0x5f8b13db br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x5fa924ab task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x5fce6e75 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x5fec298b page_endio +EXPORT_SYMBOL_GPL vmlinux 0x6003ad81 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x60110d94 snd_soc_put_volsw +EXPORT_SYMBOL_GPL vmlinux 0x6035b78e fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x60603d5e irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x6075d0c7 omap_tll_init +EXPORT_SYMBOL_GPL vmlinux 0x609a607e watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60b37a53 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x60bc2817 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x60cf1bc8 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL vmlinux 0x60d80633 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0x60f11a5e ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x60f52dde device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x610ff330 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x612c3cc7 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x614dafe7 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x615286cc snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL vmlinux 0x61828a42 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x6184006a __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x618df166 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0x6193778a get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x61a40dc3 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x61b17023 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x61f4fd49 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x61fe6f8e arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x61fecd86 of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x61ff3859 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x62153f50 mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x624fb1fc eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x62603c96 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6265b82d of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x627bc4fe sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0x628f1439 tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x6299e241 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x62a0d2b0 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x62b3ca3d cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL vmlinux 0x62bd384b to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x62fda225 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x6303a81b inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x6304e2de usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x63128661 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x631bec24 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x632bd050 get_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x63380096 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL vmlinux 0x633b45d2 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x635ee8a0 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x637f35c4 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL vmlinux 0x6398dd2c gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x63daf8c1 shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0x63ddf1c4 crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x63ef4e12 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x64154792 of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0x64262697 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x642ea09d get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x64348592 usb_del_gadget_udc +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x643e23a0 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x648c7ea3 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x649f0259 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x64a58b8e cci_ace_get_port +EXPORT_SYMBOL_GPL vmlinux 0x64c80ebe debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x64edceb3 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x650015d6 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x653e5617 mmput +EXPORT_SYMBOL_GPL vmlinux 0x65427d72 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x6543258d devres_get +EXPORT_SYMBOL_GPL vmlinux 0x65537437 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x655c0b96 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x655e8a4b ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x655fcb8c icst_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x657c58c9 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x65b79aa1 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65fb4796 nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x65fe0be6 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x660e64d6 crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6612597e md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x66150b1c mtd_panic_write +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x66241b3c gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x66278cd4 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x664730bd pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x665a7aa5 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6698e5f6 smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x669da1fd kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0x66b3b95c mtd_is_locked +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66cf494c fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66dec9ac set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x66e1cbb5 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x66f25737 stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x6716a75a mtd_erase +EXPORT_SYMBOL_GPL vmlinux 0x671c151d ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x671ec237 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x67246327 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x672d6cce ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy +EXPORT_SYMBOL_GPL vmlinux 0x675f90b2 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL vmlinux 0x677d9d9e __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x67836326 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67a185b0 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x67d79b06 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x67e351cf register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x6807c54a __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x681c126b __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x681c5b4e skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x683ec6ff mtd_read +EXPORT_SYMBOL_GPL vmlinux 0x6861aa4f kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0x68729cd4 nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x68ad02f7 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0x68d6b859 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x68dead90 crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0x68e47b2c cpdma_ctlr_destroy +EXPORT_SYMBOL_GPL vmlinux 0x69080880 regmap_fields_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x69085501 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x691c90e5 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x69381d5e virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0x694be42a usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0x695e7177 arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0x6961148a gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x6964b725 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x6993f45a fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x699caa17 pwm_config +EXPORT_SYMBOL_GPL vmlinux 0x69afe92b blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0x69cf103e scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x69f664fc pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x69fd877a __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a531bc7 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x6a5c92ed ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x6a5f57ef usb_add_gadget_udc +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a653bb1 rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6a6fc0f8 vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0x6a79a2f5 reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0x6a79dcab max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x6a80c38a crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x6a9382a2 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x6aaef616 ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0x6ab26f5e ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x6ab59ae3 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6abd4a45 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x6ad66267 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x6aecced8 dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x6aefca67 kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x6b03b25a mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x6b0466b2 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b41e75e uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x6b6c57dd unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x6b76df34 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x6b770f49 decode_bch +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b95e900 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x6bc68544 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x6bc78f50 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x6bc8e6eb devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6bc8ecbc ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0x6be28f0a usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x6bef476e pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x6bf09579 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x6c04ca49 regmap_update_bits_check +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c1c6038 ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x6c1e9f72 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x6c1f4475 omapdss_of_get_next_port +EXPORT_SYMBOL_GPL vmlinux 0x6c209eab __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0x6c2cb894 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x6c32ee3e component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x6c363743 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x6c41fe66 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x6c4a3773 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c64f886 __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0x6c6d3e21 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x6c6f8747 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x6c73cac2 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x6c767a57 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6c906f4e ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0x6cb37c66 ahci_platform_resume +EXPORT_SYMBOL_GPL vmlinux 0x6cc78d88 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6cd6edcc register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x6cee693a thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6cfeb98c ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x6d24f235 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d315499 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x6d424356 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x6d585dd8 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x6d5f28e4 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x6d61e45e usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x6d62ab7c kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0x6d744796 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6d8166eb snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL vmlinux 0x6d99e9f0 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x6da87fc2 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x6dce091e sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x6dd5cfc7 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x6dda2622 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x6ddc42f2 ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e102977 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL vmlinux 0x6e1801f4 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x6e2842fc snd_soc_lookup_platform +EXPORT_SYMBOL_GPL vmlinux 0x6e300482 ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0x6e31ad7d init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x6e3faea9 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x6e42b3bf dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x6e51afc8 percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x6e6e16dd __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6e78e340 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e9f25ac devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x6ec974a8 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x6f015e6b relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x6f01fce2 mount_mtd +EXPORT_SYMBOL_GPL vmlinux 0x6f046506 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x6f0d167b cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x6f12afe2 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x6f1ae0e5 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f23ed1b skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x6f26e5b7 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x6f2b03ce tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x6f318afa spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0x6f3a746e vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0x6f50d60c usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x6f5c638f kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x6f65c26c rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x6f76c1f3 blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x6f806896 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x6fbb3bd9 init_rs_non_canonical +EXPORT_SYMBOL_GPL vmlinux 0x6fd39226 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x6fde4559 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6feb94db usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ffde44b security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x702837c7 rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0x702d1a28 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x7038cf28 nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x7040b4cc device_create +EXPORT_SYMBOL_GPL vmlinux 0x704d5ab0 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x705a89c9 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x709af3b2 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x709eacdf inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70e6ecda usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x70efdd70 kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x71008581 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x7102f7df irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x71031b41 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x713510c0 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x71387211 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x714aa194 max_gen_clk_probe +EXPORT_SYMBOL_GPL vmlinux 0x714bae0b snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x714eae11 clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0x714f0ae6 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x7152bb56 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x71738a83 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71a602da devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x71a82b6e ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0x71c88aba __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x71d99d6e wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71ea38be __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x72234dd6 musb_readw +EXPORT_SYMBOL_GPL vmlinux 0x72387e4e wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7246777c led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x724b1f37 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x72515d5a snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x725ed72c spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0x725f76f0 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7274c394 __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x7291019b __cci_control_port_by_index +EXPORT_SYMBOL_GPL vmlinux 0x72ac11e0 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x72c2a689 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x72d423d1 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x72d4a115 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x730bd0c7 asic3_write_register +EXPORT_SYMBOL_GPL vmlinux 0x731dc79c class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x732a30d9 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL vmlinux 0x733da5c4 devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x7348616e snd_soc_dapm_sync +EXPORT_SYMBOL_GPL vmlinux 0x736f0508 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x73825de9 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x7397f752 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73a9649b nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x73b61628 arizona_of_get_named_gpio +EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0x73bce536 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x73c63f84 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73e1dbd8 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x73f87afe da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x742bd64c devres_release +EXPORT_SYMBOL_GPL vmlinux 0x743073cf wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x743f9192 sdhci_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x7446b9be of_get_nand_on_flash_bbt +EXPORT_SYMBOL_GPL vmlinux 0x744dd58b split_page +EXPORT_SYMBOL_GPL vmlinux 0x744fa546 cpsw_ale_dump +EXPORT_SYMBOL_GPL vmlinux 0x7463989a __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x747740b6 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x74822ae2 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x748b8ef3 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x752eac53 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL vmlinux 0x754861fa tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x75490de3 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x7559ff3e of_get_nand_ecc_step_size +EXPORT_SYMBOL_GPL vmlinux 0x755f0528 ahci_platform_ops +EXPORT_SYMBOL_GPL vmlinux 0x7573c011 of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x7592a7e0 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x75a16305 pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0x75aa97f0 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x75ca6a02 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75e0a627 nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0x75f51050 blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0x760d93d6 swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x761e0aca btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x76250380 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL vmlinux 0x762b684c tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x764928a2 cpdma_chan_create +EXPORT_SYMBOL_GPL vmlinux 0x7649c16a raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x7653e10a usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x765e6c3c desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x767e4510 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x768bf6b0 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x76a8e543 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x76bd3278 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x76bd96d1 ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76f99dd9 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x770cf981 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x770eab5e xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x7743a85e nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7780f44b ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x77840b00 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x7788b5e1 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x779c54ae debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x77a7c1d2 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x780c0b68 snd_ctl_activate_id +EXPORT_SYMBOL_GPL vmlinux 0x78373050 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x783dae95 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x783f6bce sm501_unit_power +EXPORT_SYMBOL_GPL vmlinux 0x78423bb3 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x78628a16 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0x787723ad device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x787f5b69 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x78852e17 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x78882cb5 skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0x788b74bf sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78b41990 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x78d43a11 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x79234b93 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x7924ba57 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x792f5c0e devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x793b4742 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x7941bab2 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x794612ee pl08x_filter_id +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x7952a58f gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x795598db platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7956edd2 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x79596515 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x795f99f0 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x796b0da7 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x79874af3 sdhci_pltfm_init +EXPORT_SYMBOL_GPL vmlinux 0x799bac52 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x799d2b0e sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x79c0ad8b scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x79c2ea9f powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x79c6f3f0 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x79c936f9 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x79cec19e pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x79d05632 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x79d20c0f iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79ec9da5 tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x79edd0ef vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x79f659ac __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x79f77e59 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x7a1ae419 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x7a2c9d38 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x7a3831f4 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x7a44a21d i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x7a54b53b thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x7a8e5a33 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a98add8 omap_mcbsp_st_add_controls +EXPORT_SYMBOL_GPL vmlinux 0x7aa55483 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x7aa64803 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x7ab84223 cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL vmlinux 0x7b0a9dd6 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b1586e3 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b35a20a devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0x7b444a8d inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x7b509ef8 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x7b58c1b0 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x7b6b503e regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x7b7e55d5 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x7bbd214b __sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x7be08ff3 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x7be2fe03 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x7be9afa6 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7bf0c03b event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x7bf7d2b3 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x7c20a09d skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x7c36567e clk_register +EXPORT_SYMBOL_GPL vmlinux 0x7c6a49ce unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7ca38bcd bus_register +EXPORT_SYMBOL_GPL vmlinux 0x7cabe163 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x7cae28c9 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x7cc04d4b bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cdc90af blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cebeeff ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x7cf499ce of_fixed_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d05eaa5 kvm_get_dirty_log_protect +EXPORT_SYMBOL_GPL vmlinux 0x7d06df08 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d5b578f sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x7d63e4eb of_pci_find_msi_chip_by_node +EXPORT_SYMBOL_GPL vmlinux 0x7d776e72 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x7d9750f7 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7ddcdcac ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x7de3b2db irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x7e1791f4 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x7e32df5a of_get_nand_ecc_strength +EXPORT_SYMBOL_GPL vmlinux 0x7e3f80d2 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e697b98 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7ea608ba snd_soc_write +EXPORT_SYMBOL_GPL vmlinux 0x7eb494c7 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x7ec349c6 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x7ed68941 asic3_read_register +EXPORT_SYMBOL_GPL vmlinux 0x7ee7ce5a srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x7f1ceed5 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature +EXPORT_SYMBOL_GPL vmlinux 0x7f301662 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x7f538b0e regulator_can_change_voltage +EXPORT_SYMBOL_GPL vmlinux 0x7f7609b8 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7fb41eae ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x7fbb5711 probes_decode_arm_table +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fc06493 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x7fec4ee7 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x7feebe85 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x8000b681 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x8010d2c6 percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0x803f6e24 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x804a08c7 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x805524dd gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x805e4688 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x805f8f73 omap_dm_timer_request_by_cap +EXPORT_SYMBOL_GPL vmlinux 0x8062a68c usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x80698a68 pci_ioremap_io +EXPORT_SYMBOL_GPL vmlinux 0x806f8f62 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x8084889d sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80963f16 omap_dm_timer_write_counter +EXPORT_SYMBOL_GPL vmlinux 0x80adb954 irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80cb2e7d powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x80cd9205 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80d85d5e tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x80e9d926 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x80f8589f trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x811da7fd trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x814e3943 dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x81563838 pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0x815a188d iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0x81782986 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x81812b5a bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x8189d9d3 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x819aa39a proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x81b8c849 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x81bf1d6f mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x81d58ab8 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x81dbe3bf iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x81e74571 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x81ea9167 of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x81f1f6b0 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x820010d9 ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x822ad4c7 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x8237ea80 ahci_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x8240d316 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x82482b1a dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x82502ab4 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x826224bc snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL vmlinux 0x826daec5 usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x8275b47b usb_gadget_probe_driver +EXPORT_SYMBOL_GPL vmlinux 0x82875704 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x829781da dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x82a19bcc crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x82a46076 snd_soc_register_platform +EXPORT_SYMBOL_GPL vmlinux 0x82b285fa srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82dd6e42 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x82ea0d04 cpsw_ale_destroy +EXPORT_SYMBOL_GPL vmlinux 0x82f2f7bc dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x831ccbad usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x833629d8 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x83596db1 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x8359b683 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x836d0e60 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x8394433a tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x83b19129 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x83bc9278 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x83d69b52 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x844712df perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x845bfb19 amba_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x845c9b7b pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x848bd0fb call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x84912335 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x84a358ee tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x84a44407 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x8507a367 __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x851aa409 xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x85472756 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x854be0a8 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x855387a1 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x858737ec fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x8591cb94 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL vmlinux 0x85a0e9e5 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x85b98c51 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x85c22ace adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85cc86b4 dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0x85d9fb0d power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x85efaa49 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x860c681a usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x862b9816 cpu_topology +EXPORT_SYMBOL_GPL vmlinux 0x86391ad0 sock_update_netprioidx +EXPORT_SYMBOL_GPL vmlinux 0x8652110e pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x8652aa49 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x8669cb39 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x868a6f18 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x8698aec0 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x86ccbb56 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x86d6b850 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x86dd3457 i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0x86dda770 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x86e04ca2 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x86eddeaf sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x86fd5d67 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x8717df8b __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x873227c1 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x87516917 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x876471e7 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x877cebc2 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x877e9a15 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x87a0d82c iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x87b1fdb4 napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0x87b75e2d devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x87bc32c5 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x87e8a719 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x87f32c09 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x87f895f4 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x88136838 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x884fc316 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x8861ff6a pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x88658396 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x8878fab4 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x887f9ba8 dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x88a8333d ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88b90c1b devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x88c4f765 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x88c8da9a inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x88c8fdb0 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x88df3a01 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x88f0d274 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x89074516 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x89185b2d cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x89259e28 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x89510823 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x8966da55 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x896ada08 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x89754397 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x8983de05 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x899d3f0b ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89c0fb2e of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x89efdfb6 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x8a00b1f2 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x8a1e3264 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x8a2ad9dc sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x8a46a378 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x8a54a013 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod +EXPORT_SYMBOL_GPL vmlinux 0x8a5df957 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x8a5f86ce fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x8a79195c crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x8a7b35df dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x8a8b0410 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x8a989f67 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x8a99f081 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x8a9a43f8 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8ab9759f devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ac4853a to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0x8b11c9f6 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b242dcb sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8b348d29 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8b539e6a xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x8b6717b8 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x8b775d3a __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8b89dac6 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL vmlinux 0x8ba97c6f fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x8baa6377 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x8bb3fab5 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x8bb7ec54 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x8bcbd63f trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c02471a device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c0f86b9 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x8c1e2084 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x8c3926d7 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x8c3bd530 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c66a4fe snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL vmlinux 0x8c68158f ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8ca275dc device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params +EXPORT_SYMBOL_GPL vmlinux 0x8ce0e597 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL vmlinux 0x8d01a787 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x8d027def crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x8d057149 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x8d13cd99 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d323deb power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x8d33d8a9 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x8d3cc8ce pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x8d43a7ba inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x8d4b3af4 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8d4ca0cb regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8d676a4b usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x8d91d2d9 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x8d953345 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x8da01274 kvm_get_pfn +EXPORT_SYMBOL_GPL vmlinux 0x8dbbdaf7 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x8dd527b5 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x8de4f0ac ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x8df5d0fe virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x8e0259bc alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x8e026055 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x8e1cd06f kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL vmlinux 0x8e289b82 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x8e2b25c2 videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e42e821 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x8e45d76d i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x8e4ec8cf ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8e54bf0f pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x8e6e001d pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x8e74a5d8 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x8e786fb7 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x8e7894bd __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x8ebb1911 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x8ec27e12 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x8ec54f30 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x8ee93b15 snd_soc_bytes_info +EXPORT_SYMBOL_GPL vmlinux 0x8ef5abea devm_snd_soc_register_card +EXPORT_SYMBOL_GPL vmlinux 0x8f02eaa2 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f3c7fc5 fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0x8f5c32fa snd_soc_info_volsw +EXPORT_SYMBOL_GPL vmlinux 0x8f6b2a73 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f743e59 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x8f8bd544 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x8f8f1de6 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x8f97aea4 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x8fa1196b virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x8fa139d3 arm_iommu_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8fb2a5a8 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x8fb9ecff fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x8fc5c8d5 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x8fd22de3 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x8fed7fad usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x900e5606 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x9047c11a trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x904857fa kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x904efb78 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90aa2eb8 bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x90ddff5f trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x90f711ad nand_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x9116a3e7 cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL vmlinux 0x91237fbd tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x913af2ea mtd_lock +EXPORT_SYMBOL_GPL vmlinux 0x915d65d2 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x915fe361 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x9175fe97 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x919a2ab3 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x91b77ce6 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91cfe9af sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x923ad842 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x9256e88f regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x9257667c mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x92652448 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x927b9932 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x929a2833 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL vmlinux 0x929c9744 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x92accbf3 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0x92acd03c tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x92b74098 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x92b97967 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x92c894ca kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0x92d13699 ahci_start_fis_rx +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e06ac1 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x92ea2a61 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x92f6e4b6 __ktime_divns +EXPORT_SYMBOL_GPL vmlinux 0x92fd6a34 dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x930f7ce6 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x931ebcd1 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x931f1bb3 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x93328bf5 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x934d9591 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x9396e461 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0x93cc97d1 omap_dm_timer_set_pwm +EXPORT_SYMBOL_GPL vmlinux 0x93d3b951 of_fixed_factor_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0x94077f3a cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0x941e8b8c pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x943ddbd0 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x9463ff71 init_bch +EXPORT_SYMBOL_GPL vmlinux 0x9467b19e fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x9480af77 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x948f45cc __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x949334db cpdma_ctlr_start +EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0x94c96f3b bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0x94cda151 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x94e971fd gfn_to_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0x94ec0df1 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x94fc1967 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x9503d528 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x950b7326 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x9525418d kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x952ad6f3 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x952cbef2 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x9530d080 mtd_unpoint +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x95409e33 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x9546e96d usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x955af1eb synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x955b9a41 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x9574370c thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x957b598f crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x95856a00 crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x9586a6ed cpdma_chan_get_stats +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x959121fb of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x959dda43 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x95b5133e phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x95bbb758 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95c05faf pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x95c09318 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x95d67a9e posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0x96103611 regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x9610545a nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9628378b ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x9629f0d0 cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x9648a200 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x966121c1 pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0x96765c3e ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x968608ad device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x96919667 musb_readl +EXPORT_SYMBOL_GPL vmlinux 0x96976d74 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x96b20c65 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x96b5f4d0 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x96ccd76c usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x96d68d11 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9725e8ca debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x973fb2cb __get_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x9755b8e6 of_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x975dd944 swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x976c73b5 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x978ad14d snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0x9792539d of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x97cab891 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL vmlinux 0x97cd02ed ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x97d38090 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x980b284e shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x983dd2b6 mtd_writev +EXPORT_SYMBOL_GPL vmlinux 0x984af527 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x986c4794 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x98725423 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9886241c snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x989eb047 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x989fac45 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x98b1b229 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x98c2a5c9 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x98c34c77 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x98c9f584 klist_init +EXPORT_SYMBOL_GPL vmlinux 0x98d008cd del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0x98e553d8 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x98e6f962 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x98f2c1fc tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on +EXPORT_SYMBOL_GPL vmlinux 0x991afac6 arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x9925a115 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x993ca633 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x9954b5eb skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x9973add9 __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x9985aee1 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x99a6633e devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x99b62ad0 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99cb3f61 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x99cc7229 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9a02763b usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a1a0155 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x9a45b3b5 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0x9a5c7ed7 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9aa03a62 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ac790a9 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x9acaafd7 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9aed02c8 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x9b083539 of_pci_get_host_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x9b0c6b74 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x9b0fe8e6 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x9b265d01 of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x9b567b5a of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x9b68de23 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL vmlinux 0x9bc6bc83 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bf5c3e8 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x9c049c18 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x9c23cee9 blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0x9c3e5b59 percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9c40e6ca devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x9c7eda81 omap_dm_timer_stop +EXPORT_SYMBOL_GPL vmlinux 0x9cb08184 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x9cb50617 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cc8d8f9 snd_soc_register_card +EXPORT_SYMBOL_GPL vmlinux 0x9cdc9867 cpdma_ctlr_stop +EXPORT_SYMBOL_GPL vmlinux 0x9cde581c uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x9cea55ff scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x9d37e2f6 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x9d61090d snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x9d6cc5a4 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x9d6d02e6 mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0x9d746094 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x9d804bd3 pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0x9d819260 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x9d8c621e device_add_property_set +EXPORT_SYMBOL_GPL vmlinux 0x9da8cb0d ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported +EXPORT_SYMBOL_GPL vmlinux 0x9dc92f5d __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x9df7569e l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x9e21e9e0 omap_dm_timer_set_load_start +EXPORT_SYMBOL_GPL vmlinux 0x9e359e31 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e50a4bd blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x9e9548a6 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x9e9773fe device_attach +EXPORT_SYMBOL_GPL vmlinux 0x9ea26d3c usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x9ea556f8 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ed89b5e snd_soc_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x9ed9b9a2 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x9efcff9a wm8400_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x9efd149c omap_iommu_restore_ctx +EXPORT_SYMBOL_GPL vmlinux 0x9f1860f7 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x9f1dee2d device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x9f279b7b usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x9f2d173e pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x9f33b1a5 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x9f59710c regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x9f632021 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x9f63551a srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x9f689e3a percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x9fa5702d usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fdbd225 tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9ff9a494 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xa013a9cf init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xa01d1b6d cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa0254981 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0xa033df40 clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xa0412968 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0xa071e884 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0xa085308f regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0xa094335c crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0xa0ac1f72 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xa10001ac mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xa10250b0 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xa10f0ac6 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0xa11343e1 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xa113fb0b scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xa11e5ce8 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xa1229bfd clk_debugfs_add_file +EXPORT_SYMBOL_GPL vmlinux 0xa13a63e6 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0xa13cc55d crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0xa1494036 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xa14a1817 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xa1583c5f rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xa176efde regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa1850546 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa1910530 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa19a6183 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0xa1eb60d4 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa202c6d3 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xa21e3e03 nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0xa21f3717 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL vmlinux 0xa223f7ce sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0xa259f68e dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0xa263ebb3 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xa2649e08 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2816e45 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL vmlinux 0xa2a44228 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa2afcabc modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xa2b9c993 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2c53804 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0xa2e195bc power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0xa2e5a4d0 omap_dm_timer_request_by_node +EXPORT_SYMBOL_GPL vmlinux 0xa34b44a8 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL vmlinux 0xa3668745 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xa37b82aa snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL vmlinux 0xa37d2cd0 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa38d1433 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xa3998283 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa39afc7f tpm2_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a9d9ec md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0xa3b5e7b7 dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3c1d0aa snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL vmlinux 0xa3cc7120 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0xa3d1189e pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa3f3fbf0 component_del +EXPORT_SYMBOL_GPL vmlinux 0xa41b7f07 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xa42b8f40 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xa42d2076 dev_pm_opp_get_suspend_opp +EXPORT_SYMBOL_GPL vmlinux 0xa44142fc snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL vmlinux 0xa446db31 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xa44807db device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xa44890ee devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xa45a9bf4 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xa45d0ee5 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0xa45f337d tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa464e531 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xa472a6da sm501_find_clock +EXPORT_SYMBOL_GPL vmlinux 0xa4744dba usb_gadget_giveback_request +EXPORT_SYMBOL_GPL vmlinux 0xa47f8d3d skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa4a0c327 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0xa4a7a275 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL vmlinux 0xa4ac4466 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0xa4ad5202 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xa4cfd910 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0xa53f0efa scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0xa53fe33a pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0xa541d38d mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xa55ba337 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0xa55e3752 snd_soc_get_strobe +EXPORT_SYMBOL_GPL vmlinux 0xa566a2fe locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xa58d6fb4 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xa5a2101f sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0xa5a2849f powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0xa5b40d84 sdhci_free_host +EXPORT_SYMBOL_GPL vmlinux 0xa5bf138b regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa5bf506f snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL vmlinux 0xa5ceb825 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0xa5dc1842 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa5e74c89 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5f8854a usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xa60848e1 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0xa6175d12 single_release_net +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa64f77df sdhci_remove_host +EXPORT_SYMBOL_GPL vmlinux 0xa65e006b kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0xa6704089 iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0xa69cd78a snd_soc_bytes_put +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6c84890 omap_dma_filter_fn +EXPORT_SYMBOL_GPL vmlinux 0xa6cfcc36 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xa6d1b1c4 skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa74f5c82 kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0xa75f50ea pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xa766f1ed get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xa7744664 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0xa78746a6 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL vmlinux 0xa79b9bed tpm2_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xa79ba01a sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xa7d8ea75 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa862187e pwm_set_polarity +EXPORT_SYMBOL_GPL vmlinux 0xa871165c tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0xa87f3899 ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0xa87f8da7 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xa88fbfc3 __sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0xa8a8ced9 unregister_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8b8cac9 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0xa8bc717e percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0xa8c0ace3 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0xa8d48b09 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xa8e98132 btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0xa8f38fb0 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL vmlinux 0xa90cfa6c snd_ac97_reset +EXPORT_SYMBOL_GPL vmlinux 0xa916e0fc gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xa91db3af arm_iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa940e21e kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0xa942ddbb regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0xa952216d pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xa96071ad __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xa9614c12 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xa975073c irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xa976bce4 led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0xa9848267 pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xa992c0c4 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0xa99ca729 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xa99f67f3 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xa9a52cc8 pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0xa9aef2e1 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL vmlinux 0xa9b5e4f4 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xa9ba8b05 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xa9c66cbd device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xa9d17476 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xa9e05660 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9e59bf7 register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xa9edffba pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0xa9fe0a3b spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0xaa12e74f netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xaa23f3d7 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0xaa2e1dec reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xaa3ce204 clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0xaa44acff omap_tll_disable +EXPORT_SYMBOL_GPL vmlinux 0xaa66420a cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xaa91aab2 pin_is_valid +EXPORT_SYMBOL_GPL vmlinux 0xaa9bb7cb pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaaba3b70 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xaabcd229 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xaaf1fa0e tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xab1d8a75 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xab22bc67 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xab47cccc ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab79d015 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL vmlinux 0xab945a16 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xaba66f3e sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xabaab7a5 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xabc14080 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabda1e2e decode_rs16 +EXPORT_SYMBOL_GPL vmlinux 0xabfac7ba get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0xac16e6de pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0xac1c9abd usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0xac2e707c usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0xac50260d lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0xac5f3d70 musb_readb +EXPORT_SYMBOL_GPL vmlinux 0xac65cf24 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xac6b7401 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0xac95c9e1 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xacb7401c ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xacc38865 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xacd2990d register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xacd4ea59 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xace587c0 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xaceb9d99 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0xacf76395 rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0xacf79fda tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0xad0fa875 percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0xad432a70 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xad782c36 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0xad85f611 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0xad89bcbd yield_to +EXPORT_SYMBOL_GPL vmlinux 0xad921e62 cpsw_ale_control_set +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xadcf2168 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xade3bac6 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xae15722b kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae81922b of_overlay_destroy_all +EXPORT_SYMBOL_GPL vmlinux 0xae9f9d59 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xaebb0cc5 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0xaed7f220 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xaee6ebd3 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xaee9fdcc snd_soc_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xaeec4b36 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xaf1127fc securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xaf12bfb3 tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0xaf26c614 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xaf36393a regmap_field_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xafa5e154 bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0xafd4d257 __of_genpd_add_provider +EXPORT_SYMBOL_GPL vmlinux 0xb010600a perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xb0128a78 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xb0268218 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xb03d6c85 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xb04d1f7b perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xb050f329 init_rs +EXPORT_SYMBOL_GPL vmlinux 0xb05623d0 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xb063fe9d wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb09fbd63 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0xb0b15e93 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0bce4f0 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xb0c3fb1b devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xb0f8b4f0 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xb11625b9 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xb125af82 amba_device_add +EXPORT_SYMBOL_GPL vmlinux 0xb125ceb2 cpdma_control_set +EXPORT_SYMBOL_GPL vmlinux 0xb135f540 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb156befc pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xb16c27db snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL vmlinux 0xb174056a gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb1aaa22d inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1b17705 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1e70a5c irq_find_matching_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xb1eb8765 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xb2018331 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0xb219a1c0 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xb21b0b0c usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb23541f5 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xb2587d32 snd_soc_register_codec +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb27c3b31 usb_gadget_map_request +EXPORT_SYMBOL_GPL vmlinux 0xb27ea468 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb2a220e6 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0xb2a758c2 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xb2d00094 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2f42a32 dma_request_slave_channel_reason +EXPORT_SYMBOL_GPL vmlinux 0xb310e837 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xb31ca89b __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb34e20d9 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0xb3550aff sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL vmlinux 0xb393c8a7 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xb3b7bfe3 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xb3c08c60 vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0xb3d62424 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xb3d6c871 wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0xb3ea8d95 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xb3f98119 mtd_point +EXPORT_SYMBOL_GPL vmlinux 0xb40c6376 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xb412130b ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0xb4147cdd usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xb41a3f00 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xb43ce764 wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0xb450031d ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xb4591fb6 mtd_del_partition +EXPORT_SYMBOL_GPL vmlinux 0xb46b2987 sm501_modify_reg +EXPORT_SYMBOL_GPL vmlinux 0xb490a243 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xb490ced3 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4bbcb5a handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xb4c8e8e1 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xb4cf0322 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb5013de7 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb5206099 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL vmlinux 0xb523ab41 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xb53497b6 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb53b2a82 percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0xb54c8439 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xb5542879 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xb55c1dd6 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xb5801c06 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0xb589c641 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5a3c45c dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0xb5cba789 inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0xb5d0139c rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xb5e31551 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb5e896fb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xb5e95f9e tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xb5ef9d83 platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb5ff475a extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xb6023246 fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb608e93c mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xb60a753a fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xb61d29e2 ahci_shost_attrs +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb62e5cd3 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xb65dc440 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xb66de615 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xb69a2f5d blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6c2558e disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0xb6d6649e sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6e75a5c cpsw_ale_create +EXPORT_SYMBOL_GPL vmlinux 0xb7055e97 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb74ae7ca relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xb74bfae0 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xb771e6b7 bL_switch_request_cb +EXPORT_SYMBOL_GPL vmlinux 0xb77cb0a8 cpdma_chan_submit +EXPORT_SYMBOL_GPL vmlinux 0xb7b32ddc snd_soc_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xb7b9ae1c mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb7d3cd09 omap_dm_timer_set_load +EXPORT_SYMBOL_GPL vmlinux 0xb7e07fd6 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xb7e56f14 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xb7f492ae regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb80b06f4 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb8172903 __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xb82566eb omap_tll_enable +EXPORT_SYMBOL_GPL vmlinux 0xb8346aeb percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb84837fb snd_card_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0xb84a29ab pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xb85e51b4 mtd_read_oob +EXPORT_SYMBOL_GPL vmlinux 0xb882411f of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb899fc1a mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0xb89c5530 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xb8a863db device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xb8b56731 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8d4cd93 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xb8dee1ff crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0xb91b3462 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xb91c2cb7 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xb92427b4 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xb92f0f6c cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xb935064c snd_soc_component_write +EXPORT_SYMBOL_GPL vmlinux 0xb944f4e8 rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0xb979cb4d device_show_int +EXPORT_SYMBOL_GPL vmlinux 0xb98024f9 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xb9901c2a ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xb992a03d of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0xb9b08ab8 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb9b205c0 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9d1b0fc extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb9e07125 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0xb9e87b94 bL_switcher_trace_trigger +EXPORT_SYMBOL_GPL vmlinux 0xb9e892af ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0xb9f878c6 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xba10a67a fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xba270396 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba435884 cpsw_ale_stop +EXPORT_SYMBOL_GPL vmlinux 0xba5b46ec fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xba5bd06a phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0xba649819 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xba853cb9 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xba86201a wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xba8929ea percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xba8bda67 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xba8d9ed3 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbac3f72c tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xbad2a6df debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xbad678b2 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xbaebf82e ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0xbaff7fe9 ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb05e839 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb11cfba klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xbb33ba91 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xbb387bae snd_soc_jack_report +EXPORT_SYMBOL_GPL vmlinux 0xbb4c7570 pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xbb5513c0 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xbb64e522 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbb68cfb8 blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0xbb84afc9 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xbb90b621 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0xbb9e2ab5 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xbbaa4e44 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0xbbbaa6fc of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xbbf6d63e kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0xbc5d1eb9 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc8725f1 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xbca3fa6d mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0xbca43149 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xbca9cd07 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcbaa80a __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0xbccbe19b fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0xbccdbeff ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcd56429 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0xbcdc8547 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xbcdd028f omap_dm_timer_request +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbcdd9469 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xbce52ede spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0xbcf89ab6 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0xbcfa50c2 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xbcfad33f regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xbd140c38 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xbd3cdd03 blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd583e90 of_get_dma_window +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd78e280 device_remove_property_set +EXPORT_SYMBOL_GPL vmlinux 0xbd7fd389 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0xbd911332 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xbd91ce3d sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xbdbf05c7 amba_apb_device_add +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbdd3eabe kill_mtd_super +EXPORT_SYMBOL_GPL vmlinux 0xbddfefb5 tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xbde11233 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0xbdf512de free_bch +EXPORT_SYMBOL_GPL vmlinux 0xbe09005e wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe1a57dc add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0xbe1c84c9 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0xbe24d426 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0xbe320c21 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xbe476d92 dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xbe615e19 omap_dm_timer_set_prescaler +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe6fbbf6 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbea27261 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbeaf81a9 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0xbeb7987b ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0xbeca98ba trace_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xbed929eb dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf19ed46 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbf2d580e platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xbf2e0a92 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0xbf6d26e5 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xbf778375 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xbf7eca8f ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0xbf92effa regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0xbfa869dd serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0xbfb6fd39 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0xbfbb18b7 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfbcddf8 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbfbfe791 __of_genpd_xlate_simple +EXPORT_SYMBOL_GPL vmlinux 0xbfd7215e unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xbfd8faaf edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0xbfde3dea md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 +EXPORT_SYMBOL_GPL vmlinux 0xc00257bd da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xc023df49 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xc03a654b memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0xc046ef3d device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xc065258a irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0xc081c246 bL_switcher_put_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0b48bfe tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0d5f6e6 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0xc0e75cec visitor128 +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc112859c ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0xc150d2c2 nl_table +EXPORT_SYMBOL_GPL vmlinux 0xc16524e6 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc18578ed process_srcu +EXPORT_SYMBOL_GPL vmlinux 0xc18725ff devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xc1947351 of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0xc1a18615 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xc1bced6a cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xc1fe562b tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xc21604ae gov_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xc219c80d __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xc21b3cca devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc2294873 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc23487f5 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0xc23b25c6 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xc2406601 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xc240d761 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0xc257f3e2 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0xc25e6e7c pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xc26d8eb7 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xc27de1e3 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc2a1442a usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0xc2a96179 raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0xc2e01cb2 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc2e728dc ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xc2f07df8 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc3059d66 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xc32e7129 of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0xc32f81f6 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc37cbb8a virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xc385cb58 perf_num_counters +EXPORT_SYMBOL_GPL vmlinux 0xc39c1d29 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0xc3aa5319 put_pid +EXPORT_SYMBOL_GPL vmlinux 0xc3b93bba klist_next +EXPORT_SYMBOL_GPL vmlinux 0xc3c3dbf4 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0xc3c5d1e9 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xc3c7744f fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xc3d3739e wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0xc3f9ea78 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xc41e0178 btree_last +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc4461945 ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xc44d83af scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc45dd2db md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xc467c184 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0xc46a7fbe spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc48a6873 omap_dm_timer_read_status +EXPORT_SYMBOL_GPL vmlinux 0xc48aa3cb user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc48c532b omap_dm_timer_set_match +EXPORT_SYMBOL_GPL vmlinux 0xc48c9182 dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0xc4a527c0 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0xc4a8210f shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0xc4ad840e nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xc4b9e053 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc4e000a0 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc50a0ff8 __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0xc50d18a7 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0xc51eff2f device_property_present +EXPORT_SYMBOL_GPL vmlinux 0xc530cfcd crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc54d3084 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xc54d8fa7 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xc5546615 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc57b4a09 snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL vmlinux 0xc5d5513e cpdma_chan_process +EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xc5df159a exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0xc5e0dd66 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0xc6053efe trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc645eca6 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xc649229a clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc66e0ff6 kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0xc685c037 cpdma_check_free_tx_desc +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6aae9e0 put_device +EXPORT_SYMBOL_GPL vmlinux 0xc6fcb357 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xc7083873 thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0xc71b47da bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xc724f66d usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc7327676 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a90f09 virtqueue_get_avail +EXPORT_SYMBOL_GPL vmlinux 0xc7b8893b bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xc7ba9ebc regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xc7c47aff ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer +EXPORT_SYMBOL_GPL vmlinux 0xc7ceb5db ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc7dc672c omap_dm_timer_enable +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7e3efff fat_scan +EXPORT_SYMBOL_GPL vmlinux 0xc7f4fe40 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xc80e5c36 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL vmlinux 0xc829441f proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0xc834ddc5 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xc85416b7 omap_dm_timer_set_source +EXPORT_SYMBOL_GPL vmlinux 0xc85a1bf2 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc8689204 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0xc86de894 tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xc86f9ab0 ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc87e2d7a sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xc8945fac pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0xc897bfb6 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0xc89d5018 __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0xc8a31a43 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8bef166 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc8e9db4d stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0xc90165c7 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc922033a preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xc930f958 snd_soc_unregister_card +EXPORT_SYMBOL_GPL vmlinux 0xc940c95d ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0xc95385ff netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc968081e __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0xc968e7df regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xc96ec70f irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level +EXPORT_SYMBOL_GPL vmlinux 0xc9c8c56f blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xc9d8c016 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9ee5940 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xc9fa3f58 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0xca01dd90 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0xca3a1c4a snd_soc_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xca3aaab7 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xca3ff747 ahci_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xca4251f4 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xca4d0efc irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0xca4e7b39 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca911293 pm_genpd_syscore_poweron +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcabe1081 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xcac86bf8 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xcad19a56 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xcad8d717 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0xcadf0be6 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0xcaf9f9dd clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xcb038bce fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0xcb067787 bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0xcb0d3f53 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xcb0eced6 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb200ecb evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xcb24c99b inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xcb32cb36 musb_writeb +EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xcb4986a7 wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0xcb4b3fd6 pwm_disable +EXPORT_SYMBOL_GPL vmlinux 0xcb5759dc gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xcb5b7c9a eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0xcb70ff46 rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xcb7461c8 snd_soc_platform_write +EXPORT_SYMBOL_GPL vmlinux 0xcb814533 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xcb83c974 skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0xcb8618ee gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0xcb94685a snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL vmlinux 0xcba1f2fd trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xcba49d42 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcbcddf13 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbe9603f crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcc061537 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xcc1417d7 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0xcc53eb3f wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xcc613595 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0xcc82e4a8 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcc871f90 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0xcc8cdc86 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc8d50f3 tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xccaefbba regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xccb5155d bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xccc6f1ae snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL vmlinux 0xcccdcc7c of_irq_parse_pci +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xcce1aeba pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0xccfbc767 device_move +EXPORT_SYMBOL_GPL vmlinux 0xcd0d8a9d pwm_enable +EXPORT_SYMBOL_GPL vmlinux 0xcd16b8ca __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xcd3ab50d __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xcd40b387 nand_release +EXPORT_SYMBOL_GPL vmlinux 0xcd59aac6 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcd5c7b16 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0xcd6ccfc5 kick_process +EXPORT_SYMBOL_GPL vmlinux 0xcd794991 phy_init +EXPORT_SYMBOL_GPL vmlinux 0xcd86a50a max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xcd914475 blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdd062e2 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0xcdd6a479 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xce03c971 cpsw_ale_start +EXPORT_SYMBOL_GPL vmlinux 0xce494af5 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xce5b4c04 sdhci_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce7d98cf gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xce85e107 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0xce8d067c tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0xce9a0411 fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0xcebb5c95 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xcebd0bbb ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xcec912b8 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcef828da sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xcf1a293a devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf588477 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0xcf5b9428 call_filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0xcf83de47 uniphier_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0xcf83e5e9 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL vmlinux 0xcf877821 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xcf8c2049 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xcf8f8d56 cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xcf9b6ea7 snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL vmlinux 0xcfa773ab of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xcfa8e0f8 device_del +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfb93e43 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xcfc2e7ac pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfeaea50 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0xd007354b kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0xd017c545 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd035e5c7 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd0407173 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0xd04c6451 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xd059e227 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xd05cf2ac regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xd061e893 of_pci_msi_chip_add +EXPORT_SYMBOL_GPL vmlinux 0xd064cb8a tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd0950c12 xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0xd0bb83a3 genlmsg_new_unicast +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0c1c8c5 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xd0c25f7c regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0xd0e8171e inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xd0e9e803 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd0f405b9 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0xd124c7e9 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0xd133efbb pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xd1441e17 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xd149a813 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd1822f0b cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd19d4555 mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xd1b3cce4 swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0xd1b6ece5 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xd1c37f5d sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0xd1c72d28 regmap_field_write +EXPORT_SYMBOL_GPL vmlinux 0xd1cef649 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0xd1d2f0d8 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL vmlinux 0xd1e2c607 phy_put +EXPORT_SYMBOL_GPL vmlinux 0xd1f0a011 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd1fa7afe default_iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd2127537 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0xd217783c vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd21ca8b7 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xd2411ead extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0xd24bfcff hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd256b927 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd27c742b event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0xd282c713 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xd28fea2e ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xd2953997 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xd29686d1 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xd29efe6a tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xd2a2622d list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xd2aaeb4e kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xd2c6e419 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0xd2de7533 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0xd2f0c29d of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0xd2ff7716 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xd30503c5 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0xd311bc48 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed +EXPORT_SYMBOL_GPL vmlinux 0xd340ddba devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xd34e441f kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0xd3566893 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd387cb85 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xd3ae207e blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xd3b5ad48 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0xd3c0be7e of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0xd3c495ab sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xd3d36cff securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xd3d9bc2b bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xd3e2b392 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xd3e97c21 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd401336e cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd437825d skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xd4434a5b ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0xd445095f bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd44c2f38 cci_disable_port_by_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd44c3437 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xd45d042c of_get_nand_ecc_mode +EXPORT_SYMBOL_GPL vmlinux 0xd46032a5 devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xd46e190a crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xd475d8d9 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xd4a1c11d irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xd4b5bd89 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4fbe793 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd503034e device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xd51068bf get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0xd51bdb5d max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0xd52739c2 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0xd53da4e3 omap_dm_timers_active +EXPORT_SYMBOL_GPL vmlinux 0xd54dd6dd led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xd55239c9 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd57f2089 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0xd58048a1 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xd581fe7b device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xd58eff13 snd_soc_put_strobe +EXPORT_SYMBOL_GPL vmlinux 0xd5ba07de ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0xd5bbcf30 bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5e1ef29 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xd5e57170 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xd5ec2eca devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xd604f626 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd60e11ed __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0xd6144af4 vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0xd6155386 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xd618a852 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xd6349f83 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0xd635534d user_preparse +EXPORT_SYMBOL_GPL vmlinux 0xd6365277 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0xd63bb40c devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xd64a01eb sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0xd667e3f3 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd67bd08a serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0xd6a2502e sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xd6a31eb3 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL vmlinux 0xd6c43478 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xd6c62732 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0xd6f00226 fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0xd6facf3d dev_pm_opp_get_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd7017acb debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd70c078a of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0xd720c14d inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0xd7479ef6 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd7a656d9 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7d9349e driver_find +EXPORT_SYMBOL_GPL vmlinux 0xd7de057e vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xd7fe068b PageHuge +EXPORT_SYMBOL_GPL vmlinux 0xd80baa48 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd81edc72 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd847506b sdhci_pltfm_resume +EXPORT_SYMBOL_GPL vmlinux 0xd84bcdae device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd87ad5f3 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd8804af3 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0xd894b63f usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0xd8c3176c devres_find +EXPORT_SYMBOL_GPL vmlinux 0xd8d79a3e usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xd8e1fac0 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL vmlinux 0xd8e58dad rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd8e8cfcf usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xd915705e blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xd91fd425 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xd92c9238 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd94aa457 display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0xd950b7ab blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xd961e7dd device_store_int +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd98d2c2f of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xd98f3ce6 devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd9d8844e ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0xd9eb3c27 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xda01e309 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda20e817 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xda21a301 sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xda2dc391 snd_soc_get_volsw +EXPORT_SYMBOL_GPL vmlinux 0xda3b8720 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xda41bc1d virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0xda5d47e6 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xda6e307b ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xda74489c policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0xda7a0ee4 nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xda876191 devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xdab01f27 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xdae715e0 videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdb02608b arizona_of_get_type +EXPORT_SYMBOL_GPL vmlinux 0xdb088cb1 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xdb246a69 rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xdb28e635 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0xdb3c0794 put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb450dd0 ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0xdb4b6827 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xdb52fe2c platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xdb7eb226 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb905e9a device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xdba45f74 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xdbbb95eb pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xdbdcb406 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0xdbe1d36c platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbf87ad5 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xdbfd1530 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xdc096147 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xdc2a4bf3 mv_mbus_dram_info +EXPORT_SYMBOL_GPL vmlinux 0xdc2f7466 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL vmlinux 0xdc3c4572 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xdc461430 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xdc465fe4 of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0xdc638675 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0xdc66e002 of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc98469f crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdca1eb5b ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0xdcb9d444 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xdcc61a32 arm_iommu_release_mapping +EXPORT_SYMBOL_GPL vmlinux 0xdccdb96e of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xdcfc54d5 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xdd2ed92b console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd3dd6e3 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0xdd3fa664 omap_dm_timer_disable +EXPORT_SYMBOL_GPL vmlinux 0xdd45519f rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xdd512356 phy_create +EXPORT_SYMBOL_GPL vmlinux 0xdd56bc32 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xdd7f2bc0 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0xdd9e1851 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0xdda258bf devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xddd6a7be devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xddeb75c9 pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xddf74095 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0xde0c42cc tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xde5581b1 uniphier_pinctrl_remove +EXPORT_SYMBOL_GPL vmlinux 0xde651f98 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xde6b2eaa ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xde7c90c9 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0xde7f57cf list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xde8e8a2b regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xde93b2e7 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xdead0467 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xdec6b5c3 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xdec85c45 gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0xdedb8bbb pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xdee8902f irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf130b2c usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0xdf255dcf memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf2691d8 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0xdf26ef83 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0xdf27859d of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xdf4408e4 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0xdf5c2ba5 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0xdf784580 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xdf8eecc5 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xdfaf8f60 sdhci_set_bus_width +EXPORT_SYMBOL_GPL vmlinux 0xdfba4ac8 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0xdfc192fd virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0xdfcb15cd usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe00967f8 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe0382e83 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xe04fb8bd tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xe0572f5a attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xe0686c6b pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xe0697ca7 rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0xe06e4157 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe07ca631 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xe08629ca pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0xe09a7594 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0b61344 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0xe0c17bc0 list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0xe0dea1e0 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xe0f835a0 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xe11e7e45 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0xe120420d simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xe12a42f3 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0xe133d4bc dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xe13861d0 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0xe13ff46a rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe181a4a5 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL vmlinux 0xe181acb9 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe185f442 sdhci_pltfm_register +EXPORT_SYMBOL_GPL vmlinux 0xe19068e6 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xe191c839 thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe1b9229d ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe1d14ed4 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xe213d43a list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xe22e899a __cci_control_port_by_device +EXPORT_SYMBOL_GPL vmlinux 0xe237376d usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xe243d8b1 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xe274b9a9 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xe27eb2f6 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xe28310b7 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe28f2ad6 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xe29d258d mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0xe2bd80b3 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0xe2bfd86b gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xe2c7699c of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xe2fcb581 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xe3022d52 omap_dm_timer_write_status +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe323c9f2 blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xe32bb240 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0xe33a6b62 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xe3b0db37 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xe3b2d20f scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3b39812 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xe3ba92ef wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0xe3ca227d devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xe3de070a usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL vmlinux 0xe3e4da2e ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xe3f953b1 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0xe41a15d0 irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0xe42e1f70 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe442a7d1 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0xe4617126 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe4791bf0 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0xe4877957 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0xe493fa7f virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4a39b6b uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0xe4c22565 cpdma_chan_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0xe4c9cb05 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xe4d060bd ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xe4deba56 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0xe4e46d40 devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0xe4f74b5c snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL vmlinux 0xe504be21 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xe50d3447 arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xe5250950 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0xe53b94d8 max_gen_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0xe55625cb clk_gpio_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xe5592568 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xe5596441 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xe55e360b tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe5627b23 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xe569941c virtqueue_get_used +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58e8916 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe5a888cb sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xe5c80981 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL vmlinux 0xe5db8edd netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xe60d151b tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xe6100ac4 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL vmlinux 0xe626e432 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0xe63f151f get_mtd_device_nm +EXPORT_SYMBOL_GPL vmlinux 0xe645075d __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0xe64cd8ef sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe65a86be use_mm +EXPORT_SYMBOL_GPL vmlinux 0xe667168f stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xe66b5945 clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xe69e189c ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0xe6b5ec2d snd_soc_cnew +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6cc1e74 nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xe7397ca5 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0xe73de9fe ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0xe740a22a sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xe7437ad1 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe75b75de ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0xe75f1a29 pinctrl_utils_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe79337a6 of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0xe7eea48c __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xe7ff3efe mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe81596b0 usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe818cd83 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xe81c47f7 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xe82e35d8 snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL vmlinux 0xe84a458a ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe878dae7 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0xe87b60ff apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xe87f00a6 blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0xe880d33e unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xe896c4e4 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0xe89703b1 omap_dm_timer_trigger +EXPORT_SYMBOL_GPL vmlinux 0xe8b78b8c register_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0xe8e13e7e crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xe8e60f73 inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0xe8fe7f15 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xe90a3783 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0xe90f64b4 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xe91063ca ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0xe91b1ae1 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xe933a279 blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0xe93d84ba crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9452187 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL vmlinux 0xe949b13a power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xe94fde82 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe95ab720 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xe9640d94 __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe98fb73f usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xe996301b bpf_prog_realloc +EXPORT_SYMBOL_GPL vmlinux 0xe99740e9 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0xe997a768 btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0xe998ae50 mtd_block_isbad +EXPORT_SYMBOL_GPL vmlinux 0xe9af4fde snd_soc_add_platform +EXPORT_SYMBOL_GPL vmlinux 0xe9bb4b7e mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xe9c4a81d snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9d8efb9 register_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0xe9dc21e8 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xe9dd66b4 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0xe9e0beb3 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xea123e56 msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea1bb291 bL_switcher_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0xea1f6e0e hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xea2d4733 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL vmlinux 0xea7703e7 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xeaa0e926 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeaacba9c pwm_free +EXPORT_SYMBOL_GPL vmlinux 0xeabfa07c of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0xead07813 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0xeae17cfe kvm_clear_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xeaf7f139 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xeb3ead0e tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0xeb431f22 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xeb4422a1 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0xeb442a1c pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xeb6d1d21 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL vmlinux 0xeb793ee6 of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xeb9940ba sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xeb9c3e60 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xebb3592b snmp_get_cpu_field64 +EXPORT_SYMBOL_GPL vmlinux 0xebb7e578 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0xebbe1622 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xebc7594f irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0xebcd590f gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0xebe58a6a xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xebf752d5 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xec06bda5 omap_dm_timer_set_int_disable +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec6434eb kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0xec6fa80d cpdma_ctlr_create +EXPORT_SYMBOL_GPL vmlinux 0xec9ed46d blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xeca44a19 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0xecb4f35d ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xecc5ad2f alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0xecf26f64 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xecfd8761 usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xed24fae9 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0xed6a6663 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0xed6b8404 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xed70521d sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xed94b994 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0xed9b6872 snd_soc_register_component +EXPORT_SYMBOL_GPL vmlinux 0xedaf4d69 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0xedb57133 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xedbbfb0e add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0xedc2e9bb usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xedc82769 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL vmlinux 0xedd69113 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL vmlinux 0xedd887bc fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xede8d84d thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0xee04ccb2 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0xee0b89e4 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xee13b3c1 snd_soc_unregister_component +EXPORT_SYMBOL_GPL vmlinux 0xee18a349 phy_get +EXPORT_SYMBOL_GPL vmlinux 0xee1d9e16 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xee2300d5 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xee3a0a34 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xee59b8c3 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee70d159 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xee7b94e5 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xee8d7539 cpdma_chan_start +EXPORT_SYMBOL_GPL vmlinux 0xeea3d22d usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xeea8a81a spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0xeeb0a12a __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xeeb93ecb platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xeed7903a mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL vmlinux 0xeef61eb6 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xef006b24 rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0xef01d994 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xef0a54cd snd_soc_card_jack_new +EXPORT_SYMBOL_GPL vmlinux 0xef35ff85 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xef409b74 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0xef423bda kvm_get_dirty_log +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef54604e crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0xef5f470e tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xef66075c usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef847621 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xef9f4b34 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefd8492d kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xefe4d669 gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0xeff0ebad __nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xeff3dc1e ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0xf0230abf devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf06026e5 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf0696d9a dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xf070759d da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf08f639b ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0xf0926e47 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xf09c1a33 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xf0a17ca0 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0xf0aa4474 __of_genpd_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xf0c598f0 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xf0d67586 regmap_fields_force_write +EXPORT_SYMBOL_GPL vmlinux 0xf0f12782 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf108c18c inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xf11a77c2 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xf11db8a2 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xf12caf22 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xf139941f __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xf13cafce iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xf145eadc of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0xf1564d47 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xf175e6c2 kvm_vcpu_uninit +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf19a6109 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0xf19d955e udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1b7ac6f nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xf1c05702 nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xf1c15305 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xf1f16c9e unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0xf1ff8b38 arm_iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xf2137b52 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf22448ae debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xf22899c3 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xf22a3450 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xf22d7278 user_update +EXPORT_SYMBOL_GPL vmlinux 0xf2524e83 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xf25ae4ce thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xf25e51b0 regmap_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0xf2655000 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf28297ac xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0xf2a0b4fe pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xf2a59ca8 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2b2b62e blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xf2e6e726 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xf2e813bf __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf30a888f __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xf30fda27 lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf31801b0 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf3207246 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf341f04b omap_dm_timer_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xf34df19d debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf3a2cf25 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xf3a5875b usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0xf3a5f6df wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3baedec inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xf3bdf6f6 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0xf3c17d55 devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0xf3c3d282 of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf40b4ba1 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0xf42ac688 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xf438f8a0 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xf4469c9d regmap_write_bits +EXPORT_SYMBOL_GPL vmlinux 0xf467ec23 usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xf474f1da pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0xf489a6f8 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xf48ceebd net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf49195e4 sdhci_reset +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4bc2fc8 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xf4f104be input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0xf4f1ba6f register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf50dc832 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xf5289fe6 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0xf549375c snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf54bf307 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf56ac2cc pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xf579a4d3 sdhci_send_command +EXPORT_SYMBOL_GPL vmlinux 0xf58c43ce ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5ac3ec7 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xf5bd65d2 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf5ddd7b4 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xf61baa65 pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf620c9bf i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0xf62af61d debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xf62bd9c6 omap_dm_timer_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xf635b2e6 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xf638ce3b pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xf63e69ff irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xf64a6156 mtd_write +EXPORT_SYMBOL_GPL vmlinux 0xf65410fb regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0xf671877d gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xf6a8d08e pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0xf6b36a2e crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xf6b7a695 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xf6bf215c trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0xf6c4df8f spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6cb6598 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xf6cc2236 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xf6dc5549 nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf7189c0d bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf72770bd nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf73de2e0 blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0xf745d446 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xf757ecfe snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0xf7591cf6 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xf76b0a59 read_current_timer +EXPORT_SYMBOL_GPL vmlinux 0xf7711938 i2c_slave_register +EXPORT_SYMBOL_GPL vmlinux 0xf785cff9 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0xf799fb6e dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0xf7a2d06e pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0xf7a5f2a9 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xf7b8aae0 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xf7bd225b blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xf7c68a2b of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0xf7d3f24f pci_fixup_irqs +EXPORT_SYMBOL_GPL vmlinux 0xf7e8aa6e class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xf80ebb65 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xf813bf93 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xf8293768 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xf82e9dd4 _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf835b3d1 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL vmlinux 0xf846506f irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf8578e4c snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL vmlinux 0xf873b247 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf885bc98 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf88d1353 smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xf897996d aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xf898eac4 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0xf8a2f0cc sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xf8a8a5c6 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0xf8bde9c5 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xf8cc0740 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xf8eabb06 of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xf8eb75ec ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf90def59 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf9384b94 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xf94406db usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf953f090 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xf9574058 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0xf965ab3a ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xf96839ad sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0xf969baa9 __put_net +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9ceb435 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xf9d47382 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xf9f14f5c rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xfa157fdd fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0xfa21d713 of_reserved_mem_device_init +EXPORT_SYMBOL_GPL vmlinux 0xfa26f622 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xfa271dd6 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0xfa274fea pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xfa413a01 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xfa9b33a1 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xfa9ca123 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xfabd676f digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0xfaee27c0 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xfaf9ad76 tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0xfb0228a6 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xfb11cf1b cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0xfb30a5a5 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0xfb3283e5 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb40174c snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL vmlinux 0xfb45dd10 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb76b910 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xfb94f014 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xfb963e16 kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0xfb9eb237 crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbdae864 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xfbdd86e0 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0xfbe09834 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc057074 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0xfc0a44f4 ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0xfc1880ce pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfc214cd3 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0xfc251c74 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xfc2f0f70 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xfc44e4c5 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xfc45aaa7 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0xfc74bdc4 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xfc7e5e85 blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0xfc95943a enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xfc9ace9d regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xfcbfc0fb crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xfccb486d __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfcd64a2b snd_soc_component_test_bits +EXPORT_SYMBOL_GPL vmlinux 0xfd1950c7 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xfd259718 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xfd36a6b5 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0xfd41c7ce btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xfd586bae sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xfd647228 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xfd66860b crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0xfd89e285 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xfd8b33e5 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xfd8be4c8 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xfd967b2c irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xfda670bd dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0xfdcae422 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xfdcc7ecd fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0xfde156f1 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xfde1a33e klist_prev +EXPORT_SYMBOL_GPL vmlinux 0xfe009c06 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0xfe56d278 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xfe635a9a snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL vmlinux 0xfe6be49a usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfea13ad6 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xfecab969 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfed887ac pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0xfed8a192 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xfedc4152 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0xfeef1e56 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff07c8c2 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff3ae651 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xff4d1eb0 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xff581e73 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xff6c1e0e of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0xff794747 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0xffaed360 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffb8f67f input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0xffe59400 blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0xffffe2ef cpsw_ale_add_vlan only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-106.129/armhf/generic-lpae.compiler +++ linux-raspi2-4.4.0/debian.master/abi/4.4.0-106.129/armhf/generic-lpae.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu/Linaro 5.4.0-6ubuntu1~16.04.5) 5.4.0 20160609 only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-106.129/armhf/generic-lpae.modules +++ linux-raspi2-4.4.0/debian.master/abi/4.4.0-106.129/armhf/generic-lpae.modules @@ -0,0 +1,4539 @@ +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_dw +8250_mid +8250_omap +8250_uniphier +8255 +8255_pci +8390 +842 +842_compress +842_decompress +88pm800 +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +DAC960 +a100u2w +a3d +a8293 +aacraid +aat2870-regulator +aat2870_bl +ab3100 +ab3100-otp +ablk_helper +acard-ahci +acecad +acenic +act200l-sir +act8865-regulator +act_bpf +act_connmark +act_csum +act_gact +act_ipt +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +act_vlan +actisys-sir +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5755 +ad5764 +ad5791 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7266 +ad7280a +ad7291 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7746 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad799x +ad8366 +ad9523 +ad9832 +ad9834 +ad_sigma_delta +adc128d818 +adcxx +addi_apci_1032 +addi_apci_1500 +addi_apci_1516 +addi_apci_1564 +addi_apci_16xx +addi_apci_2032 +addi_apci_2200 +addi_apci_3120 +addi_apci_3501 +addi_apci_3xxx +addi_watchdog +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adfs +adi +adis16060 +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16204 +adis16209 +adis16220 +adis16240 +adis16260 +adis16400 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1275 +adm8211 +adm9240 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adv7511 +adv7604 +adv7842 +adv_pci1710 +adv_pci1723 +adv_pci1724 +adv_pci_dio +advansys +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +aes-arm +aes-arm-bs +aes-arm-ce +af-rxrpc +af9013 +af9033 +af_alg +af_key +af_packet_diag +affs +afs +ah4 +ah6 +ahci +ahci_ceva +ahci_mvebu +ahci_qoriq +aic79xx +aic7xxx +aic94xx +aim_cdev +aim_network +aim_sound +aim_v4l2 +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airspy +ak8975 +al3320a +algif_aead +algif_hash +algif_rng +algif_skcipher +alim7101_wdt +altera-ci +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am35x +am53c974 +amba-pl010 +ambakmi +amc6821 +amd +amd5536udc +amd8111e +amdgpu +amplc_dio200 +amplc_dio200_common +amplc_dio200_pci +amplc_pc236 +amplc_pc236_common +amplc_pc263 +amplc_pci224 +amplc_pci230 +amplc_pci236 +amplc_pci263 +ams369fg06 +analog +anatop-regulator +ansi_cprng +anubis +aoe +apbps2 +apds9300 +apds9802als +apds990x +apds9960 +appledisplay +appletalk +appletouch +applicom +aquantia +ar1021_i2c +ar5523 +ar7part +arc-rawmode +arc-rimi +arc4 +arc_emac +arc_ps2 +arc_uart +arcmsr +arcnet +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arm_big_little +arm_big_little_dt +arm_mhu +arm_scpi +armada +arp_tables +arpt_mangle +arptable_filter +as102_fe +as3711-regulator +as3711_bl +as3722-regulator +as3935 +as5011 +asc7621 +ascot2e +asix +ast +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +ata_generic +ata_piix +atbm8830 +aten +ath +ath10k_core +ath10k_pci +ath3k +ath5k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atm +atmel +atmel-flexcom +atmel-hlcdc +atmel-hlcdc-dc +atmel_mxt_ts +atmel_pci +atmtcp +atp870u +atusb +atxp1 +aty128fb +atyfb +au0828 +au8522_common +au8522_decoder +au8522_dig +aufs +auo-pixcir-ts +auo_k1900fb +auo_k1901fb +auo_k190x +auth_rpcgss +authenc +authencesn +autofs4 +avmfritz +ax25 +ax88179_178a +ax88796 +axp20x-pek +axp20x-regulator +axp20x_usb_power +axp288_adc +axp288_charger +axp288_fuel_gauge +b1 +b1dma +b1pci +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +bL_switcher_dummy_if +bas_gigaset +batman-adv +baycom_epp +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bcm-keypad +bcm-phy-lib +bcm203x +bcm3510 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm63138_nand +bcm63xx_uart +bcm7038_wdt +bcm7xxx +bcm87xx +bcma +bcmsysport +bd6107 +bdc +bdc_pci +be2iscsi +be2net +befs +belkin_sa +berlin2-adc +bfa +bfs +bfusb +bh1750 +bh1770glc +bh1780gli +binfmt_misc +block2mtd +blocklayoutdriver +blowfish_common +blowfish_generic +bluetooth +bluetooth_6lowpan +bma150 +bma180 +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmg160_core +bmg160_i2c +bmg160_spi +bmp085 +bmp085-i2c +bmp085-spi +bmp280 +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bnxt_en_bpo +bonding +bpa10x +bpck +bpck6 +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +br2684 +br_netfilter +brcmfmac +brcmnand +brcmsmac +brcmstb_nand +brcmutil +brd +bridge +broadcom +broadsheetfb +bsd_comp +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btqca +btrfs +btrtl +btsdio +bttv +btusb +btwilink +bu21013_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c4 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +cachefiles +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +caif_usb +caif_virtio +camellia_generic +can +can-bcm +can-dev +can-gw +can-raw +cap11xx +capi +capidrv +capmode +carl9170 +carminefb +cassini +cast5_generic +cast6_generic +cast_common +catc +cb710 +cb710-mmc +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcimdas +cb_pcimdda +cc10001_adc +cc2520 +cc770 +cc770_isa +cc770_platform +cciss +ccm +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +ceph +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha20_generic +chacha20poly1305 +chaoskey +chipone_icn8318 +chnl_net +ci_hdrc +ci_hdrc_imx +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +cirrus +cirrusfb +clip +clk-cdce706 +clk-cdce925 +clk-max77686 +clk-max77802 +clk-palmas +clk-pwm +clk-qcom +clk-rk808 +clk-s2mps11 +clk-scpi +clk-si514 +clk-si5351 +clk-si570 +clk-twl6040 +clk-wm831x +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm36651 +cma3000_d0x +cma3000_d0x_i2c +cmac +cmtp +cnic +cobalt +cobra +coda +colibri-vf50-ts +com20020 +com20020-pci +com90io +com90xx +comedi +comedi_8254 +comedi_8255 +comedi_bond +comedi_parport +comedi_pci +comedi_test +comedi_usb +comm +configfs +connector-analog-tv +connector-dvi +contec_pci_dio +cordic +core +cp210x +cpia2 +cppi41 +cpu-notifier-error-inject +cramfs +crc-ccitt +crc-itu-t +crc32 +crc7 +crc8 +cros_ec +cros_ec_devs +cros_ec_i2c +cros_ec_keyb +cros_ec_spi +cryptd +crypto_user +cryptoloop +cs5345 +cs53l32a +cs89x0 +csiostor +ctr +cts +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +cx18 +cx18-alsa +cx22700 +cx22702 +cx231xx +cx231xx-alsa +cx231xx-dvb +cx2341x +cx23885 +cx24110 +cx24113 +cx24116 +cx24117 +cx24120 +cx24123 +cx25821 +cx25821-alsa +cx25840 +cx82310_eth +cx88-alsa +cx88-blackbird +cx88-dvb +cx88-vp3054-i2c +cx8800 +cx8802 +cx88xx +cxacru +cxd2099 +cxd2820r +cxd2841er +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cyclades +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da9030_battery +da9034-ts +da903x +da903x_bl +da9052-battery +da9052-hwmon +da9052-regulator +da9052_bl +da9052_onkey +da9052_tsi +da9052_wdt +da9055-hwmon +da9055-regulator +da9055_onkey +da9055_wdt +da9062-core +da9062-regulator +da9062_wdt +da9063-regulator +da9063_onkey +da9063_wdt +da9150-charger +da9150-core +da9150-fg +da9150-gpadc +da9210-regulator +da9211-regulator +dac02 +daqboard2000 +das08 +das08_isa +das08_pci +das16 +das16m1 +das1800 +das6402 +das800 +davicom +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +ddbridge +de2104x +decnet +deflate +defxx +denali +denali_dt +denali_pci +des_generic +designware_i2s +dgap +dgnc +dht11 +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dibx000_common +digi_acceleport +digicolor-usart +diskonchip +diva_idi +diva_mnt +divacapi +divadidd +divas +dl2k +dlci +dlm +dln2 +dm-bio-prison +dm-bufio +dm-cache +dm-cache-cleaner +dm-cache-mq +dm-cache-smq +dm-crypt +dm-delay +dm-era +dm-flakey +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-verity +dm-zero +dm1105 +dm9000 +dm9601 +dme1737 +dmfe +dmm32at +dmx3191d +dn_rtmsg +dnet +docg3 +docg4 +dove_thermal +dp83848 +dp83867 +drbd +drbg +drm +drm_kms_helper +drop_monitor +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds620 +dsbr100 +dscc4 +dss1_divert +dst +dst_ca +dstr +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x +dt3000 +dt3155 +dt9812 +dummy +dummy-irq +dummy_stm +dvb-as102 +dvb-bt8xx +dvb-core +dvb-pll +dvb-ttpci +dvb-ttusb-budget +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-af9035 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6007 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-rtl28xxu +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dvb_usb_v2 +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_hdmi +dw_hdmi-ahb-audio +dw_hdmi-imx +dw_hdmi-rockchip +dw_mmc +dw_mmc-exynos +dw_mmc-k3 +dw_mmc-pci +dw_mmc-pltfm +dw_mmc-rockchip +dw_wdt +dwc3 +dwc3-exynos +dwc3-omap +dwc3-pci +dwc3-qcom +dwc_eth_qos +dwmac-generic +dwmac-ipq806x +dwmac-lpc18xx +dwmac-meson +dwmac-rk +dwmac-socfpga +dwmac-sti +dwmac-sunxi +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +earth-pt1 +earth-pt3 +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ec100 +echainiv +echo +edac_core +edt-ft5x06 +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efs +egalax_ts +ehci-msm +ehci-omap +ehset +elan_i2c +elo +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_meta +em_nbyte +em_text +em_u32 +emac_arc +emac_rockchip +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +emif +empeg +ems_pci +ems_usb +emu10k1-gp +enc28j60 +enclosure +encoder-opa362 +encoder-tfp410 +encx24j600 +encx24j600-regmap +eni +enic +epat +epia +epic100 +eql +esas2r +esd_usb2 +esi-sir +esp4 +esp6 +esp_scsi +et1011c +et131x +ethoc +evbug +exofs +extcon-adc-jack +extcon-arizona +extcon-axp288 +extcon-gpio +extcon-max14577 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +exynos-gsc +exynos-rng +exynos_adc +exynosdrm +ezusb +f2fs +f71805f +f71882fg +f75375s +f81232 +fakelb +fan53555 +farsync +faulty +fb_agm1264k-fl +fb_bd663474 +fb_ddc +fb_hx8340bn +fb_hx8347d +fb_hx8353d +fb_hx8357d +fb_ili9163 +fb_ili9320 +fb_ili9325 +fb_ili9340 +fb_ili9341 +fb_ili9481 +fb_ili9486 +fb_pcd8544 +fb_ra8875 +fb_s6d02a1 +fb_s6d1121 +fb_ssd1289 +fb_ssd1306 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_sys_fops +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fbtft_device +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdp +fdp_i2c +fealnx +ff-memless +firedtv +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fit2 +fit3 +fl512 +flexcan +flexfb +fm10k +fm801-gp +fm_drv +fmc +fmc-chardev +fmc-fakedev +fmc-trivial +fmc-write-eeprom +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fpga-mgr +freevxfs +friq +frpw +fsa9480 +fscache +fsl-dcu-drm +fsl-edma +fsl_lpuart +ft6236 +ftdi-elan +ftdi_sio +ftgmac100 +ftl +ftmac100 +fujitsu_ts +g450_pll +g760a +g762 +g_acm_ms +g_audio +g_cdc +g_dbgp +g_ether +g_ffs +g_hid +g_mass_storage +g_midi +g_multi +g_ncm +g_nokia +g_printer +g_serial +g_webcam +g_zero +gadgetfs +gamecon +gameport +garmin_gps +garp +gcc-apq8084 +gcc-ipq806x +gcc-msm8660 +gcc-msm8916 +gcc-msm8960 +gcc-msm8974 +gcm +gdmtty +gdmulte +gdmwm +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +gennvm +gf128mul +gf2k +gfs2 +ghash-arm-ce +ghash-generic +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +gluebi +go7007 +go7007-loader +go7007-usb +goku_udc +goodix +gp2ap002a00f +gp2ap020a00f +gpio +gpio-74x164 +gpio-74xx-mmio +gpio-addr-flash +gpio-adnp +gpio-adp5520 +gpio-adp5588 +gpio-altera +gpio-amd8111 +gpio-arizona +gpio-beeper +gpio-charger +gpio-crystalcove +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-fan +gpio-grgpio +gpio-ir-recv +gpio-janz-ttl +gpio-kempld +gpio-lp3943 +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-mc33880 +gpio-mcp23s08 +gpio-ml-ioh +gpio-pca953x +gpio-pcf857x +gpio-rcar +gpio-rdc321x +gpio-regulator +gpio-syscon +gpio-tps65912 +gpio-ucb1400 +gpio-viperboard +gpio-vx855 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio_backlight +gpio_keys +gpio_keys_polled +gpio_mouse +gpio_tilt_polled +gpio_wdt +gr_udc +grace +grcan +gre +grip +grip_mp +gs_fpga +gs_usb +gsc_hpdi +gspca_benq +gspca_conex +gspca_cpia1 +gspca_dtcs033 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_jl2005bcd +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stk1135 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_touptek +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtco +guillemot +gunze +gxt4500 +hackrf +hamachi +hampshire +hanwang +hci +hci_uart +hci_vhci +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcdrv +hdm_dim2 +hdm_i2c +hdm_usb +hdpvr +he +hexium_gemini +hexium_orion +hfc4s8s_l1 +hfc_usb +hfcmulti +hfcpci +hfcsusb +hfs +hfsplus +hi6421-pmic-core +hi6421-regulator +hi8435 +hid +hid-a4tech +hid-alps +hid-apple +hid-appleir +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-cherry +hid-chicony +hid-corsair +hid-cp2112 +hid-cypress +hid-dr +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-icade +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-lenovo +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-primax +hid-prodikeys +hid-rmi +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-isku +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-konepure +hid-roccat-kovaplus +hid-roccat-lua +hid-roccat-pyra +hid-roccat-ryos +hid-roccat-savu +hid-saitek +hid-samsung +hid-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steelseries +hid-sunplus +hid-thingm +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hidp +highbank-cpufreq +highbank_l2_edac +highbank_mc_edac +hih6130 +hip04_eth +hisax +hisax_fcpcipnp +hisax_isac +hisax_st5481 +hisi-acpu-cpufreq +hisi504_nand +hisi_thermal +hix5hd2_gmac +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hnae +hns_dsaf +hns_enet_drv +hns_mdio +hopper +horus3a +hostap +hostap_pci +hostap_plx +hp100 +hpfs +hpilo +hpsa +hptiop +hsi +hsi_char +hso +hsr +hsu_dma +htc-pasic3 +hts221 +hts221_i2c +hts221_spi +htu21 +huawei_cdc_ncm +hwa-hc +hwa-rc +hwmon-vid +hwspinlock_core +hx8357 +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd8111 +i2c-arb-gpio-challenge +i2c-axxia +i2c-cbus-gpio +i2c-cros-ec-tunnel +i2c-designware-core +i2c-designware-pci +i2c-designware-platform +i2c-diolan-u2c +i2c-dln2 +i2c-emev2 +i2c-exynos5 +i2c-gpio +i2c-hid +i2c-hix5hd2 +i2c-i801 +i2c-isch +i2c-kempld +i2c-matroxfb +i2c-meson +i2c-mt65xx +i2c-mux +i2c-mux-gpio +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-pinctrl +i2c-mux-reg +i2c-mv64xxx +i2c-nforce2 +i2c-nomadik +i2c-ocores +i2c-parport +i2c-parport-light +i2c-pca-platform +i2c-piix4 +i2c-qup +i2c-rcar +i2c-riic +i2c-rk3x +i2c-robotfuzz-osif +i2c-sh_mobile +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-slave-eeprom +i2c-smbus +i2c-stub +i2c-taos-evm +i2c-tiny-usb +i2c-uniphier +i2c-uniphier-f +i2c-versatile +i2c-via +i2c-viapro +i2c-viperboard +i2c-xiic +i40e +i40evf +i5k_amb +i6300esb +i740fb +ib_addr +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mad +ib_mthca +ib_sa +ib_srp +ib_srpt +ib_ucm +ib_umad +ib_uverbs +ibmaem +ibmpex +icp_multi +icplus +ics932s401 +idma64 +idmouse +idt77252 +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +iforce +igb +igbvf +igorplugusb +iguanair +ii_pci20kc +iio-trig-interrupt +iio-trig-periodic-rtc +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili922x +ili9320 +imm +imon +impa7 +ims-pcu +imx-ipu-v3 +imx-ipuv3-crtc +imx-ldb +imx-tve +imx074 +imx6ul_tsc +imx_thermal +imxdrm +ina209 +ina2xx +industrialio +industrialio-buffer-cb +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +input-polldev +int51x1 +intel_th +intel_th_gth +intel_th_msu +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +interact +interval_tree_test +inv-mpu6050 +io_edgeport +io_ti +ioc4 +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_MASQUERADE +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_tunnel +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_wlc +ip_vs_wrr +ip_vti +ipack +ipaq +ipcomp +ipcomp6 +ipddp +iphase +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +ipr +iproc_nand +ips +ipt_CLUSTERIP +ipt_ECN +ipt_MASQUERADE +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipw +ipw2100 +ipw2200 +ipx +ir-hix5hd2 +ir-jvc-decoder +ir-kbd-i2c +ir-lirc-codec +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-usb +ir-xmp-decoder +ircomm +ircomm-tty +irda +irda-usb +irlan +irnet +irqbypass +irtty-sir +iscsi_boot_sysfs +iscsi_target_mod +iscsi_tcp +isdn +isdn_bsdcomp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl9305 +isofs +isp116x-hcd +isp1362-hcd +isp1704_charger +isp1760 +it87 +it913x +itd1000 +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_c2 +iw_cm +iw_cxgb3 +iw_cxgb4 +iw_nes +iwl3945 +iwl4965 +iwldvm +iwlegacy +iwlmvm +iwlwifi +ix2505v +ixgb +ixgbe +ixgbevf +janz-cmodio +janz-ican3 +jc42 +jedec_probe +jffs2 +jfs +jitterentropy_rng +jmb38x_ms +jme +joydev +joydump +jr3_pci +jsa1212 +jsm +k3dma +kafs +kalmia +kaweth +kbic +kbtab +kcomedilib +ke_counter +kempld-core +kempld_wdt +kernelcapi +keyspan +keyspan_pda +keyspan_remote +keywrap +kfifo_buf +khazad +kingsun-sir +kl5kusb105 +kmx61 +kobil_sct +ks0108 +ks8842 +ks8851 +ks8851_mll +ks959-sir +ksdazzle-sir +ksz884x +ktti +kvaser_pci +kvaser_usb +kxcjk-1013 +kxsd9 +kxtj9 +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l4f00242t03 +l64781 +lan78xx +lanai +lapb +lapbether +latch-addr-flash +lattice-ecp3-config +lcc-ipq806x +lcc-msm8960 +lcd +ld9040 +ldusb +lec +led-class-flash +leds-88pm860x +leds-aat1290 +leds-adp5520 +leds-bcm6328 +leds-bcm6358 +leds-bd2802 +leds-blinkm +leds-da903x +leds-da9052 +leds-dac124s085 +leds-gpio +leds-ktd2692 +leds-lm3530 +leds-lm3533 +leds-lm355x +leds-lm3642 +leds-lp3944 +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max77693 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-ns2 +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pwm +leds-regulator +leds-tca6507 +leds-tlc591xx +leds-wm831x-status +leds-wm8350 +ledtrig-backlight +ledtrig-camera +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-oneshot +ledtrig-timer +ledtrig-transient +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libceph +libcomposite +libcrc32c +libcxgbi +libertas +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libore +libosd +libsas +lightning +lineage-pem +linear +lirc_bt829 +lirc_dev +lirc_imon +lirc_parallel +lirc_sasem +lirc_serial +lirc_sir +lirc_zilog +lis3l02dq +lis3lv02d +lis3lv02d_i2c +lis3lv02d_spi +litelink-sir +lkkbd +llc +llc2 +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3630a_bl +lm3639_bl +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lms283gf05 +lms501kf03 +lnbh25 +lnbp21 +lnbp22 +lockd +locktorture +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp8755 +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpc_ich +lpc_sch +lpddr2_nvm +lpddr_cmds +lpfc +lru_cache +lrw +ltc2941-battery-gauge +ltc2945 +ltc2978 +ltc3589 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltr501 +ltv350qv +lv5207lp +lvstest +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m25p80 +m2m-deinterlace +m52790 +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +ma600-sir +mac-celtic +mac-centeuro +mac-croatian +mac-cyrillic +mac-gaelic +mac-greek +mac-iceland +mac-inuit +mac-roman +mac-romanian +mac-turkish +mac80211 +mac80211_hwsim +mac802154 +macb +macmodes +macvlan +macvtap +mag3110 +magellan +mailbox-altera +mailbox-test +mantis +mantis_core +map_absent +map_ram +map_rom +marvell +marvell-cesa +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max1111 +max11801_ts +max1363 +max14577 +max14577_charger +max1586 +max16064 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max197 +max20751 +max2165 +max3100 +max31790 +max3421-hcd +max34440 +max517 +max5821 +max63xx_wdt +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77686 +max77693 +max77693-haptic +max77693_charger +max77802 +max8649 +max8660 +max8688 +max8903_charger +max8907 +max8907-regulator +max8925-regulator +max8925_bl +max8925_onkey +max8925_power +max8952 +max8973-regulator +max8997 +max8997_charger +max8997_haptic +max8998 +max8998_charger +mb862xxfb +mb86a16 +mb86a20s +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc44s803 +mcb +mcb-pci +mceusb +mcp2120-sir +mcp251x +mcp3021 +mcp320x +mcp3422 +mcp4531 +mcp4725 +mcp4922 +mcryptd +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md-cluster +md4 +mdc800 +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-gpio +mdio-mux +mdio-mux-gpio +mdio-mux-mmioreg +mdio-xgene +me4000 +me_daq +media +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +memstick +men_z135_uart +men_z188_adc +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +meson-ir +meson_uart +meson_wdt +metro-usb +metronomefb +mf6x4 +mg_disk +mga +michael_mic +micrel +microchip +microread +microread_i2c +microtek +mii +minix +mip6 +mite +mk712 +mkiss +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx90614 +mlxsw_core +mlxsw_pci +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmcc-apq8084 +mmcc-msm8960 +mmcc-msm8974 +mmci_qcom_dml +mms114 +mn88472 +mn88473 +mos7720 +mos7840 +mostcore +moxa +mpc624 +mpl115 +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +msdos +msi001 +msi2500 +msm +msm-rng +msp3400 +mspro_block +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt29f_spinand +mt312 +mt352 +mt6311-regulator +mt6397-core +mt6397-regulator +mt7601u +mt8173-max98090 +mt8173-rt5650-rt5676 +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd_dataflash +mtdoops +mtdram +mtdswap +mtip32xx +mtk-afe-pcm +mtk-pmic-wrap +mtk-sd +mtk_wdt +mtouch +multipath +multiq3 +musb_am335x +musb_dsps +mv643xx_eth +mv_cesa +mv_u3d_core +mv_udc +mvmdio +mvneta +mvpp2 +mvsas +mvsdio +mvumi +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc4005 +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxser +mxuport +myri10ge +n_gsm +n_hdlc +n_r3964 +n_tracerouter +n_tracesink +nandsim +national +natsemi +nau7802 +navman +nb8800 +nbd +nbpfaxi +nci +nci_spi +nci_uart +ncpfs +nct6683 +nct6775 +nct7802 +nct7904 +nd_blk +nd_btt +nd_pmem +ne2k-pci +neofb +net1080 +net2272 +net2280 +netconsole +netjet +netlink_diag +netrom +netup-unidvb +netxen_nic +newtonkbd +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_ipv4 +nf_nat_ipv6 +nf_nat_irc +nf_nat_masquerade_ipv4 +nf_nat_masquerade_ipv6 +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_redirect +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_synproxy_core +nf_tables +nf_tables_arp +nf_tables_bridge +nf_tables_inet +nf_tables_ipv4 +nf_tables_ipv6 +nf_tables_netdev +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfcwilink +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_log +nfnetlink_queue +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat_ipv4 +nft_chain_nat_ipv6 +nft_chain_route_ipv4 +nft_chain_route_ipv6 +nft_compat +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_exthdr +nft_hash +nft_limit +nft_log +nft_masq +nft_masq_ipv4 +nft_masq_ipv6 +nft_meta +nft_meta_bridge +nft_nat +nft_queue +nft_rbtree +nft_redir +nft_redir_ipv4 +nft_redir_ipv6 +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +ni_6527 +ni_65xx +ni_660x +ni_670x +ni_at_a2150 +ni_at_ao +ni_atmio +ni_atmio16d +ni_labpc +ni_labpc_common +ni_labpc_pci +ni_pcidio +ni_pcimio +ni_tio +ni_tiocmd +ni_usb6501 +nicstar +nilfs2 +niu +nlmon +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +nosy +notifier-error-inject +nouveau +nozomi +nps_enet +ns558 +ns83820 +nsp32 +ntb +ntb_netdev +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +null_blk +nvidiafb +nvme +nvmem_core +nvmem_qfprom +nvmem_rockchip_efuse +nvram +nxp-nci +nxp-nci_i2c +nxp-ptn3460 +nxt200x +nxt6000 +objlayoutdriver +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +of_xilinx_wdt +old_belkin-sir +omap +omap-aes +omap-des +omap-mailbox +omap-ocp2scp +omap-rng +omap-sham +omap2430 +omap4-keypad +omap_hdq +omap_hwspinlock +omap_wdt +omapfb +omfs +omninet +on20 +on26 +onenand +opencores-kbd +openvswitch +oprofile +opt3001 +opticon +option +or51132 +or51211 +orinoco +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +orion_nand +orion_wdt +osd +osdblk +osst +oti6858 +ov2640 +ov5642 +ov6650 +ov7640 +ov7670 +ov772x +ov9640 +ov9740 +overlay +oxu210hp-hcd +p54common +p54pci +p54spi +p54usb +p8022 +p8023 +pa12203001 +palmas-pwrbutton +palmas-regulator +pandora_bl +panel +panel-dpi +panel-dsi-cm +panel-lg-lg4573 +panel-lgphilips-lb035q02 +panel-nec-nl8048hl11 +panel-samsung-ld9040 +panel-samsung-s6e8aa0 +panel-sharp-lq101r1sx01 +panel-sharp-ls037v7dw01 +panel-simple +panel-sony-acx565akm +panel-tpo-td028ttec1 +panel-tpo-td043mtea1 +parade-ps8622 +parallel-display +paride +parkbd +parport +parport_ax88796 +parport_pc +parport_serial +pata_ali +pata_amd +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_of_platform +pata_oldpiix +pata_opti +pata_optidma +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sch +pata_serverworks +pata_sil680 +pata_sis +pata_sl82c105 +pata_triflex +pata_via +pbias-regulator +pc300too +pc87360 +pc87427 +pcap-regulator +pcap_keys +pcap_ts +pcbc +pcd +pcf50633 +pcf50633-adc +pcf50633-backlight +pcf50633-charger +pcf50633-gpio +pcf50633-input +pcf50633-regulator +pcf8574_keypad +pcf8591 +pch_udc +pci +pci-stub +pci200syn +pcie-iproc +pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad +pcmda12 +pcmmio +pcmuio +pcnet32 +pcrypt +pcwd_pci +pcwd_usb +pd +pda_power +pdc_adma +peak_pci +peak_usb +pegasus +penmount +percpu_test +pf +pfuze100-regulator +pg +phantom +phonet +phram +phy-am335x +phy-am335x-control +phy-bcm-kona-usb2 +phy-berlin-sata +phy-berlin-usb +phy-dm816x-usb +phy-exynos-usb2 +phy-exynos5-usbdrd +phy-gpio-vbus-usb +phy-hix5hd2-sata +phy-isp1301 +phy-msm-usb +phy-mt65xx-usb3 +phy-omap-control +phy-omap-usb2 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-qcom-8x16-usb +phy-qcom-apq8064-sata +phy-qcom-ipq806x-sata +phy-qcom-ufs +phy-qcom-ufs-qmp-14nm +phy-qcom-ufs-qmp-20nm +phy-rcar-gen2 +phy-rcar-usb +phy-rockchip-usb +phy-tahvo +phy-ti-pipe3 +phy-tusb1210 +phy-twl4030-usb +phy-twl6030-usb +physmap +physmap_of +pinctrl-apq8064 +pinctrl-apq8084 +pinctrl-ipq8064 +pinctrl-msm8660 +pinctrl-msm8916 +pinctrl-msm8960 +pinctrl-msm8x74 +pinctrl-ph1-ld4 +pinctrl-ph1-ld6b +pinctrl-ph1-pro4 +pinctrl-ph1-pro5 +pinctrl-ph1-sld8 +pinctrl-proxstream2 +pinctrl-spmi-gpio +pinctrl-spmi-mpp +pinctrl-ssbi-gpio +pinctrl-ssbi-mpp +pixcir_i2c_ts +pkcs7_test_key +pktcdvd +pktgen +pl172 +pl2303 +pl330 +plat-ram +plat_nand +platform_lcd +plip +plusb +pluto2 +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm80xx +pm8921-core +pm8941-pwrkey +pm8941-wled +pm8xxx-vibrator +pmbus +pmbus_core +pmc551 +pmcraid +pmic8xxx-keypad +pmic8xxx-pwrkey +pn533 +pn544 +pn544_i2c +pn_pep +poly1305_generic +port100 +powermate +powr1220 +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_parport +pptp +prism2_usb +ps2mult +psmouse +psnap +pt +pulsedlight-lidar-lite-v2 +pvrusb2 +pwc +pwm-atmel-hlcdc +pwm-beeper +pwm-berlin +pwm-fan +pwm-fsl-ftm +pwm-lp3943 +pwm-mtk-disp +pwm-omap-dmtimer +pwm-pca9685 +pwm-rcar +pwm-regulator +pwm-renesas-tpu +pwm-rockchip +pwm-samsung +pwm-tiecap +pwm-tiehrpwm +pwm-twl +pwm-twl-led +pwm_bl +pxa168_eth +pxa27x_udc +pxa3xx_nand +qcaspi +qcaux +qcom-coincell +qcom-spmi-iadc +qcom-spmi-pmic +qcom-spmi-temp-alarm +qcom-spmi-vadc +qcom-wdt +qcom_bam_dma +qcom_gsbi +qcom_hwspinlock +qcom_rpm +qcom_rpm-regulator +qcom_smbb +qcom_smd-regulator +qcom_spmi-regulator +qcrypto +qcserial +qed +qede +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qm1d1c0042 +qmi_wwan +qnx4 +qnx6 +qoriq-cpufreq +qsemi +qt1010 +qt1070 +qt2160 +quatech2 +quota_tree +quota_v1 +quota_v2 +qxl +r128 +r592 +r6040 +r8152 +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r852 +r8712u +r8723au +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-bcm2048 +radio-i2c-si470x +radio-keene +radio-ma901 +radio-maxiradio +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-shark +radio-si476x +radio-tea5764 +radio-usb-si470x +radio-usb-si4713 +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ravb +raw +rbd +rbtree_test +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-asus-pc39 +rc-asus-ps3-100 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-delock-61959 +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-dvbsky +rc-em-terratec +rc-encore-enltv +rc-encore-enltv-fm53 +rc-encore-enltv2 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-pctv-sedna +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-reddo +rc-snapstream-firefly +rc-streamzap +rc-su3000 +rc-tbs-nec +rc-technisat-ts35 +rc-technisat-usb2 +rc-terratec-cinergy-c-pci +rc-terratec-cinergy-s2-hd +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-total-media-in-hand-02 +rc-trekstor +rc-tt-1500 +rc-twinhan-dtv-cab-ci +rc-twinhan1027 +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rc5t583-regulator +rcar-dmac +rcar-du-drm +rcar-hpbdma +rcar_can +rcar_jpu +rcar_thermal +rcar_vin +rdc321x-southbridge +rdma_cm +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +redboot +redrat3 +regmap-spmi +regulator-haptic +reiserfs +remoteproc +renesas_usbhs +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd_ftl +rfkill-gpio +rfkill-regulator +rio500 +rivafb +rj54n1cb0c +rk808 +rk808-regulator +rmd128 +rmd160 +rmd256 +rmd320 +rmobile-reset +rn5t618 +rn5t618-regulator +rn5t618_wdt +rndis_host +rndis_wlan +rockchip-io-domain +rockchip_drm_vop +rockchip_saradc +rockchip_thermal +rockchipdrm +rocket +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpcrdma +rpcsec_gss_krb5 +rpr0521 +rrpc +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt5033 +rt5033-regulator +rt5033_battery +rt61pci +rt73usb +rt9455_charger +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab3100 +rtc-abx80x +rtc-armada38x +rtc-as3722 +rtc-bq32k +rtc-bq4802 +rtc-cmos +rtc-da9052 +rtc-da9055 +rtc-da9063 +rtc-ds1286 +rtc-ds1305 +rtc-ds1307 +rtc-ds1343 +rtc-ds1347 +rtc-ds1374 +rtc-ds1390 +rtc-ds1511 +rtc-ds1553 +rtc-ds1672 +rtc-ds1685 +rtc-ds1742 +rtc-ds2404 +rtc-ds3232 +rtc-ds3234 +rtc-em3027 +rtc-fm3130 +rtc-hid-sensor-time +rtc-hym8563 +rtc-isl12022 +rtc-isl12057 +rtc-isl1208 +rtc-lp8788 +rtc-m41t80 +rtc-m41t93 +rtc-m41t94 +rtc-m48t35 +rtc-m48t59 +rtc-m48t86 +rtc-max6900 +rtc-max6902 +rtc-max77686 +rtc-max77802 +rtc-max8907 +rtc-max8925 +rtc-max8997 +rtc-max8998 +rtc-mc13xxx +rtc-mcp795 +rtc-msm6242 +rtc-mt6397 +rtc-palmas +rtc-pcap +rtc-pcf2123 +rtc-pcf2127 +rtc-pcf50633 +rtc-pcf85063 +rtc-pcf8523 +rtc-pcf8563 +rtc-pcf8583 +rtc-pl030 +rtc-pm8xxx +rtc-r9701 +rtc-rc5t583 +rtc-rk808 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rv8803 +rtc-rx4581 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-snvs +rtc-stk17ta8 +rtc-tps6586x +rtc-tps65910 +rtc-tps80031 +rtc-v3020 +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtc-zynqmp +rtd520 +rti800 +rti802 +rtl2830 +rtl2832 +rtl2832_sdr +rtl8150 +rtl8187 +rtl8188ee +rtl818x_pci +rtl8192c-common +rtl8192ce +rtl8192cu +rtl8192de +rtl8192ee +rtl8192se +rtl8723-common +rtl8723ae +rtl8723be +rtl8821ae +rtl8xxxu +rtl_pci +rtl_usb +rtllib +rtllib_crypt_ccmp +rtllib_crypt_tkip +rtllib_crypt_wep +rtlwifi +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rx51_battery +rxkad +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3c-fb +s3c2410_wdt +s3fb +s3fwrn5 +s3fwrn5_i2c +s526 +s5h1409 +s5h1411 +s5h1420 +s5m8767 +s5p-g2d +s5p-hdmi +s5p-hdmiphy +s5p-jpeg +s5p-mfc +s5p-mixer +s5p-sdo +s5p-sii9234 +s5p-sss +s626 +s6e63m0 +s921 +saa6588 +saa6752hs +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7706h +safe_serial +salsa20_generic +samsung +samsung-keypad +samsung-sxgbe +sata_inic162x +sata_mv +sata_nv +sata_promise +sata_qstor +sata_rcar +sata_sil +sata_sil24 +sata_sis +sata_svw +sata_sx4 +sata_uli +sata_via +sata_vsc +savage +savagefb +sbp_target +sbs-battery +sc16is7xx +sc92031 +sca3000 +sch5627 +sch5636 +sch56xx-common +sch_atm +sch_cbq +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_fq +sch_fq_codel +sch_gred +sch_hfsc +sch_hhf +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_pie +sch_plug +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_tbf +sch_teql +scpi-cpufreq +scpi-hwmon +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +scsi_transport_srp +sctp +sctp_probe +sdhci-dove +sdhci-msm +sdhci-of-arasan +sdhci-of-at91 +sdhci-pci +sdhci-pxav3 +sdhci-s3c +sdhci_f_sdh30 +sdio_uart +seed +sensorhub +seqiv +ser_gigaset +serial2002 +serio_raw +sermouse +serpent_generic +serport +ses +sfc +sh-sci +sh_eth +sh_flctl +sh_irda +sh_keysc +sh_mmcif +sh_mobile_ceu_camera +sh_mobile_csi2 +sh_mobile_hdmi +sh_mobile_lcdcfb +sh_mobile_meram +sh_mobile_sdhi +sh_veu +sh_vou +sha1-arm +sha1-arm-ce +sha1-arm-neon +sha2-arm-ce +sha256-arm +sha512-arm +shark2 +shdma +shmob-drm +sht15 +sht21 +shtc1 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sil164 +sir-dev +sis190 +sis5595 +sis900 +sisfb +sisusbvga +sit +sja1000 +sja1000_isa +sja1000_platform +skfp +skge +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +slcan +slip +slram +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smb347-charger +smc911x +smc91x +smd +smd-rpm +smem +smipcie +smm665 +smsc +smsc47b397 +smsc47m1 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsmdtv +smssdio +smsusb +snd-aaci +snd-ac97-codec +snd-ad1889 +snd-ak4113 +snd-ak4114 +snd-ak4xxx-adda +snd-ali5451 +snd-aloop +snd-als300 +snd-atiixp +snd-atiixp-modem +snd-au8810 +snd-au8820 +snd-au8830 +snd-aw2 +snd-azt3328 +snd-bcd2000 +snd-bebob +snd-bt87x +snd-ca0106 +snd-cmipci +snd-cs4281 +snd-cs46xx +snd-cs8427 +snd-ctxfi +snd-darla20 +snd-darla24 +snd-dice +snd-dummy +snd-echo3g +snd-emu10k1 +snd-emu10k1-synth +snd-emu10k1x +snd-emux-synth +snd-ens1370 +snd-ens1371 +snd-es1938 +snd-es1968 +snd-firewire-digi00x +snd-firewire-lib +snd-firewire-tascam +snd-fireworks +snd-fm801 +snd-gina20 +snd-gina24 +snd-hda-codec +snd-hda-codec-analog +snd-hda-codec-ca0110 +snd-hda-codec-ca0132 +snd-hda-codec-cirrus +snd-hda-codec-cmedia +snd-hda-codec-conexant +snd-hda-codec-generic +snd-hda-codec-hdmi +snd-hda-codec-idt +snd-hda-codec-realtek +snd-hda-codec-si3054 +snd-hda-codec-via +snd-hda-core +snd-hda-intel +snd-hdsp +snd-hdspm +snd-hrtimer +snd-hwdep +snd-i2c +snd-ice1712 +snd-ice1724 +snd-ice17xx-ak4xxx +snd-indigo +snd-indigodj +snd-indigodjx +snd-indigoio +snd-indigoiox +snd-intel8x0 +snd-intel8x0m +snd-isight +snd-korg1212 +snd-layla20 +snd-layla24 +snd-lola +snd-maestro3 +snd-mia +snd-mixart +snd-mixer-oss +snd-mona +snd-mpu401 +snd-mpu401-uart +snd-mtpav +snd-mts64 +snd-nm256 +snd-opl3-lib +snd-opl3-synth +snd-oxfw +snd-oxygen +snd-oxygen-lib +snd-pcm-oss +snd-pcxhr +snd-portman2x4 +snd-pt2258 +snd-rawmidi +snd-riptide +snd-rme32 +snd-rme96 +snd-rme9652 +snd-scs1x +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-soc-ac97 +snd-soc-adau1701 +snd-soc-ak4104 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-alc5623 +snd-soc-apq8016-sbc +snd-soc-armada-370-db +snd-soc-arndale-rt5631 +snd-soc-cs35l32 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42xx8 +snd-soc-cs42xx8-i2c +snd-soc-cs4349 +snd-soc-davinci-mcasp +snd-soc-es8328 +snd-soc-fsi +snd-soc-fsl-asrc +snd-soc-fsl-esai +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-gtm601 +snd-soc-i2s +snd-soc-idma +snd-soc-imx-audmux +snd-soc-kirkwood +snd-soc-lpass-apq8016 +snd-soc-lpass-cpu +snd-soc-lpass-ipq806x +snd-soc-lpass-platform +snd-soc-max98090 +snd-soc-max98095 +snd-soc-max98357a +snd-soc-odroidx2-max98090 +snd-soc-omap-hdmi-audio +snd-soc-pcm +snd-soc-pcm1681 +snd-soc-pcm1792a-codec +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-rcar +snd-soc-rl6231 +snd-soc-rockchip-i2s +snd-soc-rockchip-max98090 +snd-soc-rockchip-rt5645 +snd-soc-rockchip-spdif +snd-soc-rsrc-card +snd-soc-rt5631 +snd-soc-rt5645 +snd-soc-rt5677 +snd-soc-rt5677-spi +snd-soc-rx51 +snd-soc-s3c-dma +snd-soc-samsung-spdif +snd-soc-sgtl5000 +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-simple-card +snd-soc-smdk-spdif +snd-soc-smdk-wm8994 +snd-soc-smdk-wm8994pcm +snd-soc-snow +snd-soc-spdif-rx +snd-soc-spdif-tx +snd-soc-ssm2602 +snd-soc-ssm2602-i2c +snd-soc-ssm2602-spi +snd-soc-ssm4567 +snd-soc-sta32x +snd-soc-sta350 +snd-soc-sti-sas +snd-soc-storm +snd-soc-tas2552 +snd-soc-tas5086 +snd-soc-tas571x +snd-soc-tfa9879 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic3x +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-wm-hubs +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8962 +snd-soc-wm8978 +snd-soc-wm8994 +snd-soc-xtfpga-i2s +snd-sonicvibes +snd-trident +snd-ua101 +snd-usb-6fire +snd-usb-audio +snd-usb-caiaq +snd-usb-hiface +snd-usb-line6 +snd-usb-pod +snd-usb-podhd +snd-usb-toneport +snd-usb-variax +snd-usbmidi-lib +snd-util-mem +snd-via82xx +snd-via82xx-modem +snd-virmidi +snd-virtuoso +snd-vx-lib +snd-vx222 +snd-ymfpci +snic +soc_button_array +soc_camera +soc_camera_platform +soc_mediabus +soc_scale_crop +softdog +softing +solo6x10 +solos-pci +sony-btf-mpx +sp2 +sp805_wdt +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +speedfax +speedtch +spi-altera +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-gpio +spi-lm70llp +spi-meson-spifc +spi-mt65xx +spi-nor +spi-oc-tiny +spi-orion +spi-pl022 +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-qup +spi-rockchip +spi-rspi +spi-s3c64xx +spi-sc18is602 +spi-sh-hspi +spi-sh-msiof +spi-ti-qspi +spi-tle62x0 +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spmi +spmi-pmic-arb +sr9700 +sr9800 +ssb +ssbi +ssd1307fb +ssfdc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +sstfb +ssu100 +st +st-asc +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_spi +st_magn +st_magn_i2c +st_magn_spi +st_pressure +st_pressure_i2c +st_pressure_spi +st_sensors +st_sensors_i2c +st_sensors_spi +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +ste_modem_rproc +stex +stinger +stir4200 +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm32-usart +stm_console +stm_core +stmmac +stmmac-platform +stmpe-keypad +stmpe-ts +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv6110 +stv6110x +sudmac +sun4i-codec +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +svgalib +sx8 +sx8654 +sx9500 +sym53c8xx +symbolserial +synaptics_i2c +synaptics_i2c_rmi4 +synaptics_usb +synclink_gt +synclinkmp +syscopyarea +sysfillrect +sysimgblt +sysv +t1pci +t5403 +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +target_core_user +tc3589x-keypad +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tcs3414 +tcs3472 +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tda998x +tdfx +tdfxfb +tdo24m +tea +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tef6862 +tehuti +tekram-sir +teranetics +test-hexdump +test-kprobes +test-kstrtox +test-string_helpers +test_bpf +test_firmware +test_module +test_power +test_printf +test_static_key_base +test_static_keys +test_udelay +test_user_copy +tg3 +tgr192 +thmc50 +thunderbolt +ti-adc081c +ti-adc128s052 +ti-soc-thermal +ti-vpe +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_dac7512 +ti_hecc +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +tilcdc +timeriomem-rng +tipc +tlan +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmio_mmc +tmio_mmc_core +tmio_nand +tmiofb +tmp006 +tmp102 +tmp103 +tmp401 +tmp421 +toim3232-sir +torture +toshsd +touchit213 +touchright +touchwin +tpci200 +tpm-rng +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tps40422 +tps51632-regulator +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65090-charger +tps65090-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps65218-regulator +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps80031-regulator +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsl2550 +tsl2563 +tsl2583 +tsl2x7x_core +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tusb6010 +tvaudio +tveeprom +tvp5150 +tw2804 +tw68 +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-madc-hwmon +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6040-vibra +twofish_common +twofish_generic +typhoon +u132-hcd +u_ether +u_serial +uartlite +uas +ubi +ubifs +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +uda1342 +udc-xilinx +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufshcd +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uli526x +ulpi +umc +umem +ums-alauda +ums-cypress +ums-datafab +ums-eneub6250 +ums-freecom +ums-isd200 +ums-jumpshot +ums-karma +ums-onetouch +ums-realtek +ums-sddr09 +ums-sddr55 +ums-usbat +unix_diag +upd64031a +upd64083 +us5182d +usb-dmac +usb-serial-simple +usb-storage +usb3503 +usb8xxx +usb_8dev +usb_debug +usb_f_acm +usb_f_ecm +usb_f_ecm_subset +usb_f_eem +usb_f_fs +usb_f_hid +usb_f_mass_storage +usb_f_midi +usb_f_ncm +usb_f_obex +usb_f_phonet +usb_f_printer +usb_f_rndis +usb_f_serial +usb_f_ss_lb +usb_f_uac1 +usb_f_uac2 +usb_f_uvc +usb_gigaset +usb_wwan +usbatm +usbdux +usbduxfast +usbduxsigma +usbhid +usbip-core +usbip-host +usbkbd +usblcd +usbled +usblp +usbmisc_imx +usbmon +usbmouse +usbnet +usbserial +usbsevseg +usbtest +usbtmc +usbtouchscreen +usbtv +usbvision +usdhi6rol0 +userio +userspace-consumer +ushc +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-dv-timings +v4l2-flash-led-class +v4l2-mem2mem +vcan +vcnl4000 +ves1820 +ves1x93 +veth +vexpress +vexpress-spc-cpufreq +vf610_adc +vfio +vfio-amba +vfio-pci +vfio-platform +vfio-platform-amdxgbe +vfio-platform-base +vfio-platform-calxedaxgmac +vfio_virqfd +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_net +vhost_scsi +via +via-rhine +via-sdmmc +via-velocity +via686a +videobuf-core +videobuf-dma-contig +videobuf-dma-sg +videobuf-dvb +videobuf-vmalloc +videobuf2-core +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-dvb +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videodev +vim2m +viperboard +viperboard_adc +virtio-gpu +virtio-rng +virtio_input +virtio_scsi +virtual +visor +vitesse +vivid +vlsi_ir +vmac +vme_pio2 +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmxnet3 +vp27smpx +vport-geneve +vport-gre +vport-vxlan +vrf +vringh +vsock +vsp1 +vsxxxaa +vt1211 +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxge +vxlan +vz89x +w1-gpio +w1_bq27000 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1_ds2781 +w1_ds28e04 +w1_smem +w1_therm +w5100 +w5300 +w6692 +w83627ehf +w83627hf +w83781d +w83791d +w83792d +w83793 +w83795 +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +walkera0701 +wanxl +warrior +wcn36xx +wd719x +wdt87xx_i2c +wdt_pci +whc-rc +whci +whci-hcd +whiteheat +wil6210 +wimax +winbond-840 +wire +wishbone-serial +wl1251 +wl1251_sdio +wl1251_spi +wl1273-core +wl12xx +wl18xx +wlcore +wlcore_sdio +wlcore_spi +wm831x-dcdc +wm831x-hwmon +wm831x-isink +wm831x-ldo +wm831x-on +wm831x-ts +wm831x_backup +wm831x_bl +wm831x_power +wm831x_wdt +wm8350-hwmon +wm8350-regulator +wm8350_power +wm8350_wdt +wm8400-regulator +wm8739 +wm8775 +wm8994-core +wm8994-irq +wm8994-regmap +wm8994-regulator +wm97xx-ts +wp512 +wusb-cbaf +wusb-wa +wusbcore +x25 +x25_asy +x_tables +xc4000 +xc5000 +xcbc +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_ipcomp +xfrm_user +xfs +xgifb +xgmac +xhci-plat-hcd +xilinx-tpg +xilinx-video +xilinx-vtc +xilinx_uartps +xillybus_core +xillybus_of +xillybus_pcie +xor +xor-neon +xpad +xr_usb_serial_common +xsens_mt +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +xt_NETMAP +xt_NFLOG +xt_NFQUEUE +xt_RATEEST +xt_REDIRECT +xt_SECMARK +xt_TCPMSS +xt_TCPOPTSTRIP +xt_TEE +xt_TPROXY +xt_TRACE +xt_addrtype +xt_bpf +xt_cgroup +xt_cluster +xt_comment +xt_connbytes +xt_connlabel +xt_connlimit +xt_connmark +xt_conntrack +xt_cpu +xt_dccp +xt_devgroup +xt_dscp +xt_ecn +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_ipcomp +xt_iprange +xt_ipvs +xt_l2tp +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_nat +xt_nfacct +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_realm +xt_recent +xt_sctp +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_tcpudp +xt_time +xt_u32 +xtkbd +xts +xusbatm +xz_dec_test +yam +yealink +yellowfin +yurex +zaurus +zd1201 +zd1211rw +zforce_ts +zhenhua +zl10036 +zl10039 +zl10353 +zl6100 +zlib +zr364xx +zram +zynq-fpga only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-106.129/armhf/generic.compiler +++ linux-raspi2-4.4.0/debian.master/abi/4.4.0-106.129/armhf/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu/Linaro 5.4.0-6ubuntu1~16.04.5) 5.4.0 20160609 only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-106.129/armhf/generic.modules +++ linux-raspi2-4.4.0/debian.master/abi/4.4.0-106.129/armhf/generic.modules @@ -0,0 +1,4631 @@ +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_dw +8250_mid +8250_omap +8250_uniphier +8255 +8255_pci +8390 +842 +842_compress +842_decompress +88pm800 +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +DAC960 +a100u2w +a3d +a8293 +aacraid +aat2870-regulator +aat2870_bl +ab3100 +ab3100-otp +ablk_helper +acard-ahci +acecad +acenic +act200l-sir +act8865-regulator +act_bpf +act_connmark +act_csum +act_gact +act_ipt +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +act_vlan +actisys-sir +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5755 +ad5764 +ad5791 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7266 +ad7280a +ad7291 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7746 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad799x +ad8366 +ad9523 +ad9832 +ad9834 +ad_sigma_delta +adc128d818 +adcxx +addi_apci_1032 +addi_apci_1500 +addi_apci_1516 +addi_apci_1564 +addi_apci_16xx +addi_apci_2032 +addi_apci_2200 +addi_apci_3120 +addi_apci_3501 +addi_apci_3xxx +addi_watchdog +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adfs +adi +adis16060 +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16204 +adis16209 +adis16220 +adis16240 +adis16260 +adis16400 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1275 +adm8211 +adm9240 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adv7511 +adv7604 +adv7842 +adv_pci1710 +adv_pci1723 +adv_pci1724 +adv_pci_dio +advansys +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +aes-arm +aes-arm-bs +aes-arm-ce +af-rxrpc +af9013 +af9033 +af_alg +af_key +af_packet_diag +affs +afs +ah4 +ah6 +ahci +ahci_ceva +ahci_mvebu +ahci_qoriq +ahci_tegra +aic79xx +aic7xxx +aic94xx +aim_cdev +aim_network +aim_sound +aim_v4l2 +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airspy +ak8975 +al3320a +algif_aead +algif_hash +algif_rng +algif_skcipher +alim7101_wdt +altera-ci +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am35x +am53c974 +amba-pl010 +ambakmi +amc6821 +amd +amd5536udc +amd8111e +amdgpu +amplc_dio200 +amplc_dio200_common +amplc_dio200_pci +amplc_pc236 +amplc_pc236_common +amplc_pc263 +amplc_pci224 +amplc_pci230 +amplc_pci236 +amplc_pci263 +ams369fg06 +analog +anatop-regulator +ansi_cprng +anubis +aoe +apbps2 +apds9300 +apds9802als +apds990x +apds9960 +appledisplay +appletalk +appletouch +applicom +aquantia +ar1021_i2c +ar5523 +ar7part +arc-rawmode +arc-rimi +arc4 +arc_emac +arc_ps2 +arc_uart +arcmsr +arcnet +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arm_big_little +arm_big_little_dt +arm_mhu +arm_scpi +armada +arp_tables +arpt_mangle +arptable_filter +as102_fe +as3711-regulator +as3711_bl +as3722-regulator +as3935 +as5011 +asc7621 +ascot2e +asix +ast +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +ata_generic +ata_piix +atbm8830 +aten +ath +ath10k_core +ath10k_pci +ath3k +ath5k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atm +atmel +atmel-flexcom +atmel-hlcdc +atmel-hlcdc-dc +atmel_mxt_ts +atmel_pci +atmtcp +atp870u +atusb +atxp1 +aty128fb +atyfb +au0828 +au8522_common +au8522_decoder +au8522_dig +aufs +auo-pixcir-ts +auo_k1900fb +auo_k1901fb +auo_k190x +auth_rpcgss +authenc +authencesn +autofs4 +avmfritz +ax25 +ax88179_178a +ax88796 +axp20x-pek +axp20x-regulator +axp20x_usb_power +axp288_adc +axp288_charger +axp288_fuel_gauge +b1 +b1dma +b1pci +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +bL_switcher_dummy_if +bas_gigaset +batman-adv +baycom_epp +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bcm-keypad +bcm-phy-lib +bcm203x +bcm3510 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm63138_nand +bcm63xx_uart +bcm7038_wdt +bcm7xxx +bcm87xx +bcma +bcmsysport +bd6107 +bdc +bdc_pci +be2iscsi +be2net +befs +belkin_sa +berlin2-adc +bfa +bfs +bfusb +bh1750 +bh1770glc +bh1780gli +binfmt_misc +block2mtd +blocklayoutdriver +blowfish_common +blowfish_generic +bluetooth +bluetooth_6lowpan +bma150 +bma180 +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmg160_core +bmg160_i2c +bmg160_spi +bmp085 +bmp085-i2c +bmp085-spi +bmp280 +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bnxt_en_bpo +bonding +bpa10x +bpck +bpck6 +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +br2684 +br_netfilter +brcmfmac +brcmnand +brcmsmac +brcmstb_nand +brcmutil +brd +bridge +broadcom +broadsheetfb +bsd_comp +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btqca +btrfs +btrtl +btsdio +bttv +btusb +btwilink +bu21013_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c4 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +caam +caam_jr +caamalg +caamhash +caamrng +cachefiles +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +caif_usb +caif_virtio +camellia_generic +can +can-bcm +can-dev +can-gw +can-raw +cap11xx +capi +capidrv +capmode +carl9170 +carminefb +cassini +cast5_generic +cast6_generic +cast_common +catc +cb710 +cb710-mmc +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcimdas +cb_pcimdda +cc10001_adc +cc2520 +cc770 +cc770_isa +cc770_platform +cciss +ccm +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +ceph +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha20_generic +chacha20poly1305 +chaoskey +chipone_icn8318 +chnl_net +ci_hdrc +ci_hdrc_imx +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +cirrus +cirrusfb +clip +clk-cdce706 +clk-cdce925 +clk-max77686 +clk-max77802 +clk-palmas +clk-pwm +clk-qcom +clk-rk808 +clk-s2mps11 +clk-scpi +clk-si514 +clk-si5351 +clk-si570 +clk-twl6040 +clk-wm831x +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm36651 +cma3000_d0x +cma3000_d0x_i2c +cmac +cmt_speech +cmtp +cnic +cobalt +cobra +coda +colibri-vf50-ts +com20020 +com20020-pci +com90io +com90xx +comedi +comedi_8254 +comedi_8255 +comedi_bond +comedi_parport +comedi_pci +comedi_test +comedi_usb +comm +configfs +connector-analog-tv +connector-dvi +contec_pci_dio +cordic +core +cp210x +cpia2 +cppi41 +cpu-notifier-error-inject +cramfs +crc-ccitt +crc-itu-t +crc32 +crc7 +crc8 +cros_ec +cros_ec_devs +cros_ec_i2c +cros_ec_keyb +cros_ec_spi +cryptd +crypto_user +cryptoloop +cs5345 +cs53l32a +cs89x0 +csiostor +ctr +cts +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +cx18 +cx18-alsa +cx22700 +cx22702 +cx231xx +cx231xx-alsa +cx231xx-dvb +cx2341x +cx23885 +cx24110 +cx24113 +cx24116 +cx24117 +cx24120 +cx24123 +cx25821 +cx25821-alsa +cx25840 +cx82310_eth +cx88-alsa +cx88-blackbird +cx88-dvb +cx88-vp3054-i2c +cx8800 +cx8802 +cx88xx +cxacru +cxd2099 +cxd2820r +cxd2841er +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cyclades +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da8xx-fb +da9030_battery +da9034-ts +da903x +da903x_bl +da9052-battery +da9052-hwmon +da9052-regulator +da9052_bl +da9052_onkey +da9052_tsi +da9052_wdt +da9055-hwmon +da9055-regulator +da9055_onkey +da9055_wdt +da9062-core +da9062-regulator +da9062_wdt +da9063-regulator +da9063_onkey +da9063_wdt +da9150-charger +da9150-core +da9150-fg +da9150-gpadc +da9210-regulator +da9211-regulator +dac02 +daqboard2000 +das08 +das08_isa +das08_pci +das16 +das16m1 +das1800 +das6402 +das800 +davicom +davinci_emac +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +ddbridge +de2104x +decnet +deflate +defxx +denali +denali_dt +denali_pci +des_generic +designware_i2s +dgap +dgnc +dht11 +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dibx000_common +digi_acceleport +digicolor-usart +diskonchip +diva_idi +diva_mnt +divacapi +divadidd +divas +dl2k +dlci +dlm +dln2 +dm-bio-prison +dm-bufio +dm-cache +dm-cache-cleaner +dm-cache-mq +dm-cache-smq +dm-crypt +dm-delay +dm-era +dm-flakey +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-verity +dm-zero +dm1105 +dm9000 +dm9601 +dme1737 +dmfe +dmm32at +dmx3191d +dn_rtmsg +dnet +docg3 +docg4 +dove_thermal +dp83848 +dp83867 +drbd +drbg +drm +drm_kms_helper +drop_monitor +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds620 +dsbr100 +dscc4 +dss1_divert +dst +dst_ca +dstr +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x +dt3000 +dt3155 +dt9812 +dummy +dummy-irq +dummy_stm +dvb-as102 +dvb-bt8xx +dvb-core +dvb-pll +dvb-ttpci +dvb-ttusb-budget +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-af9035 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6007 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-rtl28xxu +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dvb_usb_v2 +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_hdmi +dw_hdmi-ahb-audio +dw_hdmi-imx +dw_hdmi-rockchip +dw_mmc +dw_mmc-exynos +dw_mmc-k3 +dw_mmc-pci +dw_mmc-pltfm +dw_mmc-rockchip +dw_wdt +dwc3 +dwc3-exynos +dwc3-omap +dwc3-pci +dwc3-qcom +dwc_eth_qos +dwmac-generic +dwmac-ipq806x +dwmac-lpc18xx +dwmac-meson +dwmac-rk +dwmac-socfpga +dwmac-sti +dwmac-sunxi +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +earth-pt1 +earth-pt3 +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ec100 +echainiv +echo +edac_core +edt-ft5x06 +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efs +egalax_ts +ehci-msm +ehci-mxc +ehci-omap +ehci-tegra +ehset +elan_i2c +elo +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_meta +em_nbyte +em_text +em_u32 +emac_arc +emac_rockchip +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +emif +empeg +ems_pci +ems_usb +emu10k1-gp +enc28j60 +enclosure +encoder-opa362 +encoder-tfp410 +encx24j600 +encx24j600-regmap +eni +enic +epat +epia +epic100 +eql +esas2r +esd_usb2 +esi-sir +esp4 +esp6 +esp_scsi +et1011c +et131x +ethoc +evbug +exofs +extcon-adc-jack +extcon-arizona +extcon-axp288 +extcon-gpio +extcon-max14577 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +exynos-gsc +exynos-rng +exynos_adc +exynosdrm +ezusb +f2fs +f71805f +f71882fg +f75375s +f81232 +fakelb +fan53555 +farsync +faulty +fb_agm1264k-fl +fb_bd663474 +fb_ddc +fb_hx8340bn +fb_hx8347d +fb_hx8353d +fb_hx8357d +fb_ili9163 +fb_ili9320 +fb_ili9325 +fb_ili9340 +fb_ili9341 +fb_ili9481 +fb_ili9486 +fb_pcd8544 +fb_ra8875 +fb_s6d02a1 +fb_s6d1121 +fb_ssd1289 +fb_ssd1306 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_sys_fops +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fbtft_device +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdp +fdp_i2c +fealnx +ff-memless +firedtv +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fit2 +fit3 +fl512 +flexcan +flexfb +fm10k +fm801-gp +fm_drv +fmc +fmc-chardev +fmc-fakedev +fmc-trivial +fmc-write-eeprom +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fpga-mgr +freevxfs +friq +frpw +fsa9480 +fscache +fsl-dcu-drm +fsl-edma +fsl-mph-dr-of +fsl-quadspi +fsl_lpuart +fsl_pq_mdio +fsl_usb2_udc +ft6236 +ftdi-elan +ftdi_sio +ftgmac100 +ftl +ftmac100 +fujitsu_ts +fusb300_udc +g450_pll +g760a +g762 +g_acm_ms +g_audio +g_cdc +g_dbgp +g_ether +g_ffs +g_hid +g_mass_storage +g_midi +g_multi +g_ncm +g_nokia +g_printer +g_serial +g_webcam +g_zero +gadgetfs +gamecon +gameport +garmin_gps +garp +gcc-apq8084 +gcc-ipq806x +gcc-msm8660 +gcc-msm8916 +gcc-msm8960 +gcc-msm8974 +gcm +gdmtty +gdmulte +gdmwm +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +gennvm +gf128mul +gf2k +gfs2 +ghash-arm-ce +ghash-generic +gianfar_driver +gianfar_ptp +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +gluebi +go7007 +go7007-loader +go7007-usb +goku_udc +goodix +gp2ap002a00f +gp2ap020a00f +gpio +gpio-74x164 +gpio-74xx-mmio +gpio-addr-flash +gpio-adnp +gpio-adp5520 +gpio-adp5588 +gpio-altera +gpio-amd8111 +gpio-arizona +gpio-beeper +gpio-charger +gpio-crystalcove +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-fan +gpio-grgpio +gpio-ir-recv +gpio-janz-ttl +gpio-kempld +gpio-lp3943 +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-mc33880 +gpio-mcp23s08 +gpio-ml-ioh +gpio-pca953x +gpio-pcf857x +gpio-rcar +gpio-rdc321x +gpio-regulator +gpio-syscon +gpio-tps65912 +gpio-ucb1400 +gpio-viperboard +gpio-vx855 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio_backlight +gpio_keys +gpio_keys_polled +gpio_mouse +gpio_tilt_polled +gpio_wdt +gpmi_nand +gr_udc +grace +grcan +gre +grip +grip_mp +gs_fpga +gs_usb +gsc_hpdi +gspca_benq +gspca_conex +gspca_cpia1 +gspca_dtcs033 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_jl2005bcd +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stk1135 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_touptek +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtco +guillemot +gunze +gxt4500 +hackrf +hamachi +hampshire +hanwang +hci +hci_uart +hci_vhci +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcdrv +hdm_dim2 +hdm_i2c +hdm_usb +hdpvr +he +hexium_gemini +hexium_orion +hfc4s8s_l1 +hfc_usb +hfcmulti +hfcpci +hfcsusb +hfs +hfsplus +hi6421-pmic-core +hi6421-regulator +hi8435 +hid +hid-a4tech +hid-alps +hid-apple +hid-appleir +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-cherry +hid-chicony +hid-corsair +hid-cp2112 +hid-cypress +hid-dr +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-icade +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-lenovo +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-primax +hid-prodikeys +hid-rmi +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-isku +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-konepure +hid-roccat-kovaplus +hid-roccat-lua +hid-roccat-pyra +hid-roccat-ryos +hid-roccat-savu +hid-saitek +hid-samsung +hid-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steelseries +hid-sunplus +hid-thingm +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hidp +hifn_795x +highbank-cpufreq +highbank_l2_edac +highbank_mc_edac +hih6130 +hip04_eth +hisax +hisax_fcpcipnp +hisax_isac +hisax_st5481 +hisi-acpu-cpufreq +hisi504_nand +hisi_thermal +hix5hd2_gmac +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hnae +hns_dsaf +hns_enet_drv +hns_mdio +hopper +horus3a +host1x +hostap +hostap_pci +hostap_plx +hp100 +hpfs +hpilo +hpsa +hptiop +hsi +hsi_char +hso +hsr +hsu_dma +htc-pasic3 +hts221 +hts221_i2c +hts221_spi +htu21 +huawei_cdc_ncm +hwa-hc +hwa-rc +hwmon-vid +hwspinlock_core +hx8357 +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd8111 +i2c-arb-gpio-challenge +i2c-cbus-gpio +i2c-cros-ec-tunnel +i2c-designware-core +i2c-designware-pci +i2c-designware-platform +i2c-diolan-u2c +i2c-dln2 +i2c-emev2 +i2c-exynos5 +i2c-gpio +i2c-hid +i2c-hix5hd2 +i2c-i801 +i2c-isch +i2c-kempld +i2c-matroxfb +i2c-meson +i2c-mt65xx +i2c-mux +i2c-mux-gpio +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-pinctrl +i2c-mux-reg +i2c-mv64xxx +i2c-nforce2 +i2c-nomadik +i2c-ocores +i2c-parport +i2c-parport-light +i2c-pca-platform +i2c-piix4 +i2c-qup +i2c-rcar +i2c-riic +i2c-rk3x +i2c-robotfuzz-osif +i2c-sh_mobile +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-slave-eeprom +i2c-smbus +i2c-stub +i2c-taos-evm +i2c-tegra +i2c-tiny-usb +i2c-uniphier +i2c-uniphier-f +i2c-versatile +i2c-via +i2c-viapro +i2c-viperboard +i2c-xiic +i40e +i40evf +i5k_amb +i6300esb +i740fb +ib_addr +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mad +ib_mthca +ib_sa +ib_srp +ib_srpt +ib_ucm +ib_umad +ib_uverbs +ibmaem +ibmpex +icp_multi +icplus +ics932s401 +idma64 +idmouse +idt77252 +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +iforce +igb +igbvf +igorplugusb +iguanair +ii_pci20kc +iio-trig-interrupt +iio-trig-periodic-rtc +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili922x +ili9320 +imm +imon +impa7 +ims-pcu +imx-dma +imx-ipu-v3 +imx-ipuv3-crtc +imx-ldb +imx-sdma +imx-tve +imx074 +imx21-hcd +imx2_wdt +imx6q-cpufreq +imx6ul_tsc +imx_keypad +imx_thermal +imxdrm +imxfb +ina209 +ina2xx +industrialio +industrialio-buffer-cb +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +input-polldev +int51x1 +intel_th +intel_th_gth +intel_th_msu +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +interact +interval_tree_test +inv-mpu6050 +io_edgeport +io_ti +ioc4 +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_MASQUERADE +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_tunnel +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_wlc +ip_vs_wrr +ip_vti +ipack +ipaq +ipcomp +ipcomp6 +ipddp +iphase +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +ipr +iproc_nand +ips +ipt_CLUSTERIP +ipt_ECN +ipt_MASQUERADE +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipw +ipw2100 +ipw2200 +ipx +ir-hix5hd2 +ir-jvc-decoder +ir-kbd-i2c +ir-lirc-codec +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-usb +ir-xmp-decoder +ircomm +ircomm-tty +irda +irda-usb +irlan +irnet +irqbypass +irtty-sir +iscsi_boot_sysfs +iscsi_target_mod +iscsi_tcp +isdn +isdn_bsdcomp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl9305 +isofs +isp116x-hcd +isp1362-hcd +isp1704_charger +isp1760 +it87 +it913x +itd1000 +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_c2 +iw_cm +iw_cxgb3 +iw_cxgb4 +iw_nes +iwl3945 +iwl4965 +iwldvm +iwlegacy +iwlmvm +iwlwifi +ix2505v +ixgb +ixgbe +ixgbevf +janz-cmodio +janz-ican3 +jc42 +jedec_probe +jffs2 +jfs +jitterentropy_rng +jmb38x_ms +jme +joydev +joydump +jr3_pci +jsa1212 +jsm +k3dma +kafs +kalmia +kaweth +kbic +kbtab +kcomedilib +ke_counter +kempld-core +kempld_wdt +kernelcapi +keyspan +keyspan_pda +keyspan_remote +keywrap +kfifo_buf +khazad +kingsun-sir +kl5kusb105 +kmx61 +kobil_sct +ks0108 +ks8842 +ks8851 +ks8851_mll +ks959-sir +ksdazzle-sir +ksz884x +ktti +kvaser_pci +kvaser_usb +kxcjk-1013 +kxsd9 +kxtj9 +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l4f00242t03 +l64781 +lan78xx +lanai +lapb +lapbether +latch-addr-flash +lattice-ecp3-config +lcc-ipq806x +lcc-msm8960 +lcd +ld9040 +ldusb +lec +led-class-flash +leds-88pm860x +leds-aat1290 +leds-adp5520 +leds-bcm6328 +leds-bcm6358 +leds-bd2802 +leds-blinkm +leds-da903x +leds-da9052 +leds-dac124s085 +leds-gpio +leds-ktd2692 +leds-lm3530 +leds-lm3533 +leds-lm355x +leds-lm3642 +leds-lp3944 +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max77693 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-ns2 +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pwm +leds-regulator +leds-tca6507 +leds-tlc591xx +leds-wm831x-status +leds-wm8350 +ledtrig-backlight +ledtrig-camera +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-oneshot +ledtrig-timer +ledtrig-transient +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libceph +libcomposite +libcrc32c +libcxgbi +libertas +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libore +libosd +libsas +lightning +lineage-pem +linear +lirc_bt829 +lirc_dev +lirc_imon +lirc_parallel +lirc_sasem +lirc_serial +lirc_sir +lirc_zilog +lis3l02dq +lis3lv02d +lis3lv02d_i2c +lis3lv02d_spi +litelink-sir +lkkbd +llc +llc2 +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3630a_bl +lm3639_bl +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lms283gf05 +lms501kf03 +lnbh25 +lnbp21 +lnbp22 +lockd +locktorture +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp8755 +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpc_ich +lpc_sch +lpddr2_nvm +lpddr_cmds +lpfc +lru_cache +lrw +ltc2941-battery-gauge +ltc2945 +ltc2978 +ltc3589 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltr501 +ltv350qv +lv5207lp +lvstest +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m25p80 +m2m-deinterlace +m52790 +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +ma600-sir +mac-celtic +mac-centeuro +mac-croatian +mac-cyrillic +mac-gaelic +mac-greek +mac-iceland +mac-inuit +mac-roman +mac-romanian +mac-turkish +mac80211 +mac80211_hwsim +mac802154 +macb +macmodes +macvlan +macvtap +mag3110 +magellan +mailbox-altera +mailbox-test +mantis +mantis_core +map_absent +map_ram +map_rom +marvell +marvell-cesa +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max1111 +max11801_ts +max1363 +max14577 +max14577_charger +max1586 +max16064 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max197 +max20751 +max2165 +max3100 +max31790 +max3421-hcd +max34440 +max517 +max5821 +max63xx_wdt +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77686 +max77693 +max77693-haptic +max77693_charger +max77802 +max8649 +max8660 +max8688 +max8903_charger +max8907 +max8907-regulator +max8925-regulator +max8925_bl +max8925_onkey +max8925_power +max8952 +max8973-regulator +max8997 +max8997_charger +max8997_haptic +max8998 +max8998_charger +mb862xxfb +mb86a16 +mb86a20s +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc44s803 +mcb +mcb-pci +mceusb +mcp2120-sir +mcp251x +mcp3021 +mcp320x +mcp3422 +mcp4531 +mcp4725 +mcp4922 +mcryptd +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md-cluster +md4 +mdc800 +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-gpio +mdio-mux +mdio-mux-gpio +mdio-mux-mmioreg +mdio-xgene +me4000 +me_daq +media +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +memstick +men_z135_uart +men_z188_adc +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +meson-ir +meson_uart +meson_wdt +metro-usb +metronomefb +mf6x4 +mg_disk +mga +michael_mic +micrel +microchip +microread +microread_i2c +microtek +mii +minix +mip6 +mite +mk712 +mkiss +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx90614 +mlxsw_core +mlxsw_pci +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmcc-apq8084 +mmcc-msm8960 +mmcc-msm8974 +mmci_qcom_dml +mms114 +mn88472 +mn88473 +mos7720 +mos7840 +mostcore +moxa +mpc624 +mpl115 +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +msdos +msi001 +msi2500 +msm +msm-rng +msp3400 +mspro_block +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt29f_spinand +mt312 +mt352 +mt6311-regulator +mt6397-core +mt6397-regulator +mt7601u +mt8173-max98090 +mt8173-rt5650-rt5676 +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd_dataflash +mtdoops +mtdram +mtdswap +mtip32xx +mtk-afe-pcm +mtk-pmic-wrap +mtk-sd +mtk_wdt +mtouch +multipath +multiq3 +musb_am335x +musb_dsps +mv643xx_eth +mv_cesa +mv_u3d_core +mv_udc +mvmdio +mvneta +mvpp2 +mvsas +mvsdio +mvumi +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mx3_camera +mxb +mxc4005 +mxc_nand +mxc_w1 +mxcmmc +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxs-dcp +mxser +mxsfb +mxuport +myri10ge +n_gsm +n_hdlc +n_r3964 +n_tracerouter +n_tracesink +nandsim +national +natsemi +nau7802 +navman +nb8800 +nbd +nbpfaxi +nci +nci_spi +nci_uart +ncpfs +nct6683 +nct6775 +nct7802 +nct7904 +ne2k-pci +neofb +net1080 +net2272 +net2280 +netconsole +netjet +netlink_diag +netrom +netup-unidvb +netxen_nic +newtonkbd +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_ipv4 +nf_nat_ipv6 +nf_nat_irc +nf_nat_masquerade_ipv4 +nf_nat_masquerade_ipv6 +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_redirect +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_synproxy_core +nf_tables +nf_tables_arp +nf_tables_bridge +nf_tables_inet +nf_tables_ipv4 +nf_tables_ipv6 +nf_tables_netdev +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfcwilink +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_log +nfnetlink_queue +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat_ipv4 +nft_chain_nat_ipv6 +nft_chain_route_ipv4 +nft_chain_route_ipv6 +nft_compat +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_exthdr +nft_hash +nft_limit +nft_log +nft_masq +nft_masq_ipv4 +nft_masq_ipv6 +nft_meta +nft_meta_bridge +nft_nat +nft_queue +nft_rbtree +nft_redir +nft_redir_ipv4 +nft_redir_ipv6 +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +ni_6527 +ni_65xx +ni_660x +ni_670x +ni_at_a2150 +ni_at_ao +ni_atmio +ni_atmio16d +ni_labpc +ni_labpc_common +ni_labpc_pci +ni_pcidio +ni_pcimio +ni_tio +ni_tiocmd +ni_usb6501 +nicstar +nilfs2 +niu +nlmon +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +nokia-modem +nosy +notifier-error-inject +nouveau +nozomi +nps_enet +ns558 +ns83820 +nsp32 +ntb +ntb_netdev +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +null_blk +nvec +nvec_kbd +nvec_paz00 +nvec_power +nvec_ps2 +nvidiafb +nvme +nvmem-imx-ocotp +nvmem-vf610-ocotp +nvmem_core +nvmem_qfprom +nvmem_rockchip_efuse +nvram +nxp-nci +nxp-nci_i2c +nxp-ptn3460 +nxt200x +nxt6000 +objlayoutdriver +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +of_xilinx_wdt +ohci-omap3 +old_belkin-sir +omap +omap-aes +omap-des +omap-mailbox +omap-ocp2scp +omap-rng +omap-sham +omap-vout +omap2 +omap2430 +omap3-isp +omap3-rom-rng +omap4-keypad +omap_hdq +omap_hwspinlock +omap_remoteproc +omap_ssi +omap_ssi_port +omap_wdt +omapfb +omfs +omninet +on20 +on26 +onenand +opencores-kbd +openvswitch +oprofile +opt3001 +opticon +option +or51132 +or51211 +orinoco +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +orion_nand +orion_wdt +osd +osdblk +osst +oti6858 +ov2640 +ov5642 +ov6650 +ov7640 +ov7670 +ov772x +ov9640 +ov9740 +overlay +oxu210hp-hcd +p54common +p54pci +p54spi +p54usb +p8022 +p8023 +pa12203001 +palmas-pwrbutton +palmas-regulator +pandora_bl +panel +panel-dpi +panel-dsi-cm +panel-lg-lg4573 +panel-lgphilips-lb035q02 +panel-nec-nl8048hl11 +panel-samsung-ld9040 +panel-samsung-s6e8aa0 +panel-sharp-lq101r1sx01 +panel-sharp-ls037v7dw01 +panel-simple +panel-sony-acx565akm +panel-tpo-td028ttec1 +panel-tpo-td043mtea1 +parade-ps8622 +parallel-display +paride +parkbd +parport +parport_ax88796 +parport_pc +parport_serial +pata_ali +pata_amd +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_imx +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_of_platform +pata_oldpiix +pata_opti +pata_optidma +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sch +pata_serverworks +pata_sil680 +pata_sis +pata_sl82c105 +pata_triflex +pata_via +pbias-regulator +pc300too +pc87360 +pc87427 +pcap-regulator +pcap_keys +pcap_ts +pcbc +pcd +pcf50633 +pcf50633-adc +pcf50633-backlight +pcf50633-charger +pcf50633-gpio +pcf50633-input +pcf50633-regulator +pcf8574_keypad +pcf8591 +pch_udc +pci +pci-stub +pci200syn +pcie-iproc +pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad +pcmda12 +pcmmio +pcmuio +pcnet32 +pcrypt +pcwd_pci +pcwd_usb +pd +pda_power +pdc_adma +peak_pci +peak_usb +pegasus +penmount +percpu_test +pf +pfuze100-regulator +pg +phantom +phonet +phram +phy-am335x +phy-am335x-control +phy-bcm-kona-usb2 +phy-berlin-sata +phy-berlin-usb +phy-dm816x-usb +phy-exynos-usb2 +phy-exynos5-usbdrd +phy-gpio-vbus-usb +phy-hix5hd2-sata +phy-isp1301 +phy-msm-usb +phy-mt65xx-usb3 +phy-omap-control +phy-omap-usb2 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-qcom-8x16-usb +phy-qcom-apq8064-sata +phy-qcom-ipq806x-sata +phy-qcom-ufs +phy-qcom-ufs-qmp-14nm +phy-qcom-ufs-qmp-20nm +phy-rcar-gen2 +phy-rcar-usb +phy-rockchip-usb +phy-tahvo +phy-tegra-usb +phy-ti-pipe3 +phy-tusb1210 +phy-twl4030-usb +phy-twl6030-usb +physmap +physmap_of +pinctrl-apq8064 +pinctrl-apq8084 +pinctrl-ipq8064 +pinctrl-msm8660 +pinctrl-msm8916 +pinctrl-msm8960 +pinctrl-msm8x74 +pinctrl-ph1-ld4 +pinctrl-ph1-ld6b +pinctrl-ph1-pro4 +pinctrl-ph1-pro5 +pinctrl-ph1-sld8 +pinctrl-proxstream2 +pinctrl-spmi-gpio +pinctrl-spmi-mpp +pinctrl-ssbi-gpio +pinctrl-ssbi-mpp +pixcir_i2c_ts +pkcs7_test_key +pktcdvd +pktgen +pl172 +pl2303 +pl330 +plat-ram +plat_nand +platform_lcd +plip +plusb +pluto2 +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm80xx +pm8921-core +pm8941-pwrkey +pm8941-wled +pm8xxx-vibrator +pmbus +pmbus_core +pmc551 +pmcraid +pmic8xxx-keypad +pmic8xxx-pwrkey +pn533 +pn544 +pn544_i2c +pn_pep +poly1305_generic +port100 +powermate +powr1220 +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_parport +pptp +prism2_usb +ps2mult +psmouse +psnap +pt +pulsedlight-lidar-lite-v2 +pvrusb2 +pwc +pwm-atmel-hlcdc +pwm-beeper +pwm-berlin +pwm-fan +pwm-fsl-ftm +pwm-imx +pwm-lp3943 +pwm-mtk-disp +pwm-omap-dmtimer +pwm-pca9685 +pwm-rcar +pwm-regulator +pwm-renesas-tpu +pwm-rockchip +pwm-samsung +pwm-tegra +pwm-tiecap +pwm-tiehrpwm +pwm-twl +pwm-twl-led +pwm_bl +pxa168_eth +pxa27x_udc +pxa3xx_nand +qcaspi +qcaux +qcom-coincell +qcom-spmi-iadc +qcom-spmi-pmic +qcom-spmi-temp-alarm +qcom-spmi-vadc +qcom-wdt +qcom_bam_dma +qcom_gsbi +qcom_hwspinlock +qcom_rpm +qcom_rpm-regulator +qcom_smbb +qcom_smd-regulator +qcom_spmi-regulator +qcrypto +qcserial +qed +qede +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qm1d1c0042 +qmi_wwan +qnx4 +qnx6 +qoriq-cpufreq +qsemi +qt1010 +qt1070 +qt2160 +quatech2 +quota_tree +quota_v1 +quota_v2 +qxl +r128 +r592 +r6040 +r8152 +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r852 +r8712u +r8723au +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-bcm2048 +radio-i2c-si470x +radio-keene +radio-ma901 +radio-maxiradio +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-shark +radio-si476x +radio-tea5764 +radio-usb-si470x +radio-usb-si4713 +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ravb +raw +rbd +rbtree_test +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-asus-pc39 +rc-asus-ps3-100 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-delock-61959 +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-dvbsky +rc-em-terratec +rc-encore-enltv +rc-encore-enltv-fm53 +rc-encore-enltv2 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-pctv-sedna +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-reddo +rc-snapstream-firefly +rc-streamzap +rc-su3000 +rc-tbs-nec +rc-technisat-ts35 +rc-technisat-usb2 +rc-terratec-cinergy-c-pci +rc-terratec-cinergy-s2-hd +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-total-media-in-hand-02 +rc-trekstor +rc-tt-1500 +rc-twinhan-dtv-cab-ci +rc-twinhan1027 +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rc5t583-regulator +rcar-dmac +rcar-du-drm +rcar-hpbdma +rcar_can +rcar_jpu +rcar_thermal +rcar_vin +rdc321x-southbridge +rdma_cm +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +redboot +redrat3 +regmap-spmi +regulator-haptic +reiserfs +remoteproc +renesas_usbhs +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd_ftl +rfkill-gpio +rfkill-regulator +rio500 +rivafb +rj54n1cb0c +rk808 +rk808-regulator +rmd128 +rmd160 +rmd256 +rmd320 +rmobile-reset +rn5t618 +rn5t618-regulator +rn5t618_wdt +rndis_host +rndis_wlan +rockchip-io-domain +rockchip_drm_vop +rockchip_saradc +rockchip_thermal +rockchipdrm +rocket +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpcrdma +rpcsec_gss_krb5 +rpr0521 +rrpc +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt5033 +rt5033-regulator +rt5033_battery +rt61pci +rt73usb +rt9455_charger +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab3100 +rtc-abx80x +rtc-armada38x +rtc-as3722 +rtc-bq32k +rtc-bq4802 +rtc-cmos +rtc-da9052 +rtc-da9055 +rtc-da9063 +rtc-ds1286 +rtc-ds1305 +rtc-ds1307 +rtc-ds1343 +rtc-ds1347 +rtc-ds1374 +rtc-ds1390 +rtc-ds1511 +rtc-ds1553 +rtc-ds1672 +rtc-ds1685 +rtc-ds1742 +rtc-ds2404 +rtc-ds3232 +rtc-ds3234 +rtc-em3027 +rtc-fm3130 +rtc-hid-sensor-time +rtc-hym8563 +rtc-imxdi +rtc-isl12022 +rtc-isl12057 +rtc-isl1208 +rtc-lp8788 +rtc-m41t80 +rtc-m41t93 +rtc-m41t94 +rtc-m48t35 +rtc-m48t59 +rtc-m48t86 +rtc-max6900 +rtc-max6902 +rtc-max77686 +rtc-max77802 +rtc-max8907 +rtc-max8925 +rtc-max8997 +rtc-max8998 +rtc-mc13xxx +rtc-mcp795 +rtc-msm6242 +rtc-mt6397 +rtc-mxc +rtc-palmas +rtc-pcap +rtc-pcf2123 +rtc-pcf2127 +rtc-pcf50633 +rtc-pcf85063 +rtc-pcf8563 +rtc-pcf8583 +rtc-pl030 +rtc-pm8xxx +rtc-r9701 +rtc-rc5t583 +rtc-rk808 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rv8803 +rtc-rx4581 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-snvs +rtc-stk17ta8 +rtc-tegra +rtc-tps6586x +rtc-tps65910 +rtc-tps80031 +rtc-v3020 +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtc-zynqmp +rtd520 +rti800 +rti802 +rtl2830 +rtl2832 +rtl2832_sdr +rtl8150 +rtl8187 +rtl8188ee +rtl818x_pci +rtl8192c-common +rtl8192ce +rtl8192cu +rtl8192de +rtl8192ee +rtl8192se +rtl8723-common +rtl8723ae +rtl8723be +rtl8821ae +rtl8xxxu +rtl_pci +rtl_usb +rtllib +rtllib_crypt_ccmp +rtllib_crypt_tkip +rtllib_crypt_wep +rtlwifi +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rx51_battery +rxkad +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3c-fb +s3c2410_wdt +s3fb +s3fwrn5 +s3fwrn5_i2c +s526 +s5h1409 +s5h1411 +s5h1420 +s5m8767 +s5p-g2d +s5p-hdmi +s5p-hdmiphy +s5p-jpeg +s5p-mfc +s5p-mixer +s5p-sdo +s5p-sii9234 +s5p-sss +s626 +s6e63m0 +s921 +saa6588 +saa6752hs +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7706h +safe_serial +sahara +salsa20_generic +samsung +samsung-keypad +samsung-sxgbe +sata_inic162x +sata_mv +sata_nv +sata_promise +sata_qstor +sata_rcar +sata_sil +sata_sil24 +sata_sis +sata_svw +sata_sx4 +sata_uli +sata_via +sata_vsc +savage +savagefb +sbp_target +sbs-battery +sc16is7xx +sc92031 +sca3000 +sch5627 +sch5636 +sch56xx-common +sch_atm +sch_cbq +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_fq +sch_fq_codel +sch_gred +sch_hfsc +sch_hhf +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_pie +sch_plug +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_tbf +sch_teql +scpi-cpufreq +scpi-hwmon +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +scsi_transport_srp +sctp +sctp_probe +sdhci-dove +sdhci-msm +sdhci-of-arasan +sdhci-of-at91 +sdhci-of-esdhc +sdhci-pci +sdhci-pxav3 +sdhci-s3c +sdhci-tegra +sdhci_f_sdh30 +sdio_uart +seed +sensorhub +seqiv +ser_gigaset +serial-tegra +serial2002 +serio_raw +sermouse +serpent_generic +serport +ses +sfc +sh-sci +sh_eth +sh_flctl +sh_irda +sh_keysc +sh_mmcif +sh_mobile_ceu_camera +sh_mobile_csi2 +sh_mobile_hdmi +sh_mobile_lcdcfb +sh_mobile_meram +sh_mobile_sdhi +sh_veu +sh_vou +sha1-arm +sha1-arm-ce +sha1-arm-neon +sha2-arm-ce +sha256-arm +sha512-arm +shark2 +shdma +shmob-drm +sht15 +sht21 +shtc1 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sil164 +sir-dev +sis190 +sis5595 +sis900 +sisfb +sisusbvga +sit +sja1000 +sja1000_isa +sja1000_platform +skfp +skge +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +slcan +slip +slram +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smb347-charger +smc911x +smc91x +smd +smd-rpm +smem +smipcie +smm665 +smsc +smsc47b397 +smsc47m1 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsmdtv +smssdio +smsusb +snd-aaci +snd-ac97-codec +snd-ad1889 +snd-ak4113 +snd-ak4114 +snd-ak4xxx-adda +snd-aloop +snd-atiixp +snd-atiixp-modem +snd-au8810 +snd-au8820 +snd-au8830 +snd-aw2 +snd-bcd2000 +snd-bebob +snd-bt87x +snd-ca0106 +snd-cmipci +snd-cs4281 +snd-cs46xx +snd-ctxfi +snd-darla20 +snd-darla24 +snd-dice +snd-dummy +snd-echo3g +snd-ens1370 +snd-ens1371 +snd-firewire-digi00x +snd-firewire-lib +snd-firewire-tascam +snd-fireworks +snd-fm801 +snd-gina20 +snd-gina24 +snd-hda-codec +snd-hda-codec-analog +snd-hda-codec-ca0110 +snd-hda-codec-ca0132 +snd-hda-codec-cirrus +snd-hda-codec-cmedia +snd-hda-codec-conexant +snd-hda-codec-generic +snd-hda-codec-hdmi +snd-hda-codec-idt +snd-hda-codec-realtek +snd-hda-codec-si3054 +snd-hda-codec-via +snd-hda-core +snd-hda-intel +snd-hda-tegra +snd-hdsp +snd-hdspm +snd-hrtimer +snd-hwdep +snd-i2c +snd-ice1724 +snd-ice17xx-ak4xxx +snd-indigo +snd-indigodj +snd-indigodjx +snd-indigoio +snd-indigoiox +snd-intel8x0 +snd-intel8x0m +snd-isight +snd-korg1212 +snd-layla20 +snd-layla24 +snd-lola +snd-mia +snd-mixart +snd-mixer-oss +snd-mona +snd-mpu401 +snd-mpu401-uart +snd-mtpav +snd-mts64 +snd-nm256 +snd-opl3-lib +snd-opl3-synth +snd-oxfw +snd-oxygen +snd-oxygen-lib +snd-pcm-oss +snd-pcxhr +snd-portman2x4 +snd-pt2258 +snd-rawmidi +snd-riptide +snd-rme32 +snd-rme96 +snd-rme9652 +snd-scs1x +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-soc-ac97 +snd-soc-adau1701 +snd-soc-ak4104 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-alc5623 +snd-soc-alc5632 +snd-soc-apq8016-sbc +snd-soc-armada-370-db +snd-soc-arndale-rt5631 +snd-soc-cs35l32 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42xx8 +snd-soc-cs42xx8-i2c +snd-soc-cs4349 +snd-soc-davinci-mcasp +snd-soc-dmic +snd-soc-edma +snd-soc-es8328 +snd-soc-es8328-i2c +snd-soc-es8328-spi +snd-soc-eukrea-tlv320 +snd-soc-evm +snd-soc-fsi +snd-soc-fsl-asoc-card +snd-soc-fsl-asrc +snd-soc-fsl-esai +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-utils +snd-soc-gtm601 +snd-soc-i2s +snd-soc-idma +snd-soc-imx-es8328 +snd-soc-imx-mc13783 +snd-soc-imx-spdif +snd-soc-imx-ssi +snd-soc-imx-wm8962 +snd-soc-kirkwood +snd-soc-lpass-apq8016 +snd-soc-lpass-cpu +snd-soc-lpass-ipq806x +snd-soc-lpass-platform +snd-soc-max98090 +snd-soc-max98095 +snd-soc-max98357a +snd-soc-mc13783 +snd-soc-odroidx2-max98090 +snd-soc-omap-abe-twl6040 +snd-soc-omap-dmic +snd-soc-omap-hdmi-audio +snd-soc-omap-mcpdm +snd-soc-omap3pandora +snd-soc-pcm +snd-soc-pcm1681 +snd-soc-pcm1792a-codec +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-rcar +snd-soc-rl6231 +snd-soc-rockchip-i2s +snd-soc-rockchip-max98090 +snd-soc-rockchip-rt5645 +snd-soc-rockchip-spdif +snd-soc-rsrc-card +snd-soc-rt5631 +snd-soc-rt5640 +snd-soc-rt5645 +snd-soc-rt5677 +snd-soc-rt5677-spi +snd-soc-rx51 +snd-soc-s3c-dma +snd-soc-samsung-spdif +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-simple-card +snd-soc-smdk-spdif +snd-soc-smdk-wm8994 +snd-soc-smdk-wm8994pcm +snd-soc-snow +snd-soc-spdif-rx +snd-soc-spdif-tx +snd-soc-ssm2602 +snd-soc-ssm2602-i2c +snd-soc-ssm2602-spi +snd-soc-ssm4567 +snd-soc-sta32x +snd-soc-sta350 +snd-soc-sti-sas +snd-soc-storm +snd-soc-tas2552 +snd-soc-tas5086 +snd-soc-tas571x +snd-soc-tegra-alc5632 +snd-soc-tegra-max98090 +snd-soc-tegra-pcm +snd-soc-tegra-rt5640 +snd-soc-tegra-rt5677 +snd-soc-tegra-trimslice +snd-soc-tegra-utils +snd-soc-tegra-wm8753 +snd-soc-tegra-wm8903 +snd-soc-tegra-wm9712 +snd-soc-tegra20-ac97 +snd-soc-tegra20-das +snd-soc-tegra20-i2s +snd-soc-tegra20-spdif +snd-soc-tegra30-ahub +snd-soc-tegra30-i2s +snd-soc-tfa9879 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic3x +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-twl6040 +snd-soc-wm-hubs +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8962 +snd-soc-wm8978 +snd-soc-wm8994 +snd-soc-wm9712 +snd-soc-xtfpga-i2s +snd-ua101 +snd-usb-6fire +snd-usb-audio +snd-usb-caiaq +snd-usb-hiface +snd-usb-line6 +snd-usb-pod +snd-usb-podhd +snd-usb-toneport +snd-usb-variax +snd-usbmidi-lib +snd-via82xx +snd-via82xx-modem +snd-virmidi +snd-virtuoso +snd-vx-lib +snd-vx222 +snd-ymfpci +snic +snvs_pwrkey +soc_button_array +soc_camera +soc_camera_platform +soc_mediabus +soc_scale_crop +softdog +softing +solo6x10 +solos-pci +sony-btf-mpx +sp2 +sp805_wdt +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +speedfax +speedtch +spi-altera +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-fsl-dspi +spi-gpio +spi-imx +spi-lm70llp +spi-meson-spifc +spi-mt65xx +spi-nor +spi-oc-tiny +spi-orion +spi-pl022 +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-qup +spi-rockchip +spi-rspi +spi-s3c64xx +spi-sc18is602 +spi-sh-hspi +spi-sh-msiof +spi-tegra114 +spi-tegra20-sflash +spi-tegra20-slink +spi-ti-qspi +spi-tle62x0 +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spmi +spmi-pmic-arb +sr9700 +sr9800 +ssb +ssbi +ssd1307fb +ssfdc +ssi_protocol +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +sstfb +ssu100 +st +st-asc +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_spi +st_magn +st_magn_i2c +st_magn_spi +st_pressure +st_pressure_i2c +st_pressure_spi +st_sensors +st_sensors_i2c +st_sensors_spi +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +ste_modem_rproc +stex +stinger +stir4200 +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm32-usart +stm_console +stm_core +stmmac +stmmac-platform +stmpe-keypad +stmpe-ts +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv6110 +stv6110x +sudmac +sun4i-codec +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +svgalib +sx8 +sx8654 +sx9500 +sym53c8xx +symbolserial +synaptics_i2c +synaptics_i2c_rmi4 +synaptics_usb +synclink_gt +synclinkmp +syscopyarea +sysfillrect +sysimgblt +sysv +t1pci +t5403 +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +target_core_user +tc3589x-keypad +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tcs3414 +tcs3472 +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tda998x +tdfx +tdfxfb +tdo24m +tea +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tef6862 +tegra-devfreq +tegra-drm +tegra-kbc +tegra124-cpufreq +tegra_wdt +tehuti +tekram-sir +teranetics +test-hexdump +test-kprobes +test-kstrtox +test-string_helpers +test_bpf +test_firmware +test_module +test_power +test_printf +test_static_key_base +test_static_keys +test_udelay +test_user_copy +tg3 +tgr192 +thmc50 +thunderbolt +ti-adc081c +ti-adc128s052 +ti-soc-thermal +ti-vpe +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_dac7512 +ti_hecc +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +tilcdc +timeriomem-rng +tipc +tlan +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmio_mmc +tmio_mmc_core +tmio_nand +tmiofb +tmp006 +tmp102 +tmp103 +tmp401 +tmp421 +toim3232-sir +torture +toshsd +touchit213 +touchright +touchwin +tpci200 +tpm-rng +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tps40422 +tps51632-regulator +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65090-charger +tps65090-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps65218-regulator +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps80031-regulator +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsl2550 +tsl2563 +tsl2583 +tsl2x7x_core +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tusb6010 +tvaudio +tveeprom +tvp5150 +tw2804 +tw68 +tw9903 +tw9906 +tw9910 +twidjoy +twl4030-madc +twl4030-madc-hwmon +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6040-vibra +twofish_common +twofish_generic +typhoon +u132-hcd +u_ether +u_serial +uartlite +uas +ubi +ubifs +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +uda1342 +udc-xilinx +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufshcd +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uli526x +ulpi +umc +umem +ums-alauda +ums-cypress +ums-datafab +ums-eneub6250 +ums-freecom +ums-isd200 +ums-jumpshot +ums-karma +ums-onetouch +ums-realtek +ums-sddr09 +ums-sddr55 +ums-usbat +unix_diag +upd64031a +upd64083 +us5182d +usb-dmac +usb-serial-simple +usb-storage +usb3503 +usb8xxx +usb_8dev +usb_debug +usb_f_acm +usb_f_ecm +usb_f_ecm_subset +usb_f_eem +usb_f_fs +usb_f_hid +usb_f_mass_storage +usb_f_midi +usb_f_ncm +usb_f_obex +usb_f_phonet +usb_f_printer +usb_f_rndis +usb_f_serial +usb_f_ss_lb +usb_f_uac1 +usb_f_uac2 +usb_f_uvc +usb_gigaset +usb_wwan +usbatm +usbdux +usbduxfast +usbduxsigma +usbhid +usbip-core +usbip-host +usbkbd +usblcd +usbled +usblp +usbmisc_imx +usbmon +usbmouse +usbnet +usbserial +usbsevseg +usbtest +usbtmc +usbtouchscreen +usbtv +usbvision +usdhi6rol0 +userio +userspace-consumer +ushc +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-dv-timings +v4l2-flash-led-class +v4l2-mem2mem +vcan +vcnl4000 +ves1820 +ves1x93 +veth +vexpress +vexpress-spc-cpufreq +vf610_adc +vf610_nfc +vfio +vfio-amba +vfio-pci +vfio-platform +vfio-platform-amdxgbe +vfio-platform-base +vfio-platform-calxedaxgmac +vfio_virqfd +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_net +vhost_scsi +via +via-rhine +via-sdmmc +via-velocity +via686a +videobuf-core +videobuf-dma-contig +videobuf-dma-sg +videobuf-dvb +videobuf-vmalloc +videobuf2-core +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-dvb +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videodev +vim2m +viperboard +viperboard_adc +virtio-gpu +virtio-rng +virtio_input +virtio_rpmsg_bus +virtio_scsi +virtual +visor +vitesse +vivid +vlsi_ir +vmac +vme_pio2 +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmxnet3 +vp27smpx +vport-geneve +vport-gre +vport-vxlan +vrf +vringh +vsock +vsp1 +vsxxxaa +vt1211 +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxge +vxlan +vz89x +w1-gpio +w1_bq27000 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1_ds2781 +w1_ds28e04 +w1_smem +w1_therm +w5100 +w5300 +w6692 +w83627ehf +w83627hf +w83781d +w83791d +w83792d +w83793 +w83795 +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +walkera0701 +wanxl +warrior +wcn36xx +wd719x +wdt87xx_i2c +wdt_pci +whc-rc +whci +whci-hcd +whiteheat +wil6210 +wimax +winbond-840 +wire +wishbone-serial +wkup_m3_rproc +wl1251 +wl1251_sdio +wl1251_spi +wl1273-core +wl12xx +wl18xx +wlcore +wlcore_sdio +wlcore_spi +wm831x-dcdc +wm831x-hwmon +wm831x-isink +wm831x-ldo +wm831x-on +wm831x-ts +wm831x_backup +wm831x_bl +wm831x_power +wm831x_wdt +wm8350-hwmon +wm8350-regulator +wm8350_power +wm8350_wdt +wm8400-regulator +wm8739 +wm8775 +wm8994-core +wm8994-irq +wm8994-regmap +wm8994-regulator +wm97xx-ts +wp512 +wusb-cbaf +wusb-wa +wusbcore +x25 +x25_asy +x_tables +xc4000 +xc5000 +xcbc +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_ipcomp +xfrm_user +xfs +xgifb +xgmac +xhci-plat-hcd +xilinx-tpg +xilinx-video +xilinx-vtc +xilinx_uartps +xillybus_core +xillybus_of +xillybus_pcie +xor +xor-neon +xpad +xr_usb_serial_common +xsens_mt +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +xt_NETMAP +xt_NFLOG +xt_NFQUEUE +xt_RATEEST +xt_REDIRECT +xt_SECMARK +xt_TCPMSS +xt_TCPOPTSTRIP +xt_TEE +xt_TPROXY +xt_TRACE +xt_addrtype +xt_bpf +xt_cgroup +xt_cluster +xt_comment +xt_connbytes +xt_connlabel +xt_connlimit +xt_connmark +xt_conntrack +xt_cpu +xt_dccp +xt_devgroup +xt_dscp +xt_ecn +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_ipcomp +xt_iprange +xt_ipvs +xt_l2tp +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_nat +xt_nfacct +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_realm +xt_recent +xt_sctp +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_tcpudp +xt_time +xt_u32 +xtkbd +xts +xusbatm +xz_dec_test +yam +yealink +yellowfin +yurex +zaurus +zd1201 +zd1211rw +zforce_ts +zhenhua +zl10036 +zl10039 +zl10353 +zl6100 +zlib +zr364xx +zram +zynq-fpga only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-106.129/fwinfo +++ linux-raspi2-4.4.0/debian.master/abi/4.4.0-106.129/fwinfo @@ -0,0 +1,998 @@ +firmware: 3826.arm +firmware: 3com/typhoon.bin +firmware: 6fire/dmx6fireap.ihx +firmware: 6fire/dmx6firecf.bin +firmware: 6fire/dmx6firel2.ihx +firmware: BCM2033-FW.bin +firmware: BCM2033-MD.hex +firmware: BT3CPCC.bin +firmware: RTL8192E/boot.img +firmware: RTL8192E/data.img +firmware: RTL8192E/main.img +firmware: RTL8192U/boot.img +firmware: RTL8192U/data.img +firmware: RTL8192U/main.img +firmware: a300_pfp.fw +firmware: a300_pm4.fw +firmware: a330_pfp.fw +firmware: a330_pm4.fw +firmware: a420_pfp.fw +firmware: a420_pm4.fw +firmware: acenic/tg1.bin +firmware: acenic/tg2.bin +firmware: adaptec/starfire_rx.bin +firmware: adaptec/starfire_tx.bin +firmware: advansys/3550.bin +firmware: advansys/38C0800.bin +firmware: advansys/38C1600.bin +firmware: advansys/mcode.bin +firmware: agere_ap_fw.bin +firmware: agere_sta_fw.bin +firmware: aic94xx-seq.fw +firmware: amdgpu/carrizo_ce.bin +firmware: amdgpu/carrizo_me.bin +firmware: amdgpu/carrizo_mec.bin +firmware: amdgpu/carrizo_mec2.bin +firmware: amdgpu/carrizo_pfp.bin +firmware: amdgpu/carrizo_rlc.bin +firmware: amdgpu/carrizo_sdma.bin +firmware: amdgpu/carrizo_sdma1.bin +firmware: amdgpu/carrizo_uvd.bin +firmware: amdgpu/carrizo_vce.bin +firmware: amdgpu/fiji_ce.bin +firmware: amdgpu/fiji_me.bin +firmware: amdgpu/fiji_mec.bin +firmware: amdgpu/fiji_mec2.bin +firmware: amdgpu/fiji_pfp.bin +firmware: amdgpu/fiji_rlc.bin +firmware: amdgpu/fiji_sdma.bin +firmware: amdgpu/fiji_sdma1.bin +firmware: amdgpu/fiji_smc.bin +firmware: amdgpu/fiji_uvd.bin +firmware: amdgpu/fiji_vce.bin +firmware: amdgpu/stoney_ce.bin +firmware: amdgpu/stoney_me.bin +firmware: amdgpu/stoney_mec.bin +firmware: amdgpu/stoney_pfp.bin +firmware: amdgpu/stoney_rlc.bin +firmware: amdgpu/stoney_sdma.bin +firmware: amdgpu/stoney_uvd.bin +firmware: amdgpu/stoney_vce.bin +firmware: amdgpu/tonga_ce.bin +firmware: amdgpu/tonga_mc.bin +firmware: amdgpu/tonga_me.bin +firmware: amdgpu/tonga_mec.bin +firmware: amdgpu/tonga_mec2.bin +firmware: amdgpu/tonga_pfp.bin +firmware: amdgpu/tonga_rlc.bin +firmware: amdgpu/tonga_sdma.bin +firmware: amdgpu/tonga_sdma1.bin +firmware: amdgpu/tonga_smc.bin +firmware: amdgpu/tonga_uvd.bin +firmware: amdgpu/tonga_vce.bin +firmware: amdgpu/topaz_ce.bin +firmware: amdgpu/topaz_mc.bin +firmware: amdgpu/topaz_me.bin +firmware: amdgpu/topaz_mec.bin +firmware: amdgpu/topaz_pfp.bin +firmware: amdgpu/topaz_rlc.bin +firmware: amdgpu/topaz_sdma.bin +firmware: amdgpu/topaz_sdma1.bin +firmware: amdgpu/topaz_smc.bin +firmware: ar5523.bin +firmware: asihpi/dsp5000.bin +firmware: asihpi/dsp6200.bin +firmware: asihpi/dsp6205.bin +firmware: asihpi/dsp6400.bin +firmware: asihpi/dsp6600.bin +firmware: asihpi/dsp8700.bin +firmware: asihpi/dsp8900.bin +firmware: ast_dp501_fw.bin +firmware: ath10k/QCA6174/hw2.1/board-2.bin +firmware: ath10k/QCA6174/hw2.1/board.bin +firmware: ath10k/QCA6174/hw2.1/firmware-4.bin +firmware: ath10k/QCA6174/hw2.1/firmware-5.bin +firmware: ath10k/QCA6174/hw3.0/board-2.bin +firmware: ath10k/QCA6174/hw3.0/board.bin +firmware: ath10k/QCA6174/hw3.0/firmware-4.bin +firmware: ath10k/QCA6174/hw3.0/firmware-5.bin +firmware: ath10k/QCA9377/hw1.0/board.bin +firmware: ath10k/QCA9377/hw1.0/firmware-5.bin +firmware: ath10k/QCA988X/hw2.0/board-2.bin +firmware: ath10k/QCA988X/hw2.0/board.bin +firmware: ath10k/QCA988X/hw2.0/firmware-2.bin +firmware: ath10k/QCA988X/hw2.0/firmware-3.bin +firmware: ath10k/QCA988X/hw2.0/firmware-4.bin +firmware: ath10k/QCA988X/hw2.0/firmware-5.bin +firmware: ath10k/QCA988X/hw2.0/firmware.bin +firmware: ath3k-1.fw +firmware: ath6k/AR6003/hw2.0/athwlan.bin.z77 +firmware: ath6k/AR6003/hw2.0/bdata.SD31.bin +firmware: ath6k/AR6003/hw2.0/bdata.bin +firmware: ath6k/AR6003/hw2.0/data.patch.bin +firmware: ath6k/AR6003/hw2.0/otp.bin.z77 +firmware: ath6k/AR6003/hw2.1.1/athwlan.bin +firmware: ath6k/AR6003/hw2.1.1/bdata.SD31.bin +firmware: ath6k/AR6003/hw2.1.1/bdata.bin +firmware: ath6k/AR6003/hw2.1.1/data.patch.bin +firmware: ath6k/AR6003/hw2.1.1/otp.bin +firmware: ath6k/AR6004/hw1.0/bdata.DB132.bin +firmware: ath6k/AR6004/hw1.0/bdata.bin +firmware: ath6k/AR6004/hw1.0/fw.ram.bin +firmware: ath6k/AR6004/hw1.1/bdata.DB132.bin +firmware: ath6k/AR6004/hw1.1/bdata.bin +firmware: ath6k/AR6004/hw1.1/fw.ram.bin +firmware: ath6k/AR6004/hw1.2/bdata.bin +firmware: ath6k/AR6004/hw1.2/fw.ram.bin +firmware: ath6k/AR6004/hw1.3/bdata.bin +firmware: ath6k/AR6004/hw1.3/fw.ram.bin +firmware: ath9k_htc/htc_7010-1.4.0.fw +firmware: ath9k_htc/htc_9271-1.4.0.fw +firmware: atmel_at76c502-wpa.bin +firmware: atmel_at76c502.bin +firmware: atmel_at76c502_3com-wpa.bin +firmware: atmel_at76c502_3com.bin +firmware: atmel_at76c502d-wpa.bin +firmware: atmel_at76c502d.bin +firmware: atmel_at76c502e-wpa.bin +firmware: atmel_at76c502e.bin +firmware: atmel_at76c503-i3861.bin +firmware: atmel_at76c503-i3863.bin +firmware: atmel_at76c503-rfmd-acc.bin +firmware: atmel_at76c503-rfmd.bin +firmware: atmel_at76c504-wpa.bin +firmware: atmel_at76c504.bin +firmware: atmel_at76c504_2958-wpa.bin +firmware: atmel_at76c504_2958.bin +firmware: atmel_at76c504a_2958-wpa.bin +firmware: atmel_at76c504a_2958.bin +firmware: atmel_at76c505-rfmd.bin +firmware: atmel_at76c505-rfmd2958.bin +firmware: atmel_at76c505a-rfmd2958.bin +firmware: atmel_at76c505amx-rfmd.bin +firmware: atmel_at76c506-wpa.bin +firmware: atmel_at76c506.bin +firmware: atmsar11.fw +firmware: atsc_denver.inp +firmware: av7110/bootcode.bin +firmware: b43/ucode11.fw +firmware: b43/ucode13.fw +firmware: b43/ucode14.fw +firmware: b43/ucode15.fw +firmware: b43/ucode16_mimo.fw +firmware: b43/ucode5.fw +firmware: b43/ucode9.fw +firmware: b43legacy/ucode2.fw +firmware: b43legacy/ucode4.fw +firmware: bfubase.frm +firmware: bnx2/bnx2-mips-06-6.2.3.fw +firmware: bnx2/bnx2-mips-09-6.2.1b.fw +firmware: bnx2/bnx2-rv2p-06-6.0.15.fw +firmware: bnx2/bnx2-rv2p-09-6.0.17.fw +firmware: bnx2/bnx2-rv2p-09ax-6.0.17.fw +firmware: bnx2x/bnx2x-e1-7.12.30.0.fw +firmware: bnx2x/bnx2x-e1h-7.12.30.0.fw +firmware: bnx2x/bnx2x-e2-7.12.30.0.fw +firmware: brcm/bcm43xx-0.fw +firmware: brcm/bcm43xx_hdr-0.fw +firmware: brcm/brcmfmac43143-sdio.bin +firmware: brcm/brcmfmac43143-sdio.txt +firmware: brcm/brcmfmac43143.bin +firmware: brcm/brcmfmac43236b.bin +firmware: brcm/brcmfmac43241b0-sdio.bin +firmware: brcm/brcmfmac43241b0-sdio.txt +firmware: brcm/brcmfmac43241b4-sdio.bin +firmware: brcm/brcmfmac43241b4-sdio.txt +firmware: brcm/brcmfmac43241b5-sdio.bin +firmware: brcm/brcmfmac43241b5-sdio.txt +firmware: brcm/brcmfmac43242a.bin +firmware: brcm/brcmfmac4329-sdio.bin +firmware: brcm/brcmfmac4329-sdio.txt +firmware: brcm/brcmfmac4330-sdio.bin +firmware: brcm/brcmfmac4330-sdio.txt +firmware: brcm/brcmfmac4334-sdio.bin +firmware: brcm/brcmfmac4334-sdio.txt +firmware: brcm/brcmfmac43340-sdio.bin +firmware: brcm/brcmfmac43340-sdio.txt +firmware: brcm/brcmfmac4335-sdio.bin +firmware: brcm/brcmfmac4335-sdio.txt +firmware: brcm/brcmfmac43362-sdio.bin +firmware: brcm/brcmfmac43362-sdio.txt +firmware: brcm/brcmfmac4339-sdio.bin +firmware: brcm/brcmfmac4339-sdio.txt +firmware: brcm/brcmfmac43430-sdio.bin +firmware: brcm/brcmfmac43430-sdio.txt +firmware: brcm/brcmfmac43455-sdio.bin +firmware: brcm/brcmfmac43455-sdio.txt +firmware: brcm/brcmfmac4350-pcie.bin +firmware: brcm/brcmfmac4350-pcie.txt +firmware: brcm/brcmfmac4354-sdio.bin +firmware: brcm/brcmfmac4354-sdio.txt +firmware: brcm/brcmfmac4356-pcie.bin +firmware: brcm/brcmfmac4356-pcie.txt +firmware: brcm/brcmfmac43569.bin +firmware: brcm/brcmfmac43570-pcie.bin +firmware: brcm/brcmfmac43570-pcie.txt +firmware: brcm/brcmfmac4358-pcie.bin +firmware: brcm/brcmfmac4358-pcie.txt +firmware: brcm/brcmfmac43602-pcie.bin +firmware: brcm/brcmfmac43602-pcie.txt +firmware: brcm/brcmfmac4365b-pcie.bin +firmware: brcm/brcmfmac4365b-pcie.txt +firmware: brcm/brcmfmac4366b-pcie.bin +firmware: brcm/brcmfmac4366b-pcie.txt +firmware: brcm/brcmfmac4371-pcie.bin +firmware: brcm/brcmfmac4371-pcie.txt +firmware: c218tunx.cod +firmware: c320tunx.cod +firmware: carl9170-1.fw +firmware: cbfw-3.2.3.0.bin +firmware: cis/3CCFEM556.cis +firmware: cis/3CXEM556.cis +firmware: cis/COMpad2.cis +firmware: cis/COMpad4.cis +firmware: cis/DP83903.cis +firmware: cis/LA-PCM.cis +firmware: cis/MT5634ZLX.cis +firmware: cis/NE2K.cis +firmware: cis/PCMLM28.cis +firmware: cis/PE-200.cis +firmware: cis/PE520.cis +firmware: cis/RS-COM-2P.cis +firmware: cis/SW_555_SER.cis +firmware: cis/SW_7xx_SER.cis +firmware: cis/SW_8xx_SER.cis +firmware: cis/tamarack.cis +firmware: cmmb_ming_app.inp +firmware: cmmb_vega_12mhz.inp +firmware: cmmb_venice_12mhz.inp +firmware: comedi/jr3pci.idm +firmware: cp204unx.cod +firmware: cpia2/stv0672_vp4.bin +firmware: cs46xx/cwc4630 +firmware: cs46xx/cwcasync +firmware: cs46xx/cwcbinhack +firmware: cs46xx/cwcdma +firmware: cs46xx/cwcsnoop +firmware: ct2fw-3.2.3.0.bin +firmware: ct2fw-3.2.5.1.bin +firmware: ctefx.bin +firmware: ctfw-3.2.3.0.bin +firmware: ctfw-3.2.5.1.bin +firmware: cxgb3/ael2005_opt_edc.bin +firmware: cxgb3/ael2005_twx_edc.bin +firmware: cxgb3/ael2020_twx_edc.bin +firmware: cxgb3/t3b_psram-1.1.0.bin +firmware: cxgb3/t3c_psram-1.1.0.bin +firmware: cxgb3/t3fw-7.12.0.bin +firmware: cxgb4/t4fw.bin +firmware: cxgb4/t5fw.bin +firmware: cxgb4/t6fw.bin +firmware: cyzfirm.bin +firmware: daqboard2000_firmware.bin +firmware: digiface_firmware.bin +firmware: digiface_firmware_rev11.bin +firmware: dvb-cx18-mpc718-mt352.fw +firmware: dvb-demod-m88ds3103.fw +firmware: dvb-demod-m88rs6000.fw +firmware: dvb-demod-mn88472-02.fw +firmware: dvb-demod-mn88473-01.fw +firmware: dvb-demod-si2165.fw +firmware: dvb-demod-si2168-a20-01.fw +firmware: dvb-demod-si2168-a30-01.fw +firmware: dvb-demod-si2168-b40-01.fw +firmware: dvb-fe-af9013.fw +firmware: dvb-fe-cx24117.fw +firmware: dvb-fe-drxj-mc-1.0.8.fw +firmware: dvb-fe-ds3000.fw +firmware: dvb-fe-tda10071.fw +firmware: dvb-fe-xc4000-1.4.1.fw +firmware: dvb-fe-xc4000-1.4.fw +firmware: dvb-fe-xc5000-1.6.114.fw +firmware: dvb-fe-xc5000c-4.1.30.7.fw +firmware: dvb-tuner-si2158-a20-01.fw +firmware: dvb-usb-af9015.fw +firmware: dvb-usb-af9035-02.fw +firmware: dvb-usb-dib0700-1.20.fw +firmware: dvb-usb-dw2101.fw +firmware: dvb-usb-dw2102.fw +firmware: dvb-usb-dw2104.fw +firmware: dvb-usb-dw3101.fw +firmware: dvb-usb-ec168.fw +firmware: dvb-usb-it9135-01.fw +firmware: dvb-usb-it9135-02.fw +firmware: dvb-usb-it9303-01.fw +firmware: dvb-usb-lme2510-lg.fw +firmware: dvb-usb-lme2510-s0194.fw +firmware: dvb-usb-lme2510c-lg.fw +firmware: dvb-usb-lme2510c-rs2000.fw +firmware: dvb-usb-lme2510c-s0194.fw +firmware: dvb-usb-lme2510c-s7395.fw +firmware: dvb-usb-p1100.fw +firmware: dvb-usb-p7500.fw +firmware: dvb-usb-s630.fw +firmware: dvb-usb-s660.fw +firmware: dvb-usb-terratec-h7-az6007.fw +firmware: dvb_nova_12mhz.inp +firmware: dvb_nova_12mhz_b0.inp +firmware: dvb_rio.inp +firmware: dvbh_rio.inp +firmware: e100/d101m_ucode.bin +firmware: e100/d101s_ucode.bin +firmware: e100/d102e_ucode.bin +firmware: ea/3g_asic.fw +firmware: ea/darla20_dsp.fw +firmware: ea/darla24_dsp.fw +firmware: ea/echo3g_dsp.fw +firmware: ea/gina20_dsp.fw +firmware: ea/gina24_301_asic.fw +firmware: ea/gina24_301_dsp.fw +firmware: ea/gina24_361_asic.fw +firmware: ea/gina24_361_dsp.fw +firmware: ea/indigo_dj_dsp.fw +firmware: ea/indigo_djx_dsp.fw +firmware: ea/indigo_dsp.fw +firmware: ea/indigo_io_dsp.fw +firmware: ea/indigo_iox_dsp.fw +firmware: ea/layla20_asic.fw +firmware: ea/layla20_dsp.fw +firmware: ea/layla24_1_asic.fw +firmware: ea/layla24_2A_asic.fw +firmware: ea/layla24_2S_asic.fw +firmware: ea/layla24_dsp.fw +firmware: ea/loader_dsp.fw +firmware: ea/mia_dsp.fw +firmware: ea/mona_2_asic.fw +firmware: ea/mona_301_1_asic_48.fw +firmware: ea/mona_301_1_asic_96.fw +firmware: ea/mona_301_dsp.fw +firmware: ea/mona_361_1_asic_48.fw +firmware: ea/mona_361_1_asic_96.fw +firmware: ea/mona_361_dsp.fw +firmware: edgeport/boot.fw +firmware: edgeport/boot2.fw +firmware: edgeport/down.fw +firmware: edgeport/down2.fw +firmware: edgeport/down3.bin +firmware: emi26/bitstream.fw +firmware: emi26/firmware.fw +firmware: emi26/loader.fw +firmware: emi62/bitstream.fw +firmware: emi62/loader.fw +firmware: emi62/spdif.fw +firmware: emu/audio_dock.fw +firmware: emu/emu0404.fw +firmware: emu/emu1010_notebook.fw +firmware: emu/emu1010b.fw +firmware: emu/hana.fw +firmware: emu/micro_dock.fw +firmware: ene-ub6250/ms_init.bin +firmware: ene-ub6250/ms_rdwr.bin +firmware: ene-ub6250/msp_rdwr.bin +firmware: ene-ub6250/sd_init1.bin +firmware: ene-ub6250/sd_init2.bin +firmware: ene-ub6250/sd_rdwr.bin +firmware: ess/maestro3_assp_kernel.fw +firmware: ess/maestro3_assp_minisrc.fw +firmware: f2255usb.bin +firmware: fm_radio.inp +firmware: fm_radio_rio.inp +firmware: fw.ram.bin +firmware: go7007/go7007fw.bin +firmware: go7007/go7007tv.bin +firmware: go7007/lr192.fw +firmware: go7007/px-m402u.fw +firmware: go7007/px-tv402u.fw +firmware: go7007/s2250-1.fw +firmware: go7007/s2250-2.fw +firmware: go7007/wis-startrek.fw +firmware: i1480-phy-0.0.bin +firmware: i1480-pre-phy-0.0.bin +firmware: i1480-usb-0.0.bin +firmware: i2400m-fw-usb-1.5.sbcf +firmware: i6050-fw-usb-1.5.sbcf +firmware: i915/bxt_dmc_ver1.bin +firmware: i915/skl_dmc_ver1.bin +firmware: i915/skl_guc_ver4.bin +firmware: i915/skl_guc_ver6.bin +firmware: icom_asc.bin +firmware: icom_call_setup.bin +firmware: icom_res_dce.bin +firmware: intel/ibt-11-5.ddc +firmware: intel/ibt-11-5.sfi +firmware: intel/ibt-12-16.ddc +firmware: intel/ibt-12-16.sfi +firmware: ipw2100-1.3-i.fw +firmware: ipw2100-1.3-p.fw +firmware: ipw2100-1.3.fw +firmware: ipw2200-bss.fw +firmware: ipw2200-ibss.fw +firmware: ipw2200-sniffer.fw +firmware: isci/isci_firmware.bin +firmware: isdbt_nova_12mhz.inp +firmware: isdbt_nova_12mhz_b0.inp +firmware: isdbt_pele.inp +firmware: isdbt_rio.inp +firmware: isdn/ISAR.BIN +firmware: isi4608.bin +firmware: isi4616.bin +firmware: isi608.bin +firmware: isi608em.bin +firmware: isi616em.bin +firmware: isight.fw +firmware: isl3886pci +firmware: isl3886usb +firmware: isl3887usb +firmware: iwlwifi-100-5.ucode +firmware: iwlwifi-1000-5.ucode +firmware: iwlwifi-105-6.ucode +firmware: iwlwifi-135-6.ucode +firmware: iwlwifi-2000-6.ucode +firmware: iwlwifi-2030-6.ucode +firmware: iwlwifi-3160-13.ucode +firmware: iwlwifi-3945-2.ucode +firmware: iwlwifi-4965-2.ucode +firmware: iwlwifi-5000-5.ucode +firmware: iwlwifi-5150-2.ucode +firmware: iwlwifi-6000-4.ucode +firmware: iwlwifi-6000g2a-5.ucode +firmware: iwlwifi-6000g2b-6.ucode +firmware: iwlwifi-6050-5.ucode +firmware: iwlwifi-7260-13.ucode +firmware: iwlwifi-7265-13.ucode +firmware: iwlwifi-7265D-13.ucode +firmware: iwlwifi-8000-13.ucode +firmware: kaweth/new_code.bin +firmware: kaweth/new_code_fix.bin +firmware: kaweth/trigger_code.bin +firmware: kaweth/trigger_code_fix.bin +firmware: keyspan/mpr.fw +firmware: keyspan/usa18x.fw +firmware: keyspan/usa19.fw +firmware: keyspan/usa19qi.fw +firmware: keyspan/usa19qw.fw +firmware: keyspan/usa19w.fw +firmware: keyspan/usa28.fw +firmware: keyspan/usa28x.fw +firmware: keyspan/usa28xa.fw +firmware: keyspan/usa28xb.fw +firmware: keyspan/usa49w.fw +firmware: keyspan/usa49wlc.fw +firmware: keyspan_pda/keyspan_pda.fw +firmware: keyspan_pda/xircom_pgs.fw +firmware: korg/k1212.dsp +firmware: lattice-ecp3.bit +firmware: lbtf_usb.bin +firmware: lgs8g75.fw +firmware: libertas/cf8305.bin +firmware: libertas/cf8381.bin +firmware: libertas/cf8381_helper.bin +firmware: libertas/cf8385.bin +firmware: libertas/cf8385_helper.bin +firmware: libertas/gspi8385.bin +firmware: libertas/gspi8385_helper.bin +firmware: libertas/gspi8385_hlp.bin +firmware: libertas/gspi8686.bin +firmware: libertas/gspi8686_hlp.bin +firmware: libertas/gspi8686_v9.bin +firmware: libertas/gspi8686_v9_helper.bin +firmware: libertas/gspi8688.bin +firmware: libertas/gspi8688_helper.bin +firmware: libertas/sd8385.bin +firmware: libertas/sd8385_helper.bin +firmware: libertas/sd8686_v8.bin +firmware: libertas/sd8686_v8_helper.bin +firmware: libertas/sd8686_v9.bin +firmware: libertas/sd8686_v9_helper.bin +firmware: libertas/sd8688.bin +firmware: libertas/sd8688_helper.bin +firmware: libertas/usb8388.bin +firmware: libertas/usb8388_v5.bin +firmware: libertas/usb8388_v9.bin +firmware: libertas/usb8682.bin +firmware: libertas_cs.fw +firmware: libertas_cs_helper.fw +firmware: liquidio/lio_210nv.bin +firmware: liquidio/lio_210sv.bin +firmware: liquidio/lio_410nv.bin +firmware: matrox/g200_warp.fw +firmware: matrox/g400_warp.fw +firmware: me2600_firmware.bin +firmware: me4000_firmware.bin +firmware: mixart/miXart8.elf +firmware: mixart/miXart8.xlx +firmware: mixart/miXart8AES.xlx +firmware: mrvl/pcie8766_uapsta.bin +firmware: mrvl/pcie8897_uapsta.bin +firmware: mrvl/pcie8997_uapsta.bin +firmware: mrvl/sd8688.bin +firmware: mrvl/sd8688_helper.bin +firmware: mrvl/sd8786_uapsta.bin +firmware: mrvl/sd8787_uapsta.bin +firmware: mrvl/sd8797_uapsta.bin +firmware: mrvl/sd8887_uapsta.bin +firmware: mrvl/sd8897_uapsta.bin +firmware: mrvl/sd8997_uapsta.bin +firmware: mrvl/usb8766_uapsta.bin +firmware: mrvl/usb8797_uapsta.bin +firmware: mrvl/usb8801_uapsta.bin +firmware: mrvl/usb8997_uapsta.bin +firmware: mt7601u.bin +firmware: mts_cdma.fw +firmware: mts_edge.fw +firmware: mts_gsm.fw +firmware: mts_mt9234mu.fw +firmware: mts_mt9234zba.fw +firmware: multiface_firmware.bin +firmware: multiface_firmware_rev11.bin +firmware: mwl8k/fmimage_8363.fw +firmware: mwl8k/fmimage_8366.fw +firmware: mwl8k/fmimage_8366_ap-3.fw +firmware: mwl8k/fmimage_8687.fw +firmware: mwl8k/helper_8363.fw +firmware: mwl8k/helper_8366.fw +firmware: mwl8k/helper_8687.fw +firmware: myri10ge_eth_z8e.dat +firmware: myri10ge_ethp_z8e.dat +firmware: myri10ge_rss_eth_z8e.dat +firmware: myri10ge_rss_ethp_z8e.dat +firmware: ni6534a.bin +firmware: niscrb01.bin +firmware: niscrb02.bin +firmware: orinoco_ezusb_fw +firmware: ositech/Xilinx7OD.bin +firmware: pca200e.bin +firmware: pca200e_ecd.bin2 +firmware: pcxhr/dspb1222e.b56 +firmware: pcxhr/dspb1222hr.b56 +firmware: pcxhr/dspb882e.b56 +firmware: pcxhr/dspb882hr.b56 +firmware: pcxhr/dspb924.b56 +firmware: pcxhr/dspd1222.d56 +firmware: pcxhr/dspd222.d56 +firmware: pcxhr/dspd882.d56 +firmware: pcxhr/dspe882.e56 +firmware: pcxhr/dspe924.e56 +firmware: pcxhr/xlxc1222e.dat +firmware: pcxhr/xlxc1222hr.dat +firmware: pcxhr/xlxc222.dat +firmware: pcxhr/xlxc882e.dat +firmware: pcxhr/xlxc882hr.dat +firmware: pcxhr/xlxc924.dat +firmware: pcxhr/xlxint.dat +firmware: phanfw.bin +firmware: prism2_ru.fw +firmware: prism_ap_fw.bin +firmware: prism_sta_fw.bin +firmware: qat_895xcc.bin +firmware: qed/qed_init_values_zipped-8.4.2.0.bin +firmware: ql2100_fw.bin +firmware: ql2200_fw.bin +firmware: ql2300_fw.bin +firmware: ql2322_fw.bin +firmware: ql2400_fw.bin +firmware: ql2500_fw.bin +firmware: qlogic/1040.bin +firmware: qlogic/12160.bin +firmware: qlogic/1280.bin +firmware: qlogic/sd7220.fw +firmware: r128/r128_cce.bin +firmware: r8a779x_usb3_v1.dlmem +firmware: radeon/ARUBA_me.bin +firmware: radeon/ARUBA_pfp.bin +firmware: radeon/ARUBA_rlc.bin +firmware: radeon/BARTS_mc.bin +firmware: radeon/BARTS_me.bin +firmware: radeon/BARTS_pfp.bin +firmware: radeon/BARTS_smc.bin +firmware: radeon/BONAIRE_ce.bin +firmware: radeon/BONAIRE_mc.bin +firmware: radeon/BONAIRE_mc2.bin +firmware: radeon/BONAIRE_me.bin +firmware: radeon/BONAIRE_mec.bin +firmware: radeon/BONAIRE_pfp.bin +firmware: radeon/BONAIRE_rlc.bin +firmware: radeon/BONAIRE_sdma.bin +firmware: radeon/BONAIRE_smc.bin +firmware: radeon/BONAIRE_uvd.bin +firmware: radeon/BONAIRE_vce.bin +firmware: radeon/BTC_rlc.bin +firmware: radeon/CAICOS_mc.bin +firmware: radeon/CAICOS_me.bin +firmware: radeon/CAICOS_pfp.bin +firmware: radeon/CAICOS_smc.bin +firmware: radeon/CAYMAN_mc.bin +firmware: radeon/CAYMAN_me.bin +firmware: radeon/CAYMAN_pfp.bin +firmware: radeon/CAYMAN_rlc.bin +firmware: radeon/CAYMAN_smc.bin +firmware: radeon/CEDAR_me.bin +firmware: radeon/CEDAR_pfp.bin +firmware: radeon/CEDAR_rlc.bin +firmware: radeon/CEDAR_smc.bin +firmware: radeon/CYPRESS_me.bin +firmware: radeon/CYPRESS_pfp.bin +firmware: radeon/CYPRESS_rlc.bin +firmware: radeon/CYPRESS_smc.bin +firmware: radeon/CYPRESS_uvd.bin +firmware: radeon/HAINAN_ce.bin +firmware: radeon/HAINAN_mc.bin +firmware: radeon/HAINAN_mc2.bin +firmware: radeon/HAINAN_me.bin +firmware: radeon/HAINAN_pfp.bin +firmware: radeon/HAINAN_rlc.bin +firmware: radeon/HAINAN_smc.bin +firmware: radeon/HAWAII_ce.bin +firmware: radeon/HAWAII_mc.bin +firmware: radeon/HAWAII_mc2.bin +firmware: radeon/HAWAII_me.bin +firmware: radeon/HAWAII_mec.bin +firmware: radeon/HAWAII_pfp.bin +firmware: radeon/HAWAII_rlc.bin +firmware: radeon/HAWAII_sdma.bin +firmware: radeon/HAWAII_smc.bin +firmware: radeon/JUNIPER_me.bin +firmware: radeon/JUNIPER_pfp.bin +firmware: radeon/JUNIPER_rlc.bin +firmware: radeon/JUNIPER_smc.bin +firmware: radeon/KABINI_ce.bin +firmware: radeon/KABINI_me.bin +firmware: radeon/KABINI_mec.bin +firmware: radeon/KABINI_pfp.bin +firmware: radeon/KABINI_rlc.bin +firmware: radeon/KABINI_sdma.bin +firmware: radeon/KAVERI_ce.bin +firmware: radeon/KAVERI_me.bin +firmware: radeon/KAVERI_mec.bin +firmware: radeon/KAVERI_pfp.bin +firmware: radeon/KAVERI_rlc.bin +firmware: radeon/KAVERI_sdma.bin +firmware: radeon/MULLINS_ce.bin +firmware: radeon/MULLINS_me.bin +firmware: radeon/MULLINS_mec.bin +firmware: radeon/MULLINS_pfp.bin +firmware: radeon/MULLINS_rlc.bin +firmware: radeon/MULLINS_sdma.bin +firmware: radeon/OLAND_ce.bin +firmware: radeon/OLAND_mc.bin +firmware: radeon/OLAND_mc2.bin +firmware: radeon/OLAND_me.bin +firmware: radeon/OLAND_pfp.bin +firmware: radeon/OLAND_rlc.bin +firmware: radeon/OLAND_smc.bin +firmware: radeon/PALM_me.bin +firmware: radeon/PALM_pfp.bin +firmware: radeon/PITCAIRN_ce.bin +firmware: radeon/PITCAIRN_mc.bin +firmware: radeon/PITCAIRN_mc2.bin +firmware: radeon/PITCAIRN_me.bin +firmware: radeon/PITCAIRN_pfp.bin +firmware: radeon/PITCAIRN_rlc.bin +firmware: radeon/PITCAIRN_smc.bin +firmware: radeon/R100_cp.bin +firmware: radeon/R200_cp.bin +firmware: radeon/R300_cp.bin +firmware: radeon/R420_cp.bin +firmware: radeon/R520_cp.bin +firmware: radeon/R600_me.bin +firmware: radeon/R600_pfp.bin +firmware: radeon/R600_rlc.bin +firmware: radeon/R600_uvd.bin +firmware: radeon/R700_rlc.bin +firmware: radeon/REDWOOD_me.bin +firmware: radeon/REDWOOD_pfp.bin +firmware: radeon/REDWOOD_rlc.bin +firmware: radeon/REDWOOD_smc.bin +firmware: radeon/RS600_cp.bin +firmware: radeon/RS690_cp.bin +firmware: radeon/RS780_me.bin +firmware: radeon/RS780_pfp.bin +firmware: radeon/RS780_uvd.bin +firmware: radeon/RV610_me.bin +firmware: radeon/RV610_pfp.bin +firmware: radeon/RV620_me.bin +firmware: radeon/RV620_pfp.bin +firmware: radeon/RV630_me.bin +firmware: radeon/RV630_pfp.bin +firmware: radeon/RV635_me.bin +firmware: radeon/RV635_pfp.bin +firmware: radeon/RV670_me.bin +firmware: radeon/RV670_pfp.bin +firmware: radeon/RV710_me.bin +firmware: radeon/RV710_pfp.bin +firmware: radeon/RV710_smc.bin +firmware: radeon/RV710_uvd.bin +firmware: radeon/RV730_me.bin +firmware: radeon/RV730_pfp.bin +firmware: radeon/RV730_smc.bin +firmware: radeon/RV740_smc.bin +firmware: radeon/RV770_me.bin +firmware: radeon/RV770_pfp.bin +firmware: radeon/RV770_smc.bin +firmware: radeon/RV770_uvd.bin +firmware: radeon/SUMO2_me.bin +firmware: radeon/SUMO2_pfp.bin +firmware: radeon/SUMO_me.bin +firmware: radeon/SUMO_pfp.bin +firmware: radeon/SUMO_rlc.bin +firmware: radeon/SUMO_uvd.bin +firmware: radeon/TAHITI_ce.bin +firmware: radeon/TAHITI_mc.bin +firmware: radeon/TAHITI_mc2.bin +firmware: radeon/TAHITI_me.bin +firmware: radeon/TAHITI_pfp.bin +firmware: radeon/TAHITI_rlc.bin +firmware: radeon/TAHITI_smc.bin +firmware: radeon/TAHITI_uvd.bin +firmware: radeon/TAHITI_vce.bin +firmware: radeon/TURKS_mc.bin +firmware: radeon/TURKS_me.bin +firmware: radeon/TURKS_pfp.bin +firmware: radeon/TURKS_smc.bin +firmware: radeon/VERDE_ce.bin +firmware: radeon/VERDE_mc.bin +firmware: radeon/VERDE_mc2.bin +firmware: radeon/VERDE_me.bin +firmware: radeon/VERDE_pfp.bin +firmware: radeon/VERDE_rlc.bin +firmware: radeon/VERDE_smc.bin +firmware: radeon/bonaire_ce.bin +firmware: radeon/bonaire_mc.bin +firmware: radeon/bonaire_me.bin +firmware: radeon/bonaire_mec.bin +firmware: radeon/bonaire_pfp.bin +firmware: radeon/bonaire_rlc.bin +firmware: radeon/bonaire_sdma.bin +firmware: radeon/bonaire_smc.bin +firmware: radeon/hainan_ce.bin +firmware: radeon/hainan_mc.bin +firmware: radeon/hainan_me.bin +firmware: radeon/hainan_pfp.bin +firmware: radeon/hainan_rlc.bin +firmware: radeon/hainan_smc.bin +firmware: radeon/hawaii_ce.bin +firmware: radeon/hawaii_mc.bin +firmware: radeon/hawaii_me.bin +firmware: radeon/hawaii_mec.bin +firmware: radeon/hawaii_pfp.bin +firmware: radeon/hawaii_rlc.bin +firmware: radeon/hawaii_sdma.bin +firmware: radeon/hawaii_smc.bin +firmware: radeon/kabini_ce.bin +firmware: radeon/kabini_me.bin +firmware: radeon/kabini_mec.bin +firmware: radeon/kabini_pfp.bin +firmware: radeon/kabini_rlc.bin +firmware: radeon/kabini_sdma.bin +firmware: radeon/kaveri_ce.bin +firmware: radeon/kaveri_me.bin +firmware: radeon/kaveri_mec.bin +firmware: radeon/kaveri_mec2.bin +firmware: radeon/kaveri_pfp.bin +firmware: radeon/kaveri_rlc.bin +firmware: radeon/kaveri_sdma.bin +firmware: radeon/mullins_ce.bin +firmware: radeon/mullins_me.bin +firmware: radeon/mullins_mec.bin +firmware: radeon/mullins_pfp.bin +firmware: radeon/mullins_rlc.bin +firmware: radeon/mullins_sdma.bin +firmware: radeon/oland_ce.bin +firmware: radeon/oland_mc.bin +firmware: radeon/oland_me.bin +firmware: radeon/oland_pfp.bin +firmware: radeon/oland_rlc.bin +firmware: radeon/oland_smc.bin +firmware: radeon/pitcairn_ce.bin +firmware: radeon/pitcairn_mc.bin +firmware: radeon/pitcairn_me.bin +firmware: radeon/pitcairn_pfp.bin +firmware: radeon/pitcairn_rlc.bin +firmware: radeon/pitcairn_smc.bin +firmware: radeon/tahiti_ce.bin +firmware: radeon/tahiti_mc.bin +firmware: radeon/tahiti_me.bin +firmware: radeon/tahiti_pfp.bin +firmware: radeon/tahiti_rlc.bin +firmware: radeon/tahiti_smc.bin +firmware: radeon/verde_ce.bin +firmware: radeon/verde_mc.bin +firmware: radeon/verde_me.bin +firmware: radeon/verde_pfp.bin +firmware: radeon/verde_rlc.bin +firmware: radeon/verde_smc.bin +firmware: riptide.hex +firmware: rp2.fw +firmware: rpm_firmware.bin +firmware: rsi_91x.fw +firmware: rt2561.bin +firmware: rt2561s.bin +firmware: rt2661.bin +firmware: rt2860.bin +firmware: rt2870.bin +firmware: rt73.bin +firmware: rtl_nic/rtl8105e-1.fw +firmware: rtl_nic/rtl8106e-1.fw +firmware: rtl_nic/rtl8106e-2.fw +firmware: rtl_nic/rtl8107e-1.fw +firmware: rtl_nic/rtl8107e-2.fw +firmware: rtl_nic/rtl8168d-1.fw +firmware: rtl_nic/rtl8168d-2.fw +firmware: rtl_nic/rtl8168e-1.fw +firmware: rtl_nic/rtl8168e-2.fw +firmware: rtl_nic/rtl8168e-3.fw +firmware: rtl_nic/rtl8168f-1.fw +firmware: rtl_nic/rtl8168f-2.fw +firmware: rtl_nic/rtl8168g-2.fw +firmware: rtl_nic/rtl8168g-3.fw +firmware: rtl_nic/rtl8168h-1.fw +firmware: rtl_nic/rtl8168h-2.fw +firmware: rtl_nic/rtl8402-1.fw +firmware: rtl_nic/rtl8411-1.fw +firmware: rtl_nic/rtl8411-2.fw +firmware: rtlwifi/rtl8188efw.bin +firmware: rtlwifi/rtl8192cfw.bin +firmware: rtlwifi/rtl8192cfwU.bin +firmware: rtlwifi/rtl8192cfwU_B.bin +firmware: rtlwifi/rtl8192cufw.bin +firmware: rtlwifi/rtl8192cufw_A.bin +firmware: rtlwifi/rtl8192cufw_B.bin +firmware: rtlwifi/rtl8192cufw_TMSC.bin +firmware: rtlwifi/rtl8192defw.bin +firmware: rtlwifi/rtl8192eefw.bin +firmware: rtlwifi/rtl8192sefw.bin +firmware: rtlwifi/rtl8712u.bin +firmware: rtlwifi/rtl8723aufw_A.bin +firmware: rtlwifi/rtl8723aufw_B.bin +firmware: rtlwifi/rtl8723aufw_B_NoBT.bin +firmware: rtlwifi/rtl8723befw.bin +firmware: rtlwifi/rtl8723efw.bin +firmware: rtlwifi/rtl8821aefw.bin +firmware: sb16/alaw_main.csp +firmware: sb16/ima_adpcm_capture.csp +firmware: sb16/ima_adpcm_init.csp +firmware: sb16/ima_adpcm_playback.csp +firmware: sb16/mulaw_main.csp +firmware: scope.cod +firmware: sd8385.bin +firmware: sd8385_helper.bin +firmware: sd8686.bin +firmware: sd8686_helper.bin +firmware: sd8688.bin +firmware: sd8688_helper.bin +firmware: slicoss/gbdownload.sys +firmware: slicoss/gbrcvucode.sys +firmware: slicoss/oasisdownload.sys +firmware: slicoss/oasisrcvucode.sys +firmware: sms1xxx-hcw-55xxx-dvbt-02.fw +firmware: sms1xxx-hcw-55xxx-isdbt-02.fw +firmware: sms1xxx-nova-a-dvbt-01.fw +firmware: sms1xxx-nova-b-dvbt-01.fw +firmware: sms1xxx-stellar-dvbt-01.fw +firmware: sndscape.co0 +firmware: sndscape.co1 +firmware: sndscape.co2 +firmware: sndscape.co3 +firmware: sndscape.co4 +firmware: softing-4.6/bcard.bin +firmware: softing-4.6/bcard2.bin +firmware: softing-4.6/cancard.bin +firmware: softing-4.6/cancrd2.bin +firmware: softing-4.6/cansja.bin +firmware: softing-4.6/ldcard.bin +firmware: softing-4.6/ldcard2.bin +firmware: solos-FPGA.bin +firmware: solos-Firmware.bin +firmware: solos-db-FPGA.bin +firmware: sun/cassini.bin +firmware: symbol_sp24t_prim_fw +firmware: symbol_sp24t_sec_fw +firmware: tdmb_denver.inp +firmware: tdmb_nova_12mhz.inp +firmware: tdmb_nova_12mhz_b0.inp +firmware: tehuti/bdx.bin +firmware: ti-connectivity/wl1251-fw.bin +firmware: ti-connectivity/wl1251-nvs.bin +firmware: ti-connectivity/wl1271-nvs.bin +firmware: ti-connectivity/wl127x-fw-5-mr.bin +firmware: ti-connectivity/wl127x-fw-5-plt.bin +firmware: ti-connectivity/wl127x-fw-5-sr.bin +firmware: ti-connectivity/wl128x-fw-5-mr.bin +firmware: ti-connectivity/wl128x-fw-5-plt.bin +firmware: ti-connectivity/wl128x-fw-5-sr.bin +firmware: ti-connectivity/wl18xx-conf.bin +firmware: ti-connectivity/wl18xx-fw-4.bin +firmware: ti_3410.fw +firmware: ti_5052.fw +firmware: tigon/tg3.bin +firmware: tigon/tg3_tso.bin +firmware: tigon/tg3_tso5.bin +firmware: ttusb-budget/dspbootcode.bin +firmware: turtlebeach/msndinit.bin +firmware: turtlebeach/msndperm.bin +firmware: turtlebeach/pndsperm.bin +firmware: turtlebeach/pndspini.bin +firmware: ueagle-atm/930-fpga.bin +firmware: ueagle-atm/CMV4i.bin +firmware: ueagle-atm/CMV4i.bin.v2 +firmware: ueagle-atm/CMV4p.bin +firmware: ueagle-atm/CMV4p.bin.v2 +firmware: ueagle-atm/CMV9i.bin +firmware: ueagle-atm/CMV9i.bin.v2 +firmware: ueagle-atm/CMV9p.bin +firmware: ueagle-atm/CMV9p.bin.v2 +firmware: ueagle-atm/CMVei.bin +firmware: ueagle-atm/CMVei.bin.v2 +firmware: ueagle-atm/CMVep.bin +firmware: ueagle-atm/CMVep.bin.v2 +firmware: ueagle-atm/DSP4i.bin +firmware: ueagle-atm/DSP4p.bin +firmware: ueagle-atm/DSP9i.bin +firmware: ueagle-atm/DSP9p.bin +firmware: ueagle-atm/DSPei.bin +firmware: ueagle-atm/DSPep.bin +firmware: ueagle-atm/adi930.fw +firmware: ueagle-atm/eagle.fw +firmware: ueagle-atm/eagleI.fw +firmware: ueagle-atm/eagleII.fw +firmware: ueagle-atm/eagleIII.fw +firmware: ueagle-atm/eagleIV.fw +firmware: usb8388.bin +firmware: usbdux_firmware.bin +firmware: usbduxfast_firmware.bin +firmware: usbduxsigma_firmware.bin +firmware: v4l-cx231xx-avcore-01.fw +firmware: v4l-cx23418-apu.fw +firmware: v4l-cx23418-cpu.fw +firmware: v4l-cx23418-dig.fw +firmware: v4l-cx2341x-dec.fw +firmware: v4l-cx2341x-enc.fw +firmware: v4l-cx2341x-init.mpg +firmware: v4l-cx23885-avcore-01.fw +firmware: v4l-cx23885-enc.fw +firmware: v4l-cx25840.fw +firmware: v4l-pvrusb2-24xxx-01.fw +firmware: v4l-pvrusb2-29xxx-01.fw +firmware: v4l-pvrusb2-73xxx-01.fw +firmware: vicam/firmware.fw +firmware: vntwusb.fw +firmware: vpdma-1b8.bin +firmware: vx/bd56002.boot +firmware: vx/bd563s3.boot +firmware: vx/bd563v2.boot +firmware: vx/bx_1_vp4.b56 +firmware: vx/bx_1_vxp.b56 +firmware: vx/l_1_v22.d56 +firmware: vx/l_1_vp4.d56 +firmware: vx/l_1_vx2.d56 +firmware: vx/l_1_vxp.d56 +firmware: vx/x1_1_vp4.xlx +firmware: vx/x1_1_vx2.xlx +firmware: vx/x1_1_vxp.xlx +firmware: vx/x1_2_v22.xlx +firmware: vxge/X3fw-pxe.ncf +firmware: vxge/X3fw.ncf +firmware: wavefront.os +firmware: wd719x-risc.bin +firmware: wd719x-wcs.bin +firmware: whiteheat.fw +firmware: whiteheat_loader.fw +firmware: wil6210.brd +firmware: wil6210.fw +firmware: wlan/prima/WCNSS_qcom_wlan_nv.bin +firmware: xc3028-v27.fw +firmware: xc3028L-v36.fw +firmware: yam/1200.bin +firmware: yam/9600.bin +firmware: yamaha/ds1_ctrl.fw +firmware: yamaha/ds1_dsp.fw +firmware: yamaha/ds1e_ctrl.fw +firmware: yamaha/yss225_registers.bin +firmware: zd1201-ap.fw +firmware: zd1201.fw +firmware: zd1211/zd1211_ub +firmware: zd1211/zd1211_uphr +firmware: zd1211/zd1211_ur +firmware: zd1211/zd1211b_ub +firmware: zd1211/zd1211b_uphr +firmware: zd1211/zd1211b_ur only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-106.129/i386/generic +++ linux-raspi2-4.4.0/debian.master/abi/4.4.0-106.129/i386/generic @@ -0,0 +1,18863 @@ +EXPORT_SYMBOL arch/x86/kvm/kvm 0x6f88e078 kvm_cpu_has_pending_timer +EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x254e5667 scx200_gpio_base +EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x35a3c008 scx200_gpio_configure +EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x8cfa375c scx200_gpio_shadow +EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x907665bd scx200_cb_base +EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe +EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble +EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL crypto/mcryptd 0x2d7e229d mcryptd_arm_flusher +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/acpi/nfit 0xa7e9a159 to_nfit_uuid +EXPORT_SYMBOL drivers/acpi/video 0x68625023 acpi_video_get_edid +EXPORT_SYMBOL drivers/acpi/video 0x6de7f7ff acpi_video_get_backlight_type +EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister +EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register +EXPORT_SYMBOL drivers/acpi/video 0xe92ca535 acpi_video_set_dmi_backlight_type +EXPORT_SYMBOL drivers/atm/suni 0x328654e8 suni_init +EXPORT_SYMBOL drivers/atm/uPD98402 0x5107ecd7 uPD98402_init +EXPORT_SYMBOL drivers/bcma/bcma 0x8f0be7eb bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0xa61cbdbd bcma_core_dma_translation +EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str +EXPORT_SYMBOL drivers/block/paride/paride 0x0c592454 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x189a91c2 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x3720c18b paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x7caa7783 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x8277db02 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x8d897fbc pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x9d545f2e pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xb40652b1 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0xbdda8018 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0xcc77041b pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xe75095ff pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xfa7cc458 pi_write_block +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xd73a80fa btbcm_patchram +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fae3bac ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x396fecf0 ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4a78579d ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5864dc3e ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x62708723 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7a0ee4a5 ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/nsc_gpio 0x5c9215a9 nsc_gpio_write +EXPORT_SYMBOL drivers/char/nsc_gpio 0x8020f857 nsc_gpio_read +EXPORT_SYMBOL drivers/char/nsc_gpio 0xd471806e nsc_gpio_dump +EXPORT_SYMBOL drivers/char/nvram 0x0f28cb91 nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x17ff2c1d __nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x2adec1e0 __nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x7da28f12 nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x9ce3f83f nvram_write_byte +EXPORT_SYMBOL drivers/char/nvram 0xa8813189 __nvram_write_byte +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x143d19fa st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x78558b8b st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xf595657a st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xf9656af7 st33zp24_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xc78224c0 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xeec3a48d xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xf64aa72c xillybus_endpoint_remove +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x18c02098 dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x228a8883 dw_dma_get_src_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x38832cf5 dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x3d7c3d2e dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x5958ece7 dw_dma_cyclic_free +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x94f2624f dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/edac/edac_core 0x16ccfabc edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04dd92ce fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0960f61d fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0d1fce3a fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0d71cfc0 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x21705eee fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2be96d41 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x31e1ac04 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x38d25da5 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4254bde7 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x49050267 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d5d4eca fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4dbdec6e fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4ee2293a fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x52798b39 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5d2c2d47 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x67f3d9e8 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x764ab2b0 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7d716969 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e431b14 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x994a7895 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9a53a4e2 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa1273148 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa8b651a7 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0xae12d769 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd02d0051 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd4306c2b fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd8090878 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xdda0d910 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfa77c0c0 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firmware/dcdbas 0xa75079d6 dcdbas_smi_request +EXPORT_SYMBOL drivers/fmc/fmc 0x3a8e7ee2 fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x51ee6772 fmc_show_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x9a6e2bac fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x9ef5198a fmc_reprogram +EXPORT_SYMBOL drivers/fmc/fmc 0xa13aef78 fmc_find_sdb_device +EXPORT_SYMBOL drivers/fmc/fmc 0xa9ad20ca fmc_device_register_n +EXPORT_SYMBOL drivers/fmc/fmc 0xb31617b7 fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xbf305578 fmc_device_unregister_n +EXPORT_SYMBOL drivers/fmc/fmc 0xd9c98d4c fmc_device_register +EXPORT_SYMBOL drivers/fmc/fmc 0xfc628c01 fmc_device_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0xfd3780d1 fmc_driver_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00333796 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x011f49a5 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x025e5dcf drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x032a98cb drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d2b81dc drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eacc2db drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f12d8cf drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f73f79d drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fccafb1 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1071d322 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x110f7350 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1144919c drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1270c367 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13299b44 drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13e9fe94 drm_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14353045 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15190bf4 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x153c56df drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15a05b95 drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15a65d4d drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16127fce drm_connector_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x178725cb drm_atomic_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x186e832b drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19e62622 drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a5cb20d drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b7dd2cd drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bcea355 drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d3bc998 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d8d5cd4 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1df61ef9 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20434dd0 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20db82de drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x215082fc drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21d970b6 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2355cde1 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23c12fa4 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x240f4759 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x243b9256 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x247490b3 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x250f9f01 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25c5678a drm_framebuffer_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x278c77d5 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29c25091 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2be6a144 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ca2f7cd drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cdf11d9 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d74a1c2 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d955ef8 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f091c9c drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x300ba21e drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x310df14c drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b3dbf3 drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33757dd7 drm_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3406fa91 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x346127a7 drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x359a2ca5 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36050c8d drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x368d72c6 drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x380c89f1 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b4ecb7d drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b5a9e08 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c9d33fe drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d78b577 drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d96fc24 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e5f9383 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e99409b drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ea8599c drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fe5ddd2 drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4104f34a drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4251461e drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42ccc028 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43010bfc drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x436cdcf3 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44c61ff6 drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4536cfef drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x475516d8 drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47ba828b drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x497ae8fb drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a0f0452 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e98e295 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ecfd4e0 drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f043a7b drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f2517fc drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50065a2f drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5109bbd0 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x534df36b drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x534ecda1 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x537d7106 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53cbcf8e drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53d6e4e3 drm_crtc_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55a50832 drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57abaf4f drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5933986e drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5969bc58 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59c09bdf drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a42c2e1 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b830b3e drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d039652 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d224534 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e843520 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ece0f77 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60f4626b drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60f56268 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6213366d drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63320329 drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63d5af81 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x645aee0c drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64610a84 drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64e4bc47 drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6557753d drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0x665b6a3c drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68263fc2 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x682860ce drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x682afbba drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68b5e73e drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68f3a29e drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6938b1a9 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69e16a18 drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a814e89 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cb279d6 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7010f8dd drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70617981 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x706a5fc2 drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70930fcf drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70ff0abf drm_platform_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72094d51 drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72706831 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72b82ea8 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75e4817f drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76bb905d drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x788a35cc drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b764a08 drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c9e0707 drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ce89d51 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7df51427 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f082ae3 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8047a23f drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80974825 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8127b668 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x816bbf24 drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81cbd8bb drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82298bf3 drm_framebuffer_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c41075 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83576e10 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83aaf304 drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83c227b3 drm_agp_bind_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85872f88 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85b09edf drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x866702e1 drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87c046d3 drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c536f1e drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c6bdff8 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c6e2cbe drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cf33e46 drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8df875eb drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fdcf143 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90621af3 drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9255d1e4 drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92c3750f drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93c5a6c8 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9496df2f drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x952ee1e5 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x958f5445 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96c27dfd drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97abb311 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98571f78 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9898e95b drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a1e8514 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a3d8da4 drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ae46573 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b868323 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c623ebe drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d0fdc71 drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dff10de drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e574a9f drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f6de48e drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f73c3a0 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ff1424e drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa043bcaa drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0469589 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1840ed5 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2016364 drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa22619db drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa267885e drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa34ed842 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa50887d9 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa54c9ba5 drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa57fc961 drm_encoder_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa75374fc drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8a4c297 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab3399b9 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaca11d95 drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacca57a7 drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacff8a04 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad9fd43e drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae51742d drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf2b8c43 drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb250cfc4 drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb29756ef drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb366146f drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3b738b7 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3f04356 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb53f658a drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5a72d98 drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5dd0648 drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5fb45b8 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb61e161c drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb77ced66 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8863d6b drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd3fa879 drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd575e63 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbeb85cfa drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbeea2fee drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc214a22b drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3188621 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc841e90d drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcadbff02 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb5776ec drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbe8eefa drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd298fbd drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd31bf21 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd180968b drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3a6cb48 drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3b30952 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3c0085f drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd440683f drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4c122b2 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd520f8e4 drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5de4055 drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd75776a1 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7869e1c drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd847034a drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda8184d7 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdaf125b9 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb8141b drm_connector_unplug_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc218f03 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc61f7e0 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdee68de5 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf14ea45 drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf7e9a84 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfb366fc drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe12f1836 drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1f4b9f7 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2569cbc drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2d10fc7 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe33fde06 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe48584e5 drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe522d4ba drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5874c5e drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6d6be4f drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6e1fbe6 drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe83f96a3 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8b558b6 drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe92da7cd drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea0f6b8f drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xecb5b17b drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeceb3aa8 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed53be2b drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeeb4d8fb drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeee099ce drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef9d9c74 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0d65569 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1f4e7e2 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1f75b89 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf21eb04d drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf35e8829 drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3798da1 drm_legacy_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf387da4a drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5469334 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6edd145 drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7820ce8 drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf79f0e30 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf81e44ba drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf844e54c drm_plane_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa5004da drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb708726 drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb92a919 drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfba45901 drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbd1a163 drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbf34871 drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc0da89a drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdf92cd0 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe6a1c72 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc732ca drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01a71d4e drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02565155 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02813cfa drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x045b0ed4 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b8a935a drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c4be670 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d983012 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0eea398c drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f1f1834 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fb9e56c drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1179f275 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1192e18b drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14723281 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1674c7b8 drm_helper_probe_single_connector_modes_nomerge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1704beb6 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22168cde drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x224165f8 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25c102e3 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27b5e7ed drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27c7ce07 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27d10e1c drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28f2dd98 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29646733 drm_helper_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c38bcfd drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c41b203 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ddbfd4b drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ef35b1e drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30341eda drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31003bd2 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3244b94d drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34a7488c drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3549fd59 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x368d98b9 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x378b3ad3 drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x394cf7db drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a7d7a64 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c9e9a95 drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3fbfebe7 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40c196ec drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4150ed47 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4257e9c3 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45256706 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x460e9d09 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e0fc11d drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50e9d139 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52a07f6f drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53e64175 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5469b64a drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x550f4a37 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x571b633e drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57d2fab1 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59607c48 drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b8b98dd drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e6dfc5c __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60209fe7 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x610ba217 drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65b97ab5 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x668ae500 drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d36bcb9 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f872745 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6fd3b6d5 drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6fdf5477 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71a65db3 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72dee5d9 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74d5f8b5 drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x761228d4 drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x766cf199 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x775a3786 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c88dd65 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x804870c2 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x816dfe46 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83e5edfc __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85d9bad6 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87ee5f1e drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88729812 drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x890e49c5 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b160971 drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e984bb4 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90451a98 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9140903d drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x924e8923 drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x980769ae drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98909e81 drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d217dba drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d3f16b9 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9edb81f6 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9fdf88c3 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0ff4d2f drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa29250aa drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa41e30b7 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4bb981a drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5f4a4cc drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa81bae28 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa93ad270 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad5d3751 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xadb08ee3 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb03adb31 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0b4c059 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2aef31a drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb424e7ac drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4cd225b drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb823b23b drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9ad01c4 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd9eca77 drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf43ceb1 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfb55813 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfef8e48 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc75f61f8 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7aaf516 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc966ce57 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb74b10b drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd1b104c drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce48ce25 drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfc8f68d drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0f6d927 drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1144d39 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd22927d5 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd35c5068 drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd388a6c1 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5a54b8b drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8c6febb __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda056494 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc103226 drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf894d14 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4cdd1fc drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6bfc6be drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7438e40 drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe760b9b6 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe98f3adf drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea54161d drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeaa40ec8 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeee5816c drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef907f7d drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xefdb8623 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf22a3a2a drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5e29fd3 drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6981598 drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf87ebe78 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfadb4d63 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfce64516 drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd0fa8f8 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd73ccab drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x01280859 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x098f03ea ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0bab7f47 ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132b05be ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x133b9e19 ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x15129bce ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1940e4cd ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1d648f76 ttm_agp_tt_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x202eeb8b ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x22ec80fe ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x24765c33 ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x255cd198 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x266d8a60 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x29e07eb2 ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b2b9dca ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2ccc3c85 ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2fd60b71 ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x30327b19 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x350b3786 ttm_agp_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x383d38b7 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3fab986a ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x44f8be11 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4d70e8e7 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e861427 ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x500eb15e ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5316413f ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5366a1ab ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x540552c0 ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x58377527 ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a5fbcbf ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cf59609 ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x65d8b1f2 ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67b1d568 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c8dc6bf ttm_vt_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6e875de9 ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7ebcdcab ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x836d8fd0 ttm_suspend_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86e95a8b ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x87a027b5 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x887bc9fa ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8b23e961 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8c051c92 ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x946d9ea3 ttm_write_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d0eb91 ttm_ref_object_add +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9a84a7d3 ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9cbf9cdc ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa12b4479 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa15f936d ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa3cc9fa0 ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa673b66b ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa7c3373b ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa963305d ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaf59ae12 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb9a53065 ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbd08f22a ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc85f7df8 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcdfd17db ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce969d64 ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf49f835 ttm_suspend_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd638ee93 ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xda6509a9 ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdc063882 ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdcfeea41 ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xddc2c0c6 ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xddcbb522 ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe008839c ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe1f5d3f0 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe9e6e745 ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf80ff4d0 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf91e1ed9 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x307d75a0 vmbus_recvpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x74823c35 vmbus_sendpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xbca2384f vmbus_sendpacket_ctl +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0e2a6864 sch56xx_read_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0f5877d4 sch56xx_read_virtual_reg16 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xcd59a183 sch56xx_watchdog_register +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe5022f95 sch56xx_read_virtual_reg12 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xed1d2a08 sch56xx_write_virtual_reg +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x046ef7ff i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x51cf0195 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xc229c70d i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x35cd1806 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xea086740 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xcdb62b9e amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x15f01fd4 mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x17c38683 mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x22e32428 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x2881b1da mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x2d7b593d mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4724da83 mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4db5fe79 mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x61571823 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x62be6a9f mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x92a4da3f mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x96756dfc mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc3427294 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc8ab4490 mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe1033bc1 mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe8e94e13 mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf276668b mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xbc733e11 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xc350a42e st_accel_common_remove +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xc71f5023 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xdd3bdc2e iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x32a02bef devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xa74768ab iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xc9c1e204 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xfc85609e devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x52d676f7 hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x53a0abcd hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x7e3f609a hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x7e65a7c7 hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x830d383b hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc3bf6760 hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x2a2fbf26 hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x52c3407a hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x539b02b6 hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xc83f16b3 hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x260e7ce6 ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2aeae762 ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3cc35c38 ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x59b68818 ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x6376535b ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xaf7d2f1e ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb793d674 ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xdf25f5da ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf2ce4712 ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x325604ab ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x46dd10f8 ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x47670832 ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x5d5d263b ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x78536fac ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x010c4d8a ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x570336ee ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xb9ad1d9d ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x36e6beaa st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x45ec81b6 st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4b1d58c1 st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5dc5a055 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7a037279 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7bca9809 st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x915e332c st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x95fd8143 st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9aee3aca st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9dda4fd3 st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xaee99ce5 st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb07fced7 st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc91d8669 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xda007562 st_sensors_get_buffer_element +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe0e6fd9d st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe8990548 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf0e0824d st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x6d811cd7 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x9ae28a49 st_sensors_match_acpi_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xddca8d64 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xadca46b8 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xe7d8917c st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x06edb8b9 hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x66399675 adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xb0e78f56 adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/industrialio 0x13a58582 iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x26712f8a iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x39c69ac7 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x44adb759 iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0x47adc4c3 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x4824cdd5 iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0x5a4e6f4d iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x60cbaed3 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x60f91b5f iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x650e341a iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x7852b38e iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x7c058c4a iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0xb366068f iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0xc6b44888 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0xc83aa868 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0xd1a814ac iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xf729f6a5 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x5f26e0d1 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x701e830f iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xa63519d6 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xc358deb3 st_magn_common_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xc670d102 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x12778215 st_press_common_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x2032f4b5 st_press_common_probe +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x049ace30 rdma_addr_find_smac_by_sgid +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1edc4064 rdma_addr_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x487a6b7a rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x58e7a154 rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x9d9cabc5 rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xa1963f34 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xfadc0cd1 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x04d27ef1 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1993ecbb ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x35f8b36e ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x385f8cf0 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x49181dbd ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x66ba930a ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6be516c9 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x74ef803f ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x82f98072 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9203d464 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x929a9ba7 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x943a50d1 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbeb150cb ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc1317a36 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc37568a3 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd70fb397 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe99e0256 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf2f785c3 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x002cb9d3 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0415141e ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0420b9ea ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04e0c0bd ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05f60710 ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06164e99 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x095d53ca ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09cb4cb3 ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c34bbda ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x110df82f ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11651be8 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x167f0b4e ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ddf9422 ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21b667bd ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23e19073 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x264d245c ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2755853e ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2df633ed ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30b4c88c ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3567cb8b ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4020d085 ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x409c552c ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x433003a5 ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43b235ec ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46c808b8 ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x479fd53c ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f397a47 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5011a660 ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5145c8e5 ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5922ffce ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60912223 ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60c169f9 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6707aa3d ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6773fbc9 ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x694c6bb8 ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b45e3f4 ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70cdb705 ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x729e1cb1 ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x737992ba ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75c2af82 ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78b796c6 ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7cd476e6 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8036eb76 ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82053a99 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82ca3d1d ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8536a39d ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85e80990 ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88459c5a ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88f7d6b7 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a07c30c ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f4d374e ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x928418ca ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92b92613 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94b2b41f ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9871bcf6 ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x988f8dc0 ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ad31794 ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa97be7da ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad1c6c18 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaeed2eec ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb070c29e ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf03c716 ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0bf6a37 ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2d9220c ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9f3671a ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd51d21c5 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd71f6a08 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7e0eba9 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8722832 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc9b55fd ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe18ab488 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe34d9abc ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8536d06 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe904ad8d ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xefbed67c ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0f8133a ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf212fea7 ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf507a0ba ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7d6a110 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf91fb5e3 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb77facd ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfddf260b ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xffb79c37 ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x151c707c ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x550cdc94 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x56b9172d ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x597d3efa ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x72290d83 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x78db8b04 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x887d2b4d ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xa0f5dc87 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xb80e14d6 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xb8f23096 ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xd1452146 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xd2ddaa8f ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xdb38786e ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x05f51c4a ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x11fa00c6 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x287d1e73 ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x43754f48 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x4987f244 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x60dd81a0 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x6713febe ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xa54e93b1 ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xbbfb9d4d ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xc53022e7 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xe8811a46 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x67cba670 ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbb3b6107 ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x21388c3d iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2c1f4795 iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x316f8d3a iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x382d7d13 iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3c9d93f7 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x46fa59c5 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5433e651 iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x76099f2b iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x77b9a834 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7c3e5816 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb095da7b iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xba8d1c99 iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xbcd85cd0 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc180a1e4 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xeb2e5959 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x03e22c86 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x109f7fb0 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1309a2c5 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x152c2bd1 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x15b375ab rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1a5c5e8e rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x260a5187 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x33fe1343 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4af65f20 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4ed67720 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x543ab71c rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x567686b3 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5a857513 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x74cd072a rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8271f754 rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa3ac7539 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa6fa4ad3 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb49596b5 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbd3d624d rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xec6f773a rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf1cd6806 rdma_connect +EXPORT_SYMBOL drivers/input/gameport/gameport 0x3775a608 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x5deba643 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x685f6db3 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x84eb9f65 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xaab7b21a __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xd3e85d90 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xdada13ee gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0xec5e5fed gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xf7dd7c0c gameport_stop_polling +EXPORT_SYMBOL drivers/input/input-polldev 0x1b634b9c input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x532947ae devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x64c3216f input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x6def1805 input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xe77c0b90 input_register_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0x1e333dbc matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x3d2a627c ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x924c25a5 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0xdd597253 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xa42ccd9e cma3000_init +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/sparse-keymap 0x02ad5256 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x3a1af925 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x861a0b49 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x88550b5b sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0x98472136 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0xc3f8892a sparse_keymap_setup +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x88af8fc3 ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xd026c98e ad7879_probe +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x02537d4c detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x1550a094 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x499cd47d capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e2ad1b1 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa6c72ffc capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa73cc8af attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa7c4fd6c capi_message2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xbb24ad5e capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc10fe128 cdebbuf_free +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8ad9bd1 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xedaf6ae4 capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf0848b88 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf3b15180 capi20_release +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0abebe53 avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x1c1af3d7 b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2efb3891 b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x4bdd4032 b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x4c851552 b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x572a4d70 b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x63f28a30 b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x8d992d4e avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd03b8780 b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd1b38eb3 b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe4f6fc33 b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe52241bd b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf1078fbf b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf624a80a b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xff1ed618 b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x08c3f6ce b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x60ec1ac4 b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x88a4350a b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xb5215f74 b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xc0cfed5a b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xce3dced0 b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xdabe1cf0 t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xed14e113 b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xfb01ea7e b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0x29562993 b1pcmcia_delcard +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x2e4a11f8 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x97c30583 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xa46d8f38 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xd3f6d2e7 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xa90610da mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xbb0699f3 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6fe1ca04 FsmDelTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9009575f hisax_init_pcmcia +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9f987c85 FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xa1bc94b9 FsmInitTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x13c96b5f isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x39b7812c isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3b10c2b6 isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x8de50dcf isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x92208023 isac_irq +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x96e19246 isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xa72a6a18 isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xf4583777 register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x07439119 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x077b9506 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0de0923a queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1ee3e420 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d0a185 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3359a0e8 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3fbecbd7 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x603791dd mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x61ef5992 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6d7ad2e4 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x729349ce mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9035167a bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa916478e recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xaeb27922 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc0949dac mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc569a2ba mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcce91750 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcf4970b8 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdba9fae8 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdd910c52 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf08e53e5 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf1dabe93 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfdbcc31e recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/md/bcache/bcache 0x0bd697e2 closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0x10dc0d06 bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0x4073bdaa closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0x66d28e22 bch_btree_iter_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x6969b5d8 bch_bset_init_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7b55ca4f bch_bset_fix_invalidated_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7f2a56c0 bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x9e8b3cee bch_btree_keys_alloc +EXPORT_SYMBOL drivers/md/bcache/bcache 0xa130c392 closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0xa5ea0fee closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0xab2d2b84 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0xad29a6f5 bch_bset_build_written_tree +EXPORT_SYMBOL drivers/md/bcache/bcache 0xaec09a2b bch_bkey_try_merge +EXPORT_SYMBOL drivers/md/bcache/bcache 0xaf77343c bch_btree_keys_free +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc04554f7 bch_btree_iter_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0xca580595 bch_btree_keys_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe47e0829 __bch_bset_search +EXPORT_SYMBOL drivers/md/bcache/bcache 0xecf7cef9 bch_btree_sort_lazy +EXPORT_SYMBOL drivers/md/bcache/bcache 0xfbf30701 bch_btree_sort_partial +EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL drivers/md/dm-bufio 0xa7978f56 dm_bufio_forget +EXPORT_SYMBOL drivers/md/dm-log 0x70a5f224 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x79f07c7f dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x7f9ecb9c dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x8e1f2345 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x08bd363c dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x0a88a268 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x82d66461 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x95005e54 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xb741e115 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xc51670ac dm_snap_cow +EXPORT_SYMBOL drivers/md/raid456 0x1e555183 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x29882581 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2ceda937 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2f3527f8 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4f1737c1 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x60e9f5c9 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8543069a flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8ba6f6be flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb92c61dd flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc3c9129a flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc97bb9c3 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xca633474 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf19f977a flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfb7dc565 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0x2d31b0b6 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0x30cb4cd7 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x6934b881 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0xb434883b cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0xe3e15137 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x38cd0d55 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x79dcf0ed tveeprom_read +EXPORT_SYMBOL drivers/media/common/tveeprom 0xe8f9cbba tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x07c34174 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x086545c0 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0945be27 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0a49d99f dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1e5f0bdd dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x28baaf9e dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2907e8ed dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2cf288a0 dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3ee8cfed dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x42a79c04 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x53eed889 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x58c0b3ca dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5a6f883d dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6367c49f dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6e81383e dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x70de704a dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7a412903 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7d2d1d4c dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7e693aec dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9101e3cd dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x93b1fad6 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9a99f99e dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9ab4d06a dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9d163fed dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9efdce53 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa062bc6b dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa485b5a8 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa4f43bba dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa8ca63b0 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xabd66426 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc645fbc3 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd115452c dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdb7dd83b dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe06e998e dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe4290c13 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe6de076f dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe92ee976 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebd38af9 dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts +EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0xe58e39f6 af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x643c3d29 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x752a2dc4 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x09624ba5 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x269e32f1 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x37b4ce53 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3ac59568 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x4c5fad73 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5749aa57 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5eb0010e au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x687edaaa au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x6d844e59 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xb584e170 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xb1e25dc4 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x3a314827 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x33e1dcb8 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xf5a884fb cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xaf53d85e cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xb6409d1d cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x3791209d cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x8ceee4bb cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x05808096 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xa9a51644 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x5b29a94f cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x057232d7 cxd2841er_attach_t +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xef315863 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xfd636b7b cxd2841er_attach_c +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x56513fd5 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x9ac7efa4 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xcc87c761 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xd6e98f35 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xeedb4267 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x07b68d72 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2761c384 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x707b801b dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7c22192a dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x84348216 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8dc498c7 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x92f6faa4 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x94863bce dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x97f94dda dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc0b8817e dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc891d49b dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd5a5f258 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdb5336d7 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe7d449cd dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe97d98fd dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x02f07e27 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x332e0640 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x7a8e77d2 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa94fd14b dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xad64b204 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xf05aba56 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xffaff369 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x0dce2e4c dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x0f7bc33b dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x520e92f3 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xf0d8dadb dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x8ec80574 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x371c8e5a dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x36b5792c dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xbb291bf7 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xf2c9ad14 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xf2f95ea2 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xfe75f63f dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xc4b6dd36 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xee058886 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x1e9f756a drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x24ff9470 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x69cbfd8b dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xfccf321c ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x5cae1450 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x04012568 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x825af692 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xfb48f6f6 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x92466d3f itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x88514cbf ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x7cbe3bb2 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x76605b1b lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x11293e8f lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x5618380d lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x828d87cd lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xfc9c7129 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x319c361d lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xad9c7645 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xbb9a4008 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xcf19fe44 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x3dd4e718 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x44c50df3 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xdd5ce07a m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xd2242366 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x80dbcba6 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x4fca9aa6 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x87eb0bfa mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x50a47d55 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x1f703936 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xeb7a8d60 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x4e6d06e6 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x5de277e4 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x9c07df48 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x79e19cac s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xb2e6e6e8 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x744affe0 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0x68e1bb9c si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x8cb6be67 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x0eba5434 sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x5d0f96f5 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xa0436994 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x5e45240b stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x455559ae stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xc300a601 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x1a0a433d stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x88bdadaa stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xb1cefbc4 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xb297c3de stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xbe6fe24e stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x0dbccad5 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x86e8ac9f stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xbc880b79 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x5c566216 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xf73cc7fd tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x84841310 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xc2e299c1 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xf6f731a9 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x06b1262c tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xaabb6ae0 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x578b487b tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x8cc6f658 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x86a35c13 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x1d642129 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x958fb9ca tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xdb3dc482 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x81220b51 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x1853bdbf zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xb04c81d5 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xbebe4ef8 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x000c6a73 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x073091f3 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x2f8bff39 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x459eb2ca flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x71756205 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x74184de9 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb8e2911e flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x22df6fa2 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x6fe01501 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x76fea9f8 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xf009c43b bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x418f92af bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x47c9c179 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xd929c0a1 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x21127466 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x2f007e5b dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4a43f4a4 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4e759c84 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x61e63b6d dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x84bd8d35 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8bf97959 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xaf67d7be dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xcc12ca91 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xf3e7208e dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x39b70e69 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x3abf2eea cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x5a3d5da6 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x60f5a868 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x8faa7803 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x9292bdf2 altera_ci_init +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x3cab428f cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x495e3c8b cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x6e14a9ff cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7721b10d cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7f000c10 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xafc94611 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc16d7e48 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x6a215895 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xf60f7357 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x32297d13 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x79d1e2fe cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x8b54bccb cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x942c62b2 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x5a56b221 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x6a69bd7e cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x79b5353d cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9ddebbba cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xabd05d6f cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xb9c5281d cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xcc199c5d cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x09f5438d cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1df0bf86 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x20245b5a cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2b5962c6 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x34fa14f8 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3dc199ec cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x49134478 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x54ff6c0e cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x68f262ea cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7626241b cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x79dc434a cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x90598e9a cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa7b9733e cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa8d089a8 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc0793e78 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe6feaaec cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe872d320 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf644e31f cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf98bb8da cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfdadac22 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x016631c0 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x05eb26d5 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x071cb93b ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0ed800da ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14895e0f ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1bd1e914 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2b6e1f74 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2ffc32f9 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5bb947ec ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x69bed5be ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x782a1585 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa680030f ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xaa4e09c3 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc166c7da ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcaa6f729 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd0a0fbb3 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd832f3e6 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x073482f3 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x228291ec saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5a4eda0e saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x764663ee saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7f510ff2 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x81c3c0b9 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x871adfc1 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9e4193e4 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa56b7f40 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc7da7c0e saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd74271ee saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe159e840 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x504d4db0 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x8c1496cb videocodec_register +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x9683adc5 videocodec_detach +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xe357e02a videocodec_unregister +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xfed84a20 videocodec_attach +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x1ba2e129 soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x23e9699a soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x52a55134 soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xb8352306 soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xc5409a56 soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xca42faf4 soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xf55fc0fe soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc +EXPORT_SYMBOL drivers/media/radio/tea575x 0x18089404 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x20166a9a snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0x2cfce859 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x6fac2335 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x92ad4c74 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0xb8f724ef snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xe9758c33 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x02c15b38 lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x19c52a85 lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x2f9238ef lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x8fb48a6c lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xc3fa7540 lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xe7d3ff2f lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xf00a030d lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xffec4162 lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/rc-core 0x3bde44cc ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0xf6335656 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x7c338ea0 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x29d4586a fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x4c6aa4b4 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x6ca05de6 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x78422b85 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/max2165 0xc7ebeccd max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x712f927b mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0xacdcdb09 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x94946c2c mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0xee6b0a90 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x2d62ccc2 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x97c409ba qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x17cdb406 tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0xd0cf4e48 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0xa0bd8166 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0xd1074675 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x3c08e39f cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xa619bfaa cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1fdee99d dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x2f244a43 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x90b355f5 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x95cdf6e2 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x9fdaf210 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb431c90b dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xbbc3ad27 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf8c44aa8 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xfbbe9be3 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x00a3b3f0 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1a774ecf dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x38979781 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x3b30c1c3 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x66e1a0f8 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7518f617 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe364fd12 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x7a0dffb0 af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x03beffed dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1ab898c4 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3c0cb830 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4019831c dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6927b2db dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7c108722 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7d56b536 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9c3639e9 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb8d039b4 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xef3905f0 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf17a4855 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x1185f0e9 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x67c6d487 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x419f06ee go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x58a9fb3f go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6bb01e62 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6fb3093c go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x8e697073 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd2cb8f87 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xda276c74 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe83f4c12 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf0bd6226 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x00eae7e5 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x210dcad2 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x3772f8a7 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x43a29777 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x572ffdd6 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x78b5396d gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x7edc520e gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xee985321 gspca_resume +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x47685725 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x67f935ac tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xd4d8fa13 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xc0afc558 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xeb68c492 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x18c31250 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x48101465 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x87a4ea0c v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x28cb9271 videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x3e513f95 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x5c10d725 videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x958cc231 videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xad5294d7 videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xe6e78458 videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x4f202718 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xdd58a852 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x1888b69c vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x486f4e10 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x7e055506 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x81e3dab9 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x8769300e vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xa06d2766 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0x394d77f5 vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x01177125 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x11cbf186 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x132faeeb v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x185762ae __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x186bbf15 v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b76470f v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1db3a87c video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x20600be6 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x231f9663 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2c2130ef __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3a613f20 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3ddada85 v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4033bbb8 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x48b227ef v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4bb1e1ba __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4bf9d810 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4df39c8c v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x534c6897 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x54ae8f9b v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x560f7b66 v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x58da5645 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5aa6980c v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5d004e09 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5d2ab775 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5e9f8582 v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6140d6de v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x62ff76a8 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x69fbfff6 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x74294573 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x747e6581 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x798c7052 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7d7a36a8 v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7e077d51 v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x82a3f377 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8448efef v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x87b326cb v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8b926a8d video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x91ff1b3e __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9b883e11 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9d5f87ca video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9e9a8cd4 v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa22a5218 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa6edea2d v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa949fb22 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xae3de747 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb40339e2 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb4a21a3e v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbbad5c56 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbfe207eb v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc2297414 v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc74eec82 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xca161213 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcdad99d2 v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc96a69b v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdf008777 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe62310c6 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe7cbc06b video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe8531fec v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe95564e2 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeb76ad32 v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xed92f89e v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf4149606 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf55389f3 v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf6a210cf v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf8e440b4 v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfc11935a v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfd8fbe11 v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfe45e3c1 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/memstick/core/memstick 0x28370d01 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x2c85bbce memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4385d3b5 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4aa48cb3 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x53283779 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x854eed86 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x8de070dc memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x91913956 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x9ccfce14 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa35b78be memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa5987a36 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdab7d744 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xec5e9159 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x06285107 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x073b2a32 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1645508b mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1a6d73d4 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2acd9d2f mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x34c13128 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x37454b0b mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3ad34ac7 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3b5c3a44 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3c6e0816 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3db177c5 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4a96bb42 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x510e15d0 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6c048a7c mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7d5c60a3 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x81e06135 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8b9e84ff mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa1e0f206 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa9ff0f11 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xab195e52 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xafb1a101 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc8653021 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcf810955 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd548e98e mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd71284d9 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd7eb3270 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe31f8e3c mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf2d21f2a mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf550b389 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1a8d1e33 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2331ac39 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3f8bb26d mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4542954d mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x47e03ffa mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x498820fe mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4d915072 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x611569be mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x666218c8 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x68ba9778 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x783e3e11 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7ed50cd6 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x82cc2acd mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8c78c29e mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9104be3f mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9a034196 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa35162b4 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xaa801d70 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xba0814ab mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbc12f25d mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbcd125d8 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xceb50ae7 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe5fa404e mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe8d16376 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xeac79bc7 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf23b59af mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfabf4666 mptscsih_qcmd +EXPORT_SYMBOL drivers/mfd/cros_ec 0x1b1b12e9 cros_ec_register +EXPORT_SYMBOL drivers/mfd/cros_ec 0x53cb4b3d cros_ec_remove +EXPORT_SYMBOL drivers/mfd/cros_ec 0x756e1de5 cros_ec_resume +EXPORT_SYMBOL drivers/mfd/cros_ec 0xa12b000b cros_ec_suspend +EXPORT_SYMBOL drivers/mfd/dln2 0x2e6a8cbc dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0x37c98310 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xdc821d82 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x7e4972c8 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xac460db2 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x20a3cefe mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x64486857 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6f452efb mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x83ae153e mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x90c371ea mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9f6fffb3 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xad3d67f6 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc2a78203 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd8a7ab46 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe4cede4d mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf7dfaead mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 +EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 +EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib +EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led +EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw +EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x56da3b77 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0xbeb88c80 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x4aacf648 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x77a7fdf8 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x78964dd1 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xe7f44ffc wm1811_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xb5412eb3 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xce7db532 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x075983d1 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x364e85f3 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0x3afe6189 c2port_device_register +EXPORT_SYMBOL drivers/misc/ioc4 0xd68f99e4 ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0xfa8ec537 ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/mei/mei 0x0b3c2389 __tracepoint_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0xafdfce69 __tracepoint_mei_reg_read +EXPORT_SYMBOL drivers/misc/tifm_core 0x25f085a0 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x269d2bd7 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x351074a3 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x463c93bd tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x484f2ba2 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x4d6e535c tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x5c1dcdae tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x87af00f4 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xcbb4329c tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xe3a3f9c0 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xe82229a2 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xfdc9d79d tifm_add_adapter +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0xeac5da9c mmc_cleanup_queue +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x19f7b159 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x5c40ac41 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x5d3b02da cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x8d17a9f0 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc6b128cb cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd754f1cb cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xffd27d18 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x17b690f9 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x7431ca21 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xb9f3e519 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xd34a804a do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x4f1855a5 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xd69b01a6 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xf40e8482 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x7930e22d mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0xb29daffc mtd_concat_create +EXPORT_SYMBOL drivers/mtd/nand/denali 0xba8c9d36 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/denali 0xd66b5424 denali_init +EXPORT_SYMBOL drivers/mtd/nand/nand 0x0a8b0818 nand_scan +EXPORT_SYMBOL drivers/mtd/nand/nand 0x38d4d309 nand_scan_ident +EXPORT_SYMBOL drivers/mtd/nand/nand 0x5f47c7c3 nand_lock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x5f97e0e6 nand_scan_bbt +EXPORT_SYMBOL drivers/mtd/nand/nand 0x77734e2e nand_scan_tail +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8147f282 nand_unlock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x3c01bccb nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x47c50bbc nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xa5236291 nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x4e6eb00b nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x75c6b863 nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x8cfcf75c nand_flash_ids +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x2d4fcf7d flexonenand_region +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x4b2d4c3d onenand_scan_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x5256041b onenand_addr +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x9ca2bd98 onenand_default_bbt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x098e2e0c arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1814d856 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2025d39d arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3b354e7d arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x72566ed8 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x88b2c207 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9e618687 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb2f7f074 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd9ab025c arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xda6fbc7e arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x2afc9b25 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xba3d3a6b com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xd5d68651 com20020_check +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x05ede9db ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x19abb18c NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x20df2724 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x2b64c888 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x47a5cbf7 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x54ac5a62 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x75ff96f4 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x855c9c57 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xacfb6c6b ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd9338d86 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x34466222 eip_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x45ef7897 NS8390p_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x5e452411 eip_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x6d1df26d eip_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x99c03fd7 eip_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xb908f858 eip_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xca17a05c eip_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xd574a91e eip_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xd69ff665 eip_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xe922ecc9 eip_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xff6ccad5 __alloc_eip_netdev +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0x51b1b0ff bnx2x_schedule_sp_rtnl +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xd0ee4140 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x12504d6c cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1b7479c3 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1f40ebda cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x38fb6a47 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3b638053 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x460b5383 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4d2d2eb6 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4eda9aff cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8cf4e6d2 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x991a0c04 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb6676860 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xca0a593e cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd207f0e5 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdb07c76a cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe285339d cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe5e6233e t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x08c008b6 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x189c01f3 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x19b50278 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1b58ee3c cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1c774b69 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x213c2c2a cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2cd49cd0 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3273364c cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x35d51ca9 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x437b215b cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x48551a71 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x54576d5a cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x55e6e572 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x57707dfc cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6559ee14 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x65e6821a cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6a1b8dd9 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6f3f0774 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x96f2c7bd cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9a571c3b cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9f125f11 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa32aaf98 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa63468a6 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaed9933b cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb60f16ab cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xba283001 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdd0d6d0f cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xde95d49b cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe409e14e cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xedad6185 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf0a349f7 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf824a9b6 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfac4d80d cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfe333f6e cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x3fa5e6e5 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x4b6ae9f7 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x8f388550 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x9e3329ab vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xb0b58121 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf53365c2 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x82d8dede be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x8bb0cf9b be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b949cfd mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x159b9d31 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1abc6c48 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x211e3bd3 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2758b3de mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3096b69a mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32347bfc mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x384dee17 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38fe0e0e mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39889b1b set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3cd335ff get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49159dbd mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4982fe08 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6eaf7bd8 mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x868af812 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x916bae45 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92e13289 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9bca298b mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa11b5a70 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6cfbfcb mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa278cf1 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8298c7d mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbedc47ce mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2278280 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2f382fe mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca33b36e set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccd6904c mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2a0ae43 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd311d6c2 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde30b51b mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdec93425 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1099019 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7eb157e mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebbe1654 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec700d12 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed11f516 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf94ab613 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc395bfe mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x054a7e94 mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0857aabd mlx5_get_flow_table_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb7287e mlx5_del_flow_table_entry +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11c6c187 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e88befc mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1efa3da8 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24c46b25 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c3e8a7b mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3472210d mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44e5ce7d mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45c6825a mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a5dab70 mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52233089 mlx5_modify_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52803cda mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66962b1f mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d112ea5 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x718a515f mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7269b578 mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72effb17 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x761d2d0a mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85ceaa3a mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a718c75 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90ea4b5a mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96535343 mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9bdad24 mlx5_query_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xabef39a7 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xafca0df2 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8b43c35 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6ba2dc0 mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf751196 mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf960e07 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd0569cf2 mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf45f21c mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0378cd6 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe58ed593 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6af33e4 mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf82069a8 mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc446dd1 mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc728a49 mlx5_add_flow_table_entry +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfcc6642e mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfcc99605 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfce1a5f2 mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0b783ce2 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x183ef715 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5a7974b2 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7bbc70f6 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7c91ae6f mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858e0123 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcb5c8545 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe5cd6240 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee8e0771 mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa209d1af qed_get_protocol_version +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xfd678c4d qed_get_eth_ops +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x11088515 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x197db782 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x265c3d69 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x4a8d8878 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x957f5630 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x141a763e sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x1a3f638f sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x1ab4dfec irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x4dc57e36 sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x5f29f8ae irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x9ee67a74 sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xa430ed59 sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xaf7f07bd sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xde6c8d8a sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xf84ca606 sirdev_put_instance +EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mii 0x037523fe mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x0b7969d5 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0x0bfc8bc9 mii_check_media +EXPORT_SYMBOL drivers/net/mii 0x988d15dd mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0xac206a67 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0xb61faeab mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0xc20b1985 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0xcc14930b mii_check_link +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x33891f35 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x79befa7b alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x88848cb3 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x8965ebf6 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xf9305f41 xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/vitesse 0x9a78c2b6 vsc824x_add_skew +EXPORT_SYMBOL drivers/net/ppp/pppox 0x1326ee70 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x7ec833de register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xb07b38f3 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x24610135 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x1e052010 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x651126bc team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x663c8dd3 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x75f357ed team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x7e9f8dca team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x7f601484 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0xa69cb2bf team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0xa7263161 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/usb/usbnet 0x023f0b99 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0x07138888 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xab51a604 usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0xc416fa8b cdc_parse_cdc_header +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0e51ca34 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x261facb2 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x35bde2a6 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x8126f6d0 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x8232d1ef hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x89ff2346 hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa95e25f5 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xaf6a0abc hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb7eae78a hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0xcb64a6cc hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xe2e19836 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/z85230 0x019729b4 z8530_sync_open +EXPORT_SYMBOL drivers/net/wan/z85230 0x058404f8 z8530_sync_dma_close +EXPORT_SYMBOL drivers/net/wan/z85230 0x10c78988 z8530_dead_port +EXPORT_SYMBOL drivers/net/wan/z85230 0x23bcfa21 z8530_queue_xmit +EXPORT_SYMBOL drivers/net/wan/z85230 0x3ac4cb8e z8530_null_rx +EXPORT_SYMBOL drivers/net/wan/z85230 0x46b24fc9 z8530_init +EXPORT_SYMBOL drivers/net/wan/z85230 0x5cd24d29 z8530_hdlc_kilostream +EXPORT_SYMBOL drivers/net/wan/z85230 0x6fa9ee22 z8530_sync_close +EXPORT_SYMBOL drivers/net/wan/z85230 0x759ad35e z8530_channel_load +EXPORT_SYMBOL drivers/net/wan/z85230 0x78e228b3 z8530_nop +EXPORT_SYMBOL drivers/net/wan/z85230 0x85608b32 z8530_shutdown +EXPORT_SYMBOL drivers/net/wan/z85230 0x9b920697 z8530_sync +EXPORT_SYMBOL drivers/net/wan/z85230 0x9c5d01a5 z8530_sync_dma_open +EXPORT_SYMBOL drivers/net/wan/z85230 0xaac7a347 z8530_describe +EXPORT_SYMBOL drivers/net/wan/z85230 0xbeac6cd8 z8530_sync_txdma_close +EXPORT_SYMBOL drivers/net/wan/z85230 0xbf722210 z8530_sync_txdma_open +EXPORT_SYMBOL drivers/net/wan/z85230 0xd4ffebf0 z8530_interrupt +EXPORT_SYMBOL drivers/net/wan/z85230 0xe3d80064 z8530_hdlc_kilostream_85230 +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x786cf799 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/airo 0x3fe1b637 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0xa659f5f6 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0xab69787e reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x19c0a921 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x349b1507 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x349bb74b ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x37742e12 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3df9e3e4 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4cb80d93 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8acefa8f ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaef99c8f ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb3a8eff6 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb97771b2 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc9b1fbce ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe9001c88 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0ddfc537 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3dcd8c8b ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4587effd ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6344164c ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x67e4c419 ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x71a2e9a0 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x825ca144 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x92c5531e ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa09216c2 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc2d19639 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc70f168b ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcf915aff ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe5c9c7c5 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf41d9434 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xffba09aa ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x269c603a ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2c34d823 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4ac6d8bb ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5dd1adfa ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x67534e00 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x79969190 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x82326ddd ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x82bc8358 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa44d324a ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc3438dcb ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd4c8219e ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x03fb2f72 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x096e537f ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0e1ab641 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1f1cdca8 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x23c2a8a6 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2edfbfa0 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3e580af3 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3eb77e9c ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4240dc6c ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x469cab07 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x68b5e4d1 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x68eedbc3 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x719030f6 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x76006b5e ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7dad6e0d ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8545d942 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaad162b1 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xad6cf70f ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb7b4ab9f ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbe4bd5fe ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdc6e08b6 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe27f6721 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf16b215e ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0194fb93 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02474e5f ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x056792f8 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0898703e ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ef620ed ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x128e77d0 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x12b6f7e3 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1653776d ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16d40373 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17ab7cbf ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x18ef2340 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1fa8ff0a ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x232af1c5 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27490979 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27cff689 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27d45407 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x285de600 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x295d2efb ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ac59187 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2eaa90cf ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ee024e7 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f4eaf46 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3068ae7a ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x311e3477 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x319786d6 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x33b0896d ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x398b58e3 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3edbc33c ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x40078821 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x40e60775 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x43986e82 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4763a954 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48d697fe ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4cbfaf88 ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e8de090 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51415fe5 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x52baf433 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5328b580 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5408065d ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54571b46 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54c5b08c ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x55433ccb ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x554ddb8d ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x55684fd1 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x558d4968 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x55ba18ea ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5800f1f3 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5af7fc7d ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c25b1f4 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5d78a394 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5dc761dd ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x60081ea8 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x65101378 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6c8382d1 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6cad5bd0 ath9k_hw_request_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d3bfd34 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e634234 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7283f5c6 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x736a3e3b ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x785815fd ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d7f0dc6 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fe48d3f ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ff0d35b ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8050852b ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8cf4a31a ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d81c013 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x962be2d7 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98068495 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98b2d6c1 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a49fee9 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9b80cc78 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d1b9f75 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d660568 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6db9243 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaad84fc3 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xac3c4ca1 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xadac41f5 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf935005 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3b04223 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb5997eac ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb83a8f70 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xba017073 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd1ccbfc ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc9fe5363 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcaf43aeb ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb122466 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf112ed2 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd329cb88 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6eba1c2 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd79dbf6b ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9d0763e ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xda142bb4 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdaea8b57 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xde66adfa ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0e176e6 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe17f546a ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe2d2cbe4 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe483c5a6 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe9733c68 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xea26f140 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf021bcb1 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf02f69d6 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf06faddf ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf8b5097f ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfeb23b44 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/atmel 0x1824d9f8 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0x2093dfee stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0x50bf9c0e atmel_open +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x04dcf023 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x060c3ce9 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x28d45003 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x2b73f0e9 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x2d35370c brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x2fc74b04 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x78456a2c brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x7c616f13 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x8a7af4e2 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xaa3980ff brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xb0f49e2b brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xdd25dce7 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xe95dc340 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x05d5d5be hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x05f288dd prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0d410c27 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x12af12d6 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x17038c98 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x19d8c8da hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x50cf34b8 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5cfaa158 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5ec7c6d3 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x651f5453 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x731e3c08 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x771ed1e9 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x78bf5380 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7a3408bf hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8441934f hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9448e913 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9b86f4c6 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa5b5c68d hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa6c6f7c2 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa753aaed hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb168210b hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc1c948cf hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xcffb1646 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xdda59ae4 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xfd30cc6c hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x02debe3f libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x16a96287 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x1af1dd65 libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x229d6d6d libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x34b8ed43 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x3520591f libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x37614030 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x3c4fef9d libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x47826c0c libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x47fbbb15 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4baf16bc libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x70046c81 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x876e8400 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x8847f327 free_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x91b776b8 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x95b51c02 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x988115ee libipw_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa9e1b849 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb80a458e libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xda755938 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe194c7f7 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x071754ff il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x09a77f93 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0aa498ef il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0b1c2574 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0b4fcf24 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x104fe100 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x11a36460 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x12670154 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x13f286f3 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x15c8938b il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1770d307 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x19c6768f il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x19d27ad1 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1a43f459 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1a9fa593 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1c5e6ba9 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1cf2de70 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1e507c6b il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1f99d27c il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1fca1ef7 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1fd0a1fd il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2246a772 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x23063c21 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x236000ce il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2526ddc8 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x26390df8 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x273bf91e il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2f3afbb2 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3038065c il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x34c6dc8b il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x377b745f il_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x38135b63 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x407d5d00 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4182851f il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4bbacddd il_set_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4bd14654 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4e599e5f il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4f90e11f il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x500cd487 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x51f62c78 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x52d9f674 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x538da6b0 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x55ec50b3 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5cc5ed08 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5d974f12 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x612ac3fe il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x632dbc11 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x63f45b93 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6514486a il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6918a871 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x69550393 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6c7c1515 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6e526c9e il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x722de4d7 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x79affc7d il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7a1e565b il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7d8e4b2b il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x81fd86f7 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x85c77829 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8a5de398 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8a61126e il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8ab31c44 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8e27f59c il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8f362fc7 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9480fdac il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x99807e2e il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9dd2e5e6 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9ea2ffb8 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa11da6b0 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa139605f il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb48deea8 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb5b357de il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbb81d667 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc09a186f il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc66eb999 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc6c7655d il_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xca1655a8 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd22ce27f il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd300c934 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd79437bb il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd7c03a1b il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xda0f706c il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdbb242b7 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdbc83165 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdcd04d48 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdd5398a1 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdf04f1f4 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe185cb16 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe42c3287 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe5b2ab2a il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe834b3d8 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xea25b1b2 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xedd8c970 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf25ffe1e il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf5167196 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf5b03ed7 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfd7b19a5 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfee1f221 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x08c6664d __tracepoint_iwlwifi_dev_iowrite8 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x4379786d __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x95a8ab3c __tracepoint_iwlwifi_dev_iowrite32 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xa2b6ec39 __tracepoint_iwlwifi_dev_ucode_error +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xb69add1f __tracepoint_iwlwifi_dev_ioread32 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xcd60e86e __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xd4f50457 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x02cf7fcf hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x1e427b80 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x27e9e34b orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x2e93e43f orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x41e4e4ed __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x77270118 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x93f9292b free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x9fc73813 orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xa8ec8947 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb4f02748 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb9e0c385 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xbf8230a2 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe2eb96c1 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe4a75c1e orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe693a1c6 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xf3f05216 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xf44a4732 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x3f3787ba rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0e75aee6 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x16b9d418 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1def1949 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1f5f8dfb rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1f938cb3 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x231eeb55 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2946b832 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2bad4439 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x35c6cbdb rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3b94dea4 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x405b3fef rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x464fb62b rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4bc0d04c _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5e3d847f _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x61ddf29a rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6aa0f4be _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x81368600 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8263dab2 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x82a9b398 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x870d803f _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x877fc531 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x89803093 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x92911993 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9732dea0 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa19d46c9 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa4b04b0f _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa92958f8 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa988da64 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xad630169 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb596bc7f rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb97ad51b rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc7a11971 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc86925c0 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcf07fa9d _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd88875b3 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd8a43a45 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdfa5f374 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeb19cdd4 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf0a04e5d rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfc17f225 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfd8ae924 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x231c708f rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xa29d0577 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xbe962e38 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xeb284dc7 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xb3138665 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xb902e516 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xca102de3 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xcc44ff69 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0682e7ca rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0f51e469 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1cb073ad efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x208deb9c rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x23d2a0b2 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d2424bc efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3e432d6f rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x44d04c2a rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4ee12345 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x574621ad rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7805a927 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9381d9a7 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97cfdba7 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa0668944 rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa2108aaf rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa9657fad rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xab6eb321 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb6c13aa3 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbea38e97 rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcecff5bb efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdd8aa0c6 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf14bd552 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf198fb75 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf515bed1 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf525921e rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf718a4d8 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfbe22ce0 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfe283be5 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x1e18f476 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xd7105f93 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xe1893566 wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xf5f8956c wl1271_free_tx_id +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x1e07a32f fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x25fcc514 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xc142d717 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x5bef93b0 microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0xf19a5e31 microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x4760aa80 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x5c37a2e7 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xff9516f5 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x8e992f3e pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xfabd7d8f pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x2c40f59b s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x532de7ff s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x6a78e9a6 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x0bc29056 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x0ef67bcc ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x22e5cd78 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x30e30e27 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3b1b5fc3 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x6dbb75e3 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb141aa89 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd7a7ea3a st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe47c8a61 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe8aae3f3 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xea0eb3d3 st_nci_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x08b2ff3f st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x142e503a st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1ec1eaf6 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3ad99940 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x495218fd st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4ada311b st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4b2cefd4 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5089bd50 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa95f8734 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xab632ff7 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb248ec6d st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc24fec64 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdc72a4c5 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdcd2518f st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe736ef09 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe8df89a1 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfaa5282c st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfad7ab11 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/ntb/ntb 0x0d0224d7 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x3f8cb9b6 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xa29d5a45 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0xa314d688 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0xaac01846 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0xc98d9a27 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0xe80b148d ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0xee114ba5 ntb_set_ctx +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x033616cd nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x0636b1a2 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x743fded6 devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x00317f48 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x0bf31cdb parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x0e33d817 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x0ee74f76 parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0x12dce1b7 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x1664d48b parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x1b9a0176 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x365f8b87 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x442d94b3 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x44cc5477 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x5494b4e4 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x5ab0d90a parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x6aafb509 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x70616c92 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x7236f02f parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x72f00491 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x7d33b0b8 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x90fb4ab4 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x97f64a28 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x98869576 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x9f15d73e parport_read +EXPORT_SYMBOL drivers/parport/parport 0xa5774879 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xcb34b11d parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xcffac02e parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xd607d444 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xdeb8122d parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xe01cb0d8 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xe08bf9ec parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xe2dcc30b parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xf5e4ea93 parport_release +EXPORT_SYMBOL drivers/parport/parport 0xf5ea36f8 parport_write +EXPORT_SYMBOL drivers/parport/parport 0xfa9c466d parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport_pc 0x3335ff36 parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x77c34191 parport_pc_unregister_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1729754c pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5441dc3d pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5e5424af pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6448e5a6 pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7654d8b3 __pcmcia_request_exclusive_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7d75b9aa pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x85584520 pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8cc0197e pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8f01eb36 pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xbf786120 pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc0d6d0b8 pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd5a948b9 pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd8a8413c pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdd2c8476 pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe6261312 pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf167ef9b pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf9ad2cdd pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xfced287d pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xfffa63ef pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x03aa9aa3 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x13484ddb pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1af7118c pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa3fe990b pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb2773d75 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb3ba802f pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb53da7a3 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xbe3240d9 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcaef5de6 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe0a492af pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xfa5988ba pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x7145eeaf pccard_nonstatic_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x7951b25e pccard_static_ops +EXPORT_SYMBOL drivers/platform/x86/intel_ips 0xf97d7d0e i915_bpo_enabled +EXPORT_SYMBOL drivers/platform/x86/intel_punit_ipc 0x3a0b563a intel_punit_ipc_simple_command +EXPORT_SYMBOL drivers/platform/x86/sony-laptop 0x5bb1e117 sony_pic_camera_command +EXPORT_SYMBOL drivers/pps/pps_core 0x3ee9b5a2 pps_lookup_dev +EXPORT_SYMBOL drivers/pps/pps_core 0x4b9b6ea8 pps_event +EXPORT_SYMBOL drivers/pps/pps_core 0xe871fe9e pps_unregister_source +EXPORT_SYMBOL drivers/pps/pps_core 0xfe7c10b8 pps_register_source +EXPORT_SYMBOL drivers/ptp/ptp 0x66694381 ptp_clock_unregister +EXPORT_SYMBOL drivers/ptp/ptp 0x99ff9a68 ptp_clock_index +EXPORT_SYMBOL drivers/ptp/ptp 0xab34fcf8 ptp_clock_register +EXPORT_SYMBOL drivers/ptp/ptp 0xcc04ca7b ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp 0xf818397d ptp_clock_event +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x1501f165 pch_ch_event_write +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x26751936 pch_ch_control_write +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x2f9d9821 pch_tx_snap_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x318e479d pch_ch_event_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x46e0dce2 pch_src_uuid_lo_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x73f51c2d pch_rx_snap_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x93f882b9 pch_ch_control_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0xa2eb621b pch_src_uuid_hi_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0xed0699c5 pch_set_station_address +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x0ed66c77 rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x11fb4017 rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x13a47c03 rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x19efe51d rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x4fa882c5 rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x69532bcf rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x6a6f4e36 rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x73a0e9ca rproc_get_by_phandle +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xb2b0abe1 rproc_boot +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xffb7d8a1 rproc_put +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x149069ac ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/53c700 0x0dc2ddbb NCR_700_release +EXPORT_SYMBOL drivers/scsi/53c700 0x3d9cece0 NCR_700_intr +EXPORT_SYMBOL drivers/scsi/53c700 0xe6c42109 NCR_700_detect +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x3fea2de5 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x64c5a5da scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xdd6242c7 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xe79119bf scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1a0ce57b fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x350f0e16 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x36c7a273 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x55d63b9b fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x568d6eae fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x61f35635 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x63f244c8 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7f277d84 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb6a5118c fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc1747f38 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf999e6f6 fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfe603116 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x009b1d69 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x04441473 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x059d3330 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x06ca172d fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x078f8a52 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0be1aec5 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x14718517 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x23d97c44 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x240f44fd fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2b0f67bd fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2b110724 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2b8b2a9d fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3972a110 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3b293119 fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3cfa0bdc fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x445ebb27 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4bcdcf21 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4f03387b fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x53f977a2 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x57850cd2 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x578b84f8 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5d222a6b fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6f9502c9 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7859a777 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x78e5a70c fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x79077a40 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f01c0a2 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x845de7ee fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8925d5cb fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8a0d6b98 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x978387f3 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9a5ce228 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb1ec2ed7 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb5ea30c4 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbcb2b5d9 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcd65682f fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd0a5964c fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd23466e9 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd3a03483 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd917822a fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd9c765f8 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdb09e834 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdcddd7a1 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe09eb85a fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe14ccbc9 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xebd4a3ba fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xec7ec915 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf01267c5 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf6e6b689 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfeb5f746 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x1d94b7c3 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x7f32d4e0 sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x95181c77 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xb6f72b85 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xe336efc1 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x077ab610 osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0a4e81f3 osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x102dc798 osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1e857dd7 osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1fae19e9 osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2617f296 osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x271b8c3d osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3087c2c5 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x59e38c68 osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x628484b1 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x68dc9e92 osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x69d820ce osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6ae22851 osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6d8807b1 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6ff6605a osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x72f40832 osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x75bd80e5 osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7a11406f osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7b11b1a2 osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7bddb6ce osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7c106aae osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7ecb6741 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x85310c04 osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8e2012bf osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x90845310 osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x94d578f9 osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa39cb484 osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa412f840 osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa921b45d osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb0c7c1dd osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbde5e848 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbee19965 osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc1e68ce5 osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd6c4d91d osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf77bd37e osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfde1b4d2 osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/osd 0x0ab6dd9a osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x67b0bba3 osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0x7911dae6 osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0x98662310 osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0xa0f32230 osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0xcc235449 osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x04c5cd8d qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1c5af5a9 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1f0bacd1 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4314315d qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4bd4a71f qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5247714e qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x600df127 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x91f09684 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa8b1f458 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xdb3aa8d5 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe60cbb0d qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfb11dcba qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x0b30408b qlogicfas408_bus_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x39fa5f31 qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x47c0f690 qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x6cd32d2c qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xaae0376b qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xbded78c7 qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup +EXPORT_SYMBOL drivers/scsi/raid_class 0x1575a306 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0xb60d851e raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xfb5c634c raid_component_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x03fc1473 scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x08e78652 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1e40e403 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x21e6852a fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x41021fa4 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x76010302 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x78fa31aa fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9057c810 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbeee75d5 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcdd8ec00 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xdcdbce7e fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe8113ab8 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf5ca2d66 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x021786c4 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x16898cb3 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x16fded45 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1ce300c7 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2116d5d6 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2f3174af sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3bf2aead sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x418de931 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4353ac3f sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4d34b7d1 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x623790d3 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6eb04f74 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7ad0ba89 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8e8dc21c sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9119f184 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x92577b47 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x957af04e sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9dde3d9d sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa3550d1e sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa65dc802 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xab894a23 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb8030a5d sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb995a784 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc12e1827 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xca371a36 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdfced2cd sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe6378081 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xea8dc558 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf225511e sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x27d67c86 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x29e1ba98 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x8bbf6cbc spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xb493658c spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xfe730a12 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x4ff45fab srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x5e6dc4e1 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xb19ffd7a srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xbc360301 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x2268e9d4 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x3f92d9d0 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x459437ed ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x462659e2 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x8b29e6dc ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xf5150c11 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xfb6495b0 ufshcd_runtime_idle +EXPORT_SYMBOL drivers/ssb/ssb 0x16e2615e ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x2d15891c ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x2d88af7f ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x43d504ff ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x61b58d37 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x7bf6223b ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x849680f9 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x87c13c34 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x8a81cd07 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0xb7782a07 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0xbcce8dc2 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xd1b1cd69 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xd7ce8018 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xdae3104f ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xedc5407e ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xf0f77a61 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xf2aaf70a ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0xf2c2180c ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0xf90a83fc ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xfbb8538e __ssb_driver_register +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x04952e55 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x07fa33e9 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x229abfdb fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x237db350 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x424a3cec fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5232706e fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x536d4d32 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5a3c1ee2 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x600adeba fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6ef5dfb7 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x865dab73 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8a66304d fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9b44e20d fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc33bab5f fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcfbde8ef fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd55db4e3 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd9974a3e fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xde04af37 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe3dce264 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xecafbfce fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xecbea8b6 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeea35e08 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf80029b2 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfbaed274 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x1c9c66df fwtty_port_get +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xc29d2f0d fwtty_port_put +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x8176d81a adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x0a8da026 hmc5843_common_resume +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x56b2aa63 hmc5843_common_remove +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x753e403f hmc5843_common_suspend +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xe15bda42 hmc5843_common_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x6b010522 ade7854_remove +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xdb2310ff ade7854_probe +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0xb0b00f81 cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x08a0b8ce most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x050157eb rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0a6c8f25 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0c554989 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1215ccc0 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x17a6d700 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x19b9f5ea rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1b958017 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x297c60a3 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x30b72d2e rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x30ece298 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3a9305d2 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x42df6d58 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x43a6dec9 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x43de06a5 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4732ec9a rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4b8adf5f rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4b9d52f3 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x52558339 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x52f8daab rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5821e09a rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5af8b4bf rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x72582a98 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x72ad5324 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x73094686 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x76f7f5be rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x874f8420 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8adf2667 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8d6b743e rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9239a1d6 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x99f650d6 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa329971b Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa91c738d rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb2d586d4 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb91f58aa HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb9969dec rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbdea5f00 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbf2649b1 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc2ad9a4c rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc83bfbae RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xca2e5d87 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xca4c4857 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdad7f483 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xddff4fa4 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf108d66 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xea4bf06e rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeccf868c rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xedb9951e rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf5b85d8b dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf7d3351c rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfe708ac7 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x041ee992 ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x074b0dbf DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0d296c18 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x14a7e2a7 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1a99e104 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1b9b6d29 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1c999515 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x201d8f81 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2394e0a4 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x24e10533 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2c0ea445 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3157173c ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x39ab2f33 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4111107e SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5a91d475 Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5d979b7c ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6517a604 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6dbd02b0 ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x76302d44 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x76e268b9 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7764422e ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x77d32828 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7a837b64 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7d65e91a ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7e711c1b notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7ea36ea5 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x88cd57b2 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x896b33e0 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x89f05312 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8a333ef0 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8d6e2365 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x91003e4a ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x924b9fa7 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x959c82d6 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x97b9f5a4 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9d718ea3 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9d8cc9b7 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa16b9935 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaa4f6ba7 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xae552118 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb5f6a1e6 DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb786cd72 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbed10b15 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbff25975 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc939074e ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xca610a5e ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcd615f10 IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcdc444a9 Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf4c2491 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd456191a ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd74d8f09 Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdc228d1d ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf259b42e ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf64c56be ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfe5c1ddf ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x11324975 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x204f737a iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x24b4908f iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x276665f3 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3c321b34 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4702eb8f iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x479a6df2 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5e76aac6 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x674e5c9b iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6e129894 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x716416cc iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x74f56ad4 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x84735232 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x848daf92 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x95200e75 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9caf17ec iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9e674825 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa8585736 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa9245072 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb0e08162 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc1001836 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc17b27da iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc9792dc3 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcf2e4f01 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd35a368d iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd5f8641a iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe0d57c80 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe8765c72 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x01c64a6a transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x052f9200 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x0782aa8c spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x07abca40 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x081bb359 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x0a958b05 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x0aff6d95 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x0cbdcdfd transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x1f48c676 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x2341c6e8 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x271e69b5 target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0x2927087b target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x2e224a0d target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x4115a1d4 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x4414d7a5 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x447bc4f1 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x44e42aee transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x47ec8da4 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x481a0c31 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x4adb2ef1 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x57798c95 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x5a8e5d85 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x5dfda1e4 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x64aa2088 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x64c5c0f7 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x6ae187db sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x6d8f127e target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0x6f3fe88c transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x7051f9d1 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x7199546a transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x7374929f sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x76f631e3 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x77a20090 target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x78a91809 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x7ded31ce spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x7edae7bf spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x8739d3f6 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x8d06b211 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x8f8bcf62 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x90f7f18c transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x935e4715 target_put_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x99064212 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x9b1ee7ab transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0x9b7f9111 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x9c088fe7 target_get_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x9f8d018f sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xa214e7d0 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xacb7bef4 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xb45fd4bd transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xbb3ca8d7 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xc76a3cd9 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0xc7b81703 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xcb25c67f passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xcd210005 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xcea4fa8d target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0xd0c4e876 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xd3a6f790 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xd5717a63 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xd7712fe7 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xd7de92a6 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xdb952813 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xe0b611fd target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xe3f6bbf8 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xe8755ef1 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xef77fe56 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf27de80d target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf6f21dbf target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xff7004fe target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xfff630db core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x1887763e acpi_thermal_rel_misc_device_add +EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x5007fc2c acpi_parse_art +EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x86c998e6 acpi_thermal_rel_misc_device_remove +EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0xdf707fab acpi_parse_trt +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x6150f7e5 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x602c4496 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x2a140e49 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1194b65c usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x487808bc usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5eb7d624 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x64c6b874 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x70658c2f usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7191561f usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x96586c39 usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xcd16aa5a usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xce455aa0 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd2fdf1f0 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf018338b usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xfc5f437f usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x052f980a usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x86c08a96 usb_serial_suspend +EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user +EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x2e91ca97 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x367ce26a vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0x59f824d9 vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x7bda5e6d vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x821e9390 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x937e412c vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user +EXPORT_SYMBOL drivers/video/backlight/lcd 0x0db4bfd8 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x66670434 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xaaf17f8e lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xb711119a lcd_device_register +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1a4f7f82 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x265f6424 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x3fa420ca svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x86edc297 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xadeee012 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc2c0eccc svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe7162fd2 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x55698a0e sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x0746ed7a sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x12f3bea2 sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x2265ded4 cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x02841447 mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x1fe7c048 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x77431113 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xeec23a13 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x68579296 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xb78ffe73 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xd0b2c4d0 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xf5b932b4 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x1ba2e1c4 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x52c68ba0 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x2d9bce42 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x61504f97 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x7426fb17 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xce3909f5 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xa7098440 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xc3364d61 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x262c7202 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x3b9fdcc1 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x7a35e8f0 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x9d11f2f2 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xeab2248b matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x5bf57c67 mb862xxfb_init_accel +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x028ea21c w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x1b97e56e w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x1d667bc1 w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x208970a4 w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x7d8668fe w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x804635f9 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x2ec1eeff w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xffea1811 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x19c8108c w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0x82735b83 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0xc9fbc424 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0xf9c2d33e w1_remove_master_device +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x04e133fc iTCO_vendor_check_noreboot_on +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xa78bd894 iTCO_vendor_pre_set_heartbeat +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xb5f20875 iTCO_vendor_pre_keepalive +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xc4f657bf iTCO_vendor_pre_stop +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xdc6effc9 iTCO_vendor_pre_start +EXPORT_SYMBOL fs/configfs/configfs 0x0de2b3c0 configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x1cafaaca configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0x2d9a4f92 config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x366c489d config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x39d1d8b8 config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0x3e312b15 configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0x52836844 config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0x63fccae0 configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x6b23394b config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0x7121ccbd configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x7ebcbb39 config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0x8c974535 config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x9cf5adc1 configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0xa2d8a47d configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0xb7723c64 configfs_unregister_default_group +EXPORT_SYMBOL fs/exofs/libore 0x06f2329e ore_remove +EXPORT_SYMBOL fs/exofs/libore 0x12431aae ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0x17120d0a ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0x26018439 ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x35ec98f0 ore_create +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x5582a386 ore_write +EXPORT_SYMBOL fs/exofs/libore 0x68c22b7c extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0x7273084d ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0x8a96b1de ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xe3d867ac ore_read +EXPORT_SYMBOL fs/fscache/fscache 0x166969d4 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x23a75987 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0x2affbf59 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x2ca4f0e7 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x2e62b163 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x33f133db fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x4460c192 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x459d21b8 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x4741aa33 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x47af148b __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x4808c4ff __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x4955d535 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x543ed543 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x580d518c fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x5e525308 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x5e5885f6 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x63dd5b53 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x77382c95 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x7ad623a9 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x7b94aab5 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x8328471e __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x8f0579db __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x928a5339 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x9560432e fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x9bdf323e fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0xa5d664ce __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0xa921ba37 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0xb2a36971 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0xbb9b297b __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0xc00a730f fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0xc28bc7b3 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xc3e3ff70 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xc748596f __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xca3cec4d fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xd8592c7f fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0xdbb8d0bc fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0xe96e5407 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0xeac42e84 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0xf0ea6d9e __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xf2082df6 fscache_check_aux +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x084dd91a qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x4ba4b345 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x7a1c6313 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x8d5379af qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xe02013d5 qtree_write_dquot +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-ccitt 0x3771b461 crc_ccitt +EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc-itu-t 0xf5b4a948 crc_itu_t +EXPORT_SYMBOL lib/crc7 0x66213969 crc7_be +EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc8 0x41248eaf crc8 +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c +EXPORT_SYMBOL lib/lru_cache 0x03f599c7 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0x2ba1031d lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0x3161ec94 lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x4feade4b lc_create +EXPORT_SYMBOL lib/lru_cache 0x56fc3ea0 lc_put +EXPORT_SYMBOL lib/lru_cache 0x619ed575 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x84e0214b lc_committed +EXPORT_SYMBOL lib/lru_cache 0xbbe7c23c lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0xc48fa976 lc_set +EXPORT_SYMBOL lib/lru_cache 0xc6e4cd46 lc_reset +EXPORT_SYMBOL lib/lru_cache 0xcb990a55 lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xcea6747e lc_destroy +EXPORT_SYMBOL lib/lru_cache 0xd212c9f0 lc_get +EXPORT_SYMBOL lib/lru_cache 0xeb13128b lc_del +EXPORT_SYMBOL lib/lru_cache 0xf460a486 lc_is_used +EXPORT_SYMBOL lib/lru_cache 0xf5ea5f5c lc_index_of +EXPORT_SYMBOL lib/lru_cache 0xf6acec20 lc_find +EXPORT_SYMBOL lib/lz4/lz4_compress 0xcbc5d521 lz4_compress +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x26c3aa22 lz4hc_compress +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul +EXPORT_SYMBOL net/6lowpan/6lowpan 0x1648337f lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x3d1aab0d lowpan_netdev_setup +EXPORT_SYMBOL net/6lowpan/6lowpan 0x5ed38668 lowpan_nhc_del +EXPORT_SYMBOL net/802/p8022 0x347922df unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0x7b698828 register_8022_client +EXPORT_SYMBOL net/802/p8023 0x56985975 make_8023_client +EXPORT_SYMBOL net/802/p8023 0x5ad30cec destroy_8023_client +EXPORT_SYMBOL net/802/psnap 0x7454f85e unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0xf2ed0fd3 register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x0987172d p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x113cfd64 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x172affca p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x19468218 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x1ac34f83 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x1f2b2061 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x1f981cbd p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x24f369ec p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x25b465c7 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x2f439602 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x38ede8ff v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x6253d6d9 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x6627350f p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x67587e60 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x6c5b8e45 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x6cb375ea p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x770b6bcb p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x79b0ac00 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x7dcb3f7f p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x7df0334b p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x7e59d2fd p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x88aa3f72 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x8f3b1cd6 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x9392e144 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xa42060f4 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xa7f045ec p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xa88bbd01 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xaa9245ae p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0xad53c832 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xb279a133 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xbf476a26 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xc0e12cd6 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xc4247b76 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xd6b7dcda p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xdad4c4b3 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xdc7e447f p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xe32eaf95 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xe4ef9d68 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xf0c4a740 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf7d5e091 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xfc8d6009 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x5f916a31 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x7c52dafb aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xcafa21b0 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xcde6473e atrtr_get_dev +EXPORT_SYMBOL net/atm/atm 0x1abd7f27 atm_charge +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x3ffb6650 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x4094060e atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x63c9730f atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x691d8150 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x695a4cd1 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x852f5f11 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x8ddbfc86 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0x913f6af0 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xa84250cd atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xc25488b3 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xcc71d3be deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xe0a68109 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0xee7dc049 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x06dbccd5 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x09cd317b ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x1bb2c2a9 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x603dc909 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x99f61077 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0xb1bad88a ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0xb73e0589 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xfdb45213 ax25_linkfail_release +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0527bb20 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x08c48a3e bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0a6f6d58 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0e22e70f hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x13f9d047 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x33ee47f6 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x37c97800 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x40fa16f0 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4ba27422 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4cf23d09 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4df25871 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5331abd0 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x634087ac bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x66b1fc01 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b1a95d2 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7bbaba08 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7e77c557 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7f12b668 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x818315db hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x84213386 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x85a3d3a6 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x894956af bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8f8b2346 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x942e7c30 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x96518eb2 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9d7856dc hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9ef3f3c4 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa28f4ded hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xaba52b80 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb1761389 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xba090d55 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc2f21a8f bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc5be33ce bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd2cfe151 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdccaad00 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe51cbb57 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe5d8dfa4 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe8600c3e l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf25f3bd6 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf354ab02 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf55a4bcf bt_sock_register +EXPORT_SYMBOL net/bridge/bridge 0x82a964e9 br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x0a531fb1 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x8193c60d ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xe0dbcf15 ebt_register_table +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x1a85dfca get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info +EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x6be009d7 caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xc211216f caif_connect_client +EXPORT_SYMBOL net/caif/caif 0xc680383d cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0xf53d4800 caif_disconnect_client +EXPORT_SYMBOL net/can/can 0x54cd4efe can_ioctl +EXPORT_SYMBOL net/can/can 0x68b81a5e can_proto_register +EXPORT_SYMBOL net/can/can 0x7d83797e can_rx_register +EXPORT_SYMBOL net/can/can 0x89e312b8 can_send +EXPORT_SYMBOL net/can/can 0xc90487f8 can_rx_unregister +EXPORT_SYMBOL net/can/can 0xeae0f8c7 can_proto_unregister +EXPORT_SYMBOL net/ceph/libceph 0x00ba6de3 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x023af48f ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0dbd8e84 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x120833ce ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x1e2094ab ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x21fd5d25 ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0x22e5a962 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x24f0b053 ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0x25ffcf3a ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x29ff15fd ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x2dbd5768 ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0x2eadc45e ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x3276d0bd ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x374221af ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x3854d004 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x390d9ab0 ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0x39bc0fd4 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part +EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0x44184660 osd_req_op_cls_response_data +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x46ebf02f ceph_monc_request_next_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x47a9920e ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x4981e319 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x582a39ac ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x5a3e60c0 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x5dc24bea ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x5f9008a5 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x60ed679b ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x6af6c748 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6cce6792 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x6f84ed89 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x6fd024b7 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x728490ed ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x730db129 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x78c604d9 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x7a3df53b osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x7d94881c ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0x7df63e21 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x8264d295 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x844be64f ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x8779ca7b ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x8878b43e ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x8baade06 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x8bb14dde osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x8cc38ae0 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x8e933571 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x9050b59f ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x9522aea9 ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x981a5dd7 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x99399335 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9a0ab18b ceph_monc_do_get_version +EXPORT_SYMBOL net/ceph/libceph 0x9be60dc4 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x9da563db ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x9e8e96a5 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0x9f7f7387 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xa0c53b83 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xa1506aec ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xa1ebde8f ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xa415c6e6 ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xabab9359 ceph_oloc_oid_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xabfc8970 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xaded78e1 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb193032d ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xb19dc152 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xb252a680 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xb3149695 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0xb4997a50 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb596d0cf ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xb699a10d ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xbfee5aea ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xc0a26e71 osd_req_op_watch_init +EXPORT_SYMBOL net/ceph/libceph 0xc12370e0 ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0xc1f37a29 ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0xc2bb5c90 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xc7a7d227 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xc93e87aa ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xd216c219 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd3aea8ba ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xd5383217 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xd813625e ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xdbca0f49 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xde0eb6ba ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0xe55d9bcd ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0xec6fb06c ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xed8fa308 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xf1d69073 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xf31e7565 ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0xf4e2a5c7 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xf7a6e526 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0xfa1b6919 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x039cd436 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x09f5e3b6 dccp_req_err +EXPORT_SYMBOL net/ieee802154/ieee802154 0x3b4d6c4d wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x4c738155 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x4cecc1f2 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x6d4ce3e2 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xeea68e98 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xefa9cc26 wpan_phy_find +EXPORT_SYMBOL net/ipv4/fou 0x0c07b4a3 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x3d4b8979 gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0x5fbc2648 fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xed741d6f gue_encap_hlen +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x43520dee ip_tunnel_dst_reset_all +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x5072d6c7 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x6f18f08b ip_tunnel_encap +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x814ea2cb ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xbde97e86 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xeafbbc76 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x533d8e20 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x6a686717 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xe8c21f94 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x663f551f ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x6c8245b9 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x9b7818b8 ipt_register_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x8dbeaacf xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0xc2a148ae xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x5a5666a2 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0231cca3 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5221a568 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd7b2c153 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe6eafdaa ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x0ee5136f ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x5fa6098a ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xe6fccd55 ip6t_register_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x8ddb4583 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0xe368ceff xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xcb72558c xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xe14e9025 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x08da692c ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x19fe50f4 ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x2960ffef ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x32b99272 ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x3aacc4cd ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xa6610063 ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xcd954317 ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xf0815925 ircomm_data_request +EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value +EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service +EXPORT_SYMBOL net/irda/irda 0x0963c24b irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0x09939c11 irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0x0ba22d01 irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0x13623869 irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0x1befe583 irlap_open +EXPORT_SYMBOL net/irda/irda 0x23bbc2ce irias_find_object +EXPORT_SYMBOL net/irda/irda 0x2b432980 hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0x3343c974 irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x3484da9b irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0x34b0d3c5 iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0x35193216 irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x385847aa irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x38d23aca irlap_close +EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value +EXPORT_SYMBOL net/irda/irda 0x46b00fdf irias_insert_object +EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service +EXPORT_SYMBOL net/irda/irda 0x5237892c irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x553300a2 irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0x5989162a irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x6e00a69d irda_notify_init +EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x70a3f20f hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client +EXPORT_SYMBOL net/irda/irda 0x786e11a1 alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client +EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x8e861886 irttp_data_request +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0x98a8b3b4 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0x9ccbdfca hashbin_insert +EXPORT_SYMBOL net/irda/irda 0xa0f947e1 irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0xa0fd5ff7 iriap_close +EXPORT_SYMBOL net/irda/irda 0xa2379949 irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0xac3dc858 irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0xaeeff2b5 hashbin_find +EXPORT_SYMBOL net/irda/irda 0xaf18adea async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0xb3c50c60 irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value +EXPORT_SYMBOL net/irda/irda 0xba59b92b irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute +EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request +EXPORT_SYMBOL net/irda/irda 0xc1719003 irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0xcd855495 async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0xd3f23032 irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma +EXPORT_SYMBOL net/irda/irda 0xdc0196c2 hashbin_remove +EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0xe1746b6a irttp_dup +EXPORT_SYMBOL net/irda/irda 0xe1ba6308 irias_new_object +EXPORT_SYMBOL net/irda/irda 0xe329462a hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0xeb78333e hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0xec242b93 hashbin_new +EXPORT_SYMBOL net/irda/irda 0xed973e3c iriap_open +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/l2tp/l2tp_core 0x0137300e l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0xeab6d697 l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x0f7321ec lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x10e51265 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x59ae9b20 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xa84ca8c0 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xa89abf10 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0xdb504fd5 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0xe98c2ab9 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xeb33ec8e lapb_setparms +EXPORT_SYMBOL net/llc/llc 0x03ba1a76 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x4bbfa858 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x63d3f0a2 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x9a7d0083 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0xaed46f02 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0xaf0f9c50 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xfe6a8f02 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/mac80211/mac80211 0x00155170 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x04d2f9f5 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x06c0b4fd ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x0a77f767 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x0ae83923 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x10fd30ce ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x127e2069 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x1422ef67 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x14b3807d ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x197d93a7 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x1c8fd338 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x2352c34a ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x2389c209 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x24190360 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x2445b46a ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x26ae6432 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x2718ccee ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x275f3b15 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x27914bff ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0x2a7e7bcf ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x2af276b5 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x2b63ba0b ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x2e0de0d7 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x2e8a45db ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x301075fb ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x3916b9e6 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x3ffcff36 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x43c81392 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x4d2748eb ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x4ec01b08 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x55fa1ad0 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x58bbb76d ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x58f95e24 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x5d48d884 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x5d861366 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x6092b939 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x60c2481a __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x6171948c ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x66161ccb rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0x66e2b90d ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x6f2d9047 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x7a8864c0 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x877dc73a ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x87d63160 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x8986139c ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x96a15586 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x97d73e00 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x989cbaff ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x9e674139 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x9e87a639 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x9fda0005 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xa1206821 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xa44aa911 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0xaa28e71a ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xad743a9d ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xadb3ffea ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xb1ef796d ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xb3446030 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xbbc58e8a ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0xc37cb280 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xc3af9a00 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0xc5b4c919 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xc679d047 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xce76eca6 ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xcf496047 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xd1f2e08e ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0xd350ca45 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xdbbd02d6 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xdcb46c10 ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0xde51bf5b ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xe024c230 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xe682ec8a ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xe7576762 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0xe759d272 ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0xe7b6a5ef ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xea6ae55b ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xed4f03df ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xf48d048c ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xf54c9644 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0xf66489d1 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xfaaa0b75 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0xfb265c44 ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x20ee18a8 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x2b89b07a ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x33b1aa95 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x63352c06 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x6de579a7 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x888648b8 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xc4f2473b ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xd3b6be46 ieee802154_free_hw +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x102533a0 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x25081250 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x291f1429 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3e1fab84 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4ddb0436 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x743ec05e ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8483677f ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9e4ba765 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa648952a unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa8aa1f4b unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcb2639e3 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd3229d40 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xef518257 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfcf55c72 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x2cd306cb __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x601740cb __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xf452246b nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x5b090c7d nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x6d0d47ac nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x89ba6fca nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/nf_nat 0x9094c853 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x983b3ba8 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xa2e960c6 nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/x_tables 0x4611fecf xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x48d8126c xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x4c0ab8d3 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x70b460d7 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x897fd49f xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x93aeb7a9 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x94ffcd68 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x9dbb2df3 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xa5e99b2f xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xe223cb65 xt_find_target +EXPORT_SYMBOL net/nfc/hci/hci 0x01de38fb nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x0a74e210 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x0ddd0fc8 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x11259f10 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x1bffa4f7 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x241cc83b nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x34d9b8fa nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x3dd5aa44 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x43274adb nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x509ed0b0 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x54a0fc2e nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x745c44a9 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x96a84139 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0xa25cd90b nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0xb0b217e5 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0xb4c04f54 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xc51d9c05 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0xc5d0e210 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0xe7133d92 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0xecc9c324 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xf9b9f9fc nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x1cf54017 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x214faebd nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x29d463ce nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x2ad371cf nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x3bb62721 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x3ca825ad nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x3dfa0a51 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x40c07c44 nci_get_conn_info_by_id +EXPORT_SYMBOL net/nfc/nci/nci 0x4d26cacf nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x5029f3b9 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x52f9acb4 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x58bc486f nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x595e7d54 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x65efb223 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x6f02ac13 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x7023299a nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x7cfa4327 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x81aebf4f nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x8677cbe2 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x8973f7f3 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x8e348a25 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x94a43154 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0xa7701eba nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xcc6ca45b nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xd8f2da8d nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0xd969de5c nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0xe981bfe5 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xfe651024 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nfc 0x0aaf96c1 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x1659330b nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x3c13cfd3 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x3c25b215 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x420b134f nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x4c316c61 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x515ebc39 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x579530b8 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x5db8f5c1 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x7061ac9c nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x775f0bb3 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x79eedf15 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x8b7b87ef nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x9c1cd1d2 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x9e0c2e1f nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x9f0b3424 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x9f9b0f58 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xb1a37e2c nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0xb9c32876 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xd0c82f6a nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0xd9b56215 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xe5019a00 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xe63b2bab nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xf7ffc5ad nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc_digital 0x54026b21 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x76f03d45 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x8afe6eec nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xb03e056a nfc_digital_register_device +EXPORT_SYMBOL net/phonet/phonet 0x060f71fc phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x2e2c77cc pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x4c874439 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x69294ba3 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x6ed5594f phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x8db811be pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x8e2c0337 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0xc896d7c6 phonet_proto_unregister +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x029123a2 rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x0910be11 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x215944f0 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x337f8263 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x47cc77a3 rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x5ff4be2b rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x60966e14 rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x877c1b0d rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x92c33f48 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xa1850df7 rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc614dc2e rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xcaef77f8 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xcd2a103e rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe96efecf rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xfa7639c3 rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/sctp/sctp 0x32206bd3 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x5a431eed gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x730dde0c gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xd72529ae gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0xd82e0563 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xe3ea9e01 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0xf48f011c svc_pool_stats_open +EXPORT_SYMBOL net/wimax/wimax 0x0380cb1b wimax_rfkill +EXPORT_SYMBOL net/wimax/wimax 0xa00e3156 wimax_reset +EXPORT_SYMBOL net/wireless/cfg80211 0x04f96a67 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0f31144b cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x0fff7c0a cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x11a53031 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x14a2bdfd cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x151187a2 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x155b3541 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x19b99b6a cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x1a9ba387 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x1e5a1681 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x1e5e085e cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x20142ec0 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x23d9f7f3 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x2a1c8afb regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x3268a420 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x32ac66f8 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x36c09b90 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x3bf11448 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x439d189c cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x44f0eeeb cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x46ed0ff5 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x4945b60a cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x4d27470c cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x4e35c810 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x4e5ee38c freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x502ebd69 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x52e30bb1 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x54d66b4d cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x581dc096 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x5bc837dc cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x6293a56d cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x65ccbc20 regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6a334f4b wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x6d8f4ca5 ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x74bca132 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x78614aa1 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7bd3498b cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x7e8a37c1 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x855b04c9 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x8841164f cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x8a934bbb cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x8ce6f0e6 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x8d0986e5 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x8d2722b3 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x8ef99384 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x927253cb cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x9435812e cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x966ff54d ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x96923c60 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x969b229b cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x970a4d0f regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x9aaad211 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x9ee7c7bf __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xa1162b09 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0xa1425906 ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xa3d8c8f0 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xa80d3af3 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xaa1eda92 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0xac4fd524 cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xad954055 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0xaf05070c wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0xaf419efa ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xb14180e2 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0xb4e3713f cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xb6a43d8e ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xbb7b54ab cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xbd1e6244 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0xc4eced90 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0xc5042589 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xc70cc071 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xc92bad8c cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xca293d98 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xd27eb897 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdc224e6a cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0xdc3ead01 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe0db0a8c ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xe8289e4a __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xe9ef8025 __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xeb6d7c6c ieee80211_ie_split +EXPORT_SYMBOL net/wireless/cfg80211 0xedec7fa7 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xf4386c33 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0xf5ac1e62 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xf876e629 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0xfe0e7685 ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/cfg80211 0xfed562b2 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/lib80211 0x020fbe5a lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x1bd8ee07 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x2c2cd958 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x534c5359 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xdf79f88b lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0xf9d02db6 lib80211_get_crypto_ops +EXPORT_SYMBOL sound/ac97_bus 0x680750c9 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xff8630b0 snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x12994ee5 snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x5a84fa00 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xaee56491 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0xfe2998cc snd_seq_kernel_client_enqueue_blocking +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x0e72bd8f snd_seq_device_new +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x205395a0 snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x614705ff snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x7746bb9b snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x79794472 snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x991c0f60 snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xef8fa3d2 snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xf3f0324e snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xf6fdda44 snd_midi_event_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x86d72d76 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x018413d3 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x081f2cf5 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x089193e9 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x0cc1fe6c snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x123666a6 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x15318081 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program +EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer +EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL sound/core/snd 0x1d9b8155 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x1daef3bd snd_card_free +EXPORT_SYMBOL sound/core/snd 0x20c18d47 snd_cards +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x25e7c02b snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x2a2501c9 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0x2e0174f4 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x2f0f0ca9 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x2fa69e21 snd_info_register +EXPORT_SYMBOL sound/core/snd 0x305db5c4 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x340f848d snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3a1cc33d snd_card_new +EXPORT_SYMBOL sound/core/snd 0x4029bd94 _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4b0f06cc snd_register_device +EXPORT_SYMBOL sound/core/snd 0x5470bc4b snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x5f21d5ec snd_card_register +EXPORT_SYMBOL sound/core/snd 0x602c96f0 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x63c01aae snd_device_new +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x83679824 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x85659324 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x8b7e3d2c snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x8c5ba085 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x8da3f6a5 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x9a76aded snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x9d032b32 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0xa36fa9a1 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0xa7dc4404 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0xaf3c4697 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0xb08de994 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xbd598a4a snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0xccfcaaa8 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0xce3ca308 copy_from_user_toio +EXPORT_SYMBOL sound/core/snd 0xd7ea81d9 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0xe5a77eae snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0xe5d8b3d3 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0xec735ff2 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0xf081493e snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0xf120c759 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0xf3afb5b7 snd_device_register +EXPORT_SYMBOL sound/core/snd 0xf45021cb snd_component_add +EXPORT_SYMBOL sound/core/snd 0xf8bc715d snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0xfc9249e0 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0xfd97ff3a snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd-hwdep 0x8bf16d21 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x02ac5e52 snd_pcm_sgbuf_ops_page +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x0885c26c snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0x09f89f85 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x0b19243f snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0x0bfc3a1e snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x10784898 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x10cde6fb snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x191609f1 snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x20424e2a snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0x265dfe3a snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0x2a50750a snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0x31812cc4 snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x3a2086f9 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x3b91f3af snd_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x47d881fc snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x49f1acf6 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x4d9b6d35 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x5dbd99a6 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x615ec3c3 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x624e4040 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x629b3d21 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x63a6e60a _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x68697c7f snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL sound/core/snd-pcm 0x693babf7 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x6b86a002 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x6f293f9c snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x73c7867f snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x786b0908 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0x8d13a2cd snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x90151121 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x9b719842 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x9e8fa265 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xa0107a82 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0xa5798a64 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa72e81d3 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0xa7ad50af snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xade88e76 snd_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xbb96dced snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xc3ea57ae snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0xcbeb6fb8 snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0xccaa9f59 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0xce3f614e snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0xd0a16975 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xd2059e52 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xe45a7e92 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xe4b73761 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xe8494b54 snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0xf2d9ab88 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0xfc223565 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0xfe80bcc6 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0xfe9de3c1 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-pcm 0xff8a6f1e snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-rawmidi 0x06a568ab snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x088aad56 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x142b52f9 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1cf33c19 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x24304206 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3469cbc8 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x48bc2fcb snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6ab2c592 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x91c6264d snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x952e44de snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x958a2c73 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9f924a59 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa16c5d39 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb83d4ee5 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc2cdf827 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd24ebb53 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd36288cd snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd70cd88d snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf99537c5 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-timer 0x06e32dd6 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x196ecb30 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x24551353 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x425cd45d snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x48f44507 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x4f7799c0 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x5e545f0c snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x8656c420 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x8abd7e68 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x9f2178c6 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0xc608e090 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0xce437233 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0xe1b1ffd4 snd_timer_interrupt +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x065f699c snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x013ecde3 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x13c8e388 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x196e3d9e snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x3e71e6f4 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x58fc3ee4 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x5984dd75 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x5bef5af2 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb367de0e snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe427e357 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x059c6004 snd_opl4_create +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x29ddf5df snd_opl4_read_memory +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x2ff8fb3d snd_opl4_write +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x78e0459a snd_opl4_write_memory +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0xe1df7727 snd_opl4_read +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x08c8e2d1 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x10b16da3 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5d9f00a7 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7bb47484 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7ecedc70 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x80f95f01 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8761a391 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8f0de31e snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb94f9a19 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x11a72496 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1475ecd5 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x174af1e5 amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2d862075 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2edb6078 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x30e93d9d avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3c543cce fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3ee79bf7 amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x680ed783 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7c66ae52 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7f62ae34 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x806d2789 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x85e49dfa amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8f7c86cc amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x914a9f76 snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x963d0b86 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x98362eca fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa4ac4050 amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaee554f5 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb0a24c01 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb83a4c61 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc17c965f fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc2d446fa cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcbad7450 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe189926c cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xea66192e amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xec1d3224 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xed8b6e83 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf153536f fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf47b0459 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf75c857e fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfcc62aef snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x20a84574 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xb1a226b7 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x38765f0d snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3db3c7d5 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x918049ba snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb50edbcf snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd7032029 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xee8864c0 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf879e99b snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xfe706d04 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x36e847d8 snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x462f1250 snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x7f0c0694 snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x97be7326 snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xb1a425a4 snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xf0a07d9b snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x038b66d5 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x29682f0f snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xba3051ba snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xbb7ff881 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x48dad7ba snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x76e398e8 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x362a1516 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x48958c87 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x718d5330 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xac4ea778 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xcd38dcdb snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xf95a9691 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x20365e3a snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x60d75b26 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0xb59b2656 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xb5e544c5 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xd371d06b snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xfa94bb33 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-tea6330t 0x1869e065 snd_tea6330t_update_mixer +EXPORT_SYMBOL sound/i2c/snd-tea6330t 0x52932740 snd_tea6330t_detect +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0x11c30955 snd_es1688_pcm +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0x2ac2e6c1 snd_es1688_create +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0x389585d7 snd_es1688_mixer +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0xbbe69275 snd_es1688_reset +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0xf1f3d203 snd_es1688_mixer_write +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x07d19992 snd_gf1_write8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x0ae04b1b snd_gf1_new_mixer +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x0cdd1bfd snd_gf1_mem_xfree +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x109226cf snd_gf1_rawmidi_new +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x1c1ce117 snd_gus_interrupt +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x1e299d9d snd_gf1_pcm_new +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x327fb6cc snd_gf1_dram_addr +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x36269b99 snd_gf1_i_look8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x3d88231f snd_gf1_stop_voice +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x43aafb5e snd_gf1_ctrl_stop +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x46db8d67 snd_gf1_lvol_to_gvol_raw +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x538c658d snd_gf1_write16 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x6640a817 snd_gf1_alloc_voice +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x712ac0e0 snd_gus_create +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x7427022a snd_gf1_i_write8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x76fed4a5 snd_gf1_write_addr +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x77b2f68a snd_gf1_translate_freq +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x827b38ba snd_gf1_free_voice +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x8674a78b snd_gus_initialize +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x86958dc7 snd_gus_use_inc +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x898808c8 snd_gf1_mem_alloc +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x8d8cbfda snd_gf1_mem_free +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x95c718f6 snd_gf1_look8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x9ced354c snd_gf1_mem_lock +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xa7cd147d snd_gus_dram_read +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xb71335c6 snd_gf1_look16 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xc43a5527 snd_gf1_atten_table +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xc94f549e snd_gf1_peek +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xce077f49 snd_gus_dram_write +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xdb410979 snd_gf1_poke +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xdbafbabe snd_gf1_delay +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xe5063969 snd_gus_use_dec +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xf2b51593 snd_gf1_i_look16 +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x00cf20b8 snd_msnd_DARQ +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x0e096be3 snd_msnd_init_queue +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x188936e4 snd_msnd_pcm +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x54749c0c snd_msnd_send_dsp_cmd +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x629c8f55 snd_msnd_enable_irq +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x75026b24 snd_msndmidi_input_read +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x7878540d snd_msnd_DAPQ +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xa14c9ee9 snd_msnd_disable_irq +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xcb104bf2 snd_msnd_dsp_halt +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xd701d3cf snd_msndmix_setup +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xdd29dd3b snd_msnd_send_word +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xec31372e snd_msndmix_force_recsrc +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xecb37531 snd_msnd_upload_host +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xfaf49e89 snd_msndmix_new +EXPORT_SYMBOL sound/isa/opti9xx/snd-miro 0x4e1a3b1b snd_aci_cmd +EXPORT_SYMBOL sound/isa/opti9xx/snd-miro 0xc3683942 snd_aci_get_aci +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x18b3f6f9 snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x30dc6e75 snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x3c695448 snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x49ae61c8 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x60309b8d snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x6db7b3d6 snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa9d01926 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xb68204cb snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xfa472913 snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xfaa7bac0 snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb16-csp 0x51687287 snd_sb_csp_new +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0x4df496b9 snd_sb16dsp_configure +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0x58c2de41 snd_sb16dsp_pcm +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xe0b3f690 snd_sb16dsp_interrupt +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xe1e121dc snd_sb16dsp_get_pcm_ops +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x3e30a81d snd_sb8dsp_interrupt +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x52eaaf8b snd_sb8dsp_pcm +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0xc2a48535 snd_sb8dsp_midi_interrupt +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0xcf1cdc4e snd_sb8dsp_midi +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x04f73499 snd_emu8000_peek +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x0d5a68a6 snd_emu8000_poke_dw +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x1e1eb2d3 snd_emu8000_update_reverb_mode +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x29fd9d30 snd_emu8000_dma_chan +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x3065f49d snd_emu8000_init_fm +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x5a5e6833 snd_emu8000_update_chorus_mode +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x62e82915 snd_emu8000_update_equalizer +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x6364b0ad snd_emu8000_load_chorus_fx +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x6b1f7a19 snd_emu8000_peek_dw +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x6fb68232 snd_emu8000_poke +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xab99d5e0 snd_emu8000_load_reverb_fx +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x180d6f7a snd_wss_put_single +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x1aebc567 snd_wss_mce_up +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x2f76d86e snd_wss_overrange +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x342ea2b4 snd_wss_get_pcm_ops +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x3760b385 snd_wss_mixer +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x3a1bc808 snd_wss_chip_id +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x4aafabeb snd_wss_put_double +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x64cc489d snd_wss_create +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x66caa205 snd_wss_info_single +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x6d65185d snd_wss_out +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x6f47cf17 snd_wss_pcm +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x7b202637 snd_wss_interrupt +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x82f983a2 snd_wss_get_single +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x8c0e9c0b snd_wss_in +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x9104d7cb snd_cs4236_ext_in +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xacec05b6 snd_wss_info_double +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xaea2f179 snd_cs4236_ext_out +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xd05b4733 snd_wss_get_double +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xdc7ebd8c snd_wss_mce_down +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xe0368c6f snd_wss_timer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x00a76b5b snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x11d896e6 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x16bb4e77 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1c3f8201 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x20dad9f5 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x21c405c9 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2a017a84 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x38cf950e snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6f5cbf79 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa191b1d2 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb2d938e3 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd821c5cb snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd8ae83db snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdb8e9659 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdd233ae5 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xeff47e69 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf791f8ec snd_ac97_bus +EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0xab1026b2 hpi_send_recv +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x0bd725ed snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x178f1d26 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x17ab7aff snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x27031402 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x492d13e8 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x624f066b snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc12d52aa snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe5f8e343 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf2ba364c snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x054984b4 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x6680f106 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xdd6af752 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0390ece2 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0c62da1b oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x20fa0063 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x376fa1ae oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3ba301cf oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x42006812 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5b6e7ab8 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5c34ba4e oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7ba1325d oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7dbc9f68 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8036c6cb oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9b6d9445 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa0ad5bd5 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa96e20ac oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcb0687c7 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd5ddee2d oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd93a4375 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe1489a4e oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xec92bbeb oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xef6f53d8 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf67b7712 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x2d04e997 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x7a36547e snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x92c164cc snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xc2d57e50 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xc8d2029b snd_trident_stop_voice +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x2500630a tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x80322394 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-dsp 0xdc045797 sst_dma_free +EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-dsp 0xf3c6a384 sst_dma_new +EXPORT_SYMBOL sound/soc/snd-soc-core 0x3e819cec snd_soc_alloc_ac97_codec +EXPORT_SYMBOL sound/soundcore 0x384ea487 sound_class +EXPORT_SYMBOL sound/soundcore 0x4a9be35e register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x73895c0f register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x7888ac9d register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x83e8604e register_sound_special +EXPORT_SYMBOL sound/soundcore 0x860e9c70 register_sound_midi +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x26a39894 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x5194f1c5 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x539ef3e0 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x8907ce36 snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x92754948 snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xa3626ec9 snd_emux_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x0a2fe25d snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x1ad0e0ef __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x5f56d217 snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0x618d0e75 snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x6f9e738c __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0xa00070d5 snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0xc59ec746 snd_util_memhdr_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xfc798c7a __snd_util_mem_free +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x27463535 snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL ubuntu/hio/hio 0x070f4d94 ssd_bm_status +EXPORT_SYMBOL ubuntu/hio/hio 0x1e2b03c2 ssd_reset +EXPORT_SYMBOL ubuntu/hio/hio 0x22080ab9 ssd_unregister_event_notifier +EXPORT_SYMBOL ubuntu/hio/hio 0x2797f0bc ssd_set_wmode +EXPORT_SYMBOL ubuntu/hio/hio 0x47732c5b ssd_register_event_notifier +EXPORT_SYMBOL ubuntu/hio/hio 0x7ca3229f ssd_get_temperature +EXPORT_SYMBOL ubuntu/hio/hio 0xc18ac885 ssd_set_otprotect +EXPORT_SYMBOL ubuntu/hio/hio 0xdd0991e5 ssd_submit_pbio +EXPORT_SYMBOL ubuntu/hio/hio 0xe29a5b2b ssd_get_label +EXPORT_SYMBOL ubuntu/hio/hio 0xe628b9e1 ssd_get_pciaddr +EXPORT_SYMBOL ubuntu/hio/hio 0xf0476a22 ssd_get_version +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x002d778d VBoxGuest_RTMpNotificationDeregister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0064d4f7 VBoxGuest_RTSemFastMutexCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x00712528 VBoxGuest_RTAssertMsg2Weak +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x01795170 VBoxGuest_RTMpGetCoreCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x03d8513f VBoxGuest_RTThreadSetName +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x05626dc7 VBoxGuest_RTR0MemObjReserveKernelTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0665bcaa VBoxGuest_RTAssertSetMayPanic +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x06ab676b VBoxGuest_RTLogPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0823cb2f VBoxGuest_RTMemAllocTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x08b98b3c VBoxGuest_RTMpCpuIdFromSetIndex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x08d7a261 VBoxGuest_RTThreadSelfName +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x09458185 VBoxGuest_RTR0MemAreKrnlAndUsrDifferent +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0b14ec2c VBoxGuest_RTThreadCreateF +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0b628628 VBoxGuest_RTSemEventMultiDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0b94344b VBoxGuest_g_pszRTAssertExpr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0d1abebe VBoxGuest_RTLogFlush +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0dfb68c6 VBoxGuest_RTSemEventWait +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0e1a390f VBoxGuest_RTStrToInt8Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x104391d1 VBoxGuest_RTSemMutexDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x113a02d9 VBoxGuest_RTMpOnPair +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x127e9d01 VBoxGuest_RTTimerRequestSystemGranularity +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x143fba5b VBoxGuest_RTThreadPreemptDisable +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x14835127 VBoxGuest_RTAssertMsg2AddWeak +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x16d72922 VBoxGuest_RTR0MemObjIsMapping +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x17d84704 VBoxGuest_RTSpinlockCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x187c16e2 VBoxGuest_RTLogCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x19087f6f VBoxGuest_RTSemEventMultiWaitEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1a79fedb VBoxGuest_RTSemMutexRequestNoResumeDebug +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1abe7e93 VBoxGuest_RTThreadGetNative +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1ad481e4 VBoxGuest_RTLogLogger +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1d042132 VBoxGuest_RTMemContFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1e7216d7 VBoxGuest_RTThreadFromNative +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1efa8169 VBoxGuest_RTThreadUserSignal +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1f152547 VBoxGuest_RTMpGetMaxCpuId +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1fc40aab VBoxGuest_RTR0MemObjReserveUserTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x21b1ee43 VBoxGuest_RTThreadSleepNoLog +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x221205d1 VBoxGuest_RTThreadSetType +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2280771d VBoxGuestIDCCall +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x22bd51c7 VBoxGuest_RTErrConvertToErrno +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x23a552fd VBoxGuest_RTMpIsCpuOnline +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x246391eb VBoxGuest_RTStrToUInt16Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x25938e5f VBoxGuest_RTLogWriteDebugger +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x267da4c4 VBoxGuest_RTThreadIsMain +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x27740cb3 VBoxGuest_RTStrToUInt8Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2902013c VBoxGuest_RTTimerGetSystemGranularity +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x29066860 VBoxGuest_RTStrConvertHexBytes +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2972116c VBoxGuest_RTThreadPreemptIsEnabled +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x29bf3685 VBoxGuest_RTThreadGetName +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2b015c38 VBoxGuest_RTMpOnAll +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2b5f52a8 VBoxGuest_RTMpCurSetIndexAndId +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2bad2a8e VBoxGuest_RTStrToInt16 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2c5b3002 VBoxGuest_RTErrConvertFromErrno +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2d27c026 VBoxGuest_RTSemEventWaitExDebug +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2e136d3c VBoxGuest_RTR0MemObjAllocPhysExTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x309de102 VBoxGuest_RTMpCpuId +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3519743a VBoxGuest_RTMpCurSetIndex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3534ed69 VBoxGuest_RTMemAllocVarTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x353b64a3 VBoxGuest_RTSemMutexRelease +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x353e5a81 VBoxGuest_RTSemEventMultiReset +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x365d44f1 VBoxGuest_RTR0MemObjMapKernelExTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x36e780e0 VBoxGuest_RTStrToUInt8Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x37b2d47a VBoxGuest_RTStrPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x39df70a0 VBoxGuest_RTStrPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3a29bcdb VBoxGuest_RTThreadIsInitialized +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3a77155a VBoxGuest_RTMpOnPairIsConcurrentExecSupported +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3b0a3d87 VBoxGuest_RTMemAllocZVarTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3d00f113 VBoxGuest_g_u32RTAssertLine +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3ed3a918 VBoxGuest_RTAssertMsg1 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3f452f12 VBoxGuest_RTR0MemObjAllocPageTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3f8d56e7 VBoxGuest_RTMemDupTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4002b8b4 VBoxGuest_RTTimeSpecToString +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x405901ff VBoxGuest_RTStrFormatTypeRegister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x428e3456 VBoxGuest_RTR0Term +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x428eb5ba VBoxGuest_RTMemTmpAllocZTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x42c5bff2 VBoxGuest_RTLogRelLogger +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x432b6724 VBoxGuest_RTR0MemObjAllocPhysNCTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x433ceadb VBoxGuest_RTLogWriteStdOut +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4453e900 VBoxGuest_RTR0MemObjProtect +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4484f9ee VBoxGuest_RTTimerStart +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x44ce618e VBoxGuest_RTMemAllocExTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x453e64fb VBoxGuest_RTSemEventMultiSignal +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x45933412 VBoxGuest_RTStrToInt8Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4597652f VBoxGuest_RTStrFormat +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x45d332ae VBoxGuest_RTMemReallocTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x46b36f60 VBoxGuest_RTTimeSpecFromString +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4819f15e VBoxGuest_RTThreadWait +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x48487b79 VBoxGuest_RTLogDefaultInstanceEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4983ea42 VBoxGuest_RTAssertShouldPanic +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4aca506e VBoxGuest_RTStrToUInt32Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4d0161ca VBoxGuest_RTLogBackdoorPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4d47859f VBoxGuest_RTR0MemKernelCopyTo +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4e6d6986 VBoxGuest_RTStrToUInt16 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4e7faa59 VBoxGuest_RTStrToInt64 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x503f488a VBoxGuest_RTLogRelSetDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5045b702 VBoxGuest_RTLogGetDestinations +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5118e8ae VBoxGuest_RTStrToUInt64 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x52041f46 VBoxGuest_RTThreadPreemptIsPossible +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x53602f45 VBoxGuest_RTMemTmpFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x539dd662 VBoxGuest_RTTimeSystemMilliTS +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x53b772da VBoxGuest_RTAssertSetQuiet +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x543527dc VBoxGuest_RTLogWriteStdErr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5460fc01 VBoxGuest_RTTimeImplode +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x54abe5d4 VBoxGuest_RTSemMutexRequestNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x54e45046 VBoxGuest_RTR0MemObjAllocLowTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x55c48692 VBoxGuest_RTMpIsCpuWorkPending +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x57280c42 VBoxGuest_RTR0MemExecDonate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x57406d20 VBoxGuest_RTR0ProcHandleSelf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5929b954 VBoxGuest_RTPowerSignalEvent +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5936a317 VBoxGuest_RTR0MemObjAddress +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x59390acb VBoxGuest_RTTimeIsLeapYear +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5ad3216a VBoxGuest_RTR0MemKernelIsValidAddr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5b0eaa4d VBoxGuest_RTThreadWaitNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5c15981f VBoxGuest_RTMemContAlloc +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5ca67994 VBoxGuest_RTLogDestinations +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x613042f7 VBoxGuest_RTR0MemObjMapUserTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x622a261f VBoxGuest_RTPowerNotificationRegister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x622bf330 VBoxGuest_RTMemAllocZTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x62fd45a8 VBoxGuest_RTTimeNanoTS +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x63ba9fd2 VBoxGuest_RTLogGetDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x64655cd4 VBoxGuest_RTSemEventMultiWaitExDebug +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x64af2463 VBoxGuest_RTStrToInt32 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x650e77e8 VBoxGuest_RTMpGetCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x651c778b VBoxGuest_RTSemEventMultiCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6549a3e0 VBoxGuest_RTTimeFromString +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x65b04e5d VBoxGuest_RTStrToUInt64Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x687ae6ac VBoxGuest_RTStrToUInt64Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6a930d21 VBoxGuest_RTTimerCanDoHighResolution +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6bcedab4 VBoxGuest_RTThreadPreemptIsPending +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6c17021e VBoxGuest_RTThreadUserReset +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6c2df755 VBoxGuest_RTAssertMsg1Weak +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6ca5b4ec VBoxGuest_RTSemEventMultiGetResolution +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6f8ed216 VBoxGuest_RTStrToUInt16Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6fd2e761 VBoxGuest_RTTimeNormalize +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x713f25d5 VBoxGuestIDCClose +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x715699a0 VBoxGuest_RTSpinlockDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x72d1c8f4 VBoxGuestIDCOpen +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x73a23c8b VBoxGuest_RTLogRelPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x73f65247 VBoxGuest_RTStrToInt32Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x744623d2 VBoxGuest_RTSemMutexCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x753d3a3a VBoxGuest_RTLogFormatV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x755479c2 VBoxGuest_RTR0MemObjLockKernelTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x75bee68e VBoxGuest_RTThreadIsSelfKnown +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x76608be1 VBoxGuest_RTSemSpinMutexCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x766a8684 VBoxGuest_RTThreadCreateV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x76b885fb VBoxGuest_RTLogGetDefaultInstanceEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x76bb35b9 VBoxGuest_RTLogLoggerEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x76dbecb7 VBoxGuest_RTProcSelf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x77248ef3 VBoxGuest_RTR0MemObjLockUserTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7841b10d VBoxGuest_RTMpIsCpuPossible +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x78ad2401 VBoxGuest_RTStrToInt8 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x797e701f VBoxGuest_RTLogCreateEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x79aefc0b VBoxGuest_RTTimeNow +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7ac53b51 VBoxGuest_RTR0MemUserCopyFrom +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7ae3b63b VBoxGuest_RTStrToUInt32 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7b423f4c VBoxGuest_RTLogGetFlags +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7cef940f VBoxGuest_RTStrToUInt8 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x80162938 VBoxGuest_RTStrFormatV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8229caac VBoxGuest_RTThreadUserWait +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x847577ac VBoxGuest_RTMpGetOnlineCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x84e86094 VBoxGuest_RTStrPrintfExV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x854806f2 VBoxGuest_RTSpinlockAcquire +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8587f091 VBoxGuest_RTR0MemUserCopyTo +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x85afce7f VBoxGuest_RTMpNotificationRegister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x867199c4 VBoxGuest_RTMpPokeCpu +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x86f9f023 VBoxGuest_RTSemFastMutexRequest +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x87abe8dd VBoxGuest_RTR0MemObjSize +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8ab21a95 VBoxGuest_RTSemSpinMutexDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8b4fd3ef VBoxGuest_RTTimeSystemNanoTS +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8ff5c8e5 VBoxGuest_RTSemEventMultiWaitNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x937cd6a2 VBoxGuest_RTLogComPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9474d99a VBoxGuest_RTSemFastMutexDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x951fbe81 VBoxGuest_RTLogLoggerV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x953b2ba4 VBoxGuest_RTLogSetDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x983f332c VBoxGuest_RTSemSpinMutexRequest +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9853901a VBoxGuest_RTAssertMsg2Add +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x98a8f55f VBoxGuest_RTMpGetPresentCoreCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9909ff3d VBoxGuest_g_pszRTAssertFunction +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x993cc778 VBoxGuest_RTLogRelSetBuffering +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x99ee476f VBoxGuest_RTThreadYield +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9b02b021 VBoxGuest_RTThreadSleep +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9be73ec4 VBoxGuest_RTMpCpuIdToSetIndex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9dc75797 VBoxGuest_RTLogBackdoorPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9e97ef59 VBoxGuest_RTSemEventWaitNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9eb3db26 VBoxGuest_RTR0MemObjAllocPhysTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa21775d1 VBoxGuest_RTSemFastMutexRelease +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa2c23601 VBoxGuest_RTR0MemObjAllocContTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa3ff74bf VBoxGuest_RTStrToInt16Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa52847a2 VBoxGuest_RTR0MemUserIsValidAddr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa5655a80 VBoxGuest_RTTimerReleaseSystemGranularity +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa582aeba VBoxGuest_RTMemExecFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa5f0f1ad VBoxGuest_RTAssertMsg2 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa61aa915 VBoxGuest_RTR0MemObjFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa6209fc7 VBoxGuest_RTLogPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa74258ab VBoxGuest_RTTimeExplode +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa8a47d40 VBoxGuest_RTLogLoggerExV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xaaab8c57 VBoxGuest_RTLogRelGetDefaultInstanceEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xaadc0b5d VBoxGuest_RTTimerChangeInterval +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xab5ee692 VBoxGuest_RTLogWriteUser +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xab871924 VBoxGuest_RTThreadPreemptIsPendingTrusty +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xacaac41d VBoxGuest_g_szRTAssertMsg1 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xadb5cc54 VBoxGuest_RTStrFormatTypeSetUser +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xae21ae1f VBoxGuest_RTThreadCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb2f248c6 VBoxGuest_RTStrCopyP +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb33ca348 VBoxGuest_RTLogRelPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb3f592b9 VBoxGuest_RTThreadNativeSelf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb4227efb VBoxGuest_RTTimeToString +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb42ea0e3 VBoxGuest_g_pszRTAssertFile +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb5676d46 VBoxGuest_RTLogSetCustomPrefixCallback +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb5ec2977 VBoxGuest_RTStrToInt16Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb6fc848a VBoxGuest_RTStrToUInt32Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb9a86152 VBoxGuest_RTStrFormatNumber +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb9e03c35 VBoxGuest_RTTimerStop +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xba349142 VBoxGuest_RTR0MemObjEnterPhysTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbaa97421 VBoxGuest_g_szRTAssertMsg2 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbaf6967f VBoxGuest_RTR0MemObjGetPagePhysAddr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbba29a48 VBoxGuest_RTR0MemObjAddressR3 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbbbc6e84 VBoxGuest_RTSemMutexRequest +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbbccb0c7 VBoxGuest_RTTimeMilliTS +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbc7fbd2a VBoxGuest_RTLogFlushRC +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbcd1b6de VBoxGuest_RTSemSpinMutexRelease +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbd0aa67d VBoxGuest_RTLogFlags +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbeed82c5 VBoxGuest_RTSemEventDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbf5b421e VBoxGuest_RTLogComPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc272f283 VBoxGuest_RTLogGroupSettings +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc2e0f25a VBoxGuest_RTMemTmpAllocTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc312f533 VBoxGuest_RTMpIsCpuPresent +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc4b8857d VBoxGuest_RTThreadPreemptRestore +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc4c265c6 VBoxGuest_RTMpGetPresentCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc5151dcf VBoxGuest_RTLogDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc56f27ff VBoxGuest_RTR0Init +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc57a9c9b VBoxGuest_RTStrToInt32Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc636859e VBoxGuest_RTThreadUserWaitNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc6b243bf VBoxGuest_RTTimerDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc7601bb1 VBoxGuest_RTSemEventMultiWait +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc9978a5f VBoxGuest_RTAssertMsg2V +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcb6463c6 VBoxGuest_RTStrFormatTypeDeregister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcdbc5e5d VBoxGuest_RTSemEventCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcdd40e5b VBoxGuest_RTMpOnOthers +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xceb98390 VBoxGuest_RTMpOnSpecific +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd032523c VBoxGuest_RTThreadGetType +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd1c8b171 VBoxGuest_RTStrCopyEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd2ebb507 VBoxGuest_RTMpGetPresentSet +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd38c5d55 VBoxGuest_RTLogCloneRC +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd4f35c7d VBoxGuest_RTSemSpinMutexTryRequest +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd63c8527 VBoxGuest_RTMemFreeEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd76ab832 VBoxGuest_RTMemDupExTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd8730925 VBoxGuest_RTLogRelLoggerV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdd31359f VBoxGuest_RTLogSetDefaultInstanceThread +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdd699fb2 VBoxGuest_RTSemMutexIsOwned +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xde296aea VBoxGuest_RTAssertAreQuiet +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdead7a1c VBoxGuest_RTLogSetBuffering +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdfaa7e65 VBoxGuest_RTSemEventSignal +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe0453bfd VBoxGuest_RTTimerCreateEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe0afcea8 VBoxGuest_RTR0AssertPanicSystem +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe0ebf12c VBoxGuest_RTAssertMsg2WeakV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe16047ab VBoxGuest_RTLogDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe19acf09 VBoxGuest_RTStrCopy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe208c712 VBoxGuest_RTLogGetGroupSettings +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe2aa3ed6 VBoxGuest_RTR0MemKernelCopyFrom +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe4104f8b VBoxGuest_RTLogFlushToLogger +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe46f3670 VBoxGuest_RTLogRelGetDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe47b5364 VBoxGuest_RTSemEventGetResolution +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe5908cc3 VBoxGuest_RTStrToInt64Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe59fc65c VBoxGuest_RTLogWriteCom +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe6a00917 VBoxGuest_RTThreadIsInInterrupt +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xebbe4bc3 VBoxGuest_RTThreadIsSelfAlive +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xecd69ee8 VBoxGuest_RTAssertMsg2AddWeakV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xed0424f7 VBoxGuest_RTMemFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xed92363f VBoxGuest_RTR0MemObjMapKernelTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf244ec46 VBoxGuest_RTSemMutexRequestDebug +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf2e6e2c5 VBoxGuest_RTStrPrintfEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf3cd37e7 VBoxGuest_RTSemEventWaitEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf450a3d4 VBoxGuest_RTLogCreateExV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf722f7d1 VBoxGuest_RTMemExecAllocTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf7c384ae VBoxGuest_RTStrToInt64Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf81b13f5 VBoxGuest_RTPowerNotificationDeregister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfb5ca767 VBoxGuest_RTSpinlockRelease +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfcfe8381 VBoxGuest_RTMpGetOnlineSet +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfe4fce41 VBoxGuest_RTAssertMayPanic +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfe5c0dc7 VBoxGuest_RTAssertMsg2AddV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfec59082 VBoxGuest_RTLogDumpPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfec8da5c VBoxGuest_RTMpOnAllIsConcurrentSafe +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xffc16d99 VBoxGuest_RTMpGetSet +EXPORT_SYMBOL vmlinux 0x00025800 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x0066651f gnttab_alloc_pages +EXPORT_SYMBOL vmlinux 0x0084b31e scsi_register_interface +EXPORT_SYMBOL vmlinux 0x00a8acbe tty_unregister_device +EXPORT_SYMBOL vmlinux 0x00b743fd release_pages +EXPORT_SYMBOL vmlinux 0x00b8c3a7 mempool_alloc +EXPORT_SYMBOL vmlinux 0x00d7a5e3 dma_mark_declared_memory_occupied +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00f22c67 phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x01099bbe rwsem_wake +EXPORT_SYMBOL vmlinux 0x0109d08e netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0x010a2c53 __sock_create +EXPORT_SYMBOL vmlinux 0x010e20d0 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr +EXPORT_SYMBOL vmlinux 0x0139b504 cpu_current_top_of_stack +EXPORT_SYMBOL vmlinux 0x013b5348 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x014e3fe0 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer +EXPORT_SYMBOL vmlinux 0x0178667d ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x018760d6 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x018f05ad console_start +EXPORT_SYMBOL vmlinux 0x01905ec7 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x01a07d4b sock_no_connect +EXPORT_SYMBOL vmlinux 0x01b3af69 inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0x01c89ed1 security_path_link +EXPORT_SYMBOL vmlinux 0x01e1a314 key_task_permission +EXPORT_SYMBOL vmlinux 0x0209b187 param_ops_int +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x023100ff user_path_create +EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x025101dc blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x0261b3fd devm_clk_get +EXPORT_SYMBOL vmlinux 0x0261fd6f tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x02910353 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a56cd9 pci_map_biosrom +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02c20067 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x02c36135 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact +EXPORT_SYMBOL vmlinux 0x0311edec devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x03365fae __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x03777268 security_inode_permission +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x038bfb1e tty_port_init +EXPORT_SYMBOL vmlinux 0x038cf64b dma_release_declared_memory +EXPORT_SYMBOL vmlinux 0x0394c465 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x039a5bce dma_supported +EXPORT_SYMBOL vmlinux 0x03e5d392 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x03fa00c3 genphy_suspend +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x04015eec i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x040849f9 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x040c4caa inet_recvmsg +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x0426ba24 idr_for_each +EXPORT_SYMBOL vmlinux 0x043b5a2c devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0x04443218 eth_type_trans +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x044d6220 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x046bc8c8 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x04794061 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x048628c4 acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x048b0ca7 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x048ce6b6 vme_register_driver +EXPORT_SYMBOL vmlinux 0x04afd4fb release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x04b5bc7a pci_save_state +EXPORT_SYMBOL vmlinux 0x04d3929c pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x0512f901 single_open_size +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x05243732 __skb_checksum +EXPORT_SYMBOL vmlinux 0x0531b427 dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x057f5150 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x058b6057 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x05a5ed68 serio_rescan +EXPORT_SYMBOL vmlinux 0x05b50374 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x05b7928b scsi_remove_target +EXPORT_SYMBOL vmlinux 0x05cf7d23 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x05e492d4 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x05f6a716 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x0617deb1 clear_inode +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x064f68e5 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x0672dfe2 del_gendisk +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x068a3c83 d_instantiate_unique +EXPORT_SYMBOL vmlinux 0x068c7263 ioremap_cache +EXPORT_SYMBOL vmlinux 0x0692d5c8 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x06935083 blk_put_queue +EXPORT_SYMBOL vmlinux 0x06972fd4 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x06a24490 mpage_readpages +EXPORT_SYMBOL vmlinux 0x06a51886 param_set_uint +EXPORT_SYMBOL vmlinux 0x06c0dae5 __kernel_fpu_end +EXPORT_SYMBOL vmlinux 0x06f7d564 lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0x06f8683b blk_make_request +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x06ff6084 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x070ad301 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x072a448d sock_create_lite +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x0734958f pci_request_region +EXPORT_SYMBOL vmlinux 0x074a6472 sk_capable +EXPORT_SYMBOL vmlinux 0x07608604 acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x076b79f2 unlock_buffer +EXPORT_SYMBOL vmlinux 0x0777a172 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x078822e4 gen_pool_create +EXPORT_SYMBOL vmlinux 0x078e3fe5 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07b54342 nonseekable_open +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07d50a24 csum_partial +EXPORT_SYMBOL vmlinux 0x07f08a18 copy_from_iter +EXPORT_SYMBOL vmlinux 0x08120207 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x0814248b param_get_ulong +EXPORT_SYMBOL vmlinux 0x082bd639 md_done_sync +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x0835266a cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x0836b17f input_allocate_device +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x083ee73f fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x08415519 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x0847b151 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x084c2b29 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x0855b4f7 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x0862af22 xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x08699ba6 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0x08800985 page_address +EXPORT_SYMBOL vmlinux 0x0897287b acpi_disable_all_gpes +EXPORT_SYMBOL vmlinux 0x08bcf4b6 neigh_update +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x090186ae wake_up_process +EXPORT_SYMBOL vmlinux 0x09018bf8 submit_bh +EXPORT_SYMBOL vmlinux 0x090bd510 eisa_bus_type +EXPORT_SYMBOL vmlinux 0x094822bb netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x094ffc82 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key +EXPORT_SYMBOL vmlinux 0x0963d67d __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x0982551c nla_put +EXPORT_SYMBOL vmlinux 0x098311dd mount_subtree +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x09921795 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x09afb5a5 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09cafa81 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09d46e16 pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0x09e88526 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a2c58ad xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr +EXPORT_SYMBOL vmlinux 0x0a373226 crc32_le_shift +EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell +EXPORT_SYMBOL vmlinux 0x0a59ec82 get_task_exe_file +EXPORT_SYMBOL vmlinux 0x0a6200e4 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x0a661faa lg_local_unlock +EXPORT_SYMBOL vmlinux 0x0a713c38 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aa7b11f install_exec_creds +EXPORT_SYMBOL vmlinux 0x0ab0ae2d iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x0ac1440f neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x0ac4c23b set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x0ac54baa skb_dequeue +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0adde15d xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x0afe26d8 devfreq_add_device +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b5ff1c4 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b861539 param_set_charp +EXPORT_SYMBOL vmlinux 0x0b905c66 __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x0ba3f12e truncate_pagecache +EXPORT_SYMBOL vmlinux 0x0bb0b430 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x0bb56f62 mount_pseudo +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bc7a71d __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x0bd15965 nf_log_packet +EXPORT_SYMBOL vmlinux 0x0bd2edbd md_update_sb +EXPORT_SYMBOL vmlinux 0x0beeb499 loop_register_transfer +EXPORT_SYMBOL vmlinux 0x0bf57ec4 tty_vhangup +EXPORT_SYMBOL vmlinux 0x0bf9034c sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x0c0b5dd0 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x0c0c113b kill_block_super +EXPORT_SYMBOL vmlinux 0x0c0c2432 xattr_full_name +EXPORT_SYMBOL vmlinux 0x0c166bae tcf_em_register +EXPORT_SYMBOL vmlinux 0x0c200ecc ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x0c245b29 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c68ac20 should_remove_suid +EXPORT_SYMBOL vmlinux 0x0c69c353 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x0c718c66 mem_cgroup_end_page_stat +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0ca7b7a8 acpi_check_region +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cc62e36 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x0cd70fdd mpage_writepages +EXPORT_SYMBOL vmlinux 0x0cdb7d12 __kernel_fpu_begin +EXPORT_SYMBOL vmlinux 0x0ce2726a pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x0ce3ab1b ppp_channel_index +EXPORT_SYMBOL vmlinux 0x0d0360d8 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x0d041a98 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0x0d119ae2 sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x0d133fde kill_bdev +EXPORT_SYMBOL vmlinux 0x0d138180 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x0d163983 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x0d193dd7 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x0d1a8123 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x0d325050 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0x0d361291 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x0d3c2c47 pci_choose_state +EXPORT_SYMBOL vmlinux 0x0d3dda14 acpi_get_type +EXPORT_SYMBOL vmlinux 0x0d4005ee pci_iomap_range +EXPORT_SYMBOL vmlinux 0x0d458e53 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x0d4c9cc3 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d58d605 blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d6c9b03 __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x0d898156 simple_empty +EXPORT_SYMBOL vmlinux 0x0d96b28b pci_pme_active +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0da31411 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex +EXPORT_SYMBOL vmlinux 0x0dc4c177 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x0dd599df __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x0dd6cc78 mmc_detect_change +EXPORT_SYMBOL vmlinux 0x0de66930 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x0deb0b8a blk_free_tags +EXPORT_SYMBOL vmlinux 0x0e175332 nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0x0e204b10 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x0e4984a1 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x0e623dd1 devm_ioremap +EXPORT_SYMBOL vmlinux 0x0e699a11 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x0e6c3487 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e7390ec posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x0e99a6ff lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x0eaf451e hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0eaf53b3 __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x0ebf02aa tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ecd8e4f input_register_handler +EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f0f514f prepare_creds +EXPORT_SYMBOL vmlinux 0x0f32e472 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f5b0a23 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f72ff5f tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f889576 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x0f89bda0 inet6_ioctl +EXPORT_SYMBOL vmlinux 0x0f925645 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x0fa69fd7 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fd00a68 acpi_clear_event +EXPORT_SYMBOL vmlinux 0x0fd1e456 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress +EXPORT_SYMBOL vmlinux 0x0ff94af2 bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0x10113070 padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0x101e8e51 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x102c56de irq_regs +EXPORT_SYMBOL vmlinux 0x10671d37 register_console +EXPORT_SYMBOL vmlinux 0x106afb06 _dev_info +EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x10806ccc blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x1093eaa1 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x10a661bc pci_remove_bus +EXPORT_SYMBOL vmlinux 0x10c5965e vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x10fba77a vga_con +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x11145431 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x112578b0 passthru_features_check +EXPORT_SYMBOL vmlinux 0x112b76d5 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x1137dd50 register_framebuffer +EXPORT_SYMBOL vmlinux 0x11524c6d lwtunnel_output +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x117d97ac netif_device_detach +EXPORT_SYMBOL vmlinux 0x1180c609 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x11952f5a nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x119a8205 dev_mc_flush +EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x11a5e5f8 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x11c962b9 from_kuid +EXPORT_SYMBOL vmlinux 0x11cb6309 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x11dab60d netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x11dd01ad intel_scu_ipc_command +EXPORT_SYMBOL vmlinux 0x11ee8160 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x11fa82fa devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0x11faf0ad fput +EXPORT_SYMBOL vmlinux 0x11fbce2c __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x120add2f iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x1215b6ab x86_dma_fallback_dev +EXPORT_SYMBOL vmlinux 0x121b4e4b memremap +EXPORT_SYMBOL vmlinux 0x122d3812 phy_resume +EXPORT_SYMBOL vmlinux 0x124ff885 netdev_emerg +EXPORT_SYMBOL vmlinux 0x1250c7e1 _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x12523d3c alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x12592d29 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x125bbf87 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x12605d7d proc_create_data +EXPORT_SYMBOL vmlinux 0x126ea969 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x1272d6e6 flush_old_exec +EXPORT_SYMBOL vmlinux 0x127fa666 sock_create_kern +EXPORT_SYMBOL vmlinux 0x128060ab pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x12a1dfa3 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12c3c969 key_revoke +EXPORT_SYMBOL vmlinux 0x12c72bd5 __kfree_skb +EXPORT_SYMBOL vmlinux 0x12d65685 dev_mc_init +EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc +EXPORT_SYMBOL vmlinux 0x12ecdbb8 down_write_trylock +EXPORT_SYMBOL vmlinux 0x13142e5b scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x1323348f netdev_err +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc +EXPORT_SYMBOL vmlinux 0x1336df5f sock_no_poll +EXPORT_SYMBOL vmlinux 0x133856b0 dma_alloc_from_coherent +EXPORT_SYMBOL vmlinux 0x13489345 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x1379fbea set_user_nice +EXPORT_SYMBOL vmlinux 0x139144cf inode_init_once +EXPORT_SYMBOL vmlinux 0x139a47ce blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x13bbabb9 iov_iter_init +EXPORT_SYMBOL vmlinux 0x13caf920 register_cdrom +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d25c16 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13f9de34 cpu_info +EXPORT_SYMBOL vmlinux 0x13ffbc70 xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0x14198598 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x1420b379 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x1426893a tcp_seq_open +EXPORT_SYMBOL vmlinux 0x14383dbf nd_btt_probe +EXPORT_SYMBOL vmlinux 0x149836d1 nvm_unregister_target +EXPORT_SYMBOL vmlinux 0x149cfa60 netdev_features_change +EXPORT_SYMBOL vmlinux 0x14b73163 pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14cff935 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x14e2765c cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x14ed34bf dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x14f1c594 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x150389d6 acpi_processor_power_init_bm_check +EXPORT_SYMBOL vmlinux 0x1521bd13 param_get_short +EXPORT_SYMBOL vmlinux 0x1547bfd6 __wait_on_bit +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x156a8a59 down_trylock +EXPORT_SYMBOL vmlinux 0x15799c11 _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x15860a1c ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x15a27381 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x15ac9406 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x15b9e291 mmc_can_discard +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15c2a99a lookup_bdev +EXPORT_SYMBOL vmlinux 0x15c43de8 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x15d95304 d_path +EXPORT_SYMBOL vmlinux 0x15e65a6b no_llseek +EXPORT_SYMBOL vmlinux 0x15eac904 udp_disconnect +EXPORT_SYMBOL vmlinux 0x15eda16c lru_cache_add_file +EXPORT_SYMBOL vmlinux 0x15f81aa8 padata_do_parallel +EXPORT_SYMBOL vmlinux 0x160ea4c8 sfi_disabled +EXPORT_SYMBOL vmlinux 0x1616cb30 acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null +EXPORT_SYMBOL vmlinux 0x16439f5d generic_writepages +EXPORT_SYMBOL vmlinux 0x16699a7f blk_put_request +EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 +EXPORT_SYMBOL vmlinux 0x1683a50b radix_tree_delete +EXPORT_SYMBOL vmlinux 0x168cf911 nla_reserve +EXPORT_SYMBOL vmlinux 0x1693a1c5 netlink_capable +EXPORT_SYMBOL vmlinux 0x16984ea8 set_page_dirty +EXPORT_SYMBOL vmlinux 0x169c6ad8 sock_wfree +EXPORT_SYMBOL vmlinux 0x16bb0391 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x16be2cc9 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x16bf3c3c acl_by_type +EXPORT_SYMBOL vmlinux 0x16ca9338 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x16dc4d1f fence_init +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16ec8c54 inet_accept +EXPORT_SYMBOL vmlinux 0x1704a9e3 path_get +EXPORT_SYMBOL vmlinux 0x1705e82a n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x170c25ee acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x172ec2c9 dquot_file_open +EXPORT_SYMBOL vmlinux 0x1741391c blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x1742fe5f netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x175a76d5 blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0x175df8f2 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0x1782ab38 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x1789dad5 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x178a7372 mmc_can_reset +EXPORT_SYMBOL vmlinux 0x179651ac _raw_read_lock +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17b530ee ppp_unit_number +EXPORT_SYMBOL vmlinux 0x17defa92 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x17e1483a nd_integrity_init +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x180e7f45 skb_queue_head +EXPORT_SYMBOL vmlinux 0x18211be8 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x1822a04b blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x18431ab4 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x184f1707 ata_print_version +EXPORT_SYMBOL vmlinux 0x185c2fb7 inode_set_flags +EXPORT_SYMBOL vmlinux 0x1864648c cdev_alloc +EXPORT_SYMBOL vmlinux 0x186aa791 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x1876ae39 dev_uc_add +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x189e9ef6 nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x18c0e7fe pci_scan_slot +EXPORT_SYMBOL vmlinux 0x18c3d8d7 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x18d96501 atomic64_dec_if_positive_cx8 +EXPORT_SYMBOL vmlinux 0x18e401ae __get_page_tail +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x1916cf47 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x1916e38c _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x192ae141 __frontswap_test +EXPORT_SYMBOL vmlinux 0x192f44ba __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x195934e4 migrate_page_copy +EXPORT_SYMBOL vmlinux 0x1961ca9b param_ops_bool +EXPORT_SYMBOL vmlinux 0x198b415e xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x19984e23 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x199b93e1 current_fs_time +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19aef062 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x19b4fb4b max8998_update_reg +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x1a07bfd0 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x1a0ab802 init_special_inode +EXPORT_SYMBOL vmlinux 0x1a2118cb pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0x1a307c2c dquot_scan_active +EXPORT_SYMBOL vmlinux 0x1a3d45c3 vfs_read +EXPORT_SYMBOL vmlinux 0x1a42adba simple_unlink +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a5de3d8 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch +EXPORT_SYMBOL vmlinux 0x1a6b6e49 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x1a86d04f bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x1aa1c801 dump_page +EXPORT_SYMBOL vmlinux 0x1afb1aaa acpi_mark_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b0ef699 secpath_dup +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b5253d8 devm_release_resource +EXPORT_SYMBOL vmlinux 0x1b53f4d5 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x1b557a7f dm_get_device +EXPORT_SYMBOL vmlinux 0x1b570d23 acpi_warning +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b711fa9 __frontswap_load +EXPORT_SYMBOL vmlinux 0x1b754b26 tty_hangup +EXPORT_SYMBOL vmlinux 0x1b7c0e5d netif_carrier_off +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b88c044 __napi_schedule +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1bae71ee save_mount_options +EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer +EXPORT_SYMBOL vmlinux 0x1bb5290f pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x1bb86621 bdget +EXPORT_SYMBOL vmlinux 0x1bc168a8 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x1bc79997 register_netdev +EXPORT_SYMBOL vmlinux 0x1bc7a523 lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x1be1dd26 lg_global_lock +EXPORT_SYMBOL vmlinux 0x1c114a6a vm_event_states +EXPORT_SYMBOL vmlinux 0x1c2e8906 tcp_req_err +EXPORT_SYMBOL vmlinux 0x1c4150f0 dump_truncate +EXPORT_SYMBOL vmlinux 0x1c4f4fa7 dev_printk_emit +EXPORT_SYMBOL vmlinux 0x1c511eba ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x1c531ba2 redraw_screen +EXPORT_SYMBOL vmlinux 0x1c569304 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x1c5e8fb8 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x1c725a6f kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x1c747be1 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x1c783099 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x1c8a04b0 acpi_reset +EXPORT_SYMBOL vmlinux 0x1c8dc345 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x1cb8962a key_alloc +EXPORT_SYMBOL vmlinux 0x1cb93d38 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x1cc44605 d_rehash +EXPORT_SYMBOL vmlinux 0x1cd63ef7 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x1cecf73c tcp_destroy_cgroup +EXPORT_SYMBOL vmlinux 0x1ced7761 tty_port_open +EXPORT_SYMBOL vmlinux 0x1d0b0f0b __register_binfmt +EXPORT_SYMBOL vmlinux 0x1d1758fd __nla_put +EXPORT_SYMBOL vmlinux 0x1d2cd076 inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x1d51e043 serio_interrupt +EXPORT_SYMBOL vmlinux 0x1db5b956 kill_litter_super +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1de74f72 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0x1de8e316 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x1df05865 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x1df55626 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x1e0335da seq_printf +EXPORT_SYMBOL vmlinux 0x1e036c98 acpi_set_gpe +EXPORT_SYMBOL vmlinux 0x1e047854 warn_slowpath_fmt +EXPORT_SYMBOL vmlinux 0x1e0c2be4 ioremap_wc +EXPORT_SYMBOL vmlinux 0x1e0d5364 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e2b88d8 netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x1e3317e7 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x1e36f941 __ps2_command +EXPORT_SYMBOL vmlinux 0x1e46a1e7 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x1e691132 d_walk +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e6f6008 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x1e7f2ac4 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector +EXPORT_SYMBOL vmlinux 0x1ed8ebf1 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x1edca132 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x1ee15143 devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0x1ee1794b bdev_read_only +EXPORT_SYMBOL vmlinux 0x1efc654b d_set_fallthru +EXPORT_SYMBOL vmlinux 0x1f0ca59e __skb_get_hash +EXPORT_SYMBOL vmlinux 0x1f323997 udp_seq_open +EXPORT_SYMBOL vmlinux 0x1f379bbc scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0x1f383e15 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x1f92d322 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x1f958a0c key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fbef02d vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fd8c01f blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x1fddb744 pcibios_set_irq_routing +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x1feb1983 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x1feb99a6 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x2005e68a acpi_remove_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x20092385 acpi_enter_sleep_state_s4bios +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x201b0ac0 lg_global_unlock +EXPORT_SYMBOL vmlinux 0x201b0fbb km_query +EXPORT_SYMBOL vmlinux 0x20205f64 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0x202f4e92 acpi_extract_package +EXPORT_SYMBOL vmlinux 0x20334121 pci_enable_device +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x2058afe1 single_release +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x207bd52f jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x20826e68 module_refcount +EXPORT_SYMBOL vmlinux 0x208739f6 acpi_load_table +EXPORT_SYMBOL vmlinux 0x20917a3f devfreq_interval_update +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20ae58d0 __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20c6192f intel_scu_ipc_ioread32 +EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x20f3f09b input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x20f43eaf blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x20f95c99 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x2108ad55 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x2122f4c0 swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x21333b59 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x213a4198 dev_addr_add +EXPORT_SYMBOL vmlinux 0x213b72e3 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x2156a06a __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x216c373d mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x21a701fe fence_signal +EXPORT_SYMBOL vmlinux 0x21c4c727 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21e992a5 ida_simple_get +EXPORT_SYMBOL vmlinux 0x2207a57f prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x220d245f vga_switcheroo_client_fb_set +EXPORT_SYMBOL vmlinux 0x2212c0ca tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x2233115b sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x224104a1 blk_run_queue +EXPORT_SYMBOL vmlinux 0x224d9de5 __dax_fault +EXPORT_SYMBOL vmlinux 0x2251cebb address_space_init_once +EXPORT_SYMBOL vmlinux 0x2256fafa div64_u64_rem +EXPORT_SYMBOL vmlinux 0x22590677 simple_write_end +EXPORT_SYMBOL vmlinux 0x225f52c1 vme_bus_type +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22dfdd06 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x22e8096a mmc_start_req +EXPORT_SYMBOL vmlinux 0x22fc4f3a trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x22fd1505 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x23246384 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x232d18ec rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x233163ea phy_suspend +EXPORT_SYMBOL vmlinux 0x233fe520 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x23803f8d skb_make_writable +EXPORT_SYMBOL vmlinux 0x238c075d netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23a82b61 fb_find_mode +EXPORT_SYMBOL vmlinux 0x23ae6bc9 mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0x23b101e9 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x23ded6e2 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x23e0e440 free_netdev +EXPORT_SYMBOL vmlinux 0x23f5993b blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x23f6f607 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x240e00d2 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x24267df1 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x243b3b8a poll_initwait +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x2445d354 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x244df8d8 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x2458cd01 unload_nls +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x2465d2e2 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x2468411d shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x246a62e7 reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x249d4aff __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x24b70a91 file_ns_capable +EXPORT_SYMBOL vmlinux 0x24c557a0 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x24eb1345 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x2507416e ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x250f5f6a __invalidate_device +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x252b1d2e dm_put_table_device +EXPORT_SYMBOL vmlinux 0x256e4dc7 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x256eb00b eth_header_parse +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x2593a435 bio_reset +EXPORT_SYMBOL vmlinux 0x25bda2e7 kernel_listen +EXPORT_SYMBOL vmlinux 0x25bf45ae sock_no_bind +EXPORT_SYMBOL vmlinux 0x25cf3156 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x25d3e013 scsi_unregister +EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x262e71cc blk_start_request +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux +EXPORT_SYMBOL vmlinux 0x2671f273 send_sig +EXPORT_SYMBOL vmlinux 0x2687bfdd up_read +EXPORT_SYMBOL vmlinux 0x268802a1 netif_napi_del +EXPORT_SYMBOL vmlinux 0x268cc6a2 sys_close +EXPORT_SYMBOL vmlinux 0x26a323eb tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x26ac93ac tso_count_descs +EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x26bcfa9c acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0x26cb34a2 mempool_create +EXPORT_SYMBOL vmlinux 0x26cfa31c posix_test_lock +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x271191e9 get_unmapped_area +EXPORT_SYMBOL vmlinux 0x27184538 blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x272f031f pci_biosrom_size +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274bb050 clkdev_drop +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x27882b9b ida_simple_remove +EXPORT_SYMBOL vmlinux 0x27ae7d0c ec_transaction +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27bbf406 tcp_check_req +EXPORT_SYMBOL vmlinux 0x27c71710 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x27db75dc dquot_release +EXPORT_SYMBOL vmlinux 0x2802b70d __secpath_destroy +EXPORT_SYMBOL vmlinux 0x2803002c cfb_fillrect +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x28269cb2 __alloc_skb +EXPORT_SYMBOL vmlinux 0x2827d59b pci_dev_put +EXPORT_SYMBOL vmlinux 0x28401089 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x288ed3a9 set_bh_page +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28a3b506 empty_aops +EXPORT_SYMBOL vmlinux 0x28b715a6 isapnp_cfg_end +EXPORT_SYMBOL vmlinux 0x28cfd071 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available +EXPORT_SYMBOL vmlinux 0x28eeb1cc elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0x29215277 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x29215a70 netpoll_setup +EXPORT_SYMBOL vmlinux 0x293933da sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x295ef2b4 rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0x2960c69c x86_hyper_xen +EXPORT_SYMBOL vmlinux 0x2970b75c parent_mem_cgroup +EXPORT_SYMBOL vmlinux 0x298f1766 pnp_possible_config +EXPORT_SYMBOL vmlinux 0x2990748d devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x29a22d0b md_finish_reshape +EXPORT_SYMBOL vmlinux 0x29ac4e89 brioctl_set +EXPORT_SYMBOL vmlinux 0x29b230e2 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x29cc7393 vme_slave_request +EXPORT_SYMBOL vmlinux 0x29fdda53 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a565a25 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x2a59d5d4 dma_release_from_coherent +EXPORT_SYMBOL vmlinux 0x2a5def2f intel_scu_ipc_iowrite32 +EXPORT_SYMBOL vmlinux 0x2a66477b pci_fixup_device +EXPORT_SYMBOL vmlinux 0x2a69e1a0 bio_integrity_advance +EXPORT_SYMBOL vmlinux 0x2a747cc2 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x2a8871a5 rtnl_notify +EXPORT_SYMBOL vmlinux 0x2a8ad21a kobject_set_name +EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp +EXPORT_SYMBOL vmlinux 0x2aa2c3d2 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x2aaea3c6 ip_defrag +EXPORT_SYMBOL vmlinux 0x2abb5dab skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2b08842b generic_permission +EXPORT_SYMBOL vmlinux 0x2b08c19e inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b46feba ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x2b4c2f45 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x2b576f6f __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x2b678539 seq_putc +EXPORT_SYMBOL vmlinux 0x2b75abd8 have_submounts +EXPORT_SYMBOL vmlinux 0x2b7f7c6a input_set_capability +EXPORT_SYMBOL vmlinux 0x2b982cf5 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2bb3e1b1 udp_set_csum +EXPORT_SYMBOL vmlinux 0x2bb55d6e acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x2bde7f2b bio_unmap_user +EXPORT_SYMBOL vmlinux 0x2be7b6a9 d_obtain_root +EXPORT_SYMBOL vmlinux 0x2beb3f26 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x2bfeb410 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x2c120a91 mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c83c8df security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x2c986c99 phy_device_create +EXPORT_SYMBOL vmlinux 0x2ca319a6 wrmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x2ca8310a kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0x2ca8eef1 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x2cbe4320 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x2cc40ecf fence_remove_callback +EXPORT_SYMBOL vmlinux 0x2cd84451 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x2cdfc835 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x2d004a15 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x2d0eb880 simple_transaction_release +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d144e21 rdmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d37342e cpu_online_mask +EXPORT_SYMBOL vmlinux 0x2d456a7d eth_change_mtu +EXPORT_SYMBOL vmlinux 0x2d7c1fc9 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x2d87888a elevator_init +EXPORT_SYMBOL vmlinux 0x2d9edb2f blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x2db7babb copy_to_iter +EXPORT_SYMBOL vmlinux 0x2dbe6f2d vfs_mkdir +EXPORT_SYMBOL vmlinux 0x2dc921f5 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x2dcf2420 __frontswap_store +EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu +EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink +EXPORT_SYMBOL vmlinux 0x2de7abd2 flow_cache_fini +EXPORT_SYMBOL vmlinux 0x2dedc4c2 acpi_format_exception +EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e2d44f7 abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0x2e2dc3aa __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0x2e51ab42 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x2e6bc50c vfs_llseek +EXPORT_SYMBOL vmlinux 0x2e6e4d8f jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x2e7fd99e clear_nlink +EXPORT_SYMBOL vmlinux 0x2e96a39b nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x2eae6cc1 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x2ece0fdf dma_async_device_register +EXPORT_SYMBOL vmlinux 0x2ee3608c mdio_bus_type +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2ef8dcc1 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x2f02a2af __mutex_init +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource +EXPORT_SYMBOL vmlinux 0x2f0b83d0 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x2f2ec417 sock_rfree +EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f54cd02 tty_register_device +EXPORT_SYMBOL vmlinux 0x2f73a5bc blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x2f97ecfc request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fc35786 arp_tbl +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x302a0822 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x3035b834 setup_new_exec +EXPORT_SYMBOL vmlinux 0x3038ad22 posix_acl_valid +EXPORT_SYMBOL vmlinux 0x3070a350 dev_addr_del +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x309e36f8 elevator_exit +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30a8d6e6 bio_alloc_pages +EXPORT_SYMBOL vmlinux 0x30b04526 ida_init +EXPORT_SYMBOL vmlinux 0x30b29d4e phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x30be21b2 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x30c3d516 lockref_put_return +EXPORT_SYMBOL vmlinux 0x30ca7f76 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x30cf9d80 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x30d3fb6f to_ndd +EXPORT_SYMBOL vmlinux 0x30db222c dev_mc_sync +EXPORT_SYMBOL vmlinux 0x30e3d38a may_umount +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30f688a7 neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310917fe sort +EXPORT_SYMBOL vmlinux 0x311518d5 mntget +EXPORT_SYMBOL vmlinux 0x31210c49 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x31253ee6 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x31288e09 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x312aa8c5 tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0x31380354 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x3148a748 pnp_start_dev +EXPORT_SYMBOL vmlinux 0x314e06ab get_super_thawed +EXPORT_SYMBOL vmlinux 0x316840d0 inc_nlink +EXPORT_SYMBOL vmlinux 0x316883be buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x31787ee9 md_write_start +EXPORT_SYMBOL vmlinux 0x318d8822 max8925_set_bits +EXPORT_SYMBOL vmlinux 0x3191f109 __krealloc +EXPORT_SYMBOL vmlinux 0x31920d13 ip6_xmit +EXPORT_SYMBOL vmlinux 0x31936245 pipe_unlock +EXPORT_SYMBOL vmlinux 0x3197534e f_setown +EXPORT_SYMBOL vmlinux 0x31a58e21 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x31b220a1 pci_enable_msix +EXPORT_SYMBOL vmlinux 0x31ba6821 __dst_free +EXPORT_SYMBOL vmlinux 0x31e33c39 security_path_truncate +EXPORT_SYMBOL vmlinux 0x31e506b3 ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0x31e76b57 recalibrate_cpu_khz +EXPORT_SYMBOL vmlinux 0x31ec44a0 _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0x31f0bb78 __kmap_atomic_idx +EXPORT_SYMBOL vmlinux 0x3202435a wrmsr_safe_regs +EXPORT_SYMBOL vmlinux 0x321857c7 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x32430bfd mem_cgroup_begin_page_stat +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom +EXPORT_SYMBOL vmlinux 0x327d09d7 phy_detach +EXPORT_SYMBOL vmlinux 0x328ffc13 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x32b5fa2f mem_section +EXPORT_SYMBOL vmlinux 0x32bbe948 __d_drop +EXPORT_SYMBOL vmlinux 0x32cc3433 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x32d889ae pci_iomap +EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x32eaade0 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x32f0aa0c get_super +EXPORT_SYMBOL vmlinux 0x3304030a inode_permission +EXPORT_SYMBOL vmlinux 0x3305c460 seq_open +EXPORT_SYMBOL vmlinux 0x330ca3d0 dev_change_carrier +EXPORT_SYMBOL vmlinux 0x33163bf4 done_path_create +EXPORT_SYMBOL vmlinux 0x334f10a6 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x336ac073 down_read_trylock +EXPORT_SYMBOL vmlinux 0x336e8506 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x33a11091 __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x33c4c0a0 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33c8515b inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33f18e16 tcf_hash_search +EXPORT_SYMBOL vmlinux 0x342f60fe apm_info +EXPORT_SYMBOL vmlinux 0x3431f17f generic_setxattr +EXPORT_SYMBOL vmlinux 0x3433fa12 down_read +EXPORT_SYMBOL vmlinux 0x343e565a i2c_master_send +EXPORT_SYMBOL vmlinux 0x34462383 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x3450bfb3 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0x34581adf dev_uc_del +EXPORT_SYMBOL vmlinux 0x345d3fea dm_unregister_target +EXPORT_SYMBOL vmlinux 0x345f1d77 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x3461cb65 softnet_data +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x347030e9 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x3495edcf sock_setsockopt +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34ce70f8 dentry_unhash +EXPORT_SYMBOL vmlinux 0x34e7212b simple_rename +EXPORT_SYMBOL vmlinux 0x34f0f6a6 netdev_notice +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x350267d8 blk_start_queue +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x351e1086 input_release_device +EXPORT_SYMBOL vmlinux 0x353de98f cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x353e21e3 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x356f9511 param_set_bint +EXPORT_SYMBOL vmlinux 0x358db2df __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35a99911 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x35bab279 input_grab_device +EXPORT_SYMBOL vmlinux 0x35bf2501 I_BDEV +EXPORT_SYMBOL vmlinux 0x35d9a450 devm_request_resource +EXPORT_SYMBOL vmlinux 0x35fc47ca mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x3626d54e bdi_init +EXPORT_SYMBOL vmlinux 0x363e002c xfrm_register_mode +EXPORT_SYMBOL vmlinux 0x3640531e posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0x3655ee78 tcp_connect +EXPORT_SYMBOL vmlinux 0x367ba856 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x367fcd5f sk_reset_timer +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36c0014b nf_reinject +EXPORT_SYMBOL vmlinux 0x36c6af51 intel_scu_ipc_iowrite8 +EXPORT_SYMBOL vmlinux 0x36f224fc mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x36fdda67 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x3706c7f6 i2c_use_client +EXPORT_SYMBOL vmlinux 0x370f9850 efi +EXPORT_SYMBOL vmlinux 0x3720b33c kill_fasync +EXPORT_SYMBOL vmlinux 0x3736b3f4 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x373b4cc7 dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x373d0a22 set_nlink +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3746e586 free_user_ns +EXPORT_SYMBOL vmlinux 0x3757cf64 led_update_brightness +EXPORT_SYMBOL vmlinux 0x376218ad scsi_block_requests +EXPORT_SYMBOL vmlinux 0x376b0e9e dev_addr_init +EXPORT_SYMBOL vmlinux 0x376e0ec8 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x377c4036 register_shrinker +EXPORT_SYMBOL vmlinux 0x3782acdd skb_pull +EXPORT_SYMBOL vmlinux 0x379dee5f trace_print_symbols_seq_u64 +EXPORT_SYMBOL vmlinux 0x37abf462 tcp_proc_register +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37e1f1af ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 +EXPORT_SYMBOL vmlinux 0x37eb8953 param_set_short +EXPORT_SYMBOL vmlinux 0x37ef7e6c request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x37f018b3 elv_rb_add +EXPORT_SYMBOL vmlinux 0x37f44463 pci_dev_get +EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x38099e13 wrmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x381ccc13 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x383c9afd get_thermal_instance +EXPORT_SYMBOL vmlinux 0x38401724 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x38462dd7 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x3849efb6 d_alloc_name +EXPORT_SYMBOL vmlinux 0x386a12de sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x388799f6 unregister_kmmio_probe +EXPORT_SYMBOL vmlinux 0x388e65d5 __f_setown +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38c291af mark_info_dirty +EXPORT_SYMBOL vmlinux 0x38c2c75d xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages +EXPORT_SYMBOL vmlinux 0x391f2d4e pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x39211a4a input_set_abs_params +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x39560490 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x395898d5 serio_bus +EXPORT_SYMBOL vmlinux 0x395fdea7 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x3960f7a9 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399b826e mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x39a055f3 acpi_remove_gpe_handler +EXPORT_SYMBOL vmlinux 0x39a21124 vme_dma_request +EXPORT_SYMBOL vmlinux 0x39a82f43 __netif_schedule +EXPORT_SYMBOL vmlinux 0x39ac4fd9 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39cc4c53 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x39d4012e scsi_host_put +EXPORT_SYMBOL vmlinux 0x39e49bb8 tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0x39f1c2f4 ida_get_new_above +EXPORT_SYMBOL vmlinux 0x39f22b58 ip_ct_attach +EXPORT_SYMBOL vmlinux 0x39fcd9ec put_cmsg +EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify +EXPORT_SYMBOL vmlinux 0x3a1ac054 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x3a20db6f blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x3a21780a commit_creds +EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush +EXPORT_SYMBOL vmlinux 0x3a472478 finish_no_open +EXPORT_SYMBOL vmlinux 0x3a5cb3f2 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x3a6916a3 security_path_rename +EXPORT_SYMBOL vmlinux 0x3a703674 ll_rw_block +EXPORT_SYMBOL vmlinux 0x3a927275 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x3a97febb skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3aa2389b fget_raw +EXPORT_SYMBOL vmlinux 0x3ad421a3 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x3ae008f4 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x3ae64250 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0x3aef3dc0 bdput +EXPORT_SYMBOL vmlinux 0x3af5f422 fget +EXPORT_SYMBOL vmlinux 0x3afaf6d1 dquot_destroy +EXPORT_SYMBOL vmlinux 0x3b201620 machine_real_restart +EXPORT_SYMBOL vmlinux 0x3b29ad48 fb_set_var +EXPORT_SYMBOL vmlinux 0x3b49fc35 simple_statfs +EXPORT_SYMBOL vmlinux 0x3b55369e dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x3b5f99ad jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b68f1d4 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x3b69619a to_nd_btt +EXPORT_SYMBOL vmlinux 0x3b6f6cd2 udp_table +EXPORT_SYMBOL vmlinux 0x3b85ccc4 seq_release +EXPORT_SYMBOL vmlinux 0x3b8fe8b8 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x3bb5114a prepare_to_wait +EXPORT_SYMBOL vmlinux 0x3bc7ae59 mutex_lock +EXPORT_SYMBOL vmlinux 0x3bd408a8 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x3be3d575 pskb_expand_head +EXPORT_SYMBOL vmlinux 0x3c12b480 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x3c2a59f9 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x3c2e774c gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0x3c390db6 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c497425 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x3c4ed157 dcb_setapp +EXPORT_SYMBOL vmlinux 0x3c55de3c nvm_end_io +EXPORT_SYMBOL vmlinux 0x3c5ff3e4 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x3c6dff47 param_ops_short +EXPORT_SYMBOL vmlinux 0x3c7113b7 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x3c7fe877 dev_load +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c8daa6c simple_lookup +EXPORT_SYMBOL vmlinux 0x3c90b922 keyring_clear +EXPORT_SYMBOL vmlinux 0x3cb3931b sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cf7252a bioset_integrity_free +EXPORT_SYMBOL vmlinux 0x3d03dde2 find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x3d1391e2 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x3d2c6949 dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0x3d3c12ee inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x3d7c1ed7 msrs_alloc +EXPORT_SYMBOL vmlinux 0x3d812981 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x3d82f064 key_type_keyring +EXPORT_SYMBOL vmlinux 0x3d9a0a27 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start +EXPORT_SYMBOL vmlinux 0x3da19c2c neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x3dbe6fca __lock_page +EXPORT_SYMBOL vmlinux 0x3dc8b0b1 padata_stop +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3defb53b vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e01411d blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x3e0d6452 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x3e2ae3a8 acpi_release_global_lock +EXPORT_SYMBOL vmlinux 0x3e560f34 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x3e654f49 acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x3e72622e tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get +EXPORT_SYMBOL vmlinux 0x3e9cbafd devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x3eb9d154 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x3ef4e9ce tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x3ef78d80 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x3eff5ac2 intel_scu_ipc_writev +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f098cca alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x3f1602c7 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x3f19a2c3 vfs_symlink +EXPORT_SYMBOL vmlinux 0x3f20ca97 rtc_lock +EXPORT_SYMBOL vmlinux 0x3f28499a netif_skb_features +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f56b24a inet6_bind +EXPORT_SYMBOL vmlinux 0x3f616ce2 queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x3fb69f35 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x3fbaecdd nf_afinfo +EXPORT_SYMBOL vmlinux 0x3fc7f14b abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0x3fdddbe7 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x40140a06 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev +EXPORT_SYMBOL vmlinux 0x403bb5e3 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x40466619 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x4050ca12 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump +EXPORT_SYMBOL vmlinux 0x405ba341 mount_nodev +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x4086be80 vme_bus_num +EXPORT_SYMBOL vmlinux 0x408fe2e5 __getblk_slow +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x4097fa45 acpi_read_bit_register +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a2d1dd dm_table_get_size +EXPORT_SYMBOL vmlinux 0x40a34dfd nd_device_register +EXPORT_SYMBOL vmlinux 0x40a410e0 skb_tx_error +EXPORT_SYMBOL vmlinux 0x40a6ad7d pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40b38fda search_binary_handler +EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40c89d46 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0x40c8bf77 pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x4113aaf1 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x412851ee __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x4135aa78 vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x415a24b6 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x4162b91d ht_create_irq +EXPORT_SYMBOL vmlinux 0x4164dab1 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x416fd5e9 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x417854cd unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x41862ad4 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x41af0ed9 __ht_create_irq +EXPORT_SYMBOL vmlinux 0x41c831ae vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x41d85b31 cdev_add +EXPORT_SYMBOL vmlinux 0x4209cdc7 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x421817ea scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0x42350e8d ucs2_strlen +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x424f6b9f blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x4259e65d ___pskb_trim +EXPORT_SYMBOL vmlinux 0x428282f6 dma_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0x4291a781 pagevec_lookup +EXPORT_SYMBOL vmlinux 0x4292364c schedule +EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x42a7dc1a param_get_ullong +EXPORT_SYMBOL vmlinux 0x42ba0f20 netdev_printk +EXPORT_SYMBOL vmlinux 0x42c1148a pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x42c8de35 ioremap_nocache +EXPORT_SYMBOL vmlinux 0x42ed632f tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0x42ff47dc dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x4340a3ea amd_northbridges +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x4381202d set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x439ca15f genl_notify +EXPORT_SYMBOL vmlinux 0x43a87851 __inet_hash +EXPORT_SYMBOL vmlinux 0x43d48036 inet_getname +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x43f979f6 dev_add_offload +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x4427f74c tcp_sendpage +EXPORT_SYMBOL vmlinux 0x442a334b netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x442a6cec noop_llseek +EXPORT_SYMBOL vmlinux 0x442cc112 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x44438b96 hex2bin +EXPORT_SYMBOL vmlinux 0x44600d2e skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x4462cdf6 xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0x4467c706 param_ops_long +EXPORT_SYMBOL vmlinux 0x44772850 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x448e085f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x4490e149 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x449fe84b acpi_set_firmware_waking_vectors +EXPORT_SYMBOL vmlinux 0x44a068a3 napi_consume_skb +EXPORT_SYMBOL vmlinux 0x44a27214 path_put +EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz +EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x44cc830d kthread_stop +EXPORT_SYMBOL vmlinux 0x44da87a9 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x44dbd88e fddi_type_trans +EXPORT_SYMBOL vmlinux 0x44dd8e5b posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x45163e66 kernel_connect +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x453d979a write_cache_pages +EXPORT_SYMBOL vmlinux 0x455070b2 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x45631f04 kunmap_high +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x45849218 devm_gpio_request +EXPORT_SYMBOL vmlinux 0x45a6fb85 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource +EXPORT_SYMBOL vmlinux 0x45e8a32b scsi_print_result +EXPORT_SYMBOL vmlinux 0x45eb68a6 fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0x45f65c18 noop_fsync +EXPORT_SYMBOL vmlinux 0x45ffcf8b ppp_dev_name +EXPORT_SYMBOL vmlinux 0x4629334c __preempt_count +EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x46677180 simple_readpage +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x46b56013 phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0x46b704c6 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x46bb101f netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x46d35cfa mmc_free_host +EXPORT_SYMBOL vmlinux 0x46f4788d devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x4701befc tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x4706d678 param_set_ushort +EXPORT_SYMBOL vmlinux 0x470dbc74 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x470fdbc3 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x4731f866 udp_add_offload +EXPORT_SYMBOL vmlinux 0x4740b3bc xen_arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x474e995d flow_cache_init +EXPORT_SYMBOL vmlinux 0x47529fc5 pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x475f010b acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x477b6542 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x478d10b2 ht_destroy_irq +EXPORT_SYMBOL vmlinux 0x478f0224 nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0x4790c485 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x4794af5d tcp_close +EXPORT_SYMBOL vmlinux 0x4795b264 kmap_high +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47d30fae from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x47f00082 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x47f9bfd8 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x48011464 set_cached_acl +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x481cb9ab acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x482a694f d_prune_aliases +EXPORT_SYMBOL vmlinux 0x482ace52 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x482cf89d textsearch_unregister +EXPORT_SYMBOL vmlinux 0x4830c43b __inode_permission +EXPORT_SYMBOL vmlinux 0x48576585 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x4857ad90 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x48851be5 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x488b196c sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x4895d7b4 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x489c78be scsi_init_io +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48c35ea6 agp_unbind_memory +EXPORT_SYMBOL vmlinux 0x48e5aefc find_vma +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x490def45 vga_switcheroo_register_client +EXPORT_SYMBOL vmlinux 0x4918d880 dquot_acquire +EXPORT_SYMBOL vmlinux 0x493f49fe set_pages_array_wb +EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x499267bd xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49c018e5 devm_clk_put +EXPORT_SYMBOL vmlinux 0x49c8b3b8 bio_clone_fast +EXPORT_SYMBOL vmlinux 0x49cb04ff netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x49dd08ef nd_device_unregister +EXPORT_SYMBOL vmlinux 0x49f08cfb tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x49f36dd2 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x4a0bf33a blk_complete_request +EXPORT_SYMBOL vmlinux 0x4a0e275a ping_prot +EXPORT_SYMBOL vmlinux 0x4a18f74d contig_page_data +EXPORT_SYMBOL vmlinux 0x4a36ef92 file_path +EXPORT_SYMBOL vmlinux 0x4a44dcb4 irq_to_desc +EXPORT_SYMBOL vmlinux 0x4a54a8ef pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x4a619f83 memcpy +EXPORT_SYMBOL vmlinux 0x4a7aa2d0 uart_register_driver +EXPORT_SYMBOL vmlinux 0x4a819139 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x4a84e8e0 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x4a93bd5d d_find_any_alias +EXPORT_SYMBOL vmlinux 0x4a9f0099 freeze_super +EXPORT_SYMBOL vmlinux 0x4aa75766 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x4aaa6e5a rt6_lookup +EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk +EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b1b2beb acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x4b2e402d nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x4b3c0f71 pci_find_capability +EXPORT_SYMBOL vmlinux 0x4b3dff27 mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x4b4cb14d put_io_context +EXPORT_SYMBOL vmlinux 0x4b5a6f50 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x4b5b4f9b revalidate_disk +EXPORT_SYMBOL vmlinux 0x4b5c3c67 km_policy_notify +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b667176 lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x4b7eb28b skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x4b87c5b6 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x4b9dfb04 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x4b9e8799 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bc29c96 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x4bcf03a4 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x4be85a03 memweight +EXPORT_SYMBOL vmlinux 0x4bf2f302 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c0889b5 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x4c29dcbf cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x4c29f577 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x4c29f784 blk_fetch_request +EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr +EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf +EXPORT_SYMBOL vmlinux 0x4c6e4faf dma_find_channel +EXPORT_SYMBOL vmlinux 0x4c878322 iosf_mbi_modify +EXPORT_SYMBOL vmlinux 0x4c8fb1a8 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x4c926afb sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x4ca94b36 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x4cab6ca8 con_is_bound +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4cf35974 ns_capable +EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask +EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d52336e __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4dc34f72 path_nosuid +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4e2084c6 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x4e237ed9 pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e3781d4 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x4e3b1170 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0x4e3f9cbc sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x4e422a49 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x4e68c4a9 param_set_long +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e8439b9 vfs_link +EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4ee9a77a tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x4f0b771b scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f26ac28 bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x4f317041 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f46b4f2 d_set_d_op +EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x4f6041ef dns_query +EXPORT_SYMBOL vmlinux 0x4f639222 find_get_entry +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f6b400b _copy_from_user +EXPORT_SYMBOL vmlinux 0x4f6fe896 inet_frags_init +EXPORT_SYMBOL vmlinux 0x4f7696c3 console_stop +EXPORT_SYMBOL vmlinux 0x4f783f30 acpi_read +EXPORT_SYMBOL vmlinux 0x4f8b5ddb _copy_to_user +EXPORT_SYMBOL vmlinux 0x4f93d7bc devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0x4f9703cf xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x4f9c4d75 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x4fa4665c dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x4fb30eb1 tty_register_driver +EXPORT_SYMBOL vmlinux 0x4fb6140d register_netdevice +EXPORT_SYMBOL vmlinux 0x4fbea81a seq_hex_dump +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4ffbfe8a inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x5007f027 phy_init_eee +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5011ae68 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x5011e39b seq_path +EXPORT_SYMBOL vmlinux 0x5017e049 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x5021813e kernel_getsockname +EXPORT_SYMBOL vmlinux 0x503533a3 nvm_get_blk +EXPORT_SYMBOL vmlinux 0x504430d4 fb_pan_display +EXPORT_SYMBOL vmlinux 0x50529870 acpi_get_gpe_status +EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x5065954e ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x50676314 inet_offloads +EXPORT_SYMBOL vmlinux 0x5079d1d4 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x507f0160 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x5089ea48 lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method +EXPORT_SYMBOL vmlinux 0x509deb90 key_link +EXPORT_SYMBOL vmlinux 0x50adcd6b crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x50b0ebdb blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x50b66bcb radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x50b7f245 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x50b9b522 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x50c2f0f2 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del +EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x50eedeb8 printk +EXPORT_SYMBOL vmlinux 0x510c015d icmpv6_send +EXPORT_SYMBOL vmlinux 0x5114590d skb_append +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x51354509 dquot_quota_off +EXPORT_SYMBOL vmlinux 0x5158739d kern_path +EXPORT_SYMBOL vmlinux 0x51654e8a sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x51719973 dq_data_lock +EXPORT_SYMBOL vmlinux 0x5186518f profile_pc +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup +EXPORT_SYMBOL vmlinux 0x51fa3fa2 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x52095e19 acpi_get_data +EXPORT_SYMBOL vmlinux 0x520a73f7 d_tmpfile +EXPORT_SYMBOL vmlinux 0x5213ae47 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x525e026f acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0x52659d10 security_path_symlink +EXPORT_SYMBOL vmlinux 0x52677c08 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x526fcdfc sock_from_file +EXPORT_SYMBOL vmlinux 0x527130e2 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x527c0b35 netif_rx_ni +EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x529c8bba __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x52af562a __crc32c_le +EXPORT_SYMBOL vmlinux 0x52b5661c netpoll_print_options +EXPORT_SYMBOL vmlinux 0x52e25a53 __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x52f57dc9 follow_down +EXPORT_SYMBOL vmlinux 0x530b1e4c rdmsr_on_cpus +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x530c3916 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x530f95a5 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid +EXPORT_SYMBOL vmlinux 0x531e31dd scsi_scan_host +EXPORT_SYMBOL vmlinux 0x5322a790 blk_queue_split +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x53329fbb param_get_invbool +EXPORT_SYMBOL vmlinux 0x534b2f65 nd_iostat_end +EXPORT_SYMBOL vmlinux 0x5355cd2d skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off +EXPORT_SYMBOL vmlinux 0x5356b2ff wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x535cfc11 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x5360d394 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x53acbed3 skb_put +EXPORT_SYMBOL vmlinux 0x53c646be sock_kfree_s +EXPORT_SYMBOL vmlinux 0x53c7d57f __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x53cce8cd request_key +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x54244052 blk_end_request_all +EXPORT_SYMBOL vmlinux 0x543d8335 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x544b0c11 acpi_lid_notifier_register +EXPORT_SYMBOL vmlinux 0x5464d3f6 acpi_remove_sci_handler +EXPORT_SYMBOL vmlinux 0x54717604 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x548cd358 uart_get_divisor +EXPORT_SYMBOL vmlinux 0x54905a42 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x5491a0ba blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54ba04c4 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x54be2259 mount_ns +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54d9cd9f ilookup +EXPORT_SYMBOL vmlinux 0x54dc252f path_noexec +EXPORT_SYMBOL vmlinux 0x54df5974 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x54e4f079 mmc_fixup_device +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54ecb3e2 mpage_writepage +EXPORT_SYMBOL vmlinux 0x54f24d1a fence_default_wait +EXPORT_SYMBOL vmlinux 0x54fe3be4 touch_atime +EXPORT_SYMBOL vmlinux 0x5512d6df proc_symlink +EXPORT_SYMBOL vmlinux 0x551338df pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x551bedc7 fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x5552f205 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x55533b9d sock_wake_async +EXPORT_SYMBOL vmlinux 0x5561b842 backlight_force_update +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x556ef673 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x557aae38 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x55879874 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x558c3fee agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x5593d15e unregister_binfmt +EXPORT_SYMBOL vmlinux 0x559fce34 kobject_put +EXPORT_SYMBOL vmlinux 0x55a2342c mmc_release_host +EXPORT_SYMBOL vmlinux 0x55bd7c84 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55d961e2 blk_mq_all_tag_busy_iter +EXPORT_SYMBOL vmlinux 0x55de79e1 nobh_write_end +EXPORT_SYMBOL vmlinux 0x55e60a36 queued_spin_unlock_wait +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x563e08ca blk_get_request +EXPORT_SYMBOL vmlinux 0x5641419b wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x56434345 build_skb +EXPORT_SYMBOL vmlinux 0x5676a3e5 intel_scu_ipc_ioread8 +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x56999504 sync_inode +EXPORT_SYMBOL vmlinux 0x56b586dc __blk_end_request +EXPORT_SYMBOL vmlinux 0x56ba61f2 set_pages_array_uc +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56f6d621 tcp_init_cgroup +EXPORT_SYMBOL vmlinux 0x56fc1cf3 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x5701a98d mem_map +EXPORT_SYMBOL vmlinux 0x5705088a __vmalloc +EXPORT_SYMBOL vmlinux 0x5706637e sk_receive_skb +EXPORT_SYMBOL vmlinux 0x571c8ea9 dma_mmap_from_coherent +EXPORT_SYMBOL vmlinux 0x571cc60b md_flush_request +EXPORT_SYMBOL vmlinux 0x572497b1 pci_platform_rom +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x5733f61f dmam_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0x574545e2 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x574937b1 current_task +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x5759667b try_module_get +EXPORT_SYMBOL vmlinux 0x575af70c on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x57803942 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x579f3248 file_remove_privs +EXPORT_SYMBOL vmlinux 0x579fbcd2 cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x57b30f3a read_cache_pages +EXPORT_SYMBOL vmlinux 0x57ba72ab fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x57c51a6b blk_stack_limits +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x58322492 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x584738f9 rdmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x5849ac57 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x584d6304 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep +EXPORT_SYMBOL vmlinux 0x58604e4d alloc_iova_mem +EXPORT_SYMBOL vmlinux 0x586103be acpi_setup_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58fef6f8 ist_info +EXPORT_SYMBOL vmlinux 0x5905d860 vm_stat +EXPORT_SYMBOL vmlinux 0x592717b7 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x5928042a tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x5944d015 __cachemode2pte_tbl +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x594e22f8 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x5954bfbb twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x5963fe71 elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x5964a507 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x597c02b4 blk_init_queue_node +EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59ab1623 dev_alert +EXPORT_SYMBOL vmlinux 0x59af06f9 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x59b0d85c blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x59b2d91e d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x59bc9609 acpi_write_bit_register +EXPORT_SYMBOL vmlinux 0x59c0baa9 tc_classify +EXPORT_SYMBOL vmlinux 0x59cf2a26 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x59e66ea3 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x59e8f569 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x59eb294d jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x59f200bd pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a10f8db unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x5a201c21 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x5a2a7961 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x5a3aafd0 ether_setup +EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 +EXPORT_SYMBOL vmlinux 0x5a4c9d3f md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x5a5ecf65 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0x5a6184b0 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x5a685aa9 param_get_uint +EXPORT_SYMBOL vmlinux 0x5a6c56fa __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x5a82c44a complete_and_exit +EXPORT_SYMBOL vmlinux 0x5aa38303 from_kuid_munged +EXPORT_SYMBOL vmlinux 0x5ac376a5 acpi_install_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x5ac900b3 agp_backend_release +EXPORT_SYMBOL vmlinux 0x5ace80b7 security_task_getsecid +EXPORT_SYMBOL vmlinux 0x5ad67fed freezing_slow_path +EXPORT_SYMBOL vmlinux 0x5ad80a24 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x5af487c3 seq_puts +EXPORT_SYMBOL vmlinux 0x5af5fdd6 update_region +EXPORT_SYMBOL vmlinux 0x5af6d1c5 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x5afef6a7 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b0a7da6 sget +EXPORT_SYMBOL vmlinux 0x5b0b3635 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x5b117a7f skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem +EXPORT_SYMBOL vmlinux 0x5b28d4c4 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0x5b2ac96c agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0x5b2d78a5 tcp_prequeue +EXPORT_SYMBOL vmlinux 0x5b40f6d2 twl6040_power +EXPORT_SYMBOL vmlinux 0x5b44e39f open_exec +EXPORT_SYMBOL vmlinux 0x5b4fa1bf mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x5b5ee7da ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x5b8871b3 keyring_search +EXPORT_SYMBOL vmlinux 0x5b8cc252 sock_no_accept +EXPORT_SYMBOL vmlinux 0x5b8d390b alloc_disk_node +EXPORT_SYMBOL vmlinux 0x5bba1c45 blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0x5bbbe152 swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x5bc8d583 copy_from_user_overflow +EXPORT_SYMBOL vmlinux 0x5bd48a5c simple_transaction_get +EXPORT_SYMBOL vmlinux 0x5bdfc162 do_splice_to +EXPORT_SYMBOL vmlinux 0x5bf42552 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x5c00bc64 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x5c0442fd acpi_gbl_FADT +EXPORT_SYMBOL vmlinux 0x5c0a9161 tcp_filter +EXPORT_SYMBOL vmlinux 0x5c113377 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x5c156b7c security_path_unlink +EXPORT_SYMBOL vmlinux 0x5c17d606 unlock_rename +EXPORT_SYMBOL vmlinux 0x5c253462 neigh_table_init +EXPORT_SYMBOL vmlinux 0x5c2d7f0f mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0x5c30c8be eth_gro_complete +EXPORT_SYMBOL vmlinux 0x5c487ceb agp_backend_acquire +EXPORT_SYMBOL vmlinux 0x5c527544 dev_set_group +EXPORT_SYMBOL vmlinux 0x5c545234 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x5c9dd541 dquot_resume +EXPORT_SYMBOL vmlinux 0x5c9def53 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x5cc65e13 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x5cdb66a2 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x5cdcf53a t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x5cee0d57 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5d051367 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x5d0d40b7 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x5d20ee97 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x5d2e0057 x86_hyper_ms_hyperv +EXPORT_SYMBOL vmlinux 0x5d3a04bc peernet2id_alloc +EXPORT_SYMBOL vmlinux 0x5d46ef71 deactivate_super +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d5b3f7e vme_slot_num +EXPORT_SYMBOL vmlinux 0x5d65c7ca datagram_poll +EXPORT_SYMBOL vmlinux 0x5d74dbcf pnp_range_reserved +EXPORT_SYMBOL vmlinux 0x5d8475e0 completion_done +EXPORT_SYMBOL vmlinux 0x5db77d4d shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x5dbb2936 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0x5dc0a39d dquot_commit +EXPORT_SYMBOL vmlinux 0x5dc3a827 uart_update_timeout +EXPORT_SYMBOL vmlinux 0x5dc5ad0a __sb_end_write +EXPORT_SYMBOL vmlinux 0x5dce56ee get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x5dd9e14f remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x5df70b31 __init_rwsem +EXPORT_SYMBOL vmlinux 0x5dffb9b0 x86_hyper_vmware +EXPORT_SYMBOL vmlinux 0x5e1fa775 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x5e284106 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x5e417e44 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x5e717f5a acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes +EXPORT_SYMBOL vmlinux 0x5e88c0a5 blk_finish_request +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e99f367 component_match_add +EXPORT_SYMBOL vmlinux 0x5e9b4838 scmd_printk +EXPORT_SYMBOL vmlinux 0x5ea95c59 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed79417 bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0x5ed975e5 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f1a4ccf intel_scu_ipc_update_register +EXPORT_SYMBOL vmlinux 0x5f7cc239 inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0x5f814c65 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x5f84aa62 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x5faa8b55 nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x5fb2e8ef idr_init +EXPORT_SYMBOL vmlinux 0x5fb9c441 __register_nls +EXPORT_SYMBOL vmlinux 0x5fced5f0 tty_port_put +EXPORT_SYMBOL vmlinux 0x5fd268cb radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x5fd77597 set_pages_uc +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5fdbcfb9 d_make_root +EXPORT_SYMBOL vmlinux 0x5fee46f6 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x5fef8c23 get_user_pages +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x600bccde dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x60260e65 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x602ed00d acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x604316d8 acpi_finish_gpe +EXPORT_SYMBOL vmlinux 0x604cca46 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x606b7530 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x609b4384 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60b480f6 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x60b48457 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x60b86f61 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x60d72e80 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x60dcfbbd __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x60fd2a74 agp_free_memory +EXPORT_SYMBOL vmlinux 0x610aaa40 mempool_destroy +EXPORT_SYMBOL vmlinux 0x610c3b74 iput +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x61396292 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x618cd077 __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x619fd45e blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x61ab417a free_task +EXPORT_SYMBOL vmlinux 0x61b3560c cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x61b676ee agp_bind_memory +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61b8df09 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x61ca19d3 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x61d13a42 inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0x61d809ae pci_set_mwi +EXPORT_SYMBOL vmlinux 0x61fa5736 set_blocksize +EXPORT_SYMBOL vmlinux 0x62049256 acpi_disable +EXPORT_SYMBOL vmlinux 0x62090140 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x621b95d5 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x6220b4a2 crc32_le +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6226b9fa machine_to_phys_mapping +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x622a9f0c tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x6237f6b5 acpi_enable_event +EXPORT_SYMBOL vmlinux 0x6241a2ab __copy_from_user_ll_nocache +EXPORT_SYMBOL vmlinux 0x624737bb i8042_install_filter +EXPORT_SYMBOL vmlinux 0x625c75ec get_empty_filp +EXPORT_SYMBOL vmlinux 0x625d379b inet6_offloads +EXPORT_SYMBOL vmlinux 0x6262c412 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x6270d948 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x6294fdb3 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x629d2ebc generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x629d3587 agp_copy_info +EXPORT_SYMBOL vmlinux 0x62a2aa43 bdget_disk +EXPORT_SYMBOL vmlinux 0x62add46e ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x62e24ddb security_path_rmdir +EXPORT_SYMBOL vmlinux 0x6308ee55 bio_integrity_free +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x631aa17d iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x631dc3c3 qdisc_reset +EXPORT_SYMBOL vmlinux 0x6331744a inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x636a5691 acpi_register_ioapic +EXPORT_SYMBOL vmlinux 0x63721516 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0x637a5879 mmc_get_card +EXPORT_SYMBOL vmlinux 0x6383530c mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x6388591c down_timeout +EXPORT_SYMBOL vmlinux 0x638b25f9 netif_napi_add +EXPORT_SYMBOL vmlinux 0x638cccd5 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x63907ca4 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x63a01291 acpi_leave_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x63a1b548 audit_log_task_info +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63cd51ae tcp_disconnect +EXPORT_SYMBOL vmlinux 0x63d57a95 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x63e4e79e acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63eeef4a tcp_child_process +EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x640ba484 send_sig_info +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x64170d27 param_get_string +EXPORT_SYMBOL vmlinux 0x6418a37f complete_request_key +EXPORT_SYMBOL vmlinux 0x64194b4e bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x641f032f blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x641f24ff neigh_app_ns +EXPORT_SYMBOL vmlinux 0x64233278 phy_start_interrupts +EXPORT_SYMBOL vmlinux 0x643fc055 blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0x6449fd41 acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0x646dbce7 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x649e3310 km_state_expired +EXPORT_SYMBOL vmlinux 0x64a4b84d cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x64ab0e98 wait_for_completion +EXPORT_SYMBOL vmlinux 0x64b400c8 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x64b533fa agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0x64e65240 sync_filesystem +EXPORT_SYMBOL vmlinux 0x64eae7ad set_memory_array_wb +EXPORT_SYMBOL vmlinux 0x64fa7693 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0x650178f3 dquot_drop +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x65216eea inode_init_owner +EXPORT_SYMBOL vmlinux 0x6525c4f6 dentry_open +EXPORT_SYMBOL vmlinux 0x6537a1a5 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x654b8ad1 sk_wait_data +EXPORT_SYMBOL vmlinux 0x654dff6c dquot_commit_info +EXPORT_SYMBOL vmlinux 0x655f1ab0 set_memory_array_wc +EXPORT_SYMBOL vmlinux 0x6565d33f scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x6571adc7 devm_iounmap +EXPORT_SYMBOL vmlinux 0x65804491 request_key_async +EXPORT_SYMBOL vmlinux 0x659d8b10 __lock_buffer +EXPORT_SYMBOL vmlinux 0x659e1fd1 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x65a295bb atomic64_xchg_cx8 +EXPORT_SYMBOL vmlinux 0x65b992ac xen_alloc_p2m_entry +EXPORT_SYMBOL vmlinux 0x65c2d0d4 md_reload_sb +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65e2f7c5 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x6621d9fb __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x662df26c set_security_override +EXPORT_SYMBOL vmlinux 0x6632ca35 xfrm_input +EXPORT_SYMBOL vmlinux 0x66355efc vprintk +EXPORT_SYMBOL vmlinux 0x663f7cd0 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0x667e4e80 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x669bf80b proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x66b603aa km_is_alive +EXPORT_SYMBOL vmlinux 0x66c8a0d9 make_kuid +EXPORT_SYMBOL vmlinux 0x66d804b1 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x6702b610 abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x670f3989 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x67485206 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x6753c251 set_pages_x +EXPORT_SYMBOL vmlinux 0x675bed91 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x67655eee __vfs_read +EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create +EXPORT_SYMBOL vmlinux 0x678a0bf8 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x67936b72 pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0x67a2a6e6 blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67c86072 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x67cd4a12 vme_register_bridge +EXPORT_SYMBOL vmlinux 0x67e01c9c fb_blank +EXPORT_SYMBOL vmlinux 0x67e3461e block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x67fabb9b make_kgid +EXPORT_SYMBOL vmlinux 0x68018f84 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x680ec266 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x6831e403 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x6834ccc1 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x683bb9cc filemap_flush +EXPORT_SYMBOL vmlinux 0x68431299 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x68512eec inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x685ae751 sock_efree +EXPORT_SYMBOL vmlinux 0x68632863 page_follow_link_light +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x6897c802 processors +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x68c00e2a serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x68c96d3b serio_open +EXPORT_SYMBOL vmlinux 0x68d5b35d icmp_send +EXPORT_SYMBOL vmlinux 0x68d73d9e free_page_put_link +EXPORT_SYMBOL vmlinux 0x69056b79 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x691001b5 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x69152a97 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x69195328 tso_build_data +EXPORT_SYMBOL vmlinux 0x691b86de pci_map_rom +EXPORT_SYMBOL vmlinux 0x69620690 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x69644895 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x69666e2f bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x69684b64 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x696a272d dentry_update_name_case +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x69759c81 mmc_start_bkops +EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 +EXPORT_SYMBOL vmlinux 0x698f66ec filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69b0cefc iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0x69cea9b8 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x69dae755 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x69ebd8e7 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x69ec219f new_inode +EXPORT_SYMBOL vmlinux 0x69fd2a05 param_set_copystring +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a27bfce csum_partial_copy_generic +EXPORT_SYMBOL vmlinux 0x6a298f6b generic_perform_write +EXPORT_SYMBOL vmlinux 0x6a2baf6f dst_destroy +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a60277d acpi_buffer_to_resource +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6a8da28f mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0x6ab79948 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x6abaa218 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be +EXPORT_SYMBOL vmlinux 0x6ad43b21 dev_close +EXPORT_SYMBOL vmlinux 0x6ad85887 acpi_enable_gpe +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6afba7a2 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x6b063264 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b092121 kmap_to_page +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b2ef042 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x6b35dacd blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x6b599591 genlmsg_put +EXPORT_SYMBOL vmlinux 0x6b67a11c param_ops_ulong +EXPORT_SYMBOL vmlinux 0x6b74b9be bit_waitqueue +EXPORT_SYMBOL vmlinux 0x6b863697 mmc_put_card +EXPORT_SYMBOL vmlinux 0x6b8abc8b max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x6bb5a639 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bc84f50 path_is_under +EXPORT_SYMBOL vmlinux 0x6bcbdd37 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x6bcf066d _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6bf1c17f pv_lock_ops +EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer +EXPORT_SYMBOL vmlinux 0x6c1624a5 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn +EXPORT_SYMBOL vmlinux 0x6c1dc0e7 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x6c2acfd6 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x6c2e3320 strncmp +EXPORT_SYMBOL vmlinux 0x6c2e9e26 make_bad_inode +EXPORT_SYMBOL vmlinux 0x6c393d6a pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c7079b0 set_create_files_as +EXPORT_SYMBOL vmlinux 0x6c7218ea ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x6c7c65b3 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x6cb1dd51 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x6cb6a9c4 mount_single +EXPORT_SYMBOL vmlinux 0x6cb8261d tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x6cbed8e1 fs_bio_set +EXPORT_SYMBOL vmlinux 0x6cc6d173 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6cea04a6 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d132cbb param_ops_uint +EXPORT_SYMBOL vmlinux 0x6d1d5d9b iosf_mbi_write +EXPORT_SYMBOL vmlinux 0x6d278b43 __bforget +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d334118 __get_user_8 +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d5342f0 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x6d571757 generic_setlease +EXPORT_SYMBOL vmlinux 0x6d688032 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x6d7c9b7e twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x6d94a130 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x6da7375b security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x6dac24fc __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x6dc0c9dc down_interruptible +EXPORT_SYMBOL vmlinux 0x6dc6dd56 down +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e02e4b4 skb_seq_read +EXPORT_SYMBOL vmlinux 0x6e2d446c input_get_keycode +EXPORT_SYMBOL vmlinux 0x6e3d0022 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x6e4be59d devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0x6e58b357 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x6e6514ed radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6e710cf2 skb_push +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e76917a nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x6e7eb673 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6e9e538a kernel_accept +EXPORT_SYMBOL vmlinux 0x6eade59c dm_register_target +EXPORT_SYMBOL vmlinux 0x6ed28bc1 lock_sock_fast +EXPORT_SYMBOL vmlinux 0x6edebaae msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x6ef66e8a _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x6efb2df1 account_page_redirty +EXPORT_SYMBOL vmlinux 0x6f0b5e2d pci_set_master +EXPORT_SYMBOL vmlinux 0x6f1bf786 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash +EXPORT_SYMBOL vmlinux 0x6f2e4f46 __cond_resched_lock +EXPORT_SYMBOL vmlinux 0x6f42a26a blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0x6f4e4e3b mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0x6f51805f vfs_writev +EXPORT_SYMBOL vmlinux 0x6f556bdb acpi_get_gpe_device +EXPORT_SYMBOL vmlinux 0x6f6ced07 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x6f86d841 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6f92bcd3 abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x6fa77580 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd2284c i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x6fdcf471 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x6feb2039 acpi_write +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x7029f11b iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0x7029f4fb netdev_master_upper_dev_link_private +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x70588e9e nlmsg_notify +EXPORT_SYMBOL vmlinux 0x7062b4cd cmdline_parts_free +EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync +EXPORT_SYMBOL vmlinux 0x706eed66 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x70716f9e block_read_full_page +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x7086e473 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x7088ce72 printk_emit +EXPORT_SYMBOL vmlinux 0x708a79f7 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x709d16f5 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x70aeb700 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x70be2a10 nf_log_unset +EXPORT_SYMBOL vmlinux 0x70c32609 lro_flush_all +EXPORT_SYMBOL vmlinux 0x70ce5c10 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x70d1f8f3 strncat +EXPORT_SYMBOL vmlinux 0x70d8ab82 acpi_acquire_global_lock +EXPORT_SYMBOL vmlinux 0x70db7236 vfs_setpos +EXPORT_SYMBOL vmlinux 0x70df7a4b skb_clone +EXPORT_SYMBOL vmlinux 0x70e51090 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x70ea8058 clkdev_alloc +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x70fa8958 bio_add_page +EXPORT_SYMBOL vmlinux 0x70fbe08b skb_copy_bits +EXPORT_SYMBOL vmlinux 0x7102b930 register_filesystem +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x712ed37b radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x714886da kobject_init +EXPORT_SYMBOL vmlinux 0x71499448 agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0x715b038d mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x7195aaac d_drop +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71be74c9 __blk_end_request_all +EXPORT_SYMBOL vmlinux 0x71c23196 inet6_release +EXPORT_SYMBOL vmlinux 0x71f65175 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x71fa2ad5 phy_device_remove +EXPORT_SYMBOL vmlinux 0x71fae4d2 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x7200110a netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x7200c3c8 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x7224698e try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x724a1a6c scsi_host_set_state +EXPORT_SYMBOL vmlinux 0x724f8d19 block_write_full_page +EXPORT_SYMBOL vmlinux 0x7255d63e alloc_disk +EXPORT_SYMBOL vmlinux 0x7294b8fa tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72c64733 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x72c726b5 consume_skb +EXPORT_SYMBOL vmlinux 0x72d58de9 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x72d5df07 generic_fillattr +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72ff94b6 nvm_dev_factory +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x731943a6 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x731c0dc3 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x73366506 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay +EXPORT_SYMBOL vmlinux 0x7368b99e jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x7383f3ce mb_cache_shrink +EXPORT_SYMBOL vmlinux 0x738714db ida_pre_get +EXPORT_SYMBOL vmlinux 0x738803e6 strnlen +EXPORT_SYMBOL vmlinux 0x739c99a3 __nd_driver_register +EXPORT_SYMBOL vmlinux 0x73bd93fc d_find_alias +EXPORT_SYMBOL vmlinux 0x73d49cbf phy_device_free +EXPORT_SYMBOL vmlinux 0x73db8dbe reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable +EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy +EXPORT_SYMBOL vmlinux 0x73e6d1fa nvm_get_blk_unlocked +EXPORT_SYMBOL vmlinux 0x73fc93f8 dev_change_flags +EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7413793a EISA_bus +EXPORT_SYMBOL vmlinux 0x7418fba0 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x7421627e unregister_nls +EXPORT_SYMBOL vmlinux 0x74224853 d_lookup +EXPORT_SYMBOL vmlinux 0x743b4ae3 atomic64_inc_not_zero_cx8 +EXPORT_SYMBOL vmlinux 0x744a01be ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x745f20a3 idr_is_empty +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x74ba2a11 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x74c0e55f iterate_fd +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74ca5ac5 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x74e5c98f ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74e92104 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv +EXPORT_SYMBOL vmlinux 0x75177d26 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x751bc9f0 simple_getattr +EXPORT_SYMBOL vmlinux 0x75271716 save_processor_state +EXPORT_SYMBOL vmlinux 0x7531e3dc acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x753ef01b locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x7547a386 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x75491632 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x75511054 blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x7552739f rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0x75574c68 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x75749369 bioset_create +EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 +EXPORT_SYMBOL vmlinux 0x75b59e14 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x75bc549a x86_cpu_to_apicid +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75d21809 vprintk_emit +EXPORT_SYMBOL vmlinux 0x75d93c4b i2c_master_recv +EXPORT_SYMBOL vmlinux 0x75eb953a scsi_scan_target +EXPORT_SYMBOL vmlinux 0x75fb3401 __kernel_write +EXPORT_SYMBOL vmlinux 0x75fbdefd acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x76046269 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x7607c40d dev_alloc_name +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x76127192 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x761dc4d7 ipv4_specific +EXPORT_SYMBOL vmlinux 0x762add85 atomic64_inc_return_cx8 +EXPORT_SYMBOL vmlinux 0x762ff44a inet_shutdown +EXPORT_SYMBOL vmlinux 0x763654b9 neigh_destroy +EXPORT_SYMBOL vmlinux 0x763680d3 scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x76479fe1 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x764bd77c request_resource +EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc +EXPORT_SYMBOL vmlinux 0x767fda54 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x769e06d7 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x76ae215a __nla_reserve +EXPORT_SYMBOL vmlinux 0x76c51d71 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x76c9448c lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0x76cbe59d dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76d4d98e blk_delay_queue +EXPORT_SYMBOL vmlinux 0x76d9bf11 crc32_be +EXPORT_SYMBOL vmlinux 0x76f40a90 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x76f6c5ef kmalloc_order +EXPORT_SYMBOL vmlinux 0x76ff6592 __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0x770a0036 isapnp_cfg_begin +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir +EXPORT_SYMBOL vmlinux 0x774b19b7 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x77513494 netif_rx +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77a4870c mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0x77a6f917 posix_lock_file +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77c5600b pci_claim_resource +EXPORT_SYMBOL vmlinux 0x77de55c9 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x77effdf2 kernel_read +EXPORT_SYMBOL vmlinux 0x7801adee neigh_seq_start +EXPORT_SYMBOL vmlinux 0x780fdfd1 intel_enable_gtt +EXPORT_SYMBOL vmlinux 0x7818ff00 proc_douintvec +EXPORT_SYMBOL vmlinux 0x7820295e get_io_context +EXPORT_SYMBOL vmlinux 0x782567ec memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x7831c24d nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0x78362427 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x783b977a kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x7865c311 vga_tryget +EXPORT_SYMBOL vmlinux 0x786ee510 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x7880dd69 phy_find_first +EXPORT_SYMBOL vmlinux 0x788aae76 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x788b0523 simple_open +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x789c7b51 vm_insert_page +EXPORT_SYMBOL vmlinux 0x78a5ff8a fence_add_callback +EXPORT_SYMBOL vmlinux 0x78b6ba33 try_to_release_page +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e739aa up +EXPORT_SYMBOL vmlinux 0x78f63a25 cad_pid +EXPORT_SYMBOL vmlinux 0x78ff0f7b generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x7901b4f2 bio_map_kern +EXPORT_SYMBOL vmlinux 0x79068fda acpi_install_method +EXPORT_SYMBOL vmlinux 0x790aebd3 blk_queue_bounce +EXPORT_SYMBOL vmlinux 0x791ed1c9 rename_lock +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x79882e06 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79bf1ce9 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x7a2add7d current_kernel_time64 +EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number +EXPORT_SYMBOL vmlinux 0x7a2c6758 cfb_copyarea +EXPORT_SYMBOL vmlinux 0x7a356e5c mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a5371a0 simple_fill_super +EXPORT_SYMBOL vmlinux 0x7a82cb47 rdmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x7a86d214 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x7a8dab15 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7ab627de dquot_disable +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ac24ca5 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x7acc2ed9 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x7accce24 kobject_del +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ad6981c skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x7ad9a833 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x7aec9089 clear_user +EXPORT_SYMBOL vmlinux 0x7af48e5a ps2_init +EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf +EXPORT_SYMBOL vmlinux 0x7afb3a3f tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x7b11130a padata_free +EXPORT_SYMBOL vmlinux 0x7b134ddf acpi_get_name +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b19fce3 kmap_atomic +EXPORT_SYMBOL vmlinux 0x7b1ade38 lz4_decompress +EXPORT_SYMBOL vmlinux 0x7b26c190 skb_checksum +EXPORT_SYMBOL vmlinux 0x7b279e9e bio_advance +EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x7b4e0ccb put_filp +EXPORT_SYMBOL vmlinux 0x7b52a859 wrmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap +EXPORT_SYMBOL vmlinux 0x7b62971d tty_mutex +EXPORT_SYMBOL vmlinux 0x7b767909 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x7b95c3d6 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x7bad7a1a acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x7bd800e3 fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0x7be74eeb jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x7be901e0 inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0x7bf31d80 fd_install +EXPORT_SYMBOL vmlinux 0x7bf79fe7 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x7c10918c pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c179baa xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x7c22cb16 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x7c3fc5e6 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c5c558f dev_get_stats +EXPORT_SYMBOL vmlinux 0x7c61340c __release_region +EXPORT_SYMBOL vmlinux 0x7c69f2c7 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x7c84eaf1 pnp_get_resource +EXPORT_SYMBOL vmlinux 0x7c891c08 bitmap_unplug +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7caf2777 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cb3dd12 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x7cba2f6c vfs_unlink +EXPORT_SYMBOL vmlinux 0x7cbbdfc1 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x7cd27c1c iterate_mounts +EXPORT_SYMBOL vmlinux 0x7cdb6349 kern_unmount +EXPORT_SYMBOL vmlinux 0x7ce01d0a posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce83365 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7d07606f vga_client_register +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d1c0ba7 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x7d295c8d sk_mc_loop +EXPORT_SYMBOL vmlinux 0x7d31a696 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x7d344fc4 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x7d51a527 add_disk +EXPORT_SYMBOL vmlinux 0x7d5ff942 blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d94f746 acpi_os_write_port +EXPORT_SYMBOL vmlinux 0x7d96cea3 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x7db3fd28 rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0x7dbc2e57 mmiotrace_printk +EXPORT_SYMBOL vmlinux 0x7dc2c36a inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x7dc8603f bdi_register_dev +EXPORT_SYMBOL vmlinux 0x7dde9600 backlight_device_register +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7df80178 xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0x7e42472b mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x7e464bdb pci_get_device +EXPORT_SYMBOL vmlinux 0x7e4c4347 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x7e50c018 dst_alloc +EXPORT_SYMBOL vmlinux 0x7e55c63c __scm_send +EXPORT_SYMBOL vmlinux 0x7e5c35b1 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x7e7fc3fb __wake_up_bit +EXPORT_SYMBOL vmlinux 0x7e9cf62b km_new_mapping +EXPORT_SYMBOL vmlinux 0x7ea2e26f netif_carrier_on +EXPORT_SYMBOL vmlinux 0x7eb83afb vfs_mknod +EXPORT_SYMBOL vmlinux 0x7ec1c9db uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x7ec3c5fe param_set_bool +EXPORT_SYMBOL vmlinux 0x7ecb001b __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7ee73c0c memcg_socket_limit_enabled +EXPORT_SYMBOL vmlinux 0x7eea2e2e pci_iounmap +EXPORT_SYMBOL vmlinux 0x7ef164c3 scsi_add_device +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f252a6f set_anon_super +EXPORT_SYMBOL vmlinux 0x7f309f23 cdrom_release +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f6655ba blk_requeue_request +EXPORT_SYMBOL vmlinux 0x7f66f18c input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x7f670b20 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x7f7b6b26 soft_cursor +EXPORT_SYMBOL vmlinux 0x7f9f0a87 cpu_tss +EXPORT_SYMBOL vmlinux 0x7fabb97e vfs_readf +EXPORT_SYMBOL vmlinux 0x7fad8a59 simple_write_begin +EXPORT_SYMBOL vmlinux 0x7fc6ad4f sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7ff66174 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x800b9ab1 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x800fc657 blk_peek_request +EXPORT_SYMBOL vmlinux 0x80244f16 ilookup5 +EXPORT_SYMBOL vmlinux 0x8057586f ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x80890177 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x809388ca idr_destroy +EXPORT_SYMBOL vmlinux 0x80c503e1 pagecache_get_page +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80cff739 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80d9ca85 paravirt_ticketlocks_enabled +EXPORT_SYMBOL vmlinux 0x80e2565a balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x80eb423b acpi_get_object_info +EXPORT_SYMBOL vmlinux 0x80fbb988 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x810c088b freeze_bdev +EXPORT_SYMBOL vmlinux 0x81144f9d idr_find_slowpath +EXPORT_SYMBOL vmlinux 0x811d16d8 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x812eadad led_blink_set +EXPORT_SYMBOL vmlinux 0x8141da09 start_tty +EXPORT_SYMBOL vmlinux 0x81472677 acpi_get_table +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x814f5b22 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815c56d0 cpu_present_mask +EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page +EXPORT_SYMBOL vmlinux 0x81671b51 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x817e17c2 generic_listxattr +EXPORT_SYMBOL vmlinux 0x81841eef dup_iter +EXPORT_SYMBOL vmlinux 0x81904704 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x819c84bc jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x81ac315a get_fs_type +EXPORT_SYMBOL vmlinux 0x81bb667b xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x81bf9dfe pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x81c3ca40 vfs_whiteout +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e3eb31 pcim_iomap +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x820d5edf tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x8212721d xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0x82308aaf inode_get_bytes +EXPORT_SYMBOL vmlinux 0x8235805b memmove +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x8272f4f9 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x829534b3 fence_free +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82b85738 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x82cb9ae5 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x82d64e2e dcache_dir_open +EXPORT_SYMBOL vmlinux 0x82e21cb5 skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x82e550ba ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x82f4fdea kfree_put_link +EXPORT_SYMBOL vmlinux 0x82ff85a7 __elv_add_request +EXPORT_SYMBOL vmlinux 0x8303406c i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x830e547b ioremap_prot +EXPORT_SYMBOL vmlinux 0x8310acce jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0x831a7b4f dump_trace +EXPORT_SYMBOL vmlinux 0x8329e6f0 memset +EXPORT_SYMBOL vmlinux 0x832fa791 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x833c03aa acpi_enable_all_runtime_gpes +EXPORT_SYMBOL vmlinux 0x835ecf22 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x836dfd93 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x8372cd2f __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x8382e59a acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0x838bb3a2 blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0x839245f0 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83bb7a12 vga_switcheroo_fini_domain_pm_ops +EXPORT_SYMBOL vmlinux 0x83c4c8e0 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83cdc700 pnpbios_protocol +EXPORT_SYMBOL vmlinux 0x83e49c97 check_disk_size_change +EXPORT_SYMBOL vmlinux 0x840127bf nf_unregister_hook +EXPORT_SYMBOL vmlinux 0x84037678 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x84060081 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x84169642 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x8417f512 acpi_update_all_gpes +EXPORT_SYMBOL vmlinux 0x8419dfb2 tcf_register_action +EXPORT_SYMBOL vmlinux 0x841e348b splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x8422a78a fb_get_mode +EXPORT_SYMBOL vmlinux 0x842d251a dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x842e9c55 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x843a3eb6 inet6_getname +EXPORT_SYMBOL vmlinux 0x844f84b9 pci_match_id +EXPORT_SYMBOL vmlinux 0x845eb389 invalidate_partition +EXPORT_SYMBOL vmlinux 0x847616e4 pnp_stop_dev +EXPORT_SYMBOL vmlinux 0x847e2d23 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x84894cdc zpool_register_driver +EXPORT_SYMBOL vmlinux 0x84a79439 dquot_initialize +EXPORT_SYMBOL vmlinux 0x84c0811a scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x84c1d69d tcp_make_synack +EXPORT_SYMBOL vmlinux 0x84c4df2e dev_uc_sync +EXPORT_SYMBOL vmlinux 0x84ee35ff posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x84ef3e5f filp_close +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x851c9dcc vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x8526c35a remove_wait_queue +EXPORT_SYMBOL vmlinux 0x8542a1ca ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x85647726 tcp_poll +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x857582f7 acpi_enable_all_wakeup_gpes +EXPORT_SYMBOL vmlinux 0x85873582 generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x858b3fe3 free_iova_mem +EXPORT_SYMBOL vmlinux 0x85b3c06e get_mm_exe_file +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e57074 inet_ioctl +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85f2f44c register_key_type +EXPORT_SYMBOL vmlinux 0x86182550 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x861e22a4 acpi_map_cpu +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x8652ea77 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x865d263c tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x865fda14 tcp_prot +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x868acacc framebuffer_release +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86a4889a kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x86ae26dc elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x86d6b80a kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x86f2795c pci_disable_msix +EXPORT_SYMBOL vmlinux 0x86f28a1f agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x870111a0 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x8708fdfe blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x8718b556 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x8743a221 agp_create_memory +EXPORT_SYMBOL vmlinux 0x875e61cd inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x876481cd dev_uc_flush +EXPORT_SYMBOL vmlinux 0x876dafc3 ec_write +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x878cd015 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x8791d2ae proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x87a63dff netlink_ack +EXPORT_SYMBOL vmlinux 0x87aaddf8 wrmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0x87b76376 input_close_device +EXPORT_SYMBOL vmlinux 0x87d8b67c replace_mount_options +EXPORT_SYMBOL vmlinux 0x88139033 udp_proc_register +EXPORT_SYMBOL vmlinux 0x88140212 blk_get_queue +EXPORT_SYMBOL vmlinux 0x88171bfa key_reject_and_link +EXPORT_SYMBOL vmlinux 0x882600b2 update_devfreq +EXPORT_SYMBOL vmlinux 0x8836f4a7 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x888794a9 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x88a0a193 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x88d13b5d vga_switcheroo_register_audio_client +EXPORT_SYMBOL vmlinux 0x88d37e58 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x88f1289f inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0x88f4934d inet_release +EXPORT_SYMBOL vmlinux 0x892b26a0 set_memory_nx +EXPORT_SYMBOL vmlinux 0x895c83c6 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x8969f514 blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89c59eec mmc_add_host +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89f6ae72 inet_add_offload +EXPORT_SYMBOL vmlinux 0x8a03ca44 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x8a041ef5 write_inode_now +EXPORT_SYMBOL vmlinux 0x8a0b12c6 complete_all +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a3bd853 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a4eefcf agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a5830c2 cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x8a6944f9 percpu_counter_set +EXPORT_SYMBOL vmlinux 0x8a6e00bb padata_add_cpu +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a80d7a5 acpi_error +EXPORT_SYMBOL vmlinux 0x8a949bc9 elv_add_request +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8a9e45eb poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x8ab64c53 skb_insert +EXPORT_SYMBOL vmlinux 0x8ab74a7c ppp_input_error +EXPORT_SYMBOL vmlinux 0x8abb9a79 scsi_register +EXPORT_SYMBOL vmlinux 0x8acdb3c3 kill_pid +EXPORT_SYMBOL vmlinux 0x8ae8c0fd blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x8b02ebf7 sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x8b0aa68a hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x8b16b4bf kmem_cache_free +EXPORT_SYMBOL vmlinux 0x8b17c150 pagecache_write_end +EXPORT_SYMBOL vmlinux 0x8b18496f __copy_to_user_ll +EXPORT_SYMBOL vmlinux 0x8b2f1563 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b38830e block_commit_write +EXPORT_SYMBOL vmlinux 0x8b3c6761 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b4a001b vga_switcheroo_init_domain_pm_optimus_hdmi_audio +EXPORT_SYMBOL vmlinux 0x8b4ca0ff uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b8c1476 padata_do_serial +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8b9d17ef sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x8bb8d87c param_get_ushort +EXPORT_SYMBOL vmlinux 0x8bd8d016 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x8bf54d90 free_xenballooned_pages +EXPORT_SYMBOL vmlinux 0x8c0dac86 __break_lease +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c18b6d5 vme_master_request +EXPORT_SYMBOL vmlinux 0x8c1bacc6 xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0x8c349ac5 blk_register_region +EXPORT_SYMBOL vmlinux 0x8c50acaf downgrade_write +EXPORT_SYMBOL vmlinux 0x8c599005 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c77ebfb page_readlink +EXPORT_SYMBOL vmlinux 0x8c9bc8aa skb_clone_sk +EXPORT_SYMBOL vmlinux 0x8ca413cc dev_crit +EXPORT_SYMBOL vmlinux 0x8ca5f9f7 bio_copy_data +EXPORT_SYMBOL vmlinux 0x8ca748b6 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8cdd885e elevator_alloc +EXPORT_SYMBOL vmlinux 0x8cf963af inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0x8d1801f7 get_agp_version +EXPORT_SYMBOL vmlinux 0x8d2859d6 lro_receive_skb +EXPORT_SYMBOL vmlinux 0x8d2aa353 d_genocide +EXPORT_SYMBOL vmlinux 0x8d37a0c8 sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0x8d45af00 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d69558b dma_ops +EXPORT_SYMBOL vmlinux 0x8d6b2ce1 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x8d6f81b4 __div64_32 +EXPORT_SYMBOL vmlinux 0x8d72495b __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d838d91 ida_remove +EXPORT_SYMBOL vmlinux 0x8d853e53 tty_throttle +EXPORT_SYMBOL vmlinux 0x8d8d96c6 acpi_get_sleep_type_data +EXPORT_SYMBOL vmlinux 0x8da1a3cb acpi_remove_interface +EXPORT_SYMBOL vmlinux 0x8daf8c42 dql_init +EXPORT_SYMBOL vmlinux 0x8db4646c ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x8db6f6c5 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x8dc6e564 restore_processor_state +EXPORT_SYMBOL vmlinux 0x8dd0af28 put_disk +EXPORT_SYMBOL vmlinux 0x8ded15eb generic_update_time +EXPORT_SYMBOL vmlinux 0x8df0be81 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x8e002cda acpi_remove_gpe_block +EXPORT_SYMBOL vmlinux 0x8e0c4c25 genphy_config_init +EXPORT_SYMBOL vmlinux 0x8e3267c5 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x8e433307 security_path_mknod +EXPORT_SYMBOL vmlinux 0x8e484068 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x8e484d39 iunique +EXPORT_SYMBOL vmlinux 0x8e6ded90 pipe_lock +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e888ec3 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler +EXPORT_SYMBOL vmlinux 0x8ebace6d inet_register_protosw +EXPORT_SYMBOL vmlinux 0x8ebe54a1 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x8ecde285 kill_pgrp +EXPORT_SYMBOL vmlinux 0x8efd0678 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x8f084d52 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus +EXPORT_SYMBOL vmlinux 0x8f649f74 gen_new_estimator +EXPORT_SYMBOL vmlinux 0x8f64da94 acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0x8f76bba4 mmc_erase +EXPORT_SYMBOL vmlinux 0x8f7c6b3e sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x8f8c6b2a mount_bdev +EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 +EXPORT_SYMBOL vmlinux 0x8fd5ee3a tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x8fe59cef convert_art_to_tsc +EXPORT_SYMBOL vmlinux 0x8ff220f8 genphy_update_link +EXPORT_SYMBOL vmlinux 0x8ff4079b pv_irq_ops +EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 +EXPORT_SYMBOL vmlinux 0x904409c6 acpi_set_firmware_waking_vector +EXPORT_SYMBOL vmlinux 0x904cc03d inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x90695906 vme_free_consistent +EXPORT_SYMBOL vmlinux 0x90729603 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x908575fe queued_write_lock_slowpath +EXPORT_SYMBOL vmlinux 0x909ad001 iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0x90a4db3b read_dev_sector +EXPORT_SYMBOL vmlinux 0x90afff07 elv_register_queue +EXPORT_SYMBOL vmlinux 0x90c4f3eb blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x910c2f42 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x911e9e14 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x91250d0c pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0x9131567a cdev_del +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x914b4d4f bio_endio +EXPORT_SYMBOL vmlinux 0x915aee17 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x91765780 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x9179d14a blk_recount_segments +EXPORT_SYMBOL vmlinux 0x91967e8e xen_selfballoon_init +EXPORT_SYMBOL vmlinux 0x9199ba56 __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x91a74511 registered_fb +EXPORT_SYMBOL vmlinux 0x91c13f0d scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x91fc3753 i2c_release_client +EXPORT_SYMBOL vmlinux 0x9212e901 fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0x921ec897 elevator_change +EXPORT_SYMBOL vmlinux 0x9229a3bc mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x9238181f truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x92387847 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x9243cdd0 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x924a2632 bd_set_size +EXPORT_SYMBOL vmlinux 0x92503f19 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x926fd8fe revert_creds +EXPORT_SYMBOL vmlinux 0x92897e3d default_idle +EXPORT_SYMBOL vmlinux 0x928d4cdf blk_end_request +EXPORT_SYMBOL vmlinux 0x929f5b58 devm_gpiod_get +EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm +EXPORT_SYMBOL vmlinux 0x92aa18ae igrab +EXPORT_SYMBOL vmlinux 0x92bb51f8 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x92c7896a insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x92f56427 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x92f6767f lg_local_lock +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x92fd03c5 migrate_page +EXPORT_SYMBOL vmlinux 0x9300b6ac dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x93050d4d dcache_readdir +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x931e02bd page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x932493a8 iosf_mbi_read +EXPORT_SYMBOL vmlinux 0x9342e8f9 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x934c7f78 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x93599d4d dentry_needs_remove_privs +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x93865b74 iget_locked +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93b511e5 blk_init_queue +EXPORT_SYMBOL vmlinux 0x93cb2721 arp_create +EXPORT_SYMBOL vmlinux 0x93dab4f2 inet_select_addr +EXPORT_SYMBOL vmlinux 0x93e61ad8 blkdev_fsync +EXPORT_SYMBOL vmlinux 0x93eaabac prepare_binprm +EXPORT_SYMBOL vmlinux 0x93ef9bd7 vfs_fsync +EXPORT_SYMBOL vmlinux 0x93f85873 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x940b440e gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x940f9cf6 kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x943725f5 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x9438c434 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x943cbe19 tty_devnum +EXPORT_SYMBOL vmlinux 0x9449ca6e pci_get_class +EXPORT_SYMBOL vmlinux 0x9459a75b agp_collect_device_status +EXPORT_SYMBOL vmlinux 0x946ca315 mutex_unlock +EXPORT_SYMBOL vmlinux 0x94701006 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94b541b5 cpu_active_mask +EXPORT_SYMBOL vmlinux 0x94d191f3 swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0x94ec80f6 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x94eea794 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x94fd7a86 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x95181525 bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x951e0623 key_invalidate +EXPORT_SYMBOL vmlinux 0x9522971a pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x95395301 acpi_exception +EXPORT_SYMBOL vmlinux 0x953ac3ba cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x95567955 dev_activate +EXPORT_SYMBOL vmlinux 0x957dd4d0 devm_gpio_free +EXPORT_SYMBOL vmlinux 0x95857767 thaw_bdev +EXPORT_SYMBOL vmlinux 0x95937191 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x95a0bd29 napi_get_frags +EXPORT_SYMBOL vmlinux 0x95a16503 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x95a36548 filp_open +EXPORT_SYMBOL vmlinux 0x95a5bc04 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x95b62250 d_alloc +EXPORT_SYMBOL vmlinux 0x95bd6e26 acpi_install_sci_handler +EXPORT_SYMBOL vmlinux 0x95c08b5a mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x95d35a4e __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x95d88d51 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x95df08d6 mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0x95fda06f __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x9603c09d __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x960a8723 bio_copy_kern +EXPORT_SYMBOL vmlinux 0x960c7756 padata_remove_cpu +EXPORT_SYMBOL vmlinux 0x960dfaf5 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x961211a5 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x96244c7e __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x962b15fe seq_release_private +EXPORT_SYMBOL vmlinux 0x963ddf12 do_splice_from +EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x965b27db pci_request_regions +EXPORT_SYMBOL vmlinux 0x9661f619 do_SAK +EXPORT_SYMBOL vmlinux 0x9670d811 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x96791773 bio_clone_bioset +EXPORT_SYMBOL vmlinux 0x9683fc6c md_write_end +EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x969cfecc nf_log_trace +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96f66049 qdisc_list_add +EXPORT_SYMBOL vmlinux 0x96f6d8eb __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x96fbde17 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x97090ab4 seq_lseek +EXPORT_SYMBOL vmlinux 0x970baf9e rtnl_unicast +EXPORT_SYMBOL vmlinux 0x970e24ae fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0x97113d8e blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x9728b928 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x974cf834 generic_getxattr +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x97551943 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x9762dc83 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x976c5225 md_integrity_register +EXPORT_SYMBOL vmlinux 0x976e191f vfs_create +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97b0d033 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x97c5bd0a acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x97c69f6b remove_proc_entry +EXPORT_SYMBOL vmlinux 0x97cf6abc max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x97dbb7d9 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x97de0ddd acpi_install_gpe_block +EXPORT_SYMBOL vmlinux 0x980caac2 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x980dac7f cdrom_check_events +EXPORT_SYMBOL vmlinux 0x9814c7a5 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x9818fe84 __neigh_create +EXPORT_SYMBOL vmlinux 0x98204f0d crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint +EXPORT_SYMBOL vmlinux 0x9829b97c input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x98425fb4 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x98552850 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x98591a24 skb_find_text +EXPORT_SYMBOL vmlinux 0x985aa253 dump_skip +EXPORT_SYMBOL vmlinux 0x985eef53 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x9869a9ec module_layout +EXPORT_SYMBOL vmlinux 0x986c5b3e nla_append +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x98735dd7 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x9878745c _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x98897df3 __sb_start_write +EXPORT_SYMBOL vmlinux 0x988ed85d set_memory_x +EXPORT_SYMBOL vmlinux 0x98abdd68 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x98cfba2d udp_del_offload +EXPORT_SYMBOL vmlinux 0x98d0cde8 clk_add_alias +EXPORT_SYMBOL vmlinux 0x98df6212 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x98e68eca cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x98fe6f1b mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x99233c32 cpu_core_map +EXPORT_SYMBOL vmlinux 0x992e72e4 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x99726d98 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x9975f46c jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x9990713f __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x9996fec1 bio_integrity_endio +EXPORT_SYMBOL vmlinux 0x999abf20 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a26112 init_net +EXPORT_SYMBOL vmlinux 0x99b19f4c block_write_end +EXPORT_SYMBOL vmlinux 0x99b245e0 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x99c40372 __serio_register_driver +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99e1856e kobject_add +EXPORT_SYMBOL vmlinux 0x99ec8ceb ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x99f39356 pnp_device_detach +EXPORT_SYMBOL vmlinux 0x9a00ff2d register_gifconf +EXPORT_SYMBOL vmlinux 0x9a029c62 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a26a9a5 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x9a3d4d7a dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0x9a481cb4 __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0x9a62ecfd copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x9a6a59e5 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x9a6a83f9 cmos_lock +EXPORT_SYMBOL vmlinux 0x9a6d35da skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x9a701096 follow_up +EXPORT_SYMBOL vmlinux 0x9a7a34ea alloc_fcdev +EXPORT_SYMBOL vmlinux 0x9a8219c4 setattr_copy +EXPORT_SYMBOL vmlinux 0x9add3d63 mdiobus_free +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9af9d7cc may_umount_tree +EXPORT_SYMBOL vmlinux 0x9b12a8fe sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b4a232d __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize +EXPORT_SYMBOL vmlinux 0x9b915a48 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x9b950be3 skb_unlink +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba146bf wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put +EXPORT_SYMBOL vmlinux 0x9bd1bf58 blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x9bdb9296 pci_release_region +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9c19ce76 security_file_permission +EXPORT_SYMBOL vmlinux 0x9c2c944a __copy_from_user_ll_nocache_nozero +EXPORT_SYMBOL vmlinux 0x9c38e8e5 tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0x9c3e2694 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x9c434c86 find_lock_entry +EXPORT_SYMBOL vmlinux 0x9c450105 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cd60890 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x9ce169af neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x9d02220d i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x9d07c7d1 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x9d08bd2c vfs_iter_read +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d22ddb7 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x9d33ef5e acpi_enable +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d544472 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x9d5790d5 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x9d647f90 dquot_transfer +EXPORT_SYMBOL vmlinux 0x9d807665 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x9d93c96a param_set_byte +EXPORT_SYMBOL vmlinux 0x9da136fa nobh_writepage +EXPORT_SYMBOL vmlinux 0x9da46285 da903x_query_status +EXPORT_SYMBOL vmlinux 0x9dfe7307 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9e045039 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e2ea2fa ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x9e363b6b acpi_disable_gpe +EXPORT_SYMBOL vmlinux 0x9e3e869c scsi_execute +EXPORT_SYMBOL vmlinux 0x9e46de1c __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e5b0d06 pid_task +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e880ffc sk_stream_error +EXPORT_SYMBOL vmlinux 0x9e937b80 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea0c91f proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x9eaf4194 dev_base_lock +EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource +EXPORT_SYMBOL vmlinux 0x9edfaa30 set_device_ro +EXPORT_SYMBOL vmlinux 0x9efbfce5 find_inode_nowait +EXPORT_SYMBOL vmlinux 0x9f0d7ea8 phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0x9f1240ec pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x9f36de73 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x9f38eb8e tty_port_close +EXPORT_SYMBOL vmlinux 0x9f3f01ec fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x9f447ebc locks_remove_posix +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f478295 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x9f66436a serio_close +EXPORT_SYMBOL vmlinux 0x9f94b8cc atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fa07523 agp_enable +EXPORT_SYMBOL vmlinux 0x9fa2af2c __ip_select_ident +EXPORT_SYMBOL vmlinux 0x9fa30038 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x9fd41d76 vm_mmap +EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fdf756a pci_release_regions +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa022785c input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa0588560 scm_detach_fds +EXPORT_SYMBOL vmlinux 0xa05a07bc vga_switcheroo_set_dynamic_switch +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0xa076ed51 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0xa07bf0c2 textsearch_register +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0c1416f proto_unregister +EXPORT_SYMBOL vmlinux 0xa0c67a91 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xa0c823e7 input_unregister_device +EXPORT_SYMBOL vmlinux 0xa0c9d4d4 generic_removexattr +EXPORT_SYMBOL vmlinux 0xa0cb377d dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0f48cdb __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa0fbc0bf kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa1444dd9 tty_check_change +EXPORT_SYMBOL vmlinux 0xa147b8d6 page_symlink +EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts +EXPORT_SYMBOL vmlinux 0xa1650620 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0xa1748ce5 input_free_device +EXPORT_SYMBOL vmlinux 0xa17819ca dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xa184bf5e dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0xa184d6ee dev_remove_pack +EXPORT_SYMBOL vmlinux 0xa195df23 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xa19de3fd boot_cpu_data +EXPORT_SYMBOL vmlinux 0xa1ad3682 alloc_file +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1dff6b6 nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0xa1fe9ca0 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa22daf83 force_sig +EXPORT_SYMBOL vmlinux 0xa2315891 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0xa23ca586 seq_pad +EXPORT_SYMBOL vmlinux 0xa23d9c4a page_cache_next_hole +EXPORT_SYMBOL vmlinux 0xa248c04c dquot_operations +EXPORT_SYMBOL vmlinux 0xa28336c9 register_md_personality +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa28f0423 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0xa29377d7 nvm_put_blk +EXPORT_SYMBOL vmlinux 0xa2b19c28 mmc_flush_cache +EXPORT_SYMBOL vmlinux 0xa2b69d9c pci_write_vpd +EXPORT_SYMBOL vmlinux 0xa2bca5b2 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xa2d7ae7c lease_modify +EXPORT_SYMBOL vmlinux 0xa2e3346f ps2_drain +EXPORT_SYMBOL vmlinux 0xa2fdf6aa xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa34fcb2d mempool_create_node +EXPORT_SYMBOL vmlinux 0xa350a8f8 set_memory_array_uc +EXPORT_SYMBOL vmlinux 0xa36818eb unregister_md_personality +EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get +EXPORT_SYMBOL vmlinux 0xa37f9f3e sock_sendmsg +EXPORT_SYMBOL vmlinux 0xa3b1a706 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xa3c6c009 skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0xa3dcbfd3 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0xa3f6ccc3 dev_get_flags +EXPORT_SYMBOL vmlinux 0xa4065f70 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xa40e6172 netdev_update_features +EXPORT_SYMBOL vmlinux 0xa4106648 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0xa423b662 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0xa4325206 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf +EXPORT_SYMBOL vmlinux 0xa441924e dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xa44cc8e5 mmc_request_done +EXPORT_SYMBOL vmlinux 0xa45cd7ad pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa47f448b vga_switcheroo_init_domain_pm_ops +EXPORT_SYMBOL vmlinux 0xa48f2c0a PDE_DATA +EXPORT_SYMBOL vmlinux 0xa4add03e dev_get_iflink +EXPORT_SYMBOL vmlinux 0xa4ae60c6 md_check_recovery +EXPORT_SYMBOL vmlinux 0xa4aeefde mpage_readpage +EXPORT_SYMBOL vmlinux 0xa4b91add dump_align +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4c668ea input_register_device +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4fc6d58 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xa51cdfe8 __FIXADDR_TOP +EXPORT_SYMBOL vmlinux 0xa52977de pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xa546654c register_qdisc +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa553a792 i2c_transfer +EXPORT_SYMBOL vmlinux 0xa567ab8c dm_io +EXPORT_SYMBOL vmlinux 0xa57a23e4 swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0xa587e81e ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0xa597fed5 dquot_enable +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa598f8b0 nf_register_hooks +EXPORT_SYMBOL vmlinux 0xa5a2cf17 param_set_int +EXPORT_SYMBOL vmlinux 0xa5af3b0c qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xa5bf27a8 put_tty_driver +EXPORT_SYMBOL vmlinux 0xa5fa349e free_buffer_head +EXPORT_SYMBOL vmlinux 0xa62af439 end_page_writeback +EXPORT_SYMBOL vmlinux 0xa62e6e4f acpi_get_table_with_size +EXPORT_SYMBOL vmlinux 0xa62f4fab dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember +EXPORT_SYMBOL vmlinux 0xa640c86c would_dump +EXPORT_SYMBOL vmlinux 0xa673d74c napi_complete_done +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa678a02c locks_init_lock +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa68207e6 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xa68a2ce0 do_splice_direct +EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa6b4207e sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xa6b4a5ef sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xa6bbd805 __wake_up +EXPORT_SYMBOL vmlinux 0xa6bd63ca acpi_bios_error +EXPORT_SYMBOL vmlinux 0xa6d5972f pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0xa6e86f9c put_page +EXPORT_SYMBOL vmlinux 0xa6fc526c __neigh_event_send +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi +EXPORT_SYMBOL vmlinux 0xa71093a9 filemap_map_pages +EXPORT_SYMBOL vmlinux 0xa712c106 __module_get +EXPORT_SYMBOL vmlinux 0xa717864b mutex_lock_killable +EXPORT_SYMBOL vmlinux 0xa730a558 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa749a999 inet_addr_type +EXPORT_SYMBOL vmlinux 0xa75357dc thaw_super +EXPORT_SYMBOL vmlinux 0xa75b3421 d_instantiate +EXPORT_SYMBOL vmlinux 0xa75df954 input_flush_device +EXPORT_SYMBOL vmlinux 0xa788f1a0 i8253_lock +EXPORT_SYMBOL vmlinux 0xa7a2dc2b __blk_run_queue +EXPORT_SYMBOL vmlinux 0xa7b6457f genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xa7bafcc7 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0xa7cf6c2f atomic64_dec_return_cx8 +EXPORT_SYMBOL vmlinux 0xa80d41c3 poll_freewait +EXPORT_SYMBOL vmlinux 0xa81626f9 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xa8168b7c blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xa8315b92 acpi_device_hid +EXPORT_SYMBOL vmlinux 0xa8391b07 napi_gro_flush +EXPORT_SYMBOL vmlinux 0xa83bba5d stop_tty +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa848cb08 unregister_filesystem +EXPORT_SYMBOL vmlinux 0xa8515e8a xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xa8526f24 dcb_getapp +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa8a2a07a seq_escape +EXPORT_SYMBOL vmlinux 0xa8aaa584 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xa8c42bf6 param_set_invbool +EXPORT_SYMBOL vmlinux 0xa8c8fe87 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0xa8cf4929 fb_set_suspend +EXPORT_SYMBOL vmlinux 0xa8e13307 agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0xa8fedc08 pci_bus_put +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa92cd6f8 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0xa945b706 abort_creds +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa9a8e17f arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0xa9b15d04 swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9cfea6b x86_hyper +EXPORT_SYMBOL vmlinux 0xa9fb82ec blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xaa20c4c1 netdev_alert +EXPORT_SYMBOL vmlinux 0xaa2f1872 vme_irq_generate +EXPORT_SYMBOL vmlinux 0xaa375592 devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0xaa5bd08d __pv_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0xaa675a6b audit_log_start +EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa7a4dc9 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0xaa7c926a phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xaa8fea18 acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0xaa96676e is_nd_btt +EXPORT_SYMBOL vmlinux 0xaaa2bf4f seq_dentry +EXPORT_SYMBOL vmlinux 0xaaa64623 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xaaaac5f5 register_quota_format +EXPORT_SYMBOL vmlinux 0xaab61de8 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xaac7fd06 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad4d221 user_revoke +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaae1ea74 inet_put_port +EXPORT_SYMBOL vmlinux 0xaae7f6aa pci_get_slot +EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable +EXPORT_SYMBOL vmlinux 0xaafa7373 tcp_proto_cgroup +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab03aa7f dev_mc_del_global +EXPORT_SYMBOL vmlinux 0xab05459f mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0xab3bf857 write_one_page +EXPORT_SYMBOL vmlinux 0xab3c142e block_invalidatepage +EXPORT_SYMBOL vmlinux 0xab3eb7dd devm_ioport_map +EXPORT_SYMBOL vmlinux 0xab40330d netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xab551fad acpi_get_data_full +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab65ed80 set_memory_uc +EXPORT_SYMBOL vmlinux 0xab694444 bsearch +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab764667 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0xab770678 rdmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab7b2c62 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xab9b236f pneigh_lookup +EXPORT_SYMBOL vmlinux 0xaba3159c gen_pool_destroy +EXPORT_SYMBOL vmlinux 0xaba3ad0c radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xaba666e5 phy_connect_direct +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabdd6463 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xabdf2947 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0xabecf663 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xabf00581 simple_setattr +EXPORT_SYMBOL vmlinux 0xabfcb4c3 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac0e934f mmc_align_data_size +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac31b308 sk_stop_timer +EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear +EXPORT_SYMBOL vmlinux 0xac5b7acd inode_needs_sync +EXPORT_SYMBOL vmlinux 0xac7b618e nf_register_hook +EXPORT_SYMBOL vmlinux 0xaca6cf7f memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb8145d iterate_dir +EXPORT_SYMBOL vmlinux 0xacb99769 ida_destroy +EXPORT_SYMBOL vmlinux 0xacc1c0bb blkdev_get +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad0522db unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0xad1687e1 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0xad26c510 skb_free_datagram +EXPORT_SYMBOL vmlinux 0xad40e399 mmc_remove_host +EXPORT_SYMBOL vmlinux 0xad547243 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xad5b9771 dev_warn +EXPORT_SYMBOL vmlinux 0xad698f77 dqstats +EXPORT_SYMBOL vmlinux 0xad6a9ce9 sock_create +EXPORT_SYMBOL vmlinux 0xad6e4bb6 mempool_free +EXPORT_SYMBOL vmlinux 0xad6edc6e tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xad6f413a pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xad7d46a3 agp_generic_enable +EXPORT_SYMBOL vmlinux 0xad7effdc xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xad81deb3 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad894cb9 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0xad8acfb1 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xad9a151e pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xad9cc25a simple_release_fs +EXPORT_SYMBOL vmlinux 0xada23500 param_ops_byte +EXPORT_SYMBOL vmlinux 0xada613ba fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0xadbe841b sock_register +EXPORT_SYMBOL vmlinux 0xadf5660d submit_bio +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae044bc7 panic_notifier_list +EXPORT_SYMBOL vmlinux 0xae31c616 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0xae756ce0 load_nls_default +EXPORT_SYMBOL vmlinux 0xae77a595 radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0xae7d5090 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xae822634 mmc_register_driver +EXPORT_SYMBOL vmlinux 0xae82598d simple_link +EXPORT_SYMBOL vmlinux 0xae85a27e radix_tree_lookup +EXPORT_SYMBOL vmlinux 0xae998a7d qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xaea976a8 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0xaec8bd5a file_update_time +EXPORT_SYMBOL vmlinux 0xaecb7533 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xaf222e7a __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xaf271903 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf4b1540 acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xaf60fa1c xen_biovec_phys_mergeable +EXPORT_SYMBOL vmlinux 0xaf611eac amd_nb_misc_ids +EXPORT_SYMBOL vmlinux 0xafa0a1fb tty_set_operations +EXPORT_SYMBOL vmlinux 0xafa3a84c pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0xafb4b2f3 netif_device_attach +EXPORT_SYMBOL vmlinux 0xafbce5b7 sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0xafed8ca7 bioset_free +EXPORT_SYMBOL vmlinux 0xaff65341 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xb01300a7 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xb015846f dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xb016eedd lwtunnel_input +EXPORT_SYMBOL vmlinux 0xb01b1db8 intel_gtt_insert_sg_entries +EXPORT_SYMBOL vmlinux 0xb04d4773 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0xb05c46a1 kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb07ec0ce arp_xmit +EXPORT_SYMBOL vmlinux 0xb0817db1 scsi_target_resume +EXPORT_SYMBOL vmlinux 0xb081b9c3 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xb08f4f4c kill_anon_super +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0bdb7eb tcp_parse_options +EXPORT_SYMBOL vmlinux 0xb0df718d dm_put_device +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e4f324 textsearch_destroy +EXPORT_SYMBOL vmlinux 0xb0eb41ff iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0xb0f30470 dma_common_mmap +EXPORT_SYMBOL vmlinux 0xb103870f __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xb1044649 agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0xb110f8a5 drop_super +EXPORT_SYMBOL vmlinux 0xb119fa70 fb_validate_mode +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb13d5658 tty_port_close_end +EXPORT_SYMBOL vmlinux 0xb152a7e4 vfs_write +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb168afb1 d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0xb187b3a8 lg_lock_init +EXPORT_SYMBOL vmlinux 0xb18a57a9 misc_deregister +EXPORT_SYMBOL vmlinux 0xb197ae69 elv_rb_find +EXPORT_SYMBOL vmlinux 0xb1999755 open_check_o_direct +EXPORT_SYMBOL vmlinux 0xb1b51e38 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xb1c0031e kernel_setsockopt +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xb1cfad22 rdmsr_on_cpu +EXPORT_SYMBOL vmlinux 0xb1eccfd1 mntput +EXPORT_SYMBOL vmlinux 0xb1fabcc0 sock_wmalloc +EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu +EXPORT_SYMBOL vmlinux 0xb246b3dc security_mmap_file +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb27109e1 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xb2c0ba22 pci_disable_msi +EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on +EXPORT_SYMBOL vmlinux 0xb2d5a552 complete +EXPORT_SYMBOL vmlinux 0xb2f30b53 param_ops_ullong +EXPORT_SYMBOL vmlinux 0xb2f74fb6 intel_gmch_remove +EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 +EXPORT_SYMBOL vmlinux 0xb322139e is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0xb3284531 acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xb32d7b7e radix_tree_tagged +EXPORT_SYMBOL vmlinux 0xb34048c7 set_pages_nx +EXPORT_SYMBOL vmlinux 0xb345ead0 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit +EXPORT_SYMBOL vmlinux 0xb355311b filemap_fdatawait +EXPORT_SYMBOL vmlinux 0xb3604b0c sget_userns +EXPORT_SYMBOL vmlinux 0xb3668035 neigh_lookup +EXPORT_SYMBOL vmlinux 0xb38f9368 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0xb39abc77 nf_hook_slow +EXPORT_SYMBOL vmlinux 0xb39fc803 xfrm_lookup +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3e0590d acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0xb3edba09 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb40304dd unregister_quota_format +EXPORT_SYMBOL vmlinux 0xb419d2c6 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb4390f9a mcount +EXPORT_SYMBOL vmlinux 0xb43d0a32 vmap +EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem +EXPORT_SYMBOL vmlinux 0xb45578b8 memscan +EXPORT_SYMBOL vmlinux 0xb4608f94 uart_suspend_port +EXPORT_SYMBOL vmlinux 0xb46792a7 iget_failed +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb4aff06e generic_end_io_acct +EXPORT_SYMBOL vmlinux 0xb4c84b65 bh_submit_read +EXPORT_SYMBOL vmlinux 0xb4caec76 input_open_device +EXPORT_SYMBOL vmlinux 0xb4cb358f agp_put_bridge +EXPORT_SYMBOL vmlinux 0xb4f8ef65 phy_stop +EXPORT_SYMBOL vmlinux 0xb5137ff9 default_file_splice_read +EXPORT_SYMBOL vmlinux 0xb5229392 cpu_sibling_map +EXPORT_SYMBOL vmlinux 0xb528a3a9 generic_file_llseek +EXPORT_SYMBOL vmlinux 0xb52a1ad3 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5b87389 km_report +EXPORT_SYMBOL vmlinux 0xb5be7bd3 sock_no_getname +EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free +EXPORT_SYMBOL vmlinux 0xb5cdee94 agp_find_bridge +EXPORT_SYMBOL vmlinux 0xb5dbd16a __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xb5fb9e4c sg_miter_next +EXPORT_SYMBOL vmlinux 0xb5ffc182 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xb60f6b83 read_cache_page +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb6312f7e mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0xb63b24a2 __pagevec_release +EXPORT_SYMBOL vmlinux 0xb6531658 unregister_netdev +EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb684b779 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6a6bc99 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0xb6af2a1d __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xb6cba267 genphy_resume +EXPORT_SYMBOL vmlinux 0xb6e41883 memcmp +EXPORT_SYMBOL vmlinux 0xb6ed1e53 strncpy +EXPORT_SYMBOL vmlinux 0xb6f39f5e __scm_destroy +EXPORT_SYMBOL vmlinux 0xb737155a blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb74ab8ab clkdev_add +EXPORT_SYMBOL vmlinux 0xb758b225 acpi_disable_event +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb771d661 generic_file_open +EXPORT_SYMBOL vmlinux 0xb77ef029 phy_register_fixup +EXPORT_SYMBOL vmlinux 0xb7967604 devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0xb79ec15d mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7d9081c cdev_init +EXPORT_SYMBOL vmlinux 0xb7e02bcc devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xb7ed8d84 mark_page_accessed +EXPORT_SYMBOL vmlinux 0xb7f55ecc atomic64_add_return_cx8 +EXPORT_SYMBOL vmlinux 0xb7f9da96 inet_stream_connect +EXPORT_SYMBOL vmlinux 0xb7fc6799 ppp_register_channel +EXPORT_SYMBOL vmlinux 0xb80682ff xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xb81960ca snprintf +EXPORT_SYMBOL vmlinux 0xb8205781 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xb8370414 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xb83a1529 skb_trim +EXPORT_SYMBOL vmlinux 0xb8451fa1 proc_remove +EXPORT_SYMBOL vmlinux 0xb86d8a28 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xb86feabf set_wb_congested +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb87fd3c1 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xb8854ac8 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xb88574e7 blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0xb886c4c3 ata_link_printk +EXPORT_SYMBOL vmlinux 0xb891f6f6 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xb8a6d67b sync_blockdev +EXPORT_SYMBOL vmlinux 0xb8b6a76c __percpu_counter_add +EXPORT_SYMBOL vmlinux 0xb8beadf4 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0xb8dd63c7 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xb8dfa3f9 lock_rename +EXPORT_SYMBOL vmlinux 0xb8e33a1d mmc_can_trim +EXPORT_SYMBOL vmlinux 0xb8e3905d inet6_del_protocol +EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 +EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xb8ea997f blk_run_queue_async +EXPORT_SYMBOL vmlinux 0xb8ee988d vfs_rename +EXPORT_SYMBOL vmlinux 0xb8fdcd10 mempool_resize +EXPORT_SYMBOL vmlinux 0xb918f71a get_cached_acl +EXPORT_SYMBOL vmlinux 0xb931b5ce inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0xb9740653 module_put +EXPORT_SYMBOL vmlinux 0xb97d8146 alloc_xenballooned_pages +EXPORT_SYMBOL vmlinux 0xb9892e9d pnp_is_active +EXPORT_SYMBOL vmlinux 0xb994c074 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0xb99df118 eth_header +EXPORT_SYMBOL vmlinux 0xb9a67ed5 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0xb9bc015e skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0xb9dacf85 pnp_activate_dev +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xba01967f bmap +EXPORT_SYMBOL vmlinux 0xba168eb4 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0xba175f9f tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xba2d8594 ec_read +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba7a460c audit_log +EXPORT_SYMBOL vmlinux 0xba7fd2f6 seq_file_path +EXPORT_SYMBOL vmlinux 0xba9fd104 set_posix_acl +EXPORT_SYMBOL vmlinux 0xbaa12db9 mmc_can_erase +EXPORT_SYMBOL vmlinux 0xbaa8030c padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xbaab1f91 intel_gmch_probe +EXPORT_SYMBOL vmlinux 0xbab2912d nvm_register_mgr +EXPORT_SYMBOL vmlinux 0xbab82379 inet_del_protocol +EXPORT_SYMBOL vmlinux 0xbac3cbf2 ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0xbadaef20 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb084feb param_ops_charp +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb4824e1 loop_backing_file +EXPORT_SYMBOL vmlinux 0xbb4d00af param_get_byte +EXPORT_SYMBOL vmlinux 0xbb52b4e0 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb6870d2 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xbb8387c1 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xbb8628d1 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbb9e74fc iov_iter_npages +EXPORT_SYMBOL vmlinux 0xbba70a2d _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xbbaef0a4 ihold +EXPORT_SYMBOL vmlinux 0xbbb2d51b mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0xbbb8768f release_sock +EXPORT_SYMBOL vmlinux 0xbbb8f11e blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xbbbabc2a swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0xbbceb8e1 tty_kref_put +EXPORT_SYMBOL vmlinux 0xbbd85510 inet6_add_offload +EXPORT_SYMBOL vmlinux 0xbbe8d2e0 __page_symlink +EXPORT_SYMBOL vmlinux 0xbbeb1ec6 ioremap_wt +EXPORT_SYMBOL vmlinux 0xbc0c101d elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0xbc14d347 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xbc1d3d9a xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc24a780 vfs_iter_write +EXPORT_SYMBOL vmlinux 0xbc3d8ea8 __put_cred +EXPORT_SYMBOL vmlinux 0xbc435770 dump_stack +EXPORT_SYMBOL vmlinux 0xbc43bc67 tty_unthrottle +EXPORT_SYMBOL vmlinux 0xbc533c14 swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0xbc72590d copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0xbc78375d bdevname +EXPORT_SYMBOL vmlinux 0xbc8a6138 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0xbc8ec8e2 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xbc95d31c writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xbca3211e scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xbcac62bb devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xbcbf0e10 kthread_bind +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcca05f4 sock_edemux +EXPORT_SYMBOL vmlinux 0xbced127c jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xbcf15653 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0xbd0e5052 ata_port_printk +EXPORT_SYMBOL vmlinux 0xbd1c13ba cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0xbd328991 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xbd464b7b xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xbd6c42e0 cont_write_begin +EXPORT_SYMBOL vmlinux 0xbd7ee671 sg_miter_start +EXPORT_SYMBOL vmlinux 0xbd8116e8 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xbd88b201 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbd9333b3 elv_rb_del +EXPORT_SYMBOL vmlinux 0xbda04476 pci_restore_state +EXPORT_SYMBOL vmlinux 0xbda75a4d tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xbdaa3de9 input_set_keycode +EXPORT_SYMBOL vmlinux 0xbdaf5b07 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xbdb85c1e dst_discard_out +EXPORT_SYMBOL vmlinux 0xbdba3ae5 blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0xbdbeb546 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xbdc95976 release_firmware +EXPORT_SYMBOL vmlinux 0xbde1e093 remove_arg_zero +EXPORT_SYMBOL vmlinux 0xbde6f387 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe2affa6 fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0xbe47184b ps2_end_command +EXPORT_SYMBOL vmlinux 0xbe55149e mmc_of_parse +EXPORT_SYMBOL vmlinux 0xbe61179d pnp_register_driver +EXPORT_SYMBOL vmlinux 0xbe63c8ba dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xbe67c35b pci_reenable_device +EXPORT_SYMBOL vmlinux 0xbe6b58c9 __breadahead +EXPORT_SYMBOL vmlinux 0xbe7758d4 dmam_release_declared_memory +EXPORT_SYMBOL vmlinux 0xbe8c37d9 intel_scu_ipc_simple_command +EXPORT_SYMBOL vmlinux 0xbe99043f remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0xbea4f6fa cancel_dirty_page +EXPORT_SYMBOL vmlinux 0xbea6d2de swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0xbec30d05 x86_match_cpu +EXPORT_SYMBOL vmlinux 0xbed13d18 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0xbee28d4d arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbf1a5a9d sync_inodes_sb +EXPORT_SYMBOL vmlinux 0xbf486982 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xbf4ec428 __free_pages +EXPORT_SYMBOL vmlinux 0xbf604252 udp_prot +EXPORT_SYMBOL vmlinux 0xbf7ef142 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf8b39e9 isapnp_present +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfc292f1 blk_execute_rq +EXPORT_SYMBOL vmlinux 0xbfd36729 param_ops_bint +EXPORT_SYMBOL vmlinux 0xbfe8ff84 kernel_write +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xc007e70e lease_get_mtime +EXPORT_SYMBOL vmlinux 0xc01eed33 __copy_from_user_ll_nozero +EXPORT_SYMBOL vmlinux 0xc03cdbad proc_mkdir +EXPORT_SYMBOL vmlinux 0xc05e355f idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xc068440e __kfifo_alloc +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc07dacba dget_parent +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc08f11e0 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0xc090ea6c inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0cd3b13 ___ratelimit +EXPORT_SYMBOL vmlinux 0xc0f58c35 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0xc0f9650a locks_mandatory_area +EXPORT_SYMBOL vmlinux 0xc10bd326 seq_write +EXPORT_SYMBOL vmlinux 0xc1152d1d devm_memunmap +EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten +EXPORT_SYMBOL vmlinux 0xc120065b param_ops_ushort +EXPORT_SYMBOL vmlinux 0xc13ae50f mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0xc13e1ee8 md_cluster_mod +EXPORT_SYMBOL vmlinux 0xc146b1ce from_kgid_munged +EXPORT_SYMBOL vmlinux 0xc147830f scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xc1674e5e __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xc19b50a7 nf_log_register +EXPORT_SYMBOL vmlinux 0xc1ab1c71 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xc1b0ce82 agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc1e809d1 blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0xc20cae69 nvm_submit_io +EXPORT_SYMBOL vmlinux 0xc216750b truncate_setsize +EXPORT_SYMBOL vmlinux 0xc2215ffb scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xc2276f4b mdiobus_write +EXPORT_SYMBOL vmlinux 0xc22d039e crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0xc22e1a57 proc_set_size +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc249c50c netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xc24bc994 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0xc251bfcd ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xc260c004 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xc269c21f udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xc27602c5 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0xc280a525 __copy_from_user_ll +EXPORT_SYMBOL vmlinux 0xc2896497 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xc2900ff0 is_bad_inode +EXPORT_SYMBOL vmlinux 0xc2a55b77 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xc2b93a9c dev_printk +EXPORT_SYMBOL vmlinux 0xc2d711e1 krealloc +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2e91c40 do_truncate +EXPORT_SYMBOL vmlinux 0xc2ec1417 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0xc2f85eb7 scsi_device_resume +EXPORT_SYMBOL vmlinux 0xc2fb121e adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xc32c1f31 set_binfmt +EXPORT_SYMBOL vmlinux 0xc34c721f __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0xc38423a2 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xc3880fef vme_lm_request +EXPORT_SYMBOL vmlinux 0xc39baf7e filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0xc39d26b5 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xc3a65c55 override_creds +EXPORT_SYMBOL vmlinux 0xc3aa465f sk_free +EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 +EXPORT_SYMBOL vmlinux 0xc3b66942 xfrm_init_state +EXPORT_SYMBOL vmlinux 0xc3bc8c71 __check_sticky +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3cc720b nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0xc3f45a9a devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xc3fa6a59 memchr +EXPORT_SYMBOL vmlinux 0xc4008c53 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0xc41dc8a0 param_ops_string +EXPORT_SYMBOL vmlinux 0xc41f0516 node_states +EXPORT_SYMBOL vmlinux 0xc4323fbc locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0xc435ed50 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0xc43b3b10 page_put_link +EXPORT_SYMBOL vmlinux 0xc44c3889 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xc46d0f95 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xc47311d4 check_disk_change +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4a1ec56 single_open +EXPORT_SYMBOL vmlinux 0xc4ac32ab fb_class +EXPORT_SYMBOL vmlinux 0xc4bca5f6 ip_setsockopt +EXPORT_SYMBOL vmlinux 0xc4cc29f7 unlock_new_inode +EXPORT_SYMBOL vmlinux 0xc4ea63de napi_gro_frags +EXPORT_SYMBOL vmlinux 0xc5137552 x86_bios_cpu_apicid +EXPORT_SYMBOL vmlinux 0xc52f21b2 inet_frags_fini +EXPORT_SYMBOL vmlinux 0xc5462085 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc55f437c mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xc5604cd6 bdi_register_owner +EXPORT_SYMBOL vmlinux 0xc5707118 set_pages_array_wc +EXPORT_SYMBOL vmlinux 0xc57f51a9 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xc596ef03 netdev_info +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc59dda6a scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xc5a8c2ec get_tz_trend +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5e26ba9 eisa_driver_unregister +EXPORT_SYMBOL vmlinux 0xc5ebc322 phy_driver_register +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc629240b blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc631a28d cros_ec_check_result +EXPORT_SYMBOL vmlinux 0xc6447f8e tty_unlock +EXPORT_SYMBOL vmlinux 0xc64a26d9 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xc657e150 cap_mmap_file +EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0xc6700f24 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xc672f6b8 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xc6734497 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0xc67a09fe intel_gtt_get +EXPORT_SYMBOL vmlinux 0xc6afcf1e wait_iff_congested +EXPORT_SYMBOL vmlinux 0xc6b23120 intel_scu_ipc_iowrite16 +EXPORT_SYMBOL vmlinux 0xc6b368d3 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xc6b4c584 bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6cdcd14 agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0xc6d3f4cf sock_no_ioctl +EXPORT_SYMBOL vmlinux 0xc6ddcfdb lock_fb_info +EXPORT_SYMBOL vmlinux 0xc6f2e467 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xc6fb3cba param_array_ops +EXPORT_SYMBOL vmlinux 0xc7007924 sk_common_release +EXPORT_SYMBOL vmlinux 0xc7115f9f dput +EXPORT_SYMBOL vmlinux 0xc71b73ac noop_qdisc +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc7267d39 security_path_chown +EXPORT_SYMBOL vmlinux 0xc74bb7c3 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0xc74cba12 generic_file_fsync +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc7578d74 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xc768de19 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7cb7fce unregister_key_type +EXPORT_SYMBOL vmlinux 0xc7cb8e9b proc_set_user +EXPORT_SYMBOL vmlinux 0xc7cd53b9 devm_gpiod_put +EXPORT_SYMBOL vmlinux 0xc7d9e760 vme_irq_free +EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn +EXPORT_SYMBOL vmlinux 0xc7fcc5bf acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xc80857fd vme_new_dma_list +EXPORT_SYMBOL vmlinux 0xc8276a79 nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xc82c980d pnp_find_dev +EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape +EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc8500356 arch_dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0xc85d27b3 param_get_int +EXPORT_SYMBOL vmlinux 0xc862530d scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc88102e2 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0xc886cf39 seq_read +EXPORT_SYMBOL vmlinux 0xc888a066 pv_mmu_ops +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8b6a296 devm_memremap +EXPORT_SYMBOL vmlinux 0xc8e2a155 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xc8f0b89e fsnotify_get_group +EXPORT_SYMBOL vmlinux 0xc8f1888d nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0xc8f2d141 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xc8f2f023 kdb_current_task +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc917e882 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xc92a2fc4 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0xc9400d92 i2c_clients_command +EXPORT_SYMBOL vmlinux 0xc943aa5f netdev_state_change +EXPORT_SYMBOL vmlinux 0xc9458ae1 input_inject_event +EXPORT_SYMBOL vmlinux 0xc94afdde mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0xc953d17a dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0xc95abb4c ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xc962361c fasync_helper +EXPORT_SYMBOL vmlinux 0xc9629266 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc9730b6a inode_change_ok +EXPORT_SYMBOL vmlinux 0xc9882a05 forget_cached_acl +EXPORT_SYMBOL vmlinux 0xc98d3494 param_get_charp +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc99f6aae dma_spin_lock +EXPORT_SYMBOL vmlinux 0xc9afdfcb serial8250_do_pm +EXPORT_SYMBOL vmlinux 0xc9b3b0ef end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xc9c360ac param_set_ulong +EXPORT_SYMBOL vmlinux 0xc9dc850a fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0xc9f68a2b dev_remove_offload +EXPORT_SYMBOL vmlinux 0xc9fef317 add_wait_queue +EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy +EXPORT_SYMBOL vmlinux 0xca129026 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xca13f23a phy_disconnect +EXPORT_SYMBOL vmlinux 0xca41eaa3 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0xca79bf51 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xca8acc78 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xca908d9a devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca9363fb gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xca997c5a phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xcaa9dfbd register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xcab1069d mmc_power_save_host +EXPORT_SYMBOL vmlinux 0xcabde461 notify_change +EXPORT_SYMBOL vmlinux 0xcac53493 inet_bind +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcb01efec kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb392109 inet_frag_find +EXPORT_SYMBOL vmlinux 0xcb3ae7a9 security_path_mkdir +EXPORT_SYMBOL vmlinux 0xcb5cd52e ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb758f33 skb_store_bits +EXPORT_SYMBOL vmlinux 0xcb7bcb78 scsi_host_get +EXPORT_SYMBOL vmlinux 0xcb7cc79e __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xcb976de1 ip_options_compile +EXPORT_SYMBOL vmlinux 0xcb9cc916 genphy_read_status +EXPORT_SYMBOL vmlinux 0xcbae6c7a acpi_lid_notifier_unregister +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbd406c6 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xcbe96de5 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xcbeac4be hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcbeb8c3b blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0xcbeb9b62 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xcbfdd369 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0xcc0bf118 d_move +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc332f2d i8042_remove_filter +EXPORT_SYMBOL vmlinux 0xcc4d1bfb atomic64_read_cx8 +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc695517 ab3100_event_register +EXPORT_SYMBOL vmlinux 0xcc72e1ce import_iovec +EXPORT_SYMBOL vmlinux 0xcc77571e blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0xcc794e09 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0xcc7c03d6 unlink_framebuffer +EXPORT_SYMBOL vmlinux 0xcc82add3 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xcc838223 __pte2cachemode_tbl +EXPORT_SYMBOL vmlinux 0xcc8897d6 inode_add_bytes +EXPORT_SYMBOL vmlinux 0xcc8d3f4f acpi_os_execute +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccd59704 vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0xcce2bfa8 always_delete_dentry +EXPORT_SYMBOL vmlinux 0xccfef64f skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xcd07bbf1 unlock_page +EXPORT_SYMBOL vmlinux 0xcd10fb95 blk_init_tags +EXPORT_SYMBOL vmlinux 0xcd13dc7c ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xcd1b095f page_waitqueue +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd3835fd devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0xcd3c50f9 ip6_frag_match +EXPORT_SYMBOL vmlinux 0xcd508f09 seq_vprintf +EXPORT_SYMBOL vmlinux 0xcd5139e3 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0xcd5f8f45 lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0xcd62e080 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0xcdb34808 phy_start_aneg +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdc840c1 dev_trans_start +EXPORT_SYMBOL vmlinux 0xcde0f4ed nf_log_set +EXPORT_SYMBOL vmlinux 0xcde5347a copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xcde946d2 padata_alloc +EXPORT_SYMBOL vmlinux 0xcdf4ac53 phy_connect +EXPORT_SYMBOL vmlinux 0xcdff8344 touch_buffer +EXPORT_SYMBOL vmlinux 0xce008c7b iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0xce1ac7b5 d_add_ci +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce2c45cc wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xce2de92b rfkill_alloc +EXPORT_SYMBOL vmlinux 0xce31538e inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xce484899 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xce4904a4 acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce633c74 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xce703142 locks_copy_lock +EXPORT_SYMBOL vmlinux 0xce7c0abe d_delete +EXPORT_SYMBOL vmlinux 0xce9267f0 inet_del_offload +EXPORT_SYMBOL vmlinux 0xce952dd1 nvm_register +EXPORT_SYMBOL vmlinux 0xce9e41e9 lockref_get +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xcead9802 dev_err +EXPORT_SYMBOL vmlinux 0xcebbec8a dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0xcec77476 sg_miter_skip +EXPORT_SYMBOL vmlinux 0xcecca5b7 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xcedfc84d lockref_mark_dead +EXPORT_SYMBOL vmlinux 0xcee48e08 qdisc_list_del +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefa46cc kern_path_create +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf1ef97b mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xcf48f5d2 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xcf4cf4e4 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0xcf661f24 vm_map_ram +EXPORT_SYMBOL vmlinux 0xcf6cfe1f msrs_free +EXPORT_SYMBOL vmlinux 0xcf752296 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xcf8326ca mfd_add_devices +EXPORT_SYMBOL vmlinux 0xcfb64c39 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xcfbeef6b km_state_notify +EXPORT_SYMBOL vmlinux 0xcfd0ef01 init_buffer +EXPORT_SYMBOL vmlinux 0xcfe05d4d register_kmmio_probe +EXPORT_SYMBOL vmlinux 0xcff2af30 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xd01257b1 mdiobus_read +EXPORT_SYMBOL vmlinux 0xd0181555 sock_no_mmap +EXPORT_SYMBOL vmlinux 0xd03f4116 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0xd0431189 blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd0958b0b qdisc_destroy +EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a90e79 kset_register +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0ba4f55 __getblk_gfp +EXPORT_SYMBOL vmlinux 0xd0d8621b strlen +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f2eb0b flow_cache_lookup +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0f72590 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd0ff78da nvm_erase_blk +EXPORT_SYMBOL vmlinux 0xd1001d20 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xd135b79d unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xd15f9646 fb_is_primary_device +EXPORT_SYMBOL vmlinux 0xd1652a93 acpi_info +EXPORT_SYMBOL vmlinux 0xd174ac5e generic_ro_fops +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd196c9be kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xd1a3b2b2 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xd1a55eb7 tty_name +EXPORT_SYMBOL vmlinux 0xd1a77914 md_error +EXPORT_SYMBOL vmlinux 0xd1c84dfb hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings +EXPORT_SYMBOL vmlinux 0xd1fe435c get_gendisk +EXPORT_SYMBOL vmlinux 0xd202affd jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xd2064e2f idr_replace +EXPORT_SYMBOL vmlinux 0xd20f3020 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xd213e4c0 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0xd2302702 max8998_write_reg +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd255ea09 inode_init_always +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd261620b neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xd263dc24 dqget +EXPORT_SYMBOL vmlinux 0xd272b7b6 tcp_conn_request +EXPORT_SYMBOL vmlinux 0xd27a3649 kernel_sendpage +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd282fae3 input_reset_device +EXPORT_SYMBOL vmlinux 0xd28305d5 register_xen_selfballooning +EXPORT_SYMBOL vmlinux 0xd28f1b7f inet_sendmsg +EXPORT_SYMBOL vmlinux 0xd28fdc50 tty_lock +EXPORT_SYMBOL vmlinux 0xd2ae4fd1 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xd2af138b reservation_ww_class +EXPORT_SYMBOL vmlinux 0xd2bef883 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xd2cddb9a phy_set_max_speed +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2e6a582 acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0xd2eaa399 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xd2fb3cd0 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xd300a780 misc_register +EXPORT_SYMBOL vmlinux 0xd302da4f uart_resume_port +EXPORT_SYMBOL vmlinux 0xd30b5c52 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0xd3a10191 sock_get_timestamp +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3e1a232 kmap_atomic_prot +EXPORT_SYMBOL vmlinux 0xd3e6aa82 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xd3fdc235 fsync_bdev +EXPORT_SYMBOL vmlinux 0xd40e0393 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xd41d64d5 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xd41e2c46 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0xd43eb664 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xd455f02f sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xd45ac936 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd4a0bf7d mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0xd4ae7bb8 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xd4ba7dcc input_unregister_handler +EXPORT_SYMBOL vmlinux 0xd4ba8512 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xd4be636a __devm_release_region +EXPORT_SYMBOL vmlinux 0xd4d7c91c bitmap_end_sync +EXPORT_SYMBOL vmlinux 0xd4e155d8 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0xd4fb4efd cdrom_open +EXPORT_SYMBOL vmlinux 0xd50398c4 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xd50fef48 acpi_detach_data +EXPORT_SYMBOL vmlinux 0xd5228c29 pv_cpu_ops +EXPORT_SYMBOL vmlinux 0xd53d411e pci_assign_resource +EXPORT_SYMBOL vmlinux 0xd53d8384 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0xd556b5f7 tso_build_hdr +EXPORT_SYMBOL vmlinux 0xd55b0303 filemap_fault +EXPORT_SYMBOL vmlinux 0xd56c14c7 udp_poll +EXPORT_SYMBOL vmlinux 0xd5816972 __quota_error +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd59abb84 phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0xd59b5372 d_obtain_alias +EXPORT_SYMBOL vmlinux 0xd5c227b0 security_inode_readlink +EXPORT_SYMBOL vmlinux 0xd5d01d31 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xd5d51c9c blk_rq_init +EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd6454206 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd64f9900 block_truncate_page +EXPORT_SYMBOL vmlinux 0xd684a99a inet_frag_kill +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68e1d1b _raw_read_trylock +EXPORT_SYMBOL vmlinux 0xd6a16f49 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0xd6b16ddd input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace +EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz +EXPORT_SYMBOL vmlinux 0xd6b551e5 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xd6c64c47 dump_emit +EXPORT_SYMBOL vmlinux 0xd6cf1372 isapnp_protocol +EXPORT_SYMBOL vmlinux 0xd6e11259 key_put +EXPORT_SYMBOL vmlinux 0xd6e2e11b abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6ffaf2f netlink_unicast +EXPORT_SYMBOL vmlinux 0xd7038e24 udp_sendmsg +EXPORT_SYMBOL vmlinux 0xd71598ff pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xd718ce32 __devm_request_region +EXPORT_SYMBOL vmlinux 0xd730959d seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd76213eb file_open_root +EXPORT_SYMBOL vmlinux 0xd796016a create_empty_buffers +EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write +EXPORT_SYMBOL vmlinux 0xd79dca31 param_get_bool +EXPORT_SYMBOL vmlinux 0xd79fcc20 nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0xd7a0efd2 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0xd7b33008 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0xd7b3c5a3 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0xd7b47a85 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0xd7c17776 phy_attach +EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7f2403e lock_sock_nested +EXPORT_SYMBOL vmlinux 0xd834b634 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xd838e8e9 setup_arg_pages +EXPORT_SYMBOL vmlinux 0xd8431cb0 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xd8511217 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xd85833cb __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0xd85e8ded tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xd861d0f7 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xd862b783 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a870de lookup_one_len +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8d79dbd mnt_set_expiry +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8f0512a neigh_seq_next +EXPORT_SYMBOL vmlinux 0xd906f2b6 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xd9091363 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0xd9129c84 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xd92abcb3 make_kprojid +EXPORT_SYMBOL vmlinux 0xd92d39db xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xd92e2dca tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xd94322e7 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0xd94f4a41 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xd957fa29 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xd966ddc2 __do_once_done +EXPORT_SYMBOL vmlinux 0xd969b2c7 amd_e400_c1e_detected +EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu +EXPORT_SYMBOL vmlinux 0xd98044ed scsi_device_put +EXPORT_SYMBOL vmlinux 0xd9805555 vc_resize +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd98d7af0 tty_free_termios +EXPORT_SYMBOL vmlinux 0xd9a22331 blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0xd9a8fc8d neigh_parms_release +EXPORT_SYMBOL vmlinux 0xd9b7b30a starget_for_each_device +EXPORT_SYMBOL vmlinux 0xd9d3bcd3 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9ea9c83 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0xd9fc64cb security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0xd9ffb270 tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xda04c414 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xda08c0d7 pcibios_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xda2606ac tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda40dce8 dma_pool_create +EXPORT_SYMBOL vmlinux 0xda45f15a fifo_set_limit +EXPORT_SYMBOL vmlinux 0xda487be0 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xda56b382 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xda5cc583 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0xda658432 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda8fd495 isapnp_write_byte +EXPORT_SYMBOL vmlinux 0xda9697c7 neigh_for_each +EXPORT_SYMBOL vmlinux 0xda9d8acd blk_start_queue_async +EXPORT_SYMBOL vmlinux 0xdaa57ec3 totalhigh_pages +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdadfaa5c read_code +EXPORT_SYMBOL vmlinux 0xdae2640e dev_mc_del +EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg +EXPORT_SYMBOL vmlinux 0xdb40d4fe tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xdb44ad8a devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xdb54101d padata_start +EXPORT_SYMBOL vmlinux 0xdb62f260 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xdb73b15a from_kprojid +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb7fc98b jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xdb7fccc6 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0xdb870afd kernel_param_lock +EXPORT_SYMBOL vmlinux 0xdb9c126f cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0xdbae5332 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xdbafa0f7 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0xdbb45b2f find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xdbc2eb63 vga_switcheroo_get_client_state +EXPORT_SYMBOL vmlinux 0xdbc7079e generic_readlink +EXPORT_SYMBOL vmlinux 0xdbf79540 pci_bus_get +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc250298 led_set_brightness +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc48a93b register_sysctl_table +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc57f532 acpi_install_gpe_handler +EXPORT_SYMBOL vmlinux 0xdc71652e bio_uncopy_user +EXPORT_SYMBOL vmlinux 0xdcbdc352 pci_clear_master +EXPORT_SYMBOL vmlinux 0xdcc05761 generic_write_checks +EXPORT_SYMBOL vmlinux 0xdcc6170c block_write_begin +EXPORT_SYMBOL vmlinux 0xdcd1b990 bdgrab +EXPORT_SYMBOL vmlinux 0xdcece50b lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xdcef6221 skb_split +EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat +EXPORT_SYMBOL vmlinux 0xdd30f62c mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0xdd3a8794 dev_add_pack +EXPORT_SYMBOL vmlinux 0xdd3dfcec kunmap +EXPORT_SYMBOL vmlinux 0xdd4e1664 vfs_getattr +EXPORT_SYMBOL vmlinux 0xdd83ac3c fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0xddb37d02 proc_dointvec +EXPORT_SYMBOL vmlinux 0xddb56ad4 simple_follow_link +EXPORT_SYMBOL vmlinux 0xddbfcf54 set_groups +EXPORT_SYMBOL vmlinux 0xddd15775 swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xddd43254 pcie_set_mps +EXPORT_SYMBOL vmlinux 0xddf8f16b vc_cons +EXPORT_SYMBOL vmlinux 0xde16dc16 tboot +EXPORT_SYMBOL vmlinux 0xde18ce15 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xde251ad3 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0xde3c7d62 rtnl_create_link +EXPORT_SYMBOL vmlinux 0xde3de9d2 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xde478ebd inet_sendpage +EXPORT_SYMBOL vmlinux 0xde51cbc4 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xde6915bf sock_update_memcg +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdeb4b2dc cdrom_ioctl +EXPORT_SYMBOL vmlinux 0xded931f3 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0xdedb6611 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0xdee686fa uart_match_port +EXPORT_SYMBOL vmlinux 0xdee8ad49 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0xdef8de12 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0xdf0da3cc acpi_get_devices +EXPORT_SYMBOL vmlinux 0xdf12a927 acpi_check_dsm +EXPORT_SYMBOL vmlinux 0xdf13f31b rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0xdf1427e5 idr_remove +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf2c5011 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xdf2d0175 generic_block_bmap +EXPORT_SYMBOL vmlinux 0xdf2e2a3c dev_driver_string +EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update +EXPORT_SYMBOL vmlinux 0xdf47655a abx500_register_ops +EXPORT_SYMBOL vmlinux 0xdf4fc797 __register_nmi_handler +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf5b0960 inetdev_by_index +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf6f4f87 nvm_register_target +EXPORT_SYMBOL vmlinux 0xdf897ac7 unregister_console +EXPORT_SYMBOL vmlinux 0xdf8b8837 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf946a65 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0xdf9b4aa1 dst_release +EXPORT_SYMBOL vmlinux 0xdfa8447b get_acl +EXPORT_SYMBOL vmlinux 0xdfaea400 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0xdfb6406d kernel_bind +EXPORT_SYMBOL vmlinux 0xdfc16cfa bio_init +EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init +EXPORT_SYMBOL vmlinux 0xdfc94b1a input_register_handle +EXPORT_SYMBOL vmlinux 0xdfd3a075 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0xdfe0b2fe input_event +EXPORT_SYMBOL vmlinux 0xdfe44d35 mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xe00195b7 mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0xe00e1a5c dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0xe0247756 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe05f33e9 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe0778682 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe08f148b pnp_device_attach +EXPORT_SYMBOL vmlinux 0xe0a16a20 intel_scu_ipc_i2c_cntrl +EXPORT_SYMBOL vmlinux 0xe0ac8bd2 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b2adc4 cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0xe1024410 blkdev_put +EXPORT_SYMBOL vmlinux 0xe112fdd3 kfree_skb_list +EXPORT_SYMBOL vmlinux 0xe12f2fb9 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe1546095 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xe15b08a9 netlink_net_capable +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe17f5d27 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0xe188f816 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xe189e7a2 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xe18a223a __register_chrdev +EXPORT_SYMBOL vmlinux 0xe18c814c bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xe19e7a92 scsi_device_get +EXPORT_SYMBOL vmlinux 0xe1a211aa inet6_protos +EXPORT_SYMBOL vmlinux 0xe1acc704 pci_disable_device +EXPORT_SYMBOL vmlinux 0xe1b06b41 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xe1dee864 __find_get_block +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe20391cb proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0xe221668c sock_no_listen +EXPORT_SYMBOL vmlinux 0xe2325f13 netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe259ae9e _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2a8aec7 netlink_set_err +EXPORT_SYMBOL vmlinux 0xe2a98e0c nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2e2b8c1 vfs_writef +EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup +EXPORT_SYMBOL vmlinux 0xe2ff7e4f blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xe3197208 proc_dostring +EXPORT_SYMBOL vmlinux 0xe319eb24 acpi_pci_osc_control_set +EXPORT_SYMBOL vmlinux 0xe330092a agp_bridge +EXPORT_SYMBOL vmlinux 0xe338fdb3 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xe3399a75 native_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0xe3889710 ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xe39c5d0e unregister_cdrom +EXPORT_SYMBOL vmlinux 0xe3a2705a scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3c863dc pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0xe3d1b30c load_nls +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3da2870 bdi_register +EXPORT_SYMBOL vmlinux 0xe3e4ea50 vfs_getxattr_alloc +EXPORT_SYMBOL vmlinux 0xe3fa0635 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0xe3fb6c55 finish_open +EXPORT_SYMBOL vmlinux 0xe40b3715 dev_addr_flush +EXPORT_SYMBOL vmlinux 0xe4200aa1 skb_pad +EXPORT_SYMBOL vmlinux 0xe42fda60 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0xe445db4a acpi_check_address_range +EXPORT_SYMBOL vmlinux 0xe4536094 sock_alloc_file +EXPORT_SYMBOL vmlinux 0xe47530f5 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xe475e6b1 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe48c8a09 bio_phys_segments +EXPORT_SYMBOL vmlinux 0xe48e0a51 vlan_vid_add +EXPORT_SYMBOL vmlinux 0xe4b77305 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0xe4c17741 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xe4c1cba7 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xe4cce6f7 set_disk_ro +EXPORT_SYMBOL vmlinux 0xe4daa3c7 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe50f904f intel_scu_ipc_ioread16 +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe528a3c8 generic_start_io_acct +EXPORT_SYMBOL vmlinux 0xe52b805a fddi_change_mtu +EXPORT_SYMBOL vmlinux 0xe530d757 acpi_clear_gpe +EXPORT_SYMBOL vmlinux 0xe540eb1b alloc_fddidev +EXPORT_SYMBOL vmlinux 0xe5479e33 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xe56cf129 kset_unregister +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe57d10cf dev_uc_init +EXPORT_SYMBOL vmlinux 0xe5815f8a _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe58bf807 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0xe5949a97 __nd_iostat_start +EXPORT_SYMBOL vmlinux 0xe596dd79 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xe5b28747 vme_irq_handler +EXPORT_SYMBOL vmlinux 0xe5b40047 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0xe5bacf65 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5ec60a5 dst_init +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe5f16a5a sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xe6162877 down_killable +EXPORT_SYMBOL vmlinux 0xe62ee578 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xe632f9b2 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xe636cd14 __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0xe64d98fe rdmsr_safe_regs +EXPORT_SYMBOL vmlinux 0xe657fe92 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xe6711c43 km_policy_expired +EXPORT_SYMBOL vmlinux 0xe67c941c reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe697d498 swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0xe6b281b7 sock_release +EXPORT_SYMBOL vmlinux 0xe6c588e7 clear_wb_congested +EXPORT_SYMBOL vmlinux 0xe6d9f2a4 sock_kmalloc +EXPORT_SYMBOL vmlinux 0xe6eae207 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xe6ebab82 dqput +EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update +EXPORT_SYMBOL vmlinux 0xe6ee4f8d md_set_array_sectors +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe70d7038 netdev_change_features +EXPORT_SYMBOL vmlinux 0xe7121f9d __mdiobus_register +EXPORT_SYMBOL vmlinux 0xe716baed acpi_unregister_ioapic +EXPORT_SYMBOL vmlinux 0xe71ff1ab __vfs_write +EXPORT_SYMBOL vmlinux 0xe7758f4f proto_register +EXPORT_SYMBOL vmlinux 0xe781b5f6 intel_scu_ipc_readv +EXPORT_SYMBOL vmlinux 0xe78c266b iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0xe7952efd i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7afbf73 __serio_register_port +EXPORT_SYMBOL vmlinux 0xe7b6315e kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0xe7bccdc4 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xe7c5ad5e add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0xe7caa30e sk_alloc +EXPORT_SYMBOL vmlinux 0xe7ccc205 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7de18f7 tty_do_resize +EXPORT_SYMBOL vmlinux 0xe7fece48 pci_bus_type +EXPORT_SYMBOL vmlinux 0xe813b4ad delete_from_page_cache +EXPORT_SYMBOL vmlinux 0xe816916c register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xe81b1d11 bio_put +EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe82ec8ec kmem_cache_size +EXPORT_SYMBOL vmlinux 0xe8324477 key_unlink +EXPORT_SYMBOL vmlinux 0xe83f27c8 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xe84e11a0 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0xe87025f0 acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss +EXPORT_SYMBOL vmlinux 0xe87b2edd sg_copy_buffer +EXPORT_SYMBOL vmlinux 0xe88bc9ef pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xe8912d2a simple_dname +EXPORT_SYMBOL vmlinux 0xe89e62fe tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8b61f14 generic_read_dir +EXPORT_SYMBOL vmlinux 0xe8b68849 wrmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xe8bb8bca xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8c97b2c pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xe8db8dd2 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe93f6042 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xe94f068e fb_show_logo +EXPORT_SYMBOL vmlinux 0xe94ff699 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0xe9782924 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xe97cd794 nvm_put_blk_unlocked +EXPORT_SYMBOL vmlinux 0xe9935870 inode_set_bytes +EXPORT_SYMBOL vmlinux 0xe997667b wrmsr_on_cpu +EXPORT_SYMBOL vmlinux 0xe9aa334b tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xe9acfac4 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0xe9b73c0a get_task_io_context +EXPORT_SYMBOL vmlinux 0xe9b8c139 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0xe9da85ab __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xe9ec943e generic_make_request +EXPORT_SYMBOL vmlinux 0xe9f154b4 __dquot_free_space +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea1472cc pci_pme_capable +EXPORT_SYMBOL vmlinux 0xea2ac245 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xea3f725d _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0xea44f132 inet_listen +EXPORT_SYMBOL vmlinux 0xea48708b inet_stream_ops +EXPORT_SYMBOL vmlinux 0xea76ffdb ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0xea7987f1 key_update +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xea7b8a44 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xea83e4a2 md_register_thread +EXPORT_SYMBOL vmlinux 0xea8575fb mdiobus_scan +EXPORT_SYMBOL vmlinux 0xea8a4b55 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xea90bdd3 acpi_attach_data +EXPORT_SYMBOL vmlinux 0xea9e741b get_phy_device +EXPORT_SYMBOL vmlinux 0xeaa2cf50 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0xead37484 follow_down_one +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeae3eda4 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xeae8cefa wireless_send_event +EXPORT_SYMBOL vmlinux 0xeaf4d40e jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0xeb017985 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xeb0ec7b3 sock_i_uid +EXPORT_SYMBOL vmlinux 0xeb290245 tcp_read_sock +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb371a53 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xeb44404e con_copy_unimap +EXPORT_SYMBOL vmlinux 0xeb527d0f genphy_setup_forced +EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xeb969f1a scsi_print_command +EXPORT_SYMBOL vmlinux 0xeba70207 clk_get +EXPORT_SYMBOL vmlinux 0xebb322fd iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xebb3e61e __napi_complete +EXPORT_SYMBOL vmlinux 0xebff5cf5 fence_signal_locked +EXPORT_SYMBOL vmlinux 0xec091659 cfb_imageblit +EXPORT_SYMBOL vmlinux 0xec0e9ccd dev_deactivate +EXPORT_SYMBOL vmlinux 0xec10eb01 pci_find_bus +EXPORT_SYMBOL vmlinux 0xec1aa6ef memzero_explicit +EXPORT_SYMBOL vmlinux 0xec1e5d57 netdev_crit +EXPORT_SYMBOL vmlinux 0xec214050 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec6db012 sk_net_capable +EXPORT_SYMBOL vmlinux 0xec784d44 account_page_dirtied +EXPORT_SYMBOL vmlinux 0xecbb5d7d unregister_shrinker +EXPORT_SYMBOL vmlinux 0xecbcb8bb radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0xeccd3e0c acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xecd5b740 dev_emerg +EXPORT_SYMBOL vmlinux 0xece187c2 phy_start +EXPORT_SYMBOL vmlinux 0xece69dbd follow_pfn +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecf48cdc trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0xecfc80f5 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0xecfd85a5 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0xed184090 lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0xed54d6f9 nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed73c3ac xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xedb41269 neigh_table_clear +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc39fd0 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0xedd1e4ba uart_remove_one_port +EXPORT_SYMBOL vmlinux 0xeded8779 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xedfcf702 dquot_get_state +EXPORT_SYMBOL vmlinux 0xee11f82a generic_show_options +EXPORT_SYMBOL vmlinux 0xee154ae0 pci_select_bars +EXPORT_SYMBOL vmlinux 0xee1abb39 blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0xee25e124 skb_copy +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee3563a1 tso_start +EXPORT_SYMBOL vmlinux 0xee64efb4 __genl_register_family +EXPORT_SYMBOL vmlinux 0xee7b11a1 kobject_get +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xeea7ae56 pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeec2c7cf ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0xeec957da mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0xeed30eb9 from_kgid +EXPORT_SYMBOL vmlinux 0xeee37179 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xeee70824 init_task +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xeef2d845 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xeefcf21b devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0xeefd2a13 iget5_locked +EXPORT_SYMBOL vmlinux 0xef02cf09 fsnotify_put_group +EXPORT_SYMBOL vmlinux 0xef179d55 ppp_input +EXPORT_SYMBOL vmlinux 0xef70c1a1 acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0xef76000a simple_transaction_read +EXPORT_SYMBOL vmlinux 0xef89117e gnttab_free_pages +EXPORT_SYMBOL vmlinux 0xef972c1c inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override +EXPORT_SYMBOL vmlinux 0xefaeb64f netdev_warn +EXPORT_SYMBOL vmlinux 0xefd07660 page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xefda8d99 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xefdd0978 nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefe099c3 acpi_get_event_status +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0058440 mutex_trylock +EXPORT_SYMBOL vmlinux 0xf00cd39e tty_write_room +EXPORT_SYMBOL vmlinux 0xf01441f8 sk_dst_check +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf05045e9 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf062576b ucs2_utf8size +EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be +EXPORT_SYMBOL vmlinux 0xf0671e03 swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0xf07b8c35 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xf07da9b8 pcie_get_mps +EXPORT_SYMBOL vmlinux 0xf08242c2 finish_wait +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf0bf270b abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xf0c218a1 security_path_chmod +EXPORT_SYMBOL vmlinux 0xf0dd912e cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0xf0e30ebf dm_kobject_release +EXPORT_SYMBOL vmlinux 0xf0e530ee down_write +EXPORT_SYMBOL vmlinux 0xf0eaffce _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 +EXPORT_SYMBOL vmlinux 0xf11543ff find_first_zero_bit +EXPORT_SYMBOL vmlinux 0xf117e8a7 napi_disable +EXPORT_SYMBOL vmlinux 0xf126e885 tty_port_close_start +EXPORT_SYMBOL vmlinux 0xf12d54df scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xf1398e2e lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0xf13daeae set_pages_wb +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf14d8d27 security_d_instantiate +EXPORT_SYMBOL vmlinux 0xf1535796 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0xf153a9f4 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xf1687b4b kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xf1700da8 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0xf177bbdf neigh_ifdown +EXPORT_SYMBOL vmlinux 0xf18242e1 atomic64_set_cx8 +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1dbcba8 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xf1deabf2 div64_u64 +EXPORT_SYMBOL vmlinux 0xf1e0a57e phy_print_status +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf20567d5 __block_write_begin +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf22ea90c i2c_verify_client +EXPORT_SYMBOL vmlinux 0xf23b3c07 phy_device_register +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf26bc471 first_ec +EXPORT_SYMBOL vmlinux 0xf28ed6e2 machine_to_phys_nr +EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered +EXPORT_SYMBOL vmlinux 0xf2ad74df d_splice_alias +EXPORT_SYMBOL vmlinux 0xf2ae9606 napi_gro_receive +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2de1c62 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xf2f5a555 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xf312cb9d ucs2_strsize +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf313eb4e devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xf31ad482 agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf3517fe2 nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0xf35396eb sock_i_ino +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf35b60db gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xf362a642 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xf36a22d3 acpi_pm_device_run_wake +EXPORT_SYMBOL vmlinux 0xf3761d75 phy_init_hw +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xf3986b06 acpi_os_map_generic_address +EXPORT_SYMBOL vmlinux 0xf39b6d45 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0xf3d80e7e nobh_truncate_page +EXPORT_SYMBOL vmlinux 0xf3e0c631 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf40162a3 neigh_xmit +EXPORT_SYMBOL vmlinux 0xf406410f textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0xf40b2297 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xf41fa52f i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf4467bef __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0xf44e9632 generic_write_end +EXPORT_SYMBOL vmlinux 0xf45c0666 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf4a5c213 avail_to_resrv_perfctr_nmi_bit +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4bea797 blk_stop_queue +EXPORT_SYMBOL vmlinux 0xf4cd1569 elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0xf4d3cf37 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0xf4db2967 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf50175b5 nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0xf502d273 acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0xf502fcd0 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0xf5074e93 dev_notice +EXPORT_SYMBOL vmlinux 0xf51ae235 touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xf5238b60 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0xf536d22e acpi_set_gpe_wake_mask +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf54ef472 simple_rmdir +EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set +EXPORT_SYMBOL vmlinux 0xf5a77ecc arp_send +EXPORT_SYMBOL vmlinux 0xf5adf797 seq_open_private +EXPORT_SYMBOL vmlinux 0xf5b10e67 acpi_install_global_event_handler +EXPORT_SYMBOL vmlinux 0xf5b7c1d1 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5dbf400 __seq_open_private +EXPORT_SYMBOL vmlinux 0xf5dce586 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xf5e4e88c param_get_long +EXPORT_SYMBOL vmlinux 0xf5e5a3a1 neigh_event_ns +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf61d3fa4 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xf62a70d4 irq_set_chip +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf66ad7d0 vfs_statfs +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf67ebbe2 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xf6873546 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xf6899c5a acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0xf689fcf5 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xf69364b8 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xf693a145 irq_stat +EXPORT_SYMBOL vmlinux 0xf699aeb4 pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0xf6b17c99 bio_chain +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6bdf8bf padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xf6be91fc xfrm_register_km +EXPORT_SYMBOL vmlinux 0xf6ccd0e8 dev_mc_add +EXPORT_SYMBOL vmlinux 0xf6cf6ae8 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xf6df747d neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xf6e220b1 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xf6e8c493 give_up_console +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf71174b6 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xf712c8aa mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0xf726d02f atomic64_add_unless_cx8 +EXPORT_SYMBOL vmlinux 0xf72ccadc simple_pin_fs +EXPORT_SYMBOL vmlinux 0xf72ea72d nf_setsockopt +EXPORT_SYMBOL vmlinux 0xf72eba7d vga_get +EXPORT_SYMBOL vmlinux 0xf736a986 current_in_userns +EXPORT_SYMBOL vmlinux 0xf745cb16 atomic64_sub_return_cx8 +EXPORT_SYMBOL vmlinux 0xf75178b7 qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0xf753c5ec vm_insert_pfn +EXPORT_SYMBOL vmlinux 0xf7553f5f eth_mac_addr +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf764868a udplite_table +EXPORT_SYMBOL vmlinux 0xf771eb9e iov_iter_alignment +EXPORT_SYMBOL vmlinux 0xf7800caa blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xf788424d register_sysctl +EXPORT_SYMBOL vmlinux 0xf7891779 gen_pool_free +EXPORT_SYMBOL vmlinux 0xf79b5243 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0xf79e97cd acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0xf7a2fa89 dev_open +EXPORT_SYMBOL vmlinux 0xf7b7b94c pnp_find_card +EXPORT_SYMBOL vmlinux 0xf7c4514b request_firmware +EXPORT_SYMBOL vmlinux 0xf7c75efe vmalloc_to_page +EXPORT_SYMBOL vmlinux 0xf7c9e039 sock_init_data +EXPORT_SYMBOL vmlinux 0xf7d09729 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0xf7e2bf17 vme_irq_request +EXPORT_SYMBOL vmlinux 0xf7ea1915 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0xf7ea503e submit_bio_wait +EXPORT_SYMBOL vmlinux 0xf8050fac acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf8307a25 mapping_tagged +EXPORT_SYMBOL vmlinux 0xf839286e pci_get_subsys +EXPORT_SYMBOL vmlinux 0xf8482427 swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0xf876ab21 dev_disable_lro +EXPORT_SYMBOL vmlinux 0xf88e0ee2 acpi_get_table_header +EXPORT_SYMBOL vmlinux 0xf89e6a80 __brelse +EXPORT_SYMBOL vmlinux 0xf8a38cdb blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0xf8b3ecfe devm_free_irq +EXPORT_SYMBOL vmlinux 0xf8bb6de9 ata_dev_printk +EXPORT_SYMBOL vmlinux 0xf8ec3cdc blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xf8efa43e tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf908c78e mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0xf9091a35 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0xf913fa34 key_validate +EXPORT_SYMBOL vmlinux 0xf924e7b4 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run +EXPORT_SYMBOL vmlinux 0xf946638c simple_nosetlease +EXPORT_SYMBOL vmlinux 0xf96d4ba9 genl_unregister_family +EXPORT_SYMBOL vmlinux 0xf975ca2e __tcf_hash_release +EXPORT_SYMBOL vmlinux 0xf99b7c69 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9aa5f2f bio_split +EXPORT_SYMBOL vmlinux 0xf9c37861 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0xf9c52317 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0xf9cb98a0 ps2_command +EXPORT_SYMBOL vmlinux 0xf9d88d18 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xf9dd0e61 eth_header_cache +EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf +EXPORT_SYMBOL vmlinux 0xf9eb1ae6 keyring_alloc +EXPORT_SYMBOL vmlinux 0xf9fb73ff sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0xf9fc68b1 clk_register_clkdevs +EXPORT_SYMBOL vmlinux 0xf9ff9c83 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0xfa2f76f9 param_set_ullong +EXPORT_SYMBOL vmlinux 0xfa37d24e drop_nlink +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa574417 kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0xfa577eff bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa6f3d3a get_disk +EXPORT_SYMBOL vmlinux 0xfa764936 __bread_gfp +EXPORT_SYMBOL vmlinux 0xfa78ac9e dev_get_nest_level +EXPORT_SYMBOL vmlinux 0xfa8608f9 serio_reconnect +EXPORT_SYMBOL vmlinux 0xfa9b7364 __get_user_pages +EXPORT_SYMBOL vmlinux 0xfa9b8e95 udp_ioctl +EXPORT_SYMBOL vmlinux 0xfaad11c0 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfad72d4e clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xfade5264 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL vmlinux 0xfafe9913 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xfb0443fb acpi_get_parent +EXPORT_SYMBOL vmlinux 0xfb249197 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xfb28de91 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0xfb2c5b8a up_write +EXPORT_SYMBOL vmlinux 0xfb2e8071 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0xfb351660 eth_validate_addr +EXPORT_SYMBOL vmlinux 0xfb3e2798 user_path_at_empty +EXPORT_SYMBOL vmlinux 0xfb468e2f xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0xfb4bbf88 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0xfb63659e vga_put +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb6e6146 set_trace_device +EXPORT_SYMBOL vmlinux 0xfb707fc3 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xfb80c7a0 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xfb8411ba tcf_hash_check +EXPORT_SYMBOL vmlinux 0xfb8c21e8 disk_stack_limits +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbb76a21 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xfbbd1d4b eisa_driver_register +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbd12b07 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xfbd59fba tty_schedule_flip +EXPORT_SYMBOL vmlinux 0xfbd71298 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xfbf898aa sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc217201 flush_signals +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc47c8d8 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xfc485219 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0xfc50143a phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0xfc562165 acpi_run_osc +EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0xfc6a4d9e pci_dev_driver +EXPORT_SYMBOL vmlinux 0xfc734327 queued_read_lock_slowpath +EXPORT_SYMBOL vmlinux 0xfc872fd1 get_ibs_caps +EXPORT_SYMBOL vmlinux 0xfc8bd242 dquot_alloc +EXPORT_SYMBOL vmlinux 0xfc8e7a0c eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0xfca44d66 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xfca7281a udplite_prot +EXPORT_SYMBOL vmlinux 0xfcac0d40 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0xfcbc9c92 inet6_del_offload +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcc34c6e sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xfcc7ea83 dma_sync_wait +EXPORT_SYMBOL vmlinux 0xfcd67ff8 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfcfe0ed1 lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0xfd1e5b2b xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0xfd33b5fa cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xfd5158a8 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xfd5f431c led_blink_set_oneshot +EXPORT_SYMBOL vmlinux 0xfd6d938c scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0xfd72d809 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0xfd8d7725 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfd99b95c kfree_skb +EXPORT_SYMBOL vmlinux 0xfda182c5 generic_delete_inode +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0xfdeddc2b vfs_readv +EXPORT_SYMBOL vmlinux 0xfdf1726a security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfdfc49a8 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xfdfd6c90 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe047ce6 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0xfe13c522 acpi_install_gpe_raw_handler +EXPORT_SYMBOL vmlinux 0xfe4201cc mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0xfe44c90e tcf_hash_create +EXPORT_SYMBOL vmlinux 0xfe5400cf gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0xfe5d30e9 _raw_write_trylock +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe5e7cb2 devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0xfe6729fa fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0xfe6a1108 bdi_destroy +EXPORT_SYMBOL vmlinux 0xfe7c18f1 iov_iter_advance +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 +EXPORT_SYMBOL vmlinux 0xfea2d11b invalidate_bdev +EXPORT_SYMBOL vmlinux 0xfeb3a246 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0xfeb56c9c locks_free_lock +EXPORT_SYMBOL vmlinux 0xfec52728 kmap +EXPORT_SYMBOL vmlinux 0xfeca7590 radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfee4e69d bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xfeeb6c7b fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0xfef2c78f idr_get_next +EXPORT_SYMBOL vmlinux 0xfeff7368 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xff05088d inode_dio_wait +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff35d3ee default_llseek +EXPORT_SYMBOL vmlinux 0xff42eebf devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0xff480992 dump_fpu +EXPORT_SYMBOL vmlinux 0xff486019 fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0xff492250 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0xff49bc99 inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0xff4c0006 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xff63b514 __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff6c521d skb_queue_purge +EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource +EXPORT_SYMBOL vmlinux 0xff89d375 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff90920d __destroy_inode +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xffa73cda __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xffac0162 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0xffb00ae0 d_invalidate +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL_GPL arch/x86/crypto/aes-i586 0x7060bf0a crypto_aes_encrypt_x86 +EXPORT_SYMBOL_GPL arch/x86/crypto/aes-i586 0xe409b491 crypto_aes_decrypt_x86 +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x8a555f59 glue_cbc_decrypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x8f02ac4d glue_xts_crypt_128bit_one +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x91382921 glue_ecb_crypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x9a6780ac glue_xts_crypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xa19a3731 glue_cbc_encrypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xd89d24e6 glue_ctr_crypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-i586 0x28afd262 twofish_enc_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-i586 0x6f068d90 twofish_dec_blk +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00aaf935 kvm_disable_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x03c90466 kvm_set_cr3 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x05ae6df2 kvm_mmu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x060e775b __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x07c3d19b kvm_mmu_sync_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x08fa7633 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0a9167d0 kvm_arch_end_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b193b33 kvm_vcpu_is_reset_bsp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d704ed3 kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d7dcb73 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0dc17e9a kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x10f66273 kvm_valid_efer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x14b04782 kvm_vcpu_block +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x15764659 __x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x175aea24 kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1895bab3 kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x197e1881 kvm_read_guest_page_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1afc81a2 kvm_arch_start_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2124f042 kvm_read_guest_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x239638b1 kvm_emulate_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x249c9107 kvm_vcpu_uninit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x24a39d6b kvm_clear_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27189bf0 kvm_apic_set_eoi_accelerated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c3f6f88 kvm_requeue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c78b8d4 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d71cbf0 vcpu_put +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f36dfd3 kvm_cpu_get_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f636c31 kvm_spurious_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f9ee64d kvm_x86_ops +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x303646ac kvm_init_shadow_ept_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x30afefd4 cpuid_query_maxphyaddr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x317f9e6b kvm_enable_efer_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x320a6bf6 kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x345df9e4 kvm_vcpu_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x34e3d94e gfn_to_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x35714b5f kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x36ff21fc __tracepoint_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3813b776 kvm_get_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3849ae3e __tracepoint_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x398690f2 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3d244eca kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e094575 __tracepoint_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e6abae3 kvm_read_l1_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f95c7c3 kvm_inject_realmode_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3fefc45d kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x40ce1e45 __tracepoint_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x42c079d2 kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x43f4230c __tracepoint_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x44bcb7d5 kvm_set_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x46e82423 kvm_lmsw +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x47256b33 kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4769dbe0 kvm_write_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4808b01a kvm_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4950e106 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a5c0694 x86_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4b822c4f kvm_is_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4cfe6cb2 kvm_get_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e14c7d1 kvm_emulate_hypercall +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x503e1e07 kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x50569c47 reprogram_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5148acb5 kvm_mmu_slot_largepage_remove_write_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x51ec4dc2 kvm_mmu_clear_dirty_pt_masked +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x589dd03c kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59738de9 kvm_require_cpl +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5ed0a7f4 kvm_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5f3cd336 kvm_vcpu_reload_apic_access_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x61d735c1 kvm_init_shadow_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x636fd597 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x64020e10 kvm_set_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x647e78e2 kvm_set_msi_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x64b6d4cf kvm_mmu_unload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x669da1fd kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66eb6015 kvm_before_handle_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68138a79 __tracepoint_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c9f26af kvm_get_dirty_log_protect +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7214c532 kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x75b54f15 kvm_mmu_slot_leaf_clear_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x75f4d908 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7792509b kvm_set_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x780f143b kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x783d2b57 kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x78fd28ae kvm_get_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7aa64803 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7b498bd6 kvm_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ba4e6de reprogram_fixed_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7bef7c26 handle_mmio_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c59e22e __tracepoint_kvm_ple_window +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7d43ffce kvm_arch_register_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x80ecfb6b __tracepoint_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x81342242 mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x831327da kvm_max_guest_tsc_khz +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x858dfe81 kvm_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x85ce7e3d kvm_get_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8668f225 kvm_rdpmc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a87a20f load_pdptrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ce4f3ab kvm_enable_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8d703a8b kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8da01274 kvm_get_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8e1cd06f kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8e4017a7 kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x90dd9eec kvm_vcpu_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x925c6948 kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x92613a88 kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x92a86361 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x92d713dd __tracepoint_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x945fb0f3 reset_shadow_zero_bits_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96dbe382 kvm_mpx_supported +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x982bb1d0 kvm_mmu_slot_set_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x982cd932 __tracepoint_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x999939a3 kvm_get_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a216313 kvm_define_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9ba1746d kvm_mtrr_valid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9c171a59 __tracepoint_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e0a65d0 __tracepoint_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f4b9e65 kvm_fast_pio_out +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa0ec3a0a gfn_to_hva_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa35549b8 kvm_get_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa68405c8 kvm_intr_is_single_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa8e04dbd kvm_mmu_unprotect_page_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaa69a1f6 kvm_arch_has_assigned_device +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xacaaa36a kvm_get_dirty_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xacf7f97c gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xae4f4e36 kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaeb811e8 x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaf16c19e kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb05b8f83 kvm_apic_write_nodecode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1210adb gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb12dbca0 kvm_get_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb2265ca9 kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb2e2f0d9 kvm_mmu_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb2efb63b kvm_mmu_invlpg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb475e247 kvm_scale_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba9ed435 kvm_mmu_set_mmio_spte_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbac4f651 vcpu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbcc56beb kvm_inject_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbd6791d1 kvm_mtrr_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc028a5da kvm_set_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc23f3bc8 __tracepoint_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc56d75ce __kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc599bc18 kvm_max_tsc_scaling_ratio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc599fe72 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc6f23a8b kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc9a7a310 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcdebf4e1 kvm_arch_has_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0459e67 kvm_has_tsc_control +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0b2727a kvm_mmu_set_mask_ptes +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0ec3beb kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd11db233 kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd1bccd8f kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd477dd50 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd7a0743f kvm_put_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd7eb738b __tracepoint_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd8c83c4b kvm_get_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd93bbd46 gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda11af86 __tracepoint_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc894649 kvm_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdd495fea kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdd525e3f kvm_inject_pending_timer_irqs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde9c017c __tracepoint_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdee16c7e kvm_emulate_wbinvd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0ed3650 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0f036c1 kvm_task_switch +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe1a2adb6 kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe448ec75 gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe9247bfd gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe95d7403 kvm_requeue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea6bd961 kvm_after_handle_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeb937c79 kvm_set_xcr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf09a79a7 kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf0f2ab8b kvm_mmu_unprotect_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2f286c4 kvm_tsc_scaling_ratio_frac_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf41843d1 kvm_arch_unregister_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf703f488 reprogram_gp_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf88e549b kvm_require_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf992a0e9 kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf9eb882c kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf9ed6266 gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfd150053 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfd7c8221 kvm_cpu_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfdc68132 __tracepoint_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfdfa3390 kvm_inject_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfe21c0de kvm_get_cs_db_l_bits +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x28e38c6e ablk_set_key +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x49b42440 ablk_init_common +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x7e1cdb55 ablk_init +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xbc70b8ad __ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xc4fdbab1 ablk_exit +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xc85401ed ablk_decrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xcc449891 ablk_encrypt +EXPORT_SYMBOL_GPL crypto/af_alg 0x0d838c35 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x11badcb8 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0x6865a705 af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0x8a0c049a af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x96f1582d af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xae94760b af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xb384f277 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xc724ce32 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xd0f70829 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xf2ea715a af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0xf7eb9e52 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x2c1f6335 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x3f410258 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xca54ed7b async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x9a0c11e9 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xbc3e98bc async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x485a4399 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x9a181ad2 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xaf18d6e0 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xd6228067 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x0ca40a7e async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x1a81282b async_xor_val +EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x370f8546 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xbb6da58c cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xaaf6b4ba cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 +EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 +EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 +EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x3a374b4d crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x952dee36 crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/cryptd 0x54933aea cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x59d2ca54 cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x66b7f5bc cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x8317b7e2 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x966e955a cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x96a61135 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xa477203b cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xb95964c3 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xe7cd429a cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xeaebc2e7 cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey +EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey +EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table +EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table +EXPORT_SYMBOL_GPL crypto/lrw 0xdf6b1ce5 lrw_crypt +EXPORT_SYMBOL_GPL crypto/mcryptd 0x14bdd4d3 mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0x2cadc60c mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x43364c7d mcryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/mcryptd 0x4d1af656 mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/mcryptd 0xd3ab03c5 mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0xe6fc3b88 shash_ahash_mcryptd_finup +EXPORT_SYMBOL_GPL crypto/mcryptd 0xf09e7ad4 shash_ahash_mcryptd_final +EXPORT_SYMBOL_GPL crypto/mcryptd 0xf687db2c shash_ahash_mcryptd_update +EXPORT_SYMBOL_GPL crypto/mcryptd 0xfcc34001 shash_ahash_mcryptd_digest +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3cfff71a crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x9292e0ed crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xb5ad50af crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xc5f8734a crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xcd54e64b serpent_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x3b1cbeca twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey +EXPORT_SYMBOL_GPL crypto/xts 0xcdb0841c xts_crypt +EXPORT_SYMBOL_GPL drivers/acpi/nfit 0xb68fbc18 acpi_nfit_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit 0xe418edc7 acpi_nfit_attribute_groups +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x1c8984c7 acpi_smbus_unregister_callback +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x87bd07bd acpi_smbus_register_callback +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0xb9a141b0 acpi_smbus_read +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0xe1372311 acpi_smbus_write +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3b032d05 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x473829ed ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x47e43b2e ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x52d07f0d ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x57abfb3c ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5e434624 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6ecc9088 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x71c38e14 ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x81749c58 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x863c7bf3 ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8c5026c4 ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9992f3e0 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9e90d363 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb360f0fb ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc07b90cd ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc11790cd ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc230c141 ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc3e5b2de ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc73f6d46 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd620d95f ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdbbaeea3 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe7f55d7c ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xec8f7ec2 ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x052dfac3 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x1692b182 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x30b98b09 ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x30e2234c ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6165edff ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x709ff0e9 ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb3cdc4a3 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb4b655cb ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb8896826 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd061d754 ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe1f4a15b ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf318dcb5 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf3a64fbd ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xa1943188 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x02ff9464 cfag12864b_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x0ecb2e5d cfag12864b_disable +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x305dc3c6 cfag12864b_isenabled +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x3389f926 cfag12864b_enable +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x9522a342 cfag12864b_getrate +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0xc48e9d95 cfag12864b_buffer +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x297798ba __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x353c96bd __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xd3f94e7c __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xf4962b2d __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0d7ff991 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x11669dac __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3aa5757d bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x481b09e9 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x605492fc bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6e096ec1 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7152353e bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x73d4df91 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x778c3207 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x80a30b61 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x84f12b7a bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8a776233 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x997eb506 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc042b794 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc20447c6 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcab6c873 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdae27c47 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdff05795 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe0dfe6e5 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe2f32b44 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe3dbf119 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe9ec636c bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xef4ec4db bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfbc88f2f bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x0a57c4f3 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x259ec0fc btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x27f3d503 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd547390d btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xeaeb1d6e btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xef02b4c6 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1e059ffa btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1e3c70d1 btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x28fb0b41 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4eaa4317 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5cfebfb2 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x63610c0d btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6cd95538 btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x98f2d0f2 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb7d06720 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd92b310d btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf53cdd47 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfff3aecb btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0685249d btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x12430ce6 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x52d14580 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6c3ed47f btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7934f2df btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x942ecf37 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb43329ee btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbe514773 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc299af03 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc97a642a btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xca9dc946 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xdff3bef0 qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xe7d27398 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x597802c5 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xb715d908 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/char/scx200_gpio 0x835313fc scx200_gpio_ops +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x04773b60 ccp_present +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x1a968516 ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0093666d adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x06935bcc adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0e755c70 adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x10160269 adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1486b286 adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x24b11dd6 adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2ec5150e adf_dev_stop +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x30a65bb1 adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4a8b4106 adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4c12ea06 adf_response_handler +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x51d372cc adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5e36e125 adf_service_unregister +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x79d1eb10 adf_iov_putmsg +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7e2d3a4d adf_service_register +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x84e99952 adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8e4fe09b adf_dev_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x90f26552 adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x91c11df3 adf_enable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x98950643 adf_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x98e5c042 adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa6031dda adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa7cff3d2 adf_update_ring_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa916fe42 adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb6fc9819 adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbb4316f2 adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc3a77de7 adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc406b455 adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc69aed4e adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc903b01a adf_disable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc9836a01 adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcb1e4476 adf_dev_start +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcc3b167a adf_clean_vf_map +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd7616933 adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf2e5f170 adf_disable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf4103e2f adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfaf7cce9 adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfbb5f0e3 adf_enable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfec60b0f adf_disable_vf2pf_interrupts +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x0f568e72 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x635e3910 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7518d6ba dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xbe4aaf75 dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xe65ddf08 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x0ae7aec3 hsu_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x1c44ce23 hsu_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x27f4c783 hsu_dma_irq +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x050ff452 vchan_find_desc +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x9e4ae1d1 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xc48915e8 vchan_tx_submit +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xe0f9bb62 vchan_init +EXPORT_SYMBOL_GPL drivers/edac/amd64_edac_mod 0xf13924f7 amd64_get_dram_hole_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x019baf82 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x28520fea edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x29d5e93e edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x41172cf8 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x45a4941a edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4d23952b edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4dec52a4 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6cb84cc1 edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6d64e6cd edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7a6b0eab edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x863854ee edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8f2f5938 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x93d3da1e edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa5e49ca4 edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa913ca8a edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xae022267 edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb6b0d7ff edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xba2e7290 edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc2a18175 find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc44d74cd edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xcae5e841 edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd196f553 edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd9cb7952 edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x14878009 amd_report_gart_errors +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x1d34e996 pp_msgs +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x81d75507 amd_register_ecc_decoder +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xb30b7e56 amd_decode_mce +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xd3cc2686 amd_unregister_ecc_decoder +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2e078db4 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x30683138 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8fd1b1c7 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe6ee5df9 fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf016f440 fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf8e5fb38 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0x013fbdac cs5535_gpio_set +EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0x93f8fe67 cs5535_gpio_set_irq +EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0xc0bb404a cs5535_gpio_setup_event +EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0xd3bd9300 cs5535_gpio_isset +EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0xe07c0954 cs5535_gpio_clear +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x43e14f00 bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xeb584d01 bgpio_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x158461db __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x805c8842 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0d0d1bc6 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x39f5ff9a drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x58de7714 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x05876c69 i915_gpu_busy +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x08a7896d i915_gpu_raise +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x402468e9 i915_gpu_lower +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x500858b9 i915_read_mch_val +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0xe7237b0b i915_gpu_turbo_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xb25964c1 ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xc7e63432 ttm_dma_page_alloc_debugfs +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xde96ada0 ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x077b258d hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x09ee6a4e hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x16d66c8b hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2201796f hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2314bc6b hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2a685181 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2bb4c992 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2d9f01ce hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2f82ab80 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2f8e2dc3 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x30b8278e hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3103ba79 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x34d2aa7e hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x37fe9b3a hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3e0074d7 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x483efb3c hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x558c25f2 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5cad6909 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x61d3ee80 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6f1ba7ca hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6f8ae5db hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x736b35e5 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8a6ebc32 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9f7618cf hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa4bcfef0 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa9880728 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xac0cb25b hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb7c29f0e hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc23bfda8 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc68cce94 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd49c213f hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe16fec14 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xedc4e2aa hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf62ab342 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfed2df50 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfede8080 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x34a70dc4 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x0e47f956 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x1e9a81f5 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x30c55ab3 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x5f33592a roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x5fb22b27 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xf56c239f roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0264b2f2 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0d2f50a4 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0e9eb91b sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0edac395 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x19c1308f sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x278b1e9b sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x5c1c645c sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x60f8d4c9 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xfb1391e5 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xc1bdd953 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x01c080b6 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2221f850 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2b96ea92 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4b1e072c hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x60f2083e hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7925b756 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x930def81 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa56b1506 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc1940145 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc58172ee hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xccac2e69 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd2d82350 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdf31e2d3 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe424b6e6 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xed21d76f hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf34158b6 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf5c63c75 hsi_async +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x118505f7 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x143ed420 vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1a25cd8a hv_do_hypercall +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1bae14d7 vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x25a0a3d2 vmbus_cpu_number_to_vp_number +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x27b52a2e vmbus_sendpacket_pagebuffer_ctl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x312759a2 vmbus_are_subchannels_present +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x358fafa5 vmbus_prep_negotiate_resp +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x45bb8038 vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x54687128 vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7814a325 __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x864da3bc vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x86ff5fa6 hyperv_cs +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8c00e0e9 vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x94911a9a vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x968e34cb vmbus_get_outgoing_channel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x982a3739 vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb1ff4b54 vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd5284853 vmbus_sendpacket_multipagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd8e8af0e vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdb2f6047 vmbus_free_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdf8bd345 vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xeadb5fcc vmbus_send_tl_connect_request +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xfc330427 vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xffbc8555 vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x375aa662 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x70dd8071 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x881e25bc adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x1405c0ed pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3453f8ee pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4acda2a8 pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4ad67d42 pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4c244d9e pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x54b2fec3 pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x5b7d0bc4 pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x7f53c542 pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x97d41c22 pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa114c51f pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa4f630bd pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xcd8bcd02 pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xde7a48c1 pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe2d86f32 pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf4dcecb4 pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x05a080bf intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0afa291e intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x86b6e425 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd06f8fda intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xdbb2b52a intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xeac95838 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xeec6c9f4 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x1a844546 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x80ac7aa1 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x80b059fc stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc55f2ef9 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xeb9dd5d8 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x3b9ae1ff i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xa3cd0c7a i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xc738cc79 i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xd960e79b i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xea543240 i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0x156d1917 nforce2_smbus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xfb6c9a79 i2c_add_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xfc50bd51 i2c_del_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x50e164d0 i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xa289ace1 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x25339a68 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x2c63b759 bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x998b711f bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x1806b9c4 ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x21da1a94 ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x2e3d02a9 ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x44f423ca ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x7405c791 ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x78987474 ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x8879f750 ad_sd_reset +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xb7db4905 ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xbf76a67a ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd3cbf873 ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a900021 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x79f12894 iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x33d30d6d ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x80c61408 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x00c4c0a1 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x585778e0 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x601bbfe0 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x161db87b adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x24e8813b adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x2cafd75d adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x552a5ed3 adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x604f4f81 adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x7290131e adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x7a9c6dc5 adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x8fadcf69 adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x98401d3f adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x9e13b64a adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xa57941d4 adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xba2eed91 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x053b4e27 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0581d247 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x05e6367a devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0dcd59d2 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0e022536 devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x20e28301 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x272be6dd iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2f3be927 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2f90c5d6 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x32f9f114 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x331c0020 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x371afac1 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3b047abf devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3ec5c03b iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3fa95870 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x434a85d7 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x43b24cec devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4414ae92 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x496e3e6a iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x67e9d91f iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6ddb73cc devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x79ae9d6d iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7f91105c iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9dcea93f iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xae4f7692 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xae925a22 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb9145bd2 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd3c640dc iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe49baa74 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xebcd2de7 devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfcdf26c1 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xb30da835 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xa6ddf1a6 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x86d97486 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x99eeec38 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xe2b254fc cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x2e381d79 cyttsp_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xee5e091a cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xf6635b81 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x4462e76a cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xb85dfabb cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xb49985cb tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xcddc58b4 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xde001705 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xeb0eae10 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0a4d2c2a wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0ad9c281 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1767dfdb wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1f0d9617 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x38c59e01 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3d8bbd15 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x642a20fc wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x845972f7 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa1a1b4f7 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc673c21f wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf22a6493 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xfa17f5a7 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x19934df9 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2b2c71be ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x3f685a8f ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4e9b5b4b ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x589a863b ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x9725ceae ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xaa4cc504 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xabf41975 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xfb0d3fc0 ipack_device_add +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x03f1ac78 gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x07bad5bf gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x20a2fcc3 gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x216f50da gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x228a9d5d gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x477d2787 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4c25a373 gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x673bff0d gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x6f0cb630 gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x88bbcda0 gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xab7a607d gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xbbd857d5 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc35b6ea0 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xca2bef09 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xdd3071ac gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe09758b0 gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf76951e7 gigaset_initcs +EXPORT_SYMBOL_GPL drivers/leds/dell-led 0x86fd1ffb dell_app_wmi_led_set +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1f5d9cdf led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x699d4280 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x83ffb7e0 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xdc386a14 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xe934cdf1 led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xf2baedce led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x13d0eba3 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2fc2033a lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x474e5c5f lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x4b85e414 lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x5345a9b0 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8702fa40 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xabe43ee0 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb56878cf lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xba145d25 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc9db84f7 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xce956a52 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x64e3c0dd mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x7f5fd153 mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xac2e07c7 mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xbe9744a1 mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc24c7792 mcb_bus_get +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc33eb5fb mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc6c45c80 chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc8f0a2ab mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xcb6a6b2c mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xcf6bc006 mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xebafaa5c mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf5e51309 mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xfaa45b06 __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x00b74659 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2a1a7a99 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x374f45ea __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3a4dfef7 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x48991e9c __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4f124797 __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x614e860f __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x647af374 __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6724de29 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6726a0c1 __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x68f1ea6d __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7114cfcc __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x78c57fa5 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7cb4bd6f __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x816ebfe0 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x833b99dd __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8afe3e2b __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x912566ef __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x92c55e92 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9c59320b __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa7004101 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaf2376ac __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb3942afe __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb4cffcbb __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb9c28744 __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc0bd3171 __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc773563c __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd81ad8c9 __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe30b6b2a __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6169c53 __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfcb52b5f __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0f7ca986 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2673d936 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3ff906bb dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x53ea7b0f dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6f6dfa79 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8fbb4886 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb12950a2 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb8d680df dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xdc424304 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x15f2e2ef dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x22163b69 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x3909d3a8 dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x594952bd dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x62a23587 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9b2b253a dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xdc69e37a dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe004ee92 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x1ba6fdaa dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x2da77fc3 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x488126e6 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x644c2b76 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x6b100d97 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x939abdb9 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xc17fa983 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x6a8217a7 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xaeda0c7f dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x030205f5 dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x087cddbf dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x09472122 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x2c3b6295 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4eb7d690 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa8813ad6 dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe1a6a11 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc66ce277 dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcab63c3d dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf37a3cfe dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf63d9cf0 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11eab9fe dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x150c85ce dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2e730a21 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x33c03da6 dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3bd68495 dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x619701dc dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9b4b5b29 dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2507774 dm_tm_shadow_block +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbcfdc290 dm_tm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbe0497aa dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xead1e727 dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x0ff15de8 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x18be5614 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2059f11d saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x28026f2a saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x3228a7f6 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x5a9c22f8 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x84be507a saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9bae96c3 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb351ab2d saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf2c2fe9c saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x050eb575 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x21ce04f1 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x22b5267e saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x917c7dda saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x97899d6f saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xb983f732 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xbfc08c36 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x05c79c70 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x22bcdb82 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2cba0c8a smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x49b7b46a smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4d0254ef sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x62e7a0d2 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6c2f889c smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x76dc573c smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7b86cf3c smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x95c8c6ab smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa8a9be29 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb390ca8b sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb62af7a2 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbf9733d4 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe4248b83 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xea577236 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xebd1659e smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xc0c3f305 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x31e3a4c5 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x0cb42496 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x0b93390d media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0x218e320c __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0x30638469 media_entity_init +EXPORT_SYMBOL_GPL drivers/media/media 0x3f94807f media_entity_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0x48021010 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x49baa1ae media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0x5c7c18ee media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0x6ee5271c media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0x89f2e21f media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0x8f1d062a media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0x97af34cc media_entity_create_link +EXPORT_SYMBOL_GPL drivers/media/media 0x9a152d9f media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0xb446b43c media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0xbe469a6a media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0xc6bec1ab media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0xca5a9e33 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xd6485858 media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0xfe237747 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xaf952c45 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x13c448ea mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x16a62ff2 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x210fe98d mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x26b6b591 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3e3700f4 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x53134683 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5a2f4012 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5fd49410 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6787801c mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6e0ada12 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x791354f0 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8f4805cd mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa07955c7 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xac74112f mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbd95772f mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xdfe8bbc3 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xdff9a9f8 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf3d1f04e mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf75d51f6 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x05d63505 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0b45df48 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0e10bd2e saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4ed7b600 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7154b344 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7eae8a76 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x80f1e7c9 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x86060e8f saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x86ed77fc saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa201a2b9 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa54642fb saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa5604652 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbf231169 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc698c1b7 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe02a97ac saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe2ff6c5e saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe4406292 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf81c382d saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfd616bb8 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x151a8b47 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x336e1ae0 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x6c641ce4 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7684b063 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x838235ec ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x97841d4b ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x9f851a9a ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x056a2ec8 radio_isa_match +EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x06c6c3d5 radio_isa_remove +EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x61e79a06 radio_isa_probe +EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x88c99003 radio_isa_pnp_remove +EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0xc0f62ddd radio_isa_pnp_probe +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x76d7656c radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xefd9f0af radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1ee3be6e rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x211bc3b8 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2cbe7b92 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3508bc6d rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x37c163e3 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3d3fe003 rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x89c3002a rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9266da49 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x966539ee ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa2c98bc5 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb4b4e95c rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb99c1e67 rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbadc7203 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc28901b1 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc88c3cd7 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcd897d9e rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe1a28cb0 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf34c1316 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfda239f0 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xcb5d7d53 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xa5924220 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x2c6e39d5 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xf3c828b2 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xe3d6365b tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x87d24448 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xbdc38ca6 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xbeacdf48 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x8f98fb50 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x1f978f93 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xb86d0cba tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xe2596659 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xf61925cd tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xfbf6caae simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0bf90b94 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x161b08bf cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x19cc10e4 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1a390e2c is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2e3c70d6 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4094a56f cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x48cae9d5 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5f223339 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x77287d56 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9d2a1433 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbcc3bce7 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbec8eff8 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbf6395b2 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc2a1d4c3 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd1ae7df1 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd3d35e06 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd94bd90d cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xda1a1e42 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xeae1c5a1 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfda606e2 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xb8add25c mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x53c5c52a mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0add5a04 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1b68391c em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1ffef3cf em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x35359f96 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x35cc6999 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4d321ffb em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x50fca95f em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5fde6b20 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x73217f2d em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x769f6c36 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8146bb23 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x97df226c em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9b4ddbe9 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9b6dbb79 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb97db4a2 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe0f855e3 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf67d729b em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfee6ac16 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x20d5aee9 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x45c7bdb9 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xc7bbdaa2 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xff4b8ec9 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x1ac133e9 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x2a2af3bf v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x40c359f8 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x51401f26 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x865e78dc v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xb5cc0707 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08982d59 v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x1053c25b v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x75c7e426 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0461ca01 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0d9441ea v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x124355be v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1477c9d5 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1bae4eab v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x24c953d2 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x29dbf46a v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2bcb8f3f v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x46a859db v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x499550b9 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x617a1fd4 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7123c707 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x77bd162b v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7e0d954f v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8127aeac v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x891e747a v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8cb89292 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8ec7ea6b v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x903d9b16 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9767bd96 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9a50489d v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9f52dfc3 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaae3eac5 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcaeae32f v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe194ad19 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe3ccf0c4 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf520387e v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x16aece84 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1dd94d7c videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x27b9022d videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x30221423 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x34f78ed1 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4e1b56de videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5e2f6080 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x67905f4b videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6b1405b8 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6ec2356f videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x78ddf141 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x80db627d videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x82515c99 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x90a09a0e videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x940b3992 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9f5760f4 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa235cb7c videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa8d09e53 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc32cefb2 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe3d5827d videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe576c920 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe72c9c0e videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xeef49d1a __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xffbf6658 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0x69d1c42b videobuf_queue_dma_contig_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0xaa2add32 videobuf_to_dma_contig +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0xe303d1c7 videobuf_dma_contig_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x15cb2214 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x256a231b videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x4cad47bc videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x844c63d2 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa825c75b videobuf_sg_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x013f14e0 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xc22d817a videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xea4ca749 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x0ef5a175 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x499ac937 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x49b88008 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x4e96b331 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x55b760d0 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7140fabb vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7d0c3379 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x9a674a83 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x9cc76e8c vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb6e65402 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xbc645f4c vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc91043b1 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd419e9eb vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xeea0be67 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xefdebe23 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf11134bf vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf4054e3c vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xfac6fe75 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x2f1e62d5 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xdfd27ec1 vb2_dma_contig_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x04db2b31 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x272fe2bb vb2_dma_sg_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd30ec30f vb2_dma_sg_cleanup_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0x1da65983 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0461a4e8 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x09521af9 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0a780f47 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0bde2253 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x16615e12 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x38b59e3a vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x452c8d3e vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x47e14912 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x52f8464b vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x569ed660 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x57c789e7 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6dd59485 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6f19337e vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x77dd85bf vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x89051a11 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8c0d1313 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8f6e5ac0 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x937a926b vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa437cdfa vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa99ae1d1 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb2fddff6 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb41e144f vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb4ff3bba vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb9945f04 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbf450165 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc174868f vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd2094228 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xda958039 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe87d4de0 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf80ce87c vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xfb98b539 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xfe043573 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x2807a12c vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x085c1c98 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x119a76b2 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x19455c47 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1bbd9094 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x278c4bd0 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x28d20b15 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3129d103 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x31e3d76e __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3740e82b __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3c0fb0dd v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3fb71c47 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x40289275 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4b62d52b v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x55fc27b5 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x662c260a v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6b327d8f v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x72520fab v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x79305d27 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7a85f5d7 __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7a94fbe8 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8c18364f v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8fa601e9 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x98545b10 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9e23b29c v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9f3ca3fd v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb6e0252f v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbc9786c6 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc760c3db v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc9efd268 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xddcf5f10 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdf1dc19e v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe83b5b1a v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeed73f78 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf57298e0 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5956f8c __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf65e7d87 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x2520e2f4 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x2fb89a57 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xb3d5ced3 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2daeb418 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x3a9bbe56 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x4284fb8a da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x71e80d00 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x7e39e0ed da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xe309e1bf da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xf8671ff6 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x3ffaa62f intel_lpss_resume +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x4b763169 intel_lpss_prepare +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x5494accf intel_lpss_probe +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xa6ca9951 intel_lpss_suspend +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xe7217a67 intel_lpss_remove +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x06029d8b kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x42975877 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x54436bfe kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x61de9a1a kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x75177ac5 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xc9c4824b kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xcdfba4c1 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf3ffa9f3 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x2e4026f0 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x3ff670b9 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x5fa6fd4a lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x015c679e lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x22b77a9c lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2c5c742b lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x32af55a0 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x554b454a lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xba5957a5 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xcf36fbb5 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x53a5a28c lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xa959f841 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xd3bf8b54 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x71d66960 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x748518f8 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xa60b319f mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xb4228801 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xe6973649 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xf498c321 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x179c1c8c pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x67220cbb pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8700fa8d pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8a1e7530 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8ba6c468 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8e7dde8c pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc5b14c3e pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd4af3fa8 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd6ef04bf pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe92abe7a pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf74be987 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x505d67bb pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xd747577f pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x399ec46a pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x778c92f9 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x86ebc735 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x8c055b36 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd2f7d84c pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x1596eae5 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x22045172 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2e7172c8 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x338c5457 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x34bc3500 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3bbe208c rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x40ac3b83 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x50b84f9b rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x74c99847 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x75168a86 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8faee47f rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x92138110 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9a41e713 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9d69c2bc rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9f06e335 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa25be37c rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa3082407 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc1a33281 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd2fcc0da rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd70fc766 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe82d70f6 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe9c26032 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xef4cebd6 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf4a1fcf2 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x0391f20f rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x0666560b rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x06f01b06 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x1c251f9e rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x2dead589 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x4814a307 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x5678f8ee rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x6ecca053 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x8924e60c rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x91acbd59 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb6d272a7 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xfcb9acac rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xffaecf86 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x07396b7c si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1035258c si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1af4c450 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1c1b4f02 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1d553a7a si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x328eee42 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x44d86628 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5c6558f6 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x60429e9c si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x637ff43b si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x655361b5 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x67de22e1 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6c5c255c si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6e3e0945 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x73aa4623 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x770dd061 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8233e352 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x83a21fd4 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8bc63848 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8d6a6b70 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8f234910 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x996b0dc5 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa36abe07 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa791a0ae si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xac948b9e si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb4963d01 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb62a9fa8 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc35407b5 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc3bd2194 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcc069a77 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd1a506aa si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd4c54964 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdacca90a si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdb491be0 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x2144d864 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x2320fdf0 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x77ddb533 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xc33110cd sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xf0d0dadf sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x2863bd9c am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x5f3734fc am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x7c4d156a am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xb077f7ea am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x422deb22 tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x5b9fb75e tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xa30e4e76 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xff50952e tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x476d4952 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x5146ba20 bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x87ae991c bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x9d866ca7 bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xc93a8578 bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x09d7ec95 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x1861abdb cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x6337fd5a cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x8c82da58 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1c865ab4 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x446937f4 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x871b42de enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x8ab7e93d enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa090575f enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa95c4f93 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xece8eb0b enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xf2000c40 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4a94efd7 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x567f4a54 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x87a29a57 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9fd0ba73 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa51f653f lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb065c4ab lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb1f3b258 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb68fe1a7 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0beab748 mei_cldev_recv +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x15e1968b mei_hbm_pg +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x171f0697 mei_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1d2f6fcb mei_start +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1e6c8996 mei_cldev_send +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x2b94ae92 mei_cancel_work +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x395b4ffe mei_irq_read_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3cca1057 mei_cldev_driver_unregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3eb55cea mei_restart +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6fc19913 mei_cldev_uuid +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7ceb2de3 mei_stop +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x874d3d18 mei_deregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8d72af8a mei_irq_compl_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x929b4ad1 mei_device_init +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9617857e mei_irq_write_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9d41d2fe mei_cldev_enable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa4c481d2 mei_cldev_enabled +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa69c2034 mei_write_is_idle +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xaa20cd12 __mei_cldev_driver_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xadc640ec mei_hbm_pg_resume +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb3760274 mei_reset +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbc547f5b mei_cldev_disable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc239537b mei_cldev_get_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xce751fe0 mei_cldev_ver +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xda27124f mei_fw_status2str +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xdba3b15e mei_cldev_register_event_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe9ed1984 mei_cldev_set_drvdata +EXPORT_SYMBOL_GPL drivers/misc/pti 0x19f09b98 pti_release_masterchannel +EXPORT_SYMBOL_GPL drivers/misc/pti 0x23bde487 pti_request_masterchannel +EXPORT_SYMBOL_GPL drivers/misc/pti 0x52a78e81 pti_writedata +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x81df6421 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xcd6e377b st_register +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x0f6680ea vmci_qpair_produce_buf_ready +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1152e318 vmci_qpair_get_produce_indexes +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x13aa5a5d vmci_datagram_create_handle +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1872c7af vmci_qpair_produce_free_space +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1a195863 vmci_context_get_priv_flags +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1f858f68 vmci_qpair_peekv +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x231dbc0c vmci_qpair_enquev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x2e30d970 vmci_qpair_dequeue +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3ef56cd5 vmci_qpair_alloc +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4b630dac vmci_get_context_id +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4ea2ccbc vmci_qpair_peek +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x50a255c9 vmci_doorbell_create +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x612df9ae vmci_qpair_detach +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x677c36d0 vmci_is_context_owner +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x69ef87ff vmci_datagram_destroy_handle +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x6cc1a5f7 vmci_datagram_create_handle_priv +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x722d488a vmci_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x76e24c57 vmci_qpair_dequev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x7d540b50 vmci_qpair_consume_free_space +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x8b8ad67a vmci_qpair_enqueue +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9624c58c vmci_datagram_send +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9973b9b2 vmci_qpair_consume_buf_ready +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9d16164a vmci_send_datagram +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xccbb53d1 vmci_doorbell_notify +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xcf5ed7ef vmci_event_subscribe +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xdac94780 vmci_qpair_get_consume_indexes +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe7e7c107 vmci_doorbell_destroy +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x13d19593 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5ba24119 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x61f40953 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x63f0c300 sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8da06ff1 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x90128e6e sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x911fac9b sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9653105e sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc61daae8 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xce7f0645 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe03c776c sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe7aaabcd sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe82b13ee sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfd0eae20 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0173d05b sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0893dcc0 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x2297e82a sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x3f4bbf68 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x490c8d15 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x4ad2801a sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x4d38340b sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb0626069 sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc0247bcc sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x496d34d7 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x7644113f cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x8b5a34a9 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x107c3b57 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x6e2e7087 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xe385f4d1 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xf817e54c cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x3ab7dac9 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x6b047a9d cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xcaa42c4d cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00c980a3 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x08453602 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x17b195bb get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x238582fe register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2623b360 mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x338d0fd7 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x35caf5bd mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3a3bec31 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3b7149bf mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x47943954 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x48182ee2 mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x48c48604 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4f4f66e0 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5252a2ef mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x58ddb9b9 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5b6a2e6b mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6ab12ecf mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6ad6185f mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6c739934 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x716aa130 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x72a6d68b register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7c445fec __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7f927f84 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x94d4df91 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9cc670f0 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xae23b9cc mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb0493c41 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb2a4326f mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb43fa85c __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbb04fcb7 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbfaf238d mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc1eea955 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc3fa41d5 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc6842a8d mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xce023b69 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcf8c5421 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd00949e7 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd5605df5 mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe1f77539 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xea82f666 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xeff14d2a mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf4a1813a kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x004a056c deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x0c565bf9 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x4155f015 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xbb8637d9 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xbfbbd178 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x4419df0d nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x5aafc6ae nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x05a0e85f sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x12258649 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x41ae5449 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x8d0fb6e6 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0e672424 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x12edd751 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1d407876 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x513f9132 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5815d944 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5ff91b91 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x68f9e601 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb8a5dd23 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb9e9cb8e ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd6c12a3d ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdbf22a6b ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xde345e31 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe0fe50c0 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf9cbb078 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x497e1f0a devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x711f264a arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x15a16388 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x4078f7fa unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6a534e39 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x89e6842d c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd824ef52 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe7d6dbec register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x00f8e72a can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x02fa3401 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x10dc83d3 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x15e057eb alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x1acf6a7d alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x2f7de287 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x352fd994 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x37e083be can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x521b7d7b safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5fce50ea open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x63845c92 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x6dc32426 devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x8fab265a register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x92713dcc close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9af20881 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa01df0b6 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa7bb5f4d alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xf8bcc452 alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x1501073c free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x27db294c alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xa482b092 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xd35f3a38 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x22ca1314 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x2f704f74 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x474b15df free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x7b4f5a94 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00b0852d mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0170cb88 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b8cf899 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e62a5fc mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e93ab51 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1149bba0 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x174f685d mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19d0e249 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b8f1537 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1bb00919 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ca2469e mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e96ccbe mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f48aee3 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22a8f35e mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22ca6531 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2375a51d mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x247de41e mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24a87b19 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2592feba mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27e3a142 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28ff84d0 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ac204cc mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d62feb0 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2df7cad2 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2fa56d73 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3135c8c0 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32073503 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x324aa5c4 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3680adb5 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x392278f9 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f315c31 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f416d2b mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x426deccc mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46bad073 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ac6ce7f mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4df4ec71 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f6c077d mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f6e056f mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4fb4c737 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50938337 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5287193d mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5364aced mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5651b0f0 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x591c1be9 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59a15eac mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a127ce5 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b3450a3 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b6282f3 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e570bad mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f29e518 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f85322d mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60664df1 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x606a7d8f mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63cdfec5 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64545a37 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x661f5dff mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x674ef520 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x676f041f mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b734252 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d07110e mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6eb2502d mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72e886ac mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73d62b2b mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75ce6ac7 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7612a991 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7629797f mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a9d2c72 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7aa82b96 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x841b125a mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88b4be01 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89da117a mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a382143 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d2c9959 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x910919c8 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x956014b4 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95ba8eab mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95dda51e mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99d40dff mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a04618c mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9bd737fc mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9bf3412d mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d641bd7 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ee878c9 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa35638aa mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3cfe6d5 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaac2d632 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae7de5bf mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb178bcc3 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb262182e mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb283d2c3 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb88f22c7 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb5cec16 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbbcb1be8 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbcb88d58 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc32c1f7d mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3511fba mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc401a25b mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5078cb9 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc53d3b07 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc546c0ee mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7a85cd7 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcac57f4e mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcbf74b4d mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd64077c9 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7f56ecb mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9a26ae2 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda77c41a mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdbc73797 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd506550 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde93e897 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf169027 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdff3f13a mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe59be713 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe696dc9a mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6c58ac3 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe911fb60 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9302722 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9988cb2 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea524c52 mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb43fb15 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf06bc5cd mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1923b89 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf57439e8 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe883bd7 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0afcbbca mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0dec44cc mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12fd9d93 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18da191c mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28b9932d mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d89397a mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3200aaf2 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x321f0062 mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x369e8f84 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37294a51 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3730cc2f mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37b485ea mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a486b5a mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55521598 mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6288594c mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66951be4 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e0f6de5 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8094b711 mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85c2c64b mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c387e53 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8cd48a5e mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91d7a118 mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0ae1340 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9a32222 mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaaba79ae mlx5_set_port_proto +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad6fc28e mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb25e172a mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4c35c7b mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9014bf3 mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9c4fa53 mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb201d08 mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe22eb2d mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc06e9f54 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0ee3899 mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4432780 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc51aadfb mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc679ddfb mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7538195 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4b35b25 mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb7330ef mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe57e27d7 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef97b043 mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5e01d77 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8ea2b5e mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb74fb7e mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x368d3d71 regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x9ebbba41 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xd4ab3625 regmap_encx24j600_spi_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x2025a994 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x31a72973 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x3411f189 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x7e1d53ba stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x82fdf457 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x8b40c7cc stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x9e5b6db3 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xa52eb3fc stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x06656362 cpsw_ale_control_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x0c01075b cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x162049c1 cpsw_ale_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x1de0b325 cpsw_ale_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x269e7b00 cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x27257826 cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x3751f221 cpsw_ale_dump +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x3b7912e2 cpsw_ale_control_get +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x48adedb9 cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x63b3013b cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x8f51dd64 cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x9cbb78c0 cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xa0bfa436 cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xc62dd8ab cpsw_ale_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xf221f5f0 cpsw_ale_stop +EXPORT_SYMBOL_GPL drivers/net/geneve 0x6957031d geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/geneve 0x941d73c2 geneve_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x1cffab01 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x676aa308 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xaab465aa macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xf40f0a12 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvtap 0x73ce5d27 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x03236a4a bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0fe8cead bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x45b127d4 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x50ee8fa5 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x68c701be bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8dae0326 bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x92cd20d4 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xaa03f55c bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdee6bc97 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfc9fb16b bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x64044b16 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xcc4e89df usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xd380220b usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xdc22ab31 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0ad95ecc cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x29e347a1 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x363b8b4d cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x39d97c66 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6be29a15 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x73745591 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9523cf68 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe0a3f8b2 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe5e95ce6 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x15143114 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x27275dfb rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x33989045 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x60c89cb7 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xb7cc5d1a rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xdf3bc100 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x069e295d usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0722b067 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x16df6355 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x18cfde09 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2a7f9fce usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2aadcb0c usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2ee70c23 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x333d993d usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x354d41c9 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x384df81c usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x52b2a3ff usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x59c3b5d7 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5bd65dd4 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x62d98a5b usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x62ed841e usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6c772711 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6f51fd90 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x77ddfab1 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8728330b usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa03fc77a usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa57e3cef usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa5f0a38d usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xadba343e usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb3f351a7 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbbc01096 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc12a2689 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc3df3594 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcfb4b034 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd3a9b6d0 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xebd7e2ba usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf6b7d5c6 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf9b3f7cc usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x9e28a528 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xc5e2f833 vxlan_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x161b9ae7 i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1f606b64 i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x22613a5d i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x510e8c99 i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x6d1b565a i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x7a5a5fd6 i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x87143c5a i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x87999cf7 i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x9f018ff1 i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa4964cc7 i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xba9c1999 i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc683e7ef i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc9b01b83 i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xdcb3301d i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xdee061ec i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xed8a5c62 i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x5d423ba2 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x81f96eec cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x90d9b15a cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xfe1c68ee cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0xc707ce31 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x27885816 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x2c117116 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xab514e38 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xf6cad6f2 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xffaf6c8f _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1b074767 iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1e6f621c iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x23aa23b6 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x34e21431 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x390ff4fc __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x41bf5dea iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x42cfe2f7 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x47b23ce8 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x48fe5f9a iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x512a2413 iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x53b9079a iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5ee5ab54 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7a9150c9 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7aa6aedc iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7fced590 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x85ac6cf7 iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8e046954 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9cf7f3ff __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa1beb689 __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa757442e __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb27c1ac8 iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb4a07882 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb8979af3 iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xbda9eee0 iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc1adcbf5 iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc4a8fc91 iwl_notification_wait_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xcab72b47 iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xcf9f5433 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd49b4b3e iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe1c49a9c iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf54151ae iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x0d7d6c6c lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x16756d84 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x2091ccf2 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x21b96900 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x27a7e4a0 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x42e09667 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x50177c60 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5c5fc4db lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x66e2a0ce __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x727b8138 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x836f13ff lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x88a02e88 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x88f8f719 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa106b9cd lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb26405f0 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc09a4422 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x18576980 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x67114cf9 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x67b999cf lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x8bb85775 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x9a7e83f1 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xbcbdda58 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xf068aee3 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xf9f349c3 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x07e39042 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x0ebc1997 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x13e8797e mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x185b8c31 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x244f3834 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2fe4a92d mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x3001c135 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x33d7a8e3 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x40b5f28d mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x4600a590 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x6fe72a1b mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8115943d mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x91349132 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x95ffb99d mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb457cad3 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xddb06ede _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xed262147 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf3be40d9 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf3ee8ebc mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x1e78d304 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x22883a5c p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x30273b8a p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x822008c9 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x8c0b8423 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xab6dad22 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xafc2ff1b p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xd2e5b992 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xfbacf3c7 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x449c024c dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x626cd92e rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8191c0e1 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9504063b dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1427d265 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x201867f3 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x29ecef5e rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3ac29bd8 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3c51e5c3 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x43228146 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5190b770 rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x563b5e5d rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x597487a2 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x61034f39 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x784d4af9 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7a0b9bfa rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x874892bb rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x93a3b8c1 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9e2eb116 rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa0de3b75 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa1de7d55 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa6418995 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbc0be4d9 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc8687f22 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcf51f2d2 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdabd23ff rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdec5ba26 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe8d2a69f rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf01a6dff rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xff202265 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xffa5f516 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x19763652 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b0351f1 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2f143040 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3756c418 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x486dd098 rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x48d6cf39 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x492a2146 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5c78e750 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6262deb0 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x62ed3f32 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x694009dc rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6ce57a27 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa8791f8c rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xafcdc668 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb9859327 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc116380e rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc12fec90 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed5a4c4f rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf83e2e90 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf938971c rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x3d42409d rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x56a9ad8e rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x79f6f2ab rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xadb2ce88 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0edd63e1 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x11516bfd rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x129c4b58 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x218a0ccf rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2824a3cc rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x293aebfe rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2d023acc rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3301ecff rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x35ae1d64 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x36d695bb rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x414290f7 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4c0c79bc rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4c3e9140 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4ef6a134 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4f494356 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5639f20a rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5b54ff4d rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5facc870 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6456c8e8 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6f17e75f rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x722217d9 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8b499a85 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8d6fece4 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x947fb674 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x995d9dfc rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9b341af2 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa270443c rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xaddfcd0e rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb17b15cb rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb41cb23f rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc44d01f0 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xca259824 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd05de36c rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd1af4ee0 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd70ca6d8 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd7c3a2de rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xee503833 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf4038e45 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x198ac4da rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x19da3c2b rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x282415ae rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x28d9105a rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2aad3393 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x42ba70b5 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x471b735a rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x50903567 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x934a5044 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xa99a9c4c rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xccc0fec8 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xed4efb9e rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xf59d48b9 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x02df972b rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x03f08caa rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x08a5e04f rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x10b8fcf9 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x14ac02a7 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x15d2e385 rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2604d68c rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2bfce6ab rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2c09866a rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2c893c4a rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2cfde930 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2e469743 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x326d886d rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x35f5cfd9 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3a3ac1b8 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x430069b2 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4855f0d9 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x49245c7b rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4bdee8fe rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x566edc22 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x58c46f21 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5930af84 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5b9b6bef rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5d99aabf rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5fadd70e rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6a7ffb7e rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6c915c36 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7240942a rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x79d0ee3f rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x866f7070 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8862bf9c rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x997e3192 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9eabba96 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa3edd152 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa5693edf rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb135d692 rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb45e0ec8 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd31a3899 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe2dfaa69 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe59a2b64 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe9a6c4fb rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf159fd84 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfb663b69 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfbc4ca11 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfc6c94e4 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfff60dcb rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x00e57b69 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x959fdf75 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x99d741e5 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xe06f442e rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xfeb60e83 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x816e6b07 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x9029215e rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xc9de6cba rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xfdbfbf0f rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x4325bfab rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x47991c59 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x4cca2def rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x6a4ea70d rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x76bd9716 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x8be08718 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x943a6f0c rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xafa098e8 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb6674979 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xbd02cc92 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc5c3f791 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe01320ed rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe536da94 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xebaa57f3 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xef6ff47d rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf3e0b891 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x78bf812d wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x957e1091 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xee7722e0 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0512ca58 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0a2fff77 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x167f131a wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1857cdb5 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x19a36ff3 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x19d53706 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1d4938db wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1d9ed8a1 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x254473f3 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2e189ff6 wl1271_ps_elp_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x309c5236 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x38209550 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3ef268d9 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x40568eb1 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4d6f894e wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4f70165a wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x55c585e1 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x648a74a2 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6b891d89 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x73cbfde6 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x74c2f62a wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x84258ac3 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x87e965df wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8dccd970 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91da5146 wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x96fd601d wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9aa64bf9 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9f0d04f2 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa54eaeee wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa7d36e95 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xab8310d6 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xad9f7117 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaf3118b9 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb2b13442 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb3591936 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb4e2d4fc wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb50d5c46 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbef7ccc9 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc6435cf0 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xca157e9f wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcca3ea54 wl1271_ps_elp_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcf095c35 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd441568d wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe1fce0a9 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf8a31b5b wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x6c5a0d45 nfc_mei_phy_free +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x76b65bb3 mei_phy_ops +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0xbf99f58d nfc_mei_phy_alloc +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x2067ee3d nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x23e167c1 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x2ed8a360 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xca802618 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x3eea38f1 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x3f120498 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x85689d7b st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa514d20d st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb5aa7d5f st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb6e76e0f st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb70ebb9f st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xbcc2ef24 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x29487d9d ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x438c58bd ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc23eb677 ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x358ee3b6 devm_nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x36ec8a8a nvmem_device_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x523bc014 nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x5756ed53 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x68758fda nvmem_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x7bf0541f nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc96fb674 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe18960ba nvmem_device_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe220895e nvmem_register +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe9a7fe16 nvmem_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xf5f12835 devm_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x3d965e28 intel_pinctrl_probe +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x98f0636f intel_pinctrl_resume +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x9d97a629 intel_pinctrl_remove +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0xe9f1111f intel_pinctrl_suspend +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x40d4d292 asus_wmi_register_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x525c4e83 asus_wmi_unregister_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-rbtn 0x51552fca dell_rbtn_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-rbtn 0xa060fe7d dell_rbtn_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_ips 0x46809fa9 ips_link_to_i915_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x56235c72 intel_pmc_ipc_command +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x75068282 intel_pmc_ipc_raw_cmd +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xdea07053 intel_pmc_ipc_simple_command +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_punit_ipc 0xa6c87106 intel_punit_ipc_command +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x232b5238 mxm_wmi_supported +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x61cdf799 mxm_wmi_call_mxds +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0xe26032eb mxm_wmi_call_mxmx +EXPORT_SYMBOL_GPL drivers/platform/x86/thinkpad_acpi 0x706cdcef tpacpi_led_set +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x3ecf6cfc wmi_install_notify_handler +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x64ebe677 wmi_query_block +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xa9b7afd8 wmi_set_block +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xb5a6ebe2 wmi_remove_notify_handler +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc5e3dddf wmi_get_event_data +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc9d4d6d1 wmi_has_guid +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xe2426710 wmi_evaluate_method +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x2b217bf0 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x3c599fb0 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x98da11f9 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0x6365870a pwm_lpss_byt_info +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0x8b24d981 pwm_lpss_probe +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xafcf8794 pwm_lpss_bxt_info +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xb563cdb0 pwm_lpss_remove +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xc34d815f pwm_lpss_bsw_info +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x29c65881 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x7bf3ccf6 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xb3afbd45 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x14348b5e wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x223a0219 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x60a2ea4a wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x63e5ab34 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xb402b216 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd5f4de4d wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x57598f2e wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0f921fc1 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1b37967e cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x26f976d7 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x288b4eb5 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x41d92170 cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x423b0def cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x441f9395 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x44e2ff5f cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x47d2d9d6 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4cf89c78 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4d3e79bb cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x536cee1d cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5f5002ba cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x659c83bc cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6d71c4e6 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x70172d72 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7128242e cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x754fcad4 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7776d73f cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7a2b23e5 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7bb729ae cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x807f46f4 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x87355eff cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x979bfd64 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x985e907b cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9cd77a71 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9e3d922f cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa2541566 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa571995c cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa866a6b2 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xab7cc894 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb47ab723 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb6aa437e cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbcfd24a5 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc35b590f cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc39942f1 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdadb2e41 cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdaf2e680 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdc244b25 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe0446a23 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe4470bfb cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf0b43613 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfc69b714 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfde97970 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfee33e0e cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xff2a6ec1 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x197dcbda fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1a41c621 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3143dd07 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x33a7a61c fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x40b29ecd fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x468d9e85 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5b3e201a fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5e41ff1d fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x899c30d9 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x907e0268 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa9625608 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb98df7e3 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd101f29e fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd6096203 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xee144dc6 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf22c184d fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x39fcbcb3 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x3cd27bad iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb4a96cd2 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd27ea436 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd3b5fd73 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xdd92fe9c iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0e2703b2 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x17a05003 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1d0c3f28 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x24397f55 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x291f1424 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2a0e9981 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2d8abb88 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x383c91a1 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3b31eb5a iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3f41acff iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x50289236 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5077d5a9 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x57ffcd28 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x598e105f iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x61c6f2c7 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x68f5673e iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6b8149a8 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6d507cbd iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7110cdde iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7523c154 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7dcc0e10 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x89d08e00 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x91209126 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9ffe18c7 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa5ce476b __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb2b69077 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb44c5114 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb46695dc iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc15c85e3 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd10d15e9 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd5743ba1 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd9779fea iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe0c48281 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe5b10d73 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe79049b4 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xec58f85c iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xedb0de5d iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf0dd749c iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf2e6f3ea iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf7808a88 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf871e3c7 iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfedf0e89 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x10a0baf0 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2525ef7a iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2a476255 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x32b3f747 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3e737f00 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3ea7d69a iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x430e09ab iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4b528c5d iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4dda5ccc iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5e8e07dc iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8076e568 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8a150199 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8a7758c8 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa8639dd8 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xad721fea iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xafc7469a iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd7a8c195 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0517ef4b sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x14ea54d7 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1a0ec8cd sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2125a695 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x27ebc2d7 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2b2dbbea sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x31671591 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3ccbcba9 sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4129b4ba sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x433b0313 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x61f91744 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x68cf0225 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6d185d55 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7a5c9a7b sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7c8dbf97 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x870f40c3 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8dae45d4 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb28cc2ec sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcbc8bef2 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd57c4f24 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdb959196 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe81b7368 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfafe5d85 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfd01b1ba sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x037f152c iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x04de75fa iscsi_is_flashnode_conn_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0a9552de iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x14bacd29 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1aa1f463 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x23db0504 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2bc7c487 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x30c89b80 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x363f91d9 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3f9babe7 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x411dea99 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x44dd75a7 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x464ccf71 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4690aafb iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4c6cdab8 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4fbe4c18 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x51615e72 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x567df21a iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5dea8039 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6045357f iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x78925698 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7bade67b iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x878f3eef iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8808cf6c iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x94a23c67 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9f1a97aa iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9f39b0e9 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa486dfbf iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xace12845 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb5494171 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbe3fe200 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbfc81518 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc0361623 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xca226458 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcab8dd5c iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd192e0d0 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd44d5d61 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe5d488a2 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xedae1f73 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfc04189b iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x50d83766 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x5da265e1 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x85130ccb sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xf6080c3d sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0930e847 spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x63c16247 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x75c8583f srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x89b7cbdb srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x9b3a6fc5 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xc677cb52 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xc6db53ae srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x45dd9fde ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x5c236ad7 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x7830d863 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xa66a08c0 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xd172af11 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xdf9b0b79 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xe2d88f9f ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x01dce051 ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x578af4dc ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x6d8d1b06 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x76fd6710 ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xb20bd73c ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xd2f599ad ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xd359c92c ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x06d2b63d spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x5293a2f3 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xa7512a5b spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xac4c5465 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xb2cefc95 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x38ce9474 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x9b0ec8a0 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xb8acd3e0 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xdff0db31 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x05b4abad spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2fadfd40 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x33c39202 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x45e59236 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x46c2f8db spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x482acc7b spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4d87617e spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x513fb6de spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x59f458ef spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6bd61ee3 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9cfe802b spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa3ab1309 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa4d41c26 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb1240445 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc5bb8b92 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xca267be1 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xda87a7b2 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf3036be4 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x797df1fe ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x09acd413 comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0d926ff5 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0e261c15 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x12400991 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x16ce019c comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1f6e7988 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x26ecd638 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x29fbd3c3 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2c3623d8 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x36c9e9d2 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4f061c5c comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x509097e8 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5a532b9e comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x865489b8 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8c65b43f comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x90313a5d comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x93e886bb comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9d3cb1c9 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa65f5364 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb8a0449a comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb8cd4c35 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbc7a9b1c comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbd66ab16 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbec8befd comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc49c3f1d comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc70661cf __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd3e34d99 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe26d0452 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe508170a comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xec6c8dd4 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf2b50a27 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf3ebfcec comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf43f1d43 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfe9aa743 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xffedd072 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x17448d85 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x9f6b28b6 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xa6db34c0 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xd8abeeb5 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xdfe87090 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xe7663bbd comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xf27ef074 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xfa9022e8 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x2cd1978b comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x60626cfb comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x7d28a176 comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x813b2cc5 comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xa44ac791 comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xcd1117ce comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xfbff4662 comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x30b4fc2f comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x505b9d3f comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x51aa92c9 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x51d1ee02 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xc2496d23 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xd318eac9 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x3e500ea1 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x0e5501c1 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x20eea3a3 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0xab4f1907 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x0ebba6c7 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x1817c821 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x197d8687 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x1e5eb79b comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x3de4c81a comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x7e93055f comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xa4c3f162 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xab7ea8ac comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb6f55e07 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xbffac573 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xca42bcf8 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xe9f06f90 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xf7e3a8d9 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x291ec78c subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x4326b693 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xe0faabd1 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x0d68fcd9 comedi_isadma_poll +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x6815a033 comedi_isadma_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x703113fb comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa3d01a85 comedi_isadma_program +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa7ebb8a3 comedi_isadma_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x2fae9245 das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x004cb525 mite_bytes_read_from_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x16074163 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5837ed3e mite_setup2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6d819be8 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6dc80712 mite_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x72eee078 mite_bytes_written_to_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x746a7df8 mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x75bb7041 mite_sync_input_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x75bcd8a5 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x83edee52 mite_bytes_read_from_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x8491fe2f mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x8d0cd8d9 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x8d259d84 mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9fb6d3ba mite_dma_tcr +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xaa7f31b3 mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc1d3abed mite_sync_output_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xcc6887c9 mite_get_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe844e03d mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe978b16b mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf14fbb0f mite_bytes_written_to_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xff82a2aa mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x716f408f labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xf8f88e7c labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x009bbc6a labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x02711086 labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x69c48161 labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xb7736ad7 labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xc9b2a411 labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x13abc32e ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x15853eeb ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x6445e3ae ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x88254b98 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x9fcedfa6 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xb3e3245d ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xef02d995 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xf4715fc2 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x1607f6ab ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x6602a667 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x89606952 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xaf1899e0 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xd7c91625 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xf68ce562 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x10d97ea1 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x5cd5f709 comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x65072d2a comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x9725c3f2 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xe71d7cc7 comedi_close +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xf4640b18 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xf6a43374 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x2ea56c49 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x02b950fe most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x075cd34b most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x14c497e7 most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x243f58da most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x3fda040c most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x5a3bd6e1 most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x5bf22b3a most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x6b369aa9 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x9903190e most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xb9431e9b most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xc6c078e9 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xe0867dec most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x18e6fedb spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2ab8daa7 speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4f07f20a spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x785747c8 synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x7c245d57 spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8b3aeb81 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8eefe4ce synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x97eaab99 spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a1fb73c spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbd57e155 spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xde1eee08 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe5d9abed spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in +EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0x60cd53ff int340x_thermal_zone_add +EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0x9c755808 int340x_thermal_zone_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x23c2e39c intel_soc_dts_iosf_add_read_only_critical_trip +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x25ec857c intel_soc_dts_iosf_interrupt_handler +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x8e5c65d8 intel_soc_dts_iosf_exit +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0xced87293 intel_soc_dts_iosf_init +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x4131251b uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x43618d24 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xf2a28d62 __uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x17f4854d usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xe77f2ac8 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x1ab83ea7 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x9e6b6c86 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x0fe4d151 ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x1e46595f ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x2410b546 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x625d6efc ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x8b3b41ca ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xe365163a ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x20c6a03b gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x51774f38 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x55cc22a5 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6327d13d gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x70e6a46a gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x731e8536 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x76ac9233 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x853f05d5 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9308dd9a gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9fbfaed7 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb69d2325 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe9b256ac gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xed8b834b gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xeedde912 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfc3e1049 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xdf16245e gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xef9d4d3f gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x4257b856 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x7859e25d ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xfebc109f ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0f64109a fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x11381b11 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x17253077 fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x22d58ebd fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x28764002 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x28a1989b fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3c870e79 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x481a8a44 fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x50de23c4 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5255b366 fsg_common_create_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x536af75f fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5ba25101 fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6824cd88 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x746c6877 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x92cf3baf fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xacc5c05e fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xbd5cc74d fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x17f7a5fc rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x21c4387e rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2ac3ff79 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3f9f337e rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x528fb44a rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x56b5c8a2 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x72daec66 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x83bbcb13 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9d7eb057 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb7d3f423 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbbf57e1a rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbd4d32c0 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd0d34a4b rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdf66e444 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe48e76d6 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x001c6ee3 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0354ce1f usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1309f141 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2d154d28 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3e3334a6 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x44ae6081 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x46ae7957 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x474d9c93 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5eccefa7 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x63ce8398 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x67595282 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7551a075 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7a848287 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7dafef55 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x87996053 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8b3d12cc usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x93e932ec usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9a733157 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9e5ae2be usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xae29e269 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbd30e71b usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc0c52e8d config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcefaed93 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd93426a6 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe0db4b83 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe3952ea0 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe6e7ef65 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xed44eaf1 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf2fc2646 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfc411468 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0488d344 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x11d4b57a usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3134af9c usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x335eba52 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x43cc7130 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x60753f3d usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6dd14eee usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x75f8bc90 usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x817cf239 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x99666e4a usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4744dba usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd796f269 usb_udc_attach_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe26c2e54 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xff01d564 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x0694b919 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x3c6c010b ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x1f9dd1de usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2ee45bc1 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7fce3d1e usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x81c1ce94 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x9863aff7 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa5234776 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xae5683c4 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xbe1c340b usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe1f5213e usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x469c4551 musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x86860db7 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x232f39e3 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x24e53e51 usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x374d170e usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3d32b4b9 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3f604b1d usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x44c34d44 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4b91b1b7 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4be4de53 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x59f7f3eb usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x62668806 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6a14ff13 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x861aab03 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8a4a9f42 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x93e236fe usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb1633461 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb6c954c1 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbd64188f usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc02a8299 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd1f0e231 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd684d460 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdf44ce39 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe04916b2 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x230d145c usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2ed66b69 usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3cd5c3d6 usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3e7c74f7 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4174015d usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x484a6d34 usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4df7254d usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x579826a9 usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5d4cd483 usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x684ca137 usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x69a0e137 fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x69e6493c usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6aaa451c usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x71235b4e usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x78bd0ec9 usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xafb51e7c usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb3ed6f63 usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb55d166d usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xba57c4a6 usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbf848d36 usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd29632e6 usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd963ab3b usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xfc8e36ad usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xfd9f0f8d usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x00a07782 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x229e2cc2 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x457992fa usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x70277181 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7bf6b52a usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9209e11c usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa46053ec usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xccddbe8d usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd37e82af usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xdeb61681 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf7a7bac4 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xfe30dc35 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x2d77fb38 wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x3760bc4b rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x5f27c5ae wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x7f3731c1 wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x84436193 __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc543b60e wa_process_errored_transfers_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xd5553514 wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xea1f1435 rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf4654c3f wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0298222b wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0f2e995d wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x11f77c44 __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x1425e9b5 wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x364d0dc7 wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x96c771db wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa3363d9a wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb411a386 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xbe8a40c4 wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xca270447 wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd61604e8 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe31c062c wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf75db216 wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfbe0eac6 wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x1af2b445 i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x6ff2d684 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xa53ffb88 i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x06723ac6 umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x11fcaa52 umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x152f914f umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x2cba505d umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x3af21099 umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x3db64f43 umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x4340880f __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x572e16dd umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0488c673 uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b8aad57 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0d01fb52 uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0fa61ea3 uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0fbf3805 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1897f0e9 uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1b496f56 uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2932cb5c uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3f2a6077 uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4a597012 uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4de0cdb8 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x50f7a978 uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x55638bc1 uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x591493ba uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x637b351b uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x70c451d3 uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7adf35f0 uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7d540650 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dcfcd23 uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8bebfd92 uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9044bead uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x913caea3 uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa22ba9f0 __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb0994d4f uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb26ef95a uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbcbddf31 uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbcc7fdbe uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbdcd199c uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbeb73b86 uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xccd6d4b3 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xce223528 uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd46321c2 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xda9cfb98 uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdacd09b1 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdbc6c4de uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1ec18ef uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xeb3b228d uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xed372ddd uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xefacd5e0 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/whci 0x91f73607 whci_wait_for +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3f15fe57 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x91e63fd2 vfio_del_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9622a364 vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xba919494 vfio_external_group_match_file +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd1abeccc vfio_add_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xddbc787a vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe3b14134 vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x7d35ff7e vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xd0265cb5 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x03e0ba71 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x12bc834f vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x28041e07 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2ba57649 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2de2dfb8 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2df36c42 vhost_init_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x37e028fa vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3b6ebedc vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3d6658e5 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x41f1af5a vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x49cdb2f3 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4cb96f77 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x594e621b vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x67a93797 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6829e28f vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x89837ccf vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x89ff61a5 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8ac2a73b vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8c048f72 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x97d320b7 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xad1e300c vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb0a3d841 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc269259d vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc5c275d4 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd0c5e75a vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe68919c3 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe761bc17 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xeafa6654 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfb6076a1 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfc193ec0 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/video/backlight/apple_bl 0x2c63e051 apple_bl_register +EXPORT_SYMBOL_GPL drivers/video/backlight/apple_bl 0xdab0f892 apple_bl_unregister +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x30fc7ba9 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x49fb9ce6 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x4fd43005 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x533be0d0 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x7e09eafe ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9b808d8f ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd83027e7 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x257f9ec3 auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x685b6a04 auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x96745e20 auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x9a16f08c auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xa55d833a auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xaac2c577 auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xb8c500d8 auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xc3258d50 auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xe93402fb auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xfaca57a7 auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xc1bfefb8 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x4679ee52 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xbc8bce3a fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x512a3d64 sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xe7b530c9 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x016e6c20 vmlfb_unregister_subsys +EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x90c018c6 vmlfb_register_subsys +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x22a7af24 viafb_dma_copy_out_sg +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x292da7a2 viafb_irq_enable +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x30cc9311 viafb_request_dma +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x31469540 viafb_pm_unregister +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x79e6190a viafb_irq_disable +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xb4f863e6 viafb_pm_register +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xcaefb732 viafb_release_dma +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xeffa61d7 viafb_find_i2c_adapter +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xfff2dfd2 viafb_gpio_lookup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x0fb6a4c9 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x3c230c35 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x462f90cc w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x4a510a18 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x5cda25ec w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x6f5a2917 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x77e07694 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xa8e2f705 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0xbc479f80 w1_read_8 +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xc7ad2a84 xen_privcmd_fops +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x0de9176a dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x222588dc dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xfbff137a dlm_posix_get +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x19c59e80 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x1cca48d5 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4a2289d5 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x75483d3d nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7c785f84 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x81035fed nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9494618a lockd_down +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0260389d nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03e19121 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06790c07 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07cd53e1 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0816eb6c nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1365beff nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15a2a4ef nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1688610b nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f6de42d nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24fa92a3 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25c96ef3 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26dd6962 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29d2ed5d nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2baf46ff nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c7af339 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2df83fea nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e9db6d1 nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x307db126 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3291af93 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x387fbfd6 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c59ece3 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e64d67b nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3eb8e488 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4549b0fc nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x468f1c6c nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x490f40b9 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49afbf77 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ac1ea09 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b71c2cb nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4bdfe417 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c38b079 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d6dc977 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f7bd3fa nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50f09fd7 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x511aa544 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x521daa6f nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53d2f0aa nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x552e0ed7 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a5ec8d9 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5be0461c nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ed96ae0 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62a44683 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63462def nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66e642c5 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x680b9369 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6834b0d4 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a6e1587 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d25fd1e nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6fb4ed56 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70b4a796 nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72df4282 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7849e660 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x788d5318 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b88ea7f nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b94d814 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f25a2b6 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ffe5e21 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81683785 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81c24ed5 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85571774 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x865f82ed nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87de56bc nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c59a51b nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f0aaea0 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9054675c nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91827ea2 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x925deaee nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93369f11 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9970322e nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99e6371b alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a399ef1 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9de12306 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0315707 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa15b81ba nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2f61a5b nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa42bb10c nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5f9a116 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa20487d nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa5e85a3 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa14361 nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae3dd989 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaeee1033 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb16af3e2 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb2861c24 nfs_file_fsync_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb33a241b nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7de07f1 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9e68894 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbdf46046 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbeb7759a nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbee98a2e nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf8c3887 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc024052a nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc184c744 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1c24b19 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1fa424f register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2eba9a9 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc30f311e nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc31ffff9 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5e6d62f nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6399e53 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7234ef7 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb1b3861 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc37aeb0 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd1a4b59 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf07e1ec nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcff4b2a8 nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1a2d0a6 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd44b7afd nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4c789c1 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd68a9f5b nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb9e7c2d nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbcccd49 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe01e387b nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1095b68 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe36d493b nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe434199c nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe54a263a nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9b79704 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xead703e4 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee5dfc82 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7f556e2 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf94de5e9 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfbe28b2e nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfda48c33 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfdb92d5f nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x124b3187 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x04bb7c4f pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x05b00a48 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0789ab95 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0b8ec822 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0db0842d nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x12c2d286 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x243929f0 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x299223ae nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2a0807a9 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2bdf18fd pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x387d6650 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3b977ffa pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d146a04 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x406d8ec4 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48cddcb6 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4b508d52 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x501d36ce pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5c1ff8e9 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5c9ce821 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5cc94bb5 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5edd7f84 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x635bd86b nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x67ae3c39 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69f8e687 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6b3cc214 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f0bac42 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f7bc00a pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x70a16fde nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7104613e pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x745a1eae nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x76fb32d8 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7d8e8569 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x86da8fee pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8b3fe06f pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8cbc4d9a pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x92f649ec pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x95d45ad8 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x988c6ba2 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9b1e4be5 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9e84cbc2 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa7b64ffb pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xad2d620b pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xae7a6d48 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4353710 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb567b9eb pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb6f30246 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb95d41f1 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbcc675d4 pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbd9699c2 _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4ec16f4 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd29103f1 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd576bffd __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd5c363c5 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd5cce2ac pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe59a46c1 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5d2b8a7 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeb8500ed pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf1e5efe9 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf652b84c nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf8b01299 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfcdab57a pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x4ca64b82 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x85514479 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xed490ae9 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x40ac63b3 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x785ddf90 nfsacl_encode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1cb231d0 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5c8cb983 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x78e39eaa o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x815cc035 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9b036bc3 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa6f8e215 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa90a86b1 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa9f5379a o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc152237b o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x428b34c3 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4d8a9253 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x6146a3b4 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x88ac5af9 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xbef4baf7 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xdaa8ae46 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0de04ca6 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x43d65c58 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd61d2eb1 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL kernel/torture 0x100c56e5 _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb +EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random +EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait +EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop +EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end +EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0xb36f95ba _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin +EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0xf3510be3 torture_shuffle_task_register +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress +EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch +EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch +EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch +EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xb1952324 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xd485f413 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x021957e1 raid6_datap_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x0f8a2742 raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xd4cb6873 raid6_call +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x201d8ea3 encode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x29fa419f decode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x57861324 base_inv_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x57d39367 base_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x882ce5fc base_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x9e0112d0 base_inv_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xaedfbb15 base_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xc8fca8a6 base_inv_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xd11741a1 base_inv_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xe3d900b5 base_old_false_key +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x8ef6ef75 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x9ecfa2fd lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x3c347f50 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x48d6605f garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x556d2ba3 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x65af7963 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x812c5226 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x9b1b3733 garp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x27a1590a mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x2dae3adf mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x2f124396 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x5f06f1ce mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x99970c99 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xae9e02a9 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/stp 0x094dc340 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0x8ec13346 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0xa4bce26b p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0xcd88085f p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier +EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier +EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast +EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr +EXPORT_SYMBOL_GPL net/ax25/ax25 0xfb9ac2aa ax25_register_pid +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x2731d290 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x2b27f73f l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x43ec87c2 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6e6f1701 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x742f8873 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xaf68d88b l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd771b161 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xdfaa3cd6 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1db25d76 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x235c6c10 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2c82df7f br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5276180f br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6221e29a br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7c7fa632 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x919d0db1 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xba62311d br_deliver +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x9c99c27b nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0xd589545a nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/dccp/dccp 0x00457c1d dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x07df25b1 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1afb3173 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1b47e326 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x23672cd0 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x29c40ab5 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x364a2c75 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3a2b1d40 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3d1943c7 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3e192bc3 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ac45e90 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4e2d4d99 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x57945cf8 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6c2bb6be dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6e2f3f70 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x740a1943 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x828869f0 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9495933d dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa75ba003 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa86cd7e1 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb20e738e dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xba372482 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc2b22e88 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc6a58e42 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc8da8997 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xda4405c2 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdbcde415 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe1b130e2 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe401aa35 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xebacb7e0 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xec3f9f3e dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xee49e998 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf06c0175 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf29c2cdf dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4f419052 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x8928a967 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x979fc530 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc83dbf81 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd5967abc dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xee6a67b6 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x3d2db503 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x5e5e1f84 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xa817229e ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd06f6fbe ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ipv4/gre 0x082936b2 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x3e5f0bf5 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x15d50fc1 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x611aa2eb inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7b04bd42 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa2d052e8 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe6b24f60 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfa396992 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x82876765 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x37629e96 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x41ddb788 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x589f38db ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5fd27c60 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x62592032 ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x645e76d7 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x69356a07 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7c888d52 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xaca8d1dc ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd2009827 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd5b27606 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xeb6ad661 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xef84b034 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf7509314 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfd710527 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x69c4e3c2 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xa4d2876f ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x71b43605 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x484addf6 nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x579fd5be nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x640c1b95 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xc04d2f8c nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xfd55e075 nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3ab59eb8 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x09d45326 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x914dddf1 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa7cd6607 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xbccd0ad1 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xbe867729 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0xf5f27c61 nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x1b364cc3 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x45572f78 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x59a7d4fb tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x9ab039d4 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa90a12c0 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0665e69a udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x319e2831 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x47dc3f31 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc2caac3d udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x37cc24d3 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x3ab206b9 ip6_tnl_dst_get +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x52489502 ip6_tnl_dst_reset +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x58ac9a9c ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd6e287de ip6_tnl_dst_set +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xe9cadabc ip6_tnl_dst_init +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xfd2b223f ip6_tnl_dst_destroy +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x482a6d47 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xa43bb7eb udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x31e37eb8 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xe2317af8 nf_ct_frag6_consume_orig +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xf27b1f40 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x98e96cae nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x69a58f2a nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xa0c723ea nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xddfd672a nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xde421c92 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xea46409e nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0xe49d0040 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x2bbffc6a nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x810ce3fb nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x9e4745ab nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xcc9d641e nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd13ddda6 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x8247568e nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x080b9f42 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1bfac41b __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1fdc9a37 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2fc3c685 l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x30131b36 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3824fe42 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3ad5ecfc l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x457a1566 l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x45fb10d4 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x499356cb l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x69b53762 l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x83315356 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa24cddaa l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb8258bb1 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc05d4c84 l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe2dcecf0 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x8133cb06 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x065e45a6 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0b120c8e ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x18867597 ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x25fadd9c ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x274551d5 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3085b3f5 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x33afd28d ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x558749bf ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x71cb02f7 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8ea67951 ieee80211_set_key_tx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x93a61aad ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xab1793f1 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb356c880 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc07898ca ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd84f0ce8 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe7c183fc ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xeb186511 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xebdf8959 ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x1b11f7d5 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x32af86a9 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xa3ab604f mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf8d3161f nla_put_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x002f70e6 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x25849543 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x293a9fc1 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x299fac5f ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2b9b39a2 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3a1cb20a ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x417859e0 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x618d8c68 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x68c867af ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6fe7da3f ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x80664bb8 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x90425beb ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xae20e72b ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb9490c58 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd5cea228 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdce64f19 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x9e5551aa register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xd5bb0941 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xf58df3d3 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xf802e0fa unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x01bd607e nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x063e18f4 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x097d045b nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0b8da8ea nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0e5a0e7f nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x13eb5ed4 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1497885b nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x178830c1 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x215e294b nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x26035489 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2605302b nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x264965a7 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x26b549a2 nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2dc71b3b nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2eb8cfd7 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x308bca79 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x311612ec nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36437fa5 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x398d5e2c nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3a461292 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b599fb7 nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b9538df nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x402cd77b nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x418cc08d nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44244111 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4678b806 nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47f1473d nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x48a37f3a nf_connlabel_match +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4c3275db nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4f5793b3 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x529018e1 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x590b5c9f nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5b5f1dea nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5c66a0a0 seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d21db97 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5f8a0b5d nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x622b94e3 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x645bb825 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6818117b nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a18dc58 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6c2cb841 __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6ce51be7 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x721bc817 nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7401fff3 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7d2d43c0 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7e1e7965 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7eb682f6 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x802a0958 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x86906896 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x87ce43ee nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x881495f9 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x88bf0a39 nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x98bbac61 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x992c5aeb nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9946c95f nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c4895fc nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9dd06e5c __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa4dbd359 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaaa32530 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab1a3869 nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad12aa69 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb2ac21ea nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb47e6789 nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb0f36f0 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbf2cd991 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbf723a8e nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc266dd56 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc47d6bf1 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcb33b098 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcee69296 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd1565224 nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd2d4de96 nf_connlabel_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc1488e4 nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdd3f7cd7 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf3f83e9 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdfe4a051 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe974484f nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee22ea66 nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf1367bc5 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf88a786b nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xee84b3f6 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xe0ae54d5 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x8bc9cbee nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1ab3770f nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1fdda91f set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x237cc34f nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4ab9aa2c set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4e82a2a8 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x65580d80 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa35e4f88 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa6b140a5 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xba986e87 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc3fed9a5 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x6083df5c nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x1aab8963 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x618dbfaf nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x67dc37ed nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xe53cc3db nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x05364884 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xa13cca5e nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x29b8fd33 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x98fc619d ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa7ad961e ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xade07f41 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd35591e7 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe5d63019 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xee110c84 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x8845fbae nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xf2a89153 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x3afe4b58 nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x445d9025 nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xb022201d nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xed0e2b9e nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x01664ca7 nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x10b852af nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1dec908d __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x378b8b79 nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3cdd2c5e nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6c9f495a nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x82f4bc03 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x857387eb nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xaccd48be nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xdc7ce5d8 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xf96d8c66 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x710bbeab synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x839f3786 synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8841d39b synproxy_build_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x19a02384 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1afdbb7a nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x417e10dc nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4f2d4206 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x79f28c9f nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x81dfdc11 nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8f0d097f nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9bac8c19 nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb1e2f4f5 nft_register_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc11a4204 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc1dcc291 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd2f43053 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd45806fb nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd882b8de nft_unregister_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe7a05f08 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed4b1b24 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfb1092f2 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x2083748a nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x27b7700d nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x52987a67 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x738c63fb nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7b9437ef nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xb0c7f027 nfnetlink_alloc_skb +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc519df72 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x8b558308 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xd39dc5ba nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xdfe28458 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x7036922f nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x05abcfe0 nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x3664766b nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x3e5152a1 nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x13561715 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x16c6c019 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x7bb7c454 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x83a2f546 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x8e7ad4ae nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xe86b91f1 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x259d4ad0 nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xce968114 nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xdfe5d1b2 nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x03a5a40e nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x8db75b95 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0f889d0b xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x157189b9 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x19af0131 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x278fd8e1 xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x415d8501 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x448f742b xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5bdbed44 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x795f0320 xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8ae62bb0 xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xae979ed7 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb4636aed xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc063271f xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc8b3973a xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfc4cca2d xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x4c32c169 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xb7459345 xt_rateest_put +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x681f2368 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xbbe6b0c3 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xcf0df4e5 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x6fe78079 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x8c53ad49 nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x9541d207 nci_uart_set_config +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0fb581b0 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x25ec1bd0 ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x692c8878 ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6a67db47 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x76a24ab1 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8e88b6b6 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xbd20e21f ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xbd524361 ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xcb847c47 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/rds/rds 0x00203e74 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x143b34be rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x31411514 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x39c98917 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x39f24206 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x3b3daae6 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x528bf67f rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x5dc0f1e3 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x63dd98ae rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x686abb6a rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x68d5035f rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x6cf13336 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x76c4e233 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x8cfde243 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x9f849961 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xce0b7d37 rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0xcf69825a rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xd6b5c3f3 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xde62acb9 rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0xde673448 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0xee05a4d9 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xf08c559b rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xf406e563 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xf64df077 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x1cf7e92f rxrpc_unregister_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xda7f1e37 rxrpc_register_security +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x4982d561 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x7c303ae4 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xdc2a7d15 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0032cdb0 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01d4d44c rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03a29b36 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05a034f2 rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x073ec3c6 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x078872ff rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07a6a934 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07aac0cb rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a837c8c xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bfa2267 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0cebc042 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d1fbecd sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e656e09 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e9029e6 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e9449bb xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10943cd9 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10d40dda rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11d228b0 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1202a4e3 rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x146d4c71 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x148982c2 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x165ab81c rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x214c3cce xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23c2fa1b rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x241d2d04 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x262fd72c xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27e27a6f xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a131d67 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a152a76 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b392f56 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b5a7231 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bc67628 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c41b17f rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2cd1b22a rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2dc2fa54 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2def065e svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e2d1b11 cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eac34b3 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3078ed94 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x316a6ca6 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31fdaa91 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3256aa34 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33eac1b6 rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x372b022d rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37fba5f0 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38921779 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39cc9f26 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ac203bd svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3aee1c2e xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c46572e rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f40b422 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f684aa2 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40a6b13a xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41b0481e rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4260ba8f xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42c01b09 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x434e2978 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44badd78 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x455b7e7b svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45a709fd rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47d5c5c1 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48ee9a93 rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a691b3d rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e6579ae xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ef9b0b9 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x518b79fd xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51f935c6 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x530b5dab sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5356e7f2 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55688a42 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56c4a27c rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58428350 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x595d3839 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x595dd422 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a35db88 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c92f4d8 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d62b74b svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5df365d2 xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5df665bb rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e11fe3a rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5eb75e5b svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fa2f765 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fed2aaa rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x602afa72 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62155cc9 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x626f7633 rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63b50cfd svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65fdf04d xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6609b9af rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x664bfccd rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6abdf384 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d1dcb7f xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71c43efd rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7481680b xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74a8d4b1 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x760a46a3 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x774c48a0 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78d8a840 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b0ca84d xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c716989 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f46fd8d svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8073076a svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80e7a1c9 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x812e694e rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82d642fb rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x840df893 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8799921b svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8835b68f rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x890633dd svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cb46f4e sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e381ca3 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x904c360d xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92bf3071 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x938e8cbd xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97ff39da rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x996f6914 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a270629 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ab2f76e rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9bb468d6 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ce94afc xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d16c12a csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d84942b rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ed7a1a6 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2a3738e svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5ac661d rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7ae888e write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8e7d960 rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa982fe92 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9f82245 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa5c9d03 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac36722c rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac52835a sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0e52e5d svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3fb446a svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9ff9cb3 rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb6c6ea0 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbba7438a svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc9624d1 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd0c0364 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe2528b2 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe436e58 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc02ab066 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc10b1bd2 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc16a8deb rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc233b9ee rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2e6dea3 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2ef0d84 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3097d4c svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5beecad rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc68a87e2 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb83e5a2 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd195d51 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd9fd2a7 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce0dce6c svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce83705f rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd14c8eb9 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd22c4cd9 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4086a97 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5b3714f xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd622686f xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd64e947f rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6e5686c svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7368a3f svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb39feef svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc725188 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd560ec9 cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddc45c84 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde58156c rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde6d428c rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf383b74 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe04eb6c5 xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2612845 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe44bb16c svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe823eaec __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe99eb6d3 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea553092 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb31a535 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec9e81c1 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed26b3e5 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef0b10e0 cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef702c5d xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefb06bdd rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf26371fd xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2a17076 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf31f68f9 rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3e7d3ed xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf481cfd8 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7dd157c svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf80d4c02 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8112c4e rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9ab2a1c svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa301956 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa8531d2 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb00c1a6 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc4b1305 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfceb4c3e xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd0d1c8b rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffc174ae rpc_pton +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x02e6c5e3 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x05dc71b7 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e8e6b6f vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x161de470 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x36abb745 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3e40ca62 __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x50a6ed8d vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x51b6a135 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6004525b vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x69d41d6b vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6feb0d0b vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x74e91915 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdf880c26 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe71f35b9 __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf593c40a vsock_pending_work +EXPORT_SYMBOL_GPL net/wimax/wimax 0x1b4b85e4 wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0x26432e09 wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x2aee4a58 wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0x5c371786 wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x6fb2cea8 wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x727bcf27 wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x843865f5 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0x857a4d19 wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0x9044d3ad wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0xa4fd329d wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0xab9853ea wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0xba746e8e wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0xd0daea24 wimax_msg +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1a68ab6d cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x38c3b8f2 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6359624a cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x69eb3a59 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8708ffb9 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8f424b3d cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9394e2db cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9551efb6 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xad208c23 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb017cfaf cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb9d04672 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xde98fe66 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe53d784d cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x0300ebff ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x12391bc4 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x967e4eec ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xe1d6de51 ipcomp_destroy +EXPORT_SYMBOL_GPL sound/ac97_bus 0xb5053e05 snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xe8fbd5ae __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xf1f49ac2 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd 0x1f0d0560 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0x43b52854 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0x50905117 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x5cbc213e snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0xa1b3cbf3 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0xb7fc12d6 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0xf8ec3d8e snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x3369dff1 snd_compress_register +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xd1c773a7 snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xe31fd6c6 snd_compress_deregister +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x10ae3576 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x42a9e61d snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x431ef12d _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7ca87a1a snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7e4f13ce snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc0964d50 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd3a5ec8e snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd997ded1 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf8ed3fd5 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2e47d726 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3efd4a73 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x6276887b snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x6b334aaa snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x6e70cbed snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x90605d2e snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9192668a snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x91caf507 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa42f127f snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xbd79e2eb snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xcacb6fdc snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1e6683fe amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x3b19e364 amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa9a9a1af amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xad7be554 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xba81a1f7 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc3091055 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd1e8561b amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x01494bb2 snd_hdac_ext_bus_device_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x045d9707 snd_hdac_ext_stop_streams +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x061fb165 snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1451754a snd_hdac_ext_stream_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x16534ef6 snd_hdac_ext_link_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x20e80018 snd_hdac_ext_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x36173a68 snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3de951e2 snd_hdac_ext_link_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x42662d19 snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4e17fe64 snd_hdac_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x57b95d46 snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x621b26de snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x630eef3c snd_hdac_ext_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x67de0c97 snd_hdac_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6a647279 snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7ae47520 snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x91e19569 snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9229a2f5 snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x95dc300e snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9c3a756b snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xae1ac067 snd_hdac_ext_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbad4a90f snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbbacf8a5 snd_hdac_ext_link_stream_setup +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc9b56911 snd_hdac_ext_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xca96609b snd_hdac_ext_bus_get_link +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xcdc49ad3 snd_hdac_ext_link_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd10ffcd8 snd_hdac_ext_stream_set_spib +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd2d14383 snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd4c8eb07 snd_hdac_ext_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xdcd4b7fe snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf6629c1b snd_hdac_ext_bus_device_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xff901d1e snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x02fc89cc snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0d6a92a1 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1a71cfc9 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1e62e371 snd_hdac_i915_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x20d12288 snd_hdac_i915_init_bpo +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x24c5f332 snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x24e38b83 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2556739b snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2b97ac97 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x37497054 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x39a21887 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3db7dbf6 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3e6ab304 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4db5ffbc snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x519ae1e0 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x51aec7cf snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5227c00b snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x571820b5 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5f0d8a91 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x602bdc14 snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x605bd736 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6149a6fa snd_hdac_i915_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x62e1c314 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6f9be6dc snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6fa478b8 snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6fb271c6 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x70f2cfdf snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73187668 snd_hdac_i915_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7e95dde3 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ea9e694 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8645d15d snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8b02e91e snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8b21f5d6 snd_hdac_get_display_clk +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8cfc3db5 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x953e2e1c snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9adfef3a snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9de2fc6e snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9f4790bc snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9f8f18f5 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa77a060c snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xad786bf0 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf12c3ee snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf1e17c9 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb1c6449c snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb224d4fb snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb2ba8e4c snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb4c0fe58 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb5129871 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xba6b920c snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbdbbc7f4 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc18e209d snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc5aeb3b0 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc5fa24e5 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xce8ce985 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd2d1aa14 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd7bf1383 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd918bb96 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdb11efcf snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4feedef snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe794112c snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe7b9bcbe snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe8217a9e snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe8d797b6 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe91a24d3 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xea29e5ae snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb9ee1a5 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf017044d snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf2abcade snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf44c3d14 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf849e9e0 snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf9183d5c hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf9a2a621 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfa8bca6e snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfc457aba snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfd0c9ef6 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfeb0cfa3 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfeeb8453 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xffb9687c snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x16983fc7 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x2a31b1a2 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x4dc2611d snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x903b0a6d snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xbf002810 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xe3910251 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00ece88c snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01e9eaba snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0318474b azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x03686a4a snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x03e8bf51 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05b3181b snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05fa3a06 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0939b919 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ba16fa8 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0fda24cc snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x116babb3 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1263588a snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x153f3d84 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15fdf257 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19b52afd snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ad1215b snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c6c6634 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21202742 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2400cc64 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24b12e25 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x28e50388 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a6d56aa snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2da13d92 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30845dff __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x335a61a1 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3503cfd0 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3560dbc1 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3561bf23 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x356e8f69 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x36af9a67 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x37ecf48b snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x39dab992 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3ab58953 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3c6707dd azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d4ae1d6 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4377a353 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x437f6f37 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43821000 snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x44e1e0f2 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4658d229 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x468466f6 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46a5c9a0 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a7410d9 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ab41b4a azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ade9ec1 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4cc0bf40 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4eee8cc7 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x509555b2 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5238505c snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6146eed9 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x65328ce1 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69b2057e snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69eb7751 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6affda71 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c2ddfdc snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ec34c5d snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7007d379 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74cf8fb8 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x76af97ec azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a2ed353 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b621556 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b75996b snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d9974c9 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80361f35 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8037e4ea snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x897b7318 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a00a27b azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x906a06c1 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x924089b4 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x938091d0 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96cfd19d snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x99423dd2 snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a3ccea0 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a77a9fd snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9bb7fb26 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa13ff906 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2c1cb76 snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4cb0a17 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa58a8b8d snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa97f68c0 snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa9f8a077 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa06f07b azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xab08ff4a snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xacde5b7b snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xad016736 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1c1394e snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb25c887b snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb37b8b2a snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb56f83b9 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9658776 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9fb6119 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbab42cb0 snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbb84d04f snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc5fdfc6 snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbfbc4f0c snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbff865ed snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3ffae61 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc4658c3e snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc5431712 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc5a73db1 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc65a4aca snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc8a57a33 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcad7a21e snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb7fa199 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc1f99d3 snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcce2e6e4 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce4ff92c snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd09b235e snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd203ae9d snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4f8a5fd snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd6431130 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd6d236a5 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdc994dfa snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdff5c053 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe0977646 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe227028a snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe4858df8 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe4a39d60 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf5680e7b query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf58d2222 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf646c996 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb2007ef snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfba55ba5 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xffe42e7e snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x01f8bc5d snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x020e0604 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0c055aa8 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0c0651b5 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1e03980c snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1eac51cc snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2dec02d1 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x34edf817 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x406cddac snd_hda_parse_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4642861d snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x53115002 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6c961ff2 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x84725abc snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x96a62d04 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb00fc528 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb56e456e snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc19623b4 snd_hda_get_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xce3e26bf snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xefe753ac snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf18148f7 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfe169c17 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xba1b50a7 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xfd9e1593 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x0b12ba05 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xe8c6bd26 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0ffc099b cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x56bbe430 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x926d8f23 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x64dfd157 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xc7dade03 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x7fb85938 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x59a8d04b pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x8b1af2c3 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xe1ff994f pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xf797385d pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xa7aa810f rl6347a_hw_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xade4bf4c rl6347a_hw_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt286 0xbf6dae0b rt286_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x504e06c8 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x92e0014e rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xcb190cf8 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x186ef895 rt5670_jack_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x476f0c77 rt5670_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x734eebad rt5670_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x7fa8f9fd rt5670_jack_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x0d5ac1fa devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x1514aedf sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x54df6381 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x9939198b sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xd04f933d sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x3cce3817 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sn95031 0x4d89fbca sn95031_jack_detection +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x3e8bba19 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x56e0f88e ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x5d8033a7 tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xfcfd2c01 tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x422d42b9 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x151a98a5 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x1f0d1db1 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x38b9a353 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xb4d1d984 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xc95cd9db wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x2c13544a wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x45dae049 fsl_asrc_platform +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xad37685e fsl_asrc_get_dma_channel +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x30693bb7 imx_audmux_v1_configure_port +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x58631dab imx_audmux_v2_configure_port +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-mfld-platform 0x805a8be7 sst_unregister_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-mfld-platform 0xb64e65f1 sst_register_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x0c51379f sst_alloc_drv_context +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x90350ee1 sst_context_init +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x93350770 sst_configure_runtime_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xab14edd5 relocate_imr_addr_mrfld +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xbbc1762c intel_sst_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xd50586d4 sst_context_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x40229cf8 sst_byt_dsp_wait_for_ready +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x54cc261d sst_byt_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0xb7969f4d sst_byt_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0xc02e18f9 sst_byt_dsp_boot +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0xdf35fbaf sst_byt_dsp_suspend_late +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0c2b1eee sst_module_get_from_id +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0c938b6c sst_mem_block_unregister_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1826644d sst_module_runtime_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x196ebe0c sst_dsp_inbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1b5e8b82 sst_shim32_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1ba05317 sst_dsp_inbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1c27521e sst_dsp_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1cedab2a sst_module_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x222ce07f sst_block_alloc_scratch +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x282f9ce8 sst_fw_unload +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x28b93573 sst_dsp_register_poll +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2c422c39 sst_dsp_outbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x32dfa939 sst_block_free_scratch +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3691d71e sst_module_runtime_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3a47d591 sst_dsp_dma_put_channel +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x418fb2f9 sst_dsp_ipc_msg_tx +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x42378a7e sst_fw_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x43ab05ed sst_dsp_shim_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x450c7327 sst_dsp_reset +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4535421f sst_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4a045773 sst_shim32_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4cc3d9af sst_dsp_stall +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4d26bba6 sst_dsp_outbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x54020752 sst_module_runtime_get_from_id +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5637de78 sst_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x568b4ff5 sst_dsp_dma_copyfrom +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x61ed28cf sst_memcpy_toio_32 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x62b60398 sst_module_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x65e798f6 sst_dsp_get_offset +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x662517b6 sst_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x67ed4530 sst_module_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7bc08099 sst_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x80eb9bdf sst_dsp_boot +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x817bfd99 sst_module_runtime_save +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x81f340fa sst_dsp_shim_update_bits64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8277f5cb sst_dsp_dump +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8bd9a245 sst_dsp_shim_update_bits_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8d8e20e4 sst_mem_block_register +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9fbfa1cf sst_dsp_dma_get_channel +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa0e57e9e sst_fw_reload +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa0ef798e sst_dsp_shim_update_bits +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa2761be7 sst_dsp_shim_update_bits_forced +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa7781b15 sst_dsp_dma_copyto +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xad93290d sst_dsp_shim_write_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xaed7cad5 sst_dsp_shim_update_bits64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb01fcf21 sst_dsp_shim_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb8e9f475 sst_fw_free_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbc7a6452 sst_memcpy_fromio_32 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbcec5387 sst_shim32_read64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbdbaea8a sst_dsp_shim_write64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbe0a718b sst_module_runtime_restore +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc183948b sst_dsp_mailbox_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc892c522 sst_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc9120097 sst_dsp_shim_read_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xcce0c82c sst_dsp_shim_read64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xcd14461b sst_dsp_shim_read64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd9a2c94c sst_shim32_write64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xde4fa098 sst_dsp_shim_update_bits_forced_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe1bb0d4c sst_dsp_ipc_msg_rx +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe31a9f30 sst_fw_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe55b005f sst_module_runtime_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe89d7ca2 sst_dsp_shim_write64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xea2094d8 sst_module_runtime_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf605a51b sst_module_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x31daf7a7 sst_ipc_tx_message_wait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x5676fa9a sst_ipc_fini +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x6b3bfc4f sst_ipc_tx_msg_reply_complete +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x9607ddca sst_ipc_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x97a2a1d5 sst_ipc_drop_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xeb0b70e5 sst_ipc_reply_find_msg +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xf4417675 sst_ipc_tx_message_nowait +EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0xaafe364b sst_hsw_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0xd1f69f64 sst_hsw_device_set_config +EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0xf0dbac97 sst_hsw_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x07ffdaf1 skl_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x1b7510e4 skl_ipc_save_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x283aa1d5 skl_ipc_restore_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x3461afa5 is_skl_dsp_running +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x63acbe0e skl_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x73f464d3 skl_ipc_init_instance +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x762b1161 skl_ipc_set_dx +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x7d412df3 skl_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x98d18f19 skl_ipc_bind_unbind +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xba2973f4 skl_ipc_delete_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xc24991c9 skl_ipc_set_pipeline_state +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xc3dd2c4d skl_ipc_create_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xe1c079a7 skl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xf0739679 skl_ipc_set_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xf5794d20 skl_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0207321c snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02ad3ea2 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04820e15 snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06cc52e0 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a7a6af9 devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0cde7bbc snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0df41eb8 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e05af54 snd_soc_platform_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f54757b snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10013849 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1061a3f9 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x110eb00c snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x113e1c7d snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11b544f5 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11cb0c2d snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x129f02aa snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13e70286 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x16072c94 snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1af4a553 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1be0eecb snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d8de501 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e34796d snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ea4d622 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1faef90a snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21c90feb snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22cb9ab9 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23fe5552 snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25fa0f27 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x284a5a13 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29cfbd83 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b88b432 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2dfc7851 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e62741c snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2eaa5910 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f0507df snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f0c0fd6 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f1550c8 snd_soc_lookup_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32a02bf6 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34715cd9 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x393a0508 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3bf3d872 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c29c9d4 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x400dd2bf snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41987f9b snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4222e6f3 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4242b71e snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x433a610f snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4384de22 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43fbfc15 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44866539 snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x459c3f4d snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4992f490 snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4bcdc7f6 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fe2e38a snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ff2061e snd_soc_tplg_widget_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52fc482b snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5753d68f snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57dd4a71 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58c797a2 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59931cd6 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a4a8356 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b2f2ca1 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b85921f snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f42e01a snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x605a823e snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61056597 snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6324703b snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68ef4606 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x696a8631 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a8093db snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e3fb37c snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e9572ef snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f5f65e1 snd_soc_remove_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71189d0d snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72cb8277 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73fc14a9 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x750f849a snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75b290a0 snd_soc_tplg_widget_remove_all +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7632eeb6 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x770eccd4 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x795fbbe5 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79ebfa62 snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d0a4ab6 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d4e78f6 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d6502af snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x814426b6 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8185ed67 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81f868e2 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83bd0d6f snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8bea515e snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d7036ba snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f98b909 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9400805d snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94235641 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94370f28 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9496057c snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96830015 snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98d7970b snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99369e70 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9acda6ea snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b2ee824 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9dc83c2a snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9efc68aa snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa14ea9f3 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa192ff63 snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa34297e3 snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa43999f4 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7b06361 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab2dda6d snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab9251d0 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab9cf067 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac9a6b1d snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb03c1367 snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0eef76d snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb259a3a6 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7c2f96f snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd208a29 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc11e5426 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc147175e snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1d1f012 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1d2854b snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc25b28e5 snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc43986cf snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc56292a3 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6911eca snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc865af0c snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcaae67b6 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0f607a6 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0fac2fd dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1cd72fc snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3a4f0ef snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd48742d1 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd59dbdde snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5ef551f snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8749ec1 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda1f3dbb dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdfb288c0 snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1fd95c6 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe33e7217 snd_soc_add_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5447e51 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe56bcf6c snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5d37765 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe695dc25 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe93e7b9d snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea82f48c snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec69d841 snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec8073cb snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf12b5c26 snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf313bdc4 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3714d3b snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3ca7bb1 snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5ceb439 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5cf9e45 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfaf0a642 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1bb22dc9 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x20328899 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x22c5e252 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3621e0f7 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3ae7436c line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5c701830 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5d126cb4 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x72dd2707 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x77427358 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7a4de52f line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ea1de72 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8f194d12 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9fd8b696 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa135b60c line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfcda6b7d line6_read_data +EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x08003b2f i915_bpo_gpu_turbo_disable +EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x0d97d346 i915_bpo_gpu_raise +EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x358a54ae i915_bpo_gpu_busy +EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x451432c2 i915_bpo_gpu_lower +EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x7d4de94c i915_bpo_read_mch_val +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x00eb718d ven_rsi_read_pkt +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x101236e4 rsi_init_dbgfs +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x12ebbfd7 rsi_send_rx_filter_frame +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x1e678bb2 dot11_pkt_type +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x267fd716 rsi_send_rfmode_frame +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x328042dd ven_rsi_mac80211_detach +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x437447f4 rsi_hex_dump +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x45ca198c ven_rsi_dbg +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x49493d1d rsi_config_wowlan +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x4d1ea4de rsi_remove_dbgfs +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x59a92f09 rsi_hal_device_init +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x7e97b420 ven_rsi_91x_init +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x8e02e104 ven_rsi_91x_deinit +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xa6d19714 rsi_hci_attach +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xb92892bc rsi_deregister_bt +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xcaec6602 rsi_default_ps_params +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xdbf0d52a rsi_hci_detach +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xe610d5b1 rsi_hci_recv_pkt +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0xf6e772c3 irq_bypass_unregister_producer +EXPORT_SYMBOL_GPL vmlinux 0x002dba6b pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x0034f3b6 xen_has_pv_nic_devices +EXPORT_SYMBOL_GPL vmlinux 0x00462bb8 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x006ec128 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x006f59eb cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x00747181 trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x008f5ae8 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x00ab1a7e usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x00e7a120 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x00f8624f pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x00fac9ac tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x010ee2d2 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x011047e2 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x014b6628 dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0x015ef0cd device_move +EXPORT_SYMBOL_GPL vmlinux 0x016ad45a devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x0170cb6c efivar_work +EXPORT_SYMBOL_GPL vmlinux 0x0178796a __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok +EXPORT_SYMBOL_GPL vmlinux 0x01852310 ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x02010eb3 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x0223bcf2 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x022dd0ff pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x023cc7bb __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x0252ab4f crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x025b7a1e dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x02653eac inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x0283ebab tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x02956853 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x02963686 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x029e42c4 __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0x029e7101 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x02a75267 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x02e0df77 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x02e3b109 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x02e8201f to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x02fa1242 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x03010687 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x03071a61 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x030c9848 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x031cbaa6 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x03275737 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x032e7586 mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0x033019b7 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x03375639 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x0373a727 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x037f6ddb unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x03814aac ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03a5fec9 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x03a71968 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x03ce75ee arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x03d77078 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x04363c3f rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0x04384714 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x043bf3c9 devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x04551fb7 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x045c2eab spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x046b0093 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x046c1620 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x047c8ddf devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x0485655f amd_get_nodes_per_socket +EXPORT_SYMBOL_GPL vmlinux 0x04897b9a devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x048a6846 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x04972400 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0x04b0807c ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x04b1ba2a iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x04bf26af ioremap_page_range +EXPORT_SYMBOL_GPL vmlinux 0x04c3f2c1 gnttab_empty_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04d055af sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x04d07f92 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x04ecfb5c set_memory_wt +EXPORT_SYMBOL_GPL vmlinux 0x04f4bd8d percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x0509cf6a tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x05125d80 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x05196d63 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x0524dc28 blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0x05306bfe for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x05564d79 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x0574e17c pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0x0576fd25 md_run +EXPORT_SYMBOL_GPL vmlinux 0x0587a13d reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x0589a49d adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x05a9367c wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x05cc2363 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x05dbb78e fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x05f5dd56 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x06161f53 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x061f2938 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x064b4c83 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x065a0280 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x065dc81c regmap_fields_write +EXPORT_SYMBOL_GPL vmlinux 0x0668692a tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x06963c36 intel_msic_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x069b74c6 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x06c9fc91 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio +EXPORT_SYMBOL_GPL vmlinux 0x06edbbb6 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x07032f9e trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0x0706f924 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x071ee624 __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x073a338b fpstate_init +EXPORT_SYMBOL_GPL vmlinux 0x07442711 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x077efbb9 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x07916685 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x0795c414 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x079c731d platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x07a4f537 x86_vector_domain +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07d8f332 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x07f300c3 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x081e65a5 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x082333d6 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x0829127d gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x0879fc94 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x08a101e5 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x08c06da7 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x08d26f05 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x08ebab77 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x08f0bd3c xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x08f10258 gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0x0903fe67 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0961ebc6 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x0962d0e8 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x096ed14b blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x09829c1e securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x098592cc ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0x0989378c request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x09b09813 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x09dc0244 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x09eb3f19 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x09eda0a2 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x09f20cdc tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x0a0f34f2 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x0a11e18c n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x0a1f36b3 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x0a3ee7e1 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x0a4fde00 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0a519867 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x0a57df06 devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0a5914af devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x0a64775f devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x0a674bf3 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x0a737c67 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x0a742ea5 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x0a89b220 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x0a8d21ae list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x0a97fc9d tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x0a9be626 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x0a9cc482 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x0a9de457 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x0af4e2cc rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x0afd4610 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b1a9bef pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b911090 xen_pci_frontend +EXPORT_SYMBOL_GPL vmlinux 0x0bad2538 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x0bad4cac arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x0bad76d6 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x0bad8bfd crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0x0be30b6e adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c097119 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c0e583d key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x0c23613c gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c33d743 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x0c53eecc devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x0c5b8061 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x0c5bc86b single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range +EXPORT_SYMBOL_GPL vmlinux 0x0c80e3fe efivar_init +EXPORT_SYMBOL_GPL vmlinux 0x0c8fa94a crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x0c94ff64 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0ccf86de __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x0ce75a41 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x0cf52b62 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x0d059e64 static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0x0d0a115c crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x0d107daf fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x0d29b3cd xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0x0d2c8b0b smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d4e446d crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x0d6fcf66 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0d85a87c da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x0d918865 dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x0d9bd8cb raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x0da09cec reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0x0db649e4 phy_create +EXPORT_SYMBOL_GPL vmlinux 0x0db8d22d clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x0dce1f9c get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0df6ba51 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x0df925f6 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels +EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release +EXPORT_SYMBOL_GPL vmlinux 0x0e1b8e8e bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0e20aba6 i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x0e52ff11 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x0e6a33a0 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x0e833c1a exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x0e8d6972 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x0e919b34 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x0eaacca8 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x0eb37246 clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0x0ed21548 sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0x0ed57b66 fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0ed6925f blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x0ee72fea device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x0f0e4109 __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0x0f289ac1 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f361b45 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x0f3bb7dc usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x0f543e9d nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x0f5d1017 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x0f6e4206 gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f783fee dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x0f8ed4eb sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x0f93e8eb mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x0fa138de xen_hvm_need_lapic +EXPORT_SYMBOL_GPL vmlinux 0x0fa24308 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x0fb9f204 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x0fbff461 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x0fc01e9f static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi +EXPORT_SYMBOL_GPL vmlinux 0x0fe2d570 xenbus_directory +EXPORT_SYMBOL_GPL vmlinux 0x0fe3577a acpi_dev_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x0fe7d785 blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0x0fe859e8 blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0x10075bf3 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x10092113 scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x102e56f9 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x10383b9f regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x103b8d63 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x103de206 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x1059cd4a led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x10604b26 __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x1094725e regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x10abcde9 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x10c927b1 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x10cdc4d2 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x11199183 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x11216fb1 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x1140a2d8 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x11932187 acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0x11a3d991 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x11d81720 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x11dfb69e cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x11e3f7c4 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x1211e545 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x1214694d cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1235e860 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x12365e8c percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x12547883 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x126fdb51 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x1273b31a wm8400_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x1298bcf4 nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x129bd5e4 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x129dbd5c crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x129ebad5 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x12a1fdc5 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x12b00439 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x12c8d89c virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x12ca8e17 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x12dfb1d6 xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0x12ea3c14 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x130bd388 check_tsc_disabled +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x134a7977 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x134e3bcb dma_request_slave_channel_reason +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1365cebe attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x1372a4bc serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen +EXPORT_SYMBOL_GPL vmlinux 0x13b89dee pinctrl_request_gpio +EXPORT_SYMBOL_GPL vmlinux 0x13bb5cb5 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x13c3efa9 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x13c5a4ee pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0x13ede55d alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x13f51fc3 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0x140477c5 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0x141a67cf usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x142f240e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x14530b1c device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x14579e22 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x1470f694 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x14937b9b shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x1498cd24 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x14a54d1a xenbus_map_ring +EXPORT_SYMBOL_GPL vmlinux 0x14bc6acf pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x14c1ddcd powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x14e60851 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x14ee8ad1 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x14fb3d5c platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x15010e1f arbitrary_virt_to_machine +EXPORT_SYMBOL_GPL vmlinux 0x1515313d phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x15203ab5 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x153a2378 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x1540c469 efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x15450b25 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x154642db usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x154c985c tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x15568631 lookup_address +EXPORT_SYMBOL_GPL vmlinux 0x156107b1 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x1568f79b regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x1578beb2 wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x157d6335 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x15b0606e e820_any_mapped +EXPORT_SYMBOL_GPL vmlinux 0x15dc5fdc do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x161f4df3 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x1627e626 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x162f78f8 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x1646aa2d ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x164934f4 pgprot_writethrough +EXPORT_SYMBOL_GPL vmlinux 0x164f16e2 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x1664cfca irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0x16707705 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x16b15d3f irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x16b4fc5c tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x16e215c6 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0x16ef3254 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x17045172 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x1716a5cc devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x1716cd73 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x172d08b8 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x17321c22 ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub +EXPORT_SYMBOL_GPL vmlinux 0x177c25ee class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x17826ef9 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x1792e71f __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x17984f0b regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online +EXPORT_SYMBOL_GPL vmlinux 0x1799a7c2 wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0x179bca0e da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x17a73204 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x17d71d4c dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x17daf154 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x17f63e87 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x183c8ef2 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x184f5113 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x186bcb40 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x189bfbd1 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x18ac7f3c ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x18c40c8c unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x18c5e961 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x18c805bd blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x18edf8d6 devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x18f5e50e arch_apei_enable_cmcff +EXPORT_SYMBOL_GPL vmlinux 0x18f83fab gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x18fd91d9 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x19104941 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19248c1f aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x19274aed sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x1934b829 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x1942c88b tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x194e81d9 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x1959dc86 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore +EXPORT_SYMBOL_GPL vmlinux 0x19702390 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19755b98 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x1990f8ff pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19a95529 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x19c2910f crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x19f24edc device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x19fdbd74 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x1a16e170 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x1a1b53c8 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x1a1c4082 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x1a4f9a90 wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0x1a509c46 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x1a55d365 rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x1a9afa23 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x1a9cb062 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x1ab91595 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x1ab9f936 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1adb4a5f usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x1af958f7 fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0x1b1f2bda speedstep_get_freqs +EXPORT_SYMBOL_GPL vmlinux 0x1b38b3c6 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x1b3e3a8c __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x1b43f5bc transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x1b52ddc8 acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0x1b68b0ac __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x1b790944 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b8efa0f kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x1b90882e sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1ba1ee94 bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x1bb2d05e __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x1bbd88f6 devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bdd263e xen_remap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x1be5074d crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x1c114562 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x1c340583 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x1c4651ff pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase +EXPORT_SYMBOL_GPL vmlinux 0x1c6660c7 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0x1c66ab46 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x1c79969d sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x1c7e005c generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1cc60b94 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x1cdd5440 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x1ce51409 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x1d112c28 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d3b41b3 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x1d3c0ef0 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1d459685 xstate_size +EXPORT_SYMBOL_GPL vmlinux 0x1d4b6855 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x1d4c959d skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x1d681eb5 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x1d739e1c xen_set_callback_via +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x1d7cb586 clk_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x1d82f054 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x1d8cbe7d nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x1d9da838 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x1def880e bind_interdomain_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x1df5463e device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x1e05d1d4 pwm_config +EXPORT_SYMBOL_GPL vmlinux 0x1e2190e5 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x1e408843 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x1e41969a __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e5d3e89 dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x1e655037 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e80cce5 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e92fef1 sock_update_netprioidx +EXPORT_SYMBOL_GPL vmlinux 0x1e93b0eb ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x1e9b90d6 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x1e9c6f77 rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x1e9d0f78 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ebfc1c5 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1edcb439 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x1edea8c4 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1ee4592a pwm_disable +EXPORT_SYMBOL_GPL vmlinux 0x1eea04c2 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x1ef5914a wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x1f0c72ae pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x1f1b663a spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x1f1c61d1 devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x1f3303b1 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x1f406110 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x1f5b0ace platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x1f7f6fac register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1fa0ae4b attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1fa190a5 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x1fdbbb37 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x1fe6ef61 crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0x200619d5 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x20070d8a ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x200cc695 __free_iova +EXPORT_SYMBOL_GPL vmlinux 0x20398ffe register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x204e66e6 percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0x20741170 acpi_dev_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x208a5a28 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x209ec764 xen_event_channel_op_compat +EXPORT_SYMBOL_GPL vmlinux 0x20a25dce acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x20c359f3 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x20e12bd0 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x20f2afa5 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x20f935a0 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x20fed3b3 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x21317018 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x21356c4c pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x213e2574 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x21625eed fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x216e7d1c sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x2182c507 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21b17d9b pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21d3eb3a mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x21dd2645 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x21e19f3d queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x224fedc5 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x227a2181 cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x2287f137 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x22951750 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x2299ec81 perf_assign_events +EXPORT_SYMBOL_GPL vmlinux 0x22ac0199 ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0x22b70e6f dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x22e18a13 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x22f97be1 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x2302d3d9 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x23048011 __intel_mid_cpu_chip +EXPORT_SYMBOL_GPL vmlinux 0x230c9cd3 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x2311ed74 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x232fba9b pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x234900de usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x23526622 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x235e0caa __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x23634a50 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x23644594 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2366a2c0 errata +EXPORT_SYMBOL_GPL vmlinux 0x23770f29 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x239f1f7a class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x23ad0d89 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x23adf953 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x23b48c20 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x240580a9 xenbus_probe +EXPORT_SYMBOL_GPL vmlinux 0x2440ffb6 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x2460a5bf crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x24656ad9 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x246e5758 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x247bf620 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x248d1bd1 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24c7698a xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x24d41c76 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f45195 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x24ff257d pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x251835ce nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x2522ade9 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x252c09be injectm +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x2543c3a6 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2545c170 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x25468846 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x25544f69 i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0x25703d32 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x25775571 acpi_subsys_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x257aa0c5 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x25800473 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x25a7150c acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x25b278cf fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x25b6320c device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x25bd595e gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr +EXPORT_SYMBOL_GPL vmlinux 0x26085a7e pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x264ae4c6 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x26656e6a usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x26965721 slow_virt_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x26b181a5 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0x26b3c701 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26d03756 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x26d12ec3 swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0x26e1051e tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x26e35828 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x26e5cdff usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x2704d7d2 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x271574e9 iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x2742a7dc blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x274b308a spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x27545a08 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x276567a5 rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x277e5999 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x278b6c3c nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x27904ca9 posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0x279cb985 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x27a99cea pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27c97f29 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0x27d8fa04 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x28084a7d reserve_iova +EXPORT_SYMBOL_GPL vmlinux 0x28280102 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x28341d65 xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0x2839cf98 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x28430ce5 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x284aff39 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x2853fe3f ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x285cb7dd pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x285d1bde virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x287161cd posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28922ed3 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x28a0a0cf regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x28b936f3 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x28ccfd73 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28ce407b __class_register +EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0x28fc1315 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x28fd1944 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x2901eb43 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x292a5720 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x293f073e vrtc_cmos_write +EXPORT_SYMBOL_GPL vmlinux 0x295eed45 blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x299ca0af usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x29d65e5b acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x29d7fa1a call_filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x29e6c299 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x29e7eb04 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29fc2f31 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x2a0a7152 blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x2a123106 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x2a34e11c add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x2a4090da __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x2a49fec1 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x2a61cef4 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a7c08c4 bpf_prog_realloc +EXPORT_SYMBOL_GPL vmlinux 0x2acdc2ce driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x2af63321 acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0x2b179a0b rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b2f0906 tps65912_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x2b4b97ba user_describe +EXPORT_SYMBOL_GPL vmlinux 0x2b4f1b50 swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x2b58d0bd xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x2b5f9014 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x2b67f096 speedstep_get_frequency +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2b96316a efivar_variable_is_removable +EXPORT_SYMBOL_GPL vmlinux 0x2bb3c704 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x2bdbd7fe eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x2bfa39ee pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0x2c1d4c39 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c2d03b0 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c4cf1ca serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x2c52f709 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x2c5c7810 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x2c630bd1 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0x2c6a0410 xen_set_domain_pte +EXPORT_SYMBOL_GPL vmlinux 0x2c6cb8ae rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x2c78bb6a extcon_get_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x2c7d9c64 xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c8edb58 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x2c9f54d7 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x2cd14b13 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2d000d93 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x2d018fcd tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x2d1a6ef2 __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d248726 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x2d2fe3de dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0x2d3e6bea lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x2d3eeda3 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d488ff9 acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x2d4bae3d wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d6be4fc scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0x2d6c5e36 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x2d9f2ce3 sched_clock_idle_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x2da469f9 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x2ddea1c0 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x2de681b6 system_verify_data +EXPORT_SYMBOL_GPL vmlinux 0x2e0b9823 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2eadfe45 tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x2eb9d6ae register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ebf0328 single_release_net +EXPORT_SYMBOL_GPL vmlinux 0x2ec18f52 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2ef0b342 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x2f0ae360 shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f122d95 cpu_tlbstate +EXPORT_SYMBOL_GPL vmlinux 0x2f3aad81 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f487cbe usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x2f5d9b25 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x2f5df57f xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f656128 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f90da7e trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x2f936209 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x2fd71fd9 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake +EXPORT_SYMBOL_GPL vmlinux 0x2fe6c7a6 crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x300cfdcc inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x3012968a blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x3051fe2a crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x30635782 cpu_has_xfeatures +EXPORT_SYMBOL_GPL vmlinux 0x309028a0 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x30c424fc usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x30efd325 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x310559e4 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x310d6dad __sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x314a9cba unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x314f75d9 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x318ba497 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x31b1e1cf dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x31c4a0b2 wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31e44b16 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x3219a99f usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x3222a704 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x3229ad34 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x3238c600 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x32557712 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x325e677c gnttab_grant_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x3263d968 gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x32924a4d scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x329dbffc i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32bd75fc l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32e3b076 mxcsr_feature_mask +EXPORT_SYMBOL_GPL vmlinux 0x331e7806 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x33269aa0 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x332cf3b7 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x332ddae8 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x333228ec intel_msic_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x3340f92c regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x3345a22c x509_request_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x3362b03c xen_p2m_size +EXPORT_SYMBOL_GPL vmlinux 0x33655159 xen_pcpu_hotplug_sync +EXPORT_SYMBOL_GPL vmlinux 0x336d4b88 pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0x3387c721 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x33881dd0 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x33b96e5d apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x33ce200d set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x33e0eaa6 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x33e3c4ba dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x3413b3a3 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x3416a7b7 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x34331d5e nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0x344e56af rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0x346bd3df ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x347682ce snmp_fold_field64 +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x349925a1 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x34c03456 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x34db7102 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x34dfa0ce rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x34effa4e console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x34ff3654 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x3506f5dc scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x35071656 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x351e12b1 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x352650ee gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0x353c6f82 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x35428fb8 regmap_update_bits_check_async +EXPORT_SYMBOL_GPL vmlinux 0x3549b01c virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x35582861 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x35667b22 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x3581f995 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x35827816 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x35839455 raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0x358e2a60 dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x358e8a52 tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35910f72 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x35b14c26 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x35b3f983 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x35dcd1f7 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x35ea34a0 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x36588f05 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x365936ab ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x367aa0ff bpf_prog_get +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36b117f4 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled +EXPORT_SYMBOL_GPL vmlinux 0x36ba2551 intel_scu_devices_destroy +EXPORT_SYMBOL_GPL vmlinux 0x36baaedc gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x36d54c12 blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36de2236 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x36e60520 pci_get_hp_params +EXPORT_SYMBOL_GPL vmlinux 0x37011fa9 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x3707a221 xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0x3764af2a rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x37951d7a class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x37998947 cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0x37a2e98b sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x37d0f7df bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0x37d2612b hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x381ed945 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x38292234 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x3833a9ec dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0x38417804 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x385e2aae devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end +EXPORT_SYMBOL_GPL vmlinux 0x387ad46e __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x38973e35 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x38a396b4 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x38a5176e acpi_dev_gpio_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x38a97752 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x38afe3fa led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38fd37f7 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x39016642 devres_release +EXPORT_SYMBOL_GPL vmlinux 0x39056d1b nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x39298420 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x392d252f ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x39479a34 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x394c1b7d phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x395b7894 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3971a8ae xenbus_unmap_ring +EXPORT_SYMBOL_GPL vmlinux 0x3980cb7e perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x398635dc spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0x398786cd alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x398937c9 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x39b11ff9 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39ceed6c wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x39d38c57 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x39d5a41e use_mm +EXPORT_SYMBOL_GPL vmlinux 0x39e4e457 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x39f26eae device_add +EXPORT_SYMBOL_GPL vmlinux 0x3a0ee31f skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0x3a15ef89 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a641822 acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0x3a6657c1 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x3a668cc8 device_add_property_set +EXPORT_SYMBOL_GPL vmlinux 0x3a6d886f setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aa1d825 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x3aa7936a srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x3acb26a1 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ad833d7 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x3aea1f06 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x3af90150 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x3afd45b6 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x3b04c2e3 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x3b08ac59 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x3b469ab7 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x3b547bc9 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x3b70a4c3 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x3b7145bb apei_exec_read_register_value +EXPORT_SYMBOL_GPL vmlinux 0x3b82f64d gov_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x3b9b54db serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x3bbce6f9 regmap_write_bits +EXPORT_SYMBOL_GPL vmlinux 0x3bd4d649 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x3bde3415 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x3be94826 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x3becfdc7 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x3c070743 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x3c28ec43 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x3c425a52 efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0x3c5a6151 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x3c5c08b6 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x3c73d131 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3c93ea25 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x3cb95922 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3d0356b1 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x3d296abb pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d4cef22 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x3d4d7d58 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x3d5a7782 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x3d7ea99a gnttab_grant_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x3d82215b flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x3d96c263 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3da110d9 xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0x3da2dcb6 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x3daccfd7 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3dd4d3a7 bprintf +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3dead550 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e127343 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3e2496a0 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e4138b6 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x3e548a76 regmap_field_write +EXPORT_SYMBOL_GPL vmlinux 0x3e54b244 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3e5bdd04 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e639f99 efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0x3e69c7c5 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e70a53b serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x3e757637 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x3e8b6f08 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x3e9cd267 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3eb517f1 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x3ec373d4 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x3ef32c5b seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0x3ef8544d regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f1bd29d led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x3f1c7587 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x3f229c4c oops_begin +EXPORT_SYMBOL_GPL vmlinux 0x3f34767b wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x3f481993 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x3f5b9efa ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x3f68b90b __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0x3f84d4c9 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x3f9a9e03 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0x3fcc2a49 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x3fdbb8e5 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x3fe3a17a nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x3ff73608 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x4010b80f pmc_atom_read +EXPORT_SYMBOL_GPL vmlinux 0x40169c74 napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x401e84c8 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x4021fedc regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x402bdc3b root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x405ef31a ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x40616325 dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x408212ba hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0x40a00546 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x40a7dc4f rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40e3d4a4 xen_swiotlb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x411ff21b dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x413a72ba ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x413ecdd8 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x414ca3d8 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x4156d543 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x416f2c7b ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x417c15c8 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x418710e7 mce_inject_log +EXPORT_SYMBOL_GPL vmlinux 0x41a3d53f sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x41adbe55 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x41afeedc regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x41d38fdc device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x41d4992b ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x41e44367 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x41f4e7a6 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x41f8416d devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x420ac016 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x4212de6e relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x4213a51a efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x4219677b __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x4226fa0a phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x42387255 blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0x423da50f inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x423f5e49 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x42652844 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x426b88ac pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x42c22fb1 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x42c989ff iomap_atomic_prot_pfn +EXPORT_SYMBOL_GPL vmlinux 0x42dc3800 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x42e33a9a cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x42ede965 sis_info133_for_sata +EXPORT_SYMBOL_GPL vmlinux 0x42fe53d3 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x432007a2 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x432c3563 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x43579599 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x43636ff3 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x4377b218 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x437c28b9 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x4395953e usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43c1c0ab regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x43cd65e1 device_create +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43d0879c kick_process +EXPORT_SYMBOL_GPL vmlinux 0x43ef8351 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x4413e012 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x4417c965 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x441fa356 irq_ts_save +EXPORT_SYMBOL_GPL vmlinux 0x442ab6db regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x448b2a1a fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x44b0cc3e cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x450e0c2a ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x4512b086 intel_scu_devices_create +EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state +EXPORT_SYMBOL_GPL vmlinux 0x4542fc36 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x454f1cb4 efi_query_variable_store +EXPORT_SYMBOL_GPL vmlinux 0x4554a842 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x45603b8e register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x459177c0 pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x459d22ef device_reset +EXPORT_SYMBOL_GPL vmlinux 0x45b7d6a0 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page +EXPORT_SYMBOL_GPL vmlinux 0x45e3a852 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x4606151e device_attach +EXPORT_SYMBOL_GPL vmlinux 0x4606e3bf tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x460f31aa rodata_test_data +EXPORT_SYMBOL_GPL vmlinux 0x4617ad98 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x461d9a75 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x46357f89 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x46647c87 acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0x4678157d pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0x4680ea9d dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x46875a63 apic +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x469afe56 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x46f60798 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x46f990db vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x4707a95c debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x471991fc relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x472d3558 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x47377d5c efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x47403cd8 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x476380e7 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47add933 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x48199268 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x481fe30e __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x481fecb2 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x482426bb sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x4843d066 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x485a7e55 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x4862bd8c cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x48682db9 perf_guest_get_msrs +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x48a24968 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x48e8f3c1 blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x48eaefbb netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x490a8df6 x86_platform +EXPORT_SYMBOL_GPL vmlinux 0x493891db ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x494659c0 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x4967ccf8 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x497ca247 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x4986c67f pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x498fb701 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49a73031 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x49a7ac98 blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0x49baa745 acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x49c4a84d swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x49c72176 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x49d120d2 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x49d18daf pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x49de88ff xen_swiotlb_sync_single_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0x49e62842 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4a061e5d clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x4a2ed303 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4a3c3cf9 microcode_sanity_check +EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name +EXPORT_SYMBOL_GPL vmlinux 0x4a4cd226 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ab821d3 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x4abc1390 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ad3c04d usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4afb573b vrtc_cmos_read +EXPORT_SYMBOL_GPL vmlinux 0x4b0830b5 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x4b1c5558 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x4b73a89c virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x4b756a60 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x4b832477 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x4b9b5087 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x4bc71d89 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x4bddc39e sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x4be15281 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x4bedcb55 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x4bee2b65 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x4bffb3f5 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x4c0a6c00 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x4c1070ce spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x4c27954f led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x4c2a472b __static_cpu_has_safe +EXPORT_SYMBOL_GPL vmlinux 0x4c3e84da bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0x4c43337b i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x4c58ec18 virtqueue_get_used +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c63a9a4 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4c7b30d5 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x4c7d0da2 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x4c8054c0 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x4cb8e7a2 irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0x4cc4a8c7 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x4ce0dc63 wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0x4ce8f5a2 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d0aa139 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x4d34c485 trace_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0x4d47ba41 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x4d4c09e1 bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x4d4eeef0 blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0x4d5def9d pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x4d5fd074 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x4d6434a4 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x4d6ce7ed xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0x4d97fc9d serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x4dab0b8a hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x4dc8f15e ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x4dd4deb5 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x4dd56e36 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4de7fe81 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x4e047c70 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e12f266 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path +EXPORT_SYMBOL_GPL vmlinux 0x4e2c2dd2 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x4e2d070a ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x4e327410 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4e3b237d xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x4e57723d apei_read +EXPORT_SYMBOL_GPL vmlinux 0x4e691bc5 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x4e73f10c __online_page_increment_counters +EXPORT_SYMBOL_GPL vmlinux 0x4e74e625 gnttab_batch_copy +EXPORT_SYMBOL_GPL vmlinux 0x4e8d7a7a vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x4e92fc5d regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x4e97a832 tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0x4ec9cdbf pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x4ed5185b regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4ee4e67a spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x4eed5a73 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4f1c2b5b posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x4f27164d extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f433f16 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x4f4bf92c net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4f518ecf blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x4f52c9cc ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x4f5edc96 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f89f59d usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x4f990bcb ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x4f9f0827 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x4faebcbb devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x4fb5158a dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x4fc48a1a fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x4fd26a37 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x4fd32bb1 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4ffa9c21 register_mce_write_callback +EXPORT_SYMBOL_GPL vmlinux 0x50093df1 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x501beff9 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x501f860c sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x50243e2f power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x5024523b key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi +EXPORT_SYMBOL_GPL vmlinux 0x50433d85 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x506e3c6c mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x50769915 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x507de8c6 add_memory +EXPORT_SYMBOL_GPL vmlinux 0x507ff56a usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x5080c352 trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x5091fab0 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x509c6004 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x50a3293f da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x50a8c561 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x50d47af9 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50e75b7f trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x511d693c led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x51719489 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq +EXPORT_SYMBOL_GPL vmlinux 0x51963dc6 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x51966b51 __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x51c55bef dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x51d02ed7 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x51d7107e arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0x520f5b5e regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL vmlinux 0x521c6d1d ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x5239e93e pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x523c0153 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x52599567 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x526280c7 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x526794ff pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x528748ca pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x5289dcef vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x52924f20 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x52a535ea disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x52d27082 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x52d3f877 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x52d8c375 clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x52f102db __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0x5320ec67 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x53629d67 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x536a225c max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x53989e4b usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x53995884 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late +EXPORT_SYMBOL_GPL vmlinux 0x53bf8d82 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0x53c9c6eb msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x53e247b9 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x54161ff9 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x54227944 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x5434619f xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x54373c79 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x544705b6 component_add +EXPORT_SYMBOL_GPL vmlinux 0x5453681c pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x547f5cda device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x549ecb82 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x54a2f5f3 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x54af5603 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x54c8a53a platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x54cab2db rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x54d468f1 pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x54dd1d8d usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x54e79f34 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x554e9595 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x55526907 xen_features +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x556f6bcf relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x55778c23 tpm2_startup +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x55a2fa67 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x55a43988 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x55a6c09c usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x55aeee71 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x55df97ba rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x55eb11e0 is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0x55ed9198 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0x55edd53d unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x560d4284 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x5613ba8f cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x56407ffe wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x5654f836 erst_get_record_id_next +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0x56947347 dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56e2f4d2 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56f9c3ec extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x570872e6 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x57282f57 filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x572e2909 usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x5745835d sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x575796ce gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x576b9c8a ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x576ddb54 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x5779d445 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0x57881ace dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57c2f033 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57ebff4e napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0x57f06412 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x57f8062c acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0x58082ce6 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0x58139305 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x5821b670 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x5841bcf3 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5843bde5 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x585704ab aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0x586df08e device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x587bd46f alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x58828b6a pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x589aa47a scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x589ae76a inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58b722be blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x58ca3291 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x59044f93 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x591bc4a9 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x59392c2b input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x594cde67 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x59688cf7 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x5979ff96 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x598b6434 __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x599436e8 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x59acca9b unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x59b40407 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5a0b2fd5 blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x5a0e11d4 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x5a2b1b67 gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5a4a712d fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x5a65c37b devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x5a68d94d sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x5a699c6a fpu__save +EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a82b9af acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0x5a9668d4 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x5aad3e37 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x5ab223cf dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x5abcb79e gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0x5acc54c5 nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x5acdee06 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x5ade15ff ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x5af03a28 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5b0ed26c __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x5b1899f8 free_iova +EXPORT_SYMBOL_GPL vmlinux 0x5b2f5301 xenbus_dev_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x5b6c566b crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x5b81f73a get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x5b9b2979 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x5babf842 register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x5bb5cc93 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x5bc078fa spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x5bcd6ae6 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x5bce8ca1 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bd0e646 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bef7055 xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0x5bf9ae77 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5c32586b crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x5c4ac66b __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1392 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c63ba90 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5ceb30b9 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x5cf246f0 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d366dec gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x5d5ca512 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x5d8eb727 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x5d9425cb __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dab0db1 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x5dacb09b xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x5db54979 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x5db70648 ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid +EXPORT_SYMBOL_GPL vmlinux 0x5dbdf027 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x5dd8f480 __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0x5de0c33a devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x5df1c97f device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x5df3b1af init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x5e0644e5 tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x5e3740c6 devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x5e4374ec gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0x5e46c605 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e77ba35 do_machine_check +EXPORT_SYMBOL_GPL vmlinux 0x5e817007 x86_hyper_kvm +EXPORT_SYMBOL_GPL vmlinux 0x5e94270e usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x5e984929 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x5ee92a13 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5eefd830 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x5f0b5826 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x5f11c864 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x5f1742cd cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5f34ad18 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x5f9323d1 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x5fa2234d gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x5fc27be9 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt +EXPORT_SYMBOL_GPL vmlinux 0x5ffa47d2 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x5ffa8f96 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x5ffc7118 component_del +EXPORT_SYMBOL_GPL vmlinux 0x6007ac3a fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x602e5412 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x6035b78e fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x605ad133 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x60930d37 save_mc_for_early +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a88b7d irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x60c41d2c xen_swiotlb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x60cd73ed pv_apic_ops +EXPORT_SYMBOL_GPL vmlinux 0x60cef609 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x60d44649 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x60e0a894 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x60e73ecc bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0x60fbb41e power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x6144ab35 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x615b4c40 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x61766faf bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x6178abf2 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x618e113c percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x6193d5fe virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x61b0f0c9 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x61bc3aa8 blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x61cb78d4 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x61cdc96f device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x61cde409 acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0x61ffe481 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x6211487d rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x6211ee68 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x621421c2 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x6222f5fa pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x623803c8 hest_disable +EXPORT_SYMBOL_GPL vmlinux 0x624c1ef2 split_page +EXPORT_SYMBOL_GPL vmlinux 0x625ec74a ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x62603fc2 tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0x626a7a48 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x6283daa0 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x62955c19 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x62982824 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x62a1c981 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x62a7f33a devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x62c11598 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x62e8b9f9 efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x632b3477 acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0x6341d03b da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x635ec980 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0x63789678 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x63a17c34 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x63a2505c clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0x63bdbe5d ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x63d214d7 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x63de782a dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x63e61ecf device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str +EXPORT_SYMBOL_GPL vmlinux 0x63f6971d sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6420a012 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0x642c9caa iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x64318593 acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x64737e49 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x648ea313 xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0x64a70cfc io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x64b7069e apei_mce_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0x64d5839b trace_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x64da0dbb ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x64e24a5e memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x64fb0fdc acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0x6502c4ba scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x65047533 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x6536953b btree_last +EXPORT_SYMBOL_GPL vmlinux 0x653cb02d intel_msic_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x6560127a usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x65690cde __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x658c8186 amd_get_nb_id +EXPORT_SYMBOL_GPL vmlinux 0x658e5cff ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x65abd1f5 mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x6612e3e2 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6623a53d rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x66281664 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x66494024 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x665ecab0 pv_time_ops +EXPORT_SYMBOL_GPL vmlinux 0x66757659 cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x6682b6a5 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x668b3811 extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0x668caa7e __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0x6691e658 acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x66a3dbe7 rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0x66a4f0ae rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66cb4705 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x66d4393e ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x66d6d3a9 bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66ee62f2 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x6705b4fa trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67ba3cea relay_open +EXPORT_SYMBOL_GPL vmlinux 0x67d60fb5 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x67d9aca4 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x6827e476 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x682c424a hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x682e6bb0 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x6834ac43 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x683c85ad __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x6845b36d bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x684a96b4 ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0x684c0948 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x685a3097 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x68956406 static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x689690d2 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x68ae1489 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x68c162d8 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x68c9c629 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x68d61b19 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x68eb35a2 blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x692e17fa fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0x69332c75 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x69395e0b rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x693e7039 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0x694ee479 crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6956b1be pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x695f6259 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6984efa7 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x698c58b7 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x698f2fdf scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x69c1a56f blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x6a09a623 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x6a0b308a pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a263e41 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x6a2a6a19 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a65f151 md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x6a83e46f get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a893921 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x6aa27a5c gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x6ab1b8bb usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x6acacd90 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x6acad21f acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x6ad50e2e devres_add +EXPORT_SYMBOL_GPL vmlinux 0x6addc89b pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x6aecc830 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x6afe1450 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x6b04f135 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority +EXPORT_SYMBOL_GPL vmlinux 0x6b0eda4e cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x6b1e7c4b register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x6b288727 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b6b3123 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x6b7049ce pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x6b74c0dd __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x6b7a681d blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6bb2d1df wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x6bbeb7c9 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x6bd373ed edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x6be5a8ef find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x6bf1b90d dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x6bf61bd7 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x6bf64920 bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x6bfbf670 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x6c0786c9 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c109f19 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x6c1251fd apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x6c209eab __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0x6c267d54 edac_subsys +EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c60d14e rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x6c6538df init_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c6c8674 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x6c7e0252 pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6c9c3bc6 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0x6cbe0bcb pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x6cc89e0e nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6cf56ab3 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x6d05d330 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d33661d ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x6d45fd2c usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x6d47b3c2 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x6da41eaa __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x6dac0acb hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x6dbeb9d1 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x6dcb0daa __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e179713 acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x6e49a1b0 wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0x6e51afc8 percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x6e58ddf0 gnttab_end_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x6e64b90f sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x6e782c23 iomap_create_wc +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e85b00b local_touch_nmi +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e94c3a4 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x6ea67622 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x6eb01618 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x6ee10602 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x6eeb5918 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x6f0c025d __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x6f1a6d82 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f3422cf tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x6f3d0cd1 blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0x6f402ba6 acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x6f5c1292 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x6f8aa1c8 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x6f993a3f usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x6fa9ec87 ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x6fce743c pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x6fcef549 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x6fd4a2cc __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6ff1b7c0 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ff94c53 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x70201233 unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x702e0174 reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0x704c47e8 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7052480f pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x7054517f regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x70705c1e da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x707f40f3 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x708bac30 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x70916166 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x70a0c3e4 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70cce8d0 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x71225627 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7133648f tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x713d4b83 _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0x7150137a pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x7157e281 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x716cea69 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x716e73b3 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x716f8786 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x717c0a03 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x719d0470 acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71cb5dcc dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71fc1000 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x7206b57f dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x72170b16 spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7223cc03 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x722e2bf6 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x72515d5a snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x72ca737e pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x72cf714d klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x72df5f0c sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x72f706be raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x73013896 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x730d2e28 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type +EXPORT_SYMBOL_GPL vmlinux 0x73481239 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x734ed0ee rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x734f0276 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x7370e7a9 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x737de723 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x738fd248 intel_msic_reg_update +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x73d3efbd pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x74041ad6 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x740b9f73 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7436a2d9 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x74407785 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini +EXPORT_SYMBOL_GPL vmlinux 0x744b5391 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x744e3a9c pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7468b74e __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x7476946a devres_find +EXPORT_SYMBOL_GPL vmlinux 0x747e6e43 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x748fb1f4 spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0x74aaaf86 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74b9f79b hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74c08941 kvm_async_pf_task_wake +EXPORT_SYMBOL_GPL vmlinux 0x74c1c0e9 flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x74d007c2 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x74deb10c used_vectors +EXPORT_SYMBOL_GPL vmlinux 0x74ec9a62 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x74edf689 skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x74fab285 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x74ff8b77 crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x75314e14 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x753a7087 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x7562de64 iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0x75797266 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x757b0cdf page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x75993be1 intel_svm_unbind_mm +EXPORT_SYMBOL_GPL vmlinux 0x759998b3 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x75c2b9f1 memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75e0eb99 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x75fbdb12 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x7609c8c8 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x76597668 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x7663cee4 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x7677d668 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x76c3b234 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x76cdefe3 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76e791ca acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0x76f7ef1c max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x770cf981 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x770fb260 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x772fe36c dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x7739ed4e usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x7747537d __netlink_alloc_skb +EXPORT_SYMBOL_GPL vmlinux 0x77502cf6 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x775a6ef5 kvm_read_and_reset_pf_reason +EXPORT_SYMBOL_GPL vmlinux 0x775f82a3 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x77861d63 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x778b675a pmc_atom_write +EXPORT_SYMBOL_GPL vmlinux 0x7790adc0 aout_dump_debugregs +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77c02292 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x77ccd66b tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x77d58d72 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x77f6a948 ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x78076381 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x78151326 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x7815ff49 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x78257052 __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x7828751d pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x78575bee atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x785cf1c3 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x7864ae9a gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x786d084e crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x7872466c blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x7874b5ec unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x7884d34f __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0x788524fb usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78b98faf irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x78c0dfed usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x78da85c9 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x78e84890 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x78eaaab0 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x790eea23 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x79148337 dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x79171c44 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x793b1b9c crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x796bcefe pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x796f6a41 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss +EXPORT_SYMBOL_GPL vmlinux 0x7998bd4d pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x79a3c602 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x79a6ec76 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x79a71c48 kernel_stack_pointer +EXPORT_SYMBOL_GPL vmlinux 0x79dc2b5b devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped +EXPORT_SYMBOL_GPL vmlinux 0x79ed45a9 pci_msi_set_desc +EXPORT_SYMBOL_GPL vmlinux 0x79effe3b sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x79f43cab tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x7a093833 set_memory_array_wt +EXPORT_SYMBOL_GPL vmlinux 0x7a135468 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x7a17cbe3 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x7a472c57 regmap_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0x7a4996b7 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x7a4ab664 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x7a4dc3d5 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x7a52790e ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x7a63ff7c tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x7a7ed88d uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x7a7f30d6 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a9c7a1d ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x7aad75c2 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x7ab1f98a blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x7ab8b883 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x7abb0cc4 pwm_enable +EXPORT_SYMBOL_GPL vmlinux 0x7ac0861b regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7ac8e5b0 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x7ad46cce spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x7aefed21 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b1a8987 default_iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b202401 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x7b302216 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x7b3ab781 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x7b3f36e3 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x7b45dfe2 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x7b6ce39b ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x7b7d92ae reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7b853458 put_device +EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7bb286e9 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x7bec9ebe skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x7bf294d6 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x7bff4171 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x7c11f84b ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x7c138641 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x7c27b65f sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x7c2c0e69 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x7c532eac register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7cc6d018 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x7cd4e522 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cdf7695 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d240ffa fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0x7d2f929d pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x7d38af40 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x7d3939ca securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x7d43c81d ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d5bbdba devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x7d826874 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0x7d9785ca devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x7d9c2402 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x7da4e720 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0x7e28a395 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x7e368251 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x7e3923bc disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x7e3a9a69 usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0x7e5377d3 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x7e572d98 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e6f8bff sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x7e713e07 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7ed0b32b ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x7ee3716a wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature +EXPORT_SYMBOL_GPL vmlinux 0x7f263b51 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x7f338d60 thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0x7f377408 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x7f3ec087 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f9a9ade ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x7fb17405 set_pages_array_wt +EXPORT_SYMBOL_GPL vmlinux 0x7fbc52af find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fd1d020 component_master_add_child +EXPORT_SYMBOL_GPL vmlinux 0x7ff4fd9f xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x7ffc453b __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x800ef339 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x801bf6b8 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x8025692e crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x80277e7c skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x804a4d97 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x804da1df regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x80526c5d skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x805f7782 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x8062c96b crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x806eeba3 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x808d5367 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x809529fd alloc_iova +EXPORT_SYMBOL_GPL vmlinux 0x80955201 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x80ae9d77 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80ef5c01 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x80efc1b0 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x80f8589f trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x81109e3b rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x813d91db usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x817b9a82 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x819abcae shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x81aacb4f usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x81b9906a uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x81c8db6b acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x81cba675 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x81ce4ca3 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x822ad4c7 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x82398383 thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0x82862633 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x828c8376 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x82978442 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x82bd5928 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x82ce18a1 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x82cf4477 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82d79d4d print_context_stack +EXPORT_SYMBOL_GPL vmlinux 0x82dbec19 erst_write +EXPORT_SYMBOL_GPL vmlinux 0x83120aba ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x8349d798 xen_swiotlb_set_dma_mask +EXPORT_SYMBOL_GPL vmlinux 0x834c4ee0 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x834d41f2 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x836666ce alarm_init +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x83a1cd2e __online_page_set_limits +EXPORT_SYMBOL_GPL vmlinux 0x83ba5796 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x83ba5fbb hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x83d2cae5 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x83d8c217 phy_init +EXPORT_SYMBOL_GPL vmlinux 0x83e5a31d __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x845289b1 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x8462bdcf btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x847dd9d2 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x84b1a9a8 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84b5e44c cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x84c6f67c ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x84d53e7d __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x84e69f86 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x84e839a9 acpi_os_unmap_iomem +EXPORT_SYMBOL_GPL vmlinux 0x84f06176 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x84f6eb6a usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850aa5ff xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x851097eb xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x852af33d usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x858737ec fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x85a94b8a pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x85ac1bca ping_close +EXPORT_SYMBOL_GPL vmlinux 0x85ad23ee tpm2_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x85ae1093 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x85afc47d ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85cb2c45 xen_has_pv_devices +EXPORT_SYMBOL_GPL vmlinux 0x85cda435 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq +EXPORT_SYMBOL_GPL vmlinux 0x85eaf2cb crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0x8615649e ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x8652110e pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x8654be58 hv_remove_vmbus_irq +EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x86792771 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x867a1f61 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x86819bc6 irq_ts_restore +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x868f5e00 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x86931fa6 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x86a51007 gnttab_end_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x86afdcd0 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x86bbdc69 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x86cd7051 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x87043088 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared +EXPORT_SYMBOL_GPL vmlinux 0x871dbbdb __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x872a5741 usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0x87338d7d kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x8749fade debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x878df161 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x879b916d set_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0x87a1f430 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x87ab063a tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x87bb184f napi_by_id +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x88136838 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8829314c rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x882eed40 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x8831f8b1 kmap_atomic_pfn +EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x8849b297 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x88598a00 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x88905000 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x8896f966 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x88a9a411 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88aef35f virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x88b02d62 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x88b14fc7 xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88ba6c49 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x88cf5232 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x88de708f devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x8902641c xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x890b0e8d gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +EXPORT_SYMBOL_GPL vmlinux 0x891d1b26 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x8956aeae apei_exec_ctx_init +EXPORT_SYMBOL_GPL vmlinux 0x89651fdd pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x8981cdd5 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x89b23532 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x89b3bf1f crypto_lookup_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89bcc035 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x89d32208 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x89dffc67 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x89e31d69 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x89f6bd87 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x8a05ad3e regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x8a396584 register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x8a3ade3e ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x8a559846 gnttab_setup_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod +EXPORT_SYMBOL_GPL vmlinux 0x8a5f86ce fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x8a60d39e input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x8a78989f irq_from_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8aef463d led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x8af63140 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x8af68a9a fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x8afc7a40 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x8afdbf40 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x8b04668e bind_interdomain_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x8b094aae devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b39f108 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x8b74a273 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x8b9c4495 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0x8ba3dd1e devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x8ba51110 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x8ba51be6 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x8baf62e7 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x8bc41382 fpu__restore +EXPORT_SYMBOL_GPL vmlinux 0x8bcf9949 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x8bd37020 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c06a108 xenbus_transaction_start +EXPORT_SYMBOL_GPL vmlinux 0x8c576ca1 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c88250c regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x8c991153 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x8c9d1661 arch_phys_wc_index +EXPORT_SYMBOL_GPL vmlinux 0x8cc8cee4 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params +EXPORT_SYMBOL_GPL vmlinux 0x8cd9f935 setup_APIC_eilvt +EXPORT_SYMBOL_GPL vmlinux 0x8ce7f3a9 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x8d05b6b0 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x8d05fa4c acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x8d0f76dc xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d58ea2f isa_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x8d796fb3 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x8d9d2fe2 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x8daacfcc invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x8db9a15b unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x8dd2eedd bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x8dff927d ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x8e11d840 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8e123030 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x8e18ccef intel_scu_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8e219df2 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e3e3110 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x8e3fefb4 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x8e994873 tpm2_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x8e99ab3d cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x8ea14211 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x8ebf2831 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x8ee041b8 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x8eecae18 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f1e76ae nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0x8f3905bb __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0x8f3e6f81 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x8f4eadf3 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f6fde0c tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x8f78baab locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x8f7a0f89 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x8f7e7d43 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x8f805745 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x8f9bc256 xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x8f9e200d regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x8fbb41b9 device_remove_property_set +EXPORT_SYMBOL_GPL vmlinux 0x8fd643ac tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x8ff650e9 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x8ffbd14c irqd_cfg +EXPORT_SYMBOL_GPL vmlinux 0x9009602a acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x9016d310 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x9022d5bc memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x903bb65b acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0x9047c11a trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x905fbb49 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x906dfddd pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x9080270e dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x909b2220 security_kernel_fw_from_file +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90b2a19f ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x90bbf3ed bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify +EXPORT_SYMBOL_GPL vmlinux 0x90ea5d52 pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x910458f8 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x91177691 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x912439ab usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x91548a3e bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x916773ba iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x916cdf51 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91de4dcd cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x91ef4444 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x91fec685 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x9208d2f7 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x920ba18c devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x920f6150 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x923fa9a8 extcon_unregister_interest +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x925676fa debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x9262433b device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x92625b26 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x9298086f irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x929c3c7c cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x92b16145 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x92c5cfa4 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92de65bb devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x92e18acd rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x92f6e4b6 __ktime_divns +EXPORT_SYMBOL_GPL vmlinux 0x9311a2b3 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x9312d80e evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x9317360d reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x932e1a62 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x934288a2 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x9364a3b2 xen_swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x9380766a devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x939d37a4 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x93a1ae45 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x93bf2fcd __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x93c8cecb gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x93e85bbf regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x93f8d9e8 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x93fe335b inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x9403fc32 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x942e8c16 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x94324d6c acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x9432b036 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event +EXPORT_SYMBOL_GPL vmlinux 0x94467a2f ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x94552b1f ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x945b0a66 iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0x945edcb4 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x9467000f trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x9480806f pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0x94af9368 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x94b7b8c5 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x94bcb129 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x94c318be apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x94df1718 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x95013d25 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x952edfc3 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x952ee34d relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x95335557 platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x9575ae7d gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x957ba439 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x958a3feb __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x9592aaae rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9594756d usb_string +EXPORT_SYMBOL_GPL vmlinux 0x95ba7a5e init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95d7c208 ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0x95f0e8ad __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x95f5bec8 regulator_can_change_voltage +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x96487784 fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x964add15 xenbus_scanf +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x965688b0 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x96651200 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x9694dcc9 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x96a1a4c5 smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x96ac6143 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x96b80fa7 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x96e1abc5 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x96f3ad71 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x96f91d52 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x9715747a metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x971968da ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x97296e2e devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x973ab8ad cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0x974307b2 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x977a87f9 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x979ed407 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x97af31a4 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x97c11a8d pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x97cb9bca nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97e7e93f regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x980e773e blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0x981567e6 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x984f438e do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x986bd85c blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9888b4f1 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x989eb047 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x98dd4920 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x98f1076c __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on +EXPORT_SYMBOL_GPL vmlinux 0x990dbf91 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x99213030 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x9938813b acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x99503efb ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x99535f1b sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x99694e65 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x9973add9 __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x9999a395 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x999be974 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x999e4a22 blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0x99a6663d devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99ce0592 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x99dc903e rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x99fa28b5 kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0x99fa4c43 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x99fcafc8 arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0x9a10da89 __tracepoint_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a57d563 bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9a92b43f rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x9a931f7f blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x9a9ebf08 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x9aa5fe9b __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x9ab13028 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x9abea338 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9b1195ff dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9b25030f xen_swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0x9b4da354 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x9b58b84a gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x9b5c6c62 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x9b5d385f pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x9b6dd605 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x9b720312 acpi_target_system_state +EXPORT_SYMBOL_GPL vmlinux 0x9b7627b8 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x9b888b01 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x9b8d3ec1 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x9b9ca064 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus +EXPORT_SYMBOL_GPL vmlinux 0x9ba51663 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x9bad683f mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9bc6f438 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x9bd72b78 apei_write +EXPORT_SYMBOL_GPL vmlinux 0x9be233d5 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x9be3a239 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9c09dc5c nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x9c10b6d2 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9c12fbde subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x9c19a184 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x9c1b4234 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x9c1ef578 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x9c2e4b66 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x9c347c07 iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0x9c3ff0d2 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x9c462261 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x9c491919 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9c54298d irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x9c69ad6c devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x9c87e9a8 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x9ca2a7c0 xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0x9caedd74 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x9cb7bb39 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x9cc0599d debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cda09bb sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x9cee8102 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x9d02a00b __put_net +EXPORT_SYMBOL_GPL vmlinux 0x9d06688b register_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x9d2a307f genlmsg_new_unicast +EXPORT_SYMBOL_GPL vmlinux 0x9d2e45bc rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x9d3850e1 gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x9d4821c2 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x9d62c898 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x9d933cf6 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported +EXPORT_SYMBOL_GPL vmlinux 0x9dbbaef6 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x9dcfea8e skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x9dd29f3c devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0x9dd7769b xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0x9de608b6 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x9e089ee2 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x9e25c23e pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e654850 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x9e68adf9 mmput +EXPORT_SYMBOL_GPL vmlinux 0x9eb29eda dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x9eb7483f mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9ebbdfff usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ebff902 start_thread +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ee37aa2 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x9f26cbc2 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9f47ccda usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x9f681a1d param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x9f69b09c fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x9fa0ebf7 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x9fab59db __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fceb9c4 xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9fec166c pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x9ff4a9aa sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xa00d30a9 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xa0208e02 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xa02e97f0 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xa0467c40 tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xa06c9ffa kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0xa0703264 xen_swiotlb_sync_single_for_device +EXPORT_SYMBOL_GPL vmlinux 0xa071b020 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xa073d0ef rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0xa0855bfc register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xa0cb9fe8 acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xa1100e62 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type +EXPORT_SYMBOL_GPL vmlinux 0xa112bdba acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0xa1183923 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xa119f612 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xa11b55b2 xen_start_info +EXPORT_SYMBOL_GPL vmlinux 0xa14a1817 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xa14b18d0 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa1819c92 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa1a9fbf2 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xa1d31306 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xa1db3f2c ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0xa1dfc665 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xa1f5350a zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0xa1f79553 xen_create_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0xa1fbaffd skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xa2335c37 pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0xa2587694 debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa27eff8b ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xa2b9c993 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xa2ba051d rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2e5f255 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xa3003eac sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xa32947c0 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xa32e6fe4 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xa353fffc xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xa35b8100 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xa366eb10 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa38d3e5c __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a7b38d device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3d60b64 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0xa3e58789 efivar_validate +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa3f449b6 wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0xa430280b put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xa4353ed3 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xa43e314c inode_congested +EXPORT_SYMBOL_GPL vmlinux 0xa44882ba blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0xa44a81c5 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0xa452c297 hpet_mask_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq +EXPORT_SYMBOL_GPL vmlinux 0xa466de38 acpi_processor_ffh_cstate_enter +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa48620b2 devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xa48a1a6c tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xa4ab944a platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xa4ae4c30 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xa4b058d7 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa4b6f2ed acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0xa4d9e374 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xa4e8b09a tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xa507b83d put_pid +EXPORT_SYMBOL_GPL vmlinux 0xa5095fdb ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xa50b88af scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xa5109640 efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0xa5779cdf usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xa5ae6061 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa5d8cbc3 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xa5e3104f usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5f12796 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa62892c6 efivar_sysfs_list +EXPORT_SYMBOL_GPL vmlinux 0xa6381a2d pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xa64c2452 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xa6590d60 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xa6620bfe iommu_present +EXPORT_SYMBOL_GPL vmlinux 0xa66bcb7b __sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xa6a690e2 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6d17887 agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa710424c blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0xa7454122 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0xa77ce234 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xa7a7d427 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xa7afa64e bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0xa7b0faad blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xa7df9fc9 swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0xa7e1b3a9 tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xa7e357c9 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xa7e54b70 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xa7e5c066 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xa7ec957f cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0xa7fae3cb alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xa800f3d3 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa801b359 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0xa81bd685 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xa8227568 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa859c2e9 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xa8621a87 bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0xa8825c17 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0xa8964752 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xa8a62d11 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa8b15210 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8c2eb1a pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0xa8d80ab2 rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xa911b4e9 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa9143342 find_iova +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa952bbf1 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0xa973481a pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0xa979a04e gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xa98ffeb6 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xa9aae8ef dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0xa9b20db8 __online_page_free +EXPORT_SYMBOL_GPL vmlinux 0xa9bf318a regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0xa9c41064 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaa15f525 gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0xaa2883ef devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0xaa5f4acb find_module +EXPORT_SYMBOL_GPL vmlinux 0xaa6fa99c xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0xaa8833b2 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0xaa8cfbf1 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xaa9d3fd0 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaabc563e gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0xaac4c47a ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xaacb5efb pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xaacb7c5e irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xaace1e31 ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaae0a711 led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0xaafe8ad1 pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xab01acbe gnttab_request_free_callback +EXPORT_SYMBOL_GPL vmlinux 0xab132bc3 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xab34c55c dbs_check_cpu +EXPORT_SYMBOL_GPL vmlinux 0xab3cbe7e led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0xab5a5aab pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del +EXPORT_SYMBOL_GPL vmlinux 0xab652e56 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab945a16 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xaba4c807 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0xabc035ff shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabe32983 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xabf7ffae pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xac00c4fe iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0xac886599 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0xac8c1120 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xac9ce195 kvm_async_pf_task_wait +EXPORT_SYMBOL_GPL vmlinux 0xaca52819 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xacafa8e7 vector_used_by_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xacb2915b led_init_core +EXPORT_SYMBOL_GPL vmlinux 0xacc49990 acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0xacda96b5 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xacfd3ab2 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xad0aff93 clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xad12cb82 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0xad3a8df1 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xad4e1032 xen_swiotlb_map_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0xad713e4a get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0xad7e03c6 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xad8d8ab0 xen_physdev_op_compat +EXPORT_SYMBOL_GPL vmlinux 0xad8e8410 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xada50f7d attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xadc3286b usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xadd82be0 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xadd8dea1 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xae1d0558 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0xae35f264 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xaeb0a28e bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0xaeb5f691 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaedda634 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xaf4cd6d3 acpi_os_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xaf635800 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xaf76479c inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xaf9439db leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xaf9add31 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xafab7dd5 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0xafbce3a0 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0xaff4fcbd clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0xb008aa0c usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb02dcc48 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xb055bf16 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb07f7dd7 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xb083d508 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xb08616b2 efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0xb0867e3b cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0xb0880a99 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0bce4f0 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xb0c85892 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xb0e589ad dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0xb0f79c40 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0xb1005af2 nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xb1350976 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb150da09 pin_is_valid +EXPORT_SYMBOL_GPL vmlinux 0xb15cd9f1 pwm_set_polarity +EXPORT_SYMBOL_GPL vmlinux 0xb1633779 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xb172ffac efivars_sysfs_init +EXPORT_SYMBOL_GPL vmlinux 0xb1762232 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xb1762efe rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb18eb6f4 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xb1a5f2fe usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1b8b996 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xb1cd06b2 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1e438b0 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xb1ed14d2 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb23593f5 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0xb24586ba __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xb24b0a25 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xb256f832 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xb2576433 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0xb265ee81 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb2832a8c usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xb285b8f8 xen_in_preemptible_hcall +EXPORT_SYMBOL_GPL vmlinux 0xb2b1c254 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xb2c7c08b devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0xb2e401e0 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2f2b050 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xb30e8963 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xb3249fc6 input_class +EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init +EXPORT_SYMBOL_GPL vmlinux 0xb33820e6 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xb3526a64 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xb35934b9 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0xb37bf95d dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xb39a7673 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb3c55ba4 tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xb3d386cc pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xb3dbe427 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0xb3e78c0d i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0xb407990d wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xb40d8d8f __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xb42e37e9 ping_err +EXPORT_SYMBOL_GPL vmlinux 0xb4557e67 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xb47710ba handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0xb4870a57 pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0xb4945cbe dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb4b13e2a unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4cd0f69 xen_swiotlb_dma_mapping_error +EXPORT_SYMBOL_GPL vmlinux 0xb4e14553 gnttab_query_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb51d5789 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb54a7b7d acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xb54d40db cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xb57ce96e rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xb5847fa9 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5a11eab blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0xb5bb6a80 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xb5c02271 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0xb5d2b335 clk_gpio_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xb5e896fb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb5f2b0fc devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0xb5fed353 pci_msi_prepare +EXPORT_SYMBOL_GPL vmlinux 0xb601d482 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0xb6230f1f gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb634d833 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xb6589b1e i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xb66421b2 acpi_str_to_uuid +EXPORT_SYMBOL_GPL vmlinux 0xb666293f md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xb66ee4a2 devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6bc49a9 __supported_pte_mask +EXPORT_SYMBOL_GPL vmlinux 0xb6c307d1 xen_swiotlb_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xb6cfb2d0 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xb6d84c41 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0xb6e5aef7 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6fbefe1 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0xb70d1e15 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xb711d130 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xb718f2f9 sfi_table_parse +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb743e335 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0xb74f269d device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xb781a458 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xb7d0a240 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0xb7d75eab disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb80f9309 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb828b220 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xb832a6b5 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xb84b568c nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0xb875fa28 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0xb88209a8 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb8906112 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xb892446f print_context_stack_bp +EXPORT_SYMBOL_GPL vmlinux 0xb892809d blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8d278ca crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xb901d81c __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0xb92427b4 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xb94a2975 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xb9606689 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xb964ae0b regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xb966cef5 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xb9730627 gdt_page +EXPORT_SYMBOL_GPL vmlinux 0xb99184f0 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xb99d5837 xenbus_read +EXPORT_SYMBOL_GPL vmlinux 0xb9ac6d44 ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c3f8b8 acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9e46a77 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xba1048c3 blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0xba19a530 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0xba1ebd8a ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba4b75d7 user_read +EXPORT_SYMBOL_GPL vmlinux 0xba54bade tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0xba860749 save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0xba8929ea percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xba94c685 cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0xbaa0e765 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0xbaaee0b4 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb04d526 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb0cf5af key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xbb1c3dc2 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xbb355cd9 xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0xbb40de92 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0xbb4719ab debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xbb47f17b crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xbb58b814 iomap_free +EXPORT_SYMBOL_GPL vmlinux 0xbb692a4c crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xbb7cf9cb jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xbba59ec1 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0xbba8f8a8 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info +EXPORT_SYMBOL_GPL vmlinux 0xbbc5db6a wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0xbbd4f657 xen_pcpu_id +EXPORT_SYMBOL_GPL vmlinux 0xbbda32a0 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0xbbf2252b md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xbbf2e09e __add_pages +EXPORT_SYMBOL_GPL vmlinux 0xbbf63026 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xbbf70486 acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0xbc028df6 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xbc0dc15e posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0xbc12f372 percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0xbc187865 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xbc2bc46c __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xbc4217d4 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0xbc462366 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xbc527a0d regmap_field_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xbc563b51 pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc8b3948 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xbca0201a sfi_mrtc_array +EXPORT_SYMBOL_GPL vmlinux 0xbca8e0cf dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcafb9f7 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcd44dad extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbceaf01a dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcfddb86 xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0xbd19951e validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0xbd2bb45c irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xbd3ac9e4 rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0xbd3fc9d2 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd471a16 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd727d6e param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xbd7dc938 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xbd86b127 usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xbd9062ab pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xbda682ca pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xbdb08d1c ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xbdbd0fb0 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xbdcb9d69 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbdd5f10f apei_hest_parse +EXPORT_SYMBOL_GPL vmlinux 0xbddb50a1 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0xbddf6a72 regmap_fields_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xbdf1462c ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xbdfb69a3 md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe3fb967 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xbe42c8db pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xbe4740ba device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xbe49e682 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0xbe4e015a udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xbe5a7f7b gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0xbe5eafce device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe7074cc acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0xbe75a4b5 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0xbe8320d7 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbeb86170 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xbeeb3603 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xbefe7dda hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf10959a list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xbf3a5dde thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xbf430d7f pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xbf4662b7 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xbf46c392 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xbf4bdddb perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0xbf909a98 xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0xbf93ec7d wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0xbfb1be70 hv_setup_vmbus_irq +EXPORT_SYMBOL_GPL vmlinux 0xbfb4fec0 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfcbf4f8 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0xbfce683e i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0xbfd10bb7 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0xbfd7a78f vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfe86fc3 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0xbff75e26 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 +EXPORT_SYMBOL_GPL vmlinux 0xc02a191e virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xc02c936f digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0xc06ba32c __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0xc0709478 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xc079a946 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc0900fcf acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0d8f3fa proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0xc0e75cec visitor128 +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc117c6ae crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xc12e0ada srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0xc1432573 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0xc1551799 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc15dc547 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xc164642e xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xc16c0f49 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc17519f7 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0xc18578ed process_srcu +EXPORT_SYMBOL_GPL vmlinux 0xc190ba97 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0xc191624b sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0xc19ae185 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xc1d03951 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xc1d463b5 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xc1dd3787 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc1ee30dc __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xc1f08088 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xc2041966 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xc213d599 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc22e9690 extcon_register_interest +EXPORT_SYMBOL_GPL vmlinux 0xc24159d7 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xc26351f8 bind_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xc27226bf ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0xc275a470 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc287d96a kvm_set_posted_intr_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0xc28b7817 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0xc292b41f __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc2a6b3ee gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0xc2a6df56 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xc2ba49d0 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xc2d751de da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc2e728dc ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xc3239e9a user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc329b6df device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0xc338dc25 rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0xc33e912f spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc34740c3 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xc34afdc0 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xc36e910d sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc37bdac9 user_update +EXPORT_SYMBOL_GPL vmlinux 0xc37c0531 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0xc3929967 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xc397639f virtqueue_get_avail +EXPORT_SYMBOL_GPL vmlinux 0xc3a436b8 pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0xc3ab89f7 xen_swiotlb_dma_mmap +EXPORT_SYMBOL_GPL vmlinux 0xc3c7744f fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xc3cdfc0a gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xc3e190af sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xc403a782 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc43c9740 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xc449c08c ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc45746a7 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0xc45c6a63 elv_register +EXPORT_SYMBOL_GPL vmlinux 0xc465c315 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc48aa3cb user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc49dceb4 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0xc4bb84bf __module_address +EXPORT_SYMBOL_GPL vmlinux 0xc4c23d5e cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc4d1defe acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0xc4e3bbb9 fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0xc4e8219e gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xc500c2c0 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc511668c pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xc52dd247 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xc5397da6 xenbus_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc55987c8 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0xc56475d8 isa_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc5a775cc splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xc5a87b5a rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xc5a93cf9 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc5acb6e5 rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xc5d785e2 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xc5fa7d16 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0xc5fe0c57 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xc60e68d8 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc612ea36 acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc636a3cf devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc65c6f0d dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc66b5b2a cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc675c3e4 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xc677fcd4 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6c73109 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0xc6e54edb scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0xc7002ac4 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc77218b4 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xc7749e1f sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xc7769959 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xc7895ac3 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a34a7e wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0xc7a40204 xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7e4a7dd crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xc7ec22a0 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xc80ea766 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xc81423eb regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xc81b765d put_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xc8295b48 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xc832d65b blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0xc850fcdf rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0xc87a3471 nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc87e2d7a sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event +EXPORT_SYMBOL_GPL vmlinux 0xc88031c1 pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xc895f4e4 xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0xc8a1bc21 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8d337ff crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc8e5f591 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xc9003845 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xc9007a40 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc935ca76 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc9705eeb has_newer_microcode +EXPORT_SYMBOL_GPL vmlinux 0xc9736012 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0xc97e4c71 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xc994164e i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0xc9a7729a usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xc9a9939d restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xc9d141f0 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xca06f41f __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0xca3abd67 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xca3ca643 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xca445d58 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0xca4a1023 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0xca668479 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca81ea9a xenbus_transaction_end +EXPORT_SYMBOL_GPL vmlinux 0xcab5cf21 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0xcabb0802 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xcabc7c71 percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb1db3eb crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0xcb209d94 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0xcb3abcd7 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xcb40d98e sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xcb44662e sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xcb51b8f7 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xcb66d4ef usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xcb76fc6d rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0xcb87014a ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0xcb980f1a pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcbb72f4f ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0xcbbee1a5 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xcbbf2b78 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xcbc41b04 pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xcbd48c3f hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xcbd80818 xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0xcbdf8cb0 xen_swiotlb_unmap_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcc095948 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xcc2ff140 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xcc52be89 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xcc6d5f38 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcc733366 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xcc7e6d6c rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcc900656 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xccac1173 xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0xccbe497b securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0xccbed926 usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0xcccbda33 system_trusted_keyring +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccda8915 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0xcce11c1e kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xcce5ec27 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xcce8dd9a key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0xccea4e34 perf_get_x86_pmu_capability +EXPORT_SYMBOL_GPL vmlinux 0xcced0d0e devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xccefa6d1 cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0xccfb3073 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0xcd014594 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0xcd0f2b99 xen_swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0xcd1516df register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xcd2af65a generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0xcd2cadd7 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xcd31af39 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xcd3bece1 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0xcd418254 __remove_pages +EXPORT_SYMBOL_GPL vmlinux 0xcd437cde pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xcd5a0d7c sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0xcd5d4ef9 btree_update +EXPORT_SYMBOL_GPL vmlinux 0xcd6290c5 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xcd75f0b8 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xcd78aae3 regmap_update_bits_check +EXPORT_SYMBOL_GPL vmlinux 0xcd88a216 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0xcd8ffa10 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdb83418 scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdcc8125 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xcde34ce3 add_memory_resource +EXPORT_SYMBOL_GPL vmlinux 0xcde7a4be debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xcdf086d2 __nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xce12d037 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0xce1c5d07 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce7fbb0e devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xcec67374 irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee5b7a7 irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xceeb9ca3 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xceeba22a inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xceeec9ac anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xcef1dd0e perf_check_microcode +EXPORT_SYMBOL_GPL vmlinux 0xcef81d04 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf5b721d get_device +EXPORT_SYMBOL_GPL vmlinux 0xcf6509d6 bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0xcf7c0ebe spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xcf867ad2 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcf93b36a __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xcfa0805a cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfc75cd8 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0xcfcd1bad adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xcfd514ec hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate +EXPORT_SYMBOL_GPL vmlinux 0xd0513b8d blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd056df4d regmap_fields_force_write +EXPORT_SYMBOL_GPL vmlinux 0xd05e1d2b xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xd05f904a wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xd06263b7 ref_module +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd07cfd59 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xd080cff4 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd093599e unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xd0962d3a extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd09ad085 arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xd09fa834 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0ca9143 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xd0d54d2b __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xd0d95dde xen_swiotlb_sync_sg_for_device +EXPORT_SYMBOL_GPL vmlinux 0xd0d965d1 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xd0f9eea5 klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xd1250159 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xd12cd8a8 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xd133efbb pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xd13a84b1 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xd1507e59 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0xd15cbf80 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd1b7262a __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xd1de7b37 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd20be3f1 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd215e2d6 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xd2164a96 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd218adee file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0xd21c32c2 __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xd2249d03 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0xd226906e transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xd23122f0 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0xd2538056 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xd2539ecb inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0xd254942a regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd28285ef power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd2a1adae debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xd2aaeb4e kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xd2b47dfe fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xd2bdca65 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0xd2c58ab2 apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0xd2ce01c1 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0xd2d1927b hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2e88de5 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0xd3016ba5 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd313baec ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xd3210398 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0xd331a8ae vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0xd33257ae pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0xd338ede0 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xd3484c49 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0xd36477ee rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0xd3769110 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xd38ff993 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xd3a6d5b2 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xd3b2d562 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd41dc330 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd42920a5 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xd42d047e ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd4441db1 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd44ac1f4 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd44b03a2 acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0xd44db93a tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xd44e6a69 kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0xd4561dd0 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xd45ea32f hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0xd47c9626 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xd4868102 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xd48a5b98 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0xd4b11546 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xd4b1c055 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xd4b30939 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4c9435c usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xd4cf632d transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xd4d90889 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xd4db0165 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xd4e312fb virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0xd4e940d5 tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xd4f46cde clear_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0xd4fa0f8d sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0xd502345d __bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xd5030f07 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xd544e902 pgprot_writecombine +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd5605a45 xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xd5a0fead rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xd5a5b86f iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0xd5b85c98 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd5bd2cb8 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5e55e73 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd6328a67 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xd632b65f efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0xd635534d user_preparse +EXPORT_SYMBOL_GPL vmlinux 0xd63f55a2 dax_fault +EXPORT_SYMBOL_GPL vmlinux 0xd6412f4f ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xd650889b clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0xd656af12 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xd65b0b53 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd68a630d hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xd6cf7615 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xd6e6f900 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0xd6ebf92d tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0xd6ec7d35 of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xd6ed3a8e cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0xd6ee2541 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd7125e33 wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0xd72a760e unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xd72cb603 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd745a835 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd75068fc set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xd764d265 inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd772fce6 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd77dd7e0 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd79461b7 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0xd7ab2c0c speedstep_detect_processor +EXPORT_SYMBOL_GPL vmlinux 0xd7bf4f08 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xd7c75198 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xd7c7ffe3 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7d9bb87 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0xd8040503 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0xd81826c8 arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd8250a5c iounmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0xd85fba12 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xd86a2131 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd88b1733 extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0xd8af8d8f pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd8b870ac raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xd8b8fee4 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0xd8c76c4b pv_info +EXPORT_SYMBOL_GPL vmlinux 0xd8eea502 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges +EXPORT_SYMBOL_GPL vmlinux 0xd923afae list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xd923e4d6 nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd94b737e erst_read +EXPORT_SYMBOL_GPL vmlinux 0xd94fa823 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd97819f5 usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xd9805be1 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xd986dad1 kernel_fpu_begin +EXPORT_SYMBOL_GPL vmlinux 0xd997a83e __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xd9cf8b67 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xda16218f tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xda1ef35c intel_svm_bind_mm +EXPORT_SYMBOL_GPL vmlinux 0xda4bbd3d pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xda7febef con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xda862c20 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xda864c3c dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdaa74860 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdae61b98 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xdaea0533 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdb088cb1 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xdb25725f relay_flush +EXPORT_SYMBOL_GPL vmlinux 0xdb261f83 efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0xdb263724 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0xdb3d8354 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb4cf33c screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdba34f62 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xdbc5657f __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xdbcf6a6c perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xdbdb54db driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xdbe9d084 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xdbf440a3 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall +EXPORT_SYMBOL_GPL vmlinux 0xdc31d2b7 xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xdc3c24c2 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0xdc3f74fa smp_ops +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc95098e rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdcae8c56 rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0xdcb3fd8a debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xdcbc6062 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xdceba602 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xdd069d07 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xdd289a51 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd2f5d17 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd3ff15e sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xdd579e0d clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0xdd66ebee skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xdd6e3fec ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xddb31a6d ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0xddb696a8 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddc42e04 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0xddc560f9 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xdddf131e xenbus_grant_ring +EXPORT_SYMBOL_GPL vmlinux 0xdde3ef3f ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0xddf1b396 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0xddf8cca3 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xde0ecbad tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0xde1f4124 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xde747356 intel_msic_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xde8dd926 klist_next +EXPORT_SYMBOL_GPL vmlinux 0xde9463a6 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xded351b3 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xdeeaf904 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xdef8ec6c regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xdeff5b9f __dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0xdf20dc98 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xdf2a1971 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0xdf3f0fd0 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xdf42a38e pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xdf584f07 __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0xdf622181 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xdf66ca81 ucode_cpu_info +EXPORT_SYMBOL_GPL vmlinux 0xdf75282c inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xdf761434 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdf7ecd10 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xdf8100f8 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xdfb52c89 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe027821a rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe046d67f rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe04b7dfc clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xe04d59b6 fpu__activate_curr +EXPORT_SYMBOL_GPL vmlinux 0xe050d14c perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe0745fc4 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0xe08938e7 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe08f7e78 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0xe099e57d to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0xe0a76e1c vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0c089e6 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xe0c3768d pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq +EXPORT_SYMBOL_GPL vmlinux 0xe1083ae3 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe1183e83 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xe11abdf3 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xe11c830d rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0xe121cbb6 static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0xe1381ff5 shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0xe14feff3 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe1a207fe trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c59069 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xe1cff2cd blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xe1d8d98c cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xe1dea997 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xe1eef8c0 bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xe23d8582 crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xe2555da4 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xe25ede9f regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0xe2777695 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe29349dc copy_reserved_iova +EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe2b25158 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xe2b6919a xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0xe2d8c20c ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe2fea4a4 led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe31e3c54 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe32ced51 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xe33f23e5 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xe3424f2e scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xe3781628 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xe37a007c pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xe3948ff4 acpi_walk_dep_device_list +EXPORT_SYMBOL_GPL vmlinux 0xe395ebf7 dax_clear_blocks +EXPORT_SYMBOL_GPL vmlinux 0xe397edf7 rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xe3a7b3b7 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3bda663 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe3be1f8a ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0xe3c9da8a ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe3f1f9e9 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0xe402eb6f ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0xe41534ce bind_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0xe418fde4 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0xe41f89d5 component_master_add +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe439815c erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xe43d61ec crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe46e8f4f spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0xe472724b apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4a0d7af __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xe4b70bf3 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0xe4b8027a usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xe4c331b6 acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0xe4c5cf93 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe4e68bc8 apei_map_generic_address +EXPORT_SYMBOL_GPL vmlinux 0xe4f233a5 extcon_set_cable_state +EXPORT_SYMBOL_GPL vmlinux 0xe4ffa1ac percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe514d401 usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xe51ad11f skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0xe545a811 get_xsave_addr +EXPORT_SYMBOL_GPL vmlinux 0xe57b04e1 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe5a0579f register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xe5b8082b cper_estatus_check_header +EXPORT_SYMBOL_GPL vmlinux 0xe5d58b0a usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xe5ddac70 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0xe6060185 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe6281b4f debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xe62e8315 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe62ef742 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0xe647f410 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe6534747 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0xe65de440 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xe6750ea5 efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0xe6946768 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xe6b1f8df dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data +EXPORT_SYMBOL_GPL vmlinux 0xe6fb3f7a crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0xe70e945e rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xe7119122 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe732aa33 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe757b3ea inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe77e0c8c __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe7a13348 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe7b40b87 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xe7dc4d47 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0xe7fb7e0e serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe8081108 page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0xe80f7d48 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe8203ddc serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xe82bea8f wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe82c66ee mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xe83a49a6 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe870d785 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe898832f policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0xe8ab38de simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xe8acabaa fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe8bf4851 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0xe8cb2796 xen_remap_domain_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0xe8d59551 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0xe8e041db acpi_dev_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xe908ea11 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0xe9260be3 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xe93b862f nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe94c7d93 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xe94fe84e md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xe981c9db cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xe9a8acea __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xe9be2009 nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0xe9c0744e devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe9c12c96 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xe9c8d2b6 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9db0101 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0xe9edb03e ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea47e930 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xea5d795f usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xea62ade6 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xea844b4d kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xea99b795 __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0xeaa7a476 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0xeabb8c79 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xeabf284e acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0xeae9e4b3 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xeaf48e2a crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0xeb2798f7 xen_destroy_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0xeb317976 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0xeb370805 __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xeb38b7f1 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xeb497840 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xeb833c22 xen_has_pv_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xeba9bac0 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xebb3592b snmp_get_cpu_field64 +EXPORT_SYMBOL_GPL vmlinux 0xebc5c5d9 cpufreq_governor_dbs +EXPORT_SYMBOL_GPL vmlinux 0xebc61165 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xebc7dd72 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0xebdec251 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xec14ce25 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec374b58 nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0xec631f34 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0xec6bf0e9 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xec7170e1 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xec8c1d44 acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xec91fc2e blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xecaafb25 skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0xecac7abd regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xecba7e0e vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xecd2d65c irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0xed06c5cb pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xed16c658 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xed4dd069 device_register +EXPORT_SYMBOL_GPL vmlinux 0xed8d09c4 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0xed8efbb8 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0xed90bcf9 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xed9ce7ef inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0xedbc6f67 gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xedcdffd4 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0xedea6f15 btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0xedee9310 nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xee0eed3d inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xee169f5f regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xee2a67d1 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0xee4a201e pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xee66be8d crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee6f5e3e tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0xee85bbca rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0xee88d7b8 devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xeeb1f0c4 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0xeebc792d ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0xeeed0038 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0xeefabc5f device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xef156f0a crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef305f5d ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xef409b74 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef4a11ac ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xef4fc0b6 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xef588a73 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef6e0818 driver_find +EXPORT_SYMBOL_GPL vmlinux 0xef76ea0a blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xef9960c6 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefa9ccac get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xefec6cda dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0xeffc2f2c cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xf0269c1a inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf054ac97 intel_msic_irq_read +EXPORT_SYMBOL_GPL vmlinux 0xf0658dc4 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf09391b2 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xf094bce6 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xf0c4cfa3 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0xf0c68290 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0xf0dd608a regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0xf0e15958 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xf0e30556 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf11d98f4 pinctrl_utils_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0xf1496264 phy_put +EXPORT_SYMBOL_GPL vmlinux 0xf14e1650 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xf14ea02e pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0xf1535108 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0xf173b683 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xf17830bf tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xf182d826 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf1a5226f watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xf1ac0e14 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1b551d9 ibft_addr +EXPORT_SYMBOL_GPL vmlinux 0xf1bb2867 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0xf1e47914 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xf209ab97 of_css +EXPORT_SYMBOL_GPL vmlinux 0xf20ab5eb fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xf20e4414 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xf2196393 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf23ee917 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf291252d alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0xf2a37426 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2eee43e arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0xf2f1d86e virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xf30fda27 lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf3344fd5 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xf3587d2d device_del +EXPORT_SYMBOL_GPL vmlinux 0xf3627420 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf38b3213 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf3aeddb3 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b503fc irq_find_matching_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xf3c1c980 pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0xf3d1ee2c rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xf3d251d7 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0xf3dd3ec1 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf3ebf4eb arch_apei_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf41eebde rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xf429ae34 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xf43f65d5 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xf446837f phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0xf45a6e0d xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xf4630185 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xf489512f pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0xf48c348e ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4ae4e60 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0xf4b98843 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0xf4d50b6f pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xf4ef015b scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf508c031 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xf5361b39 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xf5465a55 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf54fa145 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf5657e31 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xf5785b42 evtchn_get +EXPORT_SYMBOL_GPL vmlinux 0xf57d8d9f crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0xf57fa8d4 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xf5848c8b __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xf5871a31 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xf5945bac gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xf5964e88 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5cc6951 acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0xf5d2e404 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6039dae crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xf604d0fa usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0xf615386f percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf62f8414 clk_debugfs_add_file +EXPORT_SYMBOL_GPL vmlinux 0xf6497e0f usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0xf6769a48 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xf67f5e98 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xf6bf860e sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6cf488c sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xf6db3ec2 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6ecb4cf perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf6f596f7 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xf7016530 xenbus_gather +EXPORT_SYMBOL_GPL vmlinux 0xf7264cd4 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xf72a1c2f ping_hash +EXPORT_SYMBOL_GPL vmlinux 0xf73c13e6 rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf7545fa8 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0xf76bc672 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf7d17126 devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xf7daadc3 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xf7e3b8c5 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0xf7e3d204 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf7f12733 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xf803bac4 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xf818fc3f usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0xf819bdc1 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xf81e35b4 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0xf82a4fd7 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf8355365 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf85770a7 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf894ba00 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xf8c9ec63 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0xf8cbd147 pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0xf8cf3ccb acpi_dev_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xf8d781f1 pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf9048ee1 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xf90adf1e page_endio +EXPORT_SYMBOL_GPL vmlinux 0xf910e864 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0xf916482b dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0xf92cda13 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf9307bc1 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf95e8ae0 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xf9765833 dmi_match +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9ad44af blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9cc5ee3 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0xf9d9264e xen_have_vector_callback +EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched +EXPORT_SYMBOL_GPL vmlinux 0xfa42870c list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0xfa471902 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xfa4ff3d9 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0xfa5e5b67 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0xfa611584 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0xfa6adb7d vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xfa9e33f7 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xfaa5d5a6 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xfabddf64 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xfacb9bb8 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0xfae29f12 tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0xfb11aaf3 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xfb250e34 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xfb25ce06 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb35b44c blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xfb54427f devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xfb582919 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0xfb64b230 acpi_processor_ffh_cstate_probe +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb7bce4b ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xfb80489f devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xfb8237eb crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xfb83db03 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xfb905c89 _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbcff401 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xfbd62c35 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xfbd6a7e0 xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc216628 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc4f85e0 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfc7b60f4 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xfc968c8b apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0xfcbee39a device_rename +EXPORT_SYMBOL_GPL vmlinux 0xfcf654a7 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xfd0e3e79 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xfd124564 crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0xfd1432a1 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0xfd190374 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0xfd2c49b0 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xfd3733d7 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xfd3a8898 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xfd5131f4 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0xfd51b281 gnttab_end_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xfd54c210 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xfd57a738 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xfd6adf20 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd77d23c devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0xfd8e7a4b pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xfdb47e76 pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xfdc0a996 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfdcbb464 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfde895d4 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xfdf7b781 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xfe010712 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xfe031037 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xfe144535 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xfe51ddca clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0xfe52aa6a devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfeafabd0 usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xfeb1979b pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0xfec0468d pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xfec11087 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfed2c946 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xfee02f24 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfef7e664 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xff05632f acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff277cc3 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff2ce747 machine_check_poll +EXPORT_SYMBOL_GPL vmlinux 0xff50e8ed dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xff5452d1 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xff676787 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0xffc42efc pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xffddaac8 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0xffe57394 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xffe729b6 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xfff320da inet6_csk_addr2sockaddr only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-106.129/i386/generic.compiler +++ linux-raspi2-4.4.0/debian.master/abi/4.4.0-106.129/i386/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.5) 5.4.0 20160609 only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-106.129/i386/generic.modules +++ linux-raspi2-4.4.0/debian.master/abi/4.4.0-106.129/i386/generic.modules @@ -0,0 +1,4757 @@ +3c509 +3c515 +3c574_cs +3c589_cs +3c59x +3w-9xxx +3w-sas +3w-xxxx +53c700 +6lowpan +6pack +8021q +8139cp +8139too +8250_accent +8250_boca +8250_dw +8250_exar_st16c554 +8250_fintek +8250_fourport +8250_hub6 +8250_mid +8255 +8255_pci +8390 +8390p +842 +842_compress +842_decompress +88pm800 +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +BusLogic +DAC960 +NCR53c406a +a100u2w +a3d +a8293 +aacraid +aat2870-regulator +aat2870_bl +ab3100 +ab3100-otp +abituguru +abituguru3 +ablk_helper +ac97_bus +acard-ahci +acecad +acenic +acer-wmi +acerhdf +acpi-als +acpi_extlog +acpi_ipmi +acpi_pad +acpi_power_meter +acpi_thermal_rel +acpiphp_ibm +acquirewdt +act2000 +act200l-sir +act8865-regulator +act_bpf +act_connmark +act_csum +act_gact +act_ipt +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +act_vlan +actisys-sir +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5755 +ad5764 +ad5791 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7266 +ad7280a +ad7291 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7746 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad799x +ad8366 +ad9523 +ad9832 +ad9834 +ad_sigma_delta +adc128d818 +adcxx +addi_apci_1032 +addi_apci_1500 +addi_apci_1516 +addi_apci_1564 +addi_apci_16xx +addi_apci_2032 +addi_apci_2200 +addi_apci_3120 +addi_apci_3501 +addi_apci_3xxx +addi_watchdog +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adfs +adi +adis16060 +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16204 +adis16209 +adis16220 +adis16240 +adis16260 +adis16400 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1275 +adm8211 +adm9240 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adv7170 +adv7175 +adv7180 +adv7511 +adv7604 +adv7842 +adv_pci1710 +adv_pci1723 +adv_pci1724 +adv_pci_dio +advansys +advantechwdt +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +aes-i586 +aesni-intel +af-rxrpc +af9013 +af9033 +af_alg +af_key +af_packet_diag +affs +ah4 +ah6 +aha152x +aha152x_cs +aha1542 +aha1740 +ahci +ahci_platform +aic79xx +aic7xxx +aic94xx +aim_cdev +aim_network +aim_sound +aim_v4l2 +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airo +airo_cs +airspy +ak8975 +al3320a +algif_aead +algif_hash +algif_rng +algif_skcipher +ali-agp +ali-ircc +alienware-wmi +alim1535_wdt +alim7101_wdt +altera-ci +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am53c974 +ambassador +amc6821 +amd +amd-rng +amd5536udc +amd64_edac_mod +amd76x_edac +amd76xrom +amd8111e +amd_freq_sensitivity +amdgpu +amilo-rfkill +amplc_dio200 +amplc_dio200_common +amplc_dio200_pci +amplc_pc236 +amplc_pc236_common +amplc_pc263 +amplc_pci224 +amplc_pci230 +amplc_pci236 +amplc_pci263 +ams369fg06 +analog +anatop-regulator +ansi_cprng +anubis +aoe +apanel +apds9300 +apds9802als +apds990x +apds9960 +apm +apple-gmux +apple_bl +appledisplay +applesmc +appletalk +appletouch +applicom +aquantia +ar5523 +ar7part +arc-rawmode +arc-rimi +arc4 +arc_ps2 +arc_uart +arcfb +arcmsr +arcnet +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arp_tables +arpt_mangle +arptable_filter +as102_fe +as3711-regulator +as3711_bl +as3935 +as5011 +asb100 +asc7621 +ascot2e +asix +ast +asus-laptop +asus-nb-wmi +asus-wmi +asus_atk0110 +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +atbm8830 +aten +ath +ath10k_core +ath10k_pci +ath3k +ath5k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati-agp +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atlas_btns +atm +atmel +atmel_cs +atmel_mxt_ts +atmel_pci +atmtcp +atp +atp870u +atusb +atxp1 +aty128fb +atyfb +au0828 +au8522_common +au8522_decoder +au8522_dig +aufs +auo-pixcir-ts +auo_k1900fb +auo_k1901fb +auo_k190x +auth_rpcgss +authenc +authencesn +autofs4 +avm_cs +avma1_cs +avmfritz +ax25 +ax88179_178a +axnet_cs +axp20x-pek +axp20x-regulator +axp20x_usb_power +axp288_adc +axp288_charger +axp288_fuel_gauge +b1 +b1dma +b1isa +b1pci +b1pcmcia +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +bas_gigaset +batman-adv +baycom_epp +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bch +bcm-phy-lib +bcm203x +bcm3510 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm7038_wdt +bcm7xxx +bcm87xx +bcma +bcma-hcd +bd6107 +bdc +bdc_pci +be2iscsi +be2net +befs +belkin_sa +bfa +bfs +bfusb +bh1750 +bh1770glc +bh1780gli +binfmt_aout +binfmt_misc +block2mtd +blocklayoutdriver +blowfish_common +blowfish_generic +bluecard_cs +bluetooth +bluetooth_6lowpan +bma150 +bma180 +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmg160_core +bmg160_i2c +bmg160_spi +bmp085 +bmp085-i2c +bmp085-spi +bmp280 +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bnxt_en_bpo +bonding +bpa10x +bpck +bpck6 +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +br2684 +br_netfilter +brcmfmac +brcmsmac +brcmutil +brd +bridge +broadcom +broadsheetfb +bsd_comp +bt3c_cs +bt819 +bt856 +bt866 +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btqca +btrfs +btrtl +btsdio +bttv +btuart_cs +btusb +btwilink +bu21013_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c101 +c2port-duramar2150 +c4 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +cachefiles +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +caif_usb +caif_virtio +camellia_generic +can +can-bcm +can-dev +can-gw +can-raw +capi +capidrv +capmode +carl9170 +carminefb +cassini +cast5_generic +cast6_generic +cast_common +catc +cb710 +cb710-mmc +cb_das16_cs +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcimdas +cb_pcimdda +cc10001_adc +cc2520 +cc770 +cc770_isa +cc770_platform +cciss +ccm +ccp +ccp-crypto +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +ceph +cfag12864b +cfag12864bfb +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha20_generic +chacha20poly1305 +chaoskey +chipreg +chnl_net +chromeos_laptop +chromeos_pstore +ci_hdrc +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +cirrus +cirrusfb +ck804xrom +classmate-laptop +clip +clk-cdce706 +clk-palmas +clk-pwm +clk-s2mps11 +clk-si5351 +clk-twl6040 +clk-wm831x +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm36651 +cm4000_cs +cm4040_cs +cma3000_d0x +cma3000_d0x_i2c +cmac +cmdlinepart +cmtp +cnic +cobalt +cobra +coda +com20020 +com20020-isa +com20020-pci +com20020_cs +com90io +com90xx +comedi +comedi_8254 +comedi_8255 +comedi_bond +comedi_isadma +comedi_parport +comedi_pci +comedi_pcmcia +comedi_test +comedi_usb +comm +compal-laptop +configfs +contec_pci_dio +cops +cordic +core +coretemp +cosa +cp210x +cpcihp_generic +cpcihp_zt5550 +cpia2 +cpqphp +cpsw_ale +cpu-notifier-error-inject +cpu5wdt +cpuid +cr_bllcd +cramfs +crc-ccitt +crc-itu-t +crc32 +crc32-pclmul +crc7 +crc8 +cros_ec +cros_ec_devs +cros_ec_i2c +cros_ec_keyb +cros_ec_lpc +cros_ec_spi +crvml +cryptd +crypto_user +cryptoloop +cs5345 +cs53l32a +cs5535-mfd +cs553x_nand +cs89x0 +csiostor +ct82c710 +ctr +cts +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +cx18 +cx18-alsa +cx22700 +cx22702 +cx231xx +cx231xx-alsa +cx231xx-dvb +cx2341x +cx23885 +cx24110 +cx24113 +cx24116 +cx24117 +cx24120 +cx24123 +cx25821 +cx25821-alsa +cx25840 +cx82310_eth +cx88-alsa +cx88-blackbird +cx88-dvb +cx88-vp3054-i2c +cx8800 +cx8802 +cx88xx +cxacru +cxd2099 +cxd2820r +cxd2841er +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cyclades +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da9030_battery +da9034-ts +da903x +da903x_bl +da9052-battery +da9052-hwmon +da9052-regulator +da9052_bl +da9052_onkey +da9052_tsi +da9052_wdt +da9055-hwmon +da9055-regulator +da9055_onkey +da9055_wdt +da9062-core +da9062-regulator +da9062_wdt +da9063-regulator +da9063_onkey +da9063_wdt +da9150-charger +da9150-core +da9150-fg +da9150-gpadc +da9210-regulator +da9211-regulator +dac02 +daqboard2000 +das08 +das08_cs +das08_isa +das08_pci +das16 +das16m1 +das1800 +das6402 +das800 +davicom +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +dcdbas +ddbridge +de2104x +de4x5 +decnet +deflate +defxx +dell-laptop +dell-led +dell-rbtn +dell-smm-hwmon +dell-smo8800 +dell-wmi +dell-wmi-aio +dell_rbu +denali +denali_dt +denali_pci +des_generic +designware_i2s +dgap +dgnc +dht11 +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dibx000_common +digi_acceleport +diskonchip +diva_idi +diva_mnt +divacapi +divadidd +divas +dl2k +dlci +dlm +dln2 +dm-bio-prison +dm-bufio +dm-cache +dm-cache-cleaner +dm-cache-mq +dm-cache-smq +dm-crypt +dm-delay +dm-era +dm-flakey +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-verity +dm-zero +dm1105 +dm9601 +dme1737 +dmfe +dmi-sysfs +dmm32at +dmx3191d +dn_rtmsg +dnet +docg3 +docg4 +donauboe +dp83848 +dp83867 +dpt_i2o +drbd +drbg +drm +drm_kms_helper +drop_monitor +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds620 +dsbr100 +dscc4 +dss1_divert +dst +dst_ca +dstr +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x +dt3000 +dt3155 +dt9812 +dtc +dtl1_cs +dtlk +dummy +dummy-irq +dummy_stm +dvb-as102 +dvb-bt8xx +dvb-core +dvb-pll +dvb-ttpci +dvb-ttusb-budget +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-af9035 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6007 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-rtl28xxu +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dvb_usb_v2 +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_wdt +dwc3 +dwc3-pci +dwmac-generic +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +e752x_edac +e7xxx_edac +earth-pt1 +earth-pt3 +eata +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ec100 +ec_bhf +ec_sys +echainiv +echo +edac_core +edac_mce_amd +edt-ft5x06 +eeepc-laptop +eeepc-wmi +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efficeon-agp +efi-pstore +efi_test +efs +ehset +einj +elan_i2c +elo +elsa_cs +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_meta +em_nbyte +em_text +em_u32 +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +empeg +ems_pci +ems_pcmcia +ems_usb +emu10k1-gp +ena +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +ene_ir +eni +enic +epat +epia +epic100 +eql +esas2r +esb2rom +esd_usb2 +esi-sir +esp4 +esp6 +esp_scsi +et1011c +et131x +ethoc +eurotechwdt +evbug +exofs +extcon-adc-jack +extcon-arizona +extcon-axp288 +extcon-gpio +extcon-max14577 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +ezusb +f2fs +f71805f +f71808e_wdt +f71882fg +f75375s +f81232 +fakelb +fam15h_power +fan53555 +farsync +faulty +fb_agm1264k-fl +fb_bd663474 +fb_ddc +fb_hx8340bn +fb_hx8347d +fb_hx8353d +fb_hx8357d +fb_ili9163 +fb_ili9320 +fb_ili9325 +fb_ili9340 +fb_ili9341 +fb_ili9481 +fb_ili9486 +fb_pcd8544 +fb_ra8875 +fb_s6d02a1 +fb_s6d1121 +fb_ssd1289 +fb_ssd1306 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_sys_fops +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fbtft_device +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdomain_cs +fdp +fdp_i2c +fealnx +ff-memless +fintek-cir +firedtv +firestream +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fit2 +fit3 +fixed +fjes +fl512 +flexfb +floppy +fm10k +fm801-gp +fm_drv +fmc +fmc-chardev +fmc-fakedev +fmc-trivial +fmc-write-eeprom +fmvj18x_cs +fnic +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fpga-mgr +freevxfs +friq +frpw +fsa9480 +fscache +fschmd +fsl_lpuart +ft6236 +ftdi-elan +ftdi_sio +ftl +fujitsu-laptop +fujitsu-tablet +fujitsu_ts +g450_pll +g760a +g762 +g_NCR5380 +g_NCR5380_mmio +g_acm_ms +g_audio +g_cdc +g_dbgp +g_ether +g_ffs +g_hid +g_mass_storage +g_midi +g_ncm +g_nokia +g_printer +g_serial +g_webcam +g_zero +gadgetfs +gamecon +gameport +garmin_gps +garp +gcm +gdmtty +gdmulte +gdmwm +gdth +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +gennvm +geode-aes +geode-rng +gf128mul +gf2k +gfs2 +ghash-generic +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +glue_helper +gluebi +gma500_gfx +go7007 +go7007-loader +go7007-usb +goku_udc +goodix +gp2ap002a00f +gp2ap020a00f +gpio +gpio-104-idio-16 +gpio-addr-flash +gpio-adp5520 +gpio-adp5588 +gpio-amd8111 +gpio-amdpt +gpio-arizona +gpio-beeper +gpio-charger +gpio-crystalcove +gpio-cs5535 +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-f7188x +gpio-fan +gpio-generic +gpio-ich +gpio-ir-recv +gpio-it87 +gpio-janz-ttl +gpio-kempld +gpio-lp3943 +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-mc33880 +gpio-mcp23s08 +gpio-ml-ioh +gpio-pca953x +gpio-pcf857x +gpio-pch +gpio-rdc321x +gpio-regulator +gpio-sch +gpio-sch311x +gpio-tps65912 +gpio-twl4030 +gpio-twl6040 +gpio-ucb1400 +gpio-viperboard +gpio-vx855 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio_backlight +gpio_keys +gpio_keys_polled +gpio_mouse +gpio_tilt_polled +gr_udc +grace +gre +grip +grip_mp +gs_fpga +gs_usb +gsc_hpdi +gspca_benq +gspca_conex +gspca_cpia1 +gspca_dtcs033 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_jl2005bcd +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stk1135 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_touptek +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtco +guillemot +gunze +gx-suspmod +gx1fb +gxfb +gxt4500 +hackrf +hamachi +hampshire +hangcheck-timer +hanwang +hci +hci_uart +hci_vhci +hdaps +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcdrv +hdm_dim2 +hdm_i2c +hdm_usb +hdpvr +he +hecubafb +hexium_gemini +hexium_orion +hfc4s8s_l1 +hfc_usb +hfcmulti +hfcpci +hfcsusb +hfs +hfsplus +hgafb +hi8435 +hid +hid-a4tech +hid-alps +hid-apple +hid-appleir +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-cherry +hid-chicony +hid-corsair +hid-cp2112 +hid-cypress +hid-dr +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-hyperv +hid-icade +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-lenovo +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-primax +hid-prodikeys +hid-rmi +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-isku +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-konepure +hid-roccat-kovaplus +hid-roccat-lua +hid-roccat-pyra +hid-roccat-ryos +hid-roccat-savu +hid-saitek +hid-samsung +hid-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steelseries +hid-sunplus +hid-thingm +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hidp +hih6130 +hio +hisax +hisax_fcpcipnp +hisax_isac +hisax_st5481 +hisi504_nand +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hopper +horizon +horus3a +hostap +hostap_cs +hostap_pci +hostap_plx +hostess_sv11 +hp-wireless +hp-wmi +hp100 +hp_accel +hpfs +hpilo +hpsa +hptiop +hpwdt +hsi +hsi_char +hso +hsr +hsu_dma +hsu_dma_pci +htc-pasic3 +htcpen +hts221 +hts221_i2c +hts221_spi +htu21 +huawei_cdc_ncm +hv_balloon +hv_netvsc +hv_storvsc +hv_utils +hv_vmbus +hwa-hc +hwa-rc +hwmon-vid +hx8357 +hyperv-keyboard +hyperv_fb +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd756-s4882 +i2c-amd8111 +i2c-cbus-gpio +i2c-cros-ec-tunnel +i2c-designware-core +i2c-designware-pci +i2c-designware-platform +i2c-diolan-u2c +i2c-dln2 +i2c-eg20t +i2c-emev2 +i2c-gpio +i2c-hid +i2c-i801 +i2c-isch +i2c-ismt +i2c-kempld +i2c-matroxfb +i2c-mux +i2c-mux-gpio +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-pinctrl +i2c-mux-reg +i2c-nforce2 +i2c-nforce2-s4985 +i2c-ocores +i2c-parport +i2c-parport-light +i2c-pca-isa +i2c-pca-platform +i2c-piix4 +i2c-robotfuzz-osif +i2c-scmi +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-smbus +i2c-stub +i2c-taos-evm +i2c-tiny-usb +i2c-via +i2c-viapro +i2c-viperboard +i2c-xiic +i3000_edac +i3200_edac +i40e +i40evf +i5000_edac +i5100_edac +i5400_edac +i5500_temp +i5k_amb +i6300esb +i7300_edac +i740fb +i7core_edac +i810 +i810fb +i82092 +i82365 +i82860_edac +i82875p_edac +i82975x_edac +i915 +i915_bpo +iTCO_vendor_support +iTCO_wdt +ib700wdt +ib_addr +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mad +ib_mthca +ib_sa +ib_srp +ib_srpt +ib_ucm +ib_umad +ib_uverbs +ibm_rtl +ibmaem +ibmasm +ibmasr +ibmpex +ibmphp +ichxrom +icn +icp_multi +icplus +ics932s401 +ideapad-laptop +ideapad_slidebar +idma64 +idmouse +idt77252 +idt_gen2 +idtcps +ie31200_edac +ie6xx_wdt +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +iforce +igb +igbvf +igorplugusb +iguanair +ii_pci20kc +iio-trig-interrupt +iio-trig-periodic-rtc +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili922x +ili9320 +imm +imon +ims-pcu +imx074 +in2000 +ina209 +ina2xx +industrialio +industrialio-buffer-cb +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +input-polldev +int3400_thermal +int3402_thermal +int3403_thermal +int340x_thermal_zone +int51x1 +intel-hid +intel-lpss +intel-lpss-acpi +intel-lpss-pci +intel-mid-touch +intel-mid_wdt +intel-rng +intel-rst +intel-smartconnect +intel-vbtn +intel_ips +intel_menlow +intel_mid_battery +intel_mid_powerbtn +intel_mid_thermal +intel_oaktrail +intel_pch_thermal +intel_pmc_ipc +intel_powerclamp +intel_punit_ipc +intel_qat +intel_quark_i2c_gpio +intel_rapl +intel_scu_ipcutil +intel_soc_dts_iosf +intel_soc_dts_thermal +intel_th +intel_th_gth +intel_th_msu +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +intelfb +interact +interval_tree_test +inv-mpu6050 +io_edgeport +io_ti +ioc4 +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_MASQUERADE +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_tunnel +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_wlc +ip_vs_wrr +ip_vti +ipack +ipaq +ipcomp +ipcomp6 +ipddp +iphase +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +ipr +ips +ipt_CLUSTERIP +ipt_ECN +ipt_MASQUERADE +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipw +ipw2100 +ipw2200 +ipwireless +ipx +ir-hix5hd2 +ir-jvc-decoder +ir-kbd-i2c +ir-lirc-codec +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-usb +ir-xmp-decoder +ircomm +ircomm-tty +irda +irda-usb +iris +irlan +irnet +irqbypass +irtty-sir +isci +iscsi_boot_sysfs +iscsi_ibft +iscsi_target_mod +iscsi_tcp +isdn +isdn_bsdcomp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl9305 +isofs +isp116x-hcd +isp1362-hcd +isp1704_charger +isp1760 +it87 +it8712f_wdt +it87_wdt +it913x +itd1000 +ite-cir +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_c2 +iw_cm +iw_cxgb3 +iw_cxgb4 +iw_nes +iwl3945 +iwl4965 +iwldvm +iwlegacy +iwlmvm +iwlwifi +ix2505v +ixgb +ixgbe +ixgbevf +janz-cmodio +janz-ican3 +jc42 +jedec_probe +jffs2 +jfs +jitterentropy_rng +jmb38x_ms +jme +joydev +joydump +jr3_pci +jsa1212 +jsm +k10temp +k8temp +kafs +kalmia +kaweth +kb3886_bl +kbic +kbtab +kcomedilib +ke_counter +kempld-core +kempld_wdt +kernelcapi +keyspan +keyspan_pda +keyspan_remote +keywrap +kfifo_buf +khazad +kingsun-sir +kl5kusb105 +kmx61 +kobil_sct +ks0108 +ks0127 +ks8842 +ks8851 +ks8851_mll +ks959-sir +ksdazzle-sir +ksz884x +ktti +kvaser_pci +kvaser_usb +kvm +kvm-amd +kvm-intel +kxcjk-1013 +kxsd9 +kxtj9 +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l440gx +l4f00242t03 +l64781 +lan78xx +lanai +lance +lapb +lapbether +latch-addr-flash +lattice-ecp3-config +lcd +ld9040 +ldusb +lec +led-class-flash +leds-88pm860x +leds-adp5520 +leds-bd2802 +leds-blinkm +leds-clevo-mail +leds-da903x +leds-da9052 +leds-dac124s085 +leds-gpio +leds-lm3530 +leds-lm3533 +leds-lm355x +leds-lm3642 +leds-lp3944 +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-net48xx +leds-ot200 +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pwm +leds-regulator +leds-ss4200 +leds-tca6507 +leds-tlc591xx +leds-wm831x-status +leds-wm8350 +leds-wrap +ledtrig-backlight +ledtrig-camera +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-oneshot +ledtrig-timer +ledtrig-transient +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libahci +libahci_platform +libceph +libcomposite +libcrc32c +libcxgbi +libertas +libertas_cs +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libore +libosd +libsas +lightning +lineage-pem +linear +lirc_bt829 +lirc_dev +lirc_imon +lirc_parallel +lirc_sasem +lirc_serial +lirc_sir +lirc_zilog +lis3l02dq +lis3lv02d +lis3lv02d_i2c +litelink-sir +lkkbd +llc +llc2 +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3630a_bl +lm3639_bl +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lmc +lms283gf05 +lms501kf03 +lnbh25 +lnbp21 +lnbp22 +lockd +locktorture +logibm +longhaul +longrun +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp8755 +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpc_ich +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +ltc2941-battery-gauge +ltc2945 +ltc2978 +ltc3589 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltpc +ltr501 +ltv350qv +lv5207lp +lvstest +lxfb +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m25p80 +m2m-deinterlace +m52790 +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +ma600-sir +mac-celtic +mac-centeuro +mac-croatian +mac-cyrillic +mac-gaelic +mac-greek +mac-iceland +mac-inuit +mac-roman +mac-romanian +mac-turkish +mac80211 +mac80211_hwsim +mac802154 +mac_hid +macb +machzwd +macmodes +macvlan +macvtap +mag3110 +magellan +mailbox-altera +mantis +mantis_core +map_absent +map_funcs +map_ram +map_rom +marvell +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max1111 +max11801_ts +max1363 +max14577 +max14577_charger +max1586 +max16064 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max197 +max20751 +max2165 +max3100 +max31790 +max3421-hcd +max34440 +max517 +max63xx_wdt +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77693 +max77693-haptic +max77693_charger +max8649 +max8660 +max8688 +max8903_charger +max8907 +max8907-regulator +max8925-regulator +max8925_bl +max8925_onkey +max8925_power +max8952 +max8973-regulator +max8997 +max8997_charger +max8997_haptic +max8998 +max8998_charger +mb862xxfb +mb86a16 +mb86a20s +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc44s803 +mcb +mcb-pci +mce-inject +mce_amd_inj +mceusb +mcp2120-sir +mcp251x +mcp3021 +mcp320x +mcp3422 +mcp4531 +mcp4725 +mcp4922 +mcryptd +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md-cluster +md4 +mdacon +mdc800 +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-gpio +mdio-xgene +me4000 +me_daq +media +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +mei +mei-me +mei-txe +mei_phy +memory-notifier-error-inject +memstick +men_z135_uart +men_z188_adc +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +metro-usb +metronomefb +meye +mf6x4 +mga +michael_mic +micrel +microchip +microread +microread_i2c +microread_mei +microtek +mii +minix +mip6 +mite +mixcomwd +mk712 +mkiss +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx90614 +mlxsw_core +mlxsw_pci +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmc_block +mms114 +mn88472 +mn88473 +mos7720 +mos7840 +mostcore +moxa +mpc624 +mpl115 +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +msdos +msi-laptop +msi-wmi +msi001 +msi2500 +msp3400 +mspro_block +msr +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt29f_spinand +mt312 +mt352 +mt6311-regulator +mt6397-core +mt6397-regulator +mt7601u +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd +mtd_blkdevs +mtd_dataflash +mtdblock +mtdblock_ro +mtdoops +mtdram +mtdswap +mtip32xx +mtk-sd +mtouch +multipath +multiq3 +musb_hdrc +mv_u3d_core +mv_udc +mvmdio +mvsas +mvumi +mwave +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc4005 +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxm-wmi +mxser +mxuport +myri10ge +n2 +n411 +n_gsm +n_hdlc +n_r3964 +n_tracerouter +n_tracesink +nand +nand_bch +nand_ecc +nand_ids +nandsim +national +natsemi +nau7802 +navman +nb8800 +nbd +nci +nci_spi +nci_uart +ncpfs +nct6683 +nct6775 +nct7802 +nct7904 +nd_blk +nd_btt +nd_pmem +ne +ne2k-pci +neofb +net1080 +net2272 +net2280 +netconsole +netjet +netlink_diag +netrom +nettel +netup-unidvb +netxen_nic +newtonkbd +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_ipv4 +nf_nat_ipv6 +nf_nat_irc +nf_nat_masquerade_ipv4 +nf_nat_masquerade_ipv6 +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_redirect +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_synproxy_core +nf_tables +nf_tables_arp +nf_tables_bridge +nf_tables_inet +nf_tables_ipv4 +nf_tables_ipv6 +nf_tables_netdev +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfcwilink +nfit +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_log +nfnetlink_queue +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat_ipv4 +nft_chain_nat_ipv6 +nft_chain_route_ipv4 +nft_chain_route_ipv6 +nft_compat +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_exthdr +nft_hash +nft_limit +nft_log +nft_masq +nft_masq_ipv4 +nft_masq_ipv6 +nft_meta +nft_meta_bridge +nft_nat +nft_queue +nft_rbtree +nft_redir +nft_redir_ipv4 +nft_redir_ipv6 +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +ni65 +ni_6527 +ni_65xx +ni_660x +ni_670x +ni_at_a2150 +ni_at_ao +ni_atmio +ni_atmio16d +ni_daq_700 +ni_daq_dio24 +ni_labpc +ni_labpc_common +ni_labpc_cs +ni_labpc_isadma +ni_labpc_pci +ni_mio_cs +ni_pcidio +ni_pcimio +ni_tio +ni_tiocmd +ni_usb6501 +nicstar +nilfs2 +niu +nlmon +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +nmclan_cs +nosy +notifier-error-inject +nouveau +nozomi +ns558 +ns83820 +nsc-ircc +nsc_gpio +nsp32 +nsp_cs +ntb +ntb_netdev +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +null_blk +nuvoton-cir +nv_tco +nvidiafb +nvme +nvmem_core +nvram +nxp-nci +nxp-nci_i2c +nxt200x +nxt6000 +objlayoutdriver +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +of_xilinx_wdt +old_belkin-sir +omfs +omninet +on20 +on26 +onenand +opencores-kbd +openvswitch +oprofile +opt3001 +opticon +option +or51132 +or51211 +orinoco +orinoco_cs +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +osd +osdblk +osst +oti6858 +ov2640 +ov5642 +ov6650 +ov7640 +ov7670 +ov772x +ov9640 +ov9740 +overlay +oxu210hp-hcd +p4-clockmod +p54common +p54pci +p54spi +p54usb +p8022 +p8023 +pa12203001 +padlock-aes +padlock-sha +palmas-pwrbutton +palmas-regulator +panasonic-laptop +pandora_bl +panel +paride +parkbd +parport +parport_ax88796 +parport_cs +parport_pc +parport_serial +pas16 +pata_acpi +pata_ali +pata_amd +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cs5520 +pata_cs5530 +pata_cs5535 +pata_cs5536 +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_isapnp +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_oldpiix +pata_opti +pata_optidma +pata_pcmcia +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sc1200 +pata_sch +pata_serverworks +pata_sil680 +pata_sl82c105 +pata_triflex +pata_via +pc110pad +pc300too +pc87360 +pc8736x_gpio +pc87413_wdt +pc87427 +pcap-regulator +pcap_keys +pcap_ts +pcbc +pcbit +pcd +pcf50633 +pcf50633-adc +pcf50633-backlight +pcf50633-charger +pcf50633-gpio +pcf50633-input +pcf50633-regulator +pcf8574_keypad +pcf8591 +pch_can +pch_dma +pch_gbe +pch_phub +pch_uart +pch_udc +pci +pci-stub +pci200syn +pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad +pcmcia +pcmcia_core +pcmcia_rsrc +pcmciamtd +pcmda12 +pcmmio +pcmuio +pcnet32 +pcnet_cs +pcrypt +pcspkr +pcwd +pcwd_pci +pcwd_usb +pd +pd6729 +pda_power +pdc_adma +peak_pci +peak_pcmcia +peak_usb +pegasus +penmount +percpu_test +pf +pfuze100-regulator +pg +phantom +phonet +phram +phy-bcm-kona-usb2 +phy-exynos-usb2 +phy-gpio-vbus-usb +phy-isp1301 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-tahvo +phy-tusb1210 +physmap +pinctrl-broxton +pinctrl-intel +pinctrl-sunrisepoint +pixcir_i2c_ts +pkcs7_test_key +pktcdvd +pktgen +pl2303 +plat-ram +plat_nand +platform_lcd +plip +plusb +pluto2 +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm80xx +pm8941-wled +pmbus +pmbus_core +pmc551 +pmcraid +pn533 +pn544 +pn544_i2c +pn544_mei +pn_pep +poly1305_generic +port100 +powermate +powernow-k6 +powernow-k7 +powr1220 +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_core +pps_parport +pptp +prism2_usb +processor_thermal_device +ps2mult +psmouse +psnap +pt +pti +ptp +ptp_pch +pulsedlight-lidar-lite-v2 +punit_atom_debug +pvpanic +pvrusb2 +pwc +pwm-beeper +pwm-lp3943 +pwm-lpss +pwm-lpss-pci +pwm-lpss-platform +pwm-pca9685 +pwm-regulator +pwm-twl +pwm-twl-led +pwm_bl +pxa27x_udc +qat_dh895xcc +qat_dh895xccvf +qcaux +qcom-spmi-iadc +qcom-spmi-vadc +qcom_spmi-regulator +qcserial +qed +qede +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qlogic_cs +qlogicfas +qlogicfas408 +qm1d1c0042 +qmi_wwan +qnx4 +qnx6 +qsemi +qt1010 +qt1070 +qt2160 +quatech2 +quatech_daqp_cs +quota_tree +quota_v1 +quota_v2 +qxl +r128 +r592 +r6040 +r8152 +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r82600_edac +r852 +r8712u +r8723au +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-aimslab +radio-aztech +radio-bcm2048 +radio-cadet +radio-gemtek +radio-i2c-si470x +radio-isa +radio-keene +radio-ma901 +radio-maxiradio +radio-miropcm20 +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-rtrack2 +radio-sf16fmi +radio-sf16fmr2 +radio-shark +radio-si476x +radio-tea5764 +radio-terratec +radio-timb +radio-trust +radio-typhoon +radio-usb-si470x +radio-usb-si4713 +radio-wl1273 +radio-zoltrix +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ramoops +raw +ray_cs +rbd +rbtree_test +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-asus-pc39 +rc-asus-ps3-100 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-delock-61959 +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-dvbsky +rc-em-terratec +rc-encore-enltv +rc-encore-enltv-fm53 +rc-encore-enltv2 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-pctv-sedna +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-reddo +rc-snapstream-firefly +rc-streamzap +rc-su3000 +rc-tbs-nec +rc-technisat-ts35 +rc-technisat-usb2 +rc-terratec-cinergy-c-pci +rc-terratec-cinergy-s2-hd +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-total-media-in-hand-02 +rc-trekstor +rc-tt-1500 +rc-twinhan-dtv-cab-ci +rc-twinhan1027 +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rc5t583-regulator +rdc321x-southbridge +rdma_cm +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +redboot +redrat3 +reed_solomon +regmap-spmi +regulator-haptic +reiserfs +remoteproc +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd_ftl +rfkill-gpio +rfkill-regulator +rio-scan +rio500 +rionet +rivafb +rj54n1cb0c +rmd128 +rmd160 +rmd256 +rmd320 +rn5t618 +rn5t618-regulator +rn5t618_wdt +rndis_host +rndis_wlan +rocket +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpcrdma +rpcsec_gss_krb5 +rpr0521 +rrpc +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt5033 +rt5033-regulator +rt5033_battery +rt61pci +rt73usb +rt9455_charger +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab3100 +rtc-abx80x +rtc-bq32k +rtc-bq4802 +rtc-da9052 +rtc-da9055 +rtc-da9063 +rtc-ds1286 +rtc-ds1305 +rtc-ds1307 +rtc-ds1343 +rtc-ds1347 +rtc-ds1374 +rtc-ds1390 +rtc-ds1511 +rtc-ds1553 +rtc-ds1672 +rtc-ds1685 +rtc-ds1742 +rtc-ds2404 +rtc-ds3232 +rtc-ds3234 +rtc-em3027 +rtc-fm3130 +rtc-hid-sensor-time +rtc-isl12022 +rtc-isl12057 +rtc-isl1208 +rtc-lp8788 +rtc-m41t80 +rtc-m41t93 +rtc-m41t94 +rtc-m48t35 +rtc-m48t59 +rtc-m48t86 +rtc-max6900 +rtc-max6902 +rtc-max8907 +rtc-max8925 +rtc-max8997 +rtc-max8998 +rtc-mc13xxx +rtc-mcp795 +rtc-mrst +rtc-msm6242 +rtc-mt6397 +rtc-palmas +rtc-pcap +rtc-pcf2123 +rtc-pcf2127 +rtc-pcf50633 +rtc-pcf85063 +rtc-pcf8523 +rtc-pcf8563 +rtc-pcf8583 +rtc-r9701 +rtc-rc5t583 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rv8803 +rtc-rx4581 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-stk17ta8 +rtc-tps6586x +rtc-tps65910 +rtc-tps80031 +rtc-twl +rtc-v3020 +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtd520 +rti800 +rti802 +rtl2830 +rtl2832 +rtl2832_sdr +rtl8150 +rtl8187 +rtl8188ee +rtl818x_pci +rtl8192c-common +rtl8192ce +rtl8192cu +rtl8192de +rtl8192ee +rtl8192se +rtl8723-common +rtl8723ae +rtl8723be +rtl8821ae +rtl8xxxu +rtl_pci +rtl_usb +rtllib +rtllib_crypt_ccmp +rtllib_crypt_tkip +rtllib_crypt_wep +rtlwifi +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rx51_battery +rxkad +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3fb +s3fwrn5 +s3fwrn5_i2c +s526 +s5h1409 +s5h1411 +s5h1420 +s5m8767 +s626 +s6e63m0 +s921 +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7185 +saa7706h +safe_serial +salsa20-i586 +salsa20_generic +samsung-keypad +samsung-laptop +samsung-q10 +samsung-sxgbe +sata_inic162x +sata_mv +sata_nv +sata_promise +sata_qstor +sata_sil +sata_sil24 +sata_sis +sata_svw +sata_sx4 +sata_uli +sata_via +sata_vsc +savage +savagefb +sb1000 +sbc60xxwdt +sbc7240_wdt +sbc8360 +sbc_epx_c3 +sbc_fitpc2_wdt +sbc_gxx +sbni +sbp_target +sbs +sbs-battery +sbshc +sc +sc1200wdt +sc16is7xx +sc92031 +sca3000 +scb2_flash +scc +sch311x_wdt +sch5627 +sch5636 +sch56xx-common +sch_atm +sch_cbq +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_fq +sch_fq_codel +sch_gred +sch_hfsc +sch_hhf +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_pie +sch_plug +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_tbf +sch_teql +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +scsi_transport_srp +sctp +sctp_probe +scx200 +scx200_acb +scx200_docflash +scx200_gpio +scx200_hrt +scx200_wdt +sdhci +sdhci-acpi +sdhci-pci +sdhci-pltfm +sdio_uart +sdla +sdricoh_cs +sealevel +sedlbauer_cs +seed +sensorhub +seqiv +ser_gigaset +serial2002 +serial_cs +serio_raw +sermouse +serpent-sse2-i586 +serpent_generic +serport +ses +sfc +sfi-cpufreq +sh_veu +shark2 +shpchp +sht15 +sht21 +shtc1 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sil164 +sim710 +sir-dev +sis +sis-agp +sis190 +sis5595 +sis900 +sisfb +sisusbvga +sit +sja1000 +sja1000_isa +sja1000_platform +skfp +skge +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +sl811_cs +slcan +slicoss +slip +slram +sm501 +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smb347-charger +smc-ultra +smc9194 +smc91c92_cs +smipcie +smm665 +smsc +smsc-ircc2 +smsc37b787_wdt +smsc47b397 +smsc47m1 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsmdtv +smssdio +smsusb +snd +snd-ac97-codec +snd-ad1816a +snd-ad1848 +snd-ad1889 +snd-adlib +snd-ak4113 +snd-ak4114 +snd-ak4117 +snd-ak4xxx-adda +snd-ali5451 +snd-aloop +snd-als100 +snd-als300 +snd-als4000 +snd-asihpi +snd-atiixp +snd-atiixp-modem +snd-au8810 +snd-au8820 +snd-au8830 +snd-aw2 +snd-azt1605 +snd-azt2316 +snd-azt2320 +snd-azt3328 +snd-bcd2000 +snd-bebob +snd-bt87x +snd-ca0106 +snd-cmi8328 +snd-cmi8330 +snd-cmipci +snd-compress +snd-cs4231 +snd-cs4236 +snd-cs4281 +snd-cs46xx +snd-cs5530 +snd-cs5535audio +snd-cs8427 +snd-ctxfi +snd-darla20 +snd-darla24 +snd-dice +snd-dummy +snd-echo3g +snd-emu10k1 +snd-emu10k1-synth +snd-emu10k1x +snd-emu8000-synth +snd-emux-synth +snd-ens1370 +snd-ens1371 +snd-es1688 +snd-es1688-lib +snd-es18xx +snd-es1938 +snd-es1968 +snd-firewire-digi00x +snd-firewire-lib +snd-firewire-tascam +snd-fireworks +snd-fm801 +snd-gina20 +snd-gina24 +snd-gus-lib +snd-gusclassic +snd-gusextreme +snd-gusmax +snd-hda-codec +snd-hda-codec-analog +snd-hda-codec-ca0110 +snd-hda-codec-ca0132 +snd-hda-codec-cirrus +snd-hda-codec-cmedia +snd-hda-codec-conexant +snd-hda-codec-generic +snd-hda-codec-hdmi +snd-hda-codec-idt +snd-hda-codec-realtek +snd-hda-codec-si3054 +snd-hda-codec-via +snd-hda-core +snd-hda-ext-core +snd-hda-intel +snd-hdsp +snd-hdspm +snd-hrtimer +snd-hwdep +snd-i2c +snd-ice1712 +snd-ice1724 +snd-ice17xx-ak4xxx +snd-indigo +snd-indigodj +snd-indigodjx +snd-indigoio +snd-indigoiox +snd-intel-sst-acpi +snd-intel-sst-core +snd-intel-sst-pci +snd-intel8x0 +snd-intel8x0m +snd-interwave +snd-interwave-stb +snd-isight +snd-jazz16 +snd-korg1212 +snd-layla20 +snd-layla24 +snd-lola +snd-lx6464es +snd-maestro3 +snd-mia +snd-miro +snd-mixart +snd-mixer-oss +snd-mona +snd-mpu401 +snd-mpu401-uart +snd-msnd-classic +snd-msnd-lib +snd-msnd-pinnacle +snd-mtpav +snd-mts64 +snd-nm256 +snd-opl3-lib +snd-opl3-synth +snd-opl3sa2 +snd-opl4-lib +snd-opl4-synth +snd-opti92x-ad1848 +snd-opti92x-cs4231 +snd-opti93x +snd-oxfw +snd-oxygen +snd-oxygen-lib +snd-pcm +snd-pcm-dmaengine +snd-pcm-oss +snd-pcsp +snd-pcxhr +snd-pdaudiocf +snd-portman2x4 +snd-pt2258 +snd-rawmidi +snd-riptide +snd-rme32 +snd-rme96 +snd-rme9652 +snd-sb-common +snd-sb16 +snd-sb16-csp +snd-sb16-dsp +snd-sb8 +snd-sb8-dsp +snd-sbawe +snd-sc6000 +snd-scs1x +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-sis7019 +snd-soc-ac97 +snd-soc-adau1701 +snd-soc-ak4104 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-alc5623 +snd-soc-core +snd-soc-cs35l32 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42xx8 +snd-soc-cs42xx8-i2c +snd-soc-cs4349 +snd-soc-dmic +snd-soc-es8328 +snd-soc-fsl-asrc +snd-soc-fsl-esai +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-gtm601 +snd-soc-imx-audmux +snd-soc-max98090 +snd-soc-pcm1681 +snd-soc-pcm1792a-codec +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-rl6231 +snd-soc-rl6347a +snd-soc-rt286 +snd-soc-rt5631 +snd-soc-rt5640 +snd-soc-rt5645 +snd-soc-rt5660 +snd-soc-rt5670 +snd-soc-sgtl5000 +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-simple-card +snd-soc-skl +snd-soc-skl-ipc +snd-soc-skl_rt286 +snd-soc-sn95031 +snd-soc-spdif-rx +snd-soc-spdif-tx +snd-soc-ssm2602 +snd-soc-ssm2602-i2c +snd-soc-ssm2602-spi +snd-soc-ssm4567 +snd-soc-sst-acpi +snd-soc-sst-baytrail-pcm +snd-soc-sst-broadwell +snd-soc-sst-byt-max98090-mach +snd-soc-sst-byt-rt5640-mach +snd-soc-sst-bytcr-rt5640 +snd-soc-sst-bytcr-rt5660 +snd-soc-sst-cht-bsw-max98090_ti +snd-soc-sst-cht-bsw-rt5645 +snd-soc-sst-cht-bsw-rt5672 +snd-soc-sst-dsp +snd-soc-sst-haswell +snd-soc-sst-haswell-pcm +snd-soc-sst-ipc +snd-soc-sst-mfld-platform +snd-soc-sta32x +snd-soc-sta350 +snd-soc-sti-sas +snd-soc-tas2552 +snd-soc-tas5086 +snd-soc-tas571x +snd-soc-tfa9879 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic3x +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8962 +snd-soc-wm8978 +snd-soc-xtfpga-i2s +snd-sonicvibes +snd-sscape +snd-tea6330t +snd-timer +snd-trident +snd-ua101 +snd-usb-6fire +snd-usb-audio +snd-usb-caiaq +snd-usb-hiface +snd-usb-line6 +snd-usb-pod +snd-usb-podhd +snd-usb-toneport +snd-usb-us122l +snd-usb-usx2y +snd-usb-variax +snd-usbmidi-lib +snd-util-mem +snd-via82xx +snd-via82xx-modem +snd-virmidi +snd-virtuoso +snd-vx-lib +snd-vx222 +snd-vxpocket +snd-wavefront +snd-wss-lib +snd-ymfpci +snic +soc_button_array +soc_camera +soc_camera_platform +soc_mediabus +softdog +softing +softing_cs +solo6x10 +solos-pci +sony-btf-mpx +sony-laptop +sonypi +soundcore +sp2 +sp5100_tco +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntpc +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_decpc +speakup_dectlk +speakup_dtlk +speakup_dummy +speakup_keypc +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +spectrum_cs +speedfax +speedtch +spi-altera +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-gpio +spi-lm70llp +spi-nor +spi-oc-tiny +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-sc18is602 +spi-tle62x0 +spi-topcliff-pch +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spmi +sr9700 +sr9800 +ssb +ssb-hcd +ssfdc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +sstfb +ssu100 +ssv_dnp +st +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_spi +st_magn +st_magn_i2c +st_magn_spi +st_pressure +st_pressure_i2c +st_pressure_spi +st_sensors +st_sensors_i2c +st_sensors_spi +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +ste_modem_rproc +stex +stinger +stir4200 +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm_console +stm_core +stmmac +stmmac-platform +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv6110 +stv6110x +sun4i-codec +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +surfacepro3_button +svgalib +sworks-agp +sx8 +sx8654 +sx9500 +sym53c416 +sym53c500_cs +sym53c8xx +symbolserial +synaptics_i2c +synaptics_i2c_rmi4 +synaptics_usb +synclink +synclink_cs +synclink_gt +synclinkmp +syscopyarea +sysfillrect +sysimgblt +sysv +t128 +t1isa +t1pci +t5403 +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +target_core_user +tc1100-wmi +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcic +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tcs3414 +tcs3472 +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tda998x +tdfx +tdfxfb +tdo24m +tea +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tef6862 +tehuti +tekram-sir +teles_cs +teranetics +test-hexdump +test-kstrtox +test-string_helpers +test_bpf +test_firmware +test_module +test_power +test_printf +test_static_key_base +test_static_keys +test_udelay +test_user_copy +tg3 +tgr192 +thinkpad_acpi +thmc50 +thunderbolt +ti-adc081c +ti-adc128s052 +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_dac7512 +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timb_dma +timberdale +timblogiw +timbuart +timeriomem-rng +tipc +tlan +tlclk +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmem +tmp006 +tmp102 +tmp103 +tmp401 +tmp421 +toim3232-sir +topstar-laptop +torture +toshiba-wmi +toshiba_acpi +toshiba_bluetooth +toshiba_haps +toshsd +touchit213 +touchright +touchwin +tpci200 +tpm-rng +tpm_atmel +tpm_crb +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_infineon +tpm_nsc +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tps40422 +tps51632-regulator +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65090-charger +tps65090-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps80031-regulator +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tscan1 +tsi568 +tsi57x +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2x7x_core +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tvaudio +tveeprom +tvp5150 +tw2804 +tw68 +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-madc-hwmon +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6040-vibra +twofish-i586 +twofish_common +twofish_generic +typhoon +u132-hcd +u14-34f +uPD98402 +u_ether +u_serial +uartlite +uas +ubi +ubifs +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +uda1342 +udc-core +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufshcd +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uli526x +ulpi +ultrastor +umc +umem +ums-alauda +ums-cypress +ums-datafab +ums-eneub6250 +ums-freecom +ums-isd200 +ums-jumpshot +ums-karma +ums-onetouch +ums-realtek +ums-sddr09 +ums-sddr55 +ums-usbat +unix_diag +upd64031a +upd64083 +us5182d +usb-serial-simple +usb-storage +usb3503 +usb8xxx +usb_8dev +usb_debug +usb_f_acm +usb_f_ecm +usb_f_ecm_subset +usb_f_eem +usb_f_fs +usb_f_hid +usb_f_mass_storage +usb_f_midi +usb_f_ncm +usb_f_obex +usb_f_phonet +usb_f_printer +usb_f_rndis +usb_f_serial +usb_f_ss_lb +usb_f_uac1 +usb_f_uac2 +usb_f_uvc +usb_gigaset +usb_wwan +usbatm +usbdux +usbduxfast +usbduxsigma +usbhid +usbip-core +usbip-host +usbkbd +usblcd +usbled +usblp +usbmon +usbmouse +usbnet +usbserial +usbsevseg +usbtest +usbtmc +usbtouchscreen +usbtv +usbvision +usdhi6rol0 +userio +userspace-consumer +ushc +usnic_verbs +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-dv-timings +v4l2-flash-led-class +v4l2-mem2mem +vboxguest +vboxsf +vboxvideo +vcan +vcnl4000 +ven_rsi_91x +ven_rsi_sdio +ven_rsi_usb +ves1820 +ves1x93 +veth +vfio +vfio-pci +vfio_iommu_type1 +vfio_virqfd +vga16fb +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_net +vhost_scsi +via +via-camera +via-cputemp +via-ircc +via-rhine +via-rng +via-sdmmc +via-velocity +via686a +via_wdt +viafb +video +videobuf-core +videobuf-dma-contig +videobuf-dma-sg +videobuf-dvb +videobuf-vmalloc +videobuf2-core +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-dvb +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videocodec +videodev +vim2m +viperboard +viperboard_adc +virt-dma +virtio-gpu +virtio-rng +virtio_input +virtio_scsi +virtual +visor +vitesse +vivid +vlsi_ir +vmac +vme_ca91cx42 +vme_pio2 +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmlfb +vmw_balloon +vmw_pvscsi +vmw_vmci +vmw_vsock_vmci_transport +vmwgfx +vmxnet3 +vp27smpx +vport-geneve +vport-gre +vport-vxlan +vpx3220 +vrf +vringh +vsock +vsxxxaa +vt1211 +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxge +vxlan +vz89x +w1-gpio +w1_bq27000 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1_ds2781 +w1_ds28e04 +w1_smem +w1_therm +w5100 +w5300 +w6692 +w83627ehf +w83627hf +w83627hf_wdt +w83781d +w83791d +w83792d +w83793 +w83795 +w83877f_wdt +w83977af_ir +w83977f_wdt +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +wafer5823wdt +walkera0701 +wanxl +warrior +wbsd +wcn36xx +wd +wd7000 +wd719x +wdt +wdt87xx_i2c +wdt_pci +whc-rc +whci +whci-hcd +whiteheat +wil6210 +wimax +winbond-840 +winbond-cir +wire +wishbone-serial +wistron_btns +wl1251 +wl1251_sdio +wl1251_spi +wl1273-core +wl12xx +wl18xx +wl3501_cs +wlcore +wlcore_sdio +wlcore_spi +wm831x-dcdc +wm831x-hwmon +wm831x-isink +wm831x-ldo +wm831x-on +wm831x-ts +wm831x_backup +wm831x_bl +wm831x_power +wm831x_wdt +wm8350-hwmon +wm8350-regulator +wm8350_power +wm8350_wdt +wm8400-regulator +wm8739 +wm8775 +wm8994-core +wm8994-irq +wm8994-regmap +wm8994-regulator +wm97xx-ts +wmi +wp512 +wusb-cbaf +wusb-wa +wusbcore +x25 +x25_asy +x38_edac +x86_pkg_temp_thermal +x_tables +xc4000 +xc5000 +xcbc +xen-blkback +xen-evtchn +xen-fbfront +xen-gntalloc +xen-gntdev +xen-kbdfront +xen-netback +xen-pciback +xen-pcifront +xen-privcmd +xen-scsiback +xen-scsifront +xen-tpmfront +xen_wdt +xenfs +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_ipcomp +xfrm_user +xfs +xgifb +xhci-plat-hcd +xillybus_core +xillybus_pcie +xirc2ps_cs +xircom_cb +xor +xpad +xr_usb_serial_common +xsens_mt +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +xt_NETMAP +xt_NFLOG +xt_NFQUEUE +xt_RATEEST +xt_REDIRECT +xt_SECMARK +xt_TCPMSS +xt_TCPOPTSTRIP +xt_TEE +xt_TPROXY +xt_TRACE +xt_addrtype +xt_bpf +xt_cgroup +xt_cluster +xt_comment +xt_connbytes +xt_connlabel +xt_connlimit +xt_connmark +xt_conntrack +xt_cpu +xt_dccp +xt_devgroup +xt_dscp +xt_ecn +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_ipcomp +xt_iprange +xt_ipvs +xt_l2tp +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_nat +xt_nfacct +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_realm +xt_recent +xt_sctp +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_tcpudp +xt_time +xt_u32 +xtkbd +xts +xusbatm +xz_dec_test +yam +yealink +yellowfin +yenta_socket +yurex +z85230 +zatm +zaurus +zd1201 +zd1211rw +zforce_ts +zhenhua +zl10036 +zl10039 +zl10353 +zl6100 +zlib +zr36016 +zr36050 +zr36060 +zr36067 +zr364xx +zram +zynq-fpga only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-106.129/i386/lowlatency +++ linux-raspi2-4.4.0/debian.master/abi/4.4.0-106.129/i386/lowlatency @@ -0,0 +1,18876 @@ +EXPORT_SYMBOL arch/x86/kvm/kvm 0x65897696 kvm_cpu_has_pending_timer +EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x254e5667 scx200_gpio_base +EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x35a3c008 scx200_gpio_configure +EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x8cfa375c scx200_gpio_shadow +EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x907665bd scx200_cb_base +EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe +EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble +EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL crypto/mcryptd 0x2d7e229d mcryptd_arm_flusher +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/acpi/nfit 0xa7e9a159 to_nfit_uuid +EXPORT_SYMBOL drivers/acpi/video 0x6de7f7ff acpi_video_get_backlight_type +EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister +EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register +EXPORT_SYMBOL drivers/acpi/video 0xe92ca535 acpi_video_set_dmi_backlight_type +EXPORT_SYMBOL drivers/acpi/video 0xeb5329a0 acpi_video_get_edid +EXPORT_SYMBOL drivers/atm/suni 0x401a5270 suni_init +EXPORT_SYMBOL drivers/atm/uPD98402 0xfab6f56f uPD98402_init +EXPORT_SYMBOL drivers/bcma/bcma 0x8f0be7eb bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0xa61cbdbd bcma_core_dma_translation +EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str +EXPORT_SYMBOL drivers/block/paride/paride 0x10c30b46 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x1e23c56f pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x3c9fddfa paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x3fc6c4f1 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x806b9e2b pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x8a43ce57 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x8d49a788 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x9a451f8d pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0xa6462b73 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xb50453eb pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xcbceedf2 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xd08301f5 pi_disconnect +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xb39deb9d btbcm_patchram +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0304952c ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0f954a2d ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x11ea2250 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fae3bac ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x2093589f ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78ba5231 ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/nsc_gpio 0x5c9215a9 nsc_gpio_write +EXPORT_SYMBOL drivers/char/nsc_gpio 0x8020f857 nsc_gpio_read +EXPORT_SYMBOL drivers/char/nsc_gpio 0xd471806e nsc_gpio_dump +EXPORT_SYMBOL drivers/char/nvram 0x0f28cb91 nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x17ff2c1d __nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x2adec1e0 __nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x7da28f12 nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x9ce3f83f nvram_write_byte +EXPORT_SYMBOL drivers/char/nvram 0xa8813189 __nvram_write_byte +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x15267636 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x3d681ce5 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x8c3edadf st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xb38e825c st33zp24_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x7aab1a6e xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x7eeec169 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xff25c058 xillybus_init_endpoint +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x18c02098 dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x228a8883 dw_dma_get_src_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x38832cf5 dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x3d7c3d2e dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x5958ece7 dw_dma_cyclic_free +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x94f2624f dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/edac/edac_core 0x10e0610a edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04dd92ce fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0960f61d fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0d1fce3a fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0d71cfc0 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x21705eee fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2be96d41 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x31e1ac04 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x38d25da5 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4254bde7 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x49050267 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d5d4eca fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4dbdec6e fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4ee2293a fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x52798b39 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5d2c2d47 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x67f3d9e8 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x764ab2b0 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7d716969 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e431b14 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x994a7895 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9a53a4e2 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa1273148 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa8b651a7 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0xae12d769 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd02d0051 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd4306c2b fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd8090878 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xdda0d910 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfa77c0c0 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firmware/dcdbas 0xa75079d6 dcdbas_smi_request +EXPORT_SYMBOL drivers/fmc/fmc 0x3a8e7ee2 fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x51ee6772 fmc_show_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x9a6e2bac fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x9ef5198a fmc_reprogram +EXPORT_SYMBOL drivers/fmc/fmc 0xa13aef78 fmc_find_sdb_device +EXPORT_SYMBOL drivers/fmc/fmc 0xa9ad20ca fmc_device_register_n +EXPORT_SYMBOL drivers/fmc/fmc 0xb31617b7 fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xbf305578 fmc_device_unregister_n +EXPORT_SYMBOL drivers/fmc/fmc 0xd9c98d4c fmc_device_register +EXPORT_SYMBOL drivers/fmc/fmc 0xfc628c01 fmc_device_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0xfd3780d1 fmc_driver_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00ef571e drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0194782f drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01dcdad8 drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x020e4003 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0378d665 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03e86017 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x055abd39 drm_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05840532 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05b8d919 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05b967db drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06346d0a drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0731e874 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07aa4b93 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0x085392d9 drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0abac7dd drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0abb83b9 drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c58e904 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c5e547f drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c888525 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e239c7d drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e6e9391 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fccafb1 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fe6ed9b drm_crtc_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10d64f0f drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1108637d drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11c7b798 drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12be2248 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x155076b7 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15b0483b drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1716a6fd drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1921056b drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x196af515 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b72a6e3 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e1788d8 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21160084 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x211b995f drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x212ed718 drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21ce0387 drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21db8a28 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x226a4c7f drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2552aa89 drm_platform_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x256c01e1 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26a88729 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x283250c2 drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28f34d6c drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b9a40cf drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bd22dc8 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c2b33c6 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c994694 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d4dbb05 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2eb90b89 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31843f78 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31a94819 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x332afae1 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3346535a drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3406fa91 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x346127a7 drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3613738b drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3860d3ab drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ad07b3a drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3af409ab drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b41ec0c drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b43600a drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d685a82 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f3ff0a8 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x409b73dd drm_framebuffer_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4146a9fd drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x421e7393 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43f2ee3d drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4577e740 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46c04692 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48356c62 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48e3862a drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49b34b42 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a90e42d drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4aa0a5d6 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b1928d9 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b49ca6b drm_connector_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bc5a988 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bf9774d drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d0eb1dd drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d9aa6b1 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e7989f2 drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e90d36d drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x502ccced drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50acfb8f drm_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50d029d2 drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52764389 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54a04857 drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55ba1413 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5646d022 drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5686f96a drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x595c239a drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59d87828 drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a3171bf drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b9715b9 drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c4aa7e4 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e440306 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f6e908f drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6050b553 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x612a9eb6 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6279443c drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x634760eb drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63bcec4c drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64e4bc47 drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6869b68b drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6870623c drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a35d521 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6aa6da9d drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c32d117 drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d7e5073 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dbaea21 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e526f25 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6eca3353 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f4b4411 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f65a838 drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f7d5a9d drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70bc818e drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x714427b4 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72f707ae drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73111d62 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x738381e0 drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74d3d2ca drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7554fc18 drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7597d46b drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7607945e drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76fb68cc drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x775fb78d drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78863733 drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x789a2cc6 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x793c04b7 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a1ccc84 drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a34ea97 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a79b08e drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ac08edd drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e98d29b drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e9b90fe drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f650fb5 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81c7ecb0 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82d4000f drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82f4d030 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8372a083 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83d5ccd5 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x846e31a9 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84c6a277 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85b6b282 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85e710d6 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x872a6b2f drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x877b9ec4 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87915195 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87bbbc1e drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x886186ec drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89d43a77 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a12ccdc drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a549586 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a952d42 drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8aeff398 drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cea7b31 drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e9c9558 drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ed26ded drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x904248af drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90c76f09 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93eea22c drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x941d50cf drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94f96a50 drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9500ccab drm_encoder_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9519780e drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95bb71ce drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95f54847 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9898e95b drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99591329 drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x997545aa drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a987569 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9aeec1ee drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d0fdc71 drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9db036c7 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dfdff0c drm_atomic_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ef02de1 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f6a5749 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f845c1b drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fa748f1 drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa008fc20 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1a84864 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa22ada68 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2fb477b drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3577d5f drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa40b89c5 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa41232a5 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4bbc56b drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa55d44e7 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6c80def drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa76a4b10 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7926017 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8321a7f drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9b3bb85 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa1f01b4 drm_framebuffer_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac4c89ff drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacbce6b9 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacca57a7 drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad8fa785 drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad96a7a1 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb345199a drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3b0a01d drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3f3da2d drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4016c0c drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4ad9ae1 drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4e1a180 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5dd0648 drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb63a0af9 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7996529 drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8d571e5 drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb96f6cd drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbedec7e drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbf611d8 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdaed8df drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdcdd0b3 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbede9f33 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc112406f drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1af0cd9 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc33f36b0 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc388038f drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc388bdde drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3be2810 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4139973 drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc66ec8e1 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc801a1c6 drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcafacfe8 drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb05a9f6 drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdbc88e4 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdeb4f78 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf366d40 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf559249 drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfd7ed9f drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13543cf drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd21af439 drm_plane_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2cd35d1 drm_connector_unplug_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd668a899 drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7809d0c drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd79e73f2 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd88695c3 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd88eef41 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8ce7be2 drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8e8bf20 drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb2a389a drm_agp_bind_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde861cf7 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe06209e4 drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe20ad490 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2951b52 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2c123e5 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe32ebf80 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe522d4ba drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5fcd57f drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe756a8f2 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe78985a7 drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe853da88 drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8936e2e drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9e7f79d drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea0cc670 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea841aee drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeadce1f4 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec98a58e drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee2bf350 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef04e4e3 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf089f2b4 drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0b618c3 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf19179df drm_legacy_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1f4e7e2 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2cc907e drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3a4aad1 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4223fc1 drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4a848c5 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4d28bf4 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5d32902 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7f36ca3 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf81e44ba drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf975813b drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb06be0b drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbf34871 drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcc135b2 drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd4d549b drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdee2cec drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe3bc0ae drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe53089e drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe564c0c drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00cb73a4 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01f6fe9c drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03689312 drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x050dec9d drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x057be9b1 drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x078ca4e6 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07eb36cb drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c458d09 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c9ffa4e drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d55f526 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e05fecf drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1009e205 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x170de0db drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1dea9c32 drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ebf1415 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f11a765 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x209e64e2 drm_helper_probe_single_connector_modes_nomerge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22f21a33 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27aee52e drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27f848ca drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29122722 drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2aeff547 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3050fd20 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31504994 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3170a8a7 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x324699f2 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34cac22b drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x350141dd drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37265aa6 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3982706b drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39ffbe9e drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f4a20d4 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3fb5f34b drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41c35eb2 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4336e314 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4456953a drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ad4cb2f drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b891de2 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53081cbc drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x532caf24 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54371c75 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54fe48b3 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5563d315 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55af14a6 drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55d4a828 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f0071f2 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5faee6db drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fd0089f drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x673e98b5 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x678f6cb8 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x681000a1 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69c4ad87 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6bc5bc62 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f971705 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72fac4c6 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x763ff7c4 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77269d6c drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7823cd97 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79047a50 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79bcf372 drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ad546f0 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c0b2203 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d6db50f drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d98ac08 drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e741202 drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8355bb0b drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8564f969 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8611be2d drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86963a2d drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87271994 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ba58cf4 drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d6bca23 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ef5f238 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90c9bfa0 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90ec0b2a drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x915e918a drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91f6ac76 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x925534dc drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9345ac2f drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9727022e __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97a63954 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97f36b52 drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98e90136 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x990af3ba drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x997c624e drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a1eac14 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9acb1887 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b8126f3 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9dc8173e drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9dda9be2 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9de1f55a drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa324916b drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa381690d drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa59bd22a drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5c01a30 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7593beb drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xadc16772 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf082ea3 drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb03eeaaa drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb27afeea drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2bae9cd drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2c834ea drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb30c78ce drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb66299d3 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba132ef8 drm_helper_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbabead3a drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbac20408 drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbac960a3 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbdd3aaf2 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc542c883 drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5d53fab __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc66f96f6 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7355429 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc79781af drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd21fd9e drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce4b0a57 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd09bfdc7 drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd205c9ad drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3055841 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd347e9c6 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3f40404 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd401bef5 drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd46e0942 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd489157b drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd67860d1 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd74b6d89 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd95eb273 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe13bbe78 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1ed34dd drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe269ba05 drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe45a489b drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe47f0b4f drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea157bbf drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea4ea020 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec0d350b drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec6be356 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed5b9ba3 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef2b434f drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf27893d9 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4d71099 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa992398 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe499c16 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0786c948 ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0a554b9b ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0b3ca9c2 ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0bab7f47 ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x125f9ce7 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x129ef82a ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132b05be ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x13b222c2 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x13b55807 ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x18007b2d ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1940e4cd ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1b108bf2 ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1c9ab4bb ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1d64d7fa ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1e9b14ab ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x22ec80fe ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x24765c33 ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x266d8a60 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x296363a7 ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x29896ad9 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x35c98dc6 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3a669144 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x41b2a672 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x42d7f49f ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4400f2c1 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x49428a0f ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4acc5369 ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x50e7c500 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5544d753 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cf59609 ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5fc73d90 ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63978d02 ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67b1d568 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c8dc6bf ttm_vt_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6e875de9 ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x709d01a3 ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7f432728 ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fcfb138 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x836d8fd0 ttm_suspend_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86f66b82 ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x946d9ea3 ttm_write_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x96b9c739 ttm_agp_tt_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d0eb91 ttm_ref_object_add +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9f71c725 ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa05ac44a ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa203fdd4 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa25c2f32 ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa336e156 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaccd1776 ttm_agp_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb8484f85 ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbea1c151 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbfa7c2b1 ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf49f835 ttm_suspend_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcfb88d90 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd222a9bd ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd458b926 ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd5aee78c ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdcaf5a10 ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xddf9aef1 ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdeab016c ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdf66f11b ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe45be179 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe61220fa ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xec803aaf ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xefaa0bd0 ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf13f8ee5 ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf4ce7c51 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf84446bf ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf94e0b72 ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfb6348bd ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x1f9beb8d vmbus_sendpacket_ctl +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xa5e8fffb vmbus_recvpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xdda3eeb0 vmbus_sendpacket +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0e2a6864 sch56xx_read_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0f5877d4 sch56xx_read_virtual_reg16 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xa7449de3 sch56xx_watchdog_register +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe5022f95 sch56xx_read_virtual_reg12 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xed1d2a08 sch56xx_write_virtual_reg +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x18b35baa i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x9faae56e i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xf74b033e i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x80af12d0 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xf55ff127 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xe09684d5 amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0212eec3 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x12e79b38 mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x2027e45b mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4b00130c mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4c84a437 mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5f53e532 mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x61a2c73c mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x643ea0eb mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6e487a30 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7121e1db mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa1ab752c mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb2ec82c3 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc64ea742 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd2298aea mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd50377e3 mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe990bbbb mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x3058babb st_accel_common_probe +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x73dcace4 st_accel_common_remove +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xc71f5023 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xdd3bdc2e iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x5da5ecab iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x78519145 devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xc00c70ed devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xcae0e70e iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x52d676f7 hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x53a0abcd hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x7e3f609a hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x7e65a7c7 hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x830d383b hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc3bf6760 hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x2a2fbf26 hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x52c3407a hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x539b02b6 hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xc83f16b3 hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x17f1d760 ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x213288c0 ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x70259fac ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x78389c23 ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x928114f4 ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x96ba5b80 ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xa1ce1f98 ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xe51de647 ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xff59cf6b ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x34cc9011 ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x3d0890dd ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x6ef27eea ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x7a9d2a71 ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x9e475cce ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x010c4d8a ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x570336ee ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xb9ad1d9d ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x00f563cf st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1547b941 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2298a4f5 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x381d5496 st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x49d6411d st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x63e5e6cf st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x685d130f st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x6b294c90 st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x6fef62d2 st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x817bbabb st_sensors_get_buffer_element +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x86908e3a st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9c18b51b st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa99d7ac3 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xcf574c0a st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe9b43e68 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf4a17d34 st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xffab34e6 st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x220ba7ec st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xa43b8fcd st_sensors_match_acpi_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x381a4fce st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x1d75f98b st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x33e3766d st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x06edb8b9 hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x31824099 adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xd2885227 adis_enable_irq +EXPORT_SYMBOL drivers/iio/industrialio 0x0878c91c iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x13a58582 iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x2754fc2c iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x39c69ac7 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x40fd02e4 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x44adb759 iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0x47adc4c3 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x4824cdd5 iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0x60cbaed3 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x650e341a iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x7bdfb185 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0xbdd67049 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0xc83aa868 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0xcdfd8805 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xd86793bc iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe4074c9d iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0xf729f6a5 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x5f26e0d1 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x701e830f iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x35b1deea st_magn_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xf57c8955 st_magn_common_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xc670d102 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x02f01503 st_press_common_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xb6543ff5 st_press_common_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x049ace30 rdma_addr_find_smac_by_sgid +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1edc4064 rdma_addr_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x41fc25f9 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x49b7c327 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x4ae67dc3 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x9d9cabc5 rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xf23af65a rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x17206ec3 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x183098b1 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x22b45b14 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x386f2061 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x601e0aeb ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x653928a0 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x95558e12 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9d4d7218 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb963de80 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbd9c75f9 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc421fa26 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xccf51e88 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdbf3a476 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe0f85ad1 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe2078f1a ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe4e287ae ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe999662c ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xebc62571 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08ed600a ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x091b466c ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0dab003f ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12c633f6 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x138e4f49 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14e66a19 ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14ec0ca8 ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1743e105 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1af6bf5b ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e09ead1 ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x235ee920 ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24bc4d8a ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26a61003 ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c917961 ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x386f0b71 ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38dade8d ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3993dbfb ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fddec51 ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4044243a ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40fbf473 ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4582419f ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4667d501 ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48a3c390 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x492e295b ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4bb47cb4 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ca7a128 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d200a00 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d48dd56 ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ede0b4f ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x501eb4c2 ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5369bab2 ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x583c9f1d ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58e8165b ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58ed7316 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c87e614 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64a62aae ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b5bfd44 ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6fb9e3de ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x710ead01 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c8377ac ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fbdefdd ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fcb1615 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82430b18 ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x835fc082 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x858e5942 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x863f0ed1 ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x867f2cad rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87879113 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87f6c393 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fbb379a ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x907f3538 ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9180c040 ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x967830ef ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x972204b0 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9769f05d ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9945f1b3 ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9fcab11b ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4691e93 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa71bc4ac ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa86933f6 ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae257779 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb288795c ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3717f8c ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb375f069 ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb55d3dab ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba5e4b3b ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb315a98 ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb4bf190 ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb6dcd9d ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8c80eed ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca63483a ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3cedb78 ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4734b26 ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7f405f2 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8573516 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2d5aac5 ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4741f64 ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe494c361 ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea7644b6 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed842156 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5868d6f ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf98d2ef1 ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe001e60 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x151c707c ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x550cdc94 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x56b9172d ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x597d3efa ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x72290d83 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x78db8b04 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x887d2b4d ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xa0f5dc87 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xb80e14d6 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xb8f23096 ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xd1452146 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xd2ddaa8f ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xdb38786e ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x05f51c4a ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x070657a4 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x2666aac7 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x287d1e73 ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x75519871 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xb230d5e2 ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xbbca13cd ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xc5c40334 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xd57fae4b ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xdefc3e7c ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xfea90769 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa21a11b1 ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc244710f ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1d99ab8e iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x24e091f1 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x29c55284 iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x38b79ddf iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x41ef0942 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x50a16402 iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x56f71888 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6334beb4 iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6d3d35f1 iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x71bd6ffa iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7ce852a3 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x81404a17 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xaa373f7e iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc52e29ef iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe2fc6ad8 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x20a73667 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x29f1b514 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x31fc67d7 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3427e3f2 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3ce90280 rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x48de2de5 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5f596bd2 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6661d7dc rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6c3905d6 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7085df72 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x723cd12d rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x780de9f4 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x85d09629 rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x998fa7d1 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9cb870da rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9d4a5fd0 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc8bf86ef rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcc0d1043 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcc1867fa rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdab54cc1 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xecb15de9 rdma_reject +EXPORT_SYMBOL drivers/input/gameport/gameport 0x2ae6523a gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x32102c88 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x4adbbf1a gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x78176dea gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7b71592b gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x83037707 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xc00980ba gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xd3389da4 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xf21c451a __gameport_register_port +EXPORT_SYMBOL drivers/input/input-polldev 0x1b634b9c input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x532947ae devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x64c3216f input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x6def1805 input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xe77c0b90 input_register_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0x1e333dbc matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x3d2a627c ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x924c25a5 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0xdd597253 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xa42ccd9e cma3000_init +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/sparse-keymap 0x02ad5256 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x3a1af925 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x861a0b49 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x88550b5b sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0x98472136 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0xc3f8892a sparse_keymap_setup +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x547708bd ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xf23099e7 ad7879_probe +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x029455bd attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x097e92a8 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x24f6f625 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x522c970a detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa2e9a619 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa38241d4 capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa7c4fd6c capi_message2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa86250e4 capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb772099f capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xbdb3ba4b capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc10fe128 cdebbuf_free +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc6efe9d7 capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8ad9bd1 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x074028d5 b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0a160cb7 b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x14e40393 b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2c9f96b9 b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x3bedf6cc b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x58dc68e5 b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x5f0d300d b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x7f27f824 b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x9824941f avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x990e7c5a avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xbc09f09b b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xc7273f65 b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xda0fc9fe b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xeb7bbb31 b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf2259076 b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x17319639 b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x2d9572e6 b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x375b8b49 b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x43bbb6ee b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x56179763 b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x643eabf1 t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xb295083c b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xb767b7f3 b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xbb759037 b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0x29562993 b1pcmcia_delcard +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x0127f048 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xaa0fb6db mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xb65f556c mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xb89bb2ab mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x6d5328cb mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x95030ac8 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6fe1ca04 FsmDelTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9f987c85 FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xa1bc94b9 FsmInitTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xe40a8a14 hisax_init_pcmcia +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3584ad2d isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x57cbe502 isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x69cda056 isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xc4202874 isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xeeb3679a isac_irq +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x46cdb791 register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x8943f929 isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xc2e99f2e isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x201979ee mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4cf19fb3 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4f0bffae recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x54c295d6 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5aca2edc mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x61d785da mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6228f9f7 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x79d06d3f recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x82926197 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x862b2399 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x87a61657 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8b6a758b mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8b75aad6 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8c049ca0 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8ea579ab mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c331e54 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb2c07610 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb2fe4679 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb435e24b get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb64aa00d mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdeeda3f3 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xed1ccaf3 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf8265f3a recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/md/bcache/bcache 0x0aad5ab2 closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0x10c8cf2a closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0x10dc0d06 bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0x66d28e22 bch_btree_iter_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x6969b5d8 bch_bset_init_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7b55ca4f bch_bset_fix_invalidated_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7f2a56c0 bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x889d88d5 closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0x9dd90f94 closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0x9e8b3cee bch_btree_keys_alloc +EXPORT_SYMBOL drivers/md/bcache/bcache 0xab2d2b84 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0xad29a6f5 bch_bset_build_written_tree +EXPORT_SYMBOL drivers/md/bcache/bcache 0xaec09a2b bch_bkey_try_merge +EXPORT_SYMBOL drivers/md/bcache/bcache 0xaf77343c bch_btree_keys_free +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc04554f7 bch_btree_iter_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0xca580595 bch_btree_keys_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe47e0829 __bch_bset_search +EXPORT_SYMBOL drivers/md/bcache/bcache 0xecf7cef9 bch_btree_sort_lazy +EXPORT_SYMBOL drivers/md/bcache/bcache 0xfbf30701 bch_btree_sort_partial +EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL drivers/md/dm-bufio 0xa7978f56 dm_bufio_forget +EXPORT_SYMBOL drivers/md/dm-log 0x4380302f dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x5e570e04 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0xbafb9887 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xc2b34f26 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x14fd02aa dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x26c59930 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x3c7ec269 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x55679fb0 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x615bc68c dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x8837d03f dm_snap_origin +EXPORT_SYMBOL drivers/md/raid456 0x70896d32 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2744d09a flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7e1b8f81 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x906703c4 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9dff9b3b flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xac02f7e0 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xac0fd580 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xca084ae1 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd561043d flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe6b90889 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe7c6e5f3 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfe00462d flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfe6b7502 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xffda8ea4 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0x30cb4cd7 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x5b15369c cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0xbffceb03 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0xe27d5b58 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0xf2ebab08 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x46a7320f cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x4849922f tveeprom_read +EXPORT_SYMBOL drivers/media/common/tveeprom 0x4c8fe217 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0a49d99f dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x16e3c215 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x17ffc7bd dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1e5f0bdd dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2907e8ed dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2cf288a0 dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2eca698f dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3ee8cfed dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x48eae2f5 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x499b79be dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x49b50c9e dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x56a33958 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x58c0b3ca dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5a6f883d dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x62452eda dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6367c49f dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6ed50b51 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6fc6213c dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x70de704a dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7d2d1d4c dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7e693aec dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x93b1fad6 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x94d9e087 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9ab4d06a dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9e553013 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9efdce53 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa898c6d8 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb6dbd8d5 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc16835b1 dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3ac6c86 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc645fbc3 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc775d912 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd9cbe3cc dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe167fe57 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe92ee976 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xea5fddbc dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebd38af9 dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf663edbc dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts +EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x0a5aa631 af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x300f1ab7 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xe97e240b atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x28e7027a au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x802cfb12 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x842079e9 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x8c189aa9 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb7e34b50 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xbecf6f76 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd4d496f2 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xebb45f71 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf8f87f2c au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xde91a2d6 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xb773df24 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x5c9a2078 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x998fad68 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x9303eca4 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x1dabdd80 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xc4b99411 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xfd78f1f5 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xa0a40427 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x2eae65c7 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xe33dc386 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x6eeb836d cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x668a6560 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x74d85678 cxd2841er_attach_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x8cc90fd4 cxd2841er_attach_t +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x874862c6 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xb43c1ac9 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xb74f5676 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xf29ff3dd dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xffce308d dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x060af8e8 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x117e8b0d dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2b50b1b5 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4cc71266 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5a1002cd dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5c7a1bce dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x68b6a9c6 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x79ca7bcf dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7dc5a781 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x814352b9 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x92a4be85 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb9b72919 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xca9dace4 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf4002c40 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfcd7e9d8 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x8837df61 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x0da92736 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x1cfa1d00 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x26adf483 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x7620a064 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x86ee3993 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x9d9a93c9 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x85d2cfbf dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x96be66e6 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xe44f3a68 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xf46a7383 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x4e0fbd11 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x367c8410 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x02d5bc6f dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x61d59d1c dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x8b2a195d dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd68d2c25 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd9cc098e dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xbdc5d82a drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x63d252f9 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x694f6164 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x6f781581 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xdf17493a dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x654fd89b ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x089d33ce horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x2d39a3ac isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x3e8aa93c isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xd4ce127b isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0xf67be251 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x28a1d696 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x48a3a7d8 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xe51e4ca5 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x3d3e02c6 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x4388e6ad lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xbe40c2cf lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x545bc660 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xe036fa30 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x27336f42 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x4cd32a3c lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xc8c9ac39 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x120a7b78 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xd56dd4fd m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x30dc67b9 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xe9247621 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x2a0c337d mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x9e60568b mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xbc711ef1 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xaa661f7e nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x5b1b7da8 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x11b8ef4b or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x19bc8b60 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xb236e823 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x7d71ae5e s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x737239f4 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xf87e332a s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x1c5c1c79 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0xfc57e993 si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x26d8cfb7 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x3b04bb45 sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x68b17984 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xca60d743 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x869e7bfc stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x296a86f6 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xfb044581 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xd7550b23 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x4eb686e9 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x89979699 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x8aceae83 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x2638da16 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xac273bcb stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x0ea6216a stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xdf6f8f9b stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xfa6c4ccd tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x1abc403e tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x00dd9d33 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x1d47dae3 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x2952728b tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xa641bc05 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x9c8916ae tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x31202024 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x9081b9df tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x46b877b8 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x6ab43527 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x4d54e63d tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xa99b7069 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x2bf5f38a ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x1aae051e zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x6638ac7d zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x15978397 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x32a82496 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x839a8b21 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9ce01346 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xa4bece4a flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb41ffad2 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb80c85e6 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc0a88005 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x08f45329 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x58a66a81 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xb17f3cd5 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xf239095c bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x5a1a7ba1 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbc72b615 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xff39986b bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x206b5dcd dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x2c6cf7d3 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa72e7f85 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb702eae4 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb83f80bd dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc19100c6 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd6dba3d6 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xda976e0e write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xfc1f3b3a dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xd1be1b0d dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x1ec79a55 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x90ac5032 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x99c54235 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xa3269a84 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xb619de61 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdbcd9d37 altera_ci_init +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x14eb8f60 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x427c2f94 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x6d5b9ff1 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x93cdbc85 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xb58bdaa7 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xb8b64d30 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xff26d5ec cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xa2327eae vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xe6a01e7b vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x1371c527 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xa97d85f3 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xe27e2fc2 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xe6a23aed cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x0c8563e8 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x10562f71 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x35b57c8a cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x963c7292 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xa7c47a13 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xc71a4f71 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd9503b66 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x016635f8 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0d5e50a1 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x14e32d43 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x27e9601d cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x371043f6 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x50a5bb2d cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x56cede3c cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x64ef0625 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x71829013 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7ebb910e cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x93f0df6c cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x99862280 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xad99d0ea cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xadfabfa3 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc5c863ff cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdbd0c437 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdd5574cb cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe26d32bf cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe952a36b cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xffaf1405 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x118e46a1 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2034454c ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x21fe44f4 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x37904a4b ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x444c383b ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x59c0ec96 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x63a95f24 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x65940ec6 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8ea54d35 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9a529edd ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9c2da8f9 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbdbd2a42 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc424d014 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc5864b0d ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc8147780 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf4c059ff ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfbdcd9c0 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1458061f saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1c8374e9 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2f66af80 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x34add0b5 saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x40ddbfc4 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4b80f76c saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x751a8664 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9f14d0c2 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa6c0d3f7 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe3d20558 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe8ce6229 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf2c0d12e saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x4e35e01e ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x8c1496cb videocodec_register +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x9683adc5 videocodec_detach +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xe357e02a videocodec_unregister +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xfed84a20 videocodec_attach +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x39d7348b soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x3a8d8f5a soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xa1735df8 soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xabe85eb2 soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xb3ad16cd soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xc8b138f4 soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xf5c9e3dc soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc +EXPORT_SYMBOL drivers/media/radio/tea575x 0x0fd8a208 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x3387926c snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x41c15956 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x509472fc snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0xabdf7c0d snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0xc3ff8bbf snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xd258fa6a snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04e4e6d9 lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x30b6e946 lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x469f6e6c lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x8679b35d lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xc3e569eb lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xc81a9bac lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xcea63f86 lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xf6252ab2 lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/rc-core 0x47f9e2f0 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0xdf3c4574 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x6d94bfd2 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x89d82b90 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x62199c59 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xb96c5a39 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xf41e5ebe fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/max2165 0x1a5f68a3 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x60844edf mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0xcd05dcdf mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0xf54d6bfa mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x7a0130a5 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x5ab2d8cc mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x03ae338f qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x9f8339f3 tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x21c5eac2 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x41cbf070 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0xdb94e32d xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x1d5516e1 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xda54adc0 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0e15c7bf dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x324346a3 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x4660ce15 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x4b99a829 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5433ee8b dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5714c45f dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6711b60e dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8d5310a0 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xedc5c315 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x0029481a usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x5d6a4cbc dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7501d36c dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x758e0a24 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x76383c88 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x96bab935 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf9192e1a dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x53c5fd05 af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x02474210 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x37bfe390 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x42dacdd9 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5394bf24 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x56128349 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x645f7f07 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6d9515f8 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x80a0f6d9 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9c27daf6 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfa405847 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfd59642d dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x95a100d1 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xb21698df em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x0e06ee89 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1a331f1e go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x21e8a939 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x2c5edfba go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3afb42d7 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4054beca go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x82ff67e7 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc238fb2b go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd5437176 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x0b7e11d7 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x12f9165c gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x30897cd4 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x788a0ee5 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x7db0ad63 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x935aa015 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe28567e7 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xfa43ea01 gspca_resume +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x1edc1078 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xcabe08d8 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xf1a56a60 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xc853c1f7 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xe394c03d ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x6d1bbbb4 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xbd2c43f7 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xcab7ecee v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x1fbfd1d3 videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x2f412e8d videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x69f93ffc videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x6a551cd6 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x8a729964 videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xd023ce3c videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x55604f15 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x8d31ccf0 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x7abd44c8 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x85fade72 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xa3fe692f vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xa8e38200 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xb14f322d vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xdeb364da vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0xfb9fe58a vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x00dd69f2 video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x00f76d03 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x01b43f0f v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x080d3a53 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0b52ef46 v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0f3ffc08 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0fef90e2 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x18f42278 v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1956ea9f v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1c1cfbba v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1d44a76a v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1e6c7e84 v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x33c32097 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3965d665 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3f107abc v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x44bd1fc0 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x48849811 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4a9a66b3 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4aa68a99 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5118c8e0 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x56c0a823 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5b95ad30 v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x628f0a68 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x63137ae9 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x64c039b9 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x701beb66 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x728d7db0 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x769173a4 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7cb86ec9 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7df8a301 v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x80ef5bba v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x864b402b v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8a7a0513 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8ced444c video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8ef577d0 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x918f9f0c v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x91d78c7e v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9530e34e v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9805e2ce v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9f2593d5 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9ff57dc8 v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9fff3886 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa6cab48c v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa8238560 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa98ef9f5 v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaa16bee5 v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaa869520 v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xab6aa6fb v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xab7197f5 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb04f834c v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb3ebcfbe v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb57a8e58 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbd9e4a61 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbf9586a7 v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc505da30 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc5acd259 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc74aea1c v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc87274b5 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc8b545d0 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd0f05815 v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdde1db4e v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdf9e6571 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe04e6080 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeac15c57 v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeb26daac v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xec67db31 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf0818a8a v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfad5b655 __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/memstick/core/memstick 0x28370d01 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x2c85bbce memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4385d3b5 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4aa48cb3 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x53283779 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x854eed86 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x8de070dc memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x91913956 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x9ccfce14 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa35b78be memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa5987a36 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdab7d744 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xec5e9159 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0198449d mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x04ec99fd mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0f886781 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2024b65f mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2ca325aa mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3dbe2437 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4041d3f4 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4b59a97d mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x52bb776a mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x55c885a8 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x56fe2ea1 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5bc9ebfe mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6d5dcb08 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x76e51846 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8a4711b4 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa932fb21 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb5de0973 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb68c131e mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb7fc633e mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc3d799ce mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcd1dc0bb mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd005f0f3 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd3f4757 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xddfb54e9 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xde01bec7 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe233ef61 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xeb7d594a mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf58ee94e mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfa29802f mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0cf89f97 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x111dad99 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1936c7a9 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1ef18dc6 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2051dad0 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2ec24410 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x36b19f7d mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3c4b3f7b mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x43e15c41 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4f4445c7 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x68a350f2 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6a1266d3 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6c140581 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x738e2c24 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x82ea7565 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x84827f34 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8a1e3388 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb529ff7d mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc79c22f9 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd0db1dd6 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd4714e95 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd490fba2 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd7275658 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xeda7bb26 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xeff5e78e mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf25ea152 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf61c30f3 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/mfd/cros_ec 0x1b1b12e9 cros_ec_register +EXPORT_SYMBOL drivers/mfd/cros_ec 0x53cb4b3d cros_ec_remove +EXPORT_SYMBOL drivers/mfd/cros_ec 0x756e1de5 cros_ec_resume +EXPORT_SYMBOL drivers/mfd/cros_ec 0xa12b000b cros_ec_suspend +EXPORT_SYMBOL drivers/mfd/dln2 0x27cc598c dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x78b5224e dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xc5b9b94e dln2_transfer +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x7e4972c8 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xac460db2 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x20a3cefe mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x64486857 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6f452efb mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x83ae153e mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x90c371ea mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9f6fffb3 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xad3d67f6 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc2a78203 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd8a7ab46 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe4cede4d mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf7dfaead mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 +EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 +EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib +EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led +EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw +EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x6658b9ad wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0xdc9f969c wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x4aacf648 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x77a7fdf8 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x78964dd1 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xe7f44ffc wm1811_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xb5412eb3 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xce7db532 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x075983d1 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x7084fa08 c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0x79285fdf c2port_device_unregister +EXPORT_SYMBOL drivers/misc/ioc4 0xd68f99e4 ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0xfa8ec537 ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/mei/mei 0x0b3c2389 __tracepoint_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0xafdfce69 __tracepoint_mei_reg_read +EXPORT_SYMBOL drivers/misc/tifm_core 0x25f085a0 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x269d2bd7 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x351074a3 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x463c93bd tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x484f2ba2 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x4d6e535c tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x5c1dcdae tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x87af00f4 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xcbb4329c tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xe3a3f9c0 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xe82229a2 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xfdc9d79d tifm_add_adapter +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0xcafaf0c6 mmc_cleanup_queue +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x26e7fe29 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x30f02f46 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x41220309 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x4f12395c cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x5e626ff2 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x8178c520 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xaa652db1 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x17b690f9 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x7431ca21 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xb9f3e519 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xd34a804a do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x4e630935 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x600b741a lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xf40e8482 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x5c0d0af9 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0xe6911604 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/nand/denali 0x07bbf2a7 denali_init +EXPORT_SYMBOL drivers/mtd/nand/denali 0x762ef0be denali_remove +EXPORT_SYMBOL drivers/mtd/nand/nand 0x2708442b nand_scan_tail +EXPORT_SYMBOL drivers/mtd/nand/nand 0x3908b311 nand_scan +EXPORT_SYMBOL drivers/mtd/nand/nand 0x52c2ea66 nand_unlock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x5dd52915 nand_lock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x802db298 nand_scan_bbt +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/nand 0xa850c4aa nand_scan_ident +EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x2899f1fd nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x4c6e2df0 nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xca5756f5 nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xf5624758 nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xf8f36d67 nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x8cfcf75c nand_flash_ids +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x1c9a9abf onenand_scan_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x8937f514 onenand_default_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x94837732 flexonenand_region +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xaf5e7763 onenand_addr +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0c13c76d alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x150a7f6f arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3317b261 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x38bd87f5 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x495999eb arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa63bfe42 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbf88562d arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbfa400b1 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xdeb7010c arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe9abe347 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x6b103606 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x7c6c7c0d com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xa193c051 com20020_check +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x00e01b9f ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x150fa70a ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x27896459 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6159039d ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x76bbe9a1 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x81e39e06 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe23ab810 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xeff642e8 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf66a7246 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xfe526e85 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x09a9662c eip_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x233f850d eip_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x5a914513 eip_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x5c067ff4 __alloc_eip_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x88e7a4cf eip_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x9470b128 eip_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x95523da7 eip_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x99c03fd7 eip_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x9a0b5757 NS8390p_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xa50e9905 eip_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xd8a30b9d eip_get_stats +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0x33cfa64d bnx2x_schedule_sp_rtnl +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x9627a446 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0c1f413d cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1c572b6f cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1e9b5b53 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x34846b8b t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x36dd7159 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x384aa9d3 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3dc300b0 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6e91689e cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x831529af t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x85bcdf15 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa441590c t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa9f0313c cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc14629cd t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd6eebf7f cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe4175a6a t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf09729f8 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x123baef5 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x153f0ec2 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1d4b718f cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x264669cb cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3273364c cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x35d51ca9 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3d5f8373 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x57707dfc cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5b21207b cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x661a6af1 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6bff3a30 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7167875f t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x75728383 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8006675b cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x853313b7 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8635a134 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x871f2d09 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8aa3ee5a cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8cbb52c3 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8da992eb cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9519506d cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9b2df65f cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa445b307 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaed9933b cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaf7a4d2b cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbc48d585 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc8051aa8 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd81199fc cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdf659087 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xec29c9d2 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xedad6185 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf6f93e62 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf9c65e58 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfe333f6e cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x31e97fbf vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x54d8514b enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x58436498 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x6ae86d26 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x9f508463 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xc2b85fad vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x79b6bd7f be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x85f021eb be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x031b80f1 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x049a131c mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f8a59e9 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40c59fc5 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ca84eee mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f5c4f42 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x515c641a mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55230c74 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60e23f14 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x646c8176 mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a459ad4 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c98b37c mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73e35a52 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76739da2 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8bfeb04a mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ead3758 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91903dc9 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9565c902 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96251507 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9cd682c9 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9de65066 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa408f848 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6d05a40 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa998cedc mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9d1f42e mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac5c0c33 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba49d051 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfcbe6c8 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc121f749 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4a1d44c mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7030494 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcef92e41 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4535885 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd47d8619 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe90a3393 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeaabe892 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebae9396 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfaab6e19 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01965cdd mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05060540 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0857aabd mlx5_get_flow_table_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb7287e mlx5_del_flow_table_entry +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15d55e45 mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3255a73b mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32db18ef mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3feaa985 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42b46fb1 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44b1d45d mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46915e40 mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46f3bfd6 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d019a47 mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bca3e33 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71d212cc mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71d5fc22 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75bad477 mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77eb783f mlx5_modify_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ffda502 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94bf4630 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95fccd07 mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa112ffba mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa750ac31 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7b003e3 mlx5_query_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9c35fd4 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaee6d378 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaef30ecb mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf53d396 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2f0aed0 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf49da30 mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3feaf66 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc528a3ec mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6a57a56 mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd24a79c3 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd33d4677 mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8435430 mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4623961 mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe46c8366 mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6af33e4 mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc728a49 mlx5_add_flow_table_entry +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfcdf1604 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfebeeb3f mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a2a4597 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7995964e mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x87c09654 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8f7f70bd mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb70bad67 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcb5c8545 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe27714b8 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xed7cf89c mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee8e0771 mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x1e0f3276 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa209d1af qed_get_protocol_version +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x0472df57 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x1f803393 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x32738950 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xb8c3f218 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xc065af74 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x32ec02fd sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x7054f55a sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x92b8e055 sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xb4939081 sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xd756da1e sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xe9a2f20d sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xf146f4a4 sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xf17887ab irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xf6446a57 irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xf69e37b1 sirdev_set_dongle +EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mii 0x1a1b0dae mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0x2263afb5 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0x317ca811 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0x63b42007 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x6cb4703a mii_check_media +EXPORT_SYMBOL drivers/net/mii 0x930c0911 mii_check_link +EXPORT_SYMBOL drivers/net/mii 0xc35eb1ab mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0xcfc3b329 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xb1ce0985 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xd0d517fa alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x0488ab48 xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x07da191a xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x71d371bc xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/phy/vitesse 0xd10b9fd5 vsc824x_add_skew +EXPORT_SYMBOL drivers/net/ppp/pppox 0x2ca7960e pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x5a2a4f47 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x7b529306 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0xc2b6f075 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x05e8d9f2 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x146e8071 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x4f7c26b9 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x6f2a483e team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x89505cce team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x9505f3fc team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0xe961cf56 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xf595d542 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/usb/usbnet 0x050935f5 usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0x0f8204b8 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0x2ace6de4 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xbdc040c4 cdc_parse_cdc_header +EXPORT_SYMBOL drivers/net/wan/hdlc 0x19b77659 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x34a89722 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x41fd5c8d attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x4ce18bae detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x778e5667 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x9970af6e hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa37e16a1 hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb94fb24e hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xce7e7d09 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd5fe7ccc hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0xe55f1eb3 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/z85230 0x10c78988 z8530_dead_port +EXPORT_SYMBOL drivers/net/wan/z85230 0x2485b17d z8530_sync_dma_close +EXPORT_SYMBOL drivers/net/wan/z85230 0x2fd32d6f z8530_sync +EXPORT_SYMBOL drivers/net/wan/z85230 0x3277e74f z8530_nop +EXPORT_SYMBOL drivers/net/wan/z85230 0x5cd24d29 z8530_hdlc_kilostream +EXPORT_SYMBOL drivers/net/wan/z85230 0x758788d4 z8530_sync_open +EXPORT_SYMBOL drivers/net/wan/z85230 0x80404293 z8530_sync_dma_open +EXPORT_SYMBOL drivers/net/wan/z85230 0x94788657 z8530_null_rx +EXPORT_SYMBOL drivers/net/wan/z85230 0x9a9ddb58 z8530_channel_load +EXPORT_SYMBOL drivers/net/wan/z85230 0xbf5c4caa z8530_queue_xmit +EXPORT_SYMBOL drivers/net/wan/z85230 0xccc8a284 z8530_sync_close +EXPORT_SYMBOL drivers/net/wan/z85230 0xcff4d41e z8530_shutdown +EXPORT_SYMBOL drivers/net/wan/z85230 0xd4ffebf0 z8530_interrupt +EXPORT_SYMBOL drivers/net/wan/z85230 0xdf297a18 z8530_sync_txdma_close +EXPORT_SYMBOL drivers/net/wan/z85230 0xe3d80064 z8530_hdlc_kilostream_85230 +EXPORT_SYMBOL drivers/net/wan/z85230 0xf8c742cc z8530_sync_txdma_open +EXPORT_SYMBOL drivers/net/wan/z85230 0xf8d25297 z8530_init +EXPORT_SYMBOL drivers/net/wan/z85230 0xfacd5c03 z8530_describe +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0xfb75de01 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/airo 0x565f1ca3 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0x8501c59b reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0xd8f20797 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x33c02f01 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x43aa8021 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4f01b84c ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5a7825c9 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6ee30523 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa449587c ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xbebba983 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xcb6d24bd ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd6ce4322 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xebf01832 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf6092098 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfeddaf09 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0779f6b0 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x14145b2b ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2087e70b ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x228ff2dc ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2b47d147 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2c2942f0 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3b8a1e54 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x462ebc25 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7de306ba ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x80ed90e9 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x93a5ff4a ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9e7b28bd ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc577957e ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd2364155 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfe11df4f ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1475a61b ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x15c7c52f ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2f98b18d ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3972f90b ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5469560f ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8f715ac3 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc3a0f1fc ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd429877f ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xdceed900 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xed4065e5 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf63781da ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x37b13741 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5189c9e7 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5468e90b ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5718edfe ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5ce9a8ee ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6422a6f0 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7a3b99ed ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x83a88a9c ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x85930da1 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x907fd112 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x943f7611 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x94975497 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x99b607fc ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9b2b7f7e ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xace9c1fb ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xadc7eb70 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb3a29e96 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb5131b2c ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbd742879 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xde6bf973 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe207fc9c ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf44f620f ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf98f6979 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x018b163c ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0348b830 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04d91bb1 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x07030c95 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x07f1452c ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b377b38 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1932a1f7 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a2957c4 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b2bc779 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b393fd2 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b73d13e ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1cbcda38 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x21be0d21 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x254962d6 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25aa5348 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a744865 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b7184e0 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2fac69c8 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x314899ee ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x33497e3f ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x334ddaef ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x353213e8 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x36cf65fe ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37dabfe6 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a8a538d ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3bd5207a ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42ecf6dc ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x43a1c6f7 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x482a4710 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x483a8ffe ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4bca9b3d ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5215c9e2 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53b84faf ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x55287b6e ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x598e3fa8 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c371843 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5d44961b ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x606f6ad4 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61dc7c46 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x625f3eac ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x63dfa1d3 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x651a258e ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6920618b ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6bda0fc4 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f1a7fe1 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x75c08c91 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x788311ca ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7b6e1da5 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c648261 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7e0747d2 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fb80972 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x80409204 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x806fccfb ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x82cff39e ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x87c595b2 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8a4078cf ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8ec04faa ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91cd6598 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9603ed82 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x96418a36 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x975e8cf5 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98996a8f ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a403f78 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a92c9c7 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ba5d843 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9e6feb54 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa1c4b606 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa29c5ff9 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa56f5d1e ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6913daf ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7f8fccf ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa8589047 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa760315 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xab56fe69 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad7e930b ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xade22ae1 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb046d96a ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb05fb469 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb5ac8208 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb8051364 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb8b9b3e0 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd7e3c7b ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbdafbd6e ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc123bf12 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc1637695 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc1ef9e26 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc20a6a14 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc2f787a6 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc49a2f19 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc652a3a0 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc7ff8509 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb8041fa ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd2b053d ath9k_hw_request_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd0e93a92 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdaf14f53 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd58b9e3 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xde9548d8 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdfde7fbb ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe01b6107 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe1a6e3f4 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe434a336 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef962845 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf351e38a ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf67e7a98 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfbfdbd44 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/atmel 0x57cf8783 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0xb9781d2b atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel 0xcecd9339 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x00b7f0c3 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x0ada1d4e brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x21a44efd brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3cff1b26 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x460b1ef2 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x49c15451 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x8743b4d2 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x99d02ef8 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xcd17e071 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xcf929d81 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd0ee8cf6 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xedfa7e4a brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xf0d8da96 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0664b781 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1b99c933 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2172c827 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2995864a hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2ff05244 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x322e3ab5 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x33f3cf14 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x38ee9aa5 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3cc139be hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4ad13399 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x54513eb3 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6187c594 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7ab5c132 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x995bbdeb hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa7552d78 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xafb18091 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb78ef9f8 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb9245874 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc0a1f9e8 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc4eb68e2 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc7e50dea prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd0fe1929 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd1b5ddab hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd8fd73c3 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf61f238e hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x03674b88 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0a6a8ba5 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0b996ce3 libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0d4edac1 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4cf939ca libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x51bd76d1 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5349f349 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x55fb19f1 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x616883ec libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x731dfb98 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x8596f5f5 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x8b638472 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa541c85a libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xad9bfb95 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xaeaac9b0 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xaff47128 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xbd63ada3 free_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc1f2dff2 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc67f3647 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xebf0563b libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf9c996e1 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0094ac35 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x039ae62e il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x056a30ff il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x05b8523e il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x079a24ae il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x07c4f0ea il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x08d76343 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0970d7d3 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0db0d668 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x109c2709 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x10fb0e10 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x14fdfaa8 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x17a880c8 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x17d19248 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1c0a51e6 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1c478b79 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x21e32afb il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x23bfe710 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x241948f5 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x28b1295b il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2c6af284 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2fe8a716 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x33034e95 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x357d404c il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x36adc257 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x370b0653 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3a9e5cab il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3f2f118e il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x41308bc9 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x43b8adc2 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x44e234fd il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4a1731a1 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4bc34463 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4c8924a8 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4f7b475a il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5031ece7 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5489e4db il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x561aacdd il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x572005fb il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5828648c il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x586f5053 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x58aa6d89 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5d8e7ff8 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x61856cbd il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6288ef3f il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x62b80084 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x63e89aad il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x667147c3 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6a9ad996 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x709e5133 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x72ba7463 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x75e8439a il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x79da68e9 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7baf5ec8 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7f6c2f16 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x81b01507 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x81c76270 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8aa02da9 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8af856c7 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x971fc24f il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x98274c4e il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa2128ac3 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa264533e il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa910451c il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa9388e9b il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xaa4079ff il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xac1d9fad il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xad0d4059 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xae1c8b31 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb0bd9fba il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb801a252 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb839687a il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xba853079 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbdd56c44 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbfaeb3a4 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc5a6a5a2 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc696c5e8 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xccd8968d il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcd8fe392 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xce6b3f14 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd6fc9471 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd90ff6f0 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xda2df7c6 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdd13a661 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe01e7111 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe07b6231 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe801853b il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe855bca7 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xea4a5ae3 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xea851a72 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xebea9f60 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xeca9563f il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xee6228ff il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf2ce1920 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf3e78834 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf76c1da0 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf81d4532 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf980d855 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x08c6664d __tracepoint_iwlwifi_dev_iowrite8 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x4379786d __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x95a8ab3c __tracepoint_iwlwifi_dev_iowrite32 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xa2b6ec39 __tracepoint_iwlwifi_dev_ucode_error +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xb69add1f __tracepoint_iwlwifi_dev_ioread32 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xcd60e86e __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xd4f50457 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x02cf7fcf hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x09d0e32d orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x182e1cb2 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x1da32eb7 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x218be794 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x31aa4f2f orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x548a424b orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5fd55857 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x601bd734 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x76b48afe __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x7c62a55c free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x818e52f0 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x8ac77c01 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x9bf94567 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xbda454d3 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc18b9783 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd8f2a90c orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xe453b33b rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x00e95704 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x02d15ee8 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x071e0685 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x134131da _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x190790f7 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1eae9323 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x23241cef _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x32407992 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3686a29d rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x37dea02c _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x395f1837 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x40686688 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x460e3cbc rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x50755e9a rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x548d2550 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x563c4d93 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5d5d4f06 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5f3f1a9f rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x60d40cf5 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6305fb55 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x69531a67 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6adde167 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x716fc6cc _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7d7325c6 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x857c2223 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8623c444 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x89e52b81 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x89f4584c rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x967439f5 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa163dbc0 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa3c4dcef rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb13e3254 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc42b3b4b rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcc6e31ce rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdf843e6a rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xec1efa71 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf1c89c2c rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf9f42421 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf9fa8f90 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfc920167 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfcbc5a69 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x40328f3c rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x6a37c06e rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x9af34843 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xb79c402b rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x129afb37 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xa34ec727 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xcb9fedb3 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xcd32f048 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x139a988c rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x18045fb6 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2da75da8 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3080cb50 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3b833874 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3bf8522e rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e7e0ca6 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x55743955 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x588c0540 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x592311c9 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5abf6373 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5d1f14a7 rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6545545b rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x72469b61 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x745460b9 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x907c2014 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaa7af1d3 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbb0fa38e rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbc370260 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd0371d72 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd1c8e6c6 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdba143d5 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe09dca19 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe67bbd04 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xedeb1181 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xee99031c rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeee7ef7c efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf3e7f6a4 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x633de1d4 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x6c636562 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x7d698293 wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x92db69e1 wl1271_free_tx_id +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x4a505b27 fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xbc64f083 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xe642dd84 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x335c61b7 microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x6b7ee2a0 microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x12dc866c nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x58e82966 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xdc5cc8eb nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x7537e3ef pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xe960ed95 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xb254304f s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xcd3fbc38 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xd7156b5f s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x02372c20 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x09246c8d ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x20e98055 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2156d3c8 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x23c4f33b ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x288f0a9d st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x443c1496 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x81cd1fd0 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8ded3572 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb6d7ee7a st_nci_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc173e715 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x11422bec st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x242d6302 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2a3df72f st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x34075b71 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3721e964 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3a600a98 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4533d1ca st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5261b354 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5a928593 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x726b490d st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x890a9093 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9a26b24c st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9c28ee83 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc82230a3 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xced4e8b4 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcf1114e5 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe5df59c3 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xff459bee st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/ntb/ntb 0x0d0224d7 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x3f8cb9b6 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xa29d5a45 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0xa314d688 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0xaac01846 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0xc98d9a27 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0xe80b148d ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0xee114ba5 ntb_set_ctx +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x8978ccf6 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xa0e56ab4 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x743fded6 devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x03b23025 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x173f717f parport_write +EXPORT_SYMBOL drivers/parport/parport 0x1a2eac8b parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x1cd474b8 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x1fee9881 parport_release +EXPORT_SYMBOL drivers/parport/parport 0x2614b90b parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x312b1508 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x37e3a89a parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x3e861aee parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x45fe1ea5 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x61e190f3 parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0x76170e88 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x7c373c7d parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x7df41e68 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x8a450373 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x8c008c19 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x920336a0 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0xa3d607c8 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0xb2653585 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xb5284e8e parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0xb52e6061 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xb6993d67 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xb700edb5 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xb70aaef7 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xb887382b parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xc9391454 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0xcc16ee07 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0xd0540c80 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0xdaacc6c0 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0xdfaa1b08 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xfb851412 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xfbfe248b parport_get_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x9b7497fe parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xefcf9e8f parport_pc_unregister_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x02bef5c8 pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x05dbe35a pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0f055000 pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x198145bb pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2ae71a3d pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x36509b12 pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x43c401b8 pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x44e084d4 pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x51af1393 pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5cfceaa0 pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6c75ab7a pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8a78a950 pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa3dfb65e pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb4f7125b pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb8a44700 pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc41f0f57 pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd077ae42 __pcmcia_request_exclusive_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdb9c81d3 pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdfdc6aac pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x2a789498 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x2d4e0526 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x38ff41b1 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x4130682a pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x4221ce98 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x42a8675d pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x4bc1c0c3 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd2a30166 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe3a6af49 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf43442c6 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xfe838636 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x1459a677 pccard_nonstatic_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x2ef14ed5 pccard_static_ops +EXPORT_SYMBOL drivers/platform/x86/intel_ips 0xf97d7d0e i915_bpo_enabled +EXPORT_SYMBOL drivers/platform/x86/intel_punit_ipc 0x3a0b563a intel_punit_ipc_simple_command +EXPORT_SYMBOL drivers/platform/x86/sony-laptop 0x5bb1e117 sony_pic_camera_command +EXPORT_SYMBOL drivers/pps/pps_core 0x42a86a80 pps_event +EXPORT_SYMBOL drivers/pps/pps_core 0x4c073131 pps_register_source +EXPORT_SYMBOL drivers/pps/pps_core 0x793175ec pps_unregister_source +EXPORT_SYMBOL drivers/pps/pps_core 0xca409f1d pps_lookup_dev +EXPORT_SYMBOL drivers/ptp/ptp 0x04c04967 ptp_clock_register +EXPORT_SYMBOL drivers/ptp/ptp 0x1f18cd36 ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp 0x40831ab5 ptp_clock_index +EXPORT_SYMBOL drivers/ptp/ptp 0xa3862727 ptp_clock_event +EXPORT_SYMBOL drivers/ptp/ptp 0xac6f619d ptp_clock_unregister +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x1501f165 pch_ch_event_write +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x26751936 pch_ch_control_write +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x2f9d9821 pch_tx_snap_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x318e479d pch_ch_event_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x46e0dce2 pch_src_uuid_lo_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x73f51c2d pch_rx_snap_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x93f882b9 pch_ch_control_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0xa2eb621b pch_src_uuid_hi_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0xed0699c5 pch_set_station_address +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x0ed66c77 rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x11fb4017 rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x13a47c03 rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x19efe51d rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x4fa882c5 rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x69532bcf rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x6a6f4e36 rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x73a0e9ca rproc_get_by_phandle +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xb2b0abe1 rproc_boot +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xffb7d8a1 rproc_put +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x149069ac ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/53c700 0x0ce3425a NCR_700_release +EXPORT_SYMBOL drivers/scsi/53c700 0x3d9cece0 NCR_700_intr +EXPORT_SYMBOL drivers/scsi/53c700 0x598c41b2 NCR_700_detect +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x0527986a scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4c798822 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xa0562488 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xe829e5af scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1969df36 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x20afd9d6 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x26201f1d fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x307b734c fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x38b400e6 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5b454776 fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6d06b9d2 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x70c8aa8c fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7b48615e fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa3e1c26e fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xefb358cf fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf7422d03 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x06ca172d fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0be1aec5 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x13ab7fd7 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x14718517 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x168ec0fb fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x17a0d919 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2b110724 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2da4312f fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x340dc65e fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x343c3eb2 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x35d834c0 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3b8cd275 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3d21b66c fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3f37abc3 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5c58428a fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x60d07673 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6168778c fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x616b2065 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6caca925 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x709085b9 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7165ef3f fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x76930406 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x84343d1d fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8597defa fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8914908b fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8a0d6b98 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x929b9e40 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9417019b fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9a1d5167 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9c7fc73e fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa559416a fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xad0a013b fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb043cbf2 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb2da2e78 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb3017c24 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb8a3cfbc fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb9f6e569 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcfae2221 fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd0a5964c fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd3a03483 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd6310c60 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdb10b1b8 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xddea1b2a fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe4c7256c fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5f6cd0e fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe6871817 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xea5f6551 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf27d299d fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf7cc27e0 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfdb5db87 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x3e14c713 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4ce0ccb2 sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x6cb56052 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xe5af747c sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x0ecc56c7 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x02177a8f osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0ede7216 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1a1e40e3 osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x26e437ca osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2765d81c osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x29da2e5f osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3d2f7f32 osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4101c5b6 osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x43395753 osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x525a97d1 osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x552c2b00 osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5715ab93 osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x71c40810 osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x77415f3e osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x78e77e09 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x80ab8d1f osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8383ec15 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9355e7ec osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9dc3d781 osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9df0aa3c osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9e27a484 osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa25bdc36 osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa3525b1d osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb041f293 osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb6150470 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xba6a06e1 osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc33dd6c5 osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd63ca6d0 osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdf56e889 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe16c2f5a osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe27f8d7d osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe576fb9e osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf0efc362 osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf1098e84 osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf480634e osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfde4556b osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/osd 0x2b096cec osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x7d9ed383 osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x911904e3 osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0xbc23f129 osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0xcff5484a osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0xea4467db osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x189b0827 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1c2bcaac qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2f830902 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3312ffd6 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x494125ec qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4e565505 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x627c8c57 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6dbf4e5c qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa56ef5ea qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd4cc08d1 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd8368690 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf511db3a qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x35b2dfbf qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xc3f77836 qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xce2085b3 qlogicfas408_bus_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xd7eef9bb qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xedfc15a3 qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf155cf88 qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup +EXPORT_SYMBOL drivers/scsi/raid_class 0x51685716 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0x8a72e438 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0xbc434008 raid_component_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x22b2672f fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2eec2237 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x55b10f29 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5965b5a3 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5f96cb3c fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x76733460 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x825b24de fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x85749295 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x895f718d fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9d6de2d2 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb8f509c7 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc9026ac6 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd5b865c6 scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x109f7cad sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x17df13d8 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2cddfc83 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3160c033 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x34c921d6 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x350d1631 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x39f198de sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3b2163fe sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x45e96724 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x47c66fa6 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x48920256 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x504e29e6 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x50fbd4a3 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x50fc912b sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x69b3fa91 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6c6496a9 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6fc176a2 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7a69f754 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x93c9c51c sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaa6ce254 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb13c7df8 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb22333d3 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb320fd14 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb5875b51 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xba148f3c sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc2081297 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xca972e87 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdd42073f sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfb17a817 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x088ac34e spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x2fc60029 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x52e8f5db spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xb4343ce1 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xb677fc0c spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x58620444 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x58f551e7 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x996dfef6 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xad11a985 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x28701233 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x486b0a90 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x7dc50c78 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x9544383d ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x9acdfdf0 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xacb1e4c2 ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xd57ffc1f ufshcd_system_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x005e7613 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x0102a3af ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x13ed44a2 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x1da71834 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x2d88af7f ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x30f596b2 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x31acf85b ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x40ba7d94 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x61b58d37 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x7fb49c9c ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x86b4ab50 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x8c6824af ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x94e30c28 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x9969ea4d ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x9aa8ffef ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xd38bc3f7 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xd7ce8018 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xedc123e2 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0xf2c2180c ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0xf90a83fc ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x00c15dca fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x03e0b64e fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2dc00046 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x38ffb52c fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3c030c5f fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4cb25dae fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5185f206 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5f32d331 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x60b1bd00 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x75292435 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7c5782c0 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7e867bda fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8f32e516 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8fbdfd72 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9e6e9e78 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa2f59650 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xad293e72 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc526da04 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe3cdc399 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe72b9dd5 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe9b9d496 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xee038256 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xef8a04c9 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfdf4cac4 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x5b2b1aea fwtty_port_get +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x5c464ed3 fwtty_port_put +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xfc98e738 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x0a8da026 hmc5843_common_resume +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x56b2aa63 hmc5843_common_remove +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x753e403f hmc5843_common_suspend +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xe15bda42 hmc5843_common_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x6b010522 ade7854_remove +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xdb2310ff ade7854_probe +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0x01163761 cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0xd10d933c most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0524ea60 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x090b6e82 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x11b2cf17 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x15e697de rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1807f5a9 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1d028693 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1d2f6e41 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x23cd6742 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2ba56479 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x31f07965 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x32028e35 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x35417cde rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x35856f7b rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3e87ea60 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x45e69267 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x49a8047b rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x56a82285 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5b9197ff rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5ff02993 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6145a827 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x63da730f alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x64244e57 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x67f7bcd3 Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6b4396e8 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6c43d5bd rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7308c2d1 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x77636809 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x79aaa815 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7dad416b RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x82acac78 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8e9bccaa rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9fe97b2b rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa269335c rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xab452e5c rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb5e8e1f1 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbbc05e40 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc27d3f08 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcb1bdefd rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcf21c4ba rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcf58a14e rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd0d1d974 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd8be3be5 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe91c42b6 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xed48293c rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xef32fb96 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf062e6df rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf31c01e6 rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfc232682 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xff4f9879 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xffcc74ff rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x041ee992 ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x04fc1fcd ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x06f4ed9b ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0e3375a5 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0ebee892 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x16521243 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x16c557b1 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x17bf5132 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1a62f952 DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2965d30d ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x30f455a2 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x348a09c9 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x37254e6c ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x38993b8e ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x404094ae ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x46f24a56 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4bc48642 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x59179fe3 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6508682e ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x65f4555f ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x69ac313c ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6b6b8696 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6c02fce4 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6caa9227 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7158fd35 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x72207e2a ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7cb0fe11 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8d92762d ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x92037f7b ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa02a22e3 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa0e13fdb ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa567e8a1 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa7120298 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa835e250 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaa9fe56a ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaaf8edab ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xafced947 Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb185f554 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb1b3ae6c IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb6038383 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xba887607 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc558c217 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xca26d27c ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcc665163 Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcd9cead8 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcdb3be33 Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf4c2491 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd0a32b47 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd19cc71a ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd3f09612 DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd939a276 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe1e09e64 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe51c5703 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe769bd3a ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf57316c2 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1428208e iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x163da662 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1804bc5a iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x182e747f iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1d99387b iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1f52f887 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x35fec63d iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x376e789e iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3d24ddc3 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x477a30fa iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x47cdb815 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x48f97eb8 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5ffd8309 iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x65ddb85f iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x66afb7be iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x67d94614 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6a6f145f iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x76726f95 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x82058115 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x87e2e0a3 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xad0de6b9 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc4fea85e iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xce6ce21a iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd45e285d iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd753a68b iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe9b9cd98 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xea951903 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xec89f280 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x00a077f3 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x048b2220 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x097f027a target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x0d37fea3 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x13afd1f1 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x163771a9 target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0x23a10d01 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x2871dc17 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x3150b849 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x3284b999 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x33064daa transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x349d47ea core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x3c327026 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x3c32bbed target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x3d29bb34 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x3fc1a990 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x4361d26f core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x481adf5b transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x49808d7e transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x4b2ee1db target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x57526153 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x59878989 target_put_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x5da1c1ac target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x69be0e8a transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x6a6a96f7 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x6c0bb69e target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x6d4fe900 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x721d9bfd sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x73c6e1f6 target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x750a9463 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x7f34db07 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x833e3f3a target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x83b32a5f transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x84a5a6e1 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x92ba14d5 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x9423b479 target_get_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x94e94558 target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0x9ce0b7f0 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x9d00f865 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x9e191757 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0xa16215f4 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0xa64f4dd0 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xa7db5b00 transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa83076b5 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa86cabc1 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xaa764b18 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xb5233840 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xb60d832e sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0xb67bf888 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xb78fec4a passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xba652422 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xbbe41f8c core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xc205ec9d transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xca9f9dd7 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xd046a303 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xd1846047 transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0xd1cbfced transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd662de02 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xd8d83869 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xda191b20 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xdf478d23 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xdf9662e1 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xdfe9a605 target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xe22d6e07 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe788e3a3 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xe876bb40 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf021e46e spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0xf6cda978 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xff46fcc3 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x1887763e acpi_thermal_rel_misc_device_add +EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x5007fc2c acpi_parse_art +EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x86c998e6 acpi_thermal_rel_misc_device_remove +EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0xdf707fab acpi_parse_trt +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xdf29cac6 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x602c4496 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x86dc1d94 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2f54e9ea usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3770f686 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4218f3ec usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x55cceb08 usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7913055f usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x808988b1 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x83e6e5c9 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9725d283 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9a609906 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xaf11b597 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xdc6dafd3 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe9671014 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x342ae1e3 usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xc821a03b usb_serial_resume +EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user +EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x2e91ca97 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x367ce26a vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0x59f824d9 vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x7bda5e6d vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x821e9390 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x937e412c vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user +EXPORT_SYMBOL drivers/video/backlight/lcd 0x14fc8613 lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x2efe24fc lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x886730fd devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xde71eb76 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x24b41eae svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x37daaf54 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x5d850d52 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7dd8a073 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x870dc5ab svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xbffea04b svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xce052bca svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x5bb05c14 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x3c0d7889 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x2f71b7af sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xa0589f8a cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x92f754d4 mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x2a11d9d5 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x6df2fc40 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x6ff69e8e g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x5ce97cda DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x68f878a9 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xa0a69f73 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xaf992884 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x72c7b817 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x9986c01f matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x21924dfb matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x2a748db5 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x926e8bdd matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x9a707344 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x8fb17e01 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xa1f8e186 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x0d063e11 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x178f7105 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x1d5ed134 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xc422adea matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xe4a923ce matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0xf0343979 mb862xxfb_init_accel +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x028ea21c w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x1b97e56e w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x1d667bc1 w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x208970a4 w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x7d8668fe w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x804635f9 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x2ec1eeff w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xffea1811 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x64ea102d w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0x75bab976 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0xae272826 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0xe3fb7ede w1_register_family +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x04e133fc iTCO_vendor_check_noreboot_on +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xa78bd894 iTCO_vendor_pre_set_heartbeat +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xb5f20875 iTCO_vendor_pre_keepalive +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xc4f657bf iTCO_vendor_pre_stop +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xdc6effc9 iTCO_vendor_pre_start +EXPORT_SYMBOL fs/configfs/configfs 0x0de2b3c0 configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x1cafaaca configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0x2d9a4f92 config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x366c489d config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x39d1d8b8 config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0x3e312b15 configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0x52836844 config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0x63fccae0 configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x6b23394b config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0x7121ccbd configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x7ebcbb39 config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0x8c974535 config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x9cf5adc1 configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0xa2d8a47d configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0xb7723c64 configfs_unregister_default_group +EXPORT_SYMBOL fs/exofs/libore 0x05deda7f ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0x065bb31a ore_remove +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x2bf3104a ore_create +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x46778982 ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0x5f1ba5d9 ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0x729aab62 ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0x78a50f5c ore_read +EXPORT_SYMBOL fs/exofs/libore 0x9beb8f91 ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xa6eef7a1 ore_write +EXPORT_SYMBOL fs/exofs/libore 0xef5017a2 extract_attr_from_ios +EXPORT_SYMBOL fs/fscache/fscache 0x0ab98cc2 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x102abbe6 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x2851cf39 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x33d1f4fc __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x3805161a fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x3c8c3d94 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x3cce5ea3 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x3e054b96 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x3edd1ca0 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x41df90c1 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x4577b615 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x47840a7b __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x47ab1702 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x58794427 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x64551923 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x69276bf5 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x6b87f8e4 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x6bc63a9d fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x72999a01 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x75c61203 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x7a03fa2f fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x820547f8 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x8696d16f __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x86bceb69 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x8c328c00 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x8d36c8d5 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x937d92c2 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x9bdf323e fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0xae0d8587 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xb37f680f fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0xb90a1f11 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0xc071e0b3 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xc6fe0899 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0xcbe3a322 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0xcc1d0a05 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0xcce30fb2 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xd82a6675 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0xf7eabf26 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0xfc434525 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0xfc987d3a fscache_check_aux +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x084dd91a qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x4ba4b345 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x7a1c6313 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x8d5379af qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xe02013d5 qtree_write_dquot +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-ccitt 0x3771b461 crc_ccitt +EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc-itu-t 0xf5b4a948 crc_itu_t +EXPORT_SYMBOL lib/crc7 0x66213969 crc7_be +EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc8 0x41248eaf crc8 +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c +EXPORT_SYMBOL lib/lru_cache 0x03f599c7 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0x2ba1031d lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0x3161ec94 lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x4feade4b lc_create +EXPORT_SYMBOL lib/lru_cache 0x56fc3ea0 lc_put +EXPORT_SYMBOL lib/lru_cache 0x619ed575 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x84e0214b lc_committed +EXPORT_SYMBOL lib/lru_cache 0xbbe7c23c lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0xc48fa976 lc_set +EXPORT_SYMBOL lib/lru_cache 0xc6e4cd46 lc_reset +EXPORT_SYMBOL lib/lru_cache 0xcb990a55 lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xcea6747e lc_destroy +EXPORT_SYMBOL lib/lru_cache 0xd212c9f0 lc_get +EXPORT_SYMBOL lib/lru_cache 0xeb13128b lc_del +EXPORT_SYMBOL lib/lru_cache 0xf460a486 lc_is_used +EXPORT_SYMBOL lib/lru_cache 0xf5ea5f5c lc_index_of +EXPORT_SYMBOL lib/lru_cache 0xf6acec20 lc_find +EXPORT_SYMBOL lib/lz4/lz4_compress 0xcbc5d521 lz4_compress +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x26c3aa22 lz4hc_compress +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul +EXPORT_SYMBOL net/6lowpan/6lowpan 0x3c1ec137 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x3dfcb8c1 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x91c03d19 lowpan_netdev_setup +EXPORT_SYMBOL net/802/p8022 0x2a3057f5 register_8022_client +EXPORT_SYMBOL net/802/p8022 0x9457567f unregister_8022_client +EXPORT_SYMBOL net/802/p8023 0x33327409 make_8023_client +EXPORT_SYMBOL net/802/p8023 0x9248de6e destroy_8023_client +EXPORT_SYMBOL net/802/psnap 0x1c8ca0f6 register_snap_client +EXPORT_SYMBOL net/802/psnap 0x40402a5c unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x02933d87 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x05c8ea34 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x183774e6 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x19468218 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x1c18e1fe p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x1d4a88a7 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x21cbe22a p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x273294e1 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x2ac05f0a p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x460a483e p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x4ce918df p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x4ee6e87a p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x52dc1295 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x588b4006 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x61986e41 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x6cb375ea p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x74d0d678 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x76c3b4d2 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x7ea8ff45 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x7eb08f63 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x7f8ef1b9 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x803fae82 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x84bd9697 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x87e8ea89 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x8b5e14ca p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x9db36c5b p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xa4eb7406 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xa7abb8a5 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xaa9245ae p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0xafc657c1 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xb33ddf0f p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xba31ee9d p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xbb66291b p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xbc66bd04 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc9dcea8e p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xca1fcf9e p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xd2bff864 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd5b6fc45 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xdd7a3755 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xe549a8b3 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xebc952a5 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x05c14f28 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x07e53198 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xb67b33a1 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0xcdc7bc72 atrtr_get_dev +EXPORT_SYMBOL net/atm/atm 0x16b8091b atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x6b4ab68e atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x6cc1e94d atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x7027544a register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x8ddbfc86 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xa592ec0f atm_dev_register +EXPORT_SYMBOL net/atm/atm 0xa5a29705 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xabcbc92b atm_charge +EXPORT_SYMBOL net/atm/atm 0xbd9dec99 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0xc61952b2 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0xdfebb69c vcc_release_async +EXPORT_SYMBOL net/atm/atm 0xe9b7f80a atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0xee7dd0b9 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xef199016 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x1ace2e96 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x4471e00c ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x4ba74a5f ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x5f3b1288 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x9a9434f0 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xdcb75c29 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xdd0527cc ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0xfdd392c8 ax25_linkfail_release +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0354a9e0 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x04074133 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1459238f bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x14adbec0 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x15f05189 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1753d290 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x213d4298 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2617a5c2 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x267105a8 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2cb00ffc bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2d455e2d bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2fa78057 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2fb4cfab hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x314d9e11 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3ca089b9 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4352a0d0 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4496a225 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x54d0ea01 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5923252d __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6db982ee hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7007815e l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x710cfb03 hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7d8ac289 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7ef01bc9 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8ab4b431 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91ca805a hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x929f93c9 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9c861d0d bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xae9ad6d1 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb87d01b5 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc700245c bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc894080e bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc8b31f36 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd388f88e bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdc5dc7af bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe610b97d bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe782434c l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe8444ccc hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeeb863c7 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf6933413 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfe8b9c70 hci_conn_switch_role +EXPORT_SYMBOL net/bridge/bridge 0x26a27796 br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x038abbfd ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x890c0f5a ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xb55b76d7 ebt_register_table +EXPORT_SYMBOL net/caif/caif 0x10872ccf caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info +EXPORT_SYMBOL net/caif/caif 0x348fd312 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x5a84382f get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x8831ece0 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xed48c11a caif_enroll_dev +EXPORT_SYMBOL net/can/can 0x326e911c can_send +EXPORT_SYMBOL net/can/can 0x511d6040 can_ioctl +EXPORT_SYMBOL net/can/can 0x679e6b17 can_proto_unregister +EXPORT_SYMBOL net/can/can 0xa6683bdb can_rx_register +EXPORT_SYMBOL net/can/can 0xce5351e7 can_rx_unregister +EXPORT_SYMBOL net/can/can 0xfceb7bcb can_proto_register +EXPORT_SYMBOL net/ceph/libceph 0x04f5abeb osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x0575d380 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x061b14bd osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x067897f9 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0af0ee4b osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x0b51992c ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x0c49efb1 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x0d957745 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x0e56aa09 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x0ef32157 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x141739c2 ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x1862aad9 ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x1961e153 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x1c5b2a4f ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x1db6c5e8 ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x224ee5f3 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x287021b1 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x28db2273 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x2be04870 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x2ca5878a ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x30857328 ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0x34863752 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x3710ab4f ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x3aafcd84 ceph_monc_do_get_version +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3c02369a ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x3ff2de82 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x40236c9f ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0x41a9a21a ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x42d9be28 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part +EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0x45211915 ceph_oloc_oid_to_pg +EXPORT_SYMBOL net/ceph/libceph 0x453f984d osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x467c11d9 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x47a9920e ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x47c06000 ceph_monc_request_next_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x518f1ac0 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x5449ad1c ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5ae23743 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x5fcf3af4 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x61749bbb ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x6245f050 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x630ce8c3 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x6aba9225 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x6b0d6876 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6c99c69b ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x713aeb2a ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x718d793e ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x7214265d ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x74e3cffd ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x7502dc17 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x7b8d2de4 ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0x7c8895e9 ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0x7ced6ab9 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x80b93db7 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x86b7bd87 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x8fa94daf osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9f432c3d ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa1ebde8f ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xa20db102 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xa2e3fa8a ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xa51d1566 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xaa51ca92 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xaf8d172a __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb05bd36a ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0xb19dc152 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xb48565db ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xb7c41645 ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0xb841cbcc osd_req_op_cls_response_data +EXPORT_SYMBOL net/ceph/libceph 0xbe75cefa ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0xc1c165a4 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc51b5303 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0xc60c7f5b osd_req_op_watch_init +EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xca56587e ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xca857280 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xcaba553e ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0xcaf805a0 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd5383217 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xd73faf41 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xd813625e ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xd81cacfb osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xde0eb6ba ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0xe55d9bcd ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0xe99f112f osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xeba684e1 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0xee3728a2 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0xf0523b80 ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0xf2bed24f ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xf362d405 ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0xfe2a551f ceph_open_session +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x4e9bf726 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xe36155e1 dccp_syn_ack_timeout +EXPORT_SYMBOL net/ieee802154/ieee802154 0x25218fe2 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x31713582 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x53fdbe96 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x6f232f46 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xa8c695ca wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xec372b17 wpan_phy_register +EXPORT_SYMBOL net/ipv4/fou 0x0c07b4a3 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x33e84ee9 gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xebc8417b fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xed741d6f gue_encap_hlen +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x00891136 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x05a7c30f ip_tunnel_dst_reset_all +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x54aca50f ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x69e9539e ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x9c8c0e53 ip_tunnel_encap +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xb45cdbf5 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x1e3743df arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x35e0bef7 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x824ab004 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x075cb3b6 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x60bc276b ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x81be0b4a ipt_register_table +EXPORT_SYMBOL net/ipv4/tunnel4 0xdc6be72d xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0xe9045fc5 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x5793a1ea udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x49470a2d ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7822339e ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x950ae96d ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xbd1ffa29 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x0526b5c0 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x5abcf37f ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x5fe39858 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/tunnel6 0xe90d82e3 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0xeba57717 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x497f771a xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x5b72a497 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x0eb0a339 ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x0f277531 ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x0f5d86b5 ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x0fdf0614 ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x66132eff ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x6a25e688 ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xd317bebb ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xe868b324 ircomm_close +EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value +EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service +EXPORT_SYMBOL net/irda/irda 0x08eee08e iriap_open +EXPORT_SYMBOL net/irda/irda 0x0963c24b irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0x09939c11 irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0x18b981df async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0x1f47937d irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0x21379393 irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0x23bbc2ce irias_find_object +EXPORT_SYMBOL net/irda/irda 0x2b432980 hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x358ea30e irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0x35c600c2 irlap_open +EXPORT_SYMBOL net/irda/irda 0x385847aa irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x410c36ad alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value +EXPORT_SYMBOL net/irda/irda 0x45b50713 irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0x46b00fdf irias_insert_object +EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service +EXPORT_SYMBOL net/irda/irda 0x4d73a6fc async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0x62dc17a7 irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0x65172873 irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0x6a0549f5 irda_notify_init +EXPORT_SYMBOL net/irda/irda 0x6a9be3f5 iriap_close +EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x70a3f20f hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0x70fcba0e irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x74aabb34 irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client +EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client +EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0x98a8b3b4 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0x9ccbdfca hashbin_insert +EXPORT_SYMBOL net/irda/irda 0xa4213068 irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0xac3dc858 irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0xaeeff2b5 hashbin_find +EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value +EXPORT_SYMBOL net/irda/irda 0xb9ea3b80 irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute +EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request +EXPORT_SYMBOL net/irda/irda 0xd39ff152 iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma +EXPORT_SYMBOL net/irda/irda 0xdc0196c2 hashbin_remove +EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0xe001a25a irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0xe1ba6308 irias_new_object +EXPORT_SYMBOL net/irda/irda 0xe329462a hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0xe5abf088 irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0xe96cbb14 irttp_dup +EXPORT_SYMBOL net/irda/irda 0xeb78333e hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0xec242b93 hashbin_new +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0xeefe949f irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0xefa0435d irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0xf9bc67a4 irttp_data_request +EXPORT_SYMBOL net/irda/irda 0xffc8567f irlap_close +EXPORT_SYMBOL net/l2tp/l2tp_core 0x4ccf8aa6 l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0x00cdc98c l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x2338657b lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x24a4a869 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x34a4302b lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x7c7d9b39 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x845c936d lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0xaa2b6104 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0xd57aaf82 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0xffd07a81 lapb_unregister +EXPORT_SYMBOL net/llc/llc 0x153ecaa7 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x27dc2cda llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x6d4c2375 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x756e7384 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x79ed46f7 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x95936a74 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xf3fff8ea llc_mac_hdr_init +EXPORT_SYMBOL net/mac80211/mac80211 0x0117aaae ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x078db118 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x10fd30ce ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x149b54a3 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x14abe96d ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x2a98ecf9 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x2ca97626 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x2d782fe3 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x301075fb ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x31b03656 ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0x31ccaaa9 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x329eac08 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x33b350f7 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x3648f61b ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x38084423 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x382d0c14 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x3aaf6eb1 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x3d99cada ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x3e97aab7 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x43abc086 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0x48ae333a rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x4a387f5f ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x4d68522c __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x4d8c6513 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x51d58511 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x5545f90e ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x55fa1ec1 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x5f9353fb ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x6171948c ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x62fa7cea ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x63ac1058 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x6556f8ad ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x674a9634 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x6a852d1d ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x6a8f00a0 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x6bd9cad5 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x6c2e0e0c ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x70761455 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x718c2ccc ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x7a165d7f ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x817f7ecc ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x8499253f ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x8c6f629d ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x8dc518c4 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x8de464bb ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x8fb446f0 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x90548f8b ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x90e65957 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x92dade65 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x9380f7ce ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x94da4827 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x97eab865 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x98cce075 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xa8256061 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xa8528f8c __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xac5da3eb ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xadb3855b ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0xb5e7851c ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xb6ff6145 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xbc8bbac4 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0xbe6fe0d1 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xbe8a697c ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xc1e4bef6 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xc6d9c0dc ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xce710aed ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xd02a14f4 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xd0c6864c ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xd5025478 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xde2803e3 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xdf92fbd4 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xe18b18ca ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0xe49df122 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0xe759d272 ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0xec32f07f ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xec7a3ab7 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0xeda362ae ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xee99109b ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0xf8050287 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xf97ed920 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xfa8ddc57 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xfb0e7976 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xffa065e7 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac802154/mac802154 0x1e63c68b ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x32e33221 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x47928506 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x542d9d26 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x65501875 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x81b5504c ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xa9f66d8f ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xcae515e4 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x235390e3 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x271f6850 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3515e919 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x619623dc ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x70a3ab52 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x79260b66 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7fb2b296 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8e4029e4 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa5b35fb9 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb2394515 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd631b51e ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdb2c14f0 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe188ba44 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfa299099 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x5d2d7f01 __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x62ca5714 nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x90764c9d __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x03cb8161 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x12602c6a nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x1b5bee1f nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xa759f706 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xc792860d nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0xf642183a nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/x_tables 0x0698cec5 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x0e8c6eb4 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x2cd983d9 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x405f1b5c xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x5a894588 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x5ecc6f21 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x6628baa4 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x7b4d97b3 xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0x9789f5d0 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xa99690a3 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/nfc/hci/hci 0x2bfdac9d nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x30d0dd8e nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x353e51dd nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x36bb39e2 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x44c81578 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x4c267763 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x526cb5c4 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x53afd348 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x562bca40 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x59fb2080 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x6ff18e91 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x717485c7 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x77a075fa nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x7a802231 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x7ed7c58b nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x99abf43c nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xe6e740a3 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xf357bbfb nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0xf5e0b330 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0xf75630d7 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0xfcb49ac9 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/nci/nci 0x0976879e nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x0d8db301 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x16c81e9e nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x1a463941 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x1a8f6c70 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x241c7c33 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x2de64ac5 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x2e62657b nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x2ee06168 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x37cbb3c6 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x731147ec nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x7640fb16 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x81b7b44a nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x8241925b nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x839f4347 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x92748471 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x97ad7923 nci_get_conn_info_by_id +EXPORT_SYMBOL net/nfc/nci/nci 0x999160ab nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x9ffedeff nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xa877e7b5 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xc12a5d79 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xc5eb551c nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0xd0a745e5 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0xdc808653 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xee314f40 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xee5344ba nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0xeebef28c nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xf44eaa84 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nfc 0x0fef7231 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x11e9c560 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x160e11bb nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x16e1668b nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x3577f418 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x36ec83d8 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x3a53ee72 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x3c69155c nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x425203e9 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x611af9ba nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x64a14294 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x7c97e821 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x8d84ea33 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x9efd7721 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xa0add81b nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xa1de9c27 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xb48d3486 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xcebf4a97 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xd51b7602 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xd903fb76 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xdf3423b4 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0xe3c49bff nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0xe9a56ab7 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xf22fd82b nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc_digital 0x9b0982fe nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x9ce11260 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xa5a4df79 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xad0729fa nfc_digital_free_device +EXPORT_SYMBOL net/phonet/phonet 0x17e99f7b pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x884c9e10 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x8c7bbc3c pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xaca0b770 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0xc5e9e113 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0xef4301ae phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xf9a1a8d7 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xfece2df4 phonet_proto_register +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x0f86bff1 rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x105020dd rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x106d651d rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x27b7f865 rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x2892b47c rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x2ea1d3de rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x3eed0f11 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x40fd48ce rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x410a1a91 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4b7758e8 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xaafd8a4c rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xba478d91 rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc0302aae rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd961385d rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xebd92d0d key_type_rxrpc +EXPORT_SYMBOL net/sctp/sctp 0x5dff6344 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x31fd48f1 gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x7e32acf9 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xd7abf82e gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0x17ea911f xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0x1d4609ce xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0x729692a4 svc_pool_stats_open +EXPORT_SYMBOL net/wimax/wimax 0x070bae4d wimax_rfkill +EXPORT_SYMBOL net/wimax/wimax 0x581ab390 wimax_reset +EXPORT_SYMBOL net/wireless/cfg80211 0x0330b914 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x04ef3dbe cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x08dd158b cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x102f1011 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x13ccaa0a cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x1451da38 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x168a71ad cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x19e23eb1 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x1a1b83c8 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x1cb9f497 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x20234355 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x239a5cd0 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x254ee14e cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x29c8306e cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x2b3c688b cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x2caa6b0f cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x3007440a ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x300c7e11 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x33aaa0a7 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x3bcf0639 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x3d34cbbc cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x41d2d891 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x44d13d6e cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0x46d8da99 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x4a061109 ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x59698c62 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x5afb1513 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x5bc1abd6 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x5febca03 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x61636f74 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x617a06f1 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x62916e7f cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x66aab927 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6cadc1ac __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x6d0f042c cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x75a48de0 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x78431bb1 regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x78f5cfe5 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x7bcd3836 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x7e48f1db cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7f212e3f cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x836375c6 ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x836558b9 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x870ddde7 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x8841fbcb wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x8d555ef4 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x8dad1671 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x907099d7 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x9609002b cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x966ff54d ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x98ac2a20 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x98e2fb1f cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x9f15915e regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x9fbe1cad cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xa1425906 ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xa2697a7f cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xa28fddf0 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0xa5a94674 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xaa32915e cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xae378b74 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xb1c83fa7 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0xb1f1baba cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xb37426c4 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xb80b3c27 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xb99b05db wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xbc8fd4b7 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xbccbb264 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0xc0c4ed81 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xc1df8791 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xc67024d9 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xc9191ade cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0xca5c24b3 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xceab94a6 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0xd20dd99e cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xd269411e freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xd40b6ec4 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdf3c8522 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xe26d5ae3 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xeb404da6 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xeb6d7c6c ieee80211_ie_split +EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xf1b6b494 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xfae74812 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0xfba5a616 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0xfcc8f05a cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/cfg80211 0xff1e59cf ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/lib80211 0x2f383667 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x3e430e31 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x4eadd1b8 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x594d4012 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x9f23c972 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0xac57e24b lib80211_crypt_delayed_deinit +EXPORT_SYMBOL sound/ac97_bus 0x7b77e15a ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x82794069 snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x094df430 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x96f1cd3d snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xc964e33d snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xd8680342 snd_seq_kernel_client_enqueue_blocking +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x8d0df86b snd_seq_device_new +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x205395a0 snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x614705ff snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x7746bb9b snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x79794472 snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x991c0f60 snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xef8fa3d2 snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xf3f0324e snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xf6fdda44 snd_midi_event_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xf21f314f snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x0e0ee05f snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x0f618f4d snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x10bdfb23 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x128ced8f snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x1337bb54 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x155d3f49 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x16d29131 _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program +EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer +EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL sound/core/snd 0x1d177b09 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x1e798604 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x2106b91d snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x2491d78a snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0x34003ea2 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x3735d22a snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3d8f3c8b snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x55a23419 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x572fb2de snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x5ff281e2 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x602c96f0 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x65288b9b snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x6b6613d7 snd_device_register +EXPORT_SYMBOL sound/core/snd 0x6dc88876 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x728da773 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x7a8f589d snd_card_register +EXPORT_SYMBOL sound/core/snd 0x7c540970 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f3ad0a5 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x96213167 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x966361d0 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x98b769b6 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0xa2cd474a snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0xac30954b snd_register_device +EXPORT_SYMBOL sound/core/snd 0xb1ecbdb0 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0xb28746e2 snd_card_free +EXPORT_SYMBOL sound/core/snd 0xb2c9c007 snd_card_new +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb49cb20c snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0xb745add1 snd_cards +EXPORT_SYMBOL sound/core/snd 0xb84d31b2 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0xb97e55c9 snd_component_add +EXPORT_SYMBOL sound/core/snd 0xc991627f snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0xce3ca308 copy_from_user_toio +EXPORT_SYMBOL sound/core/snd 0xce5733ef snd_device_new +EXPORT_SYMBOL sound/core/snd 0xd14b2f0a snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0xd1e1cf16 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0xd7f65b93 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0xde294f29 snd_info_register +EXPORT_SYMBOL sound/core/snd 0xdeb562d6 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0xeb6b1f0a snd_power_wait +EXPORT_SYMBOL sound/core/snd 0xf246bb60 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0xf8a702b4 snd_jack_new +EXPORT_SYMBOL sound/core/snd-hwdep 0x97f07ec3 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x0104f98b snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x148b4bb4 snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x20424e2a snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0x2074984a snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0x2a50750a snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0x3076dd02 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x3b91f3af snd_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x3d8f20a1 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x4d9b6d35 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x54ea7ca3 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0x55fd59a1 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x5a8a31c0 snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0x5bb4441b snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x5d310396 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x611bc57a snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x61e2b53d snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x65dd363a snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x682baa45 snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL sound/core/snd-pcm 0x6a51cd13 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x70c27749 snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0x7130a58a snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x73c7867f snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x7db911b6 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x7f56961b snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x874c68aa snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x91df3707 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x95e81df5 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x9f811077 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa657cffb snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xade88e76 snd_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xb1d9a1d4 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xb36a1605 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xc300388b snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xc828933a snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0xc88d4eab snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0xc94e41cd snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0xcb3e73d8 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0xd3122c4a snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0xd6dc31cc snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xd89adcb3 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0xdd0248b8 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0xe22f5f24 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0xe4b5a593 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0xe4b73761 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xe9fe0aa4 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xed336bf6 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0xed4f5abc snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0xf3b0f03e snd_pcm_sgbuf_ops_page +EXPORT_SYMBOL sound/core/snd-pcm 0xf84a93d9 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0xf9ee23b8 snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0xfbca69dc snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xfe511eb5 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0843771e snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0d8a1723 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x21f15fe6 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x399faa0e snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3e474c3a snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5760c691 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6028e1b2 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x655b474e snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6e783dd4 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x84cf7c22 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x89cedf36 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8b10f9ee snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x930d0081 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xae49b45c snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb5198183 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb775ba4b snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbbb515e0 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe9eeffc8 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf93ced42 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-timer 0x0d6fa7ca snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x25809682 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x566c88ec snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0x6506c025 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x89dae53c snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x928ead46 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x9f7ac005 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0xc2df7b11 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0xcf2e0bf2 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0xd5b1482b snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0xdc02398c snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xeac91031 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0xf6bd25f9 snd_timer_open +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x00634392 snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x000bf425 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x2ff50eb0 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x329596a8 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x37bb4c56 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x52299161 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x96306020 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa4e3fb91 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb9d51933 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xfb0e7d3e snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x2754d85c snd_opl4_read_memory +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x33f6f392 snd_opl4_create +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x4225db56 snd_opl4_write_memory +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0xc48c18de snd_opl4_read +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0xd69b355d snd_opl4_write +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1eb05318 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x40bda9e9 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5ef4f5b6 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x727dc424 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8377b15c snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8a5870cc snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8a76ad17 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8b041c81 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb2f880bb snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x00a5fdfc amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x04d6188a avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0d774b42 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x13b1b981 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x18586f82 amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1d6a1caa cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x24e7b975 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x29897ab7 amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2f258e0b fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x43a8144a cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5a83c849 snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x680ed783 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x705b5576 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x71cc0886 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7efaacf0 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x80c60954 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x86382279 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8e3ba2c2 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x91ab702f amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x99c81ddd snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaab1a4c1 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb356012f fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc1e8f7bc avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc7a98c44 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcbad7450 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xda1c8893 amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdc432444 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe48de1b6 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe65ae9b0 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe8b15a6c fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfadb7d01 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfcdc348b snd_fw_transaction +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x0055a653 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x8fd39a26 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x042608ad snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x5855b30e snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x657b0efc snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x6bfff2b3 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x71436a7c snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x9c3f3175 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xcb92997a snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xef651125 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x091b3498 snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x1c843de4 snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x9ed74fce snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xc89e8189 snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xdc2ef779 snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xe0b56573 snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x6e8aa3b3 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x7158d425 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x95bbb3f4 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xa1446810 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xa5c887ca snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xd41fa14e snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x0560d733 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x1bee3882 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x25ac2fd3 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x5143e861 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x54097ecb snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x5a8ef5bb snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x48cadc62 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x495bf551 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x8dcf07be snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x8e7917aa snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xb724fd37 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0xe8e06918 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-tea6330t 0x06fb18f0 snd_tea6330t_update_mixer +EXPORT_SYMBOL sound/i2c/snd-tea6330t 0x53ece9e2 snd_tea6330t_detect +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0x760e86db snd_es1688_reset +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0xb144c0ed snd_es1688_mixer_write +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0xb9ce2b96 snd_es1688_create +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0xbe9be90b snd_es1688_mixer +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0xf5ec4100 snd_es1688_pcm +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x0559e432 snd_gus_use_inc +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x0bf78dfa snd_gf1_pcm_new +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x120f30d9 snd_gf1_ctrl_stop +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x1c1ce117 snd_gus_interrupt +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x1e39d9d4 snd_gf1_new_mixer +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x1e8a1037 snd_gf1_i_look16 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x24c4d818 snd_gf1_dram_addr +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x301ddb0b snd_gf1_look8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x32306255 snd_gf1_alloc_voice +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x348139a1 snd_gf1_write_addr +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x3a27e9f1 snd_gf1_poke +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x3a917f75 snd_gf1_free_voice +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x3e392e35 snd_gus_create +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x3fe414db snd_gus_dram_read +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x46db8d67 snd_gf1_lvol_to_gvol_raw +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x4ff0270c snd_gf1_look16 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x5230a953 snd_gf1_i_look8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x56080ac9 snd_gus_initialize +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x5ec94819 snd_gf1_mem_lock +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x623f0a33 snd_gf1_i_write8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x6d5b14d5 snd_gf1_mem_xfree +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x95f33888 snd_gf1_rawmidi_new +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x98231017 snd_gf1_delay +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x9c08484e snd_gf1_peek +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x9c6106d8 snd_gf1_stop_voice +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x9f74fb09 snd_gf1_translate_freq +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xa0474ed3 snd_gus_use_dec +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xc43a5527 snd_gf1_atten_table +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xc5b50938 snd_gf1_mem_free +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xcb41a7fc snd_gus_dram_write +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xd493f5be snd_gf1_write8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xed56a4e5 snd_gf1_write16 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xf10b2ff0 snd_gf1_mem_alloc +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x030316b8 snd_msndmix_force_recsrc +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x0e096be3 snd_msnd_init_queue +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x0f46887a snd_msnd_upload_host +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x1510f91d snd_msnd_send_word +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x568c4fdf snd_msnd_DAPQ +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x6ef90f3d snd_msnd_send_dsp_cmd +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x75026b24 snd_msndmidi_input_read +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x79d1a12a snd_msnd_enable_irq +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x90afc408 snd_msnd_disable_irq +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xb375d92d snd_msnd_DARQ +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xb5cfbf96 snd_msndmix_new +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xbcdef29a snd_msndmix_setup +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xd74c01c6 snd_msnd_dsp_halt +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xee89c8da snd_msnd_pcm +EXPORT_SYMBOL sound/isa/opti9xx/snd-miro 0x02ccc733 snd_aci_cmd +EXPORT_SYMBOL sound/isa/opti9xx/snd-miro 0xcc82800d snd_aci_get_aci +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x1c29f574 snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5c5c0f17 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x759769f3 snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x815df73f snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x914d0bcf snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x9b282e5b snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xcd82e19c snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd6b0a2de snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd9cfbab8 snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xf748868f snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb16-csp 0xe4c01d38 snd_sb_csp_new +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0x5612bee2 snd_sb16dsp_pcm +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xadf87fc9 snd_sb16dsp_get_pcm_ops +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xe0b3f690 snd_sb16dsp_interrupt +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xe4662d20 snd_sb16dsp_configure +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x4063aa47 snd_sb8dsp_interrupt +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x7b3c854a snd_sb8dsp_midi_interrupt +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x8db188b6 snd_sb8dsp_pcm +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0xaf83a8e5 snd_sb8dsp_midi +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x090093ac snd_emu8000_update_reverb_mode +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x329fbf11 snd_emu8000_update_equalizer +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x64009d1e snd_emu8000_poke_dw +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x73abada1 snd_emu8000_load_reverb_fx +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x76740d2e snd_emu8000_peek_dw +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x9d0fc506 snd_emu8000_peek +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xd4ea9a7a snd_emu8000_update_chorus_mode +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xd7ba880d snd_emu8000_poke +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xe28c1944 snd_emu8000_dma_chan +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xf387239c snd_emu8000_load_chorus_fx +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xf66484c9 snd_emu8000_init_fm +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x063a5e5a snd_wss_timer +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x0733501f snd_wss_mixer +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x0b23003d snd_wss_info_single +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x2d24a9a4 snd_wss_mce_up +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x32ccfa48 snd_wss_put_double +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x42435cfb snd_cs4236_ext_out +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x64035d49 snd_wss_get_double +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x75aa4ace snd_wss_out +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x7b202637 snd_wss_interrupt +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x81a20fd9 snd_wss_get_pcm_ops +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x85b649bc snd_wss_put_single +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x8c53b0aa snd_wss_in +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x9b3e04dd snd_wss_overrange +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xa104a784 snd_cs4236_ext_in +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xcccccf43 snd_wss_info_double +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xcdd8d737 snd_wss_pcm +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xd379eebd snd_wss_get_single +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xd736aa6b snd_wss_chip_id +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xfa2af97d snd_wss_create +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xfee11129 snd_wss_mce_down +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x07c0279a snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0b096188 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x160c3f0c snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x407aff2a snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5f3b2ed2 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6f01ff34 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8d1120c0 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa53a8069 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb58ce07b snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb95a9bc0 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc2b1db13 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc690c281 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc8249a8e snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xda330424 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdd16ce32 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe2b6abcf snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfa2c7f1d snd_ac97_bus +EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0xd54ff91a hpi_send_recv +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x112da59f snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1844ebec snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1b1b3e0a snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x6f8a0b07 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x894a53d8 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x92b55145 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xca877eda snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd72efe45 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xfe55a2a6 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x0fa3bdc0 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x3545874e snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x68656cb2 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0aedfd4d oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x11c07f43 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x25d0efb9 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x26e3a027 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x455c73c4 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4925a72e oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x65ea96eb oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x662bd9bf oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x66cfe148 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x68472a8c oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x918640f0 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x95937f9c oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9be0a121 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa81eabc2 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xab2fc5fd oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xab2fefa1 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb59334b0 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb9624ffa oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc252a6d2 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc799e739 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd864c93a oxygen_write_uart +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x519c09fe snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x8bec5a0e snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xbf8a6173 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xcdcf1ea9 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xfa4673ad snd_trident_free_voice +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xe4e41c0f tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xf467f4d9 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-dsp 0xdc045797 sst_dma_free +EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-dsp 0xe246a862 sst_dma_new +EXPORT_SYMBOL sound/soc/snd-soc-core 0x56ab1ab7 snd_soc_alloc_ac97_codec +EXPORT_SYMBOL sound/soundcore 0x173c49fb register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x1c2dc8ef register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x3e4392da register_sound_special +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x7e34cafe sound_class +EXPORT_SYMBOL sound/soundcore 0x8b32e689 register_sound_midi +EXPORT_SYMBOL sound/soundcore 0x93bb97e4 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x42c424d9 snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x4da399fe snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x59b9ab4d snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x9eecb651 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xa572e021 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xb0e21ed0 snd_emux_register +EXPORT_SYMBOL sound/synth/snd-util-mem 0x2e4f9bb4 __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x3e3189cd __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x443e064f __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x76d9963e snd_util_memhdr_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x8abc0240 snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0xe0ce3e1f snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0xea4c27ad snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0xec83060a snd_util_mem_free +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x42418b70 snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL ubuntu/hio/hio 0x11ed29e2 ssd_register_event_notifier +EXPORT_SYMBOL ubuntu/hio/hio 0x267790d1 ssd_set_otprotect +EXPORT_SYMBOL ubuntu/hio/hio 0x27da9fc2 ssd_get_label +EXPORT_SYMBOL ubuntu/hio/hio 0x44353807 ssd_set_wmode +EXPORT_SYMBOL ubuntu/hio/hio 0x481c0b13 ssd_get_version +EXPORT_SYMBOL ubuntu/hio/hio 0x57f6e792 ssd_get_pciaddr +EXPORT_SYMBOL ubuntu/hio/hio 0x5ceab207 ssd_submit_pbio +EXPORT_SYMBOL ubuntu/hio/hio 0x842f1292 ssd_unregister_event_notifier +EXPORT_SYMBOL ubuntu/hio/hio 0x9e7cb63d ssd_reset +EXPORT_SYMBOL ubuntu/hio/hio 0xaca028c7 ssd_bm_status +EXPORT_SYMBOL ubuntu/hio/hio 0xfa8077b0 ssd_get_temperature +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x002d778d VBoxGuest_RTMpNotificationDeregister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0064d4f7 VBoxGuest_RTSemFastMutexCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x00712528 VBoxGuest_RTAssertMsg2Weak +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x01795170 VBoxGuest_RTMpGetCoreCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x03d8513f VBoxGuest_RTThreadSetName +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x05626dc7 VBoxGuest_RTR0MemObjReserveKernelTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0665bcaa VBoxGuest_RTAssertSetMayPanic +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x06ab676b VBoxGuest_RTLogPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0823cb2f VBoxGuest_RTMemAllocTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x08b98b3c VBoxGuest_RTMpCpuIdFromSetIndex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x08d7a261 VBoxGuest_RTThreadSelfName +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x09458185 VBoxGuest_RTR0MemAreKrnlAndUsrDifferent +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0b14ec2c VBoxGuest_RTThreadCreateF +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0b628628 VBoxGuest_RTSemEventMultiDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0b94344b VBoxGuest_g_pszRTAssertExpr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0d1abebe VBoxGuest_RTLogFlush +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0dfb68c6 VBoxGuest_RTSemEventWait +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0e1a390f VBoxGuest_RTStrToInt8Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x104391d1 VBoxGuest_RTSemMutexDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x113a02d9 VBoxGuest_RTMpOnPair +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x127e9d01 VBoxGuest_RTTimerRequestSystemGranularity +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x143fba5b VBoxGuest_RTThreadPreemptDisable +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x14835127 VBoxGuest_RTAssertMsg2AddWeak +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x16d72922 VBoxGuest_RTR0MemObjIsMapping +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x17d84704 VBoxGuest_RTSpinlockCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x187c16e2 VBoxGuest_RTLogCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x19087f6f VBoxGuest_RTSemEventMultiWaitEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1a79fedb VBoxGuest_RTSemMutexRequestNoResumeDebug +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1abe7e93 VBoxGuest_RTThreadGetNative +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1ad481e4 VBoxGuest_RTLogLogger +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1d042132 VBoxGuest_RTMemContFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1e7216d7 VBoxGuest_RTThreadFromNative +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1efa8169 VBoxGuest_RTThreadUserSignal +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1f152547 VBoxGuest_RTMpGetMaxCpuId +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1fc40aab VBoxGuest_RTR0MemObjReserveUserTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x21b1ee43 VBoxGuest_RTThreadSleepNoLog +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x221205d1 VBoxGuest_RTThreadSetType +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2280771d VBoxGuestIDCCall +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x22bd51c7 VBoxGuest_RTErrConvertToErrno +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x23a552fd VBoxGuest_RTMpIsCpuOnline +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x246391eb VBoxGuest_RTStrToUInt16Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x25938e5f VBoxGuest_RTLogWriteDebugger +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x267da4c4 VBoxGuest_RTThreadIsMain +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x27740cb3 VBoxGuest_RTStrToUInt8Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2902013c VBoxGuest_RTTimerGetSystemGranularity +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x29066860 VBoxGuest_RTStrConvertHexBytes +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2972116c VBoxGuest_RTThreadPreemptIsEnabled +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x29bf3685 VBoxGuest_RTThreadGetName +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2b015c38 VBoxGuest_RTMpOnAll +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2b5f52a8 VBoxGuest_RTMpCurSetIndexAndId +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2bad2a8e VBoxGuest_RTStrToInt16 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2c5b3002 VBoxGuest_RTErrConvertFromErrno +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2d27c026 VBoxGuest_RTSemEventWaitExDebug +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2e136d3c VBoxGuest_RTR0MemObjAllocPhysExTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x309de102 VBoxGuest_RTMpCpuId +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3519743a VBoxGuest_RTMpCurSetIndex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3534ed69 VBoxGuest_RTMemAllocVarTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x353b64a3 VBoxGuest_RTSemMutexRelease +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x353e5a81 VBoxGuest_RTSemEventMultiReset +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x365d44f1 VBoxGuest_RTR0MemObjMapKernelExTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x36e780e0 VBoxGuest_RTStrToUInt8Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x37b2d47a VBoxGuest_RTStrPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x39df70a0 VBoxGuest_RTStrPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3a29bcdb VBoxGuest_RTThreadIsInitialized +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3a77155a VBoxGuest_RTMpOnPairIsConcurrentExecSupported +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3b0a3d87 VBoxGuest_RTMemAllocZVarTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3d00f113 VBoxGuest_g_u32RTAssertLine +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3ed3a918 VBoxGuest_RTAssertMsg1 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3f452f12 VBoxGuest_RTR0MemObjAllocPageTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3f8d56e7 VBoxGuest_RTMemDupTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4002b8b4 VBoxGuest_RTTimeSpecToString +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x405901ff VBoxGuest_RTStrFormatTypeRegister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x428e3456 VBoxGuest_RTR0Term +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x428eb5ba VBoxGuest_RTMemTmpAllocZTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x42c5bff2 VBoxGuest_RTLogRelLogger +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x432b6724 VBoxGuest_RTR0MemObjAllocPhysNCTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x433ceadb VBoxGuest_RTLogWriteStdOut +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4453e900 VBoxGuest_RTR0MemObjProtect +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4484f9ee VBoxGuest_RTTimerStart +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x44ce618e VBoxGuest_RTMemAllocExTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x453e64fb VBoxGuest_RTSemEventMultiSignal +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x45933412 VBoxGuest_RTStrToInt8Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4597652f VBoxGuest_RTStrFormat +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x45d332ae VBoxGuest_RTMemReallocTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x46b36f60 VBoxGuest_RTTimeSpecFromString +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4819f15e VBoxGuest_RTThreadWait +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x48487b79 VBoxGuest_RTLogDefaultInstanceEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4983ea42 VBoxGuest_RTAssertShouldPanic +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4aca506e VBoxGuest_RTStrToUInt32Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4d0161ca VBoxGuest_RTLogBackdoorPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4d47859f VBoxGuest_RTR0MemKernelCopyTo +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4e6d6986 VBoxGuest_RTStrToUInt16 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4e7faa59 VBoxGuest_RTStrToInt64 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x503f488a VBoxGuest_RTLogRelSetDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5045b702 VBoxGuest_RTLogGetDestinations +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5118e8ae VBoxGuest_RTStrToUInt64 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x52041f46 VBoxGuest_RTThreadPreemptIsPossible +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x53602f45 VBoxGuest_RTMemTmpFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x539dd662 VBoxGuest_RTTimeSystemMilliTS +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x53b772da VBoxGuest_RTAssertSetQuiet +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x543527dc VBoxGuest_RTLogWriteStdErr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5460fc01 VBoxGuest_RTTimeImplode +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x54abe5d4 VBoxGuest_RTSemMutexRequestNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x54e45046 VBoxGuest_RTR0MemObjAllocLowTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x55c48692 VBoxGuest_RTMpIsCpuWorkPending +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x57280c42 VBoxGuest_RTR0MemExecDonate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x57406d20 VBoxGuest_RTR0ProcHandleSelf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5929b954 VBoxGuest_RTPowerSignalEvent +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5936a317 VBoxGuest_RTR0MemObjAddress +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x59390acb VBoxGuest_RTTimeIsLeapYear +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5ad3216a VBoxGuest_RTR0MemKernelIsValidAddr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5b0eaa4d VBoxGuest_RTThreadWaitNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5c15981f VBoxGuest_RTMemContAlloc +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5ca67994 VBoxGuest_RTLogDestinations +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x613042f7 VBoxGuest_RTR0MemObjMapUserTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x622a261f VBoxGuest_RTPowerNotificationRegister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x622bf330 VBoxGuest_RTMemAllocZTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x62fd45a8 VBoxGuest_RTTimeNanoTS +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x63ba9fd2 VBoxGuest_RTLogGetDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x64655cd4 VBoxGuest_RTSemEventMultiWaitExDebug +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x64af2463 VBoxGuest_RTStrToInt32 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x650e77e8 VBoxGuest_RTMpGetCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x651c778b VBoxGuest_RTSemEventMultiCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6549a3e0 VBoxGuest_RTTimeFromString +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x65b04e5d VBoxGuest_RTStrToUInt64Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x687ae6ac VBoxGuest_RTStrToUInt64Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6a930d21 VBoxGuest_RTTimerCanDoHighResolution +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6bcedab4 VBoxGuest_RTThreadPreemptIsPending +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6c17021e VBoxGuest_RTThreadUserReset +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6c2df755 VBoxGuest_RTAssertMsg1Weak +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6ca5b4ec VBoxGuest_RTSemEventMultiGetResolution +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6f8ed216 VBoxGuest_RTStrToUInt16Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6fd2e761 VBoxGuest_RTTimeNormalize +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x713f25d5 VBoxGuestIDCClose +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x715699a0 VBoxGuest_RTSpinlockDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x72d1c8f4 VBoxGuestIDCOpen +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x73a23c8b VBoxGuest_RTLogRelPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x73f65247 VBoxGuest_RTStrToInt32Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x744623d2 VBoxGuest_RTSemMutexCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x753d3a3a VBoxGuest_RTLogFormatV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x755479c2 VBoxGuest_RTR0MemObjLockKernelTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x75bee68e VBoxGuest_RTThreadIsSelfKnown +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x76608be1 VBoxGuest_RTSemSpinMutexCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x766a8684 VBoxGuest_RTThreadCreateV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x76b885fb VBoxGuest_RTLogGetDefaultInstanceEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x76bb35b9 VBoxGuest_RTLogLoggerEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x76dbecb7 VBoxGuest_RTProcSelf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x77248ef3 VBoxGuest_RTR0MemObjLockUserTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7841b10d VBoxGuest_RTMpIsCpuPossible +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x78ad2401 VBoxGuest_RTStrToInt8 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x797e701f VBoxGuest_RTLogCreateEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x79aefc0b VBoxGuest_RTTimeNow +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7ac53b51 VBoxGuest_RTR0MemUserCopyFrom +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7ae3b63b VBoxGuest_RTStrToUInt32 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7b423f4c VBoxGuest_RTLogGetFlags +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7cef940f VBoxGuest_RTStrToUInt8 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x80162938 VBoxGuest_RTStrFormatV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8229caac VBoxGuest_RTThreadUserWait +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x847577ac VBoxGuest_RTMpGetOnlineCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x84e86094 VBoxGuest_RTStrPrintfExV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x854806f2 VBoxGuest_RTSpinlockAcquire +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8587f091 VBoxGuest_RTR0MemUserCopyTo +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x85afce7f VBoxGuest_RTMpNotificationRegister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x867199c4 VBoxGuest_RTMpPokeCpu +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x86f9f023 VBoxGuest_RTSemFastMutexRequest +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x87abe8dd VBoxGuest_RTR0MemObjSize +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8ab21a95 VBoxGuest_RTSemSpinMutexDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8b4fd3ef VBoxGuest_RTTimeSystemNanoTS +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8ff5c8e5 VBoxGuest_RTSemEventMultiWaitNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x937cd6a2 VBoxGuest_RTLogComPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9474d99a VBoxGuest_RTSemFastMutexDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x951fbe81 VBoxGuest_RTLogLoggerV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x953b2ba4 VBoxGuest_RTLogSetDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x983f332c VBoxGuest_RTSemSpinMutexRequest +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9853901a VBoxGuest_RTAssertMsg2Add +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x98a8f55f VBoxGuest_RTMpGetPresentCoreCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9909ff3d VBoxGuest_g_pszRTAssertFunction +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x993cc778 VBoxGuest_RTLogRelSetBuffering +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x99ee476f VBoxGuest_RTThreadYield +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9b02b021 VBoxGuest_RTThreadSleep +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9be73ec4 VBoxGuest_RTMpCpuIdToSetIndex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9dc75797 VBoxGuest_RTLogBackdoorPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9e97ef59 VBoxGuest_RTSemEventWaitNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9eb3db26 VBoxGuest_RTR0MemObjAllocPhysTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa21775d1 VBoxGuest_RTSemFastMutexRelease +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa2c23601 VBoxGuest_RTR0MemObjAllocContTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa3ff74bf VBoxGuest_RTStrToInt16Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa52847a2 VBoxGuest_RTR0MemUserIsValidAddr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa5655a80 VBoxGuest_RTTimerReleaseSystemGranularity +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa582aeba VBoxGuest_RTMemExecFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa5f0f1ad VBoxGuest_RTAssertMsg2 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa61aa915 VBoxGuest_RTR0MemObjFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa6209fc7 VBoxGuest_RTLogPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa74258ab VBoxGuest_RTTimeExplode +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa8a47d40 VBoxGuest_RTLogLoggerExV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xaaab8c57 VBoxGuest_RTLogRelGetDefaultInstanceEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xaadc0b5d VBoxGuest_RTTimerChangeInterval +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xab5ee692 VBoxGuest_RTLogWriteUser +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xab871924 VBoxGuest_RTThreadPreemptIsPendingTrusty +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xacaac41d VBoxGuest_g_szRTAssertMsg1 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xadb5cc54 VBoxGuest_RTStrFormatTypeSetUser +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xae21ae1f VBoxGuest_RTThreadCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb2f248c6 VBoxGuest_RTStrCopyP +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb33ca348 VBoxGuest_RTLogRelPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb3f592b9 VBoxGuest_RTThreadNativeSelf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb4227efb VBoxGuest_RTTimeToString +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb42ea0e3 VBoxGuest_g_pszRTAssertFile +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb5676d46 VBoxGuest_RTLogSetCustomPrefixCallback +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb5ec2977 VBoxGuest_RTStrToInt16Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb6fc848a VBoxGuest_RTStrToUInt32Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb9a86152 VBoxGuest_RTStrFormatNumber +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb9e03c35 VBoxGuest_RTTimerStop +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xba349142 VBoxGuest_RTR0MemObjEnterPhysTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbaa97421 VBoxGuest_g_szRTAssertMsg2 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbaf6967f VBoxGuest_RTR0MemObjGetPagePhysAddr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbba29a48 VBoxGuest_RTR0MemObjAddressR3 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbbbc6e84 VBoxGuest_RTSemMutexRequest +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbbccb0c7 VBoxGuest_RTTimeMilliTS +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbc7fbd2a VBoxGuest_RTLogFlushRC +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbcd1b6de VBoxGuest_RTSemSpinMutexRelease +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbd0aa67d VBoxGuest_RTLogFlags +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbeed82c5 VBoxGuest_RTSemEventDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbf5b421e VBoxGuest_RTLogComPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc272f283 VBoxGuest_RTLogGroupSettings +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc2e0f25a VBoxGuest_RTMemTmpAllocTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc312f533 VBoxGuest_RTMpIsCpuPresent +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc4b8857d VBoxGuest_RTThreadPreemptRestore +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc4c265c6 VBoxGuest_RTMpGetPresentCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc5151dcf VBoxGuest_RTLogDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc56f27ff VBoxGuest_RTR0Init +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc57a9c9b VBoxGuest_RTStrToInt32Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc636859e VBoxGuest_RTThreadUserWaitNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc6b243bf VBoxGuest_RTTimerDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc7601bb1 VBoxGuest_RTSemEventMultiWait +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc9978a5f VBoxGuest_RTAssertMsg2V +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcb6463c6 VBoxGuest_RTStrFormatTypeDeregister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcdbc5e5d VBoxGuest_RTSemEventCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcdd40e5b VBoxGuest_RTMpOnOthers +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xceb98390 VBoxGuest_RTMpOnSpecific +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd032523c VBoxGuest_RTThreadGetType +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd1c8b171 VBoxGuest_RTStrCopyEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd2ebb507 VBoxGuest_RTMpGetPresentSet +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd38c5d55 VBoxGuest_RTLogCloneRC +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd4f35c7d VBoxGuest_RTSemSpinMutexTryRequest +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd63c8527 VBoxGuest_RTMemFreeEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd76ab832 VBoxGuest_RTMemDupExTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd8730925 VBoxGuest_RTLogRelLoggerV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdd31359f VBoxGuest_RTLogSetDefaultInstanceThread +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdd699fb2 VBoxGuest_RTSemMutexIsOwned +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xde296aea VBoxGuest_RTAssertAreQuiet +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdead7a1c VBoxGuest_RTLogSetBuffering +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdfaa7e65 VBoxGuest_RTSemEventSignal +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe0453bfd VBoxGuest_RTTimerCreateEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe0afcea8 VBoxGuest_RTR0AssertPanicSystem +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe0ebf12c VBoxGuest_RTAssertMsg2WeakV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe16047ab VBoxGuest_RTLogDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe19acf09 VBoxGuest_RTStrCopy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe208c712 VBoxGuest_RTLogGetGroupSettings +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe2aa3ed6 VBoxGuest_RTR0MemKernelCopyFrom +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe4104f8b VBoxGuest_RTLogFlushToLogger +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe46f3670 VBoxGuest_RTLogRelGetDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe47b5364 VBoxGuest_RTSemEventGetResolution +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe5908cc3 VBoxGuest_RTStrToInt64Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe59fc65c VBoxGuest_RTLogWriteCom +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe6a00917 VBoxGuest_RTThreadIsInInterrupt +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xebbe4bc3 VBoxGuest_RTThreadIsSelfAlive +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xecd69ee8 VBoxGuest_RTAssertMsg2AddWeakV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xed0424f7 VBoxGuest_RTMemFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xed92363f VBoxGuest_RTR0MemObjMapKernelTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf244ec46 VBoxGuest_RTSemMutexRequestDebug +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf2e6e2c5 VBoxGuest_RTStrPrintfEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf3cd37e7 VBoxGuest_RTSemEventWaitEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf450a3d4 VBoxGuest_RTLogCreateExV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf722f7d1 VBoxGuest_RTMemExecAllocTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf7c384ae VBoxGuest_RTStrToInt64Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf81b13f5 VBoxGuest_RTPowerNotificationDeregister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfb5ca767 VBoxGuest_RTSpinlockRelease +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfcfe8381 VBoxGuest_RTMpGetOnlineSet +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfe4fce41 VBoxGuest_RTAssertMayPanic +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfe5c0dc7 VBoxGuest_RTAssertMsg2AddV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfec59082 VBoxGuest_RTLogDumpPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfec8da5c VBoxGuest_RTMpOnAllIsConcurrentSafe +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xffc16d99 VBoxGuest_RTMpGetSet +EXPORT_SYMBOL vmlinux 0x00072638 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x0026280d inet_stream_connect +EXPORT_SYMBOL vmlinux 0x0066651f gnttab_alloc_pages +EXPORT_SYMBOL vmlinux 0x006ed8d2 dev_add_offload +EXPORT_SYMBOL vmlinux 0x0097e374 path_noexec +EXPORT_SYMBOL vmlinux 0x00a380ed set_blocksize +EXPORT_SYMBOL vmlinux 0x00b0d375 put_page +EXPORT_SYMBOL vmlinux 0x00b8c3a7 mempool_alloc +EXPORT_SYMBOL vmlinux 0x00c9d561 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x00d7a5e3 dma_mark_declared_memory_occupied +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00dc1762 blk_get_queue +EXPORT_SYMBOL vmlinux 0x00e36f2c sock_no_mmap +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x010e20d0 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x01122ad2 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr +EXPORT_SYMBOL vmlinux 0x012357b9 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x0132e7ef __vfs_write +EXPORT_SYMBOL vmlinux 0x0139b504 cpu_current_top_of_stack +EXPORT_SYMBOL vmlinux 0x0150ee97 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer +EXPORT_SYMBOL vmlinux 0x0197e8f4 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x01c4096f phy_stop +EXPORT_SYMBOL vmlinux 0x01caaf76 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0x01e1f1ca get_acl +EXPORT_SYMBOL vmlinux 0x01eace20 padata_do_serial +EXPORT_SYMBOL vmlinux 0x0209b187 param_ops_int +EXPORT_SYMBOL vmlinux 0x020cf969 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x02498c5a xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x026055f8 inet6_protos +EXPORT_SYMBOL vmlinux 0x0261b3fd devm_clk_get +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x026e52ee first_ec +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x0276feb4 from_kprojid +EXPORT_SYMBOL vmlinux 0x0298da95 sk_wait_data +EXPORT_SYMBOL vmlinux 0x029e97c0 i8042_install_filter +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a643d6 vfs_unlink +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02a70fd6 dev_add_pack +EXPORT_SYMBOL vmlinux 0x02c36135 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact +EXPORT_SYMBOL vmlinux 0x02f58604 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x03177e88 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x033f112f netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x0343853a __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x035e341d max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x036cac6e xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x038cf64b dma_release_declared_memory +EXPORT_SYMBOL vmlinux 0x03a5c22d skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x03e53be2 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x041b72e6 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x0426ba24 idr_for_each +EXPORT_SYMBOL vmlinux 0x0432fec1 skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0x043b5a2c devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x0451ac98 blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0x0460e59b do_splice_from +EXPORT_SYMBOL vmlinux 0x047cc38d security_task_getsecid +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x048b25d2 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x04a0c951 netif_napi_add +EXPORT_SYMBOL vmlinux 0x04afd4fb release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x04b2d229 file_path +EXPORT_SYMBOL vmlinux 0x04b9af94 acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0x04d110fe current_in_userns +EXPORT_SYMBOL vmlinux 0x04d346d3 simple_release_fs +EXPORT_SYMBOL vmlinux 0x04d3929c pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x0512f901 single_open_size +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x0531b427 dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x05321b61 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x055b3bf0 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x058f5635 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x05a7b544 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x05bd4d40 sock_from_file +EXPORT_SYMBOL vmlinux 0x05e11f6d vc_cons +EXPORT_SYMBOL vmlinux 0x05e20979 security_path_unlink +EXPORT_SYMBOL vmlinux 0x05e5ffcb skb_checksum +EXPORT_SYMBOL vmlinux 0x05f762b7 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x0632fe0c posix_acl_valid +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x067b1997 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x068c7263 ioremap_cache +EXPORT_SYMBOL vmlinux 0x069c1e0f console_stop +EXPORT_SYMBOL vmlinux 0x06a277ff udp_seq_open +EXPORT_SYMBOL vmlinux 0x06a51886 param_set_uint +EXPORT_SYMBOL vmlinux 0x06bf9c68 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0x06c0dae5 __kernel_fpu_end +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x070e0d72 md_check_recovery +EXPORT_SYMBOL vmlinux 0x0720636b alloc_xenballooned_pages +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x074861b4 netif_device_attach +EXPORT_SYMBOL vmlinux 0x076039bd tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x07608604 acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x0769941e start_tty +EXPORT_SYMBOL vmlinux 0x07812919 __free_pages +EXPORT_SYMBOL vmlinux 0x078822e4 gen_pool_create +EXPORT_SYMBOL vmlinux 0x0797bebc xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07bdbd93 blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x07ca9a93 make_kprojid +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07d50a24 csum_partial +EXPORT_SYMBOL vmlinux 0x07e16efc dentry_update_name_case +EXPORT_SYMBOL vmlinux 0x07efd174 scsi_host_put +EXPORT_SYMBOL vmlinux 0x0814248b param_get_ulong +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x084c29e2 scsi_add_device +EXPORT_SYMBOL vmlinux 0x08605111 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x086a9c37 tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0x086d8b79 down_write +EXPORT_SYMBOL vmlinux 0x087f0c8b genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x0897287b acpi_disable_all_gpes +EXPORT_SYMBOL vmlinux 0x08a0df68 mntput +EXPORT_SYMBOL vmlinux 0x08a5c5f4 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x08ddecf1 blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x08fd4b26 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x090bd510 eisa_bus_type +EXPORT_SYMBOL vmlinux 0x09178ec3 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x0952a0d2 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key +EXPORT_SYMBOL vmlinux 0x0982551c nla_put +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x09913de0 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x09925de2 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x09a9dd2d i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x09ab95bd dev_trans_start +EXPORT_SYMBOL vmlinux 0x09b02b09 d_alloc +EXPORT_SYMBOL vmlinux 0x09b1c515 nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0x09bf0d28 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09e88526 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x0a1b4e79 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x0a207563 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr +EXPORT_SYMBOL vmlinux 0x0a373226 crc32_le_shift +EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell +EXPORT_SYMBOL vmlinux 0x0a47b918 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x0a661faa lg_local_unlock +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aa9adf3 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ad7426a scsi_ioctl +EXPORT_SYMBOL vmlinux 0x0ae1d189 vfs_mknod +EXPORT_SYMBOL vmlinux 0x0af0dbce inet_sendmsg +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b1be2c4 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b22388b freezing_slow_path +EXPORT_SYMBOL vmlinux 0x0b33b7b0 vm_mmap +EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b4b898e blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b62767d inet6_ioctl +EXPORT_SYMBOL vmlinux 0x0b71b850 I_BDEV +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b861539 param_set_charp +EXPORT_SYMBOL vmlinux 0x0b905c66 __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x0b96c21d blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x0b9d891a nf_unregister_hook +EXPORT_SYMBOL vmlinux 0x0bbad7b2 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bcc90a1 mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x0bcd6db2 swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x0bd2c455 filemap_flush +EXPORT_SYMBOL vmlinux 0x0bdad31c mpage_writepage +EXPORT_SYMBOL vmlinux 0x0be7dc4a kill_fasync +EXPORT_SYMBOL vmlinux 0x0bebbac5 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x0bf6d8b0 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x0c03fecb tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x0c23311a get_fs_type +EXPORT_SYMBOL vmlinux 0x0c261fc1 acpi_device_hid +EXPORT_SYMBOL vmlinux 0x0c285555 iterate_mounts +EXPORT_SYMBOL vmlinux 0x0c3980f9 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x0c3c3956 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c46e6c5 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x0c52309e generic_end_io_acct +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c59e532 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x0c69c353 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x0c6a91ba skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x0c7a7cbd scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x0c877bf1 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x0c894937 register_netdevice +EXPORT_SYMBOL vmlinux 0x0c8c3b8e blk_integrity_register +EXPORT_SYMBOL vmlinux 0x0c929c7c __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0ca7b7a8 acpi_check_region +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0ccac2cc inet6_offloads +EXPORT_SYMBOL vmlinux 0x0cdb7d12 __kernel_fpu_begin +EXPORT_SYMBOL vmlinux 0x0ce4d784 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x0cfdd54a invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x0d032ce6 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x0d041a98 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0x0d1103af tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x0d149277 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x0d3dda14 acpi_get_type +EXPORT_SYMBOL vmlinux 0x0d4005ee pci_iomap_range +EXPORT_SYMBOL vmlinux 0x0d452648 __register_binfmt +EXPORT_SYMBOL vmlinux 0x0d458e53 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x0d4a8775 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x0d4d0e71 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d6979af agp_copy_info +EXPORT_SYMBOL vmlinux 0x0d7cfdb6 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0daeb716 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x0db1a28c mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0x0db7718b ps2_handle_response +EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex +EXPORT_SYMBOL vmlinux 0x0dc5a6b4 genphy_update_link +EXPORT_SYMBOL vmlinux 0x0dd599df __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x0e001fbe dump_align +EXPORT_SYMBOL vmlinux 0x0e3cbcf3 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x0e623dd1 devm_ioremap +EXPORT_SYMBOL vmlinux 0x0e6a8e4b scsi_print_sense +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e77a423 km_new_mapping +EXPORT_SYMBOL vmlinux 0x0e99a6ff lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x0eaf451e hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0eb1ef6b jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x0ebb0e5d inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ee22bc1 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy +EXPORT_SYMBOL vmlinux 0x0efc1b4e simple_getattr +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f1a18fa nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0x0f2126e4 __nd_driver_register +EXPORT_SYMBOL vmlinux 0x0f441c90 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f8a4321 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x0f980652 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x0f9d6ec1 lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0x0fa8ac8b dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fb4dcd4 swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0x0fd00a68 acpi_clear_event +EXPORT_SYMBOL vmlinux 0x0fed1b6e dup_iter +EXPORT_SYMBOL vmlinux 0x0fee0e19 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress +EXPORT_SYMBOL vmlinux 0x102a3ae3 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x102c56de irq_regs +EXPORT_SYMBOL vmlinux 0x10313a79 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x1035eec9 elevator_change +EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x107d2185 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x1089bd64 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x1093eaa1 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x109cfcf7 find_vma +EXPORT_SYMBOL vmlinux 0x109f1a1a vme_slave_request +EXPORT_SYMBOL vmlinux 0x10a661bc pci_remove_bus +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x11145431 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x11247300 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x113a960c bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x1187d77e cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x119950fd scm_detach_fds +EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x11a3191f __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x11dd01ad intel_scu_ipc_command +EXPORT_SYMBOL vmlinux 0x11e29508 module_refcount +EXPORT_SYMBOL vmlinux 0x11e73573 search_binary_handler +EXPORT_SYMBOL vmlinux 0x11f0a23f agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x11f96848 __sb_end_write +EXPORT_SYMBOL vmlinux 0x11fa82fa devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0x11fcf927 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x1205a696 check_disk_change +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x12166328 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x12176f91 free_buffer_head +EXPORT_SYMBOL vmlinux 0x12179f28 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x121b4e4b memremap +EXPORT_SYMBOL vmlinux 0x1242cbdd d_find_any_alias +EXPORT_SYMBOL vmlinux 0x1250c7e1 _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x12564f6a phy_suspend +EXPORT_SYMBOL vmlinux 0x1265e29c cont_write_begin +EXPORT_SYMBOL vmlinux 0x126bf84c netif_device_detach +EXPORT_SYMBOL vmlinux 0x126d2af9 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x12853028 vga_switcheroo_init_domain_pm_ops +EXPORT_SYMBOL vmlinux 0x12a1dfa3 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12a578e5 release_pages +EXPORT_SYMBOL vmlinux 0x12c1e94b write_cache_pages +EXPORT_SYMBOL vmlinux 0x12c2540a vlan_vid_del +EXPORT_SYMBOL vmlinux 0x12c3aa43 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x12d7c062 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc +EXPORT_SYMBOL vmlinux 0x12e5e6b6 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x12e6c146 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x12f4d8cd tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x130c67c8 bmap +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x1326e377 vfs_link +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc +EXPORT_SYMBOL vmlinux 0x133856b0 dma_alloc_from_coherent +EXPORT_SYMBOL vmlinux 0x133b4944 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x13468a44 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x134fa178 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x13963c26 drop_super +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13e9c5ec ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13f9de34 cpu_info +EXPORT_SYMBOL vmlinux 0x1420b379 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x1420dcb0 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x1421f6ad vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x142bebdd i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x1447f2e1 input_register_device +EXPORT_SYMBOL vmlinux 0x144a167c path_is_under +EXPORT_SYMBOL vmlinux 0x1452564f inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0x14649488 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x146c32b6 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x14730279 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x14776618 inet_del_offload +EXPORT_SYMBOL vmlinux 0x1499d603 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x149b000f skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x14b73163 pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x14c7229d pci_dev_driver +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14d8da6c netdev_info +EXPORT_SYMBOL vmlinux 0x14e2765c cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x14e5e7f1 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x14e96f3e md_error +EXPORT_SYMBOL vmlinux 0x14f1c594 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x14fada05 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x14fc013f blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x150389d6 acpi_processor_power_init_bm_check +EXPORT_SYMBOL vmlinux 0x15218790 dev_load +EXPORT_SYMBOL vmlinux 0x1521bd13 param_get_short +EXPORT_SYMBOL vmlinux 0x1547bfd6 __wait_on_bit +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x1560dc1a del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x1564c7ea inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0x156a8a59 down_trylock +EXPORT_SYMBOL vmlinux 0x15799c11 _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x158ea1b3 __kernel_write +EXPORT_SYMBOL vmlinux 0x15a27381 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x15b9aa70 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15e20fa9 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x15e601b0 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x1603eebd ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x160dd533 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x160ea4c8 sfi_disabled +EXPORT_SYMBOL vmlinux 0x1616cb30 acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0x161c4c4b __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null +EXPORT_SYMBOL vmlinux 0x1641b1e1 file_ns_capable +EXPORT_SYMBOL vmlinux 0x164596be vc_resize +EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 +EXPORT_SYMBOL vmlinux 0x1683a50b radix_tree_delete +EXPORT_SYMBOL vmlinux 0x168a9450 dev_notice +EXPORT_SYMBOL vmlinux 0x168cf911 nla_reserve +EXPORT_SYMBOL vmlinux 0x16a76d24 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x16b9ef5a inet_frag_kill +EXPORT_SYMBOL vmlinux 0x16ca9338 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x16dc4d1f fence_init +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16ea34d9 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x1707b49a dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x170c25ee acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x171747eb i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x1717bdd6 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x172fade2 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x1742fdcd __vfs_read +EXPORT_SYMBOL vmlinux 0x17440705 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x174746c7 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x175f8b52 d_instantiate +EXPORT_SYMBOL vmlinux 0x1784e4cf tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x1789dad5 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x179651ac _raw_read_lock +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x17f389d9 __genl_register_family +EXPORT_SYMBOL vmlinux 0x17fa37b2 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x17fbd52d page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x181342d0 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x181df745 mmc_can_discard +EXPORT_SYMBOL vmlinux 0x18211be8 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x1827c406 dentry_unhash +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x18354b92 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x1840d24a ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x18643cc1 uart_match_port +EXPORT_SYMBOL vmlinux 0x186ab81f __skb_get_hash +EXPORT_SYMBOL vmlinux 0x186ef6e1 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x1871db37 mmc_put_card +EXPORT_SYMBOL vmlinux 0x1876d46d path_get +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x18d96501 atomic64_dec_if_positive_cx8 +EXPORT_SYMBOL vmlinux 0x18e04718 bdev_read_only +EXPORT_SYMBOL vmlinux 0x18e504e8 napi_get_frags +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18f1560d dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x18fdd924 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x1916e38c _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x19473f16 blk_peek_request +EXPORT_SYMBOL vmlinux 0x1951c4e1 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x1961ca9b param_ops_bool +EXPORT_SYMBOL vmlinux 0x196def78 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x199574d8 setattr_copy +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x19b74280 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19cc58b7 __netif_schedule +EXPORT_SYMBOL vmlinux 0x19dd42f6 vme_irq_request +EXPORT_SYMBOL vmlinux 0x19e24aa3 page_waitqueue +EXPORT_SYMBOL vmlinux 0x19fbab84 register_key_type +EXPORT_SYMBOL vmlinux 0x1a0ccb44 d_invalidate +EXPORT_SYMBOL vmlinux 0x1a2aaa45 inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a5266ba posix_lock_file +EXPORT_SYMBOL vmlinux 0x1a536b95 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x1a541852 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x1a58427b sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x1a5d9bbd acpi_pm_device_run_wake +EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch +EXPORT_SYMBOL vmlinux 0x1a6d8f03 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x1a7c734a fb_validate_mode +EXPORT_SYMBOL vmlinux 0x1aae1c2b mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x1abdd62e ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x1ae09f75 _raw_write_unlock_irq +EXPORT_SYMBOL vmlinux 0x1afb1aaa acpi_mark_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b096d5b inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b37cddd eth_header_parse +EXPORT_SYMBOL vmlinux 0x1b3e7fa3 get_tz_trend +EXPORT_SYMBOL vmlinux 0x1b4840fc sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x1b570d23 acpi_warning +EXPORT_SYMBOL vmlinux 0x1b5e65ec would_dump +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b7341c8 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x1b7a4413 bio_clone_bioset +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b853d0d nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b943a6b block_write_begin +EXPORT_SYMBOL vmlinux 0x1ba19d75 dquot_transfer +EXPORT_SYMBOL vmlinux 0x1ba63dc0 skb_split +EXPORT_SYMBOL vmlinux 0x1bac5d82 get_phy_device +EXPORT_SYMBOL vmlinux 0x1bb198fe save_mount_options +EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer +EXPORT_SYMBOL vmlinux 0x1bb90ad2 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x1bba4370 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x1bc9fd46 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x1bd4b8b1 d_instantiate_unique +EXPORT_SYMBOL vmlinux 0x1be1dd26 lg_global_lock +EXPORT_SYMBOL vmlinux 0x1c114a6a vm_event_states +EXPORT_SYMBOL vmlinux 0x1c1cdd5c inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x1c2d93ec pci_disable_device +EXPORT_SYMBOL vmlinux 0x1c5bca43 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x1c6aed56 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x1c8a04b0 acpi_reset +EXPORT_SYMBOL vmlinux 0x1c93909a mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0x1c9d8ca0 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x1ca8a4b6 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x1ce86d70 register_netdev +EXPORT_SYMBOL vmlinux 0x1cff571e nobh_writepage +EXPORT_SYMBOL vmlinux 0x1d05f5bd trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x1d1758fd __nla_put +EXPORT_SYMBOL vmlinux 0x1d1fbb28 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x1d23db4d md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x1d271cea vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0x1d4634f0 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x1d68f944 generic_write_end +EXPORT_SYMBOL vmlinux 0x1d6ba276 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x1d7ec392 set_posix_acl +EXPORT_SYMBOL vmlinux 0x1d81d359 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x1db8379d napi_gro_flush +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1dd5a2f0 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x1de62564 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x1de74f72 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0x1dec163b sk_dst_check +EXPORT_SYMBOL vmlinux 0x1dffd62e max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x1e0335da seq_printf +EXPORT_SYMBOL vmlinux 0x1e036c98 acpi_set_gpe +EXPORT_SYMBOL vmlinux 0x1e047854 warn_slowpath_fmt +EXPORT_SYMBOL vmlinux 0x1e0c2be4 ioremap_wc +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e3bd117 __elv_add_request +EXPORT_SYMBOL vmlinux 0x1e4574f9 __secpath_destroy +EXPORT_SYMBOL vmlinux 0x1e46bab0 netdev_emerg +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea7b2fd netdev_crit +EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector +EXPORT_SYMBOL vmlinux 0x1ec6e935 icmpv6_send +EXPORT_SYMBOL vmlinux 0x1ed52dbe xfrm_register_mode +EXPORT_SYMBOL vmlinux 0x1edca132 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x1ee15143 devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0x1f19bc2c blk_end_request +EXPORT_SYMBOL vmlinux 0x1f210f1f adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x1f239b99 vga_con +EXPORT_SYMBOL vmlinux 0x1f2f7536 blkdev_put +EXPORT_SYMBOL vmlinux 0x1f2f8ee6 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x1f40ad0b clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x1f51f114 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x1f5c23b1 inode_change_ok +EXPORT_SYMBOL vmlinux 0x1f5f55b7 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x1f660d04 posix_test_lock +EXPORT_SYMBOL vmlinux 0x1f6cda9a skb_find_text +EXPORT_SYMBOL vmlinux 0x1f71e00f i2c_master_send +EXPORT_SYMBOL vmlinux 0x1f76aa57 softnet_data +EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x1f9e7741 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x1fb31b17 netdev_features_change +EXPORT_SYMBOL vmlinux 0x1fbacb6f scsi_target_resume +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fca1021 key_task_permission +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fda98d6 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x1fe0e7c3 up_read +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x1fed47cd blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x2005e68a acpi_remove_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x20092385 acpi_enter_sleep_state_s4bios +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x201b0ac0 lg_global_unlock +EXPORT_SYMBOL vmlinux 0x20205f64 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0x20263e8a __quota_error +EXPORT_SYMBOL vmlinux 0x202f4e92 acpi_extract_package +EXPORT_SYMBOL vmlinux 0x2039c511 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x205869f4 set_bh_page +EXPORT_SYMBOL vmlinux 0x2058afe1 single_release +EXPORT_SYMBOL vmlinux 0x205b9ba6 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x206f4f48 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x2075f60e vme_master_request +EXPORT_SYMBOL vmlinux 0x207cf4d8 blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0x207ec9a3 nvm_get_blk +EXPORT_SYMBOL vmlinux 0x2084deb2 __skb_checksum +EXPORT_SYMBOL vmlinux 0x208739f6 acpi_load_table +EXPORT_SYMBOL vmlinux 0x208ba319 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x209b350c nf_reinject +EXPORT_SYMBOL vmlinux 0x209d5185 sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x209f8f4d sg_miter_start +EXPORT_SYMBOL vmlinux 0x20a406fe dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20ae58d0 __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0x20b554f8 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x20c2a7db xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20c6192f intel_scu_ipc_ioread32 +EXPORT_SYMBOL vmlinux 0x20d9fc73 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x20dd4091 request_key_async +EXPORT_SYMBOL vmlinux 0x20ddd744 sk_receive_skb +EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x20ef4f75 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x20f3f09b input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x20f95c99 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x21621380 current_task +EXPORT_SYMBOL vmlinux 0x216c373d mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x2198ac67 skb_dequeue +EXPORT_SYMBOL vmlinux 0x2199adcb tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x21a701fe fence_signal +EXPORT_SYMBOL vmlinux 0x21b88c43 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21e992a5 ida_simple_get +EXPORT_SYMBOL vmlinux 0x21fa1ffb scsi_device_put +EXPORT_SYMBOL vmlinux 0x2207a57f prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x222b730b pskb_expand_head +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x22334164 get_unmapped_area +EXPORT_SYMBOL vmlinux 0x223bb541 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x224d80a2 mpage_writepages +EXPORT_SYMBOL vmlinux 0x2256fafa div64_u64_rem +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x226c46e5 setup_new_exec +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x2289311d pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22d4b37d inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x22dbfc06 console_start +EXPORT_SYMBOL vmlinux 0x22dce054 udp_set_csum +EXPORT_SYMBOL vmlinux 0x22dfdd06 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x22fc4f3a trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x232d18ec rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x233646de genlmsg_put +EXPORT_SYMBOL vmlinux 0x23406715 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x2345c190 dquot_resume +EXPORT_SYMBOL vmlinux 0x2348ca25 bdevname +EXPORT_SYMBOL vmlinux 0x2350e4bd backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x235c2dc6 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x236399d9 inode_init_once +EXPORT_SYMBOL vmlinux 0x2364adcd blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x23807591 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x23833ca8 free_task +EXPORT_SYMBOL vmlinux 0x23a4d525 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x23a548e9 tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23ab824b dev_mc_sync +EXPORT_SYMBOL vmlinux 0x23ac455d ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x23f77e61 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x243b88f2 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x244c702e dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x2458cd01 unload_nls +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x246020de vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x24827895 dev_get_flags +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x248aa838 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x2499b5de ps2_drain +EXPORT_SYMBOL vmlinux 0x249a12be pci_choose_state +EXPORT_SYMBOL vmlinux 0x249d4aff __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x24a7e10b max8925_set_bits +EXPORT_SYMBOL vmlinux 0x24d6bb50 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x24f60a12 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x24f62170 ata_print_version +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x250a1c90 dump_truncate +EXPORT_SYMBOL vmlinux 0x250bed57 mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x25464cd4 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x256d0056 kill_bdev +EXPORT_SYMBOL vmlinux 0x256e4dc7 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x257ce822 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x2582f53f bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x258518b5 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x25b9a46f qdisc_list_del +EXPORT_SYMBOL vmlinux 0x25be7d0b up_write +EXPORT_SYMBOL vmlinux 0x25cbcc6e d_set_fallthru +EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x260790f4 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x262784c4 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux +EXPORT_SYMBOL vmlinux 0x266ad7d3 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x268cc6a2 sys_close +EXPORT_SYMBOL vmlinux 0x26b3e79f blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x26bcfa9c acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0x26c7c853 agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x26cb34a2 mempool_create +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x26ebfa7d km_report +EXPORT_SYMBOL vmlinux 0x271805b8 phy_device_remove +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x27208dcd ps2_begin_command +EXPORT_SYMBOL vmlinux 0x27294c6f dget_parent +EXPORT_SYMBOL vmlinux 0x272fb2c0 tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0x2746236d __d_drop +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274b0294 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x274bb050 clkdev_drop +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x274ef82f reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0x276828fd ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0x277b932f agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x27882b9b ida_simple_remove +EXPORT_SYMBOL vmlinux 0x278b8a4f pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x278fa2a6 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x27989a92 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x279deecc dev_mc_flush +EXPORT_SYMBOL vmlinux 0x27ae7d0c ec_transaction +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27e3bb09 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x27ffe683 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x2840757d generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x287557d1 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x2884e294 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x2890042f nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28ab60c1 tty_write_room +EXPORT_SYMBOL vmlinux 0x28b715a6 isapnp_cfg_end +EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available +EXPORT_SYMBOL vmlinux 0x29015c26 dev_alloc_name +EXPORT_SYMBOL vmlinux 0x292f53dc kill_pid +EXPORT_SYMBOL vmlinux 0x2939baa3 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x294fbab3 netdev_warn +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x2960c69c x86_hyper_xen +EXPORT_SYMBOL vmlinux 0x29899e1a dquot_alloc +EXPORT_SYMBOL vmlinux 0x298f1766 pnp_possible_config +EXPORT_SYMBOL vmlinux 0x29a0772a arp_send +EXPORT_SYMBOL vmlinux 0x29a16802 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x29a90f00 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x29ac8936 block_commit_write +EXPORT_SYMBOL vmlinux 0x29bc0efa tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x29c34879 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x29cd334e skb_trim +EXPORT_SYMBOL vmlinux 0x29cf20c1 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x29dc064b elv_rb_find +EXPORT_SYMBOL vmlinux 0x29fdda53 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a40251e agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x2a4d732e pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x2a521108 get_super_thawed +EXPORT_SYMBOL vmlinux 0x2a565a25 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x2a59d5d4 dma_release_from_coherent +EXPORT_SYMBOL vmlinux 0x2a5def2f intel_scu_ipc_iowrite32 +EXPORT_SYMBOL vmlinux 0x2a6181b1 arch_dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x2a6756a2 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x2a813c49 lwtunnel_input +EXPORT_SYMBOL vmlinux 0x2a83a11c vga_switcheroo_get_client_state +EXPORT_SYMBOL vmlinux 0x2a8ad21a kobject_set_name +EXPORT_SYMBOL vmlinux 0x2a9f4e65 lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp +EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x2abaf1af security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2ae5d336 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b1544c7 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b678539 seq_putc +EXPORT_SYMBOL vmlinux 0x2b6b7eb5 tcp_filter +EXPORT_SYMBOL vmlinux 0x2b795e35 vfs_create +EXPORT_SYMBOL vmlinux 0x2b7d5a49 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x2b84cc3e write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x2b9187ea kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0x2b970dd9 input_register_handle +EXPORT_SYMBOL vmlinux 0x2b99149f alloc_disk_node +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2bb55d6e acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x2be11e4b __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x2bfeb410 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c3f72ed dquot_quota_off +EXPORT_SYMBOL vmlinux 0x2c46958c __ps2_command +EXPORT_SYMBOL vmlinux 0x2c4b6e73 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x2c65452b __devm_request_region +EXPORT_SYMBOL vmlinux 0x2c71a7fc filemap_fdatawait +EXPORT_SYMBOL vmlinux 0x2c763d32 sock_no_connect +EXPORT_SYMBOL vmlinux 0x2c94466c eth_type_trans +EXPORT_SYMBOL vmlinux 0x2c994707 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x2ca319a6 wrmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x2cb29b88 skb_make_writable +EXPORT_SYMBOL vmlinux 0x2cb9abeb serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x2cc40ecf fence_remove_callback +EXPORT_SYMBOL vmlinux 0x2cf637c9 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x2d004a15 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d144e21 rdmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x2d15de94 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d334299 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d37342e cpu_online_mask +EXPORT_SYMBOL vmlinux 0x2d56f1cd may_umount +EXPORT_SYMBOL vmlinux 0x2d9f6bc9 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x2d9fbeef scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0x2da60ed3 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x2da87cfc __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x2da8e923 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x2dc462b3 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu +EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink +EXPORT_SYMBOL vmlinux 0x2ddafb53 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x2dedc4c2 acpi_format_exception +EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write +EXPORT_SYMBOL vmlinux 0x2e0fbb04 fasync_helper +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e2dc3aa __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0x2e329bb8 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x2e33dceb __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x2e423c32 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x2e4cb012 __get_user_pages +EXPORT_SYMBOL vmlinux 0x2e518644 bioset_free +EXPORT_SYMBOL vmlinux 0x2e61fd28 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x2e660964 security_file_permission +EXPORT_SYMBOL vmlinux 0x2e78066f __tcf_hash_release +EXPORT_SYMBOL vmlinux 0x2e79809a register_qdisc +EXPORT_SYMBOL vmlinux 0x2e8cdd37 tc_classify +EXPORT_SYMBOL vmlinux 0x2ec42ea7 simple_fill_super +EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x2ecca71a jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x2ed4f03a i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x2ee0433c inet_ioctl +EXPORT_SYMBOL vmlinux 0x2ee9fb32 phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource +EXPORT_SYMBOL vmlinux 0x2f1d39f4 kernel_bind +EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x2f4254d0 tcp_destroy_cgroup +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f74a72f fb_pan_display +EXPORT_SYMBOL vmlinux 0x2f773463 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x2f7a0343 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x2f9aefa4 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fca5851 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x2fdac583 security_mmap_file +EXPORT_SYMBOL vmlinux 0x2fdbaba3 bio_integrity_advance +EXPORT_SYMBOL vmlinux 0x2fdfbe4e filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2ff9917b dev_addr_init +EXPORT_SYMBOL vmlinux 0x301ba631 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x303d4a68 dump_skip +EXPORT_SYMBOL vmlinux 0x30437ef8 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x3062b725 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x306acf72 blk_rq_init +EXPORT_SYMBOL vmlinux 0x307921ef blk_make_request +EXPORT_SYMBOL vmlinux 0x307a0d05 fb_get_mode +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x30928d17 input_reset_device +EXPORT_SYMBOL vmlinux 0x30942ae2 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30b04526 ida_init +EXPORT_SYMBOL vmlinux 0x30b3a467 tty_unlock +EXPORT_SYMBOL vmlinux 0x30c3d516 lockref_put_return +EXPORT_SYMBOL vmlinux 0x30d233ed blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x30d436af __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30f688a7 neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x3102a378 sk_free +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310917fe sort +EXPORT_SYMBOL vmlinux 0x311cf8b7 inode_init_always +EXPORT_SYMBOL vmlinux 0x31288e09 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x312a1ad8 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x31380354 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x3139280c dev_err +EXPORT_SYMBOL vmlinux 0x313c3de3 pipe_lock +EXPORT_SYMBOL vmlinux 0x313c9caf fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x3148a748 pnp_start_dev +EXPORT_SYMBOL vmlinux 0x314e9074 revert_creds +EXPORT_SYMBOL vmlinux 0x316d31e9 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x316d50e0 dcb_setapp +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x3191f109 __krealloc +EXPORT_SYMBOL vmlinux 0x31af083a skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x31b220a1 pci_enable_msix +EXPORT_SYMBOL vmlinux 0x31b6a7da security_path_truncate +EXPORT_SYMBOL vmlinux 0x31df29b3 nvm_end_io +EXPORT_SYMBOL vmlinux 0x31e76b57 recalibrate_cpu_khz +EXPORT_SYMBOL vmlinux 0x31ebb847 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x31ec44a0 _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0x31f0bb78 __kmap_atomic_idx +EXPORT_SYMBOL vmlinux 0x3202435a wrmsr_safe_regs +EXPORT_SYMBOL vmlinux 0x32312c31 put_cmsg +EXPORT_SYMBOL vmlinux 0x32350ed6 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x32410659 nd_device_register +EXPORT_SYMBOL vmlinux 0x3243a457 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x3258b80c shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom +EXPORT_SYMBOL vmlinux 0x328b1561 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x32a72305 netdev_printk +EXPORT_SYMBOL vmlinux 0x32b5fa2f mem_section +EXPORT_SYMBOL vmlinux 0x32d889ae pci_iomap +EXPORT_SYMBOL vmlinux 0x32dc8c9f nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x32de1ab3 tty_register_device +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x32e821d8 fb_class +EXPORT_SYMBOL vmlinux 0x32f61d8e blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0x32f8962f iget5_locked +EXPORT_SYMBOL vmlinux 0x3305c460 seq_open +EXPORT_SYMBOL vmlinux 0x33201504 fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0x3333e634 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x335e988d sk_capable +EXPORT_SYMBOL vmlinux 0x33849545 blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x339a88b8 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x33a6cfb7 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33db6380 posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x33e925a2 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x340758db ping_prot +EXPORT_SYMBOL vmlinux 0x340df4c0 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x34125497 mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0x34127593 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x342f60fe apm_info +EXPORT_SYMBOL vmlinux 0x343c42f1 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x3446592b bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x349b2eaf nf_log_trace +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34b9ece1 address_space_init_once +EXPORT_SYMBOL vmlinux 0x34de7b02 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x34edb87e __mdiobus_register +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34f83df1 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x353a58c0 d_add_ci +EXPORT_SYMBOL vmlinux 0x353de98f cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x353e21e3 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x354d8cf9 ip6_xmit +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x356e17c4 blk_mq_all_tag_busy_iter +EXPORT_SYMBOL vmlinux 0x356f9511 param_set_bint +EXPORT_SYMBOL vmlinux 0x3584235a __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x35873d9d pci_release_region +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35a90400 bio_endio +EXPORT_SYMBOL vmlinux 0x35a99911 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x35e02c7e generic_make_request +EXPORT_SYMBOL vmlinux 0x35fb16db request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x36007adb alloc_disk +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x360b5f6d scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x3613bbba fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x36386f64 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x3650de35 ether_setup +EXPORT_SYMBOL vmlinux 0x3654ffce call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x365fa1c1 netif_rx +EXPORT_SYMBOL vmlinux 0x3676f3fb find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x367ba856 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x36918ff5 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x369ccb6c tty_port_close_start +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36c6af51 intel_scu_ipc_iowrite8 +EXPORT_SYMBOL vmlinux 0x36c6b807 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x36efd357 udp_disconnect +EXPORT_SYMBOL vmlinux 0x36efdb61 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x36f224fc mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x36f659cd dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x36fdda67 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x370f9850 efi +EXPORT_SYMBOL vmlinux 0x371dd8f1 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x37201c5f tty_check_change +EXPORT_SYMBOL vmlinux 0x3722cc61 uart_get_divisor +EXPORT_SYMBOL vmlinux 0x373b4cc7 dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x37401fff d_alloc_name +EXPORT_SYMBOL vmlinux 0x3743767e pci_match_id +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x37489b83 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x37552520 lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x3757cf64 led_update_brightness +EXPORT_SYMBOL vmlinux 0x379dee5f trace_print_symbols_seq_u64 +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37c9994e inet_frag_find +EXPORT_SYMBOL vmlinux 0x37cb30ee xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37df471c sget_userns +EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 +EXPORT_SYMBOL vmlinux 0x37eb8953 param_set_short +EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x38099e13 wrmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x380fe29b netlink_set_err +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x381ccc13 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x38282cfa neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x38364b41 page_cache_next_hole +EXPORT_SYMBOL vmlinux 0x383c02f2 serio_close +EXPORT_SYMBOL vmlinux 0x38462dd7 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x38500d86 dquot_enable +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x388799f6 unregister_kmmio_probe +EXPORT_SYMBOL vmlinux 0x388ad2c3 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x388e1ccf pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38cf470c pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x38e55616 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x390502d1 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages +EXPORT_SYMBOL vmlinux 0x390b9800 ps2_init +EXPORT_SYMBOL vmlinux 0x3913c248 bdi_init +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x394357bb pcim_pin_device +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x394fcd61 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x3954824e scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x396515cf dev_change_carrier +EXPORT_SYMBOL vmlinux 0x396bf5d5 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x3988de94 simple_readpage +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x39a055f3 acpi_remove_gpe_handler +EXPORT_SYMBOL vmlinux 0x39abc73b __register_chrdev +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39bbb380 ppp_input_error +EXPORT_SYMBOL vmlinux 0x39c71537 inet6_add_offload +EXPORT_SYMBOL vmlinux 0x39d2c62e rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x39f1c2f4 ida_get_new_above +EXPORT_SYMBOL vmlinux 0x3a046e7a nf_log_unregister +EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify +EXPORT_SYMBOL vmlinux 0x3a18c430 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x3a1ac054 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x3a2a305e inode_needs_sync +EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush +EXPORT_SYMBOL vmlinux 0x3a384715 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x3a3f5146 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x3a49328c jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x3a65a808 request_firmware +EXPORT_SYMBOL vmlinux 0x3a65fb24 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x3a9931b7 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3ab73ef4 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x3abb2f6c input_allocate_device +EXPORT_SYMBOL vmlinux 0x3ad5b432 d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0x3ae22223 simple_unlink +EXPORT_SYMBOL vmlinux 0x3aee4c6a nvm_register +EXPORT_SYMBOL vmlinux 0x3b201620 machine_real_restart +EXPORT_SYMBOL vmlinux 0x3b2313bc gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x3b24db2e dev_change_flags +EXPORT_SYMBOL vmlinux 0x3b5d5bba __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6d1e36 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x3b6f6cd2 udp_table +EXPORT_SYMBOL vmlinux 0x3b85ccc4 seq_release +EXPORT_SYMBOL vmlinux 0x3b898375 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x3b8f068d kern_unmount +EXPORT_SYMBOL vmlinux 0x3b8fe8b8 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x3bad4038 cdev_add +EXPORT_SYMBOL vmlinux 0x3bae9776 fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0x3bb5114a prepare_to_wait +EXPORT_SYMBOL vmlinux 0x3bb9de88 blkdev_get +EXPORT_SYMBOL vmlinux 0x3bbc6381 clear_wb_congested +EXPORT_SYMBOL vmlinux 0x3bbf5058 find_lock_entry +EXPORT_SYMBOL vmlinux 0x3bc7fdc7 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x3c2e774c gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0x3c351670 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x3c3b77cc set_security_override +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c4f1ece ppp_dev_name +EXPORT_SYMBOL vmlinux 0x3c558be0 tty_hangup +EXPORT_SYMBOL vmlinux 0x3c6c89dc padata_add_cpu +EXPORT_SYMBOL vmlinux 0x3c6dff47 param_ops_short +EXPORT_SYMBOL vmlinux 0x3c6fd4fa vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x3c76756c nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c869396 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x3ca6042d __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x3cb3931b sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x3cc6943c path_put +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cec93c0 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x3d1391e2 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x3d2c6949 dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0x3d35a770 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x3d44d1e9 audit_log +EXPORT_SYMBOL vmlinux 0x3d5d90de swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x3d68d9c2 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x3d753d06 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x3d7c1ed7 msrs_alloc +EXPORT_SYMBOL vmlinux 0x3d81474b arp_xmit +EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start +EXPORT_SYMBOL vmlinux 0x3da19c2c neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x3dbbbc25 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x3dc18726 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dd976b8 set_wb_congested +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e2ae3a8 acpi_release_global_lock +EXPORT_SYMBOL vmlinux 0x3e654f49 acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x3e68f8fc copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x3e7dba5f pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get +EXPORT_SYMBOL vmlinux 0x3e9a594a blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x3ebec468 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x3ed90024 sock_init_data +EXPORT_SYMBOL vmlinux 0x3ef78d80 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x3eff5ac2 intel_scu_ipc_writev +EXPORT_SYMBOL vmlinux 0x3f026730 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f1602c7 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x3f20ca97 rtc_lock +EXPORT_SYMBOL vmlinux 0x3f32a0b5 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4ae4c4 md_reload_sb +EXPORT_SYMBOL vmlinux 0x3f59b446 scsi_init_io +EXPORT_SYMBOL vmlinux 0x3f616ce2 queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x3f87af6f account_page_redirty +EXPORT_SYMBOL vmlinux 0x3f927b42 dquot_release +EXPORT_SYMBOL vmlinux 0x3fa1ce2a kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x3fb6346e blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x3fc39b1d nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x3fcb96b2 unlock_buffer +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x40115fac iget_locked +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev +EXPORT_SYMBOL vmlinux 0x404f144c vm_map_ram +EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump +EXPORT_SYMBOL vmlinux 0x405bf3ee phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x407fdf47 security_path_rename +EXPORT_SYMBOL vmlinux 0x408c4250 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x4097fa45 acpi_read_bit_register +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x409ea739 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a2d1dd dm_table_get_size +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40c89d46 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0x40cea3e5 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40e7960b ___pskb_trim +EXPORT_SYMBOL vmlinux 0x412d9c84 dquot_disable +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x4162b91d ht_create_irq +EXPORT_SYMBOL vmlinux 0x41769eb6 ata_link_printk +EXPORT_SYMBOL vmlinux 0x41862ad4 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x41af0ed9 __ht_create_irq +EXPORT_SYMBOL vmlinux 0x41af99b9 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x41bb7530 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x41ca6374 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x41eee8fd qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x42013863 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x422c809e __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x42350e8d ucs2_strlen +EXPORT_SYMBOL vmlinux 0x423ba79c sock_setsockopt +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x42749ac5 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x428271b0 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x428282f6 dma_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0x428364bd inet_select_addr +EXPORT_SYMBOL vmlinux 0x4292364c schedule +EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x42a7dc1a param_get_ullong +EXPORT_SYMBOL vmlinux 0x42adcee5 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x42c8de35 ioremap_nocache +EXPORT_SYMBOL vmlinux 0x42ce3b3d ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x42ce59a6 dput +EXPORT_SYMBOL vmlinux 0x42d20d8b put_tty_driver +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x4330e7dd register_md_personality +EXPORT_SYMBOL vmlinux 0x4340a3ea amd_northbridges +EXPORT_SYMBOL vmlinux 0x43484b9a abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x4351018f __destroy_inode +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x436967ca __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x439e583f inode_add_bytes +EXPORT_SYMBOL vmlinux 0x43d08e85 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x43d30101 to_nd_btt +EXPORT_SYMBOL vmlinux 0x43defb6f skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x43e19eb7 generic_listxattr +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x43f5b388 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x43f7e3b0 mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x442cc112 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x44382328 neigh_for_each +EXPORT_SYMBOL vmlinux 0x44438b96 hex2bin +EXPORT_SYMBOL vmlinux 0x444494d5 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x4467c706 param_ops_long +EXPORT_SYMBOL vmlinux 0x4467fdaf do_splice_direct +EXPORT_SYMBOL vmlinux 0x446dfb4d generic_fillattr +EXPORT_SYMBOL vmlinux 0x44776a63 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x4484f7b0 generic_permission +EXPORT_SYMBOL vmlinux 0x44890026 lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0x448e085f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x449fe84b acpi_set_firmware_waking_vectors +EXPORT_SYMBOL vmlinux 0x44a706d6 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz +EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x44d65f7f dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x44e05974 tcf_hash_check +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44ef3fda neigh_event_ns +EXPORT_SYMBOL vmlinux 0x44f50795 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x4500f02c iunique +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x450bcadb from_kgid_munged +EXPORT_SYMBOL vmlinux 0x451e324a blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0x45239442 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x4536cc20 eth_header +EXPORT_SYMBOL vmlinux 0x453863c9 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x453b9d3e devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x453da64d i2c_use_client +EXPORT_SYMBOL vmlinux 0x455d653c i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x457ccd89 cad_pid +EXPORT_SYMBOL vmlinux 0x458381c8 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0x45849218 devm_gpio_request +EXPORT_SYMBOL vmlinux 0x458c5f6a dma_find_channel +EXPORT_SYMBOL vmlinux 0x4595fc5b inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource +EXPORT_SYMBOL vmlinux 0x45a7d9bc set_create_files_as +EXPORT_SYMBOL vmlinux 0x45c111de __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x45c67aa8 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x45cda4c3 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x45d0a7b9 swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x45d4aa1b fb_set_var +EXPORT_SYMBOL vmlinux 0x460fbeee __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x460fe44a fd_install +EXPORT_SYMBOL vmlinux 0x4629334c __preempt_count +EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy +EXPORT_SYMBOL vmlinux 0x462abdd4 __neigh_create +EXPORT_SYMBOL vmlinux 0x462db0d5 vfs_writef +EXPORT_SYMBOL vmlinux 0x462fc680 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x4663f2de nd_iostat_end +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x467f0e03 submit_bio +EXPORT_SYMBOL vmlinux 0x4686a968 __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x46a89d84 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x46af6359 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x46c3bb77 km_policy_notify +EXPORT_SYMBOL vmlinux 0x46cd836e d_genocide +EXPORT_SYMBOL vmlinux 0x46eb47ac dev_mc_del +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x470120b4 get_mm_exe_file +EXPORT_SYMBOL vmlinux 0x4706d678 param_set_ushort +EXPORT_SYMBOL vmlinux 0x4717ccb8 dev_printk +EXPORT_SYMBOL vmlinux 0x471cbaf7 neigh_table_init +EXPORT_SYMBOL vmlinux 0x471dc344 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x473f1a4a inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x4740b3bc xen_arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x47529fc5 pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x475f010b acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x4784a50f __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x4785936a pci_biosrom_size +EXPORT_SYMBOL vmlinux 0x4788aee4 tcf_register_action +EXPORT_SYMBOL vmlinux 0x478d10b2 ht_destroy_irq +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47a2dbe4 nvm_erase_blk +EXPORT_SYMBOL vmlinux 0x47ec67f2 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x47ede854 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x47f37f88 i2c_transfer +EXPORT_SYMBOL vmlinux 0x47f56402 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x481630c3 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x481cb9ab acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x482cf89d textsearch_unregister +EXPORT_SYMBOL vmlinux 0x484b1239 phy_detach +EXPORT_SYMBOL vmlinux 0x48526403 skb_put +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x48696ec9 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x486ca6a6 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x48851be5 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48e68b9e pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0x490134ab blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x49041114 uart_register_driver +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x49285ba3 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x49330450 set_nlink +EXPORT_SYMBOL vmlinux 0x49387ea2 mmc_start_req +EXPORT_SYMBOL vmlinux 0x494637ec del_gendisk +EXPORT_SYMBOL vmlinux 0x494c9fd9 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x495c78ac mpage_readpages +EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x496d9948 __blk_end_request +EXPORT_SYMBOL vmlinux 0x4970bdb7 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x49791c92 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x497af091 proc_mkdir +EXPORT_SYMBOL vmlinux 0x497c5a94 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x499cca42 fb_show_logo +EXPORT_SYMBOL vmlinux 0x49a98b0f serio_bus +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49c018e5 devm_clk_put +EXPORT_SYMBOL vmlinux 0x49cb0a79 get_task_exe_file +EXPORT_SYMBOL vmlinux 0x49d9c432 dquot_initialize +EXPORT_SYMBOL vmlinux 0x49ea8871 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x49eaa05e blkdev_fsync +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x49fb4973 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x49fd9edd blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x4a0a178e xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x4a18f74d contig_page_data +EXPORT_SYMBOL vmlinux 0x4a3f27d9 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x4a54a8ef pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x4a619f83 memcpy +EXPORT_SYMBOL vmlinux 0x4a6ec53d scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x4ab000ee jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk +EXPORT_SYMBOL vmlinux 0x4ac02ddb jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource +EXPORT_SYMBOL vmlinux 0x4ae7e376 kern_path_create +EXPORT_SYMBOL vmlinux 0x4ae9eab4 iov_iter_init +EXPORT_SYMBOL vmlinux 0x4aebb9f5 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x4b54695d netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b667176 lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x4b97b497 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x4b9daf96 noop_llseek +EXPORT_SYMBOL vmlinux 0x4b9dfb04 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x4badf346 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bc722e4 bio_add_page +EXPORT_SYMBOL vmlinux 0x4bcf03a4 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x4bdec99e remove_arg_zero +EXPORT_SYMBOL vmlinux 0x4be85a03 memweight +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c242bb4 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x4c29dcbf cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr +EXPORT_SYMBOL vmlinux 0x4c318bdd neigh_lookup +EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf +EXPORT_SYMBOL vmlinux 0x4c56bbeb ab3100_event_register +EXPORT_SYMBOL vmlinux 0x4c622828 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x4c878322 iosf_mbi_modify +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4cea8302 ___preempt_schedule_notrace +EXPORT_SYMBOL vmlinux 0x4d00aa00 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x4d3156fd insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask +EXPORT_SYMBOL vmlinux 0x4d3ca5fe tty_register_driver +EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d4a095c dma_ops +EXPORT_SYMBOL vmlinux 0x4d560e6d read_cache_pages +EXPORT_SYMBOL vmlinux 0x4d640b13 max8998_update_reg +EXPORT_SYMBOL vmlinux 0x4d6bce7b blk_fetch_request +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4d9e8026 flush_signals +EXPORT_SYMBOL vmlinux 0x4da8a7ab kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4df44ca8 submit_bh +EXPORT_SYMBOL vmlinux 0x4e237ed9 pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0x4e27ee11 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x4e2963f2 lock_fb_info +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e5a6d9e end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x4e64491c kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x4e68c4a9 param_set_long +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e6eb5f2 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x4e83e9c3 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x4e923032 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x4e99686d vfs_whiteout +EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4ebb764c bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x4ec18b60 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x4ecdf1a8 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x4ee3afb1 set_pages_wb +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f3d9ce5 md_write_end +EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x4f5dc0e4 nvm_put_blk_unlocked +EXPORT_SYMBOL vmlinux 0x4f6041ef dns_query +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f6b400b _copy_from_user +EXPORT_SYMBOL vmlinux 0x4f783f30 acpi_read +EXPORT_SYMBOL vmlinux 0x4f85da50 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x4f8b5ddb _copy_to_user +EXPORT_SYMBOL vmlinux 0x4f93d7bc devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0x4f93fe16 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x4f99b4e5 pci_dev_put +EXPORT_SYMBOL vmlinux 0x4fbea81a seq_hex_dump +EXPORT_SYMBOL vmlinux 0x4fd9284a simple_lookup +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4fe8dfd5 commit_creds +EXPORT_SYMBOL vmlinux 0x4fec77b2 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x50069fa0 qdisc_reset +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5011e39b seq_path +EXPORT_SYMBOL vmlinux 0x5012501f __i2c_transfer +EXPORT_SYMBOL vmlinux 0x501f9fcc elv_rb_add +EXPORT_SYMBOL vmlinux 0x5029fbbd bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x50307d43 send_sig +EXPORT_SYMBOL vmlinux 0x503d3062 xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0x503f1792 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x50529870 acpi_get_gpe_status +EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x50660b0a mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x506e9bc8 freeze_super +EXPORT_SYMBOL vmlinux 0x5079d1d4 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x507a6e5b tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x50880778 input_set_capability +EXPORT_SYMBOL vmlinux 0x508f28f2 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method +EXPORT_SYMBOL vmlinux 0x50a6173c skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x50b66bcb radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x50b7bc86 blk_put_queue +EXPORT_SYMBOL vmlinux 0x50c53301 lock_rename +EXPORT_SYMBOL vmlinux 0x50d66c78 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del +EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x50e84822 __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x50eedeb8 printk +EXPORT_SYMBOL vmlinux 0x50f663a3 block_write_end +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x5131767b elevator_init +EXPORT_SYMBOL vmlinux 0x513280a1 lock_sock_fast +EXPORT_SYMBOL vmlinux 0x5138fb7c try_module_get +EXPORT_SYMBOL vmlinux 0x513cba12 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x514166a0 sock_efree +EXPORT_SYMBOL vmlinux 0x514946f9 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x51548bbd blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x5154e657 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x515bb2d3 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x51693764 mmc_can_trim +EXPORT_SYMBOL vmlinux 0x51719973 dq_data_lock +EXPORT_SYMBOL vmlinux 0x517d21c1 agp_unbind_memory +EXPORT_SYMBOL vmlinux 0x5186518f profile_pc +EXPORT_SYMBOL vmlinux 0x51aaa8bd napi_disable +EXPORT_SYMBOL vmlinux 0x51d0a423 phy_connect +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup +EXPORT_SYMBOL vmlinux 0x51f3ab0a proc_set_user +EXPORT_SYMBOL vmlinux 0x520130c0 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x52084841 blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x52095e19 acpi_get_data +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x52277796 blk_start_request +EXPORT_SYMBOL vmlinux 0x522e63ff vme_master_mmap +EXPORT_SYMBOL vmlinux 0x522f0685 unlock_page +EXPORT_SYMBOL vmlinux 0x524babe7 locks_remove_posix +EXPORT_SYMBOL vmlinux 0x525e026f acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x52af562a __crc32c_le +EXPORT_SYMBOL vmlinux 0x530b1e4c rdmsr_on_cpus +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid +EXPORT_SYMBOL vmlinux 0x532abe6c tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x53322fdc blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x53329fbb param_get_invbool +EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x53636451 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x5374c84f override_creds +EXPORT_SYMBOL vmlinux 0x537bd8c5 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x539142f0 phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0x5392753a jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x53a43265 do_SAK +EXPORT_SYMBOL vmlinux 0x53e53c21 reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0x53eadb8d n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x53edb3d6 dev_warn +EXPORT_SYMBOL vmlinux 0x54019a5d lro_receive_skb +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x540a3c40 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x54243e54 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x5430f863 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x5431438a bio_uncopy_user +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x54486818 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x54487d60 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x544b0c11 acpi_lid_notifier_register +EXPORT_SYMBOL vmlinux 0x544f134a dev_addr_del +EXPORT_SYMBOL vmlinux 0x5459baf4 __napi_complete +EXPORT_SYMBOL vmlinux 0x5464d3f6 acpi_remove_sci_handler +EXPORT_SYMBOL vmlinux 0x546db734 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x54905a42 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x5497a310 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54ac5617 tty_lock +EXPORT_SYMBOL vmlinux 0x54baf871 phy_find_first +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54e4f079 mmc_fixup_device +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54f24d1a fence_default_wait +EXPORT_SYMBOL vmlinux 0x54f815a8 vfs_write +EXPORT_SYMBOL vmlinux 0x54f855b8 tcp_child_process +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x551bedc7 fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x555908b9 udp_add_offload +EXPORT_SYMBOL vmlinux 0x55604ab5 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x556ef673 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x5590b69b pci_find_capability +EXPORT_SYMBOL vmlinux 0x5594ef1f crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x5599e8a6 dquot_destroy +EXPORT_SYMBOL vmlinux 0x559fce34 kobject_put +EXPORT_SYMBOL vmlinux 0x55b19150 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55e60a36 queued_spin_unlock_wait +EXPORT_SYMBOL vmlinux 0x55f627ef mmc_register_driver +EXPORT_SYMBOL vmlinux 0x56138112 finish_no_open +EXPORT_SYMBOL vmlinux 0x5623968e nvm_unregister_target +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x563a6505 skb_tx_error +EXPORT_SYMBOL vmlinux 0x563d0111 blk_requeue_request +EXPORT_SYMBOL vmlinux 0x5641419b wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x56526adc tty_port_put +EXPORT_SYMBOL vmlinux 0x5676a3e5 intel_scu_ipc_ioread8 +EXPORT_SYMBOL vmlinux 0x5677e0c6 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x568b9f49 pagecache_get_page +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x569f85a5 agp_put_bridge +EXPORT_SYMBOL vmlinux 0x56a0743e tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x56b318ed mb_cache_shrink +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56d4f8ad acl_by_type +EXPORT_SYMBOL vmlinux 0x56df3c1a mdiobus_scan +EXPORT_SYMBOL vmlinux 0x56e8b67e genphy_resume +EXPORT_SYMBOL vmlinux 0x56f75a95 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x5705088a __vmalloc +EXPORT_SYMBOL vmlinux 0x571c8ea9 dma_mmap_from_coherent +EXPORT_SYMBOL vmlinux 0x572497b1 pci_platform_rom +EXPORT_SYMBOL vmlinux 0x572b6e03 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x5733f61f dmam_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x574e09cf __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x57528b2c mntget +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x575af70c on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x579b21c4 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x579fbcd2 cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x57b4d4b1 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x57ba72ab fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x57c51a6b blk_stack_limits +EXPORT_SYMBOL vmlinux 0x57e9a8e1 pv_mmu_ops +EXPORT_SYMBOL vmlinux 0x57f604c9 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x58167e9f agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0x581a1e88 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x5836ad5c mount_bdev +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x584738f9 rdmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep +EXPORT_SYMBOL vmlinux 0x58604e4d alloc_iova_mem +EXPORT_SYMBOL vmlinux 0x586103be acpi_setup_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x58720030 stop_tty +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58beab98 tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0x58d8f16c vlan_vid_add +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58fdca1f cdev_init +EXPORT_SYMBOL vmlinux 0x58fef6f8 ist_info +EXPORT_SYMBOL vmlinux 0x5905d860 vm_stat +EXPORT_SYMBOL vmlinux 0x590d6ece bio_copy_data +EXPORT_SYMBOL vmlinux 0x59106416 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x5944d015 __cachemode2pte_tbl +EXPORT_SYMBOL vmlinux 0x5949e765 abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x59535195 phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0x5984481a acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x59870462 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x59a2627a blk_init_queue_node +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59bc9609 acpi_write_bit_register +EXPORT_SYMBOL vmlinux 0x59e56f9c try_to_release_page +EXPORT_SYMBOL vmlinux 0x59e8f569 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a2db87f register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 +EXPORT_SYMBOL vmlinux 0x5a4af7b2 generic_getxattr +EXPORT_SYMBOL vmlinux 0x5a685aa9 param_get_uint +EXPORT_SYMBOL vmlinux 0x5a7e89a0 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x5a82c44a complete_and_exit +EXPORT_SYMBOL vmlinux 0x5aa21744 nf_log_unset +EXPORT_SYMBOL vmlinux 0x5aa81e3d migrate_page_copy +EXPORT_SYMBOL vmlinux 0x5ac376a5 acpi_install_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x5adfac7a end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x5af487c3 seq_puts +EXPORT_SYMBOL vmlinux 0x5afdf317 con_is_bound +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5affdf1b genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x5b047b51 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x5b11423c __blk_end_request_all +EXPORT_SYMBOL vmlinux 0x5b1549e7 generic_setlease +EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem +EXPORT_SYMBOL vmlinux 0x5b1d75a8 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x5b1da261 pci_save_state +EXPORT_SYMBOL vmlinux 0x5b208506 tcp_check_req +EXPORT_SYMBOL vmlinux 0x5b7623b3 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x5b798306 user_revoke +EXPORT_SYMBOL vmlinux 0x5b7c08c8 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x5bab9b21 bio_unmap_user +EXPORT_SYMBOL vmlinux 0x5bb4c6ac vfs_read +EXPORT_SYMBOL vmlinux 0x5bc3469f blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x5bc38dad __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x5bc8d583 copy_from_user_overflow +EXPORT_SYMBOL vmlinux 0x5bdb484f __dst_free +EXPORT_SYMBOL vmlinux 0x5be3f5e5 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x5bee4815 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x5c0442fd acpi_gbl_FADT +EXPORT_SYMBOL vmlinux 0x5c236ae0 set_pages_array_uc +EXPORT_SYMBOL vmlinux 0x5c30b1c8 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x5c545234 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x5c573ef3 tty_vhangup +EXPORT_SYMBOL vmlinux 0x5c672724 acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0x5c813f1a posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x5c8ed799 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x5c8ee4cb agp_find_bridge +EXPORT_SYMBOL vmlinux 0x5c958c55 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x5cc27596 agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x5cdb7f1a kernel_connect +EXPORT_SYMBOL vmlinux 0x5cdcf53a t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x5ce2b43a padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5d051367 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x5d059486 pci_release_regions +EXPORT_SYMBOL vmlinux 0x5d1aab15 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x5d2ce4b7 tty_port_init +EXPORT_SYMBOL vmlinux 0x5d2e0057 x86_hyper_ms_hyperv +EXPORT_SYMBOL vmlinux 0x5d2f7f99 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x5d32d1fb i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x5d4b1d4a nvm_put_blk +EXPORT_SYMBOL vmlinux 0x5d525787 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d6e060b lease_modify +EXPORT_SYMBOL vmlinux 0x5d74dbcf pnp_range_reserved +EXPORT_SYMBOL vmlinux 0x5d8475e0 completion_done +EXPORT_SYMBOL vmlinux 0x5daa05ab crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x5dee5611 bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0x5dffb9b0 x86_hyper_vmware +EXPORT_SYMBOL vmlinux 0x5e0cde9e fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x5e21ef0f agp_free_memory +EXPORT_SYMBOL vmlinux 0x5e544e5c phy_print_status +EXPORT_SYMBOL vmlinux 0x5e5d76e4 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x5e5eb555 poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x5e6fb6d5 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e99f367 component_match_add +EXPORT_SYMBOL vmlinux 0x5eaf2b01 vme_irq_generate +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ec2593f blk_delay_queue +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed3e3af swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x5ed80cb5 ppp_channel_index +EXPORT_SYMBOL vmlinux 0x5ed958c0 netdev_change_features +EXPORT_SYMBOL vmlinux 0x5ef74148 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f06c8ab simple_transaction_read +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f10b2e6 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x5f1645b8 irq_set_chip +EXPORT_SYMBOL vmlinux 0x5f1a4ccf intel_scu_ipc_update_register +EXPORT_SYMBOL vmlinux 0x5f4fadc3 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x5f6557fb tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x5f814c65 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x5f856447 init_special_inode +EXPORT_SYMBOL vmlinux 0x5f8aa1b4 __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x5f9c093b vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0x5fa937ac netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x5fac61af dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x5fb2e8ef idr_init +EXPORT_SYMBOL vmlinux 0x5fb9c441 __register_nls +EXPORT_SYMBOL vmlinux 0x5fd268cb radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x5fd89f95 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x600bccde dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x602ed00d acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x604316d8 acpi_finish_gpe +EXPORT_SYMBOL vmlinux 0x604db195 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x605c033e agp_create_memory +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x607dfefc x86_dma_fallback_dev +EXPORT_SYMBOL vmlinux 0x607e165e generic_start_io_acct +EXPORT_SYMBOL vmlinux 0x607fdd18 inet_shutdown +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a24ee9 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60b86f61 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x60ea7553 __napi_schedule +EXPORT_SYMBOL vmlinux 0x610aaa40 mempool_destroy +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x614c2626 dquot_file_open +EXPORT_SYMBOL vmlinux 0x61709c69 copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x6183114f arp_create +EXPORT_SYMBOL vmlinux 0x618437cf kunmap_high +EXPORT_SYMBOL vmlinux 0x619dcd25 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x61a93f3a fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0x61ad6ad2 mmc_flush_cache +EXPORT_SYMBOL vmlinux 0x61b3560c cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x61b7a270 kmap +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61bb2f2e sk_alloc +EXPORT_SYMBOL vmlinux 0x62049256 acpi_disable +EXPORT_SYMBOL vmlinux 0x620bc2a3 make_kuid +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x621a7a84 loop_backing_file +EXPORT_SYMBOL vmlinux 0x6220b4a2 crc32_le +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6226b9fa machine_to_phys_mapping +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x62367252 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x6237f6b5 acpi_enable_event +EXPORT_SYMBOL vmlinux 0x6241a2ab __copy_from_user_ll_nocache +EXPORT_SYMBOL vmlinux 0x62620be6 blk_queue_bounce +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x62c72d2b copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x62ce8124 qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x62f5a888 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x62fea255 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x6312e77f dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x6320c4ef skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x63287f22 flow_cache_fini +EXPORT_SYMBOL vmlinux 0x634130e2 __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x6343187a netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x636a5691 acpi_register_ioapic +EXPORT_SYMBOL vmlinux 0x636efb3e scsi_register_interface +EXPORT_SYMBOL vmlinux 0x63721516 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0x637b5744 blk_complete_request +EXPORT_SYMBOL vmlinux 0x637e5552 bioset_create +EXPORT_SYMBOL vmlinux 0x6383530c mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x63845dd3 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x6388591c down_timeout +EXPORT_SYMBOL vmlinux 0x6390b3ad input_unregister_device +EXPORT_SYMBOL vmlinux 0x639e89ff d_delete +EXPORT_SYMBOL vmlinux 0x63a01291 acpi_leave_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63d57a95 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63ec8517 fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user +EXPORT_SYMBOL vmlinux 0x63ffe27c dquot_quota_on +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x640a6a0a tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x64170d27 param_get_string +EXPORT_SYMBOL vmlinux 0x64201cf0 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x6425d734 __inode_permission +EXPORT_SYMBOL vmlinux 0x64277e43 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x6449fd41 acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0x64865ef0 padata_do_parallel +EXPORT_SYMBOL vmlinux 0x648f90f5 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x6497d9fc ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a4b84d cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x64ab0e98 wait_for_completion +EXPORT_SYMBOL vmlinux 0x64ae1910 init_net +EXPORT_SYMBOL vmlinux 0x64b400c8 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x64b8397e sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x64cc04ab bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x64d321c0 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x64eae7ad set_memory_array_wb +EXPORT_SYMBOL vmlinux 0x64f5a1e1 __scm_destroy +EXPORT_SYMBOL vmlinux 0x64fa7693 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0x64fc7419 netpoll_setup +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x652dcbf4 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x655f1ab0 set_memory_array_wc +EXPORT_SYMBOL vmlinux 0x6565d33f scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x6571adc7 devm_iounmap +EXPORT_SYMBOL vmlinux 0x65a295bb atomic64_xchg_cx8 +EXPORT_SYMBOL vmlinux 0x65b992ac xen_alloc_p2m_entry +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65e08dc5 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x661f39b3 genphy_suspend +EXPORT_SYMBOL vmlinux 0x66355efc vprintk +EXPORT_SYMBOL vmlinux 0x663cdf84 lookup_bdev +EXPORT_SYMBOL vmlinux 0x663f7cd0 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0x667e4e80 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x669bf80b proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x66a2f676 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x66d804b1 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x66fcd95e mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0x66ffe04c serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x67007702 mpage_readpage +EXPORT_SYMBOL vmlinux 0x67053751 __devm_release_region +EXPORT_SYMBOL vmlinux 0x670541ac dst_alloc +EXPORT_SYMBOL vmlinux 0x6708209c generic_file_llseek +EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 +EXPORT_SYMBOL vmlinux 0x673b8f55 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x6741d2e2 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x67486b3e __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x675634bc take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create +EXPORT_SYMBOL vmlinux 0x677fcc31 kernel_listen +EXPORT_SYMBOL vmlinux 0x67875001 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x678e0528 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x6791a68b security_d_instantiate +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b528fa bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67d3093e mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0x67e89914 md_done_sync +EXPORT_SYMBOL vmlinux 0x67fc65e5 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x680ec266 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x6832e643 kmap_atomic +EXPORT_SYMBOL vmlinux 0x683afa59 lookup_one_len +EXPORT_SYMBOL vmlinux 0x685b5cb1 blk_register_region +EXPORT_SYMBOL vmlinux 0x68784ad5 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x6890e75c keyring_clear +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68b31c1d blk_finish_request +EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x68b8962a tcp_init_cgroup +EXPORT_SYMBOL vmlinux 0x68c9785d fb_is_primary_device +EXPORT_SYMBOL vmlinux 0x68da11e2 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x691001b5 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x691097ab padata_stop +EXPORT_SYMBOL vmlinux 0x691b86de pci_map_rom +EXPORT_SYMBOL vmlinux 0x691fa236 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x692463f6 elv_rb_del +EXPORT_SYMBOL vmlinux 0x692cbc20 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x69388aae blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x693e1e64 __page_symlink +EXPORT_SYMBOL vmlinux 0x69475d08 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x695a975b set_trace_device +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x697a2a34 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x6986a25b mmc_free_host +EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69b47232 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x69fd2a05 param_set_copystring +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a08c4c0 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x6a09111a tty_port_hangup +EXPORT_SYMBOL vmlinux 0x6a200868 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x6a24dd74 unregister_console +EXPORT_SYMBOL vmlinux 0x6a25cffa eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x6a270af4 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x6a27bfce csum_partial_copy_generic +EXPORT_SYMBOL vmlinux 0x6a3f5889 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a60277d acpi_buffer_to_resource +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6a8f567a bitmap_unplug +EXPORT_SYMBOL vmlinux 0x6a9982e9 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x6aa2a3d2 proc_remove +EXPORT_SYMBOL vmlinux 0x6aa94776 finish_open +EXPORT_SYMBOL vmlinux 0x6ab46479 dquot_operations +EXPORT_SYMBOL vmlinux 0x6ab7bd7d nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x6abacb1a scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x6ac06769 sock_wake_async +EXPORT_SYMBOL vmlinux 0x6ac12619 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be +EXPORT_SYMBOL vmlinux 0x6ad85887 acpi_enable_gpe +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6adde2de pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x6ae28f67 agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0x6ae47745 dev_uc_init +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b15cd41 dump_page +EXPORT_SYMBOL vmlinux 0x6b1a2979 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b3a6612 dev_uc_add +EXPORT_SYMBOL vmlinux 0x6b55c815 install_exec_creds +EXPORT_SYMBOL vmlinux 0x6b5c5391 abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x6b61d7f6 __mutex_init +EXPORT_SYMBOL vmlinux 0x6b67a11c param_ops_ulong +EXPORT_SYMBOL vmlinux 0x6b68378f dev_addr_add +EXPORT_SYMBOL vmlinux 0x6b74b9be bit_waitqueue +EXPORT_SYMBOL vmlinux 0x6b82e266 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0x6b9ac2be cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x6baa3ce1 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x6bb67c28 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bcf066d _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6bf1c17f pv_lock_ops +EXPORT_SYMBOL vmlinux 0x6bf9081e csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer +EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn +EXPORT_SYMBOL vmlinux 0x6c210852 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x6c2e3320 strncmp +EXPORT_SYMBOL vmlinux 0x6c2e9e26 make_bad_inode +EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c723a64 locks_mandatory_area +EXPORT_SYMBOL vmlinux 0x6c75c0a0 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0x6c969928 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x6c9982a9 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x6cb1c11e block_write_full_page +EXPORT_SYMBOL vmlinux 0x6cbd18d6 mdiobus_read +EXPORT_SYMBOL vmlinux 0x6cc09d17 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6cff8b92 register_gifconf +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d132cbb param_ops_uint +EXPORT_SYMBOL vmlinux 0x6d1d5d9b iosf_mbi_write +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d334118 __get_user_8 +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d3b2d15 simple_link +EXPORT_SYMBOL vmlinux 0x6d437245 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x6d4881f7 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x6d5342f0 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x6d62b9d7 rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0x6d688032 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x6d71de9f __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0x6d829240 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x6dc0c9dc down_interruptible +EXPORT_SYMBOL vmlinux 0x6dc68f00 inode_permission +EXPORT_SYMBOL vmlinux 0x6dc6dd56 down +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e013ca9 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x6e103852 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x6e11bc91 inet6_getname +EXPORT_SYMBOL vmlinux 0x6e1f42f2 key_alloc +EXPORT_SYMBOL vmlinux 0x6e2d9d7a mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x6e2dd3bc dev_remove_offload +EXPORT_SYMBOL vmlinux 0x6e354f09 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x6e4be59d devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0x6e55f203 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x6e5ed487 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x6e622776 sock_create +EXPORT_SYMBOL vmlinux 0x6e63c120 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x6e6514ed radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e8e9416 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6eaaaa6e pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0x6ed52917 swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x6edebaae msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x6ee47260 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x6ee91d86 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x6eea54a7 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x6ef66e8a _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x6efa5c40 find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x6f1ac275 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x6f1bf786 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x6f20092d flush_old_exec +EXPORT_SYMBOL vmlinux 0x6f20937f mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash +EXPORT_SYMBOL vmlinux 0x6f22630f sk_common_release +EXPORT_SYMBOL vmlinux 0x6f2e4f46 __cond_resched_lock +EXPORT_SYMBOL vmlinux 0x6f3da85c __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x6f556bdb acpi_get_gpe_device +EXPORT_SYMBOL vmlinux 0x6f68b177 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x6f7eacee dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x6f831e14 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x6f86bb1d blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6f951db1 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x6f9fb603 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fdb6b70 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x6feb2039 acpi_write +EXPORT_SYMBOL vmlinux 0x6fff308f acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x70024e9a nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0x7007b970 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x700c0af2 vfs_statfs +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x7029f11b iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0x704cf45f mem_map +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x7062b4cd cmdline_parts_free +EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync +EXPORT_SYMBOL vmlinux 0x706e9ea6 nd_integrity_init +EXPORT_SYMBOL vmlinux 0x707c3c70 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x707f93dd preempt_schedule +EXPORT_SYMBOL vmlinux 0x707fd09c cdev_del +EXPORT_SYMBOL vmlinux 0x708610ec pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x7088ce72 printk_emit +EXPORT_SYMBOL vmlinux 0x708a79f7 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x7096dae8 __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0x7097c3f4 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x709b25fe generic_removexattr +EXPORT_SYMBOL vmlinux 0x709bb0b9 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x70a92e85 md_register_thread +EXPORT_SYMBOL vmlinux 0x70c34bf5 pci_map_biosrom +EXPORT_SYMBOL vmlinux 0x70d1f8f3 strncat +EXPORT_SYMBOL vmlinux 0x70d8ab82 acpi_acquire_global_lock +EXPORT_SYMBOL vmlinux 0x70e02afd rwsem_wake +EXPORT_SYMBOL vmlinux 0x70e459dd __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x70e5ec0c dev_open +EXPORT_SYMBOL vmlinux 0x70e8f354 account_page_dirtied +EXPORT_SYMBOL vmlinux 0x70ea8058 clkdev_alloc +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x70fd9593 scsi_execute +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x712ed37b radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x7138fae4 proc_symlink +EXPORT_SYMBOL vmlinux 0x714886da kobject_init +EXPORT_SYMBOL vmlinux 0x7156a4e1 set_device_ro +EXPORT_SYMBOL vmlinux 0x715f0cc9 inet_getname +EXPORT_SYMBOL vmlinux 0x716e3231 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x718e866d register_xen_selfballooning +EXPORT_SYMBOL vmlinux 0x71a156ad iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71b73116 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x71b77ace nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0x71f65175 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x7209e986 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x72173d44 tcp_req_err +EXPORT_SYMBOL vmlinux 0x7225131e devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x724f18cc serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x7258d998 __inet_hash +EXPORT_SYMBOL vmlinux 0x7266d413 empty_aops +EXPORT_SYMBOL vmlinux 0x72718dae bd_set_size +EXPORT_SYMBOL vmlinux 0x72741f9d mount_subtree +EXPORT_SYMBOL vmlinux 0x728641e4 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x72a93451 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72d58de9 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x73233e96 ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0x732ca752 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x734cf9e8 touch_atime +EXPORT_SYMBOL vmlinux 0x734fc093 d_walk +EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay +EXPORT_SYMBOL vmlinux 0x73683029 vga_switcheroo_client_fb_set +EXPORT_SYMBOL vmlinux 0x73710ecd sock_register +EXPORT_SYMBOL vmlinux 0x738714db ida_pre_get +EXPORT_SYMBOL vmlinux 0x738803e6 strnlen +EXPORT_SYMBOL vmlinux 0x738cb5b2 kill_block_super +EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable +EXPORT_SYMBOL vmlinux 0x73e15bf8 fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy +EXPORT_SYMBOL vmlinux 0x73e513d5 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x73e8729a kmap_atomic_prot +EXPORT_SYMBOL vmlinux 0x73ea0b00 security_path_link +EXPORT_SYMBOL vmlinux 0x73ed6db1 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x73f1d70c uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x74005fdf jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x74119060 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x7413793a EISA_bus +EXPORT_SYMBOL vmlinux 0x7421627e unregister_nls +EXPORT_SYMBOL vmlinux 0x743b4ae3 atomic64_inc_not_zero_cx8 +EXPORT_SYMBOL vmlinux 0x743fe395 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x74451ba8 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x745f20a3 idr_is_empty +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x748af19a ppp_input +EXPORT_SYMBOL vmlinux 0x748c2230 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x749ea2bf bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x74bf6326 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74d1d602 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0x74d4a327 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x74dd13d4 page_address +EXPORT_SYMBOL vmlinux 0x74e5c98f ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74ed7033 ps2_end_command +EXPORT_SYMBOL vmlinux 0x74f16675 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv +EXPORT_SYMBOL vmlinux 0x75114213 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x75271716 save_processor_state +EXPORT_SYMBOL vmlinux 0x75281e2f jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x7531e3dc acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x754bd04f vga_switcheroo_set_dynamic_switch +EXPORT_SYMBOL vmlinux 0x754fe892 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x755d8dec pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 +EXPORT_SYMBOL vmlinux 0x75aaf245 inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0x75b6fade sk_net_capable +EXPORT_SYMBOL vmlinux 0x75bc549a x86_cpu_to_apicid +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75d21809 vprintk_emit +EXPORT_SYMBOL vmlinux 0x75d708f1 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x75d7a0b4 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x75fbdefd acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x7601242c xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x76163bca sget +EXPORT_SYMBOL vmlinux 0x762add85 atomic64_inc_return_cx8 +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764b4cd8 mdiobus_free +EXPORT_SYMBOL vmlinux 0x764bd77c request_resource +EXPORT_SYMBOL vmlinux 0x76666a08 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc +EXPORT_SYMBOL vmlinux 0x769e06d7 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x76ae215a __nla_reserve +EXPORT_SYMBOL vmlinux 0x76bc2eee devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x76cfaeb2 ip_options_compile +EXPORT_SYMBOL vmlinux 0x76d19c3b module_put +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76d926eb blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x76d9bf11 crc32_be +EXPORT_SYMBOL vmlinux 0x76ddb025 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x76e12795 nvm_register_mgr +EXPORT_SYMBOL vmlinux 0x76f6c5ef kmalloc_order +EXPORT_SYMBOL vmlinux 0x770a0036 isapnp_cfg_begin +EXPORT_SYMBOL vmlinux 0x770aa029 vfs_readv +EXPORT_SYMBOL vmlinux 0x771aa59e simple_setattr +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x7739ea7c md_cluster_ops +EXPORT_SYMBOL vmlinux 0x7740fa73 netlink_capable +EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir +EXPORT_SYMBOL vmlinux 0x77629783 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x77871567 pci_clear_master +EXPORT_SYMBOL vmlinux 0x778d5ae2 mount_pseudo +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77aa9115 generic_readlink +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77c5600b pci_claim_resource +EXPORT_SYMBOL vmlinux 0x77dc94ba noop_fsync +EXPORT_SYMBOL vmlinux 0x77dd98fe inode_get_bytes +EXPORT_SYMBOL vmlinux 0x77e21db4 __module_get +EXPORT_SYMBOL vmlinux 0x77ef44cd tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x780fdfd1 intel_enable_gtt +EXPORT_SYMBOL vmlinux 0x7815ea9b xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x7818ff00 proc_douintvec +EXPORT_SYMBOL vmlinux 0x782567ec memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x783b977a kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x78542f14 ll_rw_block +EXPORT_SYMBOL vmlinux 0x786c4ec3 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x786c5aa5 iput +EXPORT_SYMBOL vmlinux 0x7872d218 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x788aba03 scsi_print_command +EXPORT_SYMBOL vmlinux 0x788c5a63 vfs_rename +EXPORT_SYMBOL vmlinux 0x7890977e i2c_release_client +EXPORT_SYMBOL vmlinux 0x7895cb1c pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78a301df sync_inode +EXPORT_SYMBOL vmlinux 0x78a4eade filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x78a5ff8a fence_add_callback +EXPORT_SYMBOL vmlinux 0x78c20341 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x78d6f972 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x78dae55d ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e739aa up +EXPORT_SYMBOL vmlinux 0x78ed8f72 input_release_device +EXPORT_SYMBOL vmlinux 0x78fb9338 parent_mem_cgroup +EXPORT_SYMBOL vmlinux 0x79068fda acpi_install_method +EXPORT_SYMBOL vmlinux 0x791ed1c9 rename_lock +EXPORT_SYMBOL vmlinux 0x79276f9d xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x79379ee6 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x79466675 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x7978ddd6 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x799694b3 swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79bd9c39 dquot_drop +EXPORT_SYMBOL vmlinux 0x79c97ef1 do_splice_to +EXPORT_SYMBOL vmlinux 0x79fbb5fb dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x7a2add7d current_kernel_time64 +EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number +EXPORT_SYMBOL vmlinux 0x7a3d40ae backlight_device_register +EXPORT_SYMBOL vmlinux 0x7a40abb7 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a53ac5c md_update_sb +EXPORT_SYMBOL vmlinux 0x7a600559 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x7a6fd02c dqput +EXPORT_SYMBOL vmlinux 0x7a82cb47 rdmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7ab8171d is_nd_btt +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7accce24 kobject_del +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7adde233 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x7aec9089 clear_user +EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf +EXPORT_SYMBOL vmlinux 0x7b134ddf acpi_get_name +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b1aa74b kmap_to_page +EXPORT_SYMBOL vmlinux 0x7b1ade38 lz4_decompress +EXPORT_SYMBOL vmlinux 0x7b25bc03 xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x7b2ebe1c copy_to_iter +EXPORT_SYMBOL vmlinux 0x7b34ab31 wireless_send_event +EXPORT_SYMBOL vmlinux 0x7b4909bc generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x7b4c3a7b get_agp_version +EXPORT_SYMBOL vmlinux 0x7b52a859 wrmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x7b56a08b inet_frags_init +EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap +EXPORT_SYMBOL vmlinux 0x7b829f52 locks_init_lock +EXPORT_SYMBOL vmlinux 0x7b83d15d neigh_direct_output +EXPORT_SYMBOL vmlinux 0x7bab4b56 get_empty_filp +EXPORT_SYMBOL vmlinux 0x7bac56e1 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x7bad7a1a acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x7bd72427 input_register_handler +EXPORT_SYMBOL vmlinux 0x7bd92dbc phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x7be65946 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x7bf05fdc km_policy_expired +EXPORT_SYMBOL vmlinux 0x7bf85aec __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x7c026d6f neigh_seq_start +EXPORT_SYMBOL vmlinux 0x7c0958c1 alloc_fddidev +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c24b52c free_user_ns +EXPORT_SYMBOL vmlinux 0x7c3091e9 path_nosuid +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c4f5e7e xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x7c5c990f dev_deactivate +EXPORT_SYMBOL vmlinux 0x7c61340c __release_region +EXPORT_SYMBOL vmlinux 0x7c84eaf1 pnp_get_resource +EXPORT_SYMBOL vmlinux 0x7c8ae9b0 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x7c8d9857 mmc_align_data_size +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7c9d615d filp_open +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cde71f1 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce3b2bf insert_inode_locked +EXPORT_SYMBOL vmlinux 0x7ce83365 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cf3c9f7 unlock_rename +EXPORT_SYMBOL vmlinux 0x7cf76e40 __kfree_skb +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d118728 simple_follow_link +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d344fc4 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d8d76ea fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x7d94f746 acpi_os_write_port +EXPORT_SYMBOL vmlinux 0x7d96cea3 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x7db7eef4 vme_bus_num +EXPORT_SYMBOL vmlinux 0x7dbc2e57 mmiotrace_printk +EXPORT_SYMBOL vmlinux 0x7de43f60 tso_start +EXPORT_SYMBOL vmlinux 0x7de5ba68 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x7ded2d4f mutex_trylock +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e0c0740 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x7e20b9df agp_enable +EXPORT_SYMBOL vmlinux 0x7e31678e dev_driver_string +EXPORT_SYMBOL vmlinux 0x7e464bdb pci_get_device +EXPORT_SYMBOL vmlinux 0x7e5c35b1 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x7e7fc3fb __wake_up_bit +EXPORT_SYMBOL vmlinux 0x7ebe57a8 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x7ec3c5fe param_set_bool +EXPORT_SYMBOL vmlinux 0x7ec49754 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x7ecb001b __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x7ed29d89 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x7ed8b001 complete_request_key +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7ee73c0c memcg_socket_limit_enabled +EXPORT_SYMBOL vmlinux 0x7eea2e2e pci_iounmap +EXPORT_SYMBOL vmlinux 0x7ef7f239 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x7efed859 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f074f6e bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x7f12df44 dev_mc_init +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f251fd1 security_path_rmdir +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f71d0d0 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x7f79c23d inet_recvmsg +EXPORT_SYMBOL vmlinux 0x7f9d158b blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x7f9f0a87 cpu_tss +EXPORT_SYMBOL vmlinux 0x7fbeb5d7 file_remove_privs +EXPORT_SYMBOL vmlinux 0x7fc718ee neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x7fdc24c9 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x801aecbf devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x802c84bf atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x802da8c4 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x802e85bf mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x804363af sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x804a4eb0 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x80699a9a pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x8071ccaf km_state_notify +EXPORT_SYMBOL vmlinux 0x8084897e ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x808546f1 rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0x809388ca idr_destroy +EXPORT_SYMBOL vmlinux 0x80b64549 set_pages_array_wc +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80d9ca85 paravirt_ticketlocks_enabled +EXPORT_SYMBOL vmlinux 0x80eb423b acpi_get_object_info +EXPORT_SYMBOL vmlinux 0x80f55e51 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x80f9d1fc xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x80fcb288 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x81144f9d idr_find_slowpath +EXPORT_SYMBOL vmlinux 0x812ac8bf filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0x812eadad led_blink_set +EXPORT_SYMBOL vmlinux 0x81472677 acpi_get_table +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x814febfc xfrm_init_state +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815c56d0 cpu_present_mask +EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page +EXPORT_SYMBOL vmlinux 0x81671b51 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x81902f2f ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x81a531ef jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x81a81fa8 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x81afbaee input_set_abs_params +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e3eb31 pcim_iomap +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x81fb4bad jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x8212721d xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0x821a3d70 alloc_file +EXPORT_SYMBOL vmlinux 0x821b2caa netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x8235805b memmove +EXPORT_SYMBOL vmlinux 0x8253a0b3 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0x826fff47 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x82789b14 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x829534b3 fence_free +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82d89c98 nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0x830e547b ioremap_prot +EXPORT_SYMBOL vmlinux 0x8329e6f0 memset +EXPORT_SYMBOL vmlinux 0x8329fd22 serio_open +EXPORT_SYMBOL vmlinux 0x832fa791 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x833c03aa acpi_enable_all_runtime_gpes +EXPORT_SYMBOL vmlinux 0x83514847 phy_init_eee +EXPORT_SYMBOL vmlinux 0x83599ca2 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x835ecf22 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x8372cd2f __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x8382e59a acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0x838cbdcc skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x839245f0 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x839290a9 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x83a0f15a file_open_root +EXPORT_SYMBOL vmlinux 0x83a169de rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0x83a2e4e9 kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x83ac42b4 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83ce11af buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x83e99562 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x84060081 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x840be543 security_inode_permission +EXPORT_SYMBOL vmlinux 0x8417f512 acpi_update_all_gpes +EXPORT_SYMBOL vmlinux 0x84188597 generic_write_checks +EXPORT_SYMBOL vmlinux 0x843306de sock_kmalloc +EXPORT_SYMBOL vmlinux 0x844d0130 locks_free_lock +EXPORT_SYMBOL vmlinux 0x845539ed scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x8459fd3f prepare_binprm +EXPORT_SYMBOL vmlinux 0x84726800 no_llseek +EXPORT_SYMBOL vmlinux 0x847616e4 pnp_stop_dev +EXPORT_SYMBOL vmlinux 0x8488fe6a phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x84894cdc zpool_register_driver +EXPORT_SYMBOL vmlinux 0x84a6c1ee dev_uc_del +EXPORT_SYMBOL vmlinux 0x84de4aff __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x84f4848f scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x84f97108 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x851bc5a0 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x852581b5 iterate_dir +EXPORT_SYMBOL vmlinux 0x8526c35a remove_wait_queue +EXPORT_SYMBOL vmlinux 0x853ed7bc cdev_alloc +EXPORT_SYMBOL vmlinux 0x8555e2fa blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x85585ad6 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x856c4bbc skb_queue_purge +EXPORT_SYMBOL vmlinux 0x857582f7 acpi_enable_all_wakeup_gpes +EXPORT_SYMBOL vmlinux 0x858b3fe3 free_iova_mem +EXPORT_SYMBOL vmlinux 0x85a43be4 mmc_erase +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85bbed25 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x85ca069a __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85fdd904 dcache_readdir +EXPORT_SYMBOL vmlinux 0x8602866d bio_chain +EXPORT_SYMBOL vmlinux 0x86182550 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x861e22a4 acpi_map_cpu +EXPORT_SYMBOL vmlinux 0x862ae1ab framebuffer_release +EXPORT_SYMBOL vmlinux 0x862ca545 user_path_create +EXPORT_SYMBOL vmlinux 0x862eafa4 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x8638e523 swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0x864df3cf should_remove_suid +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x865d263c tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x8660a9d9 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x8670cf3c scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x8684dd37 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x86897b2a inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86a4889a kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x86a49cc1 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x86d450be neigh_table_clear +EXPORT_SYMBOL vmlinux 0x86d8307e done_path_create +EXPORT_SYMBOL vmlinux 0x86dd6737 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x86f2795c pci_disable_msix +EXPORT_SYMBOL vmlinux 0x86f304a1 sock_edemux +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x8704bdd8 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x872cae6b padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0x872f3bf2 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x876dafc3 ec_write +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x878cd015 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x87a6a462 xattr_full_name +EXPORT_SYMBOL vmlinux 0x87aaddf8 wrmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0x87add53c i2c_del_driver +EXPORT_SYMBOL vmlinux 0x87efb6d1 skb_unlink +EXPORT_SYMBOL vmlinux 0x87fe1948 xen_biovec_phys_mergeable +EXPORT_SYMBOL vmlinux 0x87fe790b scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x88161e4d agp_generic_enable +EXPORT_SYMBOL vmlinux 0x88258fbe set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x883450ca proto_unregister +EXPORT_SYMBOL vmlinux 0x88477e5b tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x884b17fe xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x8854a051 dquot_commit +EXPORT_SYMBOL vmlinux 0x88910b65 input_close_device +EXPORT_SYMBOL vmlinux 0x8896a0b8 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x889c2384 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x889fd9b5 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x88a83a75 blk_start_queue +EXPORT_SYMBOL vmlinux 0x88b9cc43 build_skb +EXPORT_SYMBOL vmlinux 0x88c9d1b2 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x88cc8e6b sk_mc_loop +EXPORT_SYMBOL vmlinux 0x88fe21f0 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x892491d1 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x892b26a0 set_memory_nx +EXPORT_SYMBOL vmlinux 0x893d1dd5 xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0x896030f1 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x896155c3 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x8978cf2f tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x897aa8ec security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x89832416 register_quota_format +EXPORT_SYMBOL vmlinux 0x899c92d8 scsi_register +EXPORT_SYMBOL vmlinux 0x89a38aea truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x89aef27e padata_remove_cpu +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89b489dc mark_page_accessed +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89de6704 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x8a098a89 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x8a0b12c6 complete_all +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a45b34f bio_map_kern +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a58af4e set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x8a6403ff max8998_read_reg +EXPORT_SYMBOL vmlinux 0x8a6944f9 percpu_counter_set +EXPORT_SYMBOL vmlinux 0x8a7b90eb nvm_submit_io +EXPORT_SYMBOL vmlinux 0x8a7c87fe netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a80d7a5 acpi_error +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8acf9d28 mmc_get_card +EXPORT_SYMBOL vmlinux 0x8add6085 kill_litter_super +EXPORT_SYMBOL vmlinux 0x8ae1249d ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x8af53df5 init_buffer +EXPORT_SYMBOL vmlinux 0x8b0aa68a hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x8b18496f __copy_to_user_ll +EXPORT_SYMBOL vmlinux 0x8b2e063c cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8bb2571f proc_set_size +EXPORT_SYMBOL vmlinux 0x8bb8d87c param_get_ushort +EXPORT_SYMBOL vmlinux 0x8bbd57ed rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x8bea3de0 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x8bfec0fb skb_insert +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c4dfef2 sg_miter_next +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c933ec0 scsi_unregister +EXPORT_SYMBOL vmlinux 0x8c9f7f92 dst_discard_out +EXPORT_SYMBOL vmlinux 0x8ca1e089 may_umount_tree +EXPORT_SYMBOL vmlinux 0x8cb719ec deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x8cc588b8 pnpbios_protocol +EXPORT_SYMBOL vmlinux 0x8cc63e07 block_truncate_page +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8ce20ec4 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x8cebb7be vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x8cebfed2 tcf_hash_search +EXPORT_SYMBOL vmlinux 0x8cf4a792 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x8d209804 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x8d247ace pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d6b2ce1 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x8d6f81b4 __div64_32 +EXPORT_SYMBOL vmlinux 0x8d708972 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x8d72495b __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d838d91 ida_remove +EXPORT_SYMBOL vmlinux 0x8d8d96c6 acpi_get_sleep_type_data +EXPORT_SYMBOL vmlinux 0x8da1a3cb acpi_remove_interface +EXPORT_SYMBOL vmlinux 0x8daf8c42 dql_init +EXPORT_SYMBOL vmlinux 0x8dc354f0 dm_put_device +EXPORT_SYMBOL vmlinux 0x8dc6e564 restore_processor_state +EXPORT_SYMBOL vmlinux 0x8dfefdf3 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x8e002cda acpi_remove_gpe_block +EXPORT_SYMBOL vmlinux 0x8e01cdc5 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x8e0d33fa scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x8e1e4426 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x8e24b341 mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0x8e27b7d2 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x8e3267c5 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x8e3717cb qdisc_destroy +EXPORT_SYMBOL vmlinux 0x8e3c3b10 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x8e6d54a5 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e76f570 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x8e7ff318 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x8e86d7f4 bio_put +EXPORT_SYMBOL vmlinux 0x8e888ec3 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x8e97ffd1 nobh_write_end +EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler +EXPORT_SYMBOL vmlinux 0x8ed4faf9 freeze_bdev +EXPORT_SYMBOL vmlinux 0x8edd26fb pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x8f0271ba blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus +EXPORT_SYMBOL vmlinux 0x8f40f5eb agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0x8f4bb258 skb_pad +EXPORT_SYMBOL vmlinux 0x8f510acf dquot_acquire +EXPORT_SYMBOL vmlinux 0x8f649f74 gen_new_estimator +EXPORT_SYMBOL vmlinux 0x8f8230d4 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x8f8988cb netdev_alert +EXPORT_SYMBOL vmlinux 0x8f933960 blk_init_tags +EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 +EXPORT_SYMBOL vmlinux 0x8fa01a12 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x8fb4ab01 kfree_put_link +EXPORT_SYMBOL vmlinux 0x8fbe9d5c uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x8fd1152e _raw_write_unlock +EXPORT_SYMBOL vmlinux 0x8fde39bb pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0x8fe59cef convert_art_to_tsc +EXPORT_SYMBOL vmlinux 0x8ff4079b pv_irq_ops +EXPORT_SYMBOL vmlinux 0x8ffbc4f6 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 +EXPORT_SYMBOL vmlinux 0x90183b66 genl_notify +EXPORT_SYMBOL vmlinux 0x90279ffd agp_bind_memory +EXPORT_SYMBOL vmlinux 0x904409c6 acpi_set_firmware_waking_vector +EXPORT_SYMBOL vmlinux 0x90695906 vme_free_consistent +EXPORT_SYMBOL vmlinux 0x908575fe queued_write_lock_slowpath +EXPORT_SYMBOL vmlinux 0x908951a6 icmp_send +EXPORT_SYMBOL vmlinux 0x909ad001 iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0x90a1a11d devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x90b611d4 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x90f489c7 posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x9107e0ec dma_supported +EXPORT_SYMBOL vmlinux 0x91112165 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x91145b6f remap_pfn_range +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x915aee17 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x917a6d7c skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x91967e8e xen_selfballoon_init +EXPORT_SYMBOL vmlinux 0x91985829 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x91b02206 cdrom_open +EXPORT_SYMBOL vmlinux 0x91b63328 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x91ba4912 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x91c4ee17 uart_suspend_port +EXPORT_SYMBOL vmlinux 0x91ce6826 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x91d5247a fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0x91d5f2ae vfs_iter_read +EXPORT_SYMBOL vmlinux 0x91da6280 free_netdev +EXPORT_SYMBOL vmlinux 0x91f37aef inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x91fcbd4d kmem_cache_create +EXPORT_SYMBOL vmlinux 0x9220c376 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x92274372 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x92307ccd vme_slot_num +EXPORT_SYMBOL vmlinux 0x9231b298 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x924a384f kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x9255fe61 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x92805ef9 nd_device_unregister +EXPORT_SYMBOL vmlinux 0x9288d970 lwtunnel_output +EXPORT_SYMBOL vmlinux 0x92897e3d default_idle +EXPORT_SYMBOL vmlinux 0x929515c2 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x929f5b58 devm_gpiod_get +EXPORT_SYMBOL vmlinux 0x92a0fc89 nvm_register_target +EXPORT_SYMBOL vmlinux 0x92a73cf7 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm +EXPORT_SYMBOL vmlinux 0x92aaee2d fddi_change_mtu +EXPORT_SYMBOL vmlinux 0x92b181a6 scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0x92b28977 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x92bf0d16 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x92d57acb dump_trace +EXPORT_SYMBOL vmlinux 0x92f6767f lg_local_lock +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x9302f9fa thaw_bdev +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x931421b6 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x9314f952 i2c_master_recv +EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x932493a8 iosf_mbi_read +EXPORT_SYMBOL vmlinux 0x93454dc8 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x937ae900 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x9382902c PDE_DATA +EXPORT_SYMBOL vmlinux 0x93a37adc jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93d2a2f2 tcp_parse_options +EXPORT_SYMBOL vmlinux 0x93d37d11 nf_afinfo +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x940f9cf6 kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x9411fad4 ihold +EXPORT_SYMBOL vmlinux 0x943725f5 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x943abd88 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x9447e9b3 get_cached_acl +EXPORT_SYMBOL vmlinux 0x9449ca6e pci_get_class +EXPORT_SYMBOL vmlinux 0x944b9584 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94a79780 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x94b541b5 cpu_active_mask +EXPORT_SYMBOL vmlinux 0x94e12171 abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0x94e97329 d_find_alias +EXPORT_SYMBOL vmlinux 0x94eea794 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x95175ef0 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x951f5fdc eth_change_mtu +EXPORT_SYMBOL vmlinux 0x952199a1 skb_clone +EXPORT_SYMBOL vmlinux 0x9522971a pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x9529cecc ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0x9531adc0 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x95395301 acpi_exception +EXPORT_SYMBOL vmlinux 0x953ac3ba cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x954f5327 phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0x956cdce5 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x956cecd6 tty_port_open +EXPORT_SYMBOL vmlinux 0x957ae75c tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x957dd4d0 devm_gpio_free +EXPORT_SYMBOL vmlinux 0x95843d8d skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x95918f2b blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0x959a5347 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x95a3dc44 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x95acc1ea vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x95b2720d simple_transaction_release +EXPORT_SYMBOL vmlinux 0x95bd6e26 acpi_install_sci_handler +EXPORT_SYMBOL vmlinux 0x95c08b5a mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x95cb5e44 rt6_lookup +EXPORT_SYMBOL vmlinux 0x95cecff6 vfs_symlink +EXPORT_SYMBOL vmlinux 0x95ee3e59 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x95f4d2d8 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x9603c09d __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x960737d9 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0x960dfaf5 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x96244c7e __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x962b15fe seq_release_private +EXPORT_SYMBOL vmlinux 0x963a1156 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x963e074a _dev_info +EXPORT_SYMBOL vmlinux 0x9648df5d register_console +EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x9657f266 kill_pgrp +EXPORT_SYMBOL vmlinux 0x9670d811 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x96a1c89a scsi_scan_target +EXPORT_SYMBOL vmlinux 0x96b15d2d phy_start +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96cef754 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x96d24ed7 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x96d4137e serio_rescan +EXPORT_SYMBOL vmlinux 0x96fbde17 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x96fdd594 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x9705362d skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x97090ab4 seq_lseek +EXPORT_SYMBOL vmlinux 0x9711b204 reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0x9713bee8 simple_rmdir +EXPORT_SYMBOL vmlinux 0x972b7780 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x972dd62c generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x9762dc83 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x976cda61 mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0x977ae72c udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x977d07d2 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97a42c79 pcibios_set_irq_routing +EXPORT_SYMBOL vmlinux 0x97c5bd0a acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x97de0ddd acpi_install_gpe_block +EXPORT_SYMBOL vmlinux 0x97e908c3 dentry_needs_remove_privs +EXPORT_SYMBOL vmlinux 0x97f9ee77 kdb_current_task +EXPORT_SYMBOL vmlinux 0x98147435 vga_get +EXPORT_SYMBOL vmlinux 0x9814c7a5 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint +EXPORT_SYMBOL vmlinux 0x9826f81c release_firmware +EXPORT_SYMBOL vmlinux 0x9829b97c input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x9836012c dump_emit +EXPORT_SYMBOL vmlinux 0x984b695e give_up_console +EXPORT_SYMBOL vmlinux 0x985eef53 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x986538a7 devm_release_resource +EXPORT_SYMBOL vmlinux 0x986c5b3e nla_append +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x9878745c _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x988ed85d set_memory_x +EXPORT_SYMBOL vmlinux 0x988f1bd5 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x98979590 swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0x98d0cde8 clk_add_alias +EXPORT_SYMBOL vmlinux 0x98e68eca cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x98e7e0f4 __pagevec_release +EXPORT_SYMBOL vmlinux 0x98eccc10 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x98f22ab2 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x98f2717c kernel_sendpage +EXPORT_SYMBOL vmlinux 0x98fe8538 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x99224501 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x99233c32 cpu_core_map +EXPORT_SYMBOL vmlinux 0x9924bd15 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x993e987b vme_dma_request +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x995c22ca elevator_alloc +EXPORT_SYMBOL vmlinux 0x9970d5f5 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x9989b259 vfs_getxattr_alloc +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x99d9c09a clear_nlink +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99e1856e kobject_add +EXPORT_SYMBOL vmlinux 0x99f1c217 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x99f39356 pnp_device_detach +EXPORT_SYMBOL vmlinux 0x99fdf123 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x9a01cc2e devfreq_interval_update +EXPORT_SYMBOL vmlinux 0x9a078351 tcp_proto_cgroup +EXPORT_SYMBOL vmlinux 0x9a0bfcdd nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x9a1d8e6a kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a3d4d7a dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0x9a42e261 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x9a6594c8 sk_stream_error +EXPORT_SYMBOL vmlinux 0x9a6a83f9 cmos_lock +EXPORT_SYMBOL vmlinux 0x9a82499b zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x9a8ac8fd blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x9aa1824d tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9b14bf09 tso_count_descs +EXPORT_SYMBOL vmlinux 0x9b189d48 blk_init_queue +EXPORT_SYMBOL vmlinux 0x9b18c6e0 inet_add_offload +EXPORT_SYMBOL vmlinux 0x9b1da288 register_framebuffer +EXPORT_SYMBOL vmlinux 0x9b3294e4 genphy_read_status +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b54d4d6 __frontswap_load +EXPORT_SYMBOL vmlinux 0x9b6a0148 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize +EXPORT_SYMBOL vmlinux 0x9b7fdbbd blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba146bf wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9bb151c3 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put +EXPORT_SYMBOL vmlinux 0x9bc563c7 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9c00800b d_path +EXPORT_SYMBOL vmlinux 0x9c1e8baf jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x9c268059 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x9c2c944a __copy_from_user_ll_nocache_nozero +EXPORT_SYMBOL vmlinux 0x9c38d9b3 input_grab_device +EXPORT_SYMBOL vmlinux 0x9c450105 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c839c21 nonseekable_open +EXPORT_SYMBOL vmlinux 0x9ca7c99e agp_backend_acquire +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cb45984 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x9cb9ce1b xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x9cbad315 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x9cdc28eb end_page_writeback +EXPORT_SYMBOL vmlinux 0x9ce169af neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x9cf7905f dma_pool_create +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d33ef5e acpi_enable +EXPORT_SYMBOL vmlinux 0x9d3638a1 follow_pfn +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d49c0ef bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0x9d78ddf4 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x9d93c96a param_set_byte +EXPORT_SYMBOL vmlinux 0x9d9823e8 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x9db61e43 d_lookup +EXPORT_SYMBOL vmlinux 0x9dcc4b4b set_page_dirty +EXPORT_SYMBOL vmlinux 0x9dcd846a nd_btt_probe +EXPORT_SYMBOL vmlinux 0x9de1118f __nd_iostat_start +EXPORT_SYMBOL vmlinux 0x9dfe7307 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e363b6b acpi_disable_gpe +EXPORT_SYMBOL vmlinux 0x9e3b7282 vga_switcheroo_init_domain_pm_optimus_hdmi_audio +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e60b9a6 inet_bind +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e634619 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e93b53d blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0x9e9cd648 abx500_register_ops +EXPORT_SYMBOL vmlinux 0x9e9dbde3 __sock_create +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea0c91f proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x9eaf4194 dev_base_lock +EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource +EXPORT_SYMBOL vmlinux 0x9ef59436 nf_hook_slow +EXPORT_SYMBOL vmlinux 0x9f1b4c5d audit_log_start +EXPORT_SYMBOL vmlinux 0x9f419057 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f5b6297 km_is_alive +EXPORT_SYMBOL vmlinux 0x9f6c98a5 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x9f96b9cc serio_reconnect +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fbba8d1 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x9fbd84ce jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x9fbfb55c padata_alloc +EXPORT_SYMBOL vmlinux 0x9fd33050 kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fe113d0 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x9fe28c8d __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0x9ffb1fef vme_register_driver +EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa020913a vme_bus_type +EXPORT_SYMBOL vmlinux 0xa022785c input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa054941f secpath_dup +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0xa07bf0c2 textsearch_register +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa08920e6 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xa0aac151 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0b5c9f9 jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0xa0b78bfa netlink_broadcast +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0ea1e1c try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0f48cdb __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa111ad53 input_open_device +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa127765e set_pages_array_wb +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa14ab0b3 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts +EXPORT_SYMBOL vmlinux 0xa14ced2a d_set_d_op +EXPORT_SYMBOL vmlinux 0xa1650620 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0xa16733fd blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0xa16f5af1 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xa197294b __bforget +EXPORT_SYMBOL vmlinux 0xa19de3fd boot_cpu_data +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1c41baf sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1ea6ec8 get_gendisk +EXPORT_SYMBOL vmlinux 0xa204ad45 udp_ioctl +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa20ea5f7 wake_up_process +EXPORT_SYMBOL vmlinux 0xa23ca586 seq_pad +EXPORT_SYMBOL vmlinux 0xa250a024 vfs_getattr +EXPORT_SYMBOL vmlinux 0xa2680f70 xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0xa27f1d0e mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xa2848b43 xfrm_register_km +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa2af5372 inet_addr_type +EXPORT_SYMBOL vmlinux 0xa2b89117 vm_insert_pfn +EXPORT_SYMBOL vmlinux 0xa2ccf1ac devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xa2d27200 phy_start_interrupts +EXPORT_SYMBOL vmlinux 0xa2f96d79 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xa30ffe43 proc_create_data +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa339f712 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0xa348a7f7 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xa34fcb2d mempool_create_node +EXPORT_SYMBOL vmlinux 0xa350a8f8 set_memory_array_uc +EXPORT_SYMBOL vmlinux 0xa358046d find_inode_nowait +EXPORT_SYMBOL vmlinux 0xa3681a48 set_binfmt +EXPORT_SYMBOL vmlinux 0xa3697071 phy_disconnect +EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get +EXPORT_SYMBOL vmlinux 0xa3adf45d agp_allocate_memory +EXPORT_SYMBOL vmlinux 0xa3bf9ecb block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xa3c24039 input_unregister_handle +EXPORT_SYMBOL vmlinux 0xa3dcbfd3 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0xa3f0a78e gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xa4132544 vfs_fsync +EXPORT_SYMBOL vmlinux 0xa425a567 mmc_add_host +EXPORT_SYMBOL vmlinux 0xa42b377e lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0xa42b8d35 notify_change +EXPORT_SYMBOL vmlinux 0xa42ccbe4 __bread_gfp +EXPORT_SYMBOL vmlinux 0xa4304547 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf +EXPORT_SYMBOL vmlinux 0xa451f5b1 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0xa45fea43 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa47d9662 elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0xa4921d74 set_pages_x +EXPORT_SYMBOL vmlinux 0xa4a90500 sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xa4b6dabb open_exec +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4b98f06 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4d71e82 blk_put_request +EXPORT_SYMBOL vmlinux 0xa4e2c90d elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0xa4eb2b25 sock_create_lite +EXPORT_SYMBOL vmlinux 0xa512366f scsi_is_target_device +EXPORT_SYMBOL vmlinux 0xa51cdfe8 __FIXADDR_TOP +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa5594e4b mmc_start_bkops +EXPORT_SYMBOL vmlinux 0xa56550d0 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xa5789cbc __scm_send +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa5a2cf17 param_set_int +EXPORT_SYMBOL vmlinux 0xa5c1f7d9 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0xa5dabe21 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xa5e5eabf pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xa5e99a2a mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xa5ec85ca vm_insert_page +EXPORT_SYMBOL vmlinux 0xa5f79832 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0xa60ac649 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xa624ce25 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0xa62e6e4f acpi_get_table_with_size +EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember +EXPORT_SYMBOL vmlinux 0xa640e35a pci_request_regions +EXPORT_SYMBOL vmlinux 0xa64eadbc swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xa6547a27 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa67f7db4 sock_wmalloc +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6935573 unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa6bbd805 __wake_up +EXPORT_SYMBOL vmlinux 0xa6bd63ca acpi_bios_error +EXPORT_SYMBOL vmlinux 0xa6e6aed8 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xa6fe9c97 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa7407e21 __blk_run_queue +EXPORT_SYMBOL vmlinux 0xa74c9dd9 dst_init +EXPORT_SYMBOL vmlinux 0xa75eb054 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xa760eb29 read_cache_page +EXPORT_SYMBOL vmlinux 0xa7643af7 tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0xa76dc913 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0xa77fbefa generic_show_options +EXPORT_SYMBOL vmlinux 0xa788f1a0 i8253_lock +EXPORT_SYMBOL vmlinux 0xa7a2502b from_kgid +EXPORT_SYMBOL vmlinux 0xa7b0f270 pci_read_vpd +EXPORT_SYMBOL vmlinux 0xa7b31baf dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0xa7cf2d38 unregister_cdrom +EXPORT_SYMBOL vmlinux 0xa7cf6c2f atomic64_dec_return_cx8 +EXPORT_SYMBOL vmlinux 0xa7d60172 agp_backend_release +EXPORT_SYMBOL vmlinux 0xa7dd98bc dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0xa8365612 udp6_csum_init +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa85bad5e pci_enable_device +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa87e93a8 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xa890e5c2 blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0xa8a2a07a seq_escape +EXPORT_SYMBOL vmlinux 0xa8abbe90 cfb_copyarea +EXPORT_SYMBOL vmlinux 0xa8bfebf1 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0xa8c186c0 unregister_qdisc +EXPORT_SYMBOL vmlinux 0xa8c42bf6 param_set_invbool +EXPORT_SYMBOL vmlinux 0xa8c9a131 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xa8cb9c1c netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xa8e0bfa4 elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0xa8fedc08 pci_bus_put +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa90525de tcf_hash_insert +EXPORT_SYMBOL vmlinux 0xa9054a07 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa919bc52 vfs_setpos +EXPORT_SYMBOL vmlinux 0xa9299809 __f_setown +EXPORT_SYMBOL vmlinux 0xa92efc30 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0xa9352271 simple_empty +EXPORT_SYMBOL vmlinux 0xa936f04b current_fs_time +EXPORT_SYMBOL vmlinux 0xa949946e dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0xa967a0c1 ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0xa972b1e2 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa977e050 dev_mc_add +EXPORT_SYMBOL vmlinux 0xa97a4516 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xa9a35c79 vga_switcheroo_fini_domain_pm_ops +EXPORT_SYMBOL vmlinux 0xa9a88ba8 xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0xa9a8e17f arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0xa9accd17 pci_set_mwi +EXPORT_SYMBOL vmlinux 0xa9b56050 key_unlink +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9cfea6b x86_hyper +EXPORT_SYMBOL vmlinux 0xa9ecd3f5 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xaa1d4ba9 phy_start_aneg +EXPORT_SYMBOL vmlinux 0xaa297c74 padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xaa375592 devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0xaa440190 dma_async_device_register +EXPORT_SYMBOL vmlinux 0xaa4ecd91 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0xaa5bd08d __pv_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa7a4dc9 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0xaa7f1969 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0xaa896d41 inet_register_protosw +EXPORT_SYMBOL vmlinux 0xaa8fea18 acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0xaa93a465 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xaa9c4823 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xaaa2bf4f seq_dentry +EXPORT_SYMBOL vmlinux 0xaaa3e20b scsi_rescan_device +EXPORT_SYMBOL vmlinux 0xaac680db mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad48788 __ip_select_ident +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaae7f6aa pci_get_slot +EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab0a0ac6 eth_header_cache +EXPORT_SYMBOL vmlinux 0xab15e657 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0xab210b3d pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xab2a20f4 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0xab36046b devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xab3eb7dd devm_ioport_map +EXPORT_SYMBOL vmlinux 0xab551fad acpi_get_data_full +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab65ed80 set_memory_uc +EXPORT_SYMBOL vmlinux 0xab694444 bsearch +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab770678 rdmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab81e862 uart_update_timeout +EXPORT_SYMBOL vmlinux 0xab909fb5 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xaba3159c gen_pool_destroy +EXPORT_SYMBOL vmlinux 0xaba3ad0c radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xaba49717 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xaba82408 input_get_keycode +EXPORT_SYMBOL vmlinux 0xabc17f56 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabd96b85 bdi_destroy +EXPORT_SYMBOL vmlinux 0xabdd6463 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xabdf2947 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0xabea7b26 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0xabfcb4c3 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xabffe52c blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear +EXPORT_SYMBOL vmlinux 0xac57c44a lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0xac874743 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0xac94d383 inet_offloads +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacabd595 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0xacacdb71 __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0xacb99769 ida_destroy +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xaccf0cc0 scsi_remove_target +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacdac029 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xacdd1386 eth_validate_addr +EXPORT_SYMBOL vmlinux 0xacf3bb87 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad1687e1 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0xad1749bf inode_set_flags +EXPORT_SYMBOL vmlinux 0xad1c7f6b set_pages_uc +EXPORT_SYMBOL vmlinux 0xad48adc8 prepare_creds +EXPORT_SYMBOL vmlinux 0xad547243 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xad698f77 dqstats +EXPORT_SYMBOL vmlinux 0xad6e4bb6 mempool_free +EXPORT_SYMBOL vmlinux 0xad6f413a pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xad722090 key_reject_and_link +EXPORT_SYMBOL vmlinux 0xad759331 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xada23500 param_ops_byte +EXPORT_SYMBOL vmlinux 0xadc3dba9 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xadcd9077 get_task_io_context +EXPORT_SYMBOL vmlinux 0xadd4dcb4 iov_iter_npages +EXPORT_SYMBOL vmlinux 0xadd9884b fsnotify_put_group +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae044bc7 panic_notifier_list +EXPORT_SYMBOL vmlinux 0xae118ddd peernet2id_alloc +EXPORT_SYMBOL vmlinux 0xae25d513 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xae4cf5fd phy_resume +EXPORT_SYMBOL vmlinux 0xae6b3a42 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xae756ce0 load_nls_default +EXPORT_SYMBOL vmlinux 0xae77a595 radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0xae85a27e radix_tree_lookup +EXPORT_SYMBOL vmlinux 0xae88c37d always_delete_dentry +EXPORT_SYMBOL vmlinux 0xae8b6c22 skb_vlan_push +EXPORT_SYMBOL vmlinux 0xae8d8525 invalidate_partition +EXPORT_SYMBOL vmlinux 0xae921ef8 mount_single +EXPORT_SYMBOL vmlinux 0xaea976a8 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xaebbbeb5 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xaebeeca4 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0xaeccb21c get_super +EXPORT_SYMBOL vmlinux 0xaeebe4ed nlmsg_notify +EXPORT_SYMBOL vmlinux 0xaf13ac8b follow_up +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf4b1540 acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xaf53af64 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xaf611eac amd_nb_misc_ids +EXPORT_SYMBOL vmlinux 0xaf730254 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xaf998427 __put_cred +EXPORT_SYMBOL vmlinux 0xafa6f4f6 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0xafbaa0a5 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0xafc1de35 inet6_bind +EXPORT_SYMBOL vmlinux 0xb016dae5 i2c_clients_command +EXPORT_SYMBOL vmlinux 0xb01b1db8 intel_gtt_insert_sg_entries +EXPORT_SYMBOL vmlinux 0xb01cbb49 ip_defrag +EXPORT_SYMBOL vmlinux 0xb02433ec __alloc_skb +EXPORT_SYMBOL vmlinux 0xb02bd591 _raw_read_unlock_irq +EXPORT_SYMBOL vmlinux 0xb0428805 kthread_stop +EXPORT_SYMBOL vmlinux 0xb049bf09 igrab +EXPORT_SYMBOL vmlinux 0xb0567e1a dm_register_target +EXPORT_SYMBOL vmlinux 0xb05bbf03 ppp_register_channel +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb081b9c3 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xb0954c17 inet_release +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0a1599c simple_open +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0d62fb7 down_read_trylock +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e4f324 textsearch_destroy +EXPORT_SYMBOL vmlinux 0xb0eb41ff iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0xb0edb954 tcp_prot +EXPORT_SYMBOL vmlinux 0xb0edb98f pcie_get_mps +EXPORT_SYMBOL vmlinux 0xb0f0deaa blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xb0f30470 dma_common_mmap +EXPORT_SYMBOL vmlinux 0xb10820e4 _raw_read_unlock +EXPORT_SYMBOL vmlinux 0xb1127e91 mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb13aaee7 replace_mount_options +EXPORT_SYMBOL vmlinux 0xb1447872 xfrm_input +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb15e1e06 vfs_mkdir +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb187b3a8 lg_lock_init +EXPORT_SYMBOL vmlinux 0xb18a57a9 misc_deregister +EXPORT_SYMBOL vmlinux 0xb1934b0c genphy_setup_forced +EXPORT_SYMBOL vmlinux 0xb1b51e38 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xb1beac62 unregister_quota_format +EXPORT_SYMBOL vmlinux 0xb1c267fa sock_i_uid +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xb1cfad22 rdmsr_on_cpu +EXPORT_SYMBOL vmlinux 0xb1d7dc08 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0xb1eac244 deactivate_super +EXPORT_SYMBOL vmlinux 0xb1f2c906 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0xb2135b49 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0xb2154a89 iterate_fd +EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu +EXPORT_SYMBOL vmlinux 0xb21ac433 arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0xb21d9615 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0xb2549c0c unlink_framebuffer +EXPORT_SYMBOL vmlinux 0xb261a1d7 kmem_cache_free +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb27e2afe xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xb2c0ba22 pci_disable_msi +EXPORT_SYMBOL vmlinux 0xb2ceda15 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on +EXPORT_SYMBOL vmlinux 0xb2d5a552 complete +EXPORT_SYMBOL vmlinux 0xb2f30b53 param_ops_ullong +EXPORT_SYMBOL vmlinux 0xb2f74fb6 intel_gmch_remove +EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 +EXPORT_SYMBOL vmlinux 0xb31338fd mount_nodev +EXPORT_SYMBOL vmlinux 0xb3161db7 d_make_root +EXPORT_SYMBOL vmlinux 0xb31b99f9 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xb324ac2d vme_lm_request +EXPORT_SYMBOL vmlinux 0xb3284531 acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xb32d7b7e radix_tree_tagged +EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit +EXPORT_SYMBOL vmlinux 0xb3809705 __lock_page +EXPORT_SYMBOL vmlinux 0xb382e15b tty_name +EXPORT_SYMBOL vmlinux 0xb38a09e3 sync_filesystem +EXPORT_SYMBOL vmlinux 0xb397868f sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xb39af489 padata_start +EXPORT_SYMBOL vmlinux 0xb3b58865 __dax_fault +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3e0590d acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb403125d blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xb419d2c6 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb4390f9a mcount +EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem +EXPORT_SYMBOL vmlinux 0xb45578b8 memscan +EXPORT_SYMBOL vmlinux 0xb45a0447 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xb46792a7 iget_failed +EXPORT_SYMBOL vmlinux 0xb46bd149 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb479d5fe bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xb47cab6b dst_destroy +EXPORT_SYMBOL vmlinux 0xb47e3384 security_path_symlink +EXPORT_SYMBOL vmlinux 0xb4812736 agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0xb48cb53c scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0xb4c8e959 fsync_bdev +EXPORT_SYMBOL vmlinux 0xb4ca0be9 redraw_screen +EXPORT_SYMBOL vmlinux 0xb4cdb5b0 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0xb5077c05 md_write_start +EXPORT_SYMBOL vmlinux 0xb5139b9c ip_ct_attach +EXPORT_SYMBOL vmlinux 0xb513ad96 tcp_ioctl +EXPORT_SYMBOL vmlinux 0xb51b8e05 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0xb5229392 cpu_sibling_map +EXPORT_SYMBOL vmlinux 0xb523e9a2 skb_push +EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range +EXPORT_SYMBOL vmlinux 0xb541a381 __block_write_begin +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb58dbda0 eth_mac_addr +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5a8c1fb sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free +EXPORT_SYMBOL vmlinux 0xb5dbd16a __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xb5dfe870 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xb5e81ef2 mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0xb5ef9b21 nf_register_hook +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb62535bb kmap_high +EXPORT_SYMBOL vmlinux 0xb654a8de free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xb673db41 dm_kobject_release +EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb681b780 down_write_trylock +EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb69f58fa pci_restore_state +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6a8b5cf inet6_del_offload +EXPORT_SYMBOL vmlinux 0xb6b395f6 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0xb6e41883 memcmp +EXPORT_SYMBOL vmlinux 0xb6ed1e53 strncpy +EXPORT_SYMBOL vmlinux 0xb6f3fdf1 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xb7151b31 abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb74ab8ab clkdev_add +EXPORT_SYMBOL vmlinux 0xb74bac22 mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0xb758b225 acpi_disable_event +EXPORT_SYMBOL vmlinux 0xb75ade70 put_io_context +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb7756888 pv_cpu_ops +EXPORT_SYMBOL vmlinux 0xb7967604 devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0xb79b4fc3 vfs_writev +EXPORT_SYMBOL vmlinux 0xb79ec15d mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0xb7a3c875 update_devfreq +EXPORT_SYMBOL vmlinux 0xb7bf7a76 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7dc7a21 set_disk_ro +EXPORT_SYMBOL vmlinux 0xb7e8b065 skb_queue_head +EXPORT_SYMBOL vmlinux 0xb7f0275c phy_drivers_register +EXPORT_SYMBOL vmlinux 0xb7f55ecc atomic64_add_return_cx8 +EXPORT_SYMBOL vmlinux 0xb7ffb61d mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0xb812227f agp_bridge +EXPORT_SYMBOL vmlinux 0xb81960ca snprintf +EXPORT_SYMBOL vmlinux 0xb81a6ecd pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xb8370414 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xb8377c51 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0xb839a62f __getblk_gfp +EXPORT_SYMBOL vmlinux 0xb83daf02 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0xb86a61fd put_filp +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb8854ac8 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xb8ac5295 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0xb8b466fa datagram_poll +EXPORT_SYMBOL vmlinux 0xb8b6a76c __percpu_counter_add +EXPORT_SYMBOL vmlinux 0xb8bf392a tcp_proc_register +EXPORT_SYMBOL vmlinux 0xb8c83c1c pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xb8d1b7b7 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xb8e16aa8 __lock_buffer +EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 +EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xb8fdcd10 mempool_resize +EXPORT_SYMBOL vmlinux 0xb9058ad4 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xb9063ed5 input_flush_device +EXPORT_SYMBOL vmlinux 0xb9314d50 napi_consume_skb +EXPORT_SYMBOL vmlinux 0xb9892e9d pnp_is_active +EXPORT_SYMBOL vmlinux 0xb9898873 md_flush_request +EXPORT_SYMBOL vmlinux 0xb9a61e66 eth_gro_complete +EXPORT_SYMBOL vmlinux 0xb9bd8e44 module_layout +EXPORT_SYMBOL vmlinux 0xb9c39751 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xb9c5d5ae buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xb9d267f7 dev_uc_sync +EXPORT_SYMBOL vmlinux 0xb9dacf85 pnp_activate_dev +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9ff03e1 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xba121c83 import_iovec +EXPORT_SYMBOL vmlinux 0xba2d8594 ec_read +EXPORT_SYMBOL vmlinux 0xba36e2dc gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0xba3df0b0 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba5ae402 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xba5eec68 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xba7fd2f6 seq_file_path +EXPORT_SYMBOL vmlinux 0xba8f67a7 neigh_connected_output +EXPORT_SYMBOL vmlinux 0xbaa4b0ce downgrade_write +EXPORT_SYMBOL vmlinux 0xbac3cbf2 ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0xbaefe00c tso_build_data +EXPORT_SYMBOL vmlinux 0xbaff9bfa inet_del_protocol +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb084feb param_ops_charp +EXPORT_SYMBOL vmlinux 0xbb3200a3 __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb3f649b skb_copy_bits +EXPORT_SYMBOL vmlinux 0xbb485cca bdi_register +EXPORT_SYMBOL vmlinux 0xbb4d00af param_get_byte +EXPORT_SYMBOL vmlinux 0xbb52b4e0 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb6363e3 pagevec_lookup +EXPORT_SYMBOL vmlinux 0xbb6bee14 vmap +EXPORT_SYMBOL vmlinux 0xbb74388b xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xbb800fa9 tcf_em_register +EXPORT_SYMBOL vmlinux 0xbb87e719 processors +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbb9fcc31 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xbba2e6cb sock_i_ino +EXPORT_SYMBOL vmlinux 0xbba70a2d _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xbbb2d51b mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0xbbd5c1a7 devfreq_add_device +EXPORT_SYMBOL vmlinux 0xbbeb1ec6 ioremap_wt +EXPORT_SYMBOL vmlinux 0xbc1226f5 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc278947 bdi_register_owner +EXPORT_SYMBOL vmlinux 0xbc2958f2 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0xbc34b1e5 napi_complete_done +EXPORT_SYMBOL vmlinux 0xbc3d7fec serio_unregister_port +EXPORT_SYMBOL vmlinux 0xbc435770 dump_stack +EXPORT_SYMBOL vmlinux 0xbc4ed6d9 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xbc69fae5 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0xbc6bc63d tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xbc6f1368 unregister_binfmt +EXPORT_SYMBOL vmlinux 0xbc77615f __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xbc8ec8e2 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xbc92a1cb __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0xbcb9a6a2 handle_edge_irq +EXPORT_SYMBOL vmlinux 0xbcba39e4 irq_to_desc +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbccd111b tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xbceb6980 netif_skb_features +EXPORT_SYMBOL vmlinux 0xbcf15653 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0xbd1c13ba cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0xbd22424f input_inject_event +EXPORT_SYMBOL vmlinux 0xbd331ceb blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xbd3d0452 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0xbd648e52 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xbd816256 generic_update_time +EXPORT_SYMBOL vmlinux 0xbd83ec6f mmc_request_done +EXPORT_SYMBOL vmlinux 0xbd8a487a fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbdaf5b07 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xbdc9377a tcp_prequeue +EXPORT_SYMBOL vmlinux 0xbdcd511f jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xbdebbe2d __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xbdf32a66 check_disk_size_change +EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe34cfe8 blk_get_request +EXPORT_SYMBOL vmlinux 0xbe5a8726 bdgrab +EXPORT_SYMBOL vmlinux 0xbe5b47c9 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xbe61179d pnp_register_driver +EXPORT_SYMBOL vmlinux 0xbe61f82f __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xbe7758d4 dmam_release_declared_memory +EXPORT_SYMBOL vmlinux 0xbe799b55 key_put +EXPORT_SYMBOL vmlinux 0xbe838e48 d_rehash +EXPORT_SYMBOL vmlinux 0xbe8c37d9 intel_scu_ipc_simple_command +EXPORT_SYMBOL vmlinux 0xbec03efe __dquot_transfer +EXPORT_SYMBOL vmlinux 0xbec30d05 x86_match_cpu +EXPORT_SYMBOL vmlinux 0xbec86937 netif_receive_skb +EXPORT_SYMBOL vmlinux 0xbed13d18 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0xbee1b4f2 tty_mutex +EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xbef38296 bdi_register_dev +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbf486982 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xbf555e7a security_path_chmod +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf8b39e9 isapnp_present +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfd36729 param_ops_bint +EXPORT_SYMBOL vmlinux 0xbfe49de7 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xbfe6f427 _raw_spin_unlock_irq +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xc01eed33 __copy_from_user_ll_nozero +EXPORT_SYMBOL vmlinux 0xc032f4b1 udp_poll +EXPORT_SYMBOL vmlinux 0xc0504953 d_tmpfile +EXPORT_SYMBOL vmlinux 0xc05e355f idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xc068440e __kfifo_alloc +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0cd3b13 ___ratelimit +EXPORT_SYMBOL vmlinux 0xc0f3dfbe tcf_exts_change +EXPORT_SYMBOL vmlinux 0xc0ffba18 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0xc10bd326 seq_write +EXPORT_SYMBOL vmlinux 0xc1152d1d devm_memunmap +EXPORT_SYMBOL vmlinux 0xc11d79ca tty_do_resize +EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten +EXPORT_SYMBOL vmlinux 0xc120065b param_ops_ushort +EXPORT_SYMBOL vmlinux 0xc1484635 devm_request_resource +EXPORT_SYMBOL vmlinux 0xc16ba356 tcp_release_cb +EXPORT_SYMBOL vmlinux 0xc16f901d jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xc17a312d phy_device_create +EXPORT_SYMBOL vmlinux 0xc18f197a md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0xc19118a8 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xc1a74a02 filp_close +EXPORT_SYMBOL vmlinux 0xc1c964d1 read_dev_sector +EXPORT_SYMBOL vmlinux 0xc1cc9a91 netif_carrier_on +EXPORT_SYMBOL vmlinux 0xc1cf74bc skb_append +EXPORT_SYMBOL vmlinux 0xc1d89af3 sk_stop_timer +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1de9d74 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc1f95b6b force_sig +EXPORT_SYMBOL vmlinux 0xc20e9e6f mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xc226bcac netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc27033ac generic_setxattr +EXPORT_SYMBOL vmlinux 0xc2776928 block_read_full_page +EXPORT_SYMBOL vmlinux 0xc27b8212 netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0xc280a525 __copy_from_user_ll +EXPORT_SYMBOL vmlinux 0xc289f650 fget +EXPORT_SYMBOL vmlinux 0xc2900ff0 is_bad_inode +EXPORT_SYMBOL vmlinux 0xc2a6b738 netlink_ack +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xc2b51c97 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xc2d0731d lru_cache_add_file +EXPORT_SYMBOL vmlinux 0xc2d711e1 krealloc +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc30d2cc7 lease_get_mtime +EXPORT_SYMBOL vmlinux 0xc31d272f follow_down +EXPORT_SYMBOL vmlinux 0xc31d9277 neigh_update +EXPORT_SYMBOL vmlinux 0xc324d67a sock_kfree_s +EXPORT_SYMBOL vmlinux 0xc3292e01 nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0xc3379111 vga_client_register +EXPORT_SYMBOL vmlinux 0xc34ecf58 abort_creds +EXPORT_SYMBOL vmlinux 0xc356cf20 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0xc369ffea agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0xc37f5f2e dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xc393faf2 __frontswap_store +EXPORT_SYMBOL vmlinux 0xc3a99597 lro_flush_all +EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 +EXPORT_SYMBOL vmlinux 0xc3b70870 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3d67bec update_region +EXPORT_SYMBOL vmlinux 0xc3e1d9a9 mmc_of_parse +EXPORT_SYMBOL vmlinux 0xc3e25e3e kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0xc3f45a9a devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xc3fa6a59 memchr +EXPORT_SYMBOL vmlinux 0xc41dc8a0 param_ops_string +EXPORT_SYMBOL vmlinux 0xc41f0516 node_states +EXPORT_SYMBOL vmlinux 0xc435ed50 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0xc450b0e9 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xc460e062 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xc4626b3e __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0xc464d261 default_llseek +EXPORT_SYMBOL vmlinux 0xc47210aa dcb_getapp +EXPORT_SYMBOL vmlinux 0xc48c4f38 swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4a1ec56 single_open +EXPORT_SYMBOL vmlinux 0xc4a58249 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xc4ba3221 open_check_o_direct +EXPORT_SYMBOL vmlinux 0xc4ca00e9 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0xc4d0c387 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xc4e85a12 tty_port_close +EXPORT_SYMBOL vmlinux 0xc4f0e2b8 register_cdrom +EXPORT_SYMBOL vmlinux 0xc4f13354 bh_submit_read +EXPORT_SYMBOL vmlinux 0xc50b4602 inet_csk_accept +EXPORT_SYMBOL vmlinux 0xc5137552 x86_bios_cpu_apicid +EXPORT_SYMBOL vmlinux 0xc520286d free_xenballooned_pages +EXPORT_SYMBOL vmlinux 0xc5462085 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc55b18c0 dquot_free_inode +EXPORT_SYMBOL vmlinux 0xc55f437c mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xc56833bf phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xc568a9c0 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5a05475 fsnotify_get_group +EXPORT_SYMBOL vmlinux 0xc5a4549b cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xc5bede54 sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0xc5d12844 poll_freewait +EXPORT_SYMBOL vmlinux 0xc5d53b7a netdev_notice +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5e26ba9 eisa_driver_unregister +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc601400b drop_nlink +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc63199f7 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xc631a28d cros_ec_check_result +EXPORT_SYMBOL vmlinux 0xc6378c13 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0xc64345dc __find_get_block +EXPORT_SYMBOL vmlinux 0xc644609b tty_free_termios +EXPORT_SYMBOL vmlinux 0xc64a26d9 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xc65637a9 inet_sendpage +EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0xc6700f24 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xc672f6b8 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xc676b4f6 register_filesystem +EXPORT_SYMBOL vmlinux 0xc67a09fe intel_gtt_get +EXPORT_SYMBOL vmlinux 0xc68cd9d7 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0xc6b0503d simple_transaction_get +EXPORT_SYMBOL vmlinux 0xc6b23120 intel_scu_ipc_iowrite16 +EXPORT_SYMBOL vmlinux 0xc6b368d3 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xc6b424e1 phy_device_register +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6d5372f generic_file_read_iter +EXPORT_SYMBOL vmlinux 0xc6e3323f pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0xc6f0afbd security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xc6f14b76 fb_find_mode +EXPORT_SYMBOL vmlinux 0xc6f1ff7e fs_bio_set +EXPORT_SYMBOL vmlinux 0xc6fb3cba param_array_ops +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc731ed17 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0xc733f7ba request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc768de19 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xc76e0273 netdev_master_upper_dev_link_private +EXPORT_SYMBOL vmlinux 0xc773a310 bdget +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc7902f75 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0xc79a381c get_io_context +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7a8b64c phy_connect_direct +EXPORT_SYMBOL vmlinux 0xc7ca190d security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xc7cd53b9 devm_gpiod_put +EXPORT_SYMBOL vmlinux 0xc7dd4199 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0xc7e8ad48 rtnl_notify +EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn +EXPORT_SYMBOL vmlinux 0xc7f3febc ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xc7fcc5bf acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xc8088d38 nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0xc8263bcc have_submounts +EXPORT_SYMBOL vmlinux 0xc8276a79 nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xc82c980d pnp_find_dev +EXPORT_SYMBOL vmlinux 0xc832473a tty_devnum +EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape +EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc8511de0 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0xc858f5f0 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xc85b2bca ps2_command +EXPORT_SYMBOL vmlinux 0xc85d27b3 param_get_int +EXPORT_SYMBOL vmlinux 0xc86d6799 ___preempt_schedule +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc87ebeb4 netdev_update_features +EXPORT_SYMBOL vmlinux 0xc88102e2 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0xc885a8c1 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0xc886cf39 seq_read +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8aceca7 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8b6a296 devm_memremap +EXPORT_SYMBOL vmlinux 0xc8dff2b2 dst_release +EXPORT_SYMBOL vmlinux 0xc8ed2f64 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0xc8fcc836 fget_raw +EXPORT_SYMBOL vmlinux 0xc905331a max8925_reg_read +EXPORT_SYMBOL vmlinux 0xc9075430 agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0xc90acd51 wait_iff_congested +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc9324d94 skb_store_bits +EXPORT_SYMBOL vmlinux 0xc933b58c d_move +EXPORT_SYMBOL vmlinux 0xc93860f2 unregister_filesystem +EXPORT_SYMBOL vmlinux 0xc94afdde mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc9768728 pagecache_write_end +EXPORT_SYMBOL vmlinux 0xc98d3494 param_get_charp +EXPORT_SYMBOL vmlinux 0xc9923ada scsi_print_result +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc99f6aae dma_spin_lock +EXPORT_SYMBOL vmlinux 0xc9a1cef8 serio_interrupt +EXPORT_SYMBOL vmlinux 0xc9c360ac param_set_ulong +EXPORT_SYMBOL vmlinux 0xc9c9a01e mem_cgroup_end_page_stat +EXPORT_SYMBOL vmlinux 0xc9faa285 register_shrinker +EXPORT_SYMBOL vmlinux 0xc9fef317 add_wait_queue +EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy +EXPORT_SYMBOL vmlinux 0xca109b13 kfree_skb +EXPORT_SYMBOL vmlinux 0xca29996f __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xca2b0b40 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xca32d766 cap_mmap_file +EXPORT_SYMBOL vmlinux 0xca41eaa3 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0xca45e24a dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xca4da8e9 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0xca5bcc60 skb_queue_tail +EXPORT_SYMBOL vmlinux 0xca7aff4a dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xca8acc78 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xca908d9a devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xcaba3d3f netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcaf6a031 acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0xcaf6c204 inet6_release +EXPORT_SYMBOL vmlinux 0xcafeaa6d filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0xcb01efec kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb11434b twl6040_reg_write +EXPORT_SYMBOL vmlinux 0xcb1fa6da bio_integrity_endio +EXPORT_SYMBOL vmlinux 0xcb234443 kunmap +EXPORT_SYMBOL vmlinux 0xcb3ab447 security_path_chown +EXPORT_SYMBOL vmlinux 0xcb602abf get_disk +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb952e83 vme_register_bridge +EXPORT_SYMBOL vmlinux 0xcba0b329 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0xcbac3a78 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xcbae6c7a acpi_lid_notifier_unregister +EXPORT_SYMBOL vmlinux 0xcbb25eda __invalidate_device +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbeac4be hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcc1e10e0 tcf_action_exec +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc4bde0b netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xcc4d1bfb atomic64_read_cx8 +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc52d12d dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xcc5bd58f keyring_search +EXPORT_SYMBOL vmlinux 0xcc828d77 bio_clone_fast +EXPORT_SYMBOL vmlinux 0xcc82add3 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xcc838223 __pte2cachemode_tbl +EXPORT_SYMBOL vmlinux 0xcc8d3f4f acpi_os_execute +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xcce62678 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xccef5ab8 unregister_shrinker +EXPORT_SYMBOL vmlinux 0xccf3cede nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0xccfef64f skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xcd13dc7c ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd2aed5e blk_end_request_all +EXPORT_SYMBOL vmlinux 0xcd2b844e udplite_prot +EXPORT_SYMBOL vmlinux 0xcd400dc7 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xcd508f09 seq_vprintf +EXPORT_SYMBOL vmlinux 0xcd5755f4 proto_register +EXPORT_SYMBOL vmlinux 0xcd62e080 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0xcd73ecc9 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xcd9b2745 mfd_add_devices +EXPORT_SYMBOL vmlinux 0xcda0136f fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0xcda323bb thaw_super +EXPORT_SYMBOL vmlinux 0xcdaab875 pci_pme_active +EXPORT_SYMBOL vmlinux 0xcdbfc1c4 sock_no_getname +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdc5492e vme_new_dma_list +EXPORT_SYMBOL vmlinux 0xcdc55556 blk_sync_queue +EXPORT_SYMBOL vmlinux 0xcdcbcf97 neigh_xmit +EXPORT_SYMBOL vmlinux 0xcdf28454 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0xce1af71d filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xce23f55e free_page_put_link +EXPORT_SYMBOL vmlinux 0xce243cd0 dev_set_group +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce2897ca i2c_verify_client +EXPORT_SYMBOL vmlinux 0xce2c45cc wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xce473976 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0xce4904a4 acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce70ee8c elv_add_request +EXPORT_SYMBOL vmlinux 0xce87f122 pipe_unlock +EXPORT_SYMBOL vmlinux 0xce9be3aa fb_prepare_logo +EXPORT_SYMBOL vmlinux 0xce9e41e9 lockref_get +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xcebe42f0 default_file_splice_read +EXPORT_SYMBOL vmlinux 0xceca8ada splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0xcedfc84d lockref_mark_dead +EXPORT_SYMBOL vmlinux 0xcee58848 inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0xceea8de5 kern_path +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcef9183c down_read +EXPORT_SYMBOL vmlinux 0xcef937d8 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf092c59 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xcf1418de pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xcf169a0d cfb_fillrect +EXPORT_SYMBOL vmlinux 0xcf1ef97b mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xcf5df111 phy_device_free +EXPORT_SYMBOL vmlinux 0xcf631e7a i8042_remove_filter +EXPORT_SYMBOL vmlinux 0xcf6479d2 nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xcf6cfe1f msrs_free +EXPORT_SYMBOL vmlinux 0xcf77f930 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xcf7ba9f8 setup_arg_pages +EXPORT_SYMBOL vmlinux 0xcf8ac3cc bdev_stack_limits +EXPORT_SYMBOL vmlinux 0xcfa64552 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0xcfb7a7db request_key +EXPORT_SYMBOL vmlinux 0xcfd4ddc8 page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0xcfe05d4d register_kmmio_probe +EXPORT_SYMBOL vmlinux 0xcfe4e3d5 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xd0199539 vga_switcheroo_register_audio_client +EXPORT_SYMBOL vmlinux 0xd0235854 mmc_power_save_host +EXPORT_SYMBOL vmlinux 0xd0534813 get_user_pages +EXPORT_SYMBOL vmlinux 0xd05e0885 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xd06913ff __frontswap_test +EXPORT_SYMBOL vmlinux 0xd06a8063 blk_recount_segments +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd081a5e3 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xd0841e34 key_validate +EXPORT_SYMBOL vmlinux 0xd0905c6b blk_queue_split +EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a3e0c2 bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0xd0a90e79 kset_register +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0ba721d xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xd0d67268 __brelse +EXPORT_SYMBOL vmlinux 0xd0d8621b strlen +EXPORT_SYMBOL vmlinux 0xd0dbbc60 dcache_dir_open +EXPORT_SYMBOL vmlinux 0xd0e42a8b tcp_connect +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd11d1a28 mount_ns +EXPORT_SYMBOL vmlinux 0xd14829fd redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xd160d08d dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xd1652a93 acpi_info +EXPORT_SYMBOL vmlinux 0xd166b087 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xd175703a jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd189ec0d bio_phys_segments +EXPORT_SYMBOL vmlinux 0xd196c9be kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xd1bfaead blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0xd1c84dfb hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xd1d3c65d vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings +EXPORT_SYMBOL vmlinux 0xd2064e2f idr_replace +EXPORT_SYMBOL vmlinux 0xd20f3020 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xd213e4c0 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0xd219a7c8 pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0xd235edc9 follow_down_one +EXPORT_SYMBOL vmlinux 0xd23f0443 blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0xd24334a0 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd25580cd bio_integrity_trim +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd262a962 pid_task +EXPORT_SYMBOL vmlinux 0xd26ee69f scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xd2756629 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd2af138b reservation_ww_class +EXPORT_SYMBOL vmlinux 0xd2bd6b0e devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xd2bef883 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xd2cf496e security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xd2d04a2e pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2e57167 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0xd2e580b7 ipv4_specific +EXPORT_SYMBOL vmlinux 0xd2e6a582 acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0xd2f9131c iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0xd2fa6b41 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0xd2fadde1 nf_register_hooks +EXPORT_SYMBOL vmlinux 0xd300a780 misc_register +EXPORT_SYMBOL vmlinux 0xd30be606 bdget_disk +EXPORT_SYMBOL vmlinux 0xd33f11e1 skb_pull +EXPORT_SYMBOL vmlinux 0xd38f4ba8 dev_get_nest_level +EXPORT_SYMBOL vmlinux 0xd393f0c2 netlink_unicast +EXPORT_SYMBOL vmlinux 0xd3a21d63 pci_request_region +EXPORT_SYMBOL vmlinux 0xd3b8d2cb blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd40e9a04 touch_buffer +EXPORT_SYMBOL vmlinux 0xd41573a9 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0xd43735aa revalidate_disk +EXPORT_SYMBOL vmlinux 0xd44140b4 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0xd4468e4e iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0xd4592dc6 find_get_entry +EXPORT_SYMBOL vmlinux 0xd46172ca tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd4848e11 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0xd4993260 sock_create_kern +EXPORT_SYMBOL vmlinux 0xd4aab9d2 pci_select_bars +EXPORT_SYMBOL vmlinux 0xd4bacb58 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xd4d889ff skb_copy +EXPORT_SYMBOL vmlinux 0xd506c32b scsi_remove_device +EXPORT_SYMBOL vmlinux 0xd50fef48 acpi_detach_data +EXPORT_SYMBOL vmlinux 0xd52eae47 generic_read_dir +EXPORT_SYMBOL vmlinux 0xd52f59ba dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xd53ccd4d vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xd53d411e pci_assign_resource +EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0xd56e3728 ata_port_printk +EXPORT_SYMBOL vmlinux 0xd58560e1 do_truncate +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd5a1e545 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xd5ced54d ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0xd5d16ead jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0xd5f58a1c tty_throttle +EXPORT_SYMBOL vmlinux 0xd5fe8b08 da903x_query_status +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd631da1b nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68e1d1b _raw_read_trylock +EXPORT_SYMBOL vmlinux 0xd6a16f49 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0xd6b16ddd input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace +EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz +EXPORT_SYMBOL vmlinux 0xd6b4a0a8 backlight_force_update +EXPORT_SYMBOL vmlinux 0xd6bb5f5a ata_dev_printk +EXPORT_SYMBOL vmlinux 0xd6c17fd4 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0xd6cf1372 isapnp_protocol +EXPORT_SYMBOL vmlinux 0xd6d0208e tty_port_close_end +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd730959d seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xd75b55e3 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd768dea0 blk_execute_rq +EXPORT_SYMBOL vmlinux 0xd76fcb27 kernel_read +EXPORT_SYMBOL vmlinux 0xd775e204 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0xd796873c uart_resume_port +EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write +EXPORT_SYMBOL vmlinux 0xd79dca31 param_get_bool +EXPORT_SYMBOL vmlinux 0xd7a39a74 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xd7a7378d tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xd7c11235 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xd7c41295 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0xd7cc7164 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xd7ce4cf6 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xd7d9221b kmem_cache_size +EXPORT_SYMBOL vmlinux 0xd7dc6560 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xd7dd66bd jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd847b119 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0xd85833cb __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0xd85f8060 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xd86cf5b5 tty_set_operations +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8abd0c1 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xd8d1424d nvm_get_blk_unlocked +EXPORT_SYMBOL vmlinux 0xd8d993d7 registered_fb +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd9091363 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0xd910d7bd bdput +EXPORT_SYMBOL vmlinux 0xd92e2dca tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xd94322e7 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0xd966ddc2 __do_once_done +EXPORT_SYMBOL vmlinux 0xd969b2c7 amd_e400_c1e_detected +EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd99d7530 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xd9b69616 netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0xd9b7a496 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0xd9cb3fc7 sock_update_memcg +EXPORT_SYMBOL vmlinux 0xd9d3bcd3 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9ddd322 nf_log_set +EXPORT_SYMBOL vmlinux 0xd9ecaabc dev_emerg +EXPORT_SYMBOL vmlinux 0xda04bde2 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0xda08c0d7 pcibios_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xda0b9feb input_free_device +EXPORT_SYMBOL vmlinux 0xda26fa92 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda4268c2 dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0xda4341ca inode_init_owner +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda8fd495 isapnp_write_byte +EXPORT_SYMBOL vmlinux 0xda9e900c __mmc_claim_host +EXPORT_SYMBOL vmlinux 0xdaa57ec3 totalhigh_pages +EXPORT_SYMBOL vmlinux 0xdaa86269 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0xdaabd954 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdad5b77a md_integrity_register +EXPORT_SYMBOL vmlinux 0xdae80100 _raw_spin_unlock +EXPORT_SYMBOL vmlinux 0xdafb456b iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0xdb05321b loop_register_transfer +EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg +EXPORT_SYMBOL vmlinux 0xdb4b7e81 __serio_register_driver +EXPORT_SYMBOL vmlinux 0xdb51e35c __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xdb73b13a vga_put +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb7fccc6 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0xdb870afd kernel_param_lock +EXPORT_SYMBOL vmlinux 0xdbafa0f7 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0xdbb08daf nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0xdbc6b679 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0xdbccd78c cfb_imageblit +EXPORT_SYMBOL vmlinux 0xdbef5df2 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xdbf79540 pci_bus_get +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc15f2be xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xdc250298 led_set_brightness +EXPORT_SYMBOL vmlinux 0xdc25a01b nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0xdc3e568f tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc48a93b register_sysctl_table +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc57f532 acpi_install_gpe_handler +EXPORT_SYMBOL vmlinux 0xdc60dc74 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0xdca608d2 nf_log_packet +EXPORT_SYMBOL vmlinux 0xdcaba60d __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xdcd5d54f pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0xdcd8ffc4 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xdd03bd4f free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat +EXPORT_SYMBOL vmlinux 0xdd4d999c kill_anon_super +EXPORT_SYMBOL vmlinux 0xdd4df982 sk_ns_capable +EXPORT_SYMBOL vmlinux 0xdd633634 bio_reset +EXPORT_SYMBOL vmlinux 0xdd753fcb tcp_sendmsg +EXPORT_SYMBOL vmlinux 0xdd7f3d19 key_revoke +EXPORT_SYMBOL vmlinux 0xdd962d2d from_kuid +EXPORT_SYMBOL vmlinux 0xdd9e863b gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0xddb37d02 proc_dointvec +EXPORT_SYMBOL vmlinux 0xddb9c412 d_obtain_root +EXPORT_SYMBOL vmlinux 0xddba5f70 input_set_keycode +EXPORT_SYMBOL vmlinux 0xde16dc16 tboot +EXPORT_SYMBOL vmlinux 0xde2b7c11 release_sock +EXPORT_SYMBOL vmlinux 0xde2e7cb7 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0xde44061d inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0xde51cbc4 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xde56acc1 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xde853b41 blk_start_queue_async +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xded931f3 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0xdedb6611 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0xdee82254 kernel_write +EXPORT_SYMBOL vmlinux 0xdef8de12 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0xdefa09ed cdrom_release +EXPORT_SYMBOL vmlinux 0xdf0da3cc acpi_get_devices +EXPORT_SYMBOL vmlinux 0xdf12a927 acpi_check_dsm +EXPORT_SYMBOL vmlinux 0xdf1427e5 idr_remove +EXPORT_SYMBOL vmlinux 0xdf1a5612 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update +EXPORT_SYMBOL vmlinux 0xdf4bfebf dev_crit +EXPORT_SYMBOL vmlinux 0xdf4fc797 __register_nmi_handler +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf6bd3c1 dqget +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf941da7 netdev_state_change +EXPORT_SYMBOL vmlinux 0xdf941fad security_inode_init_security +EXPORT_SYMBOL vmlinux 0xdfa7a8ec try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init +EXPORT_SYMBOL vmlinux 0xdfd3a075 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0xdfd7616d key_payload_reserve +EXPORT_SYMBOL vmlinux 0xdfe200cb d_drop +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xe008b660 d_splice_alias +EXPORT_SYMBOL vmlinux 0xe00fa1ae dcache_dir_close +EXPORT_SYMBOL vmlinux 0xe046c155 simple_statfs +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe0540202 generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe065c63b set_pages_nx +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe08f148b pnp_device_attach +EXPORT_SYMBOL vmlinux 0xe0a16a20 intel_scu_ipc_i2c_cntrl +EXPORT_SYMBOL vmlinux 0xe0ac8bd2 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b2adc4 cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0xe0c0874a __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xe0d1c3c1 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xe0ea99ab xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0xe10c239b pci_scan_slot +EXPORT_SYMBOL vmlinux 0xe11d7007 pci_reenable_device +EXPORT_SYMBOL vmlinux 0xe12f2fb9 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe142dc2f memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xe160d479 mdiobus_write +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe17a7f7a ip6_frag_match +EXPORT_SYMBOL vmlinux 0xe1a8e00a phy_init_hw +EXPORT_SYMBOL vmlinux 0xe1e7e058 netdev_err +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe20391cb proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0xe20d6265 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xe22f603c read_code +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe23b278c phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xe24cb19c iov_iter_advance +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe259ae9e _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xe26d4bd9 napi_gro_frags +EXPORT_SYMBOL vmlinux 0xe286a6c3 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xe2895c98 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xe28c1639 ilookup5 +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2c4d97e __neigh_event_send +EXPORT_SYMBOL vmlinux 0xe2c8196d acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0xe2d47270 rtnl_unicast +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user +EXPORT_SYMBOL vmlinux 0xe2f24a47 fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe2f6d35d security_inode_readlink +EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup +EXPORT_SYMBOL vmlinux 0xe3197208 proc_dostring +EXPORT_SYMBOL vmlinux 0xe319eb24 acpi_pci_osc_control_set +EXPORT_SYMBOL vmlinux 0xe3399a75 native_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0xe358dac0 tcp_poll +EXPORT_SYMBOL vmlinux 0xe379b727 from_kuid_munged +EXPORT_SYMBOL vmlinux 0xe381e679 dev_close +EXPORT_SYMBOL vmlinux 0xe392abab __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xe3a08cb0 vme_irq_free +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3c965ca bio_alloc_pages +EXPORT_SYMBOL vmlinux 0xe3d1b30c load_nls +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3db61d6 nf_log_register +EXPORT_SYMBOL vmlinux 0xe3de250f truncate_setsize +EXPORT_SYMBOL vmlinux 0xe3e3e8e9 set_groups +EXPORT_SYMBOL vmlinux 0xe4279d82 blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0xe42d40f7 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0xe445db4a acpi_check_address_range +EXPORT_SYMBOL vmlinux 0xe467e3ed __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xe4827fb6 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe493c17c flow_cache_lookup +EXPORT_SYMBOL vmlinux 0xe4b35e8a ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xe4c17741 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xe4e23e4b __starget_for_each_device +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe50f904f intel_scu_ipc_ioread16 +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe530c983 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xe530d757 acpi_clear_gpe +EXPORT_SYMBOL vmlinux 0xe53446c4 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0xe5584203 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0xe56cf129 kset_unregister +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe5815f8a _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe5a95d10 phy_attach +EXPORT_SYMBOL vmlinux 0xe5c64d33 page_put_link +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5ca0f9e sync_blockdev +EXPORT_SYMBOL vmlinux 0xe5d51089 tcp_read_sock +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe6162877 down_killable +EXPORT_SYMBOL vmlinux 0xe6209b95 netif_napi_del +EXPORT_SYMBOL vmlinux 0xe62636d9 bioset_integrity_free +EXPORT_SYMBOL vmlinux 0xe63f9a8b fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xe64d98fe rdmsr_safe_regs +EXPORT_SYMBOL vmlinux 0xe65465d2 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xe6844aba security_path_mkdir +EXPORT_SYMBOL vmlinux 0xe6861a55 rfkill_alloc +EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe6eae207 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xe6eba4c4 filemap_fault +EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe7145cc9 keyring_alloc +EXPORT_SYMBOL vmlinux 0xe716baed acpi_unregister_ioapic +EXPORT_SYMBOL vmlinux 0xe71ca900 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0xe738348e pci_bus_type +EXPORT_SYMBOL vmlinux 0xe743c6d2 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0xe74adbc3 make_kgid +EXPORT_SYMBOL vmlinux 0xe781b5f6 intel_scu_ipc_readv +EXPORT_SYMBOL vmlinux 0xe7844234 udp6_set_csum +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7b6315e kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe8009460 simple_dir_operations +EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe86998af dm_io +EXPORT_SYMBOL vmlinux 0xe87025f0 acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss +EXPORT_SYMBOL vmlinux 0xe87b2edd sg_copy_buffer +EXPORT_SYMBOL vmlinux 0xe8a12a20 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8b68849 wrmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8c02dd8 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xe8c82f9d blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xe8d36f99 unregister_key_type +EXPORT_SYMBOL vmlinux 0xe8d79a56 inetdev_by_index +EXPORT_SYMBOL vmlinux 0xe8db8dd2 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xe8e1a757 bio_integrity_free +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe9304fad padata_free +EXPORT_SYMBOL vmlinux 0xe93f6042 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0xe9603ba4 dm_unregister_target +EXPORT_SYMBOL vmlinux 0xe97b6d8a netif_rx_ni +EXPORT_SYMBOL vmlinux 0xe992853e input_event +EXPORT_SYMBOL vmlinux 0xe997667b wrmsr_on_cpu +EXPORT_SYMBOL vmlinux 0xe99a1077 fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0xe9a555a2 __serio_register_port +EXPORT_SYMBOL vmlinux 0xe9acfac4 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0xe9d183d0 simple_rename +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea05a179 __breadahead +EXPORT_SYMBOL vmlinux 0xea1029b8 mutex_lock +EXPORT_SYMBOL vmlinux 0xea132806 add_disk +EXPORT_SYMBOL vmlinux 0xea2ec768 blk_run_queue +EXPORT_SYMBOL vmlinux 0xea3f725d _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0xea4cf340 simple_dname +EXPORT_SYMBOL vmlinux 0xea7987f1 key_update +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xea7b8a44 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xea826631 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xea90bdd3 acpi_attach_data +EXPORT_SYMBOL vmlinux 0xea98e7f3 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0xea9d8a08 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xeae3c52e truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeaedf6a6 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xeafc7ff7 vfs_iter_write +EXPORT_SYMBOL vmlinux 0xeafcb9b4 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0xeb1e5be6 tcf_hash_create +EXPORT_SYMBOL vmlinux 0xeb28d983 acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb44404e con_copy_unimap +EXPORT_SYMBOL vmlinux 0xeb4c08f0 tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xeb678d8a devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xeb686e66 set_cached_acl +EXPORT_SYMBOL vmlinux 0xeb7c276b skb_seq_read +EXPORT_SYMBOL vmlinux 0xeb9c3014 kfree_skb_list +EXPORT_SYMBOL vmlinux 0xeba70207 clk_get +EXPORT_SYMBOL vmlinux 0xeba8d18a sock_no_listen +EXPORT_SYMBOL vmlinux 0xebb4ee63 __break_lease +EXPORT_SYMBOL vmlinux 0xebc03d94 nvm_dev_factory +EXPORT_SYMBOL vmlinux 0xebd487a5 key_type_keyring +EXPORT_SYMBOL vmlinux 0xebd739eb netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xebdb8969 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xebe8229f unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xebf77225 phy_attach_direct +EXPORT_SYMBOL vmlinux 0xebff5cf5 fence_signal_locked +EXPORT_SYMBOL vmlinux 0xec0dd4c8 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0xec10eb01 pci_find_bus +EXPORT_SYMBOL vmlinux 0xec1aa6ef memzero_explicit +EXPORT_SYMBOL vmlinux 0xec3578fa soft_cursor +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec5fb132 pneigh_lookup +EXPORT_SYMBOL vmlinux 0xeca0b9ca scsi_host_get +EXPORT_SYMBOL vmlinux 0xecb26069 dev_activate +EXPORT_SYMBOL vmlinux 0xecbcb8bb radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0xecc6fcc2 inet_listen +EXPORT_SYMBOL vmlinux 0xeccd3e0c acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xed2aba18 generic_writepages +EXPORT_SYMBOL vmlinux 0xed327562 to_ndd +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed70daf4 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xedab545a inet_accept +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedcb0b07 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0xedcb7582 consume_skb +EXPORT_SYMBOL vmlinux 0xedd4d8a4 skb_checksum_help +EXPORT_SYMBOL vmlinux 0xedeb1a81 mmc_release_host +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xee0c0403 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xee0d79e8 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee2e2e80 ilookup +EXPORT_SYMBOL vmlinux 0xee530f95 swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0xee6e8b4a bio_advance +EXPORT_SYMBOL vmlinux 0xee76642a dev_get_by_index +EXPORT_SYMBOL vmlinux 0xee7b11a1 kobject_get +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee880b77 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xeea7ae56 pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeec2c7cf ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0xeec957da mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xeef470db truncate_pagecache +EXPORT_SYMBOL vmlinux 0xeefcf21b devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0xef011b18 mark_info_dirty +EXPORT_SYMBOL vmlinux 0xef0b715d mmc_can_reset +EXPORT_SYMBOL vmlinux 0xef1f325e vfs_llseek +EXPORT_SYMBOL vmlinux 0xef89117e gnttab_free_pages +EXPORT_SYMBOL vmlinux 0xef93c375 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xef954ccc udp_proc_register +EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override +EXPORT_SYMBOL vmlinux 0xef9bfa80 skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xefda8d99 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefe099c3 acpi_get_event_status +EXPORT_SYMBOL vmlinux 0xeff08481 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0xeff7c99b dev_get_stats +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf00d8dc3 arp_tbl +EXPORT_SYMBOL vmlinux 0xf015496d blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0xf018214f passthru_features_check +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf0236e9c qdisc_list_add +EXPORT_SYMBOL vmlinux 0xf02bf60e agp_collect_device_status +EXPORT_SYMBOL vmlinux 0xf037f92e __getblk_slow +EXPORT_SYMBOL vmlinux 0xf044ae64 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0xf0495d90 sock_get_timestamp +EXPORT_SYMBOL vmlinux 0xf050d78f elv_register_queue +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf062576b ucs2_utf8size +EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be +EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0xf07ad21c audit_log_task_info +EXPORT_SYMBOL vmlinux 0xf08242c2 finish_wait +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf08e99ff xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf09f117d ip_do_fragment +EXPORT_SYMBOL vmlinux 0xf0a62453 phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0xf0b3d74c user_path_at_empty +EXPORT_SYMBOL vmlinux 0xf0bf2d2b inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xf0c24c19 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xf0dd912e cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0xf0eaffce _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 +EXPORT_SYMBOL vmlinux 0xf11543ff find_first_zero_bit +EXPORT_SYMBOL vmlinux 0xf1398e2e lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf169c8f6 unregister_md_personality +EXPORT_SYMBOL vmlinux 0xf18242e1 atomic64_set_cx8 +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1a14613 iov_iter_zero +EXPORT_SYMBOL vmlinux 0xf1ad1923 sk_reset_timer +EXPORT_SYMBOL vmlinux 0xf1b6bb8d tcp_shutdown +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1dbcba8 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xf1deabf2 div64_u64 +EXPORT_SYMBOL vmlinux 0xf1e31a09 sock_no_poll +EXPORT_SYMBOL vmlinux 0xf1e7a242 migrate_page +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1fe1bfa __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf21f920a __pci_register_driver +EXPORT_SYMBOL vmlinux 0xf221e6a9 filemap_map_pages +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf25db4e2 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0xf2625084 poll_initwait +EXPORT_SYMBOL vmlinux 0xf27a25dc simple_write_begin +EXPORT_SYMBOL vmlinux 0xf28ed6e2 machine_to_phys_nr +EXPORT_SYMBOL vmlinux 0xf292da22 fb_blank +EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0xf2999b0a copy_from_iter +EXPORT_SYMBOL vmlinux 0xf29ea03b blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered +EXPORT_SYMBOL vmlinux 0xf2a10553 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xf2bdf774 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0xf2c1a8d8 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2c4b7d7 sock_wfree +EXPORT_SYMBOL vmlinux 0xf2eb1728 tty_port_destroy +EXPORT_SYMBOL vmlinux 0xf2ed56d3 simple_write_end +EXPORT_SYMBOL vmlinux 0xf2f4ca30 bio_split +EXPORT_SYMBOL vmlinux 0xf30dde3b bio_copy_kern +EXPORT_SYMBOL vmlinux 0xf312737a phy_driver_register +EXPORT_SYMBOL vmlinux 0xf312cb9d ucs2_strsize +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf313eb4e devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xf32c6af7 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf33dd447 mdio_bus_type +EXPORT_SYMBOL vmlinux 0xf3401c32 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf34e6518 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf3778106 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xf37c7734 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf38ef4bb agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0xf38fe6c2 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xf3986b06 acpi_os_map_generic_address +EXPORT_SYMBOL vmlinux 0xf3aaa39a nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0xf3d7df4b tcp_seq_open +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3ede795 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xf3ee7a3f send_sig_info +EXPORT_SYMBOL vmlinux 0xf404c9f9 rtnl_create_link +EXPORT_SYMBOL vmlinux 0xf406410f textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0xf40b2297 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xf4300008 f_setown +EXPORT_SYMBOL vmlinux 0xf43c5f1a key_link +EXPORT_SYMBOL vmlinux 0xf4418789 tcp_close +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf4871b2e mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0xf4a5c213 avail_to_resrv_perfctr_nmi_bit +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4de8d8c tty_kref_put +EXPORT_SYMBOL vmlinux 0xf4dee67f dev_printk_emit +EXPORT_SYMBOL vmlinux 0xf4e0e9f2 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4f7bfb6 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0xf502d273 acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0xf5033b48 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0xf51ae235 touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xf51bae4e sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0xf5289ae9 __sb_start_write +EXPORT_SYMBOL vmlinux 0xf534332a mmc_can_erase +EXPORT_SYMBOL vmlinux 0xf536d22e acpi_set_gpe_wake_mask +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf53f3ca6 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0xf54019a6 ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xf543d7d1 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xf54a79d5 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xf579c832 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0xf59247ca ata_std_end_eh +EXPORT_SYMBOL vmlinux 0xf5931888 brioctl_set +EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set +EXPORT_SYMBOL vmlinux 0xf5a73a3f twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0xf5adf797 seq_open_private +EXPORT_SYMBOL vmlinux 0xf5b10e67 acpi_install_global_event_handler +EXPORT_SYMBOL vmlinux 0xf5b6f5e8 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5d6ae25 generic_file_open +EXPORT_SYMBOL vmlinux 0xf5dbf400 __seq_open_private +EXPORT_SYMBOL vmlinux 0xf5e4e88c param_get_long +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf5ed19c4 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xf5f40565 lock_sock_nested +EXPORT_SYMBOL vmlinux 0xf5fb0d32 twl6040_power +EXPORT_SYMBOL vmlinux 0xf6007451 page_follow_link_light +EXPORT_SYMBOL vmlinux 0xf6065949 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0xf61fd35e mem_cgroup_begin_page_stat +EXPORT_SYMBOL vmlinux 0xf62568e3 pcie_set_mps +EXPORT_SYMBOL vmlinux 0xf62dae2b dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf644f116 xfrm_lookup +EXPORT_SYMBOL vmlinux 0xf647f801 blk_free_tags +EXPORT_SYMBOL vmlinux 0xf655d743 fput +EXPORT_SYMBOL vmlinux 0xf656e443 sock_rfree +EXPORT_SYMBOL vmlinux 0xf6576b97 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xf6899c5a acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0xf693a145 irq_stat +EXPORT_SYMBOL vmlinux 0xf69a3f9b set_anon_super +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6ed42d1 vga_switcheroo_register_client +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf726d02f atomic64_add_unless_cx8 +EXPORT_SYMBOL vmlinux 0xf73a1a9a unregister_netdev +EXPORT_SYMBOL vmlinux 0xf745cb16 atomic64_sub_return_cx8 +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf764868a udplite_table +EXPORT_SYMBOL vmlinux 0xf7795477 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0xf787fadc dquot_get_state +EXPORT_SYMBOL vmlinux 0xf788424d register_sysctl +EXPORT_SYMBOL vmlinux 0xf7891779 gen_pool_free +EXPORT_SYMBOL vmlinux 0xf79e97cd acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0xf7b7b94c pnp_find_card +EXPORT_SYMBOL vmlinux 0xf7c47218 udp_prot +EXPORT_SYMBOL vmlinux 0xf7d0d525 new_inode +EXPORT_SYMBOL vmlinux 0xf7d3489a __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xf7e0dd55 elevator_exit +EXPORT_SYMBOL vmlinux 0xf7f6572d scmd_printk +EXPORT_SYMBOL vmlinux 0xf7fd7b44 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xf7ff5113 noop_qdisc +EXPORT_SYMBOL vmlinux 0xf8050fac acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf81b5e54 km_query +EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf839286e pci_get_subsys +EXPORT_SYMBOL vmlinux 0xf85ed5de clear_inode +EXPORT_SYMBOL vmlinux 0xf8659e96 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0xf8680c63 genphy_config_init +EXPORT_SYMBOL vmlinux 0xf86c99a1 tty_unregister_device +EXPORT_SYMBOL vmlinux 0xf87b5239 file_update_time +EXPORT_SYMBOL vmlinux 0xf88e0ee2 acpi_get_table_header +EXPORT_SYMBOL vmlinux 0xf8b3ecfe devm_free_irq +EXPORT_SYMBOL vmlinux 0xf8cb0922 flow_cache_init +EXPORT_SYMBOL vmlinux 0xf8dd814b blk_stop_queue +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf907078e __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run +EXPORT_SYMBOL vmlinux 0xf9448738 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xf947e77b init_task +EXPORT_SYMBOL vmlinux 0xf952a647 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xf95a53ce __check_sticky +EXPORT_SYMBOL vmlinux 0xf95b2c1a netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xf9612cd0 sock_no_accept +EXPORT_SYMBOL vmlinux 0xf970d920 nf_ct_attach +EXPORT_SYMBOL vmlinux 0xf990b704 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0xf99ffdbc sock_no_bind +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9c0e60c vm_iomap_memory +EXPORT_SYMBOL vmlinux 0xf9dd280f page_readlink +EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf +EXPORT_SYMBOL vmlinux 0xf9f2a84c xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0xf9f61c22 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xf9fc68b1 clk_register_clkdevs +EXPORT_SYMBOL vmlinux 0xfa1d23a0 neigh_destroy +EXPORT_SYMBOL vmlinux 0xfa273b20 key_invalidate +EXPORT_SYMBOL vmlinux 0xfa2f76f9 param_set_ullong +EXPORT_SYMBOL vmlinux 0xfa3fc3cd kernel_accept +EXPORT_SYMBOL vmlinux 0xfa41770c generic_perform_write +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa6cd0c7 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xfa7aa0fa page_symlink +EXPORT_SYMBOL vmlinux 0xfa8ac42b set_user_nice +EXPORT_SYMBOL vmlinux 0xfaa9fcd4 blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL vmlinux 0xfaf05c96 napi_gro_receive +EXPORT_SYMBOL vmlinux 0xfafbba5b abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0xfb0443fb acpi_get_parent +EXPORT_SYMBOL vmlinux 0xfb1b10fb pci_set_master +EXPORT_SYMBOL vmlinux 0xfb28de91 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0xfb35878d pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xfb5f1146 udp_del_offload +EXPORT_SYMBOL vmlinux 0xfb5ffde5 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb71d439 intel_gmch_probe +EXPORT_SYMBOL vmlinux 0xfb809c52 security_path_mknod +EXPORT_SYMBOL vmlinux 0xfb80c7a0 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xfb90addc inc_nlink +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfb95fdd2 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbbd0225 mapping_tagged +EXPORT_SYMBOL vmlinux 0xfbbd1d4b eisa_driver_register +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbcb4b70 dev_alert +EXPORT_SYMBOL vmlinux 0xfbcc4869 kthread_bind +EXPORT_SYMBOL vmlinux 0xfbcdb318 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xfbd71298 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xfbdab3e8 dm_put_table_device +EXPORT_SYMBOL vmlinux 0xfbe9989b ns_capable +EXPORT_SYMBOL vmlinux 0xfbeda68f blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc0991cc inode_dio_wait +EXPORT_SYMBOL vmlinux 0xfc0da562 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xfc144d1b pci_dev_get +EXPORT_SYMBOL vmlinux 0xfc23cac5 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc44d234 nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0xfc479321 write_one_page +EXPORT_SYMBOL vmlinux 0xfc4dec8a bio_init +EXPORT_SYMBOL vmlinux 0xfc562165 acpi_run_osc +EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0xfc71fd1d km_state_expired +EXPORT_SYMBOL vmlinux 0xfc734327 queued_read_lock_slowpath +EXPORT_SYMBOL vmlinux 0xfc79b823 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xfc7d0e6b vfs_readf +EXPORT_SYMBOL vmlinux 0xfc872fd1 get_ibs_caps +EXPORT_SYMBOL vmlinux 0xfc9c1fbd mutex_unlock +EXPORT_SYMBOL vmlinux 0xfcac0d40 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcdb9472 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf95c78 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfcfe4ad8 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0xfd17d7d2 dentry_open +EXPORT_SYMBOL vmlinux 0xfd33b5fa cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xfd479372 sock_release +EXPORT_SYMBOL vmlinux 0xfd5f431c led_blink_set_oneshot +EXPORT_SYMBOL vmlinux 0xfd7e2d08 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xfd85b071 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfd9e2871 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0xfda51935 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xfdaa162a iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0xfdb23ed8 put_disk +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0xfdc37c05 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xfdeb1d49 dm_get_device +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfdfd6c90 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe047ce6 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0xfe13c522 acpi_install_gpe_raw_handler +EXPORT_SYMBOL vmlinux 0xfe3b2176 inet_put_port +EXPORT_SYMBOL vmlinux 0xfe40503f write_inode_now +EXPORT_SYMBOL vmlinux 0xfe51f2e7 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xfe5791ac __get_page_tail +EXPORT_SYMBOL vmlinux 0xfe5d30e9 _raw_write_trylock +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe5e7cb2 devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe83834e pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 +EXPORT_SYMBOL vmlinux 0xfeb3a246 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0xfec06358 skb_free_datagram +EXPORT_SYMBOL vmlinux 0xfeca7590 radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfedd8ca9 vga_tryget +EXPORT_SYMBOL vmlinux 0xfeeb6da7 mmc_detect_change +EXPORT_SYMBOL vmlinux 0xfeee3b85 dev_addr_flush +EXPORT_SYMBOL vmlinux 0xfeefd433 xfrm_state_update +EXPORT_SYMBOL vmlinux 0xfef2c78f idr_get_next +EXPORT_SYMBOL vmlinux 0xfefdbd4c cdrom_check_events +EXPORT_SYMBOL vmlinux 0xff080844 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff3125d7 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xff3737ad abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0xff42eebf devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0xff480992 dump_fpu +EXPORT_SYMBOL vmlinux 0xff4e9620 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff6cb7a2 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource +EXPORT_SYMBOL vmlinux 0xff794529 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xff7dd17c __init_rwsem +EXPORT_SYMBOL vmlinux 0xff854971 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xffac0162 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0xffb0acee scsi_device_get +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffe1f057 md_cluster_mod +EXPORT_SYMBOL vmlinux 0xffe51886 lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL arch/x86/crypto/aes-i586 0x7060bf0a crypto_aes_encrypt_x86 +EXPORT_SYMBOL_GPL arch/x86/crypto/aes-i586 0xe409b491 crypto_aes_decrypt_x86 +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x1730c895 glue_cbc_decrypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x590893e8 glue_ecb_crypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x705a63ad glue_cbc_encrypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x8f02ac4d glue_xts_crypt_128bit_one +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xeb72d183 glue_ctr_crypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xf5e9dddc glue_xts_crypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-i586 0x28afd262 twofish_enc_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-i586 0x6f068d90 twofish_dec_blk +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00aaf935 kvm_disable_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x018c1de6 kvm_task_switch +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x03ed4733 kvm_mmu_unprotect_page_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x05fcc029 kvm_mtrr_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x08ef5ca6 kvm_emulate_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0961d2b8 kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0a77e745 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0adfd567 kvm_get_dirty_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0c73f5fd kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d24d657 kvm_apic_set_eoi_accelerated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0f24d192 kvm_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0f47d9d8 kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x104e5a7f kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1059ed1a kvm_inject_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x157cbf24 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x15d8ff2f kvm_rdpmc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x15f35bf3 kvm_arch_register_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x175aea24 kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1763f841 kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x18f63870 __x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1edc2059 handle_mmio_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x203bdb00 kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2124f042 kvm_read_guest_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2318c071 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x239bf3f1 kvm_cpu_get_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25bf1802 kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25d1c038 kvm_set_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c78b8d4 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d5fe86d kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d9eb722 mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2e940c08 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f636c31 kvm_spurious_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2fed6a26 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3020d26f kvm_set_xcr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x30ac8b73 kvm_get_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x317f9e6b kvm_enable_efer_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x32e32327 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x332f07e3 kvm_after_handle_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3489e95a kvm_mmu_unload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x36ff21fc __tracepoint_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3849ae3e __tracepoint_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3cc344af kvm_set_cr3 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e094575 __tracepoint_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4018502c kvm_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x40b3388f gfn_to_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x40ce1e45 __tracepoint_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x40e5a57f kvm_valid_efer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4321c06e vcpu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x43f4230c __tracepoint_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x44747ffd kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x46dac7f0 kvm_mmu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4bbd32df kvm_get_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4cdd0c15 kvm_arch_start_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x54c7ad41 kvm_set_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55cfb345 x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x563da375 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x56442ae1 kvm_mmu_slot_largepage_remove_write_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x56a5bdac kvm_arch_has_assigned_device +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x56c976a3 kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x56cef9d4 gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5b1b8580 kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5cdade90 kvm_put_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5f81b92d kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5fa01c34 kvm_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5fdbdd23 kvm_vcpu_reload_apic_access_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x615f2fd8 kvm_mmu_slot_set_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x63bf1d72 kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x64020e10 kvm_set_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x669da1fd kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6804cc1f kvm_requeue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68138a79 __tracepoint_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x69323b80 kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x694303cb kvm_vcpu_is_reset_bsp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x698e84b4 load_pdptrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6a4fcba2 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6b60dff2 kvm_get_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c7146ff kvm_require_cpl +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6e5b1e1b kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ed87871 kvm_scale_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6f550c6f kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7165a145 kvm_init_shadow_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x72142ca8 kvm_init_shadow_ept_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x72cbeea2 kvm_mmu_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a030f94 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7aa64803 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7bb83795 kvm_inject_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c59e22e __tracepoint_kvm_ple_window +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c6f9f21 kvm_before_handle_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ca050ac reset_shadow_zero_bits_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7cb52079 kvm_mmu_clear_dirty_pt_masked +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7da2b603 gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7dacd291 kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7e96d0ae kvm_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7f896960 kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x80ecfb6b __tracepoint_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8252c619 reprogram_gp_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x826d4044 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x831327da kvm_max_guest_tsc_khz +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x85dd665e kvm_vcpu_uninit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ce4f3ab kvm_enable_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8da01274 kvm_get_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8e1cd06f kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8f796326 kvm_get_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9015a228 kvm_get_dirty_log_protect +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x92d713dd __tracepoint_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93cdd9a2 kvm_set_msi_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x947ea04c kvm_x86_ops +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96dbe382 kvm_mpx_supported +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x974506d9 cpuid_query_maxphyaddr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x97cf93ca kvm_cpu_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x982cd932 __tracepoint_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a216313 kvm_define_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9b5c5e2f kvm_fast_pio_out +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9bf4d31b kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9c171a59 __tracepoint_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9c4e0181 kvm_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9db82b37 kvm_arch_has_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e0a65d0 __tracepoint_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa0a7c1a7 vcpu_put +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa0ec3a0a gfn_to_hva_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa154d357 kvm_vcpu_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa20099f9 kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa4bb618a kvm_mmu_unprotect_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa956c271 kvm_mtrr_valid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xac701ae2 kvm_arch_unregister_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xacf7f97c gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xae13a3b2 kvm_clear_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xae34785a kvm_mmu_sync_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaec4ea1d kvm_apic_write_nodecode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaf0a9d13 gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb031d835 kvm_read_l1_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb05533b5 kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb0e70997 kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb11e656b kvm_get_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1e9c360 kvm_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb72d6392 kvm_mmu_slot_leaf_clear_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb821af00 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb83790c8 kvm_vcpu_block +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba9ed435 kvm_mmu_set_mmio_spte_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbc796245 kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbe759c77 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbe94e8c8 kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc23f3bc8 __tracepoint_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc2618dec kvm_get_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc51822f7 kvm_vcpu_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc56d75ce __kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc599bc18 kvm_max_tsc_scaling_ratio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcd5da2d2 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcd679484 kvm_emulate_wbinvd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd00a41fb kvm_is_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0459e67 kvm_has_tsc_control +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0b2727a kvm_mmu_set_mask_ptes +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd21d1341 kvm_get_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd29e649e kvm_lmsw +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd41a0f43 x86_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd569874f kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd7eb738b __tracepoint_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd7ee9e0c gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd8483d7a kvm_set_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd93bbd46 gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda11af86 __tracepoint_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdbc0b346 kvm_inject_pending_timer_irqs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde9c017c __tracepoint_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe755a9e1 reprogram_fixed_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe793d2c3 reprogram_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea6e7153 __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xec14e7e5 kvm_mmu_invlpg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xede07c65 kvm_require_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xefb4f1d8 kvm_get_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeffd1543 kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2a01e9f kvm_emulate_hypercall +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2f286c4 kvm_tsc_scaling_ratio_frac_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf53f9aa0 kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf55952b7 kvm_requeue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf5776a9a kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf63f63fc kvm_inject_realmode_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf7335bac kvm_write_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfa5a5544 kvm_arch_end_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfc9016be kvm_intr_is_single_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfdc68132 __tracepoint_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfe51d9e4 kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfffa4daf kvm_read_guest_page_mmu +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x17449176 ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x2d20655e ablk_init +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x2d59677a ablk_decrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x5218a988 __ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x5944d3ce ablk_exit +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x6d27b394 ablk_init_common +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x77a167c8 ablk_set_key +EXPORT_SYMBOL_GPL crypto/af_alg 0x11badcb8 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0x12c6ae67 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x1dfe586c af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0x711b1105 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x9f75cdf4 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xb7b82e23 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xbe051a56 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xdcfcc288 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xe5f6cd24 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xe828552e af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0xf81574e1 af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x3e4c6461 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x471865e9 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x79176f1a async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x6bae5629 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xb40402b2 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x485a4399 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x9a181ad2 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xaf18d6e0 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xd6228067 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x0ca40a7e async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x1a81282b async_xor_val +EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x3f48f7d7 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xe875aec8 cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8aaf01d4 cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 +EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 +EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 +EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x6214796e crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x75cda56a crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/cryptd 0x1f61c797 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x21c0fcc2 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x2e3a01a7 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x404552f3 cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x59cf6d82 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x5cd2f7fe cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x65f319db cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x7300986f cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x9bd72475 cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xdead0be4 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey +EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey +EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table +EXPORT_SYMBOL_GPL crypto/lrw 0x4b8417ae lrw_crypt +EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table +EXPORT_SYMBOL_GPL crypto/mcryptd 0x14bdd4d3 mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0x2730a845 mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x3e837bb1 shash_ahash_mcryptd_digest +EXPORT_SYMBOL_GPL crypto/mcryptd 0x4ef4999d mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/mcryptd 0x63c5bfbe mcryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/mcryptd 0x6583d04f shash_ahash_mcryptd_update +EXPORT_SYMBOL_GPL crypto/mcryptd 0x6e0e2c41 shash_ahash_mcryptd_finup +EXPORT_SYMBOL_GPL crypto/mcryptd 0x6f0c1710 mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0xba5d4021 shash_ahash_mcryptd_final +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x16d317c7 crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x5331d8f4 crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x808e603c crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x858dd163 crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x970cba58 serpent_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xbe728c06 twofish_setkey +EXPORT_SYMBOL_GPL crypto/xts 0x767216ac xts_crypt +EXPORT_SYMBOL_GPL drivers/acpi/nfit 0xa50b6b9f acpi_nfit_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit 0xba57bfd3 acpi_nfit_attribute_groups +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x1c8984c7 acpi_smbus_unregister_callback +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x87bd07bd acpi_smbus_register_callback +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0xb9a141b0 acpi_smbus_read +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0xe1372311 acpi_smbus_write +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x03343b38 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x13f7cf7c ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1d977339 ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1f250a6e ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x268f8d97 ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2c290650 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x44413ffd ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4ee5a527 ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x52857ca6 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5acaccb0 ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x63410e83 ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x638e8f99 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7ebb3ca9 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x811e4067 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x82019282 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x836c0ca7 ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9a03282b ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa6caa8df ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xcaadbc0a ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd4e5f2ea ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea8f51dd ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf50f306b ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf8fd0cb9 ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2ec2f224 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3b0cf6e0 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x4d855452 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x57a6c8da ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x695cf13a ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x77325042 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x860efbfd ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xaf6586ec ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb9e64e4c ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xbeedd347 ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xcd1067f4 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd0596295 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe1282980 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xd42550cf __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x02ff9464 cfag12864b_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x0ecb2e5d cfag12864b_disable +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x305dc3c6 cfag12864b_isenabled +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x3389f926 cfag12864b_enable +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x9522a342 cfag12864b_getrate +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0xc48e9d95 cfag12864b_buffer +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x297798ba __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x353c96bd __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xd3f94e7c __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xf4962b2d __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0d7ff991 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x11669dac __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3aa5757d bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x481b09e9 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x605492fc bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6e096ec1 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7152353e bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x73d4df91 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x778c3207 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x80a30b61 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x84f12b7a bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8a776233 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x997eb506 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc042b794 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc20447c6 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcab6c873 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdae27c47 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdff05795 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe0dfe6e5 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe2f32b44 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe3dbf119 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe9ec636c bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xef4ec4db bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfbc88f2f bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x05df2e8a btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x067aa9ca btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x106efc42 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x96f574ce btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd4543697 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xff8abb6c btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3f5f01dc btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5b87bee9 btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6d5f535e btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8b1e895a btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x93921bef btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x953dc4b8 btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x99b9ba75 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa36a39fb btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb1caec7e btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb7d366d9 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xddefa828 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe9a18fef btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x069c8080 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2c5505db btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x306deea0 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x32a9342c btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3bcdab35 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x64b7d12b btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7e6ef197 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe6ba73d3 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe6fb1bc3 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf706833a btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfa1aa5e3 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x58dfbe40 qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xa5a5ef5c qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x1a20763f btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xfbb4c45e h4_recv_buf +EXPORT_SYMBOL_GPL drivers/char/scx200_gpio 0x835313fc scx200_gpio_ops +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x04773b60 ccp_present +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x9c3371ea ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0093666d adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x06935bcc adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0e755c70 adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x10160269 adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1486b286 adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x24b11dd6 adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2ec5150e adf_dev_stop +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x30a65bb1 adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4a8b4106 adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4c12ea06 adf_response_handler +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x51d372cc adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5e36e125 adf_service_unregister +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x79d1eb10 adf_iov_putmsg +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7e2d3a4d adf_service_register +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x84e99952 adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8e4fe09b adf_dev_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x90f26552 adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x91c11df3 adf_enable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x98950643 adf_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x98e5c042 adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa6031dda adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa7cff3d2 adf_update_ring_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa916fe42 adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb6fc9819 adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbb4316f2 adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc3a77de7 adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc406b455 adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc69aed4e adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc903b01a adf_disable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc9836a01 adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcb1e4476 adf_dev_start +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcc3b167a adf_clean_vf_map +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd7616933 adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf2e5f170 adf_disable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf4103e2f adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfaf7cce9 adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfbb5f0e3 adf_enable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfec60b0f adf_disable_vf2pf_interrupts +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x0f568e72 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x635e3910 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7518d6ba dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xbe4aaf75 dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xe65ddf08 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x0ae7aec3 hsu_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x1c44ce23 hsu_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x27f4c783 hsu_dma_irq +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x050ff452 vchan_find_desc +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x9e4ae1d1 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xc48915e8 vchan_tx_submit +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xe0f9bb62 vchan_init +EXPORT_SYMBOL_GPL drivers/edac/amd64_edac_mod 0xccf72ccb amd64_get_dram_hole_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x07db75e7 edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c16e022 edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0e7bbb60 find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1a180032 edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x30d2e095 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x369f2af5 edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3a4f9ca0 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4925daef edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4e4ee941 edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6a734562 edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x722ec75f edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x755ad9c8 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7d25d65b edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x801437e0 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8fe76e3a edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x93934f34 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x993d1b3f edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xdacdf19c edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xdb7773b3 edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf6533f6c edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf7d5768e edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf9c535a3 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xfccfc8ce edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x14878009 amd_report_gart_errors +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x1d34e996 pp_msgs +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x81d75507 amd_register_ecc_decoder +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xb30b7e56 amd_decode_mce +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xd3cc2686 amd_unregister_ecc_decoder +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2e078db4 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x30683138 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8fd1b1c7 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe6ee5df9 fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf016f440 fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf8e5fb38 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0x013fbdac cs5535_gpio_set +EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0x93f8fe67 cs5535_gpio_set_irq +EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0xc0bb404a cs5535_gpio_setup_event +EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0xd3bd9300 cs5535_gpio_isset +EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0xe07c0954 cs5535_gpio_clear +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x43e14f00 bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xeb584d01 bgpio_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x158461db __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x805c8842 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5a33401b drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6d9a6da6 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xde006942 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x05876c69 i915_gpu_busy +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x08a7896d i915_gpu_raise +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x402468e9 i915_gpu_lower +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x500858b9 i915_read_mch_val +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0xe7237b0b i915_gpu_turbo_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x38c345d6 ttm_dma_page_alloc_debugfs +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xd60757e8 ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xe7b1488d ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/hid/hid 0x028eca94 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0e1e2c11 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x13209d1c hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x14afe116 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2314bc6b hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x24bca7ca hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x40ac1caf hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x483efb3c hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4bd362c8 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4c5330b4 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5378524a hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x53df374a hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x588794f5 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5cad6909 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5d17d223 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x61d3ee80 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x66c6ada6 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6cd1dcb2 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6d455c52 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7bfab730 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9acac39a hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9c192993 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xac53d872 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb630baab __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbfc3758f hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc5c0b850 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc7c50520 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc8fa20be hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcc753127 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd2fe9223 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0xedc4e2aa hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xedf5da01 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf0229ab8 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf5c4e1e0 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf62ab342 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfed2df50 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x0e3c19d3 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x24b501de roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x40a5d88f roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x4c955733 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x7912d804 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x9f9e0985 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd846c6dd roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0264b2f2 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0d2f50a4 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0e9eb91b sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0edac395 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x19c1308f sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x278b1e9b sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x5c1c645c sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x60f8d4c9 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xfb1391e5 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x24bf0bd8 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x01c080b6 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2221f850 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2b96ea92 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4b1e072c hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x60f2083e hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7925b756 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x930def81 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa56b1506 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc1940145 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc58172ee hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xccac2e69 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd2d82350 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdf31e2d3 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe424b6e6 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xed21d76f hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf34158b6 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf5c63c75 hsi_async +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0871d636 vmbus_get_outgoing_channel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0928b25f vmbus_sendpacket_multipagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1a25cd8a hv_do_hypercall +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1f92cd1f vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x206c5b03 vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x25a0a3d2 vmbus_cpu_number_to_vp_number +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x33cd9f28 vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x358fafa5 vmbus_prep_negotiate_resp +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x755a8812 vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x790c9955 vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7c2d65a0 vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x86ff5fa6 hyperv_cs +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x876a0925 vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x915b03ad vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9ffcc051 vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa879d5fe vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xab805148 vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb05573de __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xbaf1e5c9 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdb2f6047 vmbus_free_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe31cbb28 vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xeadb5fcc vmbus_send_tl_connect_request +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xed631a71 vmbus_sendpacket_pagebuffer_ctl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf231ea23 vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf5ed6ce9 vmbus_are_subchannels_present +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x375aa662 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x70dd8071 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x881e25bc adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x03bca471 pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x07a687b9 pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x1db04eeb pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x41a0a035 pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x427b4a23 pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x44b65467 pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4ecad97c pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x52e8448f pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x67d9e6a8 pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x76d039f9 pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8183f7f4 pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x867ab3d1 pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x90c3645c pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xcb6bd123 pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xdcaab967 pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x05a080bf intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0afa291e intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x86b6e425 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd06f8fda intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xdbb2b52a intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xeac95838 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xeec6c9f4 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x1d2c6a4c stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x8d050e3f stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa082f68c stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa620c36b stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc1c805fe stm_unregister_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x02c8bc01 i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x0616d491 i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x2f3a05ce i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x55162f7a i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x947981e3 i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0x7b53fbf5 nforce2_smbus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x57c0f20b i2c_add_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x9352f504 i2c_del_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x5092d18d i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x6871ac43 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x1b5a8a9c bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x90f5092f bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xec20e96b bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x0e363ad6 ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x1107a78d ad_sd_reset +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x1b1e1d45 ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x4d3de512 ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x68333604 ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x6a58cd4e ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xa0c073a0 ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xb9040d4f ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xbd712cc0 ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xeaad31fa ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a900021 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x79f12894 iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x33d30d6d ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x80c61408 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xaa1c97fb bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xba952cc8 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xe71b5791 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x004e081a adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0cd246ad adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x17432dbf adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x1a906831 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x3d54d906 adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x70c9270b adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x8ce9c9fe adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x8f39b7d9 adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xa6bec60a adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xba43bf7c adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc8bb6520 adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xd3e7fd56 adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x053b4e27 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0e022536 devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x20e28301 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2ae2e2b6 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2bac93d0 iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2f3be927 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x31bd007b iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x331c0020 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x371afac1 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3b047abf devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3ec5c03b iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3fa95870 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x43390905 devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x434a85d7 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4414ae92 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x496e3e6a iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5beb37d8 devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5d0ea585 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x67e9d91f iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x70f911ef devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x74f0c0f2 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7827ac13 devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x79ae9d6d iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7f91105c iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x83e51801 iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x93c7db45 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd3c640dc iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd3e183c6 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd42f597a iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe49baa74 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe5605a52 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xb30da835 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xa6ddf1a6 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x128f7306 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x25fda874 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x73fddb9a cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x2e381d79 cyttsp_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xee5e091a cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xf6635b81 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x02c2cec9 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xfa89b3d5 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xb49985cb tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xcddc58b4 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xde001705 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xeb0eae10 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x09a675ce wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x14186894 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1451fba8 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x29b7b4f4 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x45a13e6b wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x51758518 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x70bf9ae4 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9740461e wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9a745455 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb5a96057 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc50c7550 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd77d62d8 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x19934df9 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2b2c71be ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x3f685a8f ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4e9b5b4b ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x589a863b ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x9725ceae ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xaa4cc504 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xabf41975 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xfb0d3fc0 ipack_device_add +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0b5acff1 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x1672e2e2 gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3c32c720 gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3c545be3 gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3ea1afe9 gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x461bb9c3 gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4dd8a07f gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x751cc802 gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7586c996 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x77964200 gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x77cf000e gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x99e9065e gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x9fd496df gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc06029ce gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xcce2dfda gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe51c9a83 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xeb32de1e gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/leds/dell-led 0x86fd1ffb dell_app_wmi_led_set +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1f5d9cdf led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x699d4280 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x83ffb7e0 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xdc386a14 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xe934cdf1 led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xf2baedce led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x144b083d lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x1a9ca42c lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x330e557f lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x43aaed48 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x47fa3624 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x562683fb lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x6d1803a7 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa374ec46 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb3414367 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb73add31 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xefa537cd lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x64e3c0dd mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x7f5fd153 mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xac2e07c7 mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xbe9744a1 mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc24c7792 mcb_bus_get +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc33eb5fb mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc6c45c80 chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc8f0a2ab mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xcb6a6b2c mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xcf6bc006 mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xebafaa5c mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf5e51309 mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xfaa45b06 __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x00b74659 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2a1a7a99 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x374f45ea __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3a4dfef7 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x48991e9c __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4f124797 __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x614e860f __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x647af374 __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6724de29 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6726a0c1 __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x68f1ea6d __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7114cfcc __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x78c57fa5 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7cb4bd6f __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x816ebfe0 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x833b99dd __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8afe3e2b __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x912566ef __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x92c55e92 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9c59320b __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa7004101 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaf2376ac __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb3942afe __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb4cffcbb __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb9c28744 __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc0bd3171 __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc773563c __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd81ad8c9 __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe30b6b2a __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6169c53 __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfcb52b5f __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x040e71a4 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x11866145 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x21e11ec4 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x61134e33 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x61c3fdb3 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x67f5d020 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x90559882 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x92eea94d dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb73c1640 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x1aacf395 dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x22163b69 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x3909d3a8 dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x594952bd dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x62a23587 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9b2b253a dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xdc69e37a dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe004ee92 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x12e5def9 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x432c7aad dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x44470621 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x44d726bc dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5a73ff22 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7345b773 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xc5556c91 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x2bb88508 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xed179843 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x09472122 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x0bc1e28f dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x1fe4ae85 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5da80e7c dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa8813ad6 dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc66ce277 dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc8140be2 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcab63c3d dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xdc55e434 dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xe11e5ab8 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf37a3cfe dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11eab9fe dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x13780c16 dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x150c85ce dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2e730a21 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x33c03da6 dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x619701dc dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9b4b5b29 dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2507774 dm_tm_shadow_block +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbcfdc290 dm_tm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbe0497aa dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xead1e727 dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x00e68319 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x0e26ab05 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x24120e25 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x3bf78a9f saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7c80d944 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x8ad8f5fa saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa0ed8889 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb8eaf3a0 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd5b2191e saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf38b3640 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x004ccca8 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x1d665c1d saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x8b8b820d saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xa55c113f saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xaa83cd57 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xe1cf3836 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xe6a5ee4f saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x02c2ba56 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x11c6f27a smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x23b4e156 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x26411482 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x59e7dfa0 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5f4432b8 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6ff3ffb4 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x790563fc sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7db495ba smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x89ed2023 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9660c5f4 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9ac41cf8 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc00a8e76 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcf0027e5 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd487620d sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf20b5dcc smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf217ac17 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xe233871a as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x5748cc9a cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x9a212537 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x0b93390d media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0x218e320c __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0x30638469 media_entity_init +EXPORT_SYMBOL_GPL drivers/media/media 0x3f94807f media_entity_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0x48021010 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x49baa1ae media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0x5c7c18ee media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0x6ee5271c media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0x89f2e21f media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0x8f1d062a media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0x97af34cc media_entity_create_link +EXPORT_SYMBOL_GPL drivers/media/media 0x9a152d9f media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0xb446b43c media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0xbe469a6a media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0xc6bec1ab media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0xca5a9e33 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xd6485858 media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0xfe237747 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xf06d1b0c cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1378d4e0 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2372d7db mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2d5ee59f mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x41015f74 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x65298116 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6e733626 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7798bf9c mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x78e3c1d9 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x812abac8 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x84d17311 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x85b3e384 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9c4a3d80 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa64cb2aa mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb319ebf9 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb856eb4e mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb862e3e2 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc0241a3e mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xda116b4d mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe327cc92 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0f4777a2 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x22e3ea0f saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3556e351 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x46b33331 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x518f1f8b saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x68152c1e saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7b795665 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x811ea155 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x99e5b48c saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9dd5dd88 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa6f8c7d4 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb51504c7 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc2de8120 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc633f946 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd17e9322 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe2b4c88a saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xea882697 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xeebdcc6d saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfd49460a saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x04187190 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x1664e9c6 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x20c5c404 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x78482f92 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb2278ab5 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xf9fbc05f ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xfa991690 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x204504fe radio_isa_remove +EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x2287fda4 radio_isa_probe +EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x289e740c radio_isa_pnp_probe +EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x4c084e89 radio_isa_pnp_remove +EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0xdba43fa9 radio_isa_match +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xbba6613a radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xe5b4efd4 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1ee3be6e rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2028d55d ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2780b1bd ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x34d932ef ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3508bc6d rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x37c163e3 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3d3fe003 rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x59ecb40b ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x89c3002a rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9266da49 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa2c98bc5 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa5985792 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb4b4e95c rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb99c1e67 rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbadc7203 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc28901b1 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcd897d9e rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe1a28cb0 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfda239f0 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xdaf6a1f7 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x8693fec0 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xe59e2d9a mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xfd179429 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xe4ff4535 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x90cef161 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x305f1ed2 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x579335d3 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x7bfcc32e tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x45d596dd tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xc9e3a23b tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x12c68425 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x206d0865 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x50f8b768 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0a005a4c cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1e02a7fd cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x31c8de84 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4720f2e9 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x555ba821 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5b890d2f cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x63497df0 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6c8df34c cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa6391fe3 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa778c127 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb9b98829 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd2208459 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd928c846 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xdc4aa1ee cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xddbe2433 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe0be7a1a is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe27dbbee cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xea62bc6b cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf3ee27ad cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfc90de7e cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xd6aaabce mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x8ed96f7c mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1b673e30 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x36dbdb09 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3c2f0843 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3cb1df2c em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x661e25e1 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x74e9eae8 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x78311f7b em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8a821cc5 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x99c16caf em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb37f64d5 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbe684805 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcaffb293 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd9c20ee1 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdc798b97 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe5369f73 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf5f75e61 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfe2c3264 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfeda7f0f em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x36cdf7ce tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x457b3970 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xc627d675 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xe151c391 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x346b1033 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x63ededfc v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x679a86ff v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x6b64de5f v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xb72fdb0c v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xde16b7be v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08982d59 v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xc9b4d2b6 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xf91f87ab v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x18a874a1 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x23fb2818 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2ed75657 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x31add741 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x36fa3bce v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x39a1d048 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x591f1fe8 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x63cfe8e8 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6df67b06 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7067c57c v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x76adaef2 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x780b8828 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7aec454a v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x85cfaa06 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9a66192f v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9cbded77 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xad91617e v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb1766987 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbf2766ab v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc2c71949 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd6727c17 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd9a6c3fd v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdcfac16d v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf5afaffc v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf642e9fe v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf7dc020f v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xff796b29 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x03ae7a96 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0648cbf9 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x09e9f664 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x32522419 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3a9cb7a5 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x53205891 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x64367272 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6d850c2e videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8cdab8c8 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8d17c751 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x90115414 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x99026d7f videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa8b8e8c2 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbba63ad1 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbccc68f5 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcbbc732d videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcbc6e368 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe17abbed videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe2f4b47d __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xed99358d videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xee5f0879 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xef584d63 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf1e0238e videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf2866f2a videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0x10e485c8 videobuf_to_dma_contig +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0x531e0244 videobuf_queue_dma_contig_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0xcd25d9bd videobuf_dma_contig_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x19a01d0c videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x1d00a9af videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa825c75b videobuf_sg_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xf0b3b08c videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xf19422de videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x0410fcb4 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x0b9f3f02 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x9d8cc3e1 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1faf0dcb vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x237e6efc vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x27763018 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2bb41e7c vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2f3e8039 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x417ed183 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x50ea800c vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x676b5845 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x682c64cd vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7b9ff3d2 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7c75aad9 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xac230c38 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xad58d6b1 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc03bc6ce vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd5472071 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xdd308236 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf9d4e5ac vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xfec35778 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x725a8e21 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x7580b4a4 vb2_dma_contig_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xaee9991f vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd30ec30f vb2_dma_sg_cleanup_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd4a399fe vb2_dma_sg_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0x963caf3a vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0154a1e2 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0315ac17 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x08751360 vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x10b07cad vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x199e577b vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1c4d7636 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1e1f9788 vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1fb320b1 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x21ec24d7 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x279f9c92 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x27f2af6e vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x28eff02c vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x301dde25 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3230d169 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x401402ff vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4afad049 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x545673cc vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x58b88a25 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5c04b524 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5e0e8543 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x61bd8a17 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x81570155 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x83d75a66 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x89135004 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8aeecbba vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xad422a7a vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb6ee056a vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc749d5cb vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc986de56 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe065696e vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe4fa1901 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xfceeda75 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0xf47b9e51 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x085c1c98 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x119a76b2 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1ef51dd3 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x228ccda9 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x28d20b15 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x31138e11 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x31e3d76e __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3740e82b __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3c0fb0dd v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4b62d52b v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x50b7a60b v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5238937d v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x66dadc67 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x671e9ed4 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x730224b5 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7364bdec v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7a85f5d7 __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8c18364f v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8df8ce2e v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8fa601e9 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x98545b10 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9bd06477 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9f3ca3fd v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa42a7611 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaeb6239e v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb325a2f3 v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb826c674 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb9c9e655 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbc7257e5 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd0755a60 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd8c28b5b v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdb696b62 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xddcf5f10 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeed73f78 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5956f8c __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfdd499f9 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x224e707f pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xc3cafbcb pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xf6f0c0f8 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x37072500 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x5aa2a07b da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x722c7055 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xa7b5b647 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xcb22ccfa da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xcd483133 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xe6fcbfb2 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x3ffaa62f intel_lpss_resume +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x4b763169 intel_lpss_prepare +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x5494accf intel_lpss_probe +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xa6ca9951 intel_lpss_suspend +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xe7217a67 intel_lpss_remove +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x06029d8b kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x42975877 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x54436bfe kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x61de9a1a kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x75177ac5 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xc9c4824b kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xcdfba4c1 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf3ffa9f3 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x5e568e39 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x62d5afa7 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x8abaa2da lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x015c679e lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x22b77a9c lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2c5c742b lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x32af55a0 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x554b454a lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xba5957a5 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xcf36fbb5 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x308d985e lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xb9f2ec86 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xdd59b5fa lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x71d66960 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x748518f8 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xa60b319f mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xb4228801 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xe6973649 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xf498c321 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x25db93d8 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x429e0667 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5358ee65 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x551dd93a pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x790d5009 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7a8c13d2 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7c808968 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8bcbfd23 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb7ff4612 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc2b164ef pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd22ef437 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x72290741 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x8d82c881 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x1d8daaef pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x56bce398 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x89a32e51 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa5bd59ba pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xeff0c190 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x05fa8aa8 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x1d3e6c08 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2016fa8c rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x26824453 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x269c0e47 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2b1753be rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2fd9cf84 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3f413fe8 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x44b0dfd9 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x47468641 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x6cce8b69 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x6daa7676 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x72ee70a8 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7313864e rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8c3869ba rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9414a43d rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9883f959 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9aac7cf0 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9e9d17e8 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb48ca01d rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb9e07020 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xcb18a363 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd56dae81 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xdbadc438 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x0fb28a2a rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x2536843b rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x286a6c40 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x2b6fb52f rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x3d920ab8 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x3dcbef18 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x4b520938 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x5a2aaf9b rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x6d51cf79 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xa17371da rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb76ed031 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xc7709ccf rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe5ee0b84 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x09c839b1 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x12f11785 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2a0348ea si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3b7f86d8 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3fad64e4 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x432dcb78 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4ed2c7b0 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4f44b33f si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x606418b9 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6beee7b6 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7d4e078f si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x84adfb20 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x85ce1234 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x89dbffb1 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x998d1888 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9ab3a3a8 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9ba4e753 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9c4df5cf si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9d81c840 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa22061ca devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa5455c93 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb4387943 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbb27be26 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc3429a16 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcf547ed7 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd1f3b54d si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdcb5b747 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe755cea5 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xeada7fb0 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf0d4be3d si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf102e59a si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf9e66ea0 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfa0cd050 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfbd720bc si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x41100d9d sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x46b2318d sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xa9a16485 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xeaa85177 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xee48d81e sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x4cf13575 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xaca00c01 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xd8418942 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xdae77a8e am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x0e9934fc tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x4322ff3e tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x8f22bbbb tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xfdd31ae7 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x6dfdd6b1 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x5146ba20 bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x87ae991c bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x9d866ca7 bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xc93a8578 bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x4088d0f0 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xad0ae7ea cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xc8d86676 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xfbcc3969 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1c865ab4 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x446937f4 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x871b42de enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x8ab7e93d enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa090575f enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa95c4f93 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xece8eb0b enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xf2000c40 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x082e3bef lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x30ad928d lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x30c16676 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x42f28ae5 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x48d75eb9 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x68f6473b lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7dc348d4 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe5a181e2 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x07b6915d mei_stop +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x14c410d9 mei_cldev_enable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x169f2da8 mei_irq_read_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x19e378d8 mei_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3555b6cf mei_start +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3df7b55b mei_irq_compl_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3e6469d4 mei_irq_write_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x425b0c06 mei_cldev_set_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x451190fd mei_reset +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x72431705 mei_cldev_register_event_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x73e70085 mei_cldev_recv +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7470baa6 mei_device_init +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7733721e mei_write_is_idle +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7c29aed8 mei_cldev_ver +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x90983f8b mei_cldev_send +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x932e733f mei_cldev_driver_unregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbc88229f mei_hbm_pg_resume +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbfa7c47c mei_restart +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xda27124f mei_fw_status2str +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xddfbebf4 mei_deregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xde915f2c mei_hbm_pg +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe7bf3bcf __mei_cldev_driver_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xeb9c29f5 mei_cldev_enabled +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xecd5aa50 mei_cldev_uuid +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf4a5c06f mei_cldev_disable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf79157f5 mei_cancel_work +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfcce16f3 mei_cldev_get_drvdata +EXPORT_SYMBOL_GPL drivers/misc/pti 0x19f09b98 pti_release_masterchannel +EXPORT_SYMBOL_GPL drivers/misc/pti 0x23bde487 pti_request_masterchannel +EXPORT_SYMBOL_GPL drivers/misc/pti 0x52a78e81 pti_writedata +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x81df6421 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xcd6e377b st_register +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x0f6680ea vmci_qpair_produce_buf_ready +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1152e318 vmci_qpair_get_produce_indexes +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x13aa5a5d vmci_datagram_create_handle +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1872c7af vmci_qpair_produce_free_space +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1a195863 vmci_context_get_priv_flags +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x2e30d970 vmci_qpair_dequeue +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3ef56cd5 vmci_qpair_alloc +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4b630dac vmci_get_context_id +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4ea2ccbc vmci_qpair_peek +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4f146e43 vmci_qpair_peekv +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x50a255c9 vmci_doorbell_create +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x612df9ae vmci_qpair_detach +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x677c36d0 vmci_is_context_owner +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x69ef87ff vmci_datagram_destroy_handle +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x6cc1a5f7 vmci_datagram_create_handle_priv +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x722d488a vmci_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x7d540b50 vmci_qpair_consume_free_space +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x8b8ad67a vmci_qpair_enqueue +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9624c58c vmci_datagram_send +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9973b9b2 vmci_qpair_consume_buf_ready +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9d16164a vmci_send_datagram +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xccbb53d1 vmci_doorbell_notify +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xcf5ed7ef vmci_event_subscribe +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xdac94780 vmci_qpair_get_consume_indexes +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe3e4b768 vmci_qpair_dequev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe4cc159f vmci_qpair_enquev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe7e7c107 vmci_doorbell_destroy +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x14046eaa sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x80fb09a8 sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8135b486 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x93bfb6d6 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9a4d12e3 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb6985be2 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbcec2b31 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd17a9cf2 sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe80188e5 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xeb1a2379 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf805748e sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf9653fe2 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfafd30dd sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfbf65445 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x027b1544 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x45bc8fb8 sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x4e44a9b4 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x70a89808 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8b553707 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc4cdf8f4 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf45b0f3b sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xfadb0b53 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xfd156ca5 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x2b61f332 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xd67fd6a4 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xe956f34c cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x394c06e3 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x471e4d33 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xb4e782b5 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x582c22d7 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x27228d23 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x350d7138 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x368b7894 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0dddfbf8 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1ec06d86 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x209a994d mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x20a18c4e mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x238582fe register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x24234ccd mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2623b360 mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x279998c1 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2cd67e56 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3b710df8 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3b7149bf mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4100eaaf __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x48182ee2 mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x49758698 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x534d7dac register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5af553d0 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5b6a2e6b mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5fdaf4bf mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x716aa130 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x72f4dadf mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x76a3ae73 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7aec627e mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x88e0c5eb get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8f57e9c4 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9481fc28 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9504aca7 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x97c88568 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9b10c24d mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa7d2213f mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb25f8c67 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbdde2c45 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc1c21255 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc5947488 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcf8c5421 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd00949e7 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd93b3078 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe034e679 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe56af561 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xeb8223f5 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf4a1813a kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfab38340 mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfd574137 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x0b47639d deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x29a769b4 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x46ebbc50 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x85a59ad7 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xb173f2ed mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x4b42147f nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xee817d90 nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x18367398 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xd71e807d onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xf1bedc0d onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xe986b10b spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1a9f0427 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x244b6aad ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x597185f1 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x73d877cc ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x81330d86 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8761fc04 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x89e2b254 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8a9ddcd1 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa87400ca ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xbdcba05f ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc68c4d71 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcbc4c229 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd7ef159a ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe2696bfc ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x539d4468 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xd0be4064 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x0aebdc6f free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x39c2b2ea register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x703468ee unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x7657e928 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xb10a2384 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xce374305 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x2e367092 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x30784c24 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x3472331e devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x3b34bc0a unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x3e35deb4 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x49b3e5ee open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x53b1d751 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x742d4592 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x74a104cb can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7ca7a0db can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x955ca641 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9bbadcf0 alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xbba27773 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xbfdb3081 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc00aaf62 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc3127021 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xda9f7271 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe6adf39b can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x45a6d3ba unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x866bc3a2 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x88423339 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xe7203c30 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x16e186c8 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x39e9292c free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x894dcd38 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xc1275d9e alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00e1e674 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x016e268b __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0411142f mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04c6a85c mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05287079 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08c1a53b mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x097ea613 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b454029 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10a15f25 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x116888cf mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1183f118 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1304e7f7 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x157be27a mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1672b623 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x175cb17c mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b24059a mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1beea9b2 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c3c43c9 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c442b6c mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c983f9b mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1cddbb95 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1de1d304 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1dfa344a mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e225115 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23440333 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x238122eb mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2435a4f3 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2637950b mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28228c96 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2bee12d2 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c8dea85 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f3f744d mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30d49122 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x345be3f9 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x350cfaf8 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39889206 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a7b67e9 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f733ac5 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x430d89a5 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4452abd4 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4549127a mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45f72375 mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49c5f690 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a9ba6e7 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4dbdffb3 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x508b800d mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51d16b1f mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51e02d81 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x544efe27 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58c21d7f mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x601c6cb9 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x632cc59a mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x686dbb0f mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b6a60f7 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6bf9f866 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c59e31e mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6cfe0a52 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7031d649 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71e0877e mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7454fa96 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79a2e14c mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a3d8dfe mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a9d1c6c mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7bfba829 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7cc06096 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d3792d7 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8760a9b5 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a38c6b2 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ae38476 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b27dcee mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c833036 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e475971 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8fd1cc05 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90e25779 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a1d89a3 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a7171b9 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9aa16c38 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c21f692 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c507c08 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9cba60e5 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9dd83258 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f59731c mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0d4ff56 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3fb30d2 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6b923ad mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb26db9dd mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2a9e84f mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb32f9aad mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb42cc651 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5abb2bb mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6fd2eb0 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbcb920c0 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbeaa21ce mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf35c36b mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1ee446a mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc28d1ce1 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2e27206 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc482a261 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc702636d mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7f3e301 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8d1a040 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc98c74a8 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcfe03620 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd27065f4 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2f05ba1 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3eb36ed mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd48ae952 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4dd0fc1 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd54d508a mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6e02b4c mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7f9bf20 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8ec9bc5 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb981133 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe43df9cf mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4ed4dbf mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7e7a520 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea0c16ae mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee4ff104 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef73f0f6 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xefbafb28 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf05f48c7 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8a757cf mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb5e826b mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe96ce4a mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00bee14c mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0193ca2d mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x039030a5 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c036694 mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ef43a6b mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f5077bb mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11034d21 mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18bac28d mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b5e7edc mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25167e64 mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ba566b0 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3070580f mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34f8a741 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35c9b4e8 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3942f16f mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3fafb252 mlx5_set_port_proto +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48acca91 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48f521b2 mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49958f90 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54859489 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5767716b mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60734889 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x609b57e3 mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61c80bf6 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c446569 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6dd23574 mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e4341eb mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75cd7b41 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75ce8ba0 mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79c047c4 mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84fb4fda mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89024fc8 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89d09240 mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e456241 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96ab2436 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab01920d mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbab6b802 mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc51e448 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbda1335e mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5ec298c mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc68b411e mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb9c4048 mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd59961ff mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe86bf8d4 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9eb60b8 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x368d3d71 regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xcf3c4756 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xd4ab3625 regmap_encx24j600_spi_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x0b826d36 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x6b79a45c stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x79d206a2 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x83015cf2 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x17c2d1d2 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x82656454 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x85c8d281 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xf3d3f2a8 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x2b5e6aa9 cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x2c65fad3 cpsw_ale_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x2e486e2c cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x31e9c95e cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x35d902b0 cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x5d94bf24 cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x76ac1766 cpsw_ale_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x823335eb cpsw_ale_dump +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x8ac9a1ed cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xd6efb188 cpsw_ale_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xd9ea850b cpsw_ale_control_get +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xe0caeac2 cpsw_ale_control_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xe500d38e cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xf4513f1f cpsw_ale_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xf460eac7 cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL drivers/net/geneve 0xc3966291 geneve_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/geneve 0xc80dcd9d geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x4bd4450a macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x8548e477 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x91c4e5d4 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xd34dd4ca macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvtap 0x4fc53259 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x10f6505a bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1e5101b2 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x45ca7c39 bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x50c762b1 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x661c4dc7 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8016c692 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x996e6041 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xabdf9351 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb26a055f bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc9e09776 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x110115f5 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x72aeae8b usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x96306546 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xa29884c8 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x02a29238 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x11a1a317 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x14801a6d cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3f2b61ea cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x77b58103 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa41daec1 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc25eae61 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc37bf036 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf14c203c cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x21a200e7 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x9cbfe2fb rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xaf77226d rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xde04c6a8 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xfc73eba3 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xfdb051f3 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x02e57a47 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0d80f2f5 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x18b6bb28 usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x19f77e59 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1b94d5a7 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1f2b1909 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2bdd987b usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3a551bcc usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3da4d2b2 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4e9121f4 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x52cdcc9e usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5e0ad95f usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x66748914 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6700fef7 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6b54fc39 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6ceffc0a usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x713b1758 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x799fd28d usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7e7efa80 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x89631ca1 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa3ba7aab usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa4b1e6d2 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa5872d94 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa6169de4 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xab46d551 usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc2db0a3b usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc40c620d usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc58b0c82 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd8ae0b02 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdea6cdef usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe79a1f0a usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf5ff4c2b usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x27de142e vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xe399c746 vxlan_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x02744cb6 i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x12f395e1 i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x25f20861 i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x40f4dd25 i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5f7325a0 i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x708532e6 i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x72eb5074 i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8477e988 i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8ee6b46a i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x9c32ac9b i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xad6b6b13 i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb313f4eb i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xbe004205 i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd7407507 i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf2f2a71f i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf55894c6 i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x52d51880 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x638d1fd2 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x807f4b14 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xa81250ab cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x648b8ca0 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x1717d30a _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x42fc727d il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x484b4445 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x8122e8ea il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xff93f41f il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x05d3c177 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x075be50e __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1b074767 iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x259f0960 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2e98ff86 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x468a4368 iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x512a2413 iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5ee5ab54 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x60cbdfe7 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x64d9148b iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x6eaca318 iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x79b51479 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x85612065 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x87ba2bcf iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8b1cb27f iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8c70ee09 iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9fe0f559 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb7cca0ea iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb8979af3 iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xbe6ba3c9 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc4281c30 iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc4a8fc91 iwl_notification_wait_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc718ba7f iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc9c005f9 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xcf2c6d6e __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd49b4b3e iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd87c56f9 iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xdb2c8a98 iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe48751dc iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe629f93e iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xec528445 iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x169821c8 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x18e63744 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x1afe734e lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x2b24f2d7 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x2bfd8eca lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x31af212a lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x4541546f lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x49e6b93a lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x74191cd0 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x7e3e5196 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x999d6614 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9c725b3a lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa015405c lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa02b4b0c lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xace2d602 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xd0ebd0f2 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x02b87c3b lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x354e6f23 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x4974c786 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x5a2204d5 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x5ef2db6d lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x65446bba lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x6a76d0bc lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xe5668288 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x00b19007 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x01a54afe mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x0df12caa mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x21c5d4a1 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x272e527c mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x27f3116b mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2f4a1427 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x76fb245e mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x810a2be0 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x9382d1fe mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x9e763f9e mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xac359378 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xac614431 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xae336409 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc00373ed mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xd7edd9e4 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xda40cbe4 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xdad06dcf mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf91ab8d1 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x185088bc p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x27fea250 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x4d5066e9 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xa16afc5b p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xa4e3d3cd p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xaa4e5a2a p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xb34e7abd p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xc2dca333 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xd6380ede p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1283003f dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x532b595b dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5c16ed7a dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x71114084 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x027c4d6b rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1f55f5c0 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x273bccc9 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x28001ca0 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x417ec411 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x424b75c9 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x43424162 rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4b33693b rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x502450d7 rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x51737db9 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5b5e5dd6 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6325e8b8 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6d67c0b6 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x80b489ae rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x873b97af rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x88b91b16 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x89707658 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8977a81e rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9e6c934d rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9f81b21f rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb701974b rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcc954220 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd10afef1 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd56c84ee rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe819ea99 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf99433f1 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfc07c65f rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x111f6732 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1af57b6e rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x24eafb80 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4b98bbe2 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x58948dc0 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6579433e rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x686211a7 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x702b0f3c rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8342b060 rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x83e70b2e rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x95f92d1a rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa624e4ea rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xafcdc668 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbad29a5f rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcd174018 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdd2c88b7 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xddd1da66 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe515e261 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed0099b9 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xefbe8cf1 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xc646b66d rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xe2bbb89f rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xe3d6e45d rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xfbecab33 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0995c2bd rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x13d7c6cb rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x195b779b rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x252fc418 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x25d80e6c rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2c0bac46 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3b33223c rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3c891027 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3f25dae4 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x416b0f3e rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x437502e9 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4d211637 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x50c43f03 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5281a62c rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x71aa67b5 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x79dc86e4 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7acc587b rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8428eaaf rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x884e4a8c rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8b9a230e rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8e6af544 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa1045a01 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa57d64ce rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa6a008f5 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa9b0f386 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xaa738f7b rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbc0da504 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc2750cf3 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc5a978a9 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc656ee5f rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd852780c rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xde115a6e rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xed39f2d6 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf1ed2e04 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf58691d3 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfc35b5c5 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfeb1c19f rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xff8bd1b1 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x08e84124 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x114bcf82 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x1432c818 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x262dc3e5 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x3852565b rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x3a4ebdcf rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x3fbe8b93 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x658ad459 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x767197ac rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xcfbb18b4 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xd08e7603 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xde9f9433 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xfab8b37c rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0802ef03 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0951585e rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0d9e9299 rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0ecc4ed8 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x16e2e277 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2d347057 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x34b101e7 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3b469f88 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x41491bc4 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x43c2a602 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x51e3391f rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5b5c7472 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x63feb0a1 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x66013ecb rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x67d7cb3a rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6a35203c rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6d62ce8e rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x70df5266 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x71019c5b rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x74b84cea rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x771ff84b rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x77b13883 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7a728f15 rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7c6f0902 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7cd57708 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x80f96e0d rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x82c1f4cb rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x85dbd641 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x90f49649 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9da853f5 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xaa4566b4 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xaccbc676 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xad9c1e2a rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb7bfb12d rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb9c769ed rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc40fc5b7 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd6b74d73 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe1ba77f4 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe3b5f6f3 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe8411e66 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xea1fa65e rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xebe5b94b rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf0e30026 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf68e42a3 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf740d194 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfe362669 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x07955c83 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x1d14fd23 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x72232e5c rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x73e378e2 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x8819e2a9 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x2424e719 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x4b2f9a46 rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xa1019d43 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xc25cbee7 rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x23a250b5 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2563a8b2 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2bb1f72b rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x38f6cca4 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x437274f8 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x6bd1a5e5 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x9439d0e6 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x94d6971a rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x9560d079 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xab4e71c1 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb1793171 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb5427fd3 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc37fd11a rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc469f1e9 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe228bbaa rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xee44880c rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x0fac7a1c wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x26e73b68 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x4775125f wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x069b2306 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0955d755 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0baa3b67 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x164c0638 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x195e2201 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1a21d0ec wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1fbdbb30 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2815c9a1 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x29b6eb99 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2e80ac93 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x31ec8c0c wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x322f3bdc wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x345f1e7c wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x44d93b55 wl1271_ps_elp_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x475d4590 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4d55f648 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5126623c wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53b08ae5 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x66f3be3d wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6b6cd08f wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x80af50f2 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x84f65e89 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8914727a wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8b4d8807 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91da5146 wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x92b94e91 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x950bc0f1 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9c5a59a6 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9cc08e64 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xac44b272 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaf6e0e42 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb6b887f8 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb902f04e wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbbac4e32 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbdd4298e wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbde8e4b4 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc3314c90 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc78be880 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc8d841f6 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xce628d05 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd764fa02 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd867bf6f wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xde2bf34b wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe4f7d4cd wl1271_ps_elp_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfb16b965 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x0a1e4ff0 nfc_mei_phy_free +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x76b65bb3 mei_phy_ops +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0xbc3445bb nfc_mei_phy_alloc +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x523eae5d nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x68261738 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xcc12beca nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xe4478ee4 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x13078110 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x13ef6007 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x1ea38df2 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x50c446bc st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x76903350 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x84117b8c st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x87597b33 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xec59e269 st_nci_remove +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x47d9dcf5 ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x88d5c5d4 ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc4cee4aa ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x358ee3b6 devm_nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x36ec8a8a nvmem_device_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x523bc014 nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x5756ed53 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x68758fda nvmem_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x7bf0541f nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc96fb674 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe18960ba nvmem_device_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe220895e nvmem_register +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe9a7fe16 nvmem_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xf5f12835 devm_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x0b2c7df2 intel_pinctrl_remove +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x46b2ee5f intel_pinctrl_suspend +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x48cc48ea intel_pinctrl_probe +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x7491f000 intel_pinctrl_resume +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x56371d34 asus_wmi_unregister_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xa7840bc8 asus_wmi_register_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-rbtn 0x51552fca dell_rbtn_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-rbtn 0xa060fe7d dell_rbtn_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_ips 0x46809fa9 ips_link_to_i915_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x56235c72 intel_pmc_ipc_command +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x75068282 intel_pmc_ipc_raw_cmd +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xdea07053 intel_pmc_ipc_simple_command +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_punit_ipc 0xa6c87106 intel_punit_ipc_command +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x232b5238 mxm_wmi_supported +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x61cdf799 mxm_wmi_call_mxds +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0xe26032eb mxm_wmi_call_mxmx +EXPORT_SYMBOL_GPL drivers/platform/x86/thinkpad_acpi 0x706cdcef tpacpi_led_set +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x3ecf6cfc wmi_install_notify_handler +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x64ebe677 wmi_query_block +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xa9b7afd8 wmi_set_block +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xb5a6ebe2 wmi_remove_notify_handler +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc5e3dddf wmi_get_event_data +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc9d4d6d1 wmi_has_guid +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xe2426710 wmi_evaluate_method +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x31dba70a pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x9fbbafe2 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xa74cfcb0 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0x6365870a pwm_lpss_byt_info +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0x8b24d981 pwm_lpss_probe +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xafcf8794 pwm_lpss_bxt_info +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xb563cdb0 pwm_lpss_remove +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xc34d815f pwm_lpss_bsw_info +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x117d421b mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x1c1be854 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x753d4f56 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x010ebc33 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x0c8fb56c wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x1f6a078c wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x7548988e wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x9213686f wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xada97cca wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xbfac4236 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x00f8e3a0 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x03232113 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x07374f8d cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x087dfbb8 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x09cddde9 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0aa95d1a cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x16317398 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x17d29ef3 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2227cf14 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x257ebb9a cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2b0c4777 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x31c29522 cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x38b52c3d cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x482e8600 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x511a4a50 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x513b15c7 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x52523190 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x580501c0 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5c961fbc cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6455f94c cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x681a8352 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6ed16d68 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7260a758 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7b98748a cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7b9f7cef cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7f5d5546 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fc9f81c cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x81cab9e8 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8b222b51 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x90be0972 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9d1ed11d cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xac5a0117 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xac7fd436 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb0b02c02 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb5b67e92 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb817a1a4 cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc316f222 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcd394650 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd9815a38 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdbe8f452 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdf9ab35f cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe0790830 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xee3c9827 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xeed9469c cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf3752322 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf6e18c0f cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0555d8c0 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x15af867b fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x21678aad fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3c41efd5 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3dc67cb3 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3e9abd98 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x45c5fdbf __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4b25b07f fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5756f8a4 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9eabb293 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa8562032 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb6d1bc91 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc13556bb fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xde77f915 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe3ab27fe fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xea2ab3c2 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x39fcbcb3 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x3cd27bad iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb4a96cd2 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd27ea436 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd3b5fd73 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xdd92fe9c iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x056839f0 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x05caa17f iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0a6b5f4d iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0b756a61 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2d90c00b iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2e666db3 iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2f7a8b8e iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x39130018 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3b08d922 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x487140a8 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x49483814 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4dc44373 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x53114ac6 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x583feac4 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5e388e3e iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5f3f57c3 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x61ea7211 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x63ef1982 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6ded2279 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9d17018b iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa06ca1c0 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa4bd59eb iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa7635d0c iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaa3b89b3 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaafd00a5 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xabe36343 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xad9ddf63 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb9e4e17a __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbc7d593d iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc4bec245 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc80172da iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd01f0f27 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd7d634cb iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd8b5836b iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xddf3e11e iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe00b94ce iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe5a18c95 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe7704ea5 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xec9ebd24 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf271398a iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf4106161 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfedd7174 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0d19e87f iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x10edd64b iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1a2380ad iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x21caf47c iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5d54af2c iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5dd1788f iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7a40abb5 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x830f5f4b iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8522df5c iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x936c41c6 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9cf1c0db iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa9eb1860 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb89e14d8 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbfde7414 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd3979567 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd53779ae iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe413b795 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x03faccc9 sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x04da7c3b sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1934d2aa sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1f9e3b1f sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2770a98c sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x33569bde sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x342fb0f6 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x39b61cbd sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3f6ca483 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6f17db63 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x73410989 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7f7cdf39 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x975a6506 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9b73207b sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9d03a0fa sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa2766cd2 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa41ff7a5 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa5ba9bb2 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa6ff82cf sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb1d027fa sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbd6f9fac sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc9a2e39f sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd025820f sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfacb8aba sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x12ba09dc iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x17a4f38d iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x29d76a5f iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2b940075 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x36bc1261 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4cf005f0 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x51fbbecf iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x52513e5e iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x59b16a39 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x68a31e77 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6e6547ed iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6f296d36 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71534d58 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x73f913e9 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7576f9c3 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7978e1a4 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8381977f iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9304c44e iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9627566a iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9934192c iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9943a4a5 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9a3f775a iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9ac2d817 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xabde9572 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xada43b03 iscsi_is_flashnode_conn_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb6d4e200 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb9ed68b8 iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xba602407 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbb8a904f iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbe67a3fd iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbfc79407 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc3390435 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd42bdd5b iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4944775 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd9a99b77 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xde263818 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdec076c7 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe881373f iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeeac267d iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf9099fc7 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x5274dee0 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x77128a11 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xb1fe3766 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xc37fba47 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xd8db16da spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x3bbec1df srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x4d8bf607 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x5094d571 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x60f6502a srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x676303bf srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xc7fb56d7 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x0ed1b2cb ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x3648d041 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x66bcf945 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x835ab7c6 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xae171be7 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xb87edd38 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xe4a917cd ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x53ee9a3f ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x6cf59040 ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x8e77fbe5 ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x91c3b18f ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xabd20046 ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xb98279c3 ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xe8d69fbd ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x2b69ba0d spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x41816ee2 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x6c3446ca spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xa7b83a95 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xdfa003b3 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x15a49488 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x59adc7d1 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xe2f84f17 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xf260f529 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x05b19325 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x13d7db7f spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1a3534ad spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1ab2baa0 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1b0f7cc9 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2af30809 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3303187c spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3745fd10 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4a057595 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x637db195 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7df7f502 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8427f12f spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x84b45e03 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x88c5d52c spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa2a89c9f spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd3d7f8ee __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe6a8f326 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe8ba2355 spmi_device_add +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x797df1fe ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x09acd413 comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0d926ff5 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0e261c15 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x12400991 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x16ce019c comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1f6e7988 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x26ecd638 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x29fbd3c3 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2c3623d8 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x36c9e9d2 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4cc8fab7 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4f061c5c comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x509097e8 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x53152a92 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x59abd8d5 comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5a532b9e comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x73d772e8 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x865489b8 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x90313a5d comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x93e886bb comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa65f5364 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb5a4f9dc comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb8a0449a comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbc7a9b1c comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbec8befd comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc49c3f1d comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc70661cf __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc83d461b comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd9235418 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xec6c8dd4 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf2b50a27 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf3ebfcec comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf43f1d43 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfe9aa743 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xffedd072 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x17448d85 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x9f6b28b6 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xa6db34c0 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xd8abeeb5 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xdfe87090 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xe7663bbd comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xf27ef074 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xfa9022e8 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x1972bc4c comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x7fe14487 comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xbd581abe comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xbf72d047 comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xc45b3e14 comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xf49cf62c comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xfe5adab5 comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x05f65c4b comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x445fa836 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x5171de65 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x63beb3de comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xc0d2412c comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xc952affe comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x3e500ea1 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x0e5501c1 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x20eea3a3 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0xab4f1907 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x0ebba6c7 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x1817c821 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x197d8687 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x1e5eb79b comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x3de4c81a comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x7e93055f comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xa4c3f162 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xab7ea8ac comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb6f55e07 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xbffac573 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xca42bcf8 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xe9f06f90 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xf7e3a8d9 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x291ec78c subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x4326b693 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xe0faabd1 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x0d68fcd9 comedi_isadma_poll +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x6815a033 comedi_isadma_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x703113fb comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa3d01a85 comedi_isadma_program +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa7ebb8a3 comedi_isadma_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x2fae9245 das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x004cb525 mite_bytes_read_from_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x16074163 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5837ed3e mite_setup2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6d819be8 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6dc80712 mite_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x72eee078 mite_bytes_written_to_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x746a7df8 mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x75bb7041 mite_sync_input_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x75bcd8a5 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x83edee52 mite_bytes_read_from_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x8491fe2f mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x8d0cd8d9 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x8d259d84 mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9fb6d3ba mite_dma_tcr +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xaa7f31b3 mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc1d3abed mite_sync_output_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xcc6887c9 mite_get_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe844e03d mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe978b16b mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf14fbb0f mite_bytes_written_to_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xff82a2aa mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x716f408f labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xf8f88e7c labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x009bbc6a labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x02711086 labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x69c48161 labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xb7736ad7 labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xc9b2a411 labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x13abc32e ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x15853eeb ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x6445e3ae ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x88254b98 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x9fcedfa6 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xb3e3245d ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xef02d995 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xf4715fc2 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x1607f6ab ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x6602a667 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x89606952 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xaf1899e0 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xd7c91625 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xf68ce562 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x1b69ae4a comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x6df48fad comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x807f0f13 comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x931cb746 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xd3756738 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xd7a6022c comedi_close +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xf279b62d comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xdb3f7a6a adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x0170c75d most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x24245f0f most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x49da4deb most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x522e1821 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x8071e1a6 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x96fe4f4a most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xab992f26 most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xbcfd0ba1 most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xbd545f6e most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xd65d079d most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xebfb39e8 most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xef9af9c7 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2ab8daa7 speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x3241c680 spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x468c31ef spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x714b46f0 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8839ea58 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8b3aeb81 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x93546283 synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xac4bac92 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbd57e155 spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd05b57f3 synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xdbd2c99c spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe5d9abed spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in +EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0x80225300 int340x_thermal_zone_add +EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0x88180d49 int340x_thermal_zone_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x23c2e39c intel_soc_dts_iosf_add_read_only_critical_trip +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x25ec857c intel_soc_dts_iosf_interrupt_handler +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x8e5c65d8 intel_soc_dts_iosf_exit +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0xced87293 intel_soc_dts_iosf_init +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x75f68644 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x932f18cc uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xf615715a __uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x0e1a641e usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xb4af29bc usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x0efa25d9 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x4a195ad4 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x10a11c7c ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x3c5fdd81 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x567d5148 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x67a70ca6 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xbd109fa6 ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xe3e378c1 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x06e23b64 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x099a7328 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x135e4309 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8014ac14 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x85a6d425 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa63fdf07 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xad087036 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb3be77f8 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb3e9fc5e gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbb80906f gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc634a04c gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc68ab4c8 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcf943a0d gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd6ebdb4b gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfc47eabf gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x95bf89b8 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xecab5ea7 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x1e13b732 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x4ee43fad ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x8ffab934 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x053f0538 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0b29362e fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x142c023e fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x17253077 fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2e9b3327 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x40d283a6 fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x41ca360c fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5255b366 fsg_common_create_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x57a60528 fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5c1b8a08 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x781f89a6 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8f81d24d fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xbf73e46c fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc9013c07 fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe2094043 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe76ba82d fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf0acfce6 fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x197ce20d rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x222347ad rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2638bac5 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4ed0feab rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5b753a4c rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x665726c3 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x79c193b7 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x80d6d974 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x83899740 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8e3f9739 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9f8d4e50 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xab8959d5 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc5022e9a rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcc6c3c81 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe48907fa rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x001c6ee3 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2f6ef076 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x46ae7957 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4d68bbbb usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x56f1773a usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x647e0b29 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7a848287 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7dafef55 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x81085b59 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x819ea4c3 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x81aeb917 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x87996053 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x93e932ec usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9d1dcbec usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa20ecf53 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xae29e269 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbcc29252 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbd30e71b usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc392534f usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc95c02d1 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcd8fe390 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd93426a6 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdbd9ef5b usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdf20dce6 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe741b660 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xec24e7b3 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xed44eaf1 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf4e554e2 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfa3be12c usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfc72ec73 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x110b3b21 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x119c9b51 usb_udc_attach_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1c1fbbd4 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2152eee8 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2e945e6a usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5918048e usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x92229c40 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4744dba usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc6f5135e usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc8aca31b usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd0f3adc9 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd5e9c21e usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf41939a2 usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf4f21363 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x904bc289 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xf3e1a0ab ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x04689e6a usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x332d85da usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4b620bb3 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5088eb76 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7a878d72 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x9c321c7f usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa75d0f22 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc0a97fd6 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xddf32718 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x7cca6f6b musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xb61250b3 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xf7ac8f30 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1d0ba518 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x320cc685 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x42673756 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4924cbbb usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4b7a9227 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4bbb6f3e usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5aa5217f usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6453f0a2 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6c453d8c usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x72839202 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x81bd061d usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8522066a usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x865c85d0 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbf168dac usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xcd153f65 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd253aef2 usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd6188526 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdcbfba58 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe99889db usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xea113283 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfeb6f02c usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x07038939 usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0e0727ed usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0ffa1c7a usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1edc6799 usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x21cb16c9 usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x262ddf59 usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3e388ea5 usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3e7280d5 usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5ac5387b usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x61a8a546 usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6c5eb942 usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7ce1c3af usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x885fd23d usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x93cccbd2 usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x98c6540a usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9c21c5a1 usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9f93a526 usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xba61d582 usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbc967621 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd75ff0ce usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xdd1331c4 usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe47f935b usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe5cd5539 fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf5a5fabd usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x22046dd6 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2879a168 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2a256e30 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x820fe071 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x968bf033 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa1ed04f6 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb697a0e3 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb8c26001 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbaf4c72c usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe42aa99c usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf6776471 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf91aa8f5 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0c5f9f09 wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x28386a4d wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x288855cf __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x3a54f6d6 wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x685472e7 wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x83aeb032 rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xb390787a rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc543b60e wa_process_errored_transfers_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf4654c3f wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x1fd3088e wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x39d97dfd __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3b3a47bc wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4ac4c0c4 wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4b9ef2fd wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x6534f184 wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x77e5ba0f wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x87b614b1 wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa24c43e7 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xab6fd148 wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd8614637 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf48773f2 wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf758aba1 wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfbfa02eb wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x0ed78fc3 i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x921bb2d5 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xa31a8388 i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x06723ac6 umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x11fcaa52 umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x152f914f umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x2cba505d umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x3af21099 umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x3db64f43 umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x4340880f __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x572e16dd umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x063a762d uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0affb8d3 uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b8aad57 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x17bfb52d uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1c960608 uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x25fb867c uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x28e660ad uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x291c422e uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2f0c6db9 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x302c83a7 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3d3e9a31 uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3edb690c uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x442804e6 uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d686e28 uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4e543482 uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x51f4137b uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x59d26f33 uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x64579d77 uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6990cf61 uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7cc00ec8 uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dcfcd23 uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8312af9d uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x87af9fe6 uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8f6bd846 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x97ae55ad uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9d1f031d uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9e27eb17 uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9ebed2c2 uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xab26d552 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbbd1dc2b uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc8417b4f uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc89aed6f uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd5f8b888 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd8592d1d uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe3a6b0c4 uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xecc92f42 uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xee161eb4 uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xef6325a8 __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfc40ada2 uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/whci 0x91f73607 whci_wait_for +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x320b1d1e vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x46f99307 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4aea18e1 vfio_external_group_match_file +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x51a68b60 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x614d38c9 vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8a63e756 vfio_add_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xccb598db vfio_del_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x7d35ff7e vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xd0265cb5 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x08a3170b vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x107545b2 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1ad16ab9 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3af682e6 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4abaf8aa vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4cb96f77 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5f4114fe vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6871c6a0 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6bdea543 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6fedede4 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x86a3c9d2 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x86d2829e vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x917994d9 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaae953df vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb1cb4f5d vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb2e5765d vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb5a037d8 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb83316a8 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbc7bc23b vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbee7ee38 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc2a2d8eb vhost_init_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xca081b3f vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xca669e7d vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd1b67b94 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd48bf270 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd8837f5a vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdd891e84 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xde96a853 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xee16870d vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xef33960e vhost_work_flush +EXPORT_SYMBOL_GPL drivers/video/backlight/apple_bl 0x2c63e051 apple_bl_register +EXPORT_SYMBOL_GPL drivers/video/backlight/apple_bl 0xdab0f892 apple_bl_unregister +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x3747e201 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x727fb934 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x82abe2ac ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9dd4b930 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xac5b5e30 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xb358dd00 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xf459efab ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x3b004c90 auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x3c7b3dfd auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x444b2083 auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x864baabd auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x8cce08b4 auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x951b3f33 auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xa5a6d04c auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xabed41b8 auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xe0ccbe7a auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xef32f226 auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x81cabadd fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xeac3fd0c fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xf32e3c0d fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x3d9c3ce5 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xd8837582 sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x016e6c20 vmlfb_unregister_subsys +EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x90c018c6 vmlfb_register_subsys +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x023a492f viafb_find_i2c_adapter +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x22a7af24 viafb_dma_copy_out_sg +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x292da7a2 viafb_irq_enable +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x30cc9311 viafb_request_dma +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x31469540 viafb_pm_unregister +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x79e6190a viafb_irq_disable +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xb4f863e6 viafb_pm_register +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xcaefb732 viafb_release_dma +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xfff2dfd2 viafb_gpio_lookup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x0fb6a4c9 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x3c230c35 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x462f90cc w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x4a510a18 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x5cda25ec w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x6f5a2917 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x77e07694 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xa8e2f705 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0xbc479f80 w1_read_8 +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xe76bbcd5 xen_privcmd_fops +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x184fba4e dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x3b487b08 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xf2212088 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x13f23b2d nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4c813a36 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x580b50ed lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x818de382 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa67fd9bc nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb5a797bf nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb971e193 lockd_down +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00e78022 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x027bcb02 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x02c023d3 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ad9212a nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b3dd434 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c1521d2 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e23121f nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f20850f nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10053f61 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10aac71b nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1344cdb6 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x157d20a2 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19f843f4 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b9bfc63 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f84a42d nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f9b670f nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21b3402b nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2597d2c3 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27051b2c put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x275db422 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x284246d9 nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b197d76 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30f0491d nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32e57c32 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3341457f nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35461568 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3799c6d8 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d4417cf nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3eb84630 nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x442493cb nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b432b55 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e68ed0b nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51e41705 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54d64581 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55f36937 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b7bc2dc nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d907646 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x640e2832 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x643ea1f5 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64b11ac9 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c05e33e nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e2c31ca nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e461f13 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ecebf97 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74153223 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74427a49 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75d1306b nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76c154f0 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x786247af nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7aba72b7 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b8f85af nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7bf37802 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7bf6bef1 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c3357e5 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f25a2b6 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fa04057 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80375b5e nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8212b12d nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x859aa745 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85c0abc5 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8707b531 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x883079a4 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b76bba2 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8be968a3 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c133d37 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e745de5 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8fffb646 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x908ec7fc nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92432743 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92655651 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9368fe16 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x948ed2f8 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x94ed67ac nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97cb6a03 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97cda902 nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9aebdc8e nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0354458 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2dd90d3 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa61aa775 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6c0e8d7 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8c8d3c4 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa14361 nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xabdf9bf3 nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xace7938a nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae3a5ff4 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb51ee48b alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9a9e1c7 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9c0bbe1 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcf23f0f nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2167041 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2258a29 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc383923b nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4f9bcf1 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc820bce7 nfs_file_fsync_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc82808af nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd02e1bf nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd05187b nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd12e66bd register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd26326a1 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2d60fd6 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3a98795 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd40dd23b nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd651b413 nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9aeef4f nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae541f9 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdda09dbe nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe4036fb5 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe46040ad nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe53ddfaa nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb5852e5 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed0bbf18 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed9ed39f nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xefe865f7 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf0232096 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2153bdf nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf43bb142 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5e85356 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5f3474a nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf72b7d9f nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf75d7c39 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7f556e2 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf87d89b9 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf987eeb9 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc85b0a6 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd25a4be nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xa02e9aaf nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x011cd6d6 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x030e00b2 nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x04fada25 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054a7e7b nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08f42583 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0aa30f1c nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0cf9b1c7 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0e3d03e9 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x13874aef pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x16efb8bd pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c2817b3 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2cbef869 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2cfe0363 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x308aa8e1 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x394f97b4 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3adc8ff7 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3ed4c118 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x41c751d1 pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x42a4b3e0 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48cddcb6 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4b4e70d6 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4e95fd41 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5746fafa pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579ebfc6 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x58037059 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5c644cf9 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5dd8cf41 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5edd7f84 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x64a872e9 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f727a72 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x74e2f324 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x79f2f908 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b1bbe36 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8d6ef0af nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9266a2d5 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x98e8d726 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9bc47df3 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9e30475d pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa4601421 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa70ad557 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa7578f18 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0785517 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0873ef3 nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb3bae0b9 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb58d94f8 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb82b3fcc nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc9ca34d0 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xca4245b2 _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcce7927b pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcee06280 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd3ff8fd0 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd576bffd __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd94bbedd pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe41c64c3 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe9ae1703 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xef73ac26 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf0e86722 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf141c0fe pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf8ba7ebc nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfc8d74dd pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xffa13bfc pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x4053f3d8 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xb1c5b86c locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xd837a9ab opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x40ac63b3 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x785ddf90 nfsacl_encode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1cb231d0 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1f57994d o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x2547166a o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x258b738d o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5360cef2 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x69909238 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa9f5379a o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xac7dffdc o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xe7d14b9c o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x88011b26 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x953a0716 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd266c89f dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8db6e2b dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xdbd9ac64 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xe167711b dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0de04ca6 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x43d65c58 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd61d2eb1 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x200e2b0c _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x26fe8cf0 _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb +EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random +EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait +EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop +EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end +EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0xb80e2892 torture_shuffle_task_register +EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin +EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress +EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch +EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch +EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch +EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xb1952324 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xd485f413 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x021957e1 raid6_datap_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x0f8a2742 raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xd4cb6873 raid6_call +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x201d8ea3 encode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x29fa419f decode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x57861324 base_inv_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x57d39367 base_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x882ce5fc base_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x9e0112d0 base_inv_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xaedfbb15 base_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xc8fca8a6 base_inv_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xd11741a1 base_inv_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xe3d900b5 base_old_false_key +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xbe7a218b lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xf1fd4505 lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x2bffd177 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x365cddc3 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x36d00cb8 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x623c51a9 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xb5beb082 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xf255cb1d garp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x0cc1fe7a mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x251ce170 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xb80df35c mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0xbc4de6ac mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0xc58c0be8 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xf5bdac06 mrp_register_application +EXPORT_SYMBOL_GPL net/802/stp 0x4aa7cf33 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0xecdf1641 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x5b09ebc3 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0x92ad3af1 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier +EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier +EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast +EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr +EXPORT_SYMBOL_GPL net/ax25/ax25 0xcf1624e5 ax25_register_pid +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x04671a4d l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x14405def l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x1f9ce63e l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x3bec85f8 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x69a24ae7 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x90c1f9b4 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xabbb45f4 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xea61c326 bt_debugfs +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x13aabfbe br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3cd1d085 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x461702a6 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x55e55a80 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x684e5252 br_deliver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7e454a83 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd1ed5643 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd7e9564c br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x949aa151 nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0xa21ecb31 nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/dccp/dccp 0x09d22639 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x161bcba4 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x186fc62f dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x189e6188 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1f9e2da0 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x212d9447 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x21d7a233 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x23672cd0 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x28a2fd47 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2ea676a4 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4207d90a dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x47dd46bf dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4e2d4d99 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5682f6a5 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59b2ff9a dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5ff62bc3 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6b20bddd dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6f2d2a6d dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7e0bce8a dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fa88973 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86263d3f dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9366abb6 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9f5109bf dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa653fc7a dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xab825d57 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbd4c071a dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc286c290 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xca369f6e dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd963cb0f dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xda4405c2 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdc573092 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xeb805052 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xec23078f dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xff63b173 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x27644916 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x40eb58e5 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x833c1a14 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa45af502 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb6f08ef0 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xfd7441eb dccp_invalid_packet +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x567c266b ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xa680b212 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd0bfc877 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd4acbdc1 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ipv4/gre 0x73ef6cf9 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x79621a80 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x177b2e13 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3832e1fa inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x394e9cf5 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6f51c03e inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb704d3e0 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc00672fd inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x225284be gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x08773103 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0a54f4a1 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x169c580c ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x26720bd0 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x35d6f7f2 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x37882b44 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x43ce624f ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x55a7d807 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x70f33db8 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x94b992cc ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9ab5b729 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa535f28d ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd02bde19 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf081aa0b ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf366e123 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x2bc482af arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x0b1a94f4 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x0931e5dc nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x22fe0931 nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x6ac11a08 nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x71389984 nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xb3320829 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xde49dddc nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x4cc2fef2 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x015d438a nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x61a8e9bb nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x69f2d3e0 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x79d197e5 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xb3ba7346 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0xaaa1ba3e nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa51b2ae6 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xdc042c75 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xf352866c tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xfc31acf8 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xfd1c3662 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x45272cdc udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x5ef47b96 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x64aa803c udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb0b3f7db setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x22268596 ip6_tnl_dst_destroy +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x32da36f9 ip6_tnl_dst_reset +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x3c628a2d ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x5de963fa ip6_tnl_dst_init +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x9079d27f ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xb0103fc8 ip6_tnl_dst_set +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd6d4a95d ip6_tnl_dst_get +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x16271c2e udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xd88c1f65 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x62285f7a ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x0b4834a0 nf_ct_frag6_consume_orig +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6ee205fc nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x7d31c5df nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x85db6a52 nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x96a7c57e nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xbc7850db nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xc89ec109 nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xeff44667 nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x005ccff8 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x41dd67d1 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x7d2a281b nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x9edebe81 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc62771ee nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xdd5c06a8 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0xc83f569b nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0464a7b7 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x06e5278b l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0cf8c563 __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x24535eb5 l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2eaf88f2 l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4b3dfdf9 l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7bf57bfe l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7ea363c7 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8a9e799a l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8b0f659b l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9ea3f49b l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa1af7f36 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc8fe4597 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd57c3d8b l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe8d51d6d l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xed9d8020 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x97ebc4c5 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0fc31680 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x28f06b4c ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3335ec71 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x33afd28d ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x606b7367 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x733f9ecf ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x836411e6 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8ea67951 ieee80211_set_key_tx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa75ee567 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xacb9c06e ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbbda62ec ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe016e26b ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe82d426f ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe8fb7eec ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe9ce1b1a ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xebdf8959 ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf2bfad87 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfa2b31d9 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x4b7cc4e5 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xb74b722a nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc4867726 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc65db0e2 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x12179628 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x30a3d882 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4bb096da ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x554d4f47 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x64ca7995 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6631e1c6 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6f29e9b9 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7f55a42a ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x821618e1 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x963ad2f6 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x98c6d117 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9fe7859d ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa26757cb ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb169b60a ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xef91cff7 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf39bf716 ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x77791983 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xbe52ac5f ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xde9ebe15 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xe9aa95d6 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x019edb76 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x02c7b691 nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x030b2c89 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0905d03b nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0cd1d920 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0e38bcb6 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11eef2ff nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x12bed45b nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1497885b nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1501122a nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20005852 nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x225279e4 nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b3707e9 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3217ee93 nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x32aeb884 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x35cc17ea nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x38824433 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x38d0f780 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ec25533 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x40271632 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4a8551ba nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4d7bd2b5 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4e0d6d87 nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4fdcd4ec nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x56fc6182 nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5744b1bd nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x590bf4d7 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x688c3f7b nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a18dc58 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6b183034 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d929b3d nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6da8d2ef nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6fc5a08d nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x71c02fce nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x71f4a77c nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x720c6da0 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74464141 nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ba6e74f nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c3b0f05 nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x826333c2 nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x897d287f nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c0827dd seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c8e2aeb nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ceac4e4 nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9110a685 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9930d027 nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c470baf nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa18500f1 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa76bd465 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa826d024 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa83f38cd nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa8d5dfce nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa9984050 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa9fd0f12 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa8eb6cf nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa95f5ea nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa994d64 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xac8938b7 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaef79e88 nf_connlabel_match +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb57ce272 nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb9cdaf4a nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbedca666 nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbf17e25a nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd0a38508 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd0ba074c nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd31f1eb7 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd351e7fa nf_connlabel_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd51a7c4f nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd5748ea2 nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd9523dc9 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xde9897b7 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf42ed48 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe9d623ee nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf24f2ef1 __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2a9802e nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf4daae57 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf73fb843 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf8e09906 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf9171a2a nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfebd5a05 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x62aee1c1 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x86b88d92 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x4b0bc6d0 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1ab1ab8e nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x29c8033b nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x414ecb11 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x484f040c set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5c3bf993 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x82f896a9 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa98c7439 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc5722872 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe4548141 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xef078f52 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xc752fda7 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x2197bed2 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x2cb96fbe nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x4efce692 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xf5c24355 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x59d32b27 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xd3ee0dfe nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1850504e ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x61493732 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7cabb592 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xcd8bfab2 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe5a1e39e ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf05f309d nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf4f6c46e ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x301d4514 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x2c7c203c nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x0c9d5156 nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x78fcb5ab nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x7ca1b74c nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xd9098c6b nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x26ed371a nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2abdb4c6 nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2c479bda nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x43afd52c nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x46635734 __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x65353623 nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xdbd23f58 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xdc1b52cf nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf4226462 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x0f0d719a nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xdce1a0be nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x396df18c synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x60372220 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8841d39b synproxy_build_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x182f2e5a nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x38899178 nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3d3ad2e5 nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x44b70d00 nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x545af3a1 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5913b769 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6568ed68 nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x821f9fae nft_unregister_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8816099d nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa1b5258f nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa589e200 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb660f01b nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc4cdcb44 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc6650734 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc6e8d2c8 nft_register_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe823d9f7 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf2148cc8 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x078c0f3c nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x0b8dc623 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x35de428d nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3a39c34c nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x4a70ad02 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xaf3c36d8 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xfe9dc676 nfnetlink_alloc_skb +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x084c1b98 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x0d4a6e98 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xfab92280 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0xf5eb9d93 nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x228f9ec3 nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xbafc7634 nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xcd79fdb8 nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x52138e75 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x93274566 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x9f7a0b3c nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xbf2469d7 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xf52d9db1 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xf708e9e9 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x65965bca nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x9840c372 nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x993947cb nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1bb66c79 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x5a889283 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x121be1cb xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x218f5b76 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x348d52ef xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x66e3a294 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6d5c8993 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x76ebbcaa xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7e8cbdfe xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x88a0682a xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8ae62bb0 xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8cdd100e xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8ec9685d xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd921c110 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe04e1989 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf8d2792f xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x4c32c169 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xb7459345 xt_rateest_put +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x8b3dbd4f nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xb380e50f nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xe513a354 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x2a543e9e nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x5872db14 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x7e32920a nci_uart_set_config +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x29eba645 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x46ee1021 ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x87a52f2b ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x98dd3078 ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa48560a7 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe5a5e54f ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe7144d48 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf14231d5 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf9fed84f ovs_vport_free +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x0cc47186 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x1237e0ed rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x13e404da rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x175356e0 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x207cd67a rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x24177eb2 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x2471af0e rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x39764665 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x4a9a4892 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x4c334710 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x5d7896c6 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x642c0aef rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x6a6aa3a2 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x823f49a3 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x8dd88186 rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x8e0d3a2b rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0x927b0d22 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x9e94be28 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xac96e47b rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xbcab618e rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xbf42ea13 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xde673448 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0xeb400bda rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xed6d64e1 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x10ea0034 rxrpc_unregister_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xc596cfa7 rxrpc_register_security +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x20a35510 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x2d3be85f gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x74990649 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00c01a67 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0200c470 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x026f5334 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03b5fd07 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045f1c15 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04e9266b svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0580270d xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05c462c0 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05c633be svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06fa54ba svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07180301 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07c6a434 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a96f86d xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b529970 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bfa2267 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c30d8ad xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e97bf63 xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f7a6074 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10980f37 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10daafd1 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x128aa4ca csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x138bfabb rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x149472a5 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15fa20ba rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17d5da67 cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d2dcb20 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d4823bb svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2135183c rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2253d509 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x242c00f5 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2434fbea xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2480422e rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26b3799e svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2825e25d rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28d178f6 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c7fcec9 rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d5f8751 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e1e52ff xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f3bd42b sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3106b91b rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x326076c2 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33a6e662 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x372bb211 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3830ed29 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3907c833 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3aedab29 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3be0b1c0 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c46572e rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ca5be6b rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f5271c2 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fa0f0da xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41817f4c rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4340f8d8 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4393f4b9 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4469950a __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4712be14 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4713eb72 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x477a5b79 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49414187 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49d312ec rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d519a45 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50454bc5 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x536eefb6 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53c9f796 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5700b570 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x570be699 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x579ab6ea xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5924c6ae gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a88bd49 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5aa8ab20 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b4fb094 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d4c7572 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5eb27393 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6247e574 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62a29b9e auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63262479 rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6390dba0 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x653c4b40 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66b70f79 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6970c819 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69806ce9 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6aae2ade xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b3f2f39 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c7e1379 rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cafaf91 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d977f66 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70a5a18f xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x724b27bd rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x729598d0 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72cd8a3b rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72da147b rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75330959 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7863db94 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x787ae8c5 xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7885ac36 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78bd120f svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a44ef9c sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a4a10ad svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c33ef92 cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x860a9a58 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89bf0622 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89bf517e rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8af53f8d sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cfc9f66 cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e381ca3 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f040a21 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90e70310 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92ec8bc4 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94c08059 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95775d72 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9734298e rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9748aad9 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98788997 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98cca89c rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9af23eaa xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b6f8bb1 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e96f666 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa033e88e svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0f22ab9 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1249f7a svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3e7c24b rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa55b2db2 xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa63d4186 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6c142f9 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6e6b212 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7b77c4a rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa99ef3bf svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaac916a4 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaca87a03 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacab51fb svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xade1cea4 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae3e2c35 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0702d3f cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1ead2a0 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3febe42 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6e88077 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb78491ed rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8c37af6 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9ff9cb3 rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba2ab949 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbede5eb8 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1009317 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc47c6234 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6ca1551 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7830980 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc85fd101 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8881257 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb1edd16 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbdb3c70 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd0ce491 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdcfd108 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce321079 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce68a904 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce74423e xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcec51e8a unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf7e1fd0 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd14c8eb9 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2240298 xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3de7264 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd675eba4 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6d89d10 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7833f7b rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd78bcc83 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe137a233 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1b072b4 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1c9890b svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1e17d13 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1fa4a7c svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2173a7d rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3938007 rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6e3fa6e rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7a6f315 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7df9830 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec94b9b5 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecffdc35 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed1de463 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeec45ff6 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeedec492 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeefd2bba rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0315656 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf064b9f4 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf113e092 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1d98a8e cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf24ab8df svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf37256f2 rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf80d4c02 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8107784 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf89c3bf3 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8f8c263 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9ca36c5 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9e8bd2b svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfad9bafb xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb2607bd svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc8f8b24 rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfca072f5 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe3b5579 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfec60b06 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfefc2e56 xdr_process_buf +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x291245aa vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x29cc914b vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3119361d vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x34d86ef6 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x63fae660 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x71021e2f vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x74e91915 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8995696d vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8c31ad5f __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8cb409ae __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbc6046e9 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc4f8a1ad vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd7451986 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf593c40a vsock_pending_work +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf7ff3e4f vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/wimax/wimax 0x1736ccdc wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0x17a7c359 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0x223c50ad wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x36cac78d wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0x4627e62c wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x612827d4 wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x67b8c353 wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0x6d269c04 wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0x8c05f76a wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0x9bbe52f3 wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xa7dead87 wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0xf2fe1308 wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0xf52e3c5b wimax_state_get +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x080758dc cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x20069e9d cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3cd4b67b cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4282f998 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x53ab3c24 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x70042a55 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7430ac2e cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x77fcc2a9 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x95a66313 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb8b079ea cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xce3a9fd6 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd8433625 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfc28b235 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x5b1d2022 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x6ca28da9 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xddb66d15 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xf3455bf6 ipcomp_output +EXPORT_SYMBOL_GPL sound/ac97_bus 0x1deef365 snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x9092944e __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xf8b38984 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd 0x0b3bda26 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0x2b5e72db snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0x2c5df57e snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0x40fcecce snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x50c8a617 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0x81b71876 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0xb9c87632 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x33fe8ec7 snd_compress_register +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x6e194856 snd_compress_deregister +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xc4993171 snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x1a4471df snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x30bb9ef5 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5c3db75f snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7921b554 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9b1b5290 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9c2313f9 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa7a954a6 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb5999e48 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf69c93d0 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3b4cc209 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x4104d0b9 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x720564d7 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x79e5fb65 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8ac395a4 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8da5b562 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9fe91256 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xae7bdb6f snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb382c7ed snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xea1331da snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xfb6e9023 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x09b9e31e amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1eb63635 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2d33dafb amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x369da291 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xbb387ece amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd7e631d9 amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xfa124673 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x12a74819 snd_hdac_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x24fab399 snd_hdac_ext_stream_set_spib +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2737206b snd_hdac_ext_link_stream_setup +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2c90956f snd_hdac_ext_bus_device_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x34764284 snd_hdac_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x37a84207 snd_hdac_ext_link_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x45cc8e8c snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x499dc5ac snd_hdac_ext_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4ed71f9b snd_hdac_ext_stop_streams +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x534e51b3 snd_hdac_ext_bus_get_link +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x54d5151e snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5fde07a3 snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x613ab0c3 snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x61d28f62 snd_hdac_ext_bus_device_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x63c21148 snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x740a1ee4 snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8a3a6086 snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x94695b14 snd_hdac_ext_link_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x965779a7 snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x968e6c88 snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9d983c0c snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb57d4535 snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb62696e3 snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc1348127 snd_hdac_ext_stream_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xcca4b967 snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd2f5c59a snd_hdac_ext_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd47ee1a8 snd_hdac_ext_link_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd819e73c snd_hdac_ext_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe1697ad9 snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xeb739381 snd_hdac_ext_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xed61b2dd snd_hdac_ext_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf4e90784 snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05578cb8 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x06799446 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x071d8444 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x074444dc snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x090c1bf7 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1278ab2a snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x17439461 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x17827fe1 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x19628734 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1abae4e2 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1e5bbe48 snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1ea4faa5 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1f97c509 snd_hdac_i915_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x21b6165f snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x252f13ce snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x26801370 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2aada21e snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2eb47e4a snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x30c58762 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3300d865 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3317cc28 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x349b1352 snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x350bcfd1 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3ebf68bf snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x40264cf8 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x41bdd040 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x45f532e1 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4a771498 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4b50fc50 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4bb72898 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c9744a9 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x50cfeae9 snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x52fdbbeb snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6906e761 snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6d5ef973 snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6ecafad7 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6ecee577 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73187668 snd_hdac_i915_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x742c4a59 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7c484ce0 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8026da7c snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8109247d snd_hdac_get_display_clk +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8276ca3c snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8345cafe snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8418e576 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8c5dccf4 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8d3f1505 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8e241471 snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x96830f6f snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9b26741f snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9be67554 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa0b0d662 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa1c9e35c snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa30e6cfd snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa3275099 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa8017a6c snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaadabc3b snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb024e2e7 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb0550e30 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbf32f8fc snd_hdac_i915_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc14fe50a snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcc560f6f snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xce4d6f19 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcf9b6e49 snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd19a11a5 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd4a3175d snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd8c44b68 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd92f0af3 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd9369883 snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xda36f50d snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xde00bb51 snd_hdac_i915_init_bpo +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe0c69444 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe9249516 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xec4ce304 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xef87ed87 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfaa50346 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfb729f2b snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfff3e55f snd_hdac_read +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x60c27506 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x60f9df63 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xb3277964 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xd1004d1f snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xfbebac6d snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xfe7936bf snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00297c9a snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x024b0cb9 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x089c5ab2 snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x097f51c1 snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c2fdb0d snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c8e3161 snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e9b6a1b is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1114bfa6 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1898ceb7 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18d9cc3b snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18fb4c6a snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1b5cf3a2 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c9500e3 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x23597c31 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x236bc536 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2586ea0f snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x259d3a08 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x271c8455 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x272ee617 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2b03b4db snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2b191755 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x309f94ce snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30b34aca query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x322215e7 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33cf3439 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x36a50eaa snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a81ced2 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b8069ec snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f75fe7c snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4063b4c9 snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4120a803 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x421315ff snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43251299 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43efadd5 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43f84a59 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4851ac2d snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49a12cf5 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x507dc504 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x51142b03 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x524d81d5 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5310877c snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55a08a91 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5676ca43 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58213fa1 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58d2c885 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61ddc7b5 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x66186bb9 snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67dca200 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x682a86c7 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6abeff38 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c341bcc snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ccae7aa snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f6a116d snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7024bfba snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x71e245d4 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74880179 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7571e9c6 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x75d8c2a9 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c6a2d47 snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e49bc50 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e72e6d8 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e8b8288 snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x810ec1a2 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x87f3d94a snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x88c6bb05 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a175abf snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e4c1fbe snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e5dc9a7 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9220b573 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x939d5c99 snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95d8f0af snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96054405 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x980eddd9 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x986b989e snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98ce1cb8 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9dd508ed snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e02ca4a snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9fc51664 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa16396b7 snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4e67abc snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa663c02d snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8730a90 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa52f456 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xae2f21d6 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xae9da73d snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb062317e azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0b74550 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1424823 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9d10b17 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd31173a snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbf49d7f4 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbfcfecca snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc030815c snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc18c6d72 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc1a89478 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc215b2b9 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc31f7403 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc5ef880f snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc85afcfc snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc88de07c snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc8c1a0a7 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc906443f azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcecebe72 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd07633e7 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd312bfca snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd609d35a snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd706e873 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdad5da72 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdbb3d0bb snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdc6fad7a snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe2896621 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe4566205 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe58a84a3 snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6e551f1 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xebc35288 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xec3313d7 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xee11f546 snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf23cff31 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf27d5bd4 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf446ff95 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf5156b1a snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf79910ea snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc22e85b snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc26353f snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x04a57a75 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0948b396 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2524c003 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2fb48272 snd_hda_parse_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x33c3e814 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x647208d3 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x65741abe snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6898bd33 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6ab6981e snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7d61301a snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x813fb481 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8b6bd1d8 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x98910d2c snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9f1a7416 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9f61fe06 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb7aa4b55 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xba0fcbb0 snd_hda_get_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc8138a6a snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xcbb3fb16 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd4352441 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd8ca8dea snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x2c1154b8 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xd165a7fa cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x590a192a cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xe9b6d1d0 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x34a287ae cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x741a381c cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xa87c12e7 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x03a49f5f es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xf86558ef es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x55e5ea51 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x035bf29a pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x566d037f pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x6ea6900d pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xf10e578c pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xa7aa810f rl6347a_hw_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xade4bf4c rl6347a_hw_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt286 0xf5b690f0 rt286_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x08c0f1c1 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x1c95b8c7 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xc40e7aed rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x9304eb8d rt5670_jack_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xdd12b8c6 rt5670_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xdf7ce0a2 rt5670_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xefa6b4a4 rt5670_jack_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x3b8a7e7e devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x70ef34dd sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x855934b1 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x92c1eaa5 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xfd99040d sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x596029d9 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sn95031 0xf733d9c8 sn95031_jack_detection +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x25e4079c ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x5c92d987 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x4db9676e tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x6b4a7ac6 tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xa03eef43 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x135c6f77 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xa41e58f4 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xb1d692c4 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xdb735ced wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xe18c8971 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x6bc9d773 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x52b3ad4c fsl_asrc_get_dma_channel +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x9e46ee5e fsl_asrc_platform +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x30693bb7 imx_audmux_v1_configure_port +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x58631dab imx_audmux_v2_configure_port +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-mfld-platform 0x5e5af485 sst_register_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-mfld-platform 0x7ef32732 sst_unregister_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x4bb8eb94 sst_context_init +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x4e4981a6 sst_configure_runtime_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x9ae9b18e intel_sst_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xab14edd5 relocate_imr_addr_mrfld +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xb187b89e sst_alloc_drv_context +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xed8c2189 sst_context_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x243d5d17 sst_byt_dsp_wait_for_ready +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x2f804d3e sst_byt_dsp_boot +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x309e9ec3 sst_byt_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x34a52aa0 sst_byt_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x39aa0ef6 sst_byt_dsp_suspend_late +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0e66f369 sst_module_runtime_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x14c7b233 sst_dsp_shim_read64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1b5e8b82 sst_shim32_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x22377910 sst_dsp_shim_update_bits_forced_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x236ff8ef sst_module_runtime_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2b2d9f4d sst_dsp_boot +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2ca81140 sst_module_get_from_id +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2cfd6fbd sst_module_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x380e6d25 sst_dsp_shim_write64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x389851db sst_mem_block_unregister_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x39bfb6c2 sst_module_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3d494cca sst_fw_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3e1aaba8 sst_dsp_shim_update_bits64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x430c030b sst_dsp_mailbox_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x46b786bb sst_block_alloc_scratch +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x47b008ca sst_dsp_shim_write_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4971e48f sst_dsp_shim_update_bits_forced +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x49ed680e sst_dsp_ipc_msg_tx +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4a045773 sst_shim32_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4bc7c143 sst_dsp_shim_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4cffa75e sst_memcpy_fromio_32 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4ee8a119 sst_block_free_scratch +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4feec3ee sst_dsp_shim_update_bits +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5206c882 sst_dsp_get_offset +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x55456270 sst_dsp_shim_update_bits_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5a6918c2 sst_dsp_inbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x64f824d6 sst_dsp_shim_read64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x66004268 sst_dsp_dma_get_channel +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x70d3eea4 sst_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7af199c6 sst_module_runtime_save +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7dc6b532 sst_dsp_shim_read_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7e2ff6a7 sst_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7f46b3ef sst_dsp_dump +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8332525b sst_module_runtime_restore +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8a1f8630 sst_module_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8b913ecb sst_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8fa202c8 sst_dsp_ipc_msg_rx +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x916ab50d sst_fw_unload +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9de36cb4 sst_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa0f97983 sst_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa531c314 sst_dsp_inbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa8022549 sst_dsp_dma_put_channel +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xad88d2d2 sst_fw_free_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb330c6d6 sst_module_runtime_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb5f5b87a sst_dsp_shim_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb89044dc sst_dsp_outbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbb8f3154 sst_module_runtime_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbcec5387 sst_shim32_read64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbf4889f9 sst_dsp_reset +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc354ee95 sst_dsp_dma_copyfrom +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc4d90226 sst_dsp_register_poll +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xcfcbf3c7 sst_dsp_outbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd8dec11e sst_fw_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd9a2c94c sst_shim32_write64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xdaa0ed7f sst_dsp_shim_update_bits64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xddbfdf71 sst_fw_reload +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xec45f7fa sst_dsp_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf0aaa339 sst_memcpy_toio_32 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf107b556 sst_module_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf3475119 sst_dsp_shim_write64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf61082b1 sst_dsp_stall +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf76d1e2e sst_module_runtime_get_from_id +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xfbd0a462 sst_dsp_dma_copyto +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xfc806f40 sst_mem_block_register +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x24754c8c sst_ipc_fini +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x2c84221d sst_ipc_tx_message_nowait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x4d0a46c9 sst_ipc_drop_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xb25b26ea sst_ipc_reply_find_msg +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xb655e024 sst_ipc_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xbfefeced sst_ipc_tx_msg_reply_complete +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xd6d60d62 sst_ipc_tx_message_wait +EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0x02f5c101 sst_hsw_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0x2cc77f9d sst_hsw_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0xd1f69f64 sst_hsw_device_set_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x14439ee0 skl_ipc_delete_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x1b962ab3 is_skl_dsp_running +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x1dc73a0c skl_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x31429908 skl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x3287af83 skl_ipc_set_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x77ef47ad skl_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x7a4919d3 skl_ipc_set_dx +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x86e4af7f skl_ipc_create_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x8ec3e6a0 skl_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x9c569d45 skl_ipc_init_instance +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xa3cc0dbd skl_ipc_restore_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xe2475006 skl_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xe7dbed7c skl_ipc_bind_unbind +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xe84eb99a skl_ipc_save_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xf047e59c skl_ipc_set_pipeline_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0006a49a snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x005f0d2e snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00d1e816 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0204aeef snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0812b905 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09bf3eb5 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c0aef97 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e9b4102 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ef826b5 snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0efff70a snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f8010dc snd_soc_add_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0fbbd5f2 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1112ff73 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1218e35b snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x129fcd0d snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12bd3621 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13a973aa snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x184f7574 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c03b55f snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c25dc04 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c96bc54 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ef7f8f5 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f3c16dd soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f5615d2 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20fb543d snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2131a62c dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x214235e3 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x222d8266 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26a73d2f snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26f73201 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29dcd1ba dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a19e5c5 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b7eeae8 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2cc5d1bf snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x320d6455 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32a93eee snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3310d0b8 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3319da7b snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34f7d41b snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x369d2d44 snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x383b7ae2 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38bf40ef snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39120615 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a143772 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b28eee8 snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3cf599b6 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3db829cd snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f3708dd snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f885e30 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41634375 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x460e9c73 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x469ae9cb snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x473eec94 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47c7bca4 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x49060755 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a5cb96b snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e4f3b72 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55a3e557 snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5684d952 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x572f1d61 snd_soc_tplg_widget_remove_all +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a6c806f snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5caf9e79 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ec4e522 snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f75bb76 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x60e4baa0 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x610ead24 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61d69beb snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6228169d snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x626cdb47 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x630b7504 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65ba9d8d snd_soc_platform_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x661b0d48 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b07194d snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c4b4eec snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ded96ad snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e677ec7 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f01fa11 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70614ee2 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71120816 snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72b2ba80 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x736ff351 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73cb0d77 snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74bf074f snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x751e49bc snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7521aad7 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x758f2219 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7733be37 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a484b11 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a9fbfb2 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b8d0095 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7bcb1d36 snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7fda25fb snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8139ced5 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82c8d5c9 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82d83211 snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85334957 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8681f1f7 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87026dcd snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f20f29e snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92d8f90a snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92f63764 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x947486cc devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c25db98 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f4e078a snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f67c60a snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa36ee769 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3a7f569 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4fb6dd7 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa84155fc snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9211374 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9bbf7b2 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa998422 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad7fd526 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae61ad2d snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4f26e58 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbbbd45df snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbbf26953 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc2a29b8 snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbdfe3357 snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf6e25ec snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4efa17c snd_soc_tplg_widget_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc68eb869 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8a24967 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca9f2225 devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xceb5eef4 snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0451b27 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3cca6fa snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd538435e snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd90b97d8 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc5c78d3 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc9477da snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0bce1c0 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe25163cd snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3321f8f snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4753cf9 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe644dcb0 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8ec5919 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb095e72 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb1aa473 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb4b194e snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed0459dd snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed716356 snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef32c663 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef8bb2ff snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0328e1b snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf06561f0 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4c8de3c snd_soc_lookup_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf566ad01 snd_soc_remove_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf706813a snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8fe0114 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf952f2e7 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfbe77abc snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc840846 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe22c01f snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x19458e3f line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x540ed7ce line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6acc8c1d line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8bc7e1b4 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x945dc860 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9bb7d117 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9deea506 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa140ef7b line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa2fa8b45 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbd782713 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc54c8458 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xdbab7ee3 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe0f2718c line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xed4e02e6 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf72da89c line6_pcm_acquire +EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x08003b2f i915_bpo_gpu_turbo_disable +EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x0d97d346 i915_bpo_gpu_raise +EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x358a54ae i915_bpo_gpu_busy +EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x451432c2 i915_bpo_gpu_lower +EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x7d4de94c i915_bpo_read_mch_val +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x087e5cb3 rsi_default_ps_params +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x118d0ff0 rsi_hal_device_init +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x1c656cd5 ven_rsi_91x_deinit +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x1e678bb2 dot11_pkt_type +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x3c882bf0 rsi_remove_dbgfs +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x4224cb8f ven_rsi_mac80211_detach +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x437447f4 rsi_hex_dump +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x457e8d80 rsi_init_dbgfs +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x45ca198c ven_rsi_dbg +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x52e08a19 ven_rsi_91x_init +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x5f72d45e rsi_hci_detach +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x857b4856 rsi_send_rx_filter_frame +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xb25f81b8 rsi_hci_recv_pkt +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xbabe3c80 ven_rsi_read_pkt +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xc26e71fd rsi_send_rfmode_frame +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xd6f82032 rsi_deregister_bt +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xe3a0df72 rsi_config_wowlan +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xe8a5f63d rsi_hci_attach +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0xf6e772c3 irq_bypass_unregister_producer +EXPORT_SYMBOL_GPL vmlinux 0x001181ec pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x00149990 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x002a113a ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x0034f3b6 xen_has_pv_nic_devices +EXPORT_SYMBOL_GPL vmlinux 0x0042d2eb devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x004f004a gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x0056e931 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x006ec128 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0070b925 bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x0078a41b regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x008d7eac swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x00db3f95 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x010cb19e bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x014840af pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x016ad45a devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x0170cb6c efivar_work +EXPORT_SYMBOL_GPL vmlinux 0x0178796a __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok +EXPORT_SYMBOL_GPL vmlinux 0x01976643 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x01c4a551 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x01d695e0 _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0x01d827d2 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e88b6d device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x023cc7bb __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x0266ade9 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x0272befc pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x02744ca2 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x029e7101 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x02b76d09 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x02c5b6a0 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x02db249b crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x02fa1242 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x02fb5332 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x03010687 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x031542a6 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x0335d5b1 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x035b858c usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x037f865f call_filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x037fba25 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03aebf36 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x03ce75ee arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x03d25617 pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x041174ea disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x04363c3f rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0x043bf3c9 devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x04551fb7 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x0465473a regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x047c8ddf devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x047e70e6 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x047f374b bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x0485655f amd_get_nodes_per_socket +EXPORT_SYMBOL_GPL vmlinux 0x04897b9a devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x048a6846 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x04972400 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x049de012 rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0x04abaf9b regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x04b1ba2a iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x04bf26af ioremap_page_range +EXPORT_SYMBOL_GPL vmlinux 0x04c3f2c1 gnttab_empty_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x04c4be07 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04ca0531 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x04ccb208 dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0x04d055af sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x04ecfb5c set_memory_wt +EXPORT_SYMBOL_GPL vmlinux 0x04f4bd8d percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x05177e47 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x052569a5 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x05306bfe for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x05503d5f tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x05564d79 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x05631ecd blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x056bbfed inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x0574e17c pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0x0575e31a pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x057ef9be platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x05819e03 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x0587a13d reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x059a1105 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x05a6f228 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x05cc2363 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x05d1fc4c vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x05eca2f1 crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x05f5dd56 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x060d5ce3 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x061f2938 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x064d781f preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x065b2a9d evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x06685a7e crypto_lookup_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x0683ae53 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x06876a29 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x069194a6 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x06963c36 intel_msic_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x069b74c6 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio +EXPORT_SYMBOL_GPL vmlinux 0x07032f9e trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0x071122c5 pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0x0715db8b tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x071a1d36 blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x071a761a sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x071ee624 __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x073a338b fpstate_init +EXPORT_SYMBOL_GPL vmlinux 0x07442711 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x0752ba4c smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x07564d37 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x07603e3c lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x079d6530 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x07a4f537 x86_vector_domain +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07da7382 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x07da89f5 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x07ddd2c3 iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x07f300c3 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x07f61c8e blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x081b6be1 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x081dc08f rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x082333d6 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x0839b333 dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x08cbc119 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x08d58286 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x08ebab77 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x08f10258 gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x093d6ce3 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0961ebc6 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x0962d0e8 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0966d674 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x0997291f udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x09ae8d48 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x09b09813 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x09b50ffc input_class +EXPORT_SYMBOL_GPL vmlinux 0x09eb3f19 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x09efec24 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x0a0863ce gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x0a1f36b3 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x0a4fde00 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0a57df06 devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0a64775f devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x0a835b13 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x0a8d21ae list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x0a97fc9d tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x0a9be626 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x0ab18a40 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x0ae7e356 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x0af41b41 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x0af4e2cc rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x0af77223 trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x0afd4610 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b24c083 xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0x0b3b1d0b crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b84cd49 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0b9008ae ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x0b99731f __sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x0ba1f1c0 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x0bc9843d ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x0be85b16 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x0beddad2 get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0x0bf50669 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c4e612a ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x0c53eecc devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x0c76e67f __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range +EXPORT_SYMBOL_GPL vmlinux 0x0c80e3fe efivar_init +EXPORT_SYMBOL_GPL vmlinux 0x0c80ec89 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x0ca1dcc5 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x0cabce8b sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x0cb3a7c2 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0ce75a41 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x0d059e64 static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0x0d064a0d simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x0d0917e5 inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x0d29b3cd xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0x0d3abe02 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x0d490bc4 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d664075 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x0d6b0b5d usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0d87e885 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x0d997a31 xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x0db4cafb __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x0db649e4 phy_create +EXPORT_SYMBOL_GPL vmlinux 0x0dbbf17d __remove_pages +EXPORT_SYMBOL_GPL vmlinux 0x0dbd6fe7 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x0dcda223 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0df925f6 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels +EXPORT_SYMBOL_GPL vmlinux 0x0e13b070 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release +EXPORT_SYMBOL_GPL vmlinux 0x0e1b8e8e bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0e21c949 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x0e295435 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x0e4d5a3e perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x0e6a33a0 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x0e6b263c ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x0e919b34 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x0eae7484 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x0eb37246 clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0x0edd4c03 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x0edff73f scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x0ef73c96 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x0f289ac1 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f344f50 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0f361b45 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x0f4a4dbc __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0x0f671b8e __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x0f6e4206 gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f795c34 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x0f8ed4eb sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x0f989d60 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x0fa138de xen_hvm_need_lapic +EXPORT_SYMBOL_GPL vmlinux 0x0fb37965 napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0x0fc01e9f static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi +EXPORT_SYMBOL_GPL vmlinux 0x0fdc5993 irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x0fe2d570 xenbus_directory +EXPORT_SYMBOL_GPL vmlinux 0x0feae200 skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0x0fedd8a3 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x1016f384 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x102e56f9 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x1059cd4a led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x1078abd9 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x1094725e regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x10b873df fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x10c1e79f set_pages_array_wt +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10eef1f5 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x110042bd __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x110fc089 blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x110ff7fe rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1118bbe6 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x11373c25 acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x118049f0 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x1182f7c4 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x118494d2 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x11ca5d39 __netlink_alloc_skb +EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x11d81720 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x11e3f7c4 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x1211e545 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x12157e72 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x122df96f locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x122ea412 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1230a0ad rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x12365e8c percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0x124c8658 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x12532dd8 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x125fda28 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x127ab74e usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x1280ed3a ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1294999f serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x1296df3a filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x12c8d89c virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x12c9f911 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x12ca8e17 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x12dfb1d6 xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0x12ea3c14 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x130bd388 check_tsc_disabled +EXPORT_SYMBOL_GPL vmlinux 0x131467b8 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131afaba pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x1331be7d ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x1332afe0 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x134fc41c irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1365cebe attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x137d8e92 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x139bb975 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen +EXPORT_SYMBOL_GPL vmlinux 0x13b3a97f find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x13b89dee pinctrl_request_gpio +EXPORT_SYMBOL_GPL vmlinux 0x13bb70de dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13bc9ce7 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x13c22c20 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x13e1ab9d blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0x13f51fc3 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0x14249545 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x142f240e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x143eef24 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x1456f802 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x14579e22 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x14a54d1a xenbus_map_ring +EXPORT_SYMBOL_GPL vmlinux 0x14acf021 reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0x14c1ddcd powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x14c94d6d debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x15010e1f arbitrary_virt_to_machine +EXPORT_SYMBOL_GPL vmlinux 0x1515313d phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x1533f78c ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x1540c469 efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x1541f93d tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x15568631 lookup_address +EXPORT_SYMBOL_GPL vmlinux 0x156f8cbd clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x1578beb2 wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x15823fb5 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x15911eee sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x15b0606e e820_any_mapped +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x15ff107d __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x162f78f8 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x164934f4 pgprot_writethrough +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x165f6bfd tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x1660c92a pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x1664cfca irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0x16656acf mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x16743218 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0x168daaa8 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x16b4fc5c tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x16c30291 smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x16dedbfe crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x16e215c6 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0x17045172 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x17093d7d task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x1716a5cc devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x1719586d usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x172cea17 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x172d08b8 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x17395043 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x17525196 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub +EXPORT_SYMBOL_GPL vmlinux 0x176ba8d1 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0x176d7312 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x177c25ee class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x17984f0b regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online +EXPORT_SYMBOL_GPL vmlinux 0x179bca0e da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x179cca1c debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x18045f43 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x18105592 xen_remap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x1840d2b0 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1857553b ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x18c3df98 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x18c40c8c unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x18d933e0 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x18f5e50e arch_apei_enable_cmcff +EXPORT_SYMBOL_GPL vmlinux 0x18f6808d nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x18f83fab gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x190cff6e clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x19274aed sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x1929f271 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x1954caac rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1959dc86 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x19616c1b ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore +EXPORT_SYMBOL_GPL vmlinux 0x1990f8ff pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x199bcf72 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19ae2390 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x19d35025 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1a003c5f __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x1a16e170 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x1a1b53c8 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x1a1c4082 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x1a490641 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x1a4f9a90 wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0x1a714b1e md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x1a71b6cd ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x1a856ed2 blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x1a9c40f9 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1a9cb062 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x1ab91595 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1ad5a4dd scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x1b1f2bda speedstep_get_freqs +EXPORT_SYMBOL_GPL vmlinux 0x1b38b3c6 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x1b43f5bc transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x1b4da864 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x1b52d0fa platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x1b68b0ac __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x1b790944 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b95d0dc gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1bb5155c iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1c1df6b3 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x1c21fc67 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1c4fc462 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase +EXPORT_SYMBOL_GPL vmlinux 0x1c6660c7 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c88c0b3 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x1c8a5262 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x1c8dfc3f pci_msi_set_desc +EXPORT_SYMBOL_GPL vmlinux 0x1c8eae55 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x1cb1253c rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x1cc5e456 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x1ccd2284 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x1cdd5440 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x1ce51409 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x1d04ba8f fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d37b9b1 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x1d3b41b3 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x1d4591bb ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0x1d459685 xstate_size +EXPORT_SYMBOL_GPL vmlinux 0x1d4b6855 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x1d681eb5 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x1d739e1c xen_set_callback_via +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x1d7cb586 clk_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x1d8b2297 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x1d8eebf2 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x1d9da838 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x1dafa25e tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x1dc0517c __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x1de80a38 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x1def880e bind_interdomain_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x1df38ebd __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x1e05d1d4 pwm_config +EXPORT_SYMBOL_GPL vmlinux 0x1e530dd7 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e6d4ec9 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x1e728c4f _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e80cce5 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e9b90d6 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ec9c61b device_del +EXPORT_SYMBOL_GPL vmlinux 0x1ecf7a5f blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x1ed1dfdc blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x1ee4592a pwm_disable +EXPORT_SYMBOL_GPL vmlinux 0x1eefdea6 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x1ef5914a wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x1f0ac8a4 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x1f1c61d1 devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x1f3303b1 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x1f3d79ba device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x1f406110 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x1f69e1f6 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x1f7d4364 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x1f7f6fac register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1f8e992f ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x1fa0ae4b attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1fa5b19a preempt_schedule_notrace +EXPORT_SYMBOL_GPL vmlinux 0x1faa3038 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x1faaffa7 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x1fae6310 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x1fba7083 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x1fc48828 find_module +EXPORT_SYMBOL_GPL vmlinux 0x200a2328 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x200cc695 __free_iova +EXPORT_SYMBOL_GPL vmlinux 0x201bb095 acpi_dev_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x202809e0 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x204e66e6 percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0x20704496 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x207233e6 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x2094fd06 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x209ec764 xen_event_channel_op_compat +EXPORT_SYMBOL_GPL vmlinux 0x209f710d generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x20dfea62 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x20f2afa5 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x20f935a0 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x20fb103c mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x20fed3b3 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x210d9db4 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x21356c4c pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x214c592f ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x216e7d1c sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x216ff548 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x217ae1b8 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x21911248 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x219fab35 acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21b17d9b pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x21b77287 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21e8d54b noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x21ed2975 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x22001f72 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x221e43a2 __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2246db6b kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0x227a2181 cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x2281725e shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x2299ec81 perf_assign_events +EXPORT_SYMBOL_GPL vmlinux 0x22a9e2e2 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x22d7a196 scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x22f97be1 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x23048011 __intel_mid_cpu_chip +EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x232fba9b pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x23526622 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2357f93b scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x2366a2c0 errata +EXPORT_SYMBOL_GPL vmlinux 0x23770f29 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x239f1f7a class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x23afa9c6 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x23b48c20 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x23b808b0 digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x23c2660f bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x23e5f005 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x23f663a0 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x240580a9 xenbus_probe +EXPORT_SYMBOL_GPL vmlinux 0x243aa053 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x24614ac9 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x24656ad9 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x2469810f __rcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x246b0d63 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x2472d356 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x249da32e acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24b089c5 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x24b7f887 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x24c7698a xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x24da8290 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f45195 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x24fa11a7 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x24ff257d pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x25031c3e inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x250d9e9e ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x252c09be injectm +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x2545c170 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x257aa0c5 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x2595a8d8 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x25b653ad ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x25bd595e gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x25c05153 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr +EXPORT_SYMBOL_GPL vmlinux 0x26085a7e pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x26090925 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x261b46ef blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x26215a7e arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x264ae4c6 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x2657987c posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x2680a882 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x26843873 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x2686f4eb dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x269014dd crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x26965721 slow_virt_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x26998755 ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x26b3c701 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26e1051e tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x26eacab5 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x2701b5b7 xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x2705501f gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x27056f74 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x2734ccb3 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x27545a08 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x2761369a sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x278782d0 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x278e4b2c __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x279cb985 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x27b58b55 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27c97f29 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x28084a7d reserve_iova +EXPORT_SYMBOL_GPL vmlinux 0x280ca56d pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x28278fc4 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x2844956d handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x284aff39 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x285cb7dd pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x285d1bde virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x289c0371 dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x28ca1c50 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x28ce407b __class_register +EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0x28fd1944 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x29091409 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x290c53eb crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0x2922c452 bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0x293f073e vrtc_cmos_write +EXPORT_SYMBOL_GPL vmlinux 0x29711dff acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0x297cec83 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x29a7b218 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29f039ae ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x2a0a57e9 nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x2a0b283b tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x2a1a653f cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x2a2cff0f scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a9bac1b raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x2aa878e4 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x2aac1ec6 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0x2ac12c47 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x2acdc2ce driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x2ae082dd usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x2ae28b56 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x2af63321 acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0x2afa5f22 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x2b179a0b rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b2afaf3 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x2b2f0906 tps65912_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x2b344494 acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x2b602bb9 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x2b67f096 speedstep_get_frequency +EXPORT_SYMBOL_GPL vmlinux 0x2b7069ff tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x2b746485 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2b96316a efivar_variable_is_removable +EXPORT_SYMBOL_GPL vmlinux 0x2bb3c704 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x2bc50e7c exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x2bc94f76 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x2bfa39ee pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0x2c1c062d cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c4609be ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0x2c630bd1 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0x2c6a0410 xen_set_domain_pte +EXPORT_SYMBOL_GPL vmlinux 0x2c78bb6a extcon_get_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x2c7d9c64 xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c8b8741 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x2c8edb58 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x2cc1a7de kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x2cdc8053 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2d08b826 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d282b5d devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d6ec7bc regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x2d7d7209 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x2d978b10 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x2d9f2ce3 sched_clock_idle_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x2da469f9 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x2dd84bcb usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x2de681b6 system_verify_data +EXPORT_SYMBOL_GPL vmlinux 0x2def54cd fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x2e05bfbe crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x2e0b9823 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e4c0132 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x2e4de4c3 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x2e58b7b6 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2e66612a tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x2e6b9888 xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x2eb9d6ae register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec18f52 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2ef0b342 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f33b37c da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f542274 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x2f56fb43 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f90da7e trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x2fc4a0b2 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x2fd71fd9 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake +EXPORT_SYMBOL_GPL vmlinux 0x300cfdcc inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x3047ea4d tpm2_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x305399ba sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x305ecbb0 acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x30635782 cpu_has_xfeatures +EXPORT_SYMBOL_GPL vmlinux 0x308a9bee acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0x30917bf3 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x30c1ea0b device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x30f26068 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x313c80f7 gov_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x314f75d9 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x314ff6aa ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x316c525c regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x318a74ed ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x31a0c2ab usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x31a4165e spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x31ae5f73 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31df47bb ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x31fc7f86 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x32047007 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x320beb8a get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x321dabe1 __add_pages +EXPORT_SYMBOL_GPL vmlinux 0x3227ac46 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x325363f9 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x32557712 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x325e677c gnttab_grant_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x3263d968 gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0x326f688b platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x327431a7 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x32924a4d scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x32ab7c5c crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x32b60659 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32e3b076 mxcsr_feature_mask +EXPORT_SYMBOL_GPL vmlinux 0x333228ec intel_msic_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x3362b03c xen_p2m_size +EXPORT_SYMBOL_GPL vmlinux 0x33655159 xen_pcpu_hotplug_sync +EXPORT_SYMBOL_GPL vmlinux 0x336d4b88 pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0x33784f14 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x3387c721 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x33a332e4 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x33b96e5d apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x33f9a08e skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x34023c57 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x340b289d dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x340e87b6 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x3414a57f usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x3420e683 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x3424c8c7 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x34331d5e nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0x343a8a54 blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x343cd1bb ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x34415926 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x344e56af rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0x34519442 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x3470908d vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x3471b417 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x347682ce snmp_fold_field64 +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x34f58c3b acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0x35071656 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x352650ee gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0x3526b229 kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0x3541de7a nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0x3549b01c virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x355ecaac ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x35667b22 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x357839a6 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x3581f995 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x358b7b1a regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35910f72 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x35af5c6e dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x35b6c906 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x35d43533 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x35dcd1f7 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x35f223bf serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x3606e5ab rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x36186567 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x363419be rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x365c64cc scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x36703958 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x36837a1c tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36b49387 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled +EXPORT_SYMBOL_GPL vmlinux 0x36ba2551 intel_scu_devices_destroy +EXPORT_SYMBOL_GPL vmlinux 0x36bb5442 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x36d4e96a metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36de2236 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x36f96a4a dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x3707a221 xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0x371c33b7 split_page +EXPORT_SYMBOL_GPL vmlinux 0x371dc739 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x373a6f50 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x373c7c25 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x3753484e tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x3760773c debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x3764af2a rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x376918e2 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x3772c146 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x378bee88 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x37951d7a class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x37998947 cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0x37c3d325 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x37d2612b hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x37f0b38e kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x380d22dd crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x386da50d sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x38707e6c regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end +EXPORT_SYMBOL_GPL vmlinux 0x387275f6 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x388b4bbb pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x38afe3fa led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x39016642 devres_release +EXPORT_SYMBOL_GPL vmlinux 0x391d319c nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x394c1b7d phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x395b7894 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3971a8ae xenbus_unmap_ring +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39ca71db acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x39ceed6c wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x3a15ef89 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a6657c1 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x3a7a674a devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn +EXPORT_SYMBOL_GPL vmlinux 0x3a8c3c51 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3a8f963b reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3ac2fcda arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0x3acdce52 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3afe2128 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x3b04c2e3 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x3b1794d1 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x3b469ab7 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x3b4722c7 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x3b504b32 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x3b547bc9 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x3b666452 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x3b7145bb apei_exec_read_register_value +EXPORT_SYMBOL_GPL vmlinux 0x3b76e246 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x3b8b53dd crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x3b9e3ccf scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x3bde3415 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x3bf12586 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3bfa6228 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x3c108d1b relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x3c28ec43 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x3c425a52 efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0x3c4a35f5 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x3c5c08b6 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x3c797905 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x3c84887b tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x3c9252a0 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3c93ea25 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3ceae5fe thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x3cecd43f ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x3d0706fd sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x3d3548a8 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d72b39a scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x3d7620d1 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x3d7ea99a gnttab_grant_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x3d848799 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x3da110d9 xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0x3daccfd7 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x3dbee4a6 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3dd4d3a7 bprintf +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3deb1447 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e3fd990 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x3e54b244 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3e5b1239 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e639f99 efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0x3e64f944 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x3e6874a9 sis_info133_for_sata +EXPORT_SYMBOL_GPL vmlinux 0x3e6e23c6 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e757637 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x3e7ed4dc unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x3e9cd267 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3eb7af22 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x3ebe33f0 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x3ed50bc2 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3eea6fe6 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x3eedd771 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x3eef1f07 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f1bd29d led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x3f1e163a platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x3f229c4c oops_begin +EXPORT_SYMBOL_GPL vmlinux 0x3f2f27a7 regmap_fields_force_write +EXPORT_SYMBOL_GPL vmlinux 0x3f54ce2c dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x3f58b102 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x3f66a343 dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0x3f67e28f bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x3f84d4c9 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x3f9973c7 page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0x3fc4307f regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x3fdbb8e5 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x3fffc828 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x40029c7f ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x4010b80f pmc_atom_read +EXPORT_SYMBOL_GPL vmlinux 0x401a28b8 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x401e84c8 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x402420a0 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x402ac990 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x4032ee23 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x4053f6c3 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x40587ac4 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x40632803 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x408212ba hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0x408e9189 irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x40a9ed39 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40c67137 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x40c785da usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40dc3cde wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x40e3d4a4 xen_swiotlb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x40e5da2f usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x411ff21b dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x412e9193 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x416000ae regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x41729c93 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x417ab7b5 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x418710e7 mce_inject_log +EXPORT_SYMBOL_GPL vmlinux 0x41883cb1 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x4189496f ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x41a3d53f sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x41a83a10 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x41afeedc regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x41bdc0cb usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x41df64bd pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x41f8416d devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x4213a51a efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x4226fa0a phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x42330e7b blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x423f36e0 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x4265485f ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x42695fe6 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x42c989ff iomap_atomic_prot_pfn +EXPORT_SYMBOL_GPL vmlinux 0x42cd3cef acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0x42d058fb trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x42d97efa regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x42e33a9a cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x431cb182 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x432c3563 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x437ed031 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x4395953e usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x43967426 swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x439d762a unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43c00ca9 platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43dc65b9 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x43f4f959 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x441743ef pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x441fa356 irq_ts_save +EXPORT_SYMBOL_GPL vmlinux 0x4422dc6b ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x442940dd wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x442ab6db regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x442e73f8 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x4434ff9f platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x444935a9 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x444e0453 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x4451a3b5 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44991c18 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x44b26c28 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44c6b737 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x44ef69ad register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x44fd8c4b blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x45042641 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x4512b086 intel_scu_devices_create +EXPORT_SYMBOL_GPL vmlinux 0x4517648e dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x45274b3d rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state +EXPORT_SYMBOL_GPL vmlinux 0x45488dd9 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x454f1cb4 efi_query_variable_store +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x457b5106 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x459177c0 pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x459cee68 security_kernel_fw_from_file +EXPORT_SYMBOL_GPL vmlinux 0x459d22ef device_reset +EXPORT_SYMBOL_GPL vmlinux 0x45b7d6a0 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45c67b43 __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0x45cc1def bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page +EXPORT_SYMBOL_GPL vmlinux 0x45d4efb7 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x45e3a852 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x45ee5ddd debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x4609481c shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x460f31aa rodata_test_data +EXPORT_SYMBOL_GPL vmlinux 0x4617ad98 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x4628c42b dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x46567b99 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x46743458 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x46779876 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x4678157d pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0x46875a63 apic +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4698d804 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x46b5036f acpi_dev_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x46dd492a crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x46ef953c pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x46f60798 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x46fc4384 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x472c4bc0 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x47377d5c efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x47430c20 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x4743126a usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x479695b2 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47c59033 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x4862bd8c cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x48682db9 perf_guest_get_msrs +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x486f9da5 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x48814d6b simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x4886695b pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x488ebdc9 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x48a6a2a5 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x48b7ed77 acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x490a8df6 x86_platform +EXPORT_SYMBOL_GPL vmlinux 0x492a2eee crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x4973c3d4 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x49778b4a __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x498298ce __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x4986c67f pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x4988b887 dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49b5d820 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x49c72176 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x49d7b3eb blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x49de88ff xen_swiotlb_sync_single_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4a061e5d clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x4a38c124 acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x4a3c3cf9 microcode_sanity_check +EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name +EXPORT_SYMBOL_GPL vmlinux 0x4a569e05 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x4a62706e device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x4a682e89 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x4a68577d crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4a754bdc xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x4a899098 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x4aab6097 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x4aabd88b usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4abc1390 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ac3484f register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x4ad3d7fb acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x4afb573b vrtc_cmos_read +EXPORT_SYMBOL_GPL vmlinux 0x4b5eedb2 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x4b63d3c4 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x4b6b5be4 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x4b6d3c84 blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0x4b70ff51 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x4b73a89c virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x4b756a60 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x4b8a01ac usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x4bbf6ee1 skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0x4bc71d89 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x4bc74077 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x4bd2f3fe usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x4bddc39e sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x4bedcb55 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x4bf4bff1 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x4bffb3f5 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x4c252d3b da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4c27954f led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x4c2a472b __static_cpu_has_safe +EXPORT_SYMBOL_GPL vmlinux 0x4c44413b blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4c491cbc ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x4c4c5020 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x4c58ec18 virtqueue_get_used +EXPORT_SYMBOL_GPL vmlinux 0x4c598f48 bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c73e2ff crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4cb8e7a2 irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0x4cbea3eb kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x4cda17e9 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x4ce802f7 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x4cf8449c gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d0b3edc usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x4d18ac1a sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x4d2afa11 blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0x4d343839 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x4d3b38c7 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x4dbc2ae8 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4dd23091 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x4ddb65c3 blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4de7fe81 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path +EXPORT_SYMBOL_GPL vmlinux 0x4e2c2dd2 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x4e2e9ca3 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x4e386d0c free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x4e38a72c blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0x4e3b237d xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x4e3cb913 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x4e57723d apei_read +EXPORT_SYMBOL_GPL vmlinux 0x4e74e625 gnttab_batch_copy +EXPORT_SYMBOL_GPL vmlinux 0x4e7d79f1 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x4e97a832 tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0x4ea2cc35 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x4ec9cdbf pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x4ed5185b regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4f002352 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x4f27164d extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f410d19 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x4f4a9d49 nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x4f4bf92c net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4f5aae4c dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f718a1d da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4f74c695 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x4f93ae3e serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x4f98a147 rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0x4f9cb576 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x4faebcbb devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe00822 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x50243e2f power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x5024523b key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi +EXPORT_SYMBOL_GPL vmlinux 0x50496a3a ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x50594926 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x505a4553 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x505a9f10 rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0x50610dd1 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x507de8c6 add_memory +EXPORT_SYMBOL_GPL vmlinux 0x5080c352 trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x5089af21 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x508ad59d tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x5091b075 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x5091fab0 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x50a3293f da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x50cc0d96 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50eaf01f sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x50eb9ead __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x50ebedd8 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x5110032c regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x511d693c led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x516cd7c0 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x516d03c7 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x51719489 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq +EXPORT_SYMBOL_GPL vmlinux 0x51963dc6 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x51966b51 __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x51a70e9a dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x51c51289 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x51ccee1e regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x51d19125 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x51da7e44 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x51f62673 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL vmlinux 0x52270989 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x522c1f4b crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x526280c7 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x528748ca pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x5289dcef vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x52924f20 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x529c757e platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x52bcfdc2 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x52d1ad04 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x52d8c375 clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x52e6bf01 xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x52f102db __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0x52f2a95a regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x5344a970 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x53743faf __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x537ae704 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x537ed8b4 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5399c768 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late +EXPORT_SYMBOL_GPL vmlinux 0x53ba8619 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x53c7a426 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x53c9c6eb msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x53e3b340 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x53e94059 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x53f7fbf4 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x5406df8b platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x5434d36d fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x544705b6 component_add +EXPORT_SYMBOL_GPL vmlinux 0x544b2579 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x544c08cd cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x5453681c pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x545b6a0b spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x54817300 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x549ecb82 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x54d468f1 pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x54d586d5 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x54e4a219 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0x54ed49b0 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x54fddb89 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled +EXPORT_SYMBOL_GPL vmlinux 0x55171ffb sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x552f6af9 nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5545d32e register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x554717bb usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x5547b74a skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x554febd4 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x55526907 xen_features +EXPORT_SYMBOL_GPL vmlinux 0x5554212e xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x55878af5 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x55b4afab ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x55d72562 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x55daacca usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x55df97ba rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x55e7f8ce ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x55edd53d unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x5613ba8f cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x56407ffe wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x5654f836 erst_get_record_id_next +EXPORT_SYMBOL_GPL vmlinux 0x565887b1 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x567ab7de find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x5684c59d get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0x56947347 dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x569bcb97 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x56aae6c3 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x56b646cd i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56f9c3ec extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x56fc0968 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x5706c4f5 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x572e2909 usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x573c29e8 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x5779d445 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0x57881ace dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57f2c19d fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x57f8062c acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0x580d2cac event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x582e54ca gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x583b0207 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x5841bcf3 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5843bde5 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x584b0997 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x584bec87 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x585704ab aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0x586a7bc9 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x5879f7bd blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x587bd46f alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x58800cd3 blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58d986d6 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x58e42cdc acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x590234c9 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x591d1880 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x591f7357 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x594cde67 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x5965593f ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x59688cf7 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x59a7083b acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x59abc352 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x59c5665b ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x59d139b2 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x59d3e495 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x59e1b06e sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x59fbfc7e device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x5a2204df __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x5a232f41 blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x5a24463d tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x5a2b1b67 gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5a3688b7 system_trusted_keyring +EXPORT_SYMBOL_GPL vmlinux 0x5a3ba76e dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x5a54a1a6 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x5a5f018b mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x5a64929c __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x5a65c37b devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x5a68d94d sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x5a699c6a fpu__save +EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a98d246 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x5ada06b0 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x5ae4846c __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x5af03a28 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5b1899f8 free_iova +EXPORT_SYMBOL_GPL vmlinux 0x5b1ba244 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x5b1c8fe0 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x5b3e341c wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x5b4a9fcb ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x5b5489e1 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x5b574650 print_context_stack_bp +EXPORT_SYMBOL_GPL vmlinux 0x5b7cc772 ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0x5b8283ff tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x5b89a506 nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x5b975e13 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5b9f9977 xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0x5babf842 register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x5bb5cc93 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x5bb5f353 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x5bcd6ae6 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x5bce8ca1 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bff693b tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x5c1bed4b unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c5a2c56 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x5c64dce8 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker +EXPORT_SYMBOL_GPL vmlinux 0x5c698553 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x5c6da976 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x5c7f3517 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x5c9c7eec gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x5c9c8a41 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cb549c4 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5cc9f9f9 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x5cdc87fa tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x5ced3d7b ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x5cf246f0 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x5cf73b2a exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x5d0d68c2 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d366dec gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x5d5ca512 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x5d9425cb __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dab0db1 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid +EXPORT_SYMBOL_GPL vmlinux 0x5dc3fd44 xen_pci_frontend +EXPORT_SYMBOL_GPL vmlinux 0x5de0c33a devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x5de57de4 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x5df921e1 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x5e3740c6 devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x5e4374ec gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0x5e492808 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e516cd3 regmap_update_bits_check +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e6886c9 set_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0x5e70479d mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0x5e74c792 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x5e75fcd9 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x5e77ba35 do_machine_check +EXPORT_SYMBOL_GPL vmlinux 0x5e817007 x86_hyper_kvm +EXPORT_SYMBOL_GPL vmlinux 0x5ea908de udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5eb4a4a4 shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x5ed5dd98 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x5ed9ea86 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x5f20865f hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x5f2a1c0d tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x5f2ae02e blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5f63bc87 i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0x5f65e8c9 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x5f6be23d preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5f8ae352 ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5f9323d1 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x5fc27be9 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt +EXPORT_SYMBOL_GPL vmlinux 0x5fe34b86 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x5fe93fe4 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x5feda6a0 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x5ff63fcf nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x5ff72d3d relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x5ffa8f96 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x5ffc7118 component_del +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x601354d9 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x6022a99f spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x6035b78e fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x6039fc73 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x605ad133 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x60694e53 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x607c4a9d usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x60930d37 save_mc_for_early +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a88b7d irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x60bae1e4 ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0x60c41d2c xen_swiotlb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x60c6bd87 clk_debugfs_add_file +EXPORT_SYMBOL_GPL vmlinux 0x60cd73ed pv_apic_ops +EXPORT_SYMBOL_GPL vmlinux 0x60cef609 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x60d44649 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0x60f07053 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x60fbb41e power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x61025861 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x610bfa99 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x615b4c40 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x6166a21b tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x616efc71 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x61766faf bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x61897fd7 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x618adfba of_css +EXPORT_SYMBOL_GPL vmlinux 0x6193d5fe virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x61b0f0c9 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x61cde409 acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0x6211487d rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x623803c8 hest_disable +EXPORT_SYMBOL_GPL vmlinux 0x6277f8eb gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x62a1c981 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x62a7f33a devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x62ad4d30 __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0x62af7003 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0x62c11598 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x62d3d7f1 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x62e8b9f9 efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0x630e84e3 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x6335285f fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x635ec980 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0x637505c9 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x63987f16 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x63a2505c clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0x63c58328 clear_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x63e2d25d __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str +EXPORT_SYMBOL_GPL vmlinux 0x63ee1a7c blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6412cc45 dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0x641a0291 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0x64260749 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x642c9caa iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x642d5f8d crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x64318593 acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x64486ddd xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x645b834f srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x64737e49 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x648fa0bd put_device +EXPORT_SYMBOL_GPL vmlinux 0x64a70cfc io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x64b7069e apei_mce_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0x64e24a5e memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x64e2f179 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x64ea14e5 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x6536953b btree_last +EXPORT_SYMBOL_GPL vmlinux 0x653cb02d intel_msic_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x654721c2 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x65650582 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x65690cde __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x656aefe4 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x656fa969 bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x6571945c ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x658310de tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x658c8186 amd_get_nb_id +EXPORT_SYMBOL_GPL vmlinux 0x659b0240 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x65ac1989 tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65f8573c ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x6614c4ba pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6623a53d rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x6646c841 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x66476e64 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x664f64f1 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x665ecab0 pv_time_ops +EXPORT_SYMBOL_GPL vmlinux 0x66757659 cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x667d5841 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x6680cb0d elv_register +EXPORT_SYMBOL_GPL vmlinux 0x6682b6a5 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x668b3811 extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0x66915d89 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x66aa999d cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x66bc7593 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x66bfcec1 register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x66c0a6a1 devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy +EXPORT_SYMBOL_GPL vmlinux 0x67716bd4 wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67988a60 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x679afe0a rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0x67a156d0 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x67a44563 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x67c39672 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x67d60fb5 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x67e3df32 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x67ebe13d md_run +EXPORT_SYMBOL_GPL vmlinux 0x680342a3 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x6822ee2b cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x682e6bb0 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x6834ac43 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x6839d35a regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x683c85ad __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x68484c13 device_remove_property_set +EXPORT_SYMBOL_GPL vmlinux 0x687e685f fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x68956406 static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x68a7a78e pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0x68c162d8 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x68c9c629 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x68e6576f platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x69037346 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x693b9234 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x69445484 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0x69659e65 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x696bfed6 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x697c422c __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x6999093f gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x69cb33e3 bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0x6a052adb eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x6a0b308a pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a1f50c8 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x6a2a6a19 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x6a335d1d single_release_net +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a50e925 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a65f151 md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x6a823c87 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a893921 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x6a89a5fd usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x6ab1b8bb usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x6acacd90 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x6acad21f acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x6ad50e2e devres_add +EXPORT_SYMBOL_GPL vmlinux 0x6ae5d718 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6aeeca0f __bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x6b072e85 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b4cf9dc ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x6b672044 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x6b69e4e3 use_mm +EXPORT_SYMBOL_GPL vmlinux 0x6b6b3123 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x6b7a22ec dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6bd373ed edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x6beff082 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x6bf1b90d dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c0968a8 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6c1251fd apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x6c209eab __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0x6c267d54 edac_subsys +EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c3d6ac8 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c56c109 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x6c60d14e rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x6c6538df init_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c669537 ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0x6c6ab823 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x6c6c8674 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6cd2eb6c acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0x6cdadd9b inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x6cdec16f __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x6ce3f30a print_context_stack +EXPORT_SYMBOL_GPL vmlinux 0x6cf33821 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6cf56ab3 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x6cf6a5bf wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d4e62b3 regmap_field_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x6d65bc66 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x6d6afacf skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x6d9212db pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x6dac0acb hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x6ddae823 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x6ddc2949 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x6de789c5 xen_remap_domain_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e0b271e ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x6e248e83 skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6e252602 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x6e35ff9b fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x6e51afc8 percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x6e58ddf0 gnttab_end_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x6e64b90f sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x6e6a0c76 __module_address +EXPORT_SYMBOL_GPL vmlinux 0x6e782c23 iomap_create_wc +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e7febbc napi_by_id +EXPORT_SYMBOL_GPL vmlinux 0x6e80475f to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0x6e80cd5b md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x6e85b00b local_touch_nmi +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6ea81c0c __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6eb01618 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x6eb50337 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x6eb56ced ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x6eb879c6 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0x6ec9e3e8 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x6ecc20c2 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f2277b9 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x6f402ba6 acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x6f50c5eb i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x6f577ee2 napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x6f60ecfa usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0x6f6a8f68 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x6f71adbd crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x6fb11a58 ref_module +EXPORT_SYMBOL_GPL vmlinux 0x6fc259a5 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6fe5318d pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ff72da4 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x70201233 unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x702fcb07 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x702ffb9a da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x706b5285 dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0x70705c1e da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x707f40f3 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x708d24e4 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x709e66f2 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70cce8d0 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70d499ee regmap_fields_write +EXPORT_SYMBOL_GPL vmlinux 0x70f5c40b gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x71282eb4 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x712a81b9 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x7141464c dax_clear_blocks +EXPORT_SYMBOL_GPL vmlinux 0x714caa7c pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x7150137a pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x7157e281 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x716b461c fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x716e73b3 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x717c0a03 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x719311b8 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x7195bd91 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71a5f0e1 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x71bfa0b1 crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71ef0517 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x721a2387 usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0x72515d5a snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x725cdc01 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x728b49f1 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x72acd05f acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0x72cf714d klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x72ea884e devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x73013896 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type +EXPORT_SYMBOL_GPL vmlinux 0x73481239 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x734ab4d3 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0x734f0276 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x734f2f4f acpi_dev_gpio_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x7351580b ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x738fd248 intel_msic_reg_update +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x73ced25f sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0x73d3efbd pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73ddbe07 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x74097414 blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0x74243cf2 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x7429ba2a sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini +EXPORT_SYMBOL_GPL vmlinux 0x744e3a9c pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7468b74e __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x747306f4 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7476946a devres_find +EXPORT_SYMBOL_GPL vmlinux 0x747dc7a2 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x747f70f7 acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0x74829f22 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x74910f8c irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x74a2b616 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74b9f79b hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74c011c0 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x74c03311 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x74c08941 kvm_async_pf_task_wake +EXPORT_SYMBOL_GPL vmlinux 0x74c58efb screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x74d007c2 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x74d3d5cc pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x74d4e128 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x74deb10c used_vectors +EXPORT_SYMBOL_GPL vmlinux 0x74fab285 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x750608e6 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x750786f1 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x75189813 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x751b3fd1 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x752d9fd9 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x753a7087 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x7562de64 iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0x75899ad5 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x75b057bc ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x75b23a94 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x75b63089 crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x75c2b9f1 memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75d5f1c0 wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0x75e0eb99 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x7609c8c8 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x761905c1 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x7632b8f8 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x7646a633 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x76597668 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x7677d668 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x768d7d92 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x7693c646 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x76b02fe7 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x76cdefe3 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76df2183 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x76e3bce6 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x770cf981 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7716fc28 devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x77274d72 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x773c8ba2 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x77427e90 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x7749f87d wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x775a6ef5 kvm_read_and_reset_pf_reason +EXPORT_SYMBOL_GPL vmlinux 0x778593d5 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x77861d63 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x778b675a pmc_atom_write +EXPORT_SYMBOL_GPL vmlinux 0x7790adc0 aout_dump_debugregs +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77d1dee2 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x77d2793e regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x77eb63c6 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x77fd387d usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x78151326 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x7828751d pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x783496ba hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x78575bee atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x785cf1c3 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x7874b5ec unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x788def07 blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0x78915e3c acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78e16ecb fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0x78e285a6 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x78e84890 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x78eaaab0 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x79005563 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x7908f381 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x793187e8 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x7957f43e nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x796bcefe pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x798f0114 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss +EXPORT_SYMBOL_GPL vmlinux 0x7993b4ae blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x7996d1fa xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0x7998bd4d pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x79a3c602 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x79a6ec76 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x79a71c48 kernel_stack_pointer +EXPORT_SYMBOL_GPL vmlinux 0x79af53fb ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x79b572a7 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x79dc2b5b devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped +EXPORT_SYMBOL_GPL vmlinux 0x79effe3b sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x79f2e354 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7a093833 set_memory_array_wt +EXPORT_SYMBOL_GPL vmlinux 0x7a2dcd1f io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x7a4caf21 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x7a6a48c6 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7a6bdde1 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x7a738335 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x7a836e59 __sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x7a940304 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a98496c __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x7a9d5097 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x7ab4b49a dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x7abb0cc4 pwm_enable +EXPORT_SYMBOL_GPL vmlinux 0x7ac0861b regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7ac8e5b0 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x7aefed21 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x7b0affe9 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b1a5cdb dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x7b1a8987 default_iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b1d7087 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x7b202401 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x7b2ead11 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x7b3926c5 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x7b3ab781 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x7b45dfe2 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x7b4861a3 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x7b52db44 tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x7b549f26 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7b5f5560 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x7b6388be __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x7b7b9892 regulator_can_change_voltage +EXPORT_SYMBOL_GPL vmlinux 0x7b89b899 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7bd8ab03 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x7bff4171 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x7c3f1830 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7c526b06 securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0x7c5f8ad8 fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0x7c968c71 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7cae3568 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x7cc79872 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cde5320 crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d03ab23 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x7d170199 acpi_subsys_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x7d2f929d pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x7d38af40 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d5bbdba devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x7d79f647 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x7d8730e0 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x7d9785ca devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x7d9c2402 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7dc02e02 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0x7e1d4050 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x7e202390 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x7e28a395 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x7e50800e dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x7e5377d3 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x7e58d18a blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e6a086d dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x7e6f8bff sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7ea942d7 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x7ec6ba16 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x7ecbea3f vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x7ed0dd61 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x7eefb4bc platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x7f175b79 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x7f1bb6da __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature +EXPORT_SYMBOL_GPL vmlinux 0x7f2ba015 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x7f32287d pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0x7f369586 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x7f36fa30 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x7f3ec087 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x7f49231b ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x7f5516ec ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x7f56da1d regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x7f76c044 spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f8c05ea fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x7f99b200 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x7fab3963 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fd1d020 component_master_add_child +EXPORT_SYMBOL_GPL vmlinux 0x800a21f8 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x800ef339 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x801bf6b8 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x804a4d97 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x8054d0ff __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x8087ea40 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x8088a3e6 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x809529fd alloc_iova +EXPORT_SYMBOL_GPL vmlinux 0x80b6f59d rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x80b8e8f3 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80ef5c01 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x80f8589f trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x80f90934 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x81109e3b rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x8137e01a reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0x8141d33b blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x816fa3db fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0x8171b6c7 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x81742f74 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x819a0d8b map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x81aa5e16 __online_page_increment_counters +EXPORT_SYMBOL_GPL vmlinux 0x81ce4ca3 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x81d525f6 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x81d702fc serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x81d832c5 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x820e4f02 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x822ad4c7 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x828c8376 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x82978442 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x829ab4c4 bpf_prog_realloc +EXPORT_SYMBOL_GPL vmlinux 0x82ce18a1 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82dbec19 erst_write +EXPORT_SYMBOL_GPL vmlinux 0x82de236b disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x8349d798 xen_swiotlb_set_dma_mask +EXPORT_SYMBOL_GPL vmlinux 0x834c4ee0 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x835fb384 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x836666ce alarm_init +EXPORT_SYMBOL_GPL vmlinux 0x83880269 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x8395b14d pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x83ba5fbb hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x83d4fff9 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x83d8c217 phy_init +EXPORT_SYMBOL_GPL vmlinux 0x84060df9 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x84089092 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x840cb91b crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x840de5be nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x842f3a92 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x845289b1 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x845da564 spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0x8462bdcf btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x846c4778 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x84af9f7c ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84b48201 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x84d5e9be swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0x84e839a9 acpi_os_unmap_iomem +EXPORT_SYMBOL_GPL vmlinux 0x84f06176 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x84f3e39e usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850a6e78 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x850aa5ff xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x852d898e rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x853be66a tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x858737ec fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x85942773 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x859e9910 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0x85b36e69 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85cb2c45 xen_has_pv_devices +EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq +EXPORT_SYMBOL_GPL vmlinux 0x85e435b1 usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x85e87439 gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0x8606150f dbs_check_cpu +EXPORT_SYMBOL_GPL vmlinux 0x860ef4d7 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x86186ae0 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8644ae91 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x864b2081 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x8652110e pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x8654be58 hv_remove_vmbus_irq +EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x867a1f61 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x86819bc6 irq_ts_restore +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x86931fa6 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x86a1f6e1 blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0x86a51007 gnttab_end_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x86c05747 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x86ce43e6 regmap_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x86faddca raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared +EXPORT_SYMBOL_GPL vmlinux 0x87148b0b dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x873188b9 usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0x87338d7d kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x8759ac8e __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x87609ae3 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x878fa01d adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x87cba151 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x8800449a __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x88136838 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8829314c rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x8831f8b1 kmap_atomic_pfn +EXPORT_SYMBOL_GPL vmlinux 0x883631c7 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x88377fe8 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x883e6999 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x884acfed debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x88598a00 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x889965bd usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x88a9a411 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88aef35f virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x88b14fc7 xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88ba1c93 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x88c3308b agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0x8902641c xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +EXPORT_SYMBOL_GPL vmlinux 0x891d1b26 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x892757f1 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x8948b25e rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x894f6a0f clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x8956aeae apei_exec_ctx_init +EXPORT_SYMBOL_GPL vmlinux 0x89920570 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x89b23532 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x89b3c503 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89dffc67 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x89f6bd87 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x8a08c1a6 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x8a14687e sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x8a1c641e ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x8a559846 gnttab_setup_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod +EXPORT_SYMBOL_GPL vmlinux 0x8a5f86ce fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x8a78989f irq_from_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control +EXPORT_SYMBOL_GPL vmlinux 0x8a82f318 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x8a9d6752 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8adfa98c devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8ae9bfc2 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x8aef463d led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x8b04668e bind_interdomain_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x8b094aae devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b208a09 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x8b39f108 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x8b9c4495 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0x8b9e2f8b apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x8ba3dd1e devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x8baf62e7 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x8bb6908e crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x8bb947e8 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x8bc41382 fpu__restore +EXPORT_SYMBOL_GPL vmlinux 0x8be5bad0 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x8bee468f wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c06a108 xenbus_transaction_start +EXPORT_SYMBOL_GPL vmlinux 0x8c0e6f81 ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x8c31c83d pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c88700b nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x8c9d1661 arch_phys_wc_index +EXPORT_SYMBOL_GPL vmlinux 0x8ca97a33 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params +EXPORT_SYMBOL_GPL vmlinux 0x8cd9f935 setup_APIC_eilvt +EXPORT_SYMBOL_GPL vmlinux 0x8ce677ab kick_process +EXPORT_SYMBOL_GPL vmlinux 0x8cf3f3eb usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d2ca103 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x8d3b091c platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x8d522714 __rcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x8d58ea2f isa_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x8d6e4cd6 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x8d796fb3 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x8d888b87 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x8d91d882 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x8dcae1ae pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x8dd2eedd bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x8df7d6d1 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x8e1c5f7f __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e374355 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0x8e5734a7 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x8e7dd186 wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0x8eadeb7d perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8ee2ea2b pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x8ef10d67 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f34faec ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x8f3e6f81 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x8f463be4 acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8f5b6f98 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f6f888f l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x8fc8a2f7 __nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x8fe351d9 i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0x8feed925 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0x8ffbd14c irqd_cfg +EXPORT_SYMBOL_GPL vmlinux 0x9009602a acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x90125184 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x901cad95 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x9022d5bc memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x90336d03 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x903bb65b acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0x9047c11a trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x9069e663 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x90739f7b vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x907ed819 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x907eece1 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x909ad507 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90b5c7da regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify +EXPORT_SYMBOL_GPL vmlinux 0x90e0a6e1 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x90e6f074 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x9130efc5 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x9133b97e nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x91548a3e bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x915d27a3 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x916773ba iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x916cdf51 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x9182fdb8 cpufreq_governor_dbs +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x91933cf2 device_add +EXPORT_SYMBOL_GPL vmlinux 0x91b25186 regmap_fields_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x91c159e7 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91cdc4a0 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x91d7807f usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0x91de4dcd cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x91ef4444 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x920ba18c devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x920c33d9 usb_string +EXPORT_SYMBOL_GPL vmlinux 0x923fa9a8 extcon_unregister_interest +EXPORT_SYMBOL_GPL vmlinux 0x924929b8 smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x924d50c7 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0x92625b26 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x9277ba55 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x928e947d wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x9293c45a usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x9298086f irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x92b16145 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x92c5cfa4 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92de65bb devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x92e18acd rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x92f1db7e dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x92f6e4b6 __ktime_divns +EXPORT_SYMBOL_GPL vmlinux 0x9307a711 regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x930f5f14 acpi_dev_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x9312d80e evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x9317360d reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x931d6540 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x9364a3b2 xen_swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x9380766a devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x93b67114 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x93bf2fcd __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x93c8cecb gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x93f8d9e8 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x942e8c16 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x9432b036 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event +EXPORT_SYMBOL_GPL vmlinux 0x945afd2e sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x945b0a66 iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0x945cca62 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x945edcb4 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x948fa19f ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0x94c318be apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x950bb621 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x95270c0c tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x95381b1d spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x957ba439 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x9584ef08 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x958a3feb __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x95a06339 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95bcfdbd rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x96046076 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x962275e7 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x96471589 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x9647a408 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x964add15 xenbus_scanf +EXPORT_SYMBOL_GPL vmlinux 0x964b4162 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x965688b0 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x96598ced __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x96805dc2 ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x96b3d542 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x96b80fa7 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x96b9dbb6 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x96c35b87 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x96d93305 xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0x96dc40d1 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x96e1abc5 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x96ec64a8 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x96f91d52 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x970ab832 __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x97296e2e devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x973ab8ad cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0x973cde56 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x9769b7c4 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x9782d86c regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x97843d97 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x978c2b18 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x97af31a4 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x97b71bec usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97df42f8 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x97e41db1 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x98067590 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x980c63de acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x98468bd9 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x984bc32e tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9852e685 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9894951e kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0x989eb047 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x98ca73a5 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x98e3cf25 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on +EXPORT_SYMBOL_GPL vmlinux 0x99088155 smp_ops +EXPORT_SYMBOL_GPL vmlinux 0x9909f234 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x9914ca55 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x991e65a9 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x99336e13 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x994f5da9 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x99535f1b sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x99576d8a shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x99694e65 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x996b96f2 ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x9973add9 __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x99a6663d devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x99b182c7 spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99ce0592 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x99dc903e rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x99e00bf7 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x99fa4c43 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x9a080881 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x9a10da89 __tracepoint_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a127dc3 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x9a173773 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x9a1edf9a __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x9a2d10c8 device_add_property_set +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9a92866f ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9a92b43f rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x9aa5fe9b __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x9aafb2b7 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x9ab13028 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ad73dfc wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9afdfb43 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x9b09e498 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x9b25030f xen_swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0x9b473e01 tpm2_startup +EXPORT_SYMBOL_GPL vmlinux 0x9b4da354 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x9b51eecc unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x9b5240fb max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x9b720312 acpi_target_system_state +EXPORT_SYMBOL_GPL vmlinux 0x9b7e554f __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x9b888b01 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x9b8d3ec1 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus +EXPORT_SYMBOL_GPL vmlinux 0x9ba926fe usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x9bad683f mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9bd72b78 apei_write +EXPORT_SYMBOL_GPL vmlinux 0x9be233d5 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x9be3a239 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9c09dc5c nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x9c10b6d2 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9c12fbde subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x9c1b4234 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x9c1ef578 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x9c265dd9 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x9c26d82a debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x9c2ba736 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x9c2e4b66 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x9c347c07 iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0x9c3ff0d2 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x9c462261 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x9c69ad6c devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x9c850a57 tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x9c87e9a8 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x9ca2a7c0 xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0x9cb297cf fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x9cb7bb39 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cd9f36d acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0x9cff4a46 x509_request_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x9d06688b register_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x9d1cdc0d tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x9d21b269 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x9d2e45bc rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x9d310893 nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x9d374f3f regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x9d3850e1 gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x9d452f87 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x9d62c898 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x9d67eaa3 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported +EXPORT_SYMBOL_GPL vmlinux 0x9dbc0b17 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0x9dc7262b sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x9de9e1e5 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x9e089ee2 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x9e365915 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e593bff xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x9ebff902 start_thread +EXPORT_SYMBOL_GPL vmlinux 0x9ec261dd spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x9ec31990 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ee0f933 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x9f01069e is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0x9f675415 rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0x9f681a1d param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x9fad2bb5 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x9fb6e64c flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fdd3751 thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0x9fe25e30 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9fee92c1 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x9ffff24f inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xa00ec0d0 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0xa0208e02 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xa0268ba6 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0xa04613d8 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0xa04a12df ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0xa06c9ffa kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0xa0703264 xen_swiotlb_sync_single_for_device +EXPORT_SYMBOL_GPL vmlinux 0xa073d0ef rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0xa074f151 intel_scu_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa08e3729 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xa0c2f0c9 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type +EXPORT_SYMBOL_GPL vmlinux 0xa11b55b2 xen_start_info +EXPORT_SYMBOL_GPL vmlinux 0xa14a1817 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa1612cdf inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa19ad23d cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0xa1a9c311 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xa1ac2ec4 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xa1d0218c clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0xa1ddc4e2 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0xa1e635a5 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xa1f79553 xen_create_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0xa1fc789e regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xa202d5aa md_stop +EXPORT_SYMBOL_GPL vmlinux 0xa2282b0b user_read +EXPORT_SYMBOL_GPL vmlinux 0xa2335c37 pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa270eefc blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0xa29e59b9 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0xa2b9c993 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xa2ba051d rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2c0f1f3 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0xa2c7be24 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0xa2d4a00b kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xa2d82abb add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0xa2e4d38b i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0xa2ec45df ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xa2f02fd4 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0xa3003eac sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xa32e6fe4 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xa32f60d9 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xa33143e0 pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0xa33d8eae tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0xa353fffc xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xa35642a7 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0xa3589d02 nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0xa35b8100 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa38d3e5c __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0xa39f2647 regmap_update_bits_check_async +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3be299f cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0xa3e58789 efivar_validate +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa42b53b5 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0xa4353ed3 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xa448749f dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0xa452c297 hpet_mask_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq +EXPORT_SYMBOL_GPL vmlinux 0xa466de38 acpi_processor_ffh_cstate_enter +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa48620b2 devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xa48a1a6c tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xa4a71c35 xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0xa4b058d7 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa4d59eac __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xa4d9e374 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xa4db32b6 devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xa4e65c54 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0xa4f9072f nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xa4fb3089 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0xa4fde321 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xa5109640 efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0xa52d2085 arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xa53b241e crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xa54f9da8 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0xa5a1e594 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xa5a5603e fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0xa5db738d perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xa5dfd322 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5f94df5 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xa60c7f79 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa62892c6 efivar_sysfs_list +EXPORT_SYMBOL_GPL vmlinux 0xa6620bfe iommu_present +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa7454122 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0xa7701a65 crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0xa771bf98 crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0xa78b710e blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0xa799b609 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0xa7afa64e bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0xa7b74e43 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0xa7e3fff7 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa7e5c066 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xa7ec957f cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0xa7f09630 nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xa7fae3cb alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xa801b359 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0xa81bd685 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xa84c38d9 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa88c0366 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0xa89baeb0 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8b798b3 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0xa8c2eb1a pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0xa8d80ab2 rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xa90497c4 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xa9078e1d usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xa911b4e9 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa9143342 find_iova +EXPORT_SYMBOL_GPL vmlinux 0xa91f0554 tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0xa9218877 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa94430bb bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xa9648a87 trace_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xa973481a pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0xa979a04e gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xa98f9974 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xa993926c sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0xa9b5e470 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0xa9c41064 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xa9d53d01 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9e87c68 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xaa0ce2e5 blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0xaa14f2ae xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0xaa15f525 gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0xaa2883ef devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0xaa3fed0c ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0xaa64891b device_store_int +EXPORT_SYMBOL_GPL vmlinux 0xaa6b130f vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0xaa8833b2 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0xaa8e6735 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaaa9e0a6 regmap_write_bits +EXPORT_SYMBOL_GPL vmlinux 0xaaaadf79 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0xaabcc740 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xaacb5efb pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xaae0a711 led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0xaae6b37d __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xaaf93177 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xaafe8ad1 pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xab01acbe gnttab_request_free_callback +EXPORT_SYMBOL_GPL vmlinux 0xab132bc3 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0xab1e18e2 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xab2fc6cd pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xab3cbe7e led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0xab585c21 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del +EXPORT_SYMBOL_GPL vmlinux 0xab652e56 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab78b7e8 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xab79f164 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0xab945a16 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xab9e45b9 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0xaba4c807 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabe36beb nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xabe9181b ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xabf7ffae pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xabfbef82 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xac00c4fe iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0xac1d8384 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xac205c9f __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xac2ba4f5 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xac39616d pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xac665888 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0xac7a4b44 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0xac90ee44 spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0xac9ce195 kvm_async_pf_task_wait +EXPORT_SYMBOL_GPL vmlinux 0xacafa8e7 vector_used_by_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xacb2915b led_init_core +EXPORT_SYMBOL_GPL vmlinux 0xacd8f65a usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xad0aff93 clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xad12cb82 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0xad2045a1 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xad3a8df1 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xad3ba0da tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xad4e00d0 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xad4e1032 xen_swiotlb_map_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0xad629773 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0xad8098fe gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0xad8d8ab0 xen_physdev_op_compat +EXPORT_SYMBOL_GPL vmlinux 0xada2e6e0 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0xada50f7d attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xadd14114 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xadd82be0 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xadf031c2 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xae03e49f tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xae29e0b6 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae6d856e bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae81d0f2 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0xae838882 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0xae8737a3 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0xae9348b7 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0xaeab8935 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0xaec80c0f blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0xaee1046a regmap_field_write +EXPORT_SYMBOL_GPL vmlinux 0xaf052966 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xaf0b72e4 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0xaf1d8cfc sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xaf32d743 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xaf3edfa7 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xaf4cd6d3 acpi_os_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xaf5d1007 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xaf635800 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xaf6fddfd sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xaf9439db leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xafcb13c1 __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xafcbdacd dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xafda4bb9 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xafdc265a device_register +EXPORT_SYMBOL_GPL vmlinux 0xafddb4a0 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xb00b0153 acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xb02a4a2f clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xb0500c68 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0xb055bf16 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xb0663bd1 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb08616b2 efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0xb0a03686 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0bce4f0 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xb0c50ac2 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xb118bddc sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0xb137fc8b wm8400_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb150da09 pin_is_valid +EXPORT_SYMBOL_GPL vmlinux 0xb15cd9f1 pwm_set_polarity +EXPORT_SYMBOL_GPL vmlinux 0xb172ffac efivars_sysfs_init +EXPORT_SYMBOL_GPL vmlinux 0xb173b650 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb1875a5c inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0xb190d8f0 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0xb1928dda pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xb1a5f2fe usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xb1c1fcb8 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0xb1cbf19f usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0xb1d5cd99 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1e5f63a mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0xb1f8b238 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xb1fa7c6d pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xb1ffe00e acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb23593f5 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0xb24586ba __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xb25675d3 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xb2576433 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb26ba4d6 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xb286e136 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0xb29f097a cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0xb2c7c08b devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0xb2ce8916 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0xb2d8c231 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2ffd242 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0xb308c62d ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xb30e8963 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init +EXPORT_SYMBOL_GPL vmlinux 0xb3482856 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb35934b9 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0xb3d1154e debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xb3d386cc pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xb3d8f7b5 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xb3f7b062 blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0xb40d8d8f __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xb42b9c79 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0xb453e510 acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0xb4557e67 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xb47e4a12 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0xb48ccc6b device_create +EXPORT_SYMBOL_GPL vmlinux 0xb491cafe usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xb4945cbe dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb49c1caf __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb4aae4da fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4be311f ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xb4ca78a1 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0xb4cd0f69 xen_swiotlb_dma_mapping_error +EXPORT_SYMBOL_GPL vmlinux 0xb4d94e8d max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0xb4d9bdcf devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0xb4dc214d cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xb4e14553 gnttab_query_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb4e52ef8 crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4ef2a99 shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0xb51545d3 dma_request_slave_channel_reason +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb53e92a9 nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xb5492629 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xb54d40db cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xb55016ce xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xb57ce96e rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xb57da8ae dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb5934d14 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5bb6a80 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xb5d2b335 clk_gpio_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xb5e65982 tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xb5e896fb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb605dbc5 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0xb606d593 bpf_prog_get +EXPORT_SYMBOL_GPL vmlinux 0xb617ab18 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xb6230f1f gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb640438a trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0xb663789d dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xb66421b2 acpi_str_to_uuid +EXPORT_SYMBOL_GPL vmlinux 0xb66f4013 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6bc49a9 __supported_pte_mask +EXPORT_SYMBOL_GPL vmlinux 0xb6c307d1 xen_swiotlb_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xb6d904d1 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6e963c7 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0xb6fc4e61 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0xb711d130 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xb718f2f9 sfi_table_parse +EXPORT_SYMBOL_GPL vmlinux 0xb72702e4 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb736916c unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xb760ffaa ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0xb7799081 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xb79a56f4 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xb7c7f234 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xb7d6634f key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time +EXPORT_SYMBOL_GPL vmlinux 0xb7e1f7c6 fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb7fedaf3 acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0xb80e79e7 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0xb8136026 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xb81cdb73 user_update +EXPORT_SYMBOL_GPL vmlinux 0xb8382526 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xb8523ad3 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xb85e08a2 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8d3c197 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0xb92427b4 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xb92feb10 skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xb966cef5 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xb9730627 gdt_page +EXPORT_SYMBOL_GPL vmlinux 0xb99b314c skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0xb99d5837 xenbus_read +EXPORT_SYMBOL_GPL vmlinux 0xb9b02462 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9d83633 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0xb9df5c89 fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0xb9f85997 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0xba1f11d7 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba44526f pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0xba8929ea percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xba94c685 cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0xbaa59238 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xbaaee0b4 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbac53254 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xbadbd4b8 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xbade0249 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb58b814 iomap_free +EXPORT_SYMBOL_GPL vmlinux 0xbb612f8a wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0xbb7cf9cb jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info +EXPORT_SYMBOL_GPL vmlinux 0xbbcbe5c7 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xbbd4f657 xen_pcpu_id +EXPORT_SYMBOL_GPL vmlinux 0xbbde6ed2 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xbbf211db simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xbc028df6 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xbc06bafd usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xbc12f372 percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0xbc2bc46c __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xbc4217d4 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0xbc42721f pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc9938cc dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0xbc995353 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xbca0201a sfi_mrtc_array +EXPORT_SYMBOL_GPL vmlinux 0xbca537d0 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts +EXPORT_SYMBOL_GPL vmlinux 0xbcb9e2cc devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcd44dad extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbce2adff ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xbcea370e __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xbd2bb45c irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xbd2e1265 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xbd2fea07 i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd5e7828 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0xbd64679c ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xbd727d6e param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xbd7dc938 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xbd86b127 usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xbd8d80f8 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0xbd9062ab pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xbda682ca pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xbdc84c7e debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbdd5f10f apei_hest_parse +EXPORT_SYMBOL_GPL vmlinux 0xbdd6a77a securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xbdfb69a3 md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0xbdfe34ca i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe3e9176 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0xbe42c8db pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe83c095 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbeb86170 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf052bef ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0xbf065b48 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xbf088126 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xbf10959a list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xbf17fb34 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xbf1afc90 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xbf1d869b ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xbf241433 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0xbf395a7e unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xbf3d6a4f crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0xbf4bdddb perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0xbf5b7758 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0xbf5dacb9 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0xbf909a98 xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0xbf966986 mmput +EXPORT_SYMBOL_GPL vmlinux 0xbfaf8b19 intel_svm_bind_mm +EXPORT_SYMBOL_GPL vmlinux 0xbfb1be70 hv_setup_vmbus_irq +EXPORT_SYMBOL_GPL vmlinux 0xbfb4fec0 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfccd269 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0xbfd10bb7 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 +EXPORT_SYMBOL_GPL vmlinux 0xc00bd19f fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xc0275db3 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0xc02a191e virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xc02fb2b3 unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xc0709478 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc0900fcf acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0xc0a7e37d fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0d54f85 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0xc0e75cec visitor128 +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0feac5c crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xc1090b2e fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xc117247c raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0xc1239bcd get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xc1255d40 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xc12e0ada srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0xc1432573 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0xc14b1693 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xc1551799 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc159cece ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0xc164642e xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc17519f7 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0xc17d78fa cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0xc18578ed process_srcu +EXPORT_SYMBOL_GPL vmlinux 0xc1b707aa cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xc1d071f4 bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xc1d463b5 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xc1d64306 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc1dd3787 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc1e454d5 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xc1e6aecf usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xc1f3c1a8 pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xc1f3f4a2 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xc2092f56 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xc2108c84 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc22e9690 extcon_register_interest +EXPORT_SYMBOL_GPL vmlinux 0xc24089e1 nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xc24159d7 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xc2471eb2 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xc26351f8 bind_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xc275a470 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc287d96a kvm_set_posted_intr_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0xc2e4c5e9 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xc2e728dc ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xc3111bee pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0xc329b6df device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0xc32e3eaf usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0xc32e558d device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc34740c3 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xc371f845 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc3755c3d kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xc37c0531 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0xc397639f virtqueue_get_avail +EXPORT_SYMBOL_GPL vmlinux 0xc3a1f6fb usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0xc3a436b8 pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0xc3ab89f7 xen_swiotlb_dma_mmap +EXPORT_SYMBOL_GPL vmlinux 0xc3c7744f fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xc41eb08d spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc43c9740 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xc4496d53 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc45746a7 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0xc463872e nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc48aa3cb user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc4d60474 ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0xc4e27063 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0xc4fb4a19 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc504be86 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc52c93e4 register_mce_write_callback +EXPORT_SYMBOL_GPL vmlinux 0xc52dd247 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xc5301f85 blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xc5397da6 xenbus_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc559d226 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xc55e18c6 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xc56475d8 isa_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc56bc372 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc57d4a21 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0xc57d6475 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0xc58a0834 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xc5909a1f acpi_dev_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xc5a87b5a rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xc5a93cf9 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc5acb6e5 rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xc5d8e1fe gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0xc5e1de94 rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xc60e68d8 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc611ca9c ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc629b315 devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xc636a3cf devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc65ec101 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc66b5b2a cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc675c3e4 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xc677fcd4 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6c6d2c7 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xc7002ac4 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc71af6b3 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xc7243be9 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0xc7248865 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc7422387 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc76eeef2 acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xc7800950 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xc789ed32 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a2b733 xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0xc7a34a7e wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0xc7b634e7 put_pid +EXPORT_SYMBOL_GPL vmlinux 0xc7c1f875 percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7ec22a0 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xc80325e1 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0xc803515e ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xc80fd3f3 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0xc81b765d put_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xc8295b48 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xc83dbcbb hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xc844e23e device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xc850fcdf rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0xc85d63ad sock_update_netprioidx +EXPORT_SYMBOL_GPL vmlinux 0xc86bfac3 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc87e2d7a sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event +EXPORT_SYMBOL_GPL vmlinux 0xc8907ca1 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xc8a8e447 crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8cbbf42 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc8e5f591 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xc8edd5a4 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0xc904c78c gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc918d7ef mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xc935ca76 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc967465a rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc9705eeb has_newer_microcode +EXPORT_SYMBOL_GPL vmlinux 0xc9736012 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0xc978fb09 acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xc9b87e0c ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xc9bb6442 __online_page_set_limits +EXPORT_SYMBOL_GPL vmlinux 0xc9be907f regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xc9c92267 xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9f5e701 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xca06f41f __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0xca127d0c __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xca318d1c crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xca35884f __online_page_free +EXPORT_SYMBOL_GPL vmlinux 0xca3dd424 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xca445d58 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca81ea9a xenbus_transaction_end +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcac23350 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xcac75b7f rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcacec30c security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xcaf38c5e ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xcb4d4e99 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xcb51b8f7 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xcb76fc6d rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0xcb87014a ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0xcba4f1d8 flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xcbb1445a pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xcbbee1a5 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xcbd48c3f hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xcbd80818 xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0xcbdf8cb0 xen_swiotlb_unmap_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcbf26374 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0xcc095948 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xcc0e559f gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xcc2ff140 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xcc54890d inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccea4e34 perf_get_x86_pmu_capability +EXPORT_SYMBOL_GPL vmlinux 0xcced0d0e devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xccefa6d1 cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0xccfce041 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0xccffeb2f __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xcd0b3b80 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xcd0f2b99 xen_swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0xcd1516df register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xcd29c655 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xcd31af39 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xcd437cde pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xcd5d4ef9 btree_update +EXPORT_SYMBOL_GPL vmlinux 0xcd6290c5 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xcd64662b cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xcd8ffa10 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcdb532e6 skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcde34ce3 add_memory_resource +EXPORT_SYMBOL_GPL vmlinux 0xcdf18dd9 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xce03ee18 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xce0f2680 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xce12d037 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0xce34b536 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0xce5f013f sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce7fbb0e devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xcec67374 irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xceeb9ca3 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xcef1dd0e perf_check_microcode +EXPORT_SYMBOL_GPL vmlinux 0xcef81d04 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf65ca4d usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xcf867ad2 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcfa0805a cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfc04819 fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcfc602ca usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfc75cd8 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0xcfc7858e wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0xcfd415dd thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0xcfd514ec hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcfd7b454 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xcfd9f717 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xcfe8e6a3 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcff7c918 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xcff9a69d dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate +EXPORT_SYMBOL_GPL vmlinux 0xd059b50e pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd07964dd apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xd0913a6f l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0xd0962d3a extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd09ad085 arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0ca9143 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xd0d0287b device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xd0d95dde xen_swiotlb_sync_sg_for_device +EXPORT_SYMBOL_GPL vmlinux 0xd0f6f21f regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xd0f9eea5 klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xd133efbb pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xd146f329 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xd1507e59 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd17008fe pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xd17da654 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xd18a75f1 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xd1e0e571 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xd1e65fd4 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd1fbe389 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd21c32c2 __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xd2249d03 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0xd226906e transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xd23122f0 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0xd2494639 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xd2536d45 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xd254942a regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd28285ef power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd29ebbb5 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0xd2aaeb4e kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xd2bdca65 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0xd2c1db19 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xd2c31f64 cpu_tlbstate +EXPORT_SYMBOL_GPL vmlinux 0xd2c58ab2 apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0xd2d1927b hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0xd2dff01a find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2e88de5 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0xd2f18525 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xd2f7c286 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0xd317a633 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0xd320ae65 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0xd32189ea device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0xd32e34f5 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xd32eb840 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xd33257ae pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0xd338ede0 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xd35d84d1 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xd36477ee rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0xd373b73e gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0xd3797a8f device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xd3ad632d xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xd3d90583 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0xd3fb7bdd ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd40bb9c9 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0xd41dc330 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd42a5f17 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xd42f032b dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0xd445c855 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd451e873 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xd45ea32f hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0xd468c27b debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xd47c9626 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xd4b30939 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4cf632d transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xd4d90889 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xd4db0165 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xd4e312fb virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0xd4f45af5 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0xd5030f07 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xd5182ba0 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0xd521ee7a platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xd5302a44 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xd5320f5b mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xd544e902 pgprot_writecombine +EXPORT_SYMBOL_GPL vmlinux 0xd54672ba percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0xd549d5c0 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd5605a45 xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xd5621902 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xd598504d regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xd5a5b86f iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0xd5a66d28 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0xd5b85c98 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5bee148 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd6221d53 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xd632b65f efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0xd635534d user_preparse +EXPORT_SYMBOL_GPL vmlinux 0xd63bf47d PageHuge +EXPORT_SYMBOL_GPL vmlinux 0xd642a34b md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0xd647ad6b regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xd65b0b53 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd67f9603 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0xd68a630d hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xd6aa6c84 tpm2_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xd6c865b6 tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xd6d7290a tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0xd6e05bc8 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xd6ec7d35 of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xd6ed3a8e cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0xd6ee2541 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd72cb603 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd745a835 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd7533267 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xd761a481 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xd764d265 inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd77b6d90 pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd77dd7e0 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd7943f0b relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0xd795307d tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xd7aa306c kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0xd7ab2c0c speedstep_detect_processor +EXPORT_SYMBOL_GPL vmlinux 0xd7b10d80 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0xd7c48df9 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7d80a2a intel_svm_unbind_mm +EXPORT_SYMBOL_GPL vmlinux 0xd7e803d7 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0xd815cb0b ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xd81826c8 arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd8216ccc fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd822a2a9 rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0xd8250a5c iounmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0xd829eded usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xd84fd9df device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xd85fba12 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xd863681f usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0xd86a19ea debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xd86a2131 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd88b1733 extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0xd899b806 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xd8b8fee4 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0xd8c76c4b pv_info +EXPORT_SYMBOL_GPL vmlinux 0xd8f07208 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xd8fad8b0 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0xd9126042 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges +EXPORT_SYMBOL_GPL vmlinux 0xd923afae list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xd928f624 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd94b737e erst_read +EXPORT_SYMBOL_GPL vmlinux 0xd94d2cb5 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xd94fa823 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd96d900c dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd96e734b __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xd9803346 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0xd986dad1 kernel_fpu_begin +EXPORT_SYMBOL_GPL vmlinux 0xd996c93c crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xd9a8e70c thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xd9bddfb3 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0xd9cf8b67 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9f8a048 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xda15c181 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xda50c223 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0xda79f019 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xda821ea5 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xdaa03af1 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdaa74860 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdac9e0b9 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdb088cb1 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xdb0952cc inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0xdb1f2af7 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0xdb261f83 efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0xdb26c84f xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0xdb34af46 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb61b4e0 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb7cc0b3 acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdbbb3523 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0xdbdb54db driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xdbe67abc devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0xdbe9d084 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xdbf0404b shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall +EXPORT_SYMBOL_GPL vmlinux 0xdc36b10e swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0xdc516c29 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xdc60d527 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc95098e rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdca54ea9 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdcd7c49c ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xdcd8c10a cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xdcdb9961 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xdd069d07 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xdd07d768 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0xdd0ca1ac crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xdd204b09 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd32e3d0 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd3c0e9e scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0xdda90995 acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xddbbd2df ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddc17e89 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xdddf131e xenbus_grant_ring +EXPORT_SYMBOL_GPL vmlinux 0xdde10e8d unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xdde2d87c ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xddfe7094 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xde1f5e73 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xde6b323b devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xde747356 intel_msic_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xde8dd926 klist_next +EXPORT_SYMBOL_GPL vmlinux 0xde8e53ea blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0xde9463a6 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xdeabb35a agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xdec89e8f gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0xdeeec3ab crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0xdef8ec6c regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xdefd07f2 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0xdf20dc98 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xdf2a1971 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0xdf4ec976 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0xdf584f07 __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0xdf622181 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xdf66ca81 ucode_cpu_info +EXPORT_SYMBOL_GPL vmlinux 0xdf75282c inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xdf7ecd10 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xdf92ecda ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xdfadd9cc scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe027821a rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xe027c8fa __dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe04b7dfc clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xe04d59b6 fpu__activate_curr +EXPORT_SYMBOL_GPL vmlinux 0xe04df2c6 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe071fbe6 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xe0745fc4 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0xe08938e7 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0xe089bd8b pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0b6a9a3 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq +EXPORT_SYMBOL_GPL vmlinux 0xe1083ae3 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe1183e83 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xe11abdf3 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xe11c830d rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0xe121cbb6 static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0xe14feff3 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xe1746672 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe17d5fc8 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0xe1874868 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xe188b525 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xe199d83c ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe1ad5b5d crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c2d2a1 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xe1d51dde ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xe1e598d5 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xe2343d3b simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xe24a499c device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe2863029 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe2914816 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0xe29349dc copy_reserved_iova +EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe2b25158 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xe2e3ddee usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0xe2fea4a4 led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe31e3c54 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe31f851d rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe32ced51 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xe3465698 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xe34765b9 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe37653e3 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xe3781628 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xe37f8517 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xe38728cc device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xe3948ff4 acpi_walk_dep_device_list +EXPORT_SYMBOL_GPL vmlinux 0xe39781d2 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xe3b59d47 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3bda663 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe3c3b3e6 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xe3cca728 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xe41534ce bind_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0xe418fde4 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0xe41f89d5 component_master_add +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe439815c erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xe43b92c3 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0xe4686479 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4a0d7af __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xe4b6b9bb cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xe4c331b6 acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0xe4e68bc8 apei_map_generic_address +EXPORT_SYMBOL_GPL vmlinux 0xe4f233a5 extcon_set_cable_state +EXPORT_SYMBOL_GPL vmlinux 0xe4f6ec5e register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xe4ffa1ac percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe514d401 usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xe545a811 get_xsave_addr +EXPORT_SYMBOL_GPL vmlinux 0xe57b04e1 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe59f5805 xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0xe5a0579f register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xe5a5a6f2 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xe5b8082b cper_estatus_check_header +EXPORT_SYMBOL_GPL vmlinux 0xe6060185 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe62e8315 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe6306c83 tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe63df575 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0xe645ec05 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe6561037 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xe663623a usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0xe667df90 get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xe6750ea5 efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0xe68a0697 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data +EXPORT_SYMBOL_GPL vmlinux 0xe701ad82 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0xe703679f __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xe7091f66 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xe70e945e rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xe7119122 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe7632ef3 trace_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe77e0c8c __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe7a48591 posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0xe7b40b87 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xe7b867ba crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xe7c7ae37 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe7ca9c6b tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xe7dc4d47 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0xe7e3bb68 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe80f7d48 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe81ba84d fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xe81f908d usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xe81f9179 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xe82bea8f wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe8840056 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xe898832f policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0xe8d97c25 get_device +EXPORT_SYMBOL_GPL vmlinux 0xe8fb11b8 pci_get_hp_params +EXPORT_SYMBOL_GPL vmlinux 0xe90a16f6 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xe91cc036 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe981c9db cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xe9b86ebc ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xe9c0744e devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe9c255dd debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available +EXPORT_SYMBOL_GPL vmlinux 0xe9cff5c8 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9e2faca ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xe9e44bec ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea19e406 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea45886d gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xea5416b2 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xea82ab83 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xea99b795 __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0xeae56892 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0xeaf65021 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xeb1937a3 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xeb2798f7 xen_destroy_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0xeb370805 __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xeb48e5b1 blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0xeb497840 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xeb833c22 xen_has_pv_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xeba3ff7d n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xebb3592b snmp_get_cpu_field64 +EXPORT_SYMBOL_GPL vmlinux 0xebb6bc65 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xebc61165 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xebfaedb1 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xec004b24 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec488507 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0xec631f34 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0xec7170e1 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xec727cc6 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xec85afe6 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xeca8b7cf rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xecab5aef usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xecb267d8 arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0xecd2d65c irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0xed06c5cb pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xed3892d0 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xed46d26c acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0xed5392f6 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xed5ebce7 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0xed6f5427 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0xed9ce7ef inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0xedbc6f67 gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xedcdffd4 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0xedea6f15 btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0xedf39975 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xee0421ef ping_err +EXPORT_SYMBOL_GPL vmlinux 0xee1ee71f fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xee3b93ae page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee88d7b8 devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xeeac3f28 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xeeda4d85 xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0xeeed0038 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0xef064c63 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xef1e99a5 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef405cc8 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xef409b74 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef4fc0b6 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xef539417 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xef6415b6 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xef64e2ce genlmsg_new_unicast +EXPORT_SYMBOL_GPL vmlinux 0xef684b1d pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef6e0818 driver_find +EXPORT_SYMBOL_GPL vmlinux 0xef7b462b rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xefa03727 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xefa13cd2 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefa4e93f uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xefa735f3 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0xefbeee2f sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0xefd9ef09 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xf0337b8e shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf04eadec crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xf054ac97 intel_msic_irq_read +EXPORT_SYMBOL_GPL vmlinux 0xf0601a3f debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xf0655b6d queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xf0698c01 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xf06c0683 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf084c8f1 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xf094bce6 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf0956185 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xf0b2221a acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xf0c4cfa3 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0xf0c801c5 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xf0cb3e87 usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xf0eee000 wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf11d98f4 pinctrl_utils_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0xf11efce2 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xf137e0ae pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xf1496264 phy_put +EXPORT_SYMBOL_GPL vmlinux 0xf14af1ec pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xf14e1650 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xf14ea02e pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0xf150b4ba usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xf16800ae regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xf1762c3b pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0xf17dbc10 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xf17ff9eb tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf191b653 single_open_net +EXPORT_SYMBOL_GPL vmlinux 0xf19b9b24 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xf1a5226f watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xf1aca361 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf1adea8b regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1b551d9 ibft_addr +EXPORT_SYMBOL_GPL vmlinux 0xf1eafbfe acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xf2003384 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xf20ece0f tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xf2129b95 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xf2196393 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf2716145 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf2902558 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0xf291252d alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0xf2a37426 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2cf8350 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0xf2ebf8c3 xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0xf2f1d86e virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xf30fda27 lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf35bb0a6 rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xf37042ff __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf380dbba cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0xf38b3213 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b503fc irq_find_matching_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xf3c1c980 pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0xf3dd3ec1 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf3e90c5e adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf3ebf4eb arch_apei_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf429ae34 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xf43f65d5 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xf441dc41 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0xf446837f phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0xf47f618d blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0xf489512f pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0xf492f7d5 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4ae4e60 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf5012bc2 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xf50a1573 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xf5107415 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xf527fbd5 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xf5361b39 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf55abae9 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xf5619509 crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0xf5657e31 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xf5785b42 evtchn_get +EXPORT_SYMBOL_GPL vmlinux 0xf5871a31 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xf5945bac gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xf59f9264 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5dc8f0c inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xf5e0c22b ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xf60678d1 pci_msi_prepare +EXPORT_SYMBOL_GPL vmlinux 0xf60a78c4 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xf60e8554 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xf615386f percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf61c4a37 wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0xf61c4cfc netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xf62a65bc wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf6674ebd crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0xf66ecb99 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0xf6753099 device_move +EXPORT_SYMBOL_GPL vmlinux 0xf687b9d7 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xf6a4fcd9 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6f844ed rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xf6fd74cf handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0xf7016530 xenbus_gather +EXPORT_SYMBOL_GPL vmlinux 0xf76bc672 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xf770ce6c xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xf7a63b2a inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf7daadc3 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xf7fa9591 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xf80c5008 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xf80f01b1 __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0xf82a1356 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xf82e265c mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf84714fe posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xf85d1f95 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf894ba00 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xf8aec086 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xf8b79e86 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xf8de9ebd metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xf8e80bd4 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xf8e99707 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf9048ee1 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xf904e7e3 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xf9253b4b regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0xf92cda13 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf9307bc1 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf932c685 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xf945420a cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf956f6a3 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xf9765833 dmi_match +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9bae929 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xf9bdf67a dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9cbfa59 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xf9d9264e xen_have_vector_callback +EXPORT_SYMBOL_GPL vmlinux 0xf9e953d8 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched +EXPORT_SYMBOL_GPL vmlinux 0xfa4b4a94 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0xfa4ff3d9 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0xfa6764b3 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xfa6d5185 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xfa78f727 save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0xfa9e33f7 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xfabddf64 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xfabe12d7 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xfadb841f gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xfadd2eb7 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xfafaebb3 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0xfb01020f ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xfb0760f6 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0xfb25ce06 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb54427f devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xfb582919 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0xfb64b230 acpi_processor_ffh_cstate_probe +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb83db03 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xfb85760e scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xfb870d8e nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0xfb8b193f usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0xfba16ade gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbcff401 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xfbe89ad9 bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc40122f pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xfc583f0f proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0xfc968c8b apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0xfcb8ad10 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xfcb9069b raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xfcba0305 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xfccd21e7 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfcece769 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xfcf654a7 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xfd12c73b usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xfd507609 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0xfd5131f4 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0xfd51b281 gnttab_end_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xfd54c210 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xfd63a376 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0xfd6adf20 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd77d23c devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0xfdc0a996 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfdcbb464 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfdd5f736 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0xfe0c502c pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xfe1f23e3 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0xfe3742b9 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xfe63a5f0 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0xfe6b6a50 xenbus_dev_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfeabdaf4 xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xfeb1979b pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0xfeba5595 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0xfec0468d pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xfecc5c31 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfee02f24 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xff02cd62 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xff03d7f4 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff2ce747 machine_check_poll +EXPORT_SYMBOL_GPL vmlinux 0xff538458 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xff57c7c1 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff5e0ca3 __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xff64889a alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0xff676787 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xff9905d5 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xffa782cb usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xffb6f1e7 dax_fault +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0xffc42efc pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xffddaac8 phy_pm_runtime_put only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-106.129/i386/lowlatency.compiler +++ linux-raspi2-4.4.0/debian.master/abi/4.4.0-106.129/i386/lowlatency.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.5) 5.4.0 20160609 only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-106.129/i386/lowlatency.modules +++ linux-raspi2-4.4.0/debian.master/abi/4.4.0-106.129/i386/lowlatency.modules @@ -0,0 +1,4756 @@ +3c509 +3c515 +3c574_cs +3c589_cs +3c59x +3w-9xxx +3w-sas +3w-xxxx +53c700 +6lowpan +6pack +8021q +8139cp +8139too +8250_accent +8250_boca +8250_dw +8250_exar_st16c554 +8250_fintek +8250_fourport +8250_hub6 +8250_mid +8255 +8255_pci +8390 +8390p +842 +842_compress +842_decompress +88pm800 +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +BusLogic +DAC960 +NCR53c406a +a100u2w +a3d +a8293 +aacraid +aat2870-regulator +aat2870_bl +ab3100 +ab3100-otp +abituguru +abituguru3 +ablk_helper +ac97_bus +acard-ahci +acecad +acenic +acer-wmi +acerhdf +acpi-als +acpi_extlog +acpi_ipmi +acpi_pad +acpi_power_meter +acpi_thermal_rel +acpiphp_ibm +acquirewdt +act2000 +act200l-sir +act8865-regulator +act_bpf +act_connmark +act_csum +act_gact +act_ipt +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +act_vlan +actisys-sir +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5755 +ad5764 +ad5791 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7266 +ad7280a +ad7291 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7746 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad799x +ad8366 +ad9523 +ad9832 +ad9834 +ad_sigma_delta +adc128d818 +adcxx +addi_apci_1032 +addi_apci_1500 +addi_apci_1516 +addi_apci_1564 +addi_apci_16xx +addi_apci_2032 +addi_apci_2200 +addi_apci_3120 +addi_apci_3501 +addi_apci_3xxx +addi_watchdog +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adfs +adi +adis16060 +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16204 +adis16209 +adis16220 +adis16240 +adis16260 +adis16400 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1275 +adm8211 +adm9240 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adv7170 +adv7175 +adv7180 +adv7511 +adv7604 +adv7842 +adv_pci1710 +adv_pci1723 +adv_pci1724 +adv_pci_dio +advansys +advantechwdt +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +aes-i586 +aesni-intel +af-rxrpc +af9013 +af9033 +af_alg +af_key +af_packet_diag +affs +ah4 +ah6 +aha152x +aha152x_cs +aha1542 +aha1740 +ahci +ahci_platform +aic79xx +aic7xxx +aic94xx +aim_cdev +aim_network +aim_sound +aim_v4l2 +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airo +airo_cs +airspy +ak8975 +al3320a +algif_aead +algif_hash +algif_rng +algif_skcipher +ali-agp +ali-ircc +alienware-wmi +alim1535_wdt +alim7101_wdt +altera-ci +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am53c974 +ambassador +amc6821 +amd +amd-rng +amd5536udc +amd64_edac_mod +amd76x_edac +amd76xrom +amd8111e +amd_freq_sensitivity +amdgpu +amilo-rfkill +amplc_dio200 +amplc_dio200_common +amplc_dio200_pci +amplc_pc236 +amplc_pc236_common +amplc_pc263 +amplc_pci224 +amplc_pci230 +amplc_pci236 +amplc_pci263 +ams369fg06 +analog +anatop-regulator +ansi_cprng +anubis +aoe +apanel +apds9300 +apds9802als +apds990x +apds9960 +apm +apple-gmux +apple_bl +appledisplay +applesmc +appletalk +appletouch +applicom +aquantia +ar5523 +ar7part +arc-rawmode +arc-rimi +arc4 +arc_ps2 +arc_uart +arcfb +arcmsr +arcnet +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arp_tables +arpt_mangle +arptable_filter +as102_fe +as3711-regulator +as3711_bl +as3935 +as5011 +asb100 +asc7621 +ascot2e +asix +ast +asus-laptop +asus-nb-wmi +asus-wmi +asus_atk0110 +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +atbm8830 +aten +ath +ath10k_core +ath10k_pci +ath3k +ath5k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati-agp +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atlas_btns +atm +atmel +atmel_cs +atmel_mxt_ts +atmel_pci +atmtcp +atp +atp870u +atusb +atxp1 +aty128fb +atyfb +au0828 +au8522_common +au8522_decoder +au8522_dig +aufs +auo-pixcir-ts +auo_k1900fb +auo_k1901fb +auo_k190x +auth_rpcgss +authenc +authencesn +autofs4 +avm_cs +avma1_cs +avmfritz +ax25 +ax88179_178a +axnet_cs +axp20x-pek +axp20x-regulator +axp20x_usb_power +axp288_adc +axp288_charger +axp288_fuel_gauge +b1 +b1dma +b1isa +b1pci +b1pcmcia +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +bas_gigaset +batman-adv +baycom_epp +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bch +bcm-phy-lib +bcm203x +bcm3510 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm7038_wdt +bcm7xxx +bcm87xx +bcma +bcma-hcd +bd6107 +bdc +bdc_pci +be2iscsi +be2net +befs +belkin_sa +bfa +bfs +bfusb +bh1750 +bh1770glc +bh1780gli +binfmt_aout +binfmt_misc +block2mtd +blocklayoutdriver +blowfish_common +blowfish_generic +bluecard_cs +bluetooth +bluetooth_6lowpan +bma150 +bma180 +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmg160_core +bmg160_i2c +bmg160_spi +bmp085 +bmp085-i2c +bmp085-spi +bmp280 +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bnxt_en_bpo +bonding +bpa10x +bpck +bpck6 +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +br2684 +br_netfilter +brcmfmac +brcmsmac +brcmutil +brd +bridge +broadcom +broadsheetfb +bsd_comp +bt3c_cs +bt819 +bt856 +bt866 +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btqca +btrfs +btrtl +btsdio +bttv +btuart_cs +btusb +btwilink +bu21013_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c101 +c2port-duramar2150 +c4 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +cachefiles +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +caif_usb +caif_virtio +camellia_generic +can +can-bcm +can-dev +can-gw +can-raw +capi +capidrv +capmode +carl9170 +carminefb +cassini +cast5_generic +cast6_generic +cast_common +catc +cb710 +cb710-mmc +cb_das16_cs +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcimdas +cb_pcimdda +cc10001_adc +cc2520 +cc770 +cc770_isa +cc770_platform +cciss +ccm +ccp +ccp-crypto +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +ceph +cfag12864b +cfag12864bfb +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha20_generic +chacha20poly1305 +chaoskey +chipreg +chnl_net +chromeos_laptop +chromeos_pstore +ci_hdrc +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +cirrus +cirrusfb +ck804xrom +classmate-laptop +clip +clk-cdce706 +clk-palmas +clk-pwm +clk-s2mps11 +clk-si5351 +clk-twl6040 +clk-wm831x +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm36651 +cm4000_cs +cm4040_cs +cma3000_d0x +cma3000_d0x_i2c +cmac +cmdlinepart +cmtp +cnic +cobalt +cobra +coda +com20020 +com20020-isa +com20020-pci +com20020_cs +com90io +com90xx +comedi +comedi_8254 +comedi_8255 +comedi_bond +comedi_isadma +comedi_parport +comedi_pci +comedi_pcmcia +comedi_test +comedi_usb +comm +compal-laptop +configfs +contec_pci_dio +cops +cordic +core +coretemp +cosa +cp210x +cpcihp_generic +cpcihp_zt5550 +cpia2 +cpqphp +cpsw_ale +cpu-notifier-error-inject +cpu5wdt +cpuid +cr_bllcd +cramfs +crc-ccitt +crc-itu-t +crc32 +crc32-pclmul +crc7 +crc8 +cros_ec +cros_ec_devs +cros_ec_i2c +cros_ec_keyb +cros_ec_lpc +cros_ec_spi +crvml +cryptd +crypto_user +cryptoloop +cs5345 +cs53l32a +cs5535-mfd +cs553x_nand +cs89x0 +csiostor +ct82c710 +ctr +cts +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +cx18 +cx18-alsa +cx22700 +cx22702 +cx231xx +cx231xx-alsa +cx231xx-dvb +cx2341x +cx23885 +cx24110 +cx24113 +cx24116 +cx24117 +cx24120 +cx24123 +cx25821 +cx25821-alsa +cx25840 +cx82310_eth +cx88-alsa +cx88-blackbird +cx88-dvb +cx88-vp3054-i2c +cx8800 +cx8802 +cx88xx +cxacru +cxd2099 +cxd2820r +cxd2841er +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cyclades +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da9030_battery +da9034-ts +da903x +da903x_bl +da9052-battery +da9052-hwmon +da9052-regulator +da9052_bl +da9052_onkey +da9052_tsi +da9052_wdt +da9055-hwmon +da9055-regulator +da9055_onkey +da9055_wdt +da9062-core +da9062-regulator +da9062_wdt +da9063-regulator +da9063_onkey +da9063_wdt +da9150-charger +da9150-core +da9150-fg +da9150-gpadc +da9210-regulator +da9211-regulator +dac02 +daqboard2000 +das08 +das08_cs +das08_isa +das08_pci +das16 +das16m1 +das1800 +das6402 +das800 +davicom +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +dcdbas +ddbridge +de2104x +de4x5 +decnet +deflate +defxx +dell-laptop +dell-led +dell-rbtn +dell-smm-hwmon +dell-smo8800 +dell-wmi +dell-wmi-aio +dell_rbu +denali +denali_dt +denali_pci +des_generic +designware_i2s +dgap +dgnc +dht11 +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dibx000_common +digi_acceleport +diskonchip +diva_idi +diva_mnt +divacapi +divadidd +divas +dl2k +dlci +dlm +dln2 +dm-bio-prison +dm-bufio +dm-cache +dm-cache-cleaner +dm-cache-mq +dm-cache-smq +dm-crypt +dm-delay +dm-era +dm-flakey +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-verity +dm-zero +dm1105 +dm9601 +dme1737 +dmfe +dmi-sysfs +dmm32at +dmx3191d +dn_rtmsg +dnet +docg3 +docg4 +donauboe +dp83848 +dp83867 +dpt_i2o +drbd +drbg +drm +drm_kms_helper +drop_monitor +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds620 +dsbr100 +dscc4 +dss1_divert +dst +dst_ca +dstr +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x +dt3000 +dt3155 +dt9812 +dtc +dtl1_cs +dtlk +dummy +dummy-irq +dummy_stm +dvb-as102 +dvb-bt8xx +dvb-core +dvb-pll +dvb-ttpci +dvb-ttusb-budget +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-af9035 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6007 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-rtl28xxu +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dvb_usb_v2 +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_wdt +dwc3 +dwc3-pci +dwmac-generic +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +e752x_edac +e7xxx_edac +earth-pt1 +earth-pt3 +eata +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ec100 +ec_bhf +ec_sys +echainiv +echo +edac_core +edac_mce_amd +edt-ft5x06 +eeepc-laptop +eeepc-wmi +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efficeon-agp +efi-pstore +efi_test +efs +ehset +einj +elan_i2c +elo +elsa_cs +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_meta +em_nbyte +em_text +em_u32 +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +empeg +ems_pci +ems_pcmcia +ems_usb +emu10k1-gp +ena +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +ene_ir +eni +enic +epat +epia +epic100 +eql +esas2r +esb2rom +esd_usb2 +esi-sir +esp4 +esp6 +esp_scsi +et1011c +et131x +ethoc +eurotechwdt +evbug +exofs +extcon-adc-jack +extcon-arizona +extcon-axp288 +extcon-gpio +extcon-max14577 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +ezusb +f2fs +f71805f +f71808e_wdt +f71882fg +f75375s +f81232 +fakelb +fam15h_power +fan53555 +farsync +faulty +fb_agm1264k-fl +fb_bd663474 +fb_ddc +fb_hx8340bn +fb_hx8347d +fb_hx8353d +fb_hx8357d +fb_ili9163 +fb_ili9320 +fb_ili9325 +fb_ili9340 +fb_ili9341 +fb_ili9481 +fb_ili9486 +fb_pcd8544 +fb_ra8875 +fb_s6d02a1 +fb_s6d1121 +fb_ssd1289 +fb_ssd1306 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_sys_fops +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fbtft_device +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdomain_cs +fdp +fdp_i2c +fealnx +ff-memless +fintek-cir +firedtv +firestream +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fit2 +fit3 +fixed +fjes +fl512 +flexfb +floppy +fm10k +fm801-gp +fm_drv +fmc +fmc-chardev +fmc-fakedev +fmc-trivial +fmc-write-eeprom +fmvj18x_cs +fnic +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fpga-mgr +freevxfs +friq +frpw +fsa9480 +fscache +fschmd +fsl_lpuart +ft6236 +ftdi-elan +ftdi_sio +ftl +fujitsu-laptop +fujitsu-tablet +fujitsu_ts +g450_pll +g760a +g762 +g_NCR5380 +g_NCR5380_mmio +g_acm_ms +g_audio +g_cdc +g_dbgp +g_ether +g_ffs +g_hid +g_mass_storage +g_midi +g_ncm +g_nokia +g_printer +g_serial +g_webcam +g_zero +gadgetfs +gamecon +gameport +garmin_gps +garp +gcm +gdmtty +gdmulte +gdmwm +gdth +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +gennvm +geode-aes +geode-rng +gf128mul +gf2k +gfs2 +ghash-generic +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +glue_helper +gluebi +gma500_gfx +go7007 +go7007-loader +go7007-usb +goku_udc +goodix +gp2ap002a00f +gp2ap020a00f +gpio +gpio-104-idio-16 +gpio-addr-flash +gpio-adp5520 +gpio-adp5588 +gpio-amd8111 +gpio-amdpt +gpio-arizona +gpio-beeper +gpio-charger +gpio-crystalcove +gpio-cs5535 +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-f7188x +gpio-fan +gpio-generic +gpio-ich +gpio-ir-recv +gpio-it87 +gpio-janz-ttl +gpio-kempld +gpio-lp3943 +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-mc33880 +gpio-mcp23s08 +gpio-ml-ioh +gpio-pca953x +gpio-pcf857x +gpio-pch +gpio-rdc321x +gpio-regulator +gpio-sch +gpio-sch311x +gpio-tps65912 +gpio-twl4030 +gpio-twl6040 +gpio-ucb1400 +gpio-viperboard +gpio-vx855 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio_backlight +gpio_keys +gpio_keys_polled +gpio_mouse +gpio_tilt_polled +gr_udc +grace +gre +grip +grip_mp +gs_fpga +gs_usb +gsc_hpdi +gspca_benq +gspca_conex +gspca_cpia1 +gspca_dtcs033 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_jl2005bcd +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stk1135 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_touptek +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtco +guillemot +gunze +gx-suspmod +gx1fb +gxfb +gxt4500 +hackrf +hamachi +hampshire +hangcheck-timer +hanwang +hci +hci_uart +hci_vhci +hdaps +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcdrv +hdm_dim2 +hdm_i2c +hdm_usb +hdpvr +he +hecubafb +hexium_gemini +hexium_orion +hfc4s8s_l1 +hfc_usb +hfcmulti +hfcpci +hfcsusb +hfs +hfsplus +hgafb +hi8435 +hid +hid-a4tech +hid-alps +hid-apple +hid-appleir +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-cherry +hid-chicony +hid-corsair +hid-cp2112 +hid-cypress +hid-dr +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-hyperv +hid-icade +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-lenovo +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-primax +hid-prodikeys +hid-rmi +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-isku +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-konepure +hid-roccat-kovaplus +hid-roccat-lua +hid-roccat-pyra +hid-roccat-ryos +hid-roccat-savu +hid-saitek +hid-samsung +hid-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steelseries +hid-sunplus +hid-thingm +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hidp +hih6130 +hio +hisax +hisax_fcpcipnp +hisax_isac +hisax_st5481 +hisi504_nand +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hopper +horizon +horus3a +hostap +hostap_cs +hostap_pci +hostap_plx +hostess_sv11 +hp-wireless +hp-wmi +hp100 +hp_accel +hpfs +hpilo +hpsa +hptiop +hpwdt +hsi +hsi_char +hso +hsr +hsu_dma +hsu_dma_pci +htc-pasic3 +htcpen +hts221 +hts221_i2c +hts221_spi +htu21 +huawei_cdc_ncm +hv_balloon +hv_netvsc +hv_storvsc +hv_utils +hv_vmbus +hwa-hc +hwa-rc +hwmon-vid +hx8357 +hyperv-keyboard +hyperv_fb +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd756-s4882 +i2c-amd8111 +i2c-cbus-gpio +i2c-cros-ec-tunnel +i2c-designware-core +i2c-designware-pci +i2c-designware-platform +i2c-diolan-u2c +i2c-dln2 +i2c-eg20t +i2c-emev2 +i2c-gpio +i2c-hid +i2c-i801 +i2c-isch +i2c-ismt +i2c-kempld +i2c-matroxfb +i2c-mux +i2c-mux-gpio +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-pinctrl +i2c-mux-reg +i2c-nforce2 +i2c-nforce2-s4985 +i2c-ocores +i2c-parport +i2c-parport-light +i2c-pca-isa +i2c-pca-platform +i2c-piix4 +i2c-robotfuzz-osif +i2c-scmi +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-smbus +i2c-stub +i2c-taos-evm +i2c-tiny-usb +i2c-via +i2c-viapro +i2c-viperboard +i2c-xiic +i3000_edac +i3200_edac +i40e +i40evf +i5000_edac +i5100_edac +i5400_edac +i5500_temp +i5k_amb +i6300esb +i7300_edac +i740fb +i7core_edac +i810fb +i82092 +i82365 +i82860_edac +i82875p_edac +i82975x_edac +i915 +i915_bpo +iTCO_vendor_support +iTCO_wdt +ib700wdt +ib_addr +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mad +ib_mthca +ib_sa +ib_srp +ib_srpt +ib_ucm +ib_umad +ib_uverbs +ibm_rtl +ibmaem +ibmasm +ibmasr +ibmpex +ibmphp +ichxrom +icn +icp_multi +icplus +ics932s401 +ideapad-laptop +ideapad_slidebar +idma64 +idmouse +idt77252 +idt_gen2 +idtcps +ie31200_edac +ie6xx_wdt +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +iforce +igb +igbvf +igorplugusb +iguanair +ii_pci20kc +iio-trig-interrupt +iio-trig-periodic-rtc +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili922x +ili9320 +imm +imon +ims-pcu +imx074 +in2000 +ina209 +ina2xx +industrialio +industrialio-buffer-cb +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +input-polldev +int3400_thermal +int3402_thermal +int3403_thermal +int340x_thermal_zone +int51x1 +intel-hid +intel-lpss +intel-lpss-acpi +intel-lpss-pci +intel-mid-touch +intel-mid_wdt +intel-rng +intel-rst +intel-smartconnect +intel-vbtn +intel_ips +intel_menlow +intel_mid_battery +intel_mid_powerbtn +intel_mid_thermal +intel_oaktrail +intel_pch_thermal +intel_pmc_ipc +intel_powerclamp +intel_punit_ipc +intel_qat +intel_quark_i2c_gpio +intel_rapl +intel_scu_ipcutil +intel_soc_dts_iosf +intel_soc_dts_thermal +intel_th +intel_th_gth +intel_th_msu +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +intelfb +interact +interval_tree_test +inv-mpu6050 +io_edgeport +io_ti +ioc4 +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_MASQUERADE +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_tunnel +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_wlc +ip_vs_wrr +ip_vti +ipack +ipaq +ipcomp +ipcomp6 +ipddp +iphase +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +ipr +ips +ipt_CLUSTERIP +ipt_ECN +ipt_MASQUERADE +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipw +ipw2100 +ipw2200 +ipwireless +ipx +ir-hix5hd2 +ir-jvc-decoder +ir-kbd-i2c +ir-lirc-codec +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-usb +ir-xmp-decoder +ircomm +ircomm-tty +irda +irda-usb +iris +irlan +irnet +irqbypass +irtty-sir +isci +iscsi_boot_sysfs +iscsi_ibft +iscsi_target_mod +iscsi_tcp +isdn +isdn_bsdcomp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl9305 +isofs +isp116x-hcd +isp1362-hcd +isp1704_charger +isp1760 +it87 +it8712f_wdt +it87_wdt +it913x +itd1000 +ite-cir +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_c2 +iw_cm +iw_cxgb3 +iw_cxgb4 +iw_nes +iwl3945 +iwl4965 +iwldvm +iwlegacy +iwlmvm +iwlwifi +ix2505v +ixgb +ixgbe +ixgbevf +janz-cmodio +janz-ican3 +jc42 +jedec_probe +jffs2 +jfs +jitterentropy_rng +jmb38x_ms +jme +joydev +joydump +jr3_pci +jsa1212 +jsm +k10temp +k8temp +kafs +kalmia +kaweth +kb3886_bl +kbic +kbtab +kcomedilib +ke_counter +kempld-core +kempld_wdt +kernelcapi +keyspan +keyspan_pda +keyspan_remote +keywrap +kfifo_buf +khazad +kingsun-sir +kl5kusb105 +kmx61 +kobil_sct +ks0108 +ks0127 +ks8842 +ks8851 +ks8851_mll +ks959-sir +ksdazzle-sir +ksz884x +ktti +kvaser_pci +kvaser_usb +kvm +kvm-amd +kvm-intel +kxcjk-1013 +kxsd9 +kxtj9 +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l440gx +l4f00242t03 +l64781 +lan78xx +lanai +lance +lapb +lapbether +latch-addr-flash +lattice-ecp3-config +lcd +ld9040 +ldusb +lec +led-class-flash +leds-88pm860x +leds-adp5520 +leds-bd2802 +leds-blinkm +leds-clevo-mail +leds-da903x +leds-da9052 +leds-dac124s085 +leds-gpio +leds-lm3530 +leds-lm3533 +leds-lm355x +leds-lm3642 +leds-lp3944 +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-net48xx +leds-ot200 +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pwm +leds-regulator +leds-ss4200 +leds-tca6507 +leds-tlc591xx +leds-wm831x-status +leds-wm8350 +leds-wrap +ledtrig-backlight +ledtrig-camera +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-oneshot +ledtrig-timer +ledtrig-transient +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libahci +libahci_platform +libceph +libcomposite +libcrc32c +libcxgbi +libertas +libertas_cs +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libore +libosd +libsas +lightning +lineage-pem +linear +lirc_bt829 +lirc_dev +lirc_imon +lirc_parallel +lirc_sasem +lirc_serial +lirc_sir +lirc_zilog +lis3l02dq +lis3lv02d +lis3lv02d_i2c +litelink-sir +lkkbd +llc +llc2 +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3630a_bl +lm3639_bl +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lmc +lms283gf05 +lms501kf03 +lnbh25 +lnbp21 +lnbp22 +lockd +locktorture +logibm +longhaul +longrun +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp8755 +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpc_ich +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +ltc2941-battery-gauge +ltc2945 +ltc2978 +ltc3589 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltpc +ltr501 +ltv350qv +lv5207lp +lvstest +lxfb +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m25p80 +m2m-deinterlace +m52790 +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +ma600-sir +mac-celtic +mac-centeuro +mac-croatian +mac-cyrillic +mac-gaelic +mac-greek +mac-iceland +mac-inuit +mac-roman +mac-romanian +mac-turkish +mac80211 +mac80211_hwsim +mac802154 +mac_hid +macb +machzwd +macmodes +macvlan +macvtap +mag3110 +magellan +mailbox-altera +mantis +mantis_core +map_absent +map_funcs +map_ram +map_rom +marvell +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max1111 +max11801_ts +max1363 +max14577 +max14577_charger +max1586 +max16064 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max197 +max20751 +max2165 +max3100 +max31790 +max3421-hcd +max34440 +max517 +max63xx_wdt +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77693 +max77693-haptic +max77693_charger +max8649 +max8660 +max8688 +max8903_charger +max8907 +max8907-regulator +max8925-regulator +max8925_bl +max8925_onkey +max8925_power +max8952 +max8973-regulator +max8997 +max8997_charger +max8997_haptic +max8998 +max8998_charger +mb862xxfb +mb86a16 +mb86a20s +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc44s803 +mcb +mcb-pci +mce-inject +mce_amd_inj +mceusb +mcp2120-sir +mcp251x +mcp3021 +mcp320x +mcp3422 +mcp4531 +mcp4725 +mcp4922 +mcryptd +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md-cluster +md4 +mdacon +mdc800 +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-gpio +mdio-xgene +me4000 +me_daq +media +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +mei +mei-me +mei-txe +mei_phy +memory-notifier-error-inject +memstick +men_z135_uart +men_z188_adc +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +metro-usb +metronomefb +meye +mf6x4 +mga +michael_mic +micrel +microchip +microread +microread_i2c +microread_mei +microtek +mii +minix +mip6 +mite +mixcomwd +mk712 +mkiss +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx90614 +mlxsw_core +mlxsw_pci +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmc_block +mms114 +mn88472 +mn88473 +mos7720 +mos7840 +mostcore +moxa +mpc624 +mpl115 +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +msdos +msi-laptop +msi-wmi +msi001 +msi2500 +msp3400 +mspro_block +msr +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt29f_spinand +mt312 +mt352 +mt6311-regulator +mt6397-core +mt6397-regulator +mt7601u +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd +mtd_blkdevs +mtd_dataflash +mtdblock +mtdblock_ro +mtdoops +mtdram +mtdswap +mtip32xx +mtk-sd +mtouch +multipath +multiq3 +musb_hdrc +mv_u3d_core +mv_udc +mvmdio +mvsas +mvumi +mwave +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc4005 +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxm-wmi +mxser +mxuport +myri10ge +n2 +n411 +n_gsm +n_hdlc +n_r3964 +n_tracerouter +n_tracesink +nand +nand_bch +nand_ecc +nand_ids +nandsim +national +natsemi +nau7802 +navman +nb8800 +nbd +nci +nci_spi +nci_uart +ncpfs +nct6683 +nct6775 +nct7802 +nct7904 +nd_blk +nd_btt +nd_pmem +ne +ne2k-pci +neofb +net1080 +net2272 +net2280 +netconsole +netjet +netlink_diag +netrom +nettel +netup-unidvb +netxen_nic +newtonkbd +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_ipv4 +nf_nat_ipv6 +nf_nat_irc +nf_nat_masquerade_ipv4 +nf_nat_masquerade_ipv6 +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_redirect +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_synproxy_core +nf_tables +nf_tables_arp +nf_tables_bridge +nf_tables_inet +nf_tables_ipv4 +nf_tables_ipv6 +nf_tables_netdev +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfcwilink +nfit +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_log +nfnetlink_queue +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat_ipv4 +nft_chain_nat_ipv6 +nft_chain_route_ipv4 +nft_chain_route_ipv6 +nft_compat +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_exthdr +nft_hash +nft_limit +nft_log +nft_masq +nft_masq_ipv4 +nft_masq_ipv6 +nft_meta +nft_meta_bridge +nft_nat +nft_queue +nft_rbtree +nft_redir +nft_redir_ipv4 +nft_redir_ipv6 +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +ni65 +ni_6527 +ni_65xx +ni_660x +ni_670x +ni_at_a2150 +ni_at_ao +ni_atmio +ni_atmio16d +ni_daq_700 +ni_daq_dio24 +ni_labpc +ni_labpc_common +ni_labpc_cs +ni_labpc_isadma +ni_labpc_pci +ni_mio_cs +ni_pcidio +ni_pcimio +ni_tio +ni_tiocmd +ni_usb6501 +nicstar +nilfs2 +niu +nlmon +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +nmclan_cs +nosy +notifier-error-inject +nouveau +nozomi +ns558 +ns83820 +nsc-ircc +nsc_gpio +nsp32 +nsp_cs +ntb +ntb_netdev +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +null_blk +nuvoton-cir +nv_tco +nvidiafb +nvme +nvmem_core +nvram +nxp-nci +nxp-nci_i2c +nxt200x +nxt6000 +objlayoutdriver +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +of_xilinx_wdt +old_belkin-sir +omfs +omninet +on20 +on26 +onenand +opencores-kbd +openvswitch +oprofile +opt3001 +opticon +option +or51132 +or51211 +orinoco +orinoco_cs +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +osd +osdblk +osst +oti6858 +ov2640 +ov5642 +ov6650 +ov7640 +ov7670 +ov772x +ov9640 +ov9740 +overlay +oxu210hp-hcd +p4-clockmod +p54common +p54pci +p54spi +p54usb +p8022 +p8023 +pa12203001 +padlock-aes +padlock-sha +palmas-pwrbutton +palmas-regulator +panasonic-laptop +pandora_bl +panel +paride +parkbd +parport +parport_ax88796 +parport_cs +parport_pc +parport_serial +pas16 +pata_acpi +pata_ali +pata_amd +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cs5520 +pata_cs5530 +pata_cs5535 +pata_cs5536 +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_isapnp +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_oldpiix +pata_opti +pata_optidma +pata_pcmcia +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sc1200 +pata_sch +pata_serverworks +pata_sil680 +pata_sl82c105 +pata_triflex +pata_via +pc110pad +pc300too +pc87360 +pc8736x_gpio +pc87413_wdt +pc87427 +pcap-regulator +pcap_keys +pcap_ts +pcbc +pcbit +pcd +pcf50633 +pcf50633-adc +pcf50633-backlight +pcf50633-charger +pcf50633-gpio +pcf50633-input +pcf50633-regulator +pcf8574_keypad +pcf8591 +pch_can +pch_dma +pch_gbe +pch_phub +pch_uart +pch_udc +pci +pci-stub +pci200syn +pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad +pcmcia +pcmcia_core +pcmcia_rsrc +pcmciamtd +pcmda12 +pcmmio +pcmuio +pcnet32 +pcnet_cs +pcrypt +pcspkr +pcwd +pcwd_pci +pcwd_usb +pd +pd6729 +pda_power +pdc_adma +peak_pci +peak_pcmcia +peak_usb +pegasus +penmount +percpu_test +pf +pfuze100-regulator +pg +phantom +phonet +phram +phy-bcm-kona-usb2 +phy-exynos-usb2 +phy-gpio-vbus-usb +phy-isp1301 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-tahvo +phy-tusb1210 +physmap +pinctrl-broxton +pinctrl-intel +pinctrl-sunrisepoint +pixcir_i2c_ts +pkcs7_test_key +pktcdvd +pktgen +pl2303 +plat-ram +plat_nand +platform_lcd +plip +plusb +pluto2 +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm80xx +pm8941-wled +pmbus +pmbus_core +pmc551 +pmcraid +pn533 +pn544 +pn544_i2c +pn544_mei +pn_pep +poly1305_generic +port100 +powermate +powernow-k6 +powernow-k7 +powr1220 +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_core +pps_parport +pptp +prism2_usb +processor_thermal_device +ps2mult +psmouse +psnap +pt +pti +ptp +ptp_pch +pulsedlight-lidar-lite-v2 +punit_atom_debug +pvpanic +pvrusb2 +pwc +pwm-beeper +pwm-lp3943 +pwm-lpss +pwm-lpss-pci +pwm-lpss-platform +pwm-pca9685 +pwm-regulator +pwm-twl +pwm-twl-led +pwm_bl +pxa27x_udc +qat_dh895xcc +qat_dh895xccvf +qcaux +qcom-spmi-iadc +qcom-spmi-vadc +qcom_spmi-regulator +qcserial +qed +qede +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qlogic_cs +qlogicfas +qlogicfas408 +qm1d1c0042 +qmi_wwan +qnx4 +qnx6 +qsemi +qt1010 +qt1070 +qt2160 +quatech2 +quatech_daqp_cs +quota_tree +quota_v1 +quota_v2 +qxl +r128 +r592 +r6040 +r8152 +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r82600_edac +r852 +r8712u +r8723au +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-aimslab +radio-aztech +radio-bcm2048 +radio-cadet +radio-gemtek +radio-i2c-si470x +radio-isa +radio-keene +radio-ma901 +radio-maxiradio +radio-miropcm20 +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-rtrack2 +radio-sf16fmi +radio-sf16fmr2 +radio-shark +radio-si476x +radio-tea5764 +radio-terratec +radio-timb +radio-trust +radio-typhoon +radio-usb-si470x +radio-usb-si4713 +radio-wl1273 +radio-zoltrix +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ramoops +raw +ray_cs +rbd +rbtree_test +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-asus-pc39 +rc-asus-ps3-100 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-delock-61959 +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-dvbsky +rc-em-terratec +rc-encore-enltv +rc-encore-enltv-fm53 +rc-encore-enltv2 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-pctv-sedna +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-reddo +rc-snapstream-firefly +rc-streamzap +rc-su3000 +rc-tbs-nec +rc-technisat-ts35 +rc-technisat-usb2 +rc-terratec-cinergy-c-pci +rc-terratec-cinergy-s2-hd +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-total-media-in-hand-02 +rc-trekstor +rc-tt-1500 +rc-twinhan-dtv-cab-ci +rc-twinhan1027 +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rc5t583-regulator +rdc321x-southbridge +rdma_cm +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +redboot +redrat3 +reed_solomon +regmap-spmi +regulator-haptic +reiserfs +remoteproc +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd_ftl +rfkill-gpio +rfkill-regulator +rio-scan +rio500 +rionet +rivafb +rj54n1cb0c +rmd128 +rmd160 +rmd256 +rmd320 +rn5t618 +rn5t618-regulator +rn5t618_wdt +rndis_host +rndis_wlan +rocket +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpcrdma +rpcsec_gss_krb5 +rpr0521 +rrpc +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt5033 +rt5033-regulator +rt5033_battery +rt61pci +rt73usb +rt9455_charger +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab3100 +rtc-abx80x +rtc-bq32k +rtc-bq4802 +rtc-da9052 +rtc-da9055 +rtc-da9063 +rtc-ds1286 +rtc-ds1305 +rtc-ds1307 +rtc-ds1343 +rtc-ds1347 +rtc-ds1374 +rtc-ds1390 +rtc-ds1511 +rtc-ds1553 +rtc-ds1672 +rtc-ds1685 +rtc-ds1742 +rtc-ds2404 +rtc-ds3232 +rtc-ds3234 +rtc-em3027 +rtc-fm3130 +rtc-hid-sensor-time +rtc-isl12022 +rtc-isl12057 +rtc-isl1208 +rtc-lp8788 +rtc-m41t80 +rtc-m41t93 +rtc-m41t94 +rtc-m48t35 +rtc-m48t59 +rtc-m48t86 +rtc-max6900 +rtc-max6902 +rtc-max8907 +rtc-max8925 +rtc-max8997 +rtc-max8998 +rtc-mc13xxx +rtc-mcp795 +rtc-mrst +rtc-msm6242 +rtc-mt6397 +rtc-palmas +rtc-pcap +rtc-pcf2123 +rtc-pcf2127 +rtc-pcf50633 +rtc-pcf85063 +rtc-pcf8523 +rtc-pcf8563 +rtc-pcf8583 +rtc-r9701 +rtc-rc5t583 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rv8803 +rtc-rx4581 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-stk17ta8 +rtc-tps6586x +rtc-tps65910 +rtc-tps80031 +rtc-twl +rtc-v3020 +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtd520 +rti800 +rti802 +rtl2830 +rtl2832 +rtl2832_sdr +rtl8150 +rtl8187 +rtl8188ee +rtl818x_pci +rtl8192c-common +rtl8192ce +rtl8192cu +rtl8192de +rtl8192ee +rtl8192se +rtl8723-common +rtl8723ae +rtl8723be +rtl8821ae +rtl8xxxu +rtl_pci +rtl_usb +rtllib +rtllib_crypt_ccmp +rtllib_crypt_tkip +rtllib_crypt_wep +rtlwifi +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rx51_battery +rxkad +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3fb +s3fwrn5 +s3fwrn5_i2c +s526 +s5h1409 +s5h1411 +s5h1420 +s5m8767 +s626 +s6e63m0 +s921 +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7185 +saa7706h +safe_serial +salsa20-i586 +salsa20_generic +samsung-keypad +samsung-laptop +samsung-q10 +samsung-sxgbe +sata_inic162x +sata_mv +sata_nv +sata_promise +sata_qstor +sata_sil +sata_sil24 +sata_sis +sata_svw +sata_sx4 +sata_uli +sata_via +sata_vsc +savage +savagefb +sb1000 +sbc60xxwdt +sbc7240_wdt +sbc8360 +sbc_epx_c3 +sbc_fitpc2_wdt +sbc_gxx +sbni +sbp_target +sbs +sbs-battery +sbshc +sc +sc1200wdt +sc16is7xx +sc92031 +sca3000 +scb2_flash +scc +sch311x_wdt +sch5627 +sch5636 +sch56xx-common +sch_atm +sch_cbq +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_fq +sch_fq_codel +sch_gred +sch_hfsc +sch_hhf +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_pie +sch_plug +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_tbf +sch_teql +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +scsi_transport_srp +sctp +sctp_probe +scx200 +scx200_acb +scx200_docflash +scx200_gpio +scx200_hrt +scx200_wdt +sdhci +sdhci-acpi +sdhci-pci +sdhci-pltfm +sdio_uart +sdla +sdricoh_cs +sealevel +sedlbauer_cs +seed +sensorhub +seqiv +ser_gigaset +serial2002 +serial_cs +serio_raw +sermouse +serpent-sse2-i586 +serpent_generic +serport +ses +sfc +sfi-cpufreq +sh_veu +shark2 +shpchp +sht15 +sht21 +shtc1 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sil164 +sim710 +sir-dev +sis +sis-agp +sis190 +sis5595 +sis900 +sisfb +sisusbvga +sit +sja1000 +sja1000_isa +sja1000_platform +skfp +skge +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +sl811_cs +slcan +slicoss +slip +slram +sm501 +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smb347-charger +smc-ultra +smc9194 +smc91c92_cs +smipcie +smm665 +smsc +smsc-ircc2 +smsc37b787_wdt +smsc47b397 +smsc47m1 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsmdtv +smssdio +smsusb +snd +snd-ac97-codec +snd-ad1816a +snd-ad1848 +snd-ad1889 +snd-adlib +snd-ak4113 +snd-ak4114 +snd-ak4117 +snd-ak4xxx-adda +snd-ali5451 +snd-aloop +snd-als100 +snd-als300 +snd-als4000 +snd-asihpi +snd-atiixp +snd-atiixp-modem +snd-au8810 +snd-au8820 +snd-au8830 +snd-aw2 +snd-azt1605 +snd-azt2316 +snd-azt2320 +snd-azt3328 +snd-bcd2000 +snd-bebob +snd-bt87x +snd-ca0106 +snd-cmi8328 +snd-cmi8330 +snd-cmipci +snd-compress +snd-cs4231 +snd-cs4236 +snd-cs4281 +snd-cs46xx +snd-cs5530 +snd-cs5535audio +snd-cs8427 +snd-ctxfi +snd-darla20 +snd-darla24 +snd-dice +snd-dummy +snd-echo3g +snd-emu10k1 +snd-emu10k1-synth +snd-emu10k1x +snd-emu8000-synth +snd-emux-synth +snd-ens1370 +snd-ens1371 +snd-es1688 +snd-es1688-lib +snd-es18xx +snd-es1938 +snd-es1968 +snd-firewire-digi00x +snd-firewire-lib +snd-firewire-tascam +snd-fireworks +snd-fm801 +snd-gina20 +snd-gina24 +snd-gus-lib +snd-gusclassic +snd-gusextreme +snd-gusmax +snd-hda-codec +snd-hda-codec-analog +snd-hda-codec-ca0110 +snd-hda-codec-ca0132 +snd-hda-codec-cirrus +snd-hda-codec-cmedia +snd-hda-codec-conexant +snd-hda-codec-generic +snd-hda-codec-hdmi +snd-hda-codec-idt +snd-hda-codec-realtek +snd-hda-codec-si3054 +snd-hda-codec-via +snd-hda-core +snd-hda-ext-core +snd-hda-intel +snd-hdsp +snd-hdspm +snd-hrtimer +snd-hwdep +snd-i2c +snd-ice1712 +snd-ice1724 +snd-ice17xx-ak4xxx +snd-indigo +snd-indigodj +snd-indigodjx +snd-indigoio +snd-indigoiox +snd-intel-sst-acpi +snd-intel-sst-core +snd-intel-sst-pci +snd-intel8x0 +snd-intel8x0m +snd-interwave +snd-interwave-stb +snd-isight +snd-jazz16 +snd-korg1212 +snd-layla20 +snd-layla24 +snd-lola +snd-lx6464es +snd-maestro3 +snd-mia +snd-miro +snd-mixart +snd-mixer-oss +snd-mona +snd-mpu401 +snd-mpu401-uart +snd-msnd-classic +snd-msnd-lib +snd-msnd-pinnacle +snd-mtpav +snd-mts64 +snd-nm256 +snd-opl3-lib +snd-opl3-synth +snd-opl3sa2 +snd-opl4-lib +snd-opl4-synth +snd-opti92x-ad1848 +snd-opti92x-cs4231 +snd-opti93x +snd-oxfw +snd-oxygen +snd-oxygen-lib +snd-pcm +snd-pcm-dmaengine +snd-pcm-oss +snd-pcsp +snd-pcxhr +snd-pdaudiocf +snd-portman2x4 +snd-pt2258 +snd-rawmidi +snd-riptide +snd-rme32 +snd-rme96 +snd-rme9652 +snd-sb-common +snd-sb16 +snd-sb16-csp +snd-sb16-dsp +snd-sb8 +snd-sb8-dsp +snd-sbawe +snd-sc6000 +snd-scs1x +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-sis7019 +snd-soc-ac97 +snd-soc-adau1701 +snd-soc-ak4104 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-alc5623 +snd-soc-core +snd-soc-cs35l32 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42xx8 +snd-soc-cs42xx8-i2c +snd-soc-cs4349 +snd-soc-dmic +snd-soc-es8328 +snd-soc-fsl-asrc +snd-soc-fsl-esai +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-gtm601 +snd-soc-imx-audmux +snd-soc-max98090 +snd-soc-pcm1681 +snd-soc-pcm1792a-codec +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-rl6231 +snd-soc-rl6347a +snd-soc-rt286 +snd-soc-rt5631 +snd-soc-rt5640 +snd-soc-rt5645 +snd-soc-rt5660 +snd-soc-rt5670 +snd-soc-sgtl5000 +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-simple-card +snd-soc-skl +snd-soc-skl-ipc +snd-soc-skl_rt286 +snd-soc-sn95031 +snd-soc-spdif-rx +snd-soc-spdif-tx +snd-soc-ssm2602 +snd-soc-ssm2602-i2c +snd-soc-ssm2602-spi +snd-soc-ssm4567 +snd-soc-sst-acpi +snd-soc-sst-baytrail-pcm +snd-soc-sst-broadwell +snd-soc-sst-byt-max98090-mach +snd-soc-sst-byt-rt5640-mach +snd-soc-sst-bytcr-rt5640 +snd-soc-sst-bytcr-rt5660 +snd-soc-sst-cht-bsw-max98090_ti +snd-soc-sst-cht-bsw-rt5645 +snd-soc-sst-cht-bsw-rt5672 +snd-soc-sst-dsp +snd-soc-sst-haswell +snd-soc-sst-haswell-pcm +snd-soc-sst-ipc +snd-soc-sst-mfld-platform +snd-soc-sta32x +snd-soc-sta350 +snd-soc-sti-sas +snd-soc-tas2552 +snd-soc-tas5086 +snd-soc-tas571x +snd-soc-tfa9879 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic3x +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8962 +snd-soc-wm8978 +snd-soc-xtfpga-i2s +snd-sonicvibes +snd-sscape +snd-tea6330t +snd-timer +snd-trident +snd-ua101 +snd-usb-6fire +snd-usb-audio +snd-usb-caiaq +snd-usb-hiface +snd-usb-line6 +snd-usb-pod +snd-usb-podhd +snd-usb-toneport +snd-usb-us122l +snd-usb-usx2y +snd-usb-variax +snd-usbmidi-lib +snd-util-mem +snd-via82xx +snd-via82xx-modem +snd-virmidi +snd-virtuoso +snd-vx-lib +snd-vx222 +snd-vxpocket +snd-wavefront +snd-wss-lib +snd-ymfpci +snic +soc_button_array +soc_camera +soc_camera_platform +soc_mediabus +softdog +softing +softing_cs +solo6x10 +solos-pci +sony-btf-mpx +sony-laptop +sonypi +soundcore +sp2 +sp5100_tco +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntpc +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_decpc +speakup_dectlk +speakup_dtlk +speakup_dummy +speakup_keypc +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +spectrum_cs +speedfax +speedtch +spi-altera +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-gpio +spi-lm70llp +spi-nor +spi-oc-tiny +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-sc18is602 +spi-tle62x0 +spi-topcliff-pch +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spmi +sr9700 +sr9800 +ssb +ssb-hcd +ssfdc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +sstfb +ssu100 +ssv_dnp +st +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_spi +st_magn +st_magn_i2c +st_magn_spi +st_pressure +st_pressure_i2c +st_pressure_spi +st_sensors +st_sensors_i2c +st_sensors_spi +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +ste_modem_rproc +stex +stinger +stir4200 +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm_console +stm_core +stmmac +stmmac-platform +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv6110 +stv6110x +sun4i-codec +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +surfacepro3_button +svgalib +sworks-agp +sx8 +sx8654 +sx9500 +sym53c416 +sym53c500_cs +sym53c8xx +symbolserial +synaptics_i2c +synaptics_i2c_rmi4 +synaptics_usb +synclink +synclink_cs +synclink_gt +synclinkmp +syscopyarea +sysfillrect +sysimgblt +sysv +t128 +t1isa +t1pci +t5403 +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +target_core_user +tc1100-wmi +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcic +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tcs3414 +tcs3472 +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tda998x +tdfx +tdfxfb +tdo24m +tea +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tef6862 +tehuti +tekram-sir +teles_cs +teranetics +test-hexdump +test-kstrtox +test-string_helpers +test_bpf +test_firmware +test_module +test_power +test_printf +test_static_key_base +test_static_keys +test_udelay +test_user_copy +tg3 +tgr192 +thinkpad_acpi +thmc50 +thunderbolt +ti-adc081c +ti-adc128s052 +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_dac7512 +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timb_dma +timberdale +timblogiw +timbuart +timeriomem-rng +tipc +tlan +tlclk +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmem +tmp006 +tmp102 +tmp103 +tmp401 +tmp421 +toim3232-sir +topstar-laptop +torture +toshiba-wmi +toshiba_acpi +toshiba_bluetooth +toshiba_haps +toshsd +touchit213 +touchright +touchwin +tpci200 +tpm-rng +tpm_atmel +tpm_crb +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_infineon +tpm_nsc +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tps40422 +tps51632-regulator +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65090-charger +tps65090-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps80031-regulator +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tscan1 +tsi568 +tsi57x +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2x7x_core +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tvaudio +tveeprom +tvp5150 +tw2804 +tw68 +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-madc-hwmon +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6040-vibra +twofish-i586 +twofish_common +twofish_generic +typhoon +u132-hcd +u14-34f +uPD98402 +u_ether +u_serial +uartlite +uas +ubi +ubifs +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +uda1342 +udc-core +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufshcd +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uli526x +ulpi +ultrastor +umc +umem +ums-alauda +ums-cypress +ums-datafab +ums-eneub6250 +ums-freecom +ums-isd200 +ums-jumpshot +ums-karma +ums-onetouch +ums-realtek +ums-sddr09 +ums-sddr55 +ums-usbat +unix_diag +upd64031a +upd64083 +us5182d +usb-serial-simple +usb-storage +usb3503 +usb8xxx +usb_8dev +usb_debug +usb_f_acm +usb_f_ecm +usb_f_ecm_subset +usb_f_eem +usb_f_fs +usb_f_hid +usb_f_mass_storage +usb_f_midi +usb_f_ncm +usb_f_obex +usb_f_phonet +usb_f_printer +usb_f_rndis +usb_f_serial +usb_f_ss_lb +usb_f_uac1 +usb_f_uac2 +usb_f_uvc +usb_gigaset +usb_wwan +usbatm +usbdux +usbduxfast +usbduxsigma +usbhid +usbip-core +usbip-host +usbkbd +usblcd +usbled +usblp +usbmon +usbmouse +usbnet +usbserial +usbsevseg +usbtest +usbtmc +usbtouchscreen +usbtv +usbvision +usdhi6rol0 +userio +userspace-consumer +ushc +usnic_verbs +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-dv-timings +v4l2-flash-led-class +v4l2-mem2mem +vboxguest +vboxsf +vboxvideo +vcan +vcnl4000 +ven_rsi_91x +ven_rsi_sdio +ven_rsi_usb +ves1820 +ves1x93 +veth +vfio +vfio-pci +vfio_iommu_type1 +vfio_virqfd +vga16fb +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_net +vhost_scsi +via +via-camera +via-cputemp +via-ircc +via-rhine +via-rng +via-sdmmc +via-velocity +via686a +via_wdt +viafb +video +videobuf-core +videobuf-dma-contig +videobuf-dma-sg +videobuf-dvb +videobuf-vmalloc +videobuf2-core +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-dvb +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videocodec +videodev +vim2m +viperboard +viperboard_adc +virt-dma +virtio-gpu +virtio-rng +virtio_input +virtio_scsi +virtual +visor +vitesse +vivid +vlsi_ir +vmac +vme_ca91cx42 +vme_pio2 +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmlfb +vmw_balloon +vmw_pvscsi +vmw_vmci +vmw_vsock_vmci_transport +vmwgfx +vmxnet3 +vp27smpx +vport-geneve +vport-gre +vport-vxlan +vpx3220 +vrf +vringh +vsock +vsxxxaa +vt1211 +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxge +vxlan +vz89x +w1-gpio +w1_bq27000 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1_ds2781 +w1_ds28e04 +w1_smem +w1_therm +w5100 +w5300 +w6692 +w83627ehf +w83627hf +w83627hf_wdt +w83781d +w83791d +w83792d +w83793 +w83795 +w83877f_wdt +w83977af_ir +w83977f_wdt +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +wafer5823wdt +walkera0701 +wanxl +warrior +wbsd +wcn36xx +wd +wd7000 +wd719x +wdt +wdt87xx_i2c +wdt_pci +whc-rc +whci +whci-hcd +whiteheat +wil6210 +wimax +winbond-840 +winbond-cir +wire +wishbone-serial +wistron_btns +wl1251 +wl1251_sdio +wl1251_spi +wl1273-core +wl12xx +wl18xx +wl3501_cs +wlcore +wlcore_sdio +wlcore_spi +wm831x-dcdc +wm831x-hwmon +wm831x-isink +wm831x-ldo +wm831x-on +wm831x-ts +wm831x_backup +wm831x_bl +wm831x_power +wm831x_wdt +wm8350-hwmon +wm8350-regulator +wm8350_power +wm8350_wdt +wm8400-regulator +wm8739 +wm8775 +wm8994-core +wm8994-irq +wm8994-regmap +wm8994-regulator +wm97xx-ts +wmi +wp512 +wusb-cbaf +wusb-wa +wusbcore +x25 +x25_asy +x38_edac +x86_pkg_temp_thermal +x_tables +xc4000 +xc5000 +xcbc +xen-blkback +xen-evtchn +xen-fbfront +xen-gntalloc +xen-gntdev +xen-kbdfront +xen-netback +xen-pciback +xen-pcifront +xen-privcmd +xen-scsiback +xen-scsifront +xen-tpmfront +xen_wdt +xenfs +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_ipcomp +xfrm_user +xfs +xgifb +xhci-plat-hcd +xillybus_core +xillybus_pcie +xirc2ps_cs +xircom_cb +xor +xpad +xr_usb_serial_common +xsens_mt +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +xt_NETMAP +xt_NFLOG +xt_NFQUEUE +xt_RATEEST +xt_REDIRECT +xt_SECMARK +xt_TCPMSS +xt_TCPOPTSTRIP +xt_TEE +xt_TPROXY +xt_TRACE +xt_addrtype +xt_bpf +xt_cgroup +xt_cluster +xt_comment +xt_connbytes +xt_connlabel +xt_connlimit +xt_connmark +xt_conntrack +xt_cpu +xt_dccp +xt_devgroup +xt_dscp +xt_ecn +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_ipcomp +xt_iprange +xt_ipvs +xt_l2tp +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_nat +xt_nfacct +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_realm +xt_recent +xt_sctp +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_tcpudp +xt_time +xt_u32 +xtkbd +xts +xusbatm +xz_dec_test +yam +yealink +yellowfin +yenta_socket +yurex +z85230 +zatm +zaurus +zd1201 +zd1211rw +zforce_ts +zhenhua +zl10036 +zl10039 +zl10353 +zl6100 +zlib +zr36016 +zr36050 +zr36060 +zr36067 +zr364xx +zram +zynq-fpga only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-106.129/powerpc/powerpc-e500mc +++ linux-raspi2-4.4.0/debian.master/abi/4.4.0-106.129/powerpc/powerpc-e500mc @@ -0,0 +1,17303 @@ +EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe +EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble +EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL crypto/mcryptd 0xa8cfd13e mcryptd_arm_flusher +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/atm/suni 0xefadc684 suni_init +EXPORT_SYMBOL drivers/atm/uPD98402 0x0122d0b6 uPD98402_init +EXPORT_SYMBOL drivers/bcma/bcma 0x5ff21f89 bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0xe6a32cd3 bcma_core_irq +EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str +EXPORT_SYMBOL drivers/block/paride/paride 0x019e3737 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x0a1276d1 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x27c9e461 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x29970b05 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x3438f823 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x6950ef33 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x6ab4a48a pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x756a9c6b pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x7bd46669 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x9ae23f26 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xe9393069 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0xfa2c7619 pi_disconnect +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xac24be3e btbcm_patchram +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x08a7045d ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fae3bac ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x32407972 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x855050a0 ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x88669ec2 ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xbaaafc63 ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x4a3a5229 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x7b74b69f st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x92cc4fca st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xdc275ba1 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xa3a9c635 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xb74c1e85 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xe9d0701e xillybus_endpoint_remove +EXPORT_SYMBOL drivers/crypto/caam/caam 0x1c758e97 caam_get_era +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x06017241 caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x377f40cc caam_jr_strstatus +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x3acfa801 gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x9f6a1d33 caam_jr_free +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xc432df38 caam_jr_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xd07afe96 split_key_done +EXPORT_SYMBOL drivers/crypto/talitos 0x3404c12a talitos_submit +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x218fc792 dw_dma_get_src_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x48d04bde dw_dma_cyclic_free +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x5b7f328a dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x612d31d2 dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x9020c2d4 dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xe325b95c dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/edac/edac_core 0x7f1001b5 edac_mc_find +EXPORT_SYMBOL drivers/edac/mpc85xx_edac 0x6ba8aafc mpc85xx_pci_err_probe +EXPORT_SYMBOL drivers/firewire/firewire-core 0x01907d0e fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04dd92ce fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2656b293 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2cec6196 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d5d4eca fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x59f93c0b fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x62fe6a0f fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x649e7f07 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6ba4e529 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6df6e5b0 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7034ac56 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e431b14 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7f6e345f fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x84d7f40a fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90f8599c fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x93727ba9 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9ad51548 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9bcaf479 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa506cab7 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa92ee984 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0xac5fbb8a fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb21b63af fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb78a58d6 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbc3199a5 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc362289f fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xda309805 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0xdc5815f4 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf981dd86 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xff17648c fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/fmc/fmc 0x16f777c4 fmc_show_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x3445261a fmc_device_register +EXPORT_SYMBOL drivers/fmc/fmc 0x4add9f03 fmc_device_unregister_n +EXPORT_SYMBOL drivers/fmc/fmc 0x67c1afe3 fmc_device_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x8694be77 fmc_find_sdb_device +EXPORT_SYMBOL drivers/fmc/fmc 0x86af8877 fmc_reprogram +EXPORT_SYMBOL drivers/fmc/fmc 0x8827a0b0 fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0xa93ef64e fmc_device_register_n +EXPORT_SYMBOL drivers/fmc/fmc 0xb07817ed fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xe0d464d3 fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xecf1d2ed fmc_driver_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x017f3d93 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02822eb3 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x038d45e6 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x050c26ca drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06e4c60a drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d8a1a58 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0dca1054 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e9062e0 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fccafb1 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fec0404 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x101a3646 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x101e7f1a drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1175b315 drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11ab8dc0 drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11ba77e1 drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12cf282d drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12e89947 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x134d8764 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13c7cd6c of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13cad1a6 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14f80b37 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x161d074b drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x175aeb1e drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17e9b639 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c5416a9 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cef0e3f drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dbf3f51 drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dda22c7 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1edf5068 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f5676cc drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f889e12 drm_connector_unplug_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f9a6ff0 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20437308 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x210266e2 drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21b2bcc2 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x224350a5 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22569a34 drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2263c917 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23498ef6 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23e35389 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x242d9df2 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24da1ee4 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x258e7fdb drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27f497cf drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x291cecdf drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bfe354b drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c05a7ba drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d3b4159 drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2dc99b21 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e406d26 drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f541372 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3108b652 drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x321a1d98 drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x333669c2 drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3368e25c drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33c95b63 drm_connector_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33f195a1 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x346127a7 drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34b805fe drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35450922 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3599be2f drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36390bee drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37e1e0c7 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x389c015f drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39465de4 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39675129 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39a3a726 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c1d9bd4 drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d5d3750 drm_plane_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d652015 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d8283c8 drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3dd1fc48 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f88a23d drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x405aa157 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43297a73 drm_platform_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x435910c1 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x447f2875 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46938c2f drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48253830 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49448d09 drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a32577c drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ab19842 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4abd672f drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b3d4349 drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c8a96e8 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d5fc834 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ed46f51 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5057e13c drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51db353a drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51e0b5df drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51e51468 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x525247ef drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53ab31c5 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54f3581e drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x560a9a70 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5664ec1d drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x566fd33e drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x588e3f69 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58fbb630 drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c923b63 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cff9f52 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d2ef7d6 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5da17aff drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5eae5c7e drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61090b9e drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6163bba9 drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64536aae drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x664f8b3c drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67966110 drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x689aeed8 drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68b8235b drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69099d62 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x690bcb1f drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ad1ae41 drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bfcbc16 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c1bbc85 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6faf8632 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ffc7d08 drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70725f11 drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70ce4059 drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x723f291a drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72c05992 drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7318315e drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x742e2049 drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7473e4b1 drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x753ab453 drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7591630b drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76027918 drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78b50392 drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x791d9306 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79ef81af drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c224386 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c34f1ba drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c3ae836 drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c546e36 drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c60a9e2 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cb0aeb8 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f280af8 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fb370f3 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x803f8917 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8164fb39 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81d9bfe1 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8211c2e4 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x837c85bb drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x845b8d26 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x859dc66c drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85b71829 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x863a52db drm_framebuffer_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86943f42 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8696cf11 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x875a2e3e drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x892a6b7a drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x895d743c drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c5a607a drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d4207b7 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f044de8 drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ff833d4 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x902b4d1d drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9055aa5d drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90fb9a1a drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x913bbbf0 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9188e14a drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x930f9b52 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93fa8318 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94f0b58c drm_framebuffer_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95907a61 drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95e1438e drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x977f17d9 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9796c87c drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97c335f4 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97d8c542 drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97f8cb87 drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98b04900 drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fc3763 drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a5a7244 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bb93692 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c0c4262 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d3501b0 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0c39153 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0c8bac3 drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa335d2d8 drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa374441b drm_atomic_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa526122a drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6d83aa3 drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa74767cf drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7518a42 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7dd1b3b drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7ea0911 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa94b310b drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9d659ad drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa0411e6 drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab691468 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacd45926 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad430db3 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad54daac drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad6180e7 drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb17d072b drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5518146 drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5a63d88 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6084455 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb87ec255 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8842225 drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb889e82a drm_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9a214f8 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbaa379a7 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbacb7dae drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc35d08c drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc6cac26 drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcb4abc0 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd4313d8 drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdfee50f drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf026334 drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0d2879e drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0d5104f drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1b8771e drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc381aa9a drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5e243ca drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7244055 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7461229 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc800bc85 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc85710ec drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8b3ad9b drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9afcfb3 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9f3f6c4 drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc4a601b drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc85d69d drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd4fd361 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd039a4ae drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0dca37a drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2fe8bd4 drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5b901d0 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8f738f9 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd94217fc drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9e6bd12 drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9f17443 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda183c9c drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb99f939 of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbd33e36 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd4417e8 drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdedea442 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdef2d8c3 drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfe1b289 drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe039fbcc drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe05b92d7 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0fc9ab8 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1243f67 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe18bf127 drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe18d1f34 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1dfa0fe drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe22b6967 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2458475 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2ffd7a5 drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe344857d drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe68dbc4e drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe738644b drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe843a913 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe89799b4 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea909bae drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb3d1f58 drm_legacy_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb87c5ef drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec28e75d drm_encoder_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec9073d6 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xecc36e63 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed462bf0 drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed52a254 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xefe72b8f drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0a09bcf drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0a9cd0a drm_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1823833 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b098be drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2738c9b drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2a2c7d4 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf43eb1e5 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5ae6b87 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6210e41 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7ed3393 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa37fece drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa537296 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb4b057f drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfba61ac5 drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbd001bf drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbfe3d9f drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdba905d drm_crtc_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfde5853a drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe54fa64 drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeac530b drm_agp_bind_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff0cf2c6 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffbead57 drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0070bd78 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01268dc2 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0215a07e drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05cd033b __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0688df56 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x070a7610 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08d62486 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b339d16 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c359023 drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0dd9a26d drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e253af6 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14df2a4b drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ddf3105 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f03577c drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f5e1961 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20e3e7e5 drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x234431a0 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25e4ab6b drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2662186c drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29a66ec4 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a2b9f2a drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a87b9b8 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c49a2a2 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x313879fe drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31999872 drm_helper_probe_single_connector_modes_nomerge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31ec3cdc drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3226594a drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x390b1b61 drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b256eec drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c6d96f5 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41e4e073 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4225c4eb drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43515b9d drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45a777d7 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46ead597 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4efeebe8 drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50ad0047 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52c9e1ab drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53458bab drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x555c24ac drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55612af5 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56acf8f2 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a08b96e drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c22dea1 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5cd9159e drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ef983f0 drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f75d25c drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x620d51ee drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63944320 drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x672fb0cd drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68b9e450 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68d67cc4 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69be6e38 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69f1fc8d drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a0efdd0 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c61e0f6 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d9c6929 drm_helper_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x731728a2 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x758636a3 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76546e53 drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78557582 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a10be94 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fe48a32 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81ac60d8 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81fc8f1b drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85ac9eb1 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85d8adf7 drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8683e9a1 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e77197d drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x912a3b2b drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x916ef0ba drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x930e3753 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x954801df drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9941145c drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99b9b3f0 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9aa15426 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c7420b5 drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d0dc166 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9dde96bb drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e24479b __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e880a87 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f024f20 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa013fc5c drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3d749ec drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4515fc4 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa524f946 drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5ef552a drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa713d4aa drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa73ce9e8 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa73f06e3 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8f716d4 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa994dd12 drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa8efc1d drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xabd857b7 drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad4e1644 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb344b293 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4a3fa52 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4c88b39 drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5317e1a drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5bd1572 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb88e56ab drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9ba9ef8 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9d843d0 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9ed76be drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb56dd73 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb6df2ca drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc1f646a drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf39494a drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc33c893b drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4fe0290 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc58bb8a5 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6ae6ec3 drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8b0a6ce drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc97787aa drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc802e80 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0aea335 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd28b3ba4 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd34fefb1 drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4f9df96 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd64000fe drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7f38e2a drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9d64c57 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdaa6d8a1 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb5b146e drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb79d66d drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xddbc9214 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1f0febd drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe34550bb drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6171b5b drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe726b84b drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8d6fb05 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xefb2909f drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4f12446 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4f7e379 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf55d29b7 drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7d342ab drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa6e3c44 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfabea10e drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfcd69aa8 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff6e172f drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff97d025 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffb0d2c0 drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x004a5f19 ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x065d0ed2 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x07b4e551 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0a5411de ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132b05be ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2e3e7574 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x315e45f7 ttm_agp_tt_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x36a33ecb ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3827ebd3 ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x390d76cc ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3bafdacf ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x436f0a56 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x47fa7023 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x48b74c02 ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4a272c87 ttm_agp_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4c35c863 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4cb6ab8f ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x520113b4 ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x52ac4d64 ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a8fdfea ttm_vt_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5c66187f ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cf59609 ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x625d88b8 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67b1d568 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x71a7ea28 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x757f6562 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7ac14ac7 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d55da85 ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d9f3d47 ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x810d032d ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x81395aa6 ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x828fe0fa ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84a13931 ttm_write_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89a443de ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8ba662bc ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d14adbf ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8f571afc ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d0eb91 ttm_ref_object_add +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9dcddc64 ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa2a129fd ttm_suspend_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa50aee01 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa73de2a9 ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xac7d9fa2 ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xad50fc74 ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb03b35ff ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb83c6470 ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbabefb8b ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc0fdd0fa ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc1c1d29d ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5f0c2da ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc8d5a35a ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcaee12b0 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd24a5e00 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd38189df ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd7cabf33 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd7f51742 ttm_suspend_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8a9515b ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xda1017da ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdd953586 ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdeb2df73 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe09ad4db ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe98de086 ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xea112513 ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xec2d9527 ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf3499de7 ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf3719901 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf4cfed1b ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf7eafe0f ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf897bd87 ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfdc49991 ttm_dma_tt_fini +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x01f2c685 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x3d2cc18d i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x92378c53 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x99d3587d i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xd69c0549 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xaa518674 amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x07ed0790 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0cdbad19 mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x24744756 mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x2cb24929 mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x2d03692a mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x2f5c7950 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8039aeb2 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9462dba1 mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9d93f464 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa041292c mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xcd094597 mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd3726cff mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xdc51121f mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe68a55f3 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf7602db0 mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xff9cd93b mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x47c06e8a st_accel_common_probe +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x536208d1 st_accel_common_remove +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x76d8c987 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xc163ccf7 iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x0f888483 devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x6b5d82a4 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x7e7b2468 devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xe170ee9e iio_kfifo_free +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x34e031c7 hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x645abc16 hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x7c9ea3ca hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x860ecbc2 hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x8e59c832 hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x9628dd4d hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x24614286 hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x35d115a8 hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xb9d84f7b hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xc2b87113 hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x43f06eda ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x4d9c2e32 ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x6772d301 ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x69a47d14 ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x6b014895 ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x7db4e19f ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x98370162 ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc21e1f28 ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xcbb95cd6 ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x6d5dc0ed ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x91548470 ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xb0b5efda ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xd6513b9a ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xf86ea7c2 ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x0af94104 ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x33490246 ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x9921cdbf ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0d1a8427 st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0e4ae754 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1469f101 st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x16e852c8 st_sensors_get_buffer_element +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4c04bb30 st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x609d8420 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x75378485 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa5776f33 st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa92ea0c9 st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa9e72206 st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xab47a70f st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb11e9045 st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc002ccdb st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc6606cb8 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd24180cb st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd47d866f st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xeecb1b69 st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x4b324377 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x85f2ddcd st_sensors_of_i2c_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x229ee184 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x6c57f449 st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xd3ebe2cc st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x11029eb9 hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x298f07d8 adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xf8eeb913 adis_enable_irq +EXPORT_SYMBOL drivers/iio/industrialio 0x1e32a0e0 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x3489a0f3 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x4e3f30b0 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x6e42eb9b iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x797867da iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x7ec91c07 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x8cbfad54 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0xb3a0c761 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0xb5da261d iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xc1cb7309 iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0xc22561ee iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0xc60cce82 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xda1107fb iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe584582a iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xeb08b790 iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0xf011446f iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xfaf93698 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x508336fa iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xb9035aa4 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x297b9e98 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xf316c357 st_magn_common_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xa4ecc61a ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x460d3766 st_press_common_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xfadf6bdb st_press_common_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x049ace30 rdma_addr_find_smac_by_sgid +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1ea5767b rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x32a8402c rdma_addr_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x4dc57e4d rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x54a10921 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x672d66d8 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xd0cac21e rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x09135d42 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0edbbeb7 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x101a1714 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1e759d56 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1ed6313f ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x230d9e56 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2cb1f886 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2e2ecbe9 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x542eb8e9 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6132617a ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x67e41efe cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6f2fdbc2 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa9a091d5 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbb8b1e43 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xde0744f8 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf045b49c ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfc6d985c ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfe0e6677 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06b45080 ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06bdd3db ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06c15425 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06d28a2b ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07cdcea5 ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08a74566 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c3610bd ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c818efe ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10a23fed ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12bda65e ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x132d882c ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1615a3e9 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1744bd7e ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x245ce021 ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29578f5f ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29f4a119 ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305bab07 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36748d4d ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37e06173 ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37ff3ddc ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x391bd2b2 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x409ea349 ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x435d1c50 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49886bd3 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ac72af6 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d79b3a1 ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x563371e3 ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56fe4910 ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c7d83ef ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ca1743b ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x652dfa8a ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6901c2ae ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d42d1b9 ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6dcbf846 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7271aaa6 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72b33fa0 ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75b5badd ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75c95539 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77388016 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78dd6089 ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x790cf6ac ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b32e465 ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f0e7350 ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85e6bbfa ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89108f99 ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x892c373e ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e29f6ec ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x908563cd ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9bdac734 ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1a0f1b0 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa24dce38 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4b3516e ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa586addd ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa663ba0b ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae3511c8 ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf6ebb23 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb17d3717 ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4966987 ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4f1179f ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb73f4ba1 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf86fc56 ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc23a974f ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc26c1234 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc486341e ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4aae2ac ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67d36a8 ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7a60594 ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8b247c3 ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca87ba87 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbe26fc7 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd09cbd41 ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd35bba82 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4f7796d ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd60cc9a2 ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6474cbf ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9f5f8b7 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdeaee22f ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe103a195 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe98b4507 ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9c87032 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9d689e6 ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2efa08e ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfbc1c3d3 ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x57adaf42 ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x5dfc07ca ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x67e48745 ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x75b5236e ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x77c06346 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b01c02a ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc1d5ed2e ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc407230f ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc69332a6 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xddccbf7e ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xefef5138 ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xfceba45d ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xfe867eb2 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x0f7078a6 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x3676d7d1 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x4762bc33 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5328d7a6 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5837be9a ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x70435fc7 ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x7da184b8 ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x862dd961 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x92574c5d ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9a1cd50d ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xbb121908 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x34f66f13 ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x93a919fd ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x103da584 iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1678f545 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x19516e7d iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x352f8186 iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6b8ddbaf iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x72ea6f82 iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7429d646 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8f713b8a iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x917f8979 iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb8b5ee89 iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd40ca89b iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xdc5fec4e iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xdedb4c3c iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xeb25bf4e iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf6719fd3 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0042f2af rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x216407c6 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2190b0d6 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3f977fb3 rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x602990fe rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x681340ed rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x740ae325 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7df0a32e rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8681ee40 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x97effc99 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x986d1bad rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa1e9ad52 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa81c3f3c rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc7cdcd33 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc9285c48 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xca452fa7 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd4b6a0bb rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdd23d72d rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf81596a2 rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfa3240c8 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfae1d3e7 rdma_get_service_id +EXPORT_SYMBOL drivers/input/gameport/gameport 0x10b25944 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x3b10172d __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7d58c58d gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x93ec78d3 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x992e5daa gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xcafd182f gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xd286509f gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xec2e36ac gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0xf8dbd129 gameport_open +EXPORT_SYMBOL drivers/input/input-polldev 0x263d30fe input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x76033188 input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x99a58054 devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xa6036af1 input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xae30c23d input_free_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0xc3d80db9 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x3a35eedc ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0xd7100c58 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xfc98cb65 ad714x_enable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xc5be4c9e cma3000_init +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/sparse-keymap 0x0837fe3d sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x506a892b sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x7a82b515 sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0x8ab11e21 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x9dd85266 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xe1f6286a sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x219a1ad0 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xc1e3d419 ad7879_pm_ops +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x1484c964 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x27fac3a8 capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4eee04a6 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x607b4a0d capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x70d08166 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x73d97de4 capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8b0a6868 capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa7c4fd6c capi_message2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xabd5a50d capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc10fe128 cdebbuf_free +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd54bef01 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8ad9bd1 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe94ed2a3 capi20_release +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x04abf6d4 b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x04da3ffb b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x29251bb7 b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2c66e97b b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x48508764 b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x4ffc7853 avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x570666b0 b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x7095d3c1 avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x70fa7e1f b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x81b1b0bd b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x9a85de03 b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xa07dd793 b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xab93d90a b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe34aea41 b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe92e0dcb b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x097fe72e b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x15a83737 t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x1a0a1120 b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x4a6275ee b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x58cce221 b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x595dac6d b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x72bd03be b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xb178a387 b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xf9bd3d89 b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0x29562993 b1pcmcia_delcard +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x6daf7002 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x7dd1f2a2 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x8d841cf6 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xc836ddcf mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x4a804008 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xd17c2cc1 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x17ea45c5 hisax_init_pcmcia +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6fe1ca04 FsmDelTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9f987c85 FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xa1bc94b9 FsmInitTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x470b71e0 isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x4e12f9fa isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x77e7f2ff isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x7da5b853 isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xb38ff8fa isac_irq +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x69568aba register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x8cb467d7 isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x92c4babb isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0df4d8c7 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0fe7d343 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1f06ee6a mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2f0c670e recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2f318f70 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3347843b recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x347578a6 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3e7a6031 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7262cf61 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x73ea2946 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa6d3ba03 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc2a11d73 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc5bf8fb5 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd42e4e8e mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd795e5dd bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd7dfebd3 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd897753f recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe17b5874 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xea8e24e1 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xeda24848 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xee6804bf mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfa81f7f2 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfe42312f get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/md/bcache/bcache 0x0c4d0956 bch_btree_sort_lazy +EXPORT_SYMBOL drivers/md/bcache/bcache 0x10dc0d06 bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0x26c59710 closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0x370b8283 closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0x66d28e22 bch_btree_iter_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x6969b5d8 bch_bset_init_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7b55ca4f bch_bset_fix_invalidated_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0x91272803 closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0x9e8b3cee bch_btree_keys_alloc +EXPORT_SYMBOL drivers/md/bcache/bcache 0xab2d2b84 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0xad29a6f5 bch_bset_build_written_tree +EXPORT_SYMBOL drivers/md/bcache/bcache 0xaec09a2b bch_bkey_try_merge +EXPORT_SYMBOL drivers/md/bcache/bcache 0xaf77343c bch_btree_keys_free +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc04554f7 bch_btree_iter_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc0b9ef00 bch_btree_sort_partial +EXPORT_SYMBOL drivers/md/bcache/bcache 0xca580595 bch_btree_keys_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe47e0829 __bch_bset_search +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe67c2d16 bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0xef2790fc closure_put +EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL drivers/md/dm-bufio 0xa7978f56 dm_bufio_forget +EXPORT_SYMBOL drivers/md/dm-log 0x0ff74b3e dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x2c561b97 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x3f05866f dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xcc12bbdb dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x246c4504 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x2e586af8 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x4074b2a3 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x762abc00 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x8ac46412 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x8aca9ceb dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/raid456 0xd0af1d85 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x03b2de1a flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x11a24de6 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x36b31d5b flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3d1ca0fd flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x42618527 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x435b2763 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x43667070 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x494b151a flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8eaecf06 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9004e33d flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xbe42423d flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc346959e flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfa80bfbb flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0x204ddddc cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0x30cb4cd7 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x3c6f0fe3 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x6896abf8 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0x758e133d cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x190da31c cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x0fdb7385 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0xd271f0d3 tveeprom_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x02657340 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x07da9f92 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0c736816 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x112bca86 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x19591134 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x22d6ce4a dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x23f566b0 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x28ee2ae8 dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2960b352 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3314df55 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x38a9c898 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3f7224d5 dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x49711424 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4d3b9a9c dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5342588f dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x53815b7f dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x627e48f4 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x65886421 dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x681835c7 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6d26aa55 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x78d62338 dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7a11cb71 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7ba5d8bd dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x87542111 dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8a8d2e1a dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8e47dce5 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x975e5f30 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa20667fd dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa258c6cf dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac7f4988 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xadf2326f dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc1e39616 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd09c9aad dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xda4dab36 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdb576668 dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe0eba0e0 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf3cfd82f dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfe84a9d5 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x8187ff1e af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xcaa895cb ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xc9d5b3e1 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2b9853c7 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x363c76b2 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x47c3826d au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x49c80d29 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x52e2d0cf au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x69619c61 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x94343f82 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9631aee5 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xeefe8f20 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x404decfa au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x807095e7 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x233385fd cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xeafd1f6a cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xecaa4921 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xdb063d90 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xeaf7ff95 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xa4f0b654 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xe554faf9 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xc44f32ed cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xd5d56440 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x1ca45e0c cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x51e4bdfd cxd2841er_attach_t +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xa9f5e451 cxd2841er_attach_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xbba7d749 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x02c90244 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x232d15c4 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x6cf22a73 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xcc8ba91a dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xeaec8730 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x29b719e7 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2ede24cc dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x33f30c05 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x47d0f23d dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4d032ebf dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x564d8c4f dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5dbb0d25 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x72cfe936 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x830bee5a dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa5563b0d dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbcb163c7 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc5cf4625 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xcd5b1596 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf14d1b33 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf2d27e7c dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xe0c412fe dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x2f54ac86 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x69bdf267 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x6eeaaeee dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x8405390e dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x9fa856ef dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xdeff0534 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x39ddb4c7 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x85e7d408 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xa8774fa6 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xc2768d86 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x218f4750 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xe36e09aa dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x11a39477 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc3ef7aa5 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc76c2587 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xdab1246a dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xf70c33e5 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x1af82210 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xd65d6752 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x52a723c3 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x4ffaa5b4 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x6eacc656 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x27206d45 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xf23abcb2 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xa0a31a6f isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x7a3f3fc0 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xaf171444 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x58df63d6 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x87b0844d ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xec134a25 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xcabce788 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xab6fb26e lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xa65be343 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xb45b2cfc lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x0d06c74d lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x0807be91 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xde671c23 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xe466f752 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x1f3aacda lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xc5f0a29c m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xd18062c1 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x5d193c88 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xf5dc105d mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x69b594e4 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x7651122a mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x3490f7fc mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xdc6190d3 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x564c1289 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x67bf60e6 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x1f21edaa or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x39ebb10c s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xad3f4358 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xdf0cc241 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xe49a049e s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x3c92fc16 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0x328ac184 si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x55aa7db5 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0xf1fe866f sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xa24b44ae sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x5d715593 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x00c16cdb stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xd3f5eeb7 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xe3bb9f94 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x0c9b3663 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xe21973e9 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x956ff0e5 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x9636c8ff stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xf54cd9c0 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xba1fd5bb stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x7b52b740 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x3c208ca6 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xed358f9d tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x77791b0f tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x7949ac49 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x450ba910 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x711e0178 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x0950eede tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x36fcbb79 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x4e8985a1 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xe3a6d45d tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xf8077162 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x515c7780 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xcb0bf11a tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x1a415cf2 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x684c5413 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x2a98e7af zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xeafd5fad zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xaeeb6ae6 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x0923d0b8 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x5fd2a263 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x64e1741a flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x66fc1ee8 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x7bae7a0c flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xd0d3d2e6 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xd63170ef flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x5d56d75b bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x69a8969a bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x7d4e2b32 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd3263840 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x319a744f bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x6dd90b5f bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x7d541ffd bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4a73ec2c write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x504d09cb dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x53a274c5 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x71ca0208 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x78c242e7 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xbdf94737 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc3e0d68a dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xddf38ec3 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xfde00a8c rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x3b9acf32 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x0939eec6 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x0d4f628a cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x4ebb16a9 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x5876c075 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x8dafbc89 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x1b7dabaf altera_ci_init +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x180c24aa cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x1c6df8db cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x301ffd64 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x74f900ff cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x8c69c562 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xcfe423ab cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xfe3d6f51 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x19ceaed9 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x38c4e67d vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x77445687 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x785b02f8 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xc94e20d7 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xf137c447 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x2575bb44 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x36d08d64 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x6bc9aa48 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x6ec4ceba cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x858247d2 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xa5cdfd18 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xda15d975 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0c4d236b cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0e4ef3cb cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4e433b1d cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x681559be cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x795dd6e4 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7d56285d cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8184ca64 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8ee8ac13 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x936cceab cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xaafec0ce cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb3a0bdd4 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb595e3f3 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcb547eb2 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd3c0597b cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd5341703 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd8482b3f cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xee1127e9 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf4088dfc cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf5e63142 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf913329a cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1cb7d902 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2c4a4a2e ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4d8e9ce7 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x516a4a76 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5d62378e ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x75fe1ee2 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x91bba334 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9d630171 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xaf018e4a ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb4ed1dfc ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb87d9590 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd557e7a7 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe955558c ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xeec759ee ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf771054b ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf9450204 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfdbd4050 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1d23363a saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x277fb4bb saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5b2dd3da saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6bcf7b74 saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x81cd8020 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x907d21d6 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x93ea5d7e saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9a3c56b8 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd4959162 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xeac8f4c9 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf659c77c saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xfb69b719 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x59001252 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x5fcb7f6e videocodec_detach +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x77024b65 videocodec_attach +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x77f0a918 videocodec_register +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x887352a3 videocodec_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x268a9a79 soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x7ec084f7 soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x7eedb967 soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x8f4c8141 soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x9eff06be soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xa7b61d36 soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xc48bdc68 soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc +EXPORT_SYMBOL drivers/media/radio/tea575x 0x08186573 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x1aa7e314 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x5182ce1d snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x5b8e09e5 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x8760dc90 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0x92d8e1bb snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0xf8754188 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x4b22d942 lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x7c416196 lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x7cf0d9c5 lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x7e935ccb lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x98dadf5f lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x9e65ad87 lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xc5120588 lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xf54f4ed2 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/rc-core 0x537ab565 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0x75ddc788 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x06e8b7e5 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x8b82bbd0 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xc06f5117 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xdd3e0140 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xdfc2702b fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/max2165 0xca119bcb max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xe914dc98 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0xd074615b mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0xe83cd67e mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0xfb6f4467 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x615a9a6b mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x82c0474d qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0xea77afd9 tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x6395ab15 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x91851d76 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x4c7cde47 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x06b8b23a cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xc768fbee cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x4aebf7f3 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5c8aa29c dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x60ba294a dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x64e02ddd dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x78fad13c dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8e6661a7 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x90ba3d27 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xeeeacf1b dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xfeead39a dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x3ff428f0 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x76121809 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x76284e60 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd5ab2dea dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xdf60b985 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe33f03e8 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xfed0b043 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x251d8382 af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1e20afa7 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x38d5788a dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5892b1b7 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x652ba2bf dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7492e562 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x90934aa4 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xaf8dce01 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xcd14a1b7 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd7c88fbd dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe4429baa dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf0d09244 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x32b136d6 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x6a93cb86 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3e5c10a2 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5f82ee33 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x78262bbe go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7cd3f073 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7e109b83 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x948236fc go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x98115f26 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa5f87276 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xda3415c6 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x0099827e gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x223a9459 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x3ec3cadd gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x4c2a8998 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5f7aba69 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x92c28773 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd395cced gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf0d01c1c gspca_resume +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x0c52fa94 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xbbc62e64 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xe360188b tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x5ccf5ddc ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x77085c16 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x2edd06d0 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x49124aac v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x4b6009ef v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x03bc9a0b videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x073e85d3 videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x2617ddeb videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x533b3e0f videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x6da4c3ec videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x70373bbb videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x298b8b85 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xb0f9895d vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x3ba88695 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x616c9ff3 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x9bae75c8 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x9cf78784 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xd51a770e vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xecfc8645 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0x17548050 vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x028d52ca v4l2_of_put_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x02d2e6f8 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x03f51836 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0653c1c3 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0d14e638 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0e7ec6f5 v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x12e807fb v4l2_of_alloc_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x166fb734 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16e2da7e v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x17a0f43c v4l2_of_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x18954a37 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1a8bedd3 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1fb0d2f7 v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x20031317 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x20e3b941 v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x27d72784 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x317a5584 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x35e866e7 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x373380fc v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3fa0b03f v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4be51bee v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4e4fdead video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x585d9f24 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5f255e6c v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5f66bc47 v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x61086087 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x61d89caa v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x63d66693 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x654961f4 v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6d281b56 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6d2d5031 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7592634e __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x762e0937 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7c9c54fc v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7f93f5b0 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x834b6d17 v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x86752e81 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x880c37de __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x88c39679 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x90a055ff v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9268e953 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x93058a3c v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x939e1d5a v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9cd868f0 v4l2_of_free_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa6277641 v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaa3d89e8 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb2ca887e v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb4743eea v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb59d60da v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb6e90217 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbeea2806 v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd5f39646 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xda428119 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdaeb2050 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdd121dd2 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdffbe020 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe231041d video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2e30272 v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe531c90b video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeb9646a2 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeca787e4 v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xedc4b53b v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf11d4a3b v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf1a45f45 v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf30408a1 __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3788b57 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf37a293d __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf5a262f3 video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf60231a3 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf74a3b31 v4l2_of_parse_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf8e62783 v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfe1d6530 v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfec86cbb v4l2_queryctrl +EXPORT_SYMBOL drivers/memstick/core/memstick 0x0415bf27 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x23b0e19e memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x3a767ccb memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x42bdf482 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5fcabfab memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6bd7641c memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7ee3c727 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x8d49920f memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x930f6229 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa5987a36 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb3f1cda0 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb490d2fa memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd4dcace6 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2aba0322 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3803d52b mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x45bccac0 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4c0f377e mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4d438ffa mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5ce2b981 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x605d3b48 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x629ae04b mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6672042f mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6784181d mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7185c376 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x76b8a35f mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9270d792 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9c95d885 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa4564169 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa83e3c9e mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xad4b83e4 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbea10016 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbeb7a1b8 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbf8bce98 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc9537dc3 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcf1ff5c1 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd19ff8fc mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd67e1a34 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd8acb4f1 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe254eb9d mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6940d98 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf08fafb6 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf0b77d76 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x11c87a7a mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x13689b27 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x217d761c mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x26912720 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2abe25ea mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2bb3b933 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x333c40fa mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3b1e679f mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3f4bf2bc mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5109f97b mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5d02c32e mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6cb953b9 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7024adca mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x716d4ec9 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x71d5ca21 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x72ef578f mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7835b6f6 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x80f24dc5 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x82bb2731 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x85c1fb50 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8ea3ca9b mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xad1e51c9 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb8e2cd17 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xccd367ea mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd6633530 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe3d6b39d mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf507ef77 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/mfd/dln2 0x3ed4fcf3 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x843e3d22 dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0x9f55e40f dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xece43b1f pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xf94c759c pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x06082208 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x125371d4 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x219ca60a mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x50f8391f mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x55bf68fe mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x57a2a3b3 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x64da79d5 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6d46d15e mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa015e333 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xcce0212c mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xec9f7153 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 +EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 +EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib +EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led +EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw +EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x327b6041 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0xf8eea40d wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x1bbea26a wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x5793c5ff wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xc8f1c7d2 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xfacb7c4b wm8994_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x13c026da ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x6b69edc2 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x37cbc168 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x42c8ce69 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0xb8ae2ef5 c2port_device_register +EXPORT_SYMBOL drivers/misc/ioc4 0x8d5f4708 ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0xbaf7f2a0 ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/tifm_core 0x3594332e tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x3d1fdb2e tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x3fe23021 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x7e3513a2 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x8292eb2e tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x845a3944 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x8541fe69 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x94b33266 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x9533e8a2 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x98efcddd tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xcb5a2680 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xea220e7e tifm_map_sg +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0x270316f4 mmc_cleanup_queue +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x4004c83f cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x420ca555 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x71974e91 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc34dc677 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd13059b0 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xdce0778e cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe38fb640 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x045309a8 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x4d3df223 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x68acae18 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xb670264c unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x83b4f6ee mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xac72ffb7 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x6b6f237d simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x6f0338b5 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/mtd 0x7cc3c6cb mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/nand/denali 0x168630f6 denali_init +EXPORT_SYMBOL drivers/mtd/nand/denali 0xb15adab1 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/nand 0x097c6d62 nand_lock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x41c91568 nand_scan +EXPORT_SYMBOL drivers/mtd/nand/nand 0x54ac2dc3 nand_scan_ident +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/nand 0xb4244a1e nand_scan_bbt +EXPORT_SYMBOL drivers/mtd/nand/nand 0xdec812ae nand_scan_tail +EXPORT_SYMBOL drivers/mtd/nand/nand 0xe5d794b2 nand_unlock +EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x913c7826 nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xdb5e2f40 nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xfd7177b8 nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x09854a34 nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xd00015da nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x8cfcf75c nand_flash_ids +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x0902661a onenand_default_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x2701be25 onenand_addr +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x36831dea flexonenand_region +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x41f3c4d7 onenand_scan_bbt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x358d3a4d alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3c93f893 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x53808281 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5d43bda5 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x813256a5 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xba443d49 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbf1c3210 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc28446db arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe28596b5 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xeaf51d0a arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x0d63893a com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x914fc744 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xcab9096c com20020_found +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1686d8af ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x32a89899 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6225e116 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6501929e ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6ccfef95 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa76d1685 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa888966f ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa93a4a7a ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xcf81938e ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xda4cc986 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0xaf6e2268 bnx2x_schedule_sp_rtnl +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x44adc551 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x03349e81 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0bca4cc5 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0caac0a2 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x138a0696 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1e001045 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1e098e65 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x341bbf62 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x412a7904 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x49464224 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x59ed63e1 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x631e2cec cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x768c1773 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7f6351d5 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb1b36535 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdc4f8913 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf347b078 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x05ec7ff6 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0c43a498 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0ca67cc4 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x12d51d0a cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x133c9c7c cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x18673469 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1eca4fdf cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3b880136 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4645b7dc cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x476496c3 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4d8992cc cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x538c309a cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x55df9e94 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x58136816 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x59a09a34 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x60de3ba3 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x614c86c9 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6c40cce0 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x76236da8 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x77f5a90b cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x78e8e905 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7c879af3 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x807f9a2e cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8843eb36 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9f9a0581 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa2eafcad cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa2f6119b cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa46621db cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcbc84a55 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd683182f cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd74e91fb cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd8aee25d cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd9ac7465 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xef998571 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x0cb8af04 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x24b4ece1 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x467bf3d3 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x52fcc26e enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x871db4a5 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xeac8a862 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x42d9086c be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x5a7d0dbe be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/freescale/gianfar_driver 0x79f28897 gfar_phc_index +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b72ffff mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10191ad0 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12e9691a mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16d8b78b mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18ed6c1e mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a7408a2 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ac59a17 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x392ac12c mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f6f3c1a mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40e99e1f mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48bd8550 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58abcab9 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f7dcffd mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x634b4054 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6aeebd04 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70acb452 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7370ec7e mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77528ba5 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ae31d77 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9846eefc set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x997e1cd9 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99f0570b mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5e73c55 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9a0a14a mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa558940 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc63f0bfd mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca6f8c25 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb2e01cb mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc87eacd mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd877fcfb mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd93b33df mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe56335dc mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb953c7c mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xedd2a14f mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2d7634b mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf61573e2 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7930239 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb5993f1 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04883c7f mlx5_query_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0857aabd mlx5_get_flow_table_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c2f0069 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e98c2f7 mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb7287e mlx5_del_flow_table_entry +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0edb047b mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10824197 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x183b4111 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1de23a07 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x213a8a27 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2812be6a mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c44b840 mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38867d7e mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x541e7f95 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5cf50091 mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6437170b mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b8fb786 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72b5f87d mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75a05802 mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7cac34af mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99a17b67 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9adecbd0 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e2264df mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2b168d9 mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xadcd6c17 mlx5_modify_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaede583e mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2d3518d mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3efecfc mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc80a9218 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd94af10 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd99b519 mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd16066bf mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbc06d7a mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc1f9884 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6af33e4 mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe88f903d mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed4dd651 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xedfbc226 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf08632e3 mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf23c08c3 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc728a49 mlx5_add_flow_table_entry +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe747063 mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x40690181 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4fff95e2 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x791d0f51 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9e22b5f3 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xac451dea mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xba89b849 mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcb5c8545 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee8e0771 mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf998e95d mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9d5e5309 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa209d1af qed_get_protocol_version +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x193cda30 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x308200e0 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x44277a4a hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x6dc1e8fd hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xf64d7558 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x40654f47 sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x563920f0 sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x567dcc52 sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x66ea29b3 irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x7369c00d sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x76ee6094 irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x8d3e8f66 sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x948b320b sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xe03ec3ab sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xff413c8b sirdev_get_instance +EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mii 0x2a7a2eaa mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0x634fbcb6 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0x6c03ff93 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x956b591e mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0xc17c58a7 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0xd44b686c generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0xe41674e7 mii_check_media +EXPORT_SYMBOL drivers/net/mii 0xf0cc140b mii_check_link +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xbf8516fe free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xff049c2f alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x9a3c0540 xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xeb5a6691 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xf4c4fb29 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/phy/vitesse 0x9c16bc5f vsc824x_add_skew +EXPORT_SYMBOL drivers/net/ppp/pppox 0x052e770d pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x3a50934b register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0x885ed395 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x640a16ea sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x0d06d479 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x4601c2cb team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x4e97c77f team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x5d83d3fb team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x923deddf team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0xb95343ba team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xcd40b48c team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0xd0fdee2b team_mode_register +EXPORT_SYMBOL drivers/net/usb/usbnet 0x48aff3b4 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0x7c86b417 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0x840ed181 cdc_parse_cdc_header +EXPORT_SYMBOL drivers/net/usb/usbnet 0xcbb72bb8 usbnet_manage_power +EXPORT_SYMBOL drivers/net/wan/hdlc 0x1c5cd379 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3d73adc1 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x50a24b29 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x5b7c5298 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x62763292 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x6b87ab2b hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x86360ad3 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x8726d23e hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa051d6e5 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb2971aa9 hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb8da1b78 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0xaff100ae i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/airo 0x302a1969 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0x787eeae8 reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0x91a93329 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0735987f ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x21d63857 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x23691c38 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x40001632 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x60209bf8 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x62e0e132 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x65c0b556 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x895d34e5 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd0346824 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd74f624d ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe87e6c65 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xec89592c ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x36597409 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3b770919 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x49f0fa80 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x76c879fb ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8c2f897b ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa319bddd ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbf1e2ea1 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbf538a5f ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc1c60fcb ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd30f256f ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdf70db58 ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe0fa94c7 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe18223b7 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe680fb54 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xedf0d080 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0cafc48b ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x31b831f6 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5f2a5053 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x65a60823 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6c52ea42 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x87aeedf7 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x9cbe1d60 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x9ed3ecce ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb61946e8 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xdc8c11fe ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf47470b4 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x07f281c4 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x08e4b1ef ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1120ab7c ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1feeb62a ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2349e002 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x285fad1b ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2f6e364c ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x39a9a5e0 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x419f8666 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x421319c8 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x53301c46 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x54c426e2 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x73bbe6e7 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7b051111 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7e46d176 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8dd71178 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x94b5b238 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x95518f1a ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xae98ab2c ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc292f9c4 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc6e2ef11 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe424ad6f ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf86cc416 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x004f32ba ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04e90265 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x09c5515b ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d8f6006 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x134dc7d4 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x139025dd ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x180f5ea8 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x183f649d ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a83e513 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ad6a9a9 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x20e79b9f ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x226252fc ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x232fbdb8 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2570c306 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25d97ccb ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2776809a ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x297b8d73 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2bd9bdbd ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e3d7dc0 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e963871 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x36401f68 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3826ca23 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x39ec2865 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a3b0c4a ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4181a8ae ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x441fd0d5 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4f0cba8a ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53eed77c ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x560c9ae1 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x597cdb7d ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x59cb54e2 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x59d80b37 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a296824 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a809dee ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5fb70de7 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x60a415c4 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61909bea ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x678a6582 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ee1a041 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x70198db3 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7379a32c ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7639185c ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c335d41 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x819148b3 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81b2947a ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x836dee71 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x839bddaa ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x83ab57f9 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x84d69946 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x892e3d9f ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8996f028 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8b926426 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c032392 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c62414f ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x910a8452 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91fbd84f ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x925d6f38 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9271b4c4 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x944ec8f5 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x95cc8e8c ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9905f57d ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x99f23293 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9e147f57 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9e253cbf ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa0437c66 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa23e6ee2 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa254e3c8 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa26e1b9d ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa2aba45c ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa2ad3081 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa2cddee9 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa48a033a ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa640b4c7 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6516875 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7bf6e54 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa063195 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xac7ca4b9 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xac9571b7 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad4a9160 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf388a25 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2d9e0f6 ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb57fb720 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbb79fce0 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3143787 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3164ce9 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc86d39a0 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc88ded53 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xccb524a5 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd14e9625 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1bcaa05 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4771e3d ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdbacba0d ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdc3cbbfb ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdc3fdebc ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdefd41f6 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0b86bb9 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe8ad1ed4 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xea582764 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec6624d0 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeceab20e ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xefe21360 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf7e17561 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf97704d2 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfa85d3d6 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfad002ff ath9k_hw_request_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/atmel 0x0ba7ac0a stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0x5edee60e init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0xb637895b atmel_open +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x1b1ef576 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x1d1d2ad7 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x2aaff636 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3537712b brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x457920de brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x480f3e14 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x66a2d128 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x72102faf brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x876be059 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x90eb0a63 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xbbe11bcd brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xc3477ae5 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xe538f59b brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x090b12a0 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ad0bf9c hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0b1c8cc8 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x15db1b5c hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1d41fcca hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x22ed46fd hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x31a693e4 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x374bd0c0 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4ac1a14d hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x603e6a23 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x71533807 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8875d998 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa37e700a hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa3fa33d1 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb3a6c7d2 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb7303921 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbbcbee12 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbd011eb9 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc61ecf3b hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xcd5cbc14 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xdab2e3a7 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe17eed33 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe29cd2f5 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xed200c4a hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf2b32067 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x04a1a4d9 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x15379563 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x23870e19 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x254d6443 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x30c2ea2f libipw_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x380986fe libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x39ec8b6a libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x40e6f43f libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x41141df4 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4399f23e libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4cba5d90 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5ef7f4e0 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x67a9f41d libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7e33b594 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7e569993 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x8ee88bf6 free_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb4832bcb libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb7c10f6c libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd1357973 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xea27ffe1 libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf69478c2 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x018d9df6 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x019957bd il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x03238f6a il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x03c66e62 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0a96c842 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0cbe643d il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0e4143d1 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x10616935 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1686a8a0 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1763fcce il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x17f01e58 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x185bb1cf _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x196d1879 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x19af0445 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x20c24545 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2325a966 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2467db9a il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2abb0eae il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2becdf4d il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x30430e5a il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x39253442 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x39ef5752 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3a3c2b5e il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3d267b90 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3ddf083c il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x47a426b5 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x48c90528 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4d8303ee il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x50ce8824 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x55330995 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5aa23e84 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5b6f2391 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5c7e5ea4 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5d9dc45f il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5e6df73c il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x68a7894a il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x68dfe9fe il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6a66b0b3 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6eb2a0f3 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6f5605db il_set_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x71d3b049 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7281c9cf il_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x79bc238c il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7a33f9ac il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7ba655d4 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7c875e13 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7d3a1946 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x803f7744 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x80fbe174 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8609735f _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x870758f5 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x871feb21 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x88dc1917 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8dd0dd9b il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x938a5a34 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x93ac1ae7 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x94f67bc0 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x95532e9d il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x98b42dda il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa0a762b5 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa18a4477 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa2ec639a il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa43a81d9 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa7c199a9 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa99af640 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xad2b0769 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xafb05f37 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb2b405fe il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb8a3c9ac il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb99b402a il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbb77fca5 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbfb6243c il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc1ac042d il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc219c82f il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc4999257 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc629e509 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc93a9f5f il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc9d8442e il_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcc7f0012 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcd12a381 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd0a2412d il_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd2de639a il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd2edf895 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd3de33ca il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd6a3cf75 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd7fb9ebb il_free_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd8a3b056 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe157d08e il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe21636ab il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe40ce4dc il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xefa8b28b il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf0bf232b il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf37c606e il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf87f6041 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf8f76e1a il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfb9b5e52 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfc1d3a2e il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfed34c3b il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x08c6664d __tracepoint_iwlwifi_dev_iowrite8 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x4379786d __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x95a8ab3c __tracepoint_iwlwifi_dev_iowrite32 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xa2b6ec39 __tracepoint_iwlwifi_dev_ucode_error +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xb69add1f __tracepoint_iwlwifi_dev_ioread32 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xcd60e86e __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xd4f50457 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x1e390e48 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x1f597d9e orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x2da5c7bf __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x347d4691 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x35a11733 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x49add6b9 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5dea5bf1 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x76700bac orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x82605b0d free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x83f004fb orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x9031f40b orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x9cc5e0a5 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xbbbe0bc6 orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xbd309a81 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd7e2072f __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xdfacfa1e orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xf6702e49 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xff8aed9d rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x03da41fd rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x04f9d132 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x08d29b5e rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0a623072 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0fd7021c rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0ff54131 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1299620f rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1fbcccd3 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2100da21 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x249980b3 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2d76d90e _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2fe2042b rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3068e590 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3166ab97 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x340a7af8 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x39c6b7e4 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x425a3877 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4500e0ac rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5080deae rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x53905ca9 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x70720a21 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x72b2ac94 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7599d7d4 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x76399a23 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x77eff227 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7e0622f2 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x82ddea6b rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x83590376 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x96d8cd49 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9d230bd7 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa2eac4cf rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa6618889 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaa0e1281 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaee6e178 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb0f3189b _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc2d596e9 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe23c3421 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe3500638 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xed97b811 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfbe1ac03 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfee46034 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x4975ed1d rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xcdfdae1f rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xfeb68007 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xfeb852ff rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x2901bb47 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x35013451 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x351c4f73 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x8f9acaf9 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x25042ce8 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x25d0175d rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a109c0 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3599369c rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x35c7b698 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3e87a014 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x40f58107 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5ba46674 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5eef4230 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6037e24b rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6a520147 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6bac584c rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7ce82154 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x83ada940 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x87b08c92 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8df84678 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9ebc2e82 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xac58df4c rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaec91eea rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbaaad7b8 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcd194fc6 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xce068640 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcec8b19a rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd40b17ed rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd80d4f70 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdc7266c6 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe4560bdf rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfac9f835 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x3a909a67 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x922f6d45 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xa6fd9afd wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xd684b2fc wl1271_free_tx_id +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x728d847a fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x90e056ce fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xa1418a4b fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/microread/microread 0x2002a616 microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x3cff17ca microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x3720241e nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x91a8afbd nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xe8b2bad1 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x22e3748a pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x3db7c716 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x54893135 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x7d6ab7f3 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xe18d34ae s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x0252182c ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x6216ed40 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x6329237d st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7062b144 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x71582267 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa060e264 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xbfc32849 st_nci_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc53b9fc3 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe1be96a3 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe222665e st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe4838a36 ndlc_send +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x01c75091 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1ee014a6 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3750eac7 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3759e523 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3ebe5af7 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4b67a795 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x50882a19 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5d27e60c st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6d9177bf st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7c410cb7 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9aacb2b9 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9ac60646 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbb686c1b st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbde6a718 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xda9ab6cc st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe22ea6a0 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf2c48c32 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf40d1af5 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/ntb/ntb 0x4a092c18 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x5a8a65e0 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x7aa6ccdd ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0xa0e3386c ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xc30302a5 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0xc5f982f2 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xd29a31b8 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xd3a488c7 ntb_db_event +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x4e9913b8 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xa215eca7 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x731a11f2 devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x00439f4e parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x14177c73 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x2762cf30 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x31d506bf parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x3497e232 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x459838ac parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x4cb43e48 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x59cb0832 parport_release +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x5fc3274c parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x63d5f4d2 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x6666b3af parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0x6691c32f parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x742a4937 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x7d056d4d parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x90f0c33c parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xa2611ed5 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xa45cf977 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0xab4d1831 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xaba16dc2 parport_write +EXPORT_SYMBOL drivers/parport/parport 0xb0cf251e parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xb45069e1 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xb8ab5997 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0xc581e71b __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0xc6f7f5c2 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0xca4917c4 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xd24639eb parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0xdca7ca15 parport_read +EXPORT_SYMBOL drivers/parport/parport 0xe211d7df parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xe5b18dd4 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xef6916a5 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0xf309c29e parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0xfa283510 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport_pc 0x4c6117bf parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xce931812 parport_pc_probe_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x027efd39 pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0711bddd pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x092ba444 pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x15ae7350 pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x18b66cc5 pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1f408404 pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x20f743c3 __pcmcia_request_exclusive_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2acd7bcd pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4160e30f pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x42126f2c pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x515b5b78 pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x878ccce6 pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8989ef8f pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x92cb7f62 pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9ad282d5 pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xbadd209a pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd6f11423 pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdb4917b0 pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf703d3fd pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3b153174 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5aa7656e pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7a1f052b pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x904e40ab pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa8fe0b07 pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb06abcbe pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xbf1dc0fc pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcb2de67b pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xdbd70227 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf9b8eff5 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xfa4ed9da pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xb94585d9 pccard_static_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xf69120ab pccard_nonstatic_ops +EXPORT_SYMBOL drivers/pps/pps_core 0x7e64bc52 pps_event +EXPORT_SYMBOL drivers/pps/pps_core 0x96215e27 pps_register_source +EXPORT_SYMBOL drivers/pps/pps_core 0xb894237c pps_lookup_dev +EXPORT_SYMBOL drivers/pps/pps_core 0xcb58185d pps_unregister_source +EXPORT_SYMBOL drivers/ptp/ptp 0x4d4e1ad3 ptp_clock_event +EXPORT_SYMBOL drivers/ptp/ptp 0x6fc81d20 ptp_clock_register +EXPORT_SYMBOL drivers/ptp/ptp 0x75b0ac26 ptp_clock_unregister +EXPORT_SYMBOL drivers/ptp/ptp 0x9905077d ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp 0xdb18de32 ptp_clock_index +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x1005a949 rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x272fddf8 rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x29ffd72c rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x742b950c rproc_get_by_phandle +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x7fa7c930 rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xb529d8dd rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xc8861942 rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xce93c5a4 rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xd0a88363 rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xd83e9c51 rproc_boot +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x62f5fca7 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x45021bbb scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x7aefeb30 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x7ec20293 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xfeac8993 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x070a4eec fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1c0670ca fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2d1a67d3 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2e3f2cd2 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x52746f12 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x847e3008 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8e0ee43b fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa209198e fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xbd11e841 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc6696c56 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf46e1d61 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xff86f296 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x001a1846 fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x06ca172d fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x074f59a9 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0be1aec5 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0ca50e77 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x10076c4d fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x14718517 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x29845032 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x29ab6019 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2b110724 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x35f04af2 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36ea0fd3 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x370d8c36 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3ea3ada0 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4bbe82fc fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5225beed fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5af5be97 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5c2f976b fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5d5d14d7 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x619f4284 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69ec00b4 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6ab2ec77 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x79276738 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7c6f4d4f fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x80300900 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x809c5917 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8a0d6b98 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8e7ed785 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9267d495 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa52af9bc fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa5f1b168 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa6672aad fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb1410b21 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb2ca2b9e fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb4115240 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb447110f fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbce33475 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbf2f0ac4 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcde6f693 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd0a5964c fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd332fbb5 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd3a03483 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd7dbfc23 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd96bf818 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdb396886 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xed0c1716 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xed7525d6 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0eb33d9 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfcbe99aa fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xffc89cf4 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x5f4e3eb8 sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x6e0fb0d2 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x93c24720 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xe2027ee2 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2b6a407c mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x02fcbbd8 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1773c9cf osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x195af245 osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1cb8bcd5 osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1d0d2c77 osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3016b653 osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3065c504 osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x355d40be osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x364431e6 osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3c2cce6f osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3dd73288 osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x49e61f09 osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5d5945ea osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x60daaf50 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x65366078 osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6a392894 osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x701c0679 osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7daf743c osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x987c747f osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9cc5ed6c osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa6fd4cd3 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xaea764df osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb1846652 osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb4316ef5 osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbc614366 osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbd97143c osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xce4a20e3 osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd3da4725 osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdb5c8628 osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdcefeeab osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe165912c osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe2aa7947 osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe3fbd12b osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xeb805a33 osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xed1b07c7 osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf810978a osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/osd 0x249090d4 osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x43c8e54c osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5b080e91 osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0xae282a10 osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0xbc520000 osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0xc9fb811f osduld_device_info +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0a48d5ca qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x174791e3 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x18f136ba qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1fc78c15 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x483edb68 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5fb4c14e qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7483dc32 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc5cfd1bd qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcdb790dc qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd35c33eb qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd8aee946 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe83a1aed qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x074d099e qlogicfas408_bus_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x31822d84 qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xa7513fe8 qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xd4720fb5 qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xeb73b933 qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xfea6888a qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/raid_class 0x4e2d8232 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0x4eb8b177 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0xcafc3cc3 raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0de9d7b6 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1c04bd13 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2c32d3f7 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x59655657 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7b02a923 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8673bcca scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x90945fe2 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x995c21c7 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9b8ee30b fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbaa99d30 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xce9382e5 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd1f433ee fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xefa35936 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x07329a90 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x09cb081f sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x119f8a9b scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1527673e sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x18a01ab3 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x359f97ef sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x470650d9 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x50789d04 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x50d0af66 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x61b32cc3 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x62ac288a sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6332c76c sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x679547f6 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6f9ff2f0 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7a3fb64d sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7c644be2 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x912b307a sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x980e9c0f sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9d0085b5 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9d884909 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa5cf6d34 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa8aea07d sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc5477326 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcacc419a sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xddc7efec sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe4e836bd sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe787d503 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xec82ad68 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf3ce9732 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x40b6aa13 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x44eae743 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x5fe5cec0 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x665b405c spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x910d36a9 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x215fc948 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x3a399fbe srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x8a7673d0 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xcb104eb6 srp_rport_get +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x05440413 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x0eeae757 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x875e0e69 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x8a71049c ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xbed1da8c ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xdb6886a1 ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xf6e42503 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x114ecf28 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x115b1ab5 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x1f628256 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x4d621390 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x4dd1b196 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x52106b67 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x5429f79a ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x56f030f1 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x6a68bfd2 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x6fccfe78 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x7d32c547 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x8a2738e8 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x931837fe ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0xacdb8f87 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xb7d2dcf6 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0xb86b0038 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xcbff8595 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xd129d905 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xde4b3d15 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0xf4b69508 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1981283e fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1b35ace3 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1deb80f8 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x26fa7e5f fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x27e8d3c1 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x38c46da9 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x448b1653 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x48a5504a fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x54f3835c fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x57658776 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7e44abe6 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8202d8bb fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8bc03388 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x927ec5ad fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9ec44583 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa50c0e15 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xaa3f15f5 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xaed07442 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xaf1a7ebd fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb6cfe26e fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb9beaee4 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbba40ca6 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc208bb5c fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe38353bd fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x17885b1b fwtty_port_get +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xb14ed399 fwtty_port_put +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x163ac4f9 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x656affc1 hmc5843_common_resume +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x8d09b37e hmc5843_common_remove +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x94e696c2 hmc5843_common_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xcc20776b hmc5843_common_suspend +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x17c07d12 ade7854_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xad42a3a4 ade7854_remove +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0xce084654 cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x0c763e43 most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x012f936a rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0d2e6439 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0d760831 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x189e6528 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1a16d4d7 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2049f2e1 rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x24b51897 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x27dd435a rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2af73648 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x35ae6f83 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x39293897 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4e6d8802 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4fabf49b rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x54234de8 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x55ca6dfe rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5688ac8c notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5857eaf4 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5e0fde75 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6026c25e rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x639ac24b rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x64273dfd rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6cf7986c rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7c336e02 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x82a357bc rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x852c2349 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8e2b57a7 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8eca3f09 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x98bce753 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9ad98077 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9fd5a2c3 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa81c29e2 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaa580fd3 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb68c32c0 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb762b7f2 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbb0ec905 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbcf84975 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc4c6cad4 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcedfcb2a Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd1abf9a8 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd5376969 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd78fae9c dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdb86bd81 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdc4d3f0e rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe1812863 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe665dc86 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe719a7f8 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xee1a9922 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf145de0d rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf23ac463 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf88d29d6 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x029fc61c ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0404ca0b ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x041ee992 ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x110d6f69 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x124ad87e ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x14307e54 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x19ef82f3 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1a48e5ee ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x20d4ad74 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2449260f ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2536a593 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x26d49ae3 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x28ce581d DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2c9bab61 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2d8d917d ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2f6e2185 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3d44a488 Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x47b2beb0 Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x48a4713b ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4ec21d25 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x50a07bbf ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x65172792 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6e0c0370 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x777ec240 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x78532ddd ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x80e8f4af DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x92da3202 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9b81315e ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9cabaa64 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa63dc596 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa9eca31e ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xab04abae ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xafb892a0 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb7767115 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb7f53e15 Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbb6e92f8 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc0d3ad46 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc49b84de ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc643783a ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc73701be ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcd65bf49 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf4c2491 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd930fa36 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd990160c HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xda979d2b ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe04def75 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeaccdcc6 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xee27d3f7 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeec7c81c ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xefca234c ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xefd27439 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf1095d86 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf742ef5d ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf7c6a56f IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfffe9713 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x083af4bc iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0d4af451 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0e3de629 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x192475c7 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x30942f91 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x314000ae iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x39a8c75d iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x401c46f5 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x45399305 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4eda2d09 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5a2c028b iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5baedc72 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6cda4303 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x70f72f86 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x76d38389 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8b70b390 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa126e983 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa8eeab76 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaa13b198 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaaa3a29f iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb0101246 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb21f218d iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd175094e iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd2d2b616 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd873b411 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xda59a519 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xda7d46df iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdc1909bf iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/target_core_mod 0x021724dd core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x04c1c4a4 target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x0bf884e6 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x0ed2af41 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x111a0dfd sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x1e2fcee9 transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x23780beb transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x2a0a2177 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x2a5ca19e transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x2ad50d89 transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0x2f65ad9d target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0x32286b68 target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0x33aaf2cc target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x358b1034 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x3afe19a5 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x3b4e66bb transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x3d40ac99 transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x461d641b core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x49c46ce2 target_get_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x5fdb8a19 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x683e4983 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x68b4c021 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6ae3d7fd transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x6bcc5cbe core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x6dedb49b spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x7091ca56 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x713bbb13 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x755df6e9 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7628ed61 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x7c17b801 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dd7b1ff passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x90f5677a target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x91abe882 target_put_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x94fb26f1 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x95bc28e3 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x98b19706 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9a9b0614 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x9c93e926 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x9e91fda7 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x9ed9639d target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xa651c8a5 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0xa996ed0b target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xaaa32232 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0xad90dac9 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xaee55b2c target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xb04456ac passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xbb23f911 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xbcd6e9ee target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xc052aa42 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xc183bc46 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xc1ef9c6c core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xc4220bcb core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xc5f0d8c5 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xcc484f74 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xcdd03faa target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xce471529 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xcef84b5f transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xd2c23b13 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xd5e054ae target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xdbd8ac2e transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xe28bc6be target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xe39e8d98 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xe409af16 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0xe4c93d2e target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xebeaf7d8 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xed2967ef target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xee0a6ba5 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xfa189eff target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xff3d0844 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x6953c4b3 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xfd47aab3 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xe2a2db32 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0163e7d3 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2dabf451 usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x40c5a555 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x541e368b usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8a25ffc4 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa65bd882 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa740cc59 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb7f9fd43 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xbd6ed433 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd62b78b0 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe0ed2822 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf21f5a30 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xb4c12e86 usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xdd8edbab usb_serial_resume +EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user +EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x2e91ca97 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x367ce26a vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0x59f824d9 vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x7bda5e6d vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x821e9390 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x937e412c vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user +EXPORT_SYMBOL drivers/video/backlight/lcd 0x0d348133 lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x1aa28b5f lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x7acc4b52 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xd0c2bed3 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x02c4e90f svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x39f3c8d9 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x579df841 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7aee200b svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb78b4846 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc479bd18 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd6c95482 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x85ac5ff7 cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x056a6764 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x7f18a972 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x9dff28bc matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x5dda3256 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x7df3a0eb matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xdf693d96 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xef41881b DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x3880da7d matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x2df40e5a matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x12629fd5 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x2cc4ab4a matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x6bd0338f matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x80e9c4c5 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xa95ba08f matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xe1a33905 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x2771265f matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x67ca744b matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xad3f430d matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xb3191671 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xbf776780 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x8d960197 mb862xxfb_init_accel +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/virt/fsl_hypervisor 0x45fd1882 fsl_hv_failover_unregister +EXPORT_SYMBOL drivers/virt/fsl_hypervisor 0x77c9b191 fsl_hv_failover_register +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x33b6e13a w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x80ead7e5 w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x83bb0c24 w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xa71e438e w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x957115df w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xc203156a w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x40e8da3f w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x6c0156a6 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0x58a19d55 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x777defa6 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0x8e4dd853 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0xdc473bbf w1_register_family +EXPORT_SYMBOL fs/configfs/configfs 0x0095f0aa config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0x03b31115 config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x0f0a152f config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x13c61042 configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0x397bd6b4 config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0x3b7b5869 configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0x47e9183d config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x4ed36e75 configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x57ce0b7e config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0x5a86b7c7 configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x6d252783 configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0x7d2e6fa6 configfs_unregister_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x8db73124 configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0xaa352573 config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0xd1855176 configfs_undepend_item +EXPORT_SYMBOL fs/exofs/libore 0x070c9c21 ore_create +EXPORT_SYMBOL fs/exofs/libore 0x07bfdd9e ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0x11ad2930 ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0x1590deaa ore_remove +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x33ea3185 ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xb0eb30e5 ore_read +EXPORT_SYMBOL fs/exofs/libore 0xbdda25ab ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0xbf128546 ore_write +EXPORT_SYMBOL fs/exofs/libore 0xc624889e extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0xf4601e32 ore_get_rw_state +EXPORT_SYMBOL fs/fscache/fscache 0x0235a4a9 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x0917bd2b __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x0af5fbf0 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x0e3ce772 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x196ca069 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x1997267f fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x19ce7a11 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x1de158a5 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x2647ff14 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x271ec87e fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x328173a7 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x416945d7 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x476c353f fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x4815082c fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x4a8dc74e __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x4c67fac5 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x4e6c4b6b fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x50205baf fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x5807f68c __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x66e88147 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x6a7fc46b fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x72453d95 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x7a43a10e __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x7ca620ce __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x8801ef96 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x8aec6e1b __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xa0efbd5c fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0xa6b20f6c fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0xab6c6fc8 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0xc25b8f1b __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0xc85e465a __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0xc8fec162 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0xcd154f3c __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xcfe7761c fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0xd1a79b79 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xd2c77e9f __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xdc36c1f7 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0xde8b2013 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0xe2ee1bfb __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xe443974a __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x04c8b019 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x12f027f1 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x19c0eac7 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x783e631d qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xa1b9fa87 qtree_read_dquot +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-ccitt 0x3771b461 crc_ccitt +EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc-itu-t 0xf5b4a948 crc_itu_t +EXPORT_SYMBOL lib/crc7 0x66213969 crc7_be +EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc8 0x41248eaf crc8 +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c +EXPORT_SYMBOL lib/lru_cache 0x03f599c7 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0x4feade4b lc_create +EXPORT_SYMBOL lib/lru_cache 0x5370a6fc lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0x56fc3ea0 lc_put +EXPORT_SYMBOL lib/lru_cache 0x619ed575 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x84e0214b lc_committed +EXPORT_SYMBOL lib/lru_cache 0xbbe7c23c lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0xc48fa976 lc_set +EXPORT_SYMBOL lib/lru_cache 0xc6e4cd46 lc_reset +EXPORT_SYMBOL lib/lru_cache 0xcb990a55 lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xcea6747e lc_destroy +EXPORT_SYMBOL lib/lru_cache 0xd212c9f0 lc_get +EXPORT_SYMBOL lib/lru_cache 0xeb13128b lc_del +EXPORT_SYMBOL lib/lru_cache 0xed09c492 lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0xf460a486 lc_is_used +EXPORT_SYMBOL lib/lru_cache 0xf5ea5f5c lc_index_of +EXPORT_SYMBOL lib/lru_cache 0xf6acec20 lc_find +EXPORT_SYMBOL lib/lz4/lz4_compress 0xcbc5d521 lz4_compress +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x26c3aa22 lz4hc_compress +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0x7456cc61 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul +EXPORT_SYMBOL net/6lowpan/6lowpan 0x11229ceb lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x5c6da8d0 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0xd8c25433 lowpan_netdev_setup +EXPORT_SYMBOL net/802/p8022 0x61a72cf0 register_8022_client +EXPORT_SYMBOL net/802/p8022 0xcb92657f unregister_8022_client +EXPORT_SYMBOL net/802/p8023 0xb86156cc destroy_8023_client +EXPORT_SYMBOL net/802/p8023 0xc73de779 make_8023_client +EXPORT_SYMBOL net/802/psnap 0x03430d81 unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0x954365e0 register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x002dec76 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x00a88ec9 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x041aacb5 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x066fe1f0 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x0f630f6f p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x11fef0a4 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x13c2787b p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x1411635a p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x17bf4d16 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x2098faa8 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x267f8503 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x35c235ee p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x39f5a95b p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x3dc26c12 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x445487ff p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x57a69112 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x5be715a0 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x5c11111b p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x5f96e7d3 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x64f3e2a4 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x66db35c1 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x686a5ffa p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x6c0e1153 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x6f3aad63 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x7aee715b p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x7dcdbfc4 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x93291d73 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x9aba834b p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xa85b539b p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xb2bbca0c p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xb67a744b p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xbf36f661 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xcaf0afb7 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xcd0001a0 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xd206182d v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xd5b2db93 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd5bb69e0 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xd968c5c4 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xe4b76f5a p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xfb7e445f p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0xfcd447ad p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x40deef98 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x5df51f87 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xa89df218 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0xac7a065b aarp_send_ddp +EXPORT_SYMBOL net/atm/atm 0x0ef5eab0 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x2b286b42 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x4033eb0a atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x4a7b7c92 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x4fd5d012 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x703f3799 atm_charge +EXPORT_SYMBOL net/atm/atm 0x8d4fd3af atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xc13f6762 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0xc6fb12cd vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0xca87b453 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0xd75ce8c4 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0xdcb503b6 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xe9c95b0a deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xfe4e1680 atm_dev_register +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x64046924 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x70b1baf2 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x9168b03e ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x9de7d4ab ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0xa2e1e808 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xe2a7c4d5 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0xebb47090 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0xfa9d0568 ax25_listen_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x077df275 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0c6b059d bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0f11a764 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0fa9b5d4 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x18f7857b hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1da943b2 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x22f6be28 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x244d49b1 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x279c13b5 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x32df2fbc hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x336577a4 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x34b665da l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x35a0a179 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x365f9387 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x514fb818 hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5ca51804 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5ec79ef8 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x61c58f43 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x650c812c hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x651504e2 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6a230a1b bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x71f441b1 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x771b69f4 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8ebc32a8 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9287c76e hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9401dc3e bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9b1c2cc5 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9e193bba l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9f719c83 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa482c99d hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa56f1d9a hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa6e49847 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb7e3cd68 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb9c8768e bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbb0521cc bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc4e6159a bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd687bfab hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdf2a47d3 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe57aa554 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xee98ffe1 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xff0160ea bt_procfs_cleanup +EXPORT_SYMBOL net/bridge/bridge 0xbf54aa6f br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x53400ea5 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x9fa7632d ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa443390a ebt_do_table +EXPORT_SYMBOL net/caif/caif 0x0ad62b38 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info +EXPORT_SYMBOL net/caif/caif 0x3732c2ee caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x38383ae5 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x5b549638 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xc96f6c65 caif_enroll_dev +EXPORT_SYMBOL net/can/can 0x5708356e can_rx_register +EXPORT_SYMBOL net/can/can 0x6369d6b3 can_rx_unregister +EXPORT_SYMBOL net/can/can 0xaff71368 can_send +EXPORT_SYMBOL net/can/can 0xd7fe5ea5 can_ioctl +EXPORT_SYMBOL net/can/can 0xd857ca47 can_proto_register +EXPORT_SYMBOL net/can/can 0xf1349657 can_proto_unregister +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0bfb44c2 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x0c1ebf41 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x0d05c3b7 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x0d705092 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x0e215db6 ceph_monc_request_next_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x1110e80c ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0x12474bdc osd_req_op_watch_init +EXPORT_SYMBOL net/ceph/libceph 0x13905c19 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x15dd2fea osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x15e43976 ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x15f12e90 ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x172b1871 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x1c7ccca0 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x207e01a1 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x24952f78 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x28710a01 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x291758ae ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0x2ee5c8b5 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x319937b0 ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0x37a2c899 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x3859f94e ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x39b8a8e5 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3e2ebf2a ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part +EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0x45654667 osd_req_op_cls_response_data +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x46a7c093 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x47a9920e ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x4ad300c2 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x4d2347d2 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x4e61307c ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x52577f5b ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x52fffbbf ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x546adfa5 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x55453549 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5a513fc4 ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0x5d86e3f1 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x635fd630 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x65b8ad2d ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x672c232d ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x68a6c884 ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6e6fabcd osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x7381f2cf osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x74b4126d ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x759bfe50 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x7d8345f8 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x7ff737d6 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x80ea20dd ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x828f8a0b __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x83880c45 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x85488ad7 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x85826b4f ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x8b0425c5 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x916b5103 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x92c62e00 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9c504205 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x9eb0d9f9 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa1ebde8f ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xa2bcc259 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xa2c3faad osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xa36278df osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0xa72a493a ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xafac2dcb ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb08bfe77 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0xb19dc152 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xbaf1a7fb ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0xbcaf9307 ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0xc0384899 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc668ccb7 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xc92d4706 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xcc992b02 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0xcf93510c ceph_monc_do_get_version +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd5383217 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xd55eb511 ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0xd5818d0a ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0xd6458489 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xd6a0ff96 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0xd813625e ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xd8408f20 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0xde0eb6ba ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0xde625f3a ceph_oloc_oid_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xe070b57d ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xe122bed6 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xe55d9bcd ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0xe8cb76ff osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xec43d306 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xedd718d9 ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xf6419960 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xfe37fcb4 ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0xfe9f4930 ceph_messenger_fini +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x3104fb8b dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x50312be7 dccp_req_err +EXPORT_SYMBOL net/ieee802154/ieee802154 0x357a6ec8 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x4c65aad5 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x52c8f503 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0x720c7c1a wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x7927c863 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0xf0e3a9a7 wpan_phy_unregister +EXPORT_SYMBOL net/ipv4/fou 0x0c07b4a3 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0xecafeb67 fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xed36fb31 gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xed741d6f gue_encap_hlen +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x145fafe0 ip_tunnel_encap +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x172be7fe ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x31e3e07f ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x3ce2b539 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x6c3711ab ip_tunnel_dst_reset_all +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf76311d4 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x2bb8fe40 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xc697f5b8 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xe685bc25 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x04678f17 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xf1fb8ece ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xfc7eba36 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x8e91c153 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0xe2c1b467 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x2fff4aed udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x37d29a01 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xaadba1b2 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc8d4b509 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd124fd91 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x15bf3fbe ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x5b8e386f ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x942b7053 ip6t_register_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x5d418956 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0x6f9aee50 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x426b968d xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xc6a02d20 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x362e2d67 ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x442de3fa ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x6651273d ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x69f5f0cb ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x9e989e8d ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xa0f2c1fc ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xe836c50e ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xfec03013 ircomm_connect_request +EXPORT_SYMBOL net/irda/irda 0x0064e0ea hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value +EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service +EXPORT_SYMBOL net/irda/irda 0x0dc13003 irttp_data_request +EXPORT_SYMBOL net/irda/irda 0x110e872d iriap_close +EXPORT_SYMBOL net/irda/irda 0x1870df7c async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0x1e221a9c irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0x1e6cade0 irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0x1f67dcf9 irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0x22528211 irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x3a002dc8 irlap_open +EXPORT_SYMBOL net/irda/irda 0x3e56064f hashbin_new +EXPORT_SYMBOL net/irda/irda 0x3f5407e8 irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value +EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service +EXPORT_SYMBOL net/irda/irda 0x46ff3072 alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0x48344186 irda_notify_init +EXPORT_SYMBOL net/irda/irda 0x4f04a3e0 irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0x53180b71 iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0x5d88ebf2 irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0x601bda46 hashbin_remove +EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x6b5fbcef hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0x6e0ab3c7 irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client +EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client +EXPORT_SYMBOL net/irda/irda 0x7b74f5ad iriap_open +EXPORT_SYMBOL net/irda/irda 0x7c35b557 irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x82d8c9b4 irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0x85d88217 irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0xa1d41e58 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0xa3f6c9fe irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0xaa557515 irias_new_object +EXPORT_SYMBOL net/irda/irda 0xac128d2d irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0xb3f7c23d irlap_close +EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value +EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute +EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request +EXPORT_SYMBOL net/irda/irda 0xc68e43be irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0xcc83491b irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0xcead7dbb hashbin_find +EXPORT_SYMBOL net/irda/irda 0xcfa755e6 irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0xd2108314 hashbin_insert +EXPORT_SYMBOL net/irda/irda 0xd2bc0a29 irttp_dup +EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma +EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0xe3463529 hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0xe3bde43e irias_insert_object +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0xf0a694a1 irias_find_object +EXPORT_SYMBOL net/irda/irda 0xf5876b95 hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0xf7be1e9c async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0xf91dec8c irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0xfb2d6d3a irlmp_connect_response +EXPORT_SYMBOL net/l2tp/l2tp_core 0x30dbcc28 l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0xae0a1fe5 l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x3fee0470 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x53af9026 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x5d4fd5bd lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x6d90542a lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x9844cc29 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x9bd04e11 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xcdf60932 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xf5ce6e7f lapb_disconnect_request +EXPORT_SYMBOL net/llc/llc 0x0a8349e5 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x32d57583 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x38ba35d4 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x4bb7f552 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0xa23658a4 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0xdcfeffbf llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0xee2e22bf llc_sap_close +EXPORT_SYMBOL net/mac80211/mac80211 0x001fa2bd ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x0208e53a ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x02166686 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x03110016 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x05a5f8de ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x072b89c5 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x08c1dd15 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x157d24a6 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x17472b6f ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x193b63f7 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x1b739ca9 ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x1f119999 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x2ae63e74 ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x2de69a5f ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x338f44fa ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x34239f67 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x347cf71f __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x352be171 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x3c1572fd ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x3f20cd10 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x3f7553e3 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x40852298 ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x462729d8 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x4b961145 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x4c9c213e ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x4d770998 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x4e93b2d9 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x539c1042 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x59840cb1 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x61e9a6b8 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x621bf23d ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x63a13725 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0x64c2c156 ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0x66abc5af ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x68219ac3 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x69de096c ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x6c0672f3 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x6e4d6d0c ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x74c62f2c ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x76485105 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x76b9ef28 ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x7716cd51 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x7756ac8f ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x777acb2d ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x790b0218 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x9563e7a7 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x9abad45a ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x9d02d3c6 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x9ee9ca50 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xa2cbde1b ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xa5da8083 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xad5b19ff ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xaed86199 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xb1aaef91 ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xb1add9e7 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xb1f20143 ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0xb1f28247 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xb90462d2 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xbb723792 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0xbbe1fa60 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0xbbe95f07 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xbf728ba6 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0xbfab77f9 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xc4243cdd wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xc4400ce2 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0xced3799d ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xd75c6e77 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xd773f4dc ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0xd8fe3993 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xdda14dbe __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xdf967dad ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xe3ee0e89 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xe5f7445e ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xec049d0e ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xec7cd77a ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xec9fd6bb __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xf13e1e18 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0xf5eb464b ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xf73289a1 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0xf8f496d1 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xfa762e65 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xfdd0e125 ieee80211_queue_work +EXPORT_SYMBOL net/mac802154/mac802154 0x09cd484c ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x1872bd87 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x539a30dd ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x9a64a5be ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xa79ea0d3 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xb1dcef76 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0xf1910509 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xfece8c1e ieee802154_unregister_hw +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x015dcb2a ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0de6d9b0 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x10aa5b32 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4b6c9234 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4ff35534 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x53086d31 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x733c5c0a register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x749431c8 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8e8501b1 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9c3dcfc9 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb8d56fef ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdc628a49 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfe2d8bf4 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfede96cf ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x1cb8e27b __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x41598afd __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x6d157a7d nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x21078e74 nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/nf_nat 0x8d3bfe92 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x974f9e7f nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x99c0b716 nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0xded58647 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xe214c012 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/x_tables 0x100ce88b xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x392c0131 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x5685f9d9 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x64d64fe1 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x943f53d0 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x99a76a09 xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xadeb3611 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xb4862342 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xbc7e5a4b xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0xc35a82f1 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/nfc/hci/hci 0x24a1a3ca nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x2fa78e55 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x30d024d9 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x3a119cf6 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x3effc274 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x3fcace23 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x4f72443b nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x5b4b727c nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x66e00701 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x76c0488b nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x818d31f5 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x934e870f nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x9697890c nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0xa5f8e19f nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0xb235eb73 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0xb302074c nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xb712a921 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0xba0e1cc8 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xdd2e1df1 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xf8d34ad3 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0xfd27efce nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/nci/nci 0x04bdbe6d nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x0a346350 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x14793893 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x16237dc3 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x16f43935 nci_get_conn_info_by_id +EXPORT_SYMBOL net/nfc/nci/nci 0x18bd34bb nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x191e6ad4 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x1a5b7c62 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x1c9f9f9e nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x2cd8985f nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x35a22eb3 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x4e2d216f nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x6279e4c4 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x63990c18 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x6422f9c3 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x658deb79 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x6dd346cb nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x78b57e9f nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xa2db8a72 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0xa62a4248 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xae900c9c nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xc4cb28f2 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0xd11a91e7 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0xe7c88c6e nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xe9a022df nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xf1e0bf07 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xf5750949 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0xf82974fd nci_register_device +EXPORT_SYMBOL net/nfc/nfc 0x144dc514 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x28c72523 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x2a4580d7 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x2f7d51d8 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x360b829a nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x5aa78c7f nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x76542895 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x76b9e3a9 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x77241fd1 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x8338a7dd nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x89099bad nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x8b91b831 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x94426ec3 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x95073b79 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x96d1a1a4 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x9f09df57 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x9fb68b59 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0xa0f67faa nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xb9006531 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xbb92c774 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xbeff3e60 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xceb0abfe nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xdbb55478 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xea03de4d nfc_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x54154ddd nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xdc6429db nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xdcf04cdc nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xdd028ce5 nfc_digital_free_device +EXPORT_SYMBOL net/phonet/phonet 0x0983f1fa phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x13246561 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x2fb953fb phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x6463bc71 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x677508fb phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xc85cf093 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xdac1e499 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0xdeaf8320 pn_sock_hash +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1395ab9d rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x195d7d30 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x3cea358f rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x41f28fc4 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x6769b271 rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x7f866e2f rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8ac3829d rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x9b466a7c rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x9e698ed2 rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xa54cbe97 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb9dd12d6 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc27b6bbd rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc404c4e8 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe122f16f rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xec2f8699 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/sctp/sctp 0x98bab6ca sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x215b401f gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x22d72bb8 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x778282f9 gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0x2214fa72 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x5bc69e14 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0x9ce47257 xdr_restrict_buflen +EXPORT_SYMBOL net/wimax/wimax 0x5b5c3e7b wimax_reset +EXPORT_SYMBOL net/wimax/wimax 0xee60da22 wimax_rfkill +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0ab605d4 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x0e25adde cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x0f940201 wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x102a6d7f cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x120eaa84 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x1a65f5fe cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x1b4ca445 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x1bd365c8 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x1bf65775 __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x20f80e89 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x2976bd57 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x36726f49 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x39786802 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x3a4cc02f cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x3f5ba0f9 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x433f851a wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x43400582 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x43ee20e1 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x443c0853 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x44ef3942 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x45ea41cf regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x461380e3 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x47e87bd3 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x528b66b3 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x531b5cbe cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x576652c1 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x5bfade1a __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x5d8c8f3a cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0x665d2af7 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x66d867ca cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x67cefee8 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x732b1aba cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x7407e485 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x77abee4a cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x7c27c53d freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x86df76c3 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x888893b2 cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x8b05451b wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x8c6d6c87 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x8cdaca82 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x8ddd52a3 cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x900ab860 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x90b01efc ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x91d3bdbe cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x93dddc53 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x966ff54d ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x97b95454 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x98ecb0d0 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xa13d69d5 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xa1425906 ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xa51d1a1a cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xa8606ad7 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xab717adc __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xaec32f89 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xb0ee0240 ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xb2e608b6 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xb6583e95 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0xb7b4fe7c ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xb82c6379 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0xb9d8964e cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xc56367df cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xc8c43db4 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xcb81c0a8 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xe0bd7ec1 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0xe174bba0 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe217fabd cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe3e42090 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xe467cedd cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe86006fe ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xeaf4e94f cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xeb6d7c6c ieee80211_ie_split +EXPORT_SYMBOL net/wireless/cfg80211 0xed8a53d3 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xef8758f0 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xf0153ad4 regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xf3b97b29 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0xf4932e76 cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xf7781404 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xf88ef8fa cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0xfa566b28 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xfc1a9ee7 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xfc1bbb01 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xfc7d1744 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xfd167e09 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/cfg80211 0xfee4b75a cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0xffb3125a cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/lib80211 0x17d6fa12 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x18025253 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0x1c1dcb86 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x21d7b6a0 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x4f168f50 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0xc435c70d lib80211_unregister_crypto_ops +EXPORT_SYMBOL sound/ac97_bus 0x6ba799b3 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x414c7e32 snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x57dfe2ef snd_seq_kernel_client_enqueue_blocking +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xa9b6583d snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0xa9c86a54 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xbfcedf03 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x52e906a8 snd_seq_device_new +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x072d978b snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x13a17752 snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x2eed26bf snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x4d5ca523 snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x592f6e9b snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xd7c7afcc snd_midi_event_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe60fb228 snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xecbde43c snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x6b84a6bb snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x07014111 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x0d01ab9e snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x0d150136 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program +EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer +EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL sound/core/snd 0x1e7ee501 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x2486a65d snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x29a194c2 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0x2c89ff20 _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x45ec6967 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x47956551 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4aac369b snd_card_register +EXPORT_SYMBOL sound/core/snd 0x53762122 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x5474e051 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x602c96f0 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x6e256184 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x701b9ecc snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x73718d7f snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x73c2edd1 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x745f82c3 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x7d2f3457 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x80d91f7b snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x81e7d80e snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x8b7d9247 snd_device_register +EXPORT_SYMBOL sound/core/snd 0x8c4026ea snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x8f8b75ea snd_component_add +EXPORT_SYMBOL sound/core/snd 0x90b92384 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa0e3c2cb snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0xa30a8e27 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0xa4de13c4 snd_card_free +EXPORT_SYMBOL sound/core/snd 0xa79ddf6a snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0xa951ec79 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0xab4444ae snd_device_free +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb84f66ca snd_info_register +EXPORT_SYMBOL sound/core/snd 0xbfca6279 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0xc3a52773 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0xc5e7b41f snd_cards +EXPORT_SYMBOL sound/core/snd 0xcc5ee249 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0xce3ca308 copy_from_user_toio +EXPORT_SYMBOL sound/core/snd 0xd598f0eb snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0xd78e57b8 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0xd8d93d80 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0xd9e1897f snd_register_device +EXPORT_SYMBOL sound/core/snd 0xdda45908 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0xddf631b0 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0xe0c04274 snd_card_new +EXPORT_SYMBOL sound/core/snd 0xe642dc78 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0xe995c7ff snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0xeebc9aa4 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0xef1d9892 snd_device_new +EXPORT_SYMBOL sound/core/snd-hwdep 0xc5df20c4 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x045385e4 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x0cc06c20 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x12d4e9c9 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x13b3b89f snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x18fe6afb snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x1fac577a snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x263bc1c1 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x27a71346 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x3b91f3af snd_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x40c3f1b9 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x42fbc7e9 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x43a709a5 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x44a77758 snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0x4a1b60d7 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x4cc08cae snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0x4d9b6d35 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x4ed6d62a snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x51e35b37 snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x62bd4a5f snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x63684a5d snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x70cde2a2 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x7653bafb snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x77c20249 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x7f8fbcd3 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x87c0d295 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x884adb30 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x89d12248 snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0x8d6c7782 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x900176cc snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x9b0bed74 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x9cb9613e snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0x9db27a69 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa909fb2b snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xade88e76 snd_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xb2778f52 snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0xb522b794 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0xb688ac1c snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xb9e3a3be snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0xba5dac74 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xbc9ce065 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xc2247d26 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xca9b3767 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0xcae8d81c snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0xd2640166 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xd4bd6632 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xde6de728 snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0xe1c6855e snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xe99b011f snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0xed051ee3 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0xf9810e10 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0b57bc3e __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x157e3432 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1ab73f48 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x489502f0 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4c8baeae snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5273ac64 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x609a8498 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7b1a6a21 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7d9bb17b __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x96e4ae01 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x98a92031 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0xabfecaab snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xaeed3b38 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb225106d snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbf9419aa snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc6cd263d snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd6842929 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd89027b1 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xef7e3179 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-timer 0x18010e81 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0x3cbcc28c snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x5d974e2a snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x6781769c snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x68b0ecd6 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x75a56da7 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x7d603d8c snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x87be041e snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x9ce6f325 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0xa99008bc snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xd3e65027 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0xf2199251 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0xf31793af snd_timer_resolution +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x593f4a0e snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x10a126ee snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x11b4029c snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1da1d27d snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x26886dfc snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x52eeb258 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x71c56f22 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8d210191 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd9b42d98 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xed682bbc snd_opl3_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x39e225ee snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6448dc2f snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7ab1cf58 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x983f5d66 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa1fe06c7 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa87d40ea snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb8eb2c50 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd744aeb2 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xecc8baef snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0b3c57e7 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x10fc2925 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2b312647 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3fc1e071 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4ef01e6d snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4fd16f95 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x57070649 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5c5ab05d fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x62537f1a cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x642e7c43 amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x713b0072 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x718394d1 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x72d7e8b9 amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7ac7446a amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7bd8926a amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7d06c28f fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7f04bb7b cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7ff0d1a4 amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x835b9f17 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x845f18ee fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x89c44ba9 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9164715d iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xabd7b070 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc1917a8d iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd0b32619 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd65b51c2 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd7660d29 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd887b88f snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe3084189 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe6cdb1b5 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xeb40bba8 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xecdd6dff amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x20de7a65 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x39e62daa snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x15cb40f0 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1d682710 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x30d61384 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x5a1ae418 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xacc3c221 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xc64d0c56 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xce1ee79e snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xe9847e7d snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x0ca6fce5 snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x5182b13f snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x6dba433b snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x79ccfdde snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x8605ba36 snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xcf16b0d9 snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x60d6f316 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x651d465b snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xb105c650 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xed33260d snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x36f0637f snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xab13e307 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x18aabd8c snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x3f876e56 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x602ec795 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x6836dc31 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x98c84e15 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xf182f001 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x3893fc34 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0x43d51b6e snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x9f83a42a snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xac8d9f68 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xb7f59cce snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0xbde86fc2 snd_i2c_readbytes +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x015d4037 snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x0dde2d91 snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x158074ad snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x301b5676 snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x77a3d485 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xb181f85c snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xb604a6d2 snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xbbbeee9a snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xcb8b6440 snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xfed61fbb snd_sbdsp_command +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x197be3fb snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3adbb813 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5fbbaa9b snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x63719097 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6ac0d74d snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x717aa29e snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7a6d3d44 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8b791eb3 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8d9c3ba7 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x94bee93a snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb0fd28b8 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb7a382f7 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd10e599c snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd8e9a179 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xda14dfe6 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf57d28f5 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfa016dab snd_ac97_update +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x0e32e94b snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x24fedceb snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x373d7302 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4ab2ba0b snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x63fd4548 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x69d7c4f6 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x87226240 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x8e18dabe snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x921c2795 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x41201e4a snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x65fd962f snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x977808a3 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x04adc7e4 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x18bbcd88 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2b3f15ad oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x37a30f5c oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x39d9f7b5 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x435065f6 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4aea5873 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x50338a37 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6d6dd698 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x75a5d352 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x79a9fea6 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x84bf7f65 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x85041ea4 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8ddb6411 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa136ddd5 oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa342fbd4 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdd2006ca oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xefaa904e oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf0bf29dd oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf48439a8 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfd73a214 oxygen_read16 +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x2d1287ba snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x38ee7de9 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x633396dd snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x9786aa5b snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xddc47633 snd_trident_free_voice +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x179c1f3b tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x86c3263e tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/snd-soc-core 0x8f25038c snd_soc_alloc_ac97_codec +EXPORT_SYMBOL sound/soundcore 0x1e8fee95 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x3018606a sound_class +EXPORT_SYMBOL sound/soundcore 0x3b875dd1 register_sound_special +EXPORT_SYMBOL sound/soundcore 0x4a4de634 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0x662003a2 register_sound_midi +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xe027e18e register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x21f78b86 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x3d212d68 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x477a2630 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x793292b6 snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xa826320e snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xc8ec7840 snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/snd-util-mem 0x00c7f8f5 __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x05c65e35 snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0x35a8fe3f snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x38866c3e snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x43be9843 snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x56a82e52 snd_util_memhdr_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x6baad4bf __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0xc51c511e __snd_util_mem_free +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb9757835 snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL vmlinux 0x0032793e netif_skb_features +EXPORT_SYMBOL vmlinux 0x00389939 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x0040acab vme_irq_request +EXPORT_SYMBOL vmlinux 0x008c5d6c blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0x00a2ca08 sys_fillrect +EXPORT_SYMBOL vmlinux 0x00a5e4d2 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x00a803b5 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00ebb6d3 __init_rwsem +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr +EXPORT_SYMBOL vmlinux 0x01187e57 elevator_exit +EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer +EXPORT_SYMBOL vmlinux 0x01893074 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x019cd453 mmc_get_card +EXPORT_SYMBOL vmlinux 0x01a23f0e from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x01ad6391 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x01c59e8e skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x01fa6c04 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x021d53ac check_disk_change +EXPORT_SYMBOL vmlinux 0x023312f0 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x026a3bcb blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x026f8391 filemap_fdatawait +EXPORT_SYMBOL vmlinux 0x0274a96a sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x0274b5fc jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x0277a261 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x0281c0fc xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x02822c99 __inode_permission +EXPORT_SYMBOL vmlinux 0x028fcd01 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a3c236 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02abd5fb blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0x02b64e52 skb_clone +EXPORT_SYMBOL vmlinux 0x02e29e48 nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02eabc70 down_write +EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact +EXPORT_SYMBOL vmlinux 0x030288e0 fb_show_logo +EXPORT_SYMBOL vmlinux 0x0316caf4 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x0351ae13 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x0374dc5f bio_clone_fast +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x037c4172 udplite_prot +EXPORT_SYMBOL vmlinux 0x038a7530 km_report +EXPORT_SYMBOL vmlinux 0x038bfc8d blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x039241df tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x03aa47a6 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x03bb191a key_reject_and_link +EXPORT_SYMBOL vmlinux 0x03d0ca0a pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x03dfba07 d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0x03eb6858 netif_rx +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x04074f48 ioremap +EXPORT_SYMBOL vmlinux 0x041d72f6 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x042c7de3 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x043685fa seq_printf +EXPORT_SYMBOL vmlinux 0x0445bf99 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x0462a7e8 blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0x0470c10a jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x0491c699 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x04ad7675 ll_rw_block +EXPORT_SYMBOL vmlinux 0x04afd4fb release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x04ba6819 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x04d3bdc5 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x04e3c5e3 register_console +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04ed76c6 inode_permission +EXPORT_SYMBOL vmlinux 0x04f1041d lockref_get +EXPORT_SYMBOL vmlinux 0x04f34225 tso_build_data +EXPORT_SYMBOL vmlinux 0x04ff8c06 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range +EXPORT_SYMBOL vmlinux 0x051c2b36 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x0529160b napi_gro_flush +EXPORT_SYMBOL vmlinux 0x0530dede _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x05440e69 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x055f9e75 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x0576559c con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x058f0c5b mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x05908a13 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x05962625 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x05a514a1 _insl_ns +EXPORT_SYMBOL vmlinux 0x05ac6d30 ihold +EXPORT_SYMBOL vmlinux 0x05bf7fbb register_shrinker +EXPORT_SYMBOL vmlinux 0x05d5eb37 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0x05df334e generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x05ef3ea2 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x05fced8b bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x0608ef27 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x060dcf5f get_cached_acl +EXPORT_SYMBOL vmlinux 0x0613bd3b block_write_begin +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x06250e85 mach_ppa8548 +EXPORT_SYMBOL vmlinux 0x0630138d abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x063c4802 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x065eb494 security_mmap_file +EXPORT_SYMBOL vmlinux 0x06726050 dump_emit +EXPORT_SYMBOL vmlinux 0x0675c7eb atomic64_cmpxchg +EXPORT_SYMBOL vmlinux 0x067ac8a6 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x06888830 agp_create_memory +EXPORT_SYMBOL vmlinux 0x0697ddd4 rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0x06ac22a3 copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x06b6abac alloc_disk_node +EXPORT_SYMBOL vmlinux 0x06bcf3b4 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x06de32de __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x06ea7c59 sk_stream_error +EXPORT_SYMBOL vmlinux 0x06ef1af7 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x06f9492f vm_mmap +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x070e3183 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x071bad2b simple_follow_link +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x072fec97 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x07430e85 truncate_setsize +EXPORT_SYMBOL vmlinux 0x074a4311 sk_dst_check +EXPORT_SYMBOL vmlinux 0x074e9213 down_killable +EXPORT_SYMBOL vmlinux 0x0750e2cf pci_fixup_device +EXPORT_SYMBOL vmlinux 0x077192de blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0x0791d0e7 pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07adba2f gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07e986e4 __devm_release_region +EXPORT_SYMBOL vmlinux 0x08140a8e __dst_free +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x0831c0d5 __skb_checksum +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x084239b1 ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0x08447043 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x086d8cdd irq_stat +EXPORT_SYMBOL vmlinux 0x0879be54 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x0889814e d_prune_aliases +EXPORT_SYMBOL vmlinux 0x0898937b splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x08becf6f dev_alloc_name +EXPORT_SYMBOL vmlinux 0x08d525e1 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x08df9457 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x08ef6fe4 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x09029fba pci_scan_bus +EXPORT_SYMBOL vmlinux 0x09108013 dentry_open +EXPORT_SYMBOL vmlinux 0x093b1beb swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0x093e5bcc dev_addr_add +EXPORT_SYMBOL vmlinux 0x0940897c irq_to_desc +EXPORT_SYMBOL vmlinux 0x0943e925 read_dev_sector +EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key +EXPORT_SYMBOL vmlinux 0x095d1484 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x0963cac3 __check_sticky +EXPORT_SYMBOL vmlinux 0x0971832a swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x098141cd locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x0982551c nla_put +EXPORT_SYMBOL vmlinux 0x0989707e max8998_update_reg +EXPORT_SYMBOL vmlinux 0x098a11f2 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x098edb83 nf_log_unset +EXPORT_SYMBOL vmlinux 0x099de129 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x09aa8aa4 flush_tlb_range +EXPORT_SYMBOL vmlinux 0x09aabefb __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x09bbbb91 trace_print_symbols_seq_u64 +EXPORT_SYMBOL vmlinux 0x09c1f3a2 page_follow_link_light +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c67afb flex_array_get +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09cfa0db vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x0a086594 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a295366 __napi_complete +EXPORT_SYMBOL vmlinux 0x0a2d3357 padata_add_cpu +EXPORT_SYMBOL vmlinux 0x0a3000bc __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr +EXPORT_SYMBOL vmlinux 0x0a373226 crc32_le_shift +EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell +EXPORT_SYMBOL vmlinux 0x0a706d10 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x0a7ab100 blk_end_request_all +EXPORT_SYMBOL vmlinux 0x0a7c28bf xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x0a9f8980 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0adcc20f do_SAK +EXPORT_SYMBOL vmlinux 0x0ae53721 udp_proc_register +EXPORT_SYMBOL vmlinux 0x0ae6f676 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x0b01e1a1 agp_free_memory +EXPORT_SYMBOL vmlinux 0x0b061d6f blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b25de55 phy_print_status +EXPORT_SYMBOL vmlinux 0x0b291008 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x0b333142 dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b678685 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x0b681332 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b8e9739 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x0b9a6c63 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x0ba398ef tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x0bb16c5c scsi_remove_device +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc1964c i2c_master_send +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bc58597 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x0bf44dc2 agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0x0bff77c4 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x0bffb6a1 netif_device_attach +EXPORT_SYMBOL vmlinux 0x0c117bfb tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x0c12e626 __debugger_bpt +EXPORT_SYMBOL vmlinux 0x0c1ee5d6 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x0c1f1542 __kernel_write +EXPORT_SYMBOL vmlinux 0x0c35a6d8 __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c528be7 tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0x0c558603 mmc_start_bkops +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c600b08 of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0x0c6e4504 bio_add_page +EXPORT_SYMBOL vmlinux 0x0c843238 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x0c8a1843 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x0c9b6089 nvram_get_size +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cb07725 security_path_chown +EXPORT_SYMBOL vmlinux 0x0cb2770f blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x0cc697bd add_random_ready_callback +EXPORT_SYMBOL vmlinux 0x0cc8ce0f fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0x0ce8885c pid_task +EXPORT_SYMBOL vmlinux 0x0d0ccd2c remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x0d11f0df inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0x0d179f24 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x0d219985 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x0d3b53e8 nf_unregister_hook +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0dafebbb __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x0db72bcb tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x0dc0ace0 idr_find_slowpath +EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex +EXPORT_SYMBOL vmlinux 0x0dde9d80 ppp_input_error +EXPORT_SYMBOL vmlinux 0x0dfa610b blk_init_queue_node +EXPORT_SYMBOL vmlinux 0x0e0a355c backlight_device_register +EXPORT_SYMBOL vmlinux 0x0e0e2ccc skb_pull +EXPORT_SYMBOL vmlinux 0x0e1e0aeb __lock_buffer +EXPORT_SYMBOL vmlinux 0x0e549baa should_remove_suid +EXPORT_SYMBOL vmlinux 0x0e59b718 __neigh_create +EXPORT_SYMBOL vmlinux 0x0e65a0d3 iov_iter_advance +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e720271 dev_uc_del +EXPORT_SYMBOL vmlinux 0x0e8f30f6 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x0eaa5298 genl_notify +EXPORT_SYMBOL vmlinux 0x0eaf451e hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ecde9c2 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x0ee2ee25 tcp_prot +EXPORT_SYMBOL vmlinux 0x0ee5e9c8 default_file_splice_read +EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy +EXPORT_SYMBOL vmlinux 0x0ef51353 arp_create +EXPORT_SYMBOL vmlinux 0x0efa1993 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f175fe9 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x0f28cb91 nvram_read_byte +EXPORT_SYMBOL vmlinux 0x0f2a088a follow_up +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f536977 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x0f5faa7e wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f770393 setattr_copy +EXPORT_SYMBOL vmlinux 0x0f79675c mmc_put_card +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0fa60688 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fc06561 padata_start +EXPORT_SYMBOL vmlinux 0x0fed8af8 netdev_update_features +EXPORT_SYMBOL vmlinux 0x0ffc018b gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x105768df mmc_release_host +EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x108e4326 d_invalidate +EXPORT_SYMBOL vmlinux 0x1096aa2f blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x10a70f37 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x10c8f656 km_new_mapping +EXPORT_SYMBOL vmlinux 0x10e45698 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x10f02c41 phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0x1107bb83 bioset_create +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x11099f88 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x110d2b4c inet_frags_fini +EXPORT_SYMBOL vmlinux 0x11145431 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x112d683f kdb_current_task +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x117712bd __nd_driver_register +EXPORT_SYMBOL vmlinux 0x118094f3 arp_xmit +EXPORT_SYMBOL vmlinux 0x1182d83a cpuidle_disable +EXPORT_SYMBOL vmlinux 0x119d23ba cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x11a3c2bf bio_uncopy_user +EXPORT_SYMBOL vmlinux 0x11ae3867 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x11b92420 tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x11c867da generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120dae86 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x12139792 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x12186ccd agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x121b4e4b memremap +EXPORT_SYMBOL vmlinux 0x1232399b twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x1239ec7c noop_qdisc +EXPORT_SYMBOL vmlinux 0x123c2854 ab3100_event_register +EXPORT_SYMBOL vmlinux 0x123dcbc4 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x124c0cdc d_tmpfile +EXPORT_SYMBOL vmlinux 0x1250f5be xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x1261529a inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x12748429 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x1278270b tty_port_destroy +EXPORT_SYMBOL vmlinux 0x1284dc32 inode_init_once +EXPORT_SYMBOL vmlinux 0x128b3825 bio_advance +EXPORT_SYMBOL vmlinux 0x12a2c654 free_buffer_head +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12ab896f dev_get_by_name +EXPORT_SYMBOL vmlinux 0x12b42fa6 lease_modify +EXPORT_SYMBOL vmlinux 0x12bbc50c of_dev_get +EXPORT_SYMBOL vmlinux 0x12d997e7 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc +EXPORT_SYMBOL vmlinux 0x12dc8da7 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x12f20d00 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x12f7a19f __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x13077b08 dst_init +EXPORT_SYMBOL vmlinux 0x1319126a i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x1336c865 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x135e0f49 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x136fd770 I_BDEV +EXPORT_SYMBOL vmlinux 0x13a58b6e in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x13c79a80 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d1c666 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x13d58c60 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x1407c6e7 kmap_prot +EXPORT_SYMBOL vmlinux 0x1420b379 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x1422a5f8 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x142bfe3f mfd_add_devices +EXPORT_SYMBOL vmlinux 0x146d123d xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x147b6ce9 swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x147fd0cf xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x148199dc scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x14a010e7 build_skb +EXPORT_SYMBOL vmlinux 0x14b1fc3f dev_set_mtu +EXPORT_SYMBOL vmlinux 0x14b426da alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x14bb3cc1 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x15049506 bio_unmap_user +EXPORT_SYMBOL vmlinux 0x15428530 request_key +EXPORT_SYMBOL vmlinux 0x1542a354 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x157ee959 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15d3fd60 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x15dc218e of_get_property +EXPORT_SYMBOL vmlinux 0x15e3cae7 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x160c11f6 blkdev_put +EXPORT_SYMBOL vmlinux 0x161d0033 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x16273076 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x162876cd __bforget +EXPORT_SYMBOL vmlinux 0x1646132d key_payload_reserve +EXPORT_SYMBOL vmlinux 0x16540bbc __cmpdi2 +EXPORT_SYMBOL vmlinux 0x165e69c2 dump_align +EXPORT_SYMBOL vmlinux 0x1665feba tty_register_device +EXPORT_SYMBOL vmlinux 0x166b0eeb __nlmsg_put +EXPORT_SYMBOL vmlinux 0x1683a50b radix_tree_delete +EXPORT_SYMBOL vmlinux 0x168cf911 nla_reserve +EXPORT_SYMBOL vmlinux 0x16a31ace vfs_unlink +EXPORT_SYMBOL vmlinux 0x16c25379 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x16de770a dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16e7d787 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x16ef25c0 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x16ffabec kfree_skb +EXPORT_SYMBOL vmlinux 0x170a1e05 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x170cc015 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x1710f7e9 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x1716dba5 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x175e5b2b mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x17648396 dev_base_lock +EXPORT_SYMBOL vmlinux 0x1769693c mmc_can_trim +EXPORT_SYMBOL vmlinux 0x176ad3d6 sock_efree +EXPORT_SYMBOL vmlinux 0x17aa156a __ucmpdi2 +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17b755b9 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x17b8dc93 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x17c1c0c4 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x17c8a7c4 pci_release_region +EXPORT_SYMBOL vmlinux 0x17de4fd6 put_filp +EXPORT_SYMBOL vmlinux 0x17e28473 fsl_upm_run_pattern +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x181f63f1 find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x1829bf48 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x18310428 posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0x183401a0 sock_init_data +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x18462ebf phy_register_fixup +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x1880a556 of_parse_phandle +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x188a543d rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1895ffb5 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x18a48e7a find_get_entry +EXPORT_SYMBOL vmlinux 0x18aa0eac vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x18b10027 ata_print_version +EXPORT_SYMBOL vmlinux 0x18bb6135 touch_atime +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x19314f45 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x1934daef dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x193e49ea lookup_one_len +EXPORT_SYMBOL vmlinux 0x1961b977 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x19723737 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x197b70f9 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x1997e57c done_path_create +EXPORT_SYMBOL vmlinux 0x199a5673 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x199eb1b1 security_path_rename +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19a32978 pci_select_bars +EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x19ba1dc7 fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19cf0984 __mutex_init +EXPORT_SYMBOL vmlinux 0x19cf34e7 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x19e5d1ee d_delete +EXPORT_SYMBOL vmlinux 0x19eacd0c sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x1a0513e6 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x1a11a877 generic_fillattr +EXPORT_SYMBOL vmlinux 0x1a1c6ebe proc_create_data +EXPORT_SYMBOL vmlinux 0x1a4f7b0d iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x1a8d6f81 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x1a9c56fa set_security_override +EXPORT_SYMBOL vmlinux 0x1ad42d39 dev_printk_emit +EXPORT_SYMBOL vmlinux 0x1ada0907 file_update_time +EXPORT_SYMBOL vmlinux 0x1ae562e9 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x1aece901 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x1af62a99 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x1afa9ab6 to_ndd +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b0b488f security_path_mknod +EXPORT_SYMBOL vmlinux 0x1b0e15a5 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x1b1178ea pagecache_get_page +EXPORT_SYMBOL vmlinux 0x1b132009 rename_lock +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b48be10 find_vma +EXPORT_SYMBOL vmlinux 0x1b4a41ac ip_ct_attach +EXPORT_SYMBOL vmlinux 0x1b4ea06a __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x1b54bef1 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b797f92 loop_register_transfer +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b8971db netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer +EXPORT_SYMBOL vmlinux 0x1bc0c2e6 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x1bc4ff03 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x1bca2b59 load_fp_state +EXPORT_SYMBOL vmlinux 0x1bcf98bd sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x1bd06a0e i2c_use_client +EXPORT_SYMBOL vmlinux 0x1bf3f82a notify_change +EXPORT_SYMBOL vmlinux 0x1c12c775 tso_count_descs +EXPORT_SYMBOL vmlinux 0x1c13ab43 mach_c293_pcie +EXPORT_SYMBOL vmlinux 0x1c398a6c nd_device_unregister +EXPORT_SYMBOL vmlinux 0x1c4caa08 tcf_hash_create +EXPORT_SYMBOL vmlinux 0x1c52c5d0 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x1c7d712b elv_unregister_queue +EXPORT_SYMBOL vmlinux 0x1c7d9dda sk_net_capable +EXPORT_SYMBOL vmlinux 0x1c80de9c ip_send_check +EXPORT_SYMBOL vmlinux 0x1ca1942d padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x1ca42427 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x1cae6064 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x1cc75f2e get_user_pages +EXPORT_SYMBOL vmlinux 0x1cfda423 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x1d065f82 pci_choose_state +EXPORT_SYMBOL vmlinux 0x1d1758fd __nla_put +EXPORT_SYMBOL vmlinux 0x1d1ad081 devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0x1d21a200 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x1d242a57 inet6_protos +EXPORT_SYMBOL vmlinux 0x1d25c576 genphy_read_status +EXPORT_SYMBOL vmlinux 0x1d63fd29 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x1d7f4ec0 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x1d80919f mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x1d917c34 ps2_drain +EXPORT_SYMBOL vmlinux 0x1da01267 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x1daee28a percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1df8e171 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x1e04a247 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e33afbe mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0x1e406510 inet6_getname +EXPORT_SYMBOL vmlinux 0x1e54a9e0 fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0x1e5db254 generic_perform_write +EXPORT_SYMBOL vmlinux 0x1e623eac ip_getsockopt +EXPORT_SYMBOL vmlinux 0x1e689fb3 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e7970c8 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x1e7ab463 inode_init_owner +EXPORT_SYMBOL vmlinux 0x1e7b38ac kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x1e88ed5f of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ecc130e dev_get_stats +EXPORT_SYMBOL vmlinux 0x1ece04f5 bd_set_size +EXPORT_SYMBOL vmlinux 0x1efcae09 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x1f2a2416 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x1f32f314 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x1fa29e44 netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0x1fa2c176 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fcf7260 param_get_short +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x1fedb913 block_write_full_page +EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region +EXPORT_SYMBOL vmlinux 0x1ff5be04 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x202d5de6 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x2039890e blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204c61cb cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x206687ad cpm_muram_alloc_fixed +EXPORT_SYMBOL vmlinux 0x2068ce30 d_splice_alias +EXPORT_SYMBOL vmlinux 0x206af1ac fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x2070b741 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x2074ac42 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x209bc147 of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x20a1206c skb_pad +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20ae58d0 __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20ce8712 vme_slot_num +EXPORT_SYMBOL vmlinux 0x20d434fd clear_wb_congested +EXPORT_SYMBOL vmlinux 0x20ddc557 nf_register_hooks +EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x20fdc6f8 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x2106a146 tcp_destroy_cgroup +EXPORT_SYMBOL vmlinux 0x2108ee04 misc_register +EXPORT_SYMBOL vmlinux 0x211584b9 sk_common_release +EXPORT_SYMBOL vmlinux 0x211ec8da swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0x211f7385 kernel_accept +EXPORT_SYMBOL vmlinux 0x2127b8a2 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x212e0db9 lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x2132ce76 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x216a5665 elv_register_queue +EXPORT_SYMBOL vmlinux 0x217e0aa2 d_move +EXPORT_SYMBOL vmlinux 0x2191829f blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0x21940218 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x21b04a90 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x21d109ec __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x21d448cd pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x21d6de27 of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21f19335 fence_remove_callback +EXPORT_SYMBOL vmlinux 0x21f3dc15 cpm_command +EXPORT_SYMBOL vmlinux 0x21f697f3 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x22031e06 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x222358e7 path_get +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x2238c4b2 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x2239ec18 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x2249e127 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x2256fafa div64_u64_rem +EXPORT_SYMBOL vmlinux 0x2263e380 lru_cache_add_file +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x2270f52e scsi_dma_map +EXPORT_SYMBOL vmlinux 0x22756d14 block_read_full_page +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x2278e94b slhc_remember +EXPORT_SYMBOL vmlinux 0x228fd5c9 tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0x229776ee backlight_force_update +EXPORT_SYMBOL vmlinux 0x2298e90d tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22b6ef1e xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x22d97615 vme_register_bridge +EXPORT_SYMBOL vmlinux 0x22dfdd06 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x2307ae9f tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x2327979b make_bad_inode +EXPORT_SYMBOL vmlinux 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL vmlinux 0x235e90f3 __wake_up_bit +EXPORT_SYMBOL vmlinux 0x2369630a vfs_mknod +EXPORT_SYMBOL vmlinux 0x23701e6b end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x2371221d cdev_del +EXPORT_SYMBOL vmlinux 0x237c0759 simple_rename +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23a86fdb eth_type_trans +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23ddae18 noop_llseek +EXPORT_SYMBOL vmlinux 0x23f2243d mempool_free +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x2401c55a padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x240b9099 seq_release_private +EXPORT_SYMBOL vmlinux 0x241a8ba7 input_close_device +EXPORT_SYMBOL vmlinux 0x241ab95c netdev_notice +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x244dd531 dentry_needs_remove_privs +EXPORT_SYMBOL vmlinux 0x2451e777 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x247186bb devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x24820e65 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x24855cba __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x249d4aff __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x24d77d4c i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x24d86520 migrate_page +EXPORT_SYMBOL vmlinux 0x24f00380 ida_init +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x25339c5f agp_bind_memory +EXPORT_SYMBOL vmlinux 0x25354c3c dm_unregister_target +EXPORT_SYMBOL vmlinux 0x2536eb4a set_user_nice +EXPORT_SYMBOL vmlinux 0x25516626 of_get_named_gpio_flags +EXPORT_SYMBOL vmlinux 0x25612ad2 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x25b13df6 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x25b3d986 tty_port_open +EXPORT_SYMBOL vmlinux 0x25bd1e73 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x25e186c5 clear_user_page +EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25f3bd2e atomic64_xchg +EXPORT_SYMBOL vmlinux 0x25f41fac ip_defrag +EXPORT_SYMBOL vmlinux 0x25f46a34 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x25fe08ee __sock_create +EXPORT_SYMBOL vmlinux 0x2609632c mount_ns +EXPORT_SYMBOL vmlinux 0x261a7e90 kunmap_high +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x26457eec param_ops_short +EXPORT_SYMBOL vmlinux 0x26477c07 __vmalloc +EXPORT_SYMBOL vmlinux 0x264b5a4b kernel_param_lock +EXPORT_SYMBOL vmlinux 0x264d8400 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux +EXPORT_SYMBOL vmlinux 0x268475a9 dma_common_mmap +EXPORT_SYMBOL vmlinux 0x26b760c4 slhc_init +EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x26c92c8f forget_cached_acl +EXPORT_SYMBOL vmlinux 0x26ca71a9 netlink_unicast +EXPORT_SYMBOL vmlinux 0x26cf23cf buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x26e7fdec __brelse +EXPORT_SYMBOL vmlinux 0x270ee624 of_dev_put +EXPORT_SYMBOL vmlinux 0x2718bfb8 copy_to_iter +EXPORT_SYMBOL vmlinux 0x27477acb fb_blank +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274b052d alloc_fcdev +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x27706951 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x2771d7ff ida_get_new_above +EXPORT_SYMBOL vmlinux 0x27725960 keyring_alloc +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x278ce0a3 of_get_next_parent +EXPORT_SYMBOL vmlinux 0x278e89df mmc_free_host +EXPORT_SYMBOL vmlinux 0x279f8cbb security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x27b902b2 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c2af9e generic_write_checks +EXPORT_SYMBOL vmlinux 0x27c8e53a wireless_spy_update +EXPORT_SYMBOL vmlinux 0x27da8def sk_stop_timer +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x27f35daf audit_log_task_info +EXPORT_SYMBOL vmlinux 0x27f9dc73 scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0x27fb9e59 init_task +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x28199e4b submit_bio +EXPORT_SYMBOL vmlinux 0x2820e636 wake_up_process +EXPORT_SYMBOL vmlinux 0x2873a476 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x28890a9a check_disk_size_change +EXPORT_SYMBOL vmlinux 0x289d8ceb __register_nls +EXPORT_SYMBOL vmlinux 0x289db3ee idr_remove +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28a5bc85 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x28a7159f vfs_getxattr_alloc +EXPORT_SYMBOL vmlinux 0x28a7beba __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x28a9d029 tcp_connect +EXPORT_SYMBOL vmlinux 0x28c8c75f blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0x28e6ce45 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x28ed2e55 generic_update_time +EXPORT_SYMBOL vmlinux 0x28f784f5 __debugger_break_match +EXPORT_SYMBOL vmlinux 0x2913f346 sock_no_getname +EXPORT_SYMBOL vmlinux 0x2919d4c2 pci_iomap_range +EXPORT_SYMBOL vmlinux 0x291dcc9c pneigh_lookup +EXPORT_SYMBOL vmlinux 0x2934e0a2 blkdev_get +EXPORT_SYMBOL vmlinux 0x29439a4e devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x294d7b7f finish_no_open +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x2960629c led_blink_set +EXPORT_SYMBOL vmlinux 0x299480fc dqget +EXPORT_SYMBOL vmlinux 0x29af9aad set_binfmt +EXPORT_SYMBOL vmlinux 0x29b191ec freeze_super +EXPORT_SYMBOL vmlinux 0x29b85fe3 iterate_fd +EXPORT_SYMBOL vmlinux 0x29ce8249 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x29ddedb6 nf_log_packet +EXPORT_SYMBOL vmlinux 0x29e19047 dev_uc_add +EXPORT_SYMBOL vmlinux 0x29eafc92 cont_write_begin +EXPORT_SYMBOL vmlinux 0x29ebc995 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x29f08a64 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x29fdda53 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0x2a12f184 __tcf_hash_release +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a73256e pci_dev_driver +EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp +EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x2acb6138 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2adf1cd3 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x2af91d65 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b1aea28 sget_userns +EXPORT_SYMBOL vmlinux 0x2b2693a2 agp_bridge +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b31c39d dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x2b436d8c default_llseek +EXPORT_SYMBOL vmlinux 0x2b69afb0 blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x2b928cab __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x2b9bc391 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2b9e53d6 vm_map_ram +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2baaf9d8 of_platform_device_create +EXPORT_SYMBOL vmlinux 0x2be0f12d dql_completed +EXPORT_SYMBOL vmlinux 0x2be9350f xfrm_init_state +EXPORT_SYMBOL vmlinux 0x2bf466b9 lro_flush_all +EXPORT_SYMBOL vmlinux 0x2bf95caf md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x2bfd1982 open_check_o_direct +EXPORT_SYMBOL vmlinux 0x2c077b66 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x2c10a377 key_type_keyring +EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x2c22cf96 vfs_symlink +EXPORT_SYMBOL vmlinux 0x2c24c5b7 bio_map_kern +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c2bd7e9 tty_name +EXPORT_SYMBOL vmlinux 0x2c2e852b fb_validate_mode +EXPORT_SYMBOL vmlinux 0x2c36d571 mmc_add_host +EXPORT_SYMBOL vmlinux 0x2c3bc0b9 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x2c5c5a3c ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x2c69c2f4 sock_create_kern +EXPORT_SYMBOL vmlinux 0x2c6fde7b phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x2c791b6f dev_get_nest_level +EXPORT_SYMBOL vmlinux 0x2c7b1fca down_timeout +EXPORT_SYMBOL vmlinux 0x2c7e7155 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x2cb1231e dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x2ce5089f dev_mc_flush +EXPORT_SYMBOL vmlinux 0x2cebb9e7 free_netdev +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d2cc9a5 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d37342e cpu_online_mask +EXPORT_SYMBOL vmlinux 0x2d3afcc0 file_open_root +EXPORT_SYMBOL vmlinux 0x2d5ea30a padata_free +EXPORT_SYMBOL vmlinux 0x2d7b8add agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0x2d7f8ea9 stop_tty +EXPORT_SYMBOL vmlinux 0x2d81e63b phy_connect +EXPORT_SYMBOL vmlinux 0x2d836535 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x2d8b9327 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x2d8fa160 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x2d9d3e94 lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0x2da6adeb fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x2daa162b pci_set_power_state +EXPORT_SYMBOL vmlinux 0x2dbd4c4d skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x2dc56fa1 mount_single +EXPORT_SYMBOL vmlinux 0x2df9d75d blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x2e00106f dev_emerg +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e255782 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e2dc3aa __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0x2e398356 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x2e61d2f7 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x2e661673 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x2e6e507e mmc_can_erase +EXPORT_SYMBOL vmlinux 0x2e74a14f dev_err +EXPORT_SYMBOL vmlinux 0x2e84bb9d mntget +EXPORT_SYMBOL vmlinux 0x2eb31f1f key_unlink +EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x2ec66523 dget_parent +EXPORT_SYMBOL vmlinux 0x2ec674ee tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x2ecc5ceb machine_id +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2efa6ac3 mmc_erase +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource +EXPORT_SYMBOL vmlinux 0x2f09cdf1 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x2f13e019 mutex_lock +EXPORT_SYMBOL vmlinux 0x2f29a4cd scsi_host_set_state +EXPORT_SYMBOL vmlinux 0x2f35847e blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f5f2a57 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x2f6c81af inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x2f7a9229 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x2f9dea68 pci_dev_put +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fc037ed pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x300f0ab2 kset_register +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x3022d766 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x30230cbd generic_write_end +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x303264cc pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x3046f744 param_set_bint +EXPORT_SYMBOL vmlinux 0x30560eb3 mach_p1023_rdb +EXPORT_SYMBOL vmlinux 0x305a18e3 fb_class +EXPORT_SYMBOL vmlinux 0x3077f915 vfs_readv +EXPORT_SYMBOL vmlinux 0x307975b0 vga_client_register +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x3099e85f buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30b44cc5 fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0x30b8b35c cpu_to_chip_id +EXPORT_SYMBOL vmlinux 0x30bc8ddf netpoll_print_options +EXPORT_SYMBOL vmlinux 0x30cff6a3 netif_rx_ni +EXPORT_SYMBOL vmlinux 0x30d8f196 inode_change_ok +EXPORT_SYMBOL vmlinux 0x30f76688 phy_init_hw +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310917fe sort +EXPORT_SYMBOL vmlinux 0x3110c230 mapping_tagged +EXPORT_SYMBOL vmlinux 0x3137f501 nvm_get_blk_unlocked +EXPORT_SYMBOL vmlinux 0x31380354 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x315aae09 vm_insert_pfn +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x31837e2e inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x3191f109 __krealloc +EXPORT_SYMBOL vmlinux 0x3196dc0c xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x319d0a09 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x31ac95e9 mmc_can_reset +EXPORT_SYMBOL vmlinux 0x31b46812 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x31b470a2 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x31c4747f tcp_release_cb +EXPORT_SYMBOL vmlinux 0x31e24776 bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x31f0bb78 __kmap_atomic_idx +EXPORT_SYMBOL vmlinux 0x31f2eeff netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x321a34ee hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x321fe3df pci_disable_device +EXPORT_SYMBOL vmlinux 0x32272d42 read_cache_pages +EXPORT_SYMBOL vmlinux 0x3239a9d3 pci_save_state +EXPORT_SYMBOL vmlinux 0x3243b800 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x325338ad inet_select_addr +EXPORT_SYMBOL vmlinux 0x3257baeb __genl_register_family +EXPORT_SYMBOL vmlinux 0x326217e9 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x326817cd pagecache_write_end +EXPORT_SYMBOL vmlinux 0x3268bc80 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x326b8e00 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x32761610 of_get_pci_address +EXPORT_SYMBOL vmlinux 0x327bf96e input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy +EXPORT_SYMBOL vmlinux 0x32b86435 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x32cabaf9 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x32ceeef3 redraw_screen +EXPORT_SYMBOL vmlinux 0x32d79921 generic_listxattr +EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x32de1c69 ata_link_printk +EXPORT_SYMBOL vmlinux 0x32ea35e2 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x32f8347b flush_dcache_icache_page +EXPORT_SYMBOL vmlinux 0x3314ba2c __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x33178a56 dm_put_device +EXPORT_SYMBOL vmlinux 0x33233fcc of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0x335ef16d uart_update_timeout +EXPORT_SYMBOL vmlinux 0x336d5340 pci_enable_msix +EXPORT_SYMBOL vmlinux 0x33a988a1 nf_reinject +EXPORT_SYMBOL vmlinux 0x33adf8c5 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33d9438a try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x33e0d6e1 pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0x33e2920a phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x34052f60 dup_iter +EXPORT_SYMBOL vmlinux 0x340bfdaa mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x3412089e netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x3413dddc __alloc_skb +EXPORT_SYMBOL vmlinux 0x344adbd5 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x347f8922 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x34981857 scsi_add_device +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a8d734 sock_register +EXPORT_SYMBOL vmlinux 0x34b6b743 dquot_commit +EXPORT_SYMBOL vmlinux 0x34b6dc2a tcp_check_req +EXPORT_SYMBOL vmlinux 0x34cdaa9f mutex_trylock +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34fa2b13 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x35302236 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x353de98f cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x35424368 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x355132b5 dquot_alloc +EXPORT_SYMBOL vmlinux 0x35523594 skb_insert +EXPORT_SYMBOL vmlinux 0x35628855 lookup_bdev +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x357127fb mount_bdev +EXPORT_SYMBOL vmlinux 0x3579955f dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x35930784 icmpv6_send +EXPORT_SYMBOL vmlinux 0x35a052ab pcie_get_mps +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35ac9031 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x35c098c6 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x35d6edad pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x35dfebd4 param_ops_int +EXPORT_SYMBOL vmlinux 0x35e4d348 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x35e7a528 tcp_seq_open +EXPORT_SYMBOL vmlinux 0x3618cb2d ida_destroy +EXPORT_SYMBOL vmlinux 0x36212c6c jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x3627b036 of_mdio_parse_addr +EXPORT_SYMBOL vmlinux 0x363f8812 generic_readlink +EXPORT_SYMBOL vmlinux 0x365b8afc module_put +EXPORT_SYMBOL vmlinux 0x3664ff60 kernel_listen +EXPORT_SYMBOL vmlinux 0x366f6d27 idr_destroy +EXPORT_SYMBOL vmlinux 0x367ba856 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x36abf945 sys_copyarea +EXPORT_SYMBOL vmlinux 0x36ad20d1 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x36b0e732 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36cae729 vme_dma_request +EXPORT_SYMBOL vmlinux 0x36deb0fc scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x36e48ca6 inet_ioctl +EXPORT_SYMBOL vmlinux 0x36ed2867 cdev_add +EXPORT_SYMBOL vmlinux 0x36fdda67 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x370744a6 mdiobus_read +EXPORT_SYMBOL vmlinux 0x371d2130 check_legacy_ioport +EXPORT_SYMBOL vmlinux 0x372d586c agp_generic_enable +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x374569f8 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x3758413d security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x376efa87 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x37942d4b ipv4_specific +EXPORT_SYMBOL vmlinux 0x37a1f826 phy_stop +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37b20161 security_file_permission +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37cedbae framebuffer_release +EXPORT_SYMBOL vmlinux 0x37d00477 tty_hangup +EXPORT_SYMBOL vmlinux 0x37e0153d flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 +EXPORT_SYMBOL vmlinux 0x37e7a6ea mount_nodev +EXPORT_SYMBOL vmlinux 0x37f0e0da devm_memremap +EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x381ccc13 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x38363bfc lwtunnel_input +EXPORT_SYMBOL vmlinux 0x384a6525 unlock_page +EXPORT_SYMBOL vmlinux 0x385095a5 mount_subtree +EXPORT_SYMBOL vmlinux 0x38521a64 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x3897b2d4 param_get_invbool +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38b451f2 __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x38b825d1 idr_replace +EXPORT_SYMBOL vmlinux 0x38cdf8bd i8042_install_filter +EXPORT_SYMBOL vmlinux 0x38dbe407 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x38e5f2f9 inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0x38fb9933 tty_std_termios +EXPORT_SYMBOL vmlinux 0x3902216b find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x3925e2bb vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x3952198d md_finish_reshape +EXPORT_SYMBOL vmlinux 0x396500b7 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39c08721 kobject_set_name +EXPORT_SYMBOL vmlinux 0x39cb2e08 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x39cdf63c wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x39dca223 km_is_alive +EXPORT_SYMBOL vmlinux 0x39e0db88 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x39eaa650 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x39f001d0 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x3a1ac054 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x3a21bd74 block_commit_write +EXPORT_SYMBOL vmlinux 0x3a25e59f dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x3a55cfaf of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x3a7debd6 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3a9f08cb of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x3a9f8965 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x3aa95448 fb_get_mode +EXPORT_SYMBOL vmlinux 0x3ae880b6 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x3af25a35 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x3afa8941 fddi_change_mtu +EXPORT_SYMBOL vmlinux 0x3b0b946d writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x3b20b9bc parent_mem_cgroup +EXPORT_SYMBOL vmlinux 0x3b2599d6 deactivate_super +EXPORT_SYMBOL vmlinux 0x3b3ba79b vlan_vid_add +EXPORT_SYMBOL vmlinux 0x3b500ecc elv_rb_find +EXPORT_SYMBOL vmlinux 0x3b51b7e0 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x3b615a21 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b890de1 page_waitqueue +EXPORT_SYMBOL vmlinux 0x3b8e60dd generic_file_llseek +EXPORT_SYMBOL vmlinux 0x3b9ebb1d inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x3ba38795 netdev_printk +EXPORT_SYMBOL vmlinux 0x3bb5df5c bio_reset +EXPORT_SYMBOL vmlinux 0x3bc033ae kmalloc_caches +EXPORT_SYMBOL vmlinux 0x3bc457ce blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x3bc920e6 down_write_trylock +EXPORT_SYMBOL vmlinux 0x3bdbdc54 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x3c1bd570 of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x3c1e1a23 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c42d8d9 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x3c481ccc lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0x3c56a8a5 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x3c652b24 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x3c6928ed from_kuid_munged +EXPORT_SYMBOL vmlinux 0x3c75fd7d key_link +EXPORT_SYMBOL vmlinux 0x3c7ca42a key_invalidate +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c9063a7 elv_rb_add +EXPORT_SYMBOL vmlinux 0x3ca232f7 cdrom_release +EXPORT_SYMBOL vmlinux 0x3caa9ad8 serio_interrupt +EXPORT_SYMBOL vmlinux 0x3cadf619 agp_backend_release +EXPORT_SYMBOL vmlinux 0x3cb3931b sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x3cc4b0dc lg_lock_init +EXPORT_SYMBOL vmlinux 0x3cc4d1fd xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x3cdee821 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x3cdefa70 is_nd_btt +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3ce7580e of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0x3cf423e0 swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x3d02caf4 nf_log_register +EXPORT_SYMBOL vmlinux 0x3d0b9ff4 mach_qemu_e500 +EXPORT_SYMBOL vmlinux 0x3d2e42c5 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x3d628a15 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x3d8460ca udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x3d866306 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x3d883cdf inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x3d9ce9a8 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x3dae79bb tcp_conn_request +EXPORT_SYMBOL vmlinux 0x3dc02a4e flex_array_free_parts +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dd27fbc nvm_put_blk +EXPORT_SYMBOL vmlinux 0x3dd3828e __module_get +EXPORT_SYMBOL vmlinux 0x3dfb11ae mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e0d0ffa grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x3e1ae01d elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0x3e394152 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x3e43dcb7 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x3e72bc57 __blk_end_request +EXPORT_SYMBOL vmlinux 0x3e7c9d25 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get +EXPORT_SYMBOL vmlinux 0x3eb085fe dquot_initialize +EXPORT_SYMBOL vmlinux 0x3eb7746c simple_readpage +EXPORT_SYMBOL vmlinux 0x3ed35288 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x3ee081e6 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x3ee3b7d6 user_path_create +EXPORT_SYMBOL vmlinux 0x3ee4304d twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x3ee9de4a ata_port_printk +EXPORT_SYMBOL vmlinux 0x3eefd7db blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x3f02c8d6 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f0ba69c gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x3f12c56a ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0x3f1fb61d tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x3f206d0a read_cache_page +EXPORT_SYMBOL vmlinux 0x3f2899d9 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x3f3d66d7 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x3f414c3e complete_request_key +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f500bf8 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x3f5e6f37 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x3f616ce2 queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x3f91007d textsearch_destroy +EXPORT_SYMBOL vmlinux 0x3fb1cf71 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x3fdbaf49 md_register_thread +EXPORT_SYMBOL vmlinux 0x3fe0d1c0 slhc_free +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x3ff58c6d mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x3ff8e495 lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0x4014e630 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x401db602 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev +EXPORT_SYMBOL vmlinux 0x4045d8c7 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x4056f42a kill_anon_super +EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a2d1dd dm_table_get_size +EXPORT_SYMBOL vmlinux 0x40a3482f unregister_quota_format +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0x40c04161 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40c8ee52 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x40cad967 eth_header_parse +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40f1a9ae of_cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0x40f1ad10 tb_ticks_per_jiffy +EXPORT_SYMBOL vmlinux 0x40fb415c gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x4102137e __get_user_pages +EXPORT_SYMBOL vmlinux 0x410e045d pci_iomap +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x414945b6 vm_insert_page +EXPORT_SYMBOL vmlinux 0x414f703a simple_open +EXPORT_SYMBOL vmlinux 0x4159c38f ioremap_wc +EXPORT_SYMBOL vmlinux 0x4167adcb serio_unregister_port +EXPORT_SYMBOL vmlinux 0x41684e73 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x4178634b proc_remove +EXPORT_SYMBOL vmlinux 0x41862ad4 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x418afc4f default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x41ad525d tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x41b79539 rtnl_notify +EXPORT_SYMBOL vmlinux 0x41cb0369 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x41e7388b napi_consume_skb +EXPORT_SYMBOL vmlinux 0x4212be94 mac_find_mode +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x422d26d8 km_state_expired +EXPORT_SYMBOL vmlinux 0x423036ce release_firmware +EXPORT_SYMBOL vmlinux 0x42436eca i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x42475b20 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x42927eb7 pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0x42961de2 skb_unlink +EXPORT_SYMBOL vmlinux 0x429768e4 _dev_info +EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x42b413b1 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x42f373a0 nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0x42fce228 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x43300793 vfs_read +EXPORT_SYMBOL vmlinux 0x433b2d42 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x43544266 path_noexec +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x437668b6 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x4381660f clear_inode +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x438ae13f nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x43970466 simple_fill_super +EXPORT_SYMBOL vmlinux 0x43a01f90 complete_all +EXPORT_SYMBOL vmlinux 0x43f072e5 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x43f4b8ea call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x43f87c33 input_grab_device +EXPORT_SYMBOL vmlinux 0x44013452 scsi_device_put +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x441716d5 of_iomap +EXPORT_SYMBOL vmlinux 0x4421359f nf_log_trace +EXPORT_SYMBOL vmlinux 0x4421e6d6 mpage_writepage +EXPORT_SYMBOL vmlinux 0x442921d1 dput +EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x443f5c55 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x44438b96 hex2bin +EXPORT_SYMBOL vmlinux 0x444db9b6 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x44625b08 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x447a90a1 devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0x449d889a devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x44bd0d7f request_firmware +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44eb192e wait_for_completion +EXPORT_SYMBOL vmlinux 0x44ec0d95 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x44ff8fa9 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x4516a284 phy_init_eee +EXPORT_SYMBOL vmlinux 0x45283312 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x4547a8f4 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x4558a057 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x45725aa8 inet6_ioctl +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x45871126 kmap_high +EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource +EXPORT_SYMBOL vmlinux 0x45b4499c i2c_master_recv +EXPORT_SYMBOL vmlinux 0x45b9bdb3 nvm_put_blk_unlocked +EXPORT_SYMBOL vmlinux 0x45bb67d3 dst_discard_out +EXPORT_SYMBOL vmlinux 0x46066b6a swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0x4612c59d down_trylock +EXPORT_SYMBOL vmlinux 0x46164d0a dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x4618caf3 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x461ebfa0 __copy_tofrom_user +EXPORT_SYMBOL vmlinux 0x462345e1 xmon +EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy +EXPORT_SYMBOL vmlinux 0x462ac3e0 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x466e6f3c of_node_put +EXPORT_SYMBOL vmlinux 0x467f72e0 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x46a58b83 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x46a85ed1 abx500_register_ops +EXPORT_SYMBOL vmlinux 0x46c6b689 dev_add_pack +EXPORT_SYMBOL vmlinux 0x46cb50d1 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x46d12956 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x46dded91 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x46e7f72d nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x4722cbb2 nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0x47269f41 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x474eb5bd __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x475088fb neigh_table_clear +EXPORT_SYMBOL vmlinux 0x47608718 fence_init +EXPORT_SYMBOL vmlinux 0x4762fe68 udp_disconnect +EXPORT_SYMBOL vmlinux 0x476bec33 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x476e0fbb dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x4783180f xfrm_lookup +EXPORT_SYMBOL vmlinux 0x47879c09 vme_lm_request +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x479eacb1 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x47dcb3ae con_copy_unimap +EXPORT_SYMBOL vmlinux 0x47e94e8f qdisc_list_add +EXPORT_SYMBOL vmlinux 0x47fae7af sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x4807774d uart_match_port +EXPORT_SYMBOL vmlinux 0x482766a9 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x483295a3 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x483862ad of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x48404b9a remove_wait_queue +EXPORT_SYMBOL vmlinux 0x4840c8d5 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x48535e63 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x4897ed80 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x489f2299 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x48a771c5 cpu_core_map +EXPORT_SYMBOL vmlinux 0x48ad77fb skb_free_datagram +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48e2c43c inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x48ee8940 abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0x48fd6a30 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x490b8e55 may_umount_tree +EXPORT_SYMBOL vmlinux 0x491a7dba __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x4935769a of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x4951aaec jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x499643a6 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x49977619 devm_ioremap +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49bf3ad4 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x49c02d8b gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x49c077d3 of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0x49cd38c5 pci_pme_active +EXPORT_SYMBOL vmlinux 0x49e032c7 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x49e0cebb bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x4a0254ac flow_cache_fini +EXPORT_SYMBOL vmlinux 0x4a05ee32 skb_tx_error +EXPORT_SYMBOL vmlinux 0x4a073cd3 kill_litter_super +EXPORT_SYMBOL vmlinux 0x4a0d11b2 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x4a21c39d devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x4a2f2acd bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x4a31aa77 nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x4a4ad0f8 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x4a595975 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x4a5f582c try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x4a7ad43f udp_seq_open +EXPORT_SYMBOL vmlinux 0x4a7b08a0 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x4aacce87 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk +EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource +EXPORT_SYMBOL vmlinux 0x4ad57501 __blk_end_request_all +EXPORT_SYMBOL vmlinux 0x4ad9e9c8 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x4af1d04f fput +EXPORT_SYMBOL vmlinux 0x4afa43bc pci_pme_capable +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4aff0395 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x4b01b0ff single_release +EXPORT_SYMBOL vmlinux 0x4b04f32d update_region +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x4b2bcb18 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x4b2f9867 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x4b32d43d mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x4b55eba0 seq_pad +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b74db1c blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x4b8326ff ida_remove +EXPORT_SYMBOL vmlinux 0x4ba9a3d6 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bb282b9 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x4bb96e5d blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x4bcf03a4 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x4bd23e47 blk_free_tags +EXPORT_SYMBOL vmlinux 0x4bd5b7a5 sk_receive_skb +EXPORT_SYMBOL vmlinux 0x4be85a03 memweight +EXPORT_SYMBOL vmlinux 0x4bed99b3 __percpu_counter_add +EXPORT_SYMBOL vmlinux 0x4bfa7c5d page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x4bfb6cd2 seq_release +EXPORT_SYMBOL vmlinux 0x4c11435a _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x4c12c697 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x4c29dcbf cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr +EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf +EXPORT_SYMBOL vmlinux 0x4c8d125e kmem_cache_create +EXPORT_SYMBOL vmlinux 0x4c931ea4 vfs_llseek +EXPORT_SYMBOL vmlinux 0x4cbe1dc1 seq_file_path +EXPORT_SYMBOL vmlinux 0x4cd01546 page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0x4cd4472f dcache_dir_close +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4ced6e35 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x4d1c18a0 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x4d21f4ea locks_copy_lock +EXPORT_SYMBOL vmlinux 0x4d24558f agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x4d2d7651 abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask +EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d64ce29 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x4d67cf94 input_unregister_device +EXPORT_SYMBOL vmlinux 0x4d71004a __cpm2_setbrg +EXPORT_SYMBOL vmlinux 0x4d791953 mempool_resize +EXPORT_SYMBOL vmlinux 0x4d86b13d param_ops_bint +EXPORT_SYMBOL vmlinux 0x4d90f8a3 __nd_iostat_start +EXPORT_SYMBOL vmlinux 0x4d95a645 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4db7bfdb neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x4db9d325 migrate_page_copy +EXPORT_SYMBOL vmlinux 0x4dbb18b3 led_update_brightness +EXPORT_SYMBOL vmlinux 0x4dc2444a loop_backing_file +EXPORT_SYMBOL vmlinux 0x4dcd31b9 sock_release +EXPORT_SYMBOL vmlinux 0x4dcdb47e md_cluster_ops +EXPORT_SYMBOL vmlinux 0x4dd17c77 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4de6036c get_agp_version +EXPORT_SYMBOL vmlinux 0x4de69f21 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x4dec6038 memscan +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4df9c3b1 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x4e0a312a sg_miter_stop +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e60610e fsl_lbc_ctrl_dev +EXPORT_SYMBOL vmlinux 0x4e611cfa clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x4e6347fd register_framebuffer +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6a6fb6 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e723aa9 blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x4e983fbb of_phy_find_device +EXPORT_SYMBOL vmlinux 0x4e9ae323 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x4e9dffb5 ip_fast_csum +EXPORT_SYMBOL vmlinux 0x4ea69a2e unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x4ea8471a tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x4eb04192 dev_crit +EXPORT_SYMBOL vmlinux 0x4eb538ee init_buffer +EXPORT_SYMBOL vmlinux 0x4eb8d312 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x4ecb76eb generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x4ef4ba65 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0x4f0af11d crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x4f1960c2 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x4f1afb0b blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f1e2364 vfs_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f32988c neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f593ec4 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x4f5c8068 vme_slave_request +EXPORT_SYMBOL vmlinux 0x4f6041ef dns_query +EXPORT_SYMBOL vmlinux 0x4f655dfb set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f75c909 __kfree_skb +EXPORT_SYMBOL vmlinux 0x4f82b729 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x4fa09b19 blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0x4fcaefc2 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x4fd45ba0 fasync_helper +EXPORT_SYMBOL vmlinux 0x4fdbc7ac contig_page_data +EXPORT_SYMBOL vmlinux 0x4fdc7a37 lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0x4fdee016 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4fe99583 atomic64_dec_if_positive +EXPORT_SYMBOL vmlinux 0x4ff20df5 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x50001e61 mmc_align_data_size +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x501adb40 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x503ba658 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x503cfe12 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x5046f11f __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x505e8a43 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x50612e50 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x5069cc63 dquot_release +EXPORT_SYMBOL vmlinux 0x5072032d pcie_set_mps +EXPORT_SYMBOL vmlinux 0x5082a57c input_free_device +EXPORT_SYMBOL vmlinux 0x509817cf vprintk_emit +EXPORT_SYMBOL vmlinux 0x50995925 serio_rescan +EXPORT_SYMBOL vmlinux 0x50b66bcb radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x50da5ddc tty_kref_put +EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x50e7885c xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x50f8e3ae skb_store_bits +EXPORT_SYMBOL vmlinux 0x50fe5c0d of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x512894b4 pci_get_subsys +EXPORT_SYMBOL vmlinux 0x51327cbd pci_get_class +EXPORT_SYMBOL vmlinux 0x51503318 console_stop +EXPORT_SYMBOL vmlinux 0x515aaf44 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x515e24a7 flush_instruction_cache +EXPORT_SYMBOL vmlinux 0x5173aee8 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0x517918ea dcb_getapp +EXPORT_SYMBOL vmlinux 0x518cce4f sg_miter_next +EXPORT_SYMBOL vmlinux 0x518ddebc cfb_fillrect +EXPORT_SYMBOL vmlinux 0x519b0da3 finish_wait +EXPORT_SYMBOL vmlinux 0x51c63176 unregister_nls +EXPORT_SYMBOL vmlinux 0x51db354e search_binary_handler +EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup +EXPORT_SYMBOL vmlinux 0x51f2823f bio_flush_dcache_pages +EXPORT_SYMBOL vmlinux 0x51f3272e blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x5220f8ac set_posix_acl +EXPORT_SYMBOL vmlinux 0x52329449 vfs_statfs +EXPORT_SYMBOL vmlinux 0x5247dd4b sock_sendmsg +EXPORT_SYMBOL vmlinux 0x5265e0cd jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x52af562a __crc32c_le +EXPORT_SYMBOL vmlinux 0x52da2365 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x5321a177 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x53289e60 nvm_get_blk +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x5354b539 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x537ac7a4 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x5395a651 simple_empty +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x53ab861c skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x53ac09f5 devm_iounmap +EXPORT_SYMBOL vmlinux 0x53d28c77 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x53e7e751 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x53ebab1b _outsl_ns +EXPORT_SYMBOL vmlinux 0x53fded08 d_genocide +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x54097797 acl_by_type +EXPORT_SYMBOL vmlinux 0x5412c7c7 up +EXPORT_SYMBOL vmlinux 0x541e3955 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x542606b0 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x5428e654 tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0x543294d1 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x5442052e ip6_frag_match +EXPORT_SYMBOL vmlinux 0x5445b294 param_set_ullong +EXPORT_SYMBOL vmlinux 0x545a4dc5 nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x54626d95 sk_mc_loop +EXPORT_SYMBOL vmlinux 0x54787e19 blk_put_request +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54daef5d jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x54dfadba qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x550e119b add_disk +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x55332ce2 inet_release +EXPORT_SYMBOL vmlinux 0x5537f0c6 seq_write +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x5564544e pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x55670591 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x5568c553 complete +EXPORT_SYMBOL vmlinux 0x55695279 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x557156cf bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x5577ef9e udp_table +EXPORT_SYMBOL vmlinux 0x55841b7c vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x55a2f45b nobh_write_begin +EXPORT_SYMBOL vmlinux 0x55b47536 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x55b7f815 padata_do_parallel +EXPORT_SYMBOL vmlinux 0x55bb69b3 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x55c30add kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55d6c462 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x56158320 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x56179ff2 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x56198375 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x561c9228 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x5625fb98 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x562dd653 skb_queue_head +EXPORT_SYMBOL vmlinux 0x562fd2f8 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x5641d569 sock_no_poll +EXPORT_SYMBOL vmlinux 0x5645f8b1 generic_setlease +EXPORT_SYMBOL vmlinux 0x56695410 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x566b72f2 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x566df263 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x5676ede3 param_get_byte +EXPORT_SYMBOL vmlinux 0x5676f472 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x5695fb6f of_find_property +EXPORT_SYMBOL vmlinux 0x56a4024e blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56dfee04 of_clk_get +EXPORT_SYMBOL vmlinux 0x56ec0c7f ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x57034725 dm_get_device +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x57461197 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x575af70c on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x57890957 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x579fbcd2 cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x57a3af5d i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x57ae095f decrementer_clockevent +EXPORT_SYMBOL vmlinux 0x57b7a2b0 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x57c3d529 ns_capable +EXPORT_SYMBOL vmlinux 0x57c51a6b blk_stack_limits +EXPORT_SYMBOL vmlinux 0x57dee6f1 downgrade_write +EXPORT_SYMBOL vmlinux 0x57e3627b sk_alloc +EXPORT_SYMBOL vmlinux 0x58188520 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x582981d6 dquot_drop +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x583c8d0f mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x58493412 security_path_symlink +EXPORT_SYMBOL vmlinux 0x584ef1d9 dm_put_table_device +EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep +EXPORT_SYMBOL vmlinux 0x58589080 unlock_buffer +EXPORT_SYMBOL vmlinux 0x586134da netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x58623807 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x58741dba generic_end_io_acct +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x58772c4f cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x587b9f1c vfs_writef +EXPORT_SYMBOL vmlinux 0x58886848 __find_get_block +EXPORT_SYMBOL vmlinux 0x58aac6b2 vga_get +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58d6a2b6 dcache_readdir +EXPORT_SYMBOL vmlinux 0x58def353 md_done_sync +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58fe5f80 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x5905d860 vm_stat +EXPORT_SYMBOL vmlinux 0x5910e5d7 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x591241d0 register_sysctl_table +EXPORT_SYMBOL vmlinux 0x5932b12d clkdev_drop +EXPORT_SYMBOL vmlinux 0x59367e9e tcp_read_sock +EXPORT_SYMBOL vmlinux 0x59369cf2 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x5949c67a fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x595d0946 empty_zero_page +EXPORT_SYMBOL vmlinux 0x5963d589 devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x599517b7 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59b3378a completion_done +EXPORT_SYMBOL vmlinux 0x59c7cc3e mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x5a08e00d lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a1159f8 scsi_host_put +EXPORT_SYMBOL vmlinux 0x5a3874ac cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x5a3e9eaa of_device_is_available +EXPORT_SYMBOL vmlinux 0x5a4950f9 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x5a4ae4e5 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x5a4b442d bio_clone_bioset +EXPORT_SYMBOL vmlinux 0x5a79cf09 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x5a7f9140 locks_free_lock +EXPORT_SYMBOL vmlinux 0x5a8e7f31 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x5a95ff89 sk_capable +EXPORT_SYMBOL vmlinux 0x5aabf0d5 __frontswap_test +EXPORT_SYMBOL vmlinux 0x5ad46740 inet_add_offload +EXPORT_SYMBOL vmlinux 0x5ae6c491 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x5ae75d08 scsi_device_get +EXPORT_SYMBOL vmlinux 0x5afe7223 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b02c0c7 phy_suspend +EXPORT_SYMBOL vmlinux 0x5b0b95ae sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem +EXPORT_SYMBOL vmlinux 0x5b29a751 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x5b2d2f2c skb_trim +EXPORT_SYMBOL vmlinux 0x5b42372e security_task_getsecid +EXPORT_SYMBOL vmlinux 0x5b423c8a dev_addr_init +EXPORT_SYMBOL vmlinux 0x5b8256b0 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0x5b9828c5 dma_spin_lock +EXPORT_SYMBOL vmlinux 0x5bae0046 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x5bb29ac0 __blk_run_queue +EXPORT_SYMBOL vmlinux 0x5bb62533 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x5bc28d1a generic_writepages +EXPORT_SYMBOL vmlinux 0x5bedd2a2 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x5bf20145 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x5bf80882 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x5bf81805 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x5c171930 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x5c1c83ce set_wb_congested +EXPORT_SYMBOL vmlinux 0x5c29c357 set_anon_super +EXPORT_SYMBOL vmlinux 0x5c2b93f1 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x5c37f319 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x5c44ba6a dev_set_group +EXPORT_SYMBOL vmlinux 0x5c5a3158 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x5c62dee4 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x5c656d57 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x5c6855e0 setup_new_exec +EXPORT_SYMBOL vmlinux 0x5c7b5085 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x5c7d7472 devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0x5c92fa25 tty_vhangup +EXPORT_SYMBOL vmlinux 0x5cada3ab padata_do_serial +EXPORT_SYMBOL vmlinux 0x5cbdbbb1 current_in_userns +EXPORT_SYMBOL vmlinux 0x5cc32bdc bitmap_copy_le +EXPORT_SYMBOL vmlinux 0x5cdcf53a t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x5ce96127 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5d079085 flush_signals +EXPORT_SYMBOL vmlinux 0x5d11d8ca blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x5d1a6ee2 devm_request_resource +EXPORT_SYMBOL vmlinux 0x5d246990 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x5d2e603a __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d58efa0 convert_ifc_address +EXPORT_SYMBOL vmlinux 0x5d76d17f xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x5d83697b iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0x5d9208a7 make_kgid +EXPORT_SYMBOL vmlinux 0x5da0a07b security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x5dd0c29d ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x5df5e421 write_one_page +EXPORT_SYMBOL vmlinux 0x5e01fc34 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x5e11546d max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x5e27321b register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x5e314cfa iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x5e3a8a9c __wake_up +EXPORT_SYMBOL vmlinux 0x5e4e1bc8 input_get_keycode +EXPORT_SYMBOL vmlinux 0x5e585b14 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x5e643e1e mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x5e674ce6 __dax_fault +EXPORT_SYMBOL vmlinux 0x5e791256 dev_addr_del +EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes +EXPORT_SYMBOL vmlinux 0x5e928c4c inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e95b9f2 param_get_int +EXPORT_SYMBOL vmlinux 0x5eb0401e proc_dostring +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ebfaa08 release_pages +EXPORT_SYMBOL vmlinux 0x5ec87838 reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0x5ecd5afe agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ef2d136 inet6_offloads +EXPORT_SYMBOL vmlinux 0x5efbb7b5 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f0604a3 rwsem_wake +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f0cf046 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x5f1ac43e jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x5f1e9344 try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x5f2916cb jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x5f46874b phy_device_create +EXPORT_SYMBOL vmlinux 0x5f4a0577 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x5f4de8c6 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x5f5bd557 nvm_erase_blk +EXPORT_SYMBOL vmlinux 0x5f723ff0 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x5f754e5a memset +EXPORT_SYMBOL vmlinux 0x5f7b0ee1 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x5f8a2728 isa_io_base +EXPORT_SYMBOL vmlinux 0x5f8ac2f6 bio_copy_data +EXPORT_SYMBOL vmlinux 0x5fbf87e1 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x5fd268cb radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5fe3c156 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x5ff7e314 param_ops_byte +EXPORT_SYMBOL vmlinux 0x5fffb517 pcim_iomap +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x6016558c file_remove_privs +EXPORT_SYMBOL vmlinux 0x6017ed05 nd_iostat_end +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x602d5993 dma_set_mask +EXPORT_SYMBOL vmlinux 0x60307f00 iget_locked +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x606d8596 fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0x6073732c cur_cpu_spec +EXPORT_SYMBOL vmlinux 0x60799030 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x6088f3d0 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60b86f61 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x60cd1d9d textsearch_register +EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x60f397f6 __vfs_write +EXPORT_SYMBOL vmlinux 0x61189ac0 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x611b4404 ata_dev_printk +EXPORT_SYMBOL vmlinux 0x6121295e seq_open_private +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x61557d94 eth_header +EXPORT_SYMBOL vmlinux 0x6157cd0c devm_clk_put +EXPORT_SYMBOL vmlinux 0x615bf490 of_match_node +EXPORT_SYMBOL vmlinux 0x6167caca mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0x61774c33 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x61b3560c cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61eef2c9 _insb +EXPORT_SYMBOL vmlinux 0x61f0ee17 vga_con +EXPORT_SYMBOL vmlinux 0x61f858cd end_page_writeback +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6220b4a2 crc32_le +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x622d73fe udp_add_offload +EXPORT_SYMBOL vmlinux 0x62518c95 param_get_bool +EXPORT_SYMBOL vmlinux 0x62538167 slhc_toss +EXPORT_SYMBOL vmlinux 0x625d9784 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x626cd503 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x62708af5 __inet_hash +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x6274b5bb fget_raw +EXPORT_SYMBOL vmlinux 0x627df6c7 mdiobus_write +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x6289c08a udp_poll +EXPORT_SYMBOL vmlinux 0x629903d4 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x62996d23 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x62af639f tso_build_hdr +EXPORT_SYMBOL vmlinux 0x62b2f04b blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x62db7281 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x630d1768 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x631079c0 get_super +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x6331f24d sock_kmalloc +EXPORT_SYMBOL vmlinux 0x633b55a6 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x6381c383 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x638a5dc4 key_task_permission +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63bdd013 tty_devnum +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63dd96a3 secpath_dup +EXPORT_SYMBOL vmlinux 0x63e42cdd sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x63e6966a of_get_parent +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63ecd7d2 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x63ed678d scsi_print_sense +EXPORT_SYMBOL vmlinux 0x63ee79bd jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user +EXPORT_SYMBOL vmlinux 0x64011a80 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x6419a66c pci_set_master +EXPORT_SYMBOL vmlinux 0x642f0439 elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x64565307 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x6496d76c skb_dequeue +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a4b84d cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x64af8829 from_kprojid +EXPORT_SYMBOL vmlinux 0x64b44eb0 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x64b71ec3 scsi_register +EXPORT_SYMBOL vmlinux 0x64bfac0f dquot_acquire +EXPORT_SYMBOL vmlinux 0x64cd9063 sync_blockdev +EXPORT_SYMBOL vmlinux 0x64ddc8c8 lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0x64fbf218 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x6514f70a uart_get_divisor +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x652847a3 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x652f882a input_register_device +EXPORT_SYMBOL vmlinux 0x65400222 __irq_offset_value +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x6546343c ip6_xmit +EXPORT_SYMBOL vmlinux 0x6547c1b3 neigh_table_init +EXPORT_SYMBOL vmlinux 0x6552d81d copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x6564bb88 bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x6565d33f scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x657123ca input_release_device +EXPORT_SYMBOL vmlinux 0x658423f9 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x658bb1ca locks_mandatory_area +EXPORT_SYMBOL vmlinux 0x6595cf0c nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0x659adb82 key_validate +EXPORT_SYMBOL vmlinux 0x659c2d72 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x65bb58a2 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x65c24d9a pci_set_mwi +EXPORT_SYMBOL vmlinux 0x65cabc01 devfreq_add_device +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x66196a24 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x663d006b keyring_clear +EXPORT_SYMBOL vmlinux 0x663df9e8 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x66426082 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x664a98e9 pci_map_rom +EXPORT_SYMBOL vmlinux 0x666ce694 elv_rb_del +EXPORT_SYMBOL vmlinux 0x667e15a2 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x667e6e34 get_task_io_context +EXPORT_SYMBOL vmlinux 0x66869ec5 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x6687d59a __sb_start_write +EXPORT_SYMBOL vmlinux 0x6695ed8e lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0x66b8d500 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x66cc861a security_path_mkdir +EXPORT_SYMBOL vmlinux 0x66e77ac0 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x66eac8c1 rt6_lookup +EXPORT_SYMBOL vmlinux 0x66ec67a4 path_is_under +EXPORT_SYMBOL vmlinux 0x66fcc890 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x670b47e9 key_put +EXPORT_SYMBOL vmlinux 0x67157fdd of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x6732f3cb of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x6743cbb5 fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create +EXPORT_SYMBOL vmlinux 0x6784edf1 cfb_copyarea +EXPORT_SYMBOL vmlinux 0x67974f31 of_scan_pci_bridge +EXPORT_SYMBOL vmlinux 0x679f2f4d dev_mc_sync +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67bf9b44 blk_start_queue_async +EXPORT_SYMBOL vmlinux 0x67c27335 qdisc_list_del +EXPORT_SYMBOL vmlinux 0x67e2e572 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x67e332d2 kern_path +EXPORT_SYMBOL vmlinux 0x67e8eb14 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x680bd375 path_nosuid +EXPORT_SYMBOL vmlinux 0x681426b6 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x68327444 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x68609857 complete_and_exit +EXPORT_SYMBOL vmlinux 0x68698408 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68a28c4b scsi_init_io +EXPORT_SYMBOL vmlinux 0x68a66ec6 dma_pool_create +EXPORT_SYMBOL vmlinux 0x68abfd2b dump_skip +EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x68bed9a7 vfs_getattr +EXPORT_SYMBOL vmlinux 0x68cda86c blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x68e1dee3 vfs_readf +EXPORT_SYMBOL vmlinux 0x690971ba serio_open +EXPORT_SYMBOL vmlinux 0x691e4485 follow_pfn +EXPORT_SYMBOL vmlinux 0x6941a09f scsi_print_result +EXPORT_SYMBOL vmlinux 0x69488bb7 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x695dc729 tty_lock +EXPORT_SYMBOL vmlinux 0x696d3e18 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x697641fe unregister_shrinker +EXPORT_SYMBOL vmlinux 0x698ea040 genlmsg_put +EXPORT_SYMBOL vmlinux 0x69926329 unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0x699b981c netif_device_detach +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource +EXPORT_SYMBOL vmlinux 0x69a7c737 register_key_type +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69be8ee1 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x69ca64e5 param_get_long +EXPORT_SYMBOL vmlinux 0x69d4ba58 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x69d7e5b8 __debugger_ipi +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a33782a pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x6a397d85 phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0x6a516ef5 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x6a524a60 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x6a5e0df8 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a62aa99 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x6a6756a2 __break_lease +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6a80a3f5 cpm_muram_free +EXPORT_SYMBOL vmlinux 0x6a97f33d input_event +EXPORT_SYMBOL vmlinux 0x6ac5d287 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be +EXPORT_SYMBOL vmlinux 0x6aeaf6a8 unregister_console +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6afe28ac input_unregister_handler +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b1aab6b clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b2a1538 write_inode_now +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b3605c8 unregister_md_personality +EXPORT_SYMBOL vmlinux 0x6b367e6b input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x6b66c889 fence_free +EXPORT_SYMBOL vmlinux 0x6b6a9b12 pci_get_slot +EXPORT_SYMBOL vmlinux 0x6b7ec74a get_acl +EXPORT_SYMBOL vmlinux 0x6b9a4df6 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x6b9bf103 mntput +EXPORT_SYMBOL vmlinux 0x6baeffc8 netif_napi_del +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bca21cf dev_add_offload +EXPORT_SYMBOL vmlinux 0x6bd83614 no_llseek +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6bf7fa43 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x6c02197b bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer +EXPORT_SYMBOL vmlinux 0x6c18be50 blk_peek_request +EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn +EXPORT_SYMBOL vmlinux 0x6c3c7ebc sock_no_accept +EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c8319ed __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x6ca01cf3 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0x6ca1d1a4 atomic64_read +EXPORT_SYMBOL vmlinux 0x6cb2a262 input_set_keycode +EXPORT_SYMBOL vmlinux 0x6cb37127 flex_array_clear +EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6cdd0d87 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x6ce00c8a __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x6d00e930 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x6d075eb8 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x6d0cf256 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d14eef8 __put_cred +EXPORT_SYMBOL vmlinux 0x6d27d0f3 fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d54e46d vfs_fsync +EXPORT_SYMBOL vmlinux 0x6d5cc840 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x6d630118 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0x6d740223 flex_array_put +EXPORT_SYMBOL vmlinux 0x6d81ea3b ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x6d8cc943 bioset_free +EXPORT_SYMBOL vmlinux 0x6d9deb89 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x6da8029e __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x6da928f4 _insw_ns +EXPORT_SYMBOL vmlinux 0x6db6d582 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x6dbe7fc1 inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0x6dd31ef4 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x6dd4a277 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e379526 kernstart_addr +EXPORT_SYMBOL vmlinux 0x6e49a735 mem_cgroup_begin_page_stat +EXPORT_SYMBOL vmlinux 0x6e6514ed radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6e6bb72e nvm_dev_factory +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e933fed mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x6e94cec5 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x6e9bb384 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6eaa7438 __secpath_destroy +EXPORT_SYMBOL vmlinux 0x6eb74dff proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x6ed26f6a phy_drivers_register +EXPORT_SYMBOL vmlinux 0x6edbeffe skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x6f11b8b0 proc_set_user +EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash +EXPORT_SYMBOL vmlinux 0x6f28921f d_instantiate +EXPORT_SYMBOL vmlinux 0x6f3ddb99 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x6f702a71 up_write +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6fa0d84f request_key_async +EXPORT_SYMBOL vmlinux 0x6fa975c8 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fe8b450 tcf_hash_search +EXPORT_SYMBOL vmlinux 0x702ad4fe tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x7062b4cd cmdline_parts_free +EXPORT_SYMBOL vmlinux 0x7066e3ba pci_clear_master +EXPORT_SYMBOL vmlinux 0x706ad38e scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync +EXPORT_SYMBOL vmlinux 0x70796d6c security_inode_permission +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x7096d1a8 mutex_unlock +EXPORT_SYMBOL vmlinux 0x70aa4d0d get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x70aef6b0 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x70d888b7 __debugger_fault_handler +EXPORT_SYMBOL vmlinux 0x70f5566f skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x7109928b jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x710a87f9 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x71110072 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x7112447a disk_stack_limits +EXPORT_SYMBOL vmlinux 0x711937c4 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x7121320c wait_iff_congested +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x712d8a98 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x712ed37b radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x7131e0ab bio_integrity_free +EXPORT_SYMBOL vmlinux 0x7140a8ba dqput +EXPORT_SYMBOL vmlinux 0x714e26bc kernel_getpeername +EXPORT_SYMBOL vmlinux 0x714e697b __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x714f20b7 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x71597942 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x715a8ddf dquot_commit_info +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x71771afb __scm_send +EXPORT_SYMBOL vmlinux 0x717f9b5d md_update_sb +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71c90087 memcmp +EXPORT_SYMBOL vmlinux 0x71e8fb36 md_reload_sb +EXPORT_SYMBOL vmlinux 0x71ef67c1 reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0x71f2fc1f mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x71f65175 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x7204a907 component_match_add +EXPORT_SYMBOL vmlinux 0x72115c9d ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x72278c7e phy_attach_direct +EXPORT_SYMBOL vmlinux 0x723a0410 send_sig_info +EXPORT_SYMBOL vmlinux 0x723a4404 mdiobus_free +EXPORT_SYMBOL vmlinux 0x72403d9d tso_start +EXPORT_SYMBOL vmlinux 0x724068df agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0x7248f754 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x725e7144 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x726d2756 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x726db164 blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x7279cd66 tty_port_init +EXPORT_SYMBOL vmlinux 0x72a2086d ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x72a55efb __pagevec_release +EXPORT_SYMBOL vmlinux 0x72aa9a81 __bread_gfp +EXPORT_SYMBOL vmlinux 0x72acdbb7 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x72b1ac94 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72b6fa56 fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x72d4c23c fsl_get_sys_freq +EXPORT_SYMBOL vmlinux 0x72d58de9 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x72de35ac swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72eab541 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x72ee2df3 of_n_size_cells +EXPORT_SYMBOL vmlinux 0x72f98b62 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x72f9b4d3 simple_rmdir +EXPORT_SYMBOL vmlinux 0x7302c073 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x730d1692 mem_cgroup_end_page_stat +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x73265b16 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x733b2383 next_tlbcam_idx +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x7346ed11 nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0x73510d7c ___pskb_trim +EXPORT_SYMBOL vmlinux 0x735d8503 add_wait_queue +EXPORT_SYMBOL vmlinux 0x73710a3e dqstats +EXPORT_SYMBOL vmlinux 0x73979de6 atomic64_or +EXPORT_SYMBOL vmlinux 0x739c6947 scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0x73a10818 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x73a78180 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x73c0a636 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x73db95f0 neigh_lookup +EXPORT_SYMBOL vmlinux 0x73e08fe9 mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy +EXPORT_SYMBOL vmlinux 0x73e7c5d4 pci_match_id +EXPORT_SYMBOL vmlinux 0x73ffd966 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7417682b inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x7420cb4c pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x7433d054 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x743e1164 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0x7449f772 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x744bb661 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x744c3950 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x744f8eb3 flush_dcache_page +EXPORT_SYMBOL vmlinux 0x7457b3f6 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x746601f3 get_io_context +EXPORT_SYMBOL vmlinux 0x74717a0b d_instantiate_unique +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x747686e7 set_device_ro +EXPORT_SYMBOL vmlinux 0x748136df register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74dfdcb4 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74f82e6e phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv +EXPORT_SYMBOL vmlinux 0x751a5b7b pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x7531a7ec kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x753ca423 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x7549f012 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x754c2331 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x755464b0 agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0x755fd82c napi_gro_frags +EXPORT_SYMBOL vmlinux 0x756704ac poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x756dd160 start_thread +EXPORT_SYMBOL vmlinux 0x757f088f cpm_muram_offset +EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 +EXPORT_SYMBOL vmlinux 0x75967219 __get_page_tail +EXPORT_SYMBOL vmlinux 0x75994700 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0x75996a12 filemap_flush +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75be856f serio_bus +EXPORT_SYMBOL vmlinux 0x75e74e24 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x75e886d1 xattr_full_name +EXPORT_SYMBOL vmlinux 0x75ff96f2 inet_frag_find +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x762b84c3 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x763eed2e devm_gpio_free +EXPORT_SYMBOL vmlinux 0x76414630 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764bd77c request_resource +EXPORT_SYMBOL vmlinux 0x768f4bdc gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x76983893 clk_add_alias +EXPORT_SYMBOL vmlinux 0x769dd0ed filemap_fault +EXPORT_SYMBOL vmlinux 0x769e06d7 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x76ae215a __nla_reserve +EXPORT_SYMBOL vmlinux 0x76be5f74 simple_setattr +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76d9bf11 crc32_be +EXPORT_SYMBOL vmlinux 0x76e396da bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x76f6c5ef kmalloc_order +EXPORT_SYMBOL vmlinux 0x77143a97 dentry_unhash +EXPORT_SYMBOL vmlinux 0x7714b882 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x7714fee1 inet_frags_init +EXPORT_SYMBOL vmlinux 0x7715b3c5 inet_addr_type +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x772b66b7 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x77451379 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x77480e50 free_task +EXPORT_SYMBOL vmlinux 0x774b7128 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x7769f94a remap_pfn_range +EXPORT_SYMBOL vmlinux 0x7782e6e6 PDE_DATA +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x779d4991 tty_mutex +EXPORT_SYMBOL vmlinux 0x77b0298c ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x77b97938 consume_skb +EXPORT_SYMBOL vmlinux 0x77b9dee8 of_device_unregister +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77fabca8 d_path +EXPORT_SYMBOL vmlinux 0x782567ec memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x783b977a kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x785e08a2 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x788e53ae scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78a82619 block_write_end +EXPORT_SYMBOL vmlinux 0x78c7f934 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x78d02b30 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e8ea26 sock_update_memcg +EXPORT_SYMBOL vmlinux 0x78e8f984 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x78f3e6e7 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x79223781 of_match_device +EXPORT_SYMBOL vmlinux 0x792aff6e __serio_register_port +EXPORT_SYMBOL vmlinux 0x795f6f62 seq_read +EXPORT_SYMBOL vmlinux 0x79659339 kill_fasync +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x79706d62 pci_find_bus +EXPORT_SYMBOL vmlinux 0x79a25168 dm_io +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79c5d72d tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x79cae5a4 devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0x79e7f4a9 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x79f9f2ed devm_ioport_map +EXPORT_SYMBOL vmlinux 0x7a1aae80 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x7a2add7d current_kernel_time64 +EXPORT_SYMBOL vmlinux 0x7a3399cf touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x7a369211 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x7a3cd3c4 set_nlink +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a56bb1a jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x7a61525f phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x7a69c808 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x7a81ab22 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x7a9506a0 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aa7d8bb security_inode_init_security +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf +EXPORT_SYMBOL vmlinux 0x7b05e944 dentry_update_name_case +EXPORT_SYMBOL vmlinux 0x7b0d2c03 local_flush_tlb_page +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b1ade38 lz4_decompress +EXPORT_SYMBOL vmlinux 0x7b2626bc tcp_splice_read +EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x7b3b766d inet_shutdown +EXPORT_SYMBOL vmlinux 0x7b44d608 vmap +EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap +EXPORT_SYMBOL vmlinux 0x7b7c1896 set_bh_page +EXPORT_SYMBOL vmlinux 0x7bc780d2 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x7bdb8ba0 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x7be4827c pci_dram_offset +EXPORT_SYMBOL vmlinux 0x7bef0f6c of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x7c003aef _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c34fd94 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x7c43058b tty_set_operations +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c61340c __release_region +EXPORT_SYMBOL vmlinux 0x7c6f304f jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x7c70642f mpage_writepages +EXPORT_SYMBOL vmlinux 0x7c84f858 phy_detach +EXPORT_SYMBOL vmlinux 0x7c9291d1 csum_partial_copy_generic +EXPORT_SYMBOL vmlinux 0x7c981558 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7c9bcb64 udp_set_csum +EXPORT_SYMBOL vmlinux 0x7ca5ca89 iunique +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7cf17aaf mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d5cc8f0 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x7d67b743 igrab +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d84d379 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x7db8f434 seq_puts +EXPORT_SYMBOL vmlinux 0x7dbe05b0 nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0x7dbf7739 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x7dd05a68 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x7dd2893f dev_warn +EXPORT_SYMBOL vmlinux 0x7debaee3 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7df58462 d_alloc +EXPORT_SYMBOL vmlinux 0x7e0fc82c pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x7e433e2c pci_dev_get +EXPORT_SYMBOL vmlinux 0x7e5d1edc tty_do_resize +EXPORT_SYMBOL vmlinux 0x7e73da9e path_put +EXPORT_SYMBOL vmlinux 0x7e87227e slhc_compress +EXPORT_SYMBOL vmlinux 0x7e8eb498 netdev_err +EXPORT_SYMBOL vmlinux 0x7e9076fd skb_find_text +EXPORT_SYMBOL vmlinux 0x7ebaa052 __mdiobus_register +EXPORT_SYMBOL vmlinux 0x7ecb001b __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x7ede6047 skb_push +EXPORT_SYMBOL vmlinux 0x7ee4c529 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7ee73c0c memcg_socket_limit_enabled +EXPORT_SYMBOL vmlinux 0x7ef8efb4 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x7f0202c6 dquot_destroy +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f2bc1ba padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0x7f327c8a ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x7f33718a __netif_schedule +EXPORT_SYMBOL vmlinux 0x7f3544ce sk_free +EXPORT_SYMBOL vmlinux 0x7f488cef phy_start_aneg +EXPORT_SYMBOL vmlinux 0x7f5448c0 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f80856d drop_super +EXPORT_SYMBOL vmlinux 0x7f81c930 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x7fb42de8 inet_bind +EXPORT_SYMBOL vmlinux 0x7fb775c0 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x7fbcbf25 elevator_change +EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fe345bb pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x7fe7599b sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x7feaeac2 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x8031d663 kmap_atomic_prot +EXPORT_SYMBOL vmlinux 0x803e54ba param_ops_ushort +EXPORT_SYMBOL vmlinux 0x804b36e7 genphy_update_link +EXPORT_SYMBOL vmlinux 0x80547e98 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x805490cd inode_set_flags +EXPORT_SYMBOL vmlinux 0x805ca06e kill_pgrp +EXPORT_SYMBOL vmlinux 0x809c03de qdisc_reset +EXPORT_SYMBOL vmlinux 0x80c17799 replace_mount_options +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d3e1b3 ps2_command +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80d98019 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x80e2c33f dquot_free_inode +EXPORT_SYMBOL vmlinux 0x80e66dce i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x80eed8e7 filp_close +EXPORT_SYMBOL vmlinux 0x80f83a38 nvm_register +EXPORT_SYMBOL vmlinux 0x81442bed km_policy_notify +EXPORT_SYMBOL vmlinux 0x8145cf31 inet_accept +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x815453c5 input_reset_device +EXPORT_SYMBOL vmlinux 0x8156d623 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815c56d0 cpu_present_mask +EXPORT_SYMBOL vmlinux 0x816f5cdb pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x81a07f4e _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x81beccc9 input_flush_device +EXPORT_SYMBOL vmlinux 0x81c125a5 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x8203fb5e bio_phys_segments +EXPORT_SYMBOL vmlinux 0x82043f98 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x822677aa revert_creds +EXPORT_SYMBOL vmlinux 0x822c5a8c fence_add_callback +EXPORT_SYMBOL vmlinux 0x824bf4b8 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0x824c6c2e pci_release_regions +EXPORT_SYMBOL vmlinux 0x82606a32 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x82664d3a d_rehash +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x8272fb06 thaw_super +EXPORT_SYMBOL vmlinux 0x8277b080 security_path_rmdir +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82829f79 neigh_update +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82c65abd netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x82cd540a atomic64_and +EXPORT_SYMBOL vmlinux 0x82e5a238 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x82fe00f6 get_tz_trend +EXPORT_SYMBOL vmlinux 0x830daa8b netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x831ed666 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x832fa791 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x833e6bf9 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x8341021a zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x834ab166 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x8359e879 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x8372cd2f __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x8379d22b kernel_write +EXPORT_SYMBOL vmlinux 0x838041f7 uart_register_driver +EXPORT_SYMBOL vmlinux 0x83835e37 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x83844c29 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x8387ae62 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x83a075a1 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x83a3e047 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x83a698d0 seq_dentry +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83bf0f15 pci_domain_nr +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83cbf427 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x843add40 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x844404cf ISA_DMA_THRESHOLD +EXPORT_SYMBOL vmlinux 0x844b99de sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x844d53b8 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x84612eb4 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x846de109 unlock_rename +EXPORT_SYMBOL vmlinux 0x8477beb6 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x84826bfe sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x84a66e7b new_inode +EXPORT_SYMBOL vmlinux 0x84ac8684 __invalidate_device +EXPORT_SYMBOL vmlinux 0x84b183ae strncmp +EXPORT_SYMBOL vmlinux 0x84bd69bf dq_data_lock +EXPORT_SYMBOL vmlinux 0x84cea3a3 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x84ee0455 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x850141ee misc_deregister +EXPORT_SYMBOL vmlinux 0x85039a41 param_ops_string +EXPORT_SYMBOL vmlinux 0x85206489 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x8537b5a9 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x8559bcb4 mmc_start_req +EXPORT_SYMBOL vmlinux 0x855ae6cd kfree_skb_list +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x85707848 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x857abe22 key_revoke +EXPORT_SYMBOL vmlinux 0x857ea2aa of_phy_connect +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85c0e18b block_invalidatepage +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e9e020 lock_fb_info +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x8600653e page_cache_next_hole +EXPORT_SYMBOL vmlinux 0x860be789 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x860e8f00 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x860ec3b3 phy_device_register +EXPORT_SYMBOL vmlinux 0x8615bde3 switch_mmu_context +EXPORT_SYMBOL vmlinux 0x86182550 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x8632216e km_policy_expired +EXPORT_SYMBOL vmlinux 0x86364bec unlink_framebuffer +EXPORT_SYMBOL vmlinux 0x86396674 uart_resume_port +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x865753b9 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x865b02bc bio_init +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86977d43 __breadahead +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86a4889a kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x86b0e456 of_get_ibm_chip_id +EXPORT_SYMBOL vmlinux 0x86baeace of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x86ff6153 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x872818c6 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x875923e9 mach_bsc9132_qds +EXPORT_SYMBOL vmlinux 0x8760f5e4 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x87723b3f generic_removexattr +EXPORT_SYMBOL vmlinux 0x877e87ab register_netdevice +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x87d08024 kill_bdev +EXPORT_SYMBOL vmlinux 0x87d70eeb skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x88034595 d_lookup +EXPORT_SYMBOL vmlinux 0x8813ae59 tc_classify +EXPORT_SYMBOL vmlinux 0x88150a5f dev_uc_flush +EXPORT_SYMBOL vmlinux 0x8819ab21 do_splice_from +EXPORT_SYMBOL vmlinux 0x881c96d0 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x88279f25 cpm_muram_alloc +EXPORT_SYMBOL vmlinux 0x883f3b32 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x88433304 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x8849f768 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x88609211 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x88703f3a simple_transaction_set +EXPORT_SYMBOL vmlinux 0x8899c8ea jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x889c181c pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x88a7b8e8 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x88c97cf2 skb_make_writable +EXPORT_SYMBOL vmlinux 0x88ccd5a9 scsi_register_interface +EXPORT_SYMBOL vmlinux 0x88d0def4 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x891fbb10 mempool_destroy +EXPORT_SYMBOL vmlinux 0x892ae7de sock_no_mmap +EXPORT_SYMBOL vmlinux 0x892b43e5 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x893b8ec9 neigh_for_each +EXPORT_SYMBOL vmlinux 0x89797060 _raw_read_lock +EXPORT_SYMBOL vmlinux 0x89944462 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x89a1124c giveup_fpu +EXPORT_SYMBOL vmlinux 0x89aac2d7 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x89ab0cd9 get_unmapped_area +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89dcd670 simple_write_begin +EXPORT_SYMBOL vmlinux 0x89ddd747 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x89f24a02 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x89f3f744 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x8a090888 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a20af73 is_bad_inode +EXPORT_SYMBOL vmlinux 0x8a2789b3 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x8a307845 f_setown +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a54572a try_to_release_page +EXPORT_SYMBOL vmlinux 0x8a58d22d dma_async_device_register +EXPORT_SYMBOL vmlinux 0x8a6d017e simple_lookup +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aa85854 dm_register_target +EXPORT_SYMBOL vmlinux 0x8aac11f1 kobject_add +EXPORT_SYMBOL vmlinux 0x8ab4079e atomic64_add +EXPORT_SYMBOL vmlinux 0x8acc915a phy_find_first +EXPORT_SYMBOL vmlinux 0x8adc5915 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x8adf7019 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x8b2925a9 scsi_print_command +EXPORT_SYMBOL vmlinux 0x8b2b7a85 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x8b3596d8 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b3b562f ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b5c6245 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b6e1bbc __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x8b7366b6 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x8b755e4b kill_block_super +EXPORT_SYMBOL vmlinux 0x8b7ad77e dquot_transfer +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b93b1e3 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x8ba9b274 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x8bae1e77 kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0x8bd5d003 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x8bf2ae1f fsl_lbc_addr +EXPORT_SYMBOL vmlinux 0x8bfd55ea blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c527947 mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c723410 blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0x8c76067d pci_bus_put +EXPORT_SYMBOL vmlinux 0x8c938133 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x8cc5d1fb get_gendisk +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cde5d27 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x8cf3626a mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x8cf8b1ab mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x8d015dd4 __bswapdi2 +EXPORT_SYMBOL vmlinux 0x8d2a137b pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x8d373523 ppp_channel_index +EXPORT_SYMBOL vmlinux 0x8d43f256 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x8d494f67 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x8d540c8a of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d5e478c param_set_charp +EXPORT_SYMBOL vmlinux 0x8d6b2ce1 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x8d72495b __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d748f57 elv_add_request +EXPORT_SYMBOL vmlinux 0x8d9c635f lock_sock_fast +EXPORT_SYMBOL vmlinux 0x8daa6374 dquot_enable +EXPORT_SYMBOL vmlinux 0x8dabc468 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x8dc05e67 scsi_host_get +EXPORT_SYMBOL vmlinux 0x8dc45a39 bh_submit_read +EXPORT_SYMBOL vmlinux 0x8de0b5ac mempool_create +EXPORT_SYMBOL vmlinux 0x8df8c20e scsi_block_requests +EXPORT_SYMBOL vmlinux 0x8dff727a pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x8e0f9e5d pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x8e43de58 inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0x8e465e2b xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x8e6b60c9 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e888ec3 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x8e8d58da diu_ops +EXPORT_SYMBOL vmlinux 0x8eaaf5e6 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x8ec04552 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x8ed7fdcb mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x8ef51bc6 blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0x8f606564 input_allocate_device +EXPORT_SYMBOL vmlinux 0x8f7380bd proc_set_size +EXPORT_SYMBOL vmlinux 0x8f85f835 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x8f97edac inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x8fa97bf2 blk_end_request +EXPORT_SYMBOL vmlinux 0x8fb42f6c netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x8fbf37e0 profile_pc +EXPORT_SYMBOL vmlinux 0x8fc15bf6 iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0x8fc6b932 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x8fc9c93f pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x8fd5768d netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 +EXPORT_SYMBOL vmlinux 0x9001293e abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0x901c9ba7 release_sock +EXPORT_SYMBOL vmlinux 0x902a408d sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x904ee8ce __register_binfmt +EXPORT_SYMBOL vmlinux 0x90534a40 block_truncate_page +EXPORT_SYMBOL vmlinux 0x9056f63f mmc_can_discard +EXPORT_SYMBOL vmlinux 0x90695906 vme_free_consistent +EXPORT_SYMBOL vmlinux 0x9074f862 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x90a11d11 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x90abbbba vme_irq_handler +EXPORT_SYMBOL vmlinux 0x90b31616 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x90b60092 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x90c8889b pci_enable_device +EXPORT_SYMBOL vmlinux 0x90cd434a validate_sp +EXPORT_SYMBOL vmlinux 0x90cffb3b dump_page +EXPORT_SYMBOL vmlinux 0x90e67228 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x90eeaada devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0x910377ba nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x910f813e skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x91185b27 force_sig +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x91566ee3 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x915e1208 tb_ticks_per_usec +EXPORT_SYMBOL vmlinux 0x9163bb66 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x91779129 send_sig +EXPORT_SYMBOL vmlinux 0x919d1163 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x91a5510d kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x91bc00b3 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x91e53d64 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x91e7824c __quota_error +EXPORT_SYMBOL vmlinux 0x91ec9620 pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x923e873c migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x924b89d6 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x92559fcb devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x92777bb9 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x9287e52a nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0x928b61b6 tty_register_driver +EXPORT_SYMBOL vmlinux 0x92a5b01d fsl_ifc_ctrl_dev +EXPORT_SYMBOL vmlinux 0x92a9a8b4 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm +EXPORT_SYMBOL vmlinux 0x92b9e545 nvm_unregister_target +EXPORT_SYMBOL vmlinux 0x92d55dcc ip_setsockopt +EXPORT_SYMBOL vmlinux 0x92e3ed4e ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x92f847cf fsnotify_put_group +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x92fd5a1a netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x9302c2cf put_cmsg +EXPORT_SYMBOL vmlinux 0x930582f6 of_get_min_tck +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x9305f942 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x930e75cf sock_from_file +EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x932d98c1 cpm_muram_dma +EXPORT_SYMBOL vmlinux 0x9344e8fb mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x9391e09b ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0x93afff8d cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93b83741 prepare_binprm +EXPORT_SYMBOL vmlinux 0x93c2000d tcp_proc_register +EXPORT_SYMBOL vmlinux 0x93cc7a31 led_set_brightness +EXPORT_SYMBOL vmlinux 0x93d50b65 bdev_read_only +EXPORT_SYMBOL vmlinux 0x93e05ff9 page_symlink +EXPORT_SYMBOL vmlinux 0x93ebc165 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x93f4a8b3 dev_get_flags +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x940ab0cf blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x940f9cf6 kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x94149cd0 passthru_features_check +EXPORT_SYMBOL vmlinux 0x9449662d inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x944c0f2a fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x94592424 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0x9461e81e user_path_at_empty +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94989bcd open_exec +EXPORT_SYMBOL vmlinux 0x94b541b5 cpu_active_mask +EXPORT_SYMBOL vmlinux 0x94c33a56 swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0x94d5b05a kernel_sendpage +EXPORT_SYMBOL vmlinux 0x94ee0bdb inet6_bind +EXPORT_SYMBOL vmlinux 0x94eea794 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x950d543f crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x9514151a _mcount +EXPORT_SYMBOL vmlinux 0x9524b0ae _outsb +EXPORT_SYMBOL vmlinux 0x953a06ac page_readlink +EXPORT_SYMBOL vmlinux 0x953f2feb pci_find_hose_for_OF_device +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x954ea8bc nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x9566acce skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x956fbec4 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x9578db54 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x95a5c0aa __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x95bb0841 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x95c878ae skb_split +EXPORT_SYMBOL vmlinux 0x95e54a77 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x95f58d7d mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0x95f5a196 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x9603b234 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x960dfaf5 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x96181266 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x961918c0 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x962e7355 fb_pan_display +EXPORT_SYMBOL vmlinux 0x96366f56 pci_assign_resource +EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x9661ecf6 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x966986b7 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x9670140c netdev_emerg +EXPORT_SYMBOL vmlinux 0x96871208 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x96945f20 user_revoke +EXPORT_SYMBOL vmlinux 0x96b2e4a2 of_get_next_child +EXPORT_SYMBOL vmlinux 0x96c46040 address_space_init_once +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x97013bef blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0x971b1631 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0x97213ed7 eth_header_cache +EXPORT_SYMBOL vmlinux 0x97255bdf strlen +EXPORT_SYMBOL vmlinux 0x97263e2e __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x972e16c6 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x9732ce59 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x9748927f _outsw_ns +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x975537ec __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97a0f68e d_obtain_alias +EXPORT_SYMBOL vmlinux 0x97a54863 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x97a99f25 module_refcount +EXPORT_SYMBOL vmlinux 0x97aa72be iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x97b069b8 blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0x97c8b9a7 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x97cc4d77 devm_memunmap +EXPORT_SYMBOL vmlinux 0x97cc50e2 skb_put +EXPORT_SYMBOL vmlinux 0x97e01887 napi_get_frags +EXPORT_SYMBOL vmlinux 0x97e434be blk_make_request +EXPORT_SYMBOL vmlinux 0x97f7c6f1 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x97fdbac3 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x9814c7a5 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x98193876 tcp_filter +EXPORT_SYMBOL vmlinux 0x982d42c8 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x983b03f7 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x98680804 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x986c5b3e nla_append +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x987c44e2 __frontswap_load +EXPORT_SYMBOL vmlinux 0x987fbd75 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x989abc55 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x98bc99a5 register_cdrom +EXPORT_SYMBOL vmlinux 0x98bde69c vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x98e68eca cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x98f16cf7 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x98fe7882 DMA_MODE_READ +EXPORT_SYMBOL vmlinux 0x98ffa9ba proto_register +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x995397c0 set_disk_ro +EXPORT_SYMBOL vmlinux 0x9955db9b skb_clone_sk +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x9982d7ff netlink_capable +EXPORT_SYMBOL vmlinux 0x998f75e0 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x999f4daf xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x99afe916 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x99bb8806 memmove +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x99d9ed32 set_cached_acl +EXPORT_SYMBOL vmlinux 0x99e864be dquot_resume +EXPORT_SYMBOL vmlinux 0x99fc7e1e input_inject_event +EXPORT_SYMBOL vmlinux 0x9a07f491 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x9a0ca221 pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0x9a139581 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x9a16b187 dev_change_flags +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a4447e8 msi_bitmap_alloc_hwirqs +EXPORT_SYMBOL vmlinux 0x9a65a617 blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x9a72ba43 inc_nlink +EXPORT_SYMBOL vmlinux 0x9a736160 __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0x9aa3f3b1 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x9aa57bd9 xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0x9ae569cd sg_miter_start +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9b005eae single_open +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b6a778f netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x9b6c0083 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x9b6ea9a3 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize +EXPORT_SYMBOL vmlinux 0x9b7540f4 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x9b7563cd inet_sendmsg +EXPORT_SYMBOL vmlinux 0x9b7ac99d tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9bad4e47 param_get_ushort +EXPORT_SYMBOL vmlinux 0x9bcba33f module_layout +EXPORT_SYMBOL vmlinux 0x9bd343d2 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x9bdc2c0a dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9bfa3a10 input_register_handle +EXPORT_SYMBOL vmlinux 0x9bff11a1 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x9c03d09c tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x9c2ab579 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x9c3bcf7a scm_fp_dup +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c84bd61 blk_init_tags +EXPORT_SYMBOL vmlinux 0x9c90711b mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x9ca62b1e dev_get_by_index +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cc34dce generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x9ccbf6a7 agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x9ce3f83f nvram_write_byte +EXPORT_SYMBOL vmlinux 0x9cf7a726 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x9cfca1af dquot_operations +EXPORT_SYMBOL vmlinux 0x9d065a65 d_find_alias +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d0dd1af sock_edemux +EXPORT_SYMBOL vmlinux 0x9d14983a ppc_enable_pmcs +EXPORT_SYMBOL vmlinux 0x9d224b1d give_up_console +EXPORT_SYMBOL vmlinux 0x9d2e3f1a vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d45766a skb_checksum_help +EXPORT_SYMBOL vmlinux 0x9d5c1e09 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x9d669763 memcpy +EXPORT_SYMBOL vmlinux 0x9d6a54c2 flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0x9d72229b fsl_ifc_find +EXPORT_SYMBOL vmlinux 0x9d7ce8dd _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x9d8135be max8925_reg_read +EXPORT_SYMBOL vmlinux 0x9d8de8d6 import_iovec +EXPORT_SYMBOL vmlinux 0x9d8f6b26 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x9d9244d0 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x9da5632d ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x9dc1e082 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x9dcf3e5e dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x9dd816e3 unload_nls +EXPORT_SYMBOL vmlinux 0x9dee9a84 cpm2_immr +EXPORT_SYMBOL vmlinux 0x9dfe7307 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9e04cde9 d_alloc_name +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e2f85c7 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x9e460905 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x9e4b4185 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e6209ac pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0x9e68ae6b register_qdisc +EXPORT_SYMBOL vmlinux 0x9e6a75c5 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e822d99 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x9e848f83 freeze_bdev +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource +EXPORT_SYMBOL vmlinux 0x9ebf32b9 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x9ec16ee2 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x9ec2beb5 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x9ecfa017 ip_options_compile +EXPORT_SYMBOL vmlinux 0x9edbd9b6 dev_mc_del +EXPORT_SYMBOL vmlinux 0x9edcdcb6 load_nls +EXPORT_SYMBOL vmlinux 0x9eee0fbb pipe_unlock +EXPORT_SYMBOL vmlinux 0x9ef14d25 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x9efbc5d2 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x9f028aeb set_create_files_as +EXPORT_SYMBOL vmlinux 0x9f0cdc17 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x9f3208cf eth_gro_complete +EXPORT_SYMBOL vmlinux 0x9f343957 mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x9f3ebbb3 up_read +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f46faaf param_ops_uint +EXPORT_SYMBOL vmlinux 0x9f5a7b1c rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x9f600181 blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0x9f8133c8 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x9f911629 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9f9f3a79 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x9fa097ec tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x9fad875a commit_creds +EXPORT_SYMBOL vmlinux 0x9fb98b3e dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x9fc69329 cap_mmap_file +EXPORT_SYMBOL vmlinux 0x9fc8792f neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x9fc983e0 __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fe6798a tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x9fe9f7ad __free_pages +EXPORT_SYMBOL vmlinux 0x9ff1085a blk_stop_queue +EXPORT_SYMBOL vmlinux 0x9ff53c0d scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0x9ffc259c cdev_init +EXPORT_SYMBOL vmlinux 0xa0059fb1 load_nls_default +EXPORT_SYMBOL vmlinux 0xa006ac8f tcp_ioctl +EXPORT_SYMBOL vmlinux 0xa01baad4 netif_napi_add +EXPORT_SYMBOL vmlinux 0xa0218c6d ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xa02bf6b4 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xa036e447 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0xa0756800 console_start +EXPORT_SYMBOL vmlinux 0xa07e5da2 pagevec_lookup +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa0992b5f pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xa09cae03 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0xa0a9533f account_page_redirty +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0ddd48b __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa120ce40 param_ops_charp +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa1691e31 sock_wake_async +EXPORT_SYMBOL vmlinux 0xa192ace0 skb_append +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1c99385 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1f8fe75 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xa1fe98a4 __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0xa201fe2e tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa22b815e simple_write_end +EXPORT_SYMBOL vmlinux 0xa264eaf8 param_set_short +EXPORT_SYMBOL vmlinux 0xa26e31c1 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa288061c netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0xa2b8b3d8 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xa2bbed37 crash_shutdown_register +EXPORT_SYMBOL vmlinux 0xa2c5d4aa netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xa2ce5a4e dquot_quota_on +EXPORT_SYMBOL vmlinux 0xa2da2680 d_obtain_root +EXPORT_SYMBOL vmlinux 0xa2fdbcbe fence_default_wait +EXPORT_SYMBOL vmlinux 0xa303d1ff dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0xa30b9ef4 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xa318c52f blk_get_request +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa3627c0e max8925_set_bits +EXPORT_SYMBOL vmlinux 0xa3661267 of_translate_address +EXPORT_SYMBOL vmlinux 0xa37bf2da skb_vlan_push +EXPORT_SYMBOL vmlinux 0xa3807b51 param_set_byte +EXPORT_SYMBOL vmlinux 0xa38126d5 iput +EXPORT_SYMBOL vmlinux 0xa381944f dql_reset +EXPORT_SYMBOL vmlinux 0xa38bcd2b param_get_charp +EXPORT_SYMBOL vmlinux 0xa38e691a ioremap_bot +EXPORT_SYMBOL vmlinux 0xa39afa06 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xa39b4cf2 udelay +EXPORT_SYMBOL vmlinux 0xa3abc422 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xa3b3dbfb pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xa3d801fc devm_gpiod_get +EXPORT_SYMBOL vmlinux 0xa3e545c9 vga_put +EXPORT_SYMBOL vmlinux 0xa3e6dd9e vfs_link +EXPORT_SYMBOL vmlinux 0xa3e75545 flush_tlb_kernel_range +EXPORT_SYMBOL vmlinux 0xa3ea3cd8 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0xa3ea5334 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xa41d1289 padata_alloc +EXPORT_SYMBOL vmlinux 0xa420d7d6 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf +EXPORT_SYMBOL vmlinux 0xa44146be netlink_ack +EXPORT_SYMBOL vmlinux 0xa448d2c0 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xa4649532 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa4707bdc nvm_end_io +EXPORT_SYMBOL vmlinux 0xa470eb8b pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xa49bc6d4 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xa4a94d26 find_next_bit_le +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4cdebc1 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xa4cea44f blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4f019ab mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xa50f4916 dev_get_iflink +EXPORT_SYMBOL vmlinux 0xa517e8cb lock_rename +EXPORT_SYMBOL vmlinux 0xa518350b nf_ct_attach +EXPORT_SYMBOL vmlinux 0xa5193069 simple_dname +EXPORT_SYMBOL vmlinux 0xa51b60b3 pipe_lock +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa5537f93 get_fs_type +EXPORT_SYMBOL vmlinux 0xa56b8ab2 flex_array_free +EXPORT_SYMBOL vmlinux 0xa56d42f1 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xa573436b blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xa578b91d scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0xa595143d mach_twr_p1025 +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa59bb005 sk_stream_write_space +EXPORT_SYMBOL vmlinux 0xa59ec99f __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xa5d3e841 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xa5ff0737 put_tty_driver +EXPORT_SYMBOL vmlinux 0xa64483b8 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0xa64d15eb phy_attach +EXPORT_SYMBOL vmlinux 0xa64eb090 genphy_suspend +EXPORT_SYMBOL vmlinux 0xa65972b8 _memcpy_toio +EXPORT_SYMBOL vmlinux 0xa65ae954 flush_old_exec +EXPORT_SYMBOL vmlinux 0xa67117f5 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xa67538ef ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa69390fa skb_copy +EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa6aa60dc devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0xa6f4da20 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa7030197 security_path_chmod +EXPORT_SYMBOL vmlinux 0xa70df3ee __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0xa7149ab3 icmp_send +EXPORT_SYMBOL vmlinux 0xa720678c lg_global_lock +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa7366115 mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0xa73c0de4 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0xa7402cb0 abort_creds +EXPORT_SYMBOL vmlinux 0xa74584e4 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xa74f4e9b ida_simple_get +EXPORT_SYMBOL vmlinux 0xa763f7e9 init_net +EXPORT_SYMBOL vmlinux 0xa76c9bc5 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0xa78402c8 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xa78b0149 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xa78d9eb7 slhc_uncompress +EXPORT_SYMBOL vmlinux 0xa7e94902 kmap_pte +EXPORT_SYMBOL vmlinux 0xa7ed897e genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xa809055c unlock_new_inode +EXPORT_SYMBOL vmlinux 0xa8147e4e blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0xa81e6509 generic_show_options +EXPORT_SYMBOL vmlinux 0xa840f126 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa87e6597 __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0xa89464b7 __ashldi3 +EXPORT_SYMBOL vmlinux 0xa898b485 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0xa8bccb57 unregister_key_type +EXPORT_SYMBOL vmlinux 0xa8c61d5f put_disk +EXPORT_SYMBOL vmlinux 0xa8d180d2 register_gifconf +EXPORT_SYMBOL vmlinux 0xa8f6f45c tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa9009f6c textsearch_unregister +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa916ded3 get_task_exe_file +EXPORT_SYMBOL vmlinux 0xa9273e1a epapr_hypercall_start +EXPORT_SYMBOL vmlinux 0xa9303393 submit_bio_wait +EXPORT_SYMBOL vmlinux 0xa9329c71 pci_find_capability +EXPORT_SYMBOL vmlinux 0xa9571d6d DMA_MODE_WRITE +EXPORT_SYMBOL vmlinux 0xa95df391 finish_open +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa9ae8963 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0xa9b1b54e swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0xa9c28ce1 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9d723d6 padata_remove_cpu +EXPORT_SYMBOL vmlinux 0xa9d950d4 serio_close +EXPORT_SYMBOL vmlinux 0xaa01d0d3 param_set_ushort +EXPORT_SYMBOL vmlinux 0xaa34864d fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0xaa46e87e lg_local_unlock +EXPORT_SYMBOL vmlinux 0xaa53d2f2 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xaa5f1c70 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r +EXPORT_SYMBOL vmlinux 0xaa6e4df5 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa79ccb1 file_path +EXPORT_SYMBOL vmlinux 0xaa7ceea6 neigh_destroy +EXPORT_SYMBOL vmlinux 0xaa8e1adc xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0xaaab8067 cpu_sibling_map +EXPORT_SYMBOL vmlinux 0xaab11ac3 dquot_disable +EXPORT_SYMBOL vmlinux 0xaabab153 inetdev_by_index +EXPORT_SYMBOL vmlinux 0xaac51670 sock_kfree_s +EXPORT_SYMBOL vmlinux 0xaacee902 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaadaa3c7 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab047ca1 nf_afinfo +EXPORT_SYMBOL vmlinux 0xab0488aa inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xab07827c i2c_add_adapter +EXPORT_SYMBOL vmlinux 0xab0e6384 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xab228e31 csum_tcpudp_magic +EXPORT_SYMBOL vmlinux 0xab25c779 serio_reconnect +EXPORT_SYMBOL vmlinux 0xab3af6ab key_alloc +EXPORT_SYMBOL vmlinux 0xab46a88f __destroy_inode +EXPORT_SYMBOL vmlinux 0xab694444 bsearch +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab8954ed skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0xab8b73f4 drop_nlink +EXPORT_SYMBOL vmlinux 0xaba3ad0c radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xabb67068 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabdaa8ce jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0xabdd6463 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xabe0be6a d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0xabe4ae4b end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xabf1d928 param_set_int +EXPORT_SYMBOL vmlinux 0xabfcb4c3 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xac08e94d seq_escape +EXPORT_SYMBOL vmlinux 0xac0ac1b5 dma_direct_ops +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac1cd1f7 __page_symlink +EXPORT_SYMBOL vmlinux 0xac246b02 tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0xac26b820 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xac40ab61 param_set_invbool +EXPORT_SYMBOL vmlinux 0xac4cc1bc lockref_mark_dead +EXPORT_SYMBOL vmlinux 0xac636977 nf_register_hook +EXPORT_SYMBOL vmlinux 0xac64eb55 phy_start +EXPORT_SYMBOL vmlinux 0xac733cce mfd_remove_devices +EXPORT_SYMBOL vmlinux 0xac80c15b pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb6b81f n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xacbfa3bc bitmap_endwrite +EXPORT_SYMBOL vmlinux 0xacc5b5d2 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacd0bdf7 kobject_get +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacd9bcd0 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xacdeec48 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf7031d udp_del_offload +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad09d646 free_page_put_link +EXPORT_SYMBOL vmlinux 0xad4ac674 pci_platform_rom +EXPORT_SYMBOL vmlinux 0xad547243 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xad667aea __block_write_begin +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad961743 __wait_on_bit +EXPORT_SYMBOL vmlinux 0xada141e2 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xadafd807 get_phy_device +EXPORT_SYMBOL vmlinux 0xadbf2f44 dquot_get_state +EXPORT_SYMBOL vmlinux 0xadc0524d of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xadc5f73a kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0xadd7f767 vme_master_request +EXPORT_SYMBOL vmlinux 0xaddd4770 __debugger_iabr_match +EXPORT_SYMBOL vmlinux 0xadf0811d get_baudrate +EXPORT_SYMBOL vmlinux 0xadf5ad12 bdput +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae03ef3c override_creds +EXPORT_SYMBOL vmlinux 0xae06021f padata_stop +EXPORT_SYMBOL vmlinux 0xae0e232d fd_install +EXPORT_SYMBOL vmlinux 0xae247f54 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0xae358236 fence_signal +EXPORT_SYMBOL vmlinux 0xae3aaa69 __napi_schedule +EXPORT_SYMBOL vmlinux 0xae545f06 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xae663f7c scmd_printk +EXPORT_SYMBOL vmlinux 0xae6c10f9 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xae701ec1 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xae77a595 radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0xae85a27e radix_tree_lookup +EXPORT_SYMBOL vmlinux 0xaec40edf xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0xaefd6bb8 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xaf063510 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xaf0b81c2 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0xaf154407 kernel_read +EXPORT_SYMBOL vmlinux 0xaf2a5f5b set_blocksize +EXPORT_SYMBOL vmlinux 0xaf2d872c prepare_to_wait +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf4be512 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xaf9340a7 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0xaf997106 local_flush_tlb_mm +EXPORT_SYMBOL vmlinux 0xaf9cee81 fsync_bdev +EXPORT_SYMBOL vmlinux 0xafaedbfb nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0xafb0fd09 gen_pool_create +EXPORT_SYMBOL vmlinux 0xafccc064 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0xafff3d1d mempool_alloc +EXPORT_SYMBOL vmlinux 0xb0057787 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xb007b783 blk_rq_init +EXPORT_SYMBOL vmlinux 0xb00f0c55 elevator_init +EXPORT_SYMBOL vmlinux 0xb04241b4 ida_simple_remove +EXPORT_SYMBOL vmlinux 0xb05fab54 dev_printk +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb0742ce4 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xb07d5135 sock_rfree +EXPORT_SYMBOL vmlinux 0xb081b9c3 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xb090f966 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0a321f7 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0b52dcd kmem_cache_free +EXPORT_SYMBOL vmlinux 0xb0bcbddc phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e2bc6a d_set_fallthru +EXPORT_SYMBOL vmlinux 0xb0e48f26 mmc_request_done +EXPORT_SYMBOL vmlinux 0xb0e5ac2b iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xb0f29264 clk_register_clkdevs +EXPORT_SYMBOL vmlinux 0xb107ea8b bitmap_unplug +EXPORT_SYMBOL vmlinux 0xb1256fbc pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb13d0f11 netdev_state_change +EXPORT_SYMBOL vmlinux 0xb15bd8fa tb_ticks_per_sec +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb1643044 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb16ff822 elevator_alloc +EXPORT_SYMBOL vmlinux 0xb1861e45 netlink_set_err +EXPORT_SYMBOL vmlinux 0xb18ec087 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xb1987d39 bio_chain +EXPORT_SYMBOL vmlinux 0xb1bc1920 param_set_long +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1c6e787 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xb1cfb5e2 fget +EXPORT_SYMBOL vmlinux 0xb1e35209 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0xb1ed24a7 sync_filesystem +EXPORT_SYMBOL vmlinux 0xb21390a7 inet_del_offload +EXPORT_SYMBOL vmlinux 0xb233762c atomic64_set +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb27050c6 dquot_quota_off +EXPORT_SYMBOL vmlinux 0xb2752d04 touch_buffer +EXPORT_SYMBOL vmlinux 0xb287166f insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0xb294b556 wireless_send_event +EXPORT_SYMBOL vmlinux 0xb2aa8d56 register_md_personality +EXPORT_SYMBOL vmlinux 0xb2bcdc5d con_is_bound +EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on +EXPORT_SYMBOL vmlinux 0xb2ead8ba tty_free_termios +EXPORT_SYMBOL vmlinux 0xb3020075 unregister_netdev +EXPORT_SYMBOL vmlinux 0xb3139b04 iterate_dir +EXPORT_SYMBOL vmlinux 0xb32d7b7e radix_tree_tagged +EXPORT_SYMBOL vmlinux 0xb32e35dd nonseekable_open +EXPORT_SYMBOL vmlinux 0xb3382494 fence_signal_locked +EXPORT_SYMBOL vmlinux 0xb34ab0e4 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0xb34e528d phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0xb363b1ef blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0xb36ea6c0 pci_iounmap +EXPORT_SYMBOL vmlinux 0xb38ef875 page_put_link +EXPORT_SYMBOL vmlinux 0xb392fe83 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xb39365d6 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0xb3b1cf97 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3d9581b alloc_fddidev +EXPORT_SYMBOL vmlinux 0xb3d97f72 audit_log +EXPORT_SYMBOL vmlinux 0xb3e2de4e dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb4016a43 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xb402ccfe neigh_seq_next +EXPORT_SYMBOL vmlinux 0xb4174298 generic_file_open +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb44cec6e soft_cursor +EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem +EXPORT_SYMBOL vmlinux 0xb469ede0 nf_setsockopt +EXPORT_SYMBOL vmlinux 0xb46b8e10 lock_sock_nested +EXPORT_SYMBOL vmlinux 0xb46cf188 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb484253b sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0xb487def1 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0xb49433d7 param_set_copystring +EXPORT_SYMBOL vmlinux 0xb4d78452 vme_register_driver +EXPORT_SYMBOL vmlinux 0xb4dea80b phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0xb4ef02a1 sock_wfree +EXPORT_SYMBOL vmlinux 0xb4f99514 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xb512a796 do_splice_to +EXPORT_SYMBOL vmlinux 0xb528c49d sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xb52949c1 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb59e06d8 flush_tlb_mm +EXPORT_SYMBOL vmlinux 0xb5a44c0b unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5ad540e blk_init_queue +EXPORT_SYMBOL vmlinux 0xb5b27c92 sock_no_bind +EXPORT_SYMBOL vmlinux 0xb5b55c7d bio_copy_kern +EXPORT_SYMBOL vmlinux 0xb5b79df6 param_get_ulong +EXPORT_SYMBOL vmlinux 0xb5be7d1a blk_get_queue +EXPORT_SYMBOL vmlinux 0xb5c1f82f tcp_parse_options +EXPORT_SYMBOL vmlinux 0xb5c60128 dev_disable_lro +EXPORT_SYMBOL vmlinux 0xb5d66f75 ilookup5 +EXPORT_SYMBOL vmlinux 0xb5d72381 kthread_stop +EXPORT_SYMBOL vmlinux 0xb5d890da start_tty +EXPORT_SYMBOL vmlinux 0xb5d9454c printk_emit +EXPORT_SYMBOL vmlinux 0xb5f97751 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0xb5f9eadb skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0xb61af002 from_kgid +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb630fb53 agp_backend_acquire +EXPORT_SYMBOL vmlinux 0xb6321112 param_ops_long +EXPORT_SYMBOL vmlinux 0xb6491d9f mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0xb662cef7 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xb67807f9 netdev_crit +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif +EXPORT_SYMBOL vmlinux 0xb68ec311 sock_no_connect +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6ac8fc9 lro_receive_skb +EXPORT_SYMBOL vmlinux 0xb6b2d015 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0xb6b4527f bio_put +EXPORT_SYMBOL vmlinux 0xb6d19960 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0xb6db1daf of_get_cpu_node +EXPORT_SYMBOL vmlinux 0xb7058545 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xb70d2437 bdi_register_dev +EXPORT_SYMBOL vmlinux 0xb70ece96 __d_drop +EXPORT_SYMBOL vmlinux 0xb730e7c9 dev_load +EXPORT_SYMBOL vmlinux 0xb73271d7 cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0xb7440845 of_node_get +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb752fe94 kernel_getsockname +EXPORT_SYMBOL vmlinux 0xb753bcc8 __ashrdi3 +EXPORT_SYMBOL vmlinux 0xb75fc760 invalidate_partition +EXPORT_SYMBOL vmlinux 0xb7655d02 __sb_end_write +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb7738d54 brioctl_set +EXPORT_SYMBOL vmlinux 0xb77c1a15 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0xb7846939 init_special_inode +EXPORT_SYMBOL vmlinux 0xb79a4e1a store_fp_state +EXPORT_SYMBOL vmlinux 0xb79ec15d mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0xb7a1a160 dump_truncate +EXPORT_SYMBOL vmlinux 0xb7a99781 __irq_regs +EXPORT_SYMBOL vmlinux 0xb7bb933e netdev_master_upper_dev_link_private +EXPORT_SYMBOL vmlinux 0xb7bd6cf4 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7c7fcd5 dev_notice +EXPORT_SYMBOL vmlinux 0xb7e015c1 dev_change_carrier +EXPORT_SYMBOL vmlinux 0xb7f887fc simple_getattr +EXPORT_SYMBOL vmlinux 0xb8111206 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xb81960ca snprintf +EXPORT_SYMBOL vmlinux 0xb8269c8e gen_pool_destroy +EXPORT_SYMBOL vmlinux 0xb8370414 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xb8487e31 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xb85979b2 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb878c5c6 dcache_dir_open +EXPORT_SYMBOL vmlinux 0xb8854ac8 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xb88e3393 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0xb891c9ad softnet_data +EXPORT_SYMBOL vmlinux 0xb8982a37 blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0xb8ba4a4d gen_new_estimator +EXPORT_SYMBOL vmlinux 0xb8bc7c79 iget5_locked +EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xb906f3ec ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xb91f94ba pci_device_from_OF_node +EXPORT_SYMBOL vmlinux 0xb93c388a msi_bitmap_free_hwirqs +EXPORT_SYMBOL vmlinux 0xb9484b80 dev_mc_add +EXPORT_SYMBOL vmlinux 0xb94dca31 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0xb9600cfc generic_read_dir +EXPORT_SYMBOL vmlinux 0xb995ccba tty_unlock +EXPORT_SYMBOL vmlinux 0xb9b04498 input_open_device +EXPORT_SYMBOL vmlinux 0xb9bb1f6d param_set_ulong +EXPORT_SYMBOL vmlinux 0xb9e726fb read_code +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xba0a4b69 inode_dio_wait +EXPORT_SYMBOL vmlinux 0xba155f07 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0xba1b1d7c dentry_path_raw +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba54ec89 account_page_dirtied +EXPORT_SYMBOL vmlinux 0xba5ca2d8 of_device_alloc +EXPORT_SYMBOL vmlinux 0xba6ad7f0 ps2_init +EXPORT_SYMBOL vmlinux 0xbab6420d rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xbabe1b49 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xbac3cbf2 ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0xbaf70511 i2c_transfer +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb0bd939 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb43768d generic_make_request +EXPORT_SYMBOL vmlinux 0xbb52b4e0 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb7cca91 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0xbb832dc8 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0xbb880bef nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xbb8b8a88 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xbb956bc3 poll_freewait +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbbf79835 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0xbbf94808 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0xbc0515ff tcf_exts_change +EXPORT_SYMBOL vmlinux 0xbc111693 pci_bus_type +EXPORT_SYMBOL vmlinux 0xbc2d6c98 tty_port_put +EXPORT_SYMBOL vmlinux 0xbc316de4 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0xbc4aea7a devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xbc528c9e devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xbc6c753e napi_disable +EXPORT_SYMBOL vmlinux 0xbc86ec38 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xbc98c3fb simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xbc9e88bf filemap_map_pages +EXPORT_SYMBOL vmlinux 0xbcb17391 simple_transaction_read +EXPORT_SYMBOL vmlinux 0xbcbb8701 bdi_register_owner +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcc5ea90 bitmap_startwrite +EXPORT_SYMBOL vmlinux 0xbccd9a9b inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xbccfaad7 nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0xbd0939d8 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0xbd0b1443 datagram_poll +EXPORT_SYMBOL vmlinux 0xbd1b0ced tcp_disconnect +EXPORT_SYMBOL vmlinux 0xbd329787 netdev_info +EXPORT_SYMBOL vmlinux 0xbd803510 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xbd87a3a1 uart_suspend_port +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbd9e5d49 __lshrdi3 +EXPORT_SYMBOL vmlinux 0xbdc196af mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp +EXPORT_SYMBOL vmlinux 0xbe12bd97 elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe20f12c inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0xbe541e85 __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0xbe54fab1 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xbe55321f md_integrity_register +EXPORT_SYMBOL vmlinux 0xbe6edf09 submit_bh +EXPORT_SYMBOL vmlinux 0xbe8d51df follow_down +EXPORT_SYMBOL vmlinux 0xbead162e devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xbebd767e security_inode_readlink +EXPORT_SYMBOL vmlinux 0xbec2058d netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xbeec8a0a mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbef50d7e netdev_change_features +EXPORT_SYMBOL vmlinux 0xbf03d50f pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xbf146162 vm_event_states +EXPORT_SYMBOL vmlinux 0xbf1751b7 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xbf486982 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xbf77df13 of_device_get_match_data +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf8f606f kthread_bind +EXPORT_SYMBOL vmlinux 0xbf925c42 idr_init +EXPORT_SYMBOL vmlinux 0xbf9a6998 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfb8b0b7 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xc007ecb6 sock_wmalloc +EXPORT_SYMBOL vmlinux 0xc00a5cde rfkill_alloc +EXPORT_SYMBOL vmlinux 0xc0130a65 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xc016642b __ps2_command +EXPORT_SYMBOL vmlinux 0xc017d705 sync_inode +EXPORT_SYMBOL vmlinux 0xc03d8f60 dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0xc057597f simple_transaction_release +EXPORT_SYMBOL vmlinux 0xc068440e __kfifo_alloc +EXPORT_SYMBOL vmlinux 0xc0716749 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0b9a023 iget_failed +EXPORT_SYMBOL vmlinux 0xc0ba163d bdget +EXPORT_SYMBOL vmlinux 0xc0c51669 param_ops_invbool +EXPORT_SYMBOL vmlinux 0xc0c9c356 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0xc0e61f0a clkdev_alloc +EXPORT_SYMBOL vmlinux 0xc10fa5c0 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten +EXPORT_SYMBOL vmlinux 0xc122077b pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0xc12ed24c scsi_unregister +EXPORT_SYMBOL vmlinux 0xc13a10dc flex_array_alloc +EXPORT_SYMBOL vmlinux 0xc13dcde4 blk_finish_request +EXPORT_SYMBOL vmlinux 0xc147d948 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xc15c7f0c xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xc1648bfb of_gpio_simple_xlate +EXPORT_SYMBOL vmlinux 0xc1850fb3 sock_recvmsg +EXPORT_SYMBOL vmlinux 0xc19e83fc sk_wait_data +EXPORT_SYMBOL vmlinux 0xc19f2df9 genphy_config_init +EXPORT_SYMBOL vmlinux 0xc1a40f75 xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0xc1cab965 param_set_uint +EXPORT_SYMBOL vmlinux 0xc1cfc602 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e1375a mmc_of_parse +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc20ca3ea get_mm_exe_file +EXPORT_SYMBOL vmlinux 0xc2123633 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0xc23855a6 bdgrab +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc262270c bdevname +EXPORT_SYMBOL vmlinux 0xc275c861 napi_complete_done +EXPORT_SYMBOL vmlinux 0xc28316de sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xc28d1164 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0xc291d8ab nd_integrity_init +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2a75119 vme_bus_num +EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xc2c0b7c8 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0xc2cb5593 put_io_context +EXPORT_SYMBOL vmlinux 0xc2d711e1 krealloc +EXPORT_SYMBOL vmlinux 0xc2dd37d4 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xc2e3541a agp_copy_info +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2e744ce xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xc30f45b1 mb_cache_shrink +EXPORT_SYMBOL vmlinux 0xc331a64e qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xc336c6ff devm_gpio_request +EXPORT_SYMBOL vmlinux 0xc34e2cd2 locks_init_lock +EXPORT_SYMBOL vmlinux 0xc3504200 pci_restore_state +EXPORT_SYMBOL vmlinux 0xc368849f nvram_sync +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3c44a60 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0xc3ef8892 arp_send +EXPORT_SYMBOL vmlinux 0xc402b28b scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xc41451f9 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xc41bdf04 tcp_init_cgroup +EXPORT_SYMBOL vmlinux 0xc41f0516 node_states +EXPORT_SYMBOL vmlinux 0xc42e11bb param_set_bool +EXPORT_SYMBOL vmlinux 0xc42e6d3e dma_find_channel +EXPORT_SYMBOL vmlinux 0xc43eb4e9 scsi_remove_host +EXPORT_SYMBOL vmlinux 0xc44188b3 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xc44201e0 update_devfreq +EXPORT_SYMBOL vmlinux 0xc4474dc1 filp_open +EXPORT_SYMBOL vmlinux 0xc44f30c9 set_groups +EXPORT_SYMBOL vmlinux 0xc45755de find_next_zero_bit_le +EXPORT_SYMBOL vmlinux 0xc4575854 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xc45d845d pci_read_vpd +EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr +EXPORT_SYMBOL vmlinux 0xc47cdf9c _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4cf9211 i2c_release_client +EXPORT_SYMBOL vmlinux 0xc4f141b6 iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0xc4feea81 swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0xc4ffbb4f udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0xc501744d ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0xc505d8b7 agp_enable +EXPORT_SYMBOL vmlinux 0xc509bc1a bdi_register +EXPORT_SYMBOL vmlinux 0xc54371fa padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc557d904 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0xc55de23c percpu_counter_set +EXPORT_SYMBOL vmlinux 0xc55f3992 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0xc569046b of_phy_attach +EXPORT_SYMBOL vmlinux 0xc5883044 blk_start_queue +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5a799f9 skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xc5b983f8 security_path_truncate +EXPORT_SYMBOL vmlinux 0xc5cae75e netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xc5cbe4af sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0xc5d6b430 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5e464e2 freezing_slow_path +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc60bb6e6 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0xc61cc21f devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0xc61e9769 kobject_put +EXPORT_SYMBOL vmlinux 0xc62ed114 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc647c7fe of_n_addr_cells +EXPORT_SYMBOL vmlinux 0xc64a26d9 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0xc65b4ebb locks_remove_posix +EXPORT_SYMBOL vmlinux 0xc663b075 __ioremap +EXPORT_SYMBOL vmlinux 0xc66fd026 pci_get_device +EXPORT_SYMBOL vmlinux 0xc672f6b8 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xc6751972 try_module_get +EXPORT_SYMBOL vmlinux 0xc6b22c71 __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xc6bb3c5f led_blink_set_oneshot +EXPORT_SYMBOL vmlinux 0xc6bbb30b nobh_writepage +EXPORT_SYMBOL vmlinux 0xc6cb6a3c netdev_alert +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6cc7ec7 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xc6d9615f mmc_detect_change +EXPORT_SYMBOL vmlinux 0xc70fad41 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0xc713a61f file_ns_capable +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc72d3f82 neigh_direct_output +EXPORT_SYMBOL vmlinux 0xc72edcb9 blk_execute_rq +EXPORT_SYMBOL vmlinux 0xc753343c dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc762d1d3 kill_pid +EXPORT_SYMBOL vmlinux 0xc768de19 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xc76c21ac elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xc7706665 remove_proc_entry +EXPORT_SYMBOL vmlinux 0xc77cc1db bmap +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc7898275 flex_array_shrink +EXPORT_SYMBOL vmlinux 0xc78e949b bio_split +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc79cd752 sock_create +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7ae201e xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0xc7bd58f2 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xc7c85ec4 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn +EXPORT_SYMBOL vmlinux 0xc7f8bdaf inet_put_port +EXPORT_SYMBOL vmlinux 0xc810b53f generic_ro_fops +EXPORT_SYMBOL vmlinux 0xc8144e9c vfs_setpos +EXPORT_SYMBOL vmlinux 0xc81a1303 mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0xc8276a79 nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape +EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc84a7447 clear_nlink +EXPORT_SYMBOL vmlinux 0xc8571bcb idr_for_each +EXPORT_SYMBOL vmlinux 0xc859d542 fsnotify_get_group +EXPORT_SYMBOL vmlinux 0xc8617f7d agp_unbind_memory +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc87c2be1 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc8982dfc ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b2a548 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8ba3c6a blk_requeue_request +EXPORT_SYMBOL vmlinux 0xc8e554aa udp_sendmsg +EXPORT_SYMBOL vmlinux 0xc8f7a40e tty_port_close +EXPORT_SYMBOL vmlinux 0xc8fced75 __register_chrdev +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc92b38be may_umount +EXPORT_SYMBOL vmlinux 0xc93fbc54 wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xc942770a jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xc94bfb89 ip_check_defrag +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc999f805 flush_tlb_page +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9bbbc1a thermal_cdev_update +EXPORT_SYMBOL vmlinux 0xc9c1fb35 phy_device_remove +EXPORT_SYMBOL vmlinux 0xc9d9edfd fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0xc9f09b6e udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0xc9f3c3d8 security_path_link +EXPORT_SYMBOL vmlinux 0xc9f69fcf follow_down_one +EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy +EXPORT_SYMBOL vmlinux 0xca2699eb mem_map +EXPORT_SYMBOL vmlinux 0xca2b1cd6 ida_pre_get +EXPORT_SYMBOL vmlinux 0xca2c035f pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0xca41eaa3 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0xca4da981 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0xca6498ee from_kuid +EXPORT_SYMBOL vmlinux 0xca6dbd47 bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0xca7cdec5 genphy_resume +EXPORT_SYMBOL vmlinux 0xca8c2e2b kfree_put_link +EXPORT_SYMBOL vmlinux 0xca8e3959 kmap_to_page +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xcaac159a pci_request_region +EXPORT_SYMBOL vmlinux 0xcab32b23 kernel_connect +EXPORT_SYMBOL vmlinux 0xcac17222 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xcacd272d atomic64_sub_return +EXPORT_SYMBOL vmlinux 0xcace6297 idr_is_empty +EXPORT_SYMBOL vmlinux 0xcad43e6f inet_getname +EXPORT_SYMBOL vmlinux 0xcaee2312 param_get_string +EXPORT_SYMBOL vmlinux 0xcaf21a26 inet6_release +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb1a4e00 param_get_ullong +EXPORT_SYMBOL vmlinux 0xcb87ad6e neigh_seq_stop +EXPORT_SYMBOL vmlinux 0xcb884a2a __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xcb907095 md_flush_request +EXPORT_SYMBOL vmlinux 0xcb9f2501 powerpc_debugfs_root +EXPORT_SYMBOL vmlinux 0xcba940bf make_kuid +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbd9c598 __i2c_transfer +EXPORT_SYMBOL vmlinux 0xcbeac4be hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcc17504d _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccc2c938 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0xccd5fa34 __f_setown +EXPORT_SYMBOL vmlinux 0xcce036e8 swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0xccfef64f skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xccffb448 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0xcd0529c7 _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xcd0a0f1f generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xcd13dc7c ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd381e87 dev_remove_offload +EXPORT_SYMBOL vmlinux 0xcd61e17e dst_alloc +EXPORT_SYMBOL vmlinux 0xcd7c1a85 i2c_del_driver +EXPORT_SYMBOL vmlinux 0xcd7ede2a seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xcd86c87f __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xcd9c8bc3 udp_prot +EXPORT_SYMBOL vmlinux 0xcdac446b blk_register_region +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcde083cc nf_log_set +EXPORT_SYMBOL vmlinux 0xcdf03f58 xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce571744 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xcea68b81 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceab17b6 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xceb6a6cf xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0xcec1fc0a bio_endio +EXPORT_SYMBOL vmlinux 0xcec722c0 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0xcecb40e8 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf116b20 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0xcf13db67 tcf_hash_check +EXPORT_SYMBOL vmlinux 0xcf166a26 get_disk +EXPORT_SYMBOL vmlinux 0xcf1d7646 isa_mem_base +EXPORT_SYMBOL vmlinux 0xcf45b8de ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xcf75dfb1 tcp_proto_cgroup +EXPORT_SYMBOL vmlinux 0xd0102555 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0xd01bed83 proc_mkdir +EXPORT_SYMBOL vmlinux 0xd047be28 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0xd06e1c12 ppp_input +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd085492c request_firmware_nowait +EXPORT_SYMBOL vmlinux 0xd0951504 tty_write_room +EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0ac7473 blk_queue_bounce +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd102d845 of_mm_gpiochip_add +EXPORT_SYMBOL vmlinux 0xd1299b03 lwtunnel_output +EXPORT_SYMBOL vmlinux 0xd14ebfac ppp_dev_name +EXPORT_SYMBOL vmlinux 0xd1645f0c install_exec_creds +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd196c9be kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xd1a35359 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xd1aa0065 of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0xd1ba65f5 vc_resize +EXPORT_SYMBOL vmlinux 0xd1bde299 simple_unlink +EXPORT_SYMBOL vmlinux 0xd1c84dfb hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1d97a25 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xd1e3f3c4 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xd1e45ee9 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0xd1f121c5 inet_register_protosw +EXPORT_SYMBOL vmlinux 0xd1f19023 bio_alloc_pages +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd2588a35 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd280dc70 of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0xd28418a1 of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0xd284b7e5 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xd2902f64 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0xd2a1755f blk_fetch_request +EXPORT_SYMBOL vmlinux 0xd2a639f6 pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0xd2ac8375 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xd2af138b reservation_ww_class +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2f69e85 fs_bio_set +EXPORT_SYMBOL vmlinux 0xd2fc19bd proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0xd3119b11 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd31e769e cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xd3228181 make_kprojid +EXPORT_SYMBOL vmlinux 0xd33bf502 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0xd33e8349 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xd349fcfc sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xd359b47b devm_free_irq +EXPORT_SYMBOL vmlinux 0xd3879b04 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xd388fb32 bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3e9f952 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0xd44b7e21 to_tm +EXPORT_SYMBOL vmlinux 0xd475b56e rtnl_create_link +EXPORT_SYMBOL vmlinux 0xd47d3cc6 find_inode_nowait +EXPORT_SYMBOL vmlinux 0xd48dafe0 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0xd48e6ecc unregister_binfmt +EXPORT_SYMBOL vmlinux 0xd4a603ae __scm_destroy +EXPORT_SYMBOL vmlinux 0xd4ae8772 dst_destroy +EXPORT_SYMBOL vmlinux 0xd4af2506 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xd4b363be skb_seq_read +EXPORT_SYMBOL vmlinux 0xd4b680b8 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0xd4be6895 vc_cons +EXPORT_SYMBOL vmlinux 0xd4d5aa8c clk_get +EXPORT_SYMBOL vmlinux 0xd4f2f9bd vfs_whiteout +EXPORT_SYMBOL vmlinux 0xd4f826e6 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xd50e0f91 cad_pid +EXPORT_SYMBOL vmlinux 0xd52f9e0b vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0xd53aed80 vfs_writev +EXPORT_SYMBOL vmlinux 0xd53c4297 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0xd581e13d posix_test_lock +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd5cab662 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xd5ddee16 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xd5e8444a __div64_32 +EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0xd60282ad filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0xd606503d register_sysctl +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd627480b strncat +EXPORT_SYMBOL vmlinux 0xd62a63c2 d_drop +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd6350e97 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd65499fd of_root +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd69065de simple_dir_operations +EXPORT_SYMBOL vmlinux 0xd690ea55 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xd6924335 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xd69b30e0 atomic64_add_unless +EXPORT_SYMBOL vmlinux 0xd69c6cdd skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xd6aaa006 inet_del_protocol +EXPORT_SYMBOL vmlinux 0xd6b8d94f reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0xd6d63e9d lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0xd6e9b395 nvm_register_mgr +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6fdc719 dev_close +EXPORT_SYMBOL vmlinux 0xd716e529 da903x_query_status +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd761a383 ioremap_prot +EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write +EXPORT_SYMBOL vmlinux 0xd7a0c3b5 generic_setxattr +EXPORT_SYMBOL vmlinux 0xd7b308f9 vme_irq_free +EXPORT_SYMBOL vmlinux 0xd7b5737d blk_mq_all_tag_busy_iter +EXPORT_SYMBOL vmlinux 0xd7b6b5a2 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xd7ba7409 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xd7e15a5e dst_release +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd806002b pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xd808d8f5 tcp_close +EXPORT_SYMBOL vmlinux 0xd8401b97 dm_kobject_release +EXPORT_SYMBOL vmlinux 0xd84c43a6 lockref_put_return +EXPORT_SYMBOL vmlinux 0xd84c51a6 down_read +EXPORT_SYMBOL vmlinux 0xd84db9cc vme_irq_generate +EXPORT_SYMBOL vmlinux 0xd85833cb __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0xd85e5862 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0xd86e45e2 dev_driver_string +EXPORT_SYMBOL vmlinux 0xd873905f generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0xd87b3433 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0xd886cc4a ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xd887d8de seq_lseek +EXPORT_SYMBOL vmlinux 0xd89574d3 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0xd899bf56 __serio_register_driver +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a1a400 lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd9301f1d dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xd940857d kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0xd9498b22 proc_dointvec +EXPORT_SYMBOL vmlinux 0xd966ddc2 __do_once_done +EXPORT_SYMBOL vmlinux 0xd96d14f5 dev_mc_init +EXPORT_SYMBOL vmlinux 0xd97a2952 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0xd97f7f73 bio_integrity_advance +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd9bac924 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9ddf3ff blkdev_fsync +EXPORT_SYMBOL vmlinux 0xd9e8cf5d nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0xda09be72 md_unregister_thread +EXPORT_SYMBOL vmlinux 0xda18a86f kobject_del +EXPORT_SYMBOL vmlinux 0xda1a45cb inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0xda1e171f simple_statfs +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda458a06 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xda519436 vme_bus_type +EXPORT_SYMBOL vmlinux 0xda68dfe7 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xda6d58df xfrm_init_replay +EXPORT_SYMBOL vmlinux 0xda70fe27 pci_bus_get +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda7e2140 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda8fa356 alloc_file +EXPORT_SYMBOL vmlinux 0xdaa57ec3 totalhigh_pages +EXPORT_SYMBOL vmlinux 0xdabc1ea8 fsl_lbc_find +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdad1ddef ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xdad232db blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xdb01198e fsl_upm_find +EXPORT_SYMBOL vmlinux 0xdb0c3d20 iov_iter_init +EXPORT_SYMBOL vmlinux 0xdb200ed9 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xdb2d9e32 bdi_destroy +EXPORT_SYMBOL vmlinux 0xdb2e883b vfs_write +EXPORT_SYMBOL vmlinux 0xdb3a283b have_submounts +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb6db3c5 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xdb6fa5a8 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdba38075 d_add_ci +EXPORT_SYMBOL vmlinux 0xdba98d16 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xdbf9865d fb_find_mode +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc14622e nd_btt_probe +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc214961 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc408fb8 tty_check_change +EXPORT_SYMBOL vmlinux 0xdc4ac418 generic_delete_inode +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc6d91a7 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0xdc7b5d4a jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xdc9498dd down +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcc9004e register_filesystem +EXPORT_SYMBOL vmlinux 0xdcd3bd11 param_array_ops +EXPORT_SYMBOL vmlinux 0xdcd55d7b pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0xdcd75a28 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xdcd88a67 __frontswap_store +EXPORT_SYMBOL vmlinux 0xdcd9cfe7 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat +EXPORT_SYMBOL vmlinux 0xdd13fd06 bitmap_end_sync +EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr +EXPORT_SYMBOL vmlinux 0xdd402f7a dev_activate +EXPORT_SYMBOL vmlinux 0xdd43e3c4 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0xdd4447af skb_queue_tail +EXPORT_SYMBOL vmlinux 0xdd523f92 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0xdd60d616 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0xdd867907 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0xdd9030af current_stack_pointer +EXPORT_SYMBOL vmlinux 0xdde1fcd8 save_mount_options +EXPORT_SYMBOL vmlinux 0xddfbf649 arp_tbl +EXPORT_SYMBOL vmlinux 0xde0e78d9 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xde10a68a do_splice_direct +EXPORT_SYMBOL vmlinux 0xde140d5b register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xde308b59 sock_create_lite +EXPORT_SYMBOL vmlinux 0xde30d134 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0xde387d04 agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0xde3927cc phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0xde41138e gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xde48e9ca _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xde636f59 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0xde78b5d4 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde952d9a xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdec3784c seq_putc +EXPORT_SYMBOL vmlinux 0xded931f3 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0xdef85c56 eth_change_mtu +EXPORT_SYMBOL vmlinux 0xdefc9afd twl6040_reg_read +EXPORT_SYMBOL vmlinux 0xdf14a9b3 security_path_unlink +EXPORT_SYMBOL vmlinux 0xdf151647 simple_release_fs +EXPORT_SYMBOL vmlinux 0xdf19e0e6 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0xdf1f0b65 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf3171aa nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xdf3402a2 simple_link +EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update +EXPORT_SYMBOL vmlinux 0xdf4e1979 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf6851a4 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0xdf74078c blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0xdf904b6d ping_prot +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf9d1389 seq_path +EXPORT_SYMBOL vmlinux 0xdfa84391 register_netdev +EXPORT_SYMBOL vmlinux 0xdfbd22a5 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xdfd2b824 sock_no_listen +EXPORT_SYMBOL vmlinux 0xdfd3e14c pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xdfe210e7 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0xdff43ed4 __debugger +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xe0074026 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xe0197066 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0xe01a258f __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xe01a27f3 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0xe01e8c8f input_register_handler +EXPORT_SYMBOL vmlinux 0xe0241605 generic_getxattr +EXPORT_SYMBOL vmlinux 0xe03a52b4 devfreq_interval_update +EXPORT_SYMBOL vmlinux 0xe043fffc mmc_fixup_device +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe0778286 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe09c8dfa nf_ip_checksum +EXPORT_SYMBOL vmlinux 0xe0aaeeee blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0c0540a nvm_register_target +EXPORT_SYMBOL vmlinux 0xe0cfe10b input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0xe0d4701b seq_open +EXPORT_SYMBOL vmlinux 0xe0db26a9 ps2_begin_command +EXPORT_SYMBOL vmlinux 0xe0e4deef neigh_event_ns +EXPORT_SYMBOL vmlinux 0xe0f25de2 textsearch_prepare +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe12709d1 d_walk +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe14ce388 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0xe14fc1b0 md_write_end +EXPORT_SYMBOL vmlinux 0xe1548af5 mark_page_accessed +EXPORT_SYMBOL vmlinux 0xe1561f12 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe1ae5b0b iov_iter_npages +EXPORT_SYMBOL vmlinux 0xe1c256aa mdiobus_unregister +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe2093784 put_page +EXPORT_SYMBOL vmlinux 0xe20dd142 devm_release_resource +EXPORT_SYMBOL vmlinux 0xe210e772 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL vmlinux 0xe239f114 netif_receive_skb +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe2845cdf proc_douintvec +EXPORT_SYMBOL vmlinux 0xe294b7fb input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2b6d7d9 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xe2be5498 lg_global_unlock +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2d9fdae mach_corenet_generic +EXPORT_SYMBOL vmlinux 0xe2dd7c29 audit_log_start +EXPORT_SYMBOL vmlinux 0xe2e293ef dmam_pool_create +EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup +EXPORT_SYMBOL vmlinux 0xe3035cd5 registered_fb +EXPORT_SYMBOL vmlinux 0xe32fa4b4 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xe3313b7f bioset_integrity_free +EXPORT_SYMBOL vmlinux 0xe34c5595 kset_unregister +EXPORT_SYMBOL vmlinux 0xe353050d scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xe37896aa dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0xe37aa91d keyring_search +EXPORT_SYMBOL vmlinux 0xe37fd24b peernet2id_alloc +EXPORT_SYMBOL vmlinux 0xe382a4a9 skb_checksum +EXPORT_SYMBOL vmlinux 0xe391c21d empty_aops +EXPORT_SYMBOL vmlinux 0xe3a872dd __lock_page +EXPORT_SYMBOL vmlinux 0xe3bacc58 mpage_readpage +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3bc9e47 get_pci_dma_ops +EXPORT_SYMBOL vmlinux 0xe3bd2b00 nf_log_unregister +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe413e6a1 single_open_size +EXPORT_SYMBOL vmlinux 0xe42475e8 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0xe43e05f1 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xe475c591 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe484f0f2 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0xe4c17741 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xe4c54ce7 fb_set_cmap +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4e81bf8 get_empty_filp +EXPORT_SYMBOL vmlinux 0xe4ea882e generic_permission +EXPORT_SYMBOL vmlinux 0xe4f5f3df phy_resume +EXPORT_SYMBOL vmlinux 0xe4fe8ca1 _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xe5021f9b tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xe51533c7 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xe51a58a8 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0xe51f40b5 udp6_set_csum +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe5379c88 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xe53df6b7 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xe55b3264 bdget_disk +EXPORT_SYMBOL vmlinux 0xe563e281 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0xe5691941 blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0xe575db88 qdisc_destroy +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe57ee079 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe587c75a mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0xe5c08479 nf_hook_slow +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5d2970d poll_initwait +EXPORT_SYMBOL vmlinux 0xe5dd8aa2 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe61097dd thaw_bdev +EXPORT_SYMBOL vmlinux 0xe61a7242 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0xe66452ab dql_init +EXPORT_SYMBOL vmlinux 0xe666233e inet_csk_accept +EXPORT_SYMBOL vmlinux 0xe6915b76 rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0xe692db7f shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe6a46280 irq_set_chip +EXPORT_SYMBOL vmlinux 0xe6ae8a7e dquot_file_open +EXPORT_SYMBOL vmlinux 0xe6cc6f7f blk_queue_split +EXPORT_SYMBOL vmlinux 0xe6da295e phy_device_free +EXPORT_SYMBOL vmlinux 0xe6dd236d clear_pages +EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe719ed6b xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xe72f585e down_read_trylock +EXPORT_SYMBOL vmlinux 0xe766fbc9 devm_gpiod_put +EXPORT_SYMBOL vmlinux 0xe76ff6bb of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xe772f7bd mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0xe775877c md_error +EXPORT_SYMBOL vmlinux 0xe775a0ad pcie_port_service_register +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7b4c23a get_thermal_instance +EXPORT_SYMBOL vmlinux 0xe7b6315e kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0xe7ce7439 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7f9fd96 netif_carrier_off +EXPORT_SYMBOL vmlinux 0xe800c83c nvm_submit_io +EXPORT_SYMBOL vmlinux 0xe80911d4 __devm_request_region +EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe82cc752 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xe861fc07 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xe86bb3f9 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xe87b2edd sg_copy_buffer +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8b32d65 inet_sendpage +EXPORT_SYMBOL vmlinux 0xe8be997e phy_driver_register +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8f9e0b0 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe9378d58 idr_get_next +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe9634dec netdev_features_change +EXPORT_SYMBOL vmlinux 0xe9c0471d tcp_poll +EXPORT_SYMBOL vmlinux 0xe9c45a37 eth_validate_addr +EXPORT_SYMBOL vmlinux 0xe9c7c599 swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xe9cd4ff7 iterate_mounts +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xea01aa8c alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea06b7d1 posix_unblock_lock +EXPORT_SYMBOL vmlinux 0xea0d36df agp_find_bridge +EXPORT_SYMBOL vmlinux 0xea34a70c dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xea34a8c0 devm_clk_get +EXPORT_SYMBOL vmlinux 0xea3e190c phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0xea3ffe84 blk_start_request +EXPORT_SYMBOL vmlinux 0xea649a2f __vfs_read +EXPORT_SYMBOL vmlinux 0xea737abb d_make_root +EXPORT_SYMBOL vmlinux 0xea7987f1 key_update +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xea968c96 ___ratelimit +EXPORT_SYMBOL vmlinux 0xeab23810 tcp_prequeue +EXPORT_SYMBOL vmlinux 0xeb33338d noop_fsync +EXPORT_SYMBOL vmlinux 0xeb341c8f param_ops_bool +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xeb582da8 posix_lock_file +EXPORT_SYMBOL vmlinux 0xeb6ea927 mark_info_dirty +EXPORT_SYMBOL vmlinux 0xeb893b94 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xeb8d93b5 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xebcf59ee del_gendisk +EXPORT_SYMBOL vmlinux 0xebe2e033 md_check_recovery +EXPORT_SYMBOL vmlinux 0xebf995bc mpage_readpages +EXPORT_SYMBOL vmlinux 0xebfd8e96 tty_unregister_device +EXPORT_SYMBOL vmlinux 0xec041c51 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0xec11938a __neigh_event_send +EXPORT_SYMBOL vmlinux 0xec126e0d mdio_bus_type +EXPORT_SYMBOL vmlinux 0xec12c436 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xec1aa6ef memzero_explicit +EXPORT_SYMBOL vmlinux 0xec25e12c sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xec34fc53 i2c_register_driver +EXPORT_SYMBOL vmlinux 0xec359ea3 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0xec4a5113 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0xec4b50f6 abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec4e761a max8998_write_reg +EXPORT_SYMBOL vmlinux 0xec6c6c8b uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xec78fcf1 bio_integrity_endio +EXPORT_SYMBOL vmlinux 0xec7c44f6 tty_throttle +EXPORT_SYMBOL vmlinux 0xec82905a tcf_em_register +EXPORT_SYMBOL vmlinux 0xec83b850 flow_cache_lookup +EXPORT_SYMBOL vmlinux 0xec9f231c phy_start_interrupts +EXPORT_SYMBOL vmlinux 0xeca72398 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0xecb8fbdd sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xecbcb8bb radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0xecc34c91 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0xecd982a2 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed5b9c23 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xed6a3d5c proc_symlink +EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xeda2263f of_get_address +EXPORT_SYMBOL vmlinux 0xeda55216 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xeda90fa0 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xedb0e53d __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xedbaa5a4 netdev_warn +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc410d0 udplite_table +EXPORT_SYMBOL vmlinux 0xede1cb53 dev_alert +EXPORT_SYMBOL vmlinux 0xede89d94 pskb_expand_head +EXPORT_SYMBOL vmlinux 0xedeffff2 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xedfeb675 nd_device_register +EXPORT_SYMBOL vmlinux 0xee13cab1 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xee248201 mmc_flush_cache +EXPORT_SYMBOL vmlinux 0xee25374d cdrom_open +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee2da831 twl6040_power +EXPORT_SYMBOL vmlinux 0xee376d87 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xee3a4605 blk_integrity_register +EXPORT_SYMBOL vmlinux 0xee3fc33f __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xee492453 sys_imageblit +EXPORT_SYMBOL vmlinux 0xee5924c3 phy_connect_direct +EXPORT_SYMBOL vmlinux 0xee7169c7 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xee7799d7 __seq_open_private +EXPORT_SYMBOL vmlinux 0xee7b0453 inet6_add_offload +EXPORT_SYMBOL vmlinux 0xee7bca37 md_cluster_mod +EXPORT_SYMBOL vmlinux 0xee8d4986 free_user_ns +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeed3d7e0 ilookup +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xef1b9343 dev_trans_start +EXPORT_SYMBOL vmlinux 0xef1c7e3c dev_open +EXPORT_SYMBOL vmlinux 0xef2523c1 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xef44bf3e pci_request_regions +EXPORT_SYMBOL vmlinux 0xef591342 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xef62ccbc iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0xef6bac20 kern_unmount +EXPORT_SYMBOL vmlinux 0xef6e2693 agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0xef7b323a of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0xef94b11b input_set_capability +EXPORT_SYMBOL vmlinux 0xefd11c22 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefde1bbe flush_dcache_range +EXPORT_SYMBOL vmlinux 0xefeee872 inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0151bb4 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf01b6b40 rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0xf02cfa29 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xf0489f3d mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xf058ca1b generic_start_io_acct +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be +EXPORT_SYMBOL vmlinux 0xf0696d6e scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf0bd0383 blk_run_queue_async +EXPORT_SYMBOL vmlinux 0xf0dbf8e9 jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0xf0dc280b pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf0f200e5 sget +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf10dd746 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 +EXPORT_SYMBOL vmlinux 0xf10df11c devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0xf11cd6ce down_interruptible +EXPORT_SYMBOL vmlinux 0xf144baf7 pci_scan_slot +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf158c9ac mount_pseudo +EXPORT_SYMBOL vmlinux 0xf15af465 dcb_setapp +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1a61c02 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1deabf2 div64_u64 +EXPORT_SYMBOL vmlinux 0xf1e54737 nlmsg_notify +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf2041c0d pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf2131955 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xf22881e8 lg_local_lock +EXPORT_SYMBOL vmlinux 0xf228f1e5 kern_path_create +EXPORT_SYMBOL vmlinux 0xf22d9962 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf2554ef3 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xf27d3312 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0xf281f682 ppc_md +EXPORT_SYMBOL vmlinux 0xf285f14f pcim_enable_device +EXPORT_SYMBOL vmlinux 0xf28b6a47 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0xf2936109 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0xf297edf8 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered +EXPORT_SYMBOL vmlinux 0xf2b08475 set_page_dirty +EXPORT_SYMBOL vmlinux 0xf2c22f63 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2d417c3 netpoll_setup +EXPORT_SYMBOL vmlinux 0xf304e55f mmc_power_save_host +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf31ffeba page_address +EXPORT_SYMBOL vmlinux 0xf322a206 bit_waitqueue +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf33cc2db kernel_bind +EXPORT_SYMBOL vmlinux 0xf33d103f __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xf3428223 __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf34ee636 tty_port_hangup +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf3585c7d phy_disconnect +EXPORT_SYMBOL vmlinux 0xf3617081 vga_tryget +EXPORT_SYMBOL vmlinux 0xf361c934 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf3987c98 revalidate_disk +EXPORT_SYMBOL vmlinux 0xf3a296a9 inode_add_bytes +EXPORT_SYMBOL vmlinux 0xf3bc0621 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0xf3be29f8 to_nd_btt +EXPORT_SYMBOL vmlinux 0xf3ca8f9b neigh_xmit +EXPORT_SYMBOL vmlinux 0xf3d8f608 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3eac478 sock_alloc_file +EXPORT_SYMBOL vmlinux 0xf3eccc58 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xf3ed59b2 param_ops_ullong +EXPORT_SYMBOL vmlinux 0xf40b2297 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xf410778e inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf4423a3b nobh_write_end +EXPORT_SYMBOL vmlinux 0xf4449388 timer_interrupt +EXPORT_SYMBOL vmlinux 0xf44bc29a blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0xf468fc8e of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xf472db33 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf479e3e2 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xf47fac1a dev_remove_pack +EXPORT_SYMBOL vmlinux 0xf48e785c bdi_init +EXPORT_SYMBOL vmlinux 0xf48eab7e posix_acl_valid +EXPORT_SYMBOL vmlinux 0xf4917aa6 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xf495b474 proto_unregister +EXPORT_SYMBOL vmlinux 0xf4b40694 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4c0c580 inode_init_always +EXPORT_SYMBOL vmlinux 0xf4d1d128 __getblk_slow +EXPORT_SYMBOL vmlinux 0xf4eef396 gen_pool_free +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf5222143 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0xf52321e0 atomic64_sub +EXPORT_SYMBOL vmlinux 0xf533bc6d tty_port_close_end +EXPORT_SYMBOL vmlinux 0xf53c32cd get_super_thawed +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf55313a0 gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0xf56165dc param_get_uint +EXPORT_SYMBOL vmlinux 0xf58f7caf dev_deactivate +EXPORT_SYMBOL vmlinux 0xf595017d sock_i_ino +EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set +EXPORT_SYMBOL vmlinux 0xf5a53dcb blk_delay_queue +EXPORT_SYMBOL vmlinux 0xf5a5ac1e ether_setup +EXPORT_SYMBOL vmlinux 0xf5a62ecc _memset_io +EXPORT_SYMBOL vmlinux 0xf5ad8dce write_cache_pages +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5d8611d ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xf5e1558d crash_shutdown_unregister +EXPORT_SYMBOL vmlinux 0xf5e6188c blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf5ed53d2 mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0xf5f50497 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0xf5f9bd9f flush_icache_user_range +EXPORT_SYMBOL vmlinux 0xf5fc383a rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0xf632365c d_set_d_op +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf63ceedc inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xf63f7e41 agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0xf66a86d5 tcp_child_process +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf6789a40 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xf67e9ae4 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0xf67f9bad netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xf68246c4 mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xf6ad7292 prepare_creds +EXPORT_SYMBOL vmlinux 0xf6b79a15 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6d7daa9 of_mm_gpiochip_remove +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6eeffb0 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0xf6f27342 current_fs_time +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf70384d7 __debugger_sstep +EXPORT_SYMBOL vmlinux 0xf71521ba atomic64_add_return +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf760ec31 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xf78257b7 inet_listen +EXPORT_SYMBOL vmlinux 0xf78aaccc inet6_del_protocol +EXPORT_SYMBOL vmlinux 0xf7a12d87 tcp_sendpage +EXPORT_SYMBOL vmlinux 0xf7a3309b tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xf7a9ca70 mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0xf7cdc736 clkdev_add +EXPORT_SYMBOL vmlinux 0xf7d0d2b4 tcp_req_err +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area +EXPORT_SYMBOL vmlinux 0xf82a7ad5 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf84c3d48 xfrm_input +EXPORT_SYMBOL vmlinux 0xf8625d80 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0xf86b8fa2 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xf87655f4 blk_put_queue +EXPORT_SYMBOL vmlinux 0xf87be57d pci_reenable_device +EXPORT_SYMBOL vmlinux 0xf89f09e1 cdev_alloc +EXPORT_SYMBOL vmlinux 0xf8a2c3b4 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xf8abb993 dev_uc_init +EXPORT_SYMBOL vmlinux 0xf8e398fc memstart_addr +EXPORT_SYMBOL vmlinux 0xf8e3e795 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xf8ea04f7 of_create_pci_dev +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf8f4d46e mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xf8f86f85 agp_put_bridge +EXPORT_SYMBOL vmlinux 0xf911f3e0 do_truncate +EXPORT_SYMBOL vmlinux 0xf9228003 get_immrbase +EXPORT_SYMBOL vmlinux 0xf928de80 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run +EXPORT_SYMBOL vmlinux 0xf93601b1 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xf93604a3 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xf9402b68 abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xf964beae xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xf9705f47 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0xf9771214 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xf99df678 simple_transaction_get +EXPORT_SYMBOL vmlinux 0xf9a4525c find_lock_entry +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9bce358 request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0xf9dc5f47 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf +EXPORT_SYMBOL vmlinux 0xf9ed821f debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xf9f9f729 iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0xfa4259e0 inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0xfa4816b1 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa5683cd blk_recount_segments +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa9e2728 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0xfaa66858 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0xfaaf9c9f kobject_init +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfad6f9b6 udp_ioctl +EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL vmlinux 0xfaee8ddc fb_set_var +EXPORT_SYMBOL vmlinux 0xfb1066cf xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xfb688af7 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbc27d59 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbc768fc blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0xfbd08f5d would_dump +EXPORT_SYMBOL vmlinux 0xfbdf9a40 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xfbeb2557 ps2_end_command +EXPORT_SYMBOL vmlinux 0xfc004200 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc060136 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0xfc1cdc01 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0xfc2c02fa alloc_disk +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3b160f mempool_create_node +EXPORT_SYMBOL vmlinux 0xfc3c79d0 flow_cache_init +EXPORT_SYMBOL vmlinux 0xfc590846 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0xfc5dbe5e of_device_register +EXPORT_SYMBOL vmlinux 0xfc603fd0 tcf_register_action +EXPORT_SYMBOL vmlinux 0xfc651f30 inet_offloads +EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0xfc92b737 dev_addr_flush +EXPORT_SYMBOL vmlinux 0xfca4bb1b seq_vprintf +EXPORT_SYMBOL vmlinux 0xfcb6225b netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcc44952 copy_from_iter +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf84a93 atomic64_xor +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfcfdd2c7 fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0xfd1ddab2 i2c_verify_client +EXPORT_SYMBOL vmlinux 0xfd1e458e km_state_notify +EXPORT_SYMBOL vmlinux 0xfd33b5fa cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xfd40c30f mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0xfd44b09e __elv_add_request +EXPORT_SYMBOL vmlinux 0xfd49d065 vfs_rename +EXPORT_SYMBOL vmlinux 0xfd518b8e generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfda2d602 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0xfdb6cedc _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfdb9c219 register_quota_format +EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0xfdce176d elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0xfded48ed enable_kernel_fp +EXPORT_SYMBOL vmlinux 0xfdee3313 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe2c2b5f km_query +EXPORT_SYMBOL vmlinux 0xfe366cec scsi_execute +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe5f8736 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe822d55 get_brgfreq +EXPORT_SYMBOL vmlinux 0xfe9ca2f8 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0xfea22e83 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xfeba6496 of_get_mac_address +EXPORT_SYMBOL vmlinux 0xfec40801 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xfec744cc free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xfeca7590 radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0xfed3698b i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xff0c6788 inet_recvmsg +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff2167ae mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0xff21c322 blk_complete_request +EXPORT_SYMBOL vmlinux 0xff22e426 xfrm_state_add +EXPORT_SYMBOL vmlinux 0xff2365c8 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xff4bd2e1 pci_claim_resource +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff6dea25 smp_hw_index +EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff95eeaa mmc_register_driver +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xffc60224 md_write_start +EXPORT_SYMBOL vmlinux 0xffc846c6 blk_run_queue +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xfff5804c sock_i_uid +EXPORT_SYMBOL_GPL crypto/af_alg 0x0be2e676 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x4173710b af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0x5741c3be af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x58716898 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0x6ca6db6e af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x82483953 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x92f6e5d8 af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0xa583d6a2 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xcd5a05b8 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xe8bcf20a af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xf1548a50 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x98963912 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x485847e9 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x76bfb2eb async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x9e8516e0 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xb2a3611b async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x1b5ee19e async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb5f645eb __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xe8c256f0 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xf4c29d81 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x2a693db8 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x7b05b1ce async_xor +EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x77bad084 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x3e38c0b6 cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x36a90184 cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 +EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 +EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 +EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x9f0d8dd4 crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0xddccc6de crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/cryptd 0x0b7a546d cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x1c990c44 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x1d32704c cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x5e537522 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x7538d757 cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x9ae45017 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xa1b8c464 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xc81c9844 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xd84cad3c cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xe4ddfc79 cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey +EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey +EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table +EXPORT_SYMBOL_GPL crypto/lrw 0x8cd5136f lrw_crypt +EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table +EXPORT_SYMBOL_GPL crypto/mcryptd 0x14bdd4d3 mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0x1ab5ab69 shash_ahash_mcryptd_update +EXPORT_SYMBOL_GPL crypto/mcryptd 0x1ae2786e mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x425101ae shash_ahash_mcryptd_finup +EXPORT_SYMBOL_GPL crypto/mcryptd 0x528cd876 shash_ahash_mcryptd_final +EXPORT_SYMBOL_GPL crypto/mcryptd 0x69908edf shash_ahash_mcryptd_digest +EXPORT_SYMBOL_GPL crypto/mcryptd 0x7cc8418f mcryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/mcryptd 0x89fa2145 mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/mcryptd 0xf8a0cae9 mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x4f69f661 crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x6e08042f crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x9c510c4d crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xab565ec5 crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xa068d1eb serpent_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x8b7849bc twofish_setkey +EXPORT_SYMBOL_GPL crypto/xts 0xd92f3340 xts_crypt +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x153f6c9b ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x15bc856c ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x28034b66 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2fc8f070 ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x304c8f62 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3094aaed ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4267e004 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x470cc4e0 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6f553a63 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x79cbdbc0 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x89012a49 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x90c36dcc ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9337e81f ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9c1fb306 ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa516d271 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa9678b31 ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc284627b ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd121b20e ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdc4bf7d3 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe5545c48 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xec612ad4 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xee16d645 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf9264bef ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x02e30ade ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x18aa7bbe ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x256ab755 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2d3e2253 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x32c0f14b ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x48dfec3a ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x69243eee ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6f1ba951 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa86711c4 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb391f7bc ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb703737b ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc0ae417c ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xee6d0468 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xe093c1c5 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x059e128f sis_info133_for_sata +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x0e8a11f3 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x394eef8d __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x5b495df6 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xc93fbef5 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x01ed959f bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1050b58a bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x11087d0c bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1fcdfcb1 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2dd76df0 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x34d28f12 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3699a58f bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x498985c1 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x53f0e634 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6367b25e bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x651d2568 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x82d2e43a bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x834c6628 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x96495203 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9a37d187 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb05b1472 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb3981547 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xba08efb8 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc6489d88 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd10d29f0 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd2b63be4 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xde311fa8 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe4c27725 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfb026c58 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x0bf2223c btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x278081a7 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x294ecfb4 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3ed22256 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd5f9f9b7 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xec9d38ac btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x025c1413 btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1805c6f6 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1c6a21f8 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x26b6964a btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4f6f000a btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x632da96a btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7ffa7493 btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb5030705 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xdb09e518 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe4f7e34c btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf6403ae5 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfdfc87da btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x06174f74 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1c6de27e btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x24ff1331 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3189308a btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x41799ee3 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x51e7053f btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6a6898bf btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6cc71a95 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7d441601 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9c31874d btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe94fa286 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x2b68ebff qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x8e1c489f qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xcd40b805 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x02747c7f h4_recv_buf +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x02db292e dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x37a38291 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x771c101e dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xb4cb2a93 dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xe0deac92 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/fsldma 0xcc692f34 fsl_dma_external_start +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x3b0cbd95 hsu_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xafbf0853 hsu_dma_irq +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xf5194932 hsu_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x8a839cd5 vchan_init +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x8b98800a vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x97753e4b vchan_find_desc +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xcd8c329d vchan_tx_submit +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x00997a68 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0492fde7 edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x14560c54 find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1c1e0606 edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1c7c4309 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x26334351 edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x282cc5c2 edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x37b7d195 edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x50a7edf6 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7153b27a edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x72d2808e edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x801c8576 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8821c263 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8f82ce0b edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa1bed69d edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa3a0555d edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb1abbbdf edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb6ed390b edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc07df43e edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd06f3321 edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd88ff29e edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf0b83cf3 edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf3b27f35 edac_device_del_device +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x159fe6d6 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2642b5ec fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2e18fbe2 fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4d4ca637 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8e12b2dd fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe2b540fa fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x11a239c8 bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xddb6ada3 bgpio_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x7d537722 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xb6bed1ed __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x22a56677 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x46d84c71 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4847576f drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa622ebae of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd166fc42 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xea8d30c3 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x0b9151d3 ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x564fe0fa ttm_dma_page_alloc_debugfs +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xd42906a9 ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x06455f82 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0abf521c hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x17b070d9 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2024bd59 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x299b9b42 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x345f691a hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x42e1c51d hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x43cd95d8 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x445195ad hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x493ccd80 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4caa75f4 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x55c59246 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6610a7fe hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6e66a225 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x870126b7 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x88406916 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x97c5a080 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9dc0a0a6 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa0937832 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa09feefc hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa2217256 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa88bb121 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa9beb317 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xac1b68de hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbf57aead hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd1572986 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd264de94 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd26a3a42 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd50b8528 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdd4a2c08 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe4126e7c hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe67ff05d hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf0786d68 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf07bb92b hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf1c5daea hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfe51cd07 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x6224880a roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x0271b27a roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x18e22595 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x1f071f73 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x37af1d51 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x5a9d72f2 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xcdeda378 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0b75fa38 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1ddcb6a9 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x25104224 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2945ab30 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x6a1287fb sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9d78c81c sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa3b91c97 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf0a02605 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf68171a6 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xa8232f1c hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1759478f hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x21287d4e hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4deae21b hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5698f769 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x599809fb hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5ae69051 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6368a862 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6634a2ee hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x694618c0 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa589361f hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbdaa608a hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbdc77343 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc6f8c842 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc8fab948 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc9b52377 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe2d02ec1 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf410c32e hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf4a4441d hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x045cc5e9 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x29262500 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x80d988e2 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x16c9554a pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x1955a379 pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x338d6d52 pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x43b9c5bb pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4a7b3c5a pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4bc494b9 pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x516eea65 pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x53f82724 pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x59924d37 pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x6c46122d pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x7c579fd9 pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8ce271fc pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x97ce3ffd pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb6a92c95 pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf632c0ef pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2c04b918 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2d51e37f intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x589ae44f intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6492a417 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x677e57e6 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7ddc35d6 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb06e2779 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x031c619b stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x0ede74db stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x8c4aa669 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa7a47b57 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb29cfafa stm_unregister_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x6e4a7705 i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x7d456d75 i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xc8ae0624 i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xeef5b616 i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xf751a95e i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x4dba5275 i2c_add_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xe4f1457e i2c_del_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x122850a2 i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x71b89199 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x12d8728d bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x829accd7 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x8b329884 bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x44afcbad ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x4b6a57ee ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x5b6b71f0 ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x60e9f974 ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x89a82ff2 ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x92da9d3c ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xb9e4cb03 ad_sd_reset +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd18587b6 ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe6ccea82 ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xf96aae26 ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xec6a626b iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xf8565ce0 iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xbfea9ad8 ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xf0e20569 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x37a5206b bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xbbb704ea bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xe122752f bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x24062768 adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x2f1c29f7 adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x31855361 adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x442c5750 adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x48b53344 adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x66d2ccd4 adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x83e855f8 adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x94ec6b95 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xa2c3f058 adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc6d7db7b adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc9c8cec7 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf5ae1f3a adis_reset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x07d3a54e iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x10c704b2 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x10daae95 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x20c0652c iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x28f2fbde iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x31948040 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x356e0677 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x488ad148 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4a44e5e5 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x594efa1a devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6468fb38 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x66d66a0b iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6bafceb8 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6f4ddc15 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7ae78b50 devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8087ead7 iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x89eb4fd7 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x902b1834 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9c245c5e devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb14c6066 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb309d8cb iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb476bc53 iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbeba73e3 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc0602ce7 devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc65523ed iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc66df099 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xccaf5e52 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdf808eb8 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe9fd4e31 devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf986be37 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfca16bc3 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xeb019716 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x1131f8de matrix_keypad_parse_of_params +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x8089e8c8 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x19aa4407 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x811bc851 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x8bab7ac6 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x27db46ca cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x56f34e86 cyttsp_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x88c18135 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xab226ffc cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xb00079a8 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x8c19d3df tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xb1cc99ef tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xe302a677 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xeb623406 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1b229af5 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4a3c6c9d wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5323f71f wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6457ec9e wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x669476fc wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x670e60d4 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x72d3cc42 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x73cd1441 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa3c7d186 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xac1b93d9 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbe79ccdc wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdf6f1e5f wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x405e4c08 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6587839f ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x76987395 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7aff9733 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb8f1b68a ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xd947f8fe ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xdae28df6 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xdd2e04ab ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xdd79beed ipack_driver_register +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x1eba2674 gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3d1e88b6 gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4901a0fc gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x599e864e gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x5c363175 gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x5f95bacc gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x6a814b03 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x75713548 gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7891920f gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7f7b0911 gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x903c5413 gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xaa697db7 gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xca1fc929 gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xdb9b4e69 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xdd4fe8f1 gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe8ee4cde gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf7c30910 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x44973931 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x890c531b led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x89ea926b led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa1988d66 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb413df96 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xd230e1b6 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x18344118 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2f0bec11 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x922d2cca lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9310df75 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xcebd3df6 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd106fe39 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd26b2c7f lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd3258f4f lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd4f910b9 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xdfb485ee lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xebd9b8cd lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x0a0527be wf_register_client +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x1ae14082 wf_register_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x2fe4d182 wf_unregister_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x62648173 wf_unregister_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x75147afa wf_set_overtemp +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x9ef3cf2b wf_register_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xac9a0061 wf_get_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xb07002f8 wf_get_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xbcace2a5 wf_unregister_client +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xc15e9b55 wf_put_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xe05b96ca wf_put_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xed82a14f wf_clear_overtemp +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x0d576184 mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x2f5f1a4b chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x327e5efe mcb_bus_get +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x5607f670 mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x5a3134ca mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x5d170d11 mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x654bb79a mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bde951f mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8f9e7476 mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x98a363f3 mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc454384b __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xda846bb0 mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf7f7439b mcb_get_irq +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x00b74659 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2a1a7a99 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x374f45ea __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3a4dfef7 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x48991e9c __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4f124797 __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x614e860f __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x647af374 __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6724de29 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6726a0c1 __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x68f1ea6d __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7114cfcc __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x78c57fa5 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7cb4bd6f __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x816ebfe0 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x833b99dd __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8afe3e2b __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x912566ef __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x92c55e92 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9c59320b __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa7004101 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaf2376ac __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb3942afe __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb4cffcbb __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb9c28744 __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc0bd3171 __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc773563c __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd81ad8c9 __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe30b6b2a __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6169c53 __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfcb52b5f __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x142c42df dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x145fe456 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5afcdef2 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5e78c960 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xaf25b5fa dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xba928dfe dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xcca22941 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe0bd6323 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf18f0a96 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x22163b69 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x3909d3a8 dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x594952bd dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x62a23587 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9b2b253a dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xba38d2b8 dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xdc69e37a dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe004ee92 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x1e5dd7ef dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x2bcf4c3b dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x588ed5a7 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7b81343d dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87ce0a6e dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa0f0e0d7 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xfc4d4576 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xe2d27ac4 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xfb143e02 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x09472122 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x483d8a23 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x8f9f1064 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa8813ad6 dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc66ce277 dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcab63c3d dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd0d56c48 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xe181bbf0 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xee13d997 dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf37a3cfe dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf9297f24 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11eab9fe dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x150c85ce dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2e730a21 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x33c03da6 dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x619701dc dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x64cf3915 dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9b4b5b29 dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2507774 dm_tm_shadow_block +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbcfdc290 dm_tm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbe0497aa dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xead1e727 dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x1d84d5e9 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x222f2980 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4034fcb7 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x60256533 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7cacc716 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x99260d98 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa8a493fb saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb45cffb4 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc5373306 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xebb1172f saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x1128f613 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x474d0355 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x9f3d8f64 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xd0b243e6 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xdf5599cc saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xfbb9dc84 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xfc032bdb saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0caab5b2 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x115bdfe3 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1a2b55ec smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x296a82bf smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4da62b3c smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x55bf7ee1 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x70bee719 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8fe6db54 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x92877bf6 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9cc714fe smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9f8f1f84 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa99de691 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb1300ee7 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb4c01c8b smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc7c0862b sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc96b021b smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcd12875f smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xabbe9b9a as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x28e1691f cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x875560cb tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x2b3d92fd __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x2f602dc9 media_entity_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0x387affe4 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0x3c5505dd media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x40bf1ac8 media_entity_create_link +EXPORT_SYMBOL_GPL drivers/media/media 0x57670bca __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0x595f9a92 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0x5a003332 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0x5f5adbb9 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0x6a3abeed media_entity_init +EXPORT_SYMBOL_GPL drivers/media/media 0x90aa4aec media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0x9f6c39b5 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0xbd00c624 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0xd6300b53 media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0xdd892de6 media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0xe9e6832f media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0xeba05ae5 media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0xfdd557fc media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x72086858 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x04563e90 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1582740d mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1639b7e0 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x26a8f61a mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3d4b2f1e mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4566123f mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7231b6c7 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7540423e mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x833e5cbd mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x84a7553d mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x86cf86dd mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x913bf4fd mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa53d183d mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xababe7a6 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb0758ea3 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb156a548 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xdfe479b6 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe48d9e77 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf6883637 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x04e818a3 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0f1d312b saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0f557565 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x13a26138 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x13f5032f saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4d5e78c3 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x55d48a1d saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5d79691a saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5e99ae5c saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5ecde4b5 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x98e486d8 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9e09fc6c saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb00bba63 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbfe2d6e8 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc3882deb saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdc46916d saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe4f57586 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf702135c saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfd3c0b15 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x16a468ab ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x3ce9546b ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x4b409e98 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x65afb518 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x9395d2c8 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x9a065a73 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb47341e6 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x077f2690 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0b2585ce xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x2f2a9d1e xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x490bd11c xvip_get_format_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x66614503 xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x7ecd5e27 xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xc04e800e xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xc54d06e3 xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe5ea36d5 xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x9ed14ef3 xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xc4b8d346 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xf6aa5f87 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x03dc6149 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1b3fb198 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x21c404a7 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x24d724cb rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x31566014 rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x656ec094 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x66f76949 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x73f46178 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x808b60d7 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9aaf9bf0 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa7d41b04 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa8c3d59a rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb075791d rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb08f60ff ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc60e2e9e rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xeea7649f rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf4a84a33 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf6ecd870 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf8cebbd4 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x536633b0 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x231f14bc microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x3f52f876 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x94a836b3 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x84570c3d tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x0fa9255b tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x1659dd1f tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x41e86378 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x5c112429 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x452651eb tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x6906db69 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x61968f48 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xaca8fbb5 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xbe257757 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0133b936 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x265e0bce cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x34921993 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x43e07639 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x43f3d913 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x45cd42c3 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4b69ac17 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5e15844a is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x65e5b366 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6dab1bc9 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6e0d4f8f cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6fd87adb cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x702c6713 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7425e82f cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa1e5291a cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa21caa9c cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc722202d cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcc86cf32 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd8d7a994 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xee855773 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x9aa96b30 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x72b65575 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2b7e7ff1 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2b849650 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x32edb6db em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x39429383 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5bc4cc5c em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x67aba3c8 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7d4dc80b em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x80866ae0 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8916d64b em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8c7cb408 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa7da8393 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xaa78868b em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xaff30e18 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb119520a em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc620848f em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd0b38e2c em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe834fad0 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf4521311 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x6d13485e tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x7e257b28 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xef112cff tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xfb701000 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x4399d288 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x617b7adc v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x929022d3 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x967e9b94 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xae04a682 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xd4df2f65 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08982d59 v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x56764774 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x689897b6 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0766e2a6 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x094a910d v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1a23dbe2 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x239c227b v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x424687c8 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4677aa39 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5883f5cf v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5e58e9f9 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x66ae55b0 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x789b92da v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fa9f4b1 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x824f8bdc v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x89fbf9b2 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaa6ca779 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xab1c417e v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xae4b17c2 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc3508b9c v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc3bcdb31 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcb10ae10 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcf9987c5 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdb2a7e1d v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe22f8a1e v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe58e1784 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xeacc6c88 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf556370d v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfd038916 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfebf64a0 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0800893d videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0e203deb videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x17f934bb videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x297606f2 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x357ebc51 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x36c91e78 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3cf96db0 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4b9548bd videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5a53c10d videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x763af9b3 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7dd9b351 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x81ae0647 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x825171bf videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x94b2d114 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9887059e videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9f953072 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb04ea508 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb346f89f videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcf2f0313 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd87ac0e8 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdd4a2b02 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdfa14f2c videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf55eb332 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfbfe0c76 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x41f5da45 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x517002dc videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x60f475b2 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x990a1ac3 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa825c75b videobuf_sg_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x4d2ba47f videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xbd430bbc videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xeb4692d0 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x0b964274 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x0e22bc1a vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x5715c915 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x5a5cd539 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x5a776f57 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6689d156 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7cc6e045 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x8c2e7f59 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa80ebf0a vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xaa44ad4e vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb6799aa0 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb746a44f vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xbbf51205 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc713dd23 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc7ba4fc3 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd31cb244 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe7427a4c vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xebc579a6 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x4203cb99 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x5284500e vb2_dma_contig_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x5757ecdd vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x97bd890b vb2_dma_sg_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd30ec30f vb2_dma_sg_cleanup_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0x401292ec vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0af3abee vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0fcdd89c vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3ccce7ff vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3de82d03 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x419f851a vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4892e221 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x59d928fa vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5c6b039c vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5f7cd03e vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6f1583ca vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x734b15ae vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7bfdbb12 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8e54fd3b vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8f5240af vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x96efc0f5 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9b2e232a vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9ce8a968 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa801ad59 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xaa5a05b8 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xad10179c vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb009700a vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb3e8990b vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc13b606b vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc540c725 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc7387abf vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe4604aae vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xead3bfa0 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xed10dda5 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xef582e39 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf13ab003 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf2f46af6 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf317d808 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x81e883b8 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x06528557 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x085c1c98 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x09327362 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0b334efc v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x10e15370 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1f0f9337 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x204fc107 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x21fe7c3d v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2270a83b v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x28d20b15 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2de98f93 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x31e3d76e __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3740e82b __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3bebd4cc v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3f3fda0b v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x470e584a v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x54a65c2d v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x59ad0d19 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5ce3ebae v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5eaaf421 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x69759b8d v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7088a3c6 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7a85f5d7 __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8fa601e9 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x98545b10 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x99c81392 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9e7b7cc3 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa147ccc0 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa4b1adc1 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa703f460 v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcdecbbd3 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd053b1f2 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd393d82a v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2ac17a3 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5956f8c __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfbec46c7 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x51a855a7 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x6cedba4c pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xff6b343e pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x56ad597c da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x68129d97 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x7c77dfa7 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x7d3d7f59 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xa73c6138 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xc8f7dd59 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xf5dc719d da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x43d80ccb kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x64fa9e90 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x656cb14a kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x6b7032c5 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x74a83734 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe745d02c kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe8bb4400 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf7d09848 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x2a60f825 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x51fb2cf5 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xbfd55546 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x1120fefc lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x1838d9fa lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x39a8958d lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x4ce16318 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x66c194ff lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x95e51ffa lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xecb05f7c lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x262cfe08 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x38dd3420 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xad6ef7b2 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x0ebd8f40 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x1aa3b95b mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x1cb27a28 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x5c083108 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x856b580b mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xed06eb13 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x020eb8c5 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0c204c90 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x10bd27de pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x309ad1f7 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x423fbdaf pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x67bdd7dc pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8cd9b71b pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9e24e833 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdce5dde1 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdf3570c4 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xfb00b43c pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x5c391efd pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xfacad014 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x6218f06a pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xc45b3151 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xc5c9d44d pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd6c9a000 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xee426ab8 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x057ea128 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x189f5067 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x25c55b85 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x283f7f9e rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2a9008cd rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3becee6b rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3e1184cb rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x47af0a04 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x521c4721 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x70b1f07f rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x778cdd5d rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8c4fcdd4 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x99663122 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa6144b06 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa6843424 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xaba436e0 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc076f5ce rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xcb8a518b rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd105b74c rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd4dc48d9 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xdd169e19 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xdde02d91 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe4e51a37 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf0ba6462 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x374b11e6 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x3b2266df rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x3d7f1815 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x4593cdd5 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x483e2fc6 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x65cecdcb rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x782f70f3 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x9bf9ccd7 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x9dc9a99d rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x9f92b562 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xa4fe4d20 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xdf7b2c7f rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xf284d99a rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0b582458 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0e423895 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0e489deb si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x10af0c18 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x129857ee si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x170ab5f5 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x27afa883 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x317014f3 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3c78fe7a si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x43f6f5b6 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4b0d2126 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4fe50d5a si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x65d0392d si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x673fea55 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6de27bc6 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x72090a44 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x72ee5f65 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x736e151e si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7d21d7a6 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x866172e2 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x890cdd75 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x97d4d1f3 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x984e152f si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9b019563 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa447c6b6 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xacb7bf3c si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb074634e si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbc637470 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc65bbe4a si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc7291c71 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc883a31f si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd415de45 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd447b89b si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfaadf93c si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x76c05add sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x79e8cebf sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xb349ff43 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xd017e37c sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xd3cc8318 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x330337b0 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x44dcd9c1 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x848348c3 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x9f8f1929 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x28d6b3bb tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x62b37b75 tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x932430c0 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xecd2a5ad tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x380b4c55 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x2a8280e4 bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x37f43154 bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x587fea8e bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xf4e0da1f bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x1f691df3 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x3bca1b35 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x477cbf8f cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x5463d83f cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x02ddc520 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x06aa2388 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x07129e99 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x4026513d enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x90f4fe65 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xc08d8bc0 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xcd5e1d09 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe500b238 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x237de41f lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5aaac756 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x68aad82e lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6b7edf7f lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x767d5ff0 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x79f57dcd lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa7721d25 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xae694c40 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x81df6421 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xcd6e377b st_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x096ba1f6 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0b79b686 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0e6cf774 sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2df8e15b sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x32007047 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4263d86f sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4dec85b8 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x525d14c2 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x84f3db53 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9662d2ee sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd7ad5bbd sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdb008598 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe0b43c3b sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf8d44497 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x11916590 sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x17baadd8 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x2a44db19 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x6e92d020 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x816a6522 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8277ec2d sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa21a7d53 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe4632580 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xff0e30a4 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x1e50f534 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x2179d0dc cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xdc67f54a cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x3eed4228 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x40bf09f8 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xcd148dae cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xaf2a24af cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x13de4230 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x7264dfe6 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xf488763b cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x04870b17 mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x07405fc2 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0cb9253f mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0dcced53 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0f4d2711 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1795a484 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x22dc51f9 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x28e77f72 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2d934f60 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x33273b5f mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3cca20ea mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x48371205 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x49403654 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50132e8b mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x632ab8b0 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x678fc6f4 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x71bdd5cb mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x71eac4e4 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x814fa690 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x830ef00d mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8417dd05 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x85479d5b mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x868aee35 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8704e9b5 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x87c7f5fd register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x93f5b3b7 mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9dc12222 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9f674625 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa12102df mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa7ecd083 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb5ae549d mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb8cc5e95 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc0cf9ebd mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc4911f01 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc9911d2e mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd63f2550 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdb021cf9 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xea8d36e6 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xef91a6f4 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf1d58b51 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf23c175e mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfbef171a mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x14171069 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x7a0e7f30 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x926737ff register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xd5f6e081 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xddb41573 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x5673a22d nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x7e288ef8 nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x496ac90f sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x5560a510 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x6c88f407 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xee188e22 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x07ee78bb ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x19f3a5e4 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1c7def1d ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38a910c7 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5fec3681 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x65726ec7 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6a0e260d ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8c4fcccf ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xaf542d8c ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdcd88ced ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe7e5c462 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf0d20cea ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfc20856f ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xffd68889 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x1e4245ab devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x5a56ae3f arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x069734c0 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1ece70b6 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x33ac66a2 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xaf331019 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xcade5705 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd0bd2bbe register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x012c80b1 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x052cae1f close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x08a5c760 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x121ee5b9 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x2cf07223 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x383dace4 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x413103e8 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x48c20b1b devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x4962879d open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x8318cf4e alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x83ca612f can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9f801363 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa180764b can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xafde8da3 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc6215cfe alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xcc98dade unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xccb368bc can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xef426fed safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x666b7f28 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x84b8e310 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x987ea1fe register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xcca4ea9e free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x42cfd5e1 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x7f1722bb register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xc91e41e4 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xfbe485de free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x7c3ea3be arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xc22266cf arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0582cbcc mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05f22229 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09562a16 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0daa8d8d mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1062c536 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1163443a mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14b44d2c mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c4ad88f mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d28afca mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ebb5adc mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f105127 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x204c74bc mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22f00d39 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23b91323 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x248a2b20 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2752f958 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x277334b7 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x294b99c5 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f7d6a0c mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33ff8a57 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34535802 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x356b7f27 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35dbc8c8 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36b623e3 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x373b2713 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39c34c02 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39fcaccf mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b61b6c9 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4225e82f mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x435a3585 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44ecbedf mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45706089 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46c5542e mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e0ed115 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e61be69 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ea8c5f8 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x501ea1cd mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x521feade mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x524d077b mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x559e6454 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55a83ec6 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56373144 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59e45bfd mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b68045d mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5cfb7a61 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5efc6bcf mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5fd4d439 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64958cb6 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66ba6455 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68c59ca7 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x690ad233 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x690ced14 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c0a2572 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72496f6e mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73341abc mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74e8423e mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74fc62fe mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7616af88 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x762e3521 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7761a620 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7778ca80 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78f409b9 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a9033ed mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b26658b mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c42eddc mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x800768fc mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80756213 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x817a5242 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81fecd46 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83cb7e45 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85b95423 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85ee7aa5 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x879be47b mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8cd18f4d mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d9ed501 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e8a2709 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f5213b3 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8fcea6d6 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90d63669 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92c33f2a mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94777b4a mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x961c5d31 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9721cb02 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97f38ab2 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a06b9f3 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c1fd608 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2c1775e mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa885b722 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab8abc9f mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xadb4750f mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaeaa736c mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0f86b10 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb16870f5 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb39c1eca mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb81661c0 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8ad1e33 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd2e8797 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc180a0a9 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1ab18ca mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc92b770f mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce5628a1 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd97dceea mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda4f1ad7 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda8eff21 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdaaf57b0 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe023c8fe mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0ae25e0 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe48bec58 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4d928b4 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe66790e7 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe870ca05 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebb90a83 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed74558a mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee3d1ccc mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee554df9 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeec633c8 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef2ea8d0 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1e3b69c mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf81e296b mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf960b040 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa974549 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb2e5287 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb92f37c mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe81ebff mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04f8ae5f mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09470cf7 mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f4584d7 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x146d63ec mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b10d3a3 mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21d3d93e mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e03ab99 mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2fb26813 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x313eaef5 mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32ca8c3b mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x347c092d mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3719a34d mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x400a44d1 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bb97909 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f11cb0c mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52df1c00 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x531f66ae mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x578a69a2 mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b4cefa3 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5cc869aa mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60dc781e mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70374087 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71f8259c mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x866c3649 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90441d51 mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x960c06cd mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9cd86b76 mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1f3b0e2 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4307024 mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xabb12a60 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae1e37d8 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb287aea8 mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2cdeeb6 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca337bca mlx5_set_port_proto +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd46686b mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcdd4ad38 mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce0958db mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcea16066 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9543ff6 mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeef86adb mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf15ee7ee mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2dbf76d mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3210ee7 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff0c226c mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff60ff5e mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x368d3d71 regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x781dac19 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xd4ab3625 regmap_encx24j600_spi_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x08eae3b0 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x43c1f81f stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xc25ce98c stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xe25b9a00 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x06707735 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x0d7f6c5d stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x4d2d780a stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x97470db5 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x1f7e0c5b cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x3d49cd29 cpsw_ale_control_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x4ddf84e4 cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x5536a481 cpsw_ale_control_get +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x729fa987 cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x73d13c6f cpsw_ale_dump +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x8583e6b6 cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x934f9d58 cpsw_ale_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xb29cef96 cpsw_ale_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xc771a5d4 cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xf1713ef6 cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xf247665b cpsw_ale_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xf5d977ca cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xf97bc001 cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xfe9d61ec cpsw_ale_destroy +EXPORT_SYMBOL_GPL drivers/net/geneve 0x2e19b0ee geneve_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/geneve 0x4d34543d geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x03b20478 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x3fbbd1e0 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x5dd86c74 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xae0ed7d2 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvtap 0x790165a7 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x18fd204a bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x23823556 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8284e026 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x883c6599 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8c8eb600 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb0695ffe bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc859894c bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe71aa320 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf341049a bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfe88274f bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0xb76848d4 mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x086f3adc usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x08ac2808 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb951335d usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xff0a726f usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1ca1870c cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5b281b5c cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6ae409c3 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x73552647 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x93c2076a cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9528e739 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xbdd9a39e cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd00e9214 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf0875f93 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x2c8c8716 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x44572b74 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x6de6788f rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x7a4cafe9 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x99151cbc rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xee31e614 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x04f806bf usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x09249a57 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x09903d24 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x10ac5bf5 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1b8d6ab3 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1f73bdcd usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x286ca3bb usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x34579993 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x35fbb92f usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x36f332a9 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4356b0fd usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x46d924ee usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4dfd8c05 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4f79e53b usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x52c04ab0 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x59ff84c3 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6604cb82 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8749f6c8 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8a3fa324 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa10f2652 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb3d2c160 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc714de23 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc924bb11 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xccb78cb6 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdac21842 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdd287d7e usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe05c6eee usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe9f35011 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf060e212 usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf8bdd753 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfab421f5 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfb2c77e7 usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x6e6f77ea vxlan_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x99fe7cfa vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x17ccfb7a i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x27100e23 i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x31256b19 i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4e7d09ff i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x603fffd7 i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x734c8308 i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8a4054cf i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa25d19ef i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xbfd36e26 i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc6cc924a i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xcb3b11e3 i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xce46a3b9 i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xda946768 i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xdcc0f87b i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe7bff0f3 i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf6148a7a i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x0c5f449c cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x1458aa87 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x60edb78f cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xc0d00765 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x2cecaf3b libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x038071ec il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x1ce8bba1 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x862d665e _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x8b5489b3 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xe3fc0611 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x002b2e74 iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x024b7546 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0373b9e5 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x05d3b03e __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0b408857 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0d556623 iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0f48dcb7 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x26b0f984 iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2cd8c8a5 iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4a49e71e __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x63e57df6 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x646d67ad iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x714455b1 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7f0a69b7 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x943a5e69 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9ad6ff3d iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa3023b80 iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa6d9b435 iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa89b5773 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb4eaf65e iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb95bac2a iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc67c31ed iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xcb9de23d iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe0d3442b iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe39a7091 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe8020fd6 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xea0a4040 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xeab643c9 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf3476c46 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf3eb8f48 iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf5aea4a7 iwl_notification_wait_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x1b338e73 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x2bc46f61 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x390315f3 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x4500e0f7 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x4dd11627 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x50939287 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x6d26b18d lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x97e97a03 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9f98ed31 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xabddc56d lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb6a2b3f9 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xd5c972cb lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xd97f852b lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf42edde8 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xfa87056a lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xfeeb5aff lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x22a59682 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x4327d768 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x60e0d226 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x7472f3be __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x86e40942 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xa8f0c8ab lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xd890a2d3 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xfb66c092 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x037b44b3 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x0f622e28 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x1940518b mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2a62ac98 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x47a32402 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x49865ad2 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x5090e5f0 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x61386494 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x88d0b7fd mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xac7285d0 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb0cb2d86 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb6cb37f2 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb831c5cc mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb96b3417 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xbb240d7e mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc964dcd4 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf20eca4a mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf2289a6c mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf81b6cd9 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x1323f23d p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x155683bc p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x589c9eba p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x6a23f9c8 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x8db2c4cb p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xa04b0de3 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xa81f7481 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xda2d9425 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xf939a350 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x41710b24 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5d59bcec rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x72d127fa dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7e927c84 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x006639cb rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x106e6882 rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x16900a49 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2687bafe rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x27b2db91 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x29f5f4af rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2a08f0c1 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2caf8a9c rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4569a133 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x45c5f9e8 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x496031f7 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4cfbcce4 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4ecf16db rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5034f661 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x55660a56 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x632eebb6 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x94685e7a rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa54e9c7a rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb0cb967b rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb8a9a57c rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xba6fc9a5 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbfddd9cc rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xca0ddffb rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd141c2c2 rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd5da9858 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf428c863 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfc86b83d rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d0b6636 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2fb13f86 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x407fed30 rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x59a9a169 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x696c43d3 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x69f8cd84 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79f67c83 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7a2c1471 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x83f26611 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x98455fd5 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xac646ade rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaf38a60e rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaf81ca2e rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbf4b16e6 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd89b1dab rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdaf02f14 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdc2f367d rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe2092c8b rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeaa58b04 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf62b0467 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x084a341d rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x45a644f8 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xf5816d7e rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xfbdd4989 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x01b67069 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0a915b25 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0de9988a rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x10428060 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x167ad083 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x17a670e7 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1fa1c064 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x27b8cc3f rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2d4cd5f1 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3082edfa rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4f498c3a rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x50bf9315 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5c77640e rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x63523082 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6497bc2e rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6737dd21 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6ba72290 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6c3993e0 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x789bb4a2 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x82b457ad rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x85d07ab4 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8f433aa6 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x90147cc6 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa3a211ea rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xaaa40826 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcae18362 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcaf0b2ea rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcd356a96 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcfbd1759 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd2656c3b rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd7bf80bc rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xdde1f321 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe0333bab rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe8f424c4 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xeb4f812d rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf39ab512 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf5ccd60b rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfa2bccc8 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2f0e1bc5 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x37221e56 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x38da1cd8 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x402eef27 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x4aa60560 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5ab7243a rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5c2c0083 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x7079c1dd rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x720140a4 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xb45b1579 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xbd772405 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xd3f39061 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xdc303cea rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0323191e rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0927da93 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x18f55c7a rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x19f8ea52 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2132e720 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x21e366da rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x254c9d7c rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x30ce8fb4 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3e1680f8 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3e4614d6 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3f96f2c6 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x46c03286 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5704c99e rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6b91cec7 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6ffd92dc rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x79c9e2ff rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x853e1c67 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8650c1e7 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x99524ffd rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9b389ba5 rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9cc63674 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa3d7e91d rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa494b88b rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xabb4acac rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb1898870 rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb33ae811 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb4c669e1 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb8f94d16 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbb04ec6f rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbbd8aa40 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbc053114 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc0d4fb60 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc2ebb138 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcc0913a7 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd40ccbbe rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd661792d rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd94b959c rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd96c47cc rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdd7b3027 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdd92b685 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xea25c06a rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xec2c5a74 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf0fa47c6 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf39bffc5 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf6a04921 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfef461c2 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x1f694d5d rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x66e82e61 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xa056e1c5 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xc2f3ce0b rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xcf9f3e89 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x0d8b1f34 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x297501b5 rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x456861b2 rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xd45404cb rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1cccfa22 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1f0d389c rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x23a19efa rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x29561230 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x4c25462f rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x6c225ba9 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x6ed27ffb rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x894f2f1c rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xa050cf46 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xa6d8bea7 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb51a3e20 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd953f980 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe47451ed rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe82f821e rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xedcba76a rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf690f387 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x6249739f wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x8d09606d wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xf55aebc9 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0336cb54 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x10f7282d wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x151bad6d wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x17aacd69 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1a671320 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1ccd0dae wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1fba2acb wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x21898cfd wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2e1696f1 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x32c6bdab wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3e2bb3b1 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3efa56f5 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4ab293e9 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5f076fa8 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6842c654 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x78177ede wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8709ff0e wl1271_ps_elp_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8addf082 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8b5057bd wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8bd4dd71 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x90f13e48 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x913f0004 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91da5146 wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9641f79b wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9d8567f0 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9e39c274 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa1439652 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa4f06200 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa5087c08 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa7580da4 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa7e3d71f wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb71f2a80 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbb452ad7 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc140a4e6 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc753cbea wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdbb2a4be wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdef68a7b wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe3cd4aac wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xec791504 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xee58f2c4 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf097ceef wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf11ba0e5 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf9fa3bbf wl1271_ps_elp_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfe838a25 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xff268a2c wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x1d38775c nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x47237c79 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x7dff7680 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x8518eab1 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x02d1e31a st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x08b76a0f st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x10f84d28 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x20b43c08 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x329e43de st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x572d0323 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xde3ff857 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xe614476f st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x25b0f905 ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9d9b1247 ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xadd590dc ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x1ddd2864 of_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x36ec8a8a nvmem_device_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x68758fda nvmem_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x69a325fb devm_nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x87a76839 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xb60e8a00 of_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xb881ff8c nvmem_register +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xb9a154de nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc96fb674 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xdfb0dd6e nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe18960ba nvmem_device_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe9a7fe16 nvmem_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xf0df09af devm_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x5995f5da pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x5afbcd10 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x92835acc pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x134dc6ef mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x5b475ec5 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x9508a78a mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xb31f5082 mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xba4d6f04 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x14f0771d wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x3aefa8be wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x93c9c1a9 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xe49f9467 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf32f0481 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf6c15bc0 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xecec5d23 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0f3ddb3e cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x10a0d077 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x19319177 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1e4b34a7 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x23d4dc32 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x25a14310 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2623109b cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2836ec66 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x29dfc3cc cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2c4f3253 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2ced431f cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2cedd985 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x46096e3d cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x47f5d4b2 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4d6b2cc0 cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4e6445b6 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4ef59f97 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x532c9e31 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5eda29fb cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5efa205d cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6220f74f cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6940b19e cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6a51c2e3 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7cbacaf1 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8131637b cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x95363cb4 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x95a27ff3 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x968530a1 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x98a92af4 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa20b31fe cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaf90f3b7 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb66df905 cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb67d85ce cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbc6d9229 cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xce9fd696 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdc9b0e29 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdd224948 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdf973b69 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe498678a cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe593328d cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe6ffce3c cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe7e02536 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xebbcf090 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef261dc6 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfd0ba2ce cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xffce0389 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x02613367 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0aa43f87 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1436b909 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1d54409b fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x387a23f3 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x46311f84 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4ae2e230 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4c27113d fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x519c8883 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x70607663 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8bb81a50 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x93dbb486 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa3cbc03a __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa57b5d1d fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb4318755 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf4ffa562 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x1471aece iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7cc5d50d iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x849be4f8 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc628c43a iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xf9687525 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xfa817321 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0679c590 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0ed9e9b4 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1fd9443d iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1fec9039 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2750692a iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x295f73d6 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2bab5b47 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x37b21b08 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x38a4cccb iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3b2f63c8 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3d0fe4cb iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3e9283f5 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x446aaa22 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x471da3dc iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4758b88f iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4c737307 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x54fffed0 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5931e1da iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5ed6190c iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x61fce400 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x631d5460 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x647957ac __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x664f6687 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7289cbc0 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fa1ec7a iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8700a030 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x90b82813 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa5da00a3 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa7034fa0 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xac7cb892 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaffb4cc6 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb0b1a022 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb39a511c __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbd2f7a70 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbd605715 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbe2eb389 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc2bd8e08 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcd84ea76 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdcc8acb7 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf0e61944 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf7e73ad2 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf7fdbb00 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x00a91ead iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0ee75ec9 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2017f4de iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2dc6bc96 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x38c3d791 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4070f158 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x61f9abec iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x63c258e4 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7094bf7e iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9e59a72c iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9f550380 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9fcf88ac iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd455d1d4 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe74dcf8e iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xeedf4d47 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf70bddd3 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf8fa8bcf iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0da2c8bf sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x12ed0c93 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x130c7fcd sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x28721698 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2b755a50 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3bcdaebe sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5338ee82 sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5487b687 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5f5b029f sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6400022a sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x695d0443 sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7f4d7602 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x850d3edc sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x855efa0e sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8cee19c3 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x98e7e942 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9e809648 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xadf8c8e6 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb37df43b sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbee9fcea sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc6833fc2 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xca4527ef sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf596b2ba sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf7cb84de sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x000df035 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x04c94998 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0eb6a865 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x16dc030a iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1821d89a iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2f83804a iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x403d10b4 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4bc227b1 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x58526191 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5906af54 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5cda8c70 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5d021214 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x632e2aed iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6d9986c2 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6e18b544 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x76af442c iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7d6ad42c iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x837f3959 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x85431a87 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x861e6407 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8ac9ad41 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9cdb0a48 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa2d591a8 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa68a896d iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb4d9755b iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb5bcff02 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb883e708 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb9b945ee iscsi_is_flashnode_conn_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc505a1ac iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc7023995 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc8526fe1 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd1ccb3ab iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd1cff1d3 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4b5f928 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd70dd5b7 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe336dba3 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe89c9b36 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeb5a41c8 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf3be7e5c iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfde00c3a iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x2ce994b1 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x6a0baf56 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x745d0818 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x913aa2a4 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xd72ce549 spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x223daddc srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x4ebcacf5 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x6c23751e srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xc9384bac srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xccaf5177 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xe111bc73 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x79ccfc3d ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x7ffa59d2 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xadc7d125 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xc9329423 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xcec9618b ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xde515b22 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xfc54e3c7 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x282e59c4 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x2946625a ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x2a50a32d ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x3133cf8f ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x922fed18 ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xbb453cb0 ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xebad586d ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x05c04642 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x465367d0 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x8b0281e5 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xc05f7fa7 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe896f848 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x17fbfb18 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x26962f7b dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x685d9915 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x911906d0 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x01f54e23 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x03aad380 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0753b9e5 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x18729750 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1c6c1dd8 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2e3e4b81 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x372ec276 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x39f5528d spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x409b0d4e spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x51f98d2a spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x52f14d0d spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x724db43c spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa7050189 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb8003200 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb801b76c spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb908fee5 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdb5d6b10 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf61a7e5f spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x0a69add6 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x05c7e779 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0bd980b9 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0ec65a88 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1c23c021 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x211f1d17 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x24962b0e comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x25945953 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x26a30974 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2880799b comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2efe0453 comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x30cf2a2d comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x362b9f6e comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x380ce450 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3a8f7467 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4f6addb6 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6968f090 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6b10f6af comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7d538a4e comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x86a5ffc4 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8bce8de9 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8ed391cf comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9086ecc0 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9d66eff6 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xaa43cf20 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xade3ee50 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xae2438cb comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xaf813727 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb80e8228 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbbe5cb38 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcd748bbd comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xceb10230 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd95be702 comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdae2ebff comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe47b2256 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf01c29d2 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x21b484e3 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x3cbb9f6b comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x550fd24e comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x5d7c1587 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x64fd1ecb comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x662c736e comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x6cfc2679 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x811d0f7b comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x0a3a9dd5 comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x436102f1 comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x6a4860f6 comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x7131b0ae comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x8b9e7295 comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x92104097 comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xd1fbaae5 comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x1f0a6727 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x4f5e056f comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x9925c2fc comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xa13e5617 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xc4968128 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xf08dfa20 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0xf53b777f addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x81f737a7 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xc61376e3 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x701ccb2d amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x194f658e comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x1a771494 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x39ac0bd1 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x4129c962 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x53ddc8fe comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x760145c0 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x7b40748c comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb4bb59c1 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb8061fbb comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xe97527c6 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xf4946dff comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xfc178b16 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xfde91d58 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x613732e4 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x8cb596bd subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xa21186a8 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x0d68fcd9 comedi_isadma_poll +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x60bf2e52 comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x6815a033 comedi_isadma_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa3d01a85 comedi_isadma_program +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa7ebb8a3 comedi_isadma_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0xd32ac077 das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x059030ab mite_sync_output_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0a06b85a mite_dma_tcr +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x112e6530 mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x1ed1592d mite_bytes_read_from_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2d9863d6 mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x314e1bc5 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x332ec3a4 mite_bytes_written_to_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x362aabb5 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x38854c9f mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x3a6b47a3 mite_setup2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x421977f0 mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x443ccbef mite_get_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5477e67e mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x55e67ea8 mite_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5e4bd7ba mite_bytes_read_from_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x73b44d33 mite_bytes_written_to_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x804ccef6 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x86d96e4b mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x8b6d345f mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc2abf253 mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc7afc176 mite_sync_input_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x701c8b01 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xf30e3316 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x2021acf9 labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x35dde522 labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xab18a4d2 labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xbc53ea20 labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xfa368428 labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x029a013d ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x4a5fd8ea ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x5292c6a6 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x8ce3371b ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xa37c79b2 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xb4e30373 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xc8e77181 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xe627389f ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x3186569c ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x7db89f9f ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x9bc312ad ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xb922a0d7 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xbae2b674 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xe0f50d9d ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x0b59e2d5 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x18def6b5 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x1d65c62d comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x39ceb3e6 comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x3e39e297 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x6629fc28 comedi_close +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x84cf6376 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x3e892285 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x163249d1 most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x1a55ed42 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x3b5f1ac4 most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x428970ca most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x5408b74a most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x85b450f1 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x8fdfe65c channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x93665835 most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xac642dc8 most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xb0ad2b24 most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xb49f1242 most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xe0e520df most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0ef1d765 speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1648fb64 spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x3ab6b7c8 synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6606bd41 spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x677a7ae2 synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6e2bc685 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9594da51 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb35aaab9 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xcb969a17 spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe03e357d spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xeaa5395e spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xf3a381fa spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x100f43b0 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x98462932 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xe9f256b7 __uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x75f79515 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xe3862dab usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x87769d85 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xa7b30d27 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xd6f14167 imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xe781ca02 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xe8742023 imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x54839e02 ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x771027ac ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x9e437d04 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xa453f63a ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xbe009e43 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xe6b5a494 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x03ed5072 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x07f65d50 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1a69d0ee gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x27675733 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2f9650f8 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x35db1610 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7b13d0fd gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x85810f7d gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x868a0b33 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8730aeaf gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8d8fc41a gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd23cd371 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd52334ea gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd52d615f gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf60b7b66 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x87b086ae gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x96180134 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x2fd2920a ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x58dd55c8 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x68c3a3c2 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x17253077 fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1d590c8e fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x316a3d15 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3eca4ecc fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5255b366 fsg_common_create_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x548e026c fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x57796315 fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6c6e50f1 fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6d99a11b fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x711de13b fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x88f533d4 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8b8ce41b fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8cb4c870 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x91a020c9 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9c457374 fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xcac697c5 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xefb6e1d2 fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0fa52198 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x228529ab rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x37d3ff36 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3fa62fb9 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x405829b7 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x486a2b01 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x52b169bc rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6129f150 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x749722f3 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9adfa782 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9cacf703 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9d5d9423 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa1b4f433 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe271ffd8 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfd4980ee rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0de04b16 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1f3253bb usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2eb1bbbf usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2fb76122 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4458f3a2 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x45d8f456 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x47de712c usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4a382235 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4ad5d376 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x517a06e4 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5ec2ff73 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5ef98641 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6394be3a unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6b034d25 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x73bc38bc config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x86e61d97 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x89fd99a3 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8bbbdf09 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa562dc73 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xaf322e7a usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb8852023 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbe5dda5a usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc30c9bb7 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc659bbc4 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcde2b056 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xeec5d9dc usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf0bc20a5 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf7cd62f9 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfa63e868 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfddb8edc usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0153fb7f usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0f1f7440 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x37cf04a2 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x47d50198 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x67e73087 usb_udc_attach_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8247ab49 usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x844f1c54 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4744dba usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa8727ed7 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb9e42756 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcfc58b3c usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xef8c81a0 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf4d81b3b usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfd24b182 usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x03315f9b ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xf3aed174 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x10c4caf6 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x11de7151 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5229d38b usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5f7be6c3 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x89d638c0 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8cd0fa39 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8e1b80f0 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8f82f6ee usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd4b062ca usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xbd994a32 musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x2c9a8051 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x547c68fd usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0fb541fe usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x21de8355 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2a099570 usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4216118c usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4fe4747d usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x58c51dbc usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5bf95b11 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x662f52de usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x79f22e25 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7afebb85 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x80e3bade usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x81972e13 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8a03de1d usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x90a56f18 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x93e18b4a usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9c33d33e usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9d8ceec7 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xad795d1e usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe89007b4 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xeebcca74 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf204122a usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x28713a4d usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x314d6f2d usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3155a71a usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3f31b171 usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4327eeb3 usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x49f61144 usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5247aab2 usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x58fac46d usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6313127c usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x658bfed1 usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6a70d498 usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x79db9026 usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x88fd2141 usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x90054ebc usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x984b4419 usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xabebef52 usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xae3f26f0 usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc8f2d786 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xcf372ab3 usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd1aeea39 fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd9aa8ab8 usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xdbad440e usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xdfdd9d1f usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf71e5305 usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x16704da8 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1b80ba6a usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1c8f8e65 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x39cf8049 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x40cb7f07 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x69988da3 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x83d58782 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc16593fd usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc19936bf usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc4ecda1e usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc5cc5210 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xfd6e4443 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x190ca52c wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x1977d56b wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x49d98fee __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x614a1193 rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xadc68fc7 wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xb0d28bfd rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc543b60e wa_process_errored_transfers_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xd2c8eb66 wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf4654c3f wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0203eec7 wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0675cca8 wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x133bef4a wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x1450489d wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3dca7e82 wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3dd3805c __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4316edd5 wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x5f695c28 wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x657d2ed6 wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7c806548 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x89c15e18 wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xcc2295ab wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd93ad860 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe47e9e8b wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x349552d6 i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x8487e3fa i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xe102aec0 i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x0379dd16 umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x587d8a86 umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x66b0ff41 umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x853bd0a6 __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x8fae09ec umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x9221141d umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xb7ee22e9 umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xc5bd3ca6 umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0145afc9 uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x08899e90 uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0a80aeac uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b8aad57 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x19a67c5c uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1e10d4e6 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x24db9235 uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x26881573 uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x28cc2766 uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2aa346d9 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2ca6cf85 uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3924ea3a uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x39ca9645 uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x428badd1 uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x43f9214d uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x46299f79 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x485a1bc9 uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x661afc75 uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x72c1499a uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x78abaf63 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7cf8c070 uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dcfcd23 uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x87387a43 uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa10355c9 uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa2123a18 uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa7e94ec7 uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb0d94851 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb2dc218d uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb5c6f3eb uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb72ad6be uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb954e3f4 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbee9e9a9 uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc7d5a4a8 __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd079b248 uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd0e62f37 uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd41d324a uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdffb6fdb uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe9784188 uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf40bc804 uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/whci 0x6e9aba0a whci_wait_for +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1d15a788 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1f066fbd vhost_init_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4b67846a vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4c54afa5 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x58895002 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x60b006cb vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x65dea736 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x71fa0aec vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x768375b1 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7742789b vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7877c87c vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x90e1a5ba vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x920ec237 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x947976ef vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x95052329 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x950ad970 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9a7d0b9b vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xac0d5f7a vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xac38bd98 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb0f81e37 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb32613fa vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb79f323f vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xba7cc6d5 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbcb924d6 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbddfd7ad vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcc810991 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd1edd5fe vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe5b84253 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe785c6fd vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfe404063 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x05dc7580 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x26773c5c ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x3b8fb333 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x3df78313 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x8a07b804 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9340d358 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xaa16b03d ili9320_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x051d5dc3 auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x287cfc2f auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x34543c2b auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x4bfe8dbf auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x882b669a auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x9b18e533 auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xb1d2f031 auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xb8861cc0 auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xcfe1128d auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xd13d96c4 auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x9000e837 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x729378ce sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x8f07467c sis_free_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x01d7d212 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x14fc0926 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x1fbcdb5e w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x20479ff2 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x349871b3 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x3887f633 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7bf08cd7 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xf1979533 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0xf3626c5a w1_write_block +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xa88de361 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xe0f73bce dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xf3e3def4 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x0033e9e9 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x08ae384f nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4d92e9f3 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8d9e04ba nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb42a7ab3 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd59964bf nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xdfdc8a0e nlmclnt_done +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x056a3ec4 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0669be5e nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x071f9055 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0956a325 nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0dd938d1 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x109e9ade nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13263815 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x149e9fd6 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14fdbd11 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16ca3195 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16f3e942 nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1bead47c nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ce5ab03 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2112bac9 nfs_file_fsync_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21f366a4 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2224331d nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25d9a289 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28b36990 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a0bf224 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b4a7841 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b883df3 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2bc525e2 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ccec63c nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cedb1c4 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d2dd189 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2fb8818b nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x351fd055 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x358f68dd nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3997fe02 nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3bd5846d nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e5fbc59 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x412252fe nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42177403 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42bc6811 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44c477d0 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44db9ca0 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x471909cc nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c58290a nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e054809 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ff993ae nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x529660e5 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54dce027 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55ec8559 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56c0e13f nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58626a77 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x592df306 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d00fc3a nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d38c30f nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5dc0fc9a alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6048ad1c nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x660f8677 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6703f473 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67e4ab54 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68efaa06 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69fe9a08 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f7818e7 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x724bc398 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72fd5ebb nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75526547 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76fae4bd nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7858ff7d nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e08ccfd nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f25a2b6 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8322eac2 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8491c8f7 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86d1c926 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x874dd4db nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88d81ed6 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c74869c nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8de450ae nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8df5fa27 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e4274ff nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f634a2c nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8fdbb6ab nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x908274a9 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9300d412 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9772d76d nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a2f3da2 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b5cc388 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e36cec9 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa809b5be nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa14361 nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad239c71 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae0b31c6 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae17a5e8 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaed47b07 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb2e79281 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6f70fe8 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7db7865 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba6b5c1b nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbade5c33 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbbb6de4d nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcca4db0 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe420b76 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0ff8dac nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc16b1bdc nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc277f85d nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc36bfc43 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ecf91e nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5e5edc5 nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6ed5728 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcfd4dd34 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3f481c6 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd62e5fda nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7d12074 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8a4bda5 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9a65db7 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb3e6faa nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc1fef0f nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe018ddf0 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0799ac9 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2377a5e nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe635b21f nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec16dd1a nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xedc2cced nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xefd93570 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf27e9c3b nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf637c18c nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf66d7a23 nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf71e49e9 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7f556e2 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf92fdc3e nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa2d46c1 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb2f609c nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe9557e8 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x4e09332e nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x01d1f9e7 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x06e14d89 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x09f82131 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0b046c3e pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0defb2fe nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x17e1fe31 _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18a3b8e4 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1bbcaff9 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1e709f6d nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x20903005 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x209de9c0 nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x23f1344a pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x241fed36 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2a5e73bb pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2d2740d5 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e46bc71 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e46cfd7 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x31826d69 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x31dec45e pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x40edcc44 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x42e08119 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x457ebb6d nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x45a35f6b nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x461b1add pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48cddcb6 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4bdb7c59 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4cda5531 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5220ed7c nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x55617078 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5e0ced2e pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5edd7f84 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f548a6f pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x75b6036b pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x75c9e426 pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x795f6f55 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a3b5e9c pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9785e35c pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x987827fd pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x98912735 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d7c1666 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa2cd215d nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa451a17e pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa7b992b2 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa9dc2dc7 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb073e7e6 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb299a217 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb2dfc45d nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4c886b8 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb6478c28 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba796428 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbacf4e8f pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbde5e92b nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc82b42c8 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc53468a nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd48555d9 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd576bffd __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd8a73ab7 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe93a196f pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf5224b86 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf915242b nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfc70991f pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x26b89d92 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x36d483da locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xd2a3d91a locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x0567addf nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x27bdd75c nfsacl_encode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1cb231d0 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4ee69806 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7fd964f5 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x8a002b7f o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9e7b5267 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa49be5a3 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa9f5379a o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xce8a0ff2 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfa6d3655 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x3b2297e4 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x5d116915 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x6e759171 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x79ca2d69 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xcdeb17f0 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd10ca317 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0517d21a ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x35cf232e ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x959e8f9f ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x2afb4bb6 _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb +EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random +EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait +EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop +EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end +EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin +EXPORT_SYMBOL_GPL kernel/torture 0xd0aabe23 _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xdfcd0360 torture_shuffle_task_register +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress +EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch +EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch +EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch +EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xc047212b notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xfdcd45f3 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x021957e1 raid6_datap_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x0f8a2742 raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xd4cb6873 raid6_call +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x201d8ea3 encode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x29fa419f decode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x57861324 base_inv_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x57d39367 base_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x882ce5fc base_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x9e0112d0 base_inv_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xaedfbb15 base_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xc8fca8a6 base_inv_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xd11741a1 base_inv_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xe3d900b5 base_old_false_key +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x14524b4f lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x303e6d1e lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x8851bb07 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xa015f110 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xa4fdbfc1 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xc1380370 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xcc2c3d5e garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xd41aa298 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x0a44d218 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x2a3931cd mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x4006d1fa mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x8ad91d6d mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0xc3f296ec mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xea276fcd mrp_request_leave +EXPORT_SYMBOL_GPL net/802/stp 0x100ac640 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0x2c1ec790 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x13c8c4fd p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0xbda58993 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier +EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier +EXPORT_SYMBOL_GPL net/ax25/ax25 0xa175837d ax25_register_pid +EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast +EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0260d699 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x1464fe64 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x39a99c2a l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x66b04149 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x9d2bed93 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb67f4999 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc0cd6c18 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xfafab896 bt_debugfs +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0d3b71fa br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x28c26df7 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x400f2655 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x97501d63 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9ccbf0bd br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf25865e1 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf759e494 br_deliver +EXPORT_SYMBOL_GPL net/bridge/bridge 0xfc2b2d65 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0xa84c14eb nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0xaad448b6 nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/dccp/dccp 0x09001824 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x21321fea dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x27047195 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x29ff8ecb dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2c038458 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2e34dcfb dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x351e93f5 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4c845709 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x57c889de dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x57dbe79e dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59ed3448 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x67bbf085 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x68e9b73c dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6b497af0 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x747cc989 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x758a611c dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x75b9a545 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7b6b3c67 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7c0ee5b3 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x81fbd57e dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x945ffd99 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x95577500 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa3f5132f dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa4104dc3 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xad74e0d9 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaebca705 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb48918c9 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb6b0fd60 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc0b7b890 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc36f166d dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe418c8b1 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe4909c48 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe9182503 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf02f1c1d dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1728b3c1 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x234c6055 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x304e5cd7 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x8f4577aa dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb103ce07 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf3991e26 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x07e43ba3 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x5e4aaadc ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x7ad3afd9 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xc869c5aa ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd58dfa29 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ipv4/gre 0xd8155ff5 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xf0a6ab19 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1e2c5d97 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x62f711ca inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x812e5c53 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xaf8497a6 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb88b8605 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd13fb272 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x24140e68 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x01d72ffd ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2b9f9134 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x340df162 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x38b1d605 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3b750fd6 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5038e562 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x58d64315 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7045e630 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa29d6dd4 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc0810337 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd494d560 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xdadc0901 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf9a9db57 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfb8e5799 ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfd9d12b1 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x67c93627 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x710c4993 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x1442ad67 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x04d9c4a0 nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x2090d4f8 nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x804b1252 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x9ccb1085 nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xacce15ab nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x074734b9 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x06b636b9 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x617f8551 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6a49df7e nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc841619f nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xdd754fe9 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0xe9b8ef4e nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x120ea0ec tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x87fac1be tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x89591b11 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xbbda2afa tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xed88e835 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x16cfc7a6 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x4829df89 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x93873aaa udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xdd2641cd setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x0c84b5b0 ip6_tnl_dst_reset +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x0d67ac79 ip6_tnl_dst_destroy +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x5d20effc ip6_tnl_dst_init +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x79f361e1 ip6_tnl_dst_get +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x948067a5 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xe17dfbdd ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xeea30735 ip6_tnl_dst_set +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x3cccb195 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xa6715261 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x2575e351 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x027c907c nf_ct_frag6_consume_orig +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xc8bc9d4e nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x6eee6a24 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x78f3769b nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x8aa084c0 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x91de0942 nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x93733bea nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xcd7c95d0 nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0xdbacbb02 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x23edd441 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x4d68618a nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6c44a5e7 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb000308c nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xda3604c1 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x56f3bd75 nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x00767cfd l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x01e18168 l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x27c80322 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4015b8c9 l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x40430ca4 __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x49032b81 l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x54020c89 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5439efcd l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6176cbbc l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x71097000 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x739e5958 l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbd21e7b1 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd01a0e8f l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd961ec40 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe6c0055d l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xeff67805 l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x2888b7c2 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1bc1ff63 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x201aa80b ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2a9f04b5 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2cb30433 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x301516f5 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3a92490f ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x56ec6485 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x66fd46cd ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x71a05950 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xad0efcfd ieee80211_set_key_tx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb7f58f73 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcaa67fa3 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcd1dffe5 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd6e57dc5 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdd44d7d4 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe925b021 ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf8aa3c55 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf9fa191d ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x45c344e4 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc3ec7708 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xd34d6711 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xdbb954bb mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x053c4489 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0effa2da ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1c2abf45 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4fc539bf ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6148d86d ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x86283558 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x88954d73 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8d852de2 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa9fce7c8 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb402dca1 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc662b762 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcd72e4da ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd9048105 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdf4b603b ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfa0c4863 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfef42ba3 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x513ea74e ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x870005c7 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x9bfea1ed register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xce6222c0 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x04b88df0 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x09afdffb nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0dc03ef2 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10e03d82 nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x18498153 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a1e262d nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x27bf2d87 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2ab608c6 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2f0a4614 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3163cbf0 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31de9123 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x33d8aec3 nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d651b18 nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x40f97c08 nf_connlabel_match +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4352f052 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5054ef44 nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x507b87c6 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5296096f nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x542b81ee nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5b0d124c nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5e091d0c nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62628dc6 nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x67268e6a nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6b6512b3 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6b819121 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d861294 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x73bd3457 nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x799bf405 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c8350aa nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7dc14259 nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8296fc8a nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x82fedb16 nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x89249054 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a66c4fc nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e4a2a93 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90f7634b __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x99bf757b __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b5f50c2 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9d88de44 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ff1071a nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa1b71f96 nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa46d5ede nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab74ce9f nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb1ad99c8 nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb50140f6 nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb74b7f4e nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb96d0517 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb5a4378 seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc173a32e nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc1b77445 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc6c7ecd1 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc8ed45a9 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcda54112 __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcf54a98a nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd05c9d75 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd06272d5 nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd1af0219 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda33f308 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdabdc7b5 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb001ad7 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb852719 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc64130c nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdde51e08 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdfc84282 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe0ec1341 nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe1a8c771 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe2541057 nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe301631d nf_connlabel_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe793f9eb nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe8ab0f7d nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec42e408 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xefbf655e nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf06452a3 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf0f589d6 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf50c8f7e nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf7e508fd nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf8b26791 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfb710401 nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfcda7d7e nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff40b965 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x70039e1f nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xc7b3794b nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x26913c2a nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5c47bacd set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x702d4a03 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x77b5565a set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x820efaad nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8e2497de set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8e3d220d get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa2f340ea nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xbc310072 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd226edb3 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe601a5a3 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x5b1a454d nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x15757681 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x3498c316 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xc271d93f nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xd81dc3d5 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x4793a9f9 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xa74661bc nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0725306d ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3e60fcb1 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb2979f65 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb4458361 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc66720db ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc93e3b6a nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd91780b3 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x21a3adee nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x5562fcd0 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x383a0cb7 nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x39d66788 nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x806df05d nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xb28746e4 nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x04402905 __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3154e8e3 nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa0170236 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa08289ad nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xabf325f5 nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb98c84b1 nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb9e1d28a nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc5682b6f nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xcbcc7214 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x0e568719 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xea95302c nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x018f9616 synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4f457cba synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5f339439 synproxy_build_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x042f928c nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x108d5700 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x10b57364 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x285a306a nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2a145b9e nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2be39008 nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3dc18769 nft_register_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4636ddd1 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5895c7d2 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x91630214 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9c364b7c nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa2cd8c9f nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc0dbfcd8 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdcaf8881 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe6ec97fe nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xeca00d27 nft_unregister_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfbc3b94d nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x0a5247fc nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1f91bb75 nfnetlink_alloc_skb +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x8138119b nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x94a1bd33 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa24078b6 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe5836caf nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe7c7af00 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x320dfbb0 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x4051eb51 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x746e3542 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x51dd07cf nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x3cbbcdbe nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x49e35a29 nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xa991fd12 nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x26cdb937 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x2f6f56b6 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x4cb33748 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x58abe380 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x920e8172 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xdbc8263b nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x6a1af3d9 nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x9d7189cb nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa9c974c6 nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xb830d08c nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2d76b9c nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0804f602 xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x38151b15 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x54072c21 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x614e8a4d xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6bcef142 xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8ae62bb0 xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9e5f4310 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xaa60c0e8 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xacebc998 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb8a5bccd xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc883fb30 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3c4669b xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd9d880d3 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe69111b7 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x00204983 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x482b6a12 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x0b90fc90 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x104299b5 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x4aacbbec nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x0e6ce0a1 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x44af2304 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x7703cd5c nci_uart_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x2923db68 ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x2e98a5f8 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x59b16f1b ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x818b01bc ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x94dd29bc ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa41c2f2d ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xafe505ee __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc92f2b55 ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xdb1a9b08 ovs_vport_free +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x1bfebb0d rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x2a9628a5 rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x3ac7b46e rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x3ae6ce59 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x49b2947d rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x5e34d309 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x63f6a01b rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x66d4ae68 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x697175fa rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x6ac3863a rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x6cd56707 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x6d58fc33 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x8232971e rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x9f1092fa rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0xa66f99c1 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xaf56df8c rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xb914062c rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xb937e7c7 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xccb25f1d rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xe10dc918 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xee6f071e rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xefbc3167 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xf0d0bd7f rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xf7311375 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x44a30048 rxrpc_unregister_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x5860d831 rxrpc_register_security +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x7ee496ba gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xa2b9b9d6 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xfd67d6f5 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x005d6c11 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02cb4827 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03fb1914 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05ede0ec svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x064e0956 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09666273 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bacdf78 rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c2ccffe xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c4e9d76 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0da06165 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0dcc91cc auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x103b2a55 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1059b155 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1183a5eb xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12db87df xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13450da6 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1528ea29 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16a4131e rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x177c01ec rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a6cf760 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1afaa5ee rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2043c82e xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x206bc4b8 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22333b34 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22d40480 rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22d4fbd8 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22d8d4e8 rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x234e0481 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x243e2e8e xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24a04b37 rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24a6a578 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27e5a315 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2828885c sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29deae81 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2beff011 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c39cab1 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c3ec209 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d6012ef svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33536b47 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x340c0512 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x345ffa9d xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35394f06 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35a46592 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36acc381 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39e40cf9 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3be0b025 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c4d06cb xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e089531 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f5e16f0 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f7092fa cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43ac9caa rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x447a745b rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x451da397 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4542d14e svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4612dc50 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46d1d66f bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46f0bf27 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47165ef5 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47b40704 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48121644 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x483324fb rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c64797e xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d3a25b9 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e5ce80e svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4efbdd23 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fc72725 cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5075a172 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x507d813a xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50e8fc77 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51b4d3a3 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x550f8134 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56379c75 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x563a0861 xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58480769 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a21f774 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a27f252 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a878d95 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f89eb13 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60b2da17 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6195a948 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62230a8d rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63288871 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64ca4ccd rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64e29e7c rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64e3559c svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66590edf rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6702ad6c svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x685dc053 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69e8f3cc cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a92bdb0 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6aca546c __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b2de454 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d43012b rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e944b1f rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fc571a9 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x703113dc csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x710edd96 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x711a3c71 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x713f2a57 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x723194e7 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x745e88e7 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x754cd863 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77811f9c xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77b2d365 cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79129dbb xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79f77fc3 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a70e681 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7bfa657c rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cdfbae7 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e1ac005 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e435b5d svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x818576b9 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82545f5c sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x845aef49 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87f01702 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88952da6 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88a5a8c6 rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88aa0f93 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ad4593c rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ba43bc7 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cc9fe6e svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x900f661a xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91078771 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94c7307d rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x957f0370 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95c260d9 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96727883 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97a49ac5 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99a80a0f svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99b9502b svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99c11c33 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9bf2d26e xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9bf7f375 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ec9990f svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ef449af rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f18f431 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f3599db cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa01d9838 cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa19e2d7f rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa31a1395 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa364a7c6 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa59f694f rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa623c3d4 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa82a00a7 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa83e3284 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa952216b rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaac60a5d svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab9b4257 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac710196 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae8df557 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5f213b rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb12c7da9 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3163cd8 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3ac5ac8 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7d113f2 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb80ca97c rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbea72d77 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf4e53c5 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc00812e2 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc110fde7 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3270ebc xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3fc0992 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc42f8711 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7ca5e0f sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbc1b0c0 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd00aa9d rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xceb70b34 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcec6eadb svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd14225b4 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd50ad66e cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd76054b1 xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7f3c3a8 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd85ae386 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9fce9a1 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda0be6c5 xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdacd53a7 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdce74267 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd6b720e rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdda49050 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe047fb26 rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0e4cfab rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe14a56c8 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1787583 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ee2859 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3f1865b svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4ee21b4 rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe665b9d3 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe78f6c34 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe89fa7bc svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9579db6 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb121f9b rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed371470 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef0c21e4 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf08b7c5c rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4d9f1c2 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc7ee7d3 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff599a38 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfffa19db rpc_pton +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x10189376 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x14d04b04 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x293dc379 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3841203a vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4521147d vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4e657117 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x551fe2a5 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5842c272 __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x676e8518 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6f945b9b __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x74e91915 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x77a616c7 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x972efc86 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xeb73ff1e vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf593c40a vsock_pending_work +EXPORT_SYMBOL_GPL net/wimax/wimax 0x0f2a0e8f wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x1979d9f0 wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0x22894c37 wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0x231afa7f wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0x2d198df5 wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x31276d02 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0x47035a56 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0x47f023d7 wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x6b0a4220 wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0x8c7df265 wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0x976e9e0d wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0x9d333e6e wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0xe989a7c0 wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x17151685 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x39f3fad7 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3ac7d1f8 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x44277442 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4c9c782e cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x50c550e2 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x567c8127 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5fff0641 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6089a21d cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7397d481 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x846da35e cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd23d80fc cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfe4c05e8 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x0bc547b2 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x6020fa3a ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x9e138618 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xc2851ba4 ipcomp_init_state +EXPORT_SYMBOL_GPL sound/ac97_bus 0x4b53c2d3 snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x0922dfe6 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xc813ef79 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd 0x1089a9e2 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x1e9bf402 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0x2d806744 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x440a63b2 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0x71bc36ba snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0x9e2d4377 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0xc87eed22 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x002edd46 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x195cc8cc snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x74fa312f snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8a392261 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc3d2eb57 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc3fd1c7e _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xeedd5ef4 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf15e3dd4 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf47c97b3 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x07dc8356 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x45384e24 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x6c4fb495 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x6ea9acd4 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x77c11c9d snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8bdef0f0 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8c57aa9a snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x90436c4d snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xbd191a53 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe3b2d1c4 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf1bbfb56 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0fa2adac amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x149daa58 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x3034b0d2 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x57474ebd amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd88bacf4 amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe856895d amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe925aecf amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x00ae2bed snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0185dc85 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x07061ef3 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x074f5db5 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0a652737 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0abb4a56 snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0b85e2eb snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0cfbac80 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0e9ece59 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0f05a0c3 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x110643dc snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x134301a4 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1eaedcc2 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x205c0806 snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x27381ae1 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x273ea9e0 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x277c9dcb snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x28225a88 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2e4869d1 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x34418faa snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x35ae93c3 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x405a7106 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x412c7043 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4ae9c5bc snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4ee66290 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x570dba76 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5a103ca1 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6032b96e snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x61e31243 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x61e3c8dc snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6452eb19 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x64f7d1dc snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6ff8e3a1 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x79275f3f snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7bf69390 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x82b180a1 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x83ce1b1c snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8658b574 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8a7efd91 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8b9898f3 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8d2292e8 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x95a03c54 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x95dc3864 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9c5c2ad7 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9d9d6331 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa11fda0d snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa2430a03 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa2a27c75 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa4498f94 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb276906c snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb522e704 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb523eee6 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb77b7cb9 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb903372f snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbb7a362a snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbec15014 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc15f1bf4 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc25e2a3b snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc6ce3d74 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcc1e9ef2 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcfe9c496 snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd2e432f5 snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd93772ac snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe6ab7a07 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe90f84ab snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xea37eaf9 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xebafd5eb snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf0a6d4eb snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf448dcba snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf59f165a snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf871cbe9 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x14987348 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x16af8b69 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x458169a3 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x50fb1425 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xc1e95bbf snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xd0d54509 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x050df6e4 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05bfde10 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a00c103 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a36c608 snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10648d9f snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11e887bb snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x127a1879 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1346ba87 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x157554b1 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15f80630 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16076be5 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16904b94 snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1b5b8cfd snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1f034164 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21dce97e snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2388a5fc snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x27939625 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x28111c2e snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d03fdec __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e995dcb snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2f4cbd5e snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30564e51 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30a6480a snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30e4f4a9 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x31eb6e27 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3360889a azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3455f3cb snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x36ad4459 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x37f63594 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38bbb87c is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x39169735 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d2161c8 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f4d61f4 snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x421a735f snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x422337a7 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x42ec6ae0 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x485fea1d snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x48e03472 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x48ea2e88 snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4b46b414 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4bc3e9f7 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4bea1cce snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c44933e snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e81d042 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f459225 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x50314921 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5146ab8f snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x519048fd snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5400fc54 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x56a89f1e snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x588a2d76 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f370954 snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61a76fba snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61f2e816 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64ebef01 snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x65456d7f snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x65f3be25 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6bf0c0a4 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7253f0d5 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x73f1d0a1 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74046b67 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x789cff19 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78e0ea9a snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a8bcda2 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80a2219a azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8566ff43 snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x883d18f1 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8852df68 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8902fa2f snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8bc5e92d snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c76b27f query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c9193b1 snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d8a2a06 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96db2fe6 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96e278d0 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a6cb8a0 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b7210bd azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d94d2db snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9debd2c0 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa381ad37 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa829871b azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa16373d snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac91ffff snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xad9d42ba snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xade49a3e snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb12306f9 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb41762d9 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9324786 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc195ede snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe60d3cd snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbfb54695 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc05d6b47 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc2fd7a3f snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc32172c2 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3d9c811 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc4deb373 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca70f682 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca8f17da snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcad4db85 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc3a2e9e snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0c56838 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5213e3a snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5cac4d4 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd66ca258 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd818ec5f snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd81d21ff snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8323284 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9960bd9 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9d8936c snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb56b701 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xde3bc410 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe5794613 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6076b82 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe960e44b snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb77a933 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xec4c2caa snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xec7b4ea7 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed0ea7de snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf18b50b9 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1cd3cc2 snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf44b9b68 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf53c5025 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6d64214 snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc8eec11 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0d41de96 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1951f004 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x33101c29 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x45743346 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x53f30d52 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5a6e25f1 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5dc5f875 snd_hda_get_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5fd81925 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x66b2b88b snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x79803ffd snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7e752b2a snd_hda_parse_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7f4c273d snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x857e8391 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x87520565 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8a5597d1 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa4046b03 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb69350e5 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc2f6af2c snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc664b6e1 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xca7f8c5e snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdc2c10e1 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xa7ad3c73 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xaa357a3a cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xaccf3fb3 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xdea08915 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x02deb2d5 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x877a2f62 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xfaba8195 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x4af768d6 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x7a463b28 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x46221cf9 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x47ce69da pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x54954920 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xd482f709 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x1f86ca49 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x2f57cc92 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x75e52a43 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x925e5719 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xfd4fa285 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xc3b6b28a devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x13414b67 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x928adfbc ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x841c693a tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xa31f737b tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x4cf73d2a ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x193affaa wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x1cb73d69 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xa291f89a wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xe89162a8 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x89d8d6f3 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xfa5de2b0 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x8b8ad002 fsl_asrc_get_dma_channel +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xca2ddcd7 fsl_asrc_platform +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x30693bb7 imx_audmux_v1_configure_port +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x58631dab imx_audmux_v2_configure_port +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00f19f49 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x048a955e snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x050bfd86 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0929e145 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09ea0e63 snd_soc_add_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d6c4334 snd_soc_platform_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d744eb8 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0dbe8a7e snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e3838d1 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ede7104 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10ac954e snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1508af4b snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17aee73a snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17e29914 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1dd74bce snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1eeb8311 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21afe181 snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x231823e0 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2620a158 snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x274fba3d snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2781ae3f snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28e6b5a1 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2931659a snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b3efdda snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2dc73e11 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f6a5748 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x30b13689 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x322c18fc snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3512f2f9 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x367804ff snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x37c428de snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b0d51ac snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b4f1bd1 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x425aced7 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43e06d7f snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43e80c99 snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47d5c289 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4815781b snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x493b1a4f snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c192809 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c56c8e3 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ede8baf snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fac8679 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fe42da1 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ffb74a6 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x549a8c43 snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54a077e0 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54c48051 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55667a1c snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x557efaa4 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55cea453 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x584e719c snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58d384e8 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a18a8d6 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ab4c26d snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5cbf84ea snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5eb74a1f snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x620ed7c1 snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6349a40d snd_soc_remove_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x649b3bdb snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x651f0063 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66374c38 snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d7236da snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6dcb6163 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e8c6832 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f04fcbb snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ffb855c snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74f98d61 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75e3ba33 snd_soc_lookup_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x776ccef3 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77bb9164 snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b025f80 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e9f27c2 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7fda611b snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7fe5c9e2 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x80fe79e4 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81f03b2e snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82b5c1d0 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84eddbce snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89ce5769 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ba71e8a snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ba995ba snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8db9375b snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x902d1ddd dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x903fd88a snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90e252f6 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x91014c6e snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9111b74f snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x91513b52 devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d1b6ce4 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa44c1aa3 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4f1f85f snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa580d9b5 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7d8c97e snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa89d8b15 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab3c3971 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac65cc59 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf5bfeb9 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb05b60c7 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb334e55d snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb52f6009 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5c38247 snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb990961f snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb6bcea2 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbbd5caff snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbbe6cbb3 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc01035f snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc09db46 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbcd78b34 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd2dfb1e snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe237576 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbeb81e95 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc01c0256 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf651472 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf97b0f1 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0f0f849 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd21deb42 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd587b5e5 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd59641e5 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd657b922 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd65b5950 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd729e028 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd84fcc8c snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9ed48aa snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc5ed21c snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc81130a snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc82c3a5 snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xddf8440a snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdffec98f snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1440642 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe21c0f01 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3e9039c snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe447b4c8 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe68b75eb snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe99af54f snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeac78e7a dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xebe3ef91 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee030239 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1358b4f snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2c34cda snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf41843ba snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4ba3623 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf76d79ad snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8bf53b1 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9b2b477 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9fc4105 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd8f0eb7 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfdbb668c snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x24829813 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2712a6ad line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2ed06e24 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4a97e274 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x52a2c6fe line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x77454fb0 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x810da0b9 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x83b8a158 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x865d4cc1 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa50e0ddd line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb8494f2f line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xba9ea8f2 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc2a26a86 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xce67a027 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfbef2670 line6_send_sysex_message +EXPORT_SYMBOL_GPL vmlinux 0x00431471 pwm_set_polarity +EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x0086a036 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x009fd2af usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x00a59c78 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x00ad6d0f scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0x00d49c8b posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x00e0b028 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x00f5f182 of_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x0130833b tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x013712af device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x01377827 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x013ff732 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x0161fed3 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x01670813 __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x016a7791 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x016b2818 wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0x01942ddc ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x0195fba9 btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x019ce93f skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x01ae2048 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x01c5235d crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e56906 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x02135698 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x02158fa4 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x021ebfda btree_update +EXPORT_SYMBOL_GPL vmlinux 0x02472086 wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x025671cc ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0260f2dc usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x02772009 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x029894ec sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x02b1053f devres_release +EXPORT_SYMBOL_GPL vmlinux 0x02f15154 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x0302e260 md_run +EXPORT_SYMBOL_GPL vmlinux 0x030935a7 regmap_fields_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x037740ce sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x0390bda4 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03bb4630 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x03bf5226 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x03dea0fe spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x03f606ec nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x04172488 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x0443f4f9 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x0444ddbf ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x044c4255 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x045adb68 kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x04820e08 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0x04b5549c __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04ed0fae arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0x04f13407 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x04f4bd8d percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x0513223b sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x051c8db8 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x052f9835 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x05306bfe for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x053a89ba transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x053e8299 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x05544c1e inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x055dab41 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x05c90eb6 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x05e23d19 mmput +EXPORT_SYMBOL_GPL vmlinux 0x05ead6f3 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x061dee59 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x06236a52 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x06254c77 kvmppc_hv_ops +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x062c0b6b regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x0640b6bc led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x064e273c sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x066915b5 rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0x0670622d rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x068a4a42 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x0695dfc2 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x06a096e8 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x06a72e3a ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x06acad57 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x06d300be class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x06dd420e usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x06f2ef6b rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x07062840 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x070a33cd dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x072f6877 arizona_of_get_type +EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x0767eddf blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x07836ffd dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x079942d1 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07c360c1 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x07d6b304 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x07f300c3 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x082bb7fe dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x0842aa74 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x0843a161 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x084c0666 kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x0864c298 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x089f7b0d rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x08a1085b sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x08ac5bfe led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x08af447e __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0x08b01a54 tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x08caa4d7 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x091c824a machine_power_off +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x0962d0e8 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x098809ac bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x099b537e __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x09aa071d spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x09bb0cea irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0x09bf992c vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x0a14c956 crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0x0a305d6a i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0x0a31cbb0 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x0a46522d mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x0a51ae5b virq_to_hw +EXPORT_SYMBOL_GPL vmlinux 0x0a62f128 bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x0a986e5c crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x0a9a54f6 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x0ab1b5be nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x0ad11963 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x0ae6bd6d generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x0afd4610 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b10648e user_update +EXPORT_SYMBOL_GPL vmlinux 0x0b15c789 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x0b180240 devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x0b1d5ae2 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x0b453cf8 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x0b580b64 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x0b6ca76c of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0x0b97ce47 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x0b984c9d ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x0b98d908 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x0baf081f find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x0beebf65 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x0bf4e8e8 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x0bf642a3 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c666e91 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x0c6c5f56 of_get_nand_ecc_step_size +EXPORT_SYMBOL_GPL vmlinux 0x0c8fab10 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x0caf677e pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0ce865f8 nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x0cf88937 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x0d00f487 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x0d059e64 static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0x0d0ab1ae pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x0d249cd0 tpm2_startup +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d5317d8 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x0d6d1409 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x0d706d2e rh_set_owner +EXPORT_SYMBOL_GPL vmlinux 0x0d73a952 GregorianDay +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0d904145 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x0d974922 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x0da9efa1 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de06988 cpu_first_thread_of_core +EXPORT_SYMBOL_GPL vmlinux 0x0de2bb5c devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0e244724 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x0e2bd917 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x0e3be0c4 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x0e525b41 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x0e532a77 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x0e576be7 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x0e58e6fa ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x0e5ecb88 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x0e8520c3 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x0e900b74 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x0ec96c57 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x0ed91f40 vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0x0f289ac1 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f3a5632 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x0f52418b device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f7abe57 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x0f99ec92 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0fb6e4c9 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x0fc01e9f static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x0fc59ef8 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x10056f9e ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x10271b47 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x1027f2f4 pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0x10647b37 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x106bcfc6 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x106bd796 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0x10bc9650 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x10cf3dcd regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10fc3a44 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x11012c01 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x11080ca3 max_gen_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x110f673e platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x1111c492 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x1114011d threads_shift +EXPORT_SYMBOL_GPL vmlinux 0x11354b9e regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x115d784f i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x1160be07 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x1166e6ac pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x1174f7a0 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x117e229b dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x1198e573 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x11a39827 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x11bb4e7c bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x11bf1650 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x11d4621f devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x11d72f08 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x11de078d crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x11dfda7f unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x11ff0d25 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x121b8bfd udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1243d211 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x1247054d transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x124970c6 mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x12965a6d __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x12ca8e17 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x12e8471f gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x132388d4 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x136a4ee6 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x137a7cd5 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x139a7964 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen +EXPORT_SYMBOL_GPL vmlinux 0x13be8b30 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x13e5ea13 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x13f271a9 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x140adb9e ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x142f240e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x1433330c regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x14513b6d irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x14576009 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x1464fcca usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x147db17a gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x14900b3f do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x14a46706 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x14c25248 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x14d96cdf x509_request_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x14ed96ca cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x14fa925e ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x1501458e tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x150e5b9a blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0x152a9882 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x1535949b nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0x1541ff1c __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x154e005d do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x155151c6 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x155537f5 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x15764705 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x158c00e2 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x1595174d platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x159bd9d8 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x15a17183 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x15b2cce2 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x15c0850d l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x15c21e5e nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x15cedbc3 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x15f6080a crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x16043bda crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x160536d3 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x1609b826 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x1620444e fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x162fda07 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x163f189b ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x165488a4 cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0x1666370a virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x167c6b75 blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0x168839df fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x16a44569 ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0x16acd0dc gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0x16f6ab76 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x170a0397 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x170a5cdc irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x1726c94d ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x17398347 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x17620ba8 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x1769bd6f of_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x17911b70 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x17957afe hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x17d85b7b crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x17e28f5c cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x17e827b7 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x1801f9c1 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x180b0c97 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x18176970 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x182c84bf gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0x182ee76d platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x18303bae perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x18416d17 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x1849a1f3 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x185f0780 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x186e3e66 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x1895ec8a reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x18992fb5 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x189f8710 swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0x18a481e3 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x18b5bf4e blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x18b909f5 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x18c21e89 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x18d4ae06 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x18efb089 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x1902dfa7 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x190bbb86 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x19424883 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x196da5b0 spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0x1971681d vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x19743d3d pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x197b7385 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x19839e0d component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x1988f654 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1990f8ff pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x19965c0a devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x199eb82c wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19abaadd pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x19dfbe17 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x19fbe2a2 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x1a173188 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1a1c4082 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x1a271fa0 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x1a2b5f1d bpf_prog_get +EXPORT_SYMBOL_GPL vmlinux 0x1a3a6bb0 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x1a47af1f power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x1a71779c pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x1a7c4288 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x1a8c5907 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x1aa0889e stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x1ac69d55 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1adeb0ac dax_fault +EXPORT_SYMBOL_GPL vmlinux 0x1aecedf1 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x1af7fcdd usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x1b28ca0a __find_linux_pte_or_hugepte +EXPORT_SYMBOL_GPL vmlinux 0x1b3143aa usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x1b365161 regmap_field_write +EXPORT_SYMBOL_GPL vmlinux 0x1b3a59e1 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x1b518c8e crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x1b65f1de clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x1b7d1e91 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1b9de7a1 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x1ba97c63 shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x1bc310bd fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x1c0ac086 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x1c264758 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x1c3855d3 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x1c388a03 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x1c4fea95 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c589782 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase +EXPORT_SYMBOL_GPL vmlinux 0x1c65bdf6 reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c97aac2 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x1ca3b877 of_scan_bus +EXPORT_SYMBOL_GPL vmlinux 0x1cdd5440 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x1cf82066 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x1d08c269 of_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x1d0feffc edac_subsys +EXPORT_SYMBOL_GPL vmlinux 0x1d12fcc8 blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x1d193903 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d31ce93 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x1d7fcf5e kvm_vcpu_uninit +EXPORT_SYMBOL_GPL vmlinux 0x1da4a08e rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x1daa0127 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x1dab69f5 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x1db0cf01 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x1dfbcf4c mpic_msgr_disable +EXPORT_SYMBOL_GPL vmlinux 0x1e3c575a crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x1e4145ec crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x1e498b15 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e73ce69 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1f1878f6 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x1f1dab81 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x1f3c835b blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1ff9e277 get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0x20191fd0 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x20273ac3 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x205d109d init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x2061b39e powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x2064a6e2 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x206fef44 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x2077be3d relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x20a446e3 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x20b631da device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x20b8deab regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL vmlinux 0x20f7fe58 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x210334e9 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x211a5c76 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x2123900e ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x212d7b1a virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x213a708a kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x213d430d usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x2148b713 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x2148f1a6 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x2155414d pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0x21571a94 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x216077c0 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x218d597d split_page +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21c0948f trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x21c852c6 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21faa1d2 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x221ae977 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x2238fba3 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x22919ed7 kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x22ccccf6 of_get_nand_ecc_mode +EXPORT_SYMBOL_GPL vmlinux 0x22de3842 mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x22e50f73 pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0x22efd9e3 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x23089a88 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x231efa1f of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x233ae603 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x235ec0da __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x2369fc59 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23979adb bus_register +EXPORT_SYMBOL_GPL vmlinux 0x23981055 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x23cfa2a4 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x23d70bf9 cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0x23d7fa4b rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x23d8fabe usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x23e21333 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x23f1934d crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x24240cd9 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x24465993 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2449bb06 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x2454fc17 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x246039f6 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x246692a5 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24ab4bf9 rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24ab6be9 __bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x24cb34b7 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x24d7de7d mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x24e32c25 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24eee3c7 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x250de997 regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x25296e71 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x2599ced2 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x25ab44b1 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x25c97931 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x25d88992 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x25e179d9 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x25ec8669 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x26085a7e pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x2665cf2d tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x266cf938 pwm_disable +EXPORT_SYMBOL_GPL vmlinux 0x2687948d skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x268efd43 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x2691412e boot_cpuid_phys +EXPORT_SYMBOL_GPL vmlinux 0x2693d60f mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x26a75010 rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0x26b2aebc bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26ba942f of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26cb2fb7 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x26e1051e tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x26e9fb50 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL vmlinux 0x273fce0e ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x27413822 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x275117c3 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x27874bb6 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x2787cadb rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x27981f3f gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27c84939 of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x27cceb3f kvmppc_kvm_pv +EXPORT_SYMBOL_GPL vmlinux 0x27ddff88 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x27e012bb clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x281e4497 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x282ba265 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x283ae79b dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x285a5f9d percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0x28d6a9fb ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x2906a8ea i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x290f3039 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x29133765 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x292f235b ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x29303e3f crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0x294ca9e2 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x2960e9b8 kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0x2981c8d6 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x2996f84e thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x299883ff fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x29cfd4f7 component_master_add +EXPORT_SYMBOL_GPL vmlinux 0x29dd5782 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x2a2064f9 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x2a23f405 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2a2cfa47 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x2a47be82 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x2a5b86c7 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x2a618936 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a76b769 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x2a90beb7 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b2a5ff0 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x2b428ced dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x2b5077b4 cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0x2b5c303b smp_send_reschedule +EXPORT_SYMBOL_GPL vmlinux 0x2b7643c7 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2b7a574f md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0x2b887f16 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2bb47cd5 dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x2bcb3d0e security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c353126 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x2c74f68a fsl_spi_cpm_init +EXPORT_SYMBOL_GPL vmlinux 0x2c75e1ed ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c7ef1b4 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x2c7f2baa stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x2c97c085 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2ca676ec bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2ca772bf rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x2ca969ea pcibios_claim_one_bus +EXPORT_SYMBOL_GPL vmlinux 0x2cc8367b of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x2ccc2c71 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x2cd55acf raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2ceb480f pcibios_finish_adding_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x2cf74d70 pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0x2d0fa019 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d2cafef ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2d36c57b rh_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d72480e regmap_fields_force_write +EXPORT_SYMBOL_GPL vmlinux 0x2d7345d7 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x2d8052a4 usb_string +EXPORT_SYMBOL_GPL vmlinux 0x2da4b0b5 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x2dadb8cb devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2dc5a6d1 btree_last +EXPORT_SYMBOL_GPL vmlinux 0x2dd25f87 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x2de681b6 system_verify_data +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e417818 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x2e4cdca6 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x2e4e429b xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x2e848311 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x2e883523 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x2e8f6c15 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2f03d3b6 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f0eac5d blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0x2f12851d vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x2f1796a9 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x2f17af1b perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x2f2c918d dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x2f3e4ed3 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f638c06 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f75e69f devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x2f777ddd ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x2f984296 ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0x2f99b059 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x2fc966f2 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2ffb5ff7 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x301cf1a7 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x3031135e ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x3039f9cb dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x3053ca30 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x306e8078 crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x3071ae7c crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x309f6eb4 pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0x30a197c3 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x30a8235f usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x30ba6cf9 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x30cd9181 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x30d7b1a1 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x30ffbed7 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x31002471 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x31042b3f gov_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x310a5bf0 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x312c517f dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x3131035f sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x314013a3 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x3149af10 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x314f75d9 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x315ca785 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x316033ec usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x3162ae50 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x318f5311 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x321a3391 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x322c5b06 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x3230e4a6 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3242f7f6 fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0x3243b3a2 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x324e49cc tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x3289e5d8 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0x32924a4d scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x329a2105 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x329a7178 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32cfcc21 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x32d89c94 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x33002772 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x33189512 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x331e5c6d ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x333abbfd pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x3356c73d ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x3367b9f0 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x337786fa usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x3393549d rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x33ad41e9 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x33af224a regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x33c7b12a pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0x33e76b1a usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x33f48aa1 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x34006ec9 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x340d5346 trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x3411fb4a spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x3414fff1 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x34331d5e nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0x345e2163 __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x347682ce snmp_fold_field64 +EXPORT_SYMBOL_GPL vmlinux 0x347aef35 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x3496c278 kvmppc_emulate_instruction +EXPORT_SYMBOL_GPL vmlinux 0x34a633de register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34a9828e sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x34ccec25 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x34eabf8c thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x351dfd4c ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x352488b9 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x352d420d crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0x354fc874 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x3551c895 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x3565b1c1 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x35711d4e xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35abaf98 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x35ace722 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x35b824f7 dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x35c1f277 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x35caae5d cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x35d02d2a irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x35f58716 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x35fabcf8 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x35fafb05 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x3631c9f6 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x36584580 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x36767b31 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36a33874 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x36a64e5c percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36fc8aa7 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x371dbd7c gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x3722c566 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x3725db95 pcibios_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x378d5294 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x37c38d06 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x37d2c2c5 rh_dump_blk +EXPORT_SYMBOL_GPL vmlinux 0x37d99390 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x37f15ac6 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x38046544 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x38055278 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x381eca59 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x382328dd device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x38364f79 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x383f2471 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x384a6981 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy +EXPORT_SYMBOL_GPL vmlinux 0x38836c31 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x38967378 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x38b0f258 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x38c07e28 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x38cc9f74 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x38df20bc unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x39112675 pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0x3919c73d ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x392d5c0d fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0x39366aa8 __tracepoint_kvm_ppc_instr +EXPORT_SYMBOL_GPL vmlinux 0x3950ae7b input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x3951a994 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x3987a2b4 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x399aac20 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x39a1ad43 __sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x39c16676 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39db1b2f __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x3a020a58 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a3a7d80 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a56a526 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x3a5e68ec gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x3a65ea25 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x3a678b68 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x3a710881 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x3a712df3 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x3a7c7292 irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0x3a867c57 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x3a92d90e dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ae8f89c pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x3b05307f clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x3b10eb10 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x3bc04f06 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x3bdd0549 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x3bddba0c ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x3c08bbff fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3c123da4 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x3c244520 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3c39134b dev_pm_opp_get_suspend_opp +EXPORT_SYMBOL_GPL vmlinux 0x3c40d4e9 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x3c8f5306 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd26f0e phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x3ce5f5e3 of_get_nand_ecc_strength +EXPORT_SYMBOL_GPL vmlinux 0x3cf85476 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x3cf87dc5 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0x3cfaf699 skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0x3d14286c ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x3d24c1b6 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x3d2798af usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x3d2b5da0 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d4d7ff8 blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x3d4f512c dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x3daccfd7 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x3dc16e1e security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3dd4d3a7 bprintf +EXPORT_SYMBOL_GPL vmlinux 0x3de305fb powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x3de6b8e3 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3e15643d usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x3e18a5fc devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e2fdb08 kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e65cf5d attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e757637 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x3e9682d1 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x3eaa1de9 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x3eb46518 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x3eca8b51 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x3ee71259 blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0x3ef28d44 device_add +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3efb396c debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x3f017493 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x3f1cb321 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0x3f24f93e fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x3f31c33f ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x3f4a12e9 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3f5930aa da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x3f59ebf8 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x3f64ad6c input_class +EXPORT_SYMBOL_GPL vmlinux 0x3f756df7 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3f832d27 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x3f855fd2 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0x3fbae91d ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x3fc0c892 cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x3fc91e31 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x3fd1ea26 pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0x3fdbb8e5 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x40050da8 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x40271b26 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x403af96e mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x40529458 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x407c6f0c pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x40adafcc gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40af4740 call_filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x40b73ecf fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0x40c9985e gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0x40ca3da5 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40eb1bbc thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40fc9dbc pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x412aea1e sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x414edc24 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x415b6f4a aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x41607e1d blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x41657320 pwm_config +EXPORT_SYMBOL_GPL vmlinux 0x417fe1ca wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x41c53cb1 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0x41c95608 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x41e2a68d platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x4207ebae rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x42109c30 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x4212f4a8 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x424840d1 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x4263ded4 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x426b2c92 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x427a066b trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x427adc8c kvmppc_handle_store +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x42981381 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x4298468b ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x42a2d75c blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x42ce5e07 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x42d12a47 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x42e33a9a cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x42e5533a dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x42e7a533 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x4313f6a0 perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0x4318e5e4 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x431c44eb devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x4320d065 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x4326595f ping_close +EXPORT_SYMBOL_GPL vmlinux 0x433cf239 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x43476e6c gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x4347e463 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x434e564b pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x43550d57 wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x4373ed40 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x438e84a1 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x43969dbe rh_alloc_fixed +EXPORT_SYMBOL_GPL vmlinux 0x4397ff84 swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43b466b0 gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL vmlinux 0x43b4e450 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x43baff4b clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0x43c4a44e relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43e15719 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x43f9ec17 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x43fbdec7 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x4407be5e rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x44471e65 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x44703a52 swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x447658b7 shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44a879e0 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44de60ae posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x453dbe6d sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x4560221c sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x4570b92e usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x457bbca1 crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x458071b8 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x458b30e8 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x45a37827 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x45b14972 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x45b536c7 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x45b7cb65 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45ce0079 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x45feee1a raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0x46006960 flush_fp_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46106e2b gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x4633ccda of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x4635bdc9 gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x463e2d62 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x4654018d extcon_register_interest +EXPORT_SYMBOL_GPL vmlinux 0x46661bda trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x468231e1 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x4688c96a usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x469d4227 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x469da347 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x469e9d0b kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x46c83a6b bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x46da3657 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x46e2f156 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x47023673 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x4707e55b kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x471540d8 crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x473e2001 of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x476f5ff3 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x47793358 blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x47805f76 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x4787ade7 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x478895e0 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x4794fadf device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x479f74ef scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47da6c86 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47dfe882 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x47e0d76b rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x47e92e17 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x480a9276 reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0x480fffe3 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x48225e84 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x48270ee6 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x48312cdd __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x4851c0a4 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x4854f48b wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL vmlinux 0x4862bd8c cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x48861a06 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4886b71e of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x48952d4b sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x489fbbe4 mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x48b6a351 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x48cc431a __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x48f25db3 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x48fd7719 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x4908e391 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x490ff388 tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x4938a50a pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x497d6211 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x4986b8fa devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49b34f4e dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x49c65da2 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x49e77960 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49e9b83b thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x49ee4d1e pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x4a1f5cff of_reserved_mem_device_init +EXPORT_SYMBOL_GPL vmlinux 0x4a2666e9 kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0x4a448d05 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x4a455b3a get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x4a46de2a usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name +EXPORT_SYMBOL_GPL vmlinux 0x4a74ba60 of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x4aa888e4 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ac178b0 dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x4ad5335a __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x4af27456 of_pci_msi_chip_remove +EXPORT_SYMBOL_GPL vmlinux 0x4b0ffa53 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x4b23b14c to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x4b78bb3a rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x4b89bb5c clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x4b907e54 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x4b954d34 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x4b98827c rh_init +EXPORT_SYMBOL_GPL vmlinux 0x4b9ff680 ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0x4ba58f19 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x4bf9aaca usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x4c06b6f6 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x4c088f71 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x4c48040f tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c6470e1 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x4c69c405 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x4c6cb664 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4c8a70e3 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x4c9e55e9 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x4ca45896 kvmppc_handle_load +EXPORT_SYMBOL_GPL vmlinux 0x4cb82b8b devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x4cc7eae0 of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x4ccb376b fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x4ccfedac relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x4cd33ccf rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x4cdaa692 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4cf200e5 shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d2dc76a pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x4d2e402c md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x4d45e8c1 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x4d5546c9 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x4d624cec of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x4d6455e7 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x4d7902b6 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x4d7c8004 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x4daee45f set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x4db88524 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x4dbdc762 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x4dc2e2bb regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x4dcb78ed watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4de7fe81 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x4df4dd4b bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e241cfd dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path +EXPORT_SYMBOL_GPL vmlinux 0x4e2c2dd2 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x4e2fcdfd dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x4e335f46 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x4e70b004 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x4ea040c7 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x4eaa3318 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x4eb7e418 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x4ebe035a led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x4ec8354d crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x4ed9331e class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ed9e99b mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x4edb4be4 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x4ee902c8 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x4eedd4e0 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4f146011 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x4f1615f4 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x4f183fb9 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f45238a irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x4f4bf92c net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4f5c49ad metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4fa00d3f swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x4fb4dbb4 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fe50dc1 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x4ff25415 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x500a05ee bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x500fb8d0 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x5037b15f phy_init +EXPORT_SYMBOL_GPL vmlinux 0x503b62d5 ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x503dd23e cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x504b4fa7 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x505786c5 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x506dd6ee tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x507596d8 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x50791005 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50938a2d tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x50998378 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x50c82b44 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x50dbe5f1 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x50df5476 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x510ed41a crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0x5113cc2e cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x51278df5 kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0x5142db14 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x51467922 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x514f2831 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x516961fd kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0x51719489 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x51966b51 __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x519b8653 of_dma_get_range +EXPORT_SYMBOL_GPL vmlinux 0x51b65a26 rtc_lock +EXPORT_SYMBOL_GPL vmlinux 0x51ccfc22 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x51ce43c8 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x51deea62 crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL vmlinux 0x522b607b scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x522fe15c pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x5248eb79 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x525bd9c7 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x525e42db usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x526e7071 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x527c5049 fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0x52924f20 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x52a3e412 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x52a5cf97 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x52a85e92 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x52e270e0 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x52ec3bf4 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x5303c04b fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x530d29de device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x53337caa usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x5335dd11 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x536a4065 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x536d2489 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x536f90eb tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0x5382ba46 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x539add6f rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x53b6ed0f devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x53c4c7c0 regmap_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0x53fc5668 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x5406c04e devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x540b5fa6 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x54181b34 crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x54296231 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x54571f7b tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x546c5565 ppc_tb_freq +EXPORT_SYMBOL_GPL vmlinux 0x546f2b22 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x5471cf9b srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x547f3ea9 __sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x548e00ad __class_create +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54a5ec00 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x54b1ead9 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x54d468f1 pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x54d8ac27 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x54db2f6e blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x54eb4e82 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x54fc2626 use_mm +EXPORT_SYMBOL_GPL vmlinux 0x5510c15b rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x5511bc0d phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x55125bc4 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x551cf728 _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5546fc27 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x554ea08b blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x5552c005 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x555c9f8d clk_debugfs_add_file +EXPORT_SYMBOL_GPL vmlinux 0x55622489 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x556b4373 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x556fe8b7 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x5575a997 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x558e2bb7 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x559988f1 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x559c6e44 bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0x55a9aaf6 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x55d0a1b6 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f0c2af device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x55f51ef3 alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x56056a36 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x560899bc debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x56099fb6 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x564a7a3a __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x567529b9 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x5680b4ff ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0x569a0d2f ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x56ae47fc tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56d81ad8 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x56de4ce6 percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0x56de71d7 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56eb07c9 sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0x56eea921 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x5718b413 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x5759c1c5 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x575e2818 wm8400_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x576f75df dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57bd5e92 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x5805451b debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x5807edbe __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x581a3ebc pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x584030a9 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x58459d12 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x58538b65 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x5892f832 release_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58a0836c percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x58a44320 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x58a89430 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x58dffa69 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x58ea42d5 irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0x58f27514 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x5904ae58 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x5938cede devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x593b0a50 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x594996ef kvm_get_dirty_log +EXPORT_SYMBOL_GPL vmlinux 0x594ce360 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x594e951b da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x596eeded rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x59902da9 of_device_get_modalias +EXPORT_SYMBOL_GPL vmlinux 0x59b574e0 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x59d3fc95 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5a159919 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x5a5ad44f pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x5a65c37b devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x5a71f862 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a82619b fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x5a940f3a __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x5aa003f9 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x5aae86e2 rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5ac77c3f kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x5ac8f94d kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x5b30ae2c rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x5b58a6ac __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x5b5f5245 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0x5b7d058c fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x5b8ad633 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bed0bc5 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x5bf30ec3 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x5bf8dbe9 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x5c10daba wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5c17cca4 mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c617f04 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x5c67dc4e adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x5c8103ab udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5c81b59f pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x5c854c6b virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x5c8e4cf5 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x5ca49328 virtqueue_get_avail +EXPORT_SYMBOL_GPL vmlinux 0x5ca4d8a3 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cc12829 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5cebf572 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x5d08d3f9 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d25a708 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x5d2df6ba ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x5d4c6ed8 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5d5be7c6 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x5d863e50 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x5d9425cb __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x5da26793 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x5da3121d sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dd3c0ad gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x5dd98c0c crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x5ddbe65e blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0x5df21f8d crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5df71cd4 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x5e0b8b97 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5e11c4ab nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x5e44225d inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5e4bb456 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5edbbe74 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x5ee6ee92 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x5efed88a tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x5f01e25d init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x5f5b2c2c device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x5f5eded9 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x5f88aa97 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x5f9debab regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x5fc8cec5 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x5fe2aff5 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x5feecf63 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x60076255 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x6035b78e fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x603d078d dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x603fede6 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x60662bd7 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x60927ee7 tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a275fe bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60a38940 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0x61086eb1 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x613b44e5 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x61502e46 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x6150f2a5 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x615632a0 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x618c8fd6 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x6197edd0 pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0x61a4c9b4 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x61a90c54 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x61bbaf4f kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0x61c62e6e driver_find +EXPORT_SYMBOL_GPL vmlinux 0x61c7ff35 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x61d078fb smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x61d0e585 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x61dea6b5 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x61eebd4e fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x62086848 devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x62104fd0 dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x623f32ff of_get_nand_bus_width +EXPORT_SYMBOL_GPL vmlinux 0x6263f0f4 bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x626a6fa2 ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x62827c2f key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x629d04cd usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x62b8df27 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x62d59c9e trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x631ed28e subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x632accb4 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x632b16be regulator_can_change_voltage +EXPORT_SYMBOL_GPL vmlinux 0x632ef701 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x63304e8b virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x6359b1c9 rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0x635c2e43 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x6362a239 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6382df9e __nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x638ea54d relay_open +EXPORT_SYMBOL_GPL vmlinux 0x638f739b usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x63cca1cf md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x64052fe2 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x640b07eb usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x640da889 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6412af09 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x6416d7d2 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x641e9b73 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0x6428da4f rh_attach_region +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x644902aa driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x6451b45e ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x64559654 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x645adbec inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x645d9448 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x6469ad71 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x64717e49 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x6476c24f ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x6486fe2e blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x649ee2d8 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x64a70cfc io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x64aee960 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x64e24a5e memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x64f53299 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x6502765b tpm2_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x65044317 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x650f0161 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x65181427 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x651a2900 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x652ee3de ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x652f10ea pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x6566d770 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x65690cde __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x6590d3c9 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x65946489 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0x65b46d9d usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65d7bba4 of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x65e8d1a5 mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x65fc2974 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x66574cad devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x66601bc5 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x667d393e hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x669da1fd kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0x66afb53b unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66d9d6d8 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x66e73c93 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x6749405d ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy +EXPORT_SYMBOL_GPL vmlinux 0x67503b04 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6771cb12 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67a4ae23 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x67c615d1 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x67cc05a4 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x682e6bb0 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x6832083e input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x68340017 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x684794c6 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x68493cdb serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x685d43e1 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x686e64db virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x687b3226 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x68821297 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x6894d184 blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0x68956406 static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x68db51bf platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x68facb10 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x691bab0d pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x6937ff42 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x69433c6b nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0x694e4679 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x6979d974 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x697cbbb4 threads_per_core +EXPORT_SYMBOL_GPL vmlinux 0x69860fd1 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x69ab121d __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x69cc7a5b mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x69d182bb arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0x69ee2e06 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x6a05a04f usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x6a33d31b rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x6a3b1520 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x6a3f7db4 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a68a010 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a85843a of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x6ab3781f trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x6aef7e15 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x6af3429c of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x6af78170 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x6b1d09f4 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b2df735 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x6b3073ad usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x6b36d341 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x6b48a910 switch_booke_debug_regs +EXPORT_SYMBOL_GPL vmlinux 0x6b4c6b36 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x6b53123c pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b9240f7 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x6b9f4eb2 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x6ba45308 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x6babf2bf fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x6be822ef vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x6bf04ad9 blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c0a9f67 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x6c209eab __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0x6c2d5470 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c67cbee sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x6c6c2c7d proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x6c7932c6 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0x6cb271e5 pcibios_free_controller_deferred +EXPORT_SYMBOL_GPL vmlinux 0x6cca0286 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6cd76aad led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d309a54 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x6d43f2d2 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x6d4afa5c rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x6d5fa811 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x6d74237c __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x6d878845 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x6dac0acb hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x6dc9553c kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x6de20b5b regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e51afc8 percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x6e5311e3 of_fixed_factor_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0x6e6bc173 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6ea5b056 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x6eb09a46 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0x6ed918e9 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x6eed1f7b crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x6ef8c577 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x6f13f8bd bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f29eb02 __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x6f685671 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x6f6d83ca mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x6f8ba03e skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x6f8dab0a unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x6f94b3c0 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x6fa4c24c thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0x6fb72258 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ff76cd1 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0x70344986 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x70406cb7 gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x7044adda ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x7045dc1a sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x705ac0cd clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x70772331 mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x70858f25 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x7089d408 tps65912_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x70a032c2 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x70ae3eff of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0x70b5a87a disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70c7e27b mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x70cc96c4 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70fbd39d input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x711d62cd smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x7120eabb inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x712751e3 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x7128f9cb usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x712dde0c gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x7166ab60 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x717188cc nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x7177ae19 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x71989280 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71a770d8 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x71c7940a ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71e088f1 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x71ea83cf platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x71f4246d dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x71fed21f shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0x720ff1d1 dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0x72149622 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x7215a821 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x721b2c42 kvm_vcpu_init +EXPORT_SYMBOL_GPL vmlinux 0x721e5c6a fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x72204678 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x7223042a ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x7228a96a crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x722db225 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x72369c0a fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x723e6fee firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x72515d5a snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x7263be5b class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x7265a8a5 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x7272b9fd __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x72b4e852 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x72c7da98 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x72e9686a ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x7319e51f io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x73230542 rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x7330e14b sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x7330f351 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x73549a5e uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x737d013c free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x73a3c074 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73b4eb61 device_register +EXPORT_SYMBOL_GPL vmlinux 0x73b77274 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73dbabdc kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x73e640a8 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x73f22f99 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x740563ee ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x7434873c clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x744811af clk_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x74523236 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x745e9605 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7468b74e __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x746e7604 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x74858423 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74d007c2 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x74d3afc3 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x74de8b11 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x74f9a185 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x74f9be86 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x75329035 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x75465c76 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x75629804 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x7576fb5c nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x757a86c5 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x758dece6 blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x75969459 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x75a1a3ed debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x75c2b9f1 memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0x75c6065c __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x75c9d8c3 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75ce0d7c of_fixed_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0x75d979e7 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x75d9ff39 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x75eaf137 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x75f2a044 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x75fb045a of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x761ed6ec hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x762c0858 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x763247c1 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x763b6f41 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x764a301e pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0x764cea49 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x768a6e7e xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x76a52d18 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x76aa879d ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x76b13828 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x76cac824 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76ed09a4 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x76fe74d3 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x77062a7a gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x770ce718 __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0x770cf981 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x77221f7c sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x7730474a phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x77361599 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x775a6e1e regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x7780c2fa kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x77849177 wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0x778d70b3 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x77a38860 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x77a42f4b uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77b0675b task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x77c4a3ff irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x77d00656 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x77d73615 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x7811d6e7 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x78151326 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x7820c45c ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x785cf1c3 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x788615a6 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x789d410b ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78c5e058 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x78fe2616 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x792eb63e param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x796e0a7b device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x796e76c4 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x7992f4f5 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x79a6cbab get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x79a7c58e fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x79b12645 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x79b94488 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x79c480da rh_dump +EXPORT_SYMBOL_GPL vmlinux 0x79cd2243 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x79cfb499 digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x79d13779 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x79dc2b5b devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79fbc74b iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x7a29e5f0 trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a376494 kvm_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x7a486133 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x7a6dbef3 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x7a7806bc bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x7a8235e5 of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x7a856265 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x7a8ce663 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7aa64803 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x7ab652b1 dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0x7ac2636b rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x7ac485a8 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x7ac99aa8 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b60f9f5 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x7b7a63e4 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7b7e4b3b aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x7b843038 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x7bada63b aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x7bc7fdd7 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x7bd5875d unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x7bd6e779 kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x7bffedd9 of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x7c549b8b kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x7c7c81f2 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x7c962770 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cf19c71 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x7cfaf403 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d26d659 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d5f9ee4 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x7d73bf7c cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x7d8dad91 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x7d93c1d8 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7db01b24 usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0x7dbe80ce subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x7dc1e388 alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x7dd12fac register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x7dd3d17a regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x7dd97cfe of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7dff171c rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0x7e04c907 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x7e17ba7b klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x7e469950 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x7e49d6b7 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e782b62 crypto_lookup_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7ebd4eb0 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x7ec98ce5 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7edebeff hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x7ef854c5 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x7f008202 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature +EXPORT_SYMBOL_GPL vmlinux 0x7f286a84 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x7f2c1657 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x7f4e70f3 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x7f6d0198 devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x7f7bc710 klist_next +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fe052e6 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0x7ff60f4f crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8001526f ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x80064f4a dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x80115bad crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x80281e2c phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x803bc2ca rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x80761247 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x80787912 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80a37dbe udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x80b3e566 system_trusted_keyring +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80e1c549 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x80e5792d regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x80ee3e6b vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x812891dc exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x8128aba7 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x816a55b6 sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x81749701 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x81abe698 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x81c3aaee sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x81d5156a rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x81e70a82 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x81eb8d8c regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x81edc2cd kvmppc_emulate_mmio +EXPORT_SYMBOL_GPL vmlinux 0x82028b95 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x820cdf3f invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x821ebcf7 fsl_spi_cpm_bufs_complete +EXPORT_SYMBOL_GPL vmlinux 0x822ad4c7 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x82330cd5 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x8257cc22 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x82869163 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x82a365e9 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x82ab1bad get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x82c52bea tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x82c920f2 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82d89dce cpu_add_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0x82f2eb3f of_overlay_create +EXPORT_SYMBOL_GPL vmlinux 0x8327dd59 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x8337b9b5 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x8347949d netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x83555774 wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x835b2ac5 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x83661ced extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x836d61d0 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x836de55d isa_bridge_pcidev +EXPORT_SYMBOL_GPL vmlinux 0x837fe4d8 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x838faccd phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x83a05b3e trace_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x83a18ac7 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x83a2f2ff device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x83c19c1f regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x83cc2813 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x83e53062 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x83ea1f53 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x83eabaa4 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x841da239 unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x84377cf9 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x8452961f __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x845caa43 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x845fe240 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x8464205e phy_put +EXPORT_SYMBOL_GPL vmlinux 0x84843f40 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x8490116d regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x853ecf72 blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0x85657d4b eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x857146fd thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x857967a3 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x85798f61 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x858737ec fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x8587852d rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x858b5471 clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x858e87f5 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x8591791f page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x85a7894c pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x85c5bead devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85ce9c98 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x85d58ed7 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x860bba10 security_kernel_fw_from_file +EXPORT_SYMBOL_GPL vmlinux 0x8610154d unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x8636e91c of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x863726ef subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x863864de trace_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0x86432dad tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x86465335 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x86489884 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x864bd332 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x8652110e pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x86613fda blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x86656b8f dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x866a841b sock_update_netprioidx +EXPORT_SYMBOL_GPL vmlinux 0x86738fb4 cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x867d5ebf mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x8684362c sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x8691147e xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x86c342b3 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x86c57129 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x86cdfe76 fsl_spi_cpm_reinit_txrx +EXPORT_SYMBOL_GPL vmlinux 0x86d1898e map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x86d6de91 mpic_subsys +EXPORT_SYMBOL_GPL vmlinux 0x86e175fa spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0x86e342e2 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x86fdc402 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x870b385e __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x871d02ee rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x87447e1e trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0x8749930d xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x87671f37 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x878e44a3 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x87be3a8e regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x87d3835d irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x87ed50ca unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x8804af3d usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x8843ae97 arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x8854130a of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x887dca3a mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x88824f09 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88abb487 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88bb1eac handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x88bca795 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x88fc345c __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x891e785e scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x89458528 single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x89490f0f cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x896f0a81 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x897ac439 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x89a927ac serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x89b37637 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89cc1c8a crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x89e22d3b __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x8a023da8 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8a2508d4 thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod +EXPORT_SYMBOL_GPL vmlinux 0x8a5f86ce fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x8aa59750 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x8aad05b3 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8abadcdd kvmppc_sanity_check +EXPORT_SYMBOL_GPL vmlinux 0x8abea573 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x8aded8de device_remove_property_set +EXPORT_SYMBOL_GPL vmlinux 0x8b0ead42 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b46e270 flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x8b548840 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x8b6791b9 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x8b70e8ea __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x8b710c9b spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x8b97896a msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x8bb7a8e6 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x8bf45080 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8bf4d4b7 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c1f4bd2 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x8c42bd6a tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8cc90b6e regmap_update_bits_check_async +EXPORT_SYMBOL_GPL vmlinux 0x8ccc645c user_describe +EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params +EXPORT_SYMBOL_GPL vmlinux 0x8ce547d8 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x8cf037f2 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x8cf45e51 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x8d1a9adf spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x8d3e183a wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8d3f7acf cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x8d4d23be vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x8d4f1d55 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x8d6d459b pwm_enable +EXPORT_SYMBOL_GPL vmlinux 0x8d6f42f9 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x8d7172fc blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x8d80b9d9 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x8d8261e4 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d9c0742 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x8da01274 kvm_get_pfn +EXPORT_SYMBOL_GPL vmlinux 0x8dab4462 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x8ddd6452 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x8dec856b ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x8dfd5821 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x8e0f7558 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x8e1034f0 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x8e13ed25 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x8e1674b8 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x8e191bc4 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x8e1cd06f kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL vmlinux 0x8e257573 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x8e26ac49 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x8e2b25c2 videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e337909 bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x8e36b48a of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x8e4e6955 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x8ea15d14 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x8ecdfb32 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x8ee84aa8 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f17d350 of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0x8f4bc27d powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f77cdbe usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x8f7ae31d fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x8f7ce655 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x8f7cf125 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x8f8972bd __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0x8f9658ae tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x8f9a3304 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x8fa08737 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x8fa19d9b wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x8fbc00ec __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x8fced602 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x8ff1cb72 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x8ffa8f8c ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x901fbf66 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x9022d5bc memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x9025cbe7 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x90666f3d pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x9077d5ea usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90a14876 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x90b8875c __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0x90ba5109 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x90e0c466 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x90f6d3c4 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x911d4d03 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x91363574 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x913bd4ab virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x913d95d5 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9147d4dd pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x915ab143 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x9160091b ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x9190aee0 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x91abfb31 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x91b33c12 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x91bbb295 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91cef70d gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x91ffbefb early_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x92259a55 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x923372d5 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x92702c25 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x92866852 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x92af3ad7 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x92bb2e45 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92f6e4b6 __ktime_divns +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x93263ce2 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x933db6e2 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x9340e417 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x93467bcd attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9349ce64 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x93668aba pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x938177ce user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x93a2cb47 reserve_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x93bf2fcd __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x93d79bd2 of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x93fe613d power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x94012a0a driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x9401c176 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x940df19b usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x94144234 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x941d315f irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x942ef75b pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x942fe9c4 wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0x9432b036 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x943a14d8 __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x949bf396 queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0x94ce66f4 dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x952faf63 fsl_spi_cpm_bufs +EXPORT_SYMBOL_GPL vmlinux 0x953d59a2 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x953fd479 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x95523d7f fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x956c6d15 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x958dbfdb key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x95a577f4 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x95a57a75 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95ec5d8c driver_register +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x962517b1 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x96275598 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x962adadd kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x962bba53 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x962e4b13 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x9633c45b devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x964db2f0 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9655b911 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x965cecac rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x9660da55 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x96645b10 platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x96b67432 pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x97084c3e tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x9739f49f adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x973b8917 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x974f11f9 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x975d7245 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x9767d300 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x9773a091 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x977542b2 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x97799c61 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x977b0659 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x97856454 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x978ffa8a regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x97a0a69f pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x97d697af nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x97dc3075 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x982cd486 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x9835aa9f ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x983c7494 rh_detach_region +EXPORT_SYMBOL_GPL vmlinux 0x9840437c sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x9847df1d tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x989eb047 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98faf97e crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on +EXPORT_SYMBOL_GPL vmlinux 0x9909f759 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x992dc7ca usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x993e7a67 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x99731420 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x997fd8cd usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x998652ed ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0x9986904e task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x998d7958 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x998d8d61 ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99ce0592 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x99cf5ce2 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x99d19fa4 kvm_init +EXPORT_SYMBOL_GPL vmlinux 0x99dba068 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x99e3f9cb of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x99e5a21a root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a1c1d16 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x9a1c9851 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x9a49d937 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x9a663b6c fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9aad6540 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x9ac58acc device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x9ad16f3b rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9afb0df5 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x9b122fe7 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9b23535c dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x9b2a62c6 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x9b511ffa wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x9b572a99 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x9b7c1c13 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x9bdfabed serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x9be233d5 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bf2df14 save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0x9c0574a6 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x9c0c7477 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0x9c162149 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x9c1e6b74 kvm_vcpu_block +EXPORT_SYMBOL_GPL vmlinux 0x9c23bba6 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x9c8b5a09 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x9c8b9bab ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x9ca806cf register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x9cb1667d regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cce761e __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9cd7f705 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x9cd8b6d9 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x9d0c93be regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x9d0ee2f8 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x9d1be01b rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x9d265351 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x9d4e02d4 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x9d722926 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x9d73e4b7 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x9d7607f5 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x9d845427 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x9d9acb03 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported +EXPORT_SYMBOL_GPL vmlinux 0x9dbe9c96 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x9de51041 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x9df5f1d5 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e8cd3ba pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x9eaef33a __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9f07cbde fsl_rio_mcheck_exception +EXPORT_SYMBOL_GPL vmlinux 0x9f2f4db1 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x9f351245 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x9f3c1760 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x9f3ffcb2 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x9f6f3f73 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9f96aa09 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x9f9eff6a usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x9f9fed55 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x9fac90ea of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0xa00864c4 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xa01dc3f9 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xa0208e02 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xa02360b7 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xa02786a7 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xa0456812 devres_find +EXPORT_SYMBOL_GPL vmlinux 0xa064fb7e __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xa06c3e64 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xa071e996 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xa07246f0 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xa0a27fff pci_address_to_pio +EXPORT_SYMBOL_GPL vmlinux 0xa0b4d300 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0xa0e85e2e pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xa0e9838e rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xa0f5fdd4 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xa0f96ac0 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0xa10b1174 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xa10cf111 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa111ca3b thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xa11a9e05 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xa127fa53 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa13cc977 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xa13d495f devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xa16a033a dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xa175605e raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa19989ec event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0xa1bb1134 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xa2300d65 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0xa2364ded regmap_field_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xa24dd48f xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xa259fdc9 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa287d979 bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0xa2880efc pcibios_free_controller +EXPORT_SYMBOL_GPL vmlinux 0xa28aaf29 rh_create +EXPORT_SYMBOL_GPL vmlinux 0xa29c1990 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2dbaec1 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0xa2e6c1e1 __module_address +EXPORT_SYMBOL_GPL vmlinux 0xa2e8a56a adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xa30f9505 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xa32fc4fd perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xa3425bd0 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xa346820e usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0xa35bc064 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xa36baf0d gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xa36ebf8a tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa38a0a84 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a2d9af walk_system_ram_range +EXPORT_SYMBOL_GPL vmlinux 0xa3b25246 regmap_write_bits +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3c00a72 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0xa3c8e87e device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xa3cc6d9f perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xa3deb765 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xa3e600d8 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa415f6dd usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xa416763b of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0xa4170362 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0xa41fd1e4 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xa438418a usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xa45b094c gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xa463e885 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xa46e8346 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa49264e7 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xa492dc5d rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xa4a3c3aa __put_net +EXPORT_SYMBOL_GPL vmlinux 0xa4b058d7 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa4c2a3ec crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xa4d1dbb1 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xa50e00e1 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xa50f6fa1 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa52b1fb6 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xa547543e anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xa54cb5ad __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0xa54e6e71 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0xa551887e serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0xa5833897 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xa59d83c3 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xa5b00659 ppc_proc_freq +EXPORT_SYMBOL_GPL vmlinux 0xa5ca40a7 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xa5cbee21 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5efe460 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xa615a361 ping_err +EXPORT_SYMBOL_GPL vmlinux 0xa615e531 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xa617f46d sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa63ce2c0 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xa64c1b24 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xa684e074 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6d42c31 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xa6dd08c9 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa7037774 gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0xa726c46f blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xa7299333 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xa7333179 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xa73b97c4 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xa73c3733 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0xa74e220b tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xa763ba0e sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xa77c45ed pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0xa79d09e8 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xa7a2dd95 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0xa7bd7f23 component_master_add_child +EXPORT_SYMBOL_GPL vmlinux 0xa7c03c35 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0xa7d5302f ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0xa7d9457f blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xa817957e policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa86ec636 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xa8a0e504 usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xa8a8e6c8 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa8adea51 rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8dd6c14 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0xa8f5e24f dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0xa8f68b3d rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xa8f9d68d kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0xa90c4e73 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xa91603b1 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xa92388c5 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa957a11e scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xa973a7a2 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0xa9928dd4 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0xa9a92c94 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0xa9aef2e1 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL vmlinux 0xa9afca57 spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa9bcd78e bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0xa9d32b23 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9e95321 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xa9f26a5e device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xaa095804 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xaa17a2e2 rh_alloc_align +EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0xaa6f4ba9 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xaa80c554 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaadc0a7a kvmppc_prepare_to_enter +EXPORT_SYMBOL_GPL vmlinux 0xaafe8ad1 pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xab2f123a kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xab3f8b07 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xab593659 __netlink_alloc_skb +EXPORT_SYMBOL_GPL vmlinux 0xab59d373 kvmppc_free_lpid +EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del +EXPORT_SYMBOL_GPL vmlinux 0xab5f28fd mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab84216d scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xab945a16 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xabaa69fe _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0xabadc92d dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabd3d40c list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xabf48df9 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xac1e20c7 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xac1eb506 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0xac20c629 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xac2fd46f led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xac6b03e5 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xac6edc94 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xac994875 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xacaf38cd ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xacb5da82 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xacb96b35 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xacce904c vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0xace10793 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xace8d918 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0xacf0f18d arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0xacf8ded5 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xacfb36b1 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xad1485f0 fsl_spi_cpm_free +EXPORT_SYMBOL_GPL vmlinux 0xad532f51 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xad64cca0 device_del +EXPORT_SYMBOL_GPL vmlinux 0xad6eb19b cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xad73b1b0 of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xad8e3693 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0xada37a8f __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xadd53aa5 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xadf6cc1a crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xae20c8a4 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae81922b of_overlay_destroy_all +EXPORT_SYMBOL_GPL vmlinux 0xaea2fda5 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xaebbb7d4 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xaec93c0c rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xaed6886a led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xaedb51ae uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xaef545b9 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xaf5d6862 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xaf67ee0f regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xafa69aed wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0xafaba70a trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xafabea38 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xafbe0359 arizona_of_get_named_gpio +EXPORT_SYMBOL_GPL vmlinux 0xafd76f72 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xafdc93e3 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0xafec59e4 pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0xb0059238 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xb0060154 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0xb0209286 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xb048073d ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0xb056052b request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0xb060b3aa crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xb060e9fb power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb07bfc15 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb07c7f7a of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xb090cb0c pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0xb0913148 btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0xb09a4ef1 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xb09eea31 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xb0b1b328 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0xb0b61dfc bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0ec4aa9 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xb1080e22 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb17ed4f5 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb18a17d2 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xb18ca123 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xb18d1633 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xb18d2a6d dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0xb1943652 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb1a3ce96 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xb1a64079 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1baecf0 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xb1bc9807 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xb1c1b6e6 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xb1c6d4c2 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb21ff02e gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb2256567 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xb244f77f regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb2999682 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xb2a25363 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0xb2c42e0f dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xb2c72857 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0xb2f87ffd gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xb2f9c95a generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0xb3097ab1 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xb31cb48d scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xb353cb6d da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xb363da09 put_pid +EXPORT_SYMBOL_GPL vmlinux 0xb3a46133 securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0xb3b0022b devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0xb3b34e17 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xb3b87ce9 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb3ca26a2 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb3cf00ec kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0xb408f245 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xb409755d extcon_get_cable_state +EXPORT_SYMBOL_GPL vmlinux 0xb40d8d8f __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xb41cfd12 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0xb41e942f virtqueue_get_used +EXPORT_SYMBOL_GPL vmlinux 0xb424be0a file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0xb426ea28 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xb4380a26 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xb43d1086 ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0xb453f11e gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0xb45692d7 scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0xb45ba050 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xb470aa91 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xb4822bfd fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb4832f56 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb488588e tb_to_ns +EXPORT_SYMBOL_GPL vmlinux 0xb4a3b715 flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xb4a55091 i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0xb4ad8f28 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4e4f1ef da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4f637e7 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xb4fed9b2 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xb50b4018 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0xb51db05d pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb52c17e2 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb54d40db cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xb562dece inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0xb5747bad security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xb5841645 single_release_net +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb599445a ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xb59cf324 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5aa10af atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb5c8edf4 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0xb5d7f2d8 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xb5e4ac7b devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xb5e896fb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xb5e9aa3b regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0xb5ee4bd8 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xb5f00222 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb60b5707 of_i8042_aux_irq +EXPORT_SYMBOL_GPL vmlinux 0xb6249dec bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb63fa319 of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xb657e9ed usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xb682082a dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xb682975a find_module +EXPORT_SYMBOL_GPL vmlinux 0xb691037f trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0xb6a1478c add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6eaceb1 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0xb6f01164 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb7010425 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xb711d130 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xb716c763 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xb7263953 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb7351227 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0xb73d0e92 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xb74ffd18 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xb74ffd91 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xb769547b wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xb786e77d percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb7877374 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xb79fb656 register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xb7c80ceb sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0xb7ced82f ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xb7dc4835 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xb7dd8e58 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xb7ecd470 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xb7f58e1a tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb809b9ee md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xb80f02e5 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xb82beb7b tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xb83d3777 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xb83e2235 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0xb871c107 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xb883206b hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb8b7d4a1 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xb8bdb30b crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xb8c33dc8 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0xb8ca3858 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8e4e81c serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xb8ec24b0 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xb9007143 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0xb9014d95 extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0xb91d92b7 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0xb92361d4 of_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xb92427b4 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xb9339fbf __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xb9431a00 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0xb9599d56 rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0xb963d6f4 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xb96b3bc6 of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0xb96d81c3 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xb99c4e0a nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xb9ae7475 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0xb9b40afd of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9dea956 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xb9f3af3a blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xb9f7d92d blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xba0cd21f crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xba0fac0e tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xba150b47 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0xba2a2270 of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba341ab6 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xba4fd098 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0xba8081a9 rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xba8929ea percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbacaf340 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0xbad2be0c unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xbadf8dbf key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0xbafb8c86 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb152bee clk_register +EXPORT_SYMBOL_GPL vmlinux 0xbb27bd01 of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0xbb68910f __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xbb735189 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0xbb7cf9cb jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xbba9c353 tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xbbb66daf tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0xbbcc17e1 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xbbef74bf devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0xbc1229c0 device_move +EXPORT_SYMBOL_GPL vmlinux 0xbc18dad6 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbc2cb5f7 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbc337827 crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xbc53cf5f ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc9dc4cd blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcb265ea mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0xbcc3968e tpm2_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xbce21d7c reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbd0b665c ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xbd15c90f debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xbd19d439 cpufreq_governor_dbs +EXPORT_SYMBOL_GPL vmlinux 0xbd1fde92 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd4daf95 get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd5d7ed2 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0xbd5f9e75 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0xbd60dcf0 pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xbd78ff65 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xbd8498ea regmap_fields_write +EXPORT_SYMBOL_GPL vmlinux 0xbd96f3a2 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0xbd9997cb ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xbdbda716 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbde1af16 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xbde8dc00 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0xbe099dc1 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe25273b of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe762934 kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe9b3d00 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xbea4d3bb __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbea8fd53 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xbeb6426f cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xbec44edb ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xbec662bc __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0xbed9b475 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xbeefef50 clk_gpio_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xbeff4023 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf1cc04b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xbf36631b srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0xbf482d60 user_read +EXPORT_SYMBOL_GPL vmlinux 0xbf6bb5b1 of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xbfbba388 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 +EXPORT_SYMBOL_GPL vmlinux 0xc004898e rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc00f5748 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0xc01b039f securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xc02bec3c usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xc037ccc4 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0xc050645b nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xc061367e mpic_msgr_get +EXPORT_SYMBOL_GPL vmlinux 0xc065a455 cpu_core_index_of_thread +EXPORT_SYMBOL_GPL vmlinux 0xc07256ac usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc08d8959 clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0bb4307 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0d948ab mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0xc0d948f5 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0xc0e75cec visitor128 +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0fb6946 of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0xc108e84a dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0xc10a5c95 skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc10c64ee dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xc15511c3 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xc174a374 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc18578ed process_srcu +EXPORT_SYMBOL_GPL vmlinux 0xc1d57170 wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0xc1da4936 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0xc1dd3787 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc1de3fa2 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xc1ec9936 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0xc1ef6f08 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0xc20b629b ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc2409ba0 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xc24cc02d ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0xc24ea38e pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xc25c2bfa blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc26baa84 i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0xc26d496c alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xc2725986 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc282ec82 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xc284c656 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xc28abb67 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xc29da806 nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xc2c1b960 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xc2c25342 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xc2dd5f38 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xc2e62f7f inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xc2e728dc ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xc30ad0d2 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xc30ae58a usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0xc32bc403 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xc3352d2b __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xc33c5c94 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0xc33eedac usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc36c1fa9 tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc377d199 i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0xc37dfa21 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xc3966f4e dev_pm_opp_get_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc39f4665 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0xc3b21502 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xc3c7744f fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xc3d73a38 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0xc3f2e79b md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xc3f582dd devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xc4146ea4 napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc435a062 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0xc450d341 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc4569249 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xc4614b35 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc48aa3cb user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc495bb50 pcibios_scan_phb +EXPORT_SYMBOL_GPL vmlinux 0xc499ccf9 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0xc4a20df5 of_display_timings_exist +EXPORT_SYMBOL_GPL vmlinux 0xc4afec88 blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0xc4b4e49a posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc4e02715 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xc4eb4e95 elv_register +EXPORT_SYMBOL_GPL vmlinux 0xc5014b3b __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0xc519ae43 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0xc5246705 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0xc525d5e7 max_gen_clk_probe +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc56229fd page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc571810c rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc57693e6 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0xc58a1687 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xc5a2c19f idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc5be5715 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xc5e0d6e5 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xc6016c72 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0xc606cd3c boot_cpuid +EXPORT_SYMBOL_GPL vmlinux 0xc612de47 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xc6137ed9 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc620676f blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xc623f546 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0xc627431a alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xc63c72b1 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc657afdf pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc66f6f09 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xc6713c9d public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0xc675a113 napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xc685db2d pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xc68aa252 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xc68faa6b serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc69fef9b da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xc6a0c994 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6ae6a6a of_pci_msi_chip_add +EXPORT_SYMBOL_GPL vmlinux 0xc6b738ac regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xc6f6710d pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xc6f7fb39 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xc70e4b59 kvmppc_claim_lpid +EXPORT_SYMBOL_GPL vmlinux 0xc7116604 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc7381dfb class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xc73e4e92 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0xc776b470 of_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7b2fcf3 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer +EXPORT_SYMBOL_GPL vmlinux 0xc7c694d3 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7e67207 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc7e71317 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xc7fbc15e arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0xc800dc88 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xc81ab8a8 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0xc83d4468 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0xc855b4a5 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xc874497c gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc87e2d7a sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8c15b64 of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0xc8c6099c posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc8f979cc get_device +EXPORT_SYMBOL_GPL vmlinux 0xc9054849 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc9163e8a percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0xc9251876 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0xc9494d67 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xc94b60ff device_reset +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc96dfae2 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level +EXPORT_SYMBOL_GPL vmlinux 0xc97e9bff register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0xc97f2484 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xc97ff5a7 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xc985dcc8 kvmppc_pr_ops +EXPORT_SYMBOL_GPL vmlinux 0xc996777a wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc9bb29b3 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0xc9bda6c1 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0xc9bf9ef4 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xc9c44c0b cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9fc61a1 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0xca06f41f __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0xca082a3f verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xca164819 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xca3b0db5 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcacfb3be vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xcaf6ab39 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xcb00a253 tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb2f3ba8 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0xcb38c0b8 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xcb5ee621 hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xcb8b43fd mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0xcb9c8b56 dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xcba97213 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xcbd06738 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xcbda45b6 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbe801d4 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcc040518 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0xcc0e071f usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xcc0f1009 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcc204450 device_add_property_set +EXPORT_SYMBOL_GPL vmlinux 0xcc3e1764 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0xcc44961f kvmppc_alloc_lpid +EXPORT_SYMBOL_GPL vmlinux 0xcc637dcc tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xcc6978a0 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xccadff63 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xccc6add8 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccdaaccb regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xcd1645c2 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xcd1ac387 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xcd3dd3d4 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0xcd6492ab trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcdaf72b3 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xcdb1b365 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcde9e7db exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xcdf552ac sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xce199180 sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0xce3a5d29 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce713b01 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xce80a0dd tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0xcea2f348 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xceb0b9f1 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xceb4745f regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xceb9f999 phy_create +EXPORT_SYMBOL_GPL vmlinux 0xcec32bfe device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xcec70746 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee32990 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xcee97e6d ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xceeb72cd device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0xcf1805f7 cpu_remove_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0xcf2a5e55 of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0xcf419204 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf867ad2 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcf898d80 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xcf993f54 blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0xcfa862ae ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xcfaba83b dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xcfaf1fab crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfc70335 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0xcfd3221a clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0xd03905cc da903x_write +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd03fe24e wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0xd04e1ff3 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd08cdb67 extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0xd08d797e mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0f287b3 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xd0f31b46 bpf_prog_realloc +EXPORT_SYMBOL_GPL vmlinux 0xd10f18a0 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xd114913b device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xd1212592 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xd1264ea9 skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xd133efbb pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xd14cdcf8 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd1888a24 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xd1a6f3e9 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xd1c4d4b0 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd225f4cd inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0xd233ca08 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xd239660e led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0xd25ceb67 of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd2aaeb4e kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xd2ac2413 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xd2b6b356 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xd2c2bf68 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0xd2c4c3b0 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xd2cb2761 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xd2ce191e regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xd2de8b76 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xd2df9582 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0xd30f4f83 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0xd314462d fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xd324b8ae pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xd33462c1 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xd33bab82 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xd356d605 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xd375c241 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xd3912e50 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xd3b6924a kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0xd3cb813a dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xd3de515a kvmppc_st +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4152b48 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd4238e36 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xd4394912 of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0xd43da1e7 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xd43f443f devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd45b57d7 mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xd4744582 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0xd4870f6f ref_module +EXPORT_SYMBOL_GPL vmlinux 0xd4ae64f1 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0xd4b30939 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xd4bf1ec6 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4d4ff73 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd4ed726e md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xd50c403e relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xd53f2641 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd55a144c pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xd5b82f86 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0xd5b85c98 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5c33955 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0xd5e1f861 kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0xd5f6e5c8 blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd60efc24 of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0xd624bbef percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xd62946a2 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xd62d20cb __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0xd62e29aa ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xd635534d user_preparse +EXPORT_SYMBOL_GPL vmlinux 0xd65eb6bf of_pci_find_msi_chip_by_node +EXPORT_SYMBOL_GPL vmlinux 0xd664e738 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xd66d6a7b aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd68f958a mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xd6a07583 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xd6c1b7fa mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0xd6d09984 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xd6f6296e disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd6ff56ed blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd7250f29 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xd7419d34 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xd7681511 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd769cfab blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd77501dd kvm_vcpu_kick +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd780d259 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xd78f1c12 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0xd7a2c896 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7f4cf6b filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0xd7fc3e98 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd83c3e62 arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xd8449e09 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xd84698e9 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xd8656076 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd87efbbb ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd8ac4a0a sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0xd8c73e87 nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xd8ca123b devres_add +EXPORT_SYMBOL_GPL vmlinux 0xd8e4b192 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0xd8ea793e reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd92b7c57 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd9456175 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0xd94aa457 display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0xd95a22ce virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd96cdc52 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xd97078b6 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xd9709a21 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xd988891a dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xd9add274 of_pci_get_host_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xd9d07a66 blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xd9e3f612 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xd9e48533 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9f5ac57 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xd9fdf4d9 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xda0648ab kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0xda08afd3 spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0xda0a4d22 mpic_msgr_enable +EXPORT_SYMBOL_GPL vmlinux 0xda178ee8 thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0xda17ff4d max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0xda1e197c fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xda25e1dc xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0xda8cb2e5 threads_core_mask +EXPORT_SYMBOL_GPL vmlinux 0xda8e6180 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0xdaa509cc power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdaa53904 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0xdaa62e5d evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xdabd32ce tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xdad0f1b0 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0xdae715e0 videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaf9af8e list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0xdafb93c0 extcon_set_cable_state +EXPORT_SYMBOL_GPL vmlinux 0xdb088cb1 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xdb0ad3dc nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xdb0fabe6 fsl_spi_cpm_irq +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb47af1e percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0xdb6dcfab usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xdb7b6cd4 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdbe39d4d posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbf863af extcon_unregister_interest +EXPORT_SYMBOL_GPL vmlinux 0xdc0fa970 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xdc1443f9 kvm_clear_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xdc3c94b5 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0xdc4b51da srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdc4e574d nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0xdc53b472 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xdc6de389 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdc78bb63 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdcd3c10e blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xdcdf7ecc regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xdcebeb14 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xdcfa7277 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0xdd074f68 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0xdd0d4c85 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xdd211ae0 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd335914 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd6df2aa cpu_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0xdd729424 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xdd7deb94 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddd22317 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xddf5150f device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0xde05df56 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xde0c0acb stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0xde2455f1 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xde37bbd8 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xde7f7960 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xde9463a6 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xdea9a43a stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0xdeb8cdb4 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0xdeeec150 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xdef58811 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdf0b291b napi_by_id +EXPORT_SYMBOL_GPL vmlinux 0xdf0c3252 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf19b8cf regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0xdf225098 relay_close +EXPORT_SYMBOL_GPL vmlinux 0xdf2b0a27 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0xdf3f9cb9 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xdf5d3321 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xdf8104ec of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0xdf838701 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xdfc48f6b tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xdff8e9ca get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0xdffddcea raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xe003f624 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe00af5ef unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xe00d8b1e of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe036b3e9 mpic_msgr_put +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe07cdb49 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe0937f94 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0bd831f inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0xe1021e7c vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xe1083ae3 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xe121cbb6 static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0xe149e294 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe14ab62d crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0xe16b2161 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe17ec2f1 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xe19eb1c4 percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe1b23ae4 tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c15a13 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xe1c869d0 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xe1ca2eb9 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0xe1f01857 dax_clear_blocks +EXPORT_SYMBOL_GPL vmlinux 0xe203bcf3 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xe2134a54 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xe227f6f1 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xe23b6342 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xe24fb196 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0xe261d5fc ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xe2695907 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0xe2801f20 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe2a91b24 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xe2b1b822 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xe2dd84df regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0xe2ea3cc3 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0xe2eeeb65 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe3180646 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xe32bfccb input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe3399f9d dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xe34d65d6 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0xe35490d7 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xe38e63d5 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xe3ca39b5 of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0xe3cae1f1 fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe3ce1539 nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0xe3dba396 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xe3e483f6 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe3eb5945 max_gen_clk_ops +EXPORT_SYMBOL_GPL vmlinux 0xe3f6902c agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0xe3f86ba1 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe44fde7e ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe48934ed usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0xe48f621f ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4a0d7af __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xe4bc0f61 __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xe4c031f8 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0xe4c92e1e posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xe4d7c9dd blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0xe4e89c51 blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0xe50b6514 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xe50dfcde xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xe514025e pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xe55a873a sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0xe56dcafb apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xe57709f4 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe5a007c2 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe5a99c48 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xe5c411ee regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0xe615eeb4 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0xe61ef1a0 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe66316d9 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0xe66c0a4e genlmsg_new_unicast +EXPORT_SYMBOL_GPL vmlinux 0xe67f6a68 dbs_check_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe68c6879 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xe6b4731c extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe6bd7c34 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6d9c1ac shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6e80ef9 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0xe6ec86ee __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xe6f83295 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xe7096294 bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0xe7145917 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0xe7274eae phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe765712f gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe7756bd7 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe78eefe3 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0xe7b8fb0b rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0xe7d10cd6 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xe7ee3e41 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xe7f18b3c threads_per_subcore +EXPORT_SYMBOL_GPL vmlinux 0xe7f3c29a dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe7f7cc85 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe80f8cb5 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xe812d58e sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe8276dcf i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe859cbb0 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0xe85ac969 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe85c55e7 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe8786d80 rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0xe87f77d3 dma_request_slave_channel_reason +EXPORT_SYMBOL_GPL vmlinux 0xe892796c da903x_read +EXPORT_SYMBOL_GPL vmlinux 0xe8a677ee dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe8a7e723 of_irq_parse_pci +EXPORT_SYMBOL_GPL vmlinux 0xe8b00f2e usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xe8c3ca30 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xe8f9f725 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xe8fd9081 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0xe913ad47 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0xe922216d debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe95aa6d4 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0xe95f9168 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xe982d0be blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xe98d81e3 ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0xe990431c ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xe9ac17eb sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xe9cc7efa splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea17192d extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xea1dc964 skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0xea21075f xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0xea2c6fc6 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0xea38ff49 dev_pm_opp_of_cpumask_add_table +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea47fb49 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xea724617 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0xea7f023e device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xeadbe509 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xeaf1ee3a ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xeb0ea5a6 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0xeb129e11 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xeb50e82a cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeb5aeda5 fb_sys_read +EXPORT_SYMBOL_GPL vmlinux 0xeb60f187 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xeb66b9f9 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xeb6794f8 nl_table +EXPORT_SYMBOL_GPL vmlinux 0xeb8ae736 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xeb9dcb15 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xeb9efcd7 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0xebadded3 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xebb3592b snmp_get_cpu_field64 +EXPORT_SYMBOL_GPL vmlinux 0xebc51ce9 spi_async +EXPORT_SYMBOL_GPL vmlinux 0xebcd8255 bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0xebd23848 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xebdb31d4 analyse_instr +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xebf133f6 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xebf60f2f usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0xebf9f29e ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xec10ed8f platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec851810 of_css +EXPORT_SYMBOL_GPL vmlinux 0xec98e6f7 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xeca3dab1 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0xecc0b7b7 ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xecc7f4ae usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xecd6b123 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xecdbc8a9 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xecf0b9e8 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0xed038aee arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xed06c5cb pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xed0cc5ca clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0xed60b5ec netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xed6d8c58 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0xeda9e9d7 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xedbacc69 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xedcc2c4a usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xedd7ca35 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0xede3d7b5 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0xede530d3 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xee04adc7 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xee0afca9 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xee19e183 __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0xee348406 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xee354c28 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xee37ac86 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xee5456a5 devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee99c3ae vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0xeeb6723f cpu_remove_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0xeec245e5 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xeec4e273 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xeed0f8aa ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xeed2aa2a ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xeede249e rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0xeee5f6ab debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xeee6a24f wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xef0dad99 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0xef120397 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xef2085db iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xef409b74 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef610c25 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef8ada96 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefa89524 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xefb510d6 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xefe456af usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xefe9cb56 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xefefa3fb ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xf00775b8 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xf0145113 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf06fef38 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf078450c devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xf07a2f77 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xf07d2194 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0xf080c62c of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xf0c85c3a platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf0ebf4a5 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf100eaf9 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0xf1027b78 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xf12145ef ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xf135f1ae sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xf141d973 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xf149df6e blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0xf158f170 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0xf15af653 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf15e3eae inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0xf15facc2 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0xf16a7f9f pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xf18316a8 nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xf184b034 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf18b06cb component_del +EXPORT_SYMBOL_GPL vmlinux 0xf1a62b6f of_i8042_kbd_irq +EXPORT_SYMBOL_GPL vmlinux 0xf1a87aa0 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key +EXPORT_SYMBOL_GPL vmlinux 0xf1b2a0cf component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1decc5f tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xf1ee0dd5 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xf1f6577f pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0xf1fd8de9 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf203f211 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xf20a02fa virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xf2196393 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xf21a60ea fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf2423538 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0xf24df2cb trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xf25a7bec alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf2902672 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0xf2a1c633 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2d03356 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xf2e86dd7 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf3012f6c rh_free +EXPORT_SYMBOL_GPL vmlinux 0xf305bad9 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xf30fda27 lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf3316ee7 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xf332d2ce devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0xf33bf5bb pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0xf340b3d5 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xf345fbb8 dev_pm_opp_of_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xf346de14 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xf35410f0 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf37b7c80 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf38dfd32 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xf39fe87f device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xf3cf7a17 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf3fe1aa1 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0xf44ba3ab tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xf47c5201 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0xf481e63f br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xf48b095d sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4aadbe5 rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0xf4b333d1 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xf4c4e11f find_symbol +EXPORT_SYMBOL_GPL vmlinux 0xf4c8f179 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xf4da3546 kvmppc_init_lpid +EXPORT_SYMBOL_GPL vmlinux 0xf4e75ecf watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xf4f715ee clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xf511f70a hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xf5411b82 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf554248a tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xf5605b12 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0xf591a0be dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5b4fadd sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0xf5bcf1b2 __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0xf5db09e0 md_stop +EXPORT_SYMBOL_GPL vmlinux 0xf5e7f053 rh_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf638b6c7 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0xf6412398 fb_sys_write +EXPORT_SYMBOL_GPL vmlinux 0xf6491328 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xf64a5747 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0xf6584d63 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xf65e2440 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xf6623d31 yield_to +EXPORT_SYMBOL_GPL vmlinux 0xf6794f54 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0xf68d58e8 kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0xf6b6c326 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xf6bf1321 kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xf6c511ea ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6d331e7 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6fe1ace anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0xf70181ee regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xf70380e5 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xf7344fdf mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xf7769208 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf78045c7 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xf7871887 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf7b21c33 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xf7dab452 devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xf80d0127 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf80efb57 regmap_update_bits_check +EXPORT_SYMBOL_GPL vmlinux 0xf81a3371 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xf82ac2c8 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf872841a reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf8b75c40 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0xf8d47ba2 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf914a072 of_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xf91eac65 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf92fdc1c blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf9664668 of_get_nand_on_flash_bbt +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf99c6b29 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xf9f9719f regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0xfa086cfc debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0xfa22a46b skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xfa3c50ff component_add +EXPORT_SYMBOL_GPL vmlinux 0xfa46ebef fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0xfa4ecbf9 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xfa61d076 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xfa67f6d9 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0xfa69b721 tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xfa76caac sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xfa7a32c4 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xfaa74443 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xfab60503 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xfad018de da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xfb062d99 devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xfb272353 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0xfb309716 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xfb310720 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb33b1d9 pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0xfb5133bc of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0xfb52b77d __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0xfb603e15 kvmppc_ld +EXPORT_SYMBOL_GPL vmlinux 0xfb680fd3 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb743d41 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0xfb83db03 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xfbb19e73 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xfbbb1cd8 put_device +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc1d7ff2 wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0xfc21a4c7 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xfc2fcfa1 devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xfc69b456 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xfc8f2b90 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0xfca37152 dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xfcaf5e01 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0xfcc2dda0 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xfce42ba5 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xfce476a6 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xfcf965f3 of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xfd03f142 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfd11a3f6 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0xfd165cd2 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0xfd3c9d7c find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0xfd59958b sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xfd616ef4 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0xfd81d973 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0xfdbeb1fd device_create +EXPORT_SYMBOL_GPL vmlinux 0xfdd98738 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xfdd9e083 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0xfdef1d75 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xfdfc5a78 thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfdfdb517 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0xfe23694b dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xfe552188 blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0xfe7f439b inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfe9cf813 skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0xfea4d414 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xfea545d6 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xfec6d2a5 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfed370f1 of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0xfedcc293 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xff006fd9 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xff03db0d ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff128437 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0xff1474bb wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff3b50cf wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xff6b9111 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xff6e42ca vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xff8862d7 rh_get_stats +EXPORT_SYMBOL_GPL vmlinux 0xff8c2c94 kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xff8d2e7c da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xff9ec7b3 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0xffb5f22c dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffb827b3 __class_register +EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0xffc174c3 of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0xffc4f410 blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0xffe55afa irq_find_matching_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xffedfc06 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xfffde3d6 fat_add_entries only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-106.129/powerpc/powerpc-e500mc.compiler +++ linux-raspi2-4.4.0/debian.master/abi/4.4.0-106.129/powerpc/powerpc-e500mc.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.5) 5.4.0 20160609 only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-106.129/powerpc/powerpc-e500mc.modules +++ linux-raspi2-4.4.0/debian.master/abi/4.4.0-106.129/powerpc/powerpc-e500mc.modules @@ -0,0 +1,4333 @@ +3c574_cs +3c589_cs +3c59x +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_dw +8250_mid +8255 +8255_pci +8390 +842 +842_compress +842_decompress +88pm800 +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +BusLogic +DAC960 +a100u2w +a3d +a8293 +aacraid +aat2870-regulator +aat2870_bl +ab3100 +ab3100-otp +ac97_bus +acard-ahci +acecad +acenic +act200l-sir +act8865-regulator +act_bpf +act_connmark +act_csum +act_gact +act_ipt +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +act_vlan +actisys-sir +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5755 +ad5764 +ad5791 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7266 +ad7280a +ad7291 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7746 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad799x +ad8366 +ad9523 +ad9832 +ad9834 +ad_sigma_delta +adc128d818 +adcxx +addi_apci_1032 +addi_apci_1500 +addi_apci_1516 +addi_apci_1564 +addi_apci_16xx +addi_apci_2032 +addi_apci_2200 +addi_apci_3120 +addi_apci_3501 +addi_apci_3xxx +addi_watchdog +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adfs +adi +adis16060 +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16204 +adis16209 +adis16220 +adis16240 +adis16260 +adis16400 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1275 +adm8211 +adm9240 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adv7170 +adv7175 +adv7511 +adv7604 +adv7842 +adv_pci1710 +adv_pci1723 +adv_pci1724 +adv_pci_dio +advansys +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +af-rxrpc +af9013 +af9033 +af_alg +af_key +af_packet_diag +affs +ah4 +ah6 +aha152x_cs +ahci +ahci_ceva +ahci_platform +ahci_qoriq +aic79xx +aic7xxx +aic94xx +aim_cdev +aim_network +aim_sound +aim_v4l2 +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airo +airo_cs +airspy +ak8975 +al3320a +algif_aead +algif_hash +algif_rng +algif_skcipher +ali-ircc +alim7101_wdt +altera-ci +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am53c974 +ambassador +amc6821 +amd +amd5536udc +amd8111e +amdgpu +amplc_dio200 +amplc_dio200_common +amplc_dio200_pci +amplc_pc236 +amplc_pc236_common +amplc_pc263 +amplc_pci224 +amplc_pci230 +amplc_pci236 +amplc_pci263 +ams369fg06 +analog +anatop-regulator +ansi_cprng +anubis +aoe +apbps2 +apds9300 +apds9802als +apds990x +apds9960 +appledisplay +appletalk +appletouch +applicom +aquantia +ar1021_i2c +ar5523 +ar7part +arc-rawmode +arc-rimi +arc4 +arc_emac +arc_ps2 +arc_uart +arcmsr +arcnet +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arp_tables +arpt_mangle +arptable_filter +as102_fe +as3711-regulator +as3711_bl +as3722-regulator +as3935 +as5011 +asc7621 +ascot2e +asix +ast +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +ata_generic +ata_piix +atbm8830 +aten +ath +ath10k_core +ath10k_pci +ath3k +ath5k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atm +atmel +atmel-flexcom +atmel-hlcdc +atmel_cs +atmel_mxt_ts +atmel_pci +atmtcp +atp870u +atusb +atxp1 +atyfb +au0828 +au8522_common +au8522_decoder +au8522_dig +aufs +auo-pixcir-ts +auo_k1900fb +auo_k1901fb +auo_k190x +auth_rpcgss +authenc +authencesn +autofs4 +avm_cs +avma1_cs +avmfritz +ax25 +ax88179_178a +axnet_cs +axp20x-pek +axp20x-regulator +axp20x_usb_power +axp288_adc +axp288_charger +axp288_fuel_gauge +b1 +b1dma +b1pci +b1pcmcia +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +bas_gigaset +batman-adv +baycom_epp +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bch +bcm-keypad +bcm-phy-lib +bcm203x +bcm3510 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm7038_wdt +bcm7xxx +bcm87xx +bcma +bcma-hcd +bcmsysport +bd6107 +bdc +bdc_pci +be2iscsi +be2net +befs +belkin_sa +bfa +bfs +bfusb +bh1750 +bh1770glc +bh1780gli +binfmt_misc +block2mtd +blocklayoutdriver +blowfish_common +blowfish_generic +bluecard_cs +bluetooth +bluetooth_6lowpan +bma150 +bma180 +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmg160_core +bmg160_i2c +bmg160_spi +bmp085 +bmp085-i2c +bmp085-spi +bmp280 +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bnxt_en_bpo +bonding +bpa10x +bpck +bpck6 +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +br2684 +br_netfilter +brcmfmac +brcmsmac +brcmutil +brd +bridge +broadcom +broadsheetfb +bsd_comp +bt3c_cs +bt819 +bt856 +bt866 +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btqca +btrfs +btrtl +btsdio +bttv +btuart_cs +btusb +btwilink +bu21013_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c4 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +caam +caam_jr +caamalg +caamhash +caamrng +cachefiles +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +caif_usb +caif_virtio +camellia_generic +can +can-bcm +can-dev +can-gw +can-raw +cap11xx +capi +capidrv +capmode +carl9170 +carminefb +cassini +cast5_generic +cast6_generic +cast_common +catc +cb710 +cb710-mmc +cb_das16_cs +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcimdas +cb_pcimdda +cc10001_adc +cc2520 +cc770 +cc770_isa +cc770_platform +cciss +ccm +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +ceph +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha20_generic +chacha20poly1305 +chaoskey +chipone_icn8318 +chipreg +chnl_net +ci_hdrc +ci_hdrc_imx +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +cirrus +cirrusfb +clip +clk-cdce706 +clk-cdce925 +clk-max77686 +clk-max77802 +clk-palmas +clk-pwm +clk-rk808 +clk-s2mps11 +clk-si514 +clk-si5351 +clk-si570 +clk-twl6040 +clk-wm831x +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm36651 +cm4000_cs +cm4040_cs +cma3000_d0x +cma3000_d0x_i2c +cmac +cmdlinepart +cmtp +cnic +cobalt +cobra +coda +colibri-vf50-ts +com20020 +com20020-pci +com20020_cs +com90io +com90xx +comedi +comedi_8254 +comedi_8255 +comedi_bond +comedi_isadma +comedi_parport +comedi_pci +comedi_pcmcia +comedi_test +comedi_usb +comm +configfs +contec_pci_dio +cordic +core +cp210x +cpia2 +cpm_uart +cpsw_ale +cpu-notifier-error-inject +cramfs +crc-ccitt +crc-itu-t +crc32 +crc7 +crc8 +cryptd +crypto_user +cryptoloop +cs5345 +cs53l32a +csiostor +ctr +cts +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +cx18 +cx18-alsa +cx22700 +cx22702 +cx231xx +cx231xx-alsa +cx231xx-dvb +cx2341x +cx23885 +cx24110 +cx24113 +cx24116 +cx24117 +cx24120 +cx24123 +cx25821 +cx25821-alsa +cx25840 +cx82310_eth +cx88-alsa +cx88-blackbird +cx88-dvb +cx88-vp3054-i2c +cx8800 +cx8802 +cx88xx +cxacru +cxd2099 +cxd2820r +cxd2841er +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cyclades +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da9030_battery +da9034-ts +da903x +da903x_bl +da9052-battery +da9052-hwmon +da9052-regulator +da9052_bl +da9052_onkey +da9052_tsi +da9052_wdt +da9055-hwmon +da9055-regulator +da9055_onkey +da9055_wdt +da9062-core +da9062-regulator +da9062_wdt +da9063-regulator +da9063_onkey +da9063_wdt +da9150-charger +da9150-core +da9150-fg +da9150-gpadc +da9210-regulator +da9211-regulator +dac02 +daqboard2000 +das08 +das08_cs +das08_isa +das08_pci +das16 +das16m1 +das1800 +das6402 +das800 +davicom +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +ddbridge +de2104x +de4x5 +decnet +deflate +defxx +denali +denali_dt +denali_pci +des_generic +designware_i2s +dgap +dgnc +dht11 +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dibx000_common +digi_acceleport +digicolor-usart +diskonchip +diva_idi +diva_mnt +divacapi +divadidd +divas +dl2k +dlci +dlm +dln2 +dm-bio-prison +dm-bufio +dm-cache +dm-cache-cleaner +dm-cache-mq +dm-cache-smq +dm-crypt +dm-delay +dm-era +dm-flakey +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-verity +dm-zero +dm1105 +dm9601 +dmfe +dmm32at +dmx3191d +dn_rtmsg +dnet +docg3 +docg4 +donauboe +dp83848 +dp83867 +dpt_i2o +drbd +drbg +drm +drm_kms_helper +drop_monitor +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds620 +dsbr100 +dscc4 +dss1_divert +dst +dst_ca +dstr +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x +dt3000 +dt3155 +dt9812 +dtl1_cs +dummy +dummy-irq +dummy_stm +dvb-as102 +dvb-bt8xx +dvb-core +dvb-pll +dvb-ttpci +dvb-ttusb-budget +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-af9035 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6007 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-rtl28xxu +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dvb_usb_v2 +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_wdt +dwc3 +dwc3-pci +dwc_eth_qos +dwmac-generic +dwmac-ipq806x +dwmac-lpc18xx +dwmac-meson +dwmac-rk +dwmac-socfpga +dwmac-sti +dwmac-sunxi +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +earth-pt1 +earth-pt3 +eata +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ec100 +echainiv +echo +edac_core +edt-ft5x06 +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efs +egalax_ts +ehset +elan_i2c +elo +elsa_cs +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_meta +em_nbyte +em_text +em_u32 +emac_arc +emac_rockchip +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +empeg +ems_pci +ems_pcmcia +ems_usb +emu10k1-gp +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +eni +enic +epat +epia +epic100 +eql +esas2r +esd_usb2 +esi-sir +esp4 +esp6 +esp_scsi +et1011c +et131x +ethoc +evbug +exofs +extcon-adc-jack +extcon-arizona +extcon-axp288 +extcon-gpio +extcon-max14577 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +ezusb +f2fs +f75375s +f81232 +fakelb +fan53555 +farsync +faulty +fb_agm1264k-fl +fb_bd663474 +fb_ddc +fb_hx8340bn +fb_hx8347d +fb_hx8353d +fb_hx8357d +fb_ili9163 +fb_ili9320 +fb_ili9325 +fb_ili9340 +fb_ili9341 +fb_ili9481 +fb_ili9486 +fb_pcd8544 +fb_ra8875 +fb_s6d02a1 +fb_s6d1121 +fb_ssd1289 +fb_ssd1306 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fbtft_device +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdomain_cs +fdp +fdp_i2c +fealnx +ff-memless +firedtv +firestream +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fit2 +fit3 +fixed +fl512 +flexcan +flexfb +floppy +fm10k +fm801-gp +fm_drv +fmc +fmc-chardev +fmc-fakedev +fmc-trivial +fmc-write-eeprom +fmvj18x_cs +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fpga-mgr +freevxfs +friq +frpw +fs_enet +fsa9480 +fscache +fsl-corenet-cf +fsl-diu-fb +fsl-edma +fsl_elbc_nand +fsl_hypervisor +fsl_ifc_nand +fsl_lpuart +fsl_pq_mdio +fsl_qe_udc +fsl_upm +fsl_usb2_udc +fsldma +ft6236 +ftdi-elan +ftdi_sio +ftl +fujitsu_ts +g450_pll +g760a +g762 +g_acm_ms +g_audio +g_cdc +g_dbgp +g_ether +g_ffs +g_hid +g_mass_storage +g_midi +g_ncm +g_nokia +g_printer +g_serial +g_webcam +g_zero +gadgetfs +gamecon +gameport +garmin_gps +garp +gcm +gdmtty +gdmulte +gdmwm +gdth +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +gennvm +gf128mul +gf2k +gfs2 +ghash-generic +gianfar_driver +gianfar_ptp +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +gluebi +go7007 +go7007-loader +go7007-usb +goku_udc +goodix +gp2ap002a00f +gp2ap020a00f +gpio +gpio-74x164 +gpio-74xx-mmio +gpio-addr-flash +gpio-adnp +gpio-adp5520 +gpio-adp5588 +gpio-altera +gpio-amd8111 +gpio-arizona +gpio-beeper +gpio-charger +gpio-crystalcove +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-fan +gpio-generic +gpio-grgpio +gpio-ir-recv +gpio-janz-ttl +gpio-kempld +gpio-lp3943 +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-mc33880 +gpio-mcp23s08 +gpio-ml-ioh +gpio-pca953x +gpio-pcf857x +gpio-rdc321x +gpio-regulator +gpio-syscon +gpio-tps65912 +gpio-twl4030 +gpio-twl6040 +gpio-ucb1400 +gpio-viperboard +gpio-vx855 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio_backlight +gpio_keys +gpio_keys_polled +gpio_mouse +gpio_tilt_polled +gpio_wdt +gr_udc +grace +grcan +gre +grip +grip_mp +gs_fpga +gs_usb +gsc_hpdi +gspca_benq +gspca_conex +gspca_cpia1 +gspca_dtcs033 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_jl2005bcd +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stk1135 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_touptek +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtco +guillemot +gunze +gxt4500 +hackrf +hamachi +hampshire +hanwang +hci +hci_uart +hci_vhci +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcdrv +hdm_dim2 +hdm_i2c +hdm_usb +hdpvr +he +hexium_gemini +hexium_orion +hfc4s8s_l1 +hfc_usb +hfcmulti +hfcpci +hfcsusb +hfs +hfsplus +hi6421-pmic-core +hi6421-regulator +hi8435 +hid +hid-a4tech +hid-alps +hid-apple +hid-appleir +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-cherry +hid-chicony +hid-corsair +hid-cp2112 +hid-cypress +hid-dr +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-icade +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-lenovo +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-primax +hid-prodikeys +hid-rmi +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-isku +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-konepure +hid-roccat-kovaplus +hid-roccat-lua +hid-roccat-pyra +hid-roccat-ryos +hid-roccat-savu +hid-saitek +hid-samsung +hid-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steelseries +hid-sunplus +hid-thingm +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hidp +hih6130 +hisax +hisax_fcpcipnp +hisax_isac +hisax_st5481 +hisi504_nand +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hopper +horizon +horus3a +hostap +hostap_cs +hostap_pci +hostap_plx +hp100 +hpfs +hpilo +hpsa +hptiop +hsi +hsi_char +hso +hsr +hsu_dma +htc-pasic3 +hts221 +hts221_i2c +hts221_spi +htu21 +huawei_cdc_ncm +hwa-hc +hwa-rc +hwmon-vid +hx8357 +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd8111 +i2c-arb-gpio-challenge +i2c-cbus-gpio +i2c-cpm +i2c-designware-core +i2c-designware-pci +i2c-designware-platform +i2c-diolan-u2c +i2c-dln2 +i2c-emev2 +i2c-gpio +i2c-hid +i2c-i801 +i2c-isch +i2c-kempld +i2c-matroxfb +i2c-mpc +i2c-mux +i2c-mux-gpio +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-reg +i2c-nforce2 +i2c-ocores +i2c-parport +i2c-parport-light +i2c-pca-platform +i2c-piix4 +i2c-rk3x +i2c-robotfuzz-osif +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-smbus +i2c-stub +i2c-taos-evm +i2c-tiny-usb +i2c-via +i2c-viapro +i2c-viperboard +i2c-xiic +i40e +i40evf +i5k_amb +i6300esb +i740fb +i82092 +ib_addr +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mad +ib_mthca +ib_sa +ib_srp +ib_srpt +ib_ucm +ib_umad +ib_uverbs +ibmaem +ibmpex +icp_multi +icplus +ics932s401 +ideapad_slidebar +idma64 +idmouse +idt77252 +idt_gen2 +idtcps +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +iforce +igb +igbvf +igorplugusb +iguanair +ii_pci20kc +iio-trig-interrupt +iio-trig-periodic-rtc +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili922x +ili9320 +imm +imon +ims-pcu +imx074 +imx6ul_tsc +imx_thermal +ina209 +ina2xx +industrialio +industrialio-buffer-cb +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +input-polldev +int51x1 +intel_th +intel_th_gth +intel_th_msu +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +interact +interval_tree_test +inv-mpu6050 +io_edgeport +io_ti +ioc4 +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_MASQUERADE +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_tunnel +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_wlc +ip_vs_wrr +ip_vti +ipack +ipaq +ipcomp +ipcomp6 +ipddp +iphase +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +ipr +ips +ipt_CLUSTERIP +ipt_ECN +ipt_MASQUERADE +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipw +ipw2100 +ipw2200 +ipwireless +ipx +ir-hix5hd2 +ir-jvc-decoder +ir-kbd-i2c +ir-lirc-codec +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-usb +ir-xmp-decoder +ircomm +ircomm-tty +irda +irda-usb +irlan +irnet +irtty-sir +iscsi_boot_sysfs +iscsi_target_mod +iscsi_tcp +isdn +isdn_bsdcomp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl9305 +isofs +isp116x-hcd +isp1362-hcd +isp1704_charger +isp1760 +it913x +itd1000 +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_c2 +iw_cm +iw_cxgb3 +iw_cxgb4 +iw_nes +iwl3945 +iwl4965 +iwldvm +iwlegacy +iwlmvm +iwlwifi +ix2505v +ixgb +ixgbe +ixgbevf +janz-cmodio +janz-ican3 +jc42 +jedec_probe +jffs2 +jfs +jitterentropy_rng +jmb38x_ms +jme +joydev +joydump +jr3_pci +jsa1212 +jsm +kafs +kalmia +kaweth +kbic +kbtab +kcomedilib +ke_counter +kempld-core +kempld_wdt +kernelcapi +keyspan +keyspan_pda +keyspan_remote +keywrap +kfifo_buf +khazad +kingsun-sir +kl5kusb105 +kmx61 +kobil_sct +ks0108 +ks0127 +ks8842 +ks8851 +ks8851_mll +ks959-sir +ksdazzle-sir +ksz884x +ktti +kvaser_pci +kvaser_usb +kxcjk-1013 +kxsd9 +kxtj9 +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l4f00242t03 +l64781 +lan78xx +lanai +lapb +lapbether +latch-addr-flash +lattice-ecp3-config +lcd +ld9040 +ldusb +lec +led-class-flash +leds-88pm860x +leds-adp5520 +leds-bcm6328 +leds-bcm6358 +leds-bd2802 +leds-blinkm +leds-da903x +leds-da9052 +leds-dac124s085 +leds-gpio +leds-ktd2692 +leds-lm3530 +leds-lm3533 +leds-lm355x +leds-lm3642 +leds-lp3944 +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max77693 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pwm +leds-regulator +leds-tca6507 +leds-tlc591xx +leds-wm831x-status +leds-wm8350 +ledtrig-backlight +ledtrig-camera +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-oneshot +ledtrig-timer +ledtrig-transient +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libahci +libahci_platform +libceph +libcomposite +libcrc32c +libcxgbi +libertas +libertas_cs +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libore +libosd +libsas +lightning +lineage-pem +linear +lirc_bt829 +lirc_dev +lirc_imon +lirc_parallel +lirc_sasem +lirc_serial +lirc_sir +lirc_zilog +lis3l02dq +lis3lv02d +lis3lv02d_i2c +lis3lv02d_spi +litelink-sir +lkkbd +ll_temac +llc +llc2 +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3630a_bl +lm3639_bl +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lmc +lms283gf05 +lms501kf03 +lnbh25 +lnbp21 +lnbp22 +lockd +locktorture +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp8755 +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpc_ich +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +ltc2941-battery-gauge +ltc2945 +ltc2978 +ltc3589 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltr501 +ltv350qv +lv5207lp +lvstest +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m25p80 +m2m-deinterlace +m52790 +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +ma600-sir +mac-celtic +mac-centeuro +mac-croatian +mac-cyrillic +mac-gaelic +mac-greek +mac-iceland +mac-inuit +mac-roman +mac-romanian +mac-turkish +mac80211 +mac80211_hwsim +mac802154 +mac_hid +macb +macvlan +macvtap +mag3110 +magellan +mailbox-altera +mailbox-test +mantis +mantis_core +map_absent +map_funcs +map_ram +map_rom +marvell +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max1111 +max11801_ts +max1363 +max14577 +max14577_charger +max1586 +max16064 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max197 +max20751 +max2165 +max3100 +max31790 +max3421-hcd +max34440 +max517 +max5821 +max63xx_wdt +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77686 +max77693 +max77693-haptic +max77693_charger +max77802 +max8649 +max8660 +max8688 +max8903_charger +max8907 +max8907-regulator +max8925-regulator +max8925_bl +max8925_onkey +max8925_power +max8952 +max8973-regulator +max8997 +max8997_charger +max8997_haptic +max8998 +max8998_charger +mb862xxfb +mb86a16 +mb86a20s +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc44s803 +mcb +mcb-pci +mceusb +mcp2120-sir +mcp251x +mcp3021 +mcp320x +mcp3422 +mcp4531 +mcp4725 +mcp4922 +mcryptd +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md-cluster +md4 +md5-ppc +mdc800 +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-gpio +mdio-mux +mdio-mux-gpio +mdio-mux-mmioreg +mdio-xgene +me4000 +me_daq +media +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +memstick +men_z135_uart +men_z188_adc +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +metro-usb +metronomefb +mf6x4 +mga +michael_mic +micrel +microchip +microread +microread_i2c +microtek +mii +mii-bitbang +minix +mip6 +mite +mk712 +mkiss +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx90614 +mlxsw_core +mlxsw_pci +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmc_block +mms114 +mn88472 +mn88473 +mos7720 +mos7840 +mostcore +moxa +mpc624 +mpc85xx_edac +mpl115 +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +msdos +msi001 +msi2500 +msp3400 +mspro_block +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt29f_spinand +mt312 +mt352 +mt6311-regulator +mt6397-core +mt6397-regulator +mt7601u +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd +mtd_blkdevs +mtd_dataflash +mtdblock +mtdblock_ro +mtdoops +mtdram +mtdswap +mtip32xx +mtk-sd +mtouch +multipath +multiq3 +musb_hdrc +mv643xx_eth +mv_u3d_core +mv_udc +mvmdio +mvsas +mvumi +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc4005 +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxser +mxuport +myri10ge +n_gsm +n_hdlc +n_r3964 +n_tracerouter +n_tracesink +nand +nand_bch +nand_ecc +nand_ids +nandsim +national +natsemi +nau7802 +navman +nb8800 +nbd +nci +nci_spi +nci_uart +ncpfs +nct7802 +nct7904 +nd_blk +nd_btt +nd_pmem +ne2k-pci +neofb +net1080 +net2272 +net2280 +netconsole +netjet +netlink_diag +netrom +netup-unidvb +netxen_nic +newtonkbd +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_ipv4 +nf_nat_ipv6 +nf_nat_irc +nf_nat_masquerade_ipv4 +nf_nat_masquerade_ipv6 +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_redirect +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_synproxy_core +nf_tables +nf_tables_arp +nf_tables_bridge +nf_tables_inet +nf_tables_ipv4 +nf_tables_ipv6 +nf_tables_netdev +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfcwilink +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_log +nfnetlink_queue +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat_ipv4 +nft_chain_nat_ipv6 +nft_chain_route_ipv4 +nft_chain_route_ipv6 +nft_compat +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_exthdr +nft_hash +nft_limit +nft_log +nft_masq +nft_masq_ipv4 +nft_masq_ipv6 +nft_meta +nft_meta_bridge +nft_nat +nft_queue +nft_rbtree +nft_redir +nft_redir_ipv4 +nft_redir_ipv6 +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +ni_6527 +ni_65xx +ni_660x +ni_670x +ni_at_a2150 +ni_at_ao +ni_atmio +ni_atmio16d +ni_daq_700 +ni_daq_dio24 +ni_labpc +ni_labpc_common +ni_labpc_cs +ni_labpc_isadma +ni_labpc_pci +ni_mio_cs +ni_pcidio +ni_pcimio +ni_tio +ni_tiocmd +ni_usb6501 +nicstar +nilfs2 +niu +nlmon +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +nmclan_cs +nosy +notifier-error-inject +nouveau +nozomi +nps_enet +ns558 +ns83820 +nsc-ircc +nsp32 +nsp_cs +ntb +ntb_netdev +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +null_blk +nvidiafb +nvme +nvmem_core +nxp-nci +nxp-nci_i2c +nxp-ptn3460 +nxt200x +nxt6000 +objlayoutdriver +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +of_xilinx_wdt +ofpart +old_belkin-sir +omap4-keypad +omfs +omninet +on20 +on26 +onenand +opencores-kbd +openvswitch +oprofile +opt3001 +opticon +option +or51132 +or51211 +orinoco +orinoco_cs +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +osd +osdblk +osst +oti6858 +ov2640 +ov5642 +ov6650 +ov7640 +ov7670 +ov772x +ov9640 +ov9740 +overlay +oxu210hp-hcd +p54common +p54pci +p54spi +p54usb +p8022 +p8023 +pa12203001 +palmas-pwrbutton +palmas-regulator +pandora_bl +panel +panel-lg-lg4573 +panel-samsung-ld9040 +panel-samsung-s6e8aa0 +panel-sharp-lq101r1sx01 +panel-simple +parade-ps8622 +paride +parkbd +parport +parport_ax88796 +parport_cs +parport_pc +parport_serial +pata_ali +pata_amd +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_of_platform +pata_oldpiix +pata_opti +pata_optidma +pata_pcmcia +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sch +pata_serverworks +pata_sil680 +pata_sis +pata_sl82c105 +pata_triflex +pata_via +pc300too +pcap-regulator +pcap_keys +pcap_ts +pcbc +pcd +pcf50633 +pcf50633-adc +pcf50633-backlight +pcf50633-charger +pcf50633-gpio +pcf50633-input +pcf50633-regulator +pcf8574_keypad +pcf8591 +pch_udc +pci +pci-stub +pci200syn +pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad +pcmcia +pcmcia_core +pcmcia_rsrc +pcmciamtd +pcmda12 +pcmmio +pcmuio +pcnet32 +pcnet_cs +pcrypt +pcwd_pci +pcwd_usb +pd +pd6729 +pda_power +pdc_adma +peak_pci +peak_pcmcia +peak_usb +pegasus +penmount +percpu_test +pf +pfuze100-regulator +pg +phantom +phonet +phram +phy-bcm-kona-usb2 +phy-exynos-usb2 +phy-gpio-vbus-usb +phy-isp1301 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-tahvo +phy-tusb1210 +physmap +physmap_of +pixcir_i2c_ts +pkcs7_test_key +pktcdvd +pktgen +pl2303 +plat-ram +plat_nand +platform_lcd +plip +plusb +pluto2 +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm80xx +pm8941-wled +pmbus +pmbus_core +pmc551 +pmcraid +pn533 +pn544 +pn544_i2c +pn_pep +poly1305_generic +port100 +powermate +powr1220 +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_core +pps_parport +pptp +prism2_usb +ps2mult +psmouse +psnap +pt +ptp +pulsedlight-lidar-lite-v2 +pvrusb2 +pwc +pwm-atmel-hlcdc +pwm-beeper +pwm-fan +pwm-fsl-ftm +pwm-lp3943 +pwm-pca9685 +pwm-regulator +pwm-twl +pwm-twl-led +pwm_bl +pxa27x_udc +qcaspi +qcaux +qcom-spmi-iadc +qcom-spmi-temp-alarm +qcom-spmi-vadc +qcom_spmi-regulator +qcserial +qed +qede +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qlogic_cs +qlogicfas408 +qm1d1c0042 +qmi_wwan +qnx4 +qnx6 +qoriq-cpufreq +qsemi +qt1010 +qt1070 +qt2160 +quatech2 +quatech_daqp_cs +quota_tree +quota_v1 +quota_v2 +qxl +r128 +r592 +r6040 +r8152 +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r852 +r8712u +r8723au +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-bcm2048 +radio-i2c-si470x +radio-keene +radio-ma901 +radio-maxiradio +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-shark +radio-si476x +radio-tea5764 +radio-usb-si470x +radio-usb-si4713 +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ramoops +raw +ray_cs +rbd +rbtree_test +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-asus-pc39 +rc-asus-ps3-100 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-delock-61959 +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-dvbsky +rc-em-terratec +rc-encore-enltv +rc-encore-enltv-fm53 +rc-encore-enltv2 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-pctv-sedna +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-reddo +rc-snapstream-firefly +rc-streamzap +rc-su3000 +rc-tbs-nec +rc-technisat-ts35 +rc-technisat-usb2 +rc-terratec-cinergy-c-pci +rc-terratec-cinergy-s2-hd +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-total-media-in-hand-02 +rc-trekstor +rc-tt-1500 +rc-twinhan-dtv-cab-ci +rc-twinhan1027 +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rc5t583-regulator +rdc321x-southbridge +rdma_cm +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +redboot +redrat3 +reed_solomon +regmap-spmi +regulator-haptic +reiserfs +remoteproc +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd_ftl +rfkill-gpio +rfkill-regulator +rio-scan +rio500 +rionet +rivafb +rj54n1cb0c +rk808 +rk808-regulator +rmd128 +rmd160 +rmd256 +rmd320 +rn5t618 +rn5t618-regulator +rn5t618_wdt +rndis_host +rndis_wlan +rocket +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpcrdma +rpcsec_gss_krb5 +rpr0521 +rrpc +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt5033 +rt5033-regulator +rt5033_battery +rt61pci +rt73usb +rt9455_charger +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab3100 +rtc-abx80x +rtc-as3722 +rtc-bq32k +rtc-bq4802 +rtc-cmos +rtc-da9052 +rtc-da9055 +rtc-da9063 +rtc-ds1286 +rtc-ds1305 +rtc-ds1307 +rtc-ds1343 +rtc-ds1347 +rtc-ds1374 +rtc-ds1390 +rtc-ds1511 +rtc-ds1553 +rtc-ds1672 +rtc-ds1685 +rtc-ds1742 +rtc-ds2404 +rtc-ds3234 +rtc-em3027 +rtc-fm3130 +rtc-generic +rtc-hid-sensor-time +rtc-hym8563 +rtc-isl12022 +rtc-isl12057 +rtc-isl1208 +rtc-lp8788 +rtc-m41t80 +rtc-m41t93 +rtc-m41t94 +rtc-m48t35 +rtc-m48t59 +rtc-m48t86 +rtc-max6900 +rtc-max6902 +rtc-max77686 +rtc-max77802 +rtc-max8907 +rtc-max8925 +rtc-max8997 +rtc-max8998 +rtc-mc13xxx +rtc-mcp795 +rtc-msm6242 +rtc-mt6397 +rtc-palmas +rtc-pcap +rtc-pcf2123 +rtc-pcf2127 +rtc-pcf50633 +rtc-pcf85063 +rtc-pcf8523 +rtc-pcf8563 +rtc-pcf8583 +rtc-r9701 +rtc-rc5t583 +rtc-rk808 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rv8803 +rtc-rx4581 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-snvs +rtc-stk17ta8 +rtc-tps6586x +rtc-tps65910 +rtc-tps80031 +rtc-twl +rtc-v3020 +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtc-zynqmp +rtc_cmos_setup +rtd520 +rti800 +rti802 +rtl2830 +rtl2832 +rtl2832_sdr +rtl8150 +rtl8187 +rtl8188ee +rtl818x_pci +rtl8192c-common +rtl8192ce +rtl8192cu +rtl8192de +rtl8192ee +rtl8192se +rtl8723-common +rtl8723ae +rtl8723be +rtl8821ae +rtl8xxxu +rtl_pci +rtl_usb +rtllib +rtllib_crypt_ccmp +rtllib_crypt_tkip +rtllib_crypt_wep +rtlwifi +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rx51_battery +rxkad +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3fb +s3fwrn5 +s3fwrn5_i2c +s526 +s5h1409 +s5h1411 +s5h1420 +s5m8767 +s626 +s6e63m0 +s921 +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7185 +saa7706h +safe_serial +salsa20_generic +samsung-keypad +samsung-sxgbe +sata_fsl +sata_inic162x +sata_mv +sata_nv +sata_promise +sata_qstor +sata_sil +sata_sil24 +sata_sis +sata_sx4 +sata_uli +sata_via +sata_vsc +savage +savagefb +sbp_target +sbs-battery +sc16is7xx +sc92031 +sca3000 +sch_atm +sch_cbq +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_fq +sch_fq_codel +sch_gred +sch_hfsc +sch_hhf +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_pie +sch_plug +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_tbf +sch_teql +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +scsi_transport_srp +sctp +sctp_probe +sdhci +sdhci-of-arasan +sdhci-of-at91 +sdhci-of-esdhc +sdhci-of-hlwd +sdhci-pci +sdhci-pltfm +sdhci_f_sdh30 +sdio_uart +sdricoh_cs +sedlbauer_cs +seed +sensorhub +seqiv +ser_gigaset +serial2002 +serial_cs +serio_raw +sermouse +serpent_generic +serport +ses +sfc +sgy_cts1000 +sh_veu +sha1-powerpc +shark2 +shpchp +sht15 +sht21 +shtc1 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sil164 +sir-dev +sis +sis190 +sis5595 +sis900 +sisfb +sisusbvga +sit +sja1000 +sja1000_isa +sja1000_platform +skfp +skge +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +sl811_cs +slcan +slip +slram +sm501 +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smb347-charger +smc91c92_cs +smipcie +smm665 +smsc +smsc-ircc2 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsmdtv +smssdio +smsusb +snd +snd-ac97-codec +snd-ad1889 +snd-ak4113 +snd-ak4114 +snd-ak4117 +snd-ak4xxx-adda +snd-ali5451 +snd-aloop +snd-als300 +snd-als4000 +snd-atiixp +snd-atiixp-modem +snd-au8810 +snd-au8820 +snd-au8830 +snd-aw2 +snd-azt3328 +snd-bcd2000 +snd-bebob +snd-bt87x +snd-ca0106 +snd-cmipci +snd-cs4281 +snd-cs46xx +snd-cs8427 +snd-ctxfi +snd-darla20 +snd-darla24 +snd-dice +snd-dummy +snd-echo3g +snd-emu10k1 +snd-emu10k1-synth +snd-emu10k1x +snd-emux-synth +snd-ens1370 +snd-ens1371 +snd-es1938 +snd-es1968 +snd-firewire-digi00x +snd-firewire-lib +snd-firewire-tascam +snd-fireworks +snd-fm801 +snd-gina20 +snd-gina24 +snd-hda-codec +snd-hda-codec-analog +snd-hda-codec-ca0110 +snd-hda-codec-ca0132 +snd-hda-codec-cirrus +snd-hda-codec-cmedia +snd-hda-codec-conexant +snd-hda-codec-generic +snd-hda-codec-hdmi +snd-hda-codec-idt +snd-hda-codec-realtek +snd-hda-codec-si3054 +snd-hda-codec-via +snd-hda-core +snd-hda-intel +snd-hdsp +snd-hdspm +snd-hrtimer +snd-hwdep +snd-i2c +snd-ice1712 +snd-ice1724 +snd-ice17xx-ak4xxx +snd-indigo +snd-indigodj +snd-indigodjx +snd-indigoio +snd-indigoiox +snd-intel8x0 +snd-intel8x0m +snd-isight +snd-korg1212 +snd-layla20 +snd-layla24 +snd-lola +snd-lx6464es +snd-maestro3 +snd-mia +snd-mixart +snd-mixer-oss +snd-mona +snd-mpu401 +snd-mpu401-uart +snd-mtpav +snd-mts64 +snd-nm256 +snd-opl3-lib +snd-opl3-synth +snd-oxfw +snd-oxygen +snd-oxygen-lib +snd-pcm +snd-pcm-dmaengine +snd-pcm-oss +snd-pcxhr +snd-pdaudiocf +snd-portman2x4 +snd-pt2258 +snd-rawmidi +snd-riptide +snd-rme32 +snd-rme96 +snd-rme9652 +snd-sb-common +snd-scs1x +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-soc-ac97 +snd-soc-adau1701 +snd-soc-ak4104 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-alc5623 +snd-soc-core +snd-soc-cs35l32 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42xx8 +snd-soc-cs42xx8-i2c +snd-soc-cs4349 +snd-soc-es8328 +snd-soc-fsl-asrc +snd-soc-fsl-esai +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-gtm601 +snd-soc-imx-audmux +snd-soc-pcm1681 +snd-soc-pcm1792a-codec +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-rt5631 +snd-soc-sgtl5000 +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-simple-card +snd-soc-spdif-rx +snd-soc-spdif-tx +snd-soc-ssm2602 +snd-soc-ssm2602-i2c +snd-soc-ssm2602-spi +snd-soc-ssm4567 +snd-soc-sta32x +snd-soc-sta350 +snd-soc-sti-sas +snd-soc-tas2552 +snd-soc-tas5086 +snd-soc-tas571x +snd-soc-tfa9879 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic3x +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8962 +snd-soc-wm8978 +snd-soc-xtfpga-i2s +snd-sonicvibes +snd-timer +snd-trident +snd-ua101 +snd-usb-6fire +snd-usb-audio +snd-usb-caiaq +snd-usb-hiface +snd-usb-line6 +snd-usb-pod +snd-usb-podhd +snd-usb-toneport +snd-usb-usx2y +snd-usb-variax +snd-usbmidi-lib +snd-util-mem +snd-via82xx +snd-via82xx-modem +snd-virmidi +snd-virtuoso +snd-vx-lib +snd-vx222 +snd-vxpocket +snd-ymfpci +snic +soc_button_array +soc_camera +soc_camera_platform +soc_mediabus +softdog +softing +softing_cs +solo6x10 +solos-pci +sony-btf-mpx +soundcore +sp2 +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +spectrum_cs +speedfax +speedtch +spi-altera +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-gpio +spi-lm70llp +spi-nor +spi-oc-tiny +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-sc18is602 +spi-tle62x0 +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spmi +sr9700 +sr9800 +ssb +ssb-hcd +ssd1307fb +ssfdc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +ssu100 +st +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_spi +st_magn +st_magn_i2c +st_magn_spi +st_pressure +st_pressure_i2c +st_pressure_spi +st_sensors +st_sensors_i2c +st_sensors_spi +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +ste_modem_rproc +stex +stinger +stir4200 +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm_console +stm_core +stmmac +stmmac-platform +stmpe-keypad +stmpe-ts +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv6110 +stv6110x +sun4i-codec +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +svgalib +sx8 +sx8654 +sx9500 +sym53c500_cs +sym53c8xx +symbolserial +synaptics_i2c +synaptics_i2c_rmi4 +synaptics_usb +synclink +synclink_cs +synclink_gt +synclinkmp +sysv +t1pci +t5403 +talitos +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +target_core_user +tc3589x-keypad +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tcs3414 +tcs3472 +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tda998x +tdfx +tdfxfb +tdo24m +tea +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tef6862 +tehuti +tekram-sir +teles_cs +teranetics +test-hexdump +test-kstrtox +test-string_helpers +test_bpf +test_firmware +test_module +test_power +test_printf +test_static_key_base +test_static_keys +test_udelay +test_user_copy +tg3 +tgr192 +thmc50 +thunderbolt +ti-adc081c +ti-adc128s052 +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_dac7512 +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timeriomem-rng +tipc +tlan +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmp006 +tmp102 +tmp103 +tmp401 +tmp421 +toim3232-sir +torture +toshsd +touchit213 +touchright +touchwin +tpci200 +tpm-rng +tpm_atmel +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tps40422 +tps51632-regulator +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65090-charger +tps65090-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps65218-regulator +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps80031-regulator +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsi568 +tsi57x +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2x7x_core +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tvaudio +tveeprom +tvp5150 +tw2804 +tw68 +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-madc-hwmon +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6040-vibra +twofish_common +twofish_generic +typhoon +u132-hcd +uPD98402 +u_ether +u_serial +uartlite +uas +ubi +ubifs +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +uda1342 +udc-core +udc-xilinx +udf +udl +udp_diag +udp_tunnel +ueagle-atm +ufs +ufshcd +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_fsl_elbc_gpcm +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uli526x +ulpi +umc +umem +ums-alauda +ums-cypress +ums-datafab +ums-eneub6250 +ums-freecom +ums-isd200 +ums-jumpshot +ums-karma +ums-onetouch +ums-realtek +ums-sddr09 +ums-sddr55 +ums-usbat +unix_diag +upd64031a +upd64083 +us5182d +usb-serial-simple +usb-storage +usb3503 +usb8xxx +usb_8dev +usb_debug +usb_f_acm +usb_f_ecm +usb_f_ecm_subset +usb_f_eem +usb_f_fs +usb_f_hid +usb_f_mass_storage +usb_f_midi +usb_f_ncm +usb_f_obex +usb_f_phonet +usb_f_printer +usb_f_rndis +usb_f_serial +usb_f_ss_lb +usb_f_uac1 +usb_f_uac2 +usb_f_uvc +usb_gigaset +usb_wwan +usbatm +usbdux +usbduxfast +usbduxsigma +usbhid +usbip-core +usbip-host +usbkbd +usblcd +usbled +usblp +usbmisc_imx +usbmon +usbmouse +usbnet +usbserial +usbsevseg +usbtest +usbtmc +usbtouchscreen +usbtv +usbvision +usdhi6rol0 +userio +userspace-consumer +ushc +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-dv-timings +v4l2-flash-led-class +v4l2-mem2mem +vcan +vcnl4000 +ves1820 +ves1x93 +veth +vf610_adc +vga16fb +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_net +vhost_scsi +via +via-ircc +via-rhine +via-sdmmc +via-velocity +via686a +videobuf-core +videobuf-dma-sg +videobuf-dvb +videobuf-vmalloc +videobuf2-core +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-dvb +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videocodec +videodev +vim2m +viperboard +viperboard_adc +virt-dma +virtio-gpu +virtio-rng +virtio_input +virtio_scsi +virtual +visor +vitesse +vivid +vlsi_ir +vmac +vme_ca91cx42 +vme_pio2 +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmxnet3 +vp27smpx +vport-geneve +vport-gre +vport-vxlan +vpx3220 +vrf +vringh +vsock +vsxxxaa +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxge +vxlan +vz89x +w1-gpio +w1_bq27000 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1_ds2781 +w1_ds28e04 +w1_smem +w1_therm +w5100 +w5300 +w6692 +w83781d +w83791d +w83792d +w83793 +w83795 +w83977af_ir +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +walkera0701 +wanxl +warrior +wbsd +wcn36xx +wd719x +wdt87xx_i2c +wdt_pci +whc-rc +whci +whci-hcd +whiteheat +wil6210 +wimax +winbond-840 +windfarm_core +wire +wishbone-serial +wl1251 +wl1251_sdio +wl1251_spi +wl1273-core +wl12xx +wl18xx +wl3501_cs +wlcore +wlcore_sdio +wlcore_spi +wm831x-dcdc +wm831x-hwmon +wm831x-isink +wm831x-ldo +wm831x-on +wm831x-ts +wm831x_backup +wm831x_bl +wm831x_power +wm831x_wdt +wm8350-hwmon +wm8350-regulator +wm8350_power +wm8350_wdt +wm8400-regulator +wm8739 +wm8775 +wm8994-core +wm8994-irq +wm8994-regmap +wm8994-regulator +wm97xx-ts +wp512 +wusb-cbaf +wusb-wa +wusbcore +x25 +x25_asy +x_tables +xc4000 +xc5000 +xcbc +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_ipcomp +xfrm_user +xfs +xgifb +xhci-plat-hcd +xilinx-tpg +xilinx-video +xilinx-vtc +xilinx_emaclite +xilinx_ps2 +xilinx_uartps +xillybus_core +xillybus_of +xillybus_pcie +xirc2ps_cs +xircom_cb +xor +xpad +xr_usb_serial_common +xsens_mt +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +xt_NETMAP +xt_NFLOG +xt_NFQUEUE +xt_RATEEST +xt_REDIRECT +xt_SECMARK +xt_TCPMSS +xt_TCPOPTSTRIP +xt_TEE +xt_TPROXY +xt_TRACE +xt_addrtype +xt_bpf +xt_cgroup +xt_cluster +xt_comment +xt_connbytes +xt_connlabel +xt_connlimit +xt_connmark +xt_conntrack +xt_cpu +xt_dccp +xt_devgroup +xt_dscp +xt_ecn +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_ipcomp +xt_iprange +xt_ipvs +xt_l2tp +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_nat +xt_nfacct +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_realm +xt_recent +xt_sctp +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_tcpudp +xt_time +xt_u32 +xtkbd +xts +xusbatm +xz_dec_test +yam +yealink +yellowfin +yenta_socket +yurex +zatm +zaurus +zd1201 +zd1211rw +zforce_ts +zhenhua +zl10036 +zl10039 +zl10353 +zl6100 +zlib +zr36016 +zr36050 +zr36060 +zr36067 +zr364xx +zram +zynq-fpga only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-106.129/powerpc/powerpc-smp +++ linux-raspi2-4.4.0/debian.master/abi/4.4.0-106.129/powerpc/powerpc-smp @@ -0,0 +1,17113 @@ +EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe +EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble +EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL crypto/mcryptd 0xa8cfd13e mcryptd_arm_flusher +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/atm/suni 0x5d690ae3 suni_init +EXPORT_SYMBOL drivers/atm/uPD98402 0x42553762 uPD98402_init +EXPORT_SYMBOL drivers/bcma/bcma 0xef55c265 bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0xfc43a862 bcma_core_dma_translation +EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str +EXPORT_SYMBOL drivers/block/paride/paride 0x1331e37e paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x16562069 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x2f2ec99c pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x32ae94fa pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x40faa540 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x507745ba pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x6db48bdc paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x92350ebd pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0xaefa79b4 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xc2e6ea89 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xdb97007f pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0xf9e1e367 pi_init +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x9e14d6d8 btbcm_patchram +EXPORT_SYMBOL drivers/char/apm-emulation 0x129e74f2 apm_get_power_status +EXPORT_SYMBOL drivers/char/apm-emulation 0xdf3329b8 apm_queue_event +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0e4631c4 ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fae3bac ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x28a3674f ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x71014a67 ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x839ab028 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xb4c9e9a7 ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x2fc896a1 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xa6c57f3d st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xb742d315 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xec73679d st33zp24_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x173956f2 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x5afd3f92 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x73b72395 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x467cb88a dw_dma_cyclic_free +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x5bb87b46 dw_dma_get_src_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x9b29fc96 dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xd0a8a937 dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xed87dc89 dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xfe065543 dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/edac/edac_core 0x973fe285 edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04dd92ce fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x14d7f94e fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1e1d0c52 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1e7f84e5 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x202d52d2 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x27e05032 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2a60b933 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x43994ba3 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x43c71474 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d5d4eca fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x59844d4e fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7008c76c fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x756490ff fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e431b14 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x89f4175c fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x970e8ef5 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9f213035 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0xad8464c7 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xae0925a3 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xafcd8c21 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb023a34f fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb3084171 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb410c1f9 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc1b2b937 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd549d608 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xdc745a5d fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe77f0d24 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf8fd695b fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfba28d27 fw_fill_response +EXPORT_SYMBOL drivers/fmc/fmc 0x1b7ad5f4 fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x23a940c4 fmc_device_register_n +EXPORT_SYMBOL drivers/fmc/fmc 0x4b1cd3b5 fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x62520db9 fmc_find_sdb_device +EXPORT_SYMBOL drivers/fmc/fmc 0x7c59f025 fmc_device_unregister_n +EXPORT_SYMBOL drivers/fmc/fmc 0x8096ced2 fmc_reprogram +EXPORT_SYMBOL drivers/fmc/fmc 0x9ec88b6d fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xa08fe49b fmc_device_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0xa8c090f2 fmc_driver_register +EXPORT_SYMBOL drivers/fmc/fmc 0xc64b83da fmc_device_register +EXPORT_SYMBOL drivers/fmc/fmc 0xf98f68b8 fmc_show_sdb_tree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x012d2a3e drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02481838 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x033f411f drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x035bb489 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05307e11 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0749cf86 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08bd9f1e drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09998c38 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0baaf61a drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bacf8fa drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bbda8c9 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d8f1d19 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e96e0ca drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fccafb1 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10543f20 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12e9c5cd drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13275d26 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16b418f5 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1700f075 drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x197f5631 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a2861d0 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ae25e4d drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1af458ce drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b73be9b drm_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bbdf993 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bd7b581 drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c48846e drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e71d256 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f54da5b drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f7755d1 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20d40629 drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x212064ec drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x214f9830 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x224350a5 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22c449cb drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x230b7afc drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2452e6d4 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x261025c8 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27ad4d30 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b456a33 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b875134 drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c6792c2 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d3436a3 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2da3a0f2 drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2dbfb229 drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f248d78 drm_crtc_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f58e63d drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fca52d6 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3204f760 drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32e2fe8e drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x338d9909 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3440a250 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x346127a7 drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x372ed8cd drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37b5c883 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x389c015f drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39c8d7d3 drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ad53a0e drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b6dbaf3 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba73803 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cd4c769 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d8283c8 drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f9b8d97 drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fc4535c of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4185e9cc drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43bf1b1b drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x447e03c4 drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4573b09c drm_platform_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x457486b4 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x464e3e6e drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46650bcb drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46d9de56 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46fc07cb drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47d08b44 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c0028e2 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d49302c drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dd5d82d drm_encoder_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e092bff drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e44a462 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4eeec163 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5024eb4a drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50cf5c53 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51db353a drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x522f7286 drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x543bc14c drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54c1ada1 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x554d66bf drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55c80461 drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56af0f39 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x588762b1 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59edad33 drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a268d54 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b4a2725 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b628739 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bd908ae drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d3d80fe drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d802d04 drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5dd834ba drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f80e9e0 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f8cade8 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61760971 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61d3246f drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61ff67ba drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x623d4609 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x626fe8bb drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62b72dbb drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x630caab9 drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63b37462 drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63ded0ad drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64a33e17 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x665c1806 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x673cc9e6 drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67f69161 drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68b54ec5 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68e940ff drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69696fb6 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69a56008 drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b836249 drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c51856c drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d39d783 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d5f28ac drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6da8378c drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6db66aad drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ed5bdaf drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f2f55c1 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70bf2a8f drm_framebuffer_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70e612d4 drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71263b95 drm_plane_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x723785e7 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7318315e drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74a7673f drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74eac32b drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x753f99bb drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78206c23 drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79250ee5 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x797e15bc drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7987cd89 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b160c3e drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b32e83b drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c425504 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7deb1f6f drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f4d90f4 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80a57e9e drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80d3d0e8 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80d46e67 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8126a91e drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8146a3c3 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81fb20b1 drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x837c85bb drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x839bec96 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x860b29ba drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x864d3edf drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87a0a4ac drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88fff3a3 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89119355 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8abcd9b8 drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ad8ef62 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8adafa65 drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c606381 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cf191e3 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f6d9b60 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90169ad0 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x909791b7 drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x909f2c0d drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93084d0c drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9313f836 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x940dfe5b drm_agp_bind_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9568c53a drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x977cdf68 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97936d44 drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x989d7193 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a824fbd drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b23b5df drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c4b9ad2 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e40e457 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa03abc0a drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa03f2531 drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa15a8253 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa29eb83a drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa31bfe49 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa335d2d8 drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa33b1342 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa382021f drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4ebc086 drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7f9e7fd drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8869c80 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9411773 drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab10c837 drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xadd41838 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae620466 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae83b084 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf1d0784 drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0909a40 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb125c4f4 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb128ed28 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb19e8a38 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1ba9c3d drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2392663 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb32ef28c drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb336fd2f drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3c663e3 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3cafc35 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb525cb24 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb58d4cca drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb77eea0a drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb83cbdb4 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9398e18 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9deb24b drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbd193eb drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbdb9902 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc9b940c drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd5ac725 drm_legacy_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd873ca1 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe3c427d drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe97ba67 drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc16ea9ef drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2001508 drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2f87238 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc30abdfa drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc853658d drm_connector_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8ae0956 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8af7734 drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9b2e630 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca157209 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb015fe9 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccd77615 drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd624cc1 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce5432f1 drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce7442da drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce9803aa drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcea8de9d drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcedb149d drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf34731f drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4d47f79 drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd557dc31 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd58e4bf4 drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd724da75 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd754f6ba drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd90ab18f drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd967b851 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdac455e3 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc45cf71 drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdca8d136 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd9a7c6e drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde52f986 drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2e82ce2 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2ffd7a5 drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe83ef772 drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8c0cb4a drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9d60728 drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea69ec22 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea6d1845 drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeabbc768 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb609dc1 drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb87c5ef drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebe1082a drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec245d31 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec9b2201 drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xede47303 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee12b897 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee1736e4 drm_atomic_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee64bff5 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee7d6899 drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1591bd3 drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b098be drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf29fbca9 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3a320ac drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3b0439e drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5b44230 drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf60ddd45 drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf765e8b3 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7a4622e drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7afacc2 drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf85bccb8 drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf90b4291 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa5ddec1 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb4ad8ee drm_connector_unplug_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc241fbc drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc5499c3 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc7455da drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc764ab5 drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc7fc43b drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc887d64 drm_framebuffer_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf7d979 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd2aabee drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdd69dbb drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe8bd176 drm_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfed58cee drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffa9e704 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01533137 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x030d06a6 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03127352 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x032b8585 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03a143cb drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x081a81c4 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x090b8e6c drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a00cb4c drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0afc3640 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b041224 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c58a7d2 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0cce0757 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ff36431 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1339dced drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x138df3fb drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x155ae67a drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x175dcc3d drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x199c986d drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a9316a2 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1aa2327f drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1aa9527f drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c7c67d7 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f3b8cf3 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x200fdffc drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x238c0d6a drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26a81554 drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29c8fba0 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a4d5c84 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d34a645 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36af83b3 drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x398e07b4 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39f265e9 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a7af9b0 drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b558a15 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c94513b drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3caed7b8 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e4eb0f2 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ef8485d drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x436b76a9 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4432d26c drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x445a30d3 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x461f75d0 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x488fc4be drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48e146b4 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4cc8b515 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50161ec0 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51723de9 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54584f17 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x546b4d45 drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56625ca3 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58dc09bd drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e7c8175 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5edfe26a drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x600de998 drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61357072 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6199d59b drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61a9ced2 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x634e1a8b drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63dc2e03 drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6679bf5a drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66e971f3 drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x677f6161 drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68d4316f drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69aa539c drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b44c801 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c970d6f __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ee5776b drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75397635 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78df32dd drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78e57600 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79ffab76 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ce9218f drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d3d7b16 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ec66bb8 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8038e77f drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8066227f drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82234849 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84742f32 drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84ee5ae1 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8593ff75 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a815efd drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b79e2b3 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8cf424ea drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8dea6bbf drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x945c8dd0 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x957dca6a drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9cb1407f drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9cb713e4 drm_helper_probe_single_connector_modes_nomerge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d444e7c drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e13ca99 drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f49badd drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0cf0f50 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa22aecbf drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa340df8c drm_helper_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3e04c88 drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7356e73 drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7f77ea2 drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa7a48bb drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa8ecbf2 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac2d9807 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1bb98ef drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb236ad72 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4d0a1cd drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6679ac2 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb902a635 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc352a95e drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc476b77f drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc49fba5f drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5252e40 drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc553d29a drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc77e7758 drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc87a73ed drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc87eab88 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9dbf096 drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca6a191e drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcaf6555a drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce4d6093 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce995fc6 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4f425cf drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5048806 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd75814d7 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9c9c436 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda9353a0 drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdafc7722 drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb7644f2 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbe755e8 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde9d23d5 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdebfd4f1 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf3ec4be drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec2adfc0 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf316b971 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3b73d08 drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf40310fc __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf64794ea drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7123ffa drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8d766de __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf96f8d3a drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfba18034 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe50afdf drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfef00bde drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfef04768 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff9a351e drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x03f491f9 ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x07c91bf5 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0aead641 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0ceb76ca ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0e1c0dfe ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x111694fb ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132b05be ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x216b08af ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x23c5ff8d ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2bc32617 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2d8786bd ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x38a279f0 ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x39800037 ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3ccdba03 ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3fe437ba ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x44fd0f06 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x463179c7 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x47b1a10d ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4ae9437c ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4cdc68c7 ttm_agp_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4d674fc1 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4eaae86e ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x519b4ce3 ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x52b20b7f ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5704cbb1 ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x579705ea ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x58d27fca ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a8fdfea ttm_vt_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cf59609 ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x60cd1418 ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x621115ea ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63ee259a ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x668eee11 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67b1d568 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c4478ba ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x707f652b ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7215f34a ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d55da85 ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8076df2b ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84a13931 ttm_write_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89a443de ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d14adbf ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8e3c2f58 ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x902d65a8 ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x962d78f7 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d0eb91 ttm_ref_object_add +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9c5db822 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa13e566f ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa1725535 ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa2337831 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa265b99b ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa2a129fd ttm_suspend_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa563b21c ttm_agp_tt_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa73de2a9 ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb794f943 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb83c6470 ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc04b5102 ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5f0c2da ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc71b63f5 ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc9bb1e02 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcb2cbf56 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd7f51742 ttm_suspend_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd93f78be ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe1b846f9 ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe4909605 ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe7ad1bce ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe9cf9d23 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xece65422 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf03595ea ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf7ff8b6a ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x1eed9b12 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x3915292f i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xa5e7e1f8 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xfa98c72a i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xfcfd839c i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x9fba339d amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x29b0d001 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x32f0b592 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x37e1a1be mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4205b93b mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6ddeee3f mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x83243a6e mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8d335f34 mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x93f394e6 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa5468868 mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xacdcd235 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xaea94d63 mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd48406d8 mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xdd9f763e mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xdfea7b1a mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe47dea9a mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfe1ddd9a mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x0b1a08e3 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x7d56d838 st_accel_common_remove +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x43c3bb2f iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x533f5fa9 iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x0cfe8154 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x3d98df4d devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xcc539a03 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xdf4a5c7f devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x1ef0fb48 hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x1efc8275 hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x24d177df hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x8792e6b1 hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc6618a24 hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xcb0bb0ed hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x2116b6f6 hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x6065c63c hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x99dd859c hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xd8358991 hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x238c6267 ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2396285f ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x57de82cb ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x6e1900e2 ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x9ee57d46 ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc66577d8 ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf3a67f37 ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf72f6395 ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xfd6c543a ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x3af07919 ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x5a199405 ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x6bf772fe ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x83460f53 ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x8c65c1ae ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xc5c77c21 ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xd0508fb7 ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xf9c5b3a1 ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x06721fd8 st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x13b1dacd st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2b671806 st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4188d75a st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x457880be st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x60d0c116 st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x6330258e st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x6cfae357 st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7422b5bb st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x818a7188 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x85d85d45 st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc6bc0540 st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xcc1599f0 st_sensors_get_buffer_element +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xcc6de77a st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd4176fb8 st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd4fd8fb3 st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe975e309 st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x7171ddb5 st_sensors_of_i2c_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xd435d971 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x15f1f4b2 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xef1c662d st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xfd1a7179 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/humidity/hts221 0xea05ffa0 hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xdbead554 adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xf78ddb05 adis_enable_irq +EXPORT_SYMBOL drivers/iio/industrialio 0x05af6f3e iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x1a1de9bc iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x2b4deae2 iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x31ddf5b4 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x4f389235 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x50008d79 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x53cfd9ab iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0x5cc52946 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x67bd7d78 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x726c6243 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xa15e3fb5 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xa5bb430b iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0xa6aa973f iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0xc000ee2a iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xda766f3f iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0xde4b5448 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xf6eb6008 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xc5f4329b iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xf374289d iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x74f7bcd6 st_magn_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xd7eeb137 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xf171f867 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x24a567b1 st_press_common_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x4b98969f st_press_common_probe +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x049ace30 rdma_addr_find_smac_by_sgid +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x133bd986 rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1ea5767b rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x32a8402c rdma_addr_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x701361af rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x8ccc1a84 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xf298ec5b rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x028b8869 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x15677a9a ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1d8f2093 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1dbbb44d ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x20449aa3 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6c852213 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6f543411 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7c348587 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x80da2129 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x828af252 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8d4b8b35 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8f8c2ee1 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x913f1c55 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x994560d8 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa2ef602e ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc1da56c5 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc3b0403b ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdec41a86 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0145ae6d ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x020d6767 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x063c0297 ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09732287 ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e2d9144 ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f759549 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12b44ac4 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16f43341 ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1920bbe5 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1bbb5be3 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1cb50cee ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d61edb0 ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x249f643e ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25feb9f5 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26471304 ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29d34f4c ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34cdb330 ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3623aee5 ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3845d76b ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b534f35 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40116af0 ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4070ec9a ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40ab5e79 ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40e1cc29 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43364abd ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43e47158 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4747914d ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49f8310c ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b8d9f9a ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4cd2cc27 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4fa28539 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x526714db ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54a39df7 ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a0c1fb9 ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e0cf57b ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e93ec64 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63d38c5f ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65a0dfd8 ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x702bdfc7 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71d8512f ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72819f16 ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7323222e ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74f6f22e ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76d65725 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7726ca73 ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78bdc5fb ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79740e27 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e48d695 ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x820199c5 ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a18fb20 ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c5e3fc0 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d0cf383 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91c827b6 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93181f98 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93f777b4 ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95b387e2 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97060665 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99cd43e7 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9adb7092 ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9edd2bdd ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa23299e4 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3929b17 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae32fd24 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1048d86 ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb672ddaa ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb78418cd ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7e88346 ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbdb7ece8 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3b0891a ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4cf0d0b ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc630bad5 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcaf4efcf ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc4907cf ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd30071a2 ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4feebb1 ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd51149d7 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd79c728a ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd99785bb ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc44bd43 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd225bfc ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea52f663 ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xebf5e094 ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa508e51 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x1573f647 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x1a246a72 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x25b0ba8c ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x30846c86 ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x39d425bd ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x515262ed ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x604cdcab ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x89fd0476 ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x91e8d78b ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xb561e8e2 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xcbeb8ebc ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xda3addaf ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xe81eb813 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x05d497d9 ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5328d7a6 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x6615fd30 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x79469f7d ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x7d133c54 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x8c4484a1 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x8f747852 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9a1cd50d ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xa014f86e ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xdad6db0e ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf6c1b0b6 ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4fc98aa6 ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6d01e846 ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x15243dd1 iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x30eb301a iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x330b8476 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x41f12dce iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x599bad46 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x67f45c68 iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6805294b iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7a649804 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8b70d01a iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x92c5e629 iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb1a7753c iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd23a9061 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd594680b iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe9133ea0 iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3091eb3 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x015cf147 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x13443ee1 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2d1b9ba1 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2e88df6e rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4a5aa925 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x586604f4 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5a9befda rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5d043236 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8903ae33 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8d3cec38 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8ed5e118 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x92ca246a rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9680ed58 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x994821b7 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa15e3024 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb403fdfc rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xba473f2c rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc8d0ad20 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcbab717b rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcc5fb1e7 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd9026b1f rdma_set_ib_paths +EXPORT_SYMBOL drivers/input/gameport/gameport 0x393426fd gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x745522d3 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xa150f579 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0xda244571 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xded7aaea gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xdf211b52 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0xf7f94eef __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xfa6ae38e gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0xfbb13df9 gameport_unregister_port +EXPORT_SYMBOL drivers/input/input-polldev 0x2129d558 input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x9aff20cf input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x9cba6614 devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xb6a722e6 input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xe694aada input_register_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0xdc0841a3 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x0fe2527c ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x3d6a99ca ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0xb5d7094d ad714x_disable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x011427f8 cma3000_init +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/sparse-keymap 0x17ce7f4b sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x2737ef5b sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0x28d7546a sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x4153754c sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x9f42ec8b sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xaab1cb67 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x215b2f18 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xfa784896 ad7879_pm_ops +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x0a205933 capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x161840e8 capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x481516ab capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x5bbafd8b detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62f9e147 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7d43c839 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f6924aa capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x94fe587b capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x98eac0a0 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa7c4fd6c capi_message2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc10fe128 cdebbuf_free +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8ad9bd1 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf0ec0aee capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x1166d21f b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x3630b302 b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x40591cf6 b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x65d0b40a b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x6719f22f b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x7f48bde2 b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x9cec3701 b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x9d67959a b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb118a9a3 b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb1c761e4 avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xbc3f3158 b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xbdecbae1 b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe4b673d5 b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf498f99b avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xffa9d254 b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x01f1bfb9 b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x0eab1a1b t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x1704fe96 b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x1a26d438 b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x9782cb70 b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xb15405d0 b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd07ebbb8 b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd9aee56c b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xdd3fc16e b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0x29562993 b1pcmcia_delcard +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x0310a44b mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x0cca7df7 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xad1fd393 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xf11a5d89 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x04c23dc2 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x499e73a3 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6a04d6dc hisax_init_pcmcia +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6fe1ca04 FsmDelTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9f987c85 FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xa1bc94b9 FsmInitTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x0253d67c isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x17f873b5 isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x467f650a isac_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x77322151 isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xc91186c5 isacsx_irq +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x992470cf isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xb4a2350f register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xc6eafa5a isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x24bbea31 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3b374195 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x43417c05 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x49089907 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x52750a1c recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x56bcab56 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5778c481 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6444c7a8 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x691d69d8 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x761ea866 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x86ecb20c get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a6eca66 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9077dc06 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9cd4cc38 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa0c90f3d create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb142e5af bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb3f659c7 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcb8a6995 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcfbdfd21 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd11fc074 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe31ddf80 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xeb11bb69 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf6019995 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/md/bcache/bcache 0x0c4d0956 bch_btree_sort_lazy +EXPORT_SYMBOL drivers/md/bcache/bcache 0x0efa2951 closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0x10dc0d06 bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0x66d28e22 bch_btree_iter_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x6969b5d8 bch_bset_init_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7ad2c040 closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7b55ca4f bch_bset_fix_invalidated_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0x9e8b3cee bch_btree_keys_alloc +EXPORT_SYMBOL drivers/md/bcache/bcache 0xab2d2b84 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0xac097021 closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0xad29a6f5 bch_bset_build_written_tree +EXPORT_SYMBOL drivers/md/bcache/bcache 0xaec09a2b bch_bkey_try_merge +EXPORT_SYMBOL drivers/md/bcache/bcache 0xaf77343c bch_btree_keys_free +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc04554f7 bch_btree_iter_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc0b9ef00 bch_btree_sort_partial +EXPORT_SYMBOL drivers/md/bcache/bcache 0xca580595 bch_btree_keys_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0xd1a02451 closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe47e0829 __bch_bset_search +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe67c2d16 bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL drivers/md/dm-bufio 0xa7978f56 dm_bufio_forget +EXPORT_SYMBOL drivers/md/dm-log 0x23524201 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x83c39c8d dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x949e5564 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xfe9a61f4 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x0e118cbf dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x29eabf27 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x358cbcb0 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x4fca5c58 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0xe6caaf7e dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xfeb7a81b dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/raid456 0xf7c97b73 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x040cf1a5 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3f647275 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x43443728 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x63485b3b flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x65d3b911 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb4a6c404 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xbc1af1c3 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xcb0641f6 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xcc8c3035 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdef2180c flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe549a74e flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe696b174 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xed3b50a0 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0x30cb4cd7 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x35306197 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x903a0f52 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0xa13757b6 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc72da78d cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0xf86b0cca cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x4a2405fc tveeprom_read +EXPORT_SYMBOL drivers/media/common/tveeprom 0x5eacf2ea tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x09b765e1 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0aab97b9 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0cdddc43 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x14d08350 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x169fd2a7 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x16f75efb dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x19591134 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x22d6ce4a dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x28ee2ae8 dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2c625e88 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3005d8bd dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x34e53620 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3f7224d5 dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x436936b9 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4d3b9a9c dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5978d63b dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x65886421 dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x69a9ac6c dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6ccdc299 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x73769df9 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x75274f0e dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x76262ff6 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x78d62338 dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7979fb89 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7ba5d8bd dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8e47dce5 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x920028d3 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x92e5d612 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x96f1af9c dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9e8d298e dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xab9622a8 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb0b1ea95 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc131dc03 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc8368b5b dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcbe1d471 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdb576668 dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xed481421 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xed81e0dc dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts +EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0xf8a2aa5d af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x7f5ba161 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xf50a3373 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x25984ae5 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x358b1b8c au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x37b71878 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3bf7874d au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x63cc6938 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x93f7e480 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa7b8b16f au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xaea3da1d au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe1ee624a au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xc7b1bd13 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x5fc3021f bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xfc299dd0 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x92555d83 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x33b0510c cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x0afa59e3 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x3df245f8 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xeaf7426c cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x95b33b4f cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x07192c91 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xc0b6ff8a cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x3fcda2af cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x2408fb3f cxd2841er_attach_t +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xce4b918b cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xdc19a293 cxd2841er_attach_c +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x0774d0f3 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x25de784d dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x70d49cba dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x8c4783e2 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xd1c6ac49 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x03891652 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1d45d5df dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2bf3d67a dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x354463c1 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x35bafe83 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x38b8e7b2 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x40c00f4a dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5d3c1f26 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x723a9d28 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x767ea19f dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x868a3c7f dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdec14efe dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe0a8d410 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xee72c573 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfdbad58b dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x2da0ec4c dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x09674575 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x102352e3 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x24e79c30 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xb6898c95 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xf0492ab8 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xfb010400 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x87d5ab26 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xa8804454 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xdc4c59e2 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xee265411 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xb65b9c0c dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xeba649f0 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x3c0713c2 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x42879b19 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x49dc9a3a dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x4e06a1ac dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x92fc8cd8 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x002e5b85 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xdb5697a9 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x28b9b2dc drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x09d58189 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xd54ad8b5 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x523f229f ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x47c98818 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x7a209d3e isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x43876a1c isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xe4c5ab0d isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0xf754289e itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xd5597302 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x71a74eae l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x4789de8d lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xd88a6935 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x7a7226fb lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x8ea488f5 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xb9983da4 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xb94a657f lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x3261609f lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x3d589d48 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x74f7560d lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xc0311c98 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xcda218d4 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x3db38d5f m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x6db6f4b4 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x32c1d64b mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0xc71cc9c4 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x5af969d0 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x7728b898 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x25aa701e nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xccf648ad or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x245be5d5 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x40cee44f s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x5867de9b s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xa781f244 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xdbf50f26 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xba77a2d4 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0xd5b90ff2 si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x2d023f5c si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x5f31d108 sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x0c8413c9 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x48a5bc15 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x270e3707 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xfd3e6a16 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xf9849d0b stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x948e244c stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xe4233028 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x0d05140c stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x0e5c2c16 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x9e9c6f89 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x6a017622 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0xbc602402 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x992f0518 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xfa5b9f2c tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x17d3aad8 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x331b7b1b tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x0d5c3d91 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x394995f9 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x5bb91991 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x744a5054 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x91939d8c tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x12a0fa57 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xc114fdd9 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x2b42e69f ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xecc4aac6 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x05210a13 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x333816bc ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x2f21315b zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x27e729dc zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xc5051553 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x36603b5a flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x400eea3e flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x507d4d18 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x71152096 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x8e4cd845 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9c71516a flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc6c7d8b6 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x1cce4a32 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x27149415 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xdadd029c bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xedacd8d7 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x3b5ac3e4 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x809be7e8 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xa1feae55 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x0409f3a9 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x535eb9ba dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7dca2364 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa1f3f06e dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa62e2649 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xaa91ef8d read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xbaa5d98f dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc505f918 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd9a1dcdf rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xfb888142 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x02ba98cc cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2a927778 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x4cad8468 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xbf2a5c02 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xd2f874cb cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xbb7f6deb altera_ci_init +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x282a624b cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x33379378 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x5459f0f7 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x70656b21 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x8fedb5e6 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xaca556f4 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf183ca8d cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x24a63b41 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xf703ace2 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x099defa4 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x8e006bce cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xa42b4275 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xfe2a0ef0 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x0445a520 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x05ef6abc cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x0ab718c1 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x171548fe cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x44849459 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x53b1aa09 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xa023dd37 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x01292129 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x01958bd7 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0932d4bf cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0c5dae01 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0c675c6c cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x127b597d cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4a89c528 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x56bed297 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6f633b5b cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x73d7ff38 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x93f4056d cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xaa1ffaa5 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xaab9a70a cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbe4e7070 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc03c6b8a cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd9296874 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdd7f7c5c cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe648b4f3 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xef575c2c cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xefb2b2bb cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0b7b2420 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1f68578e ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1fd12693 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x29172e11 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x34cb39b4 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x42a922fa ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x447fc2ee ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6115a3a3 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x67385d32 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7bef5244 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x875904cb ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa372376c ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb0949c1a ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb4841404 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc68de535 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc898623c ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe1207869 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x10f7410e saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x10ff008b saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x28971448 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x57b97f4d saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6a42752b saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6cd8dbcb saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x811b71ae saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x96ccf269 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xacd74a9b saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb2a8cce4 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd93eea96 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf8bc43ed saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x6ccf0049 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x6c3af5ed videocodec_unregister +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x85057ba3 videocodec_attach +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xa1f529b3 videocodec_register +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xb6c93c37 videocodec_detach +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x1aa8a2d9 soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x499050df soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x56fbffb3 soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x6949667c soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x95811550 soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x9fb404e6 soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xcc4167a0 soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc +EXPORT_SYMBOL drivers/media/radio/tea575x 0x05eb6ae6 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x1fff7d3a snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0x25c4dd1f snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x2b67064d snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x3068d448 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x667a245a snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x7689d9e1 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x2a7aa025 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x3e5fb922 lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x55058bc6 lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x67015637 lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x83d9b60a lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x887eb941 lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x950070eb lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x98f80302 lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/rc-core 0x4bc21b81 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0x641233ed ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/tuners/fc0011 0xba995aef fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x383b7269 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xb13a4652 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xb7dea7fc fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xf9fae556 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/max2165 0x60fd2974 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xaf2616a3 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x19a9bdb9 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x21e10a9c mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x157d20b3 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x1b440b74 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x6cd22399 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x2d453c9b tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x750a1a79 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x64dd80b5 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x0f67289d xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x0fe1fd16 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xc8293624 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x14c6c6dc dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x16723177 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1fb8637e dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x45fcaaef dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5ab5b363 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x817d5764 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x94e84801 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x99cef694 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xe49597a8 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x120cae0a dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x15cd535d dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x18d0e12f dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xacdf2b2d dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc5cf5c14 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd05aaeef usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf1cfbf8c dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x7aa03e2f af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x0961848c dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x283662aa dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3b88bcbc dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3fc73147 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x561445e6 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6f9a4d8b dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x75a51d0a dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8ee57596 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa9f793f8 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd92ac2a6 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xdd5ec94d dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x223154a1 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x582868b4 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5588572b go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6a476190 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x84278b97 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x8f0a1403 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb094c9c8 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xccab860f go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd2cce6c8 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xdc3ea782 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe5bd5594 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x438acd7e gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x65ca40e3 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x7d286d6b gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x813cdf24 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa5f28495 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa73e1058 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb1722497 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd78e6bc3 gspca_resume +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x166d088b tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xd6b2ffde tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xd78d63f0 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x10e58be5 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x3b228a2f ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x0e3fb33f v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5a70a440 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x67dfc476 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x279e889d videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x64c12876 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xa9661e08 videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xb926a6d0 videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xcde15e28 videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xd06c290e videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x4fa73a57 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x56f5aa10 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x0b5ce97b vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x160f1cef vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x320312eb vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x69334c90 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x758df6e4 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xf099fef7 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0x8f310052 vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0643c5a6 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x08ed703d v4l2_of_free_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x09d795ac v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0af82c9e __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0b7d9986 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0c6ee9f2 v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x120a0399 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x15e49b10 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x17d2745c __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1ccb976e v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x22c87317 v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x252be421 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x268f1ad2 __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2b4d2d80 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2c14d17d v4l2_of_put_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3506a132 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x35cfab12 v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3a22c649 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3abad828 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3c92d95d v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3cdabed1 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3e407ef1 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x40b1348c v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x41828d51 v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x449cea7b video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x53ccb74f v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x58c998cb v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x593d9dc5 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x599cf4fa v4l2_of_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5a6bdac5 v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x631671ba v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6aedc544 v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6dcc01fb video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6e05867b v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6e23b74e v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x834f5801 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x83d58555 v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x848f712d v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x86d1522a v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8a2e42c4 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8aff4536 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8bdf8ca3 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8fbe5da1 v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x939151e1 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x98e51d31 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa3f0bad5 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa5366a55 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa8514e8d v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xab561a90 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xac4fa60e v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xad418b9b v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb005e449 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb17ad9af video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb5ac304f v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb98d54bc v4l2_of_parse_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xba2ae530 v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5a583f video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbcfb3f4c v4l2_of_alloc_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc950f16b v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xca4de680 v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcde13d72 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd357d93a v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdb9620bf v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdecdcb36 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdf595f56 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe3a7a93f video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe8536184 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe9bbdc43 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeaeda9a0 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xebd99706 v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xee31b59c v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfa989b73 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfdc29bc1 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/memstick/core/memstick 0x0166e791 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x0df53b52 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x37155f61 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x39650806 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5b5c17c8 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5e32d5ec memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x89a25b66 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x8c9b5da4 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa26b47f5 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb140b5ee memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xbc86d4de memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xbd88dc98 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xccc45746 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe6416b9e memstick_add_host +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x05271393 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x067676e9 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x08926cdf mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x08fe1086 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x16ef2199 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x225b2dc2 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x22d1340a mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x239587e4 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x23adfcff mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x28707b2e mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2e067b48 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x37b8a8cf mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x418b05eb mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4721a3d2 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x58120c52 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x69f38828 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6b91f186 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x756bb072 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x832b475e mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8532e09b mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x85c597c1 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x87c9fcca mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x96f31d57 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaf94e287 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbf0010ef mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc2c892d9 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc7797629 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdb83b9d8 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfceb965e mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x07ec5b1a mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1981fcbd mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2cfe9386 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x41f133cf mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x459b0ec6 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x47f5f994 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4ab05d48 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x53617d03 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x642507cb mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7c7d49cd mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8cd3717f mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8e024a74 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa0459e12 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb098a8a1 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb4c05a1c mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb7ff010c mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc1cb395e mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc5661e4f mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc9595550 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcab3c858 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd32f51b1 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdbdb7a4c mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe5a7641c mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xec7b5795 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf168d115 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf33e90e4 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xff0298dd mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/mfd/dln2 0x807909b3 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xa87600db dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0xd60e8218 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x07e82859 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x11ce356c pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1c434636 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2d933189 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4cb5a8aa mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5bc6caa5 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x61751803 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7ae28860 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x97eb918c mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xaeab79bf mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb0f0c7f3 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd916a169 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf6ab7eb2 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 +EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 +EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib +EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led +EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw +EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x6dd8e1c1 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0xc3b68c5b wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x4763ae84 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x869d6237 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xd801aca9 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xea3b1730 wm8994_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x57c1ba5c ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x695dedee ad_dpot_remove +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x37cbc168 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x27b59c29 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0xe9d53e4a c2port_device_register +EXPORT_SYMBOL drivers/misc/ioc4 0xa27ba3bf ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0xb2c66acd ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/tifm_core 0x00f8126f tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x21996685 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x5aca857e tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x64d56bd1 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x8c1d6541 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x9b3e0458 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x9de372f7 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xac2ef4b0 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xbbdd2876 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xd53afd69 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xdf57a4d7 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xfbc4b44d tifm_eject +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0x64badc34 mmc_cleanup_queue +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x37f009b0 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x4809ac6c cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x50b316cc cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x772b10d3 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc9b8755d cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xcd78d1e0 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xfe0e4d14 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x4b9ce21f map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x8e4e991f do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xa2c6ed08 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xc7b1ebd1 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xae37755a mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x58004079 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x7c989425 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x16ce9fae mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0x6881da23 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/nand/denali 0x2b5bd34d denali_remove +EXPORT_SYMBOL drivers/mtd/nand/denali 0x8ba22952 denali_init +EXPORT_SYMBOL drivers/mtd/nand/nand 0x13a14092 nand_scan_tail +EXPORT_SYMBOL drivers/mtd/nand/nand 0x65bde34b nand_unlock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x7e1b8eff nand_lock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x84d59e41 nand_scan +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/nand 0x9b3352e0 nand_scan_bbt +EXPORT_SYMBOL drivers/mtd/nand/nand 0xb26f21a4 nand_scan_ident +EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x69c7cf4d nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x8452c99b nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xc22c347b nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x189d5e39 nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x65791289 nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x8cfcf75c nand_flash_ids +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x2eb0e9d7 onenand_default_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x39f0bb41 onenand_scan_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x5b0ddf13 flexonenand_region +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x93dd3f27 onenand_addr +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5528d902 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5f0e24e6 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6327050d arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6591ce2a arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x712772f4 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8b03a024 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8bfbc243 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa0abfc98 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xad314250 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb0d20f0d alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x2bd5206f com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x8c04de42 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xf9663596 com20020_found +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x23dba2b2 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x25a23267 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x352b213f ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6cf35e2a __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6d3b7200 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x788985c4 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9944ad22 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xaeb27358 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb5f00af9 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xfdfce5bf ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0xacf99153 bnx2x_schedule_sp_rtnl +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xe1c5571d cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0bbaf9b2 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3b3024f5 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x52b96a05 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5517369a t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x585f9ca7 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5c7bc16d cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x619bc724 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6855bc04 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7e1d83a2 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x947d4d81 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa94fa28e t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb3f9e4ca cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb8128a3c cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbd7c09f2 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbeeb3cab t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd0f5da74 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0019b081 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x028bf510 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0d505ec6 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2813642e cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x287f6723 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2ae5f017 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2bcf0b19 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3856b0b0 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x493beb41 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50f5155c cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5118a2cb cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x556972c5 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x59f39023 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6ce3ad3b cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6dbf4786 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8574bb15 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9874d089 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9d305c59 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa4341e24 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa5f9f244 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaafbf9f7 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xad4ff4a1 cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb62e65cf cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbe821ef8 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc31fe90e cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc34b98ea cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcb9c06b9 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcca67b40 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcd12b6bd cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd087e41a cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd1e52d6e cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe20a44c0 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf1e17dde cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf5346df5 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x098fe98e enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x32c78ad4 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x60657651 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xbb12191d vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd09f6b67 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xe7a5fe35 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x66799694 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xb0129373 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03e648ce mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1109a4a1 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x121df6ef mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17fdcd67 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x352fc4f6 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3576746f mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3be30237 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3df62a08 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x402a4528 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x470c90f3 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5058cd91 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x518c9ec6 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5610af4f mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5983d4d4 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5acc69be mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c1a54a4 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ea41f42 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65e2b48f mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x680c2bdd mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d4b90fc mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a4b15e4 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c646280 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa15909a6 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa302be5c mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5a77141 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaad6329f mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab22dd16 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0234569 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0473a5c mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb053846b mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb739841 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd247015 mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc436c8f4 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc673846f mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd315eea8 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5c7521b set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe99b1118 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc86be00 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0857aabd mlx5_get_flow_table_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0bf8b68d mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb7287e mlx5_del_flow_table_entry +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f6e58a7 mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0fbe7737 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19c25660 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2640cf3d mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28b9d5ba mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b005155 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x374a9c47 mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x518d550e mlx5_modify_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b8fc4a6 mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61f821a4 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64fa8889 mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6fe39818 mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x720d3be0 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75e1d64b mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b1c0980 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f2ad514 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d9d787d mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9053c880 mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91f69b9d mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9cdcc24f mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e204e68 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f349ef2 mlx5_query_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0f4d6f6 mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4f65669 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9614472 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa0ff92a mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb03e08ee mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb57131d8 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8b2ca26 mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc064ad3d mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc13bba3b mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3d64739 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe21366ca mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6af33e4 mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9f2193e mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5a90d0e mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf98a8123 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc4052f9 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc728a49 mlx5_add_flow_table_entry +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c16129d mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x449b1842 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x69813353 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9f8c8744 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa2292ea5 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc4952f7a mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcb5c8545 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee8e0771 mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfff690fe mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x755706a6 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa209d1af qed_get_protocol_version +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x4781354e hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x809fabb3 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x8c521f99 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xe725d20a hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xf8040501 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x0037046d sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x00867d99 sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x0af4e5d4 sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x23210ba1 irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x63a4fbe9 sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x9aac8949 irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x9f03f8a5 sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xbf2509d4 sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xdb0b503a sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xde262005 sirdev_receive +EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mii 0x10131943 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0x78abe5dd mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x88dd512f mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0x8c67f8e1 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0xa07b56a0 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0xa5c9eb26 mii_check_link +EXPORT_SYMBOL drivers/net/mii 0xc28b05a1 mii_check_media +EXPORT_SYMBOL drivers/net/mii 0xe3bbb07a mii_nway_restart +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x430fcfe3 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xd45b431a alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x0f235414 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x17e23847 xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xf38cef99 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/phy/vitesse 0x5140cba4 vsc824x_add_skew +EXPORT_SYMBOL drivers/net/ppp/pppox 0x35706b5a pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xc8e61c9b pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xefefc858 register_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x93c19436 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x1688dfb2 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x3e194418 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x8189a551 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x8b8935cf team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0xce0641cc team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0xee06c6c9 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0xf068f5cb team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xf41a5195 team_options_register +EXPORT_SYMBOL drivers/net/usb/usbnet 0x8e480a0a cdc_parse_cdc_header +EXPORT_SYMBOL drivers/net/usb/usbnet 0xadb5db8e usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0xd38bfaaf usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xdc4df6c6 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0032dc9e unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x2093513c hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x21583e8b unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x2707ba29 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3e110d39 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x4b5c3bb6 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x57aea446 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa64c1eea hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0xbc7ccdb2 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xe29a312f hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0xe7256ef7 hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0xfc982217 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/airo 0x4dd8642e stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0x629b0600 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0xd4edb341 reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0ae30de7 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2d3b2631 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4bf6039b ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6b4c5665 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6c27bd5f ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x76e0eae2 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7aa2e70a ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x95906021 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb2584357 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc244f6ec ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc53297d4 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf8c8d00e dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x008ccb5a ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x21f5b3d6 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3210041f ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x51b16380 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x55ac3bb7 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x573ace21 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6d56a000 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x94886842 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xad17a1c4 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xae049ba0 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xaf56282a ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc380f638 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc7625268 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe1141748 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfdacf3bf ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2ac1a7c3 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5eb1163f ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8021ab92 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x98e70b39 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb78c6df5 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc8c1733b ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcf810d0e ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcfd27c83 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd8743cb0 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd9d83427 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf4f7067b ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x147f8509 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x185cab23 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2843ad98 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2b54949f ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x39a7d68b ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x497ff85b ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5353620c ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x603c63e0 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6c35fd4f ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6d150a40 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x758f0fbd ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7aa9d877 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8e6ac933 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9285a6b1 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x98148440 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x984fc4ee ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9d0095c4 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xab95bd01 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaed641f4 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcd8e8a64 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe1a33ae0 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe628854c ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf11e6307 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02aa6a2e ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05904272 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x086be4ca ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0870fe93 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b238616 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0cd94071 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f711e0d ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10d7d72b ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x116f0ee9 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x160bb256 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1980f297 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1c5ea9cb ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1d6b3384 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x24de8f42 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2535ffcb ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x274ff8c9 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x299abc5a ath9k_hw_request_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d3b0133 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d612e5d ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ebc58af ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3019dce9 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x30d9cc85 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x335a96b6 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3c837648 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x41194e86 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4192410a ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42e98429 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e4d5acd ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x508bf59b ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x50adfede ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x50fda9e4 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51b1648b ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54587c46 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x55d700af ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x56fe6e38 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x57d92d75 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x57f335ed ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x58275e39 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5d8a5180 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x62c5337e ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6362bcb4 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x666cef9e ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66728b34 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6888c209 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x68c72e53 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6a8fe889 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6adc9f61 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6c35ee28 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6cd9765a ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x71c1d45c ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a80e3f6 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81f16793 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x868d6ddd ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x88f459b1 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8b235ad8 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8b24558a ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d6214f8 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x906e4ded ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x955f99ae ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9b3a279a ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ec1aed9 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9fa155da ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa8d4a7f4 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa1d69e2 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaba58b4a ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb08f6824 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb0c57608 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2ab5a38 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb498003c ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb4c713cd ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb53c1ea3 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6635700 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6adaa92 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6fecf12 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbb13ef97 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbb76e8e2 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd81ed62 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe55daf1 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbef8c1b2 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc1919c9c ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc43d882b ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc52eedc2 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc59ac80e ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc6804c2f ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc8ebea7c ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb63006d ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd9a284e ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcfa2a7b4 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd28a16f0 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd2d24e3f ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd475597e ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6d64c2b ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdbd4662d ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdc31b7ba ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdc86278f ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd592342 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xde4e1d4b ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe372656f ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee45700b ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf5e98395 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf77483fa ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf890079a ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb4d1c77 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfce4efd8 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe4b736e ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/atmel 0x638c6fa8 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel 0x9f0fd786 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0xeaaf6458 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x06a01444 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x1c666f71 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x48a68b42 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x524a84b9 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x5d7aa6ba brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x7936c7e1 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x80b5fe8c brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xc0f75263 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xe2fcaf06 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xe362b178 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xfa09da4c brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xff230abe brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xff2446d9 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x02402af4 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x05640dd1 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x11bcef40 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x18934de2 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x20e3fccb hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x225157db hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2dd00135 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x327fba8e hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x49588382 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7704b20a hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8327f0a8 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8603eec4 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8d10c838 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x96360770 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x979c6ead prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x994265a0 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9d16d245 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa0e7b912 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb6a78866 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc0e9d3d7 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc6930af6 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc866a0c4 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xdbd4fa9a hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xdcde3e44 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xff8b855e hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x1246c7f4 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x246b64c5 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2d6c1511 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2f12b0cf libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x38c64c88 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x445fdd47 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4f982a27 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x6454c2ce libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x655b5af6 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7474b058 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x74a6ddcb libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x74d3ab56 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x8c6e8eb9 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x8deedfb0 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc5b86438 free_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd0695a54 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd6baf466 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe36a458a libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xee53f8ea libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xfa26c97e libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xfd906023 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x02d03642 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0bf99571 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0ddee55b il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x14c9d8d2 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x180ce01f il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x19fbff74 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1b462714 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1e319b83 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x225b41f7 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x22fcd177 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x246b2e09 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x256b61e4 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x26bca088 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x287821d1 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x28c6ee32 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2fcd76c0 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x31752ef0 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x35378a02 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x390ed6a8 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3cc50d42 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3cd8a535 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3d6c7c10 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3f4fd393 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x428ab396 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x47190c34 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x472e2121 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x48ca7359 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4926a826 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4a6d1695 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4c3ac897 il_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4c747e09 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4dd3c632 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4f6654ff il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5070ca75 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x50810e33 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x513352d8 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5c1d1f4b il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x67736ccf il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6b135643 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6edf526f il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6f13cdd6 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x72d4afed il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x73c82c4a il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7471df96 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x758d4fb1 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7c29d603 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7ee071da il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8205785f il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8263d0c5 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x87b6bce7 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x87e3cc44 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x89272b35 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8ab26c6d il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8b718503 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8be975d0 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8d3bc513 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8f426e44 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x93079ccf il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x95151e34 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x95d6f8a6 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9832f1ce il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x992cff92 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9a147271 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9a453042 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9adb8c38 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9f0990c2 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa2f679b6 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa75149af il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa7911224 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xaad27ff6 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xacc08e76 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb2c0759e il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb410781f il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb4bec26b il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbf564883 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc6ac5a3e il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc6c02dee il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc9712361 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcb87080c il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd2ef641f il_force_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd4fa67be il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd66d7b20 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd675a581 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd7a8e0d4 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd7d3ae30 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd855ee95 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdbb94a1f il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdc6ca60c il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe0e7cf72 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe7518cdc il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xeb56ff47 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xec90dbe0 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xee7ddea8 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf50478be il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf5ead12f il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf656823a il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf68f7518 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfd89076b il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfea47b31 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x08c6664d __tracepoint_iwlwifi_dev_iowrite8 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x4379786d __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x95a8ab3c __tracepoint_iwlwifi_dev_iowrite32 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xa2b6ec39 __tracepoint_iwlwifi_dev_ucode_error +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xb69add1f __tracepoint_iwlwifi_dev_ioread32 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xcd60e86e __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xd4f50457 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x194890b6 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x59d51819 orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5dea5bf1 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x610a64ff alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x6a75fb05 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x6f0b62a4 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x8b873acc orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xaf2e92bd orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb3e046a5 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc05e09d4 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xcb8792c9 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xce07517a orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xce0d19b5 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd6ccbf0d __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe148bb98 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xf02b38b3 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xf9d21c74 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xbf878306 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x02637d39 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x06d984dc _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x10ab4447 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x18aada53 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1d178a6f rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x25599e75 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x346449a2 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x38ac4918 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3ccc9379 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x43c93e0c rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4c89e674 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5cd8f39c rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x617fd86f rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6899da24 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6a604029 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7f5203be rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x81b2e3d5 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8531d2e8 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8c3b9dcb rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8ecf1951 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9328acc8 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x95c1cffd rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa21945ab rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa671c86a rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa72b2e92 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa9ade2ba _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb199c00e rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3c83ba3 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb43d2a5f rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb7d2edba _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc71914a2 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcafbf78d rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcd445662 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd0249ce3 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd147f18b rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xda5526f5 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe0b35787 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe1800683 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xec345800 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xee43ca16 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfde21b01 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x54e91fe7 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x75282873 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xbef2dc2a rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xd8ba84f3 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x50b1f0f3 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xc56537df rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xcc909681 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xfc5fd94b rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x048b1c18 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x163083b8 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x200d0d04 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x24690e01 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3536add5 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3626f688 rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x37d0d8b4 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3a0d2a45 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3e233d05 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4145a463 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x43e2f591 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x46c301ee rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x51d40085 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x52fce918 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5377a7d9 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x53a1d3de rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6662ac00 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6ce89378 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6f253f1c rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x741dc920 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7aa1a6e5 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8835e1e5 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8e4ad8c4 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x95d2d4a7 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbf4e9912 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe2e0e6c8 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf11d2d31 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfd4ba999 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x733f3efd wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x87865598 wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xa3c70211 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xddb59788 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x16a4b5ea fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xc8d9f53c fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xdcaa4e7c fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/microread/microread 0x592fb517 microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0xedc6aafd microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x09dadced nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x66a2c78c nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x7b533a02 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x473998d4 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xb7cca5b3 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x44de713c s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x6e03336e s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xbd820041 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x09d9b66f st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3fac2d75 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x47180e41 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7770621c st_nci_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x807fdac3 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x95ade8e4 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9da8edc5 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa4f27285 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb6d1b078 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd378122a ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd8450038 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0a1fa725 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1026abc8 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x19c7c42a st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1b3ccb25 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2d94f1b8 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3967d91c st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3c1978f0 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4d029226 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x60dbb878 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7eaaf991 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7fa1cbf3 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x969c1286 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa1f675ef st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb697e016 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd3d4db48 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdc4aa940 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdf205abc st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe2acfe3a st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/ntb/ntb 0x505b19b4 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x5d19c755 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x5d972f31 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x72e9894e ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x96a82e89 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x98c9cea4 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0xbefa674c ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xf1b9951f ntb_unregister_device +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x63daed31 devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x07171981 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x09e9fee9 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x11c9bb65 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x198abfcd parport_read +EXPORT_SYMBOL drivers/parport/parport 0x1e094537 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x224eaae3 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x2a3fe82e parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x34850fa9 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x47170b58 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x473135f2 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x51383502 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x575c06a1 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x580265cd parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x5ea34b71 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x5faf8c2f parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x68360cfa parport_release +EXPORT_SYMBOL drivers/parport/parport 0x7183a63c parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0x8b5be4c1 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x8e373717 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x97ccbb6d parport_claim +EXPORT_SYMBOL drivers/parport/parport 0xa23a3756 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0xb4469ef3 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xbd9794d3 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0xbfef7ee6 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xd368445b parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0xda0d13e7 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xea3fc6a1 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xea4ca501 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xeb524588 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0xf942464d parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xfa127052 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xfc0abaf4 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport_pc 0xd2fdd306 parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xe85ad029 parport_pc_unregister_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x03d3f904 pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x09c9397c pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0afc7fa6 pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0c0bbfa1 pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1bf6cd36 pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x460bf936 pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x46cf2822 pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5d3e53a8 pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x69dad294 pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6cf1c0ad pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6e09136b pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9b32bb41 pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9c16df50 pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa12f1397 pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xac09cccf pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb40dd095 pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc6a6f53f pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xccfcbdcc pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xfe2cb77a __pcmcia_request_exclusive_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0279d82a pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0a8bb294 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x173c549a pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x22bd109f pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x30ce1f7a pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x843916ba pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x9c99ea67 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x9d3b7535 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb7159aa7 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf80e2b65 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xfac36f9b pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xab887fb8 pccard_static_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xb4023694 pccard_nonstatic_ops +EXPORT_SYMBOL drivers/pps/pps_core 0x38691574 pps_register_source +EXPORT_SYMBOL drivers/pps/pps_core 0x5d4c2001 pps_event +EXPORT_SYMBOL drivers/pps/pps_core 0xc026bed9 pps_unregister_source +EXPORT_SYMBOL drivers/pps/pps_core 0xd1892fcd pps_lookup_dev +EXPORT_SYMBOL drivers/ptp/ptp 0x3c6b48e2 ptp_clock_unregister +EXPORT_SYMBOL drivers/ptp/ptp 0x7580ace2 ptp_clock_index +EXPORT_SYMBOL drivers/ptp/ptp 0x9db8a332 ptp_clock_register +EXPORT_SYMBOL drivers/ptp/ptp 0xb3bff2c2 ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp 0xef01da08 ptp_clock_event +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x1f5f50ab rproc_get_by_phandle +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x38bcac9c rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x4ac28159 rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x53d7572c rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x83d88a77 rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x95b2eff2 rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xab06da24 rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xb7206bc2 rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xcbe42876 rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xda00d91a rproc_boot +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x087d2c83 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x7e32f4eb scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x81127521 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x8fe96b34 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xdd75b98d scsi_esp_register +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1237c79f fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x19a001c1 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x25e6ad8c fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2b9f0b28 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4c57950a fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6da3cdf3 fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x70e2dff8 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x91c4e871 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb7b6f162 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xbd95e0c4 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xbddfad7a fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe210bb5a fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x00cf6b94 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x02e942c5 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x06ca172d fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0be1aec5 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x14718517 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x15f63e23 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1791d17c fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1e769627 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x28907969 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2b110724 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x30968738 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x315d77cf fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x38f65af3 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3b54d539 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4c0cce48 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4c27b1ad fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4fbc436b fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5f195c00 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x618bbd8d fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x61d7fc7b fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x630b87ee fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x63608bb6 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x647e0617 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x74bcb850 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7791373d fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x801145a7 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x845d5db2 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8a0d6b98 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x981e363b fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x98237e7f fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9a3e683b fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1c2cee9 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa2d938ad fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa32a756b fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xadcfba38 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc20e415a fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xce12b508 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd0a5964c fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd3a03483 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd4335fb8 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd4d5d7ff fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd5169a21 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd722f8f3 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdfafd231 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe01aefb1 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe13302c7 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe68b44bd fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe8aa804a fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf708fe15 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfb1fb947 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x223cf8de sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x6e7fa64a sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x91dffb32 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x938b788f sas_wait_eh +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xa761c547 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x033663d7 osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x04df46c5 osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1b1a3ffd osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1b4ed244 osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1ce410bf osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3061d976 osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x30c8a58f osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x31802d9e osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x347be573 osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x379920cf osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3e3c1194 osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x471ad10f osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x65756400 osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6b889847 osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6e4082e4 osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6f51f3a1 osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x767cde1f osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7df696aa osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7f6a2b96 osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8011dd80 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x85966916 osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8cac988c osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x91d9c08d osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9ab30d39 osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa40fa629 osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa4b6f1d5 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa5265687 osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa5abd949 osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xaaff5c7e osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb39a9d05 osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbd2ddf95 osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc16b86a8 osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcd99d16a osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf3779c83 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xff0b48e0 osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xff0cde23 osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/osd 0x273e764e osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x4271cc92 osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5ba58741 osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x9768e8a4 osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0xd3e18120 osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0xde27c16f osduld_device_info +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x07687e16 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x094494cf qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0c60ec8f qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0f84f45f qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x11d7bdda qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x381e875c qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5fbc28ef qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x803fb15b qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xacc81082 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xae91614e qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd0017bad qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf75ae556 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x7d7927c9 qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x8446894a qlogicfas408_bus_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xae0657e3 qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xb095c099 qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xc7bcc389 qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xfe15d252 qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/raid_class 0x1d1e442b raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0x234df9ce raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0xbb7d4439 raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x04a6853f fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x37f08f6c fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3fb2385e fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x42d085b5 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4d2bb653 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x821e1262 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x83ae8d42 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x95f13565 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa82453d4 scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb73df3d1 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcbbd20a8 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd8c8f8a0 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xec577a42 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x05e0a5c6 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x095fba4a scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x242960c0 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2b5aa29c sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2da96b8b sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3334d1d5 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3a03de02 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x464ecae4 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x47b6396d sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4b45b42c sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4d56f47f sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5ea3c241 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6170a5fb sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6232800d sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6c38aaaa sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x735109aa sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x75c50300 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7ccebf27 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x87beaa23 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa5860f23 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaf38d713 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb7f2e40f sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbe1deb21 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc8834c6a scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xde410f43 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe65d29b7 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe9055b19 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xec927aa7 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xed3d0365 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x5aa21c12 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x5f8d8df5 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x6cf05e39 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x9de1b052 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xcfea052a spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x1bc65cea srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x3dff587c srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x654ac748 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xa61cb11a srp_rport_put +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x15006d7a ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x3ddefc1f ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x9ed35e0a ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xb1ce6d3c ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xc375ac94 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xdbe9f180 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xf1fd0677 ufshcd_alloc_host +EXPORT_SYMBOL drivers/ssb/ssb 0x044d8d7f ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x1859aba6 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x1e4ad83c ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x297e4925 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x3e74f212 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x3fb80d28 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x50196a09 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x53ac67fd ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x601c1216 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x681a3db1 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x7f46593c ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xb8a261de ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xc6572dab ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xdd2c483d ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0xe337390f ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0xe3701602 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0xe81a700e ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xef4d3b0b ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xf64b85c6 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xfa712d15 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x06a36695 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x09d45768 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0e21d2d7 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1585fb20 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x28a70c0a fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2c1caeac fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2c28d375 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2e10c90c fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x36f7af36 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x419c0004 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x47f970c5 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4fc65eca fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8d66cb12 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8ef25283 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9cecab67 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9d767401 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9eae1ead fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc00c2559 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc1e61665 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd2d5acc4 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xda35533c fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe406dcd5 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf68a6892 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfc094db4 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x2847c2e6 fwtty_port_get +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x9a850adf fwtty_port_put +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x0df71a38 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x4585809e hmc5843_common_suspend +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x4629ca8d hmc5843_common_remove +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x606436fe hmc5843_common_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x963056eb hmc5843_common_resume +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xa0142ca0 ade7854_remove +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xcb1373a9 ade7854_probe +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0xbfeeb5e4 cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x32429b4f most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x03845e8c free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x05384341 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x05ca343e rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0d7a1e14 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0e0d5f75 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x12cc7b9e rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x194ccf45 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1cea55d0 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x24d8392c rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2d96c5a2 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2fecd32f rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x30496c4f rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3593b78c HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x37cd2765 Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3e3a807b notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x41b5b46f rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5e716684 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x69a26d73 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x70341f07 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x72fd1516 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x78083c23 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7c09414d rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7ed6f77f rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x832ba33a rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8565470c rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9045691a rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x90c1bbc1 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9147d71a rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x91d6bfaf rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x95e185d2 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x97dc8553 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x99fc067c rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9d32a64b rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9d5f6bbc rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa03b4768 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa776a3c5 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xabdf4731 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb995fefe RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbbf98910 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbc5fbb65 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc2332dcd rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc602f9b6 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcaf4d3de rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcc134e21 rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd5026e6b rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdb833450 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe646a9c7 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfa4bfd2c rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xff8fd8ef rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xffcac2d2 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x041ee992 ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x050f5b2f ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x09c15884 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0bac00ef Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0fb1cfe3 ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x10ca4bf7 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x12cf3ef2 Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x13095a93 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1951d3e9 Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d29381e ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x24d921d3 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x25f407dc ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x27b15bc4 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x286dbdbe SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2b8ad6cb DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2cc1708a ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2d798e17 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x307bdd22 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x35b7ecf1 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3c721572 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4414e6d0 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5204165d DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5621ea63 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5835a11a ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5cdf4dc3 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x619093a0 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x64f1a7b3 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6aeb2610 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7e03468a ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8aa5ae25 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8c8175d0 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x93eb990b ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x94bf3958 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9cef3f42 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9e7c08ad ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaf5aaee1 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb2e985f2 IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb5e398df ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb8c798e8 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb994194b ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbc8d7894 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbf943cdb ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc664dc6d ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc70b766a ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcd86cd95 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xceb97414 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf4c2491 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd54ec06e ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd6aa4e57 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd96ead0f ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdb302099 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeb309fbf ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeb659937 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf2333f7c ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xffd8ff25 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0676f30f iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1a7469b4 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x256ec393 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2a9f4d7e iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x37c2c58f iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x381013d1 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3c003325 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4deaf58f iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5a354d77 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6a71a952 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x741e9556 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x770aebdf iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7a05aef5 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7d4e1c77 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7f693d3d iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8cdbccc2 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x90fa8dbe iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9901a96f iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa2b846b8 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa83dc76b iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa85d056e iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb839a923 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbfbf9e02 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc0625ef2 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc91c757b iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe1707c04 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf046c59d iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf3eed53c iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0655953f passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x08301aa6 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x104f9210 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x13139598 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x14d009f0 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x15d12c77 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x1de9ced3 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x223cd211 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x2ae0dc50 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x2d8885dd transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x2f5e219e sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x3163d422 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x39f2161f transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x3aa43372 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x3f3ee6b2 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x46eeca50 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x49553e19 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x4b48298f __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x51476bff sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x54ad580d target_put_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x591a974e target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x5c1d7297 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x5e9a922b spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x5fa69c58 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x677033e2 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x6c5a3022 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x70dfe769 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x727e242a target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x795b1f9d transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7b7b75a0 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x7e023681 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x8086e03c transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x8b0cd247 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x8bc64aae target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x8c0fabc3 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x8f628fb1 target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0x9132011c transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x9150e966 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x93046cd6 transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x94c3cbf1 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x9adec9cb target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x9fcfd193 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa116f68e target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xa5d50bc0 target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xa6909fc0 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xab7bb61e transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xadcecab1 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb243dcb4 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xb5665dce transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0xba6a6ce6 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xbc9d8db1 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc04f0a14 target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xcca79a74 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xd08bf0c8 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xd8292d38 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd85d74ab core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xd9377f3c spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0xe86e5419 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xe942e1d6 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xecd525f4 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0xef9e4df5 transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf16c7903 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xf279e1f7 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf2dcde56 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xf5464d28 target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0xf9da0ef9 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xfc00c87b target_get_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xfc0fa249 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0xfe07e91b target_undepend_item +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x8385c9f8 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x2d91c784 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xed263fa8 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x349e6135 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3e1f26e0 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x50039179 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5e2b5237 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6ef14451 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x91707356 usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9be0de6a usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc09b3e7e usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe5f367a1 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf7717dba usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xfb4b46c0 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xfe646d53 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x86013dc0 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xb45e4f01 usb_serial_suspend +EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user +EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x2e91ca97 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x367ce26a vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0x59f824d9 vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x7bda5e6d vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x821e9390 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x937e412c vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user +EXPORT_SYMBOL drivers/video/backlight/lcd 0x8bf509a8 lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x9df83247 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xe50a0137 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xe561119d devm_lcd_device_register +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x696ad551 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6f427953 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8be12c9b svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xab057e4f svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc26d1d56 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xddc222d1 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xfe8da473 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0xf99aba6d sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x974b4f64 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xd5dff20c sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb00715c3 cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x0a7e2d9a matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x0bb600ce g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x2d7327a8 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x05629394 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x30a14c47 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xadc61810 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xb5436341 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x938eca99 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x14a8f5fc matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x3499abe9 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x38068f15 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x94f3dd0b matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xd271f84b matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x326c169b matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x9fa71de7 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x23072c0b matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x42a41fb2 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x4c58c342 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x7359ac96 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xea2cfeb1 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0xea721a6f mb862xxfb_init_accel +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x1e5d12c7 w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x57270a12 w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x676a8ab3 w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xab34558b w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x277db8ed w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x835b61aa w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x45c878de w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xd9f944c1 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x65abe903 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x9b394ed0 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xbd6c5149 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0xda313d3d w1_register_family +EXPORT_SYMBOL fs/configfs/configfs 0x342129b1 configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0x3e34f5e9 config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0x7e91ceca config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x8194f75a config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0x89315c47 configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0x9a0d6002 config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0xa0d4cc19 config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0xa6a26970 configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0xb74e0b68 configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0xb8c96328 configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0xbc6d5bea configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0xc7ffb246 config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0xcb7e026a configfs_unregister_default_group +EXPORT_SYMBOL fs/configfs/configfs 0xe7b527cb config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0xef72896b configfs_unregister_subsystem +EXPORT_SYMBOL fs/exofs/libore 0x0a7c65ec ore_create +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x49d93c4e ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0x605b5820 ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0x73a382bd ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0x9afe5f26 ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xb0a84ce7 ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0xb3cf40df ore_read +EXPORT_SYMBOL fs/exofs/libore 0xc431ed82 ore_remove +EXPORT_SYMBOL fs/exofs/libore 0xcc75587a ore_write +EXPORT_SYMBOL fs/exofs/libore 0xf74d6b16 extract_attr_from_ios +EXPORT_SYMBOL fs/fscache/fscache 0x01d077bd fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x02d6fdb9 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x06df3c5f fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x11d53682 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x12d921ab fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x12ef0828 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x1b097b74 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x25bedd13 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x26e54a63 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x2727c859 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x273c15a9 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x2e90934f fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x30ae0a22 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x34983125 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x3844e304 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x3a1ddd4c __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x3d768a11 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x3d768d85 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x3e6a10d3 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x400a9143 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x4adc0b58 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x4d81cf10 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x578e9bfc fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x61eb386a fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x72453d95 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x72be6d26 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x73a816de fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x84acfcae fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x861d91de fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x89db85f0 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x994783f8 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x9d85f5aa __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xb2677932 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xbc00901e __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xc06e745e __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0xc834ffcd __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0xe085e979 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0xe5297c58 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xf4ae9ab7 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0xf564a1f8 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x5c98c4e0 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x78bff4a0 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xb7c5e0f9 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xf39c04ca qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xf77975dd qtree_read_dquot +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-ccitt 0x3771b461 crc_ccitt +EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc-itu-t 0xf5b4a948 crc_itu_t +EXPORT_SYMBOL lib/crc7 0x66213969 crc7_be +EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc8 0x41248eaf crc8 +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c +EXPORT_SYMBOL lib/lru_cache 0x03f599c7 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0x04146390 lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x4db78850 lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0x4feade4b lc_create +EXPORT_SYMBOL lib/lru_cache 0x56fc3ea0 lc_put +EXPORT_SYMBOL lib/lru_cache 0x619ed575 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x84e0214b lc_committed +EXPORT_SYMBOL lib/lru_cache 0xbbe7c23c lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0xc48fa976 lc_set +EXPORT_SYMBOL lib/lru_cache 0xc6e4cd46 lc_reset +EXPORT_SYMBOL lib/lru_cache 0xcb990a55 lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xcea6747e lc_destroy +EXPORT_SYMBOL lib/lru_cache 0xd212c9f0 lc_get +EXPORT_SYMBOL lib/lru_cache 0xeb13128b lc_del +EXPORT_SYMBOL lib/lru_cache 0xf460a486 lc_is_used +EXPORT_SYMBOL lib/lru_cache 0xf5ea5f5c lc_index_of +EXPORT_SYMBOL lib/lru_cache 0xf6acec20 lc_find +EXPORT_SYMBOL lib/lz4/lz4_compress 0xcbc5d521 lz4_compress +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x26c3aa22 lz4hc_compress +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0x7456cc61 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul +EXPORT_SYMBOL net/6lowpan/6lowpan 0x5c463a80 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0xb8c8a333 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0xd559dfb1 lowpan_netdev_setup +EXPORT_SYMBOL net/802/p8022 0x4146d9bd unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0xd5c9ba3f register_8022_client +EXPORT_SYMBOL net/802/p8023 0x05586c61 destroy_8023_client +EXPORT_SYMBOL net/802/p8023 0x9018955b make_8023_client +EXPORT_SYMBOL net/802/psnap 0x6d64b383 register_snap_client +EXPORT_SYMBOL net/802/psnap 0xf9838159 unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x041aacb5 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x06432389 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x0d76cc03 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x0f326b4a p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x0f630f6f p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x1902fc54 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x1cddcb08 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x22069708 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x26d9771a p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x2ce7db0f p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x37646521 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x3b5523bb p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x3cfb9032 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x3dc26c12 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x40247fe1 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x40bcb8c4 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x413dfdc8 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x5a8829dc p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x68ea4a2f p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x6d7c1110 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x7f17405a p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x873f53af v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x8e980d6e p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x98ea70ec p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x9cade4a8 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xb450f120 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xb7298006 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xbfbf36e6 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xc113d371 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xc327736c p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xc3f173f2 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc77ea5e7 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xcae992a0 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xdb486bc5 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xe471f3c2 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe5d9248d p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xea69980d p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xefcf79f5 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xf36d30c7 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xf436de92 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf50c56d8 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x35e87a0e alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x3ea762b0 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xb3bc0417 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xb91b3005 aarp_send_ddp +EXPORT_SYMBOL net/atm/atm 0x13ea67b4 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x20cb0929 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x24182a16 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x2af22466 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x2c7d60cf atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x302d64f6 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x46202440 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x4b126d6e atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x559abc92 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x5d44b603 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x89e9a7ad atm_charge +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xa12fb1dd atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xaf26fee4 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xca87b453 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x17a38f65 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x2b965f9e ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x71bb8860 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x7346a75c ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0xb462ac34 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xc1d9b3ec ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0xc5bfd9e2 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xdd910355 ax25_header_ops +EXPORT_SYMBOL net/bluetooth/bluetooth 0x00f51d57 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0107bded hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x057fd0b0 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0754e424 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x089a2359 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0edd010e l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1094d41d hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x12eb5da0 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1e38b095 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x21555191 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2c884bb8 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x326a5d58 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3cd37390 hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3e0fd26b hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x484042b8 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x60c1fca1 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x643ebae8 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6abe5ef4 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x704bd142 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7341efb5 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b8d4f77 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7dc6f4b5 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7ebe4dd1 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7ee437b4 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x836f244c hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x85228a29 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x88439ff2 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8914b169 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8a4e3bdf hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8b3f3655 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8f86daa1 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x93d5fa0d l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9a8f5bae bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb837934d hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc74e37a bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcdddaf7f bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd8f9e513 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe41cb632 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf5b35999 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf60ea4bd bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfcf332c4 bt_sock_recvmsg +EXPORT_SYMBOL net/bridge/bridge 0xd88c451e br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x1161ef7b ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x5fe477b6 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xd58f111d ebt_register_table +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x1f5accc1 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info +EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x4353365e cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x53775f09 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x580c3266 caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x900538a1 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/can/can 0x07f7e6f9 can_rx_register +EXPORT_SYMBOL net/can/can 0x2b4e9c0a can_proto_register +EXPORT_SYMBOL net/can/can 0x2c7cdbb8 can_ioctl +EXPORT_SYMBOL net/can/can 0x84951160 can_rx_unregister +EXPORT_SYMBOL net/can/can 0xba9f07c8 can_proto_unregister +EXPORT_SYMBOL net/can/can 0xe49f335d can_send +EXPORT_SYMBOL net/ceph/libceph 0x00b86d28 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x021f00a1 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x031b2bbc osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x040fa54c ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x06162949 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0a817911 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x0bbd3ca7 ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x11154060 ceph_monc_do_get_version +EXPORT_SYMBOL net/ceph/libceph 0x18313813 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x1d720f64 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x1f424fee osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x2168e61d ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x241b0e1e ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x251afb95 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x26b84ff2 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x26f68be4 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x27e086a0 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x296662cb ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x2b46a6f3 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x2bec97b4 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x3666ace5 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x379ccb04 osd_req_op_watch_init +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0x414d054b ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part +EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x47a9920e ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x50547ba8 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5bcf6cac osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x6075609d ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x644869e9 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x6596f7b8 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6bb2678f ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x6bfc2d01 ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0x6ed01565 ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x70ae8ac3 ceph_oloc_oid_to_pg +EXPORT_SYMBOL net/ceph/libceph 0x70d7d261 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x75cc084c ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x818c0971 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x819cb798 ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x81be9f64 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x85c5e5db ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0x8867fd77 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x8c6e20e2 ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x8e28d3a8 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x905babbf osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x92353b50 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x949f3ae3 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x9936f7b9 ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9bb9f58d ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa1ebde8f ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xa248e67a ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xa371a4c4 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0xa41a2b65 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xa43ee505 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xa4625c6b ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xab7bf5d0 ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0xaccc3990 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb19dc152 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xb3ecc460 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0xb4532637 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xb9f52620 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0xbbea8122 osd_req_op_cls_response_data +EXPORT_SYMBOL net/ceph/libceph 0xbc7ac6d8 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0xbdbb697f ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xc3209d3b osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xc4114f92 ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc61a9376 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xc7b0e35d osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xd0c4719f __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd5383217 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xd661aaed osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xd6a02374 ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0xd813625e ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xde0eb6ba ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0xe0fa2e40 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xe1f3b6b6 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xe33d3857 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0xe4c0a07c ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0xe55d9bcd ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0xe5adba2a ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xe956366f ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xef77c5d1 ceph_monc_request_next_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xefd323a9 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xf1602ead ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0xf412a168 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xf6539c4d ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0xf834f6df osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xf94106b6 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xfb443981 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xfca0b391 ceph_con_keepalive +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x077d69ef dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x1570864c dccp_syn_ack_timeout +EXPORT_SYMBOL net/ieee802154/ieee802154 0x1c4431bd wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x75b30020 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x96f2a97d wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xb0d405b2 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xb19c6da0 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0xbcb99317 wpan_phy_unregister +EXPORT_SYMBOL net/ipv4/fou 0x0c07b4a3 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x3de0d2b8 gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xbd93aa67 fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xed741d6f gue_encap_hlen +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x04142052 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x1d765dfa ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x70ca751b ip_tunnel_dst_reset_all +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x7c8cba7a ip_tunnel_encap +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xa4daf0b6 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xaa3ab913 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x297599d9 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x9d00b5ab arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xa05dda27 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x4c035573 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x54745145 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x6c7acfe7 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x56d169ff xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0x8641a63c xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0xc1c38002 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x47acd61b ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5c568dbf ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x8999597f ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xfd4afd6e ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x24ba9657 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xbd48cc9c ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xd638845a ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x260ea823 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0x9d1c6a64 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x62f7def8 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xc54308a5 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x1ca0d72b ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x49164dfc ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x5479e827 ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x6dc033e3 ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x7c27e456 ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x94084351 ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xb4286315 ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xeed0c57a ircomm_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x0064e0ea hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value +EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service +EXPORT_SYMBOL net/irda/irda 0x0fefc426 irlap_open +EXPORT_SYMBOL net/irda/irda 0x14dbd812 iriap_open +EXPORT_SYMBOL net/irda/irda 0x1ce323f6 irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0x1e6cade0 irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0x1f29b03a irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x3e56064f hashbin_new +EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value +EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service +EXPORT_SYMBOL net/irda/irda 0x4abd6944 irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0x54d5114c irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0x601bda46 hashbin_remove +EXPORT_SYMBOL net/irda/irda 0x671894b0 irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x6b5fbcef hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0x6e0ab3c7 irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client +EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client +EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x7f917bfa irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0x7fb79a85 irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0x833228c4 irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0x85d88217 irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x87bd2f9f irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0x8dc30877 iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0x95f2906f irttp_dup +EXPORT_SYMBOL net/irda/irda 0x96ca2443 irttp_data_request +EXPORT_SYMBOL net/irda/irda 0xa1d41e58 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0xaa557515 irias_new_object +EXPORT_SYMBOL net/irda/irda 0xab124182 irlap_close +EXPORT_SYMBOL net/irda/irda 0xaba36ea5 async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value +EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute +EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request +EXPORT_SYMBOL net/irda/irda 0xc4da366a iriap_close +EXPORT_SYMBOL net/irda/irda 0xc68e43be irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0xcead7dbb hashbin_find +EXPORT_SYMBOL net/irda/irda 0xd2108314 hashbin_insert +EXPORT_SYMBOL net/irda/irda 0xd3ab24da alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0xd7a75acb irda_notify_init +EXPORT_SYMBOL net/irda/irda 0xda2eca9f async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0xe3463529 hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0xe3bde43e irias_insert_object +EXPORT_SYMBOL net/irda/irda 0xe4dcc79c irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0xe8b7ea24 irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0xe9eab36b irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0xeaee2cda irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0xf0a694a1 irias_find_object +EXPORT_SYMBOL net/irda/irda 0xf39b7fe0 irda_setup_dma +EXPORT_SYMBOL net/irda/irda 0xf51c123a irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0xf5876b95 hashbin_remove_this +EXPORT_SYMBOL net/l2tp/l2tp_core 0xe4f2958a l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0x8c3a211c l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x0eace82f lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x52161690 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x6b1b47ca lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x7e880853 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xac08e222 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xb0330ffa lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xf58f26d6 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xf873e134 lapb_data_request +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x4f579903 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x91e1f1d0 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0xac8ea329 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xc8de73f4 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0xe69f899f llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xe8494f6a llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xed7600fd llc_sap_find +EXPORT_SYMBOL net/mac80211/mac80211 0x02166686 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x0969698b ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x09fa9be7 ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0x0e352f89 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0x0f6a8145 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x1154dbd0 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x12da068b ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x19ac8b85 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x1a260557 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x1a99ca9c ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x25d22e61 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x266a0199 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x2bf40b1f ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x2bf66197 ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x2ee20991 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x34092359 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x37396c25 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x3d37b0d5 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x3f5eaf95 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x3f70277b ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x3f7befc5 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x3ffea022 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x4292978b ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x438381f3 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x4b0dabf0 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x4b3d5b3d ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x4c2d435f ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x4e11c242 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x5c02fda1 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x5cef079a ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x6059ac9b ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x60a128f0 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x64c2d9b8 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x67067b44 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x69de096c ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x6a51299a ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x6c2a5001 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x6dd0f35d ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x7366dfbe __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x75f7f65b ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x76b9ef28 ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x7a0ac069 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x7da32e63 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x7fb165ce ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x81712ec4 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x840593b2 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x86704849 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x8780f252 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x88cf0dd9 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x8ab3d881 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x99e234fa ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xa4024698 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xa70a8d9c ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xa78ec948 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xb1aaef91 ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xb3042623 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0xc17cb508 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xc26253c5 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xc345e36c ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xc3fc1469 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0xc52b27a9 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xcbb27913 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xcce49160 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0xcdc65cad ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xcdf19cce ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xd2ffc829 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xd526e38b wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xd5d65fb7 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xd8b4a1af ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xdc20bc5f ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xddc347ae ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xe3237c89 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xe4c03328 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xe7a73d2f ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xe7f28cf7 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xe9cd0514 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xf0c085ac ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0xf3d9490b ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xf877021c ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xfa344128 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0xfd6320d8 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xfeecbeb6 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac802154/mac802154 0x04d66327 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x394c02e2 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x3f8cd798 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x828ac945 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x8ec273b3 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x91f2d714 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xa4ad6d7c ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xe291714f ieee802154_alloc_hw +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x053f70da register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x153ecaaf unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3d8d39b5 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x465f5757 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x571827ac ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7dbaa274 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8fff8bee ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9968dcc8 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb6a5325e register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd207f586 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd7c09fec register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf3450293 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfa0b9811 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xff913b2e ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x05a5219b nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x634435c3 __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xd689e623 __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x1de30ea9 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x45d66a8a nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x4e0c8f1e nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x512777d0 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xc61bcaa0 nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/nf_nat 0xfb08099f nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/x_tables 0x0a8cc7dc xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x12aa0d06 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x230667c6 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x29e67994 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x596697f1 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x65d25b29 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x7f3da1e1 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x9fa7c310 xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xc521fb58 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xfe8735f3 xt_unregister_targets +EXPORT_SYMBOL net/nfc/hci/hci 0x05497334 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x18c727ce nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x390b8dd7 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x401d4498 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x46acdf26 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x4f9511e0 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x585793d0 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x59b85f85 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x5a23afe7 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x6b92e700 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x6dbfb290 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x6e493998 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x7c6f7137 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x92521442 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0xa9705dc8 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0xac91c74b nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0xaf1a38cd nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xe2b5fa69 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0xecedd8d8 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xef5781f2 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0xfd4da8d1 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x01e20717 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x034d1cb7 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x04b2c07d nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x051578e1 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x11b16aea nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x1c0cecd2 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x2174f5ed nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x2a247849 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x2d547cc1 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x2ec0dc9f nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x41c22b26 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x4713793c nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x4de6bc86 nci_get_conn_info_by_id +EXPORT_SYMBOL net/nfc/nci/nci 0x4e63c13f nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x5b15dcc0 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x630710dc nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x711026d7 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x87e714e5 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x925dc325 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x92eefb8a nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0xa1381ee2 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xb114cc5c nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xb832a5ea nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xbbba12e8 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0xbc16b50f nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xdc8a5e8e nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0xdcd09901 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0xf07c211a nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nfc 0x03301d06 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x03a1e42a nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x10eb9abf nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x1370c683 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x22232db9 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x30a13caa nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x45a3ba62 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x477fee41 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x502e8432 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x6e7d38ae nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x6f918525 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x78579bf0 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x790f9be0 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x828ec8b2 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x84d1334c nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x918033eb nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x9f7d1172 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xb54c85b2 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0xbeea3338 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xc716cd04 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xc7f3d542 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xcf640d9a nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0xf988bb4d nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xff3ae546 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x0dcc6730 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x195b5517 nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x8bab9a5b nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xcfd69982 nfc_digital_register_device +EXPORT_SYMBOL net/phonet/phonet 0x01d2685a pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x141f8331 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x2dbba966 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x314a3dc8 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x3caa0ea3 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x4991fb52 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x653a06c1 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x973d16ac pn_sock_hash +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x0ba81263 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1873987a rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1cfb549f rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x3870771a rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x38a87bfd rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x59315b16 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x69cca208 rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xbf3b895c rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xca1deec2 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xca703460 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xde547731 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe14173bb rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xef2f4e1a rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf45e241b rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf731e7bc rxrpc_kernel_reject_call +EXPORT_SYMBOL net/sctp/sctp 0xd72a79c9 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x3ef60858 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xd9e0d0b3 gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xf832d648 gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0x344306bc xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0x7c635b56 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xaf305059 xdr_restrict_buflen +EXPORT_SYMBOL net/wimax/wimax 0xd2e067f2 wimax_rfkill +EXPORT_SYMBOL net/wimax/wimax 0xe524f067 wimax_reset +EXPORT_SYMBOL net/wireless/cfg80211 0x00f4836f ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x0708934b cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0754ef6e regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0c041ae7 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x124bff8f cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x14789728 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x1749cbc6 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x18e97e4f cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x1f4b80b8 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x214fe238 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x231ab4fa cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x24f4bcc5 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x25baa8d6 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x2770f8b3 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x2c05064a cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x314ae5d7 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x31841ea8 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x31e563e4 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x37ea5c8c wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x3b9cfc34 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x45f1dc9d regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x462084b4 ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x4abb13c8 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x4d032cf3 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x4eb0d392 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x4edbf5e1 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x5134dbf6 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x51bd3814 cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x540714ee cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x59906673 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x59ad5dee cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x5c8e21a8 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x60fc7044 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x66edc866 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x67eb360e cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6b1c029a cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x6ce016bb wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x7522058b cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x7529ac17 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x7b262b94 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x7e42bc39 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x86a76780 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x88f912a2 cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x8b26cfc7 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x8b683a7a cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x8ca55a86 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x90dbc73d ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x9293b0f5 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x9528820f wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x95524a7b cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x966ff54d ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x983b714b __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x9aa4d707 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x9f078719 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xa1425906 ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xa6c4e47a cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xa8778e64 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xab63abda cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xafe3f270 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xb16b19e9 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xb2b0caa4 cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0xb435f4f7 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xb7533737 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0xbab53b56 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xbb2a090c wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0xc27fa247 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xc802f9bd cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xd135513e cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0xd418633c __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xd67bab4b cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd87211ee cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0xdb1c9017 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xdb57b4f1 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xe295c312 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0xe30a11aa wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xe888e067 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xeb6d7c6c ieee80211_ie_split +EXPORT_SYMBOL net/wireless/cfg80211 0xec3be221 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xec6d7abd cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xed00ee13 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xf12295b2 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0xf132bdec cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0xf5adf2d2 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0xfa3b1add freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/cfg80211 0xff14b771 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/lib80211 0x30b29002 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0x3451cd13 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x68ff36f3 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xad0aaec1 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xdafc0fbd lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0xe9ac64ec lib80211_get_crypto_ops +EXPORT_SYMBOL sound/ac97_bus 0x7246de4a ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x20877380 snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3f5f8310 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x525c7f76 snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x52677353 snd_seq_kernel_client_enqueue_blocking +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xc709a9fb snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6817fc04 snd_seq_device_new +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x072d978b snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x13a17752 snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x2eed26bf snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x4d5ca523 snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x592f6e9b snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xd7c7afcc snd_midi_event_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe60fb228 snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xecbde43c snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xf003daba snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x03a7f113 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x0aed3b99 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x0c6d8731 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x0cf338f9 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x0d75cb82 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x0d8459c4 snd_register_device +EXPORT_SYMBOL sound/core/snd 0x13614bdc snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x160a9b11 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x185d8043 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program +EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer +EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL sound/core/snd 0x1cd7a0a7 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x1fce7506 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x226f3c03 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x258e223c snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x27a63b9e snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x2a4b250c _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3aa8a9ed snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x3c90c30b snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4b4bd472 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x4bb95841 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x55bbb9b4 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x5a760ee4 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x5d298bb9 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x6008ca89 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x602c96f0 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x62100074 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x6474ffed snd_cards +EXPORT_SYMBOL sound/core/snd 0x6e8a2679 snd_info_register +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x76773c66 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x78613a11 snd_card_new +EXPORT_SYMBOL sound/core/snd 0x7c5c406f snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x7cd91664 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8ecc646e snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x93c725ba snd_device_new +EXPORT_SYMBOL sound/core/snd 0x94156a48 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x98f32194 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0xa8531d22 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0xa897e0c3 snd_component_add +EXPORT_SYMBOL sound/core/snd 0xb12cf0eb snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xc015faeb snd_device_register +EXPORT_SYMBOL sound/core/snd 0xce3ca308 copy_from_user_toio +EXPORT_SYMBOL sound/core/snd 0xd1157735 release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xd1ce46fa snd_card_register +EXPORT_SYMBOL sound/core/snd 0xe4a072a6 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0xe58ada61 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0xe8eb643c snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0xef6dcc3e snd_card_free +EXPORT_SYMBOL sound/core/snd 0xf383cb35 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0xf99a75ab snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0xfc5056f7 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd-hwdep 0x693e2761 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x00107ba9 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x013d0d92 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x02d06185 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x0356f50c snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x08d37056 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x09085326 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x14a4e430 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x16c1690a snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x1ac43ee5 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0x1bf40c7e snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x2004bc2f snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x2665d978 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x2a4b8471 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x2ae36ac9 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x300eb2e9 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x30a412c7 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x31bdc6b2 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x3a2b17a4 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x3b91f3af snd_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x3c4706e5 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x41dd133b snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x4973ff25 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x4d9b6d35 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x4ed8142c snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x5584f99b snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x56fd9415 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x5c2d3c7e snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x5cb5d6d1 snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x5fc1f1ba snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x6f66d052 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x6ff937c9 snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0x721063dd snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x7bf94256 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x85eeab2c snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0x89416e94 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x89c05849 snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x94add672 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xa34cafff snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa6d7991c snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xa81be3bc snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xade88e76 snd_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xb9a4a05e snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0xbf79e254 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0xc77b819f snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xdebdf361 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xe95e9399 snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0xeba3ef3b snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xec61b2b2 snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0xf1951f0b snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xfcfa383e snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0e7aba73 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x18d5bec7 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1a68c793 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x282141ce snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2d8604c7 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4c43a7cb snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4e197fc4 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7b567429 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7bf5cc8e snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7e4396e5 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9a3033dc snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa18be892 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa7abfe4f snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb59fd8c0 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb940ed35 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc35d1c69 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd9a18679 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe42b893c snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xebc980a0 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-timer 0x06317d15 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x0813d5bd snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x0ff44c61 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x151ce8bc snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x3f41c486 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x463b8016 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x58226fde snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x8fba4126 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0xbcfbdeab snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0xc3632859 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0xe50d7fbd snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xf5348b75 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0xfed367fe snd_timer_start +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x96d3d1d9 snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x0927ac82 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x0af537f8 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x0e0c784d snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x29b44d21 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x54ab3ddc snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x5c7df695 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa9e3717d snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe9a8f449 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf70d4e5c snd_opl3_new +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1600c590 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1beef8bb snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x27b74cda snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x396a97ff snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6272dd6c snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x711ce7a4 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb0702ed8 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb128bf16 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc353d07e snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0623f7ab cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1787950c fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1eb6754b fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x23b5d517 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x27aaaec5 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x29f25d09 amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x349631e3 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x48bee181 amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4ab7ac96 snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5c55668a amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x65b9a13b amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6673320b fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x78ea26ba amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7e3279df snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x81fd45f4 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x82c08106 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8dfbbe2f amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x99af8b90 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x99ed93f4 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9abe8215 snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa100e5f7 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa582fb7b cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa63c7c4f cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xab0d20b6 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xacd7dcb0 amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xacde5717 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xad24cb3a fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd847c509 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdebdfbbe avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe177121c fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe9738dd4 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xeec99e00 amdtp_stream_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x5b64b375 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x5d87e44c snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x5f4426b9 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x994d9fba snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa3d70e24 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xaa278f40 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xae099cb5 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb13d05ac snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xbbd8f54f snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xce023106 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x1c45c1fa snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x53d6cda4 snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x653482ba snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x8bfbd4ba snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xd3ec3f7c snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xd5d18180 snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x3c541f0a snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x9eff1ddc snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xc9a0bd11 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xd8b785fb snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x4182aca4 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x469264a8 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x0e386961 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x9ff5a392 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xa98d13ec snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xd5eeaf4c snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xef63e0da snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xfac1f54d snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-i2c 0x094a529c snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x0f674094 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0x21c35d58 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x898feaac snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0x94b1155c snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xe5267f6f snd_i2c_sendbytes +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x0310e269 snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x09760803 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x3974aed8 snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x4ad2a789 snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x516f6f01 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5fccde66 snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x6a6e9be5 snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x6f2bc06f snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x97f84423 snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xf3cabf38 snd_sbmixer_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x02cfd8d9 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0418945d snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x28a8eebc snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2cd4de9d snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x472c3883 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x61eb21a3 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6a6a5cdb snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x905989b9 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x938f50b4 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x93f06047 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x97f1ca4f snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa9e8e8fe snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb09f04d9 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc586dd0a snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd43a4d35 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf4c37766 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xff4f0b7d snd_ac97_suspend +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x02fb03fa snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x311dfa9c snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x3212f5d7 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x5bdb6bf4 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x701dba3d snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7181e2ff snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd1a80cde snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd23f081c snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xfee705de snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x2081a4e0 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xae2329ce snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xb1219ce7 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x06376376 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x068db1d9 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x12e9e26f oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2c109b8c oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x354b4f16 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4c5d27fa oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x59c91ce9 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5cce9745 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x64762674 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x68bd359c oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6919709a oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6eb0add7 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6efb37a1 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8ab3496f oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8cf5dd4f oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x99c816f8 oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9dcc5f50 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb6a5a7ee oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe1a786ef oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfc8c5b07 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfc960b70 oxygen_write32 +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x12ab1cfe snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x40eaec26 snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x693366a0 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x782ee108 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xef07cd83 snd_trident_start_voice +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xc653b0d6 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xcfe2a2a1 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/snd-soc-core 0x67fde271 snd_soc_alloc_ac97_codec +EXPORT_SYMBOL sound/soundcore 0x2de1a681 sound_class +EXPORT_SYMBOL sound/soundcore 0x403f18fd register_sound_special +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x82cb982d register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xa0a9bf1d register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0xb909dd38 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xef799900 register_sound_midi +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x0d688882 snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x65fe2b49 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x83210301 snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xb98b04c8 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xcd7f62ea snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xf0ced7a1 snd_emux_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x284fcebc __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x39c93197 snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0x3ab6ef22 __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x4cb78af1 snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x70155057 snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0xd9b98f83 snd_util_memhdr_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xe6ac7e1e __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0xeed7abc5 snd_util_mem_alloc +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x4b0005d0 snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL vmlinux 0x0013d8d1 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x0022b8af netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x003ed69a __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x0047321b eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x004c3707 cont_write_begin +EXPORT_SYMBOL vmlinux 0x00506125 pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0x0059e224 of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0x007d92f8 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x00cbffa7 sock_register +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00e283f6 keyring_search +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr +EXPORT_SYMBOL vmlinux 0x0113d2dc path_nosuid +EXPORT_SYMBOL vmlinux 0x012a97fc xor_altivec_4 +EXPORT_SYMBOL vmlinux 0x012f31de scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x013faa62 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x014ac3c1 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer +EXPORT_SYMBOL vmlinux 0x0176c2c9 padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0x0186e2de smp_call_function_many +EXPORT_SYMBOL vmlinux 0x01c6c68b d_find_alias +EXPORT_SYMBOL vmlinux 0x023bc969 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x023f7448 mmc_can_discard +EXPORT_SYMBOL vmlinux 0x02428fc1 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x025c9b70 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x02722247 poll_initwait +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02cd6740 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x02d3c891 bio_split +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact +EXPORT_SYMBOL vmlinux 0x02f7e889 input_set_keycode +EXPORT_SYMBOL vmlinux 0x0303ff59 poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x030c741c ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x0320f140 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x032fd2cd simple_pin_fs +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x035d418f kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x03857e87 sk_common_release +EXPORT_SYMBOL vmlinux 0x03865e57 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x03942800 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x03c365aa genphy_update_link +EXPORT_SYMBOL vmlinux 0x03c8250e finish_no_open +EXPORT_SYMBOL vmlinux 0x03fc92f0 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x04040842 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x0430f2fd pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x0462d17b backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x046ae8ed ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x0479bc21 acl_by_type +EXPORT_SYMBOL vmlinux 0x04877438 of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x049e883a alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x04afa9f7 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x04afd4fb release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04ed5dcf fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0x04f1041d lockref_get +EXPORT_SYMBOL vmlinux 0x04fba853 kmap_high +EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range +EXPORT_SYMBOL vmlinux 0x051f901f jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x0527efc8 tcp_proc_register +EXPORT_SYMBOL vmlinux 0x0530dede _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x0553b06d dst_destroy +EXPORT_SYMBOL vmlinux 0x0559e36a generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x056ffb94 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x059a642c pci_domain_nr +EXPORT_SYMBOL vmlinux 0x059d7ae8 input_reset_device +EXPORT_SYMBOL vmlinux 0x05a2ad2d __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x05a514a1 _insl_ns +EXPORT_SYMBOL vmlinux 0x06015832 padata_start +EXPORT_SYMBOL vmlinux 0x0602dd9d ps2_begin_command +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x06245603 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x06439a44 dev_uc_del +EXPORT_SYMBOL vmlinux 0x065d6f51 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x06643149 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x06710ddd i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x0675c7eb atomic64_cmpxchg +EXPORT_SYMBOL vmlinux 0x067ac8a6 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x0685d2a7 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x068e8cb3 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x06971944 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x06b3520e vfs_whiteout +EXPORT_SYMBOL vmlinux 0x06c93e21 mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0x06da6890 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x06e35cd0 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x06e503aa vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x070c77fe fget_raw +EXPORT_SYMBOL vmlinux 0x07145054 pci_find_bus +EXPORT_SYMBOL vmlinux 0x072183aa sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x0744e6eb __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x07492058 ata_print_version +EXPORT_SYMBOL vmlinux 0x074e9213 down_killable +EXPORT_SYMBOL vmlinux 0x0774e57b max8925_reg_read +EXPORT_SYMBOL vmlinux 0x079aa2a7 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07bb99f8 load_nls +EXPORT_SYMBOL vmlinux 0x07bcd65b sk_wait_data +EXPORT_SYMBOL vmlinux 0x07c9ae73 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07f8cd70 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x07f93ba6 dentry_needs_remove_privs +EXPORT_SYMBOL vmlinux 0x081095d6 fsync_bdev +EXPORT_SYMBOL vmlinux 0x0821c129 alloc_fddidev +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x08336724 __dst_free +EXPORT_SYMBOL vmlinux 0x083c7477 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x087816e2 bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0x087ce27a skb_free_datagram +EXPORT_SYMBOL vmlinux 0x0880c2fe md_error +EXPORT_SYMBOL vmlinux 0x0886e9cc vme_slot_num +EXPORT_SYMBOL vmlinux 0x088a438c ping_prot +EXPORT_SYMBOL vmlinux 0x088b0a24 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x088b7b65 swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x089e54d4 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x08c09994 elevator_init +EXPORT_SYMBOL vmlinux 0x08c96258 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x08de35a8 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x08df9457 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x08e7f7de input_set_capability +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x08ff1d0e inet6_add_offload +EXPORT_SYMBOL vmlinux 0x0903d381 generic_end_io_acct +EXPORT_SYMBOL vmlinux 0x0937129f __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x093cf574 elevator_change +EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key +EXPORT_SYMBOL vmlinux 0x097371ee scsi_register_driver +EXPORT_SYMBOL vmlinux 0x09788c37 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x0982551c nla_put +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x098eefcb sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x0993d653 sock_rfree +EXPORT_SYMBOL vmlinux 0x09bbbb91 trace_print_symbols_seq_u64 +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c67afb flex_array_get +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09e63aa2 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x09f63c1b sync_filesystem +EXPORT_SYMBOL vmlinux 0x09f7034e genlmsg_put +EXPORT_SYMBOL vmlinux 0x0a0d29ca bio_map_kern +EXPORT_SYMBOL vmlinux 0x0a11e86c setup_arg_pages +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr +EXPORT_SYMBOL vmlinux 0x0a373226 crc32_le_shift +EXPORT_SYMBOL vmlinux 0x0a38e202 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x0a40fb1e tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x0a4143e2 init_special_inode +EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell +EXPORT_SYMBOL vmlinux 0x0a4a791f uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x0a65744f mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x0a958f83 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x0a95a3e2 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aa55ae7 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x0aac227c qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x0aac8fe6 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ad63fa5 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x0afa071d of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x0b0bc8c9 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b2e2e4b ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x0b365ab0 __alloc_skb +EXPORT_SYMBOL vmlinux 0x0b3bdfad agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0x0b417ebf nlmsg_notify +EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b4f60bc inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b7e615b dev_crit +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0beb39c0 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x0bf55c5d mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x0c040818 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x0c12e626 __debugger_bpt +EXPORT_SYMBOL vmlinux 0x0c1fa88e xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x0c361063 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c6e2326 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x0c906b0a submit_bio_wait +EXPORT_SYMBOL vmlinux 0x0c9b6089 nvram_get_size +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0caec0b2 of_match_node +EXPORT_SYMBOL vmlinux 0x0cd019d2 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x0cd4354c debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x0cdadb18 do_splice_from +EXPORT_SYMBOL vmlinux 0x0cf924bd dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x0cfab9e2 skb_insert +EXPORT_SYMBOL vmlinux 0x0d028292 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x0d0f60b3 inet_select_addr +EXPORT_SYMBOL vmlinux 0x0d187ca9 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x0d2a18f3 vme_register_driver +EXPORT_SYMBOL vmlinux 0x0d2e3b11 tty_mutex +EXPORT_SYMBOL vmlinux 0x0d35586f mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x0d35bd15 neigh_for_each +EXPORT_SYMBOL vmlinux 0x0d394587 skb_append +EXPORT_SYMBOL vmlinux 0x0d53ae18 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d65afd2 generic_show_options +EXPORT_SYMBOL vmlinux 0x0d84dce5 param_set_bool +EXPORT_SYMBOL vmlinux 0x0d858f07 lro_receive_skb +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0da13254 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x0dadaa2f add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x0db31aa2 phy_detach +EXPORT_SYMBOL vmlinux 0x0dbf38b8 mol_trampoline +EXPORT_SYMBOL vmlinux 0x0dc0ace0 idr_find_slowpath +EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex +EXPORT_SYMBOL vmlinux 0x0dcc4a7a twl6040_power +EXPORT_SYMBOL vmlinux 0x0dcd9098 pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0x0dced4b9 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x0dd4d547 sync_inode +EXPORT_SYMBOL vmlinux 0x0ddd7326 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x0ddf4bdd of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0x0ded11b9 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x0e0f4061 genphy_resume +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e835bd2 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x0e8f30f6 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x0e9e66bf __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x0eaf451e hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0eb91a8f from_kuid +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ed21f4d skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x0ede338a pci_dev_driver +EXPORT_SYMBOL vmlinux 0x0ede4186 max8998_update_reg +EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy +EXPORT_SYMBOL vmlinux 0x0ef20db1 kernstart_addr +EXPORT_SYMBOL vmlinux 0x0ef2cfbf param_ops_invbool +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f20d2e7 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x0f28cb91 nvram_read_byte +EXPORT_SYMBOL vmlinux 0x0f3c2db8 seq_vprintf +EXPORT_SYMBOL vmlinux 0x0f410d10 dst_discard_out +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f4ccb6f nf_reinject +EXPORT_SYMBOL vmlinux 0x0f5faa7e wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x0f674b3f vga_client_register +EXPORT_SYMBOL vmlinux 0x0f691ff9 scsi_host_get +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f84d858 icmpv6_send +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x10048bf8 bio_copy_kern +EXPORT_SYMBOL vmlinux 0x1005f4ac nvm_register_target +EXPORT_SYMBOL vmlinux 0x1012fc13 touch_atime +EXPORT_SYMBOL vmlinux 0x1036c13d __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x103e8e64 lwtunnel_output +EXPORT_SYMBOL vmlinux 0x1043a5d9 input_free_device +EXPORT_SYMBOL vmlinux 0x105aca19 dma_common_mmap +EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x107cd00b scm_fp_dup +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x10a024c8 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x10b54890 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x10c7dc8b skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x10cb5236 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x10d9a1b5 default_file_splice_read +EXPORT_SYMBOL vmlinux 0x10da839e tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x110d182c xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0x1111a4bc tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x11145431 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x111bc8f1 igrab +EXPORT_SYMBOL vmlinux 0x114ca9c4 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x115effb2 km_new_mapping +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x11663cec adb_register +EXPORT_SYMBOL vmlinux 0x116e4893 simple_open +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x117af11c abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0x1182d83a cpuidle_disable +EXPORT_SYMBOL vmlinux 0x1186e5b0 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x11acab0a tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x11cc71c0 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x11f16e44 dput +EXPORT_SYMBOL vmlinux 0x11f58a80 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x120007a9 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x12000ff4 pci_disable_device +EXPORT_SYMBOL vmlinux 0x12022d96 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x12241d9d unregister_filesystem +EXPORT_SYMBOL vmlinux 0x122cd836 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x12326f05 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x126bab9d mmc_remove_host +EXPORT_SYMBOL vmlinux 0x12932f3f generic_readlink +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12bdd3c6 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc +EXPORT_SYMBOL vmlinux 0x12e5ef0c rtas_set_power_level +EXPORT_SYMBOL vmlinux 0x12ef923f nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x12fa790a netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x130aa651 security_path_mknod +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x131f5dbc __get_page_tail +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x13716d2c inode_add_bytes +EXPORT_SYMBOL vmlinux 0x1382ee9c pcim_iomap +EXPORT_SYMBOL vmlinux 0x13bc8a59 devm_ioremap +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13f08f12 dquot_enable +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x14059764 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x1407c6e7 kmap_prot +EXPORT_SYMBOL vmlinux 0x140c09b0 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x1420b379 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x142c847e mem_map +EXPORT_SYMBOL vmlinux 0x1453aff0 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x147643ff skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x14802e34 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x1491929e cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x14929cf9 nvm_get_blk_unlocked +EXPORT_SYMBOL vmlinux 0x14a1a3a4 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14f06d63 abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0x14f4c634 param_get_bool +EXPORT_SYMBOL vmlinux 0x15476bd9 dquot_acquire +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x15534cd3 bdevname +EXPORT_SYMBOL vmlinux 0x15613230 __mutex_init +EXPORT_SYMBOL vmlinux 0x156133bf unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x1567de3d deactivate_super +EXPORT_SYMBOL vmlinux 0x1597b3d8 blk_get_request +EXPORT_SYMBOL vmlinux 0x15b7baaa of_node_put +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15c43ea3 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x15c8c235 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x15d35dae abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x15d3fd60 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x160bd45c rtas_token +EXPORT_SYMBOL vmlinux 0x160bd59a generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x160d0e79 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x16182846 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0x161d0033 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x162dbc51 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x16540bbc __cmpdi2 +EXPORT_SYMBOL vmlinux 0x1667a5c2 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x166c2612 try_module_get +EXPORT_SYMBOL vmlinux 0x167b86a1 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x16807c5e __getblk_gfp +EXPORT_SYMBOL vmlinux 0x1683a50b radix_tree_delete +EXPORT_SYMBOL vmlinux 0x168cf911 nla_reserve +EXPORT_SYMBOL vmlinux 0x1691f24e fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x16ab5ff3 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x16c32b8f dquot_scan_active +EXPORT_SYMBOL vmlinux 0x16cb83ad blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x16dd60a1 simple_link +EXPORT_SYMBOL vmlinux 0x16de64d2 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x16e287ae tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16f733d5 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x1706292f search_binary_handler +EXPORT_SYMBOL vmlinux 0x1711edef current_fs_time +EXPORT_SYMBOL vmlinux 0x174afb1a __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x175b5c7b ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x17648396 dev_base_lock +EXPORT_SYMBOL vmlinux 0x176eb26a dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x17751f11 iov_iter_advance +EXPORT_SYMBOL vmlinux 0x177c93dd of_find_node_by_type +EXPORT_SYMBOL vmlinux 0x178d6b01 __f_setown +EXPORT_SYMBOL vmlinux 0x1792d8aa dev_notice +EXPORT_SYMBOL vmlinux 0x179b8a2e mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0x17a205df tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x17aa156a __ucmpdi2 +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17b36e1e md_register_thread +EXPORT_SYMBOL vmlinux 0x17c2f74a zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x17d9d3f3 sync_blockdev +EXPORT_SYMBOL vmlinux 0x17e0dacd netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x17e28473 fsl_upm_run_pattern +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x180d57de pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x180fef0c rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x182a6a84 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x182d2a43 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x182fadc3 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x187b32e4 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x1885f588 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x188d2852 tcp_connect +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x189f742a bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x18a23799 __mdiobus_register +EXPORT_SYMBOL vmlinux 0x18c2227f cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18f8214c agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x19300bd8 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x194dbae4 param_get_short +EXPORT_SYMBOL vmlinux 0x19576656 devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0x19610e1f cpu_all_bits +EXPORT_SYMBOL vmlinux 0x197f0ce5 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x19992f0e flush_old_exec +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x19b7252d get_task_exe_file +EXPORT_SYMBOL vmlinux 0x19ba1dc7 fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19be8f76 bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x19cfd623 macio_release_resources +EXPORT_SYMBOL vmlinux 0x19db1506 neigh_update +EXPORT_SYMBOL vmlinux 0x19df6918 dev_change_flags +EXPORT_SYMBOL vmlinux 0x19eec936 may_umount_tree +EXPORT_SYMBOL vmlinux 0x19f3fde9 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x1a0181d4 rtnl_notify +EXPORT_SYMBOL vmlinux 0x1a04803b from_kprojid +EXPORT_SYMBOL vmlinux 0x1a0dd948 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x1a11e6c1 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x1a336178 blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x1ac63842 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x1ac7507e notify_change +EXPORT_SYMBOL vmlinux 0x1ad0a0f6 md_write_start +EXPORT_SYMBOL vmlinux 0x1ad457d3 napi_disable +EXPORT_SYMBOL vmlinux 0x1ae6e846 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x1ae71c99 vc_cons +EXPORT_SYMBOL vmlinux 0x1af62a99 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x1af7c39a inet_ioctl +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b0be459 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x1b132009 rename_lock +EXPORT_SYMBOL vmlinux 0x1b60a6ef block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b748d04 __elv_add_request +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b850932 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b9779a2 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x1ba3828e cdev_alloc +EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer +EXPORT_SYMBOL vmlinux 0x1bb8d68c i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x1bb98e10 netlink_unicast +EXPORT_SYMBOL vmlinux 0x1bc4ff03 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x1bca2b59 load_fp_state +EXPORT_SYMBOL vmlinux 0x1bd38dab input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x1be00a35 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x1bed19af elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0x1bee6763 macio_release_resource +EXPORT_SYMBOL vmlinux 0x1c0eb4c7 sk_alloc +EXPORT_SYMBOL vmlinux 0x1c12944a sock_kfree_s +EXPORT_SYMBOL vmlinux 0x1c3b1072 mmc_can_reset +EXPORT_SYMBOL vmlinux 0x1c4a6e0d mount_single +EXPORT_SYMBOL vmlinux 0x1c5b2c15 pmu_wait_complete +EXPORT_SYMBOL vmlinux 0x1c6bc09d jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0x1c751e1f truncate_pagecache +EXPORT_SYMBOL vmlinux 0x1c80de9c ip_send_check +EXPORT_SYMBOL vmlinux 0x1c88e91d fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0x1cc59d80 netlink_capable +EXPORT_SYMBOL vmlinux 0x1cde7177 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x1ce699c9 padata_remove_cpu +EXPORT_SYMBOL vmlinux 0x1d0003d3 page_symlink +EXPORT_SYMBOL vmlinux 0x1d03e28b ata_dev_printk +EXPORT_SYMBOL vmlinux 0x1d1758fd __nla_put +EXPORT_SYMBOL vmlinux 0x1d3ef359 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x1d410f1b inet_release +EXPORT_SYMBOL vmlinux 0x1d459c70 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x1d488cd5 netif_rx_ni +EXPORT_SYMBOL vmlinux 0x1d4d7994 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x1d4f3186 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x1d6cb3dd kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x1d8694ef __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x1d8bb316 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x1daee28a percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x1db6610b __register_binfmt +EXPORT_SYMBOL vmlinux 0x1db7ec53 mutex_trylock +EXPORT_SYMBOL vmlinux 0x1dbf22c9 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dc7cc5d inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1de3d382 bdi_register_owner +EXPORT_SYMBOL vmlinux 0x1e06b99f i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x1e203931 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e300621 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x1e5979ff vfs_rmdir +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ecfeb0d tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x1eea1ba2 get_acl +EXPORT_SYMBOL vmlinux 0x1f40aaa4 devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0x1f6f62ef scsi_dma_map +EXPORT_SYMBOL vmlinux 0x1f754b3f dev_set_group +EXPORT_SYMBOL vmlinux 0x1f765bee iov_iter_zero +EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x1f7e87be del_gendisk +EXPORT_SYMBOL vmlinux 0x1f892504 address_space_init_once +EXPORT_SYMBOL vmlinux 0x1f9a1eba pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x1fb2f06c input_grab_device +EXPORT_SYMBOL vmlinux 0x1fb35fc1 kmap_atomic_prot +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fcd62dd jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fe7b5bc md_flush_request +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x20010dd2 noop_qdisc +EXPORT_SYMBOL vmlinux 0x20020556 blk_get_queue +EXPORT_SYMBOL vmlinux 0x20030ecd ioremap +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x20353f78 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x20354ba1 dquot_file_open +EXPORT_SYMBOL vmlinux 0x20421305 on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x205878bd param_set_ulong +EXPORT_SYMBOL vmlinux 0x206cfe11 phy_disconnect +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x207373c0 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x2097da29 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20ad55ac input_register_handle +EXPORT_SYMBOL vmlinux 0x20ae58d0 __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20d13802 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x20d8ee83 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x20da09f6 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x20f61d41 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x21099971 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x21168853 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x21315344 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x2135f32a filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x2140ad3b page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x214159cd put_cmsg +EXPORT_SYMBOL vmlinux 0x2157965d vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x216047cc seq_putc +EXPORT_SYMBOL vmlinux 0x217d3d00 __break_lease +EXPORT_SYMBOL vmlinux 0x2181272a agp_unbind_memory +EXPORT_SYMBOL vmlinux 0x21827f38 of_get_property +EXPORT_SYMBOL vmlinux 0x218c7fd8 cdrom_release +EXPORT_SYMBOL vmlinux 0x21924c97 path_is_under +EXPORT_SYMBOL vmlinux 0x21ae900d gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x21b6d013 tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0x21c7cb72 bdi_register +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21f19335 fence_remove_callback +EXPORT_SYMBOL vmlinux 0x222abce8 ppp_input +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x2253be5d arp_create +EXPORT_SYMBOL vmlinux 0x2256fafa div64_u64_rem +EXPORT_SYMBOL vmlinux 0x225c7af6 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x22740eb8 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x2278e94b slhc_remember +EXPORT_SYMBOL vmlinux 0x227e35a7 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x229346f9 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x229756f5 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x22a3b122 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22cae020 netdev_printk +EXPORT_SYMBOL vmlinux 0x22dfdd06 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x22e21d10 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x22e636e4 udp_prot +EXPORT_SYMBOL vmlinux 0x22e92682 param_set_invbool +EXPORT_SYMBOL vmlinux 0x22ecb63e seq_printf +EXPORT_SYMBOL vmlinux 0x22f6529c __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x23018548 netdev_master_upper_dev_link_private +EXPORT_SYMBOL vmlinux 0x230371e4 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x232abfe5 generic_setxattr +EXPORT_SYMBOL vmlinux 0x23309922 unlock_rename +EXPORT_SYMBOL vmlinux 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL vmlinux 0x235506c4 dquot_drop +EXPORT_SYMBOL vmlinux 0x235e90f3 __wake_up_bit +EXPORT_SYMBOL vmlinux 0x23615c7a pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0x236ce0e4 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x236e9325 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x23763c94 mntget +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23aedd50 fsnotify_get_group +EXPORT_SYMBOL vmlinux 0x23b91f63 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23bc7feb kfree_skb_list +EXPORT_SYMBOL vmlinux 0x23dc276e xfrm_lookup +EXPORT_SYMBOL vmlinux 0x23e93d7f d_make_root +EXPORT_SYMBOL vmlinux 0x23f2243d mempool_free +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x240839bb dev_mc_init +EXPORT_SYMBOL vmlinux 0x241b1acb input_register_device +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x2440b433 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x244cdb61 set_nlink +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x246254cd vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x246f0d0a key_put +EXPORT_SYMBOL vmlinux 0x247ad64a nf_getsockopt +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x24855cba __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x249d4aff __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x24c88d56 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x24d1b002 devfreq_interval_update +EXPORT_SYMBOL vmlinux 0x24d8fd8c audit_log_start +EXPORT_SYMBOL vmlinux 0x24e897ca nf_log_packet +EXPORT_SYMBOL vmlinux 0x24f00380 ida_init +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x251270c6 inet_add_offload +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x2527a087 vme_slave_set +EXPORT_SYMBOL vmlinux 0x255c9ccf kernel_write +EXPORT_SYMBOL vmlinux 0x25624a1b of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x2589363c jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x25bd34f9 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x25c3ae6b __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x25d9f57b security_path_rmdir +EXPORT_SYMBOL vmlinux 0x25e85806 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25f1c7d0 fddi_change_mtu +EXPORT_SYMBOL vmlinux 0x25f3bd2e atomic64_xchg +EXPORT_SYMBOL vmlinux 0x260015d5 sk_mc_loop +EXPORT_SYMBOL vmlinux 0x261b0083 security_path_unlink +EXPORT_SYMBOL vmlinux 0x262e72b9 tcf_hash_search +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263fee1b fddi_type_trans +EXPORT_SYMBOL vmlinux 0x2642de73 page_address +EXPORT_SYMBOL vmlinux 0x26477c07 __vmalloc +EXPORT_SYMBOL vmlinux 0x264a21c6 mpage_readpages +EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux +EXPORT_SYMBOL vmlinux 0x2660e213 cdev_del +EXPORT_SYMBOL vmlinux 0x267315fa __ps2_command +EXPORT_SYMBOL vmlinux 0x2699b277 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x269d48dc blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x26af2a75 padata_add_cpu +EXPORT_SYMBOL vmlinux 0x26b760c4 slhc_init +EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x26bbeb44 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x26cbcd6f kmalloc_caches +EXPORT_SYMBOL vmlinux 0x26e479b0 input_open_device +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x26ea64e9 devm_memunmap +EXPORT_SYMBOL vmlinux 0x26f7a530 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x26f986e1 of_dev_put +EXPORT_SYMBOL vmlinux 0x26f9c3c1 key_unlink +EXPORT_SYMBOL vmlinux 0x26fa4421 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x26fb0060 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x2716529e bitmap_unplug +EXPORT_SYMBOL vmlinux 0x272234a9 blk_put_queue +EXPORT_SYMBOL vmlinux 0x272468e6 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x272c9acd pmu_battery_count +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x275820a5 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x275cbfdb scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x2771d7ff ida_get_new_above +EXPORT_SYMBOL vmlinux 0x277f7794 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x2781f8ae xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x279056e1 uart_register_driver +EXPORT_SYMBOL vmlinux 0x27a23ba6 nvm_dev_factory +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27be2d19 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x27c85752 dquot_get_state +EXPORT_SYMBOL vmlinux 0x27ca9589 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x27cac991 vfs_read +EXPORT_SYMBOL vmlinux 0x27de4c45 of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x280984c7 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x28133c9f mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x28136755 agp_put_bridge +EXPORT_SYMBOL vmlinux 0x2815fd5e tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x2819e7d6 kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0x282e5fe0 d_alloc +EXPORT_SYMBOL vmlinux 0x28891318 neigh_lookup +EXPORT_SYMBOL vmlinux 0x289db3ee idr_remove +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28a7beba __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x28aeb1f3 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x28b153b1 skb_trim +EXPORT_SYMBOL vmlinux 0x28bb11ba sock_no_listen +EXPORT_SYMBOL vmlinux 0x28bf12d3 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x28d1a7d2 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x28e388d9 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x28e6ce45 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x28f784f5 __debugger_break_match +EXPORT_SYMBOL vmlinux 0x28fcaf9f flush_tlb_page +EXPORT_SYMBOL vmlinux 0x29049d2c pci_disable_msi +EXPORT_SYMBOL vmlinux 0x2905c8af sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x29260d1b put_disk +EXPORT_SYMBOL vmlinux 0x293a2144 dquot_initialize +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x295531a9 __blk_end_request +EXPORT_SYMBOL vmlinux 0x295c2365 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x295ef798 do_splice_to +EXPORT_SYMBOL vmlinux 0x2963a439 blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x2968f0ac swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x2975778c kernel_bind +EXPORT_SYMBOL vmlinux 0x2983621e get_thermal_instance +EXPORT_SYMBOL vmlinux 0x29a06e33 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x29a19861 dquot_transfer +EXPORT_SYMBOL vmlinux 0x29a3a0d1 __scm_destroy +EXPORT_SYMBOL vmlinux 0x29aced5d __devm_release_region +EXPORT_SYMBOL vmlinux 0x29b67018 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x29b79328 input_allocate_device +EXPORT_SYMBOL vmlinux 0x29be662c udp_poll +EXPORT_SYMBOL vmlinux 0x29cae3bf phy_device_register +EXPORT_SYMBOL vmlinux 0x29cf5f7e setup_new_exec +EXPORT_SYMBOL vmlinux 0x29fdda53 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a375d61 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x2a3ff0ee serio_reconnect +EXPORT_SYMBOL vmlinux 0x2a71fde4 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x2a7cac99 pci_add_resource +EXPORT_SYMBOL vmlinux 0x2a801dce padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp +EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x2abdc4f3 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x2ac885bc pci_iounmap +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2ad0a17a tty_throttle +EXPORT_SYMBOL vmlinux 0x2ad22484 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x2ad313f2 empty_aops +EXPORT_SYMBOL vmlinux 0x2ad61983 param_get_string +EXPORT_SYMBOL vmlinux 0x2ae5cede gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b0e43eb set_posix_acl +EXPORT_SYMBOL vmlinux 0x2b12925d cpumask_next_and +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b5159f3 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x2b653df8 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x2b6cf66b simple_transaction_get +EXPORT_SYMBOL vmlinux 0x2b7b462a __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x2b7c635c i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x2b88fd8e pci_get_device +EXPORT_SYMBOL vmlinux 0x2b91c90a shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x2b9c9f64 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2bc409e5 sget_userns +EXPORT_SYMBOL vmlinux 0x2bd72558 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x2be630f1 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x2be72621 fb_show_logo +EXPORT_SYMBOL vmlinux 0x2bebde99 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x2bf9bd6b pcim_pin_device +EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c2c8658 swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x2c3a743e __blk_end_request_all +EXPORT_SYMBOL vmlinux 0x2c6b50a0 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x2c6ef1d7 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x2c710885 nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0x2c7b1fca down_timeout +EXPORT_SYMBOL vmlinux 0x2c86128d i2c_release_client +EXPORT_SYMBOL vmlinux 0x2c8a4bb7 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x2c909674 skb_pad +EXPORT_SYMBOL vmlinux 0x2c9d7ef6 bdget +EXPORT_SYMBOL vmlinux 0x2ca793d2 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x2cc62020 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x2cc7e2c8 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0x2ccbdc94 pci_enable_device +EXPORT_SYMBOL vmlinux 0x2cd4d20e ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x2cec447e blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x2cff2773 netdev_err +EXPORT_SYMBOL vmlinux 0x2d0b559b frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d470267 blk_fetch_request +EXPORT_SYMBOL vmlinux 0x2d6909de seq_open_private +EXPORT_SYMBOL vmlinux 0x2d6f603f blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x2d783f30 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x2d7b7d57 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x2d807643 elv_rb_add +EXPORT_SYMBOL vmlinux 0x2d9ba07e inet_addr_type +EXPORT_SYMBOL vmlinux 0x2d9cec76 param_get_ushort +EXPORT_SYMBOL vmlinux 0x2de3fabb tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x2dec94fd inet_frag_find +EXPORT_SYMBOL vmlinux 0x2e008b6c generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x2e083fe1 agp_bind_memory +EXPORT_SYMBOL vmlinux 0x2e28f1f7 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e2dc3aa __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0x2e5568e2 phy_print_status +EXPORT_SYMBOL vmlinux 0x2e664074 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x2e6678d1 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x2e7b8662 get_super_thawed +EXPORT_SYMBOL vmlinux 0x2e88d0b0 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x2ea522f0 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x2eb08b82 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x2ebb5ff5 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x2ef0ee61 vme_slave_request +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2efebec0 override_creds +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f2bbcbb vfs_link +EXPORT_SYMBOL vmlinux 0x2f34b8e9 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x2f397d0a scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f47d0f7 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x2f700f0a rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x2f73f4ed blk_make_request +EXPORT_SYMBOL vmlinux 0x2f7911c7 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x2f7bca0e inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x2f7d1877 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x2f7ec038 km_policy_expired +EXPORT_SYMBOL vmlinux 0x2f872b15 register_shrinker +EXPORT_SYMBOL vmlinux 0x2f8a9e40 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x2f8f0cf5 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x2f9659f4 tcp_child_process +EXPORT_SYMBOL vmlinux 0x2f9cb70d __skb_get_hash +EXPORT_SYMBOL vmlinux 0x2fa21d2b of_create_pci_dev +EXPORT_SYMBOL vmlinux 0x2faa499e seq_lseek +EXPORT_SYMBOL vmlinux 0x2fad9a75 param_ops_charp +EXPORT_SYMBOL vmlinux 0x2fae96de rtas_data_buf_lock +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fd5f0d3 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fe36097 __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x30032aab netlink_ack +EXPORT_SYMBOL vmlinux 0x300f0ab2 kset_register +EXPORT_SYMBOL vmlinux 0x3016c719 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x30184eeb bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x3023fe06 km_state_expired +EXPORT_SYMBOL vmlinux 0x30284817 devm_iounmap +EXPORT_SYMBOL vmlinux 0x3029e069 revalidate_disk +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x3036acd6 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x30464c7b netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x306dfce6 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x307be96d free_page_put_link +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x30885d55 pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0x308cab97 pmac_resume_agp_for_card +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30b234af current_in_userns +EXPORT_SYMBOL vmlinux 0x30b8b35c cpu_to_chip_id +EXPORT_SYMBOL vmlinux 0x30de4b4b eth_validate_addr +EXPORT_SYMBOL vmlinux 0x30e65a76 bio_integrity_endio +EXPORT_SYMBOL vmlinux 0x30f3acf3 pci_dev_get +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310917fe sort +EXPORT_SYMBOL vmlinux 0x310b7096 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x31208b9a tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x31380354 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x31713e56 bio_chain +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x317ee5a3 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x318b77aa __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x3191f109 __krealloc +EXPORT_SYMBOL vmlinux 0x31973137 cdrom_open +EXPORT_SYMBOL vmlinux 0x31c5224b of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x31f0bb78 __kmap_atomic_idx +EXPORT_SYMBOL vmlinux 0x31ffa225 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x32181b3a ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x3226d8fc pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x3239d492 fb_blank +EXPORT_SYMBOL vmlinux 0x3248681d fasync_helper +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x325fde95 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x3263300b unregister_cdrom +EXPORT_SYMBOL vmlinux 0x327b9c1b pmu_poll_adb +EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy +EXPORT_SYMBOL vmlinux 0x32943c7b register_cdrom +EXPORT_SYMBOL vmlinux 0x329f1260 of_mm_gpiochip_add +EXPORT_SYMBOL vmlinux 0x32b8c77e inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x32daaef0 invalidate_partition +EXPORT_SYMBOL vmlinux 0x32dbaefb write_one_page +EXPORT_SYMBOL vmlinux 0x32f9af1d xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x334b85ee agp_free_memory +EXPORT_SYMBOL vmlinux 0x3396f6f2 get_tz_trend +EXPORT_SYMBOL vmlinux 0x3399a693 tc_classify +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33c9ef60 eth_type_trans +EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x33e3b384 iterate_fd +EXPORT_SYMBOL vmlinux 0x33ee61dc kmem_cache_free +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33fc88b6 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x34158413 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x341dbfa3 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x34266a2f con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x342c5b36 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x344adbd5 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x347b3a13 tty_hangup +EXPORT_SYMBOL vmlinux 0x348640d5 mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0x349318d4 set_page_dirty +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x349d0445 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x34aff994 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x34bb7fd4 cfb_fillrect +EXPORT_SYMBOL vmlinux 0x34cb98e4 ip6_frag_match +EXPORT_SYMBOL vmlinux 0x34e53572 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x34e90e03 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x34f00baf inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x351707cd pagecache_get_page +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x353de98f cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x355bfe1f vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x357855e6 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x357be0ca pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x358dbb5e generic_read_dir +EXPORT_SYMBOL vmlinux 0x359700f2 redraw_screen +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35c32767 xor_altivec_2 +EXPORT_SYMBOL vmlinux 0x35cee5c5 qdisc_destroy +EXPORT_SYMBOL vmlinux 0x35e9fe77 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x35fbd6a1 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x361176b5 generic_getxattr +EXPORT_SYMBOL vmlinux 0x3618cb2d ida_destroy +EXPORT_SYMBOL vmlinux 0x3625e424 dquot_destroy +EXPORT_SYMBOL vmlinux 0x36497663 dev_mc_add +EXPORT_SYMBOL vmlinux 0x365724f3 touch_buffer +EXPORT_SYMBOL vmlinux 0x365a2fbb scsi_scan_target +EXPORT_SYMBOL vmlinux 0x365c673d get_empty_filp +EXPORT_SYMBOL vmlinux 0x365ee6df dev_disable_lro +EXPORT_SYMBOL vmlinux 0x366f6d27 idr_destroy +EXPORT_SYMBOL vmlinux 0x367ba856 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x3686b71b inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x3692ee58 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x36a2e218 generic_file_open +EXPORT_SYMBOL vmlinux 0x36a65359 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x36b0e732 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x36b42c68 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36c6cff0 netif_device_detach +EXPORT_SYMBOL vmlinux 0x36e28ed9 bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0x36fdda67 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x37078fdf vga_put +EXPORT_SYMBOL vmlinux 0x37093d41 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x370db1a7 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x3717230c of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x371d2130 check_legacy_ioport +EXPORT_SYMBOL vmlinux 0x37383edd rtas_get_power_level +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3755ccca posix_lock_file +EXPORT_SYMBOL vmlinux 0x375c7f6b __find_get_block +EXPORT_SYMBOL vmlinux 0x377d36ee release_sock +EXPORT_SYMBOL vmlinux 0x377d39e5 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x3791c856 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x379cac59 dev_deactivate +EXPORT_SYMBOL vmlinux 0x37a6c6df pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37b30a79 dev_alert +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37d87952 sock_edemux +EXPORT_SYMBOL vmlinux 0x37e0153d flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 +EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x37f6fee5 fsl_lbc_find +EXPORT_SYMBOL vmlinux 0x38196e74 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x381c287a mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x3835a236 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x38428be5 ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0x384462e3 simple_readpage +EXPORT_SYMBOL vmlinux 0x385ef1ce __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x388726bf netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38b825d1 idr_replace +EXPORT_SYMBOL vmlinux 0x38dc6a7e d_splice_alias +EXPORT_SYMBOL vmlinux 0x38f18c2c tcf_em_register +EXPORT_SYMBOL vmlinux 0x38f270b1 framebuffer_release +EXPORT_SYMBOL vmlinux 0x38fb9933 tty_std_termios +EXPORT_SYMBOL vmlinux 0x390787de xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x39995443 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39c08721 kobject_set_name +EXPORT_SYMBOL vmlinux 0x39c2c358 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x39cdf63c wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x39f429f9 __lock_page +EXPORT_SYMBOL vmlinux 0x3a1ac054 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x3a221582 skb_checksum +EXPORT_SYMBOL vmlinux 0x3a2b4bc5 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x3a4a95eb blk_delay_queue +EXPORT_SYMBOL vmlinux 0x3a65d29f inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0x3a715a4a ppp_dev_name +EXPORT_SYMBOL vmlinux 0x3a94b063 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3ab8a709 try_to_release_page +EXPORT_SYMBOL vmlinux 0x3ad55782 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x3af2fdbe md_write_end +EXPORT_SYMBOL vmlinux 0x3afd929e xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x3b2053a8 dm_get_device +EXPORT_SYMBOL vmlinux 0x3b615a21 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b76504f phy_start +EXPORT_SYMBOL vmlinux 0x3b8ee8b8 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x3bb1619d __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x3bc4d7bd pci_bus_type +EXPORT_SYMBOL vmlinux 0x3be33caf pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x3bebaa7b inode_init_owner +EXPORT_SYMBOL vmlinux 0x3c057da2 abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0x3c39d188 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c5dce1c sk_free +EXPORT_SYMBOL vmlinux 0x3c652b24 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x3c75494f posix_test_lock +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c8375b9 __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x3caee02f nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0x3cbac32b make_kgid +EXPORT_SYMBOL vmlinux 0x3cbb3ea4 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x3cc28c1e page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x3cc4b0dc lg_lock_init +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cffedbb mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x3d0e1968 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x3d1a8bd5 arp_tbl +EXPORT_SYMBOL vmlinux 0x3d1cc6d0 mem_cgroup_begin_page_stat +EXPORT_SYMBOL vmlinux 0x3d1ea90a ilookup5 +EXPORT_SYMBOL vmlinux 0x3d36b927 skb_store_bits +EXPORT_SYMBOL vmlinux 0x3d37b0b3 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x3d519992 vm_map_ram +EXPORT_SYMBOL vmlinux 0x3d54ee56 pci_get_subsys +EXPORT_SYMBOL vmlinux 0x3d57b0f0 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x3d62acc7 filp_close +EXPORT_SYMBOL vmlinux 0x3d6c308d __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x3d79fc65 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x3d9d0818 pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0x3dc02a4e flex_array_free_parts +EXPORT_SYMBOL vmlinux 0x3dcb590c ppp_unit_number +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dd588d1 abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x3dd6a5dd scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x3de3d4eb generic_file_mmap +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3dfe3077 serio_rescan +EXPORT_SYMBOL vmlinux 0x3e0a55ca do_splice_direct +EXPORT_SYMBOL vmlinux 0x3e0c2205 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x3e646488 swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e9ccb48 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x3e9d990b mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x3ea2fa69 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0x3eb707ad elv_add_request +EXPORT_SYMBOL vmlinux 0x3ec7eff1 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x3ed6bd33 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x3ee56480 abort_creds +EXPORT_SYMBOL vmlinux 0x3eeb5640 __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x3eeb7776 d_delete +EXPORT_SYMBOL vmlinux 0x3f0424ec __secpath_destroy +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f074e60 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x3f0769b1 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x3f2d94b3 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x3f3022eb scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x3f3772cf scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x3f406a3b enable_kernel_altivec +EXPORT_SYMBOL vmlinux 0x3f43bc70 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f5c9170 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x3f616ce2 queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x3f793054 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x3fa8b240 kill_anon_super +EXPORT_SYMBOL vmlinux 0x3faf56e4 input_inject_event +EXPORT_SYMBOL vmlinux 0x3fb1cf71 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x3fc3e4e3 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x3fc90f99 dev_err +EXPORT_SYMBOL vmlinux 0x3fd955b7 bio_flush_dcache_pages +EXPORT_SYMBOL vmlinux 0x3fe0d1c0 slhc_free +EXPORT_SYMBOL vmlinux 0x3fe7a428 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x3ff14922 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x3ff8e495 lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x4038d708 kernel_read +EXPORT_SYMBOL vmlinux 0x4039240f fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x4097c632 __page_symlink +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a2d1dd dm_table_get_size +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0x40c1534b xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d14e8d sockfd_lookup +EXPORT_SYMBOL vmlinux 0x40d52bf5 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40d889ee blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0x40f1ad10 tb_ticks_per_jiffy +EXPORT_SYMBOL vmlinux 0x410b32d0 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x4132c229 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x4133223d tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x4153e0aa udp_seq_open +EXPORT_SYMBOL vmlinux 0x415d8ba8 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x4164d1bf tcp_ioctl +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x419f9b7a pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0x41efe3e6 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x4215bd1b input_close_device +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x422fd07f agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0x423fc69c lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x4244b4cc __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x4261e3fc xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x4275620a mac_find_mode +EXPORT_SYMBOL vmlinux 0x429a1492 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x429be6d3 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x42ab89a4 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x42b0846d scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0x42bb960a __inet_hash +EXPORT_SYMBOL vmlinux 0x42fce228 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x43356531 __module_get +EXPORT_SYMBOL vmlinux 0x4338a6b6 I_BDEV +EXPORT_SYMBOL vmlinux 0x4349e0bf unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x43527c72 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x439742ae touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x43a01f90 complete_all +EXPORT_SYMBOL vmlinux 0x43a323c3 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x43b8cd27 i2c_transfer +EXPORT_SYMBOL vmlinux 0x43cbaa6e __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x43d147d7 agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0x43d8a449 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x43e60501 bioset_integrity_free +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x44031dc8 tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x443c9472 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x44438b96 hex2bin +EXPORT_SYMBOL vmlinux 0x444e4e7d skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x445294d2 mount_bdev +EXPORT_SYMBOL vmlinux 0x4457a2dd fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x447deedf from_kuid_munged +EXPORT_SYMBOL vmlinux 0x44a10344 d_instantiate_unique +EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x44d0734d i2c_del_driver +EXPORT_SYMBOL vmlinux 0x44d57adc bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x44d6ffb2 clear_nlink +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44eb192e wait_for_completion +EXPORT_SYMBOL vmlinux 0x4500a9fc of_phy_find_device +EXPORT_SYMBOL vmlinux 0x451f08ca phy_device_remove +EXPORT_SYMBOL vmlinux 0x45218fc3 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x456a1e70 bh_submit_read +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x458929ea tty_vhangup +EXPORT_SYMBOL vmlinux 0x45a30c15 dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0x45b91f5d sg_miter_start +EXPORT_SYMBOL vmlinux 0x45bb52e0 km_query +EXPORT_SYMBOL vmlinux 0x45d3bba6 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x45d4ddcb pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x45e2c072 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x45ef718d seq_write +EXPORT_SYMBOL vmlinux 0x45efa600 inet_listen +EXPORT_SYMBOL vmlinux 0x45f8881a napi_consume_skb +EXPORT_SYMBOL vmlinux 0x46005ae0 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x460dd3c4 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x4612c59d down_trylock +EXPORT_SYMBOL vmlinux 0x461cddbc udp_del_offload +EXPORT_SYMBOL vmlinux 0x461ebfa0 __copy_tofrom_user +EXPORT_SYMBOL vmlinux 0x46214596 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x462345e1 xmon +EXPORT_SYMBOL vmlinux 0x4623f3a4 find_inode_nowait +EXPORT_SYMBOL vmlinux 0x46284b8d blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy +EXPORT_SYMBOL vmlinux 0x46389fd5 ip_ct_attach +EXPORT_SYMBOL vmlinux 0x465757c3 cpu_present_mask +EXPORT_SYMBOL vmlinux 0x4658d3ce napi_gro_frags +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x46690ca2 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x46c74cac xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x46cdbc9c security_inode_permission +EXPORT_SYMBOL vmlinux 0x46d12956 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x46de1cfb mmc_release_host +EXPORT_SYMBOL vmlinux 0x46e8d54c lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0x46f1b83e xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x4713189c param_set_ushort +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x4757ac8c mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x475ff27f cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x47608718 fence_init +EXPORT_SYMBOL vmlinux 0x47711109 netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0x47794a25 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x47811d31 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x4791bd7a sock_no_mmap +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47a5166b of_platform_device_create +EXPORT_SYMBOL vmlinux 0x47b84ffa vme_master_request +EXPORT_SYMBOL vmlinux 0x47bda8d9 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x47c62a9b set_anon_super +EXPORT_SYMBOL vmlinux 0x47ca47e4 blk_mq_all_tag_busy_iter +EXPORT_SYMBOL vmlinux 0x47d81db6 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x47e7195a generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x47eaeab0 scsi_register +EXPORT_SYMBOL vmlinux 0x4808610e set_blocksize +EXPORT_SYMBOL vmlinux 0x4812d742 scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0x481ce6ce cpu_active_mask +EXPORT_SYMBOL vmlinux 0x483e8987 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x48404b9a remove_wait_queue +EXPORT_SYMBOL vmlinux 0x48465cdc end_page_writeback +EXPORT_SYMBOL vmlinux 0x484a7074 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x484e9307 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x484f4328 nf_log_unset +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x486ef23c pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x4881efab pmac_get_partition +EXPORT_SYMBOL vmlinux 0x489bbd09 flush_icache_user_range +EXPORT_SYMBOL vmlinux 0x489e795c grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x48aa7df7 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48baff3c blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x48c8708b tcp_sendpage +EXPORT_SYMBOL vmlinux 0x48e65314 of_mdio_parse_addr +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x490da710 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x4911f848 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x4918e345 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x4953b154 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x4955db4b should_remove_suid +EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x496d5943 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x49722b8b blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x4973edf2 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49cfa972 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x49de971f dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x49e7f8ca of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x49fcfada sk_reset_timer +EXPORT_SYMBOL vmlinux 0x4a07554d sock_i_ino +EXPORT_SYMBOL vmlinux 0x4a140188 lookup_one_len +EXPORT_SYMBOL vmlinux 0x4a150716 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0x4a381012 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x4a38dfaf sock_efree +EXPORT_SYMBOL vmlinux 0x4a6e153e __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x4a717c6d commit_creds +EXPORT_SYMBOL vmlinux 0x4aa22c72 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x4ab1dfc0 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk +EXPORT_SYMBOL vmlinux 0x4abbebdb submit_bh +EXPORT_SYMBOL vmlinux 0x4ac12431 rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0x4ac2471c security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x4ad650a8 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x4ad85f2c dma_direct_ops +EXPORT_SYMBOL vmlinux 0x4adc88f0 backlight_device_register +EXPORT_SYMBOL vmlinux 0x4ae151a6 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0x4af4a976 phy_init_eee +EXPORT_SYMBOL vmlinux 0x4afc8302 skb_clone +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b0238cc bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x4b3bbb5d fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b65aa37 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x4b7f3efd serio_interrupt +EXPORT_SYMBOL vmlinux 0x4b8326ff ida_remove +EXPORT_SYMBOL vmlinux 0x4b8fe3b9 proto_unregister +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bb9fa83 inet_bind +EXPORT_SYMBOL vmlinux 0x4bbf51a9 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x4bcf03a4 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x4bd22623 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x4be08bf6 generic_fillattr +EXPORT_SYMBOL vmlinux 0x4be3b50a dquot_quota_off +EXPORT_SYMBOL vmlinux 0x4be3b6d7 qdisc_list_del +EXPORT_SYMBOL vmlinux 0x4be85a03 memweight +EXPORT_SYMBOL vmlinux 0x4beb1a74 phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0x4beb3057 sock_i_uid +EXPORT_SYMBOL vmlinux 0x4bed99b3 __percpu_counter_add +EXPORT_SYMBOL vmlinux 0x4bfc4546 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x4c11435a _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x4c168057 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x4c29cd6f nvm_get_blk +EXPORT_SYMBOL vmlinux 0x4c29dcbf cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr +EXPORT_SYMBOL vmlinux 0x4c2b25ed sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf +EXPORT_SYMBOL vmlinux 0x4c3a3406 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x4c5f8f38 nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0x4c7061fa blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x4c7a2c24 tty_kref_put +EXPORT_SYMBOL vmlinux 0x4c7dd80e nf_log_register +EXPORT_SYMBOL vmlinux 0x4c7e4941 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x4c7e86bb blk_end_request +EXPORT_SYMBOL vmlinux 0x4c821dda posix_acl_valid +EXPORT_SYMBOL vmlinux 0x4ca25530 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x4ca78a1f mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x4ccef2aa jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4ced0cfc blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x4cf0482d xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x4d1b98de iunique +EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask +EXPORT_SYMBOL vmlinux 0x4d423bd1 console_stop +EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d4ab0c2 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x4d4b5af3 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x4d5cfb02 keyring_clear +EXPORT_SYMBOL vmlinux 0x4d666bab pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x4d78d6e4 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x4d791953 mempool_resize +EXPORT_SYMBOL vmlinux 0x4d83b295 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x4d891d20 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9967e0 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4da2cb83 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x4daa323b udp_ioctl +EXPORT_SYMBOL vmlinux 0x4db7bfdb neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x4dd8e39b ll_rw_block +EXPORT_SYMBOL vmlinux 0x4ddddd26 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4dec6038 memscan +EXPORT_SYMBOL vmlinux 0x4df0aeab netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4e000244 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x4e0acdb4 abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x4e0bb0f4 nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x4e127222 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x4e2db603 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e40eeb1 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x4e4b4d9b of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x4e5c5fbc bprm_change_interp +EXPORT_SYMBOL vmlinux 0x4e6379c4 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e8ec25b udp_add_offload +EXPORT_SYMBOL vmlinux 0x4e9dffb5 ip_fast_csum +EXPORT_SYMBOL vmlinux 0x4eaf10f7 posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x4eefbed4 security_task_getsecid +EXPORT_SYMBOL vmlinux 0x4efb6c06 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x4eff85fb path_noexec +EXPORT_SYMBOL vmlinux 0x4f0d120f sock_no_connect +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f33f81f sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f4ae05e input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x4f4bb2c6 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x4f51222f skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x4f512dba vfs_statfs +EXPORT_SYMBOL vmlinux 0x4f6041ef dns_query +EXPORT_SYMBOL vmlinux 0x4f620ecd agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x4f6258aa blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f85e79f uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x4f8fae08 mdiobus_free +EXPORT_SYMBOL vmlinux 0x4fadc242 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4fe99583 atomic64_dec_if_positive +EXPORT_SYMBOL vmlinux 0x50085837 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5012ca8b mmc_align_data_size +EXPORT_SYMBOL vmlinux 0x5050a755 sk_receive_skb +EXPORT_SYMBOL vmlinux 0x5050c098 phy_driver_register +EXPORT_SYMBOL vmlinux 0x50590245 of_device_register +EXPORT_SYMBOL vmlinux 0x505fe73b pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x506612ef netdev_features_change +EXPORT_SYMBOL vmlinux 0x509817cf vprintk_emit +EXPORT_SYMBOL vmlinux 0x50afb4ce nvm_unregister_target +EXPORT_SYMBOL vmlinux 0x50b66bcb radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x50f58edc security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x51177368 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x5118858f vme_dma_request +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x511a6ca7 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x511e34c8 nf_afinfo +EXPORT_SYMBOL vmlinux 0x513ab975 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x515e24a7 flush_instruction_cache +EXPORT_SYMBOL vmlinux 0x515f95c2 bio_copy_data +EXPORT_SYMBOL vmlinux 0x51671bce buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x5176d6af scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x51776f51 load_nls_default +EXPORT_SYMBOL vmlinux 0x518629fd d_rehash +EXPORT_SYMBOL vmlinux 0x519b0da3 finish_wait +EXPORT_SYMBOL vmlinux 0x519bca83 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x519e30f8 downgrade_write +EXPORT_SYMBOL vmlinux 0x51a43585 get_unmapped_area +EXPORT_SYMBOL vmlinux 0x51d0e127 pci_match_id +EXPORT_SYMBOL vmlinux 0x51e55335 giveup_altivec +EXPORT_SYMBOL vmlinux 0x51e59d00 padata_free +EXPORT_SYMBOL vmlinux 0x51e9331d mmc_power_save_host +EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup +EXPORT_SYMBOL vmlinux 0x51f94adb vfs_readv +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x52039f57 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x520b0bad mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x522b95df simple_write_end +EXPORT_SYMBOL vmlinux 0x5230054f kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0x524e54cf pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x525ee924 param_array_ops +EXPORT_SYMBOL vmlinux 0x5275d4c2 inode_permission +EXPORT_SYMBOL vmlinux 0x527830ff pmac_xpram_read +EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x529d2edf inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x52af562a __crc32c_le +EXPORT_SYMBOL vmlinux 0x52e34a3a netif_device_attach +EXPORT_SYMBOL vmlinux 0x52f67ade sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x52f9bc64 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x53068eb1 key_task_permission +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x53234e55 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x533a95eb of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x5351ab1a __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x5359916d generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x5389584a devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x53a266ea blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0x53be79c7 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x53d6ea6b sock_release +EXPORT_SYMBOL vmlinux 0x53dc2093 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x53ebab1b _outsl_ns +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x5411962a jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x5412c7c7 up +EXPORT_SYMBOL vmlinux 0x541f7173 unregister_binfmt +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x544d5bd8 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x5469b5c6 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x5472ac2d simple_fill_super +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54abfaea flush_hash_entry +EXPORT_SYMBOL vmlinux 0x54b72454 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x54bc6449 seq_dentry +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54d45597 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54e88dcd unregister_key_type +EXPORT_SYMBOL vmlinux 0x54ed07ba pci_bus_put +EXPORT_SYMBOL vmlinux 0x55075c29 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x55467ede fsl_upm_find +EXPORT_SYMBOL vmlinux 0x55503930 vfs_unlink +EXPORT_SYMBOL vmlinux 0x55543fb0 proc_set_user +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x5568c553 complete +EXPORT_SYMBOL vmlinux 0x5577ef9e udp_table +EXPORT_SYMBOL vmlinux 0x55b956c0 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55dd90ba __destroy_inode +EXPORT_SYMBOL vmlinux 0x55f34978 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x56185f15 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x562d39aa ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x563f3393 pagecache_write_end +EXPORT_SYMBOL vmlinux 0x56569027 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x5657e8a8 simple_release_fs +EXPORT_SYMBOL vmlinux 0x565ab334 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x56721689 mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0x567851e6 __frontswap_test +EXPORT_SYMBOL vmlinux 0x5689402c kfree_skb +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x56952301 mach_chrp +EXPORT_SYMBOL vmlinux 0x56c0a7fd inetdev_by_index +EXPORT_SYMBOL vmlinux 0x56c2b95b rtas_progress +EXPORT_SYMBOL vmlinux 0x56c5ba86 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x570109aa peernet2id_alloc +EXPORT_SYMBOL vmlinux 0x5704aac5 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x570d94d3 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x5710b864 phy_attach +EXPORT_SYMBOL vmlinux 0x57195595 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x571e0c27 single_open +EXPORT_SYMBOL vmlinux 0x5724a73e simple_follow_link +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x5735bd44 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x5746ebde __frontswap_load +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x5751247b __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x57528f91 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x57c51a6b blk_stack_limits +EXPORT_SYMBOL vmlinux 0x57c9c2aa devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x57ccb5d8 lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0x57d0bb22 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x57f152aa devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x58227e6d remap_pfn_range +EXPORT_SYMBOL vmlinux 0x582d9d4d i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x583127b1 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x5848e804 migrate_page_copy +EXPORT_SYMBOL vmlinux 0x584a2999 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x585522bb mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep +EXPORT_SYMBOL vmlinux 0x58623807 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x588edf01 cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x589a3e63 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x589c5b5b flow_cache_init +EXPORT_SYMBOL vmlinux 0x58b47ef2 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58bc7aba phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x58be4430 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0x58d0a2d5 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58fc2e53 tcp_proto_cgroup +EXPORT_SYMBOL vmlinux 0x5905d860 vm_stat +EXPORT_SYMBOL vmlinux 0x5911b90d neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x591241d0 register_sysctl_table +EXPORT_SYMBOL vmlinux 0x59239022 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x5927b11b input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x5929d9f7 register_netdev +EXPORT_SYMBOL vmlinux 0x59429a0e xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x5959a7f7 dquot_commit +EXPORT_SYMBOL vmlinux 0x595ac960 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x595d0946 empty_zero_page +EXPORT_SYMBOL vmlinux 0x596d6840 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x597ddd73 dev_warn +EXPORT_SYMBOL vmlinux 0x5988a427 blk_init_queue_node +EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x599f5711 cdev_init +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59b3378a completion_done +EXPORT_SYMBOL vmlinux 0x59c99a3f blk_run_queue +EXPORT_SYMBOL vmlinux 0x59cedeb0 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x59d8223a ioport_resource +EXPORT_SYMBOL vmlinux 0x5a046285 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a102f32 inet_sendpage +EXPORT_SYMBOL vmlinux 0x5a1fdf06 import_iovec +EXPORT_SYMBOL vmlinux 0x5a36a52a do_SAK +EXPORT_SYMBOL vmlinux 0x5a419407 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x5a4cbeee __register_chrdev +EXPORT_SYMBOL vmlinux 0x5a691091 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x5a6a8add cfb_copyarea +EXPORT_SYMBOL vmlinux 0x5a7b42e8 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x5abdc721 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem +EXPORT_SYMBOL vmlinux 0x5b43f1f1 rtas_service_present +EXPORT_SYMBOL vmlinux 0x5b524c7f pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x5b5712a5 dev_load +EXPORT_SYMBOL vmlinux 0x5b73ed1c thaw_bdev +EXPORT_SYMBOL vmlinux 0x5b88e21f xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x5b9828c5 dma_spin_lock +EXPORT_SYMBOL vmlinux 0x5b9b3a23 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x5bb9daec __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0x5bbeb969 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x5bd5d2b3 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x5bd8165a __d_drop +EXPORT_SYMBOL vmlinux 0x5bddb81c __sk_dst_check +EXPORT_SYMBOL vmlinux 0x5bdf463a __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x5bf1abb4 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x5c265cba sg_init_one +EXPORT_SYMBOL vmlinux 0x5c37c147 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x5c37f319 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x5c5293f2 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x5c6d231f scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x5c81a80e pci_iomap_range +EXPORT_SYMBOL vmlinux 0x5c85556b iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x5c94e17b xfrm_input +EXPORT_SYMBOL vmlinux 0x5ca10397 lro_flush_all +EXPORT_SYMBOL vmlinux 0x5cc1d19f irq_to_desc +EXPORT_SYMBOL vmlinux 0x5cc32bdc bitmap_copy_le +EXPORT_SYMBOL vmlinux 0x5cc3f40e dev_get_stats +EXPORT_SYMBOL vmlinux 0x5cd9e760 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x5cdcf53a t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x5ce12074 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cff9bab __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x5d03ec61 lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0x5d067e06 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x5d10cca9 sk_capable +EXPORT_SYMBOL vmlinux 0x5d1b5ce9 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x5d3dd465 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x5d40bd38 uart_update_timeout +EXPORT_SYMBOL vmlinux 0x5d492fed dst_init +EXPORT_SYMBOL vmlinux 0x5d50bf19 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d6234b3 register_netdevice +EXPORT_SYMBOL vmlinux 0x5d774e3a input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x5d7780a3 led_set_brightness +EXPORT_SYMBOL vmlinux 0x5da2f67c vfs_writev +EXPORT_SYMBOL vmlinux 0x5dc8a7ee crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x5dd1425a get_gendisk +EXPORT_SYMBOL vmlinux 0x5dd41d5a of_iomap +EXPORT_SYMBOL vmlinux 0x5de7602e bdi_init +EXPORT_SYMBOL vmlinux 0x5e087be7 param_set_bint +EXPORT_SYMBOL vmlinux 0x5e0cb8e1 pci_release_region +EXPORT_SYMBOL vmlinux 0x5e27321b register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x5e29888e cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x5e30079f trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x5e3a8a9c __wake_up +EXPORT_SYMBOL vmlinux 0x5e3dcdc5 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x5e3fff84 dev_mc_del +EXPORT_SYMBOL vmlinux 0x5e4b6fc2 input_get_keycode +EXPORT_SYMBOL vmlinux 0x5e5d93a8 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5eb0401e proc_dostring +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ec50fb1 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x5ec932af security_path_chown +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed0708b of_node_get +EXPORT_SYMBOL vmlinux 0x5ed77e8e __check_sticky +EXPORT_SYMBOL vmlinux 0x5ee4d7c8 generic_write_end +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f079b2a md_update_sb +EXPORT_SYMBOL vmlinux 0x5f07fe76 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f0aa4f1 skb_copy +EXPORT_SYMBOL vmlinux 0x5f21f985 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x5f54f424 dquot_release +EXPORT_SYMBOL vmlinux 0x5f5accc5 inet6_release +EXPORT_SYMBOL vmlinux 0x5f63331b skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x5f6c19ef simple_transaction_set +EXPORT_SYMBOL vmlinux 0x5f754e5a memset +EXPORT_SYMBOL vmlinux 0x5f806242 blk_stop_queue +EXPORT_SYMBOL vmlinux 0x5f8a2728 isa_io_base +EXPORT_SYMBOL vmlinux 0x5f8b8d7d xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x5f9857be of_match_device +EXPORT_SYMBOL vmlinux 0x5fb357b1 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x5fc2be2f nvm_erase_blk +EXPORT_SYMBOL vmlinux 0x5fd268cb radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5ff014b7 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x6007f3b3 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x600a7ee9 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x6011cc22 blk_end_request_all +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x6026c87f vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x60600039 vm_mmap +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x60731535 __seq_open_private +EXPORT_SYMBOL vmlinux 0x6073732c cur_cpu_spec +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x609f5a3c seq_release +EXPORT_SYMBOL vmlinux 0x60c63804 inode_init_once +EXPORT_SYMBOL vmlinux 0x60c6a7b6 kfree_put_link +EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x60f22bfc __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x6106acad tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x616b825d dql_init +EXPORT_SYMBOL vmlinux 0x6193d217 bdi_register_dev +EXPORT_SYMBOL vmlinux 0x619f4dd7 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x61b30053 put_tty_driver +EXPORT_SYMBOL vmlinux 0x61b3560c cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61c25110 md_check_recovery +EXPORT_SYMBOL vmlinux 0x61d59fa4 path_put +EXPORT_SYMBOL vmlinux 0x61ecfb73 mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0x61eef2c9 _insb +EXPORT_SYMBOL vmlinux 0x61f1daf0 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x61fec807 from_kgid +EXPORT_SYMBOL vmlinux 0x6209a83d nf_log_set +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6220a325 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x6220b4a2 crc32_le +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x62290f61 udp_disconnect +EXPORT_SYMBOL vmlinux 0x623d7182 _chrp_type +EXPORT_SYMBOL vmlinux 0x6241f605 giveup_fpu +EXPORT_SYMBOL vmlinux 0x62425a8b genl_notify +EXPORT_SYMBOL vmlinux 0x62538167 slhc_toss +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x628332e8 pmu_power_flags +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x628ce6fe jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x62ab5619 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x62aba682 fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0x62ea9af4 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x62f65007 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x630ae12c ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x633582e7 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x63552a4e vmap +EXPORT_SYMBOL vmlinux 0x6360298c key_alloc +EXPORT_SYMBOL vmlinux 0x636f8435 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x63789e73 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x6381c383 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x6387af3a blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63aed704 textsearch_register +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63e3b384 vme_irq_free +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63efc982 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x63f48cba kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user +EXPORT_SYMBOL vmlinux 0x64028cf4 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x64069325 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x6413ddd5 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x64147132 datagram_poll +EXPORT_SYMBOL vmlinux 0x64337a0c pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x6434b8b7 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0x64565307 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x6466c45a blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x646cc6ab pmu_poll +EXPORT_SYMBOL vmlinux 0x646ef81c pci_choose_state +EXPORT_SYMBOL vmlinux 0x64746b80 blk_queue_split +EXPORT_SYMBOL vmlinux 0x647f0f4c user_path_create +EXPORT_SYMBOL vmlinux 0x64814938 napi_complete_done +EXPORT_SYMBOL vmlinux 0x648f3f67 tty_name +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x649a2cdc bio_uncopy_user +EXPORT_SYMBOL vmlinux 0x651065df of_mm_gpiochip_remove +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x6531cec1 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x65400222 __irq_offset_value +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x6555ef6d cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x65826a5c mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x65bb58a2 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x65ce407e ihold +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65ec0d2d bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x66002161 skb_pull +EXPORT_SYMBOL vmlinux 0x6611fcd7 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0x661d5813 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x66227eae vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x66282930 tty_lock +EXPORT_SYMBOL vmlinux 0x66324110 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x663a65ba soft_cursor +EXPORT_SYMBOL vmlinux 0x663f88cb file_remove_privs +EXPORT_SYMBOL vmlinux 0x6657c39d tcf_hash_check +EXPORT_SYMBOL vmlinux 0x665f03ec sget +EXPORT_SYMBOL vmlinux 0x66682eea dev_addr_del +EXPORT_SYMBOL vmlinux 0x666d6d61 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x6676e9d7 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x6680b512 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x6696ca5a md_finish_reshape +EXPORT_SYMBOL vmlinux 0x66b51445 vga_con +EXPORT_SYMBOL vmlinux 0x66bf7b85 __netif_schedule +EXPORT_SYMBOL vmlinux 0x66cbf14b pmac_xpram_write +EXPORT_SYMBOL vmlinux 0x66cd16a0 pci_dev_put +EXPORT_SYMBOL vmlinux 0x66cd325d dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x66d25684 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x6702b470 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x6702de31 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x670439b8 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x67062d54 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x672882b2 gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x6765ef34 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create +EXPORT_SYMBOL vmlinux 0x677e6bf8 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x679e00aa of_scan_pci_bridge +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x681105e1 follow_down +EXPORT_SYMBOL vmlinux 0x6822cdb7 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x68327182 mntput +EXPORT_SYMBOL vmlinux 0x685c374d replace_mount_options +EXPORT_SYMBOL vmlinux 0x685ee8b0 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x68609857 complete_and_exit +EXPORT_SYMBOL vmlinux 0x6865e12e mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x68682cc8 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x6884439e ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x688581c1 inc_nlink +EXPORT_SYMBOL vmlinux 0x689847f0 generic_removexattr +EXPORT_SYMBOL vmlinux 0x689ee73f bio_put +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x68d83163 of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x68f31c9d gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x69066746 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x690b53a2 da903x_query_status +EXPORT_SYMBOL vmlinux 0x691338d0 generic_listxattr +EXPORT_SYMBOL vmlinux 0x69227f88 set_wb_congested +EXPORT_SYMBOL vmlinux 0x69418333 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x6967ca64 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x69a0a752 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69a942a5 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69b5f837 uart_resume_port +EXPORT_SYMBOL vmlinux 0x69c850dc in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x69d7e5b8 __debugger_ipi +EXPORT_SYMBOL vmlinux 0x69eb859b pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a0b2bba alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x6a157bf5 user_revoke +EXPORT_SYMBOL vmlinux 0x6a3e35cd tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x6a58eefd tty_write_room +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a62fd6d blk_queue_bounce +EXPORT_SYMBOL vmlinux 0x6a6cbe76 blk_requeue_request +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6a898d56 blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x6a937a58 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x6aa18e72 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x6ab2f3db twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x6ac09ac9 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be +EXPORT_SYMBOL vmlinux 0x6acbaef7 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x6ad3109f scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x6ae2ac1c get_mm_exe_file +EXPORT_SYMBOL vmlinux 0x6aedbdc6 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af5baef devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0x6af932d9 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b23bab0 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b31d741 generic_perform_write +EXPORT_SYMBOL vmlinux 0x6b4c4f46 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x6b66c889 fence_free +EXPORT_SYMBOL vmlinux 0x6bb0c7a7 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6be6f969 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x6bf266a4 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x6c0450df cdev_add +EXPORT_SYMBOL vmlinux 0x6c097a27 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer +EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn +EXPORT_SYMBOL vmlinux 0x6c36cc0c __sock_create +EXPORT_SYMBOL vmlinux 0x6c40b600 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x6c40c77a sk_net_capable +EXPORT_SYMBOL vmlinux 0x6c4c2f89 param_ops_byte +EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat +EXPORT_SYMBOL vmlinux 0x6c545652 dcache_readdir +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c8750d0 sock_create_lite +EXPORT_SYMBOL vmlinux 0x6c9191df md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x6ca1d1a4 atomic64_read +EXPORT_SYMBOL vmlinux 0x6ca669f8 registered_fb +EXPORT_SYMBOL vmlinux 0x6cb37127 flex_array_clear +EXPORT_SYMBOL vmlinux 0x6cc0b3a1 vfs_writef +EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6cf7553d sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d148356 sk_dst_check +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d30e044 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x6d4e9532 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x6d65855d gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x6d740223 flex_array_put +EXPORT_SYMBOL vmlinux 0x6d9db2c0 dst_release +EXPORT_SYMBOL vmlinux 0x6da928f4 _insw_ns +EXPORT_SYMBOL vmlinux 0x6ddf1dcf lock_sock_fast +EXPORT_SYMBOL vmlinux 0x6de53e11 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6df9d740 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x6e25c667 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x6e3513a3 dev_uc_add +EXPORT_SYMBOL vmlinux 0x6e3b819f sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x6e4b5b52 param_set_long +EXPORT_SYMBOL vmlinux 0x6e6514ed radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e7e04f2 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x6e80409a d_move +EXPORT_SYMBOL vmlinux 0x6e858117 serio_close +EXPORT_SYMBOL vmlinux 0x6e87517e netdev_warn +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6eafb104 security_inode_readlink +EXPORT_SYMBOL vmlinux 0x6eb0032c kunmap_high +EXPORT_SYMBOL vmlinux 0x6eb74dff proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x6eb8486c sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x6ed2ebe4 i2c_use_client +EXPORT_SYMBOL vmlinux 0x6ed90314 blk_register_region +EXPORT_SYMBOL vmlinux 0x6ef638f1 inode_change_ok +EXPORT_SYMBOL vmlinux 0x6efe2ff3 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x6f14f3b5 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash +EXPORT_SYMBOL vmlinux 0x6f2741e2 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x6f2ed729 __vfs_read +EXPORT_SYMBOL vmlinux 0x6f360f22 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x6f36fb1b blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x6f4380b1 mapping_tagged +EXPORT_SYMBOL vmlinux 0x6f4f59c8 tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0x6f658bbd freeze_super +EXPORT_SYMBOL vmlinux 0x6f78d7ee param_get_ulong +EXPORT_SYMBOL vmlinux 0x6f88ad81 security_file_permission +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6f8a0387 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x6f8c9923 __serio_register_driver +EXPORT_SYMBOL vmlinux 0x6f8f6101 pci_assign_resource +EXPORT_SYMBOL vmlinux 0x6fa4aa88 nvm_register +EXPORT_SYMBOL vmlinux 0x6fb245a5 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fcdda40 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x6ff5151c __tcf_hash_release +EXPORT_SYMBOL vmlinux 0x6ff70912 macio_dev_get +EXPORT_SYMBOL vmlinux 0x6ff8f6aa get_task_io_context +EXPORT_SYMBOL vmlinux 0x70336048 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x7051581b set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x7062b4cd cmdline_parts_free +EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x70a33285 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x70b83713 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x70d888b7 __debugger_fault_handler +EXPORT_SYMBOL vmlinux 0x70f86c70 pmu_queue_request +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x7124ccbc neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x712e4e1c dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x712ed37b radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x7151eec7 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x71590c1a register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x7169be68 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x71742a31 lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0x717f828d blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x719f225b stop_tty +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71afdf66 blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0x71b7f2a0 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x71c5fc3e kern_unmount +EXPORT_SYMBOL vmlinux 0x71c90087 memcmp +EXPORT_SYMBOL vmlinux 0x71d438e7 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x71f65175 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x722a0837 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x723c1d41 padata_stop +EXPORT_SYMBOL vmlinux 0x729df2fe d_genocide +EXPORT_SYMBOL vmlinux 0x72a0e6f2 __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x72a26c38 inet6_bind +EXPORT_SYMBOL vmlinux 0x72a6e222 filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72b31661 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x72b69fa0 file_open_root +EXPORT_SYMBOL vmlinux 0x72b6fa56 fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x72d37379 sock_no_getname +EXPORT_SYMBOL vmlinux 0x72d58de9 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x72e74544 save_mount_options +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72ecd066 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x72ee1bf0 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0x72f6759f dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x731a01e6 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x732c7f3e ppp_channel_index +EXPORT_SYMBOL vmlinux 0x732d454c follow_up +EXPORT_SYMBOL vmlinux 0x732f00d4 account_page_dirtied +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x73494012 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x7354202b iget5_locked +EXPORT_SYMBOL vmlinux 0x735d8503 add_wait_queue +EXPORT_SYMBOL vmlinux 0x73710a3e dqstats +EXPORT_SYMBOL vmlinux 0x73979de6 atomic64_or +EXPORT_SYMBOL vmlinux 0x739d065e blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0x73a9db71 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x73c93591 dev_emerg +EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x741369b2 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x74141f4d nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x741c65f5 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x741cb170 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x745dce24 __vfs_write +EXPORT_SYMBOL vmlinux 0x74689bc5 __blk_run_queue +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x7481924e __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x749fdb0c of_get_pci_address +EXPORT_SYMBOL vmlinux 0x74b725ef input_unregister_handler +EXPORT_SYMBOL vmlinux 0x74b9bc57 lookup_bdev +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c5f1c8 input_event +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74e7705f of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0x74f3a074 init_net +EXPORT_SYMBOL vmlinux 0x74fe8730 sys_ctrler +EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv +EXPORT_SYMBOL vmlinux 0x751a5022 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x75234a06 vfs_mknod +EXPORT_SYMBOL vmlinux 0x75271b2b proc_remove +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x753a3c77 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x754c0fc7 devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0x755ba752 devm_request_resource +EXPORT_SYMBOL vmlinux 0x75678edb read_code +EXPORT_SYMBOL vmlinux 0x756a6c44 clear_wb_congested +EXPORT_SYMBOL vmlinux 0x756dd160 start_thread +EXPORT_SYMBOL vmlinux 0x756fb286 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 +EXPORT_SYMBOL vmlinux 0x75994700 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0x75a4a715 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x75bae4f7 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75da1b95 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x7616a2fa dev_open +EXPORT_SYMBOL vmlinux 0x76252c78 phy_resume +EXPORT_SYMBOL vmlinux 0x76294b68 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x763b6bef seq_hex_dump +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x7662f990 proc_create_data +EXPORT_SYMBOL vmlinux 0x7667d548 nf_register_hooks +EXPORT_SYMBOL vmlinux 0x767e0f43 swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0x76ae215a __nla_reserve +EXPORT_SYMBOL vmlinux 0x76c2bb29 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x76c2f5de note_scsi_host +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76d9bf11 crc32_be +EXPORT_SYMBOL vmlinux 0x76e0f362 tso_start +EXPORT_SYMBOL vmlinux 0x76f6c5ef kmalloc_order +EXPORT_SYMBOL vmlinux 0x76fb4b83 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x770de7d8 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x7710c21e ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x7713d4ee filemap_fdatawait +EXPORT_SYMBOL vmlinux 0x7738e8a1 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x774ed568 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x775088e8 page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0x77535de1 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x775a130e __sg_free_table +EXPORT_SYMBOL vmlinux 0x778a1f63 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77ba7fba bioset_create +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77cde4db dquot_operations +EXPORT_SYMBOL vmlinux 0x77e8f456 param_set_short +EXPORT_SYMBOL vmlinux 0x781e7408 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x782567ec memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x782c288f uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x783b977a kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x786e3024 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x787f15a2 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x788fe103 iomem_resource +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78a0a74d __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x78b21663 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x78ca7328 sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x790a1db4 pci_pme_active +EXPORT_SYMBOL vmlinux 0x79277391 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x7931892a pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x7940e88f tcp_check_req +EXPORT_SYMBOL vmlinux 0x79427ff4 elv_rb_find +EXPORT_SYMBOL vmlinux 0x7943044b get_io_context +EXPORT_SYMBOL vmlinux 0x7945749e devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x795a22a3 reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x79848b3c blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0x798a9bcc xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x79934b02 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x799585c5 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79cdc2b4 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x79f30efc dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x79f6ac37 nvm_put_blk +EXPORT_SYMBOL vmlinux 0x79fd4fa3 install_exec_creds +EXPORT_SYMBOL vmlinux 0x79fe4cbb write_inode_now +EXPORT_SYMBOL vmlinux 0x7a192833 phy_device_free +EXPORT_SYMBOL vmlinux 0x7a2add7d current_kernel_time64 +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a5659f1 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x7a70e3b2 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x7a78cc12 key_revoke +EXPORT_SYMBOL vmlinux 0x7a89b88a jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x7a9404d5 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a9b2fa7 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aaf929e pci_restore_state +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ad95e55 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf +EXPORT_SYMBOL vmlinux 0x7b100894 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b1ade38 lz4_decompress +EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x7b365042 dev_close +EXPORT_SYMBOL vmlinux 0x7b3f4a4d input_register_handler +EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap +EXPORT_SYMBOL vmlinux 0x7b867914 PDE_DATA +EXPORT_SYMBOL vmlinux 0x7b94ea0c netdev_alert +EXPORT_SYMBOL vmlinux 0x7be3f865 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x7be4827c pci_dram_offset +EXPORT_SYMBOL vmlinux 0x7be8fb92 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x7bfd470f skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x7c003aef _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c35ace1 mmc_add_host +EXPORT_SYMBOL vmlinux 0x7c37ba29 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c5d35c8 tcp_destroy_cgroup +EXPORT_SYMBOL vmlinux 0x7c62cd5e rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0x7c8d311e seq_path +EXPORT_SYMBOL vmlinux 0x7c9291d1 csum_partial_copy_generic +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7c99b913 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x7cac28c0 tcp_prot +EXPORT_SYMBOL vmlinux 0x7cad6a2c ppp_register_channel +EXPORT_SYMBOL vmlinux 0x7caed410 single_open_size +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7d0a7a80 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d192c49 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x7d206994 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x7d2ddd5a tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x7d525532 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x7d546437 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x7d628ab8 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x7d696971 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x7d6b0369 of_phy_attach +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d80f508 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x7d8de46d call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x7d8ee9bd neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x7d9103d7 fb_pan_display +EXPORT_SYMBOL vmlinux 0x7d94a1ba migrate_page +EXPORT_SYMBOL vmlinux 0x7d968392 pci_request_regions +EXPORT_SYMBOL vmlinux 0x7d97e46d xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x7d97eb9a kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x7d9b23a2 rwsem_wake +EXPORT_SYMBOL vmlinux 0x7dc97879 rtas_get_error_log_max +EXPORT_SYMBOL vmlinux 0x7dcb0931 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x7def627b macio_register_driver +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7df8a422 get_agp_version +EXPORT_SYMBOL vmlinux 0x7e0105ad bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x7e35084e f_setown +EXPORT_SYMBOL vmlinux 0x7e3d7da0 param_ops_bint +EXPORT_SYMBOL vmlinux 0x7e3fb211 of_get_named_gpio_flags +EXPORT_SYMBOL vmlinux 0x7e76a6e7 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x7e793e9f netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x7e8199d0 fd_install +EXPORT_SYMBOL vmlinux 0x7e87227e slhc_compress +EXPORT_SYMBOL vmlinux 0x7ea44488 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x7eb32de2 dev_uc_init +EXPORT_SYMBOL vmlinux 0x7ebb1318 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0x7edb3bb5 vme_bus_num +EXPORT_SYMBOL vmlinux 0x7ee3cb98 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7ee73c0c memcg_socket_limit_enabled +EXPORT_SYMBOL vmlinux 0x7eeec200 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0x7efc1634 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x7efd19f9 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f06396f from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x7f071605 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x7f167f40 would_dump +EXPORT_SYMBOL vmlinux 0x7f1d812c __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f4a640c pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x7f4daf0c agp_create_memory +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f656042 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x7f8b27c0 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x7f9dfd32 of_get_address +EXPORT_SYMBOL vmlinux 0x7fc7244a skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fe7b516 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x7fed7a20 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x801103a3 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x8060f13f wait_iff_congested +EXPORT_SYMBOL vmlinux 0x807dacf9 bio_init +EXPORT_SYMBOL vmlinux 0x80841606 swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0x8085a0f8 dev_addr_add +EXPORT_SYMBOL vmlinux 0x808959ad neigh_seq_start +EXPORT_SYMBOL vmlinux 0x80aa096c phy_find_first +EXPORT_SYMBOL vmlinux 0x80ac83c0 dev_activate +EXPORT_SYMBOL vmlinux 0x80b19b63 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x80c796e7 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0x80c88af4 tcp_req_err +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80cabcd3 vm_event_states +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80fc7950 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x811e7d52 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x81278559 input_flush_device +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815ce4cf xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x81819480 cpu_sibling_map +EXPORT_SYMBOL vmlinux 0x81a07f4e _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x81beca00 inode_set_flags +EXPORT_SYMBOL vmlinux 0x81c0a84f rtas_set_indicator +EXPORT_SYMBOL vmlinux 0x81c62495 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x81c95229 __devm_request_region +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81f1069f of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0x81f2c3df vfs_rename +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x82281b81 simple_dname +EXPORT_SYMBOL vmlinux 0x822c5a8c fence_add_callback +EXPORT_SYMBOL vmlinux 0x822f411f drop_super +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x827f198b xfrm_state_update +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x828344b1 bio_phys_segments +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x829069c0 led_blink_set_oneshot +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82addba0 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x82b2122c send_sig +EXPORT_SYMBOL vmlinux 0x82c16d59 lock_fb_info +EXPORT_SYMBOL vmlinux 0x82c18c24 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x82cd540a atomic64_and +EXPORT_SYMBOL vmlinux 0x82d6f1e8 kern_path +EXPORT_SYMBOL vmlinux 0x82d84cb4 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x82e5a238 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x82eedca3 request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x82fa3369 eth_header_cache +EXPORT_SYMBOL vmlinux 0x830b57b8 lru_cache_add_file +EXPORT_SYMBOL vmlinux 0x831a3fe0 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x832fa791 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x833ceb8e filp_open +EXPORT_SYMBOL vmlinux 0x836fa556 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x8372cd2f __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x838a7b83 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x838b6957 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x8393aa34 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x839e0a0b tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x83a3369a param_get_uint +EXPORT_SYMBOL vmlinux 0x83a9822b kernel_connect +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83be68b9 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x83c4d950 phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83d05b6c netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x83e45be0 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x8418d41b blk_integrity_register +EXPORT_SYMBOL vmlinux 0x841d6e04 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x841db4ef down_write +EXPORT_SYMBOL vmlinux 0x84369b78 give_up_console +EXPORT_SYMBOL vmlinux 0x844404cf ISA_DMA_THRESHOLD +EXPORT_SYMBOL vmlinux 0x8450907a pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x845b362b seq_release_private +EXPORT_SYMBOL vmlinux 0x84a69fdc vme_slave_get +EXPORT_SYMBOL vmlinux 0x84b183ae strncmp +EXPORT_SYMBOL vmlinux 0x84bd69bf dq_data_lock +EXPORT_SYMBOL vmlinux 0x84c11f91 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0x84c6c1c0 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x84ed7af5 mount_pseudo +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x84fff4a9 poll_freewait +EXPORT_SYMBOL vmlinux 0x8505f689 blk_peek_request +EXPORT_SYMBOL vmlinux 0x853c31e7 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x8541bccc intercept_table +EXPORT_SYMBOL vmlinux 0x854e1c0b sg_nents +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x8589dd8f param_ops_long +EXPORT_SYMBOL vmlinux 0x859e78f4 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x85a7b8a2 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85ebf80e iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85fa7e1b is_bad_inode +EXPORT_SYMBOL vmlinux 0x86087f2d d_set_d_op +EXPORT_SYMBOL vmlinux 0x86182550 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x861e17ae md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x862ee4d0 dma_set_mask +EXPORT_SYMBOL vmlinux 0x863ed438 __bforget +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x8670d5ef i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x867984cd iget_locked +EXPORT_SYMBOL vmlinux 0x8689b35d genphy_config_init +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86a4889a kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x86bb3c53 register_quota_format +EXPORT_SYMBOL vmlinux 0x86bc22d8 ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0x86c3063b iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x86d150c0 dm_put_device +EXPORT_SYMBOL vmlinux 0x86db1cbb rtas_flash_term_hook +EXPORT_SYMBOL vmlinux 0x86f9da1d nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x870094d3 simple_write_begin +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x87339f4e skb_queue_head +EXPORT_SYMBOL vmlinux 0x873ce421 elv_rb_del +EXPORT_SYMBOL vmlinux 0x87704747 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x87862af2 key_link +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x87b7515c neigh_connected_output +EXPORT_SYMBOL vmlinux 0x87ba6f03 elv_register_queue +EXPORT_SYMBOL vmlinux 0x87bb50d8 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x87d20695 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x87d67608 audit_log_task_info +EXPORT_SYMBOL vmlinux 0x87dcedf7 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x881c8f91 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x8836f2a9 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x884607a3 init_task +EXPORT_SYMBOL vmlinux 0x885392b6 misc_register +EXPORT_SYMBOL vmlinux 0x88580065 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x886cb0a4 macio_unregister_driver +EXPORT_SYMBOL vmlinux 0x887d0a4d tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x88a7b8e8 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x88b6dcd8 of_phy_connect +EXPORT_SYMBOL vmlinux 0x88b9f1e6 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x88bbb6cf kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x88c0ed29 msi_bitmap_free_hwirqs +EXPORT_SYMBOL vmlinux 0x88cb2dda lock_sock_nested +EXPORT_SYMBOL vmlinux 0x891fbb10 mempool_destroy +EXPORT_SYMBOL vmlinux 0x8936ea13 set_disk_ro +EXPORT_SYMBOL vmlinux 0x89453a5c blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0x895aed43 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x896486f0 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x89797060 _raw_read_lock +EXPORT_SYMBOL vmlinux 0x89960165 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x89993c32 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x89b3107b isa_mem_base +EXPORT_SYMBOL vmlinux 0x89b5dd6d no_llseek +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89ea35f7 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a23d7be contig_page_data +EXPORT_SYMBOL vmlinux 0x8a243274 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a5c94eb key_invalidate +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a84249d alloc_file +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aac11f1 kobject_add +EXPORT_SYMBOL vmlinux 0x8ab4079e atomic64_add +EXPORT_SYMBOL vmlinux 0x8abd366c macio_dev_put +EXPORT_SYMBOL vmlinux 0x8abe422a ether_setup +EXPORT_SYMBOL vmlinux 0x8ad840f3 swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x8b16f4ee reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0x8b1b0781 start_tty +EXPORT_SYMBOL vmlinux 0x8b32e5ca simple_lookup +EXPORT_SYMBOL vmlinux 0x8b36dd94 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b612577 skb_tx_error +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b8f3a4f nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0x8bbbfeae tcf_exts_change +EXPORT_SYMBOL vmlinux 0x8bd611cd phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0x8bd6498a phy_stop +EXPORT_SYMBOL vmlinux 0x8bd6ae23 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x8bfda102 sock_no_bind +EXPORT_SYMBOL vmlinux 0x8c059238 fb_get_mode +EXPORT_SYMBOL vmlinux 0x8c09c5ed neigh_parms_release +EXPORT_SYMBOL vmlinux 0x8c0bce2d cfb_imageblit +EXPORT_SYMBOL vmlinux 0x8c0c6b44 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c5763b6 unregister_netdev +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c63bb84 file_ns_capable +EXPORT_SYMBOL vmlinux 0x8c64dfd6 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x8c72cb15 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x8c8a82fc sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x8ca7347f copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x8cb83526 netdev_notice +EXPORT_SYMBOL vmlinux 0x8cbc7b9e block_write_end +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cc8ceec max8998_write_reg +EXPORT_SYMBOL vmlinux 0x8cdbc869 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x8d015dd4 __bswapdi2 +EXPORT_SYMBOL vmlinux 0x8d06dc0e inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0x8d0e93b9 param_ops_int +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d5a1626 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x8d6b2ce1 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x8d72495b __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d9f1762 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x8dafff7b dump_emit +EXPORT_SYMBOL vmlinux 0x8dcdfbd5 blk_recount_segments +EXPORT_SYMBOL vmlinux 0x8ddfb948 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x8de0b5ac mempool_create +EXPORT_SYMBOL vmlinux 0x8df5da63 memstart_addr +EXPORT_SYMBOL vmlinux 0x8dffafa6 __kernel_write +EXPORT_SYMBOL vmlinux 0x8e235e7a padata_alloc +EXPORT_SYMBOL vmlinux 0x8e38595b posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x8e39c4c8 dcb_getapp +EXPORT_SYMBOL vmlinux 0x8e4d3c1f xattr_full_name +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e7d4fa1 simple_getattr +EXPORT_SYMBOL vmlinux 0x8e96b84d phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0x8eb03965 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x8ec04552 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x8ef224de udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x8f1fada1 mmc_erase +EXPORT_SYMBOL vmlinux 0x8f469097 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x8f6fec84 fsl_lbc_ctrl_dev +EXPORT_SYMBOL vmlinux 0x8f728efb inet_recvmsg +EXPORT_SYMBOL vmlinux 0x8f85f835 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x8fb41c96 init_buffer +EXPORT_SYMBOL vmlinux 0x8fb54e6c generic_writepages +EXPORT_SYMBOL vmlinux 0x8fbf37e0 profile_pc +EXPORT_SYMBOL vmlinux 0x8fc15bf6 iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0x8fc3809a scsi_device_get +EXPORT_SYMBOL vmlinux 0x8fc3ed1a bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x8ff98a9f pci_get_slot +EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 +EXPORT_SYMBOL vmlinux 0x901905fa ps2_command +EXPORT_SYMBOL vmlinux 0x9022ee45 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x90263d21 have_submounts +EXPORT_SYMBOL vmlinux 0x90297f19 proc_symlink +EXPORT_SYMBOL vmlinux 0x90431db7 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0x9085904e skb_put +EXPORT_SYMBOL vmlinux 0x909724bb vfs_readf +EXPORT_SYMBOL vmlinux 0x90a6d497 page_follow_link_light +EXPORT_SYMBOL vmlinux 0x90b83c14 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x90e42c12 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x90f1b023 msi_bitmap_alloc_hwirqs +EXPORT_SYMBOL vmlinux 0x90fd5dff mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x910b568c tty_register_device +EXPORT_SYMBOL vmlinux 0x912557ce rtas_busy_delay +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x9154a5bc flow_cache_fini +EXPORT_SYMBOL vmlinux 0x915e1208 tb_ticks_per_usec +EXPORT_SYMBOL vmlinux 0x91621d6a allocate_resource +EXPORT_SYMBOL vmlinux 0x9168c033 rtas_get_sensor +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x91717c38 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x9180baf7 d_path +EXPORT_SYMBOL vmlinux 0x918400ac xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x9187e245 dev_driver_string +EXPORT_SYMBOL vmlinux 0x918929ce blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x919d1163 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x919de20a security_path_link +EXPORT_SYMBOL vmlinux 0x91ad6284 con_is_bound +EXPORT_SYMBOL vmlinux 0x91ba6855 lwtunnel_input +EXPORT_SYMBOL vmlinux 0x91d3a852 devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0x91db384b tty_free_termios +EXPORT_SYMBOL vmlinux 0x91dd1e42 uart_suspend_port +EXPORT_SYMBOL vmlinux 0x91eccdba tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x91f5ddd0 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x921932d3 udp_set_csum +EXPORT_SYMBOL vmlinux 0x9229ec52 dquot_disable +EXPORT_SYMBOL vmlinux 0x9231eba9 agp_find_bridge +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x923f14b8 xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0x92462af3 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x92946581 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x92a5c398 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm +EXPORT_SYMBOL vmlinux 0x92af9ae1 of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x92db856b agp_bridge +EXPORT_SYMBOL vmlinux 0x92e0f69b netdev_info +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x9309de94 cuda_request +EXPORT_SYMBOL vmlinux 0x931a2c65 nvm_submit_io +EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x9330cb9f sg_alloc_table +EXPORT_SYMBOL vmlinux 0x93383391 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x93658bbd icmp_send +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x9380b1c1 bio_reset +EXPORT_SYMBOL vmlinux 0x9390b91d scsi_target_resume +EXPORT_SYMBOL vmlinux 0x939d6769 inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0x93a5c1ad ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x93a5f69d mmc_flush_cache +EXPORT_SYMBOL vmlinux 0x93b0e455 mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93dec66e iov_iter_init +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x940f9cf6 kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x94139224 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x94579a51 skb_push +EXPORT_SYMBOL vmlinux 0x9470cfee scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x94885c34 bio_integrity_advance +EXPORT_SYMBOL vmlinux 0x948eb89f skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0x9491f552 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94ae23d7 of_cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0x94b2590f vme_free_consistent +EXPORT_SYMBOL vmlinux 0x94b406c5 make_kprojid +EXPORT_SYMBOL vmlinux 0x94b93a82 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x94cbd061 dql_reset +EXPORT_SYMBOL vmlinux 0x94d9e6e4 proc_mkdir +EXPORT_SYMBOL vmlinux 0x94eea794 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x94eefb06 dev_add_pack +EXPORT_SYMBOL vmlinux 0x94f1bd15 sock_init_data +EXPORT_SYMBOL vmlinux 0x94f3baa8 blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x950f4d97 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x9514151a _mcount +EXPORT_SYMBOL vmlinux 0x9524b0ae _outsb +EXPORT_SYMBOL vmlinux 0x9528dc89 seq_open +EXPORT_SYMBOL vmlinux 0x953f2f1f nvm_register_mgr +EXPORT_SYMBOL vmlinux 0x953fac70 i2c_verify_client +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x954634ab dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x9548624c xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x9556ed82 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x9583587a xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x9595b96b blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0x959c1e27 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x95a7c53a fb_set_cmap +EXPORT_SYMBOL vmlinux 0x95a88dab elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x95aab7aa tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x95ac10bb ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x95b733b1 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x95ce6cf2 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x95cf7060 devm_ioport_map +EXPORT_SYMBOL vmlinux 0x95eb488f mem_cgroup_end_page_stat +EXPORT_SYMBOL vmlinux 0x95f41c5c set_create_files_as +EXPORT_SYMBOL vmlinux 0x960dfaf5 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x960fc1c8 console_start +EXPORT_SYMBOL vmlinux 0x96142a68 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x961eacdc sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x963274b5 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x96354053 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x96569b35 new_inode +EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x9658cc83 neigh_table_init +EXPORT_SYMBOL vmlinux 0x9661d2b7 netlink_set_err +EXPORT_SYMBOL vmlinux 0x966aeb81 phy_connect +EXPORT_SYMBOL vmlinux 0x967e2121 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x967e6fb4 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x968247d8 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x969b3af8 netdev_crit +EXPORT_SYMBOL vmlinux 0x96ac22ac inode_init_always +EXPORT_SYMBOL vmlinux 0x96bc1dd7 tcp_filter +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d76ea3 __scm_send +EXPORT_SYMBOL vmlinux 0x96da8a98 inet_frags_init +EXPORT_SYMBOL vmlinux 0x96dbcca2 ioremap_prot +EXPORT_SYMBOL vmlinux 0x96dce98c resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x96eb5ea7 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x971f8f74 nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0x97255bdf strlen +EXPORT_SYMBOL vmlinux 0x972ae0aa clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x97323ed4 fsnotify_put_group +EXPORT_SYMBOL vmlinux 0x9744ba69 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x9748927f _outsw_ns +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x976074f8 of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x9764ec5b jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x9768d776 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x9769790b jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x97795b45 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x9779e291 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x977ed62f path_get +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x979c3b2a devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0x97b44b0e __skb_checksum +EXPORT_SYMBOL vmlinux 0x97d77be6 tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0x97dfcafb force_sig +EXPORT_SYMBOL vmlinux 0x97e41374 agp_backend_release +EXPORT_SYMBOL vmlinux 0x97eb65ab of_get_min_tck +EXPORT_SYMBOL vmlinux 0x97ed45f6 kthread_bind +EXPORT_SYMBOL vmlinux 0x9814c7a5 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x984110cc dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x9848f91c pid_task +EXPORT_SYMBOL vmlinux 0x984ae618 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x984d1efe bioset_free +EXPORT_SYMBOL vmlinux 0x9864fd8e arp_send +EXPORT_SYMBOL vmlinux 0x986631aa devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0x986c5b3e nla_append +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x9890e870 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x98933554 nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0x98a72cd6 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x98d64c61 xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x98e0a8fe consume_skb +EXPORT_SYMBOL vmlinux 0x98e68eca cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x98f7b5b4 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x98fe7882 DMA_MODE_READ +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x993aaf7d elevator_alloc +EXPORT_SYMBOL vmlinux 0x993e303a netpoll_setup +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x995b86b7 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x996d770f truncate_setsize +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a02dcb pci_iomap +EXPORT_SYMBOL vmlinux 0x99afe916 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x99b91fe7 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x99bb8806 memmove +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x99f25d1a generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0x9a0216d7 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x9a106b38 unregister_nls +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a202388 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x9a39c114 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x9a6e9bf3 scsi_print_command +EXPORT_SYMBOL vmlinux 0x9a82c1c7 pagevec_lookup +EXPORT_SYMBOL vmlinux 0x9a99ba4a skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x9a9f7e1f get_cached_acl +EXPORT_SYMBOL vmlinux 0x9aadd8d5 of_device_alloc +EXPORT_SYMBOL vmlinux 0x9ab2863f devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x9ae5f1de sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9af2198a agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0x9b0d3d16 key_validate +EXPORT_SYMBOL vmlinux 0x9b0fc500 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x9b2a2500 generic_permission +EXPORT_SYMBOL vmlinux 0x9b2f9637 pci_request_region +EXPORT_SYMBOL vmlinux 0x9b31725b flush_dcache_icache_page +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b39936d vm_insert_pfn +EXPORT_SYMBOL vmlinux 0x9b3aa286 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x9b56a493 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x9b5d6ac7 of_dev_get +EXPORT_SYMBOL vmlinux 0x9b6a7fd9 scsi_unregister +EXPORT_SYMBOL vmlinux 0x9b6d8d6f qdisc_reset +EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize +EXPORT_SYMBOL vmlinux 0x9b77d73c register_framebuffer +EXPORT_SYMBOL vmlinux 0x9b95936b seq_file_path +EXPORT_SYMBOL vmlinux 0x9b970d15 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba39a5a of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x9ba6d903 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9ba92079 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x9bce482f __release_region +EXPORT_SYMBOL vmlinux 0x9bd25a41 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x9bda3ae5 find_lock_entry +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9c1c0bf7 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x9c49fcd5 mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0x9c6dcccb skb_dequeue +EXPORT_SYMBOL vmlinux 0x9c6f70da pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x9c75657e read_dev_sector +EXPORT_SYMBOL vmlinux 0x9c914052 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x9ca409c1 cap_mmap_file +EXPORT_SYMBOL vmlinux 0x9ca50e29 km_policy_notify +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cc403eb led_update_brightness +EXPORT_SYMBOL vmlinux 0x9ccde1a2 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x9ce1cb94 d_drop +EXPORT_SYMBOL vmlinux 0x9ce3f83f nvram_write_byte +EXPORT_SYMBOL vmlinux 0x9cff312f dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d14983a ppc_enable_pmcs +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d49c3e9 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x9d518dfc key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x9d573948 kill_fasync +EXPORT_SYMBOL vmlinux 0x9d58869a genphy_suspend +EXPORT_SYMBOL vmlinux 0x9d59679c sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x9d5db732 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x9d651f22 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x9d669763 memcpy +EXPORT_SYMBOL vmlinux 0x9d687763 tcp_read_sock +EXPORT_SYMBOL vmlinux 0x9d6a54c2 flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0x9d7ce8dd _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x9d8682c0 param_set_copystring +EXPORT_SYMBOL vmlinux 0x9d8e0fb9 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x9d98b721 blk_start_request +EXPORT_SYMBOL vmlinux 0x9dbc0ced arp_xmit +EXPORT_SYMBOL vmlinux 0x9dbe5700 tty_check_change +EXPORT_SYMBOL vmlinux 0x9dc9ac4e set_security_override +EXPORT_SYMBOL vmlinux 0x9de64473 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x9decb9b8 block_write_full_page +EXPORT_SYMBOL vmlinux 0x9df272a8 inet6_protos +EXPORT_SYMBOL vmlinux 0x9dfe7307 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9e048cf0 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0de620 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x9e116995 dump_align +EXPORT_SYMBOL vmlinux 0x9e1cfc90 ioremap_wc +EXPORT_SYMBOL vmlinux 0x9e372fa3 may_umount +EXPORT_SYMBOL vmlinux 0x9e3d7e48 d_instantiate +EXPORT_SYMBOL vmlinux 0x9e4cd3a3 fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e672ff6 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x9e68c3b7 ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x9e702a28 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e858422 sock_no_accept +EXPORT_SYMBOL vmlinux 0x9e89761d xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x9e97375d rtas_busy_delay_time +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea2eba7 kmap_to_page +EXPORT_SYMBOL vmlinux 0x9ec38cd7 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x9ec3e35f inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x9ee78840 udplite_prot +EXPORT_SYMBOL vmlinux 0x9eef37fc mpage_readpage +EXPORT_SYMBOL vmlinux 0x9f040357 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x9f04f1b6 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x9f06bcf1 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x9f2ebebd fb_class +EXPORT_SYMBOL vmlinux 0x9f464929 scsi_device_put +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f49c2b8 tcp_poll +EXPORT_SYMBOL vmlinux 0x9f5df6a7 find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x9f680326 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x9f911629 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fc9dd84 __napi_schedule +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9feb84cd macio_request_resources +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0x9fff9c92 kernel_sendpage +EXPORT_SYMBOL vmlinux 0xa000b606 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0xa011936d file_path +EXPORT_SYMBOL vmlinux 0xa027c505 bio_add_page +EXPORT_SYMBOL vmlinux 0xa030eb2a blk_end_request_cur +EXPORT_SYMBOL vmlinux 0xa0402767 register_qdisc +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa05affa9 unlock_buffer +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0xa075ae69 free_buffer_head +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa0adba4a tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0ed753b dev_addr_flush +EXPORT_SYMBOL vmlinux 0xa0f6c000 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa11226c7 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xa11f1aa1 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa1320b98 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0xa13c3470 clear_user_page +EXPORT_SYMBOL vmlinux 0xa13ca95f devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xa13e4a24 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa177aa28 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xa181bd4d gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0xa1ad0889 __lock_buffer +EXPORT_SYMBOL vmlinux 0xa1b6eb80 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1bf505d inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1c99385 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1f8fe75 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa223a9d5 locks_mandatory_area +EXPORT_SYMBOL vmlinux 0xa227b317 powerpc_debugfs_root +EXPORT_SYMBOL vmlinux 0xa22d8819 inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0xa24adb8c dentry_unhash +EXPORT_SYMBOL vmlinux 0xa26aeab4 dquot_alloc +EXPORT_SYMBOL vmlinux 0xa26bb789 lease_modify +EXPORT_SYMBOL vmlinux 0xa26be9a6 flush_tlb_range +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa28e98ef pcie_set_mps +EXPORT_SYMBOL vmlinux 0xa28fa8a0 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xa293763a lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0xa29f1a85 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0xa29f9c3c skb_find_text +EXPORT_SYMBOL vmlinux 0xa2a537bc tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xa2b18b8b tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xa2bbed37 crash_shutdown_register +EXPORT_SYMBOL vmlinux 0xa2bfbc22 __block_write_begin +EXPORT_SYMBOL vmlinux 0xa2ccaa3f bitmap_end_sync +EXPORT_SYMBOL vmlinux 0xa2fafe3f xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xa2fdbcbe fence_default_wait +EXPORT_SYMBOL vmlinux 0xa303d1ff dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa31ecf11 mmc_can_trim +EXPORT_SYMBOL vmlinux 0xa3278175 abx500_register_ops +EXPORT_SYMBOL vmlinux 0xa33e5fd1 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xa361fd0d blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xa3638ab5 swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0xa373e68e request_key +EXPORT_SYMBOL vmlinux 0xa38e691a ioremap_bot +EXPORT_SYMBOL vmlinux 0xa39b4cf2 udelay +EXPORT_SYMBOL vmlinux 0xa3abc422 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xa3ae90af bio_advance +EXPORT_SYMBOL vmlinux 0xa3aed484 component_match_add +EXPORT_SYMBOL vmlinux 0xa3b3db42 kill_pid +EXPORT_SYMBOL vmlinux 0xa3e75545 flush_tlb_kernel_range +EXPORT_SYMBOL vmlinux 0xa40c165e __put_cred +EXPORT_SYMBOL vmlinux 0xa4266c4e sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xa42c66da block_truncate_page +EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf +EXPORT_SYMBOL vmlinux 0xa4481c04 adb_client_list +EXPORT_SYMBOL vmlinux 0xa4490864 tcf_register_action +EXPORT_SYMBOL vmlinux 0xa44ab337 swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xa4604fa9 tty_port_init +EXPORT_SYMBOL vmlinux 0xa46408d0 mmc_fixup_device +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa48e4adf lock_rename +EXPORT_SYMBOL vmlinux 0xa4938733 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0xa49d5bbf __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xa4a69371 dm_put_table_device +EXPORT_SYMBOL vmlinux 0xa4a94d26 find_next_bit_le +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4bdedf5 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xa4cc790e d_find_any_alias +EXPORT_SYMBOL vmlinux 0xa4d21ce9 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4d74f3e unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0xa4df11b9 switch_mmu_context +EXPORT_SYMBOL vmlinux 0xa4ee8543 pmac_register_agp_pm +EXPORT_SYMBOL vmlinux 0xa4f136c4 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xa4fe48d9 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0xa5091af4 lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0xa5292287 dev_printk_emit +EXPORT_SYMBOL vmlinux 0xa533f4db security_path_chmod +EXPORT_SYMBOL vmlinux 0xa537929d sk_stream_write_space +EXPORT_SYMBOL vmlinux 0xa548b5df netif_skb_features +EXPORT_SYMBOL vmlinux 0xa54b476b dev_get_nest_level +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa55f3f6c kill_litter_super +EXPORT_SYMBOL vmlinux 0xa569a279 nvm_put_blk_unlocked +EXPORT_SYMBOL vmlinux 0xa56b8ab2 flex_array_free +EXPORT_SYMBOL vmlinux 0xa57df037 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0xa57e9c9c find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xa587965a clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa5a633b9 sg_last +EXPORT_SYMBOL vmlinux 0xa5aa70a8 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0xa5bc2d24 security_path_rename +EXPORT_SYMBOL vmlinux 0xa5c490ca phy_set_max_speed +EXPORT_SYMBOL vmlinux 0xa5cef8ad release_resource +EXPORT_SYMBOL vmlinux 0xa5d010c5 param_ops_ullong +EXPORT_SYMBOL vmlinux 0xa5f6c40f fget +EXPORT_SYMBOL vmlinux 0xa5f73abe filemap_flush +EXPORT_SYMBOL vmlinux 0xa6071b59 param_set_charp +EXPORT_SYMBOL vmlinux 0xa649843c mutex_lock +EXPORT_SYMBOL vmlinux 0xa652c4ef __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0xa65972b8 _memcpy_toio +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa705ce04 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xa71336ff simple_nosetlease +EXPORT_SYMBOL vmlinux 0xa720678c lg_global_lock +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa74323e0 dquot_free_inode +EXPORT_SYMBOL vmlinux 0xa744c57b padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xa74f4e9b ida_simple_get +EXPORT_SYMBOL vmlinux 0xa75a9f6c __sb_start_write +EXPORT_SYMBOL vmlinux 0xa76aeed2 __nlmsg_put +EXPORT_SYMBOL vmlinux 0xa771d3e7 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0xa78d9eb7 slhc_uncompress +EXPORT_SYMBOL vmlinux 0xa7cd526d ns_capable +EXPORT_SYMBOL vmlinux 0xa7e7ed59 scsi_remove_device +EXPORT_SYMBOL vmlinux 0xa7ef783a jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0xa7fa43f1 kill_pgrp +EXPORT_SYMBOL vmlinux 0xa7fb0dc5 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0xa7ff311c bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0xa8062ef1 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xa8152a6e vfs_getattr +EXPORT_SYMBOL vmlinux 0xa815b73d locks_init_lock +EXPORT_SYMBOL vmlinux 0xa8188772 param_get_byte +EXPORT_SYMBOL vmlinux 0xa82585dc register_md_personality +EXPORT_SYMBOL vmlinux 0xa83f77e4 build_skb +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa848fe8e jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xa861ab6e __ioremap +EXPORT_SYMBOL vmlinux 0xa86f78a7 swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa89464b7 __ashldi3 +EXPORT_SYMBOL vmlinux 0xa8980828 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xa8b4497f kern_path_create +EXPORT_SYMBOL vmlinux 0xa8bf2221 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0xa8c4530f __inode_permission +EXPORT_SYMBOL vmlinux 0xa8c683dd ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xa8c82ad9 param_ops_short +EXPORT_SYMBOL vmlinux 0xa8d84a2f agp_copy_info +EXPORT_SYMBOL vmlinux 0xa8f96860 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa900dc93 revert_creds +EXPORT_SYMBOL vmlinux 0xa9083d07 dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0xa90e48fe dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa9201760 __register_nls +EXPORT_SYMBOL vmlinux 0xa9273e1a epapr_hypercall_start +EXPORT_SYMBOL vmlinux 0xa93a3948 param_get_ullong +EXPORT_SYMBOL vmlinux 0xa9571d6d DMA_MODE_WRITE +EXPORT_SYMBOL vmlinux 0xa957cefb tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa977f50d vme_master_mmap +EXPORT_SYMBOL vmlinux 0xa98d6227 devm_release_resource +EXPORT_SYMBOL vmlinux 0xa9a04712 ip6_xmit +EXPORT_SYMBOL vmlinux 0xa9c20043 generic_ro_fops +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9e86440 tty_port_close +EXPORT_SYMBOL vmlinux 0xaa00b451 fb_find_mode +EXPORT_SYMBOL vmlinux 0xaa0544d1 d_invalidate +EXPORT_SYMBOL vmlinux 0xaa18db58 inet6_ioctl +EXPORT_SYMBOL vmlinux 0xaa3264b1 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0xaa46e87e lg_local_unlock +EXPORT_SYMBOL vmlinux 0xaa4df512 pmu_batteries +EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r +EXPORT_SYMBOL vmlinux 0xaa6d699d input_release_device +EXPORT_SYMBOL vmlinux 0xaa6e4df5 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa787920 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0xaaa459fc netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xaabf40e5 tcf_hash_create +EXPORT_SYMBOL vmlinux 0xaabf5600 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xaacb3eeb dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0xaacbd934 agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaadaa3c7 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0xaaf4acf1 skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab14f008 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xab228e31 csum_tcpudp_magic +EXPORT_SYMBOL vmlinux 0xab35ec32 genphy_read_status +EXPORT_SYMBOL vmlinux 0xab519bfb dmam_pool_create +EXPORT_SYMBOL vmlinux 0xab60562c md_integrity_register +EXPORT_SYMBOL vmlinux 0xab694444 bsearch +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab6edab5 tso_count_descs +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab7984be __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0xab7b4196 scsi_init_io +EXPORT_SYMBOL vmlinux 0xab89c568 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xaba3ad0c radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xabc7a79d ata_port_printk +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabdd6463 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xabfcb4c3 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xabffa77a proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac26b820 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xac344110 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xac3c6e00 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0xac4cc1bc lockref_mark_dead +EXPORT_SYMBOL vmlinux 0xac52b569 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xac6d9920 dev_get_by_index +EXPORT_SYMBOL vmlinux 0xac871afa mmc_start_bkops +EXPORT_SYMBOL vmlinux 0xac87faf0 dqput +EXPORT_SYMBOL vmlinux 0xac8ef9aa passthru_features_check +EXPORT_SYMBOL vmlinux 0xaca1f1a2 set_bh_page +EXPORT_SYMBOL vmlinux 0xaca99bdf dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacadb324 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xacb5a501 set_device_ro +EXPORT_SYMBOL vmlinux 0xacc5b5d2 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacce5154 inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0xacd0bdf7 kobject_get +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacef0f3f set_user_nice +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf7ff70 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xacf8d9b3 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0xacfd3632 param_ops_uint +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad06dd19 blk_init_queue +EXPORT_SYMBOL vmlinux 0xad23c22a tcp_close +EXPORT_SYMBOL vmlinux 0xad4402b6 swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0xad50cebb i8253_lock +EXPORT_SYMBOL vmlinux 0xad547243 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xad7f43f6 scsi_host_put +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad8af904 d_tmpfile +EXPORT_SYMBOL vmlinux 0xad8e7320 agp_enable +EXPORT_SYMBOL vmlinux 0xad961743 __wait_on_bit +EXPORT_SYMBOL vmlinux 0xadc9c46b pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0xaddd4770 __debugger_iabr_match +EXPORT_SYMBOL vmlinux 0xade0e611 bdi_destroy +EXPORT_SYMBOL vmlinux 0xadee88da update_region +EXPORT_SYMBOL vmlinux 0xadf42bd5 __request_region +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae1ee80b set_groups +EXPORT_SYMBOL vmlinux 0xae358236 fence_signal +EXPORT_SYMBOL vmlinux 0xae38d662 macio_request_resource +EXPORT_SYMBOL vmlinux 0xae3c28df of_root +EXPORT_SYMBOL vmlinux 0xae545f06 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xae642cd1 tty_port_close_start +EXPORT_SYMBOL vmlinux 0xae6c9c59 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xae77a595 radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0xae7f1db3 tty_unthrottle +EXPORT_SYMBOL vmlinux 0xae85a27e radix_tree_lookup +EXPORT_SYMBOL vmlinux 0xaec07bd6 follow_pfn +EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0xaec69eb6 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0xaee46b43 d_obtain_alias +EXPORT_SYMBOL vmlinux 0xaeef44d1 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0xaef72271 scsi_add_device +EXPORT_SYMBOL vmlinux 0xaf063510 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xaf0b5ef2 pipe_unlock +EXPORT_SYMBOL vmlinux 0xaf0b81c2 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0xaf2d872c prepare_to_wait +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf46db06 register_key_type +EXPORT_SYMBOL vmlinux 0xaf480ff1 neigh_table_clear +EXPORT_SYMBOL vmlinux 0xaf58d9ac pci_clear_master +EXPORT_SYMBOL vmlinux 0xaf6b6720 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xaf72e4fa block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xaf781ea0 km_report +EXPORT_SYMBOL vmlinux 0xaf910a24 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0xaf9340a7 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0xafa950b9 neigh_event_ns +EXPORT_SYMBOL vmlinux 0xafb0fd09 gen_pool_create +EXPORT_SYMBOL vmlinux 0xaff24dfb clocksource_unregister +EXPORT_SYMBOL vmlinux 0xafff3d1d mempool_alloc +EXPORT_SYMBOL vmlinux 0xb00f2083 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0xb02133db devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xb028ad9f xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xb04241b4 ida_simple_remove +EXPORT_SYMBOL vmlinux 0xb0487747 tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb060806d ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xb062647a netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0xb081b9c3 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xb09b2e6a thaw_super +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0ab53d9 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0b877a7 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0xb0e0a649 __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0fe0a49 fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0xb10358dc default_llseek +EXPORT_SYMBOL vmlinux 0xb125974e blk_free_tags +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb12fea99 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xb13d585b mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xb1442e99 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0xb15bd8fa tb_ticks_per_sec +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb1668fe2 blk_init_tags +EXPORT_SYMBOL vmlinux 0xb171335c request_firmware +EXPORT_SYMBOL vmlinux 0xb172a31e twl6040_get_pll +EXPORT_SYMBOL vmlinux 0xb173f30c request_key_async +EXPORT_SYMBOL vmlinux 0xb17fb1c9 nonseekable_open +EXPORT_SYMBOL vmlinux 0xb1817307 complete_request_key +EXPORT_SYMBOL vmlinux 0xb18d0731 udp_sendmsg +EXPORT_SYMBOL vmlinux 0xb1a6ee84 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1c6e787 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xb1e6a2cb ata_link_printk +EXPORT_SYMBOL vmlinux 0xb206f9cd dget_parent +EXPORT_SYMBOL vmlinux 0xb2114945 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xb233762c atomic64_set +EXPORT_SYMBOL vmlinux 0xb25f69a0 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb2760ecc netif_napi_add +EXPORT_SYMBOL vmlinux 0xb2836b9d iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0xb287c8e3 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xb2b50882 get_disk +EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xb2ca6314 kill_block_super +EXPORT_SYMBOL vmlinux 0xb2ce23eb csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on +EXPORT_SYMBOL vmlinux 0xb2d56b12 eth_header +EXPORT_SYMBOL vmlinux 0xb2de769a ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xb2f82933 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0xb32b7d01 block_invalidatepage +EXPORT_SYMBOL vmlinux 0xb32d7b7e radix_tree_tagged +EXPORT_SYMBOL vmlinux 0xb3382494 fence_signal_locked +EXPORT_SYMBOL vmlinux 0xb35478ce unregister_shrinker +EXPORT_SYMBOL vmlinux 0xb360c01a sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xb37ccdf6 mount_subtree +EXPORT_SYMBOL vmlinux 0xb3c67363 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3d5637f generic_start_io_acct +EXPORT_SYMBOL vmlinux 0xb3e18b27 __ip_dev_find +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb3ffe016 set_binfmt +EXPORT_SYMBOL vmlinux 0xb4135832 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xb415cf7b dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0xb4182dd5 __free_pages +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb4887385 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xb49422e0 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xb4b98a40 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0xb502862a skb_vlan_untag +EXPORT_SYMBOL vmlinux 0xb52f1317 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0xb531709e pcie_get_mps +EXPORT_SYMBOL vmlinux 0xb53a4336 kmap_pte +EXPORT_SYMBOL vmlinux 0xb5457153 sock_wfree +EXPORT_SYMBOL vmlinux 0xb54862ec devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb58d4eeb inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xb58f8dc5 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5bc5fa3 __frontswap_store +EXPORT_SYMBOL vmlinux 0xb5d9454c printk_emit +EXPORT_SYMBOL vmlinux 0xb613d81a crypto_sha256_update +EXPORT_SYMBOL vmlinux 0xb616dc1a down_write_trylock +EXPORT_SYMBOL vmlinux 0xb618ad14 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xb63248a5 d_set_fallthru +EXPORT_SYMBOL vmlinux 0xb632600f tcp_parse_options +EXPORT_SYMBOL vmlinux 0xb64a7bed param_set_ullong +EXPORT_SYMBOL vmlinux 0xb65060ea __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xb65896d8 agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb69859ce scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0xb6a10e71 dquot_commit_info +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6b9a59c blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0xb6c0d03d flow_cache_lookup +EXPORT_SYMBOL vmlinux 0xb6f05d75 blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0xb71041c3 page_cache_next_hole +EXPORT_SYMBOL vmlinux 0xb716069b devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xb720778d kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0xb722e550 generic_setlease +EXPORT_SYMBOL vmlinux 0xb72f2c92 ps2_drain +EXPORT_SYMBOL vmlinux 0xb731070e __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xb731959b inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0xb7451021 __napi_complete +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb753bcc8 __ashrdi3 +EXPORT_SYMBOL vmlinux 0xb760cc88 tty_set_operations +EXPORT_SYMBOL vmlinux 0xb762b973 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb78f2d92 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xb78fd332 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0xb79a4e1a store_fp_state +EXPORT_SYMBOL vmlinux 0xb79ec15d mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0xb7a99781 __irq_regs +EXPORT_SYMBOL vmlinux 0xb7bb06b1 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7f806ab dump_page +EXPORT_SYMBOL vmlinux 0xb81960ca snprintf +EXPORT_SYMBOL vmlinux 0xb8269c8e gen_pool_destroy +EXPORT_SYMBOL vmlinux 0xb830d394 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0xb83ce7c1 vfs_llseek +EXPORT_SYMBOL vmlinux 0xb847468c inode_dio_wait +EXPORT_SYMBOL vmlinux 0xb852b25c elv_unregister_queue +EXPORT_SYMBOL vmlinux 0xb8633530 vme_lm_request +EXPORT_SYMBOL vmlinux 0xb8711e2e xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb8877c60 dqget +EXPORT_SYMBOL vmlinux 0xb88ff1ad alloc_anon_inode +EXPORT_SYMBOL vmlinux 0xb894f380 nf_register_hook +EXPORT_SYMBOL vmlinux 0xb8964185 machine_id +EXPORT_SYMBOL vmlinux 0xb899bf33 sock_kmalloc +EXPORT_SYMBOL vmlinux 0xb8a39948 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xb8ba4a4d gen_new_estimator +EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xb9032cb8 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xb9078c5a ip_defrag +EXPORT_SYMBOL vmlinux 0xb93a4983 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xb945f315 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0xb94bbb15 devm_memremap +EXPORT_SYMBOL vmlinux 0xb963e200 blk_rq_init +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9f75ad8 mdiobus_write +EXPORT_SYMBOL vmlinux 0xba112c41 agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0xba11a357 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xba14a8f4 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xba285222 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xba37f3cf dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba5bf06f bio_clone_bioset +EXPORT_SYMBOL vmlinux 0xba604a77 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0xba75e1f3 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0xba785a01 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xba9dc373 bmap +EXPORT_SYMBOL vmlinux 0xbab75382 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0xbab9f61f copy_page_from_iter +EXPORT_SYMBOL vmlinux 0xbac3cbf2 ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0xbadf0752 pci_release_regions +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb1453ce bio_unmap_user +EXPORT_SYMBOL vmlinux 0xbb2a2d1b down_read +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb4a5f43 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0xbb52b4e0 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb6f47d3 cad_pid +EXPORT_SYMBOL vmlinux 0xbb823abb pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xbb958ad8 dquot_resume +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbbb8667a release_pages +EXPORT_SYMBOL vmlinux 0xbbc943ae pci_bus_get +EXPORT_SYMBOL vmlinux 0xbbcca100 scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0xbbd1e826 find_get_entry +EXPORT_SYMBOL vmlinux 0xbbf0bf7c tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xbbf79835 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0xbbfc2d84 find_vma +EXPORT_SYMBOL vmlinux 0xbc1683ed sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xbc316de4 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0xbc3419d3 flush_tlb_mm +EXPORT_SYMBOL vmlinux 0xbc34757f dentry_update_name_case +EXPORT_SYMBOL vmlinux 0xbc54b84d dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0xbc62d381 pci_platform_rom +EXPORT_SYMBOL vmlinux 0xbc6515e4 vga_tryget +EXPORT_SYMBOL vmlinux 0xbc8e57bf jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0xbcadb92d loop_register_transfer +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcd726f3 put_filp +EXPORT_SYMBOL vmlinux 0xbcd8e26b register_gifconf +EXPORT_SYMBOL vmlinux 0xbcf150f9 xor_altivec_5 +EXPORT_SYMBOL vmlinux 0xbd01f9c4 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xbd2885ab seq_read +EXPORT_SYMBOL vmlinux 0xbd2b77ae nf_ct_attach +EXPORT_SYMBOL vmlinux 0xbd337d6a get_pci_dma_ops +EXPORT_SYMBOL vmlinux 0xbd4b14e3 __pci_register_driver +EXPORT_SYMBOL vmlinux 0xbd5a1ca6 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xbd5ceed2 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xbd6c0f8d iget_failed +EXPORT_SYMBOL vmlinux 0xbd6d3c3a skb_make_writable +EXPORT_SYMBOL vmlinux 0xbd75563f input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0xbd803510 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xbd81c8c8 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0xbd821c1e unlock_page +EXPORT_SYMBOL vmlinux 0xbd8d541d flush_hash_pages +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbd9e5d49 __lshrdi3 +EXPORT_SYMBOL vmlinux 0xbda7ac1e tcp_seq_open +EXPORT_SYMBOL vmlinux 0xbde0fb46 mmc_detect_change +EXPORT_SYMBOL vmlinux 0xbde93167 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xbdfd8c86 sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0xbe044409 alloc_disk +EXPORT_SYMBOL vmlinux 0xbe080aab __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0xbe0e4119 skb_checksum_help +EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe45f56a read_cache_pages +EXPORT_SYMBOL vmlinux 0xbe494a5a inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xbe593a0d jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xbe61fa74 input_unregister_handle +EXPORT_SYMBOL vmlinux 0xbe63ee40 request_resource +EXPORT_SYMBOL vmlinux 0xbe64c248 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xbe68f270 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0xbe6fc74c prepare_creds +EXPORT_SYMBOL vmlinux 0xbe7e82ec scsi_print_result +EXPORT_SYMBOL vmlinux 0xbea07c7b mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xbead47e3 clear_inode +EXPORT_SYMBOL vmlinux 0xbee13d08 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbf3a43ee elevator_exit +EXPORT_SYMBOL vmlinux 0xbf3c72c2 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xbf486982 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xbf542850 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xbf5b50d3 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf8ceb5d bitmap_endwrite +EXPORT_SYMBOL vmlinux 0xbf901814 kthread_stop +EXPORT_SYMBOL vmlinux 0xbf925c42 idr_init +EXPORT_SYMBOL vmlinux 0xbf939f52 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfb8b0b7 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfeb3d9f mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xc00e7e49 mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0xc0105225 ps2_end_command +EXPORT_SYMBOL vmlinux 0xc01a3f6e of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0xc02fd80c of_get_next_child +EXPORT_SYMBOL vmlinux 0xc04fe986 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xc05119fe sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xc05e0bf2 unregister_md_personality +EXPORT_SYMBOL vmlinux 0xc065c878 of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0xc068440e __kfifo_alloc +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc07fb765 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc08a1332 of_get_mac_address +EXPORT_SYMBOL vmlinux 0xc08fa355 seq_pad +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0ca76f0 nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0xc0ce60ea inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xc0d11911 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xc0d84ced cuda_poll +EXPORT_SYMBOL vmlinux 0xc0e3b79d kmem_cache_create +EXPORT_SYMBOL vmlinux 0xc0f294c3 led_blink_set +EXPORT_SYMBOL vmlinux 0xc0f6eef1 generic_make_request +EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten +EXPORT_SYMBOL vmlinux 0xc13a10dc flex_array_alloc +EXPORT_SYMBOL vmlinux 0xc143f443 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0xc14a85dd of_get_parent +EXPORT_SYMBOL vmlinux 0xc150da93 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xc1658667 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xc1660866 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xc16dc744 wake_up_process +EXPORT_SYMBOL vmlinux 0xc1822395 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xc1826787 security_inode_init_security +EXPORT_SYMBOL vmlinux 0xc187c304 mmc_put_card +EXPORT_SYMBOL vmlinux 0xc1932293 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xc1ab8b5a drop_nlink +EXPORT_SYMBOL vmlinux 0xc1c95e87 devm_gpiod_put +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1d90443 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0xc1dd4a7f adb_request +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc20ce63f inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0xc212bc19 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc2457745 sock_wake_async +EXPORT_SYMBOL vmlinux 0xc2504fce mmc_free_host +EXPORT_SYMBOL vmlinux 0xc25f493f dma_sync_wait +EXPORT_SYMBOL vmlinux 0xc2a53eb3 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xc2a6ceb4 pskb_expand_head +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xc2b3b6ac __invalidate_device +EXPORT_SYMBOL vmlinux 0xc2b40071 keyring_alloc +EXPORT_SYMBOL vmlinux 0xc2c0b7c8 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0xc2d711e1 krealloc +EXPORT_SYMBOL vmlinux 0xc2df1031 pci_get_class +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc3096268 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0xc30c73b6 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xc31d77d4 nf_setsockopt +EXPORT_SYMBOL vmlinux 0xc3244b9b sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xc368849f nvram_sync +EXPORT_SYMBOL vmlinux 0xc3ac10c1 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xc3b3a849 inet_shutdown +EXPORT_SYMBOL vmlinux 0xc3c04b9f md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3c8b0c9 generic_write_checks +EXPORT_SYMBOL vmlinux 0xc3d6902b i2c_clients_command +EXPORT_SYMBOL vmlinux 0xc3dd44da md_cluster_mod +EXPORT_SYMBOL vmlinux 0xc3f91aa9 param_get_charp +EXPORT_SYMBOL vmlinux 0xc3fe64e1 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xc41f0516 node_states +EXPORT_SYMBOL vmlinux 0xc4267f46 __ip_select_ident +EXPORT_SYMBOL vmlinux 0xc45755de find_next_zero_bit_le +EXPORT_SYMBOL vmlinux 0xc47cdf9c _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0xc4930507 skb_clone_sk +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4af05da __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xc4d38742 rtas +EXPORT_SYMBOL vmlinux 0xc4ea55a4 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xc519de11 __init_rwsem +EXPORT_SYMBOL vmlinux 0xc522614c __sb_end_write +EXPORT_SYMBOL vmlinux 0xc52e66b6 nvm_end_io +EXPORT_SYMBOL vmlinux 0xc53d4b46 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc553c258 i8042_install_filter +EXPORT_SYMBOL vmlinux 0xc554c669 mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0xc55866d4 netif_rx +EXPORT_SYMBOL vmlinux 0xc55de23c percpu_counter_set +EXPORT_SYMBOL vmlinux 0xc5718627 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0xc59640c6 of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5b16b10 inode_needs_sync +EXPORT_SYMBOL vmlinux 0xc5b23e39 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xc5bdbc62 module_layout +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5e8f7e0 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xc5fc9b9c tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc60473d0 vfs_fsync +EXPORT_SYMBOL vmlinux 0xc61e9769 kobject_put +EXPORT_SYMBOL vmlinux 0xc61fef38 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xc62a7b42 scsi_block_requests +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc63f1560 file_update_time +EXPORT_SYMBOL vmlinux 0xc64a26d9 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xc6538e5e blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xc65537d0 memremap +EXPORT_SYMBOL vmlinux 0xc65746fc pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0xc6628439 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0xc669fb9c blkdev_get +EXPORT_SYMBOL vmlinux 0xc66aa591 elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0xc672f6b8 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xc68699d7 max8925_set_bits +EXPORT_SYMBOL vmlinux 0xc68cbbe3 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0xc6b22c71 __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xc6bf1b19 inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6d2ebe8 uart_get_divisor +EXPORT_SYMBOL vmlinux 0xc6d7662e blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0xc6f03b1a sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xc6fe193c simple_empty +EXPORT_SYMBOL vmlinux 0xc7072aec neigh_ifdown +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc727d52f of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0xc73aac7d serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0xc73d27f3 block_write_begin +EXPORT_SYMBOL vmlinux 0xc74b22d1 inet_csk_accept +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc77805ce scsi_execute +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc782355f posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc7898275 flex_array_shrink +EXPORT_SYMBOL vmlinux 0xc795e23e cpu_core_map +EXPORT_SYMBOL vmlinux 0xc799bbf5 skb_unlink +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a0d72f inet_offloads +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7bc80f5 seq_escape +EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn +EXPORT_SYMBOL vmlinux 0xc7f3467e msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0xc8206548 param_set_uint +EXPORT_SYMBOL vmlinux 0xc8276a79 nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xc82ebc30 fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape +EXPORT_SYMBOL vmlinux 0xc8383dbe of_n_size_cells +EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0xc840a963 iterate_dir +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc8571bcb idr_for_each +EXPORT_SYMBOL vmlinux 0xc858d969 tty_port_open +EXPORT_SYMBOL vmlinux 0xc85a5719 udp6_set_csum +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc880bd37 pci_claim_resource +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b0c0ce module_refcount +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8bf07d6 ip_options_compile +EXPORT_SYMBOL vmlinux 0xc8cf1608 cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0xc8e0181c __neigh_create +EXPORT_SYMBOL vmlinux 0xc90307d5 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xc909bf4c textsearch_unregister +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc9301819 tcp_prequeue +EXPORT_SYMBOL vmlinux 0xc93fbc54 wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xc951dc67 mmc_start_req +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc965f30c open_exec +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9a54c43 inet6_getname +EXPORT_SYMBOL vmlinux 0xc9ae8248 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0xc9aee356 __brelse +EXPORT_SYMBOL vmlinux 0xc9b376e1 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xc9b85235 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xc9b8c308 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0xc9c60f03 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0xc9c6520a qdisc_list_add +EXPORT_SYMBOL vmlinux 0xc9c8e911 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0xc9e4920c decrementer_clockevent +EXPORT_SYMBOL vmlinux 0xc9eca88f filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0xc9f79b1a bio_alloc_pages +EXPORT_SYMBOL vmlinux 0xc9fda80c inet6_del_offload +EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy +EXPORT_SYMBOL vmlinux 0xca0f5be1 dst_alloc +EXPORT_SYMBOL vmlinux 0xca18d829 softnet_data +EXPORT_SYMBOL vmlinux 0xca2a46d2 __kfree_skb +EXPORT_SYMBOL vmlinux 0xca2b1cd6 ida_pre_get +EXPORT_SYMBOL vmlinux 0xca3462e0 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0xca363d15 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xca3b28c6 store_vr_state +EXPORT_SYMBOL vmlinux 0xca41eaa3 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0xca44008f xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0xca59091c bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xca5f5c5f tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0xca825895 pmu_suspend +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xcab96da0 dev_mc_flush +EXPORT_SYMBOL vmlinux 0xcac08e3c write_cache_pages +EXPORT_SYMBOL vmlinux 0xcacd272d atomic64_sub_return +EXPORT_SYMBOL vmlinux 0xcace6297 idr_is_empty +EXPORT_SYMBOL vmlinux 0xcad08e48 mmu_hash_lock +EXPORT_SYMBOL vmlinux 0xcae71621 phy_start_interrupts +EXPORT_SYMBOL vmlinux 0xcaeff474 unload_nls +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcaf87ea1 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xcb021f74 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb3d2bae pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0xcb42e7b9 devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0xcb554069 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0xcb62ded8 bio_endio +EXPORT_SYMBOL vmlinux 0xcb6882be jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0xcb6fdff1 page_waitqueue +EXPORT_SYMBOL vmlinux 0xcbab9e6d kill_bdev +EXPORT_SYMBOL vmlinux 0xcbb4f308 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0xcbb99beb scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc1b85f filemap_fault +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbeac4be hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcbfd6e67 blk_start_queue_async +EXPORT_SYMBOL vmlinux 0xcc007ec1 vlan_vid_del +EXPORT_SYMBOL vmlinux 0xcc0ea31b blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xcc17504d _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc262e33 ppc_md +EXPORT_SYMBOL vmlinux 0xcc37c074 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xcc409af1 pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc9cf00c __bread_gfp +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccc47b73 agp_backend_acquire +EXPORT_SYMBOL vmlinux 0xcccc42a7 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xccd1c882 d_walk +EXPORT_SYMBOL vmlinux 0xccdacf3e tty_unregister_device +EXPORT_SYMBOL vmlinux 0xccf7f5c1 pci_map_rom +EXPORT_SYMBOL vmlinux 0xccfc0082 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xccfef64f skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xcd0100de mmc_can_erase +EXPORT_SYMBOL vmlinux 0xcd0152b3 md_done_sync +EXPORT_SYMBOL vmlinux 0xcd0529c7 _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xcd066e77 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0xcd0b82c9 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0xcd106328 textsearch_destroy +EXPORT_SYMBOL vmlinux 0xcd13dc7c ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd4993c3 inet_getname +EXPORT_SYMBOL vmlinux 0xcd508f20 dentry_open +EXPORT_SYMBOL vmlinux 0xcd5a4fa7 macio_enable_devres +EXPORT_SYMBOL vmlinux 0xcd68effd _dev_info +EXPORT_SYMBOL vmlinux 0xcd7ede2a seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xcd86c87f __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xcd86f323 module_put +EXPORT_SYMBOL vmlinux 0xcd932214 free_netdev +EXPORT_SYMBOL vmlinux 0xcd9586cc gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0xcd9d0fe3 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xcdc08bf3 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcddcd436 iterate_mounts +EXPORT_SYMBOL vmlinux 0xcdeb8123 bio_integrity_free +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce2b500a inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0xce316fc8 vfs_iter_write +EXPORT_SYMBOL vmlinux 0xce39033c nobh_write_end +EXPORT_SYMBOL vmlinux 0xce409cda pmac_set_early_video_resume +EXPORT_SYMBOL vmlinux 0xce513c38 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xce57dbea twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce5d8f7f agp_generic_enable +EXPORT_SYMBOL vmlinux 0xce7677e0 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xce79e192 swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xcead0d16 audit_log +EXPORT_SYMBOL vmlinux 0xcead77f1 free_user_ns +EXPORT_SYMBOL vmlinux 0xceb16d9b inet_put_port +EXPORT_SYMBOL vmlinux 0xced2cdaa napi_gro_receive +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcef778e1 blk_put_request +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf0e48d9 vfs_getxattr_alloc +EXPORT_SYMBOL vmlinux 0xcf1e1e23 scsi_scan_host +EXPORT_SYMBOL vmlinux 0xcf2b3f71 ppp_input_error +EXPORT_SYMBOL vmlinux 0xcf47fb99 tcp_init_cgroup +EXPORT_SYMBOL vmlinux 0xcf5a7974 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xcf5d7502 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0xcf74b87c input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0xcfa3d2a5 get_phy_device +EXPORT_SYMBOL vmlinux 0xcfb8c96b simple_rmdir +EXPORT_SYMBOL vmlinux 0xcfbe6c44 filemap_map_pages +EXPORT_SYMBOL vmlinux 0xcfe5a868 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0xcff465ff of_device_get_match_data +EXPORT_SYMBOL vmlinux 0xd035376e ___pskb_trim +EXPORT_SYMBOL vmlinux 0xd04ec7f9 dev_change_carrier +EXPORT_SYMBOL vmlinux 0xd054b47a xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xd05c7040 scsi_remove_host +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd0868acb mmc_register_driver +EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a45fa5 pmu_enable_irled +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0b25667 napi_gro_flush +EXPORT_SYMBOL vmlinux 0xd0bc718d dev_get_flags +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0f7b987 param_get_long +EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd1247cc4 of_translate_address +EXPORT_SYMBOL vmlinux 0xd1262886 rtas_data_buf +EXPORT_SYMBOL vmlinux 0xd144e169 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0xd1570c0f ilookup +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd18e7f8a agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0xd196c9be kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xd1ac33bd nf_hook_slow +EXPORT_SYMBOL vmlinux 0xd1b683e5 pci_scan_bus +EXPORT_SYMBOL vmlinux 0xd1c84dfb hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1e3f3c4 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xd214512c xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xd22bd3fe security_path_truncate +EXPORT_SYMBOL vmlinux 0xd23b542d padata_do_parallel +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd259ae8f scsi_register_interface +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd283de92 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xd28cf8f6 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0xd29e4d72 vme_irq_generate +EXPORT_SYMBOL vmlinux 0xd2a941d4 sg_init_table +EXPORT_SYMBOL vmlinux 0xd2af138b reservation_ww_class +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2dcd729 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xd2e0c10b vme_irq_request +EXPORT_SYMBOL vmlinux 0xd2f3b79e ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xd2f836d1 mount_ns +EXPORT_SYMBOL vmlinux 0xd2fc19bd proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0xd304fef0 vga_get +EXPORT_SYMBOL vmlinux 0xd3187da4 pcibios_align_resource +EXPORT_SYMBOL vmlinux 0xd3189043 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd32d3209 devm_gpiod_get +EXPORT_SYMBOL vmlinux 0xd33ed336 param_ops_string +EXPORT_SYMBOL vmlinux 0xd34c304a dma_pool_create +EXPORT_SYMBOL vmlinux 0xd392a6d3 unlock_new_inode +EXPORT_SYMBOL vmlinux 0xd3b4f053 noop_llseek +EXPORT_SYMBOL vmlinux 0xd3bc03b5 md_unregister_thread +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3c1190b inet6_offloads +EXPORT_SYMBOL vmlinux 0xd3e6f60d cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xd3f053f9 pci_remove_bus +EXPORT_SYMBOL vmlinux 0xd3fdb4db locks_free_lock +EXPORT_SYMBOL vmlinux 0xd409383c pmu_request +EXPORT_SYMBOL vmlinux 0xd40d326a uart_match_port +EXPORT_SYMBOL vmlinux 0xd418e1c0 adjust_resource +EXPORT_SYMBOL vmlinux 0xd43df311 brioctl_set +EXPORT_SYMBOL vmlinux 0xd44b7e21 to_tm +EXPORT_SYMBOL vmlinux 0xd4525788 km_is_alive +EXPORT_SYMBOL vmlinux 0xd45df039 block_commit_write +EXPORT_SYMBOL vmlinux 0xd46cb561 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xd48986fb blkdev_fsync +EXPORT_SYMBOL vmlinux 0xd497383c kernel_getpeername +EXPORT_SYMBOL vmlinux 0xd4bc6465 iterate_supers_type +EXPORT_SYMBOL vmlinux 0xd4d5b10c devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0xd4de3169 dm_register_target +EXPORT_SYMBOL vmlinux 0xd4eb34e8 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0xd526a6cd agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0xd587db8c block_read_full_page +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd59d1a66 up_write +EXPORT_SYMBOL vmlinux 0xd5b0d398 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0xd5b9ee2a bdput +EXPORT_SYMBOL vmlinux 0xd5c482a4 blk_complete_request +EXPORT_SYMBOL vmlinux 0xd5c812ad get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0xd5e45fe3 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xd5e8444a __div64_32 +EXPORT_SYMBOL vmlinux 0xd5e942f9 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0xd5f753bf vfs_setpos +EXPORT_SYMBOL vmlinux 0xd6031dcd param_ops_ushort +EXPORT_SYMBOL vmlinux 0xd606503d register_sysctl +EXPORT_SYMBOL vmlinux 0xd60bb403 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd627480b strncat +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd668ab91 tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0xd668e544 mount_nodev +EXPORT_SYMBOL vmlinux 0xd6695dba inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xd66d87d7 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd69b30e0 atomic64_add_unless +EXPORT_SYMBOL vmlinux 0xd6a769c3 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0xd6bf61f2 parent_mem_cgroup +EXPORT_SYMBOL vmlinux 0xd6c41851 do_truncate +EXPORT_SYMBOL vmlinux 0xd6d63e9d lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0xd6dfe100 neigh_xmit +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd7046408 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0xd70c05a7 netdev_change_features +EXPORT_SYMBOL vmlinux 0xd72a2ab0 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0xd7461f9a blk_alloc_queue +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd78671ad mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write +EXPORT_SYMBOL vmlinux 0xd7997312 nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0xd79b015e __getblk_slow +EXPORT_SYMBOL vmlinux 0xd7a2380d alloc_disk_node +EXPORT_SYMBOL vmlinux 0xd7a6bca8 pci_reenable_device +EXPORT_SYMBOL vmlinux 0xd7b6b5a2 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7ef311a pm860x_set_bits +EXPORT_SYMBOL vmlinux 0xd7f49bac pci_enable_msix +EXPORT_SYMBOL vmlinux 0xd809b779 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xd80b710a ip_check_defrag +EXPORT_SYMBOL vmlinux 0xd8269994 freeze_bdev +EXPORT_SYMBOL vmlinux 0xd837bf04 d_alloc_name +EXPORT_SYMBOL vmlinux 0xd84c43a6 lockref_put_return +EXPORT_SYMBOL vmlinux 0xd8543fe4 dev_uc_flush +EXPORT_SYMBOL vmlinux 0xd875554d copy_to_iter +EXPORT_SYMBOL vmlinux 0xd88fd012 param_ops_bool +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b08a68 sg_miter_next +EXPORT_SYMBOL vmlinux 0xd8bbd287 sk_ns_capable +EXPORT_SYMBOL vmlinux 0xd8c5c1d1 __get_user_pages +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd9026511 tty_do_resize +EXPORT_SYMBOL vmlinux 0xd9153da0 xfrm_init_state +EXPORT_SYMBOL vmlinux 0xd91c1ecb reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0xd9214e79 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0xd92514ca agp_special_page +EXPORT_SYMBOL vmlinux 0xd943f181 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0xd9498b22 proc_dointvec +EXPORT_SYMBOL vmlinux 0xd94b6f3c netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0xd95c441f __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xd965e27c mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0xd966ddc2 __do_once_done +EXPORT_SYMBOL vmlinux 0xd97b9ea7 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd9b948eb netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xd9bac924 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9ea3b1f ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xd9f009fd skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xda103105 of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xda18a86f kobject_del +EXPORT_SYMBOL vmlinux 0xda3c5ba0 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda53b345 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xda72cc0c __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda82b354 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda92dab3 bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xda9757e0 km_state_notify +EXPORT_SYMBOL vmlinux 0xdaa57ec3 totalhigh_pages +EXPORT_SYMBOL vmlinux 0xdaae02e5 remove_proc_entry +EXPORT_SYMBOL vmlinux 0xdaaed687 devm_free_irq +EXPORT_SYMBOL vmlinux 0xdac2e5c4 i2c_master_send +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdada7b9b tty_unlock +EXPORT_SYMBOL vmlinux 0xdae81bff netdev_state_change +EXPORT_SYMBOL vmlinux 0xdb12387c d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0xdb30f8c9 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xdb37c806 devfreq_add_device +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb74f0ec vme_register_bridge +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb9b7cf4 blk_start_queue +EXPORT_SYMBOL vmlinux 0xdba7c384 validate_sp +EXPORT_SYMBOL vmlinux 0xdbad3473 __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0xdbc164e1 prepare_binprm +EXPORT_SYMBOL vmlinux 0xdbcd19e0 flush_dcache_page +EXPORT_SYMBOL vmlinux 0xdbf87890 copy_from_iter +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc119a56 phy_init_hw +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc214961 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc551cc6 handle_edge_irq +EXPORT_SYMBOL vmlinux 0xdc70d6e9 eth_change_mtu +EXPORT_SYMBOL vmlinux 0xdc942659 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0xdc9498dd down +EXPORT_SYMBOL vmlinux 0xdcac49a9 param_get_int +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcefb9a5 pmu_resume +EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat +EXPORT_SYMBOL vmlinux 0xdd11cafd dev_trans_start +EXPORT_SYMBOL vmlinux 0xdd1ee4c5 down_read_trylock +EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr +EXPORT_SYMBOL vmlinux 0xdd35ba06 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0xdd4e18a0 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xdd4ea0b1 finish_open +EXPORT_SYMBOL vmlinux 0xdd51b24e tcp_release_cb +EXPORT_SYMBOL vmlinux 0xdd546ae0 try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xdd6af9c0 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xdd9030af current_stack_pointer +EXPORT_SYMBOL vmlinux 0xddb9a79a simple_unlink +EXPORT_SYMBOL vmlinux 0xddefbdc5 vfs_write +EXPORT_SYMBOL vmlinux 0xde3788b8 wireless_spy_update +EXPORT_SYMBOL vmlinux 0xde41138e gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xde463d35 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0xde48e9ca _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xde4cf182 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xde558295 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xde74146c padata_do_serial +EXPORT_SYMBOL vmlinux 0xde91448c load_vr_state +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde9abb5a skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xded73fec skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xdeedffdb gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xdefb15fc remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0xdf0f1e30 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xdf263cb0 security_mmap_file +EXPORT_SYMBOL vmlinux 0xdf27248a kernel_listen +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf2ff68b dup_iter +EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update +EXPORT_SYMBOL vmlinux 0xdf3c0eb6 mmc_of_parse +EXPORT_SYMBOL vmlinux 0xdf45713d eth_header_parse +EXPORT_SYMBOL vmlinux 0xdf4571a4 vme_bus_type +EXPORT_SYMBOL vmlinux 0xdf4c2ecf key_type_keyring +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf5c8911 mmc_get_card +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf80deaa param_set_int +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf953733 dm_unregister_target +EXPORT_SYMBOL vmlinux 0xdf99b418 __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0xdfc9bfa9 irq_set_chip +EXPORT_SYMBOL vmlinux 0xdfd71dc2 simple_transaction_release +EXPORT_SYMBOL vmlinux 0xdfe564b0 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xdff43ed4 __debugger +EXPORT_SYMBOL vmlinux 0xdff56e64 adb_poll +EXPORT_SYMBOL vmlinux 0xdff5be94 netdev_update_features +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xe013ebed udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xe04a4092 of_device_is_available +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe0820765 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe094ef39 sg_next +EXPORT_SYMBOL vmlinux 0xe0a680ab get_super +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0cfc921 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xe0d27f0f proc_set_size +EXPORT_SYMBOL vmlinux 0xe0d32dd9 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe126f6ac of_device_unregister +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe1814ed7 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xe195a2c2 skb_seq_read +EXPORT_SYMBOL vmlinux 0xe1ae3943 pci_find_capability +EXPORT_SYMBOL vmlinux 0xe1c04ad6 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xe1d183d1 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xe1d8a09a single_release +EXPORT_SYMBOL vmlinux 0xe1fbbd99 param_set_byte +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe208b860 __genl_register_family +EXPORT_SYMBOL vmlinux 0xe20d59c7 read_cache_page +EXPORT_SYMBOL vmlinux 0xe2163806 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xe218e814 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL vmlinux 0xe231ff46 of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe24c5991 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe2651d7d vc_resize +EXPORT_SYMBOL vmlinux 0xe2662bea netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xe2703167 __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0xe27d702b make_bad_inode +EXPORT_SYMBOL vmlinux 0xe2845cdf proc_douintvec +EXPORT_SYMBOL vmlinux 0xe28bfaa6 kernel_accept +EXPORT_SYMBOL vmlinux 0xe2907824 devm_gpio_request +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2ba72db neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xe2be5498 lg_global_unlock +EXPORT_SYMBOL vmlinux 0xe2cfb029 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2d65132 unregister_quota_format +EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user +EXPORT_SYMBOL vmlinux 0xe2ebcf97 phy_register_fixup +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup +EXPORT_SYMBOL vmlinux 0xe2fca23a xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0xe2fccd5b sock_recvmsg +EXPORT_SYMBOL vmlinux 0xe30ba653 update_devfreq +EXPORT_SYMBOL vmlinux 0xe30daafb scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xe3254520 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0xe32ad77a netif_napi_del +EXPORT_SYMBOL vmlinux 0xe34a9a8b inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xe34c5595 kset_unregister +EXPORT_SYMBOL vmlinux 0xe350761b make_kuid +EXPORT_SYMBOL vmlinux 0xe359e3b8 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0xe3609ef8 pci_save_state +EXPORT_SYMBOL vmlinux 0xe384b209 phy_start_aneg +EXPORT_SYMBOL vmlinux 0xe388510d blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xe3aec898 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3c7936e neigh_destroy +EXPORT_SYMBOL vmlinux 0xe3d45e2c get_user_pages +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3e82621 free_task +EXPORT_SYMBOL vmlinux 0xe410c5c4 inet_del_offload +EXPORT_SYMBOL vmlinux 0xe41368e7 bio_clone_fast +EXPORT_SYMBOL vmlinux 0xe4156e72 d_add_ci +EXPORT_SYMBOL vmlinux 0xe45e68de nobh_writepage +EXPORT_SYMBOL vmlinux 0xe4624800 generic_file_llseek +EXPORT_SYMBOL vmlinux 0xe47d389f ps2_handle_ack +EXPORT_SYMBOL vmlinux 0xe481c5ea nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe49e036c scmd_printk +EXPORT_SYMBOL vmlinux 0xe4c17741 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xe4d185c0 put_io_context +EXPORT_SYMBOL vmlinux 0xe4e564f5 textsearch_prepare +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4fbeb28 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0xe4fe8ca1 _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xe51cdd08 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe557e510 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe5849e2a up_read +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe592f912 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0xe5a94a8f of_n_addr_cells +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5ddb7cc pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe5ed87bb vm_insert_page +EXPORT_SYMBOL vmlinux 0xe5f42963 d_obtain_root +EXPORT_SYMBOL vmlinux 0xe5fb5469 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0xe638064b xfrm_state_add +EXPORT_SYMBOL vmlinux 0xe64168b5 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0xe66d7afa security_path_symlink +EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe6a2a062 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xe6b790aa neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xe6b872b0 follow_down_one +EXPORT_SYMBOL vmlinux 0xe6b88851 blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0xe6cdcac1 flush_signals +EXPORT_SYMBOL vmlinux 0xe6dd236d clear_pages +EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe71886b2 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xe72ba6d7 dcb_setapp +EXPORT_SYMBOL vmlinux 0xe73c7f13 pipe_lock +EXPORT_SYMBOL vmlinux 0xe7425156 sock_create_kern +EXPORT_SYMBOL vmlinux 0xe74fbc60 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xe75add59 tty_register_driver +EXPORT_SYMBOL vmlinux 0xe760b7c2 tty_devnum +EXPORT_SYMBOL vmlinux 0xe79cf4ab open_check_o_direct +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7aeca38 pci_fixup_device +EXPORT_SYMBOL vmlinux 0xe7b6315e kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0xe7bf317d fsl_lbc_addr +EXPORT_SYMBOL vmlinux 0xe7c4a439 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xe7ce7439 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0xe7d0a4c3 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7e35b89 __breadahead +EXPORT_SYMBOL vmlinux 0xe7ea5dfd writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe82cc752 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xe852b531 input_unregister_device +EXPORT_SYMBOL vmlinux 0xe8651ba8 fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8aca7a3 skb_queue_tail +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe907b3dc xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xe90fb944 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe9378d58 idr_get_next +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe969f09a __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xe96c4c99 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xe9a681ff fb_set_var +EXPORT_SYMBOL vmlinux 0xe9ab4b42 unregister_qdisc +EXPORT_SYMBOL vmlinux 0xe9b57421 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0xe9becdc5 vfs_symlink +EXPORT_SYMBOL vmlinux 0xe9ca213a skb_split +EXPORT_SYMBOL vmlinux 0xe9ec1422 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xea015542 mach_powermac +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea1adaa3 __serio_register_port +EXPORT_SYMBOL vmlinux 0xea2795f0 mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0xea2e4577 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xea653409 dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0xea695041 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xea6bada1 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0xea7370ee put_page +EXPORT_SYMBOL vmlinux 0xea7987f1 key_update +EXPORT_SYMBOL vmlinux 0xea968c96 ___ratelimit +EXPORT_SYMBOL vmlinux 0xeab3c95a bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xeab93944 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xeacef85f generic_update_time +EXPORT_SYMBOL vmlinux 0xeaea03b9 bdget_disk +EXPORT_SYMBOL vmlinux 0xeb018851 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0xeb3164c2 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb46e33c dev_add_offload +EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xeb6ea3a1 sock_get_timestamp +EXPORT_SYMBOL vmlinux 0xeb8ca594 inet_accept +EXPORT_SYMBOL vmlinux 0xeb8d93b5 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xeba1f73b page_put_link +EXPORT_SYMBOL vmlinux 0xeba220ea pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0xeba2a1f7 rtas_indicator_present +EXPORT_SYMBOL vmlinux 0xebbf6919 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0xebca120c cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xebca45b8 get_fs_type +EXPORT_SYMBOL vmlinux 0xebcd0165 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0xebd18deb sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xebfa7d22 napi_get_frags +EXPORT_SYMBOL vmlinux 0xec1aa6ef memzero_explicit +EXPORT_SYMBOL vmlinux 0xec33a092 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xec4b14a0 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xec54f8e1 __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0xec88775c devm_gpio_free +EXPORT_SYMBOL vmlinux 0xec99b125 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xeca2b9bf bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xecb53d0a bdgrab +EXPORT_SYMBOL vmlinux 0xecbb926f xor_altivec_3 +EXPORT_SYMBOL vmlinux 0xecbcb8bb radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0xecc3dbed __dax_fault +EXPORT_SYMBOL vmlinux 0xecd553da __pci_enable_wake +EXPORT_SYMBOL vmlinux 0xecd982a2 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecee2580 of_get_next_parent +EXPORT_SYMBOL vmlinux 0xed053874 simple_rename +EXPORT_SYMBOL vmlinux 0xed1d4042 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xed278f43 dev_uc_sync +EXPORT_SYMBOL vmlinux 0xed334cda dump_truncate +EXPORT_SYMBOL vmlinux 0xed3984ef jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed7e5d6f xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xed8050c1 sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xed85e37a d_lookup +EXPORT_SYMBOL vmlinux 0xed8ecf48 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xedb48057 genl_unregister_family +EXPORT_SYMBOL vmlinux 0xedb62536 sock_update_memcg +EXPORT_SYMBOL vmlinux 0xedb7475a of_gpio_simple_xlate +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc410d0 udplite_table +EXPORT_SYMBOL vmlinux 0xedf027b9 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xee0065ce blk_sync_queue +EXPORT_SYMBOL vmlinux 0xee0361e0 register_filesystem +EXPORT_SYMBOL vmlinux 0xee246cad ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee3496c3 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0xee3a26ff blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0xee4e24a2 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xee51090a done_path_create +EXPORT_SYMBOL vmlinux 0xee59412f adb_try_handler_change +EXPORT_SYMBOL vmlinux 0xee66afe3 bd_set_size +EXPORT_SYMBOL vmlinux 0xee77686d qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0xee832c23 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xeea0dfd9 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeec2d844 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xeec39719 param_get_invbool +EXPORT_SYMBOL vmlinux 0xeed3b2a0 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xeed5b234 ps2_handle_response +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xeef26e05 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xeef5d680 loop_backing_file +EXPORT_SYMBOL vmlinux 0xeefba181 alloc_fcdev +EXPORT_SYMBOL vmlinux 0xef08c058 dev_get_by_name +EXPORT_SYMBOL vmlinux 0xef3fbb96 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xef585820 agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0xef6aca2a copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0xef7122e2 udp6_csum_init +EXPORT_SYMBOL vmlinux 0xef8c34c4 of_get_ibm_chip_id +EXPORT_SYMBOL vmlinux 0xef924757 netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0xef93938b netdev_emerg +EXPORT_SYMBOL vmlinux 0xef9e00cc udp_proc_register +EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefde1bbe flush_dcache_range +EXPORT_SYMBOL vmlinux 0xefe6e1a4 kdb_current_task +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf000e1fb fs_bio_set +EXPORT_SYMBOL vmlinux 0xf01c752f vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xf04f6548 phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0xf04f65ab blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be +EXPORT_SYMBOL vmlinux 0xf0665f1e mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xf073f267 sock_create +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf09144d8 account_page_redirty +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf0cddc41 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf0f136cd pci_set_master +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 +EXPORT_SYMBOL vmlinux 0xf1167677 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xf116ff53 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xf11cd6ce down_interruptible +EXPORT_SYMBOL vmlinux 0xf120872a dql_completed +EXPORT_SYMBOL vmlinux 0xf1248677 of_parse_phandle +EXPORT_SYMBOL vmlinux 0xf1340e28 sock_no_poll +EXPORT_SYMBOL vmlinux 0xf138f4c7 __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0xf13935a5 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0xf141ee9a __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf1500152 __quota_error +EXPORT_SYMBOL vmlinux 0xf159747c __neigh_event_send +EXPORT_SYMBOL vmlinux 0xf160a685 iput +EXPORT_SYMBOL vmlinux 0xf175c80c pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1989895 disk_stack_limits +EXPORT_SYMBOL vmlinux 0xf19e9355 cpu_online_mask +EXPORT_SYMBOL vmlinux 0xf1b74867 simple_statfs +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1deabf2 div64_u64 +EXPORT_SYMBOL vmlinux 0xf1e95d4b wireless_send_event +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf2001ee4 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf2256bd9 rt6_lookup +EXPORT_SYMBOL vmlinux 0xf22881e8 lg_local_lock +EXPORT_SYMBOL vmlinux 0xf22b9972 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0xf22f9a4e __i2c_transfer +EXPORT_SYMBOL vmlinux 0xf23deb12 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf24ee8d0 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xf2527456 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0xf274b7bf locks_remove_posix +EXPORT_SYMBOL vmlinux 0xf27563cb irq_stat +EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered +EXPORT_SYMBOL vmlinux 0xf2b1faff fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0xf2b8135d netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2d538b0 pci_device_from_OF_node +EXPORT_SYMBOL vmlinux 0xf2ddbcd0 submit_bio +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf322a206 bit_waitqueue +EXPORT_SYMBOL vmlinux 0xf326161b of_find_property +EXPORT_SYMBOL vmlinux 0xf32866aa jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf33aae69 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xf343fb77 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf346affa tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf36a644a dump_skip +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf3ab17d3 pneigh_lookup +EXPORT_SYMBOL vmlinux 0xf3bd1951 __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3e9f7b6 tcf_action_exec +EXPORT_SYMBOL vmlinux 0xf3f626d7 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xf40b2297 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xf426be89 dma_async_device_register +EXPORT_SYMBOL vmlinux 0xf437218b seq_puts +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf4449388 timer_interrupt +EXPORT_SYMBOL vmlinux 0xf444f40f writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xf446e3e7 ipv4_specific +EXPORT_SYMBOL vmlinux 0xf4482638 starget_for_each_device +EXPORT_SYMBOL vmlinux 0xf45388f1 ab3100_event_register +EXPORT_SYMBOL vmlinux 0xf459ff02 pci_find_hose_for_OF_device +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf4751e26 ps2_init +EXPORT_SYMBOL vmlinux 0xf4914910 sock_from_file +EXPORT_SYMBOL vmlinux 0xf4bb4a35 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4d50de9 i2c_master_recv +EXPORT_SYMBOL vmlinux 0xf4e1ace2 mb_cache_shrink +EXPORT_SYMBOL vmlinux 0xf4eef396 gen_pool_free +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf5143a81 add_disk +EXPORT_SYMBOL vmlinux 0xf514b737 mmc_request_done +EXPORT_SYMBOL vmlinux 0xf5222143 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0xf52321e0 atomic64_sub +EXPORT_SYMBOL vmlinux 0xf52c555c of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf54c51a2 dma_pool_free +EXPORT_SYMBOL vmlinux 0xf57136fb check_disk_change +EXPORT_SYMBOL vmlinux 0xf5881926 setattr_copy +EXPORT_SYMBOL vmlinux 0xf59453c9 __pagevec_release +EXPORT_SYMBOL vmlinux 0xf59b8008 md_cluster_ops +EXPORT_SYMBOL vmlinux 0xf5a62ecc _memset_io +EXPORT_SYMBOL vmlinux 0xf5b41647 iov_iter_npages +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5d0adda dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0xf5e1558d crash_shutdown_unregister +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf5ee198b mdiobus_read +EXPORT_SYMBOL vmlinux 0xf610a3ac eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xf62b1f00 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf64ec733 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xf66f7026 locks_copy_lock +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf6789a40 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68b6d3e xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xf69715cc secpath_dup +EXPORT_SYMBOL vmlinux 0xf6996098 unregister_console +EXPORT_SYMBOL vmlinux 0xf69f3722 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xf6a540d8 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf70384d7 __debugger_sstep +EXPORT_SYMBOL vmlinux 0xf709853c iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0xf71521ba atomic64_add_return +EXPORT_SYMBOL vmlinux 0xf736af61 dev_addr_init +EXPORT_SYMBOL vmlinux 0xf7496af2 set_cached_acl +EXPORT_SYMBOL vmlinux 0xf7553c7e kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf784403c mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0xf78ea967 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0xf7a9b531 remove_arg_zero +EXPORT_SYMBOL vmlinux 0xf7f0a4d3 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xf801b80b device_get_mac_address +EXPORT_SYMBOL vmlinux 0xf80debc5 pmac_suspend_agp_for_card +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf85288a7 mutex_unlock +EXPORT_SYMBOL vmlinux 0xf869fa0c inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0xf88b9f7a bdev_read_only +EXPORT_SYMBOL vmlinux 0xf8bf2083 page_readlink +EXPORT_SYMBOL vmlinux 0xf8de93a0 blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0xf8e6da6b scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0xf8ef514e vfs_create +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf90e5e7e dev_mc_sync +EXPORT_SYMBOL vmlinux 0xf918f56d call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xf92c5e81 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run +EXPORT_SYMBOL vmlinux 0xf93999b4 backlight_force_update +EXPORT_SYMBOL vmlinux 0xf93e41f0 md_reload_sb +EXPORT_SYMBOL vmlinux 0xf94b0436 phy_suspend +EXPORT_SYMBOL vmlinux 0xf94e1ecb sk_stream_error +EXPORT_SYMBOL vmlinux 0xf968439e fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0xf99dc29c tso_build_data +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9bfd0bb cdrom_check_events +EXPORT_SYMBOL vmlinux 0xf9e69780 from_kgid_munged +EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf +EXPORT_SYMBOL vmlinux 0xf9f9f729 iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0xfa0fa8a1 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa554829 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0xfa598fc2 ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfaa7c9fa misc_deregister +EXPORT_SYMBOL vmlinux 0xfaaf9c9f kobject_init +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xface39b9 mpage_writepages +EXPORT_SYMBOL vmlinux 0xfadb5750 pmu_unlock +EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL vmlinux 0xfaee1783 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xfb0ef56c csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xfb176b84 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xfb5cf667 nf_unregister_hook +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbe7c97d default_qdisc_ops +EXPORT_SYMBOL vmlinux 0xfbee350f mpage_writepage +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc1282bd blkdev_put +EXPORT_SYMBOL vmlinux 0xfc155177 noop_fsync +EXPORT_SYMBOL vmlinux 0xfc240f16 invalidate_bdev +EXPORT_SYMBOL vmlinux 0xfc256f8d fput +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3a98c1 blk_finish_request +EXPORT_SYMBOL vmlinux 0xfc3b160f mempool_create_node +EXPORT_SYMBOL vmlinux 0xfc4f3194 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0xfcaaad84 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xfcb4f8a9 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcc97ee6 tty_port_put +EXPORT_SYMBOL vmlinux 0xfccb3634 dev_alloc_name +EXPORT_SYMBOL vmlinux 0xfccecf70 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf84a93 atomic64_xor +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfd0c5038 adb_unregister +EXPORT_SYMBOL vmlinux 0xfd33b5fa cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xfd6ed1b8 vlan_vid_add +EXPORT_SYMBOL vmlinux 0xfd8da476 phy_device_create +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfda75de1 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xfdaa5866 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xfdb6cedc _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfddae3c8 check_disk_size_change +EXPORT_SYMBOL vmlinux 0xfddbfa93 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xfded48ed enable_kernel_fp +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfdfc394f dev_printk +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe4374c5 nf_log_unregister +EXPORT_SYMBOL vmlinux 0xfe4e8945 serio_bus +EXPORT_SYMBOL vmlinux 0xfe5d26a0 dma_find_channel +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe6290a7 release_firmware +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe84ef13 inet_register_protosw +EXPORT_SYMBOL vmlinux 0xfe8a2f28 send_sig_info +EXPORT_SYMBOL vmlinux 0xfe93acc7 simple_setattr +EXPORT_SYMBOL vmlinux 0xfe9743fa nf_log_trace +EXPORT_SYMBOL vmlinux 0xfe9e4ca5 proto_register +EXPORT_SYMBOL vmlinux 0xfeca7590 radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xff12a0e7 serio_open +EXPORT_SYMBOL vmlinux 0xff157272 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0xff1765c7 rtas_call +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff243f4f mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0xff41746a nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xff41fdf1 i2c_register_driver +EXPORT_SYMBOL vmlinux 0xff51bf2c pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0xff59b78f tty_port_tty_set +EXPORT_SYMBOL vmlinux 0xff5d3d2f agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0xff64304c pcie_set_readrq +EXPORT_SYMBOL vmlinux 0xff643ee7 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xff645943 pci_select_bars +EXPORT_SYMBOL vmlinux 0xff66298f register_console +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff6dea25 smp_hw_index +EXPORT_SYMBOL vmlinux 0xff771259 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xff8ab4c7 dm_io +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xffa41d44 sg_miter_skip +EXPORT_SYMBOL vmlinux 0xffacfe1c fifo_set_limit +EXPORT_SYMBOL vmlinux 0xffae6290 dev_remove_pack +EXPORT_SYMBOL vmlinux 0xffc27482 param_ops_ulong +EXPORT_SYMBOL vmlinux 0xffc863b1 unlink_framebuffer +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffdb82bc sg_free_table +EXPORT_SYMBOL_GPL crypto/af_alg 0x319fd22f af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0x34b314cf af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x58716898 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0x7928186e af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x926e5432 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x968246c3 af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x9fd7cbb0 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xa943459f af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xc0760c9d af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xde8ad655 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xf277557c af_alg_complete +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x478b0830 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x3aa47af5 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x69e6330f async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x3e288ce7 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xcafbf2e7 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x1eb31d27 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x3e673629 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x55d5eabd async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xa08619f1 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x5d351715 async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x87cdee9b async_xor_val +EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x4af48425 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xd77d775d cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xb174c8e9 cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 +EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 +EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 +EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x06df7138 crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x12370431 crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/cryptd 0x0bd62a53 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x4d3a017c cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x5152fab4 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x7b61514a cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x83c46f12 cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x946ae189 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xa487f6c3 cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xd9341ef7 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xe62fd351 cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xf6819294 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey +EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey +EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table +EXPORT_SYMBOL_GPL crypto/lrw 0x77bcc42c lrw_crypt +EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table +EXPORT_SYMBOL_GPL crypto/mcryptd 0x14bdd4d3 mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0x46e0fdee mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/mcryptd 0x544fdf88 mcryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/mcryptd 0x5e071253 shash_ahash_mcryptd_digest +EXPORT_SYMBOL_GPL crypto/mcryptd 0x8bdc1866 shash_ahash_mcryptd_update +EXPORT_SYMBOL_GPL crypto/mcryptd 0xbc15db47 mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0xc7d447f3 shash_ahash_mcryptd_finup +EXPORT_SYMBOL_GPL crypto/mcryptd 0xc7d6422c shash_ahash_mcryptd_final +EXPORT_SYMBOL_GPL crypto/mcryptd 0xe20b1340 mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x8f5241b3 crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xc380f6ed crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xc76d2f19 crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xd359decd crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x3b317afc serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xf686b218 twofish_setkey +EXPORT_SYMBOL_GPL crypto/xts 0xeb14603f xts_crypt +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x064da59d ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0c940ac4 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x13c35059 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x19d29bd0 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x19ec9db4 ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x280fc483 ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2ba43067 ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3480d7de ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x384fa991 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5540fcd5 ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x58db456a ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8de11fdb ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8fca2e07 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x91f52b04 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9df250d7 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa696d240 ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa85af9f9 ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xba13ef5a ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd68e50ce ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xedd7bc94 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xef53fa98 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xeff09d82 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf9be058a ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x1005aa5f ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2ee6629d ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x4d03e0fc ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5239bd9b ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x54be4c12 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6e460335 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6f9f8338 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x95f20c92 ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xacfd505b ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc8670e8a ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd054bd54 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe278dd96 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe8271d7c ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x7d2d7dba __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0xd15e4907 sis_info133_for_sata +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x02784832 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x8cca8df5 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xb6bdcbce __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xba97f553 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x00797cb7 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1236d9f5 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x15583ea1 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1810f4ad bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1ee7f309 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x51b220df bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x56afc583 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5cfe21bb bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x67275e22 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x67930759 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x69534bac bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7ed6f542 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x93b4d668 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x94e168b9 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xad9998f5 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc64379eb bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd56034cf bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdc079ddd bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdce67a2a bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdf3f2fa3 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdf87a9ae bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe78be1b0 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xeb917390 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf27af690 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x48f983ff btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x5ef3dc5a btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x65834bf7 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x8e9d67ac btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x950588c8 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd4727921 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0503a2b3 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1a3e0673 btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1e182a8e btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3722bce2 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5ad66c00 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x66971174 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6ddd6a43 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7359680b btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x91e8bb46 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc5ef60b8 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xed9f0983 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xff887083 btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0e367572 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x23fff086 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x727c0569 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7d183496 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7ec080d8 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9670204b btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x970ee10c btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x986d4174 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc6840241 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc8f06ce2 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfdf38816 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x014383c2 qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x4ca39e0e qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x17d7a599 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x5fe8c1ee h4_recv_buf +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x16896b6d dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x2a8c9348 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x6cc9df47 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7353b2a9 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xd0b18841 dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x4105ca1d hsu_dma_irq +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xeea93409 hsu_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xfc5f232b hsu_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x122d3276 vchan_init +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x46dbec0c vchan_tx_submit +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x9d97c312 vchan_find_desc +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xf5462a59 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0375dda4 edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x15b98634 edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x18bf58cd edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1ce690b3 edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x26d7ba7a edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3a73d462 edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4dc7f48e edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x71a90343 find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9d8f5b62 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xad327f84 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xaf2676aa edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb8e21abb edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbf6eedab edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc3e74b73 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc408f035 edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe11e659c edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe5929b21 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe8da8d39 edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe91e4041 edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xeb300433 edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf30e5062 edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf99f770a edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xfdb32683 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x09357be8 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x10340390 fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x872be618 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xacce3285 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xaf61b4dc fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xfb318bb5 fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x6fcb008e bgpio_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xec402f83 bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x980dbf75 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xbd5f9ce9 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0cf9efe4 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1b6823d5 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x30f0898b drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x32233f52 of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x76688a97 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x949dde54 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x08e76213 ttm_dma_page_alloc_debugfs +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x3f9fc0e0 ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xe4008b5f ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x08503d48 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0e1d1631 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0eaa725b hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x12574785 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1e293403 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x23a554f1 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x33d64347 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x34ad1489 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x355ffcaa hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x370c974e hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3be3418a hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4522b8c2 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5d404c95 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6041410a hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x656f1060 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7ab9d9f3 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7ac0ecc2 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7bef26ec hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x809ec55d hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x86149347 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9a9ff668 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa056a4b0 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa07dc58f hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaf242e90 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb914489d hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbe7b9da5 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcd04b230 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd144c309 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd3debd5c hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd426091c hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdc59c70d __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdcfc4a16 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe1510b2f hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe33eee93 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf5421a37 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfcd73700 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0xbbd70d78 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x0279de88 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x19289247 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x2674adb8 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x4f3d8e38 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x97690bd3 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xedda06bf roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1f2918b5 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x38b34abf sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x5cdfa639 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x770bb8a6 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7cef0865 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9170f50e sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x985e0597 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd5c69ab3 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xebe75918 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xd9c09739 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x011297d5 hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0750b7c0 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2a5cb9a8 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3f30238c hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4e939faf hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x53bb0fab hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6d6ee2b2 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x82700542 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8a0bff8d hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x97692b19 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa8c6438a hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb490ffef hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdbba3c7b hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdf5958b0 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe22ae675 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf2827193 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf8197809 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xff0eeae3 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x13b6114f adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x4323667c adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xd674fc4e adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0be8e981 pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x199a504d pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x40a7e915 pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x429ff488 pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x47168c74 pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x5d0885c2 pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x5d22fe62 pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x643b3403 pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x68e845f8 pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x6fa17129 pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x73e2531d pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x92360805 pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xabeb7a3e pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xfbd0d91b pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xffee8e78 pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x19737b97 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x1bc40a14 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x1be77730 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x20e52b62 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x274de624 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xceadbd57 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe0fb4ee9 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x1c621af4 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5bc3c549 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x614ba40f stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x65511e48 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x6eb41898 stm_source_write +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x16b317d9 i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x51c350ce i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x651bd56a i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x7bd79680 i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x7cfcd248 i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x67ae6069 i2c_del_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x8d534762 i2c_add_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xbfa8df1c i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xf23ad893 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x32ca515e bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xbe38147e bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xcafad2a5 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x1cff40b0 ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x460bcd1c ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x58632c3d ad_sd_reset +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x5deca9d8 ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x6c18cdcf ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x781d3ca8 ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x9f6634d3 ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xaaf98c3c ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xc12132b1 ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xcdd07951 ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x39ce5670 iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x40e77aa3 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x32d2cd3e ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x69ca3398 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x0c386e22 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xb04db85b bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xedb24d04 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x00218d1c adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x09dd63c9 adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x18f94008 adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x1d555fc6 adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x26268e10 adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x43405689 adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x734fa13a adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x7b9afda9 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xa48c18d5 adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xab50d643 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xabfe0c28 adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf740438e adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x10a423b0 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x200adb47 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2097363d devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x270104c5 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2e97fbd8 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3054230d iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3c3c4781 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5d02cc58 devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x63841f9a iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x66e0e9ad iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6a45e4b9 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x760efae5 devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7e837fc8 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x828e2b65 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x92132cc3 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9a5364f0 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9a684ac7 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa2e5a357 devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa3a822e5 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb7825764 devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb97efb0c iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb9a23899 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc1607ba3 iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc8defea2 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd32e8205 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd8bf7a2a iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe92f7d07 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xeca6e5d5 iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf68a4e12 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf698b87c iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfdeb58f4 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xc3ba6857 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xd1542659 matrix_keypad_parse_of_params +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xf6dc002d adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x40ce8049 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xa7f80dca cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xc86eff5b cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x3d87841a cyttsp_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x7e829bb8 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xf444da0a cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x1b41e62d cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x43b5abc5 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x1b3cee8b tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x55307dcb tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xa7650d38 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xcd2a6493 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x35452fc0 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x391f5367 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x46008126 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x503ed726 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x54ae544b wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x59d813a5 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xae23cb9f wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbac5aa2a wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc05ae210 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdff742ea wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe4513204 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf9ef2f5e wm9712_codec +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x33c099c0 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x3aee451c ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4b711eba ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x716749de ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x71d29441 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x82a3b4cf ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb5120734 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xd0f83431 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xdc5c66a9 ipack_device_add +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0d36d599 gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x11d91fee gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x255719a7 gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x383f000b gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3c47d677 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4336d84b gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x50b76fc8 gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x55bc9f47 gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x55f93e76 gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x723a390d gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x747f7c7a gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x84e2fe0c gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb6be3c23 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xbaf0a5c8 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc0664d41 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xcdf449b0 gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf27c3e6d gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x26120482 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x2968cedf led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x58058af9 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x87a3698c led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb5b32e46 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xf6b1ab3f led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x1abd8d19 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x1bd2c97e lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x215b0e46 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x43a7f197 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x55e1bf14 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x607bbc12 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x6192a036 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x67a7bd5c lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa5d29e49 lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa6461f32 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xdc8acf35 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x0a0527be wf_register_client +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x10c761ca wf_register_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x2152110b wf_register_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x4aebf0b8 wf_unregister_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x6b1c0de7 wf_get_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x75147afa wf_set_overtemp +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x7b4a423d wf_get_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x8bb57348 wf_put_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xbcace2a5 wf_unregister_client +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xbd3ae11b wf_unregister_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xed82a14f wf_clear_overtemp +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xfdc63fc0 wf_put_control +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x0452e3bc mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x1c840e50 chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x269b5809 mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x5d38e33c mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x74c0dd1a mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x9779a00e mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x996ce9d8 mcb_bus_get +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xa348c294 __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xac5aec61 mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd3850c73 mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xeafdf8ee mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xef18d013 mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf9cca8f3 mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xfd9301d4 mcb_bus_put +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x00b74659 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2a1a7a99 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x374f45ea __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3a4dfef7 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x48991e9c __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4f124797 __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x614e860f __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x647af374 __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6724de29 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6726a0c1 __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x68f1ea6d __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7114cfcc __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x78c57fa5 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7cb4bd6f __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x816ebfe0 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x833b99dd __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8afe3e2b __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x912566ef __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x92c55e92 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9c59320b __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa7004101 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaf2376ac __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb3942afe __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb4cffcbb __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb9c28744 __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc0bd3171 __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc773563c __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd81ad8c9 __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe30b6b2a __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6169c53 __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfcb52b5f __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1ba8650f dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2a34e2f7 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x32895b99 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4bcb9e42 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6341a215 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x673a770d dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7884fa39 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa84a15fb dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd9c274a0 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x22163b69 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x3909d3a8 dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x594952bd dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x62a23587 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9b2b253a dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xdc69e37a dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe004ee92 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xf1a6a385 dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x32db2089 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x486fa597 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x6c521fb8 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xc4d999ea dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xc54f8594 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xecd1ea5a dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xf693022a dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x1416b3a2 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x91d15b57 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x09472122 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x13f5cf07 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x48370dc1 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x697fa190 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa8813ad6 dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc2965224 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc66ce277 dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc9db99de dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcab63c3d dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xef20a37f dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf37a3cfe dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11eab9fe dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x150c85ce dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2e730a21 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x33c03da6 dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x619701dc dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x78454bd4 dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9b4b5b29 dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2507774 dm_tm_shadow_block +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbcfdc290 dm_tm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbe0497aa dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xead1e727 dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x18d5b35d saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x23c2a740 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x41fcebec saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x69f17e5b saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6c58e1da saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6d5cf2b0 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x713ddf0a saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xbbe71b80 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xbf501089 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd75b6761 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x36892e07 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x4bcc9791 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x534a8814 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x585b098e saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xa0ada185 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xa65de06b saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xe4eefd9d saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x11e4a3b4 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x13539a36 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x13fe706f smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x195c31d8 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x43f7f3e6 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x471662f0 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4d32e5a7 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5c7a7562 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5edd1c6c sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6b02daae smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x70a158c4 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8ac5bb8a smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa3b1a9c6 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xca3055a4 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd2f5c425 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdda7a156 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf3b25bf2 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xd86c0bdd as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xf7fb7132 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x6256d951 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x0e13452f media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0x30c36462 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x3d41cf44 media_entity_init +EXPORT_SYMBOL_GPL drivers/media/media 0x45c33e2a media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x56a6a69a media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0x5705ee1d media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0x5927f7a3 media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0x5fca9acb __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x65535a4c media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0x66441e0e media_entity_create_link +EXPORT_SYMBOL_GPL drivers/media/media 0x6cecbc00 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0x713d93e8 media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0x78bb7bfb media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0x7fdf237d media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xd1e90f29 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0xea1885aa media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0xeff7b885 media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0xf4ad46ad media_entity_cleanup +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x35395907 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0eb05e9c mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x155aa6ea mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x199695f4 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1c66f84c mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x24bf5396 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2623400c mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x31569230 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4ff08210 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5ecbfeac mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x98d8e9d3 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9f431298 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb2a9ae60 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc07b6521 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc4479aff mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc4aef5e0 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcdde3dd4 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd1f13c97 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe51e3a10 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf0f7fbb6 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x03deec89 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x174f83f6 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x41ac522c saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x480a2b69 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6956e2ef saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x73447918 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x73bf8fe9 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8f275be8 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x991da1b0 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9eec518a saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa3c7b543 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa6168ceb saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb10fe57c saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb46ab54e saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb4e3f9a0 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbba56120 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc5335c02 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc60c074c saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xee3aa9cf saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x02a17910 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x041b5044 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x1295130e ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x1b9dd816 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7d687451 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd95d05f4 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xee846836 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0b2585ce xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x33b46c09 xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x490bd11c xvip_get_format_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x4be7dcc7 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x91288c2c xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xadcbec8f xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb0b97a94 xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xbc4bc80f xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe47e5623 xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xaa9e8cc1 xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x7a670a86 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xb36cfe5f radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x03dc6149 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x071dcfb0 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x267d6ae8 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x32e4b433 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5029e5cc ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x55156d72 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5fe6ca33 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x83da00f8 rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8d2a08a3 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9618d7a0 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x962d6cbb rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa3c775fc rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa748657c rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa8c3d59a rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xba90f0b0 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc60e2e9e rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd43b6fad ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd67d2801 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfbeb9c71 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x1554f98b mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xac5d4518 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xd4d1201e mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x9dc09985 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xeec1c928 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x8adf71a4 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x7b7cc7f7 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xc4ab1357 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x0d7e8a17 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x244c6534 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x883c279a tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x61b28dc4 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xb1f51497 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xa90a243e simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x15843588 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1a17a4ad cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1c86f7f7 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2157090d cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4b608e27 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4bd8f7d6 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x73c552ec cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7d98f818 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x93673796 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x94fa09ea cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9770486c cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa32b9eb1 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa8b35dd3 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb4262bb7 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb51e64b5 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcf9e1449 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd3935bcf is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd8721572 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe73ab82e cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf79dc2f6 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xd6066d6b mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x5abce24f mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x01f364c7 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x08ff0bfb em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2d8a6a3c em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2db39ff8 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x353718b9 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3edb82eb em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x54cd05b3 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x55aaae9b em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7d1ac969 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x939d1be0 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9851c178 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9a592559 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xaec44801 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbb920c4e em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd0bb2f8a em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdf0ac43f em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe641725f em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xea799805 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x25d0098d tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x702857ba tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x7f719916 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x9be4aa5c tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x0b982264 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x41c7ed49 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x45cf0daf v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x8d26fdd3 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xa4cc829e v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xe96cea29 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08982d59 v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x0dd49bc8 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x300c2e6d v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x01d14044 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x04c1848b v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0a47fb0b v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0aa6c32f v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2fd107d8 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x471e68e2 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x474deed5 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4c899bec v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5900c4c4 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x607c6964 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6c9e4b8d v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x756f8a51 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7a175345 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x92585b23 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9e86dbf0 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa58b7430 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa6cec68c v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaf4735a8 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb2c9132f v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb84c0a32 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbbdf23ee v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc73e9113 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcc7492d1 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdfbd8b63 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe2a27930 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe707eeac v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf1cafb9a v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x011992ee videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0b2f9143 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0e3df072 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1f6d229f videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x297e8cbd videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x33db3e8b videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3eea63c2 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x47fb66df videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4b44afff videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6611a7e5 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x832a4d2e videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x96fdbf8c videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xaad89471 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb1baa381 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbd5dc058 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbe90cd0a videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc582a78c videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xca39c16a videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd7604770 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe2364c9b videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe2983b14 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xec28da21 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf483bbbb videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfe8e31a2 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x4afa44e0 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x513744f3 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa825c75b videobuf_sg_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xc52c828e videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xfb89e643 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x94cbc716 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xa773aacb videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xf20b4fe4 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x23a7b599 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x251d3f1d vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2e1ce797 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x506cb43e vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x50e4a26b vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x53c1eafd vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x640032e0 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6d528783 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x85669784 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x881cccbf vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x8dbe1835 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x9cc4fa1c vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa231471e vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa953b8a1 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xbcccc7f6 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf4b1626b vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xfaef9701 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xfe633ada vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x09bff1cd vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x98daeb1d vb2_dma_contig_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd30ec30f vb2_dma_sg_cleanup_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xe1b8f167 vb2_dma_sg_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xee070d1a vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0xf2fccfde vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0180ec58 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x05ddfd6e vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x145ca2bc vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1566c670 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x18610084 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2bca2756 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3749cdba vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3a65fd29 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4593601f vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x51240b85 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x553c1a07 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x55af66a0 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6160cf9d vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x64cbe522 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x87ca1334 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x89d2a826 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8e830f67 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8eca5447 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9b92903c vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9fcb4dcd vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa0929c81 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa78e7ee4 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa89a7ae1 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb535af89 vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb5a639db vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb5fb2033 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc7b48cc5 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xcb058d2e vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd9c04d94 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe3b62269 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xeb2091a9 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf54cade4 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x8451844a vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x085c1c98 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0af88a22 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0c7e10a9 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x18f08ec0 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x23fb985d v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x28d20b15 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x31e3d76e __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x331300ea v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3740e82b __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3a645829 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x46a85850 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4904ee1d v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e8eafe5 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5d9aede2 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x66773d89 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x69bd7eb9 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x70479ab0 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7a85f5d7 __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x81bd05ed v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x81f6dafa v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8b5c2e70 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8fa601e9 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x940bdfff v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x96871533 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x98545b10 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9c6f7aea v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb0f3d5c6 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xba926b3d v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc06061bb v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd29bb589 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd2a8ae26 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd3588160 v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xde633a51 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xed18bcab v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf3fb60bc v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5956f8c __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x06ddeb9f pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x7566d898 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xbb5be15f pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x0332a9bb da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x13641be9 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x69ccb100 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x7e69fe78 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x89f7e02e da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xefa45da0 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xfab85508 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0b6b6782 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x19691dbc kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x3a387dff kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x7441ab50 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x75e62241 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xafdd6943 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xc0b38c0a kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf92cb420 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x086dc77c lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x6421edff lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x7d48a7bc lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2f9740c9 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x38faa8aa lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x462c42c2 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x547225ac lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x6e477171 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xb444c932 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xd6a454a5 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x4c54335b lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x6665911f lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xdd7b09ae lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x19d1d691 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x3a3b7f88 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x4b6468d9 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x596b9db1 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x64808343 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7db348b0 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x010f38ee pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x09d967f8 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1464e2a8 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x16728cef pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x19d1b210 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4c8780b3 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x877f7cd6 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd4e40620 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd59afb92 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe53f7674 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xfc476a9c pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x36e6f727 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xd8bf8b2e pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x26ab3b5b pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x2cd2342d pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x84978e95 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xbecbb34c pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xddf9eb38 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x00954581 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x014b8150 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0874f44d rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x219f8b05 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2cae5a2c rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3189df55 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x42814799 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x43d9d3c5 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x47eb807d rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x58ad9b38 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x6782325a rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x871745ad rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9a4852b7 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9ce6c0b2 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa536fede rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa8cd3103 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xaab129fb rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc3899667 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd1288f24 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd51c745c rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe102a99e rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe80fac21 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf25f7819 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xfdf28398 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x02b02598 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x07a2c29b rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x2370d90b rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x35f50c41 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x4ed7af25 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x7da7145d rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x8508d4a7 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x927d406a rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x9a5322c2 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb09ea690 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xdab68a99 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xdc8ab3e1 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xf8b442ed rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0777595e si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0d73ee9b si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1a0eb146 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x26e2020d si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x30464c27 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3a95e204 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4393b4a5 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4575057d si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4ab0751d si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4e15f45f si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x638b1905 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x63c9d5a5 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x69a65822 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6b076690 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x769b5a1f si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x791e90ff si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7c5ba49d si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x858e6723 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8977715a si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8c224917 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8df5f247 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x952f1d3f si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9885c57b si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x99936d7d si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xab7e1bc1 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xade50289 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc49419ae si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc6a8418c devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcf630d94 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdc1183fa si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe8326c05 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xeb5a3b91 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf854e993 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf94ea851 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x1072b2a8 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xaf088064 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xbaceece2 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xc7d0d7c1 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xddb71ff1 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x12e8f107 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x380f4de5 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xc6506a80 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xd84935d1 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x2838ca8e tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x323d216f tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x54b448a5 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x804cc5dd tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x3163deef ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x2c02b395 bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x41331870 bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x7d0f0bb8 bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xedba502c bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x161e7a49 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x3f503f28 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x6f2ef379 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xc700ee77 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1ce45262 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x509a04c5 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x75e13a81 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x95f8e0aa enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xaa814461 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xaf1a786f enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb7ece333 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xcd3e3ba4 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x13d80795 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x218ddbcf lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5993f8c9 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x59ab7efb lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7ee8a115 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc7bc272a lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xca9f1536 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe7a41568 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x81df6421 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xcd6e377b st_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x07279a8d sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0be00793 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1e9de02a sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4074f1ba sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x49cf1138 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5c2969b3 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x601310b4 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x972e47b9 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xab70dac9 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb0711196 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbc0621b7 sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbc5b2ecb sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcd46fc02 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe6a5796c sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x05c0878d sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0f93e9f5 sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x1c1d1ea1 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x4088b156 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x80d10c80 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8b17233a sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa39dad81 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xca234813 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xce815b24 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x520f16a6 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x6d26334e cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xaf113330 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x33c9cf82 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x4d9b8452 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xbe624bd4 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xdc5ce2d5 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xa7493283 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xe07a4325 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xf184b38e cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0c8a897f unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0e794551 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0fc1724a mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1163b42f get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1a687848 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1e542d38 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x352d322e mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x37a015ca mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4abba11d mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4c49e28d mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x67d60c10 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x72aa5cbc mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x75b8bc50 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7b1f1d2e mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7b40ade3 mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8098db45 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x88dab013 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9468ee37 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x964a4b89 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9bad3e98 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9f3aae1f mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa2517eef mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaa443fb8 register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaa8cc6f8 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xae1c5d7a mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb25719c6 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb661598f mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbf0fd402 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc86557f2 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xce8d9740 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd3c16738 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd7ee16d7 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdb00bacd mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe0461755 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe04c1437 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe5e67acc mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe9d0f31b mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xec406d3c __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xeea53334 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf64d3c28 mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfaa4b784 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfd4a8bbf mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x85827759 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa1556526 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa2b92b4d del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xaf4a68e4 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xfc6ced64 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x5a3f2034 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xb7769a7e nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0xf8f88b56 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x5d824ccb onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x8b371f89 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xfbef9212 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0de8edda ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1d14ae75 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x263a66b4 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x58205b52 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x61a6e5ee ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x64d938c0 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8e4da05f ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x922151eb ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9f5a03ea ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa5f92b0f ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xccd7d58b ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdf177a31 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xefc1b491 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ad3d37 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xad5e7664 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xb693e0d9 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x2e2d0b95 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x44da817a free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x50c833a9 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6214209c unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x81fad2d9 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xda02f872 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0e4ddbe6 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x1d714edb can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x3300c163 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x3c33bcd4 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x3f852d27 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x48a546be can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x51a224a3 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x58a4c7d3 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5d8bbc79 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x643b6415 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x6473a75f alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x69eed595 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb266e726 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb43a1860 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb8f092aa can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc0097a8e register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xf17a3d78 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xfd54d1fc devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x69cdbacc register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x6dcb1696 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x8d1ab52e alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xe97e0576 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x13e94d78 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x810233ff alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x8cdd1363 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xc9297bff free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x0fd3d199 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xbed1595d arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x000ec23c mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03fd34be mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07971949 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09d7ee2d mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c05762c mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e416baf mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1057d907 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12d8f5af mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17c66cc0 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19a062cc __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b473186 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22abd6be mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2399c29a mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x249830cb mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27e3f2f4 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f0316f4 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f3c5828 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2fca1b54 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30604a50 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3150ef54 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31fc7dcf mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3396dbd1 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33afcadc mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34953ded mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44ca3eff mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45aae56e mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45fdf3b8 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4682138b mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4730f67e mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49e5ef24 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a08e89b mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b2b5009 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c190c2d mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ce8f9f7 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4da2077c mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e2d3f1d mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51f3f3ba __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x527d4020 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5324dc85 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53587230 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55b760b7 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58cc0438 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58e29334 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a46c9cb mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d788536 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ea44986 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f00a96b mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x610b288b mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61348a3e mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61584235 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6179954c mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63f1aa96 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ada5973 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6efaf7f4 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fa99dae mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x727132d7 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72b8d88e mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7522891f mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76bdef61 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a82863a mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b4d4837 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c0916cf mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c2c79f9 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d4187ed mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e1ffafe mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ff6c33c mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e310ed7 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f6eff4c mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92a247fe mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9504d737 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96740324 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96e72410 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c0da571 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9cbbd227 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9dec050c mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e4729cf mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f229b74 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa89cb0df mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa92238fd mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa6ba908 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa757f01 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xacc69aa4 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad548a98 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaff0637a mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2fddd68 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb68eaccc mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7be82f2 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8a94636 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb96e1c5d mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb844b03 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd1d13d0 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe0e5227 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbea237eb __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1ed82ce mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc301c03b mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3b0d0bf mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8deea89 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce0e3790 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcea8f095 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf014248 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcfac5ad8 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcff9b67d mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2bf29bb mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd409f961 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd56d1bbc mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5eb7c37 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd640455e mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8d206a3 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9564178 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd97cdf40 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb763086 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde4c9fb6 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe24ed9a7 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe30b84cb mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe62c315a mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe78f802b mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe84d8a48 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xecc6a625 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2a51c23 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf717c2a1 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7dc743c mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbc176da mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc9d1383 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfdc4bafd mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0861073b mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d465118 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10a84e76 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14b0e809 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d6167e2 mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24870034 mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24e15268 mlx5_set_port_proto +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28e81e36 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x394b98c3 mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39bbdb8e mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3af4dad9 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c1660d5 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41678b4f mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52262e0b mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53b6b8d0 mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ca19971 mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d7bdb4c mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62810d4a mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e0e0b35 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x856e51e6 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ad655f2 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x901c1dc4 mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9073fd0e mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x916aba47 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x977a4d2f mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3b9d5fd mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa49108a1 mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacf01131 mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae9ca9e0 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4b03c33 mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5a5c323 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6e42315 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb78011fa mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1bb4f45 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4a9f873 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5939f76 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc655a2e7 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5d09cea mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda12d423 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda35e14d mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe05c1ba0 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe593330c mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec3c0ae1 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xece72018 mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef280389 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd1ca6c4 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x368d3d71 regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x958c3e15 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xd4ab3625 regmap_encx24j600_spi_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x1c3ba199 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x5fe956a1 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x9a716c39 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xdf38b048 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x5d4dcb36 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xaa426b91 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xf8539d12 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xf8c16bcb stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x0bc79b4a cpsw_ale_control_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x173af516 cpsw_ale_dump +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x3ca5e168 cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x42688ede cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x455cced7 cpsw_ale_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x56c1fd35 cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x68df89f7 cpsw_ale_control_get +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x72265047 cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x85d05df3 cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x880303a9 cpsw_ale_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xb95f5200 cpsw_ale_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xbf9f1820 cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xc6c8ba5f cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xcd0f81fb cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xef93e1ee cpsw_ale_stop +EXPORT_SYMBOL_GPL drivers/net/geneve 0x7fe28661 geneve_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/geneve 0x8db3a01a geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x5189eb47 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x72c17ac1 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xa3d739e5 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xab5c2c85 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvtap 0x0832864a macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x097cab94 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x119bb1e5 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x207bf708 bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x25bbd623 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x86b84165 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9d5aef04 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xaf601a76 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbf8f505a bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdcdaf572 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdf54733a bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x3ecc86a5 mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x1b2515ef usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x2baea590 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x423f3e96 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xe3538e89 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x23ca447e cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x399e2f2a cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x4400c1ee cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6382bae2 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9a4910b2 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xbb3993bd cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xbed10b2b cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc685ce7f cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xfce9a804 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x17fc5b58 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x316536a7 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5db55dfe generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x6e15a81e rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xdf6a41cd rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xeab2bba9 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0215d67c usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0629058c usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x088d260d usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1a3d8489 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x20a9805e usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x21ec0505 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x23bd9fa1 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2c3917b7 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2f77a60e usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2fcaf390 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3b960033 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3e0199ec usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4243625c usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x42f6d46f usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4cfe5ee9 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5679e978 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6c84eeb4 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x798a31de usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8af8054c usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8daa529e usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x96c83ce3 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9f88fbd5 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa9e77981 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb6bfee97 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc05cfa28 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc5d7052a usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc6cf7456 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xced5b9ad usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe0e89082 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xeda0292c usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf5a3f453 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xff716430 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x2160af92 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x69927418 vxlan_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0191a769 i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1979d4cc i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1a975b66 i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1e7f9d54 i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x234477c5 i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x24febf7d i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x591c94ba i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x6486e12e i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x6bee9a10 i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x701a603c i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x75e33084 i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x7a71600d i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x9bcb8d5c i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa34b58a6 i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb0eec953 i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc56b5a3c i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x636cbdeb cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x7e69f091 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x8b024d85 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xa5f2d784 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x3ed34b84 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x6abab4f2 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x8472a204 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x9450aa96 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x9f704c79 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xc065e4bf il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x002b2e74 iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0d556623 iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0f48dcb7 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x12041151 iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x124749c7 iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2c6d2f40 iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2f0d07fa __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2f330453 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3c74af6a iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4afce436 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x6ceb625c iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x6dd123cf iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x6f4ed91c iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x6fd351ae iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x74c5d47a __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8a2a2f1a __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8becbf89 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x906cfabf iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc60bebe0 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc67c31ed iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xcab3282f iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xcb6589e0 iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xcc90708a iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd9357464 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe0d3442b iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf5aea4a7 iwl_notification_wait_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf68b9cce iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf8298821 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf948354a iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf95c2483 iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf97bdf2d iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x0185f941 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x05321494 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x09999117 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x0bc53546 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x1e7e2b1f lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x2bcdb2e6 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x312b72a4 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x646cab76 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x971890d1 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa42d386b lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb10fd90b lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc403ce48 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xce9e2568 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xd8292634 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xee4bad34 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf91e87a5 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x015b54ec lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x02ed11d4 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x1efff6d3 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x2c056d51 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x792a7a81 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x95bb0e87 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xda1a19d3 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xe5d617c5 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x14eabb38 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2cffa12c mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x34217b4b mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x35c60589 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x3bbc1c7d mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x3c0f3113 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x72dc2b38 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8a221ed1 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8c392a91 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb57159d7 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb5ee8cf2 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc1b89d60 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xd2c8f526 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xd5c3a0a2 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xdfcec450 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xe0232809 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xe2ba7dc0 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xeeece196 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xfe7a110c mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x20ca8740 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x36dbd93f p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x39a74518 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x4cf53106 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x4d6cf3c1 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x63d6ec33 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x71793d34 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xb2b9841c p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xe84771a0 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1cc2b02c dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x351e59f9 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x74ab97f9 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd536029d rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x06bbf6b9 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x077cf7ea rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x19fe8871 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x20280c60 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2f0c1a7a rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x330ca159 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x332e5a26 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x384f38aa rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x39f624de rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x540b14d0 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x60bda7c4 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6154b8b7 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x665f8db9 rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6b5d7dcd rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x704a8f9e rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x734b64bc rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x764131ee rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7db527b1 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8f0cea04 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9c6c3a24 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbca880dd rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbe2af881 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd8729a05 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xec8a6491 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf27a4fb2 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf7acff2d rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfcab938f rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x03a01d5b rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0c9bd796 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d0b6636 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x108829e7 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x43225389 rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4b2b7677 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4be60c4b rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e5b4a4a rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x643d26c8 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x677268d3 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x72b251e0 rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x818233e8 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8922cad1 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ef92c0a rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x959d501b rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x99373873 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xadc3c2ba rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb2dafab8 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbdc02683 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe6838f3e read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x14db75ba rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x16fa507b rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x23d5372d rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xf83d8c93 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x02f33992 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0a5cce2c rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1364f660 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x14d7914c rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1745d635 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1ac89d12 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x260f6c47 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x31074dba rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x32984656 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3b33e790 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x41f1f55a rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4441fd04 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x56f36de8 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5f99cbfa rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x658f6643 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6b05a77b rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7d0943a2 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7e669156 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7f0e75ca rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8cdf7450 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x98e14fd0 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9cd7e74c rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa907fdea rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa9d86ecb rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb178410e rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb75ca269 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb82c94a2 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbb7f6056 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc7907370 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcf103a44 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xda68d08f rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe256642e rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe82e107c rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe9013640 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf3b50ee9 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf6bbf978 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf97203a2 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfda9d92d rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x02ccd828 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x16234a6d rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x1bbdbe03 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x26c61a20 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x3b02c42f rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x7e163872 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x8b632754 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x8e40a739 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xd96aecba rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe156677a rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xeac66a7e rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xf0a79821 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xfd4a5fc2 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x033d9f28 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x05dd4a5a rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0733a7ee rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0c2731e3 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1785d100 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1dd539f1 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1ef38a18 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1f092bd8 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x28d82a31 rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2abff4f7 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2df6e7f5 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2f294204 rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x349d32d8 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x359ad914 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x36aefed7 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x43a19249 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x44fab946 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4c2ce4b7 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4c3d97b0 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x52b971fa rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x54d540d8 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5a5e1eda rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5ab35ab4 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5fc87429 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x60098d49 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x66837830 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6734d08c rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6ac8cba5 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6e4ebe10 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6fb78a4e rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x71a3250c rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x741521ab rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x77446da1 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7b473c29 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7bbc15a3 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8bdec5c6 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x973e4a83 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x99b1951f rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9bd6e3f5 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xaa307add rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc0fd85b0 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd71216c7 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd7aeb16d rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf6b9139e rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf6e624f2 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfe2eb6a8 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x05267edb rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x3940cbfe rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x3ac4e736 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x4a4de4bd rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x4ff36d6d rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x0b538954 rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x5349e8fb rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x551215e2 rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xacf822c2 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x16593a1d rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x339aa22f rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x377246b7 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x3b9f266a rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x44db37d7 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x67bdd632 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x6f2c787b rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x7183abcf rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x72cb7e2e rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x8b13d474 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xba3c4de0 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xbab95c8b rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd62e92db rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe398f030 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf6bbf6b6 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf78ec26c rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x0bf06243 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xbceeb66a wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xf52ca801 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x00c3e22d wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x091c2f68 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0fc7d65d wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x12ea7173 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x142b99b1 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x194bf52b wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1acf673a wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x278c24e3 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x31b1cea8 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x36c0775a wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4274b670 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x443463c6 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4871122c wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4efd1a40 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4f1e38ec wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5e1507a4 wl1271_ps_elp_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x67a6bcfe wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x67eb877a wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6df6f340 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x75eb301d wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7bd9ed00 wl1271_ps_elp_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7c95439c wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x81e6f583 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8552fbd8 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x86461f16 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x89abff22 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8eeeb844 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91c8f183 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91da5146 wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x96d2e92e wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x970f4f42 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa0cc2aef wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa8142f82 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb2ddb151 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb3ca7265 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb8cddd86 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbe57681b wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc3d03c2c wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd12478f5 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd2622a88 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd327824f wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd7ddcbcf wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe62f3f85 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe93244ab wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfe74a64c wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x4f0290d9 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x897c9b53 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x9bdcb8ae nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xc5713955 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x03777999 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x20a51be6 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x3e2b1a00 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x742d502f st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x8d3e3083 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x9ae24bee st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xadcb6d79 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xd91eb59a st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x094a1832 ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x7e9224c5 ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xcd19b5a1 ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x03ab4c92 devm_nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x0a531db5 nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x0de5bd06 of_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x36ec8a8a nvmem_device_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x68758fda nvmem_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xb1e962a1 devm_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xbf0f9caf devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc2edb3f1 nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc96fb674 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xd9788966 nvmem_register +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe18960ba nvmem_device_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe250f913 of_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe9a7fe16 nvmem_cell_read +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x191d027d pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x52891427 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x7990163f pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x15d534df mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x82ab4b58 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xa0dafac4 mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xbcc54d48 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xf000f095 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x66a73efe wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x6f72a5c5 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x7dc4df33 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xbc581c42 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xea801e27 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xeb4d79ff wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x7d786b7f wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x064de1f4 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x07373bf8 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0990942e cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0b92d58f cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0f5069b1 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x14fc09a4 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x18bddc62 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1a2e17fc cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x251734aa cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2c848e0d cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2cecfc89 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x47be2b48 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x58d1b3f2 cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5aff0a49 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5bd38613 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6d1b3429 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6e79a8f3 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7411e7ae cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x78fc11fa cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x79d91d9b cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7e5b8813 cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x84e14953 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x873d72df cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8f6dde16 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x93559fd7 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x96930c64 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9873dde5 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9c8a1ab6 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa534d243 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaf3c35de cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb8d2b4d6 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbe2af7c6 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc0421953 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc4f41321 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd1a0593b cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd1a8f127 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe2ebe416 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe4420853 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe618223e cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xea7f7c7f cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xed5ae9cc cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf0f02096 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf2e4dbb4 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf42bdf10 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf5906d36 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf7d8c6f7 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x098e1741 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0cd485a2 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x19339eb4 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x25878177 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x51c60b11 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x76b6ad55 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9c91a085 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9cddedbc fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9f9f02c5 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa4f7a07d fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa5ca2e09 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb6e482c0 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd40ce817 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe032d0c0 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe0fdf14a __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe895b9ba fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x344c8bab iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x836aa08a iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x920e74aa iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xa05431be iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc2de42f0 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe16847c4 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x064aed01 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0844ef28 iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0b120d76 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x13a79b91 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1849d960 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1cb50b25 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1e153fdb iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1eb64bac iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x22ffe130 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2472af16 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x26ba718a iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x29d9394c iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2a4fa0ff iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4a40f765 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4d0030e9 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5b7fffbe iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5f7a3df7 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6266f014 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6b8eed41 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7308b41d iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7bda81f8 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7e314df4 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7e7f00a7 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x837c3fae iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x95c62dae iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9b29d25b iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa912598d iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa963ae8b iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb3e465d7 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbe63a9fd __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc40a784d __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc749c1d3 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd93cb5bd iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdd969687 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe0fd8c00 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeda97498 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xee1f07a5 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xefdec00b iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf56d9458 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf8ae992f iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfd88cc76 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfe2a5013 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x10ff2d63 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x213f6975 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x21febd66 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3ee2cdc5 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x55f6939c iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x64da90f2 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x65b8ba1d iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7ddec794 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x88e2d1f8 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9288e31a iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x93576a56 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x96d3c4b5 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x97745fa7 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xace3dfd9 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc81ffa99 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdaa5c0b6 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xebdbb6d1 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x068276ce sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x126b9da8 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2077d00f sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2681fca0 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2a199086 sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x43833d78 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x51a922e2 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5533218a sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x64c2db0d sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x70f7b085 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x73e5ff60 sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x85adc840 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8c283423 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x91e84830 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9a530847 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc11f5d50 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xca5b9358 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd112fe2d sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd89da89b sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf0bf6d95 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf2d55375 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf97cf2f5 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xff0903c4 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xff4c9ea0 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0a411d40 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1ac47883 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1b434743 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x209caa2e iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x26718e8c iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x335796cc iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3437adb5 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x38aaade4 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3c04a53e iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3c7eabe5 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x46f178e8 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4bbd05a3 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x518534c2 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x551d63fd iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6175f734 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x61ee519a iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6ab9df5b iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x750158e8 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fc4a3f0 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8098b8a7 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x890afbda iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x94251b70 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x969cfd1c iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x97e1d7b4 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa406be6b iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa90a0f28 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xac54fcea iscsi_is_flashnode_conn_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb03a8785 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc32c7fff iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc7ac9736 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcdfef018 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd19dc58c iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd2b83af1 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4cc858d iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd88946af iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd8a690fe iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe2880ba0 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf037b4cb iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf154abfc iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfc72c79a iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x235e81c7 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x6163aa45 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x79b462f1 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xc6ad232a sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x8023a4c1 spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1e9a128e srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x31cf3d08 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x5ad43bff srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x5fadbc11 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x68b90a7f srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xcaee7948 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x02c6d7c6 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x284095bd ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x2bcc7f02 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x7756d0cc ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x8aa55a02 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xb543ae32 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xd2fd41a2 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x54be2775 ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x598fd56b ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x6d112429 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x841fa279 ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xd88782f3 ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xdf203e22 ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xf8e783e9 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x1c10b7f1 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x252a24e0 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x32279ed4 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x69e96c53 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xfd1f299f spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x44c2da04 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x53615356 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x99cef505 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xaad9f751 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x039bd53f spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x502dd9e2 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5233c406 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x57a203a4 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5a38d2d8 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x64872558 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6ff4b9b1 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7a0db7ac spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8db5b787 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9f0b3c1c spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xadb4a812 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb385f52f spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc39ab384 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc96c4552 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcf19d19c spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd02d28a1 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xea5869be spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf51ea89e __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xef169ef5 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0d69fef9 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x160ff058 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x39abfc37 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3a98892c comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x42eca2f5 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x47b3d001 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x50c875b0 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x596c930c comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x64d06d73 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x68ba1340 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x86bdb591 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8a617452 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x965a577a comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9f9005b3 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa4b9dda3 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xaacb7d89 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xabdb406f __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb3faf9ba comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb59a70ff comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb797a884 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb921e101 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb63acb1 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbc7f3d4f comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc3b913bb comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc5368726 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd10b5552 comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd33f46db comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd621825d comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe027480f comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe03a26d8 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xee4c9758 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xee6c48ac comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf0d8c7c9 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf282bfdd comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf61cbc04 comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x20617869 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x2def1c17 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x3cb89bb8 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xbd54010d comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xcd35a458 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xe66bd7d1 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xea3d3838 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xfe84c779 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x151f3de1 comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x335e374c comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x562ac7ce comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x893f6247 comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x949dd347 comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xb2bac4f2 comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xcbf03014 comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x19c53329 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x2d8478c8 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xcb63588f comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xddc073a1 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xfbdcd99e comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xffe4f667 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0xf22784da addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x0b97ae95 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x568de563 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0xe9715967 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x0102e65d comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x07e8996a comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x10c0a52d comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x272f5147 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x2c4e6305 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x2ef19fbe comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x46cb71d5 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6bf6d319 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x76933dc3 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x7ef64a85 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x91b13d0a comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xa82bfc32 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xecd60650 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x8957615d subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x9900bddf subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xa7aa7862 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x0ab7ffd8 comedi_isadma_poll +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x3789f086 comedi_isadma_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x7040990c comedi_isadma_program +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x7a458207 comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa228e27e comedi_isadma_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0xed7117b5 das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0025f9b7 mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0a4b8d37 mite_get_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x24169c6b mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x242c1b86 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x27328a5f mite_dma_tcr +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x45a51804 mite_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6c770f96 mite_setup2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x868e110a mite_sync_input_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x985c7abb mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9ebf9705 mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9f19dbde mite_sync_output_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xbeaa744e mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xbed16d24 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc209a05b mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc442bf5a mite_bytes_read_from_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc9dda3fa mite_bytes_read_from_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd32a3f20 mite_bytes_written_to_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xdeb52380 mite_bytes_written_to_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xef65ef28 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf44b06e9 mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf8c71c6d mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x5ac81757 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xe5662149 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x5a445af7 labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x7baa7df7 labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x87d1ec7b labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x8dfdfd45 labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x94df3c42 labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x0a5b03ef ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x35348ba4 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x656142a7 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x8156c048 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xaa49eef6 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xab4f47ae ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xb39fd175 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xcaa20d7e ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x24389c58 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x2d2b87b5 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x40f88e2c ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x9ae8685d ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xa4cf75a7 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xd92f453e ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x3bdf5c32 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x51d57776 comedi_close +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x5ee66a19 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x6dd0a0a7 comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x78af2b74 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x9add504a comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xf6f71df0 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x5e8d6fbd adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x176f453f most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x1975c345 most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x21486f86 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x46d27fe1 most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x4d9b39a0 most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x546a1eab channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x7a2fcd3b most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x94843bad most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xa204a533 most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xb7ca50b2 most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xb97108e9 most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xf788f099 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0df35342 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0ef1d765 speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x128423d7 synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x27c3c84b spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x3023c21b synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x3519f9c2 spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x5f82d1e5 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x65f27caf spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x99f6fc04 spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb35aaab9 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb4f1d892 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbe6a88a0 spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x184c1a8f uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x2238c6ae __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x7139ebcb uio_unregister_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x6bcc5ee0 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x6ed8b40a usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x56645c62 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x5e2490e9 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x31f6fd04 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x380f6bf7 imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xf4faa12f imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x2abe152b ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x2c964e00 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x373f28d0 ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x3ead16b9 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x52e97e63 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc6b0780f ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x064e7ce4 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3e365f01 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4e12e6c1 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x56670fa2 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x597b5ffc gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5fb4171f gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7bfd7512 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x86067455 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8bf3ff41 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8dd4c9e9 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb0899652 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xca176829 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd48dd944 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf397fd40 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfd354f37 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x692041fb gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x8cb70cf7 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe6c01343 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xfb39f842 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x178e08b7 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x5de90360 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xd7acf8ab ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x17253077 fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x38f9eb49 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3dd2dd69 fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x43db8b39 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x460c315f fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5255b366 fsg_common_create_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x559eac15 fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56d0cab4 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6b6df5d5 fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7a77a1a2 fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa4630a26 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb946e341 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xbdbdee01 fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc29fcb39 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xdb9488f6 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xdc854b5a fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf74e6dfe fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x07131e7c rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0d5c1d2a rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0d5e8abe rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x339d9580 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3ec263ca rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3f8f5a3a rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x48f79420 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x62102b70 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x699f5a2d rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7371e849 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9efdd6b9 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbb060cc3 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc06b37fb rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd5d85384 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xde399053 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0366a17a usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x06760efc usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1c1b9de7 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x28898624 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x354c9595 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3d3c53e6 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x475cdd94 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5401fe98 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x58bc90de usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x69c87599 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x746f7d1f usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x79de03eb usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8081455a usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x80a62eb4 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8634ce02 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8e13d687 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8f856728 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9cce3751 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa220f976 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa87ecafe usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbb0564f7 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbe98bf3a usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc17e0a42 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc8c96bed usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcca0947c usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcedc9212 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe3a52516 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe4722cbe usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xee5893ea usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xee91b561 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf448adad usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xff44323a usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x33ffa769 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3a44a75c usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x91cc2399 usb_udc_attach_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9816a5ef usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9e71542d usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa2baca3d usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc58d42fd usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc5df9f15 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd681a380 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdc6499e9 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe1ac8da3 usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe5a7413f usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xec8d3b6a usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf30f50a9 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x212ec26b ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x6d43a45e ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2b2731e5 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x356ebc96 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x47768888 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5a0e31af usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7400f582 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x898d901d usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa338b59c usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xbaaadf0d usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xea008951 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x170e180c musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xf1471fbc isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x7d0c1a25 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0223e8cd usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1b71fd27 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1ce3afa2 usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x213e4cd7 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x29f44a5b usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2f4d8009 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x33355e9c usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5113fcf4 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x59ebbbb5 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x69e69bca usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x72ce4979 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7d34505c usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8d91f4b5 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x90b42bca usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9b8408b1 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa1e416ee usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb4fde177 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb9650288 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xcd27f649 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe74c684e usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfd7546ec usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x038ec5ff usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x03defc9a usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x22c40e9a usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x39bced9f usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3b243a09 usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x401f9155 usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x51dd86f1 usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x582344d7 usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6274d659 usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6f3d8195 usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7956cf0e usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x80ac7bf5 usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8f5c724f usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xaa5cda93 usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb672786b usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbbdaaa30 usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc0656b8d usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc0767bb9 usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc9faeeb3 usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd3850166 usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd52cd7a3 usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xdbab3e24 usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xed8d5bcf usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf51fe777 fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0313f5f8 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1c5ce39a usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x221434b5 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x30483ce7 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8ad483dc usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8d74b79b usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x91557f74 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x97a98130 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa31a04f5 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb8afbdcc usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe3d9c46a usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xed07750d usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x1b7ac2bc wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x2614c7e0 wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x293441c9 rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x561cd543 wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xa618017a __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xb7e61171 wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc543b60e wa_process_errored_transfers_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xd53fadcf rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf4654c3f wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x37f51c34 wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3fbf1133 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x476fd17e wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4cfaf8d6 wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4dcbc30b wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x828be957 wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x93868cce __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9ce5f14d wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xaf51bafa wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xc0d02907 wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd0095693 wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe932ffe3 wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf10b5dd5 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfc4f0308 wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x1a518bb4 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x78cc600c i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x7e5f9aa8 i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x03e2b202 umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x09860eda umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x12fa27a5 umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x61010bfa __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x7fd84f31 umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xb893f126 umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xc40d58f6 umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xe3ca9123 umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x048c3729 uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x091e440e uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0a7039d2 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0ac2ea2b uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b8aad57 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x11030b56 uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x21b93c28 uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2983399b uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x347e50df uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3916d823 uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3cb7f1ca uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x41d3989e uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4a1cc3df uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x59b4e4ab uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x61ccc67a uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x64ee820f uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x684e4e49 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x737e17ea uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7c718522 uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dcfcd23 uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x80f4261d __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x85fb7658 uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x88b3575a uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x90d5cedd uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x93d118f6 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa1666136 uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa415bb2b uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa7e8e4a6 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa817d17e uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb28042ab uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb5afb2a4 uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xba4ee6bc uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xca81fc2c uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd0209f62 uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xda7fd552 uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe14b53a9 uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe256fea4 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe9c21bb1 uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf03bb036 uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/whci 0xd4390fe0 whci_wait_for +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x08434497 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0cb9794b vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0e06affe vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x157a43a5 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2a069562 vhost_init_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2aac62d3 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3c489fcd vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3e156eba vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x44a2bff3 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x44a37390 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4f24473c vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x580af781 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x663bd3b2 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6cfc6e1d vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x74a11fe9 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x798c31d0 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8d0be03d vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x94b0a0a3 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9ae61183 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa365aee5 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa65e3cde vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xad54c8ee vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb0f81e37 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbc405a13 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd2c84fac vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdd2ef8cb vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xddd4a584 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe4726153 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xee94bf48 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf4b9e5dd vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x1ba28bcf ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x202113a0 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x5a4f01bc ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa2a9e003 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xaa1d3230 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xeeaa0cb3 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xf570a0de ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x1c2a1e06 auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x1f99b13b auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x25be8a63 auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x3ea8ed44 auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x4c4cc19a auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x58f94eb5 auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x629bb7af auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x6b5d7b14 auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xd86d3331 auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xeea8448f auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x81f6f064 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x94682cca fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x9e54344f fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x1d1fd5b8 sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x2a34f714 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x01b1728e w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x0f7c3a48 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x29fe5b4b w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x2f0639ae w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x31d7cdfe w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x3311eda8 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x58aab2af w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xe60acccc w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0xe8dc421d w1_next_pullup +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x557e0f6e dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x7dc1ffeb dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x84762201 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x37aed838 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x66dbda44 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7742b79a nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9fb4fa8b nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa4019b86 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa5afdbaa nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xae17cfc7 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x004b588d nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00ea3847 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x035cb8f4 nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04d90625 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0529550f nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05813a87 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0726e388 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x079a8921 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08518dc0 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x105a314f nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x149815fb nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x160d49ef nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x167a2138 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1729989d nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x182ea210 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ad38bc6 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d22cf1b nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f4ef98f nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26efb6d1 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x296b0ff5 nfs_file_fsync_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c337742 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cac7340 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f9ae066 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3000458a nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x368d4f1f nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ae79462 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b18a5a8 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42ff8795 nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45f2fbb5 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47a15942 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x484196dd nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x484b0b3e nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a6c6095 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ba6c596 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb75915 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x515faad1 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5649a726 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58dfb7a9 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ac5b054 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c06e049 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5fafe3fa nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x611a7297 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x636e511c nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66b7f6e3 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66c618f3 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67183f90 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x693dd9e6 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69dba60e nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71ef7617 nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71f9727e nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7776bcd8 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a7a8ceb nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b200e9f nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e700cde nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f1f6f9d nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f25a2b6 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fa6314b nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fad8622 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fc85f5e nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82ef71f2 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83a0240f unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8896d4c2 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90273d14 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9230fd60 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93202ba6 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9469b89c nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x94b7dc99 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96057114 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x996bb12a nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c44232c nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d4b57bc nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f6e2204 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa131327b nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa48bc21b nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa631d376 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa67d75bd nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa81effc2 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa14361 nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xadddfc53 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae69aa01 nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0af7871 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5a80049 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb86f6b23 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbbe15854 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcf071ae nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbdc894a4 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe41a180 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbffb0580 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0c2fdab nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc36b767b nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4d4d176 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4e17142 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc64b1ed8 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7f304de nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8556a20 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcaef1b41 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcdb8545d nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd16bd73a nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2048660 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3428452 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd546c95a nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7028c2f nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc798d49 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdcb98f0b nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xddbec7f5 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xddda10bc nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde989d43 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe13f13d8 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6748c7b nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe88ef1d7 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeac049c6 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb887b92 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb89175e nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xedf61583 nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee1c6e01 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef64e1a2 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf173cd39 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1bc00b2 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7f556e2 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9c3cf28 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfcf5bc02 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd2092ba nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd663828 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfda59ba0 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe48a5d2 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x5c4cc2dc nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x032cccc6 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x04513ce7 pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0edadd08 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x14a9fed9 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x157394da nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x163f1512 _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x179b6e8e pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x19936836 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1b33b493 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1cf8efc0 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x327cfb26 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36f1b74d nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x372c5439 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x38d0628e pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3f478f8c nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x41c41587 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x42beef63 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x44260b89 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4754096a nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48cddcb6 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4a6c6ee8 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x525bd9e9 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x549b5e20 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ac0bb1f nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5edd7f84 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x61017fbb nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x64d0de3b nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x668767fc nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x68d378ef pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6ce48180 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6dc75774 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x72760ed5 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x750435c9 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x75b5fdfe pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7859c122 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x794dbfc0 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e8fb310 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x81bde26f nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8e723a90 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x90c5672d nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x92636b52 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9cd86eab nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa26e0d82 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa7796d0c pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb196ba88 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb34788ea pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb38c4486 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb7317a7c nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb7ba54a3 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb8388456 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb97ec95d nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbda2275c nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc2dbb93d nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd43b2e2e pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd576bffd __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd6fe05a nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xde67ee91 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdfaeead6 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe3e53d45 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf77f0c2d nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf8e77568 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x5ef20fc1 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x7a20ed02 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xbc61e83b opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x36fc451d nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x906b87c1 nfsacl_decode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0dc442dd o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1962d922 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1cb231d0 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x42373c79 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4c1f834c o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x53d5ec66 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x988995e8 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa9f5379a o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xefbcd5c4 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x52a4aa69 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x536486f7 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x6342d1fa dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x73494b52 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x83266054 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xf6d51b41 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x2b51fe37 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd63651bf ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe06f1460 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x298cff2b torture_shuffle_task_register +EXPORT_SYMBOL_GPL kernel/torture 0x3b12b8b8 _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb +EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random +EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait +EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop +EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end +EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin +EXPORT_SYMBOL_GPL kernel/torture 0xd4f6a6d0 _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress +EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch +EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch +EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch +EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x6feb145f notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xffeac87b notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x021957e1 raid6_datap_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x0f8a2742 raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xd4cb6873 raid6_call +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x201d8ea3 encode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x29fa419f decode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x57861324 base_inv_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x57d39367 base_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x882ce5fc base_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x9e0112d0 base_inv_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xaedfbb15 base_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xc8fca8a6 base_inv_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xd11741a1 base_inv_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xe3d900b5 base_old_false_key +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xea82f1e0 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xf4a7b874 lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x05976c4c garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x590911e3 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x983cfaa3 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x9d3a8301 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xd2aade93 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xf9109256 garp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x04586d19 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x17bf5550 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x1a2aef93 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x51326f4b mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xaa8a2ec8 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xe4c6c7da mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/stp 0x3e79e382 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0x6d16d77c stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x463a1810 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0x5b3c63ac p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier +EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier +EXPORT_SYMBOL_GPL net/ax25/ax25 0x7b08656e ax25_register_pid +EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast +EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x194b4047 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x23f5df80 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x442671fa l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x4f49113d l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7fd6b0a9 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xac32c1d1 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe573f396 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe7ffc025 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x304607a4 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x40f8f4e1 br_deliver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x45d27463 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5f0a28a1 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x661f0946 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6ed9dbe9 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x953593af br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9ad4f314 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x34288db2 nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x4da9247f nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0661e07e dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0f6c66e9 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x139eac39 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x180292b1 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x199dbe8f dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1bd8963d dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x210947e2 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x22cb087b dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2e0838e4 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x35e51350 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3cfd7b05 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3dd70b8e dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x46493085 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x47310a23 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4fed39f5 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6fd1ceac dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x725a2ec7 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x773b56d7 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fa35758 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x91e2d518 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa0dc86d3 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaa98ef3b inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc0b7b890 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc34b3955 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc6bbbf67 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc751dea0 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc8bb8255 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd4af966d dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd502fceb dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe64e9b6f dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0xec1deb6b dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xee9bb5e9 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf10ed438 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfc739f95 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x12111b1c dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x3bdbef13 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x99dc72b5 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xbc7bf5de dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xec839ec6 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf36b7cfc dccp_v4_connect +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x0479c70c ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x123ebda5 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xad95dd77 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd58dfa29 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xf05acfbe ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ipv4/gre 0x199a59ac gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xf4e96905 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3715a260 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x69c45962 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xac3b1d13 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xcd88ed9d inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd5837910 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xecdabb48 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xe46664c0 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0d45f4a2 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x32d30ce8 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x52bf4f06 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x59d5795c ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5a0bc8fe ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7a04a028 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x95494e6d ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9ddbfa4c ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xace2d35b ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb6ca9c8d ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbc9ac006 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc3335fee ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd1d2cdb8 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd501faa2 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xeb25f93a ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xe836af81 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xd5e4c31c ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xf686608c nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x2c21de7b nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x533d6c25 nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xb7f8c0e8 nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xc5596e0f nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xf4fc0057 nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x4245122b nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x0b5b14ab nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3837f5f8 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x5b8ee9ef nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6a590d6b nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x7c7ad21a nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x403f47bf nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x0d170102 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x14ab102f tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x32931a99 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa56f4891 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc18b56e8 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x53e574cf udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb8c24e76 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xce6c8e2a udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xfe3fe177 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x2029aea1 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x2bee1bec ip6_tnl_dst_set +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x690d4c12 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x7f981c2d ip6_tnl_dst_destroy +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x94f4a6bd ip6_tnl_dst_reset +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x9e49b0a9 ip6_tnl_dst_init +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xfbc22a3e ip6_tnl_dst_get +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x6067101f udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xeddd2eec udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xbd496fd5 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x388e04cd nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x763b78fe nf_ct_frag6_consume_orig +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xde43e10b nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x2281621e nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x7adef029 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xb4f46dab nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xca29128f nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xf9b7de50 nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x191335f5 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x2cb6c2ab nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x367f437b nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x90cfba5e nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb294bfd0 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd3093048 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x91c2ef5c nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x14bc6b03 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x182d67b2 l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x30524b2e l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3ec9fb09 __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x45201e2f l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6bddb011 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x83fb5f5a l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x868f07a3 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9802a539 l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xac523e93 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xadc0493d l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbbda0be6 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd7fd0a02 l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdc6a088a l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf752db79 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf809b468 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x84ea7b1a l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0a034d89 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x26af235e ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2a81b412 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x301516f5 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4fc8e41d ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x59333157 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5af78a4d ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x62b8cbe7 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8233c6f1 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa5d47047 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xad0efcfd ieee80211_set_key_tx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb6632ea6 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcabed2eb ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd295d52c ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd4b3aff4 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd6cb9939 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xeb80a705 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf9fa191d ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x0e65b33b mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x5de66b1f nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe98606a9 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf6b240c5 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0d56bbfd ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0fe4548e ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x18f41d60 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x253d1505 ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2fde1c00 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3f69e1e7 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x44ddd5fe ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x52d8009a ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x672f2de3 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x74436392 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7b8af055 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8e106cc8 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8fafe0fd ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9470c5ea ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf0ed8723 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf900fdd9 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x0fbe441b register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x68690450 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x9a72fe23 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xd807f943 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x009465cf nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x023b3cef nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0493bc99 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x09e3940b __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0b2c6fde nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0fd8dfeb nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15b2f825 nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x168915bd nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x19391f4e nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1b18e623 nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ed9e2aa nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f944aa1 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ff93e6d nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x22c9f1c4 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x22efc886 nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x23ffe544 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x24bf773f nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x292e84a1 nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2c164269 nf_connlabel_match +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2db65b59 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2dff8130 nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2f71ca2d nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2f8bf89b nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x315ac50b nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x317936d5 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x351a724c nf_connlabel_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x35ae0cd8 nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x35c1b31b nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b07f74c nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d755b6c nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3e396caa nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44f2b7b5 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47a79a57 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x496b0f69 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x50c8bdfe nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x52e4754c nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5bc5b793 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5ed88e44 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x652aca9e nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6c8252e7 nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7205e1c2 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78c82629 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ca89fbe nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7cb5c1ba nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8257c509 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x83d60f66 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x861cf7ac nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x86fbec88 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x889a5b65 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a66c4fc nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x906d15db nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x92dd45c4 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9485b1df __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c9ecd18 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9fe07178 __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa20cf617 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa46aa143 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa706d192 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa8e3d251 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa9c871a6 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb47ba726 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc023bb03 nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc0988246 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc44e1b6e nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc4b14178 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc6dac098 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc77d838a __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3462cf4 nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd46031eb nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd4d98039 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd6d4d140 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xde2e64b6 nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe36a13b4 nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeab9cb0c __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf00a3b98 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf648ba26 nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf65e295c nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa883de6 seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfbd14637 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff40b965 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x1720eb3c nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x24ac212c nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x2365a416 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x26f1a0c5 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x344fe118 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3b7b45dc set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x663a01b0 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6cdb6b27 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7e34ab4a nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc86a1472 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xdec76521 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf4f0d9ac set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xfa5464ae nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x3f08ebce nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x36d977f8 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x4b1b1d6b nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xb73e778e nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xe94f524b nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x8f099adc nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xb4d26e81 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2713958f ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x33d7ad05 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5816b31c ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x6cd47d02 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8d939d00 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb1443373 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc9006d5b ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xb63d2a43 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x610ab0b8 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x04beb8b9 nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x5156ec5e nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x9d4f37b3 nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xc6f33d99 nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x20a97015 nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x27baa391 nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3949aeca nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x401be17a nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6ab9d561 __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb31cb2ab nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd76a831b nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe0fc7906 nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf83d0249 nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x1217c1a2 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x81828f0a nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5f339439 synproxy_build_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8d311c38 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf660808e synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c988ce nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x15d143a9 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x262c665e nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x29740e35 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x35cdc3a3 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3960f117 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3c01ae57 nft_unregister_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x408905cc nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x95fb2c79 nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb1f2bcf7 nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd1c3e4ec nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd83ed4f8 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed5a39ae nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xee052bff nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xee1ee892 nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf5222690 nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfff15ad1 nft_register_basechain +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x355f5e19 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x49b8d55c nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x4bed9e64 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc9dfec97 nfnetlink_alloc_skb +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xcdc6d87a nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe8e348d8 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xfd7e01e2 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x2658b27c nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x3d56c3fc nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xcb889f16 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x011c0d0f nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x1f466c34 nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xd101d736 nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xd1d5a236 nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x3466a8ef nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x4fa7fccb nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x845032b9 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xa94b2d94 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xd2a5a3ab nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xd6c717a3 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x543b5e83 nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x59ce00e0 nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xeb9d233f nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x7181206d nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xc94746ed nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x043aa047 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1971ac15 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x23664290 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x31c6adb6 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x337fe9c7 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x43cb7650 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4b0fe8fe xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x68ef7100 xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x85f83c56 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8ae62bb0 xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x909a49f3 xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x90a48c6c xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc8cb7766 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe75fc9ce xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x00204983 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x482b6a12 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x05b03587 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x4c4e3b46 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x62ac436d nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x66bf954c nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x6e19cecc nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xc29f9c8a nci_uart_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1b36fcd1 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x400d5efd ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x487206ca ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7b27a6fb ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9b56a402 ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xebd3566b ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xeca6dd8a __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf6673015 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xfc67b218 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x071858e0 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x0e9d6f31 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x227ca31c rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x3624b890 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x3bcf1147 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x412f375d rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x4622b59b rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x4c5dc4f9 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x56291506 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x5d43d924 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x6ac3863a rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x6e1b825e rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x7d2fec21 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x84068777 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x8f68d5c4 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x9a19919e rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x9de7a49b rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xa4388430 rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0xa7a77eaa rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xac7411e1 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xbc0ae2c6 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xd4bff02a rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xeaa858a6 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0xf1e110db rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0xffd0cb7b rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x7ac1fae4 rxrpc_unregister_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x8c90abc9 rxrpc_register_security +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x25847552 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x51a29677 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x51da5a34 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00655283 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x014184f1 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03229a6d rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x032837ce cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0395e2cb xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06bc6376 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x083dcf2a svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x098675d7 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a6e29be xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0aae2f2d svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c2d8f16 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c7a82c3 cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ce2e141 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d9860b9 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0da06165 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ec34a4c xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x107c2811 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x112fe11f rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x115d9c72 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12aa2b96 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13b41738 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x148d8681 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16e06ecc xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x177c01ec rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x184e317b svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18bc9a17 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x198d9a80 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bd2baed svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cb4aeb5 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cba063b rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1dbba9d3 rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ddd3370 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2eae2b xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21baa7c1 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21d9bf04 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2277efdd svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22b6700c svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24377f2d rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x247bb3e3 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24871b8f rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25a01156 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26802667 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2863d977 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2981af9d rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ebc071b cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f16d236 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3095b690 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30ca2db1 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3167f743 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32c70d70 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32f3b725 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33a1cab2 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a10a237 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d139c05 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d4af0a5 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e24363d auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fec6a59 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4326cf98 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43f00f80 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44a216be rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x468891fc put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46b1c2b1 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49ebbef9 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ac9eabe xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b7b82a2 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b7ba500 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e0d91a6 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f77c191 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f92018c write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51dfcfe3 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52f53eea rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53240e55 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x561dc78d rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56722984 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x594981de xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5958b353 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a6d2192 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a981c1c rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ab80705 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ad71c9f svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b06ea1b svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c3fbbc4 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60251e64 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60633dd0 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x606f4d6e sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x625f414b xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62b3fe59 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6433beb7 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x665e28b1 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x694d194b svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x698eeacc rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c1fba02 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c6bd40c rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cf15782 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e9ded41 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7149866b rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x714e4def svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x715da0bb rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x735fdfe9 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7374c442 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x740b29ac svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x742ee5f1 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74b1073c svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x754ed40e svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7916d7b9 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a7356f2 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e138ebd rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81e8a61f xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8243ac0c rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84530c33 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ac3e1d5 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f1419a1 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f59e3c1 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x917d9745 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91e98491 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92c391c1 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b31bc9c bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9bac95c1 rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ef449af rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa091eb74 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1642dde xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa29afd8c rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa333a2cf svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3a3c438 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3e416e2 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6377265 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa951e030 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9846864 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa3f98f6 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa44c61e xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa989781 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab8413fa svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac7e141e xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae9985fc xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1151186 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb12f8137 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb27d6224 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3806a9f rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb416fedb rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5111e77 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb60416a2 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6e27311 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb95661c0 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb4621da rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc8fca16 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf2e83e7 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfc2bf42 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1b2ba21 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2055a5b xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2f0f6e7 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc329f368 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc45f5dfe xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6839282 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7841f2c rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc875fe46 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdc6e0bb cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcede4c8c rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcff879b2 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd045163a xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd05b23c2 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd29e1740 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd60d766c rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7f3c3a8 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9b41cac rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdacc4b5d sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb1835f2 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd6b720e rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0553557 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2ebf7da gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe39e3a29 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe400a167 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4ed2e72 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5a51338 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5d3e211 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe64ea3ef xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6b509ab rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe767b270 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7b95ebe read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8e5f15e xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9508a1e svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee7049a4 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeb7666f rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeece4644 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeed7f7f4 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef0c21e4 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf26c9954 rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3f7becb rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4f40765 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5e5bf9d xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6884939 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf710e4cc xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf74954fa xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf87d07d5 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf978d372 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa479b6f rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb1081b1 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb870d77 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe8ea5cc rpc_bind_new_program +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0b29901a __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x32f02015 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x46985726 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x50280e28 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x518a24c9 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x74e91915 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7b0c81c4 __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa28ac180 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb4c9e1d4 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbe949f5a vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd3d6a55c vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe58670c1 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec04cb2b vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf593c40a vsock_pending_work +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfd218a32 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/wimax/wimax 0x05d16b40 wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0x09bc6cc3 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0x246635cb wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x38de14e0 wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0x5cdb74bf wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0x789e48c7 wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x7b0e0d89 wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0xa3724cce wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0xb892ab2d wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xd5a41c55 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0xdf0b8c41 wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0xe574b13c wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0xee4b22bd wimax_msg_len +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1ca5b6dd cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x24c8c485 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x26c9dc2a cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2d5a87b9 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x46dfe53c cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4fd0e86a cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x68ef4af7 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x796cd468 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7d0d0e4a cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x83705839 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8fe873ae cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa5d031c9 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe86450ac cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x0e9bcf9d ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x9d46c552 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xb9cbb9a1 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xe8924e33 ipcomp_input +EXPORT_SYMBOL_GPL sound/ac97_bus 0x179196f3 snd_ac97_reset +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x07f3d137 aoa_fabric_unlink_codec +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x260112c7 aoa_snd_ctl_add +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x3ebdeddc pmf_gpio_methods +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x6569d21f aoa_get_card +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x6e28d5c6 aoa_codec_unregister +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x7b9a09c5 ftr_gpio_methods +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xe1e7b768 aoa_snd_device_new +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xf74c929c aoa_codec_register +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xf95b3e0c aoa_fabric_unregister +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xfb0535cd aoa_fabric_register +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x1ca7316e soundbus_unregister_driver +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x26db6f7a soundbus_register_driver +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x3dad7c97 soundbus_remove_one +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x5566b8d8 soundbus_add_one +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x6770de00 soundbus_dev_put +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0xf4ab82c8 soundbus_dev_get +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x2b847b68 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x7809cf75 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd 0x1b71c113 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0x8d468996 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0x9136f542 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x9798569d snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0xa2cd0332 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0xa6b89683 snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0xbbd9fdbf snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x1125c8dd snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x213154ac snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x257c9c17 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x3c04dca2 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x3f85e239 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4cefcb53 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa5c6cab8 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xbd4d5858 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd8479acb snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x09174f07 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x18fdfbfa snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x20cee061 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x31327b62 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5070bda2 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x524a96be snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x6da3141d snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8ddcc93e snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9c969acc snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd2a612b0 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf532479b snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x347a4303 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6891ad26 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6c723f26 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x738298b6 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe60397a0 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf637f4ca amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf8463de4 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x04a509ac snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05de6ab9 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x07bbafc5 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0be9fc1c snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0ca639f4 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0dc2a36a snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0dcf7e06 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1083f5f5 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x11291b35 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x11b140dd snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x11c38a0b snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x19b46ae1 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1a9eb326 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1bc99982 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1e2b36fe snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1e8048fc snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3025eaf5 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x373c2d8d snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x38abcc2a snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3acd3498 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3da339a9 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3e4e1a9f snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3ebc3b41 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x44fd6e64 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x45e24ca3 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4618c2a5 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4fbf5c3a snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x524d1ae8 snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x56d7cfef snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x57792a10 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x57bcf5c8 snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x59f90d11 snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5fac6985 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x61ca5ae6 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67b76738 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6eb33f40 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6ecdec23 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6ef77a0a snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6f4ec37d snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x71eac033 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x732b9aa5 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7daab2ed snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8041e812 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8621e515 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x917b281c snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9332d2a1 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x98008d4e snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa733e742 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaa7dbf66 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xac8cc7d3 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xadafc229 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xae8497a4 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb4291668 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb79587bd snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc5f9f304 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcabb9a02 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcc4682ef snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd16ec04c snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd24a52e4 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd2d50166 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd3f50e19 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd3f5a74e snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd70b7218 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdb12430d snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe06c6c29 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe85f78e8 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xea4e38d3 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xed0e08d4 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf25472f1 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf4fdba6b snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfc04ddca snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x19aa44b7 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x1de73c50 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x9cba7685 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xbc97e002 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xc41239c5 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xd93f18a3 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x022a554d snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04b774c7 snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05a54393 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x08631db6 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c48b6a6 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0d9b1f78 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0fcb60ef snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x132f9767 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1407af3c snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x14aa7bdf snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1678ce90 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x175e61a8 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18cac919 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18d1613b snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c4d6d7f snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e9d270e snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1fd70f4e snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x247af6fb azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x26de33dc snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x28341ea1 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ae4b718 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d1dceaf snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d5c707d azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d80502f snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d9e6ab4 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2fb95697 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30273242 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x31cf0aee snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x343970c9 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34c5d2cd snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34f5465b snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x364596ff snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3cffe349 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d2cfee8 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e2cc43a snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f17d3a8 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43e8c24d snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46466f60 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4aab4ff1 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4dc346e3 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e451337 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4fe7a86e snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x502cec8b snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x51883a12 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x51bc120d snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52d4b2e9 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5350421e hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5388128c snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x56c8a6a7 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x56ce32c5 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x56ff3042 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x578057d1 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x588a717a snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c349fdb azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5cb3a937 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5cdc6ffa snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5ebc572d snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f654d7e hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x68eff341 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a2b35d4 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f4f8066 snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70a2620f snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72089d4a snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x738163f9 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x739d75ce snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b400fd3 snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x82b50250 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x844907ae snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x85a28b67 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x866accc3 snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86cf05eb azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x892d91ef azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a519951 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8cccb8db snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9131e2d8 snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x913f7a3f snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x917a0f69 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9249b326 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93636846 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x978a5b1b snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b467ba7 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d05f22c snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa119df8b snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa6252127 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa73bf860 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa9339659 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa210856 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xadf0839f snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb023b910 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2d919a4 snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb5077129 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb60186c5 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbacd5c1d snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc94cc25 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbdefdc4f snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc0037b8a snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc0992af1 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc0c7ab7e snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc0ec040f snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc154462d snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc2d083ed snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9554231 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xccc0a43d snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcccd2aaf snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcfbdb12a snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5a5e9c6 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd6532737 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda6e5842 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdaffe3b2 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xde0dec4b snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf2dd9ee snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe1501d85 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe1f587b3 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe28e0d7d __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe4688f2b snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe9d73b00 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef5b2bfe snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1151ef8 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1e6a05b snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf33bc3cf snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf41e6560 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf548d7a8 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf76d3588 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc3eb963 snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0fd32247 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x129f437a snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x22514ec3 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3353d2a3 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x338bf5e8 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3f3ce77d snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x492cc152 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4ef90590 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6280fdac snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x646ff026 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6ebe47e1 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76a0e22d snd_hda_parse_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9c5bdfd1 snd_hda_get_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9de4a653 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xabaf31b2 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xaca0086a snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb1db0686 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdce40841 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe8d7dd77 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf3d1a15b snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfe2a4404 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x25fe753f cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x9c8b4548 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x9ba10bba cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xede489c4 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x4925aa98 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x8a5fbe15 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xe1544613 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x9630ebcb es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xf58d342d es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x0709aa8e pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x092590c8 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x5e4ac00f pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x639256d0 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x113e4745 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x2929ecda sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x81fa92fa sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x8fccc63f sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xf3adb9e3 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x6af35edb devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x95536740 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xe26fe03c ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x450f6a3e tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xb64cf344 tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xd8c0aeeb ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x2d5af79f wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x605b9125 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x76b342d1 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xf0c52b22 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x5c1dbae6 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xdf0bf074 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x48dc22fa fsl_asrc_platform +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x4a1ba819 fsl_asrc_get_dma_channel +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x30693bb7 imx_audmux_v1_configure_port +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x58631dab imx_audmux_v2_configure_port +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x028fc1a7 snd_soc_lookup_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04aa1a75 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0501f455 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x077c9b3c dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08161212 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0856383a snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0942393c snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0acaf993 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d6bc7f1 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f486aab snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0fd2cfe1 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ff331d3 snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x107e93a3 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11944ea4 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1427ad99 snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15bc7d38 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1621ea3c snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18a6a16e snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x196ddd69 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a9be63e snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b8ab3a9 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2099c62c snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22586e3b snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22cf6c41 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x236f0a05 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2513ecad snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26189b9a snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x272d992f devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x298105ce snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b82dc29 snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2dc37349 snd_soc_add_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31fa8d70 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x350ddac7 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3603ed5b snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x364b8b93 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39f59dd5 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a170253 snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3dc21d80 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ea0fab3 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f478b97 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x45558ee9 snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x475dc378 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4aff4248 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d5ae04e snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e678d4e snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x533267bd snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5616fc28 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x579d5968 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b40bdf7 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d9435bc snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f34ff31 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62a55d2e snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x633f39f5 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6487b297 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x669ff24c snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x697305db devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b6bedc8 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b7dc498 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d9195de snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70b07b23 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7265fe54 snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73257c17 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74943c30 snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7759d546 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c3e9cf9 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8111b837 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8139f520 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82463cb2 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82da10b7 snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84ccaac7 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8816241c snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a664b7d snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b4371fe snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e738ffa snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x904b94b2 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x904e62aa snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9067f75e snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94ac8c2b snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9517abc9 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x95fabe7b snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x986f8d22 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99d373b6 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a788bd6 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ac2ebc7 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9cc4af23 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d1c4280 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d4d9def snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1e8dd62 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6b9203a snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa71b8f48 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa825e900 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8a40661 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8aeacab snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9972d86 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad9a970b snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0c10a9f snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb2bd31f1 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb2df43eb snd_soc_platform_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb414a774 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5bd0c1a snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb75292cb snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb88fb8f0 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbbc9669e snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbcc97d10 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbdabd6ad snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe4c9900 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe858fc6 snd_soc_remove_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc33bed67 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc71d4478 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8882009 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8f84265 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8face1e snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca72e03d dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc2cd9aa snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf26d511 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd10cef95 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1ae1440 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd26c4bb5 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd315a5ea snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3a868f0 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd561909b dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd741d04f snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7f8b2a4 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda71bb80 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc721a6f snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe00b3783 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1001634 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2a282cf snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2c5cc8b snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe381fc71 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe39194df snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe43762fe snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5294ed9 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6104663 snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9252899 snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe92c6614 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9e37fe9 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeaad2727 snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb418b88 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec5a553c devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeec827f0 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2173da0 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4684710 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6ee33a4 snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf884f961 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf97a3d03 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9fe973f snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb7cbde7 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x07b8147d line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0d7b054e line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0efdf8f4 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1435a642 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2f90696f line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x48329c32 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5c123c21 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x60a206e7 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6d5ef324 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x90760794 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9216e82b line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa2fc1f6a line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb3854403 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb799e629 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc8087eac line6_pcm_acquire +EXPORT_SYMBOL_GPL vmlinux 0x00131cd5 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x001d2494 pmf_put_function +EXPORT_SYMBOL_GPL vmlinux 0x00324e45 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x004c389d transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x007c8787 of_reserved_mem_device_init +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x00c94d59 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x0106ce4e wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x010c1082 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x010cfbba task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x01109fce devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x0122b542 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x013a3f99 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x01609ac6 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x017b763c debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x0195fba9 btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x01a6fd85 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x01d0e9c6 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e4bc57 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x01e932e0 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x02037c1b led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x021ebfda btree_update +EXPORT_SYMBOL_GPL vmlinux 0x0220c8a7 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x022ddfec tpm2_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x02377234 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x025c2e11 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x02683aed wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x02dbc475 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x03091811 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x038c752b rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03b3ad51 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x03bd8c94 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x03eb2b7f cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x03f7f520 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x0414b1a6 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x04360d87 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x04404710 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x0467f94a __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x046d2e9f map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x048619a5 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x048eedd0 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0x04b1aef4 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x04b5549c __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x04bc5e8e lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04f4bb66 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x04f4bd8d percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x04faf07d __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x04fdc31d cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x051487d4 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x051ba4a2 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x05306bfe for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x0563087a page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x05650d85 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x05664ee4 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x057f575a of_dma_get_range +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x05b6ac55 dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x05def827 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x05ec6ce1 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x061dee59 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x0629c3af crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x0631e113 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x06493058 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x066e1529 stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x06b41328 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x06e0e67b pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x070b3820 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x070eb3ee __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x0735499e netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x0738f669 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x074e5e21 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x0766e148 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x077b627c blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07c6e2ef device_del +EXPORT_SYMBOL_GPL vmlinux 0x080daadb device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x081c7393 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x08271c03 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x08281252 reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x08311335 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x0836ac12 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x0842aa74 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x086c9b83 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x086f439e kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x087c9dfc gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x0889c046 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x0894a2be of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x0898db2a usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0x08d2b3a2 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x08d4f36c arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0x08ff946c pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x09187723 __sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x091c824a machine_power_off +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x0924ea92 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x094672dd regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x0967c2b2 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x096e37b3 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x098c87e2 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x09a5c74b pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x09f27cbc sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0x0a01c140 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x0a2daf30 spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0x0a2fdabf ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x0a30b5bc pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x0a33fe1a uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x0a51ae5b virq_to_hw +EXPORT_SYMBOL_GPL vmlinux 0x0a7deb5b cpu_remove_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0x0aa063f5 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x0aa83566 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x0ab70701 devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x0abdbbcd pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x0ae050a4 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x0ae58772 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x0afd4610 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b283b46 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x0b41ef00 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x0b4a3f74 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x0b57699f led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0x0b896098 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x0b97a68b usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x0ba27f3e phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x0bc680bb debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x0bdbecb3 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x0bf88e34 of_overlay_create +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c1ddde6 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x0c24fe18 gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c3c5f32 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x0c6f47ae __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x0c70ebf7 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x0cbbc2cc mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0cd38c24 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x0cdfb77e class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x0ce05931 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x0d059e64 static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d5881cf pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x0d6c2f8f of_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x0d73a952 GregorianDay +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0d8ace7b tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x0da0bd5f debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x0dba264b tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x0dbb6e25 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x0dd40cac fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de06988 cpu_first_thread_of_core +EXPORT_SYMBOL_GPL vmlinux 0x0e040383 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x0e08716f ping_err +EXPORT_SYMBOL_GPL vmlinux 0x0e1453f9 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x0e23e71d find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x0e5d2d6d blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x0e81af3d usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x0e822bc9 blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0x0e958e1c ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x0e988747 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x0ecb45a5 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x0edf17a4 irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0x0ee02b03 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0f094b07 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x0f289ac1 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x0f2d0411 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f4c746b dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x0f57645b tpm2_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x0f5b92c4 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f872e0b extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x0f9d10d4 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x0fa516b3 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x0fc01e9f static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x0fd09f3b ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x0ff7ceaa wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x10293e70 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x102bd569 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x1052f93c uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x10750c28 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x109e04e4 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x10c24e02 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x10dddac1 xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10fb646a fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x110437b2 rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0x1114011d threads_shift +EXPORT_SYMBOL_GPL vmlinux 0x114273f0 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x11578ce3 flush_altivec_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x11623e73 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x118e6580 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x11d46d5f percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x123963c7 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x126c9ddd securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x1291893a tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x12a46bf2 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x12b929ad fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0x12c4d73c blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x12c59d85 phy_put +EXPORT_SYMBOL_GPL vmlinux 0x12ca8e17 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x12e160bc __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x12ed3574 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x12f33bd9 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x1322c57e thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x13354608 scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x136a4ee6 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x13c56fd5 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x13d496ea phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x13dc3d5d ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x13e5ea13 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x140b3884 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x14110433 flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x1429c35c mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x142f240e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x14353d40 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x1443f116 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x14600ecc ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x14cacbfb dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x153da79b tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x15487496 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x156262e1 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x1571d359 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x158d52b2 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x159a6b8e put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x159e77f8 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x15b13a84 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x15c0eea5 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x15c21e5e nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x15f8d5c8 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x160c78a1 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x160d287c rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x1626b5d1 reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0x162f679b vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x16907c24 ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0x16bf7aa3 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x16c33104 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x16c7325e user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x16c77cb2 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x16e10f93 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x16f0a279 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x170a0397 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x1714bf7c request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x171eab9e rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x17405494 mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0x174ae6be unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x174cbcc0 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x1750af1d of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x17538da1 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x175676aa pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x179bd98a mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x17b1ba21 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x17c15cfe led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x17f45f3d ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x17f9da02 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x18044f61 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x180689ed devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x1818fda0 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x1843d2ae vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x184757bf clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x184bb35f ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x18516b8c __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x18570516 pmac_i2c_xfer +EXPORT_SYMBOL_GPL vmlinux 0x185b8fd9 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x1868ad55 wm8400_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x187c2708 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x18bb3d93 early_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x18bc44e4 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x18cd723e handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x1902dfa7 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x1941d5ab tps65912_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x1990f8ff pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19baa00f xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1a1c4082 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x1a20b6cf ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x1a8c5907 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x1aa67138 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x1aabc8f0 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x1aae8bbb sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x1aba5640 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1af038ff spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x1afa6c05 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x1b546841 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x1b607c82 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x1b757cca wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0x1b787ccd blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x1b878730 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x1b9a10e8 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1ba22e17 of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x1bb3b485 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x1bcd4d29 find_module +EXPORT_SYMBOL_GPL vmlinux 0x1c0854e6 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x1c090d35 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x1c299d3c device_rename +EXPORT_SYMBOL_GPL vmlinux 0x1c40267a irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c8bfc7c ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x1cc6689c fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x1cdd5440 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x1cde2d5f skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x1cf82066 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x1d02d7aa ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x1d0695f3 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d33741f gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x1d53809a set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x1d59de1e usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d79d7c7 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x1dacf09a blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x1db71ac8 kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0x1dd6e24f set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x1dfbcf4c mpic_msgr_disable +EXPORT_SYMBOL_GPL vmlinux 0x1e300e4e gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x1e439d2d spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x1e4aba24 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x1e55b2dc swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e692ea2 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x1e72e80d dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e994a05 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ee7212d sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x1f079104 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x1f488906 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x1f5362da mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x1f62339e pmf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1f93b407 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x1fe78055 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x202b196e ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x2049bab8 __destroy_context +EXPORT_SYMBOL_GPL vmlinux 0x2053ffd3 skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0x20688b3b tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x20cede87 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x20e0986a pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x2119049b usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x211925ce regmap_fields_force_write +EXPORT_SYMBOL_GPL vmlinux 0x21450fb2 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x2155b669 device_move +EXPORT_SYMBOL_GPL vmlinux 0x21c4ff44 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x21c8904d tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21d7b91b devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x21de5003 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x21e4ec59 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x2201df54 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x22221276 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x2267e000 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0x226cc993 of_get_nand_on_flash_bbt +EXPORT_SYMBOL_GPL vmlinux 0x227038c7 __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0x227dba9b dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x228b543f crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x22946c7e gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x22a6d879 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x22b2b266 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x22e87cf6 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x22ee7544 of_device_get_modalias +EXPORT_SYMBOL_GPL vmlinux 0x22f2b612 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x2307093a sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x2321aca2 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x2349ec4c usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x236bcdb6 shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x237452ef platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2386c409 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x239c058b blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0x23b18da4 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x23cfa2a4 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x23d882b8 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x23da1788 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x23f589bb sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x23fa7c4a securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0x2406dae3 pci_address_to_pio +EXPORT_SYMBOL_GPL vmlinux 0x2414a3e4 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24158e6a crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x24261047 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x242b6494 tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x24329295 fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x2451a647 sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0x24647660 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x246af214 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24948a6b i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x24aa5a8c tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24cbbf08 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x24ccc7c8 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x24e1a998 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f8bedd sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x25152211 crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x2529b892 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x252bf5e9 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x253109b6 __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x2579160f dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x257e34dd platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x2580afb4 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x25936d59 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x25977389 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x25b0c779 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x26085a7e pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x2614ab3f udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x261fbd79 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x26479f60 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x2668a8ce ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x267402a6 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x268efd43 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x2690b2ba ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x2691412e boot_cpuid_phys +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26c4efe4 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26cacbd5 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x26e1051e tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x27093c57 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x270c18e3 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x270db6f0 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x272cf922 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x2745d5bc __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x274bf8bb blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x2758eb70 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x2776911c regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x278c8bce regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x27a48c3a task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27c2b7d2 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x27df23ad regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x27f466c9 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x27fc4c3a dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x28531885 nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0x28970181 of_pci_msi_chip_remove +EXPORT_SYMBOL_GPL vmlinux 0x28ad4375 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x28afa2d7 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x295ea08e dma_request_slave_channel_reason +EXPORT_SYMBOL_GPL vmlinux 0x2969c455 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x29723eb6 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x297a2d2e crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x29cb1e74 pmf_unregister_irq_client +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x2a06b422 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x2a1ba066 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x2a1eaf0d skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x2a3e6b28 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x2a5c8d55 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x2a650fdf pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a7740e1 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x2aad9c1d perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x2ac386e7 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x2b0b8f17 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x2b132ca7 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x2b22e9fa ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b433900 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x2b4cb0c9 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x2b5c303b smp_send_reschedule +EXPORT_SYMBOL_GPL vmlinux 0x2b649eea device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x2b7a574f md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0x2ba5f19a mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x2ba8338f pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x2bbec2c8 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2bc75446 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2bdd090f rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2bf0ce86 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x2c08d9ff device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x2c129e78 extcon_get_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x2c13816b sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x2c1c8f62 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c23e7d3 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c35340e reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2c389734 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x2c56aa5d of_irq_parse_pci +EXPORT_SYMBOL_GPL vmlinux 0x2c639325 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x2c7abd6f usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c8d103f usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x2c8eabd6 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x2c97c085 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2cb1a757 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x2cb601e7 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x2cbc7f5c io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x2cc3e675 pmac_i2c_close +EXPORT_SYMBOL_GPL vmlinux 0x2cd8dcae security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x2cddcb07 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d27b9ab inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x2d2d2137 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x2d391ca6 crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x2d3ccc7d perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d66d648 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x2d6a745e regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2d7db8c5 unlock_media_bay +EXPORT_SYMBOL_GPL vmlinux 0x2d8d7868 devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x2da483a3 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x2dc39ba2 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x2dc5a6d1 btree_last +EXPORT_SYMBOL_GPL vmlinux 0x2dcc2dd8 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x2dd3a65b __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x2dda82ec ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x2de681b6 system_verify_data +EXPORT_SYMBOL_GPL vmlinux 0x2ded3031 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x2e0dad63 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x2e18c541 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e49aa34 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x2e58b5c7 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x2e8c2b11 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x2e99821c vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ef4d512 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x2ef6b5bf smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x2ef77b57 bpf_prog_realloc +EXPORT_SYMBOL_GPL vmlinux 0x2f0d8fd8 crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f37f1af rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f4e02a4 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x2f52078c fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x2f635abd rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f9a532b crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x2fb64de7 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2fbb55a1 skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake +EXPORT_SYMBOL_GPL vmlinux 0x2fec1ffc gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x2fee3ef3 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x2ffb5ff7 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x3012b8ba key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x30293211 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x30412842 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x30420428 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x305bdc6d __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x305d3034 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x3061d8ac irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0x3088442c sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x30b34135 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x30b6eec4 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x30d33f4e powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x3116c766 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x3118383e of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x313842c1 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x314013a3 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x314f75d9 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x31960b5b of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x3196fc6a blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x31c5b085 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31d07045 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x31f205e8 blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0x320d0118 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x32230b59 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x322c5b06 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x325bc9d2 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x325e05dc mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x32719d7f tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x3277cc3d bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x328b14c3 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x32965e69 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x32a6c8cd xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x32bb24a8 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x32c2dfed __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32d572d5 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x32ee1cf8 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x332f3adf pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x3330de96 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x33330f2b regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x3338160e usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x3362cb2f devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x33755f8d __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x33762af3 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x337786fa usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x3394ec12 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x33b79b3c lock_media_bay +EXPORT_SYMBOL_GPL vmlinux 0x33c2f30d rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x33d8d7fd __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0x34058999 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x340d5346 trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x3412a69f nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x3436e55f power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x343a79f0 mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x343e726a i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0x344353cb rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x34537fdb wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x347682ce snmp_fold_field64 +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x34f4a333 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x34f5eda2 thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0x35139e63 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x35252138 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x353571de attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x354fae4d pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35ca1697 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x35ced1f6 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x35ef68ba pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x3610f57f dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x36114903 dax_clear_blocks +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x363495fd dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x3634ecc9 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x36351b6a relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x3637a9c9 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x36584580 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x366437e6 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x367cb638 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x368bcaa0 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36de18da ref_module +EXPORT_SYMBOL_GPL vmlinux 0x36ef49e9 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x36f1ae98 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x37171d0b pcibios_free_controller_deferred +EXPORT_SYMBOL_GPL vmlinux 0x371f2ac8 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x372fd664 xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x3738dfee set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x3742c272 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x37887ed8 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x378bf8f9 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x378e17f0 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x3791595d usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x37bad6bf blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x37cb2e57 of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x37ced78b sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x3823a6cc sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x38364f79 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x384627bf wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x384e5900 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3877ceb3 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x388cb6a6 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x389afd1e crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x38b9e3d6 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x38c144a7 bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x38caaaca mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x38fd0abc blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0x39041864 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x391d3786 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x392f6e55 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x393bfe6c bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x39422c54 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x3979b687 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x39800390 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x39843752 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x39992715 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x399b4364 of_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x39b36842 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39d1741e device_attach +EXPORT_SYMBOL_GPL vmlinux 0x39d1bd3a ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x39db1b2f __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a55e107 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3a55e133 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x3a58fb45 tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x3a67be2b pcibios_claim_one_bus +EXPORT_SYMBOL_GPL vmlinux 0x3a7f879c dbs_check_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3a8b589f component_del +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3a9db366 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3af7e70f devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x3b27e844 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x3b2d3632 pwm_disable +EXPORT_SYMBOL_GPL vmlinux 0x3b4cf4e2 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x3b72513f rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x3b9051cb thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3b951a97 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x3b9c9fa3 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x3be4c647 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x3becd67d usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x3c0d6898 __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x3c0e0da8 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x3c173455 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x3c18483b rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x3c27be5a bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x3c38a4df __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x3c536340 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x3c59cb3c pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x3c64048c bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x3c7465ab sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x3c903f2b usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3cb09726 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x3cb65f07 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cea9f17 regmap_fields_write +EXPORT_SYMBOL_GPL vmlinux 0x3cebccc5 extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0x3cf5397e rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3d1e32dd crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x3d2fea49 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d455075 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x3d7fbe36 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x3dab8ba4 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x3daccfd7 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x3dae390e pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x3db83e0e mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0x3dc0aa24 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3dd4d3a7 bprintf +EXPORT_SYMBOL_GPL vmlinux 0x3ddd0077 of_get_nand_bus_width +EXPORT_SYMBOL_GPL vmlinux 0x3de54780 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3dec3ac7 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x3df9c693 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x3e0111a7 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x3e18aa87 of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x3e348bbe __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x3e50cb8a virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x3e56da87 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e7651e3 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3e8087a4 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x3e892794 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x3e972b31 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x3ed5a1e3 pmf_find_function +EXPORT_SYMBOL_GPL vmlinux 0x3eee80c8 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x3ef53135 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f044564 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x3f07620e power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x3f07bb9d percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0x3f1ad71f wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x3f1b8c3c __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3f1cb321 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0x3f2b7667 blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x3f9a62c2 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x3fd30de9 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x3fd85bc9 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x3fdbb8e5 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x4011ea85 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x401cae97 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x402f6934 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406a5662 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x406e0a84 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x407353ab spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x407a858a rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40cd0ea5 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40e74665 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40fd9433 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x410c0974 mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x41140158 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x415a8ac0 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x41661a3f __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x4168ce09 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0x417b1e8e led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x4187bd39 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x41abd3cb device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x41bea765 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x41c2e9b4 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x41df1db0 of_pci_get_host_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x41ef1f6a regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x422dd7b9 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x423d892d __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x42433baf pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x426b2c92 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x427a066b trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x427fc1d9 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x42848400 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x4285f632 of_pci_find_msi_chip_by_node +EXPORT_SYMBOL_GPL vmlinux 0x4297a30b gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x42b364ef scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x42e33a9a cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x42ed1c67 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x43003593 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x4301e5b6 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4313f6a0 perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0x435ff32a pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x437bed3b blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0x438d1b33 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x438e1805 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43ad3115 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x43c56d23 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43eca894 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x44027906 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x4403835a bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x440ad449 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x441b2982 pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0x441d46b6 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x443272e6 of_get_nand_ecc_step_size +EXPORT_SYMBOL_GPL vmlinux 0x4472bb47 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x4473472a of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x447a1aa4 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x448a38fa of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x44ae32de of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44ca050f gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x44eff47d percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0x45055840 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x452ac09a fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x4548e50b register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x454959de virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x455d9ecb devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x45894da6 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x45899f64 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x45b830a4 mmput +EXPORT_SYMBOL_GPL vmlinux 0x45b86875 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45c276f3 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x45e6a573 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x45e974db ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x46462b37 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x465a57f2 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x46661bda trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x46711185 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x4688c96a usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4689efec debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x468e0142 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x46beb983 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x46cbf877 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x46e2b09b usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x470034b3 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x470bcb3d pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x475718aa raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x47702ffa of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x477d778d fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47c56131 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x47e34575 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x47e9f05f wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x4817bfcf fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4832a13d dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x483a1b33 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x484beae0 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x4862bd8c cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x486fbc4f iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x48ba5824 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x48c70cb1 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x48d0f1af driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x4943a338 __init_new_context +EXPORT_SYMBOL_GPL vmlinux 0x494a81e2 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x4958f879 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x4968f003 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x49809dd5 mpic_subsys +EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x499cbd8d platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x49a40880 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x49b44ba0 __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0x49c88812 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x49e319fb i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49ee443b simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x49f1f3cd scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x4a0ac6a1 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x4a1718d2 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x4a2547c2 threads_core_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name +EXPORT_SYMBOL_GPL vmlinux 0x4a75050d xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x4a8bf801 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x4a8f9674 of_get_nand_ecc_mode +EXPORT_SYMBOL_GPL vmlinux 0x4aabc058 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4b37fb85 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4b38a846 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x4b53c70f serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x4b7d0f01 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4b8042df dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x4bb79dbc usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x4c17075d inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x4c351835 msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x4c3d02dd add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x4c46deb3 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c69e282 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4c7f7dc0 rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x4c9a0c1d tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x4c9e47b9 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x4cb36a8a skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x4cb37082 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x4cc28b6c rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x4cf04d83 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d0e8d0b device_add +EXPORT_SYMBOL_GPL vmlinux 0x4d4480fb virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x4d492f49 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x4d4fb685 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x4d7c895d devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4d7cf320 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x4d94739e regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x4d9f450a module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x4db6bdbc blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x4dbca541 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x4dbf4aa4 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x4dbff5f8 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4de7fe81 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x4df3922a crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x4e0e4a2b rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path +EXPORT_SYMBOL_GPL vmlinux 0x4e299f3c inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x4e2c2dd2 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x4e6721b4 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x4e87ce84 i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0x4e914dcc cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x4edf0bfe virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x4edfef47 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4f0d59d0 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x4f19197d __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x4f25c8c8 virtqueue_get_avail +EXPORT_SYMBOL_GPL vmlinux 0x4f278e69 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f3411f1 extcon_set_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x4f344960 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x4f420baa __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x4f4bb552 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x4f4bf92c net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4f5e76a2 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4fab643c regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x4fcc824b wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fdfd6c6 arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fe47fad regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x4fe6bfcc ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x4ff05559 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x4ffc8058 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x500700f9 tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x5019bcbd usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x501d6677 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x50463e40 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x5052e995 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x50603c4f devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x506b89e9 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x507044a3 blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0x507596d8 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50a4fcb4 wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0x50aab298 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x50b8908d ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x50be2520 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x50c93c72 _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0x50d5d231 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x5100e1fe ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x51162738 reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0x51237ee7 arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x5139671d crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x5140a232 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x51467922 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x51719489 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5185d91d devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x519176a6 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x51966b51 __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x51a34187 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x51a43904 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x51a9c6fd dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x51b65a26 rtc_lock +EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL vmlinux 0x523ee0f7 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x5251dc95 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x52573864 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x52a767fe ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x52c0d5d8 scatterwalk_bytes_sglen +EXPORT_SYMBOL_GPL vmlinux 0x52dbba66 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x52e0eaac ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x52edbe99 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x5335dd11 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x53485f30 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x53746221 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x538aac73 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x53a8e800 x509_request_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x53bf6561 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x53c776ba gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x53d482c9 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x53ed3f2b devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x53f64a60 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x5405bd77 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x541c18e8 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x541e99c7 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x542d84ea devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x5462a669 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x546a724b devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0x546c5565 ppc_tb_freq +EXPORT_SYMBOL_GPL vmlinux 0x5471cf9b srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x54786162 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x547a38a0 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x5491e6fc ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x5492ca18 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x5496b9a7 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0x54d04c29 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x54d468f1 pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x54dafc47 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x553b475f regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x553f023b ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x55632179 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x556fe8b7 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x557c8923 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x55890930 flush_fp_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x55aad850 crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x55ab3d71 devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x55c1c505 smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x55e36cdb dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x55e71fa5 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x55e8209d of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55eed7cf regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x55f0b062 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x55f51ef3 alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x5607281a tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x560930b9 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x5637a7a5 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x564f9343 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x5667c3e7 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x5673a7d6 regmap_field_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x567c3099 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x56a1f09a usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x56b9529f dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56fdb5ef pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x57396574 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x574b32ca device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x574d5872 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x574f8b72 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x5761bb0f virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x57959b86 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x579a4875 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57a2637b fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x57af6bba rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57d579d3 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x57f0c329 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x57f7b85c dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x57f8a567 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x5802052b pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x581736e8 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x581af145 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x58330fb7 digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x5843a037 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x5848cbc1 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x5870c37c lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x587d82d7 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x5892f832 release_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58a58fd9 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x58ad78a7 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x58b019f0 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x58b5c899 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x58b61400 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x58d89208 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x5906dc19 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x593b0a50 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x59492a41 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x5956ee39 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x5966cf5d put_device +EXPORT_SYMBOL_GPL vmlinux 0x5979c2f4 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x59a43330 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x59ac379c usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x59b1ce8a scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x59b91e16 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x59b985b9 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x59bfb8a3 swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x59df23e9 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x59e8dca8 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5a076b4a ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x5a0e3d86 of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x5a22b3f4 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x5a25f887 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x5a27f5ba uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x5a2e3bbd trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x5a303b76 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x5a595505 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x5a5aa577 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x5a649f9e ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x5a65c37b devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5ad13bad do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x5aebd124 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x5b01ca5a regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5b03094a perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x5b1a442c scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x5b266bb3 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x5b2df634 blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0x5b3f9bd4 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x5b587ff5 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x5ba05c92 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x5baef3ed net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x5bb56c40 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x5bc4a53e phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bda2129 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5c1a30de ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x5c2e6de2 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x5c4201fd udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c63315e sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x5c64c142 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x5c67d009 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x5c74b921 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x5c7ade1f trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x5c89598a vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x5c9a6002 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x5c9b4fa3 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5d0059c5 blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d480ad2 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x5d4cf4d8 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0x5d51bcf7 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0x5d70b3fc usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x5d7ddd2f cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x5d908696 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x5d9425cb __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5da73f4f console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x5de30043 of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x5e2b9336 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x5e370619 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x5e3e54bf wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5e497050 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x5e509ffd regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e8b735d pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x5eba5217 crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0x5ee04637 device_reset +EXPORT_SYMBOL_GPL vmlinux 0x5eeb71cb wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0x5eeb8952 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x5f0ab166 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x5f1cf605 irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0x5f3bd0e0 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x5f4487b0 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x5f5f601a skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x5fb6deec use_mm +EXPORT_SYMBOL_GPL vmlinux 0x5fdfdee2 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x5fe0715b skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x5fe403ac inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x60048016 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x600c71e1 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x6011fc1d device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x601a97ad debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x602b5691 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x6035b78e fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x603d678d device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x6044ea29 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x6079e5ec regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x607bcff3 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x6081e539 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x6090793f shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0x60a0d5ba usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0x60ef3bb6 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x60f71b86 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x6119ab14 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x6127f4eb percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0x61766467 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0x618e5bb6 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x61a90c54 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x61bdc0f5 of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x61c1b0aa da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x61c5f9a4 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x61f78b54 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x6210299e scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x6216bd73 percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x62460340 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x625819d7 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x626ee58f fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6272d2fc regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x6298c8bd fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x62a580ce tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x62d59c9e trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x62dad5a3 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x62f20000 posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0x6328bfd1 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x63408b76 crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x635bb645 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x637394bb __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x63780d35 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x63880ff1 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x6388d07d devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x639af444 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x63aaa546 pmf_call_one +EXPORT_SYMBOL_GPL vmlinux 0x63ab62b4 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x63b972f4 pmac_low_i2c_lock +EXPORT_SYMBOL_GPL vmlinux 0x63e40249 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x63f1f7b5 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x64065d30 get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0x642e1323 __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x643a701f usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x6453f77c pmac_has_backlight_type +EXPORT_SYMBOL_GPL vmlinux 0x645c7596 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x6465774e blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0x649fa1c0 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x64a70cfc io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x64be618a scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x64dab417 single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x64e24a5e memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x64f79845 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x6503f906 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x650c3bf9 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x650ebf9f regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x652bff48 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x654f93d1 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x655b30de trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x655bbea2 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x65690cde __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x65a6b1bb of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x65ab1d82 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x65b173ad ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x65b4cf6b bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65fbff36 swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0x6601392c usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x6601d1f2 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x66063d19 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x667c4088 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x667d393e hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x667deb0e bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x669a0869 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x66a3dc07 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x66a69080 rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0x66afb53b unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66d1777a remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66debc66 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x66fcf009 rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0x6720a009 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x67219808 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6759ecf0 ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67c5b02a genlmsg_new_unicast +EXPORT_SYMBOL_GPL vmlinux 0x67c9b510 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x67eb7fc8 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x67ecc608 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x67f3252b ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x6806ca6b usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x6807d800 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x6845fc6d pmac_low_i2c_unlock +EXPORT_SYMBOL_GPL vmlinux 0x68604895 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x6881c818 usb_string +EXPORT_SYMBOL_GPL vmlinux 0x68956406 static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x68b1f5c2 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x68bc577e wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x68c8d94f dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x68fa7b22 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x69089e2e gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x69228ce6 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x692b8c70 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x69310bad sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0x6956918b component_add +EXPORT_SYMBOL_GPL vmlinux 0x695bfa56 __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x695ca796 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x695ef253 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x697bc445 pmf_get_function +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x697cbbb4 threads_per_core +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x6991e936 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x6994369e ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x69998894 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x69a94492 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x69ab121d __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x69d9b371 pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0x69e8b8a5 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x69ed8d48 device_register +EXPORT_SYMBOL_GPL vmlinux 0x6a0b0a27 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x6a1e09b7 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x6a27b83e __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x6a2e4d46 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x6a3d5fd8 mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a6c48ac sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x6a7700d1 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a86a2c6 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x6ab3781f trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x6ad6d585 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x6ae2d2e5 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x6ae7fd8e pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x6aedd246 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x6b028c6d get_device +EXPORT_SYMBOL_GPL vmlinux 0x6b0ea39c pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b3d2d64 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x6b5af61d ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x6b7108dc __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x6b73bb75 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6bc2b7e7 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x6bc4a605 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x6bccc585 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x6bcd2365 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x6bd8d5b5 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x6c03fce7 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c209eab __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0x6c266b21 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x6c42e77a xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c4f3e07 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0x6cb64638 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x6cc89236 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6d104379 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x6d1b1796 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d3c2a99 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x6d423685 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x6d510e73 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x6d52fb8e pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x6d55c72f fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x6d59b7c5 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x6d74237c __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x6d7718a6 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x6d8c51e8 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e0d5440 rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6e159f10 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x6e22f0b6 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x6e322820 irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x6e43bd57 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x6e51afc8 percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x6e6111e3 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x6e682f15 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x6e7388ba phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x6e77ae41 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6ea631cc sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x6ea7d7b1 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x6eb1e6d5 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x6ebd478b disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x6ec9f8e7 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x6ed23d61 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6f0717d0 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6f0b765e usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f311954 bpf_prog_get +EXPORT_SYMBOL_GPL vmlinux 0x6f3ad70d ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x6f42c58c ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x6f9017c1 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x6f9037b1 napi_by_id +EXPORT_SYMBOL_GPL vmlinux 0x6fbbddf0 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x700936b3 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x701639e5 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x7016eb72 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x701a3e60 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x703716a4 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x703cf559 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x703e3e32 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x705e4e86 tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x7073c16b device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x70965f5d regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x70b5a87a disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70da1567 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x70e805fb dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7112881e sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x712905cd __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x713a8525 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x713f5d8b pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x714986d9 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x716764cc of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x71739da8 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71dd6a4a ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x71de211b tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x71f24a10 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x720c81ce perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x722e3112 _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0x72511839 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x72515d5a snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278c4f0 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x728d8ced aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x7290605c regmap_fields_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x7299d5f8 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x72bd896e locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x72d3c2db pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x72d7622c nl_table +EXPORT_SYMBOL_GPL vmlinux 0x72dd40c0 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x73075e65 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x730edb5d shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x732ddf9c kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x7352a8ff dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x736ed3f6 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x73787bfd usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x737d1bb0 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x739aa1a1 pmac_i2c_setmode +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x73cfe26f ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73db2016 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0x73e29b64 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x73f0d856 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x7410c262 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x742853ea pwm_enable +EXPORT_SYMBOL_GPL vmlinux 0x74304fa7 regmap_update_bits_check +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x744411ff pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x74471008 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7468b74e __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x748b8cd8 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74b79688 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74c5a23a pmac_backlight +EXPORT_SYMBOL_GPL vmlinux 0x74d007c2 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x74d56d76 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x74e390e7 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x74e7f6df blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x74fba9d7 split_page +EXPORT_SYMBOL_GPL vmlinux 0x7505d09f pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0x7506efe5 pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0x750f410c devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x750f9839 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x752073ea regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x752d50af register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x75329035 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x75442d06 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x754a1cb8 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x758799b1 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x759278e2 fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7597c6c0 regmap_write_bits +EXPORT_SYMBOL_GPL vmlinux 0x75a1195c bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0x75a702d2 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x75c2b9f1 memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0x75c9d8c3 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75d17d0b pmac_i2c_open +EXPORT_SYMBOL_GPL vmlinux 0x75d46eb6 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x75f2a044 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x75f90332 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x75ffd571 percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x76066068 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x7612e902 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x761ed6ec hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x762923ad alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x762c0858 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x763f8357 pmac_backlight_mutex +EXPORT_SYMBOL_GPL vmlinux 0x7640b206 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x765df5e0 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x76bdfaa5 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x76d71da0 tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x76f215ef dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x76f37d70 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x76f6d3cb scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x770cf981 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x772e74db gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x77610894 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x77742122 rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x777482db pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x77782335 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x7785c199 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x778ccf4e regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77bcdb9a blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x77d4a4c7 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x77e146d6 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x781213bc ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x78151326 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x7820b2ef cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x784ca5a7 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x784dbabb cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x784dbf54 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x785361d3 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x785cf1c3 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x787d89ef serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x7899339c ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x789e4292 blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78dbfdf0 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x79075a0e dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x790f4ed3 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7910567b tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x7934c678 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x79480197 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x796a9cba ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x79708f61 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x797daad1 thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x797e4664 kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0x79812c39 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x79c4bfda pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x79dc2b5b devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x7a0a8f0d user_read +EXPORT_SYMBOL_GPL vmlinux 0x7a29e5f0 trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a3aa5a7 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x7a45d02f devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x7a8b131b pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7ab1bb44 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x7ae5cbfc rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0x7aeb70d3 wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0x7af49e21 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x7b0668b6 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b38b237 wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0x7b39948c tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x7b3ade7e invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x7b454255 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x7b880d34 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x7bd5875d unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x7bdfd3df regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x7be11751 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x7c17ea2a adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7c2240a3 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x7c4add71 extcon_unregister_interest +EXPORT_SYMBOL_GPL vmlinux 0x7c5335f9 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x7cba6c82 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7ceecd11 bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x7cf6c0a4 blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0x7d1304d5 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x7d19f8d4 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x7d24ee7d bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0x7d2b8814 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x7d36cba9 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x7d588a98 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d87186a aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7db7da37 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7dc1e388 alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x7dc30ccd crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0x7dd12fac register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x7dd7366c relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7de3bed7 rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0x7df855ba spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x7e01d6cb irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x7e17ba7b klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x7e1dd2b7 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x7e40d11b class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x7e4a3d5a rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e642d8a device_remove_property_set +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7e9d3e73 devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x7edebeff hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x7ef2fc3e usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x7f008202 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature +EXPORT_SYMBOL_GPL vmlinux 0x7f2fbaed cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x7f4a3d5e led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x7f66bc6a usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7f6980f4 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x7f7bc710 klist_next +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f807d10 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x7f831643 shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x7f8d27aa usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x7f98864b edac_subsys +EXPORT_SYMBOL_GPL vmlinux 0x7f9ccf18 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x7fa18074 of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x7facc250 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fdc72fe mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x7fe13c77 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fe4c360 __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x7ff2b8c1 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x80427ee5 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x8049ed62 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x804ea02d __find_linux_pte_or_hugepte +EXPORT_SYMBOL_GPL vmlinux 0x805042bb debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x80809726 spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80a64cfa i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x80a8a6be generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x80ac831b rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80e94ed8 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x80f1a677 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x8100fc0e wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x810e609f put_pid +EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x8129f17c __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x8130b656 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x81387014 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x813d922c rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x813f9ef9 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x8148bf5a regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x814c022a bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x814d5273 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x815641a4 pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x815d0810 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x81793952 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x817aa091 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x818a6491 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x81a09bb4 pmf_call_function +EXPORT_SYMBOL_GPL vmlinux 0x81abb0d7 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x81bd8224 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x81bf4635 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x81c6ba7c crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x81cd7ac8 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x81e15db9 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x8206005c __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x8216b275 blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x82207f98 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x82270f27 single_release_net +EXPORT_SYMBOL_GPL vmlinux 0x822ad4c7 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x822d11a0 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x824b3da0 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x824c84cf __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x82560d6e unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x825db2e9 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x8267f3ca sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x827c0e96 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x827d7a4d of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x8281993f sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x8297a75d dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x82a5ab06 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x82a985c0 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x82ba473f devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x82d5804b crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82ec98d5 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x82fb2ffd transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x82fc0e5e __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x8324ad5b usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x83497fa0 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x83664acb bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x836d61d0 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x8396f8c6 bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0x83ab4a5e pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x83b595a0 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x83ccf444 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x83d559ce devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x83f517ef ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x83ff330c da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x841da239 unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x841f7719 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x8443e54d usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x8475cc67 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x85302ece rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x853bd46b gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x853ecb45 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x854dbc42 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x856832c5 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x858737ec fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x85a816d3 __bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x85bcdfc3 of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85cad788 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x861a8cff regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x863400e8 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x864a6f64 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x8652110e pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x86d3e33f device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x86e18b39 pmf_do_functions +EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x86f8f96e transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x8724a64a pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x8727fcdb mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x8733a77b crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x873a6389 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x87447e1e trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0x8772fd82 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x878ea6a9 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x8795f2d4 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x87b65b34 dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x87ce870b unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x87ded105 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x87ecfbfe gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x87f4bedc desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x87fda8e6 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x8804af3d usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x8819caa2 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x881dad12 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x882e08b2 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x883c2f44 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x88605956 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x88987bd3 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x88a2d521 regmap_update_bits_check_async +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88fec0f8 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x89008de3 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x89022e19 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x89055b4a pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x8932e4bb add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x893c9b6c evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x8953daf5 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x89788b31 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x89b468aa regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89e822a7 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x8a17ea59 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x8a1ef667 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x8a325748 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod +EXPORT_SYMBOL_GPL vmlinux 0x8a5f86ce fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x8a63f59b init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x8a68f2a1 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x8aaac3f4 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ac0da69 devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x8af78f75 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x8b35d005 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x8b428e41 pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x8b5a0aa4 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x8b646c95 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x8b65db2d rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x8b70e8ea __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x8b7ab438 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x8b9526f7 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x8b991115 blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x8be506d1 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x8bff232d irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c3b852d dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x8c5d2905 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c72a384 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8caebfa1 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x8cb11d56 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x8ccbffd0 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params +EXPORT_SYMBOL_GPL vmlinux 0x8cec16ab ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0x8cf3835b devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x8cff30cf tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x8d04ac93 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x8d4605ac crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x8d512dda hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x8d78960c sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x8d88b680 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x8d9177e0 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x8d94fc5f br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x8da17b42 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x8dab4462 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x8dc89ece get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x8dca0b01 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x8dcc1455 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x8dfd5821 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x8e13ed25 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x8e1f30e9 rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0x8e2b25c2 videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e3579d1 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x8e370722 cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x8e3d39df init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x8e7156e5 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x8e893858 pwm_set_polarity +EXPORT_SYMBOL_GPL vmlinux 0x8e959503 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x8e9599ae i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x8e97164f power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x8ea3895c pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x8eb4e54d ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x8ede01ca ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x8ee84aa8 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x8eeadaae usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f0abf1a pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x8f1caeea usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x8f2f375c perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x8f64ed30 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x8f6a65da scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x8f6b3615 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f736277 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8fa01a6e of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x8fa49d18 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x8fb20c2a thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x8fced602 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x8ff6d391 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x90027a04 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x9022d5bc memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x905c54c3 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x906079b7 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x9065e685 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x9069dd04 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x9077d5ea usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x908e55f1 crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90a609d9 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x90b8f2d9 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x90c5a370 cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x90c80d84 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x90e010db gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x90e244c9 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x90f385bb devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x911827e0 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x911e546e usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x9166e585 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x917fe53e tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x91885fe5 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x91965753 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x91c3e10f find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91d7a592 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x91d90064 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x91eb0973 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x91ec17b9 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x92134026 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x92211a0e device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x923d7364 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x9254b7e2 spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0x9280ea81 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e31443 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x92e7be34 bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x92f6e4b6 __ktime_divns +EXPORT_SYMBOL_GPL vmlinux 0x930d7ad4 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x9337b121 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x93520081 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x93552271 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x935d4fc7 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x9360774a trace_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x9375c755 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x9396b61b stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x939daa81 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x93a2cb47 reserve_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x93bf2fcd __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x93e10cd2 arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0x93f585b7 regmap_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0x9410b727 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x94219653 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x9432b036 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x945b4440 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0x94c2d37f blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x94e09882 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x94ed923e sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94f5768f phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x950a9ff1 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x95156028 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x95695777 of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0x95868e5c crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x95953b65 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95cb50fb virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x95f8b7a5 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x961990ef dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x96434782 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9655b911 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x967dda1d __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x9685f04d ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x9697ec54 cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0x96a5d2f0 of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x96e62551 extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x96f33408 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x972c869f blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x974c8ab9 trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x9759e417 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x976a167c regulator_can_change_voltage +EXPORT_SYMBOL_GPL vmlinux 0x978c916c pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x979c43c1 dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0x97c2731c device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x97c56c03 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x97d69893 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97ebd307 blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0x982cd486 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x982d06be pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x986a25a4 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x98866151 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x989eb047 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x98c17a3f serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x98c84e5d regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x98cf1096 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x98dd8f97 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x98e60e93 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on +EXPORT_SYMBOL_GPL vmlinux 0x992058f5 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9923c77c led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x992c5ec7 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x994d9bb2 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x994ff461 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0x995d03e1 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x996219c7 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x998113e7 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x999b0273 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x999d69bf led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x99a76f2e mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x99b71976 cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99ce0592 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x99e588f2 bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0x9a0d1e21 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a19a4d6 tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x9a274704 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x9a49d937 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x9a72733f gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9a8eb30d inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x9aac2cae inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x9aad6540 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ac5d775 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x9ac7df64 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x9ae9dd1b dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9aee82f1 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9af9dc67 __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0x9afc2312 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x9b13c259 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x9b21adba inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9b593e18 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x9b9f8dc1 led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x9be233d5 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bf7c45e class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x9bf97958 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x9bfb0a35 blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x9bfe9c50 sock_update_netprioidx +EXPORT_SYMBOL_GPL vmlinux 0x9c42d3e1 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x9c437c22 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x9c4f477f do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x9c50d83a device_create +EXPORT_SYMBOL_GPL vmlinux 0x9c6fba37 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cce8fba n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x9cd4fb97 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x9ce1ec67 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x9cf76296 pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0x9d0b0bcf flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x9d284ce9 dax_fault +EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x9d848060 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x9d96bfbd subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x9da4c7cd trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported +EXPORT_SYMBOL_GPL vmlinux 0x9dc2100d clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x9ddcd339 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x9df3247c swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x9e131d11 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x9e23a6a2 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x9e28a7fc platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e574b44 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x9e669778 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9e79d147 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9e7db457 of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0x9e8fd67e __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x9e957ab0 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x9ea9384f adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9eaf9af3 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x9ecc9e53 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x9ed4b9ff sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9f2a5e45 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9f3c101f component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x9f4d89c1 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x9f4e741f __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x9f624f52 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x9f6252d4 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x9f67cbb6 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x9f7bd494 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x9f8e974e raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0x9f9820d1 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fd26be9 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x9fdc3472 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9fffdfb5 phy_init +EXPORT_SYMBOL_GPL vmlinux 0xa00d50cc rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xa041d336 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xa0466f41 smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xa05d8f27 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xa071e996 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xa07dd7a0 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xa0858f38 tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xa0a3d7c4 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0xa0ab0347 wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0xa0df2e10 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa0e46049 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xa111b58e usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xa14f1ff0 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0xa1767b76 i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa190a5a9 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xa1bad50e gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xa1d1cd96 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xa2109526 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0xa21467da devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xa238f5b2 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xa241c3ce hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xa2567b36 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xa26519dd dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2d6d5f2 blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xa31186d2 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xa32aae0f pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xa3429fda regmap_field_write +EXPORT_SYMBOL_GPL vmlinux 0xa35c0012 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xa36474c9 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xa36d0082 wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa37fae62 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0xa37fd2d6 __put_net +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a2d9af walk_system_ram_range +EXPORT_SYMBOL_GPL vmlinux 0xa3b123de gov_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3d74c23 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa3ee061c cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0xa4297286 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xa442782d sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xa46b1d56 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa4929627 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xa4b058d7 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa4cc339b crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xa4dd1901 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xa517e281 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xa52f02aa dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0xa53be3f8 cpufreq_governor_dbs +EXPORT_SYMBOL_GPL vmlinux 0xa54c1b15 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xa550a215 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0xa56715ea __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xa56e8176 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0xa58fd333 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xa5a4fc01 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0xa5a600d5 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xa5b00659 ppc_proc_freq +EXPORT_SYMBOL_GPL vmlinux 0xa5e7e6a2 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5efe460 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xa5fcba71 sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa649155e netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0xa64f8392 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0xa65513ff fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0xa65be306 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xa662219e component_master_add_child +EXPORT_SYMBOL_GPL vmlinux 0xa6781de3 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa6782545 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0xa6786733 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xa6817310 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xa69353a4 rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xa693a581 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xa69edc2e sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6bbb931 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xa6dafa72 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6ea722c transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0xa6fd06d2 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0xa71f8037 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xa72d3e2b __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xa74cd26f of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa7523096 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0xa779239d dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0xa79fb7c2 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xa7b833a8 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xa7c73b76 napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0xa7cf54c5 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0xa7d2062f shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xa7e498b8 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xa7eada40 fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0xa7ebebaa __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0xa7f344ae blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0xa7f9fd35 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xa800be91 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xa8244fba of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0xa8351769 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xa843bf1c xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa87e09e8 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0xa8a2d87d vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xa8a930c4 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0xa8aeef3e rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xa8b5b3ff usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8be0b4a adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xa8c8f9ea param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xa8cb6e10 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xa8cbd34c eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xa8cf8b96 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xa8dcab55 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xa909f30b regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xa90c0a0a vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xa91603b1 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa9715729 bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xa9774bd3 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xa9e16298 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9f6ec95 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xaa0abbe6 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xaa0c5a7c of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0xaa1e6013 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xaa1f6be5 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0xaa2423df __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xaa273c20 scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0xaa643af4 ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xaa6f1358 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xaa79ed75 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xaa7b31fd ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xaa8d5dd9 wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0xaa98ac79 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaad27f49 nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xaafe8ad1 pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xab0c4bc1 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xab0ebdb1 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xab107007 extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xab3866c3 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0xab42dfcb setup_irq +EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del +EXPORT_SYMBOL_GPL vmlinux 0xab6b6e24 pmac_i2c_get_controller +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab6ccfe5 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xab6f807b cpu_add_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0xab85e810 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xab8950a0 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xab945a16 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabc81522 virtqueue_get_used +EXPORT_SYMBOL_GPL vmlinux 0xabd3d40c list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xac01d5f3 of_get_nand_ecc_strength +EXPORT_SYMBOL_GPL vmlinux 0xac13b37a inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xac224395 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xac238eee extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xac629180 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0xac8b0111 save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0xaca09f4d of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0xacb3a398 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xacb8ca4b crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xacd86df4 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xace8cb8c fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xad73b1b0 of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xad934d96 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xadd7a204 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0xade94bc8 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xadfdb817 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xae03869c tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0xae237398 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0xae2c25f9 pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xae2cacb0 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae81922b of_overlay_destroy_all +EXPORT_SYMBOL_GPL vmlinux 0xae895d73 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xae9382d2 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0xae980e9e pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xae9e1871 blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0xaea21284 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0xaea82c69 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xaeac4d8d pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0xaeca3802 of_scan_bus +EXPORT_SYMBOL_GPL vmlinux 0xaeddf315 pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xaee23717 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xaef7d633 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xaf013f85 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0xaf0e2d99 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xaf339ecf devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0xaf38a119 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0xaf3e26b1 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0xaf8fcf5e wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0xafa0fe1d tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xafd2d77d page_endio +EXPORT_SYMBOL_GPL vmlinux 0xafd55a86 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xb0087df9 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xb0259a0a ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0xb03014bf agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0xb03ebc11 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xb045e816 thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0xb04e8036 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0xb0729a27 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0xb0749553 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0xb0776eb3 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0xb085cd95 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xb0913148 btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0xb0a8af43 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0d52d07 system_trusted_keyring +EXPORT_SYMBOL_GPL vmlinux 0xb0f0a897 of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0xb1054fcb ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0xb11298ac uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xb124fe08 md_run +EXPORT_SYMBOL_GPL vmlinux 0xb13155b5 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb1434233 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0xb151eecb rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xb1776638 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xb182c568 relay_close +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xb1d43e53 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1f29dd2 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xb202c1c3 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xb219cbfd rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0xb2208140 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb2256567 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xb258f761 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xb288a472 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0xb2b89a02 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xb2cc445a pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0xb2d3d50d blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2fcd0fc ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xb3047da1 irq_find_matching_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xb35a8a16 pcibios_scan_phb +EXPORT_SYMBOL_GPL vmlinux 0xb3864d23 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xb394e400 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xb399160b ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0xb39a1aec tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xb39b0c8d mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb3c0100d dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0xb3c39294 of_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xb3e48e8d led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0xb3eb695d regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0xb3febfbe devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb40d8d8f __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xb42005af usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0xb4236126 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xb444dcfe cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0xb488588e tb_to_ns +EXPORT_SYMBOL_GPL vmlinux 0xb490bac5 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xb4910876 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xb4acdc98 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4bd2b58 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb51f98d7 pmac_i2c_adapter_to_bus +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb52f6d3b extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb53076ea unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb5476a29 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xb54d40db cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xb5640fe6 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xb57c50eb ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0xb58351ac crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xb586068c device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5aa10af atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb5c8edf4 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0xb5cf2891 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0xb5cf8048 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xb5e896fb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xb5ef3d74 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb60b5707 of_i8042_aux_irq +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb6407e18 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xb691037f trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb7019d47 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xb711d130 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xb721f82a cpu_remove_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0xb73ff574 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb751e835 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xb75b75c8 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xb78e2564 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb79fb656 register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xb7bb1362 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xb7c15f46 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xb7ed2e3a pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0xb7f62536 input_class +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb809b9ee md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xb80f02e5 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xb80f03b0 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0xb83cd863 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb84b772e ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb85518c2 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xb883206b hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb88530df crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xb8883049 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xb88d1f4f filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb88fb2ad regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb893be36 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xb8aeab00 user_describe +EXPORT_SYMBOL_GPL vmlinux 0xb8c0b52a fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8d3886e input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0xb92427b4 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xb93d9b3e usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xb94288a9 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xb9554b91 arizona_of_get_type +EXPORT_SYMBOL_GPL vmlinux 0xb961abf1 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xb96b3bc6 of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0xb977e6f5 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xb99431a0 pmf_register_irq_client +EXPORT_SYMBOL_GPL vmlinux 0xb9b40afd of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9cfafc8 __netlink_alloc_skb +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xba07fc0d of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0xba0954b8 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0xba158769 rtas_cancel_event_scan +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba402666 blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xba67b697 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xba8542ac agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xba8929ea percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xba8e0d7c cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xbab66788 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbaecd8c1 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb1b2834 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0xbb6d0763 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xbb7cf9cb jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xbb7d312c ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0xbbcbfd79 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xbbf0d7a9 __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0xbc0f3ef6 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xbc259699 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xbc3fc80d vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xbc5095ee inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xbc5b375f __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc79f19b rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcb3abd8 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0xbcd0168e scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0xbcf01d60 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xbcf3f0cd cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xbcf7b269 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xbd2c69ac cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd73682c device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xbd7d241a rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0xbd823dbd irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xbd8c5546 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xbda27e93 user_update +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbde8dc00 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0xbdf04637 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbe091a4a sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe2712bc percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbe275630 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xbe5bbf43 bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe6ec091 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xbe70e7f9 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xbe909f3c phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe9f2f9a pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbebbf598 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xbec8c13e pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0xbec9871c proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xbeeac8f3 of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xbeee1d26 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbf02e3c4 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf106cd7 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xbf1152a4 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xbf1cc04b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xbf322287 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xbf33ef24 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xbf582a36 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xbfaa65f6 elv_register +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfc5db12 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xbfc98020 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0xbfcf66b2 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xbfd4ab18 of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 +EXPORT_SYMBOL_GPL vmlinux 0xc02bec3c usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xc05b91af rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xc060c26e invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xc061367e mpic_msgr_get +EXPORT_SYMBOL_GPL vmlinux 0xc065a455 cpu_core_index_of_thread +EXPORT_SYMBOL_GPL vmlinux 0xc0750e75 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0xc07ac5fb cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc08b1bc4 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xc0a83b48 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0xc0e09e10 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xc0e17744 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xc0e75cec visitor128 +EXPORT_SYMBOL_GPL vmlinux 0xc0e7cf6a fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0f532b8 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xc10323e4 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xc13244c1 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xc1444efe dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0xc161027b devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0xc16b70e0 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc175c017 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0xc17baa8b rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xc17fcec6 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xc18578ed process_srcu +EXPORT_SYMBOL_GPL vmlinux 0xc1a2fbd6 blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0xc1ac131c pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xc1c873aa __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xc1cb27ea powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0xc1d7e9b3 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0xc1dd3787 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc222ffa9 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc22a9a00 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xc244458a dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc2899bed irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0xc2ad582a ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0xc2b6bf37 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xc2c25342 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xc2e728dc ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xc30b3a36 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0xc31cb213 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc365524c rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0xc36d0c9a tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xc37013f9 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xc37120e7 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc3a730e8 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0xc3aa0a68 blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0xc3b43464 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xc3b83445 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xc3c7744f fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xc3ec0688 trace_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0xc3ed476a bio_trim +EXPORT_SYMBOL_GPL vmlinux 0xc3f4d4dd dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xc4133b65 pmac_i2c_get_dev_addr +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc430fe46 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0xc4398102 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xc448aba3 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0xc44a0101 skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc465ac6a ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xc46d4261 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc47ca3cc cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xc47ec678 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc48aa3cb user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc495ce7e register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xc4a20df5 of_display_timings_exist +EXPORT_SYMBOL_GPL vmlinux 0xc4bf263d pmf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc51a8a3e aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xc51bcd4b syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc51d9a42 shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0xc535e958 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc58014b4 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xc58698bb usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xc58a1687 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xc58d9872 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xc591505d regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xc5942d8b usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xc5a2c19f idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc5be5715 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xc5c51471 device_add_property_set +EXPORT_SYMBOL_GPL vmlinux 0xc5ca93d6 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xc5cb70a6 cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0xc5da6c8d of_css +EXPORT_SYMBOL_GPL vmlinux 0xc606cd3c boot_cpuid +EXPORT_SYMBOL_GPL vmlinux 0xc60a5d71 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc627431a alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xc62aa507 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xc636c289 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc683dc62 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xc68aa252 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6bd7603 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xc6e106c7 of_pci_msi_chip_add +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc74a6afe pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xc7539563 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0xc7574605 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0xc7612f76 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xc765cfcf device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0xc773f169 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xc785bb73 ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xc78c2a85 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0xc79aa2c5 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7c4343c dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer +EXPORT_SYMBOL_GPL vmlinux 0xc7c7f65a sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0xc7c97770 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xc7d52934 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xc7dee16e devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7f7134c of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xc845b1c8 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc87e2d7a sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xc8872b04 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0xc88c702f thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xc8901483 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8b5fd6d usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xc8c15b64 of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0xc8c4a014 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0xc8cb1bc1 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0xc8d94660 ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0xc8de6574 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc8dfecbc syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xc8e1a7d2 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xc8f77f02 call_filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0xc8fb92ec of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc914fd76 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xc9274d3b gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xc94317b7 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc9775dd1 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc979082a regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level +EXPORT_SYMBOL_GPL vmlinux 0xc97e9bff register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0xc987d63f gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xc99f6c4a dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0xc9bf4a0b ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xc9cbdd16 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9fbe48b pmac_i2c_match_adapter +EXPORT_SYMBOL_GPL vmlinux 0xc9fd04d3 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xca06f41f __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0xca37f247 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca8c6456 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcacc82a0 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0xcadec66e unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xcaf0fda2 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xcb03796c pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb4238fb spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0xcb469b0f rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xcb5ad1f7 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xcb5c100e dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xcb5ee621 hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xcb8a27bf is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0xcb8e6c0c ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xcbd2cff6 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbe98057 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcc0f1009 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcc207440 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xcc26a7a8 of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xcc392799 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc5cddc4 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xcc763ff9 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcca9151c usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xccb23974 regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd893d6 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0xccec6ef2 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xccfb314a ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0xcd045a5a regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0xcd04829a __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xcd0b4333 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xcd1645c2 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xcd25bcbf usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xcd606430 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xcd6492ab trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0xcd6b4079 crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcd6ea7f0 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xcd71905d device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xcd761f8e spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdc55e56 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcddb7318 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xcde99e57 of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0xcdea86c4 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xcdeb02e8 cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xcdee34f2 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xce09f8d3 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xce372532 scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0xce3f8250 napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xce407f5d inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xce4ff3b0 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xce5082f2 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce754228 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xcebb760a dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0xced51941 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee6b939 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xcef282b4 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0xcf030ccb spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf5968c3 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xcf5ff1f7 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xcf6d315e add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0xcf733e2d ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xcf867ad2 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcfb0f4bb da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfd63f2d ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xcfdfa1f8 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xcfe279f1 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xcfe3e31f __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd0534156 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0xd0578abd regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xd058f0de task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd0698087 arizona_of_get_named_gpio +EXPORT_SYMBOL_GPL vmlinux 0xd06b0444 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xd098177a reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0f8b366 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0xd11bfe23 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xd13119f2 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xd133efbb pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xd13f27c1 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0xd14297c4 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0xd163faec skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd1822f0b cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd18fa4ab da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xd1a28c6c usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xd1e6386c __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd1fc05ec tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd23775a8 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xd24a560f ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xd267d2de tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0xd26f0ad1 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd2aa5248 fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0xd2aaeb4e kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xd2ba68d1 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xd2ca18d1 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2e8176a crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xd2e9d20c rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0xd2f7b515 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xd338402e platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xd34f2105 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0xd3556393 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xd3595ea8 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xd37ba6f5 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0xd39a1262 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xd3ac8ff6 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xd3cabe1d pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0xd3d1929e kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xd3fa0439 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd407cb28 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd4435ecd power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd44baafb shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xd49640cd platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xd4b30939 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4d68cbe i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xd4f9e975 pmac_i2c_get_bus_node +EXPORT_SYMBOL_GPL vmlinux 0xd5200aa5 fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0xd525aa94 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0xd547dc26 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xd54fd9f7 cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0xd55d3dbc pcibios_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xd56447b9 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xd5651c6f find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0xd56e298d ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0xd58cdeb2 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xd59ec5aa pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0xd5a961b3 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0xd5b85c98 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5c41300 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xd5cb3184 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0xd5ddba57 ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd62608d6 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd635534d user_preparse +EXPORT_SYMBOL_GPL vmlinux 0xd660b23a mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd698bd2f inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0xd6b8a589 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xd6ce08e8 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xd6d8d136 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd70bb12c xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xd70fae32 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xd7109225 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xd71c9b9a of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0xd7260c3a sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xd72e1059 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd76dcee5 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xd77a0bf6 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd78cc2ee crypto_lookup_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xd79edba5 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xd7aabeea serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7df0779 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xd7fc3e98 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0xd8081ede power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xd8101e9a regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0xd81db1c8 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd83fb8f5 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0xd840bea8 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0xd84ef47d perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xd85d80d0 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xd87062e7 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd879a61c scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0xd87a8074 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd88741a6 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0xd89d064a __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0xd8a2ad14 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xd8b027d3 pmf_do_irq +EXPORT_SYMBOL_GPL vmlinux 0xd8efaa42 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xd8ffb0e5 component_master_add +EXPORT_SYMBOL_GPL vmlinux 0xd91ae4a4 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0xd9266981 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd94aa457 display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0xd96731c1 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd98287aa tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0xd99ecef1 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xd9a03dff pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xd9b1b613 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xd9b54bad ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd9bc8bf6 devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xd9d49f7e devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xd9dbe3ea usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xda0a4d22 mpic_msgr_enable +EXPORT_SYMBOL_GPL vmlinux 0xda3aac85 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xda452d1d regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0xda70f829 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xda74daaa ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xda92fee8 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0xdae715e0 videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xdaf15614 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaf9af8e list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0xdafe8a3e rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xdb088cb1 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xdb0f6588 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xdb1a0469 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0xdb38c9fd of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb46966a tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xdb6ff415 check_media_bay +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb8b0e76 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0xdbb31eba isa_bridge_pcidev +EXPORT_SYMBOL_GPL vmlinux 0xdbb52197 pcibios_finish_adding_to_bus +EXPORT_SYMBOL_GPL vmlinux 0xdbc41088 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc0f470f pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xdc24133e of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0xdc2f8f4d uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xdc461430 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xdc714d88 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xdc7cc78f ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc8b2cfb arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdd0bb7f3 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd5d9382 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xdd601b4c component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xdd654e95 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xdd69ea31 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xdd729424 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xdd7e279d devres_release +EXPORT_SYMBOL_GPL vmlinux 0xdd8d956d metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xdda9bf53 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0xddaba5d5 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddbf62d1 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xddd85c5d ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xdde15a84 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xdde3e4ee class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xde19fabf of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xde1b65c7 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0xde1f1c7a i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0xde200c37 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xde29238f sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xde3dd92a blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xde5d6d5d ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xde7585ae ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xde81afd6 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xde9463a6 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xdea3674d max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xdebec061 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xdedb933d fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xdf0c3252 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf10f04b rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0xdf19b31e regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0xdf1d2145 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0xdf2280d1 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0xdf6469e8 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0xdf88419b gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0xdf9713cf rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0xdf9e6ce0 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0xdfadc947 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xdfaff15d spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe030360d crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0xe036b3e9 mpic_msgr_put +EXPORT_SYMBOL_GPL vmlinux 0xe055c1ce wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe07ca631 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe0b21b2b blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0xe0cc138b crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe0d98f54 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0xe101fe78 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xe1083ae3 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xe111ed84 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0xe121cbb6 static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe1a2968e inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1ca2497 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xe1d7847a scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0xe1fb4e81 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xe20c797c scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xe20ec0a6 spi_async +EXPORT_SYMBOL_GPL vmlinux 0xe216b8aa ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0xe2209e83 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xe23b6342 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xe2604ca6 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xe267852c power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe28d6191 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xe2b484c9 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xe2d6dc3d sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xe2e33766 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0xe2f92ff1 security_kernel_fw_from_file +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe324c93b sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xe34c8e29 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe360fcdd rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0xe401d6a1 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe41a0418 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xe41f29a7 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xe424c368 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe4395f4f da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xe44839ec ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xe44e254f __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xe464bafe usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xe4650185 pwm_config +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe47bb261 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4a0d7af __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xe4c031f8 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0xe4ca5e04 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0xe4f54dd3 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xe5041465 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xe50ab7a9 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0xe513a622 dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0xe52fdb53 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xe54c9ce3 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xe55cccb4 ping_close +EXPORT_SYMBOL_GPL vmlinux 0xe56d1991 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe63d3fe1 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe659ebd0 phy_create +EXPORT_SYMBOL_GPL vmlinux 0xe671f33c pmac_i2c_get_channel +EXPORT_SYMBOL_GPL vmlinux 0xe67d2745 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xe68120ea regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6c91789 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6e68af5 pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xe713d194 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0xe7145917 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0xe727261e vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xe7435ec7 ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe76deb64 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xe7731187 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xe7772da8 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe7e10ff0 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xe7f18b3c threads_per_subcore +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe804be77 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0xe8136b03 pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe8295791 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0xe833925e irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0xe83846f7 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0xe83c88b5 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe852e3f1 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0xe85bf7ad __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xe85c55e7 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe86cf402 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xe8823968 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xe8a1ca79 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe8befaa9 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe8cc480a pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0xe8d15cbc public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0xe8df0f12 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0xe9019d67 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0xe9122648 tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0xe925ce8b pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe949aba1 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xe950d630 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0xe95970cd spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0xe97a9221 debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0xe988639a queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xe995cdbf led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0xe9a394a3 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xe9b806d1 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0xe9bf81b2 rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9d6f583 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0xe9ffa90b mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea3382a7 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea55d540 of_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xea59e3a4 arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0xea5ab564 skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0xea6ff3d3 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xea7f0317 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xea9ffc3a netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xeac6c897 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0xeacbe789 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xeaeb0b37 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xeaf2b40d blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0xeaf5c3d0 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xeb1232b7 tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xeb156eb2 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0xeb20f04a crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xeb4fa8d1 kick_process +EXPORT_SYMBOL_GPL vmlinux 0xeb59bc5b hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xeb6668e8 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xeb818a3b rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xeb8232ad zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0xeb873ef9 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeb8ae736 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xebb3592b snmp_get_cpu_field64 +EXPORT_SYMBOL_GPL vmlinux 0xebc907f4 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xebcff2b5 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xebd2fcb5 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xebdb31d4 analyse_instr +EXPORT_SYMBOL_GPL vmlinux 0xebdb4a60 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xebe8da0c blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xebf747aa iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xec0626ef ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xec131735 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec438c08 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xec5e394c ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0xec67c170 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xec67f959 arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xec6b6d7a wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0xec787388 get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xec90dd70 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0xecada5f8 pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0xecd1505e crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xed06c5cb pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xed0c9486 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0xed20b937 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xed6ff5cc netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xeda1e18b relay_open +EXPORT_SYMBOL_GPL vmlinux 0xedb62d1a virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xedbc8e1c blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xee06027f max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0xee266181 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0xee297f30 devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xee3a0813 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xee4a5e4f dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0xee4bb253 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xee5d01d7 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xeedf1895 fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0xef004b62 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0xef302165 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0xef30da36 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xef409b74 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef47d3d9 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xef942120 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefbe39a1 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xefdbbcc7 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0xefe969b9 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xeff4a5ac ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xf0229870 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf05b55bf extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xf063dee0 tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf076ec5e pcibios_free_controller +EXPORT_SYMBOL_GPL vmlinux 0xf08babfd pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xf0d25224 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf0e5f357 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xf0f10f0e firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0xf0f2f7ca pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xf0f44387 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf147805c nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xf14ecc29 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xf158f170 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0xf167cdd4 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xf16c905c inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xf1827755 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf194da75 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0xf19613d0 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf1a23f60 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xf1a62b6f of_i8042_kbd_irq +EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1f451b4 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xf2196393 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf2266c5b __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0xf2491a60 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xf2560a4e class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf26e743d alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2aeb299 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0xf2bc411b __sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0xf2c172be max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xf2dce357 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0xf2ebad95 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xf30f9ec3 md_stop +EXPORT_SYMBOL_GPL vmlinux 0xf30fda27 lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf3146860 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf3285cd0 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf33934f5 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xf3532f86 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xf361a2f9 of_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf37bb863 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf3866e49 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b58f52 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xf3c185d4 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xf3c27e1e pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0xf3d681cd scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf3f2ec87 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xf4149040 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0xf4279574 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xf4517626 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0xf469a39a free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xf46dc91f dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xf48363b7 tpm2_startup +EXPORT_SYMBOL_GPL vmlinux 0xf485734d rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0xf48892e2 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4b333d1 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xf4cdfd72 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0xf4fb067b srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf50762c8 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xf515abf1 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xf51f966e macio_find +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5bcf1b2 __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0xf5c01d81 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xf5dba021 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xf5e1788f trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0xf5e3fbc3 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xf607999b of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0xf6135f65 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xf61e0d63 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xf62dc9ae gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xf65ad08f find_symbol +EXPORT_SYMBOL_GPL vmlinux 0xf65bd316 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0xf6b64bd6 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6d099f0 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xf6dafb45 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf6dd55cf tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xf6dffa7e pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xf6e101d8 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6f33faf ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0xf7014f40 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xf7023a4f device_show_int +EXPORT_SYMBOL_GPL vmlinux 0xf73a0d3c wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xf74798ec driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xf7b70d51 pmac_i2c_get_adapter +EXPORT_SYMBOL_GPL vmlinux 0xf7d0d0dd extcon_register_interest +EXPORT_SYMBOL_GPL vmlinux 0xf7dae5ad da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xf8058437 ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xf81095f0 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0xf815dde2 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf81ec85a of_console_check +EXPORT_SYMBOL_GPL vmlinux 0xf8228c96 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf846506f irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf87c597d ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xf87cd561 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf882f0fb usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf8b36190 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0xf8d0588b pmac_i2c_find_bus +EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf911938f regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xf91eac65 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xf91fe42d dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf92f0b78 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf9451cd5 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0xf94d8995 gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0xf95228fe security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf989589a trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9a057bc irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0xf9c1bd7a xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0xf9c1ed35 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xfa0561f3 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0xfa1e4dc2 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa535c75 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfa6397bd power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xfab60503 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xface9ced adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xfacf62a8 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0xfad18aa1 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0xfae7c7c2 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xfaf4a179 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0xfaf6bd8f rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xfb1eb1e7 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0xfb2b0d7f __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb33e7b0 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xfb525dfc pmac_i2c_get_type +EXPORT_SYMBOL_GPL vmlinux 0xfb52b77d __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0xfb6d63e0 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfb6e3b4f skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfba8af45 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0xfbaee8cd gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbded78f gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc174e11 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xfc368b5e blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0xfc36e4e6 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xfc5a41b6 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xfc604090 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xfc626275 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xfc725f7b regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xfc879e17 page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0xfc8ae125 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xfc8b8e50 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0xfcaaf38e regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0xfcf0710e mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xfcffb4e1 pmac_i2c_get_flags +EXPORT_SYMBOL_GPL vmlinux 0xfd19f697 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xfd25c5ca sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xfd490148 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xfd511512 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xfd6ef889 devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0xfd7fe2f0 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0xfdd9e083 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0xfdf729c5 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0xfe2c68a4 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xfe597a2a regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xfe5a9988 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0xfe62aac9 cpu_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0xfe6b324d virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0xfe6b4b69 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xfe839349 of_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfe9b182d policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0xfec25f2e __module_address +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfeea796a md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0xfef1a9b2 arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff4e35ba pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xff5155db nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff5e80d5 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xff66b080 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0xff7fe382 irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0xff81eb55 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xffb2aafd relay_flush +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffc1fb7b relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xffdd7d6c of_pci_range_parser_init only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-106.129/powerpc/powerpc-smp.compiler +++ linux-raspi2-4.4.0/debian.master/abi/4.4.0-106.129/powerpc/powerpc-smp.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.5) 5.4.0 20160609 only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-106.129/powerpc/powerpc-smp.modules +++ linux-raspi2-4.4.0/debian.master/abi/4.4.0-106.129/powerpc/powerpc-smp.modules @@ -0,0 +1,4318 @@ +3c574_cs +3c589_cs +3c59x +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_dw +8250_mid +8255 +8255_pci +8390 +842 +842_compress +842_decompress +88pm800 +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +BusLogic +DAC960 +a100u2w +a3d +a8293 +aacraid +aat2870-regulator +aat2870_bl +ab3100 +ab3100-otp +ac97_bus +acard-ahci +acecad +acenic +act200l-sir +act8865-regulator +act_bpf +act_connmark +act_csum +act_gact +act_ipt +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +act_vlan +actisys-sir +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5755 +ad5764 +ad5791 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7266 +ad7280a +ad7291 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7746 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad799x +ad8366 +ad9523 +ad9832 +ad9834 +ad_sigma_delta +adc128d818 +adcxx +addi_apci_1032 +addi_apci_1500 +addi_apci_1516 +addi_apci_1564 +addi_apci_16xx +addi_apci_2032 +addi_apci_2200 +addi_apci_3120 +addi_apci_3501 +addi_apci_3xxx +addi_watchdog +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adfs +adi +adis16060 +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16204 +adis16209 +adis16220 +adis16240 +adis16260 +adis16400 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1275 +adm8211 +adm9240 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adv7170 +adv7175 +adv7511 +adv7604 +adv7842 +adv_pci1710 +adv_pci1723 +adv_pci1724 +adv_pci_dio +advansys +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +af-rxrpc +af9013 +af9033 +af_alg +af_key +af_packet_diag +affs +ah4 +ah6 +aha152x_cs +ahci +ahci_ceva +ahci_platform +ahci_qoriq +aic79xx +aic7xxx +aic94xx +aim_cdev +aim_network +aim_sound +aim_v4l2 +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airo +airo_cs +airport +airspy +ak8975 +al3320a +algif_aead +algif_hash +algif_rng +algif_skcipher +ali-ircc +alim7101_wdt +altera-ci +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am53c974 +ambassador +amc6821 +amd +amd5536udc +amd8111e +amdgpu +amplc_dio200 +amplc_dio200_common +amplc_dio200_pci +amplc_pc236 +amplc_pc236_common +amplc_pc263 +amplc_pci224 +amplc_pci230 +amplc_pci236 +amplc_pci263 +ams +ams369fg06 +analog +anatop-regulator +ans-lcd +ansi_cprng +anubis +aoe +apbps2 +apds9300 +apds9802als +apds990x +apds9960 +apm-emulation +apm-power +apm_emu +apm_power +appledisplay +appletalk +appletouch +applicom +aquantia +ar1021_i2c +ar5523 +ar7part +arc-rawmode +arc-rimi +arc4 +arc_emac +arc_ps2 +arc_uart +arcmsr +arcnet +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arp_tables +arpt_mangle +arptable_filter +as102_fe +as3711-regulator +as3711_bl +as3722-regulator +as3935 +as5011 +asc7621 +ascot2e +asix +ast +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +ata_generic +ata_piix +atbm8830 +aten +ath +ath10k_core +ath10k_pci +ath3k +ath5k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atm +atmel +atmel-flexcom +atmel-hlcdc +atmel_cs +atmel_mxt_ts +atmel_pci +atmtcp +atp870u +atusb +atxp1 +atyfb +au0828 +au8522_common +au8522_decoder +au8522_dig +aufs +auo-pixcir-ts +auo_k1900fb +auo_k1901fb +auo_k190x +auth_rpcgss +authenc +authencesn +autofs4 +avm_cs +avma1_cs +avmfritz +ax25 +ax88179_178a +axnet_cs +axp20x-pek +axp20x-regulator +axp20x_usb_power +axp288_adc +axp288_charger +axp288_fuel_gauge +b1 +b1dma +b1pci +b1pcmcia +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +bas_gigaset +batman-adv +baycom_epp +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bch +bcm-phy-lib +bcm203x +bcm3510 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm7038_wdt +bcm7xxx +bcm87xx +bcma +bcma-hcd +bcmsysport +bd6107 +bdc +bdc_pci +be2iscsi +be2net +befs +belkin_sa +bfa +bfs +bfusb +bh1750 +bh1770glc +bh1780gli +binfmt_misc +block2mtd +blocklayoutdriver +blowfish_common +blowfish_generic +bluecard_cs +bluetooth +bluetooth_6lowpan +bma150 +bma180 +bmac +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmg160_core +bmg160_i2c +bmg160_spi +bmp085 +bmp085-i2c +bmp085-spi +bmp280 +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bnxt_en_bpo +bonding +bpa10x +bpck +bpck6 +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +br2684 +br_netfilter +brcmfmac +brcmsmac +brcmutil +brd +bridge +broadcom +broadsheetfb +bsd_comp +bt3c_cs +bt819 +bt856 +bt866 +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btqca +btrfs +btrtl +btsdio +bttv +btuart_cs +btusb +btwilink +bu21013_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c4 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +cachefiles +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +caif_usb +caif_virtio +camellia_generic +can +can-bcm +can-dev +can-gw +can-raw +cap11xx +capi +capidrv +capmode +carl9170 +carminefb +cassini +cast5_generic +cast6_generic +cast_common +catc +cb710 +cb710-mmc +cb_das16_cs +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcimdas +cb_pcimdda +cc2520 +cc770 +cc770_isa +cc770_platform +cciss +ccm +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +ceph +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha20_generic +chacha20poly1305 +chaoskey +chipone_icn8318 +chipreg +chnl_net +ci_hdrc +ci_hdrc_imx +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +cirrus +cirrusfb +clip +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm36651 +cm4000_cs +cm4040_cs +cma3000_d0x +cma3000_d0x_i2c +cmac +cmdlinepart +cmtp +cnic +cobalt +cobra +coda +colibri-vf50-ts +com20020 +com20020-pci +com20020_cs +com90io +com90xx +comedi +comedi_8254 +comedi_8255 +comedi_bond +comedi_isadma +comedi_parport +comedi_pci +comedi_pcmcia +comedi_test +comedi_usb +comm +configfs +contec_pci_dio +cordic +core +cp210x +cpia2 +cpsw_ale +cpu-notifier-error-inject +cramfs +crc-ccitt +crc-itu-t +crc32 +crc7 +crc8 +cryptd +crypto_user +cryptoloop +cs5345 +cs53l32a +csiostor +ctr +cts +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +cx18 +cx18-alsa +cx22700 +cx22702 +cx231xx +cx231xx-alsa +cx231xx-dvb +cx2341x +cx23885 +cx24110 +cx24113 +cx24116 +cx24117 +cx24120 +cx24123 +cx25821 +cx25821-alsa +cx25840 +cx82310_eth +cx88-alsa +cx88-blackbird +cx88-dvb +cx88-vp3054-i2c +cx8800 +cx8802 +cx88xx +cxacru +cxd2099 +cxd2820r +cxd2841er +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cyclades +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da9030_battery +da9034-ts +da903x +da903x_bl +da9052-battery +da9052-hwmon +da9052-regulator +da9052_bl +da9052_onkey +da9052_tsi +da9052_wdt +da9055-hwmon +da9055-regulator +da9055_onkey +da9055_wdt +da9062-core +da9062-regulator +da9062_wdt +da9063-regulator +da9063_onkey +da9063_wdt +da9150-charger +da9150-core +da9150-fg +da9150-gpadc +da9210-regulator +da9211-regulator +dac02 +daqboard2000 +das08 +das08_cs +das08_isa +das08_pci +das16 +das16m1 +das1800 +das6402 +das800 +davicom +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +ddbridge +de2104x +de4x5 +decnet +deflate +defxx +denali +denali_pci +des_generic +dgap +dgnc +dht11 +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dibx000_common +digi_acceleport +digicolor-usart +diskonchip +diva_idi +diva_mnt +divacapi +divadidd +divas +dl2k +dlci +dlm +dln2 +dm-bio-prison +dm-bufio +dm-cache +dm-cache-cleaner +dm-cache-mq +dm-cache-smq +dm-crypt +dm-delay +dm-era +dm-flakey +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-verity +dm-zero +dm1105 +dm9601 +dmfe +dmm32at +dmx3191d +dn_rtmsg +dnet +docg3 +docg4 +donauboe +dp83848 +dp83867 +dpt_i2o +drbd +drbg +drm +drm_kms_helper +drop_monitor +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds620 +dsbr100 +dscc4 +dss1_divert +dst +dst_ca +dstr +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x +dt3000 +dt3155 +dt9812 +dtl1_cs +dummy +dummy-irq +dummy_stm +dvb-as102 +dvb-bt8xx +dvb-core +dvb-pll +dvb-ttpci +dvb-ttusb-budget +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-af9035 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6007 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-rtl28xxu +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dvb_usb_v2 +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_wdt +dwc3 +dwc3-pci +dwc_eth_qos +dwmac-generic +dwmac-ipq806x +dwmac-lpc18xx +dwmac-meson +dwmac-rk +dwmac-socfpga +dwmac-sti +dwmac-sunxi +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +earth-pt1 +earth-pt3 +eata +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ec100 +echainiv +echo +edac_core +edt-ft5x06 +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efs +egalax_ts +ehset +elan_i2c +elo +elsa_cs +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_meta +em_nbyte +em_text +em_u32 +emac_arc +emac_rockchip +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +empeg +ems_pci +ems_pcmcia +ems_usb +emu10k1-gp +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +eni +enic +epat +epia +epic100 +eql +esas2r +esd_usb2 +esi-sir +esp4 +esp6 +esp_scsi +et1011c +et131x +ethoc +evbug +exofs +extcon-adc-jack +extcon-arizona +extcon-axp288 +extcon-gpio +extcon-max14577 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +ezusb +f2fs +f75375s +f81232 +fakelb +fan53555 +farsync +faulty +fb_agm1264k-fl +fb_bd663474 +fb_ddc +fb_hx8340bn +fb_hx8347d +fb_hx8353d +fb_hx8357d +fb_ili9163 +fb_ili9320 +fb_ili9325 +fb_ili9340 +fb_ili9341 +fb_ili9481 +fb_ili9486 +fb_pcd8544 +fb_ra8875 +fb_s6d02a1 +fb_s6d1121 +fb_ssd1289 +fb_ssd1306 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_sys_fops +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fbtft_device +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdomain_cs +fdp +fdp_i2c +fealnx +ff-memless +firedtv +firestream +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fit2 +fit3 +fixed +fl512 +flexcan +flexfb +floppy +fm10k +fm801-gp +fm_drv +fmc +fmc-chardev +fmc-fakedev +fmc-trivial +fmc-write-eeprom +fmvj18x_cs +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fpga-mgr +freevxfs +friq +frpw +fsa9480 +fscache +fsl-edma +fsl_elbc_nand +fsl_lpuart +ft6236 +ftdi-elan +ftdi_sio +ftl +fujitsu_ts +fusb300_udc +g450_pll +g760a +g762 +g_acm_ms +g_audio +g_cdc +g_dbgp +g_ether +g_ffs +g_hid +g_mass_storage +g_midi +g_ncm +g_nokia +g_printer +g_serial +g_webcam +g_zero +gadgetfs +gamecon +gameport +garmin_gps +garp +gcm +gdmtty +gdmulte +gdmwm +gdth +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +gennvm +gf128mul +gf2k +gfs2 +ghash-generic +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +gluebi +go7007 +go7007-loader +go7007-usb +goku_udc +goodix +gp2ap002a00f +gp2ap020a00f +gpio +gpio-74x164 +gpio-74xx-mmio +gpio-addr-flash +gpio-adnp +gpio-adp5520 +gpio-adp5588 +gpio-altera +gpio-amd8111 +gpio-arizona +gpio-beeper +gpio-charger +gpio-crystalcove +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-fan +gpio-generic +gpio-grgpio +gpio-ir-recv +gpio-janz-ttl +gpio-kempld +gpio-lp3943 +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-mc33880 +gpio-mcp23s08 +gpio-ml-ioh +gpio-pca953x +gpio-pcf857x +gpio-rdc321x +gpio-regulator +gpio-syscon +gpio-tps65912 +gpio-twl4030 +gpio-twl6040 +gpio-ucb1400 +gpio-viperboard +gpio-vx855 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio_backlight +gpio_keys +gpio_keys_polled +gpio_mouse +gpio_tilt_polled +gpio_wdt +gr_udc +grace +grcan +gre +grip +grip_mp +gs_fpga +gs_usb +gsc_hpdi +gspca_benq +gspca_conex +gspca_cpia1 +gspca_dtcs033 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_jl2005bcd +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stk1135 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_touptek +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtco +guillemot +gunze +gxt4500 +hackrf +hamachi +hampshire +hanwang +hci +hci_uart +hci_vhci +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcdrv +hdm_dim2 +hdm_i2c +hdm_usb +hdpvr +he +hexium_gemini +hexium_orion +hfc4s8s_l1 +hfc_usb +hfcmulti +hfcpci +hfcsusb +hfs +hfsplus +hi6421-pmic-core +hi6421-regulator +hi8435 +hid +hid-a4tech +hid-alps +hid-apple +hid-appleir +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-cherry +hid-chicony +hid-corsair +hid-cp2112 +hid-cypress +hid-dr +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-icade +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-lenovo +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-primax +hid-prodikeys +hid-rmi +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-isku +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-konepure +hid-roccat-kovaplus +hid-roccat-lua +hid-roccat-pyra +hid-roccat-ryos +hid-roccat-savu +hid-saitek +hid-samsung +hid-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steelseries +hid-sunplus +hid-thingm +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hidp +hifn_795x +hih6130 +hisax +hisax_fcpcipnp +hisax_isac +hisax_st5481 +hisi504_nand +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hopper +horizon +horus3a +hostap +hostap_cs +hostap_pci +hostap_plx +hp100 +hpfs +hpilo +hpsa +hptiop +hsi +hsi_char +hso +hsr +hsu_dma +htc-pasic3 +hts221 +hts221_i2c +hts221_spi +htu21 +huawei_cdc_ncm +hwa-hc +hwa-rc +hwmon-vid +hx8357 +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd8111 +i2c-arb-gpio-challenge +i2c-cbus-gpio +i2c-designware-core +i2c-designware-pci +i2c-designware-platform +i2c-diolan-u2c +i2c-dln2 +i2c-gpio +i2c-hid +i2c-hydra +i2c-i801 +i2c-isch +i2c-kempld +i2c-matroxfb +i2c-mpc +i2c-mux +i2c-mux-gpio +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-reg +i2c-nforce2 +i2c-ocores +i2c-parport +i2c-parport-light +i2c-pca-platform +i2c-piix4 +i2c-robotfuzz-osif +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-smbus +i2c-stub +i2c-taos-evm +i2c-tiny-usb +i2c-via +i2c-viapro +i2c-viperboard +i2c-xiic +i40e +i40evf +i5k_amb +i6300esb +i740fb +i82092 +ib_addr +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mad +ib_mthca +ib_sa +ib_srp +ib_srpt +ib_ucm +ib_umad +ib_uverbs +ibmaem +ibmpex +icp_multi +icplus +ics932s401 +ideapad_slidebar +idma64 +idmouse +idt77252 +idt_gen2 +idtcps +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +iforce +igb +igbvf +igorplugusb +iguanair +ii_pci20kc +iio-trig-interrupt +iio-trig-periodic-rtc +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili922x +ili9320 +imm +imon +ims-pcu +imx074 +imx6ul_tsc +imx_thermal +ina209 +ina2xx +industrialio +industrialio-buffer-cb +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +input-polldev +int51x1 +intel_th +intel_th_gth +intel_th_msu +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +interact +interval_tree_test +inv-mpu6050 +io_edgeport +io_ti +ioc4 +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_MASQUERADE +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_tunnel +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_wlc +ip_vs_wrr +ip_vti +ipack +ipaq +ipcomp +ipcomp6 +ipddp +iphase +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +ipr +ips +ipt_CLUSTERIP +ipt_ECN +ipt_MASQUERADE +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipw +ipw2100 +ipw2200 +ipwireless +ipx +ir-hix5hd2 +ir-jvc-decoder +ir-kbd-i2c +ir-lirc-codec +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-usb +ir-xmp-decoder +ircomm +ircomm-tty +irda +irda-usb +irlan +irnet +irtty-sir +iscsi_boot_sysfs +iscsi_target_mod +iscsi_tcp +isdn +isdn_bsdcomp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl9305 +isofs +isp116x-hcd +isp1362-hcd +isp1704_charger +isp1760 +it913x +itd1000 +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_c2 +iw_cm +iw_cxgb3 +iw_cxgb4 +iw_nes +iwl3945 +iwl4965 +iwldvm +iwlegacy +iwlmvm +iwlwifi +ix2505v +ixgb +ixgbe +ixgbevf +janz-cmodio +janz-ican3 +jc42 +jedec_probe +jffs2 +jfs +jitterentropy_rng +jmb38x_ms +jme +joydev +joydump +jr3_pci +jsa1212 +jsm +kafs +kalmia +kaweth +kbic +kbtab +kcomedilib +ke_counter +kempld-core +kempld_wdt +kernelcapi +keyspan +keyspan_pda +keyspan_remote +keywrap +kfifo_buf +khazad +kingsun-sir +kl5kusb105 +kmx61 +kobil_sct +ks0108 +ks0127 +ks8842 +ks8851 +ks8851_mll +ks959-sir +ksdazzle-sir +ksz884x +ktti +kvaser_pci +kvaser_usb +kxcjk-1013 +kxsd9 +kxtj9 +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l4f00242t03 +l64781 +lan78xx +lanai +lapb +lapbether +latch-addr-flash +lattice-ecp3-config +lcd +ld9040 +ldusb +lec +led-class-flash +leds-88pm860x +leds-adp5520 +leds-bcm6328 +leds-bcm6358 +leds-bd2802 +leds-blinkm +leds-da903x +leds-da9052 +leds-dac124s085 +leds-gpio +leds-ktd2692 +leds-lm3530 +leds-lm3533 +leds-lm355x +leds-lm3642 +leds-lp3944 +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max77693 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pwm +leds-regulator +leds-tca6507 +leds-tlc591xx +leds-wm831x-status +leds-wm8350 +ledtrig-backlight +ledtrig-camera +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-oneshot +ledtrig-timer +ledtrig-transient +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libahci +libahci_platform +libceph +libcomposite +libcrc32c +libcxgbi +libertas +libertas_cs +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libore +libosd +libsas +lightning +lineage-pem +linear +lirc_bt829 +lirc_dev +lirc_imon +lirc_parallel +lirc_sasem +lirc_serial +lirc_sir +lirc_zilog +lis3l02dq +lis3lv02d +lis3lv02d_i2c +lis3lv02d_spi +litelink-sir +lkkbd +ll_temac +llc +llc2 +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3630a_bl +lm3639_bl +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lmc +lms283gf05 +lms501kf03 +lnbh25 +lnbp21 +lnbp22 +lockd +locktorture +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp8755 +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpc_ich +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +ltc2941-battery-gauge +ltc2945 +ltc2978 +ltc3589 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltr501 +ltv350qv +lv5207lp +lvstest +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m25p80 +m2m-deinterlace +m52790 +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +ma600-sir +mac-celtic +mac-centeuro +mac-croatian +mac-cyrillic +mac-gaelic +mac-greek +mac-iceland +mac-inuit +mac-roman +mac-romanian +mac-turkish +mac53c94 +mac80211 +mac80211_hwsim +mac802154 +mac_hid +macb +mace +macvlan +macvtap +mag3110 +magellan +mailbox-altera +mailbox-test +mantis +mantis_core +map_absent +map_funcs +map_ram +map_rom +marvell +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max1111 +max11801_ts +max1363 +max14577 +max14577_charger +max1586 +max16064 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max197 +max20751 +max2165 +max3100 +max31790 +max3421-hcd +max34440 +max517 +max5821 +max63xx_wdt +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77686 +max77693 +max77693-haptic +max77693_charger +max77802 +max8649 +max8660 +max8688 +max8903_charger +max8907 +max8907-regulator +max8925-regulator +max8925_bl +max8925_onkey +max8925_power +max8952 +max8973-regulator +max8997 +max8997_charger +max8997_haptic +max8998 +max8998_charger +mb862xxfb +mb86a16 +mb86a20s +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc44s803 +mcb +mcb-pci +mceusb +mcp2120-sir +mcp251x +mcp3021 +mcp320x +mcp3422 +mcp4531 +mcp4725 +mcp4922 +mcryptd +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md-cluster +md4 +md5-ppc +mdc800 +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-gpio +mdio-mux +mdio-mux-gpio +mdio-mux-mmioreg +mdio-xgene +me4000 +me_daq +media +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +memstick +men_z135_uart +men_z188_adc +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +mesh +metro-usb +metronomefb +mf6x4 +mga +michael_mic +micrel +microchip +microread +microread_i2c +microtek +mii +minix +mip6 +mite +mk712 +mkiss +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx90614 +mlxsw_core +mlxsw_pci +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmc_block +mms114 +mn88472 +mn88473 +mos7720 +mos7840 +mostcore +moxa +mpc624 +mpl115 +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +msdos +msi001 +msi2500 +msp3400 +mspro_block +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt29f_spinand +mt312 +mt352 +mt6311-regulator +mt6397-core +mt6397-regulator +mt7601u +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd +mtd_blkdevs +mtd_dataflash +mtdblock +mtdblock_ro +mtdoops +mtdram +mtdswap +mtip32xx +mtk-sd +mtouch +multipath +multiq3 +musb_hdrc +mv643xx_eth +mv_u3d_core +mv_udc +mvmdio +mvsas +mvumi +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc4005 +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxser +mxuport +myri10ge +n_gsm +n_hdlc +n_r3964 +n_tracerouter +n_tracesink +nand +nand_bch +nand_ecc +nand_ids +nandsim +national +natsemi +nau7802 +navman +nb8800 +nbd +nci +nci_spi +nci_uart +ncpfs +nct7802 +nct7904 +ne2k-pci +neofb +net1080 +net2272 +net2280 +netconsole +netjet +netlink_diag +netrom +netup-unidvb +netxen_nic +newtonkbd +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_ipv4 +nf_nat_ipv6 +nf_nat_irc +nf_nat_masquerade_ipv4 +nf_nat_masquerade_ipv6 +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_redirect +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_synproxy_core +nf_tables +nf_tables_arp +nf_tables_bridge +nf_tables_inet +nf_tables_ipv4 +nf_tables_ipv6 +nf_tables_netdev +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfcwilink +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_log +nfnetlink_queue +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat_ipv4 +nft_chain_nat_ipv6 +nft_chain_route_ipv4 +nft_chain_route_ipv6 +nft_compat +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_exthdr +nft_hash +nft_limit +nft_log +nft_masq +nft_masq_ipv4 +nft_masq_ipv6 +nft_meta +nft_meta_bridge +nft_nat +nft_queue +nft_rbtree +nft_redir +nft_redir_ipv4 +nft_redir_ipv6 +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +ni_6527 +ni_65xx +ni_660x +ni_670x +ni_at_a2150 +ni_at_ao +ni_atmio +ni_atmio16d +ni_daq_700 +ni_daq_dio24 +ni_labpc +ni_labpc_common +ni_labpc_cs +ni_labpc_isadma +ni_labpc_pci +ni_mio_cs +ni_pcidio +ni_pcimio +ni_tio +ni_tiocmd +ni_usb6501 +nicstar +nilfs2 +niu +nlmon +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +nmclan_cs +nosy +notifier-error-inject +nouveau +nozomi +nps_enet +ns558 +ns83820 +nsc-ircc +nsp32 +nsp_cs +ntb +ntb_netdev +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +null_blk +nvidiafb +nvme +nvmem_core +nxp-nci +nxp-nci_i2c +nxp-ptn3460 +nxt200x +nxt6000 +objlayoutdriver +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +of_xilinx_wdt +ofpart +old_belkin-sir +omap4-keypad +omfs +omninet +on20 +on26 +onenand +opencores-kbd +openvswitch +oprofile +opt3001 +opticon +option +or51132 +or51211 +orinoco +orinoco_cs +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +osd +osdblk +osst +oti6858 +ov2640 +ov5642 +ov6650 +ov7640 +ov7670 +ov772x +ov9640 +ov9740 +overlay +oxu210hp-hcd +p54common +p54pci +p54spi +p54usb +p8022 +p8023 +pa12203001 +palmas-pwrbutton +palmas-regulator +pandora_bl +panel +panel-lg-lg4573 +panel-samsung-ld9040 +panel-samsung-s6e8aa0 +panel-sharp-lq101r1sx01 +panel-simple +parade-ps8622 +paride +parkbd +parport +parport_ax88796 +parport_cs +parport_pc +parport_serial +pata_ali +pata_amd +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_of_platform +pata_oldpiix +pata_opti +pata_optidma +pata_pcmcia +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sch +pata_serverworks +pata_sil680 +pata_sis +pata_sl82c105 +pata_triflex +pata_via +pc300too +pcap-regulator +pcap_keys +pcap_ts +pcbc +pcd +pcf50633 +pcf50633-adc +pcf50633-backlight +pcf50633-charger +pcf50633-gpio +pcf50633-input +pcf50633-regulator +pcf8574_keypad +pcf8591 +pch_udc +pci +pci-stub +pci200syn +pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad +pcmcia +pcmcia_core +pcmcia_rsrc +pcmciamtd +pcmda12 +pcmmio +pcmuio +pcnet32 +pcnet_cs +pcrypt +pcspkr +pcwd_pci +pcwd_usb +pd +pd6729 +pda_power +pdc_adma +peak_pci +peak_pcmcia +peak_usb +pegasus +penmount +percpu_test +pf +pfuze100-regulator +pg +phantom +phonet +phram +phy-bcm-kona-usb2 +phy-exynos-usb2 +phy-gpio-vbus-usb +phy-isp1301 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-tahvo +phy-tusb1210 +physmap +physmap_of +pixcir_i2c_ts +pkcs7_test_key +pktcdvd +pktgen +pl2303 +plat-ram +plat_nand +platform_lcd +plip +plusb +pluto2 +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm80xx +pm8941-wled +pmbus +pmbus_core +pmc551 +pmcraid +pmu_battery +pn533 +pn544 +pn544_i2c +pn_pep +poly1305_generic +port100 +powermate +powr1220 +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_core +pps_parport +pptp +prism2_usb +ps2mult +psmouse +psnap +pt +ptp +pulsedlight-lidar-lite-v2 +pvrusb2 +pwc +pwm-beeper +pwm-fan +pwm-fsl-ftm +pwm-lp3943 +pwm-pca9685 +pwm-regulator +pwm-twl +pwm-twl-led +pwm_bl +pxa27x_udc +qcaspi +qcaux +qcom-spmi-iadc +qcom-spmi-temp-alarm +qcom-spmi-vadc +qcom_spmi-regulator +qcserial +qed +qede +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qlogic_cs +qlogicfas408 +qm1d1c0042 +qmi_wwan +qnx4 +qnx6 +qsemi +qt1010 +qt1070 +qt2160 +quatech2 +quatech_daqp_cs +quota_tree +quota_v1 +quota_v2 +qxl +r128 +r592 +r6040 +r8152 +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r852 +r8712u +r8723au +r8a66597-hcd +r8a66597-udc +rack-meter +radeon +radeonfb +radio-bcm2048 +radio-i2c-si470x +radio-keene +radio-ma901 +radio-maxiradio +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-shark +radio-si476x +radio-tea5764 +radio-usb-si470x +radio-usb-si4713 +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ramoops +raw +ray_cs +rbd +rbtree_test +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-asus-pc39 +rc-asus-ps3-100 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-delock-61959 +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-dvbsky +rc-em-terratec +rc-encore-enltv +rc-encore-enltv-fm53 +rc-encore-enltv2 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-pctv-sedna +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-reddo +rc-snapstream-firefly +rc-streamzap +rc-su3000 +rc-tbs-nec +rc-technisat-ts35 +rc-technisat-usb2 +rc-terratec-cinergy-c-pci +rc-terratec-cinergy-s2-hd +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-total-media-in-hand-02 +rc-trekstor +rc-tt-1500 +rc-twinhan-dtv-cab-ci +rc-twinhan1027 +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rc5t583-regulator +rdc321x-southbridge +rdma_cm +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +redboot +redrat3 +reed_solomon +regmap-spmi +regulator-haptic +reiserfs +remoteproc +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd_ftl +rfkill-gpio +rfkill-regulator +rio-scan +rio500 +rionet +rivafb +rj54n1cb0c +rk808 +rk808-regulator +rmd128 +rmd160 +rmd256 +rmd320 +rn5t618 +rn5t618-regulator +rn5t618_wdt +rndis_host +rndis_wlan +rocket +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpcrdma +rpcsec_gss_krb5 +rpr0521 +rrpc +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt5033 +rt5033-regulator +rt5033_battery +rt61pci +rt73usb +rt9455_charger +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab3100 +rtc-abx80x +rtc-as3722 +rtc-bq32k +rtc-bq4802 +rtc-cmos +rtc-da9052 +rtc-da9055 +rtc-da9063 +rtc-ds1286 +rtc-ds1305 +rtc-ds1307 +rtc-ds1343 +rtc-ds1347 +rtc-ds1374 +rtc-ds1390 +rtc-ds1511 +rtc-ds1553 +rtc-ds1672 +rtc-ds1685 +rtc-ds1742 +rtc-ds2404 +rtc-ds3232 +rtc-ds3234 +rtc-em3027 +rtc-fm3130 +rtc-generic +rtc-hid-sensor-time +rtc-hym8563 +rtc-isl12022 +rtc-isl12057 +rtc-isl1208 +rtc-lp8788 +rtc-m41t80 +rtc-m41t93 +rtc-m41t94 +rtc-m48t35 +rtc-m48t59 +rtc-m48t86 +rtc-max6900 +rtc-max6902 +rtc-max77686 +rtc-max77802 +rtc-max8907 +rtc-max8925 +rtc-max8997 +rtc-max8998 +rtc-mc13xxx +rtc-mcp795 +rtc-msm6242 +rtc-mt6397 +rtc-palmas +rtc-pcap +rtc-pcf2123 +rtc-pcf2127 +rtc-pcf50633 +rtc-pcf85063 +rtc-pcf8523 +rtc-pcf8563 +rtc-pcf8583 +rtc-r9701 +rtc-rc5t583 +rtc-rk808 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rv8803 +rtc-rx4581 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-snvs +rtc-stk17ta8 +rtc-tps6586x +rtc-tps65910 +rtc-tps80031 +rtc-twl +rtc-v3020 +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtc-zynqmp +rtc_cmos_setup +rtd520 +rti800 +rti802 +rtl2830 +rtl2832 +rtl2832_sdr +rtl8150 +rtl8187 +rtl8188ee +rtl818x_pci +rtl8192c-common +rtl8192ce +rtl8192cu +rtl8192de +rtl8192ee +rtl8192se +rtl8723-common +rtl8723ae +rtl8723be +rtl8821ae +rtl8xxxu +rtl_pci +rtl_usb +rtllib +rtllib_crypt_ccmp +rtllib_crypt_tkip +rtllib_crypt_wep +rtlwifi +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rx51_battery +rxkad +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3fb +s3fwrn5 +s3fwrn5_i2c +s526 +s5h1409 +s5h1411 +s5h1420 +s5m8767 +s626 +s6e63m0 +s921 +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7185 +saa7706h +safe_serial +salsa20_generic +samsung-sxgbe +sata_inic162x +sata_mv +sata_nv +sata_promise +sata_qstor +sata_sil +sata_sil24 +sata_sis +sata_sx4 +sata_uli +sata_via +sata_vsc +savage +savagefb +sbp_target +sbs-battery +sc16is7xx +sc92031 +sca3000 +sch_atm +sch_cbq +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_fq +sch_fq_codel +sch_gred +sch_hfsc +sch_hhf +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_pie +sch_plug +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_tbf +sch_teql +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +scsi_transport_srp +sctp +sctp_probe +sdhci +sdhci-of-arasan +sdhci-of-at91 +sdhci-of-esdhc +sdhci-of-hlwd +sdhci-pci +sdhci-pltfm +sdhci_f_sdh30 +sdio_uart +sdricoh_cs +sedlbauer_cs +seed +sensorhub +seqiv +ser_gigaset +serial2002 +serial_cs +serio_raw +sermouse +serpent_generic +serport +ses +sfc +sh_veu +sha1-powerpc +shark2 +shpchp +sht15 +sht21 +shtc1 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sil164 +sir-dev +sis +sis190 +sis5595 +sis900 +sisfb +sisusbvga +sit +sja1000 +sja1000_isa +sja1000_platform +skfp +skge +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +sl811_cs +slcan +slip +slram +sm501 +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smb347-charger +smc91c92_cs +smipcie +smm665 +smsc +smsc-ircc2 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsmdtv +smssdio +smsusb +snd +snd-ac97-codec +snd-ad1889 +snd-ak4113 +snd-ak4114 +snd-ak4117 +snd-ak4xxx-adda +snd-ali5451 +snd-aloop +snd-als300 +snd-als4000 +snd-aoa +snd-aoa-codec-onyx +snd-aoa-codec-tas +snd-aoa-codec-toonie +snd-aoa-fabric-layout +snd-aoa-i2sbus +snd-aoa-soundbus +snd-atiixp +snd-atiixp-modem +snd-au8810 +snd-au8820 +snd-au8830 +snd-aw2 +snd-azt3328 +snd-bcd2000 +snd-bebob +snd-bt87x +snd-ca0106 +snd-cmipci +snd-cs4281 +snd-cs46xx +snd-cs8427 +snd-ctxfi +snd-darla20 +snd-darla24 +snd-dice +snd-dummy +snd-echo3g +snd-emu10k1 +snd-emu10k1-synth +snd-emu10k1x +snd-emux-synth +snd-ens1370 +snd-ens1371 +snd-es1938 +snd-es1968 +snd-firewire-digi00x +snd-firewire-lib +snd-firewire-tascam +snd-fireworks +snd-fm801 +snd-gina20 +snd-gina24 +snd-hda-codec +snd-hda-codec-analog +snd-hda-codec-ca0110 +snd-hda-codec-ca0132 +snd-hda-codec-cirrus +snd-hda-codec-cmedia +snd-hda-codec-conexant +snd-hda-codec-generic +snd-hda-codec-hdmi +snd-hda-codec-idt +snd-hda-codec-realtek +snd-hda-codec-si3054 +snd-hda-codec-via +snd-hda-core +snd-hda-intel +snd-hdsp +snd-hdspm +snd-hrtimer +snd-hwdep +snd-i2c +snd-ice1712 +snd-ice1724 +snd-ice17xx-ak4xxx +snd-indigo +snd-indigodj +snd-indigodjx +snd-indigoio +snd-indigoiox +snd-intel8x0 +snd-intel8x0m +snd-isight +snd-korg1212 +snd-layla20 +snd-layla24 +snd-lola +snd-lx6464es +snd-maestro3 +snd-mia +snd-mixart +snd-mixer-oss +snd-mona +snd-mpu401 +snd-mpu401-uart +snd-mtpav +snd-mts64 +snd-nm256 +snd-opl3-lib +snd-opl3-synth +snd-oxfw +snd-oxygen +snd-oxygen-lib +snd-pcm +snd-pcm-dmaengine +snd-pcm-oss +snd-pcxhr +snd-pdaudiocf +snd-portman2x4 +snd-powermac +snd-pt2258 +snd-rawmidi +snd-riptide +snd-rme32 +snd-rme96 +snd-rme9652 +snd-sb-common +snd-scs1x +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-soc-ac97 +snd-soc-adau1701 +snd-soc-ak4104 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-alc5623 +snd-soc-core +snd-soc-cs35l32 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42xx8 +snd-soc-cs42xx8-i2c +snd-soc-cs4349 +snd-soc-es8328 +snd-soc-fsl-asrc +snd-soc-fsl-esai +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-gtm601 +snd-soc-imx-audmux +snd-soc-pcm1681 +snd-soc-pcm1792a-codec +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-rt5631 +snd-soc-sgtl5000 +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-simple-card +snd-soc-spdif-rx +snd-soc-spdif-tx +snd-soc-ssm2602 +snd-soc-ssm2602-i2c +snd-soc-ssm2602-spi +snd-soc-ssm4567 +snd-soc-sta32x +snd-soc-sta350 +snd-soc-sti-sas +snd-soc-tas2552 +snd-soc-tas5086 +snd-soc-tas571x +snd-soc-tfa9879 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic3x +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8962 +snd-soc-wm8978 +snd-soc-xtfpga-i2s +snd-sonicvibes +snd-timer +snd-trident +snd-ua101 +snd-usb-6fire +snd-usb-audio +snd-usb-caiaq +snd-usb-hiface +snd-usb-line6 +snd-usb-pod +snd-usb-podhd +snd-usb-toneport +snd-usb-usx2y +snd-usb-variax +snd-usbmidi-lib +snd-util-mem +snd-via82xx +snd-via82xx-modem +snd-virmidi +snd-virtuoso +snd-vx-lib +snd-vx222 +snd-vxpocket +snd-ymfpci +snic +soc_button_array +soc_camera +soc_camera_platform +soc_mediabus +softdog +softing +softing_cs +solo6x10 +solos-pci +sony-btf-mpx +soundcore +sp2 +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +spectrum_cs +speedfax +speedtch +spi-altera +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-gpio +spi-lm70llp +spi-nor +spi-oc-tiny +spi-pxa2xx-platform +spi-sc18is602 +spi-tle62x0 +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spmi +sr9700 +sr9800 +ssb +ssb-hcd +ssd1307fb +ssfdc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +ssu100 +st +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_spi +st_magn +st_magn_i2c +st_magn_spi +st_pressure +st_pressure_i2c +st_pressure_spi +st_sensors +st_sensors_i2c +st_sensors_spi +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +ste_modem_rproc +stex +stinger +stir4200 +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm_console +stm_core +stmmac +stmmac-platform +stmpe-keypad +stmpe-ts +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv6110 +stv6110x +sun4i-codec +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +svgalib +swim3 +sx8 +sx8654 +sx9500 +sym53c500_cs +sym53c8xx +symbolserial +synaptics_i2c +synaptics_i2c_rmi4 +synaptics_usb +synclink +synclink_cs +synclink_gt +synclinkmp +syscopyarea +sysfillrect +sysimgblt +sysv +t1pci +t5403 +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +target_core_user +tc3589x-keypad +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tcs3414 +tcs3472 +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tda998x +tdfx +tdfxfb +tdo24m +tea +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tef6862 +tehuti +tekram-sir +teles_cs +teranetics +test-hexdump +test-kstrtox +test-string_helpers +test_bpf +test_firmware +test_module +test_power +test_printf +test_static_key_base +test_static_keys +test_udelay +test_user_copy +tg3 +tgr192 +therm_windtunnel +thmc50 +thunderbolt +ti-adc081c +ti-adc128s052 +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_dac7512 +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timeriomem-rng +tipc +tlan +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmp006 +tmp102 +tmp103 +tmp401 +tmp421 +toim3232-sir +torture +toshsd +touchit213 +touchright +touchwin +tpci200 +tpm-rng +tpm_atmel +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tps40422 +tps51632-regulator +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65090-charger +tps65090-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps65218-regulator +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps80031-regulator +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsi568 +tsi57x +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2x7x_core +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tvaudio +tveeprom +tvp5150 +tw2804 +tw68 +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-madc-hwmon +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6040-vibra +twofish_common +twofish_generic +typhoon +u132-hcd +uPD98402 +u_ether +u_serial +uartlite +uas +ubi +ubifs +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +uda1342 +udc-core +udc-xilinx +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufshcd +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_fsl_elbc_gpcm +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uli526x +ulpi +umc +umem +ums-alauda +ums-cypress +ums-datafab +ums-eneub6250 +ums-freecom +ums-isd200 +ums-jumpshot +ums-karma +ums-onetouch +ums-realtek +ums-sddr09 +ums-sddr55 +ums-usbat +uninorth-agp +unix_diag +upd64031a +upd64083 +us5182d +usb-serial-simple +usb-storage +usb3503 +usb8xxx +usb_8dev +usb_debug +usb_f_acm +usb_f_ecm +usb_f_ecm_subset +usb_f_eem +usb_f_fs +usb_f_hid +usb_f_mass_storage +usb_f_midi +usb_f_ncm +usb_f_obex +usb_f_phonet +usb_f_printer +usb_f_rndis +usb_f_serial +usb_f_ss_lb +usb_f_uac1 +usb_f_uac2 +usb_f_uvc +usb_gigaset +usb_wwan +usbatm +usbdux +usbduxfast +usbduxsigma +usbhid +usbip-core +usbip-host +usbkbd +usblcd +usbled +usblp +usbmisc_imx +usbmon +usbmouse +usbnet +usbserial +usbsevseg +usbtest +usbtmc +usbtouchscreen +usbtv +usbvision +usdhi6rol0 +userio +userspace-consumer +ushc +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-dv-timings +v4l2-flash-led-class +v4l2-mem2mem +vcan +vcnl4000 +ves1820 +ves1x93 +veth +vf610_adc +vga16fb +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_net +vhost_scsi +via +via-ircc +via-rhine +via-sdmmc +via-velocity +via686a +videobuf-core +videobuf-dma-sg +videobuf-dvb +videobuf-vmalloc +videobuf2-core +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-dvb +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videocodec +videodev +vim2m +viperboard +viperboard_adc +virt-dma +virtio-gpu +virtio-rng +virtio_input +virtio_scsi +virtual +visor +vitesse +vivid +vlsi_ir +vmac +vme_ca91cx42 +vme_pio2 +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmxnet3 +vp27smpx +vport-geneve +vport-gre +vport-vxlan +vpx3220 +vrf +vringh +vsock +vsxxxaa +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxge +vxlan +vz89x +w1-gpio +w1_bq27000 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1_ds2781 +w1_ds28e04 +w1_smem +w1_therm +w5100 +w5300 +w6692 +w83781d +w83791d +w83792d +w83793 +w83795 +w83977af_ir +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +walkera0701 +wanxl +warrior +wbsd +wcn36xx +wd719x +wdrtas +wdt87xx_i2c +wdt_pci +whc-rc +whci +whci-hcd +whiteheat +wil6210 +wimax +winbond-840 +windfarm_core +wire +wishbone-serial +wl1251 +wl1251_sdio +wl1251_spi +wl1273-core +wl12xx +wl18xx +wl3501_cs +wlcore +wlcore_sdio +wlcore_spi +wm831x-dcdc +wm831x-hwmon +wm831x-isink +wm831x-ldo +wm831x-on +wm831x-ts +wm831x_backup +wm831x_bl +wm831x_power +wm831x_wdt +wm8350-hwmon +wm8350-regulator +wm8350_power +wm8350_wdt +wm8400-regulator +wm8739 +wm8775 +wm8994-core +wm8994-irq +wm8994-regmap +wm8994-regulator +wm97xx-ts +wp512 +wusb-cbaf +wusb-wa +wusbcore +x25 +x25_asy +x_tables +xc4000 +xc5000 +xcbc +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_ipcomp +xfrm_user +xfs +xgifb +xhci-plat-hcd +xilinx-tpg +xilinx-video +xilinx-vtc +xilinx_emaclite +xilinx_ps2 +xilinx_uartps +xillybus_core +xillybus_of +xillybus_pcie +xirc2ps_cs +xircom_cb +xor +xpad +xr_usb_serial_common +xsens_mt +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +xt_NETMAP +xt_NFLOG +xt_NFQUEUE +xt_RATEEST +xt_REDIRECT +xt_SECMARK +xt_TCPMSS +xt_TCPOPTSTRIP +xt_TEE +xt_TPROXY +xt_TRACE +xt_addrtype +xt_bpf +xt_cgroup +xt_cluster +xt_comment +xt_connbytes +xt_connlabel +xt_connlimit +xt_connmark +xt_conntrack +xt_cpu +xt_dccp +xt_devgroup +xt_dscp +xt_ecn +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_ipcomp +xt_iprange +xt_ipvs +xt_l2tp +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_nat +xt_nfacct +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_realm +xt_recent +xt_sctp +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_tcpudp +xt_time +xt_u32 +xtkbd +xts +xusbatm +xz_dec_test +yam +yealink +yellowfin +yenta_socket +yurex +zatm +zaurus +zd1201 +zd1211rw +zforce_ts +zhenhua +zl10036 +zl10039 +zl10353 +zl6100 +zlib +zr36016 +zr36050 +zr36060 +zr36067 +zr364xx +zram +zynq-fpga only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-106.129/powerpc/powerpc64-emb +++ linux-raspi2-4.4.0/debian.master/abi/4.4.0-106.129/powerpc/powerpc64-emb @@ -0,0 +1,17237 @@ +EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe +EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble +EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL crypto/mcryptd 0x6310e901 mcryptd_arm_flusher +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/atm/suni 0x68f4622a suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x3a3d4a98 bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0x79d1b084 bcma_core_irq +EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str +EXPORT_SYMBOL drivers/block/paride/paride 0x01c94bce pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x0d74f83d paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x1a5c6a83 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x841c36e7 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x8df2d11a pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x94566518 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x9be8f1f4 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0xaa182144 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xac5ab8d9 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xb867eded paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0xc0f36df1 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xd5c61a73 pi_write_block +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xccba0ab6 btbcm_patchram +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fae3bac ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x639d9b6e ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x6b4a490a ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x6c7dbdbf ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x6e718b16 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xac8be85b ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x2b36e38d st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x72985374 st33zp24_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x0f0874a0 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x7bd62aa6 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xafb3541b xillybus_init_endpoint +EXPORT_SYMBOL drivers/crypto/caam/caam 0x1c758e97 caam_get_era +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x0de93aaf caam_jr_free +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x1407a511 caam_jr_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x31a4987a caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x3ec1e19a split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xa683396b caam_jr_strstatus +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xe842b38d gen_split_key +EXPORT_SYMBOL drivers/crypto/talitos 0x1bd0a055 talitos_submit +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x4fc6b61a dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x83b5c443 dw_dma_cyclic_free +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x8a24be00 dw_dma_get_src_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xc02b175e dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xdc0466c9 dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xfa0d03f0 dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/edac/edac_core 0xf4898f1b edac_mc_find +EXPORT_SYMBOL drivers/edac/mpc85xx_edac 0xee6c3ba8 mpc85xx_pci_err_probe +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04d0f641 fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0f7d6af8 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x11491e67 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x11c6b5c3 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x17faf1ae fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x27c48b06 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2b0a126a fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x331bbf02 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x34adedf1 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3936d614 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3af43bc8 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4254a70b fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4ff65e1a fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x555b273b fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x645b715f fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6787b169 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8ed1e143 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9976d15f fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9aa511d8 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9b453cb7 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa137e0a6 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb479448d fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb4bd0c25 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xdcca22c0 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe202216d fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3c20b7a fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xea0d9aa2 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xebfa4875 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0xed45e25c fw_bus_type +EXPORT_SYMBOL drivers/fmc/fmc 0x1eb9d8cf fmc_device_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x2081b92a fmc_driver_register +EXPORT_SYMBOL drivers/fmc/fmc 0x22f1e0f1 fmc_find_sdb_device +EXPORT_SYMBOL drivers/fmc/fmc 0x29beed0f fmc_reprogram +EXPORT_SYMBOL drivers/fmc/fmc 0x3fcd20d7 fmc_device_register +EXPORT_SYMBOL drivers/fmc/fmc 0x560fe5b5 fmc_show_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x71770d88 fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x78a19792 fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x88cd079a fmc_device_register_n +EXPORT_SYMBOL drivers/fmc/fmc 0x8c800e1b fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xd04a0a46 fmc_device_unregister_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0057e806 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06fa82a5 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b38f0e0 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bd4c389 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bdbf4d3 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0be3c0c4 drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ed13945 drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f12bc3c drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f3fcbab drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10d33dae drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10ef96f4 drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1224551c drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12497b94 drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1386c700 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1537598a drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16bf8518 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x170851df drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x188367be drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19b706ba drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19d1abfa drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19e4430f drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bbf2015 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bd3cbd6 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c19786d drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c5811eb drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c5d143a drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c89db37 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21fb924e drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23405642 drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2350e37a drm_platform_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x238184d6 drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23c8510f drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23e45c7b drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2448b262 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24ea6eb4 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25a7acb8 drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2812a044 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ad630d6 drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c588ff1 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d109438 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e5d68ad drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2eaf3f00 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f3dcb95 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30321b77 drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x308fb48a drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30c38b5f drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3341fff7 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34b5a57e drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35fbd1b1 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x362ce0c2 drm_plane_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36af85f1 drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38ef4485 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38fb1f77 drm_agp_bind_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39a9d436 drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b3603e4 drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba0c00c drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c77cfd0 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3de83ec5 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e57cf87 drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ecf666e drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ef84b16 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40f65396 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43866777 drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43ca42c5 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44910e47 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x452b0c00 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4671344f drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47e2011f drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4979fa63 drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49a95029 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a168c7c drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a54112c drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a74e696 of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a868570 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a8eca22 drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c4f113e drm_connector_unplug_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c988a3b drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cfbd1c9 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f2ff7f5 drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fcc897b drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51842b60 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51d2e570 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51db353a drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x520a8de9 drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5232411d drm_framebuffer_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x529c4b59 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53ab6c89 drm_atomic_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x548ea62d drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54b481e5 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55876d8b drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56d46d4a drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57332c3b drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b57192d drm_crtc_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c4f28f2 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c6f1d07 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7318dc drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e5d0404 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ed13d5a drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f85df84 drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f974d0d drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60138adf drm_framebuffer_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6154d9ae drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61b45e19 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x631c4ec0 drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63eb3feb drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x649f416e drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x675f2ac4 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6795bf6a drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x687fec63 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68ed607c drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6998aff7 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bcd3835 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c2d2b4e drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d11b32b drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d756df9 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e80fb0b drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6faadec1 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6fb4086b drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x704bf914 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7057c3a9 drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70715f40 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71f208c9 drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72d04d8b drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7318315e drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x731dce6c drm_legacy_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x741bb719 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74cf8c60 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7675dc56 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77861de2 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77cacfa1 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78b0e02a drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78cc5e0e drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a325d44 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7aa48831 drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b90accf drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bfcaf79 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dc22823 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e0f6b66 drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7eb8b7dd drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fa19555 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80594584 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x818a7655 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82b96322 drm_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c96109 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x837c85bb drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x839e9345 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x840e59b3 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84833819 drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8492f7a0 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84fea47f drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x855b6160 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a61f288 drm_encoder_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8aa9a0d9 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ad6fd73 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b88ae60 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c089c52 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c9484f2 drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ce0fe58 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e0085e3 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8edba031 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f3d6d47 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f8bbba9 drm_connector_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x907889e6 drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92327143 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x925e3d10 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93be181c drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93e504fc drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9443bb1d drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96ced9b9 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97a173c3 drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x981439d7 drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x987d2512 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9971da4d drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99a87ae9 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a79c163 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9aa4e18b drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9adf5fa7 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b24edfd drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b26bfba drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b5f0ca5 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b77007d drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce6fb39 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ec1c526 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f0d7b5d drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0284b62 drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0685fcc drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa16e5fe1 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2647dda drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa29293b2 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2d4ae75 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa307c7f1 drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa438a66a drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5aedaa6 drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5fd43bc drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa840ff60 drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa96b989c drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaab79b87 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad614a22 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae1e4112 drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf93181d drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafe9b358 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb07a33ad drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1b5db47 drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1c563e4 drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb25ed6ed drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb32cf547 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3542082 drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5540008 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb639fc3a drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7c5d74c drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb351253 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbc58c92 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd8fd0f7 drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbefbcda9 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfc45cb4 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbff98c8d drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0c37e80 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2438847 drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2589f99 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3222800 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc34bb983 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4a47d5e drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6704700 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6cf3156 drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7284307 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7286de6 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8d9775b drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcaa5600b drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcafe823d drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcceb9c8f drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdf4484a drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf7190b5 drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd00427ea drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd013d4b4 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0941d83 drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd127129f drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3a7cd01 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3a8e938 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3c9c94b drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5462cd0 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd782f2f2 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7ac3f20 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd86d7673 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8d47828 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb10edcc drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd4994c6 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0271db5 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1447f62 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1c825fc drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2807dea drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2fcb4ad drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2ffd7a5 drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3320927 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe368a52b drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3bcdb2e drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe580f08d drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe60a8437 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe676a452 drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe750be77 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe841e3bb drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe879d9ee drm_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a9ed3b drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe95fa5d1 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea72d3e7 drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb700bf4 drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb7d7b66 drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xecb335d5 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xedac77ce drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee766fbc drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1415963 drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b098be drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4b5676a drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf52cf7dd drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6de41b3 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6fdadec drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf745e17f drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7e51a31 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8309130 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf86a4aaf drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8a84ca4 drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9a46bc4 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9fc83f7 drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb04ef3d drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb50d67a drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc8a0879 drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcdbb896 drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdcd7771 drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe1bbce8 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe90834f drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00ef21e4 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00efe2c9 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x014c8394 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01b423df drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02719841 drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03002be9 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03f01949 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0486427f drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04c9e197 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0617c0e5 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x061f1007 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0957dbef drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a5036b7 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1430a695 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1598e3f1 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1838fe00 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x199a39d5 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ab42e55 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1dd8b69f drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f24899e drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fb93b19 drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20effc77 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23f3a85c drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26480e35 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x270bf379 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28cc4de5 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a140625 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c9be015 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e1eca26 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e8226c3 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x371d5973 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x387bdadf drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x388aef3e drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38e2b799 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b193b15 drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c96bfb9 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40908912 drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x421e3e07 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4272c82d drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44c5469d __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45008b87 drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x469c56da drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49276ea6 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49e70214 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e307452 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x512e8573 drm_helper_probe_single_connector_modes_nomerge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51bbd66a drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54d3fc92 drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x594c8f7d drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5bda7dc0 drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c6ef7d9 drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5cc74b7d drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f2df717 drm_helper_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f8f9c9a drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x602a8e81 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60950792 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x609c7c2b drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x617a4e45 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6338324c __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64666e0d __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64ce9eb0 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6511c799 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65219a9e drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6af36319 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e0b485d drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ed8ddcf drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6fe8e24a drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72915dea drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x779e415f __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x793ae80b drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a16dbdb drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7be8eb09 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d84ceea drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e7a424e drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f46fce3 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80d40a39 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82843b38 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x846e3d83 drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84d51063 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86f744cf drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a0873f5 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x905d08fb drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x909eac3a drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x936bde85 drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9563e99e drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98095624 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x982f334d drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b171b51 drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9cba3ba2 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa30b583e drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3b94e43 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3cb0a1c drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa46f5301 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa95d833 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xabfa1644 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb045e476 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb58d6f31 drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb58fc2f7 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5b6c516 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5bf7fdd drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6e779e5 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7a30220 drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb89a345c drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb956a302 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbdde182d drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf09ffde drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc03d1fc9 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3348f13 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc344c3ec drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3bfa095 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4e0d321 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5d769e4 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5ea72e0 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6b7c9ba drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc707bd9b drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb48923e drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd66aa79 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce9efa3a drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcee51a3c drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcff5d6e7 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd00d5d11 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd077869e drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0eca685 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd40900f6 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd728418d drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd73bac93 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd84384a1 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8ccef76 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdecd4ab2 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3d64cd6 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6238cdb drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe78f2500 drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeca4f5c3 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xecd974e8 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed3191de drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed45e7b9 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf92fd369 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa5837b4 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb18bfc4 drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfdef12b9 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe3a0109 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff794a88 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x013fb635 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x015d1cb3 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0f43c7d2 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1356a62c ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x187f7b01 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a412b3d ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1b014379 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2ba84f72 ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2cedcad9 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2f7d734f ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x341897ba ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x35cb519e ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3c648883 ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x429128a9 ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x43a3c016 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x47a3745e ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4d43936c ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e8dd264 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x564e1aee ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a8fdfea ttm_vt_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6052860c ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x610e641b ttm_agp_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6128ce4d ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x62cbec6e ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7a9a9331 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7c79c4b2 ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d55da85 ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7f58ca58 ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x83c096ce ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84a13931 ttm_write_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x873d0abd ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x876f2779 ttm_agp_tt_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89a443de ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89edfbed ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d14adbf ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8f38efe3 ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x92271100 ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x92ee72f0 ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x966a2b5e ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9809828a ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d0eb91 ttm_ref_object_add +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9bd0939b ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9c90e7dd ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa2a129fd ttm_suspend_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa48c1bce ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa73de2a9 ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb28d0e07 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb36647e4 ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb60f0121 ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb83c6470 ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb8ec64c5 ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbad27271 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbb72cd5b ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc29dd08d ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc2c532a2 ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5f0c2da ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcba1d5f1 ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcbb59bd4 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcc57bc04 ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd7f51742 ttm_suspend_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdb6e1f8b ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdd33fc5d ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdde8e45a ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xddf67926 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe13e5bfa ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe2300aff ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe29cfab3 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe2e07a0b ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfb352c61 ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfde3355c ttm_bo_device_init +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x1f19ec51 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x43389dfb i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xd3525e99 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x8c74404a i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x977b8773 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x15636d78 amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x130442a3 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x131ca5b2 mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1ac0fe75 mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5f9993cf mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x70318b77 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7da2a27f mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8d0919e3 mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8f73adb4 mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x91448921 mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x94517ad9 mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa5624272 mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xaf4b1773 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb4143521 mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbf61a12a mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd3200eb9 mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfa0f0f25 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x2b617f62 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x467f1b19 st_accel_common_remove +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x2c759235 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x7cfb17aa iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xb0ac886d iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xc6d70f95 devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xc85b4df6 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xe2719640 devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x12ca4f66 hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x1d4bb411 hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x4f4032c7 hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x636d659f hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xaa30a081 hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xce5900c7 hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x1a2ab685 hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x6c64967a hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x826d1c78 hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xf2f6cc3d hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x07754bce ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x14cb4d76 ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3cf63db0 ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x4f9f5d05 ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x75c6bcae ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x933a57da ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xd3e3c7a0 ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xfb1e3a1f ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xff1bd928 ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x46781b7b ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x6b2b7b39 ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x7a139591 ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x7e95944c ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xbfeab8d9 ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x13dc01dc ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x4608a587 ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x6420004c ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x01d9427a st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x03b09ca7 st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0881ec5a st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1922fd29 st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2cccdf74 st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x520faaa3 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x6808b4fe st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x6f5fd075 st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7756f37b st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x97b6c748 st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb08150bc st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb18da3fa st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc7fe13d8 st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xdc63ea3d st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xdeaa1319 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf07b9f2d st_sensors_get_buffer_element +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xfb6b20a3 st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x20c4ea75 st_sensors_of_i2c_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x323a7283 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x24427312 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x1d38f29c st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xfbb98de2 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/humidity/hts221 0xce1532c6 hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x712e39f5 adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x9f19b5bd adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/industrialio 0x05a2606b iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x1b8b8fe4 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x2e819ffa iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x3f616071 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x402f49f0 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x5001779d iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x51b3704a iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x5e020760 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x67e4a713 iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0x7894bc2c iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x99bfedbf iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x9fcb4dc1 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xa1f3262e iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0xa85cd5a5 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0xbfb84e38 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0xc79e56cc iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe3456ad1 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x40092b06 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xa0a3928e iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x364d0ce6 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x3ebf6569 st_magn_common_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x4d9dcb2e ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x6756b775 st_press_common_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xb639a656 st_press_common_probe +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x049ace30 rdma_addr_find_smac_by_sgid +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1ea5767b rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x32a8402c rdma_addr_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x44f9cb5a rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xeb4e6683 rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xeb8704ca rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xf040e516 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x22dad0b0 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2a196665 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x31bf6d4e ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x410aad6b ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4c6fc445 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5417ac7e cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5e549246 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x627b5b59 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x63a6b36d ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6fe9e08a ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x79c0d3fa ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7a73bf73 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7bf87ec5 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa850d66e ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd8bc9f3b ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf46ff7da ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfa55dd98 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfc0fd578 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00c1021f ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09180b3f ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a1f2839 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0bed9c4b ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1c0019 ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18c5d14e ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19c6e06c ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a1c3506 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d012a20 ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1dffdfad ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x224ee36e ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x235215e1 ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x245127af ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28be6b08 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2aaae9fe ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b6e2f6e ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33139c82 ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x364e04f8 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39afad3c ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e81d1ae ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44700bbe ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44988daa ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47e9ece5 ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x497ff6a9 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49a788bc ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4faea346 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53e5b4d2 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x573242c6 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a71ec9d ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d79a633 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x620e5df7 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63c0ef59 ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64f523cc ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x651aa897 ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ab3f182 ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e66f55e ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x769abac8 ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a226b91 ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81c40a3f ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82aba354 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86a8fa80 ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87b59af1 ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e4bc67e ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b7b6595 ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9fa07e25 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1e243b1 ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa34fd40a ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa395b118 ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa87bc24d ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3b1c46c ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb567e687 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb58becd9 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5b36b6c ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8abe4f0 ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc14bf988 ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc14e97f3 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3631f8f ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc38e7b2a ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc61fcd46 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7dbfb6c ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9c7e5b5 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf884b87 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd57f8d18 ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd62de720 ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7a0a2ce ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7e5d124 ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd85d11b4 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda3c3917 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc6dd195 ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc8ce6b0 ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe42c2809 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4726ed2 ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe55255f0 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe63639de ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8ab9153 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf036f7d5 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4429669 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5521ac1 ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf64b709b ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf899d577 ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf92d7364 ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa529cf8 ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd70c362 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x0be8489f ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x356b1d84 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x630349a1 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7190918b ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x780db9fe ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7a24a9fd ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7c8a1149 ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x996daef0 ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x9bcccf94 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xa55e6028 ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc70d423d ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xd720acd7 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xdf4684d0 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x24bc8710 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x3ae36336 ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x425dfba3 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x4f783ab4 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5318bb08 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5328d7a6 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x74495657 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9066574b ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9a1cd50d ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xd414b8d9 ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xdf66b035 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7b67b22f ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xaf498132 ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x094cc68e iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2262ba62 iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x30c77513 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x36cd3b9a iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3cfa00e9 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x56529cec iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6622c1af iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x87b0c82f iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x90b312fc iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x94527632 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9ab35615 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa469579a iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xab919ace iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd0911bc4 iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd6d422f8 iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x07e3cfd5 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1c88fb10 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x351e5179 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3a13c714 rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3e62102a rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x41f4ae99 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x54aa7140 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6d57b76c rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7475781b rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7aaefeff rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7b507035 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x86aed87b rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x890cf6b7 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9f7f4976 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb23ddb8c rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb5d2901b rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb7eaf8bb rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcb952c25 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd4d466a7 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd7fac0ea rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf9dbe634 rdma_accept +EXPORT_SYMBOL drivers/input/gameport/gameport 0x274cdb16 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x3ba95d40 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x3dfb6c39 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x487fb969 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x99ee1ebb gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xae8b7468 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0xb933aa3d gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0xe93c7825 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xf6528c07 __gameport_register_driver +EXPORT_SYMBOL drivers/input/input-polldev 0x1704f6e5 devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x7e135ded input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xbe958b92 input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xf52eeef0 input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xfd6b1462 input_allocate_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0x972cf250 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x335aff1f ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0x7ddad0f3 ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xcdf314c9 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xd3f98d15 cma3000_init +EXPORT_SYMBOL drivers/input/sparse-keymap 0x22895f6f sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x7ca5407c sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x95653a7d sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0x98356ce5 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0xa6bf7c9c sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0xb495fb99 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x0fbab7a0 ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xd462c818 ad7879_probe +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2591b048 capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x58edd27e detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x620136ae capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x631f08d6 capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7292ab34 cdebbuf_free +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x72a25a72 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xbac0b846 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc18e9eb8 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc555d2d5 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc818edf7 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe988bdb8 capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf9cd06e0 capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfd552f7a capi_message2str +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x041cfcea b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x13a490a8 b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x1a4081ad b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x240252a1 avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2ef4f634 b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x4a270248 b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x6c80c2e4 b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x724ad6c2 b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x9de4d6a6 b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x9e74e32f b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xa0fc2dc0 b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xa982bfcf b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xc0ca05df b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe5adda52 avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xec1c7671 b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x0a2c624b b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x3b9774a9 b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x4cd9dd6a b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x67c4c97e b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x7929c9a7 t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x8d15ace4 b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xc68f1f6d b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xe444ec54 b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xe604689b b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0x29562993 b1pcmcia_delcard +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x1c3a45ef mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x724472e5 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x84213c8c mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xd93321d1 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x64d44f14 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x9670b295 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6fe1ca04 FsmDelTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9f987c85 FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xa1bc94b9 FsmInitTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfa51a0d0 hisax_init_pcmcia +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x41b83775 isac_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x49baefa0 isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x4e1145ff isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x93156afb isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xec720583 isacsx_setup +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x0e850361 isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x9aec18e3 isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xa08151e6 register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x007e5322 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x00ecdc46 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x051cff19 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x22aaa0c5 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26939885 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2d0d68d5 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3995a579 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4e9d72a7 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x53d0f06f bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5efd8243 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x603b07a4 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7592d5a9 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7c342be8 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8421e6bf create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x84437dc2 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x846e58ad mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x970c68a0 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb476097e mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb708bd17 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc0e54c29 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc7a2208f mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xda1f0dcf mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xeff0d454 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/md/bcache/bcache 0x1d89bd11 bch_btree_sort_partial +EXPORT_SYMBOL drivers/md/bcache/bcache 0x1f529ce8 bch_bset_build_written_tree +EXPORT_SYMBOL drivers/md/bcache/bcache 0x26481f26 bch_btree_sort_lazy +EXPORT_SYMBOL drivers/md/bcache/bcache 0x440b4830 bch_btree_iter_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x44a37d62 bch_btree_iter_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x5b59b856 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7daccb73 bch_btree_keys_alloc +EXPORT_SYMBOL drivers/md/bcache/bcache 0x8802be4f closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0x8833b0e8 bch_btree_keys_free +EXPORT_SYMBOL drivers/md/bcache/bcache 0xa3c5c702 bch_bset_fix_invalidated_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0xb5fbc479 closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc88cd795 closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0xca5df778 __bch_bset_search +EXPORT_SYMBOL drivers/md/bcache/bcache 0xce47a6d9 bch_btree_keys_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0xd2813054 bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0xdf892351 bch_bkey_try_merge +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe67c2d16 bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe753f37a closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0xec6f33d0 bch_bset_init_next +EXPORT_SYMBOL drivers/md/dm-bufio 0x268682d2 dm_bufio_forget +EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL drivers/md/dm-log 0x021c4b7f dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x0bf5af35 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x339fdd4e dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xfbed0973 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x46f4a81f dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x47bba335 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x622fbbc1 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xa231c5ed dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xbdbc5486 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xfa38681c dm_snap_origin +EXPORT_SYMBOL drivers/md/raid456 0xd47c6c5d raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x20ebfe46 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3dbda8b4 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4417324b flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4df81bde flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x531cb1e4 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x715d873a flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x84301db4 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x86f110ec flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb06e5faf flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb5e7b7b0 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc5ede52a flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xeb225c32 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf0a78068 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/cx2341x 0x180c6980 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0x30cb4cd7 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x83b6b906 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x84d93f5a cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0xb80edb31 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0xa9e0fe93 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x1633404f tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0x8541036e tveeprom_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x057f032d dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x23c6604c dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2bdc06ef dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2bf0d64b dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x32706276 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x329de070 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3376af73 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x366af8ab dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3f1e40bc dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4430e431 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x47e537c1 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4f0e9449 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x50245c5a dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5c0ea535 dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x62e57643 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6a7fb6de dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7079da60 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x70af1058 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7764eb22 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x78db694b dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x79f2d6f7 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7f4f9b54 dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x84a7116b dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x85a5e7d3 dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8bdf81c6 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9f7ad746 dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa0ccc8e7 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa1f16a61 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbdca3dcb dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc152e321 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc2ff5f1c dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcf589e8c dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd14e1d20 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd8f7184c dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xee838add dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf28e7431 dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb4011a7 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfbaa7e01 dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x6ed24007 af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x228b3150 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x617cf37d atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x1521f843 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x16b7ed05 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2e63445e au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5db82535 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x639c1952 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x6ce56e67 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xbe47406d au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xcd168636 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf07a00de au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x4e471895 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xa0b46a41 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xe8d764cd cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x13ecb6ca cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x274ea811 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xe343bb95 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xed889ce5 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x07f33c75 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x8a090ee9 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x0462df1c cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xcdb14cef cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x55c69f6d cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x4668d456 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x543ae74e cxd2841er_attach_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xac2bbee2 cxd2841er_attach_t +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x1baef0d5 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x1cbe7d54 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x40403396 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xc77b5121 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xd3e31ec2 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3d174669 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x50b23e2d dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5b4e00b1 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x60f6f713 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x614bf8c3 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x76ece59f dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7f2e657a dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8023c4af dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8eb71b48 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x98d12e94 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa354056d dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbe9b3114 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd8254e67 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xecbab157 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xecf1eade dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xbc591d0b dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x0d7af51e dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x29b6e7cd dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x625af13d dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x726b34e8 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xb8676a6d dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xfaa9842a dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x22209242 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xa2b8bc45 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xe0a889ae dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xe8a57826 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x6f3f2445 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x68ad11a8 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x101f2f40 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x933790e9 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x96dc3022 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd50f593b dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xdd1df1ba dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x6ed1f3df drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x7cde435a drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x3ec4edf1 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xc4f70249 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xc961c351 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xaad5afb3 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x1a191829 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x4161ab20 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xe4fc6766 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x664dfc09 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0xf0a9ac4a itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xc3ce594f ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xdb9f2277 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x273f165e lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xa66b2959 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x027b984c lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x3f114ed2 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xd88e5bfe lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x9eb1b314 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x124e4b68 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x45c179bd lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x27898699 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xcf685ae9 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xd57defdb m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x2f6aa8bf m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xb4aae376 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x1cdfc8d7 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0xe0e71faf mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xcd2963af mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xaa05c1f4 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xa39c80aa nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x11db31c1 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x80008099 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xd6be0e15 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xe603df58 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x199f9861 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x1f212fb0 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x9168990c s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0x1353d788 si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xacbbd415 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x5ad6aa40 sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x09636881 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x9414acb7 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xb1ed87e5 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xb2e97bf0 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x97482d52 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xb48b8123 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x583031b8 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xd41903ce stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xd7403bd4 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xe25bdaf4 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x59b3d779 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0xd640f877 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x58f37436 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xec38d129 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x050a8f38 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xe8e57bec tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x5a651885 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x6e70b0ed tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x4d2e33dc tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xe46df4fa tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x856d6491 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xa5d70e0c tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xb70b65d0 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x3d3fb9b2 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x7a271a24 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x54af5280 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x1d260820 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x72f93c2b zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xcdff4596 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x669873e8 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x02228748 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x0551d696 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x30c57501 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x6c60ab9e flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc182c5b0 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xed868843 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xef54fd29 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x1aa416a7 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x4664f901 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd9f0949a bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xdcb51822 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x1b7db364 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x601cc8db bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xcf79a30d bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x0b545489 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x0cba284f write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x13a8f0c5 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1ba72336 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1da46d99 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x24f5af5c read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x76d3c4b1 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xdfafca36 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf38344d0 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x0dd96db7 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x4004153b cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x430c316b cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x43f97b74 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x8157b05c cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xa453940c cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x53eb39c4 altera_ci_init +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x0b619194 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x3b9d8673 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xa91edc85 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xb62e119a cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe126c817 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xeda381a4 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xfd36f883 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xae555126 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xefdb31d3 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x26fedfb0 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x2782e22c cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x6892b03d cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xea560a71 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x2d4b082c cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x2ed478d3 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x57e55120 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x68e6a418 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xaea60091 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd7d4b09b cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xf5854c7f cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x08b812ef cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1716f465 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x19d2366e cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4c91990d cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x57d7cb9f cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x58b3e581 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x63e73a59 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6984b79a cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6aee2d2c cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x86140e62 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa5bfee99 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa7f224cc cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb44fbefc cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbc26f364 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd1131238 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe10c155b cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe78c5e60 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xef0d1d7c cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf0871554 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf4b71ceb cx88_newstation +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x061e12a9 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0c5df183 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x194772a9 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1eda1595 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x211d9fdb ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x529bd140 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5bd26544 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6d422ed2 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x72dcbd89 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x73ee4e01 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x81b8d254 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x879acc87 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8b813807 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9c3da44f ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xccb8357e ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe706c91c ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe8d1d2cc ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x01cad0d1 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x19ecd5d9 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x26358ee8 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x32f07a57 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x37c9c736 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4531e5a1 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6be7bb69 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x95e35dc2 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x96bc71a1 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd905bb65 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xea7a7181 saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xedd0efe4 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x538d227a ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x11cbd7f1 soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x64225470 soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x69aaee6c soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x8346d4ab soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xca95748a soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xe4012581 soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xe4209ee9 soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc +EXPORT_SYMBOL drivers/media/radio/tea575x 0x3b286b91 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x400d5dd4 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x75b3dabe snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0x7e7012c2 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0xbb684c7e snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0xc9be36a7 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xfebe3d82 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x23842079 lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x4485fefa lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x6fd49a92 lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x7fcab1de lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x90f1de8d lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xaad88793 lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xcf04f11c lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xeffe414f lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/rc-core 0xda454b50 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0xee8d06eb ir_raw_handler_register +EXPORT_SYMBOL drivers/media/tuners/fc0011 0xcae5cd2e fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0xb41779f2 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x196bd548 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x4557fe33 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x6e31b2e3 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/max2165 0xcaee3409 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x56b1d7d2 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0xa026d052 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x986e6777 mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0xeaadb5bc mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x0d395459 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x9302b696 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x4765e0ee tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x9ea11a03 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0xdab98176 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0xb17942b8 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x988347c5 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xf4a42209 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x142f9673 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x2184be3c dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x456baf97 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5a2d569a dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa9d895a2 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd2ccf859 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd5f02f05 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xdf354209 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xeec85b5a dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x2fa6728a dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x78619d8a dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x93e9cb40 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x9e2c19a1 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x9fdd8279 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xaa56bcc9 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xba38de80 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x2f2f25b3 af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x005f43d6 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x239cef58 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x34d6cedb dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3d3dc773 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7a18a34a dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7d39ee6d dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9ae2a941 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xaf3cb687 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb1e9a96e dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc8c4f911 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe99bc0a1 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x43e33759 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xc41947ad em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1b0a725b go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x59c5b4ee go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x612aedf2 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6697cd4c go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd673158f go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe3238572 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xefff75e9 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf618fcd7 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xfb29b924 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2089072f gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x245cf9a3 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2f8986e2 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x47a48398 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8abcac5c gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa1626e2f gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd0b425ef gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf4f5a992 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x7abfd2af tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x8221fef5 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x85ca64ef tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x934fbd55 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xb888bc9f ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x20d653c8 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x3c185d0b v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xc3620b55 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x468896e3 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x5fbac464 videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x6428a4c0 videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xb137980e videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xb94d5d4d videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xee7459cc videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x060ec303 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x56a75585 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x0015c8d5 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x264e1d0f vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x46dd9b8b vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x8b4db49e vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xe20935fb vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xfd3418fb vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0x2b441ddf vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0218deea v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x06b97f24 v4l2_of_parse_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x122c68a3 v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1321a819 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x13802eff v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1aeab84c video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1bb6ac28 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1fc87634 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x200ab12a v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x219b7187 v4l2_of_alloc_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x24dfba20 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x250f4311 v4l2_of_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2b3c8638 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2edafc08 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x321c3a55 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x34fb5ec1 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bf33b73 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3f134b79 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x403cce6e v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x46750c44 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x535556a5 v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x54a40220 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x55ffe021 v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5625ef60 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x58a3e4b6 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5d826a1a v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5ea574b9 video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x676494d7 v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x75579951 v4l2_of_put_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7573d1a2 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x76ed1e7d __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7756671a v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7e04f4de v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7e6d61ab v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x81900f96 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8366fe25 v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x83f67d42 v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x84e99d36 v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x86fd5349 v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8dd6391e v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x914f9393 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x92579884 v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9fe4aecc v4l2_of_free_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa126f7ea v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa2d661a0 v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa938bc9d v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xac0e8bb8 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xac4cdfc4 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xafbba90f v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb12f54dd v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb180b3da v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb3ac1a69 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb7b1c566 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbcfba303 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbecde832 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbf022c35 v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc714b1e1 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xca27e09f v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcb61800b v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcb8236a5 v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcdc2744c v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xce23bb7f video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcf0e4e6d v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcfbd33f7 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdf6ced8d __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe20247d1 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe509982a v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe88f2966 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf2f95882 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf775e52a v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf7ac52a4 v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf8df0ba4 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf97ce340 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/memstick/core/memstick 0x05163514 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6ab01564 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7cc8541e memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x95cb6ad0 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xadf087dd memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb229b02b memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xba7a8861 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc1bf1c15 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd1a8651d memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd5d48f03 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc07e67e memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe198ef40 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xf57aeb0c memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x014ecff8 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x16dc7923 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1de3a1c3 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x24ab7c38 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4b919cc5 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4c868e93 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4d0b7f21 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4e1d6aed mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x54c7d29c mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5bf06ebf mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5cb081fa mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6305ed83 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7f2363c9 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8420a6b5 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x85b6c8f7 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x979c364e mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9b94cda5 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa1272740 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa79ad0f8 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa83d22d2 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaf7d5eb1 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb2abd9a0 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb3b3304f mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd0971e43 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd84754e0 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe980a15f mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf3395c5d mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf754c43a mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfc2762d7 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0601b136 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x087dd3ea mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0ddfbee3 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x145becb5 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1892c69e mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1b8287e2 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1f851a89 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2684f129 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x30047540 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x434b72fd mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4f62b906 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x50be64a9 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5e98a566 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x67897a66 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7282924e mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x77af8ed5 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7a6c278d mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x947239ac mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9950a60d mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9ca6951c mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9f5d8a68 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xaa7c7763 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xac6be66b mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc81775f0 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xda2fdc98 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe4c7e598 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe60d7ab7 mptscsih_event_process +EXPORT_SYMBOL drivers/mfd/dln2 0xce10ac41 dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0xdb180ab0 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xe26cd68d dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x2511bde2 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x3c659704 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x08babe72 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1d80ccc7 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x24515e73 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3f135c4e mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4186920d mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5c591964 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6948b7dd mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x70986991 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc0d07513 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc279c433 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf8529e32 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 +EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 +EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib +EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led +EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw +EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0xbce42266 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0xf3a1ea7c wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x0c607554 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x6bcfcf61 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xc69776d5 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xf4adcd4c wm8958_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x3efd3b72 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x7111221f ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x30b3ae49 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x2ac68920 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0xeea35f31 c2port_device_register +EXPORT_SYMBOL drivers/misc/ioc4 0x1fd202b9 ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0x8bdbc8bf ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/tifm_core 0x04ccdced tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x140de6c8 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x14c5122a tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x282b18b9 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x36a1ba84 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x6f679a14 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x892eb413 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x8deae88d tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0xa8c2ec46 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0xb79a6835 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xc6681458 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xeb930250 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xed6c94b1 tifm_has_ms_pif +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0x1012bed8 mmc_cleanup_queue +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x29571775 mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xe9563269 mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x33e66a84 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x37fecc7b cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x860d6f8d cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x94e4064a cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb4761fb8 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xcbc0cf3e cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xf727d3b0 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x4dd2fe67 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xa0008111 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xad62a480 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xd7f8d481 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x174e0931 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xde9aa44d lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x356d0452 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x073b26b1 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0x6ced2e21 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/nand/denali 0x780789cb denali_init +EXPORT_SYMBOL drivers/mtd/nand/denali 0x7fae501f denali_remove +EXPORT_SYMBOL drivers/mtd/nand/nand 0x0d226759 nand_scan +EXPORT_SYMBOL drivers/mtd/nand/nand 0x5c31352b nand_lock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x79bd4d27 nand_unlock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x82a92e43 nand_scan_bbt +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/nand 0xaf2f0511 nand_scan_ident +EXPORT_SYMBOL drivers/mtd/nand/nand 0xe15c4e1b nand_scan_tail +EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x12a77e80 nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xe8ae0146 nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xfb1c94f9 nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xc322457f nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xc5101445 nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x8cfcf75c nand_flash_ids +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x15af8260 onenand_scan_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x2d2bee8f flexonenand_region +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x42641303 onenand_default_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x815aa830 onenand_addr +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x07a246f5 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1fc8e96f arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2453d2f4 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x25ce3fee arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4b43113f arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7b83b2ce alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x942282c7 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa7bba92c arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd53c7311 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe0c1d27e arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xacd3160f com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xc668f2e1 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xe0ee637b com20020_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0dd96955 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x13cf2fee ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1c528794 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4d5ccd15 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x54f1b4aa ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x56a0a2d1 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x77d73570 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x90221f1d ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb079e978 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb677b921 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0x9cb789eb bnx2x_schedule_sp_rtnl +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xb87310d7 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x0d8be5fd bgx_lmac_rx_tx_enable +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x285bde59 bgx_get_rx_stats +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x42264715 bgx_get_lmac_count +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x6dc1648d bgx_get_lmac_mac +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc397f585 bgx_lmac_internal_loopback +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc82be691 bgx_get_map +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xe48ca42a bgx_get_tx_stats +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf101d1b2 bgx_get_lmac_link_state +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf9508980 bgx_set_lmac_mac +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2fdfa8ac t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3d0d67c8 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3f9cab6a t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x67ca099e cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6d84d670 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6fe0fbf2 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x743053b3 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x90b7a960 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9403469b cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x95df9996 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x98f5fec1 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9d418c4a cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa50c5402 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbbeb1abe cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc8daa11c cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd838facf t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0056bb40 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x00d5b13f cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0c43a498 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1e990cf1 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2141ce33 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x29f12a7f cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3b880136 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x464bc352 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4d8992cc cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x538c309a cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x58840efc cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5a7df15c cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x60580ef4 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x668ef337 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7279d8c4 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x752748af cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7e6cb2c2 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x807f9a2e cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8dbfd4b7 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8e5a80a7 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9c995aba cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa46621db cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8ff9666 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xae79fe81 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcb7c39d9 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xccd04631 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd408b0ff cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe51385c1 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe7854c56 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xea11345e cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xedc2d742 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf076c1b4 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf1f4caef cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xffbd69ca cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x24202527 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x56c4a81f vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x59d88a98 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x69e3bfe5 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x8f5e517f vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xe142a5b5 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x74bbbef2 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xe45f39e1 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/freescale/gianfar_driver 0x79f28897 gfar_phc_index +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0406be56 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d0432c4 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d8df60c mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13508add mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x269db7b3 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26c799fc mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a6b9e46 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36057621 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37ee2aea mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b52c201 mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4036702d mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d6892de mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f5daafd set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x515b6822 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x518ec3a3 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59a9c4a3 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ed014fe mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b28ec29 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b62ee65 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ab26967 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8854eba2 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e237394 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x920f6728 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9260b574 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92f290ca mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2a95023 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaab132b7 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac02c1fc mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb39b9781 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe5fa8be set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf768596 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8168cd5 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8f31f11 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd99db1df mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdafd9b39 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc1ff0d3 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdce6158b mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf39964a3 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0857aabd mlx5_get_flow_table_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c5ab386 mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0df89940 mlx5_query_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb7287e mlx5_del_flow_table_entry +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14c141e5 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16e34c1a mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x176237b1 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b3b38eb mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23b09c1d mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23e618ac mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28da0af4 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e89069f mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b2eeb99 mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b60295a mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d1d4754 mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45b3083e mlx5_modify_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66c60b2f mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x673676d4 mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a9e970d mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f914d39 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8196e746 mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86fb61f7 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0a73b3e mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3a1f28e mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf94a5ec mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb844fcf6 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcb9389e mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd952589 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc325bcb4 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc55f0587 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5864804 mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcbbc75f2 mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd08e7f84 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd305381b mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd38d71e3 mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2c4ab02 mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6af33e4 mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeef00dec mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5fb469a mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6e8353c mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb8c75e2 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc728a49 mlx5_add_flow_table_entry +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15a2a399 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x18531d2a mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2bf27d7c mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2d07a992 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6d265007 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8d533f16 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbd56fca8 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee8e0771 mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf96a542e mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x0705e304 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa209d1af qed_get_protocol_version +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x26577581 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x27ddf03f hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x31782b73 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x5025fbba hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x6e9a4d4c hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x216c5aa2 sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x34ecd086 sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x578397b2 sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x71a2ea81 sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x7bcdcfc4 irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x7d3cc319 sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x97c7bdfb irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xa0279424 sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xa2d7d089 sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xf50b6b80 sirdev_get_instance +EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mii 0x02cdd8a5 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x3840dfda generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x5e00a6e1 mii_check_link +EXPORT_SYMBOL drivers/net/mii 0x757c9fd1 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0xa2f4454c mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0xdf0a8bab mii_check_media +EXPORT_SYMBOL drivers/net/mii 0xf41e41ba mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0xf670af04 mii_link_ok +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x2b65bb61 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xa17c435d free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x9c18b558 cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0xed45c77a cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xc3becd05 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xea6f076c xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xf536ac11 xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/vitesse 0xb81c65c6 vsc824x_add_skew +EXPORT_SYMBOL drivers/net/ppp/pppox 0x0c359344 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x3321e874 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xfc558e8b pppox_unbind_sock +EXPORT_SYMBOL drivers/net/sungem_phy 0xcd3df180 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x18419536 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x56995366 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x6f227599 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x71b8d6e4 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x757759b0 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x7a276eab team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0xcd62ed34 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0xf8f2988a team_mode_register +EXPORT_SYMBOL drivers/net/usb/usbnet 0x5d686acb cdc_parse_cdc_header +EXPORT_SYMBOL drivers/net/usb/usbnet 0x6f6b0d6d usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0x7bdb93f2 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0xa2579790 usbnet_manage_power +EXPORT_SYMBOL drivers/net/wan/hdlc 0x4a1d5796 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x5c7f93cf detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x8a7fcfff register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x8bb57c99 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x93c481c0 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa6326771 hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb80ee3e3 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xcc85621e alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0xebbabde5 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf3662dd1 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf617da8c unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0xc5d180c9 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/airo 0x21d82371 reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0xb4ee08c8 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0xbe75aed0 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0ffff1ba dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3659c2e5 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3ee76d55 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x461631b6 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7a86dd0c ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x93ead4bf ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9d7d16d4 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc1c1a93f ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc77fad15 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdc1b0cd4 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf52f42e4 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfd7f6184 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x017ef177 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x036de2ff ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x08947038 ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x194b6a4e ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x30e19d94 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x34f92124 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x560433ce ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7cfb0d8d ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8c806ff8 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa53f0b22 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xaaee346b ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb2d99835 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc498de10 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xda80b318 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf3c42288 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x27121318 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5af5e1d1 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6dd57bbe ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x81f906b7 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x9edae4dd ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc2dfb594 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xca60a8e3 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xdb17c612 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe5636919 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf37dae29 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xfff8308a ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x063b1b31 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3d3faa7b ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x425c0370 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x49586ef1 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x51e49dca ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x54d5b2f8 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x61b92e5e ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6456c913 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x64b8a8bf ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x659f690b ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x69a5628f ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6e1ecd80 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x73a11d8e ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x79731e61 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x99dcff9e ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa565d2a4 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbfa46a98 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcf084536 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd6552b35 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe44982b9 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe7740fa9 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe7b81170 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf9c307aa ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00d864b8 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x032e6217 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0383e4e2 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04bb8f0e ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05e9e1b9 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0721f5bb ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x07369de6 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x090fc8e6 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b630171 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f83005c ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x125fa342 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13f475f7 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1530aee2 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x15981646 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x184b7822 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1931ed1b ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19d01983 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a393824 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ab87281 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x263586b2 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x26b7c1ec ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x29963d4c ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b16932e ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3059ad81 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3400dabe ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x342d2408 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x344a62de ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3826af79 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3997005a ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b72791e ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b8ae28f ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e9c086d ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3f4a10c7 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x415e8a7f ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4237f1ac ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4561f567 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x496b4c49 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x57fb35d8 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c9c0c1e ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x605f4d1b ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x67301ff0 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x68b5e49b ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d905b20 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ee92eb5 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7100f6ab ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x734d3517 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x74d454f1 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x76b05d26 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x77403f7b ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x78ace91e ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7abbefd9 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7afe83b3 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c60e6a0 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d1c1d24 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f463a2e ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f67e4eb ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81fb6372 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x835835da ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x855c6eec ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x858e56f0 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8706e929 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x873d89ab ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8937523d ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8981de22 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8bff939e ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c46c8a4 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x90590cbc ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91f899b0 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9436441f ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9b4cd775 ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9c31caac ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d0d3bab ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa0278d33 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa17e07fb ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa46e7834 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6027387 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa66ebb83 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xac2ee6f7 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad2f8652 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaef223cd ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb233b8e1 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb373b4ee ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbae77b78 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbdc96e15 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3cdbdbf ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc74de99d ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xccc71183 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd10610b9 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd21ed33d ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd2380c79 ath9k_hw_request_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd23dbc0a ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd8ff447f ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9552708 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xda77850f ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe41c6340 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe70c35f4 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec4c28e0 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee609325 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef253e5c ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef55dad7 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf48f7316 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfbbd2c42 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfc549aaf ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd5dd69d ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd5f01f2 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/atmel 0x165c5525 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0x17132bdc stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0x3c1ceeaa atmel_open +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x1324d949 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x13352746 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x1d11e486 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x61b9b6ff brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x6dc9f541 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x73ecc1c0 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x8e5e3501 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9efafa25 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xa56dc88c brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xa8a1afd0 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xb33e7c56 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xb3971d2e brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xbbd79a15 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x00c92c26 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0f12d7ff hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1723ac32 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1f94e307 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x27550dae hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x525f1bf2 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6c5da984 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6dcad50b hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x776a4bfd hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7fde5888 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8cf37c13 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x91cc6008 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9cbc3753 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9efa7154 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb241bd34 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbd6b0e1c hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbebf7f0f hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd0784c99 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd33360ad hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd6628d6d hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe3c01d79 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe665a5fd hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xedff3ae7 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xef1821cf prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf76bce65 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf9c77ae7 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x18775940 libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x248e8f2e libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2d8afcf2 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4b16a1b4 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x52b001f8 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x538aa6e0 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x57db67e2 free_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x58aafee8 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5c86838c libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x70fb42d3 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x73652036 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7e288456 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x951eecef libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x9b041744 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa4f74bfb libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa520fee7 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xaf42ddf1 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb223cab5 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xbdc8cef6 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe3ac7036 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf155a2d8 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x04e1416e il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x05b0f9b0 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x083ccfac il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x11a72811 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x135d8e1f il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x18681f5e il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1872afa3 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1dfc2ef9 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1e493af9 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2425b267 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x26b8c414 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x27e2262a il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2a716f36 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2e8b32cc il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2ed680b9 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2f3b7ee5 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x32642925 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x32df7f1a il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x36343f57 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3c72ed9c il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3f0eea25 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3f3477cd il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3f5e8397 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3fc8ed75 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x41c6f96f il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4579136c il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x48526583 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x486e79f8 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4e1895a3 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x50671db3 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x516cb87b il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5197a353 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x531aea58 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x559c41f3 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5ad46f94 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5f1fe571 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x629eb3e0 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x64ecd06c il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x67b8bbde il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6a27d6a2 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6cf64848 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6e5a9b82 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x703201a8 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x71f43927 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x72c40c0e il_free_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x73c9dd1e il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x77f32ffa il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x79b58027 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7d5aa58b il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7ecf1b97 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x80602a79 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8170e3b6 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x847525e3 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x865fc05f il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x870a0e96 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8a528e8e il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8d92c5df il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8e990683 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x92ba5777 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x93994df8 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x98dca956 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9c1bd887 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9c70ae38 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9dac2d59 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9f6e38d5 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9fa84bfc il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa15be958 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa2b87629 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa8bc0695 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa9d884b4 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xad75a37c il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb3c8effe il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb434f7bd il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb6765323 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb70ce99f il_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb793b080 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7da34c7 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbabd44b7 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc1a3d61c il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc210af72 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc73a50e7 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc746e6a9 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xca39fb15 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcc8c6ca6 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd3eb19e5 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd7685209 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd812d324 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdcdd4568 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe1d8b994 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe3bdcd96 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe6d3304f il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xecc5380c il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf61d4108 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf934174b il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfc6c37a9 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfd4969ea il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xff474579 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x1b06ce78 __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x2447a6ab __tracepoint_iwlwifi_dev_iowrite8 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x314a20a8 __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x5e9c24ff __tracepoint_iwlwifi_dev_ucode_error +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x8c8ab242 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x9a1b1df9 __tracepoint_iwlwifi_dev_ioread32 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xdced6db1 __tracepoint_iwlwifi_dev_iowrite32 +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x1f900acf orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x262cf476 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x2a5603f9 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x2f15a189 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x35585023 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5dea5bf1 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x70de6c8b orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x99d8e769 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xa1ab8ba5 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xa53642d8 orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xa8504bd7 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc6abc36e __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xcd88c59a free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xdd1dcab9 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xef91d285 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xf2738232 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xfd9b5cab orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xda2529f5 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0324e9af rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x045d7612 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x04eaa21a rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x08aab7e8 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0abfd5fe _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0d6918a9 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x218424a0 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x351552d3 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x432f701a _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4c7310ea rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4cafc064 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4fa72716 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x58c1e956 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x61cdd5db rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x660fc9b3 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x748b99ae rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x74b91f1c rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7789a329 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x78ea15eb rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7f4f5c3b rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x825f142c rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8c3f898f rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8fd1bc34 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9f06fe94 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa75b6221 _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb794377f rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbbb4ac15 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbeac0dc7 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc0af680c rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd31a9020 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdac1ea1e rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xddba7d95 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe0ec2df5 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe407cc6a _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe8566495 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xebbe56cb rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf101cf81 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf18f28de rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf199d88e _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf5147288 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf5d38203 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x4a97fc6a rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xcacd1b24 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x598e4f38 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xb089871d rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xe28e3de5 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xee9a9c16 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x00ab2b42 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0116e31a rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0434c549 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x333c051a rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x34531aaa rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x404ed3b5 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x43be6b2e rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4a500bbf rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5884534c rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x59648d05 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5fecf410 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x62d6f6f5 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x74c82dd0 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7769475b efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x94886e26 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x997fdd42 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9f39a8be rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa47da5a8 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa6fdccc4 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xab7a791b rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xafc43c0b rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb0895eb2 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbd336d9d rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc81ce502 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xca7b62fb rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe708f7d4 rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf4c9973e rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfd79de8e rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x48e71ffa wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xb1000a5c wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xc68ccfc1 wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xdfb22060 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x2cc2575b fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x689f30ac fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xd503d4b6 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x70fd7536 microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0xca7fa68e microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x3c43a54c nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x70db6ef4 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xdc7d8bf9 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x68c667ed pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xa37d54d9 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x12b23df6 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xa214f605 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xab9e890f s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x260c3c97 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2753b610 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2a48c55a ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x331a0034 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3d23bebd ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x585055a3 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x6d3c8262 st_nci_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9866b57e st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9ce94cb0 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xce4754b7 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xdd6cd5d3 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x01b7d430 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x13be5d8d st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x29d506f6 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3066114e st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5d1a66a4 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x75878e1c st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa6c45e06 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb7a1baae st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbb2fe3c0 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc07e43ef st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc47e6d5b st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc60ccac5 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe0b7665e st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe5a33c2b st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xea94a137 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xec2d3ef8 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xee5b2606 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf4429bae st21nfca_hci_probe +EXPORT_SYMBOL drivers/ntb/ntb 0x1d5186d4 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x2ad338e5 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x3872d34a ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x538242b9 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x6c4716e1 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x898da980 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0xe506627d ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0xe85f0ed8 ntb_clear_ctx +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x333cb14f nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x5947c61e nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0xf5ad5d5d devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x10ad86e8 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x1c356d9b parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x1d8e384a parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x25deb2d3 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x2bdaf87d parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x2e7c85d7 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x3638d967 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x3a13ef0a parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x3c0eac9c parport_write +EXPORT_SYMBOL drivers/parport/parport 0x455e7dc5 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x46b190a0 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x67022f7c parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x6c33e606 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x70a18ca2 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x737341b7 parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0x7a25e11c parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x7b3810c2 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x8c3bea51 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x9a6c2ed2 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xb527e6e6 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0xb8ddfc44 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xba4a21d2 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0xc43b3dd6 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0xcdf7f3cf parport_release +EXPORT_SYMBOL drivers/parport/parport 0xd0e5ffe4 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0xd1abd931 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0xd9e66471 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xe3435ae3 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0xe77851ed parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xe9f2e71f parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0xece1cd8d parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xfedb101d parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport_pc 0x223b47f1 parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xa5e96dad parport_pc_probe_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x046aeca8 pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0be80bac pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x123e7c06 pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x17004a5e pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1c2c96ab pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2f5a1075 pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4a744b88 pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x602905d0 pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x67e07f26 pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8ca37875 pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa9ad78d0 pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xbdb62b8d pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc105aa92 pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xcd101782 pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xcf0142f7 pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xde0cc223 pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xecb68e0b __pcmcia_request_exclusive_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf9a7f1ec pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xfbd0e52b pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x00db41d7 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x06e9b999 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0b161188 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1ff0b649 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x21fb9220 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5331f34a pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x569c699e pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb15ca60a pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xbe3a22fc pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xc751a672 pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe163c5c9 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x9f1441aa pccard_nonstatic_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xa9e51ddc pccard_static_ops +EXPORT_SYMBOL drivers/pps/pps_core 0x02a2a4df pps_register_source +EXPORT_SYMBOL drivers/pps/pps_core 0x057049e4 pps_lookup_dev +EXPORT_SYMBOL drivers/pps/pps_core 0x186c6b53 pps_unregister_source +EXPORT_SYMBOL drivers/pps/pps_core 0xd1e4f107 pps_event +EXPORT_SYMBOL drivers/ptp/ptp 0x3c3a8962 ptp_clock_register +EXPORT_SYMBOL drivers/ptp/ptp 0x9e2b4bb9 ptp_clock_unregister +EXPORT_SYMBOL drivers/ptp/ptp 0xb1864160 ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp 0xba342482 ptp_clock_event +EXPORT_SYMBOL drivers/ptp/ptp 0xf42dfa0d ptp_clock_index +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x3e743e29 rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x46319633 rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x468424ac rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x47fa88b8 rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x51985a5d rproc_get_by_phandle +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xca5f0fff rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xd981031e rproc_boot +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xda09b86e rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xe68b5cae rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xe8d7d397 rproc_add +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x0a218bf9 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x0cf6561e scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x6f1685ea scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x8f3ae3a0 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xd2533bc8 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x07582ea6 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x10df0b57 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x157601ea fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4316cb16 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x70307bdc fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x70764949 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x996645b2 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9afc0f2d fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa98c5b71 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xcf6e129c fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf111ae1f fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfebb4d52 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x026b6eed fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0bf0e712 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x11654a67 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x128e0ecd fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x12e5b65b fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x13c074f4 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1430414c fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x17053bce fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x215cca62 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22477734 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2c6c03fb fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2d3254d1 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x322526c7 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x41ac9b14 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x42cc6cd6 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x466d3e45 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x468e536e fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x49dcf3bc fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4acbddca fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5303afb0 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ccc441b _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5dc68312 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x71454e49 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x738fb5e4 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x78585644 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7b1a0946 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8403b789 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8cba5a21 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x93dcd1f2 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9a93b565 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9ccf0495 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9cec5cbe fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa62bec20 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa75605eb fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa93dc2e1 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb19c33e0 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb22c4d43 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb632bdd9 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbf4c89d5 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc234acdc fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc34b8fdc fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc49baa6a fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc6b45c40 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd1d4c561 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xea7b43d5 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xed13694a fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xefc4b957 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0e6f13c fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf42a14f3 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf5ab8197 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x5b86b4cd sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x72c41949 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xc48673f2 sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xc75512cf sas_resume_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xcfef8f69 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0e40a22d osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0eb5ecd7 osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x127b4226 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x20b8758d osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3118599e osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x322879b4 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x37c1c635 osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3976719f osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x47a6bbf9 osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4dc1a891 osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x527ac548 osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5a241f15 osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x64a7173e osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6dcf2b2d osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7602584c osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x76e513bc osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x76e5b697 osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7887c6ff osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7a20070f osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7c059409 osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x81d7e436 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x87d50f82 osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9c66dd99 osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9caade78 osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa2b00a4b osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbace06fb osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbc14c1a2 osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbd577b41 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbe75973d osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbf9c59c6 osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc584ae44 osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcec60c7d osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xda46e410 osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe3d41c3f osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xeaba1fbf osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf4e07ab5 osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/osd 0x0cebd746 osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x1790ebda osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0x241ab5d8 osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0x37fe5fc3 osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x436af312 osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0xd55aabc6 osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x02e1ce5a qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x10079f5f qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x12335e66 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x578972a9 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5f09d4b7 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8778e52a qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9283231d qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcebb29f3 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd75dbc95 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd8935dad qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xef06835c qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfdd71914 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x55d7c219 qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x5c1aa0b3 qlogicfas408_bus_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x9b95257e qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x9ed1138a qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xdcfc95ff qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xdf8eea72 qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup +EXPORT_SYMBOL drivers/scsi/raid_class 0x1eec8a34 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0x3d2fbe89 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0xc8b13c03 raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x25d833e9 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x27223584 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4daae358 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x80dbf992 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x86a29998 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x87a7e6b9 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8dc431f7 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x90a1cee9 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x941ae5e0 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb9f952ad fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc48f71bc scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe6593253 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf7aa35e4 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x00c965f7 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x032de964 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x13be756b sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1c76dd06 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x201db958 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2d5afc9d sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2e203563 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3a5790b6 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x492c2b28 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4aa9cb95 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x53d12b94 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x56315e8d scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6d497178 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7f8d6670 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x85702255 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x89a01432 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9da8c2ae sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa09d1be4 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa7db6ee7 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa7f5244e sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa9024f10 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaaa22f45 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaae7e649 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb2872eb9 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb7371b92 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb7bbe70f sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc6fb8618 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe5e64264 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe66b4d33 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3dd7b2a8 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x6f4e88c4 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa4e082dc spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa747adfd spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa82193a5 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x2e676b47 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x43f4516f srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xa14c5e2f srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xf4b00ef7 srp_rport_put +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x25f14f43 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x3903d4d3 ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x406271d2 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x674be8b6 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x67b65cc6 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x97a7961c ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x9c2df20a ufshcd_system_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x07f714f5 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x113731f0 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x2fe46d9e ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x3818aeee ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x39bd0fa2 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x3e8c4384 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x45db6220 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x5a1215fc ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x68ed6911 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x6af023b9 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x80ebfe2c ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x80ecb239 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x8f1f9d34 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x98d64d30 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0xaee85699 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0xb349d803 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0xb82d7d67 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xc5081b2f __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xf59c0cac ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0xfd7200c0 ssb_bus_powerup +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x02c460a2 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0af51b8e fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0e602147 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1c33dc0f fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1e50408f fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1ea6ecde fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x27d00351 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4ac48f9d fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x68ed0322 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x706343b2 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x83f93fda fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8db458e5 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8fd2e440 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9ea27365 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa168b1d6 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb23acf00 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb38b2acb fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc035a8f5 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcfe6102a fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdd0e7d21 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe1559ecd fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf27c8829 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf7e0ce9c fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfaa06d91 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xc25defe6 fwtty_port_put +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xf280a6cc fwtty_port_get +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x21b90f58 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x0dede8b8 hmc5843_common_resume +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x2707bb16 hmc5843_common_suspend +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x3e8b8725 hmc5843_common_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x57ce5752 hmc5843_common_remove +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x4cd92b3e ade7854_remove +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x9d6f9eff ade7854_probe +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0xdeb4197e cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0xfcc3adf5 most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x024d369a rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x08bc76fc notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0e06985f rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0ec1f49d rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x11a974ce rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x12dd5910 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x135147ea rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x19008a51 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2419fe5e rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x257424b7 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2f95c469 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x39dc9835 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3df05047 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3e77f740 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4a99c42c dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4ddc74b3 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x50ff0579 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x59bbf872 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x60c8b3d3 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6602326d rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6e7c8fa2 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x77ef07d3 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x78080d5a rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7dc67077 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7e832a76 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fe80da0 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x83293b5c rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x85371a0c rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8dab857c rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x972e0761 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x97bf1653 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa25c189e rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa2932475 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb846c597 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc23b78d9 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc2b6c1bc rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcbd7dfa9 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xccf375c4 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcdf376b4 Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xce474ea3 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd3ad15a4 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd5831dae rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd84370d8 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdae0526b rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf5d83143 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf5fc0f09 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf7135c2a rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf8d15158 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfb483378 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfc96ac51 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x028caefc ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x062ca22f IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x097b0502 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0998fb2f ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0cdc7fbd ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f099f61 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f1356d0 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x10a8fb2c ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x18c9b850 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1e95a913 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x263da46d ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2650d560 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x289cf4fe ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2b3f99a1 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2db1dcf1 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2e1186b6 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3d1dc11f ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x40e27eb1 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4cf2b1e3 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5b7f8995 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5ed28d84 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61ea895d ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6b894b76 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6c67311c ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6e82e78a ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x78eb5224 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7dfefceb DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9382ccb8 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9dbf9e87 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa145e74a ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa27890a8 Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa3f5304e ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa6b50da3 DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaac99fd6 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xada23c38 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb1ae818e ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb697eb8d ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xba9c74de ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc4af9208 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc4da1103 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc8c4967d Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd1a52568 Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd333d9c0 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd33e06a5 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd6fa8a24 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd9f0fbdc ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdfe28677 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe3575bf1 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe7701784 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xef9dd125 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf02aa838 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf6a105c7 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf75156b5 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf77dccc4 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfe56a76d ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x08b2a8d5 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x17120088 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x209b610f iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2de16f9e iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5ae60f74 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5b46caee iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5c0da850 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x610e961c iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x639dc53e iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x64663531 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x65b3fcc0 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6f1a2138 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x75b25db2 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7c1c7146 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x90306ef6 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x91deff85 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9ad2add8 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa2a28174 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa7f2a031 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xad54dd51 iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaf795de8 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb3eeaa80 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc0740b64 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd1b660ff iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdc45932d iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdd6ffe77 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xde0b77b0 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf2cf01f5 iscsit_register_transport +EXPORT_SYMBOL drivers/target/target_core_mod 0x02bd4594 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x102b5ffb core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x11ab2549 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x11dca53f target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x14160219 transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0x1b14fddf transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x1e64805b transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x1e852fed core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x2040f48b spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x20f5710a transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x234b5179 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x23ea0cac core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x2a4a3761 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x3124d29d target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0x313900b5 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x40562fcb transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x4bc6f831 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x52f21125 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x52f769f6 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x5ab2326c target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x5f4a99da transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x60d26d5f target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x60d446cd target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x61f24f5a target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6cb66679 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x7506c162 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x78c6d446 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x79678671 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x7cf3b6ae core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x81af95e8 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x8f7e1773 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x9327a53e target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0x95c8e495 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x9a29a888 target_get_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xa1e8523d core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xa6693c12 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xa7661a96 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa8f47e50 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xae1e3ca3 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xb1d84214 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0xb4d54cd2 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xbba05816 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xbd021b1c spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0xbff3ccd7 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xc056c0bc spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xc28db68c sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xc3133008 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xc7a5539b core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0xc841fb33 target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xd19b3109 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xd23e3f4d target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xdedca53d transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xdf3f7d2c passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xdf8155e0 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xe0980ba2 target_put_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe1b2d802 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xe3150297 target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe4ddf2d1 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0xe55b9569 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xe5f443d9 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xe78d3767 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xebff5607 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xed8bf3fe sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf04e1b6f target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xf11b5d09 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xfb1b0b66 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xfc08d18c target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xfc4f4a14 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xfeedf81c transport_init_session_tags +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xd875fa5c usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xc4567394 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x8e3337eb sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0ed412ef usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1a1465dc usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x33cbf1e4 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4df86843 usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x55343846 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x62d3a38c usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6386df10 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x709a6fc8 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x70b95fe7 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x87c948bb usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xbed87240 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf05ea62a usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x1b8a34ac usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xc4a8d7fc usb_serial_resume +EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user +EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x3c71c418 vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0x5fedea44 vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user +EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/video/backlight/lcd 0x194934c6 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x1f3f17ae lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x40e95be4 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xaaef395c devm_lcd_device_register +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x175f4ccf svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x3b33934a svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x424f50d9 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7179c0bf svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xa8c4cc9c svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc6bad6d8 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xeacc3925 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xe6d4d485 cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x36ac568d matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x9fb0f7d8 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xb072f5b8 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x10b9b726 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x1a5f050b matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xb1a0dc57 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xbeb3ba34 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xc042195a matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x7affb554 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x5fe4730b matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x96c36cbd matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xa7e2d4b1 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xcd77ef2f matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x273b7fad matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xeae7a67a matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x01e7c7d4 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x3afbd782 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x49343d7f matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xaee27bec matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xdf88fab3 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x3b4fe115 mb862xxfb_init_accel +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/virt/fsl_hypervisor 0x45fd1882 fsl_hv_failover_unregister +EXPORT_SYMBOL drivers/virt/fsl_hypervisor 0x77c9b191 fsl_hv_failover_register +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x0099b0cb w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x2cb72716 w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x9ac7af2b w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xc450df9e w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xbd7e603c w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xc9b5dbb2 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x58e3ca52 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xba0f965c w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x221beb9e w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0x4548774f w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x9c82afd4 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0xd807225e w1_register_family +EXPORT_SYMBOL fs/configfs/configfs 0x11a37984 configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x1cb11e5d config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x209b88dc configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0x2aec9049 configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0x3952da36 config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0x439673e9 configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x56e01bad configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0x6c9fa1f9 config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0x7d174b75 config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x8972787d config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0x985d441d configfs_unregister_default_group +EXPORT_SYMBOL fs/configfs/configfs 0xb27568b1 configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0xc3fbb031 configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0xd7dd2d31 config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0xfca0fc23 config_group_find_item +EXPORT_SYMBOL fs/exofs/libore 0x0fb6305b ore_remove +EXPORT_SYMBOL fs/exofs/libore 0x15356d05 ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x719555e9 ore_create +EXPORT_SYMBOL fs/exofs/libore 0x8c8da945 ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0x960114e5 ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xa79dd99f ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0xa7e1b9a8 ore_write +EXPORT_SYMBOL fs/exofs/libore 0xc40ca498 extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0xd2cab31b ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0xf98b185a ore_read +EXPORT_SYMBOL fs/fscache/fscache 0x07b86a8b fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x08e749fe fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x0971b6d5 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x0af7172a __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x0dde309d __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x0de5e689 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x0fa0ef2c __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x167f88df __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x1f7431ef __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x20db2d78 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x3950ec3d fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x3b65eb14 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x41c4b6d7 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x4eac0ade __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x5cb95c21 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x72453d95 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x763dcdf7 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x777c4179 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x80a88076 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x83a225bd fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x8414230e __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0x8fd52d8d __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x96fba267 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0xa51bb9f4 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0xa7bff5a1 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0xb9b74c5b __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0xba21e33b fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0xbcf6369c fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0xbe9d5f2a fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0xc27027e4 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xc4c12841 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0xc7e631f8 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xd40d7d90 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0xe46645ed fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0xe5141f10 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0xe741a5cc fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0xe850b98e __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0xea9e761c fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xef40b1e4 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xf34aa2e0 __fscache_alloc_page +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x1fd8d247 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x46fa4143 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x69c23a6b qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xbbc3a9d8 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xf241a9ca qtree_read_dquot +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-ccitt 0x1a703ba1 crc_ccitt +EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table +EXPORT_SYMBOL lib/crc-itu-t 0x6d356209 crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0x56329ecc crc7_be +EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd09b2cba crc8 +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c +EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x18462b06 lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed +EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of +EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset +EXPORT_SYMBOL lib/lru_cache 0x4a35ecfc lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used +EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del +EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get +EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create +EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set +EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find +EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put +EXPORT_SYMBOL lib/lz4/lz4_compress 0x0c222eb5 lz4_compress +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x682a23e0 lz4hc_compress +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0x7456cc61 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul +EXPORT_SYMBOL net/6lowpan/6lowpan 0x3452f117 lowpan_netdev_setup +EXPORT_SYMBOL net/6lowpan/6lowpan 0x84305613 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0xd4ab3507 lowpan_nhc_add +EXPORT_SYMBOL net/802/p8022 0x770cbf0d unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0xb2f60647 register_8022_client +EXPORT_SYMBOL net/802/p8023 0x7e0ee1cb destroy_8023_client +EXPORT_SYMBOL net/802/p8023 0x876fc2b5 make_8023_client +EXPORT_SYMBOL net/802/psnap 0x2b3a0257 register_snap_client +EXPORT_SYMBOL net/802/psnap 0xa35553af unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x00ee2cff p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x046c2437 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x0e7d78fd p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x228cc9e7 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x26e8c692 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x2d4623d1 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x315c4cfd p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x35c346bc p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x35d3755f p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x3aeaa2d6 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x3cb29971 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x3fb1249e p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x4e3e958d p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x53d58a07 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x557cd124 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x59235461 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x5e871382 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x64b13847 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x7725131c v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x86fa9f7f p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x87f73ff5 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x946a1d80 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x9694aca2 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x9ba9dfe8 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xa8171deb p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xae843c02 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xb6231c68 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xb864eda0 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xbc7efacb p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xc2f791ce p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xc5b3a15e p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xca6febb0 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xd0fa07cd p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0xd29df58e p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xd4a99537 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xd76cb99a p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0xdfb1e6ed p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xef9aef68 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xf4308c05 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xf47eb06b p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf827565f p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xfbb6cc3e p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x5c4ad199 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xd8341af4 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xf4bb15fb aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xff88cc3f alloc_ltalkdev +EXPORT_SYMBOL net/atm/atm 0x0461ec48 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x21b9b822 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x235df3d4 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x2afb25bf atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x314fef89 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x36b0c96d register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x38c7b291 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x47316016 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x70609767 atm_charge +EXPORT_SYMBOL net/atm/atm 0x71e5ea7a deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xc8e6be77 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0xca87b453 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0xe8e5a6cf vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xfe274b03 vcc_release_async +EXPORT_SYMBOL net/ax25/ax25 0x18362a0c ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x37ec699e ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x66011a8c ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x94b3ec00 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x9819754f ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xcca3ac15 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xdb5337f6 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0xfb467d75 ax25_send_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0aa2d343 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1103c972 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x122db8af hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1be9ff0f l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1dd6800a bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x23ea80a0 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2557f6b0 hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x387ad044 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3cc5f3ec l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3ea8528c __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x45c48aba bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x467d3f32 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x504b3071 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5505d4d3 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5627a5e6 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5646391f l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6048a35c l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6361a463 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x68941d65 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x746e94ca bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8069edd8 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x80e02318 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8c968d7e hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8e1aed2d bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8e1d4624 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8e8e134c hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x90080a6c hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9296f562 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x931900dd hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x94e3f079 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x96420c6e hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa967e543 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xaf3c3691 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb24566ad hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb8293515 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc038b251 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xce2ba558 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdc159d2c bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe0b8e4a7 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf9685e91 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfc8f7b44 hci_register_cb +EXPORT_SYMBOL net/bridge/bridge 0x11a50dec br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x0199c195 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x76dbf7c7 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xb61ae187 ebt_do_table +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x22c015d1 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info +EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x93cc6e43 caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xb2ab47fc get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xc3d8c55e caif_connect_client +EXPORT_SYMBOL net/caif/caif 0xc535d56f caif_disconnect_client +EXPORT_SYMBOL net/can/can 0x367bb17f can_rx_register +EXPORT_SYMBOL net/can/can 0x47081b09 can_proto_register +EXPORT_SYMBOL net/can/can 0x812cd977 can_rx_unregister +EXPORT_SYMBOL net/can/can 0xaf8bbd93 can_send +EXPORT_SYMBOL net/can/can 0xb2b2aba4 can_ioctl +EXPORT_SYMBOL net/can/can 0xcbe7f056 can_proto_unregister +EXPORT_SYMBOL net/ceph/libceph 0x078b4704 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0e83c6b6 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x1476c467 osd_req_op_cls_response_data +EXPORT_SYMBOL net/ceph/libceph 0x1662ff42 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x198d803d ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x1b45b94a osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x1c7003b6 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x206425d7 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x21c60751 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x24d897df ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x27e8109d ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x350ae1d2 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x3864c4b1 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3ac8a486 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x3d250a3b ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x3de7f060 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x3e29ce06 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x3fe633c0 osd_req_op_watch_init +EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0x410012e9 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x419cb09b ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0x42f50763 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part +EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0x45fc2d53 ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x4b77daec osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x4b8dc8fe ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x56e38552 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5996afcc ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x5d8ae87b ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x6086fbda ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x62367714 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6c70cf15 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x6fcdafef ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x70143de8 ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0x73ade3d3 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x7429000c ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x7633e121 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x77d4f306 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x7d66cff5 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x7e1f5ee3 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x807ea240 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x82151f53 ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0x84631624 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x85a4d229 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x85b995b9 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x861751ed ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x8c74a0f1 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x91df5e15 ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0x950ad8a4 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x9590eab7 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x95ca5525 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x98546246 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x98cf3ffc ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9cea08e5 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x9ed9c3d4 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa71b2d88 ceph_monc_request_next_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xa83c08d6 ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xa8a70554 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xad81af74 ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0xae1a2fa6 ceph_oloc_oid_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xaf2840fa ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xb64a6549 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xb6aa0fef ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xb6fa6b43 ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0xbbe2e850 ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0xbe533a71 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xbed46bc4 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0xbf3a918e osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xc336df17 ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xc85c91eb ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xca50db0e ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xcdf13469 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xcffff883 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd35d157c osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0xd37d9e3d ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0xd4be214d ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xd7acd83f ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xdaedee77 ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0xdb2b5259 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xdd25f3b1 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xe3357064 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xe3b042ca ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xe9bd72ed ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0xe9d1b906 ceph_monc_do_get_version +EXPORT_SYMBOL net/ceph/libceph 0xf1437868 ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0xf17ab4da osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xf35cb4d9 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xf5fcd7b2 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xfa57adfa ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xfb39adc9 osd_req_op_init +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x7d9dc4b8 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xe7673cac dccp_syn_ack_timeout +EXPORT_SYMBOL net/ieee802154/ieee802154 0x06dd10a6 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x11178c8f wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x38cfbfb2 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x8b043b7e wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0xb0587b07 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xc9862dff wpan_phy_new +EXPORT_SYMBOL net/ipv4/fou 0x0b58b38b gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0x3106aeb4 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0xd0750778 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0xe36f2863 fou_build_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x00a87c13 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x077f9b12 ip_tunnel_dst_reset_all +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x242f6dea ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x37ec4061 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xdd968908 ip_tunnel_encap +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xe44b7f61 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x07b143a5 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xc648711a arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xca4ff2e3 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x09bb79aa ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x689e0a5c ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xe7e0b29d ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x0ddb4c3c xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0x108d9512 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x0d5940bf udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x589e5658 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x8da3e73e ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf6ab52b6 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xfa1cb189 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x5c28e450 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x64a4d805 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x775cf6e7 ip6t_register_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x1d51e67d xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0x3ffee5e4 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x75c30dd3 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xe64ca5ac xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x0969a14d ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x0c543055 ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x3b27fb1d ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x6ce1ff62 ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x80c38b80 ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x8e54719b ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xc613a262 ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xddefbdbe ircomm_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x0064e0ea hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0x03b56b3d irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value +EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service +EXPORT_SYMBOL net/irda/irda 0x098798aa irlap_open +EXPORT_SYMBOL net/irda/irda 0x10c9bc3a irda_notify_init +EXPORT_SYMBOL net/irda/irda 0x14bf7e68 irttp_dup +EXPORT_SYMBOL net/irda/irda 0x1e6cade0 irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0x2267c950 irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x39949549 iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0x3e56064f hashbin_new +EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value +EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service +EXPORT_SYMBOL net/irda/irda 0x49d031ba async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0x4c24d9ba iriap_open +EXPORT_SYMBOL net/irda/irda 0x601bda46 hashbin_remove +EXPORT_SYMBOL net/irda/irda 0x667e6872 irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0x6a6726e5 alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x6b5fbcef hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0x6de43b19 irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0x6e0ab3c7 irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client +EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client +EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x85d88217 irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x87fd22dc irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0x8b0c7a27 irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0x8bac151f irlap_close +EXPORT_SYMBOL net/irda/irda 0x8f5193ad irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0x964cd57a async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0xa1d41e58 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0xa1fd3344 irttp_data_request +EXPORT_SYMBOL net/irda/irda 0xaa557515 irias_new_object +EXPORT_SYMBOL net/irda/irda 0xb3ee280d irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value +EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute +EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request +EXPORT_SYMBOL net/irda/irda 0xbe8b1015 irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0xc34d0d15 irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0xc68e43be irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0xcead7dbb hashbin_find +EXPORT_SYMBOL net/irda/irda 0xd2108314 hashbin_insert +EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma +EXPORT_SYMBOL net/irda/irda 0xdd16410e irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0xe3463529 hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0xe3bde43e irias_insert_object +EXPORT_SYMBOL net/irda/irda 0xe785992e irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0xf078366e irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0xf0a694a1 irias_find_object +EXPORT_SYMBOL net/irda/irda 0xf1b8baae irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0xf5876b95 hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0xfbdcda99 iriap_close +EXPORT_SYMBOL net/l2tp/l2tp_core 0x7de6e949 l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0x4ed6ee23 l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x0c831f60 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x1425f943 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x249c6efa lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x35d2af24 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x3fd8f0dc lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x5a454782 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x66b6be0b lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xcae3c3b8 lapb_unregister +EXPORT_SYMBOL net/llc/llc 0x122bbdfe llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x363764ae llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x53ce08e6 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x6bc83853 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xadb31979 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0xdfd7fda2 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0xeb2be817 llc_set_station_handler +EXPORT_SYMBOL net/mac80211/mac80211 0x023f3322 ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x06ca1fde ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x0bd609f2 ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x0c0b0949 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x0cd86ec1 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x0d810d9e ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x0d85c575 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x0e9f290e ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x122dfc3d ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x153d4222 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x1ac72312 ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0x20882935 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x21839162 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x242a8167 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x24e2693a rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x2cd4a0b6 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x36f03f5a ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x3741176e wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x38134fdc ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x388f78c6 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x3ae9bdd5 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x419c0202 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x431876cd ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x433a68cb ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x4a7159d3 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x4c2b011a ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x51028096 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x515c75ba ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x55f97e4f ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x5639acf0 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x574fac43 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x5d43be41 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x5f3ba67c ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x5f99d98a __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x65797f8d ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x66964854 ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x66ed1e89 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x6b970567 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x6c161fb7 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x6c47ec01 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x6df91682 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x7095083b ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x758664a3 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x773fe3e4 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x77edad16 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x79c85c13 ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x7a18fe8c ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x8d216f4b ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x8d774c34 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x8df225d3 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x92840f05 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x96a9ec62 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x976985e5 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x9791a5ba ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x9c4929b4 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x9f20a8e9 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0xa5cf0386 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0xb00d33b6 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0xb2ad2edb ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xb2df0dea ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xb8f96bcf ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb9ed53e3 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xba6539b4 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xbb885fcd ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xbb8f4116 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0xbfae87d7 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xc0023c6e ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xc061e695 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0xce547094 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xd59258b7 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xd703612b ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xd93d155d ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xdfd3ead7 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xe180bdef ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xe6a4cb7b ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0xe959d0b8 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xe9dc114f ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xf0774739 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xf36ce8a3 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xfaa093e8 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0xfb0bf819 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0xff2e937d ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac802154/mac802154 0x05633593 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x415e5405 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x78c516f5 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0xc26f5af7 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xc8f0fd60 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xce0f1e37 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xe2d256e5 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0xfd178440 ieee802154_register_hw +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0292219e register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x165b8421 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2c4177a0 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4a09104f ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5b930e57 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5d3279f6 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7920e0d3 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xac690fb8 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc8f14d96 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd5f29b93 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd9cbe859 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe640e879 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf63a90be register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfa821e50 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x09f19f46 nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xbadae743 __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xbd6bf8e9 __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x111b365d nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/nf_nat 0x195c9060 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x8797f583 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xd28a88b8 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xdcd71f09 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xe6f49e59 nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/x_tables 0x130ca0c0 xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0x1d30d047 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x253e8b44 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x28bff088 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x37e06eb7 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x59dcffc9 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x78586b3d xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xaca97937 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xefa58d6a xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xf13c4076 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xf86a0d45 xt_register_target +EXPORT_SYMBOL net/nfc/hci/hci 0x0b5c0fe3 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x2ba7ff0a nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x2d684f61 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x31e2d05f nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x38be46a2 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x4338990e nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x448a0048 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x603900fb nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x654f8369 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x6a90a288 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x783ae54c nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x80a2ca7e nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x9937b9ff nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0xa4f974c8 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0xaedd8faa nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0xba6e27df nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xbecfa87f nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xbf6ecf61 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xd7b9acfb nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0xe71742ba nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xf6616f17 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/nci/nci 0x0105cbbe nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x0beba47f nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x0fc83ad5 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x1c093feb nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x2f1b7f8a nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x3c6a42fe nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x3d075a80 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x3e0d5f7a nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x4cf0df9d nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x4f9ad2b6 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x5b635e94 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x5d7dd228 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x636faabc nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x825c31bc nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x82cac518 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x91d5fc99 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0xaa547f00 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xbd09e145 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xbeb3bfc4 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0xc09340eb nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0xc39e8925 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0xd286404e nci_get_conn_info_by_id +EXPORT_SYMBOL net/nfc/nci/nci 0xd2def9a1 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xd613ae85 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xdf7ddb62 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0xe3f30803 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0xf47036c9 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xf92f346a nci_hci_set_param +EXPORT_SYMBOL net/nfc/nfc 0x05bb0af8 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x08fa9fda nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x0bfe1952 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x0cac1c5d nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x1a64f7f3 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x2901a1c9 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x2946ebbf nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x2bf09452 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x3a19cf64 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x3f40de50 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x4cfffdc6 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x54364aa5 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x86f2941e __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x9b93dc55 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xa52a927a nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xa832d68a nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xb22bc33e nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xd4a3eae9 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xd517f912 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0xe5f2332c nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xe92e852f nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0xf38b843d nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xf4b5c465 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xf58f5105 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc_digital 0x16e8cded nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x2b4ccee7 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x4d956bf6 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x76bff7d6 nfc_digital_free_device +EXPORT_SYMBOL net/phonet/phonet 0x1e8a1fdf pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x305aaaef phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x48484f0a phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x640316c5 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x674222d4 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x7e604ec1 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0xb60be822 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0xc793148a phonet_proto_unregister +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1332eec5 rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x16a91a09 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1c1c1f1e rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1c76ae4f rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x34b39210 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x3631d643 rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8f9fe3eb rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb6206689 rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xbd06ffbc rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xcbd1cf3c rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd80a3de1 rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd8f38e36 rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xda9cbe17 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf52dc370 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf5886c4f rxrpc_kernel_send_data +EXPORT_SYMBOL net/sctp/sctp 0x3ab9c871 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xb2fe2860 gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xcfbf21b8 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xe4d785b5 gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0x5c038847 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0x5fe381b1 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xbe69bf8f xdr_truncate_encode +EXPORT_SYMBOL net/wimax/wimax 0x004d41c0 wimax_rfkill +EXPORT_SYMBOL net/wimax/wimax 0xac9d72b4 wimax_reset +EXPORT_SYMBOL net/wireless/cfg80211 0x02f9d21f ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0b3ff06c cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x0db4070c cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x0dfa6edc cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x0ebd20fd cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x0ffa7eb4 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x16b6a1be cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x17f5ed73 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x1b3ace94 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x1ce42a1e cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x212860a3 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x25f6a39a cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x2611d616 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x320941f6 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x33a5a24e cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x36b92344 cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0x3a5b1923 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x3a94a288 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x3bc9d5be ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x443877be cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x45de969d cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x48e8c630 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x492ab305 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x49577c33 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x4e7d1991 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x52a372da wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x553baf5a wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x558f8e9a cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x56815999 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x58f43970 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x59656341 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x5a4f066b cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x5f278404 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x62a7bbd8 ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x63c89ba4 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x6476e1cf wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x686d7b7b cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6a92b09c __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x6e8cd32e cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x6f2f3ed5 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x70f6c08c cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x71f56aa7 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x72fe3fd2 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x79743c05 regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x7a43c79c cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x7a4f6549 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x7d7bad22 cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x7e85f13e cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x831f4ddc cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x8467bbc3 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x8ba18898 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x905c93db __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x91d7a142 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x93c927e3 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x94cb834e cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x952bc994 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0xa1425906 ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xab8da8e2 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0xad6e88c8 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xae7a9613 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0xaea4a436 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xb5338cab cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0xb8ce0b65 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xbb3be76f ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xc392d23d cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xc40c8dd2 wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0xc463e8c0 __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xcc792dd9 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0xd50b0a22 ieee80211_ie_split +EXPORT_SYMBOL net/wireless/cfg80211 0xd536c44f cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0xd74a210b cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdce23621 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0xdeb96b94 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xdf26aed2 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xe44e20b6 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xe9a7b292 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xed74b05f cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xed765750 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xeeef71b3 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xef16898d cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xf237f181 cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xf6b12db9 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xf8b2a4eb cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xf9929e33 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0xfc7e1794 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/lib80211 0x1fbdd62f lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x337c5132 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x558f1594 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xa1a7f414 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0xda451b26 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xff695748 lib80211_crypt_info_free +EXPORT_SYMBOL sound/ac97_bus 0x79736366 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x7b911e55 snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x089fa15c snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1d4e1fcc snd_seq_kernel_client_enqueue_blocking +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x55786758 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0xebd2b3c8 snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x244725ce snd_seq_device_new +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x072d978b snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x13a17752 snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x2eed26bf snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x4d5ca523 snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x592f6e9b snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xd7c7afcc snd_midi_event_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe60fb228 snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xecbde43c snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x71447f08 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x08e7d011 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x0d7aef35 snd_card_free +EXPORT_SYMBOL sound/core/snd 0x0ec6bfc1 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x15255643 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program +EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer +EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL sound/core/snd 0x1e9ff47d snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x1ff5b97f snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x26a8dacc snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0x28164c31 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x358396e8 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x38f9b41c snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3de97696 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x406de084 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x47f88f27 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x481d2a2b snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x48f80dc9 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x506d6491 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x55d11abd snd_cards +EXPORT_SYMBOL sound/core/snd 0x56631c76 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x58780db4 _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0x634846d3 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x64b003e7 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x69363482 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x6e9d236b snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x6edccaa2 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x7581b22f snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x78c9f0cb snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x7cd78c9c snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x8b5f189b snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8e64c48b snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x8efbf82c snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x9106c5ef snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x93d4ae51 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x96e0c774 snd_component_add +EXPORT_SYMBOL sound/core/snd 0x97e07f14 snd_register_device +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb562303f snd_device_new +EXPORT_SYMBOL sound/core/snd 0xb7b03893 snd_info_register +EXPORT_SYMBOL sound/core/snd 0xb8b63696 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0xb94bf420 snd_card_new +EXPORT_SYMBOL sound/core/snd 0xbb60e715 snd_card_register +EXPORT_SYMBOL sound/core/snd 0xbc66ea5d snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0xbe0051e9 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0xcde4285d snd_device_register +EXPORT_SYMBOL sound/core/snd 0xe3b748af snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0xea89700c snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xf26e8f20 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0xf9d64e7b snd_seq_root +EXPORT_SYMBOL sound/core/snd 0xfc704081 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0xfe6a1fc0 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-hwdep 0xfdfabf70 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x000e2f5b snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x02f2ad48 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x06b310c9 snd_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x119c0b48 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x1e2e341f snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0x21a8181a snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x239b8330 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x2ae3e655 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x2cf94a45 snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0x33615975 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x3c85e79f snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x3fab2900 snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0x4db39619 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x4df28661 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x582c0588 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x5898dcba snd_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x5923fd8e snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x5a1657ee snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x5e81bd2a snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x5e9af3e3 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0x64d3ff12 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x68459126 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL sound/core/snd-pcm 0x6a22855c snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x723fb8e1 snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0x7881cf9f snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x7fa67398 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x81902296 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0x8227e5cc snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x8701dba9 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x87686d68 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x89e72cad snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x8a9819d2 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x8c9eaa98 snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0x8ec62715 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x9ebd4707 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xb0cacdd3 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xb702e557 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xbfa78b7d snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xc118d458 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0xc506d468 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0xd887c552 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0xdd9bbe62 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xe1333e83 snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xea20521c snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0xee60a106 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0xeea14b58 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xf3823fd9 snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0xfc02f128 snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0xfc5b4eef snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0a550256 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0fb64db4 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x13904792 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x23de0bd5 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x49986c44 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x582e1862 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x60f7b5aa snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x69d83e69 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x728f3f35 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x766d86b7 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x88e9547e snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd24102db snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd82029ee snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe072a3ce snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe647f0cf snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe9f2b48c __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xef8de35c snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf1d4274e snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf479f4bf snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-timer 0x1182f566 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x153888e9 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x1d1b2075 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x38fe2bee snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x4174caf7 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x56546c9c snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x5f08f68c snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x68f82281 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x6d3603ad snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x73610504 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x7774660b snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0xb10cec09 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0xf8b2515d snd_timer_resolution +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x10706a05 snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x124f5768 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1eb60059 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x3fc0fe51 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x40d1467b snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x5ecec42a snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6b84f406 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7457434a snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9b63fb37 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xcb641a83 snd_opl3_init +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1b7d81c8 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1fed4ec8 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x294c1b1a snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x4213f306 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x479d383e snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9ee6a8b5 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xac9a7e3a snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc454f85b snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe9af5008 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x069b3f5a iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x07b2991c snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0cd6078d cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x24bbcf7c amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x259a3391 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x294db86d amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x29f6bd42 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3c6df5d5 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4c864c9d amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x51f05fb7 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5e8e2908 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x64f4f1ef amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x67214eea fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6a39b702 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7c5a787b fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7c8125ee amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8d35f61e fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9774c0c4 snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9b668314 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa40dd190 snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xacb1e0db amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb0f9420f amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb6a3c99b cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb75745e1 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc0784eea amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc4c5beae fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc635ef4a fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcf0aa2b1 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd960bbe6 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd9832db5 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe9743a4f amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xeb9f70d4 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x29286f11 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xe6175b0c snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1ec81bcb snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x329143a1 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x570b23c7 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x5d9b386b snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7696bb6b snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb63c4745 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xe66a7304 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf5411ea7 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x5d85c278 snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x65910bfd snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xa7d9d07b snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xaa7f0be1 snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xd7ab98c3 snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xe821d9fc snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x241104a8 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x3de71a1a snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x98348d4e snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x99a7b6ba snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x2e804238 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x8f8f8845 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x2afaaf9f snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x37a50cca snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x7d8c1ae8 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x8093ee5a snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xb7a1bb65 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xfcd79a09 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-i2c 0x5e287a8e snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x628e5a05 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x9f328d6f snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xd45a55b0 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xdbcfeaa6 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0xe948301a snd_i2c_device_free +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x0c15a6c9 snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x1536e46a snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x375dfaf8 snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5913178f snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x8f69e720 snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x9fa67df5 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa4d96c42 snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xc628f2a0 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd27371e4 snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xf5481cdd snd_sbdsp_command +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x07320507 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x13b3c535 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x25c45aca snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x45363090 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x54c73bf4 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x59214e9b snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x69a7e858 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x71a6eaed snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa63a0129 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa6e9b4b0 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb76c96a3 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc01a740d snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc35b8284 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xce6d17a7 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdd42f9e3 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xde638168 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe48539d0 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x01a5c548 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x3b5031cf snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x820f3fca snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x8387d107 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x96df4303 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc076c2b0 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xceec3ccd snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe67ee9c1 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xef4d087c snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x44244a0c snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x985aa851 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xfda9ecf1 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x07b20552 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0d66d14f oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x23d9c9c3 oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x27ef7f6b oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x289cf56f oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4e29128c oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x620d945d oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x63d6d2da oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x791b942c oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x807b01db oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x941c7669 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9cb39898 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa001c885 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb4a4d153 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbe3095be oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc1326a4f oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe490a0da oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xee7710a3 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf35693db oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xff67f480 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x1de18973 snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x25493beb snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x81a084ab snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x8f360797 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xd6bc22d2 snd_trident_alloc_voice +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x4e5f158b tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xd0ae2833 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/snd-soc-core 0x35fa630e snd_soc_alloc_ac97_codec +EXPORT_SYMBOL sound/soundcore 0x0d57e8cb register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0x5068c3fa register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x7533b2f9 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x903bfe9c sound_class +EXPORT_SYMBOL sound/soundcore 0x99415188 register_sound_midi +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xacd48726 register_sound_special +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x18ac08f1 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x3c89bf02 snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x6b19d0f4 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x7ac66250 snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xb2cdcf8c snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xcc1a53d0 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/snd-util-mem 0x0ae73cd4 __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x0aeb473f __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x15875799 snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x189d8022 snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x63c58f03 snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0xab5df7b1 __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xd129ca40 snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xec98a46b snd_util_memhdr_free +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xe7462e38 snd_usbmidi_create +EXPORT_SYMBOL vmlinux 0x001223b2 genphy_config_init +EXPORT_SYMBOL vmlinux 0x001f9bdf compat_ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x00327082 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x0036bcde bdi_init +EXPORT_SYMBOL vmlinux 0x0070cd1f queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x007e07fd d_set_d_op +EXPORT_SYMBOL vmlinux 0x0080fcb3 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x00855cf3 abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x0085e1f1 __do_once_done +EXPORT_SYMBOL vmlinux 0x00b4ab0a blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x00b7d7d1 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x00b88545 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x00c7996b xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x00cf16a6 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x010144d5 __skb_checksum +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x010e9996 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr +EXPORT_SYMBOL vmlinux 0x012a97fc xor_altivec_4 +EXPORT_SYMBOL vmlinux 0x0135732e netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x01513ea1 __d_drop +EXPORT_SYMBOL vmlinux 0x015b6ba4 path_noexec +EXPORT_SYMBOL vmlinux 0x015c6f72 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer +EXPORT_SYMBOL vmlinux 0x01872d70 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x019bc3d8 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x01d33c26 bio_integrity_advance +EXPORT_SYMBOL vmlinux 0x01d60cc9 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x01ed06a4 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x01f07882 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x01fd7346 kern_path_create +EXPORT_SYMBOL vmlinux 0x021fe3b7 d_drop +EXPORT_SYMBOL vmlinux 0x0226e52d dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x02270fe4 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x023e4443 submit_bh +EXPORT_SYMBOL vmlinux 0x023f4388 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x024bf827 radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x02572b5b icmpv6_send +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x02700dd6 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x028ab84c input_unregister_device +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02a9937a set_groups +EXPORT_SYMBOL vmlinux 0x02ab9bc2 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x02d29a34 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x02d5d56d __brelse +EXPORT_SYMBOL vmlinux 0x02de5870 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02ea5a5f generic_setlease +EXPORT_SYMBOL vmlinux 0x02edca12 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x033407f2 rtnl_notify +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x035c4369 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x0364a3d6 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x03696418 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x036d2284 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x03ca490a pci_get_subsys +EXPORT_SYMBOL vmlinux 0x03e38e74 compat_sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x04069978 dma_iommu_ops +EXPORT_SYMBOL vmlinux 0x04074f48 ioremap +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x04630c31 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x047e372e blk_init_queue +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x048fae8c abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0x04916654 security_path_chown +EXPORT_SYMBOL vmlinux 0x0492240c led_set_brightness +EXPORT_SYMBOL vmlinux 0x04b0c712 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x04b1c212 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x04c340d6 netdev_features_change +EXPORT_SYMBOL vmlinux 0x04c4baf9 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x04d97262 md_write_start +EXPORT_SYMBOL vmlinux 0x04df0d69 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x04fc5893 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x050828ba pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range +EXPORT_SYMBOL vmlinux 0x05204a35 __bforget +EXPORT_SYMBOL vmlinux 0x05229586 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x05241073 bdi_register +EXPORT_SYMBOL vmlinux 0x0530dede _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x053474ca dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x05379a7c tty_hangup +EXPORT_SYMBOL vmlinux 0x053ce746 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0x055c8559 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x05674e90 input_allocate_device +EXPORT_SYMBOL vmlinux 0x05a514a1 _insl_ns +EXPORT_SYMBOL vmlinux 0x05bf0681 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x05c0e574 agp_backend_acquire +EXPORT_SYMBOL vmlinux 0x05ed59bb tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x05f6ff13 param_set_invbool +EXPORT_SYMBOL vmlinux 0x05f864bc jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x060d2407 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x061759e6 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x063cf696 posix_test_lock +EXPORT_SYMBOL vmlinux 0x064d5d1f pci_find_hose_for_OF_device +EXPORT_SYMBOL vmlinux 0x064ec6d8 cdrom_release +EXPORT_SYMBOL vmlinux 0x06532283 __vfs_write +EXPORT_SYMBOL vmlinux 0x065bc0f0 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x06697e52 scsi_register +EXPORT_SYMBOL vmlinux 0x066ed902 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x067ac8a6 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x067e7584 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x067f544f genlmsg_put +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x072a9f1f tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x074b032a skb_unlink +EXPORT_SYMBOL vmlinux 0x074b2ad9 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x074ba728 fd_install +EXPORT_SYMBOL vmlinux 0x074e9213 down_killable +EXPORT_SYMBOL vmlinux 0x0774ca95 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x07844435 sock_efree +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07a9ef84 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07dfd09b security_mmap_file +EXPORT_SYMBOL vmlinux 0x07e290c9 request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x07ef4875 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x07f31869 md_register_thread +EXPORT_SYMBOL vmlinux 0x080608a4 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x082e6f58 blk_init_tags +EXPORT_SYMBOL vmlinux 0x083e6511 ilookup +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x084cfdc8 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x08505d62 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x0854f83a phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x086d8cdd irq_stat +EXPORT_SYMBOL vmlinux 0x08767cfc blk_put_queue +EXPORT_SYMBOL vmlinux 0x087796c4 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x08b0d328 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x08e1f90b textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x08eaaf24 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x08efb1c7 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x08f003f9 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x08fe31ed ns_capable +EXPORT_SYMBOL vmlinux 0x0919cbeb input_unregister_handle +EXPORT_SYMBOL vmlinux 0x091c34ad pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x092c500c pci_dev_driver +EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key +EXPORT_SYMBOL vmlinux 0x098983e7 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x0994fee5 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x09b2900a audit_log_start +EXPORT_SYMBOL vmlinux 0x09b40fbb tty_port_close +EXPORT_SYMBOL vmlinux 0x09c35837 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c67afb flex_array_get +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09cd2bc3 dev_mc_init +EXPORT_SYMBOL vmlinux 0x09d237ac inet_register_protosw +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09d93c57 xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0x09df0e4d d_invalidate +EXPORT_SYMBOL vmlinux 0x0a059996 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x0a06413f genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a35d216 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x0a569a91 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x0a57863e cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x0a67fe0d free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x0a84ebf9 scsi_register_interface +EXPORT_SYMBOL vmlinux 0x0a9a10fd dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aa8f99a mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x0accc08c md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ae623db posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x0af69784 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x0b013b78 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b30b6eb simple_unlink +EXPORT_SYMBOL vmlinux 0x0b42ce71 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x0b5823dc kernel_param_lock +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b614e35 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x0b62c349 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b80271f pci_choose_state +EXPORT_SYMBOL vmlinux 0x0b8d5d42 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x0b9b1e27 dqget +EXPORT_SYMBOL vmlinux 0x0ba95f40 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bd5d517 compat_nf_getsockopt +EXPORT_SYMBOL vmlinux 0x0be981e7 skb_checksum +EXPORT_SYMBOL vmlinux 0x0c134470 generic_update_time +EXPORT_SYMBOL vmlinux 0x0c21d019 flush_delayed_work +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c4e59ac tcp_proc_register +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c595227 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c91640c set_wb_congested +EXPORT_SYMBOL vmlinux 0x0c93373b nf_log_register +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cb506ec sock_create_lite +EXPORT_SYMBOL vmlinux 0x0ce510e0 agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0x0ce5cc4d napi_consume_skb +EXPORT_SYMBOL vmlinux 0x0cea1224 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x0cfea460 register_cdrom +EXPORT_SYMBOL vmlinux 0x0d1a1f19 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x0d300311 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x0d415862 udp_seq_open +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61d0b9 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d6c963c copy_from_user +EXPORT_SYMBOL vmlinux 0x0d7a7823 sock_no_connect +EXPORT_SYMBOL vmlinux 0x0d851fe0 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x0d95d5da kill_pid +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0da53381 __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0x0da94452 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x0dbc56b2 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x0dc0ace0 idr_find_slowpath +EXPORT_SYMBOL vmlinux 0x0dcc4361 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x0dd15c2c kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x0ddc1710 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x0decf20b neigh_lookup +EXPORT_SYMBOL vmlinux 0x0e02dab5 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x0e056a93 scsi_device_get +EXPORT_SYMBOL vmlinux 0x0e0c6a2c inet_bind +EXPORT_SYMBOL vmlinux 0x0e17aa55 vfs_fsync +EXPORT_SYMBOL vmlinux 0x0e1d02fc mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x0e5260b8 brioctl_set +EXPORT_SYMBOL vmlinux 0x0e5fabb6 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e8a3174 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x0e8f30f6 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x0eaaf398 dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0x0eb8c7a9 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x0ec3a38b netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0eee53a8 iov_iter_init +EXPORT_SYMBOL vmlinux 0x0ef2ea4d set_disk_ro +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f018c25 agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0x0f11c8d4 cfb_fillrect +EXPORT_SYMBOL vmlinux 0x0f142fd4 kill_fasync +EXPORT_SYMBOL vmlinux 0x0f213d5f unregister_binfmt +EXPORT_SYMBOL vmlinux 0x0f25a763 inet_offloads +EXPORT_SYMBOL vmlinux 0x0f3cf4c6 mntput +EXPORT_SYMBOL vmlinux 0x0f4bb4c6 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f5faa7e wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x0f685732 devfreq_interval_update +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f85d5a5 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x0f889f46 agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0x0f95ea12 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fc65ddb __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0x0fea413c kobject_del +EXPORT_SYMBOL vmlinux 0x0ff0b9c7 scsi_print_result +EXPORT_SYMBOL vmlinux 0x0ff54d8c tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x1001eaa7 del_gendisk +EXPORT_SYMBOL vmlinux 0x1013248e nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x1021bd3c sk_alloc +EXPORT_SYMBOL vmlinux 0x103a13bc jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x103fba42 scsi_host_get +EXPORT_SYMBOL vmlinux 0x1041782e ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x105eecf8 kernel_accept +EXPORT_SYMBOL vmlinux 0x106972ab flush_tlb_mm +EXPORT_SYMBOL vmlinux 0x1071bab8 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x107e2946 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x107ee89b tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x1086bbd2 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x10950ee1 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x10a3e180 param_get_ushort +EXPORT_SYMBOL vmlinux 0x10c372b0 abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x10df0fcb blk_start_queue +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x1101f4ee dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x11293cc6 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x112a5f15 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x112fca77 md_integrity_register +EXPORT_SYMBOL vmlinux 0x11308931 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x11586b4b of_platform_device_create +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x1177f5cf tcp_req_err +EXPORT_SYMBOL vmlinux 0x1182d83a cpuidle_disable +EXPORT_SYMBOL vmlinux 0x1183b6ee __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x118cdd20 blk_end_request +EXPORT_SYMBOL vmlinux 0x119366cc dup_iter +EXPORT_SYMBOL vmlinux 0x1193f713 nvm_put_blk_unlocked +EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x11b37acb bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x11d15dd2 lookup_one_len +EXPORT_SYMBOL vmlinux 0x11d226aa remove_arg_zero +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x120a1ee0 igrab +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x123ced43 import_iovec +EXPORT_SYMBOL vmlinux 0x123f82f3 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x1251fce5 blk_get_request +EXPORT_SYMBOL vmlinux 0x12572715 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x1274432f inet_add_protocol +EXPORT_SYMBOL vmlinux 0x12813cde unload_nls +EXPORT_SYMBOL vmlinux 0x1289dbcb copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x128d1c48 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12b6b3b5 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x12db5d1d xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x12dfd164 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x12dfeb12 vprintk_emit +EXPORT_SYMBOL vmlinux 0x12e8d495 bio_flush_dcache_pages +EXPORT_SYMBOL vmlinux 0x12ed5d80 cap_mmap_file +EXPORT_SYMBOL vmlinux 0x12eeeb95 nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0x12f4b184 neigh_for_each +EXPORT_SYMBOL vmlinux 0x12fafad8 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x12fc3589 rt6_lookup +EXPORT_SYMBOL vmlinux 0x130298c9 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x130cbdf4 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x13215eac mem_section +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x13360821 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x13554dff single_open_size +EXPORT_SYMBOL vmlinux 0x13713635 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x13901311 ll_rw_block +EXPORT_SYMBOL vmlinux 0x1392bb51 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x139c5ff2 __blk_end_request +EXPORT_SYMBOL vmlinux 0x13ca2c3b cad_pid +EXPORT_SYMBOL vmlinux 0x13cfd714 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x14186dac seq_lseek +EXPORT_SYMBOL vmlinux 0x1440ea10 input_register_handler +EXPORT_SYMBOL vmlinux 0x145e53b8 fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0x1471cf23 __free_pages +EXPORT_SYMBOL vmlinux 0x147f806a rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x149d0825 seq_open_private +EXPORT_SYMBOL vmlinux 0x14acbde8 of_create_pci_dev +EXPORT_SYMBOL vmlinux 0x14b5942b scm_detach_fds +EXPORT_SYMBOL vmlinux 0x14b5ec09 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x14cb154d blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x1503daef blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x1508bc46 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x151a40ae __nd_driver_register +EXPORT_SYMBOL vmlinux 0x1535b1b7 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x1536a5e4 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x153bbcbc dev_mc_del +EXPORT_SYMBOL vmlinux 0x15493368 nvm_end_io +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x155c312d bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x156a608b blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0x156e0019 input_register_handle +EXPORT_SYMBOL vmlinux 0x15745242 machine_id +EXPORT_SYMBOL vmlinux 0x158243f1 phy_device_free +EXPORT_SYMBOL vmlinux 0x15b3b4a9 filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0x15b6c8db scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15c302e1 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x15c3f85c mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x15d3fd60 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x15efe329 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x15f69b43 inet_accept +EXPORT_SYMBOL vmlinux 0x16132833 neigh_table_init +EXPORT_SYMBOL vmlinux 0x16354a10 pci_dev_get +EXPORT_SYMBOL vmlinux 0x164d39b2 mmc_erase +EXPORT_SYMBOL vmlinux 0x166355f5 dquot_get_state +EXPORT_SYMBOL vmlinux 0x1664b7a8 __module_get +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x16809ff9 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x1684b089 lock_sock_nested +EXPORT_SYMBOL vmlinux 0x16a806ac inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x16a878cb __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x16c44728 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x16cdad57 napi_complete_done +EXPORT_SYMBOL vmlinux 0x16e002f0 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x16e04634 cdev_alloc +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16f6328c input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x170c5b5e blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x171108de __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x1715c870 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x1743414f __debugger_fault_handler +EXPORT_SYMBOL vmlinux 0x1751f778 param_get_short +EXPORT_SYMBOL vmlinux 0x175435f4 pipe_lock +EXPORT_SYMBOL vmlinux 0x17648396 dev_base_lock +EXPORT_SYMBOL vmlinux 0x1765295f key_put +EXPORT_SYMBOL vmlinux 0x17843987 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x17860618 qdisc_list_del +EXPORT_SYMBOL vmlinux 0x1793f685 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x17a9a0b7 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17ccda01 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x17e28473 fsl_upm_run_pattern +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x18017e3b kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x18318839 mmc_can_reset +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x184942f5 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x1857aa39 proc_dointvec +EXPORT_SYMBOL vmlinux 0x18605a01 pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0x1868d700 inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0x1878a9ac call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x18798304 blk_requeue_request +EXPORT_SYMBOL vmlinux 0x18841143 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x18c1214a pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x18d8ca3e iov_iter_zero +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18ee12ca pci_domain_nr +EXPORT_SYMBOL vmlinux 0x18f2bc71 tcf_register_action +EXPORT_SYMBOL vmlinux 0x19065ad4 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x190e017a scsi_remove_target +EXPORT_SYMBOL vmlinux 0x19489487 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x1961ef76 udp_poll +EXPORT_SYMBOL vmlinux 0x19638248 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x196c3cc6 seq_write +EXPORT_SYMBOL vmlinux 0x198fb7eb bdi_register_owner +EXPORT_SYMBOL vmlinux 0x199ec4fb arch_spin_unlock_wait +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19a7f066 dev_open +EXPORT_SYMBOL vmlinux 0x19ac61b9 cont_write_begin +EXPORT_SYMBOL vmlinux 0x19b004fc dquot_disable +EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x19b758f5 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x19ba1dc7 fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19c03543 local_flush_tlb_page +EXPORT_SYMBOL vmlinux 0x19c1082a nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x19fd6848 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x1a11cfa2 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x1a2a9396 lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0x1a30a57f genl_unregister_family +EXPORT_SYMBOL vmlinux 0x1a382a8b pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x1a4026b2 netdev_notice +EXPORT_SYMBOL vmlinux 0x1a41412e simple_transaction_set +EXPORT_SYMBOL vmlinux 0x1a57f19a tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x1a621667 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x1a9fc1e4 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x1aa7e914 genphy_read_status +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1af62a99 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b06feb0 udp_set_csum +EXPORT_SYMBOL vmlinux 0x1b132009 rename_lock +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b2d3495 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x1b527c84 param_ops_bool +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1ba23235 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x1bae1638 input_release_device +EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer +EXPORT_SYMBOL vmlinux 0x1bc4ff03 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x1bca2b59 load_fp_state +EXPORT_SYMBOL vmlinux 0x1be17b37 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x1bf7906a poll_freewait +EXPORT_SYMBOL vmlinux 0x1bfd056d tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x1bfec830 __iounmap_at +EXPORT_SYMBOL vmlinux 0x1c1bd596 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x1c270a19 __neigh_event_send +EXPORT_SYMBOL vmlinux 0x1c3e02e4 memcmp +EXPORT_SYMBOL vmlinux 0x1c44ddf6 locks_init_lock +EXPORT_SYMBOL vmlinux 0x1c62eba8 swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0x1c6bca2f jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x1c80de9c ip_send_check +EXPORT_SYMBOL vmlinux 0x1c969823 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x1cb20129 scmd_printk +EXPORT_SYMBOL vmlinux 0x1cbba115 of_root +EXPORT_SYMBOL vmlinux 0x1ce96a07 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x1d0efa8a pagecache_write_end +EXPORT_SYMBOL vmlinux 0x1d1056e5 crc32_be +EXPORT_SYMBOL vmlinux 0x1d18163f pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x1d3c41d3 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x1d49c0fd poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x1d779bd6 __sock_create +EXPORT_SYMBOL vmlinux 0x1d7b4f05 tty_devnum +EXPORT_SYMBOL vmlinux 0x1d9c0959 get_disk +EXPORT_SYMBOL vmlinux 0x1da6ef22 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x1db38268 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x1dbc4d0c proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1dd76000 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x1de313ec blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x1e0dadb6 dns_query +EXPORT_SYMBOL vmlinux 0x1e10e14c of_dev_put +EXPORT_SYMBOL vmlinux 0x1e178be3 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e371fce dev_warn +EXPORT_SYMBOL vmlinux 0x1e3d8812 kobject_get +EXPORT_SYMBOL vmlinux 0x1e49bcf9 iterate_fd +EXPORT_SYMBOL vmlinux 0x1e65e109 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x1e6b9ffd simple_transaction_release +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e75c950 sget +EXPORT_SYMBOL vmlinux 0x1e866bf0 register_md_personality +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea46d25 xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x1ec71d47 __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x1ec7deaa dev_close +EXPORT_SYMBOL vmlinux 0x1ed6016f nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0x1f10be06 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x1f4907ee inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0x1f4ee2ac neigh_seq_next +EXPORT_SYMBOL vmlinux 0x1f6b0ebc phy_init_hw +EXPORT_SYMBOL vmlinux 0x1f6ce67a sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x1f6dedf7 find_inode_nowait +EXPORT_SYMBOL vmlinux 0x1f9e6ad7 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x1fbb88e9 blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fc42375 set_create_files_as +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x20036935 nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0x20041fe4 update_devfreq +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x2037153e page_put_link +EXPORT_SYMBOL vmlinux 0x20393890 framebuffer_release +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x2053b3ae skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x205410fa __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x206170aa lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x208377f6 simple_getattr +EXPORT_SYMBOL vmlinux 0x20a5b2b2 dcb_setapp +EXPORT_SYMBOL vmlinux 0x20a77cd1 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20af8e7a jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20dc9fe9 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x20fee98c dev_uc_add +EXPORT_SYMBOL vmlinux 0x210694cd security_path_chmod +EXPORT_SYMBOL vmlinux 0x210f3d4b mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x211f0500 freeze_super +EXPORT_SYMBOL vmlinux 0x211f68f1 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x21855bbd netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x218e2336 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x2195d5f1 tty_free_termios +EXPORT_SYMBOL vmlinux 0x21ad7da9 compat_mc_setsockopt +EXPORT_SYMBOL vmlinux 0x21ad86a9 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x21bebffd tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x21bfedf0 __kernel_write +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21f19335 fence_remove_callback +EXPORT_SYMBOL vmlinux 0x21f3e274 seq_read +EXPORT_SYMBOL vmlinux 0x220002e9 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x220f352a device_get_mac_address +EXPORT_SYMBOL vmlinux 0x221df26c of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x222473f4 param_set_uint +EXPORT_SYMBOL vmlinux 0x222dc069 netif_rx_ni +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x223a4821 security_path_rename +EXPORT_SYMBOL vmlinux 0x223b7fac scsi_dma_map +EXPORT_SYMBOL vmlinux 0x224c0e16 qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x224fc486 poll_initwait +EXPORT_SYMBOL vmlinux 0x22550c2f address_space_init_once +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x2278e66c blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x2278e94b slhc_remember +EXPORT_SYMBOL vmlinux 0x2281abf9 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x228de527 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x22afdd6b of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22d72255 scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0x22d725f1 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x22e8cde5 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x22f16b3e unregister_cdrom +EXPORT_SYMBOL vmlinux 0x23143b1b of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x23212634 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL vmlinux 0x2339a04b inet6_del_offload +EXPORT_SYMBOL vmlinux 0x234245e0 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x235580e3 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x235e90f3 __wake_up_bit +EXPORT_SYMBOL vmlinux 0x239c6999 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23bb4df3 of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x23c3e51c gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x23cdfbfe devfreq_add_device +EXPORT_SYMBOL vmlinux 0x23cfb565 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x23d95e59 param_set_ushort +EXPORT_SYMBOL vmlinux 0x23f2243d mempool_free +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x2407b396 sock_update_memcg +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x24254a1d __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x243c0e8d blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x245b827b inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x245e7670 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x2462a3e4 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x24b2edd9 page_waitqueue +EXPORT_SYMBOL vmlinux 0x24bb73f3 sys_imageblit +EXPORT_SYMBOL vmlinux 0x24d6b4a6 cur_cpu_spec +EXPORT_SYMBOL vmlinux 0x24ddc531 blk_free_tags +EXPORT_SYMBOL vmlinux 0x24e232ff inc_nlink +EXPORT_SYMBOL vmlinux 0x24f00380 ida_init +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x2500c815 request_key_async +EXPORT_SYMBOL vmlinux 0x2519c572 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x25247476 file_remove_privs +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x253374e1 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x25382dc9 blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0x253e5784 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x25924ba9 md_write_end +EXPORT_SYMBOL vmlinux 0x25b2c32e bioset_integrity_free +EXPORT_SYMBOL vmlinux 0x25d13a6c flush_tlb_page +EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25fa2b0d key_invalidate +EXPORT_SYMBOL vmlinux 0x25fabd1c of_node_put +EXPORT_SYMBOL vmlinux 0x260ece1c mfd_add_devices +EXPORT_SYMBOL vmlinux 0x2627bf3f shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x26477c07 __vmalloc +EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux +EXPORT_SYMBOL vmlinux 0x2665d53a key_create_or_update +EXPORT_SYMBOL vmlinux 0x267023a9 dev_printk +EXPORT_SYMBOL vmlinux 0x267591ca padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x267adb27 inode_set_flags +EXPORT_SYMBOL vmlinux 0x26b760c4 slhc_init +EXPORT_SYMBOL vmlinux 0x26be483e free_task +EXPORT_SYMBOL vmlinux 0x26c88631 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x26cfb7cd input_grab_device +EXPORT_SYMBOL vmlinux 0x26cfe106 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x26e048ad pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x270795a0 bio_endio +EXPORT_SYMBOL vmlinux 0x27435961 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x27646df3 start_thread +EXPORT_SYMBOL vmlinux 0x276f5fd6 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x2771d7ff ida_get_new_above +EXPORT_SYMBOL vmlinux 0x277a5a94 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x279ab001 fget_raw +EXPORT_SYMBOL vmlinux 0x27aff427 ether_setup +EXPORT_SYMBOL vmlinux 0x27b73e05 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c69ea8 param_set_int +EXPORT_SYMBOL vmlinux 0x27d47661 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x27e224bb dcache_readdir +EXPORT_SYMBOL vmlinux 0x28106174 check_disk_change +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x28318305 snprintf +EXPORT_SYMBOL vmlinux 0x28348a43 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x284205f1 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x2847ca50 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x28787d3a fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0x288edfad account_page_redirty +EXPORT_SYMBOL vmlinux 0x289a3b0b ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x289db3ee idr_remove +EXPORT_SYMBOL vmlinux 0x28a2b29f radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28abfe6e scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x28bed658 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x28c618d9 tty_mutex +EXPORT_SYMBOL vmlinux 0x28e6ce45 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x28e73bc2 pci_find_bus +EXPORT_SYMBOL vmlinux 0x28e8ad99 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x28f66664 release_firmware +EXPORT_SYMBOL vmlinux 0x29015e04 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x29127847 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x291549bf twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x291a4e7d ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x29394393 replace_mount_options +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x296584cb write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x298de42e blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x29b2279e __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x29dc4713 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x29f27d80 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x2a0d3d3c tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x2a15af68 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x2a2b1e7d mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0x2a2df1ec sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a383c61 filemap_flush +EXPORT_SYMBOL vmlinux 0x2a418256 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x2a418a60 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x2a4852e5 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x2a646d7b __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x2a93688d skb_store_bits +EXPORT_SYMBOL vmlinux 0x2a9a5d80 kill_bdev +EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2af11c85 netdev_warn +EXPORT_SYMBOL vmlinux 0x2b00b528 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x2b05250c vga_con +EXPORT_SYMBOL vmlinux 0x2b08a40f mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b20349a netlink_capable +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b3b4432 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x2b3ba157 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x2b45d2b4 param_ops_string +EXPORT_SYMBOL vmlinux 0x2b4991ec xmon +EXPORT_SYMBOL vmlinux 0x2b664b07 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x2b6e024d pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x2b797e56 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x2b92220d mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2ba8bb70 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x2bad16d8 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x2bdd6e28 node_states +EXPORT_SYMBOL vmlinux 0x2bddb698 qdisc_reset +EXPORT_SYMBOL vmlinux 0x2bdddf5a ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x2be0f12d dql_completed +EXPORT_SYMBOL vmlinux 0x2c0970dc udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x2c0da8c5 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c3edd62 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x2c5141f0 of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x2c52f210 generic_readlink +EXPORT_SYMBOL vmlinux 0x2c7589e5 reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0x2c7b1fca down_timeout +EXPORT_SYMBOL vmlinux 0x2c8221d4 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x2c9abb76 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x2c9c86ba padata_do_parallel +EXPORT_SYMBOL vmlinux 0x2cb0db75 sk_net_capable +EXPORT_SYMBOL vmlinux 0x2cc26bd4 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x2cc5c67e of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x2cd19893 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x2cd82d37 vme_bus_num +EXPORT_SYMBOL vmlinux 0x2ce1bd8b bio_clone_fast +EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x2cfc6834 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d28061d thaw_bdev +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d339572 vfs_llseek +EXPORT_SYMBOL vmlinux 0x2d37342e cpu_online_mask +EXPORT_SYMBOL vmlinux 0x2d3adb3c read_code +EXPORT_SYMBOL vmlinux 0x2d5bb589 padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0x2d8b8dc1 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x2daee7ff msi_bitmap_free_hwirqs +EXPORT_SYMBOL vmlinux 0x2dfa8c29 ppp_input_error +EXPORT_SYMBOL vmlinux 0x2e0acb35 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x2e0d2f7f queue_work_on +EXPORT_SYMBOL vmlinux 0x2e106ee6 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e2ccc5a param_set_bint +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e476d71 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x2e593a27 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0x2e60fe0d security_path_rmdir +EXPORT_SYMBOL vmlinux 0x2e781c4f param_ops_ushort +EXPORT_SYMBOL vmlinux 0x2e8e6591 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x2ea2d79d skb_trim +EXPORT_SYMBOL vmlinux 0x2ea672e7 pci_platform_rom +EXPORT_SYMBOL vmlinux 0x2eb91375 simple_readpage +EXPORT_SYMBOL vmlinux 0x2ee4853e md_check_recovery +EXPORT_SYMBOL vmlinux 0x2ee7121e ihold +EXPORT_SYMBOL vmlinux 0x2eedca5c put_tty_driver +EXPORT_SYMBOL vmlinux 0x2ef243ad inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource +EXPORT_SYMBOL vmlinux 0x2f258dd2 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x2f287f0d copy_to_user +EXPORT_SYMBOL vmlinux 0x2f2a357d tty_register_driver +EXPORT_SYMBOL vmlinux 0x2f3331d9 i8042_install_filter +EXPORT_SYMBOL vmlinux 0x2f3bc76e sys_fillrect +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f54b2a7 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x2f5f2a57 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x2f75b180 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x2f930a3a flush_tlb_range +EXPORT_SYMBOL vmlinux 0x2f9fd0bb iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x2fb18efe vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fbae91f pcim_enable_device +EXPORT_SYMBOL vmlinux 0x2fd96141 path_is_under +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x300a2c14 seq_dentry +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x302e1ed3 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x30423fc0 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x3067831c mmc_release_host +EXPORT_SYMBOL vmlinux 0x306bba2d devm_free_irq +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x307d6747 simple_dname +EXPORT_SYMBOL vmlinux 0x3083f680 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x30966465 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x309932ae inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x30a221ed fsl_ifc_ctrl_dev +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30b8b35c cpu_to_chip_id +EXPORT_SYMBOL vmlinux 0x30d2e093 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x30d325e3 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x3101bdf4 dentry_open +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x3106046c unregister_nls +EXPORT_SYMBOL vmlinux 0x310ac60b bdget_disk +EXPORT_SYMBOL vmlinux 0x310f02ec memremap +EXPORT_SYMBOL vmlinux 0x312a5c62 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x312c6366 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x313fe4ee pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x3144d51c inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x315d57ec nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x317cbe44 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x317d22fa down_write +EXPORT_SYMBOL vmlinux 0x317ff4e2 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x3199f171 vmap +EXPORT_SYMBOL vmlinux 0x31c656dd pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x31da4e90 bdget +EXPORT_SYMBOL vmlinux 0x32007612 override_creds +EXPORT_SYMBOL vmlinux 0x320293c2 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x3215ecd2 reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0x3222d725 nd_device_unregister +EXPORT_SYMBOL vmlinux 0x323111af i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x32351c19 __sb_start_write +EXPORT_SYMBOL vmlinux 0x324923c4 pci_get_device +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x3251f3cf skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x3271ec80 inet6_getname +EXPORT_SYMBOL vmlinux 0x3275b39d copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x3280c66d netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x32831249 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x329c9d07 udp_ioctl +EXPORT_SYMBOL vmlinux 0x32c36b6a sg_miter_next +EXPORT_SYMBOL vmlinux 0x32db696f serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x32ef841b flow_cache_init +EXPORT_SYMBOL vmlinux 0x32f72d36 thaw_super +EXPORT_SYMBOL vmlinux 0x3306a9f2 qdisc_destroy +EXPORT_SYMBOL vmlinux 0x33071ad2 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x3309ecf3 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x330d9d6b blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0x3323b2bc netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x333cb37c __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x33422250 pcim_iomap +EXPORT_SYMBOL vmlinux 0x3357b3a7 d_make_root +EXPORT_SYMBOL vmlinux 0x337c99e8 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x33940af8 sg_miter_start +EXPORT_SYMBOL vmlinux 0x33a01d38 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33bb29ef pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x33c14538 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33cbd279 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x33d002c0 netdev_change_features +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33f3de7f phy_disconnect +EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x340784ac search_binary_handler +EXPORT_SYMBOL vmlinux 0x34145eba inet_ioctl +EXPORT_SYMBOL vmlinux 0x34241716 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x34247122 mdiobus_write +EXPORT_SYMBOL vmlinux 0x34411786 find_get_entry +EXPORT_SYMBOL vmlinux 0x3446fc21 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x344adbd5 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x346b84be nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x34712ae8 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34b25214 dst_alloc +EXPORT_SYMBOL vmlinux 0x34b342fe mutex_unlock +EXPORT_SYMBOL vmlinux 0x34b5f551 tty_port_open +EXPORT_SYMBOL vmlinux 0x34cb8c55 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x34df37a5 block_write_full_page +EXPORT_SYMBOL vmlinux 0x34e2c3e7 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x356d5bf2 pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0x35873cc1 simple_release_fs +EXPORT_SYMBOL vmlinux 0x358b9246 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x35a75dd5 qdisc_list_add +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35c128e4 kfree_skb +EXPORT_SYMBOL vmlinux 0x35c27f1f of_mm_gpiochip_add +EXPORT_SYMBOL vmlinux 0x35c32767 xor_altivec_2 +EXPORT_SYMBOL vmlinux 0x35c8c952 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x35c9bc69 bdev_read_only +EXPORT_SYMBOL vmlinux 0x35d9d726 dma_set_mask +EXPORT_SYMBOL vmlinux 0x35de5266 swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0x35e2235c xfrm_register_mode +EXPORT_SYMBOL vmlinux 0x35f4569c agp_unbind_memory +EXPORT_SYMBOL vmlinux 0x360271a8 param_ops_charp +EXPORT_SYMBOL vmlinux 0x3618cb2d ida_destroy +EXPORT_SYMBOL vmlinux 0x361a6860 netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0x362d3779 nvm_get_blk_unlocked +EXPORT_SYMBOL vmlinux 0x362e7a21 d_path +EXPORT_SYMBOL vmlinux 0x363144c6 devm_ioport_map +EXPORT_SYMBOL vmlinux 0x36388c4a mmc_put_card +EXPORT_SYMBOL vmlinux 0x3665b5cb sock_wmalloc +EXPORT_SYMBOL vmlinux 0x366f6d27 idr_destroy +EXPORT_SYMBOL vmlinux 0x366faa79 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x369e1115 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x369ecd36 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x36ab9c54 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x36b0e732 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36d83a86 lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0x36e2bcc8 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x371d2130 check_legacy_ioport +EXPORT_SYMBOL vmlinux 0x37344510 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x374bb144 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x3758dfd7 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x3761365d down_read_trylock +EXPORT_SYMBOL vmlinux 0x37692126 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x37746966 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x3789f566 kthread_bind +EXPORT_SYMBOL vmlinux 0x37ab6846 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37e0153d flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x37e93c97 __frontswap_load +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x38469458 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x384bcf06 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x384d2026 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x3851e301 inode_change_ok +EXPORT_SYMBOL vmlinux 0x3868657b mach_qemu_e500 +EXPORT_SYMBOL vmlinux 0x3874bcdd bio_integrity_free +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x388bccf8 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x388cab50 clk_add_alias +EXPORT_SYMBOL vmlinux 0x388ffc42 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38b825d1 idr_replace +EXPORT_SYMBOL vmlinux 0x38d4a7a2 generic_write_checks +EXPORT_SYMBOL vmlinux 0x38d7b2db dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x38fb9933 tty_std_termios +EXPORT_SYMBOL vmlinux 0x391f9aa8 bio_chain +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393d4de9 crc32_le +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x395643c9 mmc_start_bkops +EXPORT_SYMBOL vmlinux 0x39732482 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0x3995de9c ps2_command +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x399ca11b i2c_use_client +EXPORT_SYMBOL vmlinux 0x39b27af3 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39c19330 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x39c6145a abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x39c8f849 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x39cdf63c wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x39d02333 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x39d64838 pci_bus_get +EXPORT_SYMBOL vmlinux 0x39d793c5 netpoll_setup +EXPORT_SYMBOL vmlinux 0x39dd4d44 inet_listen +EXPORT_SYMBOL vmlinux 0x3a074536 fasync_helper +EXPORT_SYMBOL vmlinux 0x3a1e1da5 dget_parent +EXPORT_SYMBOL vmlinux 0x3a265365 pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0x3a2a9d98 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x3a63bd98 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x3a759053 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x3a7b11e3 phy_init_eee +EXPORT_SYMBOL vmlinux 0x3a8453a0 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x3a89ee50 iget_locked +EXPORT_SYMBOL vmlinux 0x3a99db92 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3aa4b75b clear_nlink +EXPORT_SYMBOL vmlinux 0x3ad218bd i2c_register_driver +EXPORT_SYMBOL vmlinux 0x3af3b430 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x3afea074 i2c_transfer +EXPORT_SYMBOL vmlinux 0x3b092b4e ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x3b20be64 pci_pme_active +EXPORT_SYMBOL vmlinux 0x3b3fd9f5 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x3b40945b cdev_init +EXPORT_SYMBOL vmlinux 0x3b5e81c1 __frontswap_test +EXPORT_SYMBOL vmlinux 0x3b615a21 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6c6634 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x3b6dc875 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x3b6e2556 console_stop +EXPORT_SYMBOL vmlinux 0x3b7aa2f4 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x3b7cc908 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x3b871ce5 update_region +EXPORT_SYMBOL vmlinux 0x3bb02502 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x3bc47702 netif_device_detach +EXPORT_SYMBOL vmlinux 0x3bf0da7e security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x3c1a9940 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x3c254541 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x3c2d1831 skb_find_text +EXPORT_SYMBOL vmlinux 0x3c338459 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c481e0a posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x3c483012 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x3c49a944 bioset_free +EXPORT_SYMBOL vmlinux 0x3c4c90d1 may_umount +EXPORT_SYMBOL vmlinux 0x3c4ef4c8 generic_listxattr +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c8d8375 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x3c92c4e6 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x3ca88c79 proto_unregister +EXPORT_SYMBOL vmlinux 0x3cb44551 blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x3cc4b0dc lg_lock_init +EXPORT_SYMBOL vmlinux 0x3cca958d mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x3cded3c3 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cebbe7c bio_unmap_user +EXPORT_SYMBOL vmlinux 0x3ced3cf1 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x3cf81b1a of_match_node +EXPORT_SYMBOL vmlinux 0x3d16b053 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x3d7efd2c jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x3d88d3d6 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x3da474e4 add_disk +EXPORT_SYMBOL vmlinux 0x3db42b4a phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x3db7503f scsi_device_put +EXPORT_SYMBOL vmlinux 0x3dbf36c9 sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x3dc02a4e flex_array_free_parts +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e25f9a6 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x3e3c2fe9 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x3e3db0c0 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x3e7c6e60 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get +EXPORT_SYMBOL vmlinux 0x3e9cbb1a of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x3ebc4ff7 dquot_initialize +EXPORT_SYMBOL vmlinux 0x3ebed355 simple_link +EXPORT_SYMBOL vmlinux 0x3ed7df46 elevator_exit +EXPORT_SYMBOL vmlinux 0x3eda8fc0 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x3ee1a77e tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x3ef38d98 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x3ef4a04b input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f406a3b enable_kernel_altivec +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f600653 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x3f701c48 blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x3f8b0ba5 flush_old_exec +EXPORT_SYMBOL vmlinux 0x3fb48a4d ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x3fc06884 init_buffer +EXPORT_SYMBOL vmlinux 0x3fdf6647 dev_load +EXPORT_SYMBOL vmlinux 0x3fe0d1c0 slhc_free +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x3ff277bb blk_queue_bounce +EXPORT_SYMBOL vmlinux 0x3ff67bfb netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x3ff8e495 lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0x400edbf7 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev +EXPORT_SYMBOL vmlinux 0x404df45e max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x405962b8 dentry_unhash +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x406671c9 agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x407456af tty_check_change +EXPORT_SYMBOL vmlinux 0x407813ba pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x407faa9c dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x40858e97 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x4097c1d5 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40b40a2c dquot_commit_info +EXPORT_SYMBOL vmlinux 0x40bb6c3b icmp_send +EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d218e7 serio_bus +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40d8b9a8 serio_close +EXPORT_SYMBOL vmlinux 0x40e6df69 __nla_reserve +EXPORT_SYMBOL vmlinux 0x41193058 vc_resize +EXPORT_SYMBOL vmlinux 0x4144374c scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x4159c38f ioremap_wc +EXPORT_SYMBOL vmlinux 0x416d60e7 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418ba53c simple_empty +EXPORT_SYMBOL vmlinux 0x418f3618 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x41a3fbf1 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x41baf194 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x41bfb513 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x41c0e4e1 fget +EXPORT_SYMBOL vmlinux 0x41e2ba17 vme_slave_request +EXPORT_SYMBOL vmlinux 0x41e3b4e1 md_error +EXPORT_SYMBOL vmlinux 0x41f61d13 jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0x41fd8d04 nf_log_packet +EXPORT_SYMBOL vmlinux 0x420a8e3c swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x420efac2 would_dump +EXPORT_SYMBOL vmlinux 0x42157e12 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x42401521 blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424ceaa9 dev_mc_add +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x424e55e7 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x426a8378 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x427868eb eth_mac_addr +EXPORT_SYMBOL vmlinux 0x428c9b36 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x42a2b762 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x42cd8607 i2c_master_send +EXPORT_SYMBOL vmlinux 0x42e62115 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x42f533b5 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x42fd7dd3 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x43023475 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x4303bdf3 blk_delay_queue +EXPORT_SYMBOL vmlinux 0x430668f3 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x430d4bd5 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x43563a43 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x4359af43 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x436eff37 of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43a01f90 complete_all +EXPORT_SYMBOL vmlinux 0x43a0cb29 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x43a78649 gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0x43a9648a kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x43c093c5 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x43e2cb8b dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x43f218fd netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x43f31e74 flush_dcache_page +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x441a93d8 default_file_splice_read +EXPORT_SYMBOL vmlinux 0x4422e7be ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x4435c51d nobh_write_begin +EXPORT_SYMBOL vmlinux 0x443bff0c scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x4453d366 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x4488c166 compat_tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x448a0f1e dquot_operations +EXPORT_SYMBOL vmlinux 0x448eac3e kmemdup +EXPORT_SYMBOL vmlinux 0x44a6d352 kobject_put +EXPORT_SYMBOL vmlinux 0x44a98986 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x44c663f7 flow_cache_lookup +EXPORT_SYMBOL vmlinux 0x44e945a6 console_start +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44eb192e wait_for_completion +EXPORT_SYMBOL vmlinux 0x44f71c44 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0x44f7595a mmc_align_data_size +EXPORT_SYMBOL vmlinux 0x451dc2ce ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x4529bab8 dump_page +EXPORT_SYMBOL vmlinux 0x4530705a scsi_scan_target +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x453ebae7 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x454501d9 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x45494b93 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x454973d2 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x455df9a2 netif_napi_del +EXPORT_SYMBOL vmlinux 0x4566700d start_tty +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x45870e49 seq_puts +EXPORT_SYMBOL vmlinux 0x4595fe3a sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x45a55ec8 __iounmap +EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource +EXPORT_SYMBOL vmlinux 0x45af0aa8 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x45b3e155 padata_remove_cpu +EXPORT_SYMBOL vmlinux 0x45de9bec up_write +EXPORT_SYMBOL vmlinux 0x45f7e50e mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x46111ec4 giveup_altivec +EXPORT_SYMBOL vmlinux 0x4612c59d down_trylock +EXPORT_SYMBOL vmlinux 0x4619a0f9 devm_memunmap +EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x461ebfa0 __copy_tofrom_user +EXPORT_SYMBOL vmlinux 0x461f1737 bio_split +EXPORT_SYMBOL vmlinux 0x4624bc00 local_flush_tlb_mm +EXPORT_SYMBOL vmlinux 0x4631b9e2 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x46547119 param_ops_long +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x46814986 __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0x468668f1 security_path_truncate +EXPORT_SYMBOL vmlinux 0x46983a2c mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0x469d1f23 pcie_get_mps +EXPORT_SYMBOL vmlinux 0x46a53481 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x46bfc6bf mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x46d12956 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x46da35dc devm_gpio_request +EXPORT_SYMBOL vmlinux 0x46f82b44 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x472c2f69 rwsem_wake +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x47487da5 clk_get +EXPORT_SYMBOL vmlinux 0x47608718 fence_init +EXPORT_SYMBOL vmlinux 0x47633b8f md_cluster_mod +EXPORT_SYMBOL vmlinux 0x4774d841 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x478ab77e security_inode_permission +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x4793e33a phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47cf9b99 bdi_destroy +EXPORT_SYMBOL vmlinux 0x47dc8907 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x47e6a12e bprm_change_interp +EXPORT_SYMBOL vmlinux 0x48065e7f devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x481af38f dev_get_stats +EXPORT_SYMBOL vmlinux 0x4829a47e memcpy +EXPORT_SYMBOL vmlinux 0x482abc56 security_inode_readlink +EXPORT_SYMBOL vmlinux 0x482bc3d4 tty_register_device +EXPORT_SYMBOL vmlinux 0x4832102f dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x4836780a input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x48404b9a remove_wait_queue +EXPORT_SYMBOL vmlinux 0x4841279b scsi_print_command +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x4866e098 follow_down_one +EXPORT_SYMBOL vmlinux 0x48885910 agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0x488e1630 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x48a771c5 cpu_core_map +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48d6a018 genphy_resume +EXPORT_SYMBOL vmlinux 0x48fd03e3 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x49476853 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x49622253 file_ns_capable +EXPORT_SYMBOL vmlinux 0x4986a02b __lock_page +EXPORT_SYMBOL vmlinux 0x49a97d85 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x49aec026 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49b6175a nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0x49b6d876 input_get_keycode +EXPORT_SYMBOL vmlinux 0x49cba366 mdiobus_free +EXPORT_SYMBOL vmlinux 0x49cea0bf bdgrab +EXPORT_SYMBOL vmlinux 0x49dff7f9 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x4a091c6b register_netdevice +EXPORT_SYMBOL vmlinux 0x4a0997c1 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x4a351ae7 param_set_ullong +EXPORT_SYMBOL vmlinux 0x4a3626fd in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x4a499bab scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x4a7c38e7 end_page_writeback +EXPORT_SYMBOL vmlinux 0x4a84ecd5 peernet2id_alloc +EXPORT_SYMBOL vmlinux 0x4a8961f5 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk +EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource +EXPORT_SYMBOL vmlinux 0x4ae33e06 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x4ae526cc __pagevec_release +EXPORT_SYMBOL vmlinux 0x4ae5840c devm_iounmap +EXPORT_SYMBOL vmlinux 0x4af69122 get_user_pages +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b2261c7 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x4b233aa8 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x4b3b1cf6 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x4b4f8f5a file_update_time +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b693535 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x4b6ab23c ip6_xmit +EXPORT_SYMBOL vmlinux 0x4b729222 nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0x4b8326ff ida_remove +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bd10435 pci_iomap +EXPORT_SYMBOL vmlinux 0x4bd38499 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x4bf102f9 param_array_ops +EXPORT_SYMBOL vmlinux 0x4c11435a _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x4c2c2479 from_kprojid +EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf +EXPORT_SYMBOL vmlinux 0x4c5a7a7f sk_capable +EXPORT_SYMBOL vmlinux 0x4c63d967 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x4c7429d9 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x4c786752 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x4ca9669f scnprintf +EXPORT_SYMBOL vmlinux 0x4caa98c4 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x4cbadc10 __register_nls +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4ce0fe33 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x4ce14b39 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x4ce868ea blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x4ceaf095 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x4cecfada __bread_gfp +EXPORT_SYMBOL vmlinux 0x4cfb0cf0 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x4d0429c6 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x4d131297 agp_put_bridge +EXPORT_SYMBOL vmlinux 0x4d21e06d nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x4d2f30a5 sk_mc_loop +EXPORT_SYMBOL vmlinux 0x4d322183 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x4d40bf38 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x4d41fa61 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x4d5a0599 mntget +EXPORT_SYMBOL vmlinux 0x4d646463 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x4d70601e genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x4d791953 mempool_resize +EXPORT_SYMBOL vmlinux 0x4d8309f2 find_lock_entry +EXPORT_SYMBOL vmlinux 0x4d8bba34 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x4d91287f nf_reinject +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4da26271 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x4da69280 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x4da93a12 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x4db6148e pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x4ddac184 vme_irq_generate +EXPORT_SYMBOL vmlinux 0x4ddfd1fb ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4de6501a devm_memremap +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4dfa8314 of_device_alloc +EXPORT_SYMBOL vmlinux 0x4e0b3018 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x4e1a5440 register_gifconf +EXPORT_SYMBOL vmlinux 0x4e20d3bc sk_ns_capable +EXPORT_SYMBOL vmlinux 0x4e2edcd8 sync_blockdev +EXPORT_SYMBOL vmlinux 0x4e33cba3 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e3e729f devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0x4e479db1 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x4e4a63ee component_match_add +EXPORT_SYMBOL vmlinux 0x4e572388 get_super_thawed +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e9243c6 dev_crit +EXPORT_SYMBOL vmlinux 0x4e9dffb5 ip_fast_csum +EXPORT_SYMBOL vmlinux 0x4ec3db3e blk_get_queue +EXPORT_SYMBOL vmlinux 0x4f1ba679 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x4f1c89ed tcp_read_sock +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f38ab18 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f605d25 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f6bf835 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x4f7c351c bd_set_size +EXPORT_SYMBOL vmlinux 0x4f7f60a6 free_buffer_head +EXPORT_SYMBOL vmlinux 0x4fa1e3c2 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x500b6e1b jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x5032b3bb __nd_iostat_start +EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x5083856b mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0x5086b0bc try_module_get +EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch +EXPORT_SYMBOL vmlinux 0x50ba769a kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x50bc9b43 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x50c5f66b param_set_copystring +EXPORT_SYMBOL vmlinux 0x50d267db do_splice_to +EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x50f7cf0a d_walk +EXPORT_SYMBOL vmlinux 0x510548fd bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x51164ad9 cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x5123ce81 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x513c8e0f kobject_set_name +EXPORT_SYMBOL vmlinux 0x513feeb6 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x5144e342 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x5170dce3 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x518acb8c of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0x5195c34c seq_vprintf +EXPORT_SYMBOL vmlinux 0x519b0da3 finish_wait +EXPORT_SYMBOL vmlinux 0x519d51ad ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x51b4a840 ip_defrag +EXPORT_SYMBOL vmlinux 0x51f7922d mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x520f3bb5 register_console +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x5237b0bd alloc_disk_node +EXPORT_SYMBOL vmlinux 0x5257cee1 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x526ef2c8 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x528273a1 tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0x5287c3ca xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x52acf255 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x52b962c8 nvm_put_blk +EXPORT_SYMBOL vmlinux 0x52bd684a nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0x52c0c46f noop_qdisc +EXPORT_SYMBOL vmlinux 0x52c32187 __napi_complete +EXPORT_SYMBOL vmlinux 0x52d23db7 flush_dcache_icache_page +EXPORT_SYMBOL vmlinux 0x52d352fc tcp_init_sock +EXPORT_SYMBOL vmlinux 0x52db2b5e tcp_init_cgroup +EXPORT_SYMBOL vmlinux 0x52e06ffa fb_validate_mode +EXPORT_SYMBOL vmlinux 0x52f1d465 param_get_ulong +EXPORT_SYMBOL vmlinux 0x52f25e9b devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x5332b03f sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x5364575f redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x536cc847 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x53713edf udp_add_offload +EXPORT_SYMBOL vmlinux 0x5377e556 hex2bin +EXPORT_SYMBOL vmlinux 0x53973d02 tcp_filter +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x53d704be xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x53d84772 make_kprojid +EXPORT_SYMBOL vmlinux 0x53ebab1b _outsl_ns +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x5412c7c7 up +EXPORT_SYMBOL vmlinux 0x541bbf33 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x5427de94 dev_get_nest_level +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x544683d7 pci_disable_device +EXPORT_SYMBOL vmlinux 0x545256fb __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x545d864c vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x545e36cd take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x5461c7f2 kill_litter_super +EXPORT_SYMBOL vmlinux 0x54772792 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x548ac440 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x549445e4 alloc_file +EXPORT_SYMBOL vmlinux 0x54a46e85 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54af4fec dev_alloc_name +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54c48082 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x54cc07fb agp_allocate_memory +EXPORT_SYMBOL vmlinux 0x54d294b5 bitmap_unplug +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x552e97ce netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x5538e9c6 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x5542d054 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x55656c47 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x5568c553 complete +EXPORT_SYMBOL vmlinux 0x556e0a7c to_nd_btt +EXPORT_SYMBOL vmlinux 0x5577ef9e udp_table +EXPORT_SYMBOL vmlinux 0x557b06d5 km_query +EXPORT_SYMBOL vmlinux 0x558fd736 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x55a55219 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x55b0198b udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x55b45335 input_set_keycode +EXPORT_SYMBOL vmlinux 0x55c2035e __dst_free +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x560151a2 inode_init_owner +EXPORT_SYMBOL vmlinux 0x5612e666 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x561658ce km_state_notify +EXPORT_SYMBOL vmlinux 0x562259f6 sock_i_ino +EXPORT_SYMBOL vmlinux 0x5622db10 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x5671d672 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x568a0a93 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x56c2d0b6 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x56c32310 phy_device_create +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56ebfb67 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x56f6c7de lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x570b5d8b md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x573a95f7 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x573c4a5e ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x573de83a __inet_hash +EXPORT_SYMBOL vmlinux 0x57419025 kobject_init +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x575af70c on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x577d35f3 hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x579fbcd2 cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x57ae095f decrementer_clockevent +EXPORT_SYMBOL vmlinux 0x57bab86d agp_copy_info +EXPORT_SYMBOL vmlinux 0x57bd4586 sock_i_uid +EXPORT_SYMBOL vmlinux 0x57bf780f __blk_run_queue +EXPORT_SYMBOL vmlinux 0x57dff7ff tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x57fb12a3 generic_read_dir +EXPORT_SYMBOL vmlinux 0x58036755 __napi_schedule +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x5833c1e3 dev_notice +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x58426992 lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep +EXPORT_SYMBOL vmlinux 0x5858e346 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x58690e22 account_page_dirtied +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x587a53b6 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x58833ad0 dev_alert +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58ccfe2b compat_ip_getsockopt +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58e64edd xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x58e76f21 fsl_lbc_ctrl_dev +EXPORT_SYMBOL vmlinux 0x5900d6c8 tty_lock +EXPORT_SYMBOL vmlinux 0x59296db1 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x592e9a35 dev_emerg +EXPORT_SYMBOL vmlinux 0x5931eb2c simple_setattr +EXPORT_SYMBOL vmlinux 0x5932b12d clkdev_drop +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x595d0946 empty_zero_page +EXPORT_SYMBOL vmlinux 0x5984ef0a twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x598b504a dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x5999ec6b parent_mem_cgroup +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59b3378a completion_done +EXPORT_SYMBOL vmlinux 0x59b8aef6 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x59d1aad3 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x59e713ef udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x59e81201 ps2_drain +EXPORT_SYMBOL vmlinux 0x59fcadf5 blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0x5a025f7b arch_local_irq_restore +EXPORT_SYMBOL vmlinux 0x5a0aaa12 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a0dcece simple_transaction_read +EXPORT_SYMBOL vmlinux 0x5a1b57a8 generic_show_options +EXPORT_SYMBOL vmlinux 0x5a2cda3e trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x5a2e1f5c mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x5a591003 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x5a609a17 compat_sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x5a6613d9 __mdiobus_register +EXPORT_SYMBOL vmlinux 0x5a7b46cf ip6_frag_match +EXPORT_SYMBOL vmlinux 0x5a80f310 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove +EXPORT_SYMBOL vmlinux 0x5ab15bdc mmc_remove_host +EXPORT_SYMBOL vmlinux 0x5ab90e8e scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x5adf659a tty_throttle +EXPORT_SYMBOL vmlinux 0x5af4b03a __breadahead +EXPORT_SYMBOL vmlinux 0x5af5b237 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b043674 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x5b2eb6fd nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x5b2f49dc wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x5b30bd50 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x5b3dcc6b dma_common_mmap +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b5806b7 vme_dma_request +EXPORT_SYMBOL vmlinux 0x5b6ef7e3 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x5b79c8b5 sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x5b9828c5 dma_spin_lock +EXPORT_SYMBOL vmlinux 0x5ba35b60 follow_pfn +EXPORT_SYMBOL vmlinux 0x5ba6c90c fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0x5bc10524 printk_emit +EXPORT_SYMBOL vmlinux 0x5bd1f21f of_get_ibm_chip_id +EXPORT_SYMBOL vmlinux 0x5c109c32 mount_nodev +EXPORT_SYMBOL vmlinux 0x5c1716af dev_uc_sync +EXPORT_SYMBOL vmlinux 0x5c2ca444 param_ops_int +EXPORT_SYMBOL vmlinux 0x5c37f319 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x5c38a5fe tcp_sendpage +EXPORT_SYMBOL vmlinux 0x5c430a29 tcf_hash_create +EXPORT_SYMBOL vmlinux 0x5c5848bf skb_seq_read +EXPORT_SYMBOL vmlinux 0x5c65eb7d ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x5c76c514 lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0x5cb42fcf netif_skb_features +EXPORT_SYMBOL vmlinux 0x5cc32bdc bitmap_copy_le +EXPORT_SYMBOL vmlinux 0x5ccfcd55 copy_to_iter +EXPORT_SYMBOL vmlinux 0x5cd2659a mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x5cdd4c7b scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0x5cf30e10 __debugger_ipi +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5d1cce6d path_nosuid +EXPORT_SYMBOL vmlinux 0x5d29b207 irq_to_desc +EXPORT_SYMBOL vmlinux 0x5d518c60 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d58efa0 convert_ifc_address +EXPORT_SYMBOL vmlinux 0x5d93eea1 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x5da107e8 udp_proc_register +EXPORT_SYMBOL vmlinux 0x5dab1147 param_ops_ullong +EXPORT_SYMBOL vmlinux 0x5ddf3477 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x5de795fd tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x5e15425b tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x5e203e2e nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x5e3a8a9c __wake_up +EXPORT_SYMBOL vmlinux 0x5e4018da dev_set_group +EXPORT_SYMBOL vmlinux 0x5e66e4c9 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x5e7b777f dev_printk_emit +EXPORT_SYMBOL vmlinux 0x5e7e0842 fb_class +EXPORT_SYMBOL vmlinux 0x5e8f3bc2 napi_get_frags +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ec61be1 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5eddb914 lockref_put_return +EXPORT_SYMBOL vmlinux 0x5ee2056b tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x5ef23a32 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f052b51 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f21e1ba tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x5f2bb946 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x5f497435 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x5f6e40a7 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x5f8a2728 isa_io_base +EXPORT_SYMBOL vmlinux 0x5f9f2a7a i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x5fd94a53 locks_free_lock +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5fec20a0 dump_emit +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x6014b313 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x603a3253 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x60603109 rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0x60682f0f inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x6077c8cc ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x607e3b7a devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x60912167 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a2330b pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x60a782f9 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x60ddb938 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x61081370 generic_start_io_acct +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x612a6f10 skb_split +EXPORT_SYMBOL vmlinux 0x612eb533 input_close_device +EXPORT_SYMBOL vmlinux 0x614bb773 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6181bcd1 dump_truncate +EXPORT_SYMBOL vmlinux 0x619b6fa5 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x61a87594 dev_add_pack +EXPORT_SYMBOL vmlinux 0x61a915b2 kernel_listen +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61bf73ca __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x61d8b28d fsnotify_get_group +EXPORT_SYMBOL vmlinux 0x61dcf24a trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x61eef2c9 _insb +EXPORT_SYMBOL vmlinux 0x61ef6170 __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6216a6be vfs_mknod +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x62363afa agp_bridge +EXPORT_SYMBOL vmlinux 0x62398891 mount_ns +EXPORT_SYMBOL vmlinux 0x6242f4f0 dquot_enable +EXPORT_SYMBOL vmlinux 0x624633bf __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x624ca287 kset_register +EXPORT_SYMBOL vmlinux 0x62538167 slhc_toss +EXPORT_SYMBOL vmlinux 0x626c7a36 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x6299cf8c request_key +EXPORT_SYMBOL vmlinux 0x62e6802f nonseekable_open +EXPORT_SYMBOL vmlinux 0x62e9540f __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x630546d6 mmc_detect_change +EXPORT_SYMBOL vmlinux 0x6308c3b2 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x630be268 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x6315a042 skb_pull +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x6318d6b3 notify_change +EXPORT_SYMBOL vmlinux 0x6321f020 padata_do_serial +EXPORT_SYMBOL vmlinux 0x6328a9a1 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x63396aec __debugger_break_match +EXPORT_SYMBOL vmlinux 0x63510f94 keyring_search +EXPORT_SYMBOL vmlinux 0x635d37fc vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x637227e5 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x6394073d fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63b5ac28 lookup_bdev +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63d3b643 key_link +EXPORT_SYMBOL vmlinux 0x63d61ed7 from_kuid +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63f69a7c pci_request_region +EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user +EXPORT_SYMBOL vmlinux 0x63fe4f8f fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x6404c4c7 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x643f0723 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x645abde7 irq_set_chip +EXPORT_SYMBOL vmlinux 0x6483622e vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x6486df1e clk_register_clkdevs +EXPORT_SYMBOL vmlinux 0x648c5a7e of_get_next_child +EXPORT_SYMBOL vmlinux 0x648fe03f pci_pme_capable +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x649c43db nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x64a4b84d cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64bc33af proc_mkdir +EXPORT_SYMBOL vmlinux 0x64d975c1 ping_prot +EXPORT_SYMBOL vmlinux 0x6501f184 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x6501fa50 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x65041640 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x65432cb4 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x658658b3 udp_disconnect +EXPORT_SYMBOL vmlinux 0x65a87d68 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x65b3cb26 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x65bb58a2 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x65ec8246 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x65fdf0cf unlock_rename +EXPORT_SYMBOL vmlinux 0x66149f25 pci_clear_master +EXPORT_SYMBOL vmlinux 0x66176ab1 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x665dc413 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0x666195e2 iterate_dir +EXPORT_SYMBOL vmlinux 0x666c1c02 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x66754be3 gen_new_estimator +EXPORT_SYMBOL vmlinux 0x66a06d25 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x66b38c1a nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x66c41e12 mmc_free_host +EXPORT_SYMBOL vmlinux 0x66cce55e elv_rb_find +EXPORT_SYMBOL vmlinux 0x66db40ea blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x66e33325 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x66f7ecc5 save_mount_options +EXPORT_SYMBOL vmlinux 0x67074c43 compat_tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x6709d0ea phy_suspend +EXPORT_SYMBOL vmlinux 0x671426c7 abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0x671962f6 devm_gpiod_get +EXPORT_SYMBOL vmlinux 0x671af999 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x6736f04f get_fs_type +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x6742eeb7 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x6755069b fb_find_mode +EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create +EXPORT_SYMBOL vmlinux 0x6788ae93 deactivate_super +EXPORT_SYMBOL vmlinux 0x678df9de con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x67918354 vlan_vid_add +EXPORT_SYMBOL vmlinux 0x67985259 unregister_key_type +EXPORT_SYMBOL vmlinux 0x679e154d of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x67a3fb92 dev_addr_add +EXPORT_SYMBOL vmlinux 0x67ade263 mount_pseudo +EXPORT_SYMBOL vmlinux 0x67b685ff tty_port_close_end +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67b926b5 serio_reconnect +EXPORT_SYMBOL vmlinux 0x67bebb0e pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x67da9c41 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x68242415 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x6825584e __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x684f331b devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x6857b48b ipv4_specific +EXPORT_SYMBOL vmlinux 0x68609857 complete_and_exit +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x687bd0fc iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68aa07df md_update_sb +EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x68e1f9e8 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x69174af0 page_symlink +EXPORT_SYMBOL vmlinux 0x6963d39d mapping_tagged +EXPORT_SYMBOL vmlinux 0x696d3e18 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6973f033 serio_interrupt +EXPORT_SYMBOL vmlinux 0x6996bf2d __dquot_free_space +EXPORT_SYMBOL vmlinux 0x69971230 ip_options_compile +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource +EXPORT_SYMBOL vmlinux 0x69ad1381 bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69adbf10 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0x69bb9b3e dev_get_by_name +EXPORT_SYMBOL vmlinux 0x69c8f7bd tty_port_close_start +EXPORT_SYMBOL vmlinux 0x69e3315f __register_chrdev +EXPORT_SYMBOL vmlinux 0x69edfefa phy_device_remove +EXPORT_SYMBOL vmlinux 0x69ee9e8f fddi_type_trans +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a0c1846 d_genocide +EXPORT_SYMBOL vmlinux 0x6a10ac7b agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0x6a1227d3 flush_signals +EXPORT_SYMBOL vmlinux 0x6a1e416b kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x6a3e19ac page_readlink +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6aaeeefa ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be +EXPORT_SYMBOL vmlinux 0x6ae66d4e vm_insert_page +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b54b763 tcp_prot +EXPORT_SYMBOL vmlinux 0x6b5aff50 generic_perform_write +EXPORT_SYMBOL vmlinux 0x6b5dfe73 __debugger_bpt +EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6b66c889 fence_free +EXPORT_SYMBOL vmlinux 0x6b837263 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x6b932b13 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x6b9dc211 init_special_inode +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bd37c47 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer +EXPORT_SYMBOL vmlinux 0x6c25ba18 lease_modify +EXPORT_SYMBOL vmlinux 0x6c3048d3 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x6c340753 alloc_disk +EXPORT_SYMBOL vmlinux 0x6c4af84a sk_free +EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat +EXPORT_SYMBOL vmlinux 0x6c551368 km_report +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6cb37127 flex_array_clear +EXPORT_SYMBOL vmlinux 0x6cb7c787 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x6cbd74e0 inet6_add_offload +EXPORT_SYMBOL vmlinux 0x6ccce710 max8925_set_bits +EXPORT_SYMBOL vmlinux 0x6cea6cfe scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d105cbf backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x6d18f862 mmc_start_req +EXPORT_SYMBOL vmlinux 0x6d1ac178 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x6d1eb01f __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d340849 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x6d35ca41 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x6d65b5a3 inet_getname +EXPORT_SYMBOL vmlinux 0x6d72eb2c simple_nosetlease +EXPORT_SYMBOL vmlinux 0x6d740223 flex_array_put +EXPORT_SYMBOL vmlinux 0x6da928f4 _insw_ns +EXPORT_SYMBOL vmlinux 0x6dc327a3 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x6dcd8958 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x6de873ba devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6dfdf25f misc_register +EXPORT_SYMBOL vmlinux 0x6dffe7d9 ab3100_event_register +EXPORT_SYMBOL vmlinux 0x6e183561 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x6e54ef04 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e7f0fd2 cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6eda2584 textsearch_unregister +EXPORT_SYMBOL vmlinux 0x6ee963fb ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x6f16a79d skb_pad +EXPORT_SYMBOL vmlinux 0x6f1cf3a2 pci_get_slot +EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash +EXPORT_SYMBOL vmlinux 0x6f209aa4 param_ops_uint +EXPORT_SYMBOL vmlinux 0x6f4335dd dev_get_flags +EXPORT_SYMBOL vmlinux 0x6f477498 of_get_named_gpio_flags +EXPORT_SYMBOL vmlinux 0x6f4a6c8c sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x6f791f54 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6f8a48e4 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x6f9c94ab ppp_channel_index +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fca1f1f dump_align +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x703d318d unregister_qdisc +EXPORT_SYMBOL vmlinux 0x7052284d genphy_suspend +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x7088c035 registered_fb +EXPORT_SYMBOL vmlinux 0x709e8627 filp_close +EXPORT_SYMBOL vmlinux 0x70b44abe sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x70b8067e get_tz_trend +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x7120d8ef skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x7140c26f __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x714239f3 sock_no_bind +EXPORT_SYMBOL vmlinux 0x715349b0 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71d8632d lru_cache_add_file +EXPORT_SYMBOL vmlinux 0x71dcc0ab nvm_register +EXPORT_SYMBOL vmlinux 0x71ee73de cfb_imageblit +EXPORT_SYMBOL vmlinux 0x71f5f5ac of_get_parent +EXPORT_SYMBOL vmlinux 0x72011652 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x7215e14d noop_fsync +EXPORT_SYMBOL vmlinux 0x7232e454 elevator_init +EXPORT_SYMBOL vmlinux 0x7269fcbd cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x7277a3ae set_page_dirty +EXPORT_SYMBOL vmlinux 0x7280fd0a vme_master_mmap +EXPORT_SYMBOL vmlinux 0x72851760 bioset_create +EXPORT_SYMBOL vmlinux 0x728fd2c1 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x729c93fd dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x72ab580e set_nlink +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72b2d03b mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x72b42ef3 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x72b6fa56 fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x72c98139 __arch_hweight64 +EXPORT_SYMBOL vmlinux 0x72d4c23c fsl_get_sys_freq +EXPORT_SYMBOL vmlinux 0x72e441ca agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x731a747a pci_io_base +EXPORT_SYMBOL vmlinux 0x731f3723 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x733b2383 next_tlbcam_idx +EXPORT_SYMBOL vmlinux 0x733b50de swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x735be4f0 pci_map_rom +EXPORT_SYMBOL vmlinux 0x735d8503 add_wait_queue +EXPORT_SYMBOL vmlinux 0x736905b0 msi_bitmap_alloc_hwirqs +EXPORT_SYMBOL vmlinux 0x73902baf blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0x73b9b583 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x740feaa5 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x74181c98 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x7454f48b inet_select_addr +EXPORT_SYMBOL vmlinux 0x74614919 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x74934697 phy_device_register +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74e91c48 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x751562bd blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x7532588a alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x753674ea get_cached_acl +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x7553c368 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x7558f540 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x75637c04 d_add_ci +EXPORT_SYMBOL vmlinux 0x758ada7f devm_gpiod_put +EXPORT_SYMBOL vmlinux 0x75994700 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0x75b26e2d xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75be6702 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x75c7d77b tcp_splice_read +EXPORT_SYMBOL vmlinux 0x75cba03b prepare_creds +EXPORT_SYMBOL vmlinux 0x75ea3c0e bio_copy_kern +EXPORT_SYMBOL vmlinux 0x760793a5 bdi_register_dev +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x762f79b4 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x7645af6f sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764bd77c request_resource +EXPORT_SYMBOL vmlinux 0x7659c22f phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x7669fba0 __sb_end_write +EXPORT_SYMBOL vmlinux 0x766c71ee sock_rfree +EXPORT_SYMBOL vmlinux 0x769a55c7 tso_start +EXPORT_SYMBOL vmlinux 0x769e06d7 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x76ad8329 get_task_io_context +EXPORT_SYMBOL vmlinux 0x76b79ae3 skb_copy +EXPORT_SYMBOL vmlinux 0x76b7d7ab elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x76cbe29e read_cache_page +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76d53c8e setattr_copy +EXPORT_SYMBOL vmlinux 0x76ebb1da pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x76ef1f78 d_alloc +EXPORT_SYMBOL vmlinux 0x76f0c178 vm_mmap +EXPORT_SYMBOL vmlinux 0x76f6aab0 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x76ff325e bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x771be7ab pci_enable_device +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x772608b3 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x7730e881 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x77359ff5 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x77517618 follow_up +EXPORT_SYMBOL vmlinux 0x7760904d locks_remove_posix +EXPORT_SYMBOL vmlinux 0x77788659 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x7789bf99 dev_uc_del +EXPORT_SYMBOL vmlinux 0x7798a247 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x779c54b8 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x779ccab7 phy_print_status +EXPORT_SYMBOL vmlinux 0x779f9bf1 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x77b77c90 mpage_readpages +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77bd5a0f neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x77eab5aa sockfd_lookup +EXPORT_SYMBOL vmlinux 0x77f0be36 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x77f62c5c kthread_stop +EXPORT_SYMBOL vmlinux 0x782c5012 __serio_register_driver +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x783b5dd6 put_cmsg +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x784cea1c put_disk +EXPORT_SYMBOL vmlinux 0x785d451d bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0x786e82f9 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x787a08a2 simple_follow_link +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x7889674b blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x789473ad phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78b01661 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x78b49052 tcp_seq_open +EXPORT_SYMBOL vmlinux 0x78dd79cb i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78ec6326 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x78ffc139 kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0x7901b69b kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x7905ccc2 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x79083ef7 blkdev_put +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x7985d043 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x7992841f tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x79951a67 block_write_end +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79a4e9c0 vfs_readf +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79adabc5 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x79b07bb5 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x79e1f897 read_cache_pages +EXPORT_SYMBOL vmlinux 0x7a120773 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x7a226619 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x7a2c9053 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x7a35048f get_mm_exe_file +EXPORT_SYMBOL vmlinux 0x7a399250 tcp_close +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a69265c __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x7a6cdedc do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ada6590 pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0x7addd733 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x7b1046db devm_release_resource +EXPORT_SYMBOL vmlinux 0x7b14be6d blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x7b16235f hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b174046 key_type_keyring +EXPORT_SYMBOL vmlinux 0x7b2aef6c __krealloc +EXPORT_SYMBOL vmlinux 0x7b3d8aab down_write_trylock +EXPORT_SYMBOL vmlinux 0x7b40760f ip_do_fragment +EXPORT_SYMBOL vmlinux 0x7b658fcc forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x7b677e70 __get_user_pages +EXPORT_SYMBOL vmlinux 0x7b6e1380 phy_find_first +EXPORT_SYMBOL vmlinux 0x7b6ea88c tso_build_data +EXPORT_SYMBOL vmlinux 0x7b74d056 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x7b7518cd skb_clone +EXPORT_SYMBOL vmlinux 0x7b78ec65 skb_dequeue +EXPORT_SYMBOL vmlinux 0x7bae4679 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x7bb01589 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x7bb756cc neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x7bea34d3 filp_open +EXPORT_SYMBOL vmlinux 0x7c003aef _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c163ef7 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c1a6336 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x7c1ccd01 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0x7c270746 mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0x7c2d098f krealloc +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c61340c __release_region +EXPORT_SYMBOL vmlinux 0x7c6d7fed register_sysctl +EXPORT_SYMBOL vmlinux 0x7c901d6b sg_miter_skip +EXPORT_SYMBOL vmlinux 0x7c90360a put_filp +EXPORT_SYMBOL vmlinux 0x7c9291d1 csum_partial_copy_generic +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7c9ac32e __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x7ca86a54 sock_create +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d1b3dbf pci_bus_put +EXPORT_SYMBOL vmlinux 0x7d1ea6e3 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x7d3e18b2 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x7d5ea83a skb_tx_error +EXPORT_SYMBOL vmlinux 0x7d5f2e01 pci_dev_put +EXPORT_SYMBOL vmlinux 0x7d641874 swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d821fe0 cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x7d8a0e33 simple_lookup +EXPORT_SYMBOL vmlinux 0x7db013be __break_lease +EXPORT_SYMBOL vmlinux 0x7db1e6ff dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x7dbdd443 tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0x7de5bf49 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x7debbce4 eth_change_mtu +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7df0f12e udp_sendmsg +EXPORT_SYMBOL vmlinux 0x7e1888f6 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x7e40796e dev_addr_init +EXPORT_SYMBOL vmlinux 0x7e487d7c nd_integrity_init +EXPORT_SYMBOL vmlinux 0x7e501c6d devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x7e50bfef d_delete +EXPORT_SYMBOL vmlinux 0x7e558f7e pagecache_get_page +EXPORT_SYMBOL vmlinux 0x7e5af67a devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x7e6b2bad bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x7e726b8b inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x7e87227e slhc_compress +EXPORT_SYMBOL vmlinux 0x7ea1f9df seq_path +EXPORT_SYMBOL vmlinux 0x7ea7353a ps2_end_command +EXPORT_SYMBOL vmlinux 0x7eae38d3 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x7eb529fa mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x7ecb001b __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f15cf88 input_set_capability +EXPORT_SYMBOL vmlinux 0x7f1d41a2 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f263ed9 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x7f2a2c7a seq_file_path +EXPORT_SYMBOL vmlinux 0x7f33d037 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7fbd10d2 radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x7fdb55d3 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fe38f48 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x7fe5fdbc inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0x7ff0fe63 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x80284555 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x802ac160 vme_bus_type +EXPORT_SYMBOL vmlinux 0x804009de dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x8059b7dd devm_request_resource +EXPORT_SYMBOL vmlinux 0x8068c15c kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x806e6ef3 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x806e780a dma_sync_wait +EXPORT_SYMBOL vmlinux 0x80791a8c radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0x809328c8 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x8095d8a5 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x809d99b2 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x80a8f1d5 vga_client_register +EXPORT_SYMBOL vmlinux 0x80bb5248 mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80e80dd5 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x81061f94 seq_putc +EXPORT_SYMBOL vmlinux 0x8106d3af sys_copyarea +EXPORT_SYMBOL vmlinux 0x810d1c04 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x8110ba7d inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x8113907c mpage_readpage +EXPORT_SYMBOL vmlinux 0x812c6b37 finish_open +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815c56d0 cpu_present_mask +EXPORT_SYMBOL vmlinux 0x81a07f4e _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x81aefc37 posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0x81be1b53 tcp_proto_cgroup +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81df7397 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x81e89515 pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0x81f03340 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x81f692ae jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x81fca6ce genl_notify +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x8208930a input_free_device +EXPORT_SYMBOL vmlinux 0x8216f791 __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x822c5a8c fence_add_callback +EXPORT_SYMBOL vmlinux 0x8237cc05 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x824507f6 devm_gpio_free +EXPORT_SYMBOL vmlinux 0x82454d08 make_kuid +EXPORT_SYMBOL vmlinux 0x82458f7f radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x824e8807 dma_direct_ops +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x82752f38 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x827baf83 default_llseek +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x8293d5f4 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x829b8a2e nlmsg_notify +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82b6fa1d elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0x82e5a238 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x8306035a skb_append +EXPORT_SYMBOL vmlinux 0x830676fa of_get_next_parent +EXPORT_SYMBOL vmlinux 0x830c76e1 blk_queue_split +EXPORT_SYMBOL vmlinux 0x832217de jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x832aa4d8 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x83374fdb mdiobus_scan +EXPORT_SYMBOL vmlinux 0x8341a620 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x83642c1a crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x8383552b uart_resume_port +EXPORT_SYMBOL vmlinux 0x838f4add write_inode_now +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x839c5579 simple_fill_super +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83beaaf5 generic_end_io_acct +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83cb125e block_truncate_page +EXPORT_SYMBOL vmlinux 0x83d6df60 dev_err +EXPORT_SYMBOL vmlinux 0x83e7aadd phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x83f3abe3 blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x83fcc673 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x842a393d scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x844e3767 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x84511ece __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x8466e294 blk_complete_request +EXPORT_SYMBOL vmlinux 0x847b73a5 padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x849fe807 csum_and_copy_from_user +EXPORT_SYMBOL vmlinux 0x84a3aba5 mount_subtree +EXPORT_SYMBOL vmlinux 0x84bd69bf dq_data_lock +EXPORT_SYMBOL vmlinux 0x84d19e03 of_match_device +EXPORT_SYMBOL vmlinux 0x84d496b9 blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x84d81476 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x84f17ea9 vfs_writef +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x85016036 inet_frags_init +EXPORT_SYMBOL vmlinux 0x85057c58 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x850e1d51 __kfree_skb +EXPORT_SYMBOL vmlinux 0x85417488 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x854c1510 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x85633675 register_shrinker +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x858afc51 netif_rx +EXPORT_SYMBOL vmlinux 0x858f6c73 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x85aa3a6d bio_clone_bioset +EXPORT_SYMBOL vmlinux 0x85ae6052 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85ba68d5 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e25466 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x860199c9 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x860def36 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x86132263 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x8638d97f xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x8645abb0 padata_alloc +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x865172c4 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x865356f2 iunique +EXPORT_SYMBOL vmlinux 0x8655b148 up_read +EXPORT_SYMBOL vmlinux 0x8660fa6a blk_init_queue_node +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x868bdb0e netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x8697073f seq_open +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86c6c267 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x86dd3700 mmc_flush_cache +EXPORT_SYMBOL vmlinux 0x86e4abb1 i2c_release_client +EXPORT_SYMBOL vmlinux 0x86e75148 padata_add_cpu +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x87040f4b inet_sendmsg +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x871fdcac nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0x872b4c23 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x873a53ea __arch_hweight8 +EXPORT_SYMBOL vmlinux 0x873b0eda page_cache_next_hole +EXPORT_SYMBOL vmlinux 0x874aaa62 request_firmware +EXPORT_SYMBOL vmlinux 0x877aea4f backlight_device_register +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x87928da1 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x8792db79 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x87c40819 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x87d68e62 dquot_release +EXPORT_SYMBOL vmlinux 0x87dc1a84 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x87f62018 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x8803b411 dquot_transfer +EXPORT_SYMBOL vmlinux 0x8822e368 __alloc_skb +EXPORT_SYMBOL vmlinux 0x882db37f neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x88386b7d ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x885f5039 blkdev_get +EXPORT_SYMBOL vmlinux 0x88618f27 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x88687f7a bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x8878ece3 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x887fa47e __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x88914cad rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x88ad05b1 inet_add_offload +EXPORT_SYMBOL vmlinux 0x88c8a8f2 kern_path +EXPORT_SYMBOL vmlinux 0x88e44bd4 file_open_root +EXPORT_SYMBOL vmlinux 0x88fa791a elv_add_request +EXPORT_SYMBOL vmlinux 0x89030f16 generic_file_open +EXPORT_SYMBOL vmlinux 0x890a7adf netif_receive_skb +EXPORT_SYMBOL vmlinux 0x891fbb10 mempool_destroy +EXPORT_SYMBOL vmlinux 0x892de3fb __nla_put +EXPORT_SYMBOL vmlinux 0x895108f3 proc_dostring +EXPORT_SYMBOL vmlinux 0x89522f80 dqput +EXPORT_SYMBOL vmlinux 0x89540317 set_device_ro +EXPORT_SYMBOL vmlinux 0x89563bee mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x895c593b inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x89614647 input_event +EXPORT_SYMBOL vmlinux 0x89797060 _raw_read_lock +EXPORT_SYMBOL vmlinux 0x8983f6ba call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x898cc2a3 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x89934b03 netdev_err +EXPORT_SYMBOL vmlinux 0x8996b6e2 set_anon_super +EXPORT_SYMBOL vmlinux 0x89994d0f generic_write_end +EXPORT_SYMBOL vmlinux 0x89a4a1c7 fddi_change_mtu +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89c6f94a vfs_readv +EXPORT_SYMBOL vmlinux 0x89d2c521 unregister_md_personality +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89de22e3 d_find_alias +EXPORT_SYMBOL vmlinux 0x89f5b338 mach_corenet_generic +EXPORT_SYMBOL vmlinux 0x8a090cde nd_device_register +EXPORT_SYMBOL vmlinux 0x8a0c5b9b lro_receive_skb +EXPORT_SYMBOL vmlinux 0x8a18887d generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a226734 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x8a36d5b9 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a6336d5 netdev_state_change +EXPORT_SYMBOL vmlinux 0x8a66f2eb blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x8a6796d5 block_commit_write +EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a81cba6 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x8a87725d input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x8a8eaa54 bh_submit_read +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8b0186ab vfs_writev +EXPORT_SYMBOL vmlinux 0x8b0e4f12 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x8b31d3bc lwtunnel_output +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b442d1c blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x8b557648 consume_skb +EXPORT_SYMBOL vmlinux 0x8b609807 __scm_send +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b67d8a7 of_node_get +EXPORT_SYMBOL vmlinux 0x8b7bfeec xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b849575 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x8b9ac3bf blk_fetch_request +EXPORT_SYMBOL vmlinux 0x8ba73aab param_set_long +EXPORT_SYMBOL vmlinux 0x8baf3116 percpu_counter_set +EXPORT_SYMBOL vmlinux 0x8bf2ae1f fsl_lbc_addr +EXPORT_SYMBOL vmlinux 0x8c04f3b9 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0x8c109e7c passthru_features_check +EXPORT_SYMBOL vmlinux 0x8c153a36 __netif_schedule +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c49c856 nf_log_trace +EXPORT_SYMBOL vmlinux 0x8c6322f8 do_SAK +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c7f42af input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x8cb3532c vm_insert_pfn +EXPORT_SYMBOL vmlinux 0x8cb43817 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x8cc17f89 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8ccc00a8 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x8ccc6f62 blk_end_request_all +EXPORT_SYMBOL vmlinux 0x8cd0d095 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x8d015dd4 __bswapdi2 +EXPORT_SYMBOL vmlinux 0x8d060250 user_revoke +EXPORT_SYMBOL vmlinux 0x8d06cbec tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x8d2000fc scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x8d476b2e dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d628a55 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x8d6406b7 set_binfmt +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d756c8b agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0x8d8e5615 elevator_alloc +EXPORT_SYMBOL vmlinux 0x8d8f6950 posix_acl_valid +EXPORT_SYMBOL vmlinux 0x8d944cbb copy_in_user +EXPORT_SYMBOL vmlinux 0x8d9da34a mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x8d9f4942 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x8dadcc6a gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x8dbd20dc of_parse_phandle +EXPORT_SYMBOL vmlinux 0x8dd3666f jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x8de0b5ac mempool_create +EXPORT_SYMBOL vmlinux 0x8def1854 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8e065a5b filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x8e0efe0a sock_no_getname +EXPORT_SYMBOL vmlinux 0x8e184f51 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x8e4543c1 of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x8e49ac22 simple_open +EXPORT_SYMBOL vmlinux 0x8e4fc39d sk_stream_error +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e789236 of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x8e888ec3 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x8e8d58da diu_ops +EXPORT_SYMBOL vmlinux 0x8e94d99e trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x8ebd51be proc_symlink +EXPORT_SYMBOL vmlinux 0x8ec04552 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x8ec89707 dev_trans_start +EXPORT_SYMBOL vmlinux 0x8f033198 vfs_rename +EXPORT_SYMBOL vmlinux 0x8f0cf5e9 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x8f16824e ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x8f539d09 sock_kfree_s +EXPORT_SYMBOL vmlinux 0x8f85f835 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x8fa20cd0 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x8fb65b00 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x8fc15bf6 iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0x8fdc101d inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x8fe863b0 generic_permission +EXPORT_SYMBOL vmlinux 0x8fff0b69 __lock_buffer +EXPORT_SYMBOL vmlinux 0x9023a30a __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x90276beb scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x902958f1 __scm_destroy +EXPORT_SYMBOL vmlinux 0x9044cabe adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x90476e9e lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0x90874dc1 empty_aops +EXPORT_SYMBOL vmlinux 0x908b82bc textsearch_prepare +EXPORT_SYMBOL vmlinux 0x90a551be xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x90c7222c vfs_link +EXPORT_SYMBOL vmlinux 0x90d5e5e7 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0x90e3ac70 nf_register_hook +EXPORT_SYMBOL vmlinux 0x90f6a041 sock_from_file +EXPORT_SYMBOL vmlinux 0x910783d1 to_ndd +EXPORT_SYMBOL vmlinux 0x91106ba7 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x915a6549 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x915e1208 tb_ticks_per_usec +EXPORT_SYMBOL vmlinux 0x91652baf arp_tbl +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x91721641 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x917b739d param_get_charp +EXPORT_SYMBOL vmlinux 0x918b3069 mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0x919d1163 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x919e94b8 simple_rmdir +EXPORT_SYMBOL vmlinux 0x91ac822f vscnprintf +EXPORT_SYMBOL vmlinux 0x91b33092 mpage_writepage +EXPORT_SYMBOL vmlinux 0x91bc8e36 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x91e83f4f vfs_iter_write +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x92474bff nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x92887220 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x92930092 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm +EXPORT_SYMBOL vmlinux 0x92bfcb2f dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x92caacab netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x92e20bb0 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x92ea7d49 clear_user_page +EXPORT_SYMBOL vmlinux 0x92f7912e netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x92fd2a58 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x931c1f09 __seq_open_private +EXPORT_SYMBOL vmlinux 0x932138b2 phy_stop +EXPORT_SYMBOL vmlinux 0x933ee549 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x936e67c5 vga_get +EXPORT_SYMBOL vmlinux 0x9371c94e uart_match_port +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x93778120 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x938b58ff ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x9395113d iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0x93a06257 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x93ac6c32 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93cac9dc netdev_printk +EXPORT_SYMBOL vmlinux 0x93da8fb6 d_rehash +EXPORT_SYMBOL vmlinux 0x93f90032 copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x93fe26db mem_cgroup_begin_page_stat +EXPORT_SYMBOL vmlinux 0x940041f4 of_device_unregister +EXPORT_SYMBOL vmlinux 0x94015b2c page_follow_link_light +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x940b1435 posix_lock_file +EXPORT_SYMBOL vmlinux 0x940b572e netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x941ed00d mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x94238ea9 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x942f0c71 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x943dc80f csum_and_copy_to_user +EXPORT_SYMBOL vmlinux 0x943e3dcb down_read +EXPORT_SYMBOL vmlinux 0x94439708 input_open_device +EXPORT_SYMBOL vmlinux 0x94832c2b serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x948dbb23 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x9492fc78 vme_master_request +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94a124a9 I_BDEV +EXPORT_SYMBOL vmlinux 0x94a2b99b netif_carrier_on +EXPORT_SYMBOL vmlinux 0x94a2dc1f scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x94b541b5 cpu_active_mask +EXPORT_SYMBOL vmlinux 0x94c68f28 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x94ef2826 __get_page_tail +EXPORT_SYMBOL vmlinux 0x94f29364 downgrade_write +EXPORT_SYMBOL vmlinux 0x94ff80ab dst_destroy +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x9512f1eb blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x9514151a _mcount +EXPORT_SYMBOL vmlinux 0x9522b70d xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x9524b0ae _outsb +EXPORT_SYMBOL vmlinux 0x9537fde7 soft_cursor +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x954bc038 ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0x95652fa3 ata_port_printk +EXPORT_SYMBOL vmlinux 0x95921be3 agp_free_memory +EXPORT_SYMBOL vmlinux 0x95cd4dd5 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x95d5d604 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x95d82c98 __destroy_inode +EXPORT_SYMBOL vmlinux 0x95e525b4 bio_add_page +EXPORT_SYMBOL vmlinux 0x95f313ce dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x96034596 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x961248a5 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x965b798c sync_filesystem +EXPORT_SYMBOL vmlinux 0x9674b457 eth_header +EXPORT_SYMBOL vmlinux 0x9684bcbb netif_napi_add +EXPORT_SYMBOL vmlinux 0x969987fc lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96bc8aef pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x96be4202 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x97022e9d scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x970da6d6 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x97298a02 cdev_add +EXPORT_SYMBOL vmlinux 0x972e9ffd pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x9748927f _outsw_ns +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x97868aef __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x97980349 wireless_send_event +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x979a5ad7 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97afba7b proc_douintvec +EXPORT_SYMBOL vmlinux 0x97bbe08e tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x97fa654c sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x97ff9dd4 mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0x9807229f remove_proc_entry +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x9852c1e1 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x98594330 truncate_setsize +EXPORT_SYMBOL vmlinux 0x9867eb27 ata_link_printk +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x987388aa security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x987fc124 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x9890ece4 unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0x98b2f93e pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x98c68c41 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x98cd2539 loop_backing_file +EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen +EXPORT_SYMBOL vmlinux 0x98d2e1eb ip_ct_attach +EXPORT_SYMBOL vmlinux 0x98fcd540 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x99195078 vsnprintf +EXPORT_SYMBOL vmlinux 0x991c27f1 kmem_cache_free +EXPORT_SYMBOL vmlinux 0x992ae44d sk_common_release +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x99449f17 vme_irq_free +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x996d8d88 bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x99766955 mmc_request_done +EXPORT_SYMBOL vmlinux 0x998ad00d inet_shutdown +EXPORT_SYMBOL vmlinux 0x998e5932 skb_queue_head +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99afe916 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x99d3a43c dm_table_get_size +EXPORT_SYMBOL vmlinux 0x99dc357b i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x99dc6fcc uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x9a0180da ppp_unit_number +EXPORT_SYMBOL vmlinux 0x9a0ad805 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x9a1dc1ed end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a502016 elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0x9a57b959 pci_get_class +EXPORT_SYMBOL vmlinux 0x9a5c9ec2 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x9a750791 dma_pool_create +EXPORT_SYMBOL vmlinux 0x9a812df5 blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x9a891e54 param_get_uint +EXPORT_SYMBOL vmlinux 0x9a956bae xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x9ab1502c blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x9ad1d342 mem_map +EXPORT_SYMBOL vmlinux 0x9ada2e57 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x9ae42930 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9b053509 blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0x9b1174f5 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x9b135503 inet6_ioctl +EXPORT_SYMBOL vmlinux 0x9b32d0ba jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b3589d6 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b428973 nvm_submit_io +EXPORT_SYMBOL vmlinux 0x9b593ba0 skb_push +EXPORT_SYMBOL vmlinux 0x9b61a4d1 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x9b63329f inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0x9b71654b of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x9b7e85a6 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0x9b8a34d8 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9babca29 touch_atime +EXPORT_SYMBOL vmlinux 0x9bacf351 dput +EXPORT_SYMBOL vmlinux 0x9bae5ac2 ppp_input +EXPORT_SYMBOL vmlinux 0x9bc151d6 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x9bd343d2 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x9be000d1 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x9be28f30 get_agp_version +EXPORT_SYMBOL vmlinux 0x9be369c4 bio_integrity_endio +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9bfe1671 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x9c00fb7e mmc_fixup_device +EXPORT_SYMBOL vmlinux 0x9c2a9424 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x9c38b490 __neigh_create +EXPORT_SYMBOL vmlinux 0x9c3999d0 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c5bf489 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x9c864340 __page_symlink +EXPORT_SYMBOL vmlinux 0x9c8fa5b4 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x9c97f8ee genphy_update_link +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cabf034 security_path_link +EXPORT_SYMBOL vmlinux 0x9cad1d2b __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x9cc3c176 may_umount_tree +EXPORT_SYMBOL vmlinux 0x9cd70826 tcf_hash_check +EXPORT_SYMBOL vmlinux 0x9cd987d3 of_device_register +EXPORT_SYMBOL vmlinux 0x9cdb1e05 swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0x9ce04cb7 read_dev_sector +EXPORT_SYMBOL vmlinux 0x9cfeab62 proc_create_data +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d14983a ppc_enable_pmcs +EXPORT_SYMBOL vmlinux 0x9d1bf844 km_policy_notify +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d4810c1 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x9d4cc9d2 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x9d518a01 should_remove_suid +EXPORT_SYMBOL vmlinux 0x9d537a8d unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x9d6a54c2 flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0x9d72229b fsl_ifc_find +EXPORT_SYMBOL vmlinux 0x9d737cf9 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x9d7abb05 f_setown +EXPORT_SYMBOL vmlinux 0x9d7ce8dd _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x9d83c87f fs_bio_set +EXPORT_SYMBOL vmlinux 0x9da05e10 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x9dac457d tty_port_init +EXPORT_SYMBOL vmlinux 0x9db65be0 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x9dca1811 agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x9ddb0784 udplite_prot +EXPORT_SYMBOL vmlinux 0x9ddb2363 kobject_add +EXPORT_SYMBOL vmlinux 0x9df217d0 __vfs_read +EXPORT_SYMBOL vmlinux 0x9dfbef19 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x9dfca983 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x9e001e69 dquot_acquire +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e2f8c90 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9e353184 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x9e44527b qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e613fdb phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e89b5a9 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x9e95f326 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea884ba inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x9eb9be21 md_done_sync +EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource +EXPORT_SYMBOL vmlinux 0x9ee13fbb fb_get_mode +EXPORT_SYMBOL vmlinux 0x9ef8e07b sock_no_accept +EXPORT_SYMBOL vmlinux 0x9f122a43 netdev_alert +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f63a88d __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x9f7a99a1 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x9f7c1be8 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x9f830412 dev_driver_string +EXPORT_SYMBOL vmlinux 0x9f911629 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fbda277 check_disk_size_change +EXPORT_SYMBOL vmlinux 0x9fc0cb5d twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x9fc65530 finish_no_open +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa00a6577 bio_advance +EXPORT_SYMBOL vmlinux 0xa012b96c udp6_csum_init +EXPORT_SYMBOL vmlinux 0xa021a7b4 nd_iostat_end +EXPORT_SYMBOL vmlinux 0xa034744e kernel_sendpage +EXPORT_SYMBOL vmlinux 0xa0363f30 phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0xa03b1aab blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa055362b xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa05d7161 simple_write_end +EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa07c9ed7 ata_print_version +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0b2fee2 scsi_scan_host +EXPORT_SYMBOL vmlinux 0xa0d973d7 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa0ff74d6 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0xa0ff9c54 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa12cdc15 cfb_copyarea +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa154e2ed tcf_action_exec +EXPORT_SYMBOL vmlinux 0xa15865c2 d_instantiate_unique +EXPORT_SYMBOL vmlinux 0xa15b9215 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xa172c6ef tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xa1b568a1 devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1ba0797 __mutex_init +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1c99385 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xa1de3f53 blkdev_fsync +EXPORT_SYMBOL vmlinux 0xa1de8512 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1ead8fd freeze_bdev +EXPORT_SYMBOL vmlinux 0xa1f8fe75 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xa202a8e5 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xa2071ae6 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa219e625 pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0xa221a1fc __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0xa24563f7 elv_register_queue +EXPORT_SYMBOL vmlinux 0xa25a6e8d vfs_setpos +EXPORT_SYMBOL vmlinux 0xa268dfa5 nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa29a3e4e __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xa2a335bd vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0xa2a721a4 register_framebuffer +EXPORT_SYMBOL vmlinux 0xa2bbed37 crash_shutdown_register +EXPORT_SYMBOL vmlinux 0xa2db7cd5 netlink_broadcast +EXPORT_SYMBOL vmlinux 0xa2fa8dc6 of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0xa2fdbcbe fence_default_wait +EXPORT_SYMBOL vmlinux 0xa303d1ff dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0xa311e39b twl6040_power +EXPORT_SYMBOL vmlinux 0xa31591f4 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xa319687d __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xa31a32c4 phy_detach +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa33588a6 ps2_begin_command +EXPORT_SYMBOL vmlinux 0xa381944f dql_reset +EXPORT_SYMBOL vmlinux 0xa386d5df phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0xa39b4cf2 udelay +EXPORT_SYMBOL vmlinux 0xa3abc422 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xa3db4743 agp_enable +EXPORT_SYMBOL vmlinux 0xa3e0274b dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0xa3e75545 flush_tlb_kernel_range +EXPORT_SYMBOL vmlinux 0xa3ec28c6 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xa403a572 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xa41e0b51 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xa4299a89 d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0xa4511467 crc16 +EXPORT_SYMBOL vmlinux 0xa4531570 reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0xa45e1bbd giveup_fpu +EXPORT_SYMBOL vmlinux 0xa4637b29 path_get +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa4832d0b swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0xa4904486 phy_resume +EXPORT_SYMBOL vmlinux 0xa494155c jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xa4a72495 d_obtain_alias +EXPORT_SYMBOL vmlinux 0xa4a94d26 find_next_bit_le +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4bf0b5c tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xa4d3cd30 dev_add_offload +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4f85d0e no_llseek +EXPORT_SYMBOL vmlinux 0xa507ebea generic_block_bmap +EXPORT_SYMBOL vmlinux 0xa53cad05 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa55a0eb1 tcp_parse_options +EXPORT_SYMBOL vmlinux 0xa55c6830 register_sysctl_table +EXPORT_SYMBOL vmlinux 0xa5673c6d tcp_prequeue +EXPORT_SYMBOL vmlinux 0xa56b8ab2 flex_array_free +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa5a51eee __crc32c_le +EXPORT_SYMBOL vmlinux 0xa5a53ac6 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xa5a6c27d mount_single +EXPORT_SYMBOL vmlinux 0xa5b2fdac devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0xa5b41628 wait_iff_congested +EXPORT_SYMBOL vmlinux 0xa5d5f601 dev_addr_flush +EXPORT_SYMBOL vmlinux 0xa5e8b919 simple_pin_fs +EXPORT_SYMBOL vmlinux 0xa5e944f9 inet6_release +EXPORT_SYMBOL vmlinux 0xa6061bcf kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xa615d8ed d_obtain_root +EXPORT_SYMBOL vmlinux 0xa6199788 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xa63322c6 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xa6496133 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0xa64bf88f scsi_register_driver +EXPORT_SYMBOL vmlinux 0xa65972b8 _memcpy_toio +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6a1debd led_blink_set_oneshot +EXPORT_SYMBOL vmlinux 0xa6b02a86 module_put +EXPORT_SYMBOL vmlinux 0xa6b656ae of_phy_attach +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa707ae7e eth_validate_addr +EXPORT_SYMBOL vmlinux 0xa708cc80 is_bad_inode +EXPORT_SYMBOL vmlinux 0xa70fae79 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xa712766c __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xa720678c lg_global_lock +EXPORT_SYMBOL vmlinux 0xa7266957 led_blink_set +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa74f4e9b ida_simple_get +EXPORT_SYMBOL vmlinux 0xa75276b2 mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0xa752dc0d elv_unregister_queue +EXPORT_SYMBOL vmlinux 0xa7859966 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0xa78d9eb7 slhc_uncompress +EXPORT_SYMBOL vmlinux 0xa792fb89 mac_find_mode +EXPORT_SYMBOL vmlinux 0xa7d62a4d dev_activate +EXPORT_SYMBOL vmlinux 0xa7d84f02 softnet_data +EXPORT_SYMBOL vmlinux 0xa80771ed abx500_register_ops +EXPORT_SYMBOL vmlinux 0xa811295f agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0xa814cfcb devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0xa82d8e06 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa843ed40 netdev_info +EXPORT_SYMBOL vmlinux 0xa84fa5c5 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xa8556258 ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0xa85e522f tcp_poll +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa88c38f7 blk_recount_segments +EXPORT_SYMBOL vmlinux 0xa8b73c86 pci_set_mwi +EXPORT_SYMBOL vmlinux 0xa8c172ba sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0xa8cdf84a sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa91d90d3 nla_put +EXPORT_SYMBOL vmlinux 0xa9220a25 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xa9273e1a epapr_hypercall_start +EXPORT_SYMBOL vmlinux 0xa9390c72 vm_map_ram +EXPORT_SYMBOL vmlinux 0xa93ba88e proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xa952382f unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xa9588e96 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xa95f09f7 netdev_master_upper_dev_link_private +EXPORT_SYMBOL vmlinux 0xa9623248 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xa96276f6 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa991b59a iget_failed +EXPORT_SYMBOL vmlinux 0xa99871e7 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9d7c54a scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0xa9e87a17 skb_free_datagram +EXPORT_SYMBOL vmlinux 0xaa03faf0 dev_uc_flush +EXPORT_SYMBOL vmlinux 0xaa04c144 d_move +EXPORT_SYMBOL vmlinux 0xaa0672c3 mpage_writepages +EXPORT_SYMBOL vmlinux 0xaa11ab08 generic_setxattr +EXPORT_SYMBOL vmlinux 0xaa26acf5 bio_reset +EXPORT_SYMBOL vmlinux 0xaa46e87e lg_local_unlock +EXPORT_SYMBOL vmlinux 0xaa48dde0 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0xaa6e4df5 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa711ca9 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0xaa768d6c skb_make_writable +EXPORT_SYMBOL vmlinux 0xaa8da89b vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xaaab8067 cpu_sibling_map +EXPORT_SYMBOL vmlinux 0xaaabc61e security_d_instantiate +EXPORT_SYMBOL vmlinux 0xaabdf3ef blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0xaabe0aad swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xaad009f6 skb_checksum_help +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaaf36c14 input_inject_event +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab01bf1d init_task +EXPORT_SYMBOL vmlinux 0xab0b9f6d mmc_register_driver +EXPORT_SYMBOL vmlinux 0xab228e31 csum_tcpudp_magic +EXPORT_SYMBOL vmlinux 0xab22e819 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0xab3c8d0c __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0xab4c7579 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xab690e92 nf_afinfo +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab7f6eff delete_from_page_cache +EXPORT_SYMBOL vmlinux 0xab8aaeb9 tty_port_destroy +EXPORT_SYMBOL vmlinux 0xab93ea3b jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xab96e4f7 inet_frag_kill +EXPORT_SYMBOL vmlinux 0xaba89208 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0xabc8e3dd scsi_host_put +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabd61a40 pipe_unlock +EXPORT_SYMBOL vmlinux 0xabecf7c4 sock_init_data +EXPORT_SYMBOL vmlinux 0xabf4c3e4 lwtunnel_input +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac1732c8 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac1b539c blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0xac26b820 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xac3faf8c __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xac4f2e9e dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0xac5ce099 security_task_getsecid +EXPORT_SYMBOL vmlinux 0xac6391c0 inet6_offloads +EXPORT_SYMBOL vmlinux 0xac77d465 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0xac9eca7a alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacbdc86a __mmc_claim_host +EXPORT_SYMBOL vmlinux 0xacc457dc of_get_min_tck +EXPORT_SYMBOL vmlinux 0xacc5b5d2 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacd5549d xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xace081fa gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0xace10b82 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0xace50076 dev_addr_del +EXPORT_SYMBOL vmlinux 0xacf0b9d6 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xad01744f kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad11416b touch_buffer +EXPORT_SYMBOL vmlinux 0xad164875 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xad236625 nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0xad2af0c8 gen_pool_free +EXPORT_SYMBOL vmlinux 0xad35f3b7 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xad485026 dev_deactivate +EXPORT_SYMBOL vmlinux 0xad541ea2 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xad5664a4 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xad72c8b5 inet_frag_find +EXPORT_SYMBOL vmlinux 0xad7fae9f d_set_fallthru +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad961743 __wait_on_bit +EXPORT_SYMBOL vmlinux 0xadbc3e58 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xadcc7e12 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xadd0a849 get_super +EXPORT_SYMBOL vmlinux 0xadd3397f ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0xadef1854 paca +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xadffa360 put_page +EXPORT_SYMBOL vmlinux 0xae0f5d22 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xae28d54c register_filesystem +EXPORT_SYMBOL vmlinux 0xae349561 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0xae358236 fence_signal +EXPORT_SYMBOL vmlinux 0xae363be7 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0xae43f2f0 neigh_connected_output +EXPORT_SYMBOL vmlinux 0xae545f06 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xae907f2b register_netdev +EXPORT_SYMBOL vmlinux 0xaea1aa99 nvm_register_mgr +EXPORT_SYMBOL vmlinux 0xaf063510 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xaf21064a bdevname +EXPORT_SYMBOL vmlinux 0xaf2d872c prepare_to_wait +EXPORT_SYMBOL vmlinux 0xaf2d90d8 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xaf2dca3b vme_new_dma_list +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf6ae696 kstrndup +EXPORT_SYMBOL vmlinux 0xaf6be6d7 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xaf7c1ada jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xaf91831f param_ops_byte +EXPORT_SYMBOL vmlinux 0xaf9340a7 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0xaf980d91 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xafb0b6a8 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xafb0fd09 gen_pool_create +EXPORT_SYMBOL vmlinux 0xafbc9eb1 devm_ioremap +EXPORT_SYMBOL vmlinux 0xafe4c4e4 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xafff3d1d mempool_alloc +EXPORT_SYMBOL vmlinux 0xb00343c2 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xb03abbdb vfs_getattr +EXPORT_SYMBOL vmlinux 0xb04241b4 ida_simple_remove +EXPORT_SYMBOL vmlinux 0xb04b1ec9 proc_set_size +EXPORT_SYMBOL vmlinux 0xb04d361e __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xb053165f register_key_type +EXPORT_SYMBOL vmlinux 0xb059392e security_path_symlink +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb065fe01 kernel_read +EXPORT_SYMBOL vmlinux 0xb06ccbc8 cdrom_check_events +EXPORT_SYMBOL vmlinux 0xb08664e9 iget5_locked +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0aff92e scsi_device_resume +EXPORT_SYMBOL vmlinux 0xb0b1063c generic_make_request +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0b66c87 abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0xb0c31358 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0xb0c8a66e page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xb0cb3353 mmc_get_card +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0ea5cbb find_get_pages_tag +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb144d790 page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0xb14b1744 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0xb15bd8fa tb_ticks_per_sec +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb165ef45 __irq_regs +EXPORT_SYMBOL vmlinux 0xb167c104 param_ops_short +EXPORT_SYMBOL vmlinux 0xb1832371 con_is_bound +EXPORT_SYMBOL vmlinux 0xb18f3079 netdev_emerg +EXPORT_SYMBOL vmlinux 0xb1b51b99 pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1c6e787 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xb1d44c50 module_layout +EXPORT_SYMBOL vmlinux 0xb1fb0fef mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xb244f9fb keyring_alloc +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb287a824 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xb292e5f3 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0xb29349b5 ip6_frag_init +EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xb2e72403 get_task_exe_file +EXPORT_SYMBOL vmlinux 0xb2efe01a agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0xb2f1f806 mdio_bus_type +EXPORT_SYMBOL vmlinux 0xb311a71c scsi_host_lookup +EXPORT_SYMBOL vmlinux 0xb3382494 fence_signal_locked +EXPORT_SYMBOL vmlinux 0xb34c98ed blk_sync_queue +EXPORT_SYMBOL vmlinux 0xb351aa44 vga_put +EXPORT_SYMBOL vmlinux 0xb35f181d try_to_release_page +EXPORT_SYMBOL vmlinux 0xb36fe42c tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xb370f84f of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0xb3b9d727 kill_block_super +EXPORT_SYMBOL vmlinux 0xb3c07604 i2c_verify_client +EXPORT_SYMBOL vmlinux 0xb3d0da17 arp_create +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3d8cbb0 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb3ff8df1 __devm_request_region +EXPORT_SYMBOL vmlinux 0xb41bf1c9 pci_save_state +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb43930a6 param_get_ullong +EXPORT_SYMBOL vmlinux 0xb43fcd27 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0xb44d4d9c fsnotify_put_group +EXPORT_SYMBOL vmlinux 0xb453f0f0 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0xb46cde80 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb47189b5 reservation_ww_class +EXPORT_SYMBOL vmlinux 0xb473e2c2 lockref_get +EXPORT_SYMBOL vmlinux 0xb48a0c91 uart_suspend_port +EXPORT_SYMBOL vmlinux 0xb4960e2a dentry_path_raw +EXPORT_SYMBOL vmlinux 0xb4970bba misc_deregister +EXPORT_SYMBOL vmlinux 0xb4c279c3 xattr_full_name +EXPORT_SYMBOL vmlinux 0xb4c3950d generic_delete_inode +EXPORT_SYMBOL vmlinux 0xb4c9a932 pci_enable_msix +EXPORT_SYMBOL vmlinux 0xb4cef8c9 bio_init +EXPORT_SYMBOL vmlinux 0xb4e24b6f sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xb4f72aed i2c_del_driver +EXPORT_SYMBOL vmlinux 0xb50c662f inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb57d31b8 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0xb57d9513 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0xb581f5d6 vme_register_driver +EXPORT_SYMBOL vmlinux 0xb5820784 tso_build_hdr +EXPORT_SYMBOL vmlinux 0xb585486e mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xb58d7c6b free_page_put_link +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5cceccf __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xb5d2255c blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb6269dd1 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xb6412373 neigh_xmit +EXPORT_SYMBOL vmlinux 0xb64eba5b cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xb65f44e4 blk_start_request +EXPORT_SYMBOL vmlinux 0xb663bfd6 kfree_skb_list +EXPORT_SYMBOL vmlinux 0xb676775a inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb68f3993 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6978be5 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6a7ee6a inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xb6ac1cc2 nvm_dev_factory +EXPORT_SYMBOL vmlinux 0xb6aceb05 open_check_o_direct +EXPORT_SYMBOL vmlinux 0xb6b57e8e blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0xb6c2e0bc xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xb6c58c2a sg_miter_stop +EXPORT_SYMBOL vmlinux 0xb6d810e4 rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0xb6f0cbcc security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xb6f76881 freezing_slow_path +EXPORT_SYMBOL vmlinux 0xb6f82742 swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0xb6fafe96 tty_port_put +EXPORT_SYMBOL vmlinux 0xb722cf13 handle_edge_irq +EXPORT_SYMBOL vmlinux 0xb7284873 vfs_symlink +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb74987a8 fput +EXPORT_SYMBOL vmlinux 0xb75ae31c pci_enable_device_io +EXPORT_SYMBOL vmlinux 0xb75b9c2f kill_anon_super +EXPORT_SYMBOL vmlinux 0xb7643d64 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0xb770be3e __percpu_counter_add +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb7941606 mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0xb79a4e1a store_fp_state +EXPORT_SYMBOL vmlinux 0xb7a27fe1 proto_register +EXPORT_SYMBOL vmlinux 0xb7bc3d88 md_reload_sb +EXPORT_SYMBOL vmlinux 0xb7bcd9c0 inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7d29492 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xb7d2f841 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0xb7f2222a padata_start +EXPORT_SYMBOL vmlinux 0xb80acc12 sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0xb816cd4d neigh_table_clear +EXPORT_SYMBOL vmlinux 0xb8197f7e set_posix_acl +EXPORT_SYMBOL vmlinux 0xb825ccad of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0xb8269c8e gen_pool_destroy +EXPORT_SYMBOL vmlinux 0xb847999d from_kuid_munged +EXPORT_SYMBOL vmlinux 0xb850141d add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0xb85c112f __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xb86564d8 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0xb871911c xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xb87284f3 swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb8de6278 new_inode +EXPORT_SYMBOL vmlinux 0xb8ef2bf7 dm_put_device +EXPORT_SYMBOL vmlinux 0xb8f35de5 current_in_userns +EXPORT_SYMBOL vmlinux 0xb8f5f715 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xb906515e mmc_can_erase +EXPORT_SYMBOL vmlinux 0xb90cbc61 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0xb917d5b7 vc_cons +EXPORT_SYMBOL vmlinux 0xb918db11 udp_del_offload +EXPORT_SYMBOL vmlinux 0xb91fb345 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xb98813ca pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0xb9b1d1d3 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xb9be599b compat_sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xb9c2369b module_refcount +EXPORT_SYMBOL vmlinux 0xb9c7a8f2 do_splice_from +EXPORT_SYMBOL vmlinux 0xb9ccd0c9 skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9f22dce datagram_poll +EXPORT_SYMBOL vmlinux 0xba31ab5a block_write_begin +EXPORT_SYMBOL vmlinux 0xba483afc dev_change_flags +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba4e5a2f tty_unlock +EXPORT_SYMBOL vmlinux 0xba545aec ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xba5d2fb9 xfrm_input +EXPORT_SYMBOL vmlinux 0xba8769fb set_security_override +EXPORT_SYMBOL vmlinux 0xba9efd19 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xbabb243d compat_mc_getsockopt +EXPORT_SYMBOL vmlinux 0xbac6668a xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xbadc1915 __find_get_block +EXPORT_SYMBOL vmlinux 0xbb02ec71 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0xbb04e5a8 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xbb050e18 __block_write_begin +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb055f77 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xbb22a9d7 d_alloc_name +EXPORT_SYMBOL vmlinux 0xbb254656 __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0xbb2a441c sock_wfree +EXPORT_SYMBOL vmlinux 0xbb34134a iov_shorten +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb369d91 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xbb464fb8 bio_alloc_pages +EXPORT_SYMBOL vmlinux 0xbb4b25c2 lock_fb_info +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb5929ee xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb8ef819 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xbb901965 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbbaeb559 memcg_socket_limit_enabled +EXPORT_SYMBOL vmlinux 0xbbb6b412 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xbbb840e2 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0xbc21be61 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0xbc239914 do_truncate +EXPORT_SYMBOL vmlinux 0xbc2481bb rtnl_unicast +EXPORT_SYMBOL vmlinux 0xbc2cac10 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xbc2f666b open_exec +EXPORT_SYMBOL vmlinux 0xbc316de4 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0xbc58da66 kernel_bind +EXPORT_SYMBOL vmlinux 0xbc7a18f8 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0xbcabaa3a init_net +EXPORT_SYMBOL vmlinux 0xbcb6527b pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0xbcbdb7ac param_get_byte +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcdd8521 xfrm_lookup +EXPORT_SYMBOL vmlinux 0xbcf150f9 xor_altivec_5 +EXPORT_SYMBOL vmlinux 0xbcf657de unlink_framebuffer +EXPORT_SYMBOL vmlinux 0xbd1011e5 generic_getxattr +EXPORT_SYMBOL vmlinux 0xbd1ce247 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd47ee5f jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xbd4c5764 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xbd6d79f1 __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0xbd6f0020 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xbd803510 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbd986fc7 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xbda79c52 dma_find_channel +EXPORT_SYMBOL vmlinux 0xbdb706c4 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xbdc1d38d write_one_page +EXPORT_SYMBOL vmlinux 0xbde0d136 param_ops_bint +EXPORT_SYMBOL vmlinux 0xbde18d6a __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0xbdf76374 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xbe016acf mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe38527d dst_release +EXPORT_SYMBOL vmlinux 0xbe38e196 tcf_hash_search +EXPORT_SYMBOL vmlinux 0xbe60612b nf_hook_slow +EXPORT_SYMBOL vmlinux 0xbe71521b fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0xbebd89ef __tcf_hash_release +EXPORT_SYMBOL vmlinux 0xbec51f14 vm_stat +EXPORT_SYMBOL vmlinux 0xbeed321b dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbeff696b netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xbf0fae6f dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0xbf146162 vm_event_states +EXPORT_SYMBOL vmlinux 0xbf508e90 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0xbf523184 __secpath_destroy +EXPORT_SYMBOL vmlinux 0xbf6a618a thermal_cdev_update +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf8a5141 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf925c42 idr_init +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbf9c6938 key_alloc +EXPORT_SYMBOL vmlinux 0xbfa9bb07 vfs_whiteout +EXPORT_SYMBOL vmlinux 0xbfabfe59 __debugger_iabr_match +EXPORT_SYMBOL vmlinux 0xbfb37caf tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xbfb8b0b7 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xbfc1255b devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfea96bd unregister_shrinker +EXPORT_SYMBOL vmlinux 0xbfedca6c fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xc008c84f mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xc0276b2a __dquot_transfer +EXPORT_SYMBOL vmlinux 0xc02a846d iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xc0356a2c vfs_path_lookup +EXPORT_SYMBOL vmlinux 0xc0365e52 swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0xc03fcf83 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0xc05c8dc2 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xc05dd98d tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xc0632f7d ppc_md +EXPORT_SYMBOL vmlinux 0xc06d8efd have_submounts +EXPORT_SYMBOL vmlinux 0xc0705a2d rtnl_configure_link +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc07b1cd3 generic_removexattr +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc08c8a80 simple_dir_operations +EXPORT_SYMBOL vmlinux 0xc0961603 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xc0a19d11 pci_scan_slot +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0b7a758 blk_execute_rq +EXPORT_SYMBOL vmlinux 0xc0e61f0a clkdev_alloc +EXPORT_SYMBOL vmlinux 0xc0ef2ecd blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xc0f45da2 mem_cgroup_end_page_stat +EXPORT_SYMBOL vmlinux 0xc100178c __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0xc10d4130 serio_rescan +EXPORT_SYMBOL vmlinux 0xc1196230 pci_match_id +EXPORT_SYMBOL vmlinux 0xc13a10dc flex_array_alloc +EXPORT_SYMBOL vmlinux 0xc1507b81 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xc15a44c6 memzero_explicit +EXPORT_SYMBOL vmlinux 0xc15d68b7 d_lookup +EXPORT_SYMBOL vmlinux 0xc16456b0 phy_register_fixup +EXPORT_SYMBOL vmlinux 0xc1b42de9 __check_sticky +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1dd2ccc inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xc1e393b0 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc1ed5b9c mfd_cell_enable +EXPORT_SYMBOL vmlinux 0xc217199c nvm_unregister_target +EXPORT_SYMBOL vmlinux 0xc21726d4 tty_vhangup +EXPORT_SYMBOL vmlinux 0xc21e3f8e build_skb +EXPORT_SYMBOL vmlinux 0xc22a9014 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xc2394a03 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0xc23b3e8c ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc268b496 drop_nlink +EXPORT_SYMBOL vmlinux 0xc2694b3a blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0xc2750527 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xc27cea96 migrate_page_copy +EXPORT_SYMBOL vmlinux 0xc2900ff9 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xc2921a30 tty_set_operations +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2af3120 nla_append +EXPORT_SYMBOL vmlinux 0xc2be766e bmap +EXPORT_SYMBOL vmlinux 0xc2cefa69 iterate_mounts +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc30a049f of_device_is_available +EXPORT_SYMBOL vmlinux 0xc30b8142 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc31ad3b3 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xc370d4ff __quota_error +EXPORT_SYMBOL vmlinux 0xc376695e alloc_fcdev +EXPORT_SYMBOL vmlinux 0xc3837fcf invalidate_partition +EXPORT_SYMBOL vmlinux 0xc3a86e18 complete_request_key +EXPORT_SYMBOL vmlinux 0xc3b4632d param_set_charp +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3d1ac4f __cleancache_get_page +EXPORT_SYMBOL vmlinux 0xc3d2dd54 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xc3d97013 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xc407dd04 __skb_get_hash +EXPORT_SYMBOL vmlinux 0xc423128c generic_file_fsync +EXPORT_SYMBOL vmlinux 0xc4384508 input_reset_device +EXPORT_SYMBOL vmlinux 0xc4387ce3 mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0xc438c96e scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xc444137f agp_bind_memory +EXPORT_SYMBOL vmlinux 0xc4477c09 arp_send +EXPORT_SYMBOL vmlinux 0xc4513ceb scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xc45755de find_next_zero_bit_le +EXPORT_SYMBOL vmlinux 0xc458719c dquot_quota_off +EXPORT_SYMBOL vmlinux 0xc464997b of_mdio_parse_addr +EXPORT_SYMBOL vmlinux 0xc46863d2 tcp_disconnect +EXPORT_SYMBOL vmlinux 0xc46fba94 secpath_dup +EXPORT_SYMBOL vmlinux 0xc47cdf9c _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0xc48307db lz4_decompress +EXPORT_SYMBOL vmlinux 0xc48fd1b9 copy_from_iter +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4a53810 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0xc4ae8ee2 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0xc4af9fe1 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xc4b8ea68 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xc4d3eb00 lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0xc4dfe93b free_user_ns +EXPORT_SYMBOL vmlinux 0xc51398c7 pci_release_region +EXPORT_SYMBOL vmlinux 0xc5239d8b __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0xc53210d1 netlink_set_err +EXPORT_SYMBOL vmlinux 0xc53d373d n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xc5426b1e tcp_check_req +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc55da9e8 sync_inode +EXPORT_SYMBOL vmlinux 0xc5952229 __devm_release_region +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc59e2cb5 bio_put +EXPORT_SYMBOL vmlinux 0xc5ac6bd5 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc62343d1 pci_select_bars +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc64c96b0 sock_create_kern +EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0xc663b075 __ioremap +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc6772da2 radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0xc683b1d2 ps2_init +EXPORT_SYMBOL vmlinux 0xc6b9f13e vfs_rmdir +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6dcb74d mmc_can_discard +EXPORT_SYMBOL vmlinux 0xc6ec0fa1 nvm_register_target +EXPORT_SYMBOL vmlinux 0xc6f0a196 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0xc6fb0f75 pci_iomap_range +EXPORT_SYMBOL vmlinux 0xc70114ac inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xc707fbb1 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xc70c9385 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xc713bddc __register_binfmt +EXPORT_SYMBOL vmlinux 0xc71c4918 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc721427e inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0xc729d11a inet_del_offload +EXPORT_SYMBOL vmlinux 0xc7353243 of_phy_connect +EXPORT_SYMBOL vmlinux 0xc7496aa6 skb_put +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc758cbc9 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xc7591cf0 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xc75eb431 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xc761b5dd generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xc7680d30 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xc768de19 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xc7746303 of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc7898275 flex_array_shrink +EXPORT_SYMBOL vmlinux 0xc7909760 compat_sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc79ea4ec sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7e01d56 vga_tryget +EXPORT_SYMBOL vmlinux 0xc804f71b nf_log_unset +EXPORT_SYMBOL vmlinux 0xc80b9860 padata_stop +EXPORT_SYMBOL vmlinux 0xc83b34d3 pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0xc83f5cfc cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xc845b9ab mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc84d2101 cdev_del +EXPORT_SYMBOL vmlinux 0xc850061b rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xc8571bcb idr_for_each +EXPORT_SYMBOL vmlinux 0xc8678349 skb_clone_sk +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc87ab7b2 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xc88e1b24 of_get_address +EXPORT_SYMBOL vmlinux 0xc88f4e5a iput +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc893828c dquot_file_open +EXPORT_SYMBOL vmlinux 0xc897c04e n_tty_compat_ioctl_helper +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b040a8 sk_dst_check +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8fdd233 inode_permission +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc919192a tcp_sendmsg +EXPORT_SYMBOL vmlinux 0xc93b50dc netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0xc93fbc54 wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xc94b2e77 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc978479a xz_dec_run +EXPORT_SYMBOL vmlinux 0xc9794407 nvm_get_blk +EXPORT_SYMBOL vmlinux 0xc97d4395 __put_cred +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9e0bdbd param_get_string +EXPORT_SYMBOL vmlinux 0xca05d4e3 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy +EXPORT_SYMBOL vmlinux 0xca2b1cd6 ida_pre_get +EXPORT_SYMBOL vmlinux 0xca2be3fc netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0xca386b14 sock_wake_async +EXPORT_SYMBOL vmlinux 0xca3b28c6 store_vr_state +EXPORT_SYMBOL vmlinux 0xca3b418d blk_make_request +EXPORT_SYMBOL vmlinux 0xca5ee09a vme_free_consistent +EXPORT_SYMBOL vmlinux 0xca832efe kmalloc_order +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca965abc skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0xcaa1f445 of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0xcab60fe7 inet6_bind +EXPORT_SYMBOL vmlinux 0xcac70a29 agp_find_bridge +EXPORT_SYMBOL vmlinux 0xcace6297 idr_is_empty +EXPORT_SYMBOL vmlinux 0xcad62f73 vfs_create +EXPORT_SYMBOL vmlinux 0xcadc03ab agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb083ea9 __f_setown +EXPORT_SYMBOL vmlinux 0xcb1a8f36 create_empty_buffers +EXPORT_SYMBOL vmlinux 0xcb329f33 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xcb3dfdcc prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xcb424a46 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xcb47303d dm_kobject_release +EXPORT_SYMBOL vmlinux 0xcb662031 follow_down +EXPORT_SYMBOL vmlinux 0xcb741acf neigh_event_ns +EXPORT_SYMBOL vmlinux 0xcb7d4563 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xcb936989 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcb9faaf9 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc129f0 scsi_remove_device +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbf0b430 set_bh_page +EXPORT_SYMBOL vmlinux 0xcc04b1df revalidate_disk +EXPORT_SYMBOL vmlinux 0xcc17504d _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xcc178e5b vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc36cafa __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc87395a tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xcc92a6a8 nf_register_hooks +EXPORT_SYMBOL vmlinux 0xcc9b5306 flush_icache_user_range +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccca3d4a inode_dio_wait +EXPORT_SYMBOL vmlinux 0xccd718d5 clear_wb_congested +EXPORT_SYMBOL vmlinux 0xcce4bc95 mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0xcce648e8 dquot_commit +EXPORT_SYMBOL vmlinux 0xccf375e0 blk_put_request +EXPORT_SYMBOL vmlinux 0xcd0529c7 _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xcd20667a kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0xcd23072d done_path_create +EXPORT_SYMBOL vmlinux 0xcd233561 param_get_long +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd363575 user_path_create +EXPORT_SYMBOL vmlinux 0xcd3f0d51 vfs_getxattr_alloc +EXPORT_SYMBOL vmlinux 0xcd46ffa7 mb_cache_shrink +EXPORT_SYMBOL vmlinux 0xcd4af006 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0xcd5423b8 vfs_unlink +EXPORT_SYMBOL vmlinux 0xcd57f7b0 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xcd6029b3 of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0xcd7ede2a seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xcd7f5ce0 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xcd86c87f __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xcd932c9d xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xcd94dd79 inet_put_port +EXPORT_SYMBOL vmlinux 0xcd98169b blk_end_request_cur +EXPORT_SYMBOL vmlinux 0xcd9d4a8b scsi_unregister +EXPORT_SYMBOL vmlinux 0xcda2ee18 fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0xcdaa191a sget_userns +EXPORT_SYMBOL vmlinux 0xcdc392e2 agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdc7d6f3 sk_stream_write_space +EXPORT_SYMBOL vmlinux 0xcde0f4b7 block_invalidatepage +EXPORT_SYMBOL vmlinux 0xcdef0c07 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xce0b341d dentry_update_name_case +EXPORT_SYMBOL vmlinux 0xce0e2d66 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xce10ed33 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xce120df8 blk_start_queue_async +EXPORT_SYMBOL vmlinux 0xce1273ab jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0xce13e802 get_acl +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce3b3f09 profile_pc +EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce5475ff invalidate_bdev +EXPORT_SYMBOL vmlinux 0xce5a5144 cdrom_open +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce7850e1 crc32_le_shift +EXPORT_SYMBOL vmlinux 0xce8a7a88 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xce8f4753 md_cluster_ops +EXPORT_SYMBOL vmlinux 0xcea1e24e jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceae504f cmdline_parts_free +EXPORT_SYMBOL vmlinux 0xcebf04c1 get_io_context +EXPORT_SYMBOL vmlinux 0xcec0c31b of_scan_pci_bridge +EXPORT_SYMBOL vmlinux 0xced777cb proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf256091 lease_get_mtime +EXPORT_SYMBOL vmlinux 0xcf2c865e vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xcf517e89 tty_unregister_device +EXPORT_SYMBOL vmlinux 0xcf563555 make_kgid +EXPORT_SYMBOL vmlinux 0xcf5db729 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0xcf85a4e4 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0xcf976c87 kset_unregister +EXPORT_SYMBOL vmlinux 0xcf9a886d generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0xcfb33deb scsi_execute +EXPORT_SYMBOL vmlinux 0xcfc33965 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xcfcbde62 __ps2_command +EXPORT_SYMBOL vmlinux 0xcfcc1da4 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xcfdba6f1 seq_printf +EXPORT_SYMBOL vmlinux 0xcfdc9cd2 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0xd00b844e kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0xd01a91e8 inet_stream_ops +EXPORT_SYMBOL vmlinux 0xd04de212 blk_mq_all_tag_busy_iter +EXPORT_SYMBOL vmlinux 0xd059ba3f dquot_alloc +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd08350fa of_get_property +EXPORT_SYMBOL vmlinux 0xd08f6239 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xd0905c9a simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xd094748d pci_restore_state +EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0c05004 neigh_parms_release +EXPORT_SYMBOL vmlinux 0xd0d90f3f phy_start_interrupts +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd107d190 mmc_power_save_host +EXPORT_SYMBOL vmlinux 0xd117d51c key_reject_and_link +EXPORT_SYMBOL vmlinux 0xd1201fad dcache_dir_close +EXPORT_SYMBOL vmlinux 0xd1327a98 agp_generic_enable +EXPORT_SYMBOL vmlinux 0xd141846b netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xd1594cbf eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0xd1664f20 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xd1758b80 ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xd17b10e4 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd183bb18 netlink_net_capable +EXPORT_SYMBOL vmlinux 0xd187e337 udp_prot +EXPORT_SYMBOL vmlinux 0xd1a5d8df __genl_register_family +EXPORT_SYMBOL vmlinux 0xd1a80cfc of_get_mac_address +EXPORT_SYMBOL vmlinux 0xd1b16f65 napi_gro_receive +EXPORT_SYMBOL vmlinux 0xd1d22a52 get_pci_dma_ops +EXPORT_SYMBOL vmlinux 0xd1d62117 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd2197533 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd2599bbc bdput +EXPORT_SYMBOL vmlinux 0xd25b24cf nd_btt_probe +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd26c692b neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xd26d7d2f vme_slot_num +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd28a6dac phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0xd2937aab csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xd294537d pci_claim_resource +EXPORT_SYMBOL vmlinux 0xd29b3de0 scsi_print_sense +EXPORT_SYMBOL vmlinux 0xd2b09ce5 __kmalloc +EXPORT_SYMBOL vmlinux 0xd2c089a6 force_sig +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2df3aa5 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0xd2e40455 blk_rq_init +EXPORT_SYMBOL vmlinux 0xd3084447 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd3225a85 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0xd324b698 security_inode_init_security +EXPORT_SYMBOL vmlinux 0xd324f021 seq_escape +EXPORT_SYMBOL vmlinux 0xd3434165 neigh_update +EXPORT_SYMBOL vmlinux 0xd34b2376 cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0xd34c6ea6 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xd360cb04 unregister_console +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd38d0cab ilookup5 +EXPORT_SYMBOL vmlinux 0xd38f4281 __sk_dst_check +EXPORT_SYMBOL vmlinux 0xd3a08e7b revert_creds +EXPORT_SYMBOL vmlinux 0xd3aa8ab6 uart_update_timeout +EXPORT_SYMBOL vmlinux 0xd3bc3804 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3d86d9b mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xd3e3b7cf jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0xd3e73968 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0xd4097cd8 security_file_permission +EXPORT_SYMBOL vmlinux 0xd41a78f8 scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0xd447cfb7 dm_put_table_device +EXPORT_SYMBOL vmlinux 0xd44832eb powerpc_debugfs_root +EXPORT_SYMBOL vmlinux 0xd44b7e21 to_tm +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd46d4c8d dm_register_target +EXPORT_SYMBOL vmlinux 0xd470e65a fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xd47f9f43 register_qdisc +EXPORT_SYMBOL vmlinux 0xd4a22d3a sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0xd4c36935 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0xd4d84a22 vme_irq_request +EXPORT_SYMBOL vmlinux 0xd4e0d63e nf_unregister_hook +EXPORT_SYMBOL vmlinux 0xd50f1f9d tty_name +EXPORT_SYMBOL vmlinux 0xd529eb18 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xd532f692 tc_classify +EXPORT_SYMBOL vmlinux 0xd549c9b7 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0xd54b6b01 skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0xd54c3550 phy_start +EXPORT_SYMBOL vmlinux 0xd54c3db5 inet6_protos +EXPORT_SYMBOL vmlinux 0xd54cfc42 lock_sock_fast +EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0xd562fff0 inet_recvmsg +EXPORT_SYMBOL vmlinux 0xd568be21 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd59ee454 d_tmpfile +EXPORT_SYMBOL vmlinux 0xd5b9e1f8 ps2_handle_response +EXPORT_SYMBOL vmlinux 0xd5d09389 free_netdev +EXPORT_SYMBOL vmlinux 0xd5d581a2 iov_iter_advance +EXPORT_SYMBOL vmlinux 0xd5f806ec blk_finish_request +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd61e4aee sock_no_listen +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd62c9648 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0xd63ba6f7 send_sig_info +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd6493d16 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xd64cdf19 pci_read_vpd +EXPORT_SYMBOL vmlinux 0xd67be138 compat_ip_setsockopt +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd6a64e97 blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0xd6cb3028 __invalidate_device +EXPORT_SYMBOL vmlinux 0xd6cecffa release_pages +EXPORT_SYMBOL vmlinux 0xd6d63e9d lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0xd6e4d4ea __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6fd4053 __arch_hweight32 +EXPORT_SYMBOL vmlinux 0xd6ffed5e sock_no_mmap +EXPORT_SYMBOL vmlinux 0xd7021840 proc_set_user +EXPORT_SYMBOL vmlinux 0xd717f8c4 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xd7357b63 kfree_put_link +EXPORT_SYMBOL vmlinux 0xd73e15ec remap_pfn_range +EXPORT_SYMBOL vmlinux 0xd745194e phy_driver_unregister +EXPORT_SYMBOL vmlinux 0xd74cb6d7 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd761a383 ioremap_prot +EXPORT_SYMBOL vmlinux 0xd7722f8e kernel_connect +EXPORT_SYMBOL vmlinux 0xd796dad8 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0xd7977270 kernel_write +EXPORT_SYMBOL vmlinux 0xd7b118a9 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xd7b6142a iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0xd7cdb482 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0xd7d2214b i2c_master_recv +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7ee178a clear_inode +EXPORT_SYMBOL vmlinux 0xd7f0d1f8 __i2c_transfer +EXPORT_SYMBOL vmlinux 0xd7fef176 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xd80a59ee proc_remove +EXPORT_SYMBOL vmlinux 0xd80e0581 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0xd818ec5d nd_region_release_lane +EXPORT_SYMBOL vmlinux 0xd8259209 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0xd8269da3 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0xd83fd084 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xd844caea get_gendisk +EXPORT_SYMBOL vmlinux 0xd84bbb90 mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0xd8592d06 vfs_write +EXPORT_SYMBOL vmlinux 0xd85a3909 input_set_abs_params +EXPORT_SYMBOL vmlinux 0xd86838a4 commit_creds +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a2933d clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xd8a7777d devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8be67fe alloc_fddidev +EXPORT_SYMBOL vmlinux 0xd8cbf342 pci_bus_type +EXPORT_SYMBOL vmlinux 0xd8cc5cf4 pci_reenable_device +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8f0bd7e backlight_force_update +EXPORT_SYMBOL vmlinux 0xd9720b56 set_user_nice +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd99267c3 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xd9990f61 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0xd9baa693 netlink_ack +EXPORT_SYMBOL vmlinux 0xd9bac924 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0xd9c86478 fb_blank +EXPORT_SYMBOL vmlinux 0xd9ce1a34 mmc_add_host +EXPORT_SYMBOL vmlinux 0xd9cf1a39 inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9ec5a3f __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xd9f5443e blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xda112a19 mmc_can_trim +EXPORT_SYMBOL vmlinux 0xda12e540 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0xda1ebe4d netlink_unicast +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda64a08b nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xda72f442 iterate_supers_type +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda7e4da8 skb_queue_purge +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda9041f2 tso_count_descs +EXPORT_SYMBOL vmlinux 0xda926c69 elevator_change +EXPORT_SYMBOL vmlinux 0xda98db9f fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0xda9fc7ae kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0xdabc1ea8 fsl_lbc_find +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdac545b9 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0xdacd7ce3 vfs_read +EXPORT_SYMBOL vmlinux 0xdad7adff dqstats +EXPORT_SYMBOL vmlinux 0xdad86aff pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell +EXPORT_SYMBOL vmlinux 0xdaf3eef1 _dev_info +EXPORT_SYMBOL vmlinux 0xdaf59af3 tcp_child_process +EXPORT_SYMBOL vmlinux 0xdb01198e fsl_upm_find +EXPORT_SYMBOL vmlinux 0xdb2b3f67 mutex_trylock +EXPORT_SYMBOL vmlinux 0xdb3bcca6 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0xdb4701f0 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb770190 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xdb965bd8 dst_discard_out +EXPORT_SYMBOL vmlinux 0xdba77a90 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0xdbbd3d2a PDE_DATA +EXPORT_SYMBOL vmlinux 0xdbbf8a6b inet_sendpage +EXPORT_SYMBOL vmlinux 0xdbcb9ee4 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xdbf1320c skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc0b4e33 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xdc0bde9e keyring_clear +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc184545 fb_show_logo +EXPORT_SYMBOL vmlinux 0xdc214961 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0xdc24b7b5 fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0xdc29d412 mutex_lock +EXPORT_SYMBOL vmlinux 0xdc315fc4 block_read_full_page +EXPORT_SYMBOL vmlinux 0xdc34e454 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xdc3c41a8 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc789d60 blk_register_region +EXPORT_SYMBOL vmlinux 0xdc8b33f4 key_unlink +EXPORT_SYMBOL vmlinux 0xdc9498dd down +EXPORT_SYMBOL vmlinux 0xdc96805c mount_bdev +EXPORT_SYMBOL vmlinux 0xdc9ca7e8 eth_header_parse +EXPORT_SYMBOL vmlinux 0xdca1b0d2 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xdca63c21 agp_create_memory +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcb764ad memset +EXPORT_SYMBOL vmlinux 0xdccbca69 inode_init_once +EXPORT_SYMBOL vmlinux 0xdcf7873f blk_run_queue +EXPORT_SYMBOL vmlinux 0xdd0471ea set_blocksize +EXPORT_SYMBOL vmlinux 0xdd1c7343 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xdd3a0013 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0xdd51147c pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xdd553f89 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd8c8510 load_nls +EXPORT_SYMBOL vmlinux 0xdd9030af current_stack_pointer +EXPORT_SYMBOL vmlinux 0xdd955144 __debugger +EXPORT_SYMBOL vmlinux 0xdda52594 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xddb3769b lockref_mark_dead +EXPORT_SYMBOL vmlinux 0xddc7466c set_cached_acl +EXPORT_SYMBOL vmlinux 0xddcb284e __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0xdde6cec2 skb_insert +EXPORT_SYMBOL vmlinux 0xddf555a8 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0xde25842e ppp_dev_name +EXPORT_SYMBOL vmlinux 0xde48e9ca _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xde5db213 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0xde67182c generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xde91448c load_vr_state +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdebf6815 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xdeccd72b skb_queue_tail +EXPORT_SYMBOL vmlinux 0xdedcf090 phy_driver_register +EXPORT_SYMBOL vmlinux 0xdedec247 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0xdf13e82f unlock_buffer +EXPORT_SYMBOL vmlinux 0xdf22a0a0 param_get_bool +EXPORT_SYMBOL vmlinux 0xdf23ce40 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf3d15c4 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xdf51d3a8 fb_set_var +EXPORT_SYMBOL vmlinux 0xdf52461d vme_register_bridge +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf57c261 pid_task +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf8d2faf mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf992740 pskb_expand_head +EXPORT_SYMBOL vmlinux 0xdf9f7188 sk_wait_data +EXPORT_SYMBOL vmlinux 0xdfa74f4f __dax_fault +EXPORT_SYMBOL vmlinux 0xdfb34455 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xdfcafa70 single_release +EXPORT_SYMBOL vmlinux 0xdfd7f032 inet_frags_fini +EXPORT_SYMBOL vmlinux 0xdfddb43f ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xdff09ae8 from_kgid +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xe004c16a flow_cache_fini +EXPORT_SYMBOL vmlinux 0xe02c0aa9 __getblk_slow +EXPORT_SYMBOL vmlinux 0xe0387266 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0xe04b6598 d_instantiate +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe053bed7 compat_ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xe05cede1 tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0xe05e4ed2 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe07442ea seq_hex_dump +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe07c872a input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xe07cff32 pci_find_capability +EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe09a636a unlock_page +EXPORT_SYMBOL vmlinux 0xe09c986b bio_map_kern +EXPORT_SYMBOL vmlinux 0xe09e4681 fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b2d599 drop_super +EXPORT_SYMBOL vmlinux 0xe0bafa15 __inode_permission +EXPORT_SYMBOL vmlinux 0xe0c97d27 locks_mandatory_area +EXPORT_SYMBOL vmlinux 0xe0cd17b9 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0xe0e447c6 dcb_getapp +EXPORT_SYMBOL vmlinux 0xe0e818c0 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0xe0e823b2 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe1195bed xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe13e29d3 md_flush_request +EXPORT_SYMBOL vmlinux 0xe1414dd0 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0xe14f7ca7 xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0xe15c9545 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xe16146b2 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe18ecd61 phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0xe1d1e92e kdb_current_task +EXPORT_SYMBOL vmlinux 0xe1e18cfd blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0xe1ffcf17 stop_tty +EXPORT_SYMBOL vmlinux 0xe1ffdb99 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe20372ae radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0xe21f83c9 dev_change_carrier +EXPORT_SYMBOL vmlinux 0xe220ceb8 __debugger_sstep +EXPORT_SYMBOL vmlinux 0xe2289f2b input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0xe22c9a78 of_clk_get +EXPORT_SYMBOL vmlinux 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe2480ca9 dev_mc_flush +EXPORT_SYMBOL vmlinux 0xe24bbbb6 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe279713a jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2a88d92 seq_release_private +EXPORT_SYMBOL vmlinux 0xe2ba3f91 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xe2be5498 lg_global_unlock +EXPORT_SYMBOL vmlinux 0xe2cabdec sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2e3e5ea sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe30cb425 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0xe30d890a __frontswap_store +EXPORT_SYMBOL vmlinux 0xe317764d jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0xe32f83a9 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0xe3321b28 napi_gro_frags +EXPORT_SYMBOL vmlinux 0xe335672d linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xe340b0f0 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0xe35c1893 da903x_query_status +EXPORT_SYMBOL vmlinux 0xe37b99c4 elv_rb_del +EXPORT_SYMBOL vmlinux 0xe386e80e scsi_init_io +EXPORT_SYMBOL vmlinux 0xe392fcc3 load_nls_default +EXPORT_SYMBOL vmlinux 0xe399fb4b devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0xe3a53f4c sort +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe423b682 of_gpio_simple_xlate +EXPORT_SYMBOL vmlinux 0xe4318919 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xe45cad60 tty_kref_put +EXPORT_SYMBOL vmlinux 0xe473b916 get_phy_device +EXPORT_SYMBOL vmlinux 0xe47b7e21 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe493492c blk_peek_request +EXPORT_SYMBOL vmlinux 0xe4b38bd5 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0xe4bd9592 agp_backend_release +EXPORT_SYMBOL vmlinux 0xe4bf360c send_sig +EXPORT_SYMBOL vmlinux 0xe4e25032 nf_log_set +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4eaab2e t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xe4eb146f pci_iounmap +EXPORT_SYMBOL vmlinux 0xe4fe8ca1 _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xe51baae8 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe55b40c3 param_set_byte +EXPORT_SYMBOL vmlinux 0xe56862ef dquot_free_inode +EXPORT_SYMBOL vmlinux 0xe5693149 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xe57849c8 abort_creds +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe58aadcc mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xe58b6d3e compat_nf_setsockopt +EXPORT_SYMBOL vmlinux 0xe58f8354 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xe59ba173 sock_release +EXPORT_SYMBOL vmlinux 0xe5a7d24c serio_open +EXPORT_SYMBOL vmlinux 0xe5a80db8 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xe5a926e7 validate_sp +EXPORT_SYMBOL vmlinux 0xe5c4f722 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5d81f13 tty_unthrottle +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe61909c6 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xe657bb8b seq_pad +EXPORT_SYMBOL vmlinux 0xe65a73d7 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xe66452ab dql_init +EXPORT_SYMBOL vmlinux 0xe666ed76 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xe66d9f5f param_ops_ulong +EXPORT_SYMBOL vmlinux 0xe6871115 of_mm_gpiochip_remove +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe698c4c3 kernel_getpeername +EXPORT_SYMBOL vmlinux 0xe69a9df4 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe69db463 input_register_device +EXPORT_SYMBOL vmlinux 0xe6a30b57 dquot_drop +EXPORT_SYMBOL vmlinux 0xe6e46106 tcp_connect +EXPORT_SYMBOL vmlinux 0xe6e670a3 inode_init_always +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe7056112 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xe711b221 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xe74ba8d3 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xe74c67bc of_phy_find_device +EXPORT_SYMBOL vmlinux 0xe7520877 audit_log +EXPORT_SYMBOL vmlinux 0xe754f0f0 serio_unregister_port +EXPORT_SYMBOL vmlinux 0xe767a452 dm_io +EXPORT_SYMBOL vmlinux 0xe787c24f simple_statfs +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7bb76ef tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0xe7ce7439 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0xe7d14fe2 sock_register +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7fdafcb xfrm_state_update +EXPORT_SYMBOL vmlinux 0xe8008f46 install_exec_creds +EXPORT_SYMBOL vmlinux 0xe803f914 pci_assign_resource +EXPORT_SYMBOL vmlinux 0xe8130870 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe82b0d52 find_vma +EXPORT_SYMBOL vmlinux 0xe848a39e bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xe864588a devm_clk_put +EXPORT_SYMBOL vmlinux 0xe8911faa mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8c438f3 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0xe8ef0ff0 current_kernel_time64 +EXPORT_SYMBOL vmlinux 0xe8f517b4 neigh_direct_output +EXPORT_SYMBOL vmlinux 0xe911089b inode_needs_sync +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe91f328d kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xe9323ff2 submit_bio_wait +EXPORT_SYMBOL vmlinux 0xe932a536 generic_writepages +EXPORT_SYMBOL vmlinux 0xe9378d58 idr_get_next +EXPORT_SYMBOL vmlinux 0xe9525caf dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe96f5146 insert_inode_locked +EXPORT_SYMBOL vmlinux 0xe9751e99 blk_stop_queue +EXPORT_SYMBOL vmlinux 0xe97fc599 param_set_ulong +EXPORT_SYMBOL vmlinux 0xe999c667 ata_dev_printk +EXPORT_SYMBOL vmlinux 0xe9a55391 vfs_iter_read +EXPORT_SYMBOL vmlinux 0xe9b748ee blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xe9bea94d skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xe9eaaeb8 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea05aaf0 is_nd_btt +EXPORT_SYMBOL vmlinux 0xea2504ad give_up_console +EXPORT_SYMBOL vmlinux 0xea36aa94 file_path +EXPORT_SYMBOL vmlinux 0xea52dba4 release_sock +EXPORT_SYMBOL vmlinux 0xea64b513 disk_stack_limits +EXPORT_SYMBOL vmlinux 0xea76f3c5 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xea968c96 ___ratelimit +EXPORT_SYMBOL vmlinux 0xeaabab8f loop_register_transfer +EXPORT_SYMBOL vmlinux 0xeaad3cdb input_flush_device +EXPORT_SYMBOL vmlinux 0xeac1228b of_dev_get +EXPORT_SYMBOL vmlinux 0xeac20a7d swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xeacefca9 padata_free +EXPORT_SYMBOL vmlinux 0xead5f5a5 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0xeae12787 sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0xeae4ac7f dst_init +EXPORT_SYMBOL vmlinux 0xeaefc0c3 neigh_destroy +EXPORT_SYMBOL vmlinux 0xeaf18c09 netdev_update_features +EXPORT_SYMBOL vmlinux 0xeaf1b715 dquot_destroy +EXPORT_SYMBOL vmlinux 0xeaf57396 uart_register_driver +EXPORT_SYMBOL vmlinux 0xeaf84f86 nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0xeafb7919 try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb6cd726 param_set_short +EXPORT_SYMBOL vmlinux 0xeb876c66 simple_write_begin +EXPORT_SYMBOL vmlinux 0xeb884083 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0xeba9a656 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0xebdeade4 blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xebfa7315 submit_bio +EXPORT_SYMBOL vmlinux 0xebfb0294 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xec0da47c scsi_add_device +EXPORT_SYMBOL vmlinux 0xec12e374 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0xec205c12 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec50ba79 path_put +EXPORT_SYMBOL vmlinux 0xec6d2ea8 generic_file_mmap +EXPORT_SYMBOL vmlinux 0xec7c19c4 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0xec7d0c1b __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0xec8c16b0 truncate_pagecache +EXPORT_SYMBOL vmlinux 0xecaa02f8 tty_do_resize +EXPORT_SYMBOL vmlinux 0xecb3b60d mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0xecbb926f xor_altivec_3 +EXPORT_SYMBOL vmlinux 0xecc869d3 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0xecd47d69 of_translate_address +EXPORT_SYMBOL vmlinux 0xecd982a2 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecf8bd86 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0xecf98d2f contig_page_data +EXPORT_SYMBOL vmlinux 0xecfcad3e __dev_set_mtu +EXPORT_SYMBOL vmlinux 0xed0233fc posix_unblock_lock +EXPORT_SYMBOL vmlinux 0xed09902a nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0xed102a6a forget_cached_acl +EXPORT_SYMBOL vmlinux 0xed159ba2 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0xed1d9a81 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xed3845cc of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0xed47a373 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xed57be9f sk_receive_skb +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed70e2d2 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xed776fa7 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xed8e3a25 of_iomap +EXPORT_SYMBOL vmlinux 0xed9be880 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc410d0 udplite_table +EXPORT_SYMBOL vmlinux 0xedf26869 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xedfd5bb9 simple_rename +EXPORT_SYMBOL vmlinux 0xee1ebeec devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0xee1f58bb xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee2fc9d1 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xee3e5e4e __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xee4ad063 rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0xee5b2e59 pci_set_master +EXPORT_SYMBOL vmlinux 0xee684b7f pci_set_power_state +EXPORT_SYMBOL vmlinux 0xee6b27a2 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0xee6b80b7 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xee7c6721 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xeea3cd7a nla_reserve +EXPORT_SYMBOL vmlinux 0xeea99080 fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeec8cbb8 udp6_set_csum +EXPORT_SYMBOL vmlinux 0xeed5775a __ip_dev_find +EXPORT_SYMBOL vmlinux 0xeed80043 lro_flush_all +EXPORT_SYMBOL vmlinux 0xeee5c14d inet_addr_type +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xef0c5d92 blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0xef0cb8e3 of_get_pci_address +EXPORT_SYMBOL vmlinux 0xef108c90 neigh_seq_start +EXPORT_SYMBOL vmlinux 0xef2a8eb0 key_task_permission +EXPORT_SYMBOL vmlinux 0xef358565 key_validate +EXPORT_SYMBOL vmlinux 0xef5476de filemap_fdatawait +EXPORT_SYMBOL vmlinux 0xef761412 __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0xef9abd08 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefde1bbe flush_dcache_range +EXPORT_SYMBOL vmlinux 0xefeb4fa1 param_set_bool +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf00d3964 dev_uc_init +EXPORT_SYMBOL vmlinux 0xf017e6d3 kern_unmount +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf032b0a4 seq_release +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf063097d __serio_register_port +EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be +EXPORT_SYMBOL vmlinux 0xf07fe9a0 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0xf087d8f7 kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf0a8237a radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xf0b22f50 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xf0d77351 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf0f46ddd prepare_binprm +EXPORT_SYMBOL vmlinux 0xf0f47d25 ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0xf0fc857e vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 +EXPORT_SYMBOL vmlinux 0xf1122bf0 __blk_end_request_all +EXPORT_SYMBOL vmlinux 0xf11cd6ce down_interruptible +EXPORT_SYMBOL vmlinux 0xf144b152 textsearch_register +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf153df1d dump_skip +EXPORT_SYMBOL vmlinux 0xf15afdaf unregister_quota_format +EXPORT_SYMBOL vmlinux 0xf178299a devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0xf183189b __ioremap_at +EXPORT_SYMBOL vmlinux 0xf183a03f kill_pgrp +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1b8c805 nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xf1b923ef neigh_app_ns +EXPORT_SYMBOL vmlinux 0xf1bac0cb inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e91df9 of_n_size_cells +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1f25419 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf217726d __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xf21a19a8 of_find_property +EXPORT_SYMBOL vmlinux 0xf221f13d arp_xmit +EXPORT_SYMBOL vmlinux 0xf22881e8 lg_local_lock +EXPORT_SYMBOL vmlinux 0xf22b2208 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf249fa5b xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xf24d535f mdiobus_read +EXPORT_SYMBOL vmlinux 0xf257f362 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xf25b74ca make_bad_inode +EXPORT_SYMBOL vmlinux 0xf25ccdad param_get_invbool +EXPORT_SYMBOL vmlinux 0xf269e1a4 generic_fillattr +EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered +EXPORT_SYMBOL vmlinux 0xf2a2b163 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2d08a2a pagevec_lookup +EXPORT_SYMBOL vmlinux 0xf2e9f34f inet_release +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf317b72b bio_phys_segments +EXPORT_SYMBOL vmlinux 0xf31b5ff0 filemap_fault +EXPORT_SYMBOL vmlinux 0xf31d1b1d pci_release_regions +EXPORT_SYMBOL vmlinux 0xf322a206 bit_waitqueue +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf3660ec7 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0xf36ef088 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0xf389407d phy_connect +EXPORT_SYMBOL vmlinux 0xf389cf75 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf38d98c2 pneigh_lookup +EXPORT_SYMBOL vmlinux 0xf390e18e skb_vlan_push +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf3cc296f of_n_addr_cells +EXPORT_SYMBOL vmlinux 0xf3dd0f9f get_empty_filp +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3f2122a security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xf3f97824 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xf3fa689e sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xf4047acd iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0xf40cb302 fsync_bdev +EXPORT_SYMBOL vmlinux 0xf40dcbb4 dentry_needs_remove_privs +EXPORT_SYMBOL vmlinux 0xf40f19e7 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0xf418700a devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf447dad6 pci_fixup_device +EXPORT_SYMBOL vmlinux 0xf44e4e68 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf47969fc dquot_scan_active +EXPORT_SYMBOL vmlinux 0xf47a7b3d netdev_crit +EXPORT_SYMBOL vmlinux 0xf47b068e sock_edemux +EXPORT_SYMBOL vmlinux 0xf481dde2 __init_rwsem +EXPORT_SYMBOL vmlinux 0xf494d308 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0xf4a4365d bio_copy_data +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4c59bdd register_quota_format +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf51ae235 touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xf51bf88b nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xf5222143 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0xf525cb54 md_finish_reshape +EXPORT_SYMBOL vmlinux 0xf5289d38 of_io_request_and_map +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf54194d5 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xf542aac1 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0xf54e0e72 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0xf55b3b3d __arch_hweight16 +EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set +EXPORT_SYMBOL vmlinux 0xf5a62ecc _memset_io +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5e1558d crash_shutdown_unregister +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf6110ea5 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xf61209a6 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xf62426b6 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xf6309fcc nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf67247de pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xf68720b4 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6c86ce1 redraw_screen +EXPORT_SYMBOL vmlinux 0xf6dac2a9 acl_by_type +EXPORT_SYMBOL vmlinux 0xf6e00d7f tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6ee5117 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xf6ee87cb write_cache_pages +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf70ca2ae xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xf71656bf nobh_writepage +EXPORT_SYMBOL vmlinux 0xf735549a single_open +EXPORT_SYMBOL vmlinux 0xf74d3b61 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xf7526475 pci_request_regions +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf7722c38 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0xf78cbf12 param_get_int +EXPORT_SYMBOL vmlinux 0xf7935f14 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xf79638fd agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0xf798753d d_splice_alias +EXPORT_SYMBOL vmlinux 0xf798a54f nvm_erase_blk +EXPORT_SYMBOL vmlinux 0xf7b68700 xfrm_init_state +EXPORT_SYMBOL vmlinux 0xf7c318bb bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0xf7cdc736 clkdev_add +EXPORT_SYMBOL vmlinux 0xf7d7e42c km_state_expired +EXPORT_SYMBOL vmlinux 0xf7eec077 lock_rename +EXPORT_SYMBOL vmlinux 0xf7f1dc6d vme_dma_list_add +EXPORT_SYMBOL vmlinux 0xf806bf86 inetdev_by_index +EXPORT_SYMBOL vmlinux 0xf806f0f7 eth_header_cache +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf839f98e dm_get_device +EXPORT_SYMBOL vmlinux 0xf8538ff4 inode_get_bytes +EXPORT_SYMBOL vmlinux 0xf8588e32 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xf8671c4b netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0xf869f9f3 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xf879769a iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0xf8a2997e sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xf8c53f38 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0xf8d04f09 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0xf8e2dacb blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf9228003 get_immrbase +EXPORT_SYMBOL vmlinux 0xf924250c pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xf93601b1 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xf9557da9 wake_up_process +EXPORT_SYMBOL vmlinux 0xf95690e7 scm_fp_dup +EXPORT_SYMBOL vmlinux 0xf97d2b20 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xf9862e58 security_path_mknod +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9cbf3a0 unregister_netdev +EXPORT_SYMBOL vmlinux 0xf9d1b31d bio_uncopy_user +EXPORT_SYMBOL vmlinux 0xf9efbc98 audit_log_task_info +EXPORT_SYMBOL vmlinux 0xf9f9f729 iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0xfa1bc202 dquot_resume +EXPORT_SYMBOL vmlinux 0xfa32f2f7 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0xfa38c876 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa9a7b15 of_cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0xfaafaa9f locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0xfab5f66d do_splice_direct +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL vmlinux 0xfb0414c3 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xfb0bfaee skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xfb1b0847 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0xfb51cc1d get_unmapped_area +EXPORT_SYMBOL vmlinux 0xfb5aa6c5 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0xfb5c80f0 key_revoke +EXPORT_SYMBOL vmlinux 0xfb5cf1cb migrate_page +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb76e28f elv_rb_add +EXPORT_SYMBOL vmlinux 0xfb7cf297 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xfb905cdf dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xfb929950 kmalloc_caches +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfba1ba31 tty_write_room +EXPORT_SYMBOL vmlinux 0xfba1ebe6 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0xfba713bb xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbb118c1 vfs_statfs +EXPORT_SYMBOL vmlinux 0xfbbbb237 max8998_update_reg +EXPORT_SYMBOL vmlinux 0xfbc1cd0e mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbea40d1 __percpu_counter_init +EXPORT_SYMBOL vmlinux 0xfc003de3 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc07a77a __starget_for_each_device +EXPORT_SYMBOL vmlinux 0xfc2ecd10 xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3b160f mempool_create_node +EXPORT_SYMBOL vmlinux 0xfc6c9e80 fb_pan_display +EXPORT_SYMBOL vmlinux 0xfc73b294 ip_getsockopt +EXPORT_SYMBOL vmlinux 0xfcaf6cdf mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0xfcb926cd kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfccc2e4f __elv_add_request +EXPORT_SYMBOL vmlinux 0xfccf50d3 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0xfcd682ed netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf0e799 uart_get_divisor +EXPORT_SYMBOL vmlinux 0xfcf2771c phy_attach +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfd0e9457 security_path_unlink +EXPORT_SYMBOL vmlinux 0xfd11dbe0 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xfd205443 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xfd28e5c3 devm_clk_get +EXPORT_SYMBOL vmlinux 0xfd3e1b38 generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xfd4cf796 tcf_em_register +EXPORT_SYMBOL vmlinux 0xfd4e99d4 eth_type_trans +EXPORT_SYMBOL vmlinux 0xfd63019d of_get_child_by_name +EXPORT_SYMBOL vmlinux 0xfd77f043 nobh_write_end +EXPORT_SYMBOL vmlinux 0xfd81863c nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfdb6cedc _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0xfdbeefbf tcp_destroy_cgroup +EXPORT_SYMBOL vmlinux 0xfded48ed enable_kernel_fp +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfdfc7956 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xfe01427f __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xfe014bad migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe10e1aa touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0xfe17047b kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0xfe1db814 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xfe35aa4a percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xfe4555cd sock_no_poll +EXPORT_SYMBOL vmlinux 0xfe510e03 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe61de0d netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe890b30 put_io_context +EXPORT_SYMBOL vmlinux 0xfe8ffc59 netif_device_attach +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfea27345 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xfedcd0d6 current_fs_time +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfee1453b proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xfee4c81f led_update_brightness +EXPORT_SYMBOL vmlinux 0xfee8b9ea __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfef84ce0 km_is_alive +EXPORT_SYMBOL vmlinux 0xff0bd1a7 km_new_mapping +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff26a018 vme_lm_request +EXPORT_SYMBOL vmlinux 0xff2b488e sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0xff30e54e of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0xff3a6d0d noop_llseek +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff9858a3 km_policy_expired +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xffa8df0b setup_new_exec +EXPORT_SYMBOL vmlinux 0xffb407fb ___pskb_trim +EXPORT_SYMBOL vmlinux 0xffcc4055 __pci_register_driver +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffdc51f1 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0xffe720ef napi_disable +EXPORT_SYMBOL vmlinux 0xffff6444 ip_cmsg_recv_offset +EXPORT_SYMBOL_GPL crypto/af_alg 0x0e268559 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x186bb72e af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x24423869 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x387899eb af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x58716898 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0x7328c4f4 af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0x8899c71c af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xa633f216 af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xafc891df af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0xc2157767 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xd696085a af_alg_accept +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x8046a3da async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x1482f04e async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x707d5d5c async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x806321ce async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xd5271ccd async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x02f85a63 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x8b14997c async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xaf1a20e4 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xf4bb15fb __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x29875e02 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xf04bf025 async_xor +EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x23cfac9b blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x43335050 cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x54ac6ce3 cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 +EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 +EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 +EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x53fa9466 crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x75dde7d3 crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/cryptd 0x775eaeaa cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x7a0442c5 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x92cb7248 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x95872257 cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x9cae44c2 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xb292da68 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xb94cbf5c cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xe1be096c cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xece707ea cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xfe9a1bc5 cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey +EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey +EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table +EXPORT_SYMBOL_GPL crypto/lrw 0x8c3ed2ae lrw_crypt +EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table +EXPORT_SYMBOL_GPL crypto/mcryptd 0x1a69c1b7 shash_ahash_mcryptd_finup +EXPORT_SYMBOL_GPL crypto/mcryptd 0x61b92915 mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/mcryptd 0x8347667c mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0xb58393b7 mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0xd81222d3 mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0xd8ca8f7e shash_ahash_mcryptd_update +EXPORT_SYMBOL_GPL crypto/mcryptd 0xe6c5eae3 mcryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/mcryptd 0xfb8df02c shash_ahash_mcryptd_final +EXPORT_SYMBOL_GPL crypto/mcryptd 0xfd602a0c shash_ahash_mcryptd_digest +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x1e40baa3 crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x54aea64c crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x94700a77 crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x9f665534 crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xb4b5eced serpent_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x49146bdc twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey +EXPORT_SYMBOL_GPL crypto/xts 0xc63ca27a xts_crypt +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2a0ac225 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6231d7a1 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x684ed721 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7c3c93d6 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8cc3444e ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8f7b62a6 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9ae446eb ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9f68d3f2 ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa2e3c977 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa368a2ab ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa883fcbd ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb0cf582c ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb193a1cd ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb7e2c417 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc4fc0576 ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd3bf2a56 ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd5e02a27 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe204e3ef ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe366504b ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf5b6d8b7 ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf8111fad ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xfadde3e1 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xfd9625c9 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x0ffcba36 ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x1a7057c0 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5cef1681 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6803b3eb ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6ecf926e ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x80ddfcc9 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x8b46e54b ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9a4e7c4b ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf0316f8f ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x35794d37 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x14e49799 sis_info133_for_sata +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x4dc55b9e __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x62a170ae __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xb878e784 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xf4eaa1f5 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x05bb9fd9 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0ab4baca bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x13364a76 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1df2a0ba bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x24c3a259 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x36247d5a bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x455864bd bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4b76a79a bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4dfb50f1 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6dfc1048 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x865292e9 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa8fbc36d bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb8775107 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc8434828 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcfff5f7f bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd6bc0dd6 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd9c8496c __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdf0b79d2 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdf3bfd7d bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe9a2e70c bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xee342043 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xef41bea0 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf5ca0244 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfd9efc7b bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x038d563b btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x2d10bb59 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x60fbf55e btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xaef21545 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb94449c3 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xff421d6e btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x17824eca btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x18c14b3c btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1f2c4156 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5d97f3fb btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x67661a8d btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7afd7051 btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7c3a3426 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x86fed0a8 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc0b03ce3 btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcddf4da2 btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xee4069d0 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xff7c8215 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1c5ab4b4 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6a28c20c btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x94e6e3a7 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa1c02602 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb76743da btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb9fbc868 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xcc8cf523 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd67fc42f btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xdac3bf21 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe02ec87e btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf3a47a3b btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x7df9aa38 qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xadbd27e4 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x636c0dff btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x801cba1f h4_recv_buf +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x15aabff3 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x57c6b089 dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x594bea9e dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xdcd0fff0 dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xdf3bf653 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/fsldma 0xcd3b0bce fsl_dma_external_start +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x0395dad1 hsu_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x2d01ca3f hsu_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x9be19602 hsu_dma_irq +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x52303458 vchan_init +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x7463b37a vchan_tx_submit +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x77a30e9c vchan_find_desc +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x94f3143b vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x18363360 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2b5e924b edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8e8f53 edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x346a381e edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3abfbbe1 edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4584f2b1 edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4a9c53a1 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4ef5d4db edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6dcb05b5 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x70d5495a edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x71eab98e edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7fae3d70 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7fce5221 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x85f2037f edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x897e78ec edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8a0eddb8 edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa786c970 edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd4ef1111 edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xdd583ab9 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe60a8117 edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf1b04f2a edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf52222ad find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf7d10d38 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x282b16c0 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4b510288 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa954b2dd fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd3e8a40a fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf1727389 fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xfa5c017d of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x07a1b6ca bgpio_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xe1164ff5 bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x74e1ed50 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xadadee07 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0acc61ef drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x173edb15 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2b81fba3 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2c25e203 of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9b282086 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd881ba7f drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6abfac69 ttm_dma_page_alloc_debugfs +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xc993dc32 ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xd2d0d545 ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0bb6ad83 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1e2c971e hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x25bc426b hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2946f02e hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2a4907f3 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2b6d21aa hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x31cb599b hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x341a3fe5 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3c28087e hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3d125940 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4abecea9 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4bc354d4 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4c23f70f __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5080ae25 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5364a621 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5c33e28d hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6d3665d7 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fb89a03 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x88b3219a hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x92c14700 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9a1795ad hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9a76a18f hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa7bf951c hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa9afaed1 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xae32472c hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc02fd9ba hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc2a20bb7 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc4075473 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xce942f94 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd127fcaf hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd50d1992 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd6370045 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdbb6f2b4 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe58b42b2 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe76d6351 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfb5a00bc hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x624c86f1 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x1a0d2f52 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x22d44574 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x3d7ac226 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x3faa94e6 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x7a84c748 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xcc9b6a25 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2aa8748f hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x49659b1b sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x5f56401f sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc1e5d40b sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd0239846 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe38ec15e sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe4eed22d sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xea8387d9 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xeae17cf4 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x1ae42b9d hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x09f5ba1e hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x12155581 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x27f3569b hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x325a06c3 hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x331c4282 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x38d359ba hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3c9e0306 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x40344f7d hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x41a0706f hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6b701c3d hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6c71f3ce hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x794aa7a4 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc6aa20f2 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc7f351e1 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xddf0c5b6 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdf0437f1 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe1636282 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf4ebf63e hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x309eb2ab adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xdf9dd44f adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x1f782fc6 pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2a21dc79 pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x385506c2 pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x572f7877 pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x5e85e49a pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x6a67d65e pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x81d6fc28 pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x933c8890 pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa5f5bde0 pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xc46aeb0b pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xc5a43fd8 pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xcd7a97b9 pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xdb5e5444 pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xef0a52a1 pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf15fc763 pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x43e2cbad intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x49598c8f intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x94576d72 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x9fc43752 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xbf45f0b3 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xde114da7 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf0bb9919 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x430a1113 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x66c5b4fb stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd6a2f44d stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xeee4c1f2 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf78b300e stm_source_register_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x03c23eb5 i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x41a45b4d i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xd388e164 i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xdcda8073 i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xfbaf82e9 i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x429783c3 i2c_del_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xeca8684b i2c_add_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x33a992f1 i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xbea67fe5 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x148f90b5 bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xe5f5d301 bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xfe66402a bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x11ded283 ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x22c328e9 ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x26576abb ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x3353dcca ad_sd_reset +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x7ef647e5 ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x92e25cc0 ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x9a3622ec ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xa10c04e6 ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd412ecd9 ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe6d49b64 ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x3932e3cf iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x49db116a iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x5f864b18 ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xf20f2e43 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xbcc19761 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xd7fc219d bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xf09935e7 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x015aa2a6 adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0cb253a8 adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x4ac6c89a adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x7e631a05 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x8eb4c593 adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x959865e0 adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xa9325a7b adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xb64e3d68 adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xbe1fb39f adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc9b30782 adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xcdc073ec adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xddb1a98f adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x05496066 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0dd71c6f iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2468a3b5 devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2e507a26 iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3071814b iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3979f725 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3e12248c iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x41d7705f iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x430289bc iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x43a9c38c devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x461a88bb devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4bd3dfd4 devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4d95c7aa iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5d7efc71 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5e7cf9a8 iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x61e9df7f iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x65c95309 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x69b60766 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7ab936e6 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x869e8f1d iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8eb7e3b1 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9557c979 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa249946b iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb34b758d iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb371c95e iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb7c9e491 devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xba0c58ef iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbbcab51c iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcc4927bb iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd172e2b9 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe7dacbc6 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x2602b6ec input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x2a829e93 matrix_keypad_parse_of_params +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x0d499d7f adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x5b7f2829 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xb4ee4438 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xf84c8421 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xb19da883 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xcf837881 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xdccd1512 cyttsp_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x63bb1ab2 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x8187cef9 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x0a84f420 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x220c9479 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x406e88b8 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xae12be97 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x22357bcd wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2a8d8c23 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3bd3c347 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x49247107 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5e1e3dfb wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x626158be wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa6848fee wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xaecb5820 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb137bc8a wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb375457a wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb95cfcac wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdc8568c9 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x0be7bc26 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1da0032a ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x45b12d36 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x471a45aa ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x542a358f ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5f9007ec ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x70a10d82 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xac3bb46d ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xd41ce68c ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x029b10c3 gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x23fa66db gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x26ddd825 gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x2cb32107 gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3dad45fd gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x472a2264 gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4870f623 gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x5a17c3cb gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x83effd11 gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x96148479 gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa626abc5 gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc2375e64 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xdc746d0f gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe102e3b0 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf62cd3d5 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xfc28e016 gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xff1f7a10 gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x273efbfa led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x3ee16e59 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x497c34c3 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x90ef5d6b led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xde936bee led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xec1f9adf led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x18538ff8 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x1cc12e84 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2a852641 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x4208d6dd lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x74f6eaa2 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7632571f lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x78161c64 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x781eec51 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xcdd781d3 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xcfc1bad0 lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf689990b lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x0a0527be wf_register_client +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x3c4529e0 wf_put_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x3e7bea1f wf_register_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x5b2d2a83 wf_register_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x5fd12608 wf_unregister_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x75147afa wf_set_overtemp +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x7b6798ac wf_put_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xa54e7114 wf_get_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xa83d3bd8 wf_unregister_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xb4009da7 wf_get_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xbcace2a5 wf_unregister_client +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xed82a14f wf_clear_overtemp +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x009c53ed __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x0e1b6928 mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x16e8cda6 mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x47b549a3 mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x5a854272 mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x5e16ba04 mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x91c9a956 mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x961adf20 chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x9d5e4964 mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc190b228 mcb_bus_get +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc8640d7d mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe0dded7b mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe486a57a mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x021811cf __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0f0677b8 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x10e6a889 __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1154f7a1 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15aa8e40 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x174c2a29 __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2205bcf9 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3fc7cb7f __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x469f38de __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4ba51ecf __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5b2a89c7 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d950f2a __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5e21030c __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5ed04550 __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6eef9654 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x74ab7b0f __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x84efb763 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8fe32879 __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x91f02667 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x93f7fc02 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa1de5277 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa81bf581 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7d964de __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbbace2cd __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc6673631 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8a2f711 __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe3de2ba2 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe902838d __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec919105 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeea27f46 __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfad1ec73 __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0e9ee07a dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1c0f6b6b dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x830ba6ea dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8e9384d0 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa279041d dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc2f1d9f9 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xcab04bef dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe0e509d0 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfefaccc7 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x36021fa0 dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aba7f5e dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9310ba06 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9c256008 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa1d2413a dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa448e19f dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xafbda3f3 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcbb1bae2 dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x38aeb423 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x785c08e3 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xad07e161 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xaef87e99 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xaf1247c0 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xb342a9aa dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xedf16f0b dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x21bf81b1 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x758b5e8d dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4430764e dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x45ab972a dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4edd6e1c dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x50c09dff dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5651a14b dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5fb7dd15 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x64cbf6a4 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa68e1f06 dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf5de93d6 dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfad9d53a dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfc62ef4e dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x17c36f29 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x346f8903 dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42dbdfc3 dm_tm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49b35849 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x55b4bd4d dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x827a42f4 dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9f624559 dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xafeda29f dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd29923fb dm_tm_shadow_block +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf375d009 dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf5455120 dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x3981e906 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x419beec8 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x53b59811 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6ea46f07 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x71cc4e9b saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xaf0ecefa saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xbdde5e1c saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xbe995f90 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc468e619 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd6743a27 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0615f76a saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0cceb3dc saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x3fc65296 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x5d816742 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x8d0da743 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xb6027d23 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xe9f1632f saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x088d4bba smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x09054a20 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0914dd4d smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x15beeb87 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21359ad7 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x293a1a13 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2d81af2a smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3f015dec smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4a261bc7 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5b624d5e sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5c841804 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7f750ee7 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8ac240d3 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9d9252d9 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa01b3c9c smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xad9966e1 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf96827d2 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x3ce9bcd3 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xe305882f cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xb74138ac tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x03759d48 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0x090bb403 media_entity_create_link +EXPORT_SYMBOL_GPL drivers/media/media 0x0b8149c9 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0x2ec03422 media_entity_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0x3016fbe6 media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0x3ca8c11a media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0x4026038c media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0x4a98e800 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x50ab2a38 media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0x57b43716 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0x634233fd media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0x7efab900 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x806f4e09 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x8503e80b media_entity_init +EXPORT_SYMBOL_GPL drivers/media/media 0x91627061 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0xd5fd0549 media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0xe14619be media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0xf9def49a media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x3155aac1 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x05dcb8b0 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x208898b0 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2bd6f8ed mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2e380bba mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x38d34144 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4a5ca1bd mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4db5e157 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x55758e24 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6456e1e0 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7180c158 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x86972681 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8853a3a5 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x900d27e1 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x900d653e mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9b4c6ea6 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb5462efb mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbcaefb6c mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd0168b76 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd28d6313 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0293c47d saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x04ce41a5 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x06c0c648 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1b0dd53d saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1ca44dc9 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x26eaae4c saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2879c2fa saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3cafba7a saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4a6dd705 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x58cb261a saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5ccc1d44 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7e505b19 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa4889028 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xabdc408e saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xba802a03 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc7beb48a saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc8b498f7 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xddb9029e saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe2d2e99b saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x748eed9a ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x89a198e0 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x8ea6ff02 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb205ebb0 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xcd037760 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xe3b45e66 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xef9cb2f6 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0b2585ce xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x220bb2b8 xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x31e41111 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x417c37ce xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x490bd11c xvip_get_format_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x4b277b88 xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x57c1e9ea xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x90bb10b4 xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xa23f3a30 xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x8dc87ff2 xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x9b73b6be radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xc3403957 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x03dc6149 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0c1c970b ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1547aa5a ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2fe008b4 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x31789aad rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3530448b rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x56eabcd1 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6159adcf rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x888f9776 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9ed51e5c rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa53fde13 rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa8c3d59a rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa934df42 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb75ce1db ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb875c9ee ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc2fc8427 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc60e2e9e rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe7e88e0d rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfd680863 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xecc338fa mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xe2cf25fc microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x8c05aec8 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xf8617bd4 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x4b6ba360 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0xe78c03ad tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x661f8fec tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x6d7bfffc tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xc2d92aa9 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x62244bd0 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x6571d168 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x259a3a60 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x8baae18e tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xaee7b303 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x20f5e304 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3a3da25a cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x54f6b115 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x56d1a5e4 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x57607545 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x62c1b95e cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6d11d6d8 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7a690ab6 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8df120ff cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9fe078eb cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa4723283 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbffce30f cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd6afd8a4 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xdfaeb7a0 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe013747e cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe1f4b187 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe5adda3a cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf41cf03b is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf92844e7 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfb6378c1 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x20a0e4f0 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x26815f77 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x06eef88e em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x070fb0f6 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0e2a7cfe em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2bd69974 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3789846c em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x48b9eeb0 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x54dadd8f em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x85eae5a7 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8f1b32b5 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x97eb69d9 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcaee96e0 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcc2d99f2 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd256e4d em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd7995f11 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdc4239b8 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdf748bbd em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xef7040ce em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf5421c64 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x466195fb tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x5b1f653f tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xa7ac3d88 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xc48c3b04 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x2a196071 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x96e05807 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xae5a69ed v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xceccf908 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xced02ca6 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xd848a9e1 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08982d59 v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x6fed6d7c v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xdf4ab7ee v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1635069e v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x18772c33 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1a38f77a v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1f5f8702 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x330be69c v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x42f1cc5c v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x438e0cf8 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x43f5f239 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x48ad3035 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5fa4e177 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x634fc28f v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6c569816 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x727e649d v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7bea0d8d v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7e1b5ddc v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7e67042e v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x801229dd v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8a486ebc v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8b34bbf4 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9a61d54f v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaa1e5cd3 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaec23b00 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbbe4808b v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd5d5ed0c v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd90a1811 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xec4d7fc5 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf33dfb88 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x19bc35bd videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1f8687a5 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x22d14bbd videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x29903cb3 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2b584bee videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3003bbc8 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x301a700c videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x32375bf9 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x33d31e08 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x36410f86 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x366696d8 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4eb152a3 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x66744405 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x68ce5259 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x70eb7d59 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7529bb47 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8f8b0270 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x913e1e44 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa2ae63ae videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xab310580 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc568a398 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc8c415e2 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcac7f6a9 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xee8269f7 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x6a5896ff videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x7faafc22 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x8c17b0fe videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xc083a363 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x1d0ec2bb videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x9537a01f videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xe826e1d6 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x08c11da4 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x0cd80bc4 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x176ae7a0 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2aefb2d7 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2f6acefc vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x3d2d6de9 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x46df5627 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6a827e08 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6b03721f vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x78c7b7b5 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x88f325d3 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb340f3b9 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb6a462c7 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb894f928 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xca58568f vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xcc3b7d01 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd8bfffb4 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf1014b01 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x82bba0b5 vb2_dma_contig_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x97b2091a vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x4b1c9475 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd30ec30f vb2_dma_sg_cleanup_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xf32fa811 vb2_dma_sg_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0x8d31d987 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x08e62b47 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x11f83694 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1cecfc15 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1d142dc1 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1fe09b63 vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x28c9927a vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x375bc931 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4b972729 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x540cc6c4 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5dbba1bd vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x682ebc72 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8c39451f vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9098f091 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x939e39db vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa1b37c08 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa2f83959 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb208db3b vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbc657c59 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbf388953 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbfb7dd29 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc0d9454b vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xcde983eb vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xceb92bc8 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd162a843 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdb866d1b vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xde8ead27 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe64e4d97 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xeb845dbc vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf1512197 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf327e6b5 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xfa1b512c vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xfb1b96a1 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x59f9e31a vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0bbcc7a4 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0ea37204 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0f34e968 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x133adfc4 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x170884bb v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x18770cb1 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1de59c61 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1ef3a428 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x205dabf3 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x22cb44d6 v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x22e6cc24 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x28f9f67a v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ab9d732 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x39ddad8e v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x404f8418 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e73fa8d __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x57519190 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5e34438d v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x646ee8b2 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x688306c5 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74a017c5 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x760e6e35 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7bfda7d4 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7d50337b v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7ed41cc8 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8b0f3cdb v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x956070e4 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9715440c v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9d3ae16f v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaca2544a __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaf9bd875 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbf3febf1 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6429d8b __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdc1cf320 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf3ef3936 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf44bb709 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfcb947ae v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x220341a8 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x457ea84d pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x9acc7d28 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x1dd0204a da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x31f992a3 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x8ebf33d3 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x8f47a24b da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb9fc2cd3 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xc9a375f0 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xe90fc10f da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x2d27769e kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x3377ceac kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x3d441a27 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x3ddc0f5c kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x564a8b03 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x6f5d93af kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xa0533a70 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd3797932 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x279faa04 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x4a29a693 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x77b8bca0 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x1bb45f33 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x1c87f439 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x24e8e2e2 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x316c8f15 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x9a7b4f86 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xd2378d18 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xd8a8ee12 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x7b458a8d lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x7b468fc9 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xff9e7729 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x83f42246 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x8c0cbb83 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x91fbd72e mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc34e6966 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc7d8834e mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xce7690fa mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x008281e7 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x118e7d3c pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2d5b10fd pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x858bc3ac pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x913a13b7 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xaab2f0fa pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb333811b pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc9c7cb64 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd699f7b8 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd86cb838 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xfeb522b6 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xdf6e623c pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xe6358e0e pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x2c4c9d5a pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x37b01892 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x3a241c3a pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x9b18ae8e pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xe5ea6fc8 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0457db71 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x1a445ea4 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x29140546 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2afdcdbd rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x383ef790 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3a1f59f3 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x55f6984a rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x567bb044 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5f3e1498 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x6665d3e6 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7f9dbfb0 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x91e32cf4 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x95fc31cb rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9bc11bef rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa99870b5 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb3285778 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb4675057 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb4d43ab5 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb7274740 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb79daaaf rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc845d1c2 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd0d24f88 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd1abb23c rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xdc784502 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x1b11a490 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x23c77071 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x4defa71a rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x68e5d88f rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x7d754e76 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x8cb98e65 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x9c1f319d rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xa1648394 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xa2863783 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xad6602d4 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xcaa4c757 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xea2d0762 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xffd18c01 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x15323928 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1b4da9a0 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x25a4aa24 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x35fe1661 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3ba21dd8 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3eebe93f si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x55a17df6 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5bd0c19e si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5ce86750 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6147c9d3 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6b9223ad si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6fc17aab si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x72e8b102 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x72ed7e70 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x77036b53 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7f5a6cb6 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x859bbb12 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x88387888 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8b797db2 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9e06627c si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa2ff91a4 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa3eb3fd0 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa771fed1 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xae041bb8 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xba8ef127 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc8426d42 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcf1aea45 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd1d2f6bc si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdbf5b7b8 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe338e82e si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf1bb441a si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfa799215 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfb999387 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xff7c2a70 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x10953dc5 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x3054025e sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x8c5b2d1f sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x8d69a2f3 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xc55004b5 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x287953f0 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x3fc5d72d am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x5a47b671 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x5f6b195d am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x691663c2 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x8a8462bb tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x94fb98f9 tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xe87bcd64 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xe5608b13 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x035ffe01 bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x408388d7 bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x7fbc1812 bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xe980f04f bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x3c20b33e cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xba0fbe33 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xd6912828 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xf2abc71a cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x0dbd5fdb enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x17cdf005 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x5862c326 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x6d2fae89 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x8b8d0691 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xae78e74b enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xc437977e enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xc8c3509c enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x798d984a lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9ab9b3f1 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9fb79dd3 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe33ee6f9 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe4338706 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe708fc20 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xee8e3f91 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf51f3162 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x95ea0797 st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xbe92fb75 st_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x00b24afa sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x52e0666b sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x560da93d sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x65c96f48 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x660c74d2 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x69a88225 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6ccef986 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7c9cc60e sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9aa816ad sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xab8bf1ab sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd55be7ee sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe11afa80 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe5e7009d sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe97c364d sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0754838d sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x08ece0ae sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x4b3ca8c4 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x7c693fe0 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8795d1a9 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb3b2cfe9 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xbe46030f sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc3c05768 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf68b751b sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x2f331918 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xd22d3c8e cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xed041966 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x3e4061fc cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xb3ebe5aa cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xcdb9ae7a cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x5c7ec8fd cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x17584e54 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x1aa17fcd cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x74fb096b cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x099afa85 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x17b5a517 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1ec5f6bb mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1f463061 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2648a25c mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x307419a0 mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3d4ecb5b register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3f31debd mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4c3be366 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50d48428 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5579afdb mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5f02640f mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x76483024 register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8434520f mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8aa4e7ac mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9e811a5d mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9fac6d31 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa1d2075a mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa5591ad8 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa6cda7cd mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa9455874 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xab3e69a1 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaf60f73c mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb12859cc get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb260a2fb get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb7c1ed1e put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc0be4e84 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc3ff68c0 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc8cdbf98 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcb171d90 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xceae5ec3 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd0889a02 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd3fca307 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xecfd5371 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf1ad3efd mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf8280431 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfad23ebb mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfb1f0269 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfdc652a8 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfe17ba96 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfe597eb9 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xff2c0ba2 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x31968209 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x94c9f68d del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa06116f1 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa6e3d927 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xd91d32a0 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x10921b0c nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x672a728e nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x66159740 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x12bd3b9f onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xf68dd0fa onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xd0be4291 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x009dedbc ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x142968b4 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x193079ba ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3ffd058d ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cdbef7d ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x709abef0 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7a4b5acf ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x86f8ecf8 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x95315a25 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb506e0ae ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd2293801 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe78ee385 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe8d7f991 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf40ae644 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x5fb4e157 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xc153538b devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x110f5e75 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1c6328ea c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x2340128a free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x9abf4ad4 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xb497e8c2 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xfe0c1ed2 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x003f20eb can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x00ab590a unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x07236d09 alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x10ec608e safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x19f5f952 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x28c1e244 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5ec5e876 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7e93dab1 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x824ccdf0 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9779292e alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9e9da08b can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb0c3a27b register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc74b6e7e can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc78b7a25 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xd35f5fc2 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xdcacb288 devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xdd431267 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xee890b46 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x1b104176 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x21b672ba free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x9a4d1262 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xa907f330 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x0f88bec3 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49b044ac alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x500860b1 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x545bf505 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x1975b133 arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xeb11d3e1 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00e2d093 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x018857d0 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x043381a2 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04476327 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d0aedda mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d86042d mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x141c7292 mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1472edbe mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14dfe2f8 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16eb778e mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1708a8ec mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a14e601 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a1928dc mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c89ad4b mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e79d42b mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1fe3c328 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25fc1d58 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2624506b mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x272d76cd mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x288be4bd mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a463d39 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a893508 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d1b3b12 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2db5c7f2 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x309b7ac3 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37d239da mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3861d266 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a906625 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a9a40ac mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ea727df mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f81eadc mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4022ba57 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x418a05b2 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x456f7b6d mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45835332 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4625d16c mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46d8969f mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47e5f3ed mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48f4b45f mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48fa8491 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4bd47d5c mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4da4f8c5 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4edb2d99 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4fa18a0b mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52275b35 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52a81102 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x571faa8a mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57571f28 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e815208 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ea74499 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x615e9ba4 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6334f949 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x668a1228 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66b27d0d mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e6281e2 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x717deecc mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x773c12be mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77cd9c36 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79166322 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x804cdf30 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80ee0344 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x814d02a9 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8169cd52 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x817ae331 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81a59e98 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81c77830 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83f077c5 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84eed07a mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8740dfbf mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x884a4d84 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f083487 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x943b26d2 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x951619ba __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x966109d9 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9739979c mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97d0d59c mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9bc5cbf1 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c1d8a1f mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c984560 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0e838a7 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa20df466 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa723000e mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7b74eca mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa907b8ba mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9a65f85 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa4ed082 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabf1a9ff mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb49089ec mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6afda9a mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb73bedf4 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb93f6c2e mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba81731e mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba8523f9 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbda94563 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf44bee8 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc00aed45 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc05cb59e mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0e2ec7b mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4bc1a5d mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5038f9e mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc65aea11 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb487cd3 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcec7f8fc mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf5a6a78 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf8a292a mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4a5207d mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd549b571 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd61de741 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6308253 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd807b0e9 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc0613da mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd19b3e3 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde5b80e8 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe02e3c6a mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe33537ab mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe554fe56 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe63f36ef mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8431d5e mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeba3035a mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed0c1349 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee88e0a3 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8665a65 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf895c851 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe92efb8 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04cf2029 mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04f6e833 mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b924c17 mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f085d77 mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x222c006f mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b0ddb86 mlx5_set_port_proto +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33aad64c mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x348fb328 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3755930c mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d484a11 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e8091a6 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4910aca4 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c184da0 mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x516ab7b3 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59af0986 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c818bb3 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c9f2070 mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5de063c1 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60e29885 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64338adb mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x684adb6f mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72cbaace mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d1bab8a mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e799689 mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x801e6198 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84f9d69d mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c37d434 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9492e245 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a2d1740 mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9dc9a809 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8679247 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa96cb11a mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb125fb57 mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1a6f0cb mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb284c38e mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3c7a74f mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7eba342 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca597b33 mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce162f4a mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd91204c8 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda86c110 mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdda29bba mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf76b1c0 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe213d969 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe93740a3 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x5e28947e regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x9674111a devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xac144314 regmap_encx24j600_spi_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x21fe6369 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x5aafc5bd stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x8d84ae2f stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xbd1f5dc5 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x9c3b48ed stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xbd753140 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xd41c28c9 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xef4a4633 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x0211cf5e cpsw_ale_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x1ad32216 cpsw_ale_control_get +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x2187261b cpsw_ale_control_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x29adbb4e cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x2bae1acb cpsw_ale_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x3bfe8fd5 cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x47c7eb68 cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x4dc94564 cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x4f66a96f cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x57e7fbaf cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x5b01d0ee cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x6ec26774 cpsw_ale_dump +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xa04dcf72 cpsw_ale_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xad261baf cpsw_ale_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xcebf7528 cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL drivers/net/geneve 0x82b63584 geneve_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/geneve 0xab438f03 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x638b1630 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x73670df0 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xa6581720 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xbd6a7614 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvtap 0x8529b1df macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x22e24aa3 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x30490685 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6cc4d94c bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x816e2b99 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x84999826 bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x84eeaaaa bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x903a4714 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xaa6f61c6 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb3b29605 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb96151c0 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x9a4b92af mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x04056567 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x5bc911ba usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xa62c04f9 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xcbee9415 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x45d19d66 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x463af3da cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x82e75b0b cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9400691e cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xaf4977bf cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc47ad688 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd04d34e3 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xdd71728e cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xea74b7ab cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x84ba0286 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xae52623d rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xdb4e75b1 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xdf765943 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xe578fb90 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xfc8473f8 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0190cfeb usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x07822423 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x081a8fee usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x176083ce usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1a372238 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x34ff1b16 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x351fba4f usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x35cfea86 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4242f68c usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x43614d9e usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x46163c04 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x519cb210 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5b7b85a2 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6261e972 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x681bbed3 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6d6102ce usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x79b2d08b usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7a0abf83 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7f379b86 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8c819a24 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9b996aa9 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa77bd173 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb01275e2 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbab52d77 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbc7facbf usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd157c858 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd61214ea usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe7a38d0b usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xeab859ce usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf38da2bb usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf7147a0e usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xffd76076 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xbbd15260 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xe2e6c207 vxlan_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x03f612b5 i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x291fc7bc i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x590fc7cf i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5a36e009 i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5e1e4187 i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x60f02c9f i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x65569711 i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x6805cee4 i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x72cb15d6 i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x770e12ae i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x7d59f1c4 i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x931bdbc1 i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x9c01d095 i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb8973456 i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd2dd6f75 i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xdee4c0cf i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x127591aa cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x17c9f397 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xd1d2b4b7 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xf50a0819 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0xf7f94481 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x09ba37bb il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x3775a9be il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x52a6b718 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x9e7cf822 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xdd96ebf7 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x002b2e74 iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0d556623 iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0f48dcb7 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x11df2b1a iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x12207cf9 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x398355b3 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3e5c7bba __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x468c510c __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4dec4790 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x539184c1 iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5ba53608 iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x68b753a8 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x71391630 iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7810a97f iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8649f7be iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x89344a86 iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8e5a12b8 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x92a41468 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x96598709 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9bd11e7f iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xaf97cbed iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xba0b0eaa iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc67c31ed iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc90228ee iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc98b5cf7 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xcc2aa384 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe0d3442b iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xea9f75b8 iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf4cecf72 iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf5aea4a7 iwl_notification_wait_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf65c0c2a iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x10c03173 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x1d58776f lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x27d07f90 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x41c778f7 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x4e359abc lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x56a20528 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5abe4836 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x6b97ba0d lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x6f173a5d lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x770db47c lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x905b24ed lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa315cea3 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa68f39d1 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xabe6cd15 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xd0787fe8 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xd7dbe077 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x13b9ab1c lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x316b36ba lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x59be9e6e lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x67eac08f __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x6a4b4493 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xa722ddee lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xda8d0c2c lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xdc62e9f8 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x00dfd782 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x0384b9c7 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x0a28e884 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x13c6a1d3 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x161ed56d mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2528329f mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x253b312d mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2ca065b8 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x30a73df0 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x3d9f1350 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x464ac54a mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x494793f3 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x4d6e4ec2 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x515e954f mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x660d6cd2 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x6c3f925a mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8a6b14ba _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x958a1bce mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc8a58bc0 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x0155f793 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x09e13398 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x0fedd0d4 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x4cfae3f0 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x82688b94 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x870d3576 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x9718d154 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xc205ea40 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xcdaf8b3b p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0f919311 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1b2b54e1 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x36fea445 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x93bf2248 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0261a4b0 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x049e2b8f rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0c026fe6 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1bbb0423 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1e916001 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x485d0665 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5203575d rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5c76c7ee rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6ce19bd4 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6f4bcd42 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7ba8bfaa rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7deaabf9 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa7d21984 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xac32ad18 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xac51c94d rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb446ef6a rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb6ef8a56 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd0480604 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd2819787 rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd2e3622c rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd62ac2b2 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd8b5141f rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe18206d3 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xeb5011a0 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xef3befd9 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf5b2effe rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf929a364 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x08eb3d55 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d0b6636 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1385e59c rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e2ade9d rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x31287a7f rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3b62608d rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4776ae5f rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x49dbf701 rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x49fa7933 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4bb596cc rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4c5219fc rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4db407ba rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5caac1bf rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6103ab2c rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b4de810 rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x726a90d4 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x735d85b6 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x780638cd rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8016114a rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8874c27a rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa6e54002 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x28a43055 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x416f0178 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x67a8c5bb rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x711ac3cc rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1ae80bf9 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2b079c44 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3096db35 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x393d716e rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3ae0b7b0 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x41078b43 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4fbcba04 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x54ca3e76 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x644e1a86 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x664fff03 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6f122e05 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6f8a5678 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x70081d9b rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7046150c rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x714f0247 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x750d65c0 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x760da2c6 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x765a5bdc rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7bc70415 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x88f20486 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8cb5a9ee rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x91b76cc1 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa2040513 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa6dd1fce rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb2fecf8d rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbd50fe99 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc3da197c rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc9e4591c rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcf7f6a98 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd1c085a6 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd590568a rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xdaa4853a rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xdb1d0da0 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe1f2f392 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe2b98698 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe5ad00b7 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe80ced74 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfe76eefd rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x114e91a9 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x3a271e9a rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x482c5b67 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x60c95831 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x6b18f383 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x767a7e12 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xa1e7df06 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xb7c3ee4d rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xbbb11648 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xd864a4b3 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xebc43568 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xf8f08bf1 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xfed7a7d6 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x065829a3 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x078f3bfa rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0ed306bb rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1390a74b rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1424ac33 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x14e91e7c rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1a644413 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x32b78e1d rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3e725fcf rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x411c5c63 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x45e37271 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4d051b96 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x579d84eb rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x59beb059 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5d2a7e65 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5fec05ce rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6474309b rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x67acbc5b rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x71ac1d0c rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x73689248 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7c22a918 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x82dea998 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x87ed0a2a rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x91af6734 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9634ecf7 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x989ae20f rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9ab5f987 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa86908e2 rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa92028b4 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xafe4ab3d rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb7e00542 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xba896e1a rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbd9de88b rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc5ff440f rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc78cd0c3 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc8eab285 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xca187c4b rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd1ad4239 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd4c72b54 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xda3d2dfe rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdd0961e9 rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe057c7d9 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe31e0cec rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xefa00f48 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf008887c rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfc9d8e11 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x35860960 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x56ede7ec rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x80c64c29 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x82f42a1d rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xc60945dd rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x21e9c2b1 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x3cc006e0 rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x63a010c7 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xee4dfc8f rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1f8f32b1 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x282826f9 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2ce9c58c rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x40975891 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x4f6c23a6 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x5dbb84eb rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x641fd697 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x68ca38f3 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x6bdf510b rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x78b27786 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x837d3b4e rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb7b85806 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe25f758b rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe41bc54b rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xfa74d1dc rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xfcd8ab7b rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x3c34760f wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x919f6424 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xb02b6d58 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x00c83845 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0b337e9e wl1271_ps_elp_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x15236bf2 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x184756a2 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x18bc45e9 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1a1a4850 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x21a5ec3c wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x29890233 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x29963b17 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x30de67e8 wl1271_ps_elp_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3368c2e1 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3396680b wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x377ac944 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x397889bb wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3a78449b wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3f4febe4 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x42904731 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4925682b wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4ad62ef4 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4f270b55 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4fbd8226 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x58a56fd2 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x58ea91f0 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x60fbf77b wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x70df75e7 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x880d5d09 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8d4a293c wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91543d5d wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x99beba0a wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9c99327e wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xac0180df wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xae65fa0c wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaedfb35e wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb0547fac wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb805a0fa wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xba297fb0 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbcfcc142 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc3ac9501 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcbef4936 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcc7a3c96 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd67cb7b0 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe915f2b7 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf51df07f wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf96ed9c3 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfc5ec9b8 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xa2316e60 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xb91fbdc9 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xc141a305 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xd5322f19 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x1d02afa8 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x47737020 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x79b1c81c st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x832fb787 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc11e791e st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xe9b2cf9c st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf60b6312 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xfc78b4b6 st_nci_remove +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x4ecea1c5 ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x7918bea1 ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd5a6aaca ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x052d33cc devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x224f51bf nvmem_device_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x2ae598be of_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3866e217 nvmem_device_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3c27749f devm_nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xab8632b6 nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xbc2e750d nvmem_register +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc4200e52 devm_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc64ddf0f nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc697b0f7 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xfd5db878 of_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x138cc1f3 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x3f7eafcc pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x44d3fa88 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x45c1a59d mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x469c68ae mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x4e182691 mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x5671abda mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xb7e1c97b mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x0c405992 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x17cf1b8d wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x3ac8c703 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa68bead0 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa8d1bf39 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xc5fe5b64 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x6ef7febf wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x025f2196 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0a0c39cc cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0e5ba929 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0ed21eec cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0f3ecbae cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x10687d21 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1e8378f0 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1f664eae cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2f9070e0 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x308b2ab5 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a02a07b cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4b165c6b cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4fff5872 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x516aea2a cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x54019cb7 cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5ce2e197 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5f35efbf cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x652a45b0 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x65823be9 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6772a07c cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6e11a8a5 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x72a399e3 cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x856fd79a cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8fb62b4e cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x97dce4ce cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa2a5dd46 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa33abee7 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb22be664 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb4d1180b cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbac73d99 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbfdeee64 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcb6918ab cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd1bb4dfe cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd1bdde25 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd2eccbfa cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd5319b91 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd7653062 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xda06c11d cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdae7234c cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdfc37f80 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe79fee65 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xebfba9b9 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xed5dcc2a cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf2ff935a cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf92baaa9 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf9881139 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x013a2926 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x119b6212 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x15b5a541 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1e9412f3 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x214a8a3a fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x32fe5821 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5925593e fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x59de611e fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x88ee143d fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8a76060f fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x90e10086 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x94e3bcd4 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa226dbb5 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc87bedd8 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf38a6552 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf57b31cd fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x03e1ebd4 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0b8ed3fa iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x21fe993d iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x30c479c5 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x47947f85 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x5aad1552 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0c103e2d iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1d007170 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1e008e2a iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x20fb9048 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x26ebc96c iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2b829d40 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2d7a83a0 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2f6ac7be iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2fb48d59 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x32a3e0b3 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bdc273f iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3e8306c2 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3f85bb89 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x43e5c537 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5c586853 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x62c5a89b iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x63c327a5 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x69b6df4a iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x69c18e31 iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6d04d1d7 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6f72453e iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7a561b03 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7f71872d iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7f9e1a6d iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fa416d8 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x84f49c0e iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x861546bf iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8c7140fd iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d23dbdd iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9dbeecfa iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa2fe8992 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb71253e1 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc3ea3d8b iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc57d896b iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd9475af5 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xda5dcba5 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdcfecb9c iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe9aee1f2 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeffe7a24 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf865efdf iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfaa66728 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfd9259ff iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0863d0df iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1d8bda64 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1ecdffa2 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x20e57dc3 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x30d934ff iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x341a3152 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3b012de9 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4b31d0cc iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4ed0e2c5 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x62e6996d iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x65c06c36 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9051d016 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x90a8a09e iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x97979aa3 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb01065d8 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe0299ecf iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf52d52cb iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x083d2efb sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x19651f11 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1c4056c7 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1d697ab1 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x240bcac9 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x27fda1c7 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2fe1e87a sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3d7b1cd1 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x484b1ec6 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x58f1c561 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x597f0a45 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5dc217af sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6c9b363b sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7a8d1f6b sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9a90aef9 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa1cede7c sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa84da6a7 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb1394ee5 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb644c0ed sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb73ffc32 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd2c7e04d sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe13230ad sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe4a15564 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf79117b1 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x096a5432 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x102fc16a iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1098167d iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x137001d8 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x14106214 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x197c4290 iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x21dd6a2f iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2205780d iscsi_is_flashnode_conn_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2bb4d7b2 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x39a643eb iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3c3e3c03 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3db59509 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3e90579b iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x48f20bef iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x491192f1 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5bbb25e7 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6316948a iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6ad7b52b iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6c7282cf iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6f450064 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6fb3970a iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x731bcf58 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x80c09ed6 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x86674966 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x890ae84e iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8dc2adeb iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x952ddf29 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x970ec0d9 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xae771d49 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb47b2e70 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb8cfe06e iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd850abd5 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdf8f9324 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe3101b36 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe9517d3b iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xed18d2fb iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xef6489dd iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xefab6644 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf6153420 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf95f4589 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x2ebecbb3 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x68910073 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x8a2bff4e sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd921090b sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x78da95ba spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1bdc5f30 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x6d7ba716 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x70ad1e8d srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7ec6c81a srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xe7fe0434 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf5b89383 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x0f206fee ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x21a34ddb ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x2a77af55 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x6dcd7366 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x8d0d6c80 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xa5ac4a8c ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xe045a409 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x15ec959b ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x547793ef ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x7f1b5807 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x94794802 ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xbcd4fc96 ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xe2a66f72 ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xed1f5236 ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x06131284 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x299a06f7 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x3bfaea8c spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x99307a16 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xb9ac7a24 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x38acb076 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x73e0fb6f dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x9d4c0eeb dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xb2fd8178 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x14529dc0 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1ced0cdd spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2328bf18 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2c34be5c spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3af2f00b __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x41ff0eeb spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x43b98f65 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x61bb594e spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x70daacaf spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7dcd0bab spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8aeced3e spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa5fa522c spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbb37f77c spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc4743341 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc9bbfb17 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd9e9d38c spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdc4ad777 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xeec3c5ae spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xe5662eb2 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0bd8d456 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x163ff506 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1a113d3c comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2175269f comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x26d82243 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x33d553b5 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x34f9923d comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4bc3ff27 comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x542259aa comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5b96ab66 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5df6595b __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x62a7ee1d comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6b64686d comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x778c932a comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x90396c51 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x967947b0 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa169ec74 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xaab1f013 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb08a3422 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb5156fc9 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc06957b4 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc0cf406b comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc5c1361d comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc5d4cd76 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcb198116 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcd548de5 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd50d5db1 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdee84170 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe0887ba4 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe4e3e4bf comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe573334e comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xeab45866 comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf002b70f comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf457d897 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfc1ad239 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x0c22a8d5 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x143a4a0b comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x63280bc5 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x7e3c3ab2 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x89ef91cf comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x9bf33be3 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x9e73e9c1 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xf3eaf0ed comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x4040bf09 comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x6b317c23 comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x6b3def7a comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x7e3ad881 comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xc6899f50 comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xe0f2e588 comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xef2e93b7 comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x08eb0418 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x39d87d98 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x8318786f comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xba37e92e comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xf19607fc comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xfc8bcd72 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0xd420e6a8 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x2b93a526 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xe016d3ad amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x9bbe80c7 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x0842a2ae comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x39164cfb comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x451ca320 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x4a6d045c comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x4ad368d4 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x5e91a058 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x5f6a4b47 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6a2b574e comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x71102411 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x85ec716b comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xbe933542 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xc392cf5e comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xf89762fc comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x1ba81781 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xb087be64 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xefb8d949 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x0d68fcd9 comedi_isadma_poll +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x6815a033 comedi_isadma_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa3d01a85 comedi_isadma_program +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa7ebb8a3 comedi_isadma_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xfb5d45e5 comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x1d00616e das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x042aaca8 mite_bytes_read_from_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x19e6c674 mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x1f396341 mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x20c1e780 mite_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x27d8cc62 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2e982201 mite_bytes_read_from_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2ebf3c04 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x51df2c6f mite_sync_output_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6093b785 mite_setup2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6b6f2fc8 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x83471f87 mite_sync_input_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x91990d42 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9239615b mite_get_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb59d4a01 mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xbbd785b1 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc2f3a867 mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xcce0a96e mite_bytes_written_to_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xcd983b74 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe65227c7 mite_bytes_written_to_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xed11c739 mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf33d5d49 mite_dma_tcr +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x306f35cd labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x387c1f12 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x3db59a08 labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x6534a6fa labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x7db1f933 labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x93a0ea3a labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xbfdbc481 labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x21510648 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x5d58498e ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x6015ce5a ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x82113a20 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x9f436766 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xac5dbe9a ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xc9b24756 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xee20ac76 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x0b7ec172 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x3c653022 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x68bc1db8 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x77038f8b ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x95dca91a ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xc9ff8566 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x21981886 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x31e8035b comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x498e0b61 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x81318edd comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x9a12196a comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xcd80359b comedi_close +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xe04a17bf comedi_open +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x2b840e7e most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x2cea6b62 most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x3d63111f most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x479d5508 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x492654d6 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x610d1411 most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xaa2c5240 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xca6a4693 most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xd4bc9bd2 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xf7032ba5 most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xfa938b27 most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xff610137 most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0ef1d765 speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x10772273 synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x168fdcce spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x180910f0 spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2c873cb6 synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x535df281 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x782ebb69 spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8b4a01fc spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb35aaab9 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd856e159 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xdbadf743 spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xdbd2ad0e spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x597bf437 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x8ea31ff3 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xa6f3f389 uio_event_notify +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x82122271 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xdce4a84c usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x45b9e738 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xe9de0cc8 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x68a4bfcb imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xa2241237 imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xd089a7af imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x4bf39046 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x66cf0b7a ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xa85809ae ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xbb28b754 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xdd969127 ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xe54fcd4a ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x007b3278 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x035c2eea gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1103db5b gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2a6f7264 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2fd2458a gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2ff27172 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x41de6f56 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x48094682 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x48d50d1c gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6e17825a gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x792e8ce8 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xba2bc9b3 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd799aa68 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd930761a gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xee50d015 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89263c4e gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc2bfa7a1 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x283763fc ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xe53a9759 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xf9bdc1e7 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x17253077 fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1a3dec1e fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x23f1a6f3 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x27d5e54e fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2ad0aeb3 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2b8cad3f fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d96ee9e fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x46e34ca6 fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5255b366 fsg_common_create_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6ce75bb9 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x75466f8c fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xaade0dbe fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xafccdc83 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc0ab5cdf fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc74c538c fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe7dbea58 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe98571a1 fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0abc3038 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0b93aaf1 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x111d5c6b rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x213ae5db rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x374cd28c rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x380cbbd8 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x429a9129 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5c501bf7 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6f9e55c6 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x707eae82 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x76481478 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa74078fc rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd232dd14 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe6bc077e rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfc49db17 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x03cc3925 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x14cd96ca usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x16ca28e5 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x18d52f77 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1d8688af usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x27a417b2 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2ea0a36c usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3e61d2b8 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5d310bc0 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x649c68d0 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6cdc98c5 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6ed31789 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x741245ea usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7dfd2837 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x89ec6e87 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9416f5d2 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa103cb11 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa3d7c243 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb37f0eea usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb42426b6 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb4bc7115 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xca096464 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcc3c61a1 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd0599bf0 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xda9a97fd unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdca51965 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xeffe66a9 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf468452b usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfc9b7a7c usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfdc0815c usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0c63ede3 usb_udc_attach_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1453fef2 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x480df37e usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4edb7a7e usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x53010148 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x61ec812d usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x81c36fb8 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8e404e87 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa3153ef3 usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4744dba usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaa4d2581 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb17c7592 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb8f3557a usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd2b7d7ab usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x119be410 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x4eb39b92 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x1bdacbbe usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2a3d2987 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5811b9e1 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5b222ecd usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x849c9841 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x88214d5e usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x9eb21f70 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd4df1224 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xddbf32d8 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x880993d0 musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xd858a7bb isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x5a0aa345 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0998ecb1 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0d2493ed usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x12d5bf63 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x18559b71 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1cc8ff68 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x37590e86 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x462eb252 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5c487837 usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x76c5667a usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x76cdefd0 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x81eb7b91 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x84c013c2 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8e0597e8 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9a034307 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa1ac3e97 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa5c61f9d usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc0e29b75 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc4bfe740 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe670a214 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf392f639 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf59c8b3e usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x136aeb8a usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x17f09b65 usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1e5ab4b3 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3478b9ea usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x357e77fd usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4f4c7964 usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x540853e0 usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5724d934 usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5b94f250 usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6b857d15 usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7049479d usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x82476a88 usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9722f353 usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbe70bc1d usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbf557c48 usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc0458623 usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc6454052 fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd2486964 usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd824282c usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xdeee9e06 usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe5024a73 usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe74a3ebc usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xef9b0960 usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf067ca8b usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0bcd70ab usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x19cc0fd1 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2f05ee5b usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x549bbe5c usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x88b9dae4 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8c74211f usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x92f69332 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa6113e39 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xab66a8fa usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xcc98c3ac usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xde99e711 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xef209401 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0bd816f0 wa_process_errored_transfers_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x122f15ac wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x20527ed2 wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x504a9930 rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x5b78b66f wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x692a70c0 __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x8bc8de16 rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xd7d6be4d wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf9414410 wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x227c5c76 wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x267eb67e wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3c2a14ba wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x490067a0 wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x69930044 wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa37b1a66 __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa4b6163b wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb3564041 wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb645da6a wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xc30ef785 wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xc42a74d8 wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xc56039f7 wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xcd572efc wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xcdd51d15 wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x8fd564b9 i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xd9591094 i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xf50e49f2 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x11f32baa umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x255aeab9 umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x311f5848 umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x3808a69a __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x3ec9449b umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x450d55bb umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xf1e77f74 umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xfe7da439 umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0c269aed uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0d78016e __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0fc02440 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1347b4f4 uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2fc33cfd uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x32d55959 uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x355aa9ee uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x45369c0a uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x46121165 uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x49686f41 uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4a7b455a uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4cc3c4d2 uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5084fb43 uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x51d7b6ee uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5d83c207 uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x65cf8ed8 __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x66748928 uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x69cb3d12 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6e3ed1b4 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7f0563a0 uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x804f2b69 uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x816b9e92 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8633474c uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8c17c28e uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8d74da04 uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8f0ee8f3 uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x90cc9ffb uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9683f63c uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98df3148 uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9d68f79b uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa9083d6f uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xac97316b uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb5f16cef uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd61f288e uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe06c6478 uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe789cc7d uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf09e2039 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf3ec6cff uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf7558315 uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf977f184 uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfc7a14c4 uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/whci 0xc425b088 whci_wait_for +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0de1646b vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x113772d4 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x12252435 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x20cb01fd vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x218cdb90 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x224b669f vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x363fde47 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3b466e9d vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x419352ba vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4a6c5d4c vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x57968ec0 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5c770ecc vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x669f70c7 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x734dadb5 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7a9e5675 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8ce105bc vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x96823ea3 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xab391bfb vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb0f81e37 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc2deb4c0 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc2f60e9f vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc67817f8 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd4ef0fa3 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe0447ea7 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe0c8201b vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe70a22c3 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe7a3581c vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xee599f03 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf53de307 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf7f50e45 vhost_init_used +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x2383403e ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x3da6e151 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x41c79b77 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xdbc5b977 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe85bbc10 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x041c5954 auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x354cc5be auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x66b79d5f auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x7bbcbe59 auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x921fd326 auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xb0223f23 auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xb9b21193 auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xba0ea404 auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xc409c253 auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xd11fa224 auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xf2d7c34d fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x353737b2 sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x98951e27 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x139a47eb w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x22581c8f w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x554a281a w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x718abaed w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x86091bdd w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x9c3c9c95 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0xb4c25328 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0xbbeb6e62 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0xeea251cb w1_touch_block +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x2b5c8fb9 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x7e5efafe dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xabe77229 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x325aca73 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x63199f67 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9898100e lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa79b08c1 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb147d3b8 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb3acc169 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf01373e4 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00305d6b nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x042e9199 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06a3d1aa nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d71fa23 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12150ee7 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x122a5618 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16af37fe nfs_file_fsync_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16c7efff nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x171238f3 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a1b13b8 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1db90001 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e3f76b3 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20356900 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22e470aa nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23c9758a nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25252aa9 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25333090 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28ae2237 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28ec1f67 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2989b55b nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b0957ad nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cd6d7f3 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2dd59978 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x367c507e nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x378f64b6 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x38d913e3 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a578704 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d2028e8 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e6dd0af nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3fb38fe5 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f7cff2 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a1f7c69 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b9c1010 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c1fe6d4 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d634728 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4dc460a6 nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x502e6702 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x520f7440 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52d06bc1 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53eaecb6 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5481562a nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x553d184c nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x566c324b nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5973ffa7 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d81b79d nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x603de696 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60584cbd nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x612e1e9b nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61e13b3c nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6205f64f register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6498adc6 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67d1800c get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6bae2618 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f2a341b nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72ee99a8 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7493e221 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7603dd57 nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x765cef14 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x773f0c3f nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7875deda nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78fd7900 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x799d9eba __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f05762a nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x803725dc nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x822e4971 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8339b254 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83e0cd22 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86722831 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88f75fd4 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a6c119a nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ab063e2 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8dbfb1d4 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e8421d9 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91a18b1f nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9349afa7 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b6c6b48 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e88eef3 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa15dd42d nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2492d09 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7114db9 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7a4fe2b nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa91942bf nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab1b37f4 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xabc4d87e put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad7b0f6f nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb12a8647 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb2c68de0 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb57bbb71 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7eec7b2 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb97d0177 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbaab8fbc nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd2ae1ee nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0838905 nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2335fc5 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc235dbea nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2699097 nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc32a4513 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6ecf0e6 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7182a88 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcae391ac nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb8e4dd7 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce9f7904 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0333047 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd48c996e unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd1b7c2e nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde6ac8eb nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe300cc64 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7f6bffb nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8412a53 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8ce1ab6 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb140fed nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec739aa4 nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed208468 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee29ccce nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee45c80c nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeeb2f742 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1f0eb44 nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf325cf9d nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf41e7efc nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf858a3af nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8b93aae nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa691805 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe68b6d8 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfff06523 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x58843ff6 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x07245e2c nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x07626656 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x098c22d9 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0af11020 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0dcd0079 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ffa0822 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1093b108 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x15bda362 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1b8adc5b nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1fb6293f pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27bd46de pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x29c1d361 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c712164 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x31c52bec pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x34f24fd5 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x480b71b7 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x544acb89 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x56835924 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a631a92 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5b8f394c nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63f117df pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x698a50fe nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x73e926ae pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7eb7e0ee pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8213f2f3 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8dc86431 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ee8d851 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8f673a37 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x94836292 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x953e3c3f pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9615309e pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x973b478e pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9cf5879a pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9e03d032 pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa011e98f nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa452e715 nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa63ee431 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa87690d6 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa9291606 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa93de121 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa9cd36df nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0480ef3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5da98c2 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb9662c84 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba7fac72 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbe1bb910 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc80d90ac pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc9245b82 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcbe020c8 nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0b5b7dc __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd1cc3070 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd50101b6 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6db59e9 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdccdff61 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe612904e pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeaafb4dc pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed1f262b nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf3346e1b nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf3852d43 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf64925e0 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xffecd3c0 _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x16a1959a opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x42bc72ec locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xfcd06cd9 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x27e066cf nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x62c33935 nfsacl_encode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x2c5e3316 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36a28a9e o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x3f79ffa0 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x41006ff5 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x637f0c74 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x98c3427e o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xcf7e2f65 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd1f018d7 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x2efabea7 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x3cbf5103 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x524ab95d dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xb60841d9 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd86ee196 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xef295dad dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x2f8964f2 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x982c5f5c ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xdfbc375b ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb +EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random +EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait +EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop +EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end +EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0x9c5013ea _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0xbe522585 _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin +EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0xf2e33298 torture_shuffle_task_register +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress +EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch +EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch +EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch +EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x44015191 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x83aa87e7 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x201d8ea3 encode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x29fa419f decode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x0adcb055 base_inv_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x221df614 base_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x4da25bec base_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x63f42b6a base_inv_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x76203267 base_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xca3140ce base_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfa5eee0a base_inv_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfc02472a base_inv_true_key +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xd3c8b277 lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xed284d56 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x1113a2a2 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x3d0e1fce garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x5161147e garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xa64590f9 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xaf2b5674 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xce04a21c garp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x16b96622 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x1de02b4c mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xa3ca8b50 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xc191f210 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xc644ce76 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xec8d9a64 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/stp 0xa0907415 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0xd4103d71 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x6a4ef1a1 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0xbd8d795b p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier +EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier +EXPORT_SYMBOL_GPL net/ax25/ax25 0xa4a5957c ax25_register_pid +EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast +EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0c24b18b l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x17437079 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x2488c4e7 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x5c21b8fd l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb5e9ff5e l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc3601f22 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xcae2d9a6 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xeadf4bfe bt_debugfs +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x03f68290 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1df831df nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2d4f3dba br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x76304ede br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xba4902c2 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc1c77ab8 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xea165f88 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf7c2123b br_deliver +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x90f6b14f nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0xff65dfe6 nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0944db70 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x19e1b626 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d4c83ba dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x21321fea dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2da693d6 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4295d57d dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x44722778 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x46743dbd dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4755b6c5 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4bf2447b compat_dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x517f07a3 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5f0b5ea1 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x61809cf5 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6441ed2f dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7e180dac dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fabc66c dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x945e77b6 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9c37a59c dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xab98fba0 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb0ff05db dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb1b848d8 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb2415b68 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb449c519 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb5bc9f3c dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbd4aaa76 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc40104ba dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc72c0300 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcf993b40 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcfc55680 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xde5b1ce3 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe1ae2838 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe4909c48 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe65558e8 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe7d5dc57 compat_dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf08e7e43 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfe9638c1 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1e034e2e dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x9818d3e8 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa53a1924 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xcf0a13bc dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe0094ac2 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xeb95a9ac dccp_invalid_packet +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4a0abd6b ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x5ab40533 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x762fd75b ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x77be9ed0 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd58dfa29 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ipv4/gre 0x708d1b7a gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xa1615f2b gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x652dcf4e inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6948f995 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7ce2d16b inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8e1056e1 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc504b2c8 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf343d649 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xb94d1002 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2fcb0401 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4358d3f7 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x43967350 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x49049726 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x55fd4516 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x62cb1f9e __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6ab178d6 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6b21b3b6 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8522cefd ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x85abbd10 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa396baaa ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xacf971a7 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe3c88648 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xed9d17bd ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfc570b6c ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x539ce4f5 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xb26fedfa ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x6ecc9cab nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x04546d55 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x1a106ac3 nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x3d5441db nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x89b4aa22 nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xf421f8ff nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x2d6e3bf7 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6c776e0c nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x71ddc634 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x8aa68394 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x92974421 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xd97b9ef4 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x52657a34 nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x70d7c374 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x739e9ef5 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xda5da9b1 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xdeba90fb tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xeae024fe tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x073a7206 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2671010e udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd7f91c74 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf2da7c69 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x50418cac ip6_tnl_dst_set +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x5801a96c ip6_tnl_dst_get +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x627cee98 ip6_tnl_dst_reset +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x791baae5 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xdef12815 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xee721a76 ip6_tnl_dst_destroy +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xf0b42147 ip6_tnl_dst_init +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x57b68d67 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xa7377a6e udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xb9b050e4 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x5fe61fb8 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x8a481499 nf_ct_frag6_consume_orig +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xe2d62582 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x18a158fe nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x317e9ecd nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x364eb6ad nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x52526a21 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xc410b98c nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0xac9bc18c nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x5603f403 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x73882a18 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x872feb98 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x9ecfc0bd nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xfc77d291 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0xa33225e8 nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x083bb954 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x085290cf l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2b27e472 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3be6b9e5 l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5804a4f9 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x80ac2b18 __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x88e86819 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x89dba929 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8a28de80 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8a6980e6 l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8c545886 l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb452ebe4 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbd6226c0 l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc7a30417 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd4f051f8 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf3ee62f1 l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xa1739d01 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x11e1f72f ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1f216d2c ieee80211_set_key_tx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x232cba80 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x289f9b92 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3df4f1b9 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4231c4b1 ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4cebf2e2 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x58a151ae ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6512a1c8 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7e39681c ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8b2742a0 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbd1b6648 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd3f7f314 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdf3220e9 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf09b2b26 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf0c98e37 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf3f80180 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfbf5e0e2 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x0ae15c92 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x13fb4eb9 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7f56cfdc mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x9eb31077 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x01379e7e ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0f1b5ba3 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x12baeed5 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2172a650 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3e9e5703 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4146e7e3 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4341236e ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x562ed160 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x77ffd070 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xabb09f9a ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc52b15af ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc7639a3d ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcddb0105 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd0916894 ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf1001cf9 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf4fafcdd ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x600581ce ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x9bca4d6e ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xad286c54 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xea061d4f unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x02792537 nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x090df7e8 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0b3a2b37 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0da5a3ad nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1354194f nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15e709d2 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x16be0d7b nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x170303d0 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x18dda914 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1d67d31a nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1e0ce124 nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1e9241e9 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x22b4a010 nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x23a3057b nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x23e0d891 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x282ad2a9 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x29a376d6 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2a66fc2b nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b35a3df nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b3f7640 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b8e9f32 nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2c3a83a6 nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x361aae71 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x39c5cfab nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d6af087 nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f93c12f nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4579002f nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4c28b2cc __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4cdbe937 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ed18807 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x547c199f nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5acc57ba __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5ba6eff8 __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x66c7cf61 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x68f398ad nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x75240a37 nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x79d4103b nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7aa76574 nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b12651b nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b55a52c nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c31f4a9 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7deda4df nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ff00de2 nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a66c4fc nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90c1cda2 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x91affa89 nf_connlabel_match +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x920d0d47 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9a2e192b nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9a6bd46a nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c3d8a3c __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c4d9d98 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa0459315 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa064e1e8 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa26f37f7 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa996a5ff nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1622ef nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf68c87a nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb1452c03 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb77e6523 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba253806 nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc1c3e42 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbf4e32d6 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2d6b7f6 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc4b56f80 nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc8d73049 nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xca8522cd nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcabccde4 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcad82da1 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3b89c84 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd59dbb19 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd87bb2eb nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdbd9e539 nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe3488bda nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb099c51 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeee79deb seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf0bf0df1 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf7d06082 nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd425660 nf_connlabel_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff40b965 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff642d4d nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xe1191e9e nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x917c9a8a nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xef8a4ebb nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0b0f48d6 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4122bd26 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4e4a8b24 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8152dadc set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x89a51a5b nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x95b1ab2f nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc420e651 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf4cbdd81 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf4eec4eb nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xfda231bf nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x66f4f5fa nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x727bd68d nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xd8cae292 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xe17ca936 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xe30cca64 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x712d2cbf nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x82114685 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x77b7eb8b ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8e0c918c ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x907031dc ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x9a8041e0 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xcae60a35 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xde0a730e ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe151d523 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x88bdc649 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x089a80b6 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x13b94421 nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x3064b2c8 nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x94a3c67a nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xb2ad5c5f nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x00992d83 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x19ba03d5 nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2ad46dec __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2efdd27b nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x70f0242b nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa61c7167 nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xdd080e70 nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe0cae208 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf2a96643 nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x01129fca nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xc0fa6692 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0e10858e synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x2d063b80 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5f339439 synproxy_build_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x09b8b6ff nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x62bcc3ed nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x63da1ab3 nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6a098d42 nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9345c3b7 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9652335a nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa7f557b1 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb1e52cbb nft_register_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc5bf9d58 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xda1a51bd nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdb449dde nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdd3ecb38 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xefb095c9 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf450b9a3 nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf4db8a33 nft_unregister_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf6bc753b nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf95982dd nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1217d817 nfnetlink_alloc_skb +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x122b5997 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x907f3766 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9ead5f14 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa65a67ce nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xaf352c42 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf8e052f7 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x4abb93e8 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x5fd6ff07 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xe89a5b7c nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0xb5569cb1 nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x45b17fd2 nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xc1e2e67b nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xc80f506d nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x28f796f5 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x46c839eb nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x6afa498f nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x7b57a738 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x8bb59230 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xcc0fc450 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x510b6416 nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x88bcee64 nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x8d2ef9ce nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x5883c801 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x5a3c9ebc nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x161d1417 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1e24c6b8 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1fe58e9b xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3907929d xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3e88f43a xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4d3e80f0 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5a3740f7 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5cd15514 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f82f1f7 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x691a6d69 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6fc771d4 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x73cee41e xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9b6440d3 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9da49343 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa45a3199 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc4311b9f xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc5fbf40c xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7791bad xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc854b3ef xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd116c278 xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0b4971b xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe5b95510 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec24fd82 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf28bb1f6 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf3576814 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x00204983 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x482b6a12 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x70b43f52 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x9910bfb4 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xfd6b7ae7 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x09596eba nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x10c2cc39 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xaac573d0 nci_uart_set_config +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3154e4cc ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x75a19bd5 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8d167b2d __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x95785e9c ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa8bcffa7 ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xad5b5360 ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xae8e1a0c ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd50c3fdf ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf38a210d ovs_netdev_link +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x04124c9c rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x12028990 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x1baadef8 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x218d4b66 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x37303ab1 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x3c4c5a37 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x441e25b3 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x453127a7 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x4c84b948 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x61cc614e rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x64730e46 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x68abfa4d rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x68db5b90 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x6ac3863a rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x6c19c9ac rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x70537c3a rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x7bc62829 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x86e8b2f8 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x94cbf5a2 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0xa9fd6272 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc867b648 rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0xdc4e5d2b rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xe1b9d24a rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xe5c1f742 rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0xef678a93 rds_inc_put +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x5e816a1d rxrpc_unregister_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xe1fed802 rxrpc_register_security +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x6bc99f85 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xaf5bd846 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xcf91dc25 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01789af5 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x019c2c69 rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01fd413e rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0343ce03 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x035a986b rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0362542b xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x037af647 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x043fc979 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04c77143 xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x062fd8ca rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x093e58cc svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x095426d9 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b7a98ea write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bea3be2 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c2d4f05 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c87eac7 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0da06165 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12da1f6f rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x142a00c5 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x146819ac xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14cd1d48 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x177c01ec rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19142b9e svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19fb9f71 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1acba809 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cdb2cec svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e0d53a3 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1eae1c6b rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x202e9d94 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2115a4df svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21642579 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x223a5bd4 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23a70b20 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x245a6dac svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24f53d8e sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x284e88c5 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x285fc7da cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28a693bd auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29a028ea xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2aadce8b rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b493947 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bdd23ae xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e45fcc4 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x325ce9de svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3416912b rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34889006 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35af7493 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36d9caf8 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38465d10 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39bbfd4a rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c2ce109 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cdb2520 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40ce0c14 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4119ceb1 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x449ff84c rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4621456d xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x464fc54a xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x466ae4d1 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47d3c3d1 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47eb3222 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x493d5ec2 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x499fdcc2 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a33e014 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ced1dcf rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ecfa015 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x505566ed svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5265161e svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5299b128 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5342becb xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x552120a7 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59b6a149 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b16a873 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ce5151f xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e95de12 rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6139b0a9 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x624b6b65 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62a6d72f rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63320d0e xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63fa80d4 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64624f86 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64b2a739 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64e09e08 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65168f4b xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66929f1b svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68f2c49f xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69bf7505 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a8d256f rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ae8b13b cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cd1996e rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cf79122 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f499e2a gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7377eb1c rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7425d44f rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x768456a5 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77a74368 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c18b04f xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ca5d6fb xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d4230d3 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7da5c681 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de50ef5 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e8aa3c8 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8068b0de rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8206d5f5 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82ab0658 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84d05d67 cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85c94330 rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x864e1bde svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87145e0e rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x898c8ab1 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ac5dd56 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ae71c45 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b454c84 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e748ad1 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e95b856 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ea24b08 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ef956a8 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90571c41 cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x914eae3e rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91d123d3 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9334b985 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93c32141 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96558a39 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9882b140 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9897ab09 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98ac82cb bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98c81c41 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98e002b2 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b201f4b xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b6bcda1 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ca97a72 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cae5fe7 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ef449af rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3820b35 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3b73deb sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa45079c3 rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5c2fce7 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa450f32 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac8d3eeb rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad60ca75 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1e2cfa7 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3be222e rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6c802c0 rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb857eac0 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9301947 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba332a12 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbaa25321 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb6513a3 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf5a7f90 xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5664841 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc815a0cc rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8c2af8f svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc91fb2aa svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc97d8e00 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca2baef7 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcaf2e05c svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcddeaccb rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce0bf35a xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee1d4a6 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd19bc721 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd36a379d svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd59db261 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7f3c3a8 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9614d68 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda29a14d rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbe8371a xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbff53b9 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc059bce xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd6b720e rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd8db1cd xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddb1771f rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde636d17 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0b6b39a svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0d65a1b svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1d80cc4 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2681f09 rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6867d3e rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe74ff364 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe84ffe4d svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8700a63 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea398969 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedea4c00 rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee01a442 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeea4d123 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef0c21e4 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef167f23 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf083b09a rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf289d698 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2d5c83b svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf322e32e xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4833c5b rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6c8db41 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8a0e768 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf916c2f0 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa77d6b2 rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd1a8c88 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd36dde4 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe71f80c rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff44ae4b cache_check +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x104d14c3 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2a4054f2 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x47daf2e9 __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x81db4e95 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8ea8325e __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x970b77bc vsock_pending_work +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9a5e202c vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa26c6238 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbe4d3807 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc66511c5 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe3f8c049 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xed82561b vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfe0daa41 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xff5b79ac vsock_stream_has_space +EXPORT_SYMBOL_GPL net/wimax/wimax 0x0287a183 wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0x10240007 wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x25ee1b7b wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0x37abb8a9 wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x51c1b1bf wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0x8187b887 wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0xa8dd4228 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0xb5e70e16 wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xc8b6c914 wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0xe23a452b wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0xf7e339ac wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0xfb7a050b wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xfc03ecda wimax_msg_send +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x19797a3b cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x383bb012 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3ce2afaf cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x50420512 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x564c0b91 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7f1fdc0a cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb3e8ce84 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbce9ef9b cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbf430d6b cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc260d15f cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xcaf96c40 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd3fb9963 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdd7d6e20 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x0420ed13 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x30ee1659 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xab1bb09a ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xce7b4866 ipcomp_destroy +EXPORT_SYMBOL_GPL sound/ac97_bus 0xb7dd185d snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x2111a648 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xcc08dd7c __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd 0x0293218a snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0x372a629b snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x38a917d2 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0x3b1eeb13 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x8151bfbe snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0xb6496102 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0xd9303340 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x061d1c08 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x18e20cac _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5d8dba08 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x81e04252 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d8b9abf snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xac447d8d snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xcdf1907b snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd74dafb3 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xdbd3c974 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x002124d0 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x0294d26a snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2117e57d snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x533f4f2b snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x55679fd7 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x63b0f8e2 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x709be624 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x807084ca snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc173d342 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd4ee6744 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xdf097601 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1e859c2c amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2258555a amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9508f441 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x97bf58aa amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb0ce2b8c amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xdacc46ea amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe452cbbd amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x128a3a57 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1986a321 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1a743f8f snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1b46a365 snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1ce4dadd snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x205d9291 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x219e8268 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x21e3b1a1 snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x22f6ebc1 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2a963f6d snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2be11094 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2c40b7c4 snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2e626480 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2f9b68b0 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2fd7a386 snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x35804433 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x387bdc1e snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3d7e4499 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3f7f2267 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3fef8be0 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4113f842 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x440a9b1d snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x45f0ae24 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x49c6a107 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x50c2e5e5 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5227533e snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x56338cad snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5951479c snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c6e4876 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5ca96d22 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5d1b1eef snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5eca40f3 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5febeb43 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x62766bb6 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67633d24 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6d3818e2 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6effedbe snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7776b386 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7a20862d snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7bc086ee snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8103b869 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8198183a snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x83337a4f snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x87591de8 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8d5601db snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8d962640 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x901b97dd snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9432f199 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x99547d05 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9aeaaa3a snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9c5081a4 snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9d9506ea snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa1dbe672 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa6d44402 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xac2fa17a _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf91fc86 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb1c3bf13 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb1c9afc6 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbc08a59e snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbcd8e821 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc09ef66b snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc1b4ec89 snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc5436de7 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc5ccdc54 snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc7d67670 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcb5d82dd snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd32eca1c snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdded4738 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xee6f0c64 snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf9a2d733 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfab6e13e snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x0a3a0720 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x1a0f125d snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x315bb3ef snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x56d62ca4 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x81bc05f7 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xc8ce8bb0 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0152ff03 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01cceae4 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x029e712f snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x045e7bd3 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x054cc842 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x07bca6c4 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x07ed442a snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x088327d0 snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ea67aa9 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x115f55f9 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x141da8f0 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x17765e9d snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18fa4929 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19d47db8 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1a5b0eca snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1acada42 snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ad24e8f snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e16fefe snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ece8103 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x204ed292 snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21117c2f snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x26aa0562 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2793449f snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x290de193 snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2c5cf2b1 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2f58c1eb snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2fa3dbc8 snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3126bfc7 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x35f496dd snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3afaa84d snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3ca59ac6 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e4b1e3f snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f69fcd9 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3fb04cda snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3ffd8a81 snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x40b0b9d2 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x40fed993 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41343a89 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x457506b9 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46d3ee4e snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x482d857b snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x496297a8 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x498b288c snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ab9531d snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4abe1ff7 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4b26cce3 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x519ffa41 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x534c8ef0 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x543ce7d7 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x54755211 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5507c536 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x56111d96 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x581869e8 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5960b65d snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x597f95ea snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a616c2e snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b175748 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d7f8e90 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6429fa34 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x68b4dbd5 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d47fdb2 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d8a2268 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6dac8732 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6decf506 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7776bc4d snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77992950 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77fb4065 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b0bf220 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ccd56e5 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7cce9b1a snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7dc4dc71 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80c030a0 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x841d9f20 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a7b6736 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ab7760a snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c9c1388 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8de660b9 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x90f5c51c snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9181f77b snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95ea9aa8 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96db469a snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a768447 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b436604 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9df73559 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f184e9a snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9faa2ab8 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3bfb7cb snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa756689a snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa7ee451c snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa679e7c snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xab2ecd20 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2132289 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb52587d3 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9af2152 snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba66cb6e snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbad3bda9 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe126112 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe141985 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc328586b azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3e24313 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc5dafa5e snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7e09fae azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc8b42942 snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc91e95c snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcdc9d48c snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf69bf4f snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0dae75c snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd3713e9a snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd480d640 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdcc570da snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe65c8179 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe70122ee snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe814d8e3 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe9563372 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeac1991c query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb3f49a0 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef0546d7 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf0807ebe snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3d68d54 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf49f10d6 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf74770c7 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8cd8d52 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf9efd96a snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc641aa5 snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x07d888be snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0e62f0c1 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x20534ff6 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3674ee79 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3b7884e7 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4cde58d9 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x58781c11 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x59f7978b snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5aa91331 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x69956986 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6fc6cebd snd_hda_parse_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x71ee1a2f snd_hda_get_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7719e27e snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x84b03177 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8d90bd6f snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa32750cb snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbe0b1236 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd8b658bb snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd8c93bd8 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe02b30df snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xee2eb986 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x576ede98 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xf8237f1d cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x02da7df2 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xdff79440 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x5fe222fb cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x629294fc cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcdaab68d cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x247509b2 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x28503e0f es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x23f4f2ca pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x33ea64d8 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xb74ad26d pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xe8375eb8 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x335f9b56 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x34304eeb sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x3c6efbae sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x9d3390a5 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xd7172a1e sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xcdb8c78d devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x37d27cd2 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xaaa64543 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xb7815bbe tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xd3e9fa3b tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x350a8e9b ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x37fa3acc wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x8dc62c1c wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xe5920335 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xf087fdbd wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xa8f59679 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x6a90753e wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x11d5c158 fsl_asrc_platform +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x8965671b fsl_asrc_get_dma_channel +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x30693bb7 imx_audmux_v1_configure_port +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x58631dab imx_audmux_v2_configure_port +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x012a7cb3 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05ef054e snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06339b1d snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x081530ff snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x097bd3c0 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x097ee941 snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ada353f snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c78606d snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0cdc887c snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f02fe3d snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12e9d023 snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15c6857f snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15fdc4bc snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x165493e2 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1844a812 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18abe415 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a7b9141 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a8b024b devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ba64bdc snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e67b665 snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23ee7872 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2425211f snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25ee2dc9 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x27711e4b snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2888410f snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x295371cd snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2bb7eee5 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2fabc6ac snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3134024b snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x329bdbcf dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x341a84ed snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3572b761 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36d6f085 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x37e4edc4 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39265fa1 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b1850a6 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e9480f0 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f729f3e snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x410853c4 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4657524b snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4785c5cf snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x484cfaf3 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b1d261d snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b386036 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d607717 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4eb6fd44 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x511583db dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51c60dc8 snd_soc_add_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52104de1 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54000992 snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5458f5ed snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54bbfb5c snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x568f83f8 snd_soc_platform_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57490aa4 snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5adab392 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c33a479 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e0c2b26 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x600b13c5 snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65069708 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x659df216 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6618e34d snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66cb3f04 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67e17c71 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a7a072c snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b09e614 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d3f9315 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d48c8e0 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6fdb7757 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x711dc311 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x720520f5 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x726273e7 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72fb90f3 snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7314ef26 snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73a52a64 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7661cb39 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7854d5b4 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x787bf780 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x794ccfc7 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7bb52ddb snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ef805aa snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8243fc19 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82f9f8a5 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85926ee6 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85b23330 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89929bc0 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a987d38 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8cadc685 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x903c2086 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x904709cf devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9240a9da snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99075822 snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99cfb1f9 snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c072ae8 snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c9842a1 snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9cf437a9 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d5b3e38 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d93e058 snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f6e6e80 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ff7eec4 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa04c76fb snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0751e29 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0ee4667 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa12b934e snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2781cc2 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab8dcda0 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad5a22d8 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaea0e2dc snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb17b59f8 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb19b2070 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb2402505 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb31ff003 snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb33afa84 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3f784dc snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7b31999 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb86168bc snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb6aeed6 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbea8125d devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc23f7411 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3833c92 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8ca9192 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcbe741c6 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd06fac4d snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6c7f1a6 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdfa2dc0e snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0404b6f snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1f543b3 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe26d63ef snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe58e59a9 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6be9c73 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe920e6c4 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed1e0dc3 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee2e820a snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeed79ae3 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef760bd5 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf530296e snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6dcbc3c snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf7203240 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf7a0352a dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf7be0eb1 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf7e1aa5f snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf925f127 snd_soc_remove_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa542633 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa6e2ec9 snd_soc_lookup_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff61dce4 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff9df886 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffa68437 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x07aae4aa line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x431bbf99 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4715181b line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x478800fb line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4bababa8 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x56de152f line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x70b44f55 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8bc027dd line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8cdb65d7 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x95852dd1 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb0a14fc1 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc45dd9e8 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xea2ce22e line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf1ca1eb1 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf3edac63 line6_version_request_async +EXPORT_SYMBOL_GPL vmlinux 0x003c344a tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x0068a393 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x008ac83f md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x00d488f6 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x01003c5b clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x014db228 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x015feab1 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x016aea92 ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0x016fa0ab usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x0176c15e ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x017add3c ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x017d59aa __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x0190c80a mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x01a02327 gov_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x01bca0d4 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x01c068be register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x01c1401c of_css +EXPORT_SYMBOL_GPL vmlinux 0x01d0fd90 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x021ebfda btree_update +EXPORT_SYMBOL_GPL vmlinux 0x022b61ee pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0x02416cb2 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x0248d975 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x025615ed wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x0265170a regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x0268d2ac spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0x029482d8 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x02971706 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x02ad4f7a of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0x02cdc863 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x02e8e359 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x036b105f spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x0376f34f find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x038f7619 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03b5ac6a sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x03cc44e2 device_remove_property_set +EXPORT_SYMBOL_GPL vmlinux 0x03e18b75 nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x03ea9704 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x03fab673 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x0441cb40 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x0467a308 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x0469cc7a fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x047a1b7d crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x048bae62 rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x04968d81 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x0496d972 arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x04988d23 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x04a50020 of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0x04b5549c __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x04efdec2 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x0504ca08 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x0521adde ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x052dc69c ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x053494cb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x0538f1d9 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x053b3237 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x05464fbb sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x054a63f7 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x054a7640 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x057572b7 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x0580d2dd leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x058b1c97 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x0599afda regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x05bf8bb3 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x05d88436 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x05fef37b cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x061dee59 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x061ec7aa clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x069ef349 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x06a55ec4 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x06b57715 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x06d9d74b tpm2_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x06f13ae3 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x070d7244 gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x071808c9 of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x07216849 rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0x072b0bb8 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x076b390e security_kernel_fw_from_file +EXPORT_SYMBOL_GPL vmlinux 0x077d5faf crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x077eedf8 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x079abb8f gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x07aa7e25 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07cc0d7d gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x07e0edc4 rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x07e27b29 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x07f300c3 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x080e3470 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x0819e806 blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0x08207f29 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x08245ba7 fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0x08408462 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x0842aa74 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x0870026b of_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x088841bd da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x08960ef5 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec +EXPORT_SYMBOL_GPL vmlinux 0x08e4e2d8 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x0900fe21 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x091906bf of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x091c824a machine_power_off +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x093f9984 usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x0940151f anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0951287e class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x095b461f kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x09766569 of_get_nand_ecc_mode +EXPORT_SYMBOL_GPL vmlinux 0x0983b379 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x09ace51b ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x09af42bd fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x09eddb3c ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x09f940d6 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x0a483214 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x0a51ae5b virq_to_hw +EXPORT_SYMBOL_GPL vmlinux 0x0a62e295 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x0a83adc9 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x0a866371 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x0a886cec nl_table +EXPORT_SYMBOL_GPL vmlinux 0x0aa37be6 tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0x0ab49705 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x0ac37156 of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x0ae16cc8 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x0aeeea4b cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x0b056aaa regmap_update_bits_check_async +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b10f705 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x0b1e7317 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x0b36d260 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x0b44f3ca ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x0b50e41e sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x0b67b1b9 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x0bb8c354 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x0bdf7057 of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c197384 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x0c1cc53a napi_by_id +EXPORT_SYMBOL_GPL vmlinux 0x0c214ec2 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x0c24f672 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c2d7b65 kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0x0c4a6e21 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0c5841c8 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x0c6093d4 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x0c83f68c of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x0caa549f cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x0cb104db shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0cdb5047 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x0cf0000b ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x0cfb1cb9 scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x0d0b470c sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x0d2adbf5 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0x0d46138d usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d706d2e rh_set_owner +EXPORT_SYMBOL_GPL vmlinux 0x0d73a952 GregorianDay +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0ddb4bcb mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x0ddf3f00 of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0x0de06988 cpu_first_thread_of_core +EXPORT_SYMBOL_GPL vmlinux 0x0dfa8b63 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0e02baf2 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x0e087cd7 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x0e16cd9d clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x0e2319ca phy_get +EXPORT_SYMBOL_GPL vmlinux 0x0e4fb03a dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x0e614a9b clk_register +EXPORT_SYMBOL_GPL vmlinux 0x0e654fd6 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x0e78f41f scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x0e89f2b1 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x0ea41f64 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x0ea7466c dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x0ecf823a static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x0ef683ee crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x0ef95e31 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x0f131382 extcon_register_interest +EXPORT_SYMBOL_GPL vmlinux 0x0f2b8b08 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x0f312e86 cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f7c206d i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0x0f7cfc6f napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x0f7f9c89 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x0f892981 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x0f93f40f devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x0f9d5cdc __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x0fa68a23 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x0fbd2b0d kick_process +EXPORT_SYMBOL_GPL vmlinux 0x0fca1722 of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x0fd633ed pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x0fed0c41 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x0fffae0a regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x100c4123 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x100ff22c devres_release +EXPORT_SYMBOL_GPL vmlinux 0x10110e78 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x10358d4a of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x103c913b of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x105820be tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x1059ae92 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x108bca9e led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x108ee324 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x10a9c759 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x10a9e895 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x10ada377 find_module +EXPORT_SYMBOL_GPL vmlinux 0x10bcb140 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10edcb5d class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x11102d1e pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x1114011d threads_shift +EXPORT_SYMBOL_GPL vmlinux 0x11166b3b usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x11174084 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x11259986 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x113e644b led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x11439e82 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x1146335f virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x1167bc9f sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x11aca37e devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x11c73857 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x11c8110c bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0x11caa6e9 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x11cb2619 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x11e57f4e inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x11e5bc16 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x11f07cac regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x11fa139a generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x1211b3fd rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x12157778 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x12166e86 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x1219b292 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1227cd2c cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x12625a26 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x126f889c rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x12ad5d7b nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x12ad78b0 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x12b0f7bf regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x12f3fcfe led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x12f9296d sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x130514ac dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x130dec77 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x132856f6 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x13472f2d fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x135965b1 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x135ccbdc ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x136a4ee6 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x136d3613 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x137ba52d regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x13908d67 pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x13a5ddec ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13e5ea13 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x13ec781a nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0x13ee656d is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x13fd055f class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x140dd2fe pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x1479111b __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x147b87db led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x14878783 crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x148aa8a3 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x14a6aac0 blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x14c171a4 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x14d85129 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x14e65dc8 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x14e6d76f sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0x14e89ed7 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x14eaffc1 fsl_spi_cpm_reinit_txrx +EXPORT_SYMBOL_GPL vmlinux 0x14ef7020 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x150a43e3 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1514bf8a devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x15157116 dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x158bfe8d dax_fault +EXPORT_SYMBOL_GPL vmlinux 0x159181b1 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x15980f78 cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0x15a5d817 component_del +EXPORT_SYMBOL_GPL vmlinux 0x15bccafc sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x15c21e5e nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x15c7c3e2 bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x15d4b567 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x15e6a40d inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x16101cb1 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x16312f7f tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x165a69de kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x165f5b6a ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x1662f7d5 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x16867314 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x16be6195 blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0x16fcc9ea fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x1705cd1e dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x1752c9ca usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x175f52a6 blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x1776eb42 of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x17784383 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x177a9e0b serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x17a4b896 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x17ba9268 pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0x17d9c98a pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x17fa4996 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x18026a12 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x1842431b nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x18434d44 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x184b8abd led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x18a39323 __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x18b0392e raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x18b34f1b crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x18bc5d5d fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x18caef42 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x18edc969 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x19119803 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x191a8e83 wm8400_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x19284e19 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x19318483 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x193cfffa gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x1949b5cd mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x1954bc3c rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x19606986 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x19696348 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x197a4a64 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19ca3ab9 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x19d292e0 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19d9017a rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x19dafe45 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x19e5d552 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x19edb5a8 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0x19f028e5 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1a02c99f ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x1a2c92c9 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1a2cb725 clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0x1a689aa3 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x1a8c5907 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x1a931919 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x1a99ffeb scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x1aca3bd5 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1ad2f86a of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x1add4f8c component_add +EXPORT_SYMBOL_GPL vmlinux 0x1b26d0fd clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x1b29750e __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x1b4da391 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x1b6024a3 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x1b73d387 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1bb30e69 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x1bd6e7bb fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x1c02e16c spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x1c18b7bd of_get_nand_bus_width +EXPORT_SYMBOL_GPL vmlinux 0x1c2620f4 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x1c2ad10a srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x1c38c41d kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0x1c48eea4 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1caf6d51 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x1cbd45c3 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x1ccb3cc3 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x1cdb2147 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x1cee5920 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x1d00e986 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x1d102c74 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x1d1c615c skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d408774 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x1d660585 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x1d74ad5c irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x1d94d294 ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1de03005 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x1df71f25 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x1dfbcf4c mpic_msgr_disable +EXPORT_SYMBOL_GPL vmlinux 0x1e13730d dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e208942 of_pci_get_host_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e995083 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1ea80919 blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebac2bd getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0x1ebc569c mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x1ebd94b6 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ecc368a cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1efad16f devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x1f162950 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x1f379896 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x1f3cfb3d pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x1f40e654 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x1f4c4e2d inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x1f55c462 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x1f5680ee input_class +EXPORT_SYMBOL_GPL vmlinux 0x1f614aec adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1f761f1f pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1f95971d pwm_config +EXPORT_SYMBOL_GPL vmlinux 0x1f95b795 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x1fc2ae24 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x1fcd0a40 fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x1fd71a04 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x1fe9cafa thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x1febdce7 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x2001fbec regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x200f96e1 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x20174a72 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x2033ce8d gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x20d31554 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL vmlinux 0x20eb3442 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x20fb87c0 pcibios_scan_phb +EXPORT_SYMBOL_GPL vmlinux 0x219b2cef add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21f0fdab device_add +EXPORT_SYMBOL_GPL vmlinux 0x2222cb99 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x223af821 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x226646b6 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x22860245 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x228628c2 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x22ae7bac regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x22ce4b8a devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x22e21794 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x22f304ac usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x22f96a53 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x22f9cd96 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x2300dbf2 ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x23085037 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x230b5695 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x230ff8d9 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x2321aca4 __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0x232dc3cb subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x2340f1fe kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x23654f69 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x236a5e0e sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x236f0a83 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x2373a21a md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x237c2042 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x238d3ef0 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x2398277b gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x2398ceab da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x23c26778 crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x23cf3407 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x23dfeb53 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x23ec075e pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x23f54e0e rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x23f6f72d of_get_nand_ecc_step_size +EXPORT_SYMBOL_GPL vmlinux 0x23fb0fe7 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x24011e14 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x2435d955 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x2438b324 device_reset +EXPORT_SYMBOL_GPL vmlinux 0x24396edf usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0x24438a73 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x24794fb3 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x247f5ad6 crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x248e71cf led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x24905915 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x24929dc3 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x249baa91 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x251f2a27 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x25622204 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x2573e51e platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x25829f47 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0x259ff31d rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x25a39249 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x25bdd950 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x25cf157e ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x25da9487 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x25e4806a ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x25eddd15 blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0x25ef3ca1 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x26114d83 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x261956cc uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x261cf59e unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x26484e31 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x2657f5c5 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x26629043 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x266aca62 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x267d73f7 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x268bf092 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x268cc6bc sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x2691a093 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x26ac7331 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26ba36cc exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26d38793 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x26d846a5 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL vmlinux 0x271f8ea3 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x272a602c mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x273ba723 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x27525454 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x27600fcf of_get_nand_on_flash_bbt +EXPORT_SYMBOL_GPL vmlinux 0x277034a6 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x277e6439 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x27c0c4be eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27de69d9 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27f4f049 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x282b4e94 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x283f3aa9 kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x285a5f9d percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0x2867f855 of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x28882f8a tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x28b22075 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x28c4bfa7 cpufreq_governor_dbs +EXPORT_SYMBOL_GPL vmlinux 0x28c95ebd bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x2901fbfa of_overlay_create +EXPORT_SYMBOL_GPL vmlinux 0x290620d8 of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x2921402e mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x294266cd of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x2943dc14 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x29bae5e7 system_trusted_keyring +EXPORT_SYMBOL_GPL vmlinux 0x29e79618 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x29ea83cd ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29f1bdbb mpic_subsys +EXPORT_SYMBOL_GPL vmlinux 0x29f92752 kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x29fbfecc pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x2a20848c tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x2a24e696 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x2a823a92 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x2a9b5556 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x2ac1e22c of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x2ac37cf8 kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL vmlinux 0x2acaa52b key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x2add3389 ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0x2adedb2a sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x2aec3a38 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x2afdd5d7 max_gen_clk_probe +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b5c303b smp_send_reschedule +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2baed152 flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x2bb4f579 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x2bc9cc86 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x2be7e872 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x2bed0259 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0x2c1009ef arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c5e46a9 platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2c9a9e38 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x2cad1a65 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x2cb7629d inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x2cbd418c kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x2cd0b218 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d247a7b exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x2d36c57b rh_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d4ccc75 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x2d599b20 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d9aee5c ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x2dc5a6d1 btree_last +EXPORT_SYMBOL_GPL vmlinux 0x2e06bcdd stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x2e110450 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x2e1bd8a6 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x2e1c50c6 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x2e1c6224 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x2e1da9fb probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e25f9f7 pcibios_map_io_space +EXPORT_SYMBOL_GPL vmlinux 0x2e2b2927 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e38539a kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x2e8d9d88 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x2e8f741c crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x2e9688a2 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2ecbbeba tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x2ee47b2b user_update +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f34e3ea wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0x2f39f049 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x2f3b57ae gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x2f3ebd25 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f4ca20b flush_altivec_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x2f640408 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f714b9f each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x2f87853b regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x2f8c8196 dev_pm_opp_get_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f964a0f usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x2fba2599 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x2fd918d6 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x2ffa6682 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x2ffb5ff7 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x300000eb skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x3020c464 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x3020df90 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x30573437 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x30729556 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x3072a545 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x307c157c ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x30825d76 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x308432cf ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x309406e9 of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0x309433d3 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x30af7f08 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x30c71862 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x30c8e93b crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x30c9b675 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x30f24b9c sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x3100ee5f disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x31183505 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x312492b6 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x312e9ce0 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x31584100 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x317051a3 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x318e316c mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31e3b4f1 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x31f316c1 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x320c8745 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval +EXPORT_SYMBOL_GPL vmlinux 0x32207a2b kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x32550523 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x32642b44 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x32673f9c sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x3270d592 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x3284ac0d rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x328d3924 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x32b141bc bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32d93645 kvm_get_dirty_log +EXPORT_SYMBOL_GPL vmlinux 0x3319bb6b fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x33450d8a kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x334a8aea bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0x334ba2c4 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x334bf0f4 of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x336318c1 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x336b2771 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x337786fa usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x33885d7a kvm_vcpu_block +EXPORT_SYMBOL_GPL vmlinux 0x33c1d27b ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x33d02a5c __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x33d5c069 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0x33eb0e44 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x34083af8 i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0x340b1cec bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x340ce1ca fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x3425e2bc arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0x344c5e63 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x345dac7d pcibios_finish_adding_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x346a4f85 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x347fa1b4 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x3488e7f4 devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x349c7382 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x34a1dfa8 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34a8da5f __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x34ac7d79 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x34c59bd1 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x34dce120 bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0x34e2370d __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x34e2be0e rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x3506be29 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x3540d80f device_move +EXPORT_SYMBOL_GPL vmlinux 0x356276b4 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x35677296 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x3576596f skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3579b5d1 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x3582be1d dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35a73457 blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x35ab45b2 __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0x35bf2acd nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0x35d3cda3 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x364460af mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x364de272 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x3651377c pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x36584580 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x365cb98a crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x368f1fea static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36a64e5c percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0x36b097d5 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x36b71784 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x36d996bd ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36f78471 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x371dbd7c gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x373040b9 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x3735e050 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x373f4eec fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0x375c5340 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x378ab84e devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x37ac50da sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x37d2a40f sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x37d2c2c5 rh_dump_blk +EXPORT_SYMBOL_GPL vmlinux 0x37ef4a9d __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x37f114ab irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x37f91464 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x37fc941b ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x3806178c irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x381ee018 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x381f090d list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x3834e85f kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0x3840a54e clk_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x38438169 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x384a6981 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x384fa707 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x385926c9 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy +EXPORT_SYMBOL_GPL vmlinux 0x38782879 cpu_remove_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x389dda32 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x38cbb0bc wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38e8e2db extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x38f39f19 bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x39073b30 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x392add00 dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x392fe739 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x393cb077 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x394511cc sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x394689a3 blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x39597d25 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x395ed48e __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x39617b07 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x3962325d irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x3973c2e2 tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x397b55a7 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x398f3807 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0x3999ce1b devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x39ad351d shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x39c62f63 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39d19384 gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0x39db1b2f __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x3a1232ca devres_find +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a2b1e9e regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x3a316e76 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x3a459553 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a69db1a tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x3a74632d regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x3a7bc905 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aa6c582 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x3abd2db6 wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3ac14a92 __netlink_alloc_skb +EXPORT_SYMBOL_GPL vmlinux 0x3ac294b4 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ad0e201 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x3af7bee4 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x3b00840d gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x3b0a8687 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x3b0c643f pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x3b3edcec blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0x3b480c76 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x3b56f694 pcibios_unmap_io_space +EXPORT_SYMBOL_GPL vmlinux 0x3b7b0c22 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x3b92b1eb tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x3b993167 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x3b9e7697 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x3ba02065 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3bafd75a trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x3bbab52e tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x3bcf600a blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0x3bd574e9 kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0x3bd8ecc8 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x3c2188be max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x3c50602f scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x3c7a8d48 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x3c85e510 tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3c978fa1 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3c98d912 regmap_write_bits +EXPORT_SYMBOL_GPL vmlinux 0x3ca008df sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x3cc651f0 call_filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cf2dd96 realmode_pfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x3cf441f6 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x3cf75363 rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3cfc3a81 pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x3d0c6565 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x3d1cb1ac of_reserved_mem_device_init +EXPORT_SYMBOL_GPL vmlinux 0x3d223d99 blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x3d3351fc devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x3d3cdf44 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x3d612305 iommu_direction_to_tce_perm +EXPORT_SYMBOL_GPL vmlinux 0x3d68e31e of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x3d8736a8 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x3d8c29d7 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x3d9431f1 __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0x3da67a23 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x3dae419d kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0x3dc2ae94 bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dd10ff7 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x3dd1a112 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3ddcfa97 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x3de006a4 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3df1505e __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x3df4de92 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x3dfa3277 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x3dfc436e percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL vmlinux 0x3e218887 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x3e2c4dfe crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e4fa778 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x3e54a57f usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x3e5a0239 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e77fdca blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x3e8e3deb rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x3ed5fc90 regmap_field_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x3ee4359c nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x3eff6e43 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x3f081e66 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x3f1cb321 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0x3f35117d ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x3f518e9a ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x3f6248d8 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x3f7a40e5 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x3f7c32e7 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3f7ed1e0 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x3f9fcfc2 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0x3fafc794 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x3fb14423 md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x3fb89a6b crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x3fd733aa usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x3fe7e4a7 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x3fef7431 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x3ffe8e32 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x4009a4b4 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x402034b3 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x40318da2 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x4031f893 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x4034afe9 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x40592985 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x405f35ad sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x4076d785 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x408083ec rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x40a2872e cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x40a31112 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40af27be regmap_fields_write +EXPORT_SYMBOL_GPL vmlinux 0x40d2c17f fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40dd8f65 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x40de65b3 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f43209 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x411ba165 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x41271c65 single_release_net +EXPORT_SYMBOL_GPL vmlinux 0x412975a2 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x4149d69d reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x41bc17ba blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x41e988c9 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x41ed673e dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x41f0a9ca simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x420e9786 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x422a7139 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x422bdf24 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x4237cffc led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x426b2c92 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x427122b7 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x427de547 pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x42a6e512 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x42dae139 raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0x4325b305 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x433eb9ee usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x43455d5a tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x43561459 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x43597a28 of_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x4375d680 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x4388e539 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x438f55a2 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x43969dbe rh_alloc_fixed +EXPORT_SYMBOL_GPL vmlinux 0x439d8a14 fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0x439db97e cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43a5b6d9 nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0x43b466b0 gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL vmlinux 0x43bb8d05 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x43c8b64e relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43d46fb3 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x43db5d33 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x43e180c1 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x4401ecb8 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x442742b2 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x4438d98f ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x445b282d devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x446e3c47 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x449ad9d1 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x449add42 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x449bbcaf ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44c37a35 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x44c77df7 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x44f2833a platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x450fb522 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x45206a8c ping_err +EXPORT_SYMBOL_GPL vmlinux 0x453b9a1f device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x454407a1 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x4582bd63 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x458b892f of_pci_msi_chip_remove +EXPORT_SYMBOL_GPL vmlinux 0x458eaa2f call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x4592a912 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x459f8687 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x45aa269d blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x45b665b6 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45e35ce5 blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x461a6031 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x463f4e6c irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0x463fffb2 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x4688c96a usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46afa9c4 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x46c655cd cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x46cc2e32 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x46d27d5c device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x46de6582 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x46ea3098 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x46f46e65 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x4700e1ef regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x471150fe wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x474f0479 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x478d83fa ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x4798d27d device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x4799ba1a get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x47a38a19 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47b14072 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x47bd002d fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x47c4f7fc nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47fe1363 rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0x4817990f __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x481ddcef mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4829e8b9 tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x48445842 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x484c7ee9 cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x4854dc94 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL vmlinux 0x4860b57d tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x4876571c percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x48784c0f to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x4894ecfb sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x48a1e234 kvm_vcpu_uninit +EXPORT_SYMBOL_GPL vmlinux 0x48a461ad usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x48a77202 pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0x48abd62f __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x48b94052 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x48cebb65 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x48d3ade8 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x48f85760 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x4909aff9 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x49157f27 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x4918425d devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x491e6123 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x494e95f2 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x49542343 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x49565350 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x495f1527 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49e05d76 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49f58034 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x4a13ab9e xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x4a1b7dc5 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x4a36e45b generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x4a41c0b2 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name +EXPORT_SYMBOL_GPL vmlinux 0x4a52589f ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x4a7f498e device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x4a82e8a2 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x4a8d2c9c virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x4a90160e bprintf +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ae50fb7 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x4afefea3 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x4b0bbd1c __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4b0da9ce pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x4b0e7f03 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x4b284144 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4b590e77 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x4b802a86 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x4b89bb5c clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x4b98827c rh_init +EXPORT_SYMBOL_GPL vmlinux 0x4bb1190f usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x4bb1da78 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x4c082165 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x4c0ab4ff bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4c13920b ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x4c2aa17c unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x4c38b6ef pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x4c3a1476 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x4c483cf9 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c645f9e static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4c813b84 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x4c8bd3e3 kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0x4cd838b4 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x4d03c2d3 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x4d07c9ad scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x4d0f34e0 of_pci_find_msi_chip_by_node +EXPORT_SYMBOL_GPL vmlinux 0x4d7ae534 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x4d887286 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4dad674b ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x4db08b9a ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x4dcb6457 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x4dcc94a9 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x4dce70d1 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4df5ce21 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x4e0a7933 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x4e0d8ed5 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e17fca2 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path +EXPORT_SYMBOL_GPL vmlinux 0x4e3e8996 of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x4e5f3efa pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4e61b9d9 pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0x4e667ddf init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x4e847c42 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x4ec2ffb1 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0x4ed4adcc __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4efed558 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x4f05925c devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4f07e946 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x4f0a432d scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x4f0c8241 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x4f0e5783 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x4f1c7f9a cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4fbd193b key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x4fc77666 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fec03ee power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x4fed1193 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x500343e9 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x50082262 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x50084462 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x5008d2f6 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x500c2003 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x50259f7e regmap_fields_force_write +EXPORT_SYMBOL_GPL vmlinux 0x504b7f40 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x50692a2a component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x507596d8 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x5080f5ff __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x5083f097 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x508638b3 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x50895a5e blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x508d9328 of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50ca28be wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50f17a8d pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x50fae510 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x50ffbcca set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x5114c2e4 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x51467922 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5150c1b7 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x5156cbd9 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x5192d282 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x51aa9890 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x51b65a26 rtc_lock +EXPORT_SYMBOL_GPL vmlinux 0x51b8262e tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x51ce9bc0 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x51dcb9ce pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x5205e64d disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL vmlinux 0x52200b49 stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x52260c73 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x522f538b tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x52512bfe securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x525d8c42 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x527d8cea dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x52924f20 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x52a58447 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x52adca81 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x52b33807 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x52dfbb43 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x5302e271 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5316d06f __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x5335dd11 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5354f8cb cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x538e66fe sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x53be0748 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x53c4aaab scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x53e4fad8 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x53f46d16 agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x542a53e7 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x542a5fc8 kvm_vcpu_kick +EXPORT_SYMBOL_GPL vmlinux 0x5435f124 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x5443edd7 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x5458fa2f crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x546b4a00 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x546c5565 ppc_tb_freq +EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54af2b26 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x54cf799f skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x54dfa2f8 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x54f9964b wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x55028ba2 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x5534ab14 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x55369241 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x557149af sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x55783335 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x55b2ae8d usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x55d5316b dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f3652d ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x55f51ef3 alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x55fad6b0 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x560c1d13 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x561ac767 crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x5622c803 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0x56a7ebec init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x56d48b89 dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56d81ad8 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56f4afa2 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x570e7e45 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x57190b2d vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x57322b36 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x575c5f94 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x5778d6b5 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x57842409 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x578be614 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x57976cc3 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x579cae5a blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57aa2c41 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57c4778c raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x57de9560 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x57f65611 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x58110346 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x581172ae tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x582482a0 inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x58336d6a shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x588aecdc get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x588d1dd8 tpm2_startup +EXPORT_SYMBOL_GPL vmlinux 0x5892f832 release_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5894ba6b scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x589fdfd1 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x58e24708 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x58ff87b4 regmap_update_bits_check +EXPORT_SYMBOL_GPL vmlinux 0x5901e098 dma_request_slave_channel_reason +EXPORT_SYMBOL_GPL vmlinux 0x595fd6c4 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x5962b087 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x5967017b rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x597ec69b smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x59914496 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x59a3970b crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x59ad2a74 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59b50967 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x59c2ee25 crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x59f6659a sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x59fbf9cb nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x5a1cba30 irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0x5a33e053 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x5a38013c cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x5a48a7db blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x5a6f05c4 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a79402b mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a987e09 kvmppc_emulate_instruction +EXPORT_SYMBOL_GPL vmlinux 0x5aad1aa9 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x5ad4f0b9 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x5afd05f6 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x5aff5ef8 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0x5b0a4aa9 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x5b3d978b blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x5b4a811f scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x5b4e90b9 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x5b53b3ea dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x5b58b8e5 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x5b6ffde4 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x5b7de514 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x5b8cb480 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x5bc1c084 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x5bcd473a tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5be85861 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x5c04e511 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x5c1a3bf6 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x5c1dcdd1 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x5c28e329 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x5c384314 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x5c3edae5 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x5c54c60b xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c654dff part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0x5c6952da of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x5caaa640 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5cc8b49a pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x5cc978d3 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x5cdc90ab pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x5ce9906a wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x5cec5449 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d404329 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x5d4f3c8e blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x5d5316d9 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x5d5f5dfd led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5db6211c kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0x5dbd24b7 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x5dc58fe3 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x5deb3573 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x5dff2269 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x5e030e2d devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x5e120543 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e5de698 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x5e620715 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x5e653be4 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x5e774d63 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x5ea1283f gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x5ea80666 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x5ee7542e reserve_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5eecdf34 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x5ef1c230 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x5f067caf udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5f226035 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x5f2407c7 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x5f30af19 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x5f352c4b cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x5f416079 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x5f49ed71 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5f6c15a9 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x5f8edc7c bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5fbc6479 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x5fd4235e devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5fe78362 pwm_disable +EXPORT_SYMBOL_GPL vmlinux 0x5ff4530c da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x60032715 napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0x600518aa usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x60071ede trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x600dd572 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x60467b06 btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x6052ed40 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x60543236 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x60634ea5 nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x608d4b96 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60bacab5 rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0x60cca309 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0x6122e4bd of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x612d518d usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x613a0842 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x6154c1bb of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x616251cd __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x6163e53d usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x6165dd8d pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x616b07ac usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x61743c27 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x619bb1cd dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x61a90c54 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x61d5cc0d inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x61f52221 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x6214b16c pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x622299f6 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x622cc794 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x623765b0 of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x624a8807 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x624cef6f nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x62796ef4 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x627cf5c9 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x62bd5a6d __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x62cf6ac7 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x62e8954c pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x62f00ba1 regmap_fields_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x63038bf1 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x63122612 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x6327c131 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x63309f49 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x6334a8b7 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x634102de perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x634caa23 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x637ce7b7 cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0x638900e7 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x6397929a dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x63a1817a nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x63c38aee __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x63d178ed ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x63da2e03 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x63f14ebe io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x6406da0e __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6416dc1a regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x6428da4f rh_attach_region +EXPORT_SYMBOL_GPL vmlinux 0x64399f9c nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x6456329e sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x6463a92e usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x64679362 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x646a3b84 pcibios_add_pci_devices +EXPORT_SYMBOL_GPL vmlinux 0x646dfa91 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x64ac2b20 wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0x64b7c26d dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x64b819fb ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x64babd14 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x64d4b04a udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x64e80dfb freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x64eae574 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x65308f57 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x655c23f1 user_read +EXPORT_SYMBOL_GPL vmlinux 0x65781593 extcon_set_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x65992d1e sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x65a13d7f dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65e84528 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x65f39154 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x6601a4ac fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x660ea006 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x66100d89 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x662c783b __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x662d02fc fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x6638755b __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0x6640b4c4 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x664b460f ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x664ef420 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x66611729 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x66844103 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6691d372 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x6698ab1d tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x669da1fd kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0x66afb53b unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66d3a89f sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x66d4f42f mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66d8a483 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x66e3137a __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0x66e4e6a9 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x66e8c351 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x66e8ec6f rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x66ed62a2 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x66ef275e kvmppc_pr_ops +EXPORT_SYMBOL_GPL vmlinux 0x66f1b8db irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x66f6527b __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x670ebc0a pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x67131f87 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x67189829 mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x671e70c4 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x673c10ad tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6763c1cb regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x676ce872 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x677991df pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x6779c18a i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x678a4105 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x6798bf68 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x67c3159c tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x67ddbf31 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x6868ae68 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x687d5311 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x688d0f03 __bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x68a9c0a3 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x68b5f3da __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x68b6a825 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x68d157f5 __module_address +EXPORT_SYMBOL_GPL vmlinux 0x68e1322b usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x6969a208 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x697cbbb4 threads_per_core +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x69a92753 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x69b2279b usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x69b3c328 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x69b69380 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x69eb80ce da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x69f2446e sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x69f372cd phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x69f7a43f crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x69f95f25 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x69fa3a4b pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x6a137242 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x6a34e194 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x6a35060b usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x6a36125d irq_find_matching_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a545736 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a6b5bce crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a936feb system_verify_data +EXPORT_SYMBOL_GPL vmlinux 0x6a9bd094 skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0x6ab4234e relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x6abdae05 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x6acb8d84 ppc64_caches +EXPORT_SYMBOL_GPL vmlinux 0x6acea0c5 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x6ad22552 kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b375b2d cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x6b3d24ad serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x6b48a910 switch_booke_debug_regs +EXPORT_SYMBOL_GPL vmlinux 0x6b4b837e usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6bdbe4ab __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x6bedb63a inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x6bffb76b usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c4bed6d dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x6c516f21 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x6c638d67 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6c891eb1 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x6c8bcd8a of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6cd7c412 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x6ceb9839 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x6cf01167 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x6d043d52 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x6d1bc7eb relay_close +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d3559d3 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x6d43f9cb irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x6d675ae8 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x6d7127e9 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x6d74237c __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x6d95c178 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x6d9a1d2f device_attach +EXPORT_SYMBOL_GPL vmlinux 0x6db4005c handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e051f66 cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6e17e7ca da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6e2361e6 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x6e2a1281 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x6e379526 kernstart_addr +EXPORT_SYMBOL_GPL vmlinux 0x6e3a1f3b clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x6e3a99d3 __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0x6e5829b7 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x6e65913e nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x6e7c9485 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e91c278 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x6ea4287d devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x6ee21846 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x6ee392dc i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x6ee901af wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x6ef69f0e blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x6f03f5c9 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x6f049ead class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f6d5022 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x6f74a7f1 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x6f76d4be sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x6f7dc8b8 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x6fe0a9f6 blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6ff0459e register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x70056f5c get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x700eac77 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x701dde11 shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0x702bbf75 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x7039e557 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0x703ac45e ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x704afbf2 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x7096c1ef sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x70a789a2 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x70bc786c securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x70be17fb gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70ceaa5f cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70e4725a dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x710a5a63 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x710aedc7 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x714f626b gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x71558004 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x71621fe0 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x716eee96 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x718334fc __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x7192f992 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x71990938 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71a2205a skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x71a421eb watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x71a770d8 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x71b7fb57 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x71d2fc51 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71fe3ec1 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x720a3613 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x720b1aa3 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x72580986 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x726a6e3c regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x727a2b75 fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x729887c4 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x72a0b915 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x72bb52a6 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x7300eb4e rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x730929e2 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x733624d4 blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0x733e343f debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x735efa42 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x73760ec9 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x73784f73 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73af362a ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x73c1cfbd devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x73d19602 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x7422dc45 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x74a542a8 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x74ad600d pwm_enable +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74b6a4e0 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74c49ec9 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x74dc78dd ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x74e94a4e devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x750a44ef devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x75177c8c kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x75329035 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x753cbc96 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x757b49d2 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x757c950b ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x757d0e68 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x75896ded dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x758eb565 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x7595e4b0 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x7596b820 i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x75c9d8c3 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75eb484c rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x75f2a044 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x75fb9c91 kvmppc_emulate_mmio +EXPORT_SYMBOL_GPL vmlinux 0x761ed6ec hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x762c0858 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x76372145 x509_request_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x7648c4fa ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x766267c2 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x76959563 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x76a2e428 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x76b01148 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x76cab65f inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x76d945a6 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76e2c0b1 pcibios_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x76e6cc21 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x76fb09fa devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x77121165 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x77208bae regmap_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x7730dec4 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x7732d094 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x77386044 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x773a93c5 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x775719ff rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x775b58ae mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x7764ae6c dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77bdd654 thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0x77d79e0b power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x77df9215 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x77ff7cab devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7807f09e usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x782a3681 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x782c63ec dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x78537587 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x78539f1c ping_close +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x78694b87 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x78856e6a power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x789f5aa9 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x78abdb28 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78cc5bec hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x78e08b0e ref_module +EXPORT_SYMBOL_GPL vmlinux 0x791eaf2c wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x795b6af0 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x79712de7 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7985ecfa wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x79b98e82 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x79bda7a8 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x79c480da rh_dump +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e14aac vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x79eed981 dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0x7a0db8f5 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x7a1fb734 dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a642402 bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a9c713f usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x7aa64803 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL vmlinux 0x7b02cdce devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b179352 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b3c8ee4 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x7b4f0220 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7b51663e regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x7b70ed5c pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x7b7661da devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7b8b75e7 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x7b8da136 rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0x7ba2f210 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x7bf83057 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x7c004e17 user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x7c15a5e9 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0x7c1722f6 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x7c184122 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x7c1d244b gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x7c7f1b84 ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x7c82a862 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x7c899c9c pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x7c91a61d get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7ca1a35d fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x7cbbba8b aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x7cc34857 dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0x7cd23815 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x7cd437ad __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7ce3daf1 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cedf677 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x7cf208be pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d0c2ee5 kvmppc_handle_store +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d9d220d dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x7da4c6ce component_master_add_child +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7db096af scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x7db66116 of_display_timings_exist +EXPORT_SYMBOL_GPL vmlinux 0x7dbb6f03 blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x7dc1e388 alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7dee3994 devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0x7e1609e8 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x7e17ba7b klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x7e183549 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x7e2306a3 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x7e404bfb mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e6bc4ad pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x7e6d84e4 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x7e710a08 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x7e7add2a irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7ea1a2bc probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x7eaf4d36 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x7ec8064c ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x7ece4132 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x7edebeff hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x7ee0f93e ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x7f008202 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7f13d491 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature +EXPORT_SYMBOL_GPL vmlinux 0x7f331d59 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x7f3c53f3 tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x7f41cbad relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x7f5b9c31 scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0x7f6f45f4 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x7f7141a9 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7f7bc710 klist_next +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7fb6ab91 pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0x7fb913bc dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fcc3cac sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x7fd01fe7 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x7fd7c1e8 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x7fdd9128 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fdf54e3 mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x7feda1d9 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x800003df noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x8013a207 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x80146d7b attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x804ea02d __find_linux_pte_or_hugepte +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x80767e09 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x807a72b1 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x808ef264 dbs_check_cpu +EXPORT_SYMBOL_GPL vmlinux 0x80aeda50 dax_clear_blocks +EXPORT_SYMBOL_GPL vmlinux 0x80baf9fa page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80ce1fab blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x80d10466 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80e9ec03 mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x8114b8d6 md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x81474aa7 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x8152e111 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x816da4e3 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x81a40dc1 nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x81e19178 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x81ea841d ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x82191f33 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x822d84c4 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x8237d054 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x827a627c device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x8286a27f palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x828c6c33 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x82a72004 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x82c22716 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x82cdb077 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82e25d90 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x82f5475c dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x82f91748 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x830b6d43 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x831a73fd crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x832f61a9 of_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x8342a657 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x836d61d0 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x83760086 devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0x838397e9 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x83cb9426 crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x83dd9503 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x83ef2b91 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x83ff25b9 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x84285847 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x84353b9a pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x84368bed __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x847c2719 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x84913b55 __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x84a9ebee pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x84b2ad42 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84c9e7ca usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x84d6b8c7 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x84f66b07 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x851fda9c srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x85224c21 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x85743964 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x85b64d85 extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85d47418 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x85dbfcda usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x85ebfb9c devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x8624be13 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x8666a7c5 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x867362d5 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x86ba7b00 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x86c77b4a ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x86cd39ef xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x86ec2a73 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x8702e548 process_srcu +EXPORT_SYMBOL_GPL vmlinux 0x8727a861 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x8771c411 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x879eb23c usb_string +EXPORT_SYMBOL_GPL vmlinux 0x87a03773 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x87aff828 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x87b02e19 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x87b32f62 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x87bdec86 crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0x87d96071 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x87f46db2 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x8804af3d usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x881ce99c tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0x88362d5c inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x8841bd5c unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x88489161 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x885e8514 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x886b759c ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x887c7988 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x887ecee4 queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x888306ad tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x888348ce __put_net +EXPORT_SYMBOL_GPL vmlinux 0x889bf32f regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x88a1a615 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88bf5c34 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x88da1741 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0x8908709f rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x891df469 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x8929b8c8 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x896fe513 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x8972ae3c firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x89a91269 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89bec510 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x89fd1d21 save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0x8a011427 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x8a495196 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod +EXPORT_SYMBOL_GPL vmlinux 0x8a7d1b3d trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x8aa1a91f adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8adbcc03 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0x8add8b6a skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x8afc6b44 trace_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x8b03c71a __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b4f254c crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x8b69e125 devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x8b70a7d9 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x8b70e8ea __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x8b7cd80b security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8b861038 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8b9058d6 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x8ba02978 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x8bac9c5f dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x8beaeaaa class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x8beafaec pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c0560e9 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x8c0bf7f0 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x8c21f208 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x8c2c43c7 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x8c352c5a regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x8c5d45e1 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c651ec2 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c8ead2f vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x8c9d5040 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x8caa4c40 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8cae54b5 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8cb4334b event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x8cc41d58 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x8cc57d1f kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x8cca38d9 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x8cd43111 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params +EXPORT_SYMBOL_GPL vmlinux 0x8ce94961 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0x8cea765f memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0x8ceedcc8 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x8d0bbc51 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x8d249ba6 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x8d3bb53d sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x8d3dae02 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x8d97beb4 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x8d9b590c dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x8da01274 kvm_get_pfn +EXPORT_SYMBOL_GPL vmlinux 0x8dab05df __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x8dab4462 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x8db9aa01 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x8dc0fc96 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x8dc8bcee relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x8dcc4d32 gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0x8de93b6f nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0x8dfc48ee irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x8dfd5821 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x8e052b20 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x8e189ea2 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x8e1c7d74 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x8e1cd06f kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL vmlinux 0x8e2b25c2 videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e3befeb regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x8e51ad1d nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x8e51ce70 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0x8e547e03 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x8e6f89ba ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0x8e7f2922 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x8e8092e0 kvmppc_sanity_check +EXPORT_SYMBOL_GPL vmlinux 0x8eb0706f crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x8ee00217 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x8ef9ee37 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f23e5c5 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x8f29c8be usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x8f3b3ff6 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x8f4ed87a __sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x8f5e4316 regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f70b03e swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0x8f7e4ea3 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x8f95107f dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x8fa6352f set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8faf39dd stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x8fb6a18b phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x8fbe3213 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x8fc1eaf4 cpu_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x8fc3dcd6 pcibios_free_controller_deferred +EXPORT_SYMBOL_GPL vmlinux 0x8fce990c fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x8fced602 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x9028a76a of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x902f07ce serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x9040a150 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x904c46e5 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x9055334a _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x906449ae key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x9077d5ea usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x909f560f arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90a3dfea ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x90c54924 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x90d96751 tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x90fd7619 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x91003925 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x912989f8 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x913fa1be inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x913fdd0c crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x91424ec1 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x914b3b2c extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x915a8599 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x9179f10e blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x918cd2c3 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x9195aec9 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0x919f2909 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x91a9df45 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x91bc7b88 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x91bc8cbb max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91c7ee5d get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x91d27347 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x91d3fb6e securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0x91e60f70 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x91f0c992 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x91fd5776 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x92058576 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x92595a68 kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x92622931 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x92740b71 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x92b862ce perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x92bf16ac spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92f71d89 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x93331d72 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x93524dc3 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x93570ad6 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x936a65f5 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x9381b227 pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0x939878a5 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x93a11170 extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0x93a6a4b5 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x93ae6fdd usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x93d20a20 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x93eada89 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x9406e4f6 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x940fc1f4 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9425afd2 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x943a14d8 __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0x9444c4d5 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x944bf9ce bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x946f734e disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94a79ebe tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x94ac9eb0 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x94b4b397 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x94d972b7 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x94e371e6 virtqueue_get_used +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x9523afc6 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x9559a0ed inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x958a20a6 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x9599b9cd irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x95bbe282 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95be7d1a get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0x95c89eba rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x95d740b0 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x95eda5ea pcibios_claim_one_bus +EXPORT_SYMBOL_GPL vmlinux 0x95f11264 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x95fbfb4f extcon_unregister_interest +EXPORT_SYMBOL_GPL vmlinux 0x960483ad split_page +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9663a5bb trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x96b0e8c8 i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0x96b68379 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x96b801a9 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x96b8d919 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x96bdd174 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x96e0b078 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x97015c3d ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x970d19da pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x971ea716 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x9735f061 register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x974910c1 reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x974fcf1a fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x97713081 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x97728b17 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x97852356 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x97951930 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x9799b212 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x979e5c99 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x97bafddb inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x97c41516 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x97ca90a9 crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x97d94259 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97f2146a ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x9801ed0a trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x98227b76 fsl_spi_cpm_irq +EXPORT_SYMBOL_GPL vmlinux 0x9825d5e0 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x982c9e17 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x982cd486 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x983c7494 rh_detach_region +EXPORT_SYMBOL_GPL vmlinux 0x983f7c0c __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x98599121 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x98944eb3 dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0x98a02a70 register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x98b29028 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x98f9f73d fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on +EXPORT_SYMBOL_GPL vmlinux 0x9913be52 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x99756a3a subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x999aec23 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x999f5c77 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x99ad7ca5 xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99c087ab single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x99dbac53 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x99ff97ba regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9a009e6b devres_add +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a2b2c6a xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x9a2f1dbc da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x9a3b20f1 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x9a41ca7a regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9a49d937 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x9a678576 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9aad6540 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x9ab09b31 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x9abeb259 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9b1148b8 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x9b3206ff ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x9b53616f spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0x9b736b8c ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x9b922f1a usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9bb873a0 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x9bca03ca ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x9bd61020 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x9bddb57f module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9c68fe18 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x9cad43fd shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x9cbe47c2 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x9cc0364e crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x9cd42733 of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0x9ce749b1 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x9d060b0e trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x9d55ad33 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x9d6864ae __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x9d7d628c fsl_rio_mcheck_exception +EXPORT_SYMBOL_GPL vmlinux 0x9d843b89 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x9d84ea8d trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x9d8d2542 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x9d9d5489 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported +EXPORT_SYMBOL_GPL vmlinux 0x9df21a7d rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x9e0c45a2 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x9e152c30 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e482ce3 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x9e55fda2 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x9e62c079 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x9eccacad device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x9ed1d463 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9f35b604 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x9fa12c63 edac_subsys +EXPORT_SYMBOL_GPL vmlinux 0x9fa3b307 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x9fbb1009 ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x9fc1b4be crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9fe97c24 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x9ff08f06 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x9ff36269 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x9ff8f11b ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0xa01fa46d dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0xa0208e02 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xa0247320 __sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xa039bb0b crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa0546e48 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xa071e996 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xa0902e51 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xa092eaba dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xa09db322 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0xa0a27fff pci_address_to_pio +EXPORT_SYMBOL_GPL vmlinux 0xa0a5a5da smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xa0afbb84 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0xa0b0422d virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0xa0b8bd27 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xa0d4c87b hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa0e824f6 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xa0e853b6 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa0fd178d clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0xa102bb79 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xa11a374e ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xa11feaff dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xa12d3ba5 debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0xa16677c7 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0xa1689a3c __nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xa16c8063 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xa1722c2d usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xa174b0c2 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0xa17ff3ef __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa1976e45 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xa1a42c63 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0xa1aacef6 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xa1ab318d bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xa1d226be mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xa1ec7976 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0xa1fb7043 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa2128052 i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0xa213abca skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xa219527c of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0xa22f7eba wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa25683ec pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2718017 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa28aaf29 rh_create +EXPORT_SYMBOL_GPL vmlinux 0xa2966fdb nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xa2ac5519 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2cbd550 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xa2cd4684 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xa2e90034 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xa2ff2f90 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xa3068b72 of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xa334e126 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xa3402d45 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa344c474 tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xa34734cf sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xa34aa66a regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0xa34eacac pcibios_free_controller +EXPORT_SYMBOL_GPL vmlinux 0xa35ac5a4 of_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xa3604874 of_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xa36d3ba3 wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0xa36fd5a4 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xa38223f0 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xa384918b pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a2d9af walk_system_ram_range +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3c63719 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0xa3cf7f41 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xa3d35a2a init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xa3d6b714 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0xa3e16693 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa42a19e2 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xa466f78b pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xa4796972 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa48f6b32 fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0xa4951962 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xa4af09f6 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xa4ce1896 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0xa4f49317 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xa50144ae kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0xa53b1490 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0xa57ba2f6 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa5833251 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xa5b00659 ppc_proc_freq +EXPORT_SYMBOL_GPL vmlinux 0xa5b5726e gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0xa5d6f9df kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5efe460 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xa6029b47 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0xa60b803b devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xa6147827 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa64c5196 mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xa6647139 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa6888097 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa69d36e0 pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa7218b64 kvm_init +EXPORT_SYMBOL_GPL vmlinux 0xa723bf67 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0xa7318a97 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xa754beaf stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xa76c4c80 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xa76cc191 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xa7bddc8a unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xa7c05aff perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa7c0e96f virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xa7d21dd5 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0xa7d3ca73 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0xa7e65f15 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xa7e9874c gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xa7f56d8c of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0xa7ff8617 shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xa842c2ea usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa85db4c8 arizona_of_get_type +EXPORT_SYMBOL_GPL vmlinux 0xa8847020 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0xa898c32f pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xa8b5218c gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa917645b sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xa91bdf02 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0xa931b56b bio_trim +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa9376dc7 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xa948c1a9 flush_fp_to_thread +EXPORT_SYMBOL_GPL vmlinux 0xa94fb7e1 kvmppc_hv_ops +EXPORT_SYMBOL_GPL vmlinux 0xa957139d ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0xa96d6704 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xa9760bdf arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0xa991aa8b __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xa99b86eb regmap_field_write +EXPORT_SYMBOL_GPL vmlinux 0xa9adeae0 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xa9aef2e1 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL vmlinux 0xa9b3a3b2 led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0xa9bd4a7e simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xa9c51ca0 mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0xa9cb58cb kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0xa9ce341e usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0xa9e09afa regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9f04a9a i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0xaa17a2e2 rh_alloc_align +EXPORT_SYMBOL_GPL vmlinux 0xaa2eb12d led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0xaa5094e2 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xaa73a733 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xaa8233cb simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaaca3515 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xaaed93ee sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xaaf4410f sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xab1fe291 posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xab2e6905 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0xab567d31 percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xab59d373 kvmppc_free_lpid +EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab882909 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xab965a84 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xaba2db15 trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xaba9bb99 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabcef848 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xabd3d40c list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xabdfc3cc blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0xabfec465 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xac0d42bc arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0xac12a25f __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xac1dd013 of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xac250cb1 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0xac6ba9d1 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xac85d265 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xaca02c9f spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0xacb8f848 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xacc00227 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xacd28506 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0xacd58574 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xacde95f1 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0xace196c4 device_create +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xacfe997e powerpc_firmware_features +EXPORT_SYMBOL_GPL vmlinux 0xad10a30f flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xad1dfdf7 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xad22cacd irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xad4576e6 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xad6d47ef perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xad961ff2 irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0xad9960e8 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xadaa2916 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xadabd7a2 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xaded9da1 perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xadfc82c7 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xae1d25bd subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0xae2a07e3 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xae383af0 crypto_lookup_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae81922b of_overlay_destroy_all +EXPORT_SYMBOL_GPL vmlinux 0xae8cb677 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xae975eeb usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0xaed7f2b6 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xaf14f88c irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0xaf7083c1 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xaf745ea5 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xaf7e04f1 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0xafbdeea3 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xafc2682a phy_create +EXPORT_SYMBOL_GPL vmlinux 0xafc2eb82 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xaff27de4 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0xb00340b0 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0xb00b833e pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xb0418eda usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xb06b91a3 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb08cf53c cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xb0b4acf3 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0bd0ef5 bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xb0c36f60 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xb0cc2dc4 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xb0cf98c1 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb1055c48 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0xb1233333 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xb13eb354 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb162c703 of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0xb1637de1 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xb1763fdb da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0xb1978900 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xb19a7dba io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xb19c6ba3 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1b370bd __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xb1cdc275 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1e6085f sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xb1fd80f9 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0xb20364fe da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb22429e6 trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0xb23163a2 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb24a8397 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0xb24dd216 arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb272626d spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0xb2873180 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0xb298bd62 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xb2a4268d gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xb2beb5b4 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xb2e5978b device_add_property_set +EXPORT_SYMBOL_GPL vmlinux 0xb2ed1ab6 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xb317f3a8 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xb33d944d max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy +EXPORT_SYMBOL_GPL vmlinux 0xb38c4773 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xb399c0a4 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0xb39c350a preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb3a0a913 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0xb3d03889 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xb3d0714e ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb3ed9807 dev_pm_opp_get_suspend_opp +EXPORT_SYMBOL_GPL vmlinux 0xb403b06a debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xb40e79b7 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xb41fe359 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0xb45ca420 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0xb4635dc0 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0xb47c0b9d debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xb4839057 rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0xb487f60c rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0xb488588e tb_to_ns +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4cebc8e ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xb4e17425 trace_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb5052c5d inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb5127d50 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xb51a5103 kvmppc_ld +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb530c0fc inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb562dece inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0xb57c5973 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xb5848bae __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5aa10af atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb5c6494b sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xb5c8edf4 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0xb5de1c95 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb5f1b1ae usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xb60b5707 of_i8042_aux_irq +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb666376e class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xb676c81c fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xb67a7d1f sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0xb68cab1b pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xb6ac9328 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6d24651 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb6d6f290 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xb6e012ad cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6ed1033 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xb6fafdb6 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xb719bc39 of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0xb72eb550 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb770daa7 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xb77223e2 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xb786e77d percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb79ebd6c rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xb7e4bbca nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xb7ef5e6d blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xb7f3c6ea screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xb7f452f2 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb80501bd usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0xb828f761 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0xb8296bd3 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xb83aefb1 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xb83d0a95 __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0xb87dc4ce crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb891ea0e regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xb8988412 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0xb8b28d3b regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb902440d sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb911d4a4 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0xb91f1f46 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0xb9230e31 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xb92942af attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xb9343d85 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xb9451c7a dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xb94734af rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0xb97c3c2e crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xb98cc136 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xb9aaf586 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0xb9b1e777 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9c70ad7 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xba08b670 of_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xba2387b7 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba3aed93 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xba48421a of_irq_parse_pci +EXPORT_SYMBOL_GPL vmlinux 0xba5996dd crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbab03fd0 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbaca035c apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xbaf351a5 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0xbaf930e7 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xbafa42d6 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0xbafb8c86 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xbb015501 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb0d71bf bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xbb1f6ee3 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xbb336e8f component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xbb33e095 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xbb405bb8 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xbb596cd6 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbb8e0eaf pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xbb9bf3f6 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xbb9ebe0e find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xbb9f0340 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xbbc8cd05 driver_register +EXPORT_SYMBOL_GPL vmlinux 0xbbe67011 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0xbbeb8f12 cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0xbc49bde3 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xbc644749 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc6d25ab cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0xbc8e595d phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcca7c76 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbce23c08 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xbd1b8c2e usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xbd2ef279 tps65912_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xbd392776 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xbd3c0312 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd4a8c0e anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd671048 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xbd7fd5bf pcibios_remove_pci_devices +EXPORT_SYMBOL_GPL vmlinux 0xbd84b425 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xbd88d881 ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbdd74efb devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xbde8dc00 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe1c4175 rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xbe1c97bb hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0xbe234770 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0xbe2a3888 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xbe417e31 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xbe467f11 bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe886197 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbebcd541 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xbec8d1c8 analyse_instr +EXPORT_SYMBOL_GPL vmlinux 0xbecfaf75 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xbed61f64 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0xbee197d9 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xbeefef50 clk_gpio_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xbef91a6b ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf1a9c50 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xbf1cc04b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xbf255682 driver_find +EXPORT_SYMBOL_GPL vmlinux 0xbf3e01c7 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xbf3f0f35 __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbf626287 md_stop +EXPORT_SYMBOL_GPL vmlinux 0xbf66f359 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xbf9147d1 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xbfa79e6a syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xbfb91674 rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space +EXPORT_SYMBOL_GPL vmlinux 0xc02678d3 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xc026c06f security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0xc02bb77e virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0xc02bec3c usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xc030e535 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xc061367e mpic_msgr_get +EXPORT_SYMBOL_GPL vmlinux 0xc063fb28 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xc065a455 cpu_core_index_of_thread +EXPORT_SYMBOL_GPL vmlinux 0xc08092d7 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc088b56a wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xc0a35a86 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0b0af17 kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc10ef2f7 nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0xc12b554d rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xc131c79c ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xc1380db3 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc13cbce6 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc155d843 gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0xc15dbeb3 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc1ae44c6 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0xc1c79019 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0xc1cabe7d crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0xc1d81e26 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xc1e5ac4e regmap_read +EXPORT_SYMBOL_GPL vmlinux 0xc2083203 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc23069b2 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xc24dfc8d blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc297acd1 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0xc2c25342 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xc2d6108f skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xc2e8a5fb unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xc3054b92 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xc316ba58 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0xc31b9fff gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0xc33e2543 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc357923c pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xc3679a90 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc3764a3e rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xc38f36d9 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xc39f13cc devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0xc3a04506 devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc3ae3a51 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xc3bda1c0 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xc3c136b0 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0xc3e40f9e perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xc3e4e8d2 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xc3eb3feb device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xc426ac57 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc42a871e __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xc44e8bb7 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xc45005a0 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc495154a tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xc4a16a61 unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xc4bc8913 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xc4bdc3ce of_fixed_factor_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc4fd7997 __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0xc5055285 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0xc51d4371 put_device +EXPORT_SYMBOL_GPL vmlinux 0xc5232114 of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0xc52594ab __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xc529ea76 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc57024ea of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc586edac wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xc58a1687 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xc5a0debc da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xc5a2c19f idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc5cd5fe5 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xc5d9bb65 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xc5e4e6fd n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xc5ebca4d uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xc606cd3c boot_cpuid +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc627431a alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc63e7d93 static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xc6407778 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc6693678 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xc679741d cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xc68aa252 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xc6915bed __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6c71856 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xc6fb0df0 kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0xc70e4b59 kvmppc_claim_lpid +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc75f8fc4 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0xc768e1bc inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xc78ca7b3 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7bbdb02 md_run +EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer +EXPORT_SYMBOL_GPL vmlinux 0xc7d1b02f thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0xc7e0fec2 of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xc7e2dc7d crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0xc7e38e2d kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7eaf474 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xc7edae64 dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xc7ee798b wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc7f73d17 devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xc820d82e uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xc860809e cpu_add_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0xc874b05c rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc8889ee7 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xc8a27df9 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc8e7e656 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc914a8b9 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0xc9163e8a percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0xc9195da0 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0xc93bd0db pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xc9543f2c syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc95d41e4 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc9714625 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xc974d676 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level +EXPORT_SYMBOL_GPL vmlinux 0xc992e896 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xc9989e5b dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xc9aae69b device_property_present +EXPORT_SYMBOL_GPL vmlinux 0xc9ace1be debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xc9b7dbfd dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xca16bf16 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xca299134 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0xca3f72b6 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xca599360 early_find_capability +EXPORT_SYMBOL_GPL vmlinux 0xca6ee167 skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0xca70e027 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xca7a9f54 tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xcaa08f33 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0xcaa17893 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcadcbe36 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0xcae474aa register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xcb5491d3 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0xcb5ee621 hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xcb6694bd dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0xcb6ea9ad dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0xcb75d491 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xcb85d2ab tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xcb8ae92c ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xcb946c1b phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0xcbb1f64e gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0xcbd17c6b kvmppc_handle_load +EXPORT_SYMBOL_GPL vmlinux 0xcbdfda3c pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcbf793af class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc0d746d trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0xcc0e20d7 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0xcc0f1009 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcc1920cb crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xcc3b42b2 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xcc44961f kvmppc_alloc_lpid +EXPORT_SYMBOL_GPL vmlinux 0xcc46f37f ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xcc4f3bca tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcc98cb6e dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xccae9ebe ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0xccbbeaa9 bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccec82ce clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0xcd04a4db usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0xcd1447cc blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xcd2c05a9 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xcd5c4502 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xcd87479b get_device +EXPORT_SYMBOL_GPL vmlinux 0xcd881d3d kvmppc_prepare_to_enter +EXPORT_SYMBOL_GPL vmlinux 0xcd8fd097 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcda06d70 phy_init +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcde80876 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xcdeaa1d0 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0xcdfddbdc i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0xce151a36 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0xce351d08 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce76d746 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xce8072f9 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xceb22755 mmput +EXPORT_SYMBOL_GPL vmlinux 0xcecc5470 digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0xced95a98 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcf1d1700 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xcf244a19 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf5b8976 of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0xcf6ad24e led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xcf757f7b scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0xcf762486 of_pci_msi_chip_add +EXPORT_SYMBOL_GPL vmlinux 0xcf9636e6 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xcf9cb953 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0xcfaafe52 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfc4ddd9 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfd3221a clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0xcfe4b01d wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xcff3fcdf wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xd0072aee stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xd032d33b usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd03dc9ef power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd0685ef9 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xd07f50ac blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd0a281d6 fb_sys_write +EXPORT_SYMBOL_GPL vmlinux 0xd0be93c2 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd1451a19 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xd1468d8c crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xd15016d6 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xd15da468 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd1926669 irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xd19e4a54 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0xd1d12ecb device_del +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd2022821 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd238f9c0 virtqueue_get_avail +EXPORT_SYMBOL_GPL vmlinux 0xd2398a48 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xd23fea62 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xd245d181 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0xd25205ed hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd261839c regulator_can_change_voltage +EXPORT_SYMBOL_GPL vmlinux 0xd26c82d1 gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd27e102f _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0xd2817892 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xd28b8ed2 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0xd292cfad bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd296c09f devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xd2aec508 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0xd2b455bf blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0xd2cab963 swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0xd3360c16 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0xd348d17d ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xd39087aa irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xd3d83c39 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xd3e5a06f wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd404a937 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd4078689 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd426378f ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd43fed6c devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xd4487fd5 snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd44cce3e kvmppc_st +EXPORT_SYMBOL_GPL vmlinux 0xd45b6147 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xd476c299 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xd47ea4ca blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0xd4a93f23 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xd4b1e3e3 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd4bd66a0 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4cb297f gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0xd4db062c blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0xd4f39ed8 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0xd56b5f64 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0xd586a836 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0xd5a87c92 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5cc6675 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xd5f9d1fa spi_setup +EXPORT_SYMBOL_GPL vmlinux 0xd5fdb2a5 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd61c6f65 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xd61caf7f wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd627e6ea skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0xd6447718 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0xd6464d21 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd68f1306 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0xd6d9c42e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0xd6e0075d reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0xd6ebb667 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xd6f603ae ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd72bcef4 swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd773e6f1 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd7b86951 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xd7c32dc0 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0xd7db9c83 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xd7e4449e srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0xd7f16d75 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0xd7fc3e98 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0xd8101df1 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xd8143a8b kvm_clear_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xd8177229 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd828a786 unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0xd82e7379 rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0xd830e6a1 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xd844ea60 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xd862ba2b __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd8719b02 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd88354ec shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0xd8a2260c devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd8a8bca8 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0xd8ad103b device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xd8b11949 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0xd8c2b0bc platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xd8cbb689 rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd8ccefe3 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0xd8ddd455 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0xd8f9b4d2 pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0xd93430b7 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xd93e8e0e of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0xd93f1ad2 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd94aa457 display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd976af07 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xd9a1075d virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xd9c45886 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xd9c97a38 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xd9d8502f rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0xd9d99c03 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0xd9dd44ac sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0xd9eb352f wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9f4d09d pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0xda028ed1 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xda070ff6 reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0xda0a4d22 mpic_msgr_enable +EXPORT_SYMBOL_GPL vmlinux 0xda1c9a5c usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0xda2aacd9 fsl_spi_cpm_bufs_complete +EXPORT_SYMBOL_GPL vmlinux 0xda3fac3d virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xda50ac66 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xda8cb2e5 threads_core_mask +EXPORT_SYMBOL_GPL vmlinux 0xda9beed2 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xdae715e0 videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaf8844d rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xdaf9af8e list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0xdb0b8b55 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xdb30cd3c platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb7647be usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xdb87f075 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb91e05c tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xdbd499e9 spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0xdbdc6f5d vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0xdbe8f0e6 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xdbf2cd58 devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xdbf4f2a5 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0xdbf68bf2 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc33f0b9 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0xdc3bad6e ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0xdc6b5673 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc85d938 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0xdc8b2acc devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xdc9dc712 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdcf057be irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xdcf9cf3b __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xdcff804f ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xdd249ef2 tpm2_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd39d087 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xdd57e2b5 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0xdd729424 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xdda623d2 pwm_set_polarity +EXPORT_SYMBOL_GPL vmlinux 0xddac6ca6 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xddacdeea fsl_spi_cpm_init +EXPORT_SYMBOL_GPL vmlinux 0xddb71e50 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xddf5a82e regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xde031c14 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0xde3668ae mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0xde3769e2 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0xde42b669 spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xde52413f isa_bridge_pcidev +EXPORT_SYMBOL_GPL vmlinux 0xde59c16a rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xde5e927c bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xde5fbde9 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xde60315b perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xde673f89 fb_sys_read +EXPORT_SYMBOL_GPL vmlinux 0xde72e38c crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xde74bb04 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xde9e2403 memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdead73d2 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xdecc2cb1 devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xdf0c3252 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf14edb2 nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xdf1a4ce6 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xdf30d884 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xdf480cb1 extcon_get_cable_state +EXPORT_SYMBOL_GPL vmlinux 0xdf4bc23c ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0xdf52fe32 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdf582c53 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xdf80476d trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0xdfa47cbd devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xdfb7512f pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0xdfbb3a5f regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe00c3539 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xe00cdf8f input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xe011bfba rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xe0220000 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe034e9cc kvmppc_kvm_pv +EXPORT_SYMBOL_GPL vmlinux 0xe036b3e9 mpic_msgr_put +EXPORT_SYMBOL_GPL vmlinux 0xe037cf8a pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0xe03a9a60 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0xe0544b9b get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xe0573559 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0xe06d9f09 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe0860ba0 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0b8e5ea regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xe0c21bc8 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xe0e3dffd bpf_prog_realloc +EXPORT_SYMBOL_GPL vmlinux 0xe0f67c5a irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0xe0f9e2e9 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xe14a5218 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0xe1746349 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xe1753997 of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe17c5f9f locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0xe18f5bc8 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xe19eb1c4 percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe1ad80e3 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xe1ade37c dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0xe1b23ae4 tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1cb6dbf cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xe227ae5c ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xe239e499 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xe23b6342 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xe24180ad rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe2bece83 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0xe2dccbb3 percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0xe2f134d8 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe32fda54 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xe3515360 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xe38692d9 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0xe38d2247 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xe38dc5ea fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xe39afec3 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0xe3a92f74 bpf_prog_get +EXPORT_SYMBOL_GPL vmlinux 0xe3c9205d rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xe3d11587 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xe3d38f0a regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xe3d7750e btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0xe3e82123 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xe3eb5945 max_gen_clk_ops +EXPORT_SYMBOL_GPL vmlinux 0xe3f0fa98 use_mm +EXPORT_SYMBOL_GPL vmlinux 0xe40198be relay_open +EXPORT_SYMBOL_GPL vmlinux 0xe407b8f4 sock_update_netprioidx +EXPORT_SYMBOL_GPL vmlinux 0xe40b09a3 irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0xe41f3975 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xe428d154 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xe43d2217 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe4862ebb ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe490b0fd led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe49d19db rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xe4c031f8 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0xe4d07674 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0xe51c040f register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xe52b4b1f power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0xe5370852 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xe5540302 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xe56446f8 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xe5866cf9 of_scan_bus +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe5a3929d root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe5aa626e md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xe5b7383e ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0xe5bc2851 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0xe5ea8be5 blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0xe6185656 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0xe628dd6b fsl_spi_cpm_free +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe665d18e stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0xe689b214 clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xe689f6be nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xe6a6e143 blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xe6ff0010 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0xe6ff40d4 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0xe716f66b blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0xe7274426 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0xe72d99cd irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0xe7320a7d pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xe736982f fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe73818a7 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe73d21fa mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe768d444 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe77490db rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe78eef90 of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0xe7a66728 pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0xe7abfa04 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe7b804f9 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xe7bb0602 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xe7c28e8a platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe7c5e2ff ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xe7d5e9f9 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xe7f18b3c threads_per_subcore +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe80af294 thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe85b2004 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xe85c55e7 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe85d5716 arizona_of_get_named_gpio +EXPORT_SYMBOL_GPL vmlinux 0xe85f71c1 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xe866d820 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xe87e055c fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe89bd243 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe8a15ec5 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xe8dceec0 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xe8f46963 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xe8f71ef0 spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9549d3a of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0xe96395d3 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xe96cdd66 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe9711d6e key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0xe98006eb trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xe982a242 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xe98df787 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xe9a3391f wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0xe9afefc0 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xe9b9349e clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0xe9b9c147 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9dcb02e hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xe9eeaec5 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea235958 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xea38ff49 dev_pm_opp_of_cpumask_add_table +EXPORT_SYMBOL_GPL vmlinux 0xea3ba223 fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xea3defeb spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea5d1dac tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xea5d499e platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xea5d7eee xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xea628c20 bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0xea74a4cf mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xea7ee1bb tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xeab7ab31 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeabcfe65 of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xeac16868 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xead7f34e cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0xeaff6623 of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0xeb091b6e regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xeb2de401 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xeb3b47ef kvm_vcpu_init +EXPORT_SYMBOL_GPL vmlinux 0xeb3f9000 device_register +EXPORT_SYMBOL_GPL vmlinux 0xeb59f151 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0xeb7d183e jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xeb8ae736 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xeb8c8be8 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0xeb958b86 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0xebccadfe subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xebee8be1 tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec3e6402 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xec6e064f dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xec91e687 vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0xeca7e7cf tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xecaff5ac gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0xecd1cc65 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0xecdcc52a clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xece30a27 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xecf0f6fb rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xecfd0373 genlmsg_new_unicast +EXPORT_SYMBOL_GPL vmlinux 0xed05fd2f kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0xed25b8f7 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xed2a550e virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0xed5edafb iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xed981a16 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xedaa2955 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0xedb188e7 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xee0110e6 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xee140673 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xee408266 blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0xee430ef0 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee7b66e0 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0xee971caa usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0xee993670 spi_async +EXPORT_SYMBOL_GPL vmlinux 0xeec695ed tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xeee22cb8 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xeef56c47 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0xef11cb35 __tracepoint_kvm_ppc_instr +EXPORT_SYMBOL_GPL vmlinux 0xef146cca crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xef1df306 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xef35a911 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xef3f7a0b ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0xef57d8e1 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef6d007a sigset_from_compat +EXPORT_SYMBOL_GPL vmlinux 0xef764889 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xef984377 devres_get +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefa646c8 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xefc4d523 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xefdbfb44 fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf0063ada of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0xf00be3a4 of_fixed_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0xf0227768 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xf026bda1 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xf02720eb blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf04250ce console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xf04492d1 inet_csk_compat_setsockopt +EXPORT_SYMBOL_GPL vmlinux 0xf060fe9e ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xf06b9e66 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xf06e5012 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xf071c160 inet_csk_compat_getsockopt +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf0777df1 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xf07ef047 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xf08232b0 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xf0be63b7 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xf0c9e6fd trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xf0cd4733 of_get_nand_ecc_strength +EXPORT_SYMBOL_GPL vmlinux 0xf0d7c87b regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0xf0df1b67 filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0xf0e97916 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf10563d0 nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xf1412ec0 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0xf149b869 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xf14e4d24 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xf1508829 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xf15404b1 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xf158f170 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0xf16c7a4a wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf17b3b43 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf1a62b6f of_i8042_kbd_irq +EXPORT_SYMBOL_GPL vmlinux 0xf1af95e2 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1d83fbe setup_irq +EXPORT_SYMBOL_GPL vmlinux 0xf1e8bbde iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0xf1fde4dd hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf2090fe6 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf2308b90 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0xf272c2e4 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf2a35099 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2c4542a usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0xf2da994f fsl_spi_cpm_bufs +EXPORT_SYMBOL_GPL vmlinux 0xf2de24df extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf3012f6c rh_free +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf33dc43c sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xf345fbb8 dev_pm_opp_of_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf3801ca6 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf39704ab regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xf3c6e2df uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf462f8c6 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0xf46ee59a rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4a0853c netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xf4b0a64f gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xf4c91baf max_gen_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0xf4da3546 kvmppc_init_lpid +EXPORT_SYMBOL_GPL vmlinux 0xf4da7748 crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0xf4daafc5 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf5082589 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xf521778e to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xf53518b3 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xf535ddbc tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xf5379771 net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf5504ad7 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0xf550edb3 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf553f88a of_dma_get_range +EXPORT_SYMBOL_GPL vmlinux 0xf562c3c3 component_master_add +EXPORT_SYMBOL_GPL vmlinux 0xf569bf0c sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0xf5720a8e rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0xf5848388 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xf58a5fb1 pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xf59939ea clk_debugfs_add_file +EXPORT_SYMBOL_GPL vmlinux 0xf5a19db6 mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5aac999 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0xf5ac6b25 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xf5bcf1b2 __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0xf5dff756 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xf5e7f053 rh_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf639a5b4 of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0xf63a42d8 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0xf66b2e23 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf6709be5 ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0xf6792dc1 of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0xf68657d9 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0xf692b574 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xf6c4d202 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xf6cf2ae9 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xf6d38039 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6ff75d7 skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0xf7116522 of_device_get_modalias +EXPORT_SYMBOL_GPL vmlinux 0xf7298e7b ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0xf731e3f0 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0xf737fef5 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xf7a2de26 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xf7a7f8f8 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0xf7b4a834 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xf7c793a7 cpu_remove_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf832a0f4 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0xf8349bea serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0xf837e0eb unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xf8419420 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf8462b23 kvm_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0xf856cdad mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf85c2aa0 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xf8647328 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf89af948 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xf8b72c23 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0xf8c10cb7 nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xf8cdb2a4 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xf8db2263 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0xf8e398fc memstart_addr +EXPORT_SYMBOL_GPL vmlinux 0xf8e9d9ba exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xf8f2e2fa device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8f8a87a seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf9104b74 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf931a117 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf951c0a5 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf961f6df devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf9672bdb i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xf9796ce5 ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0xf9896498 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9ad2e5d ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xf9b43672 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xf9b5e900 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xf9c38385 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xf9f5d2f3 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0xfa3659b0 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0xfa40603b ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0xfa4a33b4 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0xfa570036 msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0xfa59c071 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec +EXPORT_SYMBOL_GPL vmlinux 0xfaa7c9e9 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xfab189c4 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xfab60503 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xfaeddc0e gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xfaf0d009 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xfaf14f6b usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xfaf5dc7f blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xfaf686cb adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xfb0047f6 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xfb0083ca crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0xfb03997c fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xfb1b1e24 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0xfb22bc6c cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xfb2cfbce rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb40d9d9 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xfb469bcf xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xfb52b77d __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0xfb593129 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xfb69d53b skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb7771ef reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0xfb87f290 phy_put +EXPORT_SYMBOL_GPL vmlinux 0xfb8b20d0 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xfb907e3b regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xfba75aa5 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbc18f30 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xfbd5489f add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0xfbdf5aa3 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0xfbe8cded param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xfbef460b __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xfbf306c2 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0xfbfcbd71 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc072469 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc3980e6 vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0xfc447186 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xfc5f5ec1 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xfc873fc1 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xfcb306cb power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xfcbd9752 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0xfcfc8961 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xfd46ae55 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xfd4ca169 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfd6326d5 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0xfd880e4c kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0xfdb10b96 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xfdb9a29a ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xfdd87bf8 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfe76f7cf of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xfe786462 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xfe904d9e kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfee48c7b sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xfeed89a7 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xfef169bc pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xfefded79 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff12355c __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff32b888 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xff3601da of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xff823ae7 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xff8862d7 rh_get_stats +EXPORT_SYMBOL_GPL vmlinux 0xff97a844 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0xffa22ac1 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0xffd1ce72 swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0xffdd16ec tty_init_termios only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-106.129/powerpc/powerpc64-emb.compiler +++ linux-raspi2-4.4.0/debian.master/abi/4.4.0-106.129/powerpc/powerpc64-emb.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.5) 5.4.0 20160609 only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-106.129/powerpc/powerpc64-emb.modules +++ linux-raspi2-4.4.0/debian.master/abi/4.4.0-106.129/powerpc/powerpc64-emb.modules @@ -0,0 +1,4309 @@ +3c574_cs +3c589_cs +3c59x +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_dw +8250_mid +8255 +8255_pci +8390 +842 +842_compress +842_decompress +88pm800 +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +DAC960 +a100u2w +a3d +a8293 +aacraid +aat2870-regulator +aat2870_bl +ab3100 +ab3100-otp +ac97_bus +acard-ahci +acecad +acenic +act200l-sir +act8865-regulator +act_bpf +act_connmark +act_csum +act_gact +act_ipt +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +act_vlan +actisys-sir +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5755 +ad5764 +ad5791 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7266 +ad7280a +ad7291 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7746 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad799x +ad8366 +ad9523 +ad9832 +ad9834 +ad_sigma_delta +adc128d818 +adcxx +addi_apci_1032 +addi_apci_1500 +addi_apci_1516 +addi_apci_1564 +addi_apci_16xx +addi_apci_2032 +addi_apci_2200 +addi_apci_3120 +addi_apci_3501 +addi_apci_3xxx +addi_watchdog +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adfs +adi +adis16060 +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16204 +adis16209 +adis16220 +adis16240 +adis16260 +adis16400 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1275 +adm8211 +adm9240 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adv7511 +adv7604 +adv7842 +adv_pci1710 +adv_pci1723 +adv_pci1724 +adv_pci_dio +advansys +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +af-rxrpc +af9013 +af9033 +af_alg +af_key +af_packet_diag +affs +ah4 +ah6 +aha152x_cs +ahci +ahci_ceva +ahci_platform +ahci_qoriq +aic79xx +aic7xxx +aic94xx +aim_cdev +aim_network +aim_sound +aim_v4l2 +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airo +airo_cs +airspy +ak8975 +al3320a +algif_aead +algif_hash +algif_rng +algif_skcipher +ali-ircc +alim7101_wdt +altera-ci +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am53c974 +amc6821 +amd +amd5536udc +amd8111e +amdgpu +amplc_dio200 +amplc_dio200_common +amplc_dio200_pci +amplc_pc236 +amplc_pc236_common +amplc_pc263 +amplc_pci224 +amplc_pci230 +amplc_pci236 +amplc_pci263 +ams369fg06 +analog +anatop-regulator +ansi_cprng +anubis +aoe +apbps2 +apds9300 +apds9802als +apds990x +apds9960 +appledisplay +appletalk +appletouch +applicom +aquantia +ar1021_i2c +ar5523 +ar7part +arc-rawmode +arc-rimi +arc4 +arc_emac +arc_ps2 +arc_uart +arcmsr +arcnet +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arp_tables +arpt_mangle +arptable_filter +as102_fe +as3711-regulator +as3711_bl +as3722-regulator +as3935 +as5011 +asc7621 +ascot2e +asix +ast +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +ata_generic +ata_piix +atbm8830 +aten +ath +ath10k_core +ath10k_pci +ath3k +ath5k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atm +atmel +atmel-flexcom +atmel-hlcdc +atmel_cs +atmel_mxt_ts +atmel_pci +atmtcp +atp870u +atusb +atxp1 +atyfb +au0828 +au8522_common +au8522_decoder +au8522_dig +aufs +auo-pixcir-ts +auo_k1900fb +auo_k1901fb +auo_k190x +auth_rpcgss +authenc +authencesn +autofs4 +avm_cs +avma1_cs +avmfritz +ax25 +ax88179_178a +axnet_cs +axp20x-pek +axp20x-regulator +axp20x_usb_power +axp288_adc +axp288_charger +axp288_fuel_gauge +b1 +b1dma +b1pci +b1pcmcia +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +bas_gigaset +batman-adv +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bch +bcm-keypad +bcm-phy-lib +bcm203x +bcm3510 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm7038_wdt +bcm7xxx +bcm87xx +bcma +bcma-hcd +bcmsysport +bd6107 +bdc +bdc_pci +be2iscsi +be2net +befs +belkin_sa +bfa +bfs +bfusb +bh1750 +bh1770glc +bh1780gli +binfmt_misc +block2mtd +blocklayoutdriver +blowfish_common +blowfish_generic +bluecard_cs +bluetooth +bluetooth_6lowpan +bma150 +bma180 +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmg160_core +bmg160_i2c +bmg160_spi +bmp085 +bmp085-i2c +bmp085-spi +bmp280 +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bnxt_en_bpo +bonding +bpa10x +bpck +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +br2684 +br_netfilter +brcmfmac +brcmsmac +brcmutil +brd +bridge +broadcom +broadsheetfb +bsd_comp +bt3c_cs +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btqca +btrfs +btrtl +btsdio +bttv +btuart_cs +btusb +btwilink +bu21013_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c4 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +caam +caam_jr +caamalg +caamhash +caamrng +cachefiles +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +caif_usb +caif_virtio +camellia_generic +can +can-bcm +can-dev +can-gw +can-raw +cap11xx +capi +capidrv +capmode +carl9170 +carminefb +cassini +cast5_generic +cast6_generic +cast_common +catc +cb710 +cb710-mmc +cb_das16_cs +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcimdas +cb_pcimdda +cc10001_adc +cc2520 +cc770 +cc770_isa +cc770_platform +cciss +ccm +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +ceph +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha20_generic +chacha20poly1305 +chaoskey +chipone_icn8318 +chipreg +chnl_net +ci_hdrc +ci_hdrc_imx +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +cirrus +cirrusfb +clip +clk-cdce706 +clk-cdce925 +clk-max77686 +clk-max77802 +clk-palmas +clk-pwm +clk-rk808 +clk-s2mps11 +clk-si514 +clk-si5351 +clk-si570 +clk-twl6040 +clk-wm831x +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm36651 +cm4000_cs +cm4040_cs +cma3000_d0x +cma3000_d0x_i2c +cmac +cmdlinepart +cmtp +cnic +cobalt +cobra +coda +colibri-vf50-ts +com20020 +com20020-pci +com20020_cs +com90io +com90xx +comedi +comedi_8254 +comedi_8255 +comedi_bond +comedi_isadma +comedi_parport +comedi_pci +comedi_pcmcia +comedi_test +comedi_usb +comm +configfs +contec_pci_dio +cordic +core +cp210x +cpc925_edac +cpia2 +cpsw_ale +cramfs +crc-ccitt +crc-itu-t +crc32 +crc7 +crc8 +cryptd +crypto_user +cryptoloop +cs5345 +cs53l32a +csiostor +ctr +cts +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +cx18 +cx18-alsa +cx22700 +cx22702 +cx231xx +cx231xx-alsa +cx231xx-dvb +cx2341x +cx23885 +cx24110 +cx24113 +cx24116 +cx24117 +cx24120 +cx24123 +cx25821 +cx25821-alsa +cx25840 +cx82310_eth +cx88-alsa +cx88-blackbird +cx88-dvb +cx88-vp3054-i2c +cx8800 +cx8802 +cx88xx +cxacru +cxd2099 +cxd2820r +cxd2841er +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cyclades +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da9030_battery +da9034-ts +da903x +da903x_bl +da9052-battery +da9052-hwmon +da9052-regulator +da9052_bl +da9052_onkey +da9052_tsi +da9052_wdt +da9055-hwmon +da9055-regulator +da9055_onkey +da9055_wdt +da9062-core +da9062-regulator +da9062_wdt +da9063-regulator +da9063_onkey +da9063_wdt +da9150-charger +da9150-core +da9150-fg +da9150-gpadc +da9210-regulator +da9211-regulator +dac02 +daqboard2000 +das08 +das08_cs +das08_isa +das08_pci +das16 +das16m1 +das1800 +das6402 +das800 +davicom +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +ddbridge +de2104x +de4x5 +decnet +deflate +defxx +denali +denali_dt +denali_pci +des_generic +designware_i2s +dgap +dgnc +dht11 +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dibx000_common +digi_acceleport +digicolor-usart +diskonchip +diva_idi +diva_mnt +divacapi +divadidd +divas +dl2k +dlci +dlm +dln2 +dm-bio-prison +dm-bufio +dm-cache +dm-cache-cleaner +dm-cache-mq +dm-cache-smq +dm-crypt +dm-delay +dm-era +dm-flakey +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-verity +dm-zero +dm1105 +dm9601 +dmfe +dmm32at +dmx3191d +dn_rtmsg +dnet +docg3 +docg4 +dp83848 +dp83867 +drbd +drbg +drm +drm_kms_helper +drop_monitor +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds620 +dsbr100 +dscc4 +dss1_divert +dst +dst_ca +dstr +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x +dt3000 +dt3155 +dt9812 +dtl1_cs +dummy +dummy-irq +dummy_stm +dvb-as102 +dvb-bt8xx +dvb-core +dvb-pll +dvb-ttpci +dvb-ttusb-budget +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-af9035 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6007 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-rtl28xxu +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dvb_usb_v2 +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_wdt +dwc3 +dwc3-pci +dwc_eth_qos +dwmac-generic +dwmac-ipq806x +dwmac-lpc18xx +dwmac-meson +dwmac-rk +dwmac-socfpga +dwmac-sti +dwmac-sunxi +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +earth-pt1 +earth-pt3 +eata +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ec100 +echainiv +echo +edac_core +edt-ft5x06 +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efs +egalax_ts +ehset +elan_i2c +elo +elsa_cs +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_meta +em_nbyte +em_text +em_u32 +emac_arc +emac_rockchip +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +empeg +ems_pci +ems_pcmcia +ems_usb +emu10k1-gp +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +eni +enic +epat +epia +epic100 +eql +esas2r +esd_usb2 +esi-sir +esp4 +esp6 +esp_scsi +et1011c +et131x +ethoc +evbug +exofs +extcon-adc-jack +extcon-arizona +extcon-axp288 +extcon-gpio +extcon-max14577 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +ezusb +f2fs +f75375s +f81232 +fakelb +fan53555 +farsync +faulty +fb_agm1264k-fl +fb_bd663474 +fb_ddc +fb_hx8340bn +fb_hx8347d +fb_hx8353d +fb_hx8357d +fb_ili9163 +fb_ili9320 +fb_ili9325 +fb_ili9340 +fb_ili9341 +fb_ili9481 +fb_ili9486 +fb_pcd8544 +fb_ra8875 +fb_s6d02a1 +fb_s6d1121 +fb_ssd1289 +fb_ssd1306 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fbtft_device +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdomain_cs +fdp +fdp_i2c +fealnx +ff-memless +firedtv +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fit2 +fit3 +fixed +fl512 +flexcan +flexfb +floppy +fm10k +fm801-gp +fm_drv +fmc +fmc-chardev +fmc-fakedev +fmc-trivial +fmc-write-eeprom +fmvj18x_cs +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fpga-mgr +freevxfs +friq +frpw +fsa9480 +fscache +fsl-corenet-cf +fsl-diu-fb +fsl-edma +fsl_elbc_nand +fsl_hypervisor +fsl_ifc_nand +fsl_lpuart +fsl_pq_mdio +fsl_usb2_udc +fsldma +ft6236 +ftdi-elan +ftdi_sio +ftl +fujitsu_ts +g450_pll +g760a +g762 +g_acm_ms +g_audio +g_cdc +g_dbgp +g_ether +g_ffs +g_hid +g_mass_storage +g_midi +g_ncm +g_nokia +g_printer +g_serial +g_webcam +g_zero +gadgetfs +gamecon +gameport +garmin_gps +garp +gcm +gdmtty +gdmulte +gdmwm +gdth +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +gennvm +genwqe_card +gf128mul +gf2k +gfs2 +ghash-generic +gianfar_driver +gianfar_ptp +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +gluebi +go7007 +go7007-loader +go7007-usb +goku_udc +goodix +gp2ap002a00f +gp2ap020a00f +gpio +gpio-74x164 +gpio-74xx-mmio +gpio-addr-flash +gpio-adnp +gpio-adp5520 +gpio-adp5588 +gpio-altera +gpio-amd8111 +gpio-arizona +gpio-beeper +gpio-charger +gpio-crystalcove +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-fan +gpio-generic +gpio-grgpio +gpio-ir-recv +gpio-janz-ttl +gpio-kempld +gpio-lp3943 +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-mc33880 +gpio-mcp23s08 +gpio-ml-ioh +gpio-pca953x +gpio-pcf857x +gpio-rdc321x +gpio-regulator +gpio-syscon +gpio-tps65912 +gpio-twl4030 +gpio-twl6040 +gpio-ucb1400 +gpio-viperboard +gpio-vx855 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio_backlight +gpio_keys +gpio_keys_polled +gpio_mouse +gpio_tilt_polled +gpio_wdt +gr_udc +grace +grcan +gre +grip +grip_mp +gs_fpga +gs_usb +gsc_hpdi +gspca_benq +gspca_conex +gspca_cpia1 +gspca_dtcs033 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_jl2005bcd +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stk1135 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_touptek +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtco +guillemot +gunze +gxt4500 +hackrf +hamachi +hampshire +hangcheck-timer +hanwang +hci +hci_uart +hci_vhci +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcdrv +hdm_dim2 +hdm_i2c +hdm_usb +hdpvr +he +hexium_gemini +hexium_orion +hfc4s8s_l1 +hfc_usb +hfcmulti +hfcpci +hfcsusb +hfs +hfsplus +hi6421-pmic-core +hi6421-regulator +hi8435 +hid +hid-a4tech +hid-alps +hid-apple +hid-appleir +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-cherry +hid-chicony +hid-corsair +hid-cp2112 +hid-cypress +hid-dr +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-icade +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-lenovo +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-primax +hid-prodikeys +hid-rmi +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-isku +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-konepure +hid-roccat-kovaplus +hid-roccat-lua +hid-roccat-pyra +hid-roccat-ryos +hid-roccat-savu +hid-saitek +hid-samsung +hid-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steelseries +hid-sunplus +hid-thingm +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hidp +hih6130 +hisax +hisax_fcpcipnp +hisax_isac +hisax_st5481 +hisi504_nand +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hopper +horus3a +hostap +hostap_cs +hostap_pci +hostap_plx +hp100 +hpfs +hpilo +hpsa +hptiop +hsi +hsi_char +hso +hsr +hsu_dma +htc-pasic3 +hts221 +hts221_i2c +hts221_spi +htu21 +huawei_cdc_ncm +hwa-hc +hwa-rc +hwmon-vid +hx8357 +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd8111 +i2c-arb-gpio-challenge +i2c-cbus-gpio +i2c-designware-core +i2c-designware-pci +i2c-designware-platform +i2c-diolan-u2c +i2c-dln2 +i2c-emev2 +i2c-gpio +i2c-hid +i2c-i801 +i2c-isch +i2c-kempld +i2c-matroxfb +i2c-mpc +i2c-mux +i2c-mux-gpio +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-reg +i2c-nforce2 +i2c-ocores +i2c-parport +i2c-parport-light +i2c-pca-platform +i2c-piix4 +i2c-rk3x +i2c-robotfuzz-osif +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-smbus +i2c-stub +i2c-taos-evm +i2c-tiny-usb +i2c-via +i2c-viapro +i2c-viperboard +i2c-xiic +i40e +i40evf +i5k_amb +i6300esb +i740fb +i82092 +ib_addr +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mad +ib_mthca +ib_qib +ib_sa +ib_srp +ib_srpt +ib_ucm +ib_umad +ib_uverbs +ibmaem +ibmpex +icp_multi +icplus +ics932s401 +ideapad_slidebar +idma64 +idmouse +idt77252 +idt_gen2 +idtcps +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +iforce +igb +igbvf +igorplugusb +iguanair +ii_pci20kc +iio-trig-interrupt +iio-trig-periodic-rtc +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili922x +ili9320 +imm +imon +ims-pcu +imx074 +imx6ul_tsc +imx_thermal +ina209 +ina2xx +industrialio +industrialio-buffer-cb +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +input-polldev +int51x1 +intel_th +intel_th_gth +intel_th_msu +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +interact +interval_tree_test +inv-mpu6050 +io_edgeport +io_ti +ioc4 +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_MASQUERADE +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_tunnel +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_wlc +ip_vs_wrr +ip_vti +ipack +ipaq +ipcomp +ipcomp6 +ipddp +iphase +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +ipr +ips +ipt_CLUSTERIP +ipt_ECN +ipt_MASQUERADE +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipw +ipw2100 +ipw2200 +ipwireless +ipx +ir-hix5hd2 +ir-jvc-decoder +ir-kbd-i2c +ir-lirc-codec +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-usb +ir-xmp-decoder +ircomm +ircomm-tty +irda +irda-usb +irlan +irnet +irtty-sir +iscsi_boot_sysfs +iscsi_target_mod +iscsi_tcp +isdn +isdn_bsdcomp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl9305 +isofs +isp116x-hcd +isp1362-hcd +isp1704_charger +isp1760 +it913x +itd1000 +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_c2 +iw_cm +iw_cxgb3 +iw_cxgb4 +iw_nes +iwl3945 +iwl4965 +iwldvm +iwlegacy +iwlmvm +iwlwifi +ix2505v +ixgb +ixgbe +ixgbevf +janz-cmodio +janz-ican3 +jc42 +jedec_probe +jffs2 +jfs +jitterentropy_rng +jmb38x_ms +jme +joydev +joydump +jr3_pci +jsa1212 +jsm +kafs +kalmia +kaweth +kbic +kbtab +kcomedilib +ke_counter +kempld-core +kempld_wdt +kernelcapi +keyspan +keyspan_pda +keyspan_remote +keywrap +kfifo_buf +khazad +kingsun-sir +kl5kusb105 +kmx61 +kobil_sct +ks0108 +ks8842 +ks8851 +ks8851_mll +ks959-sir +ksdazzle-sir +ksz884x +ktti +kvaser_pci +kvaser_usb +kxcjk-1013 +kxsd9 +kxtj9 +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l4f00242t03 +l64781 +lan78xx +lanai +lapb +lapbether +latch-addr-flash +lattice-ecp3-config +lcd +ld9040 +ldusb +lec +led-class-flash +leds-88pm860x +leds-adp5520 +leds-bcm6328 +leds-bcm6358 +leds-bd2802 +leds-blinkm +leds-da903x +leds-da9052 +leds-dac124s085 +leds-gpio +leds-ktd2692 +leds-lm3530 +leds-lm3533 +leds-lm355x +leds-lm3642 +leds-lp3944 +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max77693 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pwm +leds-regulator +leds-tca6507 +leds-tlc591xx +leds-wm831x-status +leds-wm8350 +ledtrig-backlight +ledtrig-camera +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-oneshot +ledtrig-timer +ledtrig-transient +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libahci +libahci_platform +libceph +libcomposite +libcrc32c +libcxgbi +libertas +libertas_cs +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libore +libosd +libsas +lightning +lineage-pem +linear +liquidio +lirc_bt829 +lirc_dev +lirc_imon +lirc_parallel +lirc_sasem +lirc_serial +lirc_sir +lirc_zilog +lis3l02dq +lis3lv02d +lis3lv02d_i2c +lis3lv02d_spi +litelink-sir +lkkbd +ll_temac +llc +llc2 +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3630a_bl +lm3639_bl +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lms283gf05 +lms501kf03 +lnbh25 +lnbp21 +lnbp22 +lockd +locktorture +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp8755 +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpc_ich +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +ltc2941-battery-gauge +ltc2945 +ltc2978 +ltc3589 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltr501 +ltv350qv +lv5207lp +lvstest +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m25p80 +m2m-deinterlace +m52790 +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +ma600-sir +mac-celtic +mac-centeuro +mac-croatian +mac-cyrillic +mac-gaelic +mac-greek +mac-iceland +mac-inuit +mac-roman +mac-romanian +mac-turkish +mac80211 +mac80211_hwsim +mac802154 +mac_hid +macb +macvlan +macvtap +mag3110 +magellan +mailbox-altera +mailbox-test +mantis +mantis_core +map_absent +map_funcs +map_ram +map_rom +marvell +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max1111 +max11801_ts +max1363 +max14577 +max14577_charger +max1586 +max16064 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max197 +max20751 +max2165 +max3100 +max31790 +max3421-hcd +max34440 +max517 +max5821 +max63xx_wdt +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77686 +max77693 +max77693-haptic +max77693_charger +max77802 +max8649 +max8660 +max8688 +max8903_charger +max8907 +max8907-regulator +max8925-regulator +max8925_bl +max8925_onkey +max8925_power +max8952 +max8973-regulator +max8997 +max8997_charger +max8997_haptic +max8998 +max8998_charger +mb862xxfb +mb86a16 +mb86a20s +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc44s803 +mcb +mcb-pci +mceusb +mcp2120-sir +mcp251x +mcp3021 +mcp320x +mcp3422 +mcp4531 +mcp4725 +mcp4922 +mcryptd +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md-cluster +md4 +md5-ppc +mdc800 +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-cavium +mdio-gpio +mdio-mux +mdio-mux-gpio +mdio-mux-mmioreg +mdio-octeon +mdio-thunder +mdio-xgene +me4000 +me_daq +media +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +memstick +men_z135_uart +men_z188_adc +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +metro-usb +metronomefb +mf6x4 +mga +michael_mic +micrel +microchip +microread +microread_i2c +microtek +mii +minix +mip6 +mite +mk712 +mkiss +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx90614 +mlxsw_core +mlxsw_pci +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmc_block +mmc_spi +mms114 +mn88472 +mn88473 +mos7720 +mos7840 +mostcore +moxa +mpc624 +mpc85xx_edac +mpl115 +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +msdos +msi001 +msi2500 +msp3400 +mspro_block +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt29f_spinand +mt312 +mt352 +mt6311-regulator +mt6397-core +mt6397-regulator +mt7601u +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd +mtd_blkdevs +mtd_dataflash +mtdblock +mtdblock_ro +mtdoops +mtdram +mtdswap +mtip32xx +mtk-sd +mtouch +multipath +multiq3 +musb_hdrc +mv_u3d_core +mv_udc +mvmdio +mvsas +mvumi +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc4005 +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxser +mxuport +myri10ge +n_gsm +n_hdlc +n_r3964 +n_tracerouter +n_tracesink +nand +nand_bch +nand_ecc +nand_ids +nandsim +national +natsemi +nau7802 +navman +nb8800 +nbd +nci +nci_spi +nci_uart +ncpfs +nct7802 +nct7904 +nd_blk +nd_btt +nd_pmem +ne2k-pci +neofb +net1080 +net2272 +net2280 +netconsole +netjet +netlink_diag +netrom +netup-unidvb +netxen_nic +newtonkbd +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_ipv4 +nf_nat_ipv6 +nf_nat_irc +nf_nat_masquerade_ipv4 +nf_nat_masquerade_ipv6 +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_redirect +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_synproxy_core +nf_tables +nf_tables_arp +nf_tables_bridge +nf_tables_inet +nf_tables_ipv4 +nf_tables_ipv6 +nf_tables_netdev +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfcwilink +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_log +nfnetlink_queue +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat_ipv4 +nft_chain_nat_ipv6 +nft_chain_route_ipv4 +nft_chain_route_ipv6 +nft_compat +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_exthdr +nft_hash +nft_limit +nft_log +nft_masq +nft_masq_ipv4 +nft_masq_ipv6 +nft_meta +nft_meta_bridge +nft_nat +nft_queue +nft_rbtree +nft_redir +nft_redir_ipv4 +nft_redir_ipv6 +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +ni_6527 +ni_65xx +ni_660x +ni_670x +ni_at_a2150 +ni_at_ao +ni_atmio +ni_atmio16d +ni_daq_700 +ni_daq_dio24 +ni_labpc +ni_labpc_common +ni_labpc_cs +ni_labpc_isadma +ni_labpc_pci +ni_mio_cs +ni_pcidio +ni_pcimio +ni_tio +ni_tiocmd +ni_usb6501 +nicpf +nicstar +nicvf +nilfs2 +niu +nlmon +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +nmclan_cs +nosy +notifier-error-inject +nouveau +nozomi +nps_enet +ns558 +ns83820 +nsc-ircc +ntb +ntb_netdev +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +null_blk +nvidiafb +nvme +nvmem_core +nxp-nci +nxp-nci_i2c +nxp-ptn3460 +nxt200x +nxt6000 +objlayoutdriver +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +of_mmc_spi +of_xilinx_wdt +ofpart +old_belkin-sir +omap4-keypad +omfs +omninet +on20 +on26 +onenand +opencores-kbd +openvswitch +oprofile +opt3001 +opticon +option +or51132 +or51211 +orinoco +orinoco_cs +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +osd +osdblk +osst +oti6858 +ov2640 +ov5642 +ov6650 +ov7640 +ov7670 +ov772x +ov9640 +ov9740 +overlay +oxu210hp-hcd +p54common +p54pci +p54spi +p54usb +p8022 +p8023 +pa12203001 +palmas-pwrbutton +palmas-regulator +pandora_bl +panel +panel-lg-lg4573 +panel-samsung-ld9040 +panel-samsung-s6e8aa0 +panel-sharp-lq101r1sx01 +panel-simple +parade-ps8622 +paride +parkbd +parport +parport_ax88796 +parport_cs +parport_pc +parport_serial +pata_ali +pata_amd +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_of_platform +pata_oldpiix +pata_opti +pata_optidma +pata_pcmcia +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sch +pata_serverworks +pata_sil680 +pata_sis +pata_sl82c105 +pata_triflex +pata_via +pc300too +pcap-regulator +pcap_keys +pcap_ts +pcbc +pcd +pcf50633 +pcf50633-adc +pcf50633-backlight +pcf50633-charger +pcf50633-gpio +pcf50633-input +pcf50633-regulator +pcf8574_keypad +pcf8591 +pch_udc +pci +pci-stub +pci200syn +pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad +pcmcia +pcmcia_core +pcmcia_rsrc +pcmciamtd +pcmda12 +pcmmio +pcmuio +pcnet32 +pcnet_cs +pcrypt +pcwd_pci +pcwd_usb +pd +pd6729 +pda_power +pdc_adma +peak_pci +peak_pcmcia +peak_usb +pegasus +penmount +percpu_test +pf +pfuze100-regulator +pg +phantom +phonet +phram +phy-bcm-kona-usb2 +phy-exynos-usb2 +phy-gpio-vbus-usb +phy-isp1301 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-tahvo +phy-tusb1210 +physmap +physmap_of +pixcir_i2c_ts +pkcs7_test_key +pktcdvd +pktgen +pl2303 +plat-ram +plat_nand +platform_lcd +plip +plusb +pluto2 +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm80xx +pm8941-wled +pmbus +pmbus_core +pmc551 +pmcraid +pn533 +pn544 +pn544_i2c +pn_pep +poly1305_generic +port100 +powermate +powr1220 +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_core +pps_parport +pptp +prism2_usb +ps2mult +psmouse +psnap +pt +ptp +pulsedlight-lidar-lite-v2 +pvrusb2 +pwc +pwm-atmel-hlcdc +pwm-beeper +pwm-fan +pwm-fsl-ftm +pwm-lp3943 +pwm-pca9685 +pwm-regulator +pwm-twl +pwm-twl-led +pwm_bl +pxa27x_udc +qcaspi +qcaux +qcom-spmi-iadc +qcom-spmi-temp-alarm +qcom-spmi-vadc +qcom_spmi-regulator +qcserial +qed +qede +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qlogic_cs +qlogicfas408 +qm1d1c0042 +qmi_wwan +qnx4 +qnx6 +qoriq-cpufreq +qsemi +qt1010 +qt1070 +qt2160 +quatech2 +quatech_daqp_cs +quota_tree +quota_v1 +quota_v2 +qxl +r128 +r592 +r6040 +r8152 +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r852 +r8712u +r8723au +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-bcm2048 +radio-i2c-si470x +radio-keene +radio-ma901 +radio-maxiradio +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-shark +radio-si476x +radio-tea5764 +radio-usb-si470x +radio-usb-si4713 +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ramoops +raw +ray_cs +rbd +rbtree_test +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-asus-pc39 +rc-asus-ps3-100 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-delock-61959 +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-dvbsky +rc-em-terratec +rc-encore-enltv +rc-encore-enltv-fm53 +rc-encore-enltv2 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-pctv-sedna +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-reddo +rc-snapstream-firefly +rc-streamzap +rc-su3000 +rc-tbs-nec +rc-technisat-ts35 +rc-technisat-usb2 +rc-terratec-cinergy-c-pci +rc-terratec-cinergy-s2-hd +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-total-media-in-hand-02 +rc-trekstor +rc-tt-1500 +rc-twinhan-dtv-cab-ci +rc-twinhan1027 +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rc5t583-regulator +rdc321x-southbridge +rdma_cm +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +redboot +redrat3 +reed_solomon +regmap-spmi +regulator-haptic +reiserfs +remoteproc +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd_ftl +rfkill-gpio +rfkill-regulator +rio-scan +rio500 +rionet +rivafb +rj54n1cb0c +rk808 +rk808-regulator +rmd128 +rmd160 +rmd256 +rmd320 +rn5t618 +rn5t618-regulator +rn5t618_wdt +rndis_host +rndis_wlan +rocket +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpcrdma +rpcsec_gss_krb5 +rpr0521 +rrpc +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt5033 +rt5033-regulator +rt5033_battery +rt61pci +rt73usb +rt9455_charger +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab3100 +rtc-abx80x +rtc-as3722 +rtc-bq32k +rtc-bq4802 +rtc-cmos +rtc-da9052 +rtc-da9055 +rtc-da9063 +rtc-ds1286 +rtc-ds1305 +rtc-ds1307 +rtc-ds1343 +rtc-ds1347 +rtc-ds1374 +rtc-ds1390 +rtc-ds1511 +rtc-ds1553 +rtc-ds1672 +rtc-ds1685 +rtc-ds1742 +rtc-ds2404 +rtc-ds3234 +rtc-em3027 +rtc-fm3130 +rtc-generic +rtc-hid-sensor-time +rtc-hym8563 +rtc-isl12022 +rtc-isl12057 +rtc-isl1208 +rtc-lp8788 +rtc-m41t80 +rtc-m41t93 +rtc-m41t94 +rtc-m48t35 +rtc-m48t59 +rtc-m48t86 +rtc-max6900 +rtc-max6902 +rtc-max77686 +rtc-max77802 +rtc-max8907 +rtc-max8925 +rtc-max8997 +rtc-max8998 +rtc-mc13xxx +rtc-mcp795 +rtc-msm6242 +rtc-mt6397 +rtc-palmas +rtc-pcap +rtc-pcf2123 +rtc-pcf2127 +rtc-pcf50633 +rtc-pcf85063 +rtc-pcf8523 +rtc-pcf8563 +rtc-pcf8583 +rtc-r9701 +rtc-rc5t583 +rtc-rk808 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rv8803 +rtc-rx4581 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-snvs +rtc-stk17ta8 +rtc-tps6586x +rtc-tps65910 +rtc-tps80031 +rtc-twl +rtc-v3020 +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtc-zynqmp +rtc_cmos_setup +rtd520 +rti800 +rti802 +rtl2830 +rtl2832 +rtl2832_sdr +rtl8150 +rtl8187 +rtl8188ee +rtl818x_pci +rtl8192c-common +rtl8192ce +rtl8192cu +rtl8192de +rtl8192ee +rtl8192se +rtl8723-common +rtl8723ae +rtl8723be +rtl8821ae +rtl8xxxu +rtl_pci +rtl_usb +rtllib +rtllib_crypt_ccmp +rtllib_crypt_tkip +rtllib_crypt_wep +rtlwifi +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rx51_battery +rxkad +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3fb +s3fwrn5 +s3fwrn5_i2c +s526 +s5h1409 +s5h1411 +s5h1420 +s5m8767 +s626 +s6e63m0 +s921 +saa6588 +saa6752hs +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7706h +safe_serial +salsa20_generic +samsung-keypad +samsung-sxgbe +sata_fsl +sata_inic162x +sata_mv +sata_nv +sata_promise +sata_qstor +sata_sil +sata_sil24 +sata_sis +sata_sx4 +sata_uli +sata_via +sata_vsc +savage +savagefb +sbp_target +sbs-battery +sc16is7xx +sc92031 +sca3000 +sch_atm +sch_cbq +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_fq +sch_fq_codel +sch_gred +sch_hfsc +sch_hhf +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_pie +sch_plug +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_tbf +sch_teql +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +scsi_transport_srp +sctp +sctp_probe +sdhci +sdhci-of-arasan +sdhci-of-at91 +sdhci-of-esdhc +sdhci-of-hlwd +sdhci-pci +sdhci-pltfm +sdhci_f_sdh30 +sdio_uart +sdricoh_cs +sedlbauer_cs +seed +sensorhub +seqiv +ser_gigaset +serial2002 +serial_cs +serio_raw +sermouse +serpent_generic +serport +ses +sfc +sh_veu +sha1-powerpc +shark2 +shpchp +sht15 +sht21 +shtc1 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sil164 +sir-dev +sis +sis190 +sis5595 +sis900 +sisfb +sisusbvga +sit +sja1000 +sja1000_isa +sja1000_platform +skd +skfp +skge +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +sl811_cs +slcan +slip +slram +sm501 +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smb347-charger +smc91c92_cs +smipcie +smm665 +smsc +smsc-ircc2 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsmdtv +smssdio +smsusb +snd +snd-ac97-codec +snd-ad1889 +snd-ak4113 +snd-ak4114 +snd-ak4117 +snd-ak4xxx-adda +snd-ali5451 +snd-aloop +snd-als300 +snd-als4000 +snd-atiixp +snd-atiixp-modem +snd-au8810 +snd-au8820 +snd-au8830 +snd-aw2 +snd-azt3328 +snd-bcd2000 +snd-bebob +snd-bt87x +snd-ca0106 +snd-cmipci +snd-cs4281 +snd-cs46xx +snd-cs8427 +snd-ctxfi +snd-darla20 +snd-darla24 +snd-dice +snd-dummy +snd-echo3g +snd-emu10k1 +snd-emu10k1-synth +snd-emu10k1x +snd-emux-synth +snd-ens1370 +snd-ens1371 +snd-es1938 +snd-es1968 +snd-firewire-digi00x +snd-firewire-lib +snd-firewire-tascam +snd-fireworks +snd-fm801 +snd-gina20 +snd-gina24 +snd-hda-codec +snd-hda-codec-analog +snd-hda-codec-ca0110 +snd-hda-codec-ca0132 +snd-hda-codec-cirrus +snd-hda-codec-cmedia +snd-hda-codec-conexant +snd-hda-codec-generic +snd-hda-codec-hdmi +snd-hda-codec-idt +snd-hda-codec-realtek +snd-hda-codec-si3054 +snd-hda-codec-via +snd-hda-core +snd-hda-intel +snd-hdsp +snd-hdspm +snd-hrtimer +snd-hwdep +snd-i2c +snd-ice1712 +snd-ice1724 +snd-ice17xx-ak4xxx +snd-indigo +snd-indigodj +snd-indigodjx +snd-indigoio +snd-indigoiox +snd-intel8x0 +snd-intel8x0m +snd-isight +snd-korg1212 +snd-layla20 +snd-layla24 +snd-lola +snd-lx6464es +snd-maestro3 +snd-mia +snd-mixart +snd-mixer-oss +snd-mona +snd-mpu401 +snd-mpu401-uart +snd-mtpav +snd-mts64 +snd-nm256 +snd-opl3-lib +snd-opl3-synth +snd-oxfw +snd-oxygen +snd-oxygen-lib +snd-pcm +snd-pcm-dmaengine +snd-pcm-oss +snd-pcxhr +snd-pdaudiocf +snd-portman2x4 +snd-pt2258 +snd-rawmidi +snd-riptide +snd-rme32 +snd-rme96 +snd-rme9652 +snd-sb-common +snd-scs1x +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-soc-ac97 +snd-soc-adau1701 +snd-soc-ak4104 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-alc5623 +snd-soc-core +snd-soc-cs35l32 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42xx8 +snd-soc-cs42xx8-i2c +snd-soc-cs4349 +snd-soc-es8328 +snd-soc-fsl-asrc +snd-soc-fsl-esai +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-gtm601 +snd-soc-imx-audmux +snd-soc-pcm1681 +snd-soc-pcm1792a-codec +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-rt5631 +snd-soc-sgtl5000 +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-simple-card +snd-soc-spdif-rx +snd-soc-spdif-tx +snd-soc-ssm2602 +snd-soc-ssm2602-i2c +snd-soc-ssm2602-spi +snd-soc-ssm4567 +snd-soc-sta32x +snd-soc-sta350 +snd-soc-sti-sas +snd-soc-tas2552 +snd-soc-tas5086 +snd-soc-tas571x +snd-soc-tfa9879 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic3x +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8962 +snd-soc-wm8978 +snd-soc-xtfpga-i2s +snd-sonicvibes +snd-timer +snd-trident +snd-ua101 +snd-usb-6fire +snd-usb-audio +snd-usb-caiaq +snd-usb-hiface +snd-usb-line6 +snd-usb-pod +snd-usb-podhd +snd-usb-toneport +snd-usb-usx2y +snd-usb-variax +snd-usbmidi-lib +snd-util-mem +snd-via82xx +snd-via82xx-modem +snd-virmidi +snd-virtuoso +snd-vx-lib +snd-vx222 +snd-vxpocket +snd-ymfpci +snic +soc_button_array +soc_camera +soc_camera_platform +soc_mediabus +softdog +softing +softing_cs +solo6x10 +solos-pci +sony-btf-mpx +soundcore +sp2 +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +spectrum_cs +speedfax +speedtch +spi-altera +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-gpio +spi-lm70llp +spi-nor +spi-oc-tiny +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-sc18is602 +spi-tle62x0 +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spmi +sr9700 +sr9800 +ssb +ssb-hcd +ssd1307fb +ssfdc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +ssu100 +st +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_spi +st_magn +st_magn_i2c +st_magn_spi +st_pressure +st_pressure_i2c +st_pressure_spi +st_sensors +st_sensors_i2c +st_sensors_spi +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +ste_modem_rproc +stex +stinger +stir4200 +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm_console +stm_core +stmmac +stmmac-platform +stmpe-keypad +stmpe-ts +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv6110 +stv6110x +sun4i-codec +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +svgalib +sx8 +sx8654 +sx9500 +sym53c500_cs +sym53c8xx +symbolserial +synaptics_i2c +synaptics_i2c_rmi4 +synaptics_usb +synclink +synclink_cs +synclink_gt +synclinkmp +sysv +t1pci +t5403 +talitos +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +target_core_user +tc3589x-keypad +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tcs3414 +tcs3472 +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tda998x +tdfx +tdfxfb +tdo24m +tea +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tef6862 +tehuti +tekram-sir +teles_cs +teranetics +test-hexdump +test-kstrtox +test-string_helpers +test_bpf +test_firmware +test_module +test_power +test_printf +test_static_key_base +test_static_keys +test_udelay +test_user_copy +tg3 +tgr192 +thmc50 +thunder_bgx +thunderbolt +ti-adc081c +ti-adc128s052 +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_dac7512 +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timeriomem-rng +tipc +tlan +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmp006 +tmp102 +tmp103 +tmp401 +tmp421 +toim3232-sir +torture +toshsd +touchit213 +touchright +touchwin +tpci200 +tpm-rng +tpm_atmel +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tps40422 +tps51632-regulator +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65090-charger +tps65090-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps65218-regulator +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps80031-regulator +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsi568 +tsi57x +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2x7x_core +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tvaudio +tveeprom +tvp5150 +tw2804 +tw68 +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-madc-hwmon +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6040-vibra +twofish_common +twofish_generic +typhoon +u132-hcd +u_ether +u_serial +uartlite +uas +ubi +ubifs +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +uda1342 +udc-core +udc-xilinx +udf +udl +udp_diag +udp_tunnel +ueagle-atm +ufs +ufshcd +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_fsl_elbc_gpcm +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uli526x +ulpi +umc +umem +ums-alauda +ums-cypress +ums-datafab +ums-eneub6250 +ums-freecom +ums-isd200 +ums-jumpshot +ums-karma +ums-onetouch +ums-realtek +ums-sddr09 +ums-sddr55 +ums-usbat +unix_diag +upd64031a +upd64083 +us5182d +usb-serial-simple +usb-storage +usb3503 +usb8xxx +usb_8dev +usb_debug +usb_f_acm +usb_f_ecm +usb_f_ecm_subset +usb_f_eem +usb_f_fs +usb_f_hid +usb_f_mass_storage +usb_f_midi +usb_f_ncm +usb_f_obex +usb_f_phonet +usb_f_printer +usb_f_rndis +usb_f_serial +usb_f_ss_lb +usb_f_uac1 +usb_f_uac2 +usb_f_uvc +usb_gigaset +usb_wwan +usbatm +usbdux +usbduxfast +usbduxsigma +usbhid +usbip-core +usbip-host +usbkbd +usblcd +usbled +usblp +usbmisc_imx +usbmon +usbmouse +usbnet +usbserial +usbsevseg +usbtest +usbtmc +usbtouchscreen +usbtv +usbvision +usdhi6rol0 +userio +userspace-consumer +ushc +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-dv-timings +v4l2-flash-led-class +v4l2-mem2mem +vcan +vcnl4000 +ves1820 +ves1x93 +veth +vf610_adc +vga16fb +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_net +vhost_scsi +via +via-ircc +via-rhine +via-sdmmc +via-velocity +via686a +videobuf-core +videobuf-dma-sg +videobuf-dvb +videobuf-vmalloc +videobuf2-core +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-dvb +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videodev +vim2m +viperboard +viperboard_adc +virt-dma +virtio-gpu +virtio-rng +virtio_input +virtio_scsi +virtual +visor +vitesse +vivid +vlsi_ir +vmac +vme_pio2 +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmxnet3 +vp27smpx +vport-geneve +vport-gre +vport-vxlan +vrf +vringh +vsock +vsxxxaa +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxge +vxlan +vz89x +w1-gpio +w1_bq27000 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1_ds2781 +w1_ds28e04 +w1_smem +w1_therm +w5100 +w5300 +w6692 +w83781d +w83791d +w83792d +w83793 +w83795 +w83977af_ir +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +walkera0701 +wanxl +warrior +wbsd +wcn36xx +wd719x +wdt87xx_i2c +wdt_pci +whc-rc +whci +whci-hcd +whiteheat +wil6210 +wimax +winbond-840 +windfarm_core +wire +wishbone-serial +wl1251 +wl1251_sdio +wl1251_spi +wl1273-core +wl12xx +wl18xx +wl3501_cs +wlcore +wlcore_sdio +wlcore_spi +wm831x-dcdc +wm831x-hwmon +wm831x-isink +wm831x-ldo +wm831x-on +wm831x-ts +wm831x_backup +wm831x_bl +wm831x_power +wm831x_wdt +wm8350-hwmon +wm8350-regulator +wm8350_power +wm8350_wdt +wm8400-regulator +wm8739 +wm8775 +wm8994-core +wm8994-irq +wm8994-regmap +wm8994-regulator +wm97xx-ts +wp512 +wusb-cbaf +wusb-wa +wusbcore +x25 +x25_asy +x_tables +xc4000 +xc5000 +xcbc +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_ipcomp +xfrm_user +xfs +xgifb +xhci-plat-hcd +xilinx-tpg +xilinx-video +xilinx-vtc +xilinx_ps2 +xilinx_uartps +xillybus_core +xillybus_of +xillybus_pcie +xirc2ps_cs +xircom_cb +xor +xpad +xr_usb_serial_common +xsens_mt +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +xt_NETMAP +xt_NFLOG +xt_NFQUEUE +xt_RATEEST +xt_REDIRECT +xt_SECMARK +xt_TCPMSS +xt_TCPOPTSTRIP +xt_TEE +xt_TPROXY +xt_TRACE +xt_addrtype +xt_bpf +xt_cgroup +xt_cluster +xt_comment +xt_connbytes +xt_connlabel +xt_connlimit +xt_connmark +xt_conntrack +xt_cpu +xt_dccp +xt_devgroup +xt_dscp +xt_ecn +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_ipcomp +xt_iprange +xt_ipvs +xt_l2tp +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_nat +xt_nfacct +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_realm +xt_recent +xt_sctp +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_tcpudp +xt_time +xt_u32 +xtkbd +xts +xusbatm +xz_dec_test +yam +yealink +yellowfin +yenta_socket +yurex +zaurus +zd1201 +zd1211rw +zforce_ts +zhenhua +zl10036 +zl10039 +zl10353 +zl6100 +zlib +zr364xx +zram +zynq-fpga only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-106.129/powerpc/powerpc64-smp +++ linux-raspi2-4.4.0/debian.master/abi/4.4.0-106.129/powerpc/powerpc64-smp @@ -0,0 +1,17811 @@ +EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0x048d27cc hvcs_register_connection +EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0x536d329b hvcs_get_partner_info +EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0xc39c3704 hvcs_free_partner_info +EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0xd0a02396 hvcs_free_connection +EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe +EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble +EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL crypto/mcryptd 0x6310e901 mcryptd_arm_flusher +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/atm/suni 0x338ed3ec suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0xe845d95c bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0xf2eeea61 bcma_core_irq +EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str +EXPORT_SYMBOL drivers/block/paride/paride 0x0cbc7387 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x23ee2fe9 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x35335e8a pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x44c6b49f pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x886cf634 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x95b88bf5 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x99af9df9 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x9c0c79e9 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xab6048aa pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xbc427c0b paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0xed4bb8c9 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xf7c8ca03 paride_unregister +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xbd910092 btbcm_patchram +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fae3bac ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4e599ca3 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x62cda9e4 ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x9521b6d1 ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa17ece64 ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xb4b30e4a ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x168cfb90 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x36d0eac9 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x505d5a86 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x72adad96 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x3c8ba78d xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xa61cc487 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xa8434c5f xillybus_endpoint_remove +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x28de278a dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x578bd589 dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x5ae7d63d dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x92d88c21 dw_dma_cyclic_free +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xe5854200 dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xebc52c4a dw_dma_get_src_addr +EXPORT_SYMBOL drivers/edac/edac_core 0x6eb6167a edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x03d1af77 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04d0f641 fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x06a4e095 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0a266950 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0f3c638e fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0f7d6af8 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x263b8fa2 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x272d3f43 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x30d6fffc fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3f06692c fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4c6986e7 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x54af0c35 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x645b715f fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x69813a26 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x74a2d987 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x83d80881 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9089b707 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9832f3a7 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa5d71b95 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xae62b610 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb6b0443a fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb8a04b06 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb98f1f60 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc37c7cf1 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcf0b5741 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcf76f6cb fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe1ac1c2e fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe5d5c757 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf7385c4b fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/fmc/fmc 0x0bc7fe8f fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x10957169 fmc_device_unregister_n +EXPORT_SYMBOL drivers/fmc/fmc 0x4d9ae182 fmc_reprogram +EXPORT_SYMBOL drivers/fmc/fmc 0x54588bfd fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x64cfb1a4 fmc_device_register_n +EXPORT_SYMBOL drivers/fmc/fmc 0x8669f79f fmc_device_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0xa1ea03b7 fmc_show_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xab6daeba fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xb6fd7c4d fmc_driver_register +EXPORT_SYMBOL drivers/fmc/fmc 0xc5258a9b fmc_find_sdb_device +EXPORT_SYMBOL drivers/fmc/fmc 0xff44fa5a fmc_device_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00eaef99 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01311088 drm_platform_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0257dd20 drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c39a79 drm_framebuffer_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x076617f4 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x078ba00f drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08549e12 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0976d8ae drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09bc7258 drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a54b180 drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b6d91a2 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b7f1cd5 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0baa4be8 drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bae31c0 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cbd149a drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0df3515d drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0df8a949 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e891949 drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f73ff71 drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7bd603 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10447f4e drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x115429ce drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1156b609 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x137bf9f9 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13a6e348 drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14b21841 drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1539e7fc drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1654948b drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1665d5ef drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1689820c drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16c4f5ec drm_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19490f45 drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x196a0838 drm_framebuffer_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19e4430f drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a6a9cb3 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a8e8500 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b586eae drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bd3cbd6 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d33f983 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1de1da05 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e7b2177 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e8ee7b3 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acb8e4 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22bff8af drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23b6e142 drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2415abf8 drm_connector_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2997db8a drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29b18be1 drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29ba467f drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ca0cae5 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d2fd0ba drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d6ede1c drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e804540 drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x309dd6cd drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3136c3a1 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x315a279f drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3351c564 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33665707 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33a957c7 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33aa8e9c drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33d157fa drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33ea0327 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34ca4a20 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3519f9d8 drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35771162 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x369943ed drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39867333 drm_encoder_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39d19aad drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3adaa5f6 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3af51ff4 drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3badbfb0 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bd5662a drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c23ce35 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d2663e2 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e2d141d drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40659ce4 drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x414eb2c4 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4267ed09 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43bde352 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x440ac13e drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x458c6c91 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46124238 drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4671344f drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47f3710f drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49b7ccf5 drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c227655 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cf60423 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d30a43f drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d524119 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e7bd5a6 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f4031e7 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f52e10f drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fbfec88 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50891e14 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51bc5f83 drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51db353a drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5367bf9d drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54cb978f drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57453205 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58d91978 drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b68c8bc drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bc25c54 drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d12497e drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d5f3a33 drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7318dc drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d88c062 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d971557 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d9bb3dd drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e1f3121 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f9fa90c drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6005df97 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6056c412 drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60c3c709 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x649f14dc drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6560ef19 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x676ff013 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67b28c1e drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68ed607c drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b33d183 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c0404ea drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c298f6d drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d33ae6f drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d408d29 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6df8eedc drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e2fa869 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6eb5a2fd drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x704bf914 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x716522bb drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x717f9cb9 drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71bd6be8 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71d5eae3 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72a21cbf drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7318315e drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73c58c0c drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x749bd063 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77b6dfb7 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7862116d drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7876d679 drm_legacy_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7baa01d2 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c166b5e drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dd88fd6 drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e835fbb drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f49a5ff drm_agp_bind_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80247b65 drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81053b13 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81aa8907 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81c461e8 drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81e1f978 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x837c85bb drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83b44933 drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84df169a drm_crtc_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8affb48e drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e788396 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8edf9174 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x904fd0d9 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90c4df0f drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93bf8db7 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9516374d drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96a53a8e of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96b9eb42 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97e57457 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98275747 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9838abcf drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9883d7e8 drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a45668d drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ace226a drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9af6a713 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b6af8a9 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bc4729d drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c2797d3 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e72e4cd drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ed1482d drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9efb6ddf drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa208ce78 drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa46af023 drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4c3a0f2 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4c4c07a drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa53ea4c9 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5f9245f drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6387a30 drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8045cf9 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa886fa44 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa80dda2 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaacd01ce drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac5bf31c drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacc6150d drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae579b99 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae71f786 drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb14c38a8 drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2fb27e4 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb37aa861 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4c534e8 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb53116fd drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5540008 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb61e369f drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9142fa7 drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbba5e010 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbbfba43 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc9c029d drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcc6fb42 drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd466b6f drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd834815 drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbda624df drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdd123d7 drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc041ae8e drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1cc2de5 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc20c83c6 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc29db446 drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3694753 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc492bc62 drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4c446b0 drm_plane_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc55113f5 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7a63ad7 drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8acaa0c drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc907c488 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc935a81e drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9772467 drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca14100a drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb048200 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb388714 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbc1d6d9 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbccdcfa drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc3ac965 drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc437cc6 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc506aff drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc7f99de drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcccb7db1 drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd545131 drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf14e8d8 drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf4ae0f2 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0563a4f drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd098923d drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1c6c175 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2cde511 drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd308cf9a drm_connector_unplug_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3488b15 drm_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd56a8b93 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6b2a1af drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7266b5c drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd903df23 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9e849bf drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda027080 drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda28813b drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb60ebaa drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbc11d88 drm_atomic_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc61a22c drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd0b0ade drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf7ec363 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfae502d drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2d246e2 drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2ffd7a5 drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe39f7bd3 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3d355e3 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3ecc7d3 drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe48a970c drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe510b8c5 drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe58fb21d drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5f7e836 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe60d03a2 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9f7282c drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea787f44 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed588bab drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xede47a97 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xedf9b3d4 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef2dd623 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef49288a drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef51a431 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xefc6b002 drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0ecea59 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf12c5ca1 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf143bb44 drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b098be drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf24d371f drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2b52d04 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3b95b7c drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf45c624d drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf45cabaa drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf478182f drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf71caa43 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf867fbe4 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf95d7c73 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9daf175 drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9f8d56a drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa18568a drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbcc5352 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbe97070 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc471a64 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc5f3bf3 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfef4cb99 drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03082535 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0483e6c5 drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05778a15 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07c117f1 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x085cd84a drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0974d039 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f16851a drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12c49107 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x131105a8 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x152789af drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15808138 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15a99201 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16735524 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b72a834 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f212cb2 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22f85c4d drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x231ba995 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25a74597 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25dc0326 drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27fa9ba3 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29221bba drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29a29a4f drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b2b78b1 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b2e2004 drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cbf10ea drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d9d7621 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e37feed drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2feb5210 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x305058b4 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31158bde drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x337d0187 drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x363fa549 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36479b4e drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38abb13f __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38bd6948 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a4e57ae drm_helper_probe_single_connector_modes_nomerge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a87471c drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b18e320 drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b46012a drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3eb84903 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40ac904d drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41ef8e1f drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x427d014d drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x433a69db drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43401acf drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x445caa72 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x448ede72 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46a3d9bf __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4784bab0 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4905c18b drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49252ee4 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ac8b5cf drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c54b0f2 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4dc0c8d8 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f205a6e drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51863f37 drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5273994b drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53bb1421 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54fcbcf3 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59993e10 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a1ac4ad drm_helper_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a5e4b33 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5abe2c8c drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c2d6a1a drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d869553 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f07f25a drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f68223a __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x650c1bf5 drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x670373f3 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x682f3b43 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68a94ee9 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68ae909e drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d0b024c drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6de8c037 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ec1d565 drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73fd1b52 drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75d6d902 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ae4efec drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ae8c9ec drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b20a60c __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b9f2138 drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e2c70b7 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f4b96e0 drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fa36f5f drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82bee680 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83e52908 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b64eb22 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90686769 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9092b9f1 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90e60b4e drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x928cb99c drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93fceaee drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x942a5be5 drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94b11599 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95e83dcc drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x980a46be drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0c4cd90 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa16a038c drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1ae4c26 drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6b1ef8f drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7715681 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa930d86a drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa23f7d0 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa4b601b drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xacf241c0 drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad3c0418 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad841d34 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae328766 drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaead3688 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb113496d drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb268290e drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2bbb7ce drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2d3d757 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb59c8eb8 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba54b268 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba863c24 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbabdfdd1 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf39ba31 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfe3edb4 drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc65aab93 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca4d0f82 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc272aa2 drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc382682 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xceabd03c drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd14348f1 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd165e9d0 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd44512fd drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7f6f060 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb6fe3cb drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe045435a drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1b58af9 drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3a83e98 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe725c5a9 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xebad8a9b drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee1f7ac6 drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xefaa5519 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf04d6b31 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3fac4b0 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6c07434 drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb529057 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb6e31c5 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe6cb2c6 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0f39160a ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x13ba2316 ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1989f162 ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a3da01b ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x24badfbc ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x307b37d1 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3f400ede ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x40c0a25b ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4c942eb0 ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4c9db944 ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e361a4b ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e45c13c ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e8dd264 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x564e1aee ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a8fdfea ttm_vt_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cde8da9 ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6052860c ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x64c887a5 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x664f9fde ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6d73c1fa ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6f7ac2d8 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x71670458 ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x785ef6dd ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d55da85 ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7de15d07 ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x810c3f7b ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x82194d5f ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84a13931 ttm_write_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84e23068 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89a443de ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8be73902 ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8c50aab3 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d14adbf ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8eecec5a ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94a5d79f ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x975677a0 ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d0eb91 ttm_ref_object_add +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa2a129fd ttm_suspend_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa4898cfb ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa5e83913 ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa6aa91a3 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa73de2a9 ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa959c314 ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb01c89df ttm_agp_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb279c07f ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb40dae12 ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb83c6470 ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbc1f147e ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbccdd51e ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbf3c8340 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc31b90f5 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc3835e6c ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5c50426 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5f0c2da ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc62ebe68 ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc849eec2 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcfd7a68b ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd64f9b5b ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd724857a ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd7f51742 ttm_suspend_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdc989368 ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe835e3b8 ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe9b67ee6 ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xea1c7b17 ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xea322e20 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeaec7648 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf0c1a05e ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf1db1215 ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf9001408 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfa530216 ttm_agp_tt_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x2a6b9653 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x7a8a224b i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xea3f41d0 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xde89a7ce i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xf1d23e5a i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x42d51ad2 amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x045d6867 mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0c0a0a3a mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x133b0924 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x47fd30d1 mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7502da56 mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7d467d25 mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8b78c01e mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9a3c4bd5 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa5e637cf mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xabca979f mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc8544d82 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd2962087 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe3ec76ce mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe44a9bc4 mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe5c9ebd6 mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfa7ddca8 mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x04dfd124 st_accel_common_remove +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x4739425a st_accel_common_probe +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x890b9497 iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xc3f514e0 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x3e000a97 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x7a8ae8e7 devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xa6959b51 devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xf53bfc56 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x4b1766db hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x5206ef7a hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x7b7e8e77 hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc67a8aeb hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xcf0dc0c6 hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xfff53137 hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x636d202e hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x71159570 hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xb5f9a1d3 hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xfb5ee526 hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3d7f55d4 ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x4900df95 ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x491e0192 ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x4b2c93cb ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x5da15ca2 ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x85366818 ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xd35b38f9 ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xd7e99538 ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xe9cc4e94 ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x0dc0e59c ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x10eb630c ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xa8ed474a ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xc73b75c7 ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xf60459e2 ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x05d6ab8c ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x5a139f25 ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x668a216f ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x05f07acc st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x07414264 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3945a997 st_sensors_get_buffer_element +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x47c5f6e8 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5c57625a st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x76cd6e35 st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x885d1684 st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x93195ce2 st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9e9f52bb st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xaecf07fe st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb17abc0a st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb992c01d st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbf3c2e4c st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc47890f3 st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc5b96b26 st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc81bbad9 st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf8622460 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x4add8ba5 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x7ed366e4 st_sensors_of_i2c_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xbf7e9a98 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x72651787 st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x8fec3fea st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x99a6d5af hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x28cbd88d adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xae49924e adis_enable_irq +EXPORT_SYMBOL drivers/iio/industrialio 0x01d2e88c iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x0b443ba1 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x302c1866 iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0x66bed67e iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0x69a10af8 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x85670532 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x866ba520 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x901963f5 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x9577b941 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x97d70960 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x99991a33 iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x9b38b7d1 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x9e428819 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0xab7bfe56 iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0xbf398dc1 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xc0bab5fc iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xf860648e iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xbdffdcb7 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xc4174766 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x2105471d st_magn_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x4a77aa6f st_magn_common_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x9f11252a ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x473807ff st_press_common_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xa2638706 st_press_common_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x049ace30 rdma_addr_find_smac_by_sgid +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1ea5767b rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x32a8402c rdma_addr_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x7467be37 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x88939fed rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xd7b3073f rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xe87022ef rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x13af8ec3 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1455078a ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1b1c7922 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1dc839ed ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1fe709c8 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2507dcf0 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x33132ed7 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x389367fc ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x52b94874 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6b032635 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x79dfeb2e cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7b769d84 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x82232f0c ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8f9389cd ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa91ee8bf ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd3a9174a ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd65a6729 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd6b0a0be ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00aedd6d ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0115baad ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c536585 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13a8b401 ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b3d557a ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1cf9c7e5 ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d752469 ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1de63f37 ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x221837d1 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x243c71c6 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x261aec20 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x283fb157 ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29efe2df ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2be9f109 ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31a7ed11 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31c39aa9 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x330e416b ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b22ab62 ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41a32b50 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41c25ff3 ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42e4a2b1 ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a5a0303 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4afb7ac6 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x513c1e85 ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53adc477 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5741aec4 ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5dd94da1 ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5fb17a90 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x621660d3 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62919fba ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63637803 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63910d3b ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68b22133 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6cdd98c4 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72c6df80 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77fbe418 ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a8430ee ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e2f8d58 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ffee6e9 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83ea9cbb ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b551c85 ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ddab7e3 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93146d87 ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93b68d3e ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x965951a5 ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98b06175 ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c734cc4 ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa06dead4 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa11f5ba2 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9fedeff ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb105ef96 ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2a2d523 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb408768a ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5833f16 ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba17c29a ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbbbd1dad ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbbe33fec ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbdb0e24e ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe648ff3 ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3a72b8a ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6d8d5d3 ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7c94d4e ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbab8d3f ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd9c2ef7 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce7b4af7 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd128b08e ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7c674b2 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd85eb7bf ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd947c7b6 ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb10ef66 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf263910 ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf97fc8e ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0031f19 ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea35100d ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee7b9d9a ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0e3de94 ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3dde084 ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7f3dcdf ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf915fde2 ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa21fbb2 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa4f4992 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfbeed002 ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd1afbd1 ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x05d80811 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x20881d8e ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2218b3c1 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x26b82ac1 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f71c337 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x4d4eb3df ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x5204555e ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xb3e02455 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xb4377fd1 ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xb6544c1f ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xbe1e6be1 ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xbf893b72 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xfd862d8a ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x21a089c8 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x33dc60e2 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x3baa1793 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x4eb743c3 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5328d7a6 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5755c6ee ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x7af6b6e3 ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9a1cd50d ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xb952296d ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xc2baa499 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xcb95e95b ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x54f29ab1 ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6a68353c ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x05f9d0d8 iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x220664e1 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2dc8e979 iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x48e58be9 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4cbd7c94 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4d6d529b iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5c265c52 iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x71f8e641 iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7390eb53 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x86c7e64d iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x900bdebf iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9d499c84 iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xdf6434a5 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xeb86799a iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf6e4a50b iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x08f49f70 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x237be670 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2730c343 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x31568ec5 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3a064255 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3bdb958b rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x474c0d14 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x76e3d02f rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x78da68af rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x85572fdc rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x89bbb341 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9a4c3713 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb789ea7a rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc7f310e6 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcc4c7c22 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xce4bba35 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd6b2e6b4 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdc8125c1 rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf147ccfb rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf968d23b rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xffa20a5d rdma_init_qp_attr +EXPORT_SYMBOL drivers/input/gameport/gameport 0x1f89b967 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x36fd009f gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x4ff61989 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x749a6d25 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x97575b79 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x9aaaff75 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xbee724c4 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0xe7e94a54 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xfc0d4209 gameport_set_phys +EXPORT_SYMBOL drivers/input/input-polldev 0x16f801a5 input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x2f31ad79 devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x387c4089 input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x4b22b67f input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x8a95f752 input_register_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0x683c9cbb matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x06b5e885 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0x2172a12c ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x61b34644 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x91f26e45 cma3000_init +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/sparse-keymap 0x05ba710b sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x2d362151 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x707001a5 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xae56e685 sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0xc0484596 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0xf7c6e868 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x4fc80a4b ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xe9de7c41 ad7879_pm_ops +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x043eaf4e capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2474741c capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x596b7037 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6000d2c3 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6484562a capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7292ab34 cdebbuf_free +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x72a25a72 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x850cb4ea capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8a3ca899 capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xace2862f detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xbc21d2fd capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xca7e6d37 capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfd552f7a capi_message2str +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0f03207f b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x231df0a9 b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2a8f3e05 avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2d51092c b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x333a65db b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x37bb568a b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x3d517a26 avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x5e9a0f7a b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x68512882 b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x73d3f163 b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x78660a86 b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xac237330 b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb996abc0 b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdf93d35f b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe2d0332d b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x0cd62d8d b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x23ceb389 b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x370a2612 t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x3854d3ba b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x619ee32c b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x972cde45 b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xab79d622 b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xbff931df b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xe93b0700 b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0x29562993 b1pcmcia_delcard +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x198aed3e mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x3a790322 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xe0561af7 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xefdd89c1 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x193ed27f mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xd1db9f8b mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6fe1ca04 FsmDelTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x79789296 hisax_init_pcmcia +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9f987c85 FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xa1bc94b9 FsmInitTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x0452e89c isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x690b17c4 isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x7a20c2da isac_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x8c6b66ef isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xdfd209c9 isacsx_irq +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x0f6c029b isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x1b2c59e7 register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x78cc003a isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2480ff72 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2a6cf6f4 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x33bb3c2c mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x34509a89 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3601a41b create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x40b82621 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x429c9e27 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x493b47bc queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4ac58868 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5beffb57 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x67160edc dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x71dfeb1e mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x752d34b4 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x99ca6d1e mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa671e10d recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa881b8fd recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb3d976f2 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc631cc73 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd3879b12 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe247df5a mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xed889715 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfb9a70e5 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfbf54f0b mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/md/bcache/bcache 0x125ec385 closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0x1d89bd11 bch_btree_sort_partial +EXPORT_SYMBOL drivers/md/bcache/bcache 0x1f529ce8 bch_bset_build_written_tree +EXPORT_SYMBOL drivers/md/bcache/bcache 0x26481f26 bch_btree_sort_lazy +EXPORT_SYMBOL drivers/md/bcache/bcache 0x440b4830 bch_btree_iter_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x44a37d62 bch_btree_iter_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x4ecd91c8 closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0x520a50b2 closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0x5b59b856 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7daccb73 bch_btree_keys_alloc +EXPORT_SYMBOL drivers/md/bcache/bcache 0x8833b0e8 bch_btree_keys_free +EXPORT_SYMBOL drivers/md/bcache/bcache 0xa3c5c702 bch_bset_fix_invalidated_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0xca5df778 __bch_bset_search +EXPORT_SYMBOL drivers/md/bcache/bcache 0xce47a6d9 bch_btree_keys_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0xd2813054 bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0xd4226dbb closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0xdf892351 bch_bkey_try_merge +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe67c2d16 bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0xec6f33d0 bch_bset_init_next +EXPORT_SYMBOL drivers/md/dm-bufio 0x268682d2 dm_bufio_forget +EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL drivers/md/dm-log 0x31afd609 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x708134ff dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x7dd26d17 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xd12122a2 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x0e9652fe dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x3b5ee86d dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x5b97de5c dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x619c2abc dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0xac8d3c5f dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xbcbc5e32 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/raid456 0x131f3e0b raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1b3c2491 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x44d64bbd flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6058db49 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x688ee154 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6ae7a5d8 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x72929f25 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8adec70c flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa24257d5 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa5cb1507 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xaadcd6ab flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd65ed8d6 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdf84cd23 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf71368bf flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0x30cb4cd7 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0xd1d0a76d cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0xd4f05708 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0xe3592188 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0xf84e0fb8 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x6dc6a5cd cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x497d131f tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0xe3ebfc9f tveeprom_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x037eb423 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x17d4b5ad dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1922a026 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1e5fa7cc dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3078be06 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x32706276 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x32f132d0 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x33bd98e7 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x37d10c24 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x37d680b6 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x43f3921f dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4f7288b5 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5c0ea535 dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x62d3000c dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6c09ad2b dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6cc6a3c9 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x70af1058 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x787768c7 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x78db694b dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7f4f9b54 dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x85a5e7d3 dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x88c84eb3 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9ae2d7b0 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa100aaba dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa1a0ccbc dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa3aece55 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa8cf285a dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xca9321fd dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcbd80a01 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcf589e8c dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd28ca000 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd2f2096b dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd8f7184c dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe04f6e7c dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe81d855a dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe8729f81 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf28e7431 dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfbaa7e01 dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x249d30c5 af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x39032e5d ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x82f8e5d0 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x1147492e au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2a12f9ee au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x409b38b8 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5facd7f1 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7a1de5c2 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa37a9c73 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xabc98f01 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xbeca59bc au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xc13a6518 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xd9a76346 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x61f29ad6 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x636d7b09 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xc6879ece cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xacf4b7d5 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x4876d167 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xae8599c6 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xb0ad2f6e cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x9549f55e cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x321c17b5 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xdc3c29f1 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x36f65dc8 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x46e1cc03 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x54b3ff1b cxd2841er_attach_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xaca2a6b7 cxd2841er_attach_t +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x2539341a dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x72de69e1 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x73956010 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xcb6de429 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xd4153245 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0d536b0a dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x10ea0635 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1338d4a3 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x178ac7e3 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x41563011 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x55c1278e dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5c41188b dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7b2026d8 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8adcf18f dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa6d44437 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb0fe2047 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb1a31621 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd4529b27 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xee93d9bc dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf4375567 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x9faf261d dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x2e298906 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x5e966f48 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x5f1c5558 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x7d18b762 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x99f327d2 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xeaf21726 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x5d2c5256 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xaa9fbf07 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xc59959d6 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xd6109509 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x85f9fba1 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x1275ac5e dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x2eba0be7 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x96da05a3 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc3b5d489 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc47536da dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xe318d412 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xfea3c073 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xbdb828ab drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xdf5ef11c drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x0b665b6c ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x8c94f0c8 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xb1d483d0 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x01910724 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x2b3ff882 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x6d6ab9b5 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x052503c3 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0xfbc04c68 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xa23ec932 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xa7976df1 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xbd47cf8d lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xb749840a lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x0fafb334 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xa9cf21f5 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xf01300b5 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xc7d59798 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x6762d1af lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xfc3d1b79 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x2e749bac lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x00c41645 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xf2ea929e m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xcbf29c4b m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x6f8a19a5 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x08965a36 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0xb9833b23 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x01bee9b9 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xe2901aa8 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xf8a2f61b nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x594eea9d or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xff9c6b23 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x9cf17ed7 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x7f42db98 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xc77fd95d s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xeeacab08 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x1870cc0c s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0x63f8eb3f si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x79d0fc11 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0xb5ab3e31 sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xe61efcf0 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xb71dbed5 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x3952c733 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xbbd52df3 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x01b3d2de stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x93669684 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x28f75648 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x0c60c107 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x0f39f91d stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xaace7285 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x7c269dfe stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x3916f506 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x289d1d7f stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xbde169bc tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xe192bbcc tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x26f12b27 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xcd2e2663 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xf93b8e0b tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x2cdea3a1 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xcf630a12 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x0ed77b55 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x2e961bbd tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x81a8d65f tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xe3c85270 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xf2985af2 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xe48d2c49 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x096f9ac1 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xf6120878 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x7ae5754e zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xd0627132 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x05c01991 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x2f184d7b flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x37a1355d flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x3824da4f flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x67fe595b flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x74110f06 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xbc91593f flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x18d828b2 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x3337022d bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd692a727 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xda5579ae bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x26fe13ed bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xa182c1ff bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xdbf8a849 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x0e33b81a dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x10708717 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x11f43cb6 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x44b26d8e read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x6e84f830 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x81e8fc83 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb6dfdfab dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb76ead8d dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe3da67ee rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xd2bf17c7 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x19a80b28 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x8c427caf cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x9a22fb35 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xb87fb855 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xd4be2e2a cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x8f1a38de altera_ci_init +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x1f48d101 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x610a47bf cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x94733e67 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xa72129fe cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc282e476 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc6cd26ff cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd7ed05bd cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x2231116e vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x78dc6b25 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x0f2a356b cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x4121991c cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x9f479ec2 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xd18ab627 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x06c6134d cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x83464589 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x974a747a cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x986c4d5f cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xa6b2df03 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xccddbac2 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe9874d5a cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x35728fea cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3d1c39c7 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x47f28f14 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4b15cb56 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x548bd47e cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x60b38770 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x65ea4f2d cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8645a363 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8a43b045 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8b96e0d6 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8cae08c2 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9d3e7e3d cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa76dc952 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb6e97503 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc3c51cf7 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd07f2833 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdc90496b cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xec8c33d5 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xed3018c0 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf256e23a cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x029df027 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0fb76365 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x20103dc9 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2c688991 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4e34d44e ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x58fbda85 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6e22f667 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7bccd497 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa237e288 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb085699e ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc58bf229 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcffd9b10 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd378687b ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe7a3a811 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xee28a272 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf3e3914b ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf3f564ac ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0cadb9af saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1ba6b287 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2507f4f9 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x27d89b9f saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x34fec0f9 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x67487522 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7b8deb84 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x837a9901 saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa637d197 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc70d4e63 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xefe91872 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf87ee614 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x4c9d00e7 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x077c2bf8 soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x2ca59986 soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x4ceb97e4 soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x7aa5d5c1 soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x9ec282af soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xa17476b2 soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xbbbe7987 soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc +EXPORT_SYMBOL drivers/media/radio/tea575x 0x4d13bd66 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x63580950 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x75cecef1 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xa81ad0f0 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0xc2283fff snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xcce209d5 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0xe0ae4e72 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x10de0fb3 lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x4656085f lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x5357fead lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x758ea23b lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x94870bf7 lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xafc5efa3 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xbdddaaf8 lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xeac471e1 lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/rc-core 0x1c66de25 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0x84f7c97f ir_raw_handler_register +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x4ad1735d fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0xdabd39e5 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x09aa8d28 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x1e6484d9 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x8da83157 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/max2165 0x82209a15 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x81a84cae mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0xf33e7608 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0xcb76c12d mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x68a55205 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xd3cebf9b mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x110a512f qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0xa833ed9f tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0xa1923500 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x43f885b6 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x464a71d1 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x24da3c03 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xf05c55ca cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x07a4220c dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0cf691c1 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1553b5d2 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x199d01fe dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x30ae23e7 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x4702a3b6 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x59896ee9 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x895442c6 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xed473ec6 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7bcd9391 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7ccf7444 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x966db238 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x97afa601 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xb6885766 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe48f7698 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xfd74c1a3 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xc33a99bd af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5f28fb37 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x761d281e dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x85bbeed6 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xbb06098f dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc5eb46ca dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xcd72a7ff dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe8a7c434 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe9450869 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf05c7172 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf46366c4 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf69e5bb5 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x07fe7fee em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xb5660f09 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1d17f7f8 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1f716b48 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x20c71d63 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x38796a50 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x76bbc65a go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x8806895f go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xbf1bd065 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xdd276536 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf3f6c0d3 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x02297ce1 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x0f126283 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x22b12dec gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2ef1e54f gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x3f5cf53d gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa43f4e0b gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa7b9cc85 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xbd3daa11 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x4d4f71f2 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x93aab527 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xafc35010 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x5964f1cf ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x72a3f005 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x33663427 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x78beaa3f v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xcdcb8541 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x3911ef73 videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x3be8dd7e videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x55cb1cc8 videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x580efa5f videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x6c37c7f4 videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xe0fb86e7 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x6e17e5d3 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xab794768 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x1f06a5c1 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x2892a8c9 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x53eef3d7 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x9ff78ce7 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xecf59134 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xf9c56589 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0x75807c2c vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x01d4a255 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x03469dbd __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x04bf9227 v4l2_of_put_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x06ebdfe3 v4l2_of_parse_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0981972d __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x107f61b5 v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x14d59409 v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x152c8a67 v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x208f05a8 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2608ab8a v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2656b931 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x278e5e0a v4l2_of_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2c8c22ae v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2ea6527d v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x37525249 v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bc92dc2 v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x42f45e70 v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x433b9216 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x47c3811b v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4de86331 v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4e46d556 v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5a44456a v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5dd90165 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x68ae0aaa v4l2_of_free_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6b9992e8 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6cf5fa56 v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x70a1bad5 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x71fb9426 v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7666e602 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x789abe05 v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7906cfa3 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3a6991 video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a884fe0 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7dd5002b v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x80489154 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x81be111c v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8b30d4f4 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8bc95871 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9413ce8f v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9e371445 v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa2569e98 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa4a88f2c v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa97ed066 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xabac867d v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xadd5fac3 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb1f9fd48 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb2e8bc25 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb485875e v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb532e77d v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb7bb7beb v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb863de1e v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbbc8b415 v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc34e59ca video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc78a4a74 v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcbbd1416 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcd39ade9 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd162e825 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd18041dc v4l2_of_alloc_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd1836a34 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xde18bafd v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2bfc808 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe3d365c7 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe7a54309 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe8890c07 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe92b06a2 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeb82cf32 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xee312767 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf62cfa1c v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf7f9611a v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf84b66f8 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf9d4a5f9 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfb4d273d v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfdcd7476 video_device_alloc +EXPORT_SYMBOL drivers/memstick/core/memstick 0x0ac9683b memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x2535ad69 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6024f7d7 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6ed6f38f memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7b12ef6d memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x97f35b5c memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa09340a6 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xcdb7edd5 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd135cb10 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc07e67e memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe8cd2c82 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xf7423930 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xfe5a4f0f memstick_resume_host +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0d37d8c9 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x13cb7a48 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2433028e mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2dcc08ba mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x429af857 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x456d0228 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x47e5fe71 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4a81a947 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4ad96f03 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4b72d4a1 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x547b2ff7 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7d9bc5d4 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8d92700b mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x903df41c mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xafc11bcd mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb113d2f1 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc03b9956 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc14458e1 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc8d0059b mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcf2ac10e mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd306e8be mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd3bcb45c mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xda62d9e6 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdbb28815 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe212b2eb mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe2c7f5ed mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xead10083 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf3604ce6 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfd715848 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0a0bcbca mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x13d70271 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x223a21f2 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2883a84a mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2e5b6529 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2fb3cf0a mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x37e7061b mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x461b0b4f mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x54311243 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x553d7f24 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x55730f77 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x69e3b842 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7921eaee mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x83d04c19 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x88140b0c mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9dfadea2 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb06adec0 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb1b4db4f mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb4451df7 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb6cecd48 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbdc4484e mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd8cf49ef mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe851a93e mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe858f584 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xec9c6356 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xed6e74e6 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf227e477 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/mfd/dln2 0x267049fe dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0xb344da22 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xe7bd6d8c dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x361eaf0c pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xfa680a3f pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0d0c42ee mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x24985e6c mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3f4e517d mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x53e76b29 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6b2dae6f mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7dbebd01 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8c8ba3aa mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xad94df91 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xdf296c9d mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe64594c7 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe91ad274 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 +EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 +EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib +EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led +EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw +EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x6a483ffc wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x7760fd67 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x55d1ac97 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xb5fa1d43 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xcab3aeba wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xf8891523 wm8994_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x5f074f19 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x98e4eff3 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x30b3ae49 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0xde91f5f4 c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0xe5120bdc c2port_device_unregister +EXPORT_SYMBOL drivers/misc/ioc4 0x30371f1e ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0xd7dbb3e0 ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/tifm_core 0x161cd8fa tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x27b238a0 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x4ff50c4c tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x6adde909 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x6bc63e9a tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x6cdc51b8 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x6d63df46 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x93e60a0e tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xa8c2ec46 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0xd398f5e5 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xd6d2f00b tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xdd7c9e9b tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xdefedc80 tifm_unregister_driver +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0xc63e7fcf mmc_cleanup_queue +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x5b1bce60 mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x79b397d0 mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x05991a56 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7cbd2489 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x89952f99 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xa8795877 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd8ca0747 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xf5333dc0 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xf6cbc233 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x1de135f1 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x4cfdec98 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x5885c10f do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x5e1c8aa3 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xebb0d06e mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x6e4ce070 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xdc66674c simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x48f87496 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0x4e96f41e mtd_concat_create +EXPORT_SYMBOL drivers/mtd/nand/denali 0x78e42dfd denali_remove +EXPORT_SYMBOL drivers/mtd/nand/denali 0xdca7700b denali_init +EXPORT_SYMBOL drivers/mtd/nand/nand 0x1d066e4d nand_lock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x58956810 nand_unlock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x7943aa77 nand_scan_tail +EXPORT_SYMBOL drivers/mtd/nand/nand 0x7fe3df47 nand_scan_bbt +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/nand 0xc6d76dfc nand_scan_ident +EXPORT_SYMBOL drivers/mtd/nand/nand 0xe19eecab nand_scan +EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x11ccbfb1 nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xf387a0aa nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xf4d8d15f nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x5596497e nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x5a5a103a nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x8cfcf75c nand_flash_ids +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x74500629 onenand_scan_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xae117f1a onenand_addr +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xd903ba0a flexonenand_region +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xf181a933 onenand_default_bbt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x07a051e2 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x111e23b7 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x17ec6831 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x32630ac8 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x402f020c arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x51704c16 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x58686332 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xab533aa4 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xcea2f3f2 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf65670b0 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x2408225c com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x64bea8f5 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xde14a41c com20020_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0ce329d7 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1db4e8c7 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x207230db __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x235d8532 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x29e5d8c5 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x49cce852 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6a870e05 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8afbac04 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xba831b8f ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xcab50b4d ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0x41a5dbbc bnx2x_schedule_sp_rtnl +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xb71d79d9 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x0d8be5fd bgx_lmac_rx_tx_enable +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x285bde59 bgx_get_rx_stats +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x42264715 bgx_get_lmac_count +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x6dc1648d bgx_get_lmac_mac +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc397f585 bgx_lmac_internal_loopback +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc82be691 bgx_get_map +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xe48ca42a bgx_get_tx_stats +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf101d1b2 bgx_get_lmac_link_state +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf9508980 bgx_set_lmac_mac +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x123d0948 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x36c3df61 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3c911bc7 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x49ee1a32 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x53a54a0c cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6d588080 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6eed240d t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x81e02826 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x847a0b6b cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8eb5f4b7 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc1b0fb3b t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xda08be1e t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xda254db5 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe9daec92 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfaa6d706 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfb614fa1 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2a1ab71a cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x36d40fd9 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3edaf999 cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x420b8f81 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x473d199a cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4d4f1d1b cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4de0d21c cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5129accd cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5a67dca4 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x688f874e cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6d248ae2 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6e4c3ca8 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x723ed6ca cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x723effa1 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7bb2b134 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x82edc481 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8734f980 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8ebcba63 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9180d48c cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa0e4c159 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xad1fef16 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xad4667cf cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xafe5698c t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb0687115 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb8b2c69e cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb8b83f5f cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd6dbe6fb cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd7523057 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd8fb6d82 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd9e443b6 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe241680b cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe3347353 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xef30c82c cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf128f000 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x1c170763 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x31964c93 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x35936dbe vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x80e24382 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x81f91116 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x86318d5c enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x5d0c1e0e be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x6774b254 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b319ae9 mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1288d68d mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14b8f70d mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1951ca80 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a30e928 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e1e8d79 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x317eebf7 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d8dd6e7 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ba0a463 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f084411 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62c97382 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6562c7cc mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x673d071c mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68d27c89 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7672ae9b mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x795323cb mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7abd1b1f mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82727081 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8335c88e get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86de66e5 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f5f1332 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4983a51 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa68b880e mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6b74ba0 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac362562 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xafff25ec mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb32a4db3 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4994d46 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba365d32 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb5b3f1f mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2dc340d mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc580d4a8 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccbd69f1 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2bbe13e mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd91c32cb mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc923162 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1d1cec7 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd161cd7 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x058dcd53 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0857aabd mlx5_get_flow_table_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb7287e mlx5_del_flow_table_entry +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13fb4d9c mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16420b48 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x245fd966 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25b2db84 mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2aca73f1 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32a9a24a mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3395c16a mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e02262f mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43d87518 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b5d55d2 mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5231dd7b mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5662fc94 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6811de42 mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73b298f0 mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7591b125 mlx5_modify_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77eafcee mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b01422a mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f125ad6 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x841c7891 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87fa0dd9 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x891d1d92 mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93605bd1 mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a50dcc8 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa167e738 mlx5_query_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa260c0f5 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa61e535f mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa88beaa7 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad1fe2c7 mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5fcf211 mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7eeb771 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd9faf3c mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbded81a5 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1ba6b3f mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2ea4eb5 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5b29268 mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdcf34c2b mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6af33e4 mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf54364eb mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc728a49 mlx5_add_flow_table_entry +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x22809fe8 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2b347490 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2d07a992 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3efc4b7b mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x99906e29 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb9511a36 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc751d9f8 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc79a4238 mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee8e0771 mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa209d1af qed_get_protocol_version +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xbd08ec46 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x5d5b1cd6 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x7d02e84c hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x7d9175a0 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x8adedc40 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xa8e8d964 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x1f4ad2de irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x47bf234d sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x6beb109f sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x9524bfaf sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xaabbf0c6 sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xb5793070 sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xbec28d63 sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xd31b41f9 irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xebdceb31 sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xf7a81977 sirdev_put_instance +EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mii 0x1ef150d6 mii_check_link +EXPORT_SYMBOL drivers/net/mii 0x2a30d1f2 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0x3d141438 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0x8bc16e9a mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0xac834fe7 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0xb16d39f1 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0xc31ee8ee mii_check_media +EXPORT_SYMBOL drivers/net/mii 0xd28b1c8d mii_link_ok +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x5b4965f6 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xbbc8e1e8 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x1fca3a71 cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x261fc8d8 cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x35efc850 xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x9577ffca xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xed7d4008 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/phy/vitesse 0x0f054b2c vsc824x_add_skew +EXPORT_SYMBOL drivers/net/ppp/pppox 0xb3f26511 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xcf2ef33c pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe315090d register_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0xe134c847 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x300bb931 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x40bd0e2f team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x738e5ffb team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x7b2d49dd team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0xad679d82 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xde186b7b team_options_register +EXPORT_SYMBOL drivers/net/team/team 0xe27dd0bf team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0xe28e6bbe team_mode_unregister +EXPORT_SYMBOL drivers/net/usb/usbnet 0x0f9b3896 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0x61b8e56b usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0x9da37a1d usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0xd71d049f cdc_parse_cdc_header +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0db9f3fc attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0f83e9d1 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x4b0d39b1 hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0x4cd5a44c hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7383528d unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x8944883f detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x92a65f1c alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0xcab0d54e hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xccbb2b59 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd0367c25 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0xe6181d20 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x823f40e9 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/airo 0x094067a4 reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0x58e66dc3 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0x707c9d21 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x14b1fb64 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x32b00d05 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5b2c8502 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6bf90798 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8ae78ea6 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x916f7af6 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x99cb75f6 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xab6b038b ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xae595f26 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb554126c ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb980396f dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf96615a3 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4038b093 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x49968904 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x50e369fc ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x631ec961 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6483e263 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x678e8866 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x827a7ed3 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x86b032ba ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x911f43a6 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x970a8f1e ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc279fc75 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xce4d1d70 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdc475356 ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf2e724ae ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf5de47de ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4cf4faef ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x64d5a7be ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6a08e6e0 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x70330560 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8814c67e ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x90449c16 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x9c5012b2 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa7523b2e ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xbc43694d ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc052f9d5 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd9fbb21c ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x04ff3035 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x180cac77 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x28f5a2ec ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2a44795e ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x360b8ab3 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3965ccc3 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5a3a4b61 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5b68e36a ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5f0b4175 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x60cf37a8 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7b63c8b3 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7c5af0b6 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7ef436d2 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x86f41a3e ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9d4ca2a8 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaa622a9a ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb083752c ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc63b2e4d ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd391855d ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd8afc00f ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xee6a4d73 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfd2427a7 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfe6e7338 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x007ead76 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x035f038b ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0512d93c ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x07da3ede ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f767f9f ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x120ae889 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x15131ffa ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1765d71c ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19e036e4 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b525b8a ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ea779e9 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ecb11cf ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1f0c6363 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x22611e7a ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x227dfd3b ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x26b7449e ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x273998e8 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d47cc07 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e260916 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x30ac6968 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x32586428 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x330ddd7b ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37543297 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37de130d ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3affe505 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b3b1fb9 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b92ebbe ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3bdd1530 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3cb86ccf ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3cf534d2 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e33c074 ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3fb8bd90 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4173e2c4 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x435fd39e ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46a6ee76 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48d015a3 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51b6d2c8 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53bdb964 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54a6c447 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x55f90878 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5bb9db05 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c7651b1 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c916b12 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5ed35b81 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x60a33d0c ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6580aaa2 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66eb2029 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6860f6cf ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6964b615 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6cfa0c57 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x728203aa ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7296411a ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x73094246 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x76605eee ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x77c6f003 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x790e5969 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d65c020 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7da57b1f ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7dcb044d ath9k_hw_request_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x83b9696e ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x84e288d9 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x86f44222 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8a6e17a6 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9067c638 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x919b938e ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9402c490 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x986848c4 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f89da76 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ff6cf69 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3604377 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa57d9682 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa65c5bba ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa95cc9ad ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa3a4697 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf5f38c5 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb81a9419 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc9bada1 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbdb751a9 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbded0e93 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbec1a42f ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0d5aae2 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0d98f86 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc7131073 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc7f97f7f ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb78e824 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd72763b ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd2b5a4db ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9690af5 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe34a4dba ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe60c9406 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe6281c51 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe691128b ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe963932a ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeae0256f ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb7ead5a ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xebfa5e65 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xed518259 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xede1ec94 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef603391 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf1d6e256 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf2472b3e ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf9cd1a7d ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfc8ae58d ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd252b4c ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffda667f ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/atmel 0x3766649d stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0x7a9db171 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel 0xc0727e33 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x0105f857 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x037a7dc9 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x07eb80d5 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x20b29ad6 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x2eb8366f brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x39d487ad brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x55a7155a brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x71c97223 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x935c617f brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xa2cc2d86 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xb248365e brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xb6016c43 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xb9c1ba19 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1203e572 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1723ac32 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x19cbdebd hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5174ef93 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x533daa42 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x56bd1059 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x60b99feb hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x73869c02 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7969e7e4 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7b686218 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7e2cf729 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x842f214c hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x86ce7179 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8a06e849 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8adf66ca hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8f0ff67a hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa0487c20 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbc2ea706 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc5649168 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xcae5fcb7 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xcf875644 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd7598143 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe25b4872 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xecee3c03 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf477c49b hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xffe53c9b hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x219fce0c libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x29e4060d libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2b40d2cf libipw_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2b4dec07 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x31d49e09 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4cfc959c free_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5ddcedb3 libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5f5df45a libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x6022ebbf libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x62a1348d libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x78d79bcd libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x91ef8ff5 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x9ef8d1df libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa04d33b7 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa37049e9 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa7bf67eb libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xaa34b49a libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xbd7fd50a libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xcea35405 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd9ef2f63 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xef1b1f6d libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x07190295 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0d798291 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0e61af85 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0e680326 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x15b067b3 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x16c8aba8 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1b897cc6 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1be7fab8 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x21b73f35 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x23b0eaee il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2b1fd6a9 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2bae62e4 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2c1a61c5 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2f40d17a il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x322b5540 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x33e3c81a il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3495cda9 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x356a1b04 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x35f0f39d il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x365f1e13 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3b65e428 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3db92244 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3dce2b5e il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x43523e9b _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4374cb53 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x50dd37f8 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5387c101 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x55e68f7a il_force_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5c495167 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6c40ecdc il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x70413bb2 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x735bc8e5 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x758dc812 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x75f30ca1 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7dc4fc27 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7f773896 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x81f635fc il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x83133d1f il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x87e6fd63 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x88ce2bd3 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x910b7ab9 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x91185500 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x91fd64b6 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x93d79e66 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x94171389 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x947395f7 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x95afe075 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x960288dd il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x972713fe il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x99ee101c il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9b060b72 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9b8b55b5 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9c63efd0 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9e1d59a1 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa1343770 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa18f31c9 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa6610b99 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa6ed993c il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xad4b7369 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xae0b4159 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xaf56b0c1 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xaf756bf5 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xafb3727e il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb0266457 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb3b90184 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb4f5e741 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb85f23ad il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbfaa9f9e il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc0a05b78 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc18667b5 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc18fa585 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc1f54632 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc260cd01 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc3ef3419 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc4ad2a65 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc538445f il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc67dc359 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc72b88e2 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc7e73d59 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc803bdb2 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcaf650a9 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcb5307c6 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xced4eae9 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd7e338fb il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdc35b5f8 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdedca967 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe061c6de il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe3682d7e il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe533a951 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe6c35edf il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe9086265 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe975bf71 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xea639319 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf199a8a7 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf25ca0f6 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf75e8023 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf8badfa2 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfe786173 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x1b06ce78 __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x2447a6ab __tracepoint_iwlwifi_dev_iowrite8 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x314a20a8 __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x5e9c24ff __tracepoint_iwlwifi_dev_ucode_error +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x8c8ab242 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x9a1b1df9 __tracepoint_iwlwifi_dev_ioread32 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xdced6db1 __tracepoint_iwlwifi_dev_iowrite32 +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x238cf0db orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x42a8ac20 orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x44daeda1 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5dea5bf1 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x66545bca __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x7071a127 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x74abe2e7 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x9c5ac87e free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xa976f665 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xacbf3ae7 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb00f8b0b __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb2053cb1 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb59b79be orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc96982f0 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xdf8f8aa9 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe38fc24a orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe7d6e78b orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xbe03e406 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x16b3e2e2 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x192a8f39 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1d8ac9b8 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x29636b2f rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x31e7dfad rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x333aa63f rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x33fcb1f3 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x391462d2 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4c018382 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x53b35aaf rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x59344ac1 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x60d999fd rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x62b5f10f rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6663e6dd _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6821798d _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6d68fd9d rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7022757c rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x792cf13e rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7e14adca rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7f2f4998 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x937f3db4 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9b24f936 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9bb16de7 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa2d0fd5e rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa61d4516 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xab5b6029 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xac5a0e81 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaf48955f rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb8ed0bfc rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbe9e1284 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xce81dddf _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcfd516f8 _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd564cd29 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdaca938d rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdbb9719e rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xde2facb5 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xebf5b762 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf27e49ee rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf4f4bf4e _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf926eef5 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf9c86dad _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x1620c94f rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x6ca0551c rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x73f121dc rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x744fd6fa rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x0afca1ac rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x0cee900f rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x32bea349 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xe16bc794 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x07be6e7e rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x18327e24 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1ce36921 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2436753f rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2bd3de69 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30de2e43 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4edcc3e8 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x502184a5 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x52ec32b4 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x58f642f2 rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x607ca666 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b1a5b11 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x74826f7d efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x857f8223 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8dff91e7 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x90bd513b rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9e613442 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9f6b0103 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa0f9c837 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa369b056 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb429c5c0 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc450ad7e rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xca8a2511 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd97ee4f0 rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf0f9520e rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf54e6524 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8f1ecff rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfcb35e71 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x12df1a9e wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x1b2c9fbc wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x5170bb9c wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x69421e98 wl1271_free_tx_id +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x0b271e9e fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x9de5ba34 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xd78556e4 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0xca77b978 microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0xe75f0920 microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x9c5656c8 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xb058db11 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xe7dc4455 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x2d943900 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xdda756cf pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x0cb8c57a s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x4142f8ab s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x7a28c53e s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x63608fb7 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x658a0e8a ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x68d5cd51 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x70f99bf9 st_nci_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa83035a2 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xac852495 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb4a0e911 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xda64d0c2 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xdf440a2a ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xed70664b ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf38b0617 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0a7dcb5d st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x25e8402c st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x29d4a38c st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3062011f st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x379c498a st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4dc80af9 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x616ee131 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x656240e4 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6620fec0 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6a291435 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6dbdd517 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6eafa5ab st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7683fc0f st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8bd39ff5 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbc217f0a st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd87a2977 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdb762327 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe2ffeebb st21nfca_dep_deinit +EXPORT_SYMBOL drivers/ntb/ntb 0x24351707 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x5df9bf6e ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x6692b124 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x690a309f ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x9b46b1de ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0xb7d15d83 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xfdaa6603 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xfe0c185f ntb_register_device +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x1304dd58 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xa5f2216a nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x68624bed devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x045dd146 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x069fff2b parport_read +EXPORT_SYMBOL drivers/parport/parport 0x10a938ec parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x122c3018 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x23ba4108 parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0x3741a4fd parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x3f0d94d8 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x402128c9 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x415234b0 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x46fabf58 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x5e20c474 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x5fdb22ce parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x64319a10 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x7422a9c5 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x7ad89705 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x85076654 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x88c79850 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x9295cda5 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x96cf3c19 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xa6766c43 parport_release +EXPORT_SYMBOL drivers/parport/parport 0xa826c294 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xb23ab4c3 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xce9711ba parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xd090cd0a parport_claim +EXPORT_SYMBOL drivers/parport/parport 0xdad90509 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0xddbb24db parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0xf46f2667 parport_write +EXPORT_SYMBOL drivers/parport/parport 0xf47b910b parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xf6494378 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0xf8b77b30 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xf94e09d6 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xf9d050bb parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport_pc 0xb360e275 parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xd6d20f0a parport_pc_unregister_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0884d042 pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0b64c5b4 pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1ad5f777 pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x33ec3a7f pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3a19b46e pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x46bbdd19 pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x763ad16f pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x79e60537 pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa6469d8d pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb2194a0e pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xcfb30775 pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xcff55d17 __pcmcia_request_exclusive_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdb747c54 pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdf9bc2f5 pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe383a53a pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe4d12f4c pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe7b92b9e pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf0e07e12 pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf769cdec pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0a16aab2 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x49d6e1c5 pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x567d991e pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x6507098d pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x9b9df22f pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa1bdd9d5 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xbf36db09 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xce50bca2 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd33cd99c pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf3e7d99f pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xfd94f4b9 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x28b331f8 pccard_nonstatic_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xadc05209 pccard_static_ops +EXPORT_SYMBOL drivers/pps/pps_core 0x4833b620 pps_unregister_source +EXPORT_SYMBOL drivers/pps/pps_core 0x4ee60586 pps_lookup_dev +EXPORT_SYMBOL drivers/pps/pps_core 0x77a56298 pps_event +EXPORT_SYMBOL drivers/pps/pps_core 0xe8a13292 pps_register_source +EXPORT_SYMBOL drivers/ptp/ptp 0x1404636e ptp_clock_index +EXPORT_SYMBOL drivers/ptp/ptp 0x9e9d6846 ptp_clock_event +EXPORT_SYMBOL drivers/ptp/ptp 0xae1ff64f ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp 0xb6d58140 ptp_clock_unregister +EXPORT_SYMBOL drivers/ptp/ptp 0xec538d95 ptp_clock_register +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x0135aed0 rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x2356f8d8 rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x3f91f4cd rproc_get_by_phandle +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x40334571 rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x6462a3c8 rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x6d9b39a8 rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x94f0ad60 rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xb2e822c2 rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xd4580e13 rproc_boot +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xf7561c7b rproc_vq_interrupt +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x54c7435f ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x5cf00092 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x94720f2b scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xa97b5c3b scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xc384b127 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3250a049 fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x57873cf2 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5963bbe4 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9f11d853 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa85a893c fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa997fad6 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xae91081e fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xcdbb3a36 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd7bf4fce fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xeb4fd47f fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xed3db8d1 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf70c74fa fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x01dca623 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x044aa8c6 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0af05290 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0f244411 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x13c074f4 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x152d8cd5 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1bf36dbe fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1f9d19bb fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2bf484c9 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2d3254d1 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x30704c4c fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x350c6e4c fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3540d6b2 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x35c5b227 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36fd929c fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x40baedda fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x42cc6cd6 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x450ae1f3 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4cea053c libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5303afb0 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x595edece fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x59d4002e fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5baa8520 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ccc441b _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5f16ddcd fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x67dee661 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6a573c63 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6fe521cc fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x77e00a75 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7aafd92d fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7b601c95 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x81c79375 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x892cd4e6 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x91d2aa4e fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x936aa364 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9a1403d0 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa5fcf5a4 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xabccbdb8 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb1f176af fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb8593248 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbf4c89d5 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc6b45c40 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xca885089 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd7cf63fc fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd8722ece fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe1d806b8 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe1ef23d9 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe2965d8b fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf02347b6 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf236cc2c fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x40a98554 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x604caaad sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xb10f09ac sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xd60ecc21 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x859c1177 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00035000 osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x065b5aaa osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0a9da79d osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0df2ef24 osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x346cf0f9 osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3b3d1805 osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4c8142a1 osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4dd6192b osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5097461d osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x521ef072 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5706373d osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x585f2875 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5abd84c9 osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5bca4069 osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5d22499b osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5d8cd9dc osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x65c3ef9e osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7b2c1c0e osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x80162a2c osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8354c6bf osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8666f24f osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8c54a464 osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9257a4e9 osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x98d0269d osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa8fa6a7a osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa91cab7b osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb6743f30 osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb6d07028 osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb70b1103 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb86d919c osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc0e9e5fa osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd1abec42 osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd5dce8e6 osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd88874e2 osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf4fdeaf2 osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfe95a383 osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/osd 0x2d77e2bd osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x715be1df osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x9929c1d2 osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0xdb228da8 osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0xeca0a090 osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0xff8aa54e osduld_device_same +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x032caafb qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x11e9f835 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x14ee1d35 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2061fc49 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2eb0e6ad qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x35991a7c qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3bd227c9 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3e888d80 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9a8a028b qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb8c707c1 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd7f77984 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xec5f5ab0 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x03e9d448 qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x443df378 qlogicfas408_bus_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x690109ff qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x9612ffc0 qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xd7077cad qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xfebf005f qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/raid_class 0x7caf6070 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0xb250f3b3 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xe94473d6 raid_component_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x05ac127e fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x095cb17b scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x19b83537 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1baa98d0 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1d724fc7 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2dbbab3a fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6f19c3de fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7c0b0217 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb16429e7 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd2837d41 scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd4ef8fa1 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe387ea2e fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xeb44c696 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0294cd2c sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1d51d869 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x210b8f6d sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x21269589 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x231c9229 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3105c100 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x464d7af2 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x49d63f30 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4a62abda scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x52de4d77 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x58bec861 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5b07d921 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5cdb87b6 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5df519db sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x66299c82 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x66600b3e sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x67ae604b sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x67ca5cbf sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x68c53dce sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x75e0f8f9 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7bf09499 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x97a8d3a3 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9c5db1b7 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa3d3f633 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc49bd73f sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd0245bd8 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd1c2c79e sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe0865d65 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfea81c66 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x437cbc5a spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x49358282 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa30bb0f0 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc6380ae9 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xdcea3729 spi_release_transport +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x316d39b4 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x3d10da43 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x3d2d90a7 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x67cf2252 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x699cd792 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xa58f3e56 ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xed2ed6e5 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x0bb10cc9 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x12dab6ab ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x49b8c349 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x64518805 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x67dc220b __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x7b89e9d7 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x7ce9b148 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x847c192b ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x8b15cd35 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xa131c7f3 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0xafbf9237 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0xbc404f6d ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xc4c3fefa ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xc8269d64 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xd66a0b74 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xd6fb374c ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xdc775be0 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xe3a60504 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0xe8d65e7b ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xf41a2d40 ssb_device_disable +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x017103e8 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x05d2d9bd fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x05ef1394 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0a4682a5 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x24d1e345 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x36f526c8 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3fa9ef84 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3fc07423 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4d0c47ae fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4fa557a8 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x594366fb fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6363ad53 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x65abe5ad fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x72f5a2b3 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x92b9b14c fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xabdb5103 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcbe7c97e fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcbf0588a fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xce48f23a fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd86c2c54 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe4d6a8a5 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeb47ccd0 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf8a01368 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfdb0d534 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x01ea756b fwtty_port_put +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xf57b229a fwtty_port_get +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x028c8ecb adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x2f0cc193 hmc5843_common_suspend +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x5c239b53 hmc5843_common_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x65240cce hmc5843_common_resume +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x87a3d92c hmc5843_common_remove +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x0abd5f1e ade7854_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x969903c3 ade7854_remove +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0x0b5d9aeb cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x35a3c3d7 most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x00032ab9 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x00cb8bbe rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x021d5774 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x045433fd rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x050c87e6 rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x07c3e63c rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0ffd4468 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x15224bd9 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1bdcee2a rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1d6826ff rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x24eb79f4 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x30f3da61 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x31a016dc rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x32ab4a51 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3460732f rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x373d4ade rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x42471417 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x47602779 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4fb33f68 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x51917abe dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x55e1e1ac rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x59d003a1 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5db83cb7 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x60e59eb5 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6a39fb92 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x742c4c44 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x774e3234 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7a880a3a rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7b48c2cc rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7f5ff7a2 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7f9d01e9 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x848c26af rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x97c145c9 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x99928f95 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa290f95a rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xab131f00 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb3f1b1b6 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xba1d78ea rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc177e584 Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc30c6c9f rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc3278a68 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcde362ba rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd1a872aa rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd6cab5b2 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe0839be0 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe4db4400 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe514e758 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe74c91c1 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf704745f rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfb5399d7 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x03c199cf ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x08501008 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0dcf4a02 Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f099f61 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f4dee0a ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x10d466dd ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x12399d53 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x13d5b509 DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x13f8834b ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x143800a3 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1dba3d05 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2a57ea13 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3f78db99 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x40d03941 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x45353578 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x469d154b ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4d73c8b3 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4e1958d4 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4ed4867a ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5e78e35d Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61ea895d ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x63a9021c ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x673ca7fe ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x681c40af ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x691f1347 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x71cf70a1 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x75e2dd8f ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x76ce3819 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7a330c03 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7c06d1c4 Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7c365d2f ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x81326472 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x86398f2e notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x86c19fac ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x892f7a52 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x947e5a9f ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9f6286c3 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa37f1183 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa566fda0 DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xac357e4b ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb6602dfb IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb8023f25 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbcfc4305 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbdc177d1 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcb7580d3 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdeb671c4 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe091a086 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe15e33a6 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xed9d444f ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf9b821f8 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfa54c977 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfab9021e ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfc3ba03a HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfd1f27ef ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfed50b24 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x096f8044 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x114e3b79 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x158ffc5c iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1e1a7171 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x22a87b62 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2e4527e9 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x34eefbf1 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x366f117f iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x390bc01b iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3d155c4b iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4109b9e9 iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x411473e0 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5117681f iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6bf2cb0c iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x72249661 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x88c5eec6 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8b7a1766 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa2182c57 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xad5527ce iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb7a8f327 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc0b62a43 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc33b0742 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc90b7a5b iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd1f25559 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd2bdfb01 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe751622f iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfa5bf6c8 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfe113b46 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x031c89f6 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x058deacb transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x08d12716 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x08f33cd7 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x0c3a0f89 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x0da96c3e transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x11316d13 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x12a12415 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x14c39e3c transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x20edca40 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x256086bc target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0x2dc18d4a spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x2fd4770d target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x3031bf57 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x30ba8e4b core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x34f13cd0 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x3746cd69 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x3aaafff7 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x3c016416 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x485e8f75 transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x4b49f6e2 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x4bbdfa1a passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x561ad622 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x572356f0 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x5eeedcca transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x60c4f7fd core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x62c49e25 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x666d8e85 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6723c8f6 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6729a459 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x6780461c target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x68bb4ff2 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x69c15cd5 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x6bfe11e8 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x6c419f23 transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6d2c3edc spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x7586108b transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x854d591b transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x8621e6de target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9d4eda7d transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xa3d07987 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0xa7b1a9c5 target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0xadab89ca target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xadb24143 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xaf26f2bb transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb116478b __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xb7668fdc sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0xb79fdad9 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xc2f867e7 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xc472901c target_put_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc4a579b8 target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc5db238b sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xc7db33ae spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xc808b5fc core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xcceee2b7 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xd0d32746 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xd308f223 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0xd5c53e34 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xd638854e passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xe08f426f transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0xe1b372dc core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xe489daf8 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xe5327571 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xedc202d2 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf257fddf target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xf49c5f04 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xfb9b5665 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0xff7ac62d target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xff9b98d6 target_get_session +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x5ff085ef usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x4424cb90 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x74fd4b7a sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x00ed3f91 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x173d070c usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x377690b1 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3b05ec2c usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4aa54985 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x59f3ba45 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6a2fede0 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x772a0bb8 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9caa0ad0 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc22fefeb usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc47aa40b usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe14fb24d usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x48e17737 usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x9b466197 usb_serial_resume +EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user +EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x3c71c418 vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0x5fedea44 vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user +EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/video/backlight/lcd 0x1821bc87 lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x42f2db1a lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xda7e07be devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xe5eefad2 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x09fe1718 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x12486f05 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1e908f04 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x5ca68797 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd49e7231 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdf10cd19 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf5d17406 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x2ce23156 cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x40ad90e2 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x6b149320 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x9c4dd5ca matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x0126f5d9 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x0280d9f8 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x8500351b matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x900f4fc6 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xac59a4f8 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x6f2ab52b matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x4a174d67 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x7aec4eae matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x8559cf9e matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xb7805ab1 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x67f5295c matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xbbbce29a matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x17cc1b7d matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x7748a8fd matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x9e1bc772 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xdd7b5bac matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xe3bfc7bb matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0xd876f4f6 mb862xxfb_init_accel +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x1d4485a9 w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x45e143bd w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x78be6913 w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xbd50313e w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x8247c8c9 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xfdd86424 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x9d99ca6f w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xa6fae376 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0x147e61a1 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x1a405bec w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x7de40117 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xe5371c32 w1_register_family +EXPORT_SYMBOL fs/configfs/configfs 0x084e2c90 configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0x3857a804 configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0x49d9e39d configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x5ad47457 configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0x5e628863 configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x61c72c90 config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0x769f915e configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0x8c613b3c config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0xa410754c configfs_unregister_default_group +EXPORT_SYMBOL fs/configfs/configfs 0xb7b03e33 config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0xc49aaf97 configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0xdffe0574 config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0xeab5f24c config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0xf90d5ea7 config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0xfc53f52e config_group_init +EXPORT_SYMBOL fs/exofs/libore 0x067f3ed2 ore_write +EXPORT_SYMBOL fs/exofs/libore 0x251121f7 ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x2e968e4d ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0x361dc470 ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0x38b54002 ore_create +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x4f8b5894 ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0x6f539c71 ore_remove +EXPORT_SYMBOL fs/exofs/libore 0xa23d5fb4 ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xd9c652dc ore_read +EXPORT_SYMBOL fs/exofs/libore 0xe8ed65a0 extract_attr_from_ios +EXPORT_SYMBOL fs/fscache/fscache 0x023b25a5 fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x087a965a __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x08ca35ce __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x0c7b31c0 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x0fcd4e79 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x29f6017a fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x2a5b6bdc fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x2bfd13a8 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x38335916 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x3fd60e97 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x40c1e720 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0x4aa5f6ff fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x4e4f8ac5 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x4e8ef38d __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x5501338e __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x5b9f1266 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x6563e8a4 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x67e09c78 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x69e32687 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x6d1b5cbc __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x72453d95 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x79cd3c18 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x838304bc __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x840d2279 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x8ecca4fe __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x904a9e8e __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x91838de7 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xa235c352 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0xab668336 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0xab7a98e6 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xabe14cc9 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0xb554e10d __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0xbaf12fc2 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0xc55b010d __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xc8995516 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0xd74d7284 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0xdf15c268 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xe330257b __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0xe7c360de __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xea9e2897 fscache_object_lookup_negative +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x1a2f5a1c qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x99f6bdb5 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xb1bc0c95 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xb2488fb8 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xdc26def1 qtree_read_dquot +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-ccitt 0x1a703ba1 crc_ccitt +EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table +EXPORT_SYMBOL lib/crc-itu-t 0x6d356209 crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0x56329ecc crc7_be +EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd09b2cba crc8 +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c +EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed +EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of +EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset +EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used +EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del +EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get +EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create +EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set +EXPORT_SYMBOL lib/lru_cache 0xcf308d34 lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0xe7fdefdc lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find +EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put +EXPORT_SYMBOL lib/lz4/lz4_compress 0x0c222eb5 lz4_compress +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x682a23e0 lz4hc_compress +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0x7456cc61 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul +EXPORT_SYMBOL net/6lowpan/6lowpan 0x36da4be8 lowpan_netdev_setup +EXPORT_SYMBOL net/6lowpan/6lowpan 0xb14b4e0d lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0xc4a19649 lowpan_nhc_del +EXPORT_SYMBOL net/802/p8022 0x3de6224c register_8022_client +EXPORT_SYMBOL net/802/p8022 0xca57d308 unregister_8022_client +EXPORT_SYMBOL net/802/p8023 0xee194d0d make_8023_client +EXPORT_SYMBOL net/802/p8023 0xfe04e213 destroy_8023_client +EXPORT_SYMBOL net/802/psnap 0x7dc22656 register_snap_client +EXPORT_SYMBOL net/802/psnap 0xbcb8db37 unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x046c2437 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x065bac5e p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x0f7bbdd0 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x14f30b73 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x23259343 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x23fe1d2e p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x2449615c p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x34f8f033 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x3717664c p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x394ebe23 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x3aeaa2d6 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x47b2abbe p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x47d9ab39 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x493fc61c p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x49683197 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x52cb01b2 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x53d58a07 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x5b191e05 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x66a6462b p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x67593829 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x742eaad9 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x76bf5610 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x7e218ab0 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x7e5a9a18 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x87f73ff5 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x8b7f9c90 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x912356e5 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x9452248b p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xa630822b p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xaf681c0b p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xafb06524 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xb28af5f9 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xbcb52803 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xbffce67d v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xd11ce39f p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xd9948d49 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xdc7a90bd p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xde3034e2 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe798c263 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xeb923727 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xf8c490aa p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xf8c6e869 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x42238f34 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x46544e5a atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x65ba4860 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x7e82e131 atalk_find_dev_addr +EXPORT_SYMBOL net/atm/atm 0x01ce468c atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x1c2bd283 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x3578618d atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x6c62b16b atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x6db31129 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xae4a3e30 atm_charge +EXPORT_SYMBOL net/atm/atm 0xbd14b4b6 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0xc1cb5a99 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xc8cce6ed atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0xca87b453 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0xe364f2b6 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0xebd81ba4 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0xf1491383 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xf59f37d4 deregister_atm_ioctl +EXPORT_SYMBOL net/ax25/ax25 0x0c190951 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x2b66e92a ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x7486859d ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x96eb8eeb ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0xa3010999 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xc6688d1b ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0xca8db46b ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xecd2e5b3 ax25_send_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x06b21ff9 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x09193907 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0ed246b7 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0f320ce6 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0fdffec8 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1da93db9 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2854ef53 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x291ba43b l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2c62dace bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x332f854a l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3596bab9 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3b6951eb bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x498281c7 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4a65f46d l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x549813e1 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x66779253 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6c192247 hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6e87f2c9 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x70478703 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x76fb7d85 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x78505764 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b916a68 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9b8313f5 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9d2a9291 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa8c15afc hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xafe303bc bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb11c5d3a hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb1ded9c4 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb9bc351a bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbb754ce4 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbc375c97 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbf48867d __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc42eec39 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd5c3416c l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd9e24ee3 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xed00af7a bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf3c6a894 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf5581684 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf7258566 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf84ce8ff bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfc8437ad bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bridge/bridge 0xd7ea687c br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x3fbf120f ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x469314a8 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x7575ac26 ebt_do_table +EXPORT_SYMBOL net/caif/caif 0x07fba2b0 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info +EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x8ed4866d caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x9ade59b2 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xaa374df6 caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xfaa1e7aa cfcnfg_add_phy_layer +EXPORT_SYMBOL net/can/can 0x14d015b4 can_send +EXPORT_SYMBOL net/can/can 0x1d111f16 can_rx_register +EXPORT_SYMBOL net/can/can 0x21e774f4 can_ioctl +EXPORT_SYMBOL net/can/can 0x59ee78ae can_proto_register +EXPORT_SYMBOL net/can/can 0xbb308161 can_rx_unregister +EXPORT_SYMBOL net/can/can 0xdfff4ad4 can_proto_unregister +EXPORT_SYMBOL net/ceph/libceph 0x0187af13 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x0359a0cf ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0x05fa830c ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0b9c9f96 ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0x0f004c13 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x10b3e82b ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x16c5f31d osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x1db0c995 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x1ffdb4e1 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x205e1b49 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x2169ddb3 ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0x21c60751 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x24d897df ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x2bed91f2 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x3144121f ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0x3357c025 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x37302806 ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x4062aac9 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0x419cb09b ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part +EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x4c5f52f4 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x4e098287 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x4ee939db ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x53ce08bf ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x560c0fad ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x57d353ee ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x5bcab1cc ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x61b0fd91 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x63041744 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x66f15094 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x698a9ae5 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6bdcd721 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x6fcdafef ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x70dc7a41 ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0x70ee45e1 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x71476444 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x736871cb ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x7760c38c ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x8c4a7694 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x8c96e981 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x8e452666 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x8fdc0452 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x908a92e2 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x9980ec82 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9a449269 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x9aa0d119 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x9d3a2587 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x9de04ee3 ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0x9fd8a791 osd_req_op_cls_response_data +EXPORT_SYMBOL net/ceph/libceph 0xa13f2b32 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xa49b7111 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xa4ae1741 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xa4c30e04 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xaf5707ad osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb3cc16fc ceph_oloc_oid_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xb87198ee ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xb879ff07 ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0xbb9e74dd osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xbc77c63f ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xbcf5772a ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xc167a691 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0xc183911d ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc50f6b8a ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xc975dd99 ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xcdb5eca1 ceph_monc_do_get_version +EXPORT_SYMBOL net/ceph/libceph 0xcec9186c ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xd0642733 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xd0ee7396 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xd1ea5044 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd37c44f9 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xd58865f0 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0xd658817c ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xd7acd83f ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xd7f627d1 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xd8f8987d osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0xe1279f64 ceph_monc_request_next_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xe3b042ca ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xe9100e05 osd_req_op_watch_init +EXPORT_SYMBOL net/ceph/libceph 0xeb7a140a ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xef3db572 ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xf01cb440 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xf1af7fc9 ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0xf24fb65f ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xf35cb4d9 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xf388a218 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0xf449d43a ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xfdf19b15 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0xff508020 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0xff9b51ed __ceph_open_session +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x00d0e9d8 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xed47ab7c dccp_syn_ack_timeout +EXPORT_SYMBOL net/ieee802154/ieee802154 0x0de85637 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x5c362d57 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x82b2d77a wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0x901096be wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xa13ff870 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xb8652bc6 wpan_phy_find +EXPORT_SYMBOL net/ipv4/fou 0x3106aeb4 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x44732433 fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xa22d3fb6 gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xd0750778 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x041c1a67 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x5399605c ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x84ca3543 ip_tunnel_encap +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xb80c339d ip_tunnel_dst_reset_all +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xbc9f6361 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xce716771 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x2fcc4c27 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x9f48a8a2 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xcd0fbbda arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x3c7f33c4 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x845a7477 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xb72151f1 ipt_register_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x9ce3be92 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0xac19cd17 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x423a49c7 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x107ed27c ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa4bd79d1 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xaad5a2ee ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd86175a8 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x32f7b9db ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x5ca838be ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x7e5ea9b9 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/tunnel6 0xaeda1547 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0xf2cd9542 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x986428f9 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xa97b5d29 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x17619e4f ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x4b1cf42d ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x7c8ae919 ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xa486aee3 ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xb3502455 ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xd0bd3ca7 ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xe64bf2de ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xe68fdb97 ircomm_flow_request +EXPORT_SYMBOL net/irda/irda 0x0064e0ea hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value +EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service +EXPORT_SYMBOL net/irda/irda 0x10173847 async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0x16b22600 irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0x1e40702d irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0x1e6cade0 irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x3e56064f hashbin_new +EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value +EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service +EXPORT_SYMBOL net/irda/irda 0x4b53e020 irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0x5d6e498f irttp_data_request +EXPORT_SYMBOL net/irda/irda 0x601bda46 hashbin_remove +EXPORT_SYMBOL net/irda/irda 0x69d1e491 async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x6b5fbcef hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0x6e0ab3c7 irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x7555cda5 irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client +EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client +EXPORT_SYMBOL net/irda/irda 0x7dc655cf irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x85d88217 irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x8caa9d04 irda_notify_init +EXPORT_SYMBOL net/irda/irda 0x90fee316 irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0x9f6ffd37 irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0xa1d41e58 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0xa7493ada irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0xa82b4d56 irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0xaa557515 irias_new_object +EXPORT_SYMBOL net/irda/irda 0xac421657 irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0xaf58f59a alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0xaf645939 irttp_dup +EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value +EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute +EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request +EXPORT_SYMBOL net/irda/irda 0xc59d5dd4 iriap_close +EXPORT_SYMBOL net/irda/irda 0xc63ee014 irlap_open +EXPORT_SYMBOL net/irda/irda 0xc68e43be irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0xcaa7534c irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0xcead7dbb hashbin_find +EXPORT_SYMBOL net/irda/irda 0xd2108314 hashbin_insert +EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma +EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0xdea1b2c2 irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0xe3463529 hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0xe3bde43e irias_insert_object +EXPORT_SYMBOL net/irda/irda 0xe4cae302 irlap_close +EXPORT_SYMBOL net/irda/irda 0xe5d4da7f irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0xf0a694a1 irias_find_object +EXPORT_SYMBOL net/irda/irda 0xf1c044ff iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0xf5876b95 hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0xfc2b310d iriap_open +EXPORT_SYMBOL net/irda/irda 0xfcd3c072 irttp_disconnect_request +EXPORT_SYMBOL net/l2tp/l2tp_core 0xefaef8b2 l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0x46999b10 l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x0c3105c0 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x31e36382 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x3c11bab2 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x70e9223f lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x86d378e0 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x96ecb3a1 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xead92c51 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0xebce56fa lapb_disconnect_request +EXPORT_SYMBOL net/llc/llc 0x260b104f llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x840f7e6d llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x88a4eea7 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xa9f447b2 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0xb5be75e5 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0xfe035e77 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xfedb0bca llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/mac80211/mac80211 0x018016b6 ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0x036b5bd7 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x07b79c18 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x0bd609f2 ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x0c557aae ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x14f61961 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x18c416b7 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x1bcb016c ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x1cb32563 ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x1e18a84b ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x1fffef72 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x2423e516 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x259a5c62 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x28a98ca8 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x2b15908a ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x2b6456d9 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x2b66ea47 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x2bc23891 ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0x2d8b982d ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x3513d7f7 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x3a62906a ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x3d420ae1 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x3e84b17c ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x41804e1e ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x419c0202 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x463d5273 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x4aac2ea5 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x4c2b011a ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x4cb501bd ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x4e2a2e6c rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x4eb28ce2 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x507981aa ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x5224a91b ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x55f97e4f ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x5fffd2b4 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x61a6db76 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x6431457e ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x6b68955f ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x7ebf7169 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x84097313 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x84afba1c rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0x8b026360 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x8bbd8f15 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x90b1820a ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x94ccb86a wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x9501e8da ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x998f1186 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x9a5ad0f7 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x9ca64ae7 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x9d08dfca ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x9dd81b52 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x9ef96a13 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xa710efd1 ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xa8f6aff3 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xa980e1c1 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xb022773e ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb1fec778 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xb7b433e6 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0xbd7cc9d2 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xbe470dab ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xc78f35e4 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xc8900670 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xc8e773b1 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xcab67aa1 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xccacd5e2 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0xcebba4c8 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xd1267f32 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xd31c30f1 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xd6429bee ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xd6ed5ee7 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xd750b5be ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xdb69ac7e ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xdc0ad09c ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xe95f9541 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xeaddd787 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xf10702ad ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xf38bbf4b ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xf3a61fb3 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xf55c3da3 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xf9ea79ad __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xf9f7beb2 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xfefc1e5a __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac802154/mac802154 0x22f6fb30 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x4cdeea73 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x57dd5679 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x887958ea ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x970ac366 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xd1bcb629 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0xdb364a8f ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xe5bd5846 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x20834854 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2de7dac1 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3491d22c ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3642a91c ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3e514c17 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x821028fc ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8a69e086 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb9b6da75 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbc4ed49c unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc3524e12 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcf5be5b7 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xea30d752 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xea7134f1 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xec00fe14 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3ee43c71 nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x77d3bbc1 __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xce7b036c __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x0b8699c3 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x59f49e45 nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0x5cab6127 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x8ffaf1bc __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xaf8d5f1e nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/nf_nat 0xc6373894 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/x_tables 0x168cf775 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x253e8b44 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x2df03197 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x40895a3e xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x4b171995 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x4ed5d638 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x81de574a xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xa2552157 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xabb5b5a0 xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0xb2af76f0 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xbdea7ecf xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/nfc/hci/hci 0x05a010f4 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x0d8ee26b nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x142eac09 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x2c47ee01 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x328757db nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x37f2b7d7 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x52c2f78d nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x5bb9264a nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x6026805d nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x639ca17f nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x63b96fbf nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x781b862b nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x7f93a654 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x80ebf284 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0xb782fa98 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xbb1847d0 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xbdef4abc nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0xbfb96d7b nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xd83b6589 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0xf4d942a7 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0xf8617dde nfc_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x07f8edff nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x121070ee nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x12455094 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x21d0dd6d nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x237b242d nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x2697e2f5 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x327d8f5a nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x3a927f3a nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x459911ea nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x471a8d02 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x5046f3c8 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x51977cbf nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x611e81c3 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x616f1be9 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x63f14b45 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x6c8a1b4c nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x80258d92 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x829fa049 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x8b7f6a58 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x90092ef2 nci_get_conn_info_by_id +EXPORT_SYMBOL net/nfc/nci/nci 0x98858bd9 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xa9a64113 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xb24d6c74 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xc80b6205 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xd0a54941 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0xe1e5f0ed nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xea9b28f6 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xf01284a3 nci_core_cmd +EXPORT_SYMBOL net/nfc/nfc 0x0397fa70 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x0e452cfa nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x144a5452 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x14f35c39 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x167263f9 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x27d2823d nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x380e7835 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x49387775 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x494acbf1 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x755753c3 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x759318b8 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x7e9b6259 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x94b80620 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x9db76e3f nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xaa35e5f2 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xab8fa381 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xb3c69776 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0xc8025c55 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xd993aa4e nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xe2682ac0 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xe2dcb425 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xf02620d5 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xff09ccb7 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xffe3eaad nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc_digital 0x006a60ce nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x2a6acfdc nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x653b084c nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x67a118a2 nfc_digital_unregister_device +EXPORT_SYMBOL net/phonet/phonet 0x21de5146 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x44adae2e phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x630fc530 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x66901605 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x6dc37306 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x7857a459 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x912afd95 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xd902597c pn_sock_get_port +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x027c7549 rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1791420d rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x183088a5 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x18491dac rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4831fd5c rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x567328c0 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x5f8a0ee7 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x761c262d key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x77005cc1 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x7e40cf01 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x7ea2aafe rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8a7f79bb rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd795eb1c rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xdbf3ea51 rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xec4130c7 rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/sctp/sctp 0x1705fec8 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x052f34f1 gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x3a12428c gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x7e894175 gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0x49f244b6 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0x643914ab xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0xd7b7eafd svc_pool_stats_open +EXPORT_SYMBOL net/wimax/wimax 0x52b9a573 wimax_rfkill +EXPORT_SYMBOL net/wimax/wimax 0x8f6d3ddf wimax_reset +EXPORT_SYMBOL net/wireless/cfg80211 0x01877772 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x04b0c426 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x09d60be3 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x12c6d036 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x1a4b5631 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x1b2b4d7c cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x1b572400 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x1ca28db1 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x242911d3 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x2ab38400 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x2cb4748f cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x2df6b83b cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x2ed6aa19 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x2fbafa91 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x30040df6 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x31e56959 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x32549d10 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x33e178bc ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x389461c7 ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x42b59a74 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x444f44d4 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x4506a7c9 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x460eb978 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x477c2105 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x48a56dff wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x4b522fee regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x4c770ef8 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x4f4d71cf regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x4fcbb76f cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x52b71d28 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x5d84c16b cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x60bdb6ac ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x617f20e7 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x667bd88a cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x66ce8c0f cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x68bb3ae2 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x6e32cc2e cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0x6eebd19b cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x7a7745e6 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x7ce3744d cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x899dbf72 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x8a3b37b7 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x8e944dc0 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x91d7a142 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x9213e3be __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x94052278 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x972f6fc6 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x98e1a669 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x9c25be58 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x9d382aa8 __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xa1425906 ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xa46d6420 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xa52135bc wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xa989d209 cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xaa717168 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0xaab1f60e cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xacaf23e6 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0xafa7e2ee cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xb807d6d8 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xbd630cd5 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xbf21a8aa cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc1aadfb3 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0xc1b28f20 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xc2a37d1f cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xc4b0797c cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xc5c43128 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xc68da684 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xcd5adf7c cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xcd72f4d6 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0xd133f256 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xd4df8999 ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xd50b0a22 ieee80211_ie_split +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xde5ae093 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xdf1e185e cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xe4c47676 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xe54cd2a0 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe642314d cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xee3d524b cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0xeebb903e cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xefd7feaa cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xefd93830 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xf079175c cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0xf2b8e8fd ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xf5635ee1 wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0xfc12e5f5 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/lib80211 0x06ff5cf1 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x266da702 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x94b606a4 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0xbcf969ee lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xdc81c6e0 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xf3ebe9fb lib80211_crypt_info_free +EXPORT_SYMBOL sound/ac97_bus 0x421c8d96 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x16d7e462 snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1b9e7804 snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x2b98dbf4 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0x2e38a5cb snd_seq_kernel_client_enqueue_blocking +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0xec45c04b snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x20934555 snd_seq_device_new +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x072d978b snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x13a17752 snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x2eed26bf snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x4d5ca523 snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x592f6e9b snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xd7c7afcc snd_midi_event_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe60fb228 snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xecbde43c snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xe0c4bf79 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x0a4d95f5 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x17830a81 snd_component_add +EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program +EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer +EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL sound/core/snd 0x1f6b35e1 snd_info_register +EXPORT_SYMBOL sound/core/snd 0x20576d4f snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x27f343c0 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0x2bf1284b snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x2bfebc38 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x34648a2e snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3aa4ab5a snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x3afb04d3 snd_device_new +EXPORT_SYMBOL sound/core/snd 0x40905d34 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x49b884cd snd_device_free +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x507b7fd4 snd_card_free +EXPORT_SYMBOL sound/core/snd 0x53a41274 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x5d265a25 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x62a75a4c snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x642c0672 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x7141b8f6 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x74771025 snd_register_device +EXPORT_SYMBOL sound/core/snd 0x7710c645 snd_card_register +EXPORT_SYMBOL sound/core/snd 0x78187cdb snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x79009977 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x7fc7a6b7 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x813f62ad snd_cards +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x83957d50 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x8d0c3433 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x934f7526 snd_card_new +EXPORT_SYMBOL sound/core/snd 0x98e55c2a snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x9a041dec snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x9e6401cc snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0xa62620ba snd_jack_new +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb642b3bf snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0xbb11349c snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0xbbcdf1a0 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0xc59c6bb8 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0xc892cbe4 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0xc8cf5448 snd_device_register +EXPORT_SYMBOL sound/core/snd 0xcc81781c snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0xd2244613 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0xd8fd5929 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0xdc33db9b snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0xe017c7f4 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0xe86bea4f _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0xea5e922b snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0xed0e2208 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0xf1a68d2f snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0xf68cf137 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0xfe2a70e9 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-hwdep 0xb0964784 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x06b310c9 snd_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x095e12e5 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x0fca199d snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x17b07cef snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0x185c15e4 snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0x1b81db6e snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x1e05d53d snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x213c9897 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x23fd26cb snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0x269ea461 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x2c346e51 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x2e6d5e98 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x2f573c96 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x3210ad9e snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x3b5dcda7 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x3e8ad4c8 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x464c1a5f snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x4844356b snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x4dd8830e snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x5898dcba snd_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x59135863 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x5c7fd313 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x5fec88a6 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x620b0891 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL sound/core/snd-pcm 0x6b75a68a snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x7942f8a6 snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0x7ae516da snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x867cdbc1 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x8a5ce154 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x8fc8c49f snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x96383b66 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x97460c5d snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x98a03635 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa92e59f9 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xab58f11a snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xb6ae1735 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xba9dbc24 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xc0eaa6f6 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0xcb55132f snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0xcbb7723f snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0xd085a29c snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0xd0b88602 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xdacc004e snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xe8454fe8 snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0xe98fe141 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0xeaa2dc39 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xf153a26b snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0xf7aec242 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0xfec6f2a9 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x07332ea9 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1989155d snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1c2163dd snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2ec59fac snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5da4ba02 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5db9dccd snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7025516d snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x72e0082d snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x94f49c23 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x96bf0dea snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa8cf5e4a snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbcee4083 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc27886c0 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xcc6f7751 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0xcddb60ef __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf00c2fd8 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf4ca5e59 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf7cd9f26 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xfae05c18 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-timer 0x03a90050 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x047cd651 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x08766536 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x3d6a935c snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0x4601e481 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x552fdb1d snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x5b3f8104 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x77cdf4e9 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x8920b4d7 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x8cc66332 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0xcc5ceb33 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0xd65d3a74 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0xf0e8b662 snd_timer_new +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x15096a83 snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x00b0056c snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x41dc0268 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x50d3a06e snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x824beaff snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8de92272 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x94c16441 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa83528ac snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd00ae471 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe2563237 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x36e3b002 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x39875910 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3e648b59 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5f8e4a8e snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa7111911 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xad461146 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc2b96094 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe065d5a1 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xec360223 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0bb46f5f amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x16d5e4ed fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1d7a635e amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x29b57d8c amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x36830815 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3cdb32f4 snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3efe8f7a fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x409ee110 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4a2cacff snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x522f5166 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5ad7a689 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5b5a7eb4 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x67f5c6a2 amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6fb4144f cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x774e39fe cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8443466a amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x85123543 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x891a1705 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8eb994b5 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x92c5364e amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x990cf149 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9a089423 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xad2a1496 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb57959fd cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbbb00808 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdb1e9696 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe0a81b75 amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xebab4af6 snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xef2094d9 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xef9b319d amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf0dd6f46 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf80427ed fcp_avc_transaction +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x7bfccfc8 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x7fa43187 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x082299da snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x83a1c703 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xc1bf3a74 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xc3887ef6 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd83a4305 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd9bc034b snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xdad3869e snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf20f6c53 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x36b46489 snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x371dc580 snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x465c7fa3 snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xc744394c snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xd5ad42e0 snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xda3539e3 snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x174511fe snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x2650155e snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x74823834 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xedc534d2 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x0a5dc384 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x0e832127 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x0efd80bc snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x6dfc4e28 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x9347b2f4 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x9faf1d35 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xd611967a snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xfc9a90a0 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-i2c 0x01a0828d snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0x2afc4747 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x4ebce651 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0x59d98dde snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x94eafa25 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x9783f327 snd_i2c_bus_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x02523ea4 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x14541698 snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x1aeb8503 snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x2aa6ac75 snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x32fd1b4c snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x6f2ecafc snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x7909c70d snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x7af6707e snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x9078893e snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa78f8fc1 snd_sbmixer_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0ad46823 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0bdb1018 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x145bcd8c snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x15919eb4 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1978a4aa snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1d4b05fd snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1f0e3414 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x380eef58 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3e755120 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3f718705 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x647c7669 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x790d2b03 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcd156f2e snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd65849a0 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe84f9769 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xeaf731d4 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfb9c768a snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x17b4fbfb snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x2d56df18 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x385de5bf snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x5f5090a3 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x6cd495e9 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x70da3e21 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xa0ee5fe6 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb0f5822f snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb51c5d9a snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x7efd0439 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x92f81d83 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xc49278c4 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2a4eabba oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x31a12014 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x46c7384f oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x53ef83b0 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x64ebf02b oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x72a5e1d0 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x753beec3 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7d6d2f43 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x808acc1a oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x891399de oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8d0d1940 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8d86488c oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x99c5973f oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa3ac3051 oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa57079c4 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb0aa60e0 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb316ca58 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb9cf836f oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc2c0d19f oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe82b8529 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfa707567 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x5f31fb4f snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x5f993de3 snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x66130509 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xb64f8183 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xc924b510 snd_trident_alloc_voice +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xb240a806 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xba335405 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/snd-soc-core 0x89af5e68 snd_soc_alloc_ac97_codec +EXPORT_SYMBOL sound/soundcore 0x161de080 register_sound_midi +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x8b0119ac register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xaf4d04e8 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xc485e2ea register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xd523f4ab sound_class +EXPORT_SYMBOL sound/soundcore 0xe9ba20c2 register_sound_special +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x3cc6a6a1 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x651641dd snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x91a9ad33 snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x96815485 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xf1cebbef snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xf70ffaa2 snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/snd-util-mem 0x1e232747 __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x1e4b7310 snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0x40979e1a __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x4cd52ee5 snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x6bcdd297 snd_util_memhdr_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xa67679a8 snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xac912ce5 snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0xc9845c80 __snd_util_mem_free +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x766deb26 snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL vmlinux 0x00193966 icmpv6_send +EXPORT_SYMBOL vmlinux 0x0021e93a macio_dev_put +EXPORT_SYMBOL vmlinux 0x0028c568 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x0032e54f lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0x005a4975 cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x005d9f56 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x00681a4a tcp_conn_request +EXPORT_SYMBOL vmlinux 0x0070cd1f queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x00741c68 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x007bbd51 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x0085e1f1 __do_once_done +EXPORT_SYMBOL vmlinux 0x00862961 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x009339f0 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x009fa8fe tcf_hash_create +EXPORT_SYMBOL vmlinux 0x00b81566 netif_napi_del +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x010b633c free_netdev +EXPORT_SYMBOL vmlinux 0x011cf88e devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x0122f95e _lv1_get_spe_irq_outlet +EXPORT_SYMBOL vmlinux 0x012a97fc xor_altivec_4 +EXPORT_SYMBOL vmlinux 0x0146970a neigh_destroy +EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer +EXPORT_SYMBOL vmlinux 0x017b3f5b ns_capable +EXPORT_SYMBOL vmlinux 0x01853a59 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x018d9919 _lv1_set_lpm_interrupt_mask +EXPORT_SYMBOL vmlinux 0x018fa76b inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x01946e53 blk_init_queue_node +EXPORT_SYMBOL vmlinux 0x01b26301 ipv4_specific +EXPORT_SYMBOL vmlinux 0x01e68f0f ip_do_fragment +EXPORT_SYMBOL vmlinux 0x01ee6985 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x01ee970c kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0x020d18d7 _lv1_set_lpm_debug_bus_control +EXPORT_SYMBOL vmlinux 0x023a074a hvc_get_chars +EXPORT_SYMBOL vmlinux 0x024bf827 radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x027d5499 _lv1_did_update_interrupt_mask +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02af53e1 of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0x02b5b04e in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x02c17b53 flow_cache_init +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x0317cad6 vfs_read +EXPORT_SYMBOL vmlinux 0x031dc65e pasemi_dma_free_chan +EXPORT_SYMBOL vmlinux 0x032ff383 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x033a8e1f scsi_host_put +EXPORT_SYMBOL vmlinux 0x034d0261 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x0356fbd9 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x036d0eb3 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x036f926a pci_get_class +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x037fccd8 vfs_writev +EXPORT_SYMBOL vmlinux 0x0383bf43 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x039ac6d1 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x03f930a2 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x03f9822f scsi_unregister +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x040465a3 vfs_getxattr_alloc +EXPORT_SYMBOL vmlinux 0x04074f48 ioremap +EXPORT_SYMBOL vmlinux 0x0419e83b inet_del_offload +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x0424aabc __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x0440a533 _lv1_net_remove_multicast_address +EXPORT_SYMBOL vmlinux 0x04479557 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x04726750 blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0x0482d49b ppp_unit_number +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x049980f6 d_alloc +EXPORT_SYMBOL vmlinux 0x04c66902 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x04c70be3 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x04d5ebb2 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x050f2450 phy_find_first +EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range +EXPORT_SYMBOL vmlinux 0x051b44a7 skb_unlink +EXPORT_SYMBOL vmlinux 0x051eacb1 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x0530dede _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x053b2379 kfree_skb_list +EXPORT_SYMBOL vmlinux 0x0540b32a cpu_core_map +EXPORT_SYMBOL vmlinux 0x055b57e7 dentry_needs_remove_privs +EXPORT_SYMBOL vmlinux 0x055c8559 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x05856895 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x058735a9 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x059c4126 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x059d2cd1 blk_end_request_all +EXPORT_SYMBOL vmlinux 0x05a3a67a lock_fb_info +EXPORT_SYMBOL vmlinux 0x05a514a1 _insl_ns +EXPORT_SYMBOL vmlinux 0x05b1d058 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x05d8c921 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x05ec9483 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x05f6ffa7 netlink_capable +EXPORT_SYMBOL vmlinux 0x06107663 inc_nlink +EXPORT_SYMBOL vmlinux 0x0612ba8a of_get_pci_address +EXPORT_SYMBOL vmlinux 0x0612e6fc fsnotify_put_group +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x06456aff _lv1_get_virtual_address_space_id_of_ppe +EXPORT_SYMBOL vmlinux 0x06634580 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x0674346a of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0x067ac8a6 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x068d031a input_set_keycode +EXPORT_SYMBOL vmlinux 0x06b414ce tty_port_close +EXPORT_SYMBOL vmlinux 0x06c8bb80 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x06e97e6b __scm_destroy +EXPORT_SYMBOL vmlinux 0x06f51f2a copy_to_iter +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x0736fde5 update_region +EXPORT_SYMBOL vmlinux 0x074e9213 down_killable +EXPORT_SYMBOL vmlinux 0x0765d0ee inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07a9ef84 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07d964c4 seq_puts +EXPORT_SYMBOL vmlinux 0x07e9d5db bio_integrity_advance +EXPORT_SYMBOL vmlinux 0x07ef213a pasemi_dma_free_fun +EXPORT_SYMBOL vmlinux 0x07f652e3 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x07f8ee15 _lv1_unmap_device_dma_region +EXPORT_SYMBOL vmlinux 0x0803b6cc tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x084e38e5 bio_init +EXPORT_SYMBOL vmlinux 0x086dfee8 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x087abdb2 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x087d949c netdev_update_features +EXPORT_SYMBOL vmlinux 0x08a77d76 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x08b4223a tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0x08c9c84a netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x0908c2f2 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x09257b5e pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x0935e87b sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x0936a849 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key +EXPORT_SYMBOL vmlinux 0x096341c2 _lv1_connect_irq_plug_ext +EXPORT_SYMBOL vmlinux 0x09676499 vio_register_device_node +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c67afb flex_array_get +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09d05b6c pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09df082d of_phy_find_device +EXPORT_SYMBOL vmlinux 0x0a11b542 blk_rq_init +EXPORT_SYMBOL vmlinux 0x0a1ab2ac user_path_at_empty +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a3d0644 cpu_online_mask +EXPORT_SYMBOL vmlinux 0x0a4b8e94 set_device_ro +EXPORT_SYMBOL vmlinux 0x0a57863e cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a82bfb9 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x0a894d21 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x0a9c1674 backlight_force_update +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0ab09858 sk_net_capable +EXPORT_SYMBOL vmlinux 0x0ab2b8e3 devm_gpiod_get +EXPORT_SYMBOL vmlinux 0x0ac5f314 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ad1d7b7 sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b1fa87e of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x0b2b5f90 mpage_readpages +EXPORT_SYMBOL vmlinux 0x0b2e1ec7 h_get_mpp +EXPORT_SYMBOL vmlinux 0x0b36c2aa param_get_long +EXPORT_SYMBOL vmlinux 0x0b3dda3d dma_iommu_ops +EXPORT_SYMBOL vmlinux 0x0b5d8670 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b66eb0d free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b7cb9f2 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x0b9f9a85 inet_frags_init +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0c1ad162 _lv1_net_start_rx_dma +EXPORT_SYMBOL vmlinux 0x0c21d019 flush_delayed_work +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c563206 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c6ef18d jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x0c6fde6f vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x0c7ef70d twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x0c7ff61e swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0x0c80b209 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x0c8ba8c0 tty_check_change +EXPORT_SYMBOL vmlinux 0x0c926dcd __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x0c984b31 __block_write_begin +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0cab63f1 have_submounts +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cbbda9b twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x0ce9d9d2 dev_open +EXPORT_SYMBOL vmlinux 0x0d144d90 revalidate_disk +EXPORT_SYMBOL vmlinux 0x0d457011 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x0d4640c3 blk_get_queue +EXPORT_SYMBOL vmlinux 0x0d49eb79 pci_iounmap +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d57570b vga_get +EXPORT_SYMBOL vmlinux 0x0d582453 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d6a88be d_instantiate +EXPORT_SYMBOL vmlinux 0x0d6c963c copy_from_user +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0da42e66 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x0db34537 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x0dc0ace0 idr_find_slowpath +EXPORT_SYMBOL vmlinux 0x0dcc4361 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x0dd6edea __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0x0de95a4b scsi_init_io +EXPORT_SYMBOL vmlinux 0x0e091c83 agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0x0e58fa48 tcf_hash_check +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e6e61b9 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x0e777f8d tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x0e8de4c7 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x0e8f30f6 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x0ebaabf5 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ed02a1b add_random_ready_callback +EXPORT_SYMBOL vmlinux 0x0ed0caab dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x0edca097 bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x0eefba5f tty_throttle +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0efe49c3 mem_cgroup_end_page_stat +EXPORT_SYMBOL vmlinux 0x0f220def devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x0f23b2c3 netif_napi_add +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f5e5e81 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x0f5faa7e wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f7ee609 tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0x0f88eb24 genphy_config_init +EXPORT_SYMBOL vmlinux 0x0f9335c6 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x0fa879c0 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fbfb09b mmc_free_host +EXPORT_SYMBOL vmlinux 0x0fca9268 ppp_input +EXPORT_SYMBOL vmlinux 0x0febd937 dump_page +EXPORT_SYMBOL vmlinux 0x0ff5b3be generic_end_io_acct +EXPORT_SYMBOL vmlinux 0x101dbfcb padata_add_cpu +EXPORT_SYMBOL vmlinux 0x103bd775 padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x1043f4a2 blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0x106e01df of_device_unregister +EXPORT_SYMBOL vmlinux 0x107021ac blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x1073262c __breadahead +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x109009cd reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0x10950ee1 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x10b011b7 fget_raw +EXPORT_SYMBOL vmlinux 0x10b1172a serio_rescan +EXPORT_SYMBOL vmlinux 0x10c0d9a1 up_write +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x110a12b5 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x110df7c7 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x11136114 commit_creds +EXPORT_SYMBOL vmlinux 0x111b0675 agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0x1133cdf2 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x115a28a6 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x116e577a sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x1171b635 _lv1_delete_lpm_event_bookmark +EXPORT_SYMBOL vmlinux 0x117458d3 srp_rport_put +EXPORT_SYMBOL vmlinux 0x1182d83a cpuidle_disable +EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x11d4df28 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x11db7c38 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x11e7ce9a of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x11e8dbd5 scsi_device_get +EXPORT_SYMBOL vmlinux 0x11f04bad ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x12072cac get_empty_filp +EXPORT_SYMBOL vmlinux 0x1208ac78 input_free_device +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x12253cc3 down_write_trylock +EXPORT_SYMBOL vmlinux 0x122be267 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x1234b966 security_path_mknod +EXPORT_SYMBOL vmlinux 0x123983ca kernel_bind +EXPORT_SYMBOL vmlinux 0x123f82f3 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x12452803 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x126f1c9b fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x1270ec47 d_set_d_op +EXPORT_SYMBOL vmlinux 0x127a0133 lwtunnel_input +EXPORT_SYMBOL vmlinux 0x127c2330 __vfs_read +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12a52f52 devm_gpiod_put +EXPORT_SYMBOL vmlinux 0x12b9fe0e generic_setxattr +EXPORT_SYMBOL vmlinux 0x12c50f30 free_user_ns +EXPORT_SYMBOL vmlinux 0x12cb6622 _lv1_map_device_dma_region +EXPORT_SYMBOL vmlinux 0x12d3db99 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x12dfeb12 vprintk_emit +EXPORT_SYMBOL vmlinux 0x12e5ef0c rtas_set_power_level +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x13215eac mem_section +EXPORT_SYMBOL vmlinux 0x1321e9c3 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x13316316 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x13467685 tty_write_room +EXPORT_SYMBOL vmlinux 0x13590d21 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0x135e1328 nd_device_unregister +EXPORT_SYMBOL vmlinux 0x1364ab6e blk_finish_request +EXPORT_SYMBOL vmlinux 0x138b1db2 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x139448c0 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x1397de36 kobject_del +EXPORT_SYMBOL vmlinux 0x13a6145a phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x13ad07cb d_obtain_root +EXPORT_SYMBOL vmlinux 0x13ba6f87 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x13c6cbbc sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13dac636 vfs_readv +EXPORT_SYMBOL vmlinux 0x13e16a8d sk_alloc +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13f53da6 CMO_PageSize +EXPORT_SYMBOL vmlinux 0x141fe5fd pasemi_read_iob_reg +EXPORT_SYMBOL vmlinux 0x142c15c0 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x14347e3e mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x1439321c iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x143d97b2 generic_perform_write +EXPORT_SYMBOL vmlinux 0x1440834d devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x144c99ad inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x1451af19 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x1455ba7a pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x146de191 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x14a14817 pSeries_enable_reloc_on_exc +EXPORT_SYMBOL vmlinux 0x14bd15b0 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14d35113 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x14f72b29 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x150ca87e splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x150faee4 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x1515634c scsi_print_result +EXPORT_SYMBOL vmlinux 0x151592c4 _lv1_invalidate_htab_entries +EXPORT_SYMBOL vmlinux 0x152c0907 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x1563424c gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x157e066a sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x15a5f07e start_tty +EXPORT_SYMBOL vmlinux 0x15a68d6b locks_copy_lock +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15c15c35 generic_removexattr +EXPORT_SYMBOL vmlinux 0x15c302e1 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x15d06690 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x15d3fd60 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x15e95c11 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x15f08201 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x16064e46 agp_unbind_memory +EXPORT_SYMBOL vmlinux 0x160bd45c rtas_token +EXPORT_SYMBOL vmlinux 0x1616533a kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x161e57c1 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x1621f2ab pci_read_vpd +EXPORT_SYMBOL vmlinux 0x162ecdf1 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x165e2a6b mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x1688a5bb vme_slave_request +EXPORT_SYMBOL vmlinux 0x16978f23 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x169fe180 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16f9b092 is_nd_btt +EXPORT_SYMBOL vmlinux 0x16fbda26 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x16fc1cd1 blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x1700a15f inet_ioctl +EXPORT_SYMBOL vmlinux 0x17266eb6 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x173452dd macio_release_resources +EXPORT_SYMBOL vmlinux 0x1735786d audit_log +EXPORT_SYMBOL vmlinux 0x1738442b mark_page_accessed +EXPORT_SYMBOL vmlinux 0x1743414f __debugger_fault_handler +EXPORT_SYMBOL vmlinux 0x174d4209 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x17648396 dev_base_lock +EXPORT_SYMBOL vmlinux 0x176fbb03 netdev_master_upper_dev_link_private +EXPORT_SYMBOL vmlinux 0x177f777d mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0x178a4bc1 inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0x17910b3a flush_dcache_icache_page +EXPORT_SYMBOL vmlinux 0x179196aa md_cluster_ops +EXPORT_SYMBOL vmlinux 0x1793f685 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17b195c9 proc_set_user +EXPORT_SYMBOL vmlinux 0x17b54ade key_validate +EXPORT_SYMBOL vmlinux 0x17c6b41b netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x17cb8c79 _lv1_read_htab_entries +EXPORT_SYMBOL vmlinux 0x17d19dc1 wireless_send_event +EXPORT_SYMBOL vmlinux 0x17e28473 fsl_upm_run_pattern +EXPORT_SYMBOL vmlinux 0x17e3079c tcp_close +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x17f78676 devm_free_irq +EXPORT_SYMBOL vmlinux 0x17fca7f0 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x1813d7d5 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x1817fd0c blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x18254cc9 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x182f50af _lv1_open_device +EXPORT_SYMBOL vmlinux 0x1839386c import_iovec +EXPORT_SYMBOL vmlinux 0x183d62ca inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x184a588b pci_scan_bus +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x1857aa39 proc_dointvec +EXPORT_SYMBOL vmlinux 0x18660552 __kernel_write +EXPORT_SYMBOL vmlinux 0x186d957c generic_make_request +EXPORT_SYMBOL vmlinux 0x1879c14f __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x189765bb pskb_expand_head +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x18a5cc5c inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x18be67e1 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x18c41a61 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x18c98205 _lv1_destruct_virtual_address_space +EXPORT_SYMBOL vmlinux 0x18d2761c simple_dname +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x19109872 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x19424c08 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x19569624 pnv_cxl_release_hwirqs +EXPORT_SYMBOL vmlinux 0x195795d3 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x19666e09 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x196f56ae uart_get_divisor +EXPORT_SYMBOL vmlinux 0x199ec4fb arch_spin_unlock_wait +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19a34125 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x19ba1dc7 fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19c7198f nvm_register_target +EXPORT_SYMBOL vmlinux 0x19c968d1 pasemi_dma_start_chan +EXPORT_SYMBOL vmlinux 0x19d3d08a default_file_splice_read +EXPORT_SYMBOL vmlinux 0x19e64a24 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x19f62505 sock_create +EXPORT_SYMBOL vmlinux 0x1a01ccf8 vio_unregister_driver +EXPORT_SYMBOL vmlinux 0x1a185983 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x1a3d4ca3 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x1a5246de bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0x1a559a7b up_read +EXPORT_SYMBOL vmlinux 0x1a5b1dce read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x1a709d48 km_policy_expired +EXPORT_SYMBOL vmlinux 0x1a8019f1 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x1a81835d phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x1a91663d pasemi_dma_free_buf +EXPORT_SYMBOL vmlinux 0x1aad9b53 fb_find_mode +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1ace8e47 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x1ad65a5d vc_cons +EXPORT_SYMBOL vmlinux 0x1ad6e97b read_cache_pages +EXPORT_SYMBOL vmlinux 0x1af46cff agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x1af62a99 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x1afbcd49 note_scsi_host +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b07a42e init_special_inode +EXPORT_SYMBOL vmlinux 0x1b07c781 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x1b132009 rename_lock +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b485afb jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x1b625d33 enable_kernel_vsx +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b7b6131 del_gendisk +EXPORT_SYMBOL vmlinux 0x1b80622c compat_ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b8e140c i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer +EXPORT_SYMBOL vmlinux 0x1bb7cff1 abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0x1bb9d994 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x1bbc486c register_console +EXPORT_SYMBOL vmlinux 0x1bc4ff03 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x1bf7a2a9 release_pages +EXPORT_SYMBOL vmlinux 0x1bfec830 __iounmap_at +EXPORT_SYMBOL vmlinux 0x1c200a7d pasemi_dma_stop_chan +EXPORT_SYMBOL vmlinux 0x1c2de9bb sync_blockdev +EXPORT_SYMBOL vmlinux 0x1c38c334 abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x1c3c3988 of_mm_gpiochip_add +EXPORT_SYMBOL vmlinux 0x1c3e02e4 memcmp +EXPORT_SYMBOL vmlinux 0x1c481569 vfs_symlink +EXPORT_SYMBOL vmlinux 0x1c4dab93 _lv1_connect_irq_plug +EXPORT_SYMBOL vmlinux 0x1c5191c1 vme_master_request +EXPORT_SYMBOL vmlinux 0x1c5b2c15 pmu_wait_complete +EXPORT_SYMBOL vmlinux 0x1c80de9c ip_send_check +EXPORT_SYMBOL vmlinux 0x1cad2910 from_kuid +EXPORT_SYMBOL vmlinux 0x1cbbe3ab fb_set_suspend +EXPORT_SYMBOL vmlinux 0x1cc9b90d dev_get_iflink +EXPORT_SYMBOL vmlinux 0x1cccbadc xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x1cdff921 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x1ce5fb57 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x1cf90471 param_set_uint +EXPORT_SYMBOL vmlinux 0x1d082b95 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x1d1056e5 crc32_be +EXPORT_SYMBOL vmlinux 0x1d251ddb of_mm_gpiochip_remove +EXPORT_SYMBOL vmlinux 0x1d2f6e22 thaw_super +EXPORT_SYMBOL vmlinux 0x1d44b063 neigh_lookup +EXPORT_SYMBOL vmlinux 0x1d4750bc _lv1_stop_lpm +EXPORT_SYMBOL vmlinux 0x1d4cc345 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x1d5682c1 agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x1d665502 dev_trans_start +EXPORT_SYMBOL vmlinux 0x1d6db79e backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x1d88142d bio_put +EXPORT_SYMBOL vmlinux 0x1daee28a percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x1db6bffb bio_flush_dcache_pages +EXPORT_SYMBOL vmlinux 0x1dbc4d0c proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1ddd0fbd put_page +EXPORT_SYMBOL vmlinux 0x1e0dadb6 dns_query +EXPORT_SYMBOL vmlinux 0x1e153940 sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x1e1885d0 pci_set_master +EXPORT_SYMBOL vmlinux 0x1e221c65 blk_queue_split +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e495b80 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x1e4bf9b5 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x1e637e5b __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e77ec81 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ec310c3 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x1ec34a98 xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0x1ed9271b kill_litter_super +EXPORT_SYMBOL vmlinux 0x1ee78c06 inet_shutdown +EXPORT_SYMBOL vmlinux 0x1f1bbed7 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x1f38fabc cad_pid +EXPORT_SYMBOL vmlinux 0x1f422b83 vme_irq_generate +EXPORT_SYMBOL vmlinux 0x1f467b54 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x1f4ad787 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x1f6ce67a sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x1f869035 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fbdfe5f sock_no_bind +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fe7b4ab pasemi_write_dma_reg +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region +EXPORT_SYMBOL vmlinux 0x1fefb4a8 skb_tx_error +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x201494ee _lv1_net_set_interrupt_mask +EXPORT_SYMBOL vmlinux 0x202d481e mmc_start_bkops +EXPORT_SYMBOL vmlinux 0x2031938a kmem_cache_create +EXPORT_SYMBOL vmlinux 0x204c09d3 get_pci_dma_ops +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x20606c65 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x206b1ec6 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x2089a18a param_ops_bool +EXPORT_SYMBOL vmlinux 0x2089b584 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x208cc033 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x20a5e6ff max8925_set_bits +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20b7b871 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x20e45a27 alloc_file +EXPORT_SYMBOL vmlinux 0x20eb9164 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x20ef81e5 xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x210c54b8 blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x211f68f1 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x2127faa1 rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0x213603bf pasemi_dma_free_ring +EXPORT_SYMBOL vmlinux 0x218506d8 register_key_type +EXPORT_SYMBOL vmlinux 0x21871f4f phy_init_eee +EXPORT_SYMBOL vmlinux 0x219bb555 mmc_can_trim +EXPORT_SYMBOL vmlinux 0x21a8fc69 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x21a94d70 simple_release_fs +EXPORT_SYMBOL vmlinux 0x21b42985 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x21c2545a pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x21c88264 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x21d1fd35 d_drop +EXPORT_SYMBOL vmlinux 0x21da5832 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x21dbafa3 textsearch_unregister +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21f19335 fence_remove_callback +EXPORT_SYMBOL vmlinux 0x220b774b vio_find_node +EXPORT_SYMBOL vmlinux 0x221bddb7 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x221ce802 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x222aa5ea netdev_change_features +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x223823a7 bdi_register_owner +EXPORT_SYMBOL vmlinux 0x225aec89 follow_down_one +EXPORT_SYMBOL vmlinux 0x225ebee6 _lv1_destruct_lpm +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x2278e94b slhc_remember +EXPORT_SYMBOL vmlinux 0x229f35ba swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0x22ab2a2b tty_mutex +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22b5cb8d param_ops_invbool +EXPORT_SYMBOL vmlinux 0x22c6bcc8 bmap +EXPORT_SYMBOL vmlinux 0x22e05caa padata_do_serial +EXPORT_SYMBOL vmlinux 0x22e16257 build_skb +EXPORT_SYMBOL vmlinux 0x22f30224 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x22f4ad3e ip_setsockopt +EXPORT_SYMBOL vmlinux 0x22fbfd2a mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x23037777 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x2304457f security_inode_readlink +EXPORT_SYMBOL vmlinux 0x2304faf6 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x231270f9 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x2327b905 bio_endio +EXPORT_SYMBOL vmlinux 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL vmlinux 0x233cbb47 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x235160db phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x235e90f3 __wake_up_bit +EXPORT_SYMBOL vmlinux 0x238ffb70 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23ad3307 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x23b9140e iget5_locked +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c176b0 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x23c457fc mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x23f2243d mempool_free +EXPORT_SYMBOL vmlinux 0x23f5d2cb dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x23f7c667 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x24071f33 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x24222a1f dev_mc_del +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x246f2ee8 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x2472dfd4 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x24855cba __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x2493bcf6 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x24b93602 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x24c6bb07 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x24cb4131 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x24cfd438 _lv1_copy_lpm_trace_buffer +EXPORT_SYMBOL vmlinux 0x24d6b4a6 cur_cpu_spec +EXPORT_SYMBOL vmlinux 0x24e444e0 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0x24e4efa6 blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0x24f00380 ida_init +EXPORT_SYMBOL vmlinux 0x24f4c80a cap_mmap_file +EXPORT_SYMBOL vmlinux 0x24f9da94 pmac_suspend_agp_for_card +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x24ff5637 pnv_cxl_ioda_msi_setup +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x253b3a65 __devm_release_region +EXPORT_SYMBOL vmlinux 0x25548f6e tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x25590014 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x2579a709 sock_release +EXPORT_SYMBOL vmlinux 0x257ee8c6 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x258f24d2 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x258f6a93 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x258fb3b7 path_nosuid +EXPORT_SYMBOL vmlinux 0x25964e5c genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x25b6b8f7 _lv1_set_spe_transition_notifier +EXPORT_SYMBOL vmlinux 0x25d07112 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x25e94360 inet_put_port +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25f1a6da pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x25f3fcca simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x2616dcbc jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x2623ad6c mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x26477c07 __vmalloc +EXPORT_SYMBOL vmlinux 0x2649753b pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux +EXPORT_SYMBOL vmlinux 0x2665a2f8 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x2665d53a key_create_or_update +EXPORT_SYMBOL vmlinux 0x268738cb lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0x26a0a8ea dma_set_mask +EXPORT_SYMBOL vmlinux 0x26b760c4 slhc_init +EXPORT_SYMBOL vmlinux 0x26b9f854 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26e55685 nvm_dev_factory +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x26f30488 swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0x26ff2330 phy_device_register +EXPORT_SYMBOL vmlinux 0x271c104f zpool_register_driver +EXPORT_SYMBOL vmlinux 0x2724fe26 param_set_ushort +EXPORT_SYMBOL vmlinux 0x2736b6ab __nd_iostat_start +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x2761b325 vfs_rename +EXPORT_SYMBOL vmlinux 0x27646df3 start_thread +EXPORT_SYMBOL vmlinux 0x2769a446 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x2771d7ff ida_get_new_above +EXPORT_SYMBOL vmlinux 0x277a5a94 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x27ec5956 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x27ed0c08 cont_write_begin +EXPORT_SYMBOL vmlinux 0x27f9c578 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x2819d695 bio_advance +EXPORT_SYMBOL vmlinux 0x282051ba __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x282325ed mb_cache_shrink +EXPORT_SYMBOL vmlinux 0x28318305 snprintf +EXPORT_SYMBOL vmlinux 0x283b1f24 dev_change_carrier +EXPORT_SYMBOL vmlinux 0x283c5397 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x28403b52 seq_read +EXPORT_SYMBOL vmlinux 0x28573a1e nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0x2877d1c4 end_page_writeback +EXPORT_SYMBOL vmlinux 0x289db3ee idr_remove +EXPORT_SYMBOL vmlinux 0x28a2b29f radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28a5a950 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x28a7beba __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x28a9a45d napi_gro_receive +EXPORT_SYMBOL vmlinux 0x28abfe6e scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x28b977ba dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x28ccbd20 agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0x28e6ce45 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x291bd884 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0x2940dc4d kill_pid +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x295a3edf __alloc_skb +EXPORT_SYMBOL vmlinux 0x295cd787 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x296436ea bio_reset +EXPORT_SYMBOL vmlinux 0x2987fe8f __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x29a3bd48 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x29b2279e __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x29c7451d dquot_free_inode +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a33df19 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a3ff6d7 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x2a4403c3 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x2a4b9ab6 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x2a6c35d7 neigh_xmit +EXPORT_SYMBOL vmlinux 0x2a8b8d6c netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x2a8d4a07 inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0x2a9de080 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x2aa92849 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x2aae8b45 vm_map_ram +EXPORT_SYMBOL vmlinux 0x2ab6083d netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x2abee966 padata_do_parallel +EXPORT_SYMBOL vmlinux 0x2ac0aa01 seq_release_private +EXPORT_SYMBOL vmlinux 0x2ac17752 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x2ac17be1 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2ad892e0 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x2aff39e7 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b3a1f20 unlink_framebuffer +EXPORT_SYMBOL vmlinux 0x2b3b7d7b nvm_unregister_target +EXPORT_SYMBOL vmlinux 0x2b3e213f tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x2b4991ec xmon +EXPORT_SYMBOL vmlinux 0x2b4daaa1 igrab +EXPORT_SYMBOL vmlinux 0x2b6f88a0 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x2b8a640e alloc_fcdev +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2b9f5ba2 vme_dma_request +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2bb9cc15 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x2bbf1e23 kobject_get +EXPORT_SYMBOL vmlinux 0x2bc42ae1 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x2be261eb dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x2be87887 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x2c075933 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x2c0cbe64 km_new_mapping +EXPORT_SYMBOL vmlinux 0x2c12075d ihold +EXPORT_SYMBOL vmlinux 0x2c1cd4a4 cpu_present_mask +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c464205 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x2c4b74c3 page_readlink +EXPORT_SYMBOL vmlinux 0x2c4c7997 _lv1_construct_lpm +EXPORT_SYMBOL vmlinux 0x2c511745 write_cache_pages +EXPORT_SYMBOL vmlinux 0x2c59ece7 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x2c7b1fca down_timeout +EXPORT_SYMBOL vmlinux 0x2c7b53fe pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x2c87760f elevator_alloc +EXPORT_SYMBOL vmlinux 0x2c8bb116 blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x2c994069 filemap_fault +EXPORT_SYMBOL vmlinux 0x2cb1fc79 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x2cd06208 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x2cd290ac write_inode_now +EXPORT_SYMBOL vmlinux 0x2ce486a3 pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x2d008263 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0x2d036285 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x2d0d836b register_quota_format +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d1de2b7 tty_hangup +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d3c1d02 dm_register_target +EXPORT_SYMBOL vmlinux 0x2d3e40df gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x2d5336aa blk_execute_rq +EXPORT_SYMBOL vmlinux 0x2d5ca179 dev_activate +EXPORT_SYMBOL vmlinux 0x2d763c38 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x2d7d2767 _lv1_set_lpm_group_control +EXPORT_SYMBOL vmlinux 0x2dacce67 d_invalidate +EXPORT_SYMBOL vmlinux 0x2db1e0c6 dql_init +EXPORT_SYMBOL vmlinux 0x2de3240d get_io_context +EXPORT_SYMBOL vmlinux 0x2de95fbd __f_setown +EXPORT_SYMBOL vmlinux 0x2e0d2f7f queue_work_on +EXPORT_SYMBOL vmlinux 0x2e0eeb46 skb_pull +EXPORT_SYMBOL vmlinux 0x2e12a93b ibmebus_request_irq +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e3d894c kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x2e593a27 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0x2e73dfd2 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x2e8b5add filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x2e93495e _lv1_write_htab_entry +EXPORT_SYMBOL vmlinux 0x2e96f12e uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x2ea712ba rfkill_alloc +EXPORT_SYMBOL vmlinux 0x2ed446ec misc_register +EXPORT_SYMBOL vmlinux 0x2edd1bc8 ps3_sb_event_receive_port_destroy +EXPORT_SYMBOL vmlinux 0x2ede3843 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x2ee4337f smu_queue_cmd +EXPORT_SYMBOL vmlinux 0x2ef129ff set_wb_congested +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource +EXPORT_SYMBOL vmlinux 0x2f1281e2 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x2f287f0d copy_to_user +EXPORT_SYMBOL vmlinux 0x2f3f51ae __frontswap_test +EXPORT_SYMBOL vmlinux 0x2f3f6c46 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2faadd36 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x2fae96de rtas_data_buf_lock +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fb9eee2 nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0x2fbe889f set_posix_acl +EXPORT_SYMBOL vmlinux 0x2fcef3e4 nonseekable_open +EXPORT_SYMBOL vmlinux 0x2fd1c8f5 padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2feba029 phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0x30199ca2 bio_integrity_endio +EXPORT_SYMBOL vmlinux 0x3020b7b5 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x302aa4da blk_stop_queue +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x303d09c3 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x307d70fb blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x308e9b5d abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0x309546e0 phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30977885 unregister_md_personality +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30b8b35c cpu_to_chip_id +EXPORT_SYMBOL vmlinux 0x30d973fd mdiobus_write +EXPORT_SYMBOL vmlinux 0x30e50c61 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x30fb2d8e xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310f02ec memremap +EXPORT_SYMBOL vmlinux 0x3112600c complete_request_key +EXPORT_SYMBOL vmlinux 0x312cfaf2 _lv1_disable_logical_spe +EXPORT_SYMBOL vmlinux 0x312d7d40 param_set_long +EXPORT_SYMBOL vmlinux 0x313b5323 generic_file_open +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x3162ad38 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x31763d89 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x317b211c disk_stack_limits +EXPORT_SYMBOL vmlinux 0x3192fcf3 sget_userns +EXPORT_SYMBOL vmlinux 0x31943f19 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x319b1fd7 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x319f9f6b blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x31b21c5d tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x31b7f300 _lv1_set_lpm_signal +EXPORT_SYMBOL vmlinux 0x31cd509a _lv1_net_control +EXPORT_SYMBOL vmlinux 0x31cd995b store_fp_state +EXPORT_SYMBOL vmlinux 0x31ddf571 dentry_update_name_case +EXPORT_SYMBOL vmlinux 0x31e63889 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x31fa52c7 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x321ea3f2 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x32283c5b d_splice_alias +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x32542e52 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x3267e8d4 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x326df472 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x3277bb6d blkdev_put +EXPORT_SYMBOL vmlinux 0x327b9c1b pmu_poll_adb +EXPORT_SYMBOL vmlinux 0x3288b003 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x32a933c7 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x32af3c3e cdrom_open +EXPORT_SYMBOL vmlinux 0x32dbee94 sk_stream_error +EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x331440bd elv_register_queue +EXPORT_SYMBOL vmlinux 0x33191d6b check_disk_size_change +EXPORT_SYMBOL vmlinux 0x331dcc8c tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x33275c2d devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x333cb37c __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x335e19a8 seq_write +EXPORT_SYMBOL vmlinux 0x3395ecbe remove_proc_entry +EXPORT_SYMBOL vmlinux 0x33ad71c2 vfs_setpos +EXPORT_SYMBOL vmlinux 0x33afb276 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33c5de4b mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33e8ddd2 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33f07c09 md_done_sync +EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x34062126 param_set_charp +EXPORT_SYMBOL vmlinux 0x3417f3b8 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x3421d74c ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x342e3d3e blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x34386191 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x344adbd5 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x3459266d poll_initwait +EXPORT_SYMBOL vmlinux 0x345bb59f unregister_filesystem +EXPORT_SYMBOL vmlinux 0x34619150 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x348301f9 read_dev_sector +EXPORT_SYMBOL vmlinux 0x348b9569 setattr_copy +EXPORT_SYMBOL vmlinux 0x348c2ebf try_to_release_page +EXPORT_SYMBOL vmlinux 0x3492c41c km_state_expired +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34af716e find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x34b5d2b9 module_layout +EXPORT_SYMBOL vmlinux 0x34d80ff6 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34f79fae kernel_read +EXPORT_SYMBOL vmlinux 0x34f87534 input_reset_device +EXPORT_SYMBOL vmlinux 0x3506695f blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x350cbe88 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x35253ce5 led_blink_set_oneshot +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x354d48b9 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x35512818 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x357cbde5 do_splice_from +EXPORT_SYMBOL vmlinux 0x3581f343 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x358cc4e1 fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35af0325 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0x35bee5e6 dev_get_flags +EXPORT_SYMBOL vmlinux 0x35c32767 xor_altivec_2 +EXPORT_SYMBOL vmlinux 0x35e00923 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x35f7a439 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x3609e4d2 iget_locked +EXPORT_SYMBOL vmlinux 0x36147d54 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x3618cb2d ida_destroy +EXPORT_SYMBOL vmlinux 0x3623989d __devm_request_region +EXPORT_SYMBOL vmlinux 0x3626e8e0 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x36476ff6 sock_init_data +EXPORT_SYMBOL vmlinux 0x3658bbbc eeh_dev_release +EXPORT_SYMBOL vmlinux 0x3661e8d5 of_find_property +EXPORT_SYMBOL vmlinux 0x3662a4d4 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x366895c1 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x3669e709 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x366f6d27 idr_destroy +EXPORT_SYMBOL vmlinux 0x369e1115 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x36ac8f4a kset_unregister +EXPORT_SYMBOL vmlinux 0x36b0e732 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36bde2d9 sg_miter_next +EXPORT_SYMBOL vmlinux 0x36c0e6d4 mapping_tagged +EXPORT_SYMBOL vmlinux 0x36dfffef generic_write_end +EXPORT_SYMBOL vmlinux 0x36e8861c generic_file_fsync +EXPORT_SYMBOL vmlinux 0x36f7096b posix_acl_valid +EXPORT_SYMBOL vmlinux 0x36f7d2f9 flush_signals +EXPORT_SYMBOL vmlinux 0x371902e9 _lv1_get_lpm_interrupt_status +EXPORT_SYMBOL vmlinux 0x371d2130 check_legacy_ioport +EXPORT_SYMBOL vmlinux 0x37344510 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x37383edd rtas_get_power_level +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x37481812 __secpath_destroy +EXPORT_SYMBOL vmlinux 0x3775f75e scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0x378576e3 mdiobus_read +EXPORT_SYMBOL vmlinux 0x37a47bd3 security_task_getsecid +EXPORT_SYMBOL vmlinux 0x37aa522c vio_unregister_device +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37bdac69 tso_count_descs +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37e0153d flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x37e6b33c i2c_transfer +EXPORT_SYMBOL vmlinux 0x37f75e8f sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x3809ab1c tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x380da1f9 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x382777ab _lv1_gpu_context_allocate +EXPORT_SYMBOL vmlinux 0x3842bafc nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x385514a4 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x386e13aa sys_fillrect +EXPORT_SYMBOL vmlinux 0x387fed67 lookup_bdev +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x389a49b2 nd_btt_probe +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a7fc74 migrate_page +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38b47360 tcp_filter +EXPORT_SYMBOL vmlinux 0x38b825d1 idr_replace +EXPORT_SYMBOL vmlinux 0x38cc3430 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x38d26fd0 get_super +EXPORT_SYMBOL vmlinux 0x38dd985a skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x38deff9a md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x38e56877 drop_super +EXPORT_SYMBOL vmlinux 0x38f18574 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x38fb9933 tty_std_termios +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393d4de9 crc32_le +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x3964e7eb sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x397276dd dev_add_offload +EXPORT_SYMBOL vmlinux 0x39732482 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0x397b52da clocksource_unregister +EXPORT_SYMBOL vmlinux 0x39939d7b sync_inode +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x39a76c3d rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x39a939da blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39cdf63c wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x39d1b90a ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x39e76ab1 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0x39f7da61 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x39f9c44c nf_getsockopt +EXPORT_SYMBOL vmlinux 0x3a07f190 dev_close +EXPORT_SYMBOL vmlinux 0x3a090566 sk_free +EXPORT_SYMBOL vmlinux 0x3a188e95 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x3a1e4710 led_set_brightness +EXPORT_SYMBOL vmlinux 0x3a3c0c46 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x3a5d1183 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x3a6939d4 devm_iounmap +EXPORT_SYMBOL vmlinux 0x3a99e001 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3aa58074 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x3ab2d8a9 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x3ac86565 free_buffer_head +EXPORT_SYMBOL vmlinux 0x3aec4cdc generic_show_options +EXPORT_SYMBOL vmlinux 0x3b0882cc ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x3b17e715 ll_rw_block +EXPORT_SYMBOL vmlinux 0x3b3a56d9 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x3b40af62 page_put_link +EXPORT_SYMBOL vmlinux 0x3b43b516 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x3b4aa97b param_ops_ullong +EXPORT_SYMBOL vmlinux 0x3b615a21 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b65e4d0 tcp_proc_register +EXPORT_SYMBOL vmlinux 0x3b7aa2f4 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x3b89f458 inode_dio_wait +EXPORT_SYMBOL vmlinux 0x3b9d13c0 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x3b9ef78a devm_gpio_free +EXPORT_SYMBOL vmlinux 0x3ba6a5ad blk_complete_request +EXPORT_SYMBOL vmlinux 0x3bbdc707 iterate_fd +EXPORT_SYMBOL vmlinux 0x3bc2d73e take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x3bc3daf9 vm_insert_pfn +EXPORT_SYMBOL vmlinux 0x3bf252da mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x3c04a070 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x3c183feb get_user_pages +EXPORT_SYMBOL vmlinux 0x3c29901f nf_hook_slow +EXPORT_SYMBOL vmlinux 0x3c3bfb8e uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c483012 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c946c90 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x3cc4b0dc lg_lock_init +EXPORT_SYMBOL vmlinux 0x3ccec63b textsearch_prepare +EXPORT_SYMBOL vmlinux 0x3cd45879 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3d0ded17 sk_capable +EXPORT_SYMBOL vmlinux 0x3d22b17b param_get_int +EXPORT_SYMBOL vmlinux 0x3d4eba16 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x3d6305bc pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0x3d6a6f91 pci_match_id +EXPORT_SYMBOL vmlinux 0x3d837791 vga_put +EXPORT_SYMBOL vmlinux 0x3d9b526d vm_insert_page +EXPORT_SYMBOL vmlinux 0x3db0e198 pci_dev_put +EXPORT_SYMBOL vmlinux 0x3dbf36c9 sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x3dc02a4e flex_array_free_parts +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3ddacb2d kobject_put +EXPORT_SYMBOL vmlinux 0x3df5a3b6 __nd_driver_register +EXPORT_SYMBOL vmlinux 0x3df77fa0 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x3dfa7c1a of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e0f1158 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x3e286dca _lv1_get_rtc +EXPORT_SYMBOL vmlinux 0x3e45041c path_noexec +EXPORT_SYMBOL vmlinux 0x3e570337 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x3e585f85 skb_dequeue +EXPORT_SYMBOL vmlinux 0x3e6ec525 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x3e7ffa76 search_binary_handler +EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get +EXPORT_SYMBOL vmlinux 0x3e962be6 kthread_stop +EXPORT_SYMBOL vmlinux 0x3ebdfcde __skb_tx_hash +EXPORT_SYMBOL vmlinux 0x3ec24d5f mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x3ed5e67b eth_type_trans +EXPORT_SYMBOL vmlinux 0x3ed69814 do_splice_to +EXPORT_SYMBOL vmlinux 0x3ed95120 udp_seq_open +EXPORT_SYMBOL vmlinux 0x3ed9dc9a jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f05de3a vfs_getattr +EXPORT_SYMBOL vmlinux 0x3f06a656 _lv1_construct_event_receive_port +EXPORT_SYMBOL vmlinux 0x3f3554bc sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x3f406a3b enable_kernel_altivec +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f5df26a pci_bus_type +EXPORT_SYMBOL vmlinux 0x3f76f7bf tcp_release_cb +EXPORT_SYMBOL vmlinux 0x3f95fe59 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x3faf2481 pagevec_lookup +EXPORT_SYMBOL vmlinux 0x3fbfd6ed _lv1_gpu_open +EXPORT_SYMBOL vmlinux 0x3fd1da65 kill_anon_super +EXPORT_SYMBOL vmlinux 0x3fdc9399 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x3fe0d1c0 slhc_free +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3fe931ca vfs_fsync +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x3ff0e902 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x3ff32b25 cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0x3ff8e495 lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x404568c6 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x404f8d1f udp_del_offload +EXPORT_SYMBOL vmlinux 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x406a3a25 tty_do_resize +EXPORT_SYMBOL vmlinux 0x4077bebe dma_find_channel +EXPORT_SYMBOL vmlinux 0x4078c098 xattr_full_name +EXPORT_SYMBOL vmlinux 0x408e3d7d scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40b1d80d mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x40ba4f3c __napi_schedule +EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0x40c64382 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40e6df69 __nla_reserve +EXPORT_SYMBOL vmlinux 0x412a2929 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x41361807 _lv1_get_logical_ppe_id +EXPORT_SYMBOL vmlinux 0x413753f5 skb_seq_read +EXPORT_SYMBOL vmlinux 0x413befb4 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x4159c38f ioremap_wc +EXPORT_SYMBOL vmlinux 0x4160a025 set_disk_ro +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418e38c7 nf_unregister_hook +EXPORT_SYMBOL vmlinux 0x41a3fbf1 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x41b196ca mach_maple +EXPORT_SYMBOL vmlinux 0x41b2d848 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x41b394c4 make_kgid +EXPORT_SYMBOL vmlinux 0x41baf194 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x41c74f16 key_type_keyring +EXPORT_SYMBOL vmlinux 0x41dbf4de _lv1_start_lpm +EXPORT_SYMBOL vmlinux 0x41e93f1e dev_alloc_name +EXPORT_SYMBOL vmlinux 0x41f1de38 vme_irq_request +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x423e40a1 sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x424613e3 agp_find_bridge +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x424e9b16 iput +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x4265e658 generic_getxattr +EXPORT_SYMBOL vmlinux 0x427fed7f tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x42838ebd scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x429b9d94 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x42ca0d71 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x42e020f6 d_lookup +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x43331c60 __init_rwsem +EXPORT_SYMBOL vmlinux 0x4333f0d3 macio_register_driver +EXPORT_SYMBOL vmlinux 0x4342ae64 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x43447782 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x4363f36e dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x43800fa0 mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43880fd5 km_state_notify +EXPORT_SYMBOL vmlinux 0x43a01f90 complete_all +EXPORT_SYMBOL vmlinux 0x43a78649 gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0x43a84895 set_create_files_as +EXPORT_SYMBOL vmlinux 0x43d821b9 __getblk_slow +EXPORT_SYMBOL vmlinux 0x43ef1a81 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x43f07afc do_truncate +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x43f493d2 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x441feeb1 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x444bb4c7 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x44685cab tty_port_hangup +EXPORT_SYMBOL vmlinux 0x44710197 free_task +EXPORT_SYMBOL vmlinux 0x44786eee mmc_power_save_host +EXPORT_SYMBOL vmlinux 0x447a71ad dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x447bf102 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x447eb4f1 mmc_put_card +EXPORT_SYMBOL vmlinux 0x447f68c3 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x448eac3e kmemdup +EXPORT_SYMBOL vmlinux 0x448f13d4 sync_filesystem +EXPORT_SYMBOL vmlinux 0x44995ea3 bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0x449bcde2 bio_copy_data +EXPORT_SYMBOL vmlinux 0x449c56e0 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x449e5dd6 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x44b8a376 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x44c6885c of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x44e05073 dev_addr_init +EXPORT_SYMBOL vmlinux 0x44e5d0c6 lro_flush_all +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44eb192e wait_for_completion +EXPORT_SYMBOL vmlinux 0x4512dbd4 security_path_rmdir +EXPORT_SYMBOL vmlinux 0x451c5ed7 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x451ca959 dev_set_group +EXPORT_SYMBOL vmlinux 0x451e335f pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x4521b0b3 blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x453b73b4 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x453ebaec skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x45537cfc gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x455e0c89 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x4564459b _lv1_set_virtual_uart_param +EXPORT_SYMBOL vmlinux 0x4566ae08 copy_from_iter +EXPORT_SYMBOL vmlinux 0x456c6361 tcp_connect +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x4594b99b rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x4596bf16 migrate_page_copy +EXPORT_SYMBOL vmlinux 0x459e58d5 ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x45a55ec8 __iounmap +EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource +EXPORT_SYMBOL vmlinux 0x45b17231 input_grab_device +EXPORT_SYMBOL vmlinux 0x45cfe80b pasemi_dma_free_flag +EXPORT_SYMBOL vmlinux 0x45d78329 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x4612c59d down_trylock +EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x461ebfa0 __copy_tofrom_user +EXPORT_SYMBOL vmlinux 0x462a1333 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x468c94cd nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x46a473ca vio_h_cop_sync +EXPORT_SYMBOL vmlinux 0x46afd532 on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46d12956 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x46f2bb50 netdev_state_change +EXPORT_SYMBOL vmlinux 0x46fd32bd skb_put +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x47027750 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x47048cbf i2c_verify_client +EXPORT_SYMBOL vmlinux 0x471c7389 fb_get_mode +EXPORT_SYMBOL vmlinux 0x471d1774 find_inode_nowait +EXPORT_SYMBOL vmlinux 0x472c4127 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x475fc57f security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x47608718 fence_init +EXPORT_SYMBOL vmlinux 0x476c45b6 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x4775d166 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x478edd28 may_umount_tree +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47a10dae always_delete_dentry +EXPORT_SYMBOL vmlinux 0x47aa79a4 set_blocksize +EXPORT_SYMBOL vmlinux 0x47d38bd6 pipe_unlock +EXPORT_SYMBOL vmlinux 0x47d48691 md_update_sb +EXPORT_SYMBOL vmlinux 0x47e824ac tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x48057be6 agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x480ed01e agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x4815f22b _lv1_gpu_attribute +EXPORT_SYMBOL vmlinux 0x4827f6bc pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x4829a47e memcpy +EXPORT_SYMBOL vmlinux 0x4830f830 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x4831ecfc dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0x48345d1e vfs_rmdir +EXPORT_SYMBOL vmlinux 0x48391059 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x48404b9a remove_wait_queue +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x4843a1b9 _lv1_delete_repository_node +EXPORT_SYMBOL vmlinux 0x48448803 pci_release_regions +EXPORT_SYMBOL vmlinux 0x4847ecd5 vfs_mknod +EXPORT_SYMBOL vmlinux 0x484c1424 pnv_cxl_get_irq_count +EXPORT_SYMBOL vmlinux 0x4850cc03 __inet_hash +EXPORT_SYMBOL vmlinux 0x48587027 mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x4881efab pmac_get_partition +EXPORT_SYMBOL vmlinux 0x4889a164 __sock_create +EXPORT_SYMBOL vmlinux 0x4899a473 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x48a2a6dd replace_mount_options +EXPORT_SYMBOL vmlinux 0x48a7f84a __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48bd83c5 mpage_writepage +EXPORT_SYMBOL vmlinux 0x48ea0382 scsi_device_put +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x493063f1 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x4934ea98 keyring_clear +EXPORT_SYMBOL vmlinux 0x4934ee7e __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x4959ed89 follow_down +EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init +EXPORT_SYMBOL vmlinux 0x495ec6eb pasemi_dma_alloc_buf +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x49696cfe pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x49701fa5 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x497352ad set_cached_acl +EXPORT_SYMBOL vmlinux 0x497e7a2b genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49b0fd1e load_nls +EXPORT_SYMBOL vmlinux 0x49bae9d5 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x49be8bf4 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x49e2cab8 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x49eda4fd param_set_int +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x49fc88e3 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x4a156c95 page_waitqueue +EXPORT_SYMBOL vmlinux 0x4a425ece key_put +EXPORT_SYMBOL vmlinux 0x4a5eff35 uart_match_port +EXPORT_SYMBOL vmlinux 0x4a8961f5 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x4a984c4a scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x4ab158d2 devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk +EXPORT_SYMBOL vmlinux 0x4ac64da4 _lv1_select_virtual_address_space +EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource +EXPORT_SYMBOL vmlinux 0x4ad2a57a opal_event_request +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b1d4800 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x4b1ec89d sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x4b3363a7 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x4b38837a blk_get_request +EXPORT_SYMBOL vmlinux 0x4b3cb349 _lv1_destruct_io_irq_outlet +EXPORT_SYMBOL vmlinux 0x4b4fcee2 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x4b5bf6f6 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b604d1a skb_push +EXPORT_SYMBOL vmlinux 0x4b6fcddc _lv1_set_spe_interrupt_mask +EXPORT_SYMBOL vmlinux 0x4b8326ff ida_remove +EXPORT_SYMBOL vmlinux 0x4b9918a3 padata_free +EXPORT_SYMBOL vmlinux 0x4b99a9b0 nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bb36178 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x4bed99b3 __percpu_counter_add +EXPORT_SYMBOL vmlinux 0x4bf48d50 tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0x4c046962 kill_pgrp +EXPORT_SYMBOL vmlinux 0x4c11435a _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x4c1b45bf of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x4c23b8c9 unregister_binfmt +EXPORT_SYMBOL vmlinux 0x4c2d53ff machine_id +EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf +EXPORT_SYMBOL vmlinux 0x4c51f7a4 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x4c628504 open_exec +EXPORT_SYMBOL vmlinux 0x4c8859e8 bio_integrity_free +EXPORT_SYMBOL vmlinux 0x4ca9669f scnprintf +EXPORT_SYMBOL vmlinux 0x4cb62aa7 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x4cc0624d set_bh_page +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4d1d7ecf rt6_lookup +EXPORT_SYMBOL vmlinux 0x4d26514a pnv_cxl_release_hwirq_ranges +EXPORT_SYMBOL vmlinux 0x4d2e7f79 acl_by_type +EXPORT_SYMBOL vmlinux 0x4d31f19c ppp_dev_name +EXPORT_SYMBOL vmlinux 0x4d3373d3 unlock_page +EXPORT_SYMBOL vmlinux 0x4d36078c sock_no_getname +EXPORT_SYMBOL vmlinux 0x4d39e6ab dcache_dir_close +EXPORT_SYMBOL vmlinux 0x4d4c044d mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x4d6d6673 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x4d791953 mempool_resize +EXPORT_SYMBOL vmlinux 0x4d7cb47d freezing_slow_path +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4d9f4b9e blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x4da46a88 param_ops_string +EXPORT_SYMBOL vmlinux 0x4ddbbeb7 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x4ddcdfa9 bdi_register_dev +EXPORT_SYMBOL vmlinux 0x4de0f608 no_llseek +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4df6aab9 of_mdio_parse_addr +EXPORT_SYMBOL vmlinux 0x4e001906 alloc_disk_node +EXPORT_SYMBOL vmlinux 0x4e13cd8a __bforget +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e3bcc2c twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e74577a __dax_fault +EXPORT_SYMBOL vmlinux 0x4e7a5721 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x4e7bc529 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x4e86df5c scm_detach_fds +EXPORT_SYMBOL vmlinux 0x4e91b1d7 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x4e9d046e inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x4e9dffb5 ip_fast_csum +EXPORT_SYMBOL vmlinux 0x4eac1a79 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x4ebb837c xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x4ec303ab wake_up_process +EXPORT_SYMBOL vmlinux 0x4edcb432 give_up_console +EXPORT_SYMBOL vmlinux 0x4efff5e9 skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x4f1c038a mdiobus_scan +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f1f1860 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f35a133 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f4b09ff tcp_shutdown +EXPORT_SYMBOL vmlinux 0x4f60d5f8 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x4f664db6 _lv1_insert_htab_entry +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f743c21 input_register_handler +EXPORT_SYMBOL vmlinux 0x4f82894e mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x4f89acef tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x4f8d0ad2 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x4fa53b09 simple_write_end +EXPORT_SYMBOL vmlinux 0x4fcdf4d3 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x4fcdfc8c of_match_device +EXPORT_SYMBOL vmlinux 0x4fdb672c dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x4fdc2fec dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4ff38bf3 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x5008ebe3 serio_bus +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5030626e udp_prot +EXPORT_SYMBOL vmlinux 0x5034f98c blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x5071cc28 __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x5076bdd0 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x507871d2 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0x507bc7ad tcp_check_req +EXPORT_SYMBOL vmlinux 0x50a2d375 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch +EXPORT_SYMBOL vmlinux 0x50ba769a kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x50bbaf0e neigh_app_ns +EXPORT_SYMBOL vmlinux 0x50d93d53 km_query +EXPORT_SYMBOL vmlinux 0x50dd6188 load_nls_default +EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x51108437 phy_device_create +EXPORT_SYMBOL vmlinux 0x51164ad9 cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x512482c6 md_write_end +EXPORT_SYMBOL vmlinux 0x514bf35e add_disk +EXPORT_SYMBOL vmlinux 0x515d22a3 vfs_unlink +EXPORT_SYMBOL vmlinux 0x515ec33d lro_receive_skb +EXPORT_SYMBOL vmlinux 0x519b0da3 finish_wait +EXPORT_SYMBOL vmlinux 0x51a67f4d request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x51a7e82e nvm_put_blk_unlocked +EXPORT_SYMBOL vmlinux 0x51bcc7c8 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x51dee068 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x51e07230 fb_blank +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x520a04c0 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x520e0a18 dget_parent +EXPORT_SYMBOL vmlinux 0x5210e88c crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x5214dab0 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x5247d11a giveup_vsx +EXPORT_SYMBOL vmlinux 0x524ea2a9 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x52531e56 vfs_readf +EXPORT_SYMBOL vmlinux 0x525aea0c node_data +EXPORT_SYMBOL vmlinux 0x52670384 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x52759e07 bdev_read_only +EXPORT_SYMBOL vmlinux 0x527830ff pmac_xpram_read +EXPORT_SYMBOL vmlinux 0x528a7d7b mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x529498a7 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x52a39bb0 pnv_pci_get_npu_dev +EXPORT_SYMBOL vmlinux 0x52c700bf misc_deregister +EXPORT_SYMBOL vmlinux 0x52e3fa05 _lv1_allocate_memory +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x531bb28c locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x5322bf66 mutex_trylock +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x53378cfa jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x5339f25d mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x5339f5f8 _lv1_read_virtual_uart +EXPORT_SYMBOL vmlinux 0x534cfcd2 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x5359cf98 pci_get_subsys +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x536459f3 qdisc_list_add +EXPORT_SYMBOL vmlinux 0x536cc847 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x5371d868 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x5371e96c __kfree_skb +EXPORT_SYMBOL vmlinux 0x5377e556 hex2bin +EXPORT_SYMBOL vmlinux 0x5387765a generic_read_dir +EXPORT_SYMBOL vmlinux 0x5392905a inet6_add_offload +EXPORT_SYMBOL vmlinux 0x5398103e vga_con +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x53b0165e inet_recvmsg +EXPORT_SYMBOL vmlinux 0x53c8ac80 fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0x53e0a70a macio_request_resources +EXPORT_SYMBOL vmlinux 0x53e6da4f update_devfreq +EXPORT_SYMBOL vmlinux 0x53ebab1b _outsl_ns +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x540ddec1 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x5410cedb check_disk_change +EXPORT_SYMBOL vmlinux 0x5412c7c7 up +EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x5446e93d pci_restore_state +EXPORT_SYMBOL vmlinux 0x54526587 tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x5468704c filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x548384be __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x54883515 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x548f22ec tty_register_driver +EXPORT_SYMBOL vmlinux 0x5492a3ab single_open_size +EXPORT_SYMBOL vmlinux 0x549b603c input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x549f4722 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x54a6defc napi_gro_frags +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54b2981e pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x54b622fe input_open_device +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54c82879 cdev_add +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54f88828 get_phy_device +EXPORT_SYMBOL vmlinux 0x54fb47aa param_ops_uint +EXPORT_SYMBOL vmlinux 0x550d6d17 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x5511dc7c of_phy_attach +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x55341ec1 prepare_creds +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x55531e1b I_BDEV +EXPORT_SYMBOL vmlinux 0x5560d833 locks_free_lock +EXPORT_SYMBOL vmlinux 0x5565d832 ether_setup +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x5568c553 complete +EXPORT_SYMBOL vmlinux 0x5577ef9e udp_table +EXPORT_SYMBOL vmlinux 0x557b3dd8 _lv1_gpu_close +EXPORT_SYMBOL vmlinux 0x55b30d23 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55f5019b __kmalloc_node +EXPORT_SYMBOL vmlinux 0x5610dbd8 poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x56140c60 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563927ba inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x56461c2d buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x56516373 ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0x568804ee _lv1_destruct_event_receive_port +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x5694fd04 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x56a9dbe0 of_dev_get +EXPORT_SYMBOL vmlinux 0x56baab53 dev_crit +EXPORT_SYMBOL vmlinux 0x56c2b95b rtas_progress +EXPORT_SYMBOL vmlinux 0x56c3f7c2 mount_subtree +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56ddd997 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x56e437de param_ops_short +EXPORT_SYMBOL vmlinux 0x56edc13e ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x56f6c7de lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x56f87bb5 i2c_master_recv +EXPORT_SYMBOL vmlinux 0x57010289 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x570a9cc5 pci_bus_get +EXPORT_SYMBOL vmlinux 0x5712c9ae tcp_child_process +EXPORT_SYMBOL vmlinux 0x572647d6 get_mce_fault_addr +EXPORT_SYMBOL vmlinux 0x57287773 pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x574a184f __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x5753283c md_register_thread +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x57749b5a ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x577d35f3 hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x57875aaf ibmebus_unregister_driver +EXPORT_SYMBOL vmlinux 0x578c6a9f rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x5798819b tcf_em_register +EXPORT_SYMBOL vmlinux 0x579bab50 _lv1_gpu_memory_free +EXPORT_SYMBOL vmlinux 0x57a1d0d1 ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x57a5ba2c swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0x57a91fb9 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x57d33e36 devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0x57ecf1e5 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x57fb92ca xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x5801d167 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x58170415 flush_old_exec +EXPORT_SYMBOL vmlinux 0x5819b4ef of_cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x582eac92 page_symlink +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x58519aa8 sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep +EXPORT_SYMBOL vmlinux 0x5866855b path_is_under +EXPORT_SYMBOL vmlinux 0x58739cd3 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x589f1f1b key_payload_reserve +EXPORT_SYMBOL vmlinux 0x58b54321 nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58c54576 nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0x58dd6f47 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58fb5191 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x58fb58b3 tc_classify +EXPORT_SYMBOL vmlinux 0x59272f65 nf_register_hook +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x5959b75f posix_test_lock +EXPORT_SYMBOL vmlinux 0x595d0946 empty_zero_page +EXPORT_SYMBOL vmlinux 0x59680b92 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x59690ae7 stop_tty +EXPORT_SYMBOL vmlinux 0x596b8539 kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0x59729603 kill_fasync +EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x598fcaeb xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x59941008 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x59a6102f pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x59a7a5ec iov_iter_zero +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59b3378a completion_done +EXPORT_SYMBOL vmlinux 0x59d2fc0b agp_bind_memory +EXPORT_SYMBOL vmlinux 0x59e531cc devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x59f29fd1 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x5a025f7b arch_local_irq_restore +EXPORT_SYMBOL vmlinux 0x5a098b04 security_file_permission +EXPORT_SYMBOL vmlinux 0x5a0aaa12 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a0c1584 __lock_buffer +EXPORT_SYMBOL vmlinux 0x5a0eb6a9 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x5a1d78b2 page_follow_link_light +EXPORT_SYMBOL vmlinux 0x5a2cda3e trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x5a6e9a6c scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x5a77136f serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a93a00c arp_xmit +EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove +EXPORT_SYMBOL vmlinux 0x5abcf1fa dquot_alloc +EXPORT_SYMBOL vmlinux 0x5abe4e1e netdev_printk +EXPORT_SYMBOL vmlinux 0x5ad8fc7d sget +EXPORT_SYMBOL vmlinux 0x5af45e4c mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b038dcd md_finish_reshape +EXPORT_SYMBOL vmlinux 0x5b33cb97 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x5b43f1f1 rtas_service_present +EXPORT_SYMBOL vmlinux 0x5b4cef51 netlink_ack +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b5b0e32 mutex_unlock +EXPORT_SYMBOL vmlinux 0x5b94f7c3 netif_device_detach +EXPORT_SYMBOL vmlinux 0x5b9828c5 dma_spin_lock +EXPORT_SYMBOL vmlinux 0x5b9d5538 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x5bad887c neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x5bbbf04b invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x5bc10524 printk_emit +EXPORT_SYMBOL vmlinux 0x5bc9cdf8 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x5bcdce10 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x5bea79f0 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x5bfaa80f xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x5bfd4542 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x5c10d532 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x5c182fd1 dqget +EXPORT_SYMBOL vmlinux 0x5c2477d3 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x5c37f319 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x5c626d5c eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x5c6d5573 ps3_dma_region_create +EXPORT_SYMBOL vmlinux 0x5c8a6858 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x5c970cf5 __page_symlink +EXPORT_SYMBOL vmlinux 0x5cb065ad mount_pseudo +EXPORT_SYMBOL vmlinux 0x5cc32bdc bitmap_copy_le +EXPORT_SYMBOL vmlinux 0x5cc3767a noop_fsync +EXPORT_SYMBOL vmlinux 0x5ccc9045 _lv1_close_device +EXPORT_SYMBOL vmlinux 0x5cefd239 __genl_register_family +EXPORT_SYMBOL vmlinux 0x5cf30e10 __debugger_ipi +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cfb7592 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x5d165798 fsl_lbc_ctrl_dev +EXPORT_SYMBOL vmlinux 0x5d1bfd68 pci_choose_state +EXPORT_SYMBOL vmlinux 0x5d1f9aaf inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0x5d2a56d3 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x5d2a9474 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x5d494f46 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x5d4d949f xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d6acafc blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x5d87a0fe fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0x5daa6e81 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x5daae8bd __pagevec_release +EXPORT_SYMBOL vmlinux 0x5db73048 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x5de00409 vfs_link +EXPORT_SYMBOL vmlinux 0x5df43000 macio_dev_get +EXPORT_SYMBOL vmlinux 0x5e030ac0 nf_afinfo +EXPORT_SYMBOL vmlinux 0x5e076ab8 softnet_data +EXPORT_SYMBOL vmlinux 0x5e111c5a dm_unregister_target +EXPORT_SYMBOL vmlinux 0x5e239db0 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x5e3a8a9c __wake_up +EXPORT_SYMBOL vmlinux 0x5e48b6bc netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x5e4e09dd init_buffer +EXPORT_SYMBOL vmlinux 0x5e667aa1 pci_get_slot +EXPORT_SYMBOL vmlinux 0x5e7c73d9 of_node_put +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5eb04a76 pci_find_hose_for_OF_device +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5eb81642 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x5ec1270b bh_submit_read +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5eddb914 lockref_put_return +EXPORT_SYMBOL vmlinux 0x5eec52a7 dev_mc_init +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f011021 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f108f9a generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x5f25c467 elv_rb_add +EXPORT_SYMBOL vmlinux 0x5f434c5d md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x5f656ea1 of_iomap +EXPORT_SYMBOL vmlinux 0x5f6dd871 override_creds +EXPORT_SYMBOL vmlinux 0x5f7671ed max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x5f8a2728 isa_io_base +EXPORT_SYMBOL vmlinux 0x5fd17294 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5fdb8e89 mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0x5fe8eec0 netlink_set_err +EXPORT_SYMBOL vmlinux 0x5ff47def vme_bus_num +EXPORT_SYMBOL vmlinux 0x5ffd391b inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x6009995b nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0x6019e527 send_sig_info +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x601fa24a tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x60351b2d mmc_align_data_size +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x604aa600 xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0x604f9d24 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x6074709a inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0x607515d8 of_n_size_cells +EXPORT_SYMBOL vmlinux 0x6075311b wireless_spy_update +EXPORT_SYMBOL vmlinux 0x6088127d __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x6093a67c dm_put_device +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a87f2d inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x60b4eaff csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x60b902ad generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x60c88b2e pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x60c8f0c3 sock_i_ino +EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x60e0b10e clear_user_page +EXPORT_SYMBOL vmlinux 0x60ea5081 reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0x6106234c cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x61229b10 node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x614bb773 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x61674bd2 rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x61a4487c _lv1_gpu_device_unmap +EXPORT_SYMBOL vmlinux 0x61a81964 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x61aee8b4 swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61bd875f tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x61bdba9b ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x61c78197 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x61da364b generic_start_io_acct +EXPORT_SYMBOL vmlinux 0x61dcdcd3 _lv1_pause +EXPORT_SYMBOL vmlinux 0x61dcf24a trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x61e477dc tcp_read_sock +EXPORT_SYMBOL vmlinux 0x61eef2c9 _insb +EXPORT_SYMBOL vmlinux 0x61ef6170 __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0x61f86f30 flush_dcache_page +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6215a4f2 generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x62223b52 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x623d03be request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x6242d0c4 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x6244d85e param_get_short +EXPORT_SYMBOL vmlinux 0x62538167 slhc_toss +EXPORT_SYMBOL vmlinux 0x6257589f mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0x6272591d iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x627b7f42 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x627f2dc7 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x62914cb4 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x6297c68d dma_pool_create +EXPORT_SYMBOL vmlinux 0x62a6542a blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0x62e14c41 dev_addr_del +EXPORT_SYMBOL vmlinux 0x6305bf8f nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x630e2c2e loop_register_transfer +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x631d09b8 phy_attach +EXPORT_SYMBOL vmlinux 0x63270a3b sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x63396aec __debugger_break_match +EXPORT_SYMBOL vmlinux 0x63453717 mutex_lock +EXPORT_SYMBOL vmlinux 0x635d75e1 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x6360d639 cpu_all_bits +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63b31cbb blk_put_queue +EXPORT_SYMBOL vmlinux 0x63bed626 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63c911ab scsi_scan_target +EXPORT_SYMBOL vmlinux 0x63d1555d put_filp +EXPORT_SYMBOL vmlinux 0x63d1b1f3 input_set_capability +EXPORT_SYMBOL vmlinux 0x63da1828 blk_delay_queue +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63f75920 _lv1_construct_virtual_address_space +EXPORT_SYMBOL vmlinux 0x63f8a239 qdisc_list_del +EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x64081f2d __sb_start_write +EXPORT_SYMBOL vmlinux 0x64088efb netif_rx +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x6419d062 netdev_alert +EXPORT_SYMBOL vmlinux 0x64291abf downgrade_write +EXPORT_SYMBOL vmlinux 0x6431934a dquot_commit_info +EXPORT_SYMBOL vmlinux 0x643fe4dc xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x64638b5c dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x646cc6ab pmu_poll +EXPORT_SYMBOL vmlinux 0x6477a453 should_remove_suid +EXPORT_SYMBOL vmlinux 0x6488b8de inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x648ef3e3 netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0x64901f72 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a9d7e7 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x64b98538 bio_copy_kern +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64c0ba07 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x64cb0a75 block_write_full_page +EXPORT_SYMBOL vmlinux 0x64f51e41 blk_end_request +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x653179d0 phy_suspend +EXPORT_SYMBOL vmlinux 0x65318863 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x65457bf4 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x655d9d4c sock_i_uid +EXPORT_SYMBOL vmlinux 0x65607cc4 of_match_node +EXPORT_SYMBOL vmlinux 0x6566c685 simple_lookup +EXPORT_SYMBOL vmlinux 0x656984c1 file_remove_privs +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x65797543 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x657ef054 lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0x659f0bb1 noop_qdisc +EXPORT_SYMBOL vmlinux 0x65aacbe6 registered_fb +EXPORT_SYMBOL vmlinux 0x65ab92ae xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x65bb58a2 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x65d1147c set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65db0fe5 i2c_use_client +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x660d1349 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x663ba06d tcp_sendpage +EXPORT_SYMBOL vmlinux 0x66531dea serio_interrupt +EXPORT_SYMBOL vmlinux 0x6657e2f7 get_agp_version +EXPORT_SYMBOL vmlinux 0x666edc22 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x66754be3 gen_new_estimator +EXPORT_SYMBOL vmlinux 0x668babf7 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x66ad1cb3 _lv1_set_lpm_general_control +EXPORT_SYMBOL vmlinux 0x66b33879 udp_proc_register +EXPORT_SYMBOL vmlinux 0x66c1808d mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x66c32742 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x66c4df9d param_set_short +EXPORT_SYMBOL vmlinux 0x66c5a620 dev_addr_add +EXPORT_SYMBOL vmlinux 0x66cbf14b pmac_xpram_write +EXPORT_SYMBOL vmlinux 0x66cfcd87 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x670f832d iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x672a69a8 bio_clone_bioset +EXPORT_SYMBOL vmlinux 0x672daf4d nf_log_trace +EXPORT_SYMBOL vmlinux 0x6737b685 dev_get_nest_level +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x67732bf9 mmc_get_card +EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create +EXPORT_SYMBOL vmlinux 0x6773e550 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x67946162 bio_chain +EXPORT_SYMBOL vmlinux 0x6795808a register_netdevice +EXPORT_SYMBOL vmlinux 0x67a55364 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x67a9cd2e __neigh_create +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67c8be9b of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x67ef0da6 phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x682160c1 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x682784bb dump_align +EXPORT_SYMBOL vmlinux 0x6834b245 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x683ae06d agp_backend_release +EXPORT_SYMBOL vmlinux 0x68559af0 dst_discard_out +EXPORT_SYMBOL vmlinux 0x685f7dd5 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x68609857 complete_and_exit +EXPORT_SYMBOL vmlinux 0x686841c3 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x686d47f6 sock_no_accept +EXPORT_SYMBOL vmlinux 0x68722a04 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x689269b8 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68b2040c init_net +EXPORT_SYMBOL vmlinux 0x68b7e35d inet_offloads +EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x68cb9723 msi_bitmap_free_hwirqs +EXPORT_SYMBOL vmlinux 0x68d65fc1 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x68dd885a find_vma +EXPORT_SYMBOL vmlinux 0x68e1ef51 smu_present +EXPORT_SYMBOL vmlinux 0x6921f066 vga_client_register +EXPORT_SYMBOL vmlinux 0x6968116e mmc_can_discard +EXPORT_SYMBOL vmlinux 0x696bb808 md_integrity_register +EXPORT_SYMBOL vmlinux 0x696d3e18 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6984d8d5 of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x699ccbf8 _lv1_deconfigure_virtual_uart_irq +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource +EXPORT_SYMBOL vmlinux 0x69aa4a2e vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x69abb748 elv_rb_del +EXPORT_SYMBOL vmlinux 0x69ac5f70 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69c67dde fd_install +EXPORT_SYMBOL vmlinux 0x69dfe448 init_task +EXPORT_SYMBOL vmlinux 0x69e6f134 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a0aa25f tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x6a0d7528 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x6a0e64f6 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x6a17955c d_find_any_alias +EXPORT_SYMBOL vmlinux 0x6a23bdb4 inode_permission +EXPORT_SYMBOL vmlinux 0x6a47dfef freeze_super +EXPORT_SYMBOL vmlinux 0x6a4bc20e user_revoke +EXPORT_SYMBOL vmlinux 0x6a50d1a3 dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6ab055c5 pci_pme_active +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b106617 d_genocide +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b358cab _lv1_read_repository_node +EXPORT_SYMBOL vmlinux 0x6b387694 _lv1_end_of_interrupt_ext +EXPORT_SYMBOL vmlinux 0x6b5094f7 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x6b589a6e _lv1_net_add_multicast_address +EXPORT_SYMBOL vmlinux 0x6b58c2f7 lock_sock_fast +EXPORT_SYMBOL vmlinux 0x6b5a778d xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x6b5dfe73 __debugger_bpt +EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6b66c889 fence_free +EXPORT_SYMBOL vmlinux 0x6b6f0c4b _lv1_create_repository_node +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bc431bf input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x6bc76d1c __put_cred +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6bf15d53 phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0x6bf436a8 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x6c0743d0 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer +EXPORT_SYMBOL vmlinux 0x6c1a2a2d cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x6c1d6141 kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x6c39bc61 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x6c3a1b26 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c628bfb msi_bitmap_alloc_hwirqs +EXPORT_SYMBOL vmlinux 0x6c6de77a icmp_send +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c9814b0 sk_common_release +EXPORT_SYMBOL vmlinux 0x6c9a7344 get_acl +EXPORT_SYMBOL vmlinux 0x6cadf19e mmc_can_erase +EXPORT_SYMBOL vmlinux 0x6cb37127 flex_array_clear +EXPORT_SYMBOL vmlinux 0x6cb98898 udplite_prot +EXPORT_SYMBOL vmlinux 0x6cd24fb8 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x6cd5b8a5 down_read_trylock +EXPORT_SYMBOL vmlinux 0x6cf31e97 user_path_create +EXPORT_SYMBOL vmlinux 0x6cfcc963 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d1743eb _lv1_get_total_execution_time +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d3aabb9 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x6d4af2fc seq_file_path +EXPORT_SYMBOL vmlinux 0x6d53aa07 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x6d58c417 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x6d5b7132 dev_err +EXPORT_SYMBOL vmlinux 0x6d651e2f inet6_offloads +EXPORT_SYMBOL vmlinux 0x6d740223 flex_array_put +EXPORT_SYMBOL vmlinux 0x6d79e3ce neigh_for_each +EXPORT_SYMBOL vmlinux 0x6d8adc8c simple_readpage +EXPORT_SYMBOL vmlinux 0x6d9cd32f input_set_abs_params +EXPORT_SYMBOL vmlinux 0x6da928f4 _insw_ns +EXPORT_SYMBOL vmlinux 0x6dbfd8fd skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x6dd36ee7 macio_unregister_driver +EXPORT_SYMBOL vmlinux 0x6dd43db8 dentry_open +EXPORT_SYMBOL vmlinux 0x6dd97e4b pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6df98c7e account_page_dirtied +EXPORT_SYMBOL vmlinux 0x6e08f71b unregister_console +EXPORT_SYMBOL vmlinux 0x6e0b43ff ilookup +EXPORT_SYMBOL vmlinux 0x6e0bfb31 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x6e0e7ad8 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x6e20a52f __destroy_inode +EXPORT_SYMBOL vmlinux 0x6e5887eb dev_uc_add +EXPORT_SYMBOL vmlinux 0x6e6374cf i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x6e71f640 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e7f0fd2 cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x6e905db3 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ee5ff09 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x6eebeb23 kernel_accept +EXPORT_SYMBOL vmlinux 0x6efc1086 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x6f10f476 udp_add_offload +EXPORT_SYMBOL vmlinux 0x6f15d576 phy_resume +EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash +EXPORT_SYMBOL vmlinux 0x6f2ab32a backlight_device_register +EXPORT_SYMBOL vmlinux 0x6f438bd5 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x6f7ba161 passthru_features_check +EXPORT_SYMBOL vmlinux 0x6f7f4499 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6f9ffbd7 macio_release_resource +EXPORT_SYMBOL vmlinux 0x6fa331ed _lv1_construct_io_irq_outlet +EXPORT_SYMBOL vmlinux 0x6fb83fd6 compat_mc_getsockopt +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fe834f7 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x6fee7a5a eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x7007ae95 kthread_bind +EXPORT_SYMBOL vmlinux 0x70130bcf seq_path +EXPORT_SYMBOL vmlinux 0x701699b2 _lv1_set_spe_privilege_state_area_1_register +EXPORT_SYMBOL vmlinux 0x702d0101 d_path +EXPORT_SYMBOL vmlinux 0x703cd214 tcp_destroy_cgroup +EXPORT_SYMBOL vmlinux 0x7044860d scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x706637a1 abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x706cfcd9 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x70d4bcbc simple_transaction_release +EXPORT_SYMBOL vmlinux 0x70f86c70 pmu_queue_request +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x7113ae63 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x713cd238 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x71593319 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x71601fd2 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x7168d07e key_link +EXPORT_SYMBOL vmlinux 0x716b7a16 reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0x716db2f9 i2c_release_client +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x718d4810 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x719fa2ef abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0x71a3d925 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71b60100 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x71b9ab03 __free_pages +EXPORT_SYMBOL vmlinux 0x71be607e dquot_resume +EXPORT_SYMBOL vmlinux 0x71e86b09 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x722d26c5 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x723f0617 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x725eb461 may_umount +EXPORT_SYMBOL vmlinux 0x7299bbfe xfrm_lookup +EXPORT_SYMBOL vmlinux 0x729b4a83 _lv1_get_spe_all_interrupt_statuses +EXPORT_SYMBOL vmlinux 0x72a17622 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72b36400 napi_consume_skb +EXPORT_SYMBOL vmlinux 0x72b6fa56 fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x72c98139 __arch_hweight64 +EXPORT_SYMBOL vmlinux 0x72e36850 nvm_submit_io +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72ecbb8e tty_lock +EXPORT_SYMBOL vmlinux 0x72fcf2bb __vio_register_driver +EXPORT_SYMBOL vmlinux 0x73096c02 iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0x73110fea pcim_iounmap +EXPORT_SYMBOL vmlinux 0x7312ddbb __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x731341be page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x7319baa9 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x731a747a pci_io_base +EXPORT_SYMBOL vmlinux 0x7331f225 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x734c3dc1 fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0x7357142b xfrm_state_add +EXPORT_SYMBOL vmlinux 0x735d8503 add_wait_queue +EXPORT_SYMBOL vmlinux 0x73710a3e dqstats +EXPORT_SYMBOL vmlinux 0x73bafd93 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x73be114e sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x73f34303 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x741b8c23 __scm_send +EXPORT_SYMBOL vmlinux 0x74475cb5 of_get_next_parent +EXPORT_SYMBOL vmlinux 0x744795cf tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x7459f9da led_update_brightness +EXPORT_SYMBOL vmlinux 0x745a21b2 bdget_disk +EXPORT_SYMBOL vmlinux 0x745c0699 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x7475aed8 nvm_put_blk +EXPORT_SYMBOL vmlinux 0x747c09d2 lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0x74849dbe __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x748bbf36 of_gpio_simple_xlate +EXPORT_SYMBOL vmlinux 0x7494c769 filemap_flush +EXPORT_SYMBOL vmlinux 0x749b636c n_tty_compat_ioctl_helper +EXPORT_SYMBOL vmlinux 0x74b35006 tcf_register_action +EXPORT_SYMBOL vmlinux 0x74bf0aa8 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c7680e __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x74d2b69b dquot_get_state +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74f08313 seq_putc +EXPORT_SYMBOL vmlinux 0x74fa4987 of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x74fe8730 sys_ctrler +EXPORT_SYMBOL vmlinux 0x7503b092 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x75179435 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x75208f60 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x7532588a alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x756c786e _lv1_connect_interrupt_event_receive_port +EXPORT_SYMBOL vmlinux 0x75754995 _lv1_storage_check_async_status +EXPORT_SYMBOL vmlinux 0x7583476f ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x75909951 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x75994700 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75be6702 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x75c9defe block_commit_write +EXPORT_SYMBOL vmlinux 0x75cb8fca posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x75e4f5aa pasemi_read_mac_reg +EXPORT_SYMBOL vmlinux 0x75e72d3b unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x75ee3078 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x75f92042 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x760c063a filemap_fdatawait +EXPORT_SYMBOL vmlinux 0x761f19b7 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x761f2d17 netpoll_setup +EXPORT_SYMBOL vmlinux 0x7645af6f sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764845ce blk_init_tags +EXPORT_SYMBOL vmlinux 0x764bd77c request_resource +EXPORT_SYMBOL vmlinux 0x764e2224 _lv1_disconnect_irq_plug_ext +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x76676739 pcibus_to_node +EXPORT_SYMBOL vmlinux 0x76763daa nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0x768988e4 simple_write_begin +EXPORT_SYMBOL vmlinux 0x76b7a92f phy_detach +EXPORT_SYMBOL vmlinux 0x76cb301e dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76e754b6 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x76f7cf53 serio_close +EXPORT_SYMBOL vmlinux 0x76ff3864 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x7709a9a3 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x77144936 _lv1_disconnect_irq_plug +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x771d14a0 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x772a7235 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x773506e8 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x77423eb3 __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x774716d3 dev_deactivate +EXPORT_SYMBOL vmlinux 0x7767ad48 kfree_skb +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x779fc135 neigh_table_init +EXPORT_SYMBOL vmlinux 0x77a9fbff scsi_device_resume +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77cdd9a3 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x77db10dc devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x77e12275 param_get_uint +EXPORT_SYMBOL vmlinux 0x7830b04f hvc_put_chars +EXPORT_SYMBOL vmlinux 0x7834a6e2 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x78403921 blk_run_queue +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x789a17f7 _lv1_destruct_logical_spe +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78a7cc20 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x78a8788f vme_slot_num +EXPORT_SYMBOL vmlinux 0x78a9e905 _numa_mem_ +EXPORT_SYMBOL vmlinux 0x78aec7d1 dquot_release +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78ede9b0 of_root +EXPORT_SYMBOL vmlinux 0x78f09a04 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x78fdebf3 generic_update_time +EXPORT_SYMBOL vmlinux 0x79504718 of_get_mac_address +EXPORT_SYMBOL vmlinux 0x79570b11 nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0x795bb0fd inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0x79667368 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x7968eb10 devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x797b391d devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0x798075ba delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x7985d043 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x79896403 netdev_info +EXPORT_SYMBOL vmlinux 0x799e2e43 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79d11bd7 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x79d9b944 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x79def19b netif_rx_ni +EXPORT_SYMBOL vmlinux 0x79e3c944 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x79e3ead7 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x7a2074a5 module_refcount +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a4a7541 generic_readlink +EXPORT_SYMBOL vmlinux 0x7a60a876 bdput +EXPORT_SYMBOL vmlinux 0x7a652a68 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x7a6cdedc do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a74b9e4 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aa9e259 _lv1_map_htab +EXPORT_SYMBOL vmlinux 0x7aac0a75 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x7ab6cf76 scsi_register +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7abaf2f1 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7adfa632 dev_load +EXPORT_SYMBOL vmlinux 0x7ae5a980 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x7b16235f hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b21166e srp_reconnect_rport +EXPORT_SYMBOL vmlinux 0x7b2267df xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x7b23bc3d sys_copyarea +EXPORT_SYMBOL vmlinux 0x7b27abe5 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x7b2aef6c __krealloc +EXPORT_SYMBOL vmlinux 0x7b3f9dee blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x7b4042c4 bioset_create +EXPORT_SYMBOL vmlinux 0x7b4a2b0f nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0x7b5b551e filp_open +EXPORT_SYMBOL vmlinux 0x7b625baf sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x7b6c364f redraw_screen +EXPORT_SYMBOL vmlinux 0x7b92504d tty_port_close_start +EXPORT_SYMBOL vmlinux 0x7bb756cc neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x7bccd113 param_get_invbool +EXPORT_SYMBOL vmlinux 0x7bd17155 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x7bf5cd96 netdev_notice +EXPORT_SYMBOL vmlinux 0x7c003aef _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x7c0850c5 led_blink_set +EXPORT_SYMBOL vmlinux 0x7c0cdf44 elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c18f90f blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x7c27156c rtas_online_cpus_mask +EXPORT_SYMBOL vmlinux 0x7c2d098f krealloc +EXPORT_SYMBOL vmlinux 0x7c3c3782 dev_notice +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c5b9428 devm_ioport_map +EXPORT_SYMBOL vmlinux 0x7c61340c __release_region +EXPORT_SYMBOL vmlinux 0x7c6d7fed register_sysctl +EXPORT_SYMBOL vmlinux 0x7c71ed4f nf_setsockopt +EXPORT_SYMBOL vmlinux 0x7c801a84 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x7c9291d1 csum_partial_copy_generic +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7ca291e3 file_update_time +EXPORT_SYMBOL vmlinux 0x7cad3b6a bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cb3ea85 mmc_detect_change +EXPORT_SYMBOL vmlinux 0x7cd08966 __serio_register_port +EXPORT_SYMBOL vmlinux 0x7cd148a5 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x7cdc5577 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7cec9060 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cfbca4d kernel_listen +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d63462a d_set_fallthru +EXPORT_SYMBOL vmlinux 0x7d6935c6 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d70dd83 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x7d82fa90 pnv_pci_get_gpu_dev +EXPORT_SYMBOL vmlinux 0x7d8fac17 param_ops_long +EXPORT_SYMBOL vmlinux 0x7db5d4a4 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x7dc97879 rtas_get_error_log_max +EXPORT_SYMBOL vmlinux 0x7dcdd1d4 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x7dddcb08 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e0f1ab5 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x7e1a0c26 locks_init_lock +EXPORT_SYMBOL vmlinux 0x7e27f201 touch_buffer +EXPORT_SYMBOL vmlinux 0x7e36c6fe bio_split +EXPORT_SYMBOL vmlinux 0x7e4a57b6 unregister_netdev +EXPORT_SYMBOL vmlinux 0x7e5a8d76 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x7e67932e bio_uncopy_user +EXPORT_SYMBOL vmlinux 0x7e80addf of_parse_phandle +EXPORT_SYMBOL vmlinux 0x7e87227e slhc_compress +EXPORT_SYMBOL vmlinux 0x7e9b9c83 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7eea227e i8042_install_filter +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f0ff0c3 bdi_register +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f263ed9 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x7f2cda5b free_page_put_link +EXPORT_SYMBOL vmlinux 0x7f31d172 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x7f4308c8 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x7f5a3350 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x7f5c8ba1 fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f820feb do_SAK +EXPORT_SYMBOL vmlinux 0x7f8a13a0 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x7f9d3482 udp_poll +EXPORT_SYMBOL vmlinux 0x7fa5078d __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x7fae581a tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x7fbd10d2 radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fe38f48 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x7fe9a060 _lv1_net_stop_tx_dma +EXPORT_SYMBOL vmlinux 0x7feaace7 finish_no_open +EXPORT_SYMBOL vmlinux 0x800bf42e sk_mc_loop +EXPORT_SYMBOL vmlinux 0x8014da99 mount_nodev +EXPORT_SYMBOL vmlinux 0x8028b1fe generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x80318626 netdev_features_change +EXPORT_SYMBOL vmlinux 0x8060e132 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x8068c15c kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x80791a8c radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0x808461cb generic_write_checks +EXPORT_SYMBOL vmlinux 0x8085f204 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x809590e9 clear_inode +EXPORT_SYMBOL vmlinux 0x8096e3ae dev_warn +EXPORT_SYMBOL vmlinux 0x80a97436 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x80b38a3a audit_log_start +EXPORT_SYMBOL vmlinux 0x80c2a396 blk_free_tags +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80cf5c66 consume_skb +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x8104ca52 padata_stop +EXPORT_SYMBOL vmlinux 0x8109deb7 make_bad_inode +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x8188f65d flow_cache_fini +EXPORT_SYMBOL vmlinux 0x81a07f4e _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x81afbe92 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x81c0a84f rtas_set_indicator +EXPORT_SYMBOL vmlinux 0x81c8ab09 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x81d9f7f2 _lv1_put_iopte +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81f64cfb pci_reenable_device +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x8225bebd nobh_writepage +EXPORT_SYMBOL vmlinux 0x822c5a8c fence_add_callback +EXPORT_SYMBOL vmlinux 0x82458f7f radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x82472906 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x825b3f96 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x8265e6ec pci_scan_slot +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x8271c16d tty_port_open +EXPORT_SYMBOL vmlinux 0x82753253 param_set_ullong +EXPORT_SYMBOL vmlinux 0x827790ba netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x828b2fb6 of_dev_put +EXPORT_SYMBOL vmlinux 0x829b0311 tcp_prequeue +EXPORT_SYMBOL vmlinux 0x829e5b2f agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0x82a3c474 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82d3face empty_aops +EXPORT_SYMBOL vmlinux 0x82dec7c4 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x82e5a238 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x8321d68c xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x8327bfe0 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x832c02ac ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x83433de8 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x8352c826 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x838c9a76 vme_lm_request +EXPORT_SYMBOL vmlinux 0x838d2080 sg_miter_start +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x839abdbd rtnl_unicast +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83b5fec4 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83cd7a26 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x83dd30d2 flow_cache_lookup +EXPORT_SYMBOL vmlinux 0x83e34488 audit_log_task_info +EXPORT_SYMBOL vmlinux 0x83e59652 revert_creds +EXPORT_SYMBOL vmlinux 0x83e82802 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x83ea8d6f tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x84201bbf end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x844e3767 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x845055ba ps3_dma_region_free +EXPORT_SYMBOL vmlinux 0x845124e0 ps3_mm_phys_to_lpar +EXPORT_SYMBOL vmlinux 0x845d918a mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0x848f4033 vfs_llseek +EXPORT_SYMBOL vmlinux 0x849fe807 csum_and_copy_from_user +EXPORT_SYMBOL vmlinux 0x84a723d8 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x84bd69bf dq_data_lock +EXPORT_SYMBOL vmlinux 0x84bee69b xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x84c67545 d_delete +EXPORT_SYMBOL vmlinux 0x84e388e6 __get_user_pages +EXPORT_SYMBOL vmlinux 0x84f7065b dma_direct_ops +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x853a37da pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x853a6f9b pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0x8546b4f3 mach_ps3 +EXPORT_SYMBOL vmlinux 0x854e93bc __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x85511044 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x8553b204 fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0x855bcc91 of_node_get +EXPORT_SYMBOL vmlinux 0x855fd054 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x856355ff ppp_input_error +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x85748feb mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x8574f5e6 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x85838547 pid_task +EXPORT_SYMBOL vmlinux 0x85885ff8 simple_fill_super +EXPORT_SYMBOL vmlinux 0x8597eb47 plpar_hcall +EXPORT_SYMBOL vmlinux 0x85990709 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x859ab2c7 __mdiobus_register +EXPORT_SYMBOL vmlinux 0x85a6fc27 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x85ae6052 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85c26dfe tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x85c99191 compat_nf_setsockopt +EXPORT_SYMBOL vmlinux 0x85cb1dcb of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x85dddaf7 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e73892 uart_register_driver +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x860ce829 tty_kref_put +EXPORT_SYMBOL vmlinux 0x860f769e keyring_search +EXPORT_SYMBOL vmlinux 0x8614955d arp_create +EXPORT_SYMBOL vmlinux 0x8615cdd8 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x863b0c38 param_ops_bint +EXPORT_SYMBOL vmlinux 0x863e66e2 tty_vhangup +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x865504e9 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x865a722c of_platform_device_create +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86944892 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86c10670 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x86c5e1b5 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x86c7ac40 tty_register_device +EXPORT_SYMBOL vmlinux 0x86db1cbb rtas_flash_term_hook +EXPORT_SYMBOL vmlinux 0x86e8b3f2 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x87022389 __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0x8703e88a of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0x87082d3d zero_fill_bio +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x871e1370 poll_freewait +EXPORT_SYMBOL vmlinux 0x8727a853 from_kgid +EXPORT_SYMBOL vmlinux 0x872f2708 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x87331e67 make_kuid +EXPORT_SYMBOL vmlinux 0x873a53ea __arch_hweight8 +EXPORT_SYMBOL vmlinux 0x875fa1f4 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x87742aeb dquot_quota_off +EXPORT_SYMBOL vmlinux 0x8775477b inet_sendmsg +EXPORT_SYMBOL vmlinux 0x87831719 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x87ad88c6 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x87c22979 napi_complete_done +EXPORT_SYMBOL vmlinux 0x87cf39e2 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x87eec2df mdiobus_free +EXPORT_SYMBOL vmlinux 0x87f3af98 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x8808d506 request_key_async +EXPORT_SYMBOL vmlinux 0x880996ef __sb_end_write +EXPORT_SYMBOL vmlinux 0x880da1b1 _lv1_get_logical_partition_id +EXPORT_SYMBOL vmlinux 0x882a5e01 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x882c34d9 inet_addr_type +EXPORT_SYMBOL vmlinux 0x882db37f neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x884ab856 set_binfmt +EXPORT_SYMBOL vmlinux 0x8852091f sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x885c47b2 is_bad_inode +EXPORT_SYMBOL vmlinux 0x887fa47e __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x888aabeb padata_remove_cpu +EXPORT_SYMBOL vmlinux 0x88ac0de4 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x890fa97d mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x8916d59b __elv_add_request +EXPORT_SYMBOL vmlinux 0x891fbb10 mempool_destroy +EXPORT_SYMBOL vmlinux 0x892de3fb __nla_put +EXPORT_SYMBOL vmlinux 0x893eda4d skb_queue_head +EXPORT_SYMBOL vmlinux 0x895108f3 proc_dostring +EXPORT_SYMBOL vmlinux 0x895577b0 numa_cpu_lookup_table +EXPORT_SYMBOL vmlinux 0x8961575f xfrm_register_km +EXPORT_SYMBOL vmlinux 0x8963d697 from_kprojid +EXPORT_SYMBOL vmlinux 0x896bd385 inet6_ioctl +EXPORT_SYMBOL vmlinux 0x897097aa sock_sendmsg +EXPORT_SYMBOL vmlinux 0x89797060 _raw_read_lock +EXPORT_SYMBOL vmlinux 0x897af480 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x899e0b16 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89ba14d8 blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0x89c5a8be smu_get_sdb_partition +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89e31dd4 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x89eeb633 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x89f37999 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a24362c twl6040_power +EXPORT_SYMBOL vmlinux 0x8a2462f2 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a5c83f8 scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0x8a6ae547 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x8a749f16 param_set_invbool +EXPORT_SYMBOL vmlinux 0x8a772e2c alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a7d98ef qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x8a97f094 __quota_error +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8a9cef2a _lv1_allocate_device_dma_region +EXPORT_SYMBOL vmlinux 0x8aa5b2f0 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x8ac0385e of_phy_connect +EXPORT_SYMBOL vmlinux 0x8adfc954 swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x8af12274 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x8af24c74 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x8af39578 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x8b037a76 nd_iostat_end +EXPORT_SYMBOL vmlinux 0x8b23dc26 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x8b2dd5f8 submit_bio +EXPORT_SYMBOL vmlinux 0x8b3528bd get_task_exe_file +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b505f80 sock_wake_async +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b8f7c37 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x8ba732e5 sock_no_connect +EXPORT_SYMBOL vmlinux 0x8bbd30ef netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x8bd7efa0 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x8bf2ae1f fsl_lbc_addr +EXPORT_SYMBOL vmlinux 0x8c098234 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x8c15653f mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c2008f9 try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x8c5a6ec1 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c72dfae vfs_write +EXPORT_SYMBOL vmlinux 0x8c82f6c7 seq_release +EXPORT_SYMBOL vmlinux 0x8c8d79c0 _lv1_gpu_context_iomap +EXPORT_SYMBOL vmlinux 0x8cad3dfb lease_modify +EXPORT_SYMBOL vmlinux 0x8cb18152 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x8cbd122d scsi_register_interface +EXPORT_SYMBOL vmlinux 0x8cbdef66 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8ccb58dd xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x8d015dd4 __bswapdi2 +EXPORT_SYMBOL vmlinux 0x8d0db923 i2c_master_send +EXPORT_SYMBOL vmlinux 0x8d4eb8f9 blk_register_region +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d5e9ad2 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d777777 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x8d82e0c0 dentry_unhash +EXPORT_SYMBOL vmlinux 0x8d944cbb copy_in_user +EXPORT_SYMBOL vmlinux 0x8da1141d tty_unlock +EXPORT_SYMBOL vmlinux 0x8dadcc6a gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x8de0b5ac mempool_create +EXPORT_SYMBOL vmlinux 0x8de2fbc5 _lv1_get_virtual_uart_param +EXPORT_SYMBOL vmlinux 0x8deff77e __dquot_free_space +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8e006599 pci_enable_msix +EXPORT_SYMBOL vmlinux 0x8e1a58ac eth_change_mtu +EXPORT_SYMBOL vmlinux 0x8e21b92c __register_chrdev +EXPORT_SYMBOL vmlinux 0x8e2c1ed3 paca +EXPORT_SYMBOL vmlinux 0x8e5105ee __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x8e5f7cca ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x8e67f119 path_put +EXPORT_SYMBOL vmlinux 0x8e6f97fc dev_emerg +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e9496f2 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x8ea98ae9 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x8eb5de7f mpage_writepages +EXPORT_SYMBOL vmlinux 0x8ec04552 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x8ecc1db4 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x8eea1bc9 smu_poll +EXPORT_SYMBOL vmlinux 0x8ef1e665 dquot_file_open +EXPORT_SYMBOL vmlinux 0x8ef6c177 agp_bridge +EXPORT_SYMBOL vmlinux 0x8f0f2460 follow_pfn +EXPORT_SYMBOL vmlinux 0x8f1360fa finish_open +EXPORT_SYMBOL vmlinux 0x8f337e99 input_flush_device +EXPORT_SYMBOL vmlinux 0x8f34ed76 skb_trim +EXPORT_SYMBOL vmlinux 0x8f55792c udp6_csum_init +EXPORT_SYMBOL vmlinux 0x8f80eb8c ps3_dma_region_init +EXPORT_SYMBOL vmlinux 0x8f80fe0a agp_enable +EXPORT_SYMBOL vmlinux 0x8f8587ff udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x8f85f835 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x8f8a3831 request_key +EXPORT_SYMBOL vmlinux 0x8f912773 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x8f960065 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x8fa54745 __lock_page +EXPORT_SYMBOL vmlinux 0x8fc15bf6 iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0x8fcdf83a generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x8fdbc882 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x9010ce1d inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0x9017f093 simple_unlink +EXPORT_SYMBOL vmlinux 0x9023a30a __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x903928f6 d_tmpfile +EXPORT_SYMBOL vmlinux 0x9049a0a1 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x905cb899 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x90630bf2 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x907cb552 prepare_binprm +EXPORT_SYMBOL vmlinux 0x90b7bac8 uart_suspend_port +EXPORT_SYMBOL vmlinux 0x90e20413 set_security_override +EXPORT_SYMBOL vmlinux 0x90fb59b0 napi_get_frags +EXPORT_SYMBOL vmlinux 0x910a7ab8 compat_sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x9114f61d iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x911df0ce scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x91201cef _lv1_enable_logical_spe +EXPORT_SYMBOL vmlinux 0x912557ce rtas_busy_delay +EXPORT_SYMBOL vmlinux 0x9125f6fc filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x9126a027 ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x915e1208 tb_ticks_per_usec +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x9168c033 rtas_get_sensor +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x9172eaa3 eth_header +EXPORT_SYMBOL vmlinux 0x9186ce96 giveup_altivec +EXPORT_SYMBOL vmlinux 0x919d1163 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x91ac6ac9 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x91ac822f vscnprintf +EXPORT_SYMBOL vmlinux 0x91c4feca _lv1_unmap_htab +EXPORT_SYMBOL vmlinux 0x91cd0a0e vm_mmap +EXPORT_SYMBOL vmlinux 0x91e7acf5 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x91ef96d2 cdev_init +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x91fd6d28 set_user_nice +EXPORT_SYMBOL vmlinux 0x92037823 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x92166a3b notify_change +EXPORT_SYMBOL vmlinux 0x921c90a1 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x9236da4b mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x9264d948 nd_device_register +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x929535ea srp_rport_get +EXPORT_SYMBOL vmlinux 0x929feedb serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm +EXPORT_SYMBOL vmlinux 0x92ad008a generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x92b6d238 qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x92c39a51 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x92e0a8ce __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x92e96f98 pci_iomap +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x9315a638 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x931d3717 unregister_nls +EXPORT_SYMBOL vmlinux 0x9334acaf scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x93507f1c _lv1_gpu_memory_allocate +EXPORT_SYMBOL vmlinux 0x9354fcde ibmebus_free_irq +EXPORT_SYMBOL vmlinux 0x935df2f3 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x9375e806 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x9378dbe4 d_add_ci +EXPORT_SYMBOL vmlinux 0x937e0bd3 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x938b615f brioctl_set +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93c5b84b generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0x93d047e3 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x93da2538 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x9421b35a mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x943dc80f csum_and_copy_to_user +EXPORT_SYMBOL vmlinux 0x943f556d dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x943f8243 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x944a5e11 param_ops_byte +EXPORT_SYMBOL vmlinux 0x94541aa3 __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0x9458a81a tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x946f78b5 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x94766d83 seq_open_private +EXPORT_SYMBOL vmlinux 0x948a3233 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x949bb98d of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x94a99802 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x94b362c5 generic_writepages +EXPORT_SYMBOL vmlinux 0x94c0b461 keyring_alloc +EXPORT_SYMBOL vmlinux 0x94e643d5 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x94fc9bf3 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x9514151a _mcount +EXPORT_SYMBOL vmlinux 0x9524b0ae _outsb +EXPORT_SYMBOL vmlinux 0x952d4e32 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x95347c8d lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x955ad71a macio_enable_devres +EXPORT_SYMBOL vmlinux 0x955dbb6b srp_start_tl_fail_timers +EXPORT_SYMBOL vmlinux 0x95798a71 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x958eb634 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x95a9bb83 lwtunnel_output +EXPORT_SYMBOL vmlinux 0x95b17acb get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x95c17ded param_get_ushort +EXPORT_SYMBOL vmlinux 0x95c7dded agp_backend_acquire +EXPORT_SYMBOL vmlinux 0x95e4afff inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x95fe2c87 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x95ff4280 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x96034e73 __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x96069281 security_path_chown +EXPORT_SYMBOL vmlinux 0x960a93e6 __break_lease +EXPORT_SYMBOL vmlinux 0x962ff622 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x963c100b inet_frag_find +EXPORT_SYMBOL vmlinux 0x963dba7f phy_print_status +EXPORT_SYMBOL vmlinux 0x9651f8f2 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x96749db5 security_path_truncate +EXPORT_SYMBOL vmlinux 0x96927e2b ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x969987fc lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x96b01af3 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96b9e720 security_path_unlink +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d117cc mmc_start_req +EXPORT_SYMBOL vmlinux 0x96ebeee1 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x96f225c4 inode_init_always +EXPORT_SYMBOL vmlinux 0x970e5678 set_groups +EXPORT_SYMBOL vmlinux 0x9748927f _outsw_ns +EXPORT_SYMBOL vmlinux 0x974e2026 dump_truncate +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x975dd319 nf_reinject +EXPORT_SYMBOL vmlinux 0x9761e887 of_get_parent +EXPORT_SYMBOL vmlinux 0x9764ad20 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x976e014f _lv1_map_device_mmio_region +EXPORT_SYMBOL vmlinux 0x97868aef __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x978f79fc md_write_start +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x979e597e netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x97a189d4 input_get_keycode +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97afba7b proc_douintvec +EXPORT_SYMBOL vmlinux 0x97ba1af0 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x97c57de5 __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0x97da910a posix_lock_file +EXPORT_SYMBOL vmlinux 0x97f03d6f vio_cmo_entitlement_update +EXPORT_SYMBOL vmlinux 0x97f2861a neigh_event_ns +EXPORT_SYMBOL vmlinux 0x97f7a8f2 invalidate_partition +EXPORT_SYMBOL vmlinux 0x980a71ff pci_disable_msi +EXPORT_SYMBOL vmlinux 0x98177648 _lv1_set_lpm_interval +EXPORT_SYMBOL vmlinux 0x981b1cf7 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x981b2148 md_cluster_mod +EXPORT_SYMBOL vmlinux 0x9821221f mmc_fixup_device +EXPORT_SYMBOL vmlinux 0x98268bde unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x9858d33c seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x9864d4b3 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x9875323e phy_register_fixup +EXPORT_SYMBOL vmlinux 0x987fc124 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x98994f9f simple_follow_link +EXPORT_SYMBOL vmlinux 0x98ac01da km_report +EXPORT_SYMBOL vmlinux 0x98c68c41 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x98cadac3 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen +EXPORT_SYMBOL vmlinux 0x98d49011 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x98d71777 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x98ddd441 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x98efef5b __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x99022246 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x99195078 vsnprintf +EXPORT_SYMBOL vmlinux 0x9924c3ae swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x9944bb01 pci_clear_master +EXPORT_SYMBOL vmlinux 0x994cd0a4 skb_find_text +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x995e0cb1 filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0x996de261 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x99777049 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x99833a29 iterate_mounts +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a4fb37 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x99afe916 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x99b25e60 blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0x99b3adaa sock_setsockopt +EXPORT_SYMBOL vmlinux 0x99c24cfe _lv1_free_device_dma_region +EXPORT_SYMBOL vmlinux 0x99ca6f4e __mutex_init +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x99d3a43c dm_table_get_size +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99ed10ff of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0x9a0570e8 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a1ffb92 _lv1_clear_spe_interrupt_status +EXPORT_SYMBOL vmlinux 0x9a4af8b4 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x9a564b47 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x9a591b75 fasync_helper +EXPORT_SYMBOL vmlinux 0x9a5ce77e datagram_poll +EXPORT_SYMBOL vmlinux 0x9a6c2531 pasemi_dma_init +EXPORT_SYMBOL vmlinux 0x9a78fb28 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x9aa557ab sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x9ae12329 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9aedcbb6 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x9b247fac of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x9b30d095 inode_init_owner +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b600d7a __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x9b636660 pci_select_bars +EXPORT_SYMBOL vmlinux 0x9b66c471 security_path_symlink +EXPORT_SYMBOL vmlinux 0x9b753ad8 devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0x9b7e85a6 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0x9b976e45 swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9bad267d pci_request_regions +EXPORT_SYMBOL vmlinux 0x9bbfe3f2 fs_bio_set +EXPORT_SYMBOL vmlinux 0x9bca9a61 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x9bd343d2 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x9bdfdc7a mach_pseries +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9bef9e45 bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x9c046bd6 alloc_disk +EXPORT_SYMBOL vmlinux 0x9c191089 input_unregister_device +EXPORT_SYMBOL vmlinux 0x9c36670f skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c702f96 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x9c8a1990 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x9c938359 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x9c93d2c6 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cb704cf register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x9cb7909b blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x9cc49df8 pnv_cxl_alloc_hwirqs +EXPORT_SYMBOL vmlinux 0x9cd25b49 skb_checksum +EXPORT_SYMBOL vmlinux 0x9cf05bd8 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x9cf5bd23 key_revoke +EXPORT_SYMBOL vmlinux 0x9d062c05 validate_sp +EXPORT_SYMBOL vmlinux 0x9d07c881 single_release +EXPORT_SYMBOL vmlinux 0x9d09f248 rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d14983a ppc_enable_pmcs +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d45958b default_llseek +EXPORT_SYMBOL vmlinux 0x9d4a880e block_read_full_page +EXPORT_SYMBOL vmlinux 0x9d4ef46d thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x9d61d209 __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x9d6a54c2 flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0x9d7ce8dd _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x9d83a783 kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0x9d9dfc18 load_fp_state +EXPORT_SYMBOL vmlinux 0x9da05e10 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x9da5ef4c jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0x9daa0680 mach_pasemi +EXPORT_SYMBOL vmlinux 0x9db704c0 phy_start_interrupts +EXPORT_SYMBOL vmlinux 0x9dc7c632 register_gifconf +EXPORT_SYMBOL vmlinux 0x9dfe6b69 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e18f49e simple_statfs +EXPORT_SYMBOL vmlinux 0x9e2f8c90 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9e3c76ca kernel_param_lock +EXPORT_SYMBOL vmlinux 0x9e4d5f7c d_rehash +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e5cc5e5 compat_sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x9e5f58c0 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e672d5a dst_alloc +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e784785 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x9e8ebcdd pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x9e97375d rtas_busy_delay_time +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9eb17ac0 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x9eb739bc genphy_update_link +EXPORT_SYMBOL vmlinux 0x9ebb0a4b inode_set_flags +EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource +EXPORT_SYMBOL vmlinux 0x9eda3327 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x9ee78669 _lv1_write_virtual_uart +EXPORT_SYMBOL vmlinux 0x9eeb0175 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x9eecf56f jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x9ef3f5b9 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x9f0c04dc security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x9f2e2fd1 tty_set_operations +EXPORT_SYMBOL vmlinux 0x9f301d46 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x9f353f79 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x9f3c36ed security_path_link +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f4a5652 vme_irq_free +EXPORT_SYMBOL vmlinux 0x9f7c1be8 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x9f8e3632 soft_cursor +EXPORT_SYMBOL vmlinux 0x9f911629 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x9f928fb2 kset_register +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fe1ebcf udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x9febbbc2 dev_alert +EXPORT_SYMBOL vmlinux 0x9ff900e8 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa000a98c d_instantiate_unique +EXPORT_SYMBOL vmlinux 0xa03858a4 kern_path_create +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa060adfd inet_sendpage +EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa0ac23ce mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0e9d4b0 seq_open +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa0ff74d6 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa1101b87 pci_bus_put +EXPORT_SYMBOL vmlinux 0xa118ab70 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xa11a6a1d skb_checksum_setup +EXPORT_SYMBOL vmlinux 0xa120bc22 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa127d7f2 mach_powermac +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa145cd30 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0xa1472288 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xa156895d phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xa16d303e ilookup5 +EXPORT_SYMBOL vmlinux 0xa175801a dm_io +EXPORT_SYMBOL vmlinux 0xa17c00ee __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xa18f1c64 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0xa19661a6 dcb_getapp +EXPORT_SYMBOL vmlinux 0xa19d74f8 devm_ioremap +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1bfe947 dump_skip +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1c99385 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xa1ce47e3 blk_fetch_request +EXPORT_SYMBOL vmlinux 0xa1d279a5 nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1f35827 mmc_can_reset +EXPORT_SYMBOL vmlinux 0xa1f8fe75 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xa202a8e5 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa20cd38f __frontswap_load +EXPORT_SYMBOL vmlinux 0xa2127cdc pasemi_dma_alloc_flag +EXPORT_SYMBOL vmlinux 0xa23125ab seq_escape +EXPORT_SYMBOL vmlinux 0xa232b795 sock_no_poll +EXPORT_SYMBOL vmlinux 0xa2465322 _lv1_get_version_info +EXPORT_SYMBOL vmlinux 0xa271a084 dst_init +EXPORT_SYMBOL vmlinux 0xa2722a96 vc_resize +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa296c828 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xa2a335bd vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0xa2bbed37 crash_shutdown_register +EXPORT_SYMBOL vmlinux 0xa2cc1fbf dquot_acquire +EXPORT_SYMBOL vmlinux 0xa2e691f6 param_get_bool +EXPORT_SYMBOL vmlinux 0xa2ee5243 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0xa2f9f4fe md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0xa2fdbcbe fence_default_wait +EXPORT_SYMBOL vmlinux 0xa303d1ff dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa353046c kernel_getsockname +EXPORT_SYMBOL vmlinux 0xa3740273 vme_irq_handler +EXPORT_SYMBOL vmlinux 0xa3979ce8 ppc_md +EXPORT_SYMBOL vmlinux 0xa39b4cf2 udelay +EXPORT_SYMBOL vmlinux 0xa3abc422 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xa3ccc54f get_fs_type +EXPORT_SYMBOL vmlinux 0xa3d6e5b8 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xa3da08e0 of_get_min_tck +EXPORT_SYMBOL vmlinux 0xa3dfe787 abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xa3fb5856 nf_log_unset +EXPORT_SYMBOL vmlinux 0xa4186fde invalidate_bdev +EXPORT_SYMBOL vmlinux 0xa41b66ab serio_open +EXPORT_SYMBOL vmlinux 0xa429b1eb mount_ns +EXPORT_SYMBOL vmlinux 0xa4511467 crc16 +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa47b0048 dev_uc_init +EXPORT_SYMBOL vmlinux 0xa480c04b _lv1_gpu_context_attribute +EXPORT_SYMBOL vmlinux 0xa4a94d26 find_next_bit_le +EXPORT_SYMBOL vmlinux 0xa4b7cf43 set_nlink +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4bddf6b scsi_print_command +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa523767d register_netdev +EXPORT_SYMBOL vmlinux 0xa54f47be key_task_permission +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa55c6830 register_sysctl_table +EXPORT_SYMBOL vmlinux 0xa566be2e ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xa56b8ab2 flex_array_free +EXPORT_SYMBOL vmlinux 0xa57701a3 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0xa57f56ae iget_failed +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa5a51eee __crc32c_le +EXPORT_SYMBOL vmlinux 0xa5b1bb69 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xa6152ee4 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xa6268968 inode_set_bytes +EXPORT_SYMBOL vmlinux 0xa63322c6 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xa648fed2 pcim_pin_device +EXPORT_SYMBOL vmlinux 0xa65972b8 _memcpy_toio +EXPORT_SYMBOL vmlinux 0xa65b3723 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xa672446e jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa67d3d6a agp_free_memory +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa692cb5e of_get_property +EXPORT_SYMBOL vmlinux 0xa69e1af1 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xa6b44640 of_translate_address +EXPORT_SYMBOL vmlinux 0xa6b9e1ca cdrom_release +EXPORT_SYMBOL vmlinux 0xa6c16c1b security_path_chmod +EXPORT_SYMBOL vmlinux 0xa6ca8ac6 arp_send +EXPORT_SYMBOL vmlinux 0xa6ce472f cpu_rmap_update +EXPORT_SYMBOL vmlinux 0xa6e23e98 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0xa6f07f1c decrementer_clockevent +EXPORT_SYMBOL vmlinux 0xa6f6d7d1 iov_iter_advance +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa7013b33 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xa71ba503 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0xa720678c lg_global_lock +EXPORT_SYMBOL vmlinux 0xa72a0f5b nr_online_nodes +EXPORT_SYMBOL vmlinux 0xa72e52cb __bio_clone_fast +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa73eddb6 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xa74281a8 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0xa74d435e truncate_pagecache +EXPORT_SYMBOL vmlinux 0xa74f4e9b ida_simple_get +EXPORT_SYMBOL vmlinux 0xa75e30b0 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0xa763167c rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0xa7713dbe pagecache_write_begin +EXPORT_SYMBOL vmlinux 0xa7733e18 tcf_hash_search +EXPORT_SYMBOL vmlinux 0xa777bbb9 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xa7780c69 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xa7849df9 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xa78d9eb7 slhc_uncompress +EXPORT_SYMBOL vmlinux 0xa79d015a ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xa79fa724 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xa7c050a3 bdgrab +EXPORT_SYMBOL vmlinux 0xa7d3c67c __frontswap_store +EXPORT_SYMBOL vmlinux 0xa7e3062e bd_set_size +EXPORT_SYMBOL vmlinux 0xa7e37463 unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0xa80cd111 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xa80eb69f km_is_alive +EXPORT_SYMBOL vmlinux 0xa8135161 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0xa82c1018 lookup_one_len +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa8443cec d_walk +EXPORT_SYMBOL vmlinux 0xa84c19c8 dquot_initialize +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa8a9e652 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xa8b46e4b blkdev_get +EXPORT_SYMBOL vmlinux 0xa8ced546 _lv1_net_set_interrupt_status_indicator +EXPORT_SYMBOL vmlinux 0xa8d13d65 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xa8dd4ee7 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa904562c security_mmap_file +EXPORT_SYMBOL vmlinux 0xa9158546 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa91c77b6 _lv1_end_of_interrupt +EXPORT_SYMBOL vmlinux 0xa91d90d3 nla_put +EXPORT_SYMBOL vmlinux 0xa9220a25 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xa9273e1a epapr_hypercall_start +EXPORT_SYMBOL vmlinux 0xa93ba88e proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xa94dcf19 pneigh_lookup +EXPORT_SYMBOL vmlinux 0xa9602693 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xa9739327 of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes +EXPORT_SYMBOL vmlinux 0xa9a40a06 wait_iff_congested +EXPORT_SYMBOL vmlinux 0xa9b079c7 pci_disable_msix +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9e0d3d6 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0xaa0edca8 pasemi_dma_alloc_fun +EXPORT_SYMBOL vmlinux 0xaa46e87e lg_local_unlock +EXPORT_SYMBOL vmlinux 0xaa4f0d2b pci_platform_rom +EXPORT_SYMBOL vmlinux 0xaa66d4d6 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xaa67d40a sock_create_kern +EXPORT_SYMBOL vmlinux 0xaa6e4df5 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa909b14 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0xaac2bca1 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xaac413e8 input_close_device +EXPORT_SYMBOL vmlinux 0xaac6e3c6 bitmap_end_sync +EXPORT_SYMBOL vmlinux 0xaacd8981 generic_permission +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab01426a xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0xab192652 inet_add_offload +EXPORT_SYMBOL vmlinux 0xab1c7c38 tcp_init_cgroup +EXPORT_SYMBOL vmlinux 0xab1f74d3 freeze_bdev +EXPORT_SYMBOL vmlinux 0xab228e31 csum_tcpudp_magic +EXPORT_SYMBOL vmlinux 0xab2e47c0 rwsem_wake +EXPORT_SYMBOL vmlinux 0xab2e869b posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0xab38d22a sock_alloc_file +EXPORT_SYMBOL vmlinux 0xab66f611 _lv1_set_lpm_trigger_control +EXPORT_SYMBOL vmlinux 0xab69c75b tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab84a841 sock_update_memcg +EXPORT_SYMBOL vmlinux 0xab86fa11 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xab8cb6a6 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0xabb3c18b vme_bus_type +EXPORT_SYMBOL vmlinux 0xabc06917 blk_recount_segments +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabcc2e39 fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0xabe14eae copy_page_from_iter +EXPORT_SYMBOL vmlinux 0xabf0a117 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac22531c elevator_init +EXPORT_SYMBOL vmlinux 0xac26b820 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xac2b0571 nf_register_hooks +EXPORT_SYMBOL vmlinux 0xac34596b path_get +EXPORT_SYMBOL vmlinux 0xac3849e5 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xac53e894 rtnl_notify +EXPORT_SYMBOL vmlinux 0xac5b774f tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xac688919 blk_make_request +EXPORT_SYMBOL vmlinux 0xac72f423 param_array_ops +EXPORT_SYMBOL vmlinux 0xac7cb480 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xac84e9e1 inet_add_protocol +EXPORT_SYMBOL vmlinux 0xac972186 to_nd_btt +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacc5b5d2 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacd14ab8 _lv1_construct_logical_spe +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacf26bcc cfb_fillrect +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xad01744f kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad0a3c73 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xad164875 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xad1b1524 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xad2af0c8 gen_pool_free +EXPORT_SYMBOL vmlinux 0xad4690fe blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xad4f7da8 __brelse +EXPORT_SYMBOL vmlinux 0xad50cebb i8253_lock +EXPORT_SYMBOL vmlinux 0xad542bf5 param_get_string +EXPORT_SYMBOL vmlinux 0xad6d9844 tcp_splice_read +EXPORT_SYMBOL vmlinux 0xad6ec8d5 swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xad716095 security_path_mkdir +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad9500d5 fput +EXPORT_SYMBOL vmlinux 0xad961743 __wait_on_bit +EXPORT_SYMBOL vmlinux 0xadb42a2d sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xadbab878 thaw_bdev +EXPORT_SYMBOL vmlinux 0xadcefeb6 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xadecd1f8 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0xadeffe25 _lv1_gpu_context_intr +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae005648 kill_block_super +EXPORT_SYMBOL vmlinux 0xae132ee1 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0xae1472ff max8998_update_reg +EXPORT_SYMBOL vmlinux 0xae22b84b gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xae358236 fence_signal +EXPORT_SYMBOL vmlinux 0xae38b66f nvm_register_mgr +EXPORT_SYMBOL vmlinux 0xae545f06 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xae65e6b3 compat_ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xae740dec ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xae7ffe29 inet6_getname +EXPORT_SYMBOL vmlinux 0xae9c6b7f ata_print_version +EXPORT_SYMBOL vmlinux 0xaee597d5 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0xaef379f6 framebuffer_release +EXPORT_SYMBOL vmlinux 0xaf063510 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xaf2d872c prepare_to_wait +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf410bfe unregister_quota_format +EXPORT_SYMBOL vmlinux 0xaf49a92f wait_for_key_construction +EXPORT_SYMBOL vmlinux 0xaf4d1d73 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0xaf69c2af would_dump +EXPORT_SYMBOL vmlinux 0xaf6ae696 kstrndup +EXPORT_SYMBOL vmlinux 0xaf712c55 register_framebuffer +EXPORT_SYMBOL vmlinux 0xaf7c84e5 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0xaf9340a7 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0xafa61702 skb_free_datagram +EXPORT_SYMBOL vmlinux 0xafb0fd09 gen_pool_create +EXPORT_SYMBOL vmlinux 0xafc35283 netif_device_attach +EXPORT_SYMBOL vmlinux 0xafc72913 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0xafdb3988 phy_stop +EXPORT_SYMBOL vmlinux 0xafff3d1d mempool_alloc +EXPORT_SYMBOL vmlinux 0xb0385b79 compat_sock_get_timestamp +EXPORT_SYMBOL vmlinux 0xb04241b4 ida_simple_remove +EXPORT_SYMBOL vmlinux 0xb053e9b0 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb07797df scsi_execute +EXPORT_SYMBOL vmlinux 0xb0838802 mmc_register_driver +EXPORT_SYMBOL vmlinux 0xb08e06a8 pci_claim_resource +EXPORT_SYMBOL vmlinux 0xb08f4ec3 of_get_next_child +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0b44f30 of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0b89f5a dst_release +EXPORT_SYMBOL vmlinux 0xb0c4e061 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xb0cc1cdc tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xb0df2e77 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e624f1 input_event +EXPORT_SYMBOL vmlinux 0xb0ed1ea8 pci_request_region +EXPORT_SYMBOL vmlinux 0xb0fd431c tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xb1008529 neigh_direct_output +EXPORT_SYMBOL vmlinux 0xb10be83e dcb_setapp +EXPORT_SYMBOL vmlinux 0xb10ee51b vmap +EXPORT_SYMBOL vmlinux 0xb112ddf7 iov_iter_npages +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb147a855 dql_reset +EXPORT_SYMBOL vmlinux 0xb152dae5 clear_wb_congested +EXPORT_SYMBOL vmlinux 0xb15bd8fa tb_ticks_per_sec +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb165ef45 __irq_regs +EXPORT_SYMBOL vmlinux 0xb169ee38 blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0xb16f3b03 nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0xb17aacf4 bdi_destroy +EXPORT_SYMBOL vmlinux 0xb17b2ae9 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xb17bd5ba param_get_charp +EXPORT_SYMBOL vmlinux 0xb186b9f8 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1c6e787 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0xb1ce13ad scsi_ioctl +EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xb1f0d89b devm_gpio_request +EXPORT_SYMBOL vmlinux 0xb1f60dbb input_inject_event +EXPORT_SYMBOL vmlinux 0xb20460a6 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xb20f85aa i2c_register_driver +EXPORT_SYMBOL vmlinux 0xb2132aaa mntget +EXPORT_SYMBOL vmlinux 0xb22250fe seq_pad +EXPORT_SYMBOL vmlinux 0xb222c499 dev_printk +EXPORT_SYMBOL vmlinux 0xb22fb24c fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0xb24c4cee pcim_iomap +EXPORT_SYMBOL vmlinux 0xb25d10bf kvmppc_hv_find_lock_hpte +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb28795c0 vme_register_bridge +EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xb2c8b7c4 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xb2c967ff jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0xb2cfc7db put_tty_driver +EXPORT_SYMBOL vmlinux 0xb2d2d0f2 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xb2ef2284 submit_bh +EXPORT_SYMBOL vmlinux 0xb2fa458a proc_set_size +EXPORT_SYMBOL vmlinux 0xb3146eda __neigh_event_send +EXPORT_SYMBOL vmlinux 0xb318aab9 tcp_parse_options +EXPORT_SYMBOL vmlinux 0xb3382494 fence_signal_locked +EXPORT_SYMBOL vmlinux 0xb350b475 dentry_path_raw +EXPORT_SYMBOL vmlinux 0xb352d6bd xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xb37d5c38 genl_notify +EXPORT_SYMBOL vmlinux 0xb37e9170 vio_cmo_set_dev_desired +EXPORT_SYMBOL vmlinux 0xb3a0191d bdi_init +EXPORT_SYMBOL vmlinux 0xb3ab8d51 kernel_connect +EXPORT_SYMBOL vmlinux 0xb3bf73df cpu_active_mask +EXPORT_SYMBOL vmlinux 0xb3c7145e netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3d4c1c9 eth_gro_receive +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb3fe4b63 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0xb4175c92 fb_class +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb4607bcb fsync_bdev +EXPORT_SYMBOL vmlinux 0xb4615d82 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb47189b5 reservation_ww_class +EXPORT_SYMBOL vmlinux 0xb473e2c2 lockref_get +EXPORT_SYMBOL vmlinux 0xb480deaa kern_path +EXPORT_SYMBOL vmlinux 0xb4858723 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xb4c00cc8 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0xb4c9d5d1 sock_efree +EXPORT_SYMBOL vmlinux 0xb4cb3064 blk_integrity_register +EXPORT_SYMBOL vmlinux 0xb4ebdb8f sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0xb51a2f32 current_fs_time +EXPORT_SYMBOL vmlinux 0xb51eaa49 try_module_get +EXPORT_SYMBOL vmlinux 0xb523bd7b __cleancache_get_page +EXPORT_SYMBOL vmlinux 0xb54cae0f cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0xb567f6e7 dquot_operations +EXPORT_SYMBOL vmlinux 0xb56adc6e inode_get_bytes +EXPORT_SYMBOL vmlinux 0xb56bfd9e smu_spinwait_cmd +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb595c1b0 __find_get_block +EXPORT_SYMBOL vmlinux 0xb599be15 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5b08265 blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0xb5c14001 nvm_erase_blk +EXPORT_SYMBOL vmlinux 0xb5d757e4 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0xb5e18449 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0xb5e76ae9 dev_mc_sync +EXPORT_SYMBOL vmlinux 0xb5ff0571 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xb60ec777 dcache_dir_open +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb639fdf8 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0xb63e5083 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0xb652fdb0 blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0xb6577cf9 key_invalidate +EXPORT_SYMBOL vmlinux 0xb6579f5d seq_lseek +EXPORT_SYMBOL vmlinux 0xb66d720e simple_transaction_set +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb68642b9 simple_setattr +EXPORT_SYMBOL vmlinux 0xb68bfa9d node_states +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb695ae89 sk_wait_data +EXPORT_SYMBOL vmlinux 0xb69efed9 kmalloc_caches +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6aa6bad md_unregister_thread +EXPORT_SYMBOL vmlinux 0xb6d80753 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xb6e12e7e proto_unregister +EXPORT_SYMBOL vmlinux 0xb6e8aa44 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0xb6eadf52 irq_to_desc +EXPORT_SYMBOL vmlinux 0xb6f16c75 vio_disable_interrupts +EXPORT_SYMBOL vmlinux 0xb6fb42da call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0xb6fcf6f2 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xb721a54f __dst_free +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb74c1bdd end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb775f0ff __skb_get_hash +EXPORT_SYMBOL vmlinux 0xb788217d hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0xb79e9368 of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0xb7b4c69f save_mount_options +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7de2bbe __sk_dst_check +EXPORT_SYMBOL vmlinux 0xb7df9912 pci_get_device +EXPORT_SYMBOL vmlinux 0xb7ecc9e3 netdev_emerg +EXPORT_SYMBOL vmlinux 0xb7efcfd1 mmc_erase +EXPORT_SYMBOL vmlinux 0xb7f094ca udp_set_csum +EXPORT_SYMBOL vmlinux 0xb8269c8e gen_pool_destroy +EXPORT_SYMBOL vmlinux 0xb8284f4a bio_phys_segments +EXPORT_SYMBOL vmlinux 0xb8569d36 param_set_copystring +EXPORT_SYMBOL vmlinux 0xb85c3973 nf_log_set +EXPORT_SYMBOL vmlinux 0xb86123be _lv1_write_repository_node +EXPORT_SYMBOL vmlinux 0xb86206a1 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0xb862c94c padata_alloc_possible +EXPORT_SYMBOL vmlinux 0xb86fb45b neigh_parms_release +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb88182ee mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0xb883fd7b vfs_statfs +EXPORT_SYMBOL vmlinux 0xb8a30c7e _lv1_add_lpm_event_bookmark +EXPORT_SYMBOL vmlinux 0xb8a57a47 of_device_is_available +EXPORT_SYMBOL vmlinux 0xb8ac3046 inet_stream_connect +EXPORT_SYMBOL vmlinux 0xb8e484fe dev_change_flags +EXPORT_SYMBOL vmlinux 0xb8fbedd0 __module_get +EXPORT_SYMBOL vmlinux 0xb8fdb1a7 dev_remove_pack +EXPORT_SYMBOL vmlinux 0xb9025612 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb91c6a07 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xb930ee2b elevator_change +EXPORT_SYMBOL vmlinux 0xb94058ea simple_open +EXPORT_SYMBOL vmlinux 0xb9437b67 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0xb95c97a2 ps2_drain +EXPORT_SYMBOL vmlinux 0xb96f68f5 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0xb99c04ec __page_cache_alloc +EXPORT_SYMBOL vmlinux 0xb9abcb98 get_tz_trend +EXPORT_SYMBOL vmlinux 0xb9d0a32b end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0xb9e16921 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9f17b41 inode_change_ok +EXPORT_SYMBOL vmlinux 0xb9fdcfc4 agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0xba06bb17 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xba122a2c smu_done_complete +EXPORT_SYMBOL vmlinux 0xba2ffec2 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba4f2a79 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0xba698284 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xba8a57e0 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xba9c6990 dev_mc_add +EXPORT_SYMBOL vmlinux 0xbabcfe0c tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xbac37c1a locks_remove_posix +EXPORT_SYMBOL vmlinux 0xbaf9811c __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb34134a iov_shorten +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb38247d scsi_add_device +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb5c5f71 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb6ba119 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xbb7aa27f scm_fp_dup +EXPORT_SYMBOL vmlinux 0xbb825a0e dev_get_by_index +EXPORT_SYMBOL vmlinux 0xbb87bb37 get_thermal_instance +EXPORT_SYMBOL vmlinux 0xbb903710 skb_insert +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbba5ab99 force_sig +EXPORT_SYMBOL vmlinux 0xbba5db59 fb_show_logo +EXPORT_SYMBOL vmlinux 0xbbaeb559 memcg_socket_limit_enabled +EXPORT_SYMBOL vmlinux 0xbbb09aad get_unmapped_area +EXPORT_SYMBOL vmlinux 0xbbb1fd6b __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xbbb6b412 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xbbe4f554 bio_add_page +EXPORT_SYMBOL vmlinux 0xbbe7fa06 tso_start +EXPORT_SYMBOL vmlinux 0xbc1dd8e6 current_in_userns +EXPORT_SYMBOL vmlinux 0xbc1e97c9 sk_dst_check +EXPORT_SYMBOL vmlinux 0xbc316de4 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0xbc34578c blk_sync_queue +EXPORT_SYMBOL vmlinux 0xbc49e6a0 tcp_prot +EXPORT_SYMBOL vmlinux 0xbc4d4d76 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0xbc502792 dup_iter +EXPORT_SYMBOL vmlinux 0xbc5cbc7b inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xbc7c05d1 pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0xbc8d24b7 con_is_bound +EXPORT_SYMBOL vmlinux 0xbc94c9d8 filp_close +EXPORT_SYMBOL vmlinux 0xbc982b06 eeh_subsystem_flags +EXPORT_SYMBOL vmlinux 0xbca0a9b8 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xbca3de02 unlock_buffer +EXPORT_SYMBOL vmlinux 0xbca73c9d tty_port_init +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcea2958 inet_frags_fini +EXPORT_SYMBOL vmlinux 0xbcf150f9 xor_altivec_5 +EXPORT_SYMBOL vmlinux 0xbd015b6b __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xbd023e42 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0xbd22e8b5 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xbd242dbc fifo_set_limit +EXPORT_SYMBOL vmlinux 0xbd32dd6d vme_master_mmap +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd6d79f1 __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0xbd782d2e register_cdrom +EXPORT_SYMBOL vmlinux 0xbd7e8d96 tso_build_data +EXPORT_SYMBOL vmlinux 0xbd803510 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xbd893bf0 netlink_unicast +EXPORT_SYMBOL vmlinux 0xbd8cfa15 pasemi_write_mac_reg +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbdc46592 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xbdcda7ef kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xbdcf2cde __blk_end_request +EXPORT_SYMBOL vmlinux 0xbde5ace8 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0xbde9fca4 bitmap_startwrite +EXPORT_SYMBOL vmlinux 0xbdf951fd nobh_write_end +EXPORT_SYMBOL vmlinux 0xbe173221 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe295d5d genphy_resume +EXPORT_SYMBOL vmlinux 0xbe3d1cf5 file_open_root +EXPORT_SYMBOL vmlinux 0xbe41af5e of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0xbe43874e bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xbe4bccd2 pnv_phb_to_cxl_mode +EXPORT_SYMBOL vmlinux 0xbe544d83 f_setown +EXPORT_SYMBOL vmlinux 0xbe5e14b2 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0xbe619f38 phy_disconnect +EXPORT_SYMBOL vmlinux 0xbe6f610a iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0xbe87be68 phy_connect_direct +EXPORT_SYMBOL vmlinux 0xbe94800a macio_request_resource +EXPORT_SYMBOL vmlinux 0xbe957de3 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0xbe9ce56e scsi_target_resume +EXPORT_SYMBOL vmlinux 0xbecf9289 page_cache_next_hole +EXPORT_SYMBOL vmlinux 0xbed74e28 d_move +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbef674da scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xbf020f02 tcp_seq_open +EXPORT_SYMBOL vmlinux 0xbf0399f2 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0xbf078e41 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0xbf1e2d33 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0xbf243dcd of_scan_pci_bridge +EXPORT_SYMBOL vmlinux 0xbf4fbd1b dev_get_stats +EXPORT_SYMBOL vmlinux 0xbf64e9af neigh_update +EXPORT_SYMBOL vmlinux 0xbf69cd8e of_get_child_by_name +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf925c42 idr_init +EXPORT_SYMBOL vmlinux 0xbf954224 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbf9eb0f2 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0xbfabfe59 __debugger_iabr_match +EXPORT_SYMBOL vmlinux 0xbfaf38ae file_ns_capable +EXPORT_SYMBOL vmlinux 0xbfb8b0b7 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xbfbb7629 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfd98256 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbff45f75 __skb_checksum +EXPORT_SYMBOL vmlinux 0xbff8182c plpar_hcall_norets +EXPORT_SYMBOL vmlinux 0xc0036eb4 pagecache_write_end +EXPORT_SYMBOL vmlinux 0xc019f804 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xc01b4865 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xc043280e ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xc055d10e __d_drop +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc0930ff7 padata_alloc +EXPORT_SYMBOL vmlinux 0xc09680da dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0a7869d module_put +EXPORT_SYMBOL vmlinux 0xc0aadfb3 iterate_dir +EXPORT_SYMBOL vmlinux 0xc0ada701 xfrm_register_type +EXPORT_SYMBOL vmlinux 0xc0c819e6 drop_nlink +EXPORT_SYMBOL vmlinux 0xc0e3dd40 netif_skb_features +EXPORT_SYMBOL vmlinux 0xc0f6f5f0 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0xc0fe223c tty_port_put +EXPORT_SYMBOL vmlinux 0xc1039619 cfb_imageblit +EXPORT_SYMBOL vmlinux 0xc106a11f dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0xc13511d7 cpumask_next_and +EXPORT_SYMBOL vmlinux 0xc13a10dc flex_array_alloc +EXPORT_SYMBOL vmlinux 0xc1433573 mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0xc15a44c6 memzero_explicit +EXPORT_SYMBOL vmlinux 0xc1825575 mac_find_mode +EXPORT_SYMBOL vmlinux 0xc1888d00 simple_empty +EXPORT_SYMBOL vmlinux 0xc18929f4 __blk_run_queue +EXPORT_SYMBOL vmlinux 0xc18d9acb nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0xc1a892ee twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0xc1b71b40 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0xc1bbfb23 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0xc1cab284 devfreq_interval_update +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc20e05cb serio_reconnect +EXPORT_SYMBOL vmlinux 0xc210b882 udp_disconnect +EXPORT_SYMBOL vmlinux 0xc2336ab4 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc2555521 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xc2767bdf dput +EXPORT_SYMBOL vmlinux 0xc2780a31 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xc28db402 new_inode +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc29c9ad3 inet6_release +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2a9d429 elevator_exit +EXPORT_SYMBOL vmlinux 0xc2ae2c07 simple_dir_operations +EXPORT_SYMBOL vmlinux 0xc2af3120 nla_append +EXPORT_SYMBOL vmlinux 0xc2b8e412 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xc2c19448 uart_update_timeout +EXPORT_SYMBOL vmlinux 0xc2c62190 inet_bind +EXPORT_SYMBOL vmlinux 0xc2d94827 tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2e5d613 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xc2fb9ee1 _lv1_shutdown_logical_partition +EXPORT_SYMBOL vmlinux 0xc30a365d __tcf_hash_release +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc31b485b security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xc3238c27 phy_init_hw +EXPORT_SYMBOL vmlinux 0xc36b18fb bdget +EXPORT_SYMBOL vmlinux 0xc3bb01af set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3c47924 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xc3d2550e scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0xc3d556a0 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xc41f1696 _lv1_configure_virtual_uart_irq +EXPORT_SYMBOL vmlinux 0xc44d5972 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xc44f83f3 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xc45755de find_next_zero_bit_le +EXPORT_SYMBOL vmlinux 0xc46e803e generic_fillattr +EXPORT_SYMBOL vmlinux 0xc4736351 get_gendisk +EXPORT_SYMBOL vmlinux 0xc47cdf9c _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0xc48307db lz4_decompress +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4a0be24 bioset_integrity_free +EXPORT_SYMBOL vmlinux 0xc4a4cd81 put_disk +EXPORT_SYMBOL vmlinux 0xc4ca9d7f udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xc4faf586 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0xc5021253 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xc5089620 _lv1_stop_ppe_periodic_tracer +EXPORT_SYMBOL vmlinux 0xc52fdfa1 param_set_bool +EXPORT_SYMBOL vmlinux 0xc5382998 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0xc545cb7d dev_set_mtu +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc555f4de open_check_o_direct +EXPORT_SYMBOL vmlinux 0xc55de23c percpu_counter_set +EXPORT_SYMBOL vmlinux 0xc567acd7 vme_register_driver +EXPORT_SYMBOL vmlinux 0xc568a19e blkdev_fsync +EXPORT_SYMBOL vmlinux 0xc5969e5e __napi_complete +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5c20d14 unlock_new_inode +EXPORT_SYMBOL vmlinux 0xc5c6f5c3 request_firmware +EXPORT_SYMBOL vmlinux 0xc5cfbd7e inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5e0bac8 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xc5e10741 bio_map_kern +EXPORT_SYMBOL vmlinux 0xc5f984c5 ata_dev_printk +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc60880bc sg_miter_skip +EXPORT_SYMBOL vmlinux 0xc6193876 vga_tryget +EXPORT_SYMBOL vmlinux 0xc6232348 swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc6341b6b __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xc63784dc sock_from_file +EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0xc663b075 __ioremap +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc66d4285 of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0xc6772da2 radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0xc69223fe mount_bdev +EXPORT_SYMBOL vmlinux 0xc69d6961 kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0xc6acd390 inet_register_protosw +EXPORT_SYMBOL vmlinux 0xc6b22c71 __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6d3020e get_cached_acl +EXPORT_SYMBOL vmlinux 0xc6d54d4e of_get_ibm_chip_id +EXPORT_SYMBOL vmlinux 0xc6ecf70a dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0xc6f24f0f __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc7591cf0 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xc7664fdd __netif_schedule +EXPORT_SYMBOL vmlinux 0xc768f712 skb_store_bits +EXPORT_SYMBOL vmlinux 0xc7697a03 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc7898275 flex_array_shrink +EXPORT_SYMBOL vmlinux 0xc795f609 qdisc_reset +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7cbd0c2 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0xc7cde595 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0xc7e2afbe d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0xc7f39b15 irq_stat +EXPORT_SYMBOL vmlinux 0xc81c2411 cdev_alloc +EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0xc83f5cfc cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xc84298d4 inode_needs_sync +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc84a274f _dev_info +EXPORT_SYMBOL vmlinux 0xc8571bcb idr_for_each +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc8863e47 blk_put_request +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b47c9d get_super_thawed +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8bf7748 pagecache_get_page +EXPORT_SYMBOL vmlinux 0xc8d5aa60 nd_integrity_init +EXPORT_SYMBOL vmlinux 0xc8e2a85d of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0xc8e31d75 _lv1_configure_irq_state_bitmap +EXPORT_SYMBOL vmlinux 0xc8e3e28c tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xc8fa8ab8 secpath_dup +EXPORT_SYMBOL vmlinux 0xc900720b pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc9346ed2 parent_mem_cgroup +EXPORT_SYMBOL vmlinux 0xc93fbc54 wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xc95cbc18 genphy_suspend +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc978479a xz_dec_run +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9a1a959 pnv_cxl_alloc_hwirq_ranges +EXPORT_SYMBOL vmlinux 0xc9be1505 dm_kobject_release +EXPORT_SYMBOL vmlinux 0xc9edf615 iunique +EXPORT_SYMBOL vmlinux 0xc9fc598d pasemi_read_dma_reg +EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy +EXPORT_SYMBOL vmlinux 0xca158dea inet_select_addr +EXPORT_SYMBOL vmlinux 0xca2226e9 fsnotify_get_group +EXPORT_SYMBOL vmlinux 0xca2b1cd6 ida_pre_get +EXPORT_SYMBOL vmlinux 0xca2e89d3 pmac_resume_agp_for_card +EXPORT_SYMBOL vmlinux 0xca38a632 dm_get_device +EXPORT_SYMBOL vmlinux 0xca39f38a dev_uc_sync +EXPORT_SYMBOL vmlinux 0xca3b28c6 store_vr_state +EXPORT_SYMBOL vmlinux 0xca48ade7 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0xca524043 page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0xca5ee09a vme_free_consistent +EXPORT_SYMBOL vmlinux 0xca825895 pmu_suspend +EXPORT_SYMBOL vmlinux 0xca832efe kmalloc_order +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xcaabf3f9 pasemi_write_iob_reg +EXPORT_SYMBOL vmlinux 0xcab24a8e done_path_create +EXPORT_SYMBOL vmlinux 0xcabb634c sg_miter_stop +EXPORT_SYMBOL vmlinux 0xcac0d40b block_invalidatepage +EXPORT_SYMBOL vmlinux 0xcac1be2c bio_unmap_user +EXPORT_SYMBOL vmlinux 0xcac5e93e tty_schedule_flip +EXPORT_SYMBOL vmlinux 0xcac98b4f blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0xcace6297 idr_is_empty +EXPORT_SYMBOL vmlinux 0xcad5d45b input_allocate_device +EXPORT_SYMBOL vmlinux 0xcadfb521 locks_mandatory_area +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcaf2cd91 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb0fcfd1 send_sig +EXPORT_SYMBOL vmlinux 0xcb178121 truncate_setsize +EXPORT_SYMBOL vmlinux 0xcb2124cb twl6040_reg_read +EXPORT_SYMBOL vmlinux 0xcb4ac4d9 mpage_readpage +EXPORT_SYMBOL vmlinux 0xcb936989 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcbb25e9f cdev_del +EXPORT_SYMBOL vmlinux 0xcbbb509f unregister_cdrom +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbbf13ca xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xcbc3b94e eeh_check_failure +EXPORT_SYMBOL vmlinux 0xcbc3eb70 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0xcbc59375 of_create_pci_dev +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbcb437e pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0xcbd3d7ef dev_get_by_name +EXPORT_SYMBOL vmlinux 0xcbdbbd27 blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0xcbe8b038 _lv1_configure_execution_time_variable +EXPORT_SYMBOL vmlinux 0xcbf40bac jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0xcbf52d66 console_stop +EXPORT_SYMBOL vmlinux 0xcbff03a0 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0xcc05fb4a i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xcc17504d _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc24e60e blk_start_queue +EXPORT_SYMBOL vmlinux 0xcc279864 param_set_bint +EXPORT_SYMBOL vmlinux 0xcc2ee6bf md_error +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5cd24e generic_file_read_iter +EXPORT_SYMBOL vmlinux 0xcc7b849a netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xcc874861 kern_unmount +EXPORT_SYMBOL vmlinux 0xcc89c246 pasemi_dma_alloc_chan +EXPORT_SYMBOL vmlinux 0xcca889ec kmem_cache_free +EXPORT_SYMBOL vmlinux 0xccb1a0b4 blk_mq_all_tag_busy_iter +EXPORT_SYMBOL vmlinux 0xccb8ec22 dquot_scan_active +EXPORT_SYMBOL vmlinux 0xccbd41fc inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0xccbe17f0 napi_gro_flush +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccd57781 param_get_byte +EXPORT_SYMBOL vmlinux 0xccea6b0e ping_prot +EXPORT_SYMBOL vmlinux 0xccfdf867 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xcd0529c7 _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xcd0ebd99 release_sock +EXPORT_SYMBOL vmlinux 0xcd1e5c84 ps2_init +EXPORT_SYMBOL vmlinux 0xcd20667a kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0xcd2521a6 elv_rb_find +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd2bee75 vfs_create +EXPORT_SYMBOL vmlinux 0xcd2eba40 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xcd469d97 of_get_named_gpio_flags +EXPORT_SYMBOL vmlinux 0xcd57f7b0 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xcd769f62 _lv1_gpu_device_map +EXPORT_SYMBOL vmlinux 0xcd7e9feb blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0xcd7ede2a seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xcd86c87f __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xcda9a830 xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdc8dfc9 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xcddae707 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xcdea331e pci_release_region +EXPORT_SYMBOL vmlinux 0xce0e2d66 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce2c5463 bio_alloc_pages +EXPORT_SYMBOL vmlinux 0xce3319ca read_cache_page +EXPORT_SYMBOL vmlinux 0xce3977f1 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0xce3b3f09 profile_pc +EXPORT_SYMBOL vmlinux 0xce409cda pmac_set_early_video_resume +EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce72bc88 irq_set_chip +EXPORT_SYMBOL vmlinux 0xce7850e1 crc32_le_shift +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceae504f cmdline_parts_free +EXPORT_SYMBOL vmlinux 0xced777cb proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0xced94771 dm_put_table_device +EXPORT_SYMBOL vmlinux 0xceeb338e of_device_alloc +EXPORT_SYMBOL vmlinux 0xcef4351f nf_ct_attach +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf39990e skb_pad +EXPORT_SYMBOL vmlinux 0xcf47133a address_space_init_once +EXPORT_SYMBOL vmlinux 0xcf524a4e sock_kfree_s +EXPORT_SYMBOL vmlinux 0xcf5661e9 copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0xcf93f38c inet_accept +EXPORT_SYMBOL vmlinux 0xcf9fc680 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0xcfaa7aff ppp_register_compressor +EXPORT_SYMBOL vmlinux 0xcfb7d5a0 cpu_sibling_map +EXPORT_SYMBOL vmlinux 0xd0182b7f tcp_poll +EXPORT_SYMBOL vmlinux 0xd03ef676 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0xd057e49c pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xd05931ec _lv1_set_lpm_counter_control +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd08f6239 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0befa47 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xd0c8ba6d pci_iomap_range +EXPORT_SYMBOL vmlinux 0xd0cf99b6 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0xd0da7b95 nf_log_packet +EXPORT_SYMBOL vmlinux 0xd0e54aeb clear_nlink +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd1262886 rtas_data_buf +EXPORT_SYMBOL vmlinux 0xd14691f2 ip_getsockopt +EXPORT_SYMBOL vmlinux 0xd152ab2b powerpc_debugfs_root +EXPORT_SYMBOL vmlinux 0xd15c5431 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0xd178ff70 vm_stat +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd1818772 param_ops_charp +EXPORT_SYMBOL vmlinux 0xd18dedc0 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0xd1c25455 blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1fce011 phy_driver_register +EXPORT_SYMBOL vmlinux 0xd1fd075e blk_init_queue +EXPORT_SYMBOL vmlinux 0xd1fe8ebb _lv1_get_spe_interrupt_status +EXPORT_SYMBOL vmlinux 0xd2156682 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0xd21a25bc arp_tbl +EXPORT_SYMBOL vmlinux 0xd2352aee compat_tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xd24101e7 km_policy_notify +EXPORT_SYMBOL vmlinux 0xd2440b43 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xd2483b5a touch_atime +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd2566fc0 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd2736e45 tty_devnum +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd28d3603 tso_build_hdr +EXPORT_SYMBOL vmlinux 0xd2ac911f nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xd2aff6e2 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xd2b09ce5 __kmalloc +EXPORT_SYMBOL vmlinux 0xd2b6a6dc dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0xd2cbb000 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0xd2d0af4e ip6_xmit +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2ef2638 smu_cmdbuf_abs +EXPORT_SYMBOL vmlinux 0xd2efc074 ibmebus_register_driver +EXPORT_SYMBOL vmlinux 0xd2fcc613 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0xd313de85 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd345a7db pci_find_bus +EXPORT_SYMBOL vmlinux 0xd34748c0 inet6_bind +EXPORT_SYMBOL vmlinux 0xd3552100 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd373a967 sock_rfree +EXPORT_SYMBOL vmlinux 0xd37e6bda dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xd38ef809 security_path_rename +EXPORT_SYMBOL vmlinux 0xd39d79fc simple_link +EXPORT_SYMBOL vmlinux 0xd3a9636d to_ndd +EXPORT_SYMBOL vmlinux 0xd3b01dc9 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3c0430d phy_device_free +EXPORT_SYMBOL vmlinux 0xd3da32b5 pci_find_capability +EXPORT_SYMBOL vmlinux 0xd409383c pmu_request +EXPORT_SYMBOL vmlinux 0xd40a7c5c proc_create_data +EXPORT_SYMBOL vmlinux 0xd4126864 bitmap_unplug +EXPORT_SYMBOL vmlinux 0xd41b9c8f mmc_add_host +EXPORT_SYMBOL vmlinux 0xd43464fe clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xd43f15d0 fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0xd44b61c2 param_set_byte +EXPORT_SYMBOL vmlinux 0xd44b7e21 to_tm +EXPORT_SYMBOL vmlinux 0xd44cb026 seq_dentry +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd48dc22a input_register_device +EXPORT_SYMBOL vmlinux 0xd48fdeef dql_completed +EXPORT_SYMBOL vmlinux 0xd4a22978 inet_listen +EXPORT_SYMBOL vmlinux 0xd4a2c466 generic_setlease +EXPORT_SYMBOL vmlinux 0xd4d405cb vio_enable_interrupts +EXPORT_SYMBOL vmlinux 0xd4f8ead7 scsi_register_driver +EXPORT_SYMBOL vmlinux 0xd5084a4e generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xd520d6c9 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xd5302c0c blk_queue_bounce +EXPORT_SYMBOL vmlinux 0xd532e3e3 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xd548f918 udp_ioctl +EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0xd55509db pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xd55aace9 devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0xd5649976 seq_printf +EXPORT_SYMBOL vmlinux 0xd576a6eb param_set_ulong +EXPORT_SYMBOL vmlinux 0xd588b8be scsi_remove_device +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd59b1db2 alloc_fddidev +EXPORT_SYMBOL vmlinux 0xd5b9795e devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xd5bed37d __bread_gfp +EXPORT_SYMBOL vmlinux 0xd5c27292 nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xd5e1d719 _lv1_set_ppe_periodic_tracer_frequency +EXPORT_SYMBOL vmlinux 0xd5e8a566 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0xd5f2098d dma_sync_wait +EXPORT_SYMBOL vmlinux 0xd60aa968 tcp_req_err +EXPORT_SYMBOL vmlinux 0xd60f331b dquot_enable +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd619dbec scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xd626a30f blk_start_queue_async +EXPORT_SYMBOL vmlinux 0xd626a78a lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd65d3015 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xd6605c87 __get_page_tail +EXPORT_SYMBOL vmlinux 0xd668b827 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xd683e40d truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xd684e97f blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68c2bc7 genphy_read_status +EXPORT_SYMBOL vmlinux 0xd69c163d unlock_rename +EXPORT_SYMBOL vmlinux 0xd6a11cd5 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xd6a663b4 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0xd6ad631d agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0xd6d63e9d lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0xd6e2472c i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0xd6edf811 _lv1_release_memory +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6fd4053 __arch_hweight32 +EXPORT_SYMBOL vmlinux 0xd72e1cfc _lv1_set_lpm_spr_trigger +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd761a383 ioremap_prot +EXPORT_SYMBOL vmlinux 0xd786c0ea plpar_hcall9 +EXPORT_SYMBOL vmlinux 0xd790db72 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0xd7b059fb pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0xd7c66ada inet_del_protocol +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7e6ed71 pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd834f992 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0xd84b7b7e nf_log_register +EXPORT_SYMBOL vmlinux 0xd87ba302 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0xd884898d dquot_commit +EXPORT_SYMBOL vmlinux 0xd88e0840 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b3dcd6 get_task_io_context +EXPORT_SYMBOL vmlinux 0xd8cf0e8b scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e14185 vfs_whiteout +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8e83d9f pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xd9083ba1 dev_uc_flush +EXPORT_SYMBOL vmlinux 0xd94879f2 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0xd94fdcd5 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd9a75219 set_page_dirty +EXPORT_SYMBOL vmlinux 0xd9b294e5 netdev_err +EXPORT_SYMBOL vmlinux 0xd9bac924 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0xd9ce1e1c __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0xd9d4d09d _lv1_release_io_segment +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xda0f5234 rtas_offline_cpus_mask +EXPORT_SYMBOL vmlinux 0xda3572c8 __check_sticky +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda4eae81 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xda4ebdbc fb_prepare_logo +EXPORT_SYMBOL vmlinux 0xda6b8966 ppp_register_channel +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda9fc7ae kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0xdaa258f0 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xdab6c3f1 fddi_type_trans +EXPORT_SYMBOL vmlinux 0xdabc1ea8 fsl_lbc_find +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdac545b9 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0xdac668eb bioset_free +EXPORT_SYMBOL vmlinux 0xdac8af79 do_splice_direct +EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell +EXPORT_SYMBOL vmlinux 0xdb01198e fsl_upm_find +EXPORT_SYMBOL vmlinux 0xdb0e706f __vfs_write +EXPORT_SYMBOL vmlinux 0xdb0fd7d1 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0xdb25b01d mmc_flush_cache +EXPORT_SYMBOL vmlinux 0xdb3ada06 skb_clone +EXPORT_SYMBOL vmlinux 0xdb3bcca6 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0xdb4ef657 eth_header_cache +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdbb6e50d skb_split +EXPORT_SYMBOL vmlinux 0xdbbc3bfd blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xdbd12831 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xdbe5afaf console_start +EXPORT_SYMBOL vmlinux 0xdbeba658 blk_start_request +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc0cf9e9 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc214961 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0xdc33b54d jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xdc3c41a8 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc555c7e dev_add_pack +EXPORT_SYMBOL vmlinux 0xdc801844 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xdc8b0ee9 __seq_open_private +EXPORT_SYMBOL vmlinux 0xdc9498dd down +EXPORT_SYMBOL vmlinux 0xdc9c732f pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcb764ad memset +EXPORT_SYMBOL vmlinux 0xdcd0f56a xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0xdcdd2fa5 find_get_entry +EXPORT_SYMBOL vmlinux 0xdcefb9a5 pmu_resume +EXPORT_SYMBOL vmlinux 0xdcf83de1 file_path +EXPORT_SYMBOL vmlinux 0xdcfab228 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xdd179c3a pcie_get_mps +EXPORT_SYMBOL vmlinux 0xdd254e76 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0xdd31e908 phy_connect +EXPORT_SYMBOL vmlinux 0xdd3a3f8f rtnl_create_link +EXPORT_SYMBOL vmlinux 0xdd3cce04 ibmebus_bus_type +EXPORT_SYMBOL vmlinux 0xdd476c72 elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd68a817 mmc_request_done +EXPORT_SYMBOL vmlinux 0xdd6d5adc lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0xdd748fc8 phy_drivers_register +EXPORT_SYMBOL vmlinux 0xdd9030af current_stack_pointer +EXPORT_SYMBOL vmlinux 0xdd955144 __debugger +EXPORT_SYMBOL vmlinux 0xdd9a5fa2 put_cmsg +EXPORT_SYMBOL vmlinux 0xddab064f install_exec_creds +EXPORT_SYMBOL vmlinux 0xddb3769b lockref_mark_dead +EXPORT_SYMBOL vmlinux 0xddc852b2 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xddc9a228 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0xddd2829a pci_map_rom +EXPORT_SYMBOL vmlinux 0xddd6f59d i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xddf2b029 bio_clone_fast +EXPORT_SYMBOL vmlinux 0xde0ba05a setup_new_exec +EXPORT_SYMBOL vmlinux 0xde14c615 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xde413837 devm_request_resource +EXPORT_SYMBOL vmlinux 0xde48e9ca _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0xde783883 pSeries_disable_reloc_on_exc +EXPORT_SYMBOL vmlinux 0xde91448c load_vr_state +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdea1be1c mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xdeaff2b1 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xdec86c38 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xdee40cc8 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xdef707b4 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xdf11216a skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf3bc01c sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xdf3c81d7 blk_peek_request +EXPORT_SYMBOL vmlinux 0xdf4f01ad __register_nls +EXPORT_SYMBOL vmlinux 0xdf53b72f single_open +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf58203b genl_unregister_family +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf60fc83 _lv1_net_start_tx_dma +EXPORT_SYMBOL vmlinux 0xdf6a676e alloc_pages_current +EXPORT_SYMBOL vmlinux 0xdf837c93 __invalidate_device +EXPORT_SYMBOL vmlinux 0xdf8868d9 ip_ct_attach +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdfa4ad43 device_get_mac_address +EXPORT_SYMBOL vmlinux 0xdfb220d4 md_check_recovery +EXPORT_SYMBOL vmlinux 0xdfb93ab3 inet6_protos +EXPORT_SYMBOL vmlinux 0xdfbd82f4 eth_header_parse +EXPORT_SYMBOL vmlinux 0xdfc41c2a phy_device_remove +EXPORT_SYMBOL vmlinux 0xdfc49cb3 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xdfe8602a skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xe00dc563 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0xe00ecffe tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xe0391863 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0xe04f76c4 sys_imageblit +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe0511485 flush_icache_user_range +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0xe084713c of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe0a1f01c pci_write_vpd +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b3182c input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0xe0c2c35b truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0xe0ca3fe2 put_io_context +EXPORT_SYMBOL vmlinux 0xe0ddd2ae agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0xe104df4a skb_queue_purge +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe1432f4b scsi_host_set_state +EXPORT_SYMBOL vmlinux 0xe14cc604 sk_stop_timer +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe1918dea gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0xe198d049 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0xe1a8e045 of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xe1b4dcdf inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xe1b79853 __inode_permission +EXPORT_SYMBOL vmlinux 0xe1ca0891 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xe1ce355e d_find_alias +EXPORT_SYMBOL vmlinux 0xe1cfdf8c from_kprojid_munged +EXPORT_SYMBOL vmlinux 0xe1e68ab8 pipe_lock +EXPORT_SYMBOL vmlinux 0xe1e72e10 register_filesystem +EXPORT_SYMBOL vmlinux 0xe1f713b0 skb_copy +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe20372ae radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0xe20c63e7 _lv1_unmap_device_mmio_region +EXPORT_SYMBOL vmlinux 0xe220ceb8 __debugger_sstep +EXPORT_SYMBOL vmlinux 0xe2300de8 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL vmlinux 0xe233dc57 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0xe2350ea5 unload_nls +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe23d0219 loop_backing_file +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe255cea4 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xe25ce334 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0xe27093e9 kfree_put_link +EXPORT_SYMBOL vmlinux 0xe2793590 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe29e4870 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xe2a7eb0a fb_set_var +EXPORT_SYMBOL vmlinux 0xe2a9d092 proc_mkdir +EXPORT_SYMBOL vmlinux 0xe2be5498 lg_global_unlock +EXPORT_SYMBOL vmlinux 0xe2cc637f jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2dc5916 follow_up +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe3039b3d blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xe317764d jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0xe31b0933 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0xe3258e78 sock_wfree +EXPORT_SYMBOL vmlinux 0xe3263657 netdev_crit +EXPORT_SYMBOL vmlinux 0xe338be47 dump_emit +EXPORT_SYMBOL vmlinux 0xe351ef92 inet_csk_accept +EXPORT_SYMBOL vmlinux 0xe3703abb __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0xe371bdb6 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xe3a53f4c sort +EXPORT_SYMBOL vmlinux 0xe3ac81c2 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3ce4d7f pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3e5d453 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xe4001b2d dev_uc_unsync +EXPORT_SYMBOL vmlinux 0xe40cb24e sock_no_listen +EXPORT_SYMBOL vmlinux 0xe41a9a02 netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xe41d94e9 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xe436c402 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xe455b305 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0xe457b897 kernel_write +EXPORT_SYMBOL vmlinux 0xe461e499 proto_register +EXPORT_SYMBOL vmlinux 0xe47ebc5b mount_single +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe486ec35 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0xe48e1a60 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xe4a247ee scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xe4ae6571 devm_memunmap +EXPORT_SYMBOL vmlinux 0xe4b5bbf3 inet_release +EXPORT_SYMBOL vmlinux 0xe4c28251 ata_link_printk +EXPORT_SYMBOL vmlinux 0xe4d0f803 generic_listxattr +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4eaab2e t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xe4ee068a block_write_end +EXPORT_SYMBOL vmlinux 0xe4f10870 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0xe4fe8ca1 _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xe50e63e0 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xe50f674e __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xe5158449 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xe51b707e ip6_frag_match +EXPORT_SYMBOL vmlinux 0xe5204ae5 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe5293d97 input_release_device +EXPORT_SYMBOL vmlinux 0xe52b7833 phy_attach_direct +EXPORT_SYMBOL vmlinux 0xe54e8cc9 pci_domain_nr +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe58f5575 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0xe594043e register_md_personality +EXPORT_SYMBOL vmlinux 0xe5b6bbf5 compat_nf_getsockopt +EXPORT_SYMBOL vmlinux 0xe5c2dcc0 swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5d1083a proc_symlink +EXPORT_SYMBOL vmlinux 0xe5d6f9d5 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0xe5da3cf1 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xe5db5569 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe60988ac _lv1_query_logical_partition_address_region_info +EXPORT_SYMBOL vmlinux 0xe64452dc __blk_end_request_all +EXPORT_SYMBOL vmlinux 0xe6516ead noop_llseek +EXPORT_SYMBOL vmlinux 0xe65a73d7 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xe65d4af8 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0xe66cc73f netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0xe66f2803 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0xe671312d peernet2id_alloc +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe69a9df4 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe6b0343d xfrm_input +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe6fd76a5 dma_common_mmap +EXPORT_SYMBOL vmlinux 0xe719a51d pnv_pci_get_phb_node +EXPORT_SYMBOL vmlinux 0xe74aa406 _lv1_set_dabr +EXPORT_SYMBOL vmlinux 0xe74ba8d3 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xe74edd29 inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0xe75bc19d skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xe7632f9f tcp_sendmsg +EXPORT_SYMBOL vmlinux 0xe76f0c39 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0xe770c755 lock_rename +EXPORT_SYMBOL vmlinux 0xe7869b6a inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0xe78b38f5 bprm_change_interp +EXPORT_SYMBOL vmlinux 0xe7a23c40 mntput +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7a8fc99 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xe7ab1c21 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xe7c4d083 mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0xe7ca664c of_get_address +EXPORT_SYMBOL vmlinux 0xe7cd99b7 smu_queue_simple +EXPORT_SYMBOL vmlinux 0xe7ce7439 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0xe7d1101c genphy_aneg_done +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7ea60cd mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0xe7ec8ddf deactivate_super +EXPORT_SYMBOL vmlinux 0xe7f03745 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0xe7f1bdb5 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xe7f58bb1 kill_bdev +EXPORT_SYMBOL vmlinux 0xe812d48b block_write_begin +EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe82cc752 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xe8351c0f ppp_channel_index +EXPORT_SYMBOL vmlinux 0xe8456d9b PDE_DATA +EXPORT_SYMBOL vmlinux 0xe876285d __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8c438f3 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0xe8c4894a __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xe8c82453 nvm_end_io +EXPORT_SYMBOL vmlinux 0xe8cf8b37 mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0xe8ec39ce ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xe8ef0ff0 current_kernel_time64 +EXPORT_SYMBOL vmlinux 0xe8f73b7e devm_release_resource +EXPORT_SYMBOL vmlinux 0xe8fb450e pcie_port_service_register +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe91ff02e agp_generic_enable +EXPORT_SYMBOL vmlinux 0xe92bcdf3 devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0xe9320988 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xe9378d58 idr_get_next +EXPORT_SYMBOL vmlinux 0xe944848a inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xe947531a dev_mc_flush +EXPORT_SYMBOL vmlinux 0xe94bed35 pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95b4d22 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xe98987b3 tty_name +EXPORT_SYMBOL vmlinux 0xe98c5c03 set_anon_super +EXPORT_SYMBOL vmlinux 0xe99e5387 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0xe9aecdbc skb_append +EXPORT_SYMBOL vmlinux 0xe9b3062b generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xe9bc0e7e scsi_host_get +EXPORT_SYMBOL vmlinux 0xe9c50ac8 lock_sock_nested +EXPORT_SYMBOL vmlinux 0xe9d16264 param_ops_int +EXPORT_SYMBOL vmlinux 0xe9d4f9a4 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xe9e55a4d input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9f90588 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xea0376f7 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea1557d3 tcp_init_sock +EXPORT_SYMBOL vmlinux 0xea39439c giveup_fpu +EXPORT_SYMBOL vmlinux 0xea3b2024 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0xea44bce1 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xea73f2fd xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xea7a688f mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0xea878837 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xea968c96 ___ratelimit +EXPORT_SYMBOL vmlinux 0xeaade534 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0xeaaf8d41 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0xeacd4761 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0xead51c58 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xeaf8253b dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb3b39a9 tty_port_destroy +EXPORT_SYMBOL vmlinux 0xeb3e2d0e kobject_set_name +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb4757c8 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0xeb5e1923 pci_dev_get +EXPORT_SYMBOL vmlinux 0xeb66e2ee lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0xeb68dc73 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0xeb7ad2e9 ps2_command +EXPORT_SYMBOL vmlinux 0xeb8c7b7b cxl_use_count +EXPORT_SYMBOL vmlinux 0xeb924c13 ata_port_printk +EXPORT_SYMBOL vmlinux 0xeb993aa0 scsi_dma_map +EXPORT_SYMBOL vmlinux 0xeb9b3581 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xeba2a1f7 rtas_indicator_present +EXPORT_SYMBOL vmlinux 0xeba47d25 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xebcab3a6 ppc_pci_io +EXPORT_SYMBOL vmlinux 0xebe727ab inode_init_once +EXPORT_SYMBOL vmlinux 0xebf1de4e ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0xec2aafc2 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0xec30765a _lv1_allocate_io_segment +EXPORT_SYMBOL vmlinux 0xec3677c1 dquot_drop +EXPORT_SYMBOL vmlinux 0xec8e1c98 skb_make_writable +EXPORT_SYMBOL vmlinux 0xecab279c create_empty_buffers +EXPORT_SYMBOL vmlinux 0xecbb2818 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xecbb926f xor_altivec_3 +EXPORT_SYMBOL vmlinux 0xecc42c3e param_get_ulong +EXPORT_SYMBOL vmlinux 0xeccecdce qdisc_destroy +EXPORT_SYMBOL vmlinux 0xecd982a2 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xed0539b7 mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0xed09a48e inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xed0b7040 dcache_readdir +EXPORT_SYMBOL vmlinux 0xed3dc278 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xed44ca82 down_write +EXPORT_SYMBOL vmlinux 0xed471735 pci_disable_device +EXPORT_SYMBOL vmlinux 0xed4aa346 vio_get_attribute +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed646b57 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xed652427 _lv1_set_interrupt_mask +EXPORT_SYMBOL vmlinux 0xed758dd5 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xed880c03 mmc_release_host +EXPORT_SYMBOL vmlinux 0xed8be92f dev_printk_emit +EXPORT_SYMBOL vmlinux 0xed8fd1a8 ip_options_compile +EXPORT_SYMBOL vmlinux 0xed9f0ce8 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xeda22212 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0xedac555d __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc410d0 udplite_table +EXPORT_SYMBOL vmlinux 0xedcf1aa4 elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0xedea8969 write_one_page +EXPORT_SYMBOL vmlinux 0xedef44c5 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xedf0b48c _lv1_storage_get_async_status +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xee0bab12 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xee19db40 pci_assign_resource +EXPORT_SYMBOL vmlinux 0xee22876c inet_getname +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee31a89d md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xee3e5e4e __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xee5bb20b _lv1_panic +EXPORT_SYMBOL vmlinux 0xee75633d kobject_add +EXPORT_SYMBOL vmlinux 0xee86ea9b input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0xee9174c5 _lv1_storage_read +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee93656a input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0xee9a26d1 mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0xeea3cd7a nla_reserve +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeb83040 pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0xeedda7d7 xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0xeeec26e5 devfreq_add_device +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xef04f336 dev_driver_string +EXPORT_SYMBOL vmlinux 0xef0ce4b8 find_lock_entry +EXPORT_SYMBOL vmlinux 0xef143e1b unregister_qdisc +EXPORT_SYMBOL vmlinux 0xef35987c sock_create_lite +EXPORT_SYMBOL vmlinux 0xef39bd8f dquot_disable +EXPORT_SYMBOL vmlinux 0xef41dfa1 unregister_key_type +EXPORT_SYMBOL vmlinux 0xef9ded23 genlmsg_put +EXPORT_SYMBOL vmlinux 0xefaaff0a xfrm_init_state +EXPORT_SYMBOL vmlinux 0xefac6b7e make_kprojid +EXPORT_SYMBOL vmlinux 0xefaeffa9 __ps2_command +EXPORT_SYMBOL vmlinux 0xefafa412 pmac_register_agp_pm +EXPORT_SYMBOL vmlinux 0xefbb7733 compat_ip_setsockopt +EXPORT_SYMBOL vmlinux 0xefbfc45b cfb_copyarea +EXPORT_SYMBOL vmlinux 0xefc2e54d _lv1_storage_send_device_command +EXPORT_SYMBOL vmlinux 0xefcc8160 blk_requeue_request +EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xefd51993 agp_create_memory +EXPORT_SYMBOL vmlinux 0xefd963bf mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefde1bbe flush_dcache_range +EXPORT_SYMBOL vmlinux 0xefece33d netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf00b98e9 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0xf010c09d crypto_sha256_update +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf047bed5 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be +EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0xf0690ef3 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xf076f1a9 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0xf07fe9a0 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf0992ad5 of_device_register +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf0a8237a radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xf0aa18ea udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0xf0babb3c da903x_query_status +EXPORT_SYMBOL vmlinux 0xf0c724ff xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0xf0c76fa4 inet_stream_ops +EXPORT_SYMBOL vmlinux 0xf0caa5fe get_disk +EXPORT_SYMBOL vmlinux 0xf0cfcc6e dquot_destroy +EXPORT_SYMBOL vmlinux 0xf0d2f84a _lv1_gpu_context_free +EXPORT_SYMBOL vmlinux 0xf0d31435 ip6_frag_init +EXPORT_SYMBOL vmlinux 0xf0e4062a block_truncate_page +EXPORT_SYMBOL vmlinux 0xf0e6c464 dev_uc_del +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf0f8958d fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xf0ff896f remove_arg_zero +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf1053f2e sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 +EXPORT_SYMBOL vmlinux 0xf11cd6ce down_interruptible +EXPORT_SYMBOL vmlinux 0xf127226e sock_edemux +EXPORT_SYMBOL vmlinux 0xf14286e1 textsearch_destroy +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf183189b __ioremap_at +EXPORT_SYMBOL vmlinux 0xf18620d9 skb_copy_expand +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1cfadbf skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1db345c inet_dgram_ops +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1eadbba bdevname +EXPORT_SYMBOL vmlinux 0xf1f827c9 md_flush_request +EXPORT_SYMBOL vmlinux 0xf20d2bc1 blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf20ecc59 devm_memremap +EXPORT_SYMBOL vmlinux 0xf217726d __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xf217d73b xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xf22029c9 release_firmware +EXPORT_SYMBOL vmlinux 0xf22881e8 lg_local_lock +EXPORT_SYMBOL vmlinux 0xf22b8423 component_match_add +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf24194cf sock_register +EXPORT_SYMBOL vmlinux 0xf24dcaa8 _lv1_net_stop_rx_dma +EXPORT_SYMBOL vmlinux 0xf254e014 tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0xf25b890e sock_kmalloc +EXPORT_SYMBOL vmlinux 0xf27b1f68 kobject_init +EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered +EXPORT_SYMBOL vmlinux 0xf2a2b163 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0xf2ace693 d_alloc_name +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2d93610 agp_copy_info +EXPORT_SYMBOL vmlinux 0xf2e676c5 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xf303e5ea cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xf30d1036 _lv1_start_ppe_periodic_tracer +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf322a206 bit_waitqueue +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf33a4a58 ps3_sb_event_receive_port_setup +EXPORT_SYMBOL vmlinux 0xf33a6943 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0xf33fc010 fddi_change_mtu +EXPORT_SYMBOL vmlinux 0xf3406d83 blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf34dcb1c proc_remove +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf357db8d pasemi_dma_set_flag +EXPORT_SYMBOL vmlinux 0xf359386c compat_mc_setsockopt +EXPORT_SYMBOL vmlinux 0xf35e2106 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0xf35fdb6c scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf3b68483 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3f8f90b tcp_proto_cgroup +EXPORT_SYMBOL vmlinux 0xf3fc8449 kdb_current_task +EXPORT_SYMBOL vmlinux 0xf4064a04 pci_pme_capable +EXPORT_SYMBOL vmlinux 0xf41c1d77 blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf44e145a register_qdisc +EXPORT_SYMBOL vmlinux 0xf45536ed __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xf4639b2c compat_tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xf46e1736 __dquot_transfer +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4d56eb0 lru_cache_add_file +EXPORT_SYMBOL vmlinux 0xf4e02bad blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xf4e82ff0 get_mm_exe_file +EXPORT_SYMBOL vmlinux 0xf4e8884f netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf51ae235 touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xf51bf88b nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xf5222143 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0xf5255602 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xf533be67 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf55b3b3d __arch_hweight16 +EXPORT_SYMBOL vmlinux 0xf55d841c key_unlink +EXPORT_SYMBOL vmlinux 0xf55f6699 input_register_handle +EXPORT_SYMBOL vmlinux 0xf588aa9c blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xf58c4ba2 abort_creds +EXPORT_SYMBOL vmlinux 0xf599890e tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xf59b6d10 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set +EXPORT_SYMBOL vmlinux 0xf5a62ecc _memset_io +EXPORT_SYMBOL vmlinux 0xf5a7772a pci_find_next_bus +EXPORT_SYMBOL vmlinux 0xf5b816fa __register_binfmt +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5c758bf nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0xf5e1558d crash_shutdown_unregister +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf6213e12 pasemi_dma_clear_flag +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf65778fb fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0xf6579799 agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xf696ebeb scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6ecb763 _lv1_send_event_locally +EXPORT_SYMBOL vmlinux 0xf6f5964d __mmc_claim_host +EXPORT_SYMBOL vmlinux 0xf6f98920 tty_free_termios +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf70dc5ca devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0xf716cb6d fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0xf71e4996 swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0xf75188ef kernel_sendpage +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf76fb117 mach_powernv +EXPORT_SYMBOL vmlinux 0xf77e3192 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xf7838ac2 simple_getattr +EXPORT_SYMBOL vmlinux 0xf79594f7 textsearch_register +EXPORT_SYMBOL vmlinux 0xf7ac360e i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0xf7b92fef nvm_register +EXPORT_SYMBOL vmlinux 0xf7bac0ec _lv1_set_lpm_counter +EXPORT_SYMBOL vmlinux 0xf7f82ed0 nvm_get_blk +EXPORT_SYMBOL vmlinux 0xf8004bfd _lv1_disconnect_interrupt_event_receive_port +EXPORT_SYMBOL vmlinux 0xf805a262 read_code +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf8188d74 pci_save_state +EXPORT_SYMBOL vmlinux 0xf823807b iov_iter_init +EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area +EXPORT_SYMBOL vmlinux 0xf82988ed get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82d499b compat_sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xf82def7a pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf83633e1 vfs_writef +EXPORT_SYMBOL vmlinux 0xf838a0e5 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0xf847ed61 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xf857d44a of_find_device_by_node +EXPORT_SYMBOL vmlinux 0xf88bd870 ip_defrag +EXPORT_SYMBOL vmlinux 0xf8a3c648 mem_cgroup_begin_page_stat +EXPORT_SYMBOL vmlinux 0xf8a6092c dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0xf8ac51a2 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0xf8d04f09 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0xf8d7568d jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xf8ef9a2c generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf90db4b6 ab3100_event_register +EXPORT_SYMBOL vmlinux 0xf9169867 param_get_ullong +EXPORT_SYMBOL vmlinux 0xf95b8571 netdev_warn +EXPORT_SYMBOL vmlinux 0xf9632ac6 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xf99b6f14 dev_addr_flush +EXPORT_SYMBOL vmlinux 0xf99d4b05 sk_receive_skb +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9b467d5 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9c67412 simple_rename +EXPORT_SYMBOL vmlinux 0xf9c6e829 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xf9c7903a rtas +EXPORT_SYMBOL vmlinux 0xf9c8f7f2 from_kuid_munged +EXPORT_SYMBOL vmlinux 0xf9cad956 xfrm_state_update +EXPORT_SYMBOL vmlinux 0xf9ea76d2 phy_start +EXPORT_SYMBOL vmlinux 0xf9f1d456 mark_info_dirty +EXPORT_SYMBOL vmlinux 0xf9f9f729 iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0xfa1f18a8 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa539d10 devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa83f334 skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0xfac01d43 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfad3ed07 seq_vprintf +EXPORT_SYMBOL vmlinux 0xfadb5750 pmu_unlock +EXPORT_SYMBOL vmlinux 0xfae140fe ip_check_defrag +EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL vmlinux 0xfaf02a34 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xfaf986a8 uart_resume_port +EXPORT_SYMBOL vmlinux 0xfafe2489 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xfb0cecfd vm_event_states +EXPORT_SYMBOL vmlinux 0xfb3d90a6 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb813420 dqput +EXPORT_SYMBOL vmlinux 0xfb840f47 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbaf14ef nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0xfbbf8398 abx500_register_ops +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc26570f __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xfc2a23e3 starget_for_each_device +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3b160f mempool_create_node +EXPORT_SYMBOL vmlinux 0xfc4240f9 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0xfc54c7a9 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0xfc5e2aa0 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0xfc88ac67 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0xfc912443 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xfc925e33 inet6_del_offload +EXPORT_SYMBOL vmlinux 0xfc92b052 dst_destroy +EXPORT_SYMBOL vmlinux 0xfc968ecd simple_rmdir +EXPORT_SYMBOL vmlinux 0xfca597b2 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xfcb433e2 neigh_connected_output +EXPORT_SYMBOL vmlinux 0xfcb926cd kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xfcbfc361 down_read +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfceda212 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfd0ae011 generic_ro_fops +EXPORT_SYMBOL vmlinux 0xfd198d97 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xfd244202 register_shrinker +EXPORT_SYMBOL vmlinux 0xfd2690f6 nvm_get_blk_unlocked +EXPORT_SYMBOL vmlinux 0xfd3ac6c7 key_reject_and_link +EXPORT_SYMBOL vmlinux 0xfd3b6477 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xfd3fcd84 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0xfd4148ef agp_put_bridge +EXPORT_SYMBOL vmlinux 0xfd5df590 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xfd68e89d dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfda6e4a0 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xfda7d83c __serio_register_driver +EXPORT_SYMBOL vmlinux 0xfdac5645 dquot_transfer +EXPORT_SYMBOL vmlinux 0xfdae7982 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xfdb6cedc _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0xfdcf5cc2 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0xfde07cdf account_page_redirty +EXPORT_SYMBOL vmlinux 0xfde4839e ps2_end_command +EXPORT_SYMBOL vmlinux 0xfded48ed enable_kernel_fp +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfdfd2f21 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe0cc95d xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xfe133cb6 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xfe17047b kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0xfe2539a0 pci_enable_device +EXPORT_SYMBOL vmlinux 0xfe2582a1 napi_disable +EXPORT_SYMBOL vmlinux 0xfe26fc7c nr_node_ids +EXPORT_SYMBOL vmlinux 0xfe4cb4b5 _lv1_storage_write +EXPORT_SYMBOL vmlinux 0xfe599f12 fget +EXPORT_SYMBOL vmlinux 0xfe5c7a9c of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe685dc5 key_alloc +EXPORT_SYMBOL vmlinux 0xfe6e5fd0 md_reload_sb +EXPORT_SYMBOL vmlinux 0xfe762ee8 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0xfe7c070e scmd_printk +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe8b7919 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfeadb9f9 vlan_vid_add +EXPORT_SYMBOL vmlinux 0xfeb0e2a9 fb_pan_display +EXPORT_SYMBOL vmlinux 0xfeb8e403 security_inode_permission +EXPORT_SYMBOL vmlinux 0xfececff9 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xfed221d9 pasemi_dma_alloc_ring +EXPORT_SYMBOL vmlinux 0xfed350c1 mmc_of_parse +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfef3f675 d_make_root +EXPORT_SYMBOL vmlinux 0xfef40532 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xfefd3aa9 compat_ip_getsockopt +EXPORT_SYMBOL vmlinux 0xff1765c7 rtas_call +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff3ee62b phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0xff4334eb remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0xff57cb29 bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xff63d0cc max8998_write_reg +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff97d264 padata_start +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xff9dea47 elv_add_request +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x01d6725a kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x09828bb4 kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0df8a214 kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0e0f7c09 kvmppc_handle_store +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0e3f1116 kvm_read_guest_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x172a5ab4 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x19292a60 kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1a402fe7 gfn_to_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1a90a123 kvmppc_h_logical_ci_store +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1fdab0a9 kvmppc_core_queue_program +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x206bb9bc kvmppc_hv_ops +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x214a4e12 kvmppc_core_prepare_to_enter +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x27a9834a gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x280f59bb gfn_to_hva_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2a599114 kvmppc_st +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2ced6209 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x312fa9d9 kvm_clear_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3ab45fba kvmppc_handle_load +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x42e20820 kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4513506a __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x46e63710 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4f3f3c13 kvmppc_kvm_pv +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5125b051 kvm_put_kvm +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x521c2693 kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x52e60e5e kvmppc_sanity_check +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x55dc48b9 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x569037f3 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5acd2f54 kvm_read_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5bff6ff5 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5e254d0c kvm_vcpu_uninit +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x629d1664 kvmppc_h_logical_ci_load +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x633b67c8 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x667db834 kvm_vcpu_init +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x669da1fd kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x68d25447 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6ad77638 kvmppc_emulate_mmio +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x72d107ff kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x736fe587 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7aa64803 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x839026a8 kvm_unmap_hva +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x85a5a4b2 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x86119dec kvmppc_xics_hcall +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8a2fad9e vcpu_put +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8b4035f6 kvmppc_core_dequeue_dec +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8da01274 kvm_get_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8e1cd06f kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x92ddfa31 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x944dbe75 gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa3b25545 kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa4f64721 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa8287e31 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa8e5566b gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xab59d373 kvmppc_free_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xad698912 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb3e87ef9 mark_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb53f27f7 gfn_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb75400e4 kvmppc_prepare_to_enter +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xba0aa50b kvmppc_gpa_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbfe739cd kvmppc_set_msr +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc019122a kvm_get_kvm +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc5c8e321 kvmppc_book3s_queue_irqprio +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc70e4b59 kvmppc_claim_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc7c24c7a kvm_clear_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc8060fc1 gfn_to_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcc44961f kvmppc_alloc_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd3a01f1e kvmppc_core_pending_dec +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd439ac68 kvmppc_rtas_hcall +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd46cecfd kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd794d9c9 kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd7d40abe kvmppc_ld +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xdb94e925 kvm_init +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xddffe954 kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xdfd36390 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe3786c92 kvm_get_dirty_log +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe50e0628 vcpu_load +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe5b571cd kvmppc_unfixup_split_real +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xea9c1b60 kvmppc_core_queue_dec +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xee1602ef gfn_to_hva +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xeecee5e2 kvmppc_load_last_inst +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xef11cb35 __tracepoint_kvm_ppc_instr +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xefcb2903 kvmppc_pr_ops +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf4da3546 kvmppc_init_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf5561d18 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf72a8011 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf7e39f88 kvm_write_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xfa258208 kvm_vcpu_block +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xff4b2ee2 kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm-pr 0x1e3e5225 kvmppc_emulate_instruction +EXPORT_SYMBOL_GPL arch/powerpc/platforms/cell/spufs/spufs 0x54e9b501 spu_save +EXPORT_SYMBOL_GPL arch/powerpc/platforms/cell/spufs/spufs 0xdc291ec9 spu_restore +EXPORT_SYMBOL_GPL arch/powerpc/platforms/cell/spufs/spufs 0xf377b6aa spufs_context_fops +EXPORT_SYMBOL_GPL crypto/af_alg 0x14f505c8 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x16476f45 af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0x39e82ccf af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0x58716898 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0x67746fa2 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x6c1530db af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x850d9ea2 af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xa809190f af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xc734bb76 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xd0571083 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xe5345d94 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x171fc378 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x85f5cc4f async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xad113c85 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x149e9bf5 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x6ffb2540 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x40869d26 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x592792b1 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xeaa27410 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xf6204f11 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x9a86fd9c async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x9e119dac async_xor +EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x77b48e6f blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xdc355007 cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x75cab6d5 cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 +EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 +EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 +EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x0eff491d crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x84388d9d crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/cryptd 0x307b9202 cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x64c38b14 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x7db4134d cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x8e48d726 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x9fec2085 cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xacdb7fde cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xdce833cf cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xe4ed3875 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xfbc837e6 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xfd7a9fec cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey +EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey +EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table +EXPORT_SYMBOL_GPL crypto/lrw 0x5c8ca1c2 lrw_crypt +EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table +EXPORT_SYMBOL_GPL crypto/mcryptd 0x1ac078ff shash_ahash_mcryptd_update +EXPORT_SYMBOL_GPL crypto/mcryptd 0x3c7b24d8 mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/mcryptd 0x442357e4 mcryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/mcryptd 0x6fc8ed2a shash_ahash_mcryptd_finup +EXPORT_SYMBOL_GPL crypto/mcryptd 0x8347667c mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0x8b8e3d5e shash_ahash_mcryptd_digest +EXPORT_SYMBOL_GPL crypto/mcryptd 0xad1cfd57 mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0xd541b2dd mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0xde116540 shash_ahash_mcryptd_final +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x15fb1548 crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x4ffcf7e2 crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x70d611e1 crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xefbef772 crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x1c988b98 serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xa0eb8920 twofish_setkey +EXPORT_SYMBOL_GPL crypto/xts 0xd1b8e250 xts_crypt +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0cda5b0c ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x16c0a243 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3d32876c ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4588fe69 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4d440f7a ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x55cd7711 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x57fec0aa ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5d700fef ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x63ad8532 ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6570b86d ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x66278bbf ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x66af6360 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x76742648 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7cc282aa ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9954529b ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x996b9cce ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9ef2ffd0 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb49fa648 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc4a47a1d ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd4c52ba0 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd9288627 ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf05c7a03 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xfc822544 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x1c7b2397 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x282a576a ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x4b9146b2 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x599b2e2c ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7b854b25 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x84e00e9f ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x88e2bd88 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9977d327 ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9c3e0595 ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc71fb181 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd3de3453 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xec880395 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf25fc9c4 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x450652d8 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0xe6b0ae6c sis_info133_for_sata +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x3ee4c0d3 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xbd56781f __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xca863cd0 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xe99099d2 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0902a9b6 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1189d799 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x19512b14 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1dc5011f bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2e5a0835 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2ff7f6ed bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3e813e54 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4e407dd7 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x568ef53e bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x57dc30b3 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x633bcc4f bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x64a9fbb7 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6d380263 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7d86e2e1 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x94bc8a42 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa7eda8b3 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xae64c603 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc6251e6e bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd4bca1c4 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdcd519ac bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xde671347 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdf976ab0 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf5af2d67 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf8eacd85 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x1b6b715f btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x4766c6e0 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x5f070f1a btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x6f48f32b btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb31fbdb4 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xedd9ffaf btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x17bd494a btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x185862c9 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x25dda0dc btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3cc7889a btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x45830563 btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8f58a658 btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa85e94c3 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb08ac3bf btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb6af3b90 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbe34e409 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc5671f25 btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xda946de0 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x00a92bc4 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2c6f355c btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x34a212e0 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x40abe459 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x43176b4b btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6d187eb9 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8052b638 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8b4cf75d btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9c7fc5e8 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf21f8a98 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xffc1ff3b btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x9bf2a70a qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xfc2f1512 qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x9d4bf18f btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x682b7543 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x2c2d5977 nx842_crypto_exit +EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x78f8bdc9 nx842_crypto_compress +EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0xaa564910 nx842_crypto_init +EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0xaa78c6df nx842_crypto_decompress +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x2f1cc226 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x407c627d dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4832aa81 dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc26d8fc3 dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xfedda1a6 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x4ab9bf18 hsu_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xae33f223 hsu_dma_irq +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xed0993b8 hsu_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x076c3e27 vchan_find_desc +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x097da9e0 vchan_init +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x3b24aa3d vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xac8efff3 vchan_tx_submit +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c9f4f93 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0da819a7 edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0ed35ec4 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1402daff edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1faf6b41 edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x41134e82 edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x47068028 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x53e0b190 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x55213a67 edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x67cffda9 edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x719b006d edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x724ad30b edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7e3ac44d edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8d332379 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x95c9798f edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x96e2e21d edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9a23c3b3 edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa7d68c68 edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xaaed8226 edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe391c20f find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf16d10d6 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf72c695e edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xfd3ae96c edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0f79704a fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x119bcbec of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1fb0e151 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2f9efe4c fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x81f70cd5 fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x823029b0 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xc59e86ea bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xc7e2ddf3 bgpio_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x5f68fdcc __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xc8548dde __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x06235a14 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x51f723b4 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x57e15d00 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x96892ffb of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa0f2a8cf drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xde1e5ec9 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x1fdd70e6 ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6090bb54 ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xe658429e ttm_dma_page_alloc_debugfs +EXPORT_SYMBOL_GPL drivers/hid/hid 0x019da9e7 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x03edbe5c hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0f457916 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x10086c94 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x18419417 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x207b4f63 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x23797d69 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x24f371cb hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x28482dc0 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2f7e9593 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3961f00d __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4155308c hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x42bb39eb hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x453f4931 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x46f87483 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4a952932 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x51b512a6 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x75788819 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7a5abda4 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x914cdffb hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9237ca17 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x95167086 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa9d22893 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xab2d97a1 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0xafa10478 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0xafa3b876 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbd10ca55 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc8dac007 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd28703ef hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd76ceb09 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xde9167d8 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe1fd7f26 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe3be339c hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xea9000d7 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf5e35ce7 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf6a9c144 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x38aabda1 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x03fc45b7 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x161890b1 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x2d2945a5 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x40b1c61a roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x6cddc212 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xf593eb84 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x015dfbd1 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x170cbc88 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x195a2344 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x68c6447e sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc4477a3d sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd113267a sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xef1f5c26 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf1d4fe7e sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf2d4bda3 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x75126ff9 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x03a52dd3 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x069960a7 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x06dd2c59 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0726f841 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0dbe2b64 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1b0085be hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1e082d06 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2fa6be40 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3cf3ac16 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4b4df15f hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7ce2a2fc hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7d0730a0 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7e64a409 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x930f064c hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd39558fc hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd42486ca hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe58664ed hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfb916a6e hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x01fa26c4 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x0249a437 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xb6353f87 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x094ee155 pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x190e9b76 pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x367873ce pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x48a3e305 pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x85273522 pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa8f58d44 pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb2c0c31c pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb37be1f8 pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb5a8688f pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xc092483b pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xca8d5538 pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xccca84ab pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xcce437a6 pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xd67cf244 pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf520a415 pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0ff602a3 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x1715dd08 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x28cffaab intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6262bfd4 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x669d9b3c intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb15894c1 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xdf4feea9 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x63bbcd84 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x68f1dacc stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x8f3aa19f stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb07303a7 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf3a39466 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x271c2248 i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x2d99b656 i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x54818cdb i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xbe2e9a23 i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xef9f7bc9 i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x26cde695 i2c_del_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xb1f7b30f i2c_add_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xd864e03e i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xfdf99738 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x2822e972 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x2ad2934b bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x904e2275 bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x188dc973 ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x1d13ec1c ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x40abbfb9 ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x82775a6b ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x9115327a ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x9357595b ad_sd_reset +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x9c2476bd ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x9cfd442f ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xad050cd0 ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xdb22862a ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x5c764bbb iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xf12b3809 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x9323f683 ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xd19038bb ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x3d694938 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xc3a4ac47 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xdf8df506 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x2df4d94c adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x35ccac8a adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x3ed9e11d adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x5d05e07e adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x6ec90ee4 adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x886f7b85 adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x8dfbca7f adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x9bb8fb1c adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc1b709d4 adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc59a4052 adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf7c7fc88 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xfd38fa12 adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x016dc9c8 iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x016e1ac3 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x07311590 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0a28979b iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1f5fe2e0 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x333382ed iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x45cfdbf5 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4a735ded iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dca3f44 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5af5fa6e iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5dd893b6 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6a53ef80 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6ec89871 devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x73ed5331 devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7a973bd0 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x83406057 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8b7ac580 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8df4fa15 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x98d447ed iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9cf4c7c7 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa6dfa960 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc09236d4 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcbdaedc7 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcd5811b6 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe527e371 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe660a9bc devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf27fc903 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf74a6f0b iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf940d9b1 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfa40a32e iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfe02add5 devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xb63b7664 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xef7c5841 matrix_keypad_parse_of_params +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe493aee5 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x13a599a5 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x90a1afe0 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x9698ccc5 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x28a8c344 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x5465b9ce cyttsp_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xc6923b44 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x2f376030 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x87465e3d cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x612c6d04 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xe16de9a4 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xe544fa37 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xeaf2d124 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1ec3f736 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x28bbb88a wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5c901a5a wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6589ad61 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6e86c1d3 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x84ccbb11 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xafbe9d33 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb26a28b7 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xcfd7eaf2 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd269f7a8 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xecab4900 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf5c76437 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x02668b88 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x163307c1 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x42a367d7 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x8151e0cb ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xabb181c9 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb3f3de2d ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xdc4152ba ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xdd577e2c ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe6a536b0 ipack_put_device +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x13436f5e gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x150e326a gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x1ca7b1c3 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x2138a922 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3c93bc68 gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x5b47c15d gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x719594ea gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7ab0069e gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7f00ddee gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x914ad1d8 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xac853484 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd0b5259c gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd679ce23 gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xef242fce gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xef589351 gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xef7ee2a3 gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf9e7aa0e gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1e245efb led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x4698eba8 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x4f912b0e led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x87803d32 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x905130e8 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xeb68e12b led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x0c04db20 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x34e32907 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x4df26705 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x573a5377 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x57641aff lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9050c13a lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x90f41383 lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x98fbd190 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9e03a0e2 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb9fb1c8a lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xcf3515a6 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x0a0527be wf_register_client +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x2f4cb74b wf_register_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x5279b5cb wf_get_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x5cc150e0 wf_unregister_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x75147afa wf_set_overtemp +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x77f539a9 wf_get_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x808f70dd wf_put_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x897797df wf_unregister_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xbac34038 wf_put_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xbcace2a5 wf_unregister_client +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xd2826f56 wf_register_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xed82a14f wf_clear_overtemp +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_pid 0x9808f147 wf_pid_run +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_pid 0xb8ed5b2c wf_cpu_pid_init +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_pid 0xcd9a18ef wf_pid_init +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_pid 0xceda69f1 wf_cpu_pid_run +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_smu_sat 0xe05851d5 smu_sat_get_sdb_partition +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x07d05a30 mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x2d8a29b4 mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x33d12de7 mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x5cd6f777 mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x5eb75fd4 mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x830cc338 mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xa0320d5a mcb_bus_get +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb095bad4 mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xccdeadc2 mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd45b39d0 mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd528eb81 __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe9fa8639 chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf9602acb mcb_release_bus +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x021811cf __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0f0677b8 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x10e6a889 __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1154f7a1 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15aa8e40 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x174c2a29 __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2205bcf9 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3fc7cb7f __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x469f38de __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4ba51ecf __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5b2a89c7 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d950f2a __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5e21030c __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5ed04550 __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6eef9654 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x74ab7b0f __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x84efb763 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8fe32879 __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x91f02667 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x93f7fc02 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa1de5277 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa81bf581 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7d964de __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbbace2cd __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc6673631 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8a2f711 __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe3de2ba2 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe902838d __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec919105 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeea27f46 __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfad1ec73 __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x33834097 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x40ac24e8 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x81660d1f dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8b318230 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x923726dc dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa53047e6 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe0517e96 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe2ff0776 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfe3db482 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aba7f5e dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7b7ac13d dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9310ba06 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9c256008 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa1d2413a dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa448e19f dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xafbda3f3 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcbb1bae2 dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x2e0f0bc1 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x3c710f0d dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x531ae83a dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x9692a6c2 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xc8f44863 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xd3c2f825 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xf74d400b dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x176c2ea2 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x5e1590f2 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x2a04d298 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4430764e dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x45ab972a dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x52bde202 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5a4ba679 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x6a85bc8f dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa68e1f06 dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xe2c80560 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfad9d53a dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfc62ef4e dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfcad73a1 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x17c36f29 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42dbdfc3 dm_tm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49b35849 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x55b4bd4d dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6cc8d989 dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x827a42f4 dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9f624559 dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xafeda29f dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd29923fb dm_tm_shadow_block +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf375d009 dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf5455120 dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x12cb054b saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x1ed77334 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x24b92845 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x444c0296 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x519eb430 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x5a544651 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x85eeccb0 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9fd0668b saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfbb4680e saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfeb19f78 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0a3d05c4 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0f8238ca saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x77694665 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x960a2466 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xa3912778 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xbd7b99d2 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xe5243ec5 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1b90ee8f smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x364edd27 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37228311 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x42283dc1 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4fde226e smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x778f1d92 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7977ca22 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x90556aa2 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9a5e1473 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9ccd1533 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb7b5d5cd smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd20fdcd5 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd6b11c75 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdde32b0e sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xef0bf879 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf9cef16e smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfc632364 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xa6670c1f as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x68bf97eb cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x44daea4c tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x0bf7ef9d media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0x298427cc media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0x2ce2db29 media_entity_create_link +EXPORT_SYMBOL_GPL drivers/media/media 0x41477842 media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0x4f4cc3ff __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0x7def42ac media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0x820191df media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x896e8e53 media_entity_init +EXPORT_SYMBOL_GPL drivers/media/media 0x8a8d25ad media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x95167802 media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0x99cf5c6a media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xa437e7d4 media_entity_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0xac5da3f8 media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0xc916b98a media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0xdc0ba6bf __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xe77760f0 media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0xe9df5b96 media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0xf0e61467 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x9fc31218 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x126e1279 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1498343e mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x188a3866 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1987fdb4 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x28449539 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x458a5c13 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x51c18825 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7f7d7629 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8609744d mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9471b1cc mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa3601f23 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc06ff807 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc5a6ee11 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcf42c40e mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd318b94f mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xeb2233e9 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf11f8aa6 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf9079bd8 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfcb82b65 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x05f9906f saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1b086abc saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x326f2380 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x33ebc2bf saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3f9bff2d saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x483ac368 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x53443052 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x54731571 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x63e26e58 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x67674793 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa0c7d2e4 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa4d5d42f saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc7808f44 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcb8cb069 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd03147c5 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd2afc871 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd9f9c2f2 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf304592c saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf7de6e9c saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x02855788 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x174a9297 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x3c9013ce ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x4160f313 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x47e8e723 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x48df5d32 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x96b3b675 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0b2585ce xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x30d8b5eb xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x490bd11c xvip_get_format_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x7c2a0b29 xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x83da58ff xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x83f83b07 xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb8ef776d xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xf0a6dc19 xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xf0e16e6b xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x244199e7 xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x727cf7a7 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xcac73290 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x00896d13 rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x03dc6149 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0a341b75 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1328ba17 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x15af27e1 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x41561db2 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4542ce6f ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4a93f480 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x525ee654 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6ad57f74 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x86911d2b rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x886b77e6 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x95734400 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa46d3240 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa8c3d59a rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbe7a6271 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc388affc ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc60e2e9e rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf158c366 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x3bdaa386 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x8df7ed5d microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x271f39c9 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x8af992f5 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x48c78460 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x67fd993e tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xeb8fb3c2 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xed3df683 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xdb3884c6 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xb929eab5 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xd53e7b08 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x3cb0d156 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x6b5dee2f tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x05810e7d simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x04f0eabb cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x07699530 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1c802d66 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2dbf391f cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2efc9674 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x384843d5 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x76ac0276 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x79d2e8bc cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x82fc78a4 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8fabbbd8 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9dff57e5 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xaf0f948a cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb6d1c88c cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb972f62c cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcc5175f7 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd5bb9e0c cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xee1ac25f cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xefcf947a cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf7970d3a cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfd4764bd is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xcaa06949 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x07886a36 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x16c7c5bb em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1b4fe680 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1db50168 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1dc13882 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3108f573 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3c30e435 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5f1d8e30 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x68d501f5 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7012d6b4 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x70bff589 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8ca1ed21 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9700769b em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa0a6be14 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xacba4cbc em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb2fe798c em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbabcafae em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc3c34d86 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe7143316 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x14d508ec tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x30a24067 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x78d5ef66 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xc79f0308 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x4e8dfb72 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x7934e5cb v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x7e41208e v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x8cdd8945 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x9dad98ce v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xc0b467f6 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08982d59 v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x30988482 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x457b0731 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x00b1b191 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x088db871 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2c063db6 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x42cc5743 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x43dbea5f v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x44c1a8da v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4864a12d v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4e517dbc v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x580c9c5d v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x62ace0b4 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x64e1a048 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x68aab64a v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6b2674bd v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x94a3cd67 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa80332f7 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xabfbeb97 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb17c677a v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbc4e1148 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd66e2680 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdd574fa8 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdfb7c507 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe0f1d7ce v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe3d9b131 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe4b44ff5 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xea068f3f v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf0f1c678 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf350324e v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0969f5a7 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1dd84758 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3d0b4a11 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4e3e4b74 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x584552bb videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x64ccdb86 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x67686fe7 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6dfe6e78 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7230b2e4 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x86376b14 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x924c8e73 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa5dbdf15 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa6de1b61 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb69caa89 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb8f7d9d7 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb9b725ca videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc13b4485 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc4f6c883 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xca15b6ef videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd577b3e6 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe6e8fcd7 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf2218308 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfa271be4 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfbe775c8 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x03123d01 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x50505afc videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x7268f5b9 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xd83f7c9a videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x2de3284c videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x6dd8c01a videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xc4d8deeb videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x05fee72c vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x10b53a42 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x14084f5c vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x39a91867 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x3e8a2834 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x4a816e6a vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x692880c4 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7f1d4d0c vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x805c72d3 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x88c3a4e0 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x8b4458f5 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x94865161 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x97b2ed54 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x9e4aac3a vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb125c901 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd12938f0 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xeabb31b4 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xeccb7e1b vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x8423dc28 vb2_dma_contig_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xda6d1af4 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x02acae7a vb2_dma_sg_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xb3092c48 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd30ec30f vb2_dma_sg_cleanup_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0x68c2652f vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0398a052 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0496c71f vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x07b643ed vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x07e5149e vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x08c295da vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1278b5d4 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2194b90b vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x22ac7d4b vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x37c9ecac vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3995e901 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3fcabbf5 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x411efc8b vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5e67f45e vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6934cb49 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x81595132 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x83d5fad1 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x88003376 vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8c90751c vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa35447ea vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa7de8d9d vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa879e74e vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa917d7b7 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa9752a08 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc474f070 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xca84c813 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xcd8690f0 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd662ebe2 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdc30261e _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdf1637a6 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe4cbc8cc vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xeecafc8f vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xef48594c vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x0169bab3 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x092eda75 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0bab8ec0 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x133adfc4 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x19378a46 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1ef3a428 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x28bd9048 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ab9d732 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3bcace3d v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4101e7a1 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x42533040 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e73fa8d __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x524d5e39 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x573d4d0b v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x59f36f51 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6c06e00c v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6efd9a15 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74a017c5 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x799bf54f v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7bfda7d4 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7c147b30 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7e173c6f v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7f5c524c v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x802accdb v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x99b8e196 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9cc16819 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa2c1f982 v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa38bdf68 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa5d32fc9 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa72016d6 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaca2544a __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb026cf6a v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb782e600 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6429d8b __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd48fc083 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd63bf8ef v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd85ddae4 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xea32d834 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x617093ae pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x8a371782 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x90d4159d pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x17655e74 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x33ce44f4 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb4972fb9 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xca8c43e1 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xe1cea715 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xec393d2d da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xf698c960 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0c3a166c kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1678a890 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x28702af9 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x513da4ca kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xa4df0144 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xbcfae5da kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xc864f8a3 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xffb60738 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x0ac34668 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x9d6bee26 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xbe81abe3 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x0e353ce7 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x17aa7ac6 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x25434fb1 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2636a253 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x27128735 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x57b193fd lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x75bef83f lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x0d91d1bf lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x58831203 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xc5c1e65f lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x1b3f5969 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x498ae721 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x5b851249 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x73f7487c mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7f5ffcd9 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x835c4ef2 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x00f5853d pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x17ecced4 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x217b3959 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x43fef801 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x93458e37 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xaa7f1149 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb257c618 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb4cf078b pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbca9b079 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdd53b730 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf2235b8e pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x3dc11916 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x5fe89479 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x15d5022b pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x5dd73c8a pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa4e7fc6d pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xad0e8e5c pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xf2827ab6 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x13ca7699 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x14397320 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2ca41520 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3b1f98b4 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x41972694 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x42b7785c rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x452d991b rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5351ae01 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x582496c8 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x58927c6a rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x657d9a07 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x6ebfadff rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x738b5ee4 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x883b70ce rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb32abd93 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xbf6fa342 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xcc689844 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xda11ccc3 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe50c9f36 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe7f17327 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe95014f7 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe9d7f35e rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf69c7ad9 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xfed09000 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x03cfa878 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x124144a7 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x1604c2d7 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x20d91d57 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x42a92dc3 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x57bcac57 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x62d7e68c rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x7ef74669 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xa7242405 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe99cdfb3 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xf2087185 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xf4e64594 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xfeb4aebd rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x00d68c9f si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x067f5600 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x08af6ef5 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2e3ecb4e si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2f56c8ba si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3107eaef si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3bc28096 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3c24383a si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3d70f64e si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x43db1570 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4c42087e si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5b8d6d5a si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x66ab082e si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6a9ef28d si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x73912091 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7e923587 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8184c7cd si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x829c0787 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8825e24d si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9b05c786 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9da2a2b8 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9fa42525 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa6e7bf0f si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb9546eaf si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc6153d21 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc815b221 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc87b379b si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd3f6cc2b si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd5c1df31 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd6a2b41f si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe1798048 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf6b88cf4 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf792babc si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xff0164e3 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x1d247a13 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x88628c80 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x9d80da54 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xdc3b2a83 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xdf84c3d3 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x15cea353 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x3c953dcc am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x47c57edc am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xd798e634 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x8f0aa756 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x9985e0e7 tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xc8b2174f tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xf013913c tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xb8aeba98 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x33076164 bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x53de7bad bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x8d917d8c bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xf40a14ee bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x3382c093 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x3d9b9bf2 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xee90ffcc cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xfc0d72e8 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x02062952 cxl_allocate_afu_irqs +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x059b29cc cxl_dev_context_init +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x08ee42fb cxl_fd_ioctl +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x0e033436 cxl_unmap_afu_irq +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x10c97224 cxl_fops_get_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x158f486c cxl_pci_to_afu +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x2fc6113d cxl_process_element +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x455fb98c cxl_set_master +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x467bf5a0 cxl_afu_reset +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x4f9ab3d3 cxl_get_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x60367f84 cxl_read_adapter_vpd +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x612ceacc cxl_free_afu_irqs +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x8740bc47 cxl_psa_unmap +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x9023bca3 cxl_map_afu_irq +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x9116195f cxl_fd_poll +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x91292083 cxl_release_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xa4308c20 cxl_fd_mmap +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xb1a6cc90 cxl_fd_release +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xb4faefda cxl_fd_read +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xbe6b4565 cxl_start_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xc71a3732 cxl_psa_map +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xca78957f cxl_pci_to_cfg_record +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xd2b97ec4 cxl_start_work +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xd9e2e77c cxl_stop_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xdc1d9edb cxl_fd_open +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xe20414f4 cxl_get_fd +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xeacb4de8 cxl_perst_reloads_same_image +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x092f565e enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x169d1eb0 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x4b6501c1 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x61eee471 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x8d5876c3 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x9df68e56 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xcdcf600f enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xfe419fc0 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x41ebd5d2 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4d80bfdd lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x77fce23f lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8277b4c5 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8845da25 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb6b319b3 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xbb6b83cc lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc064f569 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x95ea0797 st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xbe92fb75 st_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0185a21e sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3ec270d8 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x433f251d sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5afb5c20 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x725d478e sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7e03e0eb sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa6a93412 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb95d321d sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd0f4b0a3 sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd4768a83 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xea42935c sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf3d002de sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf6c92dd2 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfbfba77a sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0700237e sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0d3788c8 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x3ce5e3c2 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x550eb7b7 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x6b85c121 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8c26889c sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xabbcc7ac sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc58c6632 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd5ff46af sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x43653882 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x7c4c1d6a cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xbe7b1d14 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x22a3e1a6 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x5cf1aa76 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xaf0865f0 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xcd36ccf1 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x5219e1d6 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xe328730d cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xe587b034 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0b970466 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0e0297e7 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1654ba10 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x27e6dee7 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x29e8cc6a mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x464a8f3c mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4f72ea23 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x52f76fd0 register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x54587a93 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5d1fa208 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x60bdb720 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6231b48a mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x62f83991 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x64289d74 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6704b4e2 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6a3f62ff __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6e797ba7 mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6e95115a get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x79183a81 mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7c72832e mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7d8cb23e mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x84228cc6 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x850cf699 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x88bdb724 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8d974eca mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8ec78ceb mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x924a2be2 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa377ca4b __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa7d4c8f4 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xae7ff2c2 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb57a8fb6 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb63eb8d2 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc6833423 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc9a2fbde mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd1f7ebb9 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe0a70140 mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe2942852 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe5a06092 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe73097dc register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe996598c mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xed2ed76a mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xef7dd0a2 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x149a426d deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x32dff460 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x37d10b61 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x566b2c65 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xee788517 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x491618a1 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xd8fc4d9d nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x4e2db7b6 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x9fde06e0 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xae865cba onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xb0ba0f6a spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x027a7c6c ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2281008d ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3b1fc9d3 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3fe2f458 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4c7261f2 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x73f350b9 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8077f77e ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x820ebbcf ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8f780243 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9a8f38e7 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9d838e58 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdc6e5123 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe609eed9 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe8a6a9d6 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x78536ef6 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xd4b53548 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x2f4a7692 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x534c74e4 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xb8b69c88 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xc958123a free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd77ea8ac register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xffb7de49 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0caaedb6 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x13888a15 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x146bcfe3 can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x1e8c15d9 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x2706c543 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x270b61f8 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x49bea295 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x660d93be unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x706bd39a free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x8816073d alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x90ae373d devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa4bad773 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa7c2f098 alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xace7c292 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xad21292a alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb10856eb can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc91304f0 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xeb2f54d2 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x578eb58e register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xa4fb94d3 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xc0ac0bf2 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xcdbcf14f alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x29909e35 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x6aec5e07 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x86c3a166 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x8c55ac36 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x0451be4a arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xdc6d22ba arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0320fab6 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05d6057f mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0650002c mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c40aa63 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f56a50e mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14589013 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14aea68e mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17785224 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ed0d14d mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x223a90b4 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x252f2434 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25c6d53a mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28515247 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c82f124 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d11e8d0 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d1e38f8 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f6be5a6 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34404d26 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x356125d6 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36915876 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39fa86dc __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b98dfd5 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b9a4df2 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3bad0167 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c7f2a68 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x465be34e mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47663c9b mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x476a09c7 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47ae7146 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4cd36355 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e741b9a mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5010c272 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52579018 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52f983a5 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x540cca1c mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5627c21f mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5631c66c __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57a2dffa mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a8d71a9 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e41dd55 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60250ba0 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61a218c2 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61ffe360 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63361183 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67a97261 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x699dc769 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f1c512e __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70a0a535 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7283a863 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7655d2c3 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x774b3247 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a74bf96 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7da48e87 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7dfde169 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8057bfcc mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x845ec1b4 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88d5d9bb mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x897a9f05 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x898caf8d mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90cc86df mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9244860a mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92e669e5 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93442e8b mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x977afce2 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x979590c3 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99188a51 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b9a0bc5 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d49da00 mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e768302 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ea0b383 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0d2fe63 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa31011ec mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa43b0660 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa85bbb2a mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab38f0fe mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaba70e37 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaea74cce mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4ef6c02 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba2c3044 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb537eb0 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe89016f mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf9bd1ce mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfe6b619 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc00e5279 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2f37555 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4cad604 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc71add8c mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7ad456e mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9dbbacc mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc08095c mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc3f45b3 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc7a9686 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd60bc5b mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce7a3fd7 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf063457 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0376d44 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4bfdf08 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6321b2a mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb019cf6 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb12982a mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdcb95442 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde622ab1 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf1145f7 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdfc32879 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe09fe00c mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe14860c4 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe18bdac8 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe26e4320 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2c83490 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3b283f5 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3dcd7cb mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4bb2dfa mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5d1ecd2 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe804c712 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe94ea505 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb4aa61e mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebacaf6f mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec0373e8 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xecf22a41 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee82a10f mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3e6968e mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5207374 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6e0254d mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7054bfa mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0dd68b94 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x195cf58c mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x197c9f68 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d073a3a mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f9b2c7e mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25d337ad mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26071771 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34a226ad mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3712dd2c mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44231a62 mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c7b0660 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58a6134f mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5917bda4 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59f3e3db mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6231515f mlx5_set_port_proto +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63b6e737 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6605152f mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66507b35 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6fc8217a mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x849f36c3 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87e09931 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8836a80b mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b498a5f mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x939ef9de mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94298256 mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x975e8cec mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x986b9a9e mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9db905c5 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab908945 mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad014992 mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2394064 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbaa642e8 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc35c3f16 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3f3064d mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc638a371 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd76c0c86 mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd80963fa mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbfeae70 mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdcf55a97 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdebe5f33 mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9745521 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeadaad8f mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefa7bf11 mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5de677a mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb0a6aae mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x4c472395 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x5e28947e regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xac144314 regmap_encx24j600_spi_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x544b4f24 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x58fbe654 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xcd0d5894 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xfa67dd1e stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x4607e97a stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x866972cd stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x9515b29e stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xcce76959 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x18f5c3da cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x1f600356 cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x2d7a4b57 cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x2f58bbc8 cpsw_ale_control_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x55abaf30 cpsw_ale_control_get +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x84da689c cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x932ed7d7 cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x98b2de48 cpsw_ale_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x9e757bb1 cpsw_ale_dump +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xa9d2034d cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xd6bf5952 cpsw_ale_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xd83df009 cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xda32453b cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xed883e33 cpsw_ale_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xf4b9002b cpsw_ale_start +EXPORT_SYMBOL_GPL drivers/net/geneve 0x0612cec2 geneve_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/geneve 0xbb4c976b geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x27928954 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xad2a65d5 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xb48fca19 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xd5b410c2 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvtap 0x18745c66 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0e8390b0 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x16dc21f3 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5a0ae1d8 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6af5a569 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8db032df bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa7d11e13 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb0c96348 bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbfd0c7f3 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdfa6087a bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf2941848 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0xb6f5091a mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x25b89003 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x2dadfc7a usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xd6c88556 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xdd9b37be usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x042bcb87 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3f96c430 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x71d06391 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa0dd196d cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb0a8313e cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb1a61bd0 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc8ee5f2e cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd673fefb cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe0b09cb5 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x03211a80 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x245b5585 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x9eb0ae81 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xb45d2394 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xbebb877b rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xfb198f6c rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x00bc68a4 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x033f494b usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x03576e5e usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x08c3e8df usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1235ec89 usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x209ec3ac usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x260c5d4b usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3bebdcb0 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3f7c2835 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4f90f483 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x50bc8c3d usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x57529adf usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5b5c7738 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6000c534 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6033ff8e usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x69bb84c8 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6bd9c24f usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x709840bf usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x871b850d usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x951c4562 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9c2cdb3b usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa75d32f9 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xae466570 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb7bfed69 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbccd5972 usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbe894237 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc371dde4 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe08d09ed usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xeaff61b4 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xecfbc6cb usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf0690268 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf0b52e20 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x3e27048e vxlan_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x4fd60142 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0279223e i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1378068c i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x16074eb2 i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1a879b95 i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x35d280f1 i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x39746bdd i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4fb5208c i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x6327af2d i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x916e6c78 i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xab927d2f i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb3c711b4 i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xbfc34b3d i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd654a75e i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe8200c86 i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf1592581 i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf4905e53 i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x26f5fb0b cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x418be23c cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xac339b8c cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xd69dbdfb cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x25118038 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x12485151 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x25f9bc62 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x4bff4b7a il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xcb4734a8 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xead99134 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x002b2e74 iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0205c305 iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0d556623 iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0df0eccf iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0e67f2fc iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0f48dcb7 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x181ee60f iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1eb132b0 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2f51ad33 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3f5fb419 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x547ece6f __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5d52f29f iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x6a8b8a4b iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x6bfa1e64 __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x6e2cc419 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7a179cf8 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x861b9b22 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x874e12b6 iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9392d632 iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x95e019c1 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb0383f4b iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xbd8ff68b iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc67c31ed iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc973d377 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd19cf853 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd8b746a2 iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xde5a743c iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe0d3442b iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf0529abe iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf5aea4a7 iwl_notification_wait_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xfe17902a iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x01c71557 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x0686270b lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x2b5e6a91 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x2f530fb1 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x4cd3c0a4 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x52c01c87 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5e2ffcda lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5f4dc822 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x826d185a lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x8b3c6d25 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9422b781 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa0d4c04f lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa6be96d2 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xd47a6658 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf0ab7660 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xfae684ec lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x03ce2905 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x15f97275 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x865a1551 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x96bba9d9 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x9f535bfc lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xa193a211 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xe9a3a211 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xf6c59082 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x07c57d5d mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x07fd6e03 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x098961cd mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x098eec03 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x0d135748 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x10a93caf mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x20337549 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x25388c4e mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x38e1fd63 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x4d604f69 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x60f09bbc mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x666ce82b mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x6a587cd7 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x92d84ed9 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x97ab02c5 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x9c2d238a mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc8ef113b mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xdddcc02a mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xe87452db mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x3cbd7f2e p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x8990367c p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x920860e3 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x9397a98b p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x956e6b6b p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x98d740ae p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xa9cceabf p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xb5f2ded4 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xd4d656f8 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x822a8d3b dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8ae902ac rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x970b64a8 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa668a62d dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x157d5a1b rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x178212a5 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x36e7414f rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3cb1433b rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x40ea3f91 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x44dd759f rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4d5bf71a rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x65c0651b rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x666f9cc6 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x682a3965 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x68bd45f2 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7379b83a rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x73b285f5 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7693ba11 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7be341aa rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8ff8566b rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x959f7ac9 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9d46dcf9 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9e877172 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa1d09804 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa901695a rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xae33d805 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbf72caf6 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc2491625 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc90c224f rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xde3742b4 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe517e2ae rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d0b6636 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d45c9fa rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x12f4d0e8 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x22b7c6cd rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x47d6c9f0 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4f417946 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x524151b1 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b4de810 rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ddb298a rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9345e165 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9c02f205 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9f2061df rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa2112a73 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb6f77f85 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbd0410c1 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc9bd8cb6 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe4c57663 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe5fd6f0c rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe8509c15 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf6da006e rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf72f846c rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x24e32750 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x50181671 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x93406bfc rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xd3393b2e rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0d7c2811 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x11386114 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1e5f4b4f rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x23f5a36b rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x30e937b8 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x311e97c2 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3c71bc28 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x434d25fd rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5157aecc rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5759979e rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5ebe82f5 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x66267768 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x67b00b1b rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6ff4764a rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7a34baa0 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7f18036b rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8592741c rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8b2924a1 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8ebde78d rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8f02e5f8 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8f0fdd5a rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x97f72137 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x99629486 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9d1cb4f7 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa1b18f9b rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa6e43655 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xaa212405 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xad6d2f9c rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xaf32ac26 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb149768a rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbbe21fd3 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc025ddeb rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc0e92050 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcf17bd1a rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xdae9097c rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe5820c93 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xeae3b4c2 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfeaf1b24 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0044062e rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x1544056b rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x192b4d7f rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x6d57ff43 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x7969eb6f rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x7eabe872 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x7fb21f0a rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x9c94061e rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xa2b853fd rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xd56876ed rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xdc462b4d rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xee46d68c rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xf7b0c4ea rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x04cc0ca0 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x06ba25b0 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x071896d9 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x07cb9855 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x112d4c6d rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x12f37421 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1dd6162d rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x20981182 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2bdb0857 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2ec55b3e rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3f1e554b rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4341d5f0 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x49ac6544 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4b17f62a rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x53b759e3 rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x59156edf rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5e8ed063 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x64393632 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x654cf831 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6a467844 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6ef894ba rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x72ef2f9b rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7433bfdd rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x745be4a0 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7e46f30f rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x83a75181 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8583fea5 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x87435f27 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x923efb87 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa437fd2a rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xaeb7c084 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb1518ef1 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb83843c4 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc85646a1 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd5078b64 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd511f6e2 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe13ff81d rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe3e0b793 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe5fe4e1c rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xee76c0a6 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xefc8e4dd rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf045f404 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf213e174 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfbde2053 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfcabccfa rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfd4a2ea6 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x204d7735 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x20f561db rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x47cc0711 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xb8703260 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xdfced66e rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x3a88ec59 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x46e80379 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xebbf0d57 rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xf4427ff1 rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x056fd110 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x0c038552 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x21607bd2 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x45dcc206 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x80f5215a rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x8b498fbe rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x9066ccf3 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x91c85409 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xad9503c1 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc788f459 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc91a67e6 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xcc9b61a2 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe2d2ad57 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe51c8ee3 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe6e0f5c6 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xee9f5c53 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x0b8b896e wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x6563a839 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xd541ca1b wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x08a3e0ce wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x090ee106 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x09f22eb0 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x136cefcc wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x239f49e3 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x256dc046 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x26471b8b wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x274b405c wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2773e70b wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2e294a5b wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x31e8c0c6 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x442570f1 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4ec0c2d5 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5424707d wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5588725b wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6a631942 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6ee4430e wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x72cb0f35 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x827acf80 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x82a2903b wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x87cd281d wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8cc0935f wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8e72c2c5 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9060b5e6 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x916a9d70 wl1271_ps_elp_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x94827dff wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9bb03533 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa6e992a3 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaaad3f97 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb4401a89 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb69aea5e wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb805a0fa wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc283bba1 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xded3ce51 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe29c4dd1 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe84c9bb1 wl1271_ps_elp_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe8a71275 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xeda9696d wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xee9ba556 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf07ef497 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf139d1cd wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf6cadca1 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf9805302 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf9dd286c wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfc5d888c wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x97f6dd4f nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x9fdcf4cc nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xcfff30e8 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xdbdb7038 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x0d73d252 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x1b50b4b7 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x5b05bc83 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x92feeaa9 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa8923a37 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xba813260 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xde0c6364 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf762e170 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x60400f5f ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x681c4718 ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xefb9071e ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x224f51bf nvmem_device_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x2e9f9995 nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3866e217 nvmem_device_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x58168940 devm_nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x7828edad nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x7d0e6184 of_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xaf91f68e nvmem_register +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xb40b42e5 of_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc697b0f7 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xd9561df4 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe9ace103 devm_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x01cc7086 rpaphp_slot_head +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0xa214f8ee rpaphp_get_drc_props +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0xbb929ffc rpaphp_add_slot +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0xeaf1d61d rpaphp_deregister_slot +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x1e3436a1 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x5689fb94 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xebb98ca8 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x003998ab ps3_write_ctr +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x0bdf50c4 ps3_disable_pm_interrupts +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x0e622920 ps3_write_pm07_control +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x181e55ab ps3_read_phys_ctr +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x1bcb88c1 ps3_write_pm +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x2abf1471 ps3_get_hw_thread_id +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x2b339635 ps3_disable_pm +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x3c71a6b2 ps3_set_ctr_size +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x4a24996f ps3_lpm_copy_tb_to_user +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x50488f64 ps3_lpm_close +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x58e642c1 ps3_lpm_copy_tb +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x59c54782 ps3_set_bookmark +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x5eca6711 ps3_get_ctr_size +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x60e3f0d7 ps3_read_ctr +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x6702a28c ps3_get_and_clear_pm_interrupts +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x69010c19 ps3_set_signal +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x70177200 ps3_write_phys_ctr +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0xa76ee01d ps3_read_pm07_control +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0xaa190bc1 ps3_read_pm +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0xbb72a01c ps3_enable_pm_interrupts +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0xce72c9c0 ps3_lpm_open +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0xdddfc980 ps3_set_pm_bookmark +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0xfae0ab68 ps3_enable_pm +EXPORT_SYMBOL_GPL drivers/ps3/ps3stor_lib 0x47f966f1 ps3stor_read_write_sectors +EXPORT_SYMBOL_GPL drivers/ps3/ps3stor_lib 0x5d3c1707 ps3stor_teardown +EXPORT_SYMBOL_GPL drivers/ps3/ps3stor_lib 0xa74e4cde ps3stor_send_command +EXPORT_SYMBOL_GPL drivers/ps3/ps3stor_lib 0xae8af72f ps3stor_setup +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x5cb83d5b mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x8346f819 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x9469f870 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xe107f118 mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xfe1adcbc mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4cd49a31 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x619c6784 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x78457620 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x851be974 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xaf78164d wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd55b95c0 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x0f252135 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x071d7f10 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x083086c5 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x095eec65 cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x389cddc7 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a66c193 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3d05e680 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x41bbd272 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x42b90d24 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x438f5b24 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x442a3ec5 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x469ea549 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x49be78cc cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4d5c2fd7 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4ded20e7 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5160e4bb cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x598deaae cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x59a22760 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5e57b688 cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x618f556e cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x64546887 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x64aa1e25 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x66011339 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6b508666 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x71a4d4de cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x76aa5568 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7756b950 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x79b27b10 cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7eeeca60 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x819d980e cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x87ef3d06 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9524d350 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9c7443e0 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa0d92c4f cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa2f5505a cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaa2b83f7 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcbe0a2b3 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcc3833cb cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xce24fb57 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd35a5a89 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd753ea09 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdea166e0 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdefbd2f9 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe3c34029 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe65886e8 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf4b36a58 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfde833f8 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1cbe5abd fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x205cedd5 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x21517370 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4678473f fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5cf290d7 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x752efd66 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x761057ca fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7b4d2997 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x881cffe6 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa0e3b505 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa6398a98 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc763abf4 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xcb88f544 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xcc91b40c fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd761477c fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xecba022e fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb87f3102 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc06e8d26 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xda7e8d35 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe3925ea6 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe5dadf38 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe64536e9 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x09b02322 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0b32cf3d iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0ce510ee iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x15b75eca iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x22aba5c9 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x259dbe1e iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x25d74c3a iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x296c389f iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2e2595bb iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x38ccd8f0 iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x42721d59 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x49aa5c9c iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4bc5d58c iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4dbd90c6 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x56d0e3b8 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5ce14d5a iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x61361633 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x63497a04 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x75bbdefc iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x75fc851c iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7b691925 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x85869f4b iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x94c2ee1d __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa5f1f3ac iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xab61a0c5 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb14025f7 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb7acb387 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbdb75393 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc59038a3 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcbdc33d6 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcd440774 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcdf59b42 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd088763b iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xda207789 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdb23de01 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdce999a0 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe1c85433 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe58c4bb2 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf12a00cf iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf29c68c2 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf32e6b6d iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xffbce605 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1bc78fcb iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1d0b61f0 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x220072c7 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2755823f iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x360631bd iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3956cd69 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x58a826c1 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6738a0b6 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6a990e51 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x76cba940 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7d8a6fd1 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x86983d79 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x89898b1a iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa0c9ace7 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd15131c9 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd42bf4ea iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xeb2cfe69 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0ad9426b sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x124cd921 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x15a2ddf6 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1b6d224b sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x34919a42 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x36e524fe sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3a0088a1 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x52552a8a sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x54998e8c sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5fe18ab3 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x61422a54 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x61a165b1 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7162832a sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8092d328 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x84a68575 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x85e67a34 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8d5b2002 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x988319fc sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9f1ec868 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb556dc3b sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcb878705 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcd1c2685 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xef8e211f sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfeb7cdb2 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0a8a9b99 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0cdda20a iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x18d95484 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1fa7283c iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x24c512e6 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x28abe31a iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x295e84d3 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2e10149c iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2fcc9618 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x39c0b3ec iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x42e5378d iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4e86bfa3 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x54e1d631 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x57644eb2 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5f7d7231 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6ce92430 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6d84d6d2 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8075b3c4 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x831289ac iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x95284280 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9a1c4fc9 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9cf75bef iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa428d7a3 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa97ad3d iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xae794e93 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb6263ecc iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb7c65f25 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb99f17ab iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xba22e9c1 iscsi_is_flashnode_conn_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbf3fc253 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc6891a84 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc7fb85a4 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcd1cd740 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd77cbffc iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd9312f6b iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe03a3f43 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe8b0e47b iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf883f498 iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf886647b iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfe2b4568 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x2e522473 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x605ec980 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd617957b sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xe0ebdf86 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xae363270 spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x08ad3837 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x3a9f8342 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x40a4714d ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x70b696ee ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x881a7d84 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xb08dd595 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xefa4e7cc ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x1a75bf79 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x2c924f3f ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x43d4f93e ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x46ca0742 ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x6d0aacf7 ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x6da6b3a0 ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x923781ba ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x3c1b73e0 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x7b17dcb9 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x85e8f064 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xa0f9967d spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xcc9db2ab spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x1bdb172e dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x56d8f739 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x5ec7f4ee dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xd0aa3146 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2d2fc24b spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x32d9999f spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3899dfbb spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x45b33f69 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x61b5406f spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x66f6eaaa spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6ade2f05 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6ea0c81a __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x742aa01d spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x75d7c4e4 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x83ab82e9 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8b49a6ca spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa3e652f5 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xab083af3 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb43bf864 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xeac60bd7 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf3c1974e spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfe69b5e9 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x13e89180 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0023b7a9 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x02ae8f1c comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x088e864d comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x14acc83b comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x17b7b0b7 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x20d446a0 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x27a6dcfd comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2ed710e7 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x350b69a2 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3604154e comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4155536d comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4bbe0da3 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4d6a014e comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5b6a34fd comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5b88e210 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5ea18d84 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x707b34e8 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x739cac7d comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x80d47233 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x84a8fe5e comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8a59073a comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x932e8d78 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa53ee29f comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xaf707256 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb37e7706 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb7ab2852 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc4e0fa57 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcb070c80 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcc8e0523 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xced668a0 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcf074b61 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcf9f5edd comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd5b30460 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe1460de4 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf4f8685a comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x12f1349d comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x1b601037 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x3db405a8 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x409f9125 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x7a3714c1 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x8d1638aa comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xa007b62c comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xef53ec9d comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x3310763d comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x7362f825 comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x8a2d00db comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xad57f9d0 comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xde0cdb7e comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xf64b54e3 comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xfa1ef615 comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x001a50a1 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x2379cd06 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x5985ef3a comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xe39846fd comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xe54fa0c1 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xed4972db comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0xa8091c18 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x40319c02 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xbd93163e amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0xa3e528de amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x103ca854 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x1de0c56e comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x359e4a8d comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x45e6780b comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x4cdd5585 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6abb9cf5 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x71323371 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x7c19cbc1 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x7f2a609d comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x91b1a70d comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x9cc82b65 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb31cb7af comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xcbc8ddc5 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xb28bcf62 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xf2085da8 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xf4f55374 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x0d68fcd9 comedi_isadma_poll +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x6815a033 comedi_isadma_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa3d01a85 comedi_isadma_program +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa7ebb8a3 comedi_isadma_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xafa9f21f comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x152e281c das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x13005f7d mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2d06d51b mite_setup2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x3b41f90e mite_bytes_read_from_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x3e6c740e mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x419690b0 mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x446649d3 mite_sync_input_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5589ead8 mite_bytes_read_from_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5b1d9330 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6a536d62 mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7dc30464 mite_sync_output_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x81299e3d mite_get_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x92849294 mite_bytes_written_to_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9a2959f9 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa0ee00ed mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa967f2c9 mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa9ba3901 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xdad89f55 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xdb71cc09 mite_dma_tcr +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xdceab65b mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe5142d3b mite_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfc4c8142 mite_bytes_written_to_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x18f6b67d labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xf1f3d71e labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x0b951f00 labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x378ec067 labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x928b697a labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xc4b1ae5d labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xdeda05ea labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x15ccf5d4 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x4022d7d0 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x648eea4f ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x8261138f ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x9441ab1e ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xb93d8b3d ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xbbe0a6a4 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xfc26eb81 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x35efa84f ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x62026071 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x622161e5 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x9299b956 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xa18b74d6 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xf966f188 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x041648f3 comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x0d8bda07 comedi_close +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x334849e3 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x9908ffa4 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xa978a929 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xe1b279ee comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xf530e340 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x5ef1ce85 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x094014f2 most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x0c0dcfaa most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x0e647359 most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x236a7eef most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x2d011db3 most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x3cbefa02 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x488270ba most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x6271e1cf channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x73aff57c most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xa5cabd5f most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xad4566ad most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xd7149cdc most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0ef1d765 speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2c1cc975 spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x328c5ceb spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x32e11a24 spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x37d50f09 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x5d7fe909 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8630a342 synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8fe30596 spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb35aaab9 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc4f94450 spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xea9276db synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xecbb5328 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x04f62162 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x3885b1e0 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xbb3083ca uio_event_notify +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x4a77af33 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xd5adc12e usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x701e2a8c ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xfc8364f3 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x54590dc1 imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xa527d8d3 imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xac3b1053 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x2152401f ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x66971498 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x7de091f1 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x9f0deefd ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xcec0f72d ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xd04441af ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x21cf9efc gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2b2c3235 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x41273b5e gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4eb92ca8 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5f4c65d5 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x65b60376 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x667646cb gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6ce46e29 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x75e1f994 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xab8e74ce gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc31e20c6 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd87018be gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xdb4b775b gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfaf334f2 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfcceb23c gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x2c710942 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x496a154f gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x72174fd1 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x85775153 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xbd45738f ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x086cefa9 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x17253077 fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x204f04f8 fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x322309d1 fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x39c6cc97 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x41197b3a fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5255b366 fsg_common_create_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5bbe013a fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x854c2608 fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x888d7d38 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x892dcce0 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a2fb2bf fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xad048104 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xcbfff8c1 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xde031ea0 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe0257d13 fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe5712d6b fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0ae4bb89 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x10f0f0d8 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1515e62c rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x219fabca rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x288c7fdc rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5151019f rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x57c20800 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7ae731f7 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9dba1f97 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa7623d4f rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa81e889f rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc8e6138d rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd2420d0e rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd88db3bf rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfd570cb0 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x056bcef8 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0e671859 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1497dfeb usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x23f76c73 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3e637b16 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x481e216c usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x57468714 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5df7250b usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x69bf8e11 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6cec324d usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6d7e8f26 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7dc39d5b config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8140780f usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x834ab595 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8a6997b6 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8c5994d5 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8cf50296 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8f7db9d4 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa690eadf usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa9a4b99f usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xadb8a7fc usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb30c10e1 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb5740993 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc04a1642 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd799767a usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe687300f usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xeea486e5 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf3f5cb39 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfc68b1bb usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfca56178 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x055cf9a4 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2797940b usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6146ab2a gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x66dc50cc usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6782dcbb usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x947468da usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x969cb89d usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4744dba usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb6947c75 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb881d504 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc214e5b7 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc5258ba8 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd60eadd9 usb_udc_attach_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xea784a4b usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x009b90eb ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x5d032f18 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x185cb878 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x68a3d74e usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x68c8fe97 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x70c4c6cc usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xbe8119dd usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xdbe1d17c usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xdce2527d usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe4be2d36 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf94cfa27 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x28f626d9 musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x76c1e057 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xdede609e usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x047e9a67 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x18af34fb usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1bf1a2b6 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1fd3e788 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x28af7844 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3c85c857 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3cb45a2e usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x487860c1 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4ac07c59 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x52c6fcfd usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x52d91a2b usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7a714f1b usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x804746e3 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8c34aa28 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb2c74f64 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xba910249 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc15c78a1 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xcaf67912 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xce37a9dc usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xed01985a usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf774f1af usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x093115a7 usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x184cfd0e usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1ead8da2 usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x37bccc40 usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3d072140 usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x42e764de usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x43bcd0ac usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6aa0fda8 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6c6a7050 usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6db4dc91 usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7b4bbe37 usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8548ae57 usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8bf6d293 usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x91b1d599 usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x91ddd6c8 usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa5b68545 usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa6face7a usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xaa3f1fad usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbfd69221 usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd471309c usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd4de02aa usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xda541682 usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe1e11d09 fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf47354a0 usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x08d7f2f5 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x32fa5e7a usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4460eda3 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x56069254 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6abffe4c usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7f43f216 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x860e311a usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x96f19687 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbd38b54d usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xcb543eaf usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xdca99d17 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe44732ab usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0bd816f0 wa_process_errored_transfers_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x122f15ac wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x1f06897b wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x2d4f6421 rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x452d4ec4 wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x7c268d04 rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xb6b8cd05 wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc1a3c629 wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xd9cc0b73 __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x155cf021 wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x2d80c98f wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3e12dd9a wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x646eb150 wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x719511e4 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7617321f __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x914134c3 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb76794f8 wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xbe37b733 wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xc6784380 wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd014aa04 wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe094a3ab wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf36ee835 wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf9284b24 wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x297425af i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x47755f9e i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x6c293fc6 i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x0131042a umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x1f9cd4f5 umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x23f94698 umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x2b2da01a umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x4229e122 umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x49dbdb36 umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x4e2fb7d8 __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xb7e181e4 umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x033855e8 uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0ca333c1 uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0d72b226 uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0d78016e __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0fc02440 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x11881e89 uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x12a4bdf0 uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1eee982e uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x20b26e7e uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3003e3bf uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x37ecb358 uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x417c9083 uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x47793333 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4cbaa3d9 uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d2f5e55 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4de5bb37 uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x571cfcc2 uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x57695d9c uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5c13116e uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6998adc9 uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x703cc0ab uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x816b9e92 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8728b593 uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9360ee93 uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x96dad555 uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa18dcc24 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xac97316b uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb0da7b1a uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb12083ef uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb5cdf45c uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc129bee3 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd0e36a67 uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdc8dec80 __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xed7dca46 uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf222026a uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf29bb918 uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf52c07d8 uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf5753b4a uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf841109c uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfbeb89ad uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xffd07b50 uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/whci 0xb6ea00a3 whci_wait_for +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x36ee14dc vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5e710e18 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7cbdd467 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xcc6ba1d9 vfio_del_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd6f52eda vfio_external_group_match_file +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xecfaf05f vfio_add_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf235e029 vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio_spapr_eeh 0x22442a0a vfio_spapr_pci_eeh_release +EXPORT_SYMBOL_GPL drivers/vfio/vfio_spapr_eeh 0x331f2d7c vfio_spapr_pci_eeh_open +EXPORT_SYMBOL_GPL drivers/vfio/vfio_spapr_eeh 0xac0624b4 vfio_spapr_iommu_eeh_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xc4c45e18 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xd09e98f1 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0020a7f1 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x08f00ba5 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0e9b847b vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1600c917 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1f2381bc vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x232e27d4 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2deccce2 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x348fe750 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4206f210 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x43ef147a vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x517051fe vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5a47ff2a vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5fc23af7 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6676d02a vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x73d2d2c7 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7b75e6b5 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x94ef85ca vhost_init_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9bcd1d38 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa239804c vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaad1103c vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb0f81e37 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb7a57865 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb83ee814 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xba2a2cd5 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc96046ba vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xeccc2afe vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xedebb477 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf14a06c4 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfa874ea7 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd32ca0f vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x152e013d ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x2a82b427 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x449e5cad ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x67f9d325 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6a7213f4 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa6f3ab8c ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd116aa96 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x00657a29 auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x137a0968 auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x362128d2 auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x57b2b75c auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x5fb5928a auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x7d804637 auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x8ad97ebd auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x9e479296 auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xf798979c auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xfd9ae4db auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x10c11783 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x92cf226c sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xe1636414 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x60298ca3 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x64d99dcf w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x6aeea7f9 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x8e3048a1 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x99ad97a1 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xb06ecf21 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0xd7ab5f03 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xf2991889 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xf37b4d1b w1_reset_bus +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xa6cf6fd1 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xccae7310 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xed4eb740 dlm_posix_get +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x38250388 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3bff28f0 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xab2ca34e nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xcf3ab20e lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe6aaabbe nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xec630d3f nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xfc834fa2 lockd_up +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0491f44e nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x079f16d3 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08887efe nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09a988f4 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a06103c nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a35dcd7 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a45997e put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d5083b6 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0da4339a nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10c9d46f nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1297a872 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1799d7ce nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17a3755b nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18296ea2 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1912fc52 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1991628d nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x199c794a nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a1b13b8 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e31b48c nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22049097 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2419d58c nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x241d7011 nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26810384 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a79cd38 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ccdfea4 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d74d633 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ed36eea nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f929463 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x302f0a41 nfs_file_fsync_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b46ec8f alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3cc5f2b6 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d307359 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3dd02ea5 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e6bc3da nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x410a1406 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x420f4985 nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f888e1 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x442f0f79 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x447cb8a0 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47aa1b70 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x487ca243 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4996d663 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a55edf9 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4aeb9bef nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b84006f nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4becfd7f nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f04f44e nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5001eed9 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50fafa04 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51a2eb6b nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52deda29 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5413f6eb nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x611e892f nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6266cf28 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x677aa109 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69dadf36 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a02d6d4 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c427573 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d6d09ad nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d6ede82 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x746bb729 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74ac0104 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x763fc1c7 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78e6b80e nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x799d9eba __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d4ffbde nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82e3ed0c nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84114017 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x875515b2 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88b0d575 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89d3a5e1 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b1cc8b0 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8cfea285 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d90537d nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9266c576 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x961aa807 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x978b7b7c nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x978d23fd nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ace7385 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9bce6941 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9bd5d1f2 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c15ed29 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e0b59a6 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa18a2d4b nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1fe07bf nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1fe2bae nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa48f7f61 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5359caa nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa678649e nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab5cc48a nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac81260c nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae37255b nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb2efa82b nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6173e57 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbac3d520 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbfd82afa nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc110bbff nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc34b1ba1 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3709965 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcad221ae nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc3ff06c nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc59375e nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0a06e31 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4a4614a register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd936f31c nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd947a5be nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9f7b3be nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbf4b18b nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe005c5aa nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0afb47d get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe14e5148 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3ff6c9b nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe4d78b36 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7b4af90 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9eaae3d nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xecef9a36 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xedc96f58 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xefd6141f nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7d34010 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf811a7bd nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8ff8989 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb3a4253 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd1aec08 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfedd1ef1 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xbd512652 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x00698e91 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x01be322c pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x01f103f7 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0889a638 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f24c793 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1093b108 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1d5155c6 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1d7b7668 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x291ffc42 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x299ba231 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c1c1b9f nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2ecf524a nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2f77df31 nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x341b63b6 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x353c4853 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x357e0dab pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36b8f9c4 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4028597d pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x42bc85d2 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x451e162c nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x50ee935d pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x56e08a5b nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5f535152 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6076401d nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x62b2b944 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x68d32477 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x75f7b9fc nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7994f9b5 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b9688cb pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7c246b82 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e92a09c pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x864f4d37 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x86ee67d8 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x923b555a pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96cda1bb nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9fefd92e pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa1379094 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa588dce3 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa74b9957 _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab498562 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0480ef3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb2f84634 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5f01662 nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba7df7eb pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbda7ffa8 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbfe94a6a nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc476f709 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4a6288b nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc31f688 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf198957 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd08d0446 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0b5b7dc __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xddeca130 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1cd2c37 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1fca6f8 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xea6664f4 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xec678543 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed5f3208 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf8e43d9f nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf958a1a4 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf9d4fb7a nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xbead0d11 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xd737c2cf locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xec074258 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x2b9befeb nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x61f468cf nfsacl_encode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36a28a9e o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x414ccc61 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x41a606fa o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4284823b o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x439cd6e5 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x49ccdc82 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd1b909ef o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf6d91e53 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x22d2d9b8 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x266a8d09 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x336a0023 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x6c77c86c dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xde0c6c91 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xe1af5498 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x82f29278 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xdc8f9919 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xde97a098 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL kernel/torture 0x050a127e torture_shuffle_task_register +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x2fc4479c _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb +EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random +EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait +EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop +EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end +EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin +EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xdf90a431 _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress +EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch +EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch +EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch +EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xda48c513 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xe68f5700 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x201d8ea3 encode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x29fa419f decode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x0adcb055 base_inv_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x221df614 base_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x4da25bec base_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x63f42b6a base_inv_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x76203267 base_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xca3140ce base_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfa5eee0a base_inv_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfc02472a base_inv_true_key +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x2e5ea5dd lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x35bb4e83 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x49e34a0d garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x688cb65b garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x696a5f80 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x7ef28891 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xc1601444 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xdb11cd49 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x160a0ba6 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x1d2e7734 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x339f426c mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xae7d88c2 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xc8dc5c26 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xe37ca642 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/stp 0x91c24153 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0xe58028d5 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x84bc9138 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0xad286722 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier +EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier +EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast +EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr +EXPORT_SYMBOL_GPL net/ax25/ax25 0xd186f8f3 ax25_register_pid +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x094a57a6 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x10b408a0 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x5f672994 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x65c70e54 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x96e90c4d l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x9dba0efa l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb802185b l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf7367c4d l2cap_add_psm +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3ac56222 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5ba2b980 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x67e55de9 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x919e1c6e nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9dff3d0c br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbfbba1e2 br_deliver +EXPORT_SYMBOL_GPL net/bridge/bridge 0xcc219e22 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe0b9cc71 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x065128b5 nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0xada18b3a nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/dccp/dccp 0x008eb402 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0ca77cda dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x13a87924 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x148baee4 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x14bd2784 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x16579c11 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x21d8e13d dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2785cb39 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x282bfa9a dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2a25331e dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x313052ae dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x33b5291d dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x33da8964 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x36ebed91 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x37d8d640 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3cd5abee dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x40e8e43c compat_dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4b9b86b1 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x512a97ec dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x57157d08 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5df7f0e8 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x684b4c1e dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6b1bbcc4 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x78e82e38 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7d8f39af dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa367a6dd dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xafcbfdd5 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb39d4299 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xba5a7149 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc0b7b890 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc392b284 compat_dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcdac895c dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdeba7ab0 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdef336c1 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe5256155 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf9726c46 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x0201fa8b dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x2699eb13 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x37ce350d dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa0de6b11 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb00836fa dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xbaacbe49 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x84ddef92 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd58dfa29 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xe399fae8 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xe5ea4bfb ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xed8bb6c4 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ipv4/gre 0x3c757078 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xa062bd31 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x11a795a0 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1eef80b4 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9240b3b3 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9dccfac0 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd5bbf19f inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfc6af6c1 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x42f0e6f8 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0009a5be ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x006c385f ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x007c4b12 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1004b56d ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x23ea8fe5 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x503a75b0 ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5246d2f0 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5594d3df ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x613a2362 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8e5d8f7d ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8f75d080 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa14f73ec ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb0b3bcfa ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd7343d83 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe7675a53 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x09a70eb7 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x67730c2c ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x972bfe89 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x0bac7b70 nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x26cc2734 nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x3f8c5c1b nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x448a6ed5 nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xb1036f08 nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x93113c42 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x556eb766 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x7927e6cd nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa350fdde nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xaa37c449 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xd4080ddf nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x8be3353b nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x2e0aa5f5 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x2efbe334 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x900ee32c tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xb7263727 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xd92b452f tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x6887a5b6 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x6bd14832 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc21ea326 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf711752c udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x1896da23 ip6_tnl_dst_init +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x25587819 ip6_tnl_dst_get +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x3d63e61f ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x6aa8db9e ip6_tnl_dst_destroy +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x7baa16cb ip6_tnl_dst_set +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x9d879f6d ip6_tnl_dst_reset +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xdc37b373 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xdd5f9a4a udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xeb480b23 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x3d3ef12f ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xd7925945 nf_ct_frag6_consume_orig +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xe7ae7ccb nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x96d6df3e nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x44f41c3b nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x536a4554 nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xaf3adbf9 nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xcf34d38f nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xeaf928d5 nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x4eea117a nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x0468e6c4 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x202428f2 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x3a2322dc nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x8d390f06 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe67f0bc3 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x4aa68dbb nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x07bb1a47 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2f218397 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4d248cc5 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x56a45a83 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x68b2ad28 l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7eb954d9 l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8c8ce250 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa531d19f l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xaea3c6dc l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xaee58116 l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb0e402a9 l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb0f54da2 __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc422046e l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd7d0db17 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdc0b1551 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf72e0c8b l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x31d37411 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x11e1f72f ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1f216d2c ieee80211_set_key_tx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3509d06f ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3ea7ae2d ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x436b297d ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x48f8c3b7 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x58a151ae ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa5e2dcf7 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xaa9e22d2 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbbd912d0 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbf6baac9 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd3dc415f ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe335621e ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe3cf924f ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe5ce236c ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xed138827 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xeedf649a ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf02e21ec wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x4aa2a590 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xaaf4714b mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xcf88cd41 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf62259c4 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x15127b71 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x16178d9d ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x35aa1127 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4eab85ea ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x78efbe1f ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7a9e3e43 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x80acd9ad ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8d90655e ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xabbd5796 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xad02d8d6 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb7dd0933 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbdf18266 ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc51418a5 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd9ff3348 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdc07383f ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xecf363d1 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x7a36bb71 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x7b664850 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x9ea7af34 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xedec70cd ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x01b733a0 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0806b749 nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x08abc04b nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10317300 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1092c645 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1129ea3e nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x14cd659f nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x17200120 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f5034c8 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x22cd11fb nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x23f2880a __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x255bc382 nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x26fb071d nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2844956e nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2932fc9e nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2a3b5279 seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b5ce3d7 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3183c7cf nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x358f4649 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x35b66511 nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36b94799 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37be78e4 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x381255b4 nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ee42c06 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4428c3fa nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x487404df nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4d01f832 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x52125a58 nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x52762e7c nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x536925af nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x57e0e79a __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5dcdeefd nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x687ceb94 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6cc1e93d nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f01b58d nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f3518c5 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x75c6564d nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x776a147c nf_connlabel_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x786ec06c nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ae9d243 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x821d98a3 __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x88bf1551 nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a66c4fc nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a78cccf nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e2741e3 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x900f4c12 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x902e1e08 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x910cc258 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9a005f8a nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa0e7daf2 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa2678830 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa38de0c5 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa65adf8c nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa6d11a30 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa7304bf nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab45ced8 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb0315de2 nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb0995cbc nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb1bb8812 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb21b418c nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb514a430 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb5c73cf1 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb74743b9 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb87eb3e3 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb8b637ad nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb8bbc9f3 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb8dd0556 nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb9e2a42c nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbedbf140 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc8874d72 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc79f824 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xccff34eb nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcf1cce19 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd5a7f646 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe581c365 nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf1183df7 nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf1b802eb nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfec95669 nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff40b965 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff432ad4 nf_connlabel_match +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x8f22f840 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x6cb9eb8a nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x39eaf9a7 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x2d9cb995 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x422afa80 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x43404dba nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x75145ade nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x77ab6c9d set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8755ab92 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa53fac17 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc34d1943 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xcd99edda nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xfca6fa7b set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x2479848e nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x0f9b1255 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x3963bbfa nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x8b602659 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xd7d1d88e nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x046941dc nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xe6f5714d nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x10e37657 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x19a54450 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x51e2717e ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8c00f9e0 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc9ca5b4c ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf4520007 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf9725c31 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xab197045 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x78f271e6 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x005a5723 nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x02dc3b11 nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x5b33c2b6 nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x922ff3b9 nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0964338a nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1fc86bc1 nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x68af5062 nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7d49fc35 __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x83cb278b nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb5574acb nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9089592 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xdcdefaf5 nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xdf56aaa7 nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x59715d03 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xc6682449 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x49c0ee85 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x57541dee synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5f339439 synproxy_build_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0a2e8dd2 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x242bc9ae nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2922a9bb nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2c2fa9b1 nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x38627ed0 nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41592345 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x54bc90ec nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5bbb7a37 nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6598a104 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7ca130a7 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9735b676 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9c2f96fe nft_unregister_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcdf195f9 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd971396f nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdb8f4e72 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe6ded357 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xeee05298 nft_register_basechain +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3e89d046 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x4efe90fd nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x638c4bfd nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc5e85986 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc62c3339 nfnetlink_alloc_skb +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xcad6ca43 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf7d5fc4a nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x13f9fd9c nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x3b14297f nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xb88f62e7 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x170adad5 nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x2061a030 nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xca220e4d nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xd17ee5a1 nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x2019b74f nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x6277a917 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x627b3405 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xa6263990 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb05807ca nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xff76e639 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x3952f49d nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x6b2c040c nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xd9b1c29c nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x127c8c95 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe826ab40 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x099ffbc1 xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0f25e212 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x161d1417 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x30d4d1d7 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3ee707ee xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x520a7425 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x557ffec4 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f82f1f7 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x691a6d69 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6d983185 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x73cee41e xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x74a8aacf xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8f781f58 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x93e08676 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa0514c9c xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa4ae47ae xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xaf7f4715 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc0a6b30a xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd675edd9 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd90dea45 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xda835347 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0b4971b xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe8114423 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xea70e42b xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec24fd82 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x00204983 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x482b6a12 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x31868ad5 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x38ffbe78 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x4f5d99da nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xc15b4350 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xd8f45c9d nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xe2c2b12d nci_uart_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x33b60364 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3969246a ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3ad476a8 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x5c698805 ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x77899f1f ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7ad1a59c ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x94d7e6ef ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc9ecaa04 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xfdf2e2c7 ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x06216803 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x117e2bd1 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x239e4fbc rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x2fb2421a rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x33d13777 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x3aae5ad2 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x3fbd6267 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x510dcbd5 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x512ee5c7 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x56ed2988 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x5af9304e rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x6765fff8 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x6ac3863a rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x7342a9aa rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x75e9484e rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x7bc62829 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x7ea82da3 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xac0f64df rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xae060a48 rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc40c839a rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xc8b8e5bc rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0xcbe1db3d rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0xd2a629b3 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xdd630fc8 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xfa5518f3 rds_conn_drop +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x3587347b rxrpc_register_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x35c0fd46 rxrpc_unregister_security +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x1d93cd44 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x3944e31d gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x93d2951f svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00205858 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0178236d rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x029bc2ff svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02a9208f svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02b61de1 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03085dd4 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03aeaf66 rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03cd562e rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05b30953 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05cb0e57 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x091a78c4 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a15a320 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b41a233 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0cde1478 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0da06165 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f69e935 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10f5cec2 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13d9a2db svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1419cf1e rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x154eec05 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15fd90ad svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16795e5c svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x176f5355 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x177c01ec rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19afe50b svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bcf8fde cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c16ce0a xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c79404f svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e5683ed rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f3a28a0 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1faaadf2 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22973c65 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23f1a9d0 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24029222 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2463e1b7 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24798edc svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25e4a117 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27ba9da6 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28f05506 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28f9a39c rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2beacb35 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3121985b csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3333f2cd svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x338eb18b xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x359ef522 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35b930bf rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3790281c rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38ca3952 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a61227f xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a78d1d6 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a7e83bd rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c58b1f9 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fc2b44c rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fe5aefe xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41873110 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x422a7162 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x430f6789 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4358a891 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46e6fc24 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46eef2b2 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47bba23f cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4838a49c rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49bda1e5 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a1fa87e svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b40b8b6 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c97f7e1 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x562de462 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5740bd2f cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x589cc465 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x592afd3e rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5931664b rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b09d677 cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b4648ff svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d273190 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d2d3b65 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d3646c9 xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e09b519 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e7e8ed1 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ec48605 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f7002e0 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60b6fb2d rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63338c24 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64889298 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64b640f5 xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64c45fc3 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65e7b4e1 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67008697 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b661a16 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f0977f7 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70442708 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7323910c rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73ae9673 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7647665d svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77892d22 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ace4a0d rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b40775d rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b41b366 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f18136e rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f642dd2 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8120cef4 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82b2b541 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8300aa9a xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84acd527 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84d0053f rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84dd43b5 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x866c7c68 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87380209 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a329aae sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a81910b svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ab18ece xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d0c7739 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91d9401b rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x939c9f8e rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97434093 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98afa717 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ef449af rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ff8ae9b rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa11aa20a svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa152ee39 rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1b052e8 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3406fbc rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa35b00c2 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa392b9ac xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa48b3156 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5d07f41 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8bd49b4 rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9a4e487 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa5203b6 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac128a1b sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac852899 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacb9ff56 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xada71f57 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb38389fc xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4af5e80 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8593adc rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba14d3e7 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbaffc857 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcd702b5 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcde3712 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd7c3ed1 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdd16a0d svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf93b0c4 rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9c1e2a xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc07552ed xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc14314da rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc16d29a7 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1d8a2e7 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4ab32a6 cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6f98b9c xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7317cb4 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb45d50b rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb81aacf rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc9b8b2d rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf9fa5b2 xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfc96d3e rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1a95cef xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4ccfa0b xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5ad24f1 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6299b64 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6cc4bff svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7e4a8a8 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7f3c3a8 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd88dadf6 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9b71c4c rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc0b4d59 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd6b720e rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddf89bf1 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0bafeaf svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0c45ea4 rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe14f00d0 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe30c298a svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe35d9c90 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3820c21 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe48e15ce xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5728e56 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5e3a05a xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5fffcb8 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6179d77 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6cd602b rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7205adc write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8a3652f xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe90d925c rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef0c21e4 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef21b4b8 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeff83086 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2551320 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf325b0eb svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf36e613b rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf47c2061 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4eca3f8 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf753b43c svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf78a7308 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7ed01ba sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf87f521f rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9c84c3f auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd0814e6 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff5f705f svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff89b4de rpc_wake_up_first +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0a071c71 __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x229b851c vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x31917dff vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3a711b8f vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x66a4d8eb vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x67218629 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6b2a9a4e vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7574247c vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x84b6fdc2 __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x970b77bc vsock_pending_work +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xadd34496 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbc8954a0 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe0892b3b vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf4c8612b vsock_stream_has_space +EXPORT_SYMBOL_GPL net/wimax/wimax 0x2e302cf1 wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x44e639d3 wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0x5073a01b wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0x5b667224 wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0x6b125b12 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0x7d6adb01 wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x91b6c2be wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xaae5e8cb wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0xbf4bdb5b wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0xe8f43063 wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xebc014f8 wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0xf475534f wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0xf560c607 wimax_state_change +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x09570590 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x17dedce0 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1b80b395 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2943bf20 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4d82e95e cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7d3fc0d2 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x94b629aa cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa7fe0e64 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xafcc626f cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc00d7926 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd422dfd0 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe5582083 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xea0e0e25 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x2a8af3d2 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x9afdc271 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xa1ddd586 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xf4baa564 ipcomp_input +EXPORT_SYMBOL_GPL sound/ac97_bus 0xbb551a52 snd_ac97_reset +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x1540d5aa aoa_fabric_register +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x16557fa8 aoa_codec_register +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x3690bf38 ftr_gpio_methods +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x73b75b21 pmf_gpio_methods +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x84a16bc3 aoa_codec_unregister +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xce561047 aoa_snd_device_new +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xd135a3b6 aoa_get_card +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xd6e05915 aoa_fabric_unregister +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xd6f33f42 aoa_fabric_unlink_codec +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xe95e8b23 aoa_snd_ctl_add +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x39da679f soundbus_dev_get +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x5f9d1118 soundbus_unregister_driver +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x6325a7e5 soundbus_register_driver +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0xd1c70478 soundbus_add_one +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0xd1d39f53 soundbus_remove_one +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0xd828afab soundbus_dev_put +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x4c322ed4 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x8b54ea64 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd 0x47813dde snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0x87a096b3 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xad97d915 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0xe06764fd snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0xedb349e4 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0xf8f3e16e snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0xfa39de9d snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x01bdfd55 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x50437df9 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x520abdb1 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x55c1c3b0 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa8845a67 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc4f520b4 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xdb59e892 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xfbe4bf5c snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xfcf2cb8f snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x33da9d0d snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3c826e29 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x4ac0ae82 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x60a55e4b snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x728ae100 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9396db83 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa0b17f3e snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xbbf52c5f snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd1988dc9 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xdaeae569 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xdf85e666 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1c9dfae8 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1cec176c amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x47fc6241 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4e7ed910 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x747746ea amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xdc6d154f amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf54b34c1 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x00556a6f snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0b2b83a3 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0b5be3ec snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x100e2023 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x119e994b snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x15aa74b5 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x17c3867d snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1abbc92d snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x22d78df7 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x23edad63 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x23f7fd45 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x29188065 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2b447dcc snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3700fbb1 snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x37de8864 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x38a574b1 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3c1cc2d8 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x40c23a0a hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x45a79159 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x474f305c snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c6a182a snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c8eb369 snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4daf463d snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4e3ab7c5 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x504913d9 snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5a6a0bc1 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5d0c3cb8 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5fe9a020 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x60621f94 snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x65e28a38 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x662c6a72 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6b29485e snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6b894a71 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7078c865 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x758d67f9 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7d33a577 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8e891e43 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8eda420a snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x913f528a snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9271523b snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9603b0a9 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x97cb1210 snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x97fe1b0b snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9cb4fa81 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9e8c77c1 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9f265c13 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa33d0524 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa6a3ee2f snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa6c6c1bf snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa983e1cc snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xae071473 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb6a315f6 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbaed5c22 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc16b669a snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc6b400bc snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc8ddd686 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc93890a0 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd10dca5e snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd188b73d snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd21ac76f snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd445c9b0 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdb892db0 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe7aed970 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf0f2a9bc snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf583e0b4 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf6370613 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf81a37f5 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf92388e2 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfa15fc1f snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfd10b9cf snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfe63404b snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x03810eac snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x292e7897 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xb8920474 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xbdb70ed8 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xd31e1255 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xf6d5a329 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01324678 snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0583d2c6 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x06d4d116 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b1d079a snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b619a16 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0bce9f92 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f32b199 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1160a965 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x117ed84b snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13cf2571 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15094ece azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16ebfc07 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1a992d43 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2120c873 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24609b09 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x25c8902d snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2988ebab snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2aa07678 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2b2cba7e snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2c7c5b16 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x304e7839 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x32e2f519 snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33bf4592 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3819ff43 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a30aca1 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x414d8d4a snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41bff7d2 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47330cc8 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47a733bd snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x491f93e4 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a20bda9 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a3a86de snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4b277430 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4d226f8d snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4edb06df snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f40d579 snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4fef4769 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5206be38 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52e95515 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5314174f snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x57bd7ddb snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5860c5d2 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5e8b9b31 snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x60aaf041 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x614e5b51 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64194649 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64dc0d6a __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x66ae882f azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67e285c8 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d663b70 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6db28eb7 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6deccca5 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6dffb25c snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ecc8518 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f80267e is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7159c278 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x75650aeb snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x766e41ed snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77907f6e snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ef3197e snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x804ac92c snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80f90bf8 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x82bf1123 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x837914c3 snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x83e5ecd4 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x861fc8cc snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8864f700 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a008635 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b6a0d83 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d4b3b24 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8dd569a6 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x906310b2 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9181271d snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x931845e4 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x988c1a4c query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x99b7e6e3 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a0631c8 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d2ae83b snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d4c72f4 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d5e6520 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e9ca90c snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa0decbe4 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa280bed0 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8edc45c snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xae2a8a82 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xae4317ad azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaebf14d3 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2bbaf24 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb6398d53 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb92f49ea azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9e9a57b snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbdf8d203 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbf00b6ab __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc8a0cf70 snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc8a94d09 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb8ca193 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc583fa9 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce4086f8 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce49edce snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcee92f02 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd05af8c1 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd1f9b930 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd28a4b21 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd65b134d snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8e94f92 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9ff1201 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd11f3af snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd48362d snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe23db616 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe55a25e1 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe5fa2dcc azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe836431d snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea488fdb snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf098815d snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1f85d43 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3d321eb _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf4128783 snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf5d3fed2 snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8503f9b snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfbb33295 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc2070b1 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfca7eb6d snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe36f654 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe7ab4aa snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x012e1696 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x08532869 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0ed90493 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x31dfdc17 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3415c440 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x353ee00e snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4b49b383 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x50d0e85f snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5741b7ee snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5f507c91 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x69daada4 snd_hda_get_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x77fae1e4 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x836b2836 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8c06ebd0 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xaae3eab0 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbfa908e8 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc5eb35f7 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd334963e snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe39d230c snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe5a3cd35 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe89a75b7 snd_hda_parse_nid_path +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x288cb9e2 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x4b1938b1 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x68ef52a5 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x70aa678c cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x723062b0 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x9b25c2d0 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xfa7c6897 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x42e73429 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xf8fff8f0 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x5a7ae22e pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x820271ef pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x8fbc5223 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xea77fbe7 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x16e227f9 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x82f739c0 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x926c0b3b sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xc6b166b0 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xea57ee42 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xede00e6d devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x1a003c99 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x81bc4063 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x03db4d76 tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x5e4c4977 tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x41c3eff1 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x1a0e50ff wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x20283b42 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xb02bfeda wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xeb1b40a9 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x96684a01 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xfafc784f wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x44e9ef56 fsl_asrc_get_dma_channel +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xd2fb4448 fsl_asrc_platform +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x30693bb7 imx_audmux_v1_configure_port +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x58631dab imx_audmux_v2_configure_port +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04016735 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x092ba9f1 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c8465db snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0cb2bb34 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0cf33999 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ec6165c snd_soc_platform_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0fc01079 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x104f9f9b dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x115bec98 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11665a65 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x16123639 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x16af5a39 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17433624 snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1804d9fd snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a2ac4cf snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b5d524c snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1dadf461 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1fe0e3f8 snd_soc_remove_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x234e8b63 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23c647a4 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2849a5df snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b4a2b2f snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b66bad5 snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2bc27ca6 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e78e3cd snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f8c0353 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31228a32 snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x315fdc34 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32561021 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x329e5755 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x335d5817 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33e84ad8 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x37310ab1 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38493d00 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a4d4655 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d6ae4c3 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f441a2c snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x417e03ad snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x439d5b38 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44148178 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4426849e snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x451a4aea snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x472e7489 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47d50a35 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48ab1758 snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f9df73c snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54064568 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5476be4f snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55c78313 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x56794748 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x582cfefd snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58c390eb snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59d1008b snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a7365f9 snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ac9f700 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5bb7994a devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5beb4ad2 snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c855f05 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d71edf9 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e1e78ca snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5fa5a3e4 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5fc037cd dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62302bf6 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6306f4cb snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x636048f5 snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63700535 snd_soc_lookup_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x661e1457 snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x666727d9 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68fefcd6 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6aea6ec9 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f6cd17a snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x700ae20c snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70a4368f snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72d434d9 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x732e8962 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7330cefe snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75ed3b1c snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77854522 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x779e82bd snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77f41c8d snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7844935c snd_soc_add_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b625bf4 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c1d9969 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e997fde snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ed61e3d snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7fda3d35 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81bbdeda snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8370a8d6 snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8645cec8 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87859e12 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x885cd993 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x897c4506 snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b189b3e devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b4ac972 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f262284 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x91af2687 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98e77eb5 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9cf2d622 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d475337 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1de9210 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1def2b8 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa57317bc snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7f83eea snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa836b200 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xadfeaa4e snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb20bf7b3 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3b68f7d snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb434f115 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5eb3ca1 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb60ba4b9 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbcce02ed snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd9ec89b snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe23f011 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf41af88 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf673520 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5f05550 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8a21d13 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8eb21dd snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8ff2506 snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9ee6403 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9ef6c61 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb50a639 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce321379 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcebf21ee snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0338238 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0c38a04 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3d0034c snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd53cba9d snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5d1080f snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5d4f88e snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9266c06 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9593b7e snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd96a9cdb devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdaee842a snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdbf49068 snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe031e50a dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1a81a8e snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3261ce1 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3615c8c snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe39f04a9 snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe436e66f snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6d83032 snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe95c0400 snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec1d6e4f snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xedadfbbf snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee25a445 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeeaf4593 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc4dbb26 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x072dc4b8 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2f362553 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x47e02733 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x53802e56 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5fed077c line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x71e6cfe5 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x735364ff line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7f66a919 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x85da80d8 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x87a4e21b line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xab30153a line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc51bcff0 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xcf488e87 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf382865b line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf6baa983 line6_version_request_async +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0xf6e772c3 irq_bypass_unregister_producer +EXPORT_SYMBOL_GPL vmlinux 0x00115d95 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x0012b231 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x002a1929 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x002f3e84 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0x00399b76 blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0x004134b9 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x0063fd57 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x008026e5 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x00aa88b2 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x00c5da3f usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x00cd9453 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x00f005a6 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x00fa4f0b spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0x00fb9383 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x0101e73b __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x011546f1 bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x01374e44 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x0146724a isa_bridge_pcidev +EXPORT_SYMBOL_GPL vmlinux 0x014c8d19 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x01605ac7 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x019069cb vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x0198905e wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x01b4922d inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e21df8 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x01f5b8bd pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x021ebfda btree_update +EXPORT_SYMBOL_GPL vmlinux 0x02233d44 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x02616e59 blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x026211e2 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x02660cf0 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x027b8f71 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x0280ca3b extcon_unregister_interest +EXPORT_SYMBOL_GPL vmlinux 0x02ac1916 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x02ad4f7a of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0x02c19174 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x02d07ef8 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x02fa4cbc noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x030259d1 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x03035f0b virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x030948b4 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x03169d95 virtqueue_get_used +EXPORT_SYMBOL_GPL vmlinux 0x031b95ca scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x031c583d napi_by_id +EXPORT_SYMBOL_GPL vmlinux 0x0320231d devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x032dfb2a ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x0334631f unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x03604605 pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x0361b531 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x0367355f iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x036b30db __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x038334e7 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03d1d11d ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x03eac3db sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x03ebdf01 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x03f2ebf2 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x043b935f __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x045450c1 of_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x045a9fd9 dax_clear_blocks +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x049687b2 mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0x04b5549c __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x04c2ff0e devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c5b187 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x04c9bf75 mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0x04d26e53 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x05041ca0 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x050e83a3 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x051e9660 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x053494cb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x0536d8ae crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x05467eb4 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x0548aace xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x054b3775 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x054d71f5 put_hwpoison_page +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x0567496c inet_csk_compat_getsockopt +EXPORT_SYMBOL_GPL vmlinux 0x056f5f9e device_add +EXPORT_SYMBOL_GPL vmlinux 0x0573de3d i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x0597ba8c rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x059e8d0f pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0x05c236bb pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x05e1cba1 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x05fe65a8 of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x061dee59 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x0628b1e3 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x064098e6 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x065d2993 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x06714f8b crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x0673a2a2 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x0674377c ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x068b3a66 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x072a7bb5 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x074529f5 pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x07655946 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x0779693e wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x077eedf8 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x078ab7de to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x07a2e367 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07cc0d7d gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x07d24e09 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x07d4f2eb dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0x07f92fcc regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x0842aa74 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x084e557b pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x0875da2a devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec +EXPORT_SYMBOL_GPL vmlinux 0x08cc4820 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x08d91c22 mm_iommu_put +EXPORT_SYMBOL_GPL vmlinux 0x091c824a machine_power_off +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x09243c0c pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x093a0049 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x094b0def pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x094d41b3 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x0954e30b init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x096f88f1 dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x0977556b __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x09b53db2 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x09fb1af2 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x0a0ecf04 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x0a2372bc to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0x0a3ec917 srp_release_transport +EXPORT_SYMBOL_GPL vmlinux 0x0a51ae5b virq_to_hw +EXPORT_SYMBOL_GPL vmlinux 0x0a5c9afe task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x0a6871d5 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x0a6c4c5b percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x0a6d92f0 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x0a6e7413 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x0a762b97 fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0x0a88f364 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x0aad42d5 dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x0ab099bc cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x0abaec16 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x0acefebb platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x0af8b653 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b0f9568 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x0b10fdf7 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x0b2919f7 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x0b3da946 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0b72cbc4 of_reserved_mem_device_init +EXPORT_SYMBOL_GPL vmlinux 0x0b9e957c inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x0bd636eb ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x0bdf8fdf tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0bfa68d5 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c0eb96c register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x0c1ef682 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x0c26fef0 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c60950a dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x0c688bca pmac_i2c_get_adapter +EXPORT_SYMBOL_GPL vmlinux 0x0c8049d5 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0caf75d9 opal_flash_erase +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0ce3ee5a mmu_kernel_ssize +EXPORT_SYMBOL_GPL vmlinux 0x0cf580b8 tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x0d13b0be rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x0d2d75db devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d58c7bc __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x0d5e754a ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x0d655f38 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0d6dbac8 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x0d73a952 GregorianDay +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0d81b833 __giveup_vsx +EXPORT_SYMBOL_GPL vmlinux 0x0dc87d52 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x0dcaaaae fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de06988 cpu_first_thread_of_core +EXPORT_SYMBOL_GPL vmlinux 0x0df33b44 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x0dff8f75 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x0e0c647f led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x0e0ca9b7 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x0e4004cd of_dma_get_range +EXPORT_SYMBOL_GPL vmlinux 0x0e418f90 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x0e443de9 of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x0e474955 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x0e5323d6 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x0e83fd25 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0e8d1d94 eeh_add_device_tree_late +EXPORT_SYMBOL_GPL vmlinux 0x0e906f47 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x0e9af9fc usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x0ea41f64 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x0ea6d8dd devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x0eb8747f mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x0ecf823a static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x0f012044 __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x0f312e86 cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f403672 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x0f41aac9 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x0f5675b8 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x0f5a5529 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f8f3d07 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x0f9bddcb blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x0f9fa85e skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x0fbfddf3 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x0fe3904f kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x0ff99077 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x100a1d99 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x100c286d pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x106a46aa wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1075491e device_rename +EXPORT_SYMBOL_GPL vmlinux 0x108c7b54 __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x10ba5857 regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x10e506c6 rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10f10e6d regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x11006b37 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x1104b38e dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x1114011d threads_shift +EXPORT_SYMBOL_GPL vmlinux 0x11269d31 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x112b9f33 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x1142453d sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x1143d96b blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x11537678 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x117c7305 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x11ec9310 pmac_i2c_get_dev_addr +EXPORT_SYMBOL_GPL vmlinux 0x11f61a66 ps3_mmio_region_init +EXPORT_SYMBOL_GPL vmlinux 0x121d70f2 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x123c5a06 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x12435e56 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x12586f79 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x126334a4 pmf_get_function +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x126ce3f6 tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x1277d31f crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0x1285bdd3 of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x128f1571 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x12b5a9fd tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x12e99077 ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x12f14234 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x131960be scom_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x13299f04 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x1333d8b3 ps3av_video_mode2res +EXPORT_SYMBOL_GPL vmlinux 0x1346fc43 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x134c6b64 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x1352a964 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x135b6f81 shake_page +EXPORT_SYMBOL_GPL vmlinux 0x13609dfb devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x136a4ee6 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x136f7c22 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x13816133 crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x13879880 __online_page_set_limits +EXPORT_SYMBOL_GPL vmlinux 0x13a44357 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen +EXPORT_SYMBOL_GPL vmlinux 0x13b6a69c devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x13c0bae3 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13e5ea13 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x14368ad1 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x143df0a2 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x143f5cbf ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1443f53b regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x14543542 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x14aaa60f ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x14e69f00 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x152f15ea device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x1556d068 irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0x15573bc7 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x158f2a11 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1590b827 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x1593ea78 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x159bd4a6 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x15a976bc pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x15b73cde phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x15b8b44d opal_async_wait_response +EXPORT_SYMBOL_GPL vmlinux 0x15c21e5e nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x15e13a89 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x15e36486 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x15e982c2 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x15fb444d device_add_property_set +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x16368a2d of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x163e1425 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x165ded07 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x1665c11a mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x167945e6 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x16a25c6e of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x16a367e8 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x16c28ca5 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x16dee715 edac_subsys +EXPORT_SYMBOL_GPL vmlinux 0x16f60e2c usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0x170255ea pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x1713bde3 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x172df468 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x172f6b74 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x173904fb transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x176d6f71 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x176e6f87 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x1777634e copro_handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x1784f2b4 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x178630bf xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x178ccf99 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online +EXPORT_SYMBOL_GPL vmlinux 0x17a728f6 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x17c9275e kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x17d00f98 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x17f52b5c rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x18195212 ps3_vuart_port_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1829b9ed hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x18570516 pmac_i2c_xfer +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x1876bf5c ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x187fca46 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x189c7398 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x189e1b25 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x189f874d powernv_get_random_long +EXPORT_SYMBOL_GPL vmlinux 0x18a2b999 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x18f07c09 ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x18f17aeb spu_get_profile_private_kref +EXPORT_SYMBOL_GPL vmlinux 0x18fde2dc ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x19119803 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x19143053 pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0x19266e2a kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x19952d54 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x1998135e fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x199b5afa nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19c8181f gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0x19c8f7ef cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x19eb574f pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1a1186bc invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x1a29cc78 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x1a6ddb4d modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x1a8c5907 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x1a997af8 spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0x1a9c1006 digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x1ac717e3 ps3_os_area_get_rtc_diff +EXPORT_SYMBOL_GPL vmlinux 0x1ac78aa7 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x1acdf643 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1ade859e pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x1ae2be00 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x1b0abdd9 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x1b1e6981 skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0x1b24ff86 cbe_spu_info +EXPORT_SYMBOL_GPL vmlinux 0x1b26cce2 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x1b2ed025 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x1b4da982 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x1b6c3a2a bpf_prog_get +EXPORT_SYMBOL_GPL vmlinux 0x1b79afe3 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x1b81e382 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x1b9664d1 __destroy_context +EXPORT_SYMBOL_GPL vmlinux 0x1b9a92b5 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1b9ae63c handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x1be0f269 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x1c046692 ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0x1c0b04a1 usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x1c0d380a device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x1c17d478 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0x1c2ad10a srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c604b23 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x1c67f56b __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0x1c7df74c kvm_hv_vm_activated +EXPORT_SYMBOL_GPL vmlinux 0x1c7ed57b regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c8467a1 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1cc4f463 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x1cc56a8a file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x1cdb2147 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x1cf04771 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x1cf6b27b regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x1cf82066 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d3bbbfb pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x1d48651d blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x1d612ad5 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x1d652735 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x1db400d6 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x1db42a0a ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x1dcc65c3 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x1dd352f1 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x1df62b50 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x1df728cb bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x1dfbcf4c mpic_msgr_disable +EXPORT_SYMBOL_GPL vmlinux 0x1e000879 hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0x1e02b132 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x1e10db7e usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x1e21191b nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x1e2b0087 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x1e3c7bcd usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x1e50c8aa of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1ea4d517 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x1eabc257 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x1eb55386 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebac2bd getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ec78f4a tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x1ecc368a cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1ece3553 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x1eda8b26 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x1edc21cb hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x1eff5bc3 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x1f1988f7 hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1fb2c51a blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x1fc19a87 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x1fc8bf02 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x1fd583f7 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x1fe29d4b pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x1fe41691 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x1fe970cb ps3_io_irq_setup +EXPORT_SYMBOL_GPL vmlinux 0x1ff62646 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x2000f306 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x20465c18 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x205f9313 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x2078d258 dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x207cc1d8 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x20969450 force_sig_info +EXPORT_SYMBOL_GPL vmlinux 0x209741c6 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x20db3b70 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x20e868b7 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x20ee0880 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x210b6c28 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x210b7c46 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x21179e28 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x211850f5 htab_hash_mask +EXPORT_SYMBOL_GPL vmlinux 0x211910ac inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x212e5c68 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x213235cb dbs_check_cpu +EXPORT_SYMBOL_GPL vmlinux 0x213a70be regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x21740b05 drop_cop +EXPORT_SYMBOL_GPL vmlinux 0x2174ccd9 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21b15331 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21e6f692 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0x21e89329 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x21f4628d tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x21f6f76b regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x22051cfc crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x221c1f09 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x22229faa shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x225a3a85 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x227fb180 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x229403d9 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x2298af3e tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x22b65606 pcibios_free_controller_deferred +EXPORT_SYMBOL_GPL vmlinux 0x22c0abc2 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x22c6d82a device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x22c834ff xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x22dd5e72 of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x22e35e01 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x230c44e5 crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x2339faa0 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x234390a7 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x23499a8b gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x235696b8 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x23ca9708 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x23d09d55 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x23df16fe transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x23e2664c fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x24011e14 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x241d3137 wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0x2422c82c vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x242acf30 flush_vsx_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x242f37f4 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x245b5c6c regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x247382df page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24a6b0ab rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24b58618 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x24b6528e usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x24c75539 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x24e405c7 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x24ea8218 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x2506d37a ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x25280496 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x25470ace pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x254fc109 crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x255bfb3c __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x2562ffe7 wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0x2569be2e dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x25a22ad7 scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0x25b4d393 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x25d0854c ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x25ddaa58 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x25deb83f uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x25efd276 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x25fc4cc2 tpm2_startup +EXPORT_SYMBOL_GPL vmlinux 0x25fd63e7 of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0x25fd9b0e dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x26030a85 eeh_dev_check_failure +EXPORT_SYMBOL_GPL vmlinux 0x260b7b3c blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x26279d3b __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x2665334d rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x267d35b3 register_cxl_calls +EXPORT_SYMBOL_GPL vmlinux 0x2692314e sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26d57189 extcon_set_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x26e205ec da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26f0a64e of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x26f4f193 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x26ffe59b devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x27097470 skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x27273f1d ps3_vuart_cancel_async +EXPORT_SYMBOL_GPL vmlinux 0x272ef517 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x27467e99 cpu_remove_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0x274e6d73 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x2753d9fb xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x2758d55f pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x27594b62 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x2767b626 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x276a409d ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x2783b6c9 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x27a8f761 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x27b20e4a of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0x27c0c4be eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27e122ce devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x27e1bbc0 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x27e4689b sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x27ecff21 wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x280737bb cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x28438695 eeh_pe_inject_err +EXPORT_SYMBOL_GPL vmlinux 0x28964e61 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x28a78079 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x28aac262 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x28ac9544 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x28b32e8d usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x28c14e9a regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x28cbd918 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x28ee85ae _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0x28ff99a9 opal_prd_msg +EXPORT_SYMBOL_GPL vmlinux 0x290077ca wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x29193169 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x292051c6 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x29260a91 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x293014c9 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x294be81c rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x2982dd5e inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x298f792a class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29ecfd2a skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x29f09a7a da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x2a1aa454 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x2a28c9f3 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x2a2b2c69 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x2a2cea1f map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x2a4c28dd of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x2a522257 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a68e97a cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x2a9565bc usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x2a964e31 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x2aa2cdbc iommu_del_device +EXPORT_SYMBOL_GPL vmlinux 0x2ae7a523 __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0x2ae95ffc virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x2ae9a978 cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x2b0cac10 __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x2b116fc8 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b313b68 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x2b38a8e1 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x2b4147ed kvmppc_hcall_impl_hv_realmode +EXPORT_SYMBOL_GPL vmlinux 0x2b45264d spu_init_channels +EXPORT_SYMBOL_GPL vmlinux 0x2b5c303b smp_send_reschedule +EXPORT_SYMBOL_GPL vmlinux 0x2b683158 regmap_update_bits_check +EXPORT_SYMBOL_GPL vmlinux 0x2b6c57cc l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x2bb8da89 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x2bcf63c8 devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2bdf83b9 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x2bf76044 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0x2c0d502d crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c252993 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x2c284aba usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c361163 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x2c661e79 bpf_prog_realloc +EXPORT_SYMBOL_GPL vmlinux 0x2c6930ae key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x2c69cd7a extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x2c758288 pcibios_scan_phb +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c8860a4 of_get_nand_on_flash_bbt +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2cbeb86c rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x2cc3e675 pmac_i2c_close +EXPORT_SYMBOL_GPL vmlinux 0x2cce6d4d smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x2cd0b218 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x2cd88f51 kvm_hv_vm_deactivated +EXPORT_SYMBOL_GPL vmlinux 0x2ce236ee tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x2ce5e7e1 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2cf7b9a4 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x2d06ef57 pmac_low_i2c_lock +EXPORT_SYMBOL_GPL vmlinux 0x2d0af271 pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0x2d16ce64 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d51b0b2 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x2d5836bb event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d75d63d skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x2d89aa2b blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x2d93297b crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x2da2024f do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x2db4ed76 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2dc5a6d1 btree_last +EXPORT_SYMBOL_GPL vmlinux 0x2dcb6229 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2dd3fce5 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x2e04c2eb tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x2e11c9bb devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x2e11f62e rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x2e15ff28 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x2e1b5216 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x2e1da9fb probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x2e1e550c sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e36fcd7 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x2e3c0e31 cpu_remove_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x2e4041ca restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x2e49c487 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x2e745053 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x2e999cf1 pmf_register_irq_client +EXPORT_SYMBOL_GPL vmlinux 0x2eabbc8b aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2eb9a703 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec0bf00 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x2ef54210 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0x2f0b43b8 bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f0e0ef1 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x2f26ab61 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f58aff0 rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0x2f5b7348 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f7a75fe ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x2f7b52b3 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x2f92b9e7 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x2fa8b518 regmap_write_bits +EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake +EXPORT_SYMBOL_GPL vmlinux 0x2ffb5ff7 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x300deea0 of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x301832fb opal_async_get_token_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x3022fe58 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x3033553e devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x303a7c09 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x309f8915 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x30aa391e trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x311b78c2 ps3_get_spe_id +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x31305867 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x313a769f inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x315ba222 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x318686b3 flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x31b60a61 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x31bef441 opal_i2c_request +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31f84c2c serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x31fc341a init_phb_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x31fc43cf ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval +EXPORT_SYMBOL_GPL vmlinux 0x323529b7 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x327d6fb3 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x32994aed srp_rport_del +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c23606 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32dd3902 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x32e79dfc blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x32f4a329 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x3309ea64 ps3av_audio_mute +EXPORT_SYMBOL_GPL vmlinux 0x33398de6 mmu_psize_defs +EXPORT_SYMBOL_GPL vmlinux 0x334096e0 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x3347e499 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x336fff2b set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x3374cb15 pmac_low_i2c_unlock +EXPORT_SYMBOL_GPL vmlinux 0x337786fa usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x33adbe17 spu_priv1_ops +EXPORT_SYMBOL_GPL vmlinux 0x33b1d788 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x33b4ddb4 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x33b57351 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x33ce0df8 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x33d52338 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x33d8b31e ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x340279ed devres_find +EXPORT_SYMBOL_GPL vmlinux 0x340ed33c serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x341e9bd0 skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0x342238f0 mm_iommu_get +EXPORT_SYMBOL_GPL vmlinux 0x34400711 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x34410a8b irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x34425f5c arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x349dd06a hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x34a1b74d bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34a8da5f __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x34af0adf opal_ipmi_send +EXPORT_SYMBOL_GPL vmlinux 0x34b27c27 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x34db461c wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x34ed33a0 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x34ef2930 of_pci_get_host_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x351623ef dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x35369d77 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x3538c2b6 crypto_lookup_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x353b5236 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x354f215f syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x3558defa of_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x356cacad unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x359ed12f fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x35bf2acd nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0x35c7782d of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x35d277ee securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x35d6d095 dma_request_slave_channel_reason +EXPORT_SYMBOL_GPL vmlinux 0x35d8acd7 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x35db72b0 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x3651377c pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x36584580 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x3674cf5c devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x368932d0 blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x368f1fea static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x369e8aa2 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36e5aea5 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x36f06871 eeh_iommu_group_to_pe +EXPORT_SYMBOL_GPL vmlinux 0x371a939f wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x37661a54 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x37765f3e pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x37a3ab2f rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x37b6ac05 single_release_net +EXPORT_SYMBOL_GPL vmlinux 0x37be5e5e raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x37c872c5 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x37c941a2 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x37caf453 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x37ef4a9d __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x37f1eb05 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x3837af69 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x3847f9f7 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x384e4458 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x385476a2 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy +EXPORT_SYMBOL_GPL vmlinux 0x38783348 macio_find +EXPORT_SYMBOL_GPL vmlinux 0x3881c304 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x38861690 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x389e6c74 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x38ab32e7 pnv_get_supported_cpuidle_states +EXPORT_SYMBOL_GPL vmlinux 0x38b5ba5a adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x38c05535 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x38c2e86f inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x38dd20d8 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x38e54285 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x38f37b26 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x3902f52f scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x391c1c8c debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x391eb929 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x39245a18 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x392fe739 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x39395eb2 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x39597d25 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x395d370c gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x395f7b46 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x397927e7 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x398e0176 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x3991e541 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x39a7a0cc set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x39aa369f lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39d5a248 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x39db1b2f __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x39f00ac6 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x39f04154 blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0x39f158c2 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x39f61c73 acop_handle_fault +EXPORT_SYMBOL_GPL vmlinux 0x3a029178 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x3a048ab6 mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a280cbe thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3a2daa63 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x3a3306d1 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x3a38dc65 memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a59ce3a __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3a6f5bdc crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3a70b60f debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x3a7f40f3 arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3ab20ec2 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ad0e201 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x3afcdd7b usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x3b07ce7e cpufreq_governor_dbs +EXPORT_SYMBOL_GPL vmlinux 0x3b1c5afc ps3_vuart_irq_setup +EXPORT_SYMBOL_GPL vmlinux 0x3b5140b7 cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3b675b2d rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x3b694fb6 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x3b71df96 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0x3b7dfe2f xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x3b7e9a8d led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3b92b1eb tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x3b993167 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x3baf1849 ps3_vuart_read_async +EXPORT_SYMBOL_GPL vmlinux 0x3bc6b107 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x3bd1868e rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x3be0cbb6 pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x3bf75a57 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x3c000c3d devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x3c392c64 fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3c51ea7c opal_leds_get_ind +EXPORT_SYMBOL_GPL vmlinux 0x3c63343e regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x3c7a8d48 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3c953755 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x3c9c5837 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x3ca09ca3 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x3cb89480 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cee2adc __nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x3cf69baf slice_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x3d1c3a76 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x3d2510c3 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x3d31b2e2 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d527e95 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3d612305 iommu_direction_to_tce_perm +EXPORT_SYMBOL_GPL vmlinux 0x3d70760c usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x3d795ef3 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x3d7e8ae0 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x3da67a23 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x3db2a294 mpic_subsys +EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dd070a0 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3dd27fce extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3dd838a9 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3ded5ce0 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3dfc436e percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x3e015bba tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x3e0ddf60 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x3e2117c6 bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0x3e400fbe crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x3e42f7b3 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x3e47dee2 genlmsg_new_unicast +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e8a8bf1 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x3e8cb440 regmap_fields_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x3e9621f1 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x3e98d9c6 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x3e9fdcad of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x3ea4bda0 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x3ecf6619 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x3ed8bf96 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x3efaaa85 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f1cb321 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0x3f58e1f8 sysfs_add_device_to_node +EXPORT_SYMBOL_GPL vmlinux 0x3f5d7279 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x3f664bdf usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x3f6a5db9 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0x3fb14423 md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x3fb806e5 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3fc488a6 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x3fd6fa78 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x3fef7431 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x3ff5b7a7 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x3ff80a3f ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x401bb2fc adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x402a973f blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40c140a6 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x40c977d0 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x4119488f rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4124f652 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x413eddba regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x413f20a2 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x416defd1 usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0x417a76b0 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x417b0673 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x41896d9c i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x418d7207 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4199cbb4 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x41adbc3b ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x41b4195d md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x41c11406 split_page +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x41e57bc7 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x420e9786 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x42136a7f irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0x4229e5e5 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x425523ef get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x42582fb8 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x42609e57 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x42648f20 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x42675247 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x426b2c92 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x426f3637 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x427de547 pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x42a05112 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x42e39b0a tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x430b6b9a rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x432486a3 nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x4324a4a0 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x432702e6 mm_iommu_mapped_inc +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x43649fec rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x4366baa9 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x436909cd rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x437eeff8 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43af4c7c rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43d023f1 tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x43db90d9 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x43f41712 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x44033b80 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x44083329 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x441f8fe2 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x442eb53b rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x443943a7 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x443d8e3d register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x446e3c47 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x448406f7 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44c027a4 pwm_disable +EXPORT_SYMBOL_GPL vmlinux 0x44d2ea52 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x450c3895 mmput +EXPORT_SYMBOL_GPL vmlinux 0x450e2b8d __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x450fb522 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x4514d904 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x451afa8a led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x455e77a6 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x4567afb4 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x458eaa2f call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x45946b54 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x459e5e2f dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x45b55ce1 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45d4871a queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x45ee603d regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x4601417b uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x460d2ae8 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x46308019 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x4634aa78 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x464bcfb2 ps3_system_bus_device_register +EXPORT_SYMBOL_GPL vmlinux 0x46515d48 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x46722250 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x4673ea46 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x4688c96a usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46926356 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x46a93abb regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x46c88362 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x46d9f955 ps3_irq_plug_setup +EXPORT_SYMBOL_GPL vmlinux 0x46fbb458 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x4741db42 ps3av_set_audio_mode +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x47680206 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x477e54b1 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x477f2612 rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x478ab260 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x47a1026c max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47acddea ps3_sys_manager_set_wol +EXPORT_SYMBOL_GPL vmlinux 0x47c4f7fc nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x47d160ba of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x47e4cd9b led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x47eb5808 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x47f2a676 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x47fc8164 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x47fd2d73 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x4832e798 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x4840a73b generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x485c6861 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x485ff20a ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x486bf6de get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x48aff7c9 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x48bb8e9e perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x48bf41d8 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x48f816c3 pmf_put_function +EXPORT_SYMBOL_GPL vmlinux 0x48fed600 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x49066905 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x4921359a mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x492da77c __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x4933309b i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0x494ecb82 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x495b8089 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x498133d4 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x49871511 __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x4992b155 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x499c82f0 of_node_to_nid +EXPORT_SYMBOL_GPL vmlinux 0x49adead5 of_get_nand_bus_width +EXPORT_SYMBOL_GPL vmlinux 0x49ba12de shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0x49bf6415 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x49c3c4ba stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x49ca2744 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49ee0947 __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0x4a026413 mm_iommu_mapped_dec +EXPORT_SYMBOL_GPL vmlinux 0x4a16f4f4 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x4a1b9d86 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x4a2e5570 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name +EXPORT_SYMBOL_GPL vmlinux 0x4a4d1ea6 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x4a4d4bfd sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x4a5f895b md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x4a700c3e of_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x4a90160e bprintf +EXPORT_SYMBOL_GPL vmlinux 0x4a92033d pcibios_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x4a994c0e ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x4aa8d9f8 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ab0b1e5 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x4ad4da2c trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x4ad5d153 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x4b008779 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x4b019a05 swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0x4b1333e4 devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x4b3df8ed driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x4b57744d gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x4b80523f srp_stop_rport_timers +EXPORT_SYMBOL_GPL vmlinux 0x4bc3ee06 blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x4bea46aa of_pci_find_msi_chip_by_node +EXPORT_SYMBOL_GPL vmlinux 0x4bf69a59 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x4c18f773 ps3_os_area_set_rtc_diff +EXPORT_SYMBOL_GPL vmlinux 0x4c19375d scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x4c4d331c gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c603341 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x4c645f9e static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x4c676de5 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x4c71d34c sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4c829b68 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x4c916ce0 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x4cadc657 pmf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x4cbc11bf debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x4cf6a6df blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d12fcf8 device_create +EXPORT_SYMBOL_GPL vmlinux 0x4d32163a wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x4d4705be xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x4d9009d6 mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x4db00597 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x4de144a1 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4deeb8f4 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x4deeea74 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x4df46a05 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x4dfcaf97 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x4e082a4a device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e1c6e5e kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path +EXPORT_SYMBOL_GPL vmlinux 0x4e25c6e2 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0x4e38031e fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x4e4d79ac virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x4e4e4fff devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x4e5f3efa pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4e697916 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x4e83b17d of_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x4e892d36 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x4ea5fb41 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x4ed0e5df ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x4ef43d29 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4f0391de pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x4f05925c devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f345fdf crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x4f425021 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x4f4e3d7d iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x4f61ebef sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f6a7cc5 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x4f8a43c5 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x4f9823ea __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0x4fc00c17 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x4fce5339 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4ff496a6 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x4ffc39f3 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x5016eb30 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x501c516b serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x501e044c crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x501f5664 blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0x504e9875 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x506997df policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x507596d8 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x5076529a pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x507de8c6 add_memory +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50a362fb platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x50ad71ca of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x50b7ad13 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x510e1c71 mm_iommu_lookup +EXPORT_SYMBOL_GPL vmlinux 0x510e61c6 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x5144bf80 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x51467922 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x5183cb4d scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x51a07a38 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x51b65a26 rtc_lock +EXPORT_SYMBOL_GPL vmlinux 0x51d9f999 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x51da4548 nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x51ee7ec1 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x51f7f7e5 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x5205e64d disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x520ff6f2 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL vmlinux 0x5218d569 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x522f538b tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x5264ceeb pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x5264f366 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x528626bf rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x5289201e ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x5299dbd4 ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x52b3afa3 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x52d4c6da ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x52e9b957 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x530d6faa PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x5323a584 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x53258223 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x5335dd11 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x53889528 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x539bc522 tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0x53c1f2dc phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x53dd59e3 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x53e34fe6 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x53eaaf7c stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x53eb373b dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x53ef98d2 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x5410c749 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x544bef57 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x544f77d7 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x54531428 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x546c5565 ppc_tb_freq +EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x548c077e vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x5491366d regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54bfb243 virtqueue_get_avail +EXPORT_SYMBOL_GPL vmlinux 0x54c62b3b udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x54ccc1d7 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x54e5c9ae ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x5500258a rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x5509e598 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x55164f97 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x5526f1a0 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x5588879e kvmppc_entry_trampoline +EXPORT_SYMBOL_GPL vmlinux 0x5589736c md_run +EXPORT_SYMBOL_GPL vmlinux 0x558e5262 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x55a109d0 fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0x55df6fce rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f51ef3 alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x560aa1db opal_tpo_write +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x5647431f pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x56513cfb security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0x568ca857 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x569c5a30 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x56a7ebec init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56d7c6dc irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x56da0213 ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0x56e0a9e2 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x5715047b rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x57157bd6 fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x575036e4 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x575049f6 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x575c5f94 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x57600630 ps3_gpu_mutex +EXPORT_SYMBOL_GPL vmlinux 0x57697071 kvm_alloc_hpt +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57c44d92 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x57ea4d92 nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0x58110346 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x581fdb78 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x5838032e sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x583d8a9b usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x58583248 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x588d119f list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x5892f832 release_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5895f206 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58c87195 pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0x58d3ed52 iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0x58d4aa1a sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x5904fbbe mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5913b7b7 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x5929ac7f nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x593248cb ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x5957c3b9 pmf_find_function +EXPORT_SYMBOL_GPL vmlinux 0x596d53ec usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x5994b76a vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x599e9595 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59b6f8d9 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x59dcc092 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x59f885dc to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x5a30682f inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x5a3f6678 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x5a72809a lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a7eaf4c driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x5a91bcfb power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x5ab2feaa sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x5ab5bd40 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x5aca78f9 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x5acfdaad xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x5af23265 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x5b00fc83 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x5b1effd0 of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x5b41f861 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x5b5b1716 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x5b702413 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x5ba6760f default_iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x5bb18080 phy_init +EXPORT_SYMBOL_GPL vmlinux 0x5bb491ba sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bd9cc61 pmf_call_one +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5be2a031 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x5bfee875 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c69d07f of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x5c77f611 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x5c7f5d4a trace_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0x5c872c89 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x5ca0ed92 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cabe1ad unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5cda01c0 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5ce671cd ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x5cfdcca6 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d3065b0 arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x5d42d0d7 nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x5d457e13 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x5d6427bf wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x5d87e069 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x5d91d294 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5da82cc6 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x5dccaba0 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x5dd1af1e gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x5e11d1a8 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x5e2a5421 percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0x5e359719 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x5e387791 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x5e478cd7 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e5e603d shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x5e6ec7b0 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x5e769986 ps3_os_area_get_av_multi_out +EXPORT_SYMBOL_GPL vmlinux 0x5e8a7085 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x5ea8a39b bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x5ec080b7 security_kernel_fw_from_file +EXPORT_SYMBOL_GPL vmlinux 0x5ee7542e reserve_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5f0d1618 blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0x5f226035 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x5f2444c7 blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x5f6782ef device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x5f68ca11 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x5f699a0e usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x5f88a3a2 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x5fa55279 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x5fb6f5d6 cxl_update_properties +EXPORT_SYMBOL_GPL vmlinux 0x5fc71c05 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x6007a01c regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x60467b06 btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x605d1e95 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x605e7795 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x6066ff4f crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x607d13d3 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60b7355f rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x60c4e78c sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x60cca309 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0x60ef8991 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x60f2388f usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x6100cbbe serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x6139c092 kvmppc_add_revmap_chain +EXPORT_SYMBOL_GPL vmlinux 0x6154c1bb of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x617e86ff regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x61963aa2 __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x6197d311 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x61a90c54 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x61cdbed9 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x61edf388 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x61ee48d9 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x61f43742 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x61f7d2f0 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x6214b16c pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x626083a7 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x6273d411 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x62bd5a6d __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x62d263d5 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x62e94b84 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x6314ac10 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x631a529c pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x6351fa82 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x6359a196 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x636d605b eeh_add_sysfs_files +EXPORT_SYMBOL_GPL vmlinux 0x63724b78 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x63738ab8 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x63811c49 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x63c9f9cf zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x63d3bd6c extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x63d79076 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x63db5a76 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x63f14ebe io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6414b9fb rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x64732c8e iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0x64939621 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x64c26a6d scom_map_device +EXPORT_SYMBOL_GPL vmlinux 0x64c37f05 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x64ca6ab1 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x64dcf315 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x64e04999 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x64e80dfb freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x650c0732 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x650ef77f sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x65521ede ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x6567aabb crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0x657dc1a4 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x659a9b2d napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65be51c0 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x65cba285 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x660f13c6 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x664f8006 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x665a2b4c blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x6665421e rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x666884c0 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x6668c067 cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0x6671b418 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x667a812c ps3av_set_video_mode +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x66afb53b unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x66b32bb0 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x66b92c8c smu_get_ofdev +EXPORT_SYMBOL_GPL vmlinux 0x66c31a9b wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66dcba03 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x66e20a9f sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x6748e6e2 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6761aec0 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x678a4105 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67d1b945 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x67fb7023 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x68217b4c fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x6832abc8 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x683a206c serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x685fe55d regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x687bb305 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x687c8cc8 skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0x68973403 tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x689811c2 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x68a8a360 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x68e60e5d crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x68f0ac45 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x69564c17 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x69571f6d netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x6961604c rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x69790ef6 __init_new_context +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x697cbbb4 threads_per_core +EXPORT_SYMBOL_GPL vmlinux 0x698642c6 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x699ec170 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x69c1d134 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x69c3c4c8 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x69d0fe86 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x69fbfd8a component_master_add_child +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a181f36 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x6a18b111 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x6a2a8870 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x6a2ffcd1 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x6a71af61 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x6a71e5ae ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a936feb system_verify_data +EXPORT_SYMBOL_GPL vmlinux 0x6acb8d84 ppc64_caches +EXPORT_SYMBOL_GPL vmlinux 0x6ad4d11c blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x6ae06b43 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x6afd358d usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x6b0324f9 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b48436e device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x6b567c54 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x6b66fdde ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x6b6a966f shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x6b70601b phy_put +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b83c369 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x6bbaadc7 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x6bbacfed dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c4b363d devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c53af6d ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x6c5f9489 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x6c685fc7 tpm2_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x6c6fbf9c crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x6c783c41 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6ca0fc31 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0x6cadb246 cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x6caf5a80 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x6cc2fb2c opal_message_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6ccfae5e blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6d0697aa sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x6d06a42b bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d313f02 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x6d477ec0 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x6d5757e4 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x6d644901 ref_module +EXPORT_SYMBOL_GPL vmlinux 0x6d682268 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6d71680b regmap_fields_write +EXPORT_SYMBOL_GPL vmlinux 0x6d74237c __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x6d791c4b blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x6d7b843a mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x6dae732c adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6df649bb pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e31986a rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x6e369db9 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x6e379526 kernstart_addr +EXPORT_SYMBOL_GPL vmlinux 0x6e427980 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x6e5a9616 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x6e5bc65c usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x6e663928 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e8119d8 fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x6e872275 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x6e88316a __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e92f2d7 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x6ed359f8 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x6ee6dd3a class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6ef3d80d __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6efe0c0b pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6f055fd0 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x6f152bee debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f360cdb tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6f4b37bb __remove_pages +EXPORT_SYMBOL_GPL vmlinux 0x6f4dfe40 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x6f606b9a bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6f689beb debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x6f6e9e4c device_move +EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x6f87eeac rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x6fa8db37 of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x6fbd0d85 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6fcf836f devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6ff05ee8 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x7010fc9a gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x7044f8af pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x704f57a1 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x70880945 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x709c5c21 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x70a789a2 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70e1bb20 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x70eb2fef of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x70fe29c3 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x7101aedf ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7110bfec unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x7156ebde sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x717a68b5 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x718e74ec virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x71a91061 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x71acab98 of_get_dma_window +EXPORT_SYMBOL_GPL vmlinux 0x71b104b7 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71e16902 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x71e96af2 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x71fb8368 pcibios_free_controller +EXPORT_SYMBOL_GPL vmlinux 0x721d7217 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x721ed256 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x72391179 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x724f8fa0 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x7261d5ab bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x72798b99 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x727ebcd2 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x7286fd89 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x72ab49a6 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x72bd2624 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x72d3b9bb extcon_get_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x73018c52 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x73060822 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x7308f315 tps65912_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x736e2caa tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x736e5366 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x739aa1a1 pmac_i2c_setmode +EXPORT_SYMBOL_GPL vmlinux 0x73a360d3 eeh_pe_get_state +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73abf8d1 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73c48230 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x73c5bce1 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73ddfb05 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x73de64b2 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x73e8bbc8 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x73e9366c crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x74325e25 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x74390a4b crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x748b5bc4 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x74a63926 ps3_sys_manager_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74c8592e ps3_vuart_clear_rx_bytes +EXPORT_SYMBOL_GPL vmlinux 0x74c885b5 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x74de19be devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x751749e8 pwm_config +EXPORT_SYMBOL_GPL vmlinux 0x751eb0e8 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x75329035 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x757610ba pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x7579d7fd crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x757b49d2 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x75894805 of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x75959a52 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x75b8899e devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x75c9d8c3 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75cdfc6d relay_close +EXPORT_SYMBOL_GPL vmlinux 0x75d17d0b pmac_i2c_open +EXPORT_SYMBOL_GPL vmlinux 0x75f2a044 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x75f48cdd tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x76069594 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x760d8c48 kvmppc_clear_ref_hpte +EXPORT_SYMBOL_GPL vmlinux 0x761ed6ec hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x7628d18d usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x762c0858 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x765e9398 of_scan_bus +EXPORT_SYMBOL_GPL vmlinux 0x76719ae1 of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7692a315 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x76b027e2 device_register +EXPORT_SYMBOL_GPL vmlinux 0x76ccd7ec ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x76cd5137 blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0x76ce2108 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x76d61579 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x76fec888 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x7746155f arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x7763040e debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x776d7109 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x77740214 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x778b260a pcibios_finish_adding_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x779544d8 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77efec3b sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0x77f2a4a0 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x78108342 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x78404fe9 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x78641038 copro_flush_all_slbs +EXPORT_SYMBOL_GPL vmlinux 0x78714791 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x787fd443 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x78873cdb usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x7893feea gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78b87114 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x78c5386a handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x78cc5bec hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x78d042ff max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x78d7a7bf hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0x78ec94f0 flush_altivec_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x78f0d108 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x78f9ae20 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x790a27b4 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x7910a8d5 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x791dc205 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x794dfa65 of_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x795198b5 pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0x795b6af0 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x798e15a0 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x799402cd vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x79abc70c fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x79b74a55 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e7b063 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x79f6147f iommu_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7a0758c5 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x7a07f354 kvmppc_do_h_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a2c2f14 mm_iommu_find +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a533283 usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x7a559854 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x7a6dc369 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x7a73ca20 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a98b3e4 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x7a99a26a fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x7a9ec81c led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0x7aa03e5e skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x7aa26595 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b18056b arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b1fd84c __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x7b362a2e pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7b3c5767 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x7b3f13a0 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0x7b4c7cf7 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x7b577edb gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x7b643fc1 srp_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x7b70ed5c pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x7b9fc5d6 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x7bbfe9a8 tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x7bda711f nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x7c004e17 user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x7c1722f6 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x7c2de8ba vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x7c32072a devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x7c37bc89 pseries_ioei_notifier_list +EXPORT_SYMBOL_GPL vmlinux 0x7c38e871 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0x7c6a83fc xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x7c8b9553 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x7cad8078 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x7cbd1f12 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cedf677 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x7cf7de3c scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d25358f device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x7d2dc6f0 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x7d3bc2ed spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7d45245a tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7d4ccfc5 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x7d509764 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x7d552396 component_del +EXPORT_SYMBOL_GPL vmlinux 0x7d56d8d6 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d7a72e2 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x7d939470 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x7d990b42 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7db3a30e iommu_flush_tce +EXPORT_SYMBOL_GPL vmlinux 0x7db66116 of_display_timings_exist +EXPORT_SYMBOL_GPL vmlinux 0x7dbe6f90 pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x7dc1e388 alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x7dc68405 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7dff0ea2 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x7e0c94dc nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0x7e17ba7b klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x7e28e81e sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x7e599be7 flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7ea1a2bc probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x7eaddd5e of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x7eb1fa00 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x7ec2c089 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7edebeff hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x7ee723d0 x509_request_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x7f008202 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7f040329 get_slice_psize +EXPORT_SYMBOL_GPL vmlinux 0x7f068e21 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x7f0a30d1 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x7f13d491 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x7f1c0420 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature +EXPORT_SYMBOL_GPL vmlinux 0x7f328664 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x7f39b704 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x7f4ae116 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x7f52c522 ps3av_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x7f583a30 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x7f6cc2c8 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x7f7748f3 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7f7bc710 klist_next +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f8098dd rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fa653b0 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fc852b8 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x7fd8e703 __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0x7ff3621b dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x7ffbc934 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x801228d1 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x803c4c1e device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x804ea02d __find_linux_pte_or_hugepte +EXPORT_SYMBOL_GPL vmlinux 0x80507f72 ps3av_audio_mute_analog +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x8082af36 pwm_set_polarity +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80ad0558 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x80b73fba platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d27299 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x80f87ad0 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x8104fd68 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x8114b8d6 md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x8128000f page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x812ce933 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x81418abf shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x8152e111 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8188bae2 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x819ef527 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x81a0419c percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x81b295c5 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x81b3304f rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x81b8be61 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x81c4e2eb dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x81c8fa5c usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x81df9e78 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x8233bbbd pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x8246f9a3 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x82491b0b param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x825e2ac1 copro_calculate_slb +EXPORT_SYMBOL_GPL vmlinux 0x8260c208 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x826e43e8 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x82853498 pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x829ea178 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x82b3ff76 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x82b87f74 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x83095671 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x830fb0ba crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x833d4602 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x834f008b pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x8369b404 wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0x836bf314 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x836c6627 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x836d61d0 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x83776d8c ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x837e3245 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x83a17503 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x83b19899 bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x83db9d28 pmf_unregister_irq_client +EXPORT_SYMBOL_GPL vmlinux 0x840ac7e7 iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0x84368bed __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x84576cfb bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x84750133 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x8482a069 __sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x84868601 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84b57a22 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x84b9a76d __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x84efca58 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x852b31a1 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x85355d6e of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x8549ca9c crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x854c3441 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x854db0a7 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x8579d218 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x858130ba devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x8586b3ce transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x85912d20 fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0x85a90231 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x85aaaec0 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x85c0cbf1 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x8616ab18 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x8666a7c5 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x8690e05e fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x8693d598 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x86b1368a pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x86b36511 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x8702e548 process_srcu +EXPORT_SYMBOL_GPL vmlinux 0x8704ee4e rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x870a5c64 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x872db168 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x8758596a ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x87b90cad tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0x87bbf295 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x87be32e6 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x87c9717e tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x87d27be6 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x87f6067a ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x87ffc43d xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x8804af3d usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x8813ca01 pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0x88162d8c ps3_open_hv_device +EXPORT_SYMBOL_GPL vmlinux 0x882a4396 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x883cb010 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x885d3627 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x887dfcd7 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x888d9783 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x88974a04 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x889c7024 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x889d594c __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88ca64da class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x88cfc015 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x8915a047 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x892571a0 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x892717d4 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x893cf7b6 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x8948966b sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0x89559ff4 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x89575001 dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0x896cace0 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x898686de anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x8986dbea extcon_register_interest +EXPORT_SYMBOL_GPL vmlinux 0x89ad6ca2 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89bc2283 xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0x89cf36a0 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x89d47b4b syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8a3df144 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x8a43e6f9 dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0x8a50ebf5 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a561ae4 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod +EXPORT_SYMBOL_GPL vmlinux 0x8a70604b scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x8a75b7d6 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x8a7c3144 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x8a8208cb mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x8aa3e626 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ac8df70 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x8acab0ce trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x8b03c71a __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x8b0b466f sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x8b2ab54d kvm_release_hpt +EXPORT_SYMBOL_GPL vmlinux 0x8b3c770c blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x8b5d4ffb usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x8b6cf894 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x8b70e8ea __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x8b79373c usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8bae000a shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x8bb3b105 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c2704d6 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x8c314535 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x8c31e26b devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8c3e5acd register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x8c414ffa usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x8c60113e bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8c636253 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8cae54b5 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8cbfcebd each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x8cd75623 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params +EXPORT_SYMBOL_GPL vmlinux 0x8cea765f memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0x8cfb125e da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x8d0685e9 get_device +EXPORT_SYMBOL_GPL vmlinux 0x8d0a0298 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x8d0c71c7 spu_setup_kernel_slbs +EXPORT_SYMBOL_GPL vmlinux 0x8d0dbb3a rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d4d3eaf crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x8d6481a7 swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x8d6577df ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x8d7dc619 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x8d804eb3 crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0x8d85367f smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x8d9a7fe3 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x8dab4462 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x8dbf5a20 kvmppc_hv_entry_trampoline +EXPORT_SYMBOL_GPL vmlinux 0x8dfd5821 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x8e0cb8e5 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x8e2b25c2 videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e354bde page_endio +EXPORT_SYMBOL_GPL vmlinux 0x8ea0ef97 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x8ed29ef0 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x8edc4b0c cpu_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x8ee3992e crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x8ee5f2e5 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f2104d7 of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x8f467370 crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x8f4e84b3 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8f6cbeac spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f7ac468 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x8f7ba92f yield_to +EXPORT_SYMBOL_GPL vmlinux 0x8f7f1a8f __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x8f93a618 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x8fa9753a ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8fceb7ff __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x8fced602 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x8fd840cd percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0x900c5eed tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x90138998 scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x902aacd3 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x9039dad2 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x90652b2a pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x9077d5ea usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x907980d4 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x907c221b dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90b730a8 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x90d62db4 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x90e79a03 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x90ec3c72 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x90fa9441 kvmppc_h_get_tce +EXPORT_SYMBOL_GPL vmlinux 0x91057e35 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x91138484 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x911d069c spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9122c849 dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x914c85d6 pcibios_claim_one_bus +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x918cfcde ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x9195924c xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x919d5079 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x91a17c4d crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x91a20a36 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91d65c2c of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x91d99e22 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x91f0b24c pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x91f0c992 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x91f0f6ca __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x9224adc3 i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x923e0316 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x9246245b spu_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x9246879f sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x925da7f6 device_reset +EXPORT_SYMBOL_GPL vmlinux 0x92a1ae3d regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x92b4b0d0 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x92b9fa6e dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x92ceb1e5 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e27049 of_pci_msi_chip_add +EXPORT_SYMBOL_GPL vmlinux 0x92edc0e8 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x9306ca72 blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x932d45ae user_describe +EXPORT_SYMBOL_GPL vmlinux 0x93311080 opal_flash_read +EXPORT_SYMBOL_GPL vmlinux 0x93336db3 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x9350c5ce kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x935516ca usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x938c0a28 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x93947f9d ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x93c0e77d dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x93da723e __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x93dd83c4 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x93f4372a locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x93f76075 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x940a9423 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x94100c02 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x94386449 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x947de920 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94ad1744 ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x94b12cb6 thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0x94ba34a5 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x94bbfeb6 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x94ca57b8 ps3_vuart_port_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x94d972b7 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x94de8c8c gov_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x95034c2f irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x950c1615 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x955b08e1 of_css +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x95797857 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x9596856a bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x95a9f7fc eeh_pe_reset +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95bfbe37 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x95ced079 flush_fp_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x960926aa skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9642d5c4 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x964a09d5 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x965a78d5 threads_core_mask +EXPORT_SYMBOL_GPL vmlinux 0x965db1a4 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x9675ebc8 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x9685141d max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x96a37f78 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x96b67f03 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x96b801a9 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x96e04b60 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x96f59192 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x9713224f usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x97227d41 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x97271df9 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x972c9252 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x9735f061 register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x974f2bab ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9752eb96 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x9767e2e2 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x9780c464 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x979cca41 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x97a01819 iommu_tce_clear_param_check +EXPORT_SYMBOL_GPL vmlinux 0x97a5329c adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x97be75a9 pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0x97c99ae1 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x97ddb97a crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x9801ed0a trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x98212059 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x9825d129 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x982cd486 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x98393437 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x98a02a70 register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x98ab6a58 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x98ae9280 iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0x98b9e7b6 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x98bfa4a4 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x98f9f73d fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on +EXPORT_SYMBOL_GPL vmlinux 0x9904dbba dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x99268195 cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x99368d65 kvmppc_update_rmap_change +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x99720cc2 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x9973bcc2 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x998187a7 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x9987e6e9 opal_get_sensor_data +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99bf3215 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x99c7f097 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x99e9f19a fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x99eafff5 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x99fe23d1 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x99ff8d08 opal_invalid_call +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a253fe0 of_pci_msi_chip_remove +EXPORT_SYMBOL_GPL vmlinux 0x9a453ce9 reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0x9a49d937 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x9a619dfd crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x9a7263e3 tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x9a78f022 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9a8c8354 securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0x9a925b91 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x9aad6540 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x9ab6e9e9 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x9abf5bd2 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ad11d58 device_del +EXPORT_SYMBOL_GPL vmlinux 0x9adf08c3 mmu_linear_psize +EXPORT_SYMBOL_GPL vmlinux 0x9ae33a40 pcibios_map_io_space +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9b0509af regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x9b0efffb platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x9b4947ba rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x9b50e070 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x9b522b63 irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x9b6f44eb init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x9ba1cd8c irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9bc9a0ff nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x9bca03ca ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bee2e96 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x9bf05490 devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x9bf6c7b4 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9c1239ad uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x9c132604 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x9c2232c6 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x9c4b6758 regmap_field_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x9c893670 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x9c8ee6b9 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x9c907ef6 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x9c93d693 save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0x9ca0c98b platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cd7e822 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x9cdc253c pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x9cec34aa thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9d01eef6 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x9d140524 blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0x9d1caab7 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x9d2878cf vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x9d2f6649 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x9d69d6b0 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x9d7ec533 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9d80a706 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x9d84ea8d trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x9d9b2384 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x9d9dd8f2 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported +EXPORT_SYMBOL_GPL vmlinux 0x9db837b3 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x9deb5e47 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x9e0ef81a regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x9e112b55 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x9e277339 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x9e2a9a68 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x9e2cc437 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e6c9d6f virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x9e72fce9 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0x9e909e6f mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x9ea98d06 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x9eaa920f init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x9eb90ed6 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x9ec82ea0 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x9ec9c669 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ee1cc43 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x9eee8110 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x9ef47e1f reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0x9ef5c639 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9ef9b810 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x9f191a84 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x9f239d15 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x9f3bb1f7 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x9f42bbb2 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x9f45740c usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x9f4c0b10 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x9f576879 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x9f6ead48 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x9f7026fa of_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0x9fbd0b09 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9fee3b82 rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9ff4ab7c spu_remove_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0xa01f1e78 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xa0335deb unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xa038087e mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xa071e996 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xa079dc03 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xa0987b54 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xa09f55fc gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xa0a27fff pci_address_to_pio +EXPORT_SYMBOL_GPL vmlinux 0xa0a3da16 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa0b9113c regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xa0e0ba16 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xa102e797 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xa12fa47d bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0xa13c6e85 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0xa1498221 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xa16982f2 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0xa170b56d spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0xa18d519c devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0xa18d9383 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa1951f9c dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa1ae1d46 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xa1b6030b trace_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xa1e8a058 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0xa215dced of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2718017 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa2816ed2 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xa28603e4 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0xa28b8d8e ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0xa2968353 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xa2a098e0 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0xa2ac5519 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2bdc488 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0xa2c18cf1 devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xa2d4ca0b ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xa3248c60 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa333c524 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xa35fd73d hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xa364cd2e iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xa36c92e1 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0xa37d38ba blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xa384918b pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa39b2cc1 pwm_enable +EXPORT_SYMBOL_GPL vmlinux 0xa39f4596 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a2d9af walk_system_ram_range +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3c5c43b led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xa3c5db1b kick_process +EXPORT_SYMBOL_GPL vmlinux 0xa3ca9f19 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xa3e16693 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa3fbf4f4 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xa40d1f63 rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0xa419d509 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xa44c2a75 of_overlay_create +EXPORT_SYMBOL_GPL vmlinux 0xa44de4df ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0xa4595719 rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0xa4707ac3 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa499901e wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0xa4b1c997 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xa4f97615 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xa5034e4f nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xa51855ee phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0xa521ea4c usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xa52b7364 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xa560e135 tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xa58d5edb usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xa5adc277 fb_sys_write +EXPORT_SYMBOL_GPL vmlinux 0xa5b00659 ppc_proc_freq +EXPORT_SYMBOL_GPL vmlinux 0xa5d40183 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xa5d41e09 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xa5dcbc9a usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5efe460 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xa5f2c98f usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0xa60054e6 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa628876b devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xa62db9e9 iommu_tce_xchg +EXPORT_SYMBOL_GPL vmlinux 0xa6400a13 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0xa642f399 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0xa64df440 kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0xa65a6a4d xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xa65aba44 hash_page_mm +EXPORT_SYMBOL_GPL vmlinux 0xa65dcf84 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xa6647139 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa67094bb __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xa674bef4 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0xa6797f17 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xa67a0d63 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xa6a6577c nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xa6ae78df rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6b7e295 nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xa6baad99 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0xa6bdcbd1 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xa6bf5c2d gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xa6c28977 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa6d0fc17 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xa6d439e7 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6eded6c opal_xscom_read +EXPORT_SYMBOL_GPL vmlinux 0xa70a5fd8 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xa717c13a i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xa721bc3f opal_rtc_write +EXPORT_SYMBOL_GPL vmlinux 0xa72c65e8 cpu_add_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0xa7303986 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa7344da5 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0xa7592dfa crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xa7619b13 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xa7709ee3 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xa77fa291 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0xa77ffeca pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xa79142e3 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xa793e4af xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0xa79c3852 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0xa7c05aff perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa7c55a5f single_open_net +EXPORT_SYMBOL_GPL vmlinux 0xa7c7f74c irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xa7dca47c sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xa7f5aa64 extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0xa82158c5 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0xa821a9f8 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0xa82237c5 of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xa829c0af blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xa832a99c sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xa83ca15c vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa862c053 phy_create +EXPORT_SYMBOL_GPL vmlinux 0xa86e4e95 fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa89a00e8 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8e2cf8b power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0xa90f5ee6 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0xa919ef92 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xa91e325e dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa93e675c request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0xa98cdb36 ps3_get_firmware_version +EXPORT_SYMBOL_GPL vmlinux 0xa9aa1b00 opal_poll_events +EXPORT_SYMBOL_GPL vmlinux 0xa9ce341e usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0xa9d19590 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xa9dbafb2 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9e6075c nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0xa9ef9fe6 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xaa07a39f phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0xaa5b0bba ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xaa65078e tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xaa6dc643 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xaa7ca970 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaac846e7 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xaae5e01d sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xaae5edea blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xaaf1ba0f gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xab0e0ef1 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xab2b243d ps3_irq_plug_destroy +EXPORT_SYMBOL_GPL vmlinux 0xab51c2b2 ping_err +EXPORT_SYMBOL_GPL vmlinux 0xab567d31 percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del +EXPORT_SYMBOL_GPL vmlinux 0xab62b21d ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab7abf25 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0xab8a2720 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xaba2db15 trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xabb911fd regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabd3d40c list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xabfaa71c tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0xac11cc11 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xac232207 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xac4cf1b6 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0xac5961b3 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xac65ec94 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xac7055ed dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0xac74ba32 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xac9b7006 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xacbe6ab4 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xace9dd9b debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xacfe997e powerpc_firmware_features +EXPORT_SYMBOL_GPL vmlinux 0xad19e15e usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xad38a8aa sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0xad3c340b pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0xad71ea47 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0xad789242 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0xad9e496a of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xada41ca3 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xadd51533 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xadd56e6f ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0xade18425 devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xaded9da1 perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0xadf029e8 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xadfc9469 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xae4ffc7f sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae6eaf93 hwpoison_filter_dev_minor +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae81922b of_overlay_destroy_all +EXPORT_SYMBOL_GPL vmlinux 0xae84473f devres_release +EXPORT_SYMBOL_GPL vmlinux 0xae8a2c9c dax_fault +EXPORT_SYMBOL_GPL vmlinux 0xae9793fb arizona_of_get_type +EXPORT_SYMBOL_GPL vmlinux 0xae99db01 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0xaeb05ace regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0xaec9921f hash_page +EXPORT_SYMBOL_GPL vmlinux 0xaecd8bc9 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xaed8fa30 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0xaee6b267 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0xaeecab00 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0xaef0c687 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xaf01f275 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xaf08f4e9 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0xaf0d9cb9 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xaf279112 opal_leds_set_ind +EXPORT_SYMBOL_GPL vmlinux 0xaf4ba369 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xaf603917 irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0xaf6553ac pstore_register +EXPORT_SYMBOL_GPL vmlinux 0xaf772d19 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xaf9487b0 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xafaa19dd component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xafbe6c9e kvmppc_hwrng_present +EXPORT_SYMBOL_GPL vmlinux 0xafd47e2a cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xaff39556 realmode_pfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0xaff8ce00 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xb00b833e pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xb086af53 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0xb0a0a9cc serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0b9d88e ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0eb658b tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xb1014c41 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xb11fed3a usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb16d06c3 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1b370bd __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xb1c1267c regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xb1d0142d sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xb1d9961b wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1e3863d subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xb1ed6e75 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb22429e6 trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0xb2336c5f crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xb26181c7 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb2842052 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xb2bbd8a8 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xb2c7f7e3 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xb2cd0466 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb3440765 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy +EXPORT_SYMBOL_GPL vmlinux 0xb3810081 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xb3a8e5ed regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xb3bfc8ab thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0xb3cc331b ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xb3d2abb1 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb3e175e1 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xb3e4969d inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0xb3e6c6eb __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0xb40679ce __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xb417b26b attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xb419d95d sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xb41f54bd __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xb41f625c crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xb454be2d wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xb477aa0e led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xb4815457 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xb488588e tb_to_ns +EXPORT_SYMBOL_GPL vmlinux 0xb4b2cd24 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4c2ed7d of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0xb4c4b679 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4ef2863 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xb4f74411 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb521d583 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb5388c29 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xb560f8aa fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0xb5610f11 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xb5848bae __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb59a8d9c tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5aa10af atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb5bc2164 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb5c8edf4 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0xb5dbfe23 system_trusted_keyring +EXPORT_SYMBOL_GPL vmlinux 0xb5e218bd rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb607b13f usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xb60b5707 of_i8042_aux_irq +EXPORT_SYMBOL_GPL vmlinux 0xb6150b0d sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb63379b8 bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xb643c250 xics_wake_cpu +EXPORT_SYMBOL_GPL vmlinux 0xb67f0611 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xb6874c64 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6b2b4b3 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xb6ba1a43 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0xb6bc007a spu_sys_callback +EXPORT_SYMBOL_GPL vmlinux 0xb701ed4e uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xb71888b2 smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xb72031c5 wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0xb722453d subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0xb7349f60 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0xb7489ef5 __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0xb7498058 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xb764a5a6 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xb769353c tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0xb775581e max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xb77ad687 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xb78dc1a3 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xb7c66962 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0xb7d5888d lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0xb7f48fd5 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb80f23b4 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb84b1aae ps3_event_receive_port_setup +EXPORT_SYMBOL_GPL vmlinux 0xb85917a5 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0xb859ef1d register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb8a47bc6 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xb8ad8ed9 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xb8b145fb securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xb8c0efca sysfs_remove_device_from_node +EXPORT_SYMBOL_GPL vmlinux 0xb8c3538c blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8d810b9 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xb8fdbb38 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0xb902dfbf ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb90aadfa blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0xb945ace8 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xb94de068 percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb9611631 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xb9696403 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0xb981f55d sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xb992bcc8 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9e01789 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0xb9e04c6d wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0xb9f322d6 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xba06de9e pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0xba158769 rtas_cancel_event_scan +EXPORT_SYMBOL_GPL vmlinux 0xba1b3bab shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba36b765 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xba61b68b sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xba75d069 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xba8b11fc swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0xba915b87 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbaa0d318 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0xbaa84153 kvmppc_do_h_remove +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbabfd136 regmap_fields_force_write +EXPORT_SYMBOL_GPL vmlinux 0xbac5b60a ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xbad3d799 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb205818 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xbb211794 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbb49aafe spu_64k_pages_available +EXPORT_SYMBOL_GPL vmlinux 0xbb562731 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0xbb592331 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xbb6d8f25 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbbafcba9 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xbbb9e232 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0xbbbf6e13 blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xbbc6fca4 percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0xbbcfaae3 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbbd8c410 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0xbbdd4db8 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbbe7cb0b scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0xbbe8ff9b cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbbeae37d thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xbbf5afed fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0xbbfbbef2 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0xbc12dbc4 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc2fcf42 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xbc3f68d3 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0xbc57816a ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0xbc5904db __class_register +EXPORT_SYMBOL_GPL vmlinux 0xbc67164b wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc81c4c3 msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcc20a01 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbcc21a08 eeh_pe_set_option +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbcf6917a pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xbd0e45f3 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd407c98 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd671048 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xbd787c2c debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xbd7fa02e dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xbdcf3c43 thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbde8dc00 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0xbdf0aa76 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xbdf32c4b md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbe0c4f62 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0xbe1723bc regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe26225f wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0xbe372eeb __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbe471cdf opal_rtc_read +EXPORT_SYMBOL_GPL vmlinux 0xbe49d084 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0xbe538a64 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbea1021d da903x_read +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbeb83714 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xbebcd541 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xbec15b5a irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xbec56db0 bus_register +EXPORT_SYMBOL_GPL vmlinux 0xbec8d1c8 analyse_instr +EXPORT_SYMBOL_GPL vmlinux 0xbecd21ea pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xbedbbae7 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf10d313 __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0xbf1cc04b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xbf2463ed filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0xbf63097f percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xbf6fc3b1 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0xbf721d98 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0xbf77054c tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xbf7a8617 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xbf9c3d7a ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0xbfa4363c ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xbfb1b22f fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfc88b85 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbff3052f wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space +EXPORT_SYMBOL_GPL vmlinux 0xc004975c verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xc00d5f38 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0xc00eea94 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xc02bec3c usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xc03593d1 ps3_system_bus_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc03a3c69 pmf_call_function +EXPORT_SYMBOL_GPL vmlinux 0xc0450f32 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0xc061367e mpic_msgr_get +EXPORT_SYMBOL_GPL vmlinux 0xc065a455 cpu_core_index_of_thread +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc091db80 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0xc09eb786 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0d215a9 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0xc0e9d6c8 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0fa01eb of_get_nand_ecc_step_size +EXPORT_SYMBOL_GPL vmlinux 0xc0fe6881 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0xc129955f mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0xc145b7c9 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0xc1613003 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc1692063 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xc170f1c9 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc17d451e regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xc1830db8 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0xc1a57946 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xc1b39534 sock_update_netprioidx +EXPORT_SYMBOL_GPL vmlinux 0xc1c1c529 reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xc1c9bacc wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xc1d3606e da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0xc1ed2767 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xc1f00ad0 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xc1fa2514 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0xc2081c79 of_get_nand_ecc_strength +EXPORT_SYMBOL_GPL vmlinux 0xc2258092 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc239fdd1 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0xc241ad5b dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc2985fbb usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0xc29c95ef devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0xc2c25342 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xc2c7b92d __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0xc2e2ed1b alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xc2e4a016 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0xc2f44c0e __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xc2f92ef1 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xc3006165 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xc311f8c4 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc357923c pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc372f332 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xc38f36d9 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xc3a04506 devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc3a3ec05 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xc3dc7d55 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xc416bd3d ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc435c8cd bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc4598640 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xc46fca44 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc476da33 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0xc4806c27 unregister_cxl_calls +EXPORT_SYMBOL_GPL vmlinux 0xc482116a rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc48c12b6 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xc4a16a61 unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xc4aba300 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc4e25a36 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0xc504a8f3 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0xc51a1520 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc54a4419 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc580c8bd dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc58a1687 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xc58ea0a9 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xc5a2c19f idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc5c3fc85 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0xc5fab5b9 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xc606cd3c boot_cpuid +EXPORT_SYMBOL_GPL vmlinux 0xc617670d preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc622db26 spu_add_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0xc623a88b transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xc627431a alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc63e7d93 static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xc6511656 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xc651a7f7 get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc66c2311 ps3_vuart_irq_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc679741d cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xc68aa252 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6aa5c8d pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xc6c69a8f opal_flash_write +EXPORT_SYMBOL_GPL vmlinux 0xc6cf3529 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xc6d1c68a usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xc6da7a0a __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0xc6e2f79a percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc6f6ec2e usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xc720deeb ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xc720fdd9 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc726d0bc spi_setup +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc741eb01 srp_rport_add +EXPORT_SYMBOL_GPL vmlinux 0xc7561201 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0xc76ebba6 register_spu_syscalls +EXPORT_SYMBOL_GPL vmlinux 0xc790693f pmac_i2c_find_bus +EXPORT_SYMBOL_GPL vmlinux 0xc7908909 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc791613e bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xc79592da wm8400_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7ac8d6f led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer +EXPORT_SYMBOL_GPL vmlinux 0xc7cb6ae5 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0xc7ccdb69 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xc7d77ecb ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7fac37a tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0xc8141118 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0xc81b0248 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xc81e3d6b tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xc8450c44 pcibios_add_pci_devices +EXPORT_SYMBOL_GPL vmlinux 0xc853d772 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xc8562e7b regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xc85943f9 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xc85de8f9 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xc85e710d register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc89542e2 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8bea213 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0xc8c3b62d trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xc8d17ee8 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0xc8d26ce0 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc8d3bb66 posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0xc8d9774d fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc90432cb percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0xc90651f8 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xc90e8d2b sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc92369cf blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xc9247fb9 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xc9321e41 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xc93ead0c pmf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xc94f2512 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc95f3ad3 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc9779d7c device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level +EXPORT_SYMBOL_GPL vmlinux 0xc9beb904 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0xc9c4d9b8 skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xc9ced521 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xc9e229b9 __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9f3ed25 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xc9f6d591 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0xca15d6e0 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xca5c8cd4 ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0xca5ff4b7 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xca74835a irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcabe8f4b task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0xcac4843d blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0xcaec2d58 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0xcaf09487 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0xcafcf59c driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcb002c4e mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb2423f2 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0xcb4669a2 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xcb5a9866 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xcb5ee621 hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xcb603517 rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0xcb80383a pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0xcb8877cc pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xcbcd58b1 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0xcbd42b85 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0xcbe154ff __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbeb5aa9 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcbf82c2d rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcc09a824 of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0xcc0d746d trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0xcc0f1009 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcc1016dc pmac_i2c_match_adapter +EXPORT_SYMBOL_GPL vmlinux 0xcc139693 remove_phb_dynamic +EXPORT_SYMBOL_GPL vmlinux 0xcc344d9f da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0xcc3a5b97 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0xcc3adcb5 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xcc62d3c0 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0xcc7cd02e wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcc8c25e7 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xccb7d38d regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccdfa759 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0xcd01db07 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0xcd18ebdf usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xcd19b7bb pcibios_unmap_io_space +EXPORT_SYMBOL_GPL vmlinux 0xcd2b19f8 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xcd2ebe48 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0xcd664bdb regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd9584b1 of_get_nand_ecc_mode +EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd9ca363 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcda7b4b6 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdc20b1d rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcde1038e perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xcde34ce3 add_memory_resource +EXPORT_SYMBOL_GPL vmlinux 0xce151a36 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0xce394103 iommu_tce_put_param_check +EXPORT_SYMBOL_GPL vmlinux 0xce482ffd da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xce4dadbe __online_page_increment_counters +EXPORT_SYMBOL_GPL vmlinux 0xce519545 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce8edc34 spu_switch_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xce94c90e fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0xce9f7eca user_read +EXPORT_SYMBOL_GPL vmlinux 0xcea8a4e6 led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xced4f57d input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xceee0e9f dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xcf120484 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0xcf449b17 ps3_system_bus_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf5988af dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xcf59d2fd ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xcf5c5c36 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xcf648a43 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xcf694817 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xcf76df76 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0xcf826d8b usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xcf8a8251 unregister_spu_syscalls +EXPORT_SYMBOL_GPL vmlinux 0xcf928347 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xcf9ab2df ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xcfaab69f device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfe3ae86 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0xcff650d9 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0xd00f7a1f fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xd01320b9 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xd01afd3f opal_tpo_read +EXPORT_SYMBOL_GPL vmlinux 0xd0377207 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd03f933f debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xd042233a debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xd054108b pmac_i2c_get_bus_node +EXPORT_SYMBOL_GPL vmlinux 0xd05aef92 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd087a2b4 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0d7ab77 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0xd0dc4891 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xd0eacfe8 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xd0fe63f2 nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xd11270fd pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xd145ac8c key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xd14dd5d0 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xd16614fe device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd17736ba ps3_mmio_region_create +EXPORT_SYMBOL_GPL vmlinux 0xd180b9ca regmap_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0xd1c8a71f regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd1cadd01 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xd1ed562f cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd209ba44 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd25205ed hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd2817892 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xd2a7ec0d spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0xd2ac4537 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xd2af4203 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0xd2b05829 device_attach +EXPORT_SYMBOL_GPL vmlinux 0xd2c1d410 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0xd2d04cb6 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0xd307ec44 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0xd326f814 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd332e3e2 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xd36b44de rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0xd36d5e25 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xd37804dd ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xd38695bc rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd39c486d __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xd3b8162f ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd3bdcb76 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0xd3bf4ba6 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xd3c986da power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0xd3ce7a34 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd3e1aefe devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xd3e63e63 of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0xd3ebdd54 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xd3f00c42 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd404a937 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd4487fd5 snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd4506085 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd4574c99 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xd45d6bb6 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd466d937 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0xd483c408 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xd4aefb6b tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0xd4b420dc __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0xd4b61239 user_update +EXPORT_SYMBOL_GPL vmlinux 0xd4bd66a0 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4c8c9bc pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0xd4d1296f regmap_read +EXPORT_SYMBOL_GPL vmlinux 0xd4d4ae38 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0xd4d68d1a sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0xd4e1da26 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xd4e2b0d6 use_cop +EXPORT_SYMBOL_GPL vmlinux 0xd4ecea7a scom_controller +EXPORT_SYMBOL_GPL vmlinux 0xd4edda55 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xd4ee8106 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0xd4f10959 of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0xd53583af gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xd5596d48 opal_xscom_write +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd5642f75 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xd56b5f64 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0xd5af7e25 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xd5b93f9e iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xd5bb7493 i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5bf183f device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xd5e44c7a ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xd5e85828 agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0xd609d211 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd63be9e3 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xd63fb4ab ps3_vuart_write +EXPORT_SYMBOL_GPL vmlinux 0xd671cb6e spu_switch_notify +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd681577c shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xd691539d device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xd6a43677 opal_async_release_token +EXPORT_SYMBOL_GPL vmlinux 0xd6bd1808 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xd6d9c42e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0xd6eccffc usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xd6f33fac rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd71426f7 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xd719872a ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0xd71dcf56 put_pid +EXPORT_SYMBOL_GPL vmlinux 0xd725f231 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0xd72d2e66 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xd73134df rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xd749fc93 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd760e4b8 eeh_dev_open +EXPORT_SYMBOL_GPL vmlinux 0xd76828cf nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd785a1e1 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xd79c9bd4 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7d83e11 get_hwpoison_page +EXPORT_SYMBOL_GPL vmlinux 0xd7da634c i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0xd7e2f914 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0xd7e4449e srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0xd7f6bc94 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0xd7fc3e98 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0xd811a1b9 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd8263870 mmu_slb_size +EXPORT_SYMBOL_GPL vmlinux 0xd828a786 unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0xd8498f4d ps3av_mode_cs_info +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd880528e regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0xd8868a4f crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xd8ae4e0c ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xd8da1e6b rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xd92b44e9 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xd930e430 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0xd934cfca tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xd93e8e0e of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd9497b3c ps3_os_area_flash_register +EXPORT_SYMBOL_GPL vmlinux 0xd94aa457 display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0xd94e03ef iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xd9564793 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0xd95c642b regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd97878a7 mm_iommu_preregistered +EXPORT_SYMBOL_GPL vmlinux 0xd97a333a pcibios_find_pci_bus +EXPORT_SYMBOL_GPL vmlinux 0xd97c3cf7 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xd9821859 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xd9b54ffb blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0xd9d07dd6 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xd9e2de33 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd9e80609 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xda0a4d22 mpic_msgr_enable +EXPORT_SYMBOL_GPL vmlinux 0xda21392c pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xda2a3f3c ps3_free_mmio_region +EXPORT_SYMBOL_GPL vmlinux 0xda397811 kvmppc_h_put_tce +EXPORT_SYMBOL_GPL vmlinux 0xda430da2 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0xda431e25 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0xda50d9d1 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xda69a9b4 of_irq_parse_pci +EXPORT_SYMBOL_GPL vmlinux 0xda6fe560 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xdabc8cec rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0xdad3f456 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xdadc10c7 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xdae715e0 videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xdaec9aee pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaf9af8e list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0xdb010055 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0xdb0ac13b ps3_compare_firmware_version +EXPORT_SYMBOL_GPL vmlinux 0xdb220895 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xdb22aecc tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb6c0c39 tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xdb6f9091 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb91e05c tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xdbafb847 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xdbb74571 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc008b61 inet_csk_compat_setsockopt +EXPORT_SYMBOL_GPL vmlinux 0xdc0de04e class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdc259d3f eeh_add_device_tree_early +EXPORT_SYMBOL_GPL vmlinux 0xdc544780 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xdc5bfa1a irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0xdc74cf71 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc937864 spu_switch_event_register +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdcd9e915 devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0xdce518c1 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0xdcea8e36 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0xdced1c80 bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0xdd043eea ps3av_get_auto_mode +EXPORT_SYMBOL_GPL vmlinux 0xdd129959 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd3f629a of_device_get_modalias +EXPORT_SYMBOL_GPL vmlinux 0xdd5049b3 fb_sys_read +EXPORT_SYMBOL_GPL vmlinux 0xdd57e2b5 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0xdd638780 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0xdd7261ee __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xdd729424 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xdd8791fe param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xdd99882f sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xddab7b89 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddc8b4e6 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0xddcd0c63 early_find_capability +EXPORT_SYMBOL_GPL vmlinux 0xddcd0e3e gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xdddf70ea ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0xddf05cbf extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0xde08c9aa tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xde158411 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0xde2ebba0 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xde3608ca clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xde4270f8 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xde49dbff fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0xde561e2c pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0xde5c6db0 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xde6b607e ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0xde6da45a component_add +EXPORT_SYMBOL_GPL vmlinux 0xde921ea3 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xde928732 wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0xde9e2403 memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdec2d313 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0xdec3fcce user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdec99769 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0xded4d15c tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xdedd6f7b bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xdeed364a fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0xdefb4b15 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0xdf0c3252 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xdf0cfea2 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf15397f ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0xdf22654b ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xdf32dc64 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xdf443751 reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0xdf482153 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xdf54aa33 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xdf6c07d3 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdf80476d trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0xdf8aff75 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0xdfad4397 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xdfb7e660 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xdfbd1355 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xdfd26a00 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xdff7d0f8 rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xdffbc775 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe00c281e ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xe011f817 ps3flash_bounce_buffer +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe036b3e9 mpic_msgr_put +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe073fec3 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xe0752fe5 tpm2_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xe07587ee pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0xe079417a power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe07bc24f rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xe07e39b8 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xe08651f1 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe0a6a270 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0xe0ad9a1a ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xe0e7868c wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xe121e7ab netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xe1298eca dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xe12a03d3 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xe1531f70 _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0xe15be1a3 __add_pages +EXPORT_SYMBOL_GPL vmlinux 0xe164483b da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xe171c6a2 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe18607ee kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0xe18d751a spu_invalidate_slbs +EXPORT_SYMBOL_GPL vmlinux 0xe19136e4 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0xe1981a2d extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0xe19fc092 ps3fb_videomemory +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1bf5fe9 input_class +EXPORT_SYMBOL_GPL vmlinux 0xe1c8e0b6 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xe1d01b0a skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xe1da3a01 driver_register +EXPORT_SYMBOL_GPL vmlinux 0xe1fe0865 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xe2346f5c irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xe23b6342 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xe286afe0 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe28b250b ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0xe29389c0 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xe2a5787e validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0xe2b1812b arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xe2b50a11 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xe2dc7db1 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe3687ee1 device_remove_property_set +EXPORT_SYMBOL_GPL vmlinux 0xe36c550d kvmppc_invalidate_hpte +EXPORT_SYMBOL_GPL vmlinux 0xe3721c2a mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe3779286 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0xe394a2fd cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xe3d7750e btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0xe3dea72e sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe4329ad6 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe4419b6c devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4ad7643 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xe4c031f8 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0xe4f081e3 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xe5134e9a attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xe51c040f register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xe526a295 ps3_vuart_read +EXPORT_SYMBOL_GPL vmlinux 0xe52a9d73 usb_string +EXPORT_SYMBOL_GPL vmlinux 0xe52e8fba gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xe535ec02 pmac_i2c_get_controller +EXPORT_SYMBOL_GPL vmlinux 0xe5540302 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xe56aca4e pmac_i2c_adapter_to_bus +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe59bd37f __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xe5bfb184 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0xe5dca86e spu_remove_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0xe5eb58ec vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xe5f620da __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xe5f70db4 debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0xe600e157 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xe60abd76 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xe6320309 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xe6337637 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xe636d80c gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe655c06e cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xe671f33c pmac_i2c_get_channel +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6db09b9 crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xe6dfb3bc led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xe6fb0f0b call_filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0xe7417092 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe74cc960 regmap_update_bits_check_async +EXPORT_SYMBOL_GPL vmlinux 0xe768d444 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe7e483ff mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xe7f18b3c threads_per_subcore +EXPORT_SYMBOL_GPL vmlinux 0xe7f736e7 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe826df02 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xe8320d1b component_master_add +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe85c55e7 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe86b2f54 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xe88e0034 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0xe89bd243 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe8c727b7 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xe8d3a2de iommu_take_ownership +EXPORT_SYMBOL_GPL vmlinux 0xe8f46963 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xe909eb95 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0xe91e6553 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xe9286c62 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0xe93bd7cd unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe94e93e9 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xe9506579 iommu_tce_direction +EXPORT_SYMBOL_GPL vmlinux 0xe98006eb trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xe99aafa5 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xe9a9fbd5 irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0xe9af68bc pmf_do_functions +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9d45e2c add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xe9dcb02e hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xe9f15b44 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xe9fc808f find_symbol +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea14e553 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xea16c336 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xea20ab0b virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xea33f2a7 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea51422b ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0xea5bfe27 __bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xea628c20 bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0xea650705 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0xea72b7e5 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xea7a2aa1 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xeabff440 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0xeac1ca0f register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xeac1ce5f ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xeacd12ec sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xeaf280f8 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xeafb715b pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0xeaff6623 of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0xeb081667 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0xeb0c5c65 thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0xeb1e722d tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xeb226a3a scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0xeb268919 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xeb2f5c29 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xeb33ac04 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xeb43e685 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0xeb7d183e jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xeb7ec37a of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0xeb811c06 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xeb8ae736 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xeba7a517 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xeba9c939 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xebfb5481 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0xec12ae26 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec2c8a8b swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0xec303e9c device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0xec3ddc9f tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xec42f2f4 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xec44981b usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xec458236 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0xec59c391 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0xec5c3e84 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0xec5de03c usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xec631f34 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0xec843bbd blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xec84df75 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xec8d0c5a spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xeca183f5 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xeceb9510 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0xecf45fcd watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xecf7ab78 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xed015620 __netlink_alloc_skb +EXPORT_SYMBOL_GPL vmlinux 0xed2ab288 tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xed3d89f0 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xed72c320 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xed8bcb8a apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xed981a16 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xedac84c4 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0xedac9a0d unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xedbf0f0f blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xedbf128c securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xedf9a855 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xee034a87 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0xee206173 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xee34f80a of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee851f24 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL vmlinux 0xeeb212e9 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xeec38285 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xeed20a38 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0xeedf5cc1 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xeee22cb8 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xeef54c8e pwm_free +EXPORT_SYMBOL_GPL vmlinux 0xeefb87c5 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0xef128471 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xef13bec0 get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xef43724d generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0xef45f542 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xef5620de fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0xef5c63e6 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0xef66b522 eeh_pe_configure +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef6d007a sigset_from_compat +EXPORT_SYMBOL_GPL vmlinux 0xef759bff blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0xef856365 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xef9816e1 crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0xefa1c259 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefb1d66a usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0xefd6f0d8 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xefdf7658 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xf01e365b wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf0644a78 use_mm +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf079f11c class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xf098dd15 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xf0bfffbe irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xf0ebc4ea ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf12bce35 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xf13703e2 platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xf14173b8 __class_create +EXPORT_SYMBOL_GPL vmlinux 0xf148ae17 regulator_can_change_voltage +EXPORT_SYMBOL_GPL vmlinux 0xf14e4d24 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xf158f170 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0xf15b260f blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0xf1724073 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0xf181ce08 spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf1897326 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xf1a62b6f of_i8042_kbd_irq +EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1b4eb99 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xf1b8af4b napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xf1fde4dd hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf1ffc581 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf2674b10 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xf26a5911 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xf2781413 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf2962596 arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0xf29dce2d lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2de8449 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf3001db2 srp_attach_transport +EXPORT_SYMBOL_GPL vmlinux 0xf30a4435 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf31943b5 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf32492f3 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf33dc43c sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xf34f933b wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xf3558031 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xf3713930 of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf38722e1 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xf3a2e2e0 find_module +EXPORT_SYMBOL_GPL vmlinux 0xf3af13db ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xf3c9e0e7 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xf3ccc195 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xf3dfe9da blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0xf3e7a4ff __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xf3eb196b debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xf3ed91a8 bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf3fcedb0 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0xf413c6c4 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xf41a2af7 ps3_close_hv_device +EXPORT_SYMBOL_GPL vmlinux 0xf42e62bb i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0xf433c56c bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf43c2dfe spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0xf4594703 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xf469c705 ps3_io_irq_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf47bc080 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xf484e407 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0xf4874466 smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xf490a86b rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf4986645 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf49b205d crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xf4d99cb3 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xf5379771 net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf56f1216 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xf57325fc gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5b6de3b cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xf5bcf1b2 __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0xf5cefb80 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xf5e119c9 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf6471dc2 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xf64abc42 wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0xf64cd116 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xf685b43a dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xf689337e metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xf6b2d89d pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xf6b48028 put_device +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6d53e54 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0xf6d68177 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xf6db5959 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6f34aee evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xf705bddb of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0xf709437c da903x_write +EXPORT_SYMBOL_GPL vmlinux 0xf71a42ce net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xf723f9e6 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xf7253763 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xf73684c1 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xf770ce0c crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xf7754bd9 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xf783c698 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xf7873a50 raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0xf790ee02 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0xf798d1fa ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xf7a2de26 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xf7a391ff ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0xf7c16db7 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xf7c541dd md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xf7e00ad5 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0xf7f055da crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0xf82b5435 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf837e0eb unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf8c04853 pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0xf8c33d91 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xf8d33595 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xf8e398fc memstart_addr +EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf8ff8a65 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0xf90bc551 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf94a451f subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf9604489 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xf9782190 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf99ee4fb ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9bdcbc6 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9ccbff7 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0xf9d246ec __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xf9f206a1 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xf9f5d2f3 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xfa04db8c spu_management_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0xfa246d71 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0xfa4a05c9 __sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xfa5a31bf md_stop +EXPORT_SYMBOL_GPL vmlinux 0xfa8939a5 devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec +EXPORT_SYMBOL_GPL vmlinux 0xfa9b5aa1 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0xfab31527 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfab60503 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xfac09860 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0xfad1d4f2 nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xfae08cb3 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xfae77a15 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0xfb0047f6 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xfb0e7bb2 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xfb1e5c41 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb390b38 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xfb3bb20d virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xfb44a7a1 opal_ipmi_recv +EXPORT_SYMBOL_GPL vmlinux 0xfb471720 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfb525dfc pmac_i2c_get_type +EXPORT_SYMBOL_GPL vmlinux 0xfb52b77d __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0xfb597db6 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb8b0585 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbcb2e55 nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0xfbd3a24d opal_message_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xfbfcdc2b ps3_sys_manager_get_wol +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc2b2861 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0xfc45c18a unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xfc836319 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xfc9a52b7 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xfc9dcccc blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xfccbc463 wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfce63118 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xfcebe1cc cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0xfcffb4e1 pmac_i2c_get_flags +EXPORT_SYMBOL_GPL vmlinux 0xfd149be7 pcibios_remove_pci_devices +EXPORT_SYMBOL_GPL vmlinux 0xfd1c3907 irq_find_matching_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xfd2aec17 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xfd50128e sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xfd60af1a pmf_do_irq +EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0xfd887be2 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0xfd9587f4 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0xfda75206 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xfdb53332 spu_set_profile_private_kref +EXPORT_SYMBOL_GPL vmlinux 0xfdb9363a attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfdc31fdd crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xfddd285f mm_iommu_ua_to_hpa +EXPORT_SYMBOL_GPL vmlinux 0xfde0613a netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xfde29cce ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xfe01bfc0 cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0xfe18d5bb usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xfe1a78fc devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfe1a8a6f iommu_release_ownership +EXPORT_SYMBOL_GPL vmlinux 0xfe2b650b spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xfe54fa3d ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xfe565c70 spu_associate_mm +EXPORT_SYMBOL_GPL vmlinux 0xfe7d4f9a crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xfe97f56c pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfea1300b regmap_field_write +EXPORT_SYMBOL_GPL vmlinux 0xfeb4b61e ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfee67e58 __module_address +EXPORT_SYMBOL_GPL vmlinux 0xfef04620 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0xfef13b0e inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xfef14bee arizona_of_get_named_gpio +EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff0dacff ps3av_video_mute +EXPORT_SYMBOL_GPL vmlinux 0xff0edbef inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xff1134ba of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0xff14c26b usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0xff1b0ca0 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0xff381819 __online_page_free +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xff7212ac device_property_present +EXPORT_SYMBOL_GPL vmlinux 0xff75d988 tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xff9bb9c3 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffc209ef of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xffc6a170 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xfff25cbf i2c_unregister_device only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-106.129/powerpc/powerpc64-smp.compiler +++ linux-raspi2-4.4.0/debian.master/abi/4.4.0-106.129/powerpc/powerpc64-smp.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.5) 5.4.0 20160609 only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-106.129/powerpc/powerpc64-smp.modules +++ linux-raspi2-4.4.0/debian.master/abi/4.4.0-106.129/powerpc/powerpc64-smp.modules @@ -0,0 +1,4368 @@ +3c574_cs +3c589_cs +3c59x +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_dw +8250_mid +8255 +8255_pci +8390 +842 +842_compress +842_decompress +88pm800 +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +DAC960 +a100u2w +a3d +a8293 +aacraid +aat2870-regulator +aat2870_bl +ab3100 +ab3100-otp +ac97_bus +acard-ahci +acecad +acenic +act200l-sir +act8865-regulator +act_bpf +act_connmark +act_csum +act_gact +act_ipt +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +act_vlan +actisys-sir +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5755 +ad5764 +ad5791 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7266 +ad7280a +ad7291 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7746 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad799x +ad8366 +ad9523 +ad9832 +ad9834 +ad_sigma_delta +adc128d818 +adcxx +addi_apci_1032 +addi_apci_1500 +addi_apci_1516 +addi_apci_1564 +addi_apci_16xx +addi_apci_2032 +addi_apci_2200 +addi_apci_3120 +addi_apci_3501 +addi_apci_3xxx +addi_watchdog +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adfs +adi +adis16060 +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16204 +adis16209 +adis16220 +adis16240 +adis16260 +adis16400 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1275 +adm8211 +adm9240 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adv7511 +adv7604 +adv7842 +adv_pci1710 +adv_pci1723 +adv_pci1724 +adv_pci_dio +advansys +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +af-rxrpc +af9013 +af9033 +af_alg +af_key +af_packet_diag +affs +ah4 +ah6 +aha152x_cs +ahci +ahci_ceva +ahci_platform +ahci_qoriq +aic79xx +aic7xxx +aic94xx +aim_cdev +aim_network +aim_sound +aim_v4l2 +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airo +airo_cs +airport +airspy +ak8975 +al3320a +algif_aead +algif_hash +algif_rng +algif_skcipher +ali-ircc +alim7101_wdt +altera-ci +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am53c974 +amc6821 +amd +amd-rng +amd5536udc +amd8111_edac +amd8111e +amd8131_edac +amdgpu +amplc_dio200 +amplc_dio200_common +amplc_dio200_pci +amplc_pc236 +amplc_pc236_common +amplc_pc263 +amplc_pci224 +amplc_pci230 +amplc_pci236 +amplc_pci263 +ams369fg06 +analog +anatop-regulator +ansi_cprng +anubis +aoe +apbps2 +apds9300 +apds9802als +apds990x +apds9960 +appledisplay +appletalk +appletouch +applicom +aquantia +ar1021_i2c +ar5523 +ar7part +arc-rawmode +arc-rimi +arc4 +arc_emac +arc_ps2 +arc_uart +arcmsr +arcnet +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arp_tables +arpt_mangle +arptable_filter +as102_fe +as3711-regulator +as3711_bl +as3722-regulator +as3935 +as5011 +asc7621 +ascot2e +asix +ast +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +ata_generic +ata_piix +atbm8830 +aten +ath +ath10k_core +ath10k_pci +ath3k +ath5k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atm +atmel +atmel-flexcom +atmel-hlcdc +atmel_cs +atmel_mxt_ts +atmel_pci +atmtcp +atp870u +atusb +atxp1 +atyfb +au0828 +au8522_common +au8522_decoder +au8522_dig +aufs +auo-pixcir-ts +auo_k1900fb +auo_k1901fb +auo_k190x +auth_rpcgss +authenc +authencesn +autofs4 +avm_cs +avma1_cs +avmfritz +ax25 +ax88179_178a +axnet_cs +axp20x-pek +axp20x-regulator +axp20x_usb_power +axp288_adc +axp288_charger +axp288_fuel_gauge +b1 +b1dma +b1pci +b1pcmcia +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +bas_gigaset +batman-adv +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bch +bcm-phy-lib +bcm203x +bcm3510 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm7038_wdt +bcm7xxx +bcm87xx +bcma +bcma-hcd +bcmsysport +bd6107 +bdc +bdc_pci +be2iscsi +be2net +befs +belkin_sa +bfa +bfs +bfusb +bh1750 +bh1770glc +bh1780gli +binfmt_misc +block2mtd +blocklayoutdriver +blowfish_common +blowfish_generic +bluecard_cs +bluetooth +bluetooth_6lowpan +bma150 +bma180 +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmg160_core +bmg160_i2c +bmg160_spi +bmp085 +bmp085-i2c +bmp085-spi +bmp280 +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bnxt_en_bpo +bonding +bpa10x +bpck +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +br2684 +br_netfilter +brcmfmac +brcmsmac +brcmutil +brd +bridge +broadcom +broadsheetfb +bsd_comp +bsr +bt3c_cs +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btqca +btrfs +btrtl +btsdio +bttv +btuart_cs +btusb +btwilink +bu21013_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c4 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +cachefiles +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +caif_usb +caif_virtio +camellia_generic +can +can-bcm +can-dev +can-gw +can-raw +cap11xx +capi +capidrv +capmode +carl9170 +carminefb +cassini +cast5_generic +cast6_generic +cast_common +catc +cb710 +cb710-mmc +cb_das16_cs +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcimdas +cb_pcimdda +cc2520 +cc770 +cc770_isa +cc770_platform +cciss +ccm +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +ceph +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha20_generic +chacha20poly1305 +chaoskey +chipone_icn8318 +chipreg +chnl_net +ci_hdrc +ci_hdrc_imx +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +cirrus +cirrusfb +clip +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm36651 +cm4000_cs +cm4040_cs +cma3000_d0x +cma3000_d0x_i2c +cmac +cmdlinepart +cmtp +cnic +cobalt +cobra +coda +colibri-vf50-ts +com20020 +com20020-pci +com20020_cs +com90io +com90xx +comedi +comedi_8254 +comedi_8255 +comedi_bond +comedi_isadma +comedi_parport +comedi_pci +comedi_pcmcia +comedi_test +comedi_usb +comm +configfs +contec_pci_dio +cordic +core +cp210x +cpc925_edac +cpia2 +cpsw_ale +cpu-notifier-error-inject +cpufreq_spudemand +cramfs +crc-ccitt +crc-itu-t +crc32 +crc7 +crc8 +cryptd +crypto_user +cryptoloop +cs5345 +cs53l32a +csiostor +ctr +cts +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +cx18 +cx18-alsa +cx22700 +cx22702 +cx231xx +cx231xx-alsa +cx231xx-dvb +cx2341x +cx23885 +cx24110 +cx24113 +cx24116 +cx24117 +cx24120 +cx24123 +cx25821 +cx25821-alsa +cx25840 +cx82310_eth +cx88-alsa +cx88-blackbird +cx88-dvb +cx88-vp3054-i2c +cx8800 +cx8802 +cx88xx +cxacru +cxd2099 +cxd2820r +cxd2841er +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cxl +cxlflash +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cyclades +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da9030_battery +da9034-ts +da903x +da903x_bl +da9052-battery +da9052-hwmon +da9052-regulator +da9052_bl +da9052_onkey +da9052_tsi +da9052_wdt +da9055-hwmon +da9055-regulator +da9055_onkey +da9055_wdt +da9062-core +da9062-regulator +da9062_wdt +da9063-regulator +da9063_onkey +da9063_wdt +da9150-charger +da9150-core +da9150-fg +da9150-gpadc +da9210-regulator +da9211-regulator +dac02 +daqboard2000 +das08 +das08_cs +das08_isa +das08_pci +das16 +das16m1 +das1800 +das6402 +das800 +davicom +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +ddbridge +de2104x +de4x5 +decnet +deflate +defxx +denali +denali_pci +des_generic +dgap +dgnc +dht11 +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dibx000_common +digi_acceleport +digicolor-usart +diskonchip +diva_idi +diva_mnt +divacapi +divadidd +divas +dl2k +dlci +dlm +dln2 +dm-bio-prison +dm-bufio +dm-cache +dm-cache-cleaner +dm-cache-mq +dm-cache-smq +dm-crypt +dm-delay +dm-era +dm-flakey +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-verity +dm-zero +dm1105 +dm9601 +dmfe +dmm32at +dmx3191d +dn_rtmsg +dnet +docg3 +docg4 +dp83848 +dp83867 +drbd +drbg +drm +drm_kms_helper +drop_monitor +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds620 +dsbr100 +dscc4 +dss1_divert +dst +dst_ca +dstr +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x +dt3000 +dt3155 +dt9812 +dtl1_cs +dummy +dummy-irq +dummy_stm +dvb-as102 +dvb-bt8xx +dvb-core +dvb-pll +dvb-ttpci +dvb-ttusb-budget +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-af9035 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6007 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-rtl28xxu +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dvb_usb_v2 +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_wdt +dwc3 +dwc3-pci +dwc_eth_qos +dwmac-generic +dwmac-ipq806x +dwmac-lpc18xx +dwmac-meson +dwmac-rk +dwmac-socfpga +dwmac-sti +dwmac-sunxi +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +earth-pt1 +earth-pt3 +eata +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ec100 +echainiv +echo +edac_core +edt-ft5x06 +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efs +egalax_ts +ehset +elan_i2c +electra_cf +elo +elsa_cs +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_meta +em_nbyte +em_text +em_u32 +emac_arc +emac_rockchip +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +empeg +ems_pci +ems_pcmcia +ems_usb +emu10k1-gp +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +eni +enic +epat +epia +epic100 +eql +esas2r +esd_usb2 +esi-sir +esp4 +esp6 +esp_scsi +et1011c +et131x +ethoc +evbug +exofs +extcon-adc-jack +extcon-arizona +extcon-axp288 +extcon-gpio +extcon-max14577 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +ezusb +f2fs +f75375s +f81232 +fakelb +fan53555 +farsync +faulty +fb_agm1264k-fl +fb_bd663474 +fb_ddc +fb_hx8340bn +fb_hx8347d +fb_hx8353d +fb_hx8357d +fb_ili9163 +fb_ili9320 +fb_ili9325 +fb_ili9340 +fb_ili9341 +fb_ili9481 +fb_ili9486 +fb_pcd8544 +fb_ra8875 +fb_s6d02a1 +fb_s6d1121 +fb_ssd1289 +fb_ssd1306 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fbtft_device +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdomain_cs +fdp +fdp_i2c +fealnx +ff-memless +firedtv +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fit2 +fit3 +fixed +fl512 +flexcan +flexfb +floppy +fm10k +fm801-gp +fm_drv +fmc +fmc-chardev +fmc-fakedev +fmc-trivial +fmc-write-eeprom +fmvj18x_cs +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fpga-mgr +freevxfs +friq +frpw +fsa9480 +fscache +fsl-edma +fsl_elbc_nand +fsl_lpuart +ft6236 +ftdi-elan +ftdi_sio +ftl +fujitsu_ts +g450_pll +g760a +g762 +g_acm_ms +g_audio +g_cdc +g_dbgp +g_ether +g_ffs +g_hid +g_mass_storage +g_midi +g_ncm +g_nokia +g_printer +g_serial +g_webcam +g_zero +gadgetfs +gamecon +gameport +garmin_gps +garp +gcm +gdmtty +gdmulte +gdmwm +gdth +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +gennvm +genwqe_card +gf128mul +gf2k +gfs2 +ghash-generic +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +gluebi +go7007 +go7007-loader +go7007-usb +goku_udc +goodix +gp2ap002a00f +gp2ap020a00f +gpio +gpio-74x164 +gpio-74xx-mmio +gpio-addr-flash +gpio-adnp +gpio-adp5520 +gpio-adp5588 +gpio-altera +gpio-amd8111 +gpio-arizona +gpio-beeper +gpio-charger +gpio-crystalcove +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-fan +gpio-generic +gpio-grgpio +gpio-ir-recv +gpio-janz-ttl +gpio-kempld +gpio-lp3943 +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-mc33880 +gpio-mcp23s08 +gpio-ml-ioh +gpio-pca953x +gpio-pcf857x +gpio-rdc321x +gpio-regulator +gpio-syscon +gpio-tps65912 +gpio-twl4030 +gpio-twl6040 +gpio-ucb1400 +gpio-viperboard +gpio-vx855 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio_backlight +gpio_keys +gpio_keys_polled +gpio_mdio +gpio_mouse +gpio_tilt_polled +gpio_wdt +gr_udc +grace +grcan +gre +grip +grip_mp +gs_fpga +gs_usb +gsc_hpdi +gspca_benq +gspca_conex +gspca_cpia1 +gspca_dtcs033 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_jl2005bcd +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stk1135 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_touptek +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtco +guillemot +gunze +gxt4500 +hackrf +hamachi +hampshire +hangcheck-timer +hanwang +hci +hci_uart +hci_vhci +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcdrv +hdm_dim2 +hdm_i2c +hdm_usb +hdpvr +he +hexium_gemini +hexium_orion +hfc4s8s_l1 +hfc_usb +hfcmulti +hfcpci +hfcsusb +hfs +hfsplus +hi6421-pmic-core +hi6421-regulator +hi8435 +hid +hid-a4tech +hid-alps +hid-apple +hid-appleir +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-cherry +hid-chicony +hid-corsair +hid-cp2112 +hid-cypress +hid-dr +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-icade +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-lenovo +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-primax +hid-prodikeys +hid-rmi +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-isku +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-konepure +hid-roccat-kovaplus +hid-roccat-lua +hid-roccat-pyra +hid-roccat-ryos +hid-roccat-savu +hid-saitek +hid-samsung +hid-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steelseries +hid-sunplus +hid-thingm +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hidp +hih6130 +hisax +hisax_fcpcipnp +hisax_isac +hisax_st5481 +hisi504_nand +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hopper +horus3a +hostap +hostap_cs +hostap_pci +hostap_plx +hp100 +hpfs +hpilo +hpsa +hptiop +hsi +hsi_char +hso +hsr +hsu_dma +htc-pasic3 +hts221 +hts221_i2c +hts221_spi +htu21 +huawei_cdc_ncm +hvcs +hvcserver +hwa-hc +hwa-rc +hwmon-vid +hwpoison-inject +hx8357 +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd8111 +i2c-arb-gpio-challenge +i2c-cbus-gpio +i2c-designware-core +i2c-designware-pci +i2c-designware-platform +i2c-diolan-u2c +i2c-dln2 +i2c-gpio +i2c-hid +i2c-i801 +i2c-isch +i2c-kempld +i2c-matroxfb +i2c-mpc +i2c-mux +i2c-mux-gpio +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-reg +i2c-nforce2 +i2c-ocores +i2c-parport +i2c-parport-light +i2c-pasemi +i2c-pca-platform +i2c-piix4 +i2c-robotfuzz-osif +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-smbus +i2c-stub +i2c-taos-evm +i2c-tiny-usb +i2c-via +i2c-viapro +i2c-viperboard +i2c-xiic +i40e +i40evf +i5k_amb +i6300esb +i740fb +i82092 +ib_addr +ib_cm +ib_core +ib_ehca +ib_ipoib +ib_iser +ib_isert +ib_mad +ib_mthca +ib_qib +ib_sa +ib_srp +ib_srpt +ib_ucm +ib_umad +ib_uverbs +ibmaem +ibmpex +ibmpowernv +ibmveth +ibmvfc +ibmvnic +ibmvscsi +ibmvscsis +icom +icp_multi +icplus +ics932s401 +ideapad_slidebar +idma64 +idmouse +idt77252 +idt_gen2 +idtcps +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +iforce +igb +igbvf +igorplugusb +iguanair +ii_pci20kc +iio-trig-interrupt +iio-trig-periodic-rtc +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili922x +ili9320 +imm +imon +ims-pcu +imx074 +imx6ul_tsc +imx_thermal +ina209 +ina2xx +industrialio +industrialio-buffer-cb +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +input-polldev +int51x1 +intel_th +intel_th_gth +intel_th_msu +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +interact +interval_tree_test +inv-mpu6050 +io_edgeport +io_ti +ioc4 +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_MASQUERADE +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_tunnel +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_wlc +ip_vs_wrr +ip_vti +ipack +ipaq +ipcomp +ipcomp6 +ipddp +iphase +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_powernv +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +ipr +ips +ipt_CLUSTERIP +ipt_ECN +ipt_MASQUERADE +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipw +ipw2100 +ipw2200 +ipwireless +ipx +ir-hix5hd2 +ir-jvc-decoder +ir-kbd-i2c +ir-lirc-codec +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-usb +ir-xmp-decoder +ircomm +ircomm-tty +irda +irda-usb +irlan +irnet +irqbypass +irtty-sir +iscsi_boot_sysfs +iscsi_target_mod +iscsi_tcp +isdn +isdn_bsdcomp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl9305 +isofs +isp116x-hcd +isp1362-hcd +isp1704_charger +isp1760 +it913x +itd1000 +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_c2 +iw_cm +iw_cxgb3 +iw_cxgb4 +iw_nes +iwl3945 +iwl4965 +iwldvm +iwlegacy +iwlmvm +iwlwifi +ix2505v +ixgb +ixgbe +ixgbevf +janz-cmodio +janz-ican3 +jc42 +jedec_probe +jffs2 +jfs +jitterentropy_rng +jmb38x_ms +jme +joydev +joydump +jr3_pci +jsa1212 +jsm +kafs +kalmia +kaweth +kbic +kbtab +kcomedilib +ke_counter +kempld-core +kempld_wdt +kernelcapi +keyspan +keyspan_pda +keyspan_remote +keywrap +kfifo_buf +khazad +kingsun-sir +kl5kusb105 +kmx61 +kobil_sct +ks0108 +ks8842 +ks8851 +ks8851_mll +ks959-sir +ksdazzle-sir +ksz884x +ktti +kvaser_pci +kvaser_usb +kvm +kvm-hv +kvm-pr +kxcjk-1013 +kxsd9 +kxtj9 +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l4f00242t03 +l64781 +lan78xx +lanai +lapb +lapbether +latch-addr-flash +lattice-ecp3-config +lcd +ld9040 +ldusb +lec +led-class-flash +leds-88pm860x +leds-adp5520 +leds-bcm6328 +leds-bcm6358 +leds-bd2802 +leds-blinkm +leds-da903x +leds-da9052 +leds-dac124s085 +leds-gpio +leds-ktd2692 +leds-lm3530 +leds-lm3533 +leds-lm355x +leds-lm3642 +leds-lp3944 +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max77693 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-pca9532 +leds-pca955x +leds-pca963x +leds-powernv +leds-pwm +leds-regulator +leds-tca6507 +leds-tlc591xx +leds-wm831x-status +leds-wm8350 +ledtrig-backlight +ledtrig-camera +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-oneshot +ledtrig-timer +ledtrig-transient +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libahci +libahci_platform +libceph +libcomposite +libcrc32c +libcxgbi +libertas +libertas_cs +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libore +libosd +libsas +lightning +lineage-pem +linear +liquidio +lirc_bt829 +lirc_dev +lirc_imon +lirc_parallel +lirc_sasem +lirc_serial +lirc_sir +lirc_zilog +lis3l02dq +lis3lv02d +lis3lv02d_i2c +lis3lv02d_spi +litelink-sir +lkkbd +ll_temac +llc +llc2 +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3630a_bl +lm3639_bl +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lms283gf05 +lms501kf03 +lnbh25 +lnbp21 +lnbp22 +lockd +locktorture +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp8755 +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpc_ich +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +ltc2941-battery-gauge +ltc2945 +ltc2978 +ltc3589 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltr501 +ltv350qv +lv5207lp +lvstest +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m25p80 +m2m-deinterlace +m52790 +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +ma600-sir +mac-celtic +mac-centeuro +mac-croatian +mac-cyrillic +mac-gaelic +mac-greek +mac-iceland +mac-inuit +mac-roman +mac-romanian +mac-turkish +mac80211 +mac80211_hwsim +mac802154 +mac_hid +macb +macvlan +macvtap +mag3110 +magellan +mailbox-altera +mailbox-test +mantis +mantis_core +map_absent +map_funcs +map_ram +map_rom +marvell +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max1111 +max11801_ts +max1363 +max14577 +max14577_charger +max1586 +max16064 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max197 +max20751 +max2165 +max3100 +max31790 +max3421-hcd +max34440 +max517 +max5821 +max63xx_wdt +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77686 +max77693 +max77693-haptic +max77693_charger +max77802 +max8649 +max8660 +max8688 +max8903_charger +max8907 +max8907-regulator +max8925-regulator +max8925_bl +max8925_onkey +max8925_power +max8952 +max8973-regulator +max8997 +max8997_charger +max8997_haptic +max8998 +max8998_charger +mb862xxfb +mb86a16 +mb86a20s +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc44s803 +mcb +mcb-pci +mceusb +mcp2120-sir +mcp251x +mcp3021 +mcp320x +mcp3422 +mcp4531 +mcp4725 +mcp4922 +mcryptd +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md-cluster +md4 +md5-ppc +mdc800 +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-cavium +mdio-gpio +mdio-mux +mdio-mux-gpio +mdio-mux-mmioreg +mdio-octeon +mdio-thunder +mdio-xgene +me4000 +me_daq +media +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +memory-notifier-error-inject +memstick +men_z135_uart +men_z188_adc +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +metro-usb +metronomefb +mf6x4 +mga +michael_mic +micrel +microchip +microread +microread_i2c +microtek +mii +minix +mip6 +mite +mk712 +mkiss +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx90614 +mlxsw_core +mlxsw_pci +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmc_block +mmc_spi +mms114 +mn88472 +mn88473 +mos7720 +mos7840 +mostcore +moxa +mpc624 +mpl115 +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +msdos +msi001 +msi2500 +msp3400 +mspro_block +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt29f_spinand +mt312 +mt352 +mt6311-regulator +mt6397-core +mt6397-regulator +mt7601u +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd +mtd_blkdevs +mtd_dataflash +mtdblock +mtdblock_ro +mtdoops +mtdram +mtdswap +mtip32xx +mtk-sd +mtouch +multipath +multiq3 +musb_hdrc +mv_u3d_core +mv_udc +mvmdio +mvsas +mvumi +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc4005 +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxser +mxuport +myri10ge +n_gsm +n_hdlc +n_r3964 +n_tracerouter +n_tracesink +nand +nand_bch +nand_ecc +nand_ids +nandsim +national +natsemi +nau7802 +navman +nb8800 +nbd +nci +nci_spi +nci_uart +ncpfs +nct7802 +nct7904 +nd_blk +nd_btt +nd_pmem +ne2k-pci +neofb +net1080 +net2272 +net2280 +netconsole +netjet +netlink_diag +netrom +netup-unidvb +netxen_nic +newtonkbd +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_ipv4 +nf_nat_ipv6 +nf_nat_irc +nf_nat_masquerade_ipv4 +nf_nat_masquerade_ipv6 +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_redirect +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_synproxy_core +nf_tables +nf_tables_arp +nf_tables_bridge +nf_tables_inet +nf_tables_ipv4 +nf_tables_ipv6 +nf_tables_netdev +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfcwilink +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_log +nfnetlink_queue +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat_ipv4 +nft_chain_nat_ipv6 +nft_chain_route_ipv4 +nft_chain_route_ipv6 +nft_compat +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_exthdr +nft_hash +nft_limit +nft_log +nft_masq +nft_masq_ipv4 +nft_masq_ipv6 +nft_meta +nft_meta_bridge +nft_nat +nft_queue +nft_rbtree +nft_redir +nft_redir_ipv4 +nft_redir_ipv6 +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +ni_6527 +ni_65xx +ni_660x +ni_670x +ni_at_a2150 +ni_at_ao +ni_atmio +ni_atmio16d +ni_daq_700 +ni_daq_dio24 +ni_labpc +ni_labpc_common +ni_labpc_cs +ni_labpc_isadma +ni_labpc_pci +ni_mio_cs +ni_pcidio +ni_pcimio +ni_tio +ni_tiocmd +ni_usb6501 +nicpf +nicstar +nicvf +nilfs2 +niu +nlmon +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +nmclan_cs +nosy +notifier-error-inject +nouveau +nozomi +nps_enet +ns558 +ns83820 +nsc-ircc +ntb +ntb_netdev +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +null_blk +nvidiafb +nvme +nvmem_core +nx-compress +nx-compress-powernv +nx-compress-pseries +nx-crypto +nxp-nci +nxp-nci_i2c +nxp-ptn3460 +nxt200x +nxt6000 +objlayoutdriver +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +of_mmc_spi +of_xilinx_wdt +ofpart +old_belkin-sir +omap4-keypad +omfs +omninet +on20 +on26 +onenand +opal-prd +opencores-kbd +openvswitch +oprofile +opt3001 +opticon +option +or51132 +or51211 +orinoco +orinoco_cs +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +osd +osdblk +osst +oti6858 +ov2640 +ov5642 +ov6650 +ov7640 +ov7670 +ov772x +ov9640 +ov9740 +overlay +oxu210hp-hcd +p54common +p54pci +p54spi +p54usb +p8022 +p8023 +pa12203001 +palmas-pwrbutton +palmas-regulator +pandora_bl +panel +panel-lg-lg4573 +panel-samsung-ld9040 +panel-samsung-s6e8aa0 +panel-sharp-lq101r1sx01 +panel-simple +parade-ps8622 +paride +parkbd +parport +parport_ax88796 +parport_cs +parport_pc +parport_serial +pasemi-rng +pasemi_edac +pasemi_nand +pata_ali +pata_amd +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_of_platform +pata_oldpiix +pata_opti +pata_optidma +pata_pcmcia +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sch +pata_serverworks +pata_sil680 +pata_sis +pata_sl82c105 +pata_triflex +pata_via +pc300too +pcap-regulator +pcap_keys +pcap_ts +pcbc +pcd +pcf50633 +pcf50633-adc +pcf50633-backlight +pcf50633-charger +pcf50633-gpio +pcf50633-input +pcf50633-regulator +pcf8574_keypad +pcf8591 +pch_udc +pci +pci-stub +pci200syn +pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad +pcmcia +pcmcia_core +pcmcia_rsrc +pcmciamtd +pcmda12 +pcmmio +pcmuio +pcnet32 +pcnet_cs +pcrypt +pcspkr +pcwd_pci +pcwd_usb +pd +pd6729 +pda_power +pdc_adma +peak_pci +peak_pcmcia +peak_usb +pegasus +penmount +percpu_test +pf +pfuze100-regulator +pg +phantom +phonet +phram +phy-bcm-kona-usb2 +phy-exynos-usb2 +phy-gpio-vbus-usb +phy-isp1301 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-tahvo +phy-tusb1210 +physmap +physmap_of +pixcir_i2c_ts +pkcs7_test_key +pktcdvd +pktgen +pl2303 +plat-ram +plat_nand +platform_lcd +plip +plusb +pluto2 +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm80xx +pm8941-wled +pmbus +pmbus_core +pmc551 +pmcraid +pn533 +pn544 +pn544_i2c +pn_pep +poly1305_generic +port100 +powermate +powernv-rng +powernv_flash +powr1220 +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_core +pps_parport +pptp +prism2_usb +ps2mult +ps3-lpm +ps3_gelic +ps3disk +ps3flash +ps3rom +ps3stor_lib +ps3vram +pseries-rng +pseries_energy +psmouse +psnap +pt +ptp +pulsedlight-lidar-lite-v2 +pvrusb2 +pwc +pwm-beeper +pwm-fan +pwm-fsl-ftm +pwm-lp3943 +pwm-pca9685 +pwm-regulator +pwm-twl +pwm-twl-led +pwm_bl +pxa27x_udc +qcaspi +qcaux +qcom-spmi-iadc +qcom-spmi-temp-alarm +qcom-spmi-vadc +qcom_spmi-regulator +qcserial +qed +qede +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qlogic_cs +qlogicfas408 +qm1d1c0042 +qmi_wwan +qnx4 +qnx6 +qsemi +qt1010 +qt1070 +qt2160 +quatech2 +quatech_daqp_cs +quota_tree +quota_v1 +quota_v2 +qxl +r128 +r592 +r6040 +r8152 +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r852 +r8712u +r8723au +r8a66597-hcd +r8a66597-udc +rack-meter +radeon +radeonfb +radio-bcm2048 +radio-i2c-si470x +radio-keene +radio-ma901 +radio-maxiradio +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-shark +radio-si476x +radio-tea5764 +radio-usb-si470x +radio-usb-si4713 +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ramoops +raw +ray_cs +rbd +rbtree_test +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-asus-pc39 +rc-asus-ps3-100 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-delock-61959 +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-dvbsky +rc-em-terratec +rc-encore-enltv +rc-encore-enltv-fm53 +rc-encore-enltv2 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-pctv-sedna +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-reddo +rc-snapstream-firefly +rc-streamzap +rc-su3000 +rc-tbs-nec +rc-technisat-ts35 +rc-technisat-usb2 +rc-terratec-cinergy-c-pci +rc-terratec-cinergy-s2-hd +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-total-media-in-hand-02 +rc-trekstor +rc-tt-1500 +rc-twinhan-dtv-cab-ci +rc-twinhan1027 +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rc5t583-regulator +rdc321x-southbridge +rdma_cm +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +redboot +redrat3 +reed_solomon +regmap-spmi +regulator-haptic +reiserfs +remoteproc +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd_ftl +rfkill-gpio +rfkill-regulator +rio-scan +rio500 +rionet +rivafb +rj54n1cb0c +rk808 +rk808-regulator +rmd128 +rmd160 +rmd256 +rmd320 +rn5t618 +rn5t618-regulator +rn5t618_wdt +rndis_host +rndis_wlan +rocket +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpadlpar_io +rpaphp +rpcrdma +rpcsec_gss_krb5 +rpr0521 +rrpc +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt5033 +rt5033-regulator +rt5033_battery +rt61pci +rt73usb +rt9455_charger +rtas_flash +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab3100 +rtc-abx80x +rtc-as3722 +rtc-bq32k +rtc-bq4802 +rtc-cmos +rtc-da9052 +rtc-da9055 +rtc-da9063 +rtc-ds1286 +rtc-ds1305 +rtc-ds1307 +rtc-ds1343 +rtc-ds1347 +rtc-ds1374 +rtc-ds1390 +rtc-ds1511 +rtc-ds1553 +rtc-ds1672 +rtc-ds1685 +rtc-ds1742 +rtc-ds2404 +rtc-ds3232 +rtc-ds3234 +rtc-em3027 +rtc-fm3130 +rtc-generic +rtc-hid-sensor-time +rtc-hym8563 +rtc-isl12022 +rtc-isl12057 +rtc-isl1208 +rtc-lp8788 +rtc-m41t80 +rtc-m41t93 +rtc-m41t94 +rtc-m48t35 +rtc-m48t59 +rtc-m48t86 +rtc-max6900 +rtc-max6902 +rtc-max77686 +rtc-max77802 +rtc-max8907 +rtc-max8925 +rtc-max8997 +rtc-max8998 +rtc-mc13xxx +rtc-mcp795 +rtc-msm6242 +rtc-mt6397 +rtc-palmas +rtc-pcap +rtc-pcf2123 +rtc-pcf2127 +rtc-pcf50633 +rtc-pcf85063 +rtc-pcf8523 +rtc-pcf8563 +rtc-pcf8583 +rtc-ps3 +rtc-r9701 +rtc-rc5t583 +rtc-rk808 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rv8803 +rtc-rx4581 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-snvs +rtc-stk17ta8 +rtc-tps6586x +rtc-tps65910 +rtc-tps80031 +rtc-twl +rtc-v3020 +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtc-zynqmp +rtc_cmos_setup +rtd520 +rti800 +rti802 +rtl2830 +rtl2832 +rtl2832_sdr +rtl8150 +rtl8187 +rtl8188ee +rtl818x_pci +rtl8192c-common +rtl8192ce +rtl8192cu +rtl8192de +rtl8192ee +rtl8192se +rtl8723-common +rtl8723ae +rtl8723be +rtl8821ae +rtl8xxxu +rtl_pci +rtl_usb +rtllib +rtllib_crypt_ccmp +rtllib_crypt_tkip +rtllib_crypt_wep +rtlwifi +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rx51_battery +rxkad +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3fb +s3fwrn5 +s3fwrn5_i2c +s526 +s5h1409 +s5h1411 +s5h1420 +s5m8767 +s626 +s6e63m0 +s921 +saa6588 +saa6752hs +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7706h +safe_serial +salsa20_generic +samsung-sxgbe +sata_inic162x +sata_mv +sata_nv +sata_promise +sata_qstor +sata_sil +sata_sil24 +sata_sis +sata_sx4 +sata_uli +sata_via +sata_vsc +savage +savagefb +sbp_target +sbs-battery +sc16is7xx +sc92031 +sca3000 +scanlog +sch_atm +sch_cbq +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_fq +sch_fq_codel +sch_gred +sch_hfsc +sch_hhf +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_pie +sch_plug +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_tbf +sch_teql +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +sctp +sctp_probe +sdhci +sdhci-of-arasan +sdhci-of-at91 +sdhci-of-esdhc +sdhci-of-hlwd +sdhci-pci +sdhci-pltfm +sdhci_f_sdh30 +sdio_uart +sdricoh_cs +sedlbauer_cs +seed +sensorhub +seqiv +ser_gigaset +serial2002 +serial_cs +serio_raw +sermouse +serpent_generic +serport +ses +sfc +sh_veu +sha1-powerpc +shark2 +shpchp +sht15 +sht21 +shtc1 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sil164 +sir-dev +sis +sis190 +sis5595 +sis900 +sisfb +sisusbvga +sit +sja1000 +sja1000_isa +sja1000_platform +skd +skfp +skge +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +sl811_cs +slcan +slip +slram +sm501 +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smb347-charger +smc91c92_cs +smipcie +smm665 +smsc +smsc-ircc2 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsmdtv +smssdio +smsusb +snd +snd-ac97-codec +snd-ad1889 +snd-ak4113 +snd-ak4114 +snd-ak4117 +snd-ak4xxx-adda +snd-ali5451 +snd-aloop +snd-als300 +snd-als4000 +snd-aoa +snd-aoa-codec-onyx +snd-aoa-codec-tas +snd-aoa-codec-toonie +snd-aoa-fabric-layout +snd-aoa-i2sbus +snd-aoa-soundbus +snd-atiixp +snd-atiixp-modem +snd-au8810 +snd-au8820 +snd-au8830 +snd-aw2 +snd-azt3328 +snd-bcd2000 +snd-bebob +snd-bt87x +snd-ca0106 +snd-cmipci +snd-cs4281 +snd-cs46xx +snd-cs8427 +snd-ctxfi +snd-darla20 +snd-darla24 +snd-dice +snd-dummy +snd-echo3g +snd-emu10k1 +snd-emu10k1-synth +snd-emu10k1x +snd-emux-synth +snd-ens1370 +snd-ens1371 +snd-es1938 +snd-es1968 +snd-firewire-digi00x +snd-firewire-lib +snd-firewire-tascam +snd-fireworks +snd-fm801 +snd-gina20 +snd-gina24 +snd-hda-codec +snd-hda-codec-analog +snd-hda-codec-ca0110 +snd-hda-codec-ca0132 +snd-hda-codec-cirrus +snd-hda-codec-cmedia +snd-hda-codec-conexant +snd-hda-codec-generic +snd-hda-codec-hdmi +snd-hda-codec-idt +snd-hda-codec-realtek +snd-hda-codec-si3054 +snd-hda-codec-via +snd-hda-core +snd-hda-intel +snd-hdsp +snd-hdspm +snd-hrtimer +snd-hwdep +snd-i2c +snd-ice1712 +snd-ice1724 +snd-ice17xx-ak4xxx +snd-indigo +snd-indigodj +snd-indigodjx +snd-indigoio +snd-indigoiox +snd-intel8x0 +snd-intel8x0m +snd-isight +snd-korg1212 +snd-layla20 +snd-layla24 +snd-lola +snd-lx6464es +snd-maestro3 +snd-mia +snd-mixart +snd-mixer-oss +snd-mona +snd-mpu401 +snd-mpu401-uart +snd-mtpav +snd-mts64 +snd-nm256 +snd-opl3-lib +snd-opl3-synth +snd-oxfw +snd-oxygen +snd-oxygen-lib +snd-pcm +snd-pcm-dmaengine +snd-pcm-oss +snd-pcxhr +snd-pdaudiocf +snd-portman2x4 +snd-powermac +snd-pt2258 +snd-rawmidi +snd-riptide +snd-rme32 +snd-rme96 +snd-rme9652 +snd-sb-common +snd-scs1x +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-soc-ac97 +snd-soc-adau1701 +snd-soc-ak4104 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-alc5623 +snd-soc-core +snd-soc-cs35l32 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42xx8 +snd-soc-cs42xx8-i2c +snd-soc-cs4349 +snd-soc-es8328 +snd-soc-fsl-asrc +snd-soc-fsl-esai +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-gtm601 +snd-soc-imx-audmux +snd-soc-pcm1681 +snd-soc-pcm1792a-codec +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-rt5631 +snd-soc-sgtl5000 +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-simple-card +snd-soc-spdif-rx +snd-soc-spdif-tx +snd-soc-ssm2602 +snd-soc-ssm2602-i2c +snd-soc-ssm2602-spi +snd-soc-ssm4567 +snd-soc-sta32x +snd-soc-sta350 +snd-soc-sti-sas +snd-soc-tas2552 +snd-soc-tas5086 +snd-soc-tas571x +snd-soc-tfa9879 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic3x +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8962 +snd-soc-wm8978 +snd-soc-xtfpga-i2s +snd-sonicvibes +snd-timer +snd-trident +snd-ua101 +snd-usb-6fire +snd-usb-audio +snd-usb-caiaq +snd-usb-hiface +snd-usb-line6 +snd-usb-pod +snd-usb-podhd +snd-usb-toneport +snd-usb-usx2y +snd-usb-variax +snd-usbmidi-lib +snd-util-mem +snd-via82xx +snd-via82xx-modem +snd-virmidi +snd-virtuoso +snd-vx-lib +snd-vx222 +snd-vxpocket +snd-ymfpci +snd_ps3 +snic +soc_button_array +soc_camera +soc_camera_platform +soc_mediabus +softdog +softing +softing_cs +solo6x10 +solos-pci +sony-btf-mpx +soundcore +sp2 +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +spectrum_cs +speedfax +speedtch +spi-altera +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-gpio +spi-lm70llp +spi-nor +spi-oc-tiny +spi-pxa2xx-platform +spi-sc18is602 +spi-tle62x0 +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spl +splat +spmi +spufs +sr9700 +sr9800 +ssb +ssb-hcd +ssd1307fb +ssfdc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +ssu100 +st +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_spi +st_magn +st_magn_i2c +st_magn_spi +st_pressure +st_pressure_i2c +st_pressure_spi +st_sensors +st_sensors_i2c +st_sensors_spi +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +ste_modem_rproc +stex +stinger +stir4200 +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm_console +stm_core +stmmac +stmmac-platform +stmpe-keypad +stmpe-ts +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv6110 +stv6110x +sun4i-codec +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +svgalib +sx8 +sx8654 +sx9500 +sym53c500_cs +sym53c8xx +symbolserial +synaptics_i2c +synaptics_i2c_rmi4 +synaptics_usb +synclink +synclink_cs +synclink_gt +synclinkmp +sysv +t1pci +t5403 +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +target_core_user +tc3589x-keypad +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tcs3414 +tcs3472 +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tda998x +tdfx +tdfxfb +tdo24m +tea +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tef6862 +tehuti +tekram-sir +teles_cs +teranetics +test-hexdump +test-kstrtox +test-string_helpers +test_bpf +test_firmware +test_module +test_power +test_printf +test_static_key_base +test_static_keys +test_udelay +test_user_copy +tg3 +tgr192 +thmc50 +thunder_bgx +thunderbolt +ti-adc081c +ti-adc128s052 +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_dac7512 +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timeriomem-rng +tipc +tlan +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmp006 +tmp102 +tmp103 +tmp401 +tmp421 +toim3232-sir +torture +toshsd +touchit213 +touchright +touchwin +tpci200 +tpm-rng +tpm_atmel +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tps40422 +tps51632-regulator +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65090-charger +tps65090-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps65218-regulator +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps80031-regulator +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsi568 +tsi57x +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2x7x_core +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tvaudio +tveeprom +tvp5150 +tw2804 +tw68 +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-madc-hwmon +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6040-vibra +twofish_common +twofish_generic +typhoon +u132-hcd +u_ether +u_serial +uartlite +uas +ubi +ubifs +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +uda1342 +udc-core +udc-xilinx +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufshcd +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_fsl_elbc_gpcm +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uli526x +ulpi +umc +umem +ums-alauda +ums-cypress +ums-datafab +ums-eneub6250 +ums-freecom +ums-isd200 +ums-jumpshot +ums-karma +ums-onetouch +ums-realtek +ums-sddr09 +ums-sddr55 +ums-usbat +uninorth-agp +unix_diag +upd64031a +upd64083 +us5182d +usb-serial-simple +usb-storage +usb3503 +usb8xxx +usb_8dev +usb_debug +usb_f_acm +usb_f_ecm +usb_f_ecm_subset +usb_f_eem +usb_f_fs +usb_f_hid +usb_f_mass_storage +usb_f_midi +usb_f_ncm +usb_f_obex +usb_f_phonet +usb_f_printer +usb_f_rndis +usb_f_serial +usb_f_ss_lb +usb_f_uac1 +usb_f_uac2 +usb_f_uvc +usb_gigaset +usb_wwan +usbatm +usbdux +usbduxfast +usbduxsigma +usbhid +usbip-core +usbip-host +usbkbd +usblcd +usbled +usblp +usbmisc_imx +usbmon +usbmouse +usbnet +usbserial +usbsevseg +usbtest +usbtmc +usbtouchscreen +usbtv +usbvision +usdhi6rol0 +userio +userspace-consumer +ushc +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-dv-timings +v4l2-flash-led-class +v4l2-mem2mem +vcan +vcnl4000 +ves1820 +ves1x93 +veth +vf610_adc +vfio +vfio-pci +vfio_iommu_spapr_tce +vfio_spapr_eeh +vfio_virqfd +vga16fb +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_net +vhost_scsi +via +via-ircc +via-rhine +via-sdmmc +via-velocity +via686a +videobuf-core +videobuf-dma-sg +videobuf-dvb +videobuf-vmalloc +videobuf2-core +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-dvb +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videodev +vim2m +viperboard +viperboard_adc +virt-dma +virtio-gpu +virtio-rng +virtio_input +virtio_scsi +virtual +visor +vitesse +vivid +vlsi_ir +vmac +vme_pio2 +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmx-crypto +vmxnet3 +vp27smpx +vport-geneve +vport-gre +vport-vxlan +vrf +vringh +vsock +vsxxxaa +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxge +vxlan +vz89x +w1-gpio +w1_bq27000 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1_ds2781 +w1_ds28e04 +w1_smem +w1_therm +w5100 +w5300 +w6692 +w83781d +w83791d +w83792d +w83793 +w83795 +w83977af_ir +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +walkera0701 +wanxl +warrior +wbsd +wcn36xx +wd719x +wdrtas +wdt87xx_i2c +wdt_pci +whc-rc +whci +whci-hcd +whiteheat +wil6210 +wimax +winbond-840 +windfarm_ad7417_sensor +windfarm_core +windfarm_cpufreq_clamp +windfarm_fcu_controls +windfarm_lm75_sensor +windfarm_lm87_sensor +windfarm_max6690_sensor +windfarm_pid +windfarm_pm112 +windfarm_pm121 +windfarm_pm72 +windfarm_pm81 +windfarm_pm91 +windfarm_rm31 +windfarm_smu_controls +windfarm_smu_sat +windfarm_smu_sensors +wire +wishbone-serial +wl1251 +wl1251_sdio +wl1251_spi +wl1273-core +wl12xx +wl18xx +wl3501_cs +wlcore +wlcore_sdio +wlcore_spi +wm831x-dcdc +wm831x-hwmon +wm831x-isink +wm831x-ldo +wm831x-on +wm831x-ts +wm831x_backup +wm831x_bl +wm831x_power +wm831x_wdt +wm8350-hwmon +wm8350-regulator +wm8350_power +wm8350_wdt +wm8400-regulator +wm8739 +wm8775 +wm8994-core +wm8994-irq +wm8994-regmap +wm8994-regulator +wm97xx-ts +wp512 +wusb-cbaf +wusb-wa +wusbcore +x25 +x25_asy +x_tables +xc4000 +xc5000 +xcbc +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_ipcomp +xfrm_user +xfs +xgifb +xhci-plat-hcd +xilinx-tpg +xilinx-video +xilinx-vtc +xilinx_ps2 +xilinx_uartps +xillybus_core +xillybus_of +xillybus_pcie +xirc2ps_cs +xircom_cb +xor +xpad +xr_usb_serial_common +xsens_mt +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +xt_NETMAP +xt_NFLOG +xt_NFQUEUE +xt_RATEEST +xt_REDIRECT +xt_SECMARK +xt_TCPMSS +xt_TCPOPTSTRIP +xt_TEE +xt_TPROXY +xt_TRACE +xt_addrtype +xt_bpf +xt_cgroup +xt_cluster +xt_comment +xt_connbytes +xt_connlabel +xt_connlimit +xt_connmark +xt_conntrack +xt_cpu +xt_dccp +xt_devgroup +xt_dscp +xt_ecn +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_ipcomp +xt_iprange +xt_ipvs +xt_l2tp +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_nat +xt_nfacct +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_realm +xt_recent +xt_sctp +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_tcpudp +xt_time +xt_u32 +xtkbd +xts +xusbatm +xz_dec_test +yam +yealink +yellowfin +yenta_socket +yurex +zaurus +zavl +zcommon +zd1201 +zd1211rw +zforce_ts +zfs +zhenhua +zl10036 +zl10039 +zl10353 +zl6100 +zlib +znvpair +zpios +zr364xx +zram +zunicode +zynq-fpga only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-106.129/ppc64el/generic +++ linux-raspi2-4.4.0/debian.master/abi/4.4.0-106.129/ppc64el/generic @@ -0,0 +1,17414 @@ +EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0x048d27cc hvcs_register_connection +EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0x536d329b hvcs_get_partner_info +EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0xc39c3704 hvcs_free_partner_info +EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0xd0a02396 hvcs_free_connection +EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe +EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble +EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL crypto/mcryptd 0x6310e901 mcryptd_arm_flusher +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/atm/suni 0x3767787f suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0xad904fd4 bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0xc0beb89b bcma_core_irq +EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str +EXPORT_SYMBOL drivers/block/paride/paride 0x1f20b41b pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x2ed110ba pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x3b13668f pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x40e97e80 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x533d5374 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x7021ae0f paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x850a1127 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x8e5b3139 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0xa099d012 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xcdcccfd0 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0xda688311 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0xe351f440 pi_read_regr +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x72fd5275 btbcm_patchram +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fae3bac ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x34bf5219 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e780260 ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7af4d0b0 ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x968a288b ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x9c455efa ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x15b88dc5 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xb97fee93 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xcc83a553 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xf200a61c st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x6bbe6899 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x77a4173c xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xa97427d1 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x2385ffc9 dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x27128e93 dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x4f396681 dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x5da41417 dw_dma_get_src_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xa8da6d8d dw_dma_cyclic_free +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xacbc7631 dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/edac/edac_core 0x7598135c edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04d0f641 fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x09a2b42a fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0f7d6af8 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x11c08bdc fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x26cf0e14 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2e8e7149 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a4e88d5 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4c9faf6a fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5e01637b fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x61235a99 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x645b715f fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7257b397 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7adcb050 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7da40075 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8bcd0244 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8eb29233 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8f6d6998 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90c12c77 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x946eedda fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x981f53b8 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa7cf2007 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0xabe515b9 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0xafd9aa72 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb7b607ae fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc0226273 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc7261677 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd5b9294e fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xebae6876 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfb49caa9 fw_core_handle_request +EXPORT_SYMBOL drivers/fmc/fmc 0x71a000fd fmc_device_unregister_n +EXPORT_SYMBOL drivers/fmc/fmc 0x819f722c fmc_device_register +EXPORT_SYMBOL drivers/fmc/fmc 0x83d1da48 fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x95be98de fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xb2ef7fb5 fmc_reprogram +EXPORT_SYMBOL drivers/fmc/fmc 0xbc19fb03 fmc_find_sdb_device +EXPORT_SYMBOL drivers/fmc/fmc 0xc2f58625 fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xc8735c50 fmc_device_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0xca3fbd83 fmc_show_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xcfe7c3a2 fmc_driver_register +EXPORT_SYMBOL drivers/fmc/fmc 0xd20a3c5e fmc_device_register_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00d8eedb drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01c931b5 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x033c18fc drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03dfac00 drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05039ca9 drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0574f3c5 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08716213 drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x091eeaa4 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a404f42 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a596fcd drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b00e2cf drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b841825 drm_platform_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bc7c8ff drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c7be9ce drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cf101b4 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d058693 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0db8b000 drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fe4b887 drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10dd008c drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x111b35de drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x120a3c68 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1312e45d drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15ec78ab drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16c41002 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17dcfaca drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18c77c2f drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x190dcee6 drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19e4430f drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b35293c drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bd3cbd6 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c10d22a drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c74e0db drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c83800a drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cc68c78 drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d1adc5d drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1da5c65f drm_plane_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20056f34 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2320f5d1 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x240073cd drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24bd99d6 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2528ac14 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2594efb8 drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x276f94e9 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x289cb803 drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28c9e46d drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a599ec6 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a8f98a2 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b420591 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bcb8bfc drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2becb155 drm_atomic_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c2665a3 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fff042d drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0x314d6fd9 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b1302a drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3349bf92 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x340cbf4f drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x342730d5 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35bf12cb drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36609431 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3743885e drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37d703c1 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x389fef3f drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b663290 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c1bce64 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d8a1262 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f3dee8d drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41648e41 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42197ca0 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x430e26bf drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4421a7dc drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x443a6e47 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45eb0a93 drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x461980e9 drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4671344f drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46ab831f drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46c54d33 drm_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48487cc0 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x487449a8 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48fdeb9a drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b3270c6 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bec95dc drm_encoder_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cb242fe drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cd9bb75 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ef88efb drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f6b3954 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50587215 drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50c0ae55 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e03d1c drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5139fc46 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51db353a drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x535a6be9 of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54571f00 drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x546ab29b drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55eba4f7 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x565e4bd5 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x581c3371 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a4bbd4f drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b5ccbfe drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7318dc drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5dad2550 drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e2df838 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f3c5720 drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6006576e drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x601b184d drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x624c96a9 drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64bebb35 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65769b09 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65aec88f drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65c0bbb9 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x682da34f drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x689c6b4c drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68ed607c drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68ed8de5 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6905a28c drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69acc20a drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69b2e563 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c3c4900 drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6eeceb53 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70437adf drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x704bf914 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7072302f drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71d20cf1 drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7318315e drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x735ae7a8 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73c1d19e drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7484b78f drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74a6025c drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74f97a8d drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x755ecc5b drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x757bad1b drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7763715e drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7765d988 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77e784ec drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78c441da drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79339c01 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79703b9b drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c4ec438 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ccb3f90 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cf2dd02 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7db083c9 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f7658ad drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fd18df3 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82277fcf drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8330b3cc drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x834823a7 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83577fe4 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x837c85bb drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x841476ca drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x855a5823 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x861e74e3 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x866c1b45 drm_crtc_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x879c24b6 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x893cff67 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89bd2a10 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a0f391c drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a45e8bf drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a7b45e0 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ae1314e drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c3d81ee drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c6b3277 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cf53804 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d39e32f drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d5a274e drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d97b5dc drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eb72cc5 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ed999c3 drm_connector_unplug_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91a9be84 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91daf280 drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x924a583b drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9253bb4d drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92a43e72 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x938d26d8 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x944b8db7 drm_legacy_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94642766 drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94f263d0 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95cd49a0 drm_framebuffer_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x967f0298 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99766572 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8a4874 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9badd66f drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bb8bc41 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cdd4519 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d3642d3 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dd35500 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e52c2be drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f16b9c2 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f3a8df5 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa08e5c9a drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa42cb27e drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa56453d7 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9456586 drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa39bff0 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaae660f6 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab4ad7aa drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xabf1e807 drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb026e944 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b67cea drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb15619e1 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3492304 drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3bea8ea drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb413c7b9 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb43823e8 drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb47c933e drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4b6088e drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb50a9777 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5540008 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5a06523 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb90dee1b drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba47e6fa drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbac1eef1 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbba5abde drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc1c4b0c drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbebc6728 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf446a95 drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfda4a6d drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc14b732d drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc15e3152 drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2a0f2dd drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2d62667 drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3026e1e drm_agp_bind_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc36160f7 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc36e9d34 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5ba8757 drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5d1684d drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc67e9d23 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6943f35 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7127333 drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc782b9ed drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8a03cbe drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9af1ea7 drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9e1fe4e drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcab151c6 drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcac80958 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcad5eb0a drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc8ec6ce drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcccccc0d drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccec6efd drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd3dbed0 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcde9b624 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf6ac75a drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1242548 drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd149ca69 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd38a3ebb drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3e3fd29 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6b30fbd drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7fcde2b drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8ec710c drm_connector_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd97923ea drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9bc72a1 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb55d3c1 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc072293 drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc87d3d3 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe03edfcb drm_framebuffer_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe09d2cc9 drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0eca408 drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe116bed5 drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2ffd7a5 drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3611724 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4428d62 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4b36f3a drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4d8d4dd drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe539f4af drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe64062fd drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7dccd88 drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe940302f drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea2f89b1 drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea5b7234 drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb242c3c drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeda22970 drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee60cca9 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b098be drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf29a579f drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf38ffe77 drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf66184ae drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6f036fd drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf81087a9 drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf83ae891 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9582e69 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9e4a972 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb8b9f2b drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb98fa2b drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc30af03 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcec0d9d drm_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd54aefa drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd980847 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff39033e drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff3f150b drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffafa4e1 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffb57b8a drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x009c9506 drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01544fbf drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x025318c5 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x052699ef drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x065c043b drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x080f7c65 drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0854a10e drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x088dacda drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b8e863d drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e69c2e0 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ea2854a drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f50c6bf drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x148c3b2c drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x149bd81b drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x162d7bbb drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16345e33 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16b42c6e drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1aacf4db drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c655fa1 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21311601 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22e180c7 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x261bd0a5 drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x268b2442 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26cc2ed6 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a01d4cd drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a67b25b drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d4926e7 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e7b34ab drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f433758 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f80307d drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fdfc074 drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30bfddcf drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39566b3b drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39c13113 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3be0de1d drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c783fc3 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x400ed024 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4084ae57 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4181cdf8 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x428e6211 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49a0a7d7 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49b537ca __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a236df5 drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c6d2810 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4da25a99 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x500d9490 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x514ec489 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51ec52cb drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x543d30c6 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55b26105 drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55ef3084 drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59187a6f drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59954e3b drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a583b9b drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b4ee447 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e6a3d70 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e6ea667 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x614a755b drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62c92b59 drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65bb805d __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x681149f6 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6850fcfa drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69b8a06f drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69c762e8 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6db1086a drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e5b9ed5 drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e6b3e9a drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ffb734a drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70562ff6 drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73260152 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x744be014 drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74a05b0d drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7537f6b5 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75ea672d drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78b631b9 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x793516b5 drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bad3e67 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d3f6f77 drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x838e61e6 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86115006 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88f354c6 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c27f67c drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8de5a44b drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92035256 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9229d049 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92656993 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93c5c101 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93fae800 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96281224 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9aa0ca6e drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b3a8819 drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e3a94e9 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa52cea88 drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9a47abb drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9a80552 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa14450b drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab50596a drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xacce8819 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaea0ccdb drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb25c8c87 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2a156ee drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb42da781 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9ff82bd drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba90871b drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd813316 drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0d395da drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc17d0252 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1f95ead drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2569ce2 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc63a5da3 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc668ef7a drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6eca9b3 drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc862d4d3 drm_helper_probe_single_connector_modes_nomerge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc99f461e drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd5cb6eb drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd8d98e9 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcda42e4c __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcec25fec drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfd19e68 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd17047ab drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd194a9bf drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd540212e drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd61c1baf drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd67f0cd3 drm_helper_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd77534ee drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc6bbcde drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde6b3bb0 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe23c92f4 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6331a58 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9e01b6b drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea0e83f6 drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeaf772dc drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeccabe34 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed776c2a drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4650a49 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7cd7385 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf90b555a drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf931f7c9 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfaf3426d drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfca28024 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfdd841c6 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfedb6680 drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0ec52203 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1481e5d8 ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1509cf4b ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x17a01eb5 ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x17b224c6 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x187cfb01 ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2050b92e ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x20f8758f ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x21e214b2 ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x240c634b ttm_agp_tt_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2cd0f767 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x323a1e23 ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x38d365e5 ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3db55b01 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3ebf7069 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x40bb9554 ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x40f75906 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x417a83e3 ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x41860047 ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4c7688e2 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e8dd264 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4fb80bac ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x51dffc96 ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x549a26e3 ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x564e1aee ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x590e447d ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a8fdfea ttm_vt_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6052860c ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6165b025 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x62205672 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6221f079 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x626985a1 ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x62787051 ttm_agp_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x62eba954 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6611c5d5 ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6822d849 ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a685a67 ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6f435396 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x72160460 ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x772c12c5 ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7bbb9eb5 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d55da85 ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7e693bcb ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x849b995d ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84a13931 ttm_write_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89a443de ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89f91e05 ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d0db21a ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d14adbf ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x93f124cc ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x98052c6f ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d0eb91 ttm_ref_object_add +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa2a129fd ttm_suspend_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa502d46a ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa73de2a9 ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaa5234b2 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaaa5fc65 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae3b47a6 ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb26785c6 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb63aee85 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb83c6470 ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbbd6a594 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc20268f5 ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc4ac4216 ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5f0c2da ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd0bc943b ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd7f51742 ttm_suspend_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe6dca0ed ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xea2b1942 ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfdb3c613 ttm_bo_acc_size +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x7458d385 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x8b580bf6 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xa90b126e i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x2544874f i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x5d832ec3 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x503f415e amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0e2481aa mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6634b1b9 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x84bc4b7f mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8c4b3ea2 mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9e2b7c0c mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa029637f mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa7a8a93b mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb347762f mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd1403301 mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xdeb1a345 mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe3cb1a43 mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xea6a0905 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xeef3b5b6 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf61bf590 mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf896cf22 mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfa67dbac mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x82705b43 st_accel_common_remove +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xd839ca92 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x092cf90b iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x22a4371b iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x9756e602 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xb80bcd26 devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xef2d3119 devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xfc75c687 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x273423ac hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x2cb65557 hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x2ec649c6 hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xa48a16bd hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xa95b47cb hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xdc1614cd hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x51ed588e hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x7530d6b9 hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x9721d4df hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xc55813e3 hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x0582025f ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x09763aee ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x1fa7a88c ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2b4407d7 ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x6456bb58 ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x75304201 ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xae0d52bd ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xd536d212 ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xe0e595ca ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x0ee3456d ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x5124a0b5 ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xd14cdcb6 ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xd512fd7c ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xf0cac171 ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x26c4500f ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x6067c309 ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xa7d5dfbf ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x037534d2 st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1354869b st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x13c126e6 st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2f8d15d1 st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x404ec258 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4ac8838a st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4cbb40eb st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x6c341502 st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x6c54f6c2 st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7beba391 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x837a78aa st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8aaa470e st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x91fcfafc st_sensors_get_buffer_element +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x94b18e3f st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x98d14ea7 st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf248ce80 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf6b09c52 st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x29c45d1f st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x483e6b38 st_sensors_of_i2c_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x69ee8f23 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x3aea9784 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xe1f50bab st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/humidity/hts221 0xf0fe681d hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x544781cd adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x756c20b9 adis_enable_irq +EXPORT_SYMBOL drivers/iio/industrialio 0x0ea6d8f6 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x3de8336c iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x4afe3a65 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x5a390dd5 iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x5efb8bff iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x610e72bb iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0x654821a3 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x78869ee4 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0xa5d97feb iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0xa712523a iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xa98a5a93 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0xac09d222 iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0xd335bdee iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0xd573018e iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0xd7fc44ca iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xf2b01617 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0xf74afdca iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x372e650f iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xa7fcc90d iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x4dab8f14 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xa7dd0daa st_magn_common_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x85e46687 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x4aec7bd6 st_press_common_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xf3530b7b st_press_common_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x049ace30 rdma_addr_find_smac_by_sgid +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x08522972 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1ea5767b rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x32a8402c rdma_addr_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x512bbc90 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xa2034ffd rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xf5850aba rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0f2a3446 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x13b89a9d ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x393614f7 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3a50b3d7 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4514e715 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x47f1433e ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5835f31a ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x734ebeac ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x97d89430 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x99fe917b ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa7aa819e ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xae0f32f9 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xaf70d2bf ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb74c70de ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd4a478ad ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdbb6c3f7 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf6b0774d ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf8d239b0 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x008cb3a4 ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03d6783e ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04da5d6f ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04db8257 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0aa93f8b ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0cf2061d ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f9b7e9d ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15155c79 ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16dc2713 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b947680 ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ca15842 ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2647f827 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x275a623b ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x293694f8 ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29f21fde ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2da4e924 ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35c75388 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a6e1ac6 ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3abf1639 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ffa1570 ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4290fbce ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42be3966 ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x458e550c ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x468d1f4f ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x476f5a50 ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b4e5f1f ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c583bca ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e46eb17 ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51d6e3e7 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5adb6550 ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c9b422d ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f48780c ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60b295b1 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63aec64b ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b2de349 ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e939918 ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7304705c ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73230caa ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7330defc ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x747d6be6 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76e4579f ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7abcf48d ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d3dcc8d ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87465f6a ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87f39651 ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ba8e530 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f948586 ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x916bf420 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94f71e1c ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96bbdd8d ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97c993f5 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a4159ac ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d327a31 ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e2f023a ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f0d9962 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1c8ed78 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa48c5afd ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5956f94 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6d9ea6c ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7c84b69 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4949de2 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9a386ae ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe258ee4 ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc192e6d1 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2960ff0 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4ef311e ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc723bd71 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd37ecc5 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd69d5be ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd10b1d6a ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd585be1b ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd613278a ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6191fcb ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdaa68467 ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb2ecbf7 ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe01c77bc ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe132f0c5 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5433816 ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7e5afbc ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xecce98f5 ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf308adb3 ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf88e993e ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9f21418 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x01c8974f ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x24f4c2bc ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x292ee552 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x3229f95f ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x35286fd9 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x45bb32a0 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7a016d49 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x98272e80 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xb9ffbbed ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc6e9f437 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xcfd18f6e ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xd0cf152e ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xe393b884 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x154e019f ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5328d7a6 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x79b02e24 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x7e57fea6 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9a1cd50d ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xb2c6a5fe ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xc45e369d ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xca380964 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xe131bbe7 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xe2c7a5c6 ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf5885587 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x893dfa28 ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb21e0b79 ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x21b3ab8e iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2b734b78 iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2c7718df iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x301d5291 iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x34d076ab iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x46ea1786 iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x530c508f iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8d007289 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x984c4818 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb44b90b2 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb512e8b1 iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xbb1933dd iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xbb3f2335 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xbcb16a17 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xcea82652 iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0e18e2c8 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x23d21ac6 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x387a0e5e rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x51e3ab73 rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x55e11ef8 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5ccb37b6 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5ea8073a rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x61fefe22 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x69e4d2d7 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6bd7f82e rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x78129c7f rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7ba9566f rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaa7661fc rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xab1e3f1d rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xac94eb1b rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc4b31b92 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xceefc63d rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcf97a3f2 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe9a1929d rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf55e228d rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf64f79ef rdma_bind_addr +EXPORT_SYMBOL drivers/input/gameport/gameport 0x0d58e11b gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x0efb1428 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x26ca40eb __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x2d8d9b20 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7194b439 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x8e7319c8 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x8f74233d gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0xb8c5aa13 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xc5c7de1d gameport_open +EXPORT_SYMBOL drivers/input/input-polldev 0x03d8651d input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x266a5319 devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x9e4a709d input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xbf691065 input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xcd822ac5 input_allocate_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0xf9220615 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x47aefcd0 ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x8578f702 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xd6a13697 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x09466106 cma3000_init +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/sparse-keymap 0x028e77dc sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x8f9638ff sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xa5be4c95 sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0xe74cf543 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0xfb4e063b sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0xfc05a15f sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x260abf4a ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xe41e7110 ad7879_pm_ops +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x1eb1018e capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6387ad8e attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x639b8bd0 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6e25a7dd capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7292ab34 cdebbuf_free +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x72a25a72 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8644b5e9 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaae48066 capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaf70bfe4 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xbd5a4b5e capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd4974d63 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xef5e13e5 capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfd552f7a capi_message2str +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0dd5bdbe avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x11c027d0 b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x23779819 b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x3197ae91 b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x3a787f2d b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x54932712 b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xa03e130c b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb26e3a78 b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb380f8a3 avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xc7b995c2 b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd212b542 b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdd6ddb4f b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe23f4e4c b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xed9ef7f1 b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfe213b79 b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x08db7478 b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x24c84bee b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x40732b25 t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xcd6ea402 b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xe35f10ef b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xe84a8464 b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xeb88ce22 b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xf7d914c8 b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xfb2fba87 b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x247cfe1d mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x6466aae9 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x9a67b570 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xb367379b mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x18cbf8b2 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x601cb718 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x2d6072f5 hisax_init_pcmcia +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6fe1ca04 FsmDelTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9f987c85 FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xa1bc94b9 FsmInitTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x19dd525b isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x2eecd262 isac_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x4589ee31 isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x47d320bc isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xc5135d87 isacsx_irq +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x6540ad99 register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x7a2eb023 isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xe6565794 isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x160cb7f1 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x161bd9da mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1b74a116 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x214f35f9 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2fa8c43f get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3be21029 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3f5c476d get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4b8a7699 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x56606839 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x61b076f6 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6945c73f create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x73715d57 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x73f6e89a mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7c339626 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7f006719 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x84d863fc bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9bf7c558 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9dcfc2c6 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb7f5a050 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xca949256 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd8a5220a mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd9d1c3a7 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf015fc57 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/md/bcache/bcache 0x1d89bd11 bch_btree_sort_partial +EXPORT_SYMBOL drivers/md/bcache/bcache 0x1f529ce8 bch_bset_build_written_tree +EXPORT_SYMBOL drivers/md/bcache/bcache 0x26481f26 bch_btree_sort_lazy +EXPORT_SYMBOL drivers/md/bcache/bcache 0x440b4830 bch_btree_iter_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x44a37d62 bch_btree_iter_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x5b59b856 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0x65881412 closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7d61e1de closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7daccb73 bch_btree_keys_alloc +EXPORT_SYMBOL drivers/md/bcache/bcache 0x8833b0e8 bch_btree_keys_free +EXPORT_SYMBOL drivers/md/bcache/bcache 0xa3c5c702 bch_bset_fix_invalidated_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0xabc42122 closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0xca5df778 __bch_bset_search +EXPORT_SYMBOL drivers/md/bcache/bcache 0xce47a6d9 bch_btree_keys_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0xd2813054 bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0xdf892351 bch_bkey_try_merge +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe67c2d16 bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0xec6f33d0 bch_bset_init_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0xecc2e3b7 closure_put +EXPORT_SYMBOL drivers/md/dm-bufio 0x268682d2 dm_bufio_forget +EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL drivers/md/dm-log 0x2a2ba98b dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x3238e8c2 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x9bf0d476 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x9e16d88b dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x073f8f01 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x0c076835 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x625e3ef5 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x6b870ca5 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xc659a7cd dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0xf185184a dm_exception_store_create +EXPORT_SYMBOL drivers/md/raid456 0x0c83501f raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0e6f39ca flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x27fea75d flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2bb1a50e flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x366aed31 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3df6c1be flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x40ae7fdc flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x797a751e flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7dc26a8c flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x92e8c95c flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc218168c flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc8d3cac8 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xcb846c09 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xef2a8a8f flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0x291ac060 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0x30cb4cd7 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x98dee968 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc7cbe011 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0xeb7cfc3b cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x11073bc8 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x1e7320f4 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0x416f8c85 tveeprom_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x01cb9c29 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x03e696e1 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08d4f238 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0da03dda dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2bf8da1a dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2ccca199 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x30adbe4c dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x32706276 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3c7ff401 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4a95b2ec dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4d2cbaa8 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5170aa58 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5b8f8ac7 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5c0ea535 dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f44ef42 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x70af1058 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x73f30e14 dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x78db694b dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7a48bf31 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7f4f9b54 dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x85a5e7d3 dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x95aca22c dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x986ffc29 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa04207d2 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa3ab49cd dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa75aa468 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcc1dbbff dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcf589e8c dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd2a6489a dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd8f7184c dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdee88fa9 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe1b715a2 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe934ed3f dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf28e7431 dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf4a4f1dd dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf8fd5dd7 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfbaa7e01 dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfc125d6a dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x1141b15b af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xdccbe116 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x251df176 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x075512fd au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0c32eea2 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x486a1a96 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x4a4846d1 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x532d8aa9 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x66a53110 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7cf1b0e2 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9990ab4e au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb86ab28a au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xe68ea354 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x7966e641 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x5260a13b cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x8189edfc cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x9df96de7 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x233450c0 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x9a11a888 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x0094af0f cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xc4c918a9 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x2c5c9807 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x858bd962 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xd373c913 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x4c357c73 cxd2841er_attach_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x5e674f6b cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xb42425df cxd2841er_attach_t +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xae47f75d dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xb99df847 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xca53d00f dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xfe0e1b6e dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xff4db1e5 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0869441c dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0b1d248a dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x27ea7270 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4cc89801 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4dafc5f2 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6090024c dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x872a52ab dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9d5703e4 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb9ff5f07 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc0b6572d dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc3cab8cb dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd817441e dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xeaa5bf47 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xec990be8 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xeea7faa1 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xd583a84c dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x0680a70b dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x61715e0a dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x64d11382 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x6ff3350f dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa24856f6 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xbaf8930a dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x11fc90b7 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x8701ee7c dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xd496085d dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xdbdb61ae dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x248b0cb4 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x3d664e79 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x0e96fb6d dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x4d7d0a80 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x55155da1 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xb14cf0c4 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xe9f86853 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xdf7f16ba drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x2a839a47 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x73aaf4b6 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x3fba57f2 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x65306a52 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xf2a5ec39 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xe459c86f horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x88c39521 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x7d596775 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x8c8186ea isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x477c0186 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x040a7341 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xf5261aec l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xe3aa02bc lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xf5b2faca lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x94646e34 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x6ecf2db8 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xb32f64ac lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x8be74389 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x16b8eb9a lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xbc50cc1b lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xe2a8fca4 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x1972bb3b m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x4477df6d m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x4dda0de3 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x4a67ac41 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x12776689 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0xf5b1ef32 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x8c715cd1 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x47db9655 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x32138d84 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xfc056660 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x88092cf6 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xa92dff49 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x107770e3 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x6428b4f7 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x9ec829ce s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x29b4d3db s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0x248fe0f1 si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x3ede8f23 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x572c56c6 sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x04999407 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xf9eaf448 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x6fd27550 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xf9f0e8d3 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xfaf0ae0e stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xd25f00a3 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xd251cba3 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x298d74e3 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x2ad44cf9 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xfbdbae19 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x757145fa stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x04fab2ad stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xa4e21baa stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x999d5a45 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x67ba2a64 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x53b9ee66 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x02567768 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x3643df00 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x8aea19d2 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x6913aa7b tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x3fdaa167 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x0be78992 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xe0a714e6 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x870329c6 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xa418e891 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xf68c619f ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x138ea67e ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x34b96c47 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x4993357b zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x6dda266b zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x322dacea flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x3ccd837f flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x44eb0ae6 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x6e63fc68 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x7cd93737 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9cae520e flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xa0e8bcd4 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x2a56db61 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x38451049 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x9c146e37 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xfbcf7fe9 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x566988e6 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xf458146b bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xfc8fb279 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x45aebbc5 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4e1a2b81 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x684f36bb dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x71e93333 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8afc5e03 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x92134e98 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xbaad9ace dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd1669f48 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe9682ff1 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xff49b390 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x25d7bd6c cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x3d5965d9 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x5d6ef101 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xd510e735 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe1fdd3e6 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x7cbc9fba altera_ci_init +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x04d5904f cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x117facfc cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x385f00fc cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x69d71ee0 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x81b0c8d7 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xb61f0ae0 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xbdbbbd3c cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x02bff4b6 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xee470f03 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x229e7544 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x77ead2c5 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x8e631dd1 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xf8e69e6d cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x0ba5d834 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x15f26feb cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x57c0cbe7 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x6c112cc6 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x957a9d54 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xa16d6274 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xfb98a68f cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0a85d07e cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0b85a632 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0cb84613 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0eabeb82 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0ecbed4a cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0f59ac22 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1658e0ca cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x48a964cf cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4a527adb cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5151fdd5 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x556faaeb cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6471dd24 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x90e85404 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9ac892b7 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9de09a3f cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb1a927f0 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xccd05e57 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcf49c3d9 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe03af282 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfc199d85 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0f42f961 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x109d46bf ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x19576a1d ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3cc572b1 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4d0509e1 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x718faa2c ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7c19d142 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x83d91e22 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa5ba629c ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa99fa38b ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xae538d20 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd7c5e4bf ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xdabaa3b0 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xdcc303e0 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xeac8e6ab ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xeee96df1 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf442ae0e ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x049331f9 saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2875747c saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6a05efce saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7852f589 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7ac3b444 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x93d29c39 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa352157f saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa3b23ea1 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb7b69dcd saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xbb73bc97 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xebed3485 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf972ce67 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xf5759bfc ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x19782dae soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x1e8fa10e soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x26ed0d51 soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x3f6f7cbb soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x698c63e2 soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xa4e3cdd7 soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xd71bc53f soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc +EXPORT_SYMBOL drivers/media/radio/tea575x 0x02e51633 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0x198275c0 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x42cb572d snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x84fe4e5c snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x8fb755a3 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x91d9bbf8 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0xfc3a8d14 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x03f8290e lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x48e77ccf lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x5e18f9b0 lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x72fd3f57 lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xa0ee7085 lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xac0dc6af lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xc63f26e0 lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xf4c2723e lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/rc-core 0x43516ec4 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0x5f04dc3f ir_raw_handler_register +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x8e9445d6 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0xb4ceab7e fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x3810dc2a fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x4c140869 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x5b787169 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/max2165 0xb9c85801 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xda6c038f mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0xc359ee98 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0xfb1159bd mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0xc6e9336e mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xb705c42d mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0xbf463044 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x95dfaa34 tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x4813c5dd xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x2ccd2ecd xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0xccce6e2e xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x7b466266 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xd121c485 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0f0a41ae dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x27ea7844 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3d04af1f dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x423a32df dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7f756346 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8d71cd39 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xbd8e10e9 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xcc05db5e dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xffb03d4c dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x00f9e8d8 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x20fe4fb2 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x5e5d7679 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x9b7482ad dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x9da145e7 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe1f457c7 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf9f7ca5e dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xb47b62ef af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x07245b1f dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x0caa3a75 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x11f44c76 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1aa4f439 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1c7af8a6 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x466ede8a dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x56701942 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x697ad6cb dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa0a04e6d dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xba94a20e dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe2eb774c dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x442b06ec em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xd83c49b0 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x30887a38 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5fa83e2d go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x720ce3de go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7646cb2a go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x791352ed go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x94e0ce79 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xcbf012ff go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd150aba0 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xde202d55 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x0b34d3e1 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x1a5d3d6d gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2cd9fae8 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x308fafc3 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x35ee32fd gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5a919266 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x77fbb2e3 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xcf3c52b3 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x1c4deef6 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x51481423 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xf85d450a tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x4701f318 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x6cc6f2d2 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x58a6afe3 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x897a666b v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xacf371ca v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x28400bb9 videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x456c54ab videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x50b39bbe videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xa6fd1ce5 videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xb305df9f videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xec325063 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x4fce54f9 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x9753ba8e vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x4ed17dea vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x513f3dde vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x69eb3aca vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x8c93f11d vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xd6ea5e91 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xe09b7466 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0x391d27b7 vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x091e4385 v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0928f4a6 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0c4e67f7 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0d4b93eb v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0dc7148d v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x10b53148 v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x11cd9343 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1e5a6619 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2aa14a35 v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2c838f6d v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2d13536f v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3c3193f4 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3e5beb80 v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3ef4fc3a v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3f890a63 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x47d548a5 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4a6706a9 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4a9e37a0 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4af1f856 v4l2_of_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b374c99 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4d699aef v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x58141592 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x59ad5c47 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5eb654fe v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5f75554e v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5fea4618 v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x60f8405d __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x63563ce4 v4l2_of_alloc_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6378e39c v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x674b0e9a v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x68f44a79 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6bd73096 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6e427c00 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6e6e39e2 video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x70c63fd9 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x71c6bec8 v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x742c32d8 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x746c01e6 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x772d005b __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7bb05e51 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7d3639c3 v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7ddb5412 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7e20b3ad v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7f0d1380 v4l2_of_put_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7f89f0a6 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8d7c3e50 v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x96b32098 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa53ca32c video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa54c8a47 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa7b7a903 v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xad7cdc2c v4l2_of_parse_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xae7644ae v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaf12dc7e video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb077c136 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb47507c6 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb9921364 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbd3afbd8 v4l2_of_free_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc2a91015 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xca4d8252 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcb82707d v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe1400ad5 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe64b106e v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe6e225af v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe988d749 v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe99e1168 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xefb4282b v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf025b86f __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf5983801 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf6758d12 v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf9b88e0d __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfaf53ceb v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfb67c93d v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfe5a4d35 v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/memstick/core/memstick 0x0a44f0e4 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x16252c4c memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x21be6318 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7fb92382 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x985fdc6f memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb41da18a memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xba120369 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xba492a00 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc6d96a2b memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd3d77b1f memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd4bb1dae memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc07e67e memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xfe6dc565 memstick_free_host +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0405b725 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x05221b5f mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x130a0932 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x13b76b06 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x231bf72e mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3d5356b3 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4632ccd1 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5e512018 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x667eb2f5 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x69938d57 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6f3e67c4 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x79ce08e1 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fe3f558 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8c47af61 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x93f0bab3 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa1084504 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xac0c2376 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xac9df562 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xba17b52b mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbf1fd9c4 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc26b6c77 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc39886c7 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc9730a7b mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcc61622f mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd6a86567 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf492edc1 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf84fc165 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf91e0b1c mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfe290321 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x031bf2a9 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0c83bfbf mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1964eacc mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2c6130e2 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x30505eba mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3f31c0b3 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x43c64e7b mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x46e3c27f mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4e0d3253 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6d542720 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7caf0e2b mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x82e5b5cb mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9939112a mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa04e471c mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xabd50504 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xaf6e4de0 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb0baeacf mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb3075b4a mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb437184d mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xba114682 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc47323d8 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xce3c4477 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xce5a670a mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd050c633 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xde7ebefd mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf46eb6d7 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf740c4d8 mptscsih_host_attrs +EXPORT_SYMBOL drivers/mfd/dln2 0x4c4e926f dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0x6f5c26c1 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xb2549a51 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x1ad3a67d pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x6b085fc6 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x34756edd mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x38ea177f mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4d0eaf9c mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x547380e3 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x67ca2b53 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9576015d mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x96acdcd0 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xbe7b7164 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd28199f3 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd727c820 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xee3cf602 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 +EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 +EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib +EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led +EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw +EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x69a6c2b8 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0xe6b37b35 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x55d1ac97 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xb5fa1d43 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xcab3aeba wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xf8891523 wm8994_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x9c1dc384 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xd6a01e45 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x30b3ae49 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0xd98d79c9 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0xe2cec360 c2port_device_register +EXPORT_SYMBOL drivers/misc/ioc4 0x0061ca03 ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0x9cdd3d0e ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/tifm_core 0x2d3407e5 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x3831808b tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x4a637744 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x5470a5fa tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x572df9e0 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x789ff6ee tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x81110cc0 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x89b680ec tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x9b691729 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xa8c2ec46 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0xd5e589c5 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xf3a6b8a1 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xfdbc2c02 tifm_remove_adapter +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0x16799cdd mmc_cleanup_queue +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x8c3324af mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xe3058280 mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x02c9089b cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x092ddf01 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x14084910 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x69114ece cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x695e85bc cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb08f16fd cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc082a62a cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x05fc73e0 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x092c6069 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x26777d72 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x7d163012 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x832b7ed0 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x63cf58f2 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x5e1c3ae3 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x28495523 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0x60f49742 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/nand/denali 0x6a3d1df7 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/denali 0xcc27760d denali_init +EXPORT_SYMBOL drivers/mtd/nand/nand 0x2f279dd1 nand_unlock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x863683bd nand_lock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/nand 0xa25ed29a nand_scan_ident +EXPORT_SYMBOL drivers/mtd/nand/nand 0xcbd726d8 nand_scan +EXPORT_SYMBOL drivers/mtd/nand/nand 0xd19f33b3 nand_scan_bbt +EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL drivers/mtd/nand/nand 0xff77c5cf nand_scan_tail +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x539f1d58 nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x60d331fe nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x655ee84b nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xa918039f nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb1d6a500 nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x8cfcf75c nand_flash_ids +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x0ab570be flexonenand_region +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x18b03f4c onenand_scan_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x82541550 onenand_addr +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xcab1e3fe onenand_default_bbt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x04282789 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x291df088 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x52c8e885 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x56a350d2 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6c7b066c arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6f3383c3 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x71922cdd arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x75b17d54 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8b2b02e7 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8e3e3d2f arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x22d4d691 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x57cdef5d com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xfd3d9d63 com20020_found +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0fbe3bcc ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x13194895 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x17008856 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6e94740f ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xadd90256 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xba5726e1 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd8148772 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe24704e3 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe9978913 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xec42476d NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0x76b7b24a bnx2x_schedule_sp_rtnl +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xbc8c8314 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x0d8be5fd bgx_lmac_rx_tx_enable +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x285bde59 bgx_get_rx_stats +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x42264715 bgx_get_lmac_count +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x6dc1648d bgx_get_lmac_mac +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc397f585 bgx_lmac_internal_loopback +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc82be691 bgx_get_map +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xe48ca42a bgx_get_tx_stats +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf101d1b2 bgx_get_lmac_link_state +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf9508980 bgx_set_lmac_mac +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x00cb1760 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x15009284 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x153cc690 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1652c5da cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x166c1b78 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2293d944 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2d6f3878 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x368da86d t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x570c3038 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x67c15c5e cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6987d7e5 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x728edd0b cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x95d3ccc2 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdeb279df cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf5cd9df7 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf8897aac t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x009d6866 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0b887288 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x17d587a5 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1a2902b3 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x21f77456 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2fbfdaed cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x353409db cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x35a7fea9 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4326c7b0 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4c3f465f cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x540e4a33 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x56e19c60 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x582d46c0 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5d2f5f20 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x69939324 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6ae25ae0 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6d248ae2 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6fc34b2b cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6fedfd89 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x723ed6ca cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x75945849 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7f1b07c8 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8734f980 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xad91a4c9 cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xadb4e4e7 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb0687115 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb6263a9d cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xba72d7e5 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc24e732f cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd8fb6d82 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe3a2fbb3 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xef30c82c cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf69d65f5 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfb115be6 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x0c4e80b6 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x14551099 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x69d04225 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xb6fb9939 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xc653c94c vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd33c66f4 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x0b734959 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xe270c037 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x009019d1 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0778e5d2 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b23f81f mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d336163 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x143d2fe9 mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x158fc4dd mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a6cc852 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c3df44f mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ef8059b mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x383c0c77 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5665dea5 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b11b93e mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x670207c5 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69f514d8 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6de0a64d mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ed27da2 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7351539d mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8075a45e get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81237e41 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85867766 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99592fa5 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c56bb0d mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4a66a3b mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa592c822 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa75bd18d mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad2276c4 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd99475c set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe81b470 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1a27758 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca4c5947 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd37712fd mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd97e2334 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3765ca2 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe50ea4f1 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5e1c129 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4ea1b08 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7ef0068 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfec113c7 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0857aabd mlx5_get_flow_table_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb7287e mlx5_del_flow_table_entry +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x112346f7 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b006ee8 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x278a7203 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29c69bfa mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x349884d6 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x361f6a26 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49449a60 mlx5_modify_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49f0d37d mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x592dddfa mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ebd8fc8 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6792c1d7 mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ecb208d mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x714c65bf mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c95701b mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86d87081 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88ad3d70 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8968cd9a mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a998e97 mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b6a9560 mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8da99b12 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9266459b mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9dd20620 mlx5_query_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2b141f4 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa94829ed mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xadb91a56 mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1a7faaf mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2012b1d mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2a8e74e mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb418c5e4 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbab8ef4b mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc89c42a2 mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce9cbf06 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcfa126be mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcfb823c5 mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd30425b5 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3e0a38d mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbbee33c mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe118c68b mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6af33e4 mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc728a49 mlx5_add_flow_table_entry +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x148d6e08 mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x18251e44 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2d07a992 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7801c0b mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb30c5b82 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc0a90902 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc7e92f7 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdec53276 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee8e0771 mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x06512589 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa209d1af qed_get_protocol_version +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x0accfa88 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x201d07e4 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x66ccc0a1 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xb1bf78a2 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xe9399d19 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x1635d8a0 sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x3004dcff sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x36095a73 sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x747b5250 sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x9427446b irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x98387222 sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xb361d94d sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xbddd320b sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xcd414f08 sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xff37031e irda_unregister_dongle +EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mii 0x2375a8fa mii_check_media +EXPORT_SYMBOL drivers/net/mii 0x35fd1c5c mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0x5e23e268 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x726d88e0 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0x7db6b41d mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0xa27b2fcd mii_check_link +EXPORT_SYMBOL drivers/net/mii 0xa2e984eb mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0xee145af5 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x436988e0 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xf56bff89 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x14381f70 cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x53a13fa0 cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x41988118 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xe0abf466 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xf1601243 xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/vitesse 0x8009f0c8 vsc824x_add_skew +EXPORT_SYMBOL drivers/net/ppp/pppox 0x4c0da047 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0x78cd81a8 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xff9a4fda pppox_unbind_sock +EXPORT_SYMBOL drivers/net/sungem_phy 0x32666852 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x135ec401 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x3ddb27fd team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x4af8b6f6 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x7187f925 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0xb7598090 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xbdc0f3cd team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0xce344c81 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0xe041efa1 team_mode_unregister +EXPORT_SYMBOL drivers/net/usb/usbnet 0x414c8be8 cdc_parse_cdc_header +EXPORT_SYMBOL drivers/net/usb/usbnet 0x8179a714 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0xb36adc57 usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0xf0f2168f usbnet_link_change +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3ee0e475 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x76d8e97f hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x77f42d65 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x79cf63df unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x8dbd2014 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb3d7b3d0 hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb5f24f2c hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb772338b hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0xdf6fb32c detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xed0aedfb unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf4fb9232 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x89c000f2 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/airo 0x1a7ef341 reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0x567c7bee init_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0xfb563da6 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0e2cead9 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x12f6ef79 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x13a71042 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6521a18c ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x742cc925 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x792302ab ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x998d38d9 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa46e8810 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb1affa64 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdc80cad4 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf3529b40 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf5f06740 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x026e9d99 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1aeed0d3 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x35fcc099 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3947362e ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4b7d3143 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x58b8a60a ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x68dd7082 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x73331744 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9dafa1d5 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa0c3bba1 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xac00dc6f ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb610d922 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb66236bf ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcdd76364 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe9787767 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x166b9c4b ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x30814472 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x37020de9 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4338e261 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x981dddc5 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xaa8449b3 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xaf363254 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb4fc40e2 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xba5856be ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb749582 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf723287d ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x04c35810 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x24669ea2 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x27342e9e ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d8f641c ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2fa2f7f1 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3a8b0881 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3abd6138 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4ad39d97 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x69a5ee9c ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8cacdd2e ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9555e9c1 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9c6ae55a ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb35a1f26 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb7932300 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc175af0c ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc348bdb0 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcfde79d0 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xde5398f9 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdf94d62e ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe3d9497f ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf4231366 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf4e21330 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf851c42a ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x022fab4c ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04570d97 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x076018a7 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x083306cc ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b8608ad ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c26003a ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c9ff169 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f9fbec3 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10db3475 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11d401fe ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x198e2b57 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a0f55ab ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a25f69b ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x218445d0 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x274ca7ed ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c32347e ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ead11d2 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f3025eb ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3093f1e8 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x32e2f098 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x337372c1 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x33d1eba5 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a9cd29a ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x41bfaf52 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x41ee2c86 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x43d8cad1 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4485f820 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x44ba95a5 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x44d9ed24 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x450e4737 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4578fa0e ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x485eb5e0 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x49635b27 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ad2d223 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4df83069 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51679472 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x552002b2 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x561471a8 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5be412c2 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c90b653 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5fdd998f ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x60cf2640 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x614e5821 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x62332e95 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x68752422 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ac70754 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6c4f7b12 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6cc81771 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ef2a8d7 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f10c6bc ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x751f5253 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7827c616 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7b22aa71 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7b4e52f9 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7b54eef7 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ce6b0b8 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7edf78bd ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x82c724aa ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x83c2e220 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x84fce887 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x86e16854 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x86e8ac6f ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8e48e9c2 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x90cc0685 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x932acd79 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x948260fa ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9741f52f ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9e15a75a ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa1d3cdd3 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3fbfbe7 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa57af7bb ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa42abc2 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa6b3da8 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaec96205 ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf9ddd01 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2744d8a ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb373a4a3 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb68ca53a ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb973726e ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xba4af31a ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd025905 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc157e951 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc21ca0ab ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc36c1fae ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc5aa258e ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc8ce3ff1 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc68816e ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xccb18acb ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xceeb994e ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd3c4a156 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd907f374 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf23a88e ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf98a1d9 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe028894c ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe3433d2f ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe3a80734 ath9k_hw_request_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe58e354b ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe8253313 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe9dc3e0a ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeaee3ea9 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf03a26eb ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf25e0659 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf2956fa3 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf4323705 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf9f68f26 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/atmel 0x561723cf init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0x68da2d17 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel 0xeffcd249 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x05362d0a brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x380eea10 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3bda9ac3 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x6109e820 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x78a494e1 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x7e347ab1 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x844505c5 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9c985657 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xb539f150 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xc94a723b brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xddd17d00 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xe4931648 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xec02fe63 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x00d5e8d2 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x060f50e7 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x074384d7 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1723ac32 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1d809ab0 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2bca5560 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x52e29c29 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x53fd353e prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5ba0b624 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x826fb083 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x830abdbf hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x87764fdc hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x95cbe30f hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x98fa30c0 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xab3f7cfd hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xad4081bb hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xba7bd1fc hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc5ca8a5b hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc89fef4b hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xdbb53d3c hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xdd98cc3c hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe4d5f95e hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe66e72a7 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe7047f51 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe75c1dac hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf883967e hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x05378b18 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x1c639852 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x1c931fed libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x576b3eb0 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5c082220 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5f0c2552 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5f0ec931 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x6f2fa25e libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x76468f41 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7d1fcedf libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x895a65ae libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x900ff215 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x93dfb4cb libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa2c5bec2 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd09a0c9c libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd0aa8151 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd60d5e98 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd681e9d8 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xdc00af82 free_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf01e6a10 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf537751c libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0045644e il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x057712ee il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x05c2ed5a il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x08d0ae51 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x091b1ad4 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0b6ca2b1 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x127ee7f5 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x171e1eb0 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1896cbab il_force_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1e374a46 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x203d8b89 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x241fd08a il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x25393459 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2772713f il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x27971d9d il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2857af50 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x28b7b186 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2ac93fb5 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x362eae87 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x398fc874 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3bb37ff1 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3fab8c72 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x41267c20 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x43f61962 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4541f8b5 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4bb089fa il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4efde3cb il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4f84ac44 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4fc7703b il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x520e92ec il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x534c0bcf il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5375c068 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x567a967e il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x57a4cc1d il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5c2960ec il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5e139820 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x60441639 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x65d93281 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6eb02324 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6f6adbdc il_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7131d0fe il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7407308f il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x74a57312 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x772a9900 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7c7fb481 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7e822e08 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7ec1daf6 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8057e4d7 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x80a4b11c il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x817a9522 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8912011a il_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8bd7d9da il_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x91272732 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x941d32fd il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x95843d7b il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9759769e il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x99c209d1 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9afb8504 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa08b66d7 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa212ab65 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa5ee0cb7 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa86378b9 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xad1eddd4 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xad5d00de il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xae3f866a _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xae8c34a9 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xaf227fe2 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb0f26f34 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb9799d95 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xba8b1d3a il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbcb8ac42 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbd9baa88 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc2bb87f5 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc4485791 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc4acb44f il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc792cd95 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xca2dfde0 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd1b9378b il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd350b119 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd362526a il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd47010f8 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd494e0d3 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd4ec20bf il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd90f8a07 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdc78bdd6 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe107afd8 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe1f95cb4 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe2946e19 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe3ac1ca4 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe45a2fa4 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe6befb08 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe981fbf8 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xebbe8b04 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf1a1c3f5 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf2d30ae6 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf3ad8891 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf4793eaa il_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfe5b1228 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x1b06ce78 __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x2447a6ab __tracepoint_iwlwifi_dev_iowrite8 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x314a20a8 __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x5e9c24ff __tracepoint_iwlwifi_dev_ucode_error +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x8c8ab242 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x9a1b1df9 __tracepoint_iwlwifi_dev_ioread32 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xdced6db1 __tracepoint_iwlwifi_dev_iowrite32 +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x0c127c6c orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x10fa5cf7 orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x19661981 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x4acfe52d orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x4f4f026a orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5dea5bf1 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5e1f69ce free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x646d1774 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x6e37ede4 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x92ee8eae __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xa2cb61b1 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xac3fee07 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xbafeaa4f orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd9d30cdd orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xdcbc32b4 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xddfee316 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xf875ef9d orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x061ed64f rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x02ce79a4 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x04e8fc66 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x199ad6a3 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1be1018c rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x238bb8aa rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2842f50a _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2a7917e1 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x333b7bf5 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3992c634 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x44028ac7 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4bc339c7 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x54fc53b4 _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x598729b5 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x59d0b3e7 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6be7db8a _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6de9c8ff rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6ee0861e _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6fd2455e rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x70ae7c0e rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x79af69c7 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x85fb7c11 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8c9bc490 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x966c0d28 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x973b42b1 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9808b810 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x99d6d24f _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9cec3307 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaaab8d91 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xab4d716b rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaf6cfa87 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb669d394 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbc3caeff rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc049010d rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc0bbdd89 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc48ab6fb rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc7e7ffe0 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdd8eeac9 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe38470ec rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xea7e572c rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeb13ef86 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf73bfc9d _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xbda3a1ea rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xc1712ac7 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xeedcc71c rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xff2ecd1b rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x30c4d3ab rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x32488776 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x35efc437 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x6056f803 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x07a8b040 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x08802ede rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0a13cf10 rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1035eedf rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x115e693e rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d8dfaef rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x38ae873e rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x418e8099 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4347b130 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x442c45ab rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x44d24424 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x457f671d rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5b1d48a5 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6637c708 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x751c1d55 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7a52a6cb rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x89225c02 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x938d9cd5 rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9a2edcdf rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaf277e51 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbbb46dc7 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc6cd4e87 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcab6ecf3 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcca539c0 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd6ccde0a rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdd422a12 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe088c123 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe58708e1 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x43b73f32 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x5132d1cc wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x69a31e3e wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x7536dcec wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x250bb0b8 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x9b0453db fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xb1ae6304 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x39a93a28 microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x4655e1de microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x66dd0a4d nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xd1e8bad0 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xfd8cfd8e nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x31ed4433 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x53a11b9b pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x628d7f8f s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x6fcf6eac s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xad6b5867 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x021513df st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x05f44c41 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x19cb4663 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x283cccf0 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x33fa694d ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x53a04198 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x685e75c8 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9d32be5b st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb1f95a84 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd89dc0a4 st_nci_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xea26eaf1 ndlc_open +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0472a91f st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x14fb6500 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1aab1630 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2e8bb276 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x39ef011c st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3fa48ccc st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4f9e5409 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5c848ef3 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6864d8b8 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8fd2e044 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x905f1cbe st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa1d51c8c st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb1faaa39 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd9f81cba st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xeb00810f st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xeeed082b st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf7f4fd52 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfb9bf0a8 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/ntb/ntb 0x038341ed ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x0b223c79 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x143de258 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x4a4c6da1 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x504f8c11 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x66132119 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x662c3eff ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0xa22a78bb ntb_link_event +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x9c71cd58 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xb0cb949f nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x50f3486e devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x00e350ca parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x028eda43 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x03f11392 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x06b3c555 parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0x0b7373f5 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x1522bf2a parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x1cf6d662 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x2dc5cfd0 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x2e58dff3 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x36192721 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x3f4bf25b parport_write +EXPORT_SYMBOL drivers/parport/parport 0x408f1787 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x4149b762 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x44aa603b parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x53a1b2f9 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x53cb1c54 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x5c4e93dc __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x5c8a74c2 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x5ce93969 parport_release +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x71448d4a parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x7a1f2a61 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x9139bb22 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xac53eff6 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xb0016d06 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xb2087cdd parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xbb8cd686 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xc9cd5c54 parport_read +EXPORT_SYMBOL drivers/parport/parport 0xde324204 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xe7eed140 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xe9da4222 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0xf1667a39 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xf4bbeb82 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x04cf9f9f parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x803ddf85 parport_pc_unregister_port +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x062aa21e rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x167f6786 rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x1e7fc013 rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x4d3a4941 rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x5a3c015d rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x81bd9aa5 rproc_boot +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x98a28e84 rproc_get_by_phandle +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xab2a6ef9 rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xc4ff49fe rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xfd37d72b rproc_put +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xf8712cd1 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x82cdfd38 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x869b71b0 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xa0b3bc8d scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xe6d2941a scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0b533a35 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x10c25160 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x31abed16 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3ce18345 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x80ad8f3f fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8be66e7d fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9d74d335 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa3e7c68f fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xbe470a79 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd51bdc2f fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xec0c09d5 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf96dcc00 fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x04072cde fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0b8bb605 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x13c074f4 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x15341bf5 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x19dcdff9 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1f672c8f fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2ae97065 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2d3254d1 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2ee4be6f fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4038a268 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x42cc6cd6 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4896bab6 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4967afa1 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4988251a fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x520ae8e4 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5303afb0 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ccc441b _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5df5d996 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5e9e6acd fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x64de7961 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6e12b1a7 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x74b799b2 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x74e5da12 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x81d28a65 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x83a16ce2 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8863fbef fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8af1f083 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8b066375 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8e2c15d7 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x93296fc4 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9845ca46 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb854aef1 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbb79a32e fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbf4c89d5 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc0c953e3 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc6b45c40 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd0a66354 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd2ac4a41 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd731e1e6 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xded02ad9 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe4bf405d fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe8bd924a fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe94fbc22 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe99db7eb fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xec0d99ff fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf383f5de fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf85caffa fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfc0c9952 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfc2335fd fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xff3b2592 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x77a2fb8f sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x98002db0 sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x9fe7f0e2 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xfb05b35b sas_resume_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x0614b70f mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x041a22f1 osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0b16af09 osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0b396a91 osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x111a2b8b osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1a7a6a3f osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x22b8c33c osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2485ae74 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x26c07410 osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2920bdb5 osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x307eda0c osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x383686f7 osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x430b7f15 osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4742624d osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4a5e21c1 osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5233acdd osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x54a82460 osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x58f340bf osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5fba9f11 osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x64fdfcfa osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x69aa5e7c osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6d54eb28 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7db03ea6 osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x824a075e osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x87e3e4bc osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9266df76 osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x960cf0c5 osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x98f9780d osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xad922a25 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc9e21aca osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xca6816df osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcaf92fbd osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcd81d297 osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe42c87d0 osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe4b825d0 osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf7b54f65 osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfe06bc9e osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/osd 0x35334f44 osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0x48e06f04 osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0xb5eb7a4f osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0xbe105ee9 osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0xf28dbca1 osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0xfaafb0ec osduld_register_test +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0eee2b2c qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x257315fc qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x36d94dd3 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4c3dcd93 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4e35d4f6 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5911cd5c qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5cda5caa qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5e9c7dbe qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x81d0c2c0 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x89fcb8c1 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xac389e55 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc72771dc qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/raid_class 0x5473eb48 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0x9251c5ba raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0xc5179245 raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0027f535 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2bd116b6 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5350d0f3 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5a68afae fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5bfd8afc fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x68535fae scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8e066400 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x953b7b5d scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9b5303fa fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa154c885 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfbb9be03 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfdf25152 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xff803985 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x14a97a19 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2bff35d0 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x46abb599 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5693043c sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5832d882 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5ed52f6c sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x674bdb5c sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6a649116 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7611f081 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x78dc2c26 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7e59edc6 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8941177e sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x89f50728 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8cc14988 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x92a23c29 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9d73b668 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa169ff05 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xadd100b0 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaff31b5f sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc60cfb7a sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd6c89eeb sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdd2597b8 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe12ce4fe sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe1a1ea99 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe96952df sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf3c687d5 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf5515eee sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf80aec23 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfd0b70eb sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x015c2582 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x279400b5 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x8140ddad spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xb2090fb7 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xd3baaa0f spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x2bb504c1 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x379e5017 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x43804e94 ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x6660d3dc ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x756886bc ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x91ac6835 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xd0eae483 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x06034eb4 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x07b33070 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x08f7350e ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x0b085cad ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x1d89c061 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x2410f1bc ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x24f30e14 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x2ae0f551 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x5e3e7b40 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x609fe147 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x6e152476 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x8449dca1 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x9045328d ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x906d278e ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0xa5a9cb8c ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0xac451e0a ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xc7ef579f ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xd5e726ac ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0xe72e7c34 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0xf8ae01a5 ssb_bus_powerup +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x01710daf fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1fb1c2a7 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x26ea40fe fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3f2d4e49 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x425ab46c fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x43484792 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x46445055 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x53ceb310 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5564c711 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x59bba5de fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5cb7538d fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6be4fafb fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7ce8f077 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x90f1c1ec fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa1a7a5ff fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa60cda17 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb127451a fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb593b324 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc2f7bb10 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcafdaf2b fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcc0cbdd7 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd0417ffe fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe5e653e1 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xebe7b9e6 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x9c8a5c01 fwtty_port_put +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xf64af9ca fwtty_port_get +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x779e21e6 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x849ec501 hmc5843_common_remove +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xb3c50795 hmc5843_common_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xd7a64d99 hmc5843_common_resume +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xfee7de59 hmc5843_common_suspend +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x0d542a07 ade7854_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x5dad0fc4 ade7854_remove +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0x9653844d cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x575c00a7 most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x00bafad9 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x00bbdd45 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x034eae6f rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0b669b0a rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x136afc74 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x147f4ed4 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1519fca8 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x17322bf5 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x17d39d2d rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x19511ea4 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x19ff78b6 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x23190d4e alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x25094772 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3179faf6 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3255fe95 Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3f68597e notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x40af2ad8 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4254ef78 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4765c8ab rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x48707a44 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x50bcc0f1 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5662b439 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x59872354 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x63bbba1f rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x66597aa8 rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x67a7e46d rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9071f086 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x97bb12f5 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x981205b9 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x99988d40 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa632506e rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa651c033 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xabe0b1f5 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb3053f0e rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb457d09c RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb5d1bcbc rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb5db3d90 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc02613d8 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc36b76f9 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc3c32fa8 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcd3275b3 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd4d8b652 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdacbebe6 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdbc177b3 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdd1a4df4 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe4bfc66f dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe7c6ae26 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xef6796ab rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf2fdbc2f rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfd38b03b rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x06d6afb7 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0dffbce8 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f099f61 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x14108a27 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x142aa3d2 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x17f7fdc8 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1a7d73ba ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1bdd417e ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1e829295 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2bc87b9a Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x33f26e17 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3464ce5e ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3f3dd35d ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x44263916 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4595f2ce ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x45f7d1c3 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4880a029 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4d4c026f ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4feaaa07 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5139bfc0 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61ea895d ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x66d82e34 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6d81a7cb HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7457d72e ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x76650112 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x779893c0 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7e7dbfd1 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8369bef9 DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8c6b2bba Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8ed7431c IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x91721dd0 DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x966c6b6b ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x97ea2205 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9959c6d8 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9961bf03 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9b800d81 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9c7cb021 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb14680b2 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb22030d8 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb3b7a633 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb5318556 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb53b6832 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb91f9774 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb925be81 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbf129dea ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xda1b9228 ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdfe4384b ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe0178e71 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe07936c9 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe0fc0ba2 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe41fcdb7 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe58c5280 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe78d653c ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe8669dac Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xef02a523 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x05bc9123 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x07807153 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x156b9d43 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2328fdf7 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2363c314 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2e2a4fd5 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3526bbe9 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x50d0049d iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x556851f8 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5868be6f iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x59a4db8e iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5cfc8e1e iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x60c4c24b iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x63ddc79e iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6ca58f4f iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6d1d99dc iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x76dbebfe iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x84098665 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x877595d5 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8e451dd6 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb79eef17 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbb476af6 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc964f7a0 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd613c460 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe15031b3 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf27a6cf5 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf3f15232 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf8261b7d iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/target_core_mod 0x018ce15f transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x137e267b target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0x2b16ef0f target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x2c67bba1 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x2d9d8d29 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x2ea8696d transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x3193d8db target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x35df0d2e transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x38fb0a1a sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x3b79e306 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x445144d0 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x45c8b3ce core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x4ce2dd53 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x4fcfdebf core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x5886cfe7 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x58a0858b core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x5f0fc254 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x5fd05eaa target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x60a4598d sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x63bf44dc target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x6807cdf9 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x6b48b6a3 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x700a2da8 transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x7465f7ce target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x74de11fa target_get_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x85fb8e6a target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x87518926 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x89b1fce7 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x8d318b1f transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x91a05f98 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x95332112 target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x971189d3 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9d765bd4 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x9db735a3 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa5076ab0 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xaa7725f0 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0xaea1d487 target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0xb0ee1ad0 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0xb73bff4a target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb9a5309e transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xbf75dffd target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xbfe63cfc sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xc4504719 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc484268a transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xc4afc5ed target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xc54012f6 target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xc6581831 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xcc069cd6 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xcd2118c9 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xd0917c2c transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xd2468b54 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd5fdd1fb transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xd92564ab spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xd957ec94 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xdcf5bf96 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xddb9929e spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0xdf0e59ee transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xe0cc8528 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xe150c6eb target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xe1630149 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0xecf1be40 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0xed27f7fe target_put_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf0e5e342 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0xf50c2ba1 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf69d8cad sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xf6be29af transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0xf85bd68e transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xfa00cde1 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xfca7d9d0 transport_init_se_cmd +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x765a279c usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x3f57dc02 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x0c9586c1 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1868171e usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x403c9f0f usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x510e9c36 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5a44cffb usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5ce99d8a usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6f703bf1 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7c8928af usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc2ef2067 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd2c139f7 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe2408df5 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe826fd67 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf6875dc6 usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x4ea8f034 usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x8a65866f usb_serial_resume +EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user +EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x3c71c418 vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0x5fedea44 vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user +EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/video/backlight/lcd 0x47bf2d81 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x69a87e5a lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x7f8fae33 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x95765d8c lcd_device_register +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x02547481 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x37a55976 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x595dcdac svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x606a6798 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb90f1f70 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd78be60a svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xfd3d51b0 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x06da84cf sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x7d0ceb55 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xe96da348 sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xbf29a43d cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x1bd03d2f matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x5d62f966 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xcbf4bb70 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x1040fa43 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x40bcf98a DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x66bd9c32 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x817bb0e4 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xd5e039c5 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xc6e2a131 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x277070a5 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x41c52b59 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x89082804 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xfed47b4b matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x7ed848d9 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xe36200a0 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x1ac5a71b matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x563c50d1 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x94231309 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x95b8b034 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xa0d115bf matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x763efb2e mb862xxfb_init_accel +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x2b2e69b8 w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x6dcb5f81 w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xf127520f w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xfb399b1c w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x3b47dc11 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x42326e31 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x9ee357f3 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xaeb13850 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0x2891a5b2 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0x5f133142 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x670133a9 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0x93ef766c w1_unregister_family +EXPORT_SYMBOL fs/configfs/configfs 0x0affce88 configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x2ad67713 configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0x60275af8 configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0x612cb169 config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x618785e7 config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x6b0e183f config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x817c60e1 config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0x9712d5d7 configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0xad67985f configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0xb7c0fe74 config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0xb85995db configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0xc5cf9709 configfs_unregister_default_group +EXPORT_SYMBOL fs/configfs/configfs 0xdd9b29e7 config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0xe4bf2567 configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0xf9fc0931 config_item_set_name +EXPORT_SYMBOL fs/exofs/libore 0x1f07d427 ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x54227a80 ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0x6dada6a6 ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0x74159f18 ore_write +EXPORT_SYMBOL fs/exofs/libore 0x7b308cbd ore_create +EXPORT_SYMBOL fs/exofs/libore 0x82d9d0bc ore_remove +EXPORT_SYMBOL fs/exofs/libore 0x8df9e73a ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0x9f9b4663 ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xb64ed1d2 ore_read +EXPORT_SYMBOL fs/exofs/libore 0xe8633081 extract_attr_from_ios +EXPORT_SYMBOL fs/fscache/fscache 0x006d6bd5 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x01035aa3 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x04f24f68 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x0d391365 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x151df93e __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x184bb41a __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x29188f22 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x2cf5b341 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x334bd071 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x339704cf __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x4af74e33 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x4dbce31f fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x4ec6bde3 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x57cfe893 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x5da8eff6 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x6d06ecf6 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x72453d95 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x798895f1 fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x7ba6f778 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x7d914854 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x7fbe5e3c __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x8246541b fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x82c22818 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x8389894e fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x87f00265 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x8a4fa4f9 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0xa4562ca0 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xa7cbfa26 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0xacddfcaf fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0xbad8b19f __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0xcbe3a494 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xd5c613bb __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xd833ee7e fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0xdb146d7e __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xdce91de6 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xe16c3f52 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xe973a32e fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xee75ed90 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0xf0764445 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0xff612d9f __fscache_maybe_release_page +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x70fb913b qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x9829771a qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xb104a9ab qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xcb1556f0 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xf690bc08 qtree_delete_dquot +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-ccitt 0x1a703ba1 crc_ccitt +EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table +EXPORT_SYMBOL lib/crc-itu-t 0x6d356209 crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0x56329ecc crc7_be +EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd09b2cba crc8 +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c +EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed +EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of +EXPORT_SYMBOL lib/lru_cache 0x30b56256 lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset +EXPORT_SYMBOL lib/lru_cache 0x4812f064 lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used +EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del +EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get +EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create +EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set +EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find +EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put +EXPORT_SYMBOL lib/lz4/lz4_compress 0x0c222eb5 lz4_compress +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x682a23e0 lz4hc_compress +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0xefc78e77 raid6_empty_zero_page +EXPORT_SYMBOL net/6lowpan/6lowpan 0x1bd161c9 lowpan_netdev_setup +EXPORT_SYMBOL net/6lowpan/6lowpan 0x51d05d77 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0xcf3a8b2b lowpan_nhc_del +EXPORT_SYMBOL net/802/p8022 0x723ef5d6 register_8022_client +EXPORT_SYMBOL net/802/p8022 0xfd05174f unregister_8022_client +EXPORT_SYMBOL net/802/p8023 0x13f0992b make_8023_client +EXPORT_SYMBOL net/802/p8023 0x6a0dcc2e destroy_8023_client +EXPORT_SYMBOL net/802/psnap 0x8928e27e register_snap_client +EXPORT_SYMBOL net/802/psnap 0xa3f48f24 unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x0307966d p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x046c2437 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x0eafffd5 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x1dad0543 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x33c62190 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x35fa8e92 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x3aeaa2d6 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x3e6c4022 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x4343d1f5 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x448c94dc p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x45aeffb7 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x53d58a07 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x56e22e9a p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x5968bf98 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x5a744033 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x6698dc46 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x6a4c4db3 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x6c40d83b p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x75f14aa1 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x76b11809 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x77a1c31a p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x82f0e99c p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x87f73ff5 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x881b075b p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x9570aeed p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x95a0a8c4 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x9b87f358 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x9c41c426 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x9e84b535 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xa2cbfc53 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xa3775699 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xb6bd12a0 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xba0286ba p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xc08c6450 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xc304136e v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc9938dbe p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xd026e243 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xde6f3918 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xe10e0a99 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe5b4e09c p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0xeaebd617 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xf9282cfc p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x13be53f0 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x358ca021 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x82f53f01 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xa7c07320 alloc_ltalkdev +EXPORT_SYMBOL net/atm/atm 0x036d572e atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x1c862f22 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x2bf920fe vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x43210d74 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x539b3486 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x908b8b5e atm_charge +EXPORT_SYMBOL net/atm/atm 0x918194e6 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x93ce0645 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x99faeddf vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xa0172a39 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0xa6c66da0 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xbd50226f atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0xc1b7a2b8 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xca87b453 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x0eb842de ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x34456502 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x3d0c0743 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x6cc5d5ea ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x6df03f8f ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0xaab8ec86 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0xb03def75 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xe21e41e9 ax25_listen_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0a864511 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x17ebf6f8 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x17fc7ba8 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x21db0355 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x25f9befd bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2b1edff4 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x302ec8d3 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3ef3551b l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3ff58e89 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x408616ed bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x45160265 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4cdb1275 hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4e947e82 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x58932cce hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x67c38bb1 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6ebe2317 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x70f6ada6 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7a056b51 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7a9b28e8 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x84b4acaf hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8e5aa26b hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x92337f56 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9456905f hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x989ad480 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa55f11a5 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb31338ae l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb7d7798e bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbb3e21f7 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbf8dd955 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc5f3089c bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0xca7f0400 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc466e5f bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcd40051c hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd03b9851 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd2700658 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd3e28680 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeeaef9ce bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf0191f49 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf71d0a16 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfcdca118 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0xff72c586 l2cap_conn_get +EXPORT_SYMBOL net/bridge/bridge 0x03eeb6d4 br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x7829a989 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x88c2987d ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x9ec72069 ebt_register_table +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info +EXPORT_SYMBOL net/caif/caif 0x37c7f1c8 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x3884ca5e cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x82eee760 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xa1afabc0 caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xe6671257 get_cfcnfg +EXPORT_SYMBOL net/can/can 0x151c0efc can_rx_register +EXPORT_SYMBOL net/can/can 0x38799204 can_ioctl +EXPORT_SYMBOL net/can/can 0x68c5f85a can_proto_register +EXPORT_SYMBOL net/can/can 0x76cfce9f can_proto_unregister +EXPORT_SYMBOL net/can/can 0x8162eb78 can_send +EXPORT_SYMBOL net/can/can 0xb54f86d4 can_rx_unregister +EXPORT_SYMBOL net/ceph/libceph 0x08bb2319 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0a2263f3 ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0x0c5307c1 osd_req_op_watch_init +EXPORT_SYMBOL net/ceph/libceph 0x0df2e934 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x0e00c0ba ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x0f0aab6c osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x0f2f5907 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x146ff945 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x1c7875f8 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x1db8368a ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x1dfce853 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x1e13a0dc ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0x2033daab ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x21c60751 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x24d897df ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x28d9d84d osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x2b07e77f ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x34225bab ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x34af8968 ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3af06591 ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x3b75c6b7 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x3b9387f5 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0x419cb09b ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part +EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x475fe8cf ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0x48603697 ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0x48daa2ca osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x49a8336d ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x4ad772ec osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x4f6f68e5 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x4fd8adf8 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x5056085a ceph_oloc_oid_to_pg +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x55751755 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5b48ccaf ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x61071785 ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0x6254ca5d ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x69e06a1d __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6e722c6a osd_req_op_cls_response_data +EXPORT_SYMBOL net/ceph/libceph 0x6e83bc20 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x6fcdafef ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x703bc5b3 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x809c108c ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x82f83975 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x87dbd531 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x8db14464 ceph_monc_request_next_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x8fcc58b5 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x90aa03ff ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x943988c6 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x98ff150d ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa23a52c9 ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xa4e05958 ceph_monc_do_get_version +EXPORT_SYMBOL net/ceph/libceph 0xa4ef26ad osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xa6251879 ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xaa11ffc4 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0xadbaf7e3 ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb1590630 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xb45989d8 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0xb4a3f002 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xba17e23f ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xc119e657 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc56c55eb ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xc5a7a797 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xc611e2a0 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xca011496 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xcfb7cc61 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xcfe8eab4 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xd2a8e218 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd2e1a22b ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xd7acd83f ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xdbfa3b1c ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0xddb869f3 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xdeb22bd6 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xe162dbc8 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xe21e4fbc ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xe3b042ca ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xe8ea3f6a osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xeabbc8a3 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0xec37100a ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xeca7fcb3 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0xee3c34b4 ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0xf0b34391 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xf164bd38 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xf35cb4d9 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xf4659ee6 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0xf5283719 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0xf5fc7227 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xf91d066b ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xfea4fd7c ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0xffaeb923 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x35d84632 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x97fd947b dccp_syn_ack_timeout +EXPORT_SYMBOL net/ieee802154/ieee802154 0x0bcdc9b2 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x1dca4543 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x2af59347 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0x616193af wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0xc729f8ca wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xfe7b2ed6 wpan_phy_for_each +EXPORT_SYMBOL net/ipv4/fou 0x0738eb38 gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0x3106aeb4 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0xa3114cda fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xd0750778 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x05c2a1bf ip_tunnel_dst_reset_all +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x1d99f02d ip_tunnel_encap +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x473cab47 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x9e499a14 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xc4ea2886 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xd4fbce4d ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x23f87f0c arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x2ebe8995 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xc925c466 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x13f9fdbf ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xd20258c1 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xf3e114b4 ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x2ae461c6 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0x6a064d24 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x0246f6ca udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5e2152d2 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9bb10c18 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xaf3dff42 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xff68c90f ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x24668ff0 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x428650f6 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xe1aa32cb ip6t_do_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x85b26a38 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0xc6e3e650 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x358e4a1a xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x47077d81 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x04e56471 ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x3e5baf4e ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x8972caf8 ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xb5ea2230 ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xc35ab695 ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xca8e54bd ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xf101ce65 ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xf521626d ircomm_open +EXPORT_SYMBOL net/irda/irda 0x0064e0ea hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value +EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service +EXPORT_SYMBOL net/irda/irda 0x0a238f0b irttp_dup +EXPORT_SYMBOL net/irda/irda 0x0c8b0a87 irlap_close +EXPORT_SYMBOL net/irda/irda 0x0f610477 irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0x1e6cade0 irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0x207bcdde alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0x2fe88569 irda_notify_init +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x35959f2a irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0x38051d0b irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0x3e56064f hashbin_new +EXPORT_SYMBOL net/irda/irda 0x42035268 irttp_data_request +EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value +EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service +EXPORT_SYMBOL net/irda/irda 0x4faa45d5 irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0x56c2ea1b irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x5c6196b0 iriap_open +EXPORT_SYMBOL net/irda/irda 0x5ca6679e irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0x601bda46 hashbin_remove +EXPORT_SYMBOL net/irda/irda 0x6133b4b1 async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x6b5fbcef hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0x6e0ab3c7 irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client +EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client +EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x81160028 irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0x85d88217 irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0xa1d41e58 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0xa91e5119 irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0xaa557515 irias_new_object +EXPORT_SYMBOL net/irda/irda 0xafec079f async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value +EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute +EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request +EXPORT_SYMBOL net/irda/irda 0xc68e43be irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0xcc0bda30 irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0xcead7dbb hashbin_find +EXPORT_SYMBOL net/irda/irda 0xd2108314 hashbin_insert +EXPORT_SYMBOL net/irda/irda 0xd68db1db iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma +EXPORT_SYMBOL net/irda/irda 0xdc10d10d irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0xe3199fd3 iriap_close +EXPORT_SYMBOL net/irda/irda 0xe3463529 hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0xe3bde43e irias_insert_object +EXPORT_SYMBOL net/irda/irda 0xebc6d0ff irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0xeecaa7ff irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0xef069c2e irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0xf0a694a1 irias_find_object +EXPORT_SYMBOL net/irda/irda 0xf5876b95 hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0xf9996863 irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0xfda362be irlap_open +EXPORT_SYMBOL net/l2tp/l2tp_core 0x9cdfdd38 l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0xcfaca916 l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x2add4932 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x35347da9 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x4a8c426e lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x77f465fa lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x88e5b0b9 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xc158d626 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xd83d26b7 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0xff791c2e lapb_connect_request +EXPORT_SYMBOL net/llc/llc 0x27ebc086 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x65b8064a llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x93b0685d llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0xa95da2c7 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xb2c74d2b llc_sap_open +EXPORT_SYMBOL net/llc/llc 0xc4ae3238 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xe6aa3d3d llc_sap_close +EXPORT_SYMBOL net/mac80211/mac80211 0x066083b8 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x078766da ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x093bf376 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x0bd609f2 ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x0f5e1034 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x11640eaf ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x118a2f3d ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x136bc57d ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x179bf1d1 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x18ad9c4c ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x1e16776e ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x1fb5d9af ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x2582296b __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x2a5438dd ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x2a98e7fc ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x2b96fa86 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x2cf9e0ea ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x2d506025 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x2fcc0979 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x324e0b62 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x32b6f182 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x38d2927a ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x41678057 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x419c0202 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x42212106 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x4a5a876f ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x4c2b011a ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x4d560e43 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x4e8dea1e ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x503025f9 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x50ff6eec ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x55f97e4f ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x569b5e78 ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x578101db ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x5806d431 ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0x5ce8f98e ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x5dc4d558 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x5e8d6898 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x734d3ef8 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x760b21c6 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x8213be74 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x826e67af ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x88b39006 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x8f248aec ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x93c3277f ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x945c41e3 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x95af28f0 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x9d868723 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x9e1b7cb5 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x9e909759 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x9efe2cbb ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0xa0341e0a ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xa470b72d ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xa5bf92ad ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0xaec37457 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb342f184 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xbc4abc74 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xc00a2cd8 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xc02974df ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xc16838e5 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xc4b4b0c2 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xc76939e2 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xcbb3406c wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xcc3cd07a ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xcd193039 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xcd706fab ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xcf5c322a ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xcf8fd5d4 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xd2c504ad __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xd4f160a6 ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xd90d86a0 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xde7d2204 ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0xdea8789a ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xe047c0bc ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xe0bf359c __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xe5199caf ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xe581f93c ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xecd06540 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xed8955c1 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0xef65f0ae __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xeff2c60a ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xfaea3265 ieee80211_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x11a01114 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x4aff0ba3 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x7d5d54d0 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x8af61ec6 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xbbf5c0c0 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xde12552b ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0xe2f158a1 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xfe1e8360 ieee802154_wake_queue +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1fe43439 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2cf8f7b9 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3fdd3acb register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4fc257a1 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x637a9fce ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7fbca0f6 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x848e26f1 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8a6a38f0 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9782651d ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa404393e ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xea0d42ed ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xeeb51b3f ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xef21a7fc unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf4eceaab unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x612293e1 nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x89605d6e __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xcbfb40c3 __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x4da5c43c __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x97c454f9 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x991d81c0 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xac2291c5 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0xbab8c773 nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0xbddf33c2 nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/x_tables 0x20178b3c xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x253e8b44 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x621549e7 xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0x77b6b7db xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x82457150 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x91ae512a xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xb3a9e964 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xc02b7256 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xc816b820 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xf96786c5 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0xfb2791f9 xt_unregister_match +EXPORT_SYMBOL net/nfc/hci/hci 0x010d5acc nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x0b837f92 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x0cb32982 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x130bd4d9 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x254d8515 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x2efb0177 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x4466bbf9 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x482f93f2 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x4bb7a2d3 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x6043002a nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x646b3dc7 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x97256487 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0xab96222f nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xb17c4dd3 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0xb2289674 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xbd23c05d nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0xc7f516c5 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xc87588bd nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xdb1c3bee nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0xdd5ef669 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0xe629183c nfc_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x0532c002 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x05f6936e nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x1bf5863d nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x1c63c8f7 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x1ec59a1f nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x236ff7f5 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x2435bf0e nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x253e10f7 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x29fe00f3 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x3e725e45 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x50ec3166 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x5f072720 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x6157273a nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x80f2bd86 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x8c0af8ce nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x913cd8fd nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x942322a2 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x97661f50 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xab8ed542 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0xaecc03c3 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0xaed21d5f nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0xb12ebbba nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xbdec691c nci_get_conn_info_by_id +EXPORT_SYMBOL net/nfc/nci/nci 0xcd12ed86 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xd340a008 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0xdaf07e98 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xefb59047 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xf9dae43f nci_hci_send_event +EXPORT_SYMBOL net/nfc/nfc 0x05661049 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x084c73ac nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x08956770 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x0c9c7b63 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x16f5904c nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x35197ac4 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x3e6c934b nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x415f32f2 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x4394b22b __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x51d92170 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x596dc51f nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x5fc62891 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x724d0b98 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x898a7058 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x92ca858d nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xad7cffb2 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xade52665 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xadec5ff3 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xb0afe619 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xb9f0bc38 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xc1044735 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0xda4c1cea nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xe7329bd0 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0xff5e0018 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc_digital 0x35f7e269 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x423a8011 nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x5591352c nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xdf23e16e nfc_digital_unregister_device +EXPORT_SYMBOL net/phonet/phonet 0x0b81aec4 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x3417393b pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x43661454 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x556af044 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xab3db0e5 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0xd665ba25 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xe6f9d65d pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0xfc81c77a phonet_stream_ops +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x0673aa8d rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x081daa9c rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x168591e7 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x392cd77c rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x3cfb61a1 rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4d0c249f rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x5ac27b86 rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x7650ce12 rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x80ffd018 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8ea75d31 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x90c4264b rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xaba59bb6 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb5c33f99 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb69af903 rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xbce391c3 rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/sctp/sctp 0x01f887f2 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x05945a51 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x599cfe55 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x9996bc31 gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x0380a6e4 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x4d3dbb39 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xc86d3c5a xdr_restrict_buflen +EXPORT_SYMBOL net/wimax/wimax 0xb9ec2e5e wimax_reset +EXPORT_SYMBOL net/wimax/wimax 0xcd527c29 wimax_rfkill +EXPORT_SYMBOL net/wireless/cfg80211 0x05955c7a cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x06c8477a cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x08f6ce19 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x100d237c cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x198ebb40 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x1be8334a cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x1cb94542 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x1d2aa8a8 cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x1eabc1f0 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x266b19fe cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x26a3dda2 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x28705d9e regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x29d4b862 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x2fdbe587 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x302e18e8 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x318d449b cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x33987020 ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x3433b86e __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x38db5a6f wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x39d6e159 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x3d5a71a4 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x3e61fc5f cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x3f449b5a wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x43faae34 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x47671310 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x4928d07b cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x4b39be6d cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x4e944475 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x51a5c680 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x6e4c7da1 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x74238252 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x7770ef52 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x7815f20e cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x78bfd028 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x79c187d5 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x7a3d7fd8 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x7a57e3cc ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x7b91e574 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x7cd5b97e cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x7d75162f cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fcc03b0 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x830d1dad cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x838a3346 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x86a9dc4a cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x88d7c343 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x89efa281 cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x8bbc3e2e cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x9010129b cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x91d7a142 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x9993ba61 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x9c2a03e8 __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x9cf6a240 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x9ea45c02 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0xa1425906 ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xa47c870b cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xa547aab4 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xa63baf7e cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xa793b1fc ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xb0a2c454 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xb1c24a9c cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0xb2a72513 regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xb3ef5783 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xb424a3a8 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xb4e6cd4f cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xb80e4192 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xba750204 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xba99b476 ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xbba65334 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xbd288a78 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0xc2bf5004 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xc75c3e9e cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xce4b4bd0 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0xd2c21939 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0xd3320934 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xd50b0a22 ieee80211_ie_split +EXPORT_SYMBOL net/wireless/cfg80211 0xd932c6fe cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xe1e16265 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xe4cd07c0 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe5c68a6c cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0xe5ff4c48 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe93675ee cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0xecb610af ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xefd8e61e cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xf5e588d2 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0xf946d2fd cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/lib80211 0x3bd63405 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x5045adaf lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x66de539a lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x99cc8e79 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xe7bb8685 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xf4865663 lib80211_crypt_info_free +EXPORT_SYMBOL sound/ac97_bus 0x89b6acf3 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xa7000415 snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl +EXPORT_SYMBOL sound/core/seq/snd-seq 0x23c6f7a9 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x4ad428be snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb805e128 snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe39a5e4b snd_seq_kernel_client_enqueue_blocking +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0xe4194b7d snd_seq_device_new +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x072d978b snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x13a17752 snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x2eed26bf snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x4d5ca523 snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x592f6e9b snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xd7c7afcc snd_midi_event_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe60fb228 snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xecbde43c snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x8e4563df snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x0388a368 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x09b8f6bc snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x0c11ca6c snd_card_new +EXPORT_SYMBOL sound/core/snd 0x0f3d9a08 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x0fb5fd8d snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x14344c08 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program +EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer +EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL sound/core/snd 0x1fbb2cd6 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x2810263f snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x2ad3776e snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0x2de0ab18 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x2f0d12e5 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x37c7a698 snd_card_register +EXPORT_SYMBOL sound/core/snd 0x388f670f snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x389b837d snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3cba77e7 snd_component_add +EXPORT_SYMBOL sound/core/snd 0x43c578dc snd_register_device +EXPORT_SYMBOL sound/core/snd 0x450ff970 snd_card_free +EXPORT_SYMBOL sound/core/snd 0x48cbb575 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4f24aa94 snd_device_new +EXPORT_SYMBOL sound/core/snd 0x525b4370 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x5fed454d snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x60f16a9e snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x617fce38 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x72620266 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x7d286c09 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x7e6bfcfe snd_cards +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x86cb7c56 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x939883a1 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0xa348f217 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0xa7506251 _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0xad025167 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0xad2b21da snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0xad747974 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0xadf54cc3 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xb1cfdb21 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xbca28f69 snd_info_register +EXPORT_SYMBOL sound/core/snd 0xc1d178d4 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0xd2a4098b snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xd6be2aa2 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0xdca7c4a7 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0xe9a5350d snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0xee097715 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0xeec215d3 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0xef138e6d snd_jack_report +EXPORT_SYMBOL sound/core/snd 0xef1eac44 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0xf1bdddd4 snd_device_register +EXPORT_SYMBOL sound/core/snd 0xf84f5ac8 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0xfb50888f snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-hwdep 0xd189c9d0 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x06b310c9 snd_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x0a8f4694 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x11f46c18 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x15a1d549 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x18676dd3 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x1c779216 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x253182ba snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x2ceb7df7 snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0x302da660 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x34e8421a snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x3aaf9068 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x490a79f6 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x573a6a09 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x574162f1 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x5898dcba snd_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x6534e6e9 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL sound/core/snd-pcm 0x68af40f3 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x7a50baef snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x7f465b6d snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x82c1eec7 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x845cb5ce snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0x863ce2cd snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x871f39de snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x87633df8 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x88066ae8 snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0x8c2a3e11 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x8d7444d2 snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x97ce56af snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0x9c5fef0d snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x9ede5b31 snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0x9f4a5e9a snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xa53fbf4e snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xada713d8 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0xb0331b5d snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xb3ab4da5 snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0xb5424dfe snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0xb85b1ad1 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xbaa7b719 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xbc492b0d snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0xbe4d13ea snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xc11238b3 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0xc9d3ab38 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xd0b317b9 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xde0a65d4 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0xde28c01e snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0xe3a456de snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xf5842a9f snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0xf9d3dda7 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0xfb84fce2 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x01126e49 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x014d476a snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x10a29be0 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x20bae4fc snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2fbbb688 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3de258f2 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x42e7ef33 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x447385dd snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x61543a2c snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6932da94 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x71feaa22 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x74ed2e66 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7fb6af48 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x835ffc89 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x90070771 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x97380df4 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa2e76da5 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbc1a6618 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0xef87dd62 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-timer 0x049c8867 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x0c4ac899 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x1ea29764 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x25cc86e8 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x27d76a38 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x5e3acdbc snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x656388f8 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x7a1eca78 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0xa8f9c8a9 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0xb8943274 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0xdb6a827f snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0xf35c1e82 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0xfabe3b92 snd_timer_stop +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xba3d0546 snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x0fedbcea snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x262ec1b5 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x55178bb5 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x88c68ae4 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc186e857 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc9f99438 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xcb09e3af snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd75faa26 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xdeda9ce3 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x39ab4e2e snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x42f3d4e5 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x53bfa14f snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x66ee0594 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x72d45c8f snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9067a850 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc38fdcea snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xec09230f snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf912cb41 snd_vx_dsp_boot +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x03b2cab7 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x180ae917 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2201d897 amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x225483e2 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2f9d465c amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3fff690e amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x47291775 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x49d9e5a8 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x513c0f39 amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x520ed289 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5573e3c2 snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5977ef5f amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6e391828 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x727c5246 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7aaac69f cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7c34073a cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x86b01631 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8d1c3d8d avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x90ad54a7 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x99328b08 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa4a40e02 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa59269e0 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa8a647f8 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaabda014 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xab3b1306 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbb063845 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbe8da4d3 snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc132f7bd cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe34d9a30 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe35cc514 amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf2a99bbe cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf5ff6e0a amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x7fd1a45f snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xa2d9cfbf snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1506387b snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1c4c126e snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2401cda2 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3d9e234b snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x52e75b2d snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7e996a5f snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x89899653 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb609f8e5 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x05e12f60 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x4a4496c1 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x63908106 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xc66e0616 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xca4d5941 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xd06befbf snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x067055de snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x6bc57239 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x9b00d4ea snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x9c83d0a0 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xf472b441 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xfaa7ec70 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-i2c 0x0eeb0633 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x66c61adc snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x7699d7f1 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x818b6772 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xa380b242 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xb45d931a snd_i2c_probeaddr +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x151c58ed snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x1c528150 snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x2144ec47 snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x40a29e22 snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x4918139c snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x668b1c41 snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x9d255678 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa71499bc snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xc506ea9c snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xfe4745cd snd_sbmixer_new +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x18b1aa73 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1c3deff9 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x374dc298 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x37908d2e snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x44a0be3d snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x473a3c32 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4b37f7dc snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x80cfa12a snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x83d7e115 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9059736d snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa40652dd snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb8b02fd5 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbc023be3 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbef7c094 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd9bc2c47 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe0040234 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfed334ad snd_ac97_update +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x17d6f2e4 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x2f0baba9 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x376ecb25 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4cde7a59 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x52245052 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x788b6b0b snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x869e53f7 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x8b398070 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf80181a2 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x2b51e128 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x571f30e1 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xdcb3ffc0 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x069f554f oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0f018532 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1d8bf30c oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x21659ba2 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x27fbe455 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2905e184 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2dee8473 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3d3fee12 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x66126605 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x66df45fa oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8de214c9 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x91d61535 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x98216319 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9bd0643e oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa1ac9885 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb5c9a57c oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbba8466f oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xccbf1da6 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd74c6528 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf1aa96ad oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfd2e7c65 oxygen_pci_remove +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x165735dc snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x6d8f9166 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xa042b517 snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xe675dd78 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xf9fb87e0 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x2956ee0f tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x4aa24119 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/snd-soc-core 0xc9c1ce8b snd_soc_alloc_ac97_codec +EXPORT_SYMBOL sound/soundcore 0x260a38f7 sound_class +EXPORT_SYMBOL sound/soundcore 0x4b249757 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x4f1ef67b register_sound_special +EXPORT_SYMBOL sound/soundcore 0x597f5d35 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0x9c7d3a12 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0xc97eef8a register_sound_midi +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x336d1d9e snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x3557352e snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x833326ca snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x92bdc596 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xb5b3b03b snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xcce3bdcb snd_emux_register +EXPORT_SYMBOL sound/synth/snd-util-mem 0x1d355e15 snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x48289adc __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x5cbd38d7 snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0x641d5856 snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x6c68bfef snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xdd72498d __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0xdfdb3917 __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xfca68fba snd_util_memhdr_free +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x8f3879f8 snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL vmlinux 0x00000000 TOC. +EXPORT_SYMBOL vmlinux 0x000c3f56 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x000e83e9 file_ns_capable +EXPORT_SYMBOL vmlinux 0x001243fa input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x00226792 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x003f7911 passthru_features_check +EXPORT_SYMBOL vmlinux 0x00432506 rt6_lookup +EXPORT_SYMBOL vmlinux 0x004d88df copy_from_iter +EXPORT_SYMBOL vmlinux 0x00609794 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x0070cd1f queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x0085e1f1 __do_once_done +EXPORT_SYMBOL vmlinux 0x008b5982 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x00aca98f buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x0122fb79 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x012a97fc xor_altivec_4 +EXPORT_SYMBOL vmlinux 0x01431aac submit_bio +EXPORT_SYMBOL vmlinux 0x01592922 ihold +EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer +EXPORT_SYMBOL vmlinux 0x0172d29b inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x01790e94 csum_partial_copy +EXPORT_SYMBOL vmlinux 0x01972a8a netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x019f437a iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x01a9b9d5 __secpath_destroy +EXPORT_SYMBOL vmlinux 0x01ce3433 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x01d517b7 dev_add_pack +EXPORT_SYMBOL vmlinux 0x01e12269 elv_add_request +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x02233086 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x02290166 scsi_print_result +EXPORT_SYMBOL vmlinux 0x023a074a hvc_get_chars +EXPORT_SYMBOL vmlinux 0x024bf827 radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x024d2064 twl6040_power +EXPORT_SYMBOL vmlinux 0x02500dd7 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x0258ca71 of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x0291f280 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x0298e0ba security_inode_readlink +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02ad20e0 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x02b50903 param_set_bool +EXPORT_SYMBOL vmlinux 0x02c5aad2 skb_seq_read +EXPORT_SYMBOL vmlinux 0x02d2dd31 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0x02dec783 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x02e82557 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02f4b927 generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x02fedf00 udp_poll +EXPORT_SYMBOL vmlinux 0x0314d2ab bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x032cef86 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x0341a172 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x0346fe00 __dst_free +EXPORT_SYMBOL vmlinux 0x034f370f lookup_one_len +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x036200c8 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x0372ba73 fsync_bdev +EXPORT_SYMBOL vmlinux 0x0376c5e0 agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x039ca0f9 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x03d74e86 scsi_print_command +EXPORT_SYMBOL vmlinux 0x03e9aa4a param_set_ulong +EXPORT_SYMBOL vmlinux 0x03fc5b48 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x04074f48 ioremap +EXPORT_SYMBOL vmlinux 0x0407535e twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x04222c91 inode_set_flags +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x042ac983 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x044f05ae vc_cons +EXPORT_SYMBOL vmlinux 0x046501fd udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x046e5bd0 mdiobus_read +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x049e5f5d i2c_transfer +EXPORT_SYMBOL vmlinux 0x04bba3ef blk_get_queue +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x04eac100 inet_select_addr +EXPORT_SYMBOL vmlinux 0x04f3e82a dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x050fe71c dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x0530dede _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x05464c69 __nd_driver_register +EXPORT_SYMBOL vmlinux 0x055c8559 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x056b3523 netlink_set_err +EXPORT_SYMBOL vmlinux 0x058a09b4 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x05a514a1 _insl_ns +EXPORT_SYMBOL vmlinux 0x05acc12f seq_open_private +EXPORT_SYMBOL vmlinux 0x05c5f38c d_path +EXPORT_SYMBOL vmlinux 0x05e4ac44 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x05e86f46 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x05ef6db9 dev_get_flags +EXPORT_SYMBOL vmlinux 0x05f3d213 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x05f85870 uart_register_driver +EXPORT_SYMBOL vmlinux 0x05fa4304 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x060f811a nvm_register_mgr +EXPORT_SYMBOL vmlinux 0x06119951 security_path_mknod +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x06199c09 inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0x062a8c0e skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x067ac8a6 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x0688ee61 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x06bec7a8 skb_pull +EXPORT_SYMBOL vmlinux 0x06ca6f1b jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x06da7b88 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x06de71a8 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x0716df91 iunique +EXPORT_SYMBOL vmlinux 0x071eae21 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x07272c37 cap_mmap_file +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x074328bd seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x074e9213 down_killable +EXPORT_SYMBOL vmlinux 0x0755a1e3 devm_release_resource +EXPORT_SYMBOL vmlinux 0x079a7765 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07a9ef84 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x07be86bb key_type_keyring +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07d7f19b netif_napi_del +EXPORT_SYMBOL vmlinux 0x07d9883d inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x08060d57 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x0833d8d0 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x083a5679 unregister_console +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x084e83db sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x0868e224 ibmebus_unregister_driver +EXPORT_SYMBOL vmlinux 0x086be3a3 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x08baff40 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x08c7da3b phy_device_remove +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x08fadbc1 abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0x08fb6e29 I_BDEV +EXPORT_SYMBOL vmlinux 0x08fbad09 migrate_page +EXPORT_SYMBOL vmlinux 0x09262e10 posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x093f8575 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key +EXPORT_SYMBOL vmlinux 0x0958c23e __alloc_skb +EXPORT_SYMBOL vmlinux 0x096c514d xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x09b64a45 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09f1e381 generic_removexattr +EXPORT_SYMBOL vmlinux 0x09fa627b jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x0a16d424 blkdev_fsync +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a3fcfcc nf_hook_slow +EXPORT_SYMBOL vmlinux 0x0a557fb8 nvm_register +EXPORT_SYMBOL vmlinux 0x0a57863e cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0ab2538f pci_choose_state +EXPORT_SYMBOL vmlinux 0x0ab5de80 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ae9d4a8 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x0b0b7165 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b1092b9 of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b2d1458 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x0b2e1ec7 h_get_mpp +EXPORT_SYMBOL vmlinux 0x0b49a5f6 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b660711 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x0b6666ec set_posix_acl +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b7f45f1 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x0b7faac5 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x0b95680e scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x0ba13b32 get_empty_filp +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bce8372 init_buffer +EXPORT_SYMBOL vmlinux 0x0bf796f8 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x0bf8db55 rtas +EXPORT_SYMBOL vmlinux 0x0bff2078 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x0bff65b0 skb_store_bits +EXPORT_SYMBOL vmlinux 0x0c21d019 flush_delayed_work +EXPORT_SYMBOL vmlinux 0x0c403cc2 nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c517ffa __napi_complete +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c7fd14a vfs_setpos +EXPORT_SYMBOL vmlinux 0x0c99becb load_nls_default +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0ca77ace skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cc21918 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x0cd92139 d_splice_alias +EXPORT_SYMBOL vmlinux 0x0cfa198f __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x0d087d1e pci_restore_state +EXPORT_SYMBOL vmlinux 0x0d253c49 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x0d268d45 phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0x0d353910 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0x0d3e7486 current_in_userns +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d5d9b34 bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x0d5de5e3 ptp_find_pin +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d6c963c copy_from_user +EXPORT_SYMBOL vmlinux 0x0d7442b4 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x0d80e0ff pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0da1d535 kobject_init +EXPORT_SYMBOL vmlinux 0x0dc0ace0 idr_find_slowpath +EXPORT_SYMBOL vmlinux 0x0dcbdcf9 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x0dcc4361 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x0dec1325 flow_cache_lookup +EXPORT_SYMBOL vmlinux 0x0e1632aa blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x0e2d2f2e bdi_register +EXPORT_SYMBOL vmlinux 0x0e3039a2 agp_put_bridge +EXPORT_SYMBOL vmlinux 0x0e35f730 set_anon_super +EXPORT_SYMBOL vmlinux 0x0e524aba replace_mount_options +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e8f30f6 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x0eaf3ed7 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x0eb83782 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x0ec4a09b pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ec820e2 __elv_add_request +EXPORT_SYMBOL vmlinux 0x0ecf6a00 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f215761 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x0f2299c0 block_read_full_page +EXPORT_SYMBOL vmlinux 0x0f293d64 netdev_features_change +EXPORT_SYMBOL vmlinux 0x0f2d87fe cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f520cc9 __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x0f5faa7e wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x0f66dd77 __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f804d98 genlmsg_put +EXPORT_SYMBOL vmlinux 0x0f9c99c4 agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0x0fa24067 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x0fa80428 mpage_readpage +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fbbfa82 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x0fe8647d security_inode_permission +EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress +EXPORT_SYMBOL vmlinux 0x0ff71261 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x1008fdb3 compat_nf_setsockopt +EXPORT_SYMBOL vmlinux 0x101e12c4 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x10401051 posix_lock_file +EXPORT_SYMBOL vmlinux 0x10561274 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x106459f5 ip6_xmit +EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x10950ee1 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x10a2788c jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x10acfaaf cdev_alloc +EXPORT_SYMBOL vmlinux 0x10db26dc device_get_mac_address +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x10eefa76 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x111e71a2 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x111fc7af textsearch_unregister +EXPORT_SYMBOL vmlinux 0x1124f1bd memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x11294a03 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x114900a9 poll_initwait +EXPORT_SYMBOL vmlinux 0x1149f4ac pnv_pci_get_gpu_dev +EXPORT_SYMBOL vmlinux 0x1156801c km_state_expired +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x11667448 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x116a618b genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x116a700f make_kgid +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x1173fbb9 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x1182d83a cpuidle_disable +EXPORT_SYMBOL vmlinux 0x11879878 param_get_string +EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x11a584ec ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x11b5eb1d mount_ns +EXPORT_SYMBOL vmlinux 0x11b60cb1 bio_alloc_pages +EXPORT_SYMBOL vmlinux 0x11c7df25 scsi_add_device +EXPORT_SYMBOL vmlinux 0x11efa18a pci_find_capability +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x123f82f3 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x124ba659 write_cache_pages +EXPORT_SYMBOL vmlinux 0x12507560 dquot_alloc +EXPORT_SYMBOL vmlinux 0x125bba98 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x12728113 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x127a2687 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x1290245f vfs_writef +EXPORT_SYMBOL vmlinux 0x12941427 tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0x12944fa2 __devm_request_region +EXPORT_SYMBOL vmlinux 0x12964fa1 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12b1bc58 of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x12b66e23 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x12dfeb12 vprintk_emit +EXPORT_SYMBOL vmlinux 0x12e52669 inet6_getname +EXPORT_SYMBOL vmlinux 0x12e5ef0c rtas_set_power_level +EXPORT_SYMBOL vmlinux 0x12e82aee __module_get +EXPORT_SYMBOL vmlinux 0x12fe15a5 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0x130a0a64 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x1330424f __brelse +EXPORT_SYMBOL vmlinux 0x13306c66 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x1343b2f5 fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0x135578fb max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x135703a0 up_read +EXPORT_SYMBOL vmlinux 0x135cb1ff clear_nlink +EXPORT_SYMBOL vmlinux 0x137b0bb1 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x1394b40e agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x13aef01d unregister_shrinker +EXPORT_SYMBOL vmlinux 0x13bbbc35 mem_cgroup_end_page_stat +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13e4aecd powerpc_debugfs_root +EXPORT_SYMBOL vmlinux 0x13f53da6 CMO_PageSize +EXPORT_SYMBOL vmlinux 0x1443a1fa __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x146bde66 flush_signals +EXPORT_SYMBOL vmlinux 0x146ca521 add_disk +EXPORT_SYMBOL vmlinux 0x14917db4 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x1492e0dc swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x14a14817 pSeries_enable_reloc_on_exc +EXPORT_SYMBOL vmlinux 0x14a658b5 skb_append +EXPORT_SYMBOL vmlinux 0x14bf72d5 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x14c13c3a alloc_fcdev +EXPORT_SYMBOL vmlinux 0x14c92f5a dquot_initialize +EXPORT_SYMBOL vmlinux 0x14ccd857 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14d88246 bio_split +EXPORT_SYMBOL vmlinux 0x14df0a78 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x14eeeae8 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x14fe74f3 generic_perform_write +EXPORT_SYMBOL vmlinux 0x1507fc4d mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x1525ab37 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x1532d488 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x15457a62 kill_pgrp +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x155ae3b8 __inode_permission +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bc0668 param_set_charp +EXPORT_SYMBOL vmlinux 0x15c302e1 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x15d3fd60 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x15deef7a __nlmsg_put +EXPORT_SYMBOL vmlinux 0x160bd45c rtas_token +EXPORT_SYMBOL vmlinux 0x16178004 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x1634980e vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x164fa6c7 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x16507cb1 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x1677103b textsearch_prepare +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x167cb59d node_data +EXPORT_SYMBOL vmlinux 0x1688fe6c devm_gpiod_put +EXPORT_SYMBOL vmlinux 0x16c6a8b6 xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0x16cfc399 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16ead958 dev_uc_add +EXPORT_SYMBOL vmlinux 0x16f06c9d swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x16f16d29 ip6_frag_match +EXPORT_SYMBOL vmlinux 0x16f23d55 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x16f4a665 framebuffer_release +EXPORT_SYMBOL vmlinux 0x16f5a2ec abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x16fcb5f1 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0x17030368 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x17181274 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x171cf5d6 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x1724460f atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x172b82fb netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x17403fb3 override_creds +EXPORT_SYMBOL vmlinux 0x1743414f __debugger_fault_handler +EXPORT_SYMBOL vmlinux 0x175d3461 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x17648396 dev_base_lock +EXPORT_SYMBOL vmlinux 0x17650a1f default_llseek +EXPORT_SYMBOL vmlinux 0x176786b2 vfs_mknod +EXPORT_SYMBOL vmlinux 0x177a8bc7 param_ops_charp +EXPORT_SYMBOL vmlinux 0x177d0842 elv_rb_add +EXPORT_SYMBOL vmlinux 0x1793f685 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x1795e17d cont_write_begin +EXPORT_SYMBOL vmlinux 0x179dabdb bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x17ab8f19 tc_classify +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17c1d3e0 kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0x17d46664 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x17e28473 fsl_upm_run_pattern +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x180e25cb __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x1812d0cf serio_interrupt +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x182da9ef blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x18575768 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x1857aa39 proc_dointvec +EXPORT_SYMBOL vmlinux 0x18732800 mmc_get_card +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x18a1d83e set_nlink +EXPORT_SYMBOL vmlinux 0x18d210ba cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18eaaa2a sk_ns_capable +EXPORT_SYMBOL vmlinux 0x18fb9e68 nvm_get_blk +EXPORT_SYMBOL vmlinux 0x19056611 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x1915ec84 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x19244b74 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x1935e388 of_get_next_parent +EXPORT_SYMBOL vmlinux 0x19628135 pcim_iomap +EXPORT_SYMBOL vmlinux 0x196b1ff8 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x196d007b mmc_can_trim +EXPORT_SYMBOL vmlinux 0x19758e4b keyring_clear +EXPORT_SYMBOL vmlinux 0x1975cd65 vme_bus_type +EXPORT_SYMBOL vmlinux 0x197b90ec xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x198a37c4 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x1992b73f remove_proc_entry +EXPORT_SYMBOL vmlinux 0x1998d261 unlock_buffer +EXPORT_SYMBOL vmlinux 0x199a8526 d_walk +EXPORT_SYMBOL vmlinux 0x199ec4fb arch_spin_unlock_wait +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x19b33d31 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x19ba1dc7 fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19cd9343 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x19d31e13 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x19e78198 qdisc_list_add +EXPORT_SYMBOL vmlinux 0x19eaf219 xfrm_input +EXPORT_SYMBOL vmlinux 0x1a1babe8 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x1a383703 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x1a470116 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x1a485fcb pipe_unlock +EXPORT_SYMBOL vmlinux 0x1a48b16a param_set_int +EXPORT_SYMBOL vmlinux 0x1a5b9da5 elv_rb_del +EXPORT_SYMBOL vmlinux 0x1a6e73c0 force_sig +EXPORT_SYMBOL vmlinux 0x1a953837 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x1a9df0fa mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x1aaefc16 giveup_altivec +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1af0bc5a flush_dcache_page +EXPORT_SYMBOL vmlinux 0x1af62a99 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x1afea1e8 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x1b01592f agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b132009 rename_lock +EXPORT_SYMBOL vmlinux 0x1b1b4930 bio_unmap_user +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b2addc1 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x1b2d66ea sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x1b3f22bd d_invalidate +EXPORT_SYMBOL vmlinux 0x1b4a523f blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x1b625d33 enable_kernel_vsx +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b85b671 nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1ba3bbd9 get_tz_trend +EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer +EXPORT_SYMBOL vmlinux 0x1bc2ef09 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x1bc4ff03 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x1bc54df4 vio_enable_interrupts +EXPORT_SYMBOL vmlinux 0x1bc8bf6b md_integrity_register +EXPORT_SYMBOL vmlinux 0x1bcd24c0 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x1bd6d4d1 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x1be6fe36 mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0x1bf888b5 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x1bfec830 __iounmap_at +EXPORT_SYMBOL vmlinux 0x1c030c1c put_filp +EXPORT_SYMBOL vmlinux 0x1c0514e8 give_up_console +EXPORT_SYMBOL vmlinux 0x1c135d5a nd_device_register +EXPORT_SYMBOL vmlinux 0x1c193c8a devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x1c1e8b1f uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x1c279959 bdput +EXPORT_SYMBOL vmlinux 0x1c31f0a8 phy_start_interrupts +EXPORT_SYMBOL vmlinux 0x1c3e02e4 memcmp +EXPORT_SYMBOL vmlinux 0x1c3e1bdf sock_init_data +EXPORT_SYMBOL vmlinux 0x1c516cc1 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x1c51e418 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x1c530389 nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0x1c6208f7 sock_rfree +EXPORT_SYMBOL vmlinux 0x1c68e581 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x1ca86d2b jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x1ce7e616 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x1ceff42a i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x1cfbdbae simple_pin_fs +EXPORT_SYMBOL vmlinux 0x1cfcc880 mutex_lock +EXPORT_SYMBOL vmlinux 0x1d1056e5 crc32_be +EXPORT_SYMBOL vmlinux 0x1d162ae0 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x1d3711c6 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x1d3e111e xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x1d6cb300 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x1d89551d mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x1daee28a percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x1dbc4d0c proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dc66b4f mmc_power_save_host +EXPORT_SYMBOL vmlinux 0x1dc85df8 eth_change_mtu +EXPORT_SYMBOL vmlinux 0x1dc95710 vme_slave_request +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1dd8e0da set_cached_acl +EXPORT_SYMBOL vmlinux 0x1de37861 clear_inode +EXPORT_SYMBOL vmlinux 0x1df9c960 pnv_cxl_get_irq_count +EXPORT_SYMBOL vmlinux 0x1e0dadb6 dns_query +EXPORT_SYMBOL vmlinux 0x1e1eacd9 phy_device_free +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e28a8a5 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x1e335969 vfs_getxattr_alloc +EXPORT_SYMBOL vmlinux 0x1e5e0252 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e7088df padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x1e86561e tcp_prequeue +EXPORT_SYMBOL vmlinux 0x1e8c46ee fget_raw +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1eadf088 skb_make_writable +EXPORT_SYMBOL vmlinux 0x1eb3a159 devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0x1ecba395 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x1ee22de6 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x1ef4328a padata_add_cpu +EXPORT_SYMBOL vmlinux 0x1f16d108 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x1f1cda15 bio_copy_data +EXPORT_SYMBOL vmlinux 0x1f214409 param_get_charp +EXPORT_SYMBOL vmlinux 0x1f22facd set_user_nice +EXPORT_SYMBOL vmlinux 0x1f40bca2 of_match_device +EXPORT_SYMBOL vmlinux 0x1f4b40c7 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x1f59667a dst_destroy +EXPORT_SYMBOL vmlinux 0x1f605a11 compat_ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x1f68af66 ll_rw_block +EXPORT_SYMBOL vmlinux 0x1f6ad468 f_setown +EXPORT_SYMBOL vmlinux 0x1f6ce67a sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x1f7d259a fd_install +EXPORT_SYMBOL vmlinux 0x1fb16fbd kill_litter_super +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fbd5aa5 dev_mc_add +EXPORT_SYMBOL vmlinux 0x1fc3d674 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x1fca7d1f swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x1fce34c8 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x1fcf0d1d read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fd92844 pci_select_bars +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region +EXPORT_SYMBOL vmlinux 0x1ff6e265 kset_unregister +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x2012fa6e mount_nodev +EXPORT_SYMBOL vmlinux 0x2026d9a9 __get_user_pages +EXPORT_SYMBOL vmlinux 0x203b1b91 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x204a9376 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204fa585 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x20991860 qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20bbc5a5 netdev_alert +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20d66962 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x20fd8285 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x20ff824b napi_get_frags +EXPORT_SYMBOL vmlinux 0x20ffe022 dentry_needs_remove_privs +EXPORT_SYMBOL vmlinux 0x211b1df7 nd_integrity_init +EXPORT_SYMBOL vmlinux 0x211f68f1 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x213fff7e dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x214d648b uart_suspend_port +EXPORT_SYMBOL vmlinux 0x214ef523 of_root +EXPORT_SYMBOL vmlinux 0x2171a516 softnet_data +EXPORT_SYMBOL vmlinux 0x21722c54 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x21755828 register_netdevice +EXPORT_SYMBOL vmlinux 0x2190e744 cfb_copyarea +EXPORT_SYMBOL vmlinux 0x219455e0 dentry_unhash +EXPORT_SYMBOL vmlinux 0x21ae4bc8 input_release_device +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21eacc79 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x21edcaca blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x21f19335 fence_remove_callback +EXPORT_SYMBOL vmlinux 0x21ff1062 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x221c568d pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x221ea4a7 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x22300a5e mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x224b5eed set_security_override +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x22808ab9 skb_queue_head +EXPORT_SYMBOL vmlinux 0x228e0355 pskb_expand_head +EXPORT_SYMBOL vmlinux 0x22a9ad2c mmc_can_erase +EXPORT_SYMBOL vmlinux 0x22aacd59 nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0x22ab84b4 netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x22ae3827 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22ba8edd scsi_device_put +EXPORT_SYMBOL vmlinux 0x230f2a82 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x23177de5 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x232b2e14 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0x23335bde netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL vmlinux 0x23403030 vme_slot_num +EXPORT_SYMBOL vmlinux 0x23457f21 elv_rb_find +EXPORT_SYMBOL vmlinux 0x2357867c rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x23591680 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x235e90f3 __wake_up_bit +EXPORT_SYMBOL vmlinux 0x23731ecc udp6_set_csum +EXPORT_SYMBOL vmlinux 0x23761b2e pci_assign_resource +EXPORT_SYMBOL vmlinux 0x2388b256 vme_irq_request +EXPORT_SYMBOL vmlinux 0x238d826c simple_transaction_release +EXPORT_SYMBOL vmlinux 0x2399eb57 vme_dma_request +EXPORT_SYMBOL vmlinux 0x239b871d pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23b59d53 tty_vhangup +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c3491c inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0x23c7acbf mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x23cf97db vm_event_states +EXPORT_SYMBOL vmlinux 0x23f2243d mempool_free +EXPORT_SYMBOL vmlinux 0x23f9c754 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x2401a316 simple_dname +EXPORT_SYMBOL vmlinux 0x240aad56 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x242a7d00 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x2444da29 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x244bfc6e inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x24608680 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x247288ba dma_common_mmap +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x24855cba __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x2491c94f of_iomap +EXPORT_SYMBOL vmlinux 0x249999a3 nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0x24a5b941 bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x24b633c9 rwsem_wake +EXPORT_SYMBOL vmlinux 0x24bb750c __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x24d6b4a6 cur_cpu_spec +EXPORT_SYMBOL vmlinux 0x24eb9eb2 sock_i_ino +EXPORT_SYMBOL vmlinux 0x24f00380 ida_init +EXPORT_SYMBOL vmlinux 0x24f8a0a6 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x2505cd89 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x2518c9ae kmem_cache_create +EXPORT_SYMBOL vmlinux 0x252114ea dev_mc_flush +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x25281a08 napi_gro_frags +EXPORT_SYMBOL vmlinux 0x254f3046 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x256e8748 cdrom_open +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x2572be12 down_read_trylock +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x25a50981 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x25e05d9b input_set_abs_params +EXPORT_SYMBOL vmlinux 0x25e397a6 abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25f3c974 get_agp_version +EXPORT_SYMBOL vmlinux 0x263804a4 component_match_add +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x26477c07 __vmalloc +EXPORT_SYMBOL vmlinux 0x264a54e4 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x264f2a40 dm_put_device +EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux +EXPORT_SYMBOL vmlinux 0x2654f01b sock_wake_async +EXPORT_SYMBOL vmlinux 0x265beaab blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0x2665d53a key_create_or_update +EXPORT_SYMBOL vmlinux 0x26675fd9 nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0x267d9a71 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x268e03be pci_release_regions +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26e3c4b7 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x26e7a101 md_done_sync +EXPORT_SYMBOL vmlinux 0x26e7bd54 netif_skb_features +EXPORT_SYMBOL vmlinux 0x26ee714d vfs_symlink +EXPORT_SYMBOL vmlinux 0x26fec978 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x27063355 vfs_unlink +EXPORT_SYMBOL vmlinux 0x270d5d5b ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x273db990 inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x275b0b01 __serio_register_driver +EXPORT_SYMBOL vmlinux 0x2763533f kernel_getpeername +EXPORT_SYMBOL vmlinux 0x27646df3 start_thread +EXPORT_SYMBOL vmlinux 0x2771d7ff ida_get_new_above +EXPORT_SYMBOL vmlinux 0x277a5a94 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x278544ea proc_set_size +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x27aeabc5 dma_find_channel +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27bda1ff cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x27bf7eab tcp_init_cgroup +EXPORT_SYMBOL vmlinux 0x27c60fa1 pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0x27d8ff6c __skb_get_hash +EXPORT_SYMBOL vmlinux 0x27dc38c1 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x27f5a888 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x2813ca8a xattr_full_name +EXPORT_SYMBOL vmlinux 0x2816d2bd dev_uc_init +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x28318305 snprintf +EXPORT_SYMBOL vmlinux 0x2850fded dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x2852d1d6 agp_find_bridge +EXPORT_SYMBOL vmlinux 0x287de0a2 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x288dce6d agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0x289b27e5 agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0x289db3ee idr_remove +EXPORT_SYMBOL vmlinux 0x289f3dab devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x28a2b29f radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28a7beba __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x28aa817e ip_ct_attach +EXPORT_SYMBOL vmlinux 0x28abfe6e scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x28c54f4f tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x28e2d0d9 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x28e6ce45 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x294d01ee lro_flush_all +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x295b03e4 nd_device_unregister +EXPORT_SYMBOL vmlinux 0x29703a77 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x297ae47b jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x297c7acf write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x297dafaf sock_no_poll +EXPORT_SYMBOL vmlinux 0x298daaa4 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x299b13f6 d_alloc_name +EXPORT_SYMBOL vmlinux 0x29b20d4c sock_create_lite +EXPORT_SYMBOL vmlinux 0x29b2279e __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x29cc7eb8 km_policy_notify +EXPORT_SYMBOL vmlinux 0x29d7e496 __page_symlink +EXPORT_SYMBOL vmlinux 0x29e4c613 pagevec_lookup +EXPORT_SYMBOL vmlinux 0x29edd8c3 rtas_online_cpus_mask +EXPORT_SYMBOL vmlinux 0x29ef6f33 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x2a18d5b8 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x2a2d0a1b tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x2a3022b0 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a6b2124 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x2a75ed32 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x2a7c0309 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x2a922295 register_md_personality +EXPORT_SYMBOL vmlinux 0x2a967f62 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x2aa3996e sget_userns +EXPORT_SYMBOL vmlinux 0x2aa83a83 flush_old_exec +EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x2aadacb6 kern_unmount +EXPORT_SYMBOL vmlinux 0x2acc7bb7 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2ad7e80c sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x2ae240ab __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b137ad3 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x2b14fc8a bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b31357d eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x2b358293 vc_resize +EXPORT_SYMBOL vmlinux 0x2b3d6153 __scm_send +EXPORT_SYMBOL vmlinux 0x2b4991ec xmon +EXPORT_SYMBOL vmlinux 0x2b51d140 dqput +EXPORT_SYMBOL vmlinux 0x2b7acb60 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x2b973363 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x2b989010 do_splice_to +EXPORT_SYMBOL vmlinux 0x2b9b8daa in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x2b9bb193 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2ba84ce2 iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0x2ba8ada5 get_acl +EXPORT_SYMBOL vmlinux 0x2ba8b1a6 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x2bb02cbd xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x2bb1ee2b swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0x2bb4505c dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0x2bbc5598 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x2bc44dd0 compat_sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x2bddcc0f mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x2bfe9d4e dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x2c039a8f proc_mkdir +EXPORT_SYMBOL vmlinux 0x2c08ab30 pci_get_subsys +EXPORT_SYMBOL vmlinux 0x2c0f151a kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c25c217 ata_link_printk +EXPORT_SYMBOL vmlinux 0x2c3113ad page_symlink +EXPORT_SYMBOL vmlinux 0x2c36a650 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x2c36fe36 mmc_can_reset +EXPORT_SYMBOL vmlinux 0x2c3aff14 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x2c4c000a xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x2c69e66f dm_kobject_release +EXPORT_SYMBOL vmlinux 0x2c7b1fca down_timeout +EXPORT_SYMBOL vmlinux 0x2c8bdd4b bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x2c8e8fec inet_addr_type +EXPORT_SYMBOL vmlinux 0x2c9ab62a tty_register_device +EXPORT_SYMBOL vmlinux 0x2ca289da udp_seq_open +EXPORT_SYMBOL vmlinux 0x2cc453a2 put_page +EXPORT_SYMBOL vmlinux 0x2cc4c56b dev_mc_init +EXPORT_SYMBOL vmlinux 0x2cd36bc3 __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x2cd6da14 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x2ced4be5 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x2cfc113c trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x2d028aa8 end_page_writeback +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d874ad8 audit_log_task_info +EXPORT_SYMBOL vmlinux 0x2d92c120 dev_addr_add +EXPORT_SYMBOL vmlinux 0x2d9464a9 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x2daf936c __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x2db1e0c6 dql_init +EXPORT_SYMBOL vmlinux 0x2dd57f6b msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x2de0c585 mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0x2deb686e pci_clear_master +EXPORT_SYMBOL vmlinux 0x2dff7de6 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x2e0d2f7f queue_work_on +EXPORT_SYMBOL vmlinux 0x2e0fb928 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x2e10c0c5 find_inode_nowait +EXPORT_SYMBOL vmlinux 0x2e12a93b ibmebus_request_irq +EXPORT_SYMBOL vmlinux 0x2e18ec50 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x2e22fa25 tcp_proto_cgroup +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e593a27 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0x2e7f7f2d dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x2e9ec198 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x2ec74483 inet_frag_find +EXPORT_SYMBOL vmlinux 0x2ec7ad8a generic_make_request +EXPORT_SYMBOL vmlinux 0x2ee74731 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x2ef06736 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x2ef508e4 path_noexec +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2efe8cc0 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource +EXPORT_SYMBOL vmlinux 0x2f287f0d copy_to_user +EXPORT_SYMBOL vmlinux 0x2f2b9584 pps_register_source +EXPORT_SYMBOL vmlinux 0x2f42ed83 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x2f6f2702 __nd_iostat_start +EXPORT_SYMBOL vmlinux 0x2f967b2a sock_i_uid +EXPORT_SYMBOL vmlinux 0x2f9a5c49 mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0x2fae96de rtas_data_buf_lock +EXPORT_SYMBOL vmlinux 0x2fb3e368 load_nls +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fb80459 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x2fbdfe4a sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x2fd2a178 scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0x2fd9bb54 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fe76940 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x30056749 __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x30429fd3 simple_rmdir +EXPORT_SYMBOL vmlinux 0x304c90ae phy_print_status +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x3095582f bio_integrity_free +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a00cc1 mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30b8b35c cpu_to_chip_id +EXPORT_SYMBOL vmlinux 0x30c77049 pci_bus_get +EXPORT_SYMBOL vmlinux 0x30cdf4d8 vga_client_register +EXPORT_SYMBOL vmlinux 0x30d1770a vfs_readv +EXPORT_SYMBOL vmlinux 0x30e00037 ilookup5 +EXPORT_SYMBOL vmlinux 0x30f2c4fa path_is_under +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310f02ec memremap +EXPORT_SYMBOL vmlinux 0x31139766 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x31165edd complete_request_key +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x3162af6a drop_nlink +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x31a0c8aa devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x31cd995b store_fp_state +EXPORT_SYMBOL vmlinux 0x31ddde2d pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x31dde4a0 bdi_register_dev +EXPORT_SYMBOL vmlinux 0x31f29da1 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x31f474ce bio_map_kern +EXPORT_SYMBOL vmlinux 0x320ef874 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x324403b0 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x32498342 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x3257b7ed input_free_device +EXPORT_SYMBOL vmlinux 0x325c11b2 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x326640fe simple_write_begin +EXPORT_SYMBOL vmlinux 0x32708660 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x327155b4 init_net +EXPORT_SYMBOL vmlinux 0x32739904 generic_write_end +EXPORT_SYMBOL vmlinux 0x3284bab3 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x328dc2e8 kill_bdev +EXPORT_SYMBOL vmlinux 0x329734d4 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x329d2845 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x32a845ac register_filesystem +EXPORT_SYMBOL vmlinux 0x32d88402 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x32e611ff i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x32e7baf7 blk_make_request +EXPORT_SYMBOL vmlinux 0x32e8ee47 sk_mc_loop +EXPORT_SYMBOL vmlinux 0x332f672c scsi_host_set_state +EXPORT_SYMBOL vmlinux 0x333a38bf of_device_alloc +EXPORT_SYMBOL vmlinux 0x333b7560 swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0x333cb37c __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x33510c69 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x33619e01 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x339338e1 input_register_handle +EXPORT_SYMBOL vmlinux 0x33b0192a skb_find_text +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33b9e668 netdev_emerg +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33f01469 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x340361c3 would_dump +EXPORT_SYMBOL vmlinux 0x344b7b7f security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x345345f2 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a194a8 compat_sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x351d3c50 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x351dfb13 nd_btt_probe +EXPORT_SYMBOL vmlinux 0x3525c274 mutex_trylock +EXPORT_SYMBOL vmlinux 0x352f664f iput +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x35451fe2 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x354c7e00 d_tmpfile +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x35722fcd bio_phys_segments +EXPORT_SYMBOL vmlinux 0x35845689 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x3585d7e7 max8998_update_reg +EXPORT_SYMBOL vmlinux 0x35924c54 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x35a0bd5a kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35ab9d64 phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0x35c32767 xor_altivec_2 +EXPORT_SYMBOL vmlinux 0x35d68588 kill_fasync +EXPORT_SYMBOL vmlinux 0x35e09980 flex_array_put +EXPORT_SYMBOL vmlinux 0x35e10e0d devm_iounmap +EXPORT_SYMBOL vmlinux 0x35f61658 generic_read_dir +EXPORT_SYMBOL vmlinux 0x3613d011 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x3618cb2d ida_destroy +EXPORT_SYMBOL vmlinux 0x3628a32a xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x3634068b netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x36527ece mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x3655f94e bio_copy_kern +EXPORT_SYMBOL vmlinux 0x3668fd48 flex_array_free_parts +EXPORT_SYMBOL vmlinux 0x366f6d27 idr_destroy +EXPORT_SYMBOL vmlinux 0x36797dce mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x367a8f56 vga_put +EXPORT_SYMBOL vmlinux 0x36908bba __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x369e1115 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x369fb013 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x36b0e732 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36d6aa01 srp_reconnect_rport +EXPORT_SYMBOL vmlinux 0x36d83c84 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x36dba162 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x371149a7 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x3714f789 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x371d2130 check_legacy_ioport +EXPORT_SYMBOL vmlinux 0x371d9d15 inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0x37344510 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x37383edd rtas_get_power_level +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x375cf7d4 seq_dentry +EXPORT_SYMBOL vmlinux 0x375d8800 fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0x37625704 blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x376ddf69 unlink_framebuffer +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37baa47b dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37d07219 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x37ebb37d inet_sendpage +EXPORT_SYMBOL vmlinux 0x380b00f9 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x380d769a blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x38698e14 km_report +EXPORT_SYMBOL vmlinux 0x3877990a neigh_direct_output +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x3888fa0b tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x38a25a45 proto_unregister +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38b06981 serio_rescan +EXPORT_SYMBOL vmlinux 0x38b72414 done_path_create +EXPORT_SYMBOL vmlinux 0x38b825d1 idr_replace +EXPORT_SYMBOL vmlinux 0x38dcbbcd sock_from_file +EXPORT_SYMBOL vmlinux 0x38de3c03 backlight_device_register +EXPORT_SYMBOL vmlinux 0x38fb9933 tty_std_termios +EXPORT_SYMBOL vmlinux 0x3921ce61 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393d4de9 crc32_le +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x395c5b85 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x397ef21c jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x398623cf inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x39a96095 poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39ba4a6a inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x39cdf63c wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x39f4a381 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x39f9a251 dev_printk +EXPORT_SYMBOL vmlinux 0x3a189f02 __neigh_event_send +EXPORT_SYMBOL vmlinux 0x3a28d1e3 param_set_ullong +EXPORT_SYMBOL vmlinux 0x3a32482b put_disk +EXPORT_SYMBOL vmlinux 0x3a6cbb19 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x3a8f74f0 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3acd6bec tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x3ae0c8e3 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x3af41a39 blk_rq_init +EXPORT_SYMBOL vmlinux 0x3afca59f wireless_send_event +EXPORT_SYMBOL vmlinux 0x3b3f58cf agp_unbind_memory +EXPORT_SYMBOL vmlinux 0x3b417032 inet6_offloads +EXPORT_SYMBOL vmlinux 0x3b4de7e7 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x3b566d03 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x3b615a21 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b67dfe2 pnv_cxl_alloc_hwirqs +EXPORT_SYMBOL vmlinux 0x3b6c7769 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x3b76631a try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x3b7aa2f4 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x3b7b0458 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x3b904cd2 request_key_async +EXPORT_SYMBOL vmlinux 0x3bb6ff6f sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x3bd27f1b kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0x3bd2c40d unregister_quota_format +EXPORT_SYMBOL vmlinux 0x3bd67e5d scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x3c0098f4 dquot_get_state +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c416324 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x3c483012 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x3c496f21 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x3c4f7c63 inet_bind +EXPORT_SYMBOL vmlinux 0x3c6e5e9f poll_freewait +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c84262b path_get +EXPORT_SYMBOL vmlinux 0x3cc4b0dc lg_lock_init +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3d17ec0a add_random_ready_callback +EXPORT_SYMBOL vmlinux 0x3d1a2341 ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x3d313d2b __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x3d3a4c8b register_cdrom +EXPORT_SYMBOL vmlinux 0x3d51e1e7 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x3d634294 dqget +EXPORT_SYMBOL vmlinux 0x3d660bb6 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x3d7df49d simple_follow_link +EXPORT_SYMBOL vmlinux 0x3d8529f9 blk_init_tags +EXPORT_SYMBOL vmlinux 0x3d888276 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x3d8a81c0 register_netdev +EXPORT_SYMBOL vmlinux 0x3dbf36c9 sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x3dc46796 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3df948d1 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3dfe63b8 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0x3e04df70 alloc_file +EXPORT_SYMBOL vmlinux 0x3e05c2da tcp_init_sock +EXPORT_SYMBOL vmlinux 0x3e2ce6d8 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x3e420960 blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0x3e47e1ac down_write +EXPORT_SYMBOL vmlinux 0x3e5dc69b max8925_set_bits +EXPORT_SYMBOL vmlinux 0x3e6bd3d1 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x3e868a3f generic_update_time +EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get +EXPORT_SYMBOL vmlinux 0x3ec10da2 tty_port_open +EXPORT_SYMBOL vmlinux 0x3ecaecaa pci_pme_active +EXPORT_SYMBOL vmlinux 0x3eedc796 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x3f031183 lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0x3f03157a dquot_operations +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f09f48c nvm_put_blk_unlocked +EXPORT_SYMBOL vmlinux 0x3f3cdfa8 rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0x3f406a3b enable_kernel_altivec +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f5a750e iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x3f9f2636 clear_user_page +EXPORT_SYMBOL vmlinux 0x3faa1720 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x3fc907c0 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x3fca0799 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x3fcbbbdb of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x3ff8e495 lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0x3ff969e1 follow_down +EXPORT_SYMBOL vmlinux 0x4017e950 phy_connect +EXPORT_SYMBOL vmlinux 0x4019a470 blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0x401a3d79 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x402a7653 ab3100_event_register +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x4032d026 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0x4049ea96 update_devfreq +EXPORT_SYMBOL vmlinux 0x404d5b16 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x405f737b vme_irq_free +EXPORT_SYMBOL vmlinux 0x40858c09 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x4096dbf5 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40aafe07 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x40b2d53d seq_read +EXPORT_SYMBOL vmlinux 0x40bc3e9e mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40e6df69 __nla_reserve +EXPORT_SYMBOL vmlinux 0x41155f0a input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x411a8945 ping_prot +EXPORT_SYMBOL vmlinux 0x4129c622 of_match_node +EXPORT_SYMBOL vmlinux 0x412a0cf4 tty_check_change +EXPORT_SYMBOL vmlinux 0x414187f0 bdi_init +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x41537623 nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0x4159c38f ioremap_wc +EXPORT_SYMBOL vmlinux 0x415e9c25 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x419048d0 agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0x419179ea md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x4191c866 scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0x419a115c __ip_select_ident +EXPORT_SYMBOL vmlinux 0x41a3fbf1 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x41add52a xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x41b04155 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x41b55ad6 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x41baf194 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x41c63018 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x41d26c1a udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x41ebdbd7 dquot_disable +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x42307d0a new_inode +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x4249be37 __skb_checksum +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x426c5f4a kvmppc_hv_find_lock_hpte +EXPORT_SYMBOL vmlinux 0x4276372c security_path_symlink +EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x42d34c6c set_binfmt +EXPORT_SYMBOL vmlinux 0x42dc4158 pneigh_lookup +EXPORT_SYMBOL vmlinux 0x42f43d36 sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x4315fe25 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x431ee063 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x43213782 mmc_can_discard +EXPORT_SYMBOL vmlinux 0x434553b9 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x43466daa nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x4353c972 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x437e728e __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43986745 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x439ae425 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x43a01f90 complete_all +EXPORT_SYMBOL vmlinux 0x43a4b499 pnv_pci_get_phb_node +EXPORT_SYMBOL vmlinux 0x43a78649 gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0x43bf4dd2 d_set_d_op +EXPORT_SYMBOL vmlinux 0x43c50e1c pci_find_hose_for_OF_device +EXPORT_SYMBOL vmlinux 0x43deedfe tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x43e4f255 padata_stop +EXPORT_SYMBOL vmlinux 0x43e60129 downgrade_write +EXPORT_SYMBOL vmlinux 0x43e86d85 tcf_hash_search +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x440395e9 pps_event +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x4420ae8a sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x4424af13 init_special_inode +EXPORT_SYMBOL vmlinux 0x442796f5 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x442b3bf1 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x44518b2a max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x4458cc48 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x446edb89 vio_unregister_device +EXPORT_SYMBOL vmlinux 0x4475e4e4 vmap +EXPORT_SYMBOL vmlinux 0x447f2381 get_mm_exe_file +EXPORT_SYMBOL vmlinux 0x4480d48e netif_device_attach +EXPORT_SYMBOL vmlinux 0x448968e2 simple_release_fs +EXPORT_SYMBOL vmlinux 0x448eac3e kmemdup +EXPORT_SYMBOL vmlinux 0x449b8e54 of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0x44a74f78 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x44aac5ca user_path_at_empty +EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x44c14e87 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x44d34d27 of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44eb192e wait_for_completion +EXPORT_SYMBOL vmlinux 0x44ed1675 thaw_super +EXPORT_SYMBOL vmlinux 0x44f02855 dev_set_group +EXPORT_SYMBOL vmlinux 0x450aad85 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x457d01c9 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x4584f02c dst_alloc +EXPORT_SYMBOL vmlinux 0x459374b1 find_lock_entry +EXPORT_SYMBOL vmlinux 0x45a55ec8 __iounmap +EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource +EXPORT_SYMBOL vmlinux 0x45edcda9 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x4602114b skb_push +EXPORT_SYMBOL vmlinux 0x4612c59d down_trylock +EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x461ebfa0 __copy_tofrom_user +EXPORT_SYMBOL vmlinux 0x462743e4 tty_free_termios +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x46661700 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x4693001b of_cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0x46a0170e flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0x46a93fe9 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46d12956 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x46d2b723 nobh_write_end +EXPORT_SYMBOL vmlinux 0x46d65051 mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x4702de31 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x472a4897 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x474c8a5e path_put +EXPORT_SYMBOL vmlinux 0x474fcdfa fb_get_mode +EXPORT_SYMBOL vmlinux 0x47605df1 scsi_execute +EXPORT_SYMBOL vmlinux 0x47608718 fence_init +EXPORT_SYMBOL vmlinux 0x47684d13 dentry_open +EXPORT_SYMBOL vmlinux 0x476d6a69 dst_discard_out +EXPORT_SYMBOL vmlinux 0x4782896f mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47b6465d fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0x47f2fd37 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x47fbdf8b mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x480cadf1 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x480d98c6 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x4829a47e memcpy +EXPORT_SYMBOL vmlinux 0x482b9455 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x48404b9a remove_wait_queue +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x484e5c01 lwtunnel_output +EXPORT_SYMBOL vmlinux 0x48547679 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x48552011 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x4857594e setup_arg_pages +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x485ea1fd kill_pid +EXPORT_SYMBOL vmlinux 0x485ebb3d swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x486a58a6 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x486a5eb0 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x4873cdfa dev_deactivate +EXPORT_SYMBOL vmlinux 0x487588fa get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x487c942a vfs_iter_write +EXPORT_SYMBOL vmlinux 0x48a8e536 agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48c25b8b sock_efree +EXPORT_SYMBOL vmlinux 0x48d493a6 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x490179cb find_get_entry +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x491a2792 stop_tty +EXPORT_SYMBOL vmlinux 0x49348f4b dma_pool_create +EXPORT_SYMBOL vmlinux 0x4947ebc2 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x494eb344 compat_mc_getsockopt +EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x49638f3d backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x4968550e __init_rwsem +EXPORT_SYMBOL vmlinux 0x499bfc6d __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49bb3798 nobh_writepage +EXPORT_SYMBOL vmlinux 0x49bc6bdc eth_header_cache +EXPORT_SYMBOL vmlinux 0x49c3190c inet_csk_accept +EXPORT_SYMBOL vmlinux 0x49cfd62e padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x49e23d1d ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x49ed0470 arp_tbl +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x49f80077 bio_integrity_advance +EXPORT_SYMBOL vmlinux 0x4a08418f phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x4a20f0b6 fsl_lbc_ctrl_dev +EXPORT_SYMBOL vmlinux 0x4a3ca7f1 netlink_capable +EXPORT_SYMBOL vmlinux 0x4a738d4c dm_unregister_target +EXPORT_SYMBOL vmlinux 0x4a79b77a seq_pad +EXPORT_SYMBOL vmlinux 0x4a8961f5 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x4a95b11c dev_uc_flush +EXPORT_SYMBOL vmlinux 0x4a963edc sk_alloc +EXPORT_SYMBOL vmlinux 0x4a97d67b d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x4a981223 dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x4a9a49d7 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk +EXPORT_SYMBOL vmlinux 0x4abe44f5 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x4ac3af98 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource +EXPORT_SYMBOL vmlinux 0x4ad2a57a opal_event_request +EXPORT_SYMBOL vmlinux 0x4aec0362 register_console +EXPORT_SYMBOL vmlinux 0x4afb4b11 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b05ee55 truncate_setsize +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b1a5c4d tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x4b25f030 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x4b2c8b70 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x4b2ea4e5 may_umount +EXPORT_SYMBOL vmlinux 0x4b45f5de neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b753947 kernel_accept +EXPORT_SYMBOL vmlinux 0x4b8326ff ida_remove +EXPORT_SYMBOL vmlinux 0x4b96132f dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x4b9840e7 phy_init_eee +EXPORT_SYMBOL vmlinux 0x4ba54059 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4baf6152 dev_addr_del +EXPORT_SYMBOL vmlinux 0x4bc9c445 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x4bed99b3 __percpu_counter_add +EXPORT_SYMBOL vmlinux 0x4bf6225f zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x4c11435a _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x4c20286c of_platform_device_create +EXPORT_SYMBOL vmlinux 0x4c258239 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x4c2c5440 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf +EXPORT_SYMBOL vmlinux 0x4c3d6272 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x4c4fd9ff __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x4c6e77fe nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x4c797243 prepare_creds +EXPORT_SYMBOL vmlinux 0x4ca9669f scnprintf +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4cdf062a tcp_release_cb +EXPORT_SYMBOL vmlinux 0x4ce2b418 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x4d0c7aea iget_locked +EXPORT_SYMBOL vmlinux 0x4d2d026c empty_aops +EXPORT_SYMBOL vmlinux 0x4d56f911 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x4d5eae25 free_user_ns +EXPORT_SYMBOL vmlinux 0x4d791953 mempool_resize +EXPORT_SYMBOL vmlinux 0x4d95c363 vme_irq_generate +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4dbf5359 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x4dc10343 inode_dio_wait +EXPORT_SYMBOL vmlinux 0x4dca2d49 unregister_netdev +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4deae36b lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4dfbf54a devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x4e00d573 __ps2_command +EXPORT_SYMBOL vmlinux 0x4e28e513 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e641e98 udp_proc_register +EXPORT_SYMBOL vmlinux 0x4e68e1cf kobject_add +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e748e2b read_dev_sector +EXPORT_SYMBOL vmlinux 0x4e76c93d compat_ip_setsockopt +EXPORT_SYMBOL vmlinux 0x4e83ca3c phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0x4e9dffb5 ip_fast_csum +EXPORT_SYMBOL vmlinux 0x4eb20236 mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0x4ec348ed dm_io +EXPORT_SYMBOL vmlinux 0x4ed81aac sync_blockdev +EXPORT_SYMBOL vmlinux 0x4f092f4c key_validate +EXPORT_SYMBOL vmlinux 0x4f099504 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x4f14ab7c mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f3ec407 filemap_flush +EXPORT_SYMBOL vmlinux 0x4f464ec7 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x4f5949c5 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x4f5f7732 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f86f4d9 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x4f8c2bb0 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x4fa15389 __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0x4fb9cdb3 mount_pseudo +EXPORT_SYMBOL vmlinux 0x4fbb9a4e d_rehash +EXPORT_SYMBOL vmlinux 0x4fc2210f cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4fed7153 ip_options_compile +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x50133eee mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0x5024dbd4 dcache_readdir +EXPORT_SYMBOL vmlinux 0x50332d92 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x5059b691 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0x505a7355 pci_request_region +EXPORT_SYMBOL vmlinux 0x50627a5c skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x5068e724 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x50870c93 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x508f4e8e nvm_get_blk_unlocked +EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch +EXPORT_SYMBOL vmlinux 0x50ba769a kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x50bc1283 lookup_bdev +EXPORT_SYMBOL vmlinux 0x50dd3774 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x50e4eddc bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x50f1560a vfs_rmdir +EXPORT_SYMBOL vmlinux 0x50f8c483 ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0x51164ad9 cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x511d58fe simple_nosetlease +EXPORT_SYMBOL vmlinux 0x512d469f agp_create_memory +EXPORT_SYMBOL vmlinux 0x5152d4d7 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x515e0d51 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x515fcfc9 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x516cd74f vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x5173c7bf __blk_end_request +EXPORT_SYMBOL vmlinux 0x517a3e25 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0x517b4c73 of_dev_get +EXPORT_SYMBOL vmlinux 0x518ae54c dev_addr_flush +EXPORT_SYMBOL vmlinux 0x519946b5 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x519b0da3 finish_wait +EXPORT_SYMBOL vmlinux 0x51ab91ea i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x51bbd7d9 blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0x51c985c6 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x51ea9fe1 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x51ff5ffa ip_setsockopt +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x523dc469 xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0x524ea0f7 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x524ff01b phy_resume +EXPORT_SYMBOL vmlinux 0x526be8e3 noop_llseek +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x52da486f pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x52df3a0c devfreq_interval_update +EXPORT_SYMBOL vmlinux 0x52e9b7b8 simple_readpage +EXPORT_SYMBOL vmlinux 0x52eaaa17 sock_no_connect +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x531e50c1 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x5324a1ec security_mmap_file +EXPORT_SYMBOL vmlinux 0x532c2afa i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x534a4aaf max8998_write_reg +EXPORT_SYMBOL vmlinux 0x534e455c xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x534e938f inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x536032f6 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x53641f6d skb_clone +EXPORT_SYMBOL vmlinux 0x536cc847 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x5377e556 hex2bin +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x53a88558 security_path_truncate +EXPORT_SYMBOL vmlinux 0x53bb661d blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x53cc4f0f input_open_device +EXPORT_SYMBOL vmlinux 0x53d66b68 phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0x53e1d373 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x53ebab1b _outsl_ns +EXPORT_SYMBOL vmlinux 0x53f478fa agp_enable +EXPORT_SYMBOL vmlinux 0x54015c98 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x5412c7c7 up +EXPORT_SYMBOL vmlinux 0x5420d52e of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x54240da9 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x5439a3b7 inet_shutdown +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x545a5ce6 pci_bus_put +EXPORT_SYMBOL vmlinux 0x548a2ef1 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x549403bd i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54dd2695 arch_free_page +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54ea815e request_key +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x5568c553 complete +EXPORT_SYMBOL vmlinux 0x5577ef9e udp_table +EXPORT_SYMBOL vmlinux 0x557d4afd find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x5591d513 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x55a0150e of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55f5019b __kmalloc_node +EXPORT_SYMBOL vmlinux 0x56106e2b sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563fcbcc generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x56558d11 inode_init_once +EXPORT_SYMBOL vmlinux 0x5673d832 bio_uncopy_user +EXPORT_SYMBOL vmlinux 0x5680eef3 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x5696d05b inet_frag_kill +EXPORT_SYMBOL vmlinux 0x569ef44d vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x56ba6811 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x56bb97a4 kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0x56c2b95b rtas_progress +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56d4e468 uart_resume_port +EXPORT_SYMBOL vmlinux 0x56f6c7de lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x571072a5 sk_net_capable +EXPORT_SYMBOL vmlinux 0x5716076a textsearch_destroy +EXPORT_SYMBOL vmlinux 0x571a01d3 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x572647d6 get_mce_fault_addr +EXPORT_SYMBOL vmlinux 0x57292f82 tty_name +EXPORT_SYMBOL vmlinux 0x572bf5dd generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x573b42bf of_get_property +EXPORT_SYMBOL vmlinux 0x57443645 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57597eaf dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x577d35f3 hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x578d9116 scsi_init_io +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x57a6e9c7 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x57bf782f scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x57d9e552 param_get_ulong +EXPORT_SYMBOL vmlinux 0x57ee2745 param_set_byte +EXPORT_SYMBOL vmlinux 0x57f34254 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x57f4bd39 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x58408de3 __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x584111c3 dquot_destroy +EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x58a079f0 make_kprojid +EXPORT_SYMBOL vmlinux 0x58b40f10 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58c1601d dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x58c4584b devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x58c4d311 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x58cff7a1 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x594657ae in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x594bc307 blk_put_request +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x59556ade vga_con +EXPORT_SYMBOL vmlinux 0x5957d6fc ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x595d0946 empty_zero_page +EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x598fe3f0 write_inode_now +EXPORT_SYMBOL vmlinux 0x599df3b8 of_device_unregister +EXPORT_SYMBOL vmlinux 0x59a882a6 pci_save_state +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59adb265 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x59b3378a completion_done +EXPORT_SYMBOL vmlinux 0x59b78983 page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0x59bc7c67 pci_iounmap +EXPORT_SYMBOL vmlinux 0x59c3aa2c xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x59ca28c3 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x59cfa1be mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x59f3c3de mmc_put_card +EXPORT_SYMBOL vmlinux 0x5a025f7b arch_local_irq_restore +EXPORT_SYMBOL vmlinux 0x5a0aaa12 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a1eed72 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x5a216acf write_one_page +EXPORT_SYMBOL vmlinux 0x5a3e380d blk_complete_request +EXPORT_SYMBOL vmlinux 0x5a3ea205 tty_port_init +EXPORT_SYMBOL vmlinux 0x5a449cdb jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x5a4688de cfb_fillrect +EXPORT_SYMBOL vmlinux 0x5a4b7817 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x5a798490 input_flush_device +EXPORT_SYMBOL vmlinux 0x5a808e08 ilookup +EXPORT_SYMBOL vmlinux 0x5a8f2df7 vme_master_request +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove +EXPORT_SYMBOL vmlinux 0x5aa8aefc cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x5ac8db52 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x5acefab7 mutex_unlock +EXPORT_SYMBOL vmlinux 0x5ad937b3 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b43f1f1 rtas_service_present +EXPORT_SYMBOL vmlinux 0x5b4cf05a call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b74568a netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x5b782e5f tcp_req_err +EXPORT_SYMBOL vmlinux 0x5b7bfbda param_get_uint +EXPORT_SYMBOL vmlinux 0x5b8fd6ce dget_parent +EXPORT_SYMBOL vmlinux 0x5b9828c5 dma_spin_lock +EXPORT_SYMBOL vmlinux 0x5baec765 mmc_detect_change +EXPORT_SYMBOL vmlinux 0x5bb094b6 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x5bc10524 printk_emit +EXPORT_SYMBOL vmlinux 0x5bd02244 free_buffer_head +EXPORT_SYMBOL vmlinux 0x5c200574 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x5c3221be generic_file_open +EXPORT_SYMBOL vmlinux 0x5c37f319 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x5c5ac9dd blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x5c6400e5 __lock_page +EXPORT_SYMBOL vmlinux 0x5c7c5308 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x5c8cc638 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0x5c9846e3 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x5cb04a27 __destroy_inode +EXPORT_SYMBOL vmlinux 0x5cdce1ed mfd_add_devices +EXPORT_SYMBOL vmlinux 0x5cf30e10 __debugger_ipi +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5d1646a0 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x5d549f36 follow_down_one +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d58a832 compat_mc_setsockopt +EXPORT_SYMBOL vmlinux 0x5d8dea6f xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x5d93ebdb tcp_sendpage +EXPORT_SYMBOL vmlinux 0x5dc98035 lock_sock_nested +EXPORT_SYMBOL vmlinux 0x5dd1dffe inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x5dd970c7 napi_consume_skb +EXPORT_SYMBOL vmlinux 0x5ddaed9e mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x5e00c0fb lease_get_mtime +EXPORT_SYMBOL vmlinux 0x5e21cd91 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x5e21e706 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x5e336987 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x5e3a8a9c __wake_up +EXPORT_SYMBOL vmlinux 0x5e3bbe51 sock_no_accept +EXPORT_SYMBOL vmlinux 0x5e7441e0 locks_remove_posix +EXPORT_SYMBOL vmlinux 0x5e7701a3 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x5e800f90 elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x5e8105f0 param_ops_int +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5eb2f074 swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0x5ecdc458 kobject_get +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed315e5 param_set_invbool +EXPORT_SYMBOL vmlinux 0x5eddb914 lockref_put_return +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f042bc3 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x5f04fedf rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f0b0b85 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x5f16c2f0 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x5f393883 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x5f3d5db9 da903x_query_status +EXPORT_SYMBOL vmlinux 0x5f46544b audit_log +EXPORT_SYMBOL vmlinux 0x5f587f6d md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x5f5c0a8b pci_dev_driver +EXPORT_SYMBOL vmlinux 0x5f8a2728 isa_io_base +EXPORT_SYMBOL vmlinux 0x5f9203a4 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x5f99b18f mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5fdc392f fb_class +EXPORT_SYMBOL vmlinux 0x5feba23b tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x602a0d20 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x60454b05 vio_unregister_driver +EXPORT_SYMBOL vmlinux 0x605e0a5e ip_do_fragment +EXPORT_SYMBOL vmlinux 0x605e53ea __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x6067998d mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x6069cfe6 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x60717ed0 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x6095199d reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0x60953c5f ip_defrag +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60cfd910 nvm_unregister_target +EXPORT_SYMBOL vmlinux 0x60dc285d phy_drivers_register +EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x60f6700e dst_init +EXPORT_SYMBOL vmlinux 0x6101b261 tty_write_room +EXPORT_SYMBOL vmlinux 0x610698ac nf_log_unset +EXPORT_SYMBOL vmlinux 0x610766f9 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x610c52fc generic_ro_fops +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x612eb2d3 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x61411226 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x614bb773 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x616108a2 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x619571e9 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x61958ff4 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x61a73fb9 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x61abd4db mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x61af48b8 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0x61b380cc mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61bc7bc5 pcie_get_mps +EXPORT_SYMBOL vmlinux 0x61e19b4f sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x61eef2c9 _insb +EXPORT_SYMBOL vmlinux 0x61ef6170 __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0x62069d0c sock_setsockopt +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x62178c5e devm_memremap +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x622f956e pci_get_class +EXPORT_SYMBOL vmlinux 0x6238060f bio_reset +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x62979f5a jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x62b9e52b pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x62c9518b pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0x62cde0d3 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x62d24f6b simple_write_end +EXPORT_SYMBOL vmlinux 0x62de1b26 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x62fa7f49 proc_create_data +EXPORT_SYMBOL vmlinux 0x63097e0b skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x63396aec __debugger_break_match +EXPORT_SYMBOL vmlinux 0x634c7441 input_register_device +EXPORT_SYMBOL vmlinux 0x6372fedd insert_inode_locked +EXPORT_SYMBOL vmlinux 0x6373e8c0 mpage_writepage +EXPORT_SYMBOL vmlinux 0x637c6721 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x638e6a28 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x6391e070 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x639f592b param_ops_byte +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63b1ce10 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x63b28c3e dma_set_mask +EXPORT_SYMBOL vmlinux 0x63b657fe devm_free_irq +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63c5bbd6 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x63ccbc31 netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0x63cf18b3 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x63d60503 d_move +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x6410a3a1 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x64351118 serio_open +EXPORT_SYMBOL vmlinux 0x64397836 textsearch_register +EXPORT_SYMBOL vmlinux 0x644764b2 generic_getxattr +EXPORT_SYMBOL vmlinux 0x6449b54d nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x644e9b12 agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x64835008 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x6494c5b4 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x649ab52e revalidate_disk +EXPORT_SYMBOL vmlinux 0x64b0ec09 dev_change_carrier +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64cba5b9 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x650b0da1 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x652d98e9 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x65621872 revert_creds +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x65721b1c param_get_bool +EXPORT_SYMBOL vmlinux 0x6578ad5a pci_disable_device +EXPORT_SYMBOL vmlinux 0x658b9954 blk_delay_queue +EXPORT_SYMBOL vmlinux 0x65ad14db xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x65aedb5b inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x65bb58a2 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x65c88733 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x65cb4fa8 lease_modify +EXPORT_SYMBOL vmlinux 0x65d9c3c7 generic_permission +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x65eb74f1 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x6611e437 eth_header +EXPORT_SYMBOL vmlinux 0x661bfd86 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x6622aec7 block_truncate_page +EXPORT_SYMBOL vmlinux 0x663eef7d may_umount_tree +EXPORT_SYMBOL vmlinux 0x6665506e phy_driver_register +EXPORT_SYMBOL vmlinux 0x666c4dc2 kern_path +EXPORT_SYMBOL vmlinux 0x66754be3 gen_new_estimator +EXPORT_SYMBOL vmlinux 0x6678d97e ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x668cd502 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x66a21250 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x66b46c03 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x66fe1024 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x66ff6398 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x6700d6df twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x670f8ba1 input_set_keycode +EXPORT_SYMBOL vmlinux 0x671cc1c0 skb_tx_error +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x67591db9 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create +EXPORT_SYMBOL vmlinux 0x677d81c4 mount_bdev +EXPORT_SYMBOL vmlinux 0x6786095a blk_put_queue +EXPORT_SYMBOL vmlinux 0x67a79aeb get_user_pages +EXPORT_SYMBOL vmlinux 0x67b52396 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67c13883 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x67c289ab __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x67e34bff pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0x67e96467 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x67f3ecb1 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x683f23f3 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x685e3aae jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x68609857 complete_and_exit +EXPORT_SYMBOL vmlinux 0x6863831d dquot_scan_active +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x6887c057 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x688befde tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68a174e5 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x68ab3d08 nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0x68b598eb input_reset_device +EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x68c7d25d skb_dequeue +EXPORT_SYMBOL vmlinux 0x68da45a2 register_quota_format +EXPORT_SYMBOL vmlinux 0x68e799a7 i2c_master_send +EXPORT_SYMBOL vmlinux 0x68fbb5d9 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x694c19d2 tcp_seq_open +EXPORT_SYMBOL vmlinux 0x6963d85b agp_collect_device_status +EXPORT_SYMBOL vmlinux 0x6965e460 blk_get_request +EXPORT_SYMBOL vmlinux 0x696d3e18 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6999602d tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69add0e8 km_policy_expired +EXPORT_SYMBOL vmlinux 0x69b8fafa mntput +EXPORT_SYMBOL vmlinux 0x69b9a794 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x69ce08cf pci_request_regions +EXPORT_SYMBOL vmlinux 0x69f2346a __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x69f52034 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a287e86 set_page_dirty +EXPORT_SYMBOL vmlinux 0x6a332ea5 pci_get_device +EXPORT_SYMBOL vmlinux 0x6a4a8438 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x6a5570ec pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6a89f896 param_array_ops +EXPORT_SYMBOL vmlinux 0x6a8fe81b udp_proc_unregister +EXPORT_SYMBOL vmlinux 0x6ac773cb lock_rename +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b5dfe73 __debugger_bpt +EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6b66c889 fence_free +EXPORT_SYMBOL vmlinux 0x6b6ce73a mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x6b7d2e56 vga_tryget +EXPORT_SYMBOL vmlinux 0x6b80959e __vfs_read +EXPORT_SYMBOL vmlinux 0x6b93c24c phy_suspend +EXPORT_SYMBOL vmlinux 0x6bbe5fcd of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x6bbe75e7 elevator_change +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bc5fc5c block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x6bc701ba ps2_init +EXPORT_SYMBOL vmlinux 0x6bd2b087 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6bdfaca6 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer +EXPORT_SYMBOL vmlinux 0x6c0b67b4 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x6c1026fc abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x6c380732 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x6c421b41 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c7cc840 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x6c87333f padata_remove_cpu +EXPORT_SYMBOL vmlinux 0x6c9c8079 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x6c9dde09 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x6c9ed7e6 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x6cb181fb phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x6ccd8ce6 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x6cdc5781 security_path_rmdir +EXPORT_SYMBOL vmlinux 0x6ce22996 __register_chrdev +EXPORT_SYMBOL vmlinux 0x6ce6d234 register_key_type +EXPORT_SYMBOL vmlinux 0x6cfd92de find_vma +EXPORT_SYMBOL vmlinux 0x6cfdaffd open_check_o_direct +EXPORT_SYMBOL vmlinux 0x6d0157ac __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x6d02515e abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d209b4c phy_device_create +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d2f549d md_update_sb +EXPORT_SYMBOL vmlinux 0x6d3d8687 skb_put +EXPORT_SYMBOL vmlinux 0x6d63edb6 d_instantiate_unique +EXPORT_SYMBOL vmlinux 0x6d84f99a sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x6da73f3e pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x6da928f4 _insw_ns +EXPORT_SYMBOL vmlinux 0x6dafbc6f kern_path_create +EXPORT_SYMBOL vmlinux 0x6dc9df29 get_super +EXPORT_SYMBOL vmlinux 0x6ddba82a compat_tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e13f19d vme_bus_num +EXPORT_SYMBOL vmlinux 0x6e3c8fc4 file_remove_privs +EXPORT_SYMBOL vmlinux 0x6e4939fe get_gendisk +EXPORT_SYMBOL vmlinux 0x6e4d1d44 d_genocide +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e7d4f0b sk_receive_skb +EXPORT_SYMBOL vmlinux 0x6e7f0fd2 cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x6e8ae907 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x6e8dad48 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x6e94c609 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x6e99390c scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6eb61ca7 agp_bridge +EXPORT_SYMBOL vmlinux 0x6ecc5aa8 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x6eda024b blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x6ee0c799 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x6f0fa557 kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash +EXPORT_SYMBOL vmlinux 0x6f241a72 submit_bh +EXPORT_SYMBOL vmlinux 0x6f3aa7a9 fsnotify_get_group +EXPORT_SYMBOL vmlinux 0x6f3ccb74 compat_ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x6f4a3377 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x6f7b4af5 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x6f81e3a5 lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6f89ab0c tcf_em_register +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fc35ca3 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fecd212 sk_free +EXPORT_SYMBOL vmlinux 0x6ff2a80f of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x70129ab6 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x701b2fdf release_pages +EXPORT_SYMBOL vmlinux 0x702606f1 xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7052ec4b of_gpio_simple_xlate +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x706bc1b8 d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync +EXPORT_SYMBOL vmlinux 0x706d1498 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x70e54210 __sb_start_write +EXPORT_SYMBOL vmlinux 0x70f6a5b5 tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x715c7e54 mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0x71606e93 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x7162613c of_find_property +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x71714d61 genphy_update_link +EXPORT_SYMBOL vmlinux 0x7174f139 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x71852321 ptp_clock_index +EXPORT_SYMBOL vmlinux 0x719ace7f xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x71a1afa7 free_task +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71aca86c agp_free_memory +EXPORT_SYMBOL vmlinux 0x71d68e7c igrab +EXPORT_SYMBOL vmlinux 0x71dc6626 pci_find_bus +EXPORT_SYMBOL vmlinux 0x71de1dd8 neigh_xmit +EXPORT_SYMBOL vmlinux 0x71ee0b02 param_ops_bint +EXPORT_SYMBOL vmlinux 0x7204080a i8042_install_filter +EXPORT_SYMBOL vmlinux 0x722ea05a tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x724ca365 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x724e4248 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x726bb738 md_check_recovery +EXPORT_SYMBOL vmlinux 0x726d3c8f dcb_getapp +EXPORT_SYMBOL vmlinux 0x7271bb72 deactivate_super +EXPORT_SYMBOL vmlinux 0x729fffe0 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x72a5137b ppp_unit_number +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72b6fa56 fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x72c98139 __arch_hweight64 +EXPORT_SYMBOL vmlinux 0x72ceb068 account_page_dirtied +EXPORT_SYMBOL vmlinux 0x72dd3c76 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x72e8e294 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72f12df9 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x730f776e neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x730fcf44 bdi_register_owner +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x731a747a pci_io_base +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x734858c6 blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x735d8503 add_wait_queue +EXPORT_SYMBOL vmlinux 0x7362514d neigh_connected_output +EXPORT_SYMBOL vmlinux 0x73710a3e dqstats +EXPORT_SYMBOL vmlinux 0x73776b4f sockfd_lookup +EXPORT_SYMBOL vmlinux 0x737c9942 padata_free +EXPORT_SYMBOL vmlinux 0x737ee111 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x73b6043b skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x73b916bc try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x73bc8c96 alloc_disk +EXPORT_SYMBOL vmlinux 0x7404be78 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x7408acfc file_update_time +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x741f9da6 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x74318636 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x74404d85 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x74478287 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x74941d58 input_set_capability +EXPORT_SYMBOL vmlinux 0x749965c6 dquot_resume +EXPORT_SYMBOL vmlinux 0x749ea464 seq_lseek +EXPORT_SYMBOL vmlinux 0x74a04b45 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c6b1a8 srp_rport_put +EXPORT_SYMBOL vmlinux 0x74cd546c i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74e68050 of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x74ee5181 compat_sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x74f666d0 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x75124d80 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x751a115b __devm_release_region +EXPORT_SYMBOL vmlinux 0x752d94b9 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x7532588a alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x7536ab8f search_binary_handler +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x75745c33 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x757a5922 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x758c16f9 cdev_add +EXPORT_SYMBOL vmlinux 0x7597580b inet6_add_offload +EXPORT_SYMBOL vmlinux 0x7598eeb3 tcf_register_action +EXPORT_SYMBOL vmlinux 0x75994700 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0x75995d1f xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x759ead7f pci_get_slot +EXPORT_SYMBOL vmlinux 0x75a292c4 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x75b7ef66 save_mount_options +EXPORT_SYMBOL vmlinux 0x75bd717a serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75be6702 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x75ce7101 blk_peek_request +EXPORT_SYMBOL vmlinux 0x75f14ced ibmebus_register_driver +EXPORT_SYMBOL vmlinux 0x75f670fa cad_pid +EXPORT_SYMBOL vmlinux 0x7604c833 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x761ccd64 sock_wfree +EXPORT_SYMBOL vmlinux 0x7628673c delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x762c8676 __vio_register_driver +EXPORT_SYMBOL vmlinux 0x763f916a nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x7645af6f sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0x7645e571 srp_rport_get +EXPORT_SYMBOL vmlinux 0x76468c3e security_path_link +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x76487198 nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x764b1fd1 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x764bd77c request_resource +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x76632489 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x7663e1ce iget5_locked +EXPORT_SYMBOL vmlinux 0x7674d817 inode_init_owner +EXPORT_SYMBOL vmlinux 0x7677bb48 of_get_next_child +EXPORT_SYMBOL vmlinux 0x767cefeb input_unregister_handle +EXPORT_SYMBOL vmlinux 0x7688bb95 uart_match_port +EXPORT_SYMBOL vmlinux 0x76a57587 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x76b59b33 cpu_sibling_map +EXPORT_SYMBOL vmlinux 0x76c51545 noop_qdisc +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76f3977a blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x771e32cd netdev_update_features +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x77526ac4 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x776116a1 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x7765fa33 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x776ae4af dev_alloc_name +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77a8141c max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x77b2227d mapping_tagged +EXPORT_SYMBOL vmlinux 0x77b81565 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77c143cd tcp_prot +EXPORT_SYMBOL vmlinux 0x77cdeb6d have_submounts +EXPORT_SYMBOL vmlinux 0x77d3f48b tso_build_data +EXPORT_SYMBOL vmlinux 0x77ed1345 dev_get_stats +EXPORT_SYMBOL vmlinux 0x77f737ea dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x782ed6d3 param_set_ushort +EXPORT_SYMBOL vmlinux 0x7830b04f hvc_put_chars +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x786a4154 __bforget +EXPORT_SYMBOL vmlinux 0x787b0a53 seq_write +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x789bcae1 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x789d556d pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x78a9e905 _numa_mem_ +EXPORT_SYMBOL vmlinux 0x78d82aca blk_end_request_all +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78f629ba blk_free_tags +EXPORT_SYMBOL vmlinux 0x78f72384 register_qdisc +EXPORT_SYMBOL vmlinux 0x78fe1cd0 devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0x791537e0 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x7916fd56 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x792958e5 of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x793295f1 pci_bus_type +EXPORT_SYMBOL vmlinux 0x79650800 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x796bc4b6 kfree_put_link +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x797a99ef cfb_imageblit +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x7985d043 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x7992c5c9 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x7995e779 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x799b3ca2 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79b193e7 blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x79b7c8e4 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x79f7f87a vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x7a27d24a kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x7a398131 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a6cdedc do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a7cc38f try_to_release_page +EXPORT_SYMBOL vmlinux 0x7a82cd2c pci_write_vpd +EXPORT_SYMBOL vmlinux 0x7a8ccf54 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7ab411d5 pci_release_region +EXPORT_SYMBOL vmlinux 0x7ab72e76 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x7ab76181 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ada5bb7 secpath_dup +EXPORT_SYMBOL vmlinux 0x7aea5807 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x7aecf403 km_state_notify +EXPORT_SYMBOL vmlinux 0x7b10f1c3 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x7b16235f hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b2aef6c __krealloc +EXPORT_SYMBOL vmlinux 0x7b3c7b83 msi_bitmap_free_hwirqs +EXPORT_SYMBOL vmlinux 0x7b4183ac kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x7b5a44f5 bdevname +EXPORT_SYMBOL vmlinux 0x7b5d1b43 single_release +EXPORT_SYMBOL vmlinux 0x7b637e28 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x7b6ca6e5 get_phy_device +EXPORT_SYMBOL vmlinux 0x7b7f0c99 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x7b887713 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x7b8afe3b blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x7b9041df seq_puts +EXPORT_SYMBOL vmlinux 0x7b9ed868 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x7ba917d4 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x7bafad19 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x7bb756cc neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x7bd3a3e2 ata_print_version +EXPORT_SYMBOL vmlinux 0x7bd82113 dump_emit +EXPORT_SYMBOL vmlinux 0x7bf91c79 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x7c003aef _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x7c132043 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c14f1f6 d_obtain_root +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c1897c2 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x7c28d080 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0x7c28d867 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x7c2d098f krealloc +EXPORT_SYMBOL vmlinux 0x7c449fa4 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c4ac635 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x7c61340c __release_region +EXPORT_SYMBOL vmlinux 0x7c6d7fed register_sysctl +EXPORT_SYMBOL vmlinux 0x7c7a3359 sk_capable +EXPORT_SYMBOL vmlinux 0x7c7c9940 devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0x7c82ba27 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x7c878dc9 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x7c898a8d gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x7c8faa24 fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0x7c9479ee agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cd89637 of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7cee7f3a mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7d08eb02 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d3c180c nf_log_packet +EXPORT_SYMBOL vmlinux 0x7d41b07b filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x7d507943 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x7d518284 mmc_align_data_size +EXPORT_SYMBOL vmlinux 0x7d5b2fc4 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x7d5e358b mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0x7d6d2ddd __free_pages +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d9514c1 node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x7d951c60 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x7d96a621 blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0x7da90d3b napi_disable +EXPORT_SYMBOL vmlinux 0x7dc97879 rtas_get_error_log_max +EXPORT_SYMBOL vmlinux 0x7dd5306d mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x7de5b44d blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e1c9d6b xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x7e226fa6 blk_requeue_request +EXPORT_SYMBOL vmlinux 0x7e29a426 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x7e307f15 get_io_context +EXPORT_SYMBOL vmlinux 0x7e46a578 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x7e4c537e start_tty +EXPORT_SYMBOL vmlinux 0x7e5a7311 nvm_erase_blk +EXPORT_SYMBOL vmlinux 0x7e79acbc ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x7e7cb098 finish_no_open +EXPORT_SYMBOL vmlinux 0x7e805720 devm_memunmap +EXPORT_SYMBOL vmlinux 0x7e88da1a __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x7ea38ec4 unlock_page +EXPORT_SYMBOL vmlinux 0x7eaab944 pnv_pci_get_npu_dev +EXPORT_SYMBOL vmlinux 0x7eb3bfea swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0x7ec01d22 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x7ec6b883 sock_kfree_s +EXPORT_SYMBOL vmlinux 0x7ecf0205 mntget +EXPORT_SYMBOL vmlinux 0x7ee31640 ppp_channel_index +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f0370fe dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x7f20a568 seq_open +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f263ed9 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x7f295612 fb_show_logo +EXPORT_SYMBOL vmlinux 0x7f35ca84 vfs_readf +EXPORT_SYMBOL vmlinux 0x7f4473bb kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x7f546887 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x7f574cd7 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f6a0095 vga_get +EXPORT_SYMBOL vmlinux 0x7f75c967 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x7f8ea13e __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x7f9fe09b iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x7fbd10d2 radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fe38f48 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x7ff5383e cpu_active_mask +EXPORT_SYMBOL vmlinux 0x8012e284 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x802c139a qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x803540b4 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x80446e5b phy_attach +EXPORT_SYMBOL vmlinux 0x80665671 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x8068c15c kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x8071d1a8 cpu_all_bits +EXPORT_SYMBOL vmlinux 0x80791a8c radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0x807ed8a1 of_phy_attach +EXPORT_SYMBOL vmlinux 0x80802bbe iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x80871574 param_ops_ullong +EXPORT_SYMBOL vmlinux 0x809eee07 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x80a20860 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x80b4e06a pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x80bd508e fddi_change_mtu +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80ce0b61 key_unlink +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x810585e1 unlock_rename +EXPORT_SYMBOL vmlinux 0x811fadba agp_backend_release +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x817acd31 skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x818da6ea mmc_flush_cache +EXPORT_SYMBOL vmlinux 0x81a07f4e _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x81c0a84f rtas_set_indicator +EXPORT_SYMBOL vmlinux 0x81c5c88c of_translate_address +EXPORT_SYMBOL vmlinux 0x81d0a205 __mdiobus_register +EXPORT_SYMBOL vmlinux 0x81d29d59 __check_sticky +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81dd8a93 iget_failed +EXPORT_SYMBOL vmlinux 0x81ee78ea tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x81f25ef7 udp_disconnect +EXPORT_SYMBOL vmlinux 0x82049a07 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x820e1879 default_file_splice_read +EXPORT_SYMBOL vmlinux 0x822c5a8c fence_add_callback +EXPORT_SYMBOL vmlinux 0x822f510f pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x82303481 pps_lookup_dev +EXPORT_SYMBOL vmlinux 0x82413b03 pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0x82458f7f radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x824a3acc generic_file_fsync +EXPORT_SYMBOL vmlinux 0x825d09d2 mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0x825ea1bd netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x82692065 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x82742a0d migrate_page_copy +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x82a613d0 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82c4659b dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x82ce2f6a __kernel_write +EXPORT_SYMBOL vmlinux 0x82d6b0d0 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x82e5a238 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x82e85ff3 sock_create +EXPORT_SYMBOL vmlinux 0x82ea3751 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x832fb64c from_kuid +EXPORT_SYMBOL vmlinux 0x8330b257 dev_notice +EXPORT_SYMBOL vmlinux 0x8373d9aa ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x8376aace generic_start_io_acct +EXPORT_SYMBOL vmlinux 0x838a0530 dev_alert +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x83968671 is_bad_inode +EXPORT_SYMBOL vmlinux 0x8396fa38 bio_clone_fast +EXPORT_SYMBOL vmlinux 0x83a37c81 skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0x83a5d8cb kfree_skb_list +EXPORT_SYMBOL vmlinux 0x83a655e8 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83f156b5 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x841dc298 fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0x844e3767 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x848c35ea open_exec +EXPORT_SYMBOL vmlinux 0x849d971d xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x84a6783b dput +EXPORT_SYMBOL vmlinux 0x84b7e5cf proto_register +EXPORT_SYMBOL vmlinux 0x84bd69bf dq_data_lock +EXPORT_SYMBOL vmlinux 0x84d25c84 __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x84df6f4e vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x84e04fe8 tty_port_put +EXPORT_SYMBOL vmlinux 0x84e062d7 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x84f625f7 netdev_master_upper_dev_link_private +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x851e3023 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x852a0745 user_revoke +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x856b8404 do_truncate +EXPORT_SYMBOL vmlinux 0x8588ac19 get_task_io_context +EXPORT_SYMBOL vmlinux 0x8597eb47 plpar_hcall +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85bb1fe4 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x85d227f7 locks_free_lock +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x860714c6 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x862d30e3 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x86366b87 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x863c8067 i2c_master_recv +EXPORT_SYMBOL vmlinux 0x864ce729 __block_write_begin +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x8675b120 dev_driver_string +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86a4a752 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x86b8147f dev_close +EXPORT_SYMBOL vmlinux 0x86bfaf5e kdb_current_task +EXPORT_SYMBOL vmlinux 0x86c5e175 security_task_getsecid +EXPORT_SYMBOL vmlinux 0x86d170fd __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x86db1cbb rtas_flash_term_hook +EXPORT_SYMBOL vmlinux 0x86ddc35f __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x86e54f28 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x86e7d36a ppp_input +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x8703e88a of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0x870c5479 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x871b1525 skb_split +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x872f32d2 dev_activate +EXPORT_SYMBOL vmlinux 0x873a53ea __arch_hweight8 +EXPORT_SYMBOL vmlinux 0x875167a8 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x8753e862 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x87553a40 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x87790cc8 param_get_int +EXPORT_SYMBOL vmlinux 0x877980cf paca +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x8794da9e devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x879c6d6f __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x87bcbb50 up_write +EXPORT_SYMBOL vmlinux 0x8805d773 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x882592fc vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x882db37f neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x883cfd0a import_iovec +EXPORT_SYMBOL vmlinux 0x885bb0db rfkill_alloc +EXPORT_SYMBOL vmlinux 0x8860186a security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x887fa47e __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x888a9d2b eth_gro_complete +EXPORT_SYMBOL vmlinux 0x8893ca0d dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x88ac7cca fb_blank +EXPORT_SYMBOL vmlinux 0x88b26517 pps_unregister_source +EXPORT_SYMBOL vmlinux 0x88b335ea validate_sp +EXPORT_SYMBOL vmlinux 0x88b50645 nf_log_trace +EXPORT_SYMBOL vmlinux 0x88e3d2ee make_kuid +EXPORT_SYMBOL vmlinux 0x88f79178 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x890eb1f4 inode_change_ok +EXPORT_SYMBOL vmlinux 0x89128eb5 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x89151268 iterate_dir +EXPORT_SYMBOL vmlinux 0x891fbb10 mempool_destroy +EXPORT_SYMBOL vmlinux 0x892de3fb __nla_put +EXPORT_SYMBOL vmlinux 0x893032af sync_filesystem +EXPORT_SYMBOL vmlinux 0x8933a8da skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x895108f3 proc_dostring +EXPORT_SYMBOL vmlinux 0x895577b0 numa_cpu_lookup_table +EXPORT_SYMBOL vmlinux 0x89684bf1 elv_register_queue +EXPORT_SYMBOL vmlinux 0x896baab8 i2c_verify_client +EXPORT_SYMBOL vmlinux 0x89797060 _raw_read_lock +EXPORT_SYMBOL vmlinux 0x897a0b3e nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0x8980fb0b netdev_crit +EXPORT_SYMBOL vmlinux 0x89a21246 genphy_suspend +EXPORT_SYMBOL vmlinux 0x89a45044 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89bc8893 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x8a107aaa dev_uc_sync +EXPORT_SYMBOL vmlinux 0x8a15e68e phy_stop +EXPORT_SYMBOL vmlinux 0x8a18c0d5 nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x8a1901e6 simple_setattr +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a58dfb5 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x8a5aab2d param_ops_long +EXPORT_SYMBOL vmlinux 0x8a5f6b33 kernel_listen +EXPORT_SYMBOL vmlinux 0x8a66660e jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x8a72e601 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a84a6e5 netdev_notice +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8acade25 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0x8ada39e1 dst_release +EXPORT_SYMBOL vmlinux 0x8adf5d15 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x8afe4a5a dev_trans_start +EXPORT_SYMBOL vmlinux 0x8b2cfb0e path_nosuid +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b7c336a pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b9a9668 vfs_read +EXPORT_SYMBOL vmlinux 0x8be11a5c input_allocate_device +EXPORT_SYMBOL vmlinux 0x8bf2ae1f fsl_lbc_addr +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c249924 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x8c2f28ad nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x8c3597bc km_is_alive +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c972204 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x8ca6bf60 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x8cc1d777 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cc9fc06 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x8ceb6273 arp_send +EXPORT_SYMBOL vmlinux 0x8cf9911f __vfs_write +EXPORT_SYMBOL vmlinux 0x8cfaacc6 consume_skb +EXPORT_SYMBOL vmlinux 0x8d009eba set_disk_ro +EXPORT_SYMBOL vmlinux 0x8d015dd4 __bswapdi2 +EXPORT_SYMBOL vmlinux 0x8d155294 rtnl_notify +EXPORT_SYMBOL vmlinux 0x8d361825 sget +EXPORT_SYMBOL vmlinux 0x8d44698f is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d7fb5a5 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x8d944cbb copy_in_user +EXPORT_SYMBOL vmlinux 0x8da76c59 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x8dad5b4b __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x8dadcc6a gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x8dbdc2cb gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x8dc86b40 dquot_drop +EXPORT_SYMBOL vmlinux 0x8ddbbf82 copy_to_iter +EXPORT_SYMBOL vmlinux 0x8de0b5ac mempool_create +EXPORT_SYMBOL vmlinux 0x8df1482b unregister_binfmt +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8df97bd2 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x8dff40a6 input_unregister_device +EXPORT_SYMBOL vmlinux 0x8e09ea56 bio_flush_dcache_pages +EXPORT_SYMBOL vmlinux 0x8e21e64d ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x8e2514be fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0x8e67a6a2 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e7d7cf9 elevator_init +EXPORT_SYMBOL vmlinux 0x8ea842bf call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x8eb8476a of_dev_put +EXPORT_SYMBOL vmlinux 0x8ec04552 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x8ec4604a tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x8ed0e13b tty_unthrottle +EXPORT_SYMBOL vmlinux 0x8ed9f6d6 down_read +EXPORT_SYMBOL vmlinux 0x8f1f5952 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x8f289127 devfreq_add_device +EXPORT_SYMBOL vmlinux 0x8f2c5907 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x8f645ee4 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x8f85f835 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x8f976ed3 iterate_mounts +EXPORT_SYMBOL vmlinux 0x8fc15bf6 iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0x8fc59f9b rtas_offline_cpus_mask +EXPORT_SYMBOL vmlinux 0x8fc8899c vfs_whiteout +EXPORT_SYMBOL vmlinux 0x8fdc9af6 param_set_short +EXPORT_SYMBOL vmlinux 0x900caca3 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x900d2a1f msi_bitmap_alloc_hwirqs +EXPORT_SYMBOL vmlinux 0x901f3b6b param_ops_short +EXPORT_SYMBOL vmlinux 0x9023a30a __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x90349b13 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x90448829 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x9045d202 of_parse_phandle +EXPORT_SYMBOL vmlinux 0x9045d322 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x904da605 bio_add_page +EXPORT_SYMBOL vmlinux 0x90559869 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0x90895663 inet_put_port +EXPORT_SYMBOL vmlinux 0x909a426e check_disk_size_change +EXPORT_SYMBOL vmlinux 0x90e16f18 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x90e8d969 blk_start_request +EXPORT_SYMBOL vmlinux 0x9104b197 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x910b6393 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x910facd1 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x9118bb9b dev_warn +EXPORT_SYMBOL vmlinux 0x912557ce rtas_busy_delay +EXPORT_SYMBOL vmlinux 0x9135c71c __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x91452caa keyring_alloc +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x91515d14 nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0x91573126 tty_register_driver +EXPORT_SYMBOL vmlinux 0x915e1208 tb_ticks_per_usec +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x9168c033 rtas_get_sensor +EXPORT_SYMBOL vmlinux 0x916b5fc9 of_mdio_parse_addr +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x9176177a bd_set_size +EXPORT_SYMBOL vmlinux 0x917b578b udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x91840e80 invalidate_partition +EXPORT_SYMBOL vmlinux 0x91862fa3 dma_iommu_ops +EXPORT_SYMBOL vmlinux 0x918e4aaa inet_recvmsg +EXPORT_SYMBOL vmlinux 0x919d1163 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x91ac822f vscnprintf +EXPORT_SYMBOL vmlinux 0x91d379f9 i2c_release_client +EXPORT_SYMBOL vmlinux 0x91d37f68 dev_open +EXPORT_SYMBOL vmlinux 0x91d7e82a compat_sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x91e46711 key_revoke +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x91fe89cc blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x920baa95 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x92293940 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x922f7ab4 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x92614da7 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x926aa969 agp_copy_info +EXPORT_SYMBOL vmlinux 0x926bfb7f tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x926d99b0 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x927de754 mach_pseries +EXPORT_SYMBOL vmlinux 0x92861d00 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x928b16b5 seq_release_private +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x9291d615 sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0x9296fac5 single_open_size +EXPORT_SYMBOL vmlinux 0x929fc7fc tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm +EXPORT_SYMBOL vmlinux 0x92bf636b of_device_register +EXPORT_SYMBOL vmlinux 0x92e18bb7 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x92ef8023 proc_symlink +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x93124adb keyring_search +EXPORT_SYMBOL vmlinux 0x9322d9dd __kfree_skb +EXPORT_SYMBOL vmlinux 0x93472fce generic_show_options +EXPORT_SYMBOL vmlinux 0x9354fcde ibmebus_free_irq +EXPORT_SYMBOL vmlinux 0x936e8100 md_reload_sb +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x9378a72a jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93d0857c pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x93da03ed dma_direct_ops +EXPORT_SYMBOL vmlinux 0x93da2538 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x93f2d2de param_set_long +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x94102717 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x9419d0d8 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x941e8437 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x94346d37 nonseekable_open +EXPORT_SYMBOL vmlinux 0x94462f5e cdev_init +EXPORT_SYMBOL vmlinux 0x94534258 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x945882c4 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94987995 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x949b9361 padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0x94a5cc3b __find_get_block +EXPORT_SYMBOL vmlinux 0x94e19a61 inc_nlink +EXPORT_SYMBOL vmlinux 0x94e42605 of_mm_gpiochip_add +EXPORT_SYMBOL vmlinux 0x94f449d7 __blk_run_queue +EXPORT_SYMBOL vmlinux 0x94f92ab3 dump_skip +EXPORT_SYMBOL vmlinux 0x950a851e nvm_end_io +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x9514151a _mcount +EXPORT_SYMBOL vmlinux 0x9519a168 block_write_end +EXPORT_SYMBOL vmlinux 0x9521e509 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x9524b0ae _outsb +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x9546bf1d blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x9557e80c jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x955aa9c9 notify_change +EXPORT_SYMBOL vmlinux 0x956bc1ee clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x9575f003 of_node_put +EXPORT_SYMBOL vmlinux 0x95e18864 devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0x95ea8d5a netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x95f0bbb3 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x961908c2 security_path_unlink +EXPORT_SYMBOL vmlinux 0x961ebf2e ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x9621a819 dev_printk_emit +EXPORT_SYMBOL vmlinux 0x96230f47 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x96333ffd ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x966648df cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x967a3bae dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x968e6f0b tty_kref_put +EXPORT_SYMBOL vmlinux 0x969987fc lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x96a029bd __register_binfmt +EXPORT_SYMBOL vmlinux 0x96a083d4 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96bc0fa5 to_ndd +EXPORT_SYMBOL vmlinux 0x96c3b7c8 blk_register_region +EXPORT_SYMBOL vmlinux 0x96c3c61b mmc_free_host +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96f8e99e dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x9702f99d swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x970f055e padata_do_serial +EXPORT_SYMBOL vmlinux 0x9743ce70 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x9748927f _outsw_ns +EXPORT_SYMBOL vmlinux 0x974c7cb5 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x9754e0e5 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x9758e064 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x9762c6f2 vm_insert_page +EXPORT_SYMBOL vmlinux 0x977f5f28 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x97868aef __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97af46c7 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x97afba7b proc_douintvec +EXPORT_SYMBOL vmlinux 0x97b4238c param_set_bint +EXPORT_SYMBOL vmlinux 0x97ba1af0 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x97ebf39b phy_disconnect +EXPORT_SYMBOL vmlinux 0x97ed774e sock_sendmsg +EXPORT_SYMBOL vmlinux 0x97f03d6f vio_cmo_entitlement_update +EXPORT_SYMBOL vmlinux 0x98018886 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x981d6f97 simple_fill_super +EXPORT_SYMBOL vmlinux 0x9821221f mmc_fixup_device +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x98314c3a tcp_proc_register +EXPORT_SYMBOL vmlinux 0x9835592b set_create_files_as +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x987fc124 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x9893855d pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x98ab9953 misc_deregister +EXPORT_SYMBOL vmlinux 0x98b64c0b nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x98b9f163 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x98bc2adb dquot_acquire +EXPORT_SYMBOL vmlinux 0x98bdc3ef inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x98c68c41 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x98c82888 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen +EXPORT_SYMBOL vmlinux 0x98d41c04 free_page_put_link +EXPORT_SYMBOL vmlinux 0x98ebc98f posix_test_lock +EXPORT_SYMBOL vmlinux 0x98f113bf inet_add_offload +EXPORT_SYMBOL vmlinux 0x99195078 vsnprintf +EXPORT_SYMBOL vmlinux 0x9931a5c1 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x99498a85 swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x995d7ad3 qdisc_list_del +EXPORT_SYMBOL vmlinux 0x995d9b5e mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x99665ec7 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x99848f3c generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x998d52c9 bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x9992f62a phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x9996b742 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99afe916 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x99bb68ce scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x99c9b991 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x99d3a43c dm_table_get_size +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99e8442c __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x99f5836d tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x99ffeee6 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a225cf1 fb_find_mode +EXPORT_SYMBOL vmlinux 0x9a6d3f46 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x9a9f851e __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x9acddbc5 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x9ad3eaf9 netdev_info +EXPORT_SYMBOL vmlinux 0x9ada87ff pnv_phb_to_cxl_mode +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9af9c14f flush_dcache_icache_page +EXPORT_SYMBOL vmlinux 0x9b0fa0c1 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x9b1fbc43 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x9b2a6b3b inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b53fc5f netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x9b7e85a6 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9ba90188 bio_integrity_endio +EXPORT_SYMBOL vmlinux 0x9baa6595 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x9bb6a733 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x9bd343d2 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x9bd87e8c tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c6de867 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x9c6f7fa3 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x9ca62ec3 tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cae36e4 lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0x9cca084b srp_start_tl_fail_timers +EXPORT_SYMBOL vmlinux 0x9cd62a9c sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x9ce82285 input_grab_device +EXPORT_SYMBOL vmlinux 0x9cf1a258 serio_reconnect +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d0ff847 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x9d14983a ppc_enable_pmcs +EXPORT_SYMBOL vmlinux 0x9d23e8b1 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d7a256c fb_set_cmap +EXPORT_SYMBOL vmlinux 0x9d7ce8dd _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x9d94aa3f set_wb_congested +EXPORT_SYMBOL vmlinux 0x9d9dfc18 load_fp_state +EXPORT_SYMBOL vmlinux 0x9da05e10 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x9dacd4bd blkdev_get +EXPORT_SYMBOL vmlinux 0x9dc05333 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x9decedb6 padata_alloc +EXPORT_SYMBOL vmlinux 0x9dfeb89f __mutex_init +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e2f8c90 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9e34257e bitmap_unplug +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e5047a2 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x9e513c77 kernel_connect +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e665a18 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x9e6db2ea pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e943de6 __tcf_hash_release +EXPORT_SYMBOL vmlinux 0x9e97375d rtas_busy_delay_time +EXPORT_SYMBOL vmlinux 0x9e9d145c sk_wait_data +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea09dd7 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource +EXPORT_SYMBOL vmlinux 0x9ed35e4e __breadahead +EXPORT_SYMBOL vmlinux 0x9ef05851 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x9efa42d1 seq_file_path +EXPORT_SYMBOL vmlinux 0x9f04b912 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x9f0a3a3d __pagevec_release +EXPORT_SYMBOL vmlinux 0x9f17ae67 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x9f1b2096 udp_ioctl +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f5a7af6 clear_wb_congested +EXPORT_SYMBOL vmlinux 0x9f5fd45d blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x9f60e474 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x9f68b21f __f_setown +EXPORT_SYMBOL vmlinux 0x9f7c1be8 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x9f81ce2a bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x9f889442 sg_miter_start +EXPORT_SYMBOL vmlinux 0x9f911629 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9faef447 ppc_md +EXPORT_SYMBOL vmlinux 0x9fc00878 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x9fd19ee2 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fe0156c sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x9ff4760b ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa0253a1c km_query +EXPORT_SYMBOL vmlinux 0xa02567f7 key_put +EXPORT_SYMBOL vmlinux 0xa03ef066 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa0442fed of_find_node_by_name +EXPORT_SYMBOL vmlinux 0xa0472678 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa05a4d2c sock_no_sendpage +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa0722e44 pci_domain_nr +EXPORT_SYMBOL vmlinux 0xa0773c95 blk_queue_bounce +EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa07c19d0 from_kgid_munged +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa0ff74d6 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa10944b4 pci_iomap +EXPORT_SYMBOL vmlinux 0xa11c4f71 bdget +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa13c0b17 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa145c931 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0xa149974f console_stop +EXPORT_SYMBOL vmlinux 0xa1510278 sk_stream_error +EXPORT_SYMBOL vmlinux 0xa15f3663 dentry_path_raw +EXPORT_SYMBOL vmlinux 0xa164fa5c user_path_create +EXPORT_SYMBOL vmlinux 0xa1830f32 scsi_register +EXPORT_SYMBOL vmlinux 0xa1996710 nd_iostat_end +EXPORT_SYMBOL vmlinux 0xa1a49781 nvm_dev_factory +EXPORT_SYMBOL vmlinux 0xa1a5bcb8 page_put_link +EXPORT_SYMBOL vmlinux 0xa1ae0a6f md_write_start +EXPORT_SYMBOL vmlinux 0xa1b75337 scsi_host_put +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1c99385 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1f8fe75 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xa202a8e5 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa20d518f bdget_disk +EXPORT_SYMBOL vmlinux 0xa221b7d9 mem_section +EXPORT_SYMBOL vmlinux 0xa238903d dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0xa25aeed1 lru_cache_add_file +EXPORT_SYMBOL vmlinux 0xa2656206 follow_up +EXPORT_SYMBOL vmlinux 0xa2843bb2 bio_advance +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa29849d1 del_gendisk +EXPORT_SYMBOL vmlinux 0xa2a335bd vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0xa2bbed37 crash_shutdown_register +EXPORT_SYMBOL vmlinux 0xa2d156a2 tcf_hash_create +EXPORT_SYMBOL vmlinux 0xa2d6f7aa iov_iter_init +EXPORT_SYMBOL vmlinux 0xa2e1835e pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xa2f1c992 _dev_info +EXPORT_SYMBOL vmlinux 0xa2fabc52 bio_clone_bioset +EXPORT_SYMBOL vmlinux 0xa2fdbcbe fence_default_wait +EXPORT_SYMBOL vmlinux 0xa30227f4 alloc_pages_current +EXPORT_SYMBOL vmlinux 0xa303d1ff dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0xa303d8ca __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa3202a7f mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0xa32b8faa simple_rename +EXPORT_SYMBOL vmlinux 0xa32e4090 param_ops_uint +EXPORT_SYMBOL vmlinux 0xa33a0377 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0xa3405883 ppp_dev_name +EXPORT_SYMBOL vmlinux 0xa343b127 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xa344557f of_n_addr_cells +EXPORT_SYMBOL vmlinux 0xa34cb2af netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xa35e5992 tty_unregister_device +EXPORT_SYMBOL vmlinux 0xa36db3c0 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xa38c0b24 redraw_screen +EXPORT_SYMBOL vmlinux 0xa39b4cf2 udelay +EXPORT_SYMBOL vmlinux 0xa3a818a9 vio_cmo_set_dev_desired +EXPORT_SYMBOL vmlinux 0xa3abc422 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xa3ad70b4 bioset_integrity_free +EXPORT_SYMBOL vmlinux 0xa3c597e3 sock_update_memcg +EXPORT_SYMBOL vmlinux 0xa3cba662 tcp_read_sock +EXPORT_SYMBOL vmlinux 0xa3da08e0 of_get_min_tck +EXPORT_SYMBOL vmlinux 0xa3ef1254 dmam_pool_create +EXPORT_SYMBOL vmlinux 0xa3f88a9e fasync_helper +EXPORT_SYMBOL vmlinux 0xa4085a17 inet_accept +EXPORT_SYMBOL vmlinux 0xa42be071 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0xa42c57b6 dump_truncate +EXPORT_SYMBOL vmlinux 0xa4511467 crc16 +EXPORT_SYMBOL vmlinux 0xa4539dc6 kernel_setsockopt +EXPORT_SYMBOL vmlinux 0xa4553ab2 neigh_destroy +EXPORT_SYMBOL vmlinux 0xa45e6dd5 update_region +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa478df95 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xa4a73473 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0xa4aa3cec __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xa4b08294 kobject_put +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4bc96ed param_get_long +EXPORT_SYMBOL vmlinux 0xa4bcd6ed vm_map_ram +EXPORT_SYMBOL vmlinux 0xa4cdb971 get_task_exe_file +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4e5c641 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xa541c0e6 flush_icache_user_range +EXPORT_SYMBOL vmlinux 0xa549e310 dm_get_device +EXPORT_SYMBOL vmlinux 0xa54bd793 fb_set_var +EXPORT_SYMBOL vmlinux 0xa551cfba neigh_table_init +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa55c6830 register_sysctl_table +EXPORT_SYMBOL vmlinux 0xa55d7237 current_fs_time +EXPORT_SYMBOL vmlinux 0xa584c274 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xa58afb71 skb_unlink +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa5a51eee __crc32c_le +EXPORT_SYMBOL vmlinux 0xa5e88736 pci_set_mwi +EXPORT_SYMBOL vmlinux 0xa5ea9614 tso_start +EXPORT_SYMBOL vmlinux 0xa5f42a52 giveup_vsx +EXPORT_SYMBOL vmlinux 0xa5f4a392 vme_lm_request +EXPORT_SYMBOL vmlinux 0xa6257df4 inet_getname +EXPORT_SYMBOL vmlinux 0xa631df8a cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xa63322c6 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xa63459bb phy_set_max_speed +EXPORT_SYMBOL vmlinux 0xa636bd4c mem_cgroup_begin_page_stat +EXPORT_SYMBOL vmlinux 0xa6382906 irq_to_desc +EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember +EXPORT_SYMBOL vmlinux 0xa64aeb17 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0xa65972b8 _memcpy_toio +EXPORT_SYMBOL vmlinux 0xa65a0722 __lock_buffer +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6825459 blk_finish_request +EXPORT_SYMBOL vmlinux 0xa6aeab9f lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0xa6c3602a bio_endio +EXPORT_SYMBOL vmlinux 0xa6c4a18b agp_backend_acquire +EXPORT_SYMBOL vmlinux 0xa6de8956 block_write_begin +EXPORT_SYMBOL vmlinux 0xa6f0401d vme_irq_handler +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa7018070 ip_getsockopt +EXPORT_SYMBOL vmlinux 0xa720678c lg_global_lock +EXPORT_SYMBOL vmlinux 0xa72a0f5b nr_online_nodes +EXPORT_SYMBOL vmlinux 0xa72f7f97 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa73e975d jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xa743c6c2 truncate_pagecache +EXPORT_SYMBOL vmlinux 0xa74f4e9b ida_simple_get +EXPORT_SYMBOL vmlinux 0xa78e8769 pipe_lock +EXPORT_SYMBOL vmlinux 0xa799948e set_groups +EXPORT_SYMBOL vmlinux 0xa7a14473 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0xa7aac2f9 skb_pad +EXPORT_SYMBOL vmlinux 0xa7ae6485 scsi_device_get +EXPORT_SYMBOL vmlinux 0xa7bc2950 dump_page +EXPORT_SYMBOL vmlinux 0xa7c26270 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xa7c5fcb2 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xa81be460 inode_set_bytes +EXPORT_SYMBOL vmlinux 0xa833b9e8 generic_end_io_acct +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa85e4bd2 key_link +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa88911fb of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xa8d16324 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xa8ead9c2 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xa8ecdc48 acl_by_type +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa901d9f9 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0xa9070fc4 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xa9092e78 netif_rx +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa91d90d3 nla_put +EXPORT_SYMBOL vmlinux 0xa9220a25 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xa924b1be starget_for_each_device +EXPORT_SYMBOL vmlinux 0xa9273e1a epapr_hypercall_start +EXPORT_SYMBOL vmlinux 0xa93ba88e proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xa957e3a8 from_kprojid +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa9801169 __dax_fault +EXPORT_SYMBOL vmlinux 0xa990f502 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9c85fa4 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xa9d4d634 scsi_register_interface +EXPORT_SYMBOL vmlinux 0xaa052309 touch_atime +EXPORT_SYMBOL vmlinux 0xaa2a9662 pcim_pin_device +EXPORT_SYMBOL vmlinux 0xaa2ad548 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0xaa46e87e lg_local_unlock +EXPORT_SYMBOL vmlinux 0xaa4c80ac phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0xaa61de18 __frontswap_load +EXPORT_SYMBOL vmlinux 0xaa6e4df5 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa732015 __register_nls +EXPORT_SYMBOL vmlinux 0xaa89100f pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xaa926880 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xaa9a0242 get_pci_dma_ops +EXPORT_SYMBOL vmlinux 0xaa9eefd5 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xaabbe7f3 backlight_force_update +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaafa180f eth_header_parse +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab036f3d vio_disable_interrupts +EXPORT_SYMBOL vmlinux 0xab20fc13 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0xab210824 __seq_open_private +EXPORT_SYMBOL vmlinux 0xab4e7a85 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xab535633 devm_gpio_free +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab7bfeef input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xab8d0a8c vfs_link +EXPORT_SYMBOL vmlinux 0xaba969dc __bread_gfp +EXPORT_SYMBOL vmlinux 0xabab2609 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0xabc07a33 netlink_unicast +EXPORT_SYMBOL vmlinux 0xabc57b48 dev_change_flags +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabcd463e pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xabcd9c64 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac0e8171 netlink_ack +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac1eabb0 dev_get_iflink +EXPORT_SYMBOL vmlinux 0xac26b820 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xac55882c vfs_fsync +EXPORT_SYMBOL vmlinux 0xac719a28 eeh_dev_release +EXPORT_SYMBOL vmlinux 0xac83a4c1 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xac976877 sock_register +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacc5b5d2 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xace802a0 setup_new_exec +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xad0027c2 i2c_clients_command +EXPORT_SYMBOL vmlinux 0xad00af6e mpage_readpages +EXPORT_SYMBOL vmlinux 0xad01744f kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad07beb6 pci_match_id +EXPORT_SYMBOL vmlinux 0xad12babe pcim_iounmap +EXPORT_SYMBOL vmlinux 0xad164875 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xad24c7c3 filemap_fdatawait +EXPORT_SYMBOL vmlinux 0xad2af0c8 gen_pool_free +EXPORT_SYMBOL vmlinux 0xad4c1b51 flex_array_alloc +EXPORT_SYMBOL vmlinux 0xad50cebb i8253_lock +EXPORT_SYMBOL vmlinux 0xad55d853 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xad776797 machine_id +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad86ea8c no_llseek +EXPORT_SYMBOL vmlinux 0xad8a7e7d iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0xad961743 __wait_on_bit +EXPORT_SYMBOL vmlinux 0xad974cd2 kill_anon_super +EXPORT_SYMBOL vmlinux 0xada23a6f csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xada62824 audit_log_start +EXPORT_SYMBOL vmlinux 0xadb584ba led_blink_set +EXPORT_SYMBOL vmlinux 0xadbd1ec2 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0xadbf2167 scsi_block_requests +EXPORT_SYMBOL vmlinux 0xadcafea2 simple_link +EXPORT_SYMBOL vmlinux 0xadd1c3be pid_task +EXPORT_SYMBOL vmlinux 0xadd95254 scsi_unregister +EXPORT_SYMBOL vmlinux 0xade43db7 phy_register_fixup +EXPORT_SYMBOL vmlinux 0xadeda3c5 kobject_set_name +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae358236 fence_signal +EXPORT_SYMBOL vmlinux 0xae3bb326 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xae4a1bda csum_tcpudp_nofold +EXPORT_SYMBOL vmlinux 0xae545f06 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xae55cd44 filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0xae560ae9 seq_vprintf +EXPORT_SYMBOL vmlinux 0xae786b18 nvm_register_target +EXPORT_SYMBOL vmlinux 0xae7dd8cd inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xae7f704f mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0xae8e8bf2 skb_checksum +EXPORT_SYMBOL vmlinux 0xae9c1a21 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0xaea3d583 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0xaec311b5 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0xaec35db4 flex_array_free +EXPORT_SYMBOL vmlinux 0xaefa5408 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0xaefb9094 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0xaf063510 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xaf0b758b scsi_host_get +EXPORT_SYMBOL vmlinux 0xaf15debb jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0xaf2d872c prepare_to_wait +EXPORT_SYMBOL vmlinux 0xaf2f9c60 __quota_error +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf432c7f __get_page_tail +EXPORT_SYMBOL vmlinux 0xaf47a615 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xaf53112c sock_kmalloc +EXPORT_SYMBOL vmlinux 0xaf6ae696 kstrndup +EXPORT_SYMBOL vmlinux 0xaf9340a7 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0xaf9d9b49 ps2_command +EXPORT_SYMBOL vmlinux 0xafb0fd09 gen_pool_create +EXPORT_SYMBOL vmlinux 0xafb6b3fb mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0xafb92d27 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0xafce89ae locks_mandatory_area +EXPORT_SYMBOL vmlinux 0xafd753ed ns_capable +EXPORT_SYMBOL vmlinux 0xafdaf4c2 commit_creds +EXPORT_SYMBOL vmlinux 0xafe01d54 module_refcount +EXPORT_SYMBOL vmlinux 0xafff3d1d mempool_alloc +EXPORT_SYMBOL vmlinux 0xb002dd99 sg_miter_next +EXPORT_SYMBOL vmlinux 0xb0105567 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xb03f9723 vfs_llseek +EXPORT_SYMBOL vmlinux 0xb04241b4 ida_simple_remove +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb06ce416 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0xb084bc9f drop_super +EXPORT_SYMBOL vmlinux 0xb0880ca9 dev_emerg +EXPORT_SYMBOL vmlinux 0xb08d9b6e alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xb09c958f __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0acccef generic_write_checks +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0c7a8a8 inet_del_protocol +EXPORT_SYMBOL vmlinux 0xb0ceb3f2 mmc_register_driver +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0ebb22e km_new_mapping +EXPORT_SYMBOL vmlinux 0xb0f45f04 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xb1146163 inet6_bind +EXPORT_SYMBOL vmlinux 0xb118acf4 ether_setup +EXPORT_SYMBOL vmlinux 0xb118b165 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xb11c2125 generic_file_llseek +EXPORT_SYMBOL vmlinux 0xb125417e blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb12e55e4 inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0xb147a413 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xb147a855 dql_reset +EXPORT_SYMBOL vmlinux 0xb15bd8fa tb_ticks_per_sec +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb162cb65 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb165ef45 __irq_regs +EXPORT_SYMBOL vmlinux 0xb16c17b5 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0xb1775421 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0xb1816af7 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0xb1ae3f28 mac_find_mode +EXPORT_SYMBOL vmlinux 0xb1b767d5 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1c6e787 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xb1faf0d5 vme_register_bridge +EXPORT_SYMBOL vmlinux 0xb217398d eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0xb22bcae4 inode_permission +EXPORT_SYMBOL vmlinux 0xb23915d4 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xb2405fb4 udp_prot +EXPORT_SYMBOL vmlinux 0xb2424673 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb27ac100 bio_init +EXPORT_SYMBOL vmlinux 0xb284dce9 build_skb +EXPORT_SYMBOL vmlinux 0xb29dbbc8 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xb2b11ba0 param_ops_invbool +EXPORT_SYMBOL vmlinux 0xb2bb0d7e skb_queue_tail +EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xb2f77074 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xb309385e tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xb309abb1 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xb30c3ffd posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0xb30c4b77 install_exec_creds +EXPORT_SYMBOL vmlinux 0xb31f8bcc bio_chain +EXPORT_SYMBOL vmlinux 0xb3382494 fence_signal_locked +EXPORT_SYMBOL vmlinux 0xb3549e6e deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xb36d500e default_qdisc_ops +EXPORT_SYMBOL vmlinux 0xb3889d18 tty_port_hangup +EXPORT_SYMBOL vmlinux 0xb389a730 peernet2id_alloc +EXPORT_SYMBOL vmlinux 0xb3a26bc2 cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0xb3b77636 d_instantiate +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb3fba6de lro_receive_skb +EXPORT_SYMBOL vmlinux 0xb4125828 seq_printf +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb4395f5d vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xb4609d35 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb47189b5 reservation_ww_class +EXPORT_SYMBOL vmlinux 0xb473e2c2 lockref_get +EXPORT_SYMBOL vmlinux 0xb48fcf0a inet6_protos +EXPORT_SYMBOL vmlinux 0xb4a1f1f1 arp_xmit +EXPORT_SYMBOL vmlinux 0xb4ad7307 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0xb4dfa26a param_get_short +EXPORT_SYMBOL vmlinux 0xb51a95d0 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xb52593a6 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xb551468d genphy_read_status +EXPORT_SYMBOL vmlinux 0xb559f24b tcp_check_req +EXPORT_SYMBOL vmlinux 0xb55bf1ab copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0xb570487a sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb578bc5f inet_sock_destruct +EXPORT_SYMBOL vmlinux 0xb5881f16 security_file_permission +EXPORT_SYMBOL vmlinux 0xb58c9c2b dev_err +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5c9c053 blk_mq_all_tag_busy_iter +EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free +EXPORT_SYMBOL vmlinux 0xb611c1f2 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb62fc16f read_cache_page +EXPORT_SYMBOL vmlinux 0xb63482a9 iterate_supers_type +EXPORT_SYMBOL vmlinux 0xb63f83d1 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xb64ea6c3 generic_setlease +EXPORT_SYMBOL vmlinux 0xb6679479 dentry_update_name_case +EXPORT_SYMBOL vmlinux 0xb66ddf63 compat_ip_getsockopt +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb68bfa9d node_states +EXPORT_SYMBOL vmlinux 0xb68fa688 __netif_schedule +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6993245 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xb69af80e soft_cursor +EXPORT_SYMBOL vmlinux 0xb69e2812 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6aa4b2d elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0xb6c93d7a blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xb6e62728 page_waitqueue +EXPORT_SYMBOL vmlinux 0xb6edd8cf decrementer_clockevent +EXPORT_SYMBOL vmlinux 0xb6ffaee3 d_find_any_alias +EXPORT_SYMBOL vmlinux 0xb701cf40 inet6_release +EXPORT_SYMBOL vmlinux 0xb70b0b77 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xb70dfe30 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xb7419c02 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb7769573 cdrom_release +EXPORT_SYMBOL vmlinux 0xb77932eb flex_array_clear +EXPORT_SYMBOL vmlinux 0xb788217d hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0xb7b888f7 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0xb7c667fa agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7c74731 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0xb7db60fe dup_iter +EXPORT_SYMBOL vmlinux 0xb7f61568 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0xb7fe4b6b mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0xb8152144 tty_devnum +EXPORT_SYMBOL vmlinux 0xb81945f8 unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0xb8269c8e gen_pool_destroy +EXPORT_SYMBOL vmlinux 0xb8381608 generic_listxattr +EXPORT_SYMBOL vmlinux 0xb84ca673 jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0xb86cfd0c of_scan_pci_bridge +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb879b3a0 always_delete_dentry +EXPORT_SYMBOL vmlinux 0xb882d73d __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xb8a4adc6 napi_gro_receive +EXPORT_SYMBOL vmlinux 0xb8af9fc6 of_create_pci_dev +EXPORT_SYMBOL vmlinux 0xb8f1361a key_reject_and_link +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb909c6d8 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xb925743c ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xb93de730 skb_trim +EXPORT_SYMBOL vmlinux 0xb9458b93 bio_put +EXPORT_SYMBOL vmlinux 0xb945ad55 tty_lock +EXPORT_SYMBOL vmlinux 0xb94ce330 bioset_free +EXPORT_SYMBOL vmlinux 0xb955ef4d neigh_lookup +EXPORT_SYMBOL vmlinux 0xb959395a iterate_fd +EXPORT_SYMBOL vmlinux 0xb96a141c pnv_cxl_release_hwirq_ranges +EXPORT_SYMBOL vmlinux 0xb9707dba freeze_bdev +EXPORT_SYMBOL vmlinux 0xb9795dac register_framebuffer +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9e93438 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xba20a44a netdev_warn +EXPORT_SYMBOL vmlinux 0xba2a589f fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xba2d2a19 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xba2ffec2 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xba31ec35 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xba3874fb mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xba44cba4 fput +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba53b437 lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0xba594068 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xba5efad5 kernel_bind +EXPORT_SYMBOL vmlinux 0xba736632 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xba7fef41 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0xbabfdeb9 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0xbb025a0e ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb185e60 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xbb34134a iov_shorten +EXPORT_SYMBOL vmlinux 0xbb345b11 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb5fd403 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0xbb71ca71 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0xbb7a0113 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbbaeb559 memcg_socket_limit_enabled +EXPORT_SYMBOL vmlinux 0xbbb6b412 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xbbba10f4 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xbbcd981c tty_port_close_end +EXPORT_SYMBOL vmlinux 0xbbce4f53 fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0xbbd3cfa1 kset_register +EXPORT_SYMBOL vmlinux 0xbbd57e4a tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0xbbdfb93b rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0xbbe6a724 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xbbffee5c mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0xbc316de4 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0xbc3c8d70 seq_path +EXPORT_SYMBOL vmlinux 0xbc4f1344 vfs_writev +EXPORT_SYMBOL vmlinux 0xbc7b48af mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0xbc948a62 dm_put_table_device +EXPORT_SYMBOL vmlinux 0xbc982b06 eeh_subsystem_flags +EXPORT_SYMBOL vmlinux 0xbcabe945 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0xbcb6acb7 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbce3042f unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xbcf150f9 xor_altivec_5 +EXPORT_SYMBOL vmlinux 0xbd09c336 request_firmware +EXPORT_SYMBOL vmlinux 0xbd11a292 do_splice_from +EXPORT_SYMBOL vmlinux 0xbd213988 of_get_ibm_chip_id +EXPORT_SYMBOL vmlinux 0xbd27963e sync_inode +EXPORT_SYMBOL vmlinux 0xbd4130a3 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd47d0ed ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xbd55fa44 vfs_statfs +EXPORT_SYMBOL vmlinux 0xbd6920c3 sock_no_mmap +EXPORT_SYMBOL vmlinux 0xbd6d79f1 __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0xbd89e70f vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbdb8f32f remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xbdce2046 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0xbde7ca00 tty_unlock +EXPORT_SYMBOL vmlinux 0xbdf1696c blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xbdfb943f param_set_copystring +EXPORT_SYMBOL vmlinux 0xbe0de973 __napi_schedule +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe2db465 param_set_uint +EXPORT_SYMBOL vmlinux 0xbe2df2d4 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xbe4839f6 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0xbe7f11bb kernel_param_lock +EXPORT_SYMBOL vmlinux 0xbe879acf blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbf0a41ce pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xbf0be3b5 __page_cache_alloc +EXPORT_SYMBOL vmlinux 0xbf34b54a bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf85726a netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf925c42 idr_init +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfabfe59 __debugger_iabr_match +EXPORT_SYMBOL vmlinux 0xbfb8b0b7 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfcc0231 proc_set_user +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbff8182c plpar_hcall_norets +EXPORT_SYMBOL vmlinux 0xbffb728e fsnotify_put_group +EXPORT_SYMBOL vmlinux 0xbffeaf47 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0xc00536c8 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xc02b433e of_get_child_by_name +EXPORT_SYMBOL vmlinux 0xc03a7b2c genl_notify +EXPORT_SYMBOL vmlinux 0xc0562642 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc07758a7 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc0864ab6 mount_subtree +EXPORT_SYMBOL vmlinux 0xc08894e0 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0xc09c765f jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0a93a3a brioctl_set +EXPORT_SYMBOL vmlinux 0xc0babdd1 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0xc0c3aa3e dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xc11c7aa9 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0xc123e6c9 set_bh_page +EXPORT_SYMBOL vmlinux 0xc15a44c6 memzero_explicit +EXPORT_SYMBOL vmlinux 0xc1838946 udplite_prot +EXPORT_SYMBOL vmlinux 0xc18bda6b __starget_for_each_device +EXPORT_SYMBOL vmlinux 0xc18d1701 submit_bio_wait +EXPORT_SYMBOL vmlinux 0xc193f07d dm_register_target +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc2261c50 padata_do_parallel +EXPORT_SYMBOL vmlinux 0xc22f6ade touch_buffer +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc24269f7 con_is_bound +EXPORT_SYMBOL vmlinux 0xc2778900 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0xc27aa3ac mach_powernv +EXPORT_SYMBOL vmlinux 0xc283b3a9 security_path_rename +EXPORT_SYMBOL vmlinux 0xc29872e7 pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2af3120 nla_append +EXPORT_SYMBOL vmlinux 0xc2b92055 abort_creds +EXPORT_SYMBOL vmlinux 0xc2dabac5 from_kuid_munged +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc340fdf1 tcp_connect +EXPORT_SYMBOL vmlinux 0xc346531a tty_set_operations +EXPORT_SYMBOL vmlinux 0xc34b99fb devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xc3666aee __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xc37ad991 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0xc37df066 __scm_destroy +EXPORT_SYMBOL vmlinux 0xc3b8954e gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3c37d7f inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0xc3c6ad05 genphy_config_init +EXPORT_SYMBOL vmlinux 0xc3e13466 block_write_full_page +EXPORT_SYMBOL vmlinux 0xc3e299e4 generic_setxattr +EXPORT_SYMBOL vmlinux 0xc3fce77c ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xc42ae5c1 simple_transaction_get +EXPORT_SYMBOL vmlinux 0xc42b60f8 tty_port_close +EXPORT_SYMBOL vmlinux 0xc43588bc blk_stop_queue +EXPORT_SYMBOL vmlinux 0xc45ec28b wait_on_page_bit +EXPORT_SYMBOL vmlinux 0xc47cdf9c _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0xc48307db lz4_decompress +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4a33453 check_disk_change +EXPORT_SYMBOL vmlinux 0xc4b52b28 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xc4bb6ebc scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xc4cf838e misc_register +EXPORT_SYMBOL vmlinux 0xc4d99f02 parent_mem_cgroup +EXPORT_SYMBOL vmlinux 0xc4fc113e tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xc5084459 free_netdev +EXPORT_SYMBOL vmlinux 0xc51e2bf3 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xc5362c6a simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc558a4cf generic_readlink +EXPORT_SYMBOL vmlinux 0xc55de23c percpu_counter_set +EXPORT_SYMBOL vmlinux 0xc5652651 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5ad43cf __sb_end_write +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5e3a55e dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc628c2d1 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xc62b359c blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc63abf5a writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xc64308a6 mdiobus_free +EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0xc65ac5e3 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xc65fa0f8 sock_create_kern +EXPORT_SYMBOL vmlinux 0xc663b075 __ioremap +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc666bdae vme_master_mmap +EXPORT_SYMBOL vmlinux 0xc66c365b do_splice_direct +EXPORT_SYMBOL vmlinux 0xc6772da2 radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0xc6774da5 cpu_online_mask +EXPORT_SYMBOL vmlinux 0xc6781b0f netpoll_setup +EXPORT_SYMBOL vmlinux 0xc685e6d6 of_node_get +EXPORT_SYMBOL vmlinux 0xc69b2ca0 loop_backing_file +EXPORT_SYMBOL vmlinux 0xc69d5582 filp_open +EXPORT_SYMBOL vmlinux 0xc69de489 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xc6a003cb key_invalidate +EXPORT_SYMBOL vmlinux 0xc6a744b4 xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0xc6b22c71 __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xc6ca27ee twl6040_reg_write +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6d13d4a skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xc6dca632 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0xc6e6083f ata_std_end_eh +EXPORT_SYMBOL vmlinux 0xc6f611e3 of_get_address +EXPORT_SYMBOL vmlinux 0xc6fd7e4e blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0xc7026a24 kernel_sendpage +EXPORT_SYMBOL vmlinux 0xc707ddc4 mount_single +EXPORT_SYMBOL vmlinux 0xc7156530 param_ops_ulong +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc7591cf0 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xc75c92e5 of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xc75cf7e0 skb_insert +EXPORT_SYMBOL vmlinux 0xc7720cb5 security_path_chmod +EXPORT_SYMBOL vmlinux 0xc77cae4c __serio_register_port +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7a68472 agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0xc7b19f01 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0xc7d81b15 datagram_poll +EXPORT_SYMBOL vmlinux 0xc7f39b15 irq_stat +EXPORT_SYMBOL vmlinux 0xc81188db __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xc8255a13 __genl_register_family +EXPORT_SYMBOL vmlinux 0xc82a5430 inet_ioctl +EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0xc83f5cfc cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc8571bcb idr_for_each +EXPORT_SYMBOL vmlinux 0xc85ed24f param_get_byte +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc874faa1 reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0xc87b49e1 get_super_thawed +EXPORT_SYMBOL vmlinux 0xc87eeeca page_cache_next_hole +EXPORT_SYMBOL vmlinux 0xc8841c32 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc899e9e1 seq_release +EXPORT_SYMBOL vmlinux 0xc8a3c933 agp_generic_enable +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8bac635 phy_start +EXPORT_SYMBOL vmlinux 0xc8d5d5f5 file_open_root +EXPORT_SYMBOL vmlinux 0xc90c8dd3 phy_detach +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc9193d6e xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xc93fbc54 wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xc9630b79 d_make_root +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc96402f2 __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0xc978479a xz_dec_run +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9b57c28 blk_init_queue +EXPORT_SYMBOL vmlinux 0xc9bdf2a0 unregister_filesystem +EXPORT_SYMBOL vmlinux 0xc9bf2319 ___pskb_trim +EXPORT_SYMBOL vmlinux 0xc9c9eb03 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0xc9d0f6b6 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xc9f4e359 sock_no_getname +EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy +EXPORT_SYMBOL vmlinux 0xca2b1cd6 ida_pre_get +EXPORT_SYMBOL vmlinux 0xca2c9f8b lock_fb_info +EXPORT_SYMBOL vmlinux 0xca3b28c6 store_vr_state +EXPORT_SYMBOL vmlinux 0xca5c3af2 blk_start_queue +EXPORT_SYMBOL vmlinux 0xca5ee09a vme_free_consistent +EXPORT_SYMBOL vmlinux 0xca72ddec phy_init_hw +EXPORT_SYMBOL vmlinux 0xca832efe kmalloc_order +EXPORT_SYMBOL vmlinux 0xca86bae8 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xcaa3de88 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0xcaaab321 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0xcaaf988d vfs_path_lookup +EXPORT_SYMBOL vmlinux 0xcab4e32a inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xcac56345 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0xcac9e591 __ip_dev_find +EXPORT_SYMBOL vmlinux 0xcace6297 idr_is_empty +EXPORT_SYMBOL vmlinux 0xcacf847f inode_needs_sync +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcaf5a5bf padata_start +EXPORT_SYMBOL vmlinux 0xcb0270bc netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb0d2dfe sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0xcb15737d pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xcb1d5bb1 blk_end_request +EXPORT_SYMBOL vmlinux 0xcb78f883 inet6_ioctl +EXPORT_SYMBOL vmlinux 0xcb936989 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc3b94e eeh_check_failure +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbda930c request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0xcbdd4f18 put_tty_driver +EXPORT_SYMBOL vmlinux 0xcc13e211 generic_block_bmap +EXPORT_SYMBOL vmlinux 0xcc17504d _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xcc215573 flex_array_shrink +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc3c7354 ps2_end_command +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc6f6b51 get_thermal_instance +EXPORT_SYMBOL vmlinux 0xcc7568b9 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xcc88d139 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0xcc9f85f2 sg_miter_skip +EXPORT_SYMBOL vmlinux 0xccaa70a2 dev_get_by_index +EXPORT_SYMBOL vmlinux 0xccb3c085 __put_cred +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccc56542 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xccd8c6cf vm_insert_pfn +EXPORT_SYMBOL vmlinux 0xcce0f777 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0xcce10feb mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xcd0529c7 _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xcd17c9fa of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0xcd20667a kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd2d7cb8 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xcd534e70 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0xcd57f7b0 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xcd5ba6ae nlmsg_notify +EXPORT_SYMBOL vmlinux 0xcd79d7a8 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0xcd7ede2a seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xcd86c87f __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xcdbd6759 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdd13d1f mmc_erase +EXPORT_SYMBOL vmlinux 0xcddd15e8 of_phy_find_device +EXPORT_SYMBOL vmlinux 0xcde8ce8c dev_disable_lro +EXPORT_SYMBOL vmlinux 0xcde96b47 dev_get_nest_level +EXPORT_SYMBOL vmlinux 0xce05bc54 tty_do_resize +EXPORT_SYMBOL vmlinux 0xce05dcd3 tty_hangup +EXPORT_SYMBOL vmlinux 0xce0e2d66 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xce1c1a49 rtnl_create_link +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce3b3f09 profile_pc +EXPORT_SYMBOL vmlinux 0xce3d2870 mmc_add_host +EXPORT_SYMBOL vmlinux 0xce468505 pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce687dce tso_count_descs +EXPORT_SYMBOL vmlinux 0xce7850e1 crc32_le_shift +EXPORT_SYMBOL vmlinux 0xce8d9a5e xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xce9ee1b3 pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0xcea15d51 bdev_read_only +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceae504f cmdline_parts_free +EXPORT_SYMBOL vmlinux 0xced4c2f2 blk_fetch_request +EXPORT_SYMBOL vmlinux 0xced777cb proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0xced8bdef put_cmsg +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf147d31 noop_fsync +EXPORT_SYMBOL vmlinux 0xcf15da65 nf_afinfo +EXPORT_SYMBOL vmlinux 0xcf1f83e5 registered_fb +EXPORT_SYMBOL vmlinux 0xcf30b28d get_fs_type +EXPORT_SYMBOL vmlinux 0xcf4ec58e elevator_alloc +EXPORT_SYMBOL vmlinux 0xcf642ea3 kernel_read +EXPORT_SYMBOL vmlinux 0xcf64d629 of_get_parent +EXPORT_SYMBOL vmlinux 0xcf677e49 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0xcf724497 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0xcf76fa74 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xcf7e2a4e fifo_set_limit +EXPORT_SYMBOL vmlinux 0xcfad048f pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xcfbe49f3 proc_remove +EXPORT_SYMBOL vmlinux 0xcfc440ba ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0xd003d7a3 input_inject_event +EXPORT_SYMBOL vmlinux 0xd007f207 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0xd01cc2d9 skb_clone_sk +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd0786054 d_add_ci +EXPORT_SYMBOL vmlinux 0xd07c970d i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xd08f6239 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a41da7 skb_copy_bits +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0b275e8 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xd0e483ab copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f241c0 __inet_hash +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0f78348 tty_throttle +EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0xd0fd6386 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd10b0107 handle_edge_irq +EXPORT_SYMBOL vmlinux 0xd1262886 rtas_data_buf +EXPORT_SYMBOL vmlinux 0xd129e060 n_tty_compat_ioctl_helper +EXPORT_SYMBOL vmlinux 0xd15f6dd0 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xd16fb187 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xd178ff70 vm_stat +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd185ea02 sk_common_release +EXPORT_SYMBOL vmlinux 0xd1994653 compat_tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xd19ec137 pagecache_get_page +EXPORT_SYMBOL vmlinux 0xd1c3c517 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xd1c4c2b0 d_alloc +EXPORT_SYMBOL vmlinux 0xd1c8ea54 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1f61771 key_alloc +EXPORT_SYMBOL vmlinux 0xd20c3937 flex_array_get +EXPORT_SYMBOL vmlinux 0xd2343edf __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xd2417d7e dev_addr_init +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd254bae8 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd25fd102 seq_putc +EXPORT_SYMBOL vmlinux 0xd2634a5f nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0xd270823d jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0xd279a253 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd2b09ce5 __kmalloc +EXPORT_SYMBOL vmlinux 0xd2b384a3 of_get_pci_address +EXPORT_SYMBOL vmlinux 0xd2b59f54 console_start +EXPORT_SYMBOL vmlinux 0xd2b5e78d qdisc_reset +EXPORT_SYMBOL vmlinux 0xd2c28cc7 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd302ce2f dcb_setapp +EXPORT_SYMBOL vmlinux 0xd30611d8 nf_register_hook +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd329e8af __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0xd32bc01b disk_stack_limits +EXPORT_SYMBOL vmlinux 0xd32f380b fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0xd360f209 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd37a91af pci_scan_slot +EXPORT_SYMBOL vmlinux 0xd383f57f kobject_del +EXPORT_SYMBOL vmlinux 0xd3888e78 finish_open +EXPORT_SYMBOL vmlinux 0xd3913877 md_register_thread +EXPORT_SYMBOL vmlinux 0xd39179e8 agp_bind_memory +EXPORT_SYMBOL vmlinux 0xd3abe991 vlan_vid_add +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3be030d blk_init_queue_node +EXPORT_SYMBOL vmlinux 0xd3cfdccb dev_load +EXPORT_SYMBOL vmlinux 0xd3d5b2b7 netif_rx_ni +EXPORT_SYMBOL vmlinux 0xd3f61911 icmpv6_send +EXPORT_SYMBOL vmlinux 0xd3f82a96 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0xd405d910 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0xd4163b87 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0xd4294b8f gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0xd445ad07 pci_read_vpd +EXPORT_SYMBOL vmlinux 0xd44b7e21 to_tm +EXPORT_SYMBOL vmlinux 0xd45654b6 inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd45e449f devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xd478d87f vio_register_device_node +EXPORT_SYMBOL vmlinux 0xd48fdeef dql_completed +EXPORT_SYMBOL vmlinux 0xd493d153 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0xd4aebb26 freeze_super +EXPORT_SYMBOL vmlinux 0xd4bacf0a mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0xd4c1cefa bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xd4ca3c00 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xd4df9215 send_sig_info +EXPORT_SYMBOL vmlinux 0xd4ea17aa pnv_cxl_alloc_hwirq_ranges +EXPORT_SYMBOL vmlinux 0xd4ff8926 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0xd501818e xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0xd52311f0 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xd528f58c nf_unregister_hook +EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0xd55aeacd scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xd55af6fe sk_dst_check +EXPORT_SYMBOL vmlinux 0xd57cdfcc ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0xd58018c2 simple_statfs +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd59a8f5e tcp_parse_options +EXPORT_SYMBOL vmlinux 0xd59b781f serio_bus +EXPORT_SYMBOL vmlinux 0xd5aeabbc mdiobus_scan +EXPORT_SYMBOL vmlinux 0xd5b9b457 fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0xd5c10220 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xd5f5d33b fb_validate_mode +EXPORT_SYMBOL vmlinux 0xd5f84474 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0xd603298f iov_iter_advance +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd61f1d6c jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xd622d9b9 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd64681c6 qdisc_destroy +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd65ff744 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0xd66fde3c take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd6af4eda cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0xd6bdcb75 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xd6c489a5 read_code +EXPORT_SYMBOL vmlinux 0xd6d63e9d lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6fd4053 __arch_hweight32 +EXPORT_SYMBOL vmlinux 0xd70f5e99 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xd7367f74 dev_add_offload +EXPORT_SYMBOL vmlinux 0xd73b5208 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0xd740c510 sock_release +EXPORT_SYMBOL vmlinux 0xd74a6192 set_blocksize +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd75ca6b0 param_ops_bool +EXPORT_SYMBOL vmlinux 0xd761a383 ioremap_prot +EXPORT_SYMBOL vmlinux 0xd77c7a58 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0xd786c0ea plpar_hcall9 +EXPORT_SYMBOL vmlinux 0xd79affdc devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0xd7b187c5 max8998_read_reg +EXPORT_SYMBOL vmlinux 0xd7b1e595 __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0xd7db0d89 filemap_fault +EXPORT_SYMBOL vmlinux 0xd7db4e39 napi_complete_done +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7f676c4 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xd80d9689 md_unregister_thread +EXPORT_SYMBOL vmlinux 0xd8308bda __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xd865c977 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0xd86bc09b send_sig +EXPORT_SYMBOL vmlinux 0xd878013a mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0xd88272ed devm_gpio_request +EXPORT_SYMBOL vmlinux 0xd885b2f4 page_readlink +EXPORT_SYMBOL vmlinux 0xd896065a ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a1ee52 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8c6e9f7 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xd8d9e6b0 pci_claim_resource +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e1e06d pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xd8e34ef8 ptp_clock_event +EXPORT_SYMBOL vmlinux 0xd8e3e0ae seq_escape +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd90a6a6a __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0xd911833f param_get_invbool +EXPORT_SYMBOL vmlinux 0xd91c655c i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xd927b405 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0xd93a7afe put_io_context +EXPORT_SYMBOL vmlinux 0xd9452ed1 netdev_printk +EXPORT_SYMBOL vmlinux 0xd9518e5f scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0xd954d24d __dev_get_by_index +EXPORT_SYMBOL vmlinux 0xd95f7347 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xd9746af3 tcp_close +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd98c1193 flow_cache_init +EXPORT_SYMBOL vmlinux 0xd99c9bc7 nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0xd9a557b1 rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0xd9a5e026 single_open +EXPORT_SYMBOL vmlinux 0xd9bac924 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0xd9cb5f34 pci_enable_device +EXPORT_SYMBOL vmlinux 0xd9d237ac get_unmapped_area +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9def8e6 ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0xd9fa7b91 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xda23142d tso_build_hdr +EXPORT_SYMBOL vmlinux 0xda2f36d1 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xda332883 vfs_rename +EXPORT_SYMBOL vmlinux 0xda33cb08 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda3daf6f read_cache_pages +EXPORT_SYMBOL vmlinux 0xda4c121c simple_empty +EXPORT_SYMBOL vmlinux 0xda79b7d8 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda821c51 phy_device_register +EXPORT_SYMBOL vmlinux 0xda82df86 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda9544cf ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0xda9fc7ae kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0xdaa5293c address_space_init_once +EXPORT_SYMBOL vmlinux 0xdaaf4e9a of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0xdabc1ea8 fsl_lbc_find +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdac545b9 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0xdacd5f60 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xdad5b8de touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0xdad8eb34 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xdae45b0e dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell +EXPORT_SYMBOL vmlinux 0xdb01198e fsl_upm_find +EXPORT_SYMBOL vmlinux 0xdb0d4193 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xdb125649 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xdb3bcca6 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0xdb599a48 vfs_iter_read +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb6fd76b clocksource_unregister +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb81cf15 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0xdb936969 dquot_transfer +EXPORT_SYMBOL vmlinux 0xdb978b73 generic_fillattr +EXPORT_SYMBOL vmlinux 0xdbae13c2 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0xdbb58359 inode_init_always +EXPORT_SYMBOL vmlinux 0xdbcf7204 pci_pme_capable +EXPORT_SYMBOL vmlinux 0xdbd0177b bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xdbe32f39 con_copy_unimap +EXPORT_SYMBOL vmlinux 0xdbe5eed2 genphy_resume +EXPORT_SYMBOL vmlinux 0xdbeb8a63 to_nd_btt +EXPORT_SYMBOL vmlinux 0xdbfe5a21 skb_copy +EXPORT_SYMBOL vmlinux 0xdc009197 nf_log_register +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc14d593 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc1ba53e __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xdc214961 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0xdc32a64b try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xdc3c41a8 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc8cf8be pci_map_rom +EXPORT_SYMBOL vmlinux 0xdc9498dd down +EXPORT_SYMBOL vmlinux 0xdc976a13 input_close_device +EXPORT_SYMBOL vmlinux 0xdca58e2e __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcb764ad memset +EXPORT_SYMBOL vmlinux 0xdcd6ec11 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xdcd6f05a init_task +EXPORT_SYMBOL vmlinux 0xdd45a121 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0xdd47723b register_gifconf +EXPORT_SYMBOL vmlinux 0xdd532028 wake_up_process +EXPORT_SYMBOL vmlinux 0xdd5d56ff shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd672930 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xdd6bcbd9 netif_napi_add +EXPORT_SYMBOL vmlinux 0xdd752382 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xdd83bda0 security_path_chown +EXPORT_SYMBOL vmlinux 0xdd8446dd bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0xdd9030af current_stack_pointer +EXPORT_SYMBOL vmlinux 0xdd92ed8b input_register_handler +EXPORT_SYMBOL vmlinux 0xdd955144 __debugger +EXPORT_SYMBOL vmlinux 0xdd999fae netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0xddb31acf prepare_binprm +EXPORT_SYMBOL vmlinux 0xddb3769b lockref_mark_dead +EXPORT_SYMBOL vmlinux 0xddf4b277 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xddf705f3 of_n_size_cells +EXPORT_SYMBOL vmlinux 0xddf94f0b neigh_for_each +EXPORT_SYMBOL vmlinux 0xde0173f4 pci_reenable_device +EXPORT_SYMBOL vmlinux 0xde0c2141 sock_recvmsg +EXPORT_SYMBOL vmlinux 0xde2d3bc6 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0xde48e9ca _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xde5f67a6 module_put +EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0xde6912c9 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xde758ea7 mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0xde783883 pSeries_disable_reloc_on_exc +EXPORT_SYMBOL vmlinux 0xde91448c load_vr_state +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdea43b95 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xdebe04e6 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xdec3c2f0 of_phy_connect +EXPORT_SYMBOL vmlinux 0xdefd0b8f pci_disable_msix +EXPORT_SYMBOL vmlinux 0xdf050cad ppp_input_error +EXPORT_SYMBOL vmlinux 0xdf1ba27f phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xdf292032 d_drop +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf2f25fb vfs_create +EXPORT_SYMBOL vmlinux 0xdf3a76df pcibus_to_node +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf59b4d2 fget +EXPORT_SYMBOL vmlinux 0xdf5b5502 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf708894 __getblk_slow +EXPORT_SYMBOL vmlinux 0xdf7448a7 scsi_register_driver +EXPORT_SYMBOL vmlinux 0xdf775cab generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdfb42c39 sock_edemux +EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init +EXPORT_SYMBOL vmlinux 0xdfd0f879 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0xdfd78618 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xe0055788 locks_init_lock +EXPORT_SYMBOL vmlinux 0xe0081cc5 nvm_submit_io +EXPORT_SYMBOL vmlinux 0xe00cb7cf pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0xe00f0445 md_finish_reshape +EXPORT_SYMBOL vmlinux 0xe02a5d41 sk_reset_timer +EXPORT_SYMBOL vmlinux 0xe0405096 do_SAK +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe061444c generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0xe06a2d59 dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0c04e4a pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0xe0c75d7b pci_platform_rom +EXPORT_SYMBOL vmlinux 0xe0cb56c7 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xe0cbf78f find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xe0d40873 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xe0ea1ff9 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xe10b95aa unregister_nls +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe12770c3 udp_del_offload +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe146bf7f csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xe14c9c50 of_get_mac_address +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe195d86e mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xe198af19 ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0xe1dbf70b kthread_bind +EXPORT_SYMBOL vmlinux 0xe1f57bb4 pci_set_master +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe20372ae radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0xe215c096 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0xe2203839 blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0xe220ceb8 __debugger_sstep +EXPORT_SYMBOL vmlinux 0xe2279e5f __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe241c586 dquot_file_open +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe250b0ef pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xe290a3f5 cdrom_check_events +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2b8b1f7 __neigh_create +EXPORT_SYMBOL vmlinux 0xe2bd9c59 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xe2be5498 lg_global_unlock +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2d9c62e __blk_end_request_all +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe2f6e1c2 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0xe2f89f37 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xe300cf18 __sock_create +EXPORT_SYMBOL vmlinux 0xe301aa10 netdev_err +EXPORT_SYMBOL vmlinux 0xe305bc2c pci_iomap_range +EXPORT_SYMBOL vmlinux 0xe311c99b __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xe314e8fb cpu_core_map +EXPORT_SYMBOL vmlinux 0xe317764d jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0xe324e115 inet_listen +EXPORT_SYMBOL vmlinux 0xe32f8cbd tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xe36cca74 ip6_frag_init +EXPORT_SYMBOL vmlinux 0xe375dae3 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xe376d453 scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0xe3a3f1fb vfs_mkdir +EXPORT_SYMBOL vmlinux 0xe3a53f4c sort +EXPORT_SYMBOL vmlinux 0xe3b19103 simple_dir_operations +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3c6c897 pagecache_write_end +EXPORT_SYMBOL vmlinux 0xe3c7352b scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xe3c839c9 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3fdbd5e led_set_brightness +EXPORT_SYMBOL vmlinux 0xe40b590c pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0xe416b6a3 arp_create +EXPORT_SYMBOL vmlinux 0xe4229835 compat_nf_getsockopt +EXPORT_SYMBOL vmlinux 0xe43a43a9 alloc_disk_node +EXPORT_SYMBOL vmlinux 0xe45567c5 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0xe458362d dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe49e38d4 vm_mmap +EXPORT_SYMBOL vmlinux 0xe4a6f9e0 tcp_shutdown +EXPORT_SYMBOL vmlinux 0xe4b22682 giveup_fpu +EXPORT_SYMBOL vmlinux 0xe4b494ff dquot_quota_off +EXPORT_SYMBOL vmlinux 0xe4bb655b mmc_release_host +EXPORT_SYMBOL vmlinux 0xe4cd0913 bmap +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4eaab2e t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xe4eb257a bh_submit_read +EXPORT_SYMBOL vmlinux 0xe4fe8ca1 _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xe5012790 try_module_get +EXPORT_SYMBOL vmlinux 0xe50470c7 is_nd_btt +EXPORT_SYMBOL vmlinux 0xe5111d61 blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0xe51998b9 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xe51cee15 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe52b3d9a nf_register_hooks +EXPORT_SYMBOL vmlinux 0xe54c165f pcim_enable_device +EXPORT_SYMBOL vmlinux 0xe5525710 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xe56eada3 netdev_state_change +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe591a6f7 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0xe5999600 nvm_put_blk +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5ce0331 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xe5d662ad tcp_child_process +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe6025f48 get_cached_acl +EXPORT_SYMBOL vmlinux 0xe633ec2b skb_checksum_help +EXPORT_SYMBOL vmlinux 0xe6599397 fs_bio_set +EXPORT_SYMBOL vmlinux 0xe65a73d7 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xe66feeac kernel_write +EXPORT_SYMBOL vmlinux 0xe683a7f7 from_kgid +EXPORT_SYMBOL vmlinux 0xe68478d9 blk_run_queue +EXPORT_SYMBOL vmlinux 0xe6976d95 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe69a9df4 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe6f7e6f4 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe7228bd1 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0xe7495d89 sock_no_bind +EXPORT_SYMBOL vmlinux 0xe74ba8d3 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xe78f2bb0 set_device_ro +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7c009b2 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0xe7c1a2f8 zpool_register_driver +EXPORT_SYMBOL vmlinux 0xe7c784e8 kfree_skb +EXPORT_SYMBOL vmlinux 0xe7ce7439 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7f23da1 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0xe804ea6b scmd_printk +EXPORT_SYMBOL vmlinux 0xe8189cec vme_register_driver +EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe825cff0 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xe82cc752 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xe84fe988 d_find_alias +EXPORT_SYMBOL vmlinux 0xe85bd49b xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss +EXPORT_SYMBOL vmlinux 0xe894741c pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8b9a157 d_set_fallthru +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8c438f3 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0xe8c9eeab input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xe8ce7c54 blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0xe8ef0ff0 current_kernel_time64 +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe919013b tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xe92e5bb2 mb_cache_shrink +EXPORT_SYMBOL vmlinux 0xe92fb9c0 unregister_key_type +EXPORT_SYMBOL vmlinux 0xe9355c61 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xe9378d58 idr_get_next +EXPORT_SYMBOL vmlinux 0xe9537ee1 cdev_del +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe954ccab sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xe9557a1b phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xe95e0842 tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0xe95f368f ptp_clock_register +EXPORT_SYMBOL vmlinux 0xe971876a on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0xe97c3034 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xe98b7641 inet_frags_init +EXPORT_SYMBOL vmlinux 0xe999cee8 input_get_keycode +EXPORT_SYMBOL vmlinux 0xe9af0293 swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0xe9c96a5f dquot_quota_on +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9ff83d9 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea0a54a7 make_bad_inode +EXPORT_SYMBOL vmlinux 0xea2eea31 bdgrab +EXPORT_SYMBOL vmlinux 0xea493c76 locks_copy_lock +EXPORT_SYMBOL vmlinux 0xea66306a sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xea968c96 ___ratelimit +EXPORT_SYMBOL vmlinux 0xeaa476dd sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xeab254a9 blk_recount_segments +EXPORT_SYMBOL vmlinux 0xeab2b262 filemap_map_pages +EXPORT_SYMBOL vmlinux 0xeab65a69 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0xeac09f3d follow_pfn +EXPORT_SYMBOL vmlinux 0xeae00545 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0xeae4bd9a should_remove_suid +EXPORT_SYMBOL vmlinux 0xeaf03e2e of_get_named_gpio_flags +EXPORT_SYMBOL vmlinux 0xeb1a74ed block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb69bc74 md_error +EXPORT_SYMBOL vmlinux 0xeb745038 sk_stream_write_space +EXPORT_SYMBOL vmlinux 0xeb8ae708 of_mm_gpiochip_remove +EXPORT_SYMBOL vmlinux 0xeb8c7b7b cxl_use_count +EXPORT_SYMBOL vmlinux 0xeb8dbd77 udp_set_csum +EXPORT_SYMBOL vmlinux 0xeb8e954f mmc_start_req +EXPORT_SYMBOL vmlinux 0xeba2a1f7 rtas_indicator_present +EXPORT_SYMBOL vmlinux 0xebb128b3 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0xebb28239 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0xebcab3a6 ppc_pci_io +EXPORT_SYMBOL vmlinux 0xebe2f7bf ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0xebedc165 abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xebfb2dd2 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xec08fd0c ibmebus_bus_type +EXPORT_SYMBOL vmlinux 0xec402022 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xec7a361f kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xec7e00dc dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xec90bd57 tty_mutex +EXPORT_SYMBOL vmlinux 0xecb1caae nf_reinject +EXPORT_SYMBOL vmlinux 0xecbb926f xor_altivec_3 +EXPORT_SYMBOL vmlinux 0xecc4f081 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xecd982a2 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xece6e74f led_update_brightness +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xed0ffd91 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0xed18348b blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0xed18fc6a release_firmware +EXPORT_SYMBOL vmlinux 0xed3aba2f page_follow_link_light +EXPORT_SYMBOL vmlinux 0xed408c0d netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed5c3c80 fb_pan_display +EXPORT_SYMBOL vmlinux 0xed6ad30e kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xed70c928 bdi_destroy +EXPORT_SYMBOL vmlinux 0xed9d5252 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc410d0 udplite_table +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xedfe0def scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0xee0561ba serio_close +EXPORT_SYMBOL vmlinux 0xee06452b register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xee13d30c dquot_release +EXPORT_SYMBOL vmlinux 0xee14c7f6 pci_dev_put +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee354f5f tcp_poll +EXPORT_SYMBOL vmlinux 0xee3e5e4e __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xee54dd6e jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xee6410ef sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xee6b60b9 md_cluster_mod +EXPORT_SYMBOL vmlinux 0xee86327b __frontswap_test +EXPORT_SYMBOL vmlinux 0xee8ab5d2 xfrm_register_km +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee9cea7b seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xeea009f7 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0xeea3cd7a nla_reserve +EXPORT_SYMBOL vmlinux 0xeea61d32 md_flush_request +EXPORT_SYMBOL vmlinux 0xeea662b8 of_device_is_available +EXPORT_SYMBOL vmlinux 0xeea788e8 blk_start_queue_async +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeee781d4 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xeeeef737 lock_sock_fast +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xeef92b7b dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xef0c2b04 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0xef1eb1d7 serio_unregister_port +EXPORT_SYMBOL vmlinux 0xef2f5ddc balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xef38534a dquot_commit +EXPORT_SYMBOL vmlinux 0xef57994c dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0xef76867f vio_get_attribute +EXPORT_SYMBOL vmlinux 0xef7ac2d0 devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0xef91a8f9 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0xefaea186 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xefc1f3e6 down_write_trylock +EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefde1bbe flush_dcache_range +EXPORT_SYMBOL vmlinux 0xefe56368 iov_iter_npages +EXPORT_SYMBOL vmlinux 0xefefdd40 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0xeff26904 param_get_ushort +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf00ec75d pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0xf00f6ffd release_sock +EXPORT_SYMBOL vmlinux 0xf016ccf1 get_disk +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf029222f key_task_permission +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be +EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0xf06dc41f mmc_start_bkops +EXPORT_SYMBOL vmlinux 0xf07a594d tcf_hash_check +EXPORT_SYMBOL vmlinux 0xf07fe9a0 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0xf084016e input_event +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf09dc7b1 uart_update_timeout +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf0a8237a radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xf0ad6d6b __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xf0c9f649 inet_stream_connect +EXPORT_SYMBOL vmlinux 0xf0dd635b pnv_cxl_ioda_msi_setup +EXPORT_SYMBOL vmlinux 0xf0deb3cf jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0xf0eacf7e block_commit_write +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf0fb819a udp_add_offload +EXPORT_SYMBOL vmlinux 0xf102cef5 led_blink_set_oneshot +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 +EXPORT_SYMBOL vmlinux 0xf10eb9df vio_h_cop_sync +EXPORT_SYMBOL vmlinux 0xf11cd6ce down_interruptible +EXPORT_SYMBOL vmlinux 0xf14161ae bio_integrity_clone +EXPORT_SYMBOL vmlinux 0xf1460735 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf148b4d1 dcache_dir_close +EXPORT_SYMBOL vmlinux 0xf14af5a6 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xf1717220 tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0xf183189b __ioremap_at +EXPORT_SYMBOL vmlinux 0xf185e29e blk_queue_split +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf19d80b4 dev_uc_del +EXPORT_SYMBOL vmlinux 0xf1a8f13e tcp_disconnect +EXPORT_SYMBOL vmlinux 0xf1ad8787 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xf1b6e921 __dquot_free_space +EXPORT_SYMBOL vmlinux 0xf1c00fba simple_lookup +EXPORT_SYMBOL vmlinux 0xf1cb5bc8 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xf1daffab __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1dc7b9d udp_lib_get_port +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1ec2249 vfs_write +EXPORT_SYMBOL vmlinux 0xf1ee94d2 flow_cache_fini +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf2169d54 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xf217726d __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xf22881e8 lg_local_lock +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered +EXPORT_SYMBOL vmlinux 0xf2a242d9 filp_close +EXPORT_SYMBOL vmlinux 0xf2a2b163 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0xf2b28c3d neigh_event_ns +EXPORT_SYMBOL vmlinux 0xf2c11696 pci_enable_msix +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2d06742 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xf2d38ac4 simple_unlink +EXPORT_SYMBOL vmlinux 0xf2d714aa rtnl_unicast +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf31eb153 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0xf322a206 bit_waitqueue +EXPORT_SYMBOL vmlinux 0xf3277833 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf33b0f7c ps2_drain +EXPORT_SYMBOL vmlinux 0xf33e5b7f md_write_end +EXPORT_SYMBOL vmlinux 0xf33ff408 eth_type_trans +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf34d9c53 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf354187c param_ops_ushort +EXPORT_SYMBOL vmlinux 0xf35dad0e devm_request_resource +EXPORT_SYMBOL vmlinux 0xf376063b scsi_scan_target +EXPORT_SYMBOL vmlinux 0xf37ef327 nf_log_set +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf3915fdb simple_open +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xf3989189 dev_remove_offload +EXPORT_SYMBOL vmlinux 0xf3b7e064 kill_block_super +EXPORT_SYMBOL vmlinux 0xf3cd1d97 fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3f12425 file_path +EXPORT_SYMBOL vmlinux 0xf405700b tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0xf410a860 pci_scan_bus +EXPORT_SYMBOL vmlinux 0xf43a4a3a blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf44d76ae unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xf461d048 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf49fc27c thaw_bdev +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4cd898b security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xf4d193ae d_delete +EXPORT_SYMBOL vmlinux 0xf4e52bda devm_ioport_map +EXPORT_SYMBOL vmlinux 0xf4e8d99d ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xf4ecdb93 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf50ba020 kmem_cache_free +EXPORT_SYMBOL vmlinux 0xf51ae235 touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xf51b3d36 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xf51bf88b nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xf5222143 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0xf524085f rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf53d6075 ipv4_specific +EXPORT_SYMBOL vmlinux 0xf5417cdc reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0xf55b3b3d __arch_hweight16 +EXPORT_SYMBOL vmlinux 0xf587a4b9 __break_lease +EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set +EXPORT_SYMBOL vmlinux 0xf5a62ecc _memset_io +EXPORT_SYMBOL vmlinux 0xf5bd9aea __dev_remove_pack +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5e1558d crash_shutdown_unregister +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf60eebd4 inetdev_by_index +EXPORT_SYMBOL vmlinux 0xf61113b7 elevator_exit +EXPORT_SYMBOL vmlinux 0xf6117512 xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0xf61a0948 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf64cc693 irq_set_chip +EXPORT_SYMBOL vmlinux 0xf6667333 create_empty_buffers +EXPORT_SYMBOL vmlinux 0xf66720e6 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0xf669d687 param_ops_string +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xf6882615 netpoll_print_options +EXPORT_SYMBOL vmlinux 0xf6888a90 devm_gpiod_get +EXPORT_SYMBOL vmlinux 0xf6915a00 uart_get_divisor +EXPORT_SYMBOL vmlinux 0xf6917334 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xf69ec301 inet_del_offload +EXPORT_SYMBOL vmlinux 0xf6a28903 d_lookup +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6c5fa21 unload_nls +EXPORT_SYMBOL vmlinux 0xf6cf2994 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xf6dffb4a blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0xf6e7e99e __frontswap_store +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf71671f6 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0xf7205607 loop_register_transfer +EXPORT_SYMBOL vmlinux 0xf72c8f0b skb_vlan_push +EXPORT_SYMBOL vmlinux 0xf72e0709 __d_drop +EXPORT_SYMBOL vmlinux 0xf737ba5c blk_integrity_register +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf778f0af tcp_ioctl +EXPORT_SYMBOL vmlinux 0xf783c80e dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0xf7927b70 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0xf7bf6516 dquot_free_inode +EXPORT_SYMBOL vmlinux 0xf7cefec9 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0xf7d4e106 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xf80b3889 tcp_conn_request +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf8137439 tcp_filter +EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf84b075e pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xf85e7a0e serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0xf85f92fa phy_find_first +EXPORT_SYMBOL vmlinux 0xf865f6ce pci_dev_get +EXPORT_SYMBOL vmlinux 0xf86ccdac blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0xf87c8555 swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0xf8a34572 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0xf8c016fe serio_unregister_driver +EXPORT_SYMBOL vmlinux 0xf8c77e56 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0xf8ca0349 dev_mc_del +EXPORT_SYMBOL vmlinux 0xf8d04f09 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0xf8d23071 sock_no_listen +EXPORT_SYMBOL vmlinux 0xf8e1ea1c param_get_ullong +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf90161d1 sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0xf9038bcf smp_call_function_many +EXPORT_SYMBOL vmlinux 0xf90b95e7 bioset_create +EXPORT_SYMBOL vmlinux 0xf91590cb abx500_register_ops +EXPORT_SYMBOL vmlinux 0xf91a965d forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0xf92069b8 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0xf93fcff7 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0xf94168c4 netif_device_detach +EXPORT_SYMBOL vmlinux 0xf9566d38 alloc_fddidev +EXPORT_SYMBOL vmlinux 0xf96f1b5c __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0xf997d9fa simple_getattr +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9f9f729 iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0xf9feea4e tcp_destroy_cgroup +EXPORT_SYMBOL vmlinux 0xfa09668b wait_iff_congested +EXPORT_SYMBOL vmlinux 0xfa244cea tty_port_close_start +EXPORT_SYMBOL vmlinux 0xfa37ea2f mdiobus_write +EXPORT_SYMBOL vmlinux 0xfa47ff4d __invalidate_device +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa52a9a9 lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0xfa5861e9 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa5c93ae mpage_writepages +EXPORT_SYMBOL vmlinux 0xfa682315 vfs_getattr +EXPORT_SYMBOL vmlinux 0xfa8420c0 blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0xfa8f58d9 inet_sendmsg +EXPORT_SYMBOL vmlinux 0xfa988767 ata_port_printk +EXPORT_SYMBOL vmlinux 0xfa9f5c2c posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0xfabc42fa of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL vmlinux 0xfae710e2 PDE_DATA +EXPORT_SYMBOL vmlinux 0xfaf4af07 devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0xfb1b2b2f icmp_send +EXPORT_SYMBOL vmlinux 0xfb3bffb2 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xfb56d6e4 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb712cc2 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xfb71f560 i2c_use_client +EXPORT_SYMBOL vmlinux 0xfb8a2483 lwtunnel_input +EXPORT_SYMBOL vmlinux 0xfb935be6 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbdd4c01 cpu_present_mask +EXPORT_SYMBOL vmlinux 0xfbe26966 elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0xfbf75378 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0xfbfb28d5 unregister_md_personality +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc0e3b96 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xfc369578 setattr_copy +EXPORT_SYMBOL vmlinux 0xfc39d476 blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0xfc39dd94 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3b160f mempool_create_node +EXPORT_SYMBOL vmlinux 0xfc3f7970 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xfc7817a0 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0xfc85f6cf crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xfc8bfbd3 blkdev_put +EXPORT_SYMBOL vmlinux 0xfc9c54ae ata_dev_printk +EXPORT_SYMBOL vmlinux 0xfcb7ec20 dev_crit +EXPORT_SYMBOL vmlinux 0xfcb926cd kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xfcc16431 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcc4b5f4 eth_mac_addr +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfce09d40 inet_release +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf97754 register_shrinker +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfd1460dd mdio_bus_type +EXPORT_SYMBOL vmlinux 0xfd48288c __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0xfd5a6be6 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xfd617c5a devm_ioremap +EXPORT_SYMBOL vmlinux 0xfd8f585c vio_find_node +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfda0665d netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xfdb36137 scsi_dma_map +EXPORT_SYMBOL vmlinux 0xfdb6cedc _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xfdb763d0 dquot_enable +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0xfde9b826 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0xfdec73de account_page_redirty +EXPORT_SYMBOL vmlinux 0xfdecab6f posix_acl_valid +EXPORT_SYMBOL vmlinux 0xfded48ed enable_kernel_fp +EXPORT_SYMBOL vmlinux 0xfdf1f87a dev_get_by_name +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe112c0e module_layout +EXPORT_SYMBOL vmlinux 0xfe17047b kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0xfe19b937 pnv_cxl_release_hwirqs +EXPORT_SYMBOL vmlinux 0xfe26fc7c nr_node_ids +EXPORT_SYMBOL vmlinux 0xfe2fc7a9 generic_writepages +EXPORT_SYMBOL vmlinux 0xfe3ca0ea sg_miter_stop +EXPORT_SYMBOL vmlinux 0xfe5a2431 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe5dd8e4 blk_execute_rq +EXPORT_SYMBOL vmlinux 0xfe768039 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe94b54a of_device_get_match_data +EXPORT_SYMBOL vmlinux 0xfea385aa sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0xfea5e448 neigh_update +EXPORT_SYMBOL vmlinux 0xfed47c06 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xff0cf5fe pci_add_new_bus +EXPORT_SYMBOL vmlinux 0xff1765c7 rtas_call +EXPORT_SYMBOL vmlinux 0xff1aadf4 devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0xff1ddd68 inet_offloads +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff2f298e netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xff42c7d8 mmc_request_done +EXPORT_SYMBOL vmlinux 0xff4a5932 dump_align +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xffb641ed kthread_stop +EXPORT_SYMBOL vmlinux 0xffba1262 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xfffe1dd7 netdev_change_features +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x043203a1 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x064fb9de kvmppc_handle_store +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x08aee50f kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0ad07ce0 kvmppc_load_last_inst +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0fe7374c kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x134c50fc kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x15c0b0f6 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x16b40bde kvmppc_hv_ops +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1d5d1d95 kvmppc_sanity_check +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1e89fd7c kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1ec74664 kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x223a9e8b kvm_clear_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x280f59bb gfn_to_hva_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x29ab7c68 kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2ff18f67 kvmppc_set_msr +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3209ade0 mark_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x36d68cb9 kvm_clear_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3724668a vcpu_load +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x40ac0835 kvmppc_core_queue_dec +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x42cc8e39 kvm_vcpu_block +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x48ba1ac2 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4ff7d754 kvm_unmap_hva +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x52346a95 gfn_to_hva +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5e087fb8 __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x61eb27cd kvmppc_core_prepare_to_enter +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x649ee4f5 gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x650c3dff kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x669da1fd kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x68aef45f kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6c3e53cb kvmppc_handle_load +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6e519e7d gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x75784662 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7771202b kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7aa64803 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7c87a42b kvmppc_h_logical_ci_load +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7f3ad15c kvmppc_kvm_pv +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x813d2550 kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8425d817 kvmppc_book3s_queue_irqprio +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x85a5a4b2 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x88712884 gfn_to_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x896aade2 gfn_to_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8da01274 kvm_get_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8e1cd06f kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8f925005 vcpu_put +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x915c9f76 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x944dbe75 gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x952d1f40 kvm_read_guest_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x95806574 kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x99168c2e kvmppc_st +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9afd4df9 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9b505464 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa461b016 gfn_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa4d952e9 kvmppc_unfixup_split_real +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa8e5566b gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xaa5b8672 kvmppc_rtas_hcall +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xab59d373 kvmppc_free_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xac0c425f kvmppc_xics_hcall +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb13640cf kvm_write_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbd4fa6ae gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc04d88d1 kvm_read_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc1959760 kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc3109f8b kvm_vcpu_uninit +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc70e4b59 kvmppc_claim_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcae621c2 kvmppc_ld +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcbb2efc8 kvm_init +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcc44961f kvmppc_alloc_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd1888733 kvmppc_core_pending_dec +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd1c5dd75 kvmppc_gpa_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd337aa75 kvmppc_prepare_to_enter +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd9149b61 kvmppc_pr_ops +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xde15a2d8 kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe525cd5a kvmppc_core_queue_program +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe6f63ff4 kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xeb1f516a kvm_put_kvm +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xef11cb35 __tracepoint_kvm_ppc_instr +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xefd146dd kvmppc_emulate_mmio +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf1c04c7f kvmppc_h_logical_ci_store +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf1c0c14d kvmppc_core_dequeue_dec +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf36f4fe4 kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf3a94516 kvm_get_dirty_log +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf3c27064 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf4985bf5 kvm_vcpu_init +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf4da3546 kvmppc_init_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf85b1913 kvm_get_kvm +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xfcc5b781 kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xfe2f5cb6 kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xfe30af78 kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm-pr 0x1c50881e kvmppc_emulate_instruction +EXPORT_SYMBOL_GPL crypto/af_alg 0x0009a872 af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0x1971a792 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x2193f901 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x324ea0f0 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x4d0d8f45 af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0x508e0b94 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x58716898 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0x67ed5d6c af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x71646ff4 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xd951176f af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xfdb51809 af_alg_accept +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x8b34f1dd async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x2b888ada async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x4c26ed43 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x038f56fd async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x8537d74c async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x16e9e5a5 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x3e90f4c8 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x487a1661 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xe8caf508 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x3f44b305 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xbbf08e8e async_xor +EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x93ebec2d blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x3d587901 cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xd06dc0ac cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 +EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 +EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 +EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x244abe2b crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x6735a1f7 crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/cryptd 0x06b0fa87 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x09b6da83 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x3ab0b20d cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x438f74d1 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x482e8fcd cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x965f1e9a cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xa90e1e64 cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xc1199503 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xc64d072d cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xcfb083b2 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey +EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey +EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table +EXPORT_SYMBOL_GPL crypto/lrw 0x593af175 lrw_crypt +EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table +EXPORT_SYMBOL_GPL crypto/mcryptd 0x1116c8f4 mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x28596c37 mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/mcryptd 0x4ece78ae shash_ahash_mcryptd_finup +EXPORT_SYMBOL_GPL crypto/mcryptd 0x53b2c95a shash_ahash_mcryptd_update +EXPORT_SYMBOL_GPL crypto/mcryptd 0x6e1e641f shash_ahash_mcryptd_digest +EXPORT_SYMBOL_GPL crypto/mcryptd 0x7db156f6 shash_ahash_mcryptd_final +EXPORT_SYMBOL_GPL crypto/mcryptd 0x7e6b7ee7 mcryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/mcryptd 0x8347667c mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0xec456886 mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x0bbdcce3 crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x8ffeec9b crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xc4440a32 crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xf6d84bfc crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x33a3f36b serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xaaf83a00 twofish_setkey +EXPORT_SYMBOL_GPL crypto/xts 0x1bbe616c xts_crypt +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0f371ec5 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0f4be5d5 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1a80cafb ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1e423502 ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x30ec2b65 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x30ef516b ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x342f37ce ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3ac02bd1 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3af688f3 ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4c1da5fd ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4cb80a06 ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5e601ce3 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa4af5454 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xabe9bb70 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbdab21de ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc37bba02 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xcdb31ebc ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe1194706 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe96c06bc ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xebd64f63 ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf4f2582b ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf84c7b19 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xff91b07f ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x0ad9aa49 ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x0c2a7faa ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x1d80b5e3 ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x38e4163c ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x58ce4659 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5995f4b4 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x71defb62 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x8a156d69 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x8dfe3e0d ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa711b615 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xbda045c0 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xce063504 ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xeea6fe2d ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x1ca5a4bb __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0xf2972347 sis_info133_for_sata +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x3d060fa1 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x75f7d4e1 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xcdafec84 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xd387b571 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x22e361ce bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x26669f36 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2fa43b9c bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3175d084 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x38266883 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4cc22733 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5420efe7 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5a2e4bfd __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5e7bcfab bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x66bcd2b0 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6b7a5e55 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7b5c04b4 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x927ac710 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa5921947 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa98c60ba bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaccb8fef bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb88a3708 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbc8349e5 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcf0ac8bb bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd5eaca96 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd9e00b71 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd9e37115 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdd72bcd6 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe6e194b2 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x14194ed0 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x25a76212 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x5627ad31 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x948eeffd btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb1808136 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xdae7687b btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0c4435dd btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2c6f242f btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x30fb2e42 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3e4e0728 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3ef8cd6b btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x415ec53f btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x46263f7b btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x925bcc37 btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9fd95f9a btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa35250a3 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa537526c btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc90d21a5 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x10c0c3b2 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1ed6459d btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x21855748 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x251eb094 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x394111a1 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x67a9b0b3 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x93c17cbb btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa52e347f btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb592857c btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xdee93b70 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe9adb704 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x21b98512 qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x842ef75d qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x99340ce3 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x7cf092a7 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x21419608 nx842_crypto_compress +EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0xaab4e508 nx842_crypto_decompress +EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0xaef52668 nx842_crypto_exit +EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0xf49df54c nx842_crypto_init +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x15fecf31 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x8db1acac dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x9a790542 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xb6914ae0 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc46a2534 dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x31c68fda hsu_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x6b5fe593 hsu_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xf50a0c95 hsu_dma_irq +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x7c3c1843 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xc92c5657 vchan_find_desc +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xd3d3ff73 vchan_init +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xece8cf9a vchan_tx_submit +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x016c50a8 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x017ff173 edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0506cf2a edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0bce1c8e edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x22126585 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2a817387 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3d0e047b edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3d8243be edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x451e78a9 edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4a355b95 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4c5e569a edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x75b7fd01 edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8cbf48ea edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x93981bac edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa5f6f07b edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa87846d9 edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc6abedf7 edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xcccf38d7 edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd440b2e7 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd7ac4ffb edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xdc37cf51 edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe2d6f207 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf91f48b9 find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x021e144d fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0ff4ccd7 fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x63a58967 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6d22e674 fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x81cf0d04 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xbadf9e52 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x380d757a bgpio_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x459e8ec0 bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x449e46bc __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x782eeee8 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2f539ace drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x307915c0 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3ea14443 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4656ce8d drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7f8a3c5d of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb7966a80 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x29640787 ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x81e6208d ttm_dma_page_alloc_debugfs +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x98828c4b ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd +EXPORT_SYMBOL_GPL drivers/hid/hid 0x02561241 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x06e9c1e1 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0943dd7d hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x09686230 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x177822f9 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1f2c46e8 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1fc49801 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x32352977 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3e54997f hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3fbcce51 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5385a49a hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x61330bdc hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x62d86300 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x68533dae hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x73c6d775 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x95523cd2 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x98be66de hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa22fa653 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa378d4b0 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaa581441 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0xac7ff977 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xad0d207e hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb41135a4 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb703a57c hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbaa7ebc7 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbd6bf32f hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc25588d6 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc3d48653 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd0653721 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd6c4bc5f hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xda67bf40 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xde7ff72f hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe609ff38 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe7efd009 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf5856693 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf98929fd hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0xcdead2d2 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x38405b29 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x589c8e20 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xc9d4006d roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xdb5fd393 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xe2cc99d4 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xe8eb24e9 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x003c5073 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x12468c65 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x28f396e5 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7222d33e sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7be27cf5 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xaa8e0ba8 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xcdac73f0 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe59507a9 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf9684b77 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xe25e7625 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0cdc71c4 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0eac1ba5 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0f2ab9c2 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x18794235 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x277b17f7 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x32678851 hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3d5a9c48 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3fc9e582 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x41415a80 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x744b86d1 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x74ec8b98 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7d9a0da9 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x86305472 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x94e0df18 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xafa2f02b hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdd9fa13a hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xee71ee6a hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf18038a5 hsi_async +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x6bf25125 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xb21396af adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xbc75916e adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x00ef47c8 pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x027a7def pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x04fe0692 pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x1101f398 pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x15d56865 pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x1fb2fcec pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3185b68c pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x395ca342 pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x6a706d37 pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8341aeb6 pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8dfb8ee9 pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x95329ca0 pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb4bf9b62 pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb785e7ef pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xeca05286 pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x43353938 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4bdabdf6 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4cbd4fc2 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x53f51ce0 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x8c898b96 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xca05aec1 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xff16246d intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x8962dad6 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc3bc2649 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc61fef08 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd2899138 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd2da9fe3 stm_source_write +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x20f1d054 i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x3a8b606a i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x6a735f1f i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x7facb55d i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xd898390b i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x10841eee i2c_del_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xf0de020a i2c_add_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x747208d3 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xed1ffaf7 i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x1d936721 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x3b48d256 bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xeec7b4ab bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x1239a140 ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x31849561 ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x5046f582 ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x5a9459ed ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x61643391 ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x64a5f4dd ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x74bdc533 ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x8130d9f4 ad_sd_reset +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x83746d28 ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x858cfbaa ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x733650f5 iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x9733fdf7 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xb8e0c106 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xe747af97 ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x1262d610 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xb6ba4f64 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xf4b10589 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x008b6c41 adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x00c73664 adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x23663b8f adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x3cc4d2ce adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x47eb5096 adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x7e3cc772 adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x882046d6 adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x9f2e1da7 adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xab634346 adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xacee641a adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc459efa6 adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xd27e6807 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x016e1ac3 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x050666e9 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1e8d6cad iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x249f8962 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2daa7124 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x333382ed iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x45cfdbf5 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4921882f devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x52278b54 devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x55e305d4 devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5a7a9ff0 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5af5fa6e iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6badbb88 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x83406057 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x860e5af6 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8df4fa15 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x98d447ed iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9dee6076 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa6dfa960 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa748aed2 devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc33a0df6 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcbdaedc7 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcd5811b6 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd393fe66 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd81d95f2 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe527e371 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe5b4cc5a devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xeb8bcfe1 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf74a6f0b iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfa40a32e iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfaa3697a iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x4c4646e9 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xf4028e7d matrix_keypad_parse_of_params +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xbcebf9f4 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x06667d22 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xcf27c3d4 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xdc2a4d9b cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x5c999043 cyttsp_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x7cff7d6a cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xfea53c8d cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x04bcaa82 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x0a96e91b cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x0b6950f1 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x3defb3d5 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x911a8392 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x916302f0 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1191a44c wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x187b4c8b wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x42ced889 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4d5d4fbd wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5e89a623 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5f70c5d3 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x77421f40 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x93dac54d wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc7eae61f wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc921f3d6 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf6342c99 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xfd0d4882 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x239e6f62 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x424627bc ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x72a6005a ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb247d043 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xbb08e1ab ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc4426582 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xcf298a15 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf3bf2dd8 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xfa4cefaf ipack_get_device +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x014fc676 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x16687bfb gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x21b0177a gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x2ece69f7 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x34a78c98 gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x42b8a49c gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4cf14050 gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x59cefa2c gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x6e152a5c gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x70a85432 gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa2fab5d1 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa9688f5d gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb326307b gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd3a5e63f gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xdac4f531 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xfd252a2c gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xfec0dc3c gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x144abdd0 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1c61ae8a led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x3036a772 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x3b0b14c8 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x91824a44 led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xff3b77aa led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x0272b8e0 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2a227fc7 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x5a9e830c lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x6fe5d110 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x749b7fa5 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7dce70fc lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7f416d54 lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9430055f lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9c7d54d0 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa69a6133 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xfbd97097 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x07d5978c wf_unregister_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x0a0527be wf_register_client +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x1a9f6c52 wf_put_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x332e73bb wf_unregister_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x69a914d0 wf_put_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x75147afa wf_set_overtemp +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x8d72ba7f wf_get_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xbcace2a5 wf_unregister_client +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xc1414605 wf_register_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xc9aab0df wf_register_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xe9c33c29 wf_get_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xed82a14f wf_clear_overtemp +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x3492a885 mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x41bcc193 mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4f1bc6d6 mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x6d89a981 mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x712f2489 mcb_bus_get +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x87eaf053 mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xa2d02ef8 mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xac9617b1 __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc258de57 mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc6284fdf mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xddb02fbd mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe9fa8639 chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xed8e20b3 mcb_bus_put +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x021811cf __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0f0677b8 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x10e6a889 __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1154f7a1 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15aa8e40 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x174c2a29 __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2205bcf9 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3fc7cb7f __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x469f38de __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4ba51ecf __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5b2a89c7 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d950f2a __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5e21030c __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5ed04550 __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6eef9654 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x74ab7b0f __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x84efb763 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8fe32879 __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x91f02667 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x93f7fc02 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa1de5277 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa81bf581 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7d964de __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbbace2cd __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc6673631 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8a2f711 __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe3de2ba2 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe902838d __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec919105 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeea27f46 __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfad1ec73 __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1e0cb305 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7c4b27cc dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x977de181 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xbf07c504 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc86855f1 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc9ae131c dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xdb6fdd3b dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe5a9da57 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf26660a8 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x08ab7ead dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aba7f5e dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9310ba06 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9c256008 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa1d2413a dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa448e19f dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xafbda3f3 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcbb1bae2 dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x46e94e84 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x62b3edb6 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x9035476b dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x9ce4b44c dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xacfb1ae4 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xb461bdf1 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xc154b9f6 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x21ed4f3a dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x307391e0 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x24b99941 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4430764e dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x45ab972a dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x8768b707 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa68e1f06 dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xabc207c8 dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcf24502a dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd0726e06 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xe538bd70 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfad9d53a dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfc62ef4e dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x17c36f29 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42dbdfc3 dm_tm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49b35849 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x55b4bd4d dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x827a42f4 dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9f624559 dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xacaa8c98 dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xafeda29f dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd29923fb dm_tm_shadow_block +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf375d009 dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf5455120 dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x10c8aa1f saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x53b1d14c saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7f731366 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb7d9748c saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xbe865583 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc30e1ef4 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe7969f4c saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe796f36a saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf1c91e57 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfa888ee0 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0aa92260 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x3b7cb328 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x51e057b7 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xb3ad091a saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xcfab6830 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xeb1175de saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xf4916468 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0808edf8 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0bdbb849 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x258dc581 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x28239414 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x30a90d9e smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4e31041f sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x618a466e smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x623bddf1 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7ef1a8ff smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9426ca85 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa825d754 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb5f0f883 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbe439c19 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcb10f1f5 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd0b61eff sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd4a3403a smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe2cad982 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xd2998f8b as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x59b24dd9 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x1218f455 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x0de6abd3 media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0x22fd6433 media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0x3a77a5b8 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0x49d7f9bb media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0x49fe1c2d media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0x5b790f8a media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x5d69ec14 media_entity_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0x6c7a6979 media_entity_init +EXPORT_SYMBOL_GPL drivers/media/media 0x8591e526 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0x9252527d media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0x9f724db9 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0xa6a4e372 media_entity_create_link +EXPORT_SYMBOL_GPL drivers/media/media 0xa7a6d5f2 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xda6bf0bf media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0xdcddc366 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0xec7f14e6 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xeca28836 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0xecb0a80a media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xf0928a3a cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0427a664 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1d09973f mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x247c093b mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x60e09851 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x61566994 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x689309f8 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8a15c5f9 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9d8e44fd mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb5046126 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbbcaa4c9 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbcc1014a mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbd86156e mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbea3cff6 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc351b10b mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd3202df9 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd7661564 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd9b0ceba mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe698ee2d mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf942bf20 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0e90eafb saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0f26ae88 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1f9ed219 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x23228797 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2b38e450 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2c4d5e1a saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2e35cb45 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2fcc2fb7 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3a24623c saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x689e0e3e saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6fa62895 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x701d7336 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x819b18a9 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9e5203f3 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa769bc99 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb0252da2 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc9f88f4d saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd4108b3c saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf2aadab9 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x17d8ed64 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x1d892a16 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x29543b19 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x3f553479 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x6cd92e3a ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xaa457e3d ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xbe9f4c6b ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0b2585ce xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x1b299983 xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x38807b1e xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x490bd11c xvip_get_format_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x843d4da5 xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x8d2a2767 xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xd36bb7ec xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xd6b1be88 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe85e0bdb xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xd359bd79 xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x4818e8b6 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xaab13daa radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x03dc6149 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0c00e812 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0f011390 rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1361a916 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1e92dad8 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1f9186fe rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x36a4c5af rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x45f08bbb rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7c45750b ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9622da38 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9d1dc9f2 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa8c3d59a rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb1bcc6b8 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb3f3de75 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbd585b2e rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc60e2e9e rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc62409e3 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xce46c37b rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe8aa6d5f ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x601eeca7 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x591a5d0d microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x37e14f36 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xa5e4944a r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xc087081d tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x01221894 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x703e7a5f tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xd6ab77e6 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x353f2389 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x5684aa30 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xe6483b3d tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x0fc69163 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x8b124648 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xd32e9551 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0ec988d2 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x23bf76b1 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2d520250 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3291510b cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x332edff5 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4219c8d2 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x48011d78 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5a0fa118 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x615e3e1a cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x76e9a390 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x88b765fe cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x975a4749 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa2bb6b55 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa7a55f57 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbccf22dc cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc6cbc473 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd466533b cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xdd7c54aa cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe26c40f8 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe8fd0267 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x1de81d9b mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xf17b49f8 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x026a027b em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0519f84c em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x072913b6 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x08175a4b em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x28c2e489 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3ba607c6 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3c004d27 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5aef73c4 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5e94ddac em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x62210b08 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x673cf82d em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x83c8d824 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x93927589 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb46fabd1 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcc0a348f em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe626ad60 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf0cbb048 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfa16c2f3 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x06e0e88e tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x9fd19163 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xb516fc9b tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xc25d17c3 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x04d0dabc v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x352f6486 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xbc63bc30 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xc49ea600 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xeb71f0aa v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf345602a v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08982d59 v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x0dec5451 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xa4464096 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0355a150 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x05520e60 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x06d328be v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1735c1f9 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x313fe848 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x45acf0a6 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x48cd22fc v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x491d4d01 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x49cdf495 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5d98e32a v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6076da77 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x619db0f6 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6379ed03 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x693142ae v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6e05e19a v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6f6409a2 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7b112e85 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9bce585b v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xad7dfdfd v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xca492973 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd0314c41 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd0f7967f v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xde3bef30 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf4ccd95b v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf71aa25a v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf920fe1c v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf97bbfcf v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x063dc6ca videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0acf549b videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x15f2417f videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1809889d videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1b988845 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2a4da0ae videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x328ab813 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x397603fd videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3b1dc655 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3de1b8fc videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x58105376 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5a143b0c videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6c968179 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x77d92fc2 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8e5a9cd0 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb1af1bd3 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc3421766 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdae9f107 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe6e037e5 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xeaed789e videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xed89d217 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf8a8e60f videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfb56806f videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfeab0158 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x2a8f1ea8 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x3a024489 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xd7d07c0b videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xe6bbc9c7 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x185661ba videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x5d497a92 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x60ea0bef videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x027ce85c vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x0a8458d9 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x0d23800a vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1a80b84a vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x4340c64c vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x4b169341 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x550422e2 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x56d942a3 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x63c65f2c vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6bb15bef vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x772557be vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7ed126bf vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x9b02da79 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xbc38eed5 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xbcc956be vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc31acbcc vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xca545c4c vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd4259756 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x3940f7d2 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xa70deb8a vb2_dma_contig_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x1506d101 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x4a26faa9 vb2_dma_sg_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd30ec30f vb2_dma_sg_cleanup_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0xd80827d5 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x06340070 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x077b45c6 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x09a057b1 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0dbc16ec _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1c87e24b vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2266b246 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2ff58b02 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x338cee25 vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4072e3ef vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x51118521 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x51e716fc vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5d0539fd vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6243e7cc vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6794067b vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7311ec70 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x876ed788 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8ad00866 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8cc25398 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x933bf8e2 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9e7e8691 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa3cc9146 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb556be74 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc43c1772 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc833b672 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xcce41a13 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xde404f3a vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe69f94ab vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe77e808b vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf005bb2e vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf08d6d10 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf5c63639 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xfd70b706 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x0ecf4c7a vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x096bc686 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1021a6c1 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x133adfc4 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x14335612 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1ef3a428 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ab9d732 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2f76a77e v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3a216dae v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e73fa8d __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x51534b1f v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x53553f00 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x556233e6 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5d54df8e v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5e932b34 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x618a6790 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6eaf5df6 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x70237a64 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74a017c5 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7bfda7d4 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8928cedf v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8ddbd7c2 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9a8a6f1a v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9b39d719 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa56ab32d v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa5cbaf04 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaca2544a __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xadff61f9 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbf4878db v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc2379bba v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6429d8b __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc657a259 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xccbcb2a8 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe72c650c v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe8c5f987 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf4ddc40c v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf8c179ad v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfad3cf8d v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x22976912 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x6c0b942d pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xcb4f48fe pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x03230ac9 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x55be2c4a da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x6952de35 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xa6a70305 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xc56e2590 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xf95b7c7c da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xfce91b3b da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x2833a4ad kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x3d238735 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x3f2700c4 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x64978e31 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xcfea00a8 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe9d418b2 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf7224615 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xfa6efdec kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x114804a3 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x73b32f07 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xf033f088 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x5d91dfcf lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x64dd0194 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x85d20dc6 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x95ca7cfd lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x9f499e33 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xfa961ba7 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xfb08734f lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x7aa14060 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x85299bfa lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x858133e5 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x06ce0f68 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x0f5214e5 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x8b226aa7 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xaafbefa5 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xea41a485 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xf84e51ed mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0fbce27a pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x425a4682 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x498f2023 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x52018295 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7593f2b3 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7624029e pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x77028c68 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7b492465 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8140fd53 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xcde10b44 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xec1d02e9 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x17cb0f40 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x7a529ccb pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x421d9c45 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x516110b2 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x9ae6bb17 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa2f79230 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xdac0b4be pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x06c0a533 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x09f6a4aa rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0e86a880 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3630ab78 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x435ca9b1 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x45140bf2 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x594ae696 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x60a1e602 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x6d35050b rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7108d551 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x777dadf2 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8ce28ae3 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8cedb527 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x974668ee rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9c51bfe4 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa494e963 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb5d9fa0f rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xbc5ce13a rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc53f487d rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xcc387070 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd149c933 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xde126545 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xfe9fceeb rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xfef4a078 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x0109fa2e rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x3981b4e8 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x481606af rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x4a7a1256 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x5ee0a9dd rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x91cc0a75 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xaa903083 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xc61544fa rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xc8c6a8f9 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xce208d25 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe39c76f7 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xeb25d445 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xecbb581b rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x017c1a99 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x037a1ecd si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0e4599f6 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x17f4be0c si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1c6ef5c4 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x299a88b7 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x320ea4bd si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x392564ef si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x39379446 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x40bd6a1f si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4604028d si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x50102791 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x53799eb2 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5ada2627 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5cc51809 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5e569039 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7f458596 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x80ea806c si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x838d139a si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9332a937 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x94e9f927 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9efaf23a si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9f60b4a2 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xae4ccf49 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb38d6675 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb3fd12ab si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb46affe9 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb522fcd8 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbfcf249b si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc03d8df4 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdad3a58e si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf368f0ba si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfb004bc3 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xff52b5f7 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x2da6076b sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x6880325a sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x7d556d82 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x8a1e9698 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x940c91fd sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x27c2b436 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x4ae0200b am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xcef000aa am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xe5f6aa17 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x3bdf8635 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x5dae03d8 tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xb11a8c83 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xd26704e3 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x4d5f76e9 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x246c1453 bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x9a53b9b2 bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xf21df7ad bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xfb4df8a5 bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x5bb827ab cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xa5b00120 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xaad8a8db cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xe8e536e0 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x0faebc19 cxl_set_master +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x26dafc2c cxl_perst_reloads_same_image +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x30878ecc cxl_unmap_afu_irq +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x36637a65 cxl_read_adapter_vpd +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x465f11f7 cxl_fops_get_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x49bfc456 cxl_pci_to_afu +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x4a214d52 cxl_psa_map +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x5096095a cxl_fd_read +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x64b381b6 cxl_release_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x650c6637 cxl_map_afu_irq +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x67eaf8ca cxl_afu_reset +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x7323eb82 cxl_start_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x79a109bc cxl_allocate_afu_irqs +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x81847cc4 cxl_fd_open +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x818ccf52 cxl_fd_poll +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x8740bc47 cxl_psa_unmap +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x87b82661 cxl_get_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xada16397 cxl_fd_ioctl +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xb104bf1e cxl_get_fd +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xb665d6a3 cxl_process_element +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xb7792b0f cxl_pci_to_cfg_record +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xc18f9908 cxl_fd_mmap +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xce725fd4 cxl_free_afu_irqs +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xdde8ace6 cxl_dev_context_init +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xf28fd471 cxl_start_work +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xf40437fa cxl_fd_release +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xf79ef942 cxl_stop_context +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x16c557b0 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x23c0c639 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x39925c83 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x4079c84e enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x75f401ad enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xbbf769d9 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xbc0535be enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xeeb67c35 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x10b868f7 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x22a7f39e lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4a6921d0 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5694a393 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7293009b lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7d840469 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xbc3c88a9 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc3b11617 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x95ea0797 st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xbe92fb75 st_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x02160476 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x198bc616 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1f05dd4a sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x22638f92 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x331f64ab sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x70bcfc61 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x736c6a04 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x77179f11 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8fda1f06 sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x954f0666 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc4b16d72 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc72ce78a sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc9c0433b sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe297edfd sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x4af01d31 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x546fb3ed sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x62a17d49 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x673bd746 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x6df19d32 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x7d54d632 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa3cd79eb sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf44d3a92 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf72be11d sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x2e1491bc cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xd30ab42a cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xec2391c2 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x3f67e958 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xb2cc6d0e cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xcc9e26de cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x5d594059 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x3dea8726 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xc4b1f058 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xd9f664a2 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0206d65d mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x029c1cee mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x038eb529 mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0a6251d3 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2f5cd2b1 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x392fd5dc mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x39e2c0d1 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x53512ba7 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x54fb8240 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x58ec4653 mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5d6f65ea get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6f163c3f kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x70554a06 mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7b1756cc mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7c7f9303 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7ea0ad37 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8afdcf20 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x92090ac9 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x99a2e484 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9b94a306 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9f113a80 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa3f5a993 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa536bb61 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xac4f4ba7 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbd0c479f mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbddbceac mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbf7814db mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc2248903 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc4744323 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd3444381 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd96516e2 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdc2ebb09 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe1368edf mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe13ecb6e register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe150f84e mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe501784b mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe7123c5a mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf079b1e5 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf5dc71d0 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf9f0fff6 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfac5f0c9 mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xff0cef79 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x0952732d del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x76cdf42b deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xb92bc3c5 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xba633ae0 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xffe3dcf5 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x0b80e5fb nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xc91d7251 nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x57773cd1 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x183042a8 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xb46b54a9 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x0a349ead spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x05edcf1e ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x07c48d94 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x14f3d06e ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5880100d ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x73c15ffc ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8653f163 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x91233bd5 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x952891f1 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa60021a2 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcdd7bab6 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xda4ba855 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe22e5641 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe33d247d ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfdd8f9bc ubi_close_volume +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xb5bc704d arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xe22f1079 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1d6b2dc6 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x22131009 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6c168360 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xc15e8e37 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xdd03c0ae c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xfebc187f register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0eff7d8b alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x27d8af2d safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x2d3908c5 devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x324a7098 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x485aa7f3 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x4b5326f8 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5b776d2b alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5d0a9797 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x6e90ca58 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x89882393 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa128c507 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xaa9cecee can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xad257d0f can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xdd0c5e8c register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe667c93b unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xee0457e2 can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xeefdd475 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xf44f55d5 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x509a7c2c unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x9bcf658f register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xc2ae1427 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xea17ebbc alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x4ea6c099 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x4f3ef0aa unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xae7f7c15 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xefa3523f free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x2129200f arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x9ccafe80 arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03156736 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04692f27 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06fbd254 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x075ac7fb mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0df1b2c3 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x104fb361 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12ea6f1d mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1539b82b mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15d2a144 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1826b22a mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19626523 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a8c8cf2 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e693e71 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e83ec84 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20e1ca1e mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x254f098f mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c4112a3 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2cb9b631 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d27145e mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d941aa7 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2fb71a06 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x337b358e mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34872d23 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x348bb94c __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x377de9ae mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38382452 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x394d559a mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39706db1 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b662875 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c23ba51 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ff9626d mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4216f6de mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4456d5dd mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4492ef9e mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47177fd6 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x491cf2e1 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e0e6660 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4fe167ef mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51de340d mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x560c40e9 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x578d4ef0 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57ff4262 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5cb64840 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e36f178 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63fc9124 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x657b0d8b mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6626e4bf mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66676850 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6685ff15 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6716a034 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6859a305 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68c5cc79 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6929b781 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6aec3831 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e50f5a1 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e802596 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71924a78 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7386e84b mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x775d5040 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ce51310 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7da61eb0 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e922520 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8264da4f mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8cb05004 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91a74825 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91e3b11c mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x930bd1d7 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x934d095d mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93fbe6a5 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94209bf5 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94486c83 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9991d3ae mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99dead1b __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d526bf4 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9fbc7cfc mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa03d3771 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1f5c089 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa45a1016 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa481dbbd mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae84680f mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaef50277 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf398500 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb042f36a mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb166398a mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb61a8f9e mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc308483d mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3846182 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4a059ab mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc561e8e7 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc593dd68 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9058e9e mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc662c51 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc93365c mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd06adce9 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0f87a82 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2a7f6d2 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd48334c4 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd547b290 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd64b2abc mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8460cb8 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd934ee3e mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9397152 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd94fb8dd mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdce27407 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd86bdd4 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdece2073 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1a3407d mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe280d4f2 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3d5a34c mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe690e2eb mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea375e3a mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeaabc979 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec7a7bc3 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xece8dfa8 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0441133 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1206ad7 mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf747da19 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf75c072c mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf765bf83 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf85897d1 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbf56d0e mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd319ed2 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd5b9d05 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe02da9b mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x008ceed3 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04a0b65f mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ee695e6 mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1154ce61 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11ae5acf mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13229645 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1fd58f1f mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x226c1b7c mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25329539 mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26738199 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x310b0f33 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3388322e mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33d1bac9 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e4deedb mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44756d39 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x496a42f5 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5123aa78 mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51e797ce mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54026e2f mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x657c526d mlx5_set_port_proto +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6afe28ec mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73f02dd1 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7696b21c mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7965d52b mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7de3092d mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x821e7449 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x828c9787 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x843c053a mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84d99a66 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x895093f2 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ff5c864 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92725a2e mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6dd907a mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9a6922c mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9ea7653 mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5d2855e mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8c28605 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc0b1bcf mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd65f3b42 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7102a40 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd75b4300 mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9ea9ec3 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0b2fc60 mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe38b24bb mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7b5d483 mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x5e28947e regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x8b0e8417 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xac144314 regmap_encx24j600_spi_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x4427b7b5 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x66af9de2 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xaac0ba86 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xe726f50b stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x1be552a3 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x8fb60721 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x9822a1ea stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xdd9a6728 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x0cfcca64 cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x0dbf0370 cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x16c2f42b cpsw_ale_control_get +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x190af9b0 cpsw_ale_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x3e554d38 cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x3ec252dd cpsw_ale_control_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x45506363 cpsw_ale_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x49694093 cpsw_ale_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x66133ee5 cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x870c6375 cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x9ede023e cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xa3aea2cb cpsw_ale_dump +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xef1125d8 cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xf857f6f9 cpsw_ale_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xfecfb566 cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL drivers/net/geneve 0x1d4507d8 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/geneve 0x557633d5 geneve_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x23937ade macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xb9b2fd95 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xea4780d5 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xf357686b macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvtap 0x2a581167 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1ff527ee bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x28c5879e bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x61475ee7 bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6a8ffafa bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7dddd22b bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb955e163 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd3ccf6ed bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xecc587c6 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf1596aaa bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf49bc697 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x77253c79 mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x39a35f32 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x57e4b95a usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x8ba4b092 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x9c48058c usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3b8ed378 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x77319996 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x79d16593 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9bb31d24 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb90ca0c4 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc6d343e0 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xca8eb427 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xcdae0b1d cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xce98eb78 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x126039c1 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x27483c55 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x2fac861d rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x761f1938 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xd03d53db rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf7637821 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x02b7255d usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0583e5cb usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1c4b1bf6 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x24fd86e2 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2e79c9f5 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x31dd0cef usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x44dcddd3 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4b9b8d76 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x53d63740 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5a4a5065 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x613be9ff usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7b146e83 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7f5eb474 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fbe2dda usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8868f1ca usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8be2e463 usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x91436f34 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x93bf0841 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9de09727 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa0d09cc2 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb9b72b14 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbb5026d2 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbc199618 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc84bc32c usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd09e84ab usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd14a543f usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd19b8b13 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd701f82e usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe3b29ada usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe6ce2398 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe8c20335 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xea9fee24 usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x3e55d26a vxlan_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xfcf8a099 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x072afa10 i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x19eef3d3 i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x29233f8c i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4cec3841 i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x54a9445f i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa4d8c35e i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xaa575a22 i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc564c689 i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xcba6b2e3 i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xce7229c8 i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd6b92694 i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xdc644f6b i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe67fa232 i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf3b5d366 i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf621596a i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xfe432b02 i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x758ab9e1 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x7da5683b cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xb902b71e cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xbe750a40 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x6b42f496 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x54d49d21 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x554937d9 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x6f1d4562 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xd55eae29 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xf1d19dc0 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x002b2e74 iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0d556623 iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0f48dcb7 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x18b78fb4 iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x234ceac5 iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x30fe705c iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x371f4659 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5a40d754 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5f32c1f9 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x622cf855 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x67483e57 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x73eda088 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x746c0eea iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7c77d4b1 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x814f8a6a iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x844e5d4c __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9f44ee10 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9f5ea0b3 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa48908aa iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa7a56b17 iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa7e61401 iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb23ae967 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb2679f5e iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb62f1802 iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc59cf44b iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc67c31ed iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd70bebef iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xda49f813 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xdc5d1cbf iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe0d3442b iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf5aea4a7 iwl_notification_wait_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x1a3cb162 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x212ffde0 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x304edc9a lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x45758af4 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x51d8b406 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x6eb7969c lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x7c998658 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x7e6f3583 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x82d8f3ef lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb19b35a9 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xce236a9b lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xd0b54807 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe00b5f77 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf79c2350 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf9f03dbe lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xfbf94959 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x1aa29aee lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x41e5cc5a lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x5801738c lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x6c1e3390 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xdf39a07a lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xe2af7a81 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xebd548ca lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xfb1803b0 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x23c9f4d0 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x5088defd mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x5961be14 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x64cbb578 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x66b3bca9 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x6a866167 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x734aabdd mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8268a240 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x849435d4 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8bf5d3be mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x94870d57 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xaacf2324 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xad85b000 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xbd1e3141 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xcc53dd5b mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xce9b3daa mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xcf21fb89 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf91cf4c7 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xfc452914 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x26bc959e p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x5e4b048d p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x5eadd5ac p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x7f994ffa p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x8590f4ac p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xafa1f781 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xc2623839 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xd47d6bae p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xebc0bd78 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8b8ce10e dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x92c3edb8 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc0eab8a8 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc2b856e0 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x04f81867 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x09e393d5 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0b14abb5 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1783c4db rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x183ee268 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1b7a1609 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x285c569c rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2a36dec8 rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x30505c27 rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x33b0b766 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x35afbbaf rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x37d1dbf0 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f3a8de3 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5c0cd1e2 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x64893af0 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x70ef050a rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x72bd087b rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x881984ba rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc29619f7 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc878bf83 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc8c425ff rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd27a0f08 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd27b1509 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe091e1d2 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe4bdc1d3 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe86244cf rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfeabf201 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0292beb3 rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d0b6636 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2be8d624 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3cb7aa0e rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x409fed9f rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x62618823 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x694c8f6c rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b4de810 rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x959221a1 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa3edf5f2 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xab5db05b rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaf2db3cb read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb3aa2acb rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb8aae444 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcb48cd1d rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdd12830e rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdea964c8 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe49d92f3 rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe7ab67b3 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xef59ddad rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf4b821f8 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x8c3cdb16 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xb4499f7b rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xb98833e5 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xea791e33 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0026b07b rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x03e0a7b8 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0400b07d rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x093efdd8 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2368374b rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x298af78d rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2eda3f7c rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x33b61091 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3586f0a9 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x35c4e2de rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x36d3bacc rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x37ef903b rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x39e63ccb rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3c5159d5 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5e58a464 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x71254ff9 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x717338f1 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7faf611a rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x86c57bbf rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x873d10ca rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8e077ee2 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8ebe8bbf rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa47ad9d5 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb452c4d1 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb7d42e8a rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc58513ec rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd10ce8f8 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd34ba75e rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd644f128 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd9e75bb7 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xdd7abb02 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe4374d15 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xea52e093 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf11c534f rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf56c2100 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfc7852ac rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfdc69b76 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xff8cac9b rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x1d91b40e rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x3e6b2c01 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x45529daf rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x487f2408 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x58a89ecd rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5bf3a843 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5ee1f30a rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x77c6684b rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x87289158 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xbe5159ae rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc5d1951c rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xd2262ee7 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xf0624f26 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x095f3d52 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1130020e rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x12fc2512 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1bd8dc37 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1c18f542 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x23868109 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x25d20cc1 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x266719dc rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x281cfdfb rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x32cda13c rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x39d87949 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x43e8fd72 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x494d9593 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x494dc42f rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4ebae4b3 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x58833582 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5c9747fc rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5dc2cb3a rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6641174d rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6f8c5e5e rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x71f2efaa rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7218e9f9 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x796dc1d0 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7aac3f5d rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x84a1364c rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8c2eec14 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8f4fc868 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x90806f7e rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x94d2a847 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x98be9425 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa895876e rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xac3a79b3 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xacea49b1 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xacf9a6c4 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xae87f1fb rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xaea6087c rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb2d8b5a7 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb2e80255 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb6779155 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb8d8a10a rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xca9e0aa0 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd76d5524 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdef31be5 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe71cd050 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xee5baff3 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xff72ab17 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x2487b3d7 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x3832d3a6 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x62b2af40 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x72aac640 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xc7ee847b rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x85aea3e8 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x8bbf2966 rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xbbb88056 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xf2971c3c rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x003580f9 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x0661dcd1 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2142fd25 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x263565d6 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2f3a6509 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x30e47c48 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x3ce34543 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x4b2edf05 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x4bdb315e rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x70bf0aa7 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xafb0d823 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc6807674 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xcc538ac2 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xece4f259 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf5126382 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xffc2caa7 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x29072261 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x2a4c1bff wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x559de382 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x030e24ad wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0774301a wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x082c6c60 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0f1e1432 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x12cae86e wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x173b78aa wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x19693902 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x23e38344 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2e234cb8 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3a7973dd wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4014b187 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4139d940 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4a75d018 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4aeef53e wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4ffc5f4c wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53cce89b wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x593f197a wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5ff26609 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6359ec9f wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x764c4946 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77460f2d wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7890a173 wl1271_ps_elp_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x84c985a0 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x87dcbaaa wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x897b8df7 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8b038d2e wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8bfe3538 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8fd19f8e wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x996f37b2 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9bc29651 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9d690fe8 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa43896a4 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb20313a7 wl1271_ps_elp_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb805a0fa wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc09fb1b8 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc24331d9 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc7ea6bfc wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd0228ece wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd8e4e797 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe3bb6d4c wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe80c44db wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf0d1c279 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfbe83c11 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfcae1540 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xff6f5b69 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x1bb5b1b9 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x7062b2cd nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x9ca7bbe9 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xb0a694df nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x3a7ff038 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x77f0cbbd st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x8a12a845 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xabf3f8bc st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb1a33d25 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xbfb4629f st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc61d5e6b st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xe2bf9ab6 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x62a4e0ee ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x8f6a98a2 ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xe92b3732 ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x224f51bf nvmem_device_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3866e217 nvmem_device_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x6c7353cb devm_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8856ca77 nvmem_register +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8c06e340 nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8d33b9c6 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xadcbd63c devm_nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xba2677c8 of_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xbaed48ae nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc697b0f7 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xebb66632 of_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x01cc7086 rpaphp_slot_head +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x1daa64e2 rpaphp_deregister_slot +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x97abb116 rpaphp_add_slot +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0xdb7897c3 rpaphp_get_drc_props +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x2afb6d37 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x57a8d3d3 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xac4b80db pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x0b63f457 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x285f5a15 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x61f1c801 mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xb42133cb mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xd07f5990 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x49b205f9 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4f6d5170 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x7ce53d20 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x8819ce0e wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x8a61cc02 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xcc159cc3 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xcdca81fc wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x011f68fb cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x02816ffe cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x04bf9b7c cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x04cbcfa0 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0942ee7b cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1ab8a105 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x20853fbe cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x21bdf265 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x276aeace cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2a0dfc62 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2a78c3ae cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x30c6aa4c cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x39bdeffb cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3cc36bbf cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x485e4b3e cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5a0cb834 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5af1d12e cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5d5baa48 cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x600a7253 cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x604f7ae1 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x62b25092 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x675c431a cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6ab61a7d cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6db4632c cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8b46acab cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8e2d665b cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8fe17b20 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9f25b2fb cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9ffb7d1e cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb98a82d6 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbb65dfe2 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbca6aa5c cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbd070f0d cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbdcbc526 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbfb73c11 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcf973ce1 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xda834fc6 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe671f3c8 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe680553f cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe9723c82 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xeb6d85f7 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xec2eb65c cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xecfed4b3 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf1b5a645 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf58d5dfe cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf93dcb50 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1d6e25e9 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1fb8a437 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x30453293 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4db26b9d __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x545aa287 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x57d6c26b fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5d4dbb16 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x61a52e93 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x85851964 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa8296984 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb0533ce8 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb47fe65b fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe14266b3 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe2c823ec fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xeddf3ef9 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xef3c728c fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x6eaebea3 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7d3c3c8b iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7fb85b43 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x8e171b28 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xdeb56143 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xfa4ab8e4 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x037ed24d iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0f7fbfee iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x178d02a7 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1b10f264 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1b14a1db iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1b6cfac0 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1bf240e8 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x250054f0 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2ed4e65a iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4a3b396c iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4c5a02d4 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5079d492 iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5c1c6094 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x68f147a3 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6f551f43 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7d725f17 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x80364701 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x80764564 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x84657b62 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x886f8ee0 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x88ce5c8b iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x96cd014c iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9c4fd3ba iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa9637e6f iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaebae000 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb24fdab1 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb598a735 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb5efa410 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbc76ca64 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbc8f5596 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc43a1e66 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc4a9d1f4 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc63b0109 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc8a2e748 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc8ee599a iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xce371e12 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd1f77644 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe0c89c47 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe1ce5d7a iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe53cb841 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe6ebcb2c iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfb6bdbbc iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x08f2d328 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0d2e3b27 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x252b2548 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x272365b3 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2a03da83 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2ab5190c iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x460a903f iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4e08e516 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x53c235f0 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x64feb9ba iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x69d46f73 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xad3282f4 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb097a06b iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xba4527cf iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbf5d0379 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcc6203b5 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd4ac654a iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x11bbd3ad sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1b3a051a sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3fe628cc sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x41546607 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x46047cac sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x51044b78 sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x564e9cb4 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x66498e1a sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7a41e75b sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8022109c sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8874e648 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9828349e sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x98a7b655 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9b16470e sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xabad1791 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbab10acb sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbbfb9424 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbc11b81c sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbfc863c0 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf65a47a0 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf70591d8 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfc7a5e21 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xff7fc691 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xff8a6114 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x00ba3cb4 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x057c0410 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x05bb455b iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0956405a iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x19b7657e iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1e095b1a iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x20a1ef7a iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x283f5a4b iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x327f7f78 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x48d8aa30 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x52c05093 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5b132fa2 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x66f89d23 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7578772d iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7676eea1 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x789cf564 iscsi_is_flashnode_conn_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88f40dba iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88f4bc19 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8ee35953 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x90df5ebd iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9bb3d8b1 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa1762842 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbbda9875 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbf9d45cf iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc2534475 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc5c816ad iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc80ee775 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd1b7cfa7 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd2d8a1dd iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd5d16c08 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdd9955bf iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe2c9c908 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4761808 iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe78cb1c4 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf0ec72f2 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf18898e1 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf5c52e90 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf8a35cc9 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfc6e42c0 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfd36397c iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x0449675a sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x49fb1732 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x5cb15440 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xc269c20d sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa318dd01 spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x16027b33 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x1930b144 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x2c48caee ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x407fdf33 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x71825feb ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xdd4e4a8f ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xebb15f4c ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x07b96ac0 ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x127d936a ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x14f504b7 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x20c35a90 ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x961e42f0 ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x9b98407c ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xa948ce55 ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x00af1184 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x0dc5f7b4 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x5da8224a spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x6d735915 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xdb55c73d spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x08b4203d dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x1e010b23 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x21144901 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xefa2f622 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x10f55eae spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1790a12c spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1fad4f1d spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2c6351b8 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x30bcc77d spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3ba33462 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4bb411d1 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x578158f1 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x616bdbb4 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x65786914 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8116d2b1 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x840f9457 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x88d49215 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8c9ff8ab spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8cb7437e spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9f4d254e spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd530f394 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe6381634 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x9ffb61fb ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0e4df07e comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x12ab3ab9 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x20ca7b0e comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x210b9292 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x24ccf4b8 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x26079e3b comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2770376a comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x337623ca comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3f9f6918 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4add250b comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4e02a7d3 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x55d34464 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x62eee33c comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6771b5b8 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6c13f03b comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x780dcc17 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7c3e46bc comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7f21c74e comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7fe9dc4b comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x88c78b88 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8e7c2833 comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8fbe3437 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x93b571e7 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x95a18016 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa06b806b comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa0991ee5 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa6cd2e59 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa970cf39 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xaf307a1a comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc19a0e70 comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcc9908ba comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd7c67f6e comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdf55f2be comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf9ef493f comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xff53d51c comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x346f29ce comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x4d1e60b1 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x4d4ba845 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x4f2c9902 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x7f46e444 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x966734f3 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x981fbcd3 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xe207e63f comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x11589421 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x5b9204f2 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x5bfc943b comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x9b3f819a comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xabae15cf comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xe6404f05 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x0438cf49 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x454925f6 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xeaabd4bd amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x295fce86 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x051137e3 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x135996a4 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x144b960f comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x1ef55896 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x30e8ff72 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x433bf99f comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x8cfbdb22 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x969aa541 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xa04e83f9 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb583cf29 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xc9ef746e comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xed302211 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xfd97534c comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x05d77a8b subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xb2141708 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xeb7e2aef subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x0d68fcd9 comedi_isadma_poll +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4191935f comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x6815a033 comedi_isadma_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa3d01a85 comedi_isadma_program +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa7ebb8a3 comedi_isadma_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x66b10775 das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x015a2a1b mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0717e63e mite_get_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0ef2c51e mite_bytes_written_to_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x14d9eb71 mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x20aa03d0 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x44ba0b1c mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4ef65d7e mite_bytes_written_to_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x577597d6 mite_setup2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x591326ed mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5c867362 mite_sync_input_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x77e5e92f mite_dma_tcr +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x884a5e3e mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x999874b1 mite_bytes_read_from_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa0cbca03 mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa2e7f6a2 mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd02bbab0 mite_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd2e7839b mite_sync_output_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd99cecd1 mite_bytes_read_from_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xde08d8a9 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe1e6b5f3 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xeb06c780 mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x7d06637d labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x9c417bd0 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x0e65b2a8 labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x23db444a labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x33442f14 labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x603ba0e5 labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x8c50437b labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x19e79d5e ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x39749ab3 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x47c80f17 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xac0ea4ce ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xaf2b3c8e ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xbf7dcc04 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xc0812a17 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xc55df192 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x140cc9b6 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x1dec67b1 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x483411d5 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x62a521ab ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x8cda1e6e ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xb09eb983 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x203153c2 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x37b969e2 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x6f298c67 comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x70243816 comedi_close +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xaa0133ed comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xafac2ba1 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xf95f6eab comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xfce171ff adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x02a50b54 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x12eaf9d9 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x1444f676 most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x1eeddf27 most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x34066fbe most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x66103fee most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x696237f2 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x8e141e25 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xa3c04aaf most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xc227f845 most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xc415119c most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xf0a16336 most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0ef1d765 speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x20e9b880 synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x278c8e3e spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x29336ce6 spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x309454e5 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4ffe1375 spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x5608cfdd spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x922a9c6e spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb35aaab9 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbd095afd synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc0eec424 spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd8b17a2f spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x40dd1c6a __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x7329c3a2 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xd61b0462 uio_event_notify +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xb0c3706e usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xf7f0d3e0 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x9d2c5a8c ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xcf428231 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x52e56049 imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x6fd9145d imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xa8d7a95c imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x042d97bf ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x35d4ae88 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x361a6a24 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x4647495b ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xbe656168 ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc22c16a8 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1580dfcb gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2f87bd8d gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x31630f06 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x375f0724 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5e38c48d gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x640cc1d9 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6efed3cf gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7630e29d gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbbf15377 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc43460c7 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd062fc26 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd243997c gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xda35aa18 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe306000b gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfc492235 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x0f0c9403 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x38797d75 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x55a2ee49 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xa4caf67f ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xbd984bce ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x17253077 fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1bc472e2 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x38c72714 fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5255b366 fsg_common_create_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x55ec8804 fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5a66a644 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x72108cc5 fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x72cb1f25 fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x834029d5 fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9b9a7c53 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xaa86be55 fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb1999d5f fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xbda894d5 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe6839bd8 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe69eb22d fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xed936dfe fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf9602265 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x21ba4418 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2424beb5 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2ca4acb5 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x494c2c9f rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x64d7af6b rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7cba647e rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8def5396 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9827dc87 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbd65dd3d rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc1ed02cc rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xce9863d0 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdb4ad289 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdb9bf449 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe1b32660 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xffdde296 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0564f9c0 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x08661d6b unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0b1d2252 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0ec4e945 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x105d7c52 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x197e7002 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x208d802d usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x21caf512 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x26b2ea63 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x35fe4e0a usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3ae86517 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4ebeabcb usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6521ecb6 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6f3a3c33 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6fecf9e4 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7d5a86dd usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7d5f6bd2 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8c6e0e06 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8f6bb173 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9311fe60 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb28ee9f8 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb3b095b5 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcd76cd49 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd7683271 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe14da95a usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe609fdbb usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe8affd96 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf4dd5e05 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf9d8df1c usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xff0ae366 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1a05a939 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3b5aab2b usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6604e0cc usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6bda279f usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x83972e96 usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x95e1aa5c usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4744dba usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4b59ea4 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa770ef94 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc0b16786 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd5b1dbf3 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdd0bad21 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf0812b94 usb_udc_attach_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfd9c35c6 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x2859b043 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x6b9c41dd ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0df73205 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x364e8a82 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x396af4e4 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5b32798b usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x692b5dcc usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa5156e09 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb50dc1c4 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd0fefd4e usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe6e087ce ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2e7d9bc6 musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x42b0aaa5 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x4a67bebe usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0221b583 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2394b0eb usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x24c259c1 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x26783219 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2ddc4f24 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3734777b usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x439f7abe usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x50e15361 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9bee745b usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xaba29ffc usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb2731713 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb60d5398 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc3b13e73 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd32afedd usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd701e321 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdf93f105 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe23694c3 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xec9598cd usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xef2facf4 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf839312f usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf922a43f usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2e68ff03 usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x39ba3d32 usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3aedf9a3 usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3da8875e usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4169e0c6 usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x454ad413 usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4b676cfe usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x544f6f8a usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x63911327 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6afb4db9 usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x71e70812 usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7605ba00 usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x881c9000 usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x89a58bf2 usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8f14a510 usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa38c69c7 usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa3a31939 usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb1f4a755 usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb647de28 usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xcd077c0a usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe58cfdae usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe7447fcb usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xeaaca89f usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xfd436be2 fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x049e178a usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1c0c006b usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x26ec5a74 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x43d25e7e dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7599c2b7 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7d1319a2 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x967b38a5 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9d3264c7 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xcdfcdb66 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xdad09ff4 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xeabb250b usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf1b3353e usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0bd816f0 wa_process_errored_transfers_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x122f15ac wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x1fdfb32b wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x743c8fe0 wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x857b5511 rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x898739e6 wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x8a62985c __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xa23c1e57 rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb71c5af wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x08626696 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x17c608ef wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x306ceea6 wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x409ee471 wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x483e8033 wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x6b4e0a96 wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x84e04932 wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xc0d3cf14 wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xc1be481e wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xcfe5475f wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe30320be wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xeee7a717 wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf4280579 wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf8ec632e __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x22eb8f86 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x378aa418 i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x6a2e4aa9 i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x4d51e93e umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x52e1d367 umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x642e8ad0 umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x83bfad50 __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x8aa726a6 umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xc7bc0ac9 umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xe5b9f709 umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xf24943d5 umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0d78016e __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0fc02440 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x17352047 uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1a29998b uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2ab8534a uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2b7e7587 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2d87c717 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x32e437c3 uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3bb1bf28 uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4dbf9234 uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x52144b1b uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x53eba93c uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6d40d8a3 uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6f5bee79 uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7d59b008 uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7df4bd60 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7f8c9e15 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x816b9e92 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x84ce300d uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x875db4c4 uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x890290c5 uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x89741d32 uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8a2db0d3 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8ffd5641 uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9052ed29 uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x93c24b16 uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x95d353e9 uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9b56f843 uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9e5a96d3 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa0edae5d uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa36eb9cb uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa8c7281a uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xab16c795 uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xac97316b uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xae503620 uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb6511e06 __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb97d8c4f uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd19f56ef uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd323ca8e uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe07f0632 uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf71426a4 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/whci 0xe01b304f whci_wait_for +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0371b901 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x114a6665 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x15f7caf0 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1a2700b7 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1e3dc44c vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x258027e3 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2cb95b7c vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2d91d076 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5286ebb1 vhost_init_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5edbe13a vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6d4b79f7 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x80735ca6 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8116ff9a vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x817d68b7 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x89e28932 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8e7934e1 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9ab93129 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa47630b4 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xac8e0fe2 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb0f81e37 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb17ca525 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbdc3004f vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbdf22321 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc51b7f6e vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd1b616ac vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd75364c1 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xec02cbd1 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf450fa5d vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf46b3c46 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd5b64cf vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x1cfe40b1 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x2feb1c97 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x5804599d ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x90b6cf6f ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xac07009e ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xbea543ca ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xf88387b1 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x02a26e7d auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x07031e16 auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x1b6efed6 auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x24ee7a58 auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x55d92795 auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x5e36cea6 auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x81c5fdcb auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x883032d7 auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xa3457e0b auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xdea9b3a5 auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x182c06c1 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x0a8128fb fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x57b0952a fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x4f33c9ad sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x61a8358c sis_malloc_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x246c0c26 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x49a31fb3 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x6bc0f408 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x8bf5cc71 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x9a355f43 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xc47156cf w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0xc482426a w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xeb3a7f5b w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0xefb74e12 w1_next_pullup +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x1acd1976 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xd6123212 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xebc0eafc dlm_posix_get +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x0f18d6c1 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x20dd3bbe nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x22939b5f lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x506a17db nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6f76e381 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8508acc0 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8dc227e7 lockd_down +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0099e87b nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x081d68ec nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x082668c1 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1019ecd1 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10544d3b nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12035dbb nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x148463e0 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14cadec6 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16db3f6d nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18ca0bee nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a1b13b8 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b235582 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d136a30 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e622e56 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f184d59 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f3820aa nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f3ca9b4 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1fad9d6b nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20a3678b nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2338bd91 nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25334bee nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25fa8398 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26bc3dfb nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27e696a9 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28528b6e nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28f04a05 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b14b6de nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2eba29a9 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ede3d02 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30bccd81 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3329d332 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33fd9a24 nfs_file_fsync_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x349cb4cc nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37a5d5b4 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x38852f6d nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x390625dc nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3acd2865 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3fc63f32 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4418a86f nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47f836c2 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48d77072 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48e7f2ee nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4906384f nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9c155 nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53273253 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54740eec nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5596126b nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x569b0163 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a4c824e nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a4e7350 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d179634 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f017ac4 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63c1fdbe nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6457027b nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6559441a nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x659ef8b5 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66428e73 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c584c65 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c7d1e83 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6dc98ddf register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6dd82175 nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f22ab31 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6fffee80 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x799d9eba __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7dc1f212 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7dd9ad65 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e633211 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8035f450 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81537991 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x876743da nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87cc972d nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x892eabef nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x893eadee nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a3ee5c9 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d0c6aec nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e17f653 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f4f8e83 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92ab6fd9 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93d4a291 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95103df3 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x967f0c94 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96b93335 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ab34ea0 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c0666bc nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f16a684 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa46f725c nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa89e2cc0 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa918f273 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa977e8ca nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa1387d7 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab1c132c nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab732927 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1138d19 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb22138e8 nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb333ce07 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3a805ae nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb74949b2 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb780b739 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb792e159 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9a85538 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba5852b8 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe6dff07 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc336fa73 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a61290 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9da817e nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcbd23c91 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6a20991 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6a46981 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd812c93e nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda142eab nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb1bb300 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdca0ff47 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdcf644fd nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe01ab5be nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe4faaf08 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe56cbf5c nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed63d406 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee86fab2 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf08dc0ec nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf35def16 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf79c70c9 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7f48d68 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7207fc nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xffc1dc2c nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x3017e92d nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x01236fde pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x049ad11b nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0b02fff5 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0e9c7886 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1093b108 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1193e7a7 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x132ccd09 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1be8f9c7 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1c2ef7b1 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x24dcae23 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x26efa541 _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x29f8523a nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2a2b6d88 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x308bcfcb nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3b90ab9c pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3dbdd364 nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3ed5b6a7 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4d4104da nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4dff4fe5 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x50cd19eb pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x560c7e18 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5c3f1126 nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5fd80e17 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x72c989ca pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x768e6d19 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x78f20289 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7966836b nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x796f6e47 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x812c7f94 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x85430d92 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8bc0fee9 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa0bac4e4 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa1c047cf nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0480ef3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb286454c pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4be8309 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb8de35ec pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbde9b2ce pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc65c8bf8 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc6ba0507 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc83a62a5 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcde7b106 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcfc9a2ab pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd08c2238 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0b5b7dc __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd14cb595 pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd680dd47 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd8e316c2 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd9485bc0 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda0fbfdf pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda80b37d pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xde6ead4d nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdfbe77dc pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1de626a pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5426e59 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xebedb598 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed0494ff nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xef4c047c pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf213909f nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf64215e8 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf9ed4569 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x9185a375 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xdcc62cca locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xecd23fdb locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x3a9a324b nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x80f812dc nfsacl_decode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x12f77f44 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36a28a9e o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x430a6818 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x52091ad4 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x59d8f430 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6370f889 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa2a282f5 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xea465bc3 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x2cdd5d2f dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4cb2fbc3 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xac2e4658 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xacf50ce1 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xdca44866 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xdecf9ad8 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1d64e55d ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x8ea485e2 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc46620e2 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb +EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random +EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait +EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop +EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end +EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init +EXPORT_SYMBOL_GPL kernel/torture 0x717b780a _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0x9043a32b _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin +EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xe495d957 torture_shuffle_task_register +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress +EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch +EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch +EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch +EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x18c0979d notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xe139f3bc notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x201d8ea3 encode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x29fa419f decode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x0adcb055 base_inv_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x221df614 base_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x4da25bec base_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x63f42b6a base_inv_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x76203267 base_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xca3140ce base_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfa5eee0a base_inv_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfc02472a base_inv_true_key +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x8272e02d lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xc7c4b36d lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x2c0019c4 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x349c29b8 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x70e7a802 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x8b8dd35f garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x8bc5828b garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xeb3541d7 garp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x22fceac4 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x306de874 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x508f3924 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x66da81fa mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x88500662 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xbb746d5e mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/stp 0xa2dde8a4 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0xed4b686c stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x0de705b3 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0x1dc9a79d p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier +EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier +EXPORT_SYMBOL_GPL net/ax25/ax25 0x4fcfb240 ax25_register_pid +EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast +EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x1cecb253 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6ccefb77 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x73f9a49c l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7b82dd26 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7e298611 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xabfdabc0 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xcf7188e0 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf9715987 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x01da7d17 br_deliver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x191653d0 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x579288a1 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6a31a2da br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x895345e3 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8fa55a61 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x92b19132 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb276fdb2 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x291f8a8f nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x68877d96 nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/dccp/dccp 0x06af6088 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x14bd2784 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182167e6 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2bb79a0e dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x30d28d4e dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3b9c30ee dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3d191d36 compat_dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4581aace dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x45a525d3 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cf32767 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x55befbf9 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x56a4157b dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5e7ed0ba dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x631273d4 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6e4a014f dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x82062b47 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8d598071 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x923eb23b dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x97289af5 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x98d5da4d dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9fbfde1d dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa0023933 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa057dc35 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa353ad09 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaa3d3c52 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb066f542 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbed7d648 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc0b7b890 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc4862a4c dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcbc7ee69 compat_dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd499f0d9 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd70895d6 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe5256155 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0xeba8ec3d dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf878ddc4 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf9aebd9f dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x047a981d dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x093bbb62 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6596b726 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x890e4e32 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xbdf25025 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xfeaec26a dccp_invalid_packet +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x9bc4190a ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xc8a48426 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xe0784f1c ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xe3f92593 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ipv4/gre 0x1ee1ff0f gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x3e2b436d gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x059759e8 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1e95320f inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x30782395 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3c632add inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x835828fc inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa7d5af36 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xba2de1db gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1589ac24 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x189f6ebb ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3e492fe4 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x57aa8011 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5e99dd62 ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x755b00c0 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8e831703 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8e875e21 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa17b4077 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd38a3189 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe129ccc7 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf46d69d8 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf6201fe9 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf8e50917 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfa57d4a0 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x20b4fddb arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xd9a7a6c4 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x1729e034 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x0127d690 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x4393e232 nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x5b09b197 nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xa907501d nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xd0fc41f5 nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x4f8f68c7 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3cd9fb1b nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6dd68b73 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x99863b41 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc620688b nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xdeb97ac1 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x9e5cd3a8 nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x08453b50 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x750140ab tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x99e94ecc tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xb3ebbcd4 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xd535e9d0 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x64dbb79c udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x741be414 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf807be0a setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf9492e37 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x0c5f4e9f ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x22051aba ip6_tnl_dst_get +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x387b4d4a ip6_tnl_dst_reset +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x4853e928 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x8c68358f ip6_tnl_dst_destroy +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xa5157300 ip6_tnl_dst_set +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd39552b1 ip6_tnl_dst_init +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x7308d84b udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x7d92fe61 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xd7f8b153 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x16d0931d nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x98504f05 nf_ct_frag6_consume_orig +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xd0d5eb09 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x4f1cfe91 nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x8eebd1b9 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xabafedee nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xd30868bf nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xfe64bd49 nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x7e7ecadc nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x0a49025e nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x1b8daee3 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x3b75e687 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xaa4f73a6 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xef2f547c nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x08d5a34c nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x15b5afe4 l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x302a3b38 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x331773a3 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x375e861c l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x530192a7 l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x698370bd l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7cb70e80 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8d539f08 __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8f156ea9 l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x92be62ad l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa69a0388 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa8266dee l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xadaa5e57 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbf4235b0 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe3b413cd l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf6cae43f l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x68afbf2e l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x05dba264 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x11e1f72f ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x167e1dc1 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1f216d2c ieee80211_set_key_tx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x29be719b ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2e2a5565 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x327630ce ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x49b9aa47 ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4fd00958 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x52dbaf01 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x56d9a464 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x57896025 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x58a151ae ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x679dc4c5 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb0007f41 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xde988fc0 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf09514ad wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf2fc2e2d ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x17e281a3 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x4d9d55ea mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xb67204c3 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe45957ae mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x012fbb29 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x033d905f ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x096907aa ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0f0876dc ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0fa6adaa ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x140a0d92 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x375ba770 ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4c4c9a62 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5df7051b ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x76980612 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7b5e24a7 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7ecc0d3a ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xabc1380d ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe93b86bc ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf5576973 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf5f067a1 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x08028cf7 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x89201dbe unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xa56ce4be ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xe6e8f5b3 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x048f1fec nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x04c30563 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x089c5e9f nf_connlabel_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0b7a6617 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c90548c nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0f5b84e1 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1025a3f9 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1462b78e nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x14a8b459 nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x18280b59 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x205404f7 nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2905ea28 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2da52f59 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3098d99d nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x320097d7 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3233803f nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x328ef162 nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x32ebf758 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3429a7e9 nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x399de396 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f0a5d58 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f34d9ab nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ff4dfb3 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x447fb203 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44ffd416 nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4c5bb0ed nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x588caff8 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5c10a0e5 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5fa62323 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x61b8c972 nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6fd2931c nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x73cc425f nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x755fcab8 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x765ee93b nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x76c9b694 nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c1eb8d6 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7e6dd26f nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f2fa7e7 nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x83473f69 nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x85d38c13 nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a66c4fc nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e032fed nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f88fb2f nf_connlabel_match +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9015c59a nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x916ccd11 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9279e4df __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x933dec19 nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ea836d3 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9fe0d153 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa5e3a5d5 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa5ee8a0f nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa6ba5351 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad4799ee nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaed9f696 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb059b907 nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb0b5d472 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb15c06a6 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb513cdfc nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbf2f5680 nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc5091104 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xca7e9b1e nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcb87fe05 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd36f590a nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd686414f nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd835fd50 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc372de6 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe66f8c40 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea1ddfff nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea665190 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeac8992e nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xebb0d110 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xed68f842 nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xedcd62bb nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf057dc5c nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf10f964a nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf17a09d4 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2fffeaf nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf7120ed6 __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff40b965 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff7cc041 seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x02be679d nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xdd99aa6a nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x40dbd59a nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x04076559 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0fbaa3d7 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1b980cdd set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1de8fc4c set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x32178e5b nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x44544a7f nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7f0c8278 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x93e4e6b8 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc38610e3 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xdead2e5c set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x63a8a41e nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x096c82f0 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x6edad076 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xfa47eca9 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xfb5ac72b nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xa2d3a687 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xd8942812 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1f5b7948 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x23111f8a ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x4bb0c04d ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7102f931 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd850dba4 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xfdef8411 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xff6f3507 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x6ce3e00e nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xdcd9c876 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x1275a34f nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x309ad2a6 nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x80790410 nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xc02d2448 nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0b2fcbd5 nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x23af5936 __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5d198628 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x69b67aba nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7173be5f nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9c422698 nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa4da6568 nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xcff5012f nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xeac9a9db nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x07f66894 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xeffc7d7e nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x27456152 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7e54d5ec synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8841d39b synproxy_build_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x00915063 nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x097b2390 nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1f850812 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x23b805ef nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x30ea0dba nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3358afe1 nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3457485f nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x47d9b2bb nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4aa6e78d nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6ebb8bed nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x703531ba nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x829e4c4b nft_register_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8686daa3 nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8863b2d6 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd6ce5b93 nft_unregister_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf9688ff8 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfb5b7dfb nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x0099b91a nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5acd436f nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x84fc5675 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9bc79741 nfnetlink_alloc_skb +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc616c8e2 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe0377ed6 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf73a42f2 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x6369f21c nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xc47252ef nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xee322c78 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0xaa9b2101 nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xb168d553 nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe44a1cb5 nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xedb1368f nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x19b26458 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x1ac6a881 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x500071a4 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x5033c7bb nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x60cd3b42 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xa3cc8efe nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x2bc2c185 nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x95d259a1 nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xca95619d nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x28c469b6 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6b0ac4d9 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x036b7a8e xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x161d1417 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x207a0abe xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x30c494d5 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3f342c8d xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x520a4191 xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f82f1f7 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x62521699 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x691a6d69 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x73cee41e xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7e290b21 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x996cdadc xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c0cfd91 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbe7ea03a xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc52c8cac xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc6ba49ef xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd93147b3 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xde17553c xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xde404ffa xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0b4971b xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe40c4b56 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe8b33639 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec24fd82 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf6b39cdc xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf7ad6a0b xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x00204983 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x482b6a12 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x0f3b70ef nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x6fea6eec nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xce3aae9f nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x48afb392 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xedd26a3c nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xf1a7ca09 nci_uart_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0796fc83 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x19fb6b61 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x2719049c ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x2b2bba4f __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x64df5f69 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x86c5af80 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa357601d ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa767a551 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xca2b82bf ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x06915aa0 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x0a8e0d38 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x15ad8642 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x19ff37c6 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x1e116c94 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x2b60ea6d rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x3409b768 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x472164bc rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x521d2384 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x5f02da2b rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x62c6eff3 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x7760e596 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x7bc62829 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x92e67a26 rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0x9bc32f86 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x9ead73fd rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xa5f77a54 rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0xa77ecc1c rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xb1494212 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc42f25ff rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xc66cac2a rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xd8c7eb43 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xda47be2b rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xdf193c53 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xfd765550 rds_send_xmit +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x6db9fa5d rxrpc_register_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xcd4918e2 rxrpc_unregister_security +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x335ef49c gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xa0db44df svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb0b30f7a gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0177adb4 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03b2c8cb rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x042e5e85 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05405bf1 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bc82a2d rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d3f9fdc svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0da06165 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f439650 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f551953 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f7a506d svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15e7319c cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x162f229a xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x177c01ec rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x190e3bb8 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c0de57d xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d99325b xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1dc8d6b3 rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x215eafd9 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2224655e svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23388e6c rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29ca1e63 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b47b169 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c7662aa rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30bd985a svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30d8d250 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31bf2081 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32f9e79e svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35f66d81 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36e03ded xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3729ef64 xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x375b9779 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38edb7a0 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a1ae6f8 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ae9fdb4 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d00490c sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40625f66 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41f22c8a rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x423798a0 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45eaea40 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48507358 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b3a16be rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e0c8457 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5098f5a0 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51b7376b xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54858ace rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5520656f xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55afd2f5 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55b9ea7a _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x563cc0b7 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x570fbb74 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5796ab98 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5848e985 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59d1f767 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b686412 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c424c5c rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6237a63d xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6362faab svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66eaca9e rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6805b4ec rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68468739 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69f3503c xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a338085 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a998d92 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d5e1b89 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e4302fa svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6efae2aa rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6efaf859 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73bbd14b xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x745f817a cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x749a03d6 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74f5760b xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74fe22d6 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x766f46d6 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76f8dacc xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x784643fa xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d3c6429 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d3d4d63 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7def3fe3 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f028285 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81a02743 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x830bc587 rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83232bfa rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8393a6e2 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83a5ec27 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x871d7dda xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89c685f8 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bcff3d1 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c39ebee rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c532127 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8de6b52d sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8dfb1112 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9062b6c4 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92a2244e rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x941349c6 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9831625f rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x988fb6b7 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98de7480 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b50feb8 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b95d1ea rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c5fc2b4 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ce31077 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e97c317 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ef449af rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0df1dd4 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa15a8bfb rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1966cdc xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1bb594c put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa204c31f svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2d92f73 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa35c2b1f svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5c30d75 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7b040a6 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa669482 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabbc731c rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xace1bd7e xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae21ea02 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb078ff0a rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb11beab4 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2182e8e rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb234d358 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2a0e003 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2bd73fb rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2c6d6fb rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3d1b5c9 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb45c6557 rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5c9458e rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb688ee7c sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7213c7f xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7c35beb write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba575a79 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbb5933e rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd85171c xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd9ae97d rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdc456d5 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf291f19 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfb0a249 cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc07c5837 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc210222a xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2f6d9de rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3663fc3 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc463cd9f rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc473818d rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4d0f210 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4f77717 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc568a306 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc58aeb68 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc84ff3dc svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc901c4a0 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9b7a7d4 rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb217808 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb535806 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb7d9b38 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccc80dc3 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce0f6c63 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce65af05 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce8d7cef xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd31981c3 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7ceda7c rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7f3c3a8 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9a5f1c1 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9cb03d5 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdaf42885 rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd6b720e rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf5a6e40 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfa72347 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0ef07e6 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2a39a0d xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3935e02 rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4022499 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe44033ea rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe55cd2e3 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8759dd0 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8f12da1 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9e93657 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea2d5f41 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea36a420 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb5a90e6 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed9cb59f auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedc11406 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeee5450c xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef0c21e4 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefeaf894 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf163d149 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf29060d7 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2a7fe48 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4333fd4 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4402c4e rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf451dbca cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5a62754 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6ce2f36 cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7830d8b rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7f0f3e0 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8ec03c1 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa2c0056 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa6f9ac9 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc950366 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe7fde25 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff5cc6bb rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x32677161 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x40241d7f vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4cd6b27b vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x54304087 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x779c3572 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x79624508 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7e7514a6 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x970b77bc vsock_pending_work +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9e3e528b vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa050166a __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbe173fcc vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd80742ac __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf004cea5 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf28c05f6 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/wimax/wimax 0x0511d946 wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0x1b151d12 wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0x1f0a5833 wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0x24a85187 wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x44c0f7ce wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x568d3bc3 wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0x6404cb6c wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0x6bf2bcf8 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0x721536ff wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0x7de9eba8 wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0x8ddb7dde wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x9df33da3 wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0xefd544bf wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x03c9dda4 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0bba9124 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x19d987c5 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4b8c2798 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x97cc1931 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb0146cd0 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb6823778 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbdf83087 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd0341344 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe575ad55 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf7d09243 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfe8d1f31 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xffe6a739 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x2eb9a8af ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x3c2dfe8d ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xc6af7776 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xfbc4d3a1 ipcomp_destroy +EXPORT_SYMBOL_GPL sound/ac97_bus 0xdd2e9f20 snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x1220f886 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x754bd80a __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd 0x09c78d20 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0x292e0adc snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0x2e690ed6 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x36754171 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0xa53bf882 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0xb130c17a snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0xf74bad27 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x24518b7c snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x31a460a9 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x35f9574a snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x62b75714 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6502d000 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8212a60f snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe0d9e17f snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xef5945a6 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xfba887c2 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x03efba2f snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x06051448 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x11c81ede snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1619b0d8 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x54921ea0 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x986c5d46 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xaa0815db snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf18c3b21 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf23c1f1b snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xfca3b594 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xfdb13a1c snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x127a011d amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x220eecd2 amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x323ed1d5 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4856960d amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x61dfa924 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa8be2b0b amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe9952102 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x01804870 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x03237da6 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0463639d snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0541fe15 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x07065593 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0f9f2d55 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x10518364 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1106fed7 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x187979b8 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x19843198 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1a4b52a6 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1f586d48 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x216120ef snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x22435d28 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2424d841 snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x24bc36a6 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x30220980 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3177d3d5 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3536dae1 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x36631920 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x39ead27a snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3a112b3d snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x416a2035 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x458db976 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x496418cc snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x50d8e242 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x53782286 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x541711ca snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x554b90d7 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x554c8857 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5de2da7f snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x62679420 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x650c93a3 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x66156211 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x669fb748 snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x66b5b487 snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6bd26298 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6e4d27f8 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x71d22ebb snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x72f953ba snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7b2bed52 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x80c4a5ec snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8463d3cd snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x85b43833 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8e26e0f1 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8fff159e snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x96ac3e88 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9aac0b45 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9ed4ef34 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa07f3a8e snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa28447a4 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb4eb421e snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb6df3206 snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbc0acec5 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd5c4bcc hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd78df14 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd8131c2 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc2022618 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc4d1ba1e snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcbfef4e9 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcd2bd473 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xce9efb4a snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcf7919ad snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd683f9ce snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe32f4e32 snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe37537f9 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe3d7857d snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe886c7c5 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeaf579f8 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf66fcd8f snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfab76519 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x724fb3f5 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x84e35e29 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xafee0e1c snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xb39764a2 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xe9def609 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xf62a4853 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0272ba7f snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x02bd6acd snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x03488c8d query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x047ef2de snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x053ad4bb snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x06477ff8 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x07f9048a snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x09fc03bd snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0d4bff5c azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x14ee5bb9 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1528dbf9 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1695c76e snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16b2172f snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x175d8778 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19310b57 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1b99f033 snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d1e5cd8 snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d523c22 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d80e882 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1dc17096 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1dc5f859 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24c252b4 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x26b5ea85 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x274b9461 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2b816128 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2fb994ef snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2fd00fb3 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x313e0928 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x347e7f04 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x353f7c63 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x35e3314f snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x366835dd snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3702e02b snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x37659cea snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x395542e5 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3aac7ada snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3c64628f azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3c72555b snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3cfe6249 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d8b7636 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3ee4db91 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41393527 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4280cef5 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x48e5ef99 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4d82f285 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4fa69cc3 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x50e72efe snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x57822e0d snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5810874e snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5bade731 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5bb40ded snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f903183 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6042e555 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6273f752 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x68327503 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b99c062 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x714fab6c snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x79f8f884 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80665d26 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x81c2d806 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x822a787b snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x826ebe38 snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x83a628bb snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x846a2804 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8561ad2b snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x85d0413d snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ece74e1 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f549bd1 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x91c6ed51 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9524a748 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x99119437 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x99b579c2 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a235edb snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c0f13ac snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9cecfc58 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa296a94e snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa310d022 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3e72de0 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa52ca8e8 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa605cf11 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa68064f9 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa7465a47 snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa937d65a azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa6dbd5b snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xacfc21d3 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xadc4cebb hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xadcad2b9 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf79506c snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1257645 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4855349 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb771b63b snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9027098 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba98d58c snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc1e2bdcb snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc2d89b95 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc2fdbfe9 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc4edcac7 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc6e79dcf snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcaf7f183 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb942c6f snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0709466 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4c228bd snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd657c8b1 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd7c12c5a snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd86c0c0b snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9a0e70a snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda92c31c snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdc4783c4 snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe0fae8bd snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe55807c3 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe63944ca snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe8a8eda6 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe9b2734b snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe9f06ab6 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeddf2fae __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf0448ffa snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf556778a snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7057dc4 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8100456 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf84bca0d snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf911a2f1 snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfa254373 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfafd12f7 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfbae9f70 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x078d1b19 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2922e34a snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2f41087e snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x346e7ea1 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3e13f799 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x41e1465f snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4a45fbb2 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6ce371e4 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6e66a989 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7c53bb38 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8ebf2b71 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb0523452 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb33cf3f5 snd_hda_get_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc5214b36 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc638e748 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd5c50728 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdaab4382 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xec08593c snd_hda_parse_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf3dc6446 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf56d3a07 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf679ecec snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x975b6857 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xf9d7989f cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x8a80cef5 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x8b07a806 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x5813c73d cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x5c553410 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xdc10996e cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x29a4d98d es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xdbdae2e4 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x606dedbf pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xa0b3f272 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xd8a0464d pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xf3d5bb5f pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x18eaf893 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x632e7c17 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x92574f0d sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xc7655f26 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xd47582f9 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x032b87ef devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x34656a39 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xfd6fac57 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x5dc56b23 tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xc143c3ec tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x9cd8c6d4 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x2c8035bd wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x5fc4a378 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xd1900c54 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xf1731a3f wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xbf65c90e wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x3fae6ba6 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x0e94da91 fsl_asrc_get_dma_channel +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xdf14cd96 fsl_asrc_platform +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x30693bb7 imx_audmux_v1_configure_port +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x58631dab imx_audmux_v2_configure_port +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x013afbc1 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x021b6583 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02fd2e1a snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0428f0eb snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04fd4e1f snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05500b4d snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08b0162b snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0acecbd7 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b922fa2 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c346b73 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ea9de48 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13994d0e snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x16c5b0a5 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19feb6de snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a9ab9c1 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b304e89 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b406328 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b895110 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f44f8b2 snd_soc_remove_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21b92971 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21e60a9e snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x248de900 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x257b8aa7 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25f80206 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x280300a1 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2cca57ff snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2fda945d snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34f9bfac snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x37dc9f1f snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a9a2b4b snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b20efae snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b56135a snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3bb2c682 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c7b490f dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d51b2c1 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d8bf6dd snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x468c9711 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4944c1c8 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4bcb9f75 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4dcb2fc5 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ebc6e2f snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f8ce160 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53d62e59 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x590a8067 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e0adb22 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f4345ff snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5fcdbfb2 snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63351c87 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6501ebec snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6628a53b snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x662f295a snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6752761f soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67b0cd81 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67fbe8c2 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69a78461 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c1fb744 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c9c5840 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ce51519 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e3da4a4 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6fa42b9f snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7291d209 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75c8b1f3 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x76d3cc86 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78d01167 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a32d566 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d5d664d snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e949f3b snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7fa341ac snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8085ff40 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x816247f9 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82284193 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82d0d1b6 snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x851ffced snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85f09211 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86121596 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87131dc1 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8cb05fa0 snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8dbb04a4 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x93f973b9 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x949a4259 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x953ddac7 snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96983328 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97e8e5bd snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c276b6e snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c8acf21 snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9cc4edce snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa124fab5 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2983785 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2f423b1 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa57f6e61 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa782c32d snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa88106a2 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaae95b5b snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaba42611 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb13fc6c9 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb1a2f680 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb271ba91 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb27b96f3 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3bec5d1 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7903248 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8c9bb3e snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8e77000 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc230885 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc45c07e snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd78bca4 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf2ed7e9 snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc468a5b2 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc49a05c0 snd_soc_add_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4dc7830 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8fec1e3 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9a82733 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb24bf19 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb78e133 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcbc556c5 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcdbcf137 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce341c3b snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd173f1af snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5997fb5 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5e629d6 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7f1ee7e snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8a93889 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9da213f snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9de4198 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda4f0889 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb5e7452 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc0563c0 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdcbd3b8c snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde895242 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf522685 snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe009679a snd_soc_platform_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe178a99c snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1967a03 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe19b2f3c snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe36bc5ff snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6044769 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe88709f2 snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9802b9f snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef15d364 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0bcc8ae snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf714bc3b snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8531c3c snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf85735a7 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf876ce3d snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8a36626 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb8e73f8 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfcc5e890 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd3b1498 snd_soc_lookup_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfec07e89 devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x028a695a line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x32e3d20b line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x588659ad line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5f5f3d4c line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6a6808a9 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7c71df1c line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x906c6d6c line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9786594f line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa312ea24 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb452c0e3 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xce69fb91 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd05349d5 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd21355cd line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe435b4fc line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xeef90945 line6_write_data +EXPORT_SYMBOL_GPL vmlinux 0x005a766e virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x00602857 _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0x00640ffc platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x007b932e xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x00857a0b debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x00b1ce65 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x00c52e40 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x00d5a12e ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x00eb96be of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x013f1053 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x01437e67 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x014604d3 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x014ddf17 md_run +EXPORT_SYMBOL_GPL vmlinux 0x01511371 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x01564da1 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x01663633 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x0168e690 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x016c9368 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x01781efc dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x0183683f sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x018d3bad cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x01c6704d max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e6ed1c pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x01f6317a ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x0209dc80 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x02174d08 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x021ebfda btree_update +EXPORT_SYMBOL_GPL vmlinux 0x02204f1b serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x026211e2 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x027ce3e3 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x02837de2 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x02908a56 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x02947bc2 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x02966ae5 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x0299440c xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x029db5f3 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x02ad4f7a of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0x02c5fa7d trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x0300aa6b thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0x0309234c platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x030c2627 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x03286448 of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x03370c60 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0342af95 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x03442f74 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0349f47d i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03a7e5d0 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x03abffe1 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x03b57026 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x03c5e49c nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x03e969b8 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x040784f2 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x04226d82 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x043b935f __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x0468782b skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0x048521bf dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x048ba309 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x049682c9 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x04984eaf aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x049b1d62 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c9bdbd ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x04cbd27a pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0x04cbdefb pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x04f4a091 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x0508d53b wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x051ca04e sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x0533ecd2 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x05348e44 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x053494cb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x05539872 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x0573ebd4 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x058469a9 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x05a65522 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x05ae9600 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x05cf51ab devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x05d9211a of_node_to_nid +EXPORT_SYMBOL_GPL vmlinux 0x05ef2b22 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x061dee59 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x068c2e0f xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x069c54c7 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x06b96214 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x06bc8a12 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x0740542f pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x0740cae9 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x074fa924 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x0766d827 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x07677de0 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x077eedf8 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07b60850 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x07be7903 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x07caafa7 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x07cc0d7d gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x07ce6095 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x07e6b496 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x07fa3a9e pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x07ffd187 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x0807629b list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x082c283c anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x0839bb24 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x0841146f device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x0842aa74 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x0844933c pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x085527b0 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x088b2931 ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x08b7b636 bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0x08b95b46 tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec +EXPORT_SYMBOL_GPL vmlinux 0x08d37605 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x08d91c22 mm_iommu_put +EXPORT_SYMBOL_GPL vmlinux 0x08e306b6 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x0901e1d9 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x0905dde9 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x090e1f3c irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x091c824a machine_power_off +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x093559ee gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x09664692 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x096fec93 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x097aae46 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x097f5ad6 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x0991ffc0 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x09ae8513 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x09e3e10f class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x09e67ebd usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x09ebafcc gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x0a069d2b wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x0a2a65ec __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x0a339748 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x0a3dbba7 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x0a4b0c0e device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x0a51ae5b virq_to_hw +EXPORT_SYMBOL_GPL vmlinux 0x0a6c2929 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x0a762be8 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x0a7fe7ff scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x0a8418e4 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x0aa985c4 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x0acf31fb debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x0aead6b6 mpic_subsys +EXPORT_SYMBOL_GPL vmlinux 0x0aff3cf5 arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x0b04c696 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b20e567 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x0b297602 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x0b94ebcd cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x0b99acd5 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x0ba90039 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x0bc2db7c usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x0bca1eb4 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x0bee0ba8 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0bfd8475 tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x0bfe3912 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0ca5f5c1 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x0caf75d9 opal_flash_erase +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0ce3ee5a mmu_kernel_ssize +EXPORT_SYMBOL_GPL vmlinux 0x0cf08d94 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x0cfe1ef7 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x0d17ade1 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x0d22eb7b gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d4edacc dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x0d5be637 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x0d73a952 GregorianDay +EXPORT_SYMBOL_GPL vmlinux 0x0d79acf2 percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0dc10fa9 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x0dcc4849 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x0dcc9df9 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x0dcf47ca __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de06988 cpu_first_thread_of_core +EXPORT_SYMBOL_GPL vmlinux 0x0dedca93 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x0def3f70 regmap_fields_force_write +EXPORT_SYMBOL_GPL vmlinux 0x0df4b4a8 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x0df90107 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x0e089799 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x0e10f895 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x0e21245f rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x0e3908c3 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x0e9a31f4 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x0ea41f64 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x0ea72ded securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x0ecba3bf virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x0ecf823a static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x0ed52459 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x0ee8e5db regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x0ef2b6b9 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x0f012044 __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x0f265f3b ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x0f312e86 cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f5abda2 sysfs_add_device_to_node +EXPORT_SYMBOL_GPL vmlinux 0x0f5fc807 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0fa72535 sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x0fca80af copro_flush_all_slbs +EXPORT_SYMBOL_GPL vmlinux 0x0fe4b676 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x0ff6fdd9 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x1007097b mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x1034c948 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x105d3ade uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x106f2ddd serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x108382ce copro_calculate_slb +EXPORT_SYMBOL_GPL vmlinux 0x10846468 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x10a8ce84 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x10b2b903 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x10bc0ccc vfio_device_get_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x10bcd3cf uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x10d1b5cb irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x10d213fd md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x110ae533 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x1114011d threads_shift +EXPORT_SYMBOL_GPL vmlinux 0x11306fd8 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x113494bf ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x11365cdf regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x11388f48 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x1142c2f9 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1161793f power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x117c7305 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x11904e74 user_read +EXPORT_SYMBOL_GPL vmlinux 0x119536b6 blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0x11c1ffe3 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x11e40440 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x12028845 pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0x1205c58c powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x121a024c fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1225b14a pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x1237eae0 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x12466ae5 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x12470a1b fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x12618f89 __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x12993273 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x12c1cf11 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x12c6b3a1 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x12cd5903 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x12ee3315 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x1309ddcd tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x136a4ee6 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x13775d2c ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x1389da84 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x138cdbb3 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x13975dff gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x1398d82c ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x139c22f1 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x13a0be72 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x13a2672c platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13d3a50e get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x13d6dd8c mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x13e5ea13 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x13f07005 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x1435e9ad usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x14462b8f syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x1457116c devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x146f496a device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x147aa29c cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x147e1f0b irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x14b08f84 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x14b4233e eeh_pe_configure +EXPORT_SYMBOL_GPL vmlinux 0x14b67acf __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x14c5eab6 tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x14cef720 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x14cf1599 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x14d21308 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x14e953bb regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x150991ea trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x150f7243 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1515cf34 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x1529e650 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x153d9fbd irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0x15665c62 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x1574700a sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x15776917 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x15b8b44d opal_async_wait_response +EXPORT_SYMBOL_GPL vmlinux 0x15c21e5e nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x15eb860e usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x160c47d3 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x162fc6bd blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x16377ab7 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x16380d30 percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x1645e7bf ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x166389ec usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x1677ef49 tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0x167c55f1 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x16984be6 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x16d65d10 rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x16da5a11 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x16e02407 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x1704a4c3 security_kernel_fw_from_file +EXPORT_SYMBOL_GPL vmlinux 0x17101d4e pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x1717ad0c netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x171eb1ed device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x173904fb transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x1752b610 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x17715696 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x1784a0f9 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online +EXPORT_SYMBOL_GPL vmlinux 0x179c6390 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x17da158f __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x17e19801 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x1829b9ed hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x1838e539 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x184f05c5 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x185a4e1a kvmppc_h_get_tce +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x189f874d powernv_get_random_long +EXPORT_SYMBOL_GPL vmlinux 0x18a1ece9 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x18c69eb6 dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0x18c94a64 dax_fault +EXPORT_SYMBOL_GPL vmlinux 0x190a6556 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x19119803 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1929b819 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x1938dcbb pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x193f8543 devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x1979da35 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x1990bd6c trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x19957bf8 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19c6776e regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1a16ca9c device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x1a1e84ff wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0x1a222928 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x1a319511 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x1a42a41e __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x1a4c2a7e evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x1a7894d0 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x1a7c1ef9 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x1a8c5907 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x1aa9ed37 usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1ad0f0cc rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x1b039a13 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x1b5162f7 crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0x1b55a99a power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x1b6a5026 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x1b7b1780 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x1b7deca4 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0x1b9664d1 __destroy_context +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1bab7ab8 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x1bbd5a93 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x1bc1872c device_del +EXPORT_SYMBOL_GPL vmlinux 0x1bcd575a usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x1bd25fa0 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x1bdd4cad usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x1be3fc4d nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x1c1215bd threads_core_mask +EXPORT_SYMBOL_GPL vmlinux 0x1c1e19a0 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x1c2ad10a srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x1c395548 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x1c54f675 of_get_nand_ecc_mode +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c648fc8 device_remove_property_set +EXPORT_SYMBOL_GPL vmlinux 0x1c6b75e7 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x1c7df74c kvm_hv_vm_activated +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1ca44887 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x1cbfe547 fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x1ccb5ee9 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x1cd484ff gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x1cdb2147 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x1ce9976f __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x1cea530c sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x1cf82066 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x1cff5f1d regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x1d0f23b9 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x1d13f022 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d22318b rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x1d44ac7b crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x1d584e4e kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x1d652735 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x1d95ee56 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1d96575b of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x1df9179b mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x1e000879 hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0x1e00bd23 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x1e14b635 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x1e2e1485 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x1e47a247 spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0x1e48a69e __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x1e49c3ad adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e6352a4 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x1e666f63 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x1e776468 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e8832a0 genlmsg_new_unicast +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebac2bd getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1eca3fee ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x1ecc368a cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1edc21cb hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x1ee140b0 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x1f00ce56 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x1f1988f7 hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x1f298f12 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x1f3eb54e sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x1f418544 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x1f4948c4 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x1f616682 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8cd142 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1f8f5c49 blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0x1f96b8a0 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1fa9c1ae pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1fb0348f devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x1fb113be of_get_nand_ecc_step_size +EXPORT_SYMBOL_GPL vmlinux 0x2030522c xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x206656ea of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0x2067c6f4 irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0x20a3fdd8 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x20a6a0f3 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x20c7a8fa fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x20cc62df ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x20da7b9f scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0x20e16bc4 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x20ef8bf9 flush_altivec_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x20f00322 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x20fcbd60 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x211850f5 htab_hash_mask +EXPORT_SYMBOL_GPL vmlinux 0x21691abe shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x21704a7d inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21c32c8d ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x22013057 spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x221481ce virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x2253324d kvm_alloc_hpt +EXPORT_SYMBOL_GPL vmlinux 0x22761aa2 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x22d65391 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x22f25937 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x23026cca ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x235816a2 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x235eb49e __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x238ba7d9 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x238bc41f rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x238ea3dc xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x23ad47cf devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x23b0ca35 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x23d5f97b power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x23df16fe transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x24011e14 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x24014e28 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x240b0ce4 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x2448316e spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x24515475 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x245b2f40 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x246da8bc adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x247d3d54 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2493a5ab arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24be147f debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x251e5a9a extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x25279482 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x2531d2ee gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x254d1062 filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x2563023e crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2566632d generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x259c64a5 bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x25d49e8f ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x25ddd2b1 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x25e42779 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x26209a43 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x26323931 dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x2646b6fc regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x265fd86d sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x266e4845 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x26969cc9 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x26a4f283 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26c9611e usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x26deb46f __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x26ea421b bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0x270450f8 dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0x2712cbe2 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0x271da1d0 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x272645f3 percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0x275a0fbd regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x275e2c51 cpu_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x276a85b3 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x277ece13 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x27ae1755 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x27c0c4be eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27e501fa mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x27feb362 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x280c5c87 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x28779167 extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x288bef19 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x28acb287 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x28de33ea crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x28ef7ebc gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x28f19dc6 pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0x28ff99a9 opal_prd_msg +EXPORT_SYMBOL_GPL vmlinux 0x2914ce45 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x2918c159 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x291bbbaf debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x29660baa debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x297811ca sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x29816ae3 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x29969b1a dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x29b29007 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x29c02d25 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x29dc7740 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x29e1311a seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29f47bcb blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0x2a0e16c2 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x2a156e8e irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x2a1ac940 pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0x2a24c162 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x2a2f0295 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x2a303b31 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x2a3b0f86 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x2a4656ef device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x2a664f17 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a8864ef __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0x2a92e8ac inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x2aa4f632 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x2ac0325d sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x2acdeefa part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0x2aed93d5 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x2af21994 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x2afcc67a da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x2afdedfd usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x2b017563 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x2b03caa1 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x2b116fc8 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x2b23a594 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b3b55f9 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2b3f8c74 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x2b4147ed kvmppc_hcall_impl_hv_realmode +EXPORT_SYMBOL_GPL vmlinux 0x2b436739 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x2b5c303b smp_send_reschedule +EXPORT_SYMBOL_GPL vmlinux 0x2b65403e led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x2b84b903 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x2bb4cae4 iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x2bb988f3 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x2bf03f2e regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c25f741 rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c4ad38b ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x2c6b4752 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x2c721b59 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c871e87 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2cd0b218 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x2cd88f51 kvm_hv_vm_deactivated +EXPORT_SYMBOL_GPL vmlinux 0x2ce2e0b6 of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2cff9a5c sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x2d163d36 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d278d5c stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d543944 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d5e14ba mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x2d708191 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x2d808a0c scom_map_device +EXPORT_SYMBOL_GPL vmlinux 0x2da663a4 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x2dc5a6d1 btree_last +EXPORT_SYMBOL_GPL vmlinux 0x2dcce69e extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2def995f debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x2df5595f uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2e0e4fde ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x2e1da9fb probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e63beb1 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2e90ae61 tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x2eab1ee0 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ed075b7 swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0x2ed49bb1 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x2ef26873 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x2efeb9ce __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f126631 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x2f3013d8 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x2f386a88 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f4c7b2b dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x2f5a87f1 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f75aa14 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x2f87f7d2 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x2fa5a166 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x2fa79e75 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x2fbf3cb8 get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0x2fc126cb pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake +EXPORT_SYMBOL_GPL vmlinux 0x2ffb5ff7 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x301832fb opal_async_get_token_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x303ac1e2 cpu_remove_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x304accc1 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x305612c2 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x306f2202 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x30ab42c0 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x30ce3c6a rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x30e6cb04 usb_string +EXPORT_SYMBOL_GPL vmlinux 0x30f0025e sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x31202621 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x3136f21b scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x313b60fd ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x313e3744 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x3146d838 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x315fede9 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x3170ee43 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0x3184abc1 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x31bba0b4 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x31bef441 opal_i2c_request +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x31c69043 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31f58a11 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x320f5ab0 rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval +EXPORT_SYMBOL_GPL vmlinux 0x322660b1 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x324846c1 crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0x32492525 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x324b37de stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x32883e2f gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x3296d4d3 __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x32ab17d7 of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c1760f power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32c7f927 regmap_update_bits_check +EXPORT_SYMBOL_GPL vmlinux 0x32f50aad mmput +EXPORT_SYMBOL_GPL vmlinux 0x330debbf of_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0x332b1290 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x33398de6 mmu_psize_defs +EXPORT_SYMBOL_GPL vmlinux 0x33495815 tpm2_startup +EXPORT_SYMBOL_GPL vmlinux 0x335179b3 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x335f30ce cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x337786fa usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x33810806 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x3399ee50 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x33b1b114 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x33c5ee22 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x341482a2 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x3417ee94 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x342238f0 mm_iommu_get +EXPORT_SYMBOL_GPL vmlinux 0x3432cf5b iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x34335461 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x343912c4 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x344275e6 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x34427a35 unregister_cxl_calls +EXPORT_SYMBOL_GPL vmlinux 0x34429393 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34a8da5f __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x34af0adf opal_ipmi_send +EXPORT_SYMBOL_GPL vmlinux 0x34b4f53a irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x34fdfc2b tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x35021edb ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x35097e49 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x350dc79d blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x352a0549 cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0x352cb517 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x354554d0 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL vmlinux 0x3572c1d3 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x358cd231 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x359fed98 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x35b51836 dax_clear_blocks +EXPORT_SYMBOL_GPL vmlinux 0x35bf2acd nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0x35cb0b8c of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x35e5d73f crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x35e81ac9 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x35ed1af9 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x35fb3884 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x360e9409 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x3610bdea dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x36150db1 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x362b0266 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x362b158e of_pci_find_msi_chip_by_node +EXPORT_SYMBOL_GPL vmlinux 0x3651377c pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x36584580 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x366228eb usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x368f1fea static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36af01ad wm8400_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x36b7ee33 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x36ce361d spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36e5d14b serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x36f87b83 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x372d3ea9 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x37442ed6 devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0x37583673 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x37586a65 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x37a8568d dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x37a9d332 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x37b4a194 of_dma_get_range +EXPORT_SYMBOL_GPL vmlinux 0x37ef1216 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x37ef4a9d __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x382985b8 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x3830f63b fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x3837af69 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x383b590a inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x384753ee ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy +EXPORT_SYMBOL_GPL vmlinux 0x387ef1ea dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x38907651 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x38ab32e7 pnv_get_supported_cpuidle_states +EXPORT_SYMBOL_GPL vmlinux 0x38b0f559 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x38b387a2 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x38bc00a8 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x38c739a2 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x38c82fcf sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x38c9c3bf blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x38e23f40 put_device +EXPORT_SYMBOL_GPL vmlinux 0x38fad566 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x391c8bc3 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x3927bd2f anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x392d367b rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x392fe739 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x39597d25 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x396f334b of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39ccb4d3 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x39d0573b gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x39d217b1 tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x39db1b2f __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x39ea6c70 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x39f9666a dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0x3a053339 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a280cbe thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3a38dc65 memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x3a3a8d16 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x3a47dab8 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x3a4813e2 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a5fcb90 i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0x3a604322 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x3a6cb00c regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x3a719b9f gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x3a773ecf pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0x3a95f5a9 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3ab25b9e da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x3abb166b ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ad0e201 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x3af7f197 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x3b079dda extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x3b0e5bf5 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x3b5528ec da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x3b7c01d0 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x3b816f87 trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x3b831365 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x3b924f48 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x3b92b1eb tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x3ba33302 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x3ba3604a usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x3bb509af scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x3bc6c748 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x3bf30d51 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x3bf93b86 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x3c18835e regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3c2b1f0d inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x3c391b35 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x3c3d9794 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x3c51ea7c opal_leds_get_ind +EXPORT_SYMBOL_GPL vmlinux 0x3c7a8d48 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x3c844d17 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3c95dfb8 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x3c9ebb92 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x3cc07c60 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cf69baf slice_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x3d0ec24c pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x3d30574e stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d497c71 user_update +EXPORT_SYMBOL_GPL vmlinux 0x3d53a2c7 pwm_config +EXPORT_SYMBOL_GPL vmlinux 0x3d612305 iommu_direction_to_tce_perm +EXPORT_SYMBOL_GPL vmlinux 0x3d70cce1 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x3d840925 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x3d9679f2 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x3da67a23 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dcdc52d pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3df5f31f crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x3dfc436e percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x3dfd45dd regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x3e259239 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e7b8bef gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x3eab2407 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x3eb92651 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x3eefae88 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3efd1dbe debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x3f01395d cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x3f1cb321 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0x3f29b457 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x3f462cc7 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x3f6093a7 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x3f66ba55 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x3f7ff141 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x3f877815 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x3fa485cc tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0x3fa5cc3d xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x3fa7339a ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x3fb14423 md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x3fb2bd8a irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0x3fbaf525 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x3fbfa3a6 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x3fd17cfc iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL vmlinux 0x3fe9bfaf ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x3fef7431 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x4028d776 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x403e76e0 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x405fb3b7 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406a74de pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x4098be04 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x40a8b1c7 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40b3bcc4 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x40c0467c device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x40c0763d sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x40d38b5e crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40d97c09 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x40e401fc usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x40ea577a usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x40ee652f of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x410db046 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x412a50b0 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x412ebee4 single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x41672d37 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x416e7c4e crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x41717023 vfio_virqfd_enable +EXPORT_SYMBOL_GPL vmlinux 0x4180759e usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL vmlinux 0x41ad198c irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x41c50788 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x41d9f243 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x4216ba5d rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x4237e56e ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x425ccf19 __spin_yield +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x426b2c92 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4277c016 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x427a1fc3 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x427de547 pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x429d7b78 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x42b8ff7f __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x42f48f37 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x42fd7b26 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x432702e6 mm_iommu_mapped_inc +EXPORT_SYMBOL_GPL vmlinux 0x435077ba spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x4356b872 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x4364e53d nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x43854187 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43ca7eb8 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x43cef27d yield_to +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x440a668b pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x44375c03 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x446e3c47 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44914ad1 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x44932f40 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44cd911a alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x44ece53d mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x44fa8b7c pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x44fc6804 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x450fb522 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x45190b1f tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x45219911 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x4547de3d raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x456143c6 spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0x45739781 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x4588e114 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x458eaa2f call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x45a7ef18 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x45ab21bc use_mm +EXPORT_SYMBOL_GPL vmlinux 0x45b527d7 inet_csk_compat_getsockopt +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45d18ebe tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x45d95dac vfio_virqfd_disable +EXPORT_SYMBOL_GPL vmlinux 0x45f9723c fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x4613adea dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x463aa8d9 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x46697e64 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4676c1a9 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x467a1fed rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x4680382b dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x4688c96a usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46bfd35f sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0x46dc4298 system_trusted_keyring +EXPORT_SYMBOL_GPL vmlinux 0x46e25e31 __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x46e6ee88 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x46f5f2a7 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x47340d91 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x473f0ba9 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x474e4120 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x47542007 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x47622d27 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x476a5e41 agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0x47851b42 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x478edd4c i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47bdef5a key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x47c4f7fc nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x47c85a8c init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x47d57edd devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4822dd56 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x4824bd0f rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x48322f67 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x4857eb8e input_class +EXPORT_SYMBOL_GPL vmlinux 0x48652d8d gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x48c8cc0b vfio_del_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x48d63c48 pcibios_finish_adding_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x48d7ad9b blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x48fb38bc __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0x49151610 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x492d1402 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x493f0d06 nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x494dcb64 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x495fa429 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x49654826 arizona_of_get_type +EXPORT_SYMBOL_GPL vmlinux 0x49847d3c srp_rport_del +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x4992df91 component_add +EXPORT_SYMBOL_GPL vmlinux 0x49b34964 queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x49bf6927 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x49c44e7a usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x49c4f2c9 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x49d4159a unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4a026413 mm_iommu_mapped_dec +EXPORT_SYMBOL_GPL vmlinux 0x4a0b8660 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x4a2a0374 ref_module +EXPORT_SYMBOL_GPL vmlinux 0x4a2ee477 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x4a35fd34 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x4a4a10af __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name +EXPORT_SYMBOL_GPL vmlinux 0x4a4d1ea6 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x4a5a77d8 mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0x4a6cb5d1 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x4a7b653f devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4a8c58de of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4a90160e bprintf +EXPORT_SYMBOL_GPL vmlinux 0x4a9c3d2d ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x4aad67ce remove_phb_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4aba8408 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x4acb19e3 of_get_nand_on_flash_bbt +EXPORT_SYMBOL_GPL vmlinux 0x4ade320d fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4ae299ae usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x4afb9c3c tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x4b58884b ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x4b88171f reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x4b8b1020 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x4b9611af mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x4be692f3 cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x4c024ed2 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x4c125af7 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x4c287171 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x4c2cf3a7 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c645f9e static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x4c70824e regmap_fields_write +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4cc024ac irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x4cd2afdb gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x4cd4d91c pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x4cd7bce1 iommu_del_device +EXPORT_SYMBOL_GPL vmlinux 0x4ce477f8 __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x4cf50f42 of_overlay_create +EXPORT_SYMBOL_GPL vmlinux 0x4cf939fe trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d18d24d blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0x4d1978c0 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x4d2fff37 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x4d3af9c3 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x4d3f19f2 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x4d464b1b inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x4d49d38a ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x4d7e3f4f of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x4d9f61f1 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x4da563e6 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x4dba3788 of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4e0f1978 hash_page_mm +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path +EXPORT_SYMBOL_GPL vmlinux 0x4e2dac59 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x4e54ce48 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x4e5f3efa pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4e709d5f pcibios_free_controller +EXPORT_SYMBOL_GPL vmlinux 0x4e94a7e4 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0x4e981b7b devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x4ebcbde4 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x4ed0363a phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4ee21760 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4ef7e360 irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x4f05925c devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4f14a78a blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x4f180bd7 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f3b798b pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x4f543b6c dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4f63f48e scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4fb3ce60 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x4fcff4de gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x4fd005c9 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fdd2bdf ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5030fdbb da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x50357718 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x5038c62d balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x5039c4ab percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0x505c8e3b to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0x507596d8 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x507de8c6 add_memory +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x50879147 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x508e37f6 arizona_of_get_named_gpio +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x509a7d8b ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0x50a2aa62 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50faa7e3 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x510e1c71 mm_iommu_lookup +EXPORT_SYMBOL_GPL vmlinux 0x512ce09b dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x5143b7a2 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x51467922 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x516433dc iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x518d65e1 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x51b08928 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x51b65a26 rtc_lock +EXPORT_SYMBOL_GPL vmlinux 0x51cd09f8 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x51d3da6e unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x51d73035 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x51e722fd of_irq_parse_pci +EXPORT_SYMBOL_GPL vmlinux 0x51e72c20 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x51e893b0 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x51f702ac stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x51f9ecd4 spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0x5205e64d disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x520cb88b rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL vmlinux 0x522f538b tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x5231c483 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x52325d6b regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x527fc559 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x52a42c92 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x52b092ca iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x52b3e7c7 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x52de8d28 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x53026441 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x53055501 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x5335dd11 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5355dfb4 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x5360f4e4 regmap_write_bits +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x53704fc2 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x537e83b2 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x53845097 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x5395ee2a kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x5406d03b ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x5433656a ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x54462683 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x54533303 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x54542e73 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x546c5565 ppc_tb_freq +EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x54ed8215 iommu_add_device +EXPORT_SYMBOL_GPL vmlinux 0x54f2fa9b l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x54f61ede fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x55133960 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x55181239 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x551d5478 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x552a1800 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x555fd81d balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x5565f9d4 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x5573f3dd md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x55826f58 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x558754fa fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x5588879e kvmppc_entry_trampoline +EXPORT_SYMBOL_GPL vmlinux 0x559e42fc kvmppc_do_h_remove +EXPORT_SYMBOL_GPL vmlinux 0x55cdebbb nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x55cf7828 find_module +EXPORT_SYMBOL_GPL vmlinux 0x55dc6fa4 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x55e62f89 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x55e9d516 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x55ee8a0b init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x55eec43b devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f51ef3 alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x560aa1db opal_tpo_write +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x5679f49c sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x567dddca x509_request_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x567f8287 cxl_update_properties +EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0x56a7ebec init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x56cb8450 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x575b35b6 percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0x575c5f94 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x576a24b4 of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57a19a5e dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x57bb94c9 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x57c133a4 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57e585c3 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x5809fadb led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x58110346 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x58406724 napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0x5843d6df fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x586154a0 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x5892f832 release_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58b6b899 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x58ce304a __sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x58ced57b pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x58dd435c uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x58f22e7b shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x59312802 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x5937e987 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x5942991e dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x59536970 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x59578e34 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x595a2709 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x596dd5a6 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x59963dfb led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59c8d7f4 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5a024ecd percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5a0a9543 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x5a243525 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x5a30682f inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x5a3a390c ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a797e31 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a890a91 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x5a9f17f1 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x5ab83e24 dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x5ac2d293 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x5ad73f14 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x5b05cd0e uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x5b0a038d bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5b24abc3 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x5b2e17e0 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x5b32f419 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x5b332ed9 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x5b650b73 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x5b75ed8a blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0x5b95c772 blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5be6bf67 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x5bed196a eeh_pe_inject_err +EXPORT_SYMBOL_GPL vmlinux 0x5c148d91 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x5c23fd9b of_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x5c40df33 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x5c451940 tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x5c518ca4 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c77d6e5 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cbc7160 bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5d05b54b iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d39da7d mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dd47995 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x5e196e0c blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x5e24a93a pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x5e50cf02 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e6f8c03 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x5eae874b usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0x5eb57ffc set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x5edbdd1f rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x5edc247f xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x5ee6a530 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x5ee7542e reserve_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5ef37f03 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x5f0f2c8d regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x5f1dd573 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x5f216581 skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0x5f226035 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x5f53dd92 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x5f577cde rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x5fad701a crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x5fe1da56 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x5fe81a9b regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x5ffb42de register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x60467b06 btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x605950b8 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x6078c362 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x607fa6c9 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x60811ab5 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x6093a232 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x60987d84 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60a5ff22 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x60b30d10 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x60bb0f77 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x60c00ee6 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x60cca309 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0x60f8ffad device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x61303a22 nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x6154c1bb of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x61972506 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x619ae620 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x61a90c54 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x61b18a5a ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x61b678c4 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x61c76884 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x61d57e61 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x62107b0d wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x62126bbe reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0x6214b16c pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x622cc597 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x6248fb21 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x624cee03 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x6269825c srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x626f70f1 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x6276b1e7 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x62779524 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x627ecd70 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x628db191 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x62a54c74 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x62bb152b serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x62bd5a6d __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x62bfa294 srp_rport_add +EXPORT_SYMBOL_GPL vmlinux 0x62d8c128 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x62d931af tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x62e74dbd platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x62e9e929 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x62f43a80 of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x62fd8c38 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x62fe2596 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x631785d6 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x631cc89b devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x634e2aca rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x634eccc0 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x63539865 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x63a31dc9 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x63b062de crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x63db7118 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x63eda3e7 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x63f14ebe io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x63f4923b regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x64270af6 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x6457d9f0 of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x64a7796f evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x64acec5a get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x64e80dfb freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x650d3794 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x650eac17 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x65425efd ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x6546740a device_add +EXPORT_SYMBOL_GPL vmlinux 0x655306f2 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x65577457 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x65732814 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x6593f213 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x65ac9505 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65c64f9f crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65d2d6d6 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x65d66232 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x666df22a __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x668028eb crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6688a7c9 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x6698cd93 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x66afb53b unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x66b978ae usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66e3ff9c ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x672898c4 ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0x673cc0e4 of_reserved_mem_device_init +EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6764ddd9 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x677b6a5c rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x67806bab get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x6784375c register_cxl_calls +EXPORT_SYMBOL_GPL vmlinux 0x678a4105 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x6797bde0 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x67987447 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x67a9adf1 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x67c369f1 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x67c78afc ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x67d83750 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x67e979fe pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x67ea1b2a uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x682fc50c platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x684a2cab scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x68583ee3 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x685a33cf nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x68a0782a pcibios_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x68a6b2b2 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x68ac6a58 xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x68b1ffb8 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x68d0b58f get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x690cf733 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x69114d15 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x691abaf7 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x691bd6ef blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x692f2d16 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x69500344 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x69790ef6 __init_new_context +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x697cbbb4 threads_per_core +EXPORT_SYMBOL_GPL vmlinux 0x697cdc3e ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x69800f49 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x699b89c0 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x69ae4fe8 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x69b83e87 skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x69bc6e44 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0x69d1d113 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a6a3841 tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x6a6bd3ad scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x6a72d61c regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a936feb system_verify_data +EXPORT_SYMBOL_GPL vmlinux 0x6a995e92 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x6aaec63e bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x6ac97ba5 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x6acb8d84 ppc64_caches +EXPORT_SYMBOL_GPL vmlinux 0x6af59238 crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6afd0b9c ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x6b1167e2 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x6b17ed30 rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6baa5b7d bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x6bb425f3 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x6bb4d222 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x6bb94a69 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0x6bc4351d ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x6bc766d7 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x6bcb61cb blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0x6bd192e6 i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0x6bf633cd gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c09a4e2 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c5ab859 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x6c5cd052 of_css +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6ca42a23 rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0x6cad2d0e simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x6caef04f __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x6cc2fb2c opal_message_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6cd6bb3b usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x6d1067f0 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x6d2e941d perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d74237c __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x6da35f0d cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x6db249d4 raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0x6dc111a0 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6dcc899e tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x6dd0dacc scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x6ddd1d50 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x6de496a3 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x6dee7087 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e1ad3a9 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x6e379526 kernstart_addr +EXPORT_SYMBOL_GPL vmlinux 0x6e3f364d of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x6e48b56a device_create +EXPORT_SYMBOL_GPL vmlinux 0x6e584b94 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6e691633 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x6e6e1769 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e97a336 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x6eca4eaf iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0x6edb551c ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x6f079801 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f2c1fb2 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x6f69511c tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x6f749064 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x6fb6906c dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x6fb7e04d thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x70066fae page_endio +EXPORT_SYMBOL_GPL vmlinux 0x700e1648 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x70141c9c get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x70348165 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x70499f0b __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x7055c935 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x7066c8be __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x707f4c2e do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x70a71770 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x70a789a2 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x70b9e2da device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70d76b3e spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x711d4d80 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x715815f5 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x7173dd26 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x71904d00 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x71a45bc2 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x71b1db89 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x71ce061d crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x71ce9a02 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71f86111 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x71f87c07 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x71fb949f page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x71ffeab5 blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0x72005808 cpu_add_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0x720732c1 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0x7246a842 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x7253467c bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x7267d1b5 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x727675bf tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x729ea9ce pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x72a4447a md_stop +EXPORT_SYMBOL_GPL vmlinux 0x72b92943 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x72daf158 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x72db35a6 pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0x72e1e3c9 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x7301ea39 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x730d1fd8 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x7324997a wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x7334c698 blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0x7353d89e fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x7354ec86 pcibios_map_io_space +EXPORT_SYMBOL_GPL vmlinux 0x73718fa3 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x73785711 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x7387cbeb ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x73982a8a blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73b61fdf of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73e2ed1f dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x73fe3ef5 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x73ff39cc of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x7403ab9f devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x74106d5d sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x7413f871 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x74330dd1 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x743d2ad6 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0x745dca7c of_device_get_modalias +EXPORT_SYMBOL_GPL vmlinux 0x745f7fa2 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7476afd9 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x7485e9db tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x7497fa20 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x749e0d01 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x74b00ee5 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74d110a5 pcibios_free_controller_deferred +EXPORT_SYMBOL_GPL vmlinux 0x74fa6746 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x750daee0 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x75329035 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x757b49d2 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x7590712c pcibios_scan_phb +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x75b47702 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x75b72cf4 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x75c9d8c3 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75f2a044 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x760495e2 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x760c7240 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x761ed6ec hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x762c0858 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x763114ac tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x7631bf05 wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7644fee1 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x76719ae1 of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7696a3e6 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x76a29ec9 xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0x76a38403 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x76a9f7e0 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x76bde371 get_hwpoison_page +EXPORT_SYMBOL_GPL vmlinux 0x76e9e8dc regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x76ee3c01 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x770148ba rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x771c8b79 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x7747c1dd regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x778bece7 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x779527bb ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x779630ad trace_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x77990e64 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0x779bc2c6 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x779fb4a6 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77dc4faa sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x77fce06f event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x7800c9e2 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x781fe685 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x78289964 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x783f777f __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x787d37e3 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x7883ce15 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78cae98c spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x78cc5bec hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x78fcf550 crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x7900e7ea virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x79120a13 of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x79140be6 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x79191638 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x791aae59 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x79548f1a pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x795b6af0 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x795b7168 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x795e3625 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x799625b6 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x79bc1b31 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e05bdb skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x7a096bea zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x7a183f3a unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x7a1d8ad7 fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0x7a2c2f14 mm_iommu_find +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a8e1570 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7ac2242c devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x7ae97cc2 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x7b0ec8dc dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b25e60e devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x7b2e193d __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7b4ec239 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x7b533a65 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x7b569fb0 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x7b5c254a usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x7b70ed5c pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x7bb1ad40 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x7be61fef pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x7c004e17 user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x7c11d74b wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x7c1722f6 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x7c1a09a5 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x7c296573 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x7c37bc89 pseries_ioei_notifier_list +EXPORT_SYMBOL_GPL vmlinux 0x7c67aa4b blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x7c7e31eb devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x7ccedcfe devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x7cd0f7b0 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cedf677 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d36ac14 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x7d3fe47b spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0x7d45257d inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x7d46a95e blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d6b989e dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x7d89a79b spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x7d8a01c0 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x7d92dc5f blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x7da54971 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7db3a30e iommu_flush_tce +EXPORT_SYMBOL_GPL vmlinux 0x7db66116 of_display_timings_exist +EXPORT_SYMBOL_GPL vmlinux 0x7dc1e388 alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7defddd7 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7e0100ca ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x7e17ba7b klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x7e31edd1 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7e36540d metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7e365e9a phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x7e38f210 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7e3a5012 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e7852d5 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x7e84758d of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7ea1a2bc probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x7eb7f498 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x7eb959aa wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x7ebc7701 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x7edebeff hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x7f008202 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7f0a25c7 cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0x7f0a4f2c virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x7f0b0676 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x7f13d491 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature +EXPORT_SYMBOL_GPL vmlinux 0x7f5f0621 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x7f7bc710 klist_next +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f89da9a ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x7f9146cb debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x7f99b39b crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x7fb707df da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fcd7279 __dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0x7fdb98ab arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fef9fe4 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x8011cd92 eeh_add_device_tree_early +EXPORT_SYMBOL_GPL vmlinux 0x802bd28d set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x802f6cdf pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x804ea02d __find_linux_pte_or_hugepte +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x807670bd trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x8099a54a nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x80a6ad55 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x80b0aff4 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x80b29719 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x80bbb54b eeh_iommu_group_to_pe +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80dca1b9 of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x80fcd147 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x8114b8d6 md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x812ee383 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x8152e111 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8164b2d4 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x8165b463 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x817193de devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x81916ce2 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x81cd57ab sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x81d1a01f pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x81e27503 split_page +EXPORT_SYMBOL_GPL vmlinux 0x81f9d74f vfio_external_group_match_file +EXPORT_SYMBOL_GPL vmlinux 0x823bf6b9 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x823caa28 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x82583f98 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x82622acb ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x826f99a4 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x8278b155 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x8288e414 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x82a58693 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x82b0a701 scom_controller +EXPORT_SYMBOL_GPL vmlinux 0x82be0ed1 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82e10fd5 extcon_get_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x82e51bf0 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x82f56068 of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x8310edf4 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x831cb996 flush_fp_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x83233ed5 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x8361e2c1 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x836d61d0 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x838947cf skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x83950ea5 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x83ad4488 srp_release_transport +EXPORT_SYMBOL_GPL vmlinux 0x83b9215c device_reset +EXPORT_SYMBOL_GPL vmlinux 0x83e794a2 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x83ea36c7 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x83ebeddf rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x83f0a366 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x83f7653a power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x8429a7f0 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x84325b66 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x84368bed __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x844625b5 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x8447d2c3 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x84480c2c usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x8492e06a usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84b57a22 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x84bcc3c9 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x84c2049a security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x84eba84a fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0x85001b14 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x85094233 reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x85150c18 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x851a77ed blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x856a3472 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x857ef406 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x8586b3ce transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x859347ce mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x859f06a5 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85d0422c wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x85d98da7 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x85f0cfc7 iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x86235254 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x8647c9c4 cpufreq_governor_dbs +EXPORT_SYMBOL_GPL vmlinux 0x864e5311 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x8666a7c5 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x86929357 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x86a3c365 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x86a9dc5e of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x86b6c518 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x86beed84 regmap_field_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x86bf5de1 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x86f3eeda pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x8702e548 process_srcu +EXPORT_SYMBOL_GPL vmlinux 0x871093f5 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x877694fe pcibios_find_pci_bus +EXPORT_SYMBOL_GPL vmlinux 0x877976e6 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x87927108 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x87a8d5e8 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x87aa2b2f realmode_pfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x87b600b9 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x87c09fbc is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x87e6ea3e mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x88019775 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x8804af3d usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x8840738b ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x8848c14a scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x88490752 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x885eed37 pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x88605a7c irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x886ca784 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x887a2468 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88b84bf0 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x88c0370e adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x88c334cf serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x88f1d155 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8901efa9 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x8929c9f9 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x89628238 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x8968233b fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x8980bc61 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x898686de anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x89b57d1b xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x89bae933 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89bed10e debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x89d8f989 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x89de59b5 skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8a28c400 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod +EXPORT_SYMBOL_GPL vmlinux 0x8a6b2dde aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x8a7226db pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8a77a8e7 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8abe6974 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x8abe8a7f device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x8acc0186 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x8af6b506 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x8b03c71a __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x8b235ee0 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x8b2ceaf7 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x8b3f1a63 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x8b4166f9 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x8b5bdb12 irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x8b62eb38 wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8b649e33 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x8b70e8ea __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8b989f1c single_release_net +EXPORT_SYMBOL_GPL vmlinux 0x8ba0b014 of_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x8ba75319 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x8bd62519 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x8bdc14ac ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c10d51b dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8c114468 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x8c1a7994 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x8c52d33c __module_address +EXPORT_SYMBOL_GPL vmlinux 0x8c5d9433 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c658bb3 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c80d84a sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x8cae54b5 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params +EXPORT_SYMBOL_GPL vmlinux 0x8cdb2e07 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x8ce3a302 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x8ce4eb09 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x8cea078f __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x8cea765f memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d339165 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x8d6fbdce regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x8dab4462 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x8dacbd5a __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x8dbf5a20 kvmppc_hv_entry_trampoline +EXPORT_SYMBOL_GPL vmlinux 0x8dc94177 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x8df05322 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x8e2b25c2 videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e302c95 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x8e5e6563 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x8e6fdb33 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8e71a3c8 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x8ea0ef97 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x8ed7d062 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x8ee91a85 flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x8ef1ef3f regmap_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f9875d9 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x8fc346bc sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x8fced602 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x8fe5be22 vfio_spapr_pci_eeh_release +EXPORT_SYMBOL_GPL vmlinux 0x8ff80af0 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x8fff5e8e platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x901be65c hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x9029ae2d mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x9077d5ea usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x907f06e2 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x909adea7 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90af38b2 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x90b298c1 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x90c1e0f7 srp_stop_rport_timers +EXPORT_SYMBOL_GPL vmlinux 0x90ea888d ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0x90ef16ab tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x9143950a tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x916a92e4 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x919732ce ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x91a307f0 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x91ac1adf cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x91aecd5e percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91d8b77f pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x91e46490 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x91f0c992 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x92098cdf powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x9215ef40 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0x924814b8 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x926dd890 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x92c1ed03 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x92ce4926 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92ec8219 crypto_lookup_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x9320e843 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x932f8d9d wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0x93311080 opal_flash_read +EXPORT_SYMBOL_GPL vmlinux 0x933b5536 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x933df7ea ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x93461f70 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0x935acb2c unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x93602c37 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x936c2003 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x936c8ce3 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x936ca140 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x93734389 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x9380e257 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x93deabd6 gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0x93fa2cfd put_hwpoison_page +EXPORT_SYMBOL_GPL vmlinux 0x94158478 tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x944e6b91 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x947d4379 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x94827fb9 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94c01037 default_iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x94d972b7 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x9502cdea __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x950ec818 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x9517ebc8 eeh_dev_open +EXPORT_SYMBOL_GPL vmlinux 0x951ab876 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x95258207 vfio_device_data +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x9529c705 devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x954e4f92 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x955e0b53 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x95763048 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x957a2940 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x958129a9 crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x95acfdaf extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95bdb5d0 fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x95d48f55 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x95daa3bd regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x95ecb93b __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x95f409a3 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9631037e debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x964cb37b debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x965336fc handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9686b2ce usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x969c73d9 vfio_device_put +EXPORT_SYMBOL_GPL vmlinux 0x96a74593 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x96e892a8 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x96f3b828 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x96f6a263 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x96fb4c4e __sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x97256060 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x9735f061 register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x973a678d pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x9745d68e usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x9749d5ad trace_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x9780c464 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x97a01819 iommu_tce_clear_param_check +EXPORT_SYMBOL_GPL vmlinux 0x97a96132 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x97adb983 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97f5f85e phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x980c3bc8 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x981bbe48 of_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x9824318b shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x982fdfba crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x983883b6 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x9840fd2f disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x98566b4b blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x98571ebb device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x985abe41 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x986808a3 wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x9876448a extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9894f145 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x98958fa7 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x989ed6d1 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x98a02a70 register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x98e750ce pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x98f25d57 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x98f9f73d fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on +EXPORT_SYMBOL_GPL vmlinux 0x9909eec4 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x990d9a94 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x99368d65 kvmppc_update_rmap_change +EXPORT_SYMBOL_GPL vmlinux 0x99473852 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x995f2d0b nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0x9973add9 __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x9987e6e9 opal_get_sensor_data +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x9992d3c2 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x9995f355 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x99b47292 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0x99b91e4a dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x99ba4ecb dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99c267fd ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x99d491ac gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x99dc1da2 devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x99e2bff5 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x99f51152 sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0x99fa36e2 shake_page +EXPORT_SYMBOL_GPL vmlinux 0x99ff8d08 opal_invalid_call +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a2964c4 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x9a296d67 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0x9a42033c proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x9a46be84 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9a49d937 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x9a58a832 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x9a68fc8a __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x9a755e53 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x9a7941ca gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x9a817d50 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x9a8772bf pwm_disable +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9aad6540 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9acda047 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x9acfebb6 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x9adf08c3 mmu_linear_psize +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9aec4b52 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x9b176064 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x9b2a8160 napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x9b38d96a regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x9b43b922 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x9b64a317 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x9b682a2a init_phb_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x9b6d89da platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x9b8044af __netlink_alloc_skb +EXPORT_SYMBOL_GPL vmlinux 0x9b85616d __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x9b8db024 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x9b8e8b72 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x9b992724 component_del +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9ba45622 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x9bc11102 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x9bc18fa0 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x9bc35a37 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x9bca03ca ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9c038cc6 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x9c2ebb33 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x9c41a007 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x9c5a530e wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x9c90a234 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x9ca1f054 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x9ca9185d irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x9cb0df4b trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x9cc28c0f driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cf4c179 rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0x9d0f6b5f blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x9d10610f tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x9d4f2760 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x9d69bcdc iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0x9d6d4e3c ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x9d716099 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x9d725b9d crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported +EXPORT_SYMBOL_GPL vmlinux 0x9db2d4b1 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x9dd5b124 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x9dde7a86 of_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x9de1c5da pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9de26391 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9e2f673c of_get_nand_bus_width +EXPORT_SYMBOL_GPL vmlinux 0x9e460417 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e4b65f9 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x9e6b41a8 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x9e6bf642 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x9e8223d1 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x9ea32969 fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9ea83034 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x9eaaadbd kvmppc_add_revmap_chain +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ee8284c devres_release +EXPORT_SYMBOL_GPL vmlinux 0x9ef5c639 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9efab9cc ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x9f0a18da cpu_remove_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0x9f11bdeb crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x9f150e09 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x9f18fa11 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0x9f24107e pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x9f3a7a3c of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x9f63c10d spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x9f9dd27b crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x9f9fc9a5 pcibios_add_pci_devices +EXPORT_SYMBOL_GPL vmlinux 0x9fa40d1d srp_attach_transport +EXPORT_SYMBOL_GPL vmlinux 0x9fac7da8 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9ff93bea ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x9ffe5483 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0xa00d8a03 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xa02b1274 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xa054566c driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xa0558cc1 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xa0625bbe ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xa071e996 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xa075683c screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xa07d9959 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xa095eecf i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0xa096b55b sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xa0987b54 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xa0a27fff pci_address_to_pio +EXPORT_SYMBOL_GPL vmlinux 0xa0b139f0 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0xa0c63b75 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xa0d44fc5 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xa0f1f088 __online_page_free +EXPORT_SYMBOL_GPL vmlinux 0xa10a736c rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xa1119fbd dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xa1154705 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xa1245170 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xa12f7c9d cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xa1475f50 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xa1498221 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xa1738cdf ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xa17c6877 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xa18e9821 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa1989673 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xa1e34bd0 ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0xa1ef4cb1 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0xa21eea69 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xa2351763 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0xa24fd44c syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa260508e tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xa26240ae sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2718017 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa2994eba pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xa2a1f77a dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0xa2ac5519 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0xa2ac68dd pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2c0cf7c usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa2e68273 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xa2f3e44a pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xa2fb36fe ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xa2fe1ae7 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xa34bb34b blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0xa35f8c2d tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xa3745967 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xa374e207 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xa384918b pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa393230c inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a2d9af walk_system_ram_range +EXPORT_SYMBOL_GPL vmlinux 0xa3afb198 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3e16693 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa3e96282 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xa3feec3f edac_subsys +EXPORT_SYMBOL_GPL vmlinux 0xa40abc36 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xa44c1459 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa48fe9ec tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xa4a56a84 of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xa4a98150 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0xa4afb44e find_symbol +EXPORT_SYMBOL_GPL vmlinux 0xa4c69326 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xa4dac3f2 shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0xa4e46c0e tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xa4e739fe ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xa4f83930 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0xa4ffbecd fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0xa51a65a8 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0xa53a07b1 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xa552fee4 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xa5709260 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0xa57520be shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xa5830360 led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xa58cd1de regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xa59a2b86 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0xa5a62567 elv_register +EXPORT_SYMBOL_GPL vmlinux 0xa5afe69f gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xa5b00659 ppc_proc_freq +EXPORT_SYMBOL_GPL vmlinux 0xa5bf8e3d class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xa5d52d90 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0xa5d95a71 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5efe460 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xa5fd4d7e ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0xa60fbf6c trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0xa61e83c3 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa62db9e9 iommu_tce_xchg +EXPORT_SYMBOL_GPL vmlinux 0xa62dede4 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0xa62f5c90 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xa6647139 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa69ee1ae __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0xa6a9a26a rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6b68079 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xa6b7f556 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xa6bd0a3d __bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6eded6c opal_xscom_read +EXPORT_SYMBOL_GPL vmlinux 0xa6f5c55f pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0xa7207dbf ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0xa721bc3f opal_rtc_write +EXPORT_SYMBOL_GPL vmlinux 0xa72debbb usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0xa7460cda devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xa767783b blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xa769656c thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa7980477 bpf_prog_get +EXPORT_SYMBOL_GPL vmlinux 0xa7b8ed67 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0xa7b9134c __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xa7c05aff perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa7cfe109 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xa7dfb142 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xa8003a2f digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0xa8121926 arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0xa819eac9 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0xa81fd8ab sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0xa826a528 blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xa8371cca wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xa83b8bb6 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa86cc0d1 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xa86eed71 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xa87fb087 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xa8845231 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0xa88e42fa pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa8983038 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xa8b0253d usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8fb8ebd fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xa90136e2 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xa905df30 __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0xa90fd26a bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0xa925bef2 of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa94f202a devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0xa9643795 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xa96b2055 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xa97a72a2 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0xa97de0e8 of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0xa98c4b71 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xa993491e serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0xa9aa1b00 opal_poll_events +EXPORT_SYMBOL_GPL vmlinux 0xa9bea17a usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xa9c2df10 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0xa9ce341e usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0xa9d699db handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9e43c08 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa9e54b65 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0xa9f4d558 virtqueue_get_avail +EXPORT_SYMBOL_GPL vmlinux 0xaa8acca1 pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0xaa8b796c console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xaaa15b71 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xaaa87b72 copro_handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaaaf77a6 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xaab1e906 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xaab2fd2a crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xaab4de8f task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0xaaf1ba0f gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xaaf4dd7b ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0xab09533d ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xab34d235 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0xab489a37 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xab4cc155 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0xab567d31 percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab73b832 wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0xab9859eb sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xabbb3ac1 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabd3d40c list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xac0624b4 vfio_spapr_iommu_eeh_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xac20c70a put_pid +EXPORT_SYMBOL_GPL vmlinux 0xac2810f7 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xac494c65 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0xac5cc33f ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0xac63aea1 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xac7d05b2 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xac9c31f3 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0xacbdf5b1 eeh_add_device_tree_late +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xacfb7f14 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xacfe997e powerpc_firmware_features +EXPORT_SYMBOL_GPL vmlinux 0xad017f95 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0xad141ed0 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xad382d86 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xad4172cd task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xad8d2717 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xade4e8d0 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0xaded9da1 perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xae14fe6c spi_setup +EXPORT_SYMBOL_GPL vmlinux 0xae1b839b irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0xae36f4bd kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xae57ac4f ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xae5e2f69 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae6eaf93 hwpoison_filter_dev_minor +EXPORT_SYMBOL_GPL vmlinux 0xae6f06d3 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xae6fb6be usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae81922b of_overlay_destroy_all +EXPORT_SYMBOL_GPL vmlinux 0xaea0a093 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xaeaaa687 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xaec9921f hash_page +EXPORT_SYMBOL_GPL vmlinux 0xaeed520d class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaefe2365 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xaf195569 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xaf279112 opal_leds_set_ind +EXPORT_SYMBOL_GPL vmlinux 0xaf439131 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0xaf6f62b9 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xaf7128b5 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xaf8ad54c perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xaf8eb1b7 device_move +EXPORT_SYMBOL_GPL vmlinux 0xaf9f530e smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xafb79b11 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xafbb9446 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xafbe6c9e kvmppc_hwrng_present +EXPORT_SYMBOL_GPL vmlinux 0xafc16b99 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xafc2abbf usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0xafca735e usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0xafcc82a6 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0xaffdf4b7 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0xb00b833e pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xb0332e35 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xb045c9da device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb079cd01 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0xb0893004 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0xb0ab7e5e shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0b9085b cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0xb0b9f14d tpm2_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xb0c5e807 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0e9c565 of_pci_msi_chip_add +EXPORT_SYMBOL_GPL vmlinux 0xb0f945f7 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb0fba7df usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xb11e90ed inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xb13b9b51 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb141492a ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb145faa6 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb18cfb03 rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xb1aafdf1 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1b370bd __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xb1c7b568 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xb1d263db bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xb1d39543 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb20c5931 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb20fadd5 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xb21ba793 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb22694d7 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xb232d12c dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0xb243f06c srp_remove_host +EXPORT_SYMBOL_GPL vmlinux 0xb267fa07 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb27e51ab kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0xb2922376 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0xb2a1e44d pwm_enable +EXPORT_SYMBOL_GPL vmlinux 0xb2a446f1 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xb2b85e5d ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb3035b06 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0xb345d7c8 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy +EXPORT_SYMBOL_GPL vmlinux 0xb36a0482 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xb36eb12e shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xb38a527d dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0xb3ace152 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xb3b80558 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0xb3dc11fb tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xb40d592e swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0xb42cec8d power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0xb42dfad3 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xb436eadf usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xb43b5c7f regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xb44a468d fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xb45f2f48 dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xb488588e tb_to_ns +EXPORT_SYMBOL_GPL vmlinux 0xb4891679 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xb498e52e cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0xb49cdd34 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xb4a2734f crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4fdfda9 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb52eb60b cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb55a340a inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xb56c3719 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb5848bae __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xb5855708 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb598392f debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5aa10af atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb5c700fe agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xb5c8edf4 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0xb5d847b8 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb600d419 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xb603d7ec gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xb60b5707 of_i8042_aux_irq +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb62c3536 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0xb630784d __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xb643c250 xics_wake_cpu +EXPORT_SYMBOL_GPL vmlinux 0xb6458aa4 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xb668b3e4 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0xb66b065a virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xb676e2c8 regmap_field_write +EXPORT_SYMBOL_GPL vmlinux 0xb68af8aa usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xb69c702b __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6b293d2 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xb6d57ece sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xb6e47dee register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xb6fd3acd save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0xb70a59f0 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0xb728a7f6 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xb749f7bf posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xb74a7e8b fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xb7630744 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xb7a70eca __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xb7abd90d fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0xb7ae13ca bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xb7bdaf86 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xb7bf8ecc blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xb7cdb501 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xb7d61add __nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xb7db7f20 irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb7fd28c8 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xb800bffe cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xb815651f blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xb85793ab pcibios_unmap_io_space +EXPORT_SYMBOL_GPL vmlinux 0xb872cddf ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xb884b430 kvmppc_h_put_tce +EXPORT_SYMBOL_GPL vmlinux 0xb889a2ef usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0xb88d12ea nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb892f611 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0xb8993ef3 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8d5f53b security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xb8e609e5 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0xb8eda8a1 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xb8f6dc82 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xb8fe204e __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb91007c1 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0xb91acd4d flush_vsx_to_thread +EXPORT_SYMBOL_GPL vmlinux 0xb91fb8d2 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xb93d5561 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0xb93fafd5 rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0xb945ace8 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xb99c36b1 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9dbd900 reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0xb9dcf4be tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xba0f6e0f inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0xba158769 rtas_cancel_event_scan +EXPORT_SYMBOL_GPL vmlinux 0xba16a238 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0xba2278a0 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xba229765 pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xba26f370 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba416a72 blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xba53db0a sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xba645c98 bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0xba7b6cf4 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0xba8bf6f5 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0xba8fdbca bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0xba915b87 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xba92418b rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xba9d7889 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0xba9e498d pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbabd12f5 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xbac6115c ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xbad8199d fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xbadcd89e __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xbae76441 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb3e1415 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xbb49917e ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xbb67d4f7 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbb8611a6 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xbbaa5c0b perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xbbaf2e7b tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xbbb946a0 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xbbdae490 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xbbf8722c trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xbbfb0724 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0xbc12dbc4 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc1d1220 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xbc1e996e tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xbc2905d3 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0xbc3f509f dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0xbc57450e __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbca6c5fb tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcc857b8 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcd5a2f2 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0xbcd5d2e1 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbce3d83c of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0xbcf947b3 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xbd0d4a3f devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xbd34fee0 mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xbd3bff6a mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd671048 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xbd991065 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xbd9c8750 of_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xbdb797f4 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xbdcf3c43 thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbde8dc00 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0xbe02d78c crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe212b9e dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xbe24000f tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xbe267c2a gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xbe367a02 get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xbe471cdf opal_rtc_read +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe8cd319 phy_put +EXPORT_SYMBOL_GPL vmlinux 0xbe906ec1 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbe933fa7 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbea55788 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbeb03ea5 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xbebcd541 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xbec19370 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xbec8d1c8 analyse_instr +EXPORT_SYMBOL_GPL vmlinux 0xbed3531e irq_find_matching_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xbed9888e __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xbedac660 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf0f61de of_get_dma_window +EXPORT_SYMBOL_GPL vmlinux 0xbf1309a1 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0xbf1cc04b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xbf1f821b lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0xbf3074f9 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xbf3667ba ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xbf380606 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xbf5a88d6 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0xbf6852e5 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0xbfa32025 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xbfb95de7 device_add_property_set +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfc77054 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbfd68ca6 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xbfe07ed9 kick_process +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space +EXPORT_SYMBOL_GPL vmlinux 0xc00f4113 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xc0178e97 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xc02320c6 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xc02bec3c usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xc03db5cf usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0xc065a455 cpu_core_index_of_thread +EXPORT_SYMBOL_GPL vmlinux 0xc082eb35 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc090a7fe extcon_unregister_interest +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0b072fc validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0xc0b6d12e __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0xc0e013a8 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0fb2468 i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0xc10aca1f devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc1303b47 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc180def7 vfio_add_group_dev +EXPORT_SYMBOL_GPL vmlinux 0xc1944bd5 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xc19cb4d4 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xc1a2f38e fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xc1ac7b74 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xc1afe84a crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0xc1b68f93 trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL vmlinux 0xc1def2c0 wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0xc21a45bc led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0xc2268f45 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc23c815e i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0xc243fbaa extcon_set_cable_state +EXPORT_SYMBOL_GPL vmlinux 0xc2452a8a relay_flush +EXPORT_SYMBOL_GPL vmlinux 0xc25b6409 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc2868d55 of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0xc294c4c7 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xc29ede30 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xc2a5e30a serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xc2b63e5e of_console_check +EXPORT_SYMBOL_GPL vmlinux 0xc2c25342 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc353635b rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0xc357923c pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xc36554a9 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc377b1dd ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0xc38f36d9 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xc3916daa of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0xc3a04506 devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc3c4dcc8 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0xc3c60b04 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xc3cf8ef9 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xc3d44252 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0xc3e87f64 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xc3fe2a46 regmap_update_bits_check_async +EXPORT_SYMBOL_GPL vmlinux 0xc3fe5c0f exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0xc4166a7a tps65912_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc431b12d phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xc4418087 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xc4497527 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xc4539b6d get_device +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc4674dbb dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc4913442 vfio_group_put_external_user +EXPORT_SYMBOL_GPL vmlinux 0xc4a16a61 unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xc4aa4c28 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xc4bc5ac8 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc4d78142 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xc4fe2160 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xc51c70c2 smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xc52257d8 swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0xc537488c bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xc5375d2a key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc58a1687 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xc5989065 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xc5a2c19f idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc5d0e6d3 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xc5db3d3d cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xc60191a6 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xc606cd3c boot_cpuid +EXPORT_SYMBOL_GPL vmlinux 0xc609301d usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc61f86f0 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0xc623a88b transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xc627431a alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xc63cec89 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc63e7d93 static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xc6581d57 rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc667e312 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc66e615a wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0xc679741d cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xc6853ba8 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xc68a013c rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0xc68aa252 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xc698ee82 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xc6997bc4 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6acd099 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xc6adecc5 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0xc6c69a8f opal_flash_write +EXPORT_SYMBOL_GPL vmlinux 0xc6d2749b gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xc6da7a0a __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0xc6f46e7f ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0xc6f5af22 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xc6fa2ec3 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0xc71f4bc1 pcibios_remove_pci_devices +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc738b3ec extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xc73d5589 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0xc7431027 kvm_release_hpt +EXPORT_SYMBOL_GPL vmlinux 0xc79b3083 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7fad9b2 skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0xc806f11c mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xc82260ea of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0xc835aa9b crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xc8362c09 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0xc83f79b2 blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xc855f2f5 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0xc85a2a74 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc86c86a5 eeh_pe_get_state +EXPORT_SYMBOL_GPL vmlinux 0xc8740e1d __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc8882666 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xc89542e2 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc89f8a50 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8bd23d1 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc8c55bc9 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc8df0eec devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0xc8e35ed5 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0xc901ac5f ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc91b4102 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xc91c3b27 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xc91cdf77 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xc9224e9d __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0xc92913e8 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xc9303468 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc96a741e pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xc979a2e7 devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0xc97b5cca kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level +EXPORT_SYMBOL_GPL vmlinux 0xc98f3497 thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0xc9dabfa9 bpf_prog_realloc +EXPORT_SYMBOL_GPL vmlinux 0xc9e96684 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9fe09c7 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xca081152 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0xca081385 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xca1482b0 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xca1b966b msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0xca2f132c devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xca4239c0 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca7e56af dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xca7ee6d9 get_slice_psize +EXPORT_SYMBOL_GPL vmlinux 0xca98e475 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0xcaadc59f pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcad213d3 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0xcae9421f mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0xcb065b25 swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb16e568 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xcb241187 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xcb4df0f1 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcb5ee621 hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xcb5f59ad key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xcb81567d __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xcb846d1a nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0xcb92adbc rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcc0f1009 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcc2c5d41 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xcc3105ff wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0xcc38e4d2 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xcc7b149a irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcca72ff4 virtqueue_get_used +EXPORT_SYMBOL_GPL vmlinux 0xccb04918 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccda2c1d crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xccec3885 dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0xccf72bb7 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xcd04ad1e usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xcd0843d9 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xcd0d0dd4 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xcd49ba83 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xcd5ec59d gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdd5e8de crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xcde34ce3 add_memory_resource +EXPORT_SYMBOL_GPL vmlinux 0xce151a36 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0xce264a61 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0xce394103 iommu_tce_put_param_check +EXPORT_SYMBOL_GPL vmlinux 0xce615d7b mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xce637cae posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xcea17be1 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xcea85c42 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xceb8af85 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xcec48dca nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0xcec4a0f8 regmap_fields_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xceebbde8 sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcefaf646 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xcf02657a power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xcf1b00a0 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0xcf25d020 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xcf411eb2 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0xcf47f745 platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf572883 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xcf9244dd ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfceb362 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xcff10462 blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0xcffbfad0 devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd00e7f6d platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xd01afd3f opal_tpo_read +EXPORT_SYMBOL_GPL vmlinux 0xd028ffd5 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xd0318a25 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd056d3a9 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd07f068a kvmppc_invalidate_hpte +EXPORT_SYMBOL_GPL vmlinux 0xd0890011 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0xd0b22ec0 vfio_spapr_pci_eeh_open +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0ec4936 regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xd1156678 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd11b002c usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xd14f9b40 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0xd157c11e gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd185b34b power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xd19f2b48 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd1c33a61 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xd1c89f33 device_register +EXPORT_SYMBOL_GPL vmlinux 0xd1d802f7 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd1f52aef rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xd1ff75df ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd2129d9a relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd2211f82 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xd235c4c5 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xd25205ed hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd253b7fe usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd276e446 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0xd27bb8f9 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0xd2817892 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xd2b43b98 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xd2d33df2 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0xd2f6d6d9 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xd2fbecd9 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xd317f057 __online_page_set_limits +EXPORT_SYMBOL_GPL vmlinux 0xd354b765 of_scan_bus +EXPORT_SYMBOL_GPL vmlinux 0xd36222db fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xd379e284 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xd39ad6ab ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xd3c23f65 gov_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xd3c4a8a0 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0xd3ca8f42 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xd3d15e2a devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd3d99ee2 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0xd3dea496 of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0xd3e8a440 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xd3f87ff8 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd404a937 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd411aa0d init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd4368ca5 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xd437404b devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xd4487fd5 snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd460d3d4 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xd482ed00 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0xd4877418 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0xd48fc809 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0xd49fb64b pcibios_claim_one_bus +EXPORT_SYMBOL_GPL vmlinux 0xd4bd66a0 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4df0a60 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xd4f3fb74 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xd50a31a5 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xd520d57c blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0xd536a1b5 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xd5396ea4 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xd54968c5 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xd54fdad1 sock_update_netprioidx +EXPORT_SYMBOL_GPL vmlinux 0xd5596d48 opal_xscom_write +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd56b5f64 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0xd57cbe36 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xd584171c mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xd5937835 scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0xd5961665 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5cb0412 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xd5cd4475 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xd60460d7 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd6282bae __giveup_vsx +EXPORT_SYMBOL_GPL vmlinux 0xd62df8bd ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0xd62f19df pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xd647071a __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xd66b93b0 page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd6759acb get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xd68fbfb1 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xd697d33a percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xd6a43677 opal_async_release_token +EXPORT_SYMBOL_GPL vmlinux 0xd6ad12b4 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xd6b74650 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xd6d9c42e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0xd6dfdec1 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xd6fd5330 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd7256d0a devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xd74c1121 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xd74dbd15 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0xd753732b devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xd757a2ef regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0xd76104b4 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0xd761cbcc device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd76c458b devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xd771e51a vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xd774b738 eeh_dev_check_failure +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd7a2749a dbs_check_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd7b0ae2a regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd7b484d4 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0xd7c895c2 __put_net +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7e4449e srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0xd7fc3e98 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0xd80b80b0 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd8263870 mmu_slb_size +EXPORT_SYMBOL_GPL vmlinux 0xd828a786 unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0xd835a3e2 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0xd8434366 arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0xd84673a2 __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd895f987 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xd8a6df7f dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xd8c9572d rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd8cd0fdb serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0xd8dab988 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0xd8eedf88 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0xd8f6f54f eeh_pe_reset +EXPORT_SYMBOL_GPL vmlinux 0xd8fb8497 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0xd92854fe kvmppc_clear_ref_hpte +EXPORT_SYMBOL_GPL vmlinux 0xd92988c9 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xd9336f5f early_find_capability +EXPORT_SYMBOL_GPL vmlinux 0xd933ddcd vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xd93e8e0e of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd94aa457 display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0xd94c60bd devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd96f2459 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xd97878a7 mm_iommu_preregistered +EXPORT_SYMBOL_GPL vmlinux 0xd9901483 phy_get +EXPORT_SYMBOL_GPL vmlinux 0xd9bdb66c sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xd9ca4f1a rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0xd9d73ab0 iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0xd9e34ee2 relay_open +EXPORT_SYMBOL_GPL vmlinux 0xd9e97124 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xda19f4a0 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0xda2503e5 dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0xda4f46ca task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xda5f5e64 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xda75095f usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0xda7cd6fa da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0xda90f185 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xdaba8b9b crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0xdae715e0 videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xdaedd95f bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xdaf4d548 ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaf9af8e list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0xdb22aecc tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0xdb22d9ee pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xdb3de02e subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb6d8465 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb91e05c tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xdba40792 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xdba99189 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xdbb0936a dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0xdbcd7d3c devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc04f0df sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xdc36da90 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xdc5ec5cf pwm_set_polarity +EXPORT_SYMBOL_GPL vmlinux 0xdc5f0d9c ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc711979 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdcc39671 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xdd000ce3 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0xdd003439 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xdd17d3b7 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd57e2b5 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0xdd5d780e uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xdd682a5d devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0xdd6b1f3d pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0xdd729424 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xdd9344a5 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xdd98c3b5 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xdd9fb0c4 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddcdb4dc hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xddfafd8c bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xddfc4280 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xddfe7340 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xde2ccdc2 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0xde343dee thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xde3e6692 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xde4862aa devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0xde613885 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0xde7fa4ad blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0xde90660d __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xde9e2403 memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdebda687 flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xdec8b79c usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xdedaade8 of_pci_get_host_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xdee3b833 arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0xdf0c3252 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf1a4d71 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xdf259201 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xdf3bbe23 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xdf4f5859 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xdf5b87bb blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0xdf6f6892 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xdf784449 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xdf7fd163 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0xdf9df5ec led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0xdfb85c07 component_master_add +EXPORT_SYMBOL_GPL vmlinux 0xdfcbdfd0 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xdfd95d3a sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0xdfe186a7 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0xe001f454 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe01e9422 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0xe0272742 device_rename +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe044c9f7 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xe054c216 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xe05cd567 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0xe06ce16c sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe0732217 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe0a6b4c6 of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xe0b231e0 phy_init +EXPORT_SYMBOL_GPL vmlinux 0xe0ec02aa adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xe0ec8d8d blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0xe16768e0 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c1f392 arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0xe1d12e98 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xe1d8124f regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xe1f55b3f rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xe2089dfb fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xe20a72b8 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0xe23484ea sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xe23b6342 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xe25a478d trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe295681d ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xe2adae65 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xe2b463e8 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe2d5ffba kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xe2e8423a rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe33f3bd1 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0xe3474dca nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0xe354f098 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xe37a47f0 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xe3971da0 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe3d3f669 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xe3d7750e btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0xe3f728b0 pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0xe40acda6 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xe40cc9bf devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe450b3b8 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4b6fa3f napi_by_id +EXPORT_SYMBOL_GPL vmlinux 0xe4bab9bc pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0xe4c031f8 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0xe4c578b0 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xe4d02f08 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0xe4f9d4ee of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0xe4fa23c3 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xe51c040f register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xe531290c handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0xe54ccee9 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0xe5540302 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xe5543a17 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xe5571737 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xe558e90b xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xe56805e0 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58a47b5 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe5944cbe regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xe59a710d skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xe5a976a3 securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0xe5aa9fb6 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0xe5acb5cf nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0xe5baa938 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xe5d4c157 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xe5e03e21 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xe5e1b3b4 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0xe61d514e usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0xe6431597 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe6466d39 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe66357e5 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xe6bf220f led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6ca3085 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xe6d84309 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xe6efc9d6 tpm2_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xe70f762b rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xe72239a8 blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0xe744dce5 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0xe749b0ad dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe7574c6a blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xe762df98 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xe768d444 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe7786bb5 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe784fc7a debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xe79782e6 call_filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0xe79b8460 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0xe7b8ae40 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xe7bf79fe spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0xe7f18b3c threads_per_subcore +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe8323b12 dma_request_slave_channel_reason +EXPORT_SYMBOL_GPL vmlinux 0xe840160f wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe85b36fa scom_find_parent +EXPORT_SYMBOL_GPL vmlinux 0xe85c55e7 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe884e482 nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xe89bd243 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe8b1acae gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0xe8b4b4c8 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0xe8d3a2de iommu_take_ownership +EXPORT_SYMBOL_GPL vmlinux 0xe8db3634 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xe8e4bd88 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0xe8f46963 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xe9180817 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0xe93aa826 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9506579 iommu_tce_direction +EXPORT_SYMBOL_GPL vmlinux 0xe97c7336 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xe9a2cadd shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xe9aacf74 pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0xe9af6da0 usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0xe9b990cb sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xe9c8fed4 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe9ca52ee netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9dcb02e hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xe9dee4b1 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0xe9f0345e tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xe9f36cfa input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0xe9fb7889 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea270a20 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xea2a54d4 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xea2b21c3 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea4429e2 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xea4831c7 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xea54c3a8 kvmppc_do_h_enter +EXPORT_SYMBOL_GPL vmlinux 0xea5f995e cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xea628c20 bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0xea74612b aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xea81dd14 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xeaae7ec7 nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xeab85345 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0xeaff6623 of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0xeb28800a pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeb3f7275 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0xeb7176f1 debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0xeb7d183e jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xeb8717d3 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0xeb8ae736 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xeb8b6e2d usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xebc14a6c ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xebdda5dd virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xebdf1ae5 __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xebf0fd0f file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0xebf672fb iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xec0c0932 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec2e574f pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xec631f34 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0xec87582f register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xeca02f76 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xecb31c46 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xecd9b8ea do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xece74b82 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xecea7dc2 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xed1537e8 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xed23f1d4 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xed3be118 shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0xed52720b regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0xed981a16 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xedacecc4 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0xedb37bc1 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0xedbd690f usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0xedc8fd7b tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xee028b6d driver_register +EXPORT_SYMBOL_GPL vmlinux 0xee23cbc9 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xee2e73e9 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xee34f80a of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0xee37c598 rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xee4b0227 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xee4f4096 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xee5f48ff bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xee6447b6 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xee671810 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee763832 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0xee885fd3 devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL vmlinux 0xee8ddd94 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0xee972884 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0xee9d379a crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0xeec3ad36 crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0xeee1ea07 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0xeee22cb8 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xef1db8d4 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xef4ab17e blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0xef4ee144 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef6d007a sigset_from_compat +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xef9fe7d7 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefc5ea3c ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xefc7bd85 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xefdd90bc attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xeff390e8 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xeffad603 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xf009ffb1 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf05e68c4 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0xf0725c55 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf0805437 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xf092c2ae netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xf0b6646b xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xf0cfcf70 __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0xf0e07149 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0xf0e80456 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xf0f306b9 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xf0f4adbc ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf11458df power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf11c8e1e phy_create +EXPORT_SYMBOL_GPL vmlinux 0xf12146b5 bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0xf1219481 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0xf12a3c71 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xf1487ce3 component_master_add_child +EXPORT_SYMBOL_GPL vmlinux 0xf14e4d24 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xf158f170 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0xf15fae31 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf19b9d63 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xf1a62b6f of_i8042_kbd_irq +EXPORT_SYMBOL_GPL vmlinux 0xf1b0f799 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1c7df85 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0xf1fde4dd hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf219dacf ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf23779ca virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xf2379d3e platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf24649ad isa_bridge_pcidev +EXPORT_SYMBOL_GPL vmlinux 0xf264a6e9 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xf26640c1 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xf2679f76 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0xf27458ac crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0xf276a063 wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf2a8db82 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2ad02c4 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0xf2d30dbd virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0xf2f762fc __remove_pages +EXPORT_SYMBOL_GPL vmlinux 0xf2f94ac0 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf3153ca2 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf33dc43c sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xf35ad96f cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xf37301b8 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf38185cb sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xf381ca7f crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xf3927a90 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xf3d5defc __class_register +EXPORT_SYMBOL_GPL vmlinux 0xf3d60730 rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf3f51b59 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0xf3fa9bd2 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xf40a2ad2 nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xf41cc7a7 _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0xf42796e1 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xf4350dbf ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xf452d967 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0xf453c80c dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xf479adf6 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf4974d3f iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf49c9217 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xf4ae5171 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf4fea51f mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0xf509de58 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xf5201410 inet_csk_compat_setsockopt +EXPORT_SYMBOL_GPL vmlinux 0xf5254541 vfio_group_get_external_user +EXPORT_SYMBOL_GPL vmlinux 0xf535ebfc rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xf5379771 net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf53a24ae blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf5843156 of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xf5844505 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xf58a8bbe __add_pages +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5c766d0 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0xf5d14f89 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xf5d9f3d4 __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0xf5e1797b kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0xf606bf30 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xf652eee8 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xf676f911 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xf684ced3 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xf685b43a dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xf6ba2c46 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6d8c5f4 regulator_can_change_voltage +EXPORT_SYMBOL_GPL vmlinux 0xf6e5e83f crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6f1e703 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xf70b8d9e of_get_nand_ecc_strength +EXPORT_SYMBOL_GPL vmlinux 0xf745dab8 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xf74a4e56 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xf755b7b1 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xf75e6168 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xf78961a1 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xf78b3a47 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf7930070 dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0xf796b6da ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xf7a2de26 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xf7aa46f5 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xf7c36831 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xf7eae216 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0xf7f14f28 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf83694a5 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0xf837e0eb unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xf83d6478 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0xf8542412 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf890cc67 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xf8a1f3fd wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf8a20e5f reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf8afdb5f regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xf8cc74de net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xf8cd5e6d ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xf8e398fc memstart_addr +EXPORT_SYMBOL_GPL vmlinux 0xf8e9e977 bus_register +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf9230407 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf93a106c find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xf93fb063 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf9455eb9 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0xf94d15d4 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0xf94e29a0 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf99d8f4f xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9aa270f eeh_add_sysfs_files +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9de73f6 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0xf9e5ba41 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xf9f5d2f3 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xfa041540 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0xfa119c4f __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0xfa38dfb2 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xfa79e632 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xfa85d18a scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec +EXPORT_SYMBOL_GPL vmlinux 0xfa964d9c device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xfa9c1695 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0xfab60503 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xfab78911 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xfab7bb91 devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0xfad5da60 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xfadc0934 sysfs_remove_device_from_node +EXPORT_SYMBOL_GPL vmlinux 0xfaec7156 crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfb0047f6 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb44a7a1 opal_ipmi_recv +EXPORT_SYMBOL_GPL vmlinux 0xfb46439a of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0xfb52b77d __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb720c47 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfb7a0233 of_pci_msi_chip_remove +EXPORT_SYMBOL_GPL vmlinux 0xfb7ff0b7 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0xfb98d1a4 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbd3a24d opal_message_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xfbd52abc devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xfbf3185a pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc077dad usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc3dc4b2 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xfc4035d4 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xfc6f3332 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xfc703cd6 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xfc9837dc crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0xfc9ea2dd crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0xfcaa1d38 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xfcb7ccc4 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfcc5ce94 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xfccef22c cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0xfcf95fbe ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xfcffbf50 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xfd33f706 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfd4b3353 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xfd4d3499 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0xfd801ce5 blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0xfda4670e ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xfda7dcaa component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xfdb6214d irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xfdc01fd8 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0xfdd85b69 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xfddd285f mm_iommu_ua_to_hpa +EXPORT_SYMBOL_GPL vmlinux 0xfdeab59b mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xfe1a8a6f iommu_release_ownership +EXPORT_SYMBOL_GPL vmlinux 0xfe1e89cc devres_add +EXPORT_SYMBOL_GPL vmlinux 0xfe1fa72c vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xfe2c5482 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xfe37533f blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0xfe56323d input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0xfe89e7ca __online_page_increment_counters +EXPORT_SYMBOL_GPL vmlinux 0xfe8df42a led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfea9cae1 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfece2a63 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfed24d68 arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xfeddffdb devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff1134ba of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0xff145390 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xff27d5b3 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0xff3190a8 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0xff343569 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xff3d206d rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0xff3fe9ee xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xff67ff5f extcon_register_interest +EXPORT_SYMBOL_GPL vmlinux 0xffa7c938 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xffb35dd2 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffcff460 eeh_pe_set_option +EXPORT_SYMBOL_GPL vmlinux 0xffd59fab pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xffdb76ae ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0xffe37f35 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xfff1242b sock_gen_put only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-106.129/ppc64el/generic.compiler +++ linux-raspi2-4.4.0/debian.master/abi/4.4.0-106.129/ppc64el/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu/IBM 5.4.0-6ubuntu1~16.04.5) 5.4.0 20160609 only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-106.129/ppc64el/generic.modules +++ linux-raspi2-4.4.0/debian.master/abi/4.4.0-106.129/ppc64el/generic.modules @@ -0,0 +1,4256 @@ +3c59x +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_dw +8250_mid +8255 +8255_pci +8390 +842 +842_compress +842_decompress +88pm800 +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +DAC960 +a100u2w +a3d +a8293 +aacraid +aat2870-regulator +aat2870_bl +ab3100 +ab3100-otp +ac97_bus +acard-ahci +acecad +acenic +act200l-sir +act8865-regulator +act_bpf +act_connmark +act_csum +act_gact +act_ipt +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +act_vlan +actisys-sir +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5755 +ad5764 +ad5791 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7266 +ad7280a +ad7291 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7746 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad799x +ad8366 +ad9523 +ad9832 +ad9834 +ad_sigma_delta +adc128d818 +adcxx +addi_apci_1032 +addi_apci_1500 +addi_apci_1516 +addi_apci_1564 +addi_apci_16xx +addi_apci_2032 +addi_apci_2200 +addi_apci_3120 +addi_apci_3501 +addi_apci_3xxx +addi_watchdog +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adfs +adi +adis16060 +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16204 +adis16209 +adis16220 +adis16240 +adis16260 +adis16400 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1275 +adm8211 +adm9240 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adv7511 +adv7604 +adv7842 +adv_pci1710 +adv_pci1723 +adv_pci1724 +adv_pci_dio +advansys +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +af-rxrpc +af9013 +af9033 +af_alg +af_key +af_packet_diag +affs +ah4 +ah6 +ahci +ahci_ceva +ahci_platform +ahci_qoriq +aic79xx +aic7xxx +aic94xx +aim_cdev +aim_network +aim_sound +aim_v4l2 +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airo +airspy +ak8975 +al3320a +algif_aead +algif_hash +algif_rng +algif_skcipher +ali-ircc +alim7101_wdt +altera-ci +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am53c974 +amc6821 +amd +amd5536udc +amd8111e +amdgpu +amplc_dio200 +amplc_dio200_common +amplc_dio200_pci +amplc_pc236 +amplc_pc236_common +amplc_pc263 +amplc_pci224 +amplc_pci230 +amplc_pci236 +amplc_pci263 +ams369fg06 +analog +anatop-regulator +ansi_cprng +anubis +aoe +apbps2 +apds9300 +apds9802als +apds990x +apds9960 +appledisplay +appletalk +appletouch +applicom +aquantia +ar1021_i2c +ar5523 +ar7part +arc-rawmode +arc-rimi +arc4 +arc_emac +arc_ps2 +arc_uart +arcmsr +arcnet +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arp_tables +arpt_mangle +arptable_filter +as102_fe +as3711-regulator +as3711_bl +as3722-regulator +as3935 +as5011 +asc7621 +ascot2e +asix +ast +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +ata_generic +ata_piix +atbm8830 +aten +ath +ath10k_core +ath10k_pci +ath3k +ath5k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atm +atmel +atmel-flexcom +atmel-hlcdc +atmel_mxt_ts +atmel_pci +atmtcp +atp870u +atusb +atxp1 +aty128fb +atyfb +au0828 +au8522_common +au8522_decoder +au8522_dig +aufs +auo-pixcir-ts +auo_k1900fb +auo_k1901fb +auo_k190x +auth_rpcgss +authenc +authencesn +autofs4 +avmfritz +ax25 +ax88179_178a +axp20x-pek +axp20x-regulator +axp20x_usb_power +axp288_adc +axp288_charger +axp288_fuel_gauge +b1 +b1dma +b1pci +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +bas_gigaset +batman-adv +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bch +bcm-phy-lib +bcm203x +bcm3510 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm7038_wdt +bcm7xxx +bcm87xx +bcma +bcma-hcd +bcmsysport +bd6107 +bdc +bdc_pci +be2iscsi +be2net +befs +belkin_sa +bfa +bfs +bfusb +bh1750 +bh1770glc +bh1780gli +binfmt_misc +block2mtd +blocklayoutdriver +blowfish_common +blowfish_generic +bluetooth +bluetooth_6lowpan +bma150 +bma180 +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmg160_core +bmg160_i2c +bmg160_spi +bmp085 +bmp085-i2c +bmp085-spi +bmp280 +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bnxt_en_bpo +bonding +bpa10x +bpck +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +br2684 +br_netfilter +brcmfmac +brcmsmac +brcmutil +brd +bridge +broadcom +broadsheetfb +bsd_comp +bsr +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btqca +btrfs +btrtl +btsdio +bttv +btusb +btwilink +bu21013_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c4 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +cachefiles +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +caif_usb +caif_virtio +camellia_generic +can +can-bcm +can-dev +can-gw +can-raw +cap11xx +capi +capidrv +capmode +carl9170 +carminefb +cassini +cast5_generic +cast6_generic +cast_common +catc +cb710 +cb710-mmc +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcimdas +cb_pcimdda +cc2520 +cc770 +cc770_isa +cc770_platform +cciss +ccm +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +ceph +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha20_generic +chacha20poly1305 +chaoskey +chipone_icn8318 +chipreg +chnl_net +ci_hdrc +ci_hdrc_imx +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +cirrus +cirrusfb +clip +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm36651 +cma3000_d0x +cma3000_d0x_i2c +cmac +cmdlinepart +cmm +cmtp +cnic +cobalt +cobra +coda +colibri-vf50-ts +com20020 +com20020-pci +com90io +com90xx +comedi +comedi_8254 +comedi_8255 +comedi_bond +comedi_isadma +comedi_parport +comedi_pci +comedi_test +comedi_usb +comm +configfs +contec_pci_dio +cordic +core +cp210x +cpc925_edac +cpia2 +cpsw_ale +cpu-notifier-error-inject +cramfs +crc-ccitt +crc-itu-t +crc32 +crc7 +crc8 +cryptd +crypto_user +cryptoloop +cs5345 +cs53l32a +csiostor +ctr +cts +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +cx18 +cx18-alsa +cx22700 +cx22702 +cx231xx +cx231xx-alsa +cx231xx-dvb +cx2341x +cx23885 +cx24110 +cx24113 +cx24116 +cx24117 +cx24120 +cx24123 +cx25821 +cx25821-alsa +cx25840 +cx82310_eth +cx88-alsa +cx88-blackbird +cx88-dvb +cx88-vp3054-i2c +cx8800 +cx8802 +cx88xx +cxacru +cxd2099 +cxd2820r +cxd2841er +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cxl +cxlflash +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cyclades +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da9030_battery +da9034-ts +da903x +da903x_bl +da9052-battery +da9052-hwmon +da9052-regulator +da9052_bl +da9052_onkey +da9052_tsi +da9052_wdt +da9055-hwmon +da9055-regulator +da9055_onkey +da9055_wdt +da9062-core +da9062-regulator +da9062_wdt +da9063-regulator +da9063_onkey +da9063_wdt +da9150-charger +da9150-core +da9150-fg +da9150-gpadc +da9210-regulator +da9211-regulator +dac02 +daqboard2000 +das08 +das08_isa +das08_pci +das16 +das16m1 +das1800 +das6402 +das800 +davicom +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +ddbridge +de2104x +de4x5 +decnet +deflate +defxx +denali +denali_pci +des_generic +dgap +dgnc +dht11 +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dibx000_common +digi_acceleport +digicolor-usart +diskonchip +diva_idi +diva_mnt +divacapi +divadidd +divas +dl2k +dlci +dlm +dln2 +dm-bio-prison +dm-bufio +dm-cache +dm-cache-cleaner +dm-cache-mq +dm-cache-smq +dm-crypt +dm-delay +dm-era +dm-flakey +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-verity +dm-zero +dm1105 +dm9601 +dmfe +dmm32at +dmx3191d +dn_rtmsg +dnet +docg3 +docg4 +dp83848 +dp83867 +drbd +drbg +drm +drm_kms_helper +drop_monitor +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds620 +dsbr100 +dscc4 +dss1_divert +dst +dst_ca +dstr +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x +dt3000 +dt3155 +dt9812 +dummy +dummy-irq +dummy_stm +dvb-as102 +dvb-bt8xx +dvb-core +dvb-pll +dvb-ttpci +dvb-ttusb-budget +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-af9035 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6007 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-rtl28xxu +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dvb_usb_v2 +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_wdt +dwc3 +dwc3-pci +dwc_eth_qos +dwmac-generic +dwmac-ipq806x +dwmac-lpc18xx +dwmac-meson +dwmac-rk +dwmac-socfpga +dwmac-sti +dwmac-sunxi +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +earth-pt1 +earth-pt3 +eata +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ec100 +echainiv +echo +edac_core +edt-ft5x06 +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efs +egalax_ts +ehci-platform +ehset +elan_i2c +elo +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_meta +em_nbyte +em_text +em_u32 +emac_arc +emac_rockchip +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +empeg +ems_pci +ems_usb +emu10k1-gp +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +eni +enic +epat +epia +epic100 +eql +esas2r +esd_usb2 +esi-sir +esp4 +esp6 +esp_scsi +et1011c +et131x +ethoc +evbug +exofs +extcon-adc-jack +extcon-arizona +extcon-axp288 +extcon-gpio +extcon-max14577 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +ezusb +f2fs +f75375s +f81232 +fakelb +fan53555 +farsync +faulty +fb_agm1264k-fl +fb_bd663474 +fb_ddc +fb_hx8340bn +fb_hx8347d +fb_hx8353d +fb_hx8357d +fb_ili9163 +fb_ili9320 +fb_ili9325 +fb_ili9340 +fb_ili9341 +fb_ili9481 +fb_ili9486 +fb_pcd8544 +fb_ra8875 +fb_s6d02a1 +fb_s6d1121 +fb_ssd1289 +fb_ssd1306 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_sys_fops +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fbtft_device +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdp +fdp_i2c +fealnx +ff-memless +firedtv +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fit2 +fit3 +fixed +fl512 +flexcan +flexfb +floppy +fm10k +fm801-gp +fm_drv +fmc +fmc-chardev +fmc-fakedev +fmc-trivial +fmc-write-eeprom +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fpga-mgr +freevxfs +friq +frpw +fsa9480 +fscache +fsl-edma +fsl_elbc_nand +fsl_lpuart +ft6236 +ftdi-elan +ftdi_sio +ftl +fujitsu_ts +g450_pll +g760a +g762 +g_acm_ms +g_audio +g_cdc +g_dbgp +g_ether +g_ffs +g_hid +g_mass_storage +g_midi +g_ncm +g_nokia +g_printer +g_serial +g_webcam +g_zero +gadgetfs +gamecon +gameport +garmin_gps +garp +gcm +gdmtty +gdmulte +gdmwm +gdth +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +gennvm +genwqe_card +gf128mul +gf2k +gfs2 +ghash-generic +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +gluebi +go7007 +go7007-loader +go7007-usb +goku_udc +goodix +gp2ap002a00f +gp2ap020a00f +gpio +gpio-74x164 +gpio-74xx-mmio +gpio-addr-flash +gpio-adnp +gpio-adp5520 +gpio-adp5588 +gpio-altera +gpio-amd8111 +gpio-arizona +gpio-beeper +gpio-charger +gpio-crystalcove +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-fan +gpio-generic +gpio-grgpio +gpio-ir-recv +gpio-janz-ttl +gpio-kempld +gpio-lp3943 +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-mc33880 +gpio-mcp23s08 +gpio-ml-ioh +gpio-pca953x +gpio-pcf857x +gpio-rdc321x +gpio-regulator +gpio-syscon +gpio-tps65912 +gpio-twl4030 +gpio-twl6040 +gpio-ucb1400 +gpio-viperboard +gpio-vx855 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio_backlight +gpio_keys +gpio_keys_polled +gpio_mouse +gpio_tilt_polled +gpio_wdt +gr_udc +grace +grcan +gre +grip +grip_mp +gs_fpga +gs_usb +gsc_hpdi +gspca_benq +gspca_conex +gspca_cpia1 +gspca_dtcs033 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_jl2005bcd +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stk1135 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_touptek +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtco +guillemot +gunze +hackrf +hamachi +hampshire +hangcheck-timer +hanwang +hci +hci_uart +hci_vhci +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcdrv +hdm_dim2 +hdm_i2c +hdm_usb +hdpvr +he +hexium_gemini +hexium_orion +hfc4s8s_l1 +hfc_usb +hfcmulti +hfcpci +hfcsusb +hfs +hfsplus +hi6421-pmic-core +hi6421-regulator +hi8435 +hid +hid-a4tech +hid-alps +hid-apple +hid-appleir +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-cherry +hid-chicony +hid-corsair +hid-cp2112 +hid-cypress +hid-dr +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-icade +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-lenovo +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-primax +hid-prodikeys +hid-rmi +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-isku +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-konepure +hid-roccat-kovaplus +hid-roccat-lua +hid-roccat-pyra +hid-roccat-ryos +hid-roccat-savu +hid-saitek +hid-samsung +hid-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steelseries +hid-sunplus +hid-thingm +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hidp +hih6130 +hisax +hisax_fcpcipnp +hisax_isac +hisax_st5481 +hisi504_nand +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hopper +horus3a +hostap +hostap_pci +hostap_plx +hp100 +hpfs +hpilo +hpsa +hptiop +hsi +hsi_char +hso +hsr +hsu_dma +htc-pasic3 +hts221 +hts221_i2c +hts221_spi +htu21 +huawei_cdc_ncm +hvcs +hvcserver +hwa-hc +hwa-rc +hwmon-vid +hwpoison-inject +hx8357 +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd8111 +i2c-arb-gpio-challenge +i2c-cbus-gpio +i2c-designware-core +i2c-designware-pci +i2c-designware-platform +i2c-diolan-u2c +i2c-dln2 +i2c-gpio +i2c-hid +i2c-i801 +i2c-isch +i2c-kempld +i2c-matroxfb +i2c-mpc +i2c-mux +i2c-mux-gpio +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-reg +i2c-nforce2 +i2c-ocores +i2c-parport +i2c-parport-light +i2c-pca-platform +i2c-piix4 +i2c-robotfuzz-osif +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-smbus +i2c-stub +i2c-taos-evm +i2c-tiny-usb +i2c-via +i2c-viapro +i2c-viperboard +i2c-xiic +i40e +i40evf +i5k_amb +i6300esb +i740fb +ib_addr +ib_cm +ib_core +ib_ehca +ib_ipoib +ib_iser +ib_isert +ib_mad +ib_mthca +ib_qib +ib_sa +ib_srp +ib_srpt +ib_ucm +ib_umad +ib_uverbs +ibmaem +ibmpex +ibmpowernv +ibmveth +ibmvfc +ibmvnic +ibmvscsi +ibmvscsis +icom +icp_multi +icplus +ics932s401 +ideapad_slidebar +idma64 +idmouse +idt77252 +idt_gen2 +idtcps +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +iforce +igb +igbvf +igorplugusb +iguanair +ii_pci20kc +iio-trig-interrupt +iio-trig-periodic-rtc +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili922x +ili9320 +imm +imon +ims-pcu +imx074 +imx6ul_tsc +imx_thermal +ina209 +ina2xx +industrialio +industrialio-buffer-cb +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +input-polldev +int51x1 +intel_th +intel_th_gth +intel_th_msu +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +interact +interval_tree_test +inv-mpu6050 +io_edgeport +io_ti +ioc4 +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_MASQUERADE +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_tunnel +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_wlc +ip_vs_wrr +ip_vti +ipack +ipaq +ipcomp +ipcomp6 +ipddp +iphase +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_powernv +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +ipr +ips +ipt_CLUSTERIP +ipt_ECN +ipt_MASQUERADE +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipw +ipw2100 +ipw2200 +ipx +ir-hix5hd2 +ir-jvc-decoder +ir-kbd-i2c +ir-lirc-codec +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-usb +ir-xmp-decoder +ircomm +ircomm-tty +irda +irda-usb +irlan +irnet +irtty-sir +iscsi_boot_sysfs +iscsi_target_mod +iscsi_tcp +isdn +isdn_bsdcomp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl9305 +isofs +isp116x-hcd +isp1362-hcd +isp1704_charger +isp1760 +it913x +itd1000 +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_c2 +iw_cm +iw_cxgb3 +iw_cxgb4 +iw_nes +iwl3945 +iwl4965 +iwldvm +iwlegacy +iwlmvm +iwlwifi +ix2505v +ixgb +ixgbe +ixgbevf +janz-cmodio +janz-ican3 +jc42 +jedec_probe +jffs2 +jfs +jitterentropy_rng +jmb38x_ms +jme +joydev +joydump +jr3_pci +jsa1212 +jsm +kafs +kalmia +kaweth +kbic +kbtab +kcomedilib +ke_counter +kempld-core +kempld_wdt +kernelcapi +keyspan +keyspan_pda +keyspan_remote +keywrap +kfifo_buf +khazad +kingsun-sir +kl5kusb105 +kmx61 +kobil_sct +ks0108 +ks8842 +ks8851 +ks8851_mll +ks959-sir +ksdazzle-sir +ksz884x +ktti +kvaser_pci +kvaser_usb +kvm +kvm-hv +kvm-pr +kxcjk-1013 +kxsd9 +kxtj9 +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l4f00242t03 +l64781 +lan78xx +lanai +lapb +lapbether +latch-addr-flash +lattice-ecp3-config +lcd +ld9040 +ldusb +lec +led-class-flash +leds-88pm860x +leds-adp5520 +leds-bcm6328 +leds-bcm6358 +leds-bd2802 +leds-blinkm +leds-da903x +leds-da9052 +leds-dac124s085 +leds-gpio +leds-ktd2692 +leds-lm3530 +leds-lm3533 +leds-lm355x +leds-lm3642 +leds-lp3944 +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max77693 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-pca9532 +leds-pca955x +leds-pca963x +leds-powernv +leds-pwm +leds-regulator +leds-tca6507 +leds-tlc591xx +leds-wm831x-status +leds-wm8350 +ledtrig-backlight +ledtrig-camera +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-oneshot +ledtrig-timer +ledtrig-transient +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libahci +libahci_platform +libceph +libcomposite +libcrc32c +libcxgbi +libertas +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libore +libosd +libsas +lightning +lineage-pem +linear +liquidio +lirc_bt829 +lirc_dev +lirc_imon +lirc_parallel +lirc_sasem +lirc_serial +lirc_sir +lirc_zilog +lis3l02dq +lis3lv02d +lis3lv02d_i2c +lis3lv02d_spi +litelink-sir +lkkbd +ll_temac +llc +llc2 +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3630a_bl +lm3639_bl +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lms283gf05 +lms501kf03 +lnbh25 +lnbp21 +lnbp22 +lockd +locktorture +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp8755 +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpc_ich +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +ltc2941-battery-gauge +ltc2945 +ltc2978 +ltc3589 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltr501 +ltv350qv +lv5207lp +lvstest +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m25p80 +m2m-deinterlace +m52790 +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +ma600-sir +mac-celtic +mac-centeuro +mac-croatian +mac-cyrillic +mac-gaelic +mac-greek +mac-iceland +mac-inuit +mac-roman +mac-romanian +mac-turkish +mac80211 +mac80211_hwsim +mac802154 +mac_hid +macb +macvlan +macvtap +mag3110 +magellan +mailbox-altera +mailbox-test +mantis +mantis_core +map_absent +map_funcs +map_ram +map_rom +marvell +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max1111 +max11801_ts +max1363 +max14577 +max14577_charger +max1586 +max16064 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max197 +max20751 +max2165 +max3100 +max31790 +max3421-hcd +max34440 +max517 +max5821 +max63xx_wdt +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77686 +max77693 +max77693-haptic +max77693_charger +max77802 +max8649 +max8660 +max8688 +max8903_charger +max8907 +max8907-regulator +max8925-regulator +max8925_bl +max8925_onkey +max8925_power +max8952 +max8973-regulator +max8997 +max8997_charger +max8997_haptic +max8998 +max8998_charger +mb862xxfb +mb86a16 +mb86a20s +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc44s803 +mcb +mcb-pci +mceusb +mcp2120-sir +mcp251x +mcp3021 +mcp320x +mcp3422 +mcp4531 +mcp4725 +mcp4922 +mcryptd +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md-cluster +md4 +md5-ppc +mdc800 +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-cavium +mdio-gpio +mdio-mux +mdio-mux-gpio +mdio-mux-mmioreg +mdio-octeon +mdio-thunder +mdio-xgene +me4000 +me_daq +media +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +memory-notifier-error-inject +memstick +men_z135_uart +men_z188_adc +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +metro-usb +metronomefb +mf6x4 +mga +michael_mic +micrel +microchip +microread +microread_i2c +microtek +mii +minix +mip6 +mite +mk712 +mkiss +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx90614 +mlxsw_core +mlxsw_pci +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmc_block +mmc_spi +mms114 +mn88472 +mn88473 +mos7720 +mos7840 +mostcore +moxa +mpc624 +mpl115 +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +msdos +msi001 +msi2500 +msp3400 +mspro_block +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt29f_spinand +mt312 +mt352 +mt6311-regulator +mt6397-core +mt6397-regulator +mt7601u +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd +mtd_blkdevs +mtd_dataflash +mtdblock +mtdblock_ro +mtdoops +mtdram +mtdswap +mtip32xx +mtk-sd +mtouch +multipath +multiq3 +musb_hdrc +mv_u3d_core +mv_udc +mvmdio +mvsas +mvumi +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc4005 +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxser +mxuport +myri10ge +n_gsm +n_hdlc +n_r3964 +n_tracerouter +n_tracesink +nand +nand_bch +nand_ecc +nand_ids +nandsim +national +natsemi +nau7802 +navman +nb8800 +nbd +nci +nci_spi +nci_uart +ncpfs +nct7802 +nct7904 +nd_blk +nd_btt +nd_pmem +ne2k-pci +neofb +net1080 +net2272 +net2280 +netconsole +netjet +netlink_diag +netrom +netup-unidvb +netxen_nic +newtonkbd +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_ipv4 +nf_nat_ipv6 +nf_nat_irc +nf_nat_masquerade_ipv4 +nf_nat_masquerade_ipv6 +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_redirect +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_synproxy_core +nf_tables +nf_tables_arp +nf_tables_bridge +nf_tables_inet +nf_tables_ipv4 +nf_tables_ipv6 +nf_tables_netdev +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfcwilink +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_log +nfnetlink_queue +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat_ipv4 +nft_chain_nat_ipv6 +nft_chain_route_ipv4 +nft_chain_route_ipv6 +nft_compat +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_exthdr +nft_hash +nft_limit +nft_log +nft_masq +nft_masq_ipv4 +nft_masq_ipv6 +nft_meta +nft_meta_bridge +nft_nat +nft_queue +nft_rbtree +nft_redir +nft_redir_ipv4 +nft_redir_ipv6 +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +ni_6527 +ni_65xx +ni_660x +ni_670x +ni_at_a2150 +ni_at_ao +ni_atmio +ni_atmio16d +ni_labpc +ni_labpc_common +ni_labpc_isadma +ni_labpc_pci +ni_pcidio +ni_pcimio +ni_tio +ni_tiocmd +ni_usb6501 +nicpf +nicstar +nicvf +nilfs2 +niu +nlmon +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +nosy +notifier-error-inject +nouveau +nozomi +nps_enet +ns558 +ns83820 +nsc-ircc +ntb +ntb_netdev +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +null_blk +nvidiafb +nvme +nvmem_core +nx-compress +nx-compress-powernv +nx-compress-pseries +nxp-nci +nxp-nci_i2c +nxp-ptn3460 +nxt200x +nxt6000 +objlayoutdriver +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +of_mmc_spi +of_xilinx_wdt +ofpart +ohci-platform +old_belkin-sir +omap4-keypad +omfs +omninet +on20 +on26 +onenand +opal-prd +opencores-kbd +openvswitch +oprofile +opt3001 +opticon +option +or51132 +or51211 +orinoco +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +osd +osdblk +osst +oti6858 +ov2640 +ov5642 +ov6650 +ov7640 +ov7670 +ov772x +ov9640 +ov9740 +overlay +oxu210hp-hcd +p54common +p54pci +p54spi +p54usb +p8022 +p8023 +pa12203001 +palmas-pwrbutton +palmas-regulator +pandora_bl +panel +panel-lg-lg4573 +panel-samsung-ld9040 +panel-samsung-s6e8aa0 +panel-sharp-lq101r1sx01 +panel-simple +parade-ps8622 +paride +parkbd +parport +parport_ax88796 +parport_pc +parport_serial +pata_ali +pata_amd +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_of_platform +pata_oldpiix +pata_opti +pata_optidma +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sch +pata_serverworks +pata_sil680 +pata_sis +pata_sl82c105 +pata_triflex +pata_via +pc300too +pcap-regulator +pcap_keys +pcap_ts +pcbc +pcd +pcf50633 +pcf50633-adc +pcf50633-backlight +pcf50633-charger +pcf50633-gpio +pcf50633-input +pcf50633-regulator +pcf8574_keypad +pcf8591 +pch_udc +pci +pci-stub +pci200syn +pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad +pcmda12 +pcmmio +pcmuio +pcnet32 +pcrypt +pcspkr +pcwd_pci +pcwd_usb +pd +pda_power +pdc_adma +peak_pci +peak_usb +pegasus +penmount +percpu_test +pf +pfuze100-regulator +pg +phantom +phonet +phram +phy-bcm-kona-usb2 +phy-exynos-usb2 +phy-gpio-vbus-usb +phy-isp1301 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-tahvo +phy-tusb1210 +physmap +physmap_of +pixcir_i2c_ts +pkcs7_test_key +pktcdvd +pktgen +pl2303 +plat-ram +plat_nand +platform_lcd +plip +plusb +pluto2 +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm80xx +pm8941-wled +pmbus +pmbus_core +pmc551 +pmcraid +pn533 +pn544 +pn544_i2c +pn_pep +poly1305_generic +port100 +powermate +powernv-rng +powernv_flash +powr1220 +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_parport +pptp +prism2_usb +ps2mult +pseries-rng +pseries_energy +psmouse +psnap +pt +pulsedlight-lidar-lite-v2 +pvrusb2 +pwc +pwm-beeper +pwm-fan +pwm-fsl-ftm +pwm-lp3943 +pwm-pca9685 +pwm-regulator +pwm-twl +pwm-twl-led +pwm_bl +pxa27x_udc +qcaspi +qcaux +qcom-spmi-iadc +qcom-spmi-temp-alarm +qcom-spmi-vadc +qcom_spmi-regulator +qcserial +qed +qede +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qm1d1c0042 +qmi_wwan +qnx4 +qnx6 +qsemi +qt1010 +qt1070 +qt2160 +quatech2 +quota_tree +quota_v1 +quota_v2 +qxl +r128 +r592 +r6040 +r8152 +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r852 +r8712u +r8723au +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-bcm2048 +radio-i2c-si470x +radio-keene +radio-ma901 +radio-maxiradio +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-shark +radio-si476x +radio-tea5764 +radio-usb-si470x +radio-usb-si4713 +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ramoops +raw +rbd +rbtree_test +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-asus-pc39 +rc-asus-ps3-100 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-delock-61959 +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-dvbsky +rc-em-terratec +rc-encore-enltv +rc-encore-enltv-fm53 +rc-encore-enltv2 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-pctv-sedna +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-reddo +rc-snapstream-firefly +rc-streamzap +rc-su3000 +rc-tbs-nec +rc-technisat-ts35 +rc-technisat-usb2 +rc-terratec-cinergy-c-pci +rc-terratec-cinergy-s2-hd +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-total-media-in-hand-02 +rc-trekstor +rc-tt-1500 +rc-twinhan-dtv-cab-ci +rc-twinhan1027 +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rc5t583-regulator +rdc321x-southbridge +rdma_cm +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +redboot +redrat3 +reed_solomon +regmap-spmi +regulator-haptic +reiserfs +remoteproc +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd_ftl +rfkill-gpio +rfkill-regulator +rio-scan +rio500 +rionet +rivafb +rj54n1cb0c +rk808 +rk808-regulator +rmd128 +rmd160 +rmd256 +rmd320 +rn5t618 +rn5t618-regulator +rn5t618_wdt +rndis_host +rndis_wlan +rocket +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpadlpar_io +rpaphp +rpcrdma +rpcsec_gss_krb5 +rpr0521 +rrpc +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt5033 +rt5033-regulator +rt5033_battery +rt61pci +rt73usb +rt9455_charger +rtas_flash +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab3100 +rtc-abx80x +rtc-as3722 +rtc-bq32k +rtc-bq4802 +rtc-cmos +rtc-da9052 +rtc-da9055 +rtc-da9063 +rtc-ds1286 +rtc-ds1305 +rtc-ds1307 +rtc-ds1343 +rtc-ds1347 +rtc-ds1374 +rtc-ds1390 +rtc-ds1511 +rtc-ds1553 +rtc-ds1672 +rtc-ds1685 +rtc-ds1742 +rtc-ds2404 +rtc-ds3232 +rtc-ds3234 +rtc-em3027 +rtc-fm3130 +rtc-generic +rtc-hid-sensor-time +rtc-hym8563 +rtc-isl12022 +rtc-isl12057 +rtc-isl1208 +rtc-lp8788 +rtc-m41t80 +rtc-m41t93 +rtc-m41t94 +rtc-m48t35 +rtc-m48t59 +rtc-m48t86 +rtc-max6900 +rtc-max6902 +rtc-max77686 +rtc-max77802 +rtc-max8907 +rtc-max8925 +rtc-max8997 +rtc-max8998 +rtc-mc13xxx +rtc-mcp795 +rtc-msm6242 +rtc-mt6397 +rtc-palmas +rtc-pcap +rtc-pcf2123 +rtc-pcf2127 +rtc-pcf50633 +rtc-pcf85063 +rtc-pcf8523 +rtc-pcf8563 +rtc-pcf8583 +rtc-r9701 +rtc-rc5t583 +rtc-rk808 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rv8803 +rtc-rx4581 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-snvs +rtc-stk17ta8 +rtc-tps6586x +rtc-tps65910 +rtc-tps80031 +rtc-twl +rtc-v3020 +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtc-zynqmp +rtc_cmos_setup +rtd520 +rti800 +rti802 +rtl2830 +rtl2832 +rtl2832_sdr +rtl8150 +rtl8187 +rtl8188ee +rtl818x_pci +rtl8192c-common +rtl8192ce +rtl8192cu +rtl8192de +rtl8192ee +rtl8192se +rtl8723-common +rtl8723ae +rtl8723be +rtl8821ae +rtl8xxxu +rtl_pci +rtl_usb +rtllib +rtllib_crypt_ccmp +rtllib_crypt_tkip +rtllib_crypt_wep +rtlwifi +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rx51_battery +rxkad +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3fb +s3fwrn5 +s3fwrn5_i2c +s526 +s5h1409 +s5h1411 +s5h1420 +s5m8767 +s626 +s6e63m0 +s921 +saa6588 +saa6752hs +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7706h +safe_serial +salsa20_generic +samsung-sxgbe +sata_inic162x +sata_mv +sata_nv +sata_promise +sata_qstor +sata_sil +sata_sil24 +sata_sis +sata_svw +sata_sx4 +sata_uli +sata_via +sata_vsc +savage +savagefb +sbp_target +sbs-battery +sc16is7xx +sc92031 +sca3000 +scanlog +sch_atm +sch_cbq +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_fq +sch_fq_codel +sch_gred +sch_hfsc +sch_hhf +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_pie +sch_plug +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_tbf +sch_teql +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +sctp +sctp_probe +sdhci +sdhci-of-arasan +sdhci-of-at91 +sdhci-of-esdhc +sdhci-of-hlwd +sdhci-pci +sdhci-pltfm +sdhci_f_sdh30 +sdio_uart +seed +sensorhub +seqiv +ser_gigaset +serial2002 +serio_raw +sermouse +serpent_generic +serport +ses +sfc +sh_veu +sha1-powerpc +shark2 +sht15 +sht21 +shtc1 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sil164 +sir-dev +sis +sis190 +sis5595 +sis900 +sisfb +sisusbvga +sit +sja1000 +sja1000_isa +sja1000_platform +skd +skfp +skge +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +slcan +slip +slram +sm501 +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smb347-charger +smipcie +smm665 +smsc +smsc-ircc2 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsmdtv +smssdio +smsusb +snd +snd-ac97-codec +snd-ad1889 +snd-ak4113 +snd-ak4114 +snd-ak4xxx-adda +snd-ali5451 +snd-aloop +snd-als300 +snd-als4000 +snd-atiixp +snd-atiixp-modem +snd-au8810 +snd-au8820 +snd-au8830 +snd-aw2 +snd-azt3328 +snd-bcd2000 +snd-bebob +snd-bt87x +snd-ca0106 +snd-cmipci +snd-cs4281 +snd-cs46xx +snd-cs8427 +snd-ctxfi +snd-darla20 +snd-darla24 +snd-dice +snd-dummy +snd-echo3g +snd-emu10k1 +snd-emu10k1-synth +snd-emu10k1x +snd-emux-synth +snd-ens1370 +snd-ens1371 +snd-es1938 +snd-es1968 +snd-firewire-digi00x +snd-firewire-lib +snd-firewire-tascam +snd-fireworks +snd-fm801 +snd-gina20 +snd-gina24 +snd-hda-codec +snd-hda-codec-analog +snd-hda-codec-ca0110 +snd-hda-codec-ca0132 +snd-hda-codec-cirrus +snd-hda-codec-cmedia +snd-hda-codec-conexant +snd-hda-codec-generic +snd-hda-codec-hdmi +snd-hda-codec-idt +snd-hda-codec-realtek +snd-hda-codec-si3054 +snd-hda-codec-via +snd-hda-core +snd-hda-intel +snd-hdsp +snd-hdspm +snd-hrtimer +snd-hwdep +snd-i2c +snd-ice1712 +snd-ice1724 +snd-ice17xx-ak4xxx +snd-indigo +snd-indigodj +snd-indigodjx +snd-indigoio +snd-indigoiox +snd-intel8x0 +snd-intel8x0m +snd-isight +snd-korg1212 +snd-layla20 +snd-layla24 +snd-lola +snd-lx6464es +snd-maestro3 +snd-mia +snd-mixart +snd-mixer-oss +snd-mona +snd-mpu401 +snd-mpu401-uart +snd-mtpav +snd-mts64 +snd-nm256 +snd-opl3-lib +snd-opl3-synth +snd-oxfw +snd-oxygen +snd-oxygen-lib +snd-pcm +snd-pcm-dmaengine +snd-pcm-oss +snd-pcxhr +snd-portman2x4 +snd-pt2258 +snd-rawmidi +snd-riptide +snd-rme32 +snd-rme96 +snd-rme9652 +snd-sb-common +snd-scs1x +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-soc-ac97 +snd-soc-adau1701 +snd-soc-ak4104 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-alc5623 +snd-soc-core +snd-soc-cs35l32 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42xx8 +snd-soc-cs42xx8-i2c +snd-soc-cs4349 +snd-soc-es8328 +snd-soc-fsl-asrc +snd-soc-fsl-esai +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-gtm601 +snd-soc-imx-audmux +snd-soc-pcm1681 +snd-soc-pcm1792a-codec +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-rt5631 +snd-soc-sgtl5000 +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-simple-card +snd-soc-spdif-rx +snd-soc-spdif-tx +snd-soc-ssm2602 +snd-soc-ssm2602-i2c +snd-soc-ssm2602-spi +snd-soc-ssm4567 +snd-soc-sta32x +snd-soc-sta350 +snd-soc-sti-sas +snd-soc-tas2552 +snd-soc-tas5086 +snd-soc-tas571x +snd-soc-tfa9879 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic3x +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8962 +snd-soc-wm8978 +snd-soc-xtfpga-i2s +snd-sonicvibes +snd-timer +snd-trident +snd-ua101 +snd-usb-6fire +snd-usb-audio +snd-usb-caiaq +snd-usb-hiface +snd-usb-line6 +snd-usb-pod +snd-usb-podhd +snd-usb-toneport +snd-usb-usx2y +snd-usb-variax +snd-usbmidi-lib +snd-util-mem +snd-via82xx +snd-via82xx-modem +snd-virmidi +snd-virtuoso +snd-vx-lib +snd-vx222 +snd-ymfpci +snic +soc_button_array +soc_camera +soc_camera_platform +soc_mediabus +softdog +softing +solo6x10 +solos-pci +sony-btf-mpx +soundcore +sp2 +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +speedfax +speedtch +spi-altera +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-gpio +spi-lm70llp +spi-nor +spi-oc-tiny +spi-pxa2xx-platform +spi-sc18is602 +spi-tle62x0 +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spl +splat +spmi +sr9700 +sr9800 +ssb +ssb-hcd +ssd1307fb +ssfdc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +sstfb +ssu100 +st +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_spi +st_magn +st_magn_i2c +st_magn_spi +st_pressure +st_pressure_i2c +st_pressure_spi +st_sensors +st_sensors_i2c +st_sensors_spi +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +ste_modem_rproc +stex +stinger +stir4200 +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm_console +stm_core +stmmac +stmmac-platform +stmpe-keypad +stmpe-ts +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv6110 +stv6110x +sun4i-codec +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +svgalib +sx8 +sx8654 +sx9500 +sym53c8xx +symbolserial +synaptics_i2c +synaptics_i2c_rmi4 +synaptics_usb +synclink +synclink_gt +synclinkmp +syscopyarea +sysfillrect +sysimgblt +sysv +t1pci +t5403 +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +target_core_user +tc3589x-keypad +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tcs3414 +tcs3472 +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tda998x +tdfx +tdfxfb +tdo24m +tea +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tef6862 +tehuti +tekram-sir +teranetics +test-hexdump +test-kstrtox +test-string_helpers +test_bpf +test_firmware +test_module +test_power +test_printf +test_static_key_base +test_static_keys +test_udelay +test_user_copy +tgr192 +thmc50 +thunder_bgx +thunderbolt +ti-adc081c +ti-adc128s052 +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_dac7512 +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timeriomem-rng +tipc +tlan +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmp006 +tmp102 +tmp103 +tmp401 +tmp421 +toim3232-sir +torture +toshsd +touchit213 +touchright +touchwin +tpci200 +tpm-rng +tpm_atmel +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tps40422 +tps51632-regulator +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65090-charger +tps65090-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps65218-regulator +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps80031-regulator +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsi568 +tsi57x +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2x7x_core +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tvaudio +tveeprom +tvp5150 +tw2804 +tw68 +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-madc-hwmon +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6040-vibra +twofish_common +twofish_generic +typhoon +u132-hcd +u_ether +u_serial +uartlite +uas +ubi +ubifs +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +uda1342 +udc-core +udc-xilinx +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufshcd +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_fsl_elbc_gpcm +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uli526x +ulpi +umc +umem +ums-alauda +ums-cypress +ums-datafab +ums-eneub6250 +ums-freecom +ums-isd200 +ums-jumpshot +ums-karma +ums-onetouch +ums-realtek +ums-sddr09 +ums-sddr55 +ums-usbat +unix_diag +upd64031a +upd64083 +us5182d +usb-serial-simple +usb-storage +usb3503 +usb8xxx +usb_8dev +usb_debug +usb_f_acm +usb_f_ecm +usb_f_ecm_subset +usb_f_eem +usb_f_fs +usb_f_hid +usb_f_mass_storage +usb_f_midi +usb_f_ncm +usb_f_obex +usb_f_phonet +usb_f_printer +usb_f_rndis +usb_f_serial +usb_f_ss_lb +usb_f_uac1 +usb_f_uac2 +usb_f_uvc +usb_gigaset +usb_wwan +usbatm +usbdux +usbduxfast +usbduxsigma +usbhid +usbip-core +usbip-host +usbkbd +usblcd +usbled +usblp +usbmisc_imx +usbmon +usbmouse +usbnet +usbserial +usbsevseg +usbtest +usbtmc +usbtouchscreen +usbtv +usbvision +usdhi6rol0 +userio +userspace-consumer +ushc +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-dv-timings +v4l2-flash-led-class +v4l2-mem2mem +vcan +vcnl4000 +ves1820 +ves1x93 +veth +vf610_adc +vga16fb +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_net +vhost_scsi +via +via-ircc +via-rhine +via-sdmmc +via-velocity +via686a +videobuf-core +videobuf-dma-sg +videobuf-dvb +videobuf-vmalloc +videobuf2-core +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-dvb +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videodev +vim2m +viperboard +viperboard_adc +virt-dma +virtio-gpu +virtio-rng +virtio_input +virtio_scsi +virtual +visor +vitesse +vivid +vlsi_ir +vmac +vme_pio2 +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmx-crypto +vmxnet3 +vp27smpx +vport-geneve +vport-gre +vport-vxlan +vrf +vringh +vsock +vsxxxaa +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxge +vxlan +vz89x +w1-gpio +w1_bq27000 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1_ds2781 +w1_ds28e04 +w1_smem +w1_therm +w5100 +w5300 +w6692 +w83781d +w83791d +w83792d +w83793 +w83795 +w83977af_ir +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +walkera0701 +wanxl +warrior +wbsd +wcn36xx +wd719x +wdrtas +wdt87xx_i2c +wdt_pci +whc-rc +whci +whci-hcd +whiteheat +wil6210 +wimax +winbond-840 +windfarm_core +wire +wishbone-serial +wl1251 +wl1251_sdio +wl1251_spi +wl1273-core +wl12xx +wl18xx +wlcore +wlcore_sdio +wlcore_spi +wm831x-dcdc +wm831x-hwmon +wm831x-isink +wm831x-ldo +wm831x-on +wm831x-ts +wm831x_backup +wm831x_bl +wm831x_power +wm831x_wdt +wm8350-hwmon +wm8350-regulator +wm8350_power +wm8350_wdt +wm8400-regulator +wm8739 +wm8775 +wm8994-core +wm8994-irq +wm8994-regmap +wm8994-regulator +wm97xx-ts +wp512 +wusb-cbaf +wusb-wa +wusbcore +x25 +x25_asy +x_tables +xc4000 +xc5000 +xcbc +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_ipcomp +xfrm_user +xfs +xgifb +xhci-plat-hcd +xilinx-tpg +xilinx-video +xilinx-vtc +xilinx_ps2 +xilinx_uartps +xillybus_core +xillybus_of +xillybus_pcie +xor +xpad +xr_usb_serial_common +xsens_mt +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +xt_NETMAP +xt_NFLOG +xt_NFQUEUE +xt_RATEEST +xt_REDIRECT +xt_SECMARK +xt_TCPMSS +xt_TCPOPTSTRIP +xt_TEE +xt_TPROXY +xt_TRACE +xt_addrtype +xt_bpf +xt_cgroup +xt_cluster +xt_comment +xt_connbytes +xt_connlabel +xt_connlimit +xt_connmark +xt_conntrack +xt_cpu +xt_dccp +xt_devgroup +xt_dscp +xt_ecn +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_ipcomp +xt_iprange +xt_ipvs +xt_l2tp +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_nat +xt_nfacct +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_realm +xt_recent +xt_sctp +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_tcpudp +xt_time +xt_u32 +xtkbd +xts +xusbatm +xz_dec_test +yam +yealink +yellowfin +yurex +zaurus +zavl +zcommon +zd1201 +zd1211rw +zforce_ts +zfs +zhenhua +zl10036 +zl10039 +zl10353 +zl6100 +zlib +znvpair +zpios +zr364xx +zram +zunicode +zynq-fpga only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-106.129/s390x/generic +++ linux-raspi2-4.4.0/debian.master/abi/4.4.0-106.129/s390x/generic @@ -0,0 +1,8997 @@ +EXPORT_SYMBOL arch/s390/oprofile/oprofile 0x06a93370 sampler_cpu_buffer +EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe +EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble +EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL crypto/mcryptd 0x841c582a mcryptd_arm_flusher +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x049ace30 rdma_addr_find_smac_by_sgid +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x2ae448bb rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x31b0c25a rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3d57c86d rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xbf7dc5c7 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xd206f3c9 rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xdf81984b rdma_addr_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x005d7ffe ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x01b91955 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x106657cd ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x209a2ea5 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2a778252 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x30c9c721 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3619378d ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x381f5096 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x398d3fcb ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x73ff1da1 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x994e910e ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9e42bbc2 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xab0f2c0a ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb55d6a04 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb9fc92dd ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc94bc275 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe4d22149 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfef1c82c ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x035fd04d ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04170557 ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05bf5006 ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06802c6c rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06830b9a ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07d7be07 ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a73236a ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c8e9a52 ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f82abd2 ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x122dd3e5 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12760160 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17219b44 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x197a0414 ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e143c29 ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21413468 ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x224280b4 ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26082caf ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a20eaaf ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b05dd52 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33b7558c ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x399a4621 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b425ed9 ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e91a0fa ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x423fedb1 ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x429ad33d ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4549270f ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4656417c ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53dd8392 ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55a03290 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x562a0eaa ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b290ee1 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ce9cbd7 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ee70353 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63126281 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x635bd122 ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70ff5f12 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71d20111 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71f4cfc2 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c92ca14 ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c9aa476 ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d71778b ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fcfe2ad ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x826d5201 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88d313ba ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89d84ca6 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c3bd85d ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8da81791 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x905e49ce ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x948e49e3 ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f03ce63 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0a75c4b ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa23afa20 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2c1eb13 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2df6a01 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9370510 ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa94246f5 ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad615612 ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafcc5c4f ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb23761a2 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb45982b5 ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb74567e8 ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbaee538b ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbbee9498 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd60871b ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb81c83a ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce0e0944 ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd56bf850 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd59464ce ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd663c26d ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd86425df ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc896711 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe064a883 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0659014 ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe22c9e4b ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5ab097e ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xebad27f4 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec839589 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef662226 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3591e46 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3888748 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf94fbdc0 ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf96fc9de ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfbf00ca4 ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc5b79be ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe2a1ca3 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x067bf3d8 ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x0fe4875b ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2afba85b ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x3d671476 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x530c5109 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x5c51bb07 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6a01a975 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6ad24baa ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7479ab16 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x74e357c3 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xa4e9ccdd ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xbb4b41d6 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xbd709fc2 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x0ea4eec9 ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x1ea6f23c ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x27afd6fc ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x44ae989f ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x4d472eca ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x7ecfeeab ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x88fbab7b ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x94ac94b1 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xb088d5e9 ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xd00c7c2e ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xd1739db2 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4b3892a9 ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xca082432 ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0293b24f iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0361839b iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x17f45c00 iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4dd0e5d7 iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5bb86a18 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x63cbc625 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x69c5c5f8 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7cc5a48d iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x83491d0a iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa493e4b1 iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb187e8b6 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc2a5ef1d iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc47447c8 iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe1345380 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe9d0fd09 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x02260145 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x07c01095 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x11d78f66 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1233a386 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1f7c7681 rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x244237a0 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x304596fa rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6cc3db27 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x70aff7f5 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x74f34291 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7e122de2 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x81602b19 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x85bd5db1 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8fc7ff24 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa2d3ad0d rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xabfdb902 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb39a2334 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbd7c3ddf rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd163c7bb rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe2c61770 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xebab5bdb rdma_connect +EXPORT_SYMBOL drivers/md/bcache/bcache 0x013e8678 closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0x0187bb6a __bch_bset_search +EXPORT_SYMBOL drivers/md/bcache/bcache 0x0224fc32 bch_btree_keys_alloc +EXPORT_SYMBOL drivers/md/bcache/bcache 0x10279740 closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0x18290c90 bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x313ff088 bch_bset_init_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x3b42669b bch_bkey_try_merge +EXPORT_SYMBOL drivers/md/bcache/bcache 0x594d1f90 bch_bset_build_written_tree +EXPORT_SYMBOL drivers/md/bcache/bcache 0x6dc1194a bch_bset_fix_invalidated_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0x79711460 bch_btree_iter_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7d2e3553 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7e232679 bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0x946ab452 closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0xbbf73b16 bch_btree_keys_free +EXPORT_SYMBOL drivers/md/bcache/bcache 0xcb47df76 bch_btree_iter_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0xd3fa7004 closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0xdf6f8461 bch_btree_sort_partial +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up +EXPORT_SYMBOL drivers/md/bcache/bcache 0xf8446678 bch_btree_sort_lazy +EXPORT_SYMBOL drivers/md/bcache/bcache 0xf920f854 bch_btree_keys_init +EXPORT_SYMBOL drivers/md/dm-bufio 0x268682d2 dm_bufio_forget +EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL drivers/md/dm-log 0x2f34484b dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x5c77cb47 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x65234f39 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x9c6ab8bc dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x02cd8aa6 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x0acd83cd dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x297b0b32 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x2f5d4ab9 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x4cedf23c dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x8a6a0429 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/raid456 0x9929a3c3 raid5_set_cache_size +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19f1e79d mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x233651b2 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29498218 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c6bf170 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c922468 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41da8cc8 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5002ed8d mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c0811bd mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f0701bc mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f25257c mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62132f04 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x656d89eb mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68340772 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d8bc3b2 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7138b994 mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x753b41e9 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x765bacf9 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c65f295 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88863fea mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8da8ec4e mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f7cf62a mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95289f55 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96387043 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x990dc6d6 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99a952da mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9fe84121 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5e43c54 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa93008b5 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae9a4c7f mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfa8d6cb mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2faae74 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc34798ef mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3ddd24c mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc449fe73 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2886420 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf12fd3cf mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2f73863 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf45abf96 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0857aabd mlx5_get_flow_table_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e419e64 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb7287e mlx5_del_flow_table_entry +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1bc1899b mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d65788b mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x392edebd mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a83e420 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f02c3bc mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58d376ad mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a160f2b mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60dda37f mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61a6bcbe mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63d4c5da mlx5_modify_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64932b05 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ecf1cc2 mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x765f33c7 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7effc107 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84f4476d mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89cb6119 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b1fbcc9 mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d962b1d mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9df4f3ad mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9fc11568 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa384497e mlx5_query_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad0eed62 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae4485a2 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb39111c mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf4fb70c mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc278317b mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc43e0fbf mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5c7fcf0 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc65e6d88 mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc70c42c mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3d81f17 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe625be44 mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6af33e4 mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea37ddc5 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb21a007 mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef4d46f4 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0b41b0d mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc728a49 mlx5_add_flow_table_entry +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd78ead9 mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x216eb1d1 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2360a424 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x443843bd mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x92a7c438 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe1e043ae mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee8e0771 mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xeff3a65c mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf3a6e097 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf426ec27 mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/phy/fixed_phy 0x83a92253 fixed_phy_update_state +EXPORT_SYMBOL drivers/net/phy/libphy 0x0473e481 phy_connect +EXPORT_SYMBOL drivers/net/phy/libphy 0x04820abf phy_mac_interrupt +EXPORT_SYMBOL drivers/net/phy/libphy 0x098b48a8 mdiobus_read +EXPORT_SYMBOL drivers/net/phy/libphy 0x0a373a52 phy_device_free +EXPORT_SYMBOL drivers/net/phy/libphy 0x0e6f3bf8 phy_connect_direct +EXPORT_SYMBOL drivers/net/phy/libphy 0x101cc1c6 phy_disconnect +EXPORT_SYMBOL drivers/net/phy/libphy 0x137c7ee3 phy_ethtool_set_eee +EXPORT_SYMBOL drivers/net/phy/libphy 0x1435a77b phy_print_status +EXPORT_SYMBOL drivers/net/phy/libphy 0x15d8d87c phy_device_create +EXPORT_SYMBOL drivers/net/phy/libphy 0x1813bd40 phy_stop_interrupts +EXPORT_SYMBOL drivers/net/phy/libphy 0x1c791f35 phy_start_aneg +EXPORT_SYMBOL drivers/net/phy/libphy 0x229192f8 phy_find_first +EXPORT_SYMBOL drivers/net/phy/libphy 0x24749234 genphy_read_status +EXPORT_SYMBOL drivers/net/phy/libphy 0x2743bc5c phy_start +EXPORT_SYMBOL drivers/net/phy/libphy 0x27b386f3 phy_mii_ioctl +EXPORT_SYMBOL drivers/net/phy/libphy 0x2ce7c13b genphy_suspend +EXPORT_SYMBOL drivers/net/phy/libphy 0x2dda03a0 phy_stop +EXPORT_SYMBOL drivers/net/phy/libphy 0x2ffb0bc7 __mdiobus_register +EXPORT_SYMBOL drivers/net/phy/libphy 0x341be4d2 phy_driver_unregister +EXPORT_SYMBOL drivers/net/phy/libphy 0x3f77e274 mdiobus_write +EXPORT_SYMBOL drivers/net/phy/libphy 0x4c8d22ef phy_register_fixup +EXPORT_SYMBOL drivers/net/phy/libphy 0x4cd8a23d mdiobus_scan +EXPORT_SYMBOL drivers/net/phy/libphy 0x525a0cbf genphy_soft_reset +EXPORT_SYMBOL drivers/net/phy/libphy 0x553f9432 phy_attach +EXPORT_SYMBOL drivers/net/phy/libphy 0x555dc9b5 genphy_aneg_done +EXPORT_SYMBOL drivers/net/phy/libphy 0x55f9dfa4 genphy_restart_aneg +EXPORT_SYMBOL drivers/net/phy/libphy 0x5cc6d9b2 phy_drivers_register +EXPORT_SYMBOL drivers/net/phy/libphy 0x5ee3fcc9 phy_device_remove +EXPORT_SYMBOL drivers/net/phy/libphy 0x5f8735b7 phy_set_max_speed +EXPORT_SYMBOL drivers/net/phy/libphy 0x601813b1 phy_drivers_unregister +EXPORT_SYMBOL drivers/net/phy/libphy 0x631d5696 phy_ethtool_get_eee +EXPORT_SYMBOL drivers/net/phy/libphy 0x6e72c29d phy_read_mmd_indirect +EXPORT_SYMBOL drivers/net/phy/libphy 0x81855532 phy_ethtool_sset +EXPORT_SYMBOL drivers/net/phy/libphy 0x890c3d34 genphy_setup_forced +EXPORT_SYMBOL drivers/net/phy/libphy 0x8abd10bd phy_register_fixup_for_id +EXPORT_SYMBOL drivers/net/phy/libphy 0x8c0f5398 phy_ethtool_get_wol +EXPORT_SYMBOL drivers/net/phy/libphy 0x8c9242f8 phy_resume +EXPORT_SYMBOL drivers/net/phy/libphy 0x9db648a3 phy_register_fixup_for_uid +EXPORT_SYMBOL drivers/net/phy/libphy 0xa0dc0b58 get_phy_device +EXPORT_SYMBOL drivers/net/phy/libphy 0xa67ce359 phy_write_mmd_indirect +EXPORT_SYMBOL drivers/net/phy/libphy 0xa764d61e phy_ethtool_set_wol +EXPORT_SYMBOL drivers/net/phy/libphy 0xaafbffd8 phy_attach_direct +EXPORT_SYMBOL drivers/net/phy/libphy 0xac8fa763 genphy_config_init +EXPORT_SYMBOL drivers/net/phy/libphy 0xb234c923 phy_start_interrupts +EXPORT_SYMBOL drivers/net/phy/libphy 0xb311556b mdio_bus_type +EXPORT_SYMBOL drivers/net/phy/libphy 0xb52aa767 phy_init_hw +EXPORT_SYMBOL drivers/net/phy/libphy 0xc1e4ad39 phy_detach +EXPORT_SYMBOL drivers/net/phy/libphy 0xc222dda2 phy_init_eee +EXPORT_SYMBOL drivers/net/phy/libphy 0xc2c847f9 mdiobus_read_nested +EXPORT_SYMBOL drivers/net/phy/libphy 0xc5b561f2 genphy_resume +EXPORT_SYMBOL drivers/net/phy/libphy 0xc74c4801 genphy_update_link +EXPORT_SYMBOL drivers/net/phy/libphy 0xc9658336 phy_ethtool_gset +EXPORT_SYMBOL drivers/net/phy/libphy 0xcc7b0f06 phy_suspend +EXPORT_SYMBOL drivers/net/phy/libphy 0xcddaf632 mdiobus_unregister +EXPORT_SYMBOL drivers/net/phy/libphy 0xd3196997 phy_device_register +EXPORT_SYMBOL drivers/net/phy/libphy 0xd3ac7d46 genphy_config_aneg +EXPORT_SYMBOL drivers/net/phy/libphy 0xe0213eb4 phy_get_eee_err +EXPORT_SYMBOL drivers/net/phy/libphy 0xe6d0f2ce phy_driver_register +EXPORT_SYMBOL drivers/net/phy/libphy 0xedd137c6 mdiobus_alloc_size +EXPORT_SYMBOL drivers/net/phy/libphy 0xf096c131 mdiobus_free +EXPORT_SYMBOL drivers/net/phy/libphy 0xf3e78dd1 mdiobus_write_nested +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x4da29fc2 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x5e9d4775 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x1c223b9d cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x88f7292b cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x802c7fd1 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xd4320561 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xf57fbe8a xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/vitesse 0xef004596 vsc824x_add_skew +EXPORT_SYMBOL drivers/net/team/team 0x052069da team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x1841049b team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x1f56372e team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x3c890972 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x5a4b7860 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0xd113c4d7 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xe8035fe1 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0xfbf540aa team_options_unregister +EXPORT_SYMBOL drivers/pps/pps_core 0xcf915ac0 pps_lookup_dev +EXPORT_SYMBOL drivers/pps/pps_core 0xd5f8f4f9 pps_register_source +EXPORT_SYMBOL drivers/pps/pps_core 0xd8944586 pps_event +EXPORT_SYMBOL drivers/pps/pps_core 0xfcda872d pps_unregister_source +EXPORT_SYMBOL drivers/ptp/ptp 0x0f25d41c ptp_clock_unregister +EXPORT_SYMBOL drivers/ptp/ptp 0x6e43d8a3 ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp 0x92aa16d5 ptp_clock_index +EXPORT_SYMBOL drivers/ptp/ptp 0x9745f3fc ptp_clock_event +EXPORT_SYMBOL drivers/ptp/ptp 0xd197e798 ptp_clock_register +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x040f8b70 dasd_int_handler +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x08502b2e dasd_sleep_on_immediatly +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x0b5a8b8d dasd_log_sense_dbf +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x0ef73135 dasd_debug_area +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x10933d7b dasd_add_request_tail +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x1fd81a93 dasd_kmalloc_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x26348b20 dasd_sleep_on +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x3b204bc5 dasd_free_erp_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x3b396740 dasd_set_target_state +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x558dd989 dasd_diag_discipline_pointer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x58f4d910 dasd_cancel_req +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x5e5313d7 dasd_device_set_timer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x694e72db dasd_alloc_erp_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x6ce6989d dasd_sleep_on_interruptible +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x78b5ab5c dasd_kfree_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x8641eb5c dasd_reload_device +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x94b762fd dasd_schedule_device_bh +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x9d6902f0 dasd_enable_device +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xa351d3ae dasd_default_erp_postaction +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xb4dcb5de dasd_sleep_on_queue +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xb861f0d3 dasd_add_request_head +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xbcf07089 dasd_default_erp_action +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xbd485c98 dasd_log_sense +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xc0a070ad dasd_block_set_timer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xc12f79cc dasd_smalloc_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xc3dd6c43 dasd_eer_write +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xcd4ed569 dasd_start_IO +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xd4b1d4a8 dasd_kick_device +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xd7ab956c dasd_term_IO +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xdb1732e1 dasd_block_clear_timer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xdca9b2eb dasd_schedule_block_bh +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xe0a97392 dasd_sfree_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xe3443290 dasd_device_clear_timer +EXPORT_SYMBOL drivers/s390/char/hmcdrv 0x08e57a2c hmcdrv_ftp_do +EXPORT_SYMBOL drivers/s390/char/hmcdrv 0x3198b5cb hmcdrv_ftp_startup +EXPORT_SYMBOL drivers/s390/char/hmcdrv 0x83a6e87f hmcdrv_ftp_probe +EXPORT_SYMBOL drivers/s390/char/hmcdrv 0xba68949c hmcdrv_ftp_shutdown +EXPORT_SYMBOL drivers/s390/char/tape 0x0758ae8a tape_generic_remove +EXPORT_SYMBOL drivers/s390/char/tape 0x1266e2bd tape_std_mtrew +EXPORT_SYMBOL drivers/s390/char/tape 0x12acf804 tape_std_mteom +EXPORT_SYMBOL drivers/s390/char/tape 0x237f0468 tape_std_mtfsr +EXPORT_SYMBOL drivers/s390/char/tape 0x2546c415 tape_state_verbose +EXPORT_SYMBOL drivers/s390/char/tape 0x2aec050b tape_std_unassign +EXPORT_SYMBOL drivers/s390/char/tape 0x34e8955b tape_generic_probe +EXPORT_SYMBOL drivers/s390/char/tape 0x3851d95a tape_std_mterase +EXPORT_SYMBOL drivers/s390/char/tape 0x3cff000e tape_dump_sense_dbf +EXPORT_SYMBOL drivers/s390/char/tape 0x3e3c6344 tape_std_assign +EXPORT_SYMBOL drivers/s390/char/tape 0x4984b674 tape_generic_pm_suspend +EXPORT_SYMBOL drivers/s390/char/tape 0x49d7d36d tape_std_mtsetblk +EXPORT_SYMBOL drivers/s390/char/tape 0x4d7cba1f tape_std_mtbsfm +EXPORT_SYMBOL drivers/s390/char/tape 0x4e5f6358 tape_core_dbf +EXPORT_SYMBOL drivers/s390/char/tape 0x57ce99ec tape_cancel_io +EXPORT_SYMBOL drivers/s390/char/tape 0x5e0b9ecf tape_std_display +EXPORT_SYMBOL drivers/s390/char/tape 0x609830d5 tape_std_mtcompression +EXPORT_SYMBOL drivers/s390/char/tape 0x61f7a4e2 tape_do_io +EXPORT_SYMBOL drivers/s390/char/tape 0x66deb66c tape_op_verbose +EXPORT_SYMBOL drivers/s390/char/tape 0x6ada9390 tape_std_mtreten +EXPORT_SYMBOL drivers/s390/char/tape 0x70edbdc1 tape_med_state_set +EXPORT_SYMBOL drivers/s390/char/tape 0x77a6ccb9 tape_std_mtfsf +EXPORT_SYMBOL drivers/s390/char/tape 0x796ded61 tape_alloc_request +EXPORT_SYMBOL drivers/s390/char/tape 0x7a2057a1 tape_std_read_block +EXPORT_SYMBOL drivers/s390/char/tape 0x7cd8ea16 tape_std_mtload +EXPORT_SYMBOL drivers/s390/char/tape 0x84c07da8 tape_state_set +EXPORT_SYMBOL drivers/s390/char/tape 0x84cbba7c tape_free_request +EXPORT_SYMBOL drivers/s390/char/tape 0x85b9ded5 tape_get_device +EXPORT_SYMBOL drivers/s390/char/tape 0x89399935 tape_std_process_eov +EXPORT_SYMBOL drivers/s390/char/tape 0x8b63540c tape_std_mtnop +EXPORT_SYMBOL drivers/s390/char/tape 0x8ca8f1d4 tape_std_mtfsfm +EXPORT_SYMBOL drivers/s390/char/tape 0x96296456 tape_std_mtbsr +EXPORT_SYMBOL drivers/s390/char/tape 0x98867e5a tape_std_mtweof +EXPORT_SYMBOL drivers/s390/char/tape 0x9d24fe54 tape_std_write_block +EXPORT_SYMBOL drivers/s390/char/tape 0xa3d72ec9 tape_std_read_block_id +EXPORT_SYMBOL drivers/s390/char/tape 0xaa1a1ed7 tape_std_mtreset +EXPORT_SYMBOL drivers/s390/char/tape 0xad261b1f tape_std_mtoffl +EXPORT_SYMBOL drivers/s390/char/tape 0xb16b71d6 tape_std_read_backward +EXPORT_SYMBOL drivers/s390/char/tape 0xb35ebdce tape_generic_offline +EXPORT_SYMBOL drivers/s390/char/tape 0xb4745276 tape_do_io_interruptible +EXPORT_SYMBOL drivers/s390/char/tape 0xc2f0ac87 tape_std_mtbsf +EXPORT_SYMBOL drivers/s390/char/tape 0xd6865898 tape_generic_online +EXPORT_SYMBOL drivers/s390/char/tape 0xe8db840b tape_mtop +EXPORT_SYMBOL drivers/s390/char/tape 0xec3f28f3 tape_std_mtunload +EXPORT_SYMBOL drivers/s390/char/tape 0xf10ffaf9 tape_do_io_async +EXPORT_SYMBOL drivers/s390/char/tape 0xf7e0b3fb tape_put_device +EXPORT_SYMBOL drivers/s390/char/tape_34xx 0xa1676ca9 tape_34xx_dbf +EXPORT_SYMBOL drivers/s390/char/tape_3590 0x6cba9afb tape_3590_dbf +EXPORT_SYMBOL drivers/s390/char/tape_class 0x05635adf register_tape_dev +EXPORT_SYMBOL drivers/s390/char/tape_class 0x7d1f3752 unregister_tape_dev +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x23d94066 ccwgroup_driver_unregister +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x3857feed ccwgroup_set_offline +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x3b2e88f9 ccwgroup_create_dev +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x58802e81 ccwgroup_probe_ccwdev +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x7d652851 ccwgroup_driver_register +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x8dbf32a8 ccwgroup_set_online +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xcfe93c4c ccwgroup_remove_ccwdev +EXPORT_SYMBOL drivers/s390/cio/qdio 0x2af0598d qdio_start_irq +EXPORT_SYMBOL drivers/s390/cio/qdio 0x5362a156 qdio_get_next_buffers +EXPORT_SYMBOL drivers/s390/cio/qdio 0x8fda5e51 qdio_stop_irq +EXPORT_SYMBOL drivers/s390/crypto/ap 0x047d8320 ap_driver_register +EXPORT_SYMBOL drivers/s390/crypto/ap 0x0ffc9609 ap_recv +EXPORT_SYMBOL drivers/s390/crypto/ap 0x427fc302 ap_cancel_message +EXPORT_SYMBOL drivers/s390/crypto/ap 0x5e21cb82 ap_send +EXPORT_SYMBOL drivers/s390/crypto/ap 0x77247c5e ap_bus_force_rescan +EXPORT_SYMBOL drivers/s390/crypto/ap 0x9fcd07e2 ap_queue_message +EXPORT_SYMBOL drivers/s390/crypto/ap 0xd5e90454 ap_domain_index +EXPORT_SYMBOL drivers/s390/crypto/ap 0xe428efca ap_flush_queue +EXPORT_SYMBOL drivers/s390/crypto/ap 0xf117805b ap_driver_unregister +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x178e2dff zcrypt_device_unregister +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x2b612e6c zcrypt_device_alloc +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x309dedeb zcrypt_msgtype_request +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x4d9d817c zcrypt_msgtype_unregister +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x62c75121 zcrypt_device_put +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x67cedaeb zcrypt_rescan_req +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x69acfe2c zcrypt_device_register +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x6e5cd836 zcrypt_msgtype_register +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x83fbf76b zcrypt_device_free +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x85c53bff zcrypt_msgtype_release +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x8b169161 zcrypt_device_get +EXPORT_SYMBOL drivers/s390/net/ctcm 0x40b3051a ctc_mpc_dealloc_ch +EXPORT_SYMBOL drivers/s390/net/ctcm 0x56f42138 ctc_mpc_alloc_channel +EXPORT_SYMBOL drivers/s390/net/ctcm 0x812fa936 ctc_mpc_establish_connectivity +EXPORT_SYMBOL drivers/s390/net/ctcm 0xf5440dc6 ctc_mpc_flow_control +EXPORT_SYMBOL drivers/s390/net/fsm 0x0e10e441 fsm_modtimer +EXPORT_SYMBOL drivers/s390/net/fsm 0x1b770365 kfree_fsm +EXPORT_SYMBOL drivers/s390/net/fsm 0x3805a87b fsm_getstate_str +EXPORT_SYMBOL drivers/s390/net/fsm 0x57b18322 fsm_deltimer +EXPORT_SYMBOL drivers/s390/net/fsm 0x7af9f0a2 fsm_settimer +EXPORT_SYMBOL drivers/s390/net/fsm 0xc6696799 fsm_addtimer +EXPORT_SYMBOL drivers/s390/net/fsm 0xdcbc5aa7 init_fsm +EXPORT_SYMBOL drivers/s390/net/qeth_l2 0x3688f5b3 qeth_osn_deregister +EXPORT_SYMBOL drivers/s390/net/qeth_l2 0xb8401e00 qeth_osn_assist +EXPORT_SYMBOL drivers/s390/net/qeth_l2 0xe9f6fdac qeth_osn_register +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x40960119 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x68a8b0c9 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x74116f00 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa7a6e8e7 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb16b7617 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xba4ad816 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xbe262a38 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc6d21a54 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd6591bbe fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xdd564a20 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe1190154 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe88e3d01 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x006aa3b2 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x09f3345c fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x13c074f4 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x150b95ab fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1a22e3a8 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1bbbd4be fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1ea6ba87 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2d3254d1 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x32657f51 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x44bedfd7 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4c61f662 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4da5bc12 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x50acad89 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5303afb0 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5b0c4aaf fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6297a443 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x63de36d0 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x67219dce libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x67a9582c fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x72b340fd fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x745e6fbb fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7a49a900 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7b22bbbc fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ce72f74 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x87176f6a fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9321834c fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9698cf26 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x99970a57 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9fd1ebed fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa70195f3 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb3876112 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb4ef744b fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbcc6735f fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbf4c89d5 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc1286f18 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc1355e9d fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc25acf5a fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc45cfe46 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc6b45c40 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc76ccf2f fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd1cef02b fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd7409983 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdf1a6101 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe250d57a fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5f458da fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe63cb47e fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xea09eec7 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeb618e08 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeeb4db23 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeef754e3 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x16fa1028 sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x30062e4f sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8d5adaa5 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xb47b95b7 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x025f76a8 osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x14fbcfaa osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x152c2810 osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1f71fcbc osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x22ec0c1a osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2b31a6d1 osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3580d477 osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x38af60c8 osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3a904a4f osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5ed75494 osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x62300e28 osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x697b2035 osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6dc77c81 osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6fe87828 osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7e9e8f02 osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x82050e0e osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x83fb97e2 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x83fd534f osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x90dcc46e osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa45e6260 osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb2b0790d osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb316a7ea osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb8dc39bc osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbafddcad osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc0822c39 osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc27e77be osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc9170c7a osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcb40aeb6 osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xce63c37a osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd2733398 osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd38bc005 osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd5ebd7be osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd8ac51dd osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdbde928b osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xedc98f89 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfb5f6b8a osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/osd 0x1caf2d1b osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0x485bb3b8 osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x556aa364 osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5bbd9f48 osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x81c367c5 osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0xc1009a24 osduld_register_test +EXPORT_SYMBOL drivers/scsi/raid_class 0x3a0857a1 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0x86808912 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0xa20f3426 raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0e93141f fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1a6e6af2 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4e734525 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x53ad2a16 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7cc94a8e fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8086cf9e fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8165e797 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9e95ab11 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa1badac8 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa3a78b0d fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xacffff02 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe7254686 scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf72fd7fa fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x059b66e6 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x08381998 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2fd0f313 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x30c5063a scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x46df2715 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x49a990d9 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x567bd7c7 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x57b1f53b sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5ad21a44 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5e33e2fa sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5fb4e66f sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x633822a6 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x63d5755b sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x75b78348 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x78a8705c sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7db36136 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x87a03902 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8c741d8e scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbf62b9e7 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc032d87f sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc37f3440 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcbef604c sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd67b42c9 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd8ac3c84 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xda6dcc93 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe15deb36 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xec95ece3 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf16cef47 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf98d1537 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x39a10cf5 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x5cb86f96 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x9d28d9ec spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa2c4cb24 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xd81173c0 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x1be34130 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x3ada403a srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xe3b6c10d srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xf37b0b3b srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0622610e iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x08b459ca iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0c863ac8 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0d1d8658 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x11605ac9 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x17d637e2 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x26498f68 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x336de11b iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3803c8d4 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x418dd53c iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x41fd58b7 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4a7c9fcb iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5e03b5e1 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5f18b67e iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6589f519 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7942d604 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x891130b7 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x893799ff iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x949e3d7f iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9989abfe iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa2e88998 iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa48343ae iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa757812b iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xae5092ae iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaeecc389 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb766c37a iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe87e995c iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe885b20e iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/target_core_mod 0x0009a798 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x01c111ce transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x02dfc5bb target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0x04f7712e sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x08d17fee spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x09731803 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x0b11e81b target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0b36bb77 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x0c397325 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x17fcdd0d transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x1a47e86e target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x1abb4d16 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x1f771821 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x259fcfce spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x266be1f7 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x2e6c82e3 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x33859cf6 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x401085b3 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x46acf568 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x4a7ec2a2 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x4cb3b5d3 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x54cc350b target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x5cebe414 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x616aeeef sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x63ce2cba transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x64ecdc6a passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x6918afca target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x69623212 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x736c62b8 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x74a607af transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x768dac60 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x775c0dba core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x7863098b transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a9a669b transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x7b6bb806 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x811cd91c target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x84a88c9f target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x8688db62 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x8873f626 target_get_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x88fa5583 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x893ebfd5 target_put_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x8c06aea7 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x8ec07d5f passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x924b0ba7 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x931cea0f target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x9517c1f9 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x951c91ca core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x985b3215 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x98d32142 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x9c667e57 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x9c7d8728 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0xa473ae77 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa70040ba transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xa7bdaf7a core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xa7d0f51b transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xa99c0e62 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xafeefb4f target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0xb163afd6 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xb626aa13 target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xbd0e5fa9 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xbd28f9da transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xbd576f62 transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xc5fb913e transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0xd037e0f6 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xe6503995 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xeb4f6198 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xed26d297 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf32ca61b core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xff7a12e6 target_nacl_find_deve +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x1b1b985a uart_match_port +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x2a1e178d uart_get_divisor +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x3460d87e uart_resume_port +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x86ea3242 uart_register_driver +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x889498cc uart_suspend_port +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x95b5e074 uart_write_wakeup +EXPORT_SYMBOL drivers/tty/serial/serial_core 0xa510ed9a uart_add_one_port +EXPORT_SYMBOL drivers/tty/serial/serial_core 0xa5181252 uart_remove_one_port +EXPORT_SYMBOL drivers/tty/serial/serial_core 0xc86d3e99 uart_get_baud_rate +EXPORT_SYMBOL drivers/tty/serial/serial_core 0xecb5f852 uart_unregister_driver +EXPORT_SYMBOL drivers/tty/serial/serial_core 0xee6334a2 uart_update_timeout +EXPORT_SYMBOL drivers/vhost/vringh 0x0617468c vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user +EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x15a80695 vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x3fc7a1da vringh_iov_pull_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x42898ba2 vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x42903a3b vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x4b40c951 vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user +EXPORT_SYMBOL fs/exofs/libore 0x1691bfa0 ore_remove +EXPORT_SYMBOL fs/exofs/libore 0x1c19f960 ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x2d9a359b ore_write +EXPORT_SYMBOL fs/exofs/libore 0x33cce235 ore_create +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x95f14e1b ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0x9e290bd6 ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xc13bdc52 ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0xc938530d ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0xc98a2ec5 ore_read +EXPORT_SYMBOL fs/exofs/libore 0xcbdc9476 extract_attr_from_ios +EXPORT_SYMBOL fs/fscache/fscache 0x03d00432 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x08862d81 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x0e2ea6df fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x13cf69b6 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x14118657 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x1696e617 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x18a7ca3b __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x1c6df1dd fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x1c8ee730 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x221e980f __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x28951ec9 fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x32b6e28f fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x35bdf87c __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x3c970f53 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x465ae332 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x47513a1f fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x48deffe2 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x4927d82e fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x4dd747b5 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x5aca7ce7 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x6e128015 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x6ef86a3d fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x749e742e fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x7df56cdd fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x81e5826e __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x83dbf321 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x8554a6d9 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x875d3f8b __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0x88386f09 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x894ffe37 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x901887c2 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0xb7e9fac3 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0xc1c75ec3 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xc542b7a6 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xc74003f9 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0xc8191069 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xd294d0c4 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xd74ef5f7 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xdd80e2ca __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xeab965c9 __fscache_uncache_page +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x1da1cada qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x310727a5 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x567de8d6 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x93a462f9 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xfc7abcaf qtree_write_dquot +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-ccitt 0x651c2313 crc_ccitt +EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table +EXPORT_SYMBOL lib/crc-itu-t 0x276c7e62 crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0x6b96fbac crc7_be +EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc8 0x3e77b340 crc8 +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c +EXPORT_SYMBOL lib/lru_cache 0x0f6f0fdb lc_index_of +EXPORT_SYMBOL lib/lru_cache 0x17c6b1e1 lc_del +EXPORT_SYMBOL lib/lru_cache 0x52857213 lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0x5c460ad5 lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x6bb10f2d lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0x6f1d0c3b lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0x7869961b lc_set +EXPORT_SYMBOL lib/lru_cache 0x79c87149 lc_get +EXPORT_SYMBOL lib/lru_cache 0x88713f97 lc_create +EXPORT_SYMBOL lib/lru_cache 0x955d4873 lc_committed +EXPORT_SYMBOL lib/lru_cache 0xbbc7a78d lc_put +EXPORT_SYMBOL lib/lru_cache 0xc1a43316 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0xc3a4ca05 lc_destroy +EXPORT_SYMBOL lib/lru_cache 0xe4a98afa lc_try_get +EXPORT_SYMBOL lib/lru_cache 0xebae3022 lc_reset +EXPORT_SYMBOL lib/lru_cache 0xff3f1db8 lc_find +EXPORT_SYMBOL lib/lru_cache 0xffb12208 lc_is_used +EXPORT_SYMBOL lib/lz4/lz4_compress 0x32ec514e lz4_compress +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xab08068b lz4hc_compress +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL net/802/p8022 0x2242ae9c unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0xf23a0ce9 register_8022_client +EXPORT_SYMBOL net/802/psnap 0x0e542e21 register_snap_client +EXPORT_SYMBOL net/802/psnap 0xa4d5d84e unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x0a2cbdc7 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x0b57b773 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x0cd0b84c p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x14b6e539 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x1546d0c0 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x18c4fc22 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x2176926b p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x23ead7e3 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x35a0bf19 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x3a572c0c p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x3da06d9a p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x4ba97508 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x51f05ec9 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x53153bad p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x559397f6 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x5a86ee91 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x63ba05a2 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x646d01bc p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x6710dd05 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x6dfd57f8 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x7520c34c p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x78fe62e3 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x80bb847f v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x897b48ae p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x8ceb970c p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x9117c02b p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x9bee7182 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x9e2ba351 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xae523359 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xbe656d64 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xc0d1a657 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0xc41aac0a p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xca39d127 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd21c7466 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xd4fe1fc0 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xd7aee6d4 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xd8c95a6f p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xe06edf65 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0xe10d09b5 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xf1364ae5 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xf27cb58b p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xf37d6739 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/bridge/bridge 0x917593e4 br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x095a9a50 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x27f5666d ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x82549285 ebt_register_table +EXPORT_SYMBOL net/ceph/libceph 0x01a2ad19 ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0x03692086 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x05c0d251 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x067c5c4d ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x0781e43e ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0f9f2170 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x1445a9c1 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x150bd443 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x15ff69f4 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x18caf35d ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x19e1fa73 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x1e2c1b23 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x1f8efb1b osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x25dd0ba2 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x27dd3754 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x2dcf4536 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x2fc13dc8 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x32f6952c osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x394900ef ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x3a681eb6 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3c020989 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x3cc306d2 ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0x3d42fefd ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part +EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0x44053808 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x45e283ec ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x4856f103 ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0x48e1b47f ceph_monc_request_next_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x4a69fadc ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0x4bf0271e ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0x4cdc39a7 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x4dc64701 ceph_oloc_oid_to_pg +EXPORT_SYMBOL net/ceph/libceph 0x4fcb70ee ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x50a76d31 ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0x511b241b __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x551a4792 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5f947752 ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0x61c588d5 ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x6687b48d ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x7241dd2a ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x79919e07 ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x7c2a5ed3 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x7c552b77 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x7c5d7e6d ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x817c7eea ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x8300bc95 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x8977535d ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x8cd4934c ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x8df1aa66 ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0x92b5801a ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x98160423 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9b61eead ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x9f471e1e ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa1cb2376 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0xa4c83f9f ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xa5bb86a6 ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0xa6791826 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xa8980573 ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0xa93e7677 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0xabe95487 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xaee59d01 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb2752f24 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb550ef84 ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xb9ae51fa osd_req_op_watch_init +EXPORT_SYMBOL net/ceph/libceph 0xba0cd32b ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xbbeab1f6 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0xbe5aa413 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xbf0c64da osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0xc11386be osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xc1f544bb ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xc82bf51c ceph_monc_do_get_version +EXPORT_SYMBOL net/ceph/libceph 0xc8bfb282 ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0xc97baae8 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd51d1c1a ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xd74b6ff4 ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0xdb05c143 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xdf1650bd ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xe1dd206a ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0xe5b5f4df ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0xe71387a7 osd_req_op_cls_response_data +EXPORT_SYMBOL net/ceph/libceph 0xe8656faf ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xec958524 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xecdde440 ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0xedfb8e5a osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xf1c49fab ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xf309e8ec ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0xf731367e osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xf7c05609 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xf89d6dcb ceph_con_keepalive +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x1a06eb11 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xfed9f691 dccp_syn_ack_timeout +EXPORT_SYMBOL net/ipv4/fou 0x3d3b47f7 gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0x72395c37 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x934af5fb gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x9912bc6e fou_build_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x07ecb683 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x2adb8a79 ip_tunnel_encap +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x57fb5e87 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xc95a4059 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xe32fbaa1 ip_tunnel_dst_reset_all +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xef1e2955 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x07c4a1a4 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x5321653a arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x8e7c89b1 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x48923be3 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x4a1fb4aa ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x6f3302a4 ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x10f834ac xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0x4b8ba979 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x71147565 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6a148b43 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7bc965d8 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x86a98b38 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xbad3d676 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x7efe3157 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xaa8db64e ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xad2bd599 ip6t_register_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x0fbcecd0 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0x54df3fa7 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x8075f97f xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xba4048bb xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/l2tp/l2tp_core 0xb4015ba2 l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0xb3c113e3 l2tp_ioctl +EXPORT_SYMBOL net/llc/llc 0x2b839344 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x7ee3bc41 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x94d8fd81 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0xb2e4a674 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0xbefeda22 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xdf41989b llc_sap_open +EXPORT_SYMBOL net/llc/llc 0xe2ffc14f llc_sap_close +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0c290bca ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0dc98728 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x311f92fb register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x449611be unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4861e5b3 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x894752c1 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x97663fcd ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa233d0c9 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa5f12d13 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb137886a ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb448cf3e ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc9a8524e ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcafd0ef5 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcc4c79be ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x19dcef2e __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x6039ab6d nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x882eb22d __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x0402d23f nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/nf_nat 0x058fae38 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x5c998520 nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0x94f1438c nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xfcdbff04 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xfd155ce6 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/x_tables 0x22430b2a xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x253e8b44 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x5333ab66 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x762249c5 xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0x8f4358ab xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x984d163d xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xcda38094 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xcedc8bfa xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0xd216ac4a xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xef5bd8ff xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0xf04c636e xt_unregister_matches +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x0c01d811 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1c565891 rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x2d49594f rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4f4dd860 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x66192cb7 rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x6f36d73e rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x761065a6 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8938a15b rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8e112f35 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x945d2c75 rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xa92850b0 rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb26b0e40 rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb3d22658 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd576e14b rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf4ad3438 rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/sctp/sctp 0x1928b6ea sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x0961a5a9 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x5f26f954 gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xbb379cb5 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/sunrpc 0x282ce39a svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x735cb918 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0x900d9d7e xdr_restrict_buflen +EXPORT_SYMBOL vmlinux 0x0010e948 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x002f061f compat_sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x0070cd1f queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x0073ca48 kill_block_super +EXPORT_SYMBOL vmlinux 0x008641df tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0x009d8a02 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x00a68022 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x00abed75 __wait_on_bit +EXPORT_SYMBOL vmlinux 0x00bc800b try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x00e6adb2 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x00f4a223 _ebc_toupper +EXPORT_SYMBOL vmlinux 0x00f8ae8b bioset_create +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x013f0281 ccw_device_tm_start_key +EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer +EXPORT_SYMBOL vmlinux 0x0185a7d7 sclp_pci_deconfigure +EXPORT_SYMBOL vmlinux 0x018d2bff param_get_ulong +EXPORT_SYMBOL vmlinux 0x019070a0 md_done_sync +EXPORT_SYMBOL vmlinux 0x01e9a7c3 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x01ebcb7b lg_global_unlock +EXPORT_SYMBOL vmlinux 0x01ec7e98 skb_find_text +EXPORT_SYMBOL vmlinux 0x01f1e5f5 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x01f5daff unregister_md_personality +EXPORT_SYMBOL vmlinux 0x01fa92fc posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0x0216a6ee may_umount_tree +EXPORT_SYMBOL vmlinux 0x021a1ac5 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x022f16df scsi_target_resume +EXPORT_SYMBOL vmlinux 0x02441f33 ccw_device_tm_start_timeout_key +EXPORT_SYMBOL vmlinux 0x024bf827 radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x025443d9 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x02561274 alloc_disk_node +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x0271b6aa security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02a8e63e tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x02b8f25c buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x02ca22a8 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0x02ce53b3 free_user_ns +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02f171c8 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x030de082 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x0310a977 do_SAK +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x03356d6c dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x03498156 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x0352d9ad skb_copy +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x03746fed nf_hooks_needed +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x0388a5d8 idr_init +EXPORT_SYMBOL vmlinux 0x038e5f9e udp6_csum_init +EXPORT_SYMBOL vmlinux 0x03a17df7 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x03b15674 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x03cd5d0d tsb_init +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x04224a92 kill_bdev +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x042612fa inet6_offloads +EXPORT_SYMBOL vmlinux 0x0435f26d lowcore_ptr +EXPORT_SYMBOL vmlinux 0x0436a92e rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x046c447c security_inode_permission +EXPORT_SYMBOL vmlinux 0x046c8dc0 set_binfmt +EXPORT_SYMBOL vmlinux 0x04810ea5 down_killable +EXPORT_SYMBOL vmlinux 0x04927208 cpu_active_mask +EXPORT_SYMBOL vmlinux 0x049b26c4 fsnotify_get_group +EXPORT_SYMBOL vmlinux 0x04a17678 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x04bc547c pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x04cfadbf tty_port_destroy +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x050b2102 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x052c606c __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x05351c2e scsi_init_io +EXPORT_SYMBOL vmlinux 0x05568224 sk_receive_skb +EXPORT_SYMBOL vmlinux 0x0560dc39 register_gifconf +EXPORT_SYMBOL vmlinux 0x057c4ea5 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0x058dfaa6 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x05934f30 d_walk +EXPORT_SYMBOL vmlinux 0x05b04cb9 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x05b1ff3e pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x05cca74d dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0x05d59a7a tcp_sendpage +EXPORT_SYMBOL vmlinux 0x05dfe463 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x05ed7d6d __frontswap_load +EXPORT_SYMBOL vmlinux 0x05f3d198 mutex_trylock +EXPORT_SYMBOL vmlinux 0x05f872e1 bit_waitqueue +EXPORT_SYMBOL vmlinux 0x06026d3b sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x060abd72 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x0641d8de nf_setsockopt +EXPORT_SYMBOL vmlinux 0x066e8345 lockref_get +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x06a485f2 __krealloc +EXPORT_SYMBOL vmlinux 0x06aec6a5 console_stop +EXPORT_SYMBOL vmlinux 0x06ccd967 get_mm_exe_file +EXPORT_SYMBOL vmlinux 0x06d99939 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x06ea7e78 nf_log_packet +EXPORT_SYMBOL vmlinux 0x06ed7b77 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x070589de alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x070e902f file_path +EXPORT_SYMBOL vmlinux 0x07134e12 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x071c2c5d blk_put_queue +EXPORT_SYMBOL vmlinux 0x07297511 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x07600625 dev_activate +EXPORT_SYMBOL vmlinux 0x079cd1b0 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free +EXPORT_SYMBOL vmlinux 0x07a9ef84 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x07b850bf thaw_bdev +EXPORT_SYMBOL vmlinux 0x07bc85f2 follow_pfn +EXPORT_SYMBOL vmlinux 0x07c20ee0 configfs_register_group +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07d52b5e sock_no_accept +EXPORT_SYMBOL vmlinux 0x07e91433 nf_unregister_hook +EXPORT_SYMBOL vmlinux 0x07f4146c inet6_getname +EXPORT_SYMBOL vmlinux 0x08044d6f idr_find_slowpath +EXPORT_SYMBOL vmlinux 0x0821fcc0 compat_ip_setsockopt +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x0835cf21 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x08707cdd simple_transaction_set +EXPORT_SYMBOL vmlinux 0x088a1518 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x08a62f81 param_ops_charp +EXPORT_SYMBOL vmlinux 0x08ace69e register_external_irq +EXPORT_SYMBOL vmlinux 0x08c60e76 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x08d13eb0 set_cached_acl +EXPORT_SYMBOL vmlinux 0x09576f93 complete_and_exit +EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key +EXPORT_SYMBOL vmlinux 0x09690c82 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x0971b441 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x0975ddb5 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x097667df lru_cache_add_file +EXPORT_SYMBOL vmlinux 0x097effe6 security_path_truncate +EXPORT_SYMBOL vmlinux 0x098ab1fa neigh_destroy +EXPORT_SYMBOL vmlinux 0x098dd952 request_key +EXPORT_SYMBOL vmlinux 0x09915f70 udp_table +EXPORT_SYMBOL vmlinux 0x09bbb488 simple_transaction_release +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c754b2 __kfree_skb +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09e12aad blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x09f5ed20 default_llseek +EXPORT_SYMBOL vmlinux 0x0a02a049 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x0a4873f9 unregister_binfmt +EXPORT_SYMBOL vmlinux 0x0a57863e cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x0a66b7b3 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x0a6881d2 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a899bed nvm_get_blk +EXPORT_SYMBOL vmlinux 0x0aa069e1 single_open +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aacd352 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x0ab9ea47 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x0ae0f2ed skb_unlink +EXPORT_SYMBOL vmlinux 0x0ae1f4be bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x0af14ab8 sock_no_getname +EXPORT_SYMBOL vmlinux 0x0af7ea69 send_sig +EXPORT_SYMBOL vmlinux 0x0afcab85 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b1a9848 __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b1edd75 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x0b2cd308 pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0x0b361701 blk_put_request +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b92e75f sock_kfree_s +EXPORT_SYMBOL vmlinux 0x0bae3222 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc35b06 find_inode_nowait +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bd5e482 bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0x0bec138c crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x0c196fe9 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0x0c21d019 flush_delayed_work +EXPORT_SYMBOL vmlinux 0x0c30cfaa pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c54919a scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x0c57a5f1 udp_add_offload +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c5f2a5b idr_get_next +EXPORT_SYMBOL vmlinux 0x0c7cf7c6 zero_page_mask +EXPORT_SYMBOL vmlinux 0x0c8610af fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0x0c932c4d inode_init_always +EXPORT_SYMBOL vmlinux 0x0c98fa49 mutex_unlock +EXPORT_SYMBOL vmlinux 0x0ca8bd4b xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cc1270e iucv_root +EXPORT_SYMBOL vmlinux 0x0cceac6c iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0x0d07a3a9 kfree_skb +EXPORT_SYMBOL vmlinux 0x0d15fa77 debug_register_view +EXPORT_SYMBOL vmlinux 0x0d3a2057 scsi_device_get +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d5cf5f8 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d6285e7 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x0d64ecb1 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x0d8f83ae skb_clone +EXPORT_SYMBOL vmlinux 0x0d949093 set_device_ro +EXPORT_SYMBOL vmlinux 0x0d94b899 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0dc9f91f tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x0de3b14a release_sock +EXPORT_SYMBOL vmlinux 0x0e079ac7 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x0e1c1001 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x0e3257d7 d_set_d_op +EXPORT_SYMBOL vmlinux 0x0e381f36 mount_subtree +EXPORT_SYMBOL vmlinux 0x0e5d113d __check_sticky +EXPORT_SYMBOL vmlinux 0x0e6d0c2b kern_path_create +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0ea763c3 sclp_sync_wait +EXPORT_SYMBOL vmlinux 0x0eab56fa __kfifo_max_r +EXPORT_SYMBOL vmlinux 0x0edc221e setattr_copy +EXPORT_SYMBOL vmlinux 0x0eeb6c28 lro_flush_all +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f9bc5bd blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fba6d33 dst_discard_out +EXPORT_SYMBOL vmlinux 0x0fc2d71f tcp_check_req +EXPORT_SYMBOL vmlinux 0x0fd07093 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x0fe87a9f debug_register +EXPORT_SYMBOL vmlinux 0x0ffff76b tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x101dbe7b blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0x10497616 memweight +EXPORT_SYMBOL vmlinux 0x1054e732 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x105b633a sock_create +EXPORT_SYMBOL vmlinux 0x10693979 I_BDEV +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x108b4a8c sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x10950ee1 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x10b48312 unload_nls +EXPORT_SYMBOL vmlinux 0x10cc3d75 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x10cee4e4 blk_stop_queue +EXPORT_SYMBOL vmlinux 0x10e94a5d configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0x10f2eb76 vsnprintf +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x1115e9ab lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x111c84ab dev_get_stats +EXPORT_SYMBOL vmlinux 0x1135467c cap_mmap_file +EXPORT_SYMBOL vmlinux 0x11401beb __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x1168c994 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x119909ea __dquot_transfer +EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x11a2ee07 tcf_hash_search +EXPORT_SYMBOL vmlinux 0x11b59e8a proc_remove +EXPORT_SYMBOL vmlinux 0x11d6b8fd sock_efree +EXPORT_SYMBOL vmlinux 0x11ed2eb8 sclp_remove_processed +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x121cf32a xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x1236c5f9 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x123ebfc0 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x123f82f3 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x1250e9d7 generic_write_checks +EXPORT_SYMBOL vmlinux 0x1251a12e console_mode +EXPORT_SYMBOL vmlinux 0x12542c4d scsi_ioctl +EXPORT_SYMBOL vmlinux 0x12981c34 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12dcef33 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x12e5e0d7 qdisc_destroy +EXPORT_SYMBOL vmlinux 0x12f8cec5 skb_trim +EXPORT_SYMBOL vmlinux 0x1318d39c misc_register +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x131b6e14 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x1322446f put_filp +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc +EXPORT_SYMBOL vmlinux 0x133a48cf from_kgid +EXPORT_SYMBOL vmlinux 0x1348e0fa xfrm_register_km +EXPORT_SYMBOL vmlinux 0x136fea83 generic_permission +EXPORT_SYMBOL vmlinux 0x13738e23 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x13a349f5 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x13cd659e dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d88a4a seq_dentry +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13faf009 dquot_enable +EXPORT_SYMBOL vmlinux 0x1404c0de blk_init_queue_node +EXPORT_SYMBOL vmlinux 0x1410d804 ccw_device_get_id +EXPORT_SYMBOL vmlinux 0x142c2a1a xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x142c5397 nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0x1432b1a3 audit_log_task_info +EXPORT_SYMBOL vmlinux 0x14407cec copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x1467cad2 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x14757499 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x14802b4c scsi_remove_host +EXPORT_SYMBOL vmlinux 0x14875243 irq_set_chip +EXPORT_SYMBOL vmlinux 0x148f070a bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x14af3a7f simple_open +EXPORT_SYMBOL vmlinux 0x14c5e5b3 segment_warning +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14ed6025 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x1549f1d8 bio_reset +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x1568c9a2 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x15703d64 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x1591c173 block_commit_write +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15db2927 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x15e3de58 dquot_transfer +EXPORT_SYMBOL vmlinux 0x16065a2c ipv4_specific +EXPORT_SYMBOL vmlinux 0x1617ee2b wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x162896b4 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x162c1f1e xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x1633e06d jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x1660de32 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x1665aeb1 filp_open +EXPORT_SYMBOL vmlinux 0x16861546 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0x168f8857 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x1694928d dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x169b7aee unregister_adapter_interrupt +EXPORT_SYMBOL vmlinux 0x16c3add5 scsi_print_result +EXPORT_SYMBOL vmlinux 0x16ca6ab7 mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0x16d65eb0 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16e3c791 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x17124335 __brelse +EXPORT_SYMBOL vmlinux 0x1718f0ec sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x171d0960 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x1726389f tty_register_device +EXPORT_SYMBOL vmlinux 0x175b506e blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x175c3181 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x176aec96 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x176ea2b6 f_setown +EXPORT_SYMBOL vmlinux 0x1793f685 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x17a142df __copy_from_user +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17c1735f neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x17e05223 raw3270_del_view +EXPORT_SYMBOL vmlinux 0x181d1a79 unlock_buffer +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x18334061 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x188c0401 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x189b6bac memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x18b87cca sclp_deactivate +EXPORT_SYMBOL vmlinux 0x18bf6d5c generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x18c0607d compat_mc_setsockopt +EXPORT_SYMBOL vmlinux 0x18c44cd7 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x18d39d9b __neigh_create +EXPORT_SYMBOL vmlinux 0x18dda227 vfs_statfs +EXPORT_SYMBOL vmlinux 0x18e4f6a6 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x1913b4e7 param_get_long +EXPORT_SYMBOL vmlinux 0x1915a221 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x191c82e7 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x191dd89f dev_mc_sync +EXPORT_SYMBOL vmlinux 0x1929abe2 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x192dbce5 seq_release_private +EXPORT_SYMBOL vmlinux 0x19493b79 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x195818c2 generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x195be1a2 pci_iomap +EXPORT_SYMBOL vmlinux 0x1963fe81 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19c6bb09 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x1a032f56 __blk_end_request +EXPORT_SYMBOL vmlinux 0x1a0b87b4 rtnl_notify +EXPORT_SYMBOL vmlinux 0x1a0de74f blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x1a29c107 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x1a52392a freeze_bdev +EXPORT_SYMBOL vmlinux 0x1a526932 __blk_end_request_all +EXPORT_SYMBOL vmlinux 0x1a9a645d vfs_mknod +EXPORT_SYMBOL vmlinux 0x1ab9ecdc tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x1ac6c0a9 bio_uncopy_user +EXPORT_SYMBOL vmlinux 0x1af28809 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b216d6b __alloc_skb +EXPORT_SYMBOL vmlinux 0x1b624e5e jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b84c30b add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x1bb07a42 lz4_decompress +EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer +EXPORT_SYMBOL vmlinux 0x1bc13450 inet_listen +EXPORT_SYMBOL vmlinux 0x1bc1592d kernel_write +EXPORT_SYMBOL vmlinux 0x1bced360 pci_iomap_range +EXPORT_SYMBOL vmlinux 0x1bfa76d8 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x1c0ef69d __pagevec_release +EXPORT_SYMBOL vmlinux 0x1c114a6a vm_event_states +EXPORT_SYMBOL vmlinux 0x1c1a583c do_splice_from +EXPORT_SYMBOL vmlinux 0x1c1c74c7 iucv_message_receive +EXPORT_SYMBOL vmlinux 0x1c1dbfc9 sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x1c61b587 raw3270_start +EXPORT_SYMBOL vmlinux 0x1c80de9c ip_send_check +EXPORT_SYMBOL vmlinux 0x1cbf6e94 flow_cache_init +EXPORT_SYMBOL vmlinux 0x1cd5740f sock_setsockopt +EXPORT_SYMBOL vmlinux 0x1ceb97a4 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x1cee8254 release_firmware +EXPORT_SYMBOL vmlinux 0x1d1f2cd4 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0x1d243afa pci_save_state +EXPORT_SYMBOL vmlinux 0x1d58749d path_is_under +EXPORT_SYMBOL vmlinux 0x1d68266d skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x1d69298d try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x1d9334cb __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x1da294d3 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x1df7eaf5 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x1dfd16c8 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e3b5df3 arp_send +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e78414d jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x1e840adc xfrm_register_mode +EXPORT_SYMBOL vmlinux 0x1e8a161a crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1eba1b2f dqput +EXPORT_SYMBOL vmlinux 0x1ef80d82 lwtunnel_input +EXPORT_SYMBOL vmlinux 0x1f0c2665 blk_rq_init +EXPORT_SYMBOL vmlinux 0x1f272d75 param_ops_ullong +EXPORT_SYMBOL vmlinux 0x1f2b9bb2 unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0x1f48e77c __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x1f538a4d __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x1f61b15e ccw_driver_register +EXPORT_SYMBOL vmlinux 0x1f62eed0 d_tmpfile +EXPORT_SYMBOL vmlinux 0x1fa33028 vm_insert_pfn +EXPORT_SYMBOL vmlinux 0x1fb22aae scsi_register_driver +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fe66460 rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x2034a5fe mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x205f4d9f sclp_unregister +EXPORT_SYMBOL vmlinux 0x206d23f5 iucv_if +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x20973b94 segment_unload +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20ad068a d_obtain_root +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20ca3cac sock_create_kern +EXPORT_SYMBOL vmlinux 0x20e04f6b netdev_notice +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x20fb9236 sock_no_connect +EXPORT_SYMBOL vmlinux 0x21152d90 kthread_stop +EXPORT_SYMBOL vmlinux 0x211f68f1 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x216210ed rtnl_create_link +EXPORT_SYMBOL vmlinux 0x21697a21 iucv_message_reject +EXPORT_SYMBOL vmlinux 0x21dbe59e blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21e225f3 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x21eb5b00 sclp_cpi_set_data +EXPORT_SYMBOL vmlinux 0x221a4401 module_layout +EXPORT_SYMBOL vmlinux 0x222b3476 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x222c1add kobject_get +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x224cb332 down +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x226b08a4 idr_is_empty +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x2285961a bdget +EXPORT_SYMBOL vmlinux 0x2294b44f tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x22ac1d06 raw3270_request_set_data +EXPORT_SYMBOL vmlinux 0x22c1a316 locks_init_lock +EXPORT_SYMBOL vmlinux 0x22ea6a3f __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x22ecf082 idr_remove +EXPORT_SYMBOL vmlinux 0x23019008 generic_writepages +EXPORT_SYMBOL vmlinux 0x230fe8b8 account_page_redirty +EXPORT_SYMBOL vmlinux 0x2365ede7 __irq_regs +EXPORT_SYMBOL vmlinux 0x236c8c64 memcpy +EXPORT_SYMBOL vmlinux 0x2389ab67 __elv_add_request +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23ae70c7 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23d2db96 lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x23df0574 d_rehash +EXPORT_SYMBOL vmlinux 0x23e30fe2 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x23ed9f04 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x242f3562 irq_subclass_register +EXPORT_SYMBOL vmlinux 0x2438387f tccb_add_dcw +EXPORT_SYMBOL vmlinux 0x24393601 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x24507258 page_waitqueue +EXPORT_SYMBOL vmlinux 0x24555ca9 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x2472188e __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x248678cc inode_set_flags +EXPORT_SYMBOL vmlinux 0x24a5a552 generic_listxattr +EXPORT_SYMBOL vmlinux 0x24d0c082 skb_queue_head +EXPORT_SYMBOL vmlinux 0x24d6b708 simple_release_fs +EXPORT_SYMBOL vmlinux 0x24eb356e save_mount_options +EXPORT_SYMBOL vmlinux 0x24ec50c2 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x24f54790 filemap_fdatawait +EXPORT_SYMBOL vmlinux 0x24fbd9cb airq_iv_release +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x25000494 dquot_release +EXPORT_SYMBOL vmlinux 0x25400fd2 generic_setlease +EXPORT_SYMBOL vmlinux 0x254201c0 _dev_info +EXPORT_SYMBOL vmlinux 0x2560d44c pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0x257fe0c0 blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x25a62109 iterate_mounts +EXPORT_SYMBOL vmlinux 0x25b7c4be scmd_printk +EXPORT_SYMBOL vmlinux 0x25c3553c devm_request_resource +EXPORT_SYMBOL vmlinux 0x25cd6115 blk_fetch_request +EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25ead659 class3270 +EXPORT_SYMBOL vmlinux 0x25ec1b28 strlen +EXPORT_SYMBOL vmlinux 0x25f1fe49 blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x2629b28f md_flush_request +EXPORT_SYMBOL vmlinux 0x262b29f4 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x26336034 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x264d38ee register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux +EXPORT_SYMBOL vmlinux 0x268006be init_buffer +EXPORT_SYMBOL vmlinux 0x26971ce3 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x26ab88dd memcg_socket_limit_enabled +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x26f9e4ca inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0x26fa50c0 complete +EXPORT_SYMBOL vmlinux 0x2733ac1a ccw_device_clear_options +EXPORT_SYMBOL vmlinux 0x27463739 acl_by_type +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x275b7ec9 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x2765d85c tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x2773b358 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x2782456c ip_setsockopt +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x2793b29e d_instantiate_unique +EXPORT_SYMBOL vmlinux 0x2798d25a mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x27affedf dm_unregister_target +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27ca4199 ip_defrag +EXPORT_SYMBOL vmlinux 0x27cfb890 init_special_inode +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x27e4019b bioset_free +EXPORT_SYMBOL vmlinux 0x27e9ade7 read_dev_sector +EXPORT_SYMBOL vmlinux 0x27f164d8 __sb_start_write +EXPORT_SYMBOL vmlinux 0x2808a727 put_disk +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x282e7e7a tty_unthrottle +EXPORT_SYMBOL vmlinux 0x28343bad scnprintf +EXPORT_SYMBOL vmlinux 0x283a27b8 generic_readlink +EXPORT_SYMBOL vmlinux 0x2843c643 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x285ed7ff generic_end_io_acct +EXPORT_SYMBOL vmlinux 0x289ae4dc keyring_alloc +EXPORT_SYMBOL vmlinux 0x28a2b29f radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28d88ccc end_page_writeback +EXPORT_SYMBOL vmlinux 0x28da6989 skb_store_bits +EXPORT_SYMBOL vmlinux 0x290d4014 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x2913843c security_path_unlink +EXPORT_SYMBOL vmlinux 0x291f30d8 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x29242e44 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x292ac45e block_truncate_page +EXPORT_SYMBOL vmlinux 0x29391e7d vm_munmap +EXPORT_SYMBOL vmlinux 0x293e406f xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x294b327e inet_release +EXPORT_SYMBOL vmlinux 0x294b53a1 ccw_device_tm_start_timeout +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x2977a7de cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x29789394 empty_zero_page +EXPORT_SYMBOL vmlinux 0x299947f2 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x29b2279e __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x29bd3934 sock_edemux +EXPORT_SYMBOL vmlinux 0x29be53d4 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x29cc3a1a scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x29e82508 __skb_checksum +EXPORT_SYMBOL vmlinux 0x29ec188f inode_get_bytes +EXPORT_SYMBOL vmlinux 0x29f800f1 current_fs_time +EXPORT_SYMBOL vmlinux 0x29f8fbfb neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x2a1c876e ilookup5 +EXPORT_SYMBOL vmlinux 0x2a33ef40 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x2a35456f setup_new_exec +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a7164da km_new_mapping +EXPORT_SYMBOL vmlinux 0x2a905f2b follow_down_one +EXPORT_SYMBOL vmlinux 0x2a92e478 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x2aa22a3a tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x2aad2651 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x2accd249 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x2ace5a18 padata_add_cpu +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2ae08579 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b1c0d6c remove_arg_zero +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b4e0529 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x2b658a1f neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x2b868385 dev_add_pack +EXPORT_SYMBOL vmlinux 0x2b86a583 __frontswap_test +EXPORT_SYMBOL vmlinux 0x2b996d01 generic_make_request +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2bc9fc8f __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x2bd8d2ac jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x2be753fc dma_pool_create +EXPORT_SYMBOL vmlinux 0x2bf126b2 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x2c231c04 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x2c29a995 __strnlen_user +EXPORT_SYMBOL vmlinux 0x2c458e9c tcw_add_tidaw +EXPORT_SYMBOL vmlinux 0x2c4925bc padata_alloc +EXPORT_SYMBOL vmlinux 0x2c4f2791 lwtunnel_output +EXPORT_SYMBOL vmlinux 0x2c764542 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x2c7a7c9f dm_put_device +EXPORT_SYMBOL vmlinux 0x2c897734 tcw_get_tsb +EXPORT_SYMBOL vmlinux 0x2ca50563 blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0x2caf780f sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x2cbaa35c __blk_run_queue +EXPORT_SYMBOL vmlinux 0x2cfba164 seq_read +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d14fd2e tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x2d1bea57 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d32dd23 init_net +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d411820 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x2d5528c9 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x2d5c0f89 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x2d5f7444 from_kprojid +EXPORT_SYMBOL vmlinux 0x2d61eedd __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x2d79c8ce inet_offloads +EXPORT_SYMBOL vmlinux 0x2d7a4253 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x2d7f1a4f udplite_prot +EXPORT_SYMBOL vmlinux 0x2d899743 single_release +EXPORT_SYMBOL vmlinux 0x2d9a3f78 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x2dbb9241 ida_init +EXPORT_SYMBOL vmlinux 0x2dbe76a6 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x2dbf0090 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x2dd95f77 iget_failed +EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink +EXPORT_SYMBOL vmlinux 0x2ddb1ec0 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x2e0d2f7f queue_work_on +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e427069 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x2e593a27 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0x2e7ceb2c pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x2e8abdeb proc_douintvec +EXPORT_SYMBOL vmlinux 0x2e8b6609 register_qdisc +EXPORT_SYMBOL vmlinux 0x2e92cc73 set_anon_super +EXPORT_SYMBOL vmlinux 0x2ea17820 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x2ec57297 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x2eedb414 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x2ef5661d segment_modify_shared +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2efc102f tcw_set_data +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource +EXPORT_SYMBOL vmlinux 0x2f0ec65a simple_write_end +EXPORT_SYMBOL vmlinux 0x2f225f05 set_create_files_as +EXPORT_SYMBOL vmlinux 0x2f328c32 udp_set_csum +EXPORT_SYMBOL vmlinux 0x2f3fa4f4 dev_get_flags +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f521c33 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x2f6b0d13 kset_unregister +EXPORT_SYMBOL vmlinux 0x2f785210 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x2fa5a500 memcmp +EXPORT_SYMBOL vmlinux 0x2fada814 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x2fb3750c on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fd54f84 pcie_get_mps +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2ffffb6f _ebc_tolower +EXPORT_SYMBOL vmlinux 0x3001f97e __genl_register_family +EXPORT_SYMBOL vmlinux 0x3010310e tcp_seq_open +EXPORT_SYMBOL vmlinux 0x302f4d78 send_sig_info +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x303f25fd get_fs_type +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x3094e50e truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30f9c886 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x30fa617f pci_disable_device +EXPORT_SYMBOL vmlinux 0x31010eac __crypto_memneq +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310dd0b4 __scm_send +EXPORT_SYMBOL vmlinux 0x31436289 xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3151fa8a textsearch_unregister +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x31839543 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x3198f424 dev_close +EXPORT_SYMBOL vmlinux 0x31b412dd qdisc_reset +EXPORT_SYMBOL vmlinux 0x31be129f scsi_host_get +EXPORT_SYMBOL vmlinux 0x31dd2b5d bdi_register +EXPORT_SYMBOL vmlinux 0x31e00aa8 ping_prot +EXPORT_SYMBOL vmlinux 0x31f8ecaa ccw_device_resume +EXPORT_SYMBOL vmlinux 0x321b982d idr_replace +EXPORT_SYMBOL vmlinux 0x3221bd3f raw3270_request_set_idal +EXPORT_SYMBOL vmlinux 0x3238a155 rename_lock +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x327256a1 __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x3275689f smp_ctl_set_bit +EXPORT_SYMBOL vmlinux 0x32c0aa57 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x32c6a2d8 _ebcasc_500 +EXPORT_SYMBOL vmlinux 0x32debb16 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x32f05f74 ccw_device_get_mdc +EXPORT_SYMBOL vmlinux 0x32f40ab9 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x32f9c768 unregister_external_irq +EXPORT_SYMBOL vmlinux 0x3312c40a fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0x331d9679 configfs_undepend_item +EXPORT_SYMBOL vmlinux 0x334b75e4 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x33696161 xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x336f6559 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x338bbef8 __ndelay +EXPORT_SYMBOL vmlinux 0x3391d22a inode_dio_wait +EXPORT_SYMBOL vmlinux 0x33970da4 dev_addr_del +EXPORT_SYMBOL vmlinux 0x3397e364 __get_user_pages +EXPORT_SYMBOL vmlinux 0x33bee020 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x33c574d5 filp_close +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33c8e4a5 locks_free_lock +EXPORT_SYMBOL vmlinux 0x33cb4353 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x33f74de3 _ascebc_500 +EXPORT_SYMBOL vmlinux 0x33faa6a8 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x341124aa key_unlink +EXPORT_SYMBOL vmlinux 0x34154784 debug_sprintf_view +EXPORT_SYMBOL vmlinux 0x341cbed2 cpu_present_mask +EXPORT_SYMBOL vmlinux 0x342c0597 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x34463ed5 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x344adbd5 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x349eb6f6 sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x34c1fd53 vfs_link +EXPORT_SYMBOL vmlinux 0x34cd00ae netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x34ce3a78 debug_unregister +EXPORT_SYMBOL vmlinux 0x34e9644b sk_capable +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34fada2b raw3270_reset +EXPORT_SYMBOL vmlinux 0x34fbab52 seq_pad +EXPORT_SYMBOL vmlinux 0x35131e78 ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x351df49b __free_pages +EXPORT_SYMBOL vmlinux 0x353635fa register_filesystem +EXPORT_SYMBOL vmlinux 0x3558fa24 crc32_be +EXPORT_SYMBOL vmlinux 0x356a915d ccw_device_clear +EXPORT_SYMBOL vmlinux 0x3579921d netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x3581422e nf_getsockopt +EXPORT_SYMBOL vmlinux 0x358c27ef scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x359488ed unregister_quota_format +EXPORT_SYMBOL vmlinux 0x3596473c udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35dfd845 bdi_init +EXPORT_SYMBOL vmlinux 0x3602aba9 raw3270_register_notifier +EXPORT_SYMBOL vmlinux 0x36060ef7 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x361af84f scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x361b6a83 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x363c067b kfree_skb_list +EXPORT_SYMBOL vmlinux 0x36467f88 __debug_sprintf_event +EXPORT_SYMBOL vmlinux 0x36718ee4 dquot_alloc +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36c9ff8c key_task_permission +EXPORT_SYMBOL vmlinux 0x36cb7eff netdev_info +EXPORT_SYMBOL vmlinux 0x36d14b75 seq_open_private +EXPORT_SYMBOL vmlinux 0x36d39222 kernel_accept +EXPORT_SYMBOL vmlinux 0x36d5e2c6 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0x370ac991 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x37140153 compat_sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x3718c116 arch_lock_relax +EXPORT_SYMBOL vmlinux 0x3743705e n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x376119d2 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x3774c96c ida_simple_remove +EXPORT_SYMBOL vmlinux 0x377dd269 dst_init +EXPORT_SYMBOL vmlinux 0x37a40497 sock_release +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37c708a1 blk_init_queue +EXPORT_SYMBOL vmlinux 0x37ccdb51 __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x37d750c0 freeze_super +EXPORT_SYMBOL vmlinux 0x37d8ab03 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x37ff4c06 copy_from_user_overflow +EXPORT_SYMBOL vmlinux 0x380a9956 kbd_free +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x385cba7f dev_remove_pack +EXPORT_SYMBOL vmlinux 0x385e5050 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x387860f9 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x389bd0cc config_item_put +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38b9b6e6 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x38d1848c inet_ioctl +EXPORT_SYMBOL vmlinux 0x38df0543 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x39047373 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x3928efe9 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x3936c3d1 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x39674697 ccw_device_set_online +EXPORT_SYMBOL vmlinux 0x3982961b ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x3983df29 pci_set_master +EXPORT_SYMBOL vmlinux 0x39973b13 param_set_copystring +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399d05b8 __wake_up_bit +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39d03e88 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x39d76fb9 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x39e1c350 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x39ff5470 skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x3a22b55b vfs_fsync +EXPORT_SYMBOL vmlinux 0x3a297029 unregister_key_type +EXPORT_SYMBOL vmlinux 0x3a393593 md_write_end +EXPORT_SYMBOL vmlinux 0x3a442c0e migrate_page +EXPORT_SYMBOL vmlinux 0x3a4c285b kernel_bind +EXPORT_SYMBOL vmlinux 0x3a628326 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x3a8e08bb itcw_add_dcw +EXPORT_SYMBOL vmlinux 0x3a9606df simple_getattr +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3aa11bd1 _raw_read_lock_wait +EXPORT_SYMBOL vmlinux 0x3aa75614 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x3ab4140c sock_recvmsg +EXPORT_SYMBOL vmlinux 0x3ab41b25 __copy_in_user +EXPORT_SYMBOL vmlinux 0x3ab7b6f1 __vfs_read +EXPORT_SYMBOL vmlinux 0x3abc1459 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x3ada3ddc inode_init_once +EXPORT_SYMBOL vmlinux 0x3b052a0b dev_change_carrier +EXPORT_SYMBOL vmlinux 0x3b0d12fa blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x3b1bf350 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x3b3e566b inet6_del_offload +EXPORT_SYMBOL vmlinux 0x3b3f8bc3 __devm_release_region +EXPORT_SYMBOL vmlinux 0x3b46c4b0 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x3b4f5724 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x3b5638dc complete_request_key +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b692424 nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0x3b7611c7 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x3b7aa2f4 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x3b81e0b6 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x3b95c1dc __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x3b965c4a inet_add_protocol +EXPORT_SYMBOL vmlinux 0x3b9ba685 pci_bus_type +EXPORT_SYMBOL vmlinux 0x3ba1b0d3 scsi_host_put +EXPORT_SYMBOL vmlinux 0x3bb4fb49 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x3be6d10c pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0x3c0b4eee __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x3c3478aa kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c457ccb mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x3c483012 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x3c4cb9e4 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x3c500bb6 bioset_integrity_free +EXPORT_SYMBOL vmlinux 0x3c705a43 ccw_device_start_timeout +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c866656 dst_release +EXPORT_SYMBOL vmlinux 0x3c8b6aa3 md_register_thread +EXPORT_SYMBOL vmlinux 0x3caa6bef param_set_ulong +EXPORT_SYMBOL vmlinux 0x3cd18150 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x3ce30011 simple_rename +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cf558e0 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x3d07f40a frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x3d117a60 itcw_calc_size +EXPORT_SYMBOL vmlinux 0x3d3a9854 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x3d4e6598 fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0x3d528fc8 pipe_lock +EXPORT_SYMBOL vmlinux 0x3d6caee3 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x3da3da18 __getblk_slow +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dd734b6 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e2feb1d posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x3e83760a simple_fill_super +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e96f9a2 register_sysctl +EXPORT_SYMBOL vmlinux 0x3e9910f2 param_get_byte +EXPORT_SYMBOL vmlinux 0x3ea99125 qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x3eaefab8 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x3f23f83d filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f7222f6 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x3f776d14 check_disk_change +EXPORT_SYMBOL vmlinux 0x3f8337da ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x3fa913da strspn +EXPORT_SYMBOL vmlinux 0x3fb0b9e3 __udelay +EXPORT_SYMBOL vmlinux 0x3fb58b6d up +EXPORT_SYMBOL vmlinux 0x3fdab8d1 dump_page +EXPORT_SYMBOL vmlinux 0x3fe65c4c dm_io +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x400b8ab5 inc_nlink +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x40335902 __napi_schedule +EXPORT_SYMBOL vmlinux 0x40469cb2 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x404c750b dentry_update_name_case +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40b26999 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x40be2a8e pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x40c66228 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40cb714b textsearch_prepare +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40e6df69 __nla_reserve +EXPORT_SYMBOL vmlinux 0x40ef74e9 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x40f6a2fd napi_complete_done +EXPORT_SYMBOL vmlinux 0x40fccd91 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x41081802 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x413d903c dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x4155acfc qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x416690eb tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x417652f8 __d_drop +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x4198a4bd finish_open +EXPORT_SYMBOL vmlinux 0x41a01442 dev_trans_start +EXPORT_SYMBOL vmlinux 0x41b52e9a set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x41b6d63e __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x41baf194 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x41d5f0d1 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x41df696c wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x4211f85a tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x421c4d6a key_invalidate +EXPORT_SYMBOL vmlinux 0x42285c25 udp_prot +EXPORT_SYMBOL vmlinux 0x422e8825 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x422eda56 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x423a65b2 nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x428e1393 dcb_setapp +EXPORT_SYMBOL vmlinux 0x42922bd6 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x42a6ebcb rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x42c9b55e ip_check_defrag +EXPORT_SYMBOL vmlinux 0x42d1f25b rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x42e535a3 tty_port_init +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x434c282b udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x435021cb inet_recvmsg +EXPORT_SYMBOL vmlinux 0x4352665e sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x437bd1b3 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43a4938f vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x43bdfa20 console_irq +EXPORT_SYMBOL vmlinux 0x43cf3bc3 dql_completed +EXPORT_SYMBOL vmlinux 0x43d9b960 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x43e43bd8 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x43ee9774 pci_bus_put +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x445606c0 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x447068f1 dump_align +EXPORT_SYMBOL vmlinux 0x447731c0 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x449216d5 bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x44a69777 eth_header_parse +EXPORT_SYMBOL vmlinux 0x44aa2d50 nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x44be415d neigh_seq_start +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44e9ad1b blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x44f55268 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x450614f6 icmp_send +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x45530982 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x455a52b6 vfs_setpos +EXPORT_SYMBOL vmlinux 0x45628318 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x4568c7ed udp_seq_open +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x45a04cd3 wake_up_process +EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource +EXPORT_SYMBOL vmlinux 0x45c92313 VMALLOC_END +EXPORT_SYMBOL vmlinux 0x45cec08e seq_release +EXPORT_SYMBOL vmlinux 0x46013e72 wait_for_completion_io +EXPORT_SYMBOL vmlinux 0x46066e5b perf_pmu_name +EXPORT_SYMBOL vmlinux 0x4610daf2 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x46261dfd __sk_dst_check +EXPORT_SYMBOL vmlinux 0x4627c108 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x4645396c jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x46571d27 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x465c6bb9 pagecache_get_page +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x468310e6 seq_lseek +EXPORT_SYMBOL vmlinux 0x468630e0 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x4688d689 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x46b67693 hex2bin +EXPORT_SYMBOL vmlinux 0x46b7cb09 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x46d59f7d smp_cpu_mt_shift +EXPORT_SYMBOL vmlinux 0x46f46ef0 pipe_unlock +EXPORT_SYMBOL vmlinux 0x46fe3fbb __break_lease +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x47001d3c inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x470e5956 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x471cd65e elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0x47379725 security_path_chown +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x4784e052 ccw_device_set_offline +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x47960870 down_write_trylock +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47ed7aa2 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x4804e028 pci_claim_resource +EXPORT_SYMBOL vmlinux 0x480dfa55 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x480f1ae7 netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0x48152d4a blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x4823819e raw3270_buffer_address +EXPORT_SYMBOL vmlinux 0x482cacd2 deactivate_super +EXPORT_SYMBOL vmlinux 0x4896d1c2 nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x489865a1 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x489ce0a8 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x48ad7014 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x48d9c25e xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x48e3106e dqget +EXPORT_SYMBOL vmlinux 0x48ec569e jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x4907a56d wait_for_completion +EXPORT_SYMBOL vmlinux 0x49207989 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x4922141b kill_fasync +EXPORT_SYMBOL vmlinux 0x4924c850 _raw_write_trylock_retry +EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x499a173b skb_put +EXPORT_SYMBOL vmlinux 0x49af0077 pci_restore_state +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49b21761 sk_net_capable +EXPORT_SYMBOL vmlinux 0x49c960e7 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x49fb2408 param_get_string +EXPORT_SYMBOL vmlinux 0x49fe83d5 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x4a372be5 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x4a4a3ee9 param_get_ushort +EXPORT_SYMBOL vmlinux 0x4a54fe45 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x4a57c61c d_invalidate +EXPORT_SYMBOL vmlinux 0x4a694bd4 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x4a9d650f tty_throttle +EXPORT_SYMBOL vmlinux 0x4ab69e59 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk +EXPORT_SYMBOL vmlinux 0x4acd2eec set_page_dirty +EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource +EXPORT_SYMBOL vmlinux 0x4af0570f mount_ns +EXPORT_SYMBOL vmlinux 0x4afb32ed ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b0026f4 dquot_drop +EXPORT_SYMBOL vmlinux 0x4b0d1c2f dev_get_by_name +EXPORT_SYMBOL vmlinux 0x4b5814ef kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x4b5b87a1 kill_pid +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b630390 kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0x4b72e8d7 inet_sendpage +EXPORT_SYMBOL vmlinux 0x4b7af093 vlan_vid_add +EXPORT_SYMBOL vmlinux 0x4ba01dce xfrm_register_type +EXPORT_SYMBOL vmlinux 0x4ba6880c eth_gro_receive +EXPORT_SYMBOL vmlinux 0x4bb2d144 kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0x4bcf2e10 textsearch_register +EXPORT_SYMBOL vmlinux 0x4be2c440 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x4beb7fef security_mmap_file +EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf +EXPORT_SYMBOL vmlinux 0x4c4c956e nla_memcmp +EXPORT_SYMBOL vmlinux 0x4c6d0010 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x4c7cb4c9 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x4c989b2c truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x4c9aeae0 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x4cb0fcae pci_read_vpd +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4d2c6bdb __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x4d2f2af7 proto_unregister +EXPORT_SYMBOL vmlinux 0x4d4e28b6 filemap_flush +EXPORT_SYMBOL vmlinux 0x4d50cfdb gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d994d97 qdisc_list_del +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4dab8e75 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x4dbf3e43 iterate_dir +EXPORT_SYMBOL vmlinux 0x4dda726b match_strlcpy +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4de4854d napi_disable +EXPORT_SYMBOL vmlinux 0x4dea1053 memchr +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4dfeb73e nvm_put_blk_unlocked +EXPORT_SYMBOL vmlinux 0x4e14e7ec key_type_keyring +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e36334d netpoll_setup +EXPORT_SYMBOL vmlinux 0x4e3c43bd simple_rmdir +EXPORT_SYMBOL vmlinux 0x4e50bd6d __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e79076c kernel_sendpage +EXPORT_SYMBOL vmlinux 0x4e974113 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x4ea1c130 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x4ec1a99a jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x4ed948c4 d_set_fallthru +EXPORT_SYMBOL vmlinux 0x4ef4f163 tccb_init +EXPORT_SYMBOL vmlinux 0x4f134a37 register_key_type +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f1f9464 page_put_link +EXPORT_SYMBOL vmlinux 0x4f22f0ea call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x4f2cd1b5 __cpcmd +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f4983e3 pci_enable_device +EXPORT_SYMBOL vmlinux 0x4f621704 do_splice_direct +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f8d7d34 noop_fsync +EXPORT_SYMBOL vmlinux 0x4fa10761 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x4fa3cec8 rwsem_wake +EXPORT_SYMBOL vmlinux 0x4fc96aa6 md_error +EXPORT_SYMBOL vmlinux 0x4fe6f244 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x4ff99d3b padata_do_serial +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x50226456 dquot_destroy +EXPORT_SYMBOL vmlinux 0x5023794d raw3270_activate_view +EXPORT_SYMBOL vmlinux 0x502b7cb2 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x502f0491 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x50720c5f snprintf +EXPORT_SYMBOL vmlinux 0x50744d3a eth_header +EXPORT_SYMBOL vmlinux 0x508022e7 inet_frag_find +EXPORT_SYMBOL vmlinux 0x50908266 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x50abc73b d_add_ci +EXPORT_SYMBOL vmlinux 0x50b09d71 tcp_proto_cgroup +EXPORT_SYMBOL vmlinux 0x50b7ca24 __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x50ba769a kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x50c9c195 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x50d26d0a have_submounts +EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x50e0f71a neigh_lookup +EXPORT_SYMBOL vmlinux 0x50f0b34e posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x510c2535 xz_dec_run +EXPORT_SYMBOL vmlinux 0x5111880c skb_copy_expand +EXPORT_SYMBOL vmlinux 0x511206bc vm_insert_page +EXPORT_SYMBOL vmlinux 0x5112ae75 dget_parent +EXPORT_SYMBOL vmlinux 0x51164ad9 cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x5132d881 vm_map_ram +EXPORT_SYMBOL vmlinux 0x5134657a bio_integrity_endio +EXPORT_SYMBOL vmlinux 0x513bdc11 prepare_creds +EXPORT_SYMBOL vmlinux 0x516ab68f generic_delete_inode +EXPORT_SYMBOL vmlinux 0x51942ce2 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x51b52abd arp_xmit +EXPORT_SYMBOL vmlinux 0x51c3c0e4 dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0x51cd4da0 scsi_device_put +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x52115db9 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x52125d03 kbd_keycode +EXPORT_SYMBOL vmlinux 0x521901d4 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x522e951c bio_clone_bioset +EXPORT_SYMBOL vmlinux 0x52497496 poll_initwait +EXPORT_SYMBOL vmlinux 0x524a5f08 notify_change +EXPORT_SYMBOL vmlinux 0x52847220 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x5285e33d free_netdev +EXPORT_SYMBOL vmlinux 0x52971547 __lock_buffer +EXPORT_SYMBOL vmlinux 0x52a787a6 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x52d02abc dev_driver_string +EXPORT_SYMBOL vmlinux 0x52d29162 elv_add_request +EXPORT_SYMBOL vmlinux 0x530a95a0 d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0x530b5985 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x531132f2 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x531cbdc5 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x531e1c4a tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x5328b4bd take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x535c6772 read_cache_page +EXPORT_SYMBOL vmlinux 0x5364aed0 dev_warn +EXPORT_SYMBOL vmlinux 0x5372b409 write_one_page +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x53d89549 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x53f04062 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x53f61870 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x540862e2 diag14 +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x5420a052 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x543d146b jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x5442f268 force_sig +EXPORT_SYMBOL vmlinux 0x544cddc5 load_nls_default +EXPORT_SYMBOL vmlinux 0x54a4ea6f printk_emit +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54ae18ae may_umount +EXPORT_SYMBOL vmlinux 0x54ae5706 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x54b597f7 d_make_root +EXPORT_SYMBOL vmlinux 0x54bedea1 blk_free_tags +EXPORT_SYMBOL vmlinux 0x54cb1eb0 set_bh_page +EXPORT_SYMBOL vmlinux 0x54df1680 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x550e66d6 __dax_fault +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x55293873 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x5530a59e tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x55678b4b bsearch +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x5596bfee set_disk_ro +EXPORT_SYMBOL vmlinux 0x5596c993 elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x55a3f3e0 sclp_add_request +EXPORT_SYMBOL vmlinux 0x55a79e7c configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0x55d436e1 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x55d94fc1 inet_put_port +EXPORT_SYMBOL vmlinux 0x55e3b2c4 padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x55fbaf1d smsg_unregister_callback +EXPORT_SYMBOL vmlinux 0x560b168d diag_stat_inc +EXPORT_SYMBOL vmlinux 0x562849b6 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x564d0b95 __quota_error +EXPORT_SYMBOL vmlinux 0x566e7a56 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x56790e69 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x56a99f01 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x56b37ea4 tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x56bddb81 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56d396fc dentry_unhash +EXPORT_SYMBOL vmlinux 0x56e61e21 follow_up +EXPORT_SYMBOL vmlinux 0x56ee4390 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x570c3899 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x5734cc16 load_nls +EXPORT_SYMBOL vmlinux 0x573ddae0 dev_add_offload +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57639b70 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x5769f3cc inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0x577a0b8f tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x5786dfcc path_nosuid +EXPORT_SYMBOL vmlinux 0x579955da set_nlink +EXPORT_SYMBOL vmlinux 0x57a8dcc8 __do_once_done +EXPORT_SYMBOL vmlinux 0x57b76024 done_path_create +EXPORT_SYMBOL vmlinux 0x57bb132b copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x5810af69 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x5823cdd3 completion_done +EXPORT_SYMBOL vmlinux 0x584469b2 tty_devnum +EXPORT_SYMBOL vmlinux 0x5847b8af tcw_finalize +EXPORT_SYMBOL vmlinux 0x5850ae32 __sock_create +EXPORT_SYMBOL vmlinux 0x5852e938 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x585cd390 netdev_change_features +EXPORT_SYMBOL vmlinux 0x586319dc nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x58647d17 config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x5866a757 kill_pgrp +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58cd1b54 string_escape_mem +EXPORT_SYMBOL vmlinux 0x58d239f8 nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58ebb9f9 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x58f0c853 km_state_expired +EXPORT_SYMBOL vmlinux 0x59039aee elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x5939b5a6 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x593e3820 param_get_short +EXPORT_SYMBOL vmlinux 0x594c7e79 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x5954ecaa add_disk +EXPORT_SYMBOL vmlinux 0x596d79fe xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x5981975d xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x598a293d request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x59966df2 ll_rw_block +EXPORT_SYMBOL vmlinux 0x59aaece5 blk_run_queue +EXPORT_SYMBOL vmlinux 0x59c9a864 flow_cache_lookup +EXPORT_SYMBOL vmlinux 0x5a19e3da pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x5a34a45c __kmalloc +EXPORT_SYMBOL vmlinux 0x5a4241ed tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0x5a5aef12 dup_iter +EXPORT_SYMBOL vmlinux 0x5a5e7ea3 simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x5a6d7223 lease_modify +EXPORT_SYMBOL vmlinux 0x5aeb4e2f jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x5afc94e2 inet_shutdown +EXPORT_SYMBOL vmlinux 0x5b08aafe __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x5b0b04b5 vfs_readv +EXPORT_SYMBOL vmlinux 0x5b188b99 sock_update_memcg +EXPORT_SYMBOL vmlinux 0x5b27c487 module_refcount +EXPORT_SYMBOL vmlinux 0x5b28bf5d memremap +EXPORT_SYMBOL vmlinux 0x5b47a58f scsi_print_sense +EXPORT_SYMBOL vmlinux 0x5b604bd1 segment_type +EXPORT_SYMBOL vmlinux 0x5b7e5cc4 tcp_connect +EXPORT_SYMBOL vmlinux 0x5b955460 vfs_getxattr_alloc +EXPORT_SYMBOL vmlinux 0x5bae8b07 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x5bb74cfa trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0x5bbff0f8 gen_new_estimator +EXPORT_SYMBOL vmlinux 0x5bf20da3 inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0x5c07d59d pneigh_lookup +EXPORT_SYMBOL vmlinux 0x5c0fcd92 d_move +EXPORT_SYMBOL vmlinux 0x5c3bd83a xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x5c575445 unregister_service_level +EXPORT_SYMBOL vmlinux 0x5c58e943 vfs_whiteout +EXPORT_SYMBOL vmlinux 0x5cad5048 raw3270_deactivate_view +EXPORT_SYMBOL vmlinux 0x5cb34030 kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0x5cc32bdc bitmap_copy_le +EXPORT_SYMBOL vmlinux 0x5cca971c cdev_add +EXPORT_SYMBOL vmlinux 0x5cde339a truncate_pagecache +EXPORT_SYMBOL vmlinux 0x5d0f86d7 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x5d11d95c trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x5d3a39e6 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x5d43475f scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d57f209 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x5d60dca9 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x5d61e3f9 bio_add_page +EXPORT_SYMBOL vmlinux 0x5d6cb516 debug_event_common +EXPORT_SYMBOL vmlinux 0x5d84ab70 padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0x5da21f25 skb_dequeue +EXPORT_SYMBOL vmlinux 0x5dbbe98e memmove +EXPORT_SYMBOL vmlinux 0x5dbe5093 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x5dbfb642 skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0x5dc0f338 diag_stat_inc_norecursion +EXPORT_SYMBOL vmlinux 0x5de1ca19 lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x5de4df4a sock_i_uid +EXPORT_SYMBOL vmlinux 0x5df08f8c address_space_init_once +EXPORT_SYMBOL vmlinux 0x5df5e340 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x5dfe12b3 devm_memremap +EXPORT_SYMBOL vmlinux 0x5e0148a4 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x5e1881e0 bio_advance +EXPORT_SYMBOL vmlinux 0x5e19f00e sk_stream_error +EXPORT_SYMBOL vmlinux 0x5e2f675a blk_get_request +EXPORT_SYMBOL vmlinux 0x5e448a76 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x5e68677e elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0x5e6c5de2 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x5e86171d raw3270_unregister_notifier +EXPORT_SYMBOL vmlinux 0x5e89b4ce dev_base_lock +EXPORT_SYMBOL vmlinux 0x5e8cc2b8 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e97488d kern_unmount +EXPORT_SYMBOL vmlinux 0x5ea0f1e0 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ec26101 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x5ec5638e skb_make_writable +EXPORT_SYMBOL vmlinux 0x5edf1a4f xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x5ee3c32a zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x5ee55110 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x5efb8771 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x5efffd12 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f08bf8d vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f15f345 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x5f1a07f1 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x5f3231ee dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x5f4b2de8 cio_irb +EXPORT_SYMBOL vmlinux 0x5f4c73b0 __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0x5f5d2c3f scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x5f6c048b skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x5f778261 raw3270_request_alloc +EXPORT_SYMBOL vmlinux 0x5f8da53c noop_llseek +EXPORT_SYMBOL vmlinux 0x5f8fe173 prepare_to_wait +EXPORT_SYMBOL vmlinux 0x5fac6e24 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x5fd2298e strnstr +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5fe3cac3 register_console +EXPORT_SYMBOL vmlinux 0x5ff60f43 prepare_binprm +EXPORT_SYMBOL vmlinux 0x5ffaf2de arch_spin_trylock_retry +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x608e5cbf __scsi_add_device +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x609602bd security_d_instantiate +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a279fa ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x60b92c41 tty_mutex +EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x611136e8 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x612d35f0 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x614a85d5 udp_del_offload +EXPORT_SYMBOL vmlinux 0x614bb773 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x614d095c wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x616eaeb4 free_buffer_head +EXPORT_SYMBOL vmlinux 0x617d1cca insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x61917ea2 dev_uc_init +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61b93212 mod_virt_timer_periodic +EXPORT_SYMBOL vmlinux 0x61c0966e sg_miter_skip +EXPORT_SYMBOL vmlinux 0x61dbea6b security_path_mkdir +EXPORT_SYMBOL vmlinux 0x61e5137e iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x61e743ae tty_unregister_device +EXPORT_SYMBOL vmlinux 0x61f7b551 compat_nf_setsockopt +EXPORT_SYMBOL vmlinux 0x61f84731 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x620b7d87 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x621a1427 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x6238e247 padata_start +EXPORT_SYMBOL vmlinux 0x62477c78 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x625ba9c4 blk_peek_request +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x628cfa17 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x629e744b inet_addr_type +EXPORT_SYMBOL vmlinux 0x629fd01d tso_count_descs +EXPORT_SYMBOL vmlinux 0x62d0f585 seq_printf +EXPORT_SYMBOL vmlinux 0x62d7ca43 seq_vprintf +EXPORT_SYMBOL vmlinux 0x62ddf82d pci_get_slot +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x6319b8e9 inet6_add_offload +EXPORT_SYMBOL vmlinux 0x631e5ce4 vfs_readf +EXPORT_SYMBOL vmlinux 0x6332ea0c qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x633a2d16 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x63420993 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x63488071 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x6357c2b3 inet6_bind +EXPORT_SYMBOL vmlinux 0x637e3e67 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x6399cc4d register_cdrom +EXPORT_SYMBOL vmlinux 0x63a1ac2f elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63ab3b8f dns_query +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63ead3ef __put_cred +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63f80226 pci_dev_get +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x640e51c9 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x641487c9 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x6419aec0 __vfs_write +EXPORT_SYMBOL vmlinux 0x641f932b km_report +EXPORT_SYMBOL vmlinux 0x6431b30d tcp_destroy_cgroup +EXPORT_SYMBOL vmlinux 0x644e53e6 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x644ef03e proc_symlink +EXPORT_SYMBOL vmlinux 0x647d78ef proc_set_size +EXPORT_SYMBOL vmlinux 0x6483e27d always_delete_dentry +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64ead80b zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x64f980ca simple_unlink +EXPORT_SYMBOL vmlinux 0x65194b7c xfrm_input +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x653a80e8 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x6546c0c7 generic_getxattr +EXPORT_SYMBOL vmlinux 0x65b49e45 __netif_schedule +EXPORT_SYMBOL vmlinux 0x65b6ba57 pci_find_capability +EXPORT_SYMBOL vmlinux 0x65b871f8 param_ops_byte +EXPORT_SYMBOL vmlinux 0x65ba4f28 bio_phys_segments +EXPORT_SYMBOL vmlinux 0x65d20730 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x65daa364 tcw_set_tsb +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65ee898e kern_path +EXPORT_SYMBOL vmlinux 0x65f1765e netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x66094e28 __sb_end_write +EXPORT_SYMBOL vmlinux 0x66130485 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0x662084ae jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x6655b29e prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x668a522b file_open_root +EXPORT_SYMBOL vmlinux 0x668c3971 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x66c4d05f iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x66e69897 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x66e927f5 generic_file_open +EXPORT_SYMBOL vmlinux 0x66f24545 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x670cf5ae __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x672144bd strlcpy +EXPORT_SYMBOL vmlinux 0x6724e119 crc32_le +EXPORT_SYMBOL vmlinux 0x67267630 netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create +EXPORT_SYMBOL vmlinux 0x677a90fa xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x67a0757b override_creds +EXPORT_SYMBOL vmlinux 0x67adb2a4 mpage_writepages +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67d70951 cdrom_open +EXPORT_SYMBOL vmlinux 0x67f8b9cc ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x684151a0 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x6843a88f generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x686c30bf seq_file_path +EXPORT_SYMBOL vmlinux 0x6871adbb balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x687422cb vfs_create +EXPORT_SYMBOL vmlinux 0x687701af kill_anon_super +EXPORT_SYMBOL vmlinux 0x6889c788 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x6898c688 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x68a33e98 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x6903d165 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x69224ca5 console_start +EXPORT_SYMBOL vmlinux 0x693110be get_super +EXPORT_SYMBOL vmlinux 0x693cf883 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x6974c52e lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0x698f3afe debug_dflt_header_fn +EXPORT_SYMBOL vmlinux 0x699483cf tty_port_open +EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69ba725b seq_hex_dump +EXPORT_SYMBOL vmlinux 0x69c9ee86 param_ops_string +EXPORT_SYMBOL vmlinux 0x69ccb8a9 dquot_quota_off +EXPORT_SYMBOL vmlinux 0x69d2b661 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x69f6de90 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a603118 iput +EXPORT_SYMBOL vmlinux 0x6a63f0c4 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x6a69949f release_pages +EXPORT_SYMBOL vmlinux 0x6a73cb33 skb_append +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6a8ced7c scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x6a8d45b2 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x6a962b19 vfs_write +EXPORT_SYMBOL vmlinux 0x6ac08549 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b37e0b1 generic_removexattr +EXPORT_SYMBOL vmlinux 0x6b3e58fe xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x6b4ca037 nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0x6b651d6a mount_pseudo +EXPORT_SYMBOL vmlinux 0x6b831ab5 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x6bb2898d netif_carrier_off +EXPORT_SYMBOL vmlinux 0x6bbc6619 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bc7c311 kmalloc_order +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6be15d2c wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x6be2fa64 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x6bede136 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer +EXPORT_SYMBOL vmlinux 0x6c1350a2 dma_common_mmap +EXPORT_SYMBOL vmlinux 0x6c1914f5 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x6c1eb6b5 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x6c1eff06 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x6c2280f0 km_query +EXPORT_SYMBOL vmlinux 0x6c2dd8b6 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x6c31b0a6 blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0x6c440651 init_virt_timer +EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat +EXPORT_SYMBOL vmlinux 0x6c546d9a dev_set_group +EXPORT_SYMBOL vmlinux 0x6c5660b9 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c729edd get_empty_filp +EXPORT_SYMBOL vmlinux 0x6c73c1fd __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x6cb36d4a __seq_open_private +EXPORT_SYMBOL vmlinux 0x6ce8dedd key_put +EXPORT_SYMBOL vmlinux 0x6cef5cf9 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x6cf4207d param_ops_ushort +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d126a41 set_wb_congested +EXPORT_SYMBOL vmlinux 0x6d1ea6ec strlcat +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d509146 tcw_get_intrg +EXPORT_SYMBOL vmlinux 0x6d562249 blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x6d5cf03d clear_wb_congested +EXPORT_SYMBOL vmlinux 0x6d6ce3f2 lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x6d8a6007 passthru_features_check +EXPORT_SYMBOL vmlinux 0x6d9288d2 idr_for_each +EXPORT_SYMBOL vmlinux 0x6da5eafb nf_afinfo +EXPORT_SYMBOL vmlinux 0x6dab08a4 config_group_find_item +EXPORT_SYMBOL vmlinux 0x6db4d0a5 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x6db8df06 nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0x6dbad639 udp_poll +EXPORT_SYMBOL vmlinux 0x6ddca21d down_trylock +EXPORT_SYMBOL vmlinux 0x6ddd4934 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x6deb3179 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6dff3eed elevator_exit +EXPORT_SYMBOL vmlinux 0x6e00b8cb _ebcasc +EXPORT_SYMBOL vmlinux 0x6e0148ac alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x6e0218c7 cdev_del +EXPORT_SYMBOL vmlinux 0x6e08582f netdev_printk +EXPORT_SYMBOL vmlinux 0x6e1bf6f2 vfs_getattr +EXPORT_SYMBOL vmlinux 0x6e4413b8 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e72de2a trace_print_array_seq +EXPORT_SYMBOL vmlinux 0x6e7f0fd2 cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x6e828aad percpu_counter_set +EXPORT_SYMBOL vmlinux 0x6e9ad290 cpu_have_feature +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6eb58e4d scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x6ed52769 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x6f055127 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x6f164daa xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0x6f200b03 tcw_set_intrg +EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash +EXPORT_SYMBOL vmlinux 0x6f5ef93d memchr_inv +EXPORT_SYMBOL vmlinux 0x6f6d1eb9 nf_hook_slow +EXPORT_SYMBOL vmlinux 0x6f915271 airq_iv_create +EXPORT_SYMBOL vmlinux 0x6f943e50 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x6fb983c6 __register_binfmt +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fc7e626 memzero_explicit +EXPORT_SYMBOL vmlinux 0x6fd6e15c blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x7004a806 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x7009948c pci_write_vpd +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x70596eb7 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync +EXPORT_SYMBOL vmlinux 0x70706076 fget_raw +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x70c4cf5b dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x70cc4873 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x71052b6b dev_addr_add +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x712bd9d1 blk_start_queue_async +EXPORT_SYMBOL vmlinux 0x7139c2c5 nf_log_register +EXPORT_SYMBOL vmlinux 0x7145aef0 segment_load +EXPORT_SYMBOL vmlinux 0x715c4d51 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x717581b3 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71c0c3a8 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0x71ca3fee path_get +EXPORT_SYMBOL vmlinux 0x71e90e9f alloc_file +EXPORT_SYMBOL vmlinux 0x71ef0456 sock_no_bind +EXPORT_SYMBOL vmlinux 0x71f7bbf7 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x721bbc75 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x723c6f60 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x7242e96d strnchr +EXPORT_SYMBOL vmlinux 0x7255beeb noop_qdisc +EXPORT_SYMBOL vmlinux 0x725f76a4 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0x72875a12 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x72a0b37a netlink_unicast +EXPORT_SYMBOL vmlinux 0x72a98315 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x72e33a44 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x730d4e0b lg_local_lock +EXPORT_SYMBOL vmlinux 0x73271f13 __lock_page +EXPORT_SYMBOL vmlinux 0x732fdc16 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x738077e2 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x738dc1ac vmemmap +EXPORT_SYMBOL vmlinux 0x73a7ec88 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x73bf20c6 _ascebc +EXPORT_SYMBOL vmlinux 0x73d45815 param_get_charp +EXPORT_SYMBOL vmlinux 0x73d662c7 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x73e578dd __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x73e7b0b5 ccw_device_halt +EXPORT_SYMBOL vmlinux 0x73eb99c2 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x741f70a9 debug_stop_all +EXPORT_SYMBOL vmlinux 0x742625c8 get_acl +EXPORT_SYMBOL vmlinux 0x74408894 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x7445c996 netdev_master_upper_dev_link_private +EXPORT_SYMBOL vmlinux 0x7446b28e pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x7459d982 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x745af689 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x745f44c0 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x747da64d file_ns_capable +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x74aadf80 account_page_dirtied +EXPORT_SYMBOL vmlinux 0x74bc0f34 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c3917e udplite_table +EXPORT_SYMBOL vmlinux 0x74e1b79a __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x75452ce8 tty_write_room +EXPORT_SYMBOL vmlinux 0x75555cd0 param_array_ops +EXPORT_SYMBOL vmlinux 0x7564622f elevator_alloc +EXPORT_SYMBOL vmlinux 0x757530e8 mem_cgroup_end_page_stat +EXPORT_SYMBOL vmlinux 0x758eb23c revert_creds +EXPORT_SYMBOL vmlinux 0x758fdcf1 ida_get_new_above +EXPORT_SYMBOL vmlinux 0x75a958ec sk_ns_capable +EXPORT_SYMBOL vmlinux 0x75ac0197 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x75ac5cbf finish_no_open +EXPORT_SYMBOL vmlinux 0x75ad7134 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75bec21c bh_submit_read +EXPORT_SYMBOL vmlinux 0x75d10cae debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x75d6b195 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x75ec1e5d tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x75f687ca bio_integrity_free +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x76112f13 proc_mkdir +EXPORT_SYMBOL vmlinux 0x7611ff7f from_kuid +EXPORT_SYMBOL vmlinux 0x76387c53 padata_free +EXPORT_SYMBOL vmlinux 0x7642537b skb_seq_read +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764bd77c request_resource +EXPORT_SYMBOL vmlinux 0x7671baa8 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x768f84b1 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x768f8dda blk_sync_queue +EXPORT_SYMBOL vmlinux 0x76c5f70a dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x76cac177 devm_release_resource +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76db593e eth_validate_addr +EXPORT_SYMBOL vmlinux 0x76dde437 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x76f46433 vfs_writev +EXPORT_SYMBOL vmlinux 0x770431b2 set_blocksize +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x777e33ee bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x7792edb4 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x7797ce63 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77c923d1 param_ops_bint +EXPORT_SYMBOL vmlinux 0x77d22fa1 dev_mc_init +EXPORT_SYMBOL vmlinux 0x77f768b0 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x7803dffc __wake_up +EXPORT_SYMBOL vmlinux 0x78043489 pci_assign_resource +EXPORT_SYMBOL vmlinux 0x780b64d6 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x782acba5 crc_t10dif +EXPORT_SYMBOL vmlinux 0x782c1e79 alloc_disk +EXPORT_SYMBOL vmlinux 0x782d2fd2 mpage_readpages +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x785ebf62 pci_get_subsys +EXPORT_SYMBOL vmlinux 0x7864414c add_virt_timer_periodic +EXPORT_SYMBOL vmlinux 0x786d88e9 dev_mc_del +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x788a663d ether_setup +EXPORT_SYMBOL vmlinux 0x78952031 page_symlink +EXPORT_SYMBOL vmlinux 0x7898bcbc __devm_request_region +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78b9cf85 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x78c6f2b7 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x78cd444f kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78fc66a9 generic_fillattr +EXPORT_SYMBOL vmlinux 0x791fc072 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x792e0d45 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x7951a4f1 generic_update_time +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x79707cb1 inet_accept +EXPORT_SYMBOL vmlinux 0x797a325a scsi_execute +EXPORT_SYMBOL vmlinux 0x797dd0f6 page_follow_link_light +EXPORT_SYMBOL vmlinux 0x7985d043 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x799d9b97 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79b62961 mod_virt_timer +EXPORT_SYMBOL vmlinux 0x79f21dd2 empty_aops +EXPORT_SYMBOL vmlinux 0x7a01bf83 blk_finish_request +EXPORT_SYMBOL vmlinux 0x7a0a2a30 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x7a169106 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x7a198ff0 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x7a24bcce user_path_at_empty +EXPORT_SYMBOL vmlinux 0x7a3754e1 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a4a88be dev_crit +EXPORT_SYMBOL vmlinux 0x7a64c8af tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x7a6cdedc do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a939ca7 up_read +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aa86d49 commit_creds +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ad5e94f get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x7addce80 neigh_xmit +EXPORT_SYMBOL vmlinux 0x7ae73de1 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b36d73e set_groups +EXPORT_SYMBOL vmlinux 0x7b45e07a put_tty_driver +EXPORT_SYMBOL vmlinux 0x7b5a7137 strncat +EXPORT_SYMBOL vmlinux 0x7b5d2049 __register_chrdev +EXPORT_SYMBOL vmlinux 0x7b638328 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x7b79bc84 find_get_entry +EXPORT_SYMBOL vmlinux 0x7b884110 dev_mc_flush +EXPORT_SYMBOL vmlinux 0x7b8f4c40 key_create_or_update +EXPORT_SYMBOL vmlinux 0x7bb529d9 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x7bf479fe resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c246f22 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x7c251169 irq_to_desc +EXPORT_SYMBOL vmlinux 0x7c3dbaac kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x7c5d4a3a sclp_reactivate +EXPORT_SYMBOL vmlinux 0x7c61340c __release_region +EXPORT_SYMBOL vmlinux 0x7c689ec0 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x7c7362ad tcw_get_data +EXPORT_SYMBOL vmlinux 0x7c74b9e6 blk_start_queue +EXPORT_SYMBOL vmlinux 0x7ca88cf2 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x7ca95ecd blk_start_request +EXPORT_SYMBOL vmlinux 0x7cacd979 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cb1f1fa jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x7cdda3af vfs_rename +EXPORT_SYMBOL vmlinux 0x7cdfbb9e vfs_symlink +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7cff93ea wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x7d0847fb __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d33cac2 check_disk_size_change +EXPORT_SYMBOL vmlinux 0x7d4444c5 mntput +EXPORT_SYMBOL vmlinux 0x7d57fde5 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d76399f blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x7d99b5cb import_iovec +EXPORT_SYMBOL vmlinux 0x7d9f4fcb blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x7dc99cd0 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x7def10a4 elv_rb_add +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e31268e dev_mc_add +EXPORT_SYMBOL vmlinux 0x7e802869 xattr_full_name +EXPORT_SYMBOL vmlinux 0x7e9c1127 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x7ead5569 ihold +EXPORT_SYMBOL vmlinux 0x7ec60f70 arp_tbl +EXPORT_SYMBOL vmlinux 0x7ec81ad3 __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0x7ec98f84 dev_notice +EXPORT_SYMBOL vmlinux 0x7ee52175 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7ee9eba3 iucv_register +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f144384 d_alloc_name +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f263ed9 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x7f2846ab sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x7f32a25e inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x7f46db15 generic_start_io_acct +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f8c542b skb_checksum +EXPORT_SYMBOL vmlinux 0x7f8d050f tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x7f98ceff pci_enable_msix +EXPORT_SYMBOL vmlinux 0x7fbd10d2 radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x7fce7be2 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7ff59443 secpath_dup +EXPORT_SYMBOL vmlinux 0x8013131a remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x8015e9a6 tty_name +EXPORT_SYMBOL vmlinux 0x80281877 read_code +EXPORT_SYMBOL vmlinux 0x8034fc58 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x803ec16b compat_tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x805485ab __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x805db99f generic_file_mmap +EXPORT_SYMBOL vmlinux 0x805f251e napi_consume_skb +EXPORT_SYMBOL vmlinux 0x8068c15c kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x807067c6 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x8073ac77 down_interruptible +EXPORT_SYMBOL vmlinux 0x80791a8c radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0x80906917 dev_printk +EXPORT_SYMBOL vmlinux 0x809be2b2 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x80a8c8ab kobject_add +EXPORT_SYMBOL vmlinux 0x80c032f6 locks_remove_posix +EXPORT_SYMBOL vmlinux 0x80c91f82 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80daf4a1 __invalidate_device +EXPORT_SYMBOL vmlinux 0x8128c039 smsg_register_callback +EXPORT_SYMBOL vmlinux 0x813870ce fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x8155059f dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x81647fb5 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x8193d172 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x819cf049 mount_bdev +EXPORT_SYMBOL vmlinux 0x81a9c43a __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x81c58404 __breadahead +EXPORT_SYMBOL vmlinux 0x81d35bfe tcw_get_tccb +EXPORT_SYMBOL vmlinux 0x81d9a403 tcp_req_err +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x82387170 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x824519f1 finish_wait +EXPORT_SYMBOL vmlinux 0x82458f7f radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x8255bc12 bio_clone_fast +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x827d3c57 bio_put +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x8284ef71 block_write_end +EXPORT_SYMBOL vmlinux 0x828a970e fput +EXPORT_SYMBOL vmlinux 0x82a0ea81 security_path_rename +EXPORT_SYMBOL vmlinux 0x82a5175e md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x82a867a1 scsi_print_command +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82b5912f nvm_unregister_target +EXPORT_SYMBOL vmlinux 0x82c30cae inet_del_protocol +EXPORT_SYMBOL vmlinux 0x82ce1c16 nobh_writepage +EXPORT_SYMBOL vmlinux 0x83020000 bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x830dce28 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x835ab8f5 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x836cf18e bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x838989ad mpage_writepage +EXPORT_SYMBOL vmlinux 0x838e847e skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8394460f __pci_register_driver +EXPORT_SYMBOL vmlinux 0x83a06ac9 blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x842ab4ee security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x8431732c blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x843d13cb dquot_commit +EXPORT_SYMBOL vmlinux 0x843f118f pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x843f9f68 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x844e3767 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x8468bc1b md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x847060aa simple_nosetlease +EXPORT_SYMBOL vmlinux 0x8475060b raw3270_request_add_data +EXPORT_SYMBOL vmlinux 0x847765e9 __crc32c_le +EXPORT_SYMBOL vmlinux 0x84884ed2 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x84968f1d inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x8498f693 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x84a02c72 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x84a16b47 kobject_set_name +EXPORT_SYMBOL vmlinux 0x84d7118e __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x84d75752 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x84db8785 iucv_bus +EXPORT_SYMBOL vmlinux 0x84e4405d tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x84e84188 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x85010da8 ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0x8521beb3 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x8532fb9d tty_free_termios +EXPORT_SYMBOL vmlinux 0x855f0f4d __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x85abc85f strncmp +EXPORT_SYMBOL vmlinux 0x85c1ce03 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x85cc21ba n_tty_compat_ioctl_helper +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x862041c1 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x8644ccb2 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x864dcf28 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x86865a36 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x8692f00e inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x8694be8e blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x869aa7ee blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0x86a256a7 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86ad1505 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x86b6e14e blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x86c0f3fe blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x86e15713 blk_recount_segments +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x870af89b page_readlink +EXPORT_SYMBOL vmlinux 0x870d72c4 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x8718b540 dquot_operations +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x872263ad unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0x87297f6a set_user_nice +EXPORT_SYMBOL vmlinux 0x874cf864 consume_skb +EXPORT_SYMBOL vmlinux 0x87636dd9 tcw_set_tccb +EXPORT_SYMBOL vmlinux 0x87774fe1 __kernel_write +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x8790f3a8 neigh_table_init +EXPORT_SYMBOL vmlinux 0x879a220d pci_release_regions +EXPORT_SYMBOL vmlinux 0x87c58a96 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x87e92b05 napi_get_frags +EXPORT_SYMBOL vmlinux 0x880026b5 scsi_add_device +EXPORT_SYMBOL vmlinux 0x8800dcf8 netdev_crit +EXPORT_SYMBOL vmlinux 0x88146973 idr_destroy +EXPORT_SYMBOL vmlinux 0x88256823 get_gendisk +EXPORT_SYMBOL vmlinux 0x8833bc7e __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x883aa781 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x887fa47e __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x888847b0 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x88a80ffd sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x88b0ce0c __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x88b48729 nvm_register_target +EXPORT_SYMBOL vmlinux 0x88c238d3 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0x88c38505 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x88cea752 node_states +EXPORT_SYMBOL vmlinux 0x88d59144 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x88f5d71d skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x88f8425b param_get_ullong +EXPORT_SYMBOL vmlinux 0x88fc6022 lg_local_unlock +EXPORT_SYMBOL vmlinux 0x88fcd027 __secpath_destroy +EXPORT_SYMBOL vmlinux 0x8914abe8 _raw_read_trylock_retry +EXPORT_SYMBOL vmlinux 0x891a5080 dev_err +EXPORT_SYMBOL vmlinux 0x892de3fb __nla_put +EXPORT_SYMBOL vmlinux 0x898df814 md_write_start +EXPORT_SYMBOL vmlinux 0x899b6002 d_genocide +EXPORT_SYMBOL vmlinux 0x89a438d2 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89c59df4 sk_wait_data +EXPORT_SYMBOL vmlinux 0x89c7d3b7 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x89ca1fd4 down_read_trylock +EXPORT_SYMBOL vmlinux 0x89cbaa25 md_cluster_mod +EXPORT_SYMBOL vmlinux 0x89effab2 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x89fcc950 __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x89ff68fa ida_pre_get +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a26b4fe pagecache_write_end +EXPORT_SYMBOL vmlinux 0x8a31058b __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a607c79 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x8a62ef55 nobh_write_end +EXPORT_SYMBOL vmlinux 0x8a6ace06 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a92357f __scm_destroy +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8a9f9cac bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x8b000af7 __register_nls +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b7d476e sock_no_poll +EXPORT_SYMBOL vmlinux 0x8b7fe311 kmemdup +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b957622 add_virt_timer +EXPORT_SYMBOL vmlinux 0x8b99123f kernel_read +EXPORT_SYMBOL vmlinux 0x8ba4029a netdev_update_features +EXPORT_SYMBOL vmlinux 0x8bb28aab ccw_device_is_multipath +EXPORT_SYMBOL vmlinux 0x8bb4f178 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x8bcd9ea8 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x8bd3e641 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x8c168e4a tcf_exts_change +EXPORT_SYMBOL vmlinux 0x8c4d0dcf pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c7d83fe param_ops_long +EXPORT_SYMBOL vmlinux 0x8c8a9663 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0x8cc6b464 __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x8cd5e0c2 dquot_get_state +EXPORT_SYMBOL vmlinux 0x8cfb9fe2 blk_end_request +EXPORT_SYMBOL vmlinux 0x8d08c78a lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0x8d33b6b7 xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d64dff8 del_gendisk +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d764d1b pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x8d99b1a6 crc32_le_shift +EXPORT_SYMBOL vmlinux 0x8daa3202 blk_requeue_request +EXPORT_SYMBOL vmlinux 0x8dae4221 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x8dd69c5c __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x8de1e667 simple_statfs +EXPORT_SYMBOL vmlinux 0x8df004b4 bdi_register_dev +EXPORT_SYMBOL vmlinux 0x8e2bc44a dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x8e63475e netif_napi_add +EXPORT_SYMBOL vmlinux 0x8e6b65d3 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x8e73c97a rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e879bb7 __vmalloc +EXPORT_SYMBOL vmlinux 0x8ebc6e09 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x8ec7782b blk_mq_all_tag_busy_iter +EXPORT_SYMBOL vmlinux 0x8ef8b622 netdev_warn +EXPORT_SYMBOL vmlinux 0x8ef95e6c skb_split +EXPORT_SYMBOL vmlinux 0x8efd1e35 dq_data_lock +EXPORT_SYMBOL vmlinux 0x8f5e72cb simple_write_begin +EXPORT_SYMBOL vmlinux 0x8f636d23 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x8fc39f2d param_ops_short +EXPORT_SYMBOL vmlinux 0x8fdf05d7 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x8fe5806b pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x9001b5e6 generic_setxattr +EXPORT_SYMBOL vmlinux 0x900654e7 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x904cf22c tty_hangup +EXPORT_SYMBOL vmlinux 0x90684486 nonseekable_open +EXPORT_SYMBOL vmlinux 0x9085ccdb bio_init +EXPORT_SYMBOL vmlinux 0x90e0c532 dev_emerg +EXPORT_SYMBOL vmlinux 0x90e4bd9a md_integrity_register +EXPORT_SYMBOL vmlinux 0x90f371fc locks_mandatory_area +EXPORT_SYMBOL vmlinux 0x91034570 dev_uc_del +EXPORT_SYMBOL vmlinux 0x9106d3f7 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x9116b417 save_fpu_regs +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x914707b0 param_set_bint +EXPORT_SYMBOL vmlinux 0x915d792b blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0x9161143e inet_getname +EXPORT_SYMBOL vmlinux 0x916627e2 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x916cfe4f neigh_update +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x91b1c937 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x91b6bf71 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x91f6f464 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x9204a0c1 dst_alloc +EXPORT_SYMBOL vmlinux 0x9221372c try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x92230ab3 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x92392cd9 iov_shorten +EXPORT_SYMBOL vmlinux 0x924d90ef nvm_put_blk +EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm +EXPORT_SYMBOL vmlinux 0x92e4b7c4 __block_write_begin +EXPORT_SYMBOL vmlinux 0x92e850a3 __inet_hash +EXPORT_SYMBOL vmlinux 0x92fe6ff2 lg_global_lock +EXPORT_SYMBOL vmlinux 0x932ca4d5 posix_acl_valid +EXPORT_SYMBOL vmlinux 0x933d0772 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x9347696e netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x935db38e tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0x93727ceb nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x938f4521 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93c72874 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x93d675fb param_get_bool +EXPORT_SYMBOL vmlinux 0x93e9d3b4 iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x94190fd1 security_path_symlink +EXPORT_SYMBOL vmlinux 0x942b6f11 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x944fe0ea dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x945775a5 segment_save +EXPORT_SYMBOL vmlinux 0x946c8a97 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x947617a8 dquot_resume +EXPORT_SYMBOL vmlinux 0x9481965f new_inode +EXPORT_SYMBOL vmlinux 0x948a1894 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94a57592 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x94bc1f21 genlmsg_put +EXPORT_SYMBOL vmlinux 0x94c08b45 sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x94d3c9fd posix_lock_file +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x9514151a _mcount +EXPORT_SYMBOL vmlinux 0x95219742 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x952460a3 register_quota_format +EXPORT_SYMBOL vmlinux 0x952dc7d9 raw3270_request_set_cmd +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x954d0b09 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x95697e40 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x95718ca8 submit_bio +EXPORT_SYMBOL vmlinux 0x9581ea62 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0x9585c0bd dev_open +EXPORT_SYMBOL vmlinux 0x95a9d861 sk_common_release +EXPORT_SYMBOL vmlinux 0x95c93188 iunique +EXPORT_SYMBOL vmlinux 0x95ccdefa cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x95ceb864 key_update +EXPORT_SYMBOL vmlinux 0x95d212ea xfrm_state_add +EXPORT_SYMBOL vmlinux 0x95d96e05 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x95e250a1 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x95eab63b param_set_short +EXPORT_SYMBOL vmlinux 0x95fd965a simple_follow_link +EXPORT_SYMBOL vmlinux 0x96332610 security_path_mknod +EXPORT_SYMBOL vmlinux 0x96404e39 itcw_set_data +EXPORT_SYMBOL vmlinux 0x964076ca __module_get +EXPORT_SYMBOL vmlinux 0x96432693 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x9669ecc8 monotonic_clock +EXPORT_SYMBOL vmlinux 0x9671cdb5 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x9679917b jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x96a0e5d9 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x97196302 netlink_set_err +EXPORT_SYMBOL vmlinux 0x971ae8e1 scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0x973f8080 simple_link +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x975feb17 dev_uc_add +EXPORT_SYMBOL vmlinux 0x97669d73 netdev_emerg +EXPORT_SYMBOL vmlinux 0x977a194d __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x97933a04 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x97a907dd pci_disable_msix +EXPORT_SYMBOL vmlinux 0x97abc7c9 bio_integrity_advance +EXPORT_SYMBOL vmlinux 0x97b694ba mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x97bdd413 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x97c92892 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x97e71711 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x97e9a316 seq_open +EXPORT_SYMBOL vmlinux 0x98082893 __copy_to_user +EXPORT_SYMBOL vmlinux 0x982a4e35 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x98314900 drop_nlink +EXPORT_SYMBOL vmlinux 0x9831e9e4 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x983cbeee blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x983f23f5 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x98536c87 wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x98ab50f9 dump_skip +EXPORT_SYMBOL vmlinux 0x98c001d7 sock_register +EXPORT_SYMBOL vmlinux 0x98c68c41 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x98cea64f config_item_init_type_name +EXPORT_SYMBOL vmlinux 0x98f01aa3 seq_putc +EXPORT_SYMBOL vmlinux 0x990c34dd _raw_write_lock_wait +EXPORT_SYMBOL vmlinux 0x9914a64c sock_create_lite +EXPORT_SYMBOL vmlinux 0x992dc7bd pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x9937105d pci_remove_bus +EXPORT_SYMBOL vmlinux 0x993d5bd6 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x9942ec77 itcw_finalize +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x996d128e ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x997823ae register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99b7ea87 get_cached_acl +EXPORT_SYMBOL vmlinux 0x99c394fe make_bad_inode +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x99d3a43c dm_table_get_size +EXPORT_SYMBOL vmlinux 0x99d97a9a bdi_register_owner +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x9a014c15 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x9a148244 eth_change_mtu +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a38082f tty_set_operations +EXPORT_SYMBOL vmlinux 0x9a3c8045 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x9a3fd59e unregister_filesystem +EXPORT_SYMBOL vmlinux 0x9a5723fc inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x9a6d5a3e param_set_ushort +EXPORT_SYMBOL vmlinux 0x9a906daf memscan +EXPORT_SYMBOL vmlinux 0x9a9d96cb d_delete +EXPORT_SYMBOL vmlinux 0x9aabc564 crc16 +EXPORT_SYMBOL vmlinux 0x9ad9cde8 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x9af17468 sg_miter_start +EXPORT_SYMBOL vmlinux 0x9b05fd5f netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x9b25fa5e block_invalidatepage +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b3c374d get_disk +EXPORT_SYMBOL vmlinux 0x9b51750b parent_mem_cgroup +EXPORT_SYMBOL vmlinux 0x9b76848a blk_register_region +EXPORT_SYMBOL vmlinux 0x9b8d07aa strnlen +EXPORT_SYMBOL vmlinux 0x9b9c30b4 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9bb4fc20 tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put +EXPORT_SYMBOL vmlinux 0x9be20c50 audit_log_start +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9beeeb88 kbd_alloc +EXPORT_SYMBOL vmlinux 0x9c245340 from_kuid_munged +EXPORT_SYMBOL vmlinux 0x9c32bec9 iucv_unregister +EXPORT_SYMBOL vmlinux 0x9c383d9f proc_set_user +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c6519b4 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x9c7ea758 dql_init +EXPORT_SYMBOL vmlinux 0x9c8ac6e6 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x9c91b1d4 blkdev_fsync +EXPORT_SYMBOL vmlinux 0x9ca95a0e sort +EXPORT_SYMBOL vmlinux 0x9cc268d4 raw3270_wait_queue +EXPORT_SYMBOL vmlinux 0x9cc718fe dump_truncate +EXPORT_SYMBOL vmlinux 0x9ce10424 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x9cea348f bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x9d052b14 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d1f7113 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d3fa1a7 param_get_int +EXPORT_SYMBOL vmlinux 0x9d4a7880 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x9d4f8825 posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x9d6b26a7 simple_empty +EXPORT_SYMBOL vmlinux 0x9d7d2df5 poll_freewait +EXPORT_SYMBOL vmlinux 0x9d84f2bd __init_rwsem +EXPORT_SYMBOL vmlinux 0x9d85b459 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x9d8da91b netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x9daf1171 dm_get_device +EXPORT_SYMBOL vmlinux 0x9dc94e90 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x9df127a3 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x9df9814a generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x9dfbd41a key_reject_and_link +EXPORT_SYMBOL vmlinux 0x9e0068ab s390_epoch_delta_notifier +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e201d5a ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x9e4da5f2 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e53f8ac remove_proc_entry +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e80e6c3 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource +EXPORT_SYMBOL vmlinux 0x9ed4c8e8 scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0x9ee1d031 pci_get_device +EXPORT_SYMBOL vmlinux 0x9f05ae4a xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x9f3e7b0a nvm_erase_blk +EXPORT_SYMBOL vmlinux 0x9f4017db d_splice_alias +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f558ab5 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x9f7b0e69 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x9f92ea8f user_revoke +EXPORT_SYMBOL vmlinux 0x9f943004 blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9faed7a0 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x9fb40545 default_file_splice_read +EXPORT_SYMBOL vmlinux 0x9fce5bc9 km_policy_notify +EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9ff8dde5 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa005a59c netif_device_attach +EXPORT_SYMBOL vmlinux 0xa03bbdd1 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa0524674 iget_locked +EXPORT_SYMBOL vmlinux 0xa0587d8a xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa05eb875 sclp +EXPORT_SYMBOL vmlinux 0xa0710e44 proto_register +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa09767b7 iov_iter_advance +EXPORT_SYMBOL vmlinux 0xa0a89765 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0d3d560 ksize +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0dc8328 neigh_for_each +EXPORT_SYMBOL vmlinux 0xa0df1179 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0xa0df3daa cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0xa0e3232e tcf_hash_create +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa0ff74d6 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0xa100bdf7 mempool_alloc +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa1472245 fsnotify_put_group +EXPORT_SYMBOL vmlinux 0xa149d105 lock_sock_fast +EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts +EXPORT_SYMBOL vmlinux 0xa14bceb0 __tracepoint_s390_diagnose +EXPORT_SYMBOL vmlinux 0xa14d8cb4 param_get_invbool +EXPORT_SYMBOL vmlinux 0xa1565f2b fget +EXPORT_SYMBOL vmlinux 0xa15b1786 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0xa1783895 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xa1807eba compat_mc_getsockopt +EXPORT_SYMBOL vmlinux 0xa19065ea down_timeout +EXPORT_SYMBOL vmlinux 0xa1b055af compat_ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1cf30e5 unregister_nls +EXPORT_SYMBOL vmlinux 0xa1d5979b find_first_bit_inv +EXPORT_SYMBOL vmlinux 0xa1da85aa udp_proc_register +EXPORT_SYMBOL vmlinux 0xa1e06281 path_noexec +EXPORT_SYMBOL vmlinux 0xa1e79ead key_alloc +EXPORT_SYMBOL vmlinux 0xa1ec8f1c __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa2516bbb neigh_event_ns +EXPORT_SYMBOL vmlinux 0xa26fa4c8 pid_task +EXPORT_SYMBOL vmlinux 0xa2777255 xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa2964702 xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0xa2c402ea __page_cache_alloc +EXPORT_SYMBOL vmlinux 0xa2cd392e sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xa2f36f08 mpage_readpage +EXPORT_SYMBOL vmlinux 0xa2fd5aec pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xa310a706 __iucv_message_receive +EXPORT_SYMBOL vmlinux 0xa3112bc7 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xa335701d inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xa33f7c7c nla_strlcpy +EXPORT_SYMBOL vmlinux 0xa376d3a7 sock_no_mmap +EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get +EXPORT_SYMBOL vmlinux 0xa38b0d95 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xa3a98780 pcim_iomap +EXPORT_SYMBOL vmlinux 0xa3c25075 find_lock_entry +EXPORT_SYMBOL vmlinux 0xa3de2757 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xa3ebfabe rt6_lookup +EXPORT_SYMBOL vmlinux 0xa3eef17e tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xa4051a50 register_netdevice +EXPORT_SYMBOL vmlinux 0xa40be272 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0xa4111201 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0xa41d079c key_revoke +EXPORT_SYMBOL vmlinux 0xa4237791 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xa433af5f simple_transaction_read +EXPORT_SYMBOL vmlinux 0xa44b520a __scsi_format_command +EXPORT_SYMBOL vmlinux 0xa44cebae tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa4810e8c padata_remove_cpu +EXPORT_SYMBOL vmlinux 0xa48f4046 dput +EXPORT_SYMBOL vmlinux 0xa4a94d26 find_next_bit_le +EXPORT_SYMBOL vmlinux 0xa4c41694 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xa4c935c5 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xa4cfa80d keyring_search +EXPORT_SYMBOL vmlinux 0xa4e188e7 strscpy +EXPORT_SYMBOL vmlinux 0xa4f55075 iucv_message_send +EXPORT_SYMBOL vmlinux 0xa5041515 padata_do_parallel +EXPORT_SYMBOL vmlinux 0xa5096843 param_ops_uint +EXPORT_SYMBOL vmlinux 0xa51f51ef file_remove_privs +EXPORT_SYMBOL vmlinux 0xa51fcc03 padata_stop +EXPORT_SYMBOL vmlinux 0xa5233224 migrate_page_copy +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa55f154b __percpu_counter_add +EXPORT_SYMBOL vmlinux 0xa56a871f kmem_cache_free +EXPORT_SYMBOL vmlinux 0xa57160b4 request_firmware +EXPORT_SYMBOL vmlinux 0xa575f18e bd_set_size +EXPORT_SYMBOL vmlinux 0xa588d262 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0xa59cb687 iucv_path_quiesce +EXPORT_SYMBOL vmlinux 0xa59f7d1a scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xa5a6cb8e up_write +EXPORT_SYMBOL vmlinux 0xa5eae887 kbd_ascebc +EXPORT_SYMBOL vmlinux 0xa5f45b65 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0xa636c58c dcache_dir_open +EXPORT_SYMBOL vmlinux 0xa6421a7d dev_mc_del_global +EXPORT_SYMBOL vmlinux 0xa6447987 tcf_action_exec +EXPORT_SYMBOL vmlinux 0xa64505c2 pci_request_region +EXPORT_SYMBOL vmlinux 0xa652bb6c inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6d2402c vfs_iter_read +EXPORT_SYMBOL vmlinux 0xa6dec091 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa7076e08 nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0xa720d6b2 dentry_open +EXPORT_SYMBOL vmlinux 0xa723ff52 blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0xa72a0f5b nr_online_nodes +EXPORT_SYMBOL vmlinux 0xa731a15d __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa7373e70 rtnl_unicast +EXPORT_SYMBOL vmlinux 0xa745fc8b ccw_device_tm_start +EXPORT_SYMBOL vmlinux 0xa747246f unregister_console +EXPORT_SYMBOL vmlinux 0xa755e56b blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xa78bddec tcp_prot +EXPORT_SYMBOL vmlinux 0xa7a6debf d_alloc +EXPORT_SYMBOL vmlinux 0xa7b179c7 xfrm_lookup +EXPORT_SYMBOL vmlinux 0xa7d63ce2 perf_reserve_sampling +EXPORT_SYMBOL vmlinux 0xa7d6ce0b unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xa8035b9b wait_for_key_construction +EXPORT_SYMBOL vmlinux 0xa806fb5e bdevname +EXPORT_SYMBOL vmlinux 0xa80dd31e __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xa82c41d4 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xa83780c8 mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa886a958 krealloc +EXPORT_SYMBOL vmlinux 0xa8a332fa kmalloc_caches +EXPORT_SYMBOL vmlinux 0xa8a51e7a __frontswap_store +EXPORT_SYMBOL vmlinux 0xa8b51710 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0xa8b5c213 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xa8c7a852 sk_mc_loop +EXPORT_SYMBOL vmlinux 0xa8cf0a7c xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xa8d0887e ip_do_fragment +EXPORT_SYMBOL vmlinux 0xa8de80d9 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa90b8d77 ccw_device_get_ciw +EXPORT_SYMBOL vmlinux 0xa90f71e6 blk_get_queue +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa91b6adf generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xa91d90d3 nla_put +EXPORT_SYMBOL vmlinux 0xa9220a25 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xa923d899 ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xa93deeb6 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0xa93f5d17 ida_remove +EXPORT_SYMBOL vmlinux 0xa9490dae xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0xa9741474 dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa9802ba5 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xa992b13d try_to_release_page +EXPORT_SYMBOL vmlinux 0xa9b22e6d forget_cached_acl +EXPORT_SYMBOL vmlinux 0xa9b8f8f6 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xa9c283f3 sk_alloc +EXPORT_SYMBOL vmlinux 0xa9c41db3 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9caf84f security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xa9da599c scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0xa9e43814 tcp_child_process +EXPORT_SYMBOL vmlinux 0xaa128008 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0xaa1bd1de pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0xaa1c8e79 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xaa2df2c2 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0xaa31959f elv_register_queue +EXPORT_SYMBOL vmlinux 0xaa4a0578 block_read_full_page +EXPORT_SYMBOL vmlinux 0xaa6dd92b poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0xaa7f93a2 nf_register_hook +EXPORT_SYMBOL vmlinux 0xaa85bfb5 nvm_get_blk_unlocked +EXPORT_SYMBOL vmlinux 0xaaa113cf seq_write +EXPORT_SYMBOL vmlinux 0xaab905d2 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xaabe6704 airq_iv_free +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaae14754 sock_sendmsg +EXPORT_SYMBOL vmlinux 0xaaf33305 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab0dbcbd scm_fp_dup +EXPORT_SYMBOL vmlinux 0xab1a667b dev_deactivate +EXPORT_SYMBOL vmlinux 0xab1bb381 inet_bind +EXPORT_SYMBOL vmlinux 0xab24e604 kernel_listen +EXPORT_SYMBOL vmlinux 0xab62a4a6 tty_lock +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab7385ec pci_dev_driver +EXPORT_SYMBOL vmlinux 0xab797d7c dquot_initialize +EXPORT_SYMBOL vmlinux 0xabb1f387 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac0e2ab0 d_path +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac322f23 single_open_size +EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear +EXPORT_SYMBOL vmlinux 0xac4e3cd8 try_module_get +EXPORT_SYMBOL vmlinux 0xac50c4e7 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xac5748df path_put +EXPORT_SYMBOL vmlinux 0xac697dca xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xac6c3a71 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xac77aefa invalidate_partition +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacc5b5d2 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0xacca4415 audit_log +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xace3db62 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad2138e0 lock_sock_nested +EXPORT_SYMBOL vmlinux 0xad22874f __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0xad4aee39 strncpy +EXPORT_SYMBOL vmlinux 0xad4cd138 perf_release_sampling +EXPORT_SYMBOL vmlinux 0xad707583 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xadab63b9 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xadfe01b8 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xae19b91c tcp_conn_request +EXPORT_SYMBOL vmlinux 0xae240927 open_check_o_direct +EXPORT_SYMBOL vmlinux 0xae26133c sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xae2f6d36 __inode_permission +EXPORT_SYMBOL vmlinux 0xae65d933 configfs_register_default_group +EXPORT_SYMBOL vmlinux 0xae68497d should_remove_suid +EXPORT_SYMBOL vmlinux 0xae81aead vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0xae946cdc napi_gro_flush +EXPORT_SYMBOL vmlinux 0xae9b3c2c pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0xae9ee729 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0xaed6c211 lock_rename +EXPORT_SYMBOL vmlinux 0xaee9aec4 bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0xaeec5484 xfrm_state_update +EXPORT_SYMBOL vmlinux 0xaf08e8fe vprintk_emit +EXPORT_SYMBOL vmlinux 0xaf307357 proc_create_data +EXPORT_SYMBOL vmlinux 0xaf3c7b32 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf63d983 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0xaf89d750 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xaf98162a sync_filesystem +EXPORT_SYMBOL vmlinux 0xaf9dbd37 fasync_helper +EXPORT_SYMBOL vmlinux 0xafd41342 cdev_init +EXPORT_SYMBOL vmlinux 0xafe82e10 strcspn +EXPORT_SYMBOL vmlinux 0xaff18ffb gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xb0026a42 bio_map_kern +EXPORT_SYMBOL vmlinux 0xb0064155 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xb024c2e6 make_kprojid +EXPORT_SYMBOL vmlinux 0xb04de57c inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xb05294c4 security_task_getsecid +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb0602fa8 bio_chain +EXPORT_SYMBOL vmlinux 0xb061ef38 module_put +EXPORT_SYMBOL vmlinux 0xb07dad92 mb_cache_shrink +EXPORT_SYMBOL vmlinux 0xb0967710 tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0xb09f2214 kobject_del +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0bcfef0 tty_do_resize +EXPORT_SYMBOL vmlinux 0xb0d7269e kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xb0dabfdb dquot_commit_info +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb1158bf3 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0xb11ea6c2 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xb12b85ba posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb1545066 iget5_locked +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb1656f2a brioctl_set +EXPORT_SYMBOL vmlinux 0xb181cd77 sk_dst_check +EXPORT_SYMBOL vmlinux 0xb18533ad dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xb1bba555 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xb1bd5919 submit_bh +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1ec8369 down_read +EXPORT_SYMBOL vmlinux 0xb1f30962 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xb1fc4ac4 netif_skb_features +EXPORT_SYMBOL vmlinux 0xb20c096a bio_alloc_pages +EXPORT_SYMBOL vmlinux 0xb23345c2 iov_iter_init +EXPORT_SYMBOL vmlinux 0xb23e85fd pcim_pin_device +EXPORT_SYMBOL vmlinux 0xb25d9dcf jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xb25e9e77 bio_endio +EXPORT_SYMBOL vmlinux 0xb263109e padata_alloc_possible +EXPORT_SYMBOL vmlinux 0xb26648c6 pci_find_bus +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb26a893c blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0xb2876171 ip_getsockopt +EXPORT_SYMBOL vmlinux 0xb29879f4 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0xb2b0d772 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0xb2bb5933 airq_iv_scan +EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xb2c44304 filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0xb2fb56a8 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0xb319d713 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xb3247bb2 sock_i_ino +EXPORT_SYMBOL vmlinux 0xb3305a04 get_task_io_context +EXPORT_SYMBOL vmlinux 0xb33a4314 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xb33d7dc3 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xb347f551 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit +EXPORT_SYMBOL vmlinux 0xb3590c20 pci_pme_active +EXPORT_SYMBOL vmlinux 0xb3796e9a inet_stream_ops +EXPORT_SYMBOL vmlinux 0xb3b967a1 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xb3c51185 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3da1869 blkdev_get +EXPORT_SYMBOL vmlinux 0xb3dcfa84 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xb3ead46c sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb3ff1f69 free_pages_exact +EXPORT_SYMBOL vmlinux 0xb40ef8bd zpool_register_driver +EXPORT_SYMBOL vmlinux 0xb4112c99 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xb4202747 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xb4538140 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0xb4591590 netdev_state_change +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb47ab193 filemap_map_pages +EXPORT_SYMBOL vmlinux 0xb4cf631f nvm_end_io +EXPORT_SYMBOL vmlinux 0xb4e4f69f get_phys_clock +EXPORT_SYMBOL vmlinux 0xb4e7ce70 param_get_uint +EXPORT_SYMBOL vmlinux 0xb519bad4 bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xb51efd87 md_check_recovery +EXPORT_SYMBOL vmlinux 0xb53ab385 nvm_submit_io +EXPORT_SYMBOL vmlinux 0xb5426b96 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xb56ab60f unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb59fcc29 kbd_ioctl +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5af5aec seq_escape +EXPORT_SYMBOL vmlinux 0xb5baf843 tod_to_timeval +EXPORT_SYMBOL vmlinux 0xb5c55756 config_item_get +EXPORT_SYMBOL vmlinux 0xb5dcca08 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xb60e2152 skb_copy_bits +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb62516eb dquot_file_open +EXPORT_SYMBOL vmlinux 0xb639f98d thaw_super +EXPORT_SYMBOL vmlinux 0xb646d92c tty_kref_put +EXPORT_SYMBOL vmlinux 0xb659bc81 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xb672adb5 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb6860944 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6b35eb4 pci_clear_master +EXPORT_SYMBOL vmlinux 0xb6cff705 iucv_path_sever +EXPORT_SYMBOL vmlinux 0xb6d76547 proc_dointvec +EXPORT_SYMBOL vmlinux 0xb6dd7225 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xb6efd94f param_set_bool +EXPORT_SYMBOL vmlinux 0xb7014664 __page_symlink +EXPORT_SYMBOL vmlinux 0xb70c25cd in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xb70d750c tcp_prequeue +EXPORT_SYMBOL vmlinux 0xb710030c build_skb +EXPORT_SYMBOL vmlinux 0xb713eb7a jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xb7180c76 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xb71bed39 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0xb73b1211 security_inode_init_security +EXPORT_SYMBOL vmlinux 0xb7402d23 simple_transaction_get +EXPORT_SYMBOL vmlinux 0xb745cc2c scsi_register_interface +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb7558f3f devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xb767136e compat_sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xb7705124 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb7899c6e mempool_free +EXPORT_SYMBOL vmlinux 0xb7b08f29 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7f0b1d0 inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0xb7f12aac dev_printk_emit +EXPORT_SYMBOL vmlinux 0xb8366900 cdev_alloc +EXPORT_SYMBOL vmlinux 0xb839012c __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xb843447a mount_nodev +EXPORT_SYMBOL vmlinux 0xb844ccca tty_check_change +EXPORT_SYMBOL vmlinux 0xb850a5b5 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xb85a316e inet6_release +EXPORT_SYMBOL vmlinux 0xb85a574b locks_copy_conflock +EXPORT_SYMBOL vmlinux 0xb8648f42 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xb86ffb73 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb890b2ed component_match_add +EXPORT_SYMBOL vmlinux 0xb8934399 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xb894958a bdget_disk +EXPORT_SYMBOL vmlinux 0xb8b08c54 get_task_exe_file +EXPORT_SYMBOL vmlinux 0xb8b1eb8c md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0xb8d95c61 ilookup +EXPORT_SYMBOL vmlinux 0xb915ceca itcw_init +EXPORT_SYMBOL vmlinux 0xb9249d16 cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xb928aa45 netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0xb92c8f06 fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0xb9547c49 pci_bus_get +EXPORT_SYMBOL vmlinux 0xb95ffade scsi_register +EXPORT_SYMBOL vmlinux 0xb9778bf3 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xb978a48a ccw_device_start_key +EXPORT_SYMBOL vmlinux 0xb9a78b62 raw3270_find_view +EXPORT_SYMBOL vmlinux 0xb9dfe0f8 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xba28be9b ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xba445ed9 skb_pad +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba5ea42a skb_insert +EXPORT_SYMBOL vmlinux 0xba80eaab setup_arg_pages +EXPORT_SYMBOL vmlinux 0xba8dceaf pci_dev_put +EXPORT_SYMBOL vmlinux 0xba966e30 get_guest_storage_key +EXPORT_SYMBOL vmlinux 0xbaa2782a kstrndup +EXPORT_SYMBOL vmlinux 0xbaa532b4 pci_iounmap +EXPORT_SYMBOL vmlinux 0xbaa7a6f5 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xbab44465 inet6_ioctl +EXPORT_SYMBOL vmlinux 0xbaed44d4 vmap +EXPORT_SYMBOL vmlinux 0xbaf61771 dcb_getapp +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb160e3f tcp_init_cgroup +EXPORT_SYMBOL vmlinux 0xbb1f72b6 inet_add_offload +EXPORT_SYMBOL vmlinux 0xbb2b279e set_guest_storage_key +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb3b8d25 kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb63b779 request_key_async +EXPORT_SYMBOL vmlinux 0xbb9d0dc5 bin2hex +EXPORT_SYMBOL vmlinux 0xbbbf5aa6 param_set_long +EXPORT_SYMBOL vmlinux 0xbbc54453 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xbbd9f808 generic_show_options +EXPORT_SYMBOL vmlinux 0xbc2d2b4a __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xbc2d7c00 kset_register +EXPORT_SYMBOL vmlinux 0xbc3784be free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xbc896762 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xbcb87d13 __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xbcc0fcbb cont_write_begin +EXPORT_SYMBOL vmlinux 0xbcc99d21 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0xbcccc0a7 debug_exception_common +EXPORT_SYMBOL vmlinux 0xbcdd7c9d simple_dname +EXPORT_SYMBOL vmlinux 0xbce00f46 inet_frags_init +EXPORT_SYMBOL vmlinux 0xbd100793 cpu_online_mask +EXPORT_SYMBOL vmlinux 0xbd1bb191 nvm_register_mgr +EXPORT_SYMBOL vmlinux 0xbd35f581 abort_creds +EXPORT_SYMBOL vmlinux 0xbd7c52cf netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0xbd803510 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbd98f0b3 mapping_tagged +EXPORT_SYMBOL vmlinux 0xbda01d46 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xbdcff76e xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xbde64b30 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xbdfb851f ___ratelimit +EXPORT_SYMBOL vmlinux 0xbe04f63e sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xbe0641f8 d_prune_aliases +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe2d2f06 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xbe381650 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xbe923918 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xbe95bc25 jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0xbe9978f9 nvm_register +EXPORT_SYMBOL vmlinux 0xbe9e2173 pci_request_regions +EXPORT_SYMBOL vmlinux 0xbea5c34b _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xbeb94aa7 copy_to_iter +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbf03dc92 tcp_read_sock +EXPORT_SYMBOL vmlinux 0xbf0b5fe6 blk_queue_split +EXPORT_SYMBOL vmlinux 0xbf1b26ab __tcf_hash_release +EXPORT_SYMBOL vmlinux 0xbf20c01a nf_log_trace +EXPORT_SYMBOL vmlinux 0xbf3549bc ip6_xmit +EXPORT_SYMBOL vmlinux 0xbf4c7a77 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf8f3aca textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfc5e194 mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0xbfcc8a66 vfs_writef +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xc003c637 __strncpy_from_user +EXPORT_SYMBOL vmlinux 0xc01a2154 raw3270_request_reset +EXPORT_SYMBOL vmlinux 0xc03357e4 __f_setown +EXPORT_SYMBOL vmlinux 0xc04108e8 blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0xc062a510 clear_nlink +EXPORT_SYMBOL vmlinux 0xc076a2de pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xc09976ca blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xc099b000 unregister_shrinker +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0a96529 scsi_dma_map +EXPORT_SYMBOL vmlinux 0xc0ed7b81 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xc100835c generic_ro_fops +EXPORT_SYMBOL vmlinux 0xc1033c39 skb_push +EXPORT_SYMBOL vmlinux 0xc167e1c8 fifo_set_limit +EXPORT_SYMBOL vmlinux 0xc1a54486 remove_wait_queue +EXPORT_SYMBOL vmlinux 0xc1bc4a0a no_llseek +EXPORT_SYMBOL vmlinux 0xc1d5e82a mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc2041290 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xc212f2ab prandom_bytes +EXPORT_SYMBOL vmlinux 0xc21afbb3 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0xc22157cc __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xc234dc04 security_path_chmod +EXPORT_SYMBOL vmlinux 0xc281907e iucv_message_reply +EXPORT_SYMBOL vmlinux 0xc2a128a3 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0xc2a64a18 user_path_create +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2af3120 nla_append +EXPORT_SYMBOL vmlinux 0xc2b03889 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xc2b70841 cad_pid +EXPORT_SYMBOL vmlinux 0xc2ba5571 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0xc2c1d605 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xc2d34652 inode_change_ok +EXPORT_SYMBOL vmlinux 0xc2ddc293 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2f8ce92 seq_path +EXPORT_SYMBOL vmlinux 0xc319d7ce inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xc34cffe2 kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0xc350a489 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xc369af28 security_path_rmdir +EXPORT_SYMBOL vmlinux 0xc385cb58 perf_num_counters +EXPORT_SYMBOL vmlinux 0xc39fb3cf pcim_iounmap +EXPORT_SYMBOL vmlinux 0xc3abe9ee __mutex_init +EXPORT_SYMBOL vmlinux 0xc3e29276 dump_emit +EXPORT_SYMBOL vmlinux 0xc3eff24d tty_port_close_end +EXPORT_SYMBOL vmlinux 0xc4112c2a stop_tty +EXPORT_SYMBOL vmlinux 0xc42a3ff3 locks_copy_lock +EXPORT_SYMBOL vmlinux 0xc45755de find_next_zero_bit_le +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4b56f15 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xc4beace5 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xc4f2dd43 tso_build_hdr +EXPORT_SYMBOL vmlinux 0xc4ffdd39 km_is_alive +EXPORT_SYMBOL vmlinux 0xc51d972e ccw_device_tm_intrg +EXPORT_SYMBOL vmlinux 0xc5298b0e param_ops_invbool +EXPORT_SYMBOL vmlinux 0xc5313c15 pskb_expand_head +EXPORT_SYMBOL vmlinux 0xc5461869 configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0xc5499359 dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5ad93b8 sie_exit +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc60afd18 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xc60f99d7 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xc61a8620 netpoll_print_options +EXPORT_SYMBOL vmlinux 0xc622ea97 stsi +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc63dbc5c inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xc65782ad abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xc65a8c06 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xc66f71ea pagevec_lookup +EXPORT_SYMBOL vmlinux 0xc675d6d6 sock_no_listen +EXPORT_SYMBOL vmlinux 0xc6772da2 radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0xc68ac4c7 tty_register_driver +EXPORT_SYMBOL vmlinux 0xc6916834 copy_from_iter +EXPORT_SYMBOL vmlinux 0xc69bdfde tty_port_hangup +EXPORT_SYMBOL vmlinux 0xc6a81b3e start_tty +EXPORT_SYMBOL vmlinux 0xc6b3e217 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6e03b28 register_service_level +EXPORT_SYMBOL vmlinux 0xc6e9b19d napi_gro_frags +EXPORT_SYMBOL vmlinux 0xc6ea5fd0 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0xc6f674b8 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xc7247f76 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xc7324c20 inode_init_owner +EXPORT_SYMBOL vmlinux 0xc7466f82 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xc74af6d6 dev_alert +EXPORT_SYMBOL vmlinux 0xc777d175 blk_make_request +EXPORT_SYMBOL vmlinux 0xc77c8233 genl_unregister_family +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a24d76 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7c77734 dentry_needs_remove_privs +EXPORT_SYMBOL vmlinux 0xc7e52bd8 dev_load +EXPORT_SYMBOL vmlinux 0xc7ffe48c pci_release_region +EXPORT_SYMBOL vmlinux 0xc81ff02e icmpv6_send +EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0xc83f5cfc cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc852e5c9 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0xc85c6591 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xc86a6174 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc879e8a8 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xc894dd61 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0xc8963197 dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8abac95 sock_rfree +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8cd7b4b kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xc8e32480 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xc9070e6a qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc9579d28 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0xc95de9c3 param_set_invbool +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc98e3414 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xc98f0c4a sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xca02bdf9 compat_tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xca09fe9f tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy +EXPORT_SYMBOL vmlinux 0xca2ad76e inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xca4c923d vscnprintf +EXPORT_SYMBOL vmlinux 0xca541fbe blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xca59aeb2 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xca5df765 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0xca5e3222 __debug_sprintf_exception +EXPORT_SYMBOL vmlinux 0xca8e41f6 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca97ae53 dev_set_mtu +EXPORT_SYMBOL vmlinux 0xca9a8e79 cdrom_check_events +EXPORT_SYMBOL vmlinux 0xca9b58d4 sg_miter_next +EXPORT_SYMBOL vmlinux 0xcad0835e debug_register_mode +EXPORT_SYMBOL vmlinux 0xcadc9956 security_inode_readlink +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcb020a29 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xcb04e2fe mark_info_dirty +EXPORT_SYMBOL vmlinux 0xcb436e3c __destroy_inode +EXPORT_SYMBOL vmlinux 0xcb566c8c dst_destroy +EXPORT_SYMBOL vmlinux 0xcb629af4 touch_buffer +EXPORT_SYMBOL vmlinux 0xcb87312f devm_iounmap +EXPORT_SYMBOL vmlinux 0xcb9ff433 __neigh_event_send +EXPORT_SYMBOL vmlinux 0xcba8629b sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xcbb44ebe pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbcd080b clear_inode +EXPORT_SYMBOL vmlinux 0xcc12d8da textsearch_destroy +EXPORT_SYMBOL vmlinux 0xcc4b42ba dev_change_proto_down +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5bc9b0 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0xcc694543 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xcc6fee8c vfs_path_lookup +EXPORT_SYMBOL vmlinux 0xcc8f8764 __dst_free +EXPORT_SYMBOL vmlinux 0xcca506ae nf_register_hooks +EXPORT_SYMBOL vmlinux 0xcca94125 kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0xccc1bb4b sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xccc8c404 skb_tx_error +EXPORT_SYMBOL vmlinux 0xccf58ba1 security_path_link +EXPORT_SYMBOL vmlinux 0xccf8ab8d msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0xcd26b404 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd45d906 touch_atime +EXPORT_SYMBOL vmlinux 0xcd57f7b0 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xcd609f54 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xcd6e7f05 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xcd7e018f writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xcd816cf6 arch_spin_lock_wait +EXPORT_SYMBOL vmlinux 0xcd885061 param_set_int +EXPORT_SYMBOL vmlinux 0xcd96dd7b proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcddae134 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xcdf7484b proc_dostring +EXPORT_SYMBOL vmlinux 0xcdf8a4ad tty_port_put +EXPORT_SYMBOL vmlinux 0xcdf98a4c kobject_init +EXPORT_SYMBOL vmlinux 0xce00336a panic_notifier_list +EXPORT_SYMBOL vmlinux 0xce076c41 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0xce0e2d66 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xce218455 debug_hex_ascii_view +EXPORT_SYMBOL vmlinux 0xce26ebe2 ip_ct_attach +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce48655a scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce6b7d9f devm_free_irq +EXPORT_SYMBOL vmlinux 0xce8e4b25 unlock_page +EXPORT_SYMBOL vmlinux 0xcea20ca8 blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceae504f cmdline_parts_free +EXPORT_SYMBOL vmlinux 0xcec3a908 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xceccdc32 napi_gro_receive +EXPORT_SYMBOL vmlinux 0xced3d912 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0xcedf0886 cpu_relax +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcef94e3f bdev_read_only +EXPORT_SYMBOL vmlinux 0xcf14f8cd iucv_message_purge +EXPORT_SYMBOL vmlinux 0xcf1c8bf0 current_in_userns +EXPORT_SYMBOL vmlinux 0xcf1cc9b5 param_ops_int +EXPORT_SYMBOL vmlinux 0xcf2817d5 ida_simple_get +EXPORT_SYMBOL vmlinux 0xcf2a5bec fs_bio_set +EXPORT_SYMBOL vmlinux 0xcf6288d6 bio_split +EXPORT_SYMBOL vmlinux 0xcf733408 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0xcf8198e6 __get_page_tail +EXPORT_SYMBOL vmlinux 0xcfa3b047 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xcfbc01fe netif_rx_ni +EXPORT_SYMBOL vmlinux 0xcfeae122 lockref_put_return +EXPORT_SYMBOL vmlinux 0xd00b57b3 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xd01acbf0 param_set_uint +EXPORT_SYMBOL vmlinux 0xd05d38b4 do_truncate +EXPORT_SYMBOL vmlinux 0xd05f80f2 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0xd066334a set_posix_acl +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd079d312 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xd0843656 unregister_netdev +EXPORT_SYMBOL vmlinux 0xd0886827 page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0xd08a11fe d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0baa7ed generic_file_read_iter +EXPORT_SYMBOL vmlinux 0xd0c31534 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0xd0dd6e0d jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0xd10f2da4 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0xd13a0886 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xd171ed0a elv_rb_del +EXPORT_SYMBOL vmlinux 0xd178ff70 vm_stat +EXPORT_SYMBOL vmlinux 0xd17b8e63 param_ops_bool +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd199d498 tcw_init +EXPORT_SYMBOL vmlinux 0xd19f13f7 del_virt_timer +EXPORT_SYMBOL vmlinux 0xd1afaab9 read_cache_pages +EXPORT_SYMBOL vmlinux 0xd1bf098a block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xd1ca4707 netdev_features_change +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1f01c34 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xd1f152ad kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0xd225cb78 pci_choose_state +EXPORT_SYMBOL vmlinux 0xd228fd6a blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0xd231c5d2 iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0xd2389919 dcache_readdir +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd269294f tcp_filter +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd27d1b53 inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0xd2858d0c node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0xd2ae6e80 bio_copy_kern +EXPORT_SYMBOL vmlinux 0xd2b51ae7 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xd2bd7dee nf_ct_attach +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2db305e netif_rx +EXPORT_SYMBOL vmlinux 0xd2e0bb73 sie64a +EXPORT_SYMBOL vmlinux 0xd2e5f6e2 param_set_byte +EXPORT_SYMBOL vmlinux 0xd2f684bd jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0xd2fbd067 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0xd2ffd87d mntget +EXPORT_SYMBOL vmlinux 0xd31c393b iucv_path_accept +EXPORT_SYMBOL vmlinux 0xd3461167 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0xd34a48ef put_page +EXPORT_SYMBOL vmlinux 0xd34cba55 iterate_fd +EXPORT_SYMBOL vmlinux 0xd382f18b inet_frags_fini +EXPORT_SYMBOL vmlinux 0xd39a78ce jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xd3af979c memdup_user +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3d122de tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xd3d844e4 sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0xd3e0a507 blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0xd410d271 lro_receive_skb +EXPORT_SYMBOL vmlinux 0xd41d21b1 param_set_ullong +EXPORT_SYMBOL vmlinux 0xd4216410 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xd4219d40 compat_sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xd434be76 blk_complete_request +EXPORT_SYMBOL vmlinux 0xd43545f0 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xd452a4cb jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xd452b2f8 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xd454c60d unlock_rename +EXPORT_SYMBOL vmlinux 0xd45d2f68 inet_select_addr +EXPORT_SYMBOL vmlinux 0xd4652bdc wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0xd4773502 param_set_charp +EXPORT_SYMBOL vmlinux 0xd4ab1860 tso_start +EXPORT_SYMBOL vmlinux 0xd4ad8b62 nf_log_set +EXPORT_SYMBOL vmlinux 0xd4b9f9d3 pci_select_bars +EXPORT_SYMBOL vmlinux 0xd4d750f1 dquot_disable +EXPORT_SYMBOL vmlinux 0xd4d912d0 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xd4d95f6b free_task +EXPORT_SYMBOL vmlinux 0xd4e37272 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xd537f098 tc_classify +EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0xd55121f5 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0xd553458d pci_pme_capable +EXPORT_SYMBOL vmlinux 0xd58b3dd5 bitmap_unplug +EXPORT_SYMBOL vmlinux 0xd5aa0f53 netif_receive_skb +EXPORT_SYMBOL vmlinux 0xd5ba3100 sock_wake_async +EXPORT_SYMBOL vmlinux 0xd5df3d71 md_reload_sb +EXPORT_SYMBOL vmlinux 0xd5e47095 blkdev_put +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd61bd76a free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd645b378 ccw_device_set_options_mask +EXPORT_SYMBOL vmlinux 0xd666a588 smp_ctl_clear_bit +EXPORT_SYMBOL vmlinux 0xd687d480 nvm_dev_factory +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd6987375 tcp_poll +EXPORT_SYMBOL vmlinux 0xd6a188f1 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xd6b84d51 pci_match_id +EXPORT_SYMBOL vmlinux 0xd6c63c9d neigh_table_clear +EXPORT_SYMBOL vmlinux 0xd6eac06c search_binary_handler +EXPORT_SYMBOL vmlinux 0xd6ead35e ip6_frag_match +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd70d84a2 inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0xd75a8ae2 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd79866bb blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xd7cc93f1 revalidate_disk +EXPORT_SYMBOL vmlinux 0xd7e49c9e mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd85a05eb neigh_direct_output +EXPORT_SYMBOL vmlinux 0xd877a45e rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0xd87a4e4d inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xd8837d4d pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b4b5ad loop_register_transfer +EXPORT_SYMBOL vmlinux 0xd8c9c176 param_ops_ulong +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8f186dc put_cmsg +EXPORT_SYMBOL vmlinux 0xd8fcda72 cpcmd +EXPORT_SYMBOL vmlinux 0xd9043982 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xd9333ada ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xd9333eef find_vma +EXPORT_SYMBOL vmlinux 0xd958e067 d_lookup +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd9911acc vfs_mkdir +EXPORT_SYMBOL vmlinux 0xd9994453 starget_for_each_device +EXPORT_SYMBOL vmlinux 0xd9a69451 misc_deregister +EXPORT_SYMBOL vmlinux 0xd9b15b26 down_write +EXPORT_SYMBOL vmlinux 0xd9b3f97d console_devno +EXPORT_SYMBOL vmlinux 0xd9b64c36 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xd9c4840d flow_cache_fini +EXPORT_SYMBOL vmlinux 0xd9c7c2ca scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0xd9cdb15f dev_remove_offload +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9eede83 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0xda1e39c7 register_sysctl_table +EXPORT_SYMBOL vmlinux 0xda26d81c device_get_mac_address +EXPORT_SYMBOL vmlinux 0xda2f6f89 dev_addr_init +EXPORT_SYMBOL vmlinux 0xda366905 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda482531 debug_unregister_view +EXPORT_SYMBOL vmlinux 0xda518c39 sock_init_data +EXPORT_SYMBOL vmlinux 0xda528d84 md_update_sb +EXPORT_SYMBOL vmlinux 0xda61b669 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xda7f4f69 open_exec +EXPORT_SYMBOL vmlinux 0xda839a98 pci_platform_rom +EXPORT_SYMBOL vmlinux 0xdab79791 would_dump +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdad7832a blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xdae162cb string_unescape +EXPORT_SYMBOL vmlinux 0xdaff1540 key_link +EXPORT_SYMBOL vmlinux 0xdb06d0ea inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xdb0f2470 nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xdb185e7b __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0xdb2cc7b8 sk_free +EXPORT_SYMBOL vmlinux 0xdb2df64a pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xdb39ee27 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xdb3bcca6 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0xdb5d544b simple_readpage +EXPORT_SYMBOL vmlinux 0xdb64be1f __iucv_message_send +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb83c8fa pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xdba14cce arch_spin_lock_wait_flags +EXPORT_SYMBOL vmlinux 0xdbba8b2e pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xdbc4ec41 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xdbde72b6 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xdbe8a5fd tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xdbfc185e kill_litter_super +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc0bac47 write_inode_now +EXPORT_SYMBOL vmlinux 0xdc0f56d4 sock_from_file +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc1f0254 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0xdc3c8574 block_write_full_page +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc4d27dd raw3270_start_irq +EXPORT_SYMBOL vmlinux 0xdc58a7ad ccw_driver_unregister +EXPORT_SYMBOL vmlinux 0xdc6045f5 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xdc66dfbc xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xdc8deed3 flush_signals +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdd177b1b devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xdd446c88 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xdd455807 mount_single +EXPORT_SYMBOL vmlinux 0xdd4f0bea tcp_close +EXPORT_SYMBOL vmlinux 0xdd4f3c09 netdev_alert +EXPORT_SYMBOL vmlinux 0xdd821580 dqstats +EXPORT_SYMBOL vmlinux 0xdd9125c2 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xdd983aca pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0xdda08c00 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0xddc4add3 tty_unlock +EXPORT_SYMBOL vmlinux 0xddc9afd8 submit_bio_wait +EXPORT_SYMBOL vmlinux 0xddd3004d dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xdddea373 bio_unmap_user +EXPORT_SYMBOL vmlinux 0xddefc526 peernet2id_alloc +EXPORT_SYMBOL vmlinux 0xde0bdcff memset +EXPORT_SYMBOL vmlinux 0xde48a247 mempool_create +EXPORT_SYMBOL vmlinux 0xde4ee9e4 pci_set_power_state +EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0xde64c3f3 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xde8b4f8b airq_iv_alloc +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xdea765d5 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xdf060159 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf5c0162 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdfa9acca smp_cpu_mtid +EXPORT_SYMBOL vmlinux 0xdfbf0dad pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xdfe4ea65 pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0xdfe92555 key_validate +EXPORT_SYMBOL vmlinux 0xdfee80ec blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0xdff727e9 lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0xe016b45e alloc_pages_current +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe0614a83 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xe06e4199 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xe0752f5c config_item_set_name +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe07d1960 arp_create +EXPORT_SYMBOL vmlinux 0xe0812a9e register_adapter_interrupt +EXPORT_SYMBOL vmlinux 0xe0864fc6 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe0a06210 scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0xe0ae16f8 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0bc4fb2 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xe0c61143 elv_rb_find +EXPORT_SYMBOL vmlinux 0xe0c88692 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xe0cbc7e9 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xe0eb76ca tso_build_data +EXPORT_SYMBOL vmlinux 0xe0ee4a6b splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0xe0f99c64 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0xe10d3189 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xe112a784 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe19b23e2 kthread_bind +EXPORT_SYMBOL vmlinux 0xe1af2a79 raw3270_add_view +EXPORT_SYMBOL vmlinux 0xe1e0d558 ccw_device_start +EXPORT_SYMBOL vmlinux 0xe1f931cb tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe20372ae radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0xe2114879 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe24a8cca bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe24eec7f km_policy_expired +EXPORT_SYMBOL vmlinux 0xe2761a6e pci_find_next_bus +EXPORT_SYMBOL vmlinux 0xe29753fb dev_uc_flush +EXPORT_SYMBOL vmlinux 0xe29b274e iov_iter_alignment +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2d29133 d_find_alias +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe30cf042 sg_miter_stop +EXPORT_SYMBOL vmlinux 0xe313601e gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0xe317764d jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0xe3389c34 inet_del_offload +EXPORT_SYMBOL vmlinux 0xe33ee397 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xe34e2784 lookup_one_len +EXPORT_SYMBOL vmlinux 0xe3632f6a proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xe37a6298 posix_test_lock +EXPORT_SYMBOL vmlinux 0xe3ab9865 security_file_permission +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3c5ae9d deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xe3e2a065 cdrom_release +EXPORT_SYMBOL vmlinux 0xe3e91888 netif_device_detach +EXPORT_SYMBOL vmlinux 0xe40c2aa6 blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xe41b341b devm_memunmap +EXPORT_SYMBOL vmlinux 0xe4202ac9 drop_super +EXPORT_SYMBOL vmlinux 0xe42e92b7 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0xe4409190 mem_section +EXPORT_SYMBOL vmlinux 0xe4644802 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xe467f9aa sclp_register +EXPORT_SYMBOL vmlinux 0xe479a964 dump_fpu +EXPORT_SYMBOL vmlinux 0xe4a40d2f diag210 +EXPORT_SYMBOL vmlinux 0xe4a5ba02 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0xe4ac8c1d filemap_fault +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4e83aa3 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0xe4eaab2e t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xe4ffb1bd remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0xe5094832 page_table_allocate_pgste +EXPORT_SYMBOL vmlinux 0xe51fed85 complete_all +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe54036ef mempool_resize +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe5957ef0 vm_mmap +EXPORT_SYMBOL vmlinux 0xe5a292e9 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xe5b276aa proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0xe5c0bf36 datagram_poll +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe5f20b04 register_md_personality +EXPORT_SYMBOL vmlinux 0xe5f863c1 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xe61b30c9 bdgrab +EXPORT_SYMBOL vmlinux 0xe63309c5 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xe63e9382 disk_stack_limits +EXPORT_SYMBOL vmlinux 0xe67211a7 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xe682649c jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0xe6896172 inet6_protos +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe6d89c7a sync_blockdev +EXPORT_SYMBOL vmlinux 0xe6f1486d dql_reset +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe70a708c lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0xe713a97a irq_subclass_unregister +EXPORT_SYMBOL vmlinux 0xe74b04c2 blk_delay_queue +EXPORT_SYMBOL vmlinux 0xe74ba8d3 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xe75de6e3 pci_get_class +EXPORT_SYMBOL vmlinux 0xe7661e50 dev_get_by_index +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7e49e82 kfree_put_link +EXPORT_SYMBOL vmlinux 0xe7f75776 truncate_setsize +EXPORT_SYMBOL vmlinux 0xe8116e08 __kmalloc_node +EXPORT_SYMBOL vmlinux 0xe812e9ff blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0xe81fb945 tcf_register_action +EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe82693f4 netlink_ack +EXPORT_SYMBOL vmlinux 0xe8279f71 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0xe8381e6f ccw_device_start_timeout_key +EXPORT_SYMBOL vmlinux 0xe8518fbd skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xe860548c __bread_gfp +EXPORT_SYMBOL vmlinux 0xe8751b0e vfs_llseek +EXPORT_SYMBOL vmlinux 0xe8924368 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8b7851f fsync_bdev +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8c7da0d scsi_unregister +EXPORT_SYMBOL vmlinux 0xe8c978d7 sget_userns +EXPORT_SYMBOL vmlinux 0xe8da88e7 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xe8ef0ff0 current_kernel_time64 +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe91c58c7 skb_pull +EXPORT_SYMBOL vmlinux 0xe91ed0cf pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xe9335972 tty_port_close +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0xe96366c0 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xe9654115 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0xe9656159 inet_sendmsg +EXPORT_SYMBOL vmlinux 0xe967d8e8 vfs_unlink +EXPORT_SYMBOL vmlinux 0xe97261ee node_data +EXPORT_SYMBOL vmlinux 0xe979bf3c get_unmapped_area +EXPORT_SYMBOL vmlinux 0xe98d8f22 inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0xe9989c8c itcw_get_tcw +EXPORT_SYMBOL vmlinux 0xe9c71aef mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xe9dc40c3 replace_mount_options +EXPORT_SYMBOL vmlinux 0xe9f03b26 udp_ioctl +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea0f3fc7 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0xea2ae9fa blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0xea3deb5f xfrm_init_state +EXPORT_SYMBOL vmlinux 0xea4bea17 flush_old_exec +EXPORT_SYMBOL vmlinux 0xea4c35d5 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xea5f41bd add_wait_queue +EXPORT_SYMBOL vmlinux 0xea6aec67 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xea872313 find_next_bit_inv +EXPORT_SYMBOL vmlinux 0xeaa88db6 configfs_depend_item +EXPORT_SYMBOL vmlinux 0xeac89a9d inet_sock_destruct +EXPORT_SYMBOL vmlinux 0xead4c580 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0xead58fb9 print_hex_dump +EXPORT_SYMBOL vmlinux 0xeadf4ec9 lookup_bdev +EXPORT_SYMBOL vmlinux 0xeaf16d3e make_kgid +EXPORT_SYMBOL vmlinux 0xeb0c2a92 do_splice_to +EXPORT_SYMBOL vmlinux 0xeb18151e dm_put_table_device +EXPORT_SYMBOL vmlinux 0xeb2a98fe end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0xeb2ed062 km_state_notify +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb3a16ea crypto_sha256_update +EXPORT_SYMBOL vmlinux 0xeb4abed0 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xeb5b894e alloc_anon_inode +EXPORT_SYMBOL vmlinux 0xeb685fa0 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xeb71a848 raw3270_start_locked +EXPORT_SYMBOL vmlinux 0xeb71e55c genl_notify +EXPORT_SYMBOL vmlinux 0xeb9dc12b tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xebbf1dba strncasecmp +EXPORT_SYMBOL vmlinux 0xebc3d624 remap_pfn_range +EXPORT_SYMBOL vmlinux 0xebe3f2a0 mutex_lock +EXPORT_SYMBOL vmlinux 0xec151e51 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xec1a992e __napi_complete +EXPORT_SYMBOL vmlinux 0xec27c4d1 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0xec32caf1 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xec37195d downgrade_write +EXPORT_SYMBOL vmlinux 0xec706b19 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xec7b24ed netif_napi_del +EXPORT_SYMBOL vmlinux 0xec856f4c simple_lookup +EXPORT_SYMBOL vmlinux 0xec8df34c migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0xecb880c8 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xeccae0a4 dquot_acquire +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xece9a658 dev_alloc_name +EXPORT_SYMBOL vmlinux 0xecef11eb iucv_path_connect +EXPORT_SYMBOL vmlinux 0xecf4bb37 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xed0e5f4f simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xed17f70f netlink_capable +EXPORT_SYMBOL vmlinux 0xed1c2a15 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0xed1f0c4d vm_insert_mixed +EXPORT_SYMBOL vmlinux 0xed2d75aa memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xed347ffd __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xed4338cc scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xed5511d9 pci_scan_bus +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed697031 block_write_begin +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedbf68ee cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xedf5e968 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xee1596e8 mem_cgroup_begin_page_stat +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee3e5e4e __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xee86b514 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0xee8c0d72 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xeea3cd7a nla_reserve +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeed110d6 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xeeec7e8b get_io_context +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xef06457a dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0xef1926ac udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0xef291dd4 seq_puts +EXPORT_SYMBOL vmlinux 0xef2b8906 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xef45d32c __kfifo_init +EXPORT_SYMBOL vmlinux 0xef5cceda blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xef87a5c1 ip_options_compile +EXPORT_SYMBOL vmlinux 0xef889101 inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0xefa88608 blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0xefa8dabd mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0xefb057ad put_io_context +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefe68164 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xefee9d2f dev_addr_flush +EXPORT_SYMBOL vmlinux 0xeff51455 register_netdev +EXPORT_SYMBOL vmlinux 0xeffe76a8 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0024ba5 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf033fafe sync_inode +EXPORT_SYMBOL vmlinux 0xf052bbce fd_install +EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0xf0732b62 kmem_cache_create +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf0a8237a radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xf0aa3047 kernel_connect +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf10b5b8d ccw_device_get_path_mask +EXPORT_SYMBOL vmlinux 0xf10f81db sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xf11543ff find_first_zero_bit +EXPORT_SYMBOL vmlinux 0xf11ac5fd jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xf122c1c5 lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0xf1269488 dm_register_target +EXPORT_SYMBOL vmlinux 0xf15694ce debug_set_level +EXPORT_SYMBOL vmlinux 0xf17ea804 d_drop +EXPORT_SYMBOL vmlinux 0xf186210f dquot_quota_on +EXPORT_SYMBOL vmlinux 0xf18fe7a8 tty_vhangup +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1bc85f2 tcp_proc_register +EXPORT_SYMBOL vmlinux 0xf1d3f818 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e8c7ba iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1f0bafc inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xf1f5adaf pcim_enable_device +EXPORT_SYMBOL vmlinux 0xf1f6ca03 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0xf1f7045b skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf224adfc tcp_sendmsg +EXPORT_SYMBOL vmlinux 0xf225ed6a set_security_override +EXPORT_SYMBOL vmlinux 0xf229818c __dev_remove_pack +EXPORT_SYMBOL vmlinux 0xf22cccf0 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf250c0ca mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0xf27bf3db inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xf2818c5b kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0xf2b324ee free_page_put_link +EXPORT_SYMBOL vmlinux 0xf2b8465f rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xf2dc1102 init_task +EXPORT_SYMBOL vmlinux 0xf2e71187 neigh_parms_release +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf3266162 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0xf32e6ace tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0xf32e7a96 bio_copy_data +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf3488d5a netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xf34a6393 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf38181d9 generic_read_dir +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf399e3fe file_update_time +EXPORT_SYMBOL vmlinux 0xf3a20313 dev_get_iflink +EXPORT_SYMBOL vmlinux 0xf3b51799 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0xf3b86cd5 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xf3e3c483 install_exec_creds +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3eb3fe2 tty_port_close_start +EXPORT_SYMBOL vmlinux 0xf3f73e46 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xf41cf94e bprm_change_interp +EXPORT_SYMBOL vmlinux 0xf43a6a13 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xf44a9ec4 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0xf4528073 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf48808d8 eth_type_trans +EXPORT_SYMBOL vmlinux 0xf493f029 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xf496f4c3 pci_set_mwi +EXPORT_SYMBOL vmlinux 0xf4b80c36 nf_reinject +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4d3e514 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xf4d75dbe __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xf4e2b10f netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4f1d73f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xf4f26f72 tcp_parse_options +EXPORT_SYMBOL vmlinux 0xf5224298 handle_edge_irq +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf5697f7a xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xf58c21f9 get_super_thawed +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf5ebe2fb ccw_device_is_pathgroup +EXPORT_SYMBOL vmlinux 0xf5f74c7f nobh_truncate_page +EXPORT_SYMBOL vmlinux 0xf61a4495 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xf61c48fd __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf63d63dd inet_csk_accept +EXPORT_SYMBOL vmlinux 0xf66c9edd blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xf68bac6c __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xf6a220df PDE_DATA +EXPORT_SYMBOL vmlinux 0xf6a24c9b make_kuid +EXPORT_SYMBOL vmlinux 0xf6ae9225 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xf6c40ea6 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf72174a8 compat_ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xf7248ffd tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0xf729534e tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xf72be9d6 __find_get_block +EXPORT_SYMBOL vmlinux 0xf7505300 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0xf750e760 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xf77868e6 d_instantiate +EXPORT_SYMBOL vmlinux 0xf77d03be genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xf7917788 keyring_clear +EXPORT_SYMBOL vmlinux 0xf796623a kobject_put +EXPORT_SYMBOL vmlinux 0xf7a198c8 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xf7b1aac0 udp_disconnect +EXPORT_SYMBOL vmlinux 0xf7bb51e0 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xf7c02886 ccw_device_set_options +EXPORT_SYMBOL vmlinux 0xf7d71918 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0xf7e74261 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0xf7ed77d3 write_cache_pages +EXPORT_SYMBOL vmlinux 0xf7f2d25d iucv_message_send2way +EXPORT_SYMBOL vmlinux 0xf7f39f82 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf8140823 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf83e05da blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xf840cdbf dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xf842dc40 netdev_err +EXPORT_SYMBOL vmlinux 0xf84ad3b4 pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0xf84e1b8e page_cache_next_hole +EXPORT_SYMBOL vmlinux 0xf84e3cd7 dev_get_nest_level +EXPORT_SYMBOL vmlinux 0xf89cfde7 VMALLOC_START +EXPORT_SYMBOL vmlinux 0xf8e60de6 softnet_data +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf8f6ae57 loop_backing_file +EXPORT_SYMBOL vmlinux 0xf91c7e2e pcie_set_readrq +EXPORT_SYMBOL vmlinux 0xf94a7484 register_shrinker +EXPORT_SYMBOL vmlinux 0xf95d5641 ida_destroy +EXPORT_SYMBOL vmlinux 0xf96827da elevator_change +EXPORT_SYMBOL vmlinux 0xf97d7f4c __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0xf99b09d4 generic_write_end +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9b96fdb pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0xf9d6800b gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xf9fc18c5 sget +EXPORT_SYMBOL vmlinux 0xfa18a76f vm_iomap_memory +EXPORT_SYMBOL vmlinux 0xfa20d0d2 configfs_unregister_group +EXPORT_SYMBOL vmlinux 0xfa445400 inetdev_by_index +EXPORT_SYMBOL vmlinux 0xfa4b0ea9 dquot_scan_active +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa5bf6af blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0xfa6d4c7e generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0xfa8c408d sock_wfree +EXPORT_SYMBOL vmlinux 0xfaa09920 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xfac60968 lg_lock_init +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacc8289 copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL vmlinux 0xfb055260 kernel_getpeername +EXPORT_SYMBOL vmlinux 0xfb0898e6 eth_header_cache +EXPORT_SYMBOL vmlinux 0xfb0eaf6b ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xfb1c03da __getblk_gfp +EXPORT_SYMBOL vmlinux 0xfb2a6ae0 inode_permission +EXPORT_SYMBOL vmlinux 0xfb37c45d __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb6b6f74 raw3270_request_free +EXPORT_SYMBOL vmlinux 0xfb725329 mempool_create_node +EXPORT_SYMBOL vmlinux 0xfb747809 get_ccwdev_by_busid +EXPORT_SYMBOL vmlinux 0xfb82f131 get_user_pages +EXPORT_SYMBOL vmlinux 0xfb85fd1d follow_down +EXPORT_SYMBOL vmlinux 0xfb8ec191 bdi_destroy +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbafe94a generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xfbb9a101 pci_map_rom +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbc91b67 igrab +EXPORT_SYMBOL vmlinux 0xfbcda83c tcf_em_register +EXPORT_SYMBOL vmlinux 0xfbf39aa8 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc2876b7 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xfc2e232f dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xfc30acf3 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xfc46bb96 itcw_add_tidaw +EXPORT_SYMBOL vmlinux 0xfc49dda6 __bforget +EXPORT_SYMBOL vmlinux 0xfc59d0bc mempool_destroy +EXPORT_SYMBOL vmlinux 0xfc5f04c4 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0xfc69c348 simple_setattr +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcca5164 sock_get_timestamp +EXPORT_SYMBOL vmlinux 0xfce7976d sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcee1111 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xfcf97b68 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0xfcffe8ca sclp_pci_configure +EXPORT_SYMBOL vmlinux 0xfd10b4f6 lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0xfd124f27 bdput +EXPORT_SYMBOL vmlinux 0xfd1358d1 blk_init_tags +EXPORT_SYMBOL vmlinux 0xfd25040e scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xfd593e67 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xfd6f2e8f bmap +EXPORT_SYMBOL vmlinux 0xfd746545 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0xfd751b07 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0xfd86db02 debug_raw_view +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0xfdc81161 qdisc_list_add +EXPORT_SYMBOL vmlinux 0xfdce49e8 generic_perform_write +EXPORT_SYMBOL vmlinux 0xfdd79990 nf_log_unset +EXPORT_SYMBOL vmlinux 0xfdeeffa7 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xfdf2cff8 compat_nf_getsockopt +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe17047b kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0xfe26fc7c nr_node_ids +EXPORT_SYMBOL vmlinux 0xfe3d4b08 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xfe4041c4 find_get_pages_tag +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe6375f3 devm_ioremap +EXPORT_SYMBOL vmlinux 0xfe6d5dfb config_group_init +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe7eca4b sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0xfea40cb9 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xfebc3e87 kernel_getsockname +EXPORT_SYMBOL vmlinux 0xfed590f6 vfs_read +EXPORT_SYMBOL vmlinux 0xfedb7f22 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfee988e7 elevator_init +EXPORT_SYMBOL vmlinux 0xfef298e9 dev_change_flags +EXPORT_SYMBOL vmlinux 0xfef9667e inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xfefbdea0 dentry_path_raw +EXPORT_SYMBOL vmlinux 0xff171933 blk_end_request_all +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff279aac ns_capable +EXPORT_SYMBOL vmlinux 0xff349d2f compat_ip_getsockopt +EXPORT_SYMBOL vmlinux 0xff41a165 blk_run_queue_async +EXPORT_SYMBOL vmlinux 0xff50201e lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0xff51e23a mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xff570c1a atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xff5b2c32 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xff7052e9 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource +EXPORT_SYMBOL vmlinux 0xff82ed64 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0xffa0327f tcf_hash_check +EXPORT_SYMBOL vmlinux 0xffa85753 is_bad_inode +EXPORT_SYMBOL vmlinux 0xffc07803 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xffd04f47 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xffd553ff ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffd8b7d4 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xfff8dc19 lwtunnel_build_state +EXPORT_SYMBOL_GPL arch/s390/crypto/sha_common 0x1adc76ca s390_sha_final +EXPORT_SYMBOL_GPL arch/s390/crypto/sha_common 0xd4c42f82 s390_sha_update +EXPORT_SYMBOL_GPL crypto/af_alg 0x012639b3 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x01f19ae4 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x457a8a0a af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0x592e131c af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x5b16c603 af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0x63d34a0e af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x709d575c af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x7876dd6e af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x97bde168 af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xa544b18e af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0xb2b71911 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x5ef70b3e async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x0083e32a async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x1d4633b2 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x5008e7b1 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xba84d3d8 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x0e1d93fc async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x1ed84a61 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x6afe6476 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x29ff4319 async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xe64e2a4e async_xor_val +EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x7a2982f9 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xa846941e cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xb5ab4ed0 cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 +EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 +EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 +EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x7ead122d crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0xc94d6fa7 crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/cryptd 0x662c9c1c cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x6ed943fa cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x7e68c4eb cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xbd5cc79e cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xcc1fb973 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xd8934272 cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xdb31a269 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xdc435dec cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xe7f0d75e cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xf125b9a9 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey +EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey +EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table +EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table +EXPORT_SYMBOL_GPL crypto/lrw 0xd64784f6 lrw_crypt +EXPORT_SYMBOL_GPL crypto/mcryptd 0x277397f6 shash_ahash_mcryptd_final +EXPORT_SYMBOL_GPL crypto/mcryptd 0x37a94fc3 shash_ahash_mcryptd_update +EXPORT_SYMBOL_GPL crypto/mcryptd 0x656383ce mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x8347667c mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0x940fea13 mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0xc471e7a1 mcryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/mcryptd 0xd0e5b4e9 shash_ahash_mcryptd_digest +EXPORT_SYMBOL_GPL crypto/mcryptd 0xdb89e325 shash_ahash_mcryptd_finup +EXPORT_SYMBOL_GPL crypto/mcryptd 0xe6941907 mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3f8385b7 crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x84721ca8 crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xb9380013 crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xf69b6ce0 crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xc01c1d1f serpent_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x1b302355 twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey +EXPORT_SYMBOL_GPL crypto/xts 0xe1e70f29 xts_crypt +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x37081fb7 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4e2dab23 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x511d7c5c fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x82a85e75 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb89e9cbf fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xfea3f4b7 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x1151d17f intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x3c9a15aa intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5b6ff8f4 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x908a758f intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa0108eaa intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa5eb2115 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd4cc0360 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x0589e439 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x060da7d1 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x177e7171 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xac15ec46 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd48f5ec8 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x00472318 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x01d3b9ec __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x04698e56 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x13de3a79 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17951453 __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x25e0e29d __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2e196d5e __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x40eb8ce7 __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x480d259c __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x50f963e8 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5de357e7 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x734e256b __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x76478393 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7b3bd777 __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7dc83a0f __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x99e96e83 __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa1ee0faa __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa20d04ab __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa5fc5b3c __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa7aae64e __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa8749832 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xae6f41b8 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaffc6d0d __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7de1e4f __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd0e0d4c5 __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd4c1f373 __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd5c4d672 __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe08585f9 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe55e9c32 __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf7cf2aa7 __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfdc6ed3a __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x258650ce dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x26e0baf1 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x37053c3b dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3943a1ec dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x57f94761 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6696449d dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7824e16d dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xbea9d701 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd859dd37 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x41407800 dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aba7f5e dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9310ba06 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9c256008 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa1d2413a dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa448e19f dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xafbda3f3 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcbb1bae2 dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x6118e911 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x65f462cc dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x8f132724 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x9e982d9e dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x9f53d912 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x9f779012 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa4228567 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x26bc38b2 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x724d9780 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x1be153f4 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3c578a24 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4430764e dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x45ab972a dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4e197d14 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x88e8c4d7 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x89742a32 dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa602e0ea dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa68e1f06 dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfad9d53a dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfc62ef4e dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x07c4a1ea dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32350144 dm_tm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x67660b4e dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x80afbcf5 dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8605e0ec dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8c195a05 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x98925a60 dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa7e46220 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab9b03ca dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe118796a dm_tm_shadow_block +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe2d7194c dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00b15733 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x045b360a mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0530a885 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0572d85c mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06c79a71 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08565256 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b943a8d mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c09cb46 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c0f9f27 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c8486ff mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d4ee321 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13138423 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1741ea0b mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ba0b01d mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20e668f3 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21a7d408 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x221756e2 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2263b8bf __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x233bd93f mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2549ba49 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x283c26e0 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b951e21 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d4a258d mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ece4936 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f95e247 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38095393 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38accea8 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e860563 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f0fb727 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x447f2cc8 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4769414c mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4acf02af mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d051fd1 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4fb11c6c mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4fc5b7bb mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50c95de8 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51197a6d mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51e1f8e3 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54a5ad5c mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a270fe8 mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ce306e0 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62b36539 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63a91eb1 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63efc5f7 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6623fe5a mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66df0ffd mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67f2a903 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x682e745e mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69373555 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x695336d1 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d88095b mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d8b38db mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f1fb0f3 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70f95c66 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7412d177 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74d342da __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7982a978 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7cd94971 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7eef954f mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f6a9723 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83c1285e mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x851d9ea9 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x879e316b mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8892f30f mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f371b24 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9151106d mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91d71117 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9565de35 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9638a845 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96e9e34d mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b793fba mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9cf9595d mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9fc51aff mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa463f277 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa49197e0 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa738a31c mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8610451 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9179f22 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa034206 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb189937f mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb20c130b mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb345b1f3 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6f34717 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbaf9327c __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb78e222 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc197b39 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf37e2ca mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0d27abd mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc15735c9 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc341477e mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc36b3ed8 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4d607e2 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5011ffb mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc77c5f34 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca362971 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcbd7ff71 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce13cc93 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd172eadc mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd223248b mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3880960 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd38a2e4c mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd493b1b8 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd54480fe mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5c09df4 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc5e52fb mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd49a234 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde3dcd31 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe06b2cc8 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe14f6fcf mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe19373e8 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1f31878 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4faacb2 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5deacaa mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe60c26ef mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef768210 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf07a0861 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0ca3f6d mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2e3b310 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4f58a4f mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6475d3d mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf706ceb1 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf76a7af3 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff27b7ca mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xffe3e27e mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x077389d6 mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10055e84 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11365704 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11fe29ea mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a83c36d mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ed83b9c mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2128188d mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22ed3e24 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23fb152f mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27058da4 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x289369af mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2bbe0080 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x351ca3b1 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38fb897b mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b003ed1 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42a9507b mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4711c6d8 mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47fd4c0e mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4884fa37 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a82c8e9 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52336422 mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55696410 mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e8c8e90 mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x603d370f mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fe94c03 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x944b6c6d mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x990e073f mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4a8f0e6 mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae2eb4c4 mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0a9fb00 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1575ca5 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbbe7caf8 mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4fe771e mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdfb5f067 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdffed502 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe08f5cea mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4f4b483 mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeab8d915 mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec29e2a4 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeffe3b2c mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1aa4e34 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1cf612b mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf212a4b3 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf80f2781 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf814d0db mlx5_set_port_proto +EXPORT_SYMBOL_GPL drivers/net/geneve 0x1ddeb2da geneve_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/geneve 0xc27242d0 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x06be78b5 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x3cb81eaa macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xb862da5a macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xf0b744c1 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvtap 0xa6f1cfa6 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x040221cb bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x22f1d3be bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2d44b534 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2e3e2238 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3bba3732 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x641c2046 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9eb7ac52 bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9f2dac9a bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa6131011 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa6977fcb bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0x608ef673 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0x95f7304f fixed_phy_register +EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0xab5a5de4 fixed_phy_del +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x4dadf3d6 devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x9e3f8201 devm_mdiobus_free +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xa6664e38 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xc8806d18 vxlan_get_rx_port +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x08bf2960 dasd_generic_restore_device +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x09c40bbb dasd_free_block +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x19227556 dasd_nopav +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x1a22fe89 dasd_generic_probe +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x257e4295 dasd_generic_path_operational +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x2fa5df19 dasd_generic_path_event +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x314b9129 dasd_device_is_ro +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x5564a1aa dasd_put_device_wake +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x584568c8 dasd_generic_uc_handler +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x584c9136 dasd_generic_set_online +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x627a037d dasd_get_sense +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x64ef7ecd dasd_generic_last_path_gone +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x7729a916 dasd_generic_handle_state_change +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x8560f86d dasd_generic_read_dev_chars +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x957f72dc dasd_generic_verify_path +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x978e3a85 dasd_generic_notify +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x9c4848ca dasd_flush_device_queue +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x9d49b912 dasd_alloc_block +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xb31f3899 dasd_wakeup_cb +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xb38fe028 dasd_page_cache +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xc6e8dc08 dasd_device_remove_stop_bits +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xe70c4437 dasd_generic_remove +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xefc24d83 dasd_generic_set_offline +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xf15784f5 dasd_nofcx +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xf8e98572 dasd_generic_pm_freeze +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xfe727642 dasd_generic_shutdown +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xff7ed75f dasd_device_set_stop_bits +EXPORT_SYMBOL_GPL drivers/s390/cio/eadm_sch 0x24f2806e eadm_start_aob +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x2070f615 qdio_free +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x30ea084d do_QDIO +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x40d8e0e9 qdio_allocate +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x4afa0766 qdio_shutdown +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x51016153 qdio_activate +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x52d49616 qdio_alloc_buffers +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x73852c2c qdio_pnso_brinfo +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x75e5ec56 qdio_get_ssqd_desc +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x8184dc41 qdio_reset_buffers +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x919b89dd qdio_establish +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xc6755f2b qdio_release_aob +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xc8e3f47d qdio_free_buffers +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xcd4af5dd qdio_allocate_aob +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x03ba9058 qeth_print_status_message +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x0b3c570b qeth_prepare_ipa_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x16c1b604 qeth_send_ipa_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x17c142ad qeth_set_recovery_task +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x19047e71 qeth_query_ipassists +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x1fb8be7a qeth_threads_running +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x2248c066 qeth_close_dev +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x24eb92c4 qeth_send_setassparms +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x2cd9e4cc qeth_core_header_cache +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x2f06e489 qeth_clear_cmd_buffers +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x304ee325 qeth_core_get_next_skb +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x325b65c6 qeth_queue_input_buffer +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x36336777 qeth_setadp_promisc_mode +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x3de2a918 qeth_init_qdio_queues +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x3e6ece65 qeth_get_elements_no +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x3ee79eae IPA_PDU_HEADER +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x3f0aea55 qeth_schedule_recovery +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x43594e0f qeth_get_elements_for_frags +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x4a2ffd56 qeth_clear_working_pool_list +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x4b521a54 qeth_wq +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x4bf697ab qeth_qdio_input_handler +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x4ff2f1f0 qeth_generic_devtype +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x51a5262b qeth_prepare_control_data +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x54397780 qeth_wait_for_threads +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x54aaeed8 qeth_release_buffer +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x5641f8a8 qeth_snmp_command +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x564fdeae qeth_trace_features +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x5a423cd2 qeth_do_send_packet_fast +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x5e608b86 qeth_qdio_start_poll +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x5ec9e5ed qeth_qdio_clear_card +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x5f52f3b9 qeth_card_hw_is_reachable +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x5fb292f7 qeth_hdr_chk_and_bounce +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x632c6f3e qeth_set_access_ctrl_online +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x6d4cf347 qeth_start_ipa_tx_checksum +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x6defc507 qeth_wait_for_buffer +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x700607ae qeth_get_ipacmd_buffer +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x7b8e45b3 qeth_query_switch_attributes +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x80159cf0 qeth_core_card_list +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x8222d9bb qeth_get_priority_queue +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x825124c1 qeth_core_get_sset_count +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x848f4e7f qeth_clear_qdio_buffers +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x850991eb qeth_core_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x85639daf qeth_change_mtu +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x8b405917 qeth_clear_recovery_task +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x8d21d0ee qeth_configure_cq +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x8d5ca1f4 qeth_core_get_drvinfo +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x954c4d4f qeth_send_simple_setassparms +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x9d177401 qeth_mdio_read +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa3f73ce3 qeth_send_control_data +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa70de99a qeth_device_blkt_group +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa7abca37 qeth_qdio_output_handler +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xb3c1471d qeth_do_run_thread +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xbb44d478 qeth_hw_trap +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xbbd91444 qeth_set_allowed_threads +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xbf3e597a qeth_clear_thread_running_bit +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xbf80caa0 qeth_device_attr_group +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xc0dc8e9d qeth_set_rx_csum +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xc47cd5ba qeth_query_oat_command +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xcb34d034 qeth_tx_timeout +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xce11c266 qeth_check_qdio_errors +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xd1c1919f qeth_setadpparms_change_macaddr +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xd25267f1 qeth_dbf +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xd52ae66f qeth_core_ethtool_get_settings +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xe3bbd7c3 qeth_do_send_packet +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xe5bf3a3c qeth_dbf_longtext +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xe8270a23 qeth_clear_thread_start_bit +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xe8b55b60 qeth_query_setadapterparms +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xe9f23679 qeth_core_hardsetup_card +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xebee9b52 qeth_get_stats +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf706a267 qeth_realloc_buffer_pool +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xfc8ab814 qeth_clear_ipacmd_list +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xffc040ae qeth_core_get_strings +EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l2 0x0996d358 qeth_l2_discipline +EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l2 0x1743fa7d qeth_bridgeport_query_ports +EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l2 0xf72fbe47 qeth_bridgeport_an_set +EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l3 0x24e7a576 qeth_l3_discipline +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0581d7f8 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x05fd0ef4 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x18a5c3e9 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1da85242 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1e49bb07 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x274a0862 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3450eda9 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x394b72e5 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3b437080 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x49d4d381 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5c1f5954 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5c7d6417 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5ce433d9 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7cb3c6f5 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xcaf26967 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf8f497c6 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0efe1fe5 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x3c710d21 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x3ff8fbea iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x4bb802dd iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x4dd2f263 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xedd11c92 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x07bd11b4 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x22c0d954 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2b2a109d iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2b6f4f85 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x39514104 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3a605f15 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x45b03644 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x460680bc iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4731dbba iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x54dea7fe iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x598fb748 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x61efbed5 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x672d5c62 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x698a43d4 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7526e8d0 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7566ac96 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7619860d iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7818293a iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x78bdf137 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x812662c4 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x81f58958 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x841a9937 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8fa22dbf iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa41515d9 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa6d9df6f iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa7967eaa iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa8c39d38 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa9e2f6bf iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaa6aba48 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb610353e iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbce450e8 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbd45eee1 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd9bb5f24 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe45ac8d1 iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe6a92185 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe91711c1 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xea28ffb6 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xedab85fb iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xede938bc iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xee9c7d23 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf2b11ab3 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfc9586b2 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x15946e1c iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1a4fcd00 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x293ecc16 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2d8be941 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x41704dc1 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x47ed0403 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x48248cbd iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4852480f iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x52e8972c iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x60a86b8f iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7e4253b4 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x95e84ace iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x98c980b1 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x997238f3 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc92f2a2f iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd29cdde0 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe501e6c2 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1475c36a sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x17a702bd sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x26eef8a0 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x289e7b28 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2c70824b sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x360d832e sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3bc60080 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3e1f0905 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x50889f3c sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5b372162 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x620eda16 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6a1e9608 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6e666c21 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7b438f83 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7e1760e8 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x90be78af sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x91f37f38 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaa72132e sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb240b8a5 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcd5490d4 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe1114389 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xec437717 sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf6af2ada sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x042d2c51 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x14a4a17e iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x230f2a6d iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x235fdf97 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2bd8d760 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2e92ced2 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x323d2881 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4817f75e iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x52897ff0 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5b8a9bd2 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x601e1080 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x61a427fe iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x64e43432 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6b291db8 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x772640d1 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7e4d5a8b iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7f4441a7 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x831e5d15 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8e6f5737 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x90142f10 iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x92d6ec84 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9552edeb iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9939e4c8 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9abedd42 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9bfa906f iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa72ccaa9 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb038d744 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb0f23eae iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb225d9cf iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xba53159f iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd32a236f iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd669014a iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd7d23da7 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe81d0f7f iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf63ef43f iscsi_is_flashnode_conn_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7e82804 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf8583110 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfb2ee404 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfd29c089 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfe4cf79b iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xc44dae78 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xf0275b2b sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xf5489044 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xffe9ee21 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x1e4affcc spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x147cc829 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x2b40aa88 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x2bcb9e14 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x31150201 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x9a9be5e9 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xcedc0634 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0x690baccf uart_insert_char +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0xa85b3fa8 uart_handle_cts_change +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0xc210976a uart_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5d6e3d54 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x78747382 vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xbce14088 vfio_add_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc3ac11a5 vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc56b1cb6 vfio_external_group_match_file +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd05aea4d vfio_del_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xeacc2f0f vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x54257835 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xfd9949fd vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0347e0ad vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x08541e34 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0eb3b73b vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x156cf8fb vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1930b9fc vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1ebafaa5 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2125cdb3 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x26aa0bd6 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2d86cd64 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x42e3c42b vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4f5eab60 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5605bd94 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x80664392 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x856506be vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8cb0bfed vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8ccc2bc7 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8eb497bb vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa47c67de vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaf961071 vhost_init_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xda7d5333 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdbb3ce8f vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdd9c4337 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe02d06ae vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe18e9fb8 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe1eb5438 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe6e61d4f vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xecce48ba vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfa1aad5b vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd6bc50b vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfe965b70 vhost_get_vq_desc +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x807662b2 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x8bfbad19 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdcf381b6 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x0a2e2eb8 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x15fb201c nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x1a7193b7 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x2cc9a1ff lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x39dceba3 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8723e797 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8daf227a nlmclnt_proc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05e747d7 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06aaa5aa nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b12a28b nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c8bb39b nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f4e7def nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ffa35a3 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10420961 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15a503c6 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16288ee3 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16371371 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18654c5f nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x198a010b nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1abe063c nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b79c7ec nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1bb92512 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c125a0b nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c4a377a nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x202cf9c6 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20bf4185 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22b20f01 nfs_file_fsync_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24ad99d2 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2754d23e nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28523892 nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28ab82e1 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29d0c75c nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c1627ab nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c283de3 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36574332 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37838a34 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e89ace3 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3fb24613 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x420edfae nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44da545d nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46554cee nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48d30171 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ad0ba9a nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52592699 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53f9f9c3 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55644fad nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56e6d526 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56fa6ed1 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58bc8f97 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x592c46c1 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ee21bfb nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f79d231 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5fcee119 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62920b7f nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a77425d nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d87e38b nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72f9011e nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73e84bdf nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74b4a691 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76ac902f nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76dcca1a __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ae72ecd nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7bd0274e nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7dc58aed nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f0fe26c nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x830a98d5 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x838f70f4 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83e39f7f nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89365f16 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8978ebc7 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89902947 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a3d663a nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b0f950e nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c960e8b nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a3c8fc nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x956b981d nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a48faf9 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9edb05a8 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4f18e74 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa700360b nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae1b6f4f nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae213a55 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaeaaaa05 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf6eec8c nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb06832a3 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb2861eb7 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb297d394 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3d6e793 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3f85c6e nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb450a6d5 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6f46a6f nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb80fd99d nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8dd976e nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbdea5e4f nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe734293 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc19f7b3e nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc31157c9 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc32d1a44 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc38a75b0 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca2a9979 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb360e62 nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcbc17f03 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xccc2f104 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce9f3db5 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd641360d nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd68879fc register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd876f6bf nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd908aa23 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdacd4257 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc2e5e41 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd71b808 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe10b66e6 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe10db30c nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe165dacb nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe269698b nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe286d4d5 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2e983d4 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe4d47c97 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe557a04c nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8592f52 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe949c629 nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea1650d4 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea7d4523 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb7e9651 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed1a130d nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf037a645 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf16ed65b nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf4c777da nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf69e2bc1 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf81ec5a7 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8970e8a nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfcff7264 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xe0d67a1b nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x001f6997 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x023bec08 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x04086ed6 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x04766ea9 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0607200c nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0770d078 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x081c5702 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0b34f80e pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ec50e65 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x140540a3 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x14f35ce3 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x15fc5837 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x21a4e8ee pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x21e89837 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x22ee2510 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36af9a79 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c0b497a nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4185dd91 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x43a03d35 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x465135ac pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x54010c22 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x54b6b5c4 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x57084c82 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x598146aa pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5f278299 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6691ec4f __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x68d9c1df pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c3ef6d8 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x776a0cec pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7bdeb84d pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7c4d2d2a pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8146bff0 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x84665b14 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x85cc084d nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x85d084a7 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ebb8ae2 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9611e06e pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x962ff6d5 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d6335ea nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9e5f6cbc pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa06d13b0 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xac62d225 _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb71cbe99 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb8d91df9 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb943b5c1 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbbbf4d0e pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc4975c7 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3331772 nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc8e23963 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb8589fc nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd21b4d53 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd62631d4 nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd780ffdf pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda994a8d pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdff4e37c __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe52c1851 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe9c6df72 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe9f1be46 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf4384bc2 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7430ddc nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe103e31 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xff10ccfa nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x7fe22a0a locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xd0299317 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xe30ca23d locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x59083ecc nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x5cb9a244 nfsacl_decode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1e987caf o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4f6e697e o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x521e0726 o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x77ed48dd o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa00cfeec o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbc7f1974 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc45b2db9 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xe1f6a0f2 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x1ac2f709 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x3e877361 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x43ea3d5f dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x5f727c4e dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7016820d dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x8c4f298a dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x71465995 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc40d8095 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd16ab9a5 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x1c04438e _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x21ab34ac _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb +EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random +EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait +EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop +EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end +EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0x9393908f torture_shuffle_task_register +EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin +EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x05753d9b notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x185db0bd notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x18efd32f raid6_datap_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x391d9714 raid6_call +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xa51bfd9f raid6_2data_recov +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x096acf0d base_inv_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x0ea96336 base_inv_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x23bf768a base_inv_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x28a031c0 base_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x5a14472f base_inv_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x71398562 base_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x90ae1c4c base_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xec4c111e base_false_key +EXPORT_SYMBOL_GPL net/802/garp 0x2dfc4e23 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x2fa1922b garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x6547cfbf garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x95379974 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xd734adc5 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xffa060f8 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x4cf265b4 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x51912fe4 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x589b514d mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x9ad27350 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xd4bee2cb mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0xf03de4aa mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/stp 0xb5aaeb56 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xffd5085a stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x6a4b8fae p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0x8a60b6c3 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0a1133df br_deliver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4f4c0b3c nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x59054fa4 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x83960215 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9b22f414 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xcfad7258 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe278c729 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf1a2b224 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x20f6ce4c nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x6e4d8064 nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/dccp/dccp 0x08371fa4 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0d05092c dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x13570e0c dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1dfd36d6 compat_dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x304a74b1 compat_dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x313e8bfe dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x43dc02a6 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4e4bc548 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4f148bbe dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x51b7b76f dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x668f2628 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x67d868e3 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x69c5eb57 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6df08ef2 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x785cb12a dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8349bbb8 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x844df451 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x95ac018c dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x96c25737 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x96f1b148 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9acf3715 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9e977023 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa68875d9 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa6eb141e inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa930c92a dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaf7cb69a dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb1f8a82f dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb80e2df6 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc3fba7f4 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc717ee4f dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd22e36ab dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd6c96063 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd6f8ef05 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd8f86a68 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe5cd8bf7 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe70e4615 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x15837a0c dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x2ea140c8 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x72bf4260 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x8c0ab3ed dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x9488769c dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc0309bb3 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/ipv4/gre 0x8759b197 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xc09ce595 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x10608515 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x33ef0ea1 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6a8afb9f inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x77fab5ff inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xcd03e1c6 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xdfe531eb inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xf30a9165 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x09505ef0 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1adc48ed ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x318b6d89 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x32c1aa6c ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3fe5abb6 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5d4c0945 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x72ccf274 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7b0f0403 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8ceb15b0 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9433f95e ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9af9aa12 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa09e5db4 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd2022ba2 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xeaa018f0 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xebaa7b70 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x6bf83758 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x63d297f0 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x6fe2bd0a nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x42d11eaa nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x63e3a90d nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x867e2962 nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xb26e1bc5 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xbd8b722c nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xcc8fc8ac nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x10f2fd75 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x1ffcaba8 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x8f385baa nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xb0eec586 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xeeab387f nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x3426a9ff nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x364b4c36 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x3f7e7ebc tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x8716fbcb tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x8eae5738 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xf31cf249 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x792d0602 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa254163c udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb59a2815 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd1a448c8 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x0b0f419d ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x1ba8e50d ip6_tnl_dst_reset +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x4e067925 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x80baf5ad ip6_tnl_dst_destroy +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x9e82cdef ip6_tnl_dst_init +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xc710f0ae ip6_tnl_dst_get +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd19198f6 ip6_tnl_dst_set +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x59b690c3 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xae5c5565 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xb4f963a6 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x2f0c444a nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x5079a8a2 nf_ct_frag6_consume_orig +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x36d97851 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x2429b2cc nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xb3b73107 nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xc04324ab nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xc483af6d nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xe739550c nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0xb1c55192 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x4c3d148b nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa5a7f493 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb67eeab7 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xcf9f1d01 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe382d913 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x16d781ef nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x304fe64e l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x377e9058 l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x41e35281 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5539341c l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5cd82bb8 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6b595886 l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x772f011b l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x80537e98 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x886b17e8 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x90540002 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb164d45b l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb5e9af4e l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb654834e l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xccf1d522 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdb8649a1 __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf3dbac8a l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x299e6046 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x3efce9f9 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xb8b911db mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xeb6269cb mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xef278e46 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x036a9e3d ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0b2310aa ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0f2c3e25 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x17c01df0 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4e5aecc3 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x73829e02 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7756bb77 ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7bda203b ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x83004dad ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x95852da9 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa51fc4ce ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa6f9d784 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa7c61fd5 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc3505335 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3003c0c ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3e42ac4 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfb87ad54 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x17528dfd register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x1835e088 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xac62a926 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xbe131491 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x01205f13 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x02d02cb0 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a466e90 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a5c2613 nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0e628d8f nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ed05487 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1197fe77 nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x137334d5 __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x14191013 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x16ea54f2 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x18577a2a nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1964356c nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1d7c3ec5 nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x23a19cf5 nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x268aa4fd nf_connlabel_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2840bd92 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2972c4d2 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2aece362 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b678ad5 nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x35774344 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x371c39d5 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3bbbdb78 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d6885c1 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3dc298da nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3e6cbc47 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x40d972fa nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4440b76b nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x48610d5b nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x48a6ae42 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x49feee8c nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4e7bb50f nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x51ab9b8c nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x536321d4 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59f8860c nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a1d6303 nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5efa352d nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5f32f25e nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5fd44e87 nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x664c7416 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7222c825 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x77f8d001 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78c408cc __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x790cd726 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7a2f759a nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x80822395 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9091bda5 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x984f268a nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x990fb8da nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b0d390c nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b949b9c nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9d29cb3d nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa1cd6218 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab39da58 nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xae6efb1e nf_connlabel_match +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafd11a97 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb5b0ca50 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xccc6ec5a nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xccd5a945 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd17d8de8 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd1f03340 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd888854e nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd8e64551 seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda678b48 nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdbc5a5d9 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc1b8933 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xde32cce5 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xde47b8dc nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe480fa67 nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6e5d5d3 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe75493c2 nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeda2dd21 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf0b6158f __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf0d1af1c nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf22ffe45 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa50fcee nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfada4861 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfae32f02 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfcac34ba nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfdb5550f nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfdece399 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x86adc0c3 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xe7091ae7 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xb1fdd94f nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0b9d8840 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x17ee94b9 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1adea851 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x25a272a5 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x2acc0b75 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x464cc42b set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4e7431f5 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7d32fc73 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x83e2e8d4 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xacff49ed nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xef701f69 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x3451b3f6 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x82d6fbde nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xbbb22fcd nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xd09bc429 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x5970b4ee nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xc063d2dd nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x4d0f2934 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa7d5f4f0 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xbd73db60 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc0c89154 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xca6a66f9 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xdb9404e6 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe3873d54 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x86c249fa nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xb212f038 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x016ab90a nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x584f5450 nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xc96a3aa2 nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xec9ff7e1 nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3a88f0b5 nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4301647a nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x58ccebf9 nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6521dcf7 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xab2c6bd8 nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xcdc1885c nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe7fa32e8 __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf9b10782 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfc9ba08b nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x2c9b2f05 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xd27c0ff8 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x3ce65d68 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5f339439 synproxy_build_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xbc2166d5 synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0c7e05e1 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1dd5c74d nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x44a394f0 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x49a145fb nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4f39532c nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5ffd88c5 nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6695069c nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x93842565 nft_register_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x971cc42e nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xad5314a2 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbb7dee34 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd1947a79 nft_unregister_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd251eb0e nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdab65adc nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe4b132c7 nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe873211c nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfc71ec61 nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x182b6163 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x4c5f8ba9 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x53ab6e83 nfnetlink_alloc_skb +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x8fef852f nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9c6348c8 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd29cda93 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd9b30d8e nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x290ea0ba nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x480d733d nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x4ee6ef3b nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0xd58ec464 nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x4b5d112f nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xea0dd581 nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xf1c2c41e nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x3493043e nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x595efb00 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x71f3f5aa nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xafed0a6f nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xd3ab08ef nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xe3db1a33 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x20349e9a nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x8093b3d6 nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xb9fa5da5 nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x81a2e841 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xd9d61e5b nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0c64e7bb xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x161d1417 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1b5e98a0 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2bd86013 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3c0c3f26 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3c664d4d xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3e14227f xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4225aebc xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x545665e3 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f82f1f7 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x63df646a xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x691a6d69 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7b925d82 xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x81f4b4c7 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8d5030e6 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa68ceba9 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xaa603338 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbf9e7fd8 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd2935adf xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3b259ca xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0b4971b xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec24fd82 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xee7d24cf xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf61921c5 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfb3b2e90 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x7c470866 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xc0f395bf xt_rateest_put +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1c47b3bd ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x26dcc189 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x30a1b13f ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x4f1edf85 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x5e08bb2a ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x67b588bb ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x89949138 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe1fc3023 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf208b88f __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x01609617 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x1e89eccb rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x23b44301 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x2bdfebfc rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x368ec3ac rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x3a02e67a rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x40fcb3bb rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x43972a41 rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0x47f1fb7f rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x5c3db36c rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x63722a28 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x6fbd3b79 rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x7b8c7c4d rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x7eb36b0c rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x89565e2b rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x93c23246 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xadce35ce rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xb441e98a rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0xb82cdee3 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xbf80a305 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xc2da8e38 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xd840c305 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xde414929 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xe68e9a66 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xef67d94e rds_info_register_func +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x80714ad5 rxrpc_register_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x89cfbcb0 rxrpc_unregister_security +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x83db63e4 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd19a7127 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf54daf8d gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02ed6495 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03789340 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x054c905f rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05fbf77d xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x087aa52a svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08dd1ed4 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a081e38 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b90381e cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fb0f9cd rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10979a1e xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12acbb9a xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12efa992 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x144f93da svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14e9ea1e rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17971216 cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x186f6afc rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18d99e50 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19937823 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a566ce1 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c9b0dc8 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ee719c3 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f05ecfd cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22a57c31 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24bd6172 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28030847 rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28f13f10 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2929c398 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x297bb9f0 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29bda115 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x313ab7a5 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x319063cc rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31bf4332 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31e3d9fc svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35180b01 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3530a1a7 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36ed25fe xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36f25665 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x378bc399 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x392679da rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bebabfa rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c1d673e rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c613804 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cb6adc5 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cde73d4 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d7e1c16 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44de25c1 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45744117 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x460bb9bf rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4665d2ea xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48d4d88e rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x493d5ccc svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a51159a rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4aea7d88 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b6cce43 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b7bfc75 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c0d8ec9 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c95acd6 rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ed1673a rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fde279e __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x505e6441 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5070d328 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50d8f4b6 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x530d8245 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5414c397 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5575c739 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55c592a1 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5617dae2 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58ac7619 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59995b47 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a03a793 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b1be196 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ee21083 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f3d5ac6 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60bc4e25 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62898510 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x640100d9 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x646a2efe svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6578478d rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65e1cefa rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6632f1f1 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x668f64a4 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67a01086 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67f709f0 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x683f51c5 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a8efbbd bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b11dca3 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b3f768c svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bbf0605 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c5ee8c7 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c7c3ea5 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6eaa6798 rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ee401d3 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f155fe5 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f2ddbb4 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fcf763c xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70f6abd1 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x711fc393 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7166b785 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71887f40 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7450fc43 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76b0f473 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b59d304 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d0bfb2b rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dcb1159 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f6b37aa cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81dc8eb0 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x822763d5 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86a6d728 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89acd733 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a09020d rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a80bcf1 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bdd0569 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bfec61f rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8dfb4761 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x910be66b rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9133994a svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x928540c0 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9325b707 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93fae1ea auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9472e08a rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95a97b80 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x970fd05a rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x974d6ef9 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9aca49ab svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b90b8c7 rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ce403d5 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e77bb6e rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3733621 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3d327a3 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa535eb32 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa654ca8e cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa656919e xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa70c63f2 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa14573a rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac7a5b45 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae999b87 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaefa9be9 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf77197f xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0506442 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb14b9a89 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb29861e5 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2bf9bb3 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb705e711 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8be2c03 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb922aa1b unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba999d3f xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba9ab4b7 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbae47ddd xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbade1a4 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf969ace rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc23ead75 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc37f55b9 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc417eea4 rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc41bf21d xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc465e4e6 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4a91c88 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc62f809b rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7b32c80 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc865cb31 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9281579 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9bca220 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc2a31c2 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccb65910 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce25491e sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf3b947d xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfa7fec1 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd325b653 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd87d2316 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8bc486b xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd924f15d rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd961c85c rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbe0e3cd rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc570343 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf1347f6 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe14b4d30 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1780972 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1bd8052 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2c4f5fb rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe654d3fb xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6cd8fa6 xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7c712ca svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe853b124 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe88d474a rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9292348 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe975620e svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe99c8efb rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9d203be svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecc9e0cf svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef9fab61 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1168dd8 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3596c76 xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf375dbeb xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3c376ff svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf88ad177 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9cd4bf5 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa2267e4 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc27b910 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfef34a8f svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffd6cae4 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0241a0dc vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x08121c96 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x10bf63ec vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x10e03a5e vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x17f33d20 __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1c9c8414 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3365080d vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x94c7c94e vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x95884178 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x970b77bc vsock_pending_work +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa0c178e5 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa7188c30 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcb321662 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe9051518 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xecfd07bd __vsock_core_init +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x4e9f3d9c ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xaf8f8f75 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xbf773553 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xc2d01894 ipcomp_output +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0xf6e772c3 irq_bypass_unregister_producer +EXPORT_SYMBOL_GPL vmlinux 0x0007dcd3 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x000e74c0 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x000f2496 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x0019a61a relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x002cbf81 __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x004d787a fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x0060a102 __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x00aca905 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x00b783a9 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x00cc3d11 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x00ced6e0 posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0x00d1efac debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x00d40cc6 crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x0114d6c2 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x01413c5f css_schedule_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x017c8e21 kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0x01d457eb get_ccwdev_by_dev_id +EXPORT_SYMBOL_GPL vmlinux 0x02436ade tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x0289adcf scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x02931659 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x02ebef25 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x02fe00c1 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x030f49c5 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x0319411e alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x031b3287 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x03783978 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x038ba9cc scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x03a3f42d crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x03bf7230 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x03e677d0 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x041df56b ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x042e575b bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x045760a6 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x0496352d sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0x04b5549c __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04ea8706 __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x04eb2ebf security_kernel_fw_from_file +EXPORT_SYMBOL_GPL vmlinux 0x0521475f devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x052c8772 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x05449c14 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x055c2a16 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x057eca95 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x05c0d3bd kvm_get_dirty_log +EXPORT_SYMBOL_GPL vmlinux 0x05cb3241 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x05de8acb bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x05f0a28b device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x0654d685 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x0658097f net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x06654a8d gmap_discard +EXPORT_SYMBOL_GPL vmlinux 0x066d97b3 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x0688ba4c device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x06b5b35b kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x06c65b75 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x0797d532 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07db2ef5 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x0808fbd0 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x0829446c blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x084d702d rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x088ced52 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x089a5539 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec +EXPORT_SYMBOL_GPL vmlinux 0x08f6cca4 css_general_characteristics +EXPORT_SYMBOL_GPL vmlinux 0x08f870ff ccw_device_siosl +EXPORT_SYMBOL_GPL vmlinux 0x09059c80 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x0914a894 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x09150f61 crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x09373b7c perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x09670047 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x096db2ff blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0x09872f4d __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x09c1348d blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0x09d05ece platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x09f1a48f list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0x0a47a756 zpci_stop_device +EXPORT_SYMBOL_GPL vmlinux 0x0a5f478a md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0x0a6841ef debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x0a790dc5 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x0a8a62d2 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x0a93dab4 get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x0a9ed33b sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x0aa75e07 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x0ab486a9 blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0x0acc6280 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x0afcef52 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b112872 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x0b2f2faf __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x0b572b5e iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0x0b901ed8 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x0ba68b6d pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x0bac8e31 css_sch_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0bd178f5 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c0af9a3 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c4e0217 gmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0c7a1d2f __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x0c9e49cb udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0cb506de bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0d1f84f3 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x0d313239 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d4f4735 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0da1e4cd shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0dde4cd8 fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x0e31b543 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x0e53d52b devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x0e790904 gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x0e8a640e kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL vmlinux 0x0ea41f64 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x0ebaabc8 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x0f2a63a3 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f469892 blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0x0f81d811 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x0f9ec1ed list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x0fa09a38 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x0fa6d907 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x10339722 zpci_iomap_start +EXPORT_SYMBOL_GPL vmlinux 0x10a7de77 crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0x10d62848 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x10fbbaec ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x10fefdb9 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x11016d00 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x11099eb5 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x110c8c50 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x111ea5e9 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0x1142d34f raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x115706d5 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x116cf2ed smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x118124a7 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x11942318 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x11962a94 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x119af014 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x11b790aa inet_csk_compat_getsockopt +EXPORT_SYMBOL_GPL vmlinux 0x11c51773 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x11ccf3c5 blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0x11ed0bba virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x12125331 gmap_fault +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x122a64c2 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x123e644c get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x12564b9d posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x1266d8eb device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x12798697 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x129b1523 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x12bbf308 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x12d2cdbc __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x12df0000 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x12f32624 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x12f4a757 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x130bc12a fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x131d9aab dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x13679f6a cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x13900921 msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen +EXPORT_SYMBOL_GPL vmlinux 0x13d7d273 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x140191bb pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x14078f33 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x1445554f posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x1459db92 xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0x14657228 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x14ba2a14 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x151fde4e sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x152f52dd dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x1534aa5c device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x153d4924 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x153f2224 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x156f2483 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0x157bc422 s390_enable_skey +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x158dd537 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x158eb7d2 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x15c43555 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x15ea3bf8 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x161409f1 blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x161edc82 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x1644a522 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x164ad4aa __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x167216e6 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x168da3a8 crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x169df052 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x16ed7695 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x16ef0140 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x173a88e5 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x17781775 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online +EXPORT_SYMBOL_GPL vmlinux 0x179abb91 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x17a88983 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x17ceb23c crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x17d6430c tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x1888bb37 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0x18896cdb __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x18ad658e rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x18d4e912 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x191e8682 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x1926a393 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x1977676c ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x1979e4e1 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x199792af hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x19b589b5 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x19ef4098 trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1a56527d sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x1a5a2f47 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1b1e3c8f fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x1b3a8f06 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x1b4bdccd platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x1b6c5a67 chsc_error_from_response +EXPORT_SYMBOL_GPL vmlinux 0x1b7da603 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1ba33c06 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x1bc516e3 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x1c2ac28f __put_net +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5cd9fe l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x1c6dda6c pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x1c6e9a8e scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0x1c734bee wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c9e2f4f iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x1cddb262 put_device +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d4004cd sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x1d4ca144 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x1d5f991e ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x1d6058e2 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1d6201c8 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x1d63f77b nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x1d6caf6b dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x1d8f85e5 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x1d90b778 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1ea70c39 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x1ea9a1c6 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebac2bd getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ed2b4aa fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1f1aa653 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x1f1d250e virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x1f71eb98 debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1f8fe38a crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x1f94f50e single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x1fbad117 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x1fe3a6ea hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x2052a168 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x2061559f fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x207e5935 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL vmlinux 0x213d9be3 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x213ec619 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0x21a98ae5 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21df9855 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x21f40c07 trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x221fdf80 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2228fa11 dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0x2249da5d page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x22537c0e call_filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x226f8172 fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x227fa6ad bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x228a9c7b pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x22e20b10 chsc_siosl +EXPORT_SYMBOL_GPL vmlinux 0x2316195d gmap_enable +EXPORT_SYMBOL_GPL vmlinux 0x233f5316 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0x23552114 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x235f362e handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x236578bf sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x236bbca8 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x237d59f6 zpci_load +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x23b0e9f5 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x23c5ba50 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x23c8b358 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x23e6a807 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x23f92ab7 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x23fc34c7 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x241bfd9f zpci_store_block +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x247b0271 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x249d092b __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24b31cc7 napi_by_id +EXPORT_SYMBOL_GPL vmlinux 0x24c6beee nr_iowait +EXPORT_SYMBOL_GPL vmlinux 0x24eb60fc user_read +EXPORT_SYMBOL_GPL vmlinux 0x24fa4e35 gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x255acba5 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x255b9dbb vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x25bafc98 __module_address +EXPORT_SYMBOL_GPL vmlinux 0x25bb7d63 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x25c7b6e2 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x2607a61d css_chsc_characteristics +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x2669f4b8 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x268e14ed perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x26b15f87 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26eb5a35 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL vmlinux 0x2704cdbf pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2741c3cf gmap_unregister_ipte_notifier +EXPORT_SYMBOL_GPL vmlinux 0x276775a1 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x27a950e3 device_del +EXPORT_SYMBOL_GPL vmlinux 0x27c283ad __online_page_increment_counters +EXPORT_SYMBOL_GPL vmlinux 0x27c842cc bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x28169f66 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x2827a23c percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x28423b78 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x28afeab0 rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x28c893c8 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x28d5d9b5 percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0x2921b5f8 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x295871fe pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x29ad8791 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x29d03794 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x2a0c7055 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x2a1538ca lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x2a1564cf alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a74d6b0 klist_next +EXPORT_SYMBOL_GPL vmlinux 0x2a97e262 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x2a987779 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x2abf46b3 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x2b10890c netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2bad91fe ipl_info +EXPORT_SYMBOL_GPL vmlinux 0x2c28cfdb klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x2c2c9918 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c340609 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x2ca00b53 blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x2cba54e6 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x2cdc04d9 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x2cdefb58 wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d4f4339 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x2d6eb39a __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x2dbb3b8b blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x2df1ba0d memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x2df8d909 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x2e0c469f mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x2e143790 bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0x2e1d43cf lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e48b2cb bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec92012 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x2ed9f634 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x2ee2ac58 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2f251a4c __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0x2f3616cb wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f55098e ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2fad5f73 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x2fc11137 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2fc45184 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x30367e77 kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x305ff19a crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x3067d88d __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x30772f60 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x30789d74 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x309b6d68 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x30a4f572 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x30c40c3a sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x30cfdb08 devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x3106d364 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x310d8534 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0x3136fd34 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x3171d9ea trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x317c1820 percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0x319e2abc xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x31d0c728 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x31e8e33e trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x31fb61dc ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x3208167e vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x320aa53b debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval +EXPORT_SYMBOL_GPL vmlinux 0x324b2cff sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x324e0068 blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x32611bd7 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x32876061 pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x32978503 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x329f4b3f tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x32a79bfc kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32ce8b43 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x32f30e13 disable_cmf +EXPORT_SYMBOL_GPL vmlinux 0x334b461d __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x335c2c38 vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x33610248 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x33e3c64c __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x33f62439 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x33f7ca8c crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x34096e96 blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34afa50a kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0x34bef5fb s390_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x34d3ba58 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x34ee2b6e unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x353ebe70 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x35895567 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x35a656b6 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x35b56878 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x35d058fa ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x35eb139d gmap_test_and_clear_dirty +EXPORT_SYMBOL_GPL vmlinux 0x35ee0cf6 __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x362acfa3 pci_debug_err_id +EXPORT_SYMBOL_GPL vmlinux 0x365d95ec tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0x365f151b ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x3687941d __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36f3ddec kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x370dbbf9 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x370eb881 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x371dbd7c gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x37b890dd get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x37ceea7b perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0x37d0a334 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x38051aae crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x3812b6d5 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x381321af iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x3827f835 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x3833bc56 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x384a6981 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x3868ed6a blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0x38c39d04 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x38c63310 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x38eeaa02 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x390161b3 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x39037828 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x390d1faf appldata_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x391e8af3 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x393ffa6f asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0x39433796 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x395e1a90 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x398dbf0c ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x39a27a3b system_verify_data +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x3a0583ea bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a6a52ed pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x3a6c2230 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3ab9fbb1 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3afddda6 tpm2_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x3afe1cef xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x3b386851 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x3b4afdec rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3b8794fd __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x3bc5f5e4 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x3bcf82dc bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3bf86160 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x3c104e2a transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x3c250814 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x3c32a0eb klp_unregister_patch +EXPORT_SYMBOL_GPL vmlinux 0x3c66c8d4 bpf_prog_realloc +EXPORT_SYMBOL_GPL vmlinux 0x3c795564 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cea4c9b blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x3cfa2c8a component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x3d157ad7 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x3d35e687 blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d7c2bea tpm2_startup +EXPORT_SYMBOL_GPL vmlinux 0x3d92b95b gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dd148dd filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3dd74130 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3dfc436e percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL vmlinux 0x3e208778 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x3e258c38 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e84d467 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x3e948de9 unregister_reset_call +EXPORT_SYMBOL_GPL vmlinux 0x3ea28653 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x3ec81de7 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x3ec9e2f3 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f06a7da blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x3f0fdcf2 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x3f466527 mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x3f5f6cc9 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3f7ba3fb ccw_device_get_chp_desc +EXPORT_SYMBOL_GPL vmlinux 0x3fae9450 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x3fbe1e2d __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0x3fc55363 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x3fd2f6fb chsc_sadc +EXPORT_SYMBOL_GPL vmlinux 0x3ff2df31 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x401156c2 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x401c09be list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x405202c0 shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x40689fe6 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x40774f7a wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x40d2cbd2 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x40d3f798 kvm_vcpu_block +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40d8d34c nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x40ebc04d enable_cmf +EXPORT_SYMBOL_GPL vmlinux 0x410a431e kvm_vcpu_uninit +EXPORT_SYMBOL_GPL vmlinux 0x41105308 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x414937eb request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x41567f41 __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0x416704cc ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x4181f1ca pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x41b3b6f0 __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x4223ee4b zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x42792ba7 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x428d751e raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x42f4004b dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x431809dd sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x431a5da4 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x43443c35 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x436f7015 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x439791c0 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43b466b0 gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL vmlinux 0x43bdf180 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x43c33665 isc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x43d246f2 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x43eca819 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x4409af18 klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0x4412d07f ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x4426cb5d __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x442b74dc set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x4432ca7e platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x4446568a transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x445e4900 pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44c16504 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x44cafe27 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x44eb3994 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x453ac28e cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4566e16b iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x456ad091 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x456cab38 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x45848270 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x4594dbef device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x45960716 __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45f8a8b0 shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x462090a8 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x462130fa ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x46681d9e pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x4685667b gmap_map_segment +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46a93f8b raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0x46c18b41 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x46e71c94 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x472f1c9a n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x479165b4 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x479e8f14 pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0x47c4f7fc nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x47dc6cff set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x47eb816f skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x482d5c88 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x483fb5dd cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x4840d95b device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x4858f867 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x48819aa2 bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x488c4f50 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x48925530 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x48a442c7 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x48bf94b6 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0x48c62e4a eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x48f2cace crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x494d1f4b exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49c7a313 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x49cfacf1 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4a3ca9b2 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name +EXPORT_SYMBOL_GPL vmlinux 0x4a6538df hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x4a7417d2 fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0x4a87123f validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x4a8b5408 fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0x4a9eb822 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x4aa9624a trace_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4abe26d1 md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x4b01f099 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x4b1106fb skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x4b18565b static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x4b1bc5c6 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x4b2dce97 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x4b2f68e7 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x4b4c6a73 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x4b840dfd probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x4b9660ef __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4bc99708 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x4bf192a7 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x4c031db0 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x4c3a2ba6 blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4cc19c00 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4cc85c94 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x4cf00b85 bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d03ec65 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x4da1add6 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e198663 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x4e1aa0db tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x4e31eb99 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x4e52b730 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0x4e67e5cf fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x4eb00964 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x4ec153c6 nr_running +EXPORT_SYMBOL_GPL vmlinux 0x4ee48765 component_del +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f415bc0 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f83961f inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x4f886fb6 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x4f89627f shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x4f9271c8 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x4f9bc0ab hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0x4fc539b5 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x500fcdb6 scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0x5012ab91 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x503d374d fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x507de8c6 add_memory +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50e63136 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x5111088b iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x51175977 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x5120cc15 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x513bde18 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x51405201 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x5157d77f __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x51685f4a restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x516c585b unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x51abd3bb pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x51b1ce34 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x51dee03a disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x528475a2 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x52c0bf53 __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x52ef6951 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x52f9c9a6 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x52fca12b pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x52fd6889 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x53040d26 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x5324d04f bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x53889704 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x5394820b sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x5394ac40 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x53ca39d8 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x53fd96d3 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54ab9a60 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x54d3d9e2 kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x54db0003 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x54ef3d03 ioremap_page_range +EXPORT_SYMBOL_GPL vmlinux 0x551b3435 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x55454c41 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x554e33fc sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x55628467 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x5565c774 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x558dc6d8 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x55a47fa1 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x55bf1185 vtime_account_irq_enter +EXPORT_SYMBOL_GPL vmlinux 0x55c90c1b pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f2580b __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x55fe98f9 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x560e23d4 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x560fd987 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5616a72d dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x56338794 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x563c5c66 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x56586c49 pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x5680a039 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0x56b087d4 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56e11c83 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x5739e0d1 genlmsg_new_unicast +EXPORT_SYMBOL_GPL vmlinux 0x575c5f94 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x575fb0a9 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x578178c1 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x578a35a3 scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579bae21 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x579c0bc4 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x579d42e7 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57a0486c blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x57a1c922 __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x57bf75f7 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x57d839ae sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x57d9a9e8 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x57dcdceb kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x58715b0d blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x588a285f unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x589493fd skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0x58b921ce fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0x5911ece8 inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x591a9e0f iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x59a105f8 bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x59c85025 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x59cb9e3a device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5a4276ec blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x5a5e2cd4 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x5a669778 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5aa5752f inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x5ac2727f smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x5b35615e sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x5b394b5b cio_disable_subchannel +EXPORT_SYMBOL_GPL vmlinux 0x5b5e32b7 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x5b5fa2e7 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x5b663fa4 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x5bcbbc7e rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5c1d11c7 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x5c289837 virtqueue_get_used +EXPORT_SYMBOL_GPL vmlinux 0x5c2f2906 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x5c425ebb tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x5c453fa2 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x5c71d21a sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x5c7361f0 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5c899403 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x5ca6760a pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5cdeae59 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x5d1939df crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dac5214 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x5daf640b ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5db2539d bpf_prog_get +EXPORT_SYMBOL_GPL vmlinux 0x5de1e707 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x5e0bd896 fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0x5e313b1a hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x5e3a50d1 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x5e4ab9d6 __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x5e522ddf xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x5e96c933 ccw_device_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x5ea865f7 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x5ee17ced pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x5f054e09 nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0x5f05e25b ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x5f226035 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x5f32574b crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x5f34c4d3 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x5f351356 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x5f3565ff dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x5f3d744d nl_table +EXPORT_SYMBOL_GPL vmlinux 0x5fae64ca bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x5fc23404 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x5fca1e35 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x602754b7 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x602c82e6 flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x6030a977 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x6049bdb2 pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x60694bcb crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x6090dbef klist_init +EXPORT_SYMBOL_GPL vmlinux 0x609ce894 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60b5259b tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x60c53640 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x60c65e78 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x60c95db0 static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x60d14dc2 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x6179bfa8 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x61a97e5f register_reset_call +EXPORT_SYMBOL_GPL vmlinux 0x61b00e3d debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x61b4fcbd devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x621c3c93 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x62aa0de1 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x62b97f96 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x62f3870f skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x630f7914 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x632e7a04 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x6353ac2c pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x63565487 blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x6390afbc __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x63f4dc09 bprintf +EXPORT_SYMBOL_GPL vmlinux 0x63ff36fe debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6418bb3c ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x64346bb3 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x64652f67 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x646723ba unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x64743400 dax_fault +EXPORT_SYMBOL_GPL vmlinux 0x64796ba3 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x648661e2 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x64a9c872 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x64d30920 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x65132a2b crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x651b060a aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x65577313 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65e744df sched_clock_base_cc +EXPORT_SYMBOL_GPL vmlinux 0x65f6d831 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6619a388 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x668d9466 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x66994a93 pci_debug_msg_id +EXPORT_SYMBOL_GPL vmlinux 0x669da1fd kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0x66a25234 chsc_ssqd +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x670bc723 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x67178e95 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x674849ec tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy +EXPORT_SYMBOL_GPL vmlinux 0x677381f9 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x677e4043 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x678c98a1 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67ab8695 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x67cb0766 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x6816eb6b fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x68324a41 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x68ce2004 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x68f8cc23 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x6918b3a3 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x69511034 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x69923695 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x69a0e06d split_page +EXPORT_SYMBOL_GPL vmlinux 0x69aa1c00 __add_pages +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a8f04e9 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b7dcbc8 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x6bb8e16b pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x6bd27bc6 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6be020d8 blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0x6be5162c freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c11934f kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x6c190223 kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0x6c1a46b5 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6cbc8ef4 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x6cbefbb3 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x6cd779ac pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x6cf579f2 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x6cf800c5 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x6d1a2716 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d360923 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x6d4041b6 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x6d4ac43a crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x6d59045b __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x6d692a19 mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x6d8f52f6 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x6e645e20 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e977850 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x6ebdfb72 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6ed4fe92 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x6ef60373 klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x6f6c4d46 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x6f821920 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x6fd0240d pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x6fd670c6 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6fda2463 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6fe7ca7f sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x700078a1 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x702c4432 klp_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x707e6967 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70e27b7d metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x710c309f bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x71489677 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x7148f9b4 find_module +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x717c662d pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x718bf785 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71e2fdf4 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x71f325db tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x72282a8e xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x7246d445 iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x72a32871 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x72acc164 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x72b71e8d pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x72dcd684 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x72e465a6 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x730c8177 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x732ad2da __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x73884276 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x73ce5442 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73ec02ee pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x742cfcdf fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x74477c71 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x746253c8 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x74937272 unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x7493d174 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74cc5d98 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x74e5940a kvm_vcpu_init +EXPORT_SYMBOL_GPL vmlinux 0x74f48120 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x74fa78e3 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x7512bbe1 crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x7544c06b tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x755d249f crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x7563b5ad iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0x7573d6de inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75e8f777 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x7637c36a mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x76436cf8 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x76645d40 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x76abb7a1 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x76b4110b sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x76d8e197 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x76ead8af dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x773c3d60 get_device +EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x775dad68 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x7762ce4a sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x777237ce __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x77867fd7 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x778c8dfd cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x77b9bb90 __gmap_translate +EXPORT_SYMBOL_GPL vmlinux 0x77bac45a pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x77c72a35 md_run +EXPORT_SYMBOL_GPL vmlinux 0x77db6647 flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x77eacea9 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x77efdda0 scm_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7826d3a9 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x78392807 crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x783ed3c0 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78c551ce device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x78e985a7 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x791ddb43 pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0x79230cae proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x79a9c55c public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x7a3317b5 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7aa53c30 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7aa64803 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL vmlinux 0x7ab2c4b1 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b16e616 gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0x7b30a53f gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x7b42f38a zpci_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x7b6bc85c pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x7b70ed5c pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x7bdfe123 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x7be19179 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x7bfeba0b dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x7cc9c4c0 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x7cde2282 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x7ce28559 kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d72a346 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x7d83ea27 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7de1919b trace_clock +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7e978fdd crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7ebe5ba0 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x7f13d491 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x7f18b463 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature +EXPORT_SYMBOL_GPL vmlinux 0x7f76d45a pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f8b9873 x509_request_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x803919b5 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x806209ff dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x806b182b debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x8085fc6b scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80c0ae41 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d5d7dc pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80eb1d15 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x81280fc5 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x8128a78b hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x8148ae6b smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x81622e8c pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x819035c4 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x81a4e88e kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0x81ccbb10 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x82053c30 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x826f6231 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0x82944e7a init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x82d4ace1 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82f1709f ref_module +EXPORT_SYMBOL_GPL vmlinux 0x8317c39c rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x83203d8e __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x83672b28 mmput +EXPORT_SYMBOL_GPL vmlinux 0x836fa9b1 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x8374170d tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x8379c7a7 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x837aedd2 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x83ae85bf pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x83b0816e __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x83bac790 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x83c58727 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x83fe0ea5 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x8403d77f ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x840c9180 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x84978fe0 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84c8dd1e fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x84e3bed5 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x850b8a1c subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x854619f9 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x8578cbc5 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x859c21d5 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85da5a50 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x85fb86fe iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0x861c4ad7 percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0x8623709b cio_update_schib +EXPORT_SYMBOL_GPL vmlinux 0x863152ff kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x863ca66e disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x8646ada9 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x8691523e preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x86b07fb9 __bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x86c18440 zpci_store +EXPORT_SYMBOL_GPL vmlinux 0x86ed23e5 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x86f32c68 alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86fdc4ba blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0x8702e548 process_srcu +EXPORT_SYMBOL_GPL vmlinux 0x8733b7c1 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x87485421 kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x8786ff8f __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x87a9342e md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x87c798cd kvm_init +EXPORT_SYMBOL_GPL vmlinux 0x87ceb397 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x885985d0 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x88732f36 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x888e0f35 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x889441d6 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x88d3d996 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x88d5683f rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x88dd5fa6 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x88e6879c udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x88eb58eb param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x895c46ce alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x89695c1c blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x89a1d796 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x89bcf2db pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x89c081f3 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x89cb0b72 default_iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x89cec74a ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x89f908c5 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x8a00ecec blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0x8a0e75ad device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x8a2a9710 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x8a8205d6 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x8a86f82f pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x8a910442 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x8a934158 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ac06ab4 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x8b1a157c ccw_device_force_console +EXPORT_SYMBOL_GPL vmlinux 0x8b336a18 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8b5a8a97 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x8bb6893e event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c2369a8 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x8c52c34d inet_csk_compat_setsockopt +EXPORT_SYMBOL_GPL vmlinux 0x8c57c093 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x8c61b5a6 static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0x8c73ba0b crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x8cd2941a driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params +EXPORT_SYMBOL_GPL vmlinux 0x8cdbfdf9 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d6b5d7e register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x8d82842e __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x8d8fdbf9 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x8da01274 kvm_get_pfn +EXPORT_SYMBOL_GPL vmlinux 0x8da5dc93 cpu_topology +EXPORT_SYMBOL_GPL vmlinux 0x8da9c579 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x8daf7aad devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x8db616a5 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x8dc3f279 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0x8dc661d9 skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0x8dd2bfcf dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x8dfd5821 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x8e1cd06f kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL vmlinux 0x8e753070 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x8edea1cf hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f77758e sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x8fac80d9 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x900ec0fa shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x905817fc platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x905eae0f device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90c1c4f0 css_sch_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x90e5d678 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x90ed0204 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x914da882 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x916eedad rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x9177fe07 virtqueue_get_avail +EXPORT_SYMBOL_GPL vmlinux 0x9184484e platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x918fff00 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x91cb7fdc inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x925a7de4 single_release_net +EXPORT_SYMBOL_GPL vmlinux 0x92ad11df css_sched_sch_todo +EXPORT_SYMBOL_GPL vmlinux 0x92b0ad3e relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x92b1e410 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x92d65195 napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x931bbbac sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x932b50db x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x9344cc78 __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x93f72cc4 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x94157524 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x942235ef kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x9470371b device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x949053c4 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x9492a68b class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94fe67dd bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x95026eea class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x95459672 appldata_diag +EXPORT_SYMBOL_GPL vmlinux 0x954bc1f9 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x956b19ce dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x95aeb0ff bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x95ec25e7 mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x96560fa1 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x965eb878 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x96873f40 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x968a250a disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x9695e545 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x96a3aecd replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x96a86bd6 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x96e3a9ad kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x96e407cc pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0x96e49785 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x96fa8f45 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x9757ff2c crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x97814aa5 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x978793f5 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x9797cffa kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0x97c4b19f crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x97c98ff7 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97e97ded driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x9819d3ce ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x982509f8 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x982cd486 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x983f2d48 component_master_add_child +EXPORT_SYMBOL_GPL vmlinux 0x984a49d3 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x98537a5f netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x9871a680 cio_enable_subchannel +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x98c3283a crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x98f8b355 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on +EXPORT_SYMBOL_GPL vmlinux 0x991ad54e sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x9921a0de get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x999ebd40 trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99eb8070 list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x99fa21e6 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a2c1ce7 pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x9a470627 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x9a4c9c58 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x9a5b33eb setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x9a5d26f6 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9a92b096 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x9a9a0cd3 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x9ab0b220 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9aea73a0 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9affff09 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x9b00e6c2 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x9b4d69c9 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x9ba87a50 bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x9bd8fd66 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9c38a298 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x9c60376e pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x9c891595 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x9c970c9c rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x9c973142 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x9caaa444 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x9caf85c6 unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x9cb22298 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ccd4108 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x9ce00c9c sock_update_netprioidx +EXPORT_SYMBOL_GPL vmlinux 0x9cf8ba23 kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0x9d2d5e4f crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9d5080ca vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x9d71ac38 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x9d8b9e8b kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0x9d9c3529 static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x9e060242 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e7920a4 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x9ed9ce8e securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0x9ee74958 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x9effe52c tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x9f06b5bd mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x9f18dd8b pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x9f2bcce5 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x9f3ec5ad __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x9f6f117e l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x9f76c1e4 blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0x9f871975 hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x9fafad95 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x9fb5467b crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0xa04d77a6 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xa0d4a844 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0xa1198fd9 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xa171f3b6 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0xa17d2443 cmf_readall +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa19991b2 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0xa1bcd053 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xa1c3997f blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0xa1f20f89 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xa21939ce dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0xa225d2a1 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0xa23f00d1 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2a97b66 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0xa2ac5519 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2bf268f vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0xa3049980 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xa31214dc kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0xa31df8b6 tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0xa35ee633 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0xa3845d18 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0xa385eadb crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa41e8371 __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0xa43487a4 pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xa442d693 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xa45143aa pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xa4534734 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xa4a42813 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0xa4a7cdbb fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xa4bf96c9 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0xa4eeb1d4 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xa51f644f wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0xa5481736 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xa567f1aa pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xa5954702 __gmap_zap +EXPORT_SYMBOL_GPL vmlinux 0xa59f77ef netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0xa5cce108 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa6030e28 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0xa61b6723 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xa61f1938 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xa62203e8 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa62d630a io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xa62e388a css_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xa64e77f8 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xa6660ed0 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xa6a3db58 __dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0xa6b10c4f tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6c5400d __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa72c2970 kvm_clear_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xa73b115c ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xa7b3b735 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xa80619fe trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0xa816bed6 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xa84ed0c5 devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa89218d5 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xa8a7ac46 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8eba1b1 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa919bb0d blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0xa928e137 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa988f7c0 crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xa9aef2e1 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9eee080 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0xa9ff15b9 s390_enable_sie +EXPORT_SYMBOL_GPL vmlinux 0xaa10fc9e debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xaa20a08d kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xaa28e48f vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xaa82668a tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xaaa62767 ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xab21671b bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xab2842b2 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0xab4761c1 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xab567d31 percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xab59c049 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab97a97d s390_handle_mcck +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabe12262 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xac165696 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xac208973 tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0xac3b8d17 pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0xac3d2d5f fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xac945902 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xac9902a7 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xaccd395f wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0xacf54b32 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xacf84c48 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0xad063b7b __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xad2399ad dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xad3dfa13 lgr_info_log +EXPORT_SYMBOL_GPL vmlinux 0xad7a699c devres_find +EXPORT_SYMBOL_GPL vmlinux 0xad89e574 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0xad9b63ef user_update +EXPORT_SYMBOL_GPL vmlinux 0xada01ca8 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xadaaa3ae diag308 +EXPORT_SYMBOL_GPL vmlinux 0xadbd6eae virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xadc76691 __netlink_alloc_skb +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xadfe8985 bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0xae017403 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0xae4fadfe devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae76991a init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xaf657ab8 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xaf89d4be gmap_do_ipte_notify +EXPORT_SYMBOL_GPL vmlinux 0xaf8dbafe blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0xaf96b3c8 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0xaf9b4e2e device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xb00a8738 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xb00e1224 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xb02b3a54 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xb034c3c6 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xb044c5e2 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xb08c07ec dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0xb0b55e9d relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xb0b5a6c9 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0c46a87 kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0xb10c828a blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb1584176 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb1975477 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1b66edb device_show_int +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1e9a41f device_add +EXPORT_SYMBOL_GPL vmlinux 0xb1ed128f rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb2436173 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb2ce8447 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0xb2f463e2 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb2fc1858 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xb30295ac virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0xb32ea9a7 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xb3310062 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xb341ba32 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy +EXPORT_SYMBOL_GPL vmlinux 0xb3f2d9d5 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0xb40c2f21 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xb4221fec register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0xb42db28c inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0xb43e0f2e crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xb44c182f list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb45b4f7e chsc_pnso_brinfo +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4be4e0a ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xb4bf7556 device_add_property_set +EXPORT_SYMBOL_GPL vmlinux 0xb4da5371 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0xb4f94827 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xb51c9d3d ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xb52e0511 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb5381118 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0xb5458a33 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xb58cfbb2 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb58e2401 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5b7f816 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb60e94eb pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb643b9bb xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0xb6925658 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0xb6b5cf1c trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xb6d98b51 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xb70b3ba4 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xb70bc3ec ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xb74f84ed trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0xb755f6ce is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0xb7b0aa4f klp_disable_patch +EXPORT_SYMBOL_GPL vmlinux 0xb7be49ea fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xb8095bfe percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0xb82c555f crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0xb8345ec8 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0xb883512c elv_register +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8fd91da virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb9052bf2 pci_proc_domain +EXPORT_SYMBOL_GPL vmlinux 0xb907b442 scm_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xb92255ac nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xb93e981c fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xb983281f sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xb9946077 tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9de7d47 crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0xb9ea9c8a seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0xb9f065de __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xb9fb6de4 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xba211a15 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0xba257277 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xba364ebf kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0xba3b9f64 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xba7a8d66 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xba8741e6 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xba8ea3b7 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xbab59458 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xbac43340 devres_get +EXPORT_SYMBOL_GPL vmlinux 0xbadee137 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0xbaf90e39 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb056ed0 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb128381 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xbb401e70 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xbba6e3aa devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xbbc11963 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xbbc40a71 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0xbbd58005 gmap_ipte_notify +EXPORT_SYMBOL_GPL vmlinux 0xbc10ac59 unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc6dabe4 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcbbd266 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0xbcbe4277 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0xbcc3be74 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbcdf89c4 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xbcebca65 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xbcf45046 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0xbd04a9f2 zpci_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xbd0f9279 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd65f72b device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xbd9f5274 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0xbdcffdb6 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbe173412 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0xbe2dde81 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xbe3e4b2e vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0xbe5d116e pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0xbe652b6e kick_process +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe6ca664 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xbe6d0e4e device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0xbe8da52f kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xbea50c64 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbed224d7 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xbef2241d __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xbef4475b devres_remove +EXPORT_SYMBOL_GPL vmlinux 0xbf0f37d1 __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0xbf177ba7 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbf2bf743 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xbf595bad devres_release +EXPORT_SYMBOL_GPL vmlinux 0xbf5eebbe vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xbf617613 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xbf7facd4 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0xbfbbe50f skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfed24dd skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0xbffa4f2b sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xbffacab8 component_add +EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space +EXPORT_SYMBOL_GPL vmlinux 0xc081f77c sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc08a8573 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0xc08befff crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0xc0a0efc7 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0b3c5bd ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc130b03e memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0xc18b5983 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xc1aa26f8 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0xc2089f00 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc23882e6 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xc250d5c3 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc2517490 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0xc2725020 of_css +EXPORT_SYMBOL_GPL vmlinux 0xc283d775 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xc29922f1 kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0xc2a7d371 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xc2c9262c mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xc2cddd7a blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xc2db540b pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xc2e574e7 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc2e58432 trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0xc2ebce1d __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0xc2efdf06 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0xc31fb5ed pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc34e2c32 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0xc357923c pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xc35c7e63 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0xc35d1c2c pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc4788f23 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc4db606e virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xc4ec47b3 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xc4f895ec exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0xc511cd47 snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xc5192366 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc5484e89 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc54f093e bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0xc553b9cd virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0xc556bc26 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc5a86646 bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0xc5b6b582 ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc62f1f3b __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0xc633d949 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc64abd56 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xc64b9ebe raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xc64f55ba virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc66d242c scm_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xc6812d18 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6b8e59c tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0xc6f45b9f ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xc705f5dc probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0xc7121e0f raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a762e9 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7ec2cce tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0xc7f89ff8 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0xc7fdc049 device_create +EXPORT_SYMBOL_GPL vmlinux 0xc803c99b platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0xc878fb59 __remove_pages +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8bd0cda bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xc8d6ddf9 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc8fbd73c bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0xc92f3cc7 ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0xc97429d4 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xc97677da blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xc9c43a1e __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0xc9dc325b crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xca418722 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xca5d1b72 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xca5d66ee rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xcac41364 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0xcb054720 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0xcb176afb tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xcb501ab5 napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0xcb5373c6 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xcb8fe7bb simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xcbb13a8f remove_irq +EXPORT_SYMBOL_GPL vmlinux 0xcbbf5e2f dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcc4704bb tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcc911e9f alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xccb537fa for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0xccb91f4e debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xccce6279 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xccec8fa4 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xccf2bf57 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0xccf60d12 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xccfedfd0 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcd13984b __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xcd2fb4a0 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xcd37cd6f wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0xcd3a4134 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xcd449a56 ping_close +EXPORT_SYMBOL_GPL vmlinux 0xcd55ba44 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdbeed0e shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0xcdc27785 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xcdc8b515 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcde34ce3 add_memory_resource +EXPORT_SYMBOL_GPL vmlinux 0xcde574ac fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0xcdf315f0 __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce6b9ee0 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce71a10e tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcea64ff0 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xcecba454 percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcf120057 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xcf2c3505 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xcf3be4d8 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0xcf3dbf5d device_move +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf737037 gmap_translate +EXPORT_SYMBOL_GPL vmlinux 0xcf7b0223 chsc_scm_info +EXPORT_SYMBOL_GPL vmlinux 0xcf854ddc dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xcf886923 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xcf8d69bb clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfd4718b iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xcfdeb8fb crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0xcfea77af map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xd008bef5 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd00b91ed pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0xd031b589 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd05d0918 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0c06665 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xd0d13177 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xd0dc6fc8 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xd0e1a156 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0xd0eb00a4 percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0xd10c5ed7 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xd10f71df ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xd11d5e4c system_trusted_keyring +EXPORT_SYMBOL_GPL vmlinux 0xd137af42 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd19a9523 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0xd1aaf2da inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0xd1caddfd tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0xd1e7c1b2 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd20ab993 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd247b5db atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd24cc89b show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0xd25766c1 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0xd25c2d24 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd29b33c1 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xd29b73a9 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd31eedde kvm_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0xd3243ae8 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xd328ae39 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xd34354a5 rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xd352638b irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xd352f029 trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd4395d22 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xd4831e10 component_master_add +EXPORT_SYMBOL_GPL vmlinux 0xd487b454 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xd4994f2f __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4d8c52f pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xd54768e0 gmap_free +EXPORT_SYMBOL_GPL vmlinux 0xd5541799 pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd56b5f64 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0xd5a4c838 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5db1efd pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd60d23ba pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0xd63b550b device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xd6538036 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xd66bbcac __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xd6712402 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd6870ca5 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd68d5a06 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xd69f5c95 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xd6bd5ff4 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xd6c36106 tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xd6cadcff attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xd6d672b0 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0xd702695b set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd72b5798 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xd742ad15 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd7859ea6 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xd7a33e78 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0xd7c0b6be pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xd7c8e8cd register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7ef7fd0 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xd7f3d14d sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xd7fe7138 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xd803a600 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd838cf6a skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xd8419862 gmap_disable +EXPORT_SYMBOL_GPL vmlinux 0xd843d80e pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xd8565f5a free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd88516a3 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0xd887a168 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xd88a2f53 css_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd8a40ed7 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xd8a769cb iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xd8aae3c9 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0xd8db78b1 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0xd933e506 tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xd93b37fe __sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd96e1839 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xd9843ff6 __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0xd9c56b06 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xd9e5dda9 kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9f3131c crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xda3242ad fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xda3706c7 dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0xda3f3e8a isc_register +EXPORT_SYMBOL_GPL vmlinux 0xda6b62a4 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0xda79aa52 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0xda90c43d relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xdb7280ec tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc858dfe inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdca14503 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd57e2b5 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0xdd73ae31 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xdd7671e3 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xdd96c3fe pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xdd97a466 device_register +EXPORT_SYMBOL_GPL vmlinux 0xdda4e80e appldata_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddd55a69 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xddf98b65 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xddfc074f subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xde0a3b99 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xde13f1b7 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xde1637d3 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xde32b1ac hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xde55b21c find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0xde8e3487 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xdea218ef find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xded301ac fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0xded5d8e0 irq_stat +EXPORT_SYMBOL_GPL vmlinux 0xded6cc34 dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf23c011 bus_register +EXPORT_SYMBOL_GPL vmlinux 0xdf3f5951 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xdf78022a device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xdf821352 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xdf82e3ba bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xdf8e0927 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0xdf999e33 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xdfa6dd04 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xdfb33080 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xdfb4e848 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe00d8968 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe0513a87 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0xe06388fd add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe0837434 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xe098eef8 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xe0ae2ce6 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xe112cc95 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xe117d953 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xe11c2925 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0xe12bf682 pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0xe132f71e crypto_lookup_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe17b7a9e __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xe1e06997 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0xe20172da register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xe209a466 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xe22474b6 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xe285ad0a crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0xe286b79c kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0xe2c67a52 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xe2fb4223 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xe2febdc2 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe33c3b84 inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0xe358af79 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe40cc595 ccw_device_get_schid +EXPORT_SYMBOL_GPL vmlinux 0xe42a98cb __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe45fec6c vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xe464bce4 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe4900def get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xe490fc81 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4ac4d98 dax_clear_blocks +EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0xe4f7f8fd driver_register +EXPORT_SYMBOL_GPL vmlinux 0xe5612af5 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xe56267e3 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe5c60450 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe5e99dcf pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xe607f4d3 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0xe615ec0f skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xe6346654 pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xe6355fb4 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xe64ce6a4 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe652de93 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe6a6d5af blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0xe6abc3fc skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xe70a7e02 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xe7151498 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe76012f3 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0xe7617f8d fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe76c19a7 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe7b718df chsc_determine_channel_path_desc +EXPORT_SYMBOL_GPL vmlinux 0xe7bf96fb pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xe7cab89d kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xe7cf93a5 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xe7f6467d digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe8092b2b insn_to_mnemonic +EXPORT_SYMBOL_GPL vmlinux 0xe853f157 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xe8557947 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe869062e xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xe86d7ca5 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xe8d09f2f chp_ssd_get_mask +EXPORT_SYMBOL_GPL vmlinux 0xe8e019ae chp_get_sch_opm +EXPORT_SYMBOL_GPL vmlinux 0xe92bd8e8 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe969f05b tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xe987b420 gmap_unmap_segment +EXPORT_SYMBOL_GPL vmlinux 0xe9999393 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xe9a5ab5d fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea2b261b s390_reset_cmma +EXPORT_SYMBOL_GPL vmlinux 0xea4829d2 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0xea730606 cmf_read +EXPORT_SYMBOL_GPL vmlinux 0xea836e79 use_mm +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xea907a44 kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0xea913242 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xea95cb5a memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xeaaf3922 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xeabaa784 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xeaf08820 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0xeb4e1391 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xeb5452d6 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0xeb901258 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0xeb97f855 xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0xeba3233f blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xeba3b545 gmap_register_ipte_notifier +EXPORT_SYMBOL_GPL vmlinux 0xeba745e1 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0xebd23139 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xec030e2a iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xec13c83c si_swapinfo +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec4a8b5e get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xec631f34 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0xec92948b __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xec93328b pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xecac82e6 tpm2_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xecb263b2 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xecb2ec85 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xecbd936c md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0xecbe5b59 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xece1e345 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xed69e9f0 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xed8f9b7a __online_page_set_limits +EXPORT_SYMBOL_GPL vmlinux 0xeda3a884 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xedb2dedc pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xedd31b00 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xedea3824 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xedf62944 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xee09dcd8 _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0xee0b66ef __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0xee2e3fa9 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xee497f08 jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xee544cd9 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xee6d0865 put_pid +EXPORT_SYMBOL_GPL vmlinux 0xeedd1428 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0xeef1e08e security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0xef13106c nr_threads +EXPORT_SYMBOL_GPL vmlinux 0xef27c1e5 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef6d007a sigset_from_compat +EXPORT_SYMBOL_GPL vmlinux 0xef86e566 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefa7ae0c kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0xefe6ab44 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xeffc6731 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xf01e9938 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf07c3783 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xf099103d __sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xf0c272cf mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0xf0c3c535 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xf0c8774d __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf1156ed9 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0xf1263573 vtime_account_system +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf1ab9364 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1d6ccfa simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xf2126288 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf2ac9f0e pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2d6b721 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf318b340 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf33fe1ca inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0xf3733469 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf393cb2e iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xf3df8b1e blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0xf3eeef3d generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf407dda4 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xf4586e69 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0xf488dedf register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4a70616 kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xf4cdbd9d device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf4fdb75f inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xf5247d53 rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0xf5494bc6 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xf54ae3f7 save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf5545f5c bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5ba9820 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xf5bcf1b2 __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0xf5cad930 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xf5d149db __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xf5d67c8b device_remove_property_set +EXPORT_SYMBOL_GPL vmlinux 0xf60c7fbe ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xf6625a9c sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xf6636730 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xf67110c4 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xf6893854 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0xf6a72a0d fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xf6b6952b sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf70c3dd3 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xf70ef850 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0xf7321dc3 percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0xf7649396 relay_close +EXPORT_SYMBOL_GPL vmlinux 0xf790eb0e scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0xf79e906e __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf7b94f86 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xf7c713e5 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xf7ed5b77 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0xf7fd7f87 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf82a73dc trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf83b7f5d platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xf868921a rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xf8782b35 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf8ad196c simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xf8ada807 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xf8ba6ca0 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xf8dd3fcb watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xf8e4fad0 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xf8fd9e9d synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf90d2ec9 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf93f3237 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf972fa35 wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf993e900 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9e36e8a iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf9e382b3 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xfa0812cb blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec +EXPORT_SYMBOL_GPL vmlinux 0xfa9e335e hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfadac245 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0xfb1ee939 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb3f6f38 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xfb57ad89 bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbd68fda percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0xfc017654 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc1098dc xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xfc20bea7 trace_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0xfc4fcde8 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xfc5c8257 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xfc5eb088 cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xfc6d739c __online_page_free +EXPORT_SYMBOL_GPL vmlinux 0xfcbb5148 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd204645 queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xfd2203b3 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xfd548f90 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0xfd7f64a5 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xfdb8f5ad ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0xfde90140 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xfdff8ecb crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xfe135ba0 user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0xfe6bfba6 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xfe8301d2 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xfe94e4fe irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff288dce noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xff29b22c kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffdf079f __pm_runtime_resume only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-106.129/s390x/generic.compiler +++ linux-raspi2-4.4.0/debian.master/abi/4.4.0-106.129/s390x/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.5) 5.4.0 20160609 only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.master/abi/4.4.0-106.129/s390x/generic.modules +++ linux-raspi2-4.4.0/debian.master/abi/4.4.0-106.129/s390x/generic.modules @@ -0,0 +1,846 @@ +8021q +842 +842_compress +842_decompress +9p +9pnet +9pnet_rdma +9pnet_virtio +act_bpf +act_connmark +act_csum +act_gact +act_ipt +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +act_vlan +aes_s390 +af-rxrpc +af_alg +af_iucv +af_key +af_packet_diag +ah4 +ah6 +algif_aead +algif_hash +algif_rng +algif_skcipher +amd +ansi_cprng +anubis +ap +appldata_mem +appldata_net_sum +appldata_os +aquantia +arc4 +arp_tables +arpt_mangle +arptable_filter +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at803x +aufs +auth_rpcgss +authenc +authencesn +bcache +bcm-phy-lib +bcm7038_wdt +bcm7xxx +bcm87xx +binfmt_misc +blocklayoutdriver +blowfish_common +blowfish_generic +bonding +br_netfilter +brd +bridge +broadcom +btrfs +cachefiles +camellia_generic +cast5_generic +cast6_generic +cast_common +ccm +ccwgroup +ceph +ch +chacha20_generic +chacha20poly1305 +chsc_sch +cicada +cifs +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cmac +coda +cordic +cpu-notifier-error-inject +crc-ccitt +crc-itu-t +crc32 +crc7 +crc8 +cryptd +crypto_user +ctcm +ctr +cts +cuse +dasd_diag_mod +dasd_eckd_mod +dasd_fba_mod +dasd_mod +davicom +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +dcssblk +deflate +des_generic +des_s390 +diag288_wdt +dlm +dm-bio-prison +dm-bufio +dm-cache +dm-cache-cleaner +dm-cache-mq +dm-cache-smq +dm-crypt +dm-delay +dm-era +dm-flakey +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-verity +dm-zero +dp83848 +dp83867 +drbd +drbg +drop_monitor +dummy +dummy_stm +eadm_sch +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +echainiv +em_cmp +em_ipset +em_meta +em_nbyte +em_text +em_u32 +eql +esp4 +esp6 +et1011c +faulty +fcoe +fcrypt +fixed_phy +fou +fpga-mgr +fs3270 +fscache +fsm +garp +gcm +geneve +gennvm +genwqe_card +gf128mul +gfs2 +ghash-generic +ghash_s390 +grace +gre +hangcheck-timer +hmcdrv +ib_addr +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mad +ib_mthca +ib_sa +ib_srp +ib_srpt +ib_ucm +ib_umad +ib_uverbs +icplus +ifb +ila +inet_diag +intel_th +intel_th_gth +intel_th_msu +intel_th_pci +intel_th_pti +intel_th_sth +interval_tree_test +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_MASQUERADE +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_tunnel +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_wlc +ip_vs_wrr +ip_vti +ipcomp +ipcomp6 +ipip +ipt_CLUSTERIP +ipt_ECN +ipt_MASQUERADE +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +irqbypass +iscsi_boot_sysfs +iscsi_target_mod +iscsi_tcp +isofs +iw_cm +jitterentropy_rng +kafs +keywrap +khazad +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +lcs +libceph +libcrc32c +libfc +libfcoe +libiscsi +libiscsi_tcp +libore +libosd +libphy +libsas +linear +llc +lockd +locktorture +lru_cache +lrw +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +mac-celtic +mac-centeuro +mac-croatian +mac-cyrillic +mac-gaelic +mac-greek +mac-iceland +mac-inuit +mac-roman +mac-romanian +mac-turkish +macvlan +macvtap +marvell +mcryptd +md-cluster +md4 +mdio-bcm-unimac +mdio-bitbang +mdio-cavium +mdio-octeon +mdio-thunder +mdio-xgene +memory-notifier-error-inject +michael_mic +micrel +microchip +mip6 +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlxsw_core +mlxsw_pci +monreader +monwriter +mpls_gso +mpls_iptunnel +mpls_router +mpt3sas +mrp +msdos +national +nb8800 +nbd +netconsole +netiucv +netlink_diag +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_ipv4 +nf_nat_ipv6 +nf_nat_irc +nf_nat_masquerade_ipv4 +nf_nat_masquerade_ipv6 +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_redirect +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_synproxy_core +nf_tables +nf_tables_arp +nf_tables_bridge +nf_tables_inet +nf_tables_ipv4 +nf_tables_ipv6 +nf_tables_netdev +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_log +nfnetlink_queue +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat_ipv4 +nft_chain_nat_ipv6 +nft_chain_route_ipv4 +nft_chain_route_ipv6 +nft_compat +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_exthdr +nft_hash +nft_limit +nft_log +nft_masq +nft_masq_ipv4 +nft_masq_ipv6 +nft_meta +nft_meta_bridge +nft_nat +nft_queue +nft_rbtree +nft_redir +nft_redir_ipv4 +nft_redir_ipv6 +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nilfs2 +nlmon +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +notifier-error-inject +ntfs +null_blk +objlayoutdriver +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +openvswitch +oprofile +osd +osdblk +osst +overlay +p8022 +pcbc +pci-stub +pcrypt +percpu_test +pkcs7_test_key +pktgen +pm-notifier-error-inject +poly1305_generic +pps_core +prng +psnap +ptp +qdio +qeth +qeth_l2 +qeth_l3 +qsemi +quota_tree +quota_v1 +quota_v2 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +rbd +rbtree_test +rdma_cm +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +rmd128 +rmd160 +rmd256 +rmd320 +rpcrdma +rpcsec_gss_krb5 +rrpc +rxkad +salsa20_generic +sch_cbq +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_fq +sch_fq_codel +sch_gred +sch_hfsc +sch_hhf +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_pie +sch_plug +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_tbf +sch_teql +sclp_async +sclp_cpi +scm_block +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +scsi_transport_srp +sctp +sctp_probe +seed +seqiv +serial_core +serpent_generic +sha1_s390 +sha256_s390 +sha512_s390 +sha_common +sit +smsc +smsgiucv_app +softdog +spl +splat +st +ste10Xp +stm_console +stm_core +stp +sunrpc +tape +tape_34xx +tape_3590 +tape_class +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +tcm_fc +tcm_loop +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tea +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +teranetics +test-hexdump +test-kstrtox +test-string_helpers +test_bpf +test_firmware +test_module +test_printf +test_static_key_base +test_static_keys +test_udelay +test_user_copy +tgr192 +tipc +torture +tpm-rng +ts_bm +ts_fsm +ts_kmp +tunnel4 +tunnel6 +twofish_common +twofish_generic +uartlite +udf +udp_diag +udp_tunnel +unix_diag +veth +vfio +vfio-pci +vfio_iommu_type1 +vfio_virqfd +vhost +vhost_net +vhost_scsi +virtio-rng +virtio_scsi +vitesse +vmac +vmlogrdr +vmur +vport-geneve +vport-gre +vport-vxlan +vrf +vringh +vsock +vxlan +wp512 +x_tables +xcbc +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_ipcomp +xfrm_user +xfs +xor +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LOG +xt_NETMAP +xt_NFLOG +xt_NFQUEUE +xt_RATEEST +xt_REDIRECT +xt_SECMARK +xt_TCPMSS +xt_TCPOPTSTRIP +xt_TEE +xt_TPROXY +xt_TRACE +xt_addrtype +xt_bpf +xt_cgroup +xt_cluster +xt_comment +xt_connbytes +xt_connlabel +xt_connlimit +xt_connmark +xt_conntrack +xt_cpu +xt_dccp +xt_devgroup +xt_dscp +xt_ecn +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_ipcomp +xt_iprange +xt_ipvs +xt_l2tp +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_nat +xt_nfacct +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_realm +xt_recent +xt_sctp +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_tcpudp +xt_time +xt_u32 +xts +zavl +zcommon +zcrypt_api +zcrypt_cex2a +zcrypt_cex4 +zcrypt_msgtype50 +zcrypt_msgtype6 +zcrypt_pcixcc +zfcp +zfs +zlib +zlib_deflate +znvpair +zpios +zram +zunicode +zynq-fpga only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.raspi2/abi/4.4.0-1080.88/abiname +++ linux-raspi2-4.4.0/debian.raspi2/abi/4.4.0-1080.88/abiname @@ -0,0 +1 @@ +1080 only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.raspi2/abi/4.4.0-1080.88/armhf/raspi2 +++ linux-raspi2-4.4.0/debian.raspi2/abi/4.4.0-1080.88/armhf/raspi2 @@ -0,0 +1,14893 @@ +EXPORT_SYMBOL arch/arm/crypto/aes-arm 0x276b2f72 private_AES_set_encrypt_key +EXPORT_SYMBOL arch/arm/crypto/aes-arm 0x6c62e582 AES_decrypt +EXPORT_SYMBOL arch/arm/crypto/aes-arm 0xc30fcbed AES_encrypt +EXPORT_SYMBOL arch/arm/crypto/aes-arm 0xcf024ae9 private_AES_set_decrypt_key +EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0x6bc163a2 crypto_sha256_arm_finup +EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0xbe1424eb crypto_sha256_arm_update +EXPORT_SYMBOL arch/arm/lib/xor-neon 0x0f051164 xor_block_neon_inner +EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe +EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble +EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL crypto/mcryptd 0x28865246 mcryptd_arm_flusher +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/bcma/bcma 0x3a67c186 bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0x8a665813 bcma_core_irq +EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str +EXPORT_SYMBOL drivers/block/paride/paride 0x10b59f2e pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x232f5289 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x3ae1cbff pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x41b2f69c pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x66a673a2 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x7515d238 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x75b4ce49 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x797e2d56 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x9b274d25 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0xae395f6e pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xbfddce45 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0xf25ae96b pi_do_claimed +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xdcdf3de4 btbcm_patchram +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x129ae835 ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fae3bac ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x3336337c ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x36281426 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4ff7d0a8 ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa1b994b1 ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/nvram 0x0f28cb91 nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x17ff2c1d __nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x2adec1e0 __nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x7da28f12 nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x9ce3f83f nvram_write_byte +EXPORT_SYMBOL drivers/char/nvram 0xa8813189 __nvram_write_byte +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x45c39976 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x47b3cfff st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x621b933d st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x6e6e92c9 st33zp24_probe +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x4c53cf0e xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x591a4cb7 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xd5df6e10 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x436c21ca dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x441051bb dw_dma_cyclic_free +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x51740ca1 dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x8e1a38d5 dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x909355ac dw_dma_get_src_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xa2feaedc dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/dma/pl330 0x47f9b9ae pl330_filter +EXPORT_SYMBOL drivers/edac/edac_core 0x9f201e7e edac_mc_find +EXPORT_SYMBOL drivers/fmc/fmc 0x006facea fmc_show_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x081fe72d fmc_find_sdb_device +EXPORT_SYMBOL drivers/fmc/fmc 0x29cbcaa7 fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x33f7a142 fmc_device_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x3bb3f059 fmc_device_register_n +EXPORT_SYMBOL drivers/fmc/fmc 0x6f22a838 fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x7aa2c6de fmc_device_unregister_n +EXPORT_SYMBOL drivers/fmc/fmc 0xa3e272da fmc_reprogram +EXPORT_SYMBOL drivers/fmc/fmc 0xb2f05fb2 fmc_driver_register +EXPORT_SYMBOL drivers/fmc/fmc 0xd4b64ce2 fmc_device_register +EXPORT_SYMBOL drivers/fmc/fmc 0xfe896c88 fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01079bff drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01965a05 drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01bef9ed drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x031fbc59 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04d6a987 drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0613d27f drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x078b3436 drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07a5a72d drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08cdefee drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0977c65b drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cb67db9 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e9b69fc drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f74f379 drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fccafb1 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x105b475a drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1108306f drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x127a10f9 drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1571fac4 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15d7a944 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17158f5a drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x178cc7b9 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17c1bce8 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1acee627 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ce8ecbe drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d3e3136 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d8f4951 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e853b5b drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1efc6206 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2074c495 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2080875a drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20882733 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2258dafe drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22c1d7a0 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22cb3e42 drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2367a947 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24de41b4 drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26274202 drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2658f71b drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2671b95a drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29367ede drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29b4ef06 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a7fa319 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bb02a91 drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2be36e72 drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c51c141 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e29276f drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2efd03f9 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f09f45f drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30cd773f drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x329b21db drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32db5f98 drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3311b249 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34326e92 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3433bc32 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x346127a7 drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x348e4f2b drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3756ae5b drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37950ca5 drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x379f0c29 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37d29a09 drm_connector_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37df34c6 drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3849b642 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3926599b drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x393f878e drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b7a8f6b drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40b4757e drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41a4abb7 drm_plane_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4269e969 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4370156c drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x441faa09 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44c42246 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45dbeac8 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46246856 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46325383 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4641a599 drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46619ab9 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46a17fe4 drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47edf571 drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x481582cf drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x485bd831 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4862e0fa drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4acf42a2 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bf6d72d drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ca56ef2 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ef48634 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50207e64 drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x510d1751 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51f5e44d drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52e206bf drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53c4ea6e drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x541de988 drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54541cfc drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55844bd9 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5619803c drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57d718c9 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x594dc037 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5aa98eb8 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5abf3bbf drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5acf34bd drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c08f1be drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c81e648 drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ca4274c drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ea16aa6 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f200861 drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f24babc drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6020386c drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x603d7fcf drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60485e29 drm_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63521e16 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63c47ebb drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65b5a5c8 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6675e925 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x669b78e4 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x672862ba drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x676e57ee drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67fbfd7e drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6869aabc drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68f20016 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b95b30c drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f3763d2 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6fa7facb drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73c9ef45 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7459723a drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x763cae17 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x770b5a34 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78558944 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x786ef7b8 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a60ce64 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b9fbf85 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ba475b9 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c095664 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c4a998a drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c8b3d59 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7deda44a drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ec97001 drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fdc4bf8 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82ad1946 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82ed8260 drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83d0d3bb drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84300ce8 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84b34e08 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x852e4788 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86b333bb drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8761a938 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87620728 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8803093e drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89dc93c2 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a9b329d drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8aedb149 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e47d6b4 of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ebb4cb8 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9043706a drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90d93ce0 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92064ea1 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92f5b2ee drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95350993 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x962360bc drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x967deeba drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x975dbf8a drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97c3e4e0 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97f6e9d4 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98d8a747 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99659f22 drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c6283c3 drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cc8948d drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d4c62dd drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fb0d4b5 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa00304f9 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa03cd4c3 drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa10b5e6c drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa128a4bd drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa142614c drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1e8e160 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa36972bf drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3a97e21 drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3b1ed2e drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3e0fb05 drm_crtc_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4604b39 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4ef5a46 drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5af4ed4 drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5d31ee8 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa66d0d47 drm_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa75f40f2 drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa78aa5a7 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9aaaf8a drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab9194aa drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac0ef577 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae678317 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb04661d8 drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb531a29f drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7fd1b7a drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8b3626c drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb90290a7 drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9891caa drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba6dcac8 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb95a726 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdb18644 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf09d80f drm_encoder_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf32c78a drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfea5292 drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfed6cf4 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0789463 drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc084b7f7 drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc091418e drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0a7fb96 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2749b23 drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc289f729 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc298a0ed drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc440da16 drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc52f5e82 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc544b03a drm_atomic_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5c58d72 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6017ce1 drm_framebuffer_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6193c4d drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc69cf983 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6d54a86 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc1ae925 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdc0d80c drm_platform_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdc95d66 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdc9daef drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce7fd286 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcecb42c2 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0abe719 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0fd4b7b drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1ede68b drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd230cfb3 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2bbbd0d drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd41b1fb7 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd64afb6f drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd69550db drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd777fcf0 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd89f69e2 drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8ac1b8e drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd90bc8f8 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9f48c47 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdae87f70 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb25bfad drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb2f29ba drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb858ad6 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcafa45d drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde698bc7 drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe00b3e34 drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe20fde42 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe24fe7b5 drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe32a6be8 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe454928d drm_framebuffer_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe649c595 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6824f6f drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6a3c32e drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe91d4248 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea470193 drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea793a88 drm_connector_unplug_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xecec2017 drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed7ae138 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef041e9f drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0137692 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0e0bf00 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1032ee3 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf17faa2b drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1db2fd6 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3ab64a4 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf417ed2a drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf51dfd1a drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf54d5c32 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5fbe568 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf635ae1e drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf74a4602 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7f61fc2 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf855103d drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf98c9f9a drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc49f373 drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc5dab71 drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdf5658d drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x022fd4b9 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03caec0d drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06bcb902 drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f8985b3 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f9e6280 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1038ffa6 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1049a1b5 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x109e52e4 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x115673a2 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12dd5769 drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13d324c9 drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15cfe7e1 drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18ae8f84 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18f8fecf drm_helper_probe_single_connector_modes_nomerge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1cd7927c drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1cdd484f drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1dc48839 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21427a10 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21558244 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21fcf0d1 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x220b4c1c drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24e1c7a5 drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x290d3804 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29f2b0b6 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2afc1ada drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2becfba8 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c9d83e5 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2db8714b drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e7c2ffb __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f9a1fa6 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fcf72f9 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3387031c drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33c0503c drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37070087 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37efadcb drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3818b3e2 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b1a23b8 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e003cc6 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e06fc4a drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41063cdc drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x426907ad drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43574a01 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43788625 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44436089 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45b85afa drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45f98f3f drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x472a78a4 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x488f72e9 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48963bcd __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x498c6f4b drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a12eb2d drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b6e7ea3 drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d8bfb2d drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ee731bd drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f304973 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4fafcf81 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x515573f1 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55eee358 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5722f631 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x596f59f0 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a31776b drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ef129bc drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6343cdfb drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x684820ea drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6cc0774f drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6cd45e8d drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71df63e7 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71ea5fa2 drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72de83a1 drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7532c42a drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75623a75 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7612892a drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7837901f drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7880c554 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x791387de drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x792cbe99 drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7cc0474a drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d33e74b drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d9b2d00 drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7eef59d5 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f9a0524 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7faa8998 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80fe1da4 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ac45591 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d27af01 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8fc67290 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ff8bff7 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9414576f drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9418bdf7 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x988e533e drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98ca12cf drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9abc073b drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b5ccc73 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c19e7e5 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2ca3b40 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6473146 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa693ddd8 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaaa1f8df drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaaad417f drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac09f9cb drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf28d6f7 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb081cb54 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb26072df drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb363f04f drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6b15e6d drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb707f1e6 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7ca5ae3 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb81645c6 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb84f847f drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfabfee4 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfe56c80 drm_helper_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc354370d drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4b71452 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbe0111d drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcca1456d drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xccf4a6da drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd7bd4f4 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfacd8e5 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd00e8d54 drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd049ee65 drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd069751a drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3c50b23 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd60caef7 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8c59721 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd955bab1 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd2b16e0 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe578cb36 drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7ea3488 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8b7befb drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeaeffefa drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xece09ecf drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed587050 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee09157d drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee2776cf drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee5492b2 drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2e87e7a drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4a70dd2 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8e66878 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb47ae91 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfcdb2a75 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd6f70fa drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffff434c drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0x00df7430 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0x0bcc3759 mipi_dsi_dcs_nop +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0x1b2a9f76 mipi_dsi_detach +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0x1b8a53f8 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0x28b70687 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0x29384461 mipi_dsi_dcs_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0x303f4b6a mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0x3ea78462 mipi_dsi_host_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0x404b287a mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0x420bde60 mipi_dsi_dcs_write +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0x423638de mipi_dsi_host_register +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0x4f26cc4c mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0x5464dc8b mipi_dsi_generic_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0x5927b8ef mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0x6dc0c639 mipi_dsi_driver_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0x75562b6b mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0xb4d7f692 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0xb79ec15d mipi_dsi_create_packet +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0xbd71963c of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0xbe31d493 mipi_dsi_attach +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0xc0d6e766 mipi_dsi_generic_write +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0xc8ab2480 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0xd857e28f mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0xdd4fb6b0 mipi_dsi_driver_register_full +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0xee4d09b0 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0xf1c71955 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dsi 0xf7757758 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x00abd607 ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x115276ca ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x118b0f21 ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132b05be ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x136ec7fa ttm_suspend_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b06d7f1 ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2c7fac9b ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2ce5b7d1 ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2e9e56a2 ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x33b2ba8f ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x341f1493 ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x34991a61 ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x37a559c6 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4628b006 ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4c2a6bd5 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4fe6ca3a ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x538cb3e5 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cf59609 ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x61034faf ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x61eeaf9d ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6767d912 ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67b1d568 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a4c7754 ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c0ec969 ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7a56a563 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d0732f4 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d9da9a6 ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8589758d ttm_suspend_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86bb8a6c ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8c252d77 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x90f5fe08 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x966b0363 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99102ab9 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99cfaf84 ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d0eb91 ttm_ref_object_add +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa016e87b ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa3f08a83 ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa59971ba ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa693a6fa ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa71c0fbb ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xab836657 ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaf5501bb ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb1e5d1e6 ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb39dc67b ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb47e437c ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb9489806 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbb279f65 ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbe4381b6 ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc01c8803 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc8d757ed ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc968d68f ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xca631a3c ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd0eac970 ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd2d10cda ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd3e6c1cf ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd517fe8d ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8f02943 ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xda65f00e ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe4926940 ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe9a2c476 ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xee5cc4b8 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xefc4df0d ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeff0908f ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf381f0dc ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf751d53a ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfd7484d3 ttm_write_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfe8cc064 ttm_vt_unlock +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0e2a6864 sch56xx_read_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0f5877d4 sch56xx_read_virtual_reg16 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xda19484e sch56xx_watchdog_register +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe5022f95 sch56xx_read_virtual_reg12 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xed1d2a08 sch56xx_write_virtual_reg +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xbc433d4f i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xc4c2a78a i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xfafc702e i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x03dfd071 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x3b914281 i2c_pca_add_bus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1ccd505b mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x3064a4f2 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x48f711ca mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4c7df497 mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4e4911a2 mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x676812df mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7565c078 mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x795d2853 mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8fd22a92 mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x95fbfea4 mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9aa79056 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa900af74 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb2b4b5c8 mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xba42cebe mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd797ea6f mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xdf389302 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x60489983 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xd46f42fc st_accel_common_remove +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x3e46227e iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x97a1c39c iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x5db5463c devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x76f7480b devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x8a5c68b8 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x8fd4396e iio_kfifo_free +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x16c2411f hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x3d48eee6 hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x42589810 hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x545725cc hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x7121dd6c hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xd738338e hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x23fe91e0 hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x60123ad2 hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xa7338fdd hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xd4b0cde4 hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x63b5ce22 ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x730b9c9d ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x7ea0c8d0 ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x7f97512d ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc2420334 ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xda015dc8 ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf1b8544d ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xfa560421 ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xfbc22b1c ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x2daf922f ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x448d54ea ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x5a3d30e3 ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x93a7112c ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xda61f3a0 ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x76062927 ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x8f37cd86 ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xb5093748 ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x094ac040 st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1065520d st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x10bd862b st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2c21ce4d st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3b4efaa4 st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3c598b21 st_sensors_get_buffer_element +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4d5ad7b4 st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5f3e7080 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7004a862 st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7c5f1c0c st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8fb5dd5c st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x952359aa st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9cf6b089 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xabcf9f7b st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xced4cc43 st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xdd551083 st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf39a6aa8 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x673df7e9 st_sensors_of_i2c_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xdb25506d st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xc25cab86 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xcbd7ea37 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xeb7dd15c st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/humidity/hts221 0xb193d4e6 hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x2bb41783 adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x6fa21690 adis_enable_irq +EXPORT_SYMBOL drivers/iio/industrialio 0x1189a060 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x15b53e15 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x330d6a5c iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x40352b29 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x475d0874 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x6476c105 iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x771c689e iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x9114da23 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x96d7d9e6 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x973b321a iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0xc1aa0cef iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0xc2429727 iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0xd9e820a2 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0xde326f70 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe17f1680 iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0xf2941672 iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0xf3b2b428 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xa7234a45 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xc00b6419 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x07f01fab st_magn_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xe8e20046 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xfe22a075 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x22e06f42 st_press_common_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x384e182c st_press_common_remove +EXPORT_SYMBOL drivers/input/gameport/gameport 0x20362371 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x2b7f0a6a gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x32be573d gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x4bd01ff6 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x90859b25 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x9d126d66 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xb7826316 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0xfad0f308 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xfae9941b gameport_set_phys +EXPORT_SYMBOL drivers/input/input-polldev 0x3aad0b88 input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x4abe8b10 input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xa58b48ae input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xbcc933a2 input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xcc7d9129 devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0xb76b254b matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x36a058a8 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x748baf1f ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0xece06a73 ad714x_enable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xb54c61b6 cma3000_init +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/sparse-keymap 0x028092e2 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x2ab81efe sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x93e026f5 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x95ee6c51 sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0xbea5bda1 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0xfcbbbf32 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x52dcdff5 ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xd6faa5b1 ad7879_probe +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x0fe0ab54 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2c29e1bd capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x45741089 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x747989ab capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x79fa220d capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7ae51e25 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x91939a04 capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa7c4fd6c capi_message2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb4b99ccd capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb7457bcc detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb8992b7c capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc10fe128 cdebbuf_free +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8ad9bd1 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x10f5cfcf hisax_init_pcmcia +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6fe1ca04 FsmDelTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9f987c85 FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xa1bc94b9 FsmInitTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x6e8c8950 isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x9e71de23 register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xb3fb94f1 isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0145e29d mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0545b0bb recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0be335ce bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x16f457b5 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1ba62e3f queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2a7392a4 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2b683b59 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2d975ec2 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x524d1670 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x57fa97b4 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5ebc86e2 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6669d653 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x71181d28 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9fd61526 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb08aafb8 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb0968b0e recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xba285b54 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xba8631fa mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc172140f mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc25be8dd mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc56180b2 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcaec0553 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd4ce7f8c create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/md/bcache/bcache 0x10dc0d06 bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0x21c7828c bch_btree_sort_partial +EXPORT_SYMBOL drivers/md/bcache/bcache 0x3361c614 bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x3fce041e closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0x5740a43c closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0x66d28e22 bch_btree_iter_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x6969b5d8 bch_bset_init_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7b55ca4f bch_bset_fix_invalidated_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0x9e8b3cee bch_btree_keys_alloc +EXPORT_SYMBOL drivers/md/bcache/bcache 0xab2d2b84 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0xad29a6f5 bch_bset_build_written_tree +EXPORT_SYMBOL drivers/md/bcache/bcache 0xaec09a2b bch_bkey_try_merge +EXPORT_SYMBOL drivers/md/bcache/bcache 0xaf77343c bch_btree_keys_free +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc04554f7 bch_btree_iter_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0xca580595 bch_btree_keys_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0xcbb184f6 closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe47e0829 __bch_bset_search +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe563c485 closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0xf8fd4bac bch_btree_sort_lazy +EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL drivers/md/dm-bufio 0xa7978f56 dm_bufio_forget +EXPORT_SYMBOL drivers/md/dm-log 0x6655a05c dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xb6e1d9e5 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0xc084a6a1 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xe7d829c5 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x2580b93e dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x3f2a2f91 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x4b523eef dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x8ed0ee58 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x921f873d dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xdfd3ad85 dm_exception_store_create +EXPORT_SYMBOL drivers/md/raid456 0x1f85ff69 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0a1bed66 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6107cfb3 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x64323e35 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x67771ce2 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6e0eca51 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x74055c29 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x891e8e31 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8d064a17 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x90beb480 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xbaab41a2 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xbdf672b6 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe2a439c1 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xec93ddb7 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/cx2341x 0x0c10e1af cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0x30cb4cd7 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x874da116 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0xa467556f cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0xb3171991 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x4cfa88f9 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x7379681f tveeprom_read +EXPORT_SYMBOL drivers/media/common/tveeprom 0xe5e242df tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0a5ba481 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x16131029 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1dcce893 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x26f72f69 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2cbb1f42 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x344908d4 dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3656cb10 dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5a5b3c7a dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5d1f36f7 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5dba4dc8 dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x629f9d31 dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x639fd2ec dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6a92d0d2 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x72180695 dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74abd17f dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8360f74b dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x846dae19 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x85c303c6 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8633f37b dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8b6151ee dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x901e2600 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x92a6912a dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x93f658c6 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x96e3424d dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9850cb88 dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9c19040b dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa2bfc82f dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb9e44662 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc5072899 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc558d1cb dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc59f25b1 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc6ab68d4 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd156fb37 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdb1a8bd4 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdc094c39 dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xee8d83a1 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf48116c6 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfcd0a2d0 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x41dac9e7 af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xc293b7bf atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5e664e52 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7d35a826 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x89f6c343 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb268ac31 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xc3bb0615 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xcf37b048 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe92e7d67 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf37a04fe au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf56cf2e1 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x23493d5e au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x1a119005 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x600e3bf7 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x0fd123d8 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x84261bb1 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x1ba6abd1 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xa04cb136 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xbb0b6814 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xbc30b394 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x2fa7636d cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x129bc519 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x4517872b dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x5d7418f4 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x881fb5df dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xf4d720c9 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x063d9604 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1a62f106 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2708cb90 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x347a2167 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5ff08e90 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x621b8598 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8c0788d2 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x96a82f90 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x985a9c0f dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9a0f5515 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb2b527de dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb9646930 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xcd808f1c dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xceb39962 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd0185f67 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x62bec8f0 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x082b2707 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x208a3a86 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x63fa3452 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x9bbe239a dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xc52d5612 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xe6bdfb07 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x6eb17daf dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x8240aea3 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x875ff66d dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xba45becb dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x23edd03d dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x28e76137 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x244bee47 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x4079d072 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x6a23e30d dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x99bb33db dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd8834454 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x84f67885 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x4262aef4 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xcc85613c drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x911e5362 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xcb647707 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x8fefbd05 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x493d4028 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x85c77e76 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0xb6cf91a1 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x3ad65b58 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x9946c57e lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x7bf12abd lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x21c8e9b7 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x5bc7f798 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xdf82fe0f lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x32cdfcd3 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xa1e6330d lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xc7a03f3c lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x65ee777b m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x9881557d m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x2cf65b76 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x7bff3e0d mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x13a63bf9 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x51a02083 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x563aaf69 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x39049493 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x8dce9f5e s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xf20c68f7 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x692e7bb6 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xa7734338 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x9acb269a s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0x6d1ee055 si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x8c1e8776 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xe69493a0 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x5e0ecb6c stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x6b59df66 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xd1321ea5 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x54df4f49 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x0a7ff763 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xcb4c6f65 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x1f16f0e8 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x6d4f1d74 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x5ccf93e9 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xe2d3e216 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xb04003d7 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x6fd58067 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x7d2b132d tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xf94cecfa tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xe083f060 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x54cbd84e ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xc78ac9ee zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x5ab43073 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x54e6a7ec ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x22d35cff soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x292038db soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x568f49ac soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x994a9b16 soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xbdba8526 soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xe205391e soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xf7832c29 soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc +EXPORT_SYMBOL drivers/media/radio/tea575x 0x2bae23a3 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x2be5f98c snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x2dc257c7 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x7f30b0b5 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0xad2af430 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xb5bd75db snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0xf860d9bc snd_tea575x_exit +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x0f0db340 lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x197342d4 lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x40f30505 lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x470b9049 lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x8b13c51c lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xdffab4a9 lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xe014548b lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xe0459e8d lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/rc-core 0x36ffbc80 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0x56490ab1 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/tuners/fc0011 0xd93fb0d2 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x3db14fcb fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x623836f4 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xaf5ee839 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xf098982f fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/max2165 0x6b570f76 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x90daadff mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x875432a4 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0xb74d20e1 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x40ae434b mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x02f077c9 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x99e7e456 tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x9deca87b xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x11e8bf42 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x782f70ba xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x52decf09 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xc83eb786 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x30b647db dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x37daafcb dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3d82b350 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7a17ba27 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x80567511 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc2162925 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xca99b401 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xceac37b2 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xebc7a63b dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x0732a64d dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x0efde5e7 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x62820c93 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x88ac7466 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xde0ebbc7 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xedbe2235 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf7e5baeb dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xa9a4775c af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x0913ac3d dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x119d3593 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3b869021 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5176e8f1 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6b119910 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x836c97c2 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x87106130 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc3a447d4 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xcaf15ce8 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xdd087440 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xff166fec dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xafa79f2b em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xe763e053 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x078f2ed9 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4280a6a4 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4ded99c9 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xafae85af go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb2edbfe0 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc04ab75b go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xca509878 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd29c1205 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xfe518100 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x1626c090 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x3e401378 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x58f945e2 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x7c05bfb1 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8bec531f gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa6e8997e gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd8d57b05 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe7f2e42e gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x328665c0 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xc9cb6d8e tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xe5470e05 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x65e03773 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x7b387658 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x9d02bf3e v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x4bb29c5d videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x65dff979 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x78cfe145 videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xa5aa329b videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xb71cc7f4 videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xdae6173a videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x5603a37f vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x94667869 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0x33852499 vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x051f1fe1 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x06144065 v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x07e10aa3 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0839a7c2 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x09d30788 v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0ba2cae5 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1111c62f video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x13aead98 v4l2_of_free_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x14bc1b3b v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x22523898 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x231dd490 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x24588d19 v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x31c81c7a v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x34d64438 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36d7dbe4 v4l2_of_alloc_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x383d95f9 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3a33bdae v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3a523282 v4l2_of_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3da5c7c0 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x437fde69 v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x47fc99bb v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x49ff26ae v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4a7429a2 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x52bccd37 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x59bccc6d v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5df212f6 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5e817fae v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x61c2ccee v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x63c3d54a v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x658e4a20 v4l2_of_parse_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6be94772 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7298fc8f v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7586186e __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x78b10da8 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7bec411e v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7f0f0fd9 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8c80ed03 v4l2_of_put_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x916976ed v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x949db227 v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9690e2af __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x99cf2792 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9ff1c329 v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa19c04f2 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa2243d2e v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa3496680 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa907e3fb v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xade5e185 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaf4899a2 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaf71d0e5 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb2e6341f v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb6668390 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb6978478 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb8803870 v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbed553d3 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc61d67c6 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc6cabc52 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcbf8319f v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd72fdd1a v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd79ff328 v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd890a42c v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd90beb21 v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd9d1b715 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdeda2c07 video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe033606a v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe1a5a49c v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe3ec2b3d v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe4e51b79 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe527e5b2 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xea535c14 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf456b649 v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf50ef0a4 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf54b1e68 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf8b955b5 v4l2_clk_get_rate +EXPORT_SYMBOL drivers/memstick/core/memstick 0x08ef1f17 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1b7c50bd memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x2861728e memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x2b97f7a2 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x3daa8db5 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a7bc474 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5b48b92b memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x658f4aec memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6bad9301 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x75d4a96f memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x92a602ac memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xabdc5b43 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd1e22a67 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd5875216 memstick_detect_change +EXPORT_SYMBOL drivers/mfd/cros_ec 0x09d30e11 cros_ec_remove +EXPORT_SYMBOL drivers/mfd/cros_ec 0x32639daa cros_ec_register +EXPORT_SYMBOL drivers/mfd/cros_ec 0x3d195dc6 cros_ec_suspend +EXPORT_SYMBOL drivers/mfd/cros_ec 0x597f7647 cros_ec_resume +EXPORT_SYMBOL drivers/mfd/dln2 0x16372358 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x583c80d6 dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0xe74aeaf2 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x4684cae9 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x853e116a pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x258e23a9 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x27f4e416 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2ea2da08 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x480f4c89 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5f515029 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x89a88eb7 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xab34a9d4 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb1609c30 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc56502a2 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xcd5e7254 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf434bcef mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 +EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 +EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib +EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led +EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw +EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x07178185 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x487c87d3 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x461bbcfc wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x74210765 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xd804f421 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xd979bed1 wm1811_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x437e90bb ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x494bc0eb ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x8a05ed90 altera_init +EXPORT_SYMBOL drivers/misc/bcm2835_smi 0x727204cb bcm2835_smi_user_dma +EXPORT_SYMBOL drivers/misc/bcm2835_smi 0x72db83c4 bcm2835_smi_set_address +EXPORT_SYMBOL drivers/misc/bcm2835_smi 0xa00dc18f bcm2835_smi_write_buf +EXPORT_SYMBOL drivers/misc/bcm2835_smi 0xa0f09a06 bcm2835_smi_get +EXPORT_SYMBOL drivers/misc/bcm2835_smi 0xab7a4d1d bcm2835_smi_set_regs_from_settings +EXPORT_SYMBOL drivers/misc/bcm2835_smi 0xb33bd6cb bcm2835_smi_read_buf +EXPORT_SYMBOL drivers/misc/bcm2835_smi 0xf6720336 bcm2835_smi_get_settings_from_regs +EXPORT_SYMBOL drivers/misc/c2port/core 0x250d8749 c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0x42f62066 c2port_device_unregister +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x03b8f5fe dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x231a18dd dw_mci_resume +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x63e73a72 dw_mci_suspend +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xc294c990 dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x736677dc mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x9c5684e6 mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x24897d62 tmio_mmc_host_runtime_suspend +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x378f2335 tmio_mmc_irq +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x6d3deee9 tmio_mmc_sdcard_irq +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x78c1d6d0 tmio_mmc_host_probe +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x7a6fd700 tmio_mmc_sdio_irq +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x8e6667b9 tmio_mmc_host_runtime_resume +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xbc661093 tmio_mmc_host_alloc +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xc2b89137 tmio_mmc_host_free +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xeccfa061 tmio_mmc_host_remove +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xf02062dd tmio_mmc_card_detect_irq +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x0492a545 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x1c710948 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x3cd5fefe cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x8df96f4e cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x96230f65 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xcbb4901e cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xdad3f1e4 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x59757de6 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x4917494d lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/nand/denali 0x3cf5d26c denali_remove +EXPORT_SYMBOL drivers/mtd/nand/denali 0xb4e3a211 denali_init +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x1af7443d onenand_addr +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xb38012b9 flexonenand_region +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xc5331fc4 onenand_scan_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xfda20f05 onenand_default_bbt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0a951c51 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1b2b201f arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5286ca20 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x56ad62ea arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5b5f0112 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb9ab49e1 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbd861c36 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe46f39ee arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe63c04fa arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf4801987 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x164de36d com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x469717ca com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x8d4697d3 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0f2e2a4c ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6f57af5f ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x78a03b54 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7c9e06c1 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9443645c ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xbe27e4dd NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc02f6f19 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xec4f062c ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf3d11d3a __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xfffb58b4 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x4c966c15 hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x74ba672b hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xcacc91fe hnae_put_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xd5eac9c6 hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xebffa1e0 hnae_ae_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x029433f0 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x429ff452 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x73ec3de3 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x7ff7bae8 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xb6f6eabd hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x29c3e0c6 sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x3a4a52ea sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x4541f3cb irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xab8cc363 sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xbea99081 sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xd44b839e sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xdf842d4f sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xe01d8a63 sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xef6f146a irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xf219c1ee sirdev_get_instance +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x4bf1cd1c free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xd88237cc alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x146d2dd9 xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x9d84f9c7 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xdc260844 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/phy/vitesse 0x14063d8f vsc824x_add_skew +EXPORT_SYMBOL drivers/net/ppp/pppox 0x9f1d9ccc pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xbf7902ed pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xfa820fd5 register_pppox_proto +EXPORT_SYMBOL drivers/net/team/team 0x047563bf team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x17cdad33 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x1ba6071b team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x432a0f6c team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x4c005eae team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x5266789e team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x545a6ffb team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0xf1ac6d45 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/wan/hdlc 0x099e99ff detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x40349754 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x6cba1ca6 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7a6ec65c hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x80f3f0dc unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x87e56b0f alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x8963a215 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xae6fc57f register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb82b1017 hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0xca89707b hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd1f5a179 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0xa4d207fe i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/airo 0x0ae7c115 reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0x8b17f0a7 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0xc6342359 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0df5ad37 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2209dff4 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4951c6c8 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6059425b ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6a199a21 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x77f2feaf ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8a1fd3b9 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x97f3ef37 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xbf9894f2 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc6c9e9ec ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd51fa8fd ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe59c8864 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x13807d6b ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1efeb31a ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2ffed206 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x33642e9d ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x40dae711 ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x510221ae ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5c92ce73 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6e3151f0 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7a2bef4d ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7d3c4bf5 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9009f9bf ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9ce5bc8c ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa735c60c ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd5886dc6 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdd54e3e1 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x02aef02c ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0fc1eb87 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2d0ed655 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4d79ec18 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5d6aaa19 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x627c8b1f ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa1764648 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xac416121 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xbe8fb393 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc4c0fbba ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe2108993 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x01b90e56 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0600814a ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0b236ad8 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x112bdbd4 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x112c7c96 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x181a5cca ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x191f0cea ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x29721713 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x303cc130 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x47085084 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x56e5a5a9 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5fe2ab60 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6b514923 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x77858824 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x78e42c23 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8427d34c ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x91f94385 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa4f637cc ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xabe548ed ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc4ed240b ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc664c864 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe106cabe ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe3a39f47 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01107736 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x030f2c8b ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0384aaa9 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x06456984 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x07ea4411 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x085ab5fa ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x09f24562 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0acd4a91 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x117ad521 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11e39d66 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x12c442b0 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13e6d24d ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25b0155f ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25d90b8f ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x26be38b4 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x292789ac ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a61afb3 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d26aa5b ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f09cd0b ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x316f05ef ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x35a762ac ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b1cbfec ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b3134aa ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b726adb ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3f955a4f ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3fee489e ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x408b73c3 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x436caec6 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45f745a9 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4f13ed51 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4f3032ea ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x529bcd13 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x52a0e4d7 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x52af51ef ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x561da88b ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x56501c1c ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x575d6425 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x593fb685 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x59584c80 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5f56931e ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x600ee01f ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x602ca802 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x603c3055 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x646697a2 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d374353 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e43fee8 ath9k_hw_request_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e56a9c0 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e607b87 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e8ca179 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f74d5fd ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x732352d4 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x74e514b3 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7507f8b3 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7749845f ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7e866c2f ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x80043b64 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x824ca955 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8467a17e ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x84a9bdfb ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85ff532c ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8adb0f51 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9399451f ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x93ebd311 ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9485e8b9 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x94890e44 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x94ccd810 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98e6e073 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a03465e ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9e4bf868 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa2461aa1 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa2ff297c ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa65220f5 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa818545a ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1b83366 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb37a248b ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb39e4870 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb616ebe3 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb746b0ef ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb9414c42 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbcbde638 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0a40b38 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc1246654 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc1b19d14 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc58a39c0 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc9fc662e ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb545240 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd278887 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcfbf8e6d ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd5159f2e ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6b3b464 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd8a8550c ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb2b2092 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb67290f ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xde86ded5 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdeb0eaa0 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe198ec7a ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe5d8e1ee ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe88aae8c ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeac25dda ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec4fca54 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef66f2db ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0d96e25 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3c4c189 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf6b7d78d ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd2d5a0f ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/atmel 0x2521e151 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0xa82e5b9a atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel 0xda83fbce init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x0914f33c brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x17b22778 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x32a0d657 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x80d96a4b brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x82e56626 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x8e3dedd4 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x8f7c544a brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x93a8a84d brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xb0d0fb9d brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xc098cac9 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xcd79698c brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xce1f0b11 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xe193e800 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x013f62e6 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x04a21a57 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0de29a33 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x11c72e13 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x16d7eade hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x19982393 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2bf67d8f hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x305b773f hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x312a5920 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x381b1299 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3a36ff70 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4cd2f75d hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6684899b hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x739f6f38 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8f1a240d hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8f705086 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x91e1043f hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x943e6249 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb22e0f19 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb411e2ec hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbf9315de hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc2d01741 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe80ea417 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xeaf4aeb7 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xed99fdcc hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x159fd70b orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x2159b0cf orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x2ad0eeba free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x3898f577 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x3cf47453 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x44ab1dca __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x46129552 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5bfb0c47 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x753bbfc9 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x79ebb6d0 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x9c7ae237 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xa90070bb orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb186d221 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xdecbc36b orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xeb74275c __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xef1b6204 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xfdb5ccb1 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0098532e rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x099a5ec7 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0d2328df rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0f62de86 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x114671ed rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1ef98706 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x20fd5fb7 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2252cab4 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x29577026 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2b61cd20 _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3597cdd9 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x471c49dd _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6323c384 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6df5a557 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x702cd038 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7253f974 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x75521438 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x77d04eee rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x786a6fd4 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x816f82d9 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8ec20116 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9269cbcd rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x951dde50 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x96519b10 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9912d512 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9a200b9a rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa3e49255 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaccfb8ed rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaebfcfae _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb127d788 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb867d05b rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbf432910 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc7df4a0e _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc9866c90 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd0140c38 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd6fa5edd rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd822da1f _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe4da7b73 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf1e262b3 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfb3de473 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfcb1436e rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x0886f44f rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x58c06837 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x83b87d95 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x96d9046b rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x005c4d34 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x03a73144 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x054b72db rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x07b55ec1 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x09c554d9 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x18d55753 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1d0674ab rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x23ae1648 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2407d3ef rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2b24dcd5 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2ea5cbaf rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3f6e169f rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x57d8b96b rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5b98f64b rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5e157246 rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7a474ed2 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8a2f61d9 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9be2154b rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9e8eaf10 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa025dd07 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa75a6146 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa88a9685 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xae676cd9 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb7777435 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xba85c276 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc5025392 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd82e2fa2 rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe4925901 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x25339503 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x38e681ce wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xc7c96a1e wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xf313c5f4 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x071b56d7 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xbfb4b70c fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xd9e578aa fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x702f892c microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0xa82c21b6 microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x1a501911 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xb3cfc669 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xd4f0d46e nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x0d6a3a23 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x2c966f3f pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x0811cbe9 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x495a5108 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xedc0952f s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x0cf3d371 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x6d21164f ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa3686bb3 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa5873d55 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb40334ec ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc0cb6926 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc450542f ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe4b64675 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf4a593f7 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfd315152 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfd71e286 st_nci_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x07498238 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x09197438 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x11b0cc10 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x11bc4e0f st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x13e09ea9 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x409b7ba4 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4baee60a st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4e74fb45 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4f197467 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x66a03fb2 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6be1b7d8 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7053a68d st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x72fe53ca st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x927b88e7 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa3e5eb6c st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcba343eb st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdce6df03 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe28b7607 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0xeccd7ee8 devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x04fc0477 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x0e491917 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x133a1e47 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x1fcc4c80 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x263a23a7 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x280bcbbe parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x2b055402 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x2c87c609 parport_release +EXPORT_SYMBOL drivers/parport/parport 0x37bf088c __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x3d6fe96c parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x3e0a7dda parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x43eaab98 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x56d237a8 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x58071012 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x7124cfad parport_read +EXPORT_SYMBOL drivers/parport/parport 0x72b695cb parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x77b8c24e parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x78588e15 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x9293ce6d parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x92a5434f parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x95a20aa8 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x9a5090ca parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xbd38dbb1 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xc3fa8bf4 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xc9bb438b parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xcb724a0d parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xd8dc40ff parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0xdbe59988 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0xdd78c38e parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0xdeb84a86 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xea12d5f6 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xfa959133 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport_pc 0x1cbd1587 parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xa671f940 parport_pc_probe_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0dbe21c7 pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x13e57edd pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x27435c51 pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2bc973f7 pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x41106f64 pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x569f8fd2 pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5abaa71b pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5f826dfe pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x626bdc0c pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x62dd3ed7 pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x71f8187e pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x795b5da3 pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xaeb66140 pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xba2113d8 pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc1f74c25 pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc6e772f2 pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd9659685 pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdca06445 pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xfa53ebc0 __pcmcia_request_exclusive_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1f39de78 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x20589011 pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x33366477 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x43095483 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x4c2dae10 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x95e56e5b pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa5d34825 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xad47650d pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe15f9764 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe57862f8 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf2cc0c8d pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x4249c788 pccard_static_ops +EXPORT_SYMBOL drivers/pps/pps_core 0x612faced pps_lookup_dev +EXPORT_SYMBOL drivers/pps/pps_core 0x80226587 pps_register_source +EXPORT_SYMBOL drivers/pps/pps_core 0xa3d0e710 pps_event +EXPORT_SYMBOL drivers/pps/pps_core 0xeaf4e72f pps_unregister_source +EXPORT_SYMBOL drivers/ptp/ptp 0x01865887 ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp 0x1b7520b9 ptp_clock_register +EXPORT_SYMBOL drivers/ptp/ptp 0x39420823 ptp_clock_event +EXPORT_SYMBOL drivers/ptp/ptp 0x809817d9 ptp_clock_unregister +EXPORT_SYMBOL drivers/ptp/ptp 0x9cda14d0 ptp_clock_index +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x0c7a3756 rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x1392cfc0 rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x21b97896 rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x621de4fe rproc_get_by_phandle +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x6e9181d4 rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x82b168b5 rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xa0f4f700 rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xd5326647 rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xddfd1f65 rproc_boot +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xe3873c4d rproc_alloc +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x13a9aeb4 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x06f2e5b7 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1d74740c fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2b20a6a4 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2f03f318 fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x51590d9b fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x98629a25 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb9a64a2e fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc374e4f0 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xdc607739 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe2b6c5a9 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe8ec9635 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf35d79e3 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x06ca172d fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0b707cbf fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0be1aec5 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0cd99b93 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x14718517 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1c16df25 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1c241c05 fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1fb76d3b fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2471983e fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x247d5c53 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2497fe49 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x26437147 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2b110724 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2ca37da3 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2f836a8c fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x30342c63 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x33251917 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4bf8008f fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x50084ce8 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x533aa713 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5486be2b fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x55dcfad8 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x582f1d80 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5addfe81 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x68707195 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6d2a572b fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6e7377b1 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6e878c13 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7043d2e3 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ddfda0a fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x82408d3a fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x86cb4445 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8743f692 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x89e24dda fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8a0d6b98 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8c1736d6 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8e9f5f67 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaff6dc3a fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xba08ac74 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbf4bbb59 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc20e3d50 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xce39612e fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd0a5964c fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd3a03483 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdb4ae03a fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xde6fb265 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdf3115fb fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xef01fc23 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xef7e9416 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf750c06c fc_disc_init +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x2e283ee2 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x341c4448 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x44455511 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xb4fc4186 sas_wait_eh +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x002dfc92 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x055f47f8 osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0e2f4bf3 osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0feba048 osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1917f278 osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1aa8e159 osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1e49873d osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x209628ab osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x285e1d53 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x329b608a osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x33d936d6 osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3aa0330a osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x43375adf osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x44136515 osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x460a7444 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4d3b56f9 osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4e070ca6 osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x50d8345e osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5ec0ce32 osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x610dcb73 osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6174d672 osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x61b46a81 osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x62691a1f osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x634655b6 osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6e4110d4 osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x718d9550 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x72564326 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x79be00a5 osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7bc98941 osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x82ab0c8b osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8ea04a81 osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb7abc651 osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc1daef03 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc33d013c osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd46e81c2 osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe78156fb osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/osd 0x404a7c97 osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x68e4e737 osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x9ed69784 osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0xb17699a0 osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0xdb2f428e osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0xec959798 osduld_device_info +EXPORT_SYMBOL drivers/scsi/raid_class 0x250e0b58 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0xbce27802 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xcf9f3365 raid_component_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4aa1ce88 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5743e71c fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x59b9027a fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8194390c scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x861ce670 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x97eb22f5 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9e723def fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa7852fcc fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbc4d39a5 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc4dc9fc7 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcd6c764d fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xdeae94d0 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe2b26807 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0cad5175 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x27296627 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3c92a17e sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3e58cd2b sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x43ee7cfa sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x484de3c3 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x48d812a5 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4ac1ffe0 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x52513710 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5a76a5f6 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x62345ff4 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x68675fd0 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x69edcdaf sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x76a928bc sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7a87d0ce sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x89f1a8a3 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8c07eeba sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x99d24660 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9da09672 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xad03df3c sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc0a0d0c7 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc57a4058 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcb140e67 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd0c84bbc sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd42f5a7b sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd9ff5ecd sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe0f91454 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe8d7a26e scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xec3eefba sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x4f91d56d spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x50368dfc spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x66173145 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x67704a3c spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x813e1143 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x09612a26 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x0c1ebca2 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x25cf9999 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x94ddbe46 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x44c86ca8 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x6248eaa3 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x6c68dfac ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x777b5813 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x961c931d ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xbfbd4ed6 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xd261b4ce ufshcd_system_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x06c72ce3 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x09e15434 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x0cb94d43 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x2759fe99 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x45fc895e ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x46be2837 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x5debd9b2 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x8e5fd6fd ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x9dda644e ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xa84ba96d ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0xa926b892 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0xaab2f359 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0xb71eca5e ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xc9efabe7 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xd96ade4f ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0xe72c14b5 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0xeb9d184b ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xfd84f9ee ssb_set_devtypedata +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x096e71fa fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1d9a7ab4 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1f243efa fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x23ae6337 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x30925b2f fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x46ce6f6d fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4deb8c8b fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5fae55cb fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x754a3aad fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x75d1fb54 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x85fb30b0 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8d00e2e7 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa6db2ac6 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xafc9369d fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb1b90933 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbc39723a fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc1955c44 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc22ce51b fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc9ca3a14 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd8ffc623 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdec90c1a fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe21f0834 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf2297832 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfa2ce52b fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x60ca2c78 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x75509891 hmc5843_common_resume +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xc34a12b5 hmc5843_common_suspend +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xd894f529 hmc5843_common_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xfed2ebf5 hmc5843_common_remove +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x6bf936ff ade7854_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xbf7a2577 ade7854_remove +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0xa4232fed most_deliver_netinfo +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x07e2abf9 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1f2c0695 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2792881d iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2e802757 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x32ae5fc9 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x38aa2056 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3a74d3f9 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3d87bc04 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x520c948f iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x648207e9 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6d61a69f iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x728561ed iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x88f07a0a iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8b1e10f0 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x925cc455 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa2fde2d6 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa7f31580 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb6aca1c5 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbf0a7c35 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcea19e71 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xde1796d2 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xea63e6a3 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xeb0c49ca iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xef971ff0 iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf6e60496 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf945bf57 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf9dffc1d iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xffcd8efb iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/target_core_mod 0x006e6de1 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x031d441c target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x08a14f83 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x0c4fdfaa target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0d3e40ca transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x1125886b sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x14362f1a target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x1646ccc7 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x19415bab transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x1fd20a85 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x1fe8dc94 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x21a9b6f1 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x25e62b6a core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x260c034a core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x3160a7f5 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x355b41b4 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x357f13e7 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x3ade8561 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x3da1f888 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x3f38aac9 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x40c180d5 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x45aa978c transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x47b80025 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x49966e97 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x4ad02919 target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0x4bc56155 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x4c6db66f target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x4e1275f2 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x5176e8b5 target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x53bc5f1f target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0x55e3c2f2 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x58f6e731 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x5b7e5a20 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x5ea1331d transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0x5ea9e89d target_get_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x60888588 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x62a88a39 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x691bfbe0 target_put_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x740bec9e target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x74f74e93 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x80dfc93f core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x83280d98 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x87481df3 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x88be8817 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x8a40f059 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x937a32e9 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x955cb8fd transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x9a681c93 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x9de9d46b target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0xa082f331 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa477d875 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xa490e618 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xb32adc00 transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xba7aee1e transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xbcbdf42f sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xbd6b1bda __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc32e0080 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0xcc039e98 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xcd0db888 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xce743745 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xd12399fd target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xd849bc9d spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0xdb4f9822 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe2bd588a transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xe2e2f29c target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xe2ebdd25 target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe86adbbe sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf2c9a059 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xf7cc7706 target_register_template +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x1ee194e7 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x7f9928e7 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x3acd834e sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x49ce34ff usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x578751f1 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x58b1fd13 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x591a8125 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5d6b48ee usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x73c63f34 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x81a7bd69 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb451a21b usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb6c2534d usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe34e97ed usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xea85708c usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf6eadc8f usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x1ad6c31a usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xf99bdcb4 usb_serial_resume +EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user +EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x2e91ca97 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x367ce26a vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0x59f824d9 vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x7bda5e6d vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x821e9390 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x937e412c vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user +EXPORT_SYMBOL drivers/video/backlight/lcd 0x3dac2ff3 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x479ab998 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x6638a5f6 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xb879212b lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x4f7e5729 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x4f931054 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xa1265af8 sys_imageblit +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x200831f3 w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x5fb89378 w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x7c145a07 w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xde1ba9a4 w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x23901bae w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x673dcda8 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x73d71b7a w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xce41dcc0 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x31ccbc59 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0xb22aaa2c w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0xb52616f3 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0xf85f6d48 w1_remove_master_device +EXPORT_SYMBOL fs/exofs/libore 0x00735731 ore_remove +EXPORT_SYMBOL fs/exofs/libore 0x0d558226 ore_write +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x6031b312 ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0x90baea0f ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0x9255e8a1 ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0x97364ad0 ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xa542f44e extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0xb4f1ee2d ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0xef243b4f ore_read +EXPORT_SYMBOL fs/exofs/libore 0xf25b3d87 ore_create +EXPORT_SYMBOL fs/fscache/fscache 0x0afd6b1d fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x13070f2e fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x13a4419b __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x142bc2f4 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x25631afd fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x286e50af __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x2c0d6064 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x2e9494f2 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x35982622 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x470755ff fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x47f7bf7a __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x4c0bb7f9 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x51c388cf fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x5a12a21a fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x5a7edeba __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x60443aa3 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x6f0ae517 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x73bd65a4 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x791e1525 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x7b9b2eb5 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x7f3a1244 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x8b2e59c1 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0xa12dc682 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xa6326257 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0xa720c0df __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xabb6413d fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xb40e6071 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0xbc5fcec1 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0xbffec1d8 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xc3723dd2 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xce2624b8 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0xd8bcd7f8 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xdab8ebab __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0xe1507c0c __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xe64d4bb9 fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0xe6b795eb __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xedb7286f fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xedb8a6f5 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0xf2230737 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0xf98cb38e __fscache_relinquish_cookie +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x07e72f17 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x2bc96b35 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x48173013 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x5e9c96cf qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x6621dbaf qtree_entry_unused +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-ccitt 0x3771b461 crc_ccitt +EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc-itu-t 0xf5b4a948 crc_itu_t +EXPORT_SYMBOL lib/crc7 0x66213969 crc7_be +EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc8 0x41248eaf crc8 +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c +EXPORT_SYMBOL lib/lru_cache 0x03f599c7 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0x4feade4b lc_create +EXPORT_SYMBOL lib/lru_cache 0x56fc3ea0 lc_put +EXPORT_SYMBOL lib/lru_cache 0x619ed575 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x84e0214b lc_committed +EXPORT_SYMBOL lib/lru_cache 0x9dd64d3e lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0xb1eb72ee lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0xbbe7c23c lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0xc48fa976 lc_set +EXPORT_SYMBOL lib/lru_cache 0xc6e4cd46 lc_reset +EXPORT_SYMBOL lib/lru_cache 0xcb990a55 lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xcea6747e lc_destroy +EXPORT_SYMBOL lib/lru_cache 0xd212c9f0 lc_get +EXPORT_SYMBOL lib/lru_cache 0xeb13128b lc_del +EXPORT_SYMBOL lib/lru_cache 0xf460a486 lc_is_used +EXPORT_SYMBOL lib/lru_cache 0xf5ea5f5c lc_index_of +EXPORT_SYMBOL lib/lru_cache 0xf6acec20 lc_find +EXPORT_SYMBOL lib/lz4/lz4_compress 0xcbc5d521 lz4_compress +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x26c3aa22 lz4hc_compress +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul +EXPORT_SYMBOL net/6lowpan/6lowpan 0x4105552a lowpan_netdev_setup +EXPORT_SYMBOL net/6lowpan/6lowpan 0x8146e9d0 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0xd57cde70 lowpan_nhc_add +EXPORT_SYMBOL net/802/p8022 0x3cbac5c7 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0x67f68e3c register_8022_client +EXPORT_SYMBOL net/802/p8023 0x10ef430a destroy_8023_client +EXPORT_SYMBOL net/802/p8023 0x70016de4 make_8023_client +EXPORT_SYMBOL net/802/psnap 0x20ecdb2d register_snap_client +EXPORT_SYMBOL net/802/psnap 0xdcaec736 unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x00e0a1e4 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x11b63bd3 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x12ea18ca p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x1eb41bc2 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x21b0e756 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x255be8af p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x3884f78b p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x43532917 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x45946329 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x5185c626 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x538eec1f p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x56ca8a6d p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x64e57cd5 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x6b25fc42 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x7fdc591e p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x8642d312 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x86b3b1ee p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x8eb30bbf p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x9ce58e4f p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0xa36c8e3b p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xa48fcbc4 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xa9f57c50 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xaa9cb096 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0xbd77f374 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xc434752f p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc5f3fbeb p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0xc7a10f9f p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xc9e04eb0 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xcbafaee7 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd5ec8e5e p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xd5fb1dbc p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xd605f6ef p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0xd9dc9269 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xda3bfcb3 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xdff8e4a9 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe904b8be v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xe9a80d56 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xeb9f2516 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xebc6fdc6 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf5c6b1e9 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/9p/9pnet 0xff9a4f0e v9fs_register_trans +EXPORT_SYMBOL net/appletalk/appletalk 0x26c5559f atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x9da263cc alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0xb1ee52f9 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xc1d89762 aarp_send_ddp +EXPORT_SYMBOL net/atm/atm 0x05df5093 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x302179a8 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x390708be vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x475cd8ed atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x4c9f85ad vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x50ddeda6 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x71e78ce9 atm_charge +EXPORT_SYMBOL net/atm/atm 0x85db3f25 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x9a628505 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xa1c02ac5 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xa2c79b9a atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xb963b969 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0xd454fc48 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xf1774b53 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x03a3f80c ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x301e26ce ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x679c136f ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x77d78a2a ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x96bc47aa ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0xacaf5123 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xdbb94a03 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0xe8108642 ax25_listen_release +EXPORT_SYMBOL net/bluetooth/bluetooth 0x00168c01 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x01a183af hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0651e03a __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x10d8ccf1 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x14c8eea2 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x15f245be hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1fabf631 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x281dced5 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2eedf357 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x406edffd hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x411ffd48 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4236fe20 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x44d8b440 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x46abcebb l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x51ad54e5 hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x61b8cfc5 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x63faf346 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6ab43e21 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x70a86b56 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x73a540a0 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x80f22c2a bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x872f76aa hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8b39cf3d bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9e2263c4 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa175db02 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xab16b625 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb56d4678 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb98e7ca1 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbc439163 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc213516d hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc33f2c5b hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcf1f4b77 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcf7f3157 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdecc03fb bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe71790af bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf131237e hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf3b29b32 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf3fcc3b9 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf48294e4 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfa52029e bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfbf83182 bt_sock_wait_state +EXPORT_SYMBOL net/bridge/bridge 0x9af61dc2 br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x027b98ef ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x9efb5282 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xb9a610c7 ebt_do_table +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info +EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x947a795e caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x969137b4 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x9873993f caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xbea09194 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0xfb40ada6 caif_disconnect_client +EXPORT_SYMBOL net/can/can 0x16817746 can_proto_unregister +EXPORT_SYMBOL net/can/can 0x759060a6 can_ioctl +EXPORT_SYMBOL net/can/can 0x88b9b239 can_send +EXPORT_SYMBOL net/can/can 0x8fa3499f can_proto_register +EXPORT_SYMBOL net/can/can 0xca2103e0 can_rx_unregister +EXPORT_SYMBOL net/can/can 0xdee17648 can_rx_register +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0b08d9e8 ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0x0c63a08d ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x10a34272 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x12de19c4 ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0x13aff98f ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x15140fb3 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x16988cb8 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x187e447a ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x1fad22fc ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x207cfb4d osd_req_op_cls_response_data +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x21698ec2 ceph_oloc_oid_to_pg +EXPORT_SYMBOL net/ceph/libceph 0x23316437 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x233ff72f osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x2720b8a8 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x28996b46 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x2b267c84 ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0x2bbf8b8d ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x2c98d997 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x2cbaa84f osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x2e307e49 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x34ed81fc ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x3640a091 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x3844b748 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x3902b5a7 ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0x41300232 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part +EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x472aefa2 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x47a9920e ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x47ca37b1 ceph_monc_request_next_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x4a8425ec osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x528f15ac ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x54534a34 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x55dee37f ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5b409f4e ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x5e2ef5e1 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x5f7d23d1 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x64684fe3 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x64dcec7d ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x66d8b987 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6b4e20cc osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x6dd1437a ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x6e546ac7 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x70e765e3 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x7607d29a ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x76b47e7f ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x7ab8cd5d ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x7b230ea1 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x7d0f791c ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x7ec9f1c3 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x842df320 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x887ea8d4 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x89184329 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x89f73968 ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0x8e2363bb ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x8fa8b879 ceph_monc_do_get_version +EXPORT_SYMBOL net/ceph/libceph 0x901a5d64 osd_req_op_watch_init +EXPORT_SYMBOL net/ceph/libceph 0x98ff18e2 ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa1ebde8f ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xa2f5465b ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0xa58f6370 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xa6203ee3 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0xa909c126 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0xaadfcfd9 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xac7dc5fd ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb19dc152 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xb2329ad9 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xb42a9471 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xb6203eda osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xb7a3ae11 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xba3e4128 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0xbe5bffbf ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xbff8b2f0 ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc6db6968 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xc7e1e99f ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xca17b335 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd5383217 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xd813625e ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xd977728b osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0xda775417 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xde0eb6ba ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0xe55d9bcd ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0xe58820e3 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xefb46d93 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0xefc704ad ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0xefecbef9 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0xf5a73e51 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0xf98cbd74 ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0xfa4a1305 ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0xfcda316b ceph_con_close +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xe78e48c0 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xf71fde2e dccp_syn_ack_timeout +EXPORT_SYMBOL net/ieee802154/ieee802154 0x38181f38 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x6fa5ba10 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x9cf6565c wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0xa172b250 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xadb3463a wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0xadf0b162 wpan_phy_find +EXPORT_SYMBOL net/ipv4/fou 0x0c07b4a3 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x25a0d28b fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xc098f33b gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xed741d6f gue_encap_hlen +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x51aa98db ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x640dffff ip_tunnel_encap +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xb1048b22 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xd4764204 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xe49883a1 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xe94455e3 ip_tunnel_dst_reset_all +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x2e3edab2 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xbee751fb arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xd893f6f0 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x0ef7e70b ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x4f08b000 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xc6f5290f ipt_unregister_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x9770b6e7 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0xfd9568a0 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x6cb75ea1 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0e463e9b ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x17ede9d8 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb947aad8 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf1ccffba ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x773d7124 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x80fc720d ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xaf5da2d6 ip6t_register_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x9bb37219 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0xfb40d9c5 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x663c2768 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xe36e86dc xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x1088b4a5 ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x1d566455 ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x20fe98a6 ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x659f3ec8 ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x7e02e15e ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xb7d3a15d ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xd18be8b8 ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xd3ccb6bc ircomm_close +EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value +EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service +EXPORT_SYMBOL net/irda/irda 0x0b0ca051 irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0x0ea8863b irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0x13828020 irttp_dup +EXPORT_SYMBOL net/irda/irda 0x17a491c5 irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0x1c6b8d3b irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0x31d23414 irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0x3325a230 async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x34a1b3a3 irlap_open +EXPORT_SYMBOL net/irda/irda 0x36cad55b hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0x37791344 hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value +EXPORT_SYMBOL net/irda/irda 0x450c7f9b async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service +EXPORT_SYMBOL net/irda/irda 0x4c641c61 iriap_open +EXPORT_SYMBOL net/irda/irda 0x507e3e85 irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0x57cc648e alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0x6492e28c hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x6b76aa70 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x73089b67 irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0x731cec71 hashbin_insert +EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client +EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client +EXPORT_SYMBOL net/irda/irda 0x7e67ca6e irias_new_object +EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x84e33b76 irda_notify_init +EXPORT_SYMBOL net/irda/irda 0x8982c8d9 irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x8a44dd5e hashbin_new +EXPORT_SYMBOL net/irda/irda 0x8dc07462 iriap_close +EXPORT_SYMBOL net/irda/irda 0x90ddb6bd hashbin_remove +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0x94c9e276 iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0x9ffda243 irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0xa043ff68 irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0xa3c3805d irlap_close +EXPORT_SYMBOL net/irda/irda 0xa494af7d irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0xb3c13d7f irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0xb4ba53a3 irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value +EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute +EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request +EXPORT_SYMBOL net/irda/irda 0xbf7dd554 hashbin_find +EXPORT_SYMBOL net/irda/irda 0xbfa7c08d hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0xc477368d irias_find_object +EXPORT_SYMBOL net/irda/irda 0xc9f2a7cf irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0xd39b5cf0 irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0xe66643a1 irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0xec3f224f irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0xf0036d21 irttp_data_request +EXPORT_SYMBOL net/irda/irda 0xf199cba4 irias_insert_object +EXPORT_SYMBOL net/irda/irda 0xfc75654e irlmp_disconnect_request +EXPORT_SYMBOL net/l2tp/l2tp_core 0x29430b87 l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0xd53d9a4a l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x013d3158 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x0e91ed61 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x4f7404ac lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x65267877 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x823cc132 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x9edb2080 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xf5238396 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xf7443b34 lapb_getparms +EXPORT_SYMBOL net/llc/llc 0x3698c6c6 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x38b44a00 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x880b2443 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0xadca38f5 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xc4444edb llc_sap_close +EXPORT_SYMBOL net/llc/llc 0xd4262553 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0xfde1951b llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/mac80211/mac80211 0x00afd69b ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x00d340b2 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x02166686 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x043e9ef2 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x084e7f77 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x09522e68 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x17292b3f ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x17fb6fc3 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x1d8ca5ea ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x1e0e0085 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x208fe685 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x27951724 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x2d30e454 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x3101cc2c ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x31305a22 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x34308f32 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x3cacd6db ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x3e5420e7 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x3f231e02 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x4b10bb0e ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x4bb02280 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x53dfa5df ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0x54be0e24 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x567aabe2 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x572d97df ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x5d809da8 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x5e78ced9 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x5fc11a08 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x60f2fcfa ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x6135e7a1 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x62474fb6 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x62490759 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x670872a1 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x69de096c ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x6caff8a1 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x76b9ef28 ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x7967d1a1 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x7b10f364 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x7cec0bb0 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x7cefcee2 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x7ff68f5d ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x813b2e17 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x87d2d72e __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x8844fcb5 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x8bac22b5 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x98fd42c3 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x9c4435ad ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x9ea7192b ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x9fdd0bfe ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0xa0042c82 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xa17f3e3b ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xa29ce0b8 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0xa33266b2 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xa4e8f911 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xa82fe5bc ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xb1aaef91 ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xb28949a9 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xb524cbe1 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xbc39b3ef ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xc9d64162 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xcdf2d68c ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0xcf43fa3b ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0xd0b44339 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0xd12f11ae ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0xd1e33e27 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0xd5e76309 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0xd5faa485 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xd738d734 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xd9537fca ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0xda5dbc57 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xdbe8814f wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xe0df396c ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0xe5a22f70 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xe7716ad5 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xe814824b ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xea0637f0 ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xf278df05 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xf33d842c ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xf682623c ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xf6f88413 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0xf89de4de ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xfa8f1fb1 ieee80211_rts_duration +EXPORT_SYMBOL net/mac802154/mac802154 0x0553dbfc ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x0a72435c ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x29090411 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x390ace92 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x5a2df7e1 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x753e13b3 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x76eb137b ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x90061092 ieee802154_wake_queue +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2cc0fad8 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3a948b8f ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7702b97b ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x77aca0fd ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb5f20db7 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc1012b10 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xca381182 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xca5d07bb ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd0eb5fb9 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd10a29c5 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdd49b6f7 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe3ddeecb ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe803cfa2 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf8d450ca register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x1e5eb06f __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x4de18e13 nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xf2c51a81 __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x0044c945 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x37454d6a nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x686ff2f0 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x746af428 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xecb95fe5 nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0xf198ab67 nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/x_tables 0x0cf7357b xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x1b620750 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x4d745da9 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x4ef0fa16 xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x5a71bb2a xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x698afea4 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xbdbc73a5 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xbe06ff17 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xe4d60056 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xef031d92 xt_unregister_targets +EXPORT_SYMBOL net/nfc/hci/hci 0x04f0c124 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x0ccce27b nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x0faa8e93 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x20fabe89 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x2177d441 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x2b12d7ea nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x46ae41c4 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x46d5c54e nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x46fce370 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x4d72e308 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x75f7330d nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x9cfaec94 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0xae07fbc7 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0xb4cf2964 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0xbacca6f7 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xbe2b0886 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xcaca2187 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0xcbca1e59 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0xcbf95aec nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0xfe04f08b nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xff356622 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x046da0c0 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x0b616740 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x0cc61ea3 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x18db0a34 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x1ab1b55d nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x26e22556 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x2eaf35b2 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x31922036 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x34716a0c nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x397a6b10 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x3ccce806 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x69bfae05 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x71379b7c nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x749c06a6 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x7d291002 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x7ed69226 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x86a600af nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0xa3a0d763 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xbf31b347 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0xbf88022e nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0xc59f3373 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0xca897e6c nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xcaaf45f5 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xd10ed3ef nci_get_conn_info_by_id +EXPORT_SYMBOL net/nfc/nci/nci 0xd45de903 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xe01b3d58 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xecf74b4e nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xed713588 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nfc 0x02b942c1 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x09e5e78c nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x0da8da60 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x17c6e5d7 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x34b28881 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x360a8e7b nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x4e57388e nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x4fe8e06d nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x602a3703 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x64431cba nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x66b0078f nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x75e4fe31 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x7c441792 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x80556b22 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x846c792b nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x8737ce85 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x89d55f37 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x90e2afee nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x93004580 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0xbec4df91 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xbf84c2a1 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0xd8ab73c1 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xed6a4662 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xf5ed65c2 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc_digital 0x46191967 nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x5521fc25 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xab88a539 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xfd207ff6 nfc_digital_allocate_device +EXPORT_SYMBOL net/phonet/phonet 0x499abced phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x649e0373 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x6a282324 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x9d1e9276 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0xa9986c2c pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0xb90abbc3 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0xea8ea761 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xeaa2c48c phonet_header_ops +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x0bc26864 rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1a45e76c rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1d66810e rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1de98627 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x564df73d rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x5bf435d2 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8267eebd rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8fcb8ef2 rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x90c49570 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x9737caa3 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x9e2f1389 rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd146de52 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xdfbba8f1 rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf0dad87e rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf56a5fea rxrpc_kernel_send_data +EXPORT_SYMBOL net/sctp/sctp 0x3abab736 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x68471cef gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xb6fd4f62 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xfb0e5923 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/sunrpc 0x49cff721 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xc2e86125 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xcb87673b xdr_restrict_buflen +EXPORT_SYMBOL net/wimax/wimax 0xb29e7b3f wimax_reset +EXPORT_SYMBOL net/wimax/wimax 0xd50c9cb7 wimax_rfkill +EXPORT_SYMBOL net/wireless/cfg80211 0x03b8ae09 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x06c57bf7 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0a7d6ab2 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x0ad19fbb ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x0c74b23b cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x0f8501a0 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x137b0d7e freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x17d6d58d cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x17dab198 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x19338ae1 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x1a214d6d ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x1cb2eaae cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x1f8024c6 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x20262c30 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x208c0a73 cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x281f6b8a __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x2a2f07be cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x2f4b1fd4 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x31d3b075 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x33b7e7d3 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x340f4169 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x365827a0 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x37d1bb06 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x39d28afe cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x3b3d1cbd wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x3befee81 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x3ee5ca5c cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x46a61bde ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x4b0ec13e cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x4f97c36e regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x51d4f854 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x52c20e25 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x53891480 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x574405bf cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0x5d950b6e cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x5e04a1d6 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x5f5b018c cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x65c06abf cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x66c30de5 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x676389a3 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6cb6e795 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x71bb054d cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x71c576a6 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x757713d6 __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x76a4c2f9 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x8844f91a cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x8cb23bed cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x90c123e7 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x9575f8cb cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x966ff54d ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x97ee2127 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x9c27b690 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x9edc6ab4 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x9f17822f cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x9fff5380 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xa1425906 ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xa70e2222 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xb006d21d cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xb27feeca cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xb31b7505 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xb6e7a999 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0xb6f8bdcb cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xb897b71a wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0xbe54d536 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xc5c7831c cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0xc6216121 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xc90eae06 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xcf7cdc5f cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xd0f40afd cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xd3f332e6 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xd895d632 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xda1e182a cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdcf61335 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0xdfd727af cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xe086c667 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xe5928fa7 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xeaae6e93 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xeb45a4b7 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0xeb6d7c6c ieee80211_ie_split +EXPORT_SYMBOL net/wireless/cfg80211 0xebfa54be cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xf0ff63a0 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0xf20cef45 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0xf218d464 cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xf3f54cde cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xf5468058 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/lib80211 0x09de7c18 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x2066e7ce lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x3689fb63 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x3842f84b lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0xbae198e6 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xfbb58e78 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL sound/ac97_bus 0xc97cfdc3 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x8b9b688c snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl +EXPORT_SYMBOL sound/core/seq/snd-seq 0x2011b9a9 snd_seq_kernel_client_enqueue_blocking +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x620df024 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x69e91aba snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xdab2623a snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x67526c59 snd_seq_device_new +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x127b30fb snd_midi_event_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x1cdc0812 snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x59eb74ae snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x8102ed2f snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xb11ba32d snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xb2c7f684 snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xea0e5748 snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xed42580b snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xff3a112a snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x004dfc6f _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0x0246229a snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x0fe00105 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x135709c9 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x177303b7 snd_card_free +EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x2a87b087 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x2b3b5641 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x325956fa snd_device_new +EXPORT_SYMBOL sound/core/snd 0x38266a47 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3e748806 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x3ef6adcb snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x431d55f0 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4bf5c23d snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x57dda9bc snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x5d58957c snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x5ecc7593 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x602c96f0 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x61f8a7c7 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x66793aef snd_card_register +EXPORT_SYMBOL sound/core/snd 0x6bcf41fc snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x78887bf5 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x78e1ee23 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x7c9ba6ac snd_device_free +EXPORT_SYMBOL sound/core/snd 0x7e7dbabd snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x82786ba4 snd_register_device +EXPORT_SYMBOL sound/core/snd 0x8508e887 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x9558ed00 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa39cbfad snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb7dc9d4e snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0xbfc40b7e snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0xc33c56d7 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0xc986f922 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0xca0c03c9 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0xcce71317 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0xce3ca308 copy_from_user_toio +EXPORT_SYMBOL sound/core/snd 0xd1157735 release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xd1efcdcb snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0xd3e9c9c8 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0xd63c4c44 snd_card_new +EXPORT_SYMBOL sound/core/snd 0xd6c70b65 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0xd807a8dc snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0xe4afb067 snd_info_register +EXPORT_SYMBOL sound/core/snd 0xea6782d1 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0xee103724 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0xee3faa9c snd_cards +EXPORT_SYMBOL sound/core/snd 0xf00ef9ed snd_component_add +EXPORT_SYMBOL sound/core/snd 0xf29301e0 snd_device_register +EXPORT_SYMBOL sound/core/snd 0xf681e9fa snd_card_set_id +EXPORT_SYMBOL sound/core/snd-hwdep 0xb5472e62 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x0737cb52 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x0d0f0232 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x0f3c07d5 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x1382e3b4 snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0x1ae3b1f1 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x203e9ec7 snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0x28b28319 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x2d36433f snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x34fa74af snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x38821342 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x3a3445dc snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x3b91f3af snd_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x3decf0d7 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x3ea1dbdf snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0x3fd3f9d5 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x4575ceb8 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x465d08b4 snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0x493ffdac _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x4d9b6d35 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x55864acd snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x5760a3de snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x5c668cbf snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x60673f56 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x6692eea7 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x7d1142b3 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x7d37d214 snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0x7e99175e snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x892ae8b2 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x8f9a5f91 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x903a8054 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x92146bfa snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x98ca00a5 snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0x9ebbc0ba snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0xa15c8294 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa92af9b8 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0xa9d333d5 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xade88e76 snd_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xb67070d0 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xc001fb51 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0xcb6617e5 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0xd226c4e5 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xd28bb880 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xdb999693 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xe7203b0d snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xeb8e524a snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0xee76d52f snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0xf76aa414 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0xf9c54ebe snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xfc944907 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x12c04773 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x17c29433 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x251b283a snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3fbddbe8 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4fe90a05 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x64323be3 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6d209945 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7465897c snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9429ae22 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa812fbdf snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb6da651d snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb83106f7 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc2708286 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xcf29cc7a snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xded1eac6 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe0fbbb76 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0xea33fec3 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xea3f75d9 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf7277dc5 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-timer 0x31ffeaad snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x38c5ba73 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x3a6d9c24 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x4172adf3 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x41b9a178 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x65dfb56a snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x7369725f snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x7b0923d5 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0xbf414f24 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0xc1becdaa snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0xc2163060 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0xd8652fa7 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xe4ecd174 snd_timer_new +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xe8b42825 snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x10930620 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x11fd8855 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x4ac7b128 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x4f0bba4e snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x57a73aee snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5d829622 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x761ab50e snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x76de64e1 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8ce74011 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x24fb9c5f snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x3b957fda snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x3db5a85c snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x57c8831e snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x8b5fa746 snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xb0ec1063 snd_ak4117_build +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x03ede117 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0b1f9b4a snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x11e82ed7 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x20daab94 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x25ffd56c snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x38199c0b snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x44cf225c snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x518d57ee snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6c24596a snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x82701c1b snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x927bb30d snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb60482b7 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb884dcff snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcb6fd8eb snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcff19645 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf604b24e snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf95108e0 snd_ac97_write +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x64fad39f tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x9e5cc183 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/snd-soc-core 0x73a24a03 snd_soc_alloc_ac97_codec +EXPORT_SYMBOL sound/sound_firmware 0x39e3dd23 mod_firmware_load +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x8d177156 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x8d660a1e register_sound_midi +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xc25a248c register_sound_special +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xd5ed42b6 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0xe08269a7 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xe633caa3 sound_class +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xf8054b2c snd_usbmidi_create +EXPORT_SYMBOL vmlinux 0x0043e191 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x00523ac1 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x00722b05 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x00e2c4e2 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x00e5e321 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x00ea0f58 lock_rename +EXPORT_SYMBOL vmlinux 0x00ec8c5b udp_sendmsg +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr +EXPORT_SYMBOL vmlinux 0x011a5b04 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x011a9e53 elf_hwcap2 +EXPORT_SYMBOL vmlinux 0x011b42a5 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x013bba0f mem_map +EXPORT_SYMBOL vmlinux 0x01424f59 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x0146c114 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x014955bd always_delete_dentry +EXPORT_SYMBOL vmlinux 0x014c1772 devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0x01687a10 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x0168c919 skb_dequeue +EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer +EXPORT_SYMBOL vmlinux 0x0182d7bb __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x0186e2de smp_call_function_many +EXPORT_SYMBOL vmlinux 0x018a39d8 bio_reset +EXPORT_SYMBOL vmlinux 0x0195cde1 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0x01aee9d5 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x01e8e551 of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x0202e037 f_setown +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x02196324 __aeabi_idiv +EXPORT_SYMBOL vmlinux 0x021bd622 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x023608de xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x023d2d20 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x025b83e2 mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x027b2a76 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x027d4135 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0x02821812 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x0285b521 mmc_start_req +EXPORT_SYMBOL vmlinux 0x02993b60 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02be4219 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x02e5e561 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact +EXPORT_SYMBOL vmlinux 0x02ef742b percpu_counter_set +EXPORT_SYMBOL vmlinux 0x02f41fb7 brioctl_set +EXPORT_SYMBOL vmlinux 0x03026722 mempool_alloc +EXPORT_SYMBOL vmlinux 0x03112f13 dwc_cc_if_alloc +EXPORT_SYMBOL vmlinux 0x03218782 dst_destroy +EXPORT_SYMBOL vmlinux 0x0324aa5c nvm_end_io +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x033e93e8 ns_capable +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x0359ba4d __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x035b5b4f ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x03ba39b0 v7_flush_user_cache_all +EXPORT_SYMBOL vmlinux 0x03c7c491 ata_print_version +EXPORT_SYMBOL vmlinux 0x03d36ad7 lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0x03dd5883 tcp_filter +EXPORT_SYMBOL vmlinux 0x03f6c4e0 kill_bdev +EXPORT_SYMBOL vmlinux 0x03f83ce5 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x0408fd5c security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x040f627a nf_unregister_hook +EXPORT_SYMBOL vmlinux 0x041d27f1 try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x043eb84f qdisc_reset +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x044c4bb8 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x0464afe7 of_device_unregister +EXPORT_SYMBOL vmlinux 0x0469cd81 tcp_check_req +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x04afd4fb release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x04b88b28 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x04bf751f unload_nls +EXPORT_SYMBOL vmlinux 0x04cabed9 rfkill_register +EXPORT_SYMBOL vmlinux 0x04cf9068 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x04de12ae kernel_listen +EXPORT_SYMBOL vmlinux 0x04eb79c9 __vfs_read +EXPORT_SYMBOL vmlinux 0x04fcf2de scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x051ccce6 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x056fa26b prepare_creds +EXPORT_SYMBOL vmlinux 0x057657d1 may_umount_tree +EXPORT_SYMBOL vmlinux 0x057d7320 skb_unlink +EXPORT_SYMBOL vmlinux 0x059d2a58 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x059ddf24 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x05a44da2 sock_rfree +EXPORT_SYMBOL vmlinux 0x05aaf5e9 set_nlink +EXPORT_SYMBOL vmlinux 0x05b643eb jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x05c44789 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x05ce8b07 filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0x05da5dfa kill_pid +EXPORT_SYMBOL vmlinux 0x05dce532 pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0x05fc1a30 bioset_create +EXPORT_SYMBOL vmlinux 0x0607ab88 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x060ea2d6 kstrtoull +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x061cda62 seq_open_private +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x0639d4fd mtd_concat_create +EXPORT_SYMBOL vmlinux 0x0672a93d i2c_transfer +EXPORT_SYMBOL vmlinux 0x067bde59 mdiobus_read +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x06872817 DWC_STRLEN +EXPORT_SYMBOL vmlinux 0x06952dea tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0x06ddb00a param_get_bool +EXPORT_SYMBOL vmlinux 0x06fd65ed find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x0702280a seq_path +EXPORT_SYMBOL vmlinux 0x071b3162 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x072a8f8d __set_fiq_regs +EXPORT_SYMBOL vmlinux 0x072f19bb free_buffer_head +EXPORT_SYMBOL vmlinux 0x07509af4 blk_get_request +EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free +EXPORT_SYMBOL vmlinux 0x07a5403c input_release_device +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07ba1aa0 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x07c477e8 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07cf9099 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x07ec427c blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x07f04dde __get_user_pages +EXPORT_SYMBOL vmlinux 0x07f11b18 ppp_input +EXPORT_SYMBOL vmlinux 0x080ddce6 DWC_TIME +EXPORT_SYMBOL vmlinux 0x081f3afb complete_all +EXPORT_SYMBOL vmlinux 0x0820ad2a tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x08270a57 proc_create_data +EXPORT_SYMBOL vmlinux 0x0828611e nand_bch_calculate_ecc +EXPORT_SYMBOL vmlinux 0x082e4055 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x0841b588 DWC_STRCMP +EXPORT_SYMBOL vmlinux 0x08506b42 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x0861e15c con_copy_unimap +EXPORT_SYMBOL vmlinux 0x08a37735 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x08edbb63 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x090d90bb mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x091ae294 backlight_device_register +EXPORT_SYMBOL vmlinux 0x091c0faa unregister_quota_format +EXPORT_SYMBOL vmlinux 0x09296475 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x095133fa devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x0954b460 usbnet_manage_power +EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key +EXPORT_SYMBOL vmlinux 0x096ac5a8 inode_permission +EXPORT_SYMBOL vmlinux 0x097ec1ff _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x0982551c nla_put +EXPORT_SYMBOL vmlinux 0x0983c1fe inet_listen +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x098ed1c5 thaw_bdev +EXPORT_SYMBOL vmlinux 0x09b79d12 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09cb1611 tcp_close +EXPORT_SYMBOL vmlinux 0x09cf1b46 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x09d0a808 alloc_disk_node +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09ee235b rtnl_unicast +EXPORT_SYMBOL vmlinux 0x0a0786de udplite_table +EXPORT_SYMBOL vmlinux 0x0a094d34 skb_copy +EXPORT_SYMBOL vmlinux 0x0a1ff8b9 tcf_hash_search +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr +EXPORT_SYMBOL vmlinux 0x0a347301 input_register_handle +EXPORT_SYMBOL vmlinux 0x0a373226 crc32_le_shift +EXPORT_SYMBOL vmlinux 0x0a3f968e sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell +EXPORT_SYMBOL vmlinux 0x0a7512fd tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x0a819f31 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x0a91c722 param_set_byte +EXPORT_SYMBOL vmlinux 0x0a9d3ba0 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x0aa178f2 tso_build_data +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0ab0c95c i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x0abe7187 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b21ac4f mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x0b272b83 devm_iounmap +EXPORT_SYMBOL vmlinux 0x0b2d425c of_node_put +EXPORT_SYMBOL vmlinux 0x0b3bbe62 vc_resize +EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b4d67f0 of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b6bdb91 dev_warn +EXPORT_SYMBOL vmlinux 0x0b6ecf7f prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b779b27 dev_activate +EXPORT_SYMBOL vmlinux 0x0b85455a __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x0baf4551 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x0bb3c664 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bca878f d_instantiate +EXPORT_SYMBOL vmlinux 0x0bdbf58d km_state_notify +EXPORT_SYMBOL vmlinux 0x0bdf26b8 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x0be2723a bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x0bfaa8a8 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x0c0e9ead sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x0c33b1cd bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x0c374f7d param_ops_charp +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c558587 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c7e63c8 generic_perform_write +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0ca43c90 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x0ca54fee _test_and_set_bit +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cce9fdb __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x0cdd158d sg_alloc_table +EXPORT_SYMBOL vmlinux 0x0ce1dc6f param_get_uint +EXPORT_SYMBOL vmlinux 0x0ce3cecb skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x0cfefe1e percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x0d1b1c49 generic_writepages +EXPORT_SYMBOL vmlinux 0x0d33090c ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x0d3cb182 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0x0d3f57a2 _find_next_bit_le +EXPORT_SYMBOL vmlinux 0x0d4d7a32 _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d8db8f8 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x0d938599 ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x0d95e636 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x0d9ab613 inet_frag_find +EXPORT_SYMBOL vmlinux 0x0d9acc40 tcp_read_sock +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex +EXPORT_SYMBOL vmlinux 0x0dd0e952 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x0deab57d of_get_next_child +EXPORT_SYMBOL vmlinux 0x0df1b074 thaw_super +EXPORT_SYMBOL vmlinux 0x0e0d245d ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x0e3754eb unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x0e4433cf sock_create +EXPORT_SYMBOL vmlinux 0x0e471668 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x0e51316a vm_insert_page +EXPORT_SYMBOL vmlinux 0x0e52270d unregister_filesystem +EXPORT_SYMBOL vmlinux 0x0e5529c5 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x0e625769 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x0e6a1a28 inet6_release +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e80a188 nf_log_trace +EXPORT_SYMBOL vmlinux 0x0ea07ec7 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x0eaf451e hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0ebfded3 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0x0ee10244 inet6_bind +EXPORT_SYMBOL vmlinux 0x0efb004d blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f072c15 blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0x0f12c534 do_splice_from +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f5ab2be tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f8315c8 dump_align +EXPORT_SYMBOL vmlinux 0x0f965935 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x0f9ed88f inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x0fa2a45e __memzero +EXPORT_SYMBOL vmlinux 0x0fa42d63 __destroy_inode +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fb4bc9c twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x0fd769a2 sg_miter_next +EXPORT_SYMBOL vmlinux 0x0fd94de9 simple_statfs +EXPORT_SYMBOL vmlinux 0x0fdf1b11 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x0ff178f6 __aeabi_idivmod +EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress +EXPORT_SYMBOL vmlinux 0x0ff88941 default_file_splice_read +EXPORT_SYMBOL vmlinux 0x10041915 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x102a5d59 touch_buffer +EXPORT_SYMBOL vmlinux 0x1044d456 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x104f2aeb remove_arg_zero +EXPORT_SYMBOL vmlinux 0x1067f1ef elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x10cbe2fd cpu_user +EXPORT_SYMBOL vmlinux 0x10d9ee0c from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x10eec714 dev_uc_add +EXPORT_SYMBOL vmlinux 0x10f7d9d0 clear_nlink +EXPORT_SYMBOL vmlinux 0x10fb92d7 dev_open +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x11145431 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x115e4d49 netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x117a728b insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x117e6a66 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0x119b50e7 elf_check_arch +EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x11a13e31 _kstrtol +EXPORT_SYMBOL vmlinux 0x11c5493c ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x123b0ac5 __genl_register_family +EXPORT_SYMBOL vmlinux 0x12500660 inet_shutdown +EXPORT_SYMBOL vmlinux 0x1284bbf3 mii_check_link +EXPORT_SYMBOL vmlinux 0x12896cd5 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12caf5ad inet_put_port +EXPORT_SYMBOL vmlinux 0x12d50886 sync_blockdev +EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc +EXPORT_SYMBOL vmlinux 0x12e85778 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x12f0447a scsi_add_device +EXPORT_SYMBOL vmlinux 0x12f17e49 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x1305e519 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x130754fe eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x131415b0 nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x13311c09 __netif_schedule +EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc +EXPORT_SYMBOL vmlinux 0x1336d542 of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x134d1b88 mount_bdev +EXPORT_SYMBOL vmlinux 0x13503c40 dev_trans_start +EXPORT_SYMBOL vmlinux 0x1382980c generic_listxattr +EXPORT_SYMBOL vmlinux 0x13a9fa44 single_open_size +EXPORT_SYMBOL vmlinux 0x13c4c532 dev_err +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13ff1aea dev_addr_init +EXPORT_SYMBOL vmlinux 0x14018e2c copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x142334f2 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x14429de8 get_cached_acl +EXPORT_SYMBOL vmlinux 0x14498040 mmc_register_driver +EXPORT_SYMBOL vmlinux 0x144b26f2 nf_register_hooks +EXPORT_SYMBOL vmlinux 0x144ba520 seq_file_path +EXPORT_SYMBOL vmlinux 0x14602881 netdev_alert +EXPORT_SYMBOL vmlinux 0x14652374 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x1478042f iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x14810930 __dst_free +EXPORT_SYMBOL vmlinux 0x148439c7 bdi_register_dev +EXPORT_SYMBOL vmlinux 0x1492d585 skb_make_writable +EXPORT_SYMBOL vmlinux 0x14999890 DWC_MUTEX_FREE +EXPORT_SYMBOL vmlinux 0x14a7ebee set_cached_acl +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14d4a9c5 _change_bit +EXPORT_SYMBOL vmlinux 0x14e64fa9 amba_device_unregister +EXPORT_SYMBOL vmlinux 0x1530f058 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x1546083e cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x1559f3e3 dst_init +EXPORT_SYMBOL vmlinux 0x1560773e sock_recvmsg +EXPORT_SYMBOL vmlinux 0x1590b606 dev_notice +EXPORT_SYMBOL vmlinux 0x159d8387 mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x15a50d3a read_cache_page +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bc0fef tcf_hash_create +EXPORT_SYMBOL vmlinux 0x15d3810d input_unregister_device +EXPORT_SYMBOL vmlinux 0x15eb418b filemap_fdatawait +EXPORT_SYMBOL vmlinux 0x16286adb blk_finish_request +EXPORT_SYMBOL vmlinux 0x1629b5ae mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x162ccc0c lg_local_lock +EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null +EXPORT_SYMBOL vmlinux 0x1637a60f sync_inode +EXPORT_SYMBOL vmlinux 0x164322db phy_device_free +EXPORT_SYMBOL vmlinux 0x1655f61a devm_clk_put +EXPORT_SYMBOL vmlinux 0x1683a50b radix_tree_delete +EXPORT_SYMBOL vmlinux 0x168cf911 nla_reserve +EXPORT_SYMBOL vmlinux 0x16a2209f DWC_SPINLOCK +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16efe9e5 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x16f7bf30 __breadahead +EXPORT_SYMBOL vmlinux 0x17088a22 invalidate_partition +EXPORT_SYMBOL vmlinux 0x170bea44 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x171779c3 lro_receive_skb +EXPORT_SYMBOL vmlinux 0x172276ab tty_vhangup +EXPORT_SYMBOL vmlinux 0x172ec730 DWC_WORKQ_PENDING +EXPORT_SYMBOL vmlinux 0x1733140e phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x1741ae6e phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0x1748e386 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x174960a5 __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x175f8160 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x1776567d fs_bio_set +EXPORT_SYMBOL vmlinux 0x1784c60f request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x1791249a __register_nls +EXPORT_SYMBOL vmlinux 0x179a270c blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x17a20902 lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0x17a27432 DWC_IN_IRQ +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17b5516d account_page_redirty +EXPORT_SYMBOL vmlinux 0x17eef05f of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x1827f6d6 param_set_int +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x1837e2fa set_user_nice +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x18454deb send_sig +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x1855e2c0 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x18634d1a skb_vlan_push +EXPORT_SYMBOL vmlinux 0x1867d2c5 ilookup5 +EXPORT_SYMBOL vmlinux 0x186b689b follow_up +EXPORT_SYMBOL vmlinux 0x1873e6dc rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x188cd41e arp_send +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1894197d blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x18bd76a4 _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x18bd796f mmc_flush_cache +EXPORT_SYMBOL vmlinux 0x18c2227f cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x18c61257 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0x18de1bf3 dqget +EXPORT_SYMBOL vmlinux 0x18e07c43 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18f227ff DWC_UDELAY +EXPORT_SYMBOL vmlinux 0x18f2f7bf skb_clone_sk +EXPORT_SYMBOL vmlinux 0x1912dfea scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x19354566 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x195472ab __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x19577f16 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x19610e1f cpu_all_bits +EXPORT_SYMBOL vmlinux 0x19975b52 bmap +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19a0925f nvm_erase_blk +EXPORT_SYMBOL vmlinux 0x19ac5143 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x19b8b8b2 swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19c35994 config_item_set_name +EXPORT_SYMBOL vmlinux 0x19dcfe96 of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x19e3ed8a md_integrity_register +EXPORT_SYMBOL vmlinux 0x19eb414a DWC_THREAD_RUN +EXPORT_SYMBOL vmlinux 0x19f2ad34 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x19f5809b dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0x19ff4d65 __sock_create +EXPORT_SYMBOL vmlinux 0x1a1884ba DWC_ATOI +EXPORT_SYMBOL vmlinux 0x1a2ef307 blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x1a380725 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x1a480cd6 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x1a4c323b lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x1a4f1767 param_get_short +EXPORT_SYMBOL vmlinux 0x1a5213c5 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x1a65f4ad __arm_ioremap_pfn +EXPORT_SYMBOL vmlinux 0x1a683d97 kill_pgrp +EXPORT_SYMBOL vmlinux 0x1a76a12a xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x1a895ccc notify_change +EXPORT_SYMBOL vmlinux 0x1ac2ef89 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x1ad1f2e7 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0x1aecd71b abort_creds +EXPORT_SYMBOL vmlinux 0x1afae5e7 down_interruptible +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b17e06c kstrtoll +EXPORT_SYMBOL vmlinux 0x1b29a285 DWC_VSNPRINTF +EXPORT_SYMBOL vmlinux 0x1b31b426 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x1b3d145c blk_stop_queue +EXPORT_SYMBOL vmlinux 0x1b5d8544 ppp_input_error +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b8d4f57 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x1b93bb57 default_llseek +EXPORT_SYMBOL vmlinux 0x1ba42dbe posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer +EXPORT_SYMBOL vmlinux 0x1bcaa9ed nvm_put_blk +EXPORT_SYMBOL vmlinux 0x1bcd8cc5 __neigh_create +EXPORT_SYMBOL vmlinux 0x1be95051 seq_open +EXPORT_SYMBOL vmlinux 0x1c043eea sg_miter_start +EXPORT_SYMBOL vmlinux 0x1c0b518f __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x1c148c7f eth_header_parse +EXPORT_SYMBOL vmlinux 0x1c3af8d5 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x1c3bcbe8 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x1c59cc2d blk_delay_queue +EXPORT_SYMBOL vmlinux 0x1c5cd308 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x1c610138 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x1c9d0d8b blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x1ca86b91 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x1caa38fe register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x1cacc3f4 do_truncate +EXPORT_SYMBOL vmlinux 0x1cd8b501 vchiq_add_service +EXPORT_SYMBOL vmlinux 0x1cf37634 kill_fasync +EXPORT_SYMBOL vmlinux 0x1cfb04fa finish_wait +EXPORT_SYMBOL vmlinux 0x1d09af8e ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x1d0a77da DWC_BE16_TO_CPU +EXPORT_SYMBOL vmlinux 0x1d1758fd __nla_put +EXPORT_SYMBOL vmlinux 0x1d1e965a set_groups +EXPORT_SYMBOL vmlinux 0x1d470e20 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x1d73595b con_is_bound +EXPORT_SYMBOL vmlinux 0x1d761adb flush_dcache_page +EXPORT_SYMBOL vmlinux 0x1d8e72d6 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x1dadc65a DWC_WORKQ_WAIT_WORK_DONE +EXPORT_SYMBOL vmlinux 0x1dafc2ca dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x1db3cb04 param_get_ullong +EXPORT_SYMBOL vmlinux 0x1db7dc40 pgprot_kernel +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dd475a2 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1df1b4cb get_fs_type +EXPORT_SYMBOL vmlinux 0x1df63f48 init_task +EXPORT_SYMBOL vmlinux 0x1e047854 warn_slowpath_fmt +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e278d99 fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0x1e67b447 configfs_register_group +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e77b7c8 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x1e8b0e65 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea3513a nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x1eb137bb __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x1ecdcce3 mmc_can_trim +EXPORT_SYMBOL vmlinux 0x1eda691c vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x1ee1c7d4 mutex_unlock +EXPORT_SYMBOL vmlinux 0x1eeb848e __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x1efd38c8 neigh_for_each +EXPORT_SYMBOL vmlinux 0x1f862e3c blk_complete_request +EXPORT_SYMBOL vmlinux 0x1f9419ba max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x1fab5905 wait_for_completion +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fc01c60 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x1fcf59a5 unregister_md_personality +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fd7df77 alloc_disk +EXPORT_SYMBOL vmlinux 0x1fdc2603 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x1ff11663 mii_nway_restart +EXPORT_SYMBOL vmlinux 0x1ff4beed have_submounts +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x20011961 secpath_dup +EXPORT_SYMBOL vmlinux 0x200287b0 mdiobus_free +EXPORT_SYMBOL vmlinux 0x2007c2ca led_blink_set +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x20205f64 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0x2030ffb0 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x203acc9d dwc_add_observer +EXPORT_SYMBOL vmlinux 0x203bb6c0 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x203ea298 mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0x20421305 on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x206525ba __secpath_destroy +EXPORT_SYMBOL vmlinux 0x2077a8d9 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x208d4409 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x20a2351f alloc_file +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20ae58d0 __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0x20b848ae eth_change_mtu +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20dd6cd8 __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0x20e5348b __frontswap_load +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x20efc965 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x20fd70d4 param_set_invbool +EXPORT_SYMBOL vmlinux 0x20ff1fc5 inet6_offloads +EXPORT_SYMBOL vmlinux 0x21004345 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x21110dbf mmioset +EXPORT_SYMBOL vmlinux 0x211331fa __divsi3 +EXPORT_SYMBOL vmlinux 0x21450ef0 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x21567e9f __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x2160efbe __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x21638940 blk_put_queue +EXPORT_SYMBOL vmlinux 0x216d759a mmiocpy +EXPORT_SYMBOL vmlinux 0x21b266fa tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x21d1a78e __neigh_event_send +EXPORT_SYMBOL vmlinux 0x21d66a4f scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21ee61c5 of_get_next_parent +EXPORT_SYMBOL vmlinux 0x21f7eb8f claim_fiq +EXPORT_SYMBOL vmlinux 0x221ee085 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x222fa684 lg_global_lock +EXPORT_SYMBOL vmlinux 0x2230cabf sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x2232a8a5 mempool_free +EXPORT_SYMBOL vmlinux 0x223cf54b input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x2245fdf2 file_remove_privs +EXPORT_SYMBOL vmlinux 0x2247a287 kernel_accept +EXPORT_SYMBOL vmlinux 0x2256fafa div64_u64_rem +EXPORT_SYMBOL vmlinux 0x22599539 i2c_master_send +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x2283cb90 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x228eccf4 del_gendisk +EXPORT_SYMBOL vmlinux 0x22978436 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x229f6a30 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x22a7eb8d __block_write_begin +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22b48547 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x22ba0ceb sock_i_ino +EXPORT_SYMBOL vmlinux 0x22bc35ff skb_clone +EXPORT_SYMBOL vmlinux 0x22d15b3e skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x22dc14d2 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x22deaab6 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x22dfdd06 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x22dff932 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x22f0650b nf_register_hook +EXPORT_SYMBOL vmlinux 0x22fc4f3a trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x23048f11 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x230e5ed6 put_io_context +EXPORT_SYMBOL vmlinux 0x2311abc2 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x23241936 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x2343aa0c generic_end_io_acct +EXPORT_SYMBOL vmlinux 0x2362ab32 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x23896ad4 seq_puts +EXPORT_SYMBOL vmlinux 0x238ddb5d __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0x2394bc74 vchi_service_release +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23aa49d3 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x23f17055 bio_split +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x2401ba2e blk_sync_queue +EXPORT_SYMBOL vmlinux 0x24105bf8 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x2431c17d skb_seq_read +EXPORT_SYMBOL vmlinux 0x2433d16d __sk_dst_check +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x2475e560 blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x24764b21 follow_pfn +EXPORT_SYMBOL vmlinux 0x247b92e2 amba_driver_register +EXPORT_SYMBOL vmlinux 0x247d4248 of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x2487125e tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x249166a5 sk_receive_skb +EXPORT_SYMBOL vmlinux 0x24972ed4 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x249b4ec7 nand_bch_correct_data +EXPORT_SYMBOL vmlinux 0x249d4aff __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x24b4c693 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x24e1dd7e from_kuid +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x250bcf88 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x251555d2 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x252a26c2 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x252cc575 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x25654aa9 inet_getname +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x2572353a DWC_READ_REG32 +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x25b41add scsi_target_resume +EXPORT_SYMBOL vmlinux 0x25d1c0af param_get_ushort +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x260301d1 of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x26096c70 netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x2614da7f vm_event_states +EXPORT_SYMBOL vmlinux 0x262b7b9d forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x263178a8 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x2645ccd5 clk_register_clkdevs +EXPORT_SYMBOL vmlinux 0x264ad911 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x264e8ba6 __mdiobus_register +EXPORT_SYMBOL vmlinux 0x26507861 put_filp +EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux +EXPORT_SYMBOL vmlinux 0x266147d3 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x26721b03 __vfs_write +EXPORT_SYMBOL vmlinux 0x2673d47e bio_clone_bioset +EXPORT_SYMBOL vmlinux 0x26a052a6 param_set_ulong +EXPORT_SYMBOL vmlinux 0x26bb36ad fb_pan_display +EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x26c2128c lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x26f2234b bdi_register_owner +EXPORT_SYMBOL vmlinux 0x26f3b626 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x270653bc try_to_release_page +EXPORT_SYMBOL vmlinux 0x27282838 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x275ef902 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x276e3961 configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0x27794382 elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x279f5b88 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x27ac23a5 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x27b2066e netlink_capable +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27ddc0dc framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x27f75f64 simple_write_begin +EXPORT_SYMBOL vmlinux 0x28118cb6 __get_user_1 +EXPORT_SYMBOL vmlinux 0x2817a771 tc6393xb_lcd_mode +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x2823217f __module_get +EXPORT_SYMBOL vmlinux 0x285789a4 input_reset_device +EXPORT_SYMBOL vmlinux 0x285823e6 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x28840949 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x2884b3e0 mii_ethtool_gset +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28cc25db arm_copy_from_user +EXPORT_SYMBOL vmlinux 0x28d2dd32 sget +EXPORT_SYMBOL vmlinux 0x28d6861d __vmalloc +EXPORT_SYMBOL vmlinux 0x28ec5030 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x290246dd netif_device_attach +EXPORT_SYMBOL vmlinux 0x2927fdc6 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x293545ef pipe_unlock +EXPORT_SYMBOL vmlinux 0x294c49dd elv_register_queue +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x295d5598 udp_ioctl +EXPORT_SYMBOL vmlinux 0x2979555c bio_integrity_free +EXPORT_SYMBOL vmlinux 0x2998dac3 skb_insert +EXPORT_SYMBOL vmlinux 0x299e75de nobh_write_begin +EXPORT_SYMBOL vmlinux 0x29d1f052 truncate_setsize +EXPORT_SYMBOL vmlinux 0x29de2d29 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x29e1b020 ida_simple_remove +EXPORT_SYMBOL vmlinux 0x29f0d345 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x2a05e987 inet_accept +EXPORT_SYMBOL vmlinux 0x2a10cf1a of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0x2a2cc922 d_set_d_op +EXPORT_SYMBOL vmlinux 0x2a3aa678 _test_and_clear_bit +EXPORT_SYMBOL vmlinux 0x2a4c2bfe inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x2a602dd8 reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0x2a662523 swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0x2a879e74 dquot_quota_off +EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp +EXPORT_SYMBOL vmlinux 0x2aac7328 copy_to_iter +EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x2ac5c72e elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x2ac6193b __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2add2038 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b12925d cpumask_next_and +EXPORT_SYMBOL vmlinux 0x2b4779b8 mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0x2b4e956e mempool_create +EXPORT_SYMBOL vmlinux 0x2b60d557 mmc_free_host +EXPORT_SYMBOL vmlinux 0x2b7254b0 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x2b8002d2 security_path_rename +EXPORT_SYMBOL vmlinux 0x2b816e4f devm_request_resource +EXPORT_SYMBOL vmlinux 0x2b83cac4 find_lock_entry +EXPORT_SYMBOL vmlinux 0x2b8f8d82 blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0x2b9b0f70 DWC_LE32_TO_CPU +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba10561 udplite_prot +EXPORT_SYMBOL vmlinux 0x2ba5d581 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2ba83a57 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x2bbc6d8d tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x2bc1664f netdev_master_upper_dev_link_private +EXPORT_SYMBOL vmlinux 0x2bdd6e28 node_states +EXPORT_SYMBOL vmlinux 0x2be0f12d dql_completed +EXPORT_SYMBOL vmlinux 0x2bf914ad delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x2c0d8809 __bforget +EXPORT_SYMBOL vmlinux 0x2c1c46b4 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c44aa61 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x2c485653 param_set_bint +EXPORT_SYMBOL vmlinux 0x2c59abb8 swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x2c7679a1 set_create_files_as +EXPORT_SYMBOL vmlinux 0x2c81ec75 __irq_regs +EXPORT_SYMBOL vmlinux 0x2c8c1059 of_parse_phandle +EXPORT_SYMBOL vmlinux 0x2c988955 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x2c9cd313 devm_ioremap +EXPORT_SYMBOL vmlinux 0x2c9d0946 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x2cadf561 inode_init_always +EXPORT_SYMBOL vmlinux 0x2cb073bf mmc_align_data_size +EXPORT_SYMBOL vmlinux 0x2cb9748d dm_io +EXPORT_SYMBOL vmlinux 0x2cc7a73c proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d1a572e mark_info_dirty +EXPORT_SYMBOL vmlinux 0x2d2e95cf blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0x2d2f35fa dev_mc_del +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d37a6c1 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x2d6507b5 _find_next_zero_bit_le +EXPORT_SYMBOL vmlinux 0x2d6ae1a0 uart_register_driver +EXPORT_SYMBOL vmlinux 0x2d886ba2 clk_get +EXPORT_SYMBOL vmlinux 0x2d88fd8c fb_validate_mode +EXPORT_SYMBOL vmlinux 0x2d8f3442 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x2d9b7f5a dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x2dbd463e key_reject_and_link +EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink +EXPORT_SYMBOL vmlinux 0x2ddc7000 inode_init_once +EXPORT_SYMBOL vmlinux 0x2ddd431b __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x2de0c8e9 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x2def5971 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x2e0c95e4 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e2dc3aa __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0x2e34fde9 get_task_io_context +EXPORT_SYMBOL vmlinux 0x2e5810c6 __aeabi_unwind_cpp_pr1 +EXPORT_SYMBOL vmlinux 0x2e66d77e vfs_link +EXPORT_SYMBOL vmlinux 0x2e7bd038 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x2e7df66e dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x2e96bf68 filemap_flush +EXPORT_SYMBOL vmlinux 0x2e989b59 uart_resume_port +EXPORT_SYMBOL vmlinux 0x2ea10cb8 d_instantiate_unique +EXPORT_SYMBOL vmlinux 0x2ebd804f cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x2ecd441b fence_free +EXPORT_SYMBOL vmlinux 0x2eeca2c5 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f2adab0 dquot_enable +EXPORT_SYMBOL vmlinux 0x2f2e6e37 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f504f5b request_key +EXPORT_SYMBOL vmlinux 0x2f51fb9a kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0x2f58a4e7 input_grab_device +EXPORT_SYMBOL vmlinux 0x2f5f2a57 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x2f799aaf skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x2f7b35f2 irq_set_chip +EXPORT_SYMBOL vmlinux 0x2f8d7273 register_framebuffer +EXPORT_SYMBOL vmlinux 0x2f97749b kobject_put +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fcee481 of_dev_put +EXPORT_SYMBOL vmlinux 0x2fda4908 __page_symlink +EXPORT_SYMBOL vmlinux 0x2fdab215 flow_cache_fini +EXPORT_SYMBOL vmlinux 0x2fe085cf add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2ff079cc bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x2ffe987e param_ops_byte +EXPORT_SYMBOL vmlinux 0x30221821 cad_pid +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x3037e299 scsi_register_interface +EXPORT_SYMBOL vmlinux 0x304f7303 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x3056a4fb twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x307f072b seq_printf +EXPORT_SYMBOL vmlinux 0x30924076 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30cdb688 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0x30d9078d iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30fa488b skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310917fe sort +EXPORT_SYMBOL vmlinux 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL vmlinux 0x31380354 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x31551f28 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x3164721e parent_mem_cgroup +EXPORT_SYMBOL vmlinux 0x3171f0be devm_gpio_request +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x3197a77f __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x319b7c08 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x319b95b9 write_cache_pages +EXPORT_SYMBOL vmlinux 0x31b31f5c csum_partial_copy_nocheck +EXPORT_SYMBOL vmlinux 0x31b9195c __local_bh_disable_ip +EXPORT_SYMBOL vmlinux 0x31c11a8d peernet2id_alloc +EXPORT_SYMBOL vmlinux 0x31c77ed0 padata_free +EXPORT_SYMBOL vmlinux 0x31e0606d neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x31ebc890 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0x32061b88 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x320875b8 __scm_send +EXPORT_SYMBOL vmlinux 0x320fc06f dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x321554f8 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x322edd30 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x32668fc6 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x3275739d dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x3289214e tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy +EXPORT_SYMBOL vmlinux 0x32907b91 idr_remove +EXPORT_SYMBOL vmlinux 0x32b9eb5c find_get_entry +EXPORT_SYMBOL vmlinux 0x32c42950 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x32d82670 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x32e11f2f inet_stream_connect +EXPORT_SYMBOL vmlinux 0x32e77ac2 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x330bedf8 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x3316845e idr_get_next +EXPORT_SYMBOL vmlinux 0x3317ac58 vchiq_initialise +EXPORT_SYMBOL vmlinux 0x332c31ef netdev_features_change +EXPORT_SYMBOL vmlinux 0x337a0c50 tc6393xb_lcd_set_power +EXPORT_SYMBOL vmlinux 0x338c296e devm_release_resource +EXPORT_SYMBOL vmlinux 0x338c6915 free_netdev +EXPORT_SYMBOL vmlinux 0x3398541d tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x33c71309 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33ce58f7 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33f32c6a register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x3406b586 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x3409e837 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x341dbfa3 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x342bd3fe unregister_console +EXPORT_SYMBOL vmlinux 0x344b7739 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x34585d4f set_disk_ro +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x34662e09 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x347419f9 bio_endio +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a4a4cd padata_do_parallel +EXPORT_SYMBOL vmlinux 0x34a4d702 fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0x34bcfdc8 DWC_SPINLOCK_ALLOC +EXPORT_SYMBOL vmlinux 0x34c221aa textsearch_destroy +EXPORT_SYMBOL vmlinux 0x34e46d8d dev_add_offload +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34f50e1d param_get_charp +EXPORT_SYMBOL vmlinux 0x34facfb6 configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x35003799 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x3507a132 _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x351a4c00 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0x353de98f cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x353e3fa5 __get_user_4 +EXPORT_SYMBOL vmlinux 0x35505fa2 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x3555c65a free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x35705a48 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x358a48e5 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x35940d5e tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35ce1ab5 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x35d7ecc8 kdb_current_task +EXPORT_SYMBOL vmlinux 0x35dc86e1 udp_poll +EXPORT_SYMBOL vmlinux 0x35e3ec39 file_update_time +EXPORT_SYMBOL vmlinux 0x360a10a2 proc_symlink +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x3612c10f tmio_core_mmc_enable +EXPORT_SYMBOL vmlinux 0x362dfbe4 nf_afinfo +EXPORT_SYMBOL vmlinux 0x3657daab dev_set_group +EXPORT_SYMBOL vmlinux 0x367ba856 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x36a391cb devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x36b85d5c config_item_init_type_name +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36ec1aec dcb_getapp +EXPORT_SYMBOL vmlinux 0x36ee466b nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x36fdda67 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x3710b647 netif_napi_del +EXPORT_SYMBOL vmlinux 0x3715d1ac generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x371dccaa neigh_table_clear +EXPORT_SYMBOL vmlinux 0x371f17d0 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x37324fe7 phy_device_register +EXPORT_SYMBOL vmlinux 0x373daf07 of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x373db350 kstrtoint +EXPORT_SYMBOL vmlinux 0x3744387a dup_iter +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x374e4114 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x3785718a __check_sticky +EXPORT_SYMBOL vmlinux 0x379dee5f trace_print_symbols_seq_u64 +EXPORT_SYMBOL vmlinux 0x37a7165e migrate_page_copy +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37bd8520 d_tmpfile +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37d10210 mmc_erase +EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 +EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x3809c26c dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x384ef502 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x38600a20 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x3864f74d dentry_needs_remove_privs +EXPORT_SYMBOL vmlinux 0x38679e6e napi_get_frags +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x3894d5fb call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x389ecf9e __bswapdi2 +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38fc7272 sk_alloc +EXPORT_SYMBOL vmlinux 0x39054a82 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x390def22 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x391c9d44 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x391fcef7 kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0x3924dd56 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x3952f035 km_policy_notify +EXPORT_SYMBOL vmlinux 0x3962f33e tty_hangup +EXPORT_SYMBOL vmlinux 0x39730d06 atomic_io_modify +EXPORT_SYMBOL vmlinux 0x397ce2c1 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x398e0fa9 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399c85b4 mount_single +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39b71e80 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x39c6c2de __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x39d1a796 trace_hardirqs_on_caller +EXPORT_SYMBOL vmlinux 0x39e7da6c dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x39ec72fe scsi_remove_device +EXPORT_SYMBOL vmlinux 0x3a1ac054 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x3a35c23e scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x3a37f9bf open_exec +EXPORT_SYMBOL vmlinux 0x3a3b3200 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x3a3f2ad1 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x3a479351 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x3a7dfc0d scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x3a8788df __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x3a9890d1 __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0x3a9937d6 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3abb26b0 ioremap_wc +EXPORT_SYMBOL vmlinux 0x3abccd57 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x3ac766d6 flow_cache_init +EXPORT_SYMBOL vmlinux 0x3ac7b980 blk_start_queue +EXPORT_SYMBOL vmlinux 0x3b0a83ef of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x3b0bbd66 elevator_alloc +EXPORT_SYMBOL vmlinux 0x3b12e54a of_find_property +EXPORT_SYMBOL vmlinux 0x3b1c8378 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x3b3689ab zero_fill_bio +EXPORT_SYMBOL vmlinux 0x3b4c78a5 __sb_start_write +EXPORT_SYMBOL vmlinux 0x3b4fec3f pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x3b548418 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b747f78 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x3b7c3565 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x3ba6e43c invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x3bb662a7 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x3bb8893f kernel_getsockname +EXPORT_SYMBOL vmlinux 0x3bbf46ea vga_base +EXPORT_SYMBOL vmlinux 0x3bc56e2a of_get_address +EXPORT_SYMBOL vmlinux 0x3bd63757 proc_mkdir +EXPORT_SYMBOL vmlinux 0x3bdd8e73 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x3bec143d sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x3c00846d vm_mmap +EXPORT_SYMBOL vmlinux 0x3c2f3d5b downgrade_write +EXPORT_SYMBOL vmlinux 0x3c326fda DWC_UTF8_TO_UTF16LE +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c5db74b sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x3c6ccd5b security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x3c787fc6 tty_port_put +EXPORT_SYMBOL vmlinux 0x3c8af8d3 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x3ca7dbcc vchi_connect +EXPORT_SYMBOL vmlinux 0x3cba47c3 elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cfa969a proc_douintvec +EXPORT_SYMBOL vmlinux 0x3d30409d iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0x3d3c540f elf_hwcap +EXPORT_SYMBOL vmlinux 0x3d41081d udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x3d447ed1 init_special_inode +EXPORT_SYMBOL vmlinux 0x3d45d687 bio_chain +EXPORT_SYMBOL vmlinux 0x3d5c5c59 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x3d7f7c18 tso_count_descs +EXPORT_SYMBOL vmlinux 0x3d889bec of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x3d8fca57 param_ops_bint +EXPORT_SYMBOL vmlinux 0x3d8fd792 ppp_channel_index +EXPORT_SYMBOL vmlinux 0x3da55258 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dccec75 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e04203a blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x3e142aae __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x3e1af2ad phy_init_hw +EXPORT_SYMBOL vmlinux 0x3e2df024 blk_register_region +EXPORT_SYMBOL vmlinux 0x3e452a3a generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x3e573d85 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x3e884f4b vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3eb16930 generic_fillattr +EXPORT_SYMBOL vmlinux 0x3eb735c2 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x3ec33ad9 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x3ef474c0 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x3f27d6b8 param_set_charp +EXPORT_SYMBOL vmlinux 0x3f35eb35 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4b5c0e scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x3f5b67d5 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x3f5e5ddc nand_bch_init +EXPORT_SYMBOL vmlinux 0x3f616ce2 queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x3f7055b1 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x3f740336 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x3f919d55 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x3fa389d4 serio_rescan +EXPORT_SYMBOL vmlinux 0x3fa8284b blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0x3fab3ca9 register_sysctl_table +EXPORT_SYMBOL vmlinux 0x3fae18dc empty_zero_page +EXPORT_SYMBOL vmlinux 0x3fc61bae netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x3fcf2af4 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x3fe496e6 phy_init_eee +EXPORT_SYMBOL vmlinux 0x3fedaebe seq_escape +EXPORT_SYMBOL vmlinux 0x4000cd8b inet6_protos +EXPORT_SYMBOL vmlinux 0x4000ee95 genphy_resume +EXPORT_SYMBOL vmlinux 0x402011ba mmc_request_done +EXPORT_SYMBOL vmlinux 0x402866ab netdev_update_features +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev +EXPORT_SYMBOL vmlinux 0x4044ba52 simple_empty +EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x407136b1 __put_user_8 +EXPORT_SYMBOL vmlinux 0x4080315f gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a2d1dd dm_table_get_size +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40ab665a generic_make_request +EXPORT_SYMBOL vmlinux 0x40ad3abc neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x40b0dd4f __blk_end_request_all +EXPORT_SYMBOL vmlinux 0x40bfd753 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40d7513d inet_offloads +EXPORT_SYMBOL vmlinux 0x40e10a64 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x40e9fb62 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x40ed524a _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x40f07981 __ashldi3 +EXPORT_SYMBOL vmlinux 0x40f5ed5e vfs_writef +EXPORT_SYMBOL vmlinux 0x411acc07 make_bad_inode +EXPORT_SYMBOL vmlinux 0x4134812d usbnet_link_change +EXPORT_SYMBOL vmlinux 0x41414447 ip_ct_attach +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x41636249 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x4196e459 bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x41c1e681 __serio_register_port +EXPORT_SYMBOL vmlinux 0x41c258a2 blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x41d119ac of_get_named_gpio_flags +EXPORT_SYMBOL vmlinux 0x41d56635 path_nosuid +EXPORT_SYMBOL vmlinux 0x41fc4878 dquot_initialize +EXPORT_SYMBOL vmlinux 0x42070f2d sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x421864bc mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x423d81ed ida_pre_get +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x425ff738 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x426c90cb swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x427f51ff xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x4298b775 v7_flush_kern_cache_all +EXPORT_SYMBOL vmlinux 0x429be6d3 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x42a64446 fasync_helper +EXPORT_SYMBOL vmlinux 0x42b4f1af netdev_emerg +EXPORT_SYMBOL vmlinux 0x42ec645f cdrom_open +EXPORT_SYMBOL vmlinux 0x42f927ca blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x4314d74e input_register_device +EXPORT_SYMBOL vmlinux 0x432eb57a cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0x43301d1c i2c_master_recv +EXPORT_SYMBOL vmlinux 0x434321b7 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x437ec478 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x43854b39 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43938906 key_type_keyring +EXPORT_SYMBOL vmlinux 0x43970fa1 dma_mmap_from_coherent +EXPORT_SYMBOL vmlinux 0x439a7a0a ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x43a05613 soft_cursor +EXPORT_SYMBOL vmlinux 0x43db9f42 end_page_writeback +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x44066c90 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x44110182 __invalidate_device +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x442495c9 tmio_core_mmc_resume +EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x443861b6 phy_device_create +EXPORT_SYMBOL vmlinux 0x443e24e1 __alloc_skb +EXPORT_SYMBOL vmlinux 0x445ffa26 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x44643b93 __aeabi_lmul +EXPORT_SYMBOL vmlinux 0x4489b93e phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x44902faf dev_addr_flush +EXPORT_SYMBOL vmlinux 0x4492cd43 tcp_init_cgroup +EXPORT_SYMBOL vmlinux 0x4494e15b blk_end_request +EXPORT_SYMBOL vmlinux 0x4496e7d3 devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0x44a60a82 seq_write +EXPORT_SYMBOL vmlinux 0x44b06e1e uart_get_divisor +EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x44da5d0f __csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x44dd3d8d completion_done +EXPORT_SYMBOL vmlinux 0x44dd71ec dev_printk_emit +EXPORT_SYMBOL vmlinux 0x44e4c065 vchi_held_msg_release +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44fac0a7 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x44fbba1e generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x450a2f9c set_binfmt +EXPORT_SYMBOL vmlinux 0x4515db0e netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x4524fc2f ps2_begin_command +EXPORT_SYMBOL vmlinux 0x4536087b mmc_detect_change +EXPORT_SYMBOL vmlinux 0x453f9fbf __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x454e6747 pagevec_lookup +EXPORT_SYMBOL vmlinux 0x4571be42 param_set_uint +EXPORT_SYMBOL vmlinux 0x4572bf15 generic_read_dir +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x45a8615b of_dev_get +EXPORT_SYMBOL vmlinux 0x45b620e5 simple_readpage +EXPORT_SYMBOL vmlinux 0x45bda0d5 system_serial_low +EXPORT_SYMBOL vmlinux 0x45df51f1 dquot_operations +EXPORT_SYMBOL vmlinux 0x45e134f3 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x460ede29 tcp_prequeue +EXPORT_SYMBOL vmlinux 0x4616f4ba DWC_CPU_TO_LE32 +EXPORT_SYMBOL vmlinux 0x461b2631 blkdev_fsync +EXPORT_SYMBOL vmlinux 0x4624a898 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy +EXPORT_SYMBOL vmlinux 0x462c5355 dquot_transfer +EXPORT_SYMBOL vmlinux 0x465757c3 cpu_present_mask +EXPORT_SYMBOL vmlinux 0x46593b4f __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x4672c7b8 cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x467566c4 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x467b0ef2 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x467f5121 key_task_permission +EXPORT_SYMBOL vmlinux 0x46d38e31 DWC_SNPRINTF +EXPORT_SYMBOL vmlinux 0x46d3b28c __div0 +EXPORT_SYMBOL vmlinux 0x46dd8cbb blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x46e1859e dev_mc_sync +EXPORT_SYMBOL vmlinux 0x46ef4c9f fb_set_cmap +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x476c245f skb_split +EXPORT_SYMBOL vmlinux 0x47796134 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x4794bbc2 scsi_device_put +EXPORT_SYMBOL vmlinux 0x47988ab8 posix_test_lock +EXPORT_SYMBOL vmlinux 0x47acf829 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0x47e4f463 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x47e70229 v7_flush_user_cache_range +EXPORT_SYMBOL vmlinux 0x47e93ad9 __inode_permission +EXPORT_SYMBOL vmlinux 0x47f757de elf_platform +EXPORT_SYMBOL vmlinux 0x481ce6ce cpu_active_mask +EXPORT_SYMBOL vmlinux 0x4820eeee sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x48244456 vchi_service_close +EXPORT_SYMBOL vmlinux 0x483a718c amba_device_register +EXPORT_SYMBOL vmlinux 0x4841fc8c mem_cgroup_end_page_stat +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x4879daea qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x48a5b067 __machine_arch_type +EXPORT_SYMBOL vmlinux 0x48a70ec4 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x48b02ff8 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x48dcaf9f inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0x48f8cd00 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x49107ec1 bcm_dmaman_probe +EXPORT_SYMBOL vmlinux 0x491838f3 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x492048b7 vfs_whiteout +EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x4985d62c ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x499c19cc scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x499cb58c prepare_to_wait +EXPORT_SYMBOL vmlinux 0x499d8955 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49d138d8 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x49d539f6 fput +EXPORT_SYMBOL vmlinux 0x49ebacbd _clear_bit +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x4a1a2b62 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x4a2f48c1 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x4a53464e padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0x4a57b339 wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x4a6402b3 acl_by_type +EXPORT_SYMBOL vmlinux 0x4a939797 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x4ab90009 inc_nlink +EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk +EXPORT_SYMBOL vmlinux 0x4ad2f2d4 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b016880 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x4b2b84f2 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x4b427217 get_io_context +EXPORT_SYMBOL vmlinux 0x4b46a0c2 led_blink_set_oneshot +EXPORT_SYMBOL vmlinux 0x4b48c95b seq_hex_dump +EXPORT_SYMBOL vmlinux 0x4b4ff8ab genphy_config_init +EXPORT_SYMBOL vmlinux 0x4b5366cf down_killable +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b608723 dm_register_target +EXPORT_SYMBOL vmlinux 0x4b9c2e87 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x4bb0778e vm_stat +EXPORT_SYMBOL vmlinux 0x4bba7ddc path_put +EXPORT_SYMBOL vmlinux 0x4bbe8936 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x4bce0f36 gen_pool_create +EXPORT_SYMBOL vmlinux 0x4bcf03a4 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x4be7fb63 up +EXPORT_SYMBOL vmlinux 0x4be85a03 memweight +EXPORT_SYMBOL vmlinux 0x4c19aa08 dwc_cc_match_chid +EXPORT_SYMBOL vmlinux 0x4c21b701 load_nls_default +EXPORT_SYMBOL vmlinux 0x4c233a44 _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0x4c29dcbf cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr +EXPORT_SYMBOL vmlinux 0x4c337122 d_path +EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf +EXPORT_SYMBOL vmlinux 0x4c528c52 noop_qdisc +EXPORT_SYMBOL vmlinux 0x4c591bb0 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x4c5fc58c _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x4c86184b remove_wait_queue +EXPORT_SYMBOL vmlinux 0x4c9b925a dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x4ca48032 security_inode_permission +EXPORT_SYMBOL vmlinux 0x4cae23d2 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x4ccc0e4d netlink_set_err +EXPORT_SYMBOL vmlinux 0x4cdae05a __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4cf6026a adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x4d0b946c mapping_tagged +EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page +EXPORT_SYMBOL vmlinux 0x4d398177 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x4d3ac3b6 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask +EXPORT_SYMBOL vmlinux 0x4d3c7d21 skb_store_bits +EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d536eb8 phy_start +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4d9bccd3 input_register_handler +EXPORT_SYMBOL vmlinux 0x4dbc7a10 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x4dc1e591 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4dec6038 memscan +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4e0912e8 qdisc_list_add +EXPORT_SYMBOL vmlinux 0x4e17ef51 blkdev_put +EXPORT_SYMBOL vmlinux 0x4e1d95da cdev_add +EXPORT_SYMBOL vmlinux 0x4e29e463 blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x4e334f3a gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e39b779 of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x4e5211a4 bdget_disk +EXPORT_SYMBOL vmlinux 0x4e55b262 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x4e661427 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e8cdd63 config_group_find_item +EXPORT_SYMBOL vmlinux 0x4e9164ac inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x4e9a9f81 vchi_bulk_queue_receive +EXPORT_SYMBOL vmlinux 0x4e9de5fd bdi_init +EXPORT_SYMBOL vmlinux 0x4eb4dd41 module_put +EXPORT_SYMBOL vmlinux 0x4ebb274e tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x4ec21e1c DWC_WAITQ_ABORT +EXPORT_SYMBOL vmlinux 0x4ec85fd2 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x4ededd45 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x4eed461c mpage_writepages +EXPORT_SYMBOL vmlinux 0x4ef1f5d5 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x4ef4ce4d tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x4f0c9b2c netlink_unicast +EXPORT_SYMBOL vmlinux 0x4f15b972 dwc_cc_remove +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f2de0ec i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x4f37b102 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x4f6041ef dns_query +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f738728 generic_getxattr +EXPORT_SYMBOL vmlinux 0x4f768a17 poll_initwait +EXPORT_SYMBOL vmlinux 0x4f89b238 inet6_add_offload +EXPORT_SYMBOL vmlinux 0x4f958844 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x4fc6c973 pagecache_write_end +EXPORT_SYMBOL vmlinux 0x4fd950ed dma_contiguous_default_area +EXPORT_SYMBOL vmlinux 0x4fdde075 blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0x4fea8d80 dwc_cc_cdid +EXPORT_SYMBOL vmlinux 0x4ff377f1 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5034c320 of_gpio_simple_xlate +EXPORT_SYMBOL vmlinux 0x504a0155 release_sock +EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x50759d39 passthru_features_check +EXPORT_SYMBOL vmlinux 0x5079d1d4 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x507a6700 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x507aca84 fsnotify_get_group +EXPORT_SYMBOL vmlinux 0x5083323a linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x509817cf vprintk_emit +EXPORT_SYMBOL vmlinux 0x50b66bcb radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x50cbc493 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x50e37133 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x511746c1 dump_fpu +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x511f8f57 xattr_full_name +EXPORT_SYMBOL vmlinux 0x51221c2e inet_frag_kill +EXPORT_SYMBOL vmlinux 0x51550699 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x515a1e6b tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x519415c8 DWC_TASK_ALLOC +EXPORT_SYMBOL vmlinux 0x51966f0a sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x51aa9637 dev_change_carrier +EXPORT_SYMBOL vmlinux 0x51b12cad arp_create +EXPORT_SYMBOL vmlinux 0x51c3da5e dwc_remove_observer +EXPORT_SYMBOL vmlinux 0x51d559d1 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid +EXPORT_SYMBOL vmlinux 0x51e9de1c inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup +EXPORT_SYMBOL vmlinux 0x51f32c69 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x52109f05 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x52116980 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x5253a6c4 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x52665457 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x527ba7bf unregister_cdrom +EXPORT_SYMBOL vmlinux 0x5287b80e generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x528d0c14 idr_init +EXPORT_SYMBOL vmlinux 0x52af562a __crc32c_le +EXPORT_SYMBOL vmlinux 0x52b83674 flush_old_exec +EXPORT_SYMBOL vmlinux 0x52bb841c atomic_io_modify_relaxed +EXPORT_SYMBOL vmlinux 0x52bd3f43 md_cluster_mod +EXPORT_SYMBOL vmlinux 0x52c3de5e d_prune_aliases +EXPORT_SYMBOL vmlinux 0x52e1631d blk_put_request +EXPORT_SYMBOL vmlinux 0x52e67a46 dev_add_pack +EXPORT_SYMBOL vmlinux 0x52ed2533 netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0x52efd766 __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x52fb8ccc sg_miter_skip +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x53296fc9 processor +EXPORT_SYMBOL vmlinux 0x532d9e8e mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x5364566b mb_cache_shrink +EXPORT_SYMBOL vmlinux 0x53752b95 simple_transaction_release +EXPORT_SYMBOL vmlinux 0x53c73bd6 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x53cb7220 padata_do_serial +EXPORT_SYMBOL vmlinux 0x53d92612 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x53ddacdf dquot_destroy +EXPORT_SYMBOL vmlinux 0x53ea7de5 of_phy_connect +EXPORT_SYMBOL vmlinux 0x53f91f29 blk_init_queue_node +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x540a34ea scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x542d9cfc sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x54360cb8 sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x544fec89 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x5456d0b5 __DWC_DMA_FREE +EXPORT_SYMBOL vmlinux 0x547077ec __wake_up_bit +EXPORT_SYMBOL vmlinux 0x54725fe2 vc_cma_size +EXPORT_SYMBOL vmlinux 0x5489aa5d wireless_spy_update +EXPORT_SYMBOL vmlinux 0x548ab4ec key_revoke +EXPORT_SYMBOL vmlinux 0x5492205a tty_port_close_end +EXPORT_SYMBOL vmlinux 0x54ab625c skb_queue_purge +EXPORT_SYMBOL vmlinux 0x54e61ebb iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54eefd3c i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x54f340fc jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x54fbf10d napi_consume_skb +EXPORT_SYMBOL vmlinux 0x55089597 mount_ns +EXPORT_SYMBOL vmlinux 0x550fa704 tty_do_resize +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x5540843d DWC_BE32_TO_CPU +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x55866fd2 d_find_alias +EXPORT_SYMBOL vmlinux 0x55ad1c8d redraw_screen +EXPORT_SYMBOL vmlinux 0x55c8110b ip_defrag +EXPORT_SYMBOL vmlinux 0x55c816d0 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55e1dd12 phy_suspend +EXPORT_SYMBOL vmlinux 0x55e37f42 unregister_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0x55eb0780 cma_get_base +EXPORT_SYMBOL vmlinux 0x561c5978 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x56500ed1 param_ops_int +EXPORT_SYMBOL vmlinux 0x5654a47e posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x56611c7d dev_get_flags +EXPORT_SYMBOL vmlinux 0x5669e9c3 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x566ef7cf d_walk +EXPORT_SYMBOL vmlinux 0x56703b00 fget_raw +EXPORT_SYMBOL vmlinux 0x567c9fdd sock_wake_async +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x56974f31 blk_end_request_all +EXPORT_SYMBOL vmlinux 0x569bfc78 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x56a82704 dwc_cc_clear +EXPORT_SYMBOL vmlinux 0x56c1e955 md_done_sync +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56ca05b2 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x56d3b8c5 replace_mount_options +EXPORT_SYMBOL vmlinux 0x56ed382f stop_tty +EXPORT_SYMBOL vmlinux 0x56f7ec8e xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x571bdca8 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x5734760e vfs_rename +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x574eb6c1 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x575df0e5 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x57711747 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x577c4a40 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x5790a1d1 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x57b157e0 of_node_get +EXPORT_SYMBOL vmlinux 0x57bf8191 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x57c51a6b blk_stack_limits +EXPORT_SYMBOL vmlinux 0x57d17a42 __bread_gfp +EXPORT_SYMBOL vmlinux 0x580859c1 sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x581f8521 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x5824116f vchi_service_create +EXPORT_SYMBOL vmlinux 0x583535ae zpool_register_driver +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x583ec49c clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x583fb8c9 tcf_em_register +EXPORT_SYMBOL vmlinux 0x5851d1dd tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x585e8023 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x58898a91 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x589f2d03 input_open_device +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58bae2f8 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x58bd7d58 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x58d633c7 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x58e26d67 mutex_trylock +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58f58ab0 ip6_frag_match +EXPORT_SYMBOL vmlinux 0x58ff2ce6 check_disk_change +EXPORT_SYMBOL vmlinux 0x59344b65 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x594e1317 __modsi3 +EXPORT_SYMBOL vmlinux 0x59611c5b nobh_writepage +EXPORT_SYMBOL vmlinux 0x598542b2 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x598b2f43 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x598cd828 udp_table +EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x5992ebd5 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x5996fb1a blk_recount_segments +EXPORT_SYMBOL vmlinux 0x59988744 dquot_drop +EXPORT_SYMBOL vmlinux 0x599aa68c netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59abfd0c copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x59bcb93e nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x59bdfbb9 clkdev_add +EXPORT_SYMBOL vmlinux 0x59d29dab v7_flush_kern_dcache_area +EXPORT_SYMBOL vmlinux 0x59d8223a ioport_resource +EXPORT_SYMBOL vmlinux 0x59d953da fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0x59e5070d __do_div64 +EXPORT_SYMBOL vmlinux 0x59f0aab9 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x59f4cce4 phy_find_first +EXPORT_SYMBOL vmlinux 0x5a0481ad mmc_can_discard +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a3582f3 km_new_mapping +EXPORT_SYMBOL vmlinux 0x5a5a94a6 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5a6e1969 simple_write_end +EXPORT_SYMBOL vmlinux 0x5a79ae44 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x5a999662 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x5abdce85 keyring_alloc +EXPORT_SYMBOL vmlinux 0x5ac035e0 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x5ac15bae kstrtou16 +EXPORT_SYMBOL vmlinux 0x5ad19904 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x5ae5be44 lg_lock_init +EXPORT_SYMBOL vmlinux 0x5b04be5a disable_fiq +EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem +EXPORT_SYMBOL vmlinux 0x5b387ad7 user_path_create +EXPORT_SYMBOL vmlinux 0x5b404d6a tcp_ioctl +EXPORT_SYMBOL vmlinux 0x5b5a3e0b mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x5b7feb60 dump_emit +EXPORT_SYMBOL vmlinux 0x5b9e1519 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x5baae926 __init_rwsem +EXPORT_SYMBOL vmlinux 0x5bc8e1cd of_get_min_tck +EXPORT_SYMBOL vmlinux 0x5be1c856 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x5bf4a1eb sg_last +EXPORT_SYMBOL vmlinux 0x5c504015 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x5c651894 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x5c6fb4f8 eth_header_cache +EXPORT_SYMBOL vmlinux 0x5c9284a0 processor_id +EXPORT_SYMBOL vmlinux 0x5c9660fd dst_alloc +EXPORT_SYMBOL vmlinux 0x5cb128c6 lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0x5cc8b6b4 sget_userns +EXPORT_SYMBOL vmlinux 0x5cdcf53a t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cf5ec1c abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0x5d05685a padata_stop +EXPORT_SYMBOL vmlinux 0x5d2f93a0 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x5d49b552 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x5d49efae xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0x5d4ccc72 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x5d4ec288 unlink_framebuffer +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d6188f1 igrab +EXPORT_SYMBOL vmlinux 0x5d695cc0 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x5d7577c2 kthread_stop +EXPORT_SYMBOL vmlinux 0x5d784d44 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x5d9106d6 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x5da7eb83 tty_mutex +EXPORT_SYMBOL vmlinux 0x5daaed6b d_lookup +EXPORT_SYMBOL vmlinux 0x5db83d6a dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x5dc3c335 bdi_register +EXPORT_SYMBOL vmlinux 0x5dc3e4d0 inode_dio_wait +EXPORT_SYMBOL vmlinux 0x5de302f8 blk_free_tags +EXPORT_SYMBOL vmlinux 0x5df1c051 DWC_TIMER_ALLOC +EXPORT_SYMBOL vmlinux 0x5df6a404 mm_vc_mem_size +EXPORT_SYMBOL vmlinux 0x5dfcb993 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x5dfd36c1 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x5e0f0dc9 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x5e30844a submit_bio +EXPORT_SYMBOL vmlinux 0x5e5961a8 dev_get_nest_level +EXPORT_SYMBOL vmlinux 0x5e64a247 generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x5e7d3554 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x5e7e45bd frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x5e844aa6 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5eb41611 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x5eb7c897 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x5eccc509 simple_open +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5efec01f phy_register_fixup +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f1f8a05 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x5f235521 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x5f27323c _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x5f28b3be sock_setsockopt +EXPORT_SYMBOL vmlinux 0x5f362b9f truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x5f5dc639 nvm_register_target +EXPORT_SYMBOL vmlinux 0x5f754e5a memset +EXPORT_SYMBOL vmlinux 0x5f861091 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x5fa562f9 simple_fill_super +EXPORT_SYMBOL vmlinux 0x5fc1b93b abx500_register_ops +EXPORT_SYMBOL vmlinux 0x5fc8de05 generic_mii_ioctl +EXPORT_SYMBOL vmlinux 0x5fd268cb radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x5fd6a108 copy_from_iter +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5fed0480 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x5feebfdd DWC_CPU_TO_BE32 +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x602aaee9 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x6031ef8f jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x60492b80 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x604b803f sock_wfree +EXPORT_SYMBOL vmlinux 0x60581735 lookup_bdev +EXPORT_SYMBOL vmlinux 0x6058c0f1 rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0x606b1d65 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x606d25f4 blk_get_queue +EXPORT_SYMBOL vmlinux 0x606ee874 inet_del_offload +EXPORT_SYMBOL vmlinux 0x607200ec devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x608f15cf fb_set_suspend +EXPORT_SYMBOL vmlinux 0x60909c5d block_invalidatepage +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60aae212 pid_task +EXPORT_SYMBOL vmlinux 0x60b2bb91 address_space_init_once +EXPORT_SYMBOL vmlinux 0x60c91083 get_super_thawed +EXPORT_SYMBOL vmlinux 0x60cbf4dd mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x60d77219 tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x60e011ed configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0x60fb414c skb_tx_error +EXPORT_SYMBOL vmlinux 0x61005462 DWC_VPRINTF +EXPORT_SYMBOL vmlinux 0x61144231 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x61502460 security_path_mknod +EXPORT_SYMBOL vmlinux 0x616eec14 proc_remove +EXPORT_SYMBOL vmlinux 0x61722c25 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x6177bb83 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x6179d739 page_symlink +EXPORT_SYMBOL vmlinux 0x617a218d __cond_resched_lock +EXPORT_SYMBOL vmlinux 0x6184e523 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x618a4e98 filemap_fault +EXPORT_SYMBOL vmlinux 0x61a00a32 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x61b3560c cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61c23a7e dquot_get_state +EXPORT_SYMBOL vmlinux 0x61c2dac6 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x61cc23e2 jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0x61f36b44 bio_flush_dcache_pages +EXPORT_SYMBOL vmlinux 0x61f9a7ba dev_mc_flush +EXPORT_SYMBOL vmlinux 0x620162ea strscpy +EXPORT_SYMBOL vmlinux 0x6201d65f inode_get_bytes +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6220b4a2 crc32_le +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x623de42b dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x6241da01 sync_filesystem +EXPORT_SYMBOL vmlinux 0x626a7018 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x62ac9cf8 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x62bd52a3 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x62c5106e bio_map_kern +EXPORT_SYMBOL vmlinux 0x6305f4f1 dm_put_table_device +EXPORT_SYMBOL vmlinux 0x632d586c __lock_buffer +EXPORT_SYMBOL vmlinux 0x632ea737 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x634ee84a follow_down_one +EXPORT_SYMBOL vmlinux 0x63661bb9 path_get +EXPORT_SYMBOL vmlinux 0x636653d9 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x637b01fa devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x638112c0 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x6381fcec tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x63a0a894 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63af22e8 security_path_link +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63d1fc97 DWC_LE16_TO_CPU +EXPORT_SYMBOL vmlinux 0x63e0056e read_cache_pages +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x641c36e6 register_qdisc +EXPORT_SYMBOL vmlinux 0x642e4428 md_check_recovery +EXPORT_SYMBOL vmlinux 0x6435ba64 devfreq_interval_update +EXPORT_SYMBOL vmlinux 0x6438a111 audit_log_start +EXPORT_SYMBOL vmlinux 0x64689125 __find_get_block +EXPORT_SYMBOL vmlinux 0x646dd709 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x648a213c arm_dma_ops +EXPORT_SYMBOL vmlinux 0x6493afd0 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x649b7599 i2c_use_client +EXPORT_SYMBOL vmlinux 0x64a88abd simple_link +EXPORT_SYMBOL vmlinux 0x64afa1e7 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x64b6a093 __lock_page +EXPORT_SYMBOL vmlinux 0x64baf227 mm_vc_mem_phys_addr +EXPORT_SYMBOL vmlinux 0x64d8766b try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x64df457d i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x650a9487 dwc_cc_chid +EXPORT_SYMBOL vmlinux 0x650e7d3a iterate_supers_type +EXPORT_SYMBOL vmlinux 0x650f4dd0 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x652870c5 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x6543bc62 skb_pad +EXPORT_SYMBOL vmlinux 0x65466939 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x654f116c __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x65562719 netif_rx +EXPORT_SYMBOL vmlinux 0x65603811 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x656072d6 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x658959a9 up_write +EXPORT_SYMBOL vmlinux 0x659e15cf dcache_dir_close +EXPORT_SYMBOL vmlinux 0x65a7d5c4 unregister_key_type +EXPORT_SYMBOL vmlinux 0x65a978d3 configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x65cbecc7 down_write +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65e6b0bd __devm_request_region +EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x66029316 inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0x6610adf9 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x6612429d page_follow_link_light +EXPORT_SYMBOL vmlinux 0x6615f3b7 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x661aaafa jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x6657cb15 proc_set_size +EXPORT_SYMBOL vmlinux 0x66691514 dentry_open +EXPORT_SYMBOL vmlinux 0x66ae8da6 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x66de45db ab3100_event_register +EXPORT_SYMBOL vmlinux 0x66f5b139 scsi_execute +EXPORT_SYMBOL vmlinux 0x66f9b30f dwc_cc_match_cdid +EXPORT_SYMBOL vmlinux 0x670ece22 ata_link_printk +EXPORT_SYMBOL vmlinux 0x671d54f0 vc_cons +EXPORT_SYMBOL vmlinux 0x67243729 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x672c1438 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x6736784e fget +EXPORT_SYMBOL vmlinux 0x6742bf4e blk_queue_split +EXPORT_SYMBOL vmlinux 0x6753c6b8 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x676a6d93 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x676bbc0f _set_bit +EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create +EXPORT_SYMBOL vmlinux 0x67912852 dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0x67ade2c9 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67d6bb0e request_firmware +EXPORT_SYMBOL vmlinux 0x67e02294 kobject_set_name +EXPORT_SYMBOL vmlinux 0x67fa46c0 __kernel_write +EXPORT_SYMBOL vmlinux 0x67fd0f4d empty_aops +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x6815d864 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x68184009 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x681a7535 inet_bind +EXPORT_SYMBOL vmlinux 0x684293e0 get_mm_exe_file +EXPORT_SYMBOL vmlinux 0x684de807 from_kgid +EXPORT_SYMBOL vmlinux 0x686df339 vchi_initialise +EXPORT_SYMBOL vmlinux 0x687846c0 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x68869bae panic_notifier_list +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x68c0befd sock_sendmsg +EXPORT_SYMBOL vmlinux 0x68c44dc4 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x68e72450 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x68f2a18e udp_prot +EXPORT_SYMBOL vmlinux 0x68feb233 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x69aee8d5 param_get_int +EXPORT_SYMBOL vmlinux 0x69b51099 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a04488e param_set_ullong +EXPORT_SYMBOL vmlinux 0x6a240e94 nf_log_unset +EXPORT_SYMBOL vmlinux 0x6a397b6c dump_truncate +EXPORT_SYMBOL vmlinux 0x6a4c294a wait_iff_congested +EXPORT_SYMBOL vmlinux 0x6a5bcd33 scsi_init_io +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a610539 phy_resume +EXPORT_SYMBOL vmlinux 0x6a6afc67 fb_find_mode +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6a97c252 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x6aa13276 key_validate +EXPORT_SYMBOL vmlinux 0x6aa2f849 bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0x6ab99d50 get_empty_filp +EXPORT_SYMBOL vmlinux 0x6ac15084 follow_down +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6ae0c51e ip_options_compile +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6afaea91 d_invalidate +EXPORT_SYMBOL vmlinux 0x6b016d3c udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b4241c6 ilookup +EXPORT_SYMBOL vmlinux 0x6b4d53b2 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x6b5278b9 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x6b66aa8b scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x6b83c0f1 nand_correct_data +EXPORT_SYMBOL vmlinux 0x6bb90f7a vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bcc48c6 ll_rw_block +EXPORT_SYMBOL vmlinux 0x6bd1514a qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x6bd33319 inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0x6bdc136b nand_scan_ident +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6bf0b816 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer +EXPORT_SYMBOL vmlinux 0x6c16185d blk_integrity_register +EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn +EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c6cdd4d wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c788a5b udp_seq_open +EXPORT_SYMBOL vmlinux 0x6c8d8346 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x6c96fa4a skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x6ca9aefa generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x6cb43000 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6ce564b5 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x6d031834 cdev_del +EXPORT_SYMBOL vmlinux 0x6d0394f1 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d1c44dd lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d314008 dquot_acquire +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d34becf neigh_destroy +EXPORT_SYMBOL vmlinux 0x6d51fb26 __DWC_ALLOC_ATOMIC +EXPORT_SYMBOL vmlinux 0x6d662533 _find_first_bit_le +EXPORT_SYMBOL vmlinux 0x6dbe7b77 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x6ddda0e3 nf_log_set +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6df9d97c kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x6e02dd7d keyring_clear +EXPORT_SYMBOL vmlinux 0x6e051383 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x6e06742f mmc_start_bkops +EXPORT_SYMBOL vmlinux 0x6e30f641 phy_print_status +EXPORT_SYMBOL vmlinux 0x6e433bab nobh_write_end +EXPORT_SYMBOL vmlinux 0x6e6514ed radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e72e6fc dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ec9ccdb _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x6ecf8f84 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x6ee4c74c do_splice_to +EXPORT_SYMBOL vmlinux 0x6ef2c50e security_file_permission +EXPORT_SYMBOL vmlinux 0x6f0c806b dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x6f151042 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash +EXPORT_SYMBOL vmlinux 0x6f38bd15 uart_suspend_port +EXPORT_SYMBOL vmlinux 0x6f38be2d swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x6f4a4d26 unlock_rename +EXPORT_SYMBOL vmlinux 0x6f51fcf6 mount_nodev +EXPORT_SYMBOL vmlinux 0x6f672794 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x6f6f6e9d nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x6f74be09 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6f926731 devm_memunmap +EXPORT_SYMBOL vmlinux 0x6f96212c cont_write_begin +EXPORT_SYMBOL vmlinux 0x6fa228dd md_write_end +EXPORT_SYMBOL vmlinux 0x6fb2ee3d xfrm_init_state +EXPORT_SYMBOL vmlinux 0x6fbc9834 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fc55014 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fda1d58 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x6fdd7cf3 override_creds +EXPORT_SYMBOL vmlinux 0x6feddf5d netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x70097847 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x70097aa0 nand_bch_free +EXPORT_SYMBOL vmlinux 0x701a2c48 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x701c5536 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x7033d478 of_iomap +EXPORT_SYMBOL vmlinux 0x703c9ce8 blk_run_queue +EXPORT_SYMBOL vmlinux 0x704143eb xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x705fc448 kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x7062b4cd cmdline_parts_free +EXPORT_SYMBOL vmlinux 0x7068a0f0 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x7081c212 mmc_get_card +EXPORT_SYMBOL vmlinux 0x70c027c8 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x70c789eb register_netdev +EXPORT_SYMBOL vmlinux 0x70cbf9f8 vfs_llseek +EXPORT_SYMBOL vmlinux 0x70d7a74f abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x70db8383 netdev_err +EXPORT_SYMBOL vmlinux 0x70e4e4d5 genlmsg_put +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x70fa740c remap_pfn_range +EXPORT_SYMBOL vmlinux 0x71034fed __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x7104c6a4 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x710a0553 vm_map_ram +EXPORT_SYMBOL vmlinux 0x7122b660 lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x712ed37b radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x7131a442 proto_unregister +EXPORT_SYMBOL vmlinux 0x7151858c unlock_page +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x717a61a5 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71a7ff3e xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x71c43c2c param_array_ops +EXPORT_SYMBOL vmlinux 0x71c54deb phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x71c90087 memcmp +EXPORT_SYMBOL vmlinux 0x71f09a6f scmd_printk +EXPORT_SYMBOL vmlinux 0x71f65175 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x721b1851 skip_spaces +EXPORT_SYMBOL vmlinux 0x72350130 ___ratelimit +EXPORT_SYMBOL vmlinux 0x7254097f __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x725f19d3 bio_clone_fast +EXPORT_SYMBOL vmlinux 0x72725efb vchi_service_set_option +EXPORT_SYMBOL vmlinux 0x728177b3 tcp_prot +EXPORT_SYMBOL vmlinux 0x7289cf47 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x729f8b1b config_item_put +EXPORT_SYMBOL vmlinux 0x72a29e91 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x72bbb263 mii_link_ok +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72f43c71 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x733ab37b __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x7346b52b phy_attach +EXPORT_SYMBOL vmlinux 0x735c97ac tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x736afd60 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x736e7f2d inet_recvmsg +EXPORT_SYMBOL vmlinux 0x736f4ccc amba_driver_unregister +EXPORT_SYMBOL vmlinux 0x738a26ba bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x7396fc7a DWC_WAITQ_ALLOC +EXPORT_SYMBOL vmlinux 0x739c6dea inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x739ddfb9 nvm_get_blk_unlocked +EXPORT_SYMBOL vmlinux 0x739fd699 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x73a1575b __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0x73a5c6e2 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x73b57b54 sock_init_data +EXPORT_SYMBOL vmlinux 0x73b84c04 tty_check_change +EXPORT_SYMBOL vmlinux 0x73be3770 vchi_service_use +EXPORT_SYMBOL vmlinux 0x73c9eb0c mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x73d57191 __napi_schedule +EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy +EXPORT_SYMBOL vmlinux 0x73e7b6e6 should_remove_suid +EXPORT_SYMBOL vmlinux 0x73e92def inet_frags_init +EXPORT_SYMBOL vmlinux 0x73ea71e5 down_read_trylock +EXPORT_SYMBOL vmlinux 0x7401d97e get_phy_device +EXPORT_SYMBOL vmlinux 0x74021449 __inet_hash +EXPORT_SYMBOL vmlinux 0x74099591 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x740b8f9d sock_wmalloc +EXPORT_SYMBOL vmlinux 0x740c3da6 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x740ff221 setattr_copy +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7457cb3e gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x745b544a textsearch_prepare +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c5b3ca set_posix_acl +EXPORT_SYMBOL vmlinux 0x74c927e1 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x74cf6334 do_map_probe +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74ed88b5 DWC_WORKQ_SCHEDULE +EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv +EXPORT_SYMBOL vmlinux 0x751e350b tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x75266083 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x752d5f5b kstrtobool +EXPORT_SYMBOL vmlinux 0x752f46db of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x753e0479 dump_skip +EXPORT_SYMBOL vmlinux 0x754b5f08 tc_classify +EXPORT_SYMBOL vmlinux 0x75564725 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x755a2609 of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x755b63a4 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x7567d381 __get_fiq_regs +EXPORT_SYMBOL vmlinux 0x757ac268 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x758792fc dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 +EXPORT_SYMBOL vmlinux 0x759a6ca3 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x75a39755 mmc_release_host +EXPORT_SYMBOL vmlinux 0x75b7455c input_inject_event +EXPORT_SYMBOL vmlinux 0x75b88f2d nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75d6401c md_write_start +EXPORT_SYMBOL vmlinux 0x75e3ea02 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x75f033be do_SAK +EXPORT_SYMBOL vmlinux 0x75fd1b16 nvm_dev_factory +EXPORT_SYMBOL vmlinux 0x75ffafc3 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x76161d50 skb_put +EXPORT_SYMBOL vmlinux 0x76202709 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x76301ac0 prepare_binprm +EXPORT_SYMBOL vmlinux 0x76332db5 phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0x7639905c blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764aa740 bitmap_unplug +EXPORT_SYMBOL vmlinux 0x769929c1 tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0x76ae215a __nla_reserve +EXPORT_SYMBOL vmlinux 0x76bc29d5 kernel_bind +EXPORT_SYMBOL vmlinux 0x76c13958 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x76cf47f6 __aeabi_llsl +EXPORT_SYMBOL vmlinux 0x76d29e7d amba_find_device +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76d9bf11 crc32_be +EXPORT_SYMBOL vmlinux 0x76f6c5ef kmalloc_order +EXPORT_SYMBOL vmlinux 0x770cda77 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x772519be gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x775a8ce8 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x775b5cb8 input_allocate_device +EXPORT_SYMBOL vmlinux 0x775eddf4 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x77608e4e sock_no_accept +EXPORT_SYMBOL vmlinux 0x77756fc6 inet_release +EXPORT_SYMBOL vmlinux 0x777bb704 fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0x7786dd91 posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x77a15211 loop_register_transfer +EXPORT_SYMBOL vmlinux 0x77a9bf0c tcp_child_process +EXPORT_SYMBOL vmlinux 0x77b7e8be force_sig +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77be79da nvm_register +EXPORT_SYMBOL vmlinux 0x77caad77 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x77cc264a blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x77fa1a63 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x78039194 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x7810a88b fence_signal_locked +EXPORT_SYMBOL vmlinux 0x782567ec memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x782808c7 sk_capable +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x78779c0b set_fiq_handler +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x788fe103 iomem_resource +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78b73dfe genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x78b8a798 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x78b8e395 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x78e58942 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x78fd4e80 dwc_cc_name +EXPORT_SYMBOL vmlinux 0x790c5144 dma_release_from_coherent +EXPORT_SYMBOL vmlinux 0x7920744f skb_queue_tail +EXPORT_SYMBOL vmlinux 0x7922949f loop_backing_file +EXPORT_SYMBOL vmlinux 0x79275ff1 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x792a27d9 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x79481255 netdev_notice +EXPORT_SYMBOL vmlinux 0x7952f84d hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x795c2a6d input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x7974a0cd of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x798b9d4b jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x799e58ed eth_header +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79bbec51 skb_checksum +EXPORT_SYMBOL vmlinux 0x79c5a9f0 ioremap +EXPORT_SYMBOL vmlinux 0x79e36ef1 sock_no_poll +EXPORT_SYMBOL vmlinux 0x7a099060 misc_register +EXPORT_SYMBOL vmlinux 0x7a2add7d current_kernel_time64 +EXPORT_SYMBOL vmlinux 0x7a2d228c vmap +EXPORT_SYMBOL vmlinux 0x7a38455d ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a6a8a2b qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x7a93bf38 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a9ae5d9 dma_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7abde2b0 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ae93b32 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x7af67e7e ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf +EXPORT_SYMBOL vmlinux 0x7b11624e dev_alert +EXPORT_SYMBOL vmlinux 0x7b137152 abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b1ade38 lz4_decompress +EXPORT_SYMBOL vmlinux 0x7b222853 make_kuid +EXPORT_SYMBOL vmlinux 0x7b23697a __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x7b289e95 skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0x7b2d975f swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap +EXPORT_SYMBOL vmlinux 0x7b8fc491 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x7ba5f4e9 usbnet_device_suggests_idle +EXPORT_SYMBOL vmlinux 0x7ba9e62e get_disk +EXPORT_SYMBOL vmlinux 0x7bc683e7 security_path_symlink +EXPORT_SYMBOL vmlinux 0x7bd6acb6 posix_lock_file +EXPORT_SYMBOL vmlinux 0x7bd9780e tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x7be0177f dev_get_by_index +EXPORT_SYMBOL vmlinux 0x7be36cbb forget_cached_acl +EXPORT_SYMBOL vmlinux 0x7be76173 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x7be954a3 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c3211f7 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x7c33bef2 dev_uc_init +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c6a6acb xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7c9dff7c blk_fetch_request +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cc015dd bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x7cc035a7 __ucmpdi2 +EXPORT_SYMBOL vmlinux 0x7ccfe076 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x7cd39b2d inode_init_owner +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7cf1220a tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d25041a sk_reset_timer +EXPORT_SYMBOL vmlinux 0x7d32e911 __kfree_skb +EXPORT_SYMBOL vmlinux 0x7d376e07 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x7d3e4eee sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x7d4c60fd mmc_put_card +EXPORT_SYMBOL vmlinux 0x7d6d6ff8 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d75f40f __ip_dev_find +EXPORT_SYMBOL vmlinux 0x7d911a36 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x7da2e043 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x7dccc294 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x7dd52899 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x7de413c1 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7dfe6cf8 elevator_change +EXPORT_SYMBOL vmlinux 0x7e2dd311 configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0x7e328fb8 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x7e514e1a xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x7e6fa3ef tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0x7e737561 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x7e9efe8e complete_and_exit +EXPORT_SYMBOL vmlinux 0x7ea8479e bio_add_page +EXPORT_SYMBOL vmlinux 0x7ebcf663 dwc_notify +EXPORT_SYMBOL vmlinux 0x7ecd82fa udp6_set_csum +EXPORT_SYMBOL vmlinux 0x7ed1c231 arp_tbl +EXPORT_SYMBOL vmlinux 0x7ee05e53 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7ee73c0c memcg_socket_limit_enabled +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f0eb3f1 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f5a2c71 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x7f5feaf7 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f63b31e _memcpy_toio +EXPORT_SYMBOL vmlinux 0x7f739c8f input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x7fb567fc nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0x7fba087c kfree_skb_list +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x800e4ffa __muldi3 +EXPORT_SYMBOL vmlinux 0x802ac446 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x803ed7e1 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x80414631 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x8042661a __quota_error +EXPORT_SYMBOL vmlinux 0x804aabdf idr_is_empty +EXPORT_SYMBOL vmlinux 0x805b6f1a ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x80754b65 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x808a736c register_quota_format +EXPORT_SYMBOL vmlinux 0x808ff775 simple_getattr +EXPORT_SYMBOL vmlinux 0x809bbf99 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x80b12567 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x80c3b2ac xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80d7c68a DWC_MUTEX_LOCK +EXPORT_SYMBOL vmlinux 0x80db57c2 d_delete +EXPORT_SYMBOL vmlinux 0x80df167e ether_setup +EXPORT_SYMBOL vmlinux 0x80df7f97 arm_clear_user +EXPORT_SYMBOL vmlinux 0x810632ae md_reload_sb +EXPORT_SYMBOL vmlinux 0x812f3425 qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x81565eda max8998_update_reg +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x817668a0 bdev_read_only +EXPORT_SYMBOL vmlinux 0x817c1cd4 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x8182aaa0 netdev_printk +EXPORT_SYMBOL vmlinux 0x818ec4a2 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x81b322b3 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e0f313 DWC_CPU_TO_LE16 +EXPORT_SYMBOL vmlinux 0x81e48efa nonseekable_open +EXPORT_SYMBOL vmlinux 0x81f8d7b8 blk_peek_request +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x820da201 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x821b7d94 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x822b4173 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x824a4367 tmio_core_mmc_pwr +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x828d77a4 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x829d5a43 simple_lookup +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82ba8888 nand_scan_bbt +EXPORT_SYMBOL vmlinux 0x82c051cb devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x82c4a894 freeze_bdev +EXPORT_SYMBOL vmlinux 0x82d66d33 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x82e8c5e6 dentry_update_name_case +EXPORT_SYMBOL vmlinux 0x82fdb7b0 free_user_ns +EXPORT_SYMBOL vmlinux 0x831396c3 fence_signal +EXPORT_SYMBOL vmlinux 0x8320bea8 __umodsi3 +EXPORT_SYMBOL vmlinux 0x83252788 noop_fsync +EXPORT_SYMBOL vmlinux 0x832fa791 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x8333348f input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x834184ea sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x8359f292 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x8372cd2f __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x8375d79d ida_destroy +EXPORT_SYMBOL vmlinux 0x837d0f0a down_timeout +EXPORT_SYMBOL vmlinux 0x83870ad3 revert_creds +EXPORT_SYMBOL vmlinux 0x838a0126 blk_start_request +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x83a3d25f get_gendisk +EXPORT_SYMBOL vmlinux 0x83a77a91 of_root +EXPORT_SYMBOL vmlinux 0x83ada47b dma_alloc_from_coherent +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83b192ef vchi_disconnect +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83ca18c6 md_error +EXPORT_SYMBOL vmlinux 0x83ee3cc9 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x84101bfd blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x84483bbf dquot_disable +EXPORT_SYMBOL vmlinux 0x846d4168 of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x84b183ae strncmp +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x850a6800 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x8525e09f in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x8562a73f of_mm_gpiochip_add +EXPORT_SYMBOL vmlinux 0x85669342 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x8566ff64 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x8574b413 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x857e380d blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85d4831a init_net +EXPORT_SYMBOL vmlinux 0x85df60ce fifo_set_limit +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85ee0d9a amba_release_regions +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85faa113 locks_remove_posix +EXPORT_SYMBOL vmlinux 0x85ffcfc5 elv_rb_del +EXPORT_SYMBOL vmlinux 0x8617c599 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x86182550 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x8624ccd7 set_wb_congested +EXPORT_SYMBOL vmlinux 0x86399e41 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x864e8b47 scsi_register +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x86632789 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x866e80e1 fsnotify_put_group +EXPORT_SYMBOL vmlinux 0x866fcb18 load_nls +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x8693be7c blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86a4889a kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x86a821e7 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x86cbe0a6 dev_change_flags +EXPORT_SYMBOL vmlinux 0x86f61ddf vfs_write +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x87003790 fence_init +EXPORT_SYMBOL vmlinux 0x870fe7fe from_kprojid +EXPORT_SYMBOL vmlinux 0x871781d5 lro_flush_all +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x875ab1cf scsi_host_put +EXPORT_SYMBOL vmlinux 0x875ac753 misc_deregister +EXPORT_SYMBOL vmlinux 0x876513e0 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x877340dc flow_cache_lookup +EXPORT_SYMBOL vmlinux 0x87780deb blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0x877f5d43 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x8783c29a deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x87925ca6 kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x87ac11d6 kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x87b5629c __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x87de78a0 dwc_cc_change +EXPORT_SYMBOL vmlinux 0x87eb6f4d inet_sendpage +EXPORT_SYMBOL vmlinux 0x88099598 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x88123545 seq_read +EXPORT_SYMBOL vmlinux 0x881fc088 abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x8825ddd1 padata_start +EXPORT_SYMBOL vmlinux 0x8842a1e3 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x884f204a read_dev_sector +EXPORT_SYMBOL vmlinux 0x885322a9 km_query +EXPORT_SYMBOL vmlinux 0x885f77a6 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x886bc76f mempool_resize +EXPORT_SYMBOL vmlinux 0x8877dc32 write_one_page +EXPORT_SYMBOL vmlinux 0x8878fd7b d_drop +EXPORT_SYMBOL vmlinux 0x88a23d41 swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0x88b19f45 system_serial +EXPORT_SYMBOL vmlinux 0x88b64859 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x88f6a304 __DWC_FREE +EXPORT_SYMBOL vmlinux 0x88fb94ff udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x89289db3 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x8932fbbd of_get_property +EXPORT_SYMBOL vmlinux 0x89339067 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x8958404b vchiq_open_service +EXPORT_SYMBOL vmlinux 0x8976bf56 __d_drop +EXPORT_SYMBOL vmlinux 0x897f9d4d udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x898c6906 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x89a36cfe lease_modify +EXPORT_SYMBOL vmlinux 0x89b0af3c vlan_vid_add +EXPORT_SYMBOL vmlinux 0x89ca47bf kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89d8cabd simple_dname +EXPORT_SYMBOL vmlinux 0x8a0f4230 rename_lock +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a24fb13 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a4fa83b __aeabi_llsr +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a51ee30 iterate_dir +EXPORT_SYMBOL vmlinux 0x8a6e1a9b filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x8a76ff9e dev_mc_init +EXPORT_SYMBOL vmlinux 0x8a7b59cb generic_file_llseek +EXPORT_SYMBOL vmlinux 0x8a7c8d2c generic_start_io_acct +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a888e9d genphy_read_status +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aab533a genphy_suspend +EXPORT_SYMBOL vmlinux 0x8ab0c316 update_devfreq +EXPORT_SYMBOL vmlinux 0x8ac1a672 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x8ac6c8e4 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x8ae349b4 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x8af1fc12 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x8af7ad8d nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0x8b08cb67 netdev_warn +EXPORT_SYMBOL vmlinux 0x8b1663f3 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b52ffd1 param_ops_short +EXPORT_SYMBOL vmlinux 0x8b5abec2 cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x8b5e7095 tty_throttle +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b71be97 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x8b7760bd xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b85bd3b mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x8b9455e5 bdi_destroy +EXPORT_SYMBOL vmlinux 0x8b9c1e9c lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0x8bc970ee jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x8bf7c1fd simple_nosetlease +EXPORT_SYMBOL vmlinux 0x8c0ff262 input_set_keycode +EXPORT_SYMBOL vmlinux 0x8c2d1bbb tcp_release_cb +EXPORT_SYMBOL vmlinux 0x8c4d6b50 fd_install +EXPORT_SYMBOL vmlinux 0x8c523421 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x8c55548f is_bad_inode +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c69b63b ihold +EXPORT_SYMBOL vmlinux 0x8c719003 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x8c763547 sk_common_release +EXPORT_SYMBOL vmlinux 0x8c79c61c md_unregister_thread +EXPORT_SYMBOL vmlinux 0x8cad56ae sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x8cc6ae1f udp_proc_register +EXPORT_SYMBOL vmlinux 0x8ce3d266 tcp_proto_cgroup +EXPORT_SYMBOL vmlinux 0x8cf2ee12 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x8cf74a82 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x8cf8eec6 search_binary_handler +EXPORT_SYMBOL vmlinux 0x8cfcf75c nand_flash_ids +EXPORT_SYMBOL vmlinux 0x8d134c39 idr_replace +EXPORT_SYMBOL vmlinux 0x8d3e53fe udp_add_offload +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d62e403 dma_pool_create +EXPORT_SYMBOL vmlinux 0x8d6b2ce1 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x8d6edeb2 kernel_read +EXPORT_SYMBOL vmlinux 0x8d6f81b4 __div64_32 +EXPORT_SYMBOL vmlinux 0x8d72495b __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d7dc7a8 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x8d8b6353 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x8d9963e3 __blk_end_request +EXPORT_SYMBOL vmlinux 0x8d99acdc drop_nlink +EXPORT_SYMBOL vmlinux 0x8d9ce7ac netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x8dc70165 __sg_free_table +EXPORT_SYMBOL vmlinux 0x8dcff6e2 __pv_offset +EXPORT_SYMBOL vmlinux 0x8dd1c7d5 iget5_locked +EXPORT_SYMBOL vmlinux 0x8e03f8cc pneigh_lookup +EXPORT_SYMBOL vmlinux 0x8e279e7b __ps2_command +EXPORT_SYMBOL vmlinux 0x8e473c5b __sb_end_write +EXPORT_SYMBOL vmlinux 0x8e47ea28 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x8e681678 sock_no_getname +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e7c5536 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x8e865d3c arm_delay_ops +EXPORT_SYMBOL vmlinux 0x8e9e0816 d_add_ci +EXPORT_SYMBOL vmlinux 0x8ea0b7d5 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x8eaf51f5 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x8eb6d90c scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x8eb77e8b netif_rx_ni +EXPORT_SYMBOL vmlinux 0x8ebb4eb9 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x8ec0c47e skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x8ec32d76 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL vmlinux 0x8f12f97b serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x8f27403e devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x8f3b2c96 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x8f45efba udp_set_csum +EXPORT_SYMBOL vmlinux 0x8f5ae0d8 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x8f678b07 __stack_chk_guard +EXPORT_SYMBOL vmlinux 0x8f6d335d max8998_read_reg +EXPORT_SYMBOL vmlinux 0x8faafe7c ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x8fc5385f mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin +EXPORT_SYMBOL vmlinux 0x8fd1a60e register_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0x8ff9a5fa blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 +EXPORT_SYMBOL vmlinux 0x900bcf99 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x901a6952 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x902c2217 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x90396a3b gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x90500333 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x905737c2 generic_file_open +EXPORT_SYMBOL vmlinux 0x905b4f7e sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x9066ce6e devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0x907a6f27 devm_gpio_free +EXPORT_SYMBOL vmlinux 0x907df321 fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0x90932828 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x90a6ea80 DWC_IN_BH +EXPORT_SYMBOL vmlinux 0x910f7e1f ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x911c9761 param_get_long +EXPORT_SYMBOL vmlinux 0x912829cf invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x9147e343 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x91621d6a allocate_resource +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x919029aa __readwrite_bug +EXPORT_SYMBOL vmlinux 0x9194f21a generic_block_bmap +EXPORT_SYMBOL vmlinux 0x91a76870 dmam_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0x91b461bb nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x91e634f2 bio_integrity_advance +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x91fd65fb xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x92384a60 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x924f25e5 __DWC_DMA_ALLOC_ATOMIC +EXPORT_SYMBOL vmlinux 0x926add63 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x9270dccb padata_alloc +EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm +EXPORT_SYMBOL vmlinux 0x92c4e62e netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x92cd1dff inetdev_by_index +EXPORT_SYMBOL vmlinux 0x92d38110 sk_free +EXPORT_SYMBOL vmlinux 0x92fdd22b ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x932b9ca1 vchiq_queue_bulk_transmit +EXPORT_SYMBOL vmlinux 0x93485c1d tcp_seq_open +EXPORT_SYMBOL vmlinux 0x93546446 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x9368f823 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x93903b1b dev_mc_add +EXPORT_SYMBOL vmlinux 0x939f323a i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93b54906 bdevname +EXPORT_SYMBOL vmlinux 0x93d65127 inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0x93d6edd3 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x93e082fd tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x93f22ffc __register_binfmt +EXPORT_SYMBOL vmlinux 0x93f715c4 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x93fe5bb5 dwc_cc_data_for_save +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x940476a6 tcp_connect +EXPORT_SYMBOL vmlinux 0x940f9cf6 kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x94123a46 dquot_alloc +EXPORT_SYMBOL vmlinux 0x941c51bf no_llseek +EXPORT_SYMBOL vmlinux 0x942c52e6 rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0x942fdd28 dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x943f855a xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x94450fc3 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x94481958 __seq_open_private +EXPORT_SYMBOL vmlinux 0x94535fd6 vchiq_bulk_transmit +EXPORT_SYMBOL vmlinux 0x946ad496 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x946efbfa __wait_on_bit +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94a54e0b d_set_fallthru +EXPORT_SYMBOL vmlinux 0x94ce9b6e mfd_add_devices +EXPORT_SYMBOL vmlinux 0x94d3da68 rtc_lock +EXPORT_SYMBOL vmlinux 0x94d40a0d tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x94eea794 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x9508fad5 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x951a2a0e nand_calculate_ecc +EXPORT_SYMBOL vmlinux 0x952a5819 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x95351fc5 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x954a5a15 tcp_parse_options +EXPORT_SYMBOL vmlinux 0x9557503c __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x9557f7a6 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x956ab227 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x956b029f clear_wb_congested +EXPORT_SYMBOL vmlinux 0x95706964 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x95797115 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x9591651c get_tz_trend +EXPORT_SYMBOL vmlinux 0x9596fbac mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x959fd8a7 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x95aee8b7 scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0x95c3192f blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x95d838cb skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x95dbe078 __get_user_2 +EXPORT_SYMBOL vmlinux 0x9609a631 tty_lock +EXPORT_SYMBOL vmlinux 0x960dfaf5 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x9622c986 vfs_getxattr_alloc +EXPORT_SYMBOL vmlinux 0x9654fa82 bh_submit_read +EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x966852e9 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x966a0d7d md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x96712e68 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x96757d70 DWC_SPINUNLOCK +EXPORT_SYMBOL vmlinux 0x96882fca param_get_invbool +EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d7ec12 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x96dce98c resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x96eed27d bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x970e8db6 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x97255bdf strlen +EXPORT_SYMBOL vmlinux 0x97312899 register_netdevice +EXPORT_SYMBOL vmlinux 0x973d0f9e kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x974501cf vchi_msg_hold +EXPORT_SYMBOL vmlinux 0x974ed012 of_phy_attach +EXPORT_SYMBOL vmlinux 0x97532703 d_rehash +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x9769d65a mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97a4130d skb_checksum_help +EXPORT_SYMBOL vmlinux 0x97bcc46f dev_deactivate +EXPORT_SYMBOL vmlinux 0x97d9539f vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x97e55d11 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x97f33ce4 kern_path_create +EXPORT_SYMBOL vmlinux 0x9814c7a5 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x9818b874 DWC_CPU_TO_BE16 +EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint +EXPORT_SYMBOL vmlinux 0x983c4113 nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0x98417aea tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x98617ad7 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x986c5b3e nla_append +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x98781f09 mpage_readpage +EXPORT_SYMBOL vmlinux 0x987c11c7 __pv_phys_pfn_offset +EXPORT_SYMBOL vmlinux 0x98c5eca8 mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0x98cae5e2 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x98d9bf13 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x98e68eca cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x98f36fa2 cma_get_size +EXPORT_SYMBOL vmlinux 0x98fd39ef generic_removexattr +EXPORT_SYMBOL vmlinux 0x99028c70 vchi_msg_remove +EXPORT_SYMBOL vmlinux 0x990c4fc7 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x990cb22d tcp_make_synack +EXPORT_SYMBOL vmlinux 0x99101487 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0x991aa29e twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x991da856 configfs_depend_item +EXPORT_SYMBOL vmlinux 0x99281722 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x9951c38b cap_mmap_file +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x996a7a65 blkdev_get +EXPORT_SYMBOL vmlinux 0x996bdb64 _kstrtoul +EXPORT_SYMBOL vmlinux 0x996c4d30 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99af9731 do_splice_direct +EXPORT_SYMBOL vmlinux 0x99bb8806 memmove +EXPORT_SYMBOL vmlinux 0x99cb1999 install_exec_creds +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x99d15822 blk_init_tags +EXPORT_SYMBOL vmlinux 0x99dfd818 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x99f58330 lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x9a031539 check_disk_size_change +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a3f6117 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x9a4f915e jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x9a5f9ef1 clkdev_alloc +EXPORT_SYMBOL vmlinux 0x9a623142 ida_get_new_above +EXPORT_SYMBOL vmlinux 0x9a70211c tcp_disconnect +EXPORT_SYMBOL vmlinux 0x9a74417e kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x9a79e618 path_is_under +EXPORT_SYMBOL vmlinux 0x9a7ae481 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x9a8318ef v7_coherent_kern_range +EXPORT_SYMBOL vmlinux 0x9a90af07 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x9aa037a1 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x9aadc377 bioset_integrity_free +EXPORT_SYMBOL vmlinux 0x9aba4664 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x9ac29d4f skb_free_datagram +EXPORT_SYMBOL vmlinux 0x9ae28173 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x9b016111 d_alloc +EXPORT_SYMBOL vmlinux 0x9b128c37 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x9b2f705a vfs_readv +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b3d67e5 param_ops_bool +EXPORT_SYMBOL vmlinux 0x9b45b268 lock_sock_fast +EXPORT_SYMBOL vmlinux 0x9b56435b mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x9b572907 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize +EXPORT_SYMBOL vmlinux 0x9b8b31d8 console_start +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9bb15146 of_mdio_parse_addr +EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put +EXPORT_SYMBOL vmlinux 0x9bce482f __release_region +EXPORT_SYMBOL vmlinux 0x9bd40fb8 simple_setattr +EXPORT_SYMBOL vmlinux 0x9be5ecf0 inet_addr_type +EXPORT_SYMBOL vmlinux 0x9be726d5 reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9c0bd51f _raw_spin_lock +EXPORT_SYMBOL vmlinux 0x9c0c0e91 block_write_end +EXPORT_SYMBOL vmlinux 0x9c14394c DWC_TASK_FREE +EXPORT_SYMBOL vmlinux 0x9c152655 cdev_alloc +EXPORT_SYMBOL vmlinux 0x9c1cafd1 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x9c444aa3 md_register_thread +EXPORT_SYMBOL vmlinux 0x9c48c639 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x9c682040 input_close_device +EXPORT_SYMBOL vmlinux 0x9c84ecb9 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x9c94df9e free_page_put_link +EXPORT_SYMBOL vmlinux 0x9c9a6f91 nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0x9c9a98aa DWC_MEMCPY +EXPORT_SYMBOL vmlinux 0x9c9ec2a0 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x9ca2d725 xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cba3c37 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x9ccd4d1e netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x9cd60539 sg_free_table +EXPORT_SYMBOL vmlinux 0x9ce2b21d memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x9d05c54f mtd_concat_destroy +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d1b62e1 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x9d32f45b serio_interrupt +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d669763 memcpy +EXPORT_SYMBOL vmlinux 0x9db7fdb7 devm_gpiod_get +EXPORT_SYMBOL vmlinux 0x9dbfd48d iget_failed +EXPORT_SYMBOL vmlinux 0x9dd9de1f mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x9dfe7307 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e1fb0fe blk_rq_init +EXPORT_SYMBOL vmlinux 0x9e22097a fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x9e3682fd DWC_MDELAY +EXPORT_SYMBOL vmlinux 0x9e4f71e5 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e72659e elv_rb_add +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e8e2e0e ata_port_printk +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ef23c38 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x9f0081a5 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x9f235dcf bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x9f2e2d72 poll_freewait +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f660e3e __free_pages +EXPORT_SYMBOL vmlinux 0x9f68a0d4 page_waitqueue +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fab625c input_get_keycode +EXPORT_SYMBOL vmlinux 0x9fad67dc jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x9fda739a dmam_pool_create +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9ff759cb migrate_page +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa008bdb7 input_event +EXPORT_SYMBOL vmlinux 0xa00d73b6 save_mount_options +EXPORT_SYMBOL vmlinux 0xa00e50a1 simple_rmdir +EXPORT_SYMBOL vmlinux 0xa00eb15b ioremap_page +EXPORT_SYMBOL vmlinux 0xa019e1cf bdput +EXPORT_SYMBOL vmlinux 0xa026c253 generic_write_checks +EXPORT_SYMBOL vmlinux 0xa02e8494 phy_stop +EXPORT_SYMBOL vmlinux 0xa036fb09 from_kuid_munged +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa05f2429 devfreq_add_device +EXPORT_SYMBOL vmlinux 0xa0679a78 napi_complete_done +EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa082d5e1 phy_drivers_register +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa08c1135 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xa09b17a9 twl6040_power +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0d07126 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0xa0d360ac find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xa0dad532 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa11ec2c9 __register_chrdev +EXPORT_SYMBOL vmlinux 0xa11ff4f0 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa1230ab3 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0xa1366259 sk_stop_timer +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts +EXPORT_SYMBOL vmlinux 0xa14c1b1c pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0xa14cf753 block_truncate_page +EXPORT_SYMBOL vmlinux 0xa165aea3 vchi_msg_queuev +EXPORT_SYMBOL vmlinux 0xa167f82e mmc_power_save_host +EXPORT_SYMBOL vmlinux 0xa17a19e3 scsi_print_command +EXPORT_SYMBOL vmlinux 0xa18a741c ip_do_fragment +EXPORT_SYMBOL vmlinux 0xa192813b idr_for_each +EXPORT_SYMBOL vmlinux 0xa192f79a xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xa1a4bd09 __scsi_add_device +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1c1f137 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0xa1c57e88 lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0xa1c75ca2 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1d55e90 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1ea960c tty_set_operations +EXPORT_SYMBOL vmlinux 0xa1f0ebea bit_waitqueue +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa2216296 generic_delete_inode +EXPORT_SYMBOL vmlinux 0xa22ada3b jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0xa22bac31 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xa22e9df3 vchiq_add_connected_callback +EXPORT_SYMBOL vmlinux 0xa23f99ac cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xa24cdcf5 abx500_remove_ops +EXPORT_SYMBOL vmlinux 0xa2687fcb tty_unregister_device +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa2a33358 dev_set_mtu +EXPORT_SYMBOL vmlinux 0xa2aadad8 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0xa2ad9392 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xa2bd96a3 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xa2cc8c07 finish_no_open +EXPORT_SYMBOL vmlinux 0xa2e868dc dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xa2f3c3ce security_inode_readlink +EXPORT_SYMBOL vmlinux 0xa325b07b seq_release +EXPORT_SYMBOL vmlinux 0xa336feb7 nand_manuf_ids +EXPORT_SYMBOL vmlinux 0xa33c23f7 sk_stream_error +EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get +EXPORT_SYMBOL vmlinux 0xa3818736 simple_release_fs +EXPORT_SYMBOL vmlinux 0xa381944f dql_reset +EXPORT_SYMBOL vmlinux 0xa39a123a fence_add_callback +EXPORT_SYMBOL vmlinux 0xa3ae4cf7 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xa3ba5605 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xa3fa70d4 file_open_root +EXPORT_SYMBOL vmlinux 0xa3fe7300 vfs_fsync +EXPORT_SYMBOL vmlinux 0xa410ac00 tty_port_destroy +EXPORT_SYMBOL vmlinux 0xa412ac73 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xa414882d add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xa417ff86 udp_disconnect +EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf +EXPORT_SYMBOL vmlinux 0xa4502e59 mmc_fixup_device +EXPORT_SYMBOL vmlinux 0xa46445fc __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0xa468af22 generic_permission +EXPORT_SYMBOL vmlinux 0xa469a139 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xa46f2f1b kstrtouint +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa475a32b remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xa4921214 poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0xa4b4874f input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0xa4d3b37c iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0xa4fa29d5 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0xa52d4457 add_disk +EXPORT_SYMBOL vmlinux 0xa53a4610 register_key_type +EXPORT_SYMBOL vmlinux 0xa53b9c40 devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa55c3f94 __break_lease +EXPORT_SYMBOL vmlinux 0xa58fea9d mempool_destroy +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa5afb135 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xa5cef8ad release_resource +EXPORT_SYMBOL vmlinux 0xa6040e1f fb_prepare_logo +EXPORT_SYMBOL vmlinux 0xa608d214 of_translate_address +EXPORT_SYMBOL vmlinux 0xa629bf54 of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember +EXPORT_SYMBOL vmlinux 0xa6415b64 give_up_console +EXPORT_SYMBOL vmlinux 0xa6493f9e skb_queue_head +EXPORT_SYMBOL vmlinux 0xa650f919 lwtunnel_input +EXPORT_SYMBOL vmlinux 0xa658e085 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0xa66340c8 framebuffer_release +EXPORT_SYMBOL vmlinux 0xa66a4082 bitmap_startwrite +EXPORT_SYMBOL vmlinux 0xa66fb5bf seq_pad +EXPORT_SYMBOL vmlinux 0xa67374f0 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa6bab23d dqstats +EXPORT_SYMBOL vmlinux 0xa6c0125e tty_register_driver +EXPORT_SYMBOL vmlinux 0xa6c2b8ea iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0xa6cc393e mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0xa6ce1138 lock_sock_nested +EXPORT_SYMBOL vmlinux 0xa6f0008d km_report +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa7291332 fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0xa734a3e9 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa74e4ef7 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0xa7625616 bio_copy_kern +EXPORT_SYMBOL vmlinux 0xa773d4d2 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xa77d88f6 strnlen_user +EXPORT_SYMBOL vmlinux 0xa7800f19 kobject_del +EXPORT_SYMBOL vmlinux 0xa797e318 phy_detach +EXPORT_SYMBOL vmlinux 0xa7993d9e blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0xa7b52c45 DWC_MUTEX_UNLOCK +EXPORT_SYMBOL vmlinux 0xa7cf8af5 blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0xa7da4f68 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0xa7de7c39 fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0xa7fa1a09 module_refcount +EXPORT_SYMBOL vmlinux 0xa81888b9 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa84e4da5 setup_new_exec +EXPORT_SYMBOL vmlinux 0xa84ecefc mdiobus_write +EXPORT_SYMBOL vmlinux 0xa86071a9 __napi_complete +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa8919fbd tcf_action_exec +EXPORT_SYMBOL vmlinux 0xa89f64cf tcf_hash_insert +EXPORT_SYMBOL vmlinux 0xa8a6cbfd tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end +EXPORT_SYMBOL vmlinux 0xa8b5eb14 reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0xa8c416ac unregister_binfmt +EXPORT_SYMBOL vmlinux 0xa8d67e12 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa9005b46 phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0xa90297a8 vchiq_connect +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa91bbf81 __blk_run_queue +EXPORT_SYMBOL vmlinux 0xa93c63cd DWC_TIMER_CANCEL +EXPORT_SYMBOL vmlinux 0xa93dea0a generic_readlink +EXPORT_SYMBOL vmlinux 0xa93eb517 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xa9464239 phy_start_interrupts +EXPORT_SYMBOL vmlinux 0xa949cc46 vchi_service_destroy +EXPORT_SYMBOL vmlinux 0xa9526b2a atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xa95e928a mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa99e8e24 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0xa9ac17ad led_set_brightness +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9d2f3f7 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xa9d94f88 nvm_register_mgr +EXPORT_SYMBOL vmlinux 0xa9ee0093 elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0xa9f28f4a fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xaa0297f7 page_readlink +EXPORT_SYMBOL vmlinux 0xaa2c7445 vfs_iter_write +EXPORT_SYMBOL vmlinux 0xaa4362f5 ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0xaa4a7797 hex2bin +EXPORT_SYMBOL vmlinux 0xaa5927f9 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0xaa62c0e9 mmc_can_reset +EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa760a6e sock_no_connect +EXPORT_SYMBOL vmlinux 0xaa88554e netlink_broadcast +EXPORT_SYMBOL vmlinux 0xaa9fecd3 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xaabe9c16 tcp_poll +EXPORT_SYMBOL vmlinux 0xaabfe99b sk_mc_loop +EXPORT_SYMBOL vmlinux 0xaac0b43b genl_notify +EXPORT_SYMBOL vmlinux 0xaac44b7a __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaaf73583 vfs_getattr +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab17e4f3 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xab280222 param_ops_ullong +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab694444 bsearch +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab8c55ec touch_atime +EXPORT_SYMBOL vmlinux 0xaba3ad0c radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xabbb3009 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabd68838 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xabdd6463 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xabdd6f57 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xabe1d298 of_io_request_and_map +EXPORT_SYMBOL vmlinux 0xabe76ab4 tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0xabf282b8 dma_supported +EXPORT_SYMBOL vmlinux 0xabf99d2a kernel_connect +EXPORT_SYMBOL vmlinux 0xabfcb4c3 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xac0a0665 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac106633 netpoll_setup +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac2f94b7 simple_rename +EXPORT_SYMBOL vmlinux 0xac315361 seq_dentry +EXPORT_SYMBOL vmlinux 0xac390091 dev_base_lock +EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear +EXPORT_SYMBOL vmlinux 0xac398f2f scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xac5661ef ip6_frag_init +EXPORT_SYMBOL vmlinux 0xac589850 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xac5b30ee __DWC_ALLOC +EXPORT_SYMBOL vmlinux 0xac6cf1b1 seq_vprintf +EXPORT_SYMBOL vmlinux 0xac76c569 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xac7c6faf kfree_put_link +EXPORT_SYMBOL vmlinux 0xac8f8576 phy_driver_register +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb86ea6 bio_advance +EXPORT_SYMBOL vmlinux 0xacc3170f end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xace64ef4 vfs_read +EXPORT_SYMBOL vmlinux 0xacf22191 serio_reconnect +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad07a19f tcp_req_err +EXPORT_SYMBOL vmlinux 0xad14b582 DWC_MEMCMP +EXPORT_SYMBOL vmlinux 0xad202586 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xad45c483 nf_hook_slow +EXPORT_SYMBOL vmlinux 0xad4f3efa unlock_buffer +EXPORT_SYMBOL vmlinux 0xad547243 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xad586527 xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad9849e2 configfs_undepend_item +EXPORT_SYMBOL vmlinux 0xadadee63 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0xadc3ef3d DWC_WRITE_REG32 +EXPORT_SYMBOL vmlinux 0xadf42bd5 __request_region +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae16af45 neigh_lookup +EXPORT_SYMBOL vmlinux 0xae478a35 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xae51c9f5 dev_uc_del +EXPORT_SYMBOL vmlinux 0xae632638 bio_copy_data +EXPORT_SYMBOL vmlinux 0xae67e4d7 tty_register_device +EXPORT_SYMBOL vmlinux 0xae708675 nand_lock +EXPORT_SYMBOL vmlinux 0xae77a595 radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0xae85a27e radix_tree_lookup +EXPORT_SYMBOL vmlinux 0xae90eb4f filp_open +EXPORT_SYMBOL vmlinux 0xae918eb5 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xae9241ad ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0xaebe4f06 mntget +EXPORT_SYMBOL vmlinux 0xaec26ad8 dev_close +EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0xaecc25d6 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0xaecd3efe kobject_add +EXPORT_SYMBOL vmlinux 0xaed447fa lock_fb_info +EXPORT_SYMBOL vmlinux 0xaef7858c __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xaf038291 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0xaf08a044 DWC_WAITQ_TRIGGER +EXPORT_SYMBOL vmlinux 0xaf10d009 vchi_get_peer_version +EXPORT_SYMBOL vmlinux 0xaf240260 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xaf2fe93e scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf3fa181 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0xaf50e76d elf_set_personality +EXPORT_SYMBOL vmlinux 0xaf6d80fb dev_crit +EXPORT_SYMBOL vmlinux 0xaf6fd552 skb_push +EXPORT_SYMBOL vmlinux 0xaf7939ca down_write_trylock +EXPORT_SYMBOL vmlinux 0xaf84865e __get_user_8 +EXPORT_SYMBOL vmlinux 0xaf877d59 skb_copy_expand +EXPORT_SYMBOL vmlinux 0xaf8aa518 system_rev +EXPORT_SYMBOL vmlinux 0xaf8f80c2 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0xafa27f87 napi_gro_frags +EXPORT_SYMBOL vmlinux 0xafb708b7 sock_i_uid +EXPORT_SYMBOL vmlinux 0xafd24ab4 current_in_userns +EXPORT_SYMBOL vmlinux 0xafde88e4 inet_select_addr +EXPORT_SYMBOL vmlinux 0xafdfbadc fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0xafed70a9 block_commit_write +EXPORT_SYMBOL vmlinux 0xaff1229d xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xb00f2aea twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0xb023d391 DWC_MUTEX_ALLOC +EXPORT_SYMBOL vmlinux 0xb031eda0 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0xb0350f2a netif_carrier_on +EXPORT_SYMBOL vmlinux 0xb04cf0fe lg_local_unlock +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb066b530 iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0xb07ef486 free_task +EXPORT_SYMBOL vmlinux 0xb081b9c3 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xb0827a18 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0ef127b sk_wait_data +EXPORT_SYMBOL vmlinux 0xb0fcd4de phy_driver_unregister +EXPORT_SYMBOL vmlinux 0xb1059619 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xb113144e add_random_ready_callback +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb15485b4 lru_cache_add_file +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb15ec186 DWC_THREAD_STOP +EXPORT_SYMBOL vmlinux 0xb18b2c02 key_invalidate +EXPORT_SYMBOL vmlinux 0xb18f8bd4 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xb1ad28e0 __gnu_mcount_nc +EXPORT_SYMBOL vmlinux 0xb1bd1713 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0xb1bef485 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0xb1c20d18 textsearch_unregister +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xb1d9aabd lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0xb2060cf4 phy_connect +EXPORT_SYMBOL vmlinux 0xb253237c inet_stream_ops +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb269fd09 inode_add_bytes +EXPORT_SYMBOL vmlinux 0xb284c969 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0xb297163c fsync_bdev +EXPORT_SYMBOL vmlinux 0xb2b80b64 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on +EXPORT_SYMBOL vmlinux 0xb2faf1d7 __sg_alloc_table +EXPORT_SYMBOL vmlinux 0xb31015f8 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0xb32d7b7e radix_tree_tagged +EXPORT_SYMBOL vmlinux 0xb362ccbc netdev_change_features +EXPORT_SYMBOL vmlinux 0xb362d4bb vchi_msg_dequeue +EXPORT_SYMBOL vmlinux 0xb366cc2f create_empty_buffers +EXPORT_SYMBOL vmlinux 0xb377ad23 scsi_device_resume +EXPORT_SYMBOL vmlinux 0xb3865f21 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xb3876739 lookup_one_len +EXPORT_SYMBOL vmlinux 0xb39e6236 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb3c9b0eb tso_start +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb3fc5337 scsi_unregister +EXPORT_SYMBOL vmlinux 0xb3fe9847 get_acl +EXPORT_SYMBOL vmlinux 0xb403bf99 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xb4052b2f devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0xb40c92a6 __getblk_slow +EXPORT_SYMBOL vmlinux 0xb4109548 put_disk +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb4390f9a mcount +EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem +EXPORT_SYMBOL vmlinux 0xb45944f6 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xb46d4ea9 ping_prot +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb4b7d740 mntput +EXPORT_SYMBOL vmlinux 0xb4b94377 __nand_correct_data +EXPORT_SYMBOL vmlinux 0xb4e0c6ea ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xb50dba9e tty_kref_put +EXPORT_SYMBOL vmlinux 0xb515bd40 napi_disable +EXPORT_SYMBOL vmlinux 0xb5198b77 _raw_read_lock +EXPORT_SYMBOL vmlinux 0xb52a022b dwc_cc_add +EXPORT_SYMBOL vmlinux 0xb550748d inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xb5684e29 idr_find_slowpath +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5be7ecb nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xb5c00014 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free +EXPORT_SYMBOL vmlinux 0xb5cb6ff1 __f_setown +EXPORT_SYMBOL vmlinux 0xb5d9454c printk_emit +EXPORT_SYMBOL vmlinux 0xb5df91eb jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0xb5e548be gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0xb5fa2e7b netdev_info +EXPORT_SYMBOL vmlinux 0xb61b374b mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0xb6271d04 __frontswap_store +EXPORT_SYMBOL vmlinux 0xb627749d blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0xb627e3e8 netif_skb_features +EXPORT_SYMBOL vmlinux 0xb6567952 inode_set_flags +EXPORT_SYMBOL vmlinux 0xb66da865 __pagevec_release +EXPORT_SYMBOL vmlinux 0xb6751c75 ip_setsockopt +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb68148ae disk_stack_limits +EXPORT_SYMBOL vmlinux 0xb6824958 icmpv6_send +EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6bf55e3 cpu_tlb +EXPORT_SYMBOL vmlinux 0xb6c52ffa module_layout +EXPORT_SYMBOL vmlinux 0xb6c5a630 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0xb6dc3ebf sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xb6ee8a49 cros_ec_query_all +EXPORT_SYMBOL vmlinux 0xb6f243ba sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xb6f78efb gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0xb710bc79 up_read +EXPORT_SYMBOL vmlinux 0xb716feca vfs_mknod +EXPORT_SYMBOL vmlinux 0xb719a183 DWC_SPRINTF +EXPORT_SYMBOL vmlinux 0xb72e9aab dquot_commit +EXPORT_SYMBOL vmlinux 0xb73b03d6 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb758e2ef neigh_table_init +EXPORT_SYMBOL vmlinux 0xb769b6b4 nand_scan_tail +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb77b7475 nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0xb79f1145 sk_dst_check +EXPORT_SYMBOL vmlinux 0xb7acfebc ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xb7b50f9c i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0xb7ba76c7 __aeabi_unwind_cpp_pr2 +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7f3a51f __mutex_init +EXPORT_SYMBOL vmlinux 0xb80c2e9f lwtunnel_output +EXPORT_SYMBOL vmlinux 0xb81960ca snprintf +EXPORT_SYMBOL vmlinux 0xb8212c81 register_md_personality +EXPORT_SYMBOL vmlinux 0xb826bd33 done_path_create +EXPORT_SYMBOL vmlinux 0xb859f38b krealloc +EXPORT_SYMBOL vmlinux 0xb85fc983 config_group_init_type_name +EXPORT_SYMBOL vmlinux 0xb86ded48 skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xb872c8f8 param_set_short +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb88ace13 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xb89df162 dqput +EXPORT_SYMBOL vmlinux 0xb8ae0020 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xb8b7a8fe unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xb8b83721 account_page_dirtied +EXPORT_SYMBOL vmlinux 0xb8e3b987 update_region +EXPORT_SYMBOL vmlinux 0xb8e8c33f release_firmware +EXPORT_SYMBOL vmlinux 0xb917b460 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0xb917cc4e sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0xb9274356 trace_hardirqs_off_caller +EXPORT_SYMBOL vmlinux 0xb944f740 simple_follow_link +EXPORT_SYMBOL vmlinux 0xb9588ecf filp_close +EXPORT_SYMBOL vmlinux 0xb9588f3a mmc_of_parse +EXPORT_SYMBOL vmlinux 0xb95f98d6 _memset_io +EXPORT_SYMBOL vmlinux 0xb966570f __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xb974f254 blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0xb9750e44 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0xb98c3e3d devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xb9acd3d9 __put_user_2 +EXPORT_SYMBOL vmlinux 0xb9af0e53 cdrom_check_events +EXPORT_SYMBOL vmlinux 0xb9c35b87 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xb9ca7d89 arp_xmit +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9f18dd3 DWC_STRDUP +EXPORT_SYMBOL vmlinux 0xb9f74807 md_flush_request +EXPORT_SYMBOL vmlinux 0xba003d6f rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0xba1a5636 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0xba247227 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xba39c9a0 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0xba39f35a get_task_exe_file +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba4ae097 enable_fiq +EXPORT_SYMBOL vmlinux 0xba643b9d writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xba84057c devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xba9fe370 blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0xbac3cbf2 ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0xbacd7cc8 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xbacd82c7 param_get_ulong +EXPORT_SYMBOL vmlinux 0xbad999ff sk_net_capable +EXPORT_SYMBOL vmlinux 0xbae55fcc tcp_proc_register +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb157511 softnet_data +EXPORT_SYMBOL vmlinux 0xbb344880 finish_open +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb4c9200 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0xbb52b4e0 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb6afb7b phy_device_remove +EXPORT_SYMBOL vmlinux 0xbb72d4fe __put_user_1 +EXPORT_SYMBOL vmlinux 0xbb8a5bbb bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbb9d459a dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0xbbc73707 fb_get_mode +EXPORT_SYMBOL vmlinux 0xbbda6db5 skb_append +EXPORT_SYMBOL vmlinux 0xbc016eff nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0xbc10dd97 __put_user_4 +EXPORT_SYMBOL vmlinux 0xbc1471d9 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xbc3d4314 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xbc3eb602 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xbc77d023 DWC_MUTEX_TRYLOCK +EXPORT_SYMBOL vmlinux 0xbc8bd4a4 nand_scan +EXPORT_SYMBOL vmlinux 0xbc962374 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xbcac8055 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xbccc5fc4 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0xbcd83101 locks_mandatory_area +EXPORT_SYMBOL vmlinux 0xbce870b3 devm_memremap +EXPORT_SYMBOL vmlinux 0xbd174d89 d_make_root +EXPORT_SYMBOL vmlinux 0xbd17c6de gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xbd20216d mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0xbd3a3d2f dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xbd5a3a06 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xbd692b69 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0xbd7e2e56 scsi_device_get +EXPORT_SYMBOL vmlinux 0xbd8bf657 kmem_cache_free +EXPORT_SYMBOL vmlinux 0xbd8c8561 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbd976669 page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0xbda71c37 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xbdb6933e scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xbdbde7d3 mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0xbdc2e9de phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0xbdec4d08 fence_remove_callback +EXPORT_SYMBOL vmlinux 0xbdedb6b2 irq_stat +EXPORT_SYMBOL vmlinux 0xbdfcd58c __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp +EXPORT_SYMBOL vmlinux 0xbe19e8c9 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe2008d4 security_mmap_file +EXPORT_SYMBOL vmlinux 0xbe29c330 key_alloc +EXPORT_SYMBOL vmlinux 0xbe2e3b75 kstrtos8 +EXPORT_SYMBOL vmlinux 0xbe377de0 of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0xbe389a81 devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0xbe4344ea sock_kfree_s +EXPORT_SYMBOL vmlinux 0xbe50e7ea tty_port_close +EXPORT_SYMBOL vmlinux 0xbe63ee40 request_resource +EXPORT_SYMBOL vmlinux 0xbe7545df kobject_init +EXPORT_SYMBOL vmlinux 0xbe965393 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xbea2fdde bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xbecdc6df bio_put +EXPORT_SYMBOL vmlinux 0xbece182d blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0xbed94389 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbf18d637 consume_skb +EXPORT_SYMBOL vmlinux 0xbf33ab74 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xbf41ee09 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0xbf44f832 neigh_app_ns +EXPORT_SYMBOL vmlinux 0xbf486982 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xbf4bdccc qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xbf5e5968 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0xbf60acf4 neigh_update +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf8c03ab iterate_fd +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfd6b2b0 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xc001a932 tcp_destroy_cgroup +EXPORT_SYMBOL vmlinux 0xc0056be5 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0xc00bcd4f buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xc02ed8af devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0xc068440e __kfifo_alloc +EXPORT_SYMBOL vmlinux 0xc07192ca security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc07a8b03 import_iovec +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc0a98385 profile_pc +EXPORT_SYMBOL vmlinux 0xc0d1af7e DWC_MEMSET +EXPORT_SYMBOL vmlinux 0xc0f5dda1 tcf_exts_change +EXPORT_SYMBOL vmlinux 0xc1110c92 netif_napi_add +EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten +EXPORT_SYMBOL vmlinux 0xc12263dd ppp_register_channel +EXPORT_SYMBOL vmlinux 0xc129a22e of_n_size_cells +EXPORT_SYMBOL vmlinux 0xc12ea846 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0xc14a643f blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0xc14a80b1 __tcf_hash_release +EXPORT_SYMBOL vmlinux 0xc15ccb07 sock_no_bind +EXPORT_SYMBOL vmlinux 0xc180b0f5 scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0xc18c8780 find_inode_nowait +EXPORT_SYMBOL vmlinux 0xc18ee78e __ip_select_ident +EXPORT_SYMBOL vmlinux 0xc198c1f3 contig_page_data +EXPORT_SYMBOL vmlinux 0xc1a16144 set_page_dirty +EXPORT_SYMBOL vmlinux 0xc1d2fc91 block_write_full_page +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc1edc2c5 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xc21614ee inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xc2286683 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0xc24025b4 kernel_write +EXPORT_SYMBOL vmlinux 0xc28f5391 security_path_unlink +EXPORT_SYMBOL vmlinux 0xc2921922 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xc29c8c76 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xc2ba3820 security_task_getsecid +EXPORT_SYMBOL vmlinux 0xc2c0d59f pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc30176a3 __get_page_tail +EXPORT_SYMBOL vmlinux 0xc30f9431 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0xc32a8f7d nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xc32f8a93 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xc359fb65 abort +EXPORT_SYMBOL vmlinux 0xc38d0f5b dwc_cc_restore_from_data +EXPORT_SYMBOL vmlinux 0xc39ec225 ps2_init +EXPORT_SYMBOL vmlinux 0xc3a4e43c of_mm_gpiochip_remove +EXPORT_SYMBOL vmlinux 0xc3af2511 eth_type_trans +EXPORT_SYMBOL vmlinux 0xc3b8e1b0 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xc3ce9d45 qdisc_list_del +EXPORT_SYMBOL vmlinux 0xc3e33d2e bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xc451693b inet6_ioctl +EXPORT_SYMBOL vmlinux 0xc46a7f63 DWC_STRNCMP +EXPORT_SYMBOL vmlinux 0xc4797d5e phy_disconnect +EXPORT_SYMBOL vmlinux 0xc47fbc58 put_page +EXPORT_SYMBOL vmlinux 0xc48f3f7f tty_name +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4a12114 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xc4a39af9 sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0xc4aca39b blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xc4afc423 input_unregister_handler +EXPORT_SYMBOL vmlinux 0xc4b274ab skb_trim +EXPORT_SYMBOL vmlinux 0xc4c57446 keyring_search +EXPORT_SYMBOL vmlinux 0xc4cea612 dwc_free_notification_manager +EXPORT_SYMBOL vmlinux 0xc4e99af8 cdev_init +EXPORT_SYMBOL vmlinux 0xc51cce96 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xc51e1c33 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0xc51f6d0a lease_get_mtime +EXPORT_SYMBOL vmlinux 0xc52c4c3d dev_remove_offload +EXPORT_SYMBOL vmlinux 0xc5598ddd dst_release +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5c32788 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xc5e89f6b get_super +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc5fefb16 submit_bh +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc63b6a78 param_ops_long +EXPORT_SYMBOL vmlinux 0xc646e9cc scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xc64a26d9 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xc65537d0 memremap +EXPORT_SYMBOL vmlinux 0xc65bf507 inet_csk_accept +EXPORT_SYMBOL vmlinux 0xc66fa6a6 ida_remove +EXPORT_SYMBOL vmlinux 0xc672f6b8 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xc68d285b call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6cdf876 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xc6de77b4 gen_new_estimator +EXPORT_SYMBOL vmlinux 0xc6f52b23 locks_free_lock +EXPORT_SYMBOL vmlinux 0xc70cafa7 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc72c8929 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0xc72d59da cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0xc7313086 of_get_parent +EXPORT_SYMBOL vmlinux 0xc7398c8b __DWC_DMA_ALLOC +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc759caa7 d_move +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc798b81d netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xc79a7fdd input_unregister_handle +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7ab4086 seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xc7add1be page_put_link +EXPORT_SYMBOL vmlinux 0xc7bcbc8d add_wait_queue +EXPORT_SYMBOL vmlinux 0xc7ce9ad3 fb_set_var +EXPORT_SYMBOL vmlinux 0xc7d07e3e dquot_file_open +EXPORT_SYMBOL vmlinux 0xc7d270ee tty_port_close_start +EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn +EXPORT_SYMBOL vmlinux 0xc7f95da6 send_sig_info +EXPORT_SYMBOL vmlinux 0xc7fbc08b ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xc80722c4 __dquot_transfer +EXPORT_SYMBOL vmlinux 0xc809ba9b nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0xc817760e dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xc8276a79 nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape +EXPORT_SYMBOL vmlinux 0xc837d7fa tty_free_termios +EXPORT_SYMBOL vmlinux 0xc83b3176 xfrm_register_km +EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc859bd24 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc890c101 elevator_exit +EXPORT_SYMBOL vmlinux 0xc8994ca5 __elv_add_request +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b507b7 vchiq_shutdown +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8d2bd29 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xc8d38763 mount_subtree +EXPORT_SYMBOL vmlinux 0xc8d884d8 mmc_can_erase +EXPORT_SYMBOL vmlinux 0xc8dc2236 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xc8f16600 simple_map_init +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc911f881 simple_transaction_set +EXPORT_SYMBOL vmlinux 0xc9190f79 get_user_pages +EXPORT_SYMBOL vmlinux 0xc91ce828 blk_init_queue +EXPORT_SYMBOL vmlinux 0xc9286b1a nf_log_register +EXPORT_SYMBOL vmlinux 0xc937c01f noop_llseek +EXPORT_SYMBOL vmlinux 0xc9501d10 devm_ioport_map +EXPORT_SYMBOL vmlinux 0xc954a01f scsi_is_host_device +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc974c478 ps2_end_command +EXPORT_SYMBOL vmlinux 0xc9874634 scsi_dma_map +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9d2342e request_key_async +EXPORT_SYMBOL vmlinux 0xc9d76863 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0xc9faeef6 dma_sync_wait +EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy +EXPORT_SYMBOL vmlinux 0xca130956 mm_vc_mem_base +EXPORT_SYMBOL vmlinux 0xca41eaa3 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0xca4bbe19 dwc_unregister_notifier +EXPORT_SYMBOL vmlinux 0xca531533 i2c_clients_command +EXPORT_SYMBOL vmlinux 0xca856684 DWC_MODIFY_REG32 +EXPORT_SYMBOL vmlinux 0xca8637d0 DWC_WORKQ_ALLOC +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xcaadedcb skb_vlan_untag +EXPORT_SYMBOL vmlinux 0xcaf0cf0d unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcaf44de8 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xcafa65d8 eth_mac_addr +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb0c90e5 swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0xcb307bd0 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0xcb466063 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xcb47984e iput +EXPORT_SYMBOL vmlinux 0xcb595bff locks_init_lock +EXPORT_SYMBOL vmlinux 0xcb6364f2 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xcb6eeb6a __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbde41fa tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xcbeac4be hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcbeb37c5 dwc_register_notifier +EXPORT_SYMBOL vmlinux 0xcbee6439 ida_simple_get +EXPORT_SYMBOL vmlinux 0xcbf8d511 clk_add_alias +EXPORT_SYMBOL vmlinux 0xcbfb388f page_cache_next_hole +EXPORT_SYMBOL vmlinux 0xcc17f0e3 padata_remove_cpu +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc34a3a0 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0xcc4bedfa scsi_host_set_state +EXPORT_SYMBOL vmlinux 0xcc4f3c39 kill_anon_super +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc53b6ce cfb_fillrect +EXPORT_SYMBOL vmlinux 0xcc55db59 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0xcc8a9d60 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0xccb1e72a bdev_stack_limits +EXPORT_SYMBOL vmlinux 0xccb2f14a kobject_get +EXPORT_SYMBOL vmlinux 0xccbef1b3 cfb_copyarea +EXPORT_SYMBOL vmlinux 0xccfef64f skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xcd13dc7c ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xcd20cb89 proc_set_user +EXPORT_SYMBOL vmlinux 0xcd2496f0 inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0xcd255ed4 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd30b95a tmio_core_mmc_clk_div +EXPORT_SYMBOL vmlinux 0xcd372d23 simple_unlink +EXPORT_SYMBOL vmlinux 0xcd393ce1 mark_page_accessed +EXPORT_SYMBOL vmlinux 0xcd58aec0 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xcd63c845 __aeabi_lasr +EXPORT_SYMBOL vmlinux 0xcd66780a ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0xcd8e723e pskb_expand_head +EXPORT_SYMBOL vmlinux 0xcd94dce3 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xcdb29bce abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0xcdb73aaa config_item_get +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdc49e19 lockref_get +EXPORT_SYMBOL vmlinux 0xcdcf7d3f __DWC_ERROR +EXPORT_SYMBOL vmlinux 0xcddb2bdd ps2_drain +EXPORT_SYMBOL vmlinux 0xcde93643 netif_carrier_off +EXPORT_SYMBOL vmlinux 0xcdeb1c1e phy_start_aneg +EXPORT_SYMBOL vmlinux 0xce25be37 vfs_writev +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce30f482 gen_pool_free +EXPORT_SYMBOL vmlinux 0xce35ce58 d_genocide +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce713f00 bdgrab +EXPORT_SYMBOL vmlinux 0xce73b8b6 kill_block_super +EXPORT_SYMBOL vmlinux 0xce75a385 phy_attach_direct +EXPORT_SYMBOL vmlinux 0xce764533 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceb4587a dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xceb9f67c netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xceeb0985 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0xceed7f85 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xcef99a10 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcefff5ac of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0xcf169fea kset_unregister +EXPORT_SYMBOL vmlinux 0xcf246a82 DWC_MSLEEP +EXPORT_SYMBOL vmlinux 0xcf27e530 DWC_STRCPY +EXPORT_SYMBOL vmlinux 0xcf2bf321 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xcf47fb4b __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xcf88625f mempool_create_node +EXPORT_SYMBOL vmlinux 0xcf8cb5df serial8250_do_pm +EXPORT_SYMBOL vmlinux 0xcf92e6db serio_bus +EXPORT_SYMBOL vmlinux 0xcfab3ede write_inode_now +EXPORT_SYMBOL vmlinux 0xcfbb86b8 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0xcfc7f892 pagecache_get_page +EXPORT_SYMBOL vmlinux 0xcfd4749b tcp_shutdown +EXPORT_SYMBOL vmlinux 0xcfdae807 dm_put_device +EXPORT_SYMBOL vmlinux 0xcff6b676 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0xd032c568 seq_lseek +EXPORT_SYMBOL vmlinux 0xd034105f lockref_put_return +EXPORT_SYMBOL vmlinux 0xd0558473 simple_pin_fs +EXPORT_SYMBOL vmlinux 0xd06d4ef5 vchiq_queue_bulk_receive +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0c683b4 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xd0d774f0 vfs_readf +EXPORT_SYMBOL vmlinux 0xd0d9ec99 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xd0deb1f5 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xd0e7fd57 dev_get_stats +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0xd100acbd _raw_write_lock +EXPORT_SYMBOL vmlinux 0xd132372c padata_add_cpu +EXPORT_SYMBOL vmlinux 0xd13b4d69 vchi_msg_queue +EXPORT_SYMBOL vmlinux 0xd13e170a copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0xd14b305c lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xd16e0101 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0xd173aa7e netlink_ack +EXPORT_SYMBOL vmlinux 0xd17a1a9d nvm_unregister_target +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd197266c of_find_node_with_property +EXPORT_SYMBOL vmlinux 0xd19f53b3 param_set_long +EXPORT_SYMBOL vmlinux 0xd1b2d6a3 DWC_PRINTF +EXPORT_SYMBOL vmlinux 0xd1c84dfb hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1e79cae fence_wait_timeout +EXPORT_SYMBOL vmlinux 0xd1f58f70 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xd1f9ac41 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xd221ad7d pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0xd238b9da inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd255ad57 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0xd2577719 nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd27b4dae inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0xd298108e I_BDEV +EXPORT_SYMBOL vmlinux 0xd2a2994c register_console +EXPORT_SYMBOL vmlinux 0xd2af138b reservation_ww_class +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2de86de DWC_MEMMOVE +EXPORT_SYMBOL vmlinux 0xd31c7380 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd32bed1f scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xd35b50cb key_unlink +EXPORT_SYMBOL vmlinux 0xd361b267 ip6_xmit +EXPORT_SYMBOL vmlinux 0xd363983a nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xd3745a31 drop_super +EXPORT_SYMBOL vmlinux 0xd37f06d0 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0xd3abdb72 init_buffer +EXPORT_SYMBOL vmlinux 0xd3b23372 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0xd3b7e9c5 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3d78142 netif_device_detach +EXPORT_SYMBOL vmlinux 0xd3dbfbc4 _find_first_zero_bit_le +EXPORT_SYMBOL vmlinux 0xd3e6f60d cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xd4086ff9 block_write_begin +EXPORT_SYMBOL vmlinux 0xd412fd52 swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0xd418e1c0 adjust_resource +EXPORT_SYMBOL vmlinux 0xd41bde59 sock_update_memcg +EXPORT_SYMBOL vmlinux 0xd4420cda proto_register +EXPORT_SYMBOL vmlinux 0xd462e082 blk_make_request +EXPORT_SYMBOL vmlinux 0xd4669fad complete +EXPORT_SYMBOL vmlinux 0xd4815b77 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0xd492dd9f kernel_getpeername +EXPORT_SYMBOL vmlinux 0xd49928a5 set_anon_super +EXPORT_SYMBOL vmlinux 0xd499a720 of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0xd49cd992 neigh_ifdown +EXPORT_SYMBOL vmlinux 0xd4b6a37a netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0xd4b802b8 mii_check_gmii_support +EXPORT_SYMBOL vmlinux 0xd4bcc923 wireless_send_event +EXPORT_SYMBOL vmlinux 0xd4d57d80 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0xd4dd84cc skb_pull +EXPORT_SYMBOL vmlinux 0xd4ec0d6d devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0xd5152710 sg_next +EXPORT_SYMBOL vmlinux 0xd51a3e16 seq_putc +EXPORT_SYMBOL vmlinux 0xd526284c icmp_send +EXPORT_SYMBOL vmlinux 0xd52b2465 security_path_rmdir +EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0xd5575c56 handle_edge_irq +EXPORT_SYMBOL vmlinux 0xd5581312 param_set_ushort +EXPORT_SYMBOL vmlinux 0xd5772afa jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xd57dc35c inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xd59318d3 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd5b28602 generic_write_end +EXPORT_SYMBOL vmlinux 0xd5b68710 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xd5b79bd0 dump_page +EXPORT_SYMBOL vmlinux 0xd5b7d886 inet_add_offload +EXPORT_SYMBOL vmlinux 0xd5bbd5f6 sock_from_file +EXPORT_SYMBOL vmlinux 0xd5dc4def sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0xd5f8ab02 register_filesystem +EXPORT_SYMBOL vmlinux 0xd6029e8e dmam_release_declared_memory +EXPORT_SYMBOL vmlinux 0xd61198ad tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xd61347c6 register_sysctl +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd619fb31 file_ns_capable +EXPORT_SYMBOL vmlinux 0xd620f386 sock_create_lite +EXPORT_SYMBOL vmlinux 0xd627480b strncat +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd63d86a9 max8925_reg_write +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd64d1873 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xd6567f3e rwsem_wake +EXPORT_SYMBOL vmlinux 0xd6796c75 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xd6834b1c i2c_get_adapter +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd6891921 DWC_WORKQ_SCHEDULE_DELAYED +EXPORT_SYMBOL vmlinux 0xd697e69a trace_hardirqs_on +EXPORT_SYMBOL vmlinux 0xd6b8e852 request_threaded_irq +EXPORT_SYMBOL vmlinux 0xd6e064f7 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6f5f245 registered_fb +EXPORT_SYMBOL vmlinux 0xd70f8075 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0xd723b75f kernel_getsockopt +EXPORT_SYMBOL vmlinux 0xd72a8e9f blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xd74289f9 __percpu_counter_add +EXPORT_SYMBOL vmlinux 0xd74670f6 nf_setsockopt +EXPORT_SYMBOL vmlinux 0xd74d85d1 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0xd75536a7 udp_del_offload +EXPORT_SYMBOL vmlinux 0xd75b963e i2c_register_driver +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd779e151 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xd788091a posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0xd7901c05 build_skb +EXPORT_SYMBOL vmlinux 0xd79843e8 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0xd7aafbb5 security_path_chown +EXPORT_SYMBOL vmlinux 0xd7bf4268 DWC_WAITQ_FREE +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd8003a98 tty_port_hangup +EXPORT_SYMBOL vmlinux 0xd82a1723 padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xd8388031 elevator_init +EXPORT_SYMBOL vmlinux 0xd8530cbc scsi_ioctl +EXPORT_SYMBOL vmlinux 0xd85cd67e __wake_up +EXPORT_SYMBOL vmlinux 0xd8615cc4 mpage_readpages +EXPORT_SYMBOL vmlinux 0xd861f07a iov_iter_init +EXPORT_SYMBOL vmlinux 0xd875e7d8 fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0xd8a173d6 freeze_super +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b0624a irq_to_desc +EXPORT_SYMBOL vmlinux 0xd8b630f1 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8f0fcf0 textsearch_register +EXPORT_SYMBOL vmlinux 0xd8fb0f2a param_ops_ushort +EXPORT_SYMBOL vmlinux 0xd927e2eb key_put +EXPORT_SYMBOL vmlinux 0xd92aaaf6 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xd94f4d06 inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0xd966ddc2 __do_once_done +EXPORT_SYMBOL vmlinux 0xd97002d3 qdisc_destroy +EXPORT_SYMBOL vmlinux 0xd97edd47 neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd9adfd63 __put_cred +EXPORT_SYMBOL vmlinux 0xd9c888d7 dma_release_declared_memory +EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen +EXPORT_SYMBOL vmlinux 0xd9cfdce4 mmc_cleanup_queue +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9dc3d8f param_set_copystring +EXPORT_SYMBOL vmlinux 0xd9ef96ff mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda473bf5 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xda5db4af scsi_print_result +EXPORT_SYMBOL vmlinux 0xda6176c1 register_cdrom +EXPORT_SYMBOL vmlinux 0xda755918 iunique +EXPORT_SYMBOL vmlinux 0xda7c5405 inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda8b6670 generic_setlease +EXPORT_SYMBOL vmlinux 0xdaafc807 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xdac2719f xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdad97f94 __raw_writesw +EXPORT_SYMBOL vmlinux 0xdae1c7aa xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xdaf12f68 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xdaf4853a ata_dev_printk +EXPORT_SYMBOL vmlinux 0xdaff6124 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0xdb0f58b3 abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0xdb410d07 __serio_register_driver +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb68f4d3 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xdb6f5091 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdbaff876 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0xdbbd7bf2 napi_gro_receive +EXPORT_SYMBOL vmlinux 0xdbcbc583 vfs_symlink +EXPORT_SYMBOL vmlinux 0xdbe6bc7f xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc0ff6fe i2c_verify_client +EXPORT_SYMBOL vmlinux 0xdc312da1 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc44c893 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc58a18a param_ops_ulong +EXPORT_SYMBOL vmlinux 0xdc6616ec jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0xdc779250 arm_coherent_dma_ops +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcd541a3 input_flush_device +EXPORT_SYMBOL vmlinux 0xdcdff7dc of_cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0xdce03b23 sock_efree +EXPORT_SYMBOL vmlinux 0xdce0e240 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0xdce40cd2 kset_register +EXPORT_SYMBOL vmlinux 0xdce96cfc scsi_block_requests +EXPORT_SYMBOL vmlinux 0xdcf3c193 htc_egpio_get_wakeup_irq +EXPORT_SYMBOL vmlinux 0xdcfdae05 tty_write_room +EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat +EXPORT_SYMBOL vmlinux 0xdd0d41a1 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xdd226fa9 __raw_readsw +EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr +EXPORT_SYMBOL vmlinux 0xdd27fc6c kill_litter_super +EXPORT_SYMBOL vmlinux 0xdd28a9e4 swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0xdd2aaa27 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xdd3916ac _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xdd9102fc kmem_cache_size +EXPORT_SYMBOL vmlinux 0xdd95fb0f amba_request_regions +EXPORT_SYMBOL vmlinux 0xdd990892 dcache_readdir +EXPORT_SYMBOL vmlinux 0xddaafcd5 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xddae0109 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0xddbefde5 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xddc6c1d1 param_ops_string +EXPORT_SYMBOL vmlinux 0xddd25b64 nvm_get_blk +EXPORT_SYMBOL vmlinux 0xddd8be22 input_set_capability +EXPORT_SYMBOL vmlinux 0xdde7ac76 scsi_remove_target +EXPORT_SYMBOL vmlinux 0xddeb6acd path_noexec +EXPORT_SYMBOL vmlinux 0xde064618 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xde3b61a5 xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0xde6a0828 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xde71601f ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xdeb0220d devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf36aaed DWC_TASK_SCHEDULE +EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf914895 __i2c_transfer +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init +EXPORT_SYMBOL vmlinux 0xdffb2815 ipv4_specific +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe0659256 simple_transaction_read +EXPORT_SYMBOL vmlinux 0xe0691f69 vm_insert_pfn +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0xe0878bfe __krealloc +EXPORT_SYMBOL vmlinux 0xe09b2e51 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xe0a78591 mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0xe0ac7952 generic_file_mmap +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b51353 DWC_WORKQ_FREE +EXPORT_SYMBOL vmlinux 0xe0f37dfc blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe1254b6d grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xe128526c max8998_write_reg +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe1394265 inode_change_ok +EXPORT_SYMBOL vmlinux 0xe13dfd28 nf_log_packet +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe186e7dc unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0xe187693c kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xe19bc886 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xe19d7a70 fb_class +EXPORT_SYMBOL vmlinux 0xe1a39886 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xe1abecff user_revoke +EXPORT_SYMBOL vmlinux 0xe1bd1c76 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0xe1c492dd iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xe1de5328 cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0xe1f0ab3a _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe219320b input_set_abs_params +EXPORT_SYMBOL vmlinux 0xe2371b56 dcb_setapp +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe25c2ae2 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xe2833c22 key_link +EXPORT_SYMBOL vmlinux 0xe298d3a2 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2aee7df __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0xe2b89a4c inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0xe2c07586 dma_common_mmap +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user +EXPORT_SYMBOL vmlinux 0xe2e8d54a DWC_SPINLOCK_FREE +EXPORT_SYMBOL vmlinux 0xe2eedbd7 of_get_mac_address +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup +EXPORT_SYMBOL vmlinux 0xe30d82bd neigh_event_ns +EXPORT_SYMBOL vmlinux 0xe31f4a0f inet6_getname +EXPORT_SYMBOL vmlinux 0xe346482b jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0xe3724227 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0xe376b791 DWC_SPINUNLOCK_IRQRESTORE +EXPORT_SYMBOL vmlinux 0xe3884cc3 of_clk_get +EXPORT_SYMBOL vmlinux 0xe39022f4 would_dump +EXPORT_SYMBOL vmlinux 0xe3a1a987 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3bca4ca dwc_alloc_notification_manager +EXPORT_SYMBOL vmlinux 0xe3cca832 __brelse +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3df3d2c __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0xe3f4a2c3 bcm_dmaman_remove +EXPORT_SYMBOL vmlinux 0xe3fd0127 tty_port_open +EXPORT_SYMBOL vmlinux 0xe3fdb64d __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xe423e838 backlight_force_update +EXPORT_SYMBOL vmlinux 0xe43274bc proc_dointvec +EXPORT_SYMBOL vmlinux 0xe4528a01 inet_ioctl +EXPORT_SYMBOL vmlinux 0xe476915b vfs_create +EXPORT_SYMBOL vmlinux 0xe4880940 blk_requeue_request +EXPORT_SYMBOL vmlinux 0xe489b6b2 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xe4992a63 rfkill_alloc +EXPORT_SYMBOL vmlinux 0xe4aa0f97 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xe4b487d1 __frontswap_test +EXPORT_SYMBOL vmlinux 0xe4c17741 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xe4c42c41 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xe4c80097 cacheid +EXPORT_SYMBOL vmlinux 0xe4d16e54 rtnl_notify +EXPORT_SYMBOL vmlinux 0xe4e72741 tcf_hash_check +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe5282b0b get_unmapped_area +EXPORT_SYMBOL vmlinux 0xe52e10c8 mmc_add_host +EXPORT_SYMBOL vmlinux 0xe5391193 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xe54e4fa5 open_check_o_direct +EXPORT_SYMBOL vmlinux 0xe55ed943 clear_inode +EXPORT_SYMBOL vmlinux 0xe56b869e bio_alloc_pages +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe57d5286 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0xe582f13f get_mem_type +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe59166dc sg_copy_buffer +EXPORT_SYMBOL vmlinux 0xe5940ffc scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xe5995193 blk_start_queue_async +EXPORT_SYMBOL vmlinux 0xe5ad0443 neigh_parms_release +EXPORT_SYMBOL vmlinux 0xe5b5d651 vchi_bulk_queue_transmit +EXPORT_SYMBOL vmlinux 0xe5c11a45 block_read_full_page +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5da2894 tcp_init_sock +EXPORT_SYMBOL vmlinux 0xe5e745ca dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xe5ec9b21 remove_proc_entry +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe6018a16 md_update_sb +EXPORT_SYMBOL vmlinux 0xe605b956 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0xe610f858 commit_creds +EXPORT_SYMBOL vmlinux 0xe6154fb3 map_destroy +EXPORT_SYMBOL vmlinux 0xe61dc38d sockfd_lookup +EXPORT_SYMBOL vmlinux 0xe6364f6c wake_up_process +EXPORT_SYMBOL vmlinux 0xe6465094 dget_parent +EXPORT_SYMBOL vmlinux 0xe651cbfc devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xe65e3846 dm_unregister_target +EXPORT_SYMBOL vmlinux 0xe66452ab dql_init +EXPORT_SYMBOL vmlinux 0xe671dccf __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0xe67d81ba strlen_user +EXPORT_SYMBOL vmlinux 0xe68f74d9 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe6bb79bc mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0xe6c2512a cros_ec_check_result +EXPORT_SYMBOL vmlinux 0xe6c81f06 set_security_override +EXPORT_SYMBOL vmlinux 0xe6e33eef phy_connect_direct +EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update +EXPORT_SYMBOL vmlinux 0xe6f04dc0 iterate_mounts +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe7075b97 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xe707d823 __aeabi_uidiv +EXPORT_SYMBOL vmlinux 0xe715cada swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0xe719c16a mutex_lock +EXPORT_SYMBOL vmlinux 0xe744eb0a blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0xe7527bde blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0xe768db6f km_policy_expired +EXPORT_SYMBOL vmlinux 0xe76a13ee skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xe77d119c tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7aade7f max8925_set_bits +EXPORT_SYMBOL vmlinux 0xe7b6315e kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe8053317 devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0xe813fafa freezing_slow_path +EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe82856f1 mii_check_media +EXPORT_SYMBOL vmlinux 0xe83a6b6d of_device_alloc +EXPORT_SYMBOL vmlinux 0xe83b0ac3 elv_rb_find +EXPORT_SYMBOL vmlinux 0xe841d001 read_code +EXPORT_SYMBOL vmlinux 0xe84b2813 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xe857f4c7 bio_phys_segments +EXPORT_SYMBOL vmlinux 0xe85dcbf1 swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xe8715e8c tcp_splice_read +EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss +EXPORT_SYMBOL vmlinux 0xe8873785 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0xe894b0e6 datagram_poll +EXPORT_SYMBOL vmlinux 0xe89c32d3 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xe8a4997f inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8b24010 find_vma +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8c8f26b bdget +EXPORT_SYMBOL vmlinux 0xe8e716e7 bio_uncopy_user +EXPORT_SYMBOL vmlinux 0xe8f61a2d km_state_expired +EXPORT_SYMBOL vmlinux 0xe912da6b unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xe914e308 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe9169a91 may_umount +EXPORT_SYMBOL vmlinux 0xe93f6042 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xe94a3397 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe9546881 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0xe96d7c09 config_group_init +EXPORT_SYMBOL vmlinux 0xe97f8754 iget_locked +EXPORT_SYMBOL vmlinux 0xe9961789 dev_printk +EXPORT_SYMBOL vmlinux 0xe99af310 of_phy_find_device +EXPORT_SYMBOL vmlinux 0xe9be808d lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0xe9bff861 down_trylock +EXPORT_SYMBOL vmlinux 0xe9c13394 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0xe9c69956 complete_request_key +EXPORT_SYMBOL vmlinux 0xe9cbaf4e vfs_path_lookup +EXPORT_SYMBOL vmlinux 0xe9ccfcd3 ioremap_cache +EXPORT_SYMBOL vmlinux 0xe9cf3d78 of_device_is_available +EXPORT_SYMBOL vmlinux 0xe9d2f630 fb_show_logo +EXPORT_SYMBOL vmlinux 0xe9ddf691 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea2a5a07 mount_pseudo +EXPORT_SYMBOL vmlinux 0xea4f6ee4 unregister_nls +EXPORT_SYMBOL vmlinux 0xea52dc81 dwc_cc_ck +EXPORT_SYMBOL vmlinux 0xea758b03 vfs_setpos +EXPORT_SYMBOL vmlinux 0xea7987f1 key_update +EXPORT_SYMBOL vmlinux 0xea7b5873 param_get_byte +EXPORT_SYMBOL vmlinux 0xea8ca566 DWC_WAITQ_WAIT_TIMEOUT +EXPORT_SYMBOL vmlinux 0xeaa69eec start_tty +EXPORT_SYMBOL vmlinux 0xeaae2c04 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0xeabe17cd mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0xeadc9b63 put_cmsg +EXPORT_SYMBOL vmlinux 0xeaef091a iov_iter_zero +EXPORT_SYMBOL vmlinux 0xeafd9d34 bio_integrity_endio +EXPORT_SYMBOL vmlinux 0xeb03b389 __raw_readsl +EXPORT_SYMBOL vmlinux 0xeb11e68a blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb3789c7 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xeb5619ef set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xeb5dd738 devm_free_irq +EXPORT_SYMBOL vmlinux 0xeb85822a sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xeb984d89 dev_uc_sync +EXPORT_SYMBOL vmlinux 0xebb8510c dwc_cc_if_free +EXPORT_SYMBOL vmlinux 0xebc0176a register_shrinker +EXPORT_SYMBOL vmlinux 0xebcf7ca8 fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0xebfdcbdf system_serial_high +EXPORT_SYMBOL vmlinux 0xec0c6f3c mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0xec17edd1 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xec1aa6ef memzero_explicit +EXPORT_SYMBOL vmlinux 0xec3d2e1b trace_hardirqs_off +EXPORT_SYMBOL vmlinux 0xec467fd4 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec791a4c register_gifconf +EXPORT_SYMBOL vmlinux 0xec888b97 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0xec88b62e sock_kmalloc +EXPORT_SYMBOL vmlinux 0xec8e4e79 tty_port_init +EXPORT_SYMBOL vmlinux 0xec978a30 dput +EXPORT_SYMBOL vmlinux 0xecbcb8bb radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0xecc4184e nand_unlock +EXPORT_SYMBOL vmlinux 0xece7316c __DWC_WARN +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecf8a3b4 __raw_writesl +EXPORT_SYMBOL vmlinux 0xecfdab81 ppp_dev_name +EXPORT_SYMBOL vmlinux 0xed0a2b35 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0xed0aa53d mem_cgroup_begin_page_stat +EXPORT_SYMBOL vmlinux 0xed1311cf set_bh_page +EXPORT_SYMBOL vmlinux 0xed187f7c input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0xed2576c0 DWC_TIMER_SCHEDULE +EXPORT_SYMBOL vmlinux 0xed2c8c81 nf_reinject +EXPORT_SYMBOL vmlinux 0xed3729a5 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed5aba72 nvm_submit_io +EXPORT_SYMBOL vmlinux 0xed5cf16f dquot_release +EXPORT_SYMBOL vmlinux 0xed5e8656 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0xed7c3a34 _dev_info +EXPORT_SYMBOL vmlinux 0xed953c5d zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0xed9f8e6d kstrtos16 +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc7aab0 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0xedc7f4ec dq_data_lock +EXPORT_SYMBOL vmlinux 0xedcba00f dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xedd3db99 devm_gpiod_put +EXPORT_SYMBOL vmlinux 0xedd9106d __ashrdi3 +EXPORT_SYMBOL vmlinux 0xedebde70 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xee108f30 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0xee29f286 sock_no_listen +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee3496c3 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0xee3d26b7 audit_log_task_info +EXPORT_SYMBOL vmlinux 0xee4b2b3a write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xee51f7e2 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xee7150b9 kfree_skb +EXPORT_SYMBOL vmlinux 0xee715ef8 lg_global_unlock +EXPORT_SYMBOL vmlinux 0xee79867d i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xee7a1bcf inet_del_protocol +EXPORT_SYMBOL vmlinux 0xee8bb2b4 input_free_device +EXPORT_SYMBOL vmlinux 0xee914638 request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee9c3647 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeacecd8 vchi_msg_peek +EXPORT_SYMBOL vmlinux 0xeeb9f3e4 posix_acl_valid +EXPORT_SYMBOL vmlinux 0xeed3635b proc_dostring +EXPORT_SYMBOL vmlinux 0xeee31be0 cfb_imageblit +EXPORT_SYMBOL vmlinux 0xeee99444 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xeee9f55f phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xeefc187a wait_on_page_bit +EXPORT_SYMBOL vmlinux 0xef2fdc4f __percpu_counter_init +EXPORT_SYMBOL vmlinux 0xef4f81c5 param_ops_uint +EXPORT_SYMBOL vmlinux 0xef521f19 tty_unlock +EXPORT_SYMBOL vmlinux 0xef5ca51a blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0xef687ef6 mdiobus_scan +EXPORT_SYMBOL vmlinux 0xef813311 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0xef813f01 dev_load +EXPORT_SYMBOL vmlinux 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL vmlinux 0xef89c4c4 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0xefcf3143 wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xefd55d78 udp6_csum_init +EXPORT_SYMBOL vmlinux 0xefd62232 flush_kernel_dcache_page +EXPORT_SYMBOL vmlinux 0xefd6cf06 __aeabi_unwind_cpp_pr0 +EXPORT_SYMBOL vmlinux 0xefd96d68 led_update_brightness +EXPORT_SYMBOL vmlinux 0xefdd2345 sg_init_one +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0086c5b clkdev_drop +EXPORT_SYMBOL vmlinux 0xf015168f xfrm_state_update +EXPORT_SYMBOL vmlinux 0xf02c8671 fb_blank +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf091d329 device_get_mac_address +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf0d107d6 devm_clk_get +EXPORT_SYMBOL vmlinux 0xf0d57b5f pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xf0ed2ef4 __raw_writesb +EXPORT_SYMBOL vmlinux 0xf0ed829a bioset_free +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf111bf9d generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0xf111de7d netdev_state_change +EXPORT_SYMBOL vmlinux 0xf1129dae xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0xf11c6766 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0xf122f737 current_fs_time +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf1489fa2 security_path_chmod +EXPORT_SYMBOL vmlinux 0xf178d8a5 vfs_unlink +EXPORT_SYMBOL vmlinux 0xf178d8f3 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xf1937070 __scm_destroy +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf19e9355 cpu_online_mask +EXPORT_SYMBOL vmlinux 0xf1c58b8d ps2_command +EXPORT_SYMBOL vmlinux 0xf1c6554e sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1deabf2 div64_u64 +EXPORT_SYMBOL vmlinux 0xf1e39cdc make_kprojid +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1ea6f1c __bswapsi2 +EXPORT_SYMBOL vmlinux 0xf1f286ea writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf212c032 sock_register +EXPORT_SYMBOL vmlinux 0xf2148639 blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0xf217f2ed set_blocksize +EXPORT_SYMBOL vmlinux 0xf22236ae of_device_register +EXPORT_SYMBOL vmlinux 0xf227e770 vchi_service_open +EXPORT_SYMBOL vmlinux 0xf229ca57 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xf23b4c49 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf24faf39 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xf2521e6e dev_addr_add +EXPORT_SYMBOL vmlinux 0xf26fcf89 da903x_query_status +EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered +EXPORT_SYMBOL vmlinux 0xf2bada5d d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0xf2c00008 security_path_truncate +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2ce2956 mpage_writepage +EXPORT_SYMBOL vmlinux 0xf2d96567 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xf2dc77d0 scm_fp_dup +EXPORT_SYMBOL vmlinux 0xf2f2c58c uart_match_port +EXPORT_SYMBOL vmlinux 0xf2fb996e tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xf2fdb3d5 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xf30a0a95 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf31a3e76 tcf_register_action +EXPORT_SYMBOL vmlinux 0xf31ddba8 nvm_put_blk_unlocked +EXPORT_SYMBOL vmlinux 0xf32995ea dquot_scan_active +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf3594020 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xf36dbb8a scsi_host_get +EXPORT_SYMBOL vmlinux 0xf36effe7 make_kgid +EXPORT_SYMBOL vmlinux 0xf37ee80c __devm_release_region +EXPORT_SYMBOL vmlinux 0xf387aea5 dst_discard_out +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf38ca208 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xf390d7c5 single_release +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xf3af137d dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xf3d3954d end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0xf3d5d2f6 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xf3da13f1 dma_find_channel +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf40b2297 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xf41a1406 d_splice_alias +EXPORT_SYMBOL vmlinux 0xf41b792b ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xf42d5fc5 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0xf439ef4d filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xf43b7469 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0xf4412bc1 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0xf4463174 kthread_bind +EXPORT_SYMBOL vmlinux 0xf46fd61a kernel_param_lock +EXPORT_SYMBOL vmlinux 0xf473ffaf down +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf4967495 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0xf49785c9 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xf4b49cbe kern_unmount +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4fa543b arm_copy_to_user +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf54c51a2 dma_pool_free +EXPORT_SYMBOL vmlinux 0xf551b340 seq_release_private +EXPORT_SYMBOL vmlinux 0xf55ee0a4 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xf564412a __aeabi_ulcmp +EXPORT_SYMBOL vmlinux 0xf5865f87 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xf5a5d279 down_read +EXPORT_SYMBOL vmlinux 0xf5af0ae2 d_alloc_name +EXPORT_SYMBOL vmlinux 0xf5bc97a0 devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5df5d14 of_platform_device_create +EXPORT_SYMBOL vmlinux 0xf5e20d0a vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf5f3e9bf ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xf5f7f983 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xf60c4851 genphy_update_link +EXPORT_SYMBOL vmlinux 0xf6223603 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xf636fba7 fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf63af2ce cdrom_release +EXPORT_SYMBOL vmlinux 0xf6478c5b tcp_conn_request +EXPORT_SYMBOL vmlinux 0xf6535238 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0xf663d62b inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xf66903d3 sock_get_timestamp +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf6851d5f register_sysctl_paths +EXPORT_SYMBOL vmlinux 0xf68a133e deactivate_super +EXPORT_SYMBOL vmlinux 0xf6b46a5d mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6c2f17d iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0xf6c5e454 kern_path +EXPORT_SYMBOL vmlinux 0xf6e07828 param_set_bool +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf6ff0a67 new_inode +EXPORT_SYMBOL vmlinux 0xf6ffdcdc scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0xf7042fff serio_unregister_port +EXPORT_SYMBOL vmlinux 0xf70e9c99 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xf7163ec9 __raw_readsb +EXPORT_SYMBOL vmlinux 0xf717809a d_obtain_root +EXPORT_SYMBOL vmlinux 0xf7312cd1 dev_addr_del +EXPORT_SYMBOL vmlinux 0xf73614ca qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xf75137bb generic_setxattr +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf767f604 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0xf77d9c7f phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0xf7802486 __aeabi_uidivmod +EXPORT_SYMBOL vmlinux 0xf7aaeddc ida_init +EXPORT_SYMBOL vmlinux 0xf7c36e25 DWC_THREAD_SHOULD_STOP +EXPORT_SYMBOL vmlinux 0xf7ef0275 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0xf7f16b3f input_get_new_minor +EXPORT_SYMBOL vmlinux 0xf7f92c1c km_is_alive +EXPORT_SYMBOL vmlinux 0xf8078b83 __skb_checksum +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf814c0c0 neigh_connected_output +EXPORT_SYMBOL vmlinux 0xf819cc07 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf8335193 pipe_lock +EXPORT_SYMBOL vmlinux 0xf83896c5 flush_signals +EXPORT_SYMBOL vmlinux 0xf838e9f7 DWC_SPINLOCK_IRQSAVE +EXPORT_SYMBOL vmlinux 0xf856c352 security_inode_init_security +EXPORT_SYMBOL vmlinux 0xf8571777 component_match_add +EXPORT_SYMBOL vmlinux 0xf86347b8 elv_add_request +EXPORT_SYMBOL vmlinux 0xf873563b blk_mq_all_tag_busy_iter +EXPORT_SYMBOL vmlinux 0xf881fd4a inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xf885b0d6 of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0xf88c3301 sg_init_table +EXPORT_SYMBOL vmlinux 0xf8aeda1e kernel_sendpage +EXPORT_SYMBOL vmlinux 0xf8b26136 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0xf8d20cec dma_mark_declared_memory_occupied +EXPORT_SYMBOL vmlinux 0xf8d5811a dev_emerg +EXPORT_SYMBOL vmlinux 0xf8dba0bf bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf8f9177b dentry_unhash +EXPORT_SYMBOL vmlinux 0xf90fa8c8 netdev_crit +EXPORT_SYMBOL vmlinux 0xf92750a0 rt6_lookup +EXPORT_SYMBOL vmlinux 0xf92d88e8 console_stop +EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run +EXPORT_SYMBOL vmlinux 0xf9410f18 vfs_statfs +EXPORT_SYMBOL vmlinux 0xf94af555 xfrm_input +EXPORT_SYMBOL vmlinux 0xf97acc12 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xf97d3d3e file_path +EXPORT_SYMBOL vmlinux 0xf9811a86 generic_show_options +EXPORT_SYMBOL vmlinux 0xf982b73a audit_log +EXPORT_SYMBOL vmlinux 0xf9a1a26b try_module_get +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9a62b4e inet_add_protocol +EXPORT_SYMBOL vmlinux 0xf9c00aa9 DWC_ATOUI +EXPORT_SYMBOL vmlinux 0xf9db5d12 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf +EXPORT_SYMBOL vmlinux 0xfa0b6195 skb_find_text +EXPORT_SYMBOL vmlinux 0xfa416e6e iov_iter_advance +EXPORT_SYMBOL vmlinux 0xfa5082ca inet6_del_offload +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa51ac5a param_get_string +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfac68eba arm_elf_read_implies_exec +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfac97ab4 bio_init +EXPORT_SYMBOL vmlinux 0xfacd2e14 pgprot_user +EXPORT_SYMBOL vmlinux 0xfacf130f pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0xfad63de2 i2c_release_client +EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL vmlinux 0xfb048de5 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0xfb0544e9 security_d_instantiate +EXPORT_SYMBOL vmlinux 0xfb0fabd5 of_match_device +EXPORT_SYMBOL vmlinux 0xfb1208d6 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xfb295b51 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xfb47dd7b truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xfb4bad38 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xfb576404 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xfb674cf1 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb78b9d5 neigh_xmit +EXPORT_SYMBOL vmlinux 0xfb7d9c45 __udivsi3 +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbd52c17 PDE_DATA +EXPORT_SYMBOL vmlinux 0xfbfb80ac dev_alloc_name +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc0974dd vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xfc0e9c0a release_pages +EXPORT_SYMBOL vmlinux 0xfc20f3c9 DWC_WAITQ_WAIT +EXPORT_SYMBOL vmlinux 0xfc216e62 single_open +EXPORT_SYMBOL vmlinux 0xfc23e56b sock_release +EXPORT_SYMBOL vmlinux 0xfc3908f5 fence_default_wait +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3ed838 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xfc4f6343 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xfc676b0d dev_driver_string +EXPORT_SYMBOL vmlinux 0xfc8d9375 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcc468a3 serio_open +EXPORT_SYMBOL vmlinux 0xfcd0e800 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfcdc4352 dquot_quota_on +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfd218ef4 generic_update_time +EXPORT_SYMBOL vmlinux 0xfd305341 walk_stackframe +EXPORT_SYMBOL vmlinux 0xfd33b5fa cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xfd43644e __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xfd525728 uart_update_timeout +EXPORT_SYMBOL vmlinux 0xfd5683b9 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0xfd6d8391 serio_close +EXPORT_SYMBOL vmlinux 0xfd8a40c4 revalidate_disk +EXPORT_SYMBOL vmlinux 0xfd8c5afc release_fiq +EXPORT_SYMBOL vmlinux 0xfd8f4acf tty_devnum +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfdc10c95 dquot_resume +EXPORT_SYMBOL vmlinux 0xfdd439ff __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0xfde41110 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xfdef2ac6 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xfdf7f50f jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfdfcc023 dev_remove_pack +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe031bf2 sock_edemux +EXPORT_SYMBOL vmlinux 0xfe17b7e5 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xfe23d97e dm_get_device +EXPORT_SYMBOL vmlinux 0xfe2b4273 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xfe2e3ba2 of_match_node +EXPORT_SYMBOL vmlinux 0xfe33c6c3 sg_nents +EXPORT_SYMBOL vmlinux 0xfe3562da put_tty_driver +EXPORT_SYMBOL vmlinux 0xfe485fbf set_device_ro +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe69bc62 vchiq_bulk_receive +EXPORT_SYMBOL vmlinux 0xfe79fa03 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfeca7590 radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0xfecb73c0 DWC_EXCEPTION +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfee02c73 sock_create_kern +EXPORT_SYMBOL vmlinux 0xfef6b8c7 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xff1a0073 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff30059a jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xff35007a xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xff390b25 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xff5b5d3b blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0xff67b37f __lshrdi3 +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff6a930c DWC_TIMER_FREE +EXPORT_SYMBOL vmlinux 0xff87d5ca bd_set_size +EXPORT_SYMBOL vmlinux 0xff8cbb1f idr_destroy +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff9c7c78 mii_ethtool_sset +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xffae64ac bio_unmap_user +EXPORT_SYMBOL vmlinux 0xffb94ef0 _test_and_change_bit +EXPORT_SYMBOL vmlinux 0xffcf899a unregister_netdev +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffff92f9 sock_no_sendpage +EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0x61a033ad sha1_finup_arm +EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0xe18e4c6d sha1_update_arm +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x078d8b89 ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x653e8904 ablk_init_common +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x79c43feb ablk_set_key +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x8056e7be ablk_init +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xc72c6a07 __ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xe7ba18a4 ablk_exit +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xfd950592 ablk_decrypt +EXPORT_SYMBOL_GPL crypto/af_alg 0x018fdb91 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x1369a1e7 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x174f1532 af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0x4b114d0a af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xba0fb35e af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xbf575c41 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xc1ed1602 af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xc7f4025a af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0xd9322f2a af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xd954ef95 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0xe9727d47 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x136779db async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x38c1e769 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x7f346384 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x8c31072c async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xae75e99f async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x141ffed0 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x4b759f56 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xa09aca4f async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xebaeeb46 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x7b970365 async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xf31039e5 async_xor_val +EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x096c885e blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x5b7100c0 cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x41e22f84 cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 +EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 +EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 +EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x51b849bc crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x7067ae21 crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/cryptd 0x190c166f cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x22dbe846 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x5c3f4a8c cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x5fb4bc65 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x7bc79424 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x8e300e66 cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x984b3b00 cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xd75f54f9 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xdfc955d5 cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xe5d79730 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey +EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey +EXPORT_SYMBOL_GPL crypto/lrw 0x18f7c02a lrw_crypt +EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table +EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table +EXPORT_SYMBOL_GPL crypto/mcryptd 0x01f15056 shash_ahash_mcryptd_final +EXPORT_SYMBOL_GPL crypto/mcryptd 0x14bdd4d3 mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0x267392cd mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x420149ee mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/mcryptd 0x5f9aa47b shash_ahash_mcryptd_finup +EXPORT_SYMBOL_GPL crypto/mcryptd 0x8f9f4f47 shash_ahash_mcryptd_update +EXPORT_SYMBOL_GPL crypto/mcryptd 0x905dd92c mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x9c2fe6d1 mcryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/mcryptd 0xb15dde61 shash_ahash_mcryptd_digest +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x09ab982d crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x19ccb589 crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x91dc3fe3 crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x9b8bd090 crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x73c9da8e serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xc6ec9ce1 twofish_setkey +EXPORT_SYMBOL_GPL crypto/xts 0x1ea51a0f xts_crypt +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1e5cf9b8 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x210a5739 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2ef097b8 ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3f56f82e ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4c6ee06a ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x55102d50 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x69c43d1d ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6c4c12e7 ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x731b2992 ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7970743b ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7fb4befd ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8669ac6c ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x89679524 ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8f7b1bfc ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8fb1602b ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa8863273 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb083f051 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb93ee7a2 ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbe82c655 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xcf9ef20e ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd9bcca95 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xef735b36 ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf3baf7c5 ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x1042d9c1 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x1e4efd80 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5fcb687b ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x615056a0 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x88004e7b ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x8942c28a ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa6b4042e ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa9bcaa3f ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xacf8920e ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb8605387 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc5a0cc2e ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe9134806 ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xeaf5cdcf ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xb4981980 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x1d2340f8 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x1dbf77d4 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x48f1216f __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xcaf8cf63 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0bb999d7 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1cfd46c4 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2a874936 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x302fc3da bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x39d510c0 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x448bd33c bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x48f02d57 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x48fabbec bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5c99881c bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x713ecea7 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x927c2fd3 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9b18784f bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9bfe5464 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb40d967e bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcc3739e9 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd9dd0629 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xda921ad3 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdd4d59f4 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdfd51e33 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf16d94e3 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x18ab0c01 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x2db55d2e btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x344cf682 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x6444fcc0 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xe34c88d4 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf2a57329 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x047f120b btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0a342be6 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1e64c782 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2ebb8f60 btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x42977248 btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x73545f12 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x78ddfcf1 btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x80a3d15b btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa7201003 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa940ed67 btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb4b63001 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe1aec1bb btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x09ab707b btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x307f5435 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x35372f21 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4533d7ea btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6540e6a0 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x677333b9 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6b19b996 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x790d66a3 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa261bca8 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb37eae42 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfc904c23 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x8d0a7f29 qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xa9b5d7d0 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x7b317e3a btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x6b369fe7 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/cpufreq/arm_big_little 0x546a530a bL_cpufreq_register +EXPORT_SYMBOL_GPL drivers/cpufreq/arm_big_little 0x896284ff bL_cpufreq_unregister +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x13022298 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x440336a0 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7dfd3caf dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xdf866e88 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xed4b8a1f dw_dma_disable +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0a5d2a08 edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1626da6c edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x166eb89a edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x16d9f527 edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x24061c56 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x31144731 find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3bb665fc edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x68dec94a edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8d5e00aa edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa4c76ce8 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xae2ee481 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xae831e1e edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xcb32d25b edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xdd21f941 edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0xe342fbf5 get_scpi_ops +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0547135c fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x62057b7a fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7fb7564c fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8a1c3430 fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9d375ebd of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xaf9e749b fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x466d38b0 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xc2252ed4 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x02d00e6e drm_gem_cma_prime_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0be631fe drm_gem_cma_describe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x13ad68b4 drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1625f545 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2e8e571f of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3991518f drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3ee64b29 drm_gem_cma_prime_vunmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3f3f7781 drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4d922e43 drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x796a4b0e drm_gem_cma_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x87cceeaf drm_gem_cma_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x888203a9 drm_gem_cma_prime_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8f2e904a drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb0023e9a drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb86bd855 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc4c9c227 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc6edb567 drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd85fcb5e drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfa1a0cc3 drm_gem_cma_prime_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1148b623 drm_fbdev_cma_fini +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x16008135 drm_fbdev_cma_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x660130a5 drm_fb_cma_debugfs_show +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x80a56052 drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb2c912af drm_fbdev_cma_hotplug_event +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xcc337fd5 drm_fbdev_cma_restore_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe0fd0522 drm_fb_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x67b8dea2 ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xde034016 ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xee2bae8b ttm_dma_page_alloc_debugfs +EXPORT_SYMBOL_GPL drivers/hid/hid 0x03f8a6d1 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x071dcb5b hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0ff7c032 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x10c88171 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x17e9ecec hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x199f6394 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x25454701 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3aec5b48 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x43cb1eb9 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4c2a870e __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x58d2caf6 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5c32b031 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x73b8d862 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8642b343 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x913458c6 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x98c2b1d4 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9a64141d hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa0464596 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb0fc1942 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb25f6dd5 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb34a5617 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb921463d hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbfff30a0 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc1624b26 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc55ed0c7 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd056cb83 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd135e958 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd14f062c hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd36d98e6 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd44ecd23 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd601a6e6 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd9513243 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdbf1518b hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf3001389 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf8b70336 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfe9ec562 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x1c4d1aca roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x0b81ed8c roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x4b84d841 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x74981736 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x82f6b354 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xa84f8dfe roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xc8284800 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0204c92e sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1588bb93 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7b769ed7 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x8953775f hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xba310845 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe18f1516 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xeaf0c2db sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xed34c8b1 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf2191e55 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xd70c1e4f hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x08172d1f hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0c9c3a51 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x12d78db8 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x16cc8db4 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2de51bbf hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x55dade05 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6223c651 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7057b0f9 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x752580ab hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x761c574c hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8b135b2c hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xaf021c95 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb05fd41a hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc46f55ed hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc8345be9 hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd3954b2a hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd571b0a7 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd719554b hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x03d43177 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xa1ced871 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xa6462247 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0600b671 pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0682e12a pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x1221488b pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2bf8421a pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2fb667b3 pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2fcf60ac pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3eaea3de pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x42c4e524 pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4a9747a7 pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x5d103415 pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x600296ff pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x9303a3cb pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xd0f0dba1 pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xd29c9075 pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xfd0b5189 pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0c1bcf7f intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x17627e5b intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4125b20b intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x759600b7 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7d8beb70 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa307207c intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xea36e2e0 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5565957f stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x72bb8a2e stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf376a17d stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf69b5d1d stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xfdbc2cea stm_register_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x1915b13f i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x5b59edb3 i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x973395c4 i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xca7b4c82 i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xf037cebb i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x6649b082 i2c_del_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xa921a58f i2c_add_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xd2dbb3d5 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xd83f31e8 i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x1c5f441d bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x6b4b68d2 bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x9c71b700 bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x014cf520 ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x09e790f3 ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x0abbc902 ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x3f5897a7 ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x41536a6f ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x64f398d5 ad_sd_reset +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x8bed954c ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd14f7c8a ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd3dc2ef7 ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xf0a95bf4 ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xcb32b13c iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xe24e280c iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x873d6393 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xe3df0ec2 ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x58d74786 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x780f5821 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xdcb3d948 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0b9cd78a adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x233931aa adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x3e7057b5 adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x410d7653 adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x60eff25e adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x6b32ca92 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x78484b36 adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x8476b264 adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xa28a0661 adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xe9740998 adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xeb34b701 adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf93fdd4a adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x027d4055 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x07bd6518 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x09e54bf8 devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0b953f29 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x159dd711 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x187ed69b devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x24101935 devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x24d1da8c iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x30095155 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3cf00c7c iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x46832810 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x53ffa85d iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x55321cde iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5ce3ad75 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x616c276a iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x68df05f5 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6b66060c iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x70ababa9 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x86e7f12d devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8d7051cb iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x940cf8a5 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x96d3196f iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9df95246 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa122ec4e iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbb729322 devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc52ec126 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd43b25d6 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd9f3fffa iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdbbaa0dc devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe30e841e iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf053c728 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xdbfe0361 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xb9872e05 matrix_keypad_parse_of_params +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x1ae2ed17 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xa079323a cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xa3fe6848 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xcb353a9c cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x6649900c cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x9c651df5 cyttsp_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xcab6a1c0 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xf49d6b30 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xf5fbdd93 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x756d8ce3 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x9644e3ca tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x9924c155 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xbb237ac7 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0672da52 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1c7f0679 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1cf56dc0 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x39d6f10e wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3f465f6b wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x44d39a16 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x47ca88a3 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5d8db114 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x801f84a0 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8b60883d wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x96de9567 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf4845929 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x0e391a7a ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1aa41c90 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1fca88bc ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2a21f47c ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x426ff841 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5612d57c ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xaf6a9c28 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf045380a ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf29132b1 ipack_device_del +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0a8dcb34 gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0fa9f05a gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x38324bd6 gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3f5e8208 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4004530a gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x519aa5a6 gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x553443ff gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x59720180 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x5bd74d10 gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x71e3b4bb gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x72b6028f gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x76ec3ce3 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x96302434 gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa29f5342 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xaad4221d gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc1e74efe gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc3409b9a gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1690b9cb led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x321047b1 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x62747ee7 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x75be55a6 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xc53656c8 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xe568a5d8 led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x0c2aa72b lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2c4a7ee6 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x5cb5a624 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x77b7c35f lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa0ed3340 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xacc93eb5 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xadfda4d1 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb5ed1c8e lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb91fbd67 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xbed7e9a6 lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe58e488f lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x01094067 mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x18b17fdb chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x2c775235 mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x42b0d8d1 mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x60779298 mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x60ad87c5 mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc40d1359 mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xca7b19a3 mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xcbcd281a mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xcbd46a0b mcb_bus_get +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd7bd0d3b __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd988dcb6 mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xdbac4184 mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf9cca8f3 mcb_release_mem +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x00b74659 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2a1a7a99 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x374f45ea __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3a4dfef7 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x48991e9c __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4f124797 __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x614e860f __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x647af374 __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6724de29 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6726a0c1 __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x68f1ea6d __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7114cfcc __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x78c57fa5 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7cb4bd6f __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x816ebfe0 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x833b99dd __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8afe3e2b __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x912566ef __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x92c55e92 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9c59320b __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa7004101 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaf2376ac __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb3942afe __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb4cffcbb __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb9c28744 __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc0bd3171 __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc773563c __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd81ad8c9 __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe30b6b2a __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6169c53 __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfcb52b5f __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x051f142a dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x293f3676 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3d582713 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x488d4810 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4f0469c6 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6f260568 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa1395655 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa8c39aaa dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf6e5d828 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x1c83d545 dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x22163b69 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x3909d3a8 dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x594952bd dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x62a23587 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9b2b253a dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xdc69e37a dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe004ee92 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x10562548 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x1fe2907e dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x4d264f2f dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa6341b85 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa9f6aa67 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xcd58231b dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe05db6f1 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x62a6758a dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xa7c477ec dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x09472122 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3792b6bf dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38be35a7 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x860b1ec1 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x883e3cac dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x9f4af1da dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa8813ad6 dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc66ce277 dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcab63c3d dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xe33acf6c dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf37a3cfe dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x081f478f dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11eab9fe dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x150c85ce dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2e730a21 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x33c03da6 dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x619701dc dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9b4b5b29 dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2507774 dm_tm_shadow_block +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbcfdc290 dm_tm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbe0497aa dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xead1e727 dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0a7fc666 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1394bf8d smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x16241e76 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1c9ea3f7 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1d1e2813 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e49bb1 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x408cb547 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6c8cbcd7 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x72c5450a smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7d9443d5 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8063c38a smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8aa78590 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9a45b81e smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa98d97cb smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa9b7d2d1 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xadb657f1 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe3fb8fb7 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x394f4840 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x5b8918d3 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x029195be media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0x1bde0abc __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0x24898950 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0x3066fb66 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x361c8b2b media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x3869678e media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0x4008f852 media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0x4a33d4f2 media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0x530c3f11 media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0x5a849390 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x919054f6 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0x967bd427 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0x9c435a76 media_entity_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0xb436e48f media_entity_init +EXPORT_SYMBOL_GPL drivers/media/media 0xcaccacf7 media_entity_create_link +EXPORT_SYMBOL_GPL drivers/media/media 0xcf77dab3 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xdd0e11d8 media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0xfbb6e2db media_entity_put +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0b2585ce xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x1a21520d xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x1ce06d41 xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x4415b495 xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x490bd11c xvip_get_format_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x5a426a45 xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xdb867b8b xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe750d727 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xff62c945 xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x134f9eff xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x1fc18549 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xd4e2dc9f radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x274073e5 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2a4a7436 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x371ac96b rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5669cef8 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x80a396c7 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8c2460f5 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x92c61356 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x991987ad rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbaa09ca6 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbced38f9 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc9b92ea1 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xca9ea515 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcf8369c6 rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdbedcadf ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe131bff9 rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe1d16e58 rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe2d85bb2 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfcaf1e5e rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfe1bce8e ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xd5f41de4 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x1d5c45a2 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xdaee40dc mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x1cfdcab1 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xd93ce440 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0xe2d1d2eb tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xc99ba5a9 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xe95502ee tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xf803f46b tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x93748b37 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x9e1c6a18 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x04f1daea tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xd633f8c5 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x2f5a87bb simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2ab41f07 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2b22369c cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3639d58a cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x42c31f71 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x55c6b5cf is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x70ed2859 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x70edcc32 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8ee18fa2 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x994af053 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9b3baaf4 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9c2be8a3 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa92acbaa cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb24934d9 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb2502860 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc8b4d164 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd3182ab5 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd3e8bba9 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xeea3361d cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf1dcdee5 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfd1e8795 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xae136aff mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xf1189c14 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0020cb70 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0b9a2916 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0ceca5fe em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x20387752 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4240806f em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4f7186d1 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x52619aa9 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa8ddc9d7 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb5c72c1a em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb640df72 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbb28bea5 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbd9838b4 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc6f1244b em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcf7cb616 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdade39cb em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe356f466 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe999e237 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf490a855 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x5f3362eb tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xc7abe30a tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xe1a63674 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xeebd1c7f tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x1bc89dfa v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x25edf4b3 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x4620831e v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x841de476 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xcb032dfa v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xd12299f9 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08982d59 v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x68dc5ef6 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xf302da36 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0b8c57f5 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1ce424d9 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x271f756a v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2864e153 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3685105e v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x39cb781a v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4046cc73 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4ed387a7 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4f3c3909 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5d8ccab8 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x63873d20 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x64d9271f v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6866dc29 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6fcef44e v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7ed91cdb v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fe9a4c2 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x88afa363 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x896994f9 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9e828e28 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa73057f0 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb05823b4 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc3034c3a v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc579ae83 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc7b26c31 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe93e49d3 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xeb22f79a v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfe6ceb72 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x04595446 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x11123cbf videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2d0b8979 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x36a73b20 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3db54f8a videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x51c3c8da videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5654f95d videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x78df2a07 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x89524b37 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8c1f6646 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8d4ba1eb videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9b4ae3ea videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb25a6832 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbb27c9bb videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbee97add videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc6ddb59c videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xce54d09a videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdc188ec9 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe7ca7a59 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe9e1f1b9 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xedd00798 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf12331f5 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf201a414 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf5399119 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x4e6d570c videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x4ef05eee videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x5538e673 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x083ffd97 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x09c15d86 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x3ff72aea vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x5066e070 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x510c357a vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x5884d6a8 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x775d1779 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x805450dc vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x818bc267 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x9d88855d vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa98ce719 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb1892bd8 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc7f6a97f vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xda8ad1c6 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xdb0d9002 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe2d3e21d vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe96f2a95 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf4a1ba0b vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x1c054675 vb2_dma_contig_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xbc3481bd vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x0f2a0d09 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x533f528f vb2_dma_sg_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd30ec30f vb2_dma_sg_cleanup_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0xf2368b65 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x01bd27fc vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x07950bcc vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0e98a8e1 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x12e96fdf vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x202796ec vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x22e81af1 vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x25c86cb6 vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x317f2c14 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x328f8021 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x38a96f69 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4c97b3f7 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4d7d8c25 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x67596936 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6b0e256e vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x72233567 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x72a0c280 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x838d4688 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8d1fa5d4 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x92d31aeb vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x98b79b82 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa1ef79c0 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xaf9a577e vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbbd9909e vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xcbce5b8a vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd01c4100 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd59c26b2 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd6e87fdc vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd6e88faa vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdc5b13a0 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe6f1d767 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xeff49d32 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf660e454 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x000ee894 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x085c1c98 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x08c8b643 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0e8520b5 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x28d20b15 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2a2861e7 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x31e3d76e __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x33207f53 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x349e093c v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3740e82b __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x48fd2dfa v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x49d07cce v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4f0c49d9 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x529d57b3 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x556c3b7b v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x60709730 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7a85f5d7 __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x88345302 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8ca95339 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8e68d45a v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8fa601e9 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x90d5085d v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x98545b10 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9ef1713a v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa1f7c39f v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa4d8e7bf v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa67ebf26 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaec5660c v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb1787620 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb6ffe91d v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe4cf2b76 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5cf12e3 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeabf9b4b v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf10e9184 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5956f8c __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfe0293b0 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xff32c851 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x871bf933 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x8e838eb0 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xb3fff42f pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x137e02b8 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x1ceb97eb da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x54188d62 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x5fdc843a da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x9fce70e9 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xcd4d4dc4 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xebd457bb da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x165651f6 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x55d5337d kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x70983f0a kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x7270ca37 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x8191caa0 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xbe767694 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe0f5b544 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xfa7b5112 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x6f7f5dcc lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x75efb5fc lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xd028d5ff lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x27830890 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x36f9c6ae lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x598c7461 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x86cd5411 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x9d52e458 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xb222ae7b lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc9b43971 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x5a31ed11 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xdd9c6ce8 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xef5d8a13 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x07b8ab8e mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x15b75ee6 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x42bfba65 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x4702e0ae mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x8115507f mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xbd83818c mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x10d34269 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x15ec5a43 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4147548f pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4d40f8bf pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5a5645d2 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x654d176e pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x819546fa pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x88ea17a9 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8f23ad7d pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb42ad45b pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe6ff2575 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xabde5c53 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xd3ba889f pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x1b27e2a3 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x34ead7d3 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x35edb3af pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x68ffec81 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa6a72bcd pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read +EXPORT_SYMBOL_GPL drivers/mfd/rpisense-core 0x647fd315 rpisense_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/rpisense-core 0xa7f4d109 rpisense_block_write +EXPORT_SYMBOL_GPL drivers/mfd/rpisense-core 0xbc0cab33 rpisense_get_dev +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x0721cecd rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x2baad82d rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x58d362d3 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x58fc721c rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x86f4e1ee rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x93a8dfbb rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x9da3308d rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb1087809 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xd45ca22a rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xda5cd1d7 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xde54c68b rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xeacdb775 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xeb1e62fc rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x11673499 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1fd3432e si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2333cd5d si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2961a848 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2cafe564 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2f6d3b4e si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x317820cd si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x31f793ed si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x34af0556 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4fb320ba si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5642b6e1 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x64a60e80 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x652fff30 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x723aafd3 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x75fedb43 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8150b1e8 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x842cb5a8 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x93eb2db2 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa34d0349 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xaaa172f9 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xae06b10e si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xae11798f si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb209e58b si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb6da4f43 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbe7a26db si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbfdf7c1f si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc3065b21 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc65dff1d si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd6e348cf si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd8007022 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd82de23e si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf416b865 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf5ba5c4a devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfd4370aa si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x0f916bd7 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x3887e450 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x6ca45ade sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xa2b7141c sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xf928f60e sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0x339a6d8d ssbi_read +EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0xc25d5746 ssbi_write +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x8a6ef922 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x90be7218 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xa01da626 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xd4d91a60 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x038356c3 tps65217_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x10e0bf06 tps65217_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x49fb8d3b tps65217_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x6ae4e1e6 tps65217_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x6a37647a tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x731b095d tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xa19e8fc6 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xe5f03379 tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x679f71f4 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x8e1d47e2 bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xa443843c bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xbd3bd877 bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xd292108d bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x26c0723e enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x281225b7 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x45888800 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x55354866 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x6df19fd6 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x85fda422 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xcf7a4af0 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe7f9d894 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x3058a5ac lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x34ec9ce5 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6b6bba25 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7ae3c2bd lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x90c11887 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe2af5198 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe4c1c735 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xea3e725e lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x81df6421 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xcd6e377b st_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x6a511947 dw_mci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x744b19af dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xcd707252 dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x3fa2d184 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xc2bcf412 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xfd95d1fa cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x0bd3e3c9 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x7581a819 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xf82a2c4f cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x4cef0061 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x244e333b cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xc48835ed cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xf6f7d277 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0x20f17c3b brcmnand_remove +EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0x824e5371 brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0xbe246b2d brcmnand_pm_ops +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x0f7309bf onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x5ec3ed65 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xe8d4b26d spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1bca06ba ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x385a0604 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38eef22c ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42dc801b ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x538599c1 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x63c624af ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x668f6d58 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x76172f9d ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x78cb8d2d ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8278464e ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x99910f15 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc0f24f87 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe86f7ae5 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf561c72c ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x744f0674 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xaa7c144d arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x38798c34 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x5a66cfad unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x5b30fdc8 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x7d5a0665 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xcd6f86ef alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd1067fb9 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x30e4230a can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x4ba5c94d can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5700f8c0 can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x71bbbfc0 devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7eb93747 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x8a6fc0d9 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x902f0338 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9d604925 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa597c6c9 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xab3aeb37 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xba4ea554 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xbc069d9b close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xbc513bac free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xcd8d8265 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe439aa4c alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe8668916 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xef62dc10 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xf2b8208a can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x04f13f98 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x4be9d51e register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xa0ea04ae free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xeb36499c alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x825549af unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xaf53321c register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xba4295e5 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xe3fa27de alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x3c9dfc1a arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xaa223766 arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x08ed7de1 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x368d3d71 regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xd4ab3625 regmap_encx24j600_spi_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x0831794e stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x81e58d10 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xdfa4bfe8 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xe742ad88 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x6329069d stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x9b307148 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xb48de52a stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xedf046d8 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/geneve 0x8eafe2ea geneve_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/geneve 0x99083cb7 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x13ec3a12 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x42cfcf80 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x9d2fbe1a macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xa643a7d8 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvtap 0xe45ccd56 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0f038836 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x19119606 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1ceea137 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x79a252bd bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7d05da8e bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb336b8ed bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb9b8c852 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc5e17074 bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe915cee5 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe9a38a8c bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x4db2db46 mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x575e1a1e usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xa4913d9a usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xc486e7de usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xf876cd84 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x26977119 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x278a3bb1 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5c5cf166 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8d5b357e cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xbf872ea4 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc2a910d5 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd3ad04e9 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xdcf4866e cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe0e97841 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x1d6d1ef9 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x2ad997f9 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x2b3548d3 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x313c41f3 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x3699220c generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x71e04e1c rndis_command +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x6896206e vxlan_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xcf7fcc3c vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x07be2549 i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1529a883 i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x15f2a628 i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1d51ae81 i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x22b7cc97 i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4ee829cc i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x556c1d41 i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5af068d2 i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x63e74d06 i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8a923ac9 i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8ce3da9c i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xbd4b1d7b i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xcede20c7 i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd6d5770b i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe33b17cc i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf58f8c74 i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x12ed3bb4 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x79886c75 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x7adcec2a cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xc5c0b28f cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x1b02e5bd lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x29ae5030 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x3ce62da5 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x462da42e lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x46af0c0f lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x4e06c21f lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x8fdc5524 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa0f05bcf lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb3fd5d75 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb4fe5e5a __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc2dd153d lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc729ace9 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xdfaca64e lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe1b34eae lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe248b3da lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe667d9df lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x066e8a3c lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x2489bdfc lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x4a8b0b43 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x6559c7bd lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x892638fc lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x941b69b3 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xcd797cb9 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xf09778a4 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x022350e5 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x190eec23 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x4305d7cf mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x4416f363 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x560b9173 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x6016fcc8 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x74a55611 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x844b130b mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x9350de98 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xacc4e2aa mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb278da7e mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xbc3d7369 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc2cd206f mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc33dd664 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc50bc4c7 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xce2dc3d4 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xd5b9da11 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xda728e1b mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xfe6df498 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x1070028d p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x3aac2aaa p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x5df41f32 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x63652c78 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x8c2cc7b4 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xad3ab702 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xcb4c436d p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xcd53d721 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xef6ca76e p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0ee62897 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6fbb23c8 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7f7a2e0f dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa443731b dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1409e3db rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1ca0c06f rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d882d91 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3d454ed7 rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4da4620c rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6644614d rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6ece9fae rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x749c0620 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x75f29390 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7bb8ee0d rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8061907c rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x913c2e30 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9ff95cd3 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa212b32d rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbe2e8cd2 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc627d8ea rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdb1f3049 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe5ed3e9e rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeadbbf60 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf5379cd1 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x3c7cd237 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x3fc44978 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x4f1bea92 rsi_init_dbgfs +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xb63feee7 rsi_remove_dbgfs +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xea71a2a7 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xfa5ad7c3 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x00ebbd27 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x039acd71 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x05a1f935 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1640a8d5 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x26f9f02f rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x352293ab rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3897c41f rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x38db1abe rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x39a959eb rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3eaa9942 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4f147a19 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5135a973 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x538eac0c rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x585dcd0a rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x58e4f009 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x59d6a62c rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5ed5e0cb rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7190e49b rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x755b0057 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7ffb3514 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x80c13d77 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x982ad895 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9ab2c7fa rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9b003819 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa2be40bf rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa3d586f7 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa5730288 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xaf423994 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xba02d59c rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xce5f87c1 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd7f98109 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xdc3fc62c rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe758ee45 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe7bb8868 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xee6901f2 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf1c3c74c rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf689f8f0 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfd247118 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x04c1585f rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0a002dba rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0a00b1d0 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x13235766 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x17bd687d rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1f5b950c rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2414bb7f rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x296146f8 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x29c956ab rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x314a7626 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x346a0c0f rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x359b07b7 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3c98203b rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x49b467d7 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x56cbb93c rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5a3b1ccc rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x652c0ed0 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x69c56d1c rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6fd1c4ba rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x75e7bd82 rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x77b188b3 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x78bef716 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7a42218e rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x862c0280 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x882dde34 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8b7b96c3 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8e09d5fc rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8f7949a1 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8ff260ec rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x95f36008 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa8c2c838 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xacb6c697 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xae62e107 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb32e834d rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbce4ebf5 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbd0dfa04 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc0b098f4 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcc25e919 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xce36a10c rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xce827761 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdb0e6cf3 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdb4a7473 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe749932f rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xedba2bdd rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf0d27806 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfada2929 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x33cb8668 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x7308b364 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x74657ace rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x79e0d4cf rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x7a4d2bdf rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x8b5a68b5 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x8fd72eb8 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x922e05ed rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x9471847f rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x9e6b14a4 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xa5240861 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xa674eac3 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb38b2627 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xbbd92aff rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xcc4e987f rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd1b51b22 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x2bcd353b wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x3e6d6a0f wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x99c0e556 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x02b51e41 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0653995d wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x099ec3f6 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x09f53e3a wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x107e4243 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1ecfde96 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x24c9c810 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2ed02f9d wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3a285b83 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5a5b9785 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5af785cd wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x618dbc7c wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x680a869f wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6bd352ec wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x723c1667 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x73ab6b15 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7967ba4c wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7db9af25 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7ed0f166 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8ed63fa3 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91b75dbb wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91da5146 wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9a229cee wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9a6ad958 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9f2a6863 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa0d21ba3 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa5607554 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xacc9f535 wl1271_ps_elp_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb29af830 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb63d3345 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb846e921 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbc321022 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbfcd9507 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc05a3a3f wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc544849a wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc9d3beb5 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcffdbfb1 wl1271_ps_elp_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe14160b6 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe147741c wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe3c0fc36 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe54e0a17 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe8094bd9 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf63b434d wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf6e12a3c wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfa4b4d7e wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x392e3d7e nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x481d15c5 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x495ba948 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x9ba2cb80 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x1e03b346 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x2f457c0d st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x3550deb5 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4e28cceb st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x56735635 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7b05aa0b st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x915febcb st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xd780cfe0 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x0f0572d0 nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x36ec8a8a nvmem_device_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3bbf372b of_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3ea8e07a devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x68758fda nvmem_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x6b6a1113 nvmem_register +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x784224eb devm_nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x87b0e3f6 nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xbd10b50f of_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc96fb674 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xd512774f devm_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe18960ba nvmem_device_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe9a7fe16 nvmem_cell_read +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x69511eed pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x868fbb45 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xa7dab2e4 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x524d7002 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x529ef261 mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x62b23cbb mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xeb916f8d mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xee7d40eb mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x1f7ee9bd wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x3f9c1e3e wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x62c18b25 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x773c4218 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd2c4d4d3 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xde702f89 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x6ee544da wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0c3da860 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x139b675b fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1b3c4c9e fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2238e53d fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3ab6a0c5 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x54f8e3f7 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5754f499 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5b336d18 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6671e2dc fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x746a8263 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7abc5fc1 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7bfcdd81 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8ed028ae fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc87c5b32 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xcc865e82 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xed2d591b fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x15126736 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x1c65ebf4 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7a9cc10a iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x9d5c4988 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd46e858f iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xfe9e54de iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0768baad iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0a327032 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0e3ea3dc iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x11db8a31 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x18d83897 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2085acb6 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x286c825d iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x29fc6e87 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2ddf60b8 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3649ff8b iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3c65b336 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3d83fd06 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4e1bd0b7 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4e908635 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5646b7a3 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x581a58cf __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x613fc51b iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x62ea4aa3 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6dfd4870 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x719cb304 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x732a8193 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x73a3de8a iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x792ffabd iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7a83d160 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x93c4b102 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x972f3d57 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa28d6149 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa35cf8f2 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa764d780 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaa6a6c3a iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb009a73a iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb3a4c34f iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xba161069 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbc433f3d iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc033a625 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc7ed5d93 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcad0f414 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcb5f43e2 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd0f07ae6 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd65db826 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd8e74de3 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf24bfb4c iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x00733945 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x056c649f iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x228d6a4c iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x44bf5537 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4913bb9a iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4ab73b3c iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5ad61ed4 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x69968576 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6f84338a iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7bbec4fd iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x81e1a162 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x92c79677 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbc0165da iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc12a505c iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xec995fa5 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf49c2ba4 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfe0bf9bf iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x03dc5c06 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x198b70a5 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1e8437b7 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x27ee9472 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2e68064e sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3a4ada6b sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4140dde5 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x71201187 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7efcad06 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8276c554 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8d51e9f9 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x90c87ece sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa14c1d5b sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa2a348f3 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa5da38a7 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaab4e556 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc16376dd sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc2c162f3 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcd7995be sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd1ff9cdc sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdd10997c sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdf00ba9f sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe4c84012 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xeae023f9 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0a85752d iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0a8eabca iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x19eb0138 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x24a46fb5 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2788a639 iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2b8612a7 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2e7b861d iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x395c716c iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x41fb7885 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4ba0431d iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x529b04c6 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5a945dd9 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5b94a55b iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x74eb5012 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x776dc4da iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x791e6725 iscsi_is_flashnode_conn_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7d78a3d0 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x80153925 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x808a933c iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x83654ad4 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84f4386e iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8c9e7d37 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9a3318b3 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa3f14f1e iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa537e8d4 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa7e2e99a iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb8dd79ae iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbcd0ebeb iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc082ea8a iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd59fcca2 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd7185ab6 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xda938754 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdae4ba94 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdb8c5415 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe42e0737 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe558fe52 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xec68200d iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xed4e82ed iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf66b7dfe iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf71ef86e iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x1a6c6790 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x4f8f0a39 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x77e64af9 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x9d3a0b6f sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x78865743 spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x079ee037 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1dee6579 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x3c0a50f9 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x46e1af1b srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x53461323 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xbc9736f7 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x739e0c00 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x7c8702ef ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x85051b06 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x8bafc8c7 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xbefb87a5 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xc0dd1f73 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xdc714f06 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x2bafda09 ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x49689a97 ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x86a07079 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xbc12cd36 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xe00df0e8 ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xe10fd5e9 ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xfac09a19 ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x1a94caa3 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xb5ccf4f3 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xd99f69f2 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe89fad79 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xf130c59e spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x425c17dd dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x4b490dfb dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x4f78b93f dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x636f87ef dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x03232831 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1cec4aab spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1ea90852 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x27d78fba spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2b729931 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x39e9f991 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3c9dee63 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3ca72f38 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3e839b8f spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x412ecfd3 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x44df62a7 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5fe7bf69 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8b2037c4 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa383dd39 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa4d1fdfd spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc2144ec3 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd4c1e731 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf0be2c52 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x90bb800d ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x06dd9b13 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0ecc42ff comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x14d70cff comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x197e7e77 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1a8525d1 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1d3737f6 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1f04062b __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x24e7be3a comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x266bdda9 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x277d489a comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x32d9b80c comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x35eb266a comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3c563f1e comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x41fc03fb comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x48b3adf8 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4a30d742 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4d92f227 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x50d95acb comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x543fb1fb comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x55b14065 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6487e600 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x679f3386 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6d31476e comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x71567e83 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9cc0d3c0 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb62bfb9a comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb90dc49a comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb14532d comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbca74bac comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcb34a6cc comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcd98c152 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdafea15d comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdcad5f7e comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe75036e5 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfb2a11b3 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x0276d726 comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x0bb57b27 comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x3ff78a03 comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x49a8311f comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x5a68421d comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x6189a95f comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xf8369cf3 comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x0d65743a comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x0e1d8c19 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x716f4c83 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xb68c5c5f comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xb97a6cbf comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xf365f725 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x0f281cf5 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x1315ead6 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x3451fd76 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x3d12d0d8 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x5297d7e4 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x5326ab64 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6fca1475 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x8401100f comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb15a37d0 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb5a534e8 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xd67098ad comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xde8c8182 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xee675c18 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x0fc5de78 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x13961f4c subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xf5e89bd5 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x48e9a9ec das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x7371188a labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xbcca3d33 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x0e173aa0 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x22ad613f ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x45709351 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x9ffb77bd ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xaffa6b92 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xbdb5e65f ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xeb70eea5 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xf4154b5f ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x240b3013 comedi_close +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x26dac7db comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x2c46690c comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x5dc124ed comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x5eb238eb comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xae6fba93 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xc2f6089e comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x6fcba54d adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/iio/iio_dummy_evgen 0x74189961 iio_dummy_evgen_get_regs +EXPORT_SYMBOL_GPL drivers/staging/iio/iio_dummy_evgen 0x9e642d41 iio_dummy_evgen_release_irq +EXPORT_SYMBOL_GPL drivers/staging/iio/iio_dummy_evgen 0xcc30b960 iio_dummy_evgen_get_irq +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x01a3e26b most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x2682516d channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x2b4538fc most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x48ff61fc most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x54ffdfeb most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x62aa64ec most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x6f6354d7 most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x71d9ab2f most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x80362624 most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x8525f922 most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xde824a0a most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xfd28d5cf most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x287920ba spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x360de326 synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x38cb54bb spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x3e81ee9d spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4980e87f synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6e293834 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x86442336 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x952ef994 spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xa23d4dac spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb2978dbc speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb2b4bfe6 spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb3981b18 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x27c3d7ff uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x3438de43 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x5db36a94 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x09f2b9d9 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x51510742 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x1c5f6a12 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x90d824f5 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x681f5e6e imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x82c50026 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xd3cf0a6e imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x45c94013 ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x55a4bf7c ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x59a346ea ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x67a9937d ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x9e46cb03 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xecc68360 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0d3d9324 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1aa2f685 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2f9c698b gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3378a550 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4a328b07 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4cae42ba gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x50bb1ed4 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8fde58dc gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9d1e466d gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9e34df59 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb95eba7d gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xdd4b9bfe gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xeb3e3f7d gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf4afb08e gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf936473e gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x0bade9bf gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x3ee0da1e gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4e3dfea7 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc0d61442 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x2b55c361 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x62b3ec72 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x9b1b8a25 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x17253077 fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1d1c99a2 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x29981002 fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3e097db8 fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5255b366 fsg_common_create_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x84822aca fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x84c66281 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x84e7d640 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8e978dee fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95dd1a95 fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc3e6b47c fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xca1b48d5 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd4c7acc7 fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe876e7bc fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xeceb0694 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xee9f6347 fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xff0c6ea6 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0d3ff03d rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x327ac11c rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x396a67d7 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3cc12b34 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6e609862 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x73892c66 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa4e9d335 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa9c38a3f rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xaf353934 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb2f8fdc0 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc4176147 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe789cb1b rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf9cdc97b rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf9df846b rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfbe48804 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x048e8392 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x14643f3c usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1830696c usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1dfe7146 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x21b87684 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2736c48e usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2cc77b36 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x31640d39 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4047e493 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6e0dbfb1 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x715f2540 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x73326600 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x786222ab usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7874e695 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7a63e1a1 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x81528a26 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9c6b0725 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9e668c7e usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa2308498 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb09ff7a4 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb54a67f7 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb80c7902 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc3b9ca39 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc5a20072 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe45f99c5 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe7cfd957 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xef31f600 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf097ce07 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf5671641 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf743ec30 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf76c28cd usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfe84f94f usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0611594e usb_udc_attach_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x094e93a0 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x10e36d0a usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x19d3cabc usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x25a48e4a usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x299dd5d0 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x35b7d2e3 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x45cc29e2 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x78d8ddd6 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7aaef6e3 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x840cfa25 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x848e2cfa usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x98955b9a gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbdb6162a usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x2b455ae2 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x788c9dd3 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x216c6943 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2aa40ccd usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2e4eda93 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x3b03785b usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5860993e usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xaafadc04 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xcd83ffb1 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf821a0cd ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xffbce88f usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xe8d5e197 musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-am335x-control 0x270bd357 am335x_get_phy_control +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x0dda5eeb isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xa9ca4611 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x051470bc usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x05f92a43 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x08ba6048 usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0a267c0e usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x10ac0925 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3f0bbcef usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4823186c usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5d164d09 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6c4e8b00 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x71590c1b usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x879510b1 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8bc88247 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9cc72b7a usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa284a083 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa56e5c4e usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc83f0a1b usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd83250a1 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdd5b7f0f usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe219166f usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf6083fea usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf9d73dac usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x09cc90bb dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1f6b5d7a usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2d1eecea usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x497738c7 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x62e88a35 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xae2dae56 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb1b2728d usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xba28002a usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbee8f209 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc8983881 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xdf57c6e4 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xea6ec70f usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0fa4dcbb rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x3c431745 rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x528b263e __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x8d771361 wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xb26f2cdd wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc543b60e wa_process_errored_transfers_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xd7d14ede wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xe5c9db2d wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf4654c3f wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x11b8492b wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x122efff7 wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x353b383c wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x424c7279 wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x56a244d5 wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x57ac0ae4 wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x6dab27b9 __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x78836033 wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x95561d23 wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xaf2ca76e wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xc41b9792 wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd268c5f6 wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe226af1b wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfaa4d929 wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x23a8b07a i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x79621c04 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xe3c1945e i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b8aad57 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1280c7bd uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x15521232 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x19287364 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2bc2779c uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2ee0237c uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x31547e51 uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x39534970 uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x47093305 uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4cada87c uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4f56f623 uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x53bb722a uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x53eeb4da uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5569e573 uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x62427f51 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x62b6c002 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x63dcdead uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6b947367 uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x70f69273 uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x71d54656 uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x72c4d6eb uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x76c5c1e6 uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x79634024 uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7a350f27 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dcfcd23 uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x903cbe53 uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9ff50911 __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa826ce5d uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb20c0eab uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbd54340b uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbe0e75c4 uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xcc34e616 uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd34aa808 uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdb9b1b55 uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xde80b15e uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdeba98e9 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe88f89dd uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xec0d60bb uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xffccaa76 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x02b01f4d vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0e8aee72 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x21edcd62 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x25d12a0f vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2fd6e131 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x32bcc5e8 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3392e0eb vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x34aeb2ab vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3f56a3ab vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6a83ee88 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8eaf522f vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9269c3a8 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x95fa966c vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa855d96c vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb808ed8a vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb976d719 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbb358da3 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc5cdb3f4 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc8ee702e vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcb9d8605 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xce3d46da vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd3e69937 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe8201309 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe908879b vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe9297e03 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf17bb456 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf2acbff7 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfa1b2bf2 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfa3f571c vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xffd4e80e vhost_init_used +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x1ffbbd58 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x2bfbb11f ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x2de98f8a ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x815edd77 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x8577c341 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x89942d93 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa436267d ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x31dd2218 auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x4e92721d auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x5b2728fd auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x7b848965 auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x97924e09 auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xa6d85f8f auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xbff12f7e auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xd491693f auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xd6465025 auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xeea862d7 auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x2139e68c fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x284f3d62 fb_sys_write +EXPORT_SYMBOL_GPL drivers/virtio/virtio 0x13a83517 register_virtio_driver +EXPORT_SYMBOL_GPL drivers/virtio/virtio 0x42f832fe virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL drivers/virtio/virtio 0x633dd8cd virtio_config_changed +EXPORT_SYMBOL_GPL drivers/virtio/virtio 0x63505f87 unregister_virtio_device +EXPORT_SYMBOL_GPL drivers/virtio/virtio 0x6b50e85d virtio_device_freeze +EXPORT_SYMBOL_GPL drivers/virtio/virtio 0x72ba68f1 unregister_virtio_driver +EXPORT_SYMBOL_GPL drivers/virtio/virtio 0xc16daefb virtio_device_restore +EXPORT_SYMBOL_GPL drivers/virtio/virtio 0xd167051d register_virtio_device +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x1cc7384f vring_transport_features +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x308da624 virtqueue_enable_cb +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x325451a5 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x3e33d449 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x3f48f072 virtio_break_device +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x49e2e5b6 vring_new_virtqueue +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x5a938291 virtqueue_disable_cb +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x70202177 virtqueue_get_avail +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x7d895e30 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x829dd871 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x8cea3405 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x8fc1ad69 virtqueue_get_used +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x9dec1c6c virtqueue_kick +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0xae90c20d virtqueue_get_buf +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0xb74190f3 virtqueue_is_broken +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0xbb888ed0 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0xbeeab549 virtqueue_add_sgs +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0xc82d40c4 vring_del_virtqueue +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0xcb359b9c virtqueue_poll +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0xd16388fa virtqueue_notify +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0xf506d172 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL drivers/w1/wire 0x00d78a4f w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x2104d441 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x23452fa8 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x476570de w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xafa509d7 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xbd76a7b6 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xd8ed5e17 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0xe5607f7e w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0xedd11a17 w1_write_8 +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x61aac5a5 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x80c21521 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x972394c3 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x03543a08 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x0ba6bdc3 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x405ed4aa nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa2f3ca69 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa7875049 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xbe698cff lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd4067c0a nlmclnt_done +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00368e9f nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x008377a6 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00b137eb nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03e35257 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04cf1176 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04edea9c nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b38af2f nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e124124 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f2b80bf nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f5cb2b8 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0fc1c151 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1139c96d nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x121ec408 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1284638d alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12946f59 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14731b95 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x150bb5b4 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1778d55f nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1956d107 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20ce33eb nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x213617cd nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2750c626 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a1e6644 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d162885 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32dbe653 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34013da1 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35d34f6d nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x381bc409 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ec26350 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40ab11d4 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x424457a1 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42e4c6a3 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4371bdc2 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4496d862 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x471dd9a3 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b20f231 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e3d3205 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51d49c68 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x530f2919 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x552b6b47 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x564b3d7e nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59c23257 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a179e5c nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5aa8bd50 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5af56528 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5cb50237 nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d1193fa nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ee80574 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x651ba1df nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69a303e7 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b3e1038 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73c81d9f nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75e24a5d nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x773b850c nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78767f00 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7aa7a951 nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b3d8501 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f25a2b6 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fdc9fc2 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fdf8422 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x810da106 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82e52a08 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x839ccfb3 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84952e4d nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86d72913 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x886c3769 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b7352af nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8fc94e1b nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90de2336 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91765f51 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9345d1f2 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93f2e92d nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x94910098 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96de21ab nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ab26847 nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b3176ab nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e49dce9 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1d58757 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1de1d16 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa30c9a5d nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3da5570 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5898136 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa790b628 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8f82684 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa14361 nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaad094f0 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xabb9c78b nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaeb0d0d0 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf92f2bf nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0a5e40c nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb2fd24c9 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5fcfda6 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb689ab26 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6907fcd nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7f932e3 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9c0cfc4 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1456308 nfs_file_fsync_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc14668f1 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3b4a4a5 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc46fd4f5 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9131143 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca572f36 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xccc242f4 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd5b5e6f nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3c0319e nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd44ccb8e nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd62e6502 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd81b31de nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd99fe27d nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda204a30 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd44cf0d nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe00c9553 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe91209da nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeac24315 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xefc24fb2 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf04857b6 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf10781f7 nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf4b89261 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7f556e2 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8923853 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb726971 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7a0e43 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc6783e6 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc899a33 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xffccec62 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xe7ca00a2 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x012bd2da pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x06fc6166 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0a238338 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x104c462a nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1568da6c pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x165ea7a7 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x206b01d6 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x26c8944a pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x294dac61 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2ab4307e nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2f8a6c85 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3243cb78 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32814639 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x33ad89a8 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x342d2a14 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c7d3e3e pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x43fd4364 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x44a844c7 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48cddcb6 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4abdb348 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4b131978 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x56809d91 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x59bffd9b pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5e897474 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5edd7f84 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5f2bff07 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x60bf6410 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x66f9b277 _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x66fdb1c3 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f79bd3c nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x76c9107b nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7ed03f23 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x825f28a3 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83d50072 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8994ea4b nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x89df3602 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x959e9f56 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9683e3f6 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9cf8b56c pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d96359c pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9fbc1418 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa55914bf pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xacbcb868 nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xad959503 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xae910e4f pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb378b4bb nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc33677f9 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc6d4baf6 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc8e4456e nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd576bffd __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd754d944 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd7d20336 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd837552e nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd8d027e6 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdb6297be pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdcb8e1c8 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf0899cc nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe0d16de4 pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1686c1b nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe8841bd0 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf5d408ef pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x5ecafbca locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x63686146 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x66880bb3 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x18cc3e32 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xd9ddcfe9 nfsacl_encode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1cb231d0 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4395e9be o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x65410383 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa9f5379a o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xad70a90d o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae1f0534 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc27a86b6 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3bf3734 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfdbb79dc o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x00733579 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x1e69c587 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7bf3fb6f dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x869c79a9 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xccc9343c dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xefca7f68 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x085241d1 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x7c01ce52 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xecaf64bb ocfs2_plock +EXPORT_SYMBOL_GPL kernel/torture 0x13ceab9a _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x2ef95e2f torture_shuffle_task_register +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb +EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random +EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait +EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop +EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end +EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0xa87c61fd _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin +EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x64475da8 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x6529a1a3 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x021957e1 raid6_datap_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x0f8a2742 raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xd4cb6873 raid6_call +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x201d8ea3 encode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x29fa419f decode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x57861324 base_inv_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x57d39367 base_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x882ce5fc base_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x9e0112d0 base_inv_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xaedfbb15 base_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xc8fca8a6 base_inv_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xd11741a1 base_inv_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xe3d900b5 base_old_false_key +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x8bfcf7a1 lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x989e060a lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x18e2dc3b garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x3761af18 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x47f4ad32 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x887e6d9c garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xe0fd20c1 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xe4730eee garp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x07523437 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x44901a15 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0xaab1740b mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0xb78f005b mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xe8f25243 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xf8b5febd mrp_register_application +EXPORT_SYMBOL_GPL net/802/stp 0x96abe40c stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0xd16792b2 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x19e4e056 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0x41d6256f p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier +EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier +EXPORT_SYMBOL_GPL net/ax25/ax25 0x68d56005 ax25_register_pid +EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast +EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x378e227f l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x56e896b3 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6ad1128f l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x73142d3d l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7d2194e7 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xacef22af bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xad7ab26e l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xbefc3a43 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0e432930 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1f086439 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x236e163e br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x34e9b8f4 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x48cb663f br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7a0277a7 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8feb9d40 br_deliver +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc2ec5188 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x2c101021 nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x7a4ff53e nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0100d504 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x09a123b7 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0x14b80968 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1aba52da dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2a2ad2b3 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2c1b4e34 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2c9e4b88 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x31693e91 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x33530ce4 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3f43b024 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x44848621 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x51bec1a6 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x587ff038 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5b2879b5 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5bc13d68 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5de5e18f inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x661f40e1 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x669103ef dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x67de5e1b dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x696e6e89 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6a775cba dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6e93cdfd dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7b89e370 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x84752fa4 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8665396f dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9af2a60c dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa7371855 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb0596156 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbdaae168 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc68d2785 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcafb6d69 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf010b48f dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf428bbbf dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfb78806e dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x0ecf09a4 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x31664cf5 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4685dd86 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xcd8143de dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe3423e5e dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf2a1d307 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x147dcd9a ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x6d053024 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x704fa28a ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x9c3e7b35 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ipv4/gre 0x3e0b80f7 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xe7341e32 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4841413e inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4b11f12e inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x51e5bbbb inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7e58b941 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x882411e9 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x904d99e5 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x79966f6c gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x141e92ce ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1cc30102 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x28941233 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x36e4cd8b ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x536ffcd5 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x84d0f532 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8840e53b ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc7946326 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcc8b6d7b ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xda4edc11 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xdb38b1d7 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe149aeb2 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xed73d5b7 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xeece373d ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xff1d74e5 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xf2eef241 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x478d11dc ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xda51d439 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x3e6c82f1 nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x52e84d4b nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x6e3f7640 nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x9a6c1951 nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xc02e6fd6 nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xac84802d nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x04623c97 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x124c1afb nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x79a62a85 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xdf43c550 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe620e5fc nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0xc68767cd nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x78b1b411 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x7bc68b1b tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xdaf5469e tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xfa0c8e88 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xfdaeffd8 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x25fe63db udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2a9eb3e1 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x721518a8 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9bd887f4 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x13f384a6 ip6_tnl_dst_reset +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x65580593 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x66dd4a9d ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x71e4dbfd ip6_tnl_dst_set +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xa916186d ip6_tnl_dst_destroy +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd2075998 ip6_tnl_dst_get +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xe5546df6 ip6_tnl_dst_init +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x38dd2efc udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x620cdce7 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xe0b665a0 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x5a3c28fe nf_ct_frag6_consume_orig +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xa83e8bc0 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x6bdc7efb nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x0fabf4b6 nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x2151cc6c nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x571e1729 nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x72f2f23c nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xc51242da nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x51bc2920 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x09594dfc nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x50cb09a6 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x554b5dd5 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x74c98dec nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc39fdb5a nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x2bbfa04a nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x19ab054c l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1e5bcf97 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3f9b147d l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4597cec2 l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x54b74221 l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7196be49 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x842525a9 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8a8a7bfb __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa2f3e77f l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa7cafee5 l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xae56b6c8 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbe11e237 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc83c0691 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcdea8f55 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd3938883 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfc83dbec l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xcc5a9e80 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x039638ec ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x15de3a67 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x301516f5 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3bfa60d7 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3fb198a9 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x41700b39 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x45cc5d42 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x501e0d26 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x57274055 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x639c6263 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x70c28cfe ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7fbaf70a ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xabf0305a ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xad0efcfd ieee80211_set_key_tx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xae8a4ff7 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdf1609a9 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe19acf2a ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf9fa191d ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x063baebe mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x21651365 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x31e934b2 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x9bdfa125 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x04d8c898 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0c55542a ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3300c2b0 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4ab425c2 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x539c72d0 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x754dda30 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x887f5d5a ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8b377d5b ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8d36f2cc ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9be09322 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9bfd7743 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc6152775 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xccc05a4f ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf15a197c ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf62c12ba ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf92e44de ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x18205222 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x3b752a42 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x485a55aa unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x527d524a ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x01d83917 nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x03666fd7 nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x039ac826 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x03d86790 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0487936c nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06994c95 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x07cfd8c0 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x089f10b8 seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x09a5c852 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c3c786a nf_connlabel_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0dbbae6f nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0deaca4b nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x116ac41e nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x145c15ab nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x163fcf36 nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1b0a7bf0 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1bd1e297 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x246b1a01 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x260b0336 nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x290c68ec nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2dd3a323 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31500d55 nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3294618b nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x32d2da58 print_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x336222d9 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36e7f898 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37fe275b nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x39472f2c nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3aa8a805 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x437b2344 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x48448951 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x50646c92 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x50843c59 nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x60323343 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62b25edb nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x676f2445 nf_connlabel_match +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6bd1e651 nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d093687 nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6edde78c nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x72a14b71 nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x77ec79d6 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7d675e64 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x819802fd nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x85f69d0e nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8735c585 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c74c549 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8d2e3b42 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9128949e nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b65cc30 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ee4c9d8 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa267109c nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa5630919 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7311400 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa958fc1f nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa9cf8224 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xae30c05e nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf490a0d nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb054a7f6 nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb0b69b5f nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb0c420b4 __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb66cc662 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb92cc2c4 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbeac6e91 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2abd2fd nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc8e06ea1 nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcb7e2ec7 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd02275e7 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd085892a nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd2a19ad7 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda1b096d nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe18b0e6e nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe379efae __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe3b650f9 nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe3f6d47e nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe64f4866 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe92504ac nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf22df62c nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2b6841b nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf44f0c21 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfeac1c6e nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xffc51c07 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x4c3a5c0f nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x3190fdb2 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x5bb33638 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x13976adb set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x23c66537 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x2d353b28 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x325f379b set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4261dc12 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x454c50e3 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5c872c8e set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x61833975 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x77831529 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x960b4b96 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x2605ea00 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x3ce7f12a nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x843d9f4c nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xac45f55a nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xc33618c3 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x83b24da5 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x8d045c77 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0ca2e519 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x11c130f7 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x182aa6b1 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x52d32d7d ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x9a2f5b0b ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xcc2c8688 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf99e035b ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x082fefe0 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xe2204204 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x2b9945cd nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x66e2405d nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x6a6a83e1 nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xb2bd2eb9 nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x28de7ed3 nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2c81352b nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2d631f7c nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x41565cde nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x53231187 __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5bed48a3 nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x88238ea0 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9f1b8923 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xda3edad5 nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x4986254d nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x8f10b49d nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x548047d8 synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8841d39b synproxy_build_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x885eb353 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0146efbc nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0341f16d nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x237629e3 nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2af159b9 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x42dd677b nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6b23f313 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9965cbed nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaf2c8334 nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb41fff96 nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb424f142 nft_unregister_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbad015ad nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc0356d0d nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcb933d30 nft_register_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcbe5dfad nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd32e9310 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd44f037e nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdac5db6a nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x22e9fc1e nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x31c4a60d nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7ccd73fd nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xbf25baeb nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xbf4b0d3e nfnetlink_alloc_skb +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc5befc1f nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe72faf18 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x5edeefa5 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x895f7931 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xf300bfd8 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x2da948af nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x245770a9 nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xa9b27d98 nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xdc259832 nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x22d2398b nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x33e29766 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x3b781ec7 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xa182a971 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb9600ada nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xdf34cb1b nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x46adee06 nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x79351860 nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xabfec0ee nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xb219f84f nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xbbbb40c2 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x07c2504e xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1db926af xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x205a109d xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x28a44b61 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2ea7b1e1 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x46da2563 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x50111be3 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x81fefc23 xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x89767b27 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8ae62bb0 xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb9d54e6e xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc30474b6 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcd807e05 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec356dd3 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x57909dc1 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xd0f26ea3 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x405766d1 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x82ced192 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xa0c47321 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x17091665 nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xa3179457 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xd78ed2dd nci_uart_set_config +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0aed62d5 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x18857049 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x66134987 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7b75c0bb ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x99d6989e ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb2d50862 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe5439949 ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xef187964 ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf6b4e861 ovs_netdev_link +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x05ab3f5a rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x13841b73 rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x2d246834 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x469d808e rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x49bd11ff rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x72f31bcf rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x778c82aa rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x7dbbbb84 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x83e1de90 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x84892741 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x883a1081 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x9eb7cd4a rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xaa002c73 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xad0b248d rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xb2343ded rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xbb61a6e7 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc642cc2c rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0xcc10d644 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xd01ed861 rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0xd47fe12c rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xe1519764 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0xe431e466 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xe9a0aaa1 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xf0983a30 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xf252585a rds_trans_unregister +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x64397dd9 rxrpc_unregister_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xa9211dd9 rxrpc_register_security +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x2061ac3c svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb969582f gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xde9f2c0b gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x015767b6 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01d8cfc0 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01dee316 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0285d896 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0292c9c1 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03a5e564 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0671f9f2 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06f09430 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07887591 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0792f887 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08e49a75 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0945786b rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x097ac28c svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c59be81 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c7ba2fb rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d1793b9 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e753b0e rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0eb4afa8 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x108e1ecd xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10cb6b86 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1177f6b4 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12b2ce67 rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1301ef43 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1495b191 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1567e53e svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x194e82b0 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x199a1364 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c7713c6 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f4bffdf xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f8757e4 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x246a3e41 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24af6e34 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24fb4279 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2505b208 rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25f0a765 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x268abc7b rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27671f12 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x284a7991 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28726bc4 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28be70a3 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a913e3e rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b61bc4c xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c1cae6d svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fc6ea20 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x345e6721 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39b7c846 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39dbfb31 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3be97fa1 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cc9e34d svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ebaa4a6 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x415a40fa svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41bc8b3c cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42b96759 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43d013ac rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45b75d4c rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x465ef549 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47fa0892 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4949815e xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49dc9113 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49f143e4 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a4b5329 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e0d45b8 rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fb8bad7 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5402ebea rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58821a78 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b30744b rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b5898be rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f4c9175 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61f82fa8 cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x629d8bbb xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64401a3c rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x646aa597 rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64c3b5cf rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64e319d2 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65517f24 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68bcca0b svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68ee3c1b rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c2765bd svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6dba409d cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x708c93bc xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71398e1d sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71f269dd svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72be384f csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7306eb18 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73335bae sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x742a781b xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x767d441e xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x773cbe64 cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x775e84fe rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77ca6ebf rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77e6e70b rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77f23dac rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77fbc8f6 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7842eb26 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x792f3497 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x794c4ff4 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b40bcce svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7bf037f2 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de7c199 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7df53ba9 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e14cea2 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8010dbab rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8186ee33 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81b01318 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x835296c4 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85654bef rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85d7ba6d xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86632175 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x872ec84c rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x873966ad xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bd43c8a read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c46f510 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d8b3b11 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e0d6d5a xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e485db7 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f6926a3 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91b3360c xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9373f493 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x962fb512 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x966a4d37 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b8363db svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d7dd3ef rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f5d0e8b rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa413b186 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5e0d0d7 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9e2d45b rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa6b0a7f xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa996dbc xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf3b5c21 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb213b178 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb325ef0b cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3a3cee6 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb525d7a1 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb59e7fed rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb09464b sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc77ef3d write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd25cb9b rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf32f8b5 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9722aa svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc11c24a2 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1739e56 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2f1071f xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc307c85e rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3eb7a4e svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4822897 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc64073d5 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6b605f5 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8633a4d rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc873721a xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc2be0e3 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc2e1c7f unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce1de979 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce604038 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf250530 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd00c7f1f rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd13af829 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1a11be8 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd202f1a4 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd37edcb9 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4079962 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4667d9d rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7707775 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda118f3b xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc211139 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcc6dcb3 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd25f1d7 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf3ce8f8 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf422c9f rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe09d7da2 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0e4ea54 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe147a4e5 xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1b31aa8 rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe24ce9db xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe32388c9 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5570e43 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5b9ea23 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7d8457e svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe878333f rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9b331de rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea0c70e6 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea92e2e4 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec600a39 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed0ecc61 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefa282b1 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf25e4a2e svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2923639 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf42474bc rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf569235f svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6ab1670 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf788172b rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9f8e1cd svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa02dade svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbe97279 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc4e03a9 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd362f4a rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd8ef0ae svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff5cba2c svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffbe3886 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1cb4f36d vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x39b65c23 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x569c8796 __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x74e91915 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7701f171 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x847cea95 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x93b47a76 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x979854da vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb09b9b08 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb6114831 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc54ecfca __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd988fca0 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdca56e68 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe77e3a03 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf593c40a vsock_pending_work +EXPORT_SYMBOL_GPL net/wimax/wimax 0x22cd6aa9 wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0x250b5880 wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0x50ce74ad wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0x5f4000a2 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0x7658ed6e wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0x778440d0 wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x94fa736e wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0xac8eaf96 wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xcad34c68 wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0xd2c21d0a wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xe68005a0 wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0xff83a374 wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xffea4cc0 wimax_state_change +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x16cb8fca cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x24e5225b cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x384e5e9e cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x394b6e20 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x60aa2daa cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x68107cd0 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x84315aae cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x880a74a7 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8c6f714e cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa36d9a50 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xacca3ef8 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xcd8f0c8b cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd5f38c90 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x5c8b4ae1 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x6490fd77 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x80fd8f2e ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xef74690e ipcomp_output +EXPORT_SYMBOL_GPL sound/ac97_bus 0xa899e9ac snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x29501036 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x5794eb10 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd 0x1f7c043c snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0x54fcd4f7 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0x9f1b137a snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0xa55353a0 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0xa6beb11a snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0xc610f711 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0xe236ce65 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x156ee391 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x1d44d882 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x37609cbb snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x423cba35 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4ee44a31 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x576936e5 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x878a8ca2 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc6c89327 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe73ae90e _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x4bedbef2 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x585bfdea snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x6ccd6624 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x84875336 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb951236e snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc9c2c98f snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xca5dcd9a snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xde0dc269 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xdffc8626 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xea6ba9a0 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xeb5bc896 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1977 0x8307de4d adau1977_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1977 0xb4c56698 adau1977_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xd0fe1338 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xe3b6227f cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x73b5ae6a cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xf1f20246 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x052fabdf cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x14ce2bd0 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xdc28eba4 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x008d522a es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x2a04e38b es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x1b1f210c pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x975b8e32 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xa845fd98 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xd4ad02f4 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x0798f7df sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x24978758 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x35ba47c0 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x70cb2beb sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x714931d4 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xfc059973 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x0a8b3f93 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x7cfe75f9 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x369cf7a4 tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x8a1b8958 tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x73711289 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x54fd4b47 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x77ae1e11 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xd85a9198 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xf63c9520 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x3d5aab26 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x85cfb202 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x236597dd fsl_asrc_platform +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xfbff6181 fsl_asrc_get_dma_channel +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x30693bb7 imx_audmux_v1_configure_port +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x58631dab imx_audmux_v2_configure_port +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02d86c22 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0555e382 snd_soc_platform_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x062ffbf0 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08c7a481 snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0903946f snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b2da9dd snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0deb0d1c snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ef9016c snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10124535 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x130c6769 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x136da77c snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b582a65 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c8c5bc0 snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d552758 snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e2f8818 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ebb3f7c snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1faa80c0 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1fe8646f dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23a4dfb9 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24517ec8 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2481bd60 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2733b8a2 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2898e54e snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28db45cb devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a223c10 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d6afec7 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e7513d5 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x30bb1d43 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x311b3de8 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33b5033b snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34a1157f dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x37012ae4 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39fa060c snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3afbd3c0 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c66ebc0 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e6f5358 snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4069ff1c snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47074d31 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x483063c8 snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a1552ba snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d102abc snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e861399 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4eb8eca5 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5578f6d8 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57fe8513 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59ee8454 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5bf3e63b snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6099170e snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x60cf3d15 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x610015e9 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61305693 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x642edab0 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65a631df snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65f9108f snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67a39078 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a9382f3 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6de5bff2 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e342807 snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71bd6a4a snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7565391f snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7576821b snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77258c76 snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d5e276d snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f11deea snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f94f04f snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82501341 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83154189 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83cdf54e snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8985c460 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a78b4a6 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b624222 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f5aadeb snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x927c0aa5 snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x941fd748 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94de9b8a devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x953b10f7 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x95cce862 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x966db5db snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x973594a2 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a189c09 snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9da78fe0 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e36eca2 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e3dc445 snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e658323 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f8d4767 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0caddb3 snd_soc_lookup_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1fb8eed dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa63496fc snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6bff071 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa77f313a snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaad70fec snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xacf4650e snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae3fe37e snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaec9d13e snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb009a8ef snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb02c9969 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb1112126 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb129a7d3 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb242b508 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb2f1fc9d snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3729af1 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb96ddd5d snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc2e4931 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbcd3eed4 snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5c542cc snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5e62078 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7810499 snd_soc_remove_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8c16f7b snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca69a3d5 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca850f01 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca95b58a snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb11efcf dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb436276 snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb5d7555 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc3168dc snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xccf68078 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf76a5b5 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd04d15e3 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd17173e4 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd387329c snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3928d4a devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd57eb116 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd61767d4 snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7f16db2 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8b0f5be devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdaf61616 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb934734 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdca1f9a5 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd505e0c snd_soc_add_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe00a0aca snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1a76748 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3312bb8 snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3866122 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3fb5208 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe682b74f snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6bd1ec2 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7b3c5b7 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe90c8744 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec025891 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec507c4f snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xecf0f947 snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0dcea60 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf69a1d87 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf733dc48 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9bfcc66 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa88774e snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfaf15dac snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffe070ae snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1a5c6a19 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1e625c18 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3d6dfeac line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x42b0abef line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x47503dc7 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x504c06f5 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x57870283 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8b095efd line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x90c7c456 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9157a8c7 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa5ec6b5a line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa7fa6512 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xac4e609a line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd553eb9a line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe1be1e9d line6_init_pcm +EXPORT_SYMBOL_GPL vmlinux 0x0011c5ec cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x0022878f __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x00231cff usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x0030094e task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x00379c9b da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0064180b usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x00687616 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x0088a37c ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x009ff43f skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0x00bb6288 pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x00d98b7d regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x01046b31 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x0105af78 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x0109b1d7 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x011d3d1d usb_stor_probe2 +EXPORT_SYMBOL_GPL vmlinux 0x01612db4 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x0188207a ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x0199c652 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x01aced1d vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0x01b9d199 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x01cd88cf blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x01dca522 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01ec90a9 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x024efb8b ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x02588556 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x029e187d queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x029e659c phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x02afd944 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x02ea8741 max_gen_clk_ops +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x03067f27 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x030ec969 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x032375b0 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x03327248 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x034688cc _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0x03615b50 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL vmlinux 0x036dbc7d wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x03880745 of_genpd_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x039fdbc0 ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0x03a19311 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x03bb13c3 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x03c0f556 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x03f2df0c tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x0402b504 __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x046db7e3 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x04726720 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x0482b88b device_register +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0x04abf655 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x04ba61e9 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x04c1a2e3 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04cc8494 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x04efb09c ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x04f4bd8d percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x050207d9 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x05197a95 napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0x0523cd73 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x052eb5b1 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x05306bfe for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x05542702 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x0587e9cf of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x05a36c49 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x05bb6796 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x05d0ecf6 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x05d31864 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x060c4eb6 security_kernel_fw_from_file +EXPORT_SYMBOL_GPL vmlinux 0x060d7e42 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x06199a7b of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x0622459c regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x0634f8b2 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x06438115 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x06681381 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x068e0601 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x06a23a2c clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x06a5f977 tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x06b38436 of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0x06c98c8f regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x06cdaf62 of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio +EXPORT_SYMBOL_GPL vmlinux 0x06ddba02 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x06f00cc1 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x06f286b5 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x07032f9e trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0x071a8b61 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x07401b2b inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x07614177 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x07684a40 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07c708c1 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x07d1cde9 blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0x07df79aa __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x07f730e9 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x080b8764 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x0830e355 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x08aeba1b da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x08d31962 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x08f65008 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x08f9e5e6 __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0x09050f4a ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x0912962b dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x091810c9 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x091a2c0b kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0x091ce928 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x09239f0b crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0x092fc458 dbs_check_cpu +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x094540c0 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x099b9e33 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x09b876e7 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x09d1f297 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x0a092a47 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x0a4f997c crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x0a58e3f1 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x0a68aa6c extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x0a6fcc06 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x0aae63f4 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x0ac91edc clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x0ada099f bcm_dma_start +EXPORT_SYMBOL_GPL vmlinux 0x0ae04132 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x0ae12462 cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x0afd4610 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b2e1f32 ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0x0b30e893 use_mm +EXPORT_SYMBOL_GPL vmlinux 0x0b386b47 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x0b564276 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x0ba321da securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0x0bbae511 return_address +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c40bf92 i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0x0c53a1c3 debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x0c715263 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0c8eb6ea mtd_block_markbad +EXPORT_SYMBOL_GPL vmlinux 0x0c9882ac wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x0ca63a20 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x0caa5501 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x0cb034bb get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0ce34bcf debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x0ce3fe11 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x0cff23e6 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x0d029322 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x0d059e64 static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0x0d0c783a tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x0d1c9ef8 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x0d2260e3 md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0x0d316d44 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d5640f2 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x0d74c437 usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x0d762ba8 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0dba7932 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x0dcb962e unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0df959e8 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x0e6ac7bf fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x0e7b746f blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x0e80aecc blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0e8ff2e2 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x0eb3a464 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x0ec7bd91 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x0ecb55d9 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0eda51f7 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x0eecb2ab sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x0ef63a25 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x0efb7d2e irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x0f098559 arizona_of_get_named_gpio +EXPORT_SYMBOL_GPL vmlinux 0x0f289ac1 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x0f2cec77 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f6c890b phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f7f221e dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x0f8736c3 pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x0fad398d unregister_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0x0fc01e9f static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x0fe4f505 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x1073f2d6 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x108d9f10 amba_ahb_device_add +EXPORT_SYMBOL_GPL vmlinux 0x109710fb thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x10b45658 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x10e77305 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x11025677 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x11148065 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x1123bea8 arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0x112db4af regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x11340337 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x116116e7 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x11701ff5 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x117cd693 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x118527d7 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x119a95a2 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x119bb991 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x11baff18 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x11bf909b fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x11d28303 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x11dbc747 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x11ee763a l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x11f44412 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x121c5496 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x125d89cb usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x12962ad4 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x129e8777 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x12b456d4 mtd_read_oob +EXPORT_SYMBOL_GPL vmlinux 0x12b6b30b usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x12c70517 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x12ca8e17 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x12f2969b sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x13259335 thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x133b2af0 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x135048f8 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x135601cb usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13741ab5 _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0x1378f78f irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x137b606e kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x139a9eb0 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x13acc394 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x13b89dee pinctrl_request_gpio +EXPORT_SYMBOL_GPL vmlinux 0x13bc4c0f netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x13cee5f8 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x13e1aef0 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x13e76614 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x140685aa phy_get +EXPORT_SYMBOL_GPL vmlinux 0x14087820 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x140af567 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1413c259 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x142f240e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x1437f568 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x144b6aa5 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x145cfd39 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x147e57be ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x14828fd9 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x14836c56 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x14888325 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0x1492d2f8 clk_debugfs_add_file +EXPORT_SYMBOL_GPL vmlinux 0x14e89094 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x14fbfe6a usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x15081e84 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x150c7220 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x152339d8 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x157a2c69 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x157f7255 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1592d95f tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x15a78c64 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x15b93bc1 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x15c69d13 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x15d196ce __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x160c25df regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x160d34bc blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x161d69e0 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x161ecadf fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x162ebcf5 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x1664d9a0 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0x1683c491 usb_stor_CB_transport +EXPORT_SYMBOL_GPL vmlinux 0x16ac4475 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x16d87d9a pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x16f3583a sdhci_pltfm_register +EXPORT_SYMBOL_GPL vmlinux 0x16f79f4e dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x171870d0 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x17507771 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x175bca1b usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x1777890b extcon_unregister_interest +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x17e7d007 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x17eb57de regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x18181ddf of_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x1853d8c9 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x186e44bc i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x1873afe8 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x1876f8f7 cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x189d5104 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x18df652e vc_sm_int_handle +EXPORT_SYMBOL_GPL vmlinux 0x18f43363 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x1905a98d bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x191a0f79 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x191c42ee bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x192441c6 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x1927a4c9 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x19501c70 mtd_erase_callback +EXPORT_SYMBOL_GPL vmlinux 0x19700977 of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x1990f8ff pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19b79fcc mtd_block_isreserved +EXPORT_SYMBOL_GPL vmlinux 0x19bdce61 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x19d65db6 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x19e5600e mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x19fc9940 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x1a002d8c reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x1a1c4082 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x1a2c3500 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x1a3ba66d component_master_add_child +EXPORT_SYMBOL_GPL vmlinux 0x1a43c9b6 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x1a4b9fcc desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x1a6b9a55 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x1a6bcc95 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x1a6e4857 usbnet_skb_return +EXPORT_SYMBOL_GPL vmlinux 0x1a797774 blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0x1a81cb39 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x1a8717e9 vc_sm_unlock +EXPORT_SYMBOL_GPL vmlinux 0x1a8cb46d sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x1aabe552 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x1abc9337 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x1ac5c170 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1b1cafdb key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x1b3261e0 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x1b568406 deregister_mtd_parser +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b94fc04 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1bb5fc26 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bcd6d65 of_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0x1be8ed91 of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x1c132024 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0x1c1cab3f device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x1c20a42e dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x1c36c939 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x1c47de43 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c5ade0c usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase +EXPORT_SYMBOL_GPL vmlinux 0x1c67981e device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x1c716881 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c8efe22 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x1ca646dd pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x1cdd5440 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x1d0fcad5 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d24be40 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x1d427b3a sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x1d7cb586 clk_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x1d939348 of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x1dcb99c2 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x1e5723b9 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e67e3c3 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1edc2653 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x1eddfdff kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x1eed2876 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x1f09ad48 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x1f398a97 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1fb4e5eb kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x1fc153df scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x1fde9073 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x1feb180a fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1ff4c47e mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x1ff6c8b8 perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0x200b330a gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x20163697 rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0x2023760c __module_address +EXPORT_SYMBOL_GPL vmlinux 0x203a8021 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x203b5634 split_page +EXPORT_SYMBOL_GPL vmlinux 0x204050ce power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x2081ad47 mount_mtd +EXPORT_SYMBOL_GPL vmlinux 0x20a9ffe3 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x20aa5b47 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x20b2d569 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x20b33a11 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x20fae979 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x2110a123 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x2133e6c6 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x215956a5 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x21999e22 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21b8047b find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x21ca5230 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21dbedb3 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x21febf58 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x222f8810 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x226a674d atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x228bb549 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x22ddb98b power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x22f2eb54 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x22f3507b ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x23092de5 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x231d70fc encode_bch +EXPORT_SYMBOL_GPL vmlinux 0x233b93b1 crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x235cb478 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x237d9a6d blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2387d6b0 arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23ea4fda regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x23f2eea0 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x240ffacc stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x241761b3 spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2419a1ef ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x2426f117 smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x246d6573 raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0x247eb785 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2492d3f9 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24b9ec8c __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x24c9128a blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x24cbfef8 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x24d94d7d blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x24dfa79c vchan_init +EXPORT_SYMBOL_GPL vmlinux 0x24e8147b adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f5716f cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x250503f1 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x2526b117 regmap_update_bits_check +EXPORT_SYMBOL_GPL vmlinux 0x252e75ed phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x2539497f devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x2555a58b device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x2563d043 system_trusted_keyring +EXPORT_SYMBOL_GPL vmlinux 0x2589c21d input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x25a14379 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x25af6954 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x25bd127d ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x25e2b4ea ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x26085a7e pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x261098a6 of_display_timings_exist +EXPORT_SYMBOL_GPL vmlinux 0x26196055 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x26293e6d sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x26561ed6 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x267b2a0b irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x26949431 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x26adb815 thread_notify_head +EXPORT_SYMBOL_GPL vmlinux 0x26b36586 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26c9dcdc ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x26d5ff29 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x26dee1ad tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x26e02ba4 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x26e1051e tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x270bc390 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x270bcf94 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x27267d27 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x273daa90 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x27522d10 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x27559330 blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x276a5834 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x27b629df __of_genpd_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x27c0dbcd sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x283c2239 pwm_set_polarity +EXPORT_SYMBOL_GPL vmlinux 0x2849ad4e crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x285fe927 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x285ffcd9 usbnet_set_settings +EXPORT_SYMBOL_GPL vmlinux 0x286be472 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x286e94cb usbnet_get_settings +EXPORT_SYMBOL_GPL vmlinux 0x287653de subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x287c14a1 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x287d80af srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x28abc73d find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x28b43ceb inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x28d00194 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x2928b53f transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x29497cf5 regmap_fields_force_write +EXPORT_SYMBOL_GPL vmlinux 0x29556cc9 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x29664af0 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x2974d43d devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x2998ae18 tpm2_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x29ab00d6 of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x29b781cf of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0x29b84687 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x2a280ee9 genlmsg_new_unicast +EXPORT_SYMBOL_GPL vmlinux 0x2a387f4d subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a816a05 dev_pm_opp_of_cpumask_add_table +EXPORT_SYMBOL_GPL vmlinux 0x2a85ebc4 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x2aa54e61 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x2aae43f7 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x2ab57588 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x2ac1a0eb fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x2ad9d326 md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x2b1969b3 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x2b1b9284 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b32ef29 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x2b539d05 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x2b5edb9e usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x2b8014a8 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x2b8592ee blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x2b9129f8 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2ba10a99 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x2ba98f88 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x2babe81f __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x2bacb3a4 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x2bb1e407 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c2d2f55 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c4dfb38 blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x2c668108 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x2c6f6931 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2ca4b047 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2cec11b3 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x2cf7d9ee usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x2cfc67a3 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x2d118f5e bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x2d124e1e mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d6208c9 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x2d7fc18a scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x2d85a5c4 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x2d89523f of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x2dad9b05 register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x2dbd8850 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x2dcc544a sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x2dce78eb inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2de20460 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x2de681b6 system_verify_data +EXPORT_SYMBOL_GPL vmlinux 0x2dfc37df nand_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x2dfc42a6 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x2e07e1f5 bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e297f27 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e5a4850 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2e5a9596 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x2e742b00 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x2e7d85d8 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2e9670c0 pl320_ipc_transmit +EXPORT_SYMBOL_GPL vmlinux 0x2eac3f9c skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x2ebaca8b pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec382e0 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2ec68405 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x2ef4d512 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x2ef6b5bf smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x2efd3c79 put_device +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f1d6bb4 mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0x2f3c5603 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x2f3d4920 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f457274 of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x2f4c26b1 sdhci_alloc_host +EXPORT_SYMBOL_GPL vmlinux 0x2f5f6985 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f7728da unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x2f7878fe usbnet_write_cmd_async +EXPORT_SYMBOL_GPL vmlinux 0x2f8f7577 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2f90da7e trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x2f931c16 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x2fc7b541 hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake +EXPORT_SYMBOL_GPL vmlinux 0x2fdfe5f5 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x2fe456dc sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x2ff21196 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x2ffaad03 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x300304d0 clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x3036f0b3 of_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x3060c04b fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x3061a3a4 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x306b7356 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x3099b06d crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x30a71a57 usb_stor_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x30b1f460 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x30ebded8 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x310d0243 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x312c114d crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x3133359c regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x31380138 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x314f75d9 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x31519a9b crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x318c6e34 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x31a996a3 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x31aa7999 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x31c6d148 sdhci_send_command +EXPORT_SYMBOL_GPL vmlinux 0x31cbc43c amba_device_add +EXPORT_SYMBOL_GPL vmlinux 0x31e8735a md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x31ee5232 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x32047f6d lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x323c852d ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x3275853a led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x32959bfa spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x32973d6b bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x3299971e devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x329b7310 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x32a9c41a devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x32b653dc irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32e2d67a cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x334b2449 device_add_property_set +EXPORT_SYMBOL_GPL vmlinux 0x334e9afe pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x336e1c5a sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x337b3b7f usbnet_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x337ba788 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x338cac6f tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x339f5dad transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x33b6e9cf devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x33bcebbe clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x33dc7a50 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x33e1be35 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x33f1390d sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x33f9dafa hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x33fc6ef4 dev_pm_opp_of_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x342e587c of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x346b1f5b pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x347682ce snmp_fold_field64 +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x3484ee25 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34b985a8 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x34bdddf0 extcon_set_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x34dc255c devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x34faf340 find_module +EXPORT_SYMBOL_GPL vmlinux 0x34fc6e63 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x351c21ee register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x353dae5c component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x35553587 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35a81c91 filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x35b757d2 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x35bd7790 shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x35c317d8 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x35c8fb54 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x35dcd1f7 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x35e0f8dc perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x36086b67 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x3613fc59 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x3621be18 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x3622c164 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x36401eeb bcm_dma_chan_alloc +EXPORT_SYMBOL_GPL vmlinux 0x365fe090 swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x36702f51 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x36c37bc5 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36e1918b devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x36f2b3e7 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x36fc6cac __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x3709ceeb led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x370cf91a blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x371a87f3 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x3796b834 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x37a9f0e0 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x37e4e157 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x3812552d devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x381bfc66 devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x381e2602 i2c_slave_register +EXPORT_SYMBOL_GPL vmlinux 0x38379152 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x383eb8d7 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3866d0d9 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x386b6a44 alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x386fbd78 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x38a1ecf2 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x38c84b4d regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x38d550f7 rpi_firmware_property_list +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38f83162 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x392c5bf1 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x39460491 mtd_write +EXPORT_SYMBOL_GPL vmlinux 0x398cf726 bpf_prog_realloc +EXPORT_SYMBOL_GPL vmlinux 0x398eab77 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x399215c9 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x39c14229 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39db620f bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x3a0fce59 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a2d7d09 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x3a3b8b1d pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a8baff5 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ae7ffcf dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x3ae8be22 shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x3ae96c3a iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x3b0e6e25 mtd_lock +EXPORT_SYMBOL_GPL vmlinux 0x3b17ab50 usb_stor_reset_resume +EXPORT_SYMBOL_GPL vmlinux 0x3b40cc6c device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x3b547bc9 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x3b6996b5 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x3bb2f63e extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x3bd4129d bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x3be7b445 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x3be7e666 usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL vmlinux 0x3bf8c85b powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x3bfa6694 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x3c08b207 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x3c29e1ce irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x3c2acf32 of_overlay_create +EXPORT_SYMBOL_GPL vmlinux 0x3c408b96 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x3c547fdd usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x3c574297 usbnet_read_cmd +EXPORT_SYMBOL_GPL vmlinux 0x3c67c710 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x3c831441 arm_check_condition +EXPORT_SYMBOL_GPL vmlinux 0x3c855c40 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x3c910aff __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x3c93ea25 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cf238b7 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x3d0bff96 blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x3d293459 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d3c3b74 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x3d40698e blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0x3d529f0a __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x3d9c531d blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x3daccfd7 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x3db91586 scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x3dbd9914 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x3dc4f65f disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dd00963 ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3dd4d3a7 bprintf +EXPORT_SYMBOL_GPL vmlinux 0x3dd4f924 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3e068de6 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3e1236a3 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e410620 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x3e4b2885 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3e5be2a0 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e7e233e usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x3e8b6b53 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x3e9cf425 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3efce75d sock_update_netprioidx +EXPORT_SYMBOL_GPL vmlinux 0x3f15ecbc unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x3f4858d8 of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0x3f4d1ae3 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3f5d2798 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x3f5ff8e6 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x3f7551d0 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x3f877cb5 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x3fa1e3b0 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x3fa76597 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x3fa92b10 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x3fd69f41 usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0x3fdbb8e5 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x3fe191ea devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x3fe3bf86 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x3fe4bf1a ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3feba74e platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x3fef3b02 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3ff13f23 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x3fff9f93 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x400db343 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x40189a5d usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x402a220b rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x40355df9 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x4039003b gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x408d4298 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x40abfa54 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40b1bb50 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x40c4528c usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40d4bbf2 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x41014a63 usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL vmlinux 0x412dcdda smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x4146da3f shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x41656389 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x416f1730 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x41a2f38a fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x41aee280 mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x41c2def4 __sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x41e31fb8 crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x41ebde82 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x422ab69c ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x423390fe tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x423f311b sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x424c6c37 mtd_panic_write +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x42666ea2 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x4277d3c2 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x42841b3d usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x42c9fa91 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x42e33a9a cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x430597d5 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x430fd76c ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x431a0ebc dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x4337cfaa hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x433a26a6 usbnet_pause_rx +EXPORT_SYMBOL_GPL vmlinux 0x43405843 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x43483c7d transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x43560183 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x4358bac4 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43d959e8 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x4409ab1d mtd_get_device_size +EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x44538a57 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x44551f5c dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x449eaebe ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44c6d4e7 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x44d6a829 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x44e80f7d blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0x44f314a0 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x44f9cb2f usbnet_write_cmd +EXPORT_SYMBOL_GPL vmlinux 0x4502d6f4 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x45220b2a crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x4593bb9c sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x459b201f gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x45a6774e ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x45b4c0ad usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45c79e53 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x45c83728 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x45cc39ca usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x45f0d0df mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x45f739b3 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x45f794bc crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46066e5b perf_pmu_name +EXPORT_SYMBOL_GPL vmlinux 0x460abdd4 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x4625d7d0 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x4638b030 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x4662b4ed fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x4670ecdb usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x469e5569 skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0x46c275c5 posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0x46cc7ff1 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x46f0a06d vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x47010211 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x470303a7 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0x4713c3e3 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x473712a8 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x473c1bc0 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x475c8b43 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x477a44a3 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x47867ee8 page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x47969be1 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47b0d809 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x47c35a1d dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x47c3ad2d dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0x47c66598 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x47d2329b rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x47d5ffe5 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47e40973 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x482a6601 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x48340c9f tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x484ad6d6 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x4851b2a2 blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x4853ebaa bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x4862bd8c cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4866e411 swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x49111a8c device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x49276ad1 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x4951a72c crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x496b616f usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49a8703b usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x49ad1121 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x49b99181 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x49cae746 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x49cb7523 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x49da7890 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49f3f69d task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x49f593ca gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x4a1a874a xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0x4a377c87 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x4a3daedb md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name +EXPORT_SYMBOL_GPL vmlinux 0x4a63f3b2 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0x4a75a24b usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x4a7b6b0d mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4a93029f regmap_write_bits +EXPORT_SYMBOL_GPL vmlinux 0x4a962afb usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x4aa52cb1 pinctrl_utils_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ab1a16b usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x4b6470f6 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x4b6c2853 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x4b72ca6e __class_register +EXPORT_SYMBOL_GPL vmlinux 0x4b9cc1a6 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x4babf11e screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x4bb7c7fc __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x4bd787bc crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x4bfa033a show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x4bfc2262 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x4c015213 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x4c1bade7 of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0x4c2765e0 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4c40ab61 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x4c45f4e9 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x4c47ec15 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x4c4e5336 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0x4c5964f2 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c6ac0e1 reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x4c703dea kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x4cbafe66 rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0x4cd534be da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x4ce8a762 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d24db89 sdhci_reset +EXPORT_SYMBOL_GPL vmlinux 0x4d56d025 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x4d879c13 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x4d93f3c9 devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0x4d952d73 rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0x4db3e17c ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x4dc5384b scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0x4dd67041 extcon_get_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4de7fe81 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x4e09b14e ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e179b0e vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path +EXPORT_SYMBOL_GPL vmlinux 0x4e2c2dd2 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x4e6b575f sdhci_free_host +EXPORT_SYMBOL_GPL vmlinux 0x4e833042 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x4ea13e80 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x4ebec8fc netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x4ee35292 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4f04d450 bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f317d07 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x4f4ae82a usb_stor_probe1 +EXPORT_SYMBOL_GPL vmlinux 0x4f4bf92c net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4f60c8c9 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f918a61 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fb6db2f crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x4fbb3b7f pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x4fc7b75e dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x4fd9e987 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fddacc2 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4ff6920d cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x501b847c extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x50256b1f devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x50287b3a gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x5080c352 trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x508b7633 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x509dcd21 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x50b1de82 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x50b73c21 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x50bf3db6 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x50da7e98 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50e9c3da cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x50fd8480 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x5146d0fb dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x514d2238 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x51719489 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x51776e21 iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x5185d880 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x519aa850 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x51a2d84b usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x51e3e606 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x51e5e320 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x51f9c4fb bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x5200c3b4 usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL vmlinux 0x5216b557 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL vmlinux 0x52375e7a mtd_read +EXPORT_SYMBOL_GPL vmlinux 0x523df9d8 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x526280c7 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x52761c06 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x52a5d015 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x52abc1dc relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x52b6f8e9 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x52fe71d0 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x5315be3b inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x5329fdb4 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x533d90b4 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x5349d134 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x535cd002 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x5370c6db yield_to +EXPORT_SYMBOL_GPL vmlinux 0x5389e976 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x53be8ac5 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x53cac9d2 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x53d4f848 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x54086523 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x540ec253 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x541a0efb of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x541e6c47 usb_stor_post_reset +EXPORT_SYMBOL_GPL vmlinux 0x54262be2 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x54277b76 of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x5435d105 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x5442f93b devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x54451781 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x544aab61 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x544f0220 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x545fec86 percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54a29f96 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x54b2467f usb_stor_CB_reset +EXPORT_SYMBOL_GPL vmlinux 0x54cccffa i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x54d468f1 pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x54f409f7 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x5500b25d scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x55022db8 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5520d1b1 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x553838b8 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x55465352 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x5575859d extcon_register_interest +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x55a88434 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x55d2c660 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55eee0be platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x5614a5d8 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x562c4825 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x5634b36c wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x5659cac5 pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x5672e99e dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x56846cf3 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x56a7fda6 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x56bdcd96 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56e188a5 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x56e3e351 scatterwalk_bytes_sglen +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x56ea9092 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x56f85bde __put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x571c7e16 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x5734093e skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x576d95c8 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x57798e9a percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0x578719ef extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x578a2c95 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x578c0123 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x579359a2 vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57a6174c generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x57b255dc phy_init +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57fc4281 cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0x58063ede srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x5807de5e event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x580b4be3 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x583956a8 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x584ad34c gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x585a831f ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x58886058 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58ad9b38 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x58d839f0 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x58e4160c bpf_prog_get +EXPORT_SYMBOL_GPL vmlinux 0x590b3800 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x590b7431 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x590ed32e serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x593161dc mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0x593c6e56 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x59488c1f sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x594a7875 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x594cde67 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x5997826e tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x599d0cb6 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0x59a6a3dc bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x59b9484f percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x59c22a8a arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0x59c3ea93 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x59dea1bd simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x59f999a9 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5a031336 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x5a257bcc devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x5a39ee28 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x5a3c34a6 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x5a4d0406 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x5a4e1392 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x5a4fd390 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x5a55d0c3 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x5a65c37b devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a9aaae4 clk_gpio_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x5a9f9856 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x5aa8a5be usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x5add4d89 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x5aead68a dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x5b4b56be unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x5b6362c0 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0x5b6ae017 spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x5b925309 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5bb53dc4 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5be7d08f alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x5beba671 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x5bf4ec5a usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x5c05b303 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x5c137149 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x5c271b6e ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x5c41a2fe regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c5a22d8 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x5c6ff7a4 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x5c8745f4 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x5c8e4e16 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cc394da ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5cec9f91 trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x5cfc85a0 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d153a7a hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0x5d1974ed pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x5d334731 mtd_block_isbad +EXPORT_SYMBOL_GPL vmlinux 0x5d53eaf0 clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0x5d545eb4 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x5d6dbf0c ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x5d9425cb __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5df498fc __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x5e0bc6df usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x5e188afe usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x5e27fd25 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x5e2e2b45 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x5e44c739 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x5e4c7812 usb_stor_bulk_srb +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e6f7fbd class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5ea2d049 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x5eab8e89 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x5ed715aa tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x5edf8d27 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x5ee9ead5 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x5f06c520 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x5f50ae03 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x5fd26439 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x5fe8cf0a ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x6012f8b9 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x601ab55c vc_sm_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6035b78e fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x6077d5d2 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x607f18e2 scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x60809162 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x60809794 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x608f5485 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60aa5d0a tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x60de7868 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x60df6892 wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0x60f70c31 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x6110c212 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x61184794 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x611a0136 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x61252f09 usbnet_tx_timeout +EXPORT_SYMBOL_GPL vmlinux 0x614d4cbc pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x6158436c power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x61654363 pin_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x61705c05 gov_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x617f93cd mtd_erase +EXPORT_SYMBOL_GPL vmlinux 0x61939e62 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x6199c53a dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x61a50f1f vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x61a9c6f1 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x61c98087 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x61e7e202 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x62571496 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x627a66bb usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL vmlinux 0x627c0327 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x6280771d thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0x6293707e ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x62a63505 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x62af2343 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0x62d6f27b rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x62fd5680 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x6304cbdd __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x632728a9 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x6353d5ee xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x6369d20d blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x636c84cc security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x638ceab3 user_update +EXPORT_SYMBOL_GPL vmlinux 0x6395130f vc_mem_get_current_size +EXPORT_SYMBOL_GPL vmlinux 0x639d995d devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0x63b9376a dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x63cc211b bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x63f7fefe rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x63ff577c serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x6402f179 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x645bb151 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x646b1635 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6486f972 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x64a70cfc io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x64b76708 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x64bae8a6 rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0x64d7a0e6 gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0x64da1464 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x64e24a5e memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x64e2a1bc crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x65066c30 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6534a914 usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL vmlinux 0x65690cde __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x65690cf6 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x656c546a dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x656d83bb pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x6590eea4 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x65b22a14 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65c40032 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x65c816b8 fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x65cc1003 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65da909e devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x661ebd52 __mtd_next_device +EXPORT_SYMBOL_GPL vmlinux 0x6629b155 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x66465338 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x665c73c7 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x668b898a regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x669a9e18 devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x66ab5180 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x66ab6a54 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x66b1f877 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x66b2df61 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x66b78d1d usbnet_status_start +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66e3cbe5 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x66ff368e class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x6700632b devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x67032712 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x673888c6 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6764d48a crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x679c42ae blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x67bc2a21 dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x67c9ed2b trace_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x67ca64e2 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x67f8b410 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x680a9c15 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x6823fa00 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x682ffc4d rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x6864cd30 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x6878560b tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x6883d798 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x68956406 static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x6897c7cb usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x689f23a6 shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0x68a8adf5 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x68b12c79 tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0x68c79646 cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x68cd82d7 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x68fc41c8 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x68fdbaec watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x69066b95 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0x694b8ece class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x694be42a usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0x69614043 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x69af41d7 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x69bde50d usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x69d420f6 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x69d749de rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x6a065af1 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6a14aade bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x6a15efda watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x6a208af7 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x6a271aa9 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a78c334 of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x6a873e71 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x6a9138ac tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x6a9264fa adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x6a955c60 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x6a9bc1b9 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x6aa1f56f balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x6aaa204c i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0x6ae39d47 dma_request_slave_channel_reason +EXPORT_SYMBOL_GPL vmlinux 0x6b04810e device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x6b16d952 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x6b17ab9a regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b2bbfe8 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x6b3af8e8 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL vmlinux 0x6b51013b aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x6b5fb69b __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6b7708d8 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x6b770f49 decode_bch +EXPORT_SYMBOL_GPL vmlinux 0x6b7fadd7 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b87ab58 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x6b8f338d spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x6b9e5c82 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x6bae2e15 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x6bc03765 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x6bced866 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x6bd86b8c blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0x6be3ec87 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x6bf781ee tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c19576c gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x6c209eab __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c5eac0a arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x6c6e42a4 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0x6cb091b0 __of_genpd_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6d0ce49d inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x6d1c8404 tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0x6d20eea9 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d37d963 start_critical_timings +EXPORT_SYMBOL_GPL vmlinux 0x6d424356 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x6d4cd964 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x6d4deaa5 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x6d5229a7 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x6d840550 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x6db1e4fa dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x6dce12c1 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e40e38e usb_stor_pre_reset +EXPORT_SYMBOL_GPL vmlinux 0x6e4f6472 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x6e51afc8 percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x6e542474 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x6e7284ff posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x6e798750 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e8b9dbd sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x6e8cc6b4 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x6ea16324 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x6eaa7d9b device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x6ec4d668 tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x6ec59713 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x6ecb091c debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x6edac008 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x6edd076d ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x6f0247a4 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f6eec6b sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x6faf7719 ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x6fc1f278 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x6fc42263 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x6fc6eb5f balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x6fcbb646 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x6fd7228a __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6ff2ccd6 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x70096b24 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x700b4513 __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x70130214 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x7018bce7 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0x702fe223 fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0x70327359 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x704d2fa6 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x704d7cd3 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x704e1cef vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x70554dd4 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x7071504f devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x707cde94 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x70816a95 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70cc833d crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70dc49aa bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0x70e6a9ab exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x71008581 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x71036011 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x71299b3a __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x71360ad4 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x71896b35 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x71973e86 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71a75147 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71f38385 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x71fe882c fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x720b8696 mtd_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7219380a phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x72515d5a snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x725b30fe max_gen_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x72d6def1 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x72dc02a7 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x72e717d6 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x72e8cd6f trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x730a3bac get_mtd_device_nm +EXPORT_SYMBOL_GPL vmlinux 0x730bd0c7 asic3_write_register +EXPORT_SYMBOL_GPL vmlinux 0x731fe901 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x7322fc87 rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7324d32f usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x734db710 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x73688d01 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x739b4c82 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73af9cfd dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73e00610 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x74058a1d sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x74167647 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x742834eb splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x7442edce pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x74439fe5 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x74504bc4 gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7468b74e __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x74854a32 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x748e2b0a tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x74941158 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x74a29c25 amba_device_put +EXPORT_SYMBOL_GPL vmlinux 0x74a6c179 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74c02682 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x74d007c2 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x74feaf47 input_class +EXPORT_SYMBOL_GPL vmlinux 0x750aec22 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x75733771 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x7579561a crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x75aa614d usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x75bb5f0d devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x75c2b9f1 memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75d0a88c lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x75e7e04b irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x75ec6813 dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x75f0c7fb phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7602236b del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0x760aeb7d dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x760fbe1e regmap_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0x7612a0a2 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x768b3baf sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL vmlinux 0x769db628 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x76b0c992 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x76bd3278 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76ecd5e6 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x770cf981 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x77321b76 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x77401c0b sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x77416e3e ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x7745887a thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77d92f17 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x78094e40 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x78151326 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x781b0e57 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x783975ae sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x7842b4f3 of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x785cf1c3 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x78639e56 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x7875c788 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78e1943b metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x78fb0c1b mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x7903063b modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x79345d66 usb_stor_suspend +EXPORT_SYMBOL_GPL vmlinux 0x79366e6f usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x793c57ed devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x7959a044 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x797eb21b usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x79870b46 __get_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x799e7717 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x79c705e3 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x79cf1c10 blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0x79dc2b5b devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e8179f inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x79e90310 edac_subsys +EXPORT_SYMBOL_GPL vmlinux 0x79f3ca50 devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x79fe901b dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x79ffd383 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x7a09ecb3 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x7a46b433 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7a4de385 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x7a720933 of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x7a8e3d3c sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x7a8e90c7 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7aa07e8f scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x7aa36c31 ref_module +EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x7b041d3c scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b47d99d device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x7b576bfb driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x7b85673a inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7ba1f02d blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0x7be4c1cd max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x7beaff46 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x7c1147d7 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x7c353e53 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x7c3cfdf4 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x7c4f928e vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x7c58a2bf mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x7c6a49ce unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x7c95409b pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7c9df885 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x7cab18f6 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cea7569 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cf499ce of_fixed_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0x7cf5accc io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x7d01b236 ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0x7d09b253 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x7d1dbe8d usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x7d49d248 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d684a8e cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x7d73b5be fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7d8a5490 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x7d992ea7 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7dbc8471 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x7dc00103 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7dc4d344 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7dda56ad mmput +EXPORT_SYMBOL_GPL vmlinux 0x7e0626c8 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x7e2b1edd dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x7e32b0ec pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x7e350cc3 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x7e4c89cd fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x7e5ef8dd devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e881d18 x509_request_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x7e8bdb58 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x7e905b70 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7e9cee4f crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x7ed68941 asic3_read_register +EXPORT_SYMBOL_GPL vmlinux 0x7ed9f443 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x7eddd9e8 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x7f128b13 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature +EXPORT_SYMBOL_GPL vmlinux 0x7f4ea38a i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x7f4f28ab scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x7f5101ae mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x7f51c692 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f83fade device_reset +EXPORT_SYMBOL_GPL vmlinux 0x7fa26893 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fbb5711 probes_decode_arm_table +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fc8c551 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x7fd5fd6e __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x7fd9eb60 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x7fdcc528 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x8010d2c6 percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0x801d5410 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x801dc6ce adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x804cb2d6 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x80867f02 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x808ffcbe spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x809f72a2 regmap_field_write +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80d6232b mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x80f8589f trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x8101c7e3 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x8109bb80 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x810b11d1 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x8117470c wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x81255ad1 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x812a4f96 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x8133427d usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x81607221 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x81617579 __bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x818f7d7e ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x81d2c7b0 led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0x81d475d8 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x82037296 percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x821776bd get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x824436f1 irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x824a67f9 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x82556e1a irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x826cad56 wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0x826daa62 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x827dd1f0 wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0x827ea7ec __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x82b158a2 arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x82b285fa srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x82bf2475 of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x82c342e0 irq_find_matching_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x82c7d1a0 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x82d37069 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82dd6e42 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x8329a980 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x8371f1b7 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x837530ba devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x83c5d108 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x83cc94d5 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x83d5e30b component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x83f04135 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x83f263d9 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x8401cfc0 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x8429c922 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x843a0972 dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x843d03b2 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x845b671d sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x848b55dd spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x848bd0fb call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x848d030b mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x848df01a __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x849489e5 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x8496a7e4 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x849bc2d9 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x84b1e978 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84fdb2a6 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x850f6fdb device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x851f415d fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x8522d741 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x8538c3e4 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x853e1dad mtd_writev +EXPORT_SYMBOL_GPL vmlinux 0x8550c8d2 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x85567dd2 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x855cf710 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x8579da32 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x857be7a7 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x858737ec fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x85ade899 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x85b92735 nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x85c3e0d5 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85ebe611 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x862b9816 cpu_topology +EXPORT_SYMBOL_GPL vmlinux 0x86389c82 bcm_dma_chan_free +EXPORT_SYMBOL_GPL vmlinux 0x8650b51e __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x8652110e pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x8673eb09 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x86a525a8 of_dma_get_range +EXPORT_SYMBOL_GPL vmlinux 0x86db01c9 usbnet_defer_kevent +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x8706d128 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x871175b5 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x8717df8b __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x873b7eed ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x874ef8a4 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x8750f06f fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x875c818c of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x8774ec13 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x877506b5 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x8788417d component_add +EXPORT_SYMBOL_GPL vmlinux 0x879b9679 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x87a6214d netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x87bf01ba devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x87ce640c device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x88136838 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x881a5021 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x881cb966 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x88334ed3 wm8400_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x887a3d34 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88bd1a59 sdhci_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x88c8da9a inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x88e1f9a9 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x88f43847 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x88f999be call_filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x892636c1 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x893f494f dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x894737e1 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x8957ec92 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x896bf480 sdhci_get_of_property +EXPORT_SYMBOL_GPL vmlinux 0x896df98d anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x897d7e82 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x898aa4c1 dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x89b2e364 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89c17a10 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0x89cb6b54 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0x89d79ef8 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x89d8b5fc sdhci_pltfm_free +EXPORT_SYMBOL_GPL vmlinux 0x89e59e0d wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x8a28d4da tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x8a290d44 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x8a30be53 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x8a34057c dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod +EXPORT_SYMBOL_GPL vmlinux 0x8a5921cc of_css +EXPORT_SYMBOL_GPL vmlinux 0x8a5f86ce fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x8a6cc4c3 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8abc0b28 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x8ad92723 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x8b097ed0 devres_release +EXPORT_SYMBOL_GPL vmlinux 0x8b0a5c1a eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b2b1ef0 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x8b775d3a __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x8b7832c4 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x8be1b72d usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x8be7c39a reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0x8beb042c serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x8bf0051d ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x8bf1b7c4 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x8bfed3ae input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c3926d7 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x8c4e4d7d pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c78546f ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x8c86043d bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x8c90e94e blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x8cb2752e ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x8cd5dd5c tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params +EXPORT_SYMBOL_GPL vmlinux 0x8cf01d03 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x8cfda25b md_run +EXPORT_SYMBOL_GPL vmlinux 0x8d01734d srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x8d09e505 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x8d14ba02 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x8d1b2bc7 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x8d44cd21 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x8d52db38 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x8d7ea690 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x8d98c187 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL vmlinux 0x8dca0f28 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x8ddcb4aa i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x8dede908 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x8e08e1a2 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x8e0c07a8 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x8e2b25c2 videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e4287b5 sdhci_pltfm_init +EXPORT_SYMBOL_GPL vmlinux 0x8e57283b i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x8e5be5fc noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x8e5ed1b3 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x8e754541 scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0x8e7894bd __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x8e837d01 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x8e8c50c7 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x8eab567a blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0x8eaf75fc sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8ed18009 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x8ed2febc srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8ed5c2ea disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x8eea66bc of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x8effcfcb sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f0c52ad dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x8f4b4463 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8fc099e4 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x8ff56f22 __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x900f06f7 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x90225ad4 register_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0x9022b34b crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x9022d5bc memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x9035a344 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x904601cf ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x9047c11a trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x90917bab kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90c14df8 crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x90caa045 dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0x90d0d3be put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x90dfe2eb dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x90e505b0 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x90ee4fef of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x910f7707 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x914fa14e amba_apb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0x9153b80e of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0x9159e94a sdhci_pltfm_resume +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x919372b9 skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91dda801 scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x923769b9 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x9259aeb5 usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL vmlinux 0x9271d85e trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x92726ebb rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x92770158 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x92832758 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x929ae307 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x92a8cbf7 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x92accbf3 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x92bc85cf usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x92c1557a thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x92d136cd regulator_can_change_voltage +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e0846d of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x92e9ab3c devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x92f6e4b6 __ktime_divns +EXPORT_SYMBOL_GPL vmlinux 0x92fecfd2 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x9308c462 blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0x930e600d get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x9328b746 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x93517cc0 component_del +EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x9387b421 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x93a4cb2f dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x93bf2fcd __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x93d09549 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x93d28c2f kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x93d3b951 of_fixed_factor_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9432b036 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x9463ff71 init_bch +EXPORT_SYMBOL_GPL vmlinux 0x947413df dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x947fd8bb task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x94960075 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x9497c26e of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x94a29edb crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x94ab0701 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0x94f5f000 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x95006941 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x950ee7d1 fb_find_logo +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x955af1eb synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x95802018 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x9592a29c aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x9599070c mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x95abdeca register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x95c578a0 ioremap_page_range +EXPORT_SYMBOL_GPL vmlinux 0x95c8a11b gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x95fbc8ed platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x96060daf md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x96199481 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x961c4a24 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9632a9f9 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x963869ed pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9658c21b ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x966899eb xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x96754eb6 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x96859be0 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x96f8abd1 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x97066ac4 register_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0x970cd77d pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x9711d688 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x973002c8 bcm_dma_is_busy +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x975723b9 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x97a594f0 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x97ac4c03 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x97c7cba0 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97e80958 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x97f0793f genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x97fd8b9a device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x98382ea0 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x984c745c skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x986c4794 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x987be76b dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x9889274f __netlink_alloc_skb +EXPORT_SYMBOL_GPL vmlinux 0x989eb047 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x98c9f584 klist_init +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on +EXPORT_SYMBOL_GPL vmlinux 0x98fdf805 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x992ca9c4 vc_sm_map +EXPORT_SYMBOL_GPL vmlinux 0x994249a8 dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x9973add9 __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x99875194 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x99947f4f device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99ce0592 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x99f99c6d disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a3483ca flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x9a41d8f8 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x9a5021ee sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x9a5353b6 usbnet_change_mtu +EXPORT_SYMBOL_GPL vmlinux 0x9a59e685 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x9a788cc2 smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x9a8932e6 wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9aa111e3 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x9aa7eb5d devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x9ab6aaf7 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ae9e6c5 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9aff6953 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x9b256460 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x9b39f946 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x9b3d621e of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x9b3f1622 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x9b5f654f regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9b8e32f5 usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL vmlinux 0x9ba9dc85 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x9baaafc0 pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0x9be233d5 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9c14d392 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x9c14f0f7 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x9c21a91d device_create +EXPORT_SYMBOL_GPL vmlinux 0x9c3e5b59 percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9c3e968d xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x9c5065eb relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x9c5fdea6 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x9c6a9126 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9c6bb7f0 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9c94c40b wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x9c95879d __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cd9eae9 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x9cfbfc9c component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x9d1f4e07 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x9d3d6028 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x9d4ba5f3 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x9d666624 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x9d8ffe9a bcm_dma_abort +EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported +EXPORT_SYMBOL_GPL vmlinux 0x9dae1ecb extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0x9dbe0c74 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x9de19f61 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x9e0ff655 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x9e1c27ab pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0x9e3edab3 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e8d196c devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x9eb01853 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x9ec3d514 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x9ec64284 fill_inquiry_response +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ee0a805 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x9efeef5f usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL vmlinux 0x9f0daf5a powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x9f21ede2 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x9f383871 dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x9f63f8c9 fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9f68234e regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x9f95d277 napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x9fa469e8 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fd8efbf unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x9fdf14fa get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0xa013a9cf init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xa01627ed pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xa033df40 clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xa03446cf usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xa04d6949 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0xa0654429 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0xa078732f mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa086c67e led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0xa0a189d2 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa0a99d0e devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xa0aebaa1 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xa0af1719 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0xa11a8c09 pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0xa123eb92 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa1365d74 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xa1465585 digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0xa14a1817 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa1a72604 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xa1a7ec3c pwm_config +EXPORT_SYMBOL_GPL vmlinux 0xa1aa1fea ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0xa1d2ccd9 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0xa1d700ad blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0xa1e564bb crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xa1ee828c irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xa1fa1727 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0xa223f7ce sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0xa2377156 of_device_get_modalias +EXPORT_SYMBOL_GPL vmlinux 0xa24beb61 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xa252623f rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa26611f0 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa27f7c12 regmap_update_bits_check_async +EXPORT_SYMBOL_GPL vmlinux 0xa28868be list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xa2b21b74 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa2b9c993 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2c539f9 ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0xa2cb8719 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0xa2d8a187 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0xa2ec15da led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0xa340e4b2 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xa3444d89 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0xa35bc657 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa380bccf key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa38cfbb4 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xa392cd7b clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0xa39af029 sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0xa39b025e fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3c3dd51 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xa3c7decf uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xa3dbbb75 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0xa3e15c90 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa3f52b9a usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL vmlinux 0xa3faab3f device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0xa3fbbd51 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xa42d0467 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xa44d2b8e cpufreq_governor_dbs +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa49ba6b2 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xa4b058d7 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa4d00c1c ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xa4d8de45 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0xa4ed4eca get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xa5046d7f pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xa505cb70 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0xa5087a6b blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0xa524d56c usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0xa5250472 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xa5314bda kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xa53f3c1f bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0xa546b754 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xa559a311 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0xa563c01f sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xa584a899 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0xa5c0fe1a devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xa5e01ffb mtd_table_mutex +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5f8854a usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xa5fa3832 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xa612fd4b input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa62e3347 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xa634c9a2 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0xa63eeacf usbnet_get_endpoints +EXPORT_SYMBOL_GPL vmlinux 0xa64ba49e usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xa65485f8 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0xa69e3976 mtd_is_locked +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6bfb33a platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xa6d2c7d1 ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa7028da0 regmap_fields_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xa7113007 vc_sm_free +EXPORT_SYMBOL_GPL vmlinux 0xa71ccd6d mtd_add_partition +EXPORT_SYMBOL_GPL vmlinux 0xa76a294e regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0xa77ae423 flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xa7859d14 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xa7874803 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xa78e2351 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xa7a3dc30 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xa7d8ea75 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xa7f56c27 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xa82147f3 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa840d8d8 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa87bfdcd devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0xa88c2149 dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0xa8accc50 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0xa8b6c551 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8bc717e percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0xa8c76085 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xa8cf7aa3 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xa8d0b918 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xa8d0e65a pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xa8f9f377 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa94af5a7 device_add +EXPORT_SYMBOL_GPL vmlinux 0xa94c3ba8 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0xa968f69e __sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xa972dc86 pwm_disable +EXPORT_SYMBOL_GPL vmlinux 0xa972e6ca of_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xa992c0c4 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9e59bf7 register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xa9ec194b regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0xaa5d3a29 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaabadf80 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0xaac498df usbnet_resume +EXPORT_SYMBOL_GPL vmlinux 0xaad1e512 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xaae0f36e fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0xaafe8ad1 pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xab138cf4 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xab18e6bd scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0xab1d0653 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xab208178 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xab20ac5a fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xab2372e4 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xab37afac gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xab4ce2c2 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del +EXPORT_SYMBOL_GPL vmlinux 0xab67e751 wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab6bdd52 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xab7446ad shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0xab7dd9e7 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0xab8cd313 get_device +EXPORT_SYMBOL_GPL vmlinux 0xab945a16 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xab99eced usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xaba197fd gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xaba260d3 devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabe908ce shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xabeea996 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xabff5425 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xac20bbeb crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0xac2722ee mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xac3378a8 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xac4d8c92 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0xac5c9e6d regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xac6c8a55 __of_genpd_xlate_simple +EXPORT_SYMBOL_GPL vmlinux 0xac6fe22b tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xad152e48 usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0xad1aac01 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xad47de6f kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0xad77e338 cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0xad94ced8 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0xad9cb2a6 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xadb86f36 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xaddf5596 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xae0d8a9c ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xae3c31b0 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae757ebf gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae7f385c serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0xae81922b of_overlay_destroy_all +EXPORT_SYMBOL_GPL vmlinux 0xae95a5f5 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xae9f9d59 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xaebe4521 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaeeadd2d irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xaef06388 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xaf30194c device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xaf3935fa fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0xaf3e4371 of_get_nand_bus_width +EXPORT_SYMBOL_GPL vmlinux 0xaf3ec07f usbnet_resume_rx +EXPORT_SYMBOL_GPL vmlinux 0xaf3f88ea blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xaf4c4449 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xaf538767 usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL vmlinux 0xaf9e9443 usbnet_probe +EXPORT_SYMBOL_GPL vmlinux 0xafa28b9f sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xafb4b4d3 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xafd32c10 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xafdca3a5 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL vmlinux 0xaffb300a cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xb004021c platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xb0128a78 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xb041eccd mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xb074cd14 sdhci_add_host +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb090b5dd usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xb091bf82 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xb09de3ac devres_find +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0bce4f0 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xb1138ed9 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1bfbb47 usbnet_status_stop +EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xb1df02c8 mtd_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb1e16c41 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb200f145 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb2588e99 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb27d9dc0 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xb2a9e142 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0xb2ca7056 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xb2d158ca sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xb2d7ad94 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0xb2d9d61e perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb30611cf blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xb30d25b4 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xb30d5521 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xb3196079 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0xb31e8019 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0xb33b5cef clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0xb34569c7 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xb35818a5 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0xb3620941 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0xb369ec5f crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xb378a6d8 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xb388e2c0 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xb39e4fc4 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xb3cece12 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0xb3dd9f55 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0xb3f5d625 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0xb40d8d8f __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xb427e202 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb44d7608 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0xb466c615 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0xb47cad19 bgpio_remove +EXPORT_SYMBOL_GPL vmlinux 0xb491fe75 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xb4a2853a ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4b993b1 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xb4ca5aa1 dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4fd779a devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb520f434 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xb5218a69 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xb54d40db cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xb5769054 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xb57e0b1e rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb59936a2 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5cba789 inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0xb5e896fb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb601a3a0 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xb616e2f1 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb62ba30f usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0xb66a3939 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0xb66c39a5 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xb68221db stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6c7e0af usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0xb6e3d3be posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb7066338 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0xb711d130 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xb727a08d irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb754fe1c devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0xb7568cfc crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xb75cc6d9 blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0xb7ca32a3 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb7e55734 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb8276267 ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0xb8342415 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb8346aeb percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb83b5917 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xb83d3704 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xb845a485 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xb85279da scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xb8868f1a bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb88e38f5 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xb89b5a85 sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8e5cbba of_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xb8e7c57e unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xb9080f8a securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xb91601bc crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0xb923fa51 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xb92427b4 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xb953d26d ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xb97d6d26 single_open_net +EXPORT_SYMBOL_GPL vmlinux 0xb982d3bf unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xb98a1a6c usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb9993285 of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0xb99c0d18 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0xb9a04875 ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0xb9a55782 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0xb9aed0ff tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0xb9bdbaa9 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0xb9bfbe98 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0xb9c21604 irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9f545c1 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0xb9ff90d8 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xba1fda36 relay_close +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba407494 mtd_is_partition +EXPORT_SYMBOL_GPL vmlinux 0xba50a9c9 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xba5b2744 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0xba663d01 __put_net +EXPORT_SYMBOL_GPL vmlinux 0xba76d159 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0xba777330 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xba8929ea percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xbab73ded rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbacf354d sdhci_resume_host +EXPORT_SYMBOL_GPL vmlinux 0xbae1673d crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xbaed4048 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xbaf25cc4 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xbaf8984e platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb084603 usb_stor_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb11cfba klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xbb134677 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xbb230bc4 dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0xbb30b8b5 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xbb30bd0d inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0xbb43f4e8 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xbb46fbef tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0xbb50def9 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0xbb7cf9cb jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xbb87f6e5 crypto_lookup_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xbb9cf65f gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0xbb9e2ab5 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xbba02aea uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xbba23024 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xbbcae3cf xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xbbd253f1 fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0xbbdcec5d raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xbbffc722 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0xbc112355 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xbc1b0623 rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xbc3f50e6 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0xbc4ce395 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0xbc4da74c __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xbc5d5c6f gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc7c1448 tps65912_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xbc94ab69 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcb3486f usbnet_open +EXPORT_SYMBOL_GPL vmlinux 0xbcbaa80a __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0xbcc08ae9 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcd1d847 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xbcf89ab6 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0xbd063701 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL vmlinux 0xbd1fb372 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0xbd2e601d fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd46a2b4 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0xbd550da8 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd90c973 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbda18581 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0xbdb0d4f5 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbdf512de free_bch +EXPORT_SYMBOL_GPL vmlinux 0xbe05a41b device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xbe09a62f blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe36f6d7 crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0xbe3a6ca7 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe71c3c5 mtd_unpoint +EXPORT_SYMBOL_GPL vmlinux 0xbe86d391 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbec81f3a usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xbee71174 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xbeed32a9 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0xbef9ecb3 kill_mtd_super +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf20d693 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xbf2d6522 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xbf2ec5f5 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xbf3f3cba ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0xbf76ed47 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0xbf9e3473 phy_create +EXPORT_SYMBOL_GPL vmlinux 0xbfa38021 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0xbfb58f1b blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xbfbcddf8 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbfd0a4a3 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0xbfd7b090 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xbfdd87db pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbff91b81 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xc013e294 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0xc0346809 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc0365100 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xc0573a08 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc0a555e1 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0abe6bb of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xc0b583f3 devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0f94a90 irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0xc159d773 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc182124d ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xc1849988 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xc18578ed process_srcu +EXPORT_SYMBOL_GPL vmlinux 0xc185dcf1 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0xc19be07a of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xc1a7cb68 user_describe +EXPORT_SYMBOL_GPL vmlinux 0xc1bc7bdc inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xc1bced6a cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xc1d58f50 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0xc1dd3787 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc2294873 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc2745790 ping_err +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc297a065 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xc29cc59f pwm_request +EXPORT_SYMBOL_GPL vmlinux 0xc2b0de77 get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0xc2b7cc56 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc2bf9003 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0xc2d38767 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0xc2e728dc ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xc30f639f sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xc32e7129 of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0xc33c10fa securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xc33d874a ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc35ddd98 of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xc3625f83 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc37caa07 ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0xc37f52fa verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xc385cb58 perf_num_counters +EXPORT_SYMBOL_GPL vmlinux 0xc387be04 of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0xc3a4f9c4 cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xc3aabf02 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0xc3ac49e8 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xc3b93bba klist_next +EXPORT_SYMBOL_GPL vmlinux 0xc3c0d607 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xc3c5d1e9 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xc3c7744f fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xc3cdfcac trace_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0xc3f9dd7a crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0xc3fbb9d9 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc3fdda16 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc40d8089 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0xc41b4b1d evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xc4220623 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xc4234eba ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc42bc231 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc4617a81 usbnet_start_xmit +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc48aa3cb user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0xc48abbae sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc48bbfa0 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xc48d1ca7 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xc48f5145 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xc498ca51 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xc4b1a790 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc4e46316 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xc4f5abff usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xc4faadf0 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0xc50222a8 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xc5053b0e __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0xc50e60d2 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc59d1931 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0xc5cb574f sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xc5e0dd66 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0xc5e2dd15 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xc5fa133f pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0xc6099503 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xc609f183 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc621e1a1 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc647b8ef regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0xc649229a clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xc64ee6e2 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc661fcb3 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc69c9692 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc6a2933c ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6b23327 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0xc6def440 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc6ec44f8 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xc705f41b blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc7305ba4 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xc7374be2 arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0xc75317bc tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xc75b2a12 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL vmlinux 0xc772292e __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xc7900732 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xc79baf5c of_get_nand_ecc_mode +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a3a759 cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer +EXPORT_SYMBOL_GPL vmlinux 0xc7cd4ea4 stop_critical_timings +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7e92d5a device_find_child +EXPORT_SYMBOL_GPL vmlinux 0xc81feb6c regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0xc824d600 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xc86f8518 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xc8717577 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc87cbd22 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xc87e2d7a sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xc897bfb6 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8ddcbdf cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc9068a0c sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xc91273b1 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc91e51c2 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xc91fd19c __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xc93efd28 tpm2_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc965430b tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xc9709162 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc97bf873 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level +EXPORT_SYMBOL_GPL vmlinux 0xc98c49f9 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xc992169b regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xc9a9d06e usbnet_stop +EXPORT_SYMBOL_GPL vmlinux 0xc9bd81c0 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xc9c18a04 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xc9c19239 vc_sm_lock +EXPORT_SYMBOL_GPL vmlinux 0xc9e1b35c mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9fba3ce gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xca06f41f __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0xca1985cd bcm_dma_wait_idle +EXPORT_SYMBOL_GPL vmlinux 0xca58e73a ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xca611447 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xca6ae5e9 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xca77b863 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcaccb717 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xcb04d4e0 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xcb104671 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xcb64612e gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0xcb67cb80 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xcb798c18 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcb7aeee2 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcb903cda ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0xcb95bc7d sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0xcbc8690c subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcbe11398 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbed08e8 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcbfe083d i2c_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc095d2a ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcc213c9d dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0xcc2d2511 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xcc587cfc usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xcc70873b usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcc97a052 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xcc97bba7 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0xccaf9c60 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xccbc2ebf device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xcce04694 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xccf336a2 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0xcd5c7b16 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0xcd5ef0eb dev_pm_opp_get_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd928b23 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcdb68def single_release_net +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdcb8d42 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xcde36f4f devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xce02057f platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xce045336 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0xce102fc0 rpi_firmware_transaction +EXPORT_SYMBOL_GPL vmlinux 0xce131818 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xce1a37ab platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xce4decc1 mtd_point +EXPORT_SYMBOL_GPL vmlinux 0xce62f469 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce87ccb4 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0xce97c97e blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xceaf1f06 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcebb0e7e da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee23422 bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0xcf02f655 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xcf04ce2a bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcf25b686 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0xcf431ae2 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0xcf4d667c sdhci_set_bus_width +EXPORT_SYMBOL_GPL vmlinux 0xcf51e729 put_pid +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf58962b pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0xcf5ff3b3 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xcf7d0329 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcf7e6495 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xcf867ad2 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfcbdd76 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xcfd16c65 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xcfdd0286 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd006a3e4 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xd0258bf4 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xd02a6ca5 usb_stor_disconnect +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd08fdfa5 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0cc112a skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0xd0e6b179 spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0xd0fb92a3 request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xd133efbb pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xd14289b4 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xd1502d1d gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xd15ace77 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xd15af9ea pm_genpd_syscore_poweron +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd1822f0b cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd18aab64 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xd18e5e38 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0xd1959c29 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xd1b57570 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xd1cc57cf cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0xd1eb22a0 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0xd1ec5b24 amba_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd1f0a011 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd2070178 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xd20b46ce mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd217a1b7 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd278127f regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xd297042b dev_pm_opp_get_suspend_opp +EXPORT_SYMBOL_GPL vmlinux 0xd2a2b602 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xd2aaeb4e kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xd2de7533 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0xd2fbaf5b devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xd2fd6796 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed +EXPORT_SYMBOL_GPL vmlinux 0xd33cc227 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0xd34469ee led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xd346be35 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xd35043f0 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0xd356b900 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0xd3684b7f usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0xd38170ae nl_table +EXPORT_SYMBOL_GPL vmlinux 0xd38ac67f pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0xd394e49e dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xd3b5ef82 fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd425cfee pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0xd4422766 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd454743a class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xd47b400b gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xd47f8062 device_remove_property_set +EXPORT_SYMBOL_GPL vmlinux 0xd4843744 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xd4b30939 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xd4b4e453 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4c95456 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0xd508f86f crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0xd50bca95 blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xd53157c2 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xd544030b inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0xd54e1669 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0xd5564b74 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd565843b tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xd5734f26 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xd58048a1 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xd5872862 phy_put +EXPORT_SYMBOL_GPL vmlinux 0xd5aa82fe regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0xd5b048e1 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0xd5b85c98 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5d8cbf7 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0xd5e48087 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xd60ae5ea power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd60e9d29 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xd623527d sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0xd62c2147 inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0xd635534d user_preparse +EXPORT_SYMBOL_GPL vmlinux 0xd650159e posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd67ce16b aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xd67f64bc regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd6d5d654 pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd711ab57 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0xd7233e41 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xd74f7ab5 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xd7576380 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd784eabc __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xd7aec1d9 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xd7b85d17 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7e27746 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xd7edfbfe console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd82ee8eb pm_genpd_syscore_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xd840daca stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0xd84b5f2e debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xd8745b4a raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd8a7ca2b blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xd8b325d2 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0xd8be7875 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xd8cced97 crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0xd8dd268d fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xd90575a5 device_move +EXPORT_SYMBOL_GPL vmlinux 0xd92a851d debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xd92e2a60 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xd93f5bd5 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd94aa457 display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0xd9557667 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xd9662b6c init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd98d2c2f of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xd99caf03 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xd9b4690a ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd9b55b28 blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0xd9c9af78 i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0xd9cfc5dd ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0xd9d6f91f i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xd9eb7ca4 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9f8a044 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0xda022dc7 extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0xda1739fd tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0xda528df3 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0xda531740 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xda9e7734 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xdaca8f3a sdhci_set_clock +EXPORT_SYMBOL_GPL vmlinux 0xdae715e0 videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdafa0eed __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0xdb088cb1 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xdb2b6942 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xdb3080b5 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xdb327513 crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xdb39a89c serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0xdb3bc36d wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb8facae __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xdbacf0f0 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdbc987da devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xdbcb170c devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xdbf2a693 __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc28e80d usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xdc2b6c37 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xdc461430 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xdc4ef591 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdcc6a98a driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xdcc93b20 max_gen_clk_probe +EXPORT_SYMBOL_GPL vmlinux 0xdcf51237 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0xdcf8d4fe of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0xdcf9d9ac devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xdcffb793 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0xdd12fc3d sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xdd18e433 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd327be2 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd94582d module_mutex +EXPORT_SYMBOL_GPL vmlinux 0xdd9f0291 of_get_nand_ecc_strength +EXPORT_SYMBOL_GPL vmlinux 0xdda4cb74 wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xdde7ced4 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xddfcb592 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xde044f4c devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0xde0c42cc tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0xde1ad89a tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xde35ee96 sdhci_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xde6be686 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xde7f57cf list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xde9463a6 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xde955238 skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xdea1a70f trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xdeaa79fc arizona_of_get_type +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf133415 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xdf2f4fa3 usbnet_nway_reset +EXPORT_SYMBOL_GPL vmlinux 0xdf336e32 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xdf573dc4 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0xdf5c2ba5 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0xdf617a5e tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0xdf8b7328 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xdf99c922 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0xdfb5ae03 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xdfee0557 driver_register +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe02ea33e devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe043d7aa devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0xe044e682 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0xe06aae19 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xe06e4157 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe07ca631 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0c048e8 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0xe0c17bc0 list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0xe0c63a13 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xe0fe9336 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL vmlinux 0xe1083ae3 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xe1097b00 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0xe121cbb6 static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe17c7461 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xe1b56d7f device_del +EXPORT_SYMBOL_GPL vmlinux 0xe1bc89a9 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0xe1f99efa regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0xe213d43a list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xe22bdbe2 register_mtd_parser +EXPORT_SYMBOL_GPL vmlinux 0xe23e8339 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xe24116d2 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xe2420775 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xe25215fe fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe25a0793 swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0xe26823b8 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe271727c bcm_sg_suitable_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xe283f774 user_read +EXPORT_SYMBOL_GPL vmlinux 0xe294ba06 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xe2c6c529 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0xe2d710b0 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xe30f5e12 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xe323d95c pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xe33f585f of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0xe3462ef5 devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe3693179 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0xe38b51e7 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xe3bf185b platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xe3bfeb9b fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0xe3c3e305 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xe3dcb231 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0xe3dcd962 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xe3eb539f rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0xe3eb987f dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xe3eed2c0 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xe4131542 mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0xe416297d component_master_add +EXPORT_SYMBOL_GPL vmlinux 0xe416c58f uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xe41fe3f3 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xe4260c3c usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL vmlinux 0xe426a8d8 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xe42e1f70 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe45ab0df iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xe45c9eae usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0xe46490df ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe48d48bc inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe49f1c5b blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0xe4a0d7af __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xe4abfa2a xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0xe4e1f386 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xe4e99a20 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xe4ecf559 nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xe53361f4 usb_stor_resume +EXPORT_SYMBOL_GPL vmlinux 0xe55105bc devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe557cce3 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0xe5737e31 usbnet_get_msglevel +EXPORT_SYMBOL_GPL vmlinux 0xe576e468 spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe5a0f89e crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xe5be0586 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0xe5cf0091 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xe5e6b00f clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0xe5fa6130 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe65788ef br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xe66b5945 clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xe67d325c wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0xe6841e4c mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xe694d1c7 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6d36773 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xe6d476b4 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xe716ea69 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xe722f249 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe79337a6 of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0xe7a60efb regmap_fields_write +EXPORT_SYMBOL_GPL vmlinux 0xe7bbca31 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0xe7dc5132 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0xe7dc92de pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe7e8c4cf spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe8054a77 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xe805e80a napi_by_id +EXPORT_SYMBOL_GPL vmlinux 0xe81750a0 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe818e1f2 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0xe823197b otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0xe829f589 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0xe835587f gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0xe83be1a7 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xe85b1294 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xe85f261d wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe869bee0 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0xe8b1bfb2 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xe8f229cd kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0xe9163b4c pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0xe917d241 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0xe920b063 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe9640d94 __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe9817dab get_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0xe9c67987 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9d2de12 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xe9e01908 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xe9e3a929 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xe9ec5888 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xea055d13 wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0xea0a9898 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea173371 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xea2b968c extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xea30435e of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xea35187f mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xea9a0dc6 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0xeabf04f9 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xeac97838 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xeb2b2501 usbnet_suspend +EXPORT_SYMBOL_GPL vmlinux 0xeb42a5dd blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0xeb4e3be4 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xeb665a83 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0xeb841582 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xeba75169 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0xebb3592b snmp_get_cpu_field64 +EXPORT_SYMBOL_GPL vmlinux 0xebb7e578 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0xebc54b60 __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0xebcbe330 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xec06db9c ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0xec0fce32 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec24d561 __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec2de8f4 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0xec371be8 pwm_enable +EXPORT_SYMBOL_GPL vmlinux 0xec399b58 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xec597fa5 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0xec5d8450 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0xec6bbb46 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0xec72f358 rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xec7551fe dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xec93c260 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0xecc5ad2f alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0xecddec08 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xece5ce17 arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xece6bb71 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xecf602bd devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xecfd8761 usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xed06c5cb pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xed07d805 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0xed0e38d7 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0xed13abb9 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xed160458 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0xed20f8e4 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xed23fb82 bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0xed327d5e sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xed3cb92a page_endio +EXPORT_SYMBOL_GPL vmlinux 0xed3f4130 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0xed577b0b pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xed5c17db amba_apb_device_add +EXPORT_SYMBOL_GPL vmlinux 0xed64082e dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xed6c7a3a key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0xed9e5759 wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0xeda63db3 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0xedb936e2 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xedc4aac7 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0xedc78c77 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xee06704e usb_string +EXPORT_SYMBOL_GPL vmlinux 0xee4ae299 rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xeea417d3 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0xeecea001 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xeecfc3cd usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0xeed16ef9 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0xeedf4725 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xeee5c50e ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xef0b0488 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xef0ff88a usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0xef1bfbea crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xef236854 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0xef257974 tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0xef2e3995 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xef2f7388 reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0xef409b74 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef4dd7bb fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0xef66075c usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef8b58c8 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefa7c1a0 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xefc1dc21 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xf0051280 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xf01b6492 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xf0202353 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0xf035f1ec bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf043736e __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf056af76 clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0xf0691f06 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf098a089 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xf09aaade dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0xf0a21507 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xf0c5b2d9 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf0ebe2b5 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xf0f27764 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xf0f5ce87 blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf0ff652d pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xf112ccb9 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xf11db8a2 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xf12caf22 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xf1641e41 usbnet_get_link +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key +EXPORT_SYMBOL_GPL vmlinux 0xf1b2f645 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1c9d6fd clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0xf1f16c9e unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0xf1fc3c81 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xf2196393 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf22a3450 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xf22b9432 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf22c4579 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xf25bc93e ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf25d7d2d nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0xf2781391 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf2a89315 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2c390b6 nand_release +EXPORT_SYMBOL_GPL vmlinux 0xf2c76ffd amba_ahb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0xf2c8f2d4 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xf2d8de86 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf3078ef7 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xf30fda27 lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf312bb05 of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf321c237 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0xf32275aa ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xf32463bd gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0xf32f450b ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xf346ea58 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0xf3477a9d rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf3531966 of_get_nand_on_flash_bbt +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf39981d6 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xf3ac1065 rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xf3c3d282 of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0xf3ca775b blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf402acce posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0xf41be874 spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0xf45ded91 pl08x_filter_id +EXPORT_SYMBOL_GPL vmlinux 0xf467ec23 usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xf4767d82 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0xf47dc514 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xf48642ef of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xf48c9016 of_reserved_mem_device_init +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4c5f581 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xf4e97b1a rpi_firmware_property +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xf5208a99 mtd_device_parse_register +EXPORT_SYMBOL_GPL vmlinux 0xf5222e13 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0xf5249047 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xf52c9f19 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0xf5393c6b crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf54f5b1d __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf57ccfa6 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5a70988 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xf5e4c4b6 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0xf603309b usb_stor_host_template_init +EXPORT_SYMBOL_GPL vmlinux 0xf606e1d0 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0xf616342a ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xf62baa36 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xf63ac8de regmap_field_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xf6484007 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0xf6510b3a rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf66850c1 led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xf67bea0d pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0xf67ca04e clk_register +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6d84ea5 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf71dde02 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0xf76b0a59 read_current_timer +EXPORT_SYMBOL_GPL vmlinux 0xf777b7e8 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xf7c06f75 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xf800650d devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xf80456e6 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xf80dd8c5 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xf813008f crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xf827e509 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xf82e4c49 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf83f3809 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf846506f irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf8484026 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf8c1fec9 regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xf8e02096 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xf8eabb06 of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8f9be28 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf91796f5 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf944e297 mtd_del_partition +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9bd6c2b da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9e6aae8 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xf9e91371 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xf9fe4027 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfa1e97a0 ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa413a01 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xfa4bdac4 rpi_firmware_get +EXPORT_SYMBOL_GPL vmlinux 0xfaca5eb7 irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0xfacd1ede ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xfae16dcd serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0xfae25b5b unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xfb2f7d21 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb6ce300 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb90f7a4 reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0xfb94f014 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xfba55910 swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc1960e0 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xfc2de472 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0xfc4e401b usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xfc5b9144 bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0xfc5ef636 thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfc6e986d fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xfc73688d __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0xfc8f964f wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0xfc95943a enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xfca15376 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xfccab916 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xfcdc7c9d of_get_nand_ecc_step_size +EXPORT_SYMBOL_GPL vmlinux 0xfcf63fe2 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0xfd0c6de7 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xfd36481a unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xfd4124c5 skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfd4a3c3e devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xfd56a1a0 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0xfd8b7786 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xfd9b928f uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0xfdb80b78 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0xfdbd5410 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xfdc8b7f5 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xfdcf7666 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfddab58d crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xfde1a33e klist_prev +EXPORT_SYMBOL_GPL vmlinux 0xfdef4a58 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xfdf55d1e set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xfe009c06 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0xfe1501b2 tpm2_startup +EXPORT_SYMBOL_GPL vmlinux 0xfe1b5a64 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xfe1bfe21 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0xfe4f3ea3 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xfe71aa88 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xff6c1e0e of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0xff9e7168 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xffa18985 crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0xffe584d2 thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0xfff0d2f3 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xfffadf37 usbnet_set_msglevel only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.raspi2/abi/4.4.0-1080.88/armhf/raspi2.compiler +++ linux-raspi2-4.4.0/debian.raspi2/abi/4.4.0-1080.88/armhf/raspi2.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu/Linaro 5.4.0-6ubuntu1~16.04.5) 5.4.0 20160609 only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.raspi2/abi/4.4.0-1080.88/armhf/raspi2.modules +++ linux-raspi2-4.4.0/debian.raspi2/abi/4.4.0-1080.88/armhf/raspi2.modules @@ -0,0 +1,3547 @@ +3c574_cs +3c589_cs +6lowpan +6pack +8021q +8250_dw +8255 +8390 +842 +842_compress +842_decompress +88pm800 +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_virtio +a3d +a8293 +aat2870-regulator +aat2870_bl +ab3100 +ab3100-otp +ablk_helper +ac97_bus +acecad +act200l-sir +act8865-regulator +act_bpf +act_connmark +act_csum +act_gact +act_ipt +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +act_vlan +actisys-sir +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5755 +ad5764 +ad5791 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7266 +ad7280a +ad7291 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7746 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad799x +ad8366 +ad9523 +ad9832 +ad9834 +ad_sigma_delta +adc128d818 +adcxx +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adfs +adi +adis16060 +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16204 +adis16209 +adis16220 +adis16240 +adis16260 +adis16400 +adis16480 +adis_lib +adjd_s311 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1275 +adm9240 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adv7511 +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +aes-arm +aes-arm-bs +aes-arm-ce +af-rxrpc +af9013 +af9033 +af_alg +af_key +af_packet_diag +affs +afs +ah4 +ah6 +ahci_ceva +ahci_platform +ahci_qoriq +aim_cdev +aim_network +aim_sound +aim_v4l2 +aiptek +aircable +airo +airo_cs +airspy +ak8975 +al3320a +algif_aead +algif_hash +algif_rng +algif_skcipher +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +amba-pl010 +ambakmi +amc6821 +amd +ams369fg06 +analog +anatop-regulator +ansi_cprng +anubis +aoe +apbps2 +apds9300 +apds9802als +apds990x +apds9960 +appledisplay +appletalk +appletouch +aquantia +ar1021_i2c +ar5523 +ar7part +arc-rawmode +arc-rimi +arc4 +arc_emac +arc_ps2 +arc_uart +arcnet +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arm_big_little +arm_big_little_dt +arm_mhu +arm_scpi +armada +arp_tables +arpt_mangle +arptable_filter +as102_fe +as3711-regulator +as3711_bl +as3722-regulator +as3935 +as5011 +asc7621 +asix +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +atbm8830 +aten +ath +ath10k_core +ath3k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati_remote +ati_remote2 +atm +atmel +atmel-flexcom +atmel-hlcdc +atmel-hlcdc-dc +atmel_cs +atmel_mxt_ts +atmtcp +atusb +atxp1 +au0828 +au8522_common +au8522_decoder +au8522_dig +aufs +auo-pixcir-ts +auo_k1900fb +auo_k1901fb +auo_k190x +auth_rpcgss +authenc +authencesn +avma1_cs +ax25 +ax88179_178a +ax88796 +axnet_cs +axp20x-pek +axp20x-regulator +axp20x_usb_power +axp288_adc +axp288_charger +axp288_fuel_gauge +b2c2-flexcop +b2c2-flexcop-usb +b43 +b43legacy +b44 +bas_gigaset +batman-adv +baycom_epp +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bcm-keypad +bcm-phy-lib +bcm203x +bcm2835-gpiomem +bcm2835-v4l2 +bcm2835_smi +bcm2835_smi_dev +bcm2835_smi_nand +bcm2835_wdt +bcm3510 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm63138_nand +bcm63xx_uart +bcm7038_wdt +bcm7xxx +bcm87xx +bcma +bcma-hcd +bcmsysport +bd6107 +bdc +befs +belkin_sa +bfs +bfusb +bh1750 +bh1770glc +bh1780gli +binfmt_misc +block2mtd +blocklayoutdriver +blowfish_common +blowfish_generic +bluecard_cs +bluetooth +bluetooth_6lowpan +bma150 +bma180 +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmg160_core +bmg160_i2c +bmg160_spi +bmp085 +bmp085-i2c +bmp085-spi +bmp280 +bnep +bonding +bpa10x +bpck +bpck6 +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +br2684 +br_netfilter +brcmfmac +brcmnand +brcmsmac +brcmstb_nand +brcmutil +brd +bridge +broadcom +broadsheetfb +bsd_comp +bt3c_cs +btbcm +btintel +btmrvl +btmrvl_sdio +btqca +btrfs +btrtl +btsdio +btuart_cs +btusb +btwilink +bu21013_ts +c67x00 +c_can +c_can_platform +cachefiles +cadence_wdt +caif +caif_hsi +caif_serial +caif_socket +caif_usb +caif_virtio +camellia_generic +can +can-bcm +can-dev +can-gw +can-raw +cap11xx +capi +capidrv +capmode +carl9170 +cast5_generic +cast6_generic +cast_common +catc +cb_das16_cs +cc10001_adc +cc2520 +cc770 +cc770_isa +cc770_platform +ccm +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +ceph +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha20_generic +chacha20poly1305 +chaoskey +chipone_icn8318 +chnl_net +ci_hdrc +ci_hdrc_imx +ci_hdrc_msm +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +clip +clk-cdce706 +clk-cdce925 +clk-hifiberry-dacpro +clk-max77686 +clk-max77802 +clk-palmas +clk-pwm +clk-rk808 +clk-s2mps11 +clk-scpi +clk-si514 +clk-si5351 +clk-si570 +clk-twl6040 +clk-wm831x +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm36651 +cm4000_cs +cm4040_cs +cma3000_d0x +cma3000_d0x_i2c +cmac +cmtp +cobra +coda +colibri-vf50-ts +com20020 +com20020_cs +com90io +com90xx +comedi +comedi_8254 +comedi_8255 +comedi_bond +comedi_parport +comedi_pcmcia +comedi_test +comedi_usb +comm +configs +cordic +core +cp210x +cpia2 +cpu-notifier-error-inject +cramfs +crc-ccitt +crc-itu-t +crc32 +crc7 +crc8 +cros_ec +cros_ec_devs +cros_ec_i2c +cros_ec_keyb +cros_ec_spi +cryptd +crypto_user +cryptoloop +cs53l32a +cs89x0 +ctr +cts +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +cx22702 +cx231xx +cx231xx-alsa +cx231xx-dvb +cx2341x +cx24113 +cx24116 +cx24120 +cx24123 +cx25840 +cx82310_eth +cxacru +cxd2820r +cy8ctmg110_ts +cyapatp +cyberjack +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da9030_battery +da9034-ts +da903x +da903x_bl +da9052-battery +da9052-hwmon +da9052-regulator +da9052_bl +da9052_onkey +da9052_tsi +da9052_wdt +da9055-hwmon +da9055-regulator +da9055_onkey +da9055_wdt +da9062-core +da9062-regulator +da9062_wdt +da9063-regulator +da9063_onkey +da9063_wdt +da9150-charger +da9150-core +da9150-fg +da9150-gpadc +da9210-regulator +da9211-regulator +das08 +das08_cs +davicom +db9 +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +decnet +deflate +denali +denali_dt +des_generic +designware_i2s +dgap +dht11 +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dibx000_common +digi_acceleport +digicolor-usart +diskonchip +dlci +dlm +dln2 +dm-bio-prison +dm-bufio +dm-cache +dm-cache-cleaner +dm-cache-mq +dm-cache-smq +dm-crypt +dm-delay +dm-era +dm-flakey +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-verity +dm-zero +dm9000 +dm9601 +dme1737 +dn_rtmsg +dnet +docg3 +docg4 +dp83848 +dp83867 +drbd +drbg +drm +drm_kms_helper +drm_mipi_dsi +drop_monitor +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds620 +dsbr100 +dss1_divert +dstr +dt9812 +dtl1_cs +dummy +dummy-irq +dummy_stm +dvb-as102 +dvb-core +dvb-pll +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-af9035 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6007 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-rtl28xxu +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dvb_usb_v2 +dw_dmac +dw_dmac_core +dw_mmc +dw_mmc-exynos +dw_mmc-k3 +dw_mmc-pltfm +dw_wdt +dwc3 +dwc_eth_qos +dwmac-generic +dwmac-ipq806x +dwmac-lpc18xx +dwmac-meson +dwmac-rk +dwmac-socfpga +dwmac-sti +dwmac-sunxi +dynapro +e3x0-button +e4000 +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ec100 +echainiv +echo +edac_core +edt-ft5x06 +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efs +egalax_ts +ehset +elan_i2c +elants_i2c +elo +elsa_cs +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_meta +em_nbyte +em_text +em_u32 +emac_arc +emac_rockchip +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +empeg +ems_pcmcia +ems_usb +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +epat +epia +eql +esd_usb2 +esi-sir +esp4 +esp6 +et1011c +ethoc +evbug +exofs +extcon-adc-jack +extcon-arizona +extcon-axp288 +extcon-gpio +extcon-max14577 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +ezusb +f2fs +f71805f +f71882fg +f75375s +f81232 +fakelb +fan53555 +faulty +fb_agm1264k-fl +fb_bd663474 +fb_hx8340bn +fb_hx8347d +fb_hx8353d +fb_hx8357d +fb_ili9163 +fb_ili9320 +fb_ili9325 +fb_ili9340 +fb_ili9341 +fb_ili9481 +fb_ili9486 +fb_pcd8544 +fb_ra8875 +fb_s6d02a1 +fb_s6d1121 +fb_ssd1289 +fb_ssd1306 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_sys_fops +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fbtft_device +fc0011 +fc0012 +fc0013 +fc2580 +fcrypt +fdp +fdp_i2c +ff-memless +fit2 +fit3 +flexcan +flexfb +fm_drv +fmc +fmc-chardev +fmc-fakedev +fmc-trivial +fmc-write-eeprom +fmvj18x_cs +fotg210-hcd +fotg210-udc +fou +fpga-mgr +freevxfs +friq +frpw +fsa9480 +fscache +fsl-dcu-drm +fsl-edma +fsl_lpuart +ft6236 +ftdi-elan +ftdi_sio +ftgmac100 +ftl +ftmac100 +fujitsu_ts +g760a +g762 +g_acm_ms +g_audio +g_cdc +g_dbgp +g_ether +g_ffs +g_hid +g_mass_storage +g_midi +g_ncm +g_nokia +g_printer +g_serial +g_webcam +g_zero +gadgetfs +gamecon +gameport +garmin_gps +garp +gcm +gdmtty +gdmulte +gdmwm +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +gennvm +gf128mul +gf2k +gfs2 +ghash-arm-ce +ghash-generic +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +gluebi +go7007 +go7007-loader +go7007-usb +goodix +gp2ap002a00f +gp2ap020a00f +gpio +gpio-74x164 +gpio-74xx-mmio +gpio-addr-flash +gpio-adnp +gpio-adp5520 +gpio-adp5588 +gpio-altera +gpio-arizona +gpio-beeper +gpio-charger +gpio-crystalcove +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-fan +gpio-grgpio +gpio-ir-recv +gpio-kempld +gpio-lp3943 +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-mc33880 +gpio-mcp23s08 +gpio-pca953x +gpio-pcf857x +gpio-regulator +gpio-syscon +gpio-tps65912 +gpio-twl4030 +gpio-twl6040 +gpio-ucb1400 +gpio-viperboard +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio_backlight +gpio_keys +gpio_keys_polled +gpio_mouse +gpio_tilt_polled +gpio_wdt +gr_udc +grace +grcan +gre +grip +grip_mp +gs_fpga +gs_usb +gspca_benq +gspca_conex +gspca_cpia1 +gspca_dtcs033 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_jl2005bcd +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stk1135 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_touptek +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtco +guillemot +gunze +gxt4500 +hackrf +hampshire +hanwang +hci +hci_uart +hci_vhci +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcdrv +hdm_dim2 +hdm_i2c +hdm_usb +hdpvr +hfc4s8s_l1 +hfc_usb +hfcsusb +hfs +hfsplus +hi6421-pmic-core +hi6421-regulator +hi8435 +hid +hid-a4tech +hid-alps +hid-apple +hid-appleir +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-cherry +hid-chicony +hid-corsair +hid-cp2112 +hid-cypress +hid-dr +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-icade +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-lenovo +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-primax +hid-prodikeys +hid-rmi +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-isku +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-konepure +hid-roccat-kovaplus +hid-roccat-lua +hid-roccat-pyra +hid-roccat-ryos +hid-roccat-savu +hid-saitek +hid-samsung +hid-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steelseries +hid-sunplus +hid-thingm +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hidp +hih6130 +hip04_eth +hisax +hisax_st5481 +hisi504_nand +hix5hd2_gmac +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hnae +hns_dsaf +hns_enet_drv +hns_mdio +hostap +hostap_cs +hpfs +hsi +hsi_char +hso +hsr +htc-pasic3 +hts221 +hts221_i2c +hts221_spi +htu21 +huawei_cdc_ncm +hwa-hc +hwa-rc +hwmon-vid +hx8357 +i1480-dfu-usb +i1480-est +i2400m +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-arb-gpio-challenge +i2c-bcm2708 +i2c-cbus-gpio +i2c-cros-ec-tunnel +i2c-designware-core +i2c-designware-platform +i2c-diolan-u2c +i2c-dln2 +i2c-emev2 +i2c-gpio +i2c-hid +i2c-kempld +i2c-mux +i2c-mux-gpio +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-pinctrl +i2c-mux-reg +i2c-nomadik +i2c-ocores +i2c-parport +i2c-parport-light +i2c-pca-platform +i2c-rk3x +i2c-robotfuzz-osif +i2c-simtec +i2c-slave-eeprom +i2c-smbus +i2c-stub +i2c-taos-evm +i2c-tiny-usb +i2c-viperboard +i2c-xiic +ibmaem +ibmpex +icplus +ics932s401 +idma64 +idmouse +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +iforce +igorplugusb +iguanair +iio-trig-interrupt +iio-trig-periodic-rtc +iio-trig-sysfs +iio_dummy +iio_dummy_evgen +iio_hwmon +ila +ili210x +ili922x +ili9320 +imm +imon +impa7 +ims-pcu +imx074 +imx6ul_tsc +imx_thermal +ina209 +ina2xx +industrialio +industrialio-buffer-cb +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +input-polldev +int51x1 +intel_th +intel_th_gth +intel_th_msu +intel_th_pti +intel_th_sth +interact +interval_tree_test +inv-mpu6050 +io_edgeport +io_ti +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_MASQUERADE +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_tunnel +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_wlc +ip_vs_wrr +ip_vti +ipack +ipaq +ipcomp +ipcomp6 +ipddp +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +iproc_nand +ipt_CLUSTERIP +ipt_ECN +ipt_MASQUERADE +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipw +ipwireless +ipx +ir-hix5hd2 +ir-jvc-decoder +ir-kbd-i2c +ir-lirc-codec +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-usb +ir-xmp-decoder +ircomm +ircomm-tty +irda +irda-usb +irlan +irnet +irtty-sir +iscsi_boot_sysfs +iscsi_target_mod +iscsi_tcp +isdn +isdn_bsdcomp +isdnhdlc +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl6271a-regulator +isl6421 +isl6423 +isl9305 +isofs +isp116x-hcd +isp1362-hcd +isp1704_charger +isp1760 +it87 +it913x +itd1000 +itg3200 +iuu_phoenix +ix2505v +jc42 +jedec_probe +jffs2 +jfs +jitterentropy_rng +joydev +joydump +jsa1212 +kafs +kalmia +kaweth +kbic +kbtab +kcomedilib +kempld-core +kempld_wdt +kernelcapi +keyspan +keyspan_pda +keyspan_remote +keywrap +kfifo_buf +khazad +kingsun-sir +kl5kusb105 +kmx61 +kobil_sct +ks0108 +ks8842 +ks8851 +ks8851_mll +ks959-sir +ksdazzle-sir +ktti +kvaser_usb +kxcjk-1013 +kxsd9 +kxtj9 +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l4f00242t03 +lan78xx +lapb +lapbether +latch-addr-flash +lattice-ecp3-config +lcd +ld9040 +ldusb +lec +led-class-flash +leds-88pm860x +leds-aat1290 +leds-adp5520 +leds-bcm6328 +leds-bcm6358 +leds-bd2802 +leds-blinkm +leds-da903x +leds-da9052 +leds-dac124s085 +leds-ktd2692 +leds-lm3530 +leds-lm3533 +leds-lm355x +leds-lm3642 +leds-lp3944 +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max77693 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pwm +leds-regulator +leds-tca6507 +leds-tlc591xx +leds-wm831x-status +leds-wm8350 +ledtrig-camera +ledtrig-transient +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libahci +libahci_platform +libceph +libcomposite +libcrc32c +libertas +libertas_cs +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libiscsi +libiscsi_tcp +libore +libosd +libsas +lightning +lineage-pem +linear +lirc_dev +lirc_imon +lirc_parallel +lirc_rpi +lirc_sasem +lirc_serial +lirc_sir +lirc_zilog +lis3l02dq +lis3lv02d +lis3lv02d_i2c +lis3lv02d_spi +litelink-sir +lkkbd +llc +llc2 +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3630a_bl +lm3639_bl +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lms283gf05 +lms501kf03 +lnbp21 +lnbp22 +lockd +locktorture +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp8755 +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpddr2_nvm +lpddr_cmds +lru_cache +lrw +ltc2941-battery-gauge +ltc2945 +ltc2978 +ltc3589 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltr501 +ltv350qv +lv5207lp +lvstest +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m25p80 +m2m-deinterlace +m62332 +m88ds3103 +m88rs2000 +mISDN_core +mISDN_dsp +m_can +ma600-sir +mac-celtic +mac-centeuro +mac-croatian +mac-cyrillic +mac-gaelic +mac-greek +mac-iceland +mac-inuit +mac-roman +mac-romanian +mac-turkish +mac80211 +mac80211_hwsim +mac802154 +macb +macvlan +macvtap +mag3110 +magellan +mailbox-altera +mailbox-test +map_absent +map_ram +map_rom +marvell +matrix-keymap +matrix_keypad +max1027 +max1111 +max11801_ts +max1363 +max14577 +max14577_charger +max1586 +max16064 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max197 +max20751 +max2165 +max3100 +max31790 +max3421-hcd +max34440 +max517 +max5821 +max63xx_wdt +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77686 +max77693 +max77693-haptic +max77693_charger +max77802 +max8649 +max8660 +max8688 +max8903_charger +max8907 +max8907-regulator +max8925-regulator +max8925_bl +max8925_onkey +max8925_power +max8952 +max8973-regulator +max8997 +max8997_charger +max8997_haptic +max8998 +max8998_charger +mb86a20s +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc44s803 +mcb +mceusb +mcp2120-sir +mcp251x +mcp3021 +mcp320x +mcp3422 +mcp4531 +mcp4725 +mcp4922 +mcryptd +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md-cluster +md4 +mdc800 +mdio-bcm-unimac +mdio-bitbang +mdio-gpio +mdio-mux +mdio-mux-gpio +mdio-mux-mmioreg +mdio-xgene +media +memstick +men_z135_uart +men_z188_adc +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +metro-usb +metronomefb +mg_disk +michael_mic +micrel +microchip +microread +microread_i2c +microtek +minix +mip6 +mk712 +mkiss +mlx90614 +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmc_spi +mms114 +mn88472 +mn88473 +mos7720 +mos7840 +mostcore +mpl115 +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpu3050 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +msi001 +msi2500 +msp3400 +mspro_block +mt2060 +mt2063 +mt20xx +mt2266 +mt29f_spinand +mt312 +mt352 +mt6311-regulator +mt6397-core +mt6397-regulator +mt7601u +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd_dataflash +mtdoops +mtdram +mtdswap +mtk-sd +mtouch +multipath +musb_hdrc +mv_u3d_core +mv_udc +mvmdio +mwifiex +mwifiex_sdio +mwifiex_usb +mxc4005 +mxl111sf-demod +mxl111sf-tuner +mxl5005s +mxl5007t +mxuport +n_gsm +n_hdlc +n_r3964 +n_tracerouter +n_tracesink +nandsim +national +nau7802 +navman +nb8800 +nbd +nbpfaxi +nci +nci_spi +nci_uart +ncpfs +nct6683 +nct6775 +nct7802 +nct7904 +net1080 +net2272 +netconsole +netlink_diag +netrom +newtonkbd +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_ipv4 +nf_nat_ipv6 +nf_nat_irc +nf_nat_masquerade_ipv4 +nf_nat_masquerade_ipv6 +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_redirect +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_synproxy_core +nf_tables +nf_tables_arp +nf_tables_bridge +nf_tables_inet +nf_tables_ipv4 +nf_tables_ipv6 +nf_tables_netdev +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfcwilink +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_log +nfnetlink_queue +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat_ipv4 +nft_chain_nat_ipv6 +nft_chain_route_ipv4 +nft_chain_route_ipv6 +nft_compat +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_exthdr +nft_hash +nft_limit +nft_log +nft_masq +nft_masq_ipv4 +nft_masq_ipv6 +nft_meta +nft_meta_bridge +nft_nat +nft_queue +nft_rbtree +nft_redir +nft_redir_ipv4 +nft_redir_ipv6 +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nftl +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +ni_daq_700 +ni_daq_dio24 +ni_labpc_common +ni_labpc_cs +ni_mio_cs +ni_tio +ni_usb6501 +nilfs2 +nlmon +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +nmclan_cs +notifier-error-inject +nps_enet +ns558 +ntc_thermistor +ntfs +null_blk +nvmem_core +nvram +nxp-nci +nxp-nci_i2c +nxp-ptn3460 +nxt200x +nxt6000 +objlayoutdriver +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +of_mmc_spi +of_xilinx_wdt +old_belkin-sir +omap4-keypad +omfs +omninet +on20 +on26 +onenand +opencores-kbd +openvswitch +oprofile +opt3001 +opticon +option +orinoco +orinoco_cs +orinoco_usb +osd +osdblk +osst +oti6858 +ov2640 +ov5642 +ov6650 +ov7640 +ov772x +ov9640 +ov9740 +overlay +oxu210hp-hcd +p54common +p54spi +p54usb +p8022 +p8023 +pa12203001 +palmas-pwrbutton +palmas-regulator +pandora_bl +panel +panel-lg-lg4573 +panel-raspberrypi-touchscreen +panel-samsung-ld9040 +panel-samsung-s6e8aa0 +panel-sharp-lq101r1sx01 +panel-simple +parade-ps8622 +paride +parkbd +parport +parport_ax88796 +parport_cs +parport_pc +pata_of_platform +pata_pcmcia +pata_platform +pc87360 +pc87427 +pcap-regulator +pcap_keys +pcap_ts +pcbc +pcd +pcf50633 +pcf50633-adc +pcf50633-backlight +pcf50633-charger +pcf50633-gpio +pcf50633-input +pcf50633-regulator +pcf8574_keypad +pcf8591 +pcmcia +pcmcia_core +pcmcia_rsrc +pcmciamtd +pcnet_cs +pcrypt +pcwd_usb +pd +pda_power +peak_pcmcia +peak_usb +pegasus +penmount +percpu_test +pf +pfuze100-regulator +pg +phonet +phram +phy-am335x +phy-am335x-control +phy-bcm-kona-usb2 +phy-exynos-usb2 +phy-gpio-vbus-usb +phy-isp1301 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-tahvo +phy-tusb1210 +physmap +physmap_of +pixcir_i2c_ts +pkcs7_test_key +pktcdvd +pktgen +pl172 +pl2303 +pl330 +plat-ram +plat_nand +platform_lcd +plip +plusb +pm-notifier-error-inject +pm8921-core +pm8941-wled +pm8xxx-vibrator +pmbus +pmbus_core +pmic8xxx-keypad +pmic8xxx-pwrkey +pn533 +pn544 +pn544_i2c +pn_pep +poly1305_generic +port100 +powermate +powr1220 +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_core +pps_parport +pptp +prism2_usb +ps2mult +psmouse +psnap +pt +ptp +pulsedlight-lidar-lite-v2 +pvrusb2 +pwc +pwm-atmel-hlcdc +pwm-bcm2835 +pwm-beeper +pwm-fan +pwm-fsl-ftm +pwm-lp3943 +pwm-pca9685 +pwm-regulator +pwm-twl +pwm-twl-led +pwm_bl +pxa27x_udc +qcaspi +qcaux +qcom-spmi-iadc +qcom-spmi-temp-alarm +qcom-spmi-vadc +qcom_spmi-regulator +qcserial +qinfo_probe +qmi_wwan +qnx4 +qnx6 +qoriq-cpufreq +qsemi +qt1010 +qt1070 +qt2160 +quatech2 +quatech_daqp_cs +quota_tree +quota_v1 +quota_v2 +r8152 +r8188eu +r820t +r8712u +r8723au +r8a66597-hcd +r8a66597-udc +radio-bcm2048 +radio-i2c-si470x +radio-keene +radio-ma901 +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-shark +radio-si476x +radio-tea5764 +radio-usb-si470x +radio-usb-si4713 +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ramoops +raw +ray_cs +rbd +rbtree_test +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-asus-pc39 +rc-asus-ps3-100 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-delock-61959 +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-dvbsky +rc-em-terratec +rc-encore-enltv +rc-encore-enltv-fm53 +rc-encore-enltv2 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-pctv-sedna +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-reddo +rc-snapstream-firefly +rc-streamzap +rc-su3000 +rc-tbs-nec +rc-technisat-ts35 +rc-technisat-usb2 +rc-terratec-cinergy-c-pci +rc-terratec-cinergy-s2-hd +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-total-media-in-hand-02 +rc-trekstor +rc-tt-1500 +rc-twinhan-dtv-cab-ci +rc-twinhan1027 +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rc5t583-regulator +rcar_can +rds +rds_tcp +realtek +redboot +redrat3 +reed_solomon +regmap-spmi +regulator-haptic +reiserfs +remoteproc +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd_ftl +rfkill-gpio +rfkill-regulator +rio500 +rj54n1cb0c +rk808 +rk808-regulator +rmd128 +rmd160 +rmd256 +rmd320 +rn5t618 +rn5t618-regulator +rn5t618_wdt +rndis_host +rndis_wlan +rohm_bu21023 +romfs +rose +rotary_encoder +rpcsec_gss_krb5 +rpi-ft5406 +rpi_backlight +rpisense-core +rpisense-fb +rpisense-js +rpr0521 +rrpc +rsi_91x +rsi_sdio +rsi_usb +rt2500usb +rt2800lib +rt2800usb +rt2x00lib +rt2x00usb +rt5033 +rt5033-regulator +rt5033_battery +rt73usb +rt9455_charger +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab3100 +rtc-abx80x +rtc-as3722 +rtc-bq32k +rtc-bq4802 +rtc-cmos +rtc-da9052 +rtc-da9055 +rtc-da9063 +rtc-ds1286 +rtc-ds1305 +rtc-ds1307 +rtc-ds1343 +rtc-ds1347 +rtc-ds1374 +rtc-ds1390 +rtc-ds1511 +rtc-ds1553 +rtc-ds1672 +rtc-ds1685 +rtc-ds1742 +rtc-ds2404 +rtc-ds3232 +rtc-ds3234 +rtc-em3027 +rtc-fm3130 +rtc-hid-sensor-time +rtc-hym8563 +rtc-isl12022 +rtc-isl12057 +rtc-isl1208 +rtc-lp8788 +rtc-m41t80 +rtc-m41t93 +rtc-m41t94 +rtc-m48t35 +rtc-m48t59 +rtc-m48t86 +rtc-max6900 +rtc-max6902 +rtc-max77686 +rtc-max77802 +rtc-max8907 +rtc-max8925 +rtc-max8997 +rtc-max8998 +rtc-mc13xxx +rtc-mcp795 +rtc-msm6242 +rtc-mt6397 +rtc-palmas +rtc-pcap +rtc-pcf2123 +rtc-pcf2127 +rtc-pcf50633 +rtc-pcf85063 +rtc-pcf8523 +rtc-pcf8563 +rtc-pcf8583 +rtc-pl030 +rtc-pm8xxx +rtc-r9701 +rtc-rc5t583 +rtc-rk808 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rv8803 +rtc-rx4581 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-snvs +rtc-stk17ta8 +rtc-tps6586x +rtc-tps65910 +rtc-tps80031 +rtc-twl +rtc-v3020 +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtc-zynqmp +rtl2830 +rtl2832 +rtl2832_sdr +rtl8150 +rtl8187 +rtl8192c-common +rtl8192cu +rtl8xxxu +rtl_usb +rtlwifi +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rx51_battery +rxkad +s1d13xxxfb +s2250 +s2255drv +s2mpa01 +s2mps11 +s3fwrn5 +s3fwrn5_i2c +s5h1409 +s5h1411 +s5h1420 +s5m8767 +s6e63m0 +s921 +saa7115 +saa7706h +safe_serial +salsa20_generic +samsung-keypad +samsung-sxgbe +sbs-battery +sc16is7xx +sca3000 +sch5627 +sch5636 +sch56xx-common +sch_atm +sch_cbq +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_fq +sch_fq_codel +sch_gred +sch_hfsc +sch_hhf +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_pie +sch_plug +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_tbf +sch_teql +scpi-cpufreq +scpi-hwmon +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +scsi_transport_srp +sctp +sctp_probe +sdhci-of-arasan +sdhci-of-at91 +sdhci_f_sdh30 +sdio_uart +sedlbauer_cs +seed +sensorhub +seqiv +ser_gigaset +serial2002 +serial_cs +serio_raw +sermouse +serpent_generic +serport +ses +sh_veu +sha1-arm +sha1-arm-ce +sha1-arm-neon +sha2-arm-ce +sha256-arm +sha512-arm +shark2 +sht15 +sht21 +shtc1 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sil164 +sir-dev +sisusbvga +sit +sja1000 +sja1000_isa +sja1000_platform +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +sl811_cs +slcan +slip +slram +sm501 +sm501fb +sm_ftl +smb347-charger +smc911x +smc91c92_cs +smc91x +smm665 +smsc +smsc47b397 +smsc47m1 +smsc47m192 +smsc75xx +smsc911x +smscufx +smsdvb +smsmdtv +smssdio +smsusb +snd +snd-aaci +snd-ac97-codec +snd-ak4117 +snd-aloop +snd-bcd2000 +snd-bcm2835 +snd-dummy +snd-hrtimer +snd-hwdep +snd-mixer-oss +snd-mpu401 +snd-mpu401-uart +snd-mtpav +snd-mts64 +snd-pcm +snd-pcm-dmaengine +snd-pcm-oss +snd-pdaudiocf +snd-portman2x4 +snd-rawmidi +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-event +snd-seq-oss +snd-seq-virmidi +snd-serial-u16550 +snd-soc-ac97 +snd-soc-adau1701 +snd-soc-adau1977 +snd-soc-adau1977-adc +snd-soc-adau1977-i2c +snd-soc-ak4104 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-alc5623 +snd-soc-allo-piano-dac +snd-soc-audioinjector-pi-soundcard +snd-soc-bcm2835-i2s +snd-soc-core +snd-soc-cs35l32 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42xx8 +snd-soc-cs42xx8-i2c +snd-soc-cs4349 +snd-soc-digidac1-soundcard +snd-soc-dionaudio-loco +snd-soc-es8328 +snd-soc-fsl-asrc +snd-soc-fsl-esai +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-gtm601 +snd-soc-hifiberry-amp +snd-soc-hifiberry-dac +snd-soc-hifiberry-dacplus +snd-soc-hifiberry-digi +snd-soc-imx-audmux +snd-soc-iqaudio-dac +snd-soc-iqaudio-digi +snd-soc-justboom-dac +snd-soc-justboom-digi +snd-soc-pcm1681 +snd-soc-pcm1792a-codec +snd-soc-pcm1794a +snd-soc-pcm5102a +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-pisound +snd-soc-raspidac3 +snd-soc-rpi-dac +snd-soc-rpi-proto +snd-soc-rt5631 +snd-soc-sgtl5000 +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-simple-card +snd-soc-spdif-rx +snd-soc-spdif-tx +snd-soc-ssm2602 +snd-soc-ssm2602-i2c +snd-soc-ssm2602-spi +snd-soc-ssm4567 +snd-soc-sta32x +snd-soc-sta350 +snd-soc-sti-sas +snd-soc-tas2552 +snd-soc-tas5086 +snd-soc-tas5713 +snd-soc-tas571x +snd-soc-tfa9879 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic3x +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8962 +snd-soc-wm8978 +snd-soc-xtfpga-i2s +snd-timer +snd-ua101 +snd-usb-6fire +snd-usb-audio +snd-usb-caiaq +snd-usb-hiface +snd-usb-line6 +snd-usb-pod +snd-usb-podhd +snd-usb-toneport +snd-usb-variax +snd-usbmidi-lib +snd-virmidi +snd-vx-lib +snd-vxpocket +soc_button_array +soc_camera +soc_camera_platform +soc_mediabus +softdog +softing +softing_cs +sony-btf-mpx +sound_firmware +soundcore +sp2 +sp805_wdt +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +spectrum_cs +speedtch +spi-altera +spi-bcm2835 +spi-bcm2835aux +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-mmio +spi-gpio +spi-lm70llp +spi-nor +spi-oc-tiny +spi-pl022 +spi-rockchip +spi-sc18is602 +spi-tle62x0 +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spmi +sr9700 +sr9800 +ssb +ssb-hcd +ssbi +ssd1307fb +ssfdc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +ssu100 +st +st-asc +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_spi +st_magn +st_magn_i2c +st_magn_spi +st_pressure +st_pressure_i2c +st_pressure_spi +st_sensors +st_sensors_i2c +st_sensors_spi +stb0899 +stb6000 +stb6100 +ste10Xp +ste_modem_rproc +stinger +stir4200 +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm32-usart +stm_console +stm_core +stmmac +stmmac-platform +stmpe-keypad +stmpe-ts +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0900 +stv090x +stv6110 +stv6110x +sun4i-codec +sunkbd +sunrpc +sur40 +sx8654 +sx9500 +symbolserial +synaptics_i2c +synaptics_i2c_rmi4 +synaptics_usb +synclink_cs +syscopyarea +sysfillrect +sysimgblt +sysv +t5403 +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +target_core_user +tc3589x-keypad +tc74 +tca6416-keypad +tca8418_keypad +tcm_fc +tcm_loop +tcm_usb_gadget +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tcs3414 +tcs3472 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda826x +tda827x +tda8290 +tda9887 +tda998x +tdo24m +tea +tea575x +tea5761 +tea5767 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tef6862 +tekram-sir +teles_cs +teranetics +test-hexdump +test-kprobes +test-kstrtox +test-string_helpers +test_bpf +test_firmware +test_module +test_power +test_printf +test_static_key_base +test_static_keys +test_udelay +test_user_copy +tgr192 +thmc50 +ti-adc081c +ti-adc128s052 +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_dac7512 +ti_hecc +ti_usb_3410_5052 +tilcdc +timeriomem-rng +tipc +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmio_mmc +tmio_mmc_core +tmio_nand +tmiofb +tmp006 +tmp102 +tmp103 +tmp401 +tmp421 +toim3232-sir +torture +touchit213 +touchright +touchwin +tpm-rng +tpm_atmel +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tps40422 +tps51632-regulator +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65090-charger +tps65090-regulator +tps65217 +tps65217-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps65218-regulator +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps80031-regulator +trancevibrator +trf7970a +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsl2550 +tsl2563 +tsl2583 +tsl2x7x_core +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusbir +tua9001 +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tveeprom +tvp5150 +tw2804 +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-madc-hwmon +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6040-vibra +twofish_common +twofish_generic +u132-hcd +u_ether +u_serial +uartlite +uas +ubi +ubifs +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +uda1342 +udc-core +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufshcd +ufshcd-pltfrm +uhid +uio +uio_dmem_genirq +uio_pdrv_genirq +uio_pruss +ulpi +ums-alauda +ums-cypress +ums-datafab +ums-eneub6250 +ums-freecom +ums-isd200 +ums-jumpshot +ums-karma +ums-onetouch +ums-realtek +ums-sddr09 +ums-sddr55 +ums-usbat +unix_diag +us5182d +usb-serial-simple +usb3503 +usb8xxx +usb_8dev +usb_debug +usb_f_acm +usb_f_ecm +usb_f_ecm_subset +usb_f_fs +usb_f_hid +usb_f_mass_storage +usb_f_midi +usb_f_ncm +usb_f_obex +usb_f_phonet +usb_f_printer +usb_f_rndis +usb_f_serial +usb_f_ss_lb +usb_f_uac2 +usb_f_uvc +usb_gigaset +usb_wwan +usbatm +usbdux +usbduxfast +usbduxsigma +usbhid +usbip-core +usbip-host +usbkbd +usblcd +usbled +usblp +usbmisc_imx +usbmon +usbmouse +usbserial +usbsevseg +usbtest +usbtmc +usbtouchscreen +usbtv +usbvision +usdhi6rol0 +userio +userspace-consumer +ushc +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-dv-timings +v4l2-flash-led-class +v4l2-mem2mem +vc4 +vcan +vcnl4000 +veth +vf610_adc +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_net +vhost_scsi +via-rhine +via-velocity +videobuf-core +videobuf-dvb +videobuf-vmalloc +videobuf2-core +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videodev +vim2m +viperboard +viperboard_adc +virtio +virtio-gpu +virtio-rng +virtio_balloon +virtio_blk +virtio_console +virtio_input +virtio_mmio +virtio_net +virtio_ring +virtio_scsi +virtual +visor +vitesse +vivid +vmac +vmk80xx +vport-geneve +vport-gre +vport-vxlan +vrf +vringh +vsock +vsxxxaa +vt1211 +vt6656_stage +vub300 +vxlan +vz89x +w1-gpio +w1_bq27000 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1_ds2781 +w1_ds28e04 +w1_smem +w1_therm +w5100 +w5300 +w83627ehf +w83627hf +w83781d +w83791d +w83792d +w83793 +w83795 +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +walkera0701 +warrior +wcn36xx +wdt87xx_i2c +whiteheat +wimax +wire +wishbone-serial +wl1251 +wl1251_sdio +wl1251_spi +wl1273-core +wl12xx +wl18xx +wl3501_cs +wlcore +wlcore_sdio +wlcore_spi +wm831x-dcdc +wm831x-hwmon +wm831x-isink +wm831x-ldo +wm831x-on +wm831x-ts +wm831x_backup +wm831x_bl +wm831x_power +wm831x_wdt +wm8350-hwmon +wm8350-regulator +wm8350_power +wm8350_wdt +wm8400-regulator +wm8775 +wm8994-core +wm8994-irq +wm8994-regmap +wm8994-regulator +wm97xx-ts +wp512 +wusb-cbaf +wusb-wa +wusbcore +x25 +x25_asy +x_tables +xc4000 +xc5000 +xcbc +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_ipcomp +xfrm_user +xfs +xilinx-tpg +xilinx-video +xilinx-vtc +xilinx_uartps +xillybus_core +xillybus_of +xirc2ps_cs +xor +xor-neon +xpad +xr_usb_serial_common +xsens_mt +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +xt_NETMAP +xt_NFLOG +xt_NFQUEUE +xt_RATEEST +xt_REDIRECT +xt_SECMARK +xt_TCPMSS +xt_TCPOPTSTRIP +xt_TEE +xt_TPROXY +xt_TRACE +xt_addrtype +xt_bpf +xt_cgroup +xt_cluster +xt_comment +xt_connbytes +xt_connlabel +xt_connlimit +xt_connmark +xt_conntrack +xt_cpu +xt_dccp +xt_devgroup +xt_dscp +xt_ecn +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_ipcomp +xt_iprange +xt_ipvs +xt_l2tp +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_nat +xt_nfacct +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_realm +xt_recent +xt_sctp +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_tcpudp +xt_time +xt_u32 +xtkbd +xts +xusbatm +xz_dec_test +yam +yealink +yurex +zaurus +zd1201 +zd1211rw +zforce_ts +zhenhua +zl10039 +zl10353 +zl6100 +zlib +zr364xx +zram +zynq-fpga only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/debian.raspi2/abi/4.4.0-1080.88/fwinfo +++ linux-raspi2-4.4.0/debian.raspi2/abi/4.4.0-1080.88/fwinfo @@ -0,0 +1,398 @@ +firmware: 3826.arm +firmware: 6fire/dmx6fireap.ihx +firmware: 6fire/dmx6firecf.bin +firmware: 6fire/dmx6firel2.ihx +firmware: BCM2033-FW.bin +firmware: BCM2033-MD.hex +firmware: BT3CPCC.bin +firmware: agere_ap_fw.bin +firmware: agere_sta_fw.bin +firmware: ar5523.bin +firmware: ath3k-1.fw +firmware: ath6k/AR6003/hw2.0/athwlan.bin.z77 +firmware: ath6k/AR6003/hw2.0/bdata.SD31.bin +firmware: ath6k/AR6003/hw2.0/bdata.bin +firmware: ath6k/AR6003/hw2.0/data.patch.bin +firmware: ath6k/AR6003/hw2.0/otp.bin.z77 +firmware: ath6k/AR6003/hw2.1.1/athwlan.bin +firmware: ath6k/AR6003/hw2.1.1/bdata.SD31.bin +firmware: ath6k/AR6003/hw2.1.1/bdata.bin +firmware: ath6k/AR6003/hw2.1.1/data.patch.bin +firmware: ath6k/AR6003/hw2.1.1/otp.bin +firmware: ath6k/AR6004/hw1.0/bdata.DB132.bin +firmware: ath6k/AR6004/hw1.0/bdata.bin +firmware: ath6k/AR6004/hw1.0/fw.ram.bin +firmware: ath6k/AR6004/hw1.1/bdata.DB132.bin +firmware: ath6k/AR6004/hw1.1/bdata.bin +firmware: ath6k/AR6004/hw1.1/fw.ram.bin +firmware: ath6k/AR6004/hw1.2/bdata.bin +firmware: ath6k/AR6004/hw1.2/fw.ram.bin +firmware: ath6k/AR6004/hw1.3/bdata.bin +firmware: ath6k/AR6004/hw1.3/fw.ram.bin +firmware: ath9k_htc/htc_7010-1.4.0.fw +firmware: ath9k_htc/htc_9271-1.4.0.fw +firmware: atmel_at76c502-wpa.bin +firmware: atmel_at76c502.bin +firmware: atmel_at76c502_3com-wpa.bin +firmware: atmel_at76c502_3com.bin +firmware: atmel_at76c502d-wpa.bin +firmware: atmel_at76c502d.bin +firmware: atmel_at76c502e-wpa.bin +firmware: atmel_at76c502e.bin +firmware: atmel_at76c503-i3861.bin +firmware: atmel_at76c503-i3863.bin +firmware: atmel_at76c503-rfmd-acc.bin +firmware: atmel_at76c503-rfmd.bin +firmware: atmel_at76c504-wpa.bin +firmware: atmel_at76c504.bin +firmware: atmel_at76c504_2958-wpa.bin +firmware: atmel_at76c504_2958.bin +firmware: atmel_at76c504a_2958-wpa.bin +firmware: atmel_at76c504a_2958.bin +firmware: atmel_at76c505-rfmd.bin +firmware: atmel_at76c505-rfmd2958.bin +firmware: atmel_at76c505a-rfmd2958.bin +firmware: atmel_at76c505amx-rfmd.bin +firmware: atmel_at76c506-wpa.bin +firmware: atmel_at76c506.bin +firmware: atsc_denver.inp +firmware: b43/ucode11.fw +firmware: b43/ucode13.fw +firmware: b43/ucode14.fw +firmware: b43/ucode15.fw +firmware: b43/ucode16_mimo.fw +firmware: b43/ucode5.fw +firmware: b43/ucode9.fw +firmware: b43legacy/ucode2.fw +firmware: b43legacy/ucode4.fw +firmware: bfubase.frm +firmware: brcm/bcm43xx-0.fw +firmware: brcm/bcm43xx_hdr-0.fw +firmware: brcm/brcmfmac43143-sdio.bin +firmware: brcm/brcmfmac43143-sdio.txt +firmware: brcm/brcmfmac43143.bin +firmware: brcm/brcmfmac43236b.bin +firmware: brcm/brcmfmac43241b0-sdio.bin +firmware: brcm/brcmfmac43241b0-sdio.txt +firmware: brcm/brcmfmac43241b4-sdio.bin +firmware: brcm/brcmfmac43241b4-sdio.txt +firmware: brcm/brcmfmac43241b5-sdio.bin +firmware: brcm/brcmfmac43241b5-sdio.txt +firmware: brcm/brcmfmac43242a.bin +firmware: brcm/brcmfmac4329-sdio.bin +firmware: brcm/brcmfmac4329-sdio.txt +firmware: brcm/brcmfmac4330-sdio.bin +firmware: brcm/brcmfmac4330-sdio.txt +firmware: brcm/brcmfmac4334-sdio.bin +firmware: brcm/brcmfmac4334-sdio.txt +firmware: brcm/brcmfmac43340-sdio.bin +firmware: brcm/brcmfmac43340-sdio.txt +firmware: brcm/brcmfmac43341-sdio.bin +firmware: brcm/brcmfmac43341-sdio.txt +firmware: brcm/brcmfmac4335-sdio.bin +firmware: brcm/brcmfmac4335-sdio.txt +firmware: brcm/brcmfmac43362-sdio.bin +firmware: brcm/brcmfmac43362-sdio.txt +firmware: brcm/brcmfmac4339-sdio.bin +firmware: brcm/brcmfmac4339-sdio.txt +firmware: brcm/brcmfmac43430-sdio.bin +firmware: brcm/brcmfmac43430-sdio.txt +firmware: brcm/brcmfmac43455-sdio.bin +firmware: brcm/brcmfmac43455-sdio.txt +firmware: brcm/brcmfmac4354-sdio.bin +firmware: brcm/brcmfmac4354-sdio.txt +firmware: brcm/brcmfmac43569.bin +firmware: carl9170-1.fw +firmware: cis/3CCFEM556.cis +firmware: cis/3CXEM556.cis +firmware: cis/COMpad2.cis +firmware: cis/COMpad4.cis +firmware: cis/DP83903.cis +firmware: cis/LA-PCM.cis +firmware: cis/MT5634ZLX.cis +firmware: cis/NE2K.cis +firmware: cis/PCMLM28.cis +firmware: cis/PE-200.cis +firmware: cis/PE520.cis +firmware: cis/RS-COM-2P.cis +firmware: cis/SW_555_SER.cis +firmware: cis/SW_7xx_SER.cis +firmware: cis/SW_8xx_SER.cis +firmware: cis/tamarack.cis +firmware: cmmb_ming_app.inp +firmware: cmmb_vega_12mhz.inp +firmware: cmmb_venice_12mhz.inp +firmware: cpia2/stv0672_vp4.bin +firmware: dvb-demod-m88ds3103.fw +firmware: dvb-demod-m88rs6000.fw +firmware: dvb-demod-mn88472-02.fw +firmware: dvb-demod-mn88473-01.fw +firmware: dvb-demod-si2165.fw +firmware: dvb-demod-si2168-a20-01.fw +firmware: dvb-demod-si2168-a30-01.fw +firmware: dvb-demod-si2168-b40-01.fw +firmware: dvb-fe-af9013.fw +firmware: dvb-fe-drxj-mc-1.0.8.fw +firmware: dvb-fe-ds3000.fw +firmware: dvb-fe-tda10071.fw +firmware: dvb-fe-xc4000-1.4.1.fw +firmware: dvb-fe-xc4000-1.4.fw +firmware: dvb-fe-xc5000-1.6.114.fw +firmware: dvb-fe-xc5000c-4.1.30.7.fw +firmware: dvb-tuner-si2158-a20-01.fw +firmware: dvb-usb-af9015.fw +firmware: dvb-usb-af9035-02.fw +firmware: dvb-usb-dib0700-1.20.fw +firmware: dvb-usb-dw2101.fw +firmware: dvb-usb-dw2102.fw +firmware: dvb-usb-dw2104.fw +firmware: dvb-usb-dw3101.fw +firmware: dvb-usb-ec168.fw +firmware: dvb-usb-it9135-01.fw +firmware: dvb-usb-it9135-02.fw +firmware: dvb-usb-it9303-01.fw +firmware: dvb-usb-lme2510-lg.fw +firmware: dvb-usb-lme2510-s0194.fw +firmware: dvb-usb-lme2510c-lg.fw +firmware: dvb-usb-lme2510c-rs2000.fw +firmware: dvb-usb-lme2510c-s0194.fw +firmware: dvb-usb-lme2510c-s7395.fw +firmware: dvb-usb-p1100.fw +firmware: dvb-usb-p7500.fw +firmware: dvb-usb-s630.fw +firmware: dvb-usb-s660.fw +firmware: dvb-usb-terratec-h7-az6007.fw +firmware: dvb_nova_12mhz.inp +firmware: dvb_nova_12mhz_b0.inp +firmware: dvb_rio.inp +firmware: dvbh_rio.inp +firmware: edgeport/boot.fw +firmware: edgeport/boot2.fw +firmware: edgeport/down.fw +firmware: edgeport/down2.fw +firmware: edgeport/down3.bin +firmware: emi26/bitstream.fw +firmware: emi26/firmware.fw +firmware: emi26/loader.fw +firmware: emi62/bitstream.fw +firmware: emi62/loader.fw +firmware: emi62/spdif.fw +firmware: ene-ub6250/ms_init.bin +firmware: ene-ub6250/ms_rdwr.bin +firmware: ene-ub6250/msp_rdwr.bin +firmware: ene-ub6250/sd_init1.bin +firmware: ene-ub6250/sd_init2.bin +firmware: ene-ub6250/sd_rdwr.bin +firmware: f2255usb.bin +firmware: fm_radio.inp +firmware: fm_radio_rio.inp +firmware: fw.ram.bin +firmware: go7007/go7007fw.bin +firmware: go7007/go7007tv.bin +firmware: go7007/lr192.fw +firmware: go7007/px-m402u.fw +firmware: go7007/px-tv402u.fw +firmware: go7007/s2250-1.fw +firmware: go7007/s2250-2.fw +firmware: go7007/wis-startrek.fw +firmware: i1480-phy-0.0.bin +firmware: i1480-pre-phy-0.0.bin +firmware: i1480-usb-0.0.bin +firmware: i2400m-fw-usb-1.5.sbcf +firmware: i6050-fw-usb-1.5.sbcf +firmware: intel/ibt-11-5.ddc +firmware: intel/ibt-11-5.sfi +firmware: intel/ibt-12-16.ddc +firmware: intel/ibt-12-16.sfi +firmware: isdbt_nova_12mhz.inp +firmware: isdbt_nova_12mhz_b0.inp +firmware: isdbt_pele.inp +firmware: isdbt_rio.inp +firmware: isight.fw +firmware: isl3886usb +firmware: isl3887usb +firmware: kaweth/new_code.bin +firmware: kaweth/new_code_fix.bin +firmware: kaweth/trigger_code.bin +firmware: kaweth/trigger_code_fix.bin +firmware: keyspan/mpr.fw +firmware: keyspan/usa18x.fw +firmware: keyspan/usa19.fw +firmware: keyspan/usa19qi.fw +firmware: keyspan/usa19qw.fw +firmware: keyspan/usa19w.fw +firmware: keyspan/usa28.fw +firmware: keyspan/usa28x.fw +firmware: keyspan/usa28xa.fw +firmware: keyspan/usa28xb.fw +firmware: keyspan/usa49w.fw +firmware: keyspan/usa49wlc.fw +firmware: keyspan_pda/keyspan_pda.fw +firmware: keyspan_pda/xircom_pgs.fw +firmware: lattice-ecp3.bit +firmware: lbtf_usb.bin +firmware: lgs8g75.fw +firmware: libertas/cf8305.bin +firmware: libertas/cf8381.bin +firmware: libertas/cf8381_helper.bin +firmware: libertas/cf8385.bin +firmware: libertas/cf8385_helper.bin +firmware: libertas/gspi8385.bin +firmware: libertas/gspi8385_helper.bin +firmware: libertas/gspi8385_hlp.bin +firmware: libertas/gspi8686.bin +firmware: libertas/gspi8686_hlp.bin +firmware: libertas/gspi8686_v9.bin +firmware: libertas/gspi8686_v9_helper.bin +firmware: libertas/gspi8688.bin +firmware: libertas/gspi8688_helper.bin +firmware: libertas/sd8385.bin +firmware: libertas/sd8385_helper.bin +firmware: libertas/sd8686_v8.bin +firmware: libertas/sd8686_v8_helper.bin +firmware: libertas/sd8686_v9.bin +firmware: libertas/sd8686_v9_helper.bin +firmware: libertas/sd8688.bin +firmware: libertas/sd8688_helper.bin +firmware: libertas/usb8388.bin +firmware: libertas/usb8388_v5.bin +firmware: libertas/usb8388_v9.bin +firmware: libertas/usb8682.bin +firmware: libertas_cs.fw +firmware: libertas_cs_helper.fw +firmware: mrvl/sd8688.bin +firmware: mrvl/sd8688_helper.bin +firmware: mrvl/sd8786_uapsta.bin +firmware: mrvl/sd8787_uapsta.bin +firmware: mrvl/sd8797_uapsta.bin +firmware: mrvl/sd8887_uapsta.bin +firmware: mrvl/sd8897_uapsta.bin +firmware: mrvl/sd8997_uapsta.bin +firmware: mrvl/usb8766_uapsta.bin +firmware: mrvl/usb8797_uapsta.bin +firmware: mrvl/usb8801_uapsta.bin +firmware: mrvl/usb8997_uapsta.bin +firmware: mt7601u.bin +firmware: mts_cdma.fw +firmware: mts_edge.fw +firmware: mts_gsm.fw +firmware: mts_mt9234mu.fw +firmware: mts_mt9234zba.fw +firmware: orinoco_ezusb_fw +firmware: ositech/Xilinx7OD.bin +firmware: prism2_ru.fw +firmware: prism_ap_fw.bin +firmware: prism_sta_fw.bin +firmware: rsi_91x.fw +firmware: rt2870.bin +firmware: rt73.bin +firmware: rtlwifi/rtl8192cufw.bin +firmware: rtlwifi/rtl8192cufw_A.bin +firmware: rtlwifi/rtl8192cufw_B.bin +firmware: rtlwifi/rtl8192cufw_TMSC.bin +firmware: rtlwifi/rtl8712u.bin +firmware: rtlwifi/rtl8723aufw_A.bin +firmware: rtlwifi/rtl8723aufw_B.bin +firmware: rtlwifi/rtl8723aufw_B_NoBT.bin +firmware: sd8385.bin +firmware: sd8385_helper.bin +firmware: sd8686.bin +firmware: sd8686_helper.bin +firmware: sd8688.bin +firmware: sd8688_helper.bin +firmware: sms1xxx-hcw-55xxx-dvbt-02.fw +firmware: sms1xxx-hcw-55xxx-isdbt-02.fw +firmware: sms1xxx-nova-a-dvbt-01.fw +firmware: sms1xxx-nova-b-dvbt-01.fw +firmware: sms1xxx-stellar-dvbt-01.fw +firmware: softing-4.6/bcard.bin +firmware: softing-4.6/bcard2.bin +firmware: softing-4.6/cancard.bin +firmware: softing-4.6/cancrd2.bin +firmware: softing-4.6/cansja.bin +firmware: softing-4.6/ldcard.bin +firmware: softing-4.6/ldcard2.bin +firmware: symbol_sp24t_prim_fw +firmware: symbol_sp24t_sec_fw +firmware: tdmb_denver.inp +firmware: tdmb_nova_12mhz.inp +firmware: tdmb_nova_12mhz_b0.inp +firmware: ti-connectivity/wl1251-fw.bin +firmware: ti-connectivity/wl1251-nvs.bin +firmware: ti-connectivity/wl1271-nvs.bin +firmware: ti-connectivity/wl127x-fw-5-mr.bin +firmware: ti-connectivity/wl127x-fw-5-plt.bin +firmware: ti-connectivity/wl127x-fw-5-sr.bin +firmware: ti-connectivity/wl128x-fw-5-mr.bin +firmware: ti-connectivity/wl128x-fw-5-plt.bin +firmware: ti-connectivity/wl128x-fw-5-sr.bin +firmware: ti-connectivity/wl18xx-conf.bin +firmware: ti-connectivity/wl18xx-fw-4.bin +firmware: ti_3410.fw +firmware: ti_5052.fw +firmware: ueagle-atm/930-fpga.bin +firmware: ueagle-atm/CMV4i.bin +firmware: ueagle-atm/CMV4i.bin.v2 +firmware: ueagle-atm/CMV4p.bin +firmware: ueagle-atm/CMV4p.bin.v2 +firmware: ueagle-atm/CMV9i.bin +firmware: ueagle-atm/CMV9i.bin.v2 +firmware: ueagle-atm/CMV9p.bin +firmware: ueagle-atm/CMV9p.bin.v2 +firmware: ueagle-atm/CMVei.bin +firmware: ueagle-atm/CMVei.bin.v2 +firmware: ueagle-atm/CMVep.bin +firmware: ueagle-atm/CMVep.bin.v2 +firmware: ueagle-atm/DSP4i.bin +firmware: ueagle-atm/DSP4p.bin +firmware: ueagle-atm/DSP9i.bin +firmware: ueagle-atm/DSP9p.bin +firmware: ueagle-atm/DSPei.bin +firmware: ueagle-atm/DSPep.bin +firmware: ueagle-atm/adi930.fw +firmware: ueagle-atm/eagle.fw +firmware: ueagle-atm/eagleI.fw +firmware: ueagle-atm/eagleII.fw +firmware: ueagle-atm/eagleIII.fw +firmware: ueagle-atm/eagleIV.fw +firmware: usb8388.bin +firmware: usbdux_firmware.bin +firmware: usbduxfast_firmware.bin +firmware: usbduxsigma_firmware.bin +firmware: v4l-cx231xx-avcore-01.fw +firmware: v4l-cx23885-avcore-01.fw +firmware: v4l-cx23885-enc.fw +firmware: v4l-cx25840.fw +firmware: v4l-pvrusb2-24xxx-01.fw +firmware: v4l-pvrusb2-29xxx-01.fw +firmware: v4l-pvrusb2-73xxx-01.fw +firmware: vicam/firmware.fw +firmware: vntwusb.fw +firmware: vx/bd56002.boot +firmware: vx/bd563s3.boot +firmware: vx/bd563v2.boot +firmware: vx/bx_1_vp4.b56 +firmware: vx/bx_1_vxp.b56 +firmware: vx/l_1_v22.d56 +firmware: vx/l_1_vp4.d56 +firmware: vx/l_1_vx2.d56 +firmware: vx/l_1_vxp.d56 +firmware: vx/x1_1_vp4.xlx +firmware: vx/x1_1_vx2.xlx +firmware: vx/x1_1_vxp.xlx +firmware: vx/x1_2_v22.xlx +firmware: whiteheat.fw +firmware: whiteheat_loader.fw +firmware: wlan/prima/WCNSS_qcom_wlan_nv.bin +firmware: xc3028-v27.fw +firmware: xc3028L-v36.fw +firmware: yam/1200.bin +firmware: yam/9600.bin +firmware: zd1201-ap.fw +firmware: zd1201.fw +firmware: zd1211/zd1211_ub +firmware: zd1211/zd1211_uphr +firmware: zd1211/zd1211_ur +firmware: zd1211/zd1211b_ub +firmware: zd1211/zd1211b_uphr +firmware: zd1211/zd1211b_ur only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/acpi/glue.c +++ linux-raspi2-4.4.0/drivers/acpi/glue.c @@ -98,7 +98,15 @@ if (check_children && list_empty(&adev->children)) return -ENODEV; - return sta_present ? FIND_CHILD_MAX_SCORE : FIND_CHILD_MIN_SCORE; + /* + * If the device has a _HID (or _CID) returning a valid ACPI/PNP + * device ID, it is better to make it look less attractive here, so that + * the other device with the same _ADR value (that may not have a valid + * device ID) can be matched going forward. [This means a second spec + * violation in a row, so whatever we do here is best effort anyway.] + */ + return sta_present && list_empty(&adev->pnp.ids) ? + FIND_CHILD_MAX_SCORE : FIND_CHILD_MIN_SCORE; } struct acpi_device *acpi_find_child_device(struct acpi_device *parent, only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/acpi/ioapic.c +++ linux-raspi2-4.4.0/drivers/acpi/ioapic.c @@ -45,6 +45,12 @@ struct resource *res = data; struct resource_win win; + /* + * We might assign this to 'res' later, make sure all pointers are + * cleared before the resource is added to the global list + */ + memset(&win, 0, sizeof(win)); + res->flags = 0; if (acpi_dev_filter_resource_type(acpi_res, IORESOURCE_MEM) == 0) return AE_OK; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/ata/libata-transport.c +++ linux-raspi2-4.4.0/drivers/ata/libata-transport.c @@ -224,7 +224,6 @@ static void ata_tport_release(struct device *dev) { - put_device(dev->parent); } /** @@ -284,7 +283,7 @@ device_initialize(dev); dev->type = &ata_port_type; - dev->parent = get_device(parent); + dev->parent = parent; dev->release = ata_tport_release; dev_set_name(dev, "ata%d", ap->print_id); transport_setup_device(dev); @@ -348,7 +347,6 @@ static void ata_tlink_release(struct device *dev) { - put_device(dev->parent); } /** @@ -410,7 +408,7 @@ int error; device_initialize(dev); - dev->parent = get_device(&ap->tdev); + dev->parent = &ap->tdev; dev->release = ata_tlink_release; if (ata_is_host_link(link)) dev_set_name(dev, "link%d", ap->print_id); @@ -588,7 +586,6 @@ static void ata_tdev_release(struct device *dev) { - put_device(dev->parent); } /** @@ -661,7 +658,7 @@ int error; device_initialize(dev); - dev->parent = get_device(&link->tdev); + dev->parent = &link->tdev; dev->release = ata_tdev_release; if (ata_is_host_link(link)) dev_set_name(dev, "dev%d.%d", ap->print_id,ata_dev->devno); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/ata/pata_amd.c +++ linux-raspi2-4.4.0/drivers/ata/pata_amd.c @@ -616,6 +616,7 @@ { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP73_IDE), 8 }, { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP77_IDE), 8 }, { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_CS5536_IDE), 9 }, + { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_CS5536_DEV_IDE), 9 }, { }, }; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/ata/pata_cs5536.c +++ linux-raspi2-4.4.0/drivers/ata/pata_cs5536.c @@ -289,6 +289,7 @@ static const struct pci_device_id cs5536[] = { { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_CS5536_IDE), }, + { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_CS5536_DEV_IDE), }, { }, }; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/base/bus.c +++ linux-raspi2-4.4.0/drivers/base/bus.c @@ -737,7 +737,7 @@ out_unregister: kobject_put(&priv->kobj); - kfree(drv->p); + /* drv->p is freed in driver_release() */ drv->p = NULL; out_put_bus: bus_put(bus); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/base/power/power.h +++ linux-raspi2-4.4.0/drivers/base/power/power.h @@ -20,14 +20,22 @@ extern void pm_runtime_init(struct device *dev); extern void pm_runtime_remove(struct device *dev); +#define WAKE_IRQ_DEDICATED_ALLOCATED BIT(0) +#define WAKE_IRQ_DEDICATED_MANAGED BIT(1) +#define WAKE_IRQ_DEDICATED_MASK (WAKE_IRQ_DEDICATED_ALLOCATED | \ + WAKE_IRQ_DEDICATED_MANAGED) + struct wake_irq { struct device *dev; + unsigned int status; int irq; - bool dedicated_irq:1; }; extern void dev_pm_arm_wake_irq(struct wake_irq *wirq); extern void dev_pm_disarm_wake_irq(struct wake_irq *wirq); +extern void dev_pm_enable_wake_irq_check(struct device *dev, + bool can_change_status); +extern void dev_pm_disable_wake_irq_check(struct device *dev); #ifdef CONFIG_PM_SLEEP @@ -102,6 +110,15 @@ { } +static inline void dev_pm_enable_wake_irq_check(struct device *dev, + bool can_change_status) +{ +} + +static inline void dev_pm_disable_wake_irq_check(struct device *dev) +{ +} + #endif #ifdef CONFIG_PM_SLEEP only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/base/power/sysfs.c +++ linux-raspi2-4.4.0/drivers/base/power/sysfs.c @@ -268,6 +268,8 @@ value = PM_QOS_LATENCY_TOLERANCE_NO_CONSTRAINT; else if (!strcmp(buf, "any") || !strcmp(buf, "any\n")) value = PM_QOS_LATENCY_ANY; + else + return -EINVAL; } ret = dev_pm_qos_update_user_latency_tolerance(dev, value); return ret < 0 ? ret : n; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/base/power/wakeirq.c +++ linux-raspi2-4.4.0/drivers/base/power/wakeirq.c @@ -110,8 +110,10 @@ dev->power.wakeirq = NULL; spin_unlock_irqrestore(&dev->power.lock, flags); - if (wirq->dedicated_irq) + if (wirq->status & WAKE_IRQ_DEDICATED_ALLOCATED) { free_irq(wirq->irq, wirq); + wirq->status &= ~WAKE_IRQ_DEDICATED_MASK; + } kfree(wirq); } EXPORT_SYMBOL_GPL(dev_pm_clear_wake_irq); @@ -139,6 +141,13 @@ struct wake_irq *wirq = _wirq; int res; + /* Maybe abort suspend? */ + if (irqd_is_wakeup_set(irq_get_irq_data(irq))) { + pm_wakeup_event(wirq->dev, 0); + + return IRQ_HANDLED; + } + /* We don't want RPM_ASYNC or RPM_NOWAIT here */ res = pm_runtime_resume(wirq->dev); if (res < 0) @@ -179,7 +188,6 @@ wirq->dev = dev; wirq->irq = irq; - wirq->dedicated_irq = true; irq_set_status_flags(irq, IRQ_NOAUTOEN); /* @@ -195,6 +203,8 @@ if (err) goto err_free_irq; + wirq->status = WAKE_IRQ_DEDICATED_ALLOCATED; + return err; err_free_irq: @@ -210,9 +220,9 @@ * dev_pm_enable_wake_irq - Enable device wake-up interrupt * @dev: Device * - * Called from the bus code or the device driver for - * runtime_suspend() to enable the wake-up interrupt while - * the device is running. + * Optionally called from the bus code or the device driver for + * runtime_resume() to override the PM runtime core managed wake-up + * interrupt handling to enable the wake-up interrupt. * * Note that for runtime_suspend()) the wake-up interrupts * should be unconditionally enabled unlike for suspend() @@ -222,7 +232,7 @@ { struct wake_irq *wirq = dev->power.wakeirq; - if (wirq && wirq->dedicated_irq) + if (wirq && (wirq->status & WAKE_IRQ_DEDICATED_ALLOCATED)) enable_irq(wirq->irq); } EXPORT_SYMBOL_GPL(dev_pm_enable_wake_irq); @@ -231,20 +241,73 @@ * dev_pm_disable_wake_irq - Disable device wake-up interrupt * @dev: Device * - * Called from the bus code or the device driver for - * runtime_resume() to disable the wake-up interrupt while - * the device is running. + * Optionally called from the bus code or the device driver for + * runtime_suspend() to override the PM runtime core managed wake-up + * interrupt handling to disable the wake-up interrupt. */ void dev_pm_disable_wake_irq(struct device *dev) { struct wake_irq *wirq = dev->power.wakeirq; - if (wirq && wirq->dedicated_irq) + if (wirq && (wirq->status & WAKE_IRQ_DEDICATED_ALLOCATED)) disable_irq_nosync(wirq->irq); } EXPORT_SYMBOL_GPL(dev_pm_disable_wake_irq); /** + * dev_pm_enable_wake_irq_check - Checks and enables wake-up interrupt + * @dev: Device + * @can_change_status: Can change wake-up interrupt status + * + * Enables wakeirq conditionally. We need to enable wake-up interrupt + * lazily on the first rpm_suspend(). This is needed as the consumer device + * starts in RPM_SUSPENDED state, and the the first pm_runtime_get() would + * otherwise try to disable already disabled wakeirq. The wake-up interrupt + * starts disabled with IRQ_NOAUTOEN set. + * + * Should be only called from rpm_suspend() and rpm_resume() path. + * Caller must hold &dev->power.lock to change wirq->status + */ +void dev_pm_enable_wake_irq_check(struct device *dev, + bool can_change_status) +{ + struct wake_irq *wirq = dev->power.wakeirq; + + if (!wirq || !((wirq->status & WAKE_IRQ_DEDICATED_MASK))) + return; + + if (likely(wirq->status & WAKE_IRQ_DEDICATED_MANAGED)) { + goto enable; + } else if (can_change_status) { + wirq->status |= WAKE_IRQ_DEDICATED_MANAGED; + goto enable; + } + + return; + +enable: + enable_irq(wirq->irq); +} + +/** + * dev_pm_disable_wake_irq_check - Checks and disables wake-up interrupt + * @dev: Device + * + * Disables wake-up interrupt conditionally based on status. + * Should be only called from rpm_suspend() and rpm_resume() path. + */ +void dev_pm_disable_wake_irq_check(struct device *dev) +{ + struct wake_irq *wirq = dev->power.wakeirq; + + if (!wirq || !((wirq->status & WAKE_IRQ_DEDICATED_MASK))) + return; + + if (wirq->status & WAKE_IRQ_DEDICATED_MANAGED) + disable_irq_nosync(wirq->irq); +} + +/** * dev_pm_arm_wake_irq - Arm device wake-up * @wirq: Device wake-up interrupt * only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/base/power/wakeup.c +++ linux-raspi2-4.4.0/drivers/base/power/wakeup.c @@ -60,6 +60,8 @@ static DECLARE_WAIT_QUEUE_HEAD(wakeup_count_wait_queue); +DEFINE_STATIC_SRCU(wakeup_srcu); + static struct wakeup_source deleted_ws = { .name = "deleted", .lock = __SPIN_LOCK_UNLOCKED(deleted_ws.lock), @@ -198,7 +200,7 @@ spin_lock_irqsave(&events_lock, flags); list_del_rcu(&ws->entry); spin_unlock_irqrestore(&events_lock, flags); - synchronize_rcu(); + synchronize_srcu(&wakeup_srcu); } EXPORT_SYMBOL_GPL(wakeup_source_remove); @@ -330,13 +332,14 @@ void device_wakeup_arm_wake_irqs(void) { struct wakeup_source *ws; + int srcuidx; - rcu_read_lock(); + srcuidx = srcu_read_lock(&wakeup_srcu); list_for_each_entry_rcu(ws, &wakeup_sources, entry) { if (ws->wakeirq) dev_pm_arm_wake_irq(ws->wakeirq); } - rcu_read_unlock(); + srcu_read_unlock(&wakeup_srcu, srcuidx); } /** @@ -347,13 +350,14 @@ void device_wakeup_disarm_wake_irqs(void) { struct wakeup_source *ws; + int srcuidx; - rcu_read_lock(); + srcuidx = srcu_read_lock(&wakeup_srcu); list_for_each_entry_rcu(ws, &wakeup_sources, entry) { if (ws->wakeirq) dev_pm_disarm_wake_irq(ws->wakeirq); } - rcu_read_unlock(); + srcu_read_unlock(&wakeup_srcu, srcuidx); } /** @@ -807,10 +811,10 @@ void pm_print_active_wakeup_sources(void) { struct wakeup_source *ws; - int active = 0; + int srcuidx, active = 0; struct wakeup_source *last_activity_ws = NULL; - rcu_read_lock(); + srcuidx = srcu_read_lock(&wakeup_srcu); list_for_each_entry_rcu(ws, &wakeup_sources, entry) { if (ws->active) { pr_info("active wakeup source: %s\n", ws->name); @@ -826,7 +830,7 @@ if (!active && last_activity_ws) pr_info("last active wakeup source: %s\n", last_activity_ws->name); - rcu_read_unlock(); + srcu_read_unlock(&wakeup_srcu, srcuidx); } EXPORT_SYMBOL_GPL(pm_print_active_wakeup_sources); @@ -953,8 +957,9 @@ { struct wakeup_source *ws; ktime_t now = ktime_get(); + int srcuidx; - rcu_read_lock(); + srcuidx = srcu_read_lock(&wakeup_srcu); list_for_each_entry_rcu(ws, &wakeup_sources, entry) { spin_lock_irq(&ws->lock); if (ws->autosleep_enabled != set) { @@ -968,7 +973,7 @@ } spin_unlock_irq(&ws->lock); } - rcu_read_unlock(); + srcu_read_unlock(&wakeup_srcu, srcuidx); } #endif /* CONFIG_PM_AUTOSLEEP */ @@ -1029,15 +1034,16 @@ static int wakeup_sources_stats_show(struct seq_file *m, void *unused) { struct wakeup_source *ws; + int srcuidx; seq_puts(m, "name\t\tactive_count\tevent_count\twakeup_count\t" "expire_count\tactive_since\ttotal_time\tmax_time\t" "last_change\tprevent_suspend_time\n"); - rcu_read_lock(); + srcuidx = srcu_read_lock(&wakeup_srcu); list_for_each_entry_rcu(ws, &wakeup_sources, entry) print_wakeup_source_stats(m, ws); - rcu_read_unlock(); + srcu_read_unlock(&wakeup_srcu, srcuidx); print_wakeup_source_stats(m, &deleted_ws); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/block/skd_main.c +++ linux-raspi2-4.4.0/drivers/block/skd_main.c @@ -2214,6 +2214,9 @@ */ qcmd |= FIT_QCMD_MSGSIZE_64; + /* Make sure skd_msg_buf is written before the doorbell is triggered. */ + smp_wmb(); + SKD_WRITEQ(skdev, qcmd, FIT_Q_COMMAND); } @@ -2260,6 +2263,9 @@ qcmd = skspcl->mb_dma_address; qcmd |= FIT_QCMD_QID_NORMAL + FIT_QCMD_MSGSIZE_128; + /* Make sure skd_msg_buf is written before the doorbell is triggered. */ + smp_wmb(); + SKD_WRITEQ(skdev, qcmd, FIT_Q_COMMAND); } @@ -4679,15 +4685,16 @@ { struct gendisk *disk = skdev->disk; - if (disk != NULL) { - struct request_queue *q = disk->queue; + if (disk && (disk->flags & GENHD_FL_UP)) + del_gendisk(disk); - if (disk->flags & GENHD_FL_UP) - del_gendisk(disk); - if (q) - blk_cleanup_queue(q); - put_disk(disk); + if (skdev->queue) { + blk_cleanup_queue(skdev->queue); + skdev->queue = NULL; + disk->queue = NULL; } + + put_disk(disk); skdev->disk = NULL; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/block/virtio_blk.c +++ linux-raspi2-4.4.0/drivers/block/virtio_blk.c @@ -641,11 +641,12 @@ if (err) goto out_put_disk; - q = vblk->disk->queue = blk_mq_init_queue(&vblk->tag_set); + q = blk_mq_init_queue(&vblk->tag_set); if (IS_ERR(q)) { err = -ENOMEM; goto out_free_tags; } + vblk->disk->queue = q; q->queuedata = vblk; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/block/xen-blkback/blkback.c +++ linux-raspi2-4.4.0/drivers/block/xen-blkback/blkback.c @@ -595,8 +595,6 @@ unsigned long timeout; int ret; - xen_blkif_get(blkif); - while (!kthread_should_stop()) { if (try_to_freeze()) continue; @@ -650,7 +648,6 @@ print_stats(blkif); blkif->xenblkd = NULL; - xen_blkif_put(blkif); return 0; } @@ -1410,33 +1407,35 @@ static void make_response(struct xen_blkif *blkif, u64 id, unsigned short op, int st) { - struct blkif_response resp; + struct blkif_response *resp; unsigned long flags; - union blkif_back_rings *blk_rings = &blkif->blk_rings; + union blkif_back_rings *blk_rings; int notify; - resp.id = id; - resp.operation = op; - resp.status = st; - spin_lock_irqsave(&blkif->blk_ring_lock, flags); + blk_rings = &blkif->blk_rings; /* Place on the response ring for the relevant domain. */ switch (blkif->blk_protocol) { case BLKIF_PROTOCOL_NATIVE: - memcpy(RING_GET_RESPONSE(&blk_rings->native, blk_rings->native.rsp_prod_pvt), - &resp, sizeof(resp)); + resp = RING_GET_RESPONSE(&blk_rings->native, + blk_rings->native.rsp_prod_pvt); break; case BLKIF_PROTOCOL_X86_32: - memcpy(RING_GET_RESPONSE(&blk_rings->x86_32, blk_rings->x86_32.rsp_prod_pvt), - &resp, sizeof(resp)); + resp = RING_GET_RESPONSE(&blk_rings->x86_32, + blk_rings->x86_32.rsp_prod_pvt); break; case BLKIF_PROTOCOL_X86_64: - memcpy(RING_GET_RESPONSE(&blk_rings->x86_64, blk_rings->x86_64.rsp_prod_pvt), - &resp, sizeof(resp)); + resp = RING_GET_RESPONSE(&blk_rings->x86_64, + blk_rings->x86_64.rsp_prod_pvt); break; default: BUG(); } + + resp->id = id; + resp->operation = op; + resp->status = st; + blk_rings->common.rsp_prod_pvt++; RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(&blk_rings->common, notify); spin_unlock_irqrestore(&blkif->blk_ring_lock, flags); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/block/xen-blkback/common.h +++ linux-raspi2-4.4.0/drivers/block/xen-blkback/common.h @@ -74,9 +74,8 @@ struct blkif_common_request { char dummy; }; -struct blkif_common_response { - char dummy; -}; + +/* i386 protocol version */ struct blkif_x86_32_request_rw { uint8_t nr_segments; /* number of segments */ @@ -128,14 +127,6 @@ } u; } __attribute__((__packed__)); -/* i386 protocol version */ -#pragma pack(push, 4) -struct blkif_x86_32_response { - uint64_t id; /* copied from request */ - uint8_t operation; /* copied from request */ - int16_t status; /* BLKIF_RSP_??? */ -}; -#pragma pack(pop) /* x86_64 protocol version */ struct blkif_x86_64_request_rw { @@ -192,18 +183,12 @@ } u; } __attribute__((__packed__)); -struct blkif_x86_64_response { - uint64_t __attribute__((__aligned__(8))) id; - uint8_t operation; /* copied from request */ - int16_t status; /* BLKIF_RSP_??? */ -}; - DEFINE_RING_TYPES(blkif_common, struct blkif_common_request, - struct blkif_common_response); + struct blkif_response); DEFINE_RING_TYPES(blkif_x86_32, struct blkif_x86_32_request, - struct blkif_x86_32_response); + struct blkif_response __packed); DEFINE_RING_TYPES(blkif_x86_64, struct blkif_x86_64_request, - struct blkif_x86_64_response); + struct blkif_response); union blkif_back_rings { struct blkif_back_ring native; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/block/xen-blkback/xenbus.c +++ linux-raspi2-4.4.0/drivers/block/xen-blkback/xenbus.c @@ -221,7 +221,6 @@ if (blkif->xenblkd) { kthread_stop(blkif->xenblkd); wake_up(&blkif->shutdown_wq); - blkif->xenblkd = NULL; } /* The above kthread_stop() guarantees that at this point we @@ -266,9 +265,10 @@ static void xen_blkif_free(struct xen_blkif *blkif) { - - xen_blkif_disconnect(blkif); + WARN_ON(xen_blkif_disconnect(blkif)); xen_vbd_free(&blkif->vbd); + kfree(blkif->be->mode); + kfree(blkif->be); /* Make sure everything is drained before shutting down */ BUG_ON(blkif->persistent_gnt_c != 0); @@ -445,8 +445,6 @@ xen_blkif_put(be->blkif); } - kfree(be->mode); - kfree(be); return 0; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/bluetooth/btintel.c +++ linux-raspi2-4.4.0/drivers/bluetooth/btintel.c @@ -343,6 +343,31 @@ } EXPORT_SYMBOL_GPL(btintel_set_event_mask_mfg); +int btintel_read_version(struct hci_dev *hdev, struct intel_version *ver) +{ + struct sk_buff *skb; + + skb = __hci_cmd_sync(hdev, 0xfc05, 0, NULL, HCI_CMD_TIMEOUT); + if (IS_ERR(skb)) { + bt_dev_err(hdev, "Reading Intel version information failed (%ld)", + PTR_ERR(skb)); + return PTR_ERR(skb); + } + + if (skb->len != sizeof(*ver)) { + bt_dev_err(hdev, "Intel version event size mismatch"); + kfree_skb(skb); + return -EILSEQ; + } + + memcpy(ver, skb->data, sizeof(*ver)); + + kfree_skb(skb); + + return 0; +} +EXPORT_SYMBOL_GPL(btintel_read_version); + /* ------- REGMAP IBT SUPPORT ------- */ #define IBT_REG_MODE_8BIT 0x00 @@ -544,3 +569,5 @@ MODULE_LICENSE("GPL"); MODULE_FIRMWARE("intel/ibt-11-5.sfi"); MODULE_FIRMWARE("intel/ibt-11-5.ddc"); +MODULE_FIRMWARE("intel/ibt-12-16.sfi"); +MODULE_FIRMWARE("intel/ibt-12-16.ddc"); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/bluetooth/btintel.h +++ linux-raspi2-4.4.0/drivers/bluetooth/btintel.h @@ -83,6 +83,7 @@ int btintel_load_ddc_config(struct hci_dev *hdev, const char *ddc_name); int btintel_set_event_mask(struct hci_dev *hdev, bool debug); int btintel_set_event_mask_mfg(struct hci_dev *hdev, bool debug); +int btintel_read_version(struct hci_dev *hdev, struct intel_version *ver); struct regmap *btintel_regmap_init(struct hci_dev *hdev, u16 opcode_read, u16 opcode_write); @@ -139,6 +140,12 @@ { return -EOPNOTSUPP; } + +static inline int btintel_read_version(struct hci_dev *hdev, + struct intel_version *ver) +{ + return -EOPNOTSUPP; +} static inline struct regmap *btintel_regmap_init(struct hci_dev *hdev, u16 opcode_read, only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/bus/mvebu-mbus.c +++ linux-raspi2-4.4.0/drivers/bus/mvebu-mbus.c @@ -720,7 +720,7 @@ if (mbus->hw_io_coherency) w->mbus_attr |= ATTR_HW_COHERENCY; w->base = base & DDR_BASE_CS_LOW_MASK; - w->size = (size | ~DDR_SIZE_MASK) + 1; + w->size = (u64)(size | ~DDR_SIZE_MASK) + 1; } } mvebu_mbus_dram_info.num_cs = cs; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/char/ipmi/ipmi_watchdog.c +++ linux-raspi2-4.4.0/drivers/char/ipmi/ipmi_watchdog.c @@ -1162,10 +1162,11 @@ ipmi_watchdog_state = WDOG_TIMEOUT_NONE; ipmi_set_timeout(IPMI_SET_TIMEOUT_NO_HB); } else if (ipmi_watchdog_state != WDOG_TIMEOUT_NONE) { - /* Set a long timer to let the reboot happens, but - reboot if it hangs, but only if the watchdog + /* Set a long timer to let the reboot happen or + reset if it hangs, but only if the watchdog timer was already running. */ - timeout = 120; + if (timeout < 120) + timeout = 120; pretimeout = 0; ipmi_watchdog_state = WDOG_TIMEOUT_RESET; ipmi_set_timeout(IPMI_SET_TIMEOUT_NO_HB); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/char/tpm/tpm_atmel.c +++ linux-raspi2-4.4.0/drivers/char/tpm/tpm_atmel.c @@ -49,7 +49,7 @@ for (i = 0; i < 6; i++) { status = ioread8(chip->vendor.iobase + 1); if ((status & ATML_STATUS_DATA_AVAIL) == 0) { - dev_err(chip->pdev, "error reading header\n"); + dev_err(&chip->dev, "error reading header\n"); return -EIO; } *buf++ = ioread8(chip->vendor.iobase); @@ -60,12 +60,12 @@ size = be32_to_cpu(*native_size); if (count < size) { - dev_err(chip->pdev, + dev_err(&chip->dev, "Recv size(%d) less than available space\n", size); for (; i < size; i++) { /* clear the waiting data anyway */ status = ioread8(chip->vendor.iobase + 1); if ((status & ATML_STATUS_DATA_AVAIL) == 0) { - dev_err(chip->pdev, "error reading data\n"); + dev_err(&chip->dev, "error reading data\n"); return -EIO; } } @@ -76,7 +76,7 @@ for (; i < size; i++) { status = ioread8(chip->vendor.iobase + 1); if ((status & ATML_STATUS_DATA_AVAIL) == 0) { - dev_err(chip->pdev, "error reading data\n"); + dev_err(&chip->dev, "error reading data\n"); return -EIO; } *buf++ = ioread8(chip->vendor.iobase); @@ -86,7 +86,7 @@ status = ioread8(chip->vendor.iobase + 1); if (status & ATML_STATUS_DATA_AVAIL) { - dev_err(chip->pdev, "data available is stuck\n"); + dev_err(&chip->dev, "data available is stuck\n"); return -EIO; } @@ -97,9 +97,9 @@ { int i; - dev_dbg(chip->pdev, "tpm_atml_send:\n"); + dev_dbg(&chip->dev, "tpm_atml_send:\n"); for (i = 0; i < count; i++) { - dev_dbg(chip->pdev, "%d 0x%x(%d)\n", i, buf[i], buf[i]); + dev_dbg(&chip->dev, "%d 0x%x(%d)\n", i, buf[i], buf[i]); iowrite8(buf[i], chip->vendor.iobase); } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/char/tpm/tpm_i2c_atmel.c +++ linux-raspi2-4.4.0/drivers/char/tpm/tpm_i2c_atmel.c @@ -52,7 +52,7 @@ static int i2c_atmel_send(struct tpm_chip *chip, u8 *buf, size_t len) { struct priv_data *priv = chip->vendor.priv; - struct i2c_client *client = to_i2c_client(chip->pdev); + struct i2c_client *client = to_i2c_client(chip->dev.parent); s32 status; priv->len = 0; @@ -62,7 +62,7 @@ status = i2c_master_send(client, buf, len); - dev_dbg(chip->pdev, + dev_dbg(&chip->dev, "%s(buf=%*ph len=%0zx) -> sts=%d\n", __func__, (int)min_t(size_t, 64, len), buf, len, status); return status; @@ -71,7 +71,7 @@ static int i2c_atmel_recv(struct tpm_chip *chip, u8 *buf, size_t count) { struct priv_data *priv = chip->vendor.priv; - struct i2c_client *client = to_i2c_client(chip->pdev); + struct i2c_client *client = to_i2c_client(chip->dev.parent); struct tpm_output_header *hdr = (struct tpm_output_header *)priv->buffer; u32 expected_len; @@ -88,7 +88,7 @@ return -ENOMEM; if (priv->len >= expected_len) { - dev_dbg(chip->pdev, + dev_dbg(&chip->dev, "%s early(buf=%*ph count=%0zx) -> ret=%d\n", __func__, (int)min_t(size_t, 64, expected_len), buf, count, expected_len); @@ -97,7 +97,7 @@ } rc = i2c_master_recv(client, buf, expected_len); - dev_dbg(chip->pdev, + dev_dbg(&chip->dev, "%s reread(buf=%*ph count=%0zx) -> ret=%d\n", __func__, (int)min_t(size_t, 64, expected_len), buf, count, expected_len); @@ -106,13 +106,13 @@ static void i2c_atmel_cancel(struct tpm_chip *chip) { - dev_err(chip->pdev, "TPM operation cancellation was requested, but is not supported"); + dev_err(&chip->dev, "TPM operation cancellation was requested, but is not supported"); } static u8 i2c_atmel_read_status(struct tpm_chip *chip) { struct priv_data *priv = chip->vendor.priv; - struct i2c_client *client = to_i2c_client(chip->pdev); + struct i2c_client *client = to_i2c_client(chip->dev.parent); int rc; /* The TPM fails the I2C read until it is ready, so we do the entire @@ -125,7 +125,7 @@ /* Once the TPM has completed the command the command remains readable * until another command is issued. */ rc = i2c_master_recv(client, priv->buffer, sizeof(priv->buffer)); - dev_dbg(chip->pdev, + dev_dbg(&chip->dev, "%s: sts=%d", __func__, rc); if (rc <= 0) return 0; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/char/tpm/tpm_i2c_infineon.c +++ linux-raspi2-4.4.0/drivers/char/tpm/tpm_i2c_infineon.c @@ -446,7 +446,7 @@ /* read first 10 bytes, including tag, paramsize, and result */ size = recv_data(chip, buf, TPM_HEADER_SIZE); if (size < TPM_HEADER_SIZE) { - dev_err(chip->pdev, "Unable to read header\n"); + dev_err(&chip->dev, "Unable to read header\n"); goto out; } @@ -459,14 +459,14 @@ size += recv_data(chip, &buf[TPM_HEADER_SIZE], expected - TPM_HEADER_SIZE); if (size < expected) { - dev_err(chip->pdev, "Unable to read remainder of result\n"); + dev_err(&chip->dev, "Unable to read remainder of result\n"); size = -ETIME; goto out; } wait_for_stat(chip, TPM_STS_VALID, chip->vendor.timeout_c, &status); if (status & TPM_STS_DATA_AVAIL) { /* retry? */ - dev_err(chip->pdev, "Error left over data\n"); + dev_err(&chip->dev, "Error left over data\n"); size = -EIO; goto out; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/char/tpm/tpm_i2c_nuvoton.c +++ linux-raspi2-4.4.0/drivers/char/tpm/tpm_i2c_nuvoton.c @@ -96,13 +96,13 @@ /* read TPM_STS register */ static u8 i2c_nuvoton_read_status(struct tpm_chip *chip) { - struct i2c_client *client = to_i2c_client(chip->pdev); + struct i2c_client *client = to_i2c_client(chip->dev.parent); s32 status; u8 data; status = i2c_nuvoton_read_buf(client, TPM_STS, 1, &data); if (status <= 0) { - dev_err(chip->pdev, "%s() error return %d\n", __func__, + dev_err(&chip->dev, "%s() error return %d\n", __func__, status); data = TPM_STS_ERR_VAL; } @@ -127,13 +127,13 @@ /* write commandReady to TPM_STS register */ static void i2c_nuvoton_ready(struct tpm_chip *chip) { - struct i2c_client *client = to_i2c_client(chip->pdev); + struct i2c_client *client = to_i2c_client(chip->dev.parent); s32 status; /* this causes the current command to be aborted */ status = i2c_nuvoton_write_status(client, TPM_STS_COMMAND_READY); if (status < 0) - dev_err(chip->pdev, + dev_err(&chip->dev, "%s() fail to write TPM_STS.commandReady\n", __func__); } @@ -212,7 +212,7 @@ return 0; } while (time_before(jiffies, stop)); } - dev_err(chip->pdev, "%s(%02x, %02x) -> timeout\n", __func__, mask, + dev_err(&chip->dev, "%s(%02x, %02x) -> timeout\n", __func__, mask, value); return -ETIMEDOUT; } @@ -240,7 +240,7 @@ &chip->vendor.read_queue) == 0) { burst_count = i2c_nuvoton_get_burstcount(client, chip); if (burst_count < 0) { - dev_err(chip->pdev, + dev_err(&chip->dev, "%s() fail to read burstCount=%d\n", __func__, burst_count); return -EIO; @@ -249,12 +249,12 @@ rc = i2c_nuvoton_read_buf(client, TPM_DATA_FIFO_R, bytes2read, &buf[size]); if (rc < 0) { - dev_err(chip->pdev, + dev_err(&chip->dev, "%s() fail on i2c_nuvoton_read_buf()=%d\n", __func__, rc); return -EIO; } - dev_dbg(chip->pdev, "%s(%d):", __func__, bytes2read); + dev_dbg(&chip->dev, "%s(%d):", __func__, bytes2read); size += bytes2read; } @@ -264,7 +264,7 @@ /* Read TPM command results */ static int i2c_nuvoton_recv(struct tpm_chip *chip, u8 *buf, size_t count) { - struct device *dev = chip->pdev; + struct device *dev = chip->dev.parent; struct i2c_client *client = to_i2c_client(dev); s32 rc; int expected, status, burst_count, retries, size = 0; @@ -334,7 +334,7 @@ break; } i2c_nuvoton_ready(chip); - dev_dbg(chip->pdev, "%s() -> %d\n", __func__, size); + dev_dbg(&chip->dev, "%s() -> %d\n", __func__, size); return size; } @@ -347,7 +347,7 @@ */ static int i2c_nuvoton_send(struct tpm_chip *chip, u8 *buf, size_t len) { - struct device *dev = chip->pdev; + struct device *dev = chip->dev.parent; struct i2c_client *client = to_i2c_client(dev); u32 ordinal; size_t count = 0; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/char/tpm/tpm_infineon.c +++ linux-raspi2-4.4.0/drivers/char/tpm/tpm_infineon.c @@ -195,9 +195,9 @@ } if (i == TPM_MAX_TRIES) { /* timeout occurs */ if (wait_for_bit == STAT_XFE) - dev_err(chip->pdev, "Timeout in wait(STAT_XFE)\n"); + dev_err(&chip->dev, "Timeout in wait(STAT_XFE)\n"); if (wait_for_bit == STAT_RDA) - dev_err(chip->pdev, "Timeout in wait(STAT_RDA)\n"); + dev_err(&chip->dev, "Timeout in wait(STAT_RDA)\n"); return -EIO; } return 0; @@ -220,7 +220,7 @@ static void tpm_wtx(struct tpm_chip *chip) { number_of_wtx++; - dev_info(chip->pdev, "Granting WTX (%02d / %02d)\n", + dev_info(&chip->dev, "Granting WTX (%02d / %02d)\n", number_of_wtx, TPM_MAX_WTX_PACKAGES); wait_and_send(chip, TPM_VL_VER); wait_and_send(chip, TPM_CTRL_WTX); @@ -231,7 +231,7 @@ static void tpm_wtx_abort(struct tpm_chip *chip) { - dev_info(chip->pdev, "Aborting WTX\n"); + dev_info(&chip->dev, "Aborting WTX\n"); wait_and_send(chip, TPM_VL_VER); wait_and_send(chip, TPM_CTRL_WTX_ABORT); wait_and_send(chip, 0x00); @@ -257,7 +257,7 @@ } if (buf[0] != TPM_VL_VER) { - dev_err(chip->pdev, + dev_err(&chip->dev, "Wrong transport protocol implementation!\n"); return -EIO; } @@ -272,7 +272,7 @@ } if ((size == 0x6D00) && (buf[1] == 0x80)) { - dev_err(chip->pdev, "Error handling on vendor layer!\n"); + dev_err(&chip->dev, "Error handling on vendor layer!\n"); return -EIO; } @@ -284,7 +284,7 @@ } if (buf[1] == TPM_CTRL_WTX) { - dev_info(chip->pdev, "WTX-package received\n"); + dev_info(&chip->dev, "WTX-package received\n"); if (number_of_wtx < TPM_MAX_WTX_PACKAGES) { tpm_wtx(chip); goto recv_begin; @@ -295,14 +295,14 @@ } if (buf[1] == TPM_CTRL_WTX_ABORT_ACK) { - dev_info(chip->pdev, "WTX-abort acknowledged\n"); + dev_info(&chip->dev, "WTX-abort acknowledged\n"); return size; } if (buf[1] == TPM_CTRL_ERROR) { - dev_err(chip->pdev, "ERROR-package received:\n"); + dev_err(&chip->dev, "ERROR-package received:\n"); if (buf[4] == TPM_INF_NAK) - dev_err(chip->pdev, + dev_err(&chip->dev, "-> Negative acknowledgement" " - retransmit command!\n"); return -EIO; @@ -321,7 +321,7 @@ ret = empty_fifo(chip, 1); if (ret) { - dev_err(chip->pdev, "Timeout while clearing FIFO\n"); + dev_err(&chip->dev, "Timeout while clearing FIFO\n"); return -EIO; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/char/tpm/tpm_nsc.c +++ linux-raspi2-4.4.0/drivers/char/tpm/tpm_nsc.c @@ -113,7 +113,7 @@ } while (time_before(jiffies, stop)); - dev_info(chip->pdev, "wait for ready failed\n"); + dev_info(&chip->dev, "wait for ready failed\n"); return -EBUSY; } @@ -129,12 +129,12 @@ return -EIO; if (wait_for_stat(chip, NSC_STATUS_F0, NSC_STATUS_F0, &data) < 0) { - dev_err(chip->pdev, "F0 timeout\n"); + dev_err(&chip->dev, "F0 timeout\n"); return -EIO; } if ((data = inb(chip->vendor.base + NSC_DATA)) != NSC_COMMAND_NORMAL) { - dev_err(chip->pdev, "not in normal mode (0x%x)\n", + dev_err(&chip->dev, "not in normal mode (0x%x)\n", data); return -EIO; } @@ -143,7 +143,7 @@ for (p = buffer; p < &buffer[count]; p++) { if (wait_for_stat (chip, NSC_STATUS_OBF, NSC_STATUS_OBF, &data) < 0) { - dev_err(chip->pdev, + dev_err(&chip->dev, "OBF timeout (while reading data)\n"); return -EIO; } @@ -154,11 +154,11 @@ if ((data & NSC_STATUS_F0) == 0 && (wait_for_stat(chip, NSC_STATUS_F0, NSC_STATUS_F0, &data) < 0)) { - dev_err(chip->pdev, "F0 not set\n"); + dev_err(&chip->dev, "F0 not set\n"); return -EIO; } if ((data = inb(chip->vendor.base + NSC_DATA)) != NSC_COMMAND_EOC) { - dev_err(chip->pdev, + dev_err(&chip->dev, "expected end of command(0x%x)\n", data); return -EIO; } @@ -189,19 +189,19 @@ return -EIO; if (wait_for_stat(chip, NSC_STATUS_IBF, 0, &data) < 0) { - dev_err(chip->pdev, "IBF timeout\n"); + dev_err(&chip->dev, "IBF timeout\n"); return -EIO; } outb(NSC_COMMAND_NORMAL, chip->vendor.base + NSC_COMMAND); if (wait_for_stat(chip, NSC_STATUS_IBR, NSC_STATUS_IBR, &data) < 0) { - dev_err(chip->pdev, "IBR timeout\n"); + dev_err(&chip->dev, "IBR timeout\n"); return -EIO; } for (i = 0; i < count; i++) { if (wait_for_stat(chip, NSC_STATUS_IBF, 0, &data) < 0) { - dev_err(chip->pdev, + dev_err(&chip->dev, "IBF timeout (while writing data)\n"); return -EIO; } @@ -209,7 +209,7 @@ } if (wait_for_stat(chip, NSC_STATUS_IBF, 0, &data) < 0) { - dev_err(chip->pdev, "IBF timeout\n"); + dev_err(&chip->dev, "IBF timeout\n"); return -EIO; } outb(NSC_COMMAND_EOC, chip->vendor.base + NSC_COMMAND); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/clocksource/cs5535-clockevt.c +++ linux-raspi2-4.4.0/drivers/clocksource/cs5535-clockevt.c @@ -117,7 +117,8 @@ /* Turn off the clock (and clear the event) */ disable_timer(cs5535_event_clock); - if (clockevent_state_shutdown(&cs5535_clockevent)) + if (clockevent_state_detached(&cs5535_clockevent) || + clockevent_state_shutdown(&cs5535_clockevent)) return IRQ_HANDLED; /* Clear the counter */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/crypto/caam/key_gen.c +++ linux-raspi2-4.4.0/drivers/crypto/caam/key_gen.c @@ -103,7 +103,7 @@ ret = caam_jr_enqueue(jrdev, desc, split_key_done, &result); if (!ret) { /* in progress */ - wait_for_completion_interruptible(&result.completion); + wait_for_completion(&result.completion); ret = result.err; #ifdef DEBUG print_hex_dump(KERN_ERR, "ctx.key@"__stringify(__LINE__)": ", only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/dma/edma.c +++ linux-raspi2-4.4.0/drivers/dma/edma.c @@ -1126,11 +1126,24 @@ struct edma_desc *edesc; struct device *dev = chan->device->dev; struct edma_chan *echan = to_edma_chan(chan); - unsigned int width, pset_len; + unsigned int width, pset_len, array_size; if (unlikely(!echan || !len)) return NULL; + /* Align the array size (acnt block) with the transfer properties */ + switch (__ffs((src | dest | len))) { + case 0: + array_size = SZ_32K - 1; + break; + case 1: + array_size = SZ_32K - 2; + break; + default: + array_size = SZ_32K - 4; + break; + } + if (len < SZ_64K) { /* * Transfer size less than 64K can be handled with one paRAM @@ -1152,7 +1165,7 @@ * When the full_length is multibple of 32767 one slot can be * used to complete the transfer. */ - width = SZ_32K - 1; + width = array_size; pset_len = rounddown(len, width); /* One slot is enough for lengths multiple of (SZ_32K -1) */ if (unlikely(pset_len == len)) @@ -1202,7 +1215,7 @@ } dest += pset_len; src += pset_len; - pset_len = width = len % (SZ_32K - 1); + pset_len = width = len % array_size; ret = edma_config_pset(chan, &edesc->pset[1], src, dest, 1, width, pset_len, DMA_MEM_TO_MEM); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/dma/ioat/hw.h +++ linux-raspi2-4.4.0/drivers/dma/ioat/hw.h @@ -64,6 +64,8 @@ #define PCI_DEVICE_ID_INTEL_IOAT_BDX8 0x6f2e #define PCI_DEVICE_ID_INTEL_IOAT_BDX9 0x6f2f +#define PCI_DEVICE_ID_INTEL_IOAT_SKX 0x2021 + #define IOAT_VER_1_2 0x12 /* Version 1.2 */ #define IOAT_VER_2_0 0x20 /* Version 2.0 */ #define IOAT_VER_3_0 0x30 /* Version 3.0 */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/dma/ioat/init.c +++ linux-raspi2-4.4.0/drivers/dma/ioat/init.c @@ -105,6 +105,8 @@ { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_BDX8) }, { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_BDX9) }, + { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_SKX) }, + /* I/OAT v3.3 platforms */ { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_BWD0) }, { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_BWD1) }, @@ -250,10 +252,15 @@ } } +static inline bool is_skx_ioat(struct pci_dev *pdev) +{ + return (pdev->device == PCI_DEVICE_ID_INTEL_IOAT_SKX) ? true : false; +} + static bool is_xeon_cb32(struct pci_dev *pdev) { return is_jf_ioat(pdev) || is_snb_ioat(pdev) || is_ivb_ioat(pdev) || - is_hsw_ioat(pdev) || is_bdx_ioat(pdev); + is_hsw_ioat(pdev) || is_bdx_ioat(pdev) || is_skx_ioat(pdev); } bool is_bwd_ioat(struct pci_dev *pdev) @@ -1350,6 +1357,8 @@ device->version = readb(device->reg_base + IOAT_VER_OFFSET); if (device->version >= IOAT_VER_3_0) { + if (is_skx_ioat(pdev)) + device->version = IOAT_VER_3_2; err = ioat3_dma_probe(device, ioat_dca_enabled); if (device->version >= IOAT_VER_3_3) only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/dma/ti-dma-crossbar.c +++ linux-raspi2-4.4.0/drivers/dma/ti-dma-crossbar.c @@ -146,6 +146,7 @@ match = of_match_node(ti_am335x_master_match, dma_node); if (!match) { dev_err(&pdev->dev, "DMA master is not supported\n"); + of_node_put(dma_node); return -EINVAL; } @@ -310,6 +311,7 @@ match = of_match_node(ti_dra7_master_match, dma_node); if (!match) { dev_err(&pdev->dev, "DMA master is not supported\n"); + of_node_put(dma_node); return -EINVAL; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/extcon/extcon-axp288.c +++ linux-raspi2-4.4.0/drivers/extcon/extcon-axp288.c @@ -168,7 +168,7 @@ return ret; } - vbus_attach = (pwr_stat & PS_STAT_VBUS_PRESENT); + vbus_attach = (pwr_stat & PS_STAT_VBUS_VALID); if (!vbus_attach) goto notify_otg; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/firmware/psci.c +++ linux-raspi2-4.4.0/drivers/firmware/psci.c @@ -424,7 +424,7 @@ return err; } -static const struct of_device_id const psci_of_match[] __initconst = { +static const struct of_device_id psci_of_match[] __initconst = { { .compatible = "arm,psci", .data = psci_0_1_init}, { .compatible = "arm,psci-0.2", .data = psci_0_2_init}, { .compatible = "arm,psci-1.0", .data = psci_0_2_init}, only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/gpu/drm/amd/amdkfd/kfd_events.c +++ linux-raspi2-4.4.0/drivers/gpu/drm/amd/amdkfd/kfd_events.c @@ -739,8 +739,10 @@ struct kfd_event_data event_data; if (copy_from_user(&event_data, &events[i], - sizeof(struct kfd_event_data))) + sizeof(struct kfd_event_data))) { + ret = -EFAULT; goto fail; + } ret = init_event_waiter(p, &event_waiters[i], event_data.event_id, i); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/gpu/drm/drm_drv.c +++ linux-raspi2-4.4.0/drivers/gpu/drm/drm_drv.c @@ -312,7 +312,7 @@ ret = drm_debugfs_init(minor, minor->index, drm_debugfs_root); if (ret) { DRM_ERROR("DRM: Failed to initialize /sys/kernel/debug/dri.\n"); - return ret; + goto err_debugfs; } ret = device_add(minor->kdev); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/gpu/drm/i2c/adv7511.c +++ linux-raspi2-4.4.0/drivers/gpu/drm/i2c/adv7511.c @@ -36,7 +36,10 @@ bool edid_read; wait_queue_head_t wq; + struct work_struct hpd_work; + struct drm_encoder *encoder; + struct drm_connector connector; bool embedded_sync; enum adv7511_sync_polarity vsync_polarity; @@ -48,6 +51,10 @@ struct gpio_desc *gpio_pd; }; +static const int edid_i2c_addr = 0x7e; +static const int packet_i2c_addr = 0x70; +static const int cec_i2c_addr = 0x78; + static struct adv7511 *encoder_to_adv7511(struct drm_encoder *encoder) { return to_encoder_slave(encoder)->slave_priv; @@ -362,12 +369,19 @@ { adv7511->current_edid_segment = -1; - regmap_write(adv7511->regmap, ADV7511_REG_INT(0), - ADV7511_INT0_EDID_READY); - regmap_write(adv7511->regmap, ADV7511_REG_INT(1), - ADV7511_INT1_DDC_ERROR); regmap_update_bits(adv7511->regmap, ADV7511_REG_POWER, ADV7511_POWER_POWER_DOWN, 0); + if (adv7511->i2c_main->irq) { + /* + * Documentation says the INT_ENABLE registers are reset in + * POWER_DOWN mode. My 7511w preserved the bits, however. + * Still, let's be safe and stick to the documentation. + */ + regmap_write(adv7511->regmap, ADV7511_REG_INT_ENABLE(0), + ADV7511_INT0_EDID_READY); + regmap_write(adv7511->regmap, ADV7511_REG_INT_ENABLE(1), + ADV7511_INT1_DDC_ERROR); + } /* * Per spec it is allowed to pulse the HDP signal to indicate that the @@ -422,7 +436,27 @@ return false; } -static int adv7511_irq_process(struct adv7511 *adv7511) +static void adv7511_hpd_work(struct work_struct *work) +{ + struct adv7511 *adv7511 = container_of(work, struct adv7511, hpd_work); + enum drm_connector_status status; + unsigned int val; + int ret; + ret = regmap_read(adv7511->regmap, ADV7511_REG_STATUS, &val); + if (ret < 0) + status = connector_status_disconnected; + else if (val & ADV7511_STATUS_HPD) + status = connector_status_connected; + else + status = connector_status_disconnected; + + if (adv7511->connector.status != status) { + adv7511->connector.status = status; + drm_kms_helper_hotplug_event(adv7511->connector.dev); + } +} + +static int adv7511_irq_process(struct adv7511 *adv7511, bool process_hpd) { unsigned int irq0, irq1; int ret; @@ -438,8 +472,8 @@ regmap_write(adv7511->regmap, ADV7511_REG_INT(0), irq0); regmap_write(adv7511->regmap, ADV7511_REG_INT(1), irq1); - if (irq0 & ADV7511_INT0_HDP && adv7511->encoder) - drm_helper_hpd_irq_event(adv7511->encoder->dev); + if (process_hpd && irq0 & ADV7511_INT0_HDP && adv7511->encoder) + schedule_work(&adv7511->hpd_work); if (irq0 & ADV7511_INT0_EDID_READY || irq1 & ADV7511_INT1_DDC_ERROR) { adv7511->edid_read = true; @@ -456,7 +490,7 @@ struct adv7511 *adv7511 = devid; int ret; - ret = adv7511_irq_process(adv7511); + ret = adv7511_irq_process(adv7511, true); return ret < 0 ? IRQ_NONE : IRQ_HANDLED; } @@ -473,7 +507,7 @@ adv7511->edid_read, msecs_to_jiffies(timeout)); } else { for (; timeout > 0; timeout -= 25) { - ret = adv7511_irq_process(adv7511); + ret = adv7511_irq_process(adv7511, false); if (ret < 0) break; @@ -567,13 +601,18 @@ /* Reading the EDID only works if the device is powered */ if (!adv7511->powered) { - regmap_write(adv7511->regmap, ADV7511_REG_INT(0), - ADV7511_INT0_EDID_READY); - regmap_write(adv7511->regmap, ADV7511_REG_INT(1), - ADV7511_INT1_DDC_ERROR); regmap_update_bits(adv7511->regmap, ADV7511_REG_POWER, ADV7511_POWER_POWER_DOWN, 0); + if (adv7511->i2c_main->irq) { + regmap_write(adv7511->regmap, ADV7511_REG_INT_ENABLE(0), + ADV7511_INT0_EDID_READY); + regmap_write(adv7511->regmap, ADV7511_REG_INT_ENABLE(1), + ADV7511_INT1_DDC_ERROR); + } adv7511->current_edid_segment = -1; + /* Reset the EDID_I2C_ADDR register as it might be cleared */ + regmap_write(adv7511->regmap, ADV7511_REG_EDID_I2C_ADDR, + edid_i2c_addr); } edid = drm_do_get_edid(connector, adv7511_get_edid_block, adv7511); @@ -849,10 +888,6 @@ return 0; } -static const int edid_i2c_addr = 0x7e; -static const int packet_i2c_addr = 0x70; -static const int cec_i2c_addr = 0x78; - static int adv7511_probe(struct i2c_client *i2c, const struct i2c_device_id *id) { struct adv7511_link_config link_config; @@ -913,6 +948,8 @@ if (!adv7511->i2c_edid) return -ENOMEM; + INIT_WORK(&adv7511->hpd_work, adv7511_hpd_work); + if (i2c->irq) { init_waitqueue_head(&adv7511->wq); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/gpu/drm/msm/adreno/adreno_gpu.c +++ linux-raspi2-4.4.0/drivers/gpu/drm/msm/adreno/adreno_gpu.c @@ -204,7 +204,14 @@ void adreno_flush(struct msm_gpu *gpu) { struct adreno_gpu *adreno_gpu = to_adreno_gpu(gpu); - uint32_t wptr = get_wptr(gpu->rb); + uint32_t wptr; + + /* + * Mask wptr value that we calculate to fit in the HW range. This is + * to account for the possibility that the last command fit exactly into + * the ringbuffer and rb->next hasn't wrapped to zero yet + */ + wptr = get_wptr(gpu->rb) & ((gpu->rb->size / 4) - 1); /* ensure writes to ringbuffer have hit system memory: */ mb(); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/gpu/drm/msm/msm_ringbuffer.c +++ linux-raspi2-4.4.0/drivers/gpu/drm/msm/msm_ringbuffer.c @@ -23,7 +23,8 @@ struct msm_ringbuffer *ring; int ret; - size = ALIGN(size, 4); /* size should be dword aligned */ + if (WARN_ON(!is_power_of_2(size))) + return ERR_PTR(-EINVAL); ring = kzalloc(sizeof(*ring), GFP_KERNEL); if (!ring) { only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/gpu/drm/nouveau/nvkm/engine/bsp/g84.c +++ linux-raspi2-4.4.0/drivers/gpu/drm/nouveau/nvkm/engine/bsp/g84.c @@ -40,5 +40,5 @@ g84_bsp_new(struct nvkm_device *device, int index, struct nvkm_engine **pengine) { return nvkm_xtensa_new_(&g84_bsp, device, index, - true, 0x103000, pengine); + device->chipset != 0x92, 0x103000, pengine); } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/gpu/drm/nouveau/nvkm/subdev/bar/gf100.c +++ linux-raspi2-4.4.0/drivers/gpu/drm/nouveau/nvkm/subdev/bar/gf100.c @@ -129,7 +129,7 @@ if (bar->bar[0].mem) { addr = nvkm_memory_addr(bar->bar[0].mem) >> 12; - nvkm_wr32(device, 0x001714, 0xc0000000 | addr); + nvkm_wr32(device, 0x001714, 0x80000000 | addr); } return 0; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/gpu/drm/nouveau/nvkm/subdev/mmu/base.c +++ linux-raspi2-4.4.0/drivers/gpu/drm/nouveau/nvkm/subdev/mmu/base.c @@ -240,6 +240,8 @@ mmu->func->map_pgt(vpgd->obj, pde, vpgt->mem); } + mmu->func->flush(vm); + nvkm_memory_del(&pgt); } } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/gpu/drm/nouveau/nvkm/subdev/pci/base.c +++ linux-raspi2-4.4.0/drivers/gpu/drm/nouveau/nvkm/subdev/pci/base.c @@ -180,6 +180,10 @@ } } +#ifdef __BIG_ENDIAN + pci->msi = false; +#endif + pci->msi = nvkm_boolopt(device->cfgopt, "NvMSI", pci->msi); if (pci->msi && func->msi_rearm) { pci->msi = pci_enable_msi(pci->pdev) == 0; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/gpu/drm/rcar-du/rcar_du_crtc.c +++ linux-raspi2-4.4.0/drivers/gpu/drm/rcar-du/rcar_du_crtc.c @@ -148,8 +148,8 @@ rcar_du_group_write(rcrtc->group, rcrtc->index % 2 ? OTAR2 : OTAR, 0); /* Signal polarities */ - value = ((mode->flags & DRM_MODE_FLAG_PVSYNC) ? 0 : DSMR_VSL) - | ((mode->flags & DRM_MODE_FLAG_PHSYNC) ? 0 : DSMR_HSL) + value = ((mode->flags & DRM_MODE_FLAG_PVSYNC) ? DSMR_VSL : 0) + | ((mode->flags & DRM_MODE_FLAG_PHSYNC) ? DSMR_HSL : 0) | DSMR_DIPM_DE | DSMR_CSPM; rcar_du_crtc_write(rcrtc, DSMR, value); @@ -171,7 +171,7 @@ mode->crtc_vsync_start - 1); rcar_du_crtc_write(rcrtc, VCR, mode->crtc_vtotal - 1); - rcar_du_crtc_write(rcrtc, DESR, mode->htotal - mode->hsync_start); + rcar_du_crtc_write(rcrtc, DESR, mode->htotal - mode->hsync_start - 1); rcar_du_crtc_write(rcrtc, DEWR, mode->hdisplay); } @@ -282,26 +282,6 @@ * Page Flip */ -void rcar_du_crtc_cancel_page_flip(struct rcar_du_crtc *rcrtc, - struct drm_file *file) -{ - struct drm_pending_vblank_event *event; - struct drm_device *dev = rcrtc->crtc.dev; - unsigned long flags; - - /* Destroy the pending vertical blanking event associated with the - * pending page flip, if any, and disable vertical blanking interrupts. - */ - spin_lock_irqsave(&dev->event_lock, flags); - event = rcrtc->event; - if (event && event->base.file_priv == file) { - rcrtc->event = NULL; - event->base.destroy(&event->base); - drm_crtc_vblank_put(&rcrtc->crtc); - } - spin_unlock_irqrestore(&dev->event_lock, flags); -} - static void rcar_du_crtc_finish_page_flip(struct rcar_du_crtc *rcrtc) { struct drm_pending_vblank_event *event; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/gpu/drm/rcar-du/rcar_du_crtc.h +++ linux-raspi2-4.4.0/drivers/gpu/drm/rcar-du/rcar_du_crtc.h @@ -67,8 +67,6 @@ int rcar_du_crtc_create(struct rcar_du_group *rgrp, unsigned int index); void rcar_du_crtc_enable_vblank(struct rcar_du_crtc *rcrtc, bool enable); -void rcar_du_crtc_cancel_page_flip(struct rcar_du_crtc *rcrtc, - struct drm_file *file); void rcar_du_crtc_suspend(struct rcar_du_crtc *rcrtc); void rcar_du_crtc_resume(struct rcar_du_crtc *rcrtc); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/gpu/drm/rcar-du/rcar_du_drv.c +++ linux-raspi2-4.4.0/drivers/gpu/drm/rcar-du/rcar_du_drv.c @@ -144,91 +144,6 @@ * DRM operations */ -static int rcar_du_unload(struct drm_device *dev) -{ - struct rcar_du_device *rcdu = dev->dev_private; - - if (rcdu->fbdev) - drm_fbdev_cma_fini(rcdu->fbdev); - - drm_kms_helper_poll_fini(dev); - drm_mode_config_cleanup(dev); - drm_vblank_cleanup(dev); - - dev->irq_enabled = 0; - dev->dev_private = NULL; - - return 0; -} - -static int rcar_du_load(struct drm_device *dev, unsigned long flags) -{ - struct platform_device *pdev = dev->platformdev; - struct device_node *np = pdev->dev.of_node; - struct rcar_du_device *rcdu; - struct resource *mem; - int ret; - - if (np == NULL) { - dev_err(dev->dev, "no platform data\n"); - return -ENODEV; - } - - rcdu = devm_kzalloc(&pdev->dev, sizeof(*rcdu), GFP_KERNEL); - if (rcdu == NULL) { - dev_err(dev->dev, "failed to allocate private data\n"); - return -ENOMEM; - } - - init_waitqueue_head(&rcdu->commit.wait); - - rcdu->dev = &pdev->dev; - rcdu->info = of_match_device(rcar_du_of_table, rcdu->dev)->data; - rcdu->ddev = dev; - dev->dev_private = rcdu; - - /* I/O resources */ - mem = platform_get_resource(pdev, IORESOURCE_MEM, 0); - rcdu->mmio = devm_ioremap_resource(&pdev->dev, mem); - if (IS_ERR(rcdu->mmio)) - return PTR_ERR(rcdu->mmio); - - /* Initialize vertical blanking interrupts handling. Start with vblank - * disabled for all CRTCs. - */ - ret = drm_vblank_init(dev, (1 << rcdu->info->num_crtcs) - 1); - if (ret < 0) { - dev_err(&pdev->dev, "failed to initialize vblank\n"); - goto done; - } - - /* DRM/KMS objects */ - ret = rcar_du_modeset_init(rcdu); - if (ret < 0) { - dev_err(&pdev->dev, "failed to initialize DRM/KMS (%d)\n", ret); - goto done; - } - - dev->irq_enabled = 1; - - platform_set_drvdata(pdev, rcdu); - -done: - if (ret) - rcar_du_unload(dev); - - return ret; -} - -static void rcar_du_preclose(struct drm_device *dev, struct drm_file *file) -{ - struct rcar_du_device *rcdu = dev->dev_private; - unsigned int i; - - for (i = 0; i < rcdu->num_crtcs; ++i) - rcar_du_crtc_cancel_page_flip(&rcdu->crtcs[i], file); -} - static void rcar_du_lastclose(struct drm_device *dev) { struct rcar_du_device *rcdu = dev->dev_private; @@ -269,11 +184,7 @@ static struct drm_driver rcar_du_driver = { .driver_features = DRIVER_GEM | DRIVER_MODESET | DRIVER_PRIME | DRIVER_ATOMIC, - .load = rcar_du_load, - .unload = rcar_du_unload, - .preclose = rcar_du_preclose, .lastclose = rcar_du_lastclose, - .set_busid = drm_platform_set_busid, .get_vblank_counter = drm_vblank_no_hw_counter, .enable_vblank = rcar_du_enable_vblank, .disable_vblank = rcar_du_disable_vblank, @@ -333,18 +244,104 @@ * Platform driver */ -static int rcar_du_probe(struct platform_device *pdev) +static int rcar_du_remove(struct platform_device *pdev) { - return drm_platform_init(&rcar_du_driver, pdev); + struct rcar_du_device *rcdu = platform_get_drvdata(pdev); + struct drm_device *ddev = rcdu->ddev; + + mutex_lock(&ddev->mode_config.mutex); + drm_connector_unplug_all(ddev); + mutex_unlock(&ddev->mode_config.mutex); + + drm_dev_unregister(ddev); + + if (rcdu->fbdev) + drm_fbdev_cma_fini(rcdu->fbdev); + + drm_kms_helper_poll_fini(ddev); + drm_mode_config_cleanup(ddev); + + drm_dev_unref(ddev); + + return 0; } -static int rcar_du_remove(struct platform_device *pdev) +static int rcar_du_probe(struct platform_device *pdev) { - struct rcar_du_device *rcdu = platform_get_drvdata(pdev); + struct device_node *np = pdev->dev.of_node; + struct rcar_du_device *rcdu; + struct drm_connector *connector; + struct drm_device *ddev; + struct resource *mem; + int ret; + + if (np == NULL) { + dev_err(&pdev->dev, "no device tree node\n"); + return -ENODEV; + } - drm_put_dev(rcdu->ddev); + /* Allocate and initialize the DRM and R-Car device structures. */ + rcdu = devm_kzalloc(&pdev->dev, sizeof(*rcdu), GFP_KERNEL); + if (rcdu == NULL) + return -ENOMEM; + + init_waitqueue_head(&rcdu->commit.wait); + + rcdu->dev = &pdev->dev; + rcdu->info = of_match_device(rcar_du_of_table, rcdu->dev)->data; + + platform_set_drvdata(pdev, rcdu); + + /* I/O resources */ + mem = platform_get_resource(pdev, IORESOURCE_MEM, 0); + rcdu->mmio = devm_ioremap_resource(&pdev->dev, mem); + if (IS_ERR(rcdu->mmio)) + return PTR_ERR(rcdu->mmio); + + /* DRM/KMS objects */ + ddev = drm_dev_alloc(&rcar_du_driver, &pdev->dev); + if (!ddev) + return -ENOMEM; + + drm_dev_set_unique(ddev, dev_name(&pdev->dev)); + + rcdu->ddev = ddev; + ddev->dev_private = rcdu; + + ret = rcar_du_modeset_init(rcdu); + if (ret < 0) { + dev_err(&pdev->dev, "failed to initialize DRM/KMS (%d)\n", ret); + goto error; + } + + ddev->irq_enabled = 1; + + /* Register the DRM device with the core and the connectors with + * sysfs. + */ + ret = drm_dev_register(ddev, 0); + if (ret) + goto error; + + mutex_lock(&ddev->mode_config.mutex); + drm_for_each_connector(connector, ddev) { + ret = drm_connector_register(connector); + if (ret < 0) + break; + } + mutex_unlock(&ddev->mode_config.mutex); + + if (ret < 0) + goto error; + + DRM_INFO("Device %s probed\n", dev_name(&pdev->dev)); return 0; + +error: + rcar_du_remove(pdev); + + return ret; } static struct platform_driver rcar_du_platform_driver = { only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/gpu/drm/rcar-du/rcar_du_hdmicon.c +++ linux-raspi2-4.4.0/drivers/gpu/drm/rcar-du/rcar_du_hdmicon.c @@ -55,12 +55,6 @@ .best_encoder = rcar_du_connector_best_encoder, }; -static void rcar_du_hdmi_connector_destroy(struct drm_connector *connector) -{ - drm_connector_unregister(connector); - drm_connector_cleanup(connector); -} - static enum drm_connector_status rcar_du_hdmi_connector_detect(struct drm_connector *connector, bool force) { @@ -79,7 +73,7 @@ .reset = drm_atomic_helper_connector_reset, .detect = rcar_du_hdmi_connector_detect, .fill_modes = drm_helper_probe_single_connector_modes, - .destroy = rcar_du_hdmi_connector_destroy, + .destroy = drm_connector_cleanup, .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state, .atomic_destroy_state = drm_atomic_helper_connector_destroy_state, }; @@ -108,9 +102,6 @@ return ret; drm_connector_helper_add(connector, &connector_helper_funcs); - ret = drm_connector_register(connector); - if (ret < 0) - return ret; connector->dpms = DRM_MODE_DPMS_OFF; drm_object_property_set_value(&connector->base, only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/gpu/drm/rcar-du/rcar_du_kms.c +++ linux-raspi2-4.4.0/drivers/gpu/drm/rcar-du/rcar_du_kms.c @@ -642,13 +642,13 @@ } ret = rcar_du_encoder_init(rcdu, enc_type, output, encoder, connector); - of_node_put(encoder); - of_node_put(connector); - if (ret && ret != -EPROBE_DEFER) dev_warn(rcdu->dev, - "failed to initialize encoder %s (%d), skipping\n", - encoder->full_name, ret); + "failed to initialize encoder %s on output %u (%d), skipping\n", + of_node_full_name(encoder), output, ret); + + of_node_put(encoder); + of_node_put(connector); return ret; } @@ -761,6 +761,13 @@ if (ret < 0) return ret; + /* Initialize vertical blanking interrupts handling. Start with vblank + * disabled for all CRTCs. + */ + ret = drm_vblank_init(dev, (1 << rcdu->info->num_crtcs) - 1); + if (ret < 0) + return ret; + /* Initialize the groups. */ num_groups = DIV_ROUND_UP(rcdu->num_crtcs, 2); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/gpu/drm/rcar-du/rcar_du_lvdscon.c +++ linux-raspi2-4.4.0/drivers/gpu/drm/rcar-du/rcar_du_lvdscon.c @@ -62,12 +62,6 @@ .best_encoder = rcar_du_connector_best_encoder, }; -static void rcar_du_lvds_connector_destroy(struct drm_connector *connector) -{ - drm_connector_unregister(connector); - drm_connector_cleanup(connector); -} - static enum drm_connector_status rcar_du_lvds_connector_detect(struct drm_connector *connector, bool force) { @@ -79,7 +73,7 @@ .reset = drm_atomic_helper_connector_reset, .detect = rcar_du_lvds_connector_detect, .fill_modes = drm_helper_probe_single_connector_modes, - .destroy = rcar_du_lvds_connector_destroy, + .destroy = drm_connector_cleanup, .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state, .atomic_destroy_state = drm_atomic_helper_connector_destroy_state, }; @@ -117,9 +111,6 @@ return ret; drm_connector_helper_add(connector, &connector_helper_funcs); - ret = drm_connector_register(connector); - if (ret < 0) - return ret; connector->dpms = DRM_MODE_DPMS_OFF; drm_object_property_set_value(&connector->base, only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/gpu/drm/rcar-du/rcar_du_lvdsenc.c +++ linux-raspi2-4.4.0/drivers/gpu/drm/rcar-du/rcar_du_lvdsenc.c @@ -56,11 +56,11 @@ return ret; /* PLL clock configuration */ - if (freq <= 38000) + if (freq < 39000) pllcr = LVDPLLCR_CEEN | LVDPLLCR_COSEL | LVDPLLCR_PLLDLYCNT_38M; - else if (freq <= 60000) + else if (freq < 61000) pllcr = LVDPLLCR_CEEN | LVDPLLCR_COSEL | LVDPLLCR_PLLDLYCNT_60M; - else if (freq <= 121000) + else if (freq < 121000) pllcr = LVDPLLCR_CEEN | LVDPLLCR_COSEL | LVDPLLCR_PLLDLYCNT_121M; else pllcr = LVDPLLCR_PLLDLYCNT_150M; @@ -102,7 +102,7 @@ /* Turn the PLL on, wait for the startup delay, and turn the output * on. */ - lvdcr0 |= LVDCR0_PLLEN; + lvdcr0 |= LVDCR0_PLLON; rcar_lvds_write(lvds, LVDCR0, lvdcr0); usleep_range(100, 150); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/gpu/drm/rcar-du/rcar_du_vgacon.c +++ linux-raspi2-4.4.0/drivers/gpu/drm/rcar-du/rcar_du_vgacon.c @@ -31,12 +31,6 @@ .best_encoder = rcar_du_connector_best_encoder, }; -static void rcar_du_vga_connector_destroy(struct drm_connector *connector) -{ - drm_connector_unregister(connector); - drm_connector_cleanup(connector); -} - static enum drm_connector_status rcar_du_vga_connector_detect(struct drm_connector *connector, bool force) { @@ -48,7 +42,7 @@ .reset = drm_atomic_helper_connector_reset, .detect = rcar_du_vga_connector_detect, .fill_modes = drm_helper_probe_single_connector_modes, - .destroy = rcar_du_vga_connector_destroy, + .destroy = drm_connector_cleanup, .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state, .atomic_destroy_state = drm_atomic_helper_connector_destroy_state, }; @@ -76,9 +70,6 @@ return ret; drm_connector_helper_add(connector, &connector_helper_funcs); - ret = drm_connector_register(connector); - if (ret < 0) - return ret; connector->dpms = DRM_MODE_DPMS_OFF; drm_object_property_set_value(&connector->base, only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/gpu/drm/rcar-du/rcar_lvds_regs.h +++ linux-raspi2-4.4.0/drivers/gpu/drm/rcar-du/rcar_lvds_regs.h @@ -18,7 +18,7 @@ #define LVDCR0_DMD (1 << 12) #define LVDCR0_LVMD_MASK (0xf << 8) #define LVDCR0_LVMD_SHIFT 8 -#define LVDCR0_PLLEN (1 << 4) +#define LVDCR0_PLLON (1 << 4) #define LVDCR0_BEN (1 << 2) #define LVDCR0_LVEN (1 << 1) #define LVDCR0_LVRES (1 << 0) only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/gpu/drm/ttm/ttm_page_alloc.c +++ linux-raspi2-4.4.0/drivers/gpu/drm/ttm/ttm_page_alloc.c @@ -612,7 +612,7 @@ } else { pr_err("Failed to fill pool (%p)\n", pool); /* If we have any pages left put them to the pool. */ - list_for_each_entry(p, &pool->list, lru) { + list_for_each_entry(p, &new_pages, lru) { ++cpages; } list_splice(&new_pages, &pool->list); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/gpu/drm/virtio/virtgpu_fb.c +++ linux-raspi2-4.4.0/drivers/gpu/drm/virtio/virtgpu_fb.c @@ -338,7 +338,7 @@ info->fbops = &virtio_gpufb_ops; info->pixmap.flags = FB_PIXMAP_SYSTEM; - info->screen_base = obj->vmap; + info->screen_buffer = obj->vmap; info->screen_size = obj->gem_base.size; drm_fb_helper_fill_fix(info, fb->pitches[0], fb->depth); drm_fb_helper_fill_var(info, &vfbdev->helper, only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/hwmon/gl520sm.c +++ linux-raspi2-4.4.0/drivers/hwmon/gl520sm.c @@ -208,11 +208,13 @@ } static DEVICE_ATTR(cpu0_vid, S_IRUGO, get_cpu_vid, NULL); -#define VDD_FROM_REG(val) (((val) * 95 + 2) / 4) -#define VDD_TO_REG(val) clamp_val((((val) * 4 + 47) / 95), 0, 255) - -#define IN_FROM_REG(val) ((val) * 19) -#define IN_TO_REG(val) clamp_val((((val) + 9) / 19), 0, 255) +#define VDD_FROM_REG(val) DIV_ROUND_CLOSEST((val) * 95, 4) +#define VDD_CLAMP(val) clamp_val(val, 0, 255 * 95 / 4) +#define VDD_TO_REG(val) DIV_ROUND_CLOSEST(VDD_CLAMP(val) * 4, 95) + +#define IN_FROM_REG(val) ((val) * 19) +#define IN_CLAMP(val) clamp_val(val, 0, 255 * 19) +#define IN_TO_REG(val) DIV_ROUND_CLOSEST(IN_CLAMP(val), 19) static ssize_t get_in_input(struct device *dev, struct device_attribute *attr, char *buf) @@ -349,8 +351,13 @@ #define DIV_FROM_REG(val) (1 << (val)) #define FAN_FROM_REG(val, div) ((val) == 0 ? 0 : (480000 / ((val) << (div)))) -#define FAN_TO_REG(val, div) ((val) <= 0 ? 0 : \ - clamp_val((480000 + ((val) << ((div)-1))) / ((val) << (div)), 1, 255)) + +#define FAN_BASE(div) (480000 >> (div)) +#define FAN_CLAMP(val, div) clamp_val(val, FAN_BASE(div) / 255, \ + FAN_BASE(div)) +#define FAN_TO_REG(val, div) ((val) == 0 ? 0 : \ + DIV_ROUND_CLOSEST(480000, \ + FAN_CLAMP(val, div) << (div))) static ssize_t get_fan_input(struct device *dev, struct device_attribute *attr, char *buf) @@ -513,9 +520,9 @@ static DEVICE_ATTR(fan1_off, S_IRUGO | S_IWUSR, get_fan_off, set_fan_off); -#define TEMP_FROM_REG(val) (((val) - 130) * 1000) -#define TEMP_TO_REG(val) clamp_val(((((val) < 0 ? \ - (val) - 500 : (val) + 500) / 1000) + 130), 0, 255) +#define TEMP_FROM_REG(val) (((val) - 130) * 1000) +#define TEMP_CLAMP(val) clamp_val(val, -130000, 125000) +#define TEMP_TO_REG(val) (DIV_ROUND_CLOSEST(TEMP_CLAMP(val), 1000) + 130) static ssize_t get_temp_input(struct device *dev, struct device_attribute *attr, char *buf) only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/hwtracing/stm/core.c +++ linux-raspi2-4.4.0/drivers/hwtracing/stm/core.c @@ -952,7 +952,7 @@ stm_source_link_drop(src); - device_destroy(&stm_source_class, src->dev.devt); + device_unregister(&src->dev); } EXPORT_SYMBOL_GPL(stm_source_unregister_device); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/i2c/busses/i2c-at91.c +++ linux-raspi2-4.4.0/drivers/i2c/busses/i2c-at91.c @@ -1131,6 +1131,7 @@ static int at91_twi_resume_noirq(struct device *dev) { + struct at91_twi_dev *twi_dev = dev_get_drvdata(dev); int ret; if (!pm_runtime_status_suspended(dev)) { @@ -1142,6 +1143,8 @@ pm_runtime_mark_last_busy(dev); pm_request_autosuspend(dev); + at91_init_twi_bus(twi_dev); + return 0; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/i2c/busses/i2c-ismt.c +++ linux-raspi2-4.4.0/drivers/i2c/busses/i2c-ismt.c @@ -338,6 +338,11 @@ data->word = dma_buffer[0] | (dma_buffer[1] << 8); break; case I2C_SMBUS_BLOCK_DATA: + if (desc->rxbytes != dma_buffer[0] + 1) + return -EMSGSIZE; + + memcpy(data->block, dma_buffer, desc->rxbytes); + break; case I2C_SMBUS_I2C_BLOCK_DATA: memcpy(&data->block[1], dma_buffer, desc->rxbytes); data->block[0] = desc->rxbytes; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/i2c/busses/i2c-jz4780.c +++ linux-raspi2-4.4.0/drivers/i2c/busses/i2c-jz4780.c @@ -786,10 +786,6 @@ jz4780_i2c_writew(i2c, JZ4780_I2C_INTM, 0x0); - i2c->cmd = 0; - memset(i2c->cmd_buf, 0, BUFSIZE); - memset(i2c->data_buf, 0, BUFSIZE); - i2c->irq = platform_get_irq(pdev, 0); ret = devm_request_irq(&pdev->dev, i2c->irq, jz4780_i2c_irq, 0, dev_name(&pdev->dev), i2c); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/i2c/busses/i2c-meson.c +++ linux-raspi2-4.4.0/drivers/i2c/busses/i2c-meson.c @@ -175,7 +175,7 @@ wdata1 |= *buf++ << ((i - 4) * 8); writel(wdata0, i2c->regs + REG_TOK_WDATA0); - writel(wdata0, i2c->regs + REG_TOK_WDATA1); + writel(wdata1, i2c->regs + REG_TOK_WDATA1); dev_dbg(i2c->dev, "%s: data %08x %08x len %d\n", __func__, wdata0, wdata1, len); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/i2c/busses/i2c-riic.c +++ linux-raspi2-4.4.0/drivers/i2c/busses/i2c-riic.c @@ -80,6 +80,7 @@ #define ICIER_TEIE 0x40 #define ICIER_RIE 0x20 #define ICIER_NAKIE 0x10 +#define ICIER_SPIE 0x08 #define ICSR2_NACKF 0x10 @@ -216,11 +217,10 @@ return IRQ_NONE; } - if (riic->is_last || riic->err) + if (riic->is_last || riic->err) { + riic_clear_set_bit(riic, 0, ICIER_SPIE, RIIC_ICIER); writeb(ICCR2_SP, riic->base + RIIC_ICCR2); - - writeb(0, riic->base + RIIC_ICIER); - complete(&riic->msg_done); + } return IRQ_HANDLED; } @@ -240,13 +240,13 @@ if (riic->bytes_left == 1) { /* STOP must come before we set ACKBT! */ - if (riic->is_last) + if (riic->is_last) { + riic_clear_set_bit(riic, 0, ICIER_SPIE, RIIC_ICIER); writeb(ICCR2_SP, riic->base + RIIC_ICCR2); + } riic_clear_set_bit(riic, 0, ICMR3_ACKBT, RIIC_ICMR3); - writeb(0, riic->base + RIIC_ICIER); - complete(&riic->msg_done); } else { riic_clear_set_bit(riic, ICMR3_ACKBT, 0, RIIC_ICMR3); } @@ -259,6 +259,21 @@ return IRQ_HANDLED; } +static irqreturn_t riic_stop_isr(int irq, void *data) +{ + struct riic_dev *riic = data; + + /* read back registers to confirm writes have fully propagated */ + writeb(0, riic->base + RIIC_ICSR2); + readb(riic->base + RIIC_ICSR2); + writeb(0, riic->base + RIIC_ICIER); + readb(riic->base + RIIC_ICIER); + + complete(&riic->msg_done); + + return IRQ_HANDLED; +} + static u32 riic_func(struct i2c_adapter *adap) { return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL; @@ -326,6 +341,7 @@ { .res_num = 0, .isr = riic_tend_isr, .name = "riic-tend" }, { .res_num = 1, .isr = riic_rdrf_isr, .name = "riic-rdrf" }, { .res_num = 2, .isr = riic_tdre_isr, .name = "riic-tdre" }, + { .res_num = 3, .isr = riic_stop_isr, .name = "riic-stop" }, { .res_num = 5, .isr = riic_tend_isr, .name = "riic-nack" }, }; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/iio/adc/ad7793.c +++ linux-raspi2-4.4.0/drivers/iio/adc/ad7793.c @@ -257,7 +257,7 @@ unsigned int vref_mv) { struct ad7793_state *st = iio_priv(indio_dev); - int i, ret = -1; + int i, ret; unsigned long long scale_uv; u32 id; @@ -266,7 +266,7 @@ return ret; /* reset the serial interface */ - ret = spi_write(st->sd.spi, (u8 *)&ret, sizeof(ret)); + ret = ad_sd_reset(&st->sd, 32); if (ret < 0) goto out; usleep_range(500, 2000); /* Wait for at least 500us */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/iio/adc/ad_sigma_delta.c +++ linux-raspi2-4.4.0/drivers/iio/adc/ad_sigma_delta.c @@ -177,6 +177,34 @@ } EXPORT_SYMBOL_GPL(ad_sd_read_reg); +/** + * ad_sd_reset() - Reset the serial interface + * + * @sigma_delta: The sigma delta device + * @reset_length: Number of SCLKs with DIN = 1 + * + * Returns 0 on success, an error code otherwise. + **/ +int ad_sd_reset(struct ad_sigma_delta *sigma_delta, + unsigned int reset_length) +{ + uint8_t *buf; + unsigned int size; + int ret; + + size = DIV_ROUND_UP(reset_length, 8); + buf = kcalloc(size, sizeof(*buf), GFP_KERNEL); + if (!buf) + return -ENOMEM; + + memset(buf, 0xff, size); + ret = spi_write(sigma_delta->spi, buf, size); + kfree(buf); + + return ret; +} +EXPORT_SYMBOL_GPL(ad_sd_reset); + static int ad_sd_calibrate(struct ad_sigma_delta *sigma_delta, unsigned int mode, unsigned int channel) { only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/iio/adc/axp288_adc.c +++ linux-raspi2-4.4.0/drivers/iio/adc/axp288_adc.c @@ -28,8 +28,6 @@ #include #define AXP288_ADC_EN_MASK 0xF1 -#define AXP288_ADC_TS_PIN_GPADC 0xF2 -#define AXP288_ADC_TS_PIN_ON 0xF3 enum axp288_adc_id { AXP288_ADC_TS, @@ -123,16 +121,6 @@ return IIO_VAL_INT; } -static int axp288_adc_set_ts(struct regmap *regmap, unsigned int mode, - unsigned long address) -{ - /* channels other than GPADC do not need to switch TS pin */ - if (address != AXP288_GP_ADC_H) - return 0; - - return regmap_write(regmap, AXP288_ADC_TS_PIN_CTRL, mode); -} - static int axp288_adc_read_raw(struct iio_dev *indio_dev, struct iio_chan_spec const *chan, int *val, int *val2, long mask) @@ -143,16 +131,7 @@ mutex_lock(&indio_dev->mlock); switch (mask) { case IIO_CHAN_INFO_RAW: - if (axp288_adc_set_ts(info->regmap, AXP288_ADC_TS_PIN_GPADC, - chan->address)) { - dev_err(&indio_dev->dev, "GPADC mode\n"); - ret = -EINVAL; - break; - } ret = axp288_adc_read_channel(val, chan->address, info->regmap); - if (axp288_adc_set_ts(info->regmap, AXP288_ADC_TS_PIN_ON, - chan->address)) - dev_err(&indio_dev->dev, "TS pin restore\n"); break; default: ret = -EINVAL; @@ -162,15 +141,6 @@ return ret; } -static int axp288_adc_set_state(struct regmap *regmap) -{ - /* ADC should be always enabled for internal FG to function */ - if (regmap_write(regmap, AXP288_ADC_TS_PIN_CTRL, AXP288_ADC_TS_PIN_ON)) - return -EIO; - - return regmap_write(regmap, AXP20X_ADC_EN1, AXP288_ADC_EN_MASK); -} - static const struct iio_info axp288_adc_iio_info = { .read_raw = &axp288_adc_read_raw, .driver_module = THIS_MODULE, @@ -199,7 +169,7 @@ * Set ADC to enabled state at all time, including system suspend. * otherwise internal fuel gauge functionality may be affected. */ - ret = axp288_adc_set_state(axp20x->regmap); + ret = regmap_write(info->regmap, AXP20X_ADC_EN1, AXP288_ADC_EN_MASK); if (ret) { dev_err(&pdev->dev, "unable to enable ADC device\n"); return ret; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/iio/adc/mcp320x.c +++ linux-raspi2-4.4.0/drivers/iio/adc/mcp320x.c @@ -17,6 +17,8 @@ * MCP3204 * MCP3208 * ------------ + * 13 bit converter + * MCP3301 * * Datasheet can be found here: * http://ww1.microchip.com/downloads/en/DeviceDoc/21293C.pdf mcp3001 @@ -96,7 +98,7 @@ } static int mcp320x_adc_conversion(struct mcp320x *adc, u8 channel, - bool differential, int device_index) + bool differential, int device_index, int *val) { int ret; @@ -117,19 +119,25 @@ switch (device_index) { case mcp3001: - return (adc->rx_buf[0] << 5 | adc->rx_buf[1] >> 3); + *val = (adc->rx_buf[0] << 5 | adc->rx_buf[1] >> 3); + return 0; case mcp3002: case mcp3004: case mcp3008: - return (adc->rx_buf[0] << 2 | adc->rx_buf[1] >> 6); + *val = (adc->rx_buf[0] << 2 | adc->rx_buf[1] >> 6); + return 0; case mcp3201: - return (adc->rx_buf[0] << 7 | adc->rx_buf[1] >> 1); + *val = (adc->rx_buf[0] << 7 | adc->rx_buf[1] >> 1); + return 0; case mcp3202: case mcp3204: case mcp3208: - return (adc->rx_buf[0] << 4 | adc->rx_buf[1] >> 4); + *val = (adc->rx_buf[0] << 4 | adc->rx_buf[1] >> 4); + return 0; case mcp3301: - return sign_extend32((adc->rx_buf[0] & 0x1f) << 8 | adc->rx_buf[1], 12); + *val = sign_extend32((adc->rx_buf[0] & 0x1f) << 8 + | adc->rx_buf[1], 12); + return 0; default: return -EINVAL; } @@ -150,12 +158,10 @@ switch (mask) { case IIO_CHAN_INFO_RAW: ret = mcp320x_adc_conversion(adc, channel->address, - channel->differential, device_index); - + channel->differential, device_index, val); if (ret < 0) goto out; - *val = ret; ret = IIO_VAL_INT; break; @@ -304,6 +310,7 @@ indio_dev->name = spi_get_device_id(spi)->name; indio_dev->modes = INDIO_DIRECT_MODE; indio_dev->info = &mcp320x_info; + spi_set_drvdata(spi, indio_dev); chip_info = &mcp320x_chip_infos[spi_get_device_id(spi)->driver_data]; indio_dev->channels = chip_info->channels; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/iio/adc/twl4030-madc.c +++ linux-raspi2-4.4.0/drivers/iio/adc/twl4030-madc.c @@ -866,8 +866,10 @@ /* Enable 3v1 bias regulator for MADC[3:6] */ madc->usb3v1 = devm_regulator_get(madc->dev, "vusb3v1"); - if (IS_ERR(madc->usb3v1)) - return -ENODEV; + if (IS_ERR(madc->usb3v1)) { + ret = -ENODEV; + goto err_i2c; + } ret = regulator_enable(madc->usb3v1); if (ret) @@ -876,11 +878,13 @@ ret = iio_device_register(iio_dev); if (ret) { dev_err(&pdev->dev, "could not register iio device\n"); - goto err_i2c; + goto err_usb3v1; } return 0; +err_usb3v1: + regulator_disable(madc->usb3v1); err_i2c: twl4030_madc_set_current_generator(madc, 0, 0); err_current_generator: only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/iio/adc/vf610_adc.c +++ linux-raspi2-4.4.0/drivers/iio/adc/vf610_adc.c @@ -77,7 +77,7 @@ #define VF610_ADC_ADSTS_MASK 0x300 #define VF610_ADC_ADLPC_EN 0x80 #define VF610_ADC_ADHSC_EN 0x400 -#define VF610_ADC_REFSEL_VALT 0x100 +#define VF610_ADC_REFSEL_VALT 0x800 #define VF610_ADC_REFSEL_VBG 0x1000 #define VF610_ADC_ADTRG_HARD 0x2000 #define VF610_ADC_AVGS_8 0x4000 only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/iio/adc/xilinx-xadc-core.c +++ linux-raspi2-4.4.0/drivers/iio/adc/xilinx-xadc-core.c @@ -1208,7 +1208,7 @@ ret = xadc->ops->setup(pdev, indio_dev, irq); if (ret) - goto err_free_samplerate_trigger; + goto err_clk_disable_unprepare; ret = request_irq(irq, xadc->ops->interrupt_handler, 0, dev_name(&pdev->dev), indio_dev); @@ -1268,6 +1268,8 @@ err_free_irq: free_irq(irq, indio_dev); +err_clk_disable_unprepare: + clk_disable_unprepare(xadc->clk); err_free_samplerate_trigger: if (xadc->ops->flags & XADC_FLAGS_BUFFERED) iio_trigger_free(xadc->samplerate_trigger); @@ -1277,8 +1279,6 @@ err_triggered_buffer_cleanup: if (xadc->ops->flags & XADC_FLAGS_BUFFERED) iio_triggered_buffer_cleanup(indio_dev); -err_clk_disable_unprepare: - clk_disable_unprepare(xadc->clk); err_device_free: kfree(indio_dev->channels); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/iio/imu/adis16480.c +++ linux-raspi2-4.4.0/drivers/iio/imu/adis16480.c @@ -696,7 +696,7 @@ .gyro_max_val = IIO_RAD_TO_DEGREE(22500), .gyro_max_scale = 450, .accel_max_val = IIO_M_S_2_TO_G(12500), - .accel_max_scale = 5, + .accel_max_scale = 10, }, [ADIS16485] = { .channels = adis16485_channels, only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/iio/light/tsl2563.c +++ linux-raspi2-4.4.0/drivers/iio/light/tsl2563.c @@ -626,7 +626,7 @@ struct tsl2563_chip *chip = iio_priv(dev_info); iio_push_event(dev_info, - IIO_UNMOD_EVENT_CODE(IIO_LIGHT, + IIO_UNMOD_EVENT_CODE(IIO_INTENSITY, 0, IIO_EV_TYPE_THRESH, IIO_EV_DIR_EITHER), only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/iio/trigger/iio-trig-interrupt.c +++ linux-raspi2-4.4.0/drivers/iio/trigger/iio-trig-interrupt.c @@ -58,7 +58,7 @@ trig_info = kzalloc(sizeof(*trig_info), GFP_KERNEL); if (!trig_info) { ret = -ENOMEM; - goto error_put_trigger; + goto error_free_trigger; } iio_trigger_set_drvdata(trig, trig_info); trig_info->irq = irq; @@ -83,8 +83,8 @@ free_irq(irq, trig); error_free_trig_info: kfree(trig_info); -error_put_trigger: - iio_trigger_put(trig); +error_free_trigger: + iio_trigger_free(trig); error_ret: return ret; } @@ -99,7 +99,7 @@ iio_trigger_unregister(trig); free_irq(trig_info->irq, trig); kfree(trig_info); - iio_trigger_put(trig); + iio_trigger_free(trig); return 0; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/iio/trigger/iio-trig-sysfs.c +++ linux-raspi2-4.4.0/drivers/iio/trigger/iio-trig-sysfs.c @@ -174,7 +174,7 @@ return 0; out2: - iio_trigger_put(t->trig); + iio_trigger_free(t->trig); free_t: kfree(t); out1: only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/infiniband/core/uverbs_cmd.c +++ linux-raspi2-4.4.0/drivers/infiniband/core/uverbs_cmd.c @@ -2287,6 +2287,11 @@ if (copy_from_user(&cmd, buf, sizeof cmd)) return -EFAULT; + if ((cmd.attr_mask & IB_QP_PORT) && + (cmd.port_num < rdma_start_port(ib_dev) || + cmd.port_num > rdma_end_port(ib_dev))) + return -EINVAL; + INIT_UDATA(&udata, buf + sizeof cmd, NULL, in_len - sizeof cmd, out_len); @@ -2827,6 +2832,10 @@ if (copy_from_user(&cmd, buf, sizeof cmd)) return -EFAULT; + if (cmd.attr.port_num < rdma_start_port(ib_dev) || + cmd.attr.port_num > rdma_end_port(ib_dev)) + return -EINVAL; + uobj = kmalloc(sizeof *uobj, GFP_KERNEL); if (!uobj) return -ENOMEM; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/infiniband/hw/qib/qib_iba7322.c +++ linux-raspi2-4.4.0/drivers/infiniband/hw/qib/qib_iba7322.c @@ -7097,7 +7097,7 @@ unsigned long flags; while (wait) { - unsigned long shadow; + unsigned long shadow = 0; int cstart, previ = -1; /* only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/input/keyboard/mpr121_touchkey.c +++ linux-raspi2-4.4.0/drivers/input/keyboard/mpr121_touchkey.c @@ -87,7 +87,8 @@ struct mpr121_touchkey *mpr121 = dev_id; struct i2c_client *client = mpr121->client; struct input_dev *input = mpr121->input_dev; - unsigned int key_num, key_val, pressed; + unsigned long bit_changed; + unsigned int key_num; int reg; reg = i2c_smbus_read_byte_data(client, ELE_TOUCH_STATUS_1_ADDR); @@ -105,18 +106,22 @@ reg &= TOUCH_STATUS_MASK; /* use old press bit to figure out which bit changed */ - key_num = ffs(reg ^ mpr121->statusbits) - 1; - pressed = reg & (1 << key_num); + bit_changed = reg ^ mpr121->statusbits; mpr121->statusbits = reg; + for_each_set_bit(key_num, &bit_changed, mpr121->keycount) { + unsigned int key_val, pressed; - key_val = mpr121->keycodes[key_num]; + pressed = reg & BIT(key_num); + key_val = mpr121->keycodes[key_num]; - input_event(input, EV_MSC, MSC_SCAN, key_num); - input_report_key(input, key_val, pressed); - input_sync(input); + input_event(input, EV_MSC, MSC_SCAN, key_num); + input_report_key(input, key_val, pressed); + + dev_dbg(&client->dev, "key %d %d %s\n", key_num, key_val, + pressed ? "pressed" : "released"); - dev_dbg(&client->dev, "key %d %d %s\n", key_num, key_val, - pressed ? "pressed" : "released"); + } + input_sync(input); out: return IRQ_HANDLED; @@ -231,6 +236,7 @@ input_dev->id.bustype = BUS_I2C; input_dev->dev.parent = &client->dev; input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_REP); + input_set_capability(input_dev, EV_MSC, MSC_SCAN); input_dev->keycode = mpr121->keycodes; input_dev->keycodesize = sizeof(mpr121->keycodes[0]); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/input/mouse/trackpoint.c +++ linux-raspi2-4.4.0/drivers/input/mouse/trackpoint.c @@ -265,7 +265,8 @@ if (ps2_command(&psmouse->ps2dev, param, MAKE_PS2_CMD(0, 2, TP_READ_ID))) return -1; - if (param[0] != TP_MAGIC_IDENT) + /* add new TP ID. */ + if (!(param[0] & TP_MAGIC_IDENT)) return -1; if (firmware_id) @@ -380,8 +381,8 @@ return 0; if (trackpoint_read(&psmouse->ps2dev, TP_EXT_BTN, &button_info)) { - psmouse_warn(psmouse, "failed to get extended button data\n"); - button_info = 0; + psmouse_warn(psmouse, "failed to get extended button data, assuming 3 buttons\n"); + button_info = 0x33; } psmouse->private = kzalloc(sizeof(struct trackpoint_data), GFP_KERNEL); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/input/mouse/trackpoint.h +++ linux-raspi2-4.4.0/drivers/input/mouse/trackpoint.h @@ -21,8 +21,9 @@ #define TP_COMMAND 0xE2 /* Commands start with this */ #define TP_READ_ID 0xE1 /* Sent for device identification */ -#define TP_MAGIC_IDENT 0x01 /* Sent after a TP_READ_ID followed */ +#define TP_MAGIC_IDENT 0x03 /* Sent after a TP_READ_ID followed */ /* by the firmware ID */ + /* Firmware ID includes 0x1, 0x2, 0x3 */ /* only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/irqchip/irq-crossbar.c +++ linux-raspi2-4.4.0/drivers/irqchip/irq-crossbar.c @@ -198,7 +198,8 @@ static int __init crossbar_of_init(struct device_node *node) { - int i, size, max = 0, reserved = 0, entry; + int i, size, reserved = 0; + u32 max = 0, entry; const __be32 *irqsr; int ret = -ENOMEM; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/irqchip/irq-keystone.c +++ linux-raspi2-4.4.0/drivers/irqchip/irq-keystone.c @@ -19,9 +19,9 @@ #include #include #include +#include #include #include -#include #include #include #include @@ -39,6 +39,7 @@ struct irq_domain *irqd; struct regmap *devctrl_regs; u32 devctrl_offset; + raw_spinlock_t wa_lock; }; static inline u32 keystone_irq_readl(struct keystone_irq_device *kirq) @@ -83,17 +84,15 @@ /* nothing to do here */ } -static void keystone_irq_handler(struct irq_desc *desc) +static irqreturn_t keystone_irq_handler(int irq, void *keystone_irq) { - unsigned int irq = irq_desc_get_irq(desc); - struct keystone_irq_device *kirq = irq_desc_get_handler_data(desc); + struct keystone_irq_device *kirq = keystone_irq; + unsigned long wa_lock_flags; unsigned long pending; int src, virq; dev_dbg(kirq->dev, "start irq %d\n", irq); - chained_irq_enter(irq_desc_get_chip(desc), desc); - pending = keystone_irq_readl(kirq); keystone_irq_writel(kirq, pending); @@ -111,13 +110,15 @@ if (!virq) dev_warn(kirq->dev, "sporious irq detected hwirq %d, virq %d\n", src, virq); + raw_spin_lock_irqsave(&kirq->wa_lock, wa_lock_flags); generic_handle_irq(virq); + raw_spin_unlock_irqrestore(&kirq->wa_lock, + wa_lock_flags); } } - chained_irq_exit(irq_desc_get_chip(desc), desc); - dev_dbg(kirq->dev, "end irq %d\n", irq); + return IRQ_HANDLED; } static int keystone_irq_map(struct irq_domain *h, unsigned int virq, @@ -182,9 +183,16 @@ return -ENODEV; } + raw_spin_lock_init(&kirq->wa_lock); + platform_set_drvdata(pdev, kirq); - irq_set_chained_handler_and_data(kirq->irq, keystone_irq_handler, kirq); + ret = request_irq(kirq->irq, keystone_irq_handler, + 0, dev_name(dev), kirq); + if (ret) { + irq_domain_remove(kirq->irqd); + return ret; + } /* clear all source bits */ keystone_irq_writel(kirq, ~0x0); @@ -199,6 +207,8 @@ struct keystone_irq_device *kirq = platform_get_drvdata(pdev); int hwirq; + free_irq(kirq->irq, kirq); + for (hwirq = 0; hwirq < KEYSTONE_N_IRQ; hwirq++) irq_dispose_mapping(irq_find_mapping(kirq->irqd, hwirq)); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/irqchip/irq-mips-gic.c +++ linux-raspi2-4.4.0/drivers/irqchip/irq-mips-gic.c @@ -915,8 +915,11 @@ gic_len = resource_size(&res); } - if (mips_cm_present()) + if (mips_cm_present()) { write_gcr_gic_base(gic_base | CM_GCR_GIC_BASE_GICEN_MSK); + /* Ensure GIC region is enabled before trying to access it */ + __sync(); + } gic_present = true; __gic_init(gic_base, gic_len, cpu_vec, 0, node); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/isdn/i4l/isdn_common.c +++ linux-raspi2-4.4.0/drivers/isdn/i4l/isdn_common.c @@ -1379,6 +1379,7 @@ if (arg) { if (copy_from_user(bname, argp, sizeof(bname) - 1)) return -EFAULT; + bname[sizeof(bname)-1] = 0; } else return -EINVAL; ret = mutex_lock_interruptible(&dev->mtx); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/isdn/i4l/isdn_net.c +++ linux-raspi2-4.4.0/drivers/isdn/i4l/isdn_net.c @@ -2611,10 +2611,9 @@ char newname[10]; if (p) { - /* Slave-Name MUST not be empty */ - if (!strlen(p + 1)) + /* Slave-Name MUST not be empty or overflow 'newname' */ + if (strscpy(newname, p + 1, sizeof(newname)) <= 0) return NULL; - strcpy(newname, p + 1); *p = 0; /* Master must already exist */ if (!(n = isdn_net_findif(parm))) only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/isdn/i4l/isdn_ppp.c +++ linux-raspi2-4.4.0/drivers/isdn/i4l/isdn_ppp.c @@ -828,7 +828,6 @@ isdn_net_local *lp; struct ippp_struct *is; int proto; - unsigned char protobuf[4]; is = file->private_data; @@ -842,24 +841,28 @@ if (!lp) printk(KERN_DEBUG "isdn_ppp_write: lp == NULL\n"); else { - /* - * Don't reset huptimer for - * LCP packets. (Echo requests). - */ - if (copy_from_user(protobuf, buf, 4)) - return -EFAULT; - proto = PPP_PROTOCOL(protobuf); - if (proto != PPP_LCP) - lp->huptimer = 0; + if (lp->isdn_device < 0 || lp->isdn_channel < 0) { + unsigned char protobuf[4]; + /* + * Don't reset huptimer for + * LCP packets. (Echo requests). + */ + if (copy_from_user(protobuf, buf, 4)) + return -EFAULT; + + proto = PPP_PROTOCOL(protobuf); + if (proto != PPP_LCP) + lp->huptimer = 0; - if (lp->isdn_device < 0 || lp->isdn_channel < 0) return 0; + } if ((dev->drv[lp->isdn_device]->flags & DRV_FLAG_RUNNING) && lp->dialstate == 0 && (lp->flags & ISDN_NET_CONNECTED)) { unsigned short hl; struct sk_buff *skb; + unsigned char *cpy_buf; /* * we need to reserve enough space in front of * sk_buff. old call to dev_alloc_skb only reserved @@ -872,11 +875,21 @@ return count; } skb_reserve(skb, hl); - if (copy_from_user(skb_put(skb, count), buf, count)) + cpy_buf = skb_put(skb, count); + if (copy_from_user(cpy_buf, buf, count)) { kfree_skb(skb); return -EFAULT; } + + /* + * Don't reset huptimer for + * LCP packets. (Echo requests). + */ + proto = PPP_PROTOCOL(cpy_buf); + if (proto != PPP_LCP) + lp->huptimer = 0; + if (is->debug & 0x40) { printk(KERN_DEBUG "ppp xmit: len %d\n", (int) skb->len); isdn_ppp_frame_log("xmit", skb->data, skb->len, 32, is->unit, lp->ppp_slot); @@ -2364,7 +2377,7 @@ id); return NULL; } else { - rs = kzalloc(sizeof(struct ippp_ccp_reset_state), GFP_KERNEL); + rs = kzalloc(sizeof(struct ippp_ccp_reset_state), GFP_ATOMIC); if (!rs) return NULL; rs->state = CCPResetIdle; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/mailbox/mailbox.c +++ linux-raspi2-4.4.0/drivers/mailbox/mailbox.c @@ -104,11 +104,14 @@ /* Submit next message */ msg_submit(chan); + if (!mssg) + return; + /* Notify the client */ - if (mssg && chan->cl->tx_done) + if (chan->cl->tx_done) chan->cl->tx_done(chan->cl, mssg, r); - if (chan->cl->tx_block) + if (r != -ETIME && chan->cl->tx_block) complete(&chan->tx_complete); } @@ -261,7 +264,7 @@ msg_submit(chan); - if (chan->cl->tx_block && chan->active_req) { + if (chan->cl->tx_block) { unsigned long wait; int ret; @@ -272,8 +275,8 @@ ret = wait_for_completion_timeout(&chan->tx_complete, wait); if (ret == 0) { - t = -EIO; - tx_tick(chan, -EIO); + t = -ETIME; + tx_tick(chan, t); } } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/md/bcache/sysfs.c +++ linux-raspi2-4.4.0/drivers/md/bcache/sysfs.c @@ -191,7 +191,7 @@ { struct cached_dev *dc = container_of(kobj, struct cached_dev, disk.kobj); - unsigned v = size; + ssize_t v = size; struct cache_set *c; struct kobj_uevent_env *env; @@ -226,7 +226,7 @@ bch_cached_dev_run(dc); if (attr == &sysfs_cache_mode) { - ssize_t v = bch_read_string_list(buf, bch_cache_modes + 1); + v = bch_read_string_list(buf, bch_cache_modes + 1); if (v < 0) return v; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/md/bcache/util.c +++ linux-raspi2-4.4.0/drivers/md/bcache/util.c @@ -73,24 +73,44 @@ STRTO_H(strtoll, long long) STRTO_H(strtoull, unsigned long long) +/** + * bch_hprint() - formats @v to human readable string for sysfs. + * + * @v - signed 64 bit integer + * @buf - the (at least 8 byte) buffer to format the result into. + * + * Returns the number of bytes used by format. + */ ssize_t bch_hprint(char *buf, int64_t v) { static const char units[] = "?kMGTPEZY"; - char dec[4] = ""; - int u, t = 0; + int u = 0, t; - for (u = 0; v >= 1024 || v <= -1024; u++) { - t = v & ~(~0 << 10); - v >>= 10; - } + uint64_t q; - if (!u) - return sprintf(buf, "%llu", v); - - if (v < 100 && v > -100) - snprintf(dec, sizeof(dec), ".%i", t / 100); - - return sprintf(buf, "%lli%s%c", v, dec, units[u]); + if (v < 0) + q = -v; + else + q = v; + + /* For as long as the number is more than 3 digits, but at least + * once, shift right / divide by 1024. Keep the remainder for + * a digit after the decimal point. + */ + do { + u++; + + t = q & ~(~0 << 10); + q >>= 10; + } while (q >= 1000); + + if (v < 0) + /* '-', up to 3 digits, '.', 1 digit, 1 character, null; + * yields 8 bytes. + */ + return sprintf(buf, "-%llu.%i%c", q, t * 10 / 1024, units[u]); + else + return sprintf(buf, "%llu.%i%c", q, t * 10 / 1024, units[u]); } ssize_t bch_snprint_string_list(char *buf, size_t size, const char * const list[], only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/md/bitmap.c +++ linux-raspi2-4.4.0/drivers/md/bitmap.c @@ -1960,6 +1960,11 @@ long pages; struct bitmap_page *new_bp; + if (bitmap->storage.file && !init) { + pr_info("md: cannot resize file-based bitmap\n"); + return -EINVAL; + } + if (chunksize == 0) { /* If there is enough space, leave the chunk size unchanged, * else increase by factor of two until there is enough space. only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/media/i2c/s5c73m3/s5c73m3-ctrls.c +++ linux-raspi2-4.4.0/drivers/media/i2c/s5c73m3/s5c73m3-ctrls.c @@ -211,7 +211,7 @@ } if ((ctrl->val ^ ctrl->cur.val) & V4L2_LOCK_FOCUS) - ret = s5c73m3_af_run(state, ~af_lock); + ret = s5c73m3_af_run(state, !af_lock); return ret; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/media/pci/bt8xx/dvb-bt8xx.c +++ linux-raspi2-4.4.0/drivers/media/pci/bt8xx/dvb-bt8xx.c @@ -680,6 +680,7 @@ /* DST is not a frontend, attaching the ASIC */ if (dvb_attach(dst_attach, state, &card->dvb_adapter) == NULL) { pr_err("%s: Could not find a Twinhan DST\n", __func__); + kfree(state); break; } /* Attach other DST peripherals if any */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/media/pci/cx88/cx88-cards.c +++ linux-raspi2-4.4.0/drivers/media/pci/cx88/cx88-cards.c @@ -3691,7 +3691,14 @@ core->nr = nr; sprintf(core->name, "cx88[%d]", core->nr); - core->tvnorm = V4L2_STD_NTSC_M; + /* + * Note: Setting initial standard here would cause first call to + * cx88_set_tvnorm() to return without programming any registers. Leave + * it blank for at this point and it will get set later in + * cx8800_initdev() + */ + core->tvnorm = 0; + core->width = 320; core->height = 240; core->field = V4L2_FIELD_INTERLACED; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/media/pci/cx88/cx88-video.c +++ linux-raspi2-4.4.0/drivers/media/pci/cx88/cx88-video.c @@ -1429,7 +1429,7 @@ /* initial device configuration */ mutex_lock(&core->lock); - cx88_set_tvnorm(core, core->tvnorm); + cx88_set_tvnorm(core, V4L2_STD_NTSC_M); v4l2_ctrl_handler_setup(&core->video_hdl); v4l2_ctrl_handler_setup(&core->audio_hdl); cx88_video_mux(core, 0); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/media/pci/saa7134/saa7134-i2c.c +++ linux-raspi2-4.4.0/drivers/media/pci/saa7134/saa7134-i2c.c @@ -355,12 +355,43 @@ /* ----------------------------------------------------------- */ +/* On Medion 7134 reading EEPROM needs DVB-T demod i2c gate open */ +static void saa7134_i2c_eeprom_md7134_gate(struct saa7134_dev *dev) +{ + u8 subaddr = 0x7, dmdregval; + u8 data[2]; + int ret; + struct i2c_msg i2cgatemsg_r[] = { {.addr = 0x08, .flags = 0, + .buf = &subaddr, .len = 1}, + {.addr = 0x08, + .flags = I2C_M_RD, + .buf = &dmdregval, .len = 1} + }; + struct i2c_msg i2cgatemsg_w[] = { {.addr = 0x08, .flags = 0, + .buf = data, .len = 2} }; + + ret = i2c_transfer(&dev->i2c_adap, i2cgatemsg_r, 2); + if ((ret == 2) && (dmdregval & 0x2)) { + pr_debug("%s: DVB-T demod i2c gate was left closed\n", + dev->name); + + data[0] = subaddr; + data[1] = (dmdregval & ~0x2); + if (i2c_transfer(&dev->i2c_adap, i2cgatemsg_w, 1) != 1) + pr_err("%s: EEPROM i2c gate open failure\n", + dev->name); + } +} + static int saa7134_i2c_eeprom(struct saa7134_dev *dev, unsigned char *eedata, int len) { unsigned char buf; int i,err; + if (dev->board == SAA7134_BOARD_MD7134) + saa7134_i2c_eeprom_md7134_gate(dev); + dev->i2c_client.addr = 0xa0 >> 1; buf = 0; if (1 != (err = i2c_master_send(&dev->i2c_client,&buf,1))) { only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/media/pci/saa7164/saa7164-bus.c +++ linux-raspi2-4.4.0/drivers/media/pci/saa7164/saa7164-bus.c @@ -393,11 +393,11 @@ msg_tmp.size = le16_to_cpu((__force __le16)msg_tmp.size); msg_tmp.command = le32_to_cpu((__force __le32)msg_tmp.command); msg_tmp.controlselector = le16_to_cpu((__force __le16)msg_tmp.controlselector); + memcpy(msg, &msg_tmp, sizeof(*msg)); /* No need to update the read positions, because this was a peek */ /* If the caller specifically want to peek, return */ if (peekonly) { - memcpy(msg, &msg_tmp, sizeof(*msg)); goto peekout; } @@ -442,21 +442,15 @@ space_rem = bus->m_dwSizeGetRing - curr_grp; if (space_rem < sizeof(*msg)) { - /* msg wraps around the ring */ - memcpy_fromio(msg, bus->m_pdwGetRing + curr_grp, space_rem); - memcpy_fromio((u8 *)msg + space_rem, bus->m_pdwGetRing, - sizeof(*msg) - space_rem); if (buf) memcpy_fromio(buf, bus->m_pdwGetRing + sizeof(*msg) - space_rem, buf_size); } else if (space_rem == sizeof(*msg)) { - memcpy_fromio(msg, bus->m_pdwGetRing + curr_grp, sizeof(*msg)); if (buf) memcpy_fromio(buf, bus->m_pdwGetRing, buf_size); } else { /* Additional data wraps around the ring */ - memcpy_fromio(msg, bus->m_pdwGetRing + curr_grp, sizeof(*msg)); if (buf) { memcpy_fromio(buf, bus->m_pdwGetRing + curr_grp + sizeof(*msg), space_rem - sizeof(*msg)); @@ -469,15 +463,10 @@ } else { /* No wrapping */ - memcpy_fromio(msg, bus->m_pdwGetRing + curr_grp, sizeof(*msg)); if (buf) memcpy_fromio(buf, bus->m_pdwGetRing + curr_grp + sizeof(*msg), buf_size); } - /* Convert from little endian to CPU */ - msg->size = le16_to_cpu((__force __le16)msg->size); - msg->command = le32_to_cpu((__force __le32)msg->command); - msg->controlselector = le16_to_cpu((__force __le16)msg->controlselector); /* Update the read positions, adjusting the ring */ saa7164_writel(bus->m_dwGetReadPos, new_grp); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/media/pci/ttpci/av7110_hw.c +++ linux-raspi2-4.4.0/drivers/media/pci/ttpci/av7110_hw.c @@ -56,11 +56,11 @@ by Nathan Laredo */ int av7110_debiwrite(struct av7110 *av7110, u32 config, - int addr, u32 val, int count) + int addr, u32 val, unsigned int count) { struct saa7146_dev *dev = av7110->dev; - if (count <= 0 || count > 32764) { + if (count > 32764) { printk("%s: invalid count %d\n", __func__, count); return -1; } @@ -78,12 +78,12 @@ return 0; } -u32 av7110_debiread(struct av7110 *av7110, u32 config, int addr, int count) +u32 av7110_debiread(struct av7110 *av7110, u32 config, int addr, unsigned int count) { struct saa7146_dev *dev = av7110->dev; u32 result = 0; - if (count > 32764 || count <= 0) { + if (count > 32764) { printk("%s: invalid count %d\n", __func__, count); return 0; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/media/pci/ttpci/av7110_hw.h +++ linux-raspi2-4.4.0/drivers/media/pci/ttpci/av7110_hw.h @@ -377,14 +377,14 @@ /* DEBI (saa7146 data extension bus interface) access */ extern int av7110_debiwrite(struct av7110 *av7110, u32 config, - int addr, u32 val, int count); + int addr, u32 val, unsigned int count); extern u32 av7110_debiread(struct av7110 *av7110, u32 config, - int addr, int count); + int addr, unsigned int count); /* DEBI during interrupt */ /* single word writes */ -static inline void iwdebi(struct av7110 *av7110, u32 config, int addr, u32 val, int count) +static inline void iwdebi(struct av7110 *av7110, u32 config, int addr, u32 val, unsigned int count) { av7110_debiwrite(av7110, config, addr, val, count); } @@ -397,7 +397,7 @@ av7110_debiwrite(av7110, config, addr, 0, count); } -static inline u32 irdebi(struct av7110 *av7110, u32 config, int addr, u32 val, int count) +static inline u32 irdebi(struct av7110 *av7110, u32 config, int addr, u32 val, unsigned int count) { u32 res; @@ -408,7 +408,7 @@ } /* DEBI outside interrupts, only for count <= 4! */ -static inline void wdebi(struct av7110 *av7110, u32 config, int addr, u32 val, int count) +static inline void wdebi(struct av7110 *av7110, u32 config, int addr, u32 val, unsigned int count) { unsigned long flags; @@ -417,7 +417,7 @@ spin_unlock_irqrestore(&av7110->debilock, flags); } -static inline u32 rdebi(struct av7110 *av7110, u32 config, int addr, u32 val, int count) +static inline u32 rdebi(struct av7110 *av7110, u32 config, int addr, u32 val, unsigned int count) { unsigned long flags; u32 res; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/media/platform/davinci/vpfe_capture.c +++ linux-raspi2-4.4.0/drivers/media/platform/davinci/vpfe_capture.c @@ -1709,27 +1709,9 @@ switch (cmd) { case VPFE_CMD_S_CCDC_RAW_PARAMS: + ret = -EINVAL; v4l2_warn(&vpfe_dev->v4l2_dev, - "VPFE_CMD_S_CCDC_RAW_PARAMS: experimental ioctl\n"); - if (ccdc_dev->hw_ops.set_params) { - ret = ccdc_dev->hw_ops.set_params(param); - if (ret) { - v4l2_dbg(1, debug, &vpfe_dev->v4l2_dev, - "Error setting parameters in CCDC\n"); - goto unlock_out; - } - ret = vpfe_get_ccdc_image_format(vpfe_dev, - &vpfe_dev->fmt); - if (ret < 0) { - v4l2_dbg(1, debug, &vpfe_dev->v4l2_dev, - "Invalid image format at CCDC\n"); - goto unlock_out; - } - } else { - ret = -EINVAL; - v4l2_dbg(1, debug, &vpfe_dev->v4l2_dev, - "VPFE_CMD_S_CCDC_RAW_PARAMS not supported\n"); - } + "VPFE_CMD_S_CCDC_RAW_PARAMS not supported\n"); break; default: ret = -ENOTTY; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/media/platform/exynos-gsc/gsc-core.c +++ linux-raspi2-4.4.0/drivers/media/platform/exynos-gsc/gsc-core.c @@ -849,9 +849,7 @@ if ((frame->fmt->pixelformat == V4L2_PIX_FMT_VYUY) || (frame->fmt->pixelformat == V4L2_PIX_FMT_YVYU) || - (frame->fmt->pixelformat == V4L2_PIX_FMT_NV61) || (frame->fmt->pixelformat == V4L2_PIX_FMT_YVU420) || - (frame->fmt->pixelformat == V4L2_PIX_FMT_NV21) || (frame->fmt->pixelformat == V4L2_PIX_FMT_YVU420M)) swap(addr->cb, addr->cr); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/media/platform/exynos4-is/fimc-is.c +++ linux-raspi2-4.4.0/drivers/media/platform/exynos4-is/fimc-is.c @@ -815,12 +815,13 @@ is->irq = irq_of_parse_and_map(dev->of_node, 0); if (!is->irq) { dev_err(dev, "no irq found\n"); - return -EINVAL; + ret = -EINVAL; + goto err_iounmap; } ret = fimc_is_get_clocks(is); if (ret < 0) - return ret; + goto err_iounmap; platform_set_drvdata(pdev, is); @@ -880,6 +881,8 @@ free_irq(is->irq, is); err_clk: fimc_is_put_clocks(is); +err_iounmap: + iounmap(is->pmu_regs); return ret; } @@ -935,6 +938,7 @@ fimc_is_unregister_subdevs(is); vb2_dma_contig_cleanup_ctx(is->alloc_ctx); fimc_is_put_clocks(is); + iounmap(is->pmu_regs); fimc_is_debugfs_remove(is); release_firmware(is->fw.f_w); fimc_is_free_cpu_memory(is); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/media/platform/s5p-jpeg/jpeg-core.c +++ linux-raspi2-4.4.0/drivers/media/platform/s5p-jpeg/jpeg-core.c @@ -1098,10 +1098,10 @@ struct s5p_jpeg_ctx *ctx) { int c, components = 0, notfound, n_dht = 0, n_dqt = 0; - unsigned int height, width, word, subsampling = 0, sos = 0, sof = 0, - sof_len = 0; - unsigned int dht[S5P_JPEG_MAX_MARKER], dht_len[S5P_JPEG_MAX_MARKER], - dqt[S5P_JPEG_MAX_MARKER], dqt_len[S5P_JPEG_MAX_MARKER]; + unsigned int height = 0, width = 0, word, subsampling = 0; + unsigned int sos = 0, sof = 0, sof_len = 0; + unsigned int dht[S5P_JPEG_MAX_MARKER], dht_len[S5P_JPEG_MAX_MARKER]; + unsigned int dqt[S5P_JPEG_MAX_MARKER], dqt_len[S5P_JPEG_MAX_MARKER]; long length; struct s5p_jpeg_buffer jpeg_buffer; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/media/rc/imon.c +++ linux-raspi2-4.4.0/drivers/media/rc/imon.c @@ -1629,7 +1629,7 @@ if (kc == KEY_KEYBOARD && !ictx->release_code) { ictx->last_keycode = kc; if (!nomouse) { - ictx->pad_mouse = ~(ictx->pad_mouse) & 0x1; + ictx->pad_mouse = !ictx->pad_mouse; dev_dbg(dev, "toggling to %s mode\n", ictx->pad_mouse ? "mouse" : "keyboard"); spin_unlock_irqrestore(&ictx->kc_lock, flags); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/media/rc/ir-lirc-codec.c +++ linux-raspi2-4.4.0/drivers/media/rc/ir-lirc-codec.c @@ -254,7 +254,7 @@ return 0; case LIRC_GET_REC_RESOLUTION: - val = dev->rx_resolution; + val = dev->rx_resolution / 1000; break; case LIRC_SET_WIDEBAND_RECEIVER: only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/media/usb/uvc/uvc_ctrl.c +++ linux-raspi2-4.4.0/drivers/media/usb/uvc/uvc_ctrl.c @@ -2001,6 +2001,13 @@ goto done; } + /* Validate the user-provided bit-size and offset */ + if (mapping->size > 32 || + mapping->offset + mapping->size > ctrl->info.size * 8) { + ret = -EINVAL; + goto done; + } + list_for_each_entry(map, &ctrl->info.mappings, list) { if (mapping->id == map->id) { uvc_trace(UVC_TRACE_CONTROL, "Can't add mapping '%s', " only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/message/fusion/mptsas.c +++ linux-raspi2-4.4.0/drivers/message/fusion/mptsas.c @@ -4351,11 +4351,10 @@ return; phy_info = mptsas_refreshing_device_handles(ioc, &sas_device); - /* Only For SATA Device ADD */ - if (!phy_info && (sas_device.device_info & - MPI_SAS_DEVICE_INFO_SATA_DEVICE)) { + /* Device hot plug */ + if (!phy_info) { devtprintk(ioc, printk(MYIOC_s_DEBUG_FMT - "%s %d SATA HOT PLUG: " + "%s %d HOT PLUG: " "parent handle of device %x\n", ioc->name, __func__, __LINE__, sas_device.handle_parent)); port_info = mptsas_find_portinfo_by_handle(ioc, only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/mfd/ab8500-sysctrl.c +++ linux-raspi2-4.4.0/drivers/mfd/ab8500-sysctrl.c @@ -99,7 +99,7 @@ u8 bank; if (sysctrl_dev == NULL) - return -EINVAL; + return -EPROBE_DEFER; bank = (reg >> 8); if (!valid_bank(bank)) @@ -115,11 +115,13 @@ u8 bank; if (sysctrl_dev == NULL) - return -EINVAL; + return -EPROBE_DEFER; bank = (reg >> 8); - if (!valid_bank(bank)) + if (!valid_bank(bank)) { + pr_err("invalid bank\n"); return -EINVAL; + } return abx500_mask_and_set_register_interruptible(sysctrl_dev, bank, (u8)(reg & 0xFF), mask, value); @@ -180,9 +182,15 @@ return 0; } +static const struct of_device_id ab8500_sysctrl_match[] = { + { .compatible = "stericsson,ab8500-sysctrl", }, + {} +}; + static struct platform_driver ab8500_sysctrl_driver = { .driver = { .name = "ab8500-sysctrl", + .of_match_table = ab8500_sysctrl_match, }, .probe = ab8500_sysctrl_probe, .remove = ab8500_sysctrl_remove, only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/mfd/axp20x.c +++ linux-raspi2-4.4.0/drivers/mfd/axp20x.c @@ -164,14 +164,14 @@ static struct resource axp288_power_button_resources[] = { { .name = "PEK_DBR", - .start = AXP288_IRQ_POKN, - .end = AXP288_IRQ_POKN, + .start = AXP288_IRQ_POKP, + .end = AXP288_IRQ_POKP, .flags = IORESOURCE_IRQ, }, { .name = "PEK_DBF", - .start = AXP288_IRQ_POKP, - .end = AXP288_IRQ_POKP, + .start = AXP288_IRQ_POKN, + .end = AXP288_IRQ_POKN, .flags = IORESOURCE_IRQ, }, }; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/misc/enclosure.c +++ linux-raspi2-4.4.0/drivers/misc/enclosure.c @@ -148,7 +148,7 @@ for (i = 0; i < components; i++) { edev->component[i].number = -1; edev->component[i].slot = -1; - edev->component[i].power_status = 1; + edev->component[i].power_status = -1; } mutex_lock(&container_list_lock); @@ -375,6 +375,7 @@ struct device *dev) { struct enclosure_component *cdev; + int err; if (!edev || component >= edev->components) return -EINVAL; @@ -384,12 +385,17 @@ if (cdev->dev == dev) return -EEXIST; - if (cdev->dev) + if (cdev->dev) { enclosure_remove_links(cdev); - - put_device(cdev->dev); + put_device(cdev->dev); + } cdev->dev = get_device(dev); - return enclosure_add_links(cdev); + err = enclosure_add_links(cdev); + if (err) { + put_device(cdev->dev); + cdev->dev = NULL; + } + return err; } EXPORT_SYMBOL_GPL(enclosure_add_device); @@ -594,6 +600,11 @@ if (edev->cb->get_power_status) edev->cb->get_power_status(edev, ecomp); + + /* If still uninitialized, the callback failed or does not exist. */ + if (ecomp->power_status == -1) + return (edev->cb->get_power_status) ? -EIO : -ENOTTY; + return snprintf(buf, 40, "%s\n", ecomp->power_status ? "on" : "off"); } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/mmc/host/s3cmci.c +++ linux-raspi2-4.4.0/drivers/mmc/host/s3cmci.c @@ -21,6 +21,7 @@ #include #include #include +#include #include #include only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/net/bonding/bond_3ad.c +++ linux-raspi2-4.4.0/drivers/net/bonding/bond_3ad.c @@ -90,10 +90,14 @@ AD_LINK_SPEED_100MBPS, AD_LINK_SPEED_1000MBPS, AD_LINK_SPEED_2500MBPS, + AD_LINK_SPEED_5000MBPS, AD_LINK_SPEED_10000MBPS, AD_LINK_SPEED_20000MBPS, + AD_LINK_SPEED_25000MBPS, AD_LINK_SPEED_40000MBPS, - AD_LINK_SPEED_56000MBPS + AD_LINK_SPEED_50000MBPS, + AD_LINK_SPEED_56000MBPS, + AD_LINK_SPEED_100000MBPS, }; /* compare MAC addresses */ @@ -254,10 +258,14 @@ * %AD_LINK_SPEED_100MBPS, * %AD_LINK_SPEED_1000MBPS, * %AD_LINK_SPEED_2500MBPS, + * %AD_LINK_SPEED_5000MBPS, * %AD_LINK_SPEED_10000MBPS * %AD_LINK_SPEED_20000MBPS + * %AD_LINK_SPEED_25000MBPS * %AD_LINK_SPEED_40000MBPS + * %AD_LINK_SPEED_50000MBPS * %AD_LINK_SPEED_56000MBPS + * %AD_LINK_SPEED_100000MBPS */ static u16 __get_link_speed(struct port *port) { @@ -289,6 +297,10 @@ speed = AD_LINK_SPEED_2500MBPS; break; + case SPEED_5000: + speed = AD_LINK_SPEED_5000MBPS; + break; + case SPEED_10000: speed = AD_LINK_SPEED_10000MBPS; break; @@ -297,14 +309,26 @@ speed = AD_LINK_SPEED_20000MBPS; break; + case SPEED_25000: + speed = AD_LINK_SPEED_25000MBPS; + break; + case SPEED_40000: speed = AD_LINK_SPEED_40000MBPS; break; + case SPEED_50000: + speed = AD_LINK_SPEED_50000MBPS; + break; + case SPEED_56000: speed = AD_LINK_SPEED_56000MBPS; break; + case SPEED_100000: + speed = AD_LINK_SPEED_100000MBPS; + break; + default: /* unknown speed value from ethtool. shouldn't happen */ speed = 0; @@ -643,6 +667,20 @@ } } +static int __agg_active_ports(struct aggregator *agg) +{ + struct port *port; + int active = 0; + + for (port = agg->lag_ports; port; + port = port->next_port_in_aggregator) { + if (port->is_enabled) + active++; + } + + return active; +} + /** * __get_agg_bandwidth - get the total bandwidth of an aggregator * @aggregator: the aggregator we're looking at @@ -650,36 +688,49 @@ */ static u32 __get_agg_bandwidth(struct aggregator *aggregator) { + int nports = __agg_active_ports(aggregator); u32 bandwidth = 0; - if (aggregator->num_of_ports) { + if (nports) { switch (__get_link_speed(aggregator->lag_ports)) { case AD_LINK_SPEED_1MBPS: - bandwidth = aggregator->num_of_ports; + bandwidth = nports; break; case AD_LINK_SPEED_10MBPS: - bandwidth = aggregator->num_of_ports * 10; + bandwidth = nports * 10; break; case AD_LINK_SPEED_100MBPS: - bandwidth = aggregator->num_of_ports * 100; + bandwidth = nports * 100; break; case AD_LINK_SPEED_1000MBPS: - bandwidth = aggregator->num_of_ports * 1000; + bandwidth = nports * 1000; break; case AD_LINK_SPEED_2500MBPS: - bandwidth = aggregator->num_of_ports * 2500; + bandwidth = nports * 2500; + break; + case AD_LINK_SPEED_5000MBPS: + bandwidth = nports * 5000; break; case AD_LINK_SPEED_10000MBPS: - bandwidth = aggregator->num_of_ports * 10000; + bandwidth = nports * 10000; break; case AD_LINK_SPEED_20000MBPS: - bandwidth = aggregator->num_of_ports * 20000; + bandwidth = nports * 20000; + break; + case AD_LINK_SPEED_25000MBPS: + bandwidth = nports * 25000; break; case AD_LINK_SPEED_40000MBPS: - bandwidth = aggregator->num_of_ports * 40000; + bandwidth = nports * 40000; + break; + case AD_LINK_SPEED_50000MBPS: + bandwidth = nports * 50000; break; case AD_LINK_SPEED_56000MBPS: - bandwidth = aggregator->num_of_ports * 56000; + bandwidth = nports * 56000; + break; + case AD_LINK_SPEED_100000MBPS: + bandwidth = nports * 100000; break; default: bandwidth = 0; /* to silence the compiler */ @@ -1513,10 +1564,10 @@ switch (__get_agg_selection_mode(curr->lag_ports)) { case BOND_AD_COUNT: - if (curr->num_of_ports > best->num_of_ports) + if (__agg_active_ports(curr) > __agg_active_ports(best)) return curr; - if (curr->num_of_ports < best->num_of_ports) + if (__agg_active_ports(curr) < __agg_active_ports(best)) return best; /*FALLTHROUGH*/ @@ -1544,8 +1595,14 @@ if (!port) return 0; - return netif_running(port->slave->dev) && - netif_carrier_ok(port->slave->dev); + for (port = agg->lag_ports; port; + port = port->next_port_in_aggregator) { + if (netif_running(port->slave->dev) && + netif_carrier_ok(port->slave->dev)) + return 1; + } + + return 0; } /** @@ -1593,7 +1650,7 @@ agg->is_active = 0; - if (agg->num_of_ports && agg_device_up(agg)) + if (__agg_active_ports(agg) && agg_device_up(agg)) best = ad_agg_selection_test(best, agg); } @@ -1605,7 +1662,7 @@ * answering partner. */ if (active && active->lag_ports && - active->lag_ports->is_enabled && + __agg_active_ports(active) && (__agg_has_partner(active) || (!__agg_has_partner(active) && !__agg_has_partner(best)))) { @@ -2118,7 +2175,7 @@ else temp_aggregator->lag_ports = temp_port->next_port_in_aggregator; temp_aggregator->num_of_ports--; - if (temp_aggregator->num_of_ports == 0) { + if (__agg_active_ports(temp_aggregator) == 0) { select_new_active_agg = temp_aggregator->is_active; ad_clear_agg(temp_aggregator); if (select_new_active_agg) { @@ -2385,7 +2442,9 @@ */ void bond_3ad_handle_link_change(struct slave *slave, char link) { + struct aggregator *agg; struct port *port; + bool dummy; port = &(SLAVE_AD_INFO(slave)->port); @@ -2412,6 +2471,9 @@ port->is_enabled = false; ad_update_actor_keys(port, true); } + agg = __get_first_agg(port); + ad_agg_selection_logic(agg, &dummy); + netdev_dbg(slave->bond->dev, "Port %d changed link status to %s\n", port->actor_port_number, link == BOND_LINK_UP ? "UP" : "DOWN"); @@ -2452,7 +2514,7 @@ active = __get_active_agg(&(SLAVE_AD_INFO(first_slave)->aggregator)); if (active) { /* are enough slaves available to consider link up? */ - if (active->num_of_ports < bond->params.min_links) { + if (__agg_active_ports(active) < bond->params.min_links) { if (netif_carrier_ok(bond->dev)) { netif_carrier_off(bond->dev); goto out; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/net/can/c_can/c_can_platform.c +++ linux-raspi2-4.4.0/drivers/net/can/c_can/c_can_platform.c @@ -320,7 +320,6 @@ break; case BOSCH_D_CAN: priv->regs = reg_map_d_can; - priv->can.ctrlmode_supported |= CAN_CTRLMODE_3_SAMPLES; priv->read_reg = c_can_plat_read_reg_aligned_to_16bit; priv->write_reg = c_can_plat_write_reg_aligned_to_16bit; priv->read_reg32 = d_can_plat_read_reg32; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/net/can/sun4i_can.c +++ linux-raspi2-4.4.0/drivers/net/can/sun4i_can.c @@ -342,7 +342,7 @@ /* enter the selected mode */ mod_reg_val = readl(priv->base + SUN4I_REG_MSEL_ADDR); - if (priv->can.ctrlmode & CAN_CTRLMODE_PRESUME_ACK) + if (priv->can.ctrlmode & CAN_CTRLMODE_LOOPBACK) mod_reg_val |= SUN4I_MSEL_LOOPBACK_MODE; else if (priv->can.ctrlmode & CAN_CTRLMODE_LISTENONLY) mod_reg_val |= SUN4I_MSEL_LISTEN_ONLY_MODE; @@ -539,6 +539,13 @@ } stats->rx_over_errors++; stats->rx_errors++; + + /* reset the CAN IP by entering reset mode + * ignoring timeout error + */ + set_reset_mode(dev); + set_normal_mode(dev); + /* clear bit */ sun4i_can_write_cmdreg(priv, SUN4I_CMD_CLEAR_OR_FLAG); } @@ -653,8 +660,9 @@ netif_wake_queue(dev); can_led_event(dev, CAN_LED_EVENT_TX); } - if (isrc & SUN4I_INT_RBUF_VLD) { - /* receive interrupt */ + if ((isrc & SUN4I_INT_RBUF_VLD) && + !(isrc & SUN4I_INT_DATA_OR)) { + /* receive interrupt - don't read if overrun occurred */ while (status & SUN4I_STA_RBUF_RDY) { /* RX buffer is not empty */ sun4i_can_rx(dev); @@ -811,7 +819,6 @@ priv->can.ctrlmode_supported = CAN_CTRLMODE_BERR_REPORTING | CAN_CTRLMODE_LISTENONLY | CAN_CTRLMODE_LOOPBACK | - CAN_CTRLMODE_PRESUME_ACK | CAN_CTRLMODE_3_SAMPLES; priv->base = addr; priv->clk = clk; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/net/can/usb/esd_usb2.c +++ linux-raspi2-4.4.0/drivers/net/can/usb/esd_usb2.c @@ -333,7 +333,7 @@ } cf->can_id = id & ESD_IDMASK; - cf->can_dlc = get_can_dlc(msg->msg.rx.dlc); + cf->can_dlc = get_can_dlc(msg->msg.rx.dlc & ~ESD_RTR); if (id & ESD_EXTID) cf->can_id |= CAN_EFF_FLAG; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/net/can/usb/kvaser_usb.c +++ linux-raspi2-4.4.0/drivers/net/can/usb/kvaser_usb.c @@ -134,6 +134,7 @@ #define CMD_RESET_ERROR_COUNTER 49 #define CMD_TX_ACKNOWLEDGE 50 #define CMD_CAN_ERROR_EVENT 51 +#define CMD_FLUSH_QUEUE_REPLY 68 #define CMD_LEAF_USB_THROTTLE 77 #define CMD_LEAF_LOG_MESSAGE 106 @@ -1297,6 +1298,11 @@ goto warn; break; + case CMD_FLUSH_QUEUE_REPLY: + if (dev->family != KVASER_LEAF) + goto warn; + break; + default: warn: dev_warn(dev->udev->dev.parent, "Unhandled message (%d)\n", msg->id); @@ -1607,7 +1613,8 @@ if (err) netdev_warn(netdev, "Cannot flush queue, error %d\n", err); - if (kvaser_usb_send_simple_msg(dev, CMD_RESET_CHIP, priv->channel)) + err = kvaser_usb_send_simple_msg(dev, CMD_RESET_CHIP, priv->channel); + if (err) netdev_warn(netdev, "Cannot reset card, error %d\n", err); err = kvaser_usb_stop_chip(priv); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/net/ethernet/aurora/nb8800.c +++ linux-raspi2-4.4.0/drivers/net/ethernet/aurora/nb8800.c @@ -608,7 +608,7 @@ mac_mode |= HALF_DUPLEX; if (gigabit) { - if (priv->phy_mode == PHY_INTERFACE_MODE_RGMII) + if (phy_interface_is_rgmii(dev->phydev)) mac_mode |= RGMII_MODE; mac_mode |= GMAC_MODE; @@ -1295,11 +1295,10 @@ break; case PHY_INTERFACE_MODE_RGMII: - pad_mode = PAD_MODE_RGMII; - break; - + case PHY_INTERFACE_MODE_RGMII_ID: + case PHY_INTERFACE_MODE_RGMII_RXID: case PHY_INTERFACE_MODE_RGMII_TXID: - pad_mode = PAD_MODE_RGMII | PAD_MODE_GTX_CLK_DELAY; + pad_mode = PAD_MODE_RGMII; break; default: only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/net/ethernet/ibm/emac/mal.c +++ linux-raspi2-4.4.0/drivers/net/ethernet/ibm/emac/mal.c @@ -402,7 +402,7 @@ unsigned long flags; MAL_DBG2(mal, "poll(%d)" NL, budget); - again: + /* Process TX skbs */ list_for_each(l, &mal->poll_list) { struct mal_commac *mc = @@ -451,7 +451,6 @@ spin_lock_irqsave(&mal->lock, flags); mal_disable_eob_irq(mal); spin_unlock_irqrestore(&mal->lock, flags); - goto again; } mc->ops->poll_tx(mc->dev); } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/net/ethernet/mellanox/mlx4/icm.c +++ linux-raspi2-4.4.0/drivers/net/ethernet/mellanox/mlx4/icm.c @@ -118,8 +118,13 @@ if (!buf) return -ENOMEM; + if (offset_in_page(buf)) { + dma_free_coherent(dev, PAGE_SIZE << order, + buf, sg_dma_address(mem)); + return -ENOMEM; + } + sg_set_buf(mem, buf, PAGE_SIZE << order); - BUG_ON(mem->offset); sg_dma_len(mem) = PAGE_SIZE << order; return 0; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/net/ethernet/mellanox/mlx4/mlx4_en.h +++ linux-raspi2-4.4.0/drivers/net/ethernet/mellanox/mlx4/mlx4_en.h @@ -409,7 +409,6 @@ struct cyclecounter cycles; struct timecounter clock; unsigned long last_overflow_check; - unsigned long overflow_period; struct ptp_clock *ptp_clock; struct ptp_clock_info ptp_clock_info; struct notifier_block nb; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/net/ethernet/qlogic/qlge/qlge_dbg.c +++ linux-raspi2-4.4.0/drivers/net/ethernet/qlogic/qlge/qlge_dbg.c @@ -724,7 +724,7 @@ seg_hdr->cookie = MPI_COREDUMP_COOKIE; seg_hdr->segNum = seg_number; seg_hdr->segSize = seg_size; - memcpy(seg_hdr->description, desc, (sizeof(seg_hdr->description)) - 1); + strncpy(seg_hdr->description, desc, (sizeof(seg_hdr->description)) - 1); } /* only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/net/ethernet/realtek/r8169.c +++ linux-raspi2-4.4.0/drivers/net/ethernet/realtek/r8169.c @@ -326,6 +326,7 @@ static const struct pci_device_id rtl8169_pci_tbl[] = { { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8129), 0, 0, RTL_CFG_0 }, { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8136), 0, 0, RTL_CFG_2 }, + { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8161), 0, 0, RTL_CFG_1 }, { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8167), 0, 0, RTL_CFG_0 }, { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8168), 0, 0, RTL_CFG_1 }, { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8169), 0, 0, RTL_CFG_0 }, only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/net/ethernet/renesas/sh_eth.h +++ linux-raspi2-4.4.0/drivers/net/ethernet/renesas/sh_eth.h @@ -339,7 +339,7 @@ ECMR_DPAD = 0x00200000, ECMR_RZPF = 0x00100000, ECMR_ZPF = 0x00080000, ECMR_PFR = 0x00040000, ECMR_RXF = 0x00020000, ECMR_TXF = 0x00010000, ECMR_MCT = 0x00002000, ECMR_PRCEF = 0x00001000, - ECMR_PMDE = 0x00000200, ECMR_RE = 0x00000040, ECMR_TE = 0x00000020, + ECMR_MPDE = 0x00000200, ECMR_RE = 0x00000040, ECMR_TE = 0x00000020, ECMR_RTM = 0x00000010, ECMR_ILB = 0x00000008, ECMR_ELB = 0x00000004, ECMR_DM = 0x00000002, ECMR_PRM = 0x00000001, }; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/net/irda/mcs7780.c +++ linux-raspi2-4.4.0/drivers/net/irda/mcs7780.c @@ -141,9 +141,19 @@ static int mcs_get_reg(struct mcs_cb *mcs, __u16 reg, __u16 * val) { struct usb_device *dev = mcs->usbdev; - int ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), MCS_RDREQ, - MCS_RD_RTYPE, 0, reg, val, 2, - msecs_to_jiffies(MCS_CTRL_TIMEOUT)); + void *dmabuf; + int ret; + + dmabuf = kmalloc(sizeof(__u16), GFP_KERNEL); + if (!dmabuf) + return -ENOMEM; + + ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), MCS_RDREQ, + MCS_RD_RTYPE, 0, reg, dmabuf, 2, + msecs_to_jiffies(MCS_CTRL_TIMEOUT)); + + memcpy(val, dmabuf, sizeof(__u16)); + kfree(dmabuf); return ret; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/net/phy/dp83867.c +++ linux-raspi2-4.4.0/drivers/net/phy/dp83867.c @@ -29,6 +29,7 @@ #define MII_DP83867_MICR 0x12 #define MII_DP83867_ISR 0x13 #define DP83867_CTRL 0x1f +#define DP83867_CFG3 0x1e /* Extended Registers */ #define DP83867_RGMIICTL 0x0032 @@ -89,6 +90,8 @@ micr_status |= (MII_DP83867_MICR_AN_ERR_INT_EN | MII_DP83867_MICR_SPEED_CHNG_INT_EN | + MII_DP83867_MICR_AUTONEG_COMP_INT_EN | + MII_DP83867_MICR_LINK_STS_CHNG_INT_EN | MII_DP83867_MICR_DUP_MODE_CHNG_INT_EN | MII_DP83867_MICR_SLEEP_MODE_CHNG_INT_EN); @@ -184,6 +187,13 @@ DP83867_DEVADDR, phydev->addr, delay); } + /* Enable Interrupt output INT_OE in CFG3 register */ + if (phy_interrupt_is_valid(phydev)) { + val = phy_read(phydev, DP83867_CFG3); + val |= BIT(7); + phy_write(phydev, DP83867_CFG3, val); + } + return 0; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/net/phy/micrel.c +++ linux-raspi2-4.4.0/drivers/net/phy/micrel.c @@ -539,6 +539,8 @@ if ((regval & 0xFF) == 0xFF) { phy_init_hw(phydev); phydev->link = 0; + if (phydev->drv->config_intr && phy_interrupt_is_valid(phydev)) + phydev->drv->config_intr(phydev); } return 0; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/net/phy/phy_device.c +++ linux-raspi2-4.4.0/drivers/net/phy/phy_device.c @@ -1368,6 +1368,8 @@ { struct phy_device *phydev = to_phy_device(dev); + cancel_delayed_work_sync(&phydev->state_queue); + mutex_lock(&phydev->lock); phydev->state = PHY_DOWN; mutex_unlock(&phydev->lock); @@ -1442,7 +1444,7 @@ .phy_id = 0xffffffff, .phy_id_mask = 0xffffffff, .name = "Generic PHY", - .soft_reset = genphy_soft_reset, + .soft_reset = genphy_no_soft_reset, .config_init = genphy_config_init, .features = PHY_GBIT_FEATURES | SUPPORTED_MII | SUPPORTED_AUI | SUPPORTED_FIBRE | only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/net/usb/Kconfig +++ linux-raspi2-4.4.0/drivers/net/usb/Kconfig @@ -364,7 +364,7 @@ optionally with LEDs that indicate traffic config USB_NET_PLUSB - tristate "Prolific PL-2301/2302/25A1 based cables" + tristate "Prolific PL-2301/2302/25A1/27A1 based cables" # if the handshake/init/reset problems, from original 'plusb', # are ever resolved ... then remove "experimental" depends on USB_USBNET only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/net/usb/huawei_cdc_ncm.c +++ linux-raspi2-4.4.0/drivers/net/usb/huawei_cdc_ncm.c @@ -80,6 +80,12 @@ * be at the end of the frame. */ drvflags |= CDC_NCM_FLAG_NDP_TO_END; + + /* Additionally, it has been reported that some Huawei E3372H devices, with + * firmware version 21.318.01.00.541, come out of reset in NTB32 format mode, hence + * needing to be set to the NTB16 one again. + */ + drvflags |= CDC_NCM_FLAG_RESET_NTB16; ret = cdc_ncm_bind_common(usbnet_dev, intf, 1, drvflags); if (ret) goto err; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/net/usb/kaweth.c +++ linux-raspi2-4.4.0/drivers/net/usb/kaweth.c @@ -1009,6 +1009,7 @@ struct net_device *netdev; const eth_addr_t bcast_addr = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF }; int result = 0; + int rv = -EIO; dev_dbg(dev, "Kawasaki Device Probe (Device number:%d): 0x%4.4x:0x%4.4x:0x%4.4x\n", @@ -1029,6 +1030,7 @@ kaweth = netdev_priv(netdev); kaweth->dev = udev; kaweth->net = netdev; + kaweth->intf = intf; spin_lock_init(&kaweth->device_lock); init_waitqueue_head(&kaweth->term_wait); @@ -1048,6 +1050,10 @@ /* Download the firmware */ dev_info(dev, "Downloading firmware...\n"); kaweth->firmware_buf = (__u8 *)__get_free_page(GFP_KERNEL); + if (!kaweth->firmware_buf) { + rv = -ENOMEM; + goto err_free_netdev; + } if ((result = kaweth_download_firmware(kaweth, "kaweth/new_code.bin", 100, @@ -1139,8 +1145,6 @@ dev_dbg(dev, "Initializing net device.\n"); - kaweth->intf = intf; - kaweth->tx_urb = usb_alloc_urb(0, GFP_KERNEL); if (!kaweth->tx_urb) goto err_free_netdev; @@ -1204,7 +1208,7 @@ err_free_netdev: free_netdev(netdev); - return -EIO; + return rv; } /**************************************************************** only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/net/usb/plusb.c +++ linux-raspi2-4.4.0/drivers/net/usb/plusb.c @@ -102,7 +102,7 @@ } static const struct driver_info prolific_info = { - .description = "Prolific PL-2301/PL-2302/PL-25A1", + .description = "Prolific PL-2301/PL-2302/PL-25A1/PL-27A1", .flags = FLAG_POINTTOPOINT | FLAG_NO_SETINT, /* some PL-2302 versions seem to fail usb_set_interface() */ .reset = pl_reset, @@ -139,6 +139,17 @@ * Host-to-Host Cable */ .driver_info = (unsigned long) &prolific_info, + +}, + +/* super speed cables */ +{ + USB_DEVICE(0x067b, 0x27a1), /* PL-27A1, no eeprom + * also: goobay Active USB 3.0 + * Data Link, + * Unitek Y-3501 + */ + .driver_info = (unsigned long) &prolific_info, }, { }, // END @@ -158,5 +169,5 @@ module_usb_driver(plusb_driver); MODULE_AUTHOR("David Brownell"); -MODULE_DESCRIPTION("Prolific PL-2301/2302/25A1 USB Host to Host Link Driver"); +MODULE_DESCRIPTION("Prolific PL-2301/2302/25A1/27A1 USB Host to Host Link Driver"); MODULE_LICENSE("GPL"); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/net/wireless/ath/ath10k/htt_rx.c +++ linux-raspi2-4.4.0/drivers/net/wireless/ath/ath10k/htt_rx.c @@ -875,6 +875,19 @@ struct ieee80211_rx_status *status, struct htt_rx_desc *rxd) { + int i; + + for (i = 0; i < IEEE80211_MAX_CHAINS ; i++) { + status->chains &= ~BIT(i); + + if (rxd->ppdu_start.rssi_chains[i].pri20_mhz != 0x80) { + status->chain_signal[i] = ATH10K_DEFAULT_NOISE_FLOOR + + rxd->ppdu_start.rssi_chains[i].pri20_mhz; + + status->chains |= BIT(i); + } + } + /* FIXME: Get real NF */ status->signal = ATH10K_DEFAULT_NOISE_FLOOR + rxd->ppdu_start.rssi_comb; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/net/wireless/ath/ath10k/pci.c +++ linux-raspi2-4.4.0/drivers/net/wireless/ath/ath10k/pci.c @@ -3050,7 +3050,7 @@ goto err_core_destroy; } - if (QCA_REV_6174(ar)) + if (QCA_REV_6174(ar) || QCA_REV_9377(ar)) ath10k_pci_override_ce_config(ar); ret = ath10k_pci_alloc_pipes(ar); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/net/wireless/ath/ath10k/wmi-ops.h +++ linux-raspi2-4.4.0/drivers/net/wireless/ath/ath10k/wmi-ops.h @@ -639,6 +639,9 @@ struct sk_buff *skb; u32 cmd_id; + if (!ar->wmi.ops->gen_vdev_spectral_conf) + return -EOPNOTSUPP; + skb = ar->wmi.ops->gen_vdev_spectral_conf(ar, arg); if (IS_ERR(skb)) return PTR_ERR(skb); @@ -654,6 +657,9 @@ struct sk_buff *skb; u32 cmd_id; + if (!ar->wmi.ops->gen_vdev_spectral_enable) + return -EOPNOTSUPP; + skb = ar->wmi.ops->gen_vdev_spectral_enable(ar, vdev_id, trigger, enable); if (IS_ERR(skb)) only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/net/wireless/ath/ath9k/ar9003_phy.c +++ linux-raspi2-4.4.0/drivers/net/wireless/ath/ath9k/ar9003_phy.c @@ -1815,8 +1815,6 @@ static void ar9003_hw_tx99_start(struct ath_hw *ah, u32 qnum) { REG_SET_BIT(ah, AR_PHY_TEST, PHY_AGC_CLR); - REG_SET_BIT(ah, 0x9864, 0x7f000); - REG_SET_BIT(ah, 0x9924, 0x7f00fe); REG_CLR_BIT(ah, AR_DIAG_SW, AR_DIAG_RX_DIS); REG_WRITE(ah, AR_CR, AR_CR_RXD); REG_WRITE(ah, AR_DLCL_IFS(qnum), 0); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/net/wireless/ath/ath9k/tx99.c +++ linux-raspi2-4.4.0/drivers/net/wireless/ath/ath9k/tx99.c @@ -190,22 +190,27 @@ if (strtobool(buf, &start)) return -EINVAL; + mutex_lock(&sc->mutex); + if (start == sc->tx99_state) { if (!start) - return count; + goto out; ath_dbg(common, XMIT, "Resetting TX99\n"); ath9k_tx99_deinit(sc); } if (!start) { ath9k_tx99_deinit(sc); - return count; + goto out; } r = ath9k_tx99_init(sc); - if (r) + if (r) { + mutex_unlock(&sc->mutex); return r; - + } +out: + mutex_unlock(&sc->mutex); return count; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/net/wireless/ath/wil6210/main.c +++ linux-raspi2-4.4.0/drivers/net/wireless/ath/wil6210/main.c @@ -330,18 +330,19 @@ wil->last_fw_recovery = jiffies; + wil_info(wil, "fw error recovery requested (try %d)...\n", + wil->recovery_count); + if (!no_fw_recovery) + wil->recovery_state = fw_recovery_running; + if (wil_wait_for_recovery(wil) != 0) + return; + mutex_lock(&wil->mutex); switch (wdev->iftype) { case NL80211_IFTYPE_STATION: case NL80211_IFTYPE_P2P_CLIENT: case NL80211_IFTYPE_MONITOR: - wil_info(wil, "fw error recovery requested (try %d)...\n", - wil->recovery_count); - if (!no_fw_recovery) - wil->recovery_state = fw_recovery_running; - if (0 != wil_wait_for_recovery(wil)) - break; - + /* silent recovery, upper layers will see disconnect */ __wil_down(wil); __wil_up(wil); break; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/net/wireless/brcm80211/brcmfmac/fwil_types.h +++ linux-raspi2-4.4.0/drivers/net/wireless/brcm80211/brcmfmac/fwil_types.h @@ -45,6 +45,11 @@ #define BRCMF_SCAN_PARAMS_COUNT_MASK 0x0000ffff #define BRCMF_SCAN_PARAMS_NSSID_SHIFT 16 +/* scan type definitions */ +#define BRCMF_SCANTYPE_DEFAULT 0xFF +#define BRCMF_SCANTYPE_ACTIVE 0 +#define BRCMF_SCANTYPE_PASSIVE 1 + /* primary (ie tx) key */ #define BRCMF_PRIMARY_KEY (1 << 1) #define DOT11_BSSTYPE_ANY 2 only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/net/wireless/brcm80211/brcmsmac/phy/phy_n.c +++ linux-raspi2-4.4.0/drivers/net/wireless/brcm80211/brcmsmac/phy/phy_n.c @@ -14764,8 +14764,8 @@ } static void -wlc_phy_set_rfseq_nphy(struct brcms_phy *pi, u8 cmd, u8 *events, u8 *dlys, - u8 len) +wlc_phy_set_rfseq_nphy(struct brcms_phy *pi, u8 cmd, const u8 *events, + const u8 *dlys, u8 len) { u32 t1_offset, t2_offset; u8 ctr; @@ -15240,16 +15240,16 @@ static void wlc_phy_workarounds_nphy_gainctrl_2057_rev6(struct brcms_phy *pi) { u16 currband; - s8 lna1G_gain_db_rev7[] = { 9, 14, 19, 24 }; - s8 *lna1_gain_db = NULL; - s8 *lna1_gain_db_2 = NULL; - s8 *lna2_gain_db = NULL; - s8 tiaA_gain_db_rev7[] = { -9, -6, -3, 0, 3, 3, 3, 3, 3, 3 }; - s8 *tia_gain_db; - s8 tiaA_gainbits_rev7[] = { 0, 1, 2, 3, 4, 4, 4, 4, 4, 4 }; - s8 *tia_gainbits; - u16 rfseqA_init_gain_rev7[] = { 0x624f, 0x624f }; - u16 *rfseq_init_gain; + static const s8 lna1G_gain_db_rev7[] = { 9, 14, 19, 24 }; + const s8 *lna1_gain_db = NULL; + const s8 *lna1_gain_db_2 = NULL; + const s8 *lna2_gain_db = NULL; + static const s8 tiaA_gain_db_rev7[] = { -9, -6, -3, 0, 3, 3, 3, 3, 3, 3 }; + const s8 *tia_gain_db; + static const s8 tiaA_gainbits_rev7[] = { 0, 1, 2, 3, 4, 4, 4, 4, 4, 4 }; + const s8 *tia_gainbits; + static const u16 rfseqA_init_gain_rev7[] = { 0x624f, 0x624f }; + const u16 *rfseq_init_gain; u16 init_gaincode; u16 clip1hi_gaincode; u16 clip1md_gaincode = 0; @@ -15310,10 +15310,9 @@ if ((freq <= 5080) || (freq == 5825)) { - s8 lna1A_gain_db_rev7[] = { 11, 16, 20, 24 }; - s8 lna1A_gain_db_2_rev7[] = { - 11, 17, 22, 25}; - s8 lna2A_gain_db_rev7[] = { -1, 6, 10, 14 }; + static const s8 lna1A_gain_db_rev7[] = { 11, 16, 20, 24 }; + static const s8 lna1A_gain_db_2_rev7[] = { 11, 17, 22, 25}; + static const s8 lna2A_gain_db_rev7[] = { -1, 6, 10, 14 }; crsminu_th = 0x3e; lna1_gain_db = lna1A_gain_db_rev7; @@ -15321,10 +15320,9 @@ lna2_gain_db = lna2A_gain_db_rev7; } else if ((freq >= 5500) && (freq <= 5700)) { - s8 lna1A_gain_db_rev7[] = { 11, 17, 21, 25 }; - s8 lna1A_gain_db_2_rev7[] = { - 12, 18, 22, 26}; - s8 lna2A_gain_db_rev7[] = { 1, 8, 12, 16 }; + static const s8 lna1A_gain_db_rev7[] = { 11, 17, 21, 25 }; + static const s8 lna1A_gain_db_2_rev7[] = { 12, 18, 22, 26}; + static const s8 lna2A_gain_db_rev7[] = { 1, 8, 12, 16 }; crsminu_th = 0x45; clip1md_gaincode_B = 0x14; @@ -15335,10 +15333,9 @@ lna2_gain_db = lna2A_gain_db_rev7; } else { - s8 lna1A_gain_db_rev7[] = { 12, 18, 22, 26 }; - s8 lna1A_gain_db_2_rev7[] = { - 12, 18, 22, 26}; - s8 lna2A_gain_db_rev7[] = { -1, 6, 10, 14 }; + static const s8 lna1A_gain_db_rev7[] = { 12, 18, 22, 26 }; + static const s8 lna1A_gain_db_2_rev7[] = { 12, 18, 22, 26}; + static const s8 lna2A_gain_db_rev7[] = { -1, 6, 10, 14 }; crsminu_th = 0x41; lna1_gain_db = lna1A_gain_db_rev7; @@ -15450,65 +15447,65 @@ NPHY_RFSEQ_CMD_CLR_HIQ_DIS, NPHY_RFSEQ_CMD_SET_HPF_BW }; - u8 rfseq_updategainu_dlys[] = { 10, 30, 1 }; - s8 lna1G_gain_db[] = { 7, 11, 16, 23 }; - s8 lna1G_gain_db_rev4[] = { 8, 12, 17, 25 }; - s8 lna1G_gain_db_rev5[] = { 9, 13, 18, 26 }; - s8 lna1G_gain_db_rev6[] = { 8, 13, 18, 25 }; - s8 lna1G_gain_db_rev6_224B0[] = { 10, 14, 19, 27 }; - s8 lna1A_gain_db[] = { 7, 11, 17, 23 }; - s8 lna1A_gain_db_rev4[] = { 8, 12, 18, 23 }; - s8 lna1A_gain_db_rev5[] = { 6, 10, 16, 21 }; - s8 lna1A_gain_db_rev6[] = { 6, 10, 16, 21 }; - s8 *lna1_gain_db = NULL; - s8 lna2G_gain_db[] = { -5, 6, 10, 14 }; - s8 lna2G_gain_db_rev5[] = { -3, 7, 11, 16 }; - s8 lna2G_gain_db_rev6[] = { -5, 6, 10, 14 }; - s8 lna2G_gain_db_rev6_224B0[] = { -5, 6, 10, 15 }; - s8 lna2A_gain_db[] = { -6, 2, 6, 10 }; - s8 lna2A_gain_db_rev4[] = { -5, 2, 6, 10 }; - s8 lna2A_gain_db_rev5[] = { -7, 0, 4, 8 }; - s8 lna2A_gain_db_rev6[] = { -7, 0, 4, 8 }; - s8 *lna2_gain_db = NULL; - s8 tiaG_gain_db[] = { + static const u8 rfseq_updategainu_dlys[] = { 10, 30, 1 }; + static const s8 lna1G_gain_db[] = { 7, 11, 16, 23 }; + static const s8 lna1G_gain_db_rev4[] = { 8, 12, 17, 25 }; + static const s8 lna1G_gain_db_rev5[] = { 9, 13, 18, 26 }; + static const s8 lna1G_gain_db_rev6[] = { 8, 13, 18, 25 }; + static const s8 lna1G_gain_db_rev6_224B0[] = { 10, 14, 19, 27 }; + static const s8 lna1A_gain_db[] = { 7, 11, 17, 23 }; + static const s8 lna1A_gain_db_rev4[] = { 8, 12, 18, 23 }; + static const s8 lna1A_gain_db_rev5[] = { 6, 10, 16, 21 }; + static const s8 lna1A_gain_db_rev6[] = { 6, 10, 16, 21 }; + const s8 *lna1_gain_db = NULL; + static const s8 lna2G_gain_db[] = { -5, 6, 10, 14 }; + static const s8 lna2G_gain_db_rev5[] = { -3, 7, 11, 16 }; + static const s8 lna2G_gain_db_rev6[] = { -5, 6, 10, 14 }; + static const s8 lna2G_gain_db_rev6_224B0[] = { -5, 6, 10, 15 }; + static const s8 lna2A_gain_db[] = { -6, 2, 6, 10 }; + static const s8 lna2A_gain_db_rev4[] = { -5, 2, 6, 10 }; + static const s8 lna2A_gain_db_rev5[] = { -7, 0, 4, 8 }; + static const s8 lna2A_gain_db_rev6[] = { -7, 0, 4, 8 }; + const s8 *lna2_gain_db = NULL; + static const s8 tiaG_gain_db[] = { 0x0A, 0x0A, 0x0A, 0x0A, 0x0A, 0x0A, 0x0A, 0x0A, 0x0A, 0x0A }; - s8 tiaA_gain_db[] = { + static const s8 tiaA_gain_db[] = { 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13 }; - s8 tiaA_gain_db_rev4[] = { + static const s8 tiaA_gain_db_rev4[] = { 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d }; - s8 tiaA_gain_db_rev5[] = { + static const s8 tiaA_gain_db_rev5[] = { 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d }; - s8 tiaA_gain_db_rev6[] = { + static const s8 tiaA_gain_db_rev6[] = { 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d }; - s8 *tia_gain_db; - s8 tiaG_gainbits[] = { + const s8 *tia_gain_db; + static const s8 tiaG_gainbits[] = { 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03 }; - s8 tiaA_gainbits[] = { + static const s8 tiaA_gainbits[] = { 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06 }; - s8 tiaA_gainbits_rev4[] = { + static const s8 tiaA_gainbits_rev4[] = { 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04 }; - s8 tiaA_gainbits_rev5[] = { + static const s8 tiaA_gainbits_rev5[] = { 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04 }; - s8 tiaA_gainbits_rev6[] = { + static const s8 tiaA_gainbits_rev6[] = { 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04 }; - s8 *tia_gainbits; - s8 lpf_gain_db[] = { 0x00, 0x06, 0x0c, 0x12, 0x12, 0x12 }; - s8 lpf_gainbits[] = { 0x00, 0x01, 0x02, 0x03, 0x03, 0x03 }; - u16 rfseqG_init_gain[] = { 0x613f, 0x613f, 0x613f, 0x613f }; - u16 rfseqG_init_gain_rev4[] = { 0x513f, 0x513f, 0x513f, 0x513f }; - u16 rfseqG_init_gain_rev5[] = { 0x413f, 0x413f, 0x413f, 0x413f }; - u16 rfseqG_init_gain_rev5_elna[] = { + const s8 *tia_gainbits; + static const s8 lpf_gain_db[] = { 0x00, 0x06, 0x0c, 0x12, 0x12, 0x12 }; + static const s8 lpf_gainbits[] = { 0x00, 0x01, 0x02, 0x03, 0x03, 0x03 }; + static const u16 rfseqG_init_gain[] = { 0x613f, 0x613f, 0x613f, 0x613f }; + static const u16 rfseqG_init_gain_rev4[] = { 0x513f, 0x513f, 0x513f, 0x513f }; + static const u16 rfseqG_init_gain_rev5[] = { 0x413f, 0x413f, 0x413f, 0x413f }; + static const u16 rfseqG_init_gain_rev5_elna[] = { 0x013f, 0x013f, 0x013f, 0x013f }; - u16 rfseqG_init_gain_rev6[] = { 0x513f, 0x513f }; - u16 rfseqG_init_gain_rev6_224B0[] = { 0x413f, 0x413f }; - u16 rfseqG_init_gain_rev6_elna[] = { 0x113f, 0x113f }; - u16 rfseqA_init_gain[] = { 0x516f, 0x516f, 0x516f, 0x516f }; - u16 rfseqA_init_gain_rev4[] = { 0x614f, 0x614f, 0x614f, 0x614f }; - u16 rfseqA_init_gain_rev4_elna[] = { + static const u16 rfseqG_init_gain_rev6[] = { 0x513f, 0x513f }; + static const u16 rfseqG_init_gain_rev6_224B0[] = { 0x413f, 0x413f }; + static const u16 rfseqG_init_gain_rev6_elna[] = { 0x113f, 0x113f }; + static const u16 rfseqA_init_gain[] = { 0x516f, 0x516f, 0x516f, 0x516f }; + static const u16 rfseqA_init_gain_rev4[] = { 0x614f, 0x614f, 0x614f, 0x614f }; + static const u16 rfseqA_init_gain_rev4_elna[] = { 0x314f, 0x314f, 0x314f, 0x314f }; - u16 rfseqA_init_gain_rev5[] = { 0x714f, 0x714f, 0x714f, 0x714f }; - u16 rfseqA_init_gain_rev6[] = { 0x714f, 0x714f }; - u16 *rfseq_init_gain; + static const u16 rfseqA_init_gain_rev5[] = { 0x714f, 0x714f, 0x714f, 0x714f }; + static const u16 rfseqA_init_gain_rev6[] = { 0x714f, 0x714f }; + const u16 *rfseq_init_gain; u16 initG_gaincode = 0x627e; u16 initG_gaincode_rev4 = 0x527e; u16 initG_gaincode_rev5 = 0x427e; @@ -15538,10 +15535,10 @@ u16 clip1mdA_gaincode_rev6 = 0x2084; u16 clip1md_gaincode = 0; u16 clip1loG_gaincode = 0x0074; - u16 clip1loG_gaincode_rev5[] = { + static const u16 clip1loG_gaincode_rev5[] = { 0x0062, 0x0064, 0x006a, 0x106a, 0x106c, 0x1074, 0x107c, 0x207c }; - u16 clip1loG_gaincode_rev6[] = { + static const u16 clip1loG_gaincode_rev6[] = { 0x106a, 0x106c, 0x1074, 0x107c, 0x007e, 0x107e, 0x207e, 0x307e }; u16 clip1loG_gaincode_rev6_224B0 = 0x1074; @@ -16066,7 +16063,7 @@ static void wlc_phy_workarounds_nphy(struct brcms_phy *pi) { - u8 rfseq_rx2tx_events[] = { + static const u8 rfseq_rx2tx_events[] = { NPHY_RFSEQ_CMD_NOP, NPHY_RFSEQ_CMD_RXG_FBW, NPHY_RFSEQ_CMD_TR_SWITCH, @@ -16076,7 +16073,7 @@ NPHY_RFSEQ_CMD_EXT_PA }; u8 rfseq_rx2tx_dlys[] = { 8, 6, 6, 2, 4, 60, 1 }; - u8 rfseq_tx2rx_events[] = { + static const u8 rfseq_tx2rx_events[] = { NPHY_RFSEQ_CMD_NOP, NPHY_RFSEQ_CMD_EXT_PA, NPHY_RFSEQ_CMD_TX_GAIN, @@ -16085,8 +16082,8 @@ NPHY_RFSEQ_CMD_RXG_FBW, NPHY_RFSEQ_CMD_CLR_HIQ_DIS }; - u8 rfseq_tx2rx_dlys[] = { 8, 6, 2, 4, 4, 6, 1 }; - u8 rfseq_tx2rx_events_rev3[] = { + static const u8 rfseq_tx2rx_dlys[] = { 8, 6, 2, 4, 4, 6, 1 }; + static const u8 rfseq_tx2rx_events_rev3[] = { NPHY_REV3_RFSEQ_CMD_EXT_PA, NPHY_REV3_RFSEQ_CMD_INT_PA_PU, NPHY_REV3_RFSEQ_CMD_TX_GAIN, @@ -16096,7 +16093,7 @@ NPHY_REV3_RFSEQ_CMD_CLR_HIQ_DIS, NPHY_REV3_RFSEQ_CMD_END }; - u8 rfseq_tx2rx_dlys_rev3[] = { 8, 4, 2, 2, 4, 4, 6, 1 }; + static const u8 rfseq_tx2rx_dlys_rev3[] = { 8, 4, 2, 2, 4, 4, 6, 1 }; u8 rfseq_rx2tx_events_rev3[] = { NPHY_REV3_RFSEQ_CMD_NOP, NPHY_REV3_RFSEQ_CMD_RXG_FBW, @@ -16110,7 +16107,7 @@ }; u8 rfseq_rx2tx_dlys_rev3[] = { 8, 6, 6, 4, 4, 18, 42, 1, 1 }; - u8 rfseq_rx2tx_events_rev3_ipa[] = { + static const u8 rfseq_rx2tx_events_rev3_ipa[] = { NPHY_REV3_RFSEQ_CMD_NOP, NPHY_REV3_RFSEQ_CMD_RXG_FBW, NPHY_REV3_RFSEQ_CMD_TR_SWITCH, @@ -16121,15 +16118,15 @@ NPHY_REV3_RFSEQ_CMD_INT_PA_PU, NPHY_REV3_RFSEQ_CMD_END }; - u8 rfseq_rx2tx_dlys_rev3_ipa[] = { 8, 6, 6, 4, 4, 16, 43, 1, 1 }; - u16 rfseq_rx2tx_dacbufpu_rev7[] = { 0x10f, 0x10f }; + static const u8 rfseq_rx2tx_dlys_rev3_ipa[] = { 8, 6, 6, 4, 4, 16, 43, 1, 1 }; + static const u16 rfseq_rx2tx_dacbufpu_rev7[] = { 0x10f, 0x10f }; s16 alpha0, alpha1, alpha2; s16 beta0, beta1, beta2; u32 leg_data_weights, ht_data_weights, nss1_data_weights, stbc_data_weights; u8 chan_freq_range = 0; - u16 dac_control = 0x0002; + static const u16 dac_control = 0x0002; u16 aux_adc_vmid_rev7_core0[] = { 0x8e, 0x96, 0x96, 0x96 }; u16 aux_adc_vmid_rev7_core1[] = { 0x8f, 0x9f, 0x9f, 0x96 }; u16 aux_adc_vmid_rev4[] = { 0xa2, 0xb4, 0xb4, 0x89 }; @@ -16139,8 +16136,8 @@ u16 aux_adc_gain_rev4[] = { 0x02, 0x02, 0x02, 0x00 }; u16 aux_adc_gain_rev3[] = { 0x02, 0x02, 0x02, 0x00 }; u16 *aux_adc_gain; - u16 sk_adc_vmid[] = { 0xb4, 0xb4, 0xb4, 0x24 }; - u16 sk_adc_gain[] = { 0x02, 0x02, 0x02, 0x02 }; + static const u16 sk_adc_vmid[] = { 0xb4, 0xb4, 0xb4, 0x24 }; + static const u16 sk_adc_gain[] = { 0x02, 0x02, 0x02, 0x02 }; s32 min_nvar_val = 0x18d; s32 min_nvar_offset_6mbps = 20; u8 pdetrange; @@ -16151,9 +16148,9 @@ u16 rfseq_rx2tx_lpf_h_hpc_rev7 = 0x77; u16 rfseq_tx2rx_lpf_h_hpc_rev7 = 0x77; u16 rfseq_pktgn_lpf_h_hpc_rev7 = 0x77; - u16 rfseq_htpktgn_lpf_hpc_rev7[] = { 0x77, 0x11, 0x11 }; - u16 rfseq_pktgn_lpf_hpc_rev7[] = { 0x11, 0x11 }; - u16 rfseq_cckpktgn_lpf_hpc_rev7[] = { 0x11, 0x11 }; + static const u16 rfseq_htpktgn_lpf_hpc_rev7[] = { 0x77, 0x11, 0x11 }; + static const u16 rfseq_pktgn_lpf_hpc_rev7[] = { 0x11, 0x11 }; + static const u16 rfseq_cckpktgn_lpf_hpc_rev7[] = { 0x11, 0x11 }; u16 ipalvlshift_3p3_war_en = 0; u16 rccal_bcap_val, rccal_scap_val; u16 rccal_tx20_11b_bcap = 0; @@ -24291,13 +24288,13 @@ u16 bbmult; u16 tblentry; - struct nphy_txiqcal_ladder ladder_lo[] = { + static const struct nphy_txiqcal_ladder ladder_lo[] = { {3, 0}, {4, 0}, {6, 0}, {9, 0}, {13, 0}, {18, 0}, {25, 0}, {25, 1}, {25, 2}, {25, 3}, {25, 4}, {25, 5}, {25, 6}, {25, 7}, {35, 7}, {50, 7}, {71, 7}, {100, 7} }; - struct nphy_txiqcal_ladder ladder_iq[] = { + static const struct nphy_txiqcal_ladder ladder_iq[] = { {3, 0}, {4, 0}, {6, 0}, {9, 0}, {13, 0}, {18, 0}, {25, 0}, {35, 0}, {50, 0}, {71, 0}, {100, 0}, {100, 1}, {100, 2}, {100, 3}, {100, 4}, {100, 5}, {100, 6}, {100, 7} @@ -25773,67 +25770,67 @@ u16 cal_gain[2]; struct nphy_iqcal_params cal_params[2]; u32 tbl_len; - void *tbl_ptr; + const void *tbl_ptr; bool ladder_updated[2]; u8 mphase_cal_lastphase = 0; int bcmerror = 0; bool phyhang_avoid_state = false; - u16 tbl_tx_iqlo_cal_loft_ladder_20[] = { + static const u16 tbl_tx_iqlo_cal_loft_ladder_20[] = { 0x0300, 0x0500, 0x0700, 0x0900, 0x0d00, 0x1100, 0x1900, 0x1901, 0x1902, 0x1903, 0x1904, 0x1905, 0x1906, 0x1907, 0x2407, 0x3207, 0x4607, 0x6407 }; - u16 tbl_tx_iqlo_cal_iqimb_ladder_20[] = { + static const u16 tbl_tx_iqlo_cal_iqimb_ladder_20[] = { 0x0200, 0x0300, 0x0600, 0x0900, 0x0d00, 0x1100, 0x1900, 0x2400, 0x3200, 0x4600, 0x6400, 0x6401, 0x6402, 0x6403, 0x6404, 0x6405, 0x6406, 0x6407 }; - u16 tbl_tx_iqlo_cal_loft_ladder_40[] = { + static const u16 tbl_tx_iqlo_cal_loft_ladder_40[] = { 0x0200, 0x0300, 0x0400, 0x0700, 0x0900, 0x0c00, 0x1200, 0x1201, 0x1202, 0x1203, 0x1204, 0x1205, 0x1206, 0x1207, 0x1907, 0x2307, 0x3207, 0x4707 }; - u16 tbl_tx_iqlo_cal_iqimb_ladder_40[] = { + static const u16 tbl_tx_iqlo_cal_iqimb_ladder_40[] = { 0x0100, 0x0200, 0x0400, 0x0700, 0x0900, 0x0c00, 0x1200, 0x1900, 0x2300, 0x3200, 0x4700, 0x4701, 0x4702, 0x4703, 0x4704, 0x4705, 0x4706, 0x4707 }; - u16 tbl_tx_iqlo_cal_startcoefs[] = { + static const u16 tbl_tx_iqlo_cal_startcoefs[] = { 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000 }; - u16 tbl_tx_iqlo_cal_cmds_fullcal[] = { + static const u16 tbl_tx_iqlo_cal_cmds_fullcal[] = { 0x8123, 0x8264, 0x8086, 0x8245, 0x8056, 0x9123, 0x9264, 0x9086, 0x9245, 0x9056 }; - u16 tbl_tx_iqlo_cal_cmds_recal[] = { + static const u16 tbl_tx_iqlo_cal_cmds_recal[] = { 0x8101, 0x8253, 0x8053, 0x8234, 0x8034, 0x9101, 0x9253, 0x9053, 0x9234, 0x9034 }; - u16 tbl_tx_iqlo_cal_startcoefs_nphyrev3[] = { + static const u16 tbl_tx_iqlo_cal_startcoefs_nphyrev3[] = { 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000 }; - u16 tbl_tx_iqlo_cal_cmds_fullcal_nphyrev3[] = { + static const u16 tbl_tx_iqlo_cal_cmds_fullcal_nphyrev3[] = { 0x8434, 0x8334, 0x8084, 0x8267, 0x8056, 0x8234, 0x9434, 0x9334, 0x9084, 0x9267, 0x9056, 0x9234 }; - u16 tbl_tx_iqlo_cal_cmds_recal_nphyrev3[] = { + static const u16 tbl_tx_iqlo_cal_cmds_recal_nphyrev3[] = { 0x8423, 0x8323, 0x8073, 0x8256, 0x8045, 0x8223, 0x9423, 0x9323, 0x9073, 0x9256, 0x9045, 0x9223 }; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/net/wireless/iwlwifi/iwl-nvm-parse.c +++ linux-raspi2-4.4.0/drivers/net/wireless/iwlwifi/iwl-nvm-parse.c @@ -73,6 +73,7 @@ /* NVM offsets (in words) definitions */ enum wkp_nvm_offsets { /* NVM HW-Section offset (in words) definitions */ + SUBSYSTEM_ID = 0x0A, HW_ADDR = 0x15, /* NVM SW-Section offset (in words) definitions */ @@ -257,13 +258,12 @@ static int iwl_init_channel_map(struct device *dev, const struct iwl_cfg *cfg, struct iwl_nvm_data *data, const __le16 * const nvm_ch_flags, - bool lar_supported) + bool lar_supported, bool no_wide_in_5ghz) { int ch_idx; int n_channels = 0; struct ieee80211_channel *channel; u16 ch_flags; - bool is_5ghz; int num_of_ch, num_2ghz_channels; const u8 *nvm_chan; @@ -278,12 +278,20 @@ } for (ch_idx = 0; ch_idx < num_of_ch; ch_idx++) { + bool is_5ghz = (ch_idx >= num_2ghz_channels); + ch_flags = __le16_to_cpup(nvm_ch_flags + ch_idx); - if (ch_idx >= num_2ghz_channels && - !data->sku_cap_band_52GHz_enable) + if (is_5ghz && !data->sku_cap_band_52GHz_enable) continue; + /* workaround to disable wide channels in 5GHz */ + if (no_wide_in_5ghz && is_5ghz) { + ch_flags &= ~(NVM_CHANNEL_40MHZ | + NVM_CHANNEL_80MHZ | + NVM_CHANNEL_160MHZ); + } + if (!lar_supported && !(ch_flags & NVM_CHANNEL_VALID)) { /* * Channels might become valid later if lar is @@ -303,8 +311,8 @@ n_channels++; channel->hw_value = nvm_chan[ch_idx]; - channel->band = (ch_idx < num_2ghz_channels) ? - IEEE80211_BAND_2GHZ : IEEE80211_BAND_5GHZ; + channel->band = is_5ghz ? + IEEE80211_BAND_5GHZ : IEEE80211_BAND_2GHZ; channel->center_freq = ieee80211_channel_to_frequency( channel->hw_value, channel->band); @@ -316,7 +324,6 @@ * is not used in mvm, and is used for backwards compatibility */ channel->max_power = IWL_DEFAULT_MAX_TX_POWER; - is_5ghz = channel->band == IEEE80211_BAND_5GHZ; /* don't put limitations in case we're using LAR */ if (!lar_supported) @@ -405,7 +412,8 @@ static void iwl_init_sbands(struct device *dev, const struct iwl_cfg *cfg, struct iwl_nvm_data *data, const __le16 *ch_section, - u8 tx_chains, u8 rx_chains, bool lar_supported) + u8 tx_chains, u8 rx_chains, bool lar_supported, + bool no_wide_in_5ghz) { int n_channels; int n_used = 0; @@ -414,12 +422,14 @@ if (cfg->device_family != IWL_DEVICE_FAMILY_8000) n_channels = iwl_init_channel_map( dev, cfg, data, - &ch_section[NVM_CHANNELS], lar_supported); + &ch_section[NVM_CHANNELS], lar_supported, + no_wide_in_5ghz); else n_channels = iwl_init_channel_map( dev, cfg, data, &ch_section[NVM_CHANNELS_FAMILY_8000], - lar_supported); + lar_supported, + no_wide_in_5ghz); sband = &data->bands[IEEE80211_BAND_2GHZ]; sband->band = IEEE80211_BAND_2GHZ; @@ -582,6 +592,39 @@ #define IWL_4165_DEVICE_ID 0x5501 +static bool +iwl_nvm_no_wide_in_5ghz(struct device *dev, const struct iwl_cfg *cfg, + const __le16 *nvm_hw) +{ + /* + * Workaround a bug in Indonesia SKUs where the regulatory in + * some 7000-family OTPs erroneously allow wide channels in + * 5GHz. To check for Indonesia, we take the SKU value from + * bits 1-4 in the subsystem ID and check if it is either 5 or + * 9. In those cases, we need to force-disable wide channels + * in 5GHz otherwise the FW will throw a sysassert when we try + * to use them. + */ + if (cfg->device_family == IWL_DEVICE_FAMILY_7000) { + /* + * Unlike the other sections in the NVM, the hw + * section uses big-endian. + */ + u16 subsystem_id = be16_to_cpup((const __be16 *)nvm_hw + + SUBSYSTEM_ID); + u8 sku = (subsystem_id & 0x1e) >> 1; + + if (sku == 5 || sku == 9) { + IWL_DEBUG_EEPROM(dev, + "disabling wide channels in 5GHz (0x%0x %d)\n", + subsystem_id, sku); + return true; + } + } + + return false; +} + struct iwl_nvm_data * iwl_parse_nvm_data(struct device *dev, const struct iwl_cfg *cfg, const __le16 *nvm_hw, const __le16 *nvm_sw, @@ -591,6 +634,7 @@ u32 mac_addr0, u32 mac_addr1, u32 hw_id) { struct iwl_nvm_data *data; + bool no_wide_in_5ghz = iwl_nvm_no_wide_in_5ghz(dev, cfg, nvm_hw); u32 sku; u32 radio_cfg; u16 lar_config; @@ -657,7 +701,8 @@ iwl_set_hw_address(cfg, data, nvm_hw); iwl_init_sbands(dev, cfg, data, nvm_sw, - tx_chains, rx_chains, lar_fw_supported); + tx_chains, rx_chains, lar_fw_supported, + no_wide_in_5ghz); } else { u16 lar_offset = data->nvm_version < 0xE39 ? NVM_LAR_OFFSET_FAMILY_8000_OLD : @@ -673,7 +718,8 @@ iwl_init_sbands(dev, cfg, data, regulatory, tx_chains, rx_chains, - lar_fw_supported && data->lar_enabled); + lar_fw_supported && data->lar_enabled, + no_wide_in_5ghz); } data->calib_version = 255; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/net/wireless/mwifiex/scan.c +++ linux-raspi2-4.4.0/drivers/net/wireless/mwifiex/scan.c @@ -2170,6 +2170,12 @@ sizeof(struct mwifiex_chan_stats); for (i = 0 ; i < num_chan; i++) { + if (adapter->survey_idx >= adapter->num_in_chan_stats) { + mwifiex_dbg(adapter, WARN, + "FW reported too many channel results (max %d)\n", + adapter->num_in_chan_stats); + return; + } chan_stats.chan_num = fw_chan_stats->chan_num; chan_stats.bandcfg = fw_chan_stats->bandcfg; chan_stats.flags = fw_chan_stats->flags; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/net/wireless/p54/fwio.c +++ linux-raspi2-4.4.0/drivers/net/wireless/p54/fwio.c @@ -488,7 +488,7 @@ entry += sizeof(__le16); chan->pa_points_per_curve = 8; - memset(chan->curve_data, 0, sizeof(*chan->curve_data)); + memset(chan->curve_data, 0, sizeof(chan->curve_data)); memcpy(chan->curve_data, entry, sizeof(struct p54_pa_curve_data_sample) * min((u8)8, curve_data->points_per_channel)); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/net/wireless/ti/wl1251/main.c +++ linux-raspi2-4.4.0/drivers/net/wireless/ti/wl1251/main.c @@ -1567,6 +1567,7 @@ wl->state = WL1251_STATE_OFF; mutex_init(&wl->mutex); + spin_lock_init(&wl->wl_lock); wl->tx_mgmt_frm_rate = DEFAULT_HW_GEN_TX_RATE; wl->tx_mgmt_frm_mod = DEFAULT_HW_GEN_MODULATION_TYPE; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/net/xen-netback/common.h +++ linux-raspi2-4.4.0/drivers/net/xen-netback/common.h @@ -201,6 +201,7 @@ unsigned long remaining_credit; struct timer_list credit_timeout; u64 credit_window_start; + bool rate_limited; /* Statistics */ struct xenvif_stats stats; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/net/xen-netback/interface.c +++ linux-raspi2-4.4.0/drivers/net/xen-netback/interface.c @@ -105,7 +105,11 @@ if (work_done < budget) { napi_complete(napi); - xenvif_napi_schedule_or_enable_events(queue); + /* If the queue is rate-limited, it shall be + * rescheduled in the timer callback. + */ + if (likely(!queue->rate_limited)) + xenvif_napi_schedule_or_enable_events(queue); } return work_done; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/net/xen-netback/netback.c +++ linux-raspi2-4.4.0/drivers/net/xen-netback/netback.c @@ -67,6 +67,7 @@ unsigned int rx_stall_timeout_msecs = 60000; module_param(rx_stall_timeout_msecs, uint, 0444); +#define MAX_QUEUES_DEFAULT 8 unsigned int xenvif_max_queues; module_param_named(max_queues, xenvif_max_queues, uint, 0644); MODULE_PARM_DESC(max_queues, @@ -687,6 +688,7 @@ max_credit = ULONG_MAX; /* wrapped: clamp to ULONG_MAX */ queue->remaining_credit = min(max_credit, max_burst); + queue->rate_limited = false; } void xenvif_tx_credit_callback(unsigned long data) @@ -1184,8 +1186,10 @@ msecs_to_jiffies(queue->credit_usec / 1000); /* Timer could already be pending in rare cases. */ - if (timer_pending(&queue->credit_timeout)) + if (timer_pending(&queue->credit_timeout)) { + queue->rate_limited = true; return true; + } /* Passed the point where we can replenish credit? */ if (time_after_eq64(now, next_credit)) { @@ -1200,6 +1204,7 @@ mod_timer(&queue->credit_timeout, next_credit); queue->credit_window_start = next_credit; + queue->rate_limited = true; return true; } @@ -2153,11 +2158,12 @@ if (!xen_domain()) return -ENODEV; - /* Allow as many queues as there are CPUs if user has not + /* Allow as many queues as there are CPUs but max. 8 if user has not * specified a value. */ if (xenvif_max_queues == 0) - xenvif_max_queues = num_online_cpus(); + xenvif_max_queues = min_t(unsigned int, MAX_QUEUES_DEFAULT, + num_online_cpus()); if (fatal_skb_slots < XEN_NETBK_LEGACY_SLOTS_MAX) { pr_info("fatal_skb_slots too small (%d), bump it to XEN_NETBK_LEGACY_SLOTS_MAX (%d)\n", only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/nfc/fdp/i2c.c +++ linux-raspi2-4.4.0/drivers/nfc/fdp/i2c.c @@ -210,14 +210,14 @@ struct sk_buff *skb; int r; - client = phy->i2c_dev; - dev_dbg(&client->dev, "%s\n", __func__); - if (!phy || irq != phy->i2c_dev->irq) { WARN_ON_ONCE(1); return IRQ_NONE; } + client = phy->i2c_dev; + dev_dbg(&client->dev, "%s\n", __func__); + r = fdp_nci_i2c_read(phy, &skb); if (r == -EREMOTEIO) only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/nfc/nfcmrvl/fw_dnld.c +++ linux-raspi2-4.4.0/drivers/nfc/nfcmrvl/fw_dnld.c @@ -459,7 +459,7 @@ INIT_WORK(&priv->fw_dnld.rx_work, fw_dnld_rx_work); snprintf(name, sizeof(name), "%s_nfcmrvl_fw_dnld_rx_wq", - dev_name(priv->dev)); + dev_name(&priv->ndev->nfc_dev->dev)); priv->fw_dnld.rx_wq = create_singlethread_workqueue(name); if (!priv->fw_dnld.rx_wq) return -ENOMEM; @@ -496,6 +496,7 @@ { struct nfcmrvl_private *priv = nci_get_drvdata(ndev); struct nfcmrvl_fw_dnld *fw_dnld = &priv->fw_dnld; + int res; if (!priv->support_fw_dnld) return -ENOTSUPP; @@ -511,7 +512,9 @@ */ /* Retrieve FW binary */ - if (request_firmware(&fw_dnld->fw, firmware_name, priv->dev) < 0) { + res = request_firmware(&fw_dnld->fw, firmware_name, + &ndev->nfc_dev->dev); + if (res < 0) { nfc_err(priv->dev, "failed to retrieve FW %s", firmware_name); return -ENOENT; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/nfc/nfcmrvl/main.c +++ linux-raspi2-4.4.0/drivers/nfc/nfcmrvl/main.c @@ -124,12 +124,13 @@ memcpy(&priv->config, pdata, sizeof(*pdata)); if (priv->config.reset_n_io) { - rc = devm_gpio_request_one(dev, - priv->config.reset_n_io, - GPIOF_OUT_INIT_LOW, - "nfcmrvl_reset_n"); - if (rc < 0) + rc = gpio_request_one(priv->config.reset_n_io, + GPIOF_OUT_INIT_LOW, + "nfcmrvl_reset_n"); + if (rc < 0) { + priv->config.reset_n_io = 0; nfc_err(dev, "failed to request reset_n io\n"); + } } if (phy == NFCMRVL_PHY_SPI) { @@ -154,7 +155,13 @@ if (!priv->ndev) { nfc_err(dev, "nci_allocate_device failed\n"); rc = -ENOMEM; - goto error; + goto error_free_gpio; + } + + rc = nfcmrvl_fw_dnld_init(priv); + if (rc) { + nfc_err(dev, "failed to initialize FW download %d\n", rc); + goto error_free_dev; } nci_set_drvdata(priv->ndev, priv); @@ -162,24 +169,22 @@ rc = nci_register_device(priv->ndev); if (rc) { nfc_err(dev, "nci_register_device failed %d\n", rc); - goto error_free_dev; + goto error_fw_dnld_deinit; } /* Ensure that controller is powered off */ nfcmrvl_chip_halt(priv); - rc = nfcmrvl_fw_dnld_init(priv); - if (rc) { - nfc_err(dev, "failed to initialize FW download %d\n", rc); - goto error_free_dev; - } - nfc_info(dev, "registered with nci successfully\n"); return priv; +error_fw_dnld_deinit: + nfcmrvl_fw_dnld_deinit(priv); error_free_dev: nci_free_device(priv->ndev); -error: +error_free_gpio: + if (priv->config.reset_n_io) + gpio_free(priv->config.reset_n_io); kfree(priv); return ERR_PTR(rc); } @@ -195,7 +200,7 @@ nfcmrvl_fw_dnld_deinit(priv); if (priv->config.reset_n_io) - devm_gpio_free(priv->dev, priv->config.reset_n_io); + gpio_free(priv->config.reset_n_io); nci_unregister_device(ndev); nci_free_device(ndev); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/nfc/nfcmrvl/uart.c +++ linux-raspi2-4.4.0/drivers/nfc/nfcmrvl/uart.c @@ -109,6 +109,7 @@ struct nfcmrvl_private *priv; struct nfcmrvl_platform_data *pdata = NULL; struct nfcmrvl_platform_data config; + struct device *dev = nu->tty->dev; /* * Platform data cannot be used here since usually it is already used @@ -116,9 +117,8 @@ * and check if DT entries were added. */ - if (nu->tty->dev->parent && nu->tty->dev->parent->of_node) - if (nfcmrvl_uart_parse_dt(nu->tty->dev->parent->of_node, - &config) == 0) + if (dev && dev->parent && dev->parent->of_node) + if (nfcmrvl_uart_parse_dt(dev->parent->of_node, &config) == 0) pdata = &config; if (!pdata) { @@ -131,7 +131,7 @@ } priv = nfcmrvl_nci_register_dev(NFCMRVL_PHY_UART, nu, &uart_ops, - nu->tty->dev, pdata); + dev, pdata); if (IS_ERR(priv)) return PTR_ERR(priv); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/nvdimm/btt.c +++ linux-raspi2-4.4.0/drivers/nvdimm/btt.c @@ -1205,10 +1205,13 @@ struct page *page, int rw) { struct btt *btt = bdev->bd_disk->private_data; + int rc; - btt_do_bvec(btt, NULL, page, PAGE_CACHE_SIZE, 0, rw, sector); - page_endio(page, rw & WRITE, 0); - return 0; + rc = btt_do_bvec(btt, NULL, page, PAGE_CACHE_SIZE, 0, rw, sector); + if (rc == 0) + page_endio(page, rw & WRITE, 0); + + return rc; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/nvmem/imx-ocotp.c +++ linux-raspi2-4.4.0/drivers/nvmem/imx-ocotp.c @@ -88,7 +88,7 @@ static const struct of_device_id imx_ocotp_dt_ids[] = { { .compatible = "fsl,imx6q-ocotp", (void *)128 }, - { .compatible = "fsl,imx6sl-ocotp", (void *)32 }, + { .compatible = "fsl,imx6sl-ocotp", (void *)64 }, { .compatible = "fsl,imx6sx-ocotp", (void *)128 }, { }, }; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/parisc/ccio-dma.c +++ linux-raspi2-4.4.0/drivers/parisc/ccio-dma.c @@ -741,6 +741,8 @@ BUG_ON(!dev); ioc = GET_IOC(dev); + if (!ioc) + return DMA_ERROR_CODE; BUG_ON(size <= 0); @@ -805,6 +807,10 @@ BUG_ON(!dev); ioc = GET_IOC(dev); + if (!ioc) { + WARN_ON(!ioc); + return; + } DBG_RUN("%s() iovp 0x%lx/%x\n", __func__, (long)iova, size); @@ -908,6 +914,8 @@ BUG_ON(!dev); ioc = GET_IOC(dev); + if (!ioc) + return 0; DBG_RUN_SG("%s() START %d entries\n", __func__, nents); @@ -980,6 +988,10 @@ BUG_ON(!dev); ioc = GET_IOC(dev); + if (!ioc) { + WARN_ON(!ioc); + return; + } DBG_RUN_SG("%s() START %d entries, %p,%x\n", __func__, nents, sg_virt(sglist), sglist->length); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/parisc/dino.c +++ linux-raspi2-4.4.0/drivers/parisc/dino.c @@ -154,7 +154,10 @@ }; /* Looks nice and keeps the compiler happy */ -#define DINO_DEV(d) ((struct dino_device *) d) +#define DINO_DEV(d) ({ \ + void *__pdata = d; \ + BUG_ON(!__pdata); \ + (struct dino_device *)__pdata; }) /* @@ -951,7 +954,7 @@ dino_dev->hba.dev = dev; dino_dev->hba.base_addr = ioremap_nocache(hpa, 4096); - dino_dev->hba.lmmio_space_offset = 0; /* CPU addrs == bus addrs */ + dino_dev->hba.lmmio_space_offset = PCI_F_EXTEND; spin_lock_init(&dino_dev->dinosaur_pen); dino_dev->hba.iommu = ccio_get_iommu(dev); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/parisc/lba_pci.c +++ linux-raspi2-4.4.0/drivers/parisc/lba_pci.c @@ -111,8 +111,10 @@ /* Looks nice and keeps the compiler happy */ -#define LBA_DEV(d) ((struct lba_device *) (d)) - +#define LBA_DEV(d) ({ \ + void *__pdata = d; \ + BUG_ON(!__pdata); \ + (struct lba_device *)__pdata; }) /* ** Only allow 8 subsidiary busses per LBA only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/parisc/sba_iommu.c +++ linux-raspi2-4.4.0/drivers/parisc/sba_iommu.c @@ -691,6 +691,8 @@ return 0; ioc = GET_IOC(dev); + if (!ioc) + return 0; /* * check if mask is >= than the current max IO Virt Address @@ -722,6 +724,8 @@ int pide; ioc = GET_IOC(dev); + if (!ioc) + return DMA_ERROR_CODE; /* save offset bits */ offset = ((dma_addr_t) (long) addr) & ~IOVP_MASK; @@ -803,6 +807,10 @@ DBG_RUN("%s() iovp 0x%lx/%x\n", __func__, (long) iova, size); ioc = GET_IOC(dev); + if (!ioc) { + WARN_ON(!ioc); + return; + } offset = iova & ~IOVP_MASK; iova ^= offset; /* clear offset bits */ size += offset; @@ -942,6 +950,8 @@ DBG_RUN_SG("%s() START %d entries\n", __func__, nents); ioc = GET_IOC(dev); + if (!ioc) + return 0; /* Fast path single entry scatterlists. */ if (nents == 1) { @@ -1027,6 +1037,10 @@ __func__, nents, sg_virt(sglist), sglist->length); ioc = GET_IOC(dev); + if (!ioc) { + WARN_ON(!ioc); + return; + } #ifdef SBA_COLLECT_STATS ioc->usg_calls++; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/pci/host/pci-mvebu.c +++ linux-raspi2-4.4.0/drivers/pci/host/pci-mvebu.c @@ -131,6 +131,12 @@ int nports; }; +struct mvebu_pcie_window { + phys_addr_t base; + phys_addr_t remap; + size_t size; +}; + /* Structure representing one PCIe interface */ struct mvebu_pcie_port { char *name; @@ -148,10 +154,8 @@ struct mvebu_sw_pci_bridge bridge; struct device_node *dn; struct mvebu_pcie *pcie; - phys_addr_t memwin_base; - size_t memwin_size; - phys_addr_t iowin_base; - size_t iowin_size; + struct mvebu_pcie_window memwin; + struct mvebu_pcie_window iowin; u32 saved_pcie_stat; }; @@ -377,23 +381,45 @@ } } +static void mvebu_pcie_set_window(struct mvebu_pcie_port *port, + unsigned int target, unsigned int attribute, + const struct mvebu_pcie_window *desired, + struct mvebu_pcie_window *cur) +{ + if (desired->base == cur->base && desired->remap == cur->remap && + desired->size == cur->size) + return; + + if (cur->size != 0) { + mvebu_pcie_del_windows(port, cur->base, cur->size); + cur->size = 0; + cur->base = 0; + + /* + * If something tries to change the window while it is enabled + * the change will not be done atomically. That would be + * difficult to do in the general case. + */ + } + + if (desired->size == 0) + return; + + mvebu_pcie_add_windows(port, target, attribute, desired->base, + desired->size, desired->remap); + *cur = *desired; +} + static void mvebu_pcie_handle_iobase_change(struct mvebu_pcie_port *port) { - phys_addr_t iobase; + struct mvebu_pcie_window desired = {}; /* Are the new iobase/iolimit values invalid? */ if (port->bridge.iolimit < port->bridge.iobase || port->bridge.iolimitupper < port->bridge.iobaseupper || !(port->bridge.command & PCI_COMMAND_IO)) { - - /* If a window was configured, remove it */ - if (port->iowin_base) { - mvebu_pcie_del_windows(port, port->iowin_base, - port->iowin_size); - port->iowin_base = 0; - port->iowin_size = 0; - } - + mvebu_pcie_set_window(port, port->io_target, port->io_attr, + &desired, &port->iowin); return; } @@ -410,32 +436,27 @@ * specifications. iobase is the bus address, port->iowin_base * is the CPU address. */ - iobase = ((port->bridge.iobase & 0xF0) << 8) | - (port->bridge.iobaseupper << 16); - port->iowin_base = port->pcie->io.start + iobase; - port->iowin_size = ((0xFFF | ((port->bridge.iolimit & 0xF0) << 8) | - (port->bridge.iolimitupper << 16)) - - iobase) + 1; - - mvebu_pcie_add_windows(port, port->io_target, port->io_attr, - port->iowin_base, port->iowin_size, - iobase); + desired.remap = ((port->bridge.iobase & 0xF0) << 8) | + (port->bridge.iobaseupper << 16); + desired.base = port->pcie->io.start + desired.remap; + desired.size = ((0xFFF | ((port->bridge.iolimit & 0xF0) << 8) | + (port->bridge.iolimitupper << 16)) - + desired.remap) + + 1; + + mvebu_pcie_set_window(port, port->io_target, port->io_attr, &desired, + &port->iowin); } static void mvebu_pcie_handle_membase_change(struct mvebu_pcie_port *port) { + struct mvebu_pcie_window desired = {.remap = MVEBU_MBUS_NO_REMAP}; + /* Are the new membase/memlimit values invalid? */ if (port->bridge.memlimit < port->bridge.membase || !(port->bridge.command & PCI_COMMAND_MEMORY)) { - - /* If a window was configured, remove it */ - if (port->memwin_base) { - mvebu_pcie_del_windows(port, port->memwin_base, - port->memwin_size); - port->memwin_base = 0; - port->memwin_size = 0; - } - + mvebu_pcie_set_window(port, port->mem_target, port->mem_attr, + &desired, &port->memwin); return; } @@ -445,14 +466,12 @@ * window to setup, according to the PCI-to-PCI bridge * specifications. */ - port->memwin_base = ((port->bridge.membase & 0xFFF0) << 16); - port->memwin_size = - (((port->bridge.memlimit & 0xFFF0) << 16) | 0xFFFFF) - - port->memwin_base + 1; - - mvebu_pcie_add_windows(port, port->mem_target, port->mem_attr, - port->memwin_base, port->memwin_size, - MVEBU_MBUS_NO_REMAP); + desired.base = ((port->bridge.membase & 0xFFF0) << 16); + desired.size = (((port->bridge.memlimit & 0xFFF0) << 16) | 0xFFFFF) - + desired.base + 1; + + mvebu_pcie_set_window(port, port->mem_target, port->mem_attr, &desired, + &port->memwin); } /* only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/pci/hotplug/shpchp_hpc.c +++ linux-raspi2-4.4.0/drivers/pci/hotplug/shpchp_hpc.c @@ -1062,6 +1062,8 @@ if (rc) { ctrl_info(ctrl, "Can't get msi for the hotplug controller\n"); ctrl_info(ctrl, "Use INTx for the hotplug controller\n"); + } else { + pci_set_master(pdev); } rc = request_irq(ctrl->pci_dev->irq, shpc_isr, IRQF_SHARED, only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/pci/pci-driver.c +++ linux-raspi2-4.4.0/drivers/pci/pci-driver.c @@ -945,6 +945,7 @@ return pci_legacy_resume_early(dev); pci_update_current_state(pci_dev, PCI_D0); + pci_restore_state(pci_dev); if (drv && drv->pm && drv->pm->thaw_noirq) error = drv->pm->thaw_noirq(dev); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/pinctrl/freescale/pinctrl-mxs.c +++ linux-raspi2-4.4.0/drivers/pinctrl/freescale/pinctrl-mxs.c @@ -195,6 +195,16 @@ return 0; } +static void mxs_pinctrl_rmwl(u32 value, u32 mask, u8 shift, void __iomem *reg) +{ + u32 tmp; + + tmp = readl(reg); + tmp &= ~(mask << shift); + tmp |= value << shift; + writel(tmp, reg); +} + static int mxs_pinctrl_set_mux(struct pinctrl_dev *pctldev, unsigned selector, unsigned group) { @@ -212,8 +222,7 @@ reg += bank * 0x20 + pin / 16 * 0x10; shift = pin % 16 * 2; - writel(0x3 << shift, reg + CLR); - writel(g->muxsel[i] << shift, reg + SET); + mxs_pinctrl_rmwl(g->muxsel[i], 0x3, shift, reg); } return 0; @@ -280,8 +289,7 @@ /* mA */ if (config & MA_PRESENT) { shift = pin % 8 * 4; - writel(0x3 << shift, reg + CLR); - writel(ma << shift, reg + SET); + mxs_pinctrl_rmwl(ma, 0x3, shift, reg); } /* vol */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/pinctrl/meson/pinctrl-meson8b.c +++ linux-raspi2-4.4.0/drivers/pinctrl/meson/pinctrl-meson8b.c @@ -732,8 +732,8 @@ static const char * const nand_groups[] = { "nand_io", "nand_io_ce0", "nand_io_ce1", "nand_io_rb0", "nand_ale", "nand_cle", - "nand_wen_clk", "nand_ren_clk", "nand_dqs0", - "nand_dqs1" + "nand_wen_clk", "nand_ren_clk", "nand_dqs_0", + "nand_dqs_1" }; static const char * const nor_groups[] = { only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/pinctrl/samsung/pinctrl-exynos.c +++ linux-raspi2-4.4.0/drivers/pinctrl/samsung/pinctrl-exynos.c @@ -194,8 +194,6 @@ spin_unlock_irqrestore(&bank->slock, flags); - exynos_irq_unmask(irqd); - return 0; } @@ -216,8 +214,6 @@ shift = irqd->hwirq * bank_type->fld_width[PINCFG_TYPE_FUNC]; mask = (1 << bank_type->fld_width[PINCFG_TYPE_FUNC]) - 1; - exynos_irq_mask(irqd); - spin_lock_irqsave(&bank->slock, flags); con = readl(d->virt_base + reg_con); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/pinctrl/sh-pfc/pfc-r8a7791.c +++ linux-raspi2-4.4.0/drivers/pinctrl/sh-pfc/pfc-r8a7791.c @@ -1102,7 +1102,7 @@ PINMUX_IPSR_MSEL(IP6_5_3, FMIN_E, SEL_FM_4), PINMUX_IPSR_DATA(IP6_7_6, AUDIO_CLKOUT), PINMUX_IPSR_MSEL(IP6_7_6, MSIOF1_SS1_B, SEL_SOF1_1), - PINMUX_IPSR_MSEL(IP6_5_3, TX2, SEL_SCIF2_0), + PINMUX_IPSR_MSEL(IP6_7_6, TX2, SEL_SCIF2_0), PINMUX_IPSR_MSEL(IP6_7_6, SCIFA2_TXD, SEL_SCIFA2_0), PINMUX_IPSR_DATA(IP6_9_8, IRQ0), PINMUX_IPSR_MSEL(IP6_9_8, SCIFB1_RXD_D, SEL_SCIFB1_3), only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/pinctrl/sunxi/pinctrl-sun4i-a10.c +++ linux-raspi2-4.4.0/drivers/pinctrl/sunxi/pinctrl-sun4i-a10.c @@ -811,6 +811,7 @@ SUNXI_FUNCTION(0x2, "lcd1"), /* D16 */ SUNXI_FUNCTION(0x3, "pata"), /* ATAD12 */ SUNXI_FUNCTION(0x4, "keypad"), /* IN6 */ + SUNXI_FUNCTION(0x5, "sim"), /* DET */ SUNXI_FUNCTION_IRQ(0x6, 16), /* EINT16 */ SUNXI_FUNCTION(0x7, "csi1")), /* D16 */ SUNXI_PIN(SUNXI_PINCTRL_PIN(H, 17), only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/pinctrl/sunxi/pinctrl-sun8i-a83t.c +++ linux-raspi2-4.4.0/drivers/pinctrl/sunxi/pinctrl-sun8i-a83t.c @@ -394,7 +394,7 @@ SUNXI_PIN(SUNXI_PINCTRL_PIN(E, 18), SUNXI_FUNCTION(0x0, "gpio_in"), SUNXI_FUNCTION(0x1, "gpio_out"), - SUNXI_FUNCTION(0x3, "owa")), /* DOUT */ + SUNXI_FUNCTION(0x3, "spdif")), /* DOUT */ SUNXI_PIN(SUNXI_PINCTRL_PIN(E, 19), SUNXI_FUNCTION(0x0, "gpio_in"), SUNXI_FUNCTION(0x1, "gpio_out")), only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/platform/x86/intel_mid_thermal.c +++ linux-raspi2-4.4.0/drivers/platform/x86/intel_mid_thermal.c @@ -550,6 +550,7 @@ { "msic_thermal", 1 }, { } }; +MODULE_DEVICE_TABLE(platform, therm_id_table); static struct platform_driver mid_thermal_driver = { .driver = { only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/regulator/fan53555.c +++ linux-raspi2-4.4.0/drivers/regulator/fan53555.c @@ -434,7 +434,10 @@ .name = "fan53555", .driver_data = FAN53555_VENDOR_FAIRCHILD }, { - .name = "syr82x", + .name = "syr827", + .driver_data = FAN53555_VENDOR_SILERGY + }, { + .name = "syr828", .driver_data = FAN53555_VENDOR_SILERGY }, { }, only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/s390/scsi/zfcp_aux.c +++ linux-raspi2-4.4.0/drivers/s390/scsi/zfcp_aux.c @@ -358,6 +358,8 @@ adapter->next_port_scan = jiffies; + adapter->erp_action.adapter = adapter; + if (zfcp_qdio_setup(adapter)) goto failed; @@ -514,6 +516,9 @@ port->dev.groups = zfcp_port_attr_groups; port->dev.release = zfcp_port_release; + port->erp_action.adapter = adapter; + port->erp_action.port = port; + if (dev_set_name(&port->dev, "0x%016llx", (unsigned long long)wwpn)) { kfree(port); goto err_out; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/s390/scsi/zfcp_fc.h +++ linux-raspi2-4.4.0/drivers/s390/scsi/zfcp_fc.h @@ -4,7 +4,7 @@ * Fibre Channel related definitions and inline functions for the zfcp * device driver * - * Copyright IBM Corp. 2009 + * Copyright IBM Corp. 2009, 2017 */ #ifndef ZFCP_FC_H @@ -279,6 +279,10 @@ !(rsp_flags & FCP_SNS_LEN_VAL) && fcp_rsp->resp.fr_status == SAM_STAT_GOOD) set_host_byte(scsi, DID_ERROR); + } else if (unlikely(rsp_flags & FCP_RESID_OVER)) { + /* FCP_DL was not sufficient for SCSI data length */ + if (fcp_rsp->resp.fr_status == SAM_STAT_GOOD) + set_host_byte(scsi, DID_ERROR); } } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/scsi/aacraid/aachba.c +++ linux-raspi2-4.4.0/drivers/scsi/aacraid/aachba.c @@ -2977,16 +2977,11 @@ return; BUG_ON(fibptr == NULL); - dev = fibptr->dev; - - scsi_dma_unmap(scsicmd); - /* expose physical device if expose_physicald flag is on */ - if (scsicmd->cmnd[0] == INQUIRY && !(scsicmd->cmnd[1] & 0x01) - && expose_physicals > 0) - aac_expose_phy_device(scsicmd); + dev = fibptr->dev; srbreply = (struct aac_srb_reply *) fib_data(fibptr); + scsicmd->sense_buffer[0] = '\0'; /* Initialize sense valid flag to false */ if (fibptr->flags & FIB_CONTEXT_FLAG_FASTRESP) { @@ -2999,158 +2994,176 @@ */ scsi_set_resid(scsicmd, scsi_bufflen(scsicmd) - le32_to_cpu(srbreply->data_xfer_length)); - /* - * First check the fib status - */ + } - if (le32_to_cpu(srbreply->status) != ST_OK) { - int len; - printk(KERN_WARNING "aac_srb_callback: srb failed, status = %d\n", le32_to_cpu(srbreply->status)); - len = min_t(u32, le32_to_cpu(srbreply->sense_data_size), - SCSI_SENSE_BUFFERSIZE); - scsicmd->result = DID_ERROR << 16 - | COMMAND_COMPLETE << 8 - | SAM_STAT_CHECK_CONDITION; - memcpy(scsicmd->sense_buffer, - srbreply->sense_data, len); - } + scsi_dma_unmap(scsicmd); - /* - * Next check the srb status - */ - switch ((le32_to_cpu(srbreply->srb_status))&0x3f) { - case SRB_STATUS_ERROR_RECOVERY: - case SRB_STATUS_PENDING: - case SRB_STATUS_SUCCESS: - scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8; - break; - case SRB_STATUS_DATA_OVERRUN: - switch (scsicmd->cmnd[0]) { - case READ_6: - case WRITE_6: - case READ_10: - case WRITE_10: - case READ_12: - case WRITE_12: - case READ_16: - case WRITE_16: - if (le32_to_cpu(srbreply->data_xfer_length) - < scsicmd->underflow) - printk(KERN_WARNING"aacraid: SCSI CMD underflow\n"); - else - printk(KERN_WARNING"aacraid: SCSI CMD Data Overrun\n"); - scsicmd->result = DID_ERROR << 16 - | COMMAND_COMPLETE << 8; - break; - case INQUIRY: { - scsicmd->result = DID_OK << 16 - | COMMAND_COMPLETE << 8; - break; - } - default: - scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8; - break; - } - break; - case SRB_STATUS_ABORTED: - scsicmd->result = DID_ABORT << 16 | ABORT << 8; - break; - case SRB_STATUS_ABORT_FAILED: - /* - * Not sure about this one - but assuming the - * hba was trying to abort for some reason - */ - scsicmd->result = DID_ERROR << 16 | ABORT << 8; - break; - case SRB_STATUS_PARITY_ERROR: - scsicmd->result = DID_PARITY << 16 - | MSG_PARITY_ERROR << 8; - break; - case SRB_STATUS_NO_DEVICE: - case SRB_STATUS_INVALID_PATH_ID: - case SRB_STATUS_INVALID_TARGET_ID: - case SRB_STATUS_INVALID_LUN: - case SRB_STATUS_SELECTION_TIMEOUT: - scsicmd->result = DID_NO_CONNECT << 16 - | COMMAND_COMPLETE << 8; - break; + /* expose physical device if expose_physicald flag is on */ + if (scsicmd->cmnd[0] == INQUIRY && !(scsicmd->cmnd[1] & 0x01) + && expose_physicals > 0) + aac_expose_phy_device(scsicmd); - case SRB_STATUS_COMMAND_TIMEOUT: - case SRB_STATUS_TIMEOUT: - scsicmd->result = DID_TIME_OUT << 16 - | COMMAND_COMPLETE << 8; - break; + /* + * First check the fib status + */ - case SRB_STATUS_BUSY: - scsicmd->result = DID_BUS_BUSY << 16 - | COMMAND_COMPLETE << 8; - break; + if (le32_to_cpu(srbreply->status) != ST_OK) { + int len; - case SRB_STATUS_BUS_RESET: - scsicmd->result = DID_RESET << 16 - | COMMAND_COMPLETE << 8; - break; + pr_warn("aac_srb_callback: srb failed, status = %d\n", + le32_to_cpu(srbreply->status)); + len = min_t(u32, le32_to_cpu(srbreply->sense_data_size), + SCSI_SENSE_BUFFERSIZE); + scsicmd->result = DID_ERROR << 16 + | COMMAND_COMPLETE << 8 + | SAM_STAT_CHECK_CONDITION; + memcpy(scsicmd->sense_buffer, + srbreply->sense_data, len); + } - case SRB_STATUS_MESSAGE_REJECTED: + /* + * Next check the srb status + */ + switch ((le32_to_cpu(srbreply->srb_status))&0x3f) { + case SRB_STATUS_ERROR_RECOVERY: + case SRB_STATUS_PENDING: + case SRB_STATUS_SUCCESS: + scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8; + break; + case SRB_STATUS_DATA_OVERRUN: + switch (scsicmd->cmnd[0]) { + case READ_6: + case WRITE_6: + case READ_10: + case WRITE_10: + case READ_12: + case WRITE_12: + case READ_16: + case WRITE_16: + if (le32_to_cpu(srbreply->data_xfer_length) + < scsicmd->underflow) + pr_warn("aacraid: SCSI CMD underflow\n"); + else + pr_warn("aacraid: SCSI CMD Data Overrun\n"); scsicmd->result = DID_ERROR << 16 - | MESSAGE_REJECT << 8; + | COMMAND_COMPLETE << 8; + break; + case INQUIRY: + scsicmd->result = DID_OK << 16 + | COMMAND_COMPLETE << 8; break; - case SRB_STATUS_REQUEST_FLUSHED: - case SRB_STATUS_ERROR: - case SRB_STATUS_INVALID_REQUEST: - case SRB_STATUS_REQUEST_SENSE_FAILED: - case SRB_STATUS_NO_HBA: - case SRB_STATUS_UNEXPECTED_BUS_FREE: - case SRB_STATUS_PHASE_SEQUENCE_FAILURE: - case SRB_STATUS_BAD_SRB_BLOCK_LENGTH: - case SRB_STATUS_DELAYED_RETRY: - case SRB_STATUS_BAD_FUNCTION: - case SRB_STATUS_NOT_STARTED: - case SRB_STATUS_NOT_IN_USE: - case SRB_STATUS_FORCE_ABORT: - case SRB_STATUS_DOMAIN_VALIDATION_FAIL: default: + scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8; + break; + } + break; + case SRB_STATUS_ABORTED: + scsicmd->result = DID_ABORT << 16 | ABORT << 8; + break; + case SRB_STATUS_ABORT_FAILED: + /* + * Not sure about this one - but assuming the + * hba was trying to abort for some reason + */ + scsicmd->result = DID_ERROR << 16 | ABORT << 8; + break; + case SRB_STATUS_PARITY_ERROR: + scsicmd->result = DID_PARITY << 16 + | MSG_PARITY_ERROR << 8; + break; + case SRB_STATUS_NO_DEVICE: + case SRB_STATUS_INVALID_PATH_ID: + case SRB_STATUS_INVALID_TARGET_ID: + case SRB_STATUS_INVALID_LUN: + case SRB_STATUS_SELECTION_TIMEOUT: + scsicmd->result = DID_NO_CONNECT << 16 + | COMMAND_COMPLETE << 8; + break; + + case SRB_STATUS_COMMAND_TIMEOUT: + case SRB_STATUS_TIMEOUT: + scsicmd->result = DID_TIME_OUT << 16 + | COMMAND_COMPLETE << 8; + break; + + case SRB_STATUS_BUSY: + scsicmd->result = DID_BUS_BUSY << 16 + | COMMAND_COMPLETE << 8; + break; + + case SRB_STATUS_BUS_RESET: + scsicmd->result = DID_RESET << 16 + | COMMAND_COMPLETE << 8; + break; + + case SRB_STATUS_MESSAGE_REJECTED: + scsicmd->result = DID_ERROR << 16 + | MESSAGE_REJECT << 8; + break; + case SRB_STATUS_REQUEST_FLUSHED: + case SRB_STATUS_ERROR: + case SRB_STATUS_INVALID_REQUEST: + case SRB_STATUS_REQUEST_SENSE_FAILED: + case SRB_STATUS_NO_HBA: + case SRB_STATUS_UNEXPECTED_BUS_FREE: + case SRB_STATUS_PHASE_SEQUENCE_FAILURE: + case SRB_STATUS_BAD_SRB_BLOCK_LENGTH: + case SRB_STATUS_DELAYED_RETRY: + case SRB_STATUS_BAD_FUNCTION: + case SRB_STATUS_NOT_STARTED: + case SRB_STATUS_NOT_IN_USE: + case SRB_STATUS_FORCE_ABORT: + case SRB_STATUS_DOMAIN_VALIDATION_FAIL: + default: #ifdef AAC_DETAILED_STATUS_INFO - printk(KERN_INFO "aacraid: SRB ERROR(%u) %s scsi cmd 0x%x - scsi status 0x%x\n", - le32_to_cpu(srbreply->srb_status) & 0x3F, - aac_get_status_string( - le32_to_cpu(srbreply->srb_status) & 0x3F), - scsicmd->cmnd[0], - le32_to_cpu(srbreply->scsi_status)); + pr_info("aacraid: SRB ERROR(%u) %s scsi cmd 0x%x -scsi status 0x%x\n", + le32_to_cpu(srbreply->srb_status) & 0x3F, + aac_get_status_string( + le32_to_cpu(srbreply->srb_status) & 0x3F), + scsicmd->cmnd[0], + le32_to_cpu(srbreply->scsi_status)); #endif - if ((scsicmd->cmnd[0] == ATA_12) - || (scsicmd->cmnd[0] == ATA_16)) { - if (scsicmd->cmnd[2] & (0x01 << 5)) { - scsicmd->result = DID_OK << 16 - | COMMAND_COMPLETE << 8; - break; - } else { - scsicmd->result = DID_ERROR << 16 - | COMMAND_COMPLETE << 8; - break; - } + /* + * When the CC bit is SET by the host in ATA pass thru CDB, + * driver is supposed to return DID_OK + * + * When the CC bit is RESET by the host, driver should + * return DID_ERROR + */ + if ((scsicmd->cmnd[0] == ATA_12) + || (scsicmd->cmnd[0] == ATA_16)) { + + if (scsicmd->cmnd[2] & (0x01 << 5)) { + scsicmd->result = DID_OK << 16 + | COMMAND_COMPLETE << 8; + break; } else { scsicmd->result = DID_ERROR << 16 | COMMAND_COMPLETE << 8; - break; + break; } + } else { + scsicmd->result = DID_ERROR << 16 + | COMMAND_COMPLETE << 8; + break; } - if (le32_to_cpu(srbreply->scsi_status) - == SAM_STAT_CHECK_CONDITION) { - int len; - - scsicmd->result |= SAM_STAT_CHECK_CONDITION; - len = min_t(u32, le32_to_cpu(srbreply->sense_data_size), - SCSI_SENSE_BUFFERSIZE); + } + if (le32_to_cpu(srbreply->scsi_status) + == SAM_STAT_CHECK_CONDITION) { + int len; + + scsicmd->result |= SAM_STAT_CHECK_CONDITION; + len = min_t(u32, le32_to_cpu(srbreply->sense_data_size), + SCSI_SENSE_BUFFERSIZE); #ifdef AAC_DETAILED_STATUS_INFO - printk(KERN_WARNING "aac_srb_callback: check condition, status = %d len=%d\n", - le32_to_cpu(srbreply->status), len); + pr_warn("aac_srb_callback: check condition, status = %d len=%d\n", + le32_to_cpu(srbreply->status), len); #endif - memcpy(scsicmd->sense_buffer, - srbreply->sense_data, len); - } + memcpy(scsicmd->sense_buffer, + srbreply->sense_data, len); } + /* * OR in the scsi status (already shifted up a bit) */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/scsi/device_handler/scsi_dh_emc.c +++ linux-raspi2-4.4.0/drivers/scsi/device_handler/scsi_dh_emc.c @@ -456,7 +456,7 @@ static int clariion_std_inquiry(struct scsi_device *sdev, struct clariion_dh_data *csdev) { - int err; + int err = SCSI_DH_OK; char *sp_model; err = send_inquiry_cmd(sdev, 0, csdev); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/scsi/fnic/fnic.h +++ linux-raspi2-4.4.0/drivers/scsi/fnic/fnic.h @@ -248,6 +248,7 @@ struct completion *remove_wait; /* device remove thread blocks */ atomic_t in_flight; /* io counter */ + bool internal_reset_inprogress; u32 _reserved; /* fill hole */ unsigned long state_flags; /* protected by host lock */ enum fnic_state state; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/scsi/fnic/fnic_scsi.c +++ linux-raspi2-4.4.0/drivers/scsi/fnic/fnic_scsi.c @@ -2533,6 +2533,19 @@ unsigned long wait_host_tmo; struct Scsi_Host *shost = sc->device->host; struct fc_lport *lp = shost_priv(shost); + struct fnic *fnic = lport_priv(lp); + unsigned long flags; + + spin_lock_irqsave(&fnic->fnic_lock, flags); + if (fnic->internal_reset_inprogress == 0) { + fnic->internal_reset_inprogress = 1; + } else { + spin_unlock_irqrestore(&fnic->fnic_lock, flags); + FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host, + "host reset in progress skipping another host reset\n"); + return SUCCESS; + } + spin_unlock_irqrestore(&fnic->fnic_lock, flags); /* * If fnic_reset is successful, wait for fabric login to complete @@ -2553,6 +2566,9 @@ } } + spin_lock_irqsave(&fnic->fnic_lock, flags); + fnic->internal_reset_inprogress = 0; + spin_unlock_irqrestore(&fnic->fnic_lock, flags); return ret; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/scsi/isci/remote_node_context.c +++ linux-raspi2-4.4.0/drivers/scsi/isci/remote_node_context.c @@ -66,6 +66,9 @@ { static const char * const strings[] = RNC_STATES; + if (state >= ARRAY_SIZE(strings)) + return "UNKNOWN"; + return strings[state]; } #undef C only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/scsi/scsi_transport_iscsi.c +++ linux-raspi2-4.4.0/drivers/scsi/scsi_transport_iscsi.c @@ -3697,7 +3697,7 @@ uint32_t group; nlh = nlmsg_hdr(skb); - if (nlh->nlmsg_len < sizeof(*nlh) || + if (nlh->nlmsg_len < sizeof(*nlh) + sizeof(*ev) || skb->len < nlh->nlmsg_len) { break; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/scsi/scsi_transport_sas.c +++ linux-raspi2-4.4.0/drivers/scsi/scsi_transport_sas.c @@ -367,6 +367,20 @@ EXPORT_SYMBOL(sas_remove_host); /** + * sas_get_address - return the SAS address of the device + * @sdev: scsi device + * + * Returns the SAS address of the scsi device + */ +u64 sas_get_address(struct scsi_device *sdev) +{ + struct sas_end_device *rdev = sas_sdev_to_rdev(sdev); + + return rdev->rphy.identify.sas_address; +} +EXPORT_SYMBOL(sas_get_address); + +/** * sas_tlr_supported - checking TLR bit in vpd 0x90 * @sdev: scsi device struct * only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/scsi/ses.c +++ linux-raspi2-4.4.0/drivers/scsi/ses.c @@ -34,6 +34,8 @@ #include #include +#include + struct ses_device { unsigned char *page1; unsigned char *page1_types; @@ -546,7 +548,6 @@ ecomp = &edev->component[components++]; if (!IS_ERR(ecomp)) { - ses_get_power_status(edev, ecomp); if (addl_desc_ptr) ses_process_descriptor( ecomp, @@ -579,31 +580,15 @@ static void ses_match_to_enclosure(struct enclosure_device *edev, struct scsi_device *sdev) { - unsigned char *desc; struct efd efd = { .addr = 0, }; ses_enclosure_data_process(edev, to_scsi_device(edev->edev.parent), 0); - if (!sdev->vpd_pg83_len) - return; + if (scsi_is_sas_rphy(sdev->sdev_target->dev.parent)) + efd.addr = sas_get_address(sdev); - desc = sdev->vpd_pg83 + 4; - while (desc < sdev->vpd_pg83 + sdev->vpd_pg83_len) { - enum scsi_protocol proto = desc[0] >> 4; - u8 code_set = desc[0] & 0x0f; - u8 piv = desc[1] & 0x80; - u8 assoc = (desc[1] & 0x30) >> 4; - u8 type = desc[1] & 0x0f; - u8 len = desc[3]; - - if (piv && code_set == 1 && assoc == 1 - && proto == SCSI_PROTOCOL_SAS && type == 3 && len == 8) - efd.addr = get_unaligned_be64(&desc[4]); - - desc += len + 4; - } if (efd.addr) { efd.dev = &sdev->sdev_gendev; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/scsi/snic/snic_main.c +++ linux-raspi2-4.4.0/drivers/scsi/snic/snic_main.c @@ -584,6 +584,7 @@ if (!pool) { SNIC_HOST_ERR(shost, "dflt sgl pool creation failed\n"); + ret = -ENOMEM; goto err_free_res; } @@ -594,6 +595,7 @@ if (!pool) { SNIC_HOST_ERR(shost, "max sgl pool creation failed\n"); + ret = -ENOMEM; goto err_free_dflt_sgl_pool; } @@ -604,6 +606,7 @@ if (!pool) { SNIC_HOST_ERR(shost, "snic tmreq info pool creation failed.\n"); + ret = -ENOMEM; goto err_free_max_sgl_pool; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/spi/spi-dw.c +++ linux-raspi2-4.4.0/drivers/spi/spi-dw.c @@ -107,7 +107,10 @@ static int dw_spi_debugfs_init(struct dw_spi *dws) { - dws->debugfs = debugfs_create_dir("dw_spi", NULL); + char name[128]; + + snprintf(name, 128, "dw_spi-%s", dev_name(&dws->master->dev)); + dws->debugfs = debugfs_create_dir(name, NULL); if (!dws->debugfs) return -ENOMEM; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/spmi/spmi.c +++ linux-raspi2-4.4.0/drivers/spmi/spmi.c @@ -364,11 +364,23 @@ return 0; } +static int spmi_drv_uevent(struct device *dev, struct kobj_uevent_env *env) +{ + int ret; + + ret = of_device_uevent_modalias(dev, env); + if (ret != -ENODEV) + return ret; + + return 0; +} + static struct bus_type spmi_bus_type = { .name = "spmi", .match = spmi_device_match, .probe = spmi_drv_probe, .remove = spmi_drv_remove, + .uevent = spmi_drv_uevent, }; /** only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/staging/comedi/comedi_fops.c +++ linux-raspi2-4.4.0/drivers/staging/comedi/comedi_fops.c @@ -2901,9 +2901,6 @@ comedi_class->dev_groups = comedi_dev_groups; - /* XXX requires /proc interface */ - comedi_proc_init(); - /* create devices files for legacy/manual use */ for (i = 0; i < comedi_num_legacy_minors; i++) { struct comedi_device *dev; @@ -2911,6 +2908,7 @@ dev = comedi_alloc_board_minor(NULL); if (IS_ERR(dev)) { comedi_cleanup_board_minors(); + class_destroy(comedi_class); cdev_del(&comedi_cdev); unregister_chrdev_region(MKDEV(COMEDI_MAJOR, 0), COMEDI_NUM_MINORS); @@ -2920,6 +2918,9 @@ mutex_unlock(&dev->mutex); } + /* XXX requires /proc interface */ + comedi_proc_init(); + return 0; } module_init(comedi_init); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/staging/iio/resolver/ad2s1210.c +++ linux-raspi2-4.4.0/drivers/staging/iio/resolver/ad2s1210.c @@ -468,7 +468,7 @@ long m) { struct ad2s1210_state *st = iio_priv(indio_dev); - bool negative; + u16 negative; int ret = 0; u16 pos; s16 vel; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/staging/iio/trigger/iio-trig-bfin-timer.c +++ linux-raspi2-4.4.0/drivers/staging/iio/trigger/iio-trig-bfin-timer.c @@ -259,7 +259,7 @@ out1: iio_trigger_unregister(st->trig); out: - iio_trigger_put(st->trig); + iio_trigger_free(st->trig); return ret; } @@ -272,7 +272,7 @@ peripheral_free(st->t->pin); free_irq(st->irq, st); iio_trigger_unregister(st->trig); - iio_trigger_put(st->trig); + iio_trigger_free(st->trig); return 0; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/staging/lustre/lustre/include/lustre/lustre_user.h +++ linux-raspi2-4.4.0/drivers/staging/lustre/lustre/include/lustre/lustre_user.h @@ -1063,23 +1063,21 @@ * \retval buffer */ static inline char *hai_dump_data_field(struct hsm_action_item *hai, - char *buffer, int len) + char *buffer, size_t len) { - int i, sz, data_len; + int i, data_len; char *ptr; ptr = buffer; - sz = len; data_len = hai->hai_len - sizeof(*hai); - for (i = 0 ; (i < data_len) && (sz > 0) ; i++) { - int cnt; - - cnt = snprintf(ptr, sz, "%.2X", - (unsigned char)hai->hai_data[i]); - ptr += cnt; - sz -= cnt; + for (i = 0; (i < data_len) && (len > 2); i++) { + snprintf(ptr, 3, "%02X", (unsigned char)hai->hai_data[i]); + ptr += 2; + len -= 2; } + *ptr = '\0'; + return buffer; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/staging/lustre/lustre/ldlm/ldlm_lock.c +++ linux-raspi2-4.4.0/drivers/staging/lustre/lustre/ldlm/ldlm_lock.c @@ -550,6 +550,13 @@ if (lock == NULL) return NULL; + if (lock->l_export && lock->l_export->exp_failed) { + CDEBUG(D_INFO, "lock export failed: lock %p, exp %p\n", + lock, lock->l_export); + LDLM_LOCK_PUT(lock); + return NULL; + } + /* It's unlikely but possible that someone marked the lock as * destroyed after we did handle2object on it */ if (flags == 0 && ((lock->l_flags & LDLM_FL_DESTROYED) == 0)) { only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/staging/lustre/lustre/llite/rw26.c +++ linux-raspi2-4.4.0/drivers/staging/lustre/lustre/llite/rw26.c @@ -376,6 +376,10 @@ if (!lli->lli_has_smd) return -EBADF; + /* Check EOF by ourselves */ + if (iov_iter_rw(iter) == READ && file_offset >= i_size_read(inode)) + return 0; + /* FIXME: io smaller than PAGE_SIZE is broken on ia64 ??? */ if ((file_offset & ~CFS_PAGE_MASK) || (count & ~CFS_PAGE_MASK)) return -EINVAL; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/staging/lustre/lustre/ptlrpc/service.c +++ linux-raspi2-4.4.0/drivers/staging/lustre/lustre/ptlrpc/service.c @@ -1240,20 +1240,15 @@ * it may hit swab race at LU-1044. */ if (req->rq_ops->hpreq_check) { rc = req->rq_ops->hpreq_check(req); - /** - * XXX: Out of all current - * ptlrpc_hpreq_ops::hpreq_check(), only - * ldlm_cancel_hpreq_check() can return an error code; - * other functions assert in similar places, which seems - * odd. What also does not seem right is that handlers - * for those RPCs do not assert on the same checks, but - * rather handle the error cases. e.g. see - * ost_rw_hpreq_check(), and ost_brw_read(), - * ost_brw_write(). + if (rc == -ESTALE) { + req->rq_status = rc; + ptlrpc_error(req); + } + /** can only return error, + * 0 for normal request, + * or 1 for high priority request */ - if (rc < 0) - return rc; - LASSERT(rc == 0 || rc == 1); + LASSERT(rc <= 1); } spin_lock_bh(&req->rq_export->exp_rpc_lock); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/staging/rtl8188eu/os_dep/usb_intf.c +++ linux-raspi2-4.4.0/drivers/staging/rtl8188eu/os_dep/usb_intf.c @@ -47,7 +47,9 @@ {USB_DEVICE(0x2001, 0x330F)}, /* DLink DWA-125 REV D1 */ {USB_DEVICE(0x2001, 0x3310)}, /* Dlink DWA-123 REV D1 */ {USB_DEVICE(0x2001, 0x3311)}, /* DLink GO-USB-N150 REV B1 */ + {USB_DEVICE(0x2357, 0x010c)}, /* TP-Link TL-WN722N v2 */ {USB_DEVICE(0x0df6, 0x0076)}, /* Sitecom N150 v2 */ + {USB_DEVICE(USB_VENDER_ID_REALTEK, 0xffef)}, /* Rosewill RNX-N150NUB */ {} /* Terminating entry */ }; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/staging/rtl8712/ieee80211.h +++ linux-raspi2-4.4.0/drivers/staging/rtl8712/ieee80211.h @@ -143,52 +143,52 @@ }; struct ieee80211_hdr { - u16 frame_ctl; - u16 duration_id; + __le16 frame_ctl; + __le16 duration_id; u8 addr1[ETH_ALEN]; u8 addr2[ETH_ALEN]; u8 addr3[ETH_ALEN]; - u16 seq_ctl; + __le16 seq_ctl; u8 addr4[ETH_ALEN]; -} __packed; +} __packed __aligned(2); struct ieee80211_hdr_3addr { - u16 frame_ctl; - u16 duration_id; + __le16 frame_ctl; + __le16 duration_id; u8 addr1[ETH_ALEN]; u8 addr2[ETH_ALEN]; u8 addr3[ETH_ALEN]; - u16 seq_ctl; -} __packed; + __le16 seq_ctl; +} __packed __aligned(2); struct ieee80211_hdr_qos { - u16 frame_ctl; - u16 duration_id; + __le16 frame_ctl; + __le16 duration_id; u8 addr1[ETH_ALEN]; u8 addr2[ETH_ALEN]; u8 addr3[ETH_ALEN]; - u16 seq_ctl; + __le16 seq_ctl; u8 addr4[ETH_ALEN]; - u16 qc; -} __packed; + __le16 qc; +} __packed __aligned(2); struct ieee80211_hdr_3addr_qos { - u16 frame_ctl; - u16 duration_id; + __le16 frame_ctl; + __le16 duration_id; u8 addr1[ETH_ALEN]; u8 addr2[ETH_ALEN]; u8 addr3[ETH_ALEN]; - u16 seq_ctl; - u16 qc; + __le16 seq_ctl; + __le16 qc; } __packed; struct eapol { u8 snap[6]; - u16 ethertype; + __be16 ethertype; u8 version; u8 type; - u16 length; + __le16 length; } __packed; @@ -528,13 +528,13 @@ */ struct ieee80211_header_data { - u16 frame_ctl; - u16 duration_id; + __le16 frame_ctl; + __le16 duration_id; u8 addr1[6]; u8 addr2[6]; u8 addr3[6]; - u16 seq_ctrl; -}; + __le16 seq_ctrl; +} __packed __aligned(2); #define BEACON_PROBE_SSID_ID_POSITION 12 @@ -566,18 +566,18 @@ /* * These are the data types that can make up management packets * - u16 auth_algorithm; - u16 auth_sequence; - u16 beacon_interval; - u16 capability; + __le16 auth_algorithm; + __le16 auth_sequence; + __le16 beacon_interval; + __le16 capability; u8 current_ap[ETH_ALEN]; - u16 listen_interval; + __le16 listen_interval; struct { u16 association_id:14, reserved:2; } __packed; - u32 time_stamp[2]; - u16 reason; - u16 status; + __le32 time_stamp[2]; + __le16 reason; + __le16 status; */ #define IEEE80211_DEFAULT_TX_ESSID "Penguin" @@ -585,16 +585,16 @@ struct ieee80211_authentication { struct ieee80211_header_data header; - u16 algorithm; - u16 transaction; - u16 status; + __le16 algorithm; + __le16 transaction; + __le16 status; } __packed; struct ieee80211_probe_response { struct ieee80211_header_data header; - u32 time_stamp[2]; - u16 beacon_interval; - u16 capability; + __le32 time_stamp[2]; + __le16 beacon_interval; + __le16 capability; struct ieee80211_info_element info_element; } __packed; @@ -604,16 +604,16 @@ struct ieee80211_assoc_request_frame { struct ieee80211_hdr_3addr header; - u16 capability; - u16 listen_interval; + __le16 capability; + __le16 listen_interval; struct ieee80211_info_element_hdr info_element; } __packed; struct ieee80211_assoc_response_frame { struct ieee80211_hdr_3addr header; - u16 capability; - u16 status; - u16 aid; + __le16 capability; + __le16 status; + __le16 aid; } __packed; struct ieee80211_txb { only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/staging/rtl8712/rtl871x_xmit.c +++ linux-raspi2-4.4.0/drivers/staging/rtl8712/rtl871x_xmit.c @@ -339,7 +339,8 @@ /* if in MP_STATE, update pkt_attrib from mp_txcmd, and overwrite * some settings above.*/ if (check_fwstate(pmlmepriv, WIFI_MP_STATE)) - pattrib->priority = (txdesc.txdw1 >> QSEL_SHT) & 0x1f; + pattrib->priority = + (le32_to_cpu(txdesc.txdw1) >> QSEL_SHT) & 0x1f; return _SUCCESS; } @@ -479,7 +480,7 @@ struct ieee80211_hdr *pwlanhdr = (struct ieee80211_hdr *)hdr; struct mlme_priv *pmlmepriv = &padapter->mlmepriv; struct qos_priv *pqospriv = &pmlmepriv->qospriv; - u16 *fctrl = &pwlanhdr->frame_ctl; + __le16 *fctrl = &pwlanhdr->frame_ctl; memset(hdr, 0, WLANHDR_OFFSET); SetFrameSubType(fctrl, pattrib->subtype); @@ -568,7 +569,7 @@ snap->oui[0] = oui[0]; snap->oui[1] = oui[1]; snap->oui[2] = oui[2]; - *(u16 *)(data + SNAP_SIZE) = htons(h_proto); + *(__be16 *)(data + SNAP_SIZE) = htons(h_proto); return SNAP_SIZE + sizeof(u16); } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/staging/rts5208/rtsx_scsi.c +++ linux-raspi2-4.4.0/drivers/staging/rts5208/rtsx_scsi.c @@ -414,7 +414,7 @@ sense->ascq = ascq; if (sns_key_info0 != 0) { sense->sns_key_info[0] = SKSV | sns_key_info0; - sense->sns_key_info[1] = (sns_key_info1 & 0xf0) >> 8; + sense->sns_key_info[1] = (sns_key_info1 & 0xf0) >> 4; sense->sns_key_info[2] = sns_key_info1 & 0x0f; } } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/staging/vt6656/main_usb.c +++ linux-raspi2-4.4.0/drivers/staging/vt6656/main_usb.c @@ -529,6 +529,9 @@ goto free_all; } + if (vnt_key_init_table(priv)) + goto free_all; + priv->int_interval = 1; /* bInterval is set to 1 */ vnt_int_start_interrupt(priv); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/target/iscsi/iscsi_target_erl0.c +++ linux-raspi2-4.4.0/drivers/target/iscsi/iscsi_target_erl0.c @@ -44,10 +44,8 @@ */ if (cmd->unsolicited_data) { cmd->seq_start_offset = cmd->write_data_done; - cmd->seq_end_offset = (cmd->write_data_done + - ((cmd->se_cmd.data_length > - conn->sess->sess_ops->FirstBurstLength) ? - conn->sess->sess_ops->FirstBurstLength : cmd->se_cmd.data_length)); + cmd->seq_end_offset = min(cmd->se_cmd.data_length, + conn->sess->sess_ops->FirstBurstLength); return; } @@ -930,8 +928,10 @@ } } -void iscsit_take_action_for_connection_exit(struct iscsi_conn *conn) +void iscsit_take_action_for_connection_exit(struct iscsi_conn *conn, bool *conn_freed) { + *conn_freed = false; + spin_lock_bh(&conn->state_lock); if (atomic_read(&conn->connection_exit)) { spin_unlock_bh(&conn->state_lock); @@ -942,6 +942,7 @@ if (conn->conn_state == TARG_CONN_STATE_IN_LOGOUT) { spin_unlock_bh(&conn->state_lock); iscsit_close_connection(conn); + *conn_freed = true; return; } @@ -955,4 +956,5 @@ spin_unlock_bh(&conn->state_lock); iscsit_handle_connection_cleanup(conn); + *conn_freed = true; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/target/iscsi/iscsi_target_erl0.h +++ linux-raspi2-4.4.0/drivers/target/iscsi/iscsi_target_erl0.h @@ -9,6 +9,6 @@ extern void iscsit_connection_reinstatement_rcfr(struct iscsi_conn *); extern void iscsit_cause_connection_reinstatement(struct iscsi_conn *, int); extern void iscsit_fall_back_to_erl0(struct iscsi_session *); -extern void iscsit_take_action_for_connection_exit(struct iscsi_conn *); +extern void iscsit_take_action_for_connection_exit(struct iscsi_conn *, bool *); #endif /*** ISCSI_TARGET_ERL0_H ***/ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/target/iscsi/iscsi_target_nego.c +++ linux-raspi2-4.4.0/drivers/target/iscsi/iscsi_target_nego.c @@ -489,14 +489,60 @@ static int iscsi_target_do_login(struct iscsi_conn *, struct iscsi_login *); -static bool iscsi_target_sk_state_check(struct sock *sk) +static bool __iscsi_target_sk_check_close(struct sock *sk) { if (sk->sk_state == TCP_CLOSE_WAIT || sk->sk_state == TCP_CLOSE) { - pr_debug("iscsi_target_sk_state_check: TCP_CLOSE_WAIT|TCP_CLOSE," + pr_debug("__iscsi_target_sk_check_close: TCP_CLOSE_WAIT|TCP_CLOSE," "returning FALSE\n"); - return false; + return true; } - return true; + return false; +} + +static bool iscsi_target_sk_check_close(struct iscsi_conn *conn) +{ + bool state = false; + + if (conn->sock) { + struct sock *sk = conn->sock->sk; + + read_lock_bh(&sk->sk_callback_lock); + state = (__iscsi_target_sk_check_close(sk) || + test_bit(LOGIN_FLAGS_CLOSED, &conn->login_flags)); + read_unlock_bh(&sk->sk_callback_lock); + } + return state; +} + +static bool iscsi_target_sk_check_flag(struct iscsi_conn *conn, unsigned int flag) +{ + bool state = false; + + if (conn->sock) { + struct sock *sk = conn->sock->sk; + + read_lock_bh(&sk->sk_callback_lock); + state = test_bit(flag, &conn->login_flags); + read_unlock_bh(&sk->sk_callback_lock); + } + return state; +} + +static bool iscsi_target_sk_check_and_clear(struct iscsi_conn *conn, unsigned int flag) +{ + bool state = false; + + if (conn->sock) { + struct sock *sk = conn->sock->sk; + + write_lock_bh(&sk->sk_callback_lock); + state = (__iscsi_target_sk_check_close(sk) || + test_bit(LOGIN_FLAGS_CLOSED, &conn->login_flags)); + if (!state) + clear_bit(flag, &conn->login_flags); + write_unlock_bh(&sk->sk_callback_lock); + } + return state; } static void iscsi_target_login_drop(struct iscsi_conn *conn, struct iscsi_login *login) @@ -536,6 +582,20 @@ pr_debug("entering iscsi_target_do_login_rx, conn: %p, %s:%d\n", conn, current->comm, current->pid); + /* + * If iscsi_target_do_login_rx() has been invoked by ->sk_data_ready() + * before initial PDU processing in iscsi_target_start_negotiation() + * has completed, go ahead and retry until it's cleared. + * + * Otherwise if the TCP connection drops while this is occuring, + * iscsi_target_start_negotiation() will detect the failure, call + * cancel_delayed_work_sync(&conn->login_work), and cleanup the + * remaining iscsi connection resources from iscsi_np process context. + */ + if (iscsi_target_sk_check_flag(conn, LOGIN_FLAGS_INITIAL_PDU)) { + schedule_delayed_work(&conn->login_work, msecs_to_jiffies(10)); + return; + } spin_lock(&tpg->tpg_state_lock); state = (tpg->tpg_state == TPG_STATE_ACTIVE); @@ -543,26 +603,12 @@ if (!state) { pr_debug("iscsi_target_do_login_rx: tpg_state != TPG_STATE_ACTIVE\n"); - iscsi_target_restore_sock_callbacks(conn); - iscsi_target_login_drop(conn, login); - iscsit_deaccess_np(np, tpg, tpg_np); - return; + goto err; } - if (conn->sock) { - struct sock *sk = conn->sock->sk; - - read_lock_bh(&sk->sk_callback_lock); - state = iscsi_target_sk_state_check(sk); - read_unlock_bh(&sk->sk_callback_lock); - - if (!state) { - pr_debug("iscsi_target_do_login_rx, TCP state CLOSE\n"); - iscsi_target_restore_sock_callbacks(conn); - iscsi_target_login_drop(conn, login); - iscsit_deaccess_np(np, tpg, tpg_np); - return; - } + if (iscsi_target_sk_check_close(conn)) { + pr_debug("iscsi_target_do_login_rx, TCP state CLOSE\n"); + goto err; } conn->login_kworker = current; @@ -580,34 +626,29 @@ flush_signals(current); conn->login_kworker = NULL; - if (rc < 0) { - iscsi_target_restore_sock_callbacks(conn); - iscsi_target_login_drop(conn, login); - iscsit_deaccess_np(np, tpg, tpg_np); - return; - } + if (rc < 0) + goto err; pr_debug("iscsi_target_do_login_rx after rx_login_io, %p, %s:%d\n", conn, current->comm, current->pid); rc = iscsi_target_do_login(conn, login); if (rc < 0) { - iscsi_target_restore_sock_callbacks(conn); - iscsi_target_login_drop(conn, login); - iscsit_deaccess_np(np, tpg, tpg_np); + goto err; } else if (!rc) { - if (conn->sock) { - struct sock *sk = conn->sock->sk; - - write_lock_bh(&sk->sk_callback_lock); - clear_bit(LOGIN_FLAGS_READ_ACTIVE, &conn->login_flags); - write_unlock_bh(&sk->sk_callback_lock); - } + if (iscsi_target_sk_check_and_clear(conn, LOGIN_FLAGS_READ_ACTIVE)) + goto err; } else if (rc == 1) { iscsi_target_nego_release(conn); iscsi_post_login_handler(np, conn, zero_tsih); iscsit_deaccess_np(np, tpg, tpg_np); } + return; + +err: + iscsi_target_restore_sock_callbacks(conn); + iscsi_target_login_drop(conn, login); + iscsit_deaccess_np(np, tpg, tpg_np); } static void iscsi_target_do_cleanup(struct work_struct *work) @@ -655,31 +696,54 @@ orig_state_change(sk); return; } + state = __iscsi_target_sk_check_close(sk); + pr_debug("__iscsi_target_sk_close_change: state: %d\n", state); + if (test_bit(LOGIN_FLAGS_READ_ACTIVE, &conn->login_flags)) { pr_debug("Got LOGIN_FLAGS_READ_ACTIVE=1 sk_state_change" " conn: %p\n", conn); + if (state) + set_bit(LOGIN_FLAGS_CLOSED, &conn->login_flags); write_unlock_bh(&sk->sk_callback_lock); orig_state_change(sk); return; } - if (test_and_set_bit(LOGIN_FLAGS_CLOSED, &conn->login_flags)) { + if (test_bit(LOGIN_FLAGS_CLOSED, &conn->login_flags)) { pr_debug("Got LOGIN_FLAGS_CLOSED=1 sk_state_change conn: %p\n", conn); write_unlock_bh(&sk->sk_callback_lock); orig_state_change(sk); return; } + /* + * If the TCP connection has dropped, go ahead and set LOGIN_FLAGS_CLOSED, + * but only queue conn->login_work -> iscsi_target_do_login_rx() + * processing if LOGIN_FLAGS_INITIAL_PDU has already been cleared. + * + * When iscsi_target_do_login_rx() runs, iscsi_target_sk_check_close() + * will detect the dropped TCP connection from delayed workqueue context. + * + * If LOGIN_FLAGS_INITIAL_PDU is still set, which means the initial + * iscsi_target_start_negotiation() is running, iscsi_target_do_login() + * via iscsi_target_sk_check_close() or iscsi_target_start_negotiation() + * via iscsi_target_sk_check_and_clear() is responsible for detecting the + * dropped TCP connection in iscsi_np process context, and cleaning up + * the remaining iscsi connection resources. + */ + if (state) { + pr_debug("iscsi_target_sk_state_change got failed state\n"); + set_bit(LOGIN_FLAGS_CLOSED, &conn->login_flags); + state = test_bit(LOGIN_FLAGS_INITIAL_PDU, &conn->login_flags); + write_unlock_bh(&sk->sk_callback_lock); - state = iscsi_target_sk_state_check(sk); - write_unlock_bh(&sk->sk_callback_lock); - - pr_debug("iscsi_target_sk_state_change: state: %d\n", state); + orig_state_change(sk); - if (!state) { - pr_debug("iscsi_target_sk_state_change got failed state\n"); - schedule_delayed_work(&conn->login_cleanup_work, 0); + if (!state) + schedule_delayed_work(&conn->login_work, 0); return; } + write_unlock_bh(&sk->sk_callback_lock); + orig_state_change(sk); } @@ -818,7 +882,8 @@ SENDER_TARGET, login->rsp_buf, &login->rsp_length, - conn->param_list); + conn->param_list, + conn->tpg->tpg_attrib.login_keys_workaround); if (ret < 0) return -1; @@ -888,7 +953,8 @@ SENDER_TARGET, login->rsp_buf, &login->rsp_length, - conn->param_list); + conn->param_list, + conn->tpg->tpg_attrib.login_keys_workaround); if (ret < 0) { iscsit_tx_login_rsp(conn, ISCSI_STATUS_CLS_INITIATOR_ERR, ISCSI_LOGIN_STATUS_INIT_ERR); @@ -942,6 +1008,15 @@ if (iscsi_target_handle_csg_one(conn, login) < 0) return -1; if (login_rsp->flags & ISCSI_FLAG_LOGIN_TRANSIT) { + /* + * Check to make sure the TCP connection has not + * dropped asynchronously while session reinstatement + * was occuring in this kthread context, before + * transitioning to full feature phase operation. + */ + if (iscsi_target_sk_check_close(conn)) + return -1; + login->tsih = conn->sess->tsih; login->login_complete = 1; iscsi_target_restore_sock_callbacks(conn); @@ -968,21 +1043,6 @@ break; } - if (conn->sock) { - struct sock *sk = conn->sock->sk; - bool state; - - read_lock_bh(&sk->sk_callback_lock); - state = iscsi_target_sk_state_check(sk); - read_unlock_bh(&sk->sk_callback_lock); - - if (!state) { - pr_debug("iscsi_target_do_login() failed state for" - " conn: %p\n", conn); - return -1; - } - } - return 0; } @@ -1246,16 +1306,28 @@ { int ret; + if (conn->sock) { + struct sock *sk = conn->sock->sk; + + write_lock_bh(&sk->sk_callback_lock); + set_bit(LOGIN_FLAGS_READY, &conn->login_flags); + set_bit(LOGIN_FLAGS_INITIAL_PDU, &conn->login_flags); + write_unlock_bh(&sk->sk_callback_lock); + } + /* + * If iscsi_target_do_login returns zero to signal more PDU + * exchanges are required to complete the login, go ahead and + * clear LOGIN_FLAGS_INITIAL_PDU but only if the TCP connection + * is still active. + * + * Otherwise if TCP connection dropped asynchronously, go ahead + * and perform connection cleanup now. + */ ret = iscsi_target_do_login(conn, login); - if (!ret) { - if (conn->sock) { - struct sock *sk = conn->sock->sk; - - write_lock_bh(&sk->sk_callback_lock); - set_bit(LOGIN_FLAGS_READY, &conn->login_flags); - write_unlock_bh(&sk->sk_callback_lock); - } - } else if (ret < 0) { + if (!ret && iscsi_target_sk_check_and_clear(conn, LOGIN_FLAGS_INITIAL_PDU)) + ret = -1; + + if (ret < 0) { cancel_delayed_work_sync(&conn->login_work); cancel_delayed_work_sync(&conn->login_cleanup_work); iscsi_target_restore_sock_callbacks(conn); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/target/iscsi/iscsi_target_parameters.h +++ linux-raspi2-4.4.0/drivers/target/iscsi/iscsi_target_parameters.h @@ -40,7 +40,7 @@ extern int iscsi_update_param_value(struct iscsi_param *, char *); extern int iscsi_decode_text_input(u8, u8, char *, u32, struct iscsi_conn *); extern int iscsi_encode_text_output(u8, u8, char *, u32 *, - struct iscsi_param_list *); + struct iscsi_param_list *, bool); extern int iscsi_check_negotiated_keys(struct iscsi_param_list *); extern void iscsi_set_connection_parameters(struct iscsi_conn_ops *, struct iscsi_param_list *); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/target/target_core_fabric_configfs.c +++ linux-raspi2-4.4.0/drivers/target/target_core_fabric_configfs.c @@ -92,6 +92,11 @@ pr_err("Source se_lun->lun_se_dev does not exist\n"); return -EINVAL; } + if (lun->lun_shutdown) { + pr_err("Unable to create mappedlun symlink because" + " lun->lun_shutdown=true\n"); + return -EINVAL; + } se_tpg = lun->lun_tpg; nacl_ci = &lun_acl_ci->ci_parent->ci_group->cg_item; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/tty/hvc/hvc_console.h +++ linux-raspi2-4.4.0/drivers/tty/hvc/hvc_console.h @@ -60,6 +60,7 @@ struct winsize ws; struct work_struct tty_resize; struct list_head next; + unsigned long flags; }; /* implemented by a low level driver */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/tty/hvc/hvc_irq.c +++ linux-raspi2-4.4.0/drivers/tty/hvc/hvc_irq.c @@ -14,6 +14,11 @@ /* if hvc_poll request a repoll, then kick the hvcd thread */ if (hvc_poll(dev_instance)) hvc_kick(); + + /* + * We're safe to always return IRQ_HANDLED as the hvcd thread will + * iterate through each hvc_struct. + */ return IRQ_HANDLED; } @@ -28,8 +33,8 @@ hp->irq_requested = 0; return 0; } - rc = request_irq(irq, hvc_handle_interrupt, 0, - "hvc_console", hp); + rc = request_irq(irq, hvc_handle_interrupt, hp->flags, + "hvc_console", hp); if (!rc) hp->irq_requested = 1; return rc; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/tty/hvc/hvc_opal.c +++ linux-raspi2-4.4.0/drivers/tty/hvc/hvc_opal.c @@ -214,7 +214,13 @@ dev->dev.of_node->full_name, boot ? " (boot console)" : ""); - irq = opal_event_request(ilog2(OPAL_EVENT_CONSOLE_INPUT)); + irq = irq_of_parse_and_map(dev->dev.of_node, 0); + if (!irq) { + pr_info("hvc%d: No interrupts property, using OPAL event\n", + termno); + irq = opal_event_request(ilog2(OPAL_EVENT_CONSOLE_INPUT)); + } + if (!irq) { pr_err("hvc_opal: Unable to map interrupt for device %s\n", dev->dev.of_node->full_name); @@ -224,6 +230,9 @@ hp = hvc_alloc(termno, irq, ops, MAX_VIO_PUT_CHARS); if (IS_ERR(hp)) return PTR_ERR(hp); + + /* hvc consoles on powernv may need to share a single irq */ + hp->flags = IRQF_SHARED; dev_set_drvdata(&dev->dev, hp); return 0; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/tty/vt/selection.c +++ linux-raspi2-4.4.0/drivers/tty/vt/selection.c @@ -347,6 +347,8 @@ console_unlock(); ld = tty_ldisc_ref_wait(tty); + if (!ld) + return -EIO; /* ldisc was hung up */ tty_buffer_lock_exclusive(&vc->port); add_wait_queue(&vc->paste_wait, &wait); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/usb/core/usb-acpi.c +++ linux-raspi2-4.4.0/drivers/usb/core/usb-acpi.c @@ -127,6 +127,22 @@ */ #define USB_ACPI_LOCATION_VALID (1 << 31) +static struct acpi_device *usb_acpi_find_port(struct acpi_device *parent, + int raw) +{ + struct acpi_device *adev; + + if (!parent) + return NULL; + + list_for_each_entry(adev, &parent->children, node) { + if (acpi_device_adr(adev) == raw) + return adev; + } + + return acpi_find_child_device(parent, raw, false); +} + static struct acpi_device *usb_acpi_find_companion(struct device *dev) { struct usb_device *udev; @@ -174,8 +190,10 @@ int raw; raw = usb_hcd_find_raw_port_number(hcd, port1); - adev = acpi_find_child_device(ACPI_COMPANION(&udev->dev), - raw, false); + + adev = usb_acpi_find_port(ACPI_COMPANION(&udev->dev), + raw); + if (!adev) return NULL; } else { @@ -186,7 +204,9 @@ return NULL; acpi_bus_get_device(parent_handle, &adev); - adev = acpi_find_child_device(adev, port1, false); + + adev = usb_acpi_find_port(adev, port1); + if (!adev) return NULL; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/usb/dwc3/dwc3-st.c +++ linux-raspi2-4.4.0/drivers/usb/dwc3/dwc3-st.c @@ -224,7 +224,7 @@ dwc3_data->syscfg_reg_off = res->start; - dev_vdbg(&pdev->dev, "glue-logic addr 0x%p, syscfg-reg offset 0x%x\n", + dev_vdbg(&pdev->dev, "glue-logic addr 0x%pK, syscfg-reg offset 0x%x\n", dwc3_data->glue_base, dwc3_data->syscfg_reg_off); dwc3_data->rstc_pwrdn = devm_reset_control_get(dev, "powerdown"); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/usb/gadget/function/f_hid.c +++ linux-raspi2-4.4.0/drivers/usb/gadget/function/f_hid.c @@ -539,7 +539,7 @@ } status = usb_ep_enable(hidg->out_ep); if (status < 0) { - ERROR(cdev, "Enable IN endpoint FAILED!\n"); + ERROR(cdev, "Enable OUT endpoint FAILED!\n"); goto fail; } hidg->out_ep->driver_data = hidg; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/usb/gadget/udc/atmel_usba_udc.c +++ linux-raspi2-4.4.0/drivers/usb/gadget/udc/atmel_usba_udc.c @@ -28,6 +28,8 @@ #include #include "atmel_usba_udc.h" +#define USBA_VBUS_IRQFLAGS (IRQF_ONESHOT \ + | IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING) #ifdef CONFIG_USB_GADGET_DEBUG_FS #include @@ -2185,7 +2187,7 @@ IRQ_NOAUTOEN); ret = devm_request_threaded_irq(&pdev->dev, gpio_to_irq(udc->vbus_pin), NULL, - usba_vbus_irq_thread, IRQF_ONESHOT, + usba_vbus_irq_thread, USBA_VBUS_IRQFLAGS, "atmel_usba_udc", udc); if (ret) { udc->vbus_pin = -ENODEV; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/usb/host/pci-quirks.c +++ linux-raspi2-4.4.0/drivers/usb/host/pci-quirks.c @@ -78,6 +78,16 @@ #define USB_INTEL_USB3_PSSEN 0xD8 #define USB_INTEL_USB3PRM 0xDC +/* ASMEDIA quirk use */ +#define ASMT_DATA_WRITE0_REG 0xF8 +#define ASMT_DATA_WRITE1_REG 0xFC +#define ASMT_CONTROL_REG 0xE0 +#define ASMT_CONTROL_WRITE_BIT 0x02 +#define ASMT_WRITEREG_CMD 0x10423 +#define ASMT_FLOWCTL_ADDR 0xFA30 +#define ASMT_FLOWCTL_DATA 0xBA +#define ASMT_PSEUDO_DATA 0 + /* * amd_chipset_gen values represent AMD different chipset generations */ @@ -89,6 +99,7 @@ AMD_CHIPSET_HUDSON2, AMD_CHIPSET_BOLTON, AMD_CHIPSET_YANGTZE, + AMD_CHIPSET_TAISHAN, AMD_CHIPSET_UNKNOWN, }; @@ -136,20 +147,26 @@ pinfo->smbus_dev = pci_get_device(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_HUDSON2_SMBUS, NULL); - if (!pinfo->smbus_dev) { - pinfo->sb_type.gen = NOT_AMD_CHIPSET; - return 0; + if (pinfo->smbus_dev) { + rev = pinfo->smbus_dev->revision; + if (rev >= 0x11 && rev <= 0x14) + pinfo->sb_type.gen = AMD_CHIPSET_HUDSON2; + else if (rev >= 0x15 && rev <= 0x18) + pinfo->sb_type.gen = AMD_CHIPSET_BOLTON; + else if (rev >= 0x39 && rev <= 0x3a) + pinfo->sb_type.gen = AMD_CHIPSET_YANGTZE; + } else { + pinfo->smbus_dev = pci_get_device(PCI_VENDOR_ID_AMD, + 0x145c, NULL); + if (pinfo->smbus_dev) { + rev = pinfo->smbus_dev->revision; + pinfo->sb_type.gen = AMD_CHIPSET_TAISHAN; + } else { + pinfo->sb_type.gen = NOT_AMD_CHIPSET; + return 0; + } } - - rev = pinfo->smbus_dev->revision; - if (rev >= 0x11 && rev <= 0x14) - pinfo->sb_type.gen = AMD_CHIPSET_HUDSON2; - else if (rev >= 0x15 && rev <= 0x18) - pinfo->sb_type.gen = AMD_CHIPSET_BOLTON; - else if (rev >= 0x39 && rev <= 0x3a) - pinfo->sb_type.gen = AMD_CHIPSET_YANGTZE; } - pinfo->sb_type.rev = rev; return 1; } @@ -251,11 +268,12 @@ { /* Make sure amd chipset type has already been initialized */ usb_amd_find_chipset_info(); - if (amd_chipset.sb_type.gen != AMD_CHIPSET_YANGTZE) - return 0; - - dev_dbg(&pdev->dev, "QUIRK: Enable AMD remote wakeup fix\n"); - return 1; + if (amd_chipset.sb_type.gen == AMD_CHIPSET_YANGTZE || + amd_chipset.sb_type.gen == AMD_CHIPSET_TAISHAN) { + dev_dbg(&pdev->dev, "QUIRK: Enable AMD remote wakeup fix\n"); + return 1; + } + return 0; } EXPORT_SYMBOL_GPL(usb_hcd_amd_remote_wakeup_quirk); @@ -413,6 +431,50 @@ } EXPORT_SYMBOL_GPL(usb_amd_quirk_pll_disable); +static int usb_asmedia_wait_write(struct pci_dev *pdev) +{ + unsigned long retry_count; + unsigned char value; + + for (retry_count = 1000; retry_count > 0; --retry_count) { + + pci_read_config_byte(pdev, ASMT_CONTROL_REG, &value); + + if (value == 0xff) { + dev_err(&pdev->dev, "%s: check_ready ERROR", __func__); + return -EIO; + } + + if ((value & ASMT_CONTROL_WRITE_BIT) == 0) + return 0; + + usleep_range(40, 60); + } + + dev_warn(&pdev->dev, "%s: check_write_ready timeout", __func__); + return -ETIMEDOUT; +} + +void usb_asmedia_modifyflowcontrol(struct pci_dev *pdev) +{ + if (usb_asmedia_wait_write(pdev) != 0) + return; + + /* send command and address to device */ + pci_write_config_dword(pdev, ASMT_DATA_WRITE0_REG, ASMT_WRITEREG_CMD); + pci_write_config_dword(pdev, ASMT_DATA_WRITE1_REG, ASMT_FLOWCTL_ADDR); + pci_write_config_byte(pdev, ASMT_CONTROL_REG, ASMT_CONTROL_WRITE_BIT); + + if (usb_asmedia_wait_write(pdev) != 0) + return; + + /* send data to device */ + pci_write_config_dword(pdev, ASMT_DATA_WRITE0_REG, ASMT_FLOWCTL_DATA); + pci_write_config_dword(pdev, ASMT_DATA_WRITE1_REG, ASMT_PSEUDO_DATA); + pci_write_config_byte(pdev, ASMT_CONTROL_REG, ASMT_CONTROL_WRITE_BIT); +} +EXPORT_SYMBOL_GPL(usb_asmedia_modifyflowcontrol); + void usb_amd_quirk_pll_enable(void) { usb_amd_quirk_pll(0); @@ -961,7 +1023,7 @@ * * Takes care of the handoff between the Pre-OS (i.e. BIOS) and the OS. * It signals to the BIOS that the OS wants control of the host controller, - * and then waits 5 seconds for the BIOS to hand over control. + * and then waits 1 second for the BIOS to hand over control. * If we timeout, assume the BIOS is broken and take control anyway. */ static void quirk_usb_handoff_xhci(struct pci_dev *pdev) @@ -1007,9 +1069,9 @@ if (val & XHCI_HC_BIOS_OWNED) { writel(val | XHCI_HC_OS_OWNED, base + ext_cap_offset); - /* Wait for 5 seconds with 10 microsecond polling interval */ + /* Wait for 1 second with 10 microsecond polling interval */ timeout = handshake(base + ext_cap_offset, XHCI_HC_BIOS_OWNED, - 0, 5000, 10); + 0, 1000000, 10); /* Assume a buggy BIOS and take HC ownership anyway */ if (timeout) { @@ -1038,7 +1100,7 @@ * operational or runtime registers. Wait 5 seconds and no more. */ timeout = handshake(op_reg_base + XHCI_STS_OFFSET, XHCI_STS_CNR, 0, - 5000, 10); + 5000000, 10); /* Assume a buggy HC and start HC initialization anyway */ if (timeout) { val = readl(op_reg_base + XHCI_STS_OFFSET); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/usb/host/pci-quirks.h +++ linux-raspi2-4.4.0/drivers/usb/host/pci-quirks.h @@ -11,6 +11,7 @@ void usb_amd_dev_put(void); void usb_amd_quirk_pll_disable(void); void usb_amd_quirk_pll_enable(void); +void usb_asmedia_modifyflowcontrol(struct pci_dev *pdev); void usb_enable_intel_xhci_ports(struct pci_dev *xhci_pdev); void usb_disable_xhci_ports(struct pci_dev *xhci_pdev); void sb800_prefetch(struct device *dev, int on); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/usb/musb/sunxi.c +++ linux-raspi2-4.4.0/drivers/usb/musb/sunxi.c @@ -320,6 +320,8 @@ if (test_bit(SUNXI_MUSB_FL_HAS_SRAM, &glue->flags)) sunxi_sram_release(musb->controller->parent); + devm_usb_put_phy(glue->dev, glue->xceiv); + return 0; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/usb/renesas_usbhs/common.c +++ linux-raspi2-4.4.0/drivers/usb/renesas_usbhs/common.c @@ -733,8 +733,10 @@ struct usbhs_priv *priv = dev_get_drvdata(dev); struct platform_device *pdev = usbhs_priv_to_pdev(priv); - if (!usbhsc_flags_has(priv, USBHSF_RUNTIME_PWCTRL)) + if (!usbhsc_flags_has(priv, USBHSF_RUNTIME_PWCTRL)) { usbhsc_power_ctrl(priv, 1); + usbhs_mod_autonomy_mode(priv); + } usbhs_platform_call(priv, phy_reset, pdev); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/usb/serial/console.c +++ linux-raspi2-4.4.0/drivers/usb/serial/console.c @@ -189,6 +189,7 @@ tty_kref_put(tty); reset_open_count: port->port.count = 0; + info->port = NULL; usb_autopm_put_interface(serial->interface); error_get_interface: usb_serial_put(serial); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/usb/serial/metro-usb.c +++ linux-raspi2-4.4.0/drivers/usb/serial/metro-usb.c @@ -45,6 +45,7 @@ static const struct usb_device_id id_table[] = { { USB_DEVICE(FOCUS_VENDOR_ID, FOCUS_PRODUCT_ID_BI) }, { USB_DEVICE(FOCUS_VENDOR_ID, FOCUS_PRODUCT_ID_UNI) }, + { USB_DEVICE_INTERFACE_CLASS(0x0c2e, 0x0730, 0xff) }, /* MS7820 */ { }, /* Terminating entry. */ }; MODULE_DEVICE_TABLE(usb, id_table); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/usb/storage/isd200.c +++ linux-raspi2-4.4.0/drivers/usb/storage/isd200.c @@ -1520,8 +1520,11 @@ /* Make sure driver was initialized */ - if (us->extra == NULL) + if (us->extra == NULL) { usb_stor_dbg(us, "ERROR Driver not initialized\n"); + srb->result = DID_ERROR << 16; + return; + } scsi_set_resid(srb, 0); /* scsi_bufflen might change in protocol translation to ata */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/usb/storage/uas-detect.h +++ linux-raspi2-4.4.0/drivers/usb/storage/uas-detect.h @@ -9,7 +9,8 @@ intf->desc.bInterfaceProtocol == USB_PR_UAS); } -static int uas_find_uas_alt_setting(struct usb_interface *intf) +static struct usb_host_interface *uas_find_uas_alt_setting( + struct usb_interface *intf) { int i; @@ -17,10 +18,10 @@ struct usb_host_interface *alt = &intf->altsetting[i]; if (uas_is_interface(alt)) - return alt->desc.bAlternateSetting; + return alt; } - return -ENODEV; + return NULL; } static int uas_find_endpoints(struct usb_host_interface *alt, @@ -58,14 +59,14 @@ struct usb_device *udev = interface_to_usbdev(intf); struct usb_hcd *hcd = bus_to_hcd(udev->bus); unsigned long flags = id->driver_info; - int r, alt; - + struct usb_host_interface *alt; + int r; alt = uas_find_uas_alt_setting(intf); - if (alt < 0) + if (!alt) return 0; - r = uas_find_endpoints(&intf->altsetting[alt], eps); + r = uas_find_endpoints(alt, eps); if (r < 0) return 0; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/usb/usbip/stub_main.c +++ linux-raspi2-4.4.0/drivers/usb/usbip/stub_main.c @@ -262,7 +262,11 @@ kmem_cache_free(stub_priv_cache, priv); kfree(urb->transfer_buffer); + urb->transfer_buffer = NULL; + kfree(urb->setup_packet); + urb->setup_packet = NULL; + usb_free_urb(urb); } } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/usb/usbip/stub_tx.c +++ linux-raspi2-4.4.0/drivers/usb/usbip/stub_tx.c @@ -28,7 +28,11 @@ struct urb *urb = priv->urb; kfree(urb->setup_packet); + urb->setup_packet = NULL; + kfree(urb->transfer_buffer); + urb->transfer_buffer = NULL; + list_del(&priv->list); kmem_cache_free(stub_priv_cache, priv); usb_free_urb(urb); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/uwb/uwbd.c +++ linux-raspi2-4.4.0/drivers/uwb/uwbd.c @@ -303,18 +303,22 @@ /** Start the UWB daemon */ void uwbd_start(struct uwb_rc *rc) { - rc->uwbd.task = kthread_run(uwbd, rc, "uwbd"); - if (rc->uwbd.task == NULL) + struct task_struct *task = kthread_run(uwbd, rc, "uwbd"); + if (IS_ERR(task)) { + rc->uwbd.task = NULL; printk(KERN_ERR "UWB: Cannot start management daemon; " "UWB won't work\n"); - else + } else { + rc->uwbd.task = task; rc->uwbd.pid = rc->uwbd.task->pid; + } } /* Stop the UWB daemon and free any unprocessed events */ void uwbd_stop(struct uwb_rc *rc) { - kthread_stop(rc->uwbd.task); + if (rc->uwbd.task) + kthread_stop(rc->uwbd.task); uwbd_flush(rc); } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/vfio/pci/vfio_pci_rdwr.c +++ linux-raspi2-4.4.0/drivers/vfio/pci/vfio_pci_rdwr.c @@ -190,7 +190,10 @@ if (!vdev->has_vga) return -EINVAL; - switch (pos) { + if (pos > 0xbfffful) + return -EINVAL; + + switch ((u32)pos) { case 0xa0000 ... 0xbffff: count = min(count, (size_t)(0xc0000 - pos)); iomem = ioremap_nocache(0xa0000, 0xbffff - 0xa0000 + 1); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/vfio/vfio.c +++ linux-raspi2-4.4.0/drivers/vfio/vfio.c @@ -296,6 +296,34 @@ kref_put_mutex(&group->kref, vfio_group_release, &vfio.group_lock); } +struct vfio_group_put_work { + struct work_struct work; + struct vfio_group *group; +}; + +static void vfio_group_put_bg(struct work_struct *work) +{ + struct vfio_group_put_work *do_work; + + do_work = container_of(work, struct vfio_group_put_work, work); + + vfio_group_put(do_work->group); + kfree(do_work); +} + +static void vfio_group_schedule_put(struct vfio_group *group) +{ + struct vfio_group_put_work *do_work; + + do_work = kmalloc(sizeof(*do_work), GFP_KERNEL); + if (WARN_ON(!do_work)) + return; + + INIT_WORK(&do_work->work, vfio_group_put_bg); + do_work->group = group; + schedule_work(&do_work->work); +} + /* Assume group_lock or group reference is held */ static void vfio_group_get(struct vfio_group *group) { @@ -620,7 +648,14 @@ break; } - vfio_group_put(group); + /* + * If we're the last reference to the group, the group will be + * released, which includes unregistering the iommu group notifier. + * We hold a read-lock on that notifier list, unregistering needs + * a write-lock... deadlock. Release our reference asynchronously + * to avoid that situation. + */ + vfio_group_schedule_put(group); return NOTIFY_OK; } @@ -1552,6 +1587,15 @@ } EXPORT_SYMBOL_GPL(vfio_group_put_external_user); +bool vfio_external_group_match_file(struct vfio_group *test_group, + struct file *filep) +{ + struct vfio_group *group = filep->private_data; + + return (filep->f_op == &vfio_group_fops) && (group == test_group); +} +EXPORT_SYMBOL_GPL(vfio_external_group_match_file); + int vfio_external_user_iommu_id(struct vfio_group *group) { return iommu_group_id(group->iommu_group); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/video/fbdev/aty/atyfb_base.c +++ linux-raspi2-4.4.0/drivers/video/fbdev/aty/atyfb_base.c @@ -1861,7 +1861,7 @@ #if defined(DEBUG) && defined(CONFIG_FB_ATY_CT) case ATYIO_CLKR: if (M64_HAS(INTEGRATED)) { - struct atyclk clk; + struct atyclk clk = { 0 }; union aty_pll *pll = &par->pll; u32 dsp_config = pll->ct.dsp_config; u32 dsp_on_off = pll->ct.dsp_on_off; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/video/fbdev/cobalt_lcdfb.c +++ linux-raspi2-4.4.0/drivers/video/fbdev/cobalt_lcdfb.c @@ -350,6 +350,11 @@ info->screen_size = resource_size(res); info->screen_base = devm_ioremap(&dev->dev, res->start, info->screen_size); + if (!info->screen_base) { + framebuffer_release(info); + return -ENOMEM; + } + info->fbops = &cobalt_lcd_fbops; info->fix = cobalt_lcdfb_fix; info->fix.smem_start = res->start; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/video/fbdev/pmag-ba-fb.c +++ linux-raspi2-4.4.0/drivers/video/fbdev/pmag-ba-fb.c @@ -129,7 +129,7 @@ /* * Turn the hardware cursor off. */ -static void __init pmagbafb_erase_cursor(struct fb_info *info) +static void pmagbafb_erase_cursor(struct fb_info *info) { struct pmagbafb_par *par = info->par; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/watchdog/kempld_wdt.c +++ linux-raspi2-4.4.0/drivers/watchdog/kempld_wdt.c @@ -140,12 +140,19 @@ unsigned int timeout) { struct kempld_device_data *pld = wdt_data->pld; - u32 prescaler = kempld_prescaler[PRESCALER_21]; + u32 prescaler; u64 stage_timeout64; u32 stage_timeout; u32 remainder; u8 stage_cfg; +#if GCC_VERSION < 40400 + /* work around a bug compiling do_div() */ + prescaler = READ_ONCE(kempld_prescaler[PRESCALER_21]); +#else + prescaler = kempld_prescaler[PRESCALER_21]; +#endif + if (!stage) return -EINVAL; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/xen/biomerge.c +++ linux-raspi2-4.4.0/drivers/xen/biomerge.c @@ -10,8 +10,7 @@ unsigned long bfn1 = pfn_to_bfn(page_to_pfn(vec1->bv_page)); unsigned long bfn2 = pfn_to_bfn(page_to_pfn(vec2->bv_page)); - return __BIOVEC_PHYS_MERGEABLE(vec1, vec2) && - ((bfn1 == bfn2) || ((bfn1+1) == bfn2)); + return bfn1 + PFN_DOWN(vec1->bv_offset + vec1->bv_len) == bfn2; #else /* * XXX: Add support for merging bio_vec when using different page only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/drivers/xen/manage.c +++ linux-raspi2-4.4.0/drivers/xen/manage.c @@ -275,8 +275,16 @@ err = xenbus_transaction_start(&xbt); if (err) return; - if (!xenbus_scanf(xbt, "control", "sysrq", "%c", &sysrq_key)) { - pr_err("Unable to read sysrq code in control/sysrq\n"); + err = xenbus_scanf(xbt, "control", "sysrq", "%c", &sysrq_key); + if (err < 0) { + /* + * The Xenstore watch fires directly after registering it and + * after a suspend/resume cycle. So ENOENT is no error but + * might happen in those cases. + */ + if (err != -ENOENT) + pr_err("Error %d reading sysrq code in control/sysrq\n", + err); xenbus_transaction_end(xbt, 1); return; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/fs/ceph/cache.c +++ linux-raspi2-4.4.0/fs/ceph/cache.c @@ -224,13 +224,7 @@ fscache_relinquish_cookie(cookie, 0); } -static void ceph_vfs_readpage_complete(struct page *page, void *data, int error) -{ - if (!error) - SetPageUptodate(page); -} - -static void ceph_vfs_readpage_complete_unlock(struct page *page, void *data, int error) +static void ceph_readpage_from_fscache_complete(struct page *page, void *data, int error) { if (!error) SetPageUptodate(page); @@ -259,7 +253,7 @@ return -ENOBUFS; ret = fscache_read_or_alloc_page(ci->fscache, page, - ceph_vfs_readpage_complete, NULL, + ceph_readpage_from_fscache_complete, NULL, GFP_KERNEL); switch (ret) { @@ -288,7 +282,7 @@ return -ENOBUFS; ret = fscache_read_or_alloc_pages(ci->fscache, mapping, pages, nr_pages, - ceph_vfs_readpage_complete_unlock, + ceph_readpage_from_fscache_complete, NULL, mapping_gfp_mask(mapping)); switch (ret) { only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/fs/ceph/caps.c +++ linux-raspi2-4.4.0/fs/ceph/caps.c @@ -1850,6 +1850,7 @@ retry: spin_lock(&ci->i_ceph_lock); if (ci->i_ceph_flags & CEPH_I_NOFLUSH) { + spin_unlock(&ci->i_ceph_lock); dout("try_flush_caps skipping %p I_NOFLUSH set\n", inode); goto out; } @@ -1867,8 +1868,10 @@ mutex_lock(&session->s_mutex); goto retry; } - if (cap->session->s_state < CEPH_MDS_SESSION_OPEN) + if (cap->session->s_state < CEPH_MDS_SESSION_OPEN) { + spin_unlock(&ci->i_ceph_lock); goto out; + } flushing = __mark_caps_flushing(inode, session, &flush_tid, &oldest_flush_tid); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/fs/ceph/dir.c +++ linux-raspi2-4.4.0/fs/ceph/dir.c @@ -247,6 +247,11 @@ if (ret < 0) err = ret; dput(last); + /* last_name no longer match cache index */ + if (fi->readdir_cache_idx >= 0) { + fi->readdir_cache_idx = -1; + fi->dir_release_count = 0; + } } return err; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/fs/dlm/user.c +++ linux-raspi2-4.4.0/fs/dlm/user.c @@ -355,6 +355,10 @@ error = misc_register(&ls->ls_device); if (error) { kfree(ls->ls_device.name); + /* this has to be set to NULL + * to avoid a double-free in dlm_device_deregister + */ + ls->ls_device.name = NULL; } fail: return error; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/fs/ecryptfs/ecryptfs_kernel.h +++ linux-raspi2-4.4.0/fs/ecryptfs/ecryptfs_kernel.h @@ -84,11 +84,16 @@ static inline struct ecryptfs_auth_tok * ecryptfs_get_encrypted_key_payload_data(struct key *key) { - if (key->type == &key_type_encrypted) - return (struct ecryptfs_auth_tok *) - (&((struct encrypted_key_payload *)key->payload.data[0])->payload_data); - else + struct encrypted_key_payload *payload; + + if (key->type != &key_type_encrypted) return NULL; + + payload = key->payload.data[0]; + if (!payload) + return ERR_PTR(-EKEYREVOKED); + + return (struct ecryptfs_auth_tok *)payload->payload_data; } static inline struct key *ecryptfs_get_encrypted_key(char *sig) @@ -114,12 +119,17 @@ ecryptfs_get_key_payload_data(struct key *key) { struct ecryptfs_auth_tok *auth_tok; + const struct user_key_payload *ukp; auth_tok = ecryptfs_get_encrypted_key_payload_data(key); - if (!auth_tok) - return (struct ecryptfs_auth_tok *)user_key_payload(key)->data; - else + if (auth_tok) return auth_tok; + + ukp = user_key_payload(key); + if (!ukp) + return ERR_PTR(-EKEYREVOKED); + + return (struct ecryptfs_auth_tok *)ukp->data; } #define ECRYPTFS_MAX_KEYSET_SIZE 1024 only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/fs/ecryptfs/keystore.c +++ linux-raspi2-4.4.0/fs/ecryptfs/keystore.c @@ -458,7 +458,8 @@ * @auth_tok_key: key containing the authentication token * @auth_tok: authentication token * - * Returns zero on valid auth tok; -EINVAL otherwise + * Returns zero on valid auth tok; -EINVAL if the payload is invalid; or + * -EKEYREVOKED if the key was revoked before we acquired its semaphore. */ static int ecryptfs_verify_auth_tok_from_key(struct key *auth_tok_key, @@ -467,6 +468,12 @@ int rc = 0; (*auth_tok) = ecryptfs_get_key_payload_data(auth_tok_key); + if (IS_ERR(*auth_tok)) { + rc = PTR_ERR(*auth_tok); + *auth_tok = NULL; + goto out; + } + if (ecryptfs_verify_version((*auth_tok)->version)) { printk(KERN_ERR "Data structure version mismatch. Userspace " "tools must match eCryptfs kernel module with major " only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/fs/eventpoll.c +++ linux-raspi2-4.4.0/fs/eventpoll.c @@ -518,8 +518,13 @@ wait_queue_head_t *whead; rcu_read_lock(); - /* If it is cleared by POLLFREE, it should be rcu-safe */ - whead = rcu_dereference(pwq->whead); + /* + * If it is cleared by POLLFREE, it should be rcu-safe. + * If we read NULL we need a barrier paired with + * smp_store_release() in ep_poll_callback(), otherwise + * we rely on whead->lock. + */ + whead = smp_load_acquire(&pwq->whead); if (whead) remove_wait_queue(whead, &pwq->wait); rcu_read_unlock(); @@ -1003,17 +1008,6 @@ struct epitem *epi = ep_item_from_wait(wait); struct eventpoll *ep = epi->ep; - if ((unsigned long)key & POLLFREE) { - ep_pwq_from_wait(wait)->whead = NULL; - /* - * whead = NULL above can race with ep_remove_wait_queue() - * which can do another remove_wait_queue() after us, so we - * can't use __remove_wait_queue(). whead->lock is held by - * the caller. - */ - list_del_init(&wait->task_list); - } - spin_lock_irqsave(&ep->lock, flags); /* @@ -1078,6 +1072,23 @@ if (pwake) ep_poll_safewake(&ep->poll_wait); + + if ((unsigned long)key & POLLFREE) { + /* + * If we race with ep_remove_wait_queue() it can miss + * ->whead = NULL and do another remove_wait_queue() after + * us, so we can't use __remove_wait_queue(). + */ + list_del_init(&wait->task_list); + /* + * ->whead != NULL protects us from the race with ep_free() + * or ep_remove(), ep_remove_wait_queue() takes whead->lock + * held by the caller. Once we nullify it, nothing protects + * ep/epi or even wait. + */ + smp_store_release(&ep_pwq_from_wait(wait)->whead, NULL); + } + return 1; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/fs/f2fs/crypto.c +++ linux-raspi2-4.4.0/fs/f2fs/crypto.c @@ -362,7 +362,6 @@ else res = crypto_ablkcipher_encrypt(req); if (res == -EINPROGRESS || res == -EBUSY) { - BUG_ON(req->base.data != &ecr); wait_for_completion(&ecr.completion); res = ecr.res; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/fs/f2fs/data.c +++ linux-raspi2-4.4.0/fs/f2fs/data.c @@ -1416,7 +1416,12 @@ goto fail; } repeat: - page = grab_cache_page_write_begin(mapping, index, flags); + /* + * Do not use grab_cache_page_write_begin() to avoid deadlock due to + * wait_for_stable_page. Will wait that below with our IO control. + */ + page = pagecache_get_page(mapping, index, + FGP_LOCK | FGP_WRITE | FGP_CREAT, GFP_NOFS); if (!page) { err = -ENOMEM; goto fail; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/fs/f2fs/recovery.c +++ linux-raspi2-4.4.0/fs/f2fs/recovery.c @@ -276,7 +276,7 @@ return 0; /* Get the previous summary */ - for (i = CURSEG_WARM_DATA; i <= CURSEG_COLD_DATA; i++) { + for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) { struct curseg_info *curseg = CURSEG_I(sbi, i); if (curseg->segno == segno) { sum = curseg->sum_blk->entries[blkoff]; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/fs/fcntl.c +++ linux-raspi2-4.4.0/fs/fcntl.c @@ -740,16 +740,10 @@ * Exceptions: O_NONBLOCK is a two bit define on parisc; O_NDELAY * is defined as O_NONBLOCK on some platforms and not on others. */ - BUILD_BUG_ON(21 - 1 /* for O_RDONLY being 0 */ != HWEIGHT32( - O_RDONLY | O_WRONLY | O_RDWR | - O_CREAT | O_EXCL | O_NOCTTY | - O_TRUNC | O_APPEND | /* O_NONBLOCK | */ - __O_SYNC | O_DSYNC | FASYNC | - O_DIRECT | O_LARGEFILE | O_DIRECTORY | - O_NOFOLLOW | O_NOATIME | O_CLOEXEC | - __FMODE_EXEC | O_PATH | __O_TMPFILE | - __FMODE_NONOTIFY - )); + BUILD_BUG_ON(21 - 1 /* for O_RDONLY being 0 */ != + HWEIGHT32( + (VALID_OPEN_FLAGS & ~(O_NONBLOCK | O_NDELAY)) | + __FMODE_EXEC | __FMODE_NONOTIFY)); fasync_cache = kmem_cache_create("fasync_cache", sizeof(struct fasync_struct), 0, SLAB_PANIC, NULL); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/fs/fscache/object-list.c +++ linux-raspi2-4.4.0/fs/fscache/object-list.c @@ -330,6 +330,13 @@ rcu_read_lock(); confkey = user_key_payload(key); + if (!confkey) { + /* key was revoked */ + rcu_read_unlock(); + key_put(key); + goto no_config; + } + buf = confkey->data; for (len = confkey->datalen - 1; len >= 0; len--) { only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/fs/nfs/Kconfig +++ linux-raspi2-4.4.0/fs/nfs/Kconfig @@ -121,6 +121,7 @@ config PNFS_BLOCK tristate depends on NFS_V4_1 && BLK_DEV_DM + depends on 64BIT || LBDAF default NFS_V4 config PNFS_OBJLAYOUT only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/fs/nfs/flexfilelayout/flexfilelayoutdev.c +++ linux-raspi2-4.4.0/fs/nfs/flexfilelayout/flexfilelayoutdev.c @@ -30,6 +30,7 @@ { nfs4_print_deviceid(&mirror_ds->id_node.deviceid); nfs4_pnfs_ds_put(mirror_ds->ds); + kfree(mirror_ds->ds_versions); kfree_rcu(mirror_ds, id_node.rcu); } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/fs/nfs/internal.h +++ linux-raspi2-4.4.0/fs/nfs/internal.h @@ -243,7 +243,6 @@ extern const struct nfs_pageio_ops nfs_pgio_rw_ops; struct nfs_pgio_header *nfs_pgio_header_alloc(const struct nfs_rw_ops *); void nfs_pgio_header_free(struct nfs_pgio_header *); -void nfs_pgio_data_destroy(struct nfs_pgio_header *); int nfs_generic_pgio(struct nfs_pageio_descriptor *, struct nfs_pgio_header *); int nfs_initiate_pgio(struct rpc_clnt *clnt, struct nfs_pgio_header *hdr, struct rpc_cred *cred, const struct nfs_rpc_ops *rpc_ops, only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/fs/nfs/pagelist.c +++ linux-raspi2-4.4.0/fs/nfs/pagelist.c @@ -528,16 +528,6 @@ } EXPORT_SYMBOL_GPL(nfs_pgio_header_alloc); -/* - * nfs_pgio_header_free - Free a read or write header - * @hdr: The header to free - */ -void nfs_pgio_header_free(struct nfs_pgio_header *hdr) -{ - hdr->rw_ops->rw_free_header(hdr); -} -EXPORT_SYMBOL_GPL(nfs_pgio_header_free); - /** * nfs_pgio_data_destroy - make @hdr suitable for reuse * @@ -546,14 +536,24 @@ * * @hdr: A header that has had nfs_generic_pgio called */ -void nfs_pgio_data_destroy(struct nfs_pgio_header *hdr) +static void nfs_pgio_data_destroy(struct nfs_pgio_header *hdr) { if (hdr->args.context) put_nfs_open_context(hdr->args.context); if (hdr->page_array.pagevec != hdr->page_array.page_array) kfree(hdr->page_array.pagevec); } -EXPORT_SYMBOL_GPL(nfs_pgio_data_destroy); + +/* + * nfs_pgio_header_free - Free a read or write header + * @hdr: The header to free + */ +void nfs_pgio_header_free(struct nfs_pgio_header *hdr) +{ + nfs_pgio_data_destroy(hdr); + hdr->rw_ops->rw_free_header(hdr); +} +EXPORT_SYMBOL_GPL(nfs_pgio_header_free); /** * nfs_pgio_rpcsetup - Set up arguments for a pageio call @@ -671,7 +671,6 @@ u32 midx; set_bit(NFS_IOHDR_REDO, &hdr->flags); - nfs_pgio_data_destroy(hdr); hdr->completion_ops->completion(hdr); /* TODO: Make sure it's right to clean up all mirrors here * and not just hdr->pgio_mirror_idx */ @@ -689,7 +688,6 @@ static void nfs_pgio_release(void *calldata) { struct nfs_pgio_header *hdr = calldata; - nfs_pgio_data_destroy(hdr); hdr->completion_ops->completion(hdr); } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/fs/ocfs2/alloc.c +++ linux-raspi2-4.4.0/fs/ocfs2/alloc.c @@ -7270,13 +7270,24 @@ static int ocfs2_trim_extent(struct super_block *sb, struct ocfs2_group_desc *gd, - u32 start, u32 count) + u64 group, u32 start, u32 count) { u64 discard, bcount; + struct ocfs2_super *osb = OCFS2_SB(sb); bcount = ocfs2_clusters_to_blocks(sb, count); - discard = le64_to_cpu(gd->bg_blkno) + - ocfs2_clusters_to_blocks(sb, start); + discard = ocfs2_clusters_to_blocks(sb, start); + + /* + * For the first cluster group, the gd->bg_blkno is not at the start + * of the group, but at an offset from the start. If we add it while + * calculating discard for first group, we will wrongly start fstrim a + * few blocks after the desried start block and the range can cross + * over into the next cluster group. So, add it only if this is not + * the first cluster group. + */ + if (group != osb->first_cluster_group_blkno) + discard += le64_to_cpu(gd->bg_blkno); trace_ocfs2_trim_extent(sb, (unsigned long long)discard, bcount); @@ -7284,7 +7295,7 @@ } static int ocfs2_trim_group(struct super_block *sb, - struct ocfs2_group_desc *gd, + struct ocfs2_group_desc *gd, u64 group, u32 start, u32 max, u32 minbits) { int ret = 0, count = 0, next; @@ -7303,7 +7314,7 @@ next = ocfs2_find_next_bit(bitmap, max, start); if ((next - start) >= minbits) { - ret = ocfs2_trim_extent(sb, gd, + ret = ocfs2_trim_extent(sb, gd, group, start, next - start); if (ret < 0) { mlog_errno(ret); @@ -7401,7 +7412,8 @@ } gd = (struct ocfs2_group_desc *)gd_bh->b_data; - cnt = ocfs2_trim_group(sb, gd, first_bit, last_bit, minlen); + cnt = ocfs2_trim_group(sb, gd, group, + first_bit, last_bit, minlen); brelse(gd_bh); gd_bh = NULL; if (cnt < 0) { only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/fs/ocfs2/dlmglue.h +++ linux-raspi2-4.4.0/fs/ocfs2/dlmglue.h @@ -70,6 +70,11 @@ __be32 lvb_os_seqno; }; +struct ocfs2_lock_holder { + struct list_head oh_list; + struct pid *oh_owner_pid; +}; + /* ocfs2_inode_lock_full() 'arg_flags' flags */ /* don't wait on recovery. */ #define OCFS2_META_LOCK_RECOVERY (0x01) @@ -77,6 +82,8 @@ #define OCFS2_META_LOCK_NOQUEUE (0x02) /* don't block waiting for the downconvert thread, instead return -EAGAIN */ #define OCFS2_LOCK_NONBLOCK (0x04) +/* just get back disk inode bh if we've got cluster lock. */ +#define OCFS2_META_LOCK_GETBH (0x08) /* Locking subclasses of inode cluster lock */ enum { @@ -170,4 +177,15 @@ /* To set the locking protocol on module initialization */ void ocfs2_set_locking_protocol(void); + +/* The _tracker pair is used to avoid cluster recursive locking */ +int ocfs2_inode_lock_tracker(struct inode *inode, + struct buffer_head **ret_bh, + int ex, + struct ocfs2_lock_holder *oh); +void ocfs2_inode_unlock_tracker(struct inode *inode, + int ex, + struct ocfs2_lock_holder *oh, + int had_lock); + #endif /* DLMGLUE_H */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/fs/ocfs2/ocfs2.h +++ linux-raspi2-4.4.0/fs/ocfs2/ocfs2.h @@ -172,6 +172,7 @@ struct list_head l_blocked_list; struct list_head l_mask_waiters; + struct list_head l_holders; unsigned long l_flags; char l_name[OCFS2_LOCK_ID_MAX_LEN]; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/fs/xfs/kmem.c +++ linux-raspi2-4.4.0/fs/xfs/kmem.c @@ -24,24 +24,6 @@ #include "kmem.h" #include "xfs_message.h" -/* - * Greedy allocation. May fail and may return vmalloced memory. - */ -void * -kmem_zalloc_greedy(size_t *size, size_t minsize, size_t maxsize) -{ - void *ptr; - size_t kmsize = maxsize; - - while (!(ptr = vzalloc(kmsize))) { - if ((kmsize >>= 1) <= minsize) - kmsize = minsize; - } - if (ptr) - *size = kmsize; - return ptr; -} - void * kmem_alloc(size_t size, xfs_km_flags_t flags) { only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/fs/xfs/kmem.h +++ linux-raspi2-4.4.0/fs/xfs/kmem.h @@ -69,8 +69,6 @@ } -extern void *kmem_zalloc_greedy(size_t *, size_t, size_t); - static inline void * kmem_zalloc(size_t size, xfs_km_flags_t flags) { only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/fs/xfs/xfs_attr_inactive.c +++ linux-raspi2-4.4.0/fs/xfs/xfs_attr_inactive.c @@ -302,6 +302,8 @@ &bp, XFS_ATTR_FORK); if (error) return error; + node = bp->b_addr; + btree = dp->d_ops->node_tree_p(node); child_fsb = be32_to_cpu(btree[i + 1].before); xfs_trans_brelse(*trans, bp); } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/fs/xfs/xfs_itable.c +++ linux-raspi2-4.4.0/fs/xfs/xfs_itable.c @@ -351,7 +351,6 @@ xfs_agino_t agino; /* inode # in allocation group */ xfs_agnumber_t agno; /* allocation group number */ xfs_btree_cur_t *cur; /* btree cursor for ialloc btree */ - size_t irbsize; /* size of irec buffer in bytes */ xfs_inobt_rec_incore_t *irbuf; /* start of irec buffer */ int nirbuf; /* size of irbuf */ int ubcount; /* size of user's buffer */ @@ -378,11 +377,10 @@ *ubcountp = 0; *done = 0; - irbuf = kmem_zalloc_greedy(&irbsize, PAGE_SIZE, PAGE_SIZE * 4); + irbuf = kmem_zalloc_large(PAGE_SIZE * 4, KM_SLEEP); if (!irbuf) return -ENOMEM; - - nirbuf = irbsize / sizeof(*irbuf); + nirbuf = (PAGE_SIZE * 4) / sizeof(*irbuf); /* * Loop over the allocation groups, starting from the last only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/fs/xfs/xfs_linux.h +++ linux-raspi2-4.4.0/fs/xfs/xfs_linux.h @@ -369,7 +369,14 @@ #endif /* DEBUG */ #ifdef CONFIG_XFS_RT -#define XFS_IS_REALTIME_INODE(ip) ((ip)->i_d.di_flags & XFS_DIFLAG_REALTIME) + +/* + * make sure we ignore the inode flag if the filesystem doesn't have a + * configured realtime device. + */ +#define XFS_IS_REALTIME_INODE(ip) \ + (((ip)->i_d.di_flags & XFS_DIFLAG_REALTIME) && \ + (ip)->i_mount->m_rtdev_targp) #else #define XFS_IS_REALTIME_INODE(ip) (0) #endif only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/asm-generic/percpu.h +++ linux-raspi2-4.4.0/include/asm-generic/percpu.h @@ -105,15 +105,35 @@ (__ret); \ }) -#define this_cpu_generic_read(pcp) \ +#define __this_cpu_generic_read_nopreempt(pcp) \ ({ \ typeof(pcp) __ret; \ preempt_disable(); \ - __ret = *this_cpu_ptr(&(pcp)); \ + __ret = READ_ONCE(*raw_cpu_ptr(&(pcp))); \ preempt_enable(); \ __ret; \ }) +#define __this_cpu_generic_read_noirq(pcp) \ +({ \ + typeof(pcp) __ret; \ + unsigned long __flags; \ + raw_local_irq_save(__flags); \ + __ret = *raw_cpu_ptr(&(pcp)); \ + raw_local_irq_restore(__flags); \ + __ret; \ +}) + +#define this_cpu_generic_read(pcp) \ +({ \ + typeof(pcp) __ret; \ + if (__native_word(pcp)) \ + __ret = __this_cpu_generic_read_nopreempt(pcp); \ + else \ + __ret = __this_cpu_generic_read_noirq(pcp); \ + __ret; \ +}) + #define this_cpu_generic_to_op(pcp, val, op) \ do { \ unsigned long __flags; \ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/asm-generic/topology.h +++ linux-raspi2-4.4.0/include/asm-generic/topology.h @@ -48,7 +48,11 @@ #define parent_node(node) ((void)(node),0) #endif #ifndef cpumask_of_node -#define cpumask_of_node(node) ((void)node, cpu_online_mask) + #ifdef CONFIG_NEED_MULTIPLE_NODES + #define cpumask_of_node(node) ((node) == 0 ? cpu_online_mask : cpu_none_mask) + #else + #define cpumask_of_node(node) ((void)node, cpu_online_mask) + #endif #endif #ifndef pcibus_to_node #define pcibus_to_node(bus) ((void)(bus), -1) only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/linux/audit.h +++ linux-raspi2-4.4.0/include/linux/audit.h @@ -212,8 +212,7 @@ static inline void audit_seccomp(unsigned long syscall, long signr, int code) { - /* Force a record to be reported if a signal was delivered. */ - if (signr || unlikely(!audit_dummy_context())) + if (unlikely(!audit_dummy_context())) __audit_seccomp(syscall, signr, code); } @@ -281,6 +280,20 @@ return __audit_socketcall(nargs, args); return 0; } + +static inline int audit_socketcall_compat(int nargs, u32 *args) +{ + unsigned long a[AUDITSC_ARGS]; + int i; + + if (audit_dummy_context()) + return 0; + + for (i = 0; i < nargs; i++) + a[i] = (unsigned long)args[i]; + return __audit_socketcall(nargs, a); +} + static inline int audit_sockaddr(int len, void *addr) { if (unlikely(!audit_dummy_context())) @@ -407,6 +420,12 @@ { return 0; } + +static inline int audit_socketcall_compat(int nargs, u32 *args) +{ + return 0; +} + static inline void audit_fd_pair(int fd1, int fd2) { } static inline int audit_sockaddr(int len, void *addr) only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/linux/cpuset.h +++ linux-raspi2-4.4.0/include/linux/cpuset.h @@ -16,6 +16,7 @@ #ifdef CONFIG_CPUSETS +extern struct static_key cpusets_pre_enable_key; extern struct static_key cpusets_enabled_key; static inline bool cpusets_enabled(void) { @@ -30,17 +31,21 @@ static inline void cpuset_inc(void) { + static_key_slow_inc(&cpusets_pre_enable_key); static_key_slow_inc(&cpusets_enabled_key); } static inline void cpuset_dec(void) { static_key_slow_dec(&cpusets_enabled_key); + static_key_slow_dec(&cpusets_pre_enable_key); } extern int cpuset_init(void); extern void cpuset_init_smp(void); +extern void cpuset_force_rebuild(void); extern void cpuset_update_active_cpus(bool cpu_online); +extern void cpuset_wait_for_hotplug(void); extern void cpuset_cpus_allowed(struct task_struct *p, struct cpumask *mask); extern void cpuset_cpus_allowed_fallback(struct task_struct *p); extern nodemask_t cpuset_mems_allowed(struct task_struct *p); @@ -104,7 +109,7 @@ */ static inline unsigned int read_mems_allowed_begin(void) { - if (!cpusets_enabled()) + if (!static_key_false(&cpusets_pre_enable_key)) return 0; return read_seqcount_begin(¤t->mems_allowed_seq); @@ -118,7 +123,7 @@ */ static inline bool read_mems_allowed_retry(unsigned int seq) { - if (!cpusets_enabled()) + if (!static_key_false(&cpusets_enabled_key)) return false; return read_seqcount_retry(¤t->mems_allowed_seq, seq); @@ -144,11 +149,15 @@ static inline int cpuset_init(void) { return 0; } static inline void cpuset_init_smp(void) {} +static inline void cpuset_force_rebuild(void) { } + static inline void cpuset_update_active_cpus(bool cpu_online) { partition_sched_domains(1, NULL, NULL); } +static inline void cpuset_wait_for_hotplug(void) { } + static inline void cpuset_cpus_allowed(struct task_struct *p, struct cpumask *mask) { only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/linux/device.h +++ linux-raspi2-4.4.0/include/linux/device.h @@ -368,6 +368,7 @@ * @suspend: Used to put the device to sleep mode, usually to a low power * state. * @resume: Used to bring the device from the sleep mode. + * @shutdown: Called at shut-down time to quiesce the device. * @ns_type: Callbacks so sysfs can detemine namespaces. * @namespace: Namespace of the device belongs to this class. * @pm: The default device power management operations of this class. @@ -396,6 +397,7 @@ int (*suspend)(struct device *dev, pm_message_t state); int (*resume)(struct device *dev); + int (*shutdown)(struct device *dev); const struct kobj_ns_type_operations *ns_type; const void *(*namespace)(struct device *dev); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/linux/fcntl.h +++ linux-raspi2-4.4.0/include/linux/fcntl.h @@ -3,6 +3,12 @@ #include +/* list of all valid flags for the open/openat flags argument: */ +#define VALID_OPEN_FLAGS \ + (O_RDONLY | O_WRONLY | O_RDWR | O_CREAT | O_EXCL | O_NOCTTY | O_TRUNC | \ + O_APPEND | O_NDELAY | O_NONBLOCK | O_NDELAY | __O_SYNC | O_DSYNC | \ + FASYNC | O_DIRECT | O_LARGEFILE | O_DIRECTORY | O_NOFOLLOW | \ + O_NOATIME | O_CLOEXEC | O_PATH | __O_TMPFILE) #ifndef force_o_largefile #define force_o_largefile() (BITS_PER_LONG != 32) only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/linux/iio/adc/ad_sigma_delta.h +++ linux-raspi2-4.4.0/include/linux/iio/adc/ad_sigma_delta.h @@ -111,6 +111,9 @@ int ad_sd_read_reg(struct ad_sigma_delta *sigma_delta, unsigned int reg, unsigned int size, unsigned int *val); +int ad_sd_reset(struct ad_sigma_delta *sigma_delta, + unsigned int reset_length); + int ad_sigma_delta_single_conversion(struct iio_dev *indio_dev, const struct iio_chan_spec *chan, int *val); int ad_sd_calibrate_all(struct ad_sigma_delta *sigma_delta, only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/linux/kaiser.h +++ linux-raspi2-4.4.0/include/linux/kaiser.h @@ -0,0 +1,52 @@ +#ifndef _LINUX_KAISER_H +#define _LINUX_KAISER_H + +#ifdef CONFIG_KAISER +#include + +static inline int kaiser_map_thread_stack(void *stack) +{ + /* + * Map that page of kernel stack on which we enter from user context. + */ + return kaiser_add_mapping((unsigned long)stack + + THREAD_SIZE - PAGE_SIZE, PAGE_SIZE, __PAGE_KERNEL); +} + +static inline void kaiser_unmap_thread_stack(void *stack) +{ + /* + * Note: may be called even when kaiser_map_thread_stack() failed. + */ + kaiser_remove_mapping((unsigned long)stack + + THREAD_SIZE - PAGE_SIZE, PAGE_SIZE); +} +#else + +/* + * These stubs are used whenever CONFIG_KAISER is off, which + * includes architectures that support KAISER, but have it disabled. + */ + +static inline void kaiser_init(void) +{ +} +static inline int kaiser_add_mapping(unsigned long addr, + unsigned long size, unsigned long flags) +{ + return 0; +} +static inline void kaiser_remove_mapping(unsigned long start, + unsigned long size) +{ +} +static inline int kaiser_map_thread_stack(void *stack) +{ + return 0; +} +static inline void kaiser_unmap_thread_stack(void *stack) +{ +} + +#endif /* !CONFIG_KAISER */ +#endif /* _LINUX_KAISER_H */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/linux/list_lru.h +++ linux-raspi2-4.4.0/include/linux/list_lru.h @@ -44,6 +44,7 @@ /* for cgroup aware lrus points to per cgroup lists, otherwise NULL */ struct list_lru_memcg *memcg_lrus; #endif + long nr_items; } ____cacheline_aligned_in_smp; struct list_lru { only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/linux/mbus.h +++ linux-raspi2-4.4.0/include/linux/mbus.h @@ -29,8 +29,8 @@ struct mbus_dram_window { u8 cs_index; u8 mbus_attr; - u32 base; - u32 size; + u64 base; + u64 size; } cs[4]; }; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/linux/mmc/sdio_func.h +++ linux-raspi2-4.4.0/include/linux/mmc/sdio_func.h @@ -53,7 +53,7 @@ unsigned int state; /* function state */ #define SDIO_STATE_PRESENT (1<<0) /* present in sysfs */ - u8 tmpbuf[4]; /* DMA:able scratch buffer */ + u8 *tmpbuf; /* DMA:able scratch buffer */ unsigned num_info; /* number of info strings */ const char **info; /* info strings */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/linux/netlink.h +++ linux-raspi2-4.4.0/include/linux/netlink.h @@ -131,6 +131,7 @@ struct netlink_callback { struct sk_buff *skb; const struct nlmsghdr *nlh; + int (*start)(struct netlink_callback *); int (*dump)(struct sk_buff * skb, struct netlink_callback *cb); int (*done)(struct netlink_callback *cb); @@ -153,6 +154,7 @@ __nlmsg_put(struct sk_buff *skb, u32 portid, u32 seq, int type, int len, int flags); struct netlink_dump_control { + int (*start)(struct netlink_callback *); int (*dump)(struct sk_buff *skb, struct netlink_callback *); int (*done)(struct netlink_callback *); void *data; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/linux/percpu-defs.h +++ linux-raspi2-4.4.0/include/linux/percpu-defs.h @@ -35,6 +35,12 @@ #endif +#ifdef CONFIG_KAISER +#define USER_MAPPED_SECTION "..user_mapped" +#else +#define USER_MAPPED_SECTION "" +#endif + /* * Base implementations of per-CPU variable declarations and definitions, where * the section in which the variable is to be placed is provided by the @@ -115,6 +121,12 @@ #define DEFINE_PER_CPU(type, name) \ DEFINE_PER_CPU_SECTION(type, name, "") +#define DECLARE_PER_CPU_USER_MAPPED(type, name) \ + DECLARE_PER_CPU_SECTION(type, name, USER_MAPPED_SECTION) + +#define DEFINE_PER_CPU_USER_MAPPED(type, name) \ + DEFINE_PER_CPU_SECTION(type, name, USER_MAPPED_SECTION) + /* * Declaration/definition used for per-CPU variables that must come first in * the set of variables. @@ -144,6 +156,14 @@ DEFINE_PER_CPU_SECTION(type, name, PER_CPU_SHARED_ALIGNED_SECTION) \ ____cacheline_aligned_in_smp +#define DECLARE_PER_CPU_SHARED_ALIGNED_USER_MAPPED(type, name) \ + DECLARE_PER_CPU_SECTION(type, name, USER_MAPPED_SECTION PER_CPU_SHARED_ALIGNED_SECTION) \ + ____cacheline_aligned_in_smp + +#define DEFINE_PER_CPU_SHARED_ALIGNED_USER_MAPPED(type, name) \ + DEFINE_PER_CPU_SECTION(type, name, USER_MAPPED_SECTION PER_CPU_SHARED_ALIGNED_SECTION) \ + ____cacheline_aligned_in_smp + #define DECLARE_PER_CPU_ALIGNED(type, name) \ DECLARE_PER_CPU_SECTION(type, name, PER_CPU_ALIGNED_SECTION) \ ____cacheline_aligned @@ -162,11 +182,21 @@ #define DEFINE_PER_CPU_PAGE_ALIGNED(type, name) \ DEFINE_PER_CPU_SECTION(type, name, "..page_aligned") \ __aligned(PAGE_SIZE) +/* + * Declaration/definition used for per-CPU variables that must be page aligned and need to be mapped in user mode. + */ +#define DECLARE_PER_CPU_PAGE_ALIGNED_USER_MAPPED(type, name) \ + DECLARE_PER_CPU_SECTION(type, name, USER_MAPPED_SECTION"..page_aligned") \ + __aligned(PAGE_SIZE) + +#define DEFINE_PER_CPU_PAGE_ALIGNED_USER_MAPPED(type, name) \ + DEFINE_PER_CPU_SECTION(type, name, USER_MAPPED_SECTION"..page_aligned") \ + __aligned(PAGE_SIZE) /* * Declaration/definition used for per-CPU variables that must be read mostly. */ -#define DECLARE_PER_CPU_READ_MOSTLY(type, name) \ +#define DECLARE_PER_CPU_READ_MOSTLY(type, name) \ DECLARE_PER_CPU_SECTION(type, name, "..read_mostly") #define DEFINE_PER_CPU_READ_MOSTLY(type, name) \ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/linux/phy.h +++ linux-raspi2-4.4.0/include/linux/phy.h @@ -136,11 +136,7 @@ /* Used when trying to connect to a specific phy (mii bus id:phy device id) */ #define PHY_ID_FMT "%s:%02x" -/* - * Need to be a little smaller than phydev->dev.bus_id to leave room - * for the ":%02x" - */ -#define MII_BUS_ID_SIZE (20 - 3) +#define MII_BUS_ID_SIZE 61 /* Or MII_ADDR_C45 into regnum for read/write on mii_bus to enable the 21 bit IEEE 802.3ae clause 45 addressing mode used by 10GIGE phy chips. */ @@ -599,7 +595,7 @@ /* A Structure for boards to register fixups with the PHY Lib */ struct phy_fixup { struct list_head list; - char bus_id[20]; + char bus_id[MII_BUS_ID_SIZE + 3]; u32 phy_uid; u32 phy_uid_mask; int (*run)(struct phy_device *phydev); @@ -785,6 +781,10 @@ int genphy_suspend(struct phy_device *phydev); int genphy_resume(struct phy_device *phydev); int genphy_soft_reset(struct phy_device *phydev); +static inline int genphy_no_soft_reset(struct phy_device *phydev) +{ + return 0; +} void phy_driver_unregister(struct phy_driver *drv); void phy_drivers_unregister(struct phy_driver *drv, int n); int phy_driver_register(struct phy_driver *new_driver); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/linux/pid.h +++ linux-raspi2-4.4.0/include/linux/pid.h @@ -8,7 +8,9 @@ PIDTYPE_PID, PIDTYPE_PGID, PIDTYPE_SID, - PIDTYPE_MAX + PIDTYPE_MAX, + /* only valid to __task_pid_nr_ns() */ + __PIDTYPE_TGID }; /* only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/linux/platform_data/mmp_dma.h +++ linux-raspi2-4.4.0/include/linux/platform_data/mmp_dma.h @@ -14,6 +14,7 @@ struct mmp_dma_platdata { int dma_channels; + int nb_requestors; }; #endif /* MMP_DMA_H */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/linux/preempt.h +++ linux-raspi2-4.4.0/include/linux/preempt.h @@ -65,19 +65,24 @@ /* * Are we doing bottom half or hardware interrupt processing? - * Are we in a softirq context? Interrupt context? - * in_softirq - Are we currently processing softirq or have bh disabled? - * in_serving_softirq - Are we currently processing softirq? + * + * in_irq() - We're in (hard) IRQ context + * in_softirq() - We have BH disabled, or are processing softirqs + * in_interrupt() - We're in NMI,IRQ,SoftIRQ context or have BH disabled + * in_serving_softirq() - We're in softirq context + * in_nmi() - We're in NMI context + * in_task() - We're in task context + * + * Note: due to the BH disabled confusion: in_softirq(),in_interrupt() really + * should not be used in new code. */ #define in_irq() (hardirq_count()) #define in_softirq() (softirq_count()) #define in_interrupt() (irq_count()) #define in_serving_softirq() (softirq_count() & SOFTIRQ_OFFSET) - -/* - * Are we in NMI context? - */ -#define in_nmi() (preempt_count() & NMI_MASK) +#define in_nmi() (preempt_count() & NMI_MASK) +#define in_task() (!(preempt_count() & \ + (NMI_MASK | HARDIRQ_MASK | SOFTIRQ_OFFSET))) /* * The preempt_count offset after preempt_disable(); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/linux/pstore_ram.h +++ linux-raspi2-4.4.0/include/linux/pstore_ram.h @@ -23,6 +23,13 @@ #include #include +/* + * Choose whether access to the RAM zone requires locking or not. If a zone + * can be written to from different CPUs like with ftrace for example, then + * PRZ_FLAG_NO_LOCK is used. For all other cases, locking is required. + */ +#define PRZ_FLAG_NO_LOCK BIT(0) + struct persistent_ram_buffer; struct rs_control; @@ -39,6 +46,8 @@ void *vaddr; struct persistent_ram_buffer *buffer; size_t buffer_size; + u32 flags; + raw_spinlock_t buffer_lock; /* ECC correction */ char *par_buffer; @@ -54,7 +63,7 @@ struct persistent_ram_zone *persistent_ram_new(phys_addr_t start, size_t size, u32 sig, struct persistent_ram_ecc_info *ecc_info, - unsigned int memtype); + unsigned int memtype, u32 flags); void persistent_ram_free(struct persistent_ram_zone *prz); void persistent_ram_zap(struct persistent_ram_zone *prz); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/linux/seccomp.h +++ linux-raspi2-4.4.0/include/linux/seccomp.h @@ -3,7 +3,8 @@ #include -#define SECCOMP_FILTER_FLAG_MASK (SECCOMP_FILTER_FLAG_TSYNC) +#define SECCOMP_FILTER_FLAG_MASK (SECCOMP_FILTER_FLAG_TSYNC | \ + SECCOMP_FILTER_FLAG_LOG) #ifdef CONFIG_SECCOMP only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/linux/slab.h +++ linux-raspi2-4.4.0/include/linux/slab.h @@ -203,7 +203,7 @@ * (PAGE_SIZE*2). Larger requests are passed to the page allocator. */ #define KMALLOC_SHIFT_HIGH (PAGE_SHIFT + 1) -#define KMALLOC_SHIFT_MAX (MAX_ORDER + PAGE_SHIFT) +#define KMALLOC_SHIFT_MAX (MAX_ORDER + PAGE_SHIFT - 1) #ifndef KMALLOC_SHIFT_LOW #define KMALLOC_SHIFT_LOW 3 #endif @@ -216,7 +216,7 @@ * be allocated from the same page. */ #define KMALLOC_SHIFT_HIGH PAGE_SHIFT -#define KMALLOC_SHIFT_MAX 30 +#define KMALLOC_SHIFT_MAX (MAX_ORDER + PAGE_SHIFT - 1) #ifndef KMALLOC_SHIFT_LOW #define KMALLOC_SHIFT_LOW 3 #endif only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/linux/tty_flip.h +++ linux-raspi2-4.4.0/include/linux/tty_flip.h @@ -12,6 +12,7 @@ unsigned char **chars, size_t size); extern void tty_flip_buffer_push(struct tty_port *port); void tty_schedule_flip(struct tty_port *port); +int __tty_insert_flip_char(struct tty_port *port, unsigned char ch, char flag); static inline int tty_insert_flip_char(struct tty_port *port, unsigned char ch, char flag) @@ -26,7 +27,7 @@ *char_buf_ptr(tb, tb->used++) = ch; return 1; } - return tty_insert_flip_string_flags(port, &ch, &flag, 1); + return __tty_insert_flip_char(port, ch, flag); } static inline int tty_insert_flip_string(struct tty_port *port, only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/linux/usb/cdc_ncm.h +++ linux-raspi2-4.4.0/include/linux/usb/cdc_ncm.h @@ -82,6 +82,7 @@ /* Driver flags */ #define CDC_NCM_FLAG_NDP_TO_END 0x02 /* NDP is placed at end of frame */ +#define CDC_NCM_FLAG_RESET_NTB16 0x08 /* set NDP16 one more time after altsetting switch */ #define cdc_ncm_comm_intf_is_mbim(x) ((x)->desc.bInterfaceSubClass == USB_CDC_SUBCLASS_MBIM && \ (x)->desc.bInterfaceProtocol == USB_CDC_PROTO_NONE) only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/linux/vfio.h +++ linux-raspi2-4.4.0/include/linux/vfio.h @@ -85,6 +85,8 @@ */ extern struct vfio_group *vfio_group_get_external_user(struct file *filep); extern void vfio_group_put_external_user(struct vfio_group *group); +extern bool vfio_external_group_match_file(struct vfio_group *group, + struct file *filep); extern int vfio_external_user_iommu_id(struct vfio_group *group); extern long vfio_external_check_extension(struct vfio_group *group, unsigned long arg); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/linux/workqueue.h +++ linux-raspi2-4.4.0/include/linux/workqueue.h @@ -311,6 +311,7 @@ __WQ_DRAINING = 1 << 16, /* internal: workqueue is draining */ __WQ_ORDERED = 1 << 17, /* internal: workqueue is ordered */ + __WQ_ORDERED_EXPLICIT = 1 << 19, /* internal: alloc_ordered_workqueue() */ WQ_MAX_ACTIVE = 512, /* I like 512, better ideas? */ WQ_MAX_UNBOUND_PER_CPU = 4, /* 4 * #cpus for unbound wq */ @@ -408,7 +409,8 @@ * Pointer to the allocated workqueue on success, %NULL on failure. */ #define alloc_ordered_workqueue(fmt, flags, args...) \ - alloc_workqueue(fmt, WQ_UNBOUND | __WQ_ORDERED | (flags), 1, ##args) + alloc_workqueue(fmt, WQ_UNBOUND | __WQ_ORDERED | \ + __WQ_ORDERED_EXPLICIT | (flags), 1, ##args) #define create_workqueue(name) \ alloc_workqueue("%s", WQ_MEM_RECLAIM, 1, (name)) only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/net/arp.h +++ linux-raspi2-4.4.0/include/net/arp.h @@ -35,6 +35,22 @@ return n; } +static inline void __ipv4_confirm_neigh(struct net_device *dev, u32 key) +{ + struct neighbour *n; + + rcu_read_lock_bh(); + n = __ipv4_neigh_lookup_noref(dev, key); + if (n) { + unsigned long now = jiffies; + + /* avoid dirtying neighbour */ + if (n->confirmed != now) + n->confirmed = now; + } + rcu_read_unlock_bh(); +} + void arp_init(void); int arp_ioctl(struct net *net, unsigned int cmd, void __user *arg); void arp_send(int type, int ptype, __be32 dest_ip, only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/net/bluetooth/hci.h +++ linux-raspi2-4.4.0/include/net/bluetooth/hci.h @@ -266,7 +266,7 @@ #define HCI_AUTO_OFF_TIMEOUT msecs_to_jiffies(2000) /* 2 seconds */ #define HCI_POWER_OFF_TIMEOUT msecs_to_jiffies(5000) /* 5 seconds */ #define HCI_LE_CONN_TIMEOUT msecs_to_jiffies(20000) /* 20 seconds */ -#define HCI_LE_AUTOCONN_TIMEOUT msecs_to_jiffies(2000) /* 2 seconds */ +#define HCI_LE_AUTOCONN_TIMEOUT msecs_to_jiffies(4000) /* 4 seconds */ /* HCI data types */ #define HCI_COMMAND_PKT 0x01 only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/net/dst_ops.h +++ linux-raspi2-4.4.0/include/net/dst_ops.h @@ -33,6 +33,8 @@ struct neighbour * (*neigh_lookup)(const struct dst_entry *dst, struct sk_buff *skb, const void *daddr); + void (*confirm_neigh)(const struct dst_entry *dst, + const void *daddr); struct kmem_cache *kmem_cachep; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/net/genetlink.h +++ linux-raspi2-4.4.0/include/net/genetlink.h @@ -114,6 +114,7 @@ * @flags: flags * @policy: attribute validation policy * @doit: standard command callback + * @start: start callback for dumps * @dumpit: callback for dumpers * @done: completion callback for dumps * @ops_list: operations list @@ -122,6 +123,7 @@ const struct nla_policy *policy; int (*doit)(struct sk_buff *skb, struct genl_info *info); + int (*start)(struct netlink_callback *cb); int (*dumpit)(struct sk_buff *skb, struct netlink_callback *cb); int (*done)(struct netlink_callback *cb); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/net/inet_frag.h +++ linux-raspi2-4.4.0/include/net/inet_frag.h @@ -1,14 +1,9 @@ #ifndef __NET_FRAG_H__ #define __NET_FRAG_H__ -#include - struct netns_frags { - /* The percpu_counter "mem" need to be cacheline aligned. - * mem.count must not share cacheline with other writers - */ - struct percpu_counter mem ____cacheline_aligned_in_smp; - + /* Keep atomic mem on separate cachelines in structs that include it */ + atomic_t mem ____cacheline_aligned_in_smp; /* sysctls */ int timeout; int high_thresh; @@ -108,15 +103,10 @@ int inet_frags_init(struct inet_frags *); void inet_frags_fini(struct inet_frags *); -static inline int inet_frags_init_net(struct netns_frags *nf) -{ - return percpu_counter_init(&nf->mem, 0, GFP_KERNEL); -} -static inline void inet_frags_uninit_net(struct netns_frags *nf) +static inline void inet_frags_init_net(struct netns_frags *nf) { - percpu_counter_destroy(&nf->mem); + atomic_set(&nf->mem, 0); } - void inet_frags_exit_net(struct netns_frags *nf, struct inet_frags *f); void inet_frag_kill(struct inet_frag_queue *q, struct inet_frags *f); @@ -140,37 +130,24 @@ /* Memory Tracking Functions. */ -/* The default percpu_counter batch size is not big enough to scale to - * fragmentation mem acct sizes. - * The mem size of a 64K fragment is approx: - * (44 fragments * 2944 truesize) + frag_queue struct(200) = 129736 bytes - */ -static unsigned int frag_percpu_counter_batch = 130000; - static inline int frag_mem_limit(struct netns_frags *nf) { - return percpu_counter_read(&nf->mem); + return atomic_read(&nf->mem); } static inline void sub_frag_mem_limit(struct netns_frags *nf, int i) { - __percpu_counter_add(&nf->mem, -i, frag_percpu_counter_batch); + atomic_sub(i, &nf->mem); } static inline void add_frag_mem_limit(struct netns_frags *nf, int i) { - __percpu_counter_add(&nf->mem, i, frag_percpu_counter_batch); + atomic_add(i, &nf->mem); } -static inline unsigned int sum_frag_mem_limit(struct netns_frags *nf) +static inline int sum_frag_mem_limit(struct netns_frags *nf) { - unsigned int res; - - local_bh_disable(); - res = percpu_counter_sum_positive(&nf->mem); - local_bh_enable(); - - return res; + return atomic_read(&nf->mem); } /* RFC 3168 support : only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/net/ip6_fib.h +++ linux-raspi2-4.4.0/include/net/ip6_fib.h @@ -68,6 +68,7 @@ __u16 fn_flags; int fn_sernum; struct rt6_info *rr_ptr; + struct rcu_head rcu; }; #ifndef CONFIG_IPV6_SUBTREES @@ -102,7 +103,7 @@ * the same cache line. */ struct fib6_table *rt6i_table; - struct fib6_node *rt6i_node; + struct fib6_node __rcu *rt6i_node; struct in6_addr rt6i_gateway; @@ -165,13 +166,40 @@ rt0->rt6i_flags |= RTF_EXPIRES; } +/* Function to safely get fn->sernum for passed in rt + * and store result in passed in cookie. + * Return true if we can get cookie safely + * Return false if not + */ +static inline bool rt6_get_cookie_safe(const struct rt6_info *rt, + u32 *cookie) +{ + struct fib6_node *fn; + bool status = false; + + rcu_read_lock(); + fn = rcu_dereference(rt->rt6i_node); + + if (fn) { + *cookie = fn->fn_sernum; + status = true; + } + + rcu_read_unlock(); + return status; +} + static inline u32 rt6_get_cookie(const struct rt6_info *rt) { + u32 cookie = 0; + if (rt->rt6i_flags & RTF_PCPU || (unlikely(rt->dst.flags & DST_NOCACHE) && rt->dst.from)) rt = (struct rt6_info *)(rt->dst.from); - return rt->rt6i_node ? rt->rt6i_node->fn_sernum : 0; + rt6_get_cookie_safe(rt, &cookie); + + return cookie; } static inline void ip6_rt_put(struct rt6_info *rt) only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/net/ndisc.h +++ linux-raspi2-4.4.0/include/net/ndisc.h @@ -172,6 +172,23 @@ return n; } +static inline void __ipv6_confirm_neigh(struct net_device *dev, + const void *pkey) +{ + struct neighbour *n; + + rcu_read_lock_bh(); + n = __ipv6_neigh_lookup_noref(dev, pkey); + if (n) { + unsigned long now = jiffies; + + /* avoid dirtying neighbour */ + if (n->confirmed != now) + n->confirmed = now; + } + rcu_read_unlock_bh(); +} + int ndisc_init(void); int ndisc_late_init(void); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/net/sctp/sctp.h +++ linux-raspi2-4.4.0/include/net/sctp/sctp.h @@ -444,6 +444,8 @@ #define _sctp_walk_params(pos, chunk, end, member)\ for (pos.v = chunk->member;\ + (pos.v + offsetof(struct sctp_paramhdr, length) + sizeof(pos.p->length) <=\ + (void *)chunk + end) &&\ pos.v <= (void *)chunk + end - ntohs(pos.p->length) &&\ ntohs(pos.p->length) >= sizeof(sctp_paramhdr_t);\ pos.v += WORD_ROUND(ntohs(pos.p->length))) @@ -454,6 +456,8 @@ #define _sctp_walk_errors(err, chunk_hdr, end)\ for (err = (sctp_errhdr_t *)((void *)chunk_hdr + \ sizeof(sctp_chunkhdr_t));\ + ((void *)err + offsetof(sctp_errhdr_t, length) + sizeof(err->length) <=\ + (void *)chunk_hdr + end) &&\ (void *)err <= (void *)chunk_hdr + end - ntohs(err->length) &&\ ntohs(err->length) >= sizeof(sctp_errhdr_t); \ err = (sctp_errhdr_t *)((void *)err + WORD_ROUND(ntohs(err->length)))) @@ -592,10 +596,8 @@ */ static inline struct dst_entry *sctp_transport_dst_check(struct sctp_transport *t) { - if (t->dst && !dst_check(t->dst, t->dst_cookie)) { - dst_release(t->dst); - t->dst = NULL; - } + if (t->dst && !dst_check(t->dst, t->dst_cookie)) + sctp_transport_dst_release(t); return t->dst; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/net/sctp/structs.h +++ linux-raspi2-4.4.0/include/net/sctp/structs.h @@ -830,6 +830,8 @@ __u32 burst_limited; /* Holds old cwnd when max.burst is applied */ + __u32 dst_pending_confirm; /* need to confirm neighbour */ + /* Destination */ struct dst_entry *dst; /* Source address. */ @@ -966,6 +968,8 @@ void sctp_transport_reset(struct sctp_transport *); void sctp_transport_update_pmtu(struct sock *, struct sctp_transport *, u32); void sctp_transport_immediate_rtx(struct sctp_transport *); +void sctp_transport_dst_release(struct sctp_transport *t); +void sctp_transport_dst_confirm(struct sctp_transport *t); /* This is the structure we use to queue packets as they come into only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/net/sctp/ulpevent.h +++ linux-raspi2-4.4.0/include/net/sctp/ulpevent.h @@ -141,8 +141,12 @@ static inline int sctp_ulpevent_type_enabled(__u16 sn_type, struct sctp_event_subscribe *mask) { + int offset = sn_type - SCTP_SN_TYPE_BASE; char *amask = (char *) mask; - return amask[sn_type - SCTP_SN_TYPE_BASE]; + + if (offset >= sizeof(struct sctp_event_subscribe)) + return 0; + return amask[offset]; } /* Given an event subscription, is this event enabled? */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/scsi/scsi_transport_sas.h +++ linux-raspi2-4.4.0/include/scsi/scsi_transport_sas.h @@ -10,6 +10,21 @@ struct sas_rphy; struct request; +#if !IS_ENABLED(CONFIG_SCSI_SAS_ATTRS) +static inline int is_sas_attached(struct scsi_device *sdev) +{ + return 0; +} + +static inline int scsi_is_sas_rphy(const struct device *sdev) +{ + return 0; +} +#else +extern int is_sas_attached(struct scsi_device *sdev); +extern int scsi_is_sas_rphy(const struct device *); +#endif + static inline int sas_protocol_ata(enum sas_protocol proto) { return ((proto & SAS_PROTOCOL_SATA) || @@ -180,6 +195,7 @@ extern void sas_phy_delete(struct sas_phy *); extern int scsi_is_sas_phy(const struct device *); +u64 sas_get_address(struct scsi_device *); unsigned int sas_tlr_supported(struct scsi_device *); unsigned int sas_is_tlr_enabled(struct scsi_device *); void sas_disable_tlr(struct scsi_device *); @@ -192,7 +208,6 @@ extern void sas_rphy_remove(struct sas_rphy *); extern void sas_rphy_delete(struct sas_rphy *); extern void sas_rphy_unlink(struct sas_rphy *); -extern int scsi_is_sas_rphy(const struct device *); struct sas_port *sas_port_alloc(struct device *, int); struct sas_port *sas_port_alloc_num(struct device *); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/sound/seq_kernel.h +++ linux-raspi2-4.4.0/include/sound/seq_kernel.h @@ -49,7 +49,8 @@ #define SNDRV_SEQ_DEFAULT_CLIENT_EVENTS 200 /* max delivery path length */ -#define SNDRV_SEQ_MAX_HOPS 10 +/* NOTE: this shouldn't be greater than MAX_LOCKDEP_SUBCLASSES */ +#define SNDRV_SEQ_MAX_HOPS 8 /* max size of event size */ #define SNDRV_SEQ_MAX_EVENT_LEN 0x3fffffff only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/sound/seq_virmidi.h +++ linux-raspi2-4.4.0/include/sound/seq_virmidi.h @@ -60,6 +60,7 @@ int port; /* created/attached port */ unsigned int flags; /* SNDRV_VIRMIDI_* */ rwlock_t filelist_lock; + struct rw_semaphore filelist_sem; struct list_head filelist; }; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/target/iscsi/iscsi_target_core.h +++ linux-raspi2-4.4.0/include/target/iscsi/iscsi_target_core.h @@ -64,6 +64,14 @@ #define TA_DEFAULT_FABRIC_PROT_TYPE 0 /* TPG status needs to be enabled to return sendtargets discovery endpoint info */ #define TA_DEFAULT_TPG_ENABLED_SENDTARGETS 1 +/* + * Used to control the sending of keys with optional to respond state bit, + * as a workaround for non RFC compliant initiators,that do not propose, + * nor respond to specific keys required for login to complete. + * + * See iscsi_check_proposer_for_optional_reply() for more details. + */ +#define TA_DEFAULT_LOGIN_KEYS_WORKAROUND 1 #define ISCSI_IOV_DATA_BUFFER 5 @@ -554,6 +562,7 @@ #define LOGIN_FLAGS_READ_ACTIVE 1 #define LOGIN_FLAGS_CLOSED 2 #define LOGIN_FLAGS_READY 4 +#define LOGIN_FLAGS_INITIAL_PDU 8 unsigned long login_flags; struct delayed_work login_work; struct delayed_work login_cleanup_work; @@ -765,6 +774,7 @@ u8 t10_pi; u32 fabric_prot_type; u32 tpg_enabled_sendtargets; + u32 login_keys_workaround; struct iscsi_portal_group *tpg; }; @@ -774,6 +784,7 @@ int np_sock_type; enum np_thread_state_table np_thread_state; bool enabled; + atomic_t np_reset_count; enum iscsi_timer_flags_table np_login_timer_flags; u32 np_exports; enum np_flags_table np_flags; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/uapi/drm/drm_fourcc.h +++ linux-raspi2-4.4.0/include/uapi/drm/drm_fourcc.h @@ -150,6 +150,7 @@ /* Vendor Ids: */ #define DRM_FORMAT_MOD_NONE 0 +#define DRM_FORMAT_MOD_VENDOR_NONE 0 #define DRM_FORMAT_MOD_VENDOR_INTEL 0x01 #define DRM_FORMAT_MOD_VENDOR_AMD 0x02 #define DRM_FORMAT_MOD_VENDOR_NV 0x03 only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/uapi/linux/mroute6.h +++ linux-raspi2-4.4.0/include/uapi/linux/mroute6.h @@ -3,6 +3,7 @@ #include #include +#include /* For struct sockaddr_in6. */ /* * Based on the MROUTING 3.5 defines primarily to keep only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/uapi/linux/rds.h +++ linux-raspi2-4.4.0/include/uapi/linux/rds.h @@ -35,6 +35,7 @@ #define _LINUX_RDS_H #include +#include /* For __kernel_sockaddr_storage. */ #define RDS_IB_ABI_VERSION 0x301 @@ -223,7 +224,7 @@ }; struct rds_get_mr_for_dest_args { - struct sockaddr_storage dest_addr; + struct __kernel_sockaddr_storage dest_addr; struct rds_iovec vec; uint64_t cookie_addr; uint64_t flags; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/uapi/linux/seccomp.h +++ linux-raspi2-4.4.0/include/uapi/linux/seccomp.h @@ -11,11 +11,13 @@ #define SECCOMP_MODE_FILTER 2 /* uses user-supplied filter. */ /* Valid operations for seccomp syscall. */ -#define SECCOMP_SET_MODE_STRICT 0 -#define SECCOMP_SET_MODE_FILTER 1 +#define SECCOMP_SET_MODE_STRICT 0 +#define SECCOMP_SET_MODE_FILTER 1 +#define SECCOMP_GET_ACTION_AVAIL 2 /* Valid flags for SECCOMP_SET_MODE_FILTER */ #define SECCOMP_FILTER_FLAG_TSYNC 1 +#define SECCOMP_FILTER_FLAG_LOG 2 /* * All BPF programs must return a 32-bit value. @@ -29,6 +31,7 @@ #define SECCOMP_RET_TRAP 0x00030000U /* disallow and force a SIGSYS */ #define SECCOMP_RET_ERRNO 0x00050000U /* returns an errno */ #define SECCOMP_RET_TRACE 0x7ff00000U /* pass to a tracer or disallow */ +#define SECCOMP_RET_LOG 0x7ffc0000U /* allow after logging */ #define SECCOMP_RET_ALLOW 0x7fff0000U /* allow */ /* Masks for the return value sections. */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/uapi/linux/spi/spidev.h +++ linux-raspi2-4.4.0/include/uapi/linux/spi/spidev.h @@ -23,6 +23,7 @@ #define SPIDEV_H #include +#include /* User space versions of kernel symbols for SPI clocking modes, * matching only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/include/xen/swiotlb-xen.h +++ linux-raspi2-4.4.0/include/xen/swiotlb-xen.h @@ -58,4 +58,9 @@ extern int xen_swiotlb_set_dma_mask(struct device *dev, u64 dma_mask); + +extern int +xen_swiotlb_dma_mmap(struct device *dev, struct vm_area_struct *vma, + void *cpu_addr, dma_addr_t dma_addr, size_t size, + struct dma_attrs *attrs); #endif /* __LINUX_SWIOTLB_XEN_H */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/init/main.c +++ linux-raspi2-4.4.0/init/main.c @@ -81,6 +81,7 @@ #include #include #include +#include #include #include @@ -492,6 +493,7 @@ pgtable_init(); vmalloc_init(); ioremap_huge_init(); + kaiser_init(); } asmlinkage __visible void __init start_kernel(void) only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/kernel/extable.c +++ linux-raspi2-4.4.0/kernel/extable.c @@ -66,7 +66,7 @@ return 0; } -int core_kernel_text(unsigned long addr) +int notrace core_kernel_text(unsigned long addr) { if (addr >= (unsigned long)_stext && addr < (unsigned long)_etext) only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/kernel/gcov/gcc_4_7.c +++ linux-raspi2-4.4.0/kernel/gcov/gcc_4_7.c @@ -18,7 +18,9 @@ #include #include "gcov.h" -#if __GNUC__ == 5 && __GNUC_MINOR__ >= 1 +#if (__GNUC__ >= 7) +#define GCOV_COUNTERS 9 +#elif (__GNUC__ > 5) || (__GNUC__ == 5 && __GNUC_MINOR__ >= 1) #define GCOV_COUNTERS 10 #elif __GNUC__ == 4 && __GNUC_MINOR__ >= 9 #define GCOV_COUNTERS 9 only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/kernel/locking/lockdep.c +++ linux-raspi2-4.4.0/kernel/locking/lockdep.c @@ -3128,10 +3128,17 @@ if (depth) { hlock = curr->held_locks + depth - 1; if (hlock->class_idx == class_idx && nest_lock) { - if (hlock->references) + if (hlock->references) { + /* + * Check: unsigned int references:12, overflow. + */ + if (DEBUG_LOCKS_WARN_ON(hlock->references == (1 << 12)-1)) + return 0; + hlock->references++; - else + } else { hlock->references = 2; + } return 1; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/kernel/locking/locktorture.c +++ linux-raspi2-4.4.0/kernel/locking/locktorture.c @@ -776,6 +776,8 @@ else lock_torture_print_module_parms(cxt.cur_ops, "End of test: SUCCESS"); + kfree(cxt.lwsa); + kfree(cxt.lrsa); torture_cleanup_end(); } @@ -917,6 +919,8 @@ GFP_KERNEL); if (reader_tasks == NULL) { VERBOSE_TOROUT_ERRSTRING("reader_tasks: Out of memory"); + kfree(writer_tasks); + writer_tasks = NULL; firsterr = -ENOMEM; goto unwind; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/kernel/pid.c +++ linux-raspi2-4.4.0/kernel/pid.c @@ -526,8 +526,11 @@ if (!ns) ns = task_active_pid_ns(current); if (likely(pid_alive(task))) { - if (type != PIDTYPE_PID) + if (type != PIDTYPE_PID) { + if (type == __PIDTYPE_TGID) + type = PIDTYPE_PID; task = task->group_leader; + } nr = pid_nr_ns(rcu_dereference(task->pids[type].pid), ns); } rcu_read_unlock(); @@ -536,12 +539,6 @@ } EXPORT_SYMBOL(__task_pid_nr_ns); -pid_t task_tgid_nr_ns(struct task_struct *tsk, struct pid_namespace *ns) -{ - return pid_nr_ns(task_tgid(tsk), ns); -} -EXPORT_SYMBOL(task_tgid_nr_ns); - struct pid_namespace *task_active_pid_ns(struct task_struct *tsk) { return ns_of_pid(task_pid(tsk)); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/kernel/power/process.c +++ linux-raspi2-4.4.0/kernel/power/process.c @@ -18,8 +18,9 @@ #include #include #include +#include -/* +/* * Timeout for stopping processes */ unsigned int __read_mostly freeze_timeout_msecs = 20 * MSEC_PER_SEC; @@ -198,6 +199,8 @@ __usermodehelper_set_disable_depth(UMH_FREEZING); thaw_workqueues(); + cpuset_wait_for_hotplug(); + read_lock(&tasklist_lock); for_each_process_thread(g, p) { /* No other threads should have PF_SUSPEND_TASK set */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/kernel/rcu/tree.c +++ linux-raspi2-4.4.0/kernel/rcu/tree.c @@ -759,6 +759,12 @@ local_irq_save(flags); rdtp = this_cpu_ptr(&rcu_dynticks); + + /* Page faults can happen in NMI handlers, so check... */ + if (READ_ONCE(rdtp->dynticks_nmi_nesting)) + return; + + RCU_LOCKDEP_WARN(!irqs_disabled(), "rcu_irq_exit() invoked with irqs enabled!!!"); oldval = rdtp->dynticks_nesting; rdtp->dynticks_nesting--; WARN_ON_ONCE(IS_ENABLED(CONFIG_RCU_EQS_DEBUG) && @@ -887,6 +893,12 @@ local_irq_save(flags); rdtp = this_cpu_ptr(&rcu_dynticks); + + /* Page faults can happen in NMI handlers, so check... */ + if (READ_ONCE(rdtp->dynticks_nmi_nesting)) + return; + + RCU_LOCKDEP_WARN(!irqs_disabled(), "rcu_irq_enter() invoked with irqs enabled!!!"); oldval = rdtp->dynticks_nesting; rdtp->dynticks_nesting++; WARN_ON_ONCE(IS_ENABLED(CONFIG_RCU_EQS_DEBUG) && only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/kernel/sched/auto_group.c +++ linux-raspi2-4.4.0/kernel/sched/auto_group.c @@ -111,14 +111,11 @@ { if (tg != &root_task_group) return false; - /* - * We can only assume the task group can't go away on us if - * autogroup_move_group() can see us on ->thread_group list. + * If we race with autogroup_move_group() the caller can use the old + * value of signal->autogroup but in this case sched_move_task() will + * be called again before autogroup_kref_put(). */ - if (p->flags & PF_EXITING) - return false; - return true; } @@ -138,13 +135,17 @@ } p->signal->autogroup = autogroup_kref_get(ag); - - if (!READ_ONCE(sysctl_sched_autogroup_enabled)) - goto out; - + /* + * We can't avoid sched_move_task() after we changed signal->autogroup, + * this process can already run with task_group() == prev->tg or we can + * race with cgroup code which can read autogroup = prev under rq->lock. + * In the latter case for_each_thread() can not miss a migrating thread, + * cpu_cgroup_attach() must not be possible after cgroup_exit() and it + * can't be removed from thread list, we hold ->siglock. + */ for_each_thread(p, t) sched_move_task(t); -out: + unlock_task_sighand(p, &flags); autogroup_kref_put(prev); } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/kernel/time/timer.c +++ linux-raspi2-4.4.0/kernel/time/timer.c @@ -127,7 +127,7 @@ int ret; mutex_lock(&mutex); - ret = proc_dointvec(table, write, buffer, lenp, ppos); + ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos); if (!ret && write) timers_update_migration(false); mutex_unlock(&mutex); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/kernel/trace/trace_selftest.c +++ linux-raspi2-4.4.0/kernel/trace/trace_selftest.c @@ -272,7 +272,7 @@ goto out_free; if (cnt > 1) { if (trace_selftest_test_global_cnt == 0) - goto out; + goto out_free; } if (trace_selftest_test_dyn_cnt == 0) goto out_free; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/kernel/workqueue_internal.h +++ linux-raspi2-4.4.0/kernel/workqueue_internal.h @@ -9,6 +9,7 @@ #include #include +#include struct worker_pool; @@ -59,7 +60,7 @@ */ static inline struct worker *current_wq_worker(void) { - if (current->flags & PF_WQ_WORKER) + if (in_task() && (current->flags & PF_WQ_WORKER)) return kthread_data(current); return NULL; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/lib/Kconfig.debug +++ linux-raspi2-4.4.0/lib/Kconfig.debug @@ -145,7 +145,7 @@ config DEBUG_INFO_SPLIT bool "Produce split debuginfo in .dwo files" - depends on DEBUG_INFO + depends on DEBUG_INFO && !FRV help Generate debug info into separate .dwo files. This significantly reduces the build directory size for builds with DEBUG_INFO, only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/lib/digsig.c +++ linux-raspi2-4.4.0/lib/digsig.c @@ -87,6 +87,12 @@ down_read(&key->sem); ukp = user_key_payload(key); + if (!ukp) { + /* key was revoked before we acquired its semaphore */ + err = -EKEYREVOKED; + goto err1; + } + if (ukp->datalen < sizeof(*pkh)) goto err1; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/lib/test_firmware.c +++ linux-raspi2-4.4.0/lib/test_firmware.c @@ -65,14 +65,19 @@ release_firmware(test_firmware); test_firmware = NULL; rc = request_firmware(&test_firmware, name, dev); - if (rc) + if (rc) { pr_info("load of '%s' failed: %d\n", name, rc); - pr_info("loaded: %zu\n", test_firmware ? test_firmware->size : 0); + goto out; + } + pr_info("loaded: %zu\n", test_firmware->size); + rc = count; + +out: mutex_unlock(&test_fw_mutex); kfree(name); - return count; + return rc; } static DEVICE_ATTR_WO(trigger_request); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/mm/mempool.c +++ linux-raspi2-4.4.0/mm/mempool.c @@ -135,8 +135,8 @@ void *element = pool->elements[--pool->curr_nr]; BUG_ON(pool->curr_nr < 0); - check_element(pool, element); kasan_unpoison_element(pool, element); + check_element(pool, element); return element; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/mm/mprotect.c +++ linux-raspi2-4.4.0/mm/mprotect.c @@ -72,6 +72,7 @@ if (!pte) return 0; + flush_tlb_batched_pending(vma->vm_mm); arch_enter_lazy_mmu_mode(); do { oldpte = *pte; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/mm/mremap.c +++ linux-raspi2-4.4.0/mm/mremap.c @@ -135,6 +135,7 @@ new_ptl = pte_lockptr(mm, new_pmd); if (new_ptl != old_ptl) spin_lock_nested(new_ptl, SINGLE_DEPTH_NESTING); + flush_tlb_batched_pending(vma->vm_mm); arch_enter_lazy_mmu_mode(); for (; old_addr < old_end; old_pte++, old_addr += PAGE_SIZE, only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/mm/rmap.c +++ linux-raspi2-4.4.0/mm/rmap.c @@ -649,6 +649,13 @@ tlb_ubc->flush_required = true; /* + * Ensure compiler does not re-order the setting of tlb_flush_batched + * before the PTE is cleared. + */ + barrier(); + mm->tlb_flush_batched = true; + + /* * If the PTE was dirty then it's best to assume it's writable. The * caller must use try_to_unmap_flush_dirty() or try_to_unmap_flush() * before the page is queued for IO. @@ -675,6 +682,35 @@ return should_defer; } + +/* + * Reclaim unmaps pages under the PTL but do not flush the TLB prior to + * releasing the PTL if TLB flushes are batched. It's possible for a parallel + * operation such as mprotect or munmap to race between reclaim unmapping + * the page and flushing the page. If this race occurs, it potentially allows + * access to data via a stale TLB entry. Tracking all mm's that have TLB + * batching in flight would be expensive during reclaim so instead track + * whether TLB batching occurred in the past and if so then do a flush here + * if required. This will cost one additional flush per reclaim cycle paid + * by the first operation at risk such as mprotect and mumap. + * + * This must be called under the PTL so that an access to tlb_flush_batched + * that is potentially a "reclaim vs mprotect/munmap/etc" race will synchronise + * via the PTL. + */ +void flush_tlb_batched_pending(struct mm_struct *mm) +{ + if (mm->tlb_flush_batched) { + flush_tlb_mm(mm); + + /* + * Do not allow the compiler to re-order the clearing of + * tlb_flush_batched before the tlb is flushed. + */ + barrier(); + mm->tlb_flush_batched = false; + } +} #else static void set_tlb_ubc_flush_pending(struct mm_struct *mm, struct page *page, bool writable) only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/mm/vmstat.c +++ linux-raspi2-4.4.0/mm/vmstat.c @@ -736,6 +736,7 @@ "nr_slab_unreclaimable", "nr_page_table_pages", "nr_kernel_stack", + "nr_overhead", "nr_unstable", "nr_bounce", "nr_vmscan_write", only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/net/bluetooth/bnep/core.c +++ linux-raspi2-4.4.0/net/bluetooth/bnep/core.c @@ -484,16 +484,16 @@ struct net_device *dev = s->dev; struct sock *sk = s->sock->sk; struct sk_buff *skb; - wait_queue_t wait; + DEFINE_WAIT_FUNC(wait, woken_wake_function); BT_DBG(""); set_user_nice(current, -15); - init_waitqueue_entry(&wait, current); add_wait_queue(sk_sleep(sk), &wait); while (1) { - set_current_state(TASK_INTERRUPTIBLE); + /* Ensure session->terminate is updated */ + smp_mb__before_atomic(); if (atomic_read(&s->terminate)) break; @@ -515,9 +515,8 @@ break; netif_wake_queue(dev); - schedule(); + wait_woken(&wait, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT); } - __set_current_state(TASK_RUNNING); remove_wait_queue(sk_sleep(sk), &wait); /* Cleanup session */ @@ -663,7 +662,7 @@ s = __bnep_get_session(req->dst); if (s) { atomic_inc(&s->terminate); - wake_up_process(s->task); + wake_up_interruptible(sk_sleep(s->sock->sk)); } else err = -ENOENT; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/net/bluetooth/cmtp/core.c +++ linux-raspi2-4.4.0/net/bluetooth/cmtp/core.c @@ -281,16 +281,16 @@ struct cmtp_session *session = arg; struct sock *sk = session->sock->sk; struct sk_buff *skb; - wait_queue_t wait; + DEFINE_WAIT_FUNC(wait, woken_wake_function); BT_DBG("session %p", session); set_user_nice(current, -15); - init_waitqueue_entry(&wait, current); add_wait_queue(sk_sleep(sk), &wait); while (1) { - set_current_state(TASK_INTERRUPTIBLE); + /* Ensure session->terminate is updated */ + smp_mb__before_atomic(); if (atomic_read(&session->terminate)) break; @@ -307,9 +307,8 @@ cmtp_process_transmit(session); - schedule(); + wait_woken(&wait, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT); } - __set_current_state(TASK_RUNNING); remove_wait_queue(sk_sleep(sk), &wait); down_write(&cmtp_session_sem); @@ -394,7 +393,7 @@ err = cmtp_attach_device(session); if (err < 0) { atomic_inc(&session->terminate); - wake_up_process(session->task); + wake_up_interruptible(sk_sleep(session->sock->sk)); up_write(&cmtp_session_sem); return err; } @@ -432,7 +431,11 @@ /* Stop session thread */ atomic_inc(&session->terminate); - wake_up_process(session->task); + + /* Ensure session->terminate is updated */ + smp_mb__after_atomic(); + + wake_up_interruptible(sk_sleep(session->sock->sk)); } else err = -ENOENT; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/net/bluetooth/hidp/core.c +++ linux-raspi2-4.4.0/net/bluetooth/hidp/core.c @@ -36,6 +36,7 @@ #define VERSION "1.2" static DECLARE_RWSEM(hidp_session_sem); +static DECLARE_WAIT_QUEUE_HEAD(hidp_session_wq); static LIST_HEAD(hidp_session_list); static unsigned char hidp_keycode[256] = { @@ -1068,12 +1069,12 @@ * Wake up session thread and notify it to stop. This is asynchronous and * returns immediately. Call this whenever a runtime error occurs and you want * the session to stop. - * Note: wake_up_process() performs any necessary memory-barriers for us. + * Note: wake_up_interruptible() performs any necessary memory-barriers for us. */ static void hidp_session_terminate(struct hidp_session *session) { atomic_inc(&session->terminate); - wake_up_process(session->task); + wake_up_interruptible(&hidp_session_wq); } /* @@ -1180,7 +1181,9 @@ struct sock *ctrl_sk = session->ctrl_sock->sk; struct sock *intr_sk = session->intr_sock->sk; struct sk_buff *skb; + DEFINE_WAIT_FUNC(wait, woken_wake_function); + add_wait_queue(&hidp_session_wq, &wait); for (;;) { /* * This thread can be woken up two ways: @@ -1188,12 +1191,10 @@ * session->terminate flag and wakes this thread up. * - Via modifying the socket state of ctrl/intr_sock. This * thread is woken up by ->sk_state_changed(). - * - * Note: set_current_state() performs any necessary - * memory-barriers for us. */ - set_current_state(TASK_INTERRUPTIBLE); + /* Ensure session->terminate is updated */ + smp_mb__before_atomic(); if (atomic_read(&session->terminate)) break; @@ -1227,11 +1228,22 @@ hidp_process_transmit(session, &session->ctrl_transmit, session->ctrl_sock); - schedule(); + wait_woken(&wait, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT); } + remove_wait_queue(&hidp_session_wq, &wait); atomic_inc(&session->terminate); - set_current_state(TASK_RUNNING); + + /* Ensure session->terminate is updated */ + smp_mb__after_atomic(); +} + +static int hidp_session_wake_function(wait_queue_t *wait, + unsigned int mode, + int sync, void *key) +{ + wake_up_interruptible(&hidp_session_wq); + return false; } /* @@ -1244,7 +1256,8 @@ static int hidp_session_thread(void *arg) { struct hidp_session *session = arg; - wait_queue_t ctrl_wait, intr_wait; + DEFINE_WAIT_FUNC(ctrl_wait, hidp_session_wake_function); + DEFINE_WAIT_FUNC(intr_wait, hidp_session_wake_function); BT_DBG("session %p", session); @@ -1254,8 +1267,6 @@ set_user_nice(current, -15); hidp_set_timer(session); - init_waitqueue_entry(&ctrl_wait, current); - init_waitqueue_entry(&intr_wait, current); add_wait_queue(sk_sleep(session->ctrl_sock->sk), &ctrl_wait); add_wait_queue(sk_sleep(session->intr_sock->sk), &intr_wait); /* This memory barrier is paired with wq_has_sleeper(). See only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/net/bluetooth/l2cap_core.c +++ linux-raspi2-4.4.0/net/bluetooth/l2cap_core.c @@ -57,7 +57,7 @@ u8 code, u8 ident, u16 dlen, void *data); static void l2cap_send_cmd(struct l2cap_conn *conn, u8 ident, u8 code, u16 len, void *data); -static int l2cap_build_conf_req(struct l2cap_chan *chan, void *data); +static int l2cap_build_conf_req(struct l2cap_chan *chan, void *data, size_t data_size); static void l2cap_send_disconn_req(struct l2cap_chan *chan, int err); static void l2cap_tx(struct l2cap_chan *chan, struct l2cap_ctrl *control, @@ -1462,7 +1462,7 @@ set_bit(CONF_REQ_SENT, &chan->conf_state); l2cap_send_cmd(conn, l2cap_get_ident(conn), L2CAP_CONF_REQ, - l2cap_build_conf_req(chan, buf), buf); + l2cap_build_conf_req(chan, buf, sizeof(buf)), buf); chan->num_conf_req++; } @@ -2966,12 +2966,15 @@ return len; } -static void l2cap_add_conf_opt(void **ptr, u8 type, u8 len, unsigned long val) +static void l2cap_add_conf_opt(void **ptr, u8 type, u8 len, unsigned long val, size_t size) { struct l2cap_conf_opt *opt = *ptr; BT_DBG("type 0x%2.2x len %u val 0x%lx", type, len, val); + if (size < L2CAP_CONF_OPT_SIZE + len) + return; + opt->type = type; opt->len = len; @@ -2996,7 +2999,7 @@ *ptr += L2CAP_CONF_OPT_SIZE + len; } -static void l2cap_add_opt_efs(void **ptr, struct l2cap_chan *chan) +static void l2cap_add_opt_efs(void **ptr, struct l2cap_chan *chan, size_t size) { struct l2cap_conf_efs efs; @@ -3024,7 +3027,7 @@ } l2cap_add_conf_opt(ptr, L2CAP_CONF_EFS, sizeof(efs), - (unsigned long) &efs); + (unsigned long) &efs, size); } static void l2cap_ack_timeout(struct work_struct *work) @@ -3170,11 +3173,12 @@ chan->ack_win = chan->tx_win; } -static int l2cap_build_conf_req(struct l2cap_chan *chan, void *data) +static int l2cap_build_conf_req(struct l2cap_chan *chan, void *data, size_t data_size) { struct l2cap_conf_req *req = data; struct l2cap_conf_rfc rfc = { .mode = chan->mode }; void *ptr = req->data; + void *endptr = data + data_size; u16 size; BT_DBG("chan %p", chan); @@ -3199,7 +3203,7 @@ done: if (chan->imtu != L2CAP_DEFAULT_MTU) - l2cap_add_conf_opt(&ptr, L2CAP_CONF_MTU, 2, chan->imtu); + l2cap_add_conf_opt(&ptr, L2CAP_CONF_MTU, 2, chan->imtu, endptr - ptr); switch (chan->mode) { case L2CAP_MODE_BASIC: @@ -3218,7 +3222,7 @@ rfc.max_pdu_size = 0; l2cap_add_conf_opt(&ptr, L2CAP_CONF_RFC, sizeof(rfc), - (unsigned long) &rfc); + (unsigned long) &rfc, endptr - ptr); break; case L2CAP_MODE_ERTM: @@ -3238,21 +3242,21 @@ L2CAP_DEFAULT_TX_WINDOW); l2cap_add_conf_opt(&ptr, L2CAP_CONF_RFC, sizeof(rfc), - (unsigned long) &rfc); + (unsigned long) &rfc, endptr - ptr); if (test_bit(FLAG_EFS_ENABLE, &chan->flags)) - l2cap_add_opt_efs(&ptr, chan); + l2cap_add_opt_efs(&ptr, chan, endptr - ptr); if (test_bit(FLAG_EXT_CTRL, &chan->flags)) l2cap_add_conf_opt(&ptr, L2CAP_CONF_EWS, 2, - chan->tx_win); + chan->tx_win, endptr - ptr); if (chan->conn->feat_mask & L2CAP_FEAT_FCS) if (chan->fcs == L2CAP_FCS_NONE || test_bit(CONF_RECV_NO_FCS, &chan->conf_state)) { chan->fcs = L2CAP_FCS_NONE; l2cap_add_conf_opt(&ptr, L2CAP_CONF_FCS, 1, - chan->fcs); + chan->fcs, endptr - ptr); } break; @@ -3270,17 +3274,17 @@ rfc.max_pdu_size = cpu_to_le16(size); l2cap_add_conf_opt(&ptr, L2CAP_CONF_RFC, sizeof(rfc), - (unsigned long) &rfc); + (unsigned long) &rfc, endptr - ptr); if (test_bit(FLAG_EFS_ENABLE, &chan->flags)) - l2cap_add_opt_efs(&ptr, chan); + l2cap_add_opt_efs(&ptr, chan, endptr - ptr); if (chan->conn->feat_mask & L2CAP_FEAT_FCS) if (chan->fcs == L2CAP_FCS_NONE || test_bit(CONF_RECV_NO_FCS, &chan->conf_state)) { chan->fcs = L2CAP_FCS_NONE; l2cap_add_conf_opt(&ptr, L2CAP_CONF_FCS, 1, - chan->fcs); + chan->fcs, endptr - ptr); } break; } @@ -3291,10 +3295,11 @@ return ptr - data; } -static int l2cap_parse_conf_req(struct l2cap_chan *chan, void *data) +static int l2cap_parse_conf_req(struct l2cap_chan *chan, void *data, size_t data_size) { struct l2cap_conf_rsp *rsp = data; void *ptr = rsp->data; + void *endptr = data + data_size; void *req = chan->conf_req; int len = chan->conf_len; int type, hint, olen; @@ -3396,7 +3401,7 @@ return -ECONNREFUSED; l2cap_add_conf_opt(&ptr, L2CAP_CONF_RFC, sizeof(rfc), - (unsigned long) &rfc); + (unsigned long) &rfc, endptr - ptr); } if (result == L2CAP_CONF_SUCCESS) { @@ -3409,7 +3414,7 @@ chan->omtu = mtu; set_bit(CONF_MTU_DONE, &chan->conf_state); } - l2cap_add_conf_opt(&ptr, L2CAP_CONF_MTU, 2, chan->omtu); + l2cap_add_conf_opt(&ptr, L2CAP_CONF_MTU, 2, chan->omtu, endptr - ptr); if (remote_efs) { if (chan->local_stype != L2CAP_SERV_NOTRAFIC && @@ -3423,7 +3428,7 @@ l2cap_add_conf_opt(&ptr, L2CAP_CONF_EFS, sizeof(efs), - (unsigned long) &efs); + (unsigned long) &efs, endptr - ptr); } else { /* Send PENDING Conf Rsp */ result = L2CAP_CONF_PENDING; @@ -3456,7 +3461,7 @@ set_bit(CONF_MODE_DONE, &chan->conf_state); l2cap_add_conf_opt(&ptr, L2CAP_CONF_RFC, - sizeof(rfc), (unsigned long) &rfc); + sizeof(rfc), (unsigned long) &rfc, endptr - ptr); if (test_bit(FLAG_EFS_ENABLE, &chan->flags)) { chan->remote_id = efs.id; @@ -3470,7 +3475,7 @@ le32_to_cpu(efs.sdu_itime); l2cap_add_conf_opt(&ptr, L2CAP_CONF_EFS, sizeof(efs), - (unsigned long) &efs); + (unsigned long) &efs, endptr - ptr); } break; @@ -3484,7 +3489,7 @@ set_bit(CONF_MODE_DONE, &chan->conf_state); l2cap_add_conf_opt(&ptr, L2CAP_CONF_RFC, sizeof(rfc), - (unsigned long) &rfc); + (unsigned long) &rfc, endptr - ptr); break; @@ -3506,10 +3511,11 @@ } static int l2cap_parse_conf_rsp(struct l2cap_chan *chan, void *rsp, int len, - void *data, u16 *result) + void *data, size_t size, u16 *result) { struct l2cap_conf_req *req = data; void *ptr = req->data; + void *endptr = data + size; int type, olen; unsigned long val; struct l2cap_conf_rfc rfc = { .mode = L2CAP_MODE_BASIC }; @@ -3527,13 +3533,13 @@ chan->imtu = L2CAP_DEFAULT_MIN_MTU; } else chan->imtu = val; - l2cap_add_conf_opt(&ptr, L2CAP_CONF_MTU, 2, chan->imtu); + l2cap_add_conf_opt(&ptr, L2CAP_CONF_MTU, 2, chan->imtu, endptr - ptr); break; case L2CAP_CONF_FLUSH_TO: chan->flush_to = val; l2cap_add_conf_opt(&ptr, L2CAP_CONF_FLUSH_TO, - 2, chan->flush_to); + 2, chan->flush_to, endptr - ptr); break; case L2CAP_CONF_RFC: @@ -3547,13 +3553,13 @@ chan->fcs = 0; l2cap_add_conf_opt(&ptr, L2CAP_CONF_RFC, - sizeof(rfc), (unsigned long) &rfc); + sizeof(rfc), (unsigned long) &rfc, endptr - ptr); break; case L2CAP_CONF_EWS: chan->ack_win = min_t(u16, val, chan->ack_win); l2cap_add_conf_opt(&ptr, L2CAP_CONF_EWS, 2, - chan->tx_win); + chan->tx_win, endptr - ptr); break; case L2CAP_CONF_EFS: @@ -3566,7 +3572,7 @@ return -ECONNREFUSED; l2cap_add_conf_opt(&ptr, L2CAP_CONF_EFS, sizeof(efs), - (unsigned long) &efs); + (unsigned long) &efs, endptr - ptr); break; case L2CAP_CONF_FCS: @@ -3671,7 +3677,7 @@ return; l2cap_send_cmd(conn, l2cap_get_ident(conn), L2CAP_CONF_REQ, - l2cap_build_conf_req(chan, buf), buf); + l2cap_build_conf_req(chan, buf, sizeof(buf)), buf); chan->num_conf_req++; } @@ -3879,7 +3885,7 @@ u8 buf[128]; set_bit(CONF_REQ_SENT, &chan->conf_state); l2cap_send_cmd(conn, l2cap_get_ident(conn), L2CAP_CONF_REQ, - l2cap_build_conf_req(chan, buf), buf); + l2cap_build_conf_req(chan, buf, sizeof(buf)), buf); chan->num_conf_req++; } @@ -3957,7 +3963,7 @@ break; l2cap_send_cmd(conn, l2cap_get_ident(conn), L2CAP_CONF_REQ, - l2cap_build_conf_req(chan, req), req); + l2cap_build_conf_req(chan, req, sizeof(req)), req); chan->num_conf_req++; break; @@ -4069,7 +4075,7 @@ } /* Complete config. */ - len = l2cap_parse_conf_req(chan, rsp); + len = l2cap_parse_conf_req(chan, rsp, sizeof(rsp)); if (len < 0) { l2cap_send_disconn_req(chan, ECONNRESET); goto unlock; @@ -4103,7 +4109,7 @@ if (!test_and_set_bit(CONF_REQ_SENT, &chan->conf_state)) { u8 buf[64]; l2cap_send_cmd(conn, l2cap_get_ident(conn), L2CAP_CONF_REQ, - l2cap_build_conf_req(chan, buf), buf); + l2cap_build_conf_req(chan, buf, sizeof(buf)), buf); chan->num_conf_req++; } @@ -4163,7 +4169,7 @@ char buf[64]; len = l2cap_parse_conf_rsp(chan, rsp->data, len, - buf, &result); + buf, sizeof(buf), &result); if (len < 0) { l2cap_send_disconn_req(chan, ECONNRESET); goto done; @@ -4193,7 +4199,7 @@ /* throw out any old stored conf requests */ result = L2CAP_CONF_SUCCESS; len = l2cap_parse_conf_rsp(chan, rsp->data, len, - req, &result); + req, sizeof(req), &result); if (len < 0) { l2cap_send_disconn_req(chan, ECONNRESET); goto done; @@ -4770,7 +4776,7 @@ set_bit(CONF_REQ_SENT, &chan->conf_state); l2cap_send_cmd(chan->conn, l2cap_get_ident(chan->conn), L2CAP_CONF_REQ, - l2cap_build_conf_req(chan, buf), buf); + l2cap_build_conf_req(chan, buf, sizeof(buf)), buf); chan->num_conf_req++; } } @@ -7442,7 +7448,7 @@ set_bit(CONF_REQ_SENT, &chan->conf_state); l2cap_send_cmd(conn, l2cap_get_ident(conn), L2CAP_CONF_REQ, - l2cap_build_conf_req(chan, buf), + l2cap_build_conf_req(chan, buf, sizeof(buf)), buf); chan->num_conf_req++; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/net/compat.c +++ linux-raspi2-4.4.0/net/compat.c @@ -22,6 +22,7 @@ #include #include #include +#include #include #include @@ -767,14 +768,24 @@ COMPAT_SYSCALL_DEFINE2(socketcall, int, call, u32 __user *, args) { - int ret; - u32 a[6]; + u32 a[AUDITSC_ARGS]; + unsigned int len; u32 a0, a1; + int ret; if (call < SYS_SOCKET || call > SYS_SENDMMSG) return -EINVAL; - if (copy_from_user(a, args, nas[call])) + len = nas[call]; + if (len > sizeof(a)) + return -EINVAL; + + if (copy_from_user(a, args, len)) return -EFAULT; + + ret = audit_socketcall_compat(len / sizeof(a[0]), a); + if (ret) + return ret; + a0 = a[0]; a1 = a[1]; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/net/core/dev_ioctl.c +++ linux-raspi2-4.4.0/net/core/dev_ioctl.c @@ -28,6 +28,7 @@ if (copy_from_user(&ifr, arg, sizeof(struct ifreq))) return -EFAULT; + ifr.ifr_name[IFNAMSIZ-1] = 0; error = netdev_get_name(net, ifr.ifr_name, ifr.ifr_ifindex); if (error) only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/net/dccp/feat.c +++ linux-raspi2-4.4.0/net/dccp/feat.c @@ -1471,9 +1471,12 @@ * singleton values (which always leads to failure). * These settings can still (later) be overridden via sockopts. */ - if (ccid_get_builtin_ccids(&tx.val, &tx.len) || - ccid_get_builtin_ccids(&rx.val, &rx.len)) + if (ccid_get_builtin_ccids(&tx.val, &tx.len)) return -ENOBUFS; + if (ccid_get_builtin_ccids(&rx.val, &rx.len)) { + kfree(tx.val); + return -ENOBUFS; + } if (!dccp_feat_prefer(sysctl_dccp_tx_ccid, tx.val, tx.len) || !dccp_feat_prefer(sysctl_dccp_rx_ccid, rx.val, rx.len)) only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/net/dns_resolver/dns_key.c +++ linux-raspi2-4.4.0/net/dns_resolver/dns_key.c @@ -224,7 +224,7 @@ static void dns_resolver_describe(const struct key *key, struct seq_file *m) { seq_puts(m, key->description); - if (key_is_instantiated(key)) { + if (key_is_positive(key)) { int err = PTR_ERR(key->payload.data[dns_key_error]); if (err) only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/net/dsa/Kconfig +++ linux-raspi2-4.4.0/net/dsa/Kconfig @@ -1,12 +1,13 @@ config HAVE_NET_DSA def_bool y - depends on NETDEVICES && !S390 + depends on INET && NETDEVICES && !S390 # Drivers must select NET_DSA and the appropriate tagging format config NET_DSA tristate "Distributed Switch Architecture" - depends on HAVE_NET_DSA && NET_SWITCHDEV + depends on HAVE_NET_DSA + select NET_SWITCHDEV select PHYLIB ---help--- Say Y if you want to enable support for the hardware switches supported only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/net/ieee802154/6lowpan/reassembly.c +++ linux-raspi2-4.4.0/net/ieee802154/6lowpan/reassembly.c @@ -580,19 +580,14 @@ { struct netns_ieee802154_lowpan *ieee802154_lowpan = net_ieee802154_lowpan(net); - int res; ieee802154_lowpan->frags.high_thresh = IPV6_FRAG_HIGH_THRESH; ieee802154_lowpan->frags.low_thresh = IPV6_FRAG_LOW_THRESH; ieee802154_lowpan->frags.timeout = IPV6_FRAG_TIMEOUT; - res = inet_frags_init_net(&ieee802154_lowpan->frags); - if (res) - return res; - res = lowpan_frags_ns_sysctl_register(net); - if (res) - inet_frags_uninit_net(&ieee802154_lowpan->frags); - return res; + inet_frags_init_net(&ieee802154_lowpan->frags); + + return lowpan_frags_ns_sysctl_register(net); } static void __net_exit lowpan_frags_exit_net(struct net *net) only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/net/ipv4/ah4.c +++ linux-raspi2-4.4.0/net/ipv4/ah4.c @@ -270,6 +270,9 @@ int ihl = ip_hdrlen(skb); int ah_hlen = (ah->hdrlen + 2) << 2; + if (err) + goto out; + work_iph = AH_SKB_CB(skb)->tmp; auth_data = ah_tmp_auth(work_iph, ihl); icv = ah_tmp_icv(ahp->ahash, auth_data, ahp->icv_trunc_len); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/net/ipv4/inet_fragment.c +++ linux-raspi2-4.4.0/net/ipv4/inet_fragment.c @@ -234,10 +234,8 @@ cond_resched(); if (read_seqretry(&f->rnd_seqlock, seq) || - percpu_counter_sum(&nf->mem)) + sum_frag_mem_limit(nf)) goto evict_again; - - percpu_counter_destroy(&nf->mem); } EXPORT_SYMBOL(inet_frags_exit_net); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/net/ipv4/netfilter/nf_nat_snmp_basic.c +++ linux-raspi2-4.4.0/net/ipv4/netfilter/nf_nat_snmp_basic.c @@ -1304,6 +1304,7 @@ static void __exit nf_nat_snmp_basic_fini(void) { RCU_INIT_POINTER(nf_nat_snmp_hook, NULL); + synchronize_rcu(); nf_conntrack_helper_unregister(&snmp_trap_helper); } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/net/ipv4/syncookies.c +++ linux-raspi2-4.4.0/net/ipv4/syncookies.c @@ -337,6 +337,7 @@ treq = tcp_rsk(req); treq->rcv_isn = ntohl(th->seq) - 1; treq->snt_isn = cookie; + treq->txhash = net_tx_rndhash(); req->mss = mss; ireq->ir_num = ntohs(th->dest); ireq->ir_rmt_port = th->source; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/net/ipv6/netfilter/nf_conntrack_reasm.c +++ linux-raspi2-4.4.0/net/ipv6/netfilter/nf_conntrack_reasm.c @@ -649,18 +649,12 @@ static int nf_ct_net_init(struct net *net) { - int res; - net->nf_frag.frags.high_thresh = IPV6_FRAG_HIGH_THRESH; net->nf_frag.frags.low_thresh = IPV6_FRAG_LOW_THRESH; net->nf_frag.frags.timeout = IPV6_FRAG_TIMEOUT; - res = inet_frags_init_net(&net->nf_frag.frags); - if (res) - return res; - res = nf_ct_frag6_sysctl_register(net); - if (res) - inet_frags_uninit_net(&net->nf_frag.frags); - return res; + inet_frags_init_net(&net->nf_frag.frags); + + return nf_ct_frag6_sysctl_register(net); } static void nf_ct_net_exit(struct net *net) only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/net/ipv6/syncookies.c +++ linux-raspi2-4.4.0/net/ipv6/syncookies.c @@ -210,6 +210,7 @@ treq->snt_synack.v64 = 0; treq->rcv_isn = ntohl(th->seq) - 1; treq->snt_isn = cookie; + treq->txhash = net_tx_rndhash(); /* * We need to lookup the dst_entry to get the correct window size. only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/net/mac80211/offchannel.c +++ linux-raspi2-4.4.0/net/mac80211/offchannel.c @@ -469,6 +469,8 @@ struct ieee80211_roc_work *roc, *tmp; LIST_HEAD(tmp_list); + flush_work(&local->hw_roc_start); + mutex_lock(&local->mtx); list_for_each_entry_safe(roc, tmp, &local->roc_list, list) { if (sdata && roc->sdata != sdata) only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/net/netfilter/nf_conntrack_ecache.c +++ linux-raspi2-4.4.0/net/netfilter/nf_conntrack_ecache.c @@ -200,6 +200,7 @@ BUG_ON(notify != new); RCU_INIT_POINTER(net->ct.nf_conntrack_event_cb, NULL); mutex_unlock(&nf_ct_ecache_mutex); + /* synchronize_rcu() is called from ctnetlink_exit. */ } EXPORT_SYMBOL_GPL(nf_conntrack_unregister_notifier); @@ -236,6 +237,7 @@ BUG_ON(notify != new); RCU_INIT_POINTER(net->ct.nf_expect_event_cb, NULL); mutex_unlock(&nf_ct_ecache_mutex); + /* synchronize_rcu() is called from ctnetlink_exit. */ } EXPORT_SYMBOL_GPL(nf_ct_expect_unregister_notifier); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/net/netfilter/nf_conntrack_extend.c +++ linux-raspi2-4.4.0/net/netfilter/nf_conntrack_extend.c @@ -53,7 +53,11 @@ rcu_read_lock(); t = rcu_dereference(nf_ct_ext_types[id]); - BUG_ON(t == NULL); + if (!t) { + rcu_read_unlock(); + return NULL; + } + off = ALIGN(sizeof(struct nf_ct_ext), t->align); len = off + t->len + var_alloc_len; alloc_size = t->alloc_size + var_alloc_len; @@ -88,7 +92,10 @@ rcu_read_lock(); t = rcu_dereference(nf_ct_ext_types[id]); - BUG_ON(t == NULL); + if (!t) { + rcu_read_unlock(); + return NULL; + } newoff = ALIGN(old->len, t->align); newlen = newoff + t->len + var_alloc_len; @@ -186,6 +193,6 @@ RCU_INIT_POINTER(nf_ct_ext_types[type->id], NULL); update_alloc_size(type); mutex_unlock(&nf_ct_ext_type_mutex); - rcu_barrier(); /* Wait for completion of call_rcu()'s */ + synchronize_rcu(); } EXPORT_SYMBOL_GPL(nf_ct_extend_unregister); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/net/netfilter/nf_nat_core.c +++ linux-raspi2-4.4.0/net/netfilter/nf_nat_core.c @@ -892,6 +892,8 @@ #ifdef CONFIG_XFRM RCU_INIT_POINTER(nf_nat_decode_session_hook, NULL); #endif + synchronize_rcu(); + for (i = 0; i < NFPROTO_NUMPROTO; i++) kfree(nf_nat_l4protos[i]); synchronize_net(); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/net/netfilter/nfnetlink_cthelper.c +++ linux-raspi2-4.4.0/net/netfilter/nfnetlink_cthelper.c @@ -161,6 +161,7 @@ int i, ret; struct nf_conntrack_expect_policy *expect_policy; struct nlattr *tb[NFCTH_POLICY_SET_MAX+1]; + unsigned int class_max; ret = nla_parse_nested(tb, NFCTH_POLICY_SET_MAX, attr, nfnl_cthelper_expect_policy_set); @@ -170,19 +171,18 @@ if (!tb[NFCTH_POLICY_SET_NUM]) return -EINVAL; - helper->expect_class_max = - ntohl(nla_get_be32(tb[NFCTH_POLICY_SET_NUM])); - - if (helper->expect_class_max != 0 && - helper->expect_class_max > NF_CT_MAX_EXPECT_CLASSES) + class_max = ntohl(nla_get_be32(tb[NFCTH_POLICY_SET_NUM])); + if (class_max == 0) + return -EINVAL; + if (class_max > NF_CT_MAX_EXPECT_CLASSES) return -EOVERFLOW; expect_policy = kzalloc(sizeof(struct nf_conntrack_expect_policy) * - helper->expect_class_max, GFP_KERNEL); + class_max, GFP_KERNEL); if (expect_policy == NULL) return -ENOMEM; - for (i=0; iexpect_class_max; i++) { + for (i = 0; i < class_max; i++) { if (!tb[NFCTH_POLICY_SET+i]) goto err; @@ -191,6 +191,8 @@ if (ret < 0) goto err; } + + helper->expect_class_max = class_max - 1; helper->expect_policy = expect_policy; return 0; err: @@ -377,10 +379,10 @@ goto nla_put_failure; if (nla_put_be32(skb, NFCTH_POLICY_SET_NUM, - htonl(helper->expect_class_max))) + htonl(helper->expect_class_max + 1))) goto nla_put_failure; - for (i=0; iexpect_class_max; i++) { + for (i = 0; i < helper->expect_class_max + 1; i++) { nest_parms2 = nla_nest_start(skb, (NFCTH_POLICY_SET+i) | NLA_F_NESTED); if (nest_parms2 == NULL) only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/net/netfilter/nfnetlink_cttimeout.c +++ linux-raspi2-4.4.0/net/netfilter/nfnetlink_cttimeout.c @@ -611,8 +611,8 @@ #ifdef CONFIG_NF_CONNTRACK_TIMEOUT RCU_INIT_POINTER(nf_ct_timeout_find_get_hook, NULL); RCU_INIT_POINTER(nf_ct_timeout_put_hook, NULL); + synchronize_rcu(); #endif /* CONFIG_NF_CONNTRACK_TIMEOUT */ - rcu_barrier(); } module_init(cttimeout_init); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/net/netfilter/nft_meta.c +++ linux-raspi2-4.4.0/net/netfilter/nft_meta.c @@ -151,8 +151,34 @@ else *dest = PACKET_BROADCAST; break; + case NFPROTO_NETDEV: + switch (skb->protocol) { + case htons(ETH_P_IP): { + int noff = skb_network_offset(skb); + struct iphdr *iph, _iph; + + iph = skb_header_pointer(skb, noff, + sizeof(_iph), &_iph); + if (!iph) + goto err; + + if (ipv4_is_multicast(iph->daddr)) + *dest = PACKET_MULTICAST; + else + *dest = PACKET_BROADCAST; + + break; + } + case htons(ETH_P_IPV6): + *dest = PACKET_MULTICAST; + break; + default: + WARN_ON_ONCE(1); + goto err; + } + break; default: - WARN_ON(1); + WARN_ON_ONCE(1); goto err; } break; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/net/nfc/core.c +++ linux-raspi2-4.4.0/net/nfc/core.c @@ -969,6 +969,8 @@ kfree(se); } + ida_simple_remove(&nfc_index_ida, dev->idx); + kfree(dev); } @@ -1043,6 +1045,7 @@ int tx_headroom, int tx_tailroom) { struct nfc_dev *dev; + int rc; if (!ops->start_poll || !ops->stop_poll || !ops->activate_target || !ops->deactivate_target || !ops->im_transceive) @@ -1055,6 +1058,15 @@ if (!dev) return NULL; + rc = ida_simple_get(&nfc_index_ida, 0, 0, GFP_KERNEL); + if (rc < 0) + goto err_free_dev; + dev->idx = rc; + + dev->dev.class = &nfc_class; + dev_set_name(&dev->dev, "nfc%d", dev->idx); + device_initialize(&dev->dev); + dev->ops = ops; dev->supported_protocols = supported_protocols; dev->tx_headroom = tx_headroom; @@ -1077,6 +1089,11 @@ } return dev; + +err_free_dev: + kfree(dev); + + return ERR_PTR(rc); } EXPORT_SYMBOL(nfc_allocate_device); @@ -1091,14 +1108,6 @@ pr_debug("dev_name=%s\n", dev_name(&dev->dev)); - dev->idx = ida_simple_get(&nfc_index_ida, 0, 0, GFP_KERNEL); - if (dev->idx < 0) - return dev->idx; - - dev->dev.class = &nfc_class; - dev_set_name(&dev->dev, "nfc%d", dev->idx); - device_initialize(&dev->dev); - mutex_lock(&nfc_devlist_mutex); nfc_devlist_generation++; rc = device_add(&dev->dev); @@ -1136,12 +1145,10 @@ */ void nfc_unregister_device(struct nfc_dev *dev) { - int rc, id; + int rc; pr_debug("dev_name=%s\n", dev_name(&dev->dev)); - id = dev->idx; - if (dev->rfkill) { rfkill_unregister(dev->rfkill); rfkill_destroy(dev->rfkill); @@ -1166,8 +1173,6 @@ nfc_devlist_generation++; device_del(&dev->dev); mutex_unlock(&nfc_devlist_mutex); - - ida_simple_remove(&nfc_index_ida, id); } EXPORT_SYMBOL(nfc_unregister_device); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/net/nfc/llcp_sock.c +++ linux-raspi2-4.4.0/net/nfc/llcp_sock.c @@ -76,7 +76,8 @@ struct sockaddr_nfc_llcp llcp_addr; int len, ret = 0; - if (!addr || addr->sa_family != AF_NFC) + if (!addr || alen < offsetofend(struct sockaddr, sa_family) || + addr->sa_family != AF_NFC) return -EINVAL; pr_debug("sk %p addr %p family %d\n", sk, addr, addr->sa_family); @@ -150,7 +151,8 @@ struct sockaddr_nfc_llcp llcp_addr; int len, ret = 0; - if (!addr || addr->sa_family != AF_NFC) + if (!addr || alen < offsetofend(struct sockaddr, sa_family) || + addr->sa_family != AF_NFC) return -EINVAL; pr_debug("sk %p addr %p family %d\n", sk, addr, addr->sa_family); @@ -655,8 +657,7 @@ pr_debug("sock %p sk %p flags 0x%x\n", sock, sk, flags); - if (!addr || len < sizeof(struct sockaddr_nfc) || - addr->sa_family != AF_NFC) + if (!addr || len < sizeof(*addr) || addr->sa_family != AF_NFC) return -EINVAL; if (addr->service_name_len == 0 && addr->dsap == 0) only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/net/nfc/nci/core.c +++ linux-raspi2-4.4.0/net/nfc/nci/core.c @@ -1084,8 +1084,7 @@ return ndev; free_nfc: - kfree(ndev->nfc_dev); - + nfc_free_device(ndev->nfc_dev); free_nci: kfree(ndev); return NULL; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/net/nfc/netlink.c +++ linux-raspi2-4.4.0/net/nfc/netlink.c @@ -873,7 +873,9 @@ u32 device_idx, target_idx, protocol; int rc; - if (!info->attrs[NFC_ATTR_DEVICE_INDEX]) + if (!info->attrs[NFC_ATTR_DEVICE_INDEX] || + !info->attrs[NFC_ATTR_TARGET_INDEX] || + !info->attrs[NFC_ATTR_PROTOCOLS]) return -EINVAL; device_idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/net/rds/ib_cm.c +++ linux-raspi2-4.4.0/net/rds/ib_cm.c @@ -381,7 +381,7 @@ ret = PTR_ERR(ic->i_send_cq); ic->i_send_cq = NULL; rdsdebug("ib_create_cq send failed: %d\n", ret); - goto out; + goto rds_ibdev_out; } cq_attr.cqe = ic->i_recv_ring.w_nr; @@ -392,19 +392,19 @@ ret = PTR_ERR(ic->i_recv_cq); ic->i_recv_cq = NULL; rdsdebug("ib_create_cq recv failed: %d\n", ret); - goto out; + goto send_cq_out; } ret = ib_req_notify_cq(ic->i_send_cq, IB_CQ_NEXT_COMP); if (ret) { rdsdebug("ib_req_notify_cq send failed: %d\n", ret); - goto out; + goto recv_cq_out; } ret = ib_req_notify_cq(ic->i_recv_cq, IB_CQ_SOLICITED); if (ret) { rdsdebug("ib_req_notify_cq recv failed: %d\n", ret); - goto out; + goto recv_cq_out; } /* XXX negotiate max send/recv with remote? */ @@ -428,7 +428,7 @@ ret = rdma_create_qp(ic->i_cm_id, ic->i_pd, &attr); if (ret) { rdsdebug("rdma_create_qp failed: %d\n", ret); - goto out; + goto recv_cq_out; } ic->i_send_hdrs = ib_dma_alloc_coherent(dev, @@ -438,7 +438,7 @@ if (!ic->i_send_hdrs) { ret = -ENOMEM; rdsdebug("ib_dma_alloc_coherent send failed\n"); - goto out; + goto qp_out; } ic->i_recv_hdrs = ib_dma_alloc_coherent(dev, @@ -448,7 +448,7 @@ if (!ic->i_recv_hdrs) { ret = -ENOMEM; rdsdebug("ib_dma_alloc_coherent recv failed\n"); - goto out; + goto send_hdrs_dma_out; } ic->i_ack = ib_dma_alloc_coherent(dev, sizeof(struct rds_header), @@ -456,7 +456,7 @@ if (!ic->i_ack) { ret = -ENOMEM; rdsdebug("ib_dma_alloc_coherent ack failed\n"); - goto out; + goto recv_hdrs_dma_out; } ic->i_sends = vzalloc_node(ic->i_send_ring.w_nr * sizeof(struct rds_ib_send_work), @@ -464,7 +464,7 @@ if (!ic->i_sends) { ret = -ENOMEM; rdsdebug("send allocation failed\n"); - goto out; + goto ack_dma_out; } ic->i_recvs = vzalloc_node(ic->i_recv_ring.w_nr * sizeof(struct rds_ib_recv_work), @@ -472,7 +472,7 @@ if (!ic->i_recvs) { ret = -ENOMEM; rdsdebug("recv allocation failed\n"); - goto out; + goto sends_out; } rds_ib_recv_init_ack(ic); @@ -480,8 +480,33 @@ rdsdebug("conn %p pd %p cq %p %p\n", conn, ic->i_pd, ic->i_send_cq, ic->i_recv_cq); -out: + return ret; + +sends_out: + vfree(ic->i_sends); +ack_dma_out: + ib_dma_free_coherent(dev, sizeof(struct rds_header), + ic->i_ack, ic->i_ack_dma); +recv_hdrs_dma_out: + ib_dma_free_coherent(dev, ic->i_recv_ring.w_nr * + sizeof(struct rds_header), + ic->i_recv_hdrs, ic->i_recv_hdrs_dma); +send_hdrs_dma_out: + ib_dma_free_coherent(dev, ic->i_send_ring.w_nr * + sizeof(struct rds_header), + ic->i_send_hdrs, ic->i_send_hdrs_dma); +qp_out: + rdma_destroy_qp(ic->i_cm_id); +recv_cq_out: + if (!ib_destroy_cq(ic->i_recv_cq)) + ic->i_recv_cq = NULL; +send_cq_out: + if (!ib_destroy_cq(ic->i_send_cq)) + ic->i_send_cq = NULL; +rds_ibdev_out: + rds_ib_remove_conn(rds_ibdev, conn); rds_ib_dev_put(rds_ibdev); + return ret; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/net/rds/rdma.c +++ linux-raspi2-4.4.0/net/rds/rdma.c @@ -626,6 +626,16 @@ } op->op_notifier->n_user_token = args->user_token; op->op_notifier->n_status = RDS_RDMA_SUCCESS; + + /* Enable rmda notification on data operation for composite + * rds messages and make sure notification is enabled only + * for the data operation which follows it so that application + * gets notified only after full message gets delivered. + */ + if (rm->data.op_sg) { + rm->rdma.op_notify = 0; + rm->data.op_notify = !!(args->flags & RDS_RDMA_NOTIFY_ME); + } } /* The cookie contains the R_Key of the remote memory region, and only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/net/rds/rds.h +++ linux-raspi2-4.4.0/net/rds/rds.h @@ -378,6 +378,7 @@ } rdma; struct rm_data_op { unsigned int op_active:1; + unsigned int op_notify:1; unsigned int op_nents; unsigned int op_count; unsigned int op_dmasg; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/net/rds/send.c +++ linux-raspi2-4.4.0/net/rds/send.c @@ -467,12 +467,14 @@ struct rm_rdma_op *ro; struct rds_notifier *notifier; unsigned long flags; + unsigned int notify = 0; spin_lock_irqsave(&rm->m_rs_lock, flags); + notify = rm->rdma.op_notify | rm->data.op_notify; ro = &rm->rdma; if (test_bit(RDS_MSG_ON_SOCK, &rm->m_flags) && - ro->op_active && ro->op_notify && ro->op_notifier) { + ro->op_active && notify && ro->op_notifier) { notifier = ro->op_notifier; rs = rm->m_rs; sock_hold(rds_rs_to_sk(rs)); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/net/rds/tcp_listen.c +++ linux-raspi2-4.4.0/net/rds/tcp_listen.c @@ -78,7 +78,7 @@ struct inet_sock *inet; struct rds_tcp_connection *rs_tcp; - ret = sock_create_kern(sock_net(sock->sk), sock->sk->sk_family, + ret = sock_create_lite(sock->sk->sk_family, sock->sk->sk_type, sock->sk->sk_protocol, &new_sock); if (ret) only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/net/sched/act_ipt.c +++ linux-raspi2-4.4.0/net/sched/act_ipt.c @@ -34,6 +34,7 @@ { struct xt_tgchk_param par; struct xt_target *target; + struct ipt_entry e = {}; int ret = 0; target = xt_request_find_target(AF_INET, t->u.user.name, @@ -42,8 +43,9 @@ return PTR_ERR(target); t->u.kernel.target = target; + memset(&par, 0, sizeof(par)); par.table = table; - par.entryinfo = NULL; + par.entryinfo = &e; par.target = target; par.targinfo = t->data; par.hook_mask = hook; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/net/sched/sch_mq.c +++ linux-raspi2-4.4.0/net/sched/sch_mq.c @@ -52,7 +52,7 @@ /* pre-allocate qdiscs, attachment can't fail */ priv->qdiscs = kcalloc(dev->num_tx_queues, sizeof(priv->qdiscs[0]), GFP_KERNEL); - if (priv->qdiscs == NULL) + if (!priv->qdiscs) return -ENOMEM; for (ntx = 0; ntx < dev->num_tx_queues; ntx++) { @@ -60,18 +60,14 @@ qdisc = qdisc_create_dflt(dev_queue, default_qdisc_ops, TC_H_MAKE(TC_H_MAJ(sch->handle), TC_H_MIN(ntx + 1))); - if (qdisc == NULL) - goto err; + if (!qdisc) + return -ENOMEM; priv->qdiscs[ntx] = qdisc; qdisc->flags |= TCQ_F_ONETXQUEUE | TCQ_F_NOPARENT; } sch->flags |= TCQ_F_MQROOT; return 0; - -err: - mq_destroy(sch); - return -ENOMEM; } static void mq_attach(struct Qdisc *sch) only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/net/sctp/associola.c +++ linux-raspi2-4.4.0/net/sctp/associola.c @@ -810,8 +810,7 @@ if (transport->state != SCTP_UNCONFIRMED) transport->state = SCTP_INACTIVE; else { - dst_release(transport->dst); - transport->dst = NULL; + sctp_transport_dst_release(transport); ulp_notify = false; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/net/sctp/outqueue.c +++ linux-raspi2-4.4.0/net/sctp/outqueue.c @@ -1563,7 +1563,7 @@ if (forward_progress) { if (transport->dst) - dst_confirm(transport->dst); + sctp_transport_dst_confirm(transport); } } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/net/sctp/sm_make_chunk.c +++ linux-raspi2-4.4.0/net/sctp/sm_make_chunk.c @@ -3308,8 +3308,7 @@ local_bh_enable(); list_for_each_entry(transport, &asoc->peer.transport_addr_list, transports) { - dst_release(transport->dst); - transport->dst = NULL; + sctp_transport_dst_release(transport); } break; case SCTP_PARAM_DEL_IP: @@ -3323,8 +3322,7 @@ local_bh_enable(); list_for_each_entry(transport, &asoc->peer.transport_addr_list, transports) { - dst_release(transport->dst); - transport->dst = NULL; + sctp_transport_dst_release(transport); } break; default: only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/net/sctp/sm_sideeffect.c +++ linux-raspi2-4.4.0/net/sctp/sm_sideeffect.c @@ -731,7 +731,7 @@ * forward progress. */ if (t->dst) - dst_confirm(t->dst); + sctp_transport_dst_confirm(t); /* The receiver of the HEARTBEAT ACK should also perform an * RTT measurement for that destination transport address only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/net/sctp/transport.c +++ linux-raspi2-4.4.0/net/sctp/transport.c @@ -222,7 +222,7 @@ { /* If we don't have a fresh route, look one up */ if (!transport->dst || transport->dst->obsolete) { - dst_release(transport->dst); + sctp_transport_dst_release(transport); transport->af_specific->get_dst(transport, &transport->saddr, &transport->fl, sk); } @@ -654,3 +654,17 @@ sctp_transport_hold(t); } } + +/* Drop dst */ +void sctp_transport_dst_release(struct sctp_transport *t) +{ + dst_release(t->dst); + t->dst = NULL; + t->dst_pending_confirm = 0; +} + +/* Schedule neighbour confirm */ +void sctp_transport_dst_confirm(struct sctp_transport *t) +{ + t->dst_pending_confirm = 1; +} only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/net/tipc/msg.c +++ linux-raspi2-4.4.0/net/tipc/msg.c @@ -541,7 +541,7 @@ return false; if (msg_errcode(msg)) return false; - *err = -TIPC_ERR_NO_NAME; + *err = TIPC_ERR_NO_NAME; if (skb_linearize(skb)) return false; msg = buf_msg(skb); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/net/wireless/util.c +++ linux-raspi2-4.4.0/net/wireless/util.c @@ -121,7 +121,7 @@ int i; for (band = 0; band < IEEE80211_NUM_BANDS; band++) { - sband = wiphy->bands[band]; + sband = wiphy ? wiphy->bands[band] : NULL; if (!sband) continue; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/samples/trace_events/trace-events-sample.c +++ linux-raspi2-4.4.0/samples/trace_events/trace-events-sample.c @@ -78,28 +78,36 @@ } static DEFINE_MUTEX(thread_mutex); +static int simple_thread_cnt; void foo_bar_reg(void) { + mutex_lock(&thread_mutex); + if (simple_thread_cnt++) + goto out; + pr_info("Starting thread for foo_bar_fn\n"); /* * We shouldn't be able to start a trace when the module is * unloading (there's other locks to prevent that). But * for consistency sake, we still take the thread_mutex. */ - mutex_lock(&thread_mutex); simple_tsk_fn = kthread_run(simple_thread_fn, NULL, "event-sample-fn"); + out: mutex_unlock(&thread_mutex); } void foo_bar_unreg(void) { - pr_info("Killing thread for foo_bar_fn\n"); - /* protect against module unloading */ mutex_lock(&thread_mutex); + if (--simple_thread_cnt) + goto out; + + pr_info("Killing thread for foo_bar_fn\n"); if (simple_tsk_fn) kthread_stop(simple_tsk_fn); simple_tsk_fn = NULL; + out: mutex_unlock(&thread_mutex); } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/scripts/checkpatch.pl +++ linux-raspi2-4.4.0/scripts/checkpatch.pl @@ -3252,7 +3252,7 @@ $fixedline =~ s/\s*=\s*$/ = {/; fix_insert_line($fixlinenr, $fixedline); $fixedline = $line; - $fixedline =~ s/^(.\s*){\s*/$1/; + $fixedline =~ s/^(.\s*)\{\s*/$1/; fix_insert_line($fixlinenr, $fixedline); } } @@ -3602,7 +3602,7 @@ my $fixedline = rtrim($prevrawline) . " {"; fix_insert_line($fixlinenr, $fixedline); $fixedline = $rawline; - $fixedline =~ s/^(.\s*){\s*/$1\t/; + $fixedline =~ s/^(.\s*)\{\s*/$1\t/; if ($fixedline !~ /^\+\s*$/) { fix_insert_line($fixlinenr, $fixedline); } @@ -4091,7 +4091,7 @@ if (ERROR("SPACING", "space required before the open brace '{'\n" . $herecurr) && $fix) { - $fixed[$fixlinenr] =~ s/^(\+.*(?:do|\))){/$1 {/; + $fixed[$fixlinenr] =~ s/^(\+.*(?:do|\)))\{/$1 {/; } } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/security/Kconfig +++ linux-raspi2-4.4.0/security/Kconfig @@ -31,6 +31,16 @@ If you are unsure how to answer this question, answer N. +config KAISER + bool "Remove the kernel mapping in user mode" + default y + depends on X86_64 && SMP + help + This enforces a strict kernel and user space isolation, in order + to close hardware side channels on kernel address information. + + If you are unsure how to answer this question, answer Y. + config SECURITYFS bool "Enable the securityfs filesystem" help only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/security/keys/big_key.c +++ linux-raspi2-4.4.0/security/keys/big_key.c @@ -138,7 +138,7 @@ /* clear the quota */ key_payload_reserve(key, 0); - if (key_is_instantiated(key) && + if (key_is_positive(key) && (size_t)key->payload.data[big_key_len] > BIG_KEY_FILE_THRESHOLD) vfs_truncate(path, 0); } @@ -170,7 +170,7 @@ seq_puts(m, key->description); - if (key_is_instantiated(key)) + if (key_is_positive(key)) seq_printf(m, ": %zu [%s]", datalen, datalen > BIG_KEY_FILE_THRESHOLD ? "file" : "buff"); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/security/keys/encrypted-keys/encrypted.c +++ linux-raspi2-4.4.0/security/keys/encrypted-keys/encrypted.c @@ -315,6 +315,13 @@ down_read(&ukey->sem); upayload = user_key_payload(ukey); + if (!upayload) { + /* key was revoked before we acquired its semaphore */ + up_read(&ukey->sem); + key_put(ukey); + ukey = ERR_PTR(-EKEYREVOKED); + goto error; + } *master_key = upayload->data; *master_keylen = upayload->datalen; error: @@ -428,7 +435,7 @@ static struct key *request_master_key(struct encrypted_key_payload *epayload, const u8 **master_key, size_t *master_keylen) { - struct key *mkey = NULL; + struct key *mkey = ERR_PTR(-EINVAL); if (!strncmp(epayload->master_desc, KEY_TRUSTED_PREFIX, KEY_TRUSTED_PREFIX_LEN)) { @@ -845,7 +852,7 @@ size_t datalen = prep->datalen; int ret = 0; - if (test_bit(KEY_FLAG_NEGATIVE, &key->flags)) + if (key_is_negative(key)) return -ENOKEY; if (datalen <= 0 || datalen > 32767 || !prep->data) return -EINVAL; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/security/keys/internal.h +++ linux-raspi2-4.4.0/security/keys/internal.h @@ -136,7 +136,7 @@ extern key_ref_t search_my_process_keyrings(struct keyring_search_context *ctx); extern key_ref_t search_process_keyrings(struct keyring_search_context *ctx); -extern struct key *find_keyring_by_name(const char *name, bool skip_perm_check); +extern struct key *find_keyring_by_name(const char *name, bool uid_keyring); extern int install_user_keyrings(void); extern int install_thread_keyring_to_cred(struct cred *); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/security/keys/keyring.c +++ linux-raspi2-4.4.0/security/keys/keyring.c @@ -407,7 +407,7 @@ else seq_puts(m, "[anon]"); - if (key_is_instantiated(keyring)) { + if (key_is_positive(keyring)) { if (keyring->keys.nr_leaves_on_tree != 0) seq_printf(m, ": %lu", keyring->keys.nr_leaves_on_tree); else @@ -416,7 +416,7 @@ } struct keyring_read_iterator_context { - size_t qty; + size_t buflen; size_t count; key_serial_t __user *buffer; }; @@ -428,9 +428,9 @@ int ret; kenter("{%s,%d},,{%zu/%zu}", - key->type->name, key->serial, ctx->count, ctx->qty); + key->type->name, key->serial, ctx->count, ctx->buflen); - if (ctx->count >= ctx->qty) + if (ctx->count >= ctx->buflen) return 1; ret = put_user(key->serial, ctx->buffer); @@ -452,38 +452,33 @@ char __user *buffer, size_t buflen) { struct keyring_read_iterator_context ctx; - unsigned long nr_keys; - int ret; + long ret; kenter("{%d},,%zu", key_serial(keyring), buflen); if (buflen & (sizeof(key_serial_t) - 1)) return -EINVAL; - nr_keys = keyring->keys.nr_leaves_on_tree; - if (nr_keys == 0) - return 0; - - /* Calculate how much data we could return */ - ctx.qty = nr_keys * sizeof(key_serial_t); - - if (!buffer || !buflen) - return ctx.qty; - - if (buflen > ctx.qty) - ctx.qty = buflen; - - /* Copy the IDs of the subscribed keys into the buffer */ - ctx.buffer = (key_serial_t __user *)buffer; - ctx.count = 0; - ret = assoc_array_iterate(&keyring->keys, keyring_read_iterator, &ctx); - if (ret < 0) { - kleave(" = %d [iterate]", ret); - return ret; + /* Copy as many key IDs as fit into the buffer */ + if (buffer && buflen) { + ctx.buffer = (key_serial_t __user *)buffer; + ctx.buflen = buflen; + ctx.count = 0; + ret = assoc_array_iterate(&keyring->keys, + keyring_read_iterator, &ctx); + if (ret < 0) { + kleave(" = %ld [iterate]", ret); + return ret; + } } - kleave(" = %zu [ok]", ctx.count); - return ctx.count; + /* Return the size of the buffer needed */ + ret = keyring->keys.nr_leaves_on_tree * sizeof(key_serial_t); + if (ret <= buflen) + kleave("= %ld [ok]", ret); + else + kleave("= %ld [buffer too small]", ret); + return ret; } /* @@ -526,7 +521,8 @@ { struct keyring_search_context *ctx = iterator_data; const struct key *key = keyring_ptr_to_key(object); - unsigned long kflags = key->flags; + unsigned long kflags = READ_ONCE(key->flags); + short state = READ_ONCE(key->state); kenter("{%d}", key->serial); @@ -570,9 +566,8 @@ if (ctx->flags & KEYRING_SEARCH_DO_STATE_CHECK) { /* we set a different error code if we pass a negative key */ - if (kflags & (1 << KEY_FLAG_NEGATIVE)) { - smp_rmb(); - ctx->result = ERR_PTR(key->reject_error); + if (state < 0) { + ctx->result = ERR_PTR(state); kleave(" = %d [neg]", ctx->skipped_ret); goto skipped; } @@ -965,15 +960,15 @@ /* * Find a keyring with the specified name. * - * All named keyrings in the current user namespace are searched, provided they - * grant Search permission directly to the caller (unless this check is - * skipped). Keyrings whose usage points have reached zero or who have been - * revoked are skipped. + * Only keyrings that have nonzero refcount, are not revoked, and are owned by a + * user in the current user namespace are considered. If @uid_keyring is %true, + * the keyring additionally must have been allocated as a user or user session + * keyring; otherwise, it must grant Search permission directly to the caller. * * Returns a pointer to the keyring with the keyring's refcount having being * incremented on success. -ENOKEY is returned if a key could not be found. */ -struct key *find_keyring_by_name(const char *name, bool skip_perm_check) +struct key *find_keyring_by_name(const char *name, bool uid_keyring) { struct key *keyring; int bucket; @@ -1001,10 +996,15 @@ if (strcmp(keyring->description, name) != 0) continue; - if (!skip_perm_check && - key_permission(make_key_ref(keyring, 0), - KEY_NEED_SEARCH) < 0) - continue; + if (uid_keyring) { + if (!test_bit(KEY_FLAG_UID_KEYRING, + &keyring->flags)) + continue; + } else { + if (key_permission(make_key_ref(keyring, 0), + KEY_NEED_SEARCH) < 0) + continue; + } /* we've got a match but we might end up racing with * key_cleanup() if the keyring is currently 'dead' only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/security/keys/request_key.c +++ linux-raspi2-4.4.0/security/keys/request_key.c @@ -594,10 +594,9 @@ intr ? TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE); if (ret) return -ERESTARTSYS; - if (test_bit(KEY_FLAG_NEGATIVE, &key->flags)) { - smp_rmb(); - return key->reject_error; - } + ret = key_read_state(key); + if (ret < 0) + return ret; return key_validate(key); } EXPORT_SYMBOL(wait_for_key_construction); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/security/keys/request_key_auth.c +++ linux-raspi2-4.4.0/security/keys/request_key_auth.c @@ -73,7 +73,7 @@ seq_puts(m, "key:"); seq_puts(m, key->description); - if (key_is_instantiated(key)) + if (key_is_positive(key)) seq_printf(m, " pid:%d ci:%zu", rka->pid, rka->callout_len); } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/security/keys/user_defined.c +++ linux-raspi2-4.4.0/security/keys/user_defined.c @@ -120,7 +120,7 @@ if (ret == 0) { /* attach the new data, displacing the old */ - if (!test_bit(KEY_FLAG_NEGATIVE, &key->flags)) + if (key_is_positive(key)) zap = key->payload.data[0]; else zap = NULL; @@ -174,7 +174,7 @@ void user_describe(const struct key *key, struct seq_file *m) { seq_puts(m, key->description); - if (key_is_instantiated(key)) + if (key_is_positive(key)) seq_printf(m, ": %u", key->datalen); } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/sound/core/seq/oss/seq_oss_midi.c +++ linux-raspi2-4.4.0/sound/core/seq/oss/seq_oss_midi.c @@ -612,9 +612,7 @@ if (!dp->timer->running) len = snd_seq_oss_timer_start(dp->timer); if (ev->type == SNDRV_SEQ_EVENT_SYSEX) { - if ((ev->flags & SNDRV_SEQ_EVENT_LENGTH_MASK) == SNDRV_SEQ_EVENT_LENGTH_VARIABLE) - snd_seq_oss_readq_puts(dp->readq, mdev->seq_device, - ev->data.ext.ptr, ev->data.ext.len); + snd_seq_oss_readq_sysex(dp->readq, mdev->seq_device, ev); } else { len = snd_midi_event_decode(mdev->coder, msg, sizeof(msg), ev); if (len > 0) only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/sound/core/seq/oss/seq_oss_readq.c +++ linux-raspi2-4.4.0/sound/core/seq/oss/seq_oss_readq.c @@ -118,6 +118,35 @@ } /* + * put MIDI sysex bytes; the event buffer may be chained, thus it has + * to be expanded via snd_seq_dump_var_event(). + */ +struct readq_sysex_ctx { + struct seq_oss_readq *readq; + int dev; +}; + +static int readq_dump_sysex(void *ptr, void *buf, int count) +{ + struct readq_sysex_ctx *ctx = ptr; + + return snd_seq_oss_readq_puts(ctx->readq, ctx->dev, buf, count); +} + +int snd_seq_oss_readq_sysex(struct seq_oss_readq *q, int dev, + struct snd_seq_event *ev) +{ + struct readq_sysex_ctx ctx = { + .readq = q, + .dev = dev + }; + + if ((ev->flags & SNDRV_SEQ_EVENT_LENGTH_MASK) != SNDRV_SEQ_EVENT_LENGTH_VARIABLE) + return 0; + return snd_seq_dump_var_event(ev, readq_dump_sysex, &ctx); +} + +/* * copy an event to input queue: * return zero if enqueued */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/sound/core/seq/oss/seq_oss_readq.h +++ linux-raspi2-4.4.0/sound/core/seq/oss/seq_oss_readq.h @@ -44,6 +44,8 @@ void snd_seq_oss_readq_clear(struct seq_oss_readq *readq); unsigned int snd_seq_oss_readq_poll(struct seq_oss_readq *readq, struct file *file, poll_table *wait); int snd_seq_oss_readq_puts(struct seq_oss_readq *readq, int dev, unsigned char *data, int len); +int snd_seq_oss_readq_sysex(struct seq_oss_readq *q, int dev, + struct snd_seq_event *ev); int snd_seq_oss_readq_put_event(struct seq_oss_readq *readq, union evrec *ev); int snd_seq_oss_readq_put_timestamp(struct seq_oss_readq *readq, unsigned long curt, int seq_mode); int snd_seq_oss_readq_pick(struct seq_oss_readq *q, union evrec *rec); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/sound/core/seq/seq_lock.h +++ linux-raspi2-4.4.0/sound/core/seq/seq_lock.h @@ -3,8 +3,6 @@ #include -#if defined(CONFIG_SMP) || defined(CONFIG_SND_DEBUG) - typedef atomic_t snd_use_lock_t; /* initialize lock */ @@ -20,14 +18,4 @@ void snd_use_lock_sync_helper(snd_use_lock_t *lock, const char *file, int line); #define snd_use_lock_sync(lockp) snd_use_lock_sync_helper(lockp, __BASE_FILE__, __LINE__) -#else /* SMP || CONFIG_SND_DEBUG */ - -typedef spinlock_t snd_use_lock_t; /* dummy */ -#define snd_use_lock_init(lockp) /**/ -#define snd_use_lock_use(lockp) /**/ -#define snd_use_lock_free(lockp) /**/ -#define snd_use_lock_sync(lockp) /**/ - -#endif /* SMP || CONFIG_SND_DEBUG */ - #endif /* __SND_SEQ_LOCK_H */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/sound/core/seq/seq_queue.h +++ linux-raspi2-4.4.0/sound/core/seq/seq_queue.h @@ -71,7 +71,7 @@ /* create new queue (constructor) */ -int snd_seq_queue_alloc(int client, int locked, unsigned int flags); +struct snd_seq_queue *snd_seq_queue_alloc(int client, int locked, unsigned int flags); /* delete queue (destructor) */ int snd_seq_queue_delete(int client, int queueid); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/sound/isa/msnd/msnd_midi.c +++ linux-raspi2-4.4.0/sound/isa/msnd/msnd_midi.c @@ -120,24 +120,24 @@ unsigned long flags; struct snd_msndmidi *mpu = mpuv; void *pwMIDQData = mpu->dev->mappedbase + MIDQ_DATA_BUFF; + u16 head, tail, size; spin_lock_irqsave(&mpu->input_lock, flags); - while (readw(mpu->dev->MIDQ + JQS_wTail) != - readw(mpu->dev->MIDQ + JQS_wHead)) { - u16 wTmp, val; - val = readw(pwMIDQData + 2 * readw(mpu->dev->MIDQ + JQS_wHead)); + head = readw(mpu->dev->MIDQ + JQS_wHead); + tail = readw(mpu->dev->MIDQ + JQS_wTail); + size = readw(mpu->dev->MIDQ + JQS_wSize); + if (head > size || tail > size) + goto out; + while (head != tail) { + unsigned char val = readw(pwMIDQData + 2 * head); - if (test_bit(MSNDMIDI_MODE_BIT_INPUT_TRIGGER, - &mpu->mode)) - snd_rawmidi_receive(mpu->substream_input, - (unsigned char *)&val, 1); - - wTmp = readw(mpu->dev->MIDQ + JQS_wHead) + 1; - if (wTmp > readw(mpu->dev->MIDQ + JQS_wSize)) - writew(0, mpu->dev->MIDQ + JQS_wHead); - else - writew(wTmp, mpu->dev->MIDQ + JQS_wHead); + if (test_bit(MSNDMIDI_MODE_BIT_INPUT_TRIGGER, &mpu->mode)) + snd_rawmidi_receive(mpu->substream_input, &val, 1); + if (++head > size) + head = 0; + writew(head, mpu->dev->MIDQ + JQS_wHead); } + out: spin_unlock_irqrestore(&mpu->input_lock, flags); } EXPORT_SYMBOL(snd_msndmidi_input_read); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/sound/isa/msnd/msnd_pinnacle.c +++ linux-raspi2-4.4.0/sound/isa/msnd/msnd_pinnacle.c @@ -170,23 +170,24 @@ { struct snd_msnd *chip = dev_id; void *pwDSPQData = chip->mappedbase + DSPQ_DATA_BUFF; + u16 head, tail, size; /* Send ack to DSP */ /* inb(chip->io + HP_RXL); */ /* Evaluate queued DSP messages */ - while (readw(chip->DSPQ + JQS_wTail) != readw(chip->DSPQ + JQS_wHead)) { - u16 wTmp; - - snd_msnd_eval_dsp_msg(chip, - readw(pwDSPQData + 2 * readw(chip->DSPQ + JQS_wHead))); - - wTmp = readw(chip->DSPQ + JQS_wHead) + 1; - if (wTmp > readw(chip->DSPQ + JQS_wSize)) - writew(0, chip->DSPQ + JQS_wHead); - else - writew(wTmp, chip->DSPQ + JQS_wHead); + head = readw(chip->DSPQ + JQS_wHead); + tail = readw(chip->DSPQ + JQS_wTail); + size = readw(chip->DSPQ + JQS_wSize); + if (head > size || tail > size) + goto out; + while (head != tail) { + snd_msnd_eval_dsp_msg(chip, readw(pwDSPQData + 2 * head)); + if (++head > size) + head = 0; + writew(head, chip->DSPQ + JQS_wHead); } + out: /* Send ack to DSP */ inb(chip->io + HP_RXL); return IRQ_HANDLED; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/sound/pci/hda/hda_codec.c +++ linux-raspi2-4.4.0/sound/pci/hda/hda_codec.c @@ -1755,7 +1755,7 @@ return -1; if (*step_to_check && *step_to_check != step) { codec_err(codec, "Mismatching dB step for vmaster slave (%d!=%d)\n", -- *step_to_check, step); + *step_to_check, step); return -1; } *step_to_check = step; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/sound/soc/codecs/adau17x1.c +++ linux-raspi2-4.4.0/sound/soc/codecs/adau17x1.c @@ -89,6 +89,27 @@ return 0; } +static int adau17x1_adc_fixup(struct snd_soc_dapm_widget *w, + struct snd_kcontrol *kcontrol, int event) +{ + struct snd_soc_codec *codec = snd_soc_dapm_to_codec(w->dapm); + struct adau *adau = snd_soc_codec_get_drvdata(codec); + + /* + * If we are capturing, toggle the ADOSR bit in Converter Control 0 to + * avoid losing SNR (workaround from ADI). This must be done after + * the ADC(s) have been enabled. According to the data sheet, it is + * normally illegal to set this bit when the sampling rate is 96 kHz, + * but according to ADI it is acceptable for this workaround. + */ + regmap_update_bits(adau->regmap, ADAU17X1_CONVERTER0, + ADAU17X1_CONVERTER0_ADOSR, ADAU17X1_CONVERTER0_ADOSR); + regmap_update_bits(adau->regmap, ADAU17X1_CONVERTER0, + ADAU17X1_CONVERTER0_ADOSR, 0); + + return 0; +} + static const char * const adau17x1_mono_stereo_text[] = { "Stereo", "Mono Left Channel (L+R)", @@ -120,7 +141,8 @@ SND_SOC_DAPM_MUX("Right DAC Mode Mux", SND_SOC_NOPM, 0, 0, &adau17x1_dac_mode_mux), - SND_SOC_DAPM_ADC("Left Decimator", NULL, ADAU17X1_ADC_CONTROL, 0, 0), + SND_SOC_DAPM_ADC_E("Left Decimator", NULL, ADAU17X1_ADC_CONTROL, 0, 0, + adau17x1_adc_fixup, SND_SOC_DAPM_POST_PMU), SND_SOC_DAPM_ADC("Right Decimator", NULL, ADAU17X1_ADC_CONTROL, 1, 0), SND_SOC_DAPM_DAC("Left DAC", NULL, ADAU17X1_DAC_CONTROL0, 0, 0), SND_SOC_DAPM_DAC("Right DAC", NULL, ADAU17X1_DAC_CONTROL0, 1, 0), only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/sound/soc/codecs/adau17x1.h +++ linux-raspi2-4.4.0/sound/soc/codecs/adau17x1.h @@ -123,5 +123,7 @@ #define ADAU17X1_CONVERTER0_CONVSR_MASK 0x7 +#define ADAU17X1_CONVERTER0_ADOSR BIT(3) + #endif only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/sound/soc/codecs/nau8825.c +++ linux-raspi2-4.4.0/sound/soc/codecs/nau8825.c @@ -936,7 +936,8 @@ NAU8825_FLL_INTEGER_MASK, fll_param->fll_int); /* FLL pre-scaler */ regmap_update_bits(nau8825->regmap, NAU8825_REG_FLL4, - NAU8825_FLL_REF_DIV_MASK, fll_param->clk_ref_div); + NAU8825_FLL_REF_DIV_MASK, + fll_param->clk_ref_div << NAU8825_FLL_REF_DIV_SFT); /* select divided VCO input */ regmap_update_bits(nau8825->regmap, NAU8825_REG_FLL5, NAU8825_FLL_FILTER_SW_MASK, 0x0000); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/sound/soc/codecs/nau8825.h +++ linux-raspi2-4.4.0/sound/soc/codecs/nau8825.h @@ -114,7 +114,8 @@ #define NAU8825_FLL_INTEGER_MASK (0x3ff << 0) /* FLL4 (0x07) */ -#define NAU8825_FLL_REF_DIV_MASK (0x3 << 10) +#define NAU8825_FLL_REF_DIV_SFT 10 +#define NAU8825_FLL_REF_DIV_MASK (0x3 << NAU8825_FLL_REF_DIV_SFT) /* FLL5 (0x08) */ #define NAU8825_FLL_FILTER_SW_MASK (0x1 << 14) only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/sound/soc/codecs/tlv320aic3x.c +++ linux-raspi2-4.4.0/sound/soc/codecs/tlv320aic3x.c @@ -126,6 +126,16 @@ { 108, 0x00 }, { 109, 0x00 }, }; +static bool aic3x_volatile_reg(struct device *dev, unsigned int reg) +{ + switch (reg) { + case AIC3X_RESET: + return true; + default: + return false; + } +} + static const struct regmap_config aic3x_regmap = { .reg_bits = 8, .val_bits = 8, @@ -133,6 +143,9 @@ .max_register = DAC_ICC_ADJ, .reg_defaults = aic3x_reg, .num_reg_defaults = ARRAY_SIZE(aic3x_reg), + + .volatile_reg = aic3x_volatile_reg, + .cache_type = REGCACHE_RBTREE, }; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/sound/soc/generic/simple-card.c +++ linux-raspi2-4.4.0/sound/soc/generic/simple-card.c @@ -100,7 +100,7 @@ if (ret && ret != -ENOTSUPP) goto err; } - + return 0; err: return ret; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/sound/soc/sh/rcar/adg.c +++ linux-raspi2-4.4.0/sound/soc/sh/rcar/adg.c @@ -437,7 +437,7 @@ struct device *dev = rsnd_priv_to_dev(priv); struct device_node *np = dev->of_node; u32 ckr, rbgx, rbga, rbgb; - u32 rate, req_rate, div; + u32 rate, req_rate = 0, div; uint32_t count = 0; unsigned long req_48kHz_rate, req_441kHz_rate; int i; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/sound/soc/sh/rcar/core.c +++ linux-raspi2-4.4.0/sound/soc/sh/rcar/core.c @@ -192,19 +192,16 @@ struct rsnd_priv *priv = rsnd_mod_to_priv(mod); struct rsnd_dai_stream *io; struct rsnd_dai *rdai; - int i, j; - - for_each_rsnd_dai(rdai, priv, j) { - - for (i = 0; i < RSND_MOD_MAX; i++) { - io = &rdai->playback; - if (mod == io->mod[i]) - callback(mod, io); + int i; - io = &rdai->capture; - if (mod == io->mod[i]) - callback(mod, io); - } + for_each_rsnd_dai(rdai, priv, i) { + io = &rdai->playback; + if (mod == io->mod[mod->type]) + callback(mod, io); + + io = &rdai->capture; + if (mod == io->mod[mod->type]) + callback(mod, io); } } @@ -1019,7 +1016,7 @@ } } - if (change) + if (change && cfg->update) cfg->update(cfg->io, mod); return change; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/sound/soc/sh/rcar/src.c +++ linux-raspi2-4.4.0/sound/soc/sh/rcar/src.c @@ -691,13 +691,27 @@ { rsnd_src_irq_disable_gen2(mod); - rsnd_mod_write(mod, SRC_CTRL, 0); + /* + * stop SRC output only + * see rsnd_src_quit_gen2 + */ + rsnd_mod_write(mod, SRC_CTRL, 0x01); rsnd_src_error_record_gen2(mod); return rsnd_src_stop(mod); } +static int rsnd_src_quit_gen2(struct rsnd_mod *mod, + struct rsnd_dai_stream *io, + struct rsnd_priv *priv) +{ + /* stop both out/in */ + rsnd_mod_write(mod, SRC_CTRL, 0); + + return 0; +} + static void __rsnd_src_interrupt_gen2(struct rsnd_mod *mod, struct rsnd_dai_stream *io) { @@ -971,7 +985,7 @@ .probe = rsnd_src_probe_gen2, .remove = rsnd_src_remove_gen2, .init = rsnd_src_init_gen2, - .quit = rsnd_src_quit, + .quit = rsnd_src_quit_gen2, .start = rsnd_src_start_gen2, .stop = rsnd_src_stop_gen2, .hw_params = rsnd_src_hw_params, only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/sound/soc/sh/rcar/ssi.c +++ linux-raspi2-4.4.0/sound/soc/sh/rcar/ssi.c @@ -39,6 +39,7 @@ #define SCKP (1 << 13) /* Serial Bit Clock Polarity */ #define SWSP (1 << 12) /* Serial WS Polarity */ #define SDTA (1 << 10) /* Serial Data Alignment */ +#define PDTA (1 << 9) /* Parallel Data Alignment */ #define DEL (1 << 8) /* Serial Data Delay */ #define CKDV(v) (v << 4) /* Serial Clock Division Ratio */ #define TRMD (1 << 1) /* Transmit/Receive Mode Select */ @@ -286,7 +287,7 @@ struct snd_pcm_runtime *runtime = rsnd_io_to_runtime(io); u32 cr; - cr = FORCE; + cr = FORCE | PDTA; /* * always use 32bit system word for easy clock calculation. only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/sound/usb/caiaq/device.c +++ linux-raspi2-4.4.0/sound/usb/caiaq/device.c @@ -469,10 +469,12 @@ err = snd_usb_caiaq_send_command(cdev, EP1_CMD_GET_DEVICE_INFO, NULL, 0); if (err) - return err; + goto err_kill_urb; - if (!wait_event_timeout(cdev->ep1_wait_queue, cdev->spec_received, HZ)) - return -ENODEV; + if (!wait_event_timeout(cdev->ep1_wait_queue, cdev->spec_received, HZ)) { + err = -ENODEV; + goto err_kill_urb; + } usb_string(usb_dev, usb_dev->descriptor.iManufacturer, cdev->vendor_name, CAIAQ_USB_STR_LEN); @@ -507,6 +509,10 @@ setup_card(cdev); return 0; + + err_kill_urb: + usb_kill_urb(&cdev->ep1_in_urb); + return err; } static int snd_probe(struct usb_interface *intf, only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/sound/usb/mixer.h +++ linux-raspi2-4.4.0/sound/usb/mixer.h @@ -22,6 +22,8 @@ struct urb *rc_urb; struct usb_ctrlrequest *rc_setup_packet; u8 rc_buffer[6]; + + bool disconnected; }; #define MAX_CHANNELS 16 /* max logical channels */ @@ -64,6 +66,7 @@ int cached; int cache_val[MAX_CHANNELS]; u8 initialized; + u8 min_mute; void *private_data; }; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/sound/usb/usx2y/usb_stream.c +++ linux-raspi2-4.4.0/sound/usb/usx2y/usb_stream.c @@ -191,7 +191,8 @@ } pg = get_order(read_size); - sk->s = (void *) __get_free_pages(GFP_KERNEL|__GFP_COMP|__GFP_ZERO, pg); + sk->s = (void *) __get_free_pages(GFP_KERNEL|__GFP_COMP|__GFP_ZERO| + __GFP_NOWARN, pg); if (!sk->s) { snd_printk(KERN_WARNING "couldn't __get_free_pages()\n"); goto out; @@ -211,7 +212,8 @@ pg = get_order(write_size); sk->write_page = - (void *)__get_free_pages(GFP_KERNEL|__GFP_COMP|__GFP_ZERO, pg); + (void *)__get_free_pages(GFP_KERNEL|__GFP_COMP|__GFP_ZERO| + __GFP_NOWARN, pg); if (!sk->write_page) { snd_printk(KERN_WARNING "couldn't __get_free_pages()\n"); usb_stream_free(sk); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/tools/include/linux/compiler.h +++ linux-raspi2-4.4.0/tools/include/linux/compiler.h @@ -115,4 +115,13 @@ #define WRITE_ONCE(x, val) \ ({ union { typeof(x) __val; char __c[1]; } __u = { .__val = (val) }; __write_once_size(&(x), __u.__c, sizeof(x)); __u.__val; }) + +#ifndef __fallthrough +# if defined(__GNUC__) && __GNUC__ >= 7 +# define __fallthrough __attribute__ ((fallthrough)) +# else +# define __fallthrough +# endif +#endif + #endif /* _TOOLS_LINUX_COMPILER_H */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/tools/lib/lockdep/uinclude/linux/lockdep.h +++ linux-raspi2-4.4.0/tools/lib/lockdep/uinclude/linux/lockdep.h @@ -8,7 +8,7 @@ #include #include -#define MAX_LOCK_DEPTH 2000UL +#define MAX_LOCK_DEPTH 255UL #define asmlinkage #define __visible only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/tools/lib/traceevent/plugin_sched_switch.c +++ linux-raspi2-4.4.0/tools/lib/traceevent/plugin_sched_switch.c @@ -111,7 +111,7 @@ trace_seq_printf(s, "%lld ", val); if (pevent_get_field_val(s, event, "prev_prio", record, &val, 0) == 0) - trace_seq_printf(s, "[%lld] ", val); + trace_seq_printf(s, "[%d] ", (int) val); if (pevent_get_field_val(s, event, "prev_state", record, &val, 0) == 0) write_state(s, val); @@ -129,7 +129,7 @@ trace_seq_printf(s, "%lld", val); if (pevent_get_field_val(s, event, "next_prio", record, &val, 0) == 0) - trace_seq_printf(s, " [%lld]", val); + trace_seq_printf(s, " [%d]", (int) val); return 0; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/tools/perf/arch/x86/tests/intel-cqm.c +++ linux-raspi2-4.4.0/tools/perf/arch/x86/tests/intel-cqm.c @@ -17,7 +17,7 @@ if (pid) return pid; - while(1); + while(1) sleep(5); return 0; } only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/tools/perf/arch/x86/util/dwarf-regs.c +++ linux-raspi2-4.4.0/tools/perf/arch/x86/util/dwarf-regs.c @@ -63,6 +63,8 @@ # define REG_OFFSET_NAME_32(n, r) {.name = n, .offset = offsetof(struct pt_regs, r)} #endif +/* TODO: switching by dwarf address size */ +#ifndef __x86_64__ static const struct pt_regs_offset x86_32_regoffset_table[] = { REG_OFFSET_NAME_32("%ax", eax), REG_OFFSET_NAME_32("%cx", ecx), @@ -75,6 +77,8 @@ REG_OFFSET_END, }; +#define regoffset_table x86_32_regoffset_table +#else static const struct pt_regs_offset x86_64_regoffset_table[] = { REG_OFFSET_NAME_64("%ax", rax), REG_OFFSET_NAME_64("%dx", rdx), @@ -95,11 +99,7 @@ REG_OFFSET_END, }; -/* TODO: switching by dwarf address size */ -#ifdef __x86_64__ #define regoffset_table x86_64_regoffset_table -#else -#define regoffset_table x86_32_regoffset_table #endif /* Minus 1 for the ending REG_OFFSET_END */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/tools/perf/bench/numa.c +++ linux-raspi2-4.4.0/tools/perf/bench/numa.c @@ -1570,13 +1570,13 @@ "GB/sec,", "total-speed", "GB/sec total speed"); if (g->p.show_details >= 2) { - char tname[32]; + char tname[14 + 2 * 10 + 1]; struct thread_data *td; for (p = 0; p < g->p.nr_proc; p++) { for (t = 0; t < g->p.nr_threads; t++) { - memset(tname, 0, 32); + memset(tname, 0, sizeof(tname)); td = g->threads + p*g->p.nr_threads + t; - snprintf(tname, 32, "process%d:thread%d", p, t); + snprintf(tname, sizeof(tname), "process%d:thread%d", p, t); print_res(tname, td->speed_gbs, "GB/sec", "thread-speed", "GB/sec/thread speed"); print_res(tname, td->system_time_ns / 1e9, only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/tools/perf/builtin-script.c +++ linux-raspi2-4.4.0/tools/perf/builtin-script.c @@ -1252,21 +1252,19 @@ return S_ISDIR(st.st_mode); } -#define for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next)\ - while (!readdir_r(scripts_dir, &lang_dirent, &lang_next) && \ - lang_next) \ - if ((lang_dirent.d_type == DT_DIR || \ - (lang_dirent.d_type == DT_UNKNOWN && \ - is_directory(scripts_path, &lang_dirent))) && \ - (strcmp(lang_dirent.d_name, ".")) && \ - (strcmp(lang_dirent.d_name, ".."))) - -#define for_each_script(lang_path, lang_dir, script_dirent, script_next)\ - while (!readdir_r(lang_dir, &script_dirent, &script_next) && \ - script_next) \ - if (script_dirent.d_type != DT_DIR && \ - (script_dirent.d_type != DT_UNKNOWN || \ - !is_directory(lang_path, &script_dirent))) +#define for_each_lang(scripts_path, scripts_dir, lang_dirent) \ + while ((lang_dirent = readdir(scripts_dir)) != NULL) \ + if ((lang_dirent->d_type == DT_DIR || \ + (lang_dirent->d_type == DT_UNKNOWN && \ + is_directory(scripts_path, lang_dirent))) && \ + (strcmp(lang_dirent->d_name, ".")) && \ + (strcmp(lang_dirent->d_name, ".."))) + +#define for_each_script(lang_path, lang_dir, script_dirent) \ + while ((script_dirent = readdir(lang_dir)) != NULL) \ + if (script_dirent->d_type != DT_DIR && \ + (script_dirent->d_type != DT_UNKNOWN || \ + !is_directory(lang_path, script_dirent))) #define RECORD_SUFFIX "-record" @@ -1412,7 +1410,7 @@ const char *s __maybe_unused, int unset __maybe_unused) { - struct dirent *script_next, *lang_next, script_dirent, lang_dirent; + struct dirent *script_dirent, *lang_dirent; char scripts_path[MAXPATHLEN]; DIR *scripts_dir, *lang_dir; char script_path[MAXPATHLEN]; @@ -1427,19 +1425,19 @@ if (!scripts_dir) return -1; - for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next) { + for_each_lang(scripts_path, scripts_dir, lang_dirent) { snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path, - lang_dirent.d_name); + lang_dirent->d_name); lang_dir = opendir(lang_path); if (!lang_dir) continue; - for_each_script(lang_path, lang_dir, script_dirent, script_next) { - script_root = get_script_root(&script_dirent, REPORT_SUFFIX); + for_each_script(lang_path, lang_dir, script_dirent) { + script_root = get_script_root(script_dirent, REPORT_SUFFIX); if (script_root) { desc = script_desc__findnew(script_root); snprintf(script_path, MAXPATHLEN, "%s/%s", - lang_path, script_dirent.d_name); + lang_path, script_dirent->d_name); read_script_info(desc, script_path); free(script_root); } @@ -1527,7 +1525,7 @@ */ int find_scripts(char **scripts_array, char **scripts_path_array) { - struct dirent *script_next, *lang_next, script_dirent, lang_dirent; + struct dirent *script_dirent, *lang_dirent; char scripts_path[MAXPATHLEN], lang_path[MAXPATHLEN]; DIR *scripts_dir, *lang_dir; struct perf_session *session; @@ -1550,9 +1548,9 @@ return -1; } - for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next) { + for_each_lang(scripts_path, scripts_dir, lang_dirent) { snprintf(lang_path, MAXPATHLEN, "%s/%s", scripts_path, - lang_dirent.d_name); + lang_dirent->d_name); #ifdef NO_LIBPERL if (strstr(lang_path, "perl")) continue; @@ -1566,16 +1564,16 @@ if (!lang_dir) continue; - for_each_script(lang_path, lang_dir, script_dirent, script_next) { + for_each_script(lang_path, lang_dir, script_dirent) { /* Skip those real time scripts: xxxtop.p[yl] */ - if (strstr(script_dirent.d_name, "top.")) + if (strstr(script_dirent->d_name, "top.")) continue; sprintf(scripts_path_array[i], "%s/%s", lang_path, - script_dirent.d_name); - temp = strchr(script_dirent.d_name, '.'); + script_dirent->d_name); + temp = strchr(script_dirent->d_name, '.'); snprintf(scripts_array[i], - (temp - script_dirent.d_name) + 1, - "%s", script_dirent.d_name); + (temp - script_dirent->d_name) + 1, + "%s", script_dirent->d_name); if (check_ev_match(lang_path, scripts_array[i], session)) @@ -1593,7 +1591,7 @@ static char *get_script_path(const char *script_root, const char *suffix) { - struct dirent *script_next, *lang_next, script_dirent, lang_dirent; + struct dirent *script_dirent, *lang_dirent; char scripts_path[MAXPATHLEN]; char script_path[MAXPATHLEN]; DIR *scripts_dir, *lang_dir; @@ -1606,21 +1604,21 @@ if (!scripts_dir) return NULL; - for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next) { + for_each_lang(scripts_path, scripts_dir, lang_dirent) { snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path, - lang_dirent.d_name); + lang_dirent->d_name); lang_dir = opendir(lang_path); if (!lang_dir) continue; - for_each_script(lang_path, lang_dir, script_dirent, script_next) { - __script_root = get_script_root(&script_dirent, suffix); + for_each_script(lang_path, lang_dir, script_dirent) { + __script_root = get_script_root(script_dirent, suffix); if (__script_root && !strcmp(script_root, __script_root)) { free(__script_root); closedir(lang_dir); closedir(scripts_dir); snprintf(script_path, MAXPATHLEN, "%s/%s", - lang_path, script_dirent.d_name); + lang_path, script_dirent->d_name); return strdup(script_path); } free(__script_root); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/tools/perf/builtin-top.c +++ linux-raspi2-4.4.0/tools/perf/builtin-top.c @@ -636,7 +636,7 @@ case -1: if (errno == EINTR) continue; - /* Fall trhu */ + __fallthrough; default: c = getc(stdin); tcsetattr(0, TCSAFLUSH, &save); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/tools/perf/builtin-trace.c +++ linux-raspi2-4.4.0/tools/perf/builtin-trace.c @@ -1617,6 +1617,7 @@ color_fprintf(trace->output, PERF_COLOR_RED, "LOST %" PRIu64 " events!\n", event->lost.lost); ret = machine__process_lost_event(machine, event, sample); + break; default: ret = machine__process_event(machine, event, sample); break; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/tools/perf/scripts/perl/Perf-Trace-Util/Build +++ linux-raspi2-4.4.0/tools/perf/scripts/perl/Perf-Trace-Util/Build @@ -1,3 +1,5 @@ libperf-y += Context.o -CFLAGS_Context.o += $(PERL_EMBED_CCOPTS) -Wno-redundant-decls -Wno-strict-prototypes -Wno-unused-parameter -Wno-nested-externs -Wno-undef -Wno-switch-default +CFLAGS_Context.o += $(PERL_EMBED_CCOPTS) -Wno-redundant-decls -Wno-strict-prototypes +CFLAGS_Context.o += -Wno-unused-parameter -Wno-nested-externs -Wno-undef +CFLAGS_Context.o += -Wno-switch-default -Wno-shadow only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/tools/perf/tests/parse-events.c +++ linux-raspi2-4.4.0/tools/perf/tests/parse-events.c @@ -1727,15 +1727,14 @@ } while (!ret && (ent = readdir(dir))) { -#define MAX_NAME 100 struct evlist_test e; - char name[MAX_NAME]; + char name[2 * NAME_MAX + 1 + 12 + 3]; if (!strcmp(ent->d_name, ".") || !strcmp(ent->d_name, "..")) continue; - snprintf(name, MAX_NAME, "cpu/event=%s/u", ent->d_name); + snprintf(name, sizeof(name), "cpu/event=%s/u", ent->d_name); e.name = name; e.check = test__checkevent_pmu_events; @@ -1743,11 +1742,10 @@ ret = test_event(&e); if (ret) break; - snprintf(name, MAX_NAME, "%s:u,cpu/event=%s/u", ent->d_name, ent->d_name); + snprintf(name, sizeof(name), "%s:u,cpu/event=%s/u", ent->d_name, ent->d_name); e.name = name; e.check = test__checkevent_pmu_events_mix; ret = test_event(&e); -#undef MAX_NAME } closedir(dir); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/tools/perf/ui/browser.c +++ linux-raspi2-4.4.0/tools/perf/ui/browser.c @@ -702,7 +702,7 @@ ui_browser__gotorc(browser, row, column + 1); SLsmg_draw_hline(2); - if (row++ == 0) + if (++row == 0) goto out; } else row = 0; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/tools/perf/ui/browsers/annotate.c +++ linux-raspi2-4.4.0/tools/perf/ui/browsers/annotate.c @@ -755,11 +755,11 @@ nd = browser->curr_hot; break; case K_UNTAB: - if (nd != NULL) + if (nd != NULL) { nd = rb_next(nd); if (nd == NULL) nd = rb_first(&browser->entries); - else + } else nd = browser->curr_hot; break; case K_F1: only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/tools/perf/util/intel-pt-decoder/intel-pt-pkt-decoder.c +++ linux-raspi2-4.4.0/tools/perf/util/intel-pt-decoder/intel-pt-pkt-decoder.c @@ -17,6 +17,7 @@ #include #include #include +#include #include "intel-pt-pkt-decoder.h" @@ -292,36 +293,46 @@ const unsigned char *buf, size_t len, struct intel_pt_pkt *packet) { - switch (byte >> 5) { + int ip_len; + + packet->count = byte >> 5; + + switch (packet->count) { case 0: - packet->count = 0; + ip_len = 0; break; case 1: if (len < 3) return INTEL_PT_NEED_MORE_BYTES; - packet->count = 2; + ip_len = 2; packet->payload = le16_to_cpu(*(uint16_t *)(buf + 1)); break; case 2: if (len < 5) return INTEL_PT_NEED_MORE_BYTES; - packet->count = 4; + ip_len = 4; packet->payload = le32_to_cpu(*(uint32_t *)(buf + 1)); break; case 3: - case 6: + case 4: if (len < 7) return INTEL_PT_NEED_MORE_BYTES; - packet->count = 6; + ip_len = 6; memcpy_le64(&packet->payload, buf + 1, 6); break; + case 6: + if (len < 9) + return INTEL_PT_NEED_MORE_BYTES; + ip_len = 8; + packet->payload = le64_to_cpu(*(uint64_t *)(buf + 1)); + break; default: return INTEL_PT_BAD_PACKET; } packet->type = type; - return packet->count + 1; + return ip_len + 1; } static int intel_pt_get_mode(const unsigned char *buf, size_t len, @@ -488,6 +499,7 @@ case INTEL_PT_FUP: if (!(packet->count)) return snprintf(buf, buf_len, "%s no ip", name); + __fallthrough; case INTEL_PT_CYC: case INTEL_PT_VMCS: case INTEL_PT_MTC: only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/tools/perf/util/scripting-engines/Build +++ linux-raspi2-4.4.0/tools/perf/util/scripting-engines/Build @@ -1,6 +1,6 @@ libperf-$(CONFIG_LIBPERL) += trace-event-perl.o libperf-$(CONFIG_LIBPYTHON) += trace-event-python.o -CFLAGS_trace-event-perl.o += $(PERL_EMBED_CCOPTS) -Wno-redundant-decls -Wno-strict-prototypes -Wno-unused-parameter -Wno-shadow -Wno-undef -Wno-switch-default +CFLAGS_trace-event-perl.o += $(PERL_EMBED_CCOPTS) -Wno-redundant-decls -Wno-strict-prototypes -Wno-unused-parameter -Wno-shadow -Wno-nested-externs -Wno-undef -Wno-switch-default CFLAGS_trace-event-python.o += $(PYTHON_EMBED_CCOPTS) -Wno-redundant-decls -Wno-strict-prototypes -Wno-unused-parameter -Wno-shadow only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/tools/perf/util/strfilter.c +++ linux-raspi2-4.4.0/tools/perf/util/strfilter.c @@ -269,6 +269,7 @@ len = strfilter_node__sprint_pt(node->l, buf); if (len < 0) return len; + __fallthrough; case '!': if (buf) { *(buf + len++) = *node->p; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/tools/perf/util/string.c +++ linux-raspi2-4.4.0/tools/perf/util/string.c @@ -21,6 +21,8 @@ case 'b': case 'B': if (*p) goto out_err; + + __fallthrough; case '\0': return length; default: only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/tools/perf/util/thread.c +++ linux-raspi2-4.4.0/tools/perf/util/thread.c @@ -227,7 +227,7 @@ struct addr_location *al) { size_t i; - const u8 const cpumodes[] = { + const u8 cpumodes[] = { PERF_RECORD_MISC_USER, PERF_RECORD_MISC_KERNEL, PERF_RECORD_MISC_GUEST_USER, only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/tools/perf/util/thread_map.c +++ linux-raspi2-4.4.0/tools/perf/util/thread_map.c @@ -92,8 +92,8 @@ { DIR *proc; int max_threads = 32, items, i; - char path[256]; - struct dirent dirent, *next, **namelist = NULL; + char path[NAME_MAX + 1 + 6]; + struct dirent *dirent, **namelist = NULL; struct thread_map *threads = thread_map__alloc(max_threads); if (threads == NULL) @@ -106,16 +106,16 @@ threads->nr = 0; atomic_set(&threads->refcnt, 1); - while (!readdir_r(proc, &dirent, &next) && next) { + while ((dirent = readdir(proc)) != NULL) { char *end; bool grow = false; struct stat st; - pid_t pid = strtol(dirent.d_name, &end, 10); + pid_t pid = strtol(dirent->d_name, &end, 10); if (*end) /* only interested in proper numerical dirents */ continue; - snprintf(path, sizeof(path), "/proc/%s", dirent.d_name); + snprintf(path, sizeof(path), "/proc/%s", dirent->d_name); if (stat(path, &st) != 0) continue; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/tools/testing/selftests/capabilities/test_execve.c +++ linux-raspi2-4.4.0/tools/testing/selftests/capabilities/test_execve.c @@ -138,9 +138,6 @@ if (chdir(cwd) != 0) err(1, "chdir to private tmpfs"); - - if (umount2(".", MNT_DETACH) != 0) - err(1, "detach private tmpfs"); } static void copy_fromat_to(int fromfd, const char *fromname, const char *toname) @@ -248,7 +245,7 @@ err(1, "chown"); if (chmod("validate_cap_sgidnonroot", S_ISGID | 0710) != 0) err(1, "chmod"); -} + } capng_get_caps_process(); @@ -384,7 +381,7 @@ } else { printf("[RUN]\tNon-root +ia, sgidnonroot => i\n"); exec_other_validate_cap("./validate_cap_sgidnonroot", - false, false, true, false); + false, false, true, false); if (fork_wait()) { printf("[RUN]\tNon-root +ia, sgidroot => i\n"); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/tools/testing/selftests/firmware/fw_filesystem.sh +++ linux-raspi2-4.4.0/tools/testing/selftests/firmware/fw_filesystem.sh @@ -48,8 +48,16 @@ NAME=$(basename "$FW") +if printf '\000' >"$DIR"/trigger_request 2> /dev/null; then + echo "$0: empty filename should not succeed" >&2 + exit 1 +fi + # Request a firmware that doesn't exist, it should fail. -echo -n "nope-$NAME" >"$DIR"/trigger_request +if echo -n "nope-$NAME" >"$DIR"/trigger_request 2> /dev/null; then + echo "$0: firmware shouldn't have loaded" >&2 + exit 1 +fi if diff -q "$FW" /dev/test_firmware >/dev/null ; then echo "$0: firmware was not expected to match" >&2 exit 1 only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/tools/testing/selftests/firmware/fw_userhelper.sh +++ linux-raspi2-4.4.0/tools/testing/selftests/firmware/fw_userhelper.sh @@ -64,9 +64,33 @@ echo "ABCD0123" >"$FW" NAME=$(basename "$FW") +DEVPATH="$DIR"/"nope-$NAME"/loading + # Test failure when doing nothing (timeout works). -echo 1 >/sys/class/firmware/timeout -echo -n "$NAME" >"$DIR"/trigger_request +echo -n 2 >/sys/class/firmware/timeout +echo -n "nope-$NAME" >"$DIR"/trigger_request 2>/dev/null & + +# Give the kernel some time to load the loading file, must be less +# than the timeout above. +sleep 1 +if [ ! -f $DEVPATH ]; then + echo "$0: fallback mechanism immediately cancelled" + echo "" + echo "The file never appeared: $DEVPATH" + echo "" + echo "This might be a distribution udev rule setup by your distribution" + echo "to immediately cancel all fallback requests, this must be" + echo "removed before running these tests. To confirm look for" + echo "a firmware rule like /lib/udev/rules.d/50-firmware.rules" + echo "and see if you have something like this:" + echo "" + echo "SUBSYSTEM==\"firmware\", ACTION==\"add\", ATTR{loading}=\"-1\"" + echo "" + echo "If you do remove this file or comment out this line before" + echo "proceeding with these tests." + exit 1 +fi + if diff -q "$FW" /dev/test_firmware >/dev/null ; then echo "$0: firmware was not expected to match" >&2 exit 1 only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/tools/testing/selftests/memory-hotplug/mem-on-off-test.sh +++ linux-raspi2-4.4.0/tools/testing/selftests/memory-hotplug/mem-on-off-test.sh @@ -22,6 +22,11 @@ echo $msg memory hotplug is not supported >&2 exit 0 fi + + if ! grep -q 1 $SYSFS/devices/system/memory/memory*/removable; then + echo $msg no hot-pluggable memory >&2 + exit 0 + fi } # @@ -39,7 +44,7 @@ done } -hotplaggable_offline_memory() +hotpluggable_offline_memory() { hotpluggable_memory offline } @@ -75,9 +80,12 @@ if ! online_memory $memory; then echo $FUNCNAME $memory: unexpected fail >&2 + return 1 elif ! memory_is_online $memory; then echo $FUNCNAME $memory: unexpected offline >&2 + return 1 fi + return 0 } online_memory_expect_fail() @@ -86,9 +94,12 @@ if online_memory $memory 2> /dev/null; then echo $FUNCNAME $memory: unexpected success >&2 + return 1 elif ! memory_is_offline $memory; then echo $FUNCNAME $memory: unexpected online >&2 + return 1 fi + return 0 } offline_memory_expect_success() @@ -97,9 +108,12 @@ if ! offline_memory $memory; then echo $FUNCNAME $memory: unexpected fail >&2 + return 1 elif ! memory_is_offline $memory; then echo $FUNCNAME $memory: unexpected offline >&2 + return 1 fi + return 0 } offline_memory_expect_fail() @@ -108,14 +122,18 @@ if offline_memory $memory 2> /dev/null; then echo $FUNCNAME $memory: unexpected success >&2 + return 1 elif ! memory_is_online $memory; then echo $FUNCNAME $memory: unexpected offline >&2 + return 1 fi + return 0 } error=-12 priority=0 ratio=10 +retval=0 while getopts e:hp:r: opt; do case $opt in @@ -131,6 +149,10 @@ ;; r) ratio=$OPTARG + if [ "$ratio" -gt 100 ] || [ "$ratio" -lt 0 ]; then + echo "The percentage should be an integer within 0~100 range" + exit 1 + fi ;; esac done @@ -143,35 +165,58 @@ prerequisite echo "Test scope: $ratio% hotplug memory" -echo -e "\t online all hotplug memory in offline state" -echo -e "\t offline $ratio% hotplug memory in online state" -echo -e "\t online all hotplug memory in offline state" # # Online all hot-pluggable memory # -for memory in `hotplaggable_offline_memory`; do - echo offline-online $memory - online_memory_expect_success $memory -done +hotpluggable_num=`hotpluggable_offline_memory | wc -l` +echo -e "\t online all hot-pluggable memory in offline state:" +if [ "$hotpluggable_num" -gt 0 ]; then + for memory in `hotpluggable_offline_memory`; do + echo "offline->online memory$memory" + if ! online_memory_expect_success $memory; then + retval=1 + fi + done +else + echo -e "\t\t SKIPPED - no hot-pluggable memory in offline state" +fi # # Offline $ratio percent of hot-pluggable memory # +hotpluggable_num=`hotpluggable_online_memory | wc -l` +target=`echo "a=$hotpluggable_num*$ratio; if ( a%100 ) a/100+1 else a/100" | bc` +echo -e "\t offline $ratio% hot-pluggable memory in online state" +echo -e "\t trying to offline $target out of $hotpluggable_num memory block(s):" for memory in `hotpluggable_online_memory`; do - if [ $((RANDOM % 100)) -lt $ratio ]; then - echo online-offline $memory - offline_memory_expect_success $memory + if [ "$target" -gt 0 ]; then + echo "online->offline memory$memory" + if offline_memory_expect_success $memory; then + target=$(($target - 1)) + fi fi done +if [ "$target" -gt 0 ]; then + retval=1 + echo -e "\t\t FAILED - unable to offline some memory blocks, device busy?" +fi # # Online all hot-pluggable memory again # -for memory in `hotplaggable_offline_memory`; do - echo offline-online $memory - online_memory_expect_success $memory -done +hotpluggable_num=`hotpluggable_offline_memory | wc -l` +echo -e "\t online all hot-pluggable memory in offline state:" +if [ "$hotpluggable_num" -gt 0 ]; then + for memory in `hotpluggable_offline_memory`; do + echo "offline->online memory$memory" + if ! online_memory_expect_success $memory; then + retval=1 + fi + done +else + echo -e "\t\t SKIPPED - no hot-pluggable memory in offline state" +fi # # Test with memory notifier error injection @@ -189,15 +234,16 @@ if [ ! -d "$DEBUGFS" ]; then echo $msg debugfs is not mounted >&2 - exit 0 + exit $retval fi if [ ! -d $NOTIFIER_ERR_INJECT_DIR ]; then echo $msg memory-notifier-error-inject module is not available >&2 - exit 0 + exit $retval fi } +echo -e "\t Test with memory notifier error injection" prerequisite_extra # @@ -214,7 +260,7 @@ # Test memory hot-add error handling (offline => online) # echo $error > $NOTIFIER_ERR_INJECT_DIR/actions/MEM_GOING_ONLINE/error -for memory in `hotplaggable_offline_memory`; do +for memory in `hotpluggable_offline_memory`; do online_memory_expect_fail $memory done @@ -222,7 +268,7 @@ # Online all hot-pluggable memory # echo 0 > $NOTIFIER_ERR_INJECT_DIR/actions/MEM_GOING_ONLINE/error -for memory in `hotplaggable_offline_memory`; do +for memory in `hotpluggable_offline_memory`; do online_memory_expect_success $memory done @@ -236,3 +282,5 @@ echo 0 > $NOTIFIER_ERR_INJECT_DIR/actions/MEM_GOING_OFFLINE/error /sbin/modprobe -q -r memory-notifier-error-inject + +exit $retval only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/tools/testing/selftests/seccomp/seccomp_bpf.c +++ linux-raspi2-4.4.0/tools/testing/selftests/seccomp/seccomp_bpf.c @@ -74,7 +74,12 @@ #define SECCOMP_RET_ERRNO 0x00050000U /* returns an errno */ #define SECCOMP_RET_TRACE 0x7ff00000U /* pass to a tracer or disallow */ #define SECCOMP_RET_ALLOW 0x7fff0000U /* allow */ +#endif +#ifndef SECCOMP_RET_LOG +#define SECCOMP_RET_LOG 0x7ffc0000U /* allow after logging */ +#endif +#ifndef SECCOMP_RET_ACTION /* Masks for the return value sections. */ #define SECCOMP_RET_ACTION 0x7fff0000U #define SECCOMP_RET_DATA 0x0000ffffU @@ -342,6 +347,28 @@ EXPECT_EQ(EINVAL, errno); } +TEST(log_all) +{ + struct sock_filter filter[] = { + BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_LOG), + }; + struct sock_fprog prog = { + .len = (unsigned short)ARRAY_SIZE(filter), + .filter = filter, + }; + long ret; + pid_t parent = getppid(); + + ret = prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0); + ASSERT_EQ(0, ret); + + ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &prog); + ASSERT_EQ(0, ret); + + /* getppid() should succeed and be logged (no check for logging) */ + EXPECT_EQ(parent, syscall(__NR_getppid)); +} + TEST_SIGNAL(unknown_ret_is_kill_inside, SIGSYS) { struct sock_filter filter[] = { @@ -735,6 +762,7 @@ FIXTURE_DATA(precedence) { struct sock_fprog allow; + struct sock_fprog log; struct sock_fprog trace; struct sock_fprog error; struct sock_fprog trap; @@ -746,6 +774,13 @@ struct sock_filter allow_insns[] = { BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_ALLOW), }; + struct sock_filter log_insns[] = { + BPF_STMT(BPF_LD|BPF_W|BPF_ABS, + offsetof(struct seccomp_data, nr)), + BPF_JUMP(BPF_JMP|BPF_JEQ|BPF_K, __NR_getpid, 1, 0), + BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_ALLOW), + BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_LOG), + }; struct sock_filter trace_insns[] = { BPF_STMT(BPF_LD|BPF_W|BPF_ABS, offsetof(struct seccomp_data, nr)), @@ -782,6 +817,7 @@ memcpy(self->_x.filter, &_x##_insns, sizeof(_x##_insns)); \ self->_x.len = (unsigned short)ARRAY_SIZE(_x##_insns) FILTER_ALLOC(allow); + FILTER_ALLOC(log); FILTER_ALLOC(trace); FILTER_ALLOC(error); FILTER_ALLOC(trap); @@ -792,6 +828,7 @@ { #define FILTER_FREE(_x) if (self->_x.filter) free(self->_x.filter) FILTER_FREE(allow); + FILTER_FREE(log); FILTER_FREE(trace); FILTER_FREE(error); FILTER_FREE(trap); @@ -809,6 +846,8 @@ ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->allow); ASSERT_EQ(0, ret); + ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->log); + ASSERT_EQ(0, ret); ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->trace); ASSERT_EQ(0, ret); ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->error); @@ -833,6 +872,8 @@ ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->allow); ASSERT_EQ(0, ret); + ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->log); + ASSERT_EQ(0, ret); ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->trace); ASSERT_EQ(0, ret); ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->error); @@ -864,6 +905,8 @@ ASSERT_EQ(0, ret); ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->error); ASSERT_EQ(0, ret); + ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->log); + ASSERT_EQ(0, ret); ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->trace); ASSERT_EQ(0, ret); ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->trap); @@ -885,6 +928,8 @@ ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->allow); ASSERT_EQ(0, ret); + ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->log); + ASSERT_EQ(0, ret); ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->trace); ASSERT_EQ(0, ret); ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->error); @@ -910,6 +955,8 @@ ASSERT_EQ(0, ret); ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->trap); ASSERT_EQ(0, ret); + ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->log); + ASSERT_EQ(0, ret); ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->trace); ASSERT_EQ(0, ret); ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->error); @@ -931,6 +978,8 @@ ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->allow); ASSERT_EQ(0, ret); + ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->log); + ASSERT_EQ(0, ret); ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->trace); ASSERT_EQ(0, ret); ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->error); @@ -949,6 +998,8 @@ ret = prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0); ASSERT_EQ(0, ret); + ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->log); + ASSERT_EQ(0, ret); ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->error); ASSERT_EQ(0, ret); ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->trace); @@ -971,6 +1022,8 @@ ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->allow); ASSERT_EQ(0, ret); + ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->log); + ASSERT_EQ(0, ret); ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->trace); ASSERT_EQ(0, ret); /* Should work just fine. */ @@ -992,12 +1045,54 @@ ASSERT_EQ(0, ret); ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->allow); ASSERT_EQ(0, ret); + ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->log); + ASSERT_EQ(0, ret); /* Should work just fine. */ EXPECT_EQ(parent, syscall(__NR_getppid)); /* No ptracer */ EXPECT_EQ(-1, syscall(__NR_getpid)); } +TEST_F(precedence, log_is_fifth) +{ + pid_t mypid, parent; + long ret; + + mypid = getpid(); + parent = getppid(); + ret = prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0); + ASSERT_EQ(0, ret); + + ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->allow); + ASSERT_EQ(0, ret); + ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->log); + ASSERT_EQ(0, ret); + /* Should work just fine. */ + EXPECT_EQ(parent, syscall(__NR_getppid)); + /* Should also work just fine */ + EXPECT_EQ(mypid, syscall(__NR_getpid)); +} + +TEST_F(precedence, log_is_fifth_in_any_order) +{ + pid_t mypid, parent; + long ret; + + mypid = getpid(); + parent = getppid(); + ret = prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0); + ASSERT_EQ(0, ret); + + ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->log); + ASSERT_EQ(0, ret); + ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->allow); + ASSERT_EQ(0, ret); + /* Should work just fine. */ + EXPECT_EQ(parent, syscall(__NR_getppid)); + /* Should also work just fine */ + EXPECT_EQ(mypid, syscall(__NR_getpid)); +} + #ifndef PTRACE_O_TRACESECCOMP #define PTRACE_O_TRACESECCOMP 0x00000080 #endif @@ -1476,10 +1571,18 @@ #define SECCOMP_SET_MODE_FILTER 1 #endif +#ifndef SECCOMP_GET_ACTION_AVAIL +#define SECCOMP_GET_ACTION_AVAIL 2 +#endif + #ifndef SECCOMP_FLAG_FILTER_TSYNC #define SECCOMP_FLAG_FILTER_TSYNC 1 #endif +#ifndef SECCOMP_FILTER_FLAG_LOG +#define SECCOMP_FILTER_FLAG_LOG 2 +#endif + #ifndef seccomp int seccomp(unsigned int op, unsigned int flags, struct sock_fprog *filter) { @@ -1576,6 +1679,67 @@ } } +/* + * Test detection of known and unknown filter flags. Userspace needs to be able + * to check if a filter flag is supported by the current kernel and a good way + * of doing that is by attempting to enter filter mode, with the flag bit in + * question set, and a NULL pointer for the _args_ parameter. EFAULT indicates + * that the flag is valid and EINVAL indicates that the flag is invalid. + */ +TEST(detect_seccomp_filter_flags) +{ + unsigned int flags[] = { SECCOMP_FILTER_FLAG_TSYNC, + SECCOMP_FILTER_FLAG_LOG }; + unsigned int flag, all_flags; + int i; + long ret; + + /* Test detection of known-good filter flags */ + for (i = 0, all_flags = 0; i < ARRAY_SIZE(flags); i++) { + flag = flags[i]; + ret = seccomp(SECCOMP_SET_MODE_FILTER, flag, NULL); + ASSERT_NE(ENOSYS, errno) { + TH_LOG("Kernel does not support seccomp syscall!"); + } + EXPECT_EQ(-1, ret); + EXPECT_EQ(EFAULT, errno) { + TH_LOG("Failed to detect that a known-good filter flag (0x%X) is supported!", + flag); + } + + all_flags |= flag; + } + + /* Test detection of all known-good filter flags */ + ret = seccomp(SECCOMP_SET_MODE_FILTER, all_flags, NULL); + EXPECT_EQ(-1, ret); + EXPECT_EQ(EFAULT, errno) { + TH_LOG("Failed to detect that all known-good filter flags (0x%X) are supported!", + all_flags); + } + + /* Test detection of an unknown filter flag */ + flag = -1; + ret = seccomp(SECCOMP_SET_MODE_FILTER, flag, NULL); + EXPECT_EQ(-1, ret); + EXPECT_EQ(EINVAL, errno) { + TH_LOG("Failed to detect that an unknown filter flag (0x%X) is unsupported!", + flag); + } + + /* + * Test detection of an unknown filter flag that may simply need to be + * added to this test + */ + flag = flags[ARRAY_SIZE(flags) - 1] << 1; + ret = seccomp(SECCOMP_SET_MODE_FILTER, flag, NULL); + EXPECT_EQ(-1, ret); + EXPECT_EQ(EINVAL, errno) { + TH_LOG("Failed to detect that an unknown filter flag (0x%X) is unsupported! Does a new flag need to be added to this test?", + flag); + } +} + TEST(TSYNC_first) { struct sock_filter filter[] = { @@ -2197,6 +2361,99 @@ _metadata->passed = 0; } +TEST_SIGNAL(filter_flag_log, SIGSYS) +{ + struct sock_filter allow_filter[] = { + BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_ALLOW), + }; + struct sock_filter kill_filter[] = { + BPF_STMT(BPF_LD|BPF_W|BPF_ABS, + offsetof(struct seccomp_data, nr)), + BPF_JUMP(BPF_JMP|BPF_JEQ|BPF_K, __NR_getpid, 0, 1), + BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_KILL), + BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_ALLOW), + }; + struct sock_fprog allow_prog = { + .len = (unsigned short)ARRAY_SIZE(allow_filter), + .filter = allow_filter, + }; + struct sock_fprog kill_prog = { + .len = (unsigned short)ARRAY_SIZE(kill_filter), + .filter = kill_filter, + }; + long ret; + pid_t parent = getppid(); + + ret = prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0); + ASSERT_EQ(0, ret); + + /* Verify that the FILTER_FLAG_LOG flag isn't accepted in strict mode */ + ret = seccomp(SECCOMP_SET_MODE_STRICT, SECCOMP_FILTER_FLAG_LOG, + &allow_prog); + ASSERT_NE(ENOSYS, errno) { + TH_LOG("Kernel does not support seccomp syscall!"); + } + EXPECT_NE(0, ret) { + TH_LOG("Kernel accepted FILTER_FLAG_LOG flag in strict mode!"); + } + EXPECT_EQ(EINVAL, errno) { + TH_LOG("Kernel returned unexpected errno for FILTER_FLAG_LOG flag in strict mode!"); + } + + /* Verify that a simple, permissive filter can be added with no flags */ + ret = seccomp(SECCOMP_SET_MODE_FILTER, 0, &allow_prog); + EXPECT_EQ(0, ret); + + /* See if the same filter can be added with the FILTER_FLAG_LOG flag */ + ret = seccomp(SECCOMP_SET_MODE_FILTER, SECCOMP_FILTER_FLAG_LOG, + &allow_prog); + ASSERT_NE(EINVAL, errno) { + TH_LOG("Kernel does not support the FILTER_FLAG_LOG flag!"); + } + EXPECT_EQ(0, ret); + + /* Ensure that the kill filter works with the FILTER_FLAG_LOG flag */ + ret = seccomp(SECCOMP_SET_MODE_FILTER, SECCOMP_FILTER_FLAG_LOG, + &kill_prog); + EXPECT_EQ(0, ret); + + EXPECT_EQ(parent, syscall(__NR_getppid)); + /* getpid() should never return. */ + EXPECT_EQ(0, syscall(__NR_getpid)); +} + +TEST(get_action_avail) +{ + __u32 actions[] = { SECCOMP_RET_KILL, SECCOMP_RET_TRAP, + SECCOMP_RET_ERRNO, SECCOMP_RET_TRACE, + SECCOMP_RET_LOG, SECCOMP_RET_ALLOW }; + __u32 unknown_action = 0x10000000U; + int i; + long ret; + + ret = seccomp(SECCOMP_GET_ACTION_AVAIL, 0, &actions[0]); + ASSERT_NE(ENOSYS, errno) { + TH_LOG("Kernel does not support seccomp syscall!"); + } + ASSERT_NE(EINVAL, errno) { + TH_LOG("Kernel does not support SECCOMP_GET_ACTION_AVAIL operation!"); + } + EXPECT_EQ(ret, 0); + + for (i = 0; i < ARRAY_SIZE(actions); i++) { + ret = seccomp(SECCOMP_GET_ACTION_AVAIL, 0, &actions[i]); + EXPECT_EQ(ret, 0) { + TH_LOG("Expected action (0x%X) not available!", + actions[i]); + } + } + + /* Check that an unknown action is handled properly (EOPNOTSUPP) */ + ret = seccomp(SECCOMP_GET_ACTION_AVAIL, 0, &unknown_action); + EXPECT_EQ(ret, -1); + EXPECT_EQ(errno, EOPNOTSUPP); +} + /* * TODO: * - add microbenchmarks @@ -2205,6 +2462,8 @@ * - endianness checking when appropriate * - 64-bit arg prodding * - arch value testing (x86 modes especially) + * - verify that FILTER_FLAG_LOG filters generate log messages + * - verify that RET_LOG generates log messages * - ... */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/bnxt/COPYING +++ linux-raspi2-4.4.0/ubuntu/bnxt/COPYING @@ -0,0 +1,339 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/bnxt/ChangeLog +++ linux-raspi2-4.4.0/ubuntu/bnxt/ChangeLog @@ -0,0 +1,3952 @@ +commit 9b0436c3f29483ca91d890b0072c0c02e2e535ed +Author: Michael Chan +Date: Tue Jul 11 13:05:36 2017 -0400 + + bnxt_en: Fix SRIOV on big-endian architecture. + + The PF driver sets up a list of firmware commands from the VF driver that + needs to be forwarded to the PF for approval. This list is a 256-bit + bitmap. The code that sets up the bitmap falls apart on big-endian + architecture. __set_bit() does not work because it operates on long types + whereas the firmware interface is defined in u32 types, causing bits in + the wrong 32-bit word to be set. + + Fix it by setting the proper bits on an array of u32. + + Fixes: de68f5de5651 ("bnxt_en: Fix bitmap declaration to work on 32-bit arches.") + Reported-by: Shannon Nelson + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 3b6b34df342553a7522561e34288f5bb803aa9aa +Author: Michael Chan +Date: Tue Jul 11 13:05:35 2017 -0400 + + bnxt_en: Fix bug in ethtool -L. + + When changing channels from combined to rx/tx or vice versa, the code + uses the wrong "sh" parameter to determine if we are reserving rings + for shared or non-shared mode. It should be using the ethtool requested + "sh" parameter instead of the current "sh" parameter. + + Fix it by passing the "sh" parameter to bnxt_reserve_rings(). For + ethtool, we will pass in the requested "sh" parameter. + + Fixes: 391be5c27364 ("bnxt_en: Implement new scheme to reserve tx rings.") + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit f9b76ebd49f97458857568918c305a17fa7c6567 +Author: Michael Chan +Date: Tue Jul 11 13:05:34 2017 -0400 + + bnxt_en: Fix race conditions in .ndo_get_stats64(). + + .ndo_get_stats64() may not be protected by RTNL and can race with + .ndo_stop() or other ethtool operations that can free the statistics + memory. Fix it by setting a new flag BNXT_STATE_READ_STATS and then + proceeding to read statistics memory only if the state is OPEN. The + close path that frees the memory clears the OPEN state and then waits + for the BNXT_STATE_READ_STATS to clear before proceeding to free the + statistics memory. + + Fixes: c0c050c58d84 ("bnxt_en: New Broadcom ethernet driver.") + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 2270bc5da34979454e6f2eb133d800b635156174 +Author: Michael Chan +Date: Fri Jun 23 14:01:01 2017 -0400 + + bnxt_en: Fix netpoll handling. + + To handle netpoll properly, the driver must only handle TX packets + during NAPI. Handling RX events cause warnings and errors in + netpoll mode. The ndo_poll_controller() method should call + napi_schedule() directly so that a NAPI weight of zero will be used + during netpoll mode. + + The bnxt_en driver supports 2 ring modes: combined, and separate rx/tx. + In separate rx/tx mode, the ndo_poll_controller() method will only + process the tx rings. In combined mode, the rx and tx completion + entries are mixed in the completion ring and we need to drop the rx + entries and recycle the rx buffers. + + Add a function bnxt_force_rx_discard() to handle this in netpoll mode + when we see rx entries in combined ring mode. + + Reported-by: Calvin Owens + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 69c149e2e39e8d66437c9034bb4926ef2c1f7c23 +Author: Michael Chan +Date: Fri Jun 23 14:01:00 2017 -0400 + + bnxt_en: Add missing logic to handle TPA end error conditions. + + When we get a TPA_END completion to handle a completed LRO packet, it + is possible that hardware would indicate errors. The current code is + not checking for the error condition. Define the proper error bits and + the macro to check for this error and abort properly. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 8902965f8cb23bba8aa7f3be293ec2f3067b82c6 +Author: Martin KaFai Lau +Date: Thu Jun 15 17:29:13 2017 -0700 + + bpf: bnxt: Report bpf_prog ID during XDP_QUERY_PROG + + Add support to bnxt to report bpf_prog ID during XDP_QUERY_PROG. + + Signed-off-by: Martin KaFai Lau + Cc: Michael Chan + Acked-by: Alexei Starovoitov + Acked-by: Daniel Borkmann + Signed-off-by: David S. Miller + +commit a5fcf8a6c968ed8e312ff0b2a55d4c62d821eabb +Author: Jiri Pirko +Date: Tue Jun 6 17:00:16 2017 +0200 + + net: propagate tc filter chain index down the ndo_setup_tc call + + We need to push the chain index down to the drivers, so they have the + information to which chain the rule belongs. For now, no driver supports + multichain offload, so only chain 0 is supported. This is needed to + prevent chain squashes during offload for now. Later this will be used + to implement multichain offload. + + Signed-off-by: Jiri Pirko + Signed-off-by: David S. Miller + +commit f667724b99ad1afc91f16064d8fb293d2805bd57 +Author: Michael Chan +Date: Tue May 16 16:39:44 2017 -0400 + + bnxt_en: Check status of firmware DCBX agent before setting DCB_CAP_DCBX_HOST. + + Otherwise, all the host based DCBX settings from lldpad will fail if the + firmware DCBX agent is running. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 87fe603274aa9889c05cca3c3e45675e1997cb13 +Author: Michael Chan +Date: Tue May 16 16:39:43 2017 -0400 + + bnxt_en: Call bnxt_dcb_init() after getting firmware DCBX configuration. + + In the current code, bnxt_dcb_init() is called too early before we + determine if the firmware DCBX agent is running or not. As a result, + we are not setting the DCB_CAP_DCBX_HOST and DCB_CAP_DCBX_LLD_MANAGED + flags properly to report to DCBNL. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit ac45bd93a5035c2f39c9862b8b6ed692db0fdc87 +Author: Dan Carpenter +Date: Sat May 6 03:49:01 2017 +0300 + + bnxt_en: allocate enough space for ->ntp_fltr_bmap + + We have the number of longs, but we need to calculate the number of + bytes required. + + Fixes: c0c050c58d84 ("bnxt_en: New Broadcom ethernet driver.") + Signed-off-by: Dan Carpenter + Acked-by: Michael Chan + Signed-off-by: David S. Miller + +commit 7d63818a35851cf00867248d5ab50a8fe8df5943 +Author: Michael Chan +Date: Fri Apr 21 20:11:25 2017 -0400 + + bnxt_en: Check the FW_LLDP_AGENT flag before allowing DCBX host agent. + + Check the additional flag in bnxt_hwrm_func_qcfg() before allowing + DCBX to be done in host mode. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit f0249056eaf2b9a17b2b76a6e099e9b7877e187d +Author: Michael Chan +Date: Fri Apr 21 20:11:23 2017 -0400 + + bnxt_en: Fix VF attributes reporting. + + The .ndo_get_vf_config() is returning the wrong qos attribute. Fix + the code that checks and reports the qos and spoofchk attributes. The + BNXT_VF_QOS and BNXT_VF_LINK_UP flags should not be set by default + during init. time. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit a82fba8dbfb522bd19b1644bf599135680fd0122 +Author: Michael Chan +Date: Fri Apr 21 20:11:22 2017 -0400 + + bnxt_en: Pass DCB RoCE app priority to firmware. + + When the driver gets the RoCE app priority set/delete call through DCBNL, + the driver will send the information to the firmware to set up the + priority VLAN tag for RDMA traffic. + + [ New version using the common ETH_P_IBOE constant in if_ether.h ] + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 68a946bb81e07ed0e59a99e0c068d091ed42cc1b +Author: Michael Chan +Date: Tue Apr 4 18:14:17 2017 -0400 + + bnxt_en: Cap the msix vector with the max completion rings. + + The current code enables up to the maximum MSIX vectors in the PCIE + config space without considering the max completion rings available. + An MSIX vector is only useful when it has an associated completion + ring, so it is better to cap it. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 932dbf83ba18bdb871e0c03a4ffdd9785f7a9c07 +Author: Michael Chan +Date: Tue Apr 4 18:14:16 2017 -0400 + + bnxt_en: Use short TX BDs for the XDP TX ring. + + No offload is performed on the XDP_TX ring so we can use the short TX + BDs. This has the effect of doubling the size of the XDP TX ring so + that it now matches the size of the rx ring by default. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 67fea463fd873492ab641459a6d1af0e9ea3c9ce +Author: Michael Chan +Date: Tue Apr 4 18:14:15 2017 -0400 + + bnxt_en: Add interrupt test to ethtool -t selftest. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 91725d89b97acea168a94c577d999801c3b3bcfb +Author: Michael Chan +Date: Tue Apr 4 18:14:14 2017 -0400 + + bnxt_en: Add PHY loopback to ethtool self-test. + + It is necessary to disable autoneg before enabling PHY loopback, + otherwise link won't come up. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit f7dc1ea6c4c1f31371b7098d6fae0d49dc6cdff1 +Author: Michael Chan +Date: Tue Apr 4 18:14:13 2017 -0400 + + bnxt_en: Add ethtool mac loopback self test. + + The mac loopback self test operates in polling mode. To support that, + we need to add functions to open and close the NIC half way. The half + open mode allows the rings to operate without IRQ and NAPI. We + use the XDP transmit function to send the loopback packet. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit eb51365846bc418687af4c4f41b68b6e84cdd449 +Author: Michael Chan +Date: Tue Apr 4 18:14:12 2017 -0400 + + bnxt_en: Add basic ethtool -t selftest support. + + Add the basic infrastructure and only firmware tests initially. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit f65a2044a8c988adf16788c51c04ac10dbbdb494 +Author: Michael Chan +Date: Tue Apr 4 18:14:11 2017 -0400 + + bnxt_en: Add suspend/resume callbacks. + + Add suspend/resume callbacks using the newer dev_pm_ops method. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 5282db6c794fed3ea8b399bc5305c4078e084f7b +Author: Michael Chan +Date: Tue Apr 4 18:14:10 2017 -0400 + + bnxt_en: Add ethtool set_wol method. + + And add functions to set and free magic packet filter. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 8e202366dd752564d7f090ba280cc51cbf7bbbd9 +Author: Michael Chan +Date: Tue Apr 4 18:14:09 2017 -0400 + + bnxt_en: Add ethtool get_wol method. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit d196ece740bf337aa25731cd8cb44660a2a227dd +Author: Michael Chan +Date: Tue Apr 4 18:14:08 2017 -0400 + + bnxt_en: Add pci shutdown method. + + Add pci shutdown method to put device in the proper WoL and power state. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit c1ef146a5bd3b286d5c3eb2c9f631b38647c76d3 +Author: Michael Chan +Date: Tue Apr 4 18:14:07 2017 -0400 + + bnxt_en: Add basic WoL infrastructure. + + Add code to driver probe function to check if the device is WoL capable + and if Magic packet WoL filter is currently set. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 8eb992e876a88de7539b1b9e132dd171d865cd2f +Author: Michael Chan +Date: Tue Apr 4 18:14:06 2017 -0400 + + bnxt_en: Update firmware interface spec to 1.7.6.2. + + Features added include WoL and selftest. + + Signed-off-by: Deepak Khungar + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 282ccf6efb7c5d75b0283b66ed487957163ce8fe +Author: Florian Westphal +Date: Wed Mar 29 17:17:31 2017 +0200 + + drivers: add explicit interrupt.h includes + + These files all use functions declared in interrupt.h, but currently rely + on implicit inclusion of this file (via netns/xfrm.h). + + That won't work anymore when the flow cache is removed so include that + header where needed. + + Signed-off-by: Florian Westphal + Signed-off-by: David S. Miller + +commit 3ed3a83e3f3871c57b18cef09b148e96921236ed +Author: Michael Chan +Date: Tue Mar 28 19:47:31 2017 -0400 + + bnxt_en: Fix DMA unmapping of the RX buffers in XDP mode during shutdown. + + In bnxt_free_rx_skbs(), which is called to free up all RX buffers during + shutdown, we need to unmap the page if we are running in XDP mode. + + Fixes: c61fb99cae51 ("bnxt_en: Add RX page mode support.") + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 23e12c893489ed12ecfccbf866fc62af1bead4b0 +Author: Sankar Patchineelam +Date: Tue Mar 28 19:47:30 2017 -0400 + + bnxt_en: Correct the order of arguments to netdev_err() in bnxt_set_tpa() + + Signed-off-by: Sankar Patchineelam + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 2247925f0942dc4e7c09b1cde45ca18461d94c5f +Author: Sankar Patchineelam +Date: Tue Mar 28 19:47:29 2017 -0400 + + bnxt_en: Fix NULL pointer dereference in reopen failure path + + Net device reset can fail when the h/w or f/w is in a bad state. + Subsequent netdevice open fails in bnxt_hwrm_stat_ctx_alloc(). + The cleanup invokes bnxt_hwrm_resource_free() which inturn + calls bnxt_disable_int(). In this routine, the code segment + + if (ring->fw_ring_id != INVALID_HW_RING_ID) + BNXT_CP_DB(cpr->cp_doorbell, cpr->cp_raw_cons); + + results in NULL pointer dereference as cpr->cp_doorbell is not yet + initialized, and fw_ring_id is zero. + + The fix is to initialize cpr fw_ring_id to INVALID_HW_RING_ID before + bnxt_init_chip() is invoked. + + Signed-off-by: Sankar Patchineelam + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 56f36acd215cf7c28372b2fdb4f33f6900e97e05 +Author: Amritha Nambiar +Date: Wed Mar 15 10:39:25 2017 -0700 + + mqprio: Modify mqprio to pass user parameters via ndo_setup_tc. + + The configurable priority to traffic class mapping and the user specified + queue ranges are used to configure the traffic class, overriding the + hardware defaults when the 'hw' option is set to 0. However, when the 'hw' + option is non-zero, the hardware QOS defaults are used. + + This patch makes it so that we can pass the data the user provided to + ndo_setup_tc. This allows us to pull in the queue configuration if the + user requested it as well as any additional hardware offload type + requested by using a value other than 1 for the hw value. + + Finally it also provides a means for the device driver to return the level + supported for the offload type via the qopt->hw value. Previously we were + just always assuming the value to be 1, in the future values beyond just 1 + may be supported. + + Signed-off-by: Amritha Nambiar + Signed-off-by: Alexander Duyck + Signed-off-by: David S. Miller + +commit 520ad89a54edea84496695d528f73ddcf4a52ea4 +Author: Michael Chan +Date: Wed Mar 8 18:44:35 2017 -0500 + + bnxt_en: Ignore 0 value in autoneg supported speed from firmware. + + In some situations, the firmware will return 0 for autoneg supported + speed. This may happen if the firmware detects no SFP module, for + example. The driver should ignore this so that we don't end up with + an invalid autoneg setting with nothing advertised. When SFP module + is inserted, we'll get the updated settings from firmware at that time. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit bc39f885a9c3bdbff0a96ecaf07b162a78eff6e4 +Author: Michael Chan +Date: Wed Mar 8 18:44:34 2017 -0500 + + bnxt_en: Check if firmware LLDP agent is running. + + Set DCB_CAP_DCBX_HOST capability flag only if the firmware LLDP agent + is not running. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit b386cd362ffea09d05c56bfa85d104562e860647 +Author: Michael Chan +Date: Wed Mar 8 18:44:33 2017 -0500 + + bnxt_en: Call bnxt_ulp_stop() during tx timeout. + + If we call bnxt_reset_task() due to tx timeout, we should call + bnxt_ulp_stop() to inform the RDMA driver about the error and the + impending reset. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 3c2217a675bac22afb149166e0de71809189850d +Author: Michael Chan +Date: Wed Mar 8 18:44:32 2017 -0500 + + bnxt_en: Perform function reset earlier during probe. + + The firmware call to do function reset is done too late. It is causing + the rings that have been reserved to be freed. In NPAR mode, this bug + is causing us to run out of rings. + + Fixes: 391be5c27364 ("bnxt_en: Implement new scheme to reserve tx rings.") + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 1faaa78f36cb2915ae89138ba5846f87ade85dcb +Author: Tobias Klauser +Date: Tue Feb 21 15:27:28 2017 +0100 + + bnxt_en: use eth_hw_addr_random() + + Use eth_hw_addr_random() to set a random MAC address in order to make + sure bp->dev->addr_assign_type will be properly set to NET_ADDR_RANDOM. + + Signed-off-by: Tobias Klauser + Signed-off-by: David S. Miller + +commit 17086399c113d933e1202697f85b8f0f82fcb8ce +Author: Sathya Perla +Date: Mon Feb 20 19:25:18 2017 -0500 + + bnxt_en: fix pci cleanup in bnxt_init_one() failure path + + In the bnxt_init_one() failure path, bar1 and bar2 are not + being unmapped. This commit fixes this issue. Reorganize the + code so that bnxt_init_one()'s failure path and bnxt_remove_one() + can call the same function to do the PCI cleanup. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit daf1f1e7841138cb0e48d52c8573a5f064d8f495 +Author: Michael Chan +Date: Mon Feb 20 19:25:17 2017 -0500 + + bnxt_en: Fix NULL pointer dereference in a failure path during open. + + If bnxt_hwrm_ring_free() is called during a failure path in bnxt_open(), + it is possible that the completion rings have not been allocated yet. + In that case, the completion doorbell has not been initialized, and + calling bnxt_disable_int() will crash. Fix it by checking that the + completion ring has been initialized before writing to the completion + ring doorbell. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 4e00338a61998de3502d0428c4f71ffc69772316 +Author: Ray Jui +Date: Mon Feb 20 19:25:16 2017 -0500 + + bnxt_en: Reject driver probe against all bridge devices + + There are additional SoC devices that use the same device ID for + bridge and NIC devices. The bnxt driver should reject probe against + all bridge devices since it's meant to be used with only endpoint + devices. + + Signed-off-by: Ray Jui + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 32b40798c1b40343641f04cdfd09652af70ea0e9 +Author: Deepak Khungar +Date: Sun Feb 12 19:18:18 2017 -0500 + + bnxt_en: Added PCI IDs for BCM57452 and BCM57454 ASICs + + Signed-off-by: Deepak Khungar + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit b451c8b69e70de299aa6061e1fa6afbb4d7c1f9e +Author: Michael Chan +Date: Sun Feb 12 19:18:17 2017 -0500 + + bnxt_en: Fix bnxt_setup_tc() error message. + + Add proper puctuation to make the message more clear. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit e70c752f88ed23e6a0f081fa408282c2450c8ce9 +Author: Michael Chan +Date: Sun Feb 12 19:18:16 2017 -0500 + + bnxt_en: Print FEC settings as part of the linkup dmesg. + + Print FEC (Forward Error Correction) autoneg and encoding settings during + link up. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 33dac24abbd5a77eefca18fb7ebbd01a3cf1b343 +Author: Michael Chan +Date: Sun Feb 12 19:18:15 2017 -0500 + + bnxt_en: Do not setup PHY unless driving a single PF. + + If it is a VF or an NPAR function, the firmware call to setup the PHY + will fail. Adding this check will prevent unnecessary firmware calls + to setup the PHY unless calling from the PF. This will also eliminate + many unnecessary warning messages when the call from a VF or NPAR fails. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 61aad724ec0a685bc83b02b059a3ca0ad3bde6b0 +Author: Michael Chan +Date: Sun Feb 12 19:18:14 2017 -0500 + + bnxt_en: Add hardware NTUPLE filter for encapsulated packets. + + If skb_flow_dissect_flow_keys() returns with the encapsulation flag + set, pass the information to the firmware to setup the NTUPLE filter + accordingly. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 964fd4801d40ead69a447482c0dd0cd4be495e47 +Author: Michael Chan +Date: Sun Feb 12 19:18:13 2017 -0500 + + bnxt_en: Allow NETIF_F_NTUPLE to be enabled on VFs. + + Commit ae10ae740ad2 ("bnxt_en: Add new hardware RFS mode.") has added + code to allow NTUPLE to be enabled on VFs. So we now remove the + BNXT_VF() check in rfs_capable() to allow NTUPLE on VFs. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit a79a5276aa2f844bd368c1d3d5a625e1fbefd989 +Author: Michael Chan +Date: Sun Feb 12 19:18:12 2017 -0500 + + bnxt_en: Fix ethtool -l pre-set max combined channel. + + With commit d1e7925e6d80 ("bnxt_en: Centralize logic to reserve rings."), + ring allocation for combined rings has become stricter. A combined + ring must now have an rx-tx ring pair. The pre-set max. for combined + rings should now be min(rx, tx). + + Fixes: d1e7925e6d80 ("bnxt_en: Centralize logic to reserve rings.") + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit cb4d1d6261453677feb54e7a09c23fc7648dd6bc +Author: Kshitij Soni +Date: Sun Feb 12 19:18:11 2017 -0500 + + bnxt_en: Retry failed NVM_INSTALL_UPDATE with defragmentation flag. + + If the HWRM_NVM_INSTALL_UPDATE command fails with the error code + NVM_INSTALL_UPDATE_CMD_ERR_CODE_FRAG_ERR, retry the command with + a new flag to allow defragmentation. Since we are checking the + response for error code, we also need to take the mutex until + we finish reading the response. + + Signed-off-by: Kshitij Soni + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit bac9a7e0f5d6da82478d5e0a2a236158f42d5757 +Author: Michael Chan +Date: Sun Feb 12 19:18:10 2017 -0500 + + bnxt_en: Update to firmware interface spec 1.7.0. + + The new spec has NVRAM defragmentation support which will be used in + the next patch to improve ethtool flash operation. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 38413406277fd060f46855ad527f6f8d4cf2652d +Author: Michael Chan +Date: Mon Feb 6 16:55:43 2017 -0500 + + bnxt_en: Add support for XDP_TX action. + + Add dedicated transmit function and transmit completion handler for + XDP. The XDP transmit logic and completion logic are different than + regular TX ring. The TX buffer is recycled back to the RX ring when + it completes. + + v3: Improved the buffer recyling scheme for XDP_TX. + + v2: Add trace_xdp_exception(). + Add dma_sync. + + Signed-off-by: Michael Chan + Tested-by: Andy Gospodarek + Signed-off-by: David S. Miller + +commit c6d30e8391b85e00eb544e6cf047ee0160ee9938 +Author: Michael Chan +Date: Mon Feb 6 16:55:42 2017 -0500 + + bnxt_en: Add basic XDP support. + + Add basic ndo_xdp support to setup and query program, configure the NIC + to run in rx page mode, and support XDP_PASS, XDP_DROP, XDP_ABORTED + actions only. + + v3: Pass modified offset and length to stack for XDP_PASS. + Remove Kconfig option. + + v2: Added trace_xdp_exception() + Added dma_syncs. + Added XDP headroom support. + + Signed-off-by: Michael Chan + Tested-by: Andy Gospodarek + Signed-off-by: David S. Miller + +commit fa3e93e86cc3d1809fba67cb138883ed4bb74a5f +Author: Michael Chan +Date: Mon Feb 6 16:55:41 2017 -0500 + + bnxt_en: Refactor tx completion path. + + XDP_TX requires a different function to handle completion. Add a + function pointer to handle tx completion logic. Regular TX rings + will be assigned the current bnxt_tx_int() for the ->tx_int() + function pointer. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 5f4492493e75dafc5cbb96eabe0f146c2ffb1e3d +Author: Michael Chan +Date: Mon Feb 6 16:55:40 2017 -0500 + + bnxt_en: Add a set of TX rings to support XDP. + + Add logic for an extra set of TX rings for XDP. If enabled, this + set of TX rings equals the number of RX rings and shares the same + IRQ as the RX ring set. A new field bp->tx_nr_rings_xdp is added + to keep track of these TX XDP rings. Adjust all other relevant functions + to handle bp->tx_nr_rings_xdp. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit a960dec98861b009b4227d2ae3b94a142c83eb96 +Author: Michael Chan +Date: Mon Feb 6 16:55:39 2017 -0500 + + bnxt_en: Add tx ring mapping logic. + + To support XDP_TX, we need to add a set of dedicated TX rings, each + associated with the NAPI of an RX ring. To assign XDP rings and regular + rings in a flexible way, we add a bp->tx_ring_map[] array to do the + remapping. The netdev txq index is stored in the new field txq_index + so that we can retrieve the netdev txq when handling TX completions. + In this patch, before we introduce XDP_TX, the mapping is 1:1. + + v2: Fixed a bug in bnxt_tx_int(). + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit d1e7925e6d80ce5f9ef6deb8f3cec7526f5c443c +Author: Michael Chan +Date: Mon Feb 6 16:55:38 2017 -0500 + + bnxt_en: Centralize logic to reserve rings. + + Currently, bnxt_setup_tc() and bnxt_set_channels() have similar and + duplicated code to check and reserve rx and tx rings. Add a new + function bnxt_reserve_rings() to centralize the logic. This will + make it easier to add XDP_TX support which requires allocating a + new set of TX rings. + + Also, the tx ring checking logic in bnxt_setup_msix() can be removed. + The rings have been reserved before hand. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 4e5dbbda4c40a239e2ed4bbc98f2aa320e4dcca2 +Author: Michael Chan +Date: Mon Feb 6 16:55:37 2017 -0500 + + bnxt_en: Use event bit map in RX path. + + In the current code, we have separate rx_event and agg_event parameters + to keep track of rx and aggregation events. Combine these events into + an u8 event mask with different bits defined for different events. This + way, it is easier to expand the logic to include XDP tx events. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit c61fb99cae51958a9096d8540c8c05e74cfa7e59 +Author: Michael Chan +Date: Mon Feb 6 16:55:36 2017 -0500 + + bnxt_en: Add RX page mode support. + + This mode is to support XDP. In this mode, each rx ring is configured + with page sized buffers for linear placement of each packet. MTU will be + restricted to what the page sized buffers can support. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit b3dba77cf0acb6e44b368979026df975658332bc +Author: Michael Chan +Date: Mon Feb 6 16:55:35 2017 -0500 + + bnxt_en: Parameterize RX buffer offsets. + + Convert the global constants BNXT_RX_OFFSET and BNXT_RX_DMA_OFFSET to + device parameters. This will make it easier to support XDP with + headroom support which requires different RX buffer offsets. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 745fc05c9db1f17da076861c7f57507e13f28a3a +Author: Michael Chan +Date: Mon Feb 6 16:55:34 2017 -0500 + + bnxt_en: Add bp->rx_dir field for rx buffer DMA direction. + + When driver is running in XDP mode, rx buffers are DMA mapped as + DMA_BIDIRECTIONAL. Add a field so the code will map/unmap rx buffers + according to this field. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 11cd119d31a71b37c2362fc621f225e2aa12aea1 +Author: Michael Chan +Date: Mon Feb 6 16:55:33 2017 -0500 + + bnxt_en: Don't use DEFINE_DMA_UNMAP_ADDR to store DMA address in RX path. + + To support XDP_TX, we need the RX buffer's DMA address to transmit the + packet. Convert the DMA address field to a permanent field in + bnxt_sw_rx_bd. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 6bb19474391d17954fee9a9997ecca25b35dfd46 +Author: Michael Chan +Date: Mon Feb 6 16:55:32 2017 -0500 + + bnxt_en: Refactor rx SKB function. + + Minor refactoring of bnxt_rx_skb() so that it can easily be replaced by + a new function that handles packets in a single page. Also, use a + function pointer bp->rx_skb_func() to switch to a new function when + we add the new mode in the next patch. + + Add a new field data_ptr that points to the packet data in the + bnxt_sw_rx_bd structure. The original data field is changed to void + pointer so that it can either hold the kmalloc'ed data or a page + pointer. + + The last parameter of bnxt_rx_skb() which was the length parameter is + changed to include the payload offset of the packet in the upper 16 bit. + The offset is needed to support the rx page mode and is not used in + this existing function. + + v3: Added a new data_ptr parameter to bp->rx_skb_func(). The caller + has the option to modify the starting address of the packet. This + will be needed when XDP with headroom support is added. + + v2: Changed the name of the last parameter to offset_and_len to make the + code more clear. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 6ad20165d376fa07919a70e4f43dfae564601829 +Author: Eric Dumazet +Date: Mon Jan 30 08:22:01 2017 -0800 + + drivers: net: generalize napi_complete_done() + + napi_complete_done() allows to opt-in for gro_flush_timeout, + added back in linux-3.19, commit 3b47d30396ba + ("net: gro: add a per device gro flush timer") + + This allows for more efficient GRO aggregation without + sacrifying latencies. + + Signed-off-by: Eric Dumazet + Signed-off-by: David S. Miller + +commit 90c694bb71819fb5bd3501ac397307d7e41ddeca +Author: Michael Chan +Date: Wed Jan 25 02:55:09 2017 -0500 + + bnxt_en: Fix RTNL lock usage on bnxt_get_port_module_status(). + + bnxt_get_port_module_status() calls bnxt_update_link() which expects + RTNL to be held. In bnxt_sp_task() that does not hold RTNL, we need to + call it with a prior call to bnxt_rtnl_lock_sp() and the call needs to + be moved to the end of bnxt_sp_task(). + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 0eaa24b971ae251ae9d3be23f77662a655532063 +Author: Michael Chan +Date: Wed Jan 25 02:55:08 2017 -0500 + + bnxt_en: Fix RTNL lock usage on bnxt_update_link(). + + bnxt_update_link() is called from multiple code paths. Most callers, + such as open, ethtool, already hold RTNL. Only the caller bnxt_sp_task() + does not. So it is a bug to take RTNL inside bnxt_update_link(). + + Fix it by removing the RTNL inside bnxt_update_link(). The function + now expects the caller to always hold RTNL. + + In bnxt_sp_task(), call bnxt_rtnl_lock_sp() before calling + bnxt_update_link(). We also need to move the call to the end of + bnxt_sp_task() since it will be clearing the BNXT_STATE_IN_SP_TASK bit. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit a551ee94ea723b4af9b827c7460f108bc13425ee +Author: Michael Chan +Date: Wed Jan 25 02:55:07 2017 -0500 + + bnxt_en: Fix bnxt_reset() in the slow path task. + + In bnxt_sp_task(), we set a bit BNXT_STATE_IN_SP_TASK so that bnxt_close() + will synchronize and wait for bnxt_sp_task() to finish. Some functions + in bnxt_sp_task() require us to clear BNXT_STATE_IN_SP_TASK and then + acquire rtnl_lock() to prevent race conditions. + + There are some bugs related to this logic. This patch refactors the code + to have common bnxt_rtnl_lock_sp() and bnxt_rtnl_unlock_sp() to handle + the RTNL and the clearing/setting of the bit. Multiple functions will + need the same logic. We also need to move bnxt_reset() to the end of + bnxt_sp_task(). Functions that clear BNXT_STATE_IN_SP_TASK must be the + last functions to be called in bnxt_sp_task(). The common scheme will + handle the condition properly. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 719ca8111402aa6157bd83a3c966d184db0d8956 +Author: Michael Chan +Date: Tue Jan 17 22:07:19 2017 -0500 + + bnxt_en: Fix "uninitialized variable" bug in TPA code path. + + In the TPA GRO code path, initialize the tcp_opt_len variable to 0 so + that it will be correct for packets without TCP timestamps. The bug + caused the SKB fields to be incorrectly set up for packets without + TCP timestamps, leading to these packets being rejected by the stack. + + Reported-by: Andy Gospodarek + Acked-by: Andy Gospodarek + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 2f5938467bd7f34e59a1d6d3809f5970f62e194b +Author: Michael Chan +Date: Fri Jan 13 01:32:04 2017 -0500 + + bnxt_en: Add the ulp_sriov_cfg hooks for bnxt_re RDMA driver. + + Add the ulp_sriov_cfg callbacks when the number of VFs is changing. This + allows the RDMA driver to provision RDMA resources for the VFs. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 5ad2cbeed74bd1e89ac4ba14288158ec7eb167da +Author: Michael Chan +Date: Fri Jan 13 01:32:03 2017 -0500 + + bnxt_en: Add support for ethtool -p. + + Add LED blinking code to support ethtool -p on the PF. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit f183886c0d798ca3cf0a51e8cab3c1902fbd1e8b +Author: Michael Chan +Date: Fri Jan 13 01:32:02 2017 -0500 + + bnxt_en: Update to firmware interface spec to 1.6.1. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 341138c3e6afa8e77f9f3e773d72b37022dbcee8 +Author: Michael Chan +Date: Fri Jan 13 01:32:01 2017 -0500 + + bnxt_en: Clear TPA flags when BNXT_FLAG_NO_AGG_RINGS is set. + + Commit bdbd1eb59c56 ("bnxt_en: Handle no aggregation ring gracefully.") + introduced the BNXT_FLAG_NO_AGG_RINGS flag. For consistency, + bnxt_set_tpa_flags() should also clear TPA flags when there are no + aggregation rings. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit b742995445fbac874f5fe19ce2afc76c7a6ac2cf +Author: Michael Chan +Date: Fri Jan 13 01:32:00 2017 -0500 + + bnxt_en: Fix compiler warnings when CONFIG_RFS_ACCEL is not defined. + + CC [M] drivers/net/ethernet/broadcom/bnxt/bnxt.o + drivers/net/ethernet/broadcom/bnxt/bnxt.c:4947:21: warning: ‘bnxt_get_max_func_rss_ctxs’ defined but not used [-Wunused-function] + static unsigned int bnxt_get_max_func_rss_ctxs(struct bnxt *bp) + ^ + CC [M] drivers/net/ethernet/broadcom/bnxt/bnxt.o + drivers/net/ethernet/broadcom/bnxt/bnxt.c:4956:21: warning: ‘bnxt_get_max_func_vnics’ defined but not used [-Wunused-function] + static unsigned int bnxt_get_max_func_vnics(struct bnxt *bp) + ^ + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 5944701df90d9577658e2354cc27c4ceaeca30fe +Author: stephen hemminger +Date: Fri Jan 6 19:12:53 2017 -0800 + + net: remove useless memset's in drivers get_stats64 + + In dev_get_stats() the statistic structure storage has already been + zeroed. Therefore network drivers do not need to call memset() again. + + Signed-off-by: Stephen Hemminger + Signed-off-by: David S. Miller + +commit bc1f44709cf27fb2a5766cadafe7e2ad5e9cb221 +Author: stephen hemminger +Date: Fri Jan 6 19:12:52 2017 -0800 + + net: make ndo_get_stats64 a void function + + The network device operation for reading statistics is only called + in one place, and it ignores the return value. Having a structure + return value is potentially confusing because some future driver could + incorrectly assume that the return value was used. + + Fix all drivers with ndo_get_stats64 to have a void function. + + Signed-off-by: Stephen Hemminger + Signed-off-by: David S. Miller + +commit bdbd1eb59c565c56a74d21076e2ae8706de00ecd +Author: Michael Chan +Date: Thu Dec 29 12:13:43 2016 -0500 + + bnxt_en: Handle no aggregation ring gracefully. + + The current code assumes that we will always have at least 2 rx rings, 1 + will be used as an aggregation ring for TPA and jumbo page placements. + However, it is possible, especially on a VF, that there is only 1 rx + ring available. In this scenario, the current code will fail to initialize. + To handle it, we need to properly set up only 1 ring without aggregation. + Set a new flag BNXT_FLAG_NO_AGG_RINGS for this condition and add logic to + set up the chip to place RX data linearly into a single buffer per packet. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 486b5c22ea1d35e00e90dd79a32a9ee530b18915 +Author: Michael Chan +Date: Thu Dec 29 12:13:42 2016 -0500 + + bnxt_en: Set default completion ring for async events. + + With the added support for the bnxt_re RDMA driver, both drivers can be + allocating completion rings in any order. The firmware does not know + which completion ring should be receiving async events. Add an + extra step to tell firmware the completion ring number for receiving + async events after bnxt_en allocates the completion rings. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 391be5c2736456f032fe0265031ecfe17aee84a0 +Author: Michael Chan +Date: Thu Dec 29 12:13:41 2016 -0500 + + bnxt_en: Implement new scheme to reserve tx rings. + + In order to properly support TX rate limiting in SRIOV VF functions or + NPAR functions, firmware needs better control over tx ring allocations. + The new scheme requires the driver to reserve the number of tx rings + and to query to see if the requested number of tx rings is reserved. + The driver will use the new scheme when the firmware interface spec is + 1.6.1 or newer. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit dda0e7465f040ed814d4a5c98c6bf042e59cba69 +Author: Michael Chan +Date: Thu Dec 29 12:13:40 2016 -0500 + + bnxt_en: Add IPV6 hardware RFS support. + + Accept ipv6 flows in .ndo_rx_flow_steer() and support ETHTOOL_GRXCLSRULE + ipv6 flows. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 8427af811a2fcbbf0c71a4b1f904f2442abdcf39 +Author: Michael Chan +Date: Thu Dec 29 12:13:39 2016 -0500 + + bnxt_en: Assign additional vnics to VFs. + + Assign additional vnics to VFs whenever possible so that NTUPLE can be + supported on the VFs. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit ae10ae740ad2befd92b6f5b2ab39220bce6e5da2 +Author: Michael Chan +Date: Thu Dec 29 12:13:38 2016 -0500 + + bnxt_en: Add new hardware RFS mode. + + The existing hardware RFS mode uses one hardware RSS context block + per ring just to calculate the RSS hash. This is very wasteful and + prevents VF functions from using it. The new hardware mode shares + the same hardware RSS context for RSS placement and RFS steering. + This allows VFs to enable RFS. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 8079e8f107bf02e1e5ece89239dd2fb475a4735f +Author: Michael Chan +Date: Thu Dec 29 12:13:37 2016 -0500 + + bnxt_en: Refactor code that determines RFS capability. + + Add function bnxt_rfs_supported() that determines if the chip supports + RFS. Refactor the existing function bnxt_rfs_capable() that determines + if run-time conditions support RFS. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 8fdefd63c203d9b2955d679704f4ed92bf40752c +Author: Michael Chan +Date: Thu Dec 29 12:13:36 2016 -0500 + + bnxt_en: Add function to get vnic capability. + + The new vnic RSS capability will enhance NTUPLE support, to be added + in subsequent patches. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 5910906ca9ee32943f67db24917f78a9ad1087db +Author: Michael Chan +Date: Thu Dec 29 12:13:35 2016 -0500 + + bnxt_en: Refactor TPA code path. + + Call tcp_gro_complete() in the common code path instead of the chip- + specific method. The newer 5731x method is missing the call. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 68515a186cf8a8f97956eaea5829277752399f58 +Author: Michael Chan +Date: Thu Dec 29 12:13:34 2016 -0500 + + bnxt_en: Fix and clarify link_info->advertising. + + The advertising field is closely related to the auto_link_speeds field. + The former is the user setting while the latter is the firmware setting. + Both should be u16. We should use the advertising field in + bnxt_get_link_ksettings because the auto_link_speeds field may not + be updated with the latest from the firmware yet. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 9d8bc09766f1a229b2d204c713a1cfc6c7fa1bb1 +Author: Michael Chan +Date: Thu Dec 29 12:13:33 2016 -0500 + + bnxt_en: Improve the IRQ disable sequence during shutdown. + + The IRQ is disabled by writing to the completion ring doorbell. This + should be done before the hardware completion ring is freed for correctness. + The current code disables IRQs after all the completion rings are freed. + + Fix it by calling bnxt_disable_int_sync() before freeing the completion + rings. Rearrange the code to avoid forward declaration. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit e7b9569102995ebc26821789628eef45bd9840d8 +Author: Michael Chan +Date: Thu Dec 29 12:13:32 2016 -0500 + + bnxt_en: Use napi_complete_done() + + For better busy polling and GRO support. Do not re-arm IRQ if + napi_complete_done() returns false. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit b356a2e729cec145a648d22ba5686357c009da25 +Author: Michael Chan +Date: Thu Dec 29 12:13:31 2016 -0500 + + bnxt_en: Remove busy poll logic in the driver. + + Use native NAPI polling instead. The next patch will complete the work + by switching to use napi_complete_done() + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit a588e4580a7ecb715dab8bf09725b97aa0e0e3a0 +Author: Michael Chan +Date: Wed Dec 7 00:26:21 2016 -0500 + + bnxt_en: Add interface to support RDMA driver. + + Since the network driver and RDMA driver operate on the same PCI function, + we need to create an interface to allow the RDMA driver to share resources + with the network driver. + + 1. Create a new bnxt_en_dev struct which will be returned by + bnxt_ulp_probe() upon success. After that, all calls from the RDMA driver + to bnxt_en will pass a pointer to this struct. + + 2. This struct contains additional function pointers to register, request + msix, send fw messages, register for async events. + + 3. If the RDMA driver wants to enable RDMA on the function, it needs to + call the function pointer bnxt_register_device(). A ulp_ops structure + is passed for RCU protected upcalls from bnxt_en to the RDMA driver. + + 4. The RDMA driver can call firmware APIs using the bnxt_send_fw_msg() + function pointer. + + 5. 1 stats context is reserved when the RDMA driver registers. MSIX + and completion rings are reserved when the RDMA driver calls + bnxt_request_msix() function pointer. + + 6. When the RDMA driver calls bnxt_unregister_device(), all RDMA resources + will be cleaned up. + + v2: Fixed 2 uninitialized variable warnings. + + Signed-off-by: Somnath Kotur + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit a1653b13f14c714f9bfd5e10c603a37c3bcba7b6 +Author: Michael Chan +Date: Wed Dec 7 00:26:20 2016 -0500 + + bnxt_en: Refactor the driver registration function with firmware. + + The driver register function with firmware consists of passing version + information and registering for async events. To support the RDMA driver, + the async events that we need to register may change. Separate the + driver register function into 2 parts so that we can just update the + async events for the RDMA driver. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit e4060d306b5196966d74e05dee48e6c3a52aaad4 +Author: Michael Chan +Date: Wed Dec 7 00:26:19 2016 -0500 + + bnxt_en: Reserve RDMA resources by default. + + If the device supports RDMA, we'll setup network default rings so that + there are enough minimum resources for RDMA, if possible. However, the + user can still increase network rings to the max if he wants. The actual + RDMA resources won't be reserved until the RDMA driver registers. + + v2: Fix compile warning when BNXT_CONFIG_SRIOV is not set. + + Signed-off-by: Somnath Kotur + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 7b08f661ab80e87dcdba7ab9a460fe2c9d08bf5b +Author: Michael Chan +Date: Wed Dec 7 00:26:18 2016 -0500 + + bnxt_en: Improve completion ring allocation for VFs. + + All available remaining completion rings not used by the PF should be + made available for the VFs so that there are enough rings in the VF to + support RDMA. The earlier workaround code of capping the rings by the + statistics context is removed. + + When SRIOV is disabled, call a new function bnxt_restore_pf_fw_resources() + to restore FW resources. Later on we need to add some logic to account + for RDMA resources. + + Signed-off-by: Somnath Kotur + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit aa8ed021ab515a93f2a052e9cc80320882889698 +Author: Michael Chan +Date: Wed Dec 7 00:26:17 2016 -0500 + + bnxt_en: Move function reset to bnxt_init_one(). + + Now that MSIX is enabled in bnxt_init_one(), resources may be allocated by + the RDMA driver before the network device is opened. So we cannot do + function reset in bnxt_open() which will clear all the resources. + + The proper place to do function reset now is in bnxt_init_one(). + If we get AER, we'll do function reset as well. + + Signed-off-by: Somnath Kotur + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 7809592d3e2ec79cd1feab0cc96169d22f6ffee1 +Author: Michael Chan +Date: Wed Dec 7 00:26:16 2016 -0500 + + bnxt_en: Enable MSIX early in bnxt_init_one(). + + To better support the new RDMA driver, we need to move pci_enable_msix() + from bnxt_open() to bnxt_init_one(). This way, MSIX vectors are available + to the RDMA driver whether the network device is up or down. + + Part of the existing bnxt_setup_int_mode() function is now refactored into + a new bnxt_init_int_mode(). bnxt_init_int_mode() is called during + bnxt_init_one() to enable MSIX. The remaining logic in + bnxt_setup_int_mode() to map the IRQs to the completion rings is called + during bnxt_open(). + + v2: Fixed compile warning when CONFIG_BNXT_SRIOV is not set. + + Signed-off-by: Somnath Kotur + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 33c2657eb688a063ab9cbe11fd4d18c93c7945e1 +Author: Michael Chan +Date: Wed Dec 7 00:26:15 2016 -0500 + + bnxt_en: Add bnxt_set_max_func_irqs(). + + By refactoring existing code into this new function. The new function + will be used in subsequent patches. + + v2: Fixed compile warning when CONFIG_BNXT_SRIOV is not set. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 89aa8445cd4e8c2556c40d42dd0ceb2cbb96ba78 +Author: Pan Bian +Date: Sat Dec 3 17:56:17 2016 +0800 + + netdev: broadcom: propagate error code + + Function bnxt_hwrm_stat_ctx_alloc() always returns 0, even if the call + to _hwrm_send_message() fails. It may be better to propagate the errors + to the caller of bnxt_hwrm_stat_ctx_alloc(). + + Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=188661 + + Signed-off-by: Pan Bian + Acked-by: Michael Chan + Signed-off-by: David S. Miller + +commit c77192f2042537b1e0e5f520db91e4d28778195f +Author: Michael Chan +Date: Fri Dec 2 21:17:18 2016 -0500 + + bnxt_en: Add PFC statistics. + + Report PFC statistics to ethtool -S and DCBNL. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 7df4ae9fe85567a1710048da8229bd85e0da9df7 +Author: Michael Chan +Date: Fri Dec 2 21:17:17 2016 -0500 + + bnxt_en: Implement DCBNL to support host-based DCBX. + + Support only IEEE DCBX initially. Add IEEE DCBNL ops and functions to + get and set the hardware DCBX parameters. The DCB code is conditional on + Kconfig CONFIG_BNXT_DCB. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 87c374ded0b2cfe50bb1e7648a4ca06df13fa399 +Author: Michael Chan +Date: Fri Dec 2 21:17:16 2016 -0500 + + bnxt_en: Update firmware header file to latest 1.6.0. + + Latest interface has the latest DCB command structs. Get and store the + max number of lossless TCs the hardware can support. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit c5e3deb8a38453037b89e0b0485d3b031896e8eb +Author: Michael Chan +Date: Fri Dec 2 21:17:15 2016 -0500 + + bnxt_en: Re-factor bnxt_setup_tc(). + + Add a new function bnxt_setup_mq_tc() to handle MQPRIO. This new function + will be called during ETS setup when we add DCBNL in the next patch. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 57aac71b3e9ed890cf2219dd980c36f859b43d6a +Author: Christophe Jaillet +Date: Tue Nov 22 06:14:40 2016 +0100 + + bnxt_en: Fix a VXLAN vs GENEVE issue + + Knowing that: + #define TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_VXLAN (0x1UL << 0) + #define TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_GENEVE (0x5UL << 0) + and that 'bnxt_hwrm_tunnel_dst_port_alloc()' is only called with one of + these 2 constants, the TUNNEL_DST_PORT_ALLOC_REQ_TUNNEL_TYPE_GENEVE can not + trigger. + + Replace the bit test that overlap by an equality test, just as in + 'bnxt_hwrm_tunnel_dst_port_free()' above. + + Signed-off-by: Christophe JAILLET + Acked-by: Michael Chan + Signed-off-by: David S. Miller + +commit e5f6f564fd191d365fcd775c06a732a488205588 +Author: Eric Dumazet +Date: Wed Nov 16 06:31:52 2016 -0800 + + bnxt: add a missing rcu synchronization + + Add a missing synchronize_net() call to avoid potential use after free, + since we explicitly call napi_hash_del() to factorize the RCU grace + period. + + Fixes: c0c050c58d84 ("bnxt_en: New Broadcom ethernet driver.") + Signed-off-by: Eric Dumazet + Cc: Michael Chan + Acked-by: Michael Chan + Signed-off-by: David S. Miller + +commit a011952a1a465258ab006a8613a41aa5367d2274 +Author: Michael Chan +Date: Wed Nov 16 21:13:10 2016 -0500 + + bnxt_en: Add ethtool -n|-N rx-flow-hash support. + + To display and modify the RSS hash. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 87da7f796d5e44311ea69afb6f4220d43a89382e +Author: Michael Chan +Date: Wed Nov 16 21:13:09 2016 -0500 + + bnxt_en: Add UDP RSS support for 57X1X chips. + + The newer chips have proper support for 4-tuple UDP RSS. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 286ef9d64ea7435a1e323d12b44a309e15cbff0e +Author: Michael Chan +Date: Wed Nov 16 21:13:08 2016 -0500 + + bnxt_en: Enhance autoneg support. + + On some dual port NICs, the speed setting on one port can affect the + available speed on the other port. Add logic to detect these changes + and adjust the advertised speed settings when necessary. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 16d663a69f4a1f3534e780e35d50142b98cf1279 +Author: Michael Chan +Date: Wed Nov 16 21:13:07 2016 -0500 + + bnxt_en: Update firmware interface spec to 1.5.4. + + Use the new FORCE_LINK_DWN bit to shutdown link during close. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 73b9bad63ae3c902ce64221d10a0d371d059748d +Author: Michael Chan +Date: Fri Nov 11 00:11:43 2016 -0500 + + bnxt_en: Fix VF virtual link state. + + If the physical link is down and the VF virtual link is set to "enable", + the current code does not always work. If the link is down but the + cable is attached, the firmware returns LINK_SIGNAL instead of + NO_LINK. The current code is treating LINK_SIGNAL as link up. + The fix is to treat link as down when the link_status != LINK. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 3ffb6a39b751b635a0c50b650064c38b8d371ef2 +Author: Michael Chan +Date: Fri Nov 11 00:11:42 2016 -0500 + + bnxt_en: Fix ring arithmetic in bnxt_setup_tc(). + + The logic is missing the check on whether the tx and rx rings are sharing + completion rings or not. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit ef8d759b5251ee9d6784fe53d90220bd91ee477f +Author: Eric Dumazet +Date: Tue Nov 8 11:06:53 2016 -0800 + + bnxt_en: do not call napi_hash_add() + + This is automatically done from netif_napi_add(), and we want to not + export napi_hash_add() anymore in the following patch. + + Signed-off-by: Eric Dumazet + Cc: Michael Chan + Acked-by: Michael Chan + Signed-off-by: David S. Miller + +commit e1c6dccaf3af291488fbad155d7ee6bc29db262a +Author: Jarod Wilson +Date: Mon Oct 17 15:54:04 2016 -0400 + + ethernet/broadcom: use core min/max MTU checking + + tg3: min_mtu 60, max_mtu 9000/1500 + + bnxt: min_mtu 60, max_mtu 9000 + + bnx2x: min_mtu 46, max_mtu 9600 + - Fix up ETH_OVREHEAD -> ETH_OVERHEAD while we're in here, remove + duplicated defines from bnx2x_link.c. + + bnx2: min_mtu 46, max_mtu 9000 + - Use more standard ETH_* defines while we're at it. + + bcm63xx_enet: min_mtu 46, max_mtu 2028 + - compute_hw_mtu was made largely pointless, and thus merged back into + bcm_enet_change_mtu. + + b44: min_mtu 60, max_mtu 1500 + + CC: netdev@vger.kernel.org + CC: Michael Chan + CC: Sony Chacko + CC: Ariel Elior + CC: Dept-HSGLinuxNICDev@qlogic.com + CC: Siva Reddy Kallam + CC: Prashant Sreedharan + Signed-off-by: Jarod Wilson + Signed-off-by: David S. Miller + +commit 79aab093a0b5370d7fc4e99df75996f4744dc03f +Author: Moshe Shemesh +Date: Thu Sep 22 12:11:15 2016 +0300 + + net: Update API for VF vlan protocol 802.1ad support + + Introduce new rtnl UAPI that exposes a list of vlans per VF, giving + the ability for user-space application to specify it for the VF, as an + option to support 802.1ad. + We adjusted IP Link tool to support this option. + + For future use cases, the new UAPI supports multiple vlans. For now we + limit the list size to a single vlan in kernel. + Add IFLA_VF_VLAN_LIST in addition to IFLA_VF_VLAN to keep backward + compatibility with older versions of IP Link tool. + + Add a vlan protocol parameter to the ndo_set_vf_vlan callback. + We kept 802.1Q as the drivers' default vlan protocol. + Suitable ip link tool command examples: + Set vf vlan protocol 802.1ad: + ip link set eth0 vf 1 vlan 100 proto 802.1ad + Set vf to VST (802.1Q) mode: + ip link set eth0 vf 1 vlan 100 proto 802.1Q + Or by omitting the new parameter + ip link set eth0 vf 1 vlan 100 + + Signed-off-by: Moshe Shemesh + Signed-off-by: Tariq Toukan + Signed-off-by: David S. Miller + +commit 878786d95e07ce2f5fb6e3cd8a6c2ed320339196 +Author: Rob Swindell +Date: Tue Sep 20 03:36:33 2016 -0400 + + bnxt_en: Fix build error for kernesl without RTC-LIB + + bnxt_hwrm_fw_set_time() now returns -EOPNOTSUPP when built for kernel + without RTC_LIB. Setting the firmware time is not critical to the + successful completion of the firmware update process. + + Signed-off-by: Rob Swindell + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 350a714960eb8a980c913c9be5a96bb18b2fe9da +Author: Eddie Wai +Date: Mon Sep 19 03:58:09 2016 -0400 + + bnxt_en: Fixed the VF link status after a link state change + + The VF link state can be changed via the 'ip link set' cmd. + Currently, the new link state does not take effect immediately. + + The fix is for the PF to send a link change async event to the + designated VF after a VF link state change. This async event will + trigger the VF to update the link status. + + Signed-off-by: Eddie Wai + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit ae8e98a6fa7a73917196c507e43414ea96b6a0fc +Author: Deepak Khungar +Date: Mon Sep 19 03:58:08 2016 -0400 + + bnxt_en: Support for "ethtool -r" command + + Restart autoneg if autoneg is enabled. + + Signed-off-by: Deepak Khungar + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 4ffcd582301bd020b1f9d00c55473af305ec19b5 +Author: Michael Chan +Date: Mon Sep 19 03:58:07 2016 -0400 + + bnxt_en: Pad TX packets below 52 bytes. + + The hardware has a limitation that it won't pass host to BMC loopback + packets below 52-bytes. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 001154eb242b5a6667b74e5cf20873fb75f1b9d3 +Author: Michael Chan +Date: Mon Sep 19 03:58:06 2016 -0400 + + bnxt_en: Call firmware to approve the random VF MAC address. + + After generating the random MAC address for VF, call the firmware to + approve it. This step serves 2 purposes. Some hypervisor (e.g. ESX) + wants to approve the MAC address. 2nd, the call will setup the + proper forwarding database in the internal switch. + + We need to unlock the hwrm_cmd_lock mutex before calling bnxt_approve_mac(). + We can do that because we are at the end of the function and all the + previous firmware response data has been copied. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 7cc5a20e38fcaf395ac59e7ed6c3decb575a0dc7 +Author: Michael Chan +Date: Mon Sep 19 03:58:05 2016 -0400 + + bnxt_en: Re-arrange bnxt_hwrm_func_qcaps(). + + Re-arrange the code so that the generation of the random MAC address for + the VF is at the end of the function. The next patch will add one more step + to call bnxt_approve_mac() to get the firmware to approve the random MAC + address. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 47f8e8b9bbbbe00740786bd1da0d5097d45ba46b +Author: Michael Chan +Date: Mon Sep 19 03:58:04 2016 -0400 + + bnxt_en: Fix ethtool -l|-L inconsistent channel counts. + + The existing code is inconsistent in reporting and accepting the combined + channel count. bnxt_get_channels() reports maximum combined as the + maximum rx count. bnxt_set_channels() accepts combined count that + cannot be bigger than max rx or max tx. + + For example, if max rx = 2 and max tx = 1, we report max supported + combined to be 2. But if the user tries to set combined to 2, it will + fail because 2 is bigger than max tx which is 1. + + Fix the code to be consistent. Max allowed combined = max(max_rx, max_tx). + We will accept a combined channel count <= max(max_rx, max_tx). + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 5ac67d8bc753b122175e682274599338b3ee7d42 +Author: Rob Swindell +Date: Mon Sep 19 03:58:03 2016 -0400 + + bnxt_en: Added support for Secure Firmware Update + + Using Ethtool flashdev command, entire NVM package (*.pkg) files + may now be staged into the "update" area of the NVM and subsequently + verified and installed by the firmware using the newly introduced + command: NVM_INSTALL_UPDATE. + + We also introduce use of the new firmware command FW_SET_TIME so that the + NVM-resident package installation log contains valid time-stamps. + + Signed-off-by: Rob Swindell + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 441cabbbf1bd0b99e283c9116fe430e53ee67a4a +Author: Michael Chan +Date: Mon Sep 19 03:58:02 2016 -0400 + + bnxt_en: Update to firmware interface spec 1.5.1. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit adbc830545003c4b7494c903654bea22e5a66bb4 +Author: Michael Chan +Date: Mon Sep 19 03:58:01 2016 -0400 + + bnxt_en: Simplify PCI device names and add additinal PCI IDs. + + Remove "Single-port/Dual-port" from the device names. Dual-port devices + will appear as 2 separate devices, so no need to call each a dual-port + device. Use a more generic name for VF devices belonging to the same + chip fanmily. Add some remaining NPAR device IDs. + + Signed-off-by: David Christensen + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 8d6be8b627389c6dc7e0ea2455a7542c8a2a16a7 +Author: Michael Chan +Date: Mon Sep 19 03:58:00 2016 -0400 + + bnxt_en: Use RSS flags defined in the bnxt_hsi.h file. + + And remove redundant definitions of the same flags. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 9d13744bb75078175ab49408f2abb980e4dbccc9 +Author: Michael Chan +Date: Mon Sep 5 01:57:35 2016 -0400 + + bnxt_en: Fix TX push operation on ARM64. + + There is a code path where we are calling __iowrite64_copy() on + an address that is not 64-bit aligned. This causes an exception on + some architectures such as arm64. Fix that code path by using + __iowrite32_copy(). + + Reported-by: JD Zheng + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 1f681688aaf1126df981615064a68a0dced458ef +Author: Michael Chan +Date: Mon Jul 25 12:33:37 2016 -0400 + + bnxt_en: Add new NPAR and dual media device IDs. + + Add 5741X/5731X NPAR device IDs and dual media SFP/10GBase-T device IDs. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit a23049091d57f4bdc47f16fce01c371647d15dd7 +Author: Vasundhara Volam +Date: Mon Jul 25 12:33:36 2016 -0400 + + bnxt_en: Log a message, if enabling NTUPLE filtering fails. + + If there are not enough resources to enable ntuple filtering, + log a warning message. + + v2: Use single message and add missing newline. + + Signed-off-by: Vasundhara Volam + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit a54c4d74989b769014b359e5b66f3e571d903d25 +Author: Michael Chan +Date: Mon Jul 25 12:33:35 2016 -0400 + + bnxt_en: Improve ntuple filters by checking destination MAC address. + + Include the destination MAC address in the ntuple filter structure. The + current code assumes that the destination MAC address is always the MAC + address of the NIC. This may not be true if there are macvlans, for + example. Add destination MAC address checking and configure the filter + correctly using the correct index for the destination MAC address. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit cbce91cad4ee39070bf3c7873767194e4be88e16 +Author: Florian Fainelli +Date: Mon Jul 18 13:02:47 2016 -0700 + + bnxt_en: Remove locking around txr->dev_state + + txr->dev_state was not consistently manipulated with the acquisition of + the per-queue lock, after further inspection the lock does not seem + necessary, either the value is read as BNXT_DEV_STATE_CLOSING or 0. + + Reported-by: coverity (CID 1339583) + Fixes: c0c050c58d840 ("bnxt_en: New Broadcom ethernet driver.") + Signed-off-by: Florian Fainelli + Acked-by: Michael Chan + Signed-off-by: David S. Miller + +commit fa853dda19a1878d2a586de19f02bc9fed052425 +Author: Prashant Sreedharan +Date: Mon Jul 18 07:15:25 2016 -0400 + + bnxt_en: Add BCM58700 PCI device ID for NS2 Nitro. + + A bridge device in NS2 has the same device ID as the ethernet controller. + Add check to avoid probing the bridge device. + + Signed-off-by: Prashant Sreedharan + Signed-off-by: Vasundhara Volam + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit dc52c6c70e0066e9cef886907f820411bebe8e07 +Author: Prashant Sreedharan +Date: Mon Jul 18 07:15:24 2016 -0400 + + bnxt_en: Workaround Nitro A0 RX hardware bug (part 4). + + Allocate special vnic for dropping packets not matching the RX filters. + First vnic is for normal RX packets and the driver will drop all + packets on the 2nd vnic. + + Signed-off-by: Prashant Sreedharan + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 10bbdaf5e4879fd7fc51f25c84d7b10de16cbe0e +Author: Prashant Sreedharan +Date: Mon Jul 18 07:15:23 2016 -0400 + + bnxt_en: Workaround Nitro A0 hardware RX bug (part 3). + + Allocate napi for special vnic, packets arriving on this + napi will simply be dropped and the buffers will be replenished back + to the HW. + + Signed-off-by: Prashant Sreedharan + Signed-off-by: Vasundhara Volam + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 765951938e2fe2e30571ef4a7de6a46659ce4c68 +Author: Prashant Sreedharan +Date: Mon Jul 18 07:15:22 2016 -0400 + + bnxt_en: Workaround Nitro A0 hardware RX bug (part 2). + + The hardware is unable to drop rx packets not matching the RX filters. To + workaround it, we create a special VNIC and configure the hardware to + direct all packets not matching the filters to it. We then setup the + driver to drop packets received on this VNIC. + + This patch creates the infrastructure for this VNIC, reserves a + completion ring, and rx rings. Only shared completion ring mode is + supported. The next 2 patches add a NAPI to handle packets from this + VNIC and the setup of the VNIC. + + Signed-off-by: Prashant Sreedharan + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 94ce9caa0f75b0d56e69550e84d7a1653f0ef3b0 +Author: Prashant Sreedharan +Date: Mon Jul 18 07:15:21 2016 -0400 + + bnxt_en: Workaround Nitro A0 hardware RX bug (part 1). + + Nitro A0 has a hardware bug in the rx path. The workaround is to create + a special COS context as a path for non-RSS (non-IP) packets. Without this + workaround, the chip may stall when receiving RSS and non-RSS packets. + + Add infrastructure to allow 2 contexts (RSS and CoS) per VNIC. Allocate + and configure the CoS context for Nitro A0. + + Signed-off-by: Prashant Sreedharan + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 3e8060fa837630f6fb4acbf59ba588c6df5b2f50 +Author: Prashant Sreedharan +Date: Mon Jul 18 07:15:20 2016 -0400 + + bnxt_en: Add basic support for Nitro in North Star 2. + + Nitro is the embedded version of the ethernet controller in the North + Star 2 SoC. Add basic code to recognize the chip ID and disable + the features (ntuple, TPA, ring and port statistics) not supported on + Nitro A0. + + Signed-off-by: Prashant Sreedharan + Signed-off-by: Vasundhara Volam + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit f3ea3119ad75dde0ba3e8da4653dbd5a189688e5 +Author: Colin Ian King +Date: Fri Jul 8 16:42:48 2016 +0100 + + bnxt_en: initialize rc to zero to avoid returning garbage + + rc is not initialized so it can contain garbage if it is not + set by the call to bnxt_read_sfp_module_eeprom_info. Ensure + garbage is not returned by initializing rc to 0. + + Signed-off-by: Colin Ian King + Acked-by: Michael Chan + Signed-off-by: David S. Miller + +commit 09a7636a5b151670072de60767ddf096dc7bd12e +Author: Dan Carpenter +Date: Thu Jul 7 11:23:09 2016 +0300 + + bnxt: fix a condition + + This code generates as static checker warning because htons(ETH_P_IPV6) + is always true. From the context it looks like the && was intended to + be !=. + + Fixes: 94758f8de037 ('bnxt_en: Add GRO logic for BCM5731X chips.') + Signed-off-by: Dan Carpenter + Acked-by: Michael Chan + Signed-off-by: David S. Miller + +commit 51f307856b60e6b10975654e15bc236aa87b53d7 +Author: Michael Chan +Date: Fri Jul 1 18:46:29 2016 -0400 + + bnxt_en: Allow statistics DMA to be configurable using ethtool -C. + + The allowable range is 0.25 seconds to 1 second interval. Default is + 1 second. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 87027db19c30aafb8ff8d98e1c8802bc920f7b32 +Author: Michael Chan +Date: Fri Jul 1 18:46:28 2016 -0400 + + bnxt_en: Assign netdev->dev_port with port ID. + + This is useful for multi-function devices. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 17c71ac38134c3369479e34911b2035a85566caf +Author: Michael Chan +Date: Fri Jul 1 18:46:27 2016 -0400 + + bnxt_en: Allow promiscuous mode for VF if default VLAN is enabled. + + With a default VLAN, the VF has its own VLAN domain and it can receive + all traffic within that domain. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit dc7aadb5133846f738c59da7af3261335af35ad3 +Author: Vasundhara Volam +Date: Fri Jul 1 18:46:26 2016 -0400 + + bnxt_en: Increase maximum supported MTU to 9500. + + Signed-off-by: Vasundhara Volam + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 550feebf5cb075f7576b3cfe9bcf05abc1ffb8cd +Author: Michael Chan +Date: Fri Jul 1 18:46:25 2016 -0400 + + bnxt_en: Enable MRU enables bit when configuring VNIC MRU. + + For correctness, the MRU enables bit must be set when passing the + MRU to firmware during vnic configuration. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 93e0b4feb90cc651f7fbdfe07c257a969c51d1bb +Author: Rob Swindell +Date: Fri Jul 1 18:46:24 2016 -0400 + + bnxt_en: Add support for firmware updates for additional processors. + + Add support to the Ethtool FLASHDEV command handler for additional + firmware types to cover all the on-chip processors. + + Signed-off-by: Rob Swindell + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 08141e0bf4f6cb82d51930e34e6a8e4af46c776f +Author: Rob Swindell +Date: Fri Jul 1 18:46:23 2016 -0400 + + bnxt_en: Request firmware reset after successful firwmare update + + Upon successful mgmt processor firmware update, request a self + reset upon next PCIe reset (e.g. system reboot). + + Signed-off-by: Rob Swindell + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit a4c363471f2fa2b0f0abbd9f0563b034340585c3 +Author: Rob Swindell +Date: Fri Jul 1 18:46:22 2016 -0400 + + bnxt_en: Add support for updating flash more securely + + To support Secure Firmware Update, we must be able to allocate + a staging area in the Flash. This patch adds support for the + "update" type to tell firmware to do that. + + Signed-off-by: Rob Swindell + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 2a5bedfa674cf81d60a20a76f456778834bd2123 +Author: Michael Chan +Date: Fri Jul 1 18:46:21 2016 -0400 + + bnxt_en: Do function reset on the 1st PF open only. + + Calling the firmware to do function reset on the PF will kill all the VFs. + To prevent that, we call function reset on the 1st PF open before any VF + can be activated. On subsequent PF opens (with possibly some active VFs), + a bit has been set and we'll skip the function reset. VF driver will + always do function reset on every open. If there is an AER event, we will + always do function reset. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit a58a3e68037647de78e3461194239a1104f76003 +Author: Michael Chan +Date: Fri Jul 1 18:46:20 2016 -0400 + + bnxt_en: Update firmware spec. to 1.3.0. + + And update driver version to 1.3.0. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 75362a3fd4e37ff8af1ef5e3d9f2d9d5ccf2f3ab +Author: Michael Chan +Date: Fri Jul 1 18:46:19 2016 -0400 + + bnxt_en: VF/NPAR should return -EOPNOTSUPP for unsupported ethtool ops. + + Returning 0 for doing nothing is confusing to the user. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 7cdd5fc376a51cdf191895c23badd699eddbc901 +Author: Alexander Duyck +Date: Thu Jun 16 12:21:36 2016 -0700 + + bnxt: Move GENEVE support from hard-coded port to using port notifier + + The port number for GENEVE is hard coded into the bnxt driver. This is the + kind of thing we want to avoid going forward. For now I will integrate + this back into the port notifier so that we can change the GENEVE port + number if we need to in the future. + + Signed-off-by: Alexander Duyck + Acked-by: Michael Chan + Signed-off-by: David S. Miller + +commit ad51b8e9f9f4f8172eb7a6219d3005861bfb9a57 +Author: Alexander Duyck +Date: Thu Jun 16 12:21:19 2016 -0700 + + bnxt: Update drivers to support unified UDP encapsulation offload functions + + This patch ends up doing several things. First it updates the driver to + make use of the new unified UDP tunnel offload notifier functions. In + addition I updated the code so that we can work around the bits that were + checking for if VXLAN was enabled since we are now using a notifier based + setup. + + Signed-off-by: Alexander Duyck + Acked-by: Michael Chan + Signed-off-by: David S. Miller + +commit 00c04a928572991d30b2473a7e992c1be8e646f3 +Author: Michael Chan +Date: Mon Jun 13 02:25:38 2016 -0400 + + bnxt_en: Support new ETHTOOL_{G|S}LINKSETTINGS API. + + To fully support 25G and 50G link settings. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 93ed8117336485af2cedb069d28f3d4270fb90a1 +Author: Michael Chan +Date: Mon Jun 13 02:25:37 2016 -0400 + + bnxt_en: Don't allow autoneg on cards that don't support it. + + Some cards do not support autoneg. The current code does not prevent the + user from enabling autoneg with ethtool on such cards, causing confusion. + Firmware provides the autoneg capability information and we just need to + store it in the support_auto_speeds field in bnxt_link_info struct. + The ethtool set_settings() call will check this field before proceeding + with autoneg. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit b24eb6ae7058ca1a42b0532489e5f5796c107d65 +Author: Michael Chan +Date: Mon Jun 13 02:25:36 2016 -0400 + + bnxt_en: Add BCM5731X and BCM5741X device IDs. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 94758f8de037cf5c62eb56287f5d5e937cda8c9b +Author: Michael Chan +Date: Mon Jun 13 02:25:35 2016 -0400 + + bnxt_en: Add GRO logic for BCM5731X chips. + + Add bnxt_gro_func_5731x() to handle GRO packets for this chip. The + completion structures used in the new chip have new data to help determine + the header offsets. The offsets can be off by 4 if the packet is an + internal loopback packet (e.g. from one VF to another VF). Some additional + logic is added to adjust the offsets if it is a loopback packet. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 309369c9b3f6a8665e581d9014f222b602f6845a +Author: Michael Chan +Date: Mon Jun 13 02:25:34 2016 -0400 + + bnxt_en: Refactor bnxt_gro_skb(). + + Newer chips require different logic to handle GRO packets. So refactor + the code so that we can call different functions depending on the chip. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 659c805cc01b3c5a6d972db0408164371a2bab4b +Author: Michael Chan +Date: Mon Jun 13 02:25:33 2016 -0400 + + bnxt_en: Define the supported chip numbers. + + Define all the supported chip numbers and chip categories. Store the + chip_num returned by firmware. If the call to get the version and chip + number fails, we should abort. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit ebcd4eeb2a0b4859d7aaa3308b222a30d51a643f +Author: Michael Chan +Date: Mon Jun 13 02:25:32 2016 -0400 + + bnxt_en: Add PCI device ID for 57404 NPAR devices. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 567b2abe68551781b725b3b739672da41cb92ef0 +Author: Satish Baddipadige +Date: Mon Jun 13 02:25:31 2016 -0400 + + bnxt_en: Enable NPAR (NIC Partitioning) Support. + + NPAR type is read from bnxt_hwrm_func_qcfg. Do not allow changing link + parameters if in NPAR mode sinc ethe port is shared among multiple + partitions. The link parameters are set up by firmware. + + Signed-off-by: Satish Baddipadige + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit fc0f19294d1ffaf9366b10d966f86e6cf13335a4 +Author: Michael Chan +Date: Mon Jun 13 02:25:30 2016 -0400 + + bnxt_en: Handle VF_CFG_CHANGE event from firmware. + + When the VF driver gets this event, the VF configuration has changed (such + as default VLAN). The VF driver will initiate a silent reset to pick up + the new configuration. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 6988bd920c6ea53497ed15db947408b7488c9e36 +Author: Michael Chan +Date: Mon Jun 13 02:25:29 2016 -0400 + + bnxt_en: Add new function bnxt_reset(). + + When a default VLAN is added to the VF, the VF driver needs to reset to + pick up the default VLAN ID. We can use the same tx timeout reset logic + to do that, without the debug output. This new function, with the + silent parameter to suppress debug output will now serve both purposes. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit cf6645f8ebc69775a857b7c51928f3ad9e37aa66 +Author: Michael Chan +Date: Mon Jun 13 02:25:28 2016 -0400 + + bnxt_en: Add function for VF driver to query default VLAN. + + The PF can setup a default VLAN for a VF. The default VLAN tag is + automatically inserted and stripped without the knowledge of the + stack running on the VF. The VF driver needs to know that default + VLAN is enabled as VLAN acceleration on the RX side is no longer + supported. Call netdev_update_features() to fix up the VLAN features + as necessary. Also, VLAN strip mode must be enabled to strip out + the default VLAN tag. + + Only allow VF default VLAN to be set if the firmware spec is >= 1.2.1. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 8852ddb4dcdfe6f877a02f79bf2bca9ae63c039a +Author: Michael Chan +Date: Mon Jun 6 02:37:16 2016 -0400 + + bnxt_en: Simplify VLAN receive logic. + + Since both CTAG and STAG rx acceleration must be enabled together, we + only need to check one feature flag (NETIF_F_HW_VLAN_CTAG_RX) before + calling __vlan_hwaccel_put_tag(). + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 5a9f6b238e59bc05afb4cdeaf3672990bf2a5309 +Author: Michael Chan +Date: Mon Jun 6 02:37:15 2016 -0400 + + bnxt_en: Enable and disable RX CTAG and RX STAG VLAN acceleration together. + + The hardware can only be set to strip or not strip both the VLAN CTAG and + STAG. It cannot strip one and not strip the other. Add logic to + bnxt_fix_features() to toggle both feature flags when the user is toggling + one of them. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit b9a8460a08a1e0150073cda3e7a0dd23cb888052 +Author: Michael Chan +Date: Mon Jun 6 02:37:14 2016 -0400 + + bnxt_en: Fix tx push race condition. + + Set the is_push flag in the software BD before the tx data is pushed to + the chip. It is possible to get the tx interrupt as soon as the tx data + is pushed. The tx handler will not handle the event properly if the + is_push flag is not set and it will crash. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 7e13318daa4a67bff2f800923a993ef3818b3c53 +Author: Tom Herbert +Date: Wed May 18 09:06:10 2016 -0700 + + net: define gso types for IPx over IPv4 and IPv6 + + This patch defines two new GSO definitions SKB_GSO_IPXIP4 and + SKB_GSO_IPXIP6 along with corresponding NETIF_F_GSO_IPXIP4 and + NETIF_F_GSO_IPXIP6. These are used to described IP in IP + tunnel and what the outer protocol is. The inner protocol + can be deduced from other GSO types (e.g. SKB_GSO_TCPV4 and + SKB_GSO_TCPV6). The GSO types of SKB_GSO_IPIP and SKB_GSO_SIT + are removed (these are both instances of SKB_GSO_IPXIP4). + SKB_GSO_IPXIP6 will be used when support for GSO with IP + encapsulation over IPv6 is added. + + Signed-off-by: Tom Herbert + Acked-by: Jeff Kirsher + Signed-off-by: David S. Miller + +commit b67daab033293b3882ba4dc926ffb084d70044e0 +Author: Michael Chan +Date: Sun May 15 03:04:51 2016 -0400 + + bnxt_en: Use dma_rmb() instead of rmb(). + + Use the weaker but more appropriate dma_rmb() to order the reading of + the completion ring. + + Suggested-by: Ajit Khaparde + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 5049e33b559a44e9f216d86c58c7c7fce6f5df2f +Author: Michael Chan +Date: Sun May 15 03:04:50 2016 -0400 + + bnxt_en: Add BCM57314 device ID. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 10289bec0072b13f629a654d94faf1dadd44f335 +Author: Michael Chan +Date: Sun May 15 03:04:49 2016 -0400 + + bnxt_en: Simplify and improve unsupported SFP+ module reporting. + + The current code is more complicated than necessary and can only report + unsupported SFP+ module if it is plugged in after the device is up. + + Rename bnxt_port_module_event() to bnxt_get_port_module_status(). We + already have the current module_status in the link_info structure, so + just check that and report any unsupported SFP+ module status. Delete + the unnecessary last_port_module_event. Call this function at the + end of bnxt_open to report unsupported module already plugged in. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 8578d6c19a308dea3daf3d03acdf18724ec05590 +Author: Michael Chan +Date: Sun May 15 03:04:48 2016 -0400 + + bnxt_en: Fix length value in dmesg log firmware error message. + + The len value in the hwrm error message is wrong. Use the properly adjusted + value in the variable len. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit a11fa2be6d1564375dc57530680268ad569c2632 +Author: Michael Chan +Date: Sun May 15 03:04:47 2016 -0400 + + bnxt_en: Improve the delay logic for firmware response. + + The current code has 2 problems: + + 1. The maximum wait time is not long enough. It is about 60% of the + duration specified by the firmware. It is calling usleep_range(600, 800) + for every 1 msec we are supposed to wait. + + 2. The granularity of the delay is too coarse. Many simple firmware + commands finish in 25 usec or less. + + We fix these 2 issues by multiplying the original 1 msec loop counter by + 40 and calling usleep_range(25, 40) for each iteration. + + There is also a second delay loop to wait for the last DMA word to + complete. This delay loop should be a very short 5 usec wait. + + This change results in much faster bring-up/down time: + + Before the patch: + + time ip link set p4p1 up + + real 0m0.120s + user 0m0.001s + sys 0m0.009s + + After the patch: + + time ip link set p4p1 up + + real 0m0.030s + user 0m0.000s + sys 0m0.010s + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit d0a42d6fc8eaf1b64f62b0bbc3b829b756eacf57 +Author: Michael Chan +Date: Sun May 15 03:04:46 2016 -0400 + + bnxt_en: Reduce maximum ring pages if page size is 64K. + + The chip supports 4K/8K/64K page sizes for the rings and we try to + match it to the CPU PAGE_SIZE. The current page size limits for the rings + are based on 4K/8K page size. If the page size is 64K, these limits are + too large. Reduce them appropriately. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 90c4f788f6c08aaa52edbb47a817403376523375 +Author: Ajit Khaparde +Date: Sun May 15 03:04:45 2016 -0400 + + bnxt_en: Report PCIe link speed and width during driver load + + Add code to log a message during driver load indicating PCIe link + speed and width. + + The log message will look like this: + bnxt_en 0000:86:00.0 eth0: PCIe: Speed 8.0GT/s Width x8 + + Signed-off-by: Ajit Khaparde + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 42ee18fe4ca2a12b8370bb1c53fa6b9f9300c70c +Author: Ajit Khaparde +Date: Sun May 15 03:04:44 2016 -0400 + + bnxt_en: Add Support for ETHTOOL_GMODULEINFO and ETHTOOL_GMODULEEEPRO + + Add support to fetch the SFP EEPROM settings from the firmware + and display it via the ethtool -m command. We support SFP+ and QSFP + modules. + + v2: Fixed a bug in bnxt_get_module_eeprom() found by Ben Hutchings. + + Signed-off-by: Ajit Khaparde + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 18d6e4e2d800cbd44a7d7d215a49f99c6508e4a5 +Author: Satish Baddipadige +Date: Sun May 15 03:04:43 2016 -0400 + + bnxt_en: Fix invalid max channel parameter in ethtool -l. + + When there is only 1 MSI-X vector or in INTA mode, tx and rx pre-set + max channel parameters are shown incorrectly in ethtool -l. With only 1 + vector, bnxt_get_max_rings() will return -ENOMEM. bnxt_get_channels + should check this return value, and set max_rx/max_tx to 0 if it is + non-zero. + + Signed-off-by: Satish Baddipadige + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit fa7e28127a5ad9fd55ac9c7707d8c8b835113a7c +Author: Michael Chan +Date: Tue May 10 19:18:00 2016 -0400 + + bnxt_en: Add workaround to detect bad opaque in rx completion (part 2) + + Add detection and recovery code when the hardware returned opaque value + does not match the expected consumer index. Once the issue is detected, + we skip the processing of all RX and LRO/GRO packets. These completion + entries are discarded without sending the SKB to the stack and without + producing new buffers. The function will be reset from a workqueue. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 376a5b8647d6c56cb8f104d7ad0390b4f4057e70 +Author: Michael Chan +Date: Tue May 10 19:17:59 2016 -0400 + + bnxt_en: Add workaround to detect bad opaque in rx completion (part 1) + + There is a rare hardware bug that can cause a bad opaque value in the RX + or TPA completion. When this happens, the hardware may have used the + same buffer twice for 2 rx packets. In addition, the driver will also + crash later using the bad opaque as the index into the ring. + + The rx opaque value is predictable and is always monotonically increasing. + The workaround is to keep track of the expected next opaque value and + compare it with the one returned by hardware during RX and TPA start + completions. If they miscompare, we will not process any more RX and + TPA completions and exit NAPI. We will then schedule a workqueue to + reset the function. + + This patch adds the logic to keep track of the next rx consumer index. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 7d2837dd7a3239e8201d9bef75c1a708e451e123 +Author: Michael Chan +Date: Wed May 4 16:56:44 2016 -0400 + + bnxt_en: Setup multicast properly after resetting device. + + The multicast/all-multicast internal flags are not properly restored + after device reset. This could lead to unreliable multicast operations + after an ethtool configuration change for example. + + Call bnxt_mc_list_updated() and setup the vnic->mask in bnxt_init_chip() + to fix the issue. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 67a95e2022c7f0405408fb1f910283785ece354a +Author: Michael Chan +Date: Wed May 4 16:56:43 2016 -0400 + + bnxt_en: Need memory barrier when processing the completion ring. + + The code determines if the next ring entry is valid before proceeding + further to read the rest of the entry. The CPU can re-order and read + the rest of the entry first, possibly reading a stale entry, if DMA + of a new entry happens right after reading it. This issue can be + readily seen on a ppc64 system, causing it to crash. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 152971ee75fddbc43fb6cf7e3ada96c1324df2af +Author: Alexander Duyck +Date: Mon May 2 09:38:55 2016 -0700 + + bnxt: Add support for segmentation of tunnels with outer checksums + + This patch assumes that the bnxt hardware will ignore existing IPv4/v6 + header fields for length and checksum as well as the length and checksum + fields for outer UDP and GRE headers. + + I have been told by Michael Chan that this is working. Though this might + be somewhat redundant for IPv6 as they are forcing the checksum to be + computed for all IPv6 frames that are offloaded. A follow-up patch may be + necessary in order to fix this as it is essentially mangling the outer IPv6 + headers to add a checksum where none was requested. + + Signed-off-by: Alexander Duyck + Signed-off-by: David S. Miller + +commit 89d0a06c516339c0a2b3d02677f5d6310b3319fb +Author: Michael Chan +Date: Mon Apr 25 02:30:51 2016 -0400 + + bnxt_en: Divide a page into 32K buffers for the aggregation ring if necessary. + + If PAGE_SIZE is bigger than BNXT_RX_PAGE_SIZE, that means the native CPU + page is bigger than the maximum length of the RX BD. Divide the page + into multiple 32K buffers for the aggregation ring. + + Add an offset field in the bnxt_sw_rx_agg_bd struct to keep track of the + page offset of each buffer. Since each page can be referenced by multiple + buffer entries, call get_page() as needed to get the proper reference + count. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 2839f28bd5bf8fd2ab4a1ea3a5589c8f94364cbb +Author: Michael Chan +Date: Mon Apr 25 02:30:50 2016 -0400 + + bnxt_en: Limit RX BD pages to be no bigger than 32K. + + The RX BD length field of this device is 16-bit, so the largest buffer + size is 65535. For LRO and GRO, we allocate native CPU pages for the + aggregation ring buffers. It won't work if the native CPU page size is + 64K or bigger. + + We fix this by defining BNXT_RX_PAGE_SIZE to be native CPU page size + up to 32K. Replace PAGE_SIZE with BNXT_RX_PAGE_SIZE in all appropriate + places related to the rx aggregation ring logic. + + The next patch will add additional logic to divide the page into 32K + chunks for aggrgation ring buffers if PAGE_SIZE is bigger than + BNXT_RX_PAGE_SIZE. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 1fa72e29e14d97fbda15437c648d7cc4eb00bff8 +Author: Michael Chan +Date: Mon Apr 25 02:30:49 2016 -0400 + + bnxt_en: Don't fallback to INTA on VF. + + Only MSI-X can be used on a VF. The driver should fail initialization + if it cannot successfully enable MSI-X. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 8cbde1175e3c8565edbb777cd09cbfdb93c78397 +Author: Michael Chan +Date: Mon Apr 11 04:11:14 2016 -0400 + + bnxt_en: Add async event handling for speed config changes. + + On some dual port cards, link speeds on both ports have to be compatible. + Firmware will inform the driver when a certain speed is no longer + supported if the other port has linked up at a certain speed. Add + logic to handle this event by logging a message and getting the + updated list of supported speeds. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 84c33dd342ad596a271a61da0119bf34e80bb1c5 +Author: Michael Chan +Date: Mon Apr 11 04:11:13 2016 -0400 + + bnxt_en: Call firmware to approve VF MAC address change. + + Some hypervisors (e.g. ESX) require the VF MAC address to be forwarded to + the PF for approval. In Linux PF, the call is not forwarded and the + firmware will simply check and approve the MAC address if the PF has not + previously administered a valid MAC address for this VF. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 33f7d55f07ab964055d73d38774346f8d4821f00 +Author: Michael Chan +Date: Mon Apr 11 04:11:12 2016 -0400 + + bnxt_en: Shutdown link when device is closed. + + Let firmware know that the driver is giving up control of the link so that + it can be shutdown if no management firmware is running. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 03efbec03198a0f505c2a6c93268c3c5df321c90 +Author: Michael Chan +Date: Mon Apr 11 04:11:11 2016 -0400 + + bnxt_en: Disallow forced speed for 10GBaseT devices. + + 10GBaseT devices must autonegotiate to determine master/slave clocking. + Disallow forced speed in ethtool .set_settings() for these devices. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 29c262fed4067c52977ba279cf71520f9991a050 +Author: Michael Chan +Date: Tue Apr 5 14:09:03 2016 -0400 + + bnxt_en: Improve ethtool .get_settings(). + + If autoneg is off, we should always report the speed and duplex settings + even if it is link down so the user knows the current settings. The + unknown speed and duplex should only be used for autoneg when link is + down. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 9d9cee08fc9f5c4df84ef314158fd19c013bcec6 +Author: Michael Chan +Date: Tue Apr 5 14:09:02 2016 -0400 + + bnxt_en: Check for valid forced speed during ethtool -s. + + Check that the forced speed is a valid speed supported by firmware. + If not supported, return -EINVAL. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 4bb13abf208cb484a9b9d1af9233b0ef850c2fe7 +Author: Michael Chan +Date: Tue Apr 5 14:09:01 2016 -0400 + + bnxt_en: Add unsupported SFP+ module warnings. + + Add the PORT_CONN_NOT_ALLOWED async event handling logic. The driver + will print an appropriate warning to reflect the SFP+ module enforcement + policy done in the firmware. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 25be862370031056989ee76e3c48c3ac8ff67fd4 +Author: Michael Chan +Date: Tue Apr 5 14:09:00 2016 -0400 + + bnxt_en: Set async event bits when registering with the firmware. + + Currently, the driver only sets bit 0 of the async_event_fwd fields. + To be compatible with the latest spec, we need to set the + appropriate event bits handled by the driver. We should be handling + link change and PF driver unload events, so these 2 bits should be + set. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 72b34f04e0b00956dd679ae18bf2163669df8b56 +Author: Michael Chan +Date: Tue Apr 5 14:08:59 2016 -0400 + + bnxt_en: Add get_eee() and set_eee() ethtool support. + + Allow users to get|set EEE parameters. + + v2: Added comment for preserving the tx_lpi_timer value in get_eee. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 939f7f0ca442187db2a4ec7a40979c711b0c939e +Author: Michael Chan +Date: Tue Apr 5 14:08:58 2016 -0400 + + bnxt_en: Add EEE setup code. + + 1. Add bnxt_hwrm_set_eee() function to setup EEE firmware parameters based + on the bp->eee settings. + 2. The new function bnxt_eee_config_ok() will check if EEE parameters need + to be modified due to autoneg changes. + 3. bnxt_hwrm_set_link() has added a new parameter to update EEE. If the + parameter is set, it will call bnxt_hwrm_set_eee(). + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 170ce01301a2a1a87808765531d938fa0b023641 +Author: Michael Chan +Date: Tue Apr 5 14:08:57 2016 -0400 + + bnxt_en: Add basic EEE support. + + Get EEE capability and the initial EEE settings from firmware. + Add "EEE is active | not active" to link up dmesg. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit c9ee9516c161da2d072e035907aa35a35dfa68a8 +Author: Michael Chan +Date: Tue Apr 5 14:08:56 2016 -0400 + + bnxt_en: Improve flow control autoneg with Firmware 1.2.1 interface. + + Make use of the new AUTONEG_PAUSE bit in the new interface to better + control autoneg flow control settings, independent of RX and TX + advertisement settings. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 11f15ed394782dd018d60a0bb550616a8571b43c +Author: Michael Chan +Date: Tue Apr 5 14:08:55 2016 -0400 + + bnxt_en: Update to Firmware 1.2.2 spec. + + Use new field names in API structs and stop using deprecated fields + auto_link_speed and auto_duplex in phy_cfg/phy_qcfg structs. + + Update copyright year to 2016. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 3c02d1bb32347d0674714ee170772d771d513469 +Author: Michael Chan +Date: Mon Mar 28 19:46:07 2016 -0400 + + bnxt_en: Fix ethtool -a reporting. + + To report flow control tx/rx settings accurately regardless of autoneg + setting, we should use link_info->req_flow_ctrl. Before this patch, + the reported settings were only correct when autoneg was on. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 49b5c7a125201bb42c25831fda3a50305c29ef50 +Author: Michael Chan +Date: Mon Mar 28 19:46:06 2016 -0400 + + bnxt_en: Fix typo in bnxt_hwrm_set_pause_common(). + + The typo caused the wrong flow control bit to be set. + + Reported by: Ajit Khaparde + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit e6ef26991a46e20879bebb8298080eb7ceed4ae8 +Author: Michael Chan +Date: Mon Mar 28 19:46:05 2016 -0400 + + bnxt_en: Implement proper firmware message padding. + + The size of every padded firmware message is specified in the first + HWRM_VER_GET response message. Use this value to pad every message + after that. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 33e52d888d0c84a0c66f13357a53113fd9710bd6 +Author: Prashant Sreedharan +Date: Mon Mar 28 19:46:04 2016 -0400 + + bnxt_en: Initialize CP doorbell value before ring allocation + + The existing code does the following: + allocate completion ring + initialize completion ring doorbell + disable interrupts on this completion ring by writing to the doorbell + + We can have a race where firmware sends an asynchronous event to the host + after completion ring allocation and before doorbell is initialized. + When this happens driver can crash while ringing the doorbell using + uninitialized value as part of handling the IRQ/napi request. + + Signed-off-by: Prashant Sreedharan + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 6316ea6db93d875df333e7ab205bf1aa3b3616d7 +Author: Satish Baddipadige +Date: Mon Mar 7 15:38:48 2016 -0500 + + bnxt_en: Enable AER support. + + Add pci_error_handler callbacks to support for pcie advanced error + recovery. + + Signed-off-by: Satish Baddipadige + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 8ddc9aaa725a9337fc7bbe95fe1d1499769fb9b2 +Author: Michael Chan +Date: Mon Mar 7 15:38:47 2016 -0500 + + bnxt_en: Include hardware port statistics in ethtool -S. + + Include the more useful port statistics in ethtool -S for the PF device. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 9947f83fb79ca501f5ab24c370211bfb78b6b364 +Author: Michael Chan +Date: Mon Mar 7 15:38:46 2016 -0500 + + bnxt_en: Include some hardware port statistics in ndo_get_stats64(). + + Include some of the port error counters (e.g. crc) in ->ndo_get_stats64() + for the PF device. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 3bdf56c47dfcd819ab1e73644c2eb9c72c08f29e +Author: Michael Chan +Date: Mon Mar 7 15:38:45 2016 -0500 + + bnxt_en: Add port statistics support. + + Gather periodic port statistics if the device is PF and link is up. This + is triggered in bnxt_timer() every one second to request firmware to DMA + the counters. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit f1a082a6f79fd5f06b27ef05a5ba7ec8d6e83b4c +Author: Michael Chan +Date: Mon Mar 7 15:38:44 2016 -0500 + + bnxt_en: Extend autoneg to all speeds. + + Allow all autoneg speeds aupported by firmware to be advertised. If + the advertising parameter is 0, then all supported speeds will be + advertised. + + Remove BNXT_ALL_COPPER_ETHTOOL_SPEED which is no longer used as all + supported speeds can be advertised. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 4b32cacca28fe8b29bf266feff19b6fc2180402e +Author: Michael Chan +Date: Mon Mar 7 15:38:43 2016 -0500 + + bnxt_en: Use common function to get ethtool supported flags. + + The supported bits and advertising bits in ethtool have the same + definitions. The same is true for the firmware bits. So use the + common function to handle the conversion for both supported and + advertising bits. + + v2: Don't use parentheses on function return. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 3277360eb29c6e482391975717d983060ecbd28d +Author: Michael Chan +Date: Mon Mar 7 15:38:42 2016 -0500 + + bnxt_en: Add reporting of link partner advertisement. + + And report actual pause settings to ETHTOOL_GPAUSEPARAM to let ethtool + resolve the actual pause settings. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 27c4d578600c401c119c012a90920805fab05cc9 +Author: Michael Chan +Date: Mon Mar 7 15:38:41 2016 -0500 + + bnxt_en: Refactor bnxt_fw_to_ethtool_advertised_spds(). + + Include the conversion of pause bits and add one extra call layer so + that the same refactored function can be reused to get the link partner + advertisement bits. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 90e209213096110bce06ef580e1c73702fe4a288 +Author: Michael Chan +Date: Fri Feb 26 04:00:08 2016 -0500 + + bnxt_en: Add hwrm_send_message_silent(). + + This is used to send NVM_FIND_DIR_ENTRY messages which can return error + if the entry is not found. This is normal and the error message will + cause unnecessary alarm, so silence it. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit fbfbc4851dd709cf1327afc283f9cca00235dcb3 +Author: Michael Chan +Date: Fri Feb 26 04:00:07 2016 -0500 + + bnxt_en: Refactor _hwrm_send_message(). + + Add a new function bnxt_do_send_msg() to do essentially the same thing + with an additional paramter to silence error response messages. All + current callers will set silent to false. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 3ebf6f0a09a284adef62111c7cfca29f56d6cce7 +Author: Rob Swindell +Date: Fri Feb 26 04:00:06 2016 -0500 + + bnxt_en: Add installed-package firmware version reporting via Ethtool GDRVINFO + + For everything to fit, we remove the PHY microcode version and replace it + with the firmware package version in the fw_version string. + + Signed-off-by: Rob Swindell + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit a8643e1604c1f39a675c6b10a7f84260fa13590c +Author: Michael Chan +Date: Fri Feb 26 04:00:05 2016 -0500 + + bnxt_en: Fix dmesg log firmware error messages. + + Use appropriate firmware request header structure to prepare the + firmware messages. This avoids the unnecessary conversion of the + fields to 32-bit fields. Add appropriate endian conversion when + printing out the message fields in dmesg so that they appear correct + in the log. + + Reported-by: Rob Swindell + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit ff4fe81d2d49e3cad3bb45c8c5b9a49ca90ee10b +Author: Michael Chan +Date: Fri Feb 26 04:00:04 2016 -0500 + + bnxt_en: Use firmware provided message timeout value. + + Before this patch, we used a hardcoded value of 500 msec as the default + value for firmware message response timeout. For better portability with + future hardware or debug platforms, use the value provided by firmware in + the first response and store it for all susequent messages. Redefine the + macro HWRM_CMD_TIMEOUT to the stored value. Since we don't have the + value yet in the first message, use the 500 ms default if the stored value + is zero. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit dfc9c94a83909f4be80e5d0c67e79793830aa312 +Author: Michael Chan +Date: Fri Feb 26 04:00:03 2016 -0500 + + bnxt_en: Add coalescing support for tx rings. + + When tx and rx rings don't share the same completion ring, tx coalescing + parameters can be set differently from the rx coalescing parameters. + Otherwise, use rx coalescing parameters on shared completion rings. + + Adjust rx coalescing default values to lower interrupt rate. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit bb053f52a54d66a6057c2220458349f7d39ce0d2 +Author: Michael Chan +Date: Fri Feb 26 04:00:02 2016 -0500 + + bnxt_en: Refactor bnxt_hwrm_set_coal(). + + Add a function to set all the coalescing parameters. The function can + be used later to set both rx and tx coalescing parameters. + + v2: Fixed function parameters formatting requested by DaveM. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit dfb5b894f87cb78168e04283e8d15626dc3e6d5a +Author: Michael Chan +Date: Fri Feb 26 04:00:01 2016 -0500 + + bnxt_en: Store irq coalescing timer values in micro seconds. + + Don't convert these to internal hardware tick values before storing + them. This avoids the confusion of ethtool -c returning slightly + different values than the ones set using ethtool -C when we convert + hardware tick values back to micro seconds. Add better comments for + the hardware settings. + + Also, rename the current set of coalescing fields with rx_ prefix. + The next patch will add support of tx coalescing values. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 19241368443ff976b1924019d29eef8e972158e7 +Author: Jeffrey Huang +Date: Fri Feb 26 04:00:00 2016 -0500 + + bnxt_en: Send PF driver unload notification to all VFs. + + During remove_one() when SRIOV is enabled, the PF driver + should broadcast PF driver unload notification to all + VFs that are attached to VMs. Upon receiving the PF + driver unload notification, the VF driver should print + a warning message to message log. Certain operations on the + VF may not succeed after the PF has unloaded. + + Signed-off-by: Jeffrey Huang + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 3874d6a8b61966a77aa743b4160ba96bf3081ce5 +Author: Jeffrey Huang +Date: Fri Feb 26 03:59:59 2016 -0500 + + bnxt_en: Improve bnxt_vf_update_mac(). + + Allow the VF to setup its own MAC address if the PF has not administratively + set it for the VF. To do that, we should always store the MAC address + from the firmware. There are 2 cases: + + 1. The MAC address is valid. This MAC address is assigned by the PF and + it needs to override the current VF MAC address. + + 2. The MAC address is zero. The VF will use a random MAC address by default. + By storing this 0 MAC address in the VF structure, it will allow the VF + user to change the MAC address later using ndo_set_mac_address() when + it sees that the stored MAC address is 0. + + v2: Expanded descriptions and added more comments. + + Signed-off-by: Jeffrey Huang + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit fbb0fa8b48892a3db8f5b89fb591c741fbd2fe7a +Author: Michael Chan +Date: Mon Feb 22 02:10:26 2016 -0500 + + bnxt_en: Fix zero padding of tx push data. + + The arithmetic to zero pad the last 64-bit word in the push buffer is not + correct. + + 1. It should be pdata + length to get to the end. + 2. 'pdata' is void pointer and passing it to PTR_ALIGN() will cast the + aligned pointer to void. Pass 'end' which is u64 pointer to PTR_ALIGN() + instead so that the aligned pointer - 1 is the last 64-bit pointer to data. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit ba41d46fe03223279054e58d570069fdc62fb768 +Author: Michael Chan +Date: Fri Feb 19 19:43:21 2016 -0500 + + bnxt_en: Failure to update PHY is not fatal condition. + + If we fail to update the PHY, we should print a warning and continue. + The current code to exit is buggy as it has not freed up the NIC + resources yet. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit de73018fb5474b33dc4f6d6b8d889e40232e325b +Author: Michael Chan +Date: Fri Feb 19 19:43:20 2016 -0500 + + bnxt_en: Remove unnecessary call to update PHY settings. + + Fix bnxt_update_phy_setting() to check the correct parameters when + determining whether to update the PHY. Requested line speed/duplex should + only be checked for forced speed mode. This avoids unnecessary link + interruptions when loading the driver. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 035a1539ab63bfdb284bdf6e8459e35897c60564 +Author: Michael Chan +Date: Fri Feb 19 19:43:19 2016 -0500 + + bnxt_en: Poll link at the end of __bnxt_open_nic(). + + When shutting down the NIC, we shutdown async event processing before + freeing all the rings. If there is a link change event during reset, the + driver may miss it and the link state may be incorrect after the NIC is + re-opened. Poll the link at the end of __bnxt_open_nic() to get the + correct link status. + + Signed-off-by Michael Chan + + Signed-off-by: David S. Miller + +commit 51dd55b5688e81f9f13fb520a59900d4c3959a9a +Author: Michael Chan +Date: Wed Feb 10 17:33:50 2016 -0500 + + bnxt_en: Reduce default ring sizes. + + The current default tx ring size of 512 causes an extra page to be + allocated for the tx ring with only 1 entry in it. Reduce it to + 511. The default rx ring size is also reduced to 511 to use less + memory by default. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 4419dbe6a0f031ddb2df4cd993805546a566d20e +Author: Michael Chan +Date: Wed Feb 10 17:33:49 2016 -0500 + + bnxt_en: Fix implementation of tx push operation. + + tx push is supported for small packets to reduce DMA latency. The + following bugs are fixed in this patch: + + 1. Fix the definition of the push BD which is different from the DMA BD. + 2. The push buffer has to be zero padded to the next 64-bit word boundary + or tx checksum won't be correct. + 3. Increase the tx push packet threshold to 164 bytes (192 bytes with the BD) + so that small tunneled packets are within the threshold. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 1c49c421f3ec446f1e0eda6d965a6cb23214d7a1 +Author: Michael Chan +Date: Wed Feb 10 17:33:48 2016 -0500 + + bnxt_en: Remove 20G support and advertise only 40GbaseCR4. + + 20G is not supported by production hardware and only the 40GbaseCR4 standard + is supported. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 0d8abf020199b0cbc5fb3aa309d36f0ac1b91631 +Author: Michael Chan +Date: Wed Feb 10 17:33:47 2016 -0500 + + bnxt_en: Cleanup and Fix flow control setup logic + + Cleanup bnxt_probe_phy() to cleanly separate 2 code blocks for autoneg + on and off. Autoneg flow control is possible only if autoneg is enabled. + + In bnxt_get_settings(), Pause and Asym_Pause are always supported. + Only the advertisement bits change depending on the ethtool -A setting + in auto mode. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit b763499ee16b74707af0fb26ab0a26bd9719870b +Author: Michael Chan +Date: Wed Feb 10 17:33:46 2016 -0500 + + bnxt_en: Fix ethtool autoneg logic. + + 1. Determine autoneg on|off setting from link_info->autoneg. Using the + firmware returned setting can be misleading if autoneg is changed and + there hasn't been a phy update from the firmware. + + 2. If autoneg is disabled, link_info->autoneg should be set to 0 to + indicate both speed and flow control autoneg are disabled. + + 3. To enable autoneg flow control, speed autoneg must be enabled. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit d612a579771385e08f7b665063b36bfa52c03ea3 +Author: Michael Chan +Date: Thu Jan 28 03:11:22 2016 -0500 + + bnxt_en: Fix crash in bnxt_free_tx_skbs() during tx timeout. + + The ring index j is not wrapped properly at the end of the ring, causing + it to reference pointers past the end of the ring. For proper loop + termination and to access the ring properly, we need to increment j and + mask it before referencing the ring entry. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 8a4d4c8dde7a4119bce3fd8287dca193ff6356da +Author: Michael Chan +Date: Thu Jan 28 03:11:21 2016 -0500 + + bnxt_en: Exclude rx_drop_pkts hw counter from the stack's rx_dropped counter. + + This hardware counter is misleading as it counts dropped packets that + don't match the hardware filters for unicast/broadcast/multicast. We + will still report this counter in ethtool -S for diagnostics purposes. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 74608fc98d2856fa7201a498b61c9dd9455b504a +Author: Prashant Sreedharan +Date: Thu Jan 28 03:11:20 2016 -0500 + + bnxt_en: Ring free response from close path should use completion ring + + Use completion ring for ring free response from firmware. The response + will be the last entry in the ring and we can free the ring after getting + the response. This will guarantee no spurious DMA to freed memory. + + Signed-off-by: Prashant Sreedharan + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 415b6f19e87e350b13585591859d4fdf50772229 +Author: Arnd Bergmann +Date: Tue Jan 12 16:05:08 2016 +0100 + + net: bnxt: always return values from _bnxt_get_max_rings + + Newly added code in the bnxt driver uses a couple of variables that + are never initialized when CONFIG_BNXT_SRIOV is not set, and gcc + correctly warns about that: + + In file included from include/linux/list.h:8:0, + from include/linux/module.h:9, + from drivers/net/ethernet/broadcom/bnxt/bnxt.c:10: + drivers/net/ethernet/broadcom/bnxt/bnxt.c: In function 'bnxt_get_max_rings': + include/linux/kernel.h:794:26: warning: 'cp' may be used uninitialized in this function [-Wmaybe-uninitialized] + include/linux/kernel.h:794:26: warning: 'tx' may be used uninitialized in this function [-Wmaybe-uninitialized] + drivers/net/ethernet/broadcom/bnxt/bnxt.c:5730:11: warning: 'rx' may be used uninitialized in this function [-Wmaybe-uninitialized] + drivers/net/ethernet/broadcom/bnxt/bnxt.c:5736:6: note: 'rx' was declared here + + This changes the condition so that we fall back to using the PF + data if VF is not available, and always initialize the variables + to something useful. + + Signed-off-by: Arnd Bergmann + Fixes: 6e6c5a57fbe1 ("bnxt_en: Modify bnxt_get_max_rings() to support shared or non shared rings.") + Acked-by: Michael Chan + Signed-off-by: David S. Miller + +commit d2d6318cb996f39112ba24ff23abe67578a611bc +Author: Rob Swindell +Date: Thu Jan 7 19:56:58 2016 -0500 + + bnxt_en: Reset embedded processor after applying firmware upgrade + + Use HWRM_FW_RESET command to request a self-reset of the embedded + processor(s) after successfully applying a firmware update. For boot + processor, the self-reset is currently deferred until the next PCIe reset. + + Signed-off-by: Rob Swindell + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit d79979a103f7820d3107cdc04096e87b37f90008 +Author: Michael Chan +Date: Thu Jan 7 19:56:57 2016 -0500 + + bnxt_en: Zero pad firmware messages to 128 bytes. + + For future compatibility, zero pad all messages that the driver sends + to the firmware to 128 bytes. If these messages are extended in the + future with new byte enables, zero padding these messages now will + guarantee future compatibility. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 068c9ec62906b626a30526638fd36189b80b6464 +Author: Michael Chan +Date: Sat Jan 2 23:45:04 2016 -0500 + + bnxt_en: Modify ethtool -l|-L to support combined or rx/tx rings. + + The driver can support either all combined or all rx/tx rings. The + default is combined, but the user can now select rx/tx rings. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 01657bcd078b924e4599a83acd402ea6f85a1e45 +Author: Michael Chan +Date: Sat Jan 2 23:45:03 2016 -0500 + + bnxt_en: Modify init sequence to support shared or non shared rings. + + Modify ring memory allocation and MSIX setup to support shared or + non shared rings and do the proper mapping. Default is still to + use shared rings. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 6e6c5a57fbe1c77c2c55e266f87a83429adc3de7 +Author: Michael Chan +Date: Sat Jan 2 23:45:02 2016 -0500 + + bnxt_en: Modify bnxt_get_max_rings() to support shared or non shared rings. + + Add logic to calculate how many shared or non shared rings can be + supported. Default is to use shared rings. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit b81a90d3028af92da61a61e2efd231a585180044 +Author: Michael Chan +Date: Sat Jan 2 23:45:01 2016 -0500 + + bnxt_en: Re-structure ring indexing and mapping. + + In order to support dedicated or shared completion rings, the ring + indexing and mapping are re-structured as below: + + 1. bp->grp_info[] array index is 1:1 with bp->bnapi[] array index and + completion ring index. + + 2. rx rings 0 to n will be mapped to completion rings 0 to n. + + 3. If tx and rx rings share completion rings, then tx rings 0 to m will + be mapped to completion rings 0 to m. + + 4. If tx and rx rings use dedicated completion rings, then tx rings 0 to + m will be mapped to completion rings n + 1 to n + m. + + 5. Each tx or rx ring will use the corresponding completion ring index + for doorbell mapping and MSIX mapping. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 3b2b7d9db74adb95aa0bd029298a741333eb847e +Author: Michael Chan +Date: Sat Jan 2 23:45:00 2016 -0500 + + bnxt_en: Check for NULL rx or tx ring. + + Each bnxt_napi structure may no longer be having both an rx ring and + a tx ring. Check for a valid ring before using it. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit b6ab4b01f53b5f9e17dbd4f91c95fa5049fa2101 +Author: Michael Chan +Date: Sat Jan 2 23:44:59 2016 -0500 + + bnxt_en: Separate bnxt_{rx|tx}_ring_info structs from bnxt_napi struct. + + Currently, an rx and a tx ring are always paired with a completion ring. + We want to restructure it so that it is possible to have a dedicated + completion ring for tx or rx only. + + The bnxt hardware uses a completion ring for rx and tx events. The driver + has to process the completion ring entries sequentially for the rx and tx + events. Using a dedicated completion ring for rx only or tx only has these + benefits: + + 1. A burst of rx packets can cause delay in processing tx events if the + completion ring is shared. If tx queue is stopped by BQL, this can cause + delay in re-starting the tx queue. + + 2. A completion ring is sized according to the rx and tx ring size rounded + up to the nearest power of 2. When the completion ring is shared, it is + sized by adding the rx and tx ring sizes and then rounded to the next power + of 2, often with a lot of wasted space. + + 3. Using dedicated completion ring, we can adjust the tx and rx coalescing + parameters independently for rx and tx. + + The first step is to separate the rx and tx ring structures from the + bnxt_napi struct. + + In this patch, an rx ring and a tx ring will point to the same bnxt_napi + struct to share the same completion ring. No change in ring assignment + and mapping yet. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 9f5545905fbcc069f6fa8030b866e967ec6a5c73 +Author: Michael Chan +Date: Sat Jan 2 23:44:58 2016 -0500 + + bnxt_en: Refactor bnxt_dbg_dump_states(). + + By adding 3 separate functions to dump the different ring states. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit fbc9a5237a767cada312cb07877d0992b1e34242 +Author: David Christensen +Date: Sun Dec 27 18:19:29 2015 -0500 + + bnxt_en: Add BCM57301 & BCM57402 devices. + + Added the PCI IDs for the BCM57301 and BCM57402 controllers. + + Signed-off-by: David Christensen + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit c193554ecd050e63753aa0ec99c188800843bca2 +Author: Michael Chan +Date: Sun Dec 27 18:19:28 2015 -0500 + + bnxt_en: Update to Firmware interface spec 1.0.0. + + This interface will be forward compatible with future changes. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit b72d4a68c443e29cb59e15a1a9b2c2f4bf802831 +Author: Michael Chan +Date: Sun Dec 27 18:19:27 2015 -0500 + + bnxt_en: Keep track of the ring group resource. + + Newer firmware will return the ring group resource when we call + hwrm_func_qcaps(). To be compatible with older firmware, use the + number of tx rings as the number of ring groups if the older firmware + returns 0. When determining how many rx rings we can support, take + the ring group resource in account as well in _bnxt_get_max_rings(). + Divide and assign the ring groups to VFs. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 4a21b49b34c01137a67bf0fe185c5d0fff747e4d +Author: Michael Chan +Date: Sun Dec 27 18:19:26 2015 -0500 + + bnxt_en: Improve VF resource accounting. + + We need to keep track of all resources, such as rx rings, tx rings, + cmpl rings, rss contexts, stats contexts, vnics, after we have + divided them for the VFs. Otherwise, subsequent ring changes on + the PF may not work correctly. + + We adjust all max resources in struct bnxt_pf_info after they have been + assigned to the VFs. There is no need to keep the separate + max_pf_tx_rings and max_pf_rx_rings. + + When SR-IOV is disabled, we call bnxt_hwrm_func_qcaps() to restore the + max resources for the PF. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 92268c328a8dae4635b3deaca52a8ed329642219 +Author: Michael Chan +Date: Sun Dec 27 18:19:25 2015 -0500 + + bnxt_en: Cleanup bnxt_hwrm_func_cfg(). + + 1. Use local variable pf for repeated access to this pointer. + + 2. The 2nd argument num_vfs was unnecessarily declared as pointer to int. + This function doesn't change num_vfs so change the argument to int. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 2bcfa6f6e7cf867e4aa623f84caea4bc413d38c9 +Author: Michael Chan +Date: Sun Dec 27 18:19:24 2015 -0500 + + bnxt_en: Check hardware resources before enabling NTUPLE. + + The hardware resources required to enable NTUPLE varies depending on + how many rx channels are configured. We need to make sure we have the + resources before we enable NTUPLE. Add bnxt_rfs_capable() to do the + checking. + + In addition, we need to do the same checking in ndo_fix_features(). As + the rx channels are changed using ethtool -L, we call + netdev_update_features() to make the necessary adjustment for NTUPLE. + + Calling netdev_update_features() in netif_running() state but before + calling bnxt_open_nic() would be a problem. To make this work, + bnxt_set_features() has to be modified to test for BNXT_STATE_OPEN for + the true hardware state instead of checking netif_running(). + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 27e241896f2e21c96200df711659117923dec8a2 +Author: Michael Chan +Date: Sun Dec 27 18:19:23 2015 -0500 + + bnxt_en: Don't treat single segment rx frames as GRO frames. + + If hardware completes single segment rx frames, don't bother setting + up all the GRO related fields. Pass the SKB up as a normal frame. + + Reviewed-by: vasundhara volam + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 45019a180358c3cf290c3f3dc953c44f978d5527 +Author: Michael Chan +Date: Sun Dec 27 18:19:22 2015 -0500 + + bnxt_en: Allocate rx_cpu_rmap only if Accelerated RFS is enabled. + + Also, no need to check for bp->rx_nr_rings as it is always >= 1. If the + allocation fails, it is not a fatal error and we can still proceed. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 665e350ddbfde88c5c18142dfd7b8c64556bc964 +Author: Satish Baddipadige +Date: Sun Dec 27 18:19:21 2015 -0500 + + bnxt_en: Increment checksum error counter only if NETIF_F_RXCSUM is set. + + rx_l4_csum_error is now incremented only when offload is enabled + + Signed-off-by: Satish Baddipadige + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 2731d70fa9cbb62e45743171bf979784fb36778c +Author: Rob Swindell +Date: Sun Dec 27 18:19:20 2015 -0500 + + bnxt_en: Add support for upgrading APE/NC-SI firmware via Ethtool FLASHDEV + + NC-SI firmware of type apeFW (10) is now supported. + + Signed-off-by: Rob Swindell + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit edd0c2cc2b73ff21f356d6cbd3b5bf83e692ea9d +Author: Michael Chan +Date: Sun Dec 27 18:19:19 2015 -0500 + + bnxt_en: Optimize ring alloc and ring free functions. + + Remove the unnecessary "if" statement before the "for" statement: + + if (x) { + for (i = 0; i < x; i++) + ... + } + + Also, change the ring free function to return void as it only returns 0. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit be58a0da1672391b246880450e990fe36d7ba24d +Author: Jeffrey Huang +Date: Sun Dec 27 18:19:18 2015 -0500 + + bnxt_en: support hwrm_func_drv_unrgtr command + + During remove_one, the driver should issue hwrm_func_drv_unrgtr + command to inform firmware that this function has been unloaded. + This is to let firmware keep track of driver present/absent state + when driver is gracefully unloaded. A keep alive timer is needed + later to keep track of driver state during abnormal shutdown. + + Signed-off-by: Jeffrey Huang + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 028de140ffdf481d4948de663b33dae78e1e9cc8 +Author: Michael Chan +Date: Wed Dec 9 19:35:44 2015 -0500 + + bnxt_en: Implement missing tx timeout reset logic. + + The reset logic calls bnxt_close_nic() and bnxt_open_nic() under rtnl_lock + from bnxt_sp_task. BNXT_STATE_IN_SP_TASK must be cleared before calling + bnxt_close_nic() to avoid deadlock. + + v2: Fixed white space error. Thanks Dave. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 4cebdcec0933bf39c0ab42e8ce8c9d72f803fbe9 +Author: Michael Chan +Date: Wed Dec 9 19:35:43 2015 -0500 + + bnxt_en: Don't cancel sp_task from bnxt_close_nic(). + + When implementing driver reset from tx_timeout in the next patch, + bnxt_close_nic() will be called from the sp_task workqueue. Calling + cancel_work() on sp_task will hang the workqueue. + + Instead, set a new bit BNXT_STATE_IN_SP_TASK when bnxt_sp_task() is running. + bnxt_close_nic() will wait for BNXT_STATE_IN_SP_TASK to clear before + proceeding. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit caefe526d7b5af11d9b5977b2862eb144fa45537 +Author: Michael Chan +Date: Wed Dec 9 19:35:42 2015 -0500 + + bnxt_en: Change bp->state to bitmap. + + This allows multiple independent bits to be set for various states. + Subsequent patches to implement tx timeout reset will require this. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit de68f5de56512a2ff5d5810ef4d54c53470c3c45 +Author: Michael Chan +Date: Wed Dec 9 19:35:41 2015 -0500 + + bnxt_en: Fix bitmap declaration to work on 32-bit arches. + + The declaration of the bitmap vf_req_snif_bmap using fixed array of + unsigned long will only work on 64-bit archs. Use DECLARE_BITMAP instead + which will work on all archs. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit b664f008b0d885db1d5617ed1c51d29a8c04da93 +Author: Michael Chan +Date: Wed Dec 2 01:54:08 2015 -0500 + + bnxt_en: Setup uc_list mac filters after resetting the chip. + + Call bnxt_cfg_rx_mode() in bnxt_init_chip() to setup uc_list and + mc_list mac address filters. Before the patch, uc_list is not + setup again after chip reset (such as ethtool ring size change) + and macvlans don't work any more after that. + + Modify bnxt_cfg_rx_mode() to return error codes appropriately so + that the init chip sequence can detect any failures. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit bdd4347b33f480187b44699cf1caac9400496d6d +Author: Jeffrey Huang +Date: Wed Dec 2 01:54:07 2015 -0500 + + bnxt_en: enforce proper storing of MAC address + + For PF, the bp->pf.mac_addr always holds the permanent MAC + addr assigned by the HW. For VF, the bp->vf.mac_addr always + holds the administrator assigned VF MAC addr. The random + generated VF MAC addr should never get stored to bp->vf.mac_addr. + This way, when the VF wants to change the MAC address, we can tell + if the adminstrator has already set it and disallow the VF from + changing it. + + v2: Fix compile error if CONFIG_BNXT_SRIOV is not set. + + Signed-off-by: Jeffrey Huang + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 1fc2cfd03bbf8f1f8b6b90f0858faba8bd6631c4 +Author: Jeffrey Huang +Date: Wed Dec 2 01:54:06 2015 -0500 + + bnxt_en: Fixed incorrect implementation of ndo_set_mac_address + + The existing ndo_set_mac_address only copies the new MAC addr + and didn't set the new MAC addr to the HW. The correct way is + to delete the existing default MAC filter from HW and add + the new one. Because of RFS filters are also dependent on the + default mac filter l2 context, the driver must go thru + close_nic() to delete the default MAC and RFS filters, then + open_nic() to set the default MAC address to HW. + + Signed-off-by: Jeffrey Huang + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 93d05d4a320cb16712bb3d57a9658f395d8cecb9 +Author: Eric Dumazet +Date: Wed Nov 18 06:31:03 2015 -0800 + + net: provide generic busy polling to all NAPI drivers + + NAPI drivers no longer need to observe a particular protocol + to benefit from busy polling (CONFIG_NET_RX_BUSY_POLL=y) + + napi_hash_add() and napi_hash_del() are automatically called + from core networking stack, respectively from + netif_napi_add() and netif_napi_del() + + This patch depends on free_netdev() and netif_napi_del() being + called from process context, which seems to be the norm. + + Drivers might still prefer to call napi_hash_del() on their + own, since they might combine all the rcu grace periods into + a single one, knowing their NAPI structures lifetime, while + core networking stack has no idea of a possible combining. + + Once this patch proves to not bring serious regressions, + we will cleanup drivers to either remove napi_hash_del() + or provide appropriate rcu grace periods combining. + + Signed-off-by: Eric Dumazet + Signed-off-by: David S. Miller + +commit 4bb6cdce386d620d10d2588ea5bf4093a3b21ab9 +Author: Jeffrey Huang +Date: Thu Nov 5 16:25:51 2015 -0500 + + bnxt_en: More robust SRIOV cleanup sequence. + + Instead of always calling pci_sriov_disable() in remove_one(), + the driver should detect whether VFs are currently assigned + to the VMs. If the VFs are active in VMs, then it should not + disable SRIOV as it is catastrophic to the VMs. Instead, + it just leaves the VFs alone and continues to unload the PF. + The user can then cleanup the VMs even after the PF driver + has been unloaded. + + Signed-off-by: Jeffrey Huang + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 84e86b98f6515aaeaac053b234be158b25457184 +Author: Michael Chan +Date: Thu Nov 5 16:25:50 2015 -0500 + + bnxt_en: Fix comparison of u16 sw_id against negative value. + + Assign the return value from bitmap_find_free_region() to an integer + variable and check for negative error codes first, before assigning + the bit ID to the unsigned sw_id field. + + Reported-by: Dan Carpenter + Cc: Dan Carpenter + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 11809490ac17810cff90c12e9f2f3e0303a72121 +Author: Jeffrey Huang +Date: Thu Nov 5 16:25:49 2015 -0500 + + bnxt_en: map CAG_REG_LEGACY_INT_STATUS_MASK to GRC window #4 + + In order to use offset 0x4014 for reading CAG interrupt status, + the actual CAG register must be mapped to GRC bar0 window #4. + Otherwise, the driver is reading garbage. This patch corrects + this issue. + + Signed-off-by: Jeffrey Huang + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 614388ce39f3d61ad7f95db65f409d35d5943616 +Author: Michael Chan +Date: Thu Nov 5 16:25:48 2015 -0500 + + bnxt_en: Determine tcp/ipv6 RSS hash type correctly. + + The profile ID in the completion record needs to be ANDed with the + profile ID mask of 0x1f. This bug was causing the SKB hash type + and the gso_type to be wrong in some cases. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit c5d7774db350e77f2506e36e1797c958d1b118c8 +Author: Jeffrey Huang +Date: Thu Nov 5 16:25:47 2015 -0500 + + bnxt_en: Change sp events definitions to represent bit position. + + Fix the sp event bits to be bit positions instead of bit values since + the bit helper functions are expecting the former. + + Signed-off-by: Jeffrey Huang + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit d1611c3aba11ffa281bdd027aace52f5a370b8c5 +Author: Michael Chan +Date: Sun Oct 25 22:27:57 2015 -0400 + + bnxt_en: Fix compile warnings when CONFIG_INET is not set. + + bnxt_gro_skb() has unused variables when CONFIG_INET is not set. We + really cannot support hardware GRO if CONFIG_INET is not set, so + compile out bnxt_gro_skb() completely and define BNXT_FLAG_GRO to be 0 + if CONFIG_INET is not set. This will effectively always disable + hardware GRO if CONFIG_INET is not set. + + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit 379a80a1d048dcacfc2011d5d32e16d5c804b9f4 +Author: Michael Chan +Date: Fri Oct 23 15:06:19 2015 -0400 + + bnxt_en: Fix compile errors when CONFIG_BNXT_SRIOV is not set. + + struct bnxt_pf_info needs to be always defined. Move bnxt_update_vf_mac() + to bnxt_sriov.c and add some missing #ifdef CONFIG_BNXT_SRIOV. + + Reported-by: Jim Hull + Tested-by: Jim Hull + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller + +commit c0c050c58d840994ba842ad1c338a98e7c12b764 +Author: Michael Chan +Date: Thu Oct 22 16:01:17 2015 -0400 + + bnxt_en: New Broadcom ethernet driver. + + Broadcom ethernet driver for the new family of NetXtreme-C/E + ethernet devices. + + v5: + - Removed empty blank lines at end of files (noted by David Miller). + - Moved busy poll helper functions to bnxt.h to at least make the + .c file look less cluttered with #ifdef (noted by Stephen Hemminger). + + v4: + - Broke up 2 long message strings with "\n" (suggested by John Linville) + - Constify an array of strings (suggested by Stephen Hemminger) + - Improve bnxt_vf_pciid() (suggested by Stephen Hemminger) + - Use PCI_VDEVICE() to populate pci_device_id table for more compact + source. + + v3: + - Fixed 2 more sparse warnings. + - Removed some unused structures in .h files. + + v2: + - Fixed all kbuild test robot reported warnings. + - Fixed many of the checkpatch.pl errors and warnings. + - Fixed the Kconfig description (noted by Dmitry Kravkov). + + Acked-by: Eddie Wai + Acked-by: Jeffrey Huang + Signed-off-by: Prashant Sreedharan + Signed-off-by: Michael Chan + Signed-off-by: David S. Miller only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/bnxt/Kconfig +++ linux-raspi2-4.4.0/ubuntu/bnxt/Kconfig @@ -0,0 +1,29 @@ +config BNXT_BPO + tristate "Broadcom NetXtreme-C/E support" + depends on PCI + depends on VXLAN || VXLAN=n + select FW_LOADER + select LIBCRC32C + ---help--- + This driver supports Broadcom NetXtreme-C/E 10/25/40/50 gigabit + Ethernet cards. To compile this driver as a module, choose M here: + the module will be called bnxt_en_bpo. This is recommended. + +config BNXT_BPO_SRIOV + bool "Broadcom NetXtreme-C/E SR-IOV support" + depends on BNXT_BPO && PCI_IOV + default y + ---help--- + This configuration parameter enables Single Root Input Output + Virtualization support in the NetXtreme-C/E products. This + allows for virtual function acceleration in virtual environments. + +config BNXT_BPO_DCB + bool "Data Center Bridging (DCB) Support" + default n + depends on BNXT_BPO && DCB + ---help--- + Say Y here if you want to use Data Center Bridging (DCB) in the + driver. + + If unsure, say N. only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/bnxt/Makefile +++ linux-raspi2-4.4.0/ubuntu/bnxt/Makefile @@ -0,0 +1,411 @@ +#!/usr/bin/make +# Makefile for building Linux Broadcom Gigabit ethernet driver as a module. +# $id$ + +LINUXSRC := $(srctree) + +ifeq ($(shell ls $(LINUXSRC)/include/uapi/linux > /dev/null 2>&1 && echo uapi),) + UAPI= +else + UAPI=uapi +endif + +ifneq ($(shell grep -o "pci_enable_msix_range" $(LINUXSRC)/include/linux/pci.h),) + DISTRO_CFLAG = -DHAVE_MSIX_RANGE +else + DISTRO_CFLAG = +endif + +ifneq ($(shell grep -o "msix_cap" $(LINUXSRC)/include/linux/pci.h),) + ifeq ($(shell grep -o "pci_dev_rh1" $(LINUXSRC)/include/linux/pci.h),) + DISTRO_CFLAG += -DHAVE_MSIX_CAP + endif +endif + +ifneq ($(shell grep -o "module_pci_driver" $(LINUXSRC)/include/linux/pci.h),) + DISTRO_CFLAG += -DHAVE_MODULE_PCI_DRIVER +endif + +ifneq ($(shell grep "hlist_for_each_entry_safe" $(LINUXSRC)/include/linux/list.h | grep "tpos" > /dev/null 2>&1 && echo tpos),) + DISTRO_CFLAG += -DHAVE_OLD_HLIST +endif + +ifneq ($(shell grep -o "csum_level" $(LINUXSRC)/include/linux/skbuff.h),) + DISTRO_CFLAG += -DHAVE_CSUM_LEVEL +endif + +ifneq ($(shell grep -o "build_skb" $(LINUXSRC)/include/linux/skbuff.h),) + DISTRO_CFLAG += -DHAVE_BUILD_SKB + ifneq ($(shell grep "build_skb" $(LINUXSRC)/include/linux/skbuff.h | grep "int frag_size" > /dev/null 2>&1 && echo frag_size),) + DISTRO_CFLAG += -DHAVE_NEW_BUILD_SKB + endif +endif + +ifneq ($(shell grep -o "inner_network_offset" $(LINUXSRC)/include/linux/skbuff.h),) + DISTRO_CFLAG += -DHAVE_INNER_NETWORK_OFFSET +endif + +ifeq ($(shell grep -o "skb_frag_size" $(LINUXSRC)/include/linux/skbuff.h),) + DISTRO_CFLAG += -DNO_SKB_FRAG_SIZE +endif + +ifneq ($(shell grep -so "n_proto" $(LINUXSRC)/include/net/flow_keys.h),) + DISTRO_CFLAG += -DHAVE_N_PROTO +endif + +ifneq ($(shell grep -so "flow_keys" $(LINUXSRC)/include/net/flow_keys.h),) + DISTRO_CFLAG += -DHAVE_FLOW_KEYS +endif + +ifneq ($(shell grep -o "skb_get_hash_raw" $(LINUXSRC)/include/linux/skbuff.h),) + DISTRO_CFLAG += -DHAVE_GET_HASH_RAW +endif + +ifneq ($(shell grep -o "PKT_HASH_TYPE" $(LINUXSRC)/include/linux/skbuff.h),) + DISTRO_CFLAG += -DHAVE_SKB_HASH_TYPE +endif + +ifneq ($(shell grep -o "SKB_GSO_UDP_TUNNEL_CSUM" $(LINUXSRC)/include/linux/skbuff.h),) + DISTRO_CFLAG += -DHAVE_SKB_GSO_UDP_TUNNEL_CSUM +else +ifneq ($(shell grep -o "SKB_GSO_UDP_TUNNEL" $(LINUXSRC)/include/linux/skbuff.h),) + DISTRO_CFLAG += -DHAVE_SKB_GSO_UDP_TUNNEL +endif +endif + +ifneq ($(shell grep -o "skb_frag_page" $(LINUXSRC)/include/linux/skbuff.h),) + DISTRO_CFLAG += -DHAVE_SKB_FRAG_PAGE +endif + +ifneq ($(shell grep "skb_checksum_none_assert" $(LINUXSRC)/include/linux/skbuff.h > /dev/null 2>&1 && echo skb_cs_none_assert),) + DISTRO_CFLAG += -DHAVE_SKB_CHECKSUM_NONE_ASSERT +endif + +ifneq ($(shell grep -o "min_tx_rate" $(LINUXSRC)/include/$(UAPI)/linux/if_link.h),) + DISTRO_CFLAG += -DHAVE_IFLA_TX_RATE +endif + +ifneq ($(shell grep -o "IFLA_XDP_PROG_ID" $(LINUXSRC)/include/$(UAPI)/linux/if_link.h),) + DISTRO_CFLAG += -DHAVE_IFLA_XDP_PROG_ID +endif + +ifneq ($(shell grep -o "dma_set_mask_and_coherent" $(LINUXSRC)/include/linux/dma-mapping.h),) + DISTRO_CFLAG += -DHAVE_SET_MASK_AND_COHERENT +endif + +ifneq ($(shell grep -o "dma_set_coherent_mask" $(LINUXSRC)/include/linux/dma-mapping.h),) + DISTRO_CFLAG += -DHAVE_SET_COHERENT_MASK +endif + +ifneq ($(shell grep -o "ndo_add_vxlan_port" $(LINUXSRC)/include/linux/netdevice.h),) + DISTRO_CFLAG += -DHAVE_NDO_ADD_VXLAN +endif + +ifneq ($(shell grep -o "struct dev_addr_list" $(LINUXSRC)/include/linux/netdevice.h),) + DISTRO_CFLAG += -DHAVE_DEV_ADDR_LIST +endif + +ifneq ($(shell grep "netif_set_real_num_tx" $(LINUXSRC)/include/linux/netdevice.h > /dev/null 2>&1 && echo real_tx),) + DISTRO_CFLAG += -DHAVE_NETIF_SET_REAL_NUM_TX +else + DISTRO_CFLAG += -DVOID_NETIF_SET_NUM_TX +endif + +ifneq ($(shell grep "netif_set_real_num_tx" $(LINUXSRC)/include/linux/netdevice.h | grep void > /dev/null 2>&1 && echo netif_set_real),) + DISTRO_CFLAG += -DVOID_NETIF_SET_NUM_TX +endif + +ifneq ($(shell grep -o "netdev_tx_sent_queue" $(LINUXSRC)/include/linux/netdevice.h),) + DISTRO_CFLAG += -DHAVE_NETDEV_TX_QUEUE_CTRL +endif + +ifneq ($(shell ls $(LINUXSRC)/include/net/flow_dissector.h > /dev/null 2>&1 && echo flow),) + DISTRO_CFLAG += -DNEW_FLOW_KEYS -DHAVE_FLOW_KEYS + ifneq ($(shell grep -so "static inline bool skb_flow_dissect_flow_keys" $(LINUXSRC)/include/linux/skbuff.h),) + ifneq ($(shell grep -A 2 "static inline bool skb_flow_dissect_flow_keys" $(LINUXSRC)/include/linux/skbuff.h | grep -o "unsigned int flags"),) + DISTRO_CFLAG += -DHAVE_NEW_FLOW_DISSECTOR_WITH_FLAGS + endif + ifneq ($(shell grep -o "FLOW_DIS_ENCAPSULATION" $(LINUXSRC)/include/net/flow_dissector.h),) + DISTRO_CFLAG += -DHAVE_NEW_FLOW_DISSECTOR + endif + endif +endif + +ifneq ($(shell ls $(LINUXSRC)/include/net/udp_tunnel.h > /dev/null 2>&1 && echo udp_tunnel),) + DISTRO_CFLAG += -DHAVE_UDP_TUNNEL_H +endif + +ifneq ($(shell grep -o "ether_addr_equal" $(LINUXSRC)/include/linux/etherdevice.h),) + DISTRO_CFLAG += -DHAVE_ETHER_ADDR_EQUAL +endif + +ifneq ($(shell grep -o "ether_addr_copy" $(LINUXSRC)/include/linux/etherdevice.h),) + DISTRO_CFLAG += -DHAVE_ETHER_ADDR_COPY +endif + +ifneq ($(shell grep -o "eth_broadcast_addr" $(LINUXSRC)/include/linux/etherdevice.h),) + DISTRO_CFLAG += -DHAVE_ETH_BROADCAST_ADDR +endif + +ifneq ($(shell grep -o "eth_get_headlen" $(LINUXSRC)/include/linux/etherdevice.h),) + DISTRO_CFLAG += -DHAVE_ETH_GET_HEADLEN +endif + +ifneq ($(shell grep -o "eth_hw_addr_random" $(LINUXSRC)/include/linux/etherdevice.h),) + DISTRO_CFLAG += -DHAVE_ETH_HW_ADDR_RANDOM +endif + +ifneq ($(shell grep -o "get_rxnfc" $(LINUXSRC)/include/linux/ethtool.h),) + DISTRO_CFLAG += -DHAVE_RXNFC + ifneq ($(shell grep -A 2 "get_rxnfc" $(LINUXSRC)/include/linux/ethtool.h | grep -o "void"),) + DISTRO_CFLAG += -DHAVE_RXNFC_VOID + endif +endif + +ifneq ($(shell grep -o "get_rxfh_key_size" $(LINUXSRC)/include/linux/ethtool.h),) + ifneq ($(shell grep -o "ETH_RSS_HASH_TOP" $(LINUXSRC)/include/linux/ethtool.h),) + DISTRO_CFLAG += -DHAVE_GET_RXFH_KEY_SIZE + endif +endif + +ifneq ($(shell grep -o "get_rxfh_indir_size" $(LINUXSRC)/include/linux/ethtool.h),) + DISTRO_CFLAG += -DHAVE_RXFH_INDIR_SIZE +endif + +ifneq ($(shell grep -o "set_phys_id" $(LINUXSRC)/include/linux/ethtool.h),) + DISTRO_CFLAG += -DHAVE_SET_PHYS_ID +endif + +ifneq ($(shell grep -o "ETHTOOL_LINK_MODE_25000baseCR_Full_BIT" $(LINUXSRC)/include/$(UAPI)/linux/ethtool.h),) + DISTRO_CFLAG += -DHAVE_ETHTOOL_GLINKSETTINGS_25G +endif + +ifneq ($(shell grep -o "ethtool_tcpip6_spec" $(LINUXSRC)/include/$(UAPI)/linux/ethtool.h),) + DISTRO_CFLAG += -DHAVE_ETHTOOL_IP6_SPEC +endif + +ifeq ($(shell grep -o "rx_cpu_rmap" $(LINUXSRC)/include/linux/netdevice.h),) + DISTRO_CFLAG += -DNO_NETDEV_CPU_RMAP +else + ifneq ($(shell grep -o "struct net_device_extended" $(LINUXSRC)/include/linux/netdevice.h || \ + grep -o "irq_run_affinity_notifiers" $(LINUXSRC)/include/linux/interrupt.h),) + DISTRO_CFLAG += -DNO_NETDEV_CPU_RMAP + endif +endif + +ifneq ($(shell grep -o "hw_features" $(LINUXSRC)/include/linux/netdevice.h),) + ifeq ($(shell grep -o "get_netdev_hw_features" $(LINUXSRC)/include/linux/netdevice.h),) + DISTRO_CFLAG += -DNETDEV_HW_FEATURES + endif +endif + +ifneq ($(shell grep -o "hw_enc_features" $(LINUXSRC)/include/linux/netdevice.h),) + DISTRO_CFLAG += -DNETDEV_HW_ENC_FEATURES +endif + +ifneq ($(shell grep -o "sriov_configure" $(LINUXSRC)/include/linux/pci.h),) + ifeq ($(shell grep -o "rh_reserved" $(LINUXSRC)/include/linux/pci.h),) + DISTRO_CFLAG += -DPCIE_SRIOV_CONFIGURE + endif +endif + +ifneq ($(shell grep -o "pci_vfs_assigned" $(LINUXSRC)/include/linux/pci.h),) + DISTRO_CFLAG += -DHAVE_PCI_VFS_ASSIGNED +endif + +ifneq ($(shell grep -o "pci_num_vf" $(LINUXSRC)/include/linux/pci.h),) + DISTRO_CFLAG += -DHAVE_PCI_NUM_VF +endif + +ifneq ($(shell grep -o "ndo_fix_features" $(LINUXSRC)/include/linux/netdevice.h),) + ifeq ($(shell grep -o "net_device_ops_ext" $(LINUXSRC)/include/linux/netdevice.h),) + DISTRO_CFLAG += -DNETDEV_FEATURE_CONTROL + endif + ifneq ($(shell grep -o "net_device_ops_extended" $(LINUXSRC)/include/linux/netdevice.h),) + DISTRO_CFLAG += -DNETDEV_FEATURE_CONTROL + endif +endif + +ifneq ($(shell grep -o "ndo_rx_flow_steer" $(LINUXSRC)/include/linux/netdevice.h),) + ifeq ($(shell grep -o "netdev_rfs_info" $(LINUXSRC)/include/linux/netdevice.h),) + DISTRO_CFLAG += -DNETDEV_RX_FLOW_STEER + endif +endif + +ifneq ($(shell grep -o "ndo_busy_poll" $(LINUXSRC)/include/linux/netdevice.h),) + ifeq ($(shell grep -o "net_device_extended" $(LINUXSRC)/include/linux/netdevice.h),) + DISTRO_CFLAG += -DNETDEV_BUSY_POLL + endif +endif + +ifneq ($(shell grep -o "ndo_get_stats64" $(LINUXSRC)/include/linux/netdevice.h),) + ifeq ($(shell grep -o "net_device_ops_ext" $(LINUXSRC)/include/linux/netdevice.h),) + DISTRO_CFLAG += -DNETDEV_GET_STATS64 + endif + ifneq ($(shell grep -o "net_device_ops_extended" $(LINUXSRC)/include/linux/netdevice.h),) + DISTRO_CFLAG += -DNETDEV_GET_STATS64 + endif + ifneq ($(shell grep "ndo_get_stats64" $(LINUXSRC)/include/linux/netdevice.h | grep -o "void"),) + DISTRO_CFLAG += -DNETDEV_GET_STATS64_VOID + endif +endif + +ifneq ($(shell grep -o "ndo_get_vf_config" $(LINUXSRC)/include/linux/netdevice.h),) + DISTRO_CFLAG += -DHAVE_NDO_GET_VF_CONFIG +endif + +ifneq ($(shell grep -A 2 "ndo_bridge_getlink" $(LINUXSRC)/include/linux/netdevice.h | grep -o "nlflags"),) + ifneq ($(shell grep -A 3 "ndo_dflt_bridge_getlink" $(LINUXSRC)/include/linux/rtnetlink.h | grep -o "filter_mask"),) + DISTRO_CFLAG += -DHAVE_NDO_BRIDGE_GETLINK + endif +endif + +ifneq ($(shell grep -o "ndo_set_vf_link_state" $(LINUXSRC)/include/linux/netdevice.h),) + ifeq ($(shell grep -o "net_device_ops_ext" $(LINUXSRC)/include/linux/netdevice.h),) + DISTRO_CFLAG += -DHAVE_NDO_SET_VF_LINK_STATE + endif + ifneq ($(shell grep -o "net_device_ops_extended" $(LINUXSRC)/include/linux/netdevice.h),) + DISTRO_CFLAG += -DHAVE_NDO_SET_VF_LINK_STATE + endif +endif + +ifneq ($(shell grep -o "ndo_set_vf_spoofchk" $(LINUXSRC)/include/linux/netdevice.h),) + ifeq ($(shell grep -o "net_device_ops_ext" $(LINUXSRC)/include/linux/netdevice.h),) + DISTRO_CFLAG += -DHAVE_VF_SPOOFCHK + endif + ifneq ($(shell grep -o "net_device_ops_extended" $(LINUXSRC)/include/linux/netdevice.h),) + DISTRO_CFLAG += -DHAVE_VF_SPOOFCHK + endif +endif + +ifneq ($(shell grep -A 1 "ndo_set_vf_vlan" $(LINUXSRC)/include/linux/netdevice.h | grep -o "proto"),) + ifeq ($(shell grep -o "net_device_ops_extended" $(LINUXSRC)/include/linux/netdevice.h),) + DISTRO_CFLAG += -DNEW_NDO_SET_VF_VLAN + endif +endif + +ifneq ($(shell grep -o "ndo_set_vf_vlan_rh73" $(LINUXSRC)/include/linux/netdevice.h),) + DISTRO_CFLAG += -DHAVE_NDO_SET_VF_VLAN_RH73 +endif + +ifneq ($(shell grep -o "ndo_setup_tc" $(LINUXSRC)/include/linux/netdevice.h),) + DISTRO_CFLAG += -DHAVE_SETUP_TC + ifneq ($(shell grep -o "struct tc_to_netdev" $(LINUXSRC)/include/linux/netdevice.h),) + DISTRO_CFLAG += -DHAVE_TC_TO_NETDEV + ifneq ($(shell grep -o "struct tc_mqprio_qopt" $(LINUXSRC)/include/linux/netdevice.h),) + DISTRO_CFLAG += -DHAVE_MQPRIO_QOPT + endif + ifneq ($(shell grep -A 1 "ndo_setup_tc" $(LINUXSRC)/include/linux/netdevice.h | grep -o "u32 chain_index"),) + DISTRO_CFLAG += -DHAVE_CHAIN_INDEX + endif + endif +endif + +ifneq ($(shell grep -o "netdev_get_num_tc" $(LINUXSRC)/include/linux/netdevice.h),) + DISTRO_CFLAG += -DHAVE_GET_NUM_TC +endif + +ifneq ($(shell grep -so "netdev_features_t" $(LINUXSRC)/include/linux/netdev_features.h || \ + grep -o "netdev_features_t" $(LINUXSRC)/include/linux/netdevice.h),) + DISTRO_CFLAG += -DHAVE_NETDEV_FEATURES_T +endif + +ifneq ($(shell grep -o "ndo_fix_features" $(LINUXSRC)/include/linux/netdevice.h),) + DISTRO_CFLAG += -DHAVE_NDO_FIX_FEATURES +endif + +ifneq ($(shell grep -o "netif_set_real_num_rx" $(LINUXSRC)/include/linux/netdevice.h),) + DISTRO_CFLAG += -DHAVE_NETIF_SET_REAL_NUM_RX +endif + +ifneq ($(shell grep -o "netif_get_num_default_rss_queues" $(LINUXSRC)/include/linux/netdevice.h),) + DISTRO_CFLAG += -DHAVE_NETIF_GET_DEFAULT_RSS +endif + +ifneq ($(shell grep -o "ndo_vlan_rx_register" $(LINUXSRC)/include/linux/netdevice.h),) + DISTRO_CFLAG += -DHAVE_VLAN_RX_REGISTER +endif + +ifneq ($(shell grep -o "ndo_xdp" $(LINUXSRC)/include/linux/netdevice.h),) + DISTRO_CFLAG += -DHAVE_NDO_XDP + ifneq ($(shell ls $(LINUXSRC)/include/net/bpf_trace.h > /dev/null 2>&1 && echo bpf_trace),) + DISTRO_CFLAG += -DHAVE_BPF_TRACE + endif +endif + +ifneq ($(shell grep -o "netdev_name" $(LINUXSRC)/include/linux/netdevice.h),) + DISTRO_CFLAG += -DHAVE_NETDEV_NAME +endif + +ifneq ($(shell grep -o "netdev_update_features" $(LINUXSRC)/include/linux/netdevice.h),) + DISTRO_CFLAG += -DHAVE_NETDEV_UPDATE_FEATURES +endif + +ifneq ($(shell grep -o "dev_port" $(LINUXSRC)/include/linux/netdevice.h),) + DISTRO_CFLAG += -DHAVE_DEV_PORT +endif + +ifneq ($(shell grep -o "napi_hash_add" $(LINUXSRC)/include/linux/netdevice.h),) + DISTRO_CFLAG += -DHAVE_NAPI_HASH_ADD +endif + +ifneq ($(shell grep -o "napi_hash_del" $(LINUXSRC)/include/linux/netdevice.h),) + DISTRO_CFLAG += -DHAVE_NAPI_HASH_DEL +endif + +ifneq ($(shell grep "napi_complete_done" $(LINUXSRC)/include/linux/netdevice.h | grep -o "bool"),) + DISTRO_CFLAG += -DHAVE_NEW_NAPI_COMPLETE_DONE +endif + +ifneq ($(shell grep -o "min_mtu" $(LINUXSRC)/include/linux/netdevice.h),) + DISTRO_CFLAG += -DHAVE_MIN_MTU +endif + +ifneq ($(shell grep -o "prandom_bytes" $(LINUXSRC)/include/linux/random.h),) + DISTRO_CFLAG += -DHAVE_PRANDOM_BYTES +endif + +ifneq ($(shell grep -o "tcp_v6_check" $(LINUXSRC)/include/net/ip6_checksum.h),) + DISTRO_CFLAG += -DHAVE_TCP_V6_CHECK +endif + +ifneq ($(shell grep -o "usleep_range" $(LINUXSRC)/include/linux/delay.h),) + DISTRO_CFLAG += -DHAVE_USLEEP_RANGE +endif + +ifneq ($(shell grep -o "vzalloc" $(LINUXSRC)/include/linux/vmalloc.h),) + DISTRO_CFLAG += -DHAVE_VZALLOC +endif + +ifneq ($(shell grep -o "pcie_get_minimum_link" $(LINUXSRC)/include/linux/pci.h),) + DISTRO_CFLAG += -DHAVE_PCIE_GET_MINIMUM_LINK +endif + +ifneq ($(shell grep -o "pcie_capability_read_word" $(LINUXSRC)/include/linux/pci.h),) + DISTRO_CFLAG += -DHAVE_PCIE_CAPABILITY_READ_WORD +endif + +ifneq ($(shell grep -o "PCIE_SPEED_2_5GT" $(LINUXSRC)/include/linux/pci.h),) + DISTRO_CFLAG += -DHAVE_PCIE_BUS_SPEED +endif + +ifneq ($(shell grep -o "pci_is_bridge" $(LINUXSRC)/include/linux/pci.h),) + DISTRO_CFLAG += -DHAVE_PCI_IS_BRIDGE +endif + +ifneq ($(shell ls $(LINUXSRC)/include/$(UAPI)/linux/net_tstamp.h > /dev/null 2>&1 && echo net_tstamp),) + ifneq ($(shell ls $(LINUXSRC)/include/linux/timecounter.h > /dev/null 2>&1 && echo timecounter),) + ifneq ($(shell ls $(LINUXSRC)/include/linux/timekeeping.h > /dev/null 2>&1 && echo timekeeping),) + ifneq ($(shell grep -o "HWTSTAMP_FILTER_PTP_V2_EVENT" $(LINUXSRC)/include/$(UAPI)/linux/net_tstamp.h),) + DISTRO_CFLAG += -DHAVE_IEEE1588_SUPPORT + endif + endif + endif +endif + +EXTRA_CFLAGS += $(DISTRO_CFLAG) -DCHIMP_FW -DCONFIG_BNXT_BPO_FLASHDEV -DHSI_DBG_DISABLE -DCONFIG_BNXT_BPO_RE + +cflags-y += $(EXTRA_CFLAGS) + +obj-$(CONFIG_BNXT_BPO) += bnxt_en_bpo.o +bnxt_en_bpo-y := bnxt.o bnxt_ethtool.o bnxt_sriov.o bnxt_dcb.o bnxt_ulp.o bnxt_xdp.o bnxt_ptp.o #decode_hsi.o only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/bnxt/README.TXT +++ linux-raspi2-4.4.0/ubuntu/bnxt/README.TXT @@ -0,0 +1,948 @@ + README Notes + Broadcom bnxt_en Linux Driver + Version 1.8.1 + 07/11/2017 + + Broadcom Limited + 5300 California Avenue, + Irvine, CA 92617 + + Copyright (c) 2015 - 2016 Broadcom Corporation + Copyright (c) 2016 - 2017 Broadcom Limited + All rights reserved + + +Table of Contents +================= + + Introduction + Limitations + Port Speeds + BNXT_EN Driver Dependencies + BNXT_EN Driver Settings + Autoneg + Energy Efficient Ethernet + Enabling Receive Side Scaling (RSS) + Enabling Accelerated Receive Flow Steering (RFS) + Enabling Busy Poll Sockets + Enabling SR-IOV + Virtual Ethernet Bridge (VEB) + Hardware QoS + PTP Hardware Clock + BNXT_EN Driver Parameters + BNXT_EN Driver Defaults + Statistics + Unloading and Removing Driver + Updating Firmware for Broadcom NetXtreme-C and NetXtreme-E devices + Updating Firmware for Broadcom Nitro device + + +Introduction +============ + +This file describes the bnxt_en Linux driver for the Broadcom NetXtreme-C +and NetXtreme-E BCM573xx and BCM574xx 10/25/40/50 Gbps Ethernet Network +Controllers and Broadcom Nitro BCM58700 4-port 1/2.5/10 Gbps Ethernet Network +Controller. + + +Limitations +=========== + +1. The current version of the driver will compile on RHEL7.x, RHEL6.x, +OLE6.x UEK, SLES12, SLES11SP1 and newer, most 3.x/4.x kernels, and some +2.6 kernels starting from 2.6.32. + +2. Laser needs to be brought up for Nitro BCM58700 Ethernet controller +using the following command, to bring up the Link. + + i2cset -f -y 1 0x70 0 7 && i2cset -f -y 1 0x24 0xff 0x0 + +3. Each device supports hundreds of MSIX vectors. The driver will enable +all MSIX vectors when it loads. On some systems running on some kernels, +the system may run out of interrupt descriptors. + + +Port Speeds +=========== + +On some dual-port devices, the port speed of each port must be compatible +with the port speed of the other port. 10Gbps and 25Gbps are not compatible +speeds. For example, if one port is set to 10Gbps and link is up, the other +port cannot be set to 25Gbps. However, the driver will allow incompatible +speeds to be set on the two ports if link is not up yet. Subsequent link up +on one port will render the incompatible speed on the other port to become +unsupported. A console message like this may appear when this scenario +happens: + + bnxt_en 0000:04:00.0 eth0: Link speed 25000 no longer supported + +If the link is up on one port, the driver will not allow the other port to +be set to an incompatible speed. An attempt to do that will result in an +error. For example, eth0 and eth1 are the 2 ports of the dual-port device, +eth0 is set to 10Gbps and link is up. + + ethtool -s eth1 speed 25000 + Cannot set new settings: Invalid argument + not setting speed + +This operation will only be allowed when the link goes down on eth0 or if +eth0 is brought down using ifconfig/ip. + +On some NPAR (NIC partioning) devices where one port is shared by multiple +PCI functions, the port speed is pre-configured and cannot be changed by +the driver. + +See Autoneg section below for additional information. + + +BNXT_EN Driver Dependencies +=========================== + +The driver has no dependencies on user-space firmware packages as all necessary +firmware must be programmed in NVRAM(or QSPI for Nitro BCM58700 devices). +Starting with driver version 1.0.0, the goal is that the driver will be +compatible with all future versions of production firmware. All future versions +of the driver will be backwards compatible with firmware as far back as the +first production firmware. + +The first production firmware is version 20.1.11 using Hardware Resource +Manager (HWRM) spec. 1.0.0. + +ethtool -i displays the firmware versions. For example: + + ethtool -i eth0 + +will show among other things: + + firmware-version: 20.1.11/1.0.0 pkg 20.02.00.03 + +In this example, the first version number (20.1.11) is the firmware version, +the second version number (1.0.0) is the HWRM spec. version. The third +version number (20.02.00.03) is the package version of all the different +firmware components in NVRAM. The package version may not be available on +all devices. + +Using kernels older than 4.7, if CONFIG_VLAN_MODULE kernel option is set as a +module option, the vxlan.ko module must be loaded before the bnxt_en.ko module. + + +BNXT_EN Driver Settings +======================= + +The bnxt_en driver settings can be queried and changed using ethtool. The +latest ethtool can be downloaded from +ftp://ftp.kernel.org/pub/software/network/ethtool if it is not already +installed. The following are some common examples on how to use ethtool. See +the ethtool man page for more information. ethtool settings do not persist +across reboot or module reload. The ethtool commands can be put in a startup +script such as /etc/rc.local to preserve the settings across a reboot. On +Red Hat distributions, "ethtool -s" parameters can be specified in the +ifcfg-ethx scripts using the ETHTOOL_OPTS keyword. + +Some ethtool examples: + +1. Show current speed, duplex, and link status: + + ethtool eth0 + +2. Set speed: + +Example: Set speed to 10Gbps with autoneg off: + + ethtool -s eth0 speed 10000 autoneg off + +Example: Set speed to 25Gbps with autoneg off: + + ethtool -s eth0 speed 25000 autoneg off + +On some NPAR (NIC partitioning) devices, the port speed and flow control +settings cannot be changed by the driver. + +See Autoneg section below for additional information on configuring +Autonegotiation. + +3. Show offload settings: + + ethtool -k eth0 + +4. Change offload settings: + +Example: Turn off TSO (TCP Segmentation Offload) + + ethtool -K eth0 tso off + +Example: Turn off hardware GRO and LRO + + ethtool -K eth0 gro off lro off + +Example: Turn on hardware GRO only + + ethtool -K eth0 gro on lro off + +Note that if both gro and lro are set, the driver will use hardware GRO. + +5. Show ring sizes: + + ethtool -g eth0 + +6. Change ring sizes: + + ethtool -G eth0 rx N + +Note that the RX Jumbo ring size is set automatically when needed and +cannot be changed by the user. + +7. Get statistics: + + ethtool -S eth0 + +8. Show number of channels (rings): + + ethtool -l eth0 + +9. Set number of channels (rings): + + ethtool -L eth0 rx N tx N combined 0 + + ethtool -L eth0 rx 0 tx 0 combined M + +Note that the driver can support either all combined or all rx/tx channels, +but not a combination of combined and rx/tx channels. The default is +combined channels to match the number of CPUs up to 8. Combined channels +use less system resources but may have lower performance than rx/tx channels +under very high traffic stress. rx and tx channels can have different numbers +for rx and tx but must both be non-zero. + +10. Show interrupt coalescing settings: + + ethtool -c eth0 + +11. Set interrupt coalescing settings: + + ethtool -C eth0 rx-frames N + + Note that only these parameters are supported: + rx-usecs, rx-frames, rx-usecs-irq, rx-frames-irq, + tx-usecs, tx-frames, tx-usecs-irq, tx-frames-irq, + stats-block-usecs. + +12. Show RSS flow hash indirection table and RSS hash key: + + ethtool -x eth0 + +13. Run self test: + + ethtool -t eth0 + + Note that only single function PFs can execute self tests. If a PF has + active VFs, only online tests can be executed. + +14. See ethtool man page for more options. + + +Autoneg +======= + +The bnxt_en driver supports Autonegotiation of speed and flow control on +most devices. Some dual-port 25G devices do not support Autoneg. Autoneg +must be enabled for 10GBase-T devices. + +Note that parallel detection is not supported when autonegotiating +50GBase-CR2, 40GBase-CR4, 25GBase-CR, 10GbE SFP+. If one side is +autonegoatiating and the other side is not, link will not come up. + +25G and 50G advertisements are newer standards first defined in the 4.7 +kernel's ethtool interface. To fully support these new advertisement speeds +for autonegotiation, 4.7 (or newer) kernel and a newer ethtool utility are +required. + +Below are some examples to illustrate the limitations when using 4.6 and +older kernels: + +1. Enable Autoneg with all supported speeds advertised when the device +currently has Autoneg disabled: + + ethtool -s eth0 autoneg on advertise 0x0 + +Note that to advertise all supported speeds (including 25G and 50G), the +device must initially have Autoneg disabled. advertise is a hexadecimal +value specifying one or more advertised speed. 0x0 is special value that +means all supported speeds. See ethtool man page. These advertise values +are supported by the driver: + +0x020 1000baseT Full +0x1000 10000baseT Full +0x1000000 40000baseCR4 Full + +2. Enable Autoneg with only 10G advertised: + + ethtool -s eth0 autoneg on advertise 0x1000 + +or: + + ethtool -s eth0 autoneg on speed 10000 duplex full + + +3. Enable Autoneg with only 40G advertised: + + ethtool -s eth0 autoneg on advertise 0x01000000 + +4. Enable Autoneg with 40G and 10G advertised: + + ethtool -s eth0 autoneg on advertise 0x01001000 + +Note that the "Supported link modes" and "Advertised link modes" will not +show 25G and 50G even though they may be supported or advertised. For +example, on a device that is supporting and advertising 10G, 25G, 40G, and +50G, and linking up at 50G, ethtool will show the following: + + ethtool eth0 + Settings for eth0: + Supported ports: [ FIBRE ] + Supported link modes: 10000baseT/Full + 40000baseCR4/Full + Supported pause frame use: Symmetric Receive-only + Supports auto-negotiation: Yes + Advertised link modes: 10000baseT/Full + 40000baseCR4/Full + Advertised pause frame use: Symmetric + Advertised auto-negotiation: Yes + Speed: 50000Mb/s + Duplex: Full + Port: FIBRE + PHYAD: 1 + Transceiver: internal + Auto-negotiation: on + Current message level: 0x00000000 (0) + + Link detected: yes + +Using kernels 4.7 or newer and ethtool version 4.8 or newer, 25G and 50G +advertisement speeds can be properly configured and displayed, without any +of the limitations described above. ethtool version 4.8 has a bug that +ignores the advertise parameter, so it is recommended to use ethtool 4.10. +Example ethtool 4.10 output showing 10G/25G/40G/50G advertisement settings: + + ethtool eth0 + Settings for eth0: + Supported ports: [ FIBRE ] + Supported link modes: 10000baseT/Full + 40000baseCR4/Full + 25000baseCR/Full + 50000baseCR2/Full + Supported pause frame use: Symmetric Receive-only + Supports auto-negotiation: Yes + Advertised link modes: 10000baseT/Full + 40000baseCR4/Full + 25000baseCR/Full + 50000baseCR2/Full + Advertised pause frame use: No + Advertised auto-negotiation: Yes + Speed: 50000Mb/s + Duplex: Full + Port: Direct Attach Copper + PHYAD: 1 + Transceiver: internal + Auto-negotiation: on + Supports Wake-on: d + Wake-on: d + Current message level: 0x00000000 (0) + + Link detected: yes + +These are the complete advertise values supported by the driver using 4.7 +kernel or newer and a compatible version of ethtool supporting the new +values: + +0x020 1000baseT Full +0x1000 10000baseT Full +0x1000000 40000baseCR4 Full +0x80000000 25000baseCR Full +0x400000000 50000baseCR2 Full + +Note that the driver does not make a distinction on the exact physical +layer encoding and media type for a link speed. For example, at 50G, the +device may support 50000baseCR2 and 50000baseSR2 for copper and multimode +fiber cables respectively. Regardless of what cabling is used for 50G, +the driver currently uses only the ethtool value defined for 50000baseCR2 +to cover all variants of the 50G media types. The same applies to all +other advertise value for other link speeds listed above. + + +Energy Efficient Ethernet +========================= + +The driver supports Energy Efficient Ethernet (EEE) settings on 10GBase-T +devices. If enabled, and connected to a link partner that advertises EEE, +EEE will become active. EEE saves power by entering Low Power Idle (LPI) +state when the transmitter is idle. The downside is increased latency as +it takes a few microseconds to exit LPI to start transmitting again. + +On a 10GBase-T device that supports EEE, the link up console message will +include the current state of EEE. For example: + + bnxt_en 0000:05:00.0 eth0: NIC Link is Up, 10000 Mbps full duplex, Flow control: none + bnxt_en 0000:05:00.0 eth0: EEE is active + +The active state means that EEE is negotiated to be active during +autonegotiation. Additional EEE parameters can be obtained using ethtool: + + ethtool --show-eee eth0 + + EEE Settings for eth0: + EEE status: enabled - active + Tx LPI: 8 (us) + Supported EEE link modes: 10000baseT/Full + Advertised EEE link modes: 10000baseT/Full + Link partner advertised EEE link modes: 10000baseT/Full + +The tx LPI timer of 8 microseconds is currently fixed and cannot be adjusted. +EEE is only supported on 10GBase-T. 1GBase-T does not currently support EEE. + +To disable EEE: + + ethtool --set-eee eth0 eee off + +To enable EEE, but disable LPI: + + ethtool --set-eee eth0 eee on tx-lpi off + +This setting will negotiate EEE with the link partner but the transmitter on +eth0 will not enter LPI during idle. The link partner may independently +choose to enter LPI when its transmitter is idle. + + +Enabling Receive Side Scaling (RSS) +=================================== + +By default, the driver enables RSS by allocating receive rings to match the +the number of CPUs (up to 8). Incoming packets are run through a 4-tuple +or 2-tuple hash function for TCP/IP packets and IP packets respectively. +Non fragmented UDP packets are run through a 4-tuple hash function on newer +devices (2-tuple on older devices). See below for more information about +4-tuple and 2-tuple and how to configure it. + +The computed hash value will determine the receive ring number for the +packet. This way, RSS distributes packets to multiple receive rings while +guaranteeing that all packets from the same flow will be steered to the same +receive ring. The processing of each receive ring can be done in parallel +by different CPUs to achieve higher performance. For example, irqbalance +will distribute the MSIX vector of each RSS receive ring across CPUs. +However, RSS does not guarantee even distribution or optimal distribution of +packets. + +To disable RSS, set the number of receive channels (or combined channels) to 1: + + ethtool -L eth0 rx 1 combined 0 + +or + + ethtool -L eth0 combined 1 rx 0 tx 0 + +To re-enable RSS, set the number of receive channels or (combined channels) to +a value higher than 1. + +The RSS hash can be configured for 4-tuple or 2-tuple for various flow types. +4-tuple means that the source, destination IP addresses and layer 4 port +numbers are included in the hash function. 2-tuple means that only the source +and destination IP addresses are included. 4-tuple generally gives better +results. Below are some examples on how to set and display the hash function. + +To display the current hash for TCP over IPv4: + + ethtool -u eth0 rx-flow-hash tcp4 + +To disable 4-tuple (enable 2-tuple) for UDP over IPv4: + + ethtool -U eth0 rx-flow-hash udp4 sd + +To enable 4-tuple for UDP over IPv4: + + ethtool -U eth0 rx-flow-hash udp4 sdfn + + +Enabling Accelerated Receive Flow Steering (RFS) +================================================ + +RSS distributes packets based on n-tuple hash to multiple receive rings. +The destination receive ring of a packet flow is solely determined by the +hash value. This receive ring may or may not be processed in the kernel by +the CPU where the sockets application consuming the packet flow is running. + +Accelerated RFS will steer incoming packet flows to the ring whose MSI-X +vector will interrupt the CPU running the sockets application consuming +the packets. The benefit is higher cache locality of the packet data from +the moment it is processed by the kernel until it is consumed by the +application. + +Accelerated RFS requires n-tuple filters to be supported. On older +devices, only Physical Functions (PFs, see SR-IOV below) support n-tuple +filters. On the latest devices, n-tuple filters are supported and enabled +by default on all functions. Use ethtool to disable n-tuple filters: + + ethtool -K eth0 ntuple off + +To re-enable n-tuple filters: + + ethtool -K eth0 ntuple on + +After n-tuple filters are enabled, Accelerated RFS will be automatically +enabled when RFS is enabled. These are example steps to enable RFS on +a device with 8 rx rings: + +echo 32768 > /proc/sys/net/core/rps_sock_flow_entries +echo 2048 > /sys/class/net/eth0/queues/rx-0/rps_flow_cnt +echo 2048 > /sys/class/net/eth0/queues/rx-1/rps_flow_cnt +echo 2048 > /sys/class/net/eth0/queues/rx-2/rps_flow_cnt +echo 2048 > /sys/class/net/eth0/queues/rx-3/rps_flow_cnt +echo 2048 > /sys/class/net/eth0/queues/rx-4/rps_flow_cnt +echo 2048 > /sys/class/net/eth0/queues/rx-5/rps_flow_cnt +echo 2048 > /sys/class/net/eth0/queues/rx-6/rps_flow_cnt +echo 2048 > /sys/class/net/eth0/queues/rx-7/rps_flow_cnt + +These steps will set the global flow table to have 32K entries and each +receive ring to have 2K entries. These values can be adjusted based on +usage. + +Note that for Accelerated RFS to be effective, the number of receive channels +(or combined channels) should generally match the number of CPUs. Use +ethtool -L to fine-tune the number of receive channels (or combined channels) +if necessary. Accelerated RFS has precedence over RSS. If a packet matches an +n-tuple filter rule, it will be steered to the RFS specified receive ring. +If the packet does not match any n-tuple filter rule, it will be steered +according to RSS hash. + +To display the active n-tuple filters setup for Accelerated RFS: + + ethtool -n eth0 + +IPv6, GRE and IP-inIP n-tuple filters are supported on 4.5 and newer kernels. + + +Enabling Busy Poll Sockets +========================== + +Using 3.11 and newer kernels (also backported to some major distributions), +Busy Poll Sockets are supported by the bnxt_en driver if +CONFIG_NET_RX_BUSY_POLL is enabled. Individual sockets can set the +SO_BUSY_POLL option, or it can be enabled globally using sysctl: + + sysctl -w net.core.busy_read=50 + +This sets the time to busy read the device's receive ring to 50 usecs. +For socket applications waiting for data to arrive, using this method +can decrease latency by 2 or 3 usecs typically at the expense of +higher CPU utilization. The value to use depends on the expected +time the socket will wait for data to arrive. Use 50 usecs as a +starting recommended value. + +In addition, the following sysctl parameter should also be set: + + sysctl -w net.core.busy_poll=50 + +This sets the time to busy poll for socket poll and select to 50 usecs. +50 usecs is a recommended value for a small number of polling sockets. + + +Enabling SR-IOV +=============== + +The Broadcom NetXtreme-C and NetXtreme-E devices support Single Root I/O +Virtualization (SR-IOV) with Physical Functions (PFs) and Virtual Functions +(VFs) sharing the Ethernet port. The same bnxt_en driver is used for both +PFs and VFs under Linux. + +Only the PFs are automatically enabled. If a PF supports SR-IOV, lspci +will show that it has the SR-IOV capability and the total number of VFs +supported. To enable one or more VFs, write the desired number of VFs +to the following sysfs file: + + /sys/bus/pci/devices/:::/sriov_numvfs + +For example, to enable 4 VFs on bus 82 device 0 function 0: + + echo 4 > /sys/bus/pci/devices/0000:82:00.0/sriov_numvfs + +To disable the VFs, write 0 to the same sysfs file. Note that to change +the number of VFs, 0 must first be written before writing the new number +of VFs. + +On older 2.6 kernels that do not support the sysfs method to enable SR-IOV, +the driver uses the module parameter "num_vfs" to enable the desired number +of VFs. Note that this is a global parameter that applies to all PF +devices in the system. For example, to enable 4 VFs on all supported PFs: + + modprobe bnxt_en num_vfs=4 + +The 4 VFs of each supported PF will be enabled when the PF is brought up. + +The VF and the PF operate almost identically under the same Linux driver +but not all operations supported on the PF are supported on the VF. + +The resources needed by each VF are assigned by the PF based on how many +VFs are requested to be enabled and the resources currently used by the PF. +It is important to fully configure the PF first with all the desired features, +such as number of RSS/TSS channels, jumbo MTU, etc, before enabling SR-IOV. +After enabling SR-IOV, there may not be enough resources left to reconfigure +the PF. + +The resources are evenly divided among the VFs. Enabling a large number of +VFs will result in less resources (such as RSS/TSS channels) for each VF. + +Refer to other documentation on how to map a VF to a VM or a Linux Container. + +Some attributes of a VF can be set using iproute2 through the PF. SR-IOV +must be enabled by setting the number of desired VFs before any attributes +can be set. Some examples: + +1. Set VF MAC address: + + ip link set vf mac + +Example: + + ip link set eth0 vf 0 mac 00:12:34:56:78:9a + +Note that if the VF MAC addres is not set as shown, a random MAC address will +be used for the VF. If the VF MAC address is changed while the VF driver has +already brought up the VF, it is necessary to bring down and up the VF before +the new MAC address will take effect. + +2. Set VF link state: + + ip link set vf state auto|enable|disable + +The default is "auto" which reflects the true link state. Setting the VF +link to "enable" allows loopback traffic regardless of the true link state. + +Example: + + ip link set eth0 vf 0 state enable + +3. Set VF default VLAN: + + ip link set vf vlan + +Example: + + ip link set eth0 vf 0 vlan 100 + +4. Set VF MAC address spoof check: + + ip link set vf spoofchk on|off + +Example: + + ip link set eth0 vf 0 spoofchk on + +Note that spoofchk is only effective if a VF MAC address has been set as +shown in #1 above. + + +Virtual Ethernet Bridge (VEB) +============================= + +The NetXtreme-C/E devices contain an internal hardware Virtual Ethernet +Bridge (VEB) to bridge traffic between virtual ports enabled by SR-IOV. +VEB is normally turned on by default. VEB can be switched to VEPA +(Virtual Ethernet Port Aggregator) mode if an external VEPA switch is used +to provide bridging between the virtual ports. + +Use the bridge command to switch between VEB/VEPA mode. Note that only +the PF driver will accept the command for all virtual ports belonging to the +same physical port. The bridge mode cannot be changed if there are multiple +PFs sharing the same physical port (e.g. NPAR or Multi-Host). + +To set the bridge mode: + + bridge link set dev hwmode {veb/vepa} + +To show the bridge mode: + + bridge link show dev + +Example: + + bridge link set dev eth0 hwmode vepa + +Note that older firmware does not support VEPA mode. + + +Hardware QoS +============ + +The NetXtreme-C/E devices support hardware QoS. The hardware has multiple +internal queues, each can be configured to support different QoS attributes, +such as latency, bandwidth, lossy or lossless data delivery. These QoS +attributes are specified in the IEEE Data Center Bridging (DCB) standard +extensions to Ethernet. DCB parameters include Enhanced Transmission +Selection (ETS) and Priority-based Flow Control (PFC). In a DCB network, +all traffic will be classified into multiple Traffic Classes (TCs), each +of which is assigned different DCB parameters. + +Typically, all traffic is VLAN tagged with a 3-bit priority in the VLAN +tag. The VLAN priority is mapped to a TC. For example, a network with +3 TCs may have the following priority to TC mapping: + +0:0,1:0,2:0,3:2,4:1,5:0,6:0,7:0 + +This means that priorities 0,1,2,5,6,7 are mapped to TC0, priority 3 to TC2, +and priority 4 to TC1. ETS allows bandwidth assigment for the TCs. For +example, the ETS bandwidth assignment may be 40%, 50%, and 10% to TC0, TC1, +and TC2 respectively. PFC provides link level flow control for each VLAN +priority independently. For example, if PFC is enabled on VLAN priority 4, +then only TC1 will be subject to flow control without affecting the other +two TCs. + +Typically, DCB parameters are automatically configured using the DCB +Capabilities Exchange protocol (DCBX). The bnxt_en driver currently +supports the Linux lldpad DCBX agent. lldpad supports all versions of +DCBX but the bnxt_en driver currently only supports the IEEE DCBX version. +Typically, the DCBX enabled switch will convey the DCB parameters to lldpad +which will then send the hardware QoS parameters to bnxt_en to configure +the device. Refer to the lldpad(8) and lldptool(8) man pages for further +information on how to setup the lldpad DCBX agent. + +To support hardware TCs, the proper Linux qdisc must be used to classify +outgoing traffic into their proper hardware TCs. For example, the mqprio +qdisc may be used. A simple example using mqprio qdisc is illustrated below. +Refer to the tc-mqprio(8) man page for more information. + + tc qdisc add dev eth0 root mqprio num_tc 3 map 0 0 0 2 1 0 0 0 hw 1 + +The above command creates the mqprio qdisc with 3 hardware TCs. The priority +to TC mapping is the same as the example at the beginning of the section. +The bnxt_en driver will create 3 groups of tx rings, with each group mapping +to an internal hardware TC. + +Once this is created, SKBs with different priorities will be mapped to the +3 TCs according to the specified map above. Note that this SKB priority +is only used to direct packets within the kernel stack to the proper hardware +ring. If the outgoing packets are VLAN tagged, the SKB priority does not +automatically map to the VLAN priority of the packet. The VLAN egress map +has to be set up to have the proper VLAN priority for each packet. + +In the current example, if VLAN 100 is used for all traffic, the VLAN egress +map can be set up like this: + + ip link add link eth0 name eth0.100 type vlan id 100 \ + egress 0:0 1:1 2:2 3:3 4:4 5:5 6:6 7:7 + +This creates a one-to-one mapping of SKB priority to VLAN egress priority. +In other words, SKB priority 0 maps VLAN priority 0, SKB priority 1 maps to +VLAN priority 1, etc. This one-to-one mapping should generally be used. + +If each TC has more than one ring, TSS will be performed to select a tx ring +within the TC. + +To display the current qdisc configuration: + + tc qdisc show + +Example output: + + qdisc mqprio 8010: dev eth0 root tc 3 map 0 0 0 2 1 0 0 0 0 0 0 0 0 0 0 0 + queues:(0:3) (4:7) (8:11) + +The example above shows that bnxt_en has allocated 4 tx rings for each of the +3 TCs. SKBs with priorities 0,1,2,5,6,7 will be transmitted using tx rings +0 to 3 (TC0). SKBs with priority 4 will be transmitted using rings 4 to 7 +(TC1). SKBs with priority 3 will be transmitted using rings 8 to 11 (TC2). + +Next, SKB priorities have to be set for different applications so that the +packets from the different applications will be mapped to the proper TCs. +By default, the SKB priority is set to 0. There are multiple methods to set +SKB priorities. net_prio cgroup is a convenient way to do this. Refer to the +link below for more information: + +https://www.kernel.org/doc/Documentation/cgroup-v1/net_prio.txt + +As mentioned previously, the DCB attributes of each TC are normally configured +by the DCBX agent in lldpad. It is also possible to set the DCB attributes +manually in a simple network or for test purposes. The following example +will manually set up eth0 with the example DCB local parameters mentioned at +the beginning of the section. + + lldpad -d + lldptool -T -i eth0 -V ETS-CFG tsa=0:ets,1:ets,2:ets \ + up2tc=0:0,1:0,2:0,3:2,4:1,5:0,6:0,7:0 \ + tcbw=40,50,10 + lldptool -T -i eth0 -V PFC enabled=4 + +Note that the ETS bandwidth distribution will only be evident when all +traffic classes are transmitting and reaching the link capacity. + +See lldptool-ets(8) and lldptool-pfc(8) man pages for more information. + +On an NPAR device with multiple partitions sharing the same network port, +DCBX cannot be run on more than one partition. In other words, the lldpad +adminStatus can be set to rxtx on no more than one partition. The same is +true for SRIOV virtual functions. DCBX cannot be run on the VFs. + +On these multi-function devices, the hardware TCs are generally shared +between all the functions. The DCB parameters negotiated and setup on +the main function (NPAR or PF function) will be the same on the other +functions sharing the same port. Note that the standard lldptool will +not be able to show the DCB parameters on the other functions which have +adminStatus disabled. + + +PTP Hardware Clock +================== + +The NetXtreme-C/E devices support PTP Hardware Clock which provides hardware +timestamps for PTP v2 packets. The Linux PTP project contains more +information about this feature. A newer 4.x kernel and newer firmware +(2.6.134 or newer) are required to use this feature. Only the first PF +of the network port has access to the hardware PTP feature. Use ethtool -T +to check if PTP Hardware Clock is supported. + + +BNXT_EN Module Parameters +========================= + +On newer 3.x/4.x kernels, the driver does not support any driver parameters. +Please use standard tools (sysfs, ethtool, iproute2, etc) to configure the +driver. + +The only exception is the "num_vfs" module parameter supported on older 2.6 +kernels to enable SR-IOV. Please see the SR-IOV section above. + + +BNXT_EN Driver Defaults +======================= + +Speed : 1G/2.5G/10G/25G/40G/50G depending on the board. + +Flow control : None + +MTU : 1500 (range 60 - 9500) + +Rx Ring Size : 511 (range 0 - 2047) + +Rx Jumbo Ring Size : 2044 (range 0 - 8191) automatically adjusted by the + driver. + +Tx Ring Size : 511 (range (MAX_SKB_FRAGS+1) - 2047) + + MAX_SKB_FRAGS varies on different kernels and + different architectures. On a 2.6/3.x kernel for + x86, MAX_SKB_FRAGS is 18. + +Number of RSS/TSS channels:Up to 8 combined channels to match the number of + CPUs + +TSO : Enabled + +GRO (hardware) : Enabled + +LRO : Disabled + +Coalesce rx usecs : 12 usec + +Coalesce rx usecs irq : 1 usec + +Coalesce rx frames : 15 frames + +Coalesce rx frames irq : 1 frame + +Coalesce tx usecs : 25 usec + +Coalesce tx usecs irq : 2 usec + +Coalesce tx frames : 30 frames + +Coalesce tx frames irq : 2 frame + +Coalesce stats usecs : 1000000 usec (range 250000 - 1000000, 0 to disable) + + +Statistics +========== + +The driver reports all major standard network counters to the stack. These +counters are reported in /proc/net/dev or by other standard tools such as +netstat -i. + +Note that the counters are updated every second by the firmware by +default. To increase the frequency of these updates, ethtool -C can +be used to increase the frequency to 0.25 seconds if necessary. + +More detailed statistics are reported by ethtool -S. Some of the counters +reported by ethtool -S are for diagnostics purposes only. For example, +the "rx_drops" counter reported by ethtool -S includes dropped packets +that don't match the unicast and multicast filters in the hardware. A +non-zero count is normal and does not generally reflect any error conditions. +This counter should not be confused with the "RX-DRP" counter reported by +netstat -i. The latter reflects dropped packets due to buffer overflow +conditions. + +Another example is the "tpa_aborts" counter reported by ethtool -S. It +counts the LRO (Large Receive Offload) aggregation aborts due to normal +TCP conditions. A high tpa_aborts count is generally not an indication +of any errors. + +The "rx_ovrsz_frames" counter reported by ethtool -S may count all +packets bigger than 1518 bytes when using earlier versions of the firmware. +Newer version of the firmware has reprogrammed the counter to count +packets bigger than 9600 bytes. + + +Unloading and Removing Driver +============================= + +rmmod bnxt_en + +Note that if SR-IOV is enabled and there are active VFs running in VMs, the +PF driver should never be unloaded. It can cause catastrophic failures such +as kernel panics or reboots. The only time the PF driver can be unloaded +with active VFs is when all the VFs and the PF are running in the same host +kernel environment with one driver instance controlling the PF and all the +VFs. Using Linux Containers is one such example where the PF driver can be +unloaded to gracefully shutdown the PF and all the VFs. + + +Updating Firmware for Broadcom NetXtreme-C and NetXtreme-E devices +================================================================== + +Controller firmware may be updated using the Linux request_firmware interface +in conjunction with the ethtool "flash device" interface. + +Using the ethtool utility, the controller's boot processor firmware may be +updated by copying the 2 "boot code" firmware files to the local /lib/firmware/ +directory: + + cp bc1_cm_a.bin bc2_cm_a.bin /lib/firmware + +and then issuing the following 2 ethtool commands (both are required): + + ethtool -f bc1_cm_a.bin 4 + + ethtool -f bc2_cm_a.bin 18 + +NVM packages (*.pkg files) containing controller firmware, microcode, +pre-boot software and configuration data may be installed into a controller's +NVRAM using the ethtool utility by first copying the .pkg file to the local +/lib/firmware/ directory and then executing a single command: + + ethtool -f + +Note: do not specify the full path to the file on the ethtool -f command-line. + +Note: root privileges are required to successfully execute these commands. + +After "flashing" new firmware into the controller's NVRAM, a cold restart of +the system is required for the new firmware to take effect. This requirement +will be removed in future firmware and driver versions. + +Updating Firmware for Broadcom Nitro device +=========================================== + +Nitro controller firmware should be updated from Uboot prompt by following the +below steps + + sf probe + sf erase 0x50000 0x30000 + tftpboot 0x85000000 /chimp_xxx.bin + sf write 0x85000000 0x50000 only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/bnxt/RELEASE.TXT +++ linux-raspi2-4.4.0/ubuntu/bnxt/RELEASE.TXT @@ -0,0 +1,1594 @@ + Release Notes + Broadcom bnxt_en Linux Driver + Version 1.8.1 + 07/11/2017 + + Broadcom Limited + 5300 California Avenue, + Irvine, CA 92617 + + Copyright (c) 2015 - 2016 Broadcom Corporation + Copyright (c) 2016 - 2017 Broadcom Limited + All rights reserved + +v1.8.1 (July 11, 2017) +====================== +This version uses HWRM 1.8.0 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. (CTRL-25863) Fix warnings and errors in netpoll mode. + 2. (CTRL-25665) Fix uninitalized ethtool -S counters when + interface is down on older kernels. + 3. (CTRL-25917) Fix crash when ifconfig is retreiving counters + while device is closing. + 4. (CTRL-26071) Fix occasional failures when changing ethtool -L + channels from combined to rx/tx or vice versa. + 5. Fix SRIOV on big-endian systems. + +Enhancements: + 1. Fix compile errors on 4.13 kernel. + 2. Allow users to disable periodic counter updates for debugging + purposes. + 3. Add PTP hardware timestamp support (requires HWRM 1.8.0) + 4. Update to HWRM 1.8.0 with better support for link duplex + reporting. + +v1.7.30 (June 16, 2017) +======================= +This version uses HWRM 1.7.8.1 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. Fix potential memory corruption when lots of RFS filters are in + use. (backported from 1.7.53) + 2. Fixed compile errors on 4.11 kernel. (backported from 1.7.51) + +Enhancements: + 1. (CTRL-25004) Add VEPA support. (backported from 1.7.54) + 2. Fix compile errors on RHEL7.4. (backported from 1.7.53) + +v1.7.25 (April 10, 2017) +======================== +This version uses HWRM 1.7.6.0 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. Fixed regression in v1.7.24 on the kernels that the fix was + intended for (e.g. 3.10). + +v1.7.24 (April 10, 2017) +======================= +This version uses HWRM 1.7.6.0 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. Fixed VF tx rate attribute on some older kernels (e.g. 3.10). + +v1.7.23 (April 8, 2017) +======================= +This version uses HWRM 1.7.6.2 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. (CTRL-25309) Do not allow lldpad to set host based DCBX if + firmware DCBX agent is running. + +v1.7.22 (April 7, 2017) +======================= +This version uses HWRM 1.7.6.2 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. (CTRL-25309) Report to DCBNL if firmware DCBX agent is enabled + so that lldpad will not try to configure the device. + 2. Fix VF qos attribute reporting. + +Enhancements: + 1. (CTRL-25284) Use up to 8 RSS rings by default on RHEL6.3 and + other similar old kernels. + +v1.7.21 (Mar 31, 2017) +======================= +This version uses HWRM 1.7.6.2 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Enhancements: + 1. (CTRL-24874) Cap the use of MSIX with max available completion + rings. + +v1.7.20 (Mar 29, 2017) +======================= +This version uses HWRM 1.7.5 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. DMA unmapping bug during shutdown in XDP mode. + 2. Removed ethtool -d which is unused and buggy. + 3. Fixed compile errors on 4.12 rc kernels. + 4. (CTRL-25056) Fixed NULL pointer crash in one open error path. + +Enhancements: + 1. (CTRL-24492) Use short TX BDs for XDP. + +v1.7.9 (Mar 08, 2017) +===================== +This version uses HWRM 1.7.5 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. Do not call firmware to get the list of available selftests + unless it is a single PF on a port. + 2. Do not allow offline tests if there are active VFs. + +v1.7.8 (Mar 07, 2017) +===================== +This version uses HWRM 1.7.5 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Enhancements: + 1. GPL clean up. Remove miscellaneous non-GPL files that are not + needed. + 2. Ignore 0 value in autoneg supported speed from firmware. + +v1.7.7 (Mar 04, 2017) +===================== +This version uses HWRM 1.7.5 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Enhancements: + 1. Updated to HWRM spec 1.7.5. + +v1.7.6 (Mar 03, 2017) +===================== +This version uses HWRM 1.7.4 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. (CTRL-24746) Fix phy loopback self test failure when link + speed is autoneg. + +v1.7.5 (Mar 01, 2017) +===================== +This version uses HWRM 1.7.4 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. (CTRL-24724) Perform function reset earlier so that reserved + rings will not be cleared by firmware. + +Enhancements: + 1. (CTRL-23660) Add ethtool -t selftest supported by HWRM 1.7.4. + 2. Disallow lldpad if firmware DCBX/LLDP agent is running. + 3. Notify RDMA driver during tx timeout. + +v1.7.4 (Feb 20, 2017) +===================== +This version uses HWRM 1.7.1 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. (SOC-5134) Reject driver probe against all bridge devices. + 2. (CTRL-24802) Fix NULL pointer dereference when open fails. + 3. (CTRL-24803) Fix PCI cleanup when probe fails. + +Enhancements: + 1. (CTRL-23667) Update to HWRM 1.7.1 spec to support VF MAC address + spoof check. + +v1.7.3 (Feb 13, 2017) +===================== +This version uses HWRM 1.7.0 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. (CTRL-24618) Fix ethtool -l pre-set max combined channels. + 2. (CTRL-24206) Fix bugs in retry NVRAM install update operation. + +Enhancements: + 1. (CTRL-24491, CTRL-24492) Merge with latest upstream XDP + implementation. + +v1.7.2 (Feb 6, 2017) +==================== +This version uses HWRM 1.7.0 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Enhancements: + 1. Removed -DNEW_TX compile option. It will always use the new + logic if HWRM spec is 1.6.1 or newer. + +v1.7.1 (Feb 6, 2017) +==================== +This version uses HWRM 1.7.0 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Enhancements: + 1. (CTRL-24206) Retry NVRAM install update with defragmentation. + +v1.7.0 (Feb 3, 2017) +==================== +This version uses HWRM 1.7.0 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. Fix compile errors on Ubuntu 4.2 kernel. + +Enhancements: + 1. (CTRL-24646) Add support for 57452 and 57454 devices. + +v1.6.10 (Jan 26, 2017) +====================== +This version uses HWRM 1.6.1 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. (CTRL-24550, CTRL-24540) Fix compile errors on various + distributions introduced by the Yocto Makefile changes for SoC. + +v1.6.9 (Jan 24, 2017) +===================== +This version uses HWRM 1.6.1 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. (CTRL-24522) Fix compile warnings on RHEL6.9. + 2. (CTRL-24491) Fix compile errors on newer kernels supporting XDP. + 3. (CTRL-24491) Fix compile errors on early 4.x kernels. + +v1.6.8 (Jan 23, 2017) +===================== +This version uses HWRM 1.6.1 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. Fix a kernel mutex deadlock situation during some link event + scenarios. + 2. (CTRL-24496) Allow NTUPLE to be enabled on VFs. + 3. (CTRL-24365) Silence warning messages from NPAR and VFs by + skipping phy configuration unless it is a single PF. + 4. Fix poor TPA GRO performance on Cu devices when TCP timestamp + is not enabled. + 5. Fix memory leak when setting DCBX APP TLV. + 6. Fix ethtool -p kernel compatibility checks. + +v1.6.7 (Jan 09, 2017) +===================== +This version uses HWRM 1.6.1 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. (CTRL-24308) Fix proper punctuations in bnxt_setup_tc() error + message. + 2. (CTRL-24269) Fix compiler warnings when CONFIG_RFS_ACCEL is + not defined. + +Enhancements: + 1. (CTRL-24268) Compile RDMA interface for all supported kernels. + 2. (CTRL-23664) Add GRE and IP encapsulated NTUPLE filter support. + 3. Add ethtool -p support. + 4. Add SRIOV hooks for RDMA interface. + +v1.6.6 (Dec 28, 2016) +===================== +This version uses HWRM 1.6.1 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. (CTRL-23746) Reserve TX rings when changing the number of TCs + (-DNEW_TX compile option required). + 2. (CTRL-24283) Handle one available RX ring gracefully by + disabling TPA and HDS. + +Enhancements: + 1. Added support for 4.10 kernel's new core MTU structure. + +v1.6.5 (Dec 23, 2016) +===================== +This version uses HWRM 1.6.1 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. (CTRL-24266) Fix regression on VF driver. + +v1.6.4 (Dec 22, 2016) +===================== +This version uses HWRM 1.6.1 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. (CTRL-24213) Disable MSIX before PCI shutdown to prevent + PCIE unsupported request error. + 2. (CTRL-23907, CTRL-24172) Set default completion ring for + async event, otherwise all async events may end up going + to bnxt_re's completion ring. + +v1.6.3 (Dec 19, 2016) +====================== +This version uses HWRM 1.6.1 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. (CTRL-24084, CTRL-24149, CTRL-24191) Fix Makefile for proper + RHEL7.3 compatibility. + 2. Fixed endian conversion for DCBX protocol_id. + +v1.6.2 (Dec 14, 2016) +====================== +This version uses HWRM 1.6.1 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Enhancements: + 1. (CTRL-23854) Added support for ipv6 flows on RFS. + 2. (CTRL-23683) Implemented new TX ring allocation scheme as a compile + option. + 3. (CTRL-23653) Display FEC settings during link up. + +v1.6.1 (Dec 08, 2016) +====================== +This version uses HWRM 1.6.1 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. Fixed hang issue during modprobe introduced in 1.6.0 when + running on HWRM 1.6.0 or above firmware. + +Enhancements: + 1. Updated to 1.6.1 firmware HSI. + +v1.6.0 (Dec 06, 2016) +====================== +This version uses HWRM 1.6.0 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. (CTRL-23711) Fix IRQ disable sequence during shutdown. + 2. (CTRL-23724) Improve resource allocation for VFs. + 3. Fix TPA/GRO code path on Cu+ devices. + +Enhancements: + 1. Updated to 1.6.0 firmware HSI. + 2. (CTRL-22565) Improve interface with RDMA driver. + 3. Added support for improved Cu+ RFS mode which also supports RFS + on VFs (requires new HWRM 1.6.0 firmware). + 4. DCBNL setapp/delapp implemented according to new spec. + +v1.5.13 (Nov 17, 2016) +====================== +This version uses HWRM 1.5.4 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. (CTRL-23724) Fix bnxt_re registration failure. + +v1.5.12 (Nov 16, 2016) +===================== +This version uses HWRM 1.5.4 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Enhancements: + 1. Updated HSI file to include 1.5.0 RoCE HSI. + 2. Added ethtool -u|-U to display/set RSS hash (see README.TXT). + 3. Better DCB support for NPAR/SR-IOV (see README.TXT). + +v1.5.11 (Nov 9, 2016) +===================== +This version uses HWRM 1.5.4 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. (CTRL-22565) Improve NULL pointer fix when bnxt_re registers + using new MSIX scheme (initial Fix in v1.5.7). + +v1.5.10 (Nov 8, 2016) +===================== +This version uses HWRM 1.5.4 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. Move function reset from open to probe. With the new MSIX + scheme, doing function reset in open may free all resources + allocated by bnxt_re. + +v1.5.9 (Nov 4, 2016) +==================== +This version uses HWRM 1.5.4 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. (CTRL-22565) Improve early MSIX enablement scheme to prevent + race conditions with RoCE driver. + +v1.5.8 (Nov 4, 2016) +==================== +This version uses HWRM 1.5.4 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. (CTRL-23629) Fixed RoCE registration regression caused by + fix for CTRL-23568. + +v1.5.7 (Nov 2, 2016) +==================== +This version uses HWRM 1.5.4 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. (CTRL-23568) Fixed RoCE MSIX regression seen on VF. + 2. (CTRL-23475) Fixed VF virtual link state regression since + firmware 20.6.0. + 3. (CTRL-22565) Fix NULL pointer derefernce when bnxt_re loads + before network is up. + +Enhancements: + 1. Added per priority PFC statistics. + 2. Changed egress VLAN priority scheme. + +v1.5.6 (Oct 26, 2016) +==================== +This version uses HWRM 1.5.4 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. Fixed hang issue when enabling PFC mapped to TC 2 and above. + 2. (CTRL-23288) Do full function reset after suspend/resume. + +Enhancements: + 1. (CTRL-22565) Enable MSIX early during PCI probe so that MSIX + will always be available whether the network interface is up or + down. + +v1.5.5 (Oct 19, 2016) +==================== +This version uses HWRM 1.5.3 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Enhancements: + 1. (CTRL-23432) Send DCBX RoCE app TLV data to firmware. + +v1.5.4 (Oct 6, 2016) +==================== +This version uses HWRM 1.5.2 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Enhancements: + 1. Updated to HWRM 1.5.2 spec to use the new FORCE_LINK_DWN bit. + +v1.5.3 (Sep 23, 2016) +===================== +This version uses HWRM 1.5.1 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. (CTRL-23107, CTRL-23121, CTRL-23122) Fixed memory corruption + after setting ETS TLV under some conditions. + 2. Fix compile error on kernels without CONFIG_DCB enabled. + 3. Fix compile error on kernels without RTC_LIB enabled. + 4. Fix compile error on SLES11SP4. + +v1.5.2 (Sep 16, 2016) +==================== +This version uses HWRM 1.5.1 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. Fixed Compilation issue on 3.7 Debian kernel. + 2. Fixed autoneg issues on some dual-port devices. + 3. (CTRL-22897) Reserved some statistics contexts for RoCE. + +Enhancements: + 1. Added UDP RSS for 57X1X (Cu+) devices. + 2. Added initial hardware QoS support. + +v1.5.1 (Sep 2, 2016) +==================== +This version uses HWRM 1.5.1 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. Fixed TX PUSH operation on ARM64 and similar architectures. + 2. (CTRL-22870) Fixed compile issue on Debian 7.7 (3.2.0-4 kernel) + +Enhancements: + 1. Updated to support HWRM spec 1.5.1. + 2. (CTRL-22776) Added missing 57407 and 5741X NPAR PCI IDs. + 3. (CTRL-22886) Improved the setting of VF link state. + 4. (CTRL-22737) Added ethtool -r support. + +v1.5.0 (Aug 25, 2016) +====================== +This version uses HWRM 1.5.0 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. (CTRL-22748) Fix ethtool -l|-L minor inconsistency. + 2. Pad TX packets below 52 bytes to allow traffic to loopback to BMC. + +Enhancements: + 1. Updated to support HWRM spec 1.5.0. + 2. (CTRL-21966) Added secure firmware update. + 3. Enable software GRO on 2.6 kernels. + 4. Removed "Single-port/Dual-port" from device strings. + +v1.3.23 (Jul 15, 2016) +====================== +This version uses HWRM 1.3.0 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. Fix 5731X/5741X GRO logic. + +Enhancements: + 1. (CTRL-22449) Added support for RoCE statistics context. + 2. (CTRL-22525) Added all NPAR and 57416/57417 device IDs. + 3. (CTRL-22021) Added support for 58700 Nitro devices. + 4. Improved ntuple filters by including destination MAC in the + filter. + +v1.3.22 (Jun 30, 2016) +====================== +This version uses HWRM 1.3.0 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. Fix RoCE MSI-X and completion ring reservation logic. It was + causing SRIOV to fail when enabling a large number of VFs. + +v1.3.21 (Jun 29, 2016) +====================== +This version uses HWRM 1.3.0 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Enhancements: + 1. (CTRL-22163) Added support for changing statistics coalescing + using ethtool -C (requires firmware 2.6.11 or newer). + 2. Added promiscuous mode support on VF if default VLAN is in use. + +v1.3.20 (Jun 23, 2016) +====================== +This version uses HWRM 1.3.0 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. Fix hwrm_vnic_cfg with MRU enable bit for correctness. + +Enhancements: + 1. Increased maximum MTU to 9500. + +v1.3.2 (Jul 28, 2016) +===================== +This version uses HWRM 1.3.0 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Enhancements: + 1. (CTRL-22663) Removed "Single-port/Dual-port" from device strings. + +v1.3.1 (Jul 13, 2016) +===================== +This version uses HWRM 1.3.0 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Enhancements: + 1. (CTRL-22510) Added 5740X NPAR and 57407 device IDs. + +v1.3.0 (Jun 29, 2016) +===================== +This version uses HWRM 1.3.0 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Enhancements: + 1. (CTRL-22089) Added support for suspend/resume. + 2. Set up dev_port sysfs attribute with port ID. + +v1.2.22 (Jun 17, 2016) +====================== +This version uses HWRM 1.3.0 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Enhancements: + 1. ifup/ifdown on the PF will not cause catastrophic failure on + active VFs. + 2. (CTRL-22235) Add support for Kong and Bono firmware updates. + 3. Fixed compile issues on 4.6 and 4.7 kernels. + 4. (CTRL-22014) Added RoCE driver hooks. + +v1.2.21 (Jun 03, 2016) +====================== +This version uses HWRM 1.2.2 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. (CTRL-22179) Fix tx push race condition causing driver crash. + +Enhancements: + 1. (CTRL-22201) Request APE reset after firmware upgrade. + 2. (CTRL-21966) Support NVM secure update item. + +v1.2.20 (May 25, 2016) +===================== +This version uses HWRM 1.2.2 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Enhancements: + 1. (CTRL-22125) Added support for 5731X and 5741X devices. + +Known Issues: + 1. Default VLAN not working on 5731x/5741x (20.6.6 firmware issue). + 2. Accelerated RFS not working on 5731x/5741x (20.6.6 firmware issue). + +v1.2.8 (Jun 17, 2016) +===================== +This version uses HWRM 1.3.0 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. (CTRL-22211) Fixed VLAN receive on 3.8 and similar kernels. + 2. (CTRL-22319) Fix compatibility issue on SRIOV mode which caused + the set_vf_link_state code to be disabled. + +Enhancements: + 1. (CTRL-22089) Added magic packet WoL support (shutdown only). + +v1.2.7 (Jun 3, 2016) +==================== +This version uses HWRM 1.2.2 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. (CTRL-22158) Return error code when NPAR/VF functions try to + change speed, flow control, etc. + +v1.2.6 (May 18, 2016) +===================== +This version uses HWRM 1.2.2 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. Re-implemented default VLAN properly by disabling RX VLAN + acceleration on the VF. New firmware which fixes CTRL-22105 is + also required. + +Enhancements: + 1. (CTRL-21914) Add NPAR support for 57402, 57404, 57406. + +v1.2.5 (May 16, 2016) +===================== +This version uses HWRM 1.2.2 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. Various fixes for ethtool -m. + 2. (CTRL-21932) Unsupported SFP modules are now detected before device + is up. + 3. (CTRL-22078) Firmware wait time extended to the proper time + specified by the firmware. This may fix some VF firmware timeout + issue. + 4. (CTRL-22019) Fixed powerpc panic issue. + +Enhancements: + 1. (CTRL-21956) Added PCIE link speed and width message during + modprobe. + +v1.2.4 (Apr 22, 2016) +===================== +This version uses HWRM 1.2.2 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. (CTRL-21914) Fix invalid max channels displayed by ethtool -l + when one MSIX is assigned to the function. + 2. Fix rx path on architectures using 64K PAGE_SIZE. + +Enhancements: + 1. (CTRL-21786) Added support for ethtool -m. + +v1.2.3 (Apr 15, 2016) +===================== +This version uses HWRM 1.2.2 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. (CTRL-21965) Don't allow autoneg on NICs that don't support it. + +v1.2.2 (Apr 12, 2016) +===================== +This version uses HWRM 1.2.2 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. (CTRL-21776) Add workaround for hardware duplicate rx opaque + bug (CUMULUS-7831). + 2. (CTRL-21934) Don't fall back to INTA if msix allocation fails + on the VF. + +v1.2.1 (Mar 25, 2016) +===================== +This version uses HWRM 1.2.2 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. Fixed incorrect link down state when unsupported optical modules + notifications are enabled. + +v1.2.0 (Mar 24, 2016) +===================== +This version uses HWRM 1.2.2 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. (CTRL-21822) Implemented new HWRM scheme for VF MAC address change + for VMWare that also works for Linux PF. + 2. (CTRL-21859) Fixed flow control reporting when autoneg is off. + +v1.0.7 (Mar 16, 2016) +===================== +This version uses HWRM 1.2.1 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Fixes: + 1. (CTRL-21839) Fixed inconsistent EEE reporting on dmesg. + 2. Fixed flow control settings logic. This fixes the + update_phy error message when bringing up the VFs with + flow control set to autoneg. + +v1.0.6 (Mar 14, 2016) +===================== +This version uses HWRM 1.2.1 and is compatible with all firmware using +HWRM 1.0.0 or above. + +Enhancements: + 1. (CTRL-21729) Provide NVM and FW status information via ethtool + GEEPROM. + 2. Adjusted default coalescing parameters to reduce interrupts. + 3. Added check for valid forced speed during ethtool -s. + 4. Improved ethtool forced speed settings display. + 5. Added default VLAN support for VFs. + +Fixes: + 1. Fixed RHEL6.8 compile error. + 2. (CTRL-21440) Worked around RHEL6.3 source tree bug that caused + issues with IOMMU. + 3. Disallow forced speed on 10GbaseT/1GBaseT. + +v1.0.5 (Mar 2, 2016) +==================== + +Enhancements: + 1. Added unsupported SFP+ module reporting. + +v1.0.4 (Mar 1, 2016) +==================== + +This version is compatible with all ChiMP FW versions 20.1.x and above using +HWRM 1.0.0 or above. + +Enhancements: + 1. Updated to support HWRM 1.2.0, backwards compatible to 1.0.0. + 2. (CTRL-21401) Added EEE for 10GBase-T devices. + +v1.0.3 (Feb 16, 2016) +===================== + +This version is compatible with all ChiMP FW version 20.1.x and above using +HWRM 1.0.0 or above. + +Fixes: + 1. (CTRL-21636) Fixed link down condition when doing rapid speed + changes and changing other settings. + 2. (CTRL-20564) Improve default firmware timeout behavior so that + messages requiring long timeouts (such as NVM commands) will work + better with older firmware. + +Enhancements: + 1. (CTRL-21405) Add PCIE advanced error reporting. + 2. Added port statistics for PF. + 3. (CTRL-21587) Add autoneg support for 25G/40G/50G. See README.TXT. + +v1.0.2 (Jan 26, 2016) +===================== + +This version requires ChiMP FW version 20.1.11 (HWRM 1.0.0). + +Fixes: + 1. (CTRL-21271) Reduce default ring sizes and change default to + combined channels to reduce memory and DMA mappings. + 2. (CTRL-21271) Fix crash when freeing tx ring during tx timeout. + 3. Fix firmware error message logging to print message fields + properly. + 4. Use completion ring to process ring free response response + from firmware. + +Enhancements: + 1. (CTRL-21288) Add package version information to ethtool -i. + +v1.0.1 (Jan 08, 2016) +===================== + +This version requires ChiMP FW version 20.1.9 (HWRM 1.0.0). + +Fixes: + 1. (CTRL-21410, CUMULUS-6643) Exclude hw rx_drop_pkts from the stack's + rx_dropped counter. + +v1.0.0 (Jan 07, 2016) +===================== + +This version requires ChiMP FW version 20.1.7 (HWRM 1.0.0). + +Enhancements: + 1. Driver is now compatible with all future versions of production + firmware using HWRM spec 1.0.0 or newer. + +v0.1.32 (Dec 18, 2015) +====================== + +This version requires ChiMP FW version 20.1.5 (HWRM 0.8.0). + +Enhancements: + 1. Enhanced ethtool -d with a signature to determine endianess. + +v0.1.31 (Dec 16, 2015) +====================== + +This version requires ChiMP FW version 20.1.3 (HWRM 0.7.8). + +Fixes: + 1. (CTRL-21319) Fixed compile error on RHEL6 2.6.32-573.el6 kernel. + 2. (CTRL-20830) Keep track of ring group resources advertised by + firmware. + 3. Check for adequate resources before allowing NTUPLE to be enabled. + 4. Fixed compile issues on 4.3/4.4 kernels. + 5. (CTRL-21379) Fixed rmmod hang on older 3.x kernels. + +Enhancements: + 1. Removed all A0 workarounds. + 2. Added preliminary support for ethtool -d. + 3. Added reset to tx timeout and reverted back to 5 seconds. + +v0.1.30 (Nov 23, 2015) +====================== + +This version requires ChiMP FW version 0.1.41 (HWRM 0.7.8). + +Fixes: + 1. Fixed compile error on generic 3.10 kernel. This was a + regression introduced in version 0.1.29. + +v0.1.29 (Nov 23, 2015) +====================== + +This version requires ChiMP FW version 0.1.41 (HWRM 0.7.8). + +Enhancements: + 1. (CTRL-21302) Added support for upgrading APE/NC-SI firmware using + ethtool -f. + 2. (CTRL-20980) Completed support for all RHEL6.x kernels and generic + 2.6.32 kernel. + +Fixes: + 1. (CTRL-21203) Increment software checksum error counter only if + rx checksum offload is enabled. + +v0.1.28 (Nov 17, 2015) +====================== + +This version requires ChiMP FW version 0.1.39 (HWRM 0.7.8). + +Enhancements: + 1. (CTRL-21270) Added PCI IDs for 57301 and 57402 devices. + + 2. More robust SRIOV cleanup sequence to prevent VF crash when + the PF driver is unloaded. + + 3. (CTRL-20989, CTRL-20925) Implement rx/tx channels to improve tx + performance with dedicated tx and rx completion rings. See + ethtool -L in README.TXT for more information. + +Fixes: + 1. (CTRL-21217) Fixed SRIOV implementation on RHEL6.x kernels with + num_vfs module parameter. + + 2. (CTRL-21211) Fixed VLAN acceleration for RHEL6.x kernels. + + 3. (CTRL-21255) Fixed macvlan issue after driver reset. The + unicast address list needs to be reprogrammed after reset. + + 4. Fixed INTA implementation by properly mapping the CAG register. + +v0.1.27 (Oct 28, 2015) +====================== + +This version requires ChiMP FW version 0.1.38 (HWRM 0.7.8). + +Fixes: + 1. (CTRL-21223) Fixed GRO issue when running ipv6 without TCP + timestamps. + +v0.1.26 (Oct 23, 2015) +====================== + +This version requires ChiMP FW version 0.1.38 (HWRM 0.7.8). + +Fixes: + 1. Fixed MAC address change to take effect immediately. + +Enhancements: + 1. (CTRL-21163) Added support for RHEL6.3 kernel and OLE6.3 UEK. + 2. (CTRL-21186) Added ChiMP reset after flashing firmware with + ethtool -f. + 3. (CTRL-21165) Added support for flashing AVS firmware. + +v0.1.25 (Oct 09, 2015) +====================== + +This version requires ChiMP FW version 0.1.36 (HWRM 0.7.8). + +Fixes: + 1. (CTRL-21064) Fix PF max ring calculation to prevent ethtool -L + failure on PF when SRIOV is enabled. + +v0.1.24 (Oct 07, 2015) +====================== + +This version requires ChiMP FW version 0.1.36 (HWRM 0.7.8). + +New Features: + 1. (CTRL-21053) Added support for INTA mode. The driver will + automatically fall back to INTA if MSIX is not available. + + 2. (CTRL-20980) Added initial support for RHEL6.7 and some + similar kernels. + +Fixes: + 1. Added fixes for ethtool -K ntuple on|off. + + 2. Added proper accounting of statistics context resources when + changing ethtool channels. + + 3. (CTRL-21095) Ensure we have enough RSS contexts before enabling + a VF. + + 4. (CTRL-21048) Make sure GRO packets have valid hash. Disable TPA + during shutdown. Close the device if we cannot initialize it + during configuration changes. + + 5. (CTRL-20989) Partial fix by setting a limit on tx completion + processing. + + 6. (CTRL-21011) Make sure ring pages don't exceed the maximum. + Adjust maximum ring sizes to prevent exceeding the maximum. + + 7. (CTRL-21064) Do not do function reset during ring changes + so that PF/VFs are not affected during ring changes. + +Enhancements: + 1. Added extra padding for small packets to work in loopback mode + using latest firmware that has TXP padding disabled. + + 2. Enhanced pause setting changes to trigger link change and + print a new link message when appropriate. + +Known Issues: + 1. Known VEB firmware issue of duplicating multicast packets on + NIC2. This would cause ipv6 to detect duplicate address. + +v0.1.23 (Sep 22, 2015) +====================== + +This version requires ChiMP FW version 0.1.34 (HWRM 0.7.6). + +New Features: + 1. Added support for BCM57302 PCI ID. + +Fixes: + 1. (CTRL-21032) Use modified firmware ring reset to workaround + hardware issue CUMULUS-5196. + + 2. (CTRL-20989) Partial fix of tx timeout issue by increasing the + timeout value from 5 to 10 seconds. This is a temporary workaround + for the occasional tx completions that can take longer than 5 + seconds while the issue is being investigated. + + 3. (CTRL-21048) Fix macvtap BUG condition while doing ring changes + with TPA (GRO) enabled. + + 4. Fix the msix table size read from the msix capability. It was off + by 1 in previous versions. + + 5. (CTRL-21059) Fix RFS on 2nd port. ChiMP firmware fix in 0.1.33 + also required. + + 6. (CTRL-21033) Limit maximum ethtool channels to no more than the + msix table size to prevent failures. + +Enhancements: + 1. Use smaller (256-byte) 1st buffer with HDS mode. + + 2. Support asynchronous link events in VF driver. + +v0.1.22 (Sep 14, 2015) +====================== + +This version requires ChiMP FW version 0.1.32 (HWRM 0.7.6). + +Fixes: + 1. (CTRL-20993) Reject SRIOV configuration from sysfs if PF is down. + 2. Fixed ethtool -S counter names discard and drop to match exactly + hardware counter definitions. + 3. (CTRL-20705) Fixed kernel oops when running ethtool -L rx 0 tx 0. + +Enhancements: + 1. (CTRL-20686) Call firmware hwrm_ring_reset to perform recovery + from duplicate opaque hardware issue (CUMULUS-5196) + 2. Added support for 3.8 kernel. + +v0.1.21 (Sep 10, 2015) +====================== + +This version requires ChiMP FW version 0.1.31 (HWRM 0.7.6). + +New Features: + 1. Added autoneg support for 57406 10GBase-T device. + 2. (CTRL-20619) Added rx_l4_csum_errors software counter. + +Fixes: + 1. (CTRL-20704) ethttol -L now returns error when user tries to set + combined or other channels. + 2. (CTRL-20704) Fix incorrect ethtool -S statistics when device is + down. + 3. Added RSS hash values to skb->hash for RFS packets. + +Enhancements: + 1. Improved ethtool -{L|l} when VFs are configured. + 2. Added support for 3.9 kernel. + +v0.1.20 (Sep 01, 2015) +====================== + +This version requires ChiMP FW version 0.1.30 (HWRM 0.7.6). + +New Features: + 1. (CTRL-20800) Added ethtool -x to display RSS indirection table and + hash key. + +Fixes: + 1. Fixed the problem of non-functioning Low Latency Polling mode + after driver config. changes such as MTU change. + +Enhancements: + 1. Added ability to configure VF MAC address at any time after SR-IOV + is enabled. + +v0.1.19 (Aug 26, 2015) +====================== + +This version requires ChiMP FW version 0.1.28 (HWRM 0.7.6). + +New Features: + 1. Added Accelerated RFS support on PF for TCP/IPv4. + 2. Enabled Header Data split for TPA and jumbo frames. + +Fixes: + 1. (CTRL-20905) Fixed over-subscription of rx rings, causing failure + when enabling a large number of VFs. + 2. Use correct length hint for TSO packets for correct TSO mbuf usage. + 3. (CTRL-20930) Enhanced duplicate opaque workaround logic for dual + port and multiple fuctions. + +Enhancements: + 1. Added basic register and state dump during tx timeout, but no + recovery logic yet. + 2. Added support for setting VF link state. + +v0.1.18 (Aug 20, 2015) +====================== + +This version requires ChiMP FW version 0.1.27 (HWRM 0.7.6). + +New Features: + 1. Added support for 57406 10GBase-T device. + +Fixes: + 1. (CTRL-20890) Fixed ethtool -L driver bug when increasing the rings + beyond 16. + 2. (CTRL-20905) Fixed vnic allocation in VF to increase the number + of supported VF. ChiMP fix is also required to support more + than 32 VFs. + +Enhancements: + 1. Modified MSI-X IRQ name to work with affinity scripts. + 2. Enhanced recovery steps further to include RE_FLUSH and rx doorbell + unmap for hw bug CTRL-20686 (CUMULUS-5196). + +Known Issues: + 1. PF cannot be brought down or reconfigured if there are active VFs. + +v0.1.17 (Aug 12, 2015) +====================== + +This version requires ChiMP FW version 0.1.26 (HWRM 0.7.5). + +New Features: + 1. (CTRL-20869) Add support to ethtool -f for pre-boot components. + +Enhancements: + 1. Speed up the recovery steps for hw bug CTRL-20686 (CUMULUS-5196). + +v0.1.16 (Aug 09, 2015) +====================== + +This version requires ChiMP FW version 0.1.26 (HWRM 0.7.5). + +New Features: + 1. Added VF device ID 0x16d3 for 57404 VF. + +v0.1.15 (Aug 05, 2015) +====================== + +This version requires ChiMP FW version 0.1.24 (HWRM 0.7.5). + +New Features: + 1. SR-IOV tested to work on ChiMP FW 0.1.24. + +Fixes: + 1. (CTRL-20804) Added workaround for TPA_FLUSH to make recovery from + duplicate agg completion (CTRL-20686) reliable. + + 2. (CUMULUS-5361) Use different TPA_TIMERS_CFG to make TPA timeouts + reliable. + +Known Issues: + 1. ChiMP FW 0.1.24 has an issue with multicast and SR-IOV. For + example, this problem can affect ipv6 neighbor discovery with + VFs enabled. + +v0.1.14 (July 30, 2015) +======================= + +This version requires ChiMP FW version 0.1.23 (HWRM 0.7.5). + +Fixes: + 1. (CTRL-20848) Fix failure to create vxlan tunnel. + 2. (CTRL-20651) Update NVRAM HWRM API to work with ChiMP 0.1.23. + 3. (CTRL-20823) Fix ethtool -C failure due to out-of-range rx-frames + value. + +Known Issues: + 1. (CTRL-20841) MTU may need to be adjusted when creating a tunnel so + that the tunnel MTU is divisble by 4 to avoid PCIE errors caused + by known issue with TPA enabled (CTRL-20641). + 2. SRIOV has issues with Firmware 0.1.23. + +v0.1.13 (July 28, 2015) +======================= + +This version requires ChiMP FW version 0.1.22 (HWRM 0.7.5). + +New Features: + 1. Geneve tunnel stateless offload. + 2. VXLAN arbitrary UDP port. + 3. Support 4.x kernels. + 4. PCIe and PHY microcode update using ethtool -f. + +Fixes: + 1. (CTRL-20793, CTRL-20796) Fix bridging issues with hardware GRO. + +Enhancements: + 1. Improved workaround for CTRL-20686. + +v0.1.12 (July 13, 2015) +======================= + +Fixes: + 01. Increased TPA concurrent aggregations to max (64). + 02. Refined IRQ coalescing to only enable RING_IDLE feature if + rx-usecs is less than 25 us. + +v0.1.11 (July 09, 2015) +======================= + +This version supports ChiMP FW version 0.1.20 (HWRM 0.7.4). + +Fixes: + 01. (CTRL-20686) Implemented workaround to recover from duplicate + aggregation ring completions hardware bug. + +v0.1.10 (June 30, 2015) +====================== + +This version supports ChiMP FW version 0.1.19 (HWRM 0.7.4). + +Fixes: + 01. Disabled HDS (header data split) to workaround CTRL-20686 hardware + issue so that standard MTU will not hit the issue. + +v0.1.9 (June 30, 2015) +====================== + +This version supports ChiMP FW version 0.1.19 (HWRM 0.7.4). + +Fixes: + 01. Added support for generic 4.0 kernel. + 02. Enabled HDS (header data split) when aggregation ring is used. + +v0.1.8 (June 26, 2015) +====================== + +This version supports ChiMP FW version 0.1.18 (HWRM 0.7.4). + +Fixes: + 01. Added support for generic 3.10/3.11 kernels. + +v0.1.7 (June 24, 2015) +====================== + +This version supports ChiMP FW version 0.1.18 (HWRM 0.7.4). + +Fixes: + + 01. (CTRL-20641) Added SOP (start of frame padding) to workaround + PCIE error with TPA enabled. + +v0.1.6 (June 20, 2015) +====================== + +This version supports ChiMP FW version 0.1.18 (HWRM 0.7.4). + +Fixes: + + 01. Enabled link change events. + + 02. Added support for link pause flow control (preview feature, not + well tested). + + 03. (CTRL-20630) Fixed most crashes during GRO and LRO settings + changes. + +v0.1.5 (June 17, 2015) +====================== + +This version supports ChiMP FW version 0.1.16 (HWRM 0.7.3). + +Fixes: + + 01. Fixed low latency (busy poll) socket mode. + + 02. (CTRL-20624) Fixed "ethtool -C rx-frames 1" problem. + + 03. Added ethtool -f support for upgrading firmware. + + 04. Added ethtool -e support to read NVRAM. + + 05. Added multiple unicast address support, eliminating the + need to always go into promiscuous mode. + + 06. Fixed low performance with tunnel packets in GRO mode. + + 07. (CTRL-20660) Fixed macvtap crash with GRO enabled. + +v0.1.4 (May 29, 2015) +====================== + +This version supports ChiMP FW version 0.1.12 (HWRM 0.7.3). + +Fixes: + + 01. (CTRL-20585) Added workaround for bridge multicast storm issue. + + 02. Added interrupt coalescing support with new default settings + and configurable using ethtool. + + 03. Fixed VLAN issue by configuring chip to strip VLAN tags on RX. + + 04. Added page table support for the larger ring sizes. + + 05. (CTRL-20599) Fixed transmit queue 8 timeout issue. + + 06. Updated Chip names with official marketing names. + +v0.1.3 (May 23, 2015) +====================== + +This version supports ChiMP FW version 0.1.11 (HWRM 0.7.3). + +Fixes: + + 01. Fixed TPA setup with large MTUs. Before this fix, TCP + performance was very poor with larger MTUs. + + 02. Fixed the problem of statistics counters not working after + configuration changes. + +v0.1.2 (May 21, 2015) +====================== + +Fixes: + 01. Fixed the "DMA: Out of SW-IOMMU space ..." error by enabling + 64-bit DMA. This should also improve performance slightly. + + 02. Fixed firmware version in ethtool -i by reporting the ChiMP + firmware version as "bc" and the HWRM spec version as "rm". + PHY firmware version was added as "ph". + + 03. Added module version and description for modinfo. + + +v0.1.1 (May 19, 2015) +====================== +Features tested + 01. Cumulus A0 NIC2 and NIC3 at 10/25 Gbps. + 02. Dual port support on NIC2 + 03. TX/RX Checksum offload (IPv4/IPv6) + 04. TCP segmentation offload (TSO IPv4/IPv6) + 05. MultiQ (TSS / RSS) + 06. Statistics (PF only) + 07. Ethtool (only options -s -k,-K,-i,-g,-G,-l,-L) + 08. vlan acceleration + 09. TPA GRO and LRO with ethtool support + 10. Broadcast/multicast replication + 11. Promiscuous mode support + +v0.1.0 (May 15, 2015) +====================== +Features tested + 01. Cumulus A0 NIC2 at 10 Gbps. + 02. Dual port support + 03. TX/RX Checksum offload (IPv4/IPv6) + 04. TCP segmentation offload (TSO IPv4/IPv6) + 05. MultiQ (TSS / RSS) + 06. Statistics (PF only) + 07. Ethtool (only options -k,-K,-i,-g,-G,-l,-L) + 08. vlan acceleration + 09. TPA GRO and LRO with ethtool support + 10. Broadcast/multicast replication + 11. Promiscuous mode support + +v0.008 (Mar 11, 2015) +====================== +Features supported + 01. Dual port support + 02. TX/RX Checksum offload (IPv4/IPv6) + 03. TCP segmentation offload (TSO IPv4/IPv6) + 04. MultiQ (TSS / RSS) + 05. Change MTU + 06. Jumbo Frames + 07. Statistics (PF only) + 08. Ethtool (only options -k,-K,-i,-g,-G) + 09. vlan acceleration + 10. VXLAN stateless offload (only UDP port 4789 is supported) + 11. GRE stateless offload + 12. IPinIP stateless offload + 13. SRIOV + 14. VEB + 15. TPA GRO and LRO with ethtool support + 16. Broadcast/multicast replication fully supported on PF and VF + 17. TXP padding disabled and XLMAC padding enabled to workaround + JIRA-4080 + 18. Added double doorbell to workaround JIRA-3918 + 19. Added promiscuous mode support + +Features not supported: + 01. Ethtool options other than -k,-K,-i,-g,-G,-S + 02. QoS/DCBX + +FPGA: 3.1.27 +Chimp FW: 0.0.18 + +v0.007 (Feb 25, 2015) +====================== +Features supported + 01. Dual port support + 02. TX/RX Checksum offload (IPv4/IPv6) + 03. TCP segmentation offload (TSO IPv4/IPv6) + 04. MultiQ (TSS / RSS) + 05. Change MTU + 06. Jumbo Frames + 07. Statistics (PF only) + 08. Ethtool (only options -k,-K,-i,-g,-G) + 09. vlan acceleration + 10. VXLAN stateless offload (only UDP port 4789 is supported) + 11. GRE stateless offload + 12. IPinIP stateless offload + 13. SRIOV (most previous limitations removed) + 14. VEB (previous limitations removed) + 15. TPA GRO and LRO with ethtool support (previous limitations removed) + 16. Broadcast/multicast replication fully supported on PF and VF + 17. TXP padding disabled and XLMAC padding enabled to workaround + JIRA-4080 + 18. Added double doorbell to workaround JIRA-3918 + +Features not supported: + 01. Ethtool options other than -k,-K,-i,-g,-G,-S + 02. QoS/DCBX + +FPGA: 3.1.27 +Chimp FW: 0.0.18 + +v0.006 (Jan 29, 2015) +====================== +Features supported + 01. Dual port support + 02. TX/RX Checksum offload (IPv4/IPv6) + 03. TCP segmentation offload (TSO IPv4/IPv6) + 04. Change MTU + 05. Jumbo Frames + 06. Statistics (PF only) + 07. Ethtool (only options -k,-K,-i,-g,-G) + 08. vlan acceleration + 09. VXLAN stateless offload (only UDP port 4789 is supported) + 10. GRE stateless offload + 11. IPinIP stateless offload + 12. SRIOV (limited functionality, check limitations below) + 13. VEB (limited functionality, check limitations below) + 14. TPA GRO and LRO with ethtool support (check limitations below) + +Features not supported: + 01. Ethtool options other than -k,-K,-i,-g,-G,-S + 02. QoS/DCBX + 03. MultiQ (TSS / RSS) + +FPGA: 3.1.21 +Chimp FW: 0.0.17 + +v0.005 (Jan 21, 2015) +====================== +Features supported + 01. Dual port support + 02. TX/RX Checksum offload (IPv4/IPv6) + 03. TCP segmentation offload (TSO IPv4/IPv6) + 04. Change MTU + 05. Change Mac Address + 06. Jumbo Frames + 07. Ethtool (only options -k,-K,-i) + 08. vlan acceleration + 09. VXLAN stateless offload (only UDP port 4789 is supported) + 10. GRE stateless offload + 11. IPinIP stateless offload + 12. SRIOV (limited functionality, check limitations below) + 13. VEB (limited functionality, check limitations below) + 13. TPA GRO and LRO with ethtool support (check limitations below) + +Features not supported: + 01. Statistics + 02. Ethtool options other than -k,-K,-i + 03. QoS/DCBX + 04. MultiQ (TSS / RSS) + + +v0.004 (Jan 20, 2015) +====================== +Features supported + 01. Dual port support + 02. TX/RX Checksum offload (IPv4/IPv6) + 03. TCP segmentation offload (TSO IPv4/IPv6) + 04. Change MTU + 05. Change Mac Address + 06. Jumbo Frames + 07. Ethtool (only options -k,-K,-i) + 08. vlan acceleration + 09. VXLAN stateless offload (only UDP port 4789 is supported) + 10. GRE stateless offload + 11. IPinIP stateless offload + 12. SRIOV (limited functionality, check limitations below) + 13. TPA (known issues, check limitations) + +Features not supported: + 01. Statistics + 02. Ethtool options other than -k,-K,-i + 03. QoS/DCBX + 04. MultiQ (TSS / RSS) + + +v0.003 (Dec 15, 2014) +====================== +Bug fixes: + 1. Aggregation ring enablement (JIRA 3359). + 2. Broadcast/Multicast filters (JIRA's 3315, 3358). + +Features supported + 01. TX/RX Checksum offload (IPv4/IPv6) + 02. TCP segmentation offload (TSO IPv4/IPv6) + 03. MultiQ (TSS / RSS) + 04. Change MTU + 05. Change Mac Address + 06. Jumbo Frames + 07. Ethtool (only options -k,-K,-i) + 08. vlan acceleration + 09. TPA (only LRO) + 10. VXLAN stateless offload (only UDP port 4789 is supported) + 11. GRE stateless offload + 12. IPinIP stateless offload + +Features not supported: + 01. SRIOV + 02. Statistics + 03. Ethtool options other than -k,-K,-i + 04. QoS/DCBX + +v0.001 (Oct 31, 2014) +====================== +Features supported: + + 1. TX/RX Checksum offload + 2. Large segment offload (LSO) + 3. MultiQ (TSS / RSS) + 4. Change MTU + 5. Change Mac Address + 6. Jumbo Frames + 7. vlan + 8. Ethtool (only options -k,-K,-i) + +Features not supported: + 1. Statistics (basic & advanced) + 2. Ethtool options other than -k,-K,-i + 3. vlan acceleration + 4. TPA (LRO/GRO) + 5. SRIOV + 6. QoS/DCBX + 7. Vxlan + +======================================================================== +DETAILS: + +FPGA version 3.1.27: + + To program FPGA + 1. RDP to any of pb_sniffer[5-10] + 2. Map \\pb_file_srvr\drive_e to a drive. + 3. Change directory to \ProDesign\ + 4. Run “prg_fpga.bat” + +Chimp FW version 0.0.18: + Locaton: ~/nseg/rels/bcm5734x/firmware/ChiMP_Firmware/0.0.18 + + To program Chimp FW to NVRAM: + 1.esx-dbg (Administrator/broadcom) has the dos USB key. + 2.Open your setup idrac and map the usb key (use Mozilla or Chrome) + 3.Boot to dos + 4.cd cdiag/0915/ + 5.cdiag.exe -eng + 6.Enter the following command in cdiag and wait for completion + 1:> nvm upgrade –cfw ncfc0000.17 + 7.Enter the following command to get fw version + 1:> nvm dir + +Kernel: + Standard kernel that comes with RHEL7.0 or above + (Development was done using 3.10.0-123.el7.x86_64) + +Driver: + nseg: ~/nseg/rels/bcm5734x/drivers/linux/0.006 + +iproute2: + https://www.kernel.org/pub/linux/utils/net/iproute2/ OR + git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git + +============================================================================ +Know Issues/Limitations: + +SRIOV: + 1. Max 2 VF's can be enabled. + 2. All VF development/testing was done using 'network namespace' on the + hypervisor itself, no major issues are expected when VF driver is + brought up on a real VM. + + a. To enable 'x' VF's + #echo x > /sys/bus/pci/devices//sriov_numvfs + + b. To disable VF's + #echo 0 > /sys/bus/pci/devices//sriov_numvfs + +Vlan: + 1. RX side vlan stripping cannot be disabled on HW. Thus there is no + support for non-accelerated vlan on RX. If user disables vlan + stripping it will not ping. + + 2. On TX side vlan normal/accelerated modes are supported. + + a. To enable/disable TX vlan acceleration + #ethtool -K vlan-tx-offload on/off + + b. To enable/disable RX vlan acceleration + #ethtool -K vlan-rx-offload on/off + +============================================================================ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/bnxt/bnxt.c +++ linux-raspi2-4.4.0/ubuntu/bnxt/bnxt.c @@ -0,0 +1,9061 @@ +/* Broadcom NetXtreme-C/E network driver. + * + * Copyright (c) 2014-2016 Broadcom Corporation + * Copyright (c) 2016-2017 Broadcom Limited + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation. + */ + +#include + +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#ifdef HAVE_NDO_XDP +#include +#endif +#include +#include +#include +#include +#include +#if defined(HAVE_UDP_TUNNEL_H) +#include +#endif +#if defined(CONFIG_VXLAN) || defined(CONFIG_VXLAN_MODULE) +#ifdef HAVE_NDO_ADD_VXLAN +#include +#endif +#endif +#if !defined(NEW_FLOW_KEYS) && defined(HAVE_FLOW_KEYS) +#include +#endif +#include +#include +#include +#include +#include +#include +#ifndef NO_NETDEV_CPU_RMAP +#include +#endif +#ifdef HAVE_IEEE1588_SUPPORT +#include +#include +#endif + +#include "bnxt_compat.h" +#include "bnxt_hsi.h" +#include "bnxt.h" +#include "bnxt_ulp.h" +#include "bnxt_sriov.h" +#include "bnxt_ethtool.h" +#include "bnxt_dcb.h" +#include "bnxt_xdp.h" +#include "bnxt_ptp.h" +#ifndef HSI_DBG_DISABLE +#include "decode_hsi.h" +#endif + +#define BNXT_TX_TIMEOUT (5 * HZ) + +static const char version[] = + "Broadcom NetXtreme-C/E driver " DRV_MODULE_NAME " v" DRV_MODULE_VERSION "\n"; + +MODULE_LICENSE("GPL"); +MODULE_DESCRIPTION("Broadcom BCM573xx network driver"); +MODULE_VERSION(DRV_MODULE_VERSION); + +#define BNXT_RX_OFFSET (NET_SKB_PAD + NET_IP_ALIGN) +#define BNXT_RX_DMA_OFFSET NET_SKB_PAD +#define BNXT_RX_COPY_THRESH 256 + +#define BNXT_TX_PUSH_THRESH 164 + +#ifndef PCIE_SRIOV_CONFIGURE +static unsigned int num_vfs; +module_param(num_vfs, uint, 0); +MODULE_PARM_DESC(num_vfs, " Number of supported virtual functions (0 means sriov is disabled)"); +#endif + +enum board_idx { + BCM57301, + BCM57417_NPAR, + BCM58700, + BCM57311, + BCM57312, + BCM57402, + BCM57402_NPAR, + BCM57407, + BCM57412, + BCM57414, + BCM57416, + BCM57417, + BCM57412_NPAR, + BCM57314, + BCM57417_SFP, + BCM57416_SFP, + BCM57404_NPAR, + BCM57406_NPAR, + BCM57407_SFP, + BCM57407_NPAR, + BCM57414_NPAR, + BCM57416_NPAR, + BCM57452, + BCM57454, + NETXTREME_E_VF, + NETXTREME_C_VF, +}; + +/* indexed by enum above */ +static const struct { + char *name; +} board_info[] = { + { "Broadcom BCM57301 NetXtreme-C 10Gb Ethernet" }, + { "Broadcom BCM57417 NetXtreme-E Ethernet Partition" }, + { "Broadcom BCM58700 Nitro 1Gb/2.5Gb/10Gb Ethernet" }, + { "Broadcom BCM57311 NetXtreme-C 10Gb Ethernet" }, + { "Broadcom BCM57312 NetXtreme-C 10Gb/25Gb Ethernet" }, + { "Broadcom BCM57402 NetXtreme-E 10Gb Ethernet" }, + { "Broadcom BCM57402 NetXtreme-E Ethernet Partition" }, + { "Broadcom BCM57407 NetXtreme-E 10GBase-T Ethernet" }, + { "Broadcom BCM57412 NetXtreme-E 10Gb Ethernet" }, + { "Broadcom BCM57414 NetXtreme-E 10Gb/25Gb Ethernet" }, + { "Broadcom BCM57416 NetXtreme-E 10GBase-T Ethernet" }, + { "Broadcom BCM57417 NetXtreme-E 10GBase-T Ethernet" }, + { "Broadcom BCM57412 NetXtreme-E Ethernet Partition" }, + { "Broadcom BCM57314 NetXtreme-C 10Gb/25Gb/40Gb/50Gb Ethernet" }, + { "Broadcom BCM57417 NetXtreme-E 10Gb/25Gb Ethernet" }, + { "Broadcom BCM57416 NetXtreme-E 10Gb Ethernet" }, + { "Broadcom BCM57404 NetXtreme-E Ethernet Partition" }, + { "Broadcom BCM57406 NetXtreme-E Ethernet Partition" }, + { "Broadcom BCM57407 NetXtreme-E 25Gb Ethernet" }, + { "Broadcom BCM57407 NetXtreme-E Ethernet Partition" }, + { "Broadcom BCM57414 NetXtreme-E Ethernet Partition" }, + { "Broadcom BCM57416 NetXtreme-E Ethernet Partition" }, + { "Broadcom BCM57452 NetXtreme-E 10Gb/25Gb/40Gb/50Gb Ethernet" }, + { "Broadcom BCM57454 NetXtreme-E 10Gb/25Gb/40Gb/50Gb/100Gb Ethernet" }, + { "Broadcom NetXtreme-E Ethernet Virtual Function" }, + { "Broadcom NetXtreme-C Ethernet Virtual Function" }, +}; + +static const struct pci_device_id bnxt_pci_tbl[] = { + { PCI_VDEVICE(BROADCOM, 0x16c0), .driver_data = BCM57417_NPAR }, + { PCI_VDEVICE(BROADCOM, 0x16c8), .driver_data = BCM57301 }, + { PCI_VDEVICE(BROADCOM, 0x16cc), .driver_data = BCM57417_NPAR }, + { PCI_VDEVICE(BROADCOM, 0x16cd), .driver_data = BCM58700 }, + { PCI_VDEVICE(BROADCOM, 0x16ce), .driver_data = BCM57311 }, + { PCI_VDEVICE(BROADCOM, 0x16cf), .driver_data = BCM57312 }, + { PCI_VDEVICE(BROADCOM, 0x16d0), .driver_data = BCM57402 }, + { PCI_VDEVICE(BROADCOM, 0x16d4), .driver_data = BCM57402_NPAR }, + { PCI_VDEVICE(BROADCOM, 0x16d5), .driver_data = BCM57407 }, + { PCI_VDEVICE(BROADCOM, 0x16d6), .driver_data = BCM57412 }, + { PCI_VDEVICE(BROADCOM, 0x16d7), .driver_data = BCM57414 }, + { PCI_VDEVICE(BROADCOM, 0x16d8), .driver_data = BCM57416 }, + { PCI_VDEVICE(BROADCOM, 0x16d9), .driver_data = BCM57417 }, + { PCI_VDEVICE(BROADCOM, 0x16de), .driver_data = BCM57412_NPAR }, + { PCI_VDEVICE(BROADCOM, 0x16df), .driver_data = BCM57314 }, + { PCI_VDEVICE(BROADCOM, 0x16e2), .driver_data = BCM57417_SFP }, + { PCI_VDEVICE(BROADCOM, 0x16e3), .driver_data = BCM57416_SFP }, + { PCI_VDEVICE(BROADCOM, 0x16e7), .driver_data = BCM57404_NPAR }, + { PCI_VDEVICE(BROADCOM, 0x16e8), .driver_data = BCM57406_NPAR }, + { PCI_VDEVICE(BROADCOM, 0x16e9), .driver_data = BCM57407_SFP }, + { PCI_VDEVICE(BROADCOM, 0x16ea), .driver_data = BCM57407_NPAR }, + { PCI_VDEVICE(BROADCOM, 0x16eb), .driver_data = BCM57412_NPAR }, + { PCI_VDEVICE(BROADCOM, 0x16ec), .driver_data = BCM57414_NPAR }, + { PCI_VDEVICE(BROADCOM, 0x16ed), .driver_data = BCM57414_NPAR }, + { PCI_VDEVICE(BROADCOM, 0x16ee), .driver_data = BCM57416_NPAR }, + { PCI_VDEVICE(BROADCOM, 0x16ef), .driver_data = BCM57416_NPAR }, + { PCI_VDEVICE(BROADCOM, 0x16f1), .driver_data = BCM57452 }, + { PCI_VDEVICE(BROADCOM, 0x1614), .driver_data = BCM57454 }, +#ifdef CONFIG_BNXT_BPO_SRIOV + { PCI_VDEVICE(BROADCOM, 0x16c1), .driver_data = NETXTREME_E_VF }, + { PCI_VDEVICE(BROADCOM, 0x16dc), .driver_data = NETXTREME_E_VF }, + { PCI_VDEVICE(BROADCOM, 0x16e1), .driver_data = NETXTREME_C_VF }, + { PCI_VDEVICE(BROADCOM, 0x16e5), .driver_data = NETXTREME_C_VF }, +#endif + { 0 } +}; + +MODULE_DEVICE_TABLE(pci, bnxt_pci_tbl); + +static const u16 bnxt_vf_req_snif[] = { + HWRM_FUNC_CFG, + HWRM_PORT_PHY_QCFG, + HWRM_CFA_L2_FILTER_ALLOC, +}; + +static const u16 bnxt_async_events_arr[] = { + ASYNC_EVENT_CMPL_EVENT_ID_LINK_STATUS_CHANGE, + ASYNC_EVENT_CMPL_EVENT_ID_PF_DRVR_UNLOAD, + ASYNC_EVENT_CMPL_EVENT_ID_PORT_CONN_NOT_ALLOWED, + ASYNC_EVENT_CMPL_EVENT_ID_VF_CFG_CHANGE, + ASYNC_EVENT_CMPL_EVENT_ID_LINK_SPEED_CFG_CHANGE, +}; + +static bool bnxt_vf_pciid(enum board_idx idx) +{ + return (idx == NETXTREME_C_VF || idx == NETXTREME_E_VF); +} + +#define DB_CP_REARM_FLAGS (DB_KEY_CP | DB_IDX_VALID) +#define DB_CP_FLAGS (DB_KEY_CP | DB_IDX_VALID | DB_IRQ_DIS) +#define DB_CP_IRQ_DIS_FLAGS (DB_KEY_CP | DB_IRQ_DIS) + +#define BNXT_CP_DB_REARM(db, raw_cons) \ + writel(DB_CP_REARM_FLAGS | RING_CMP(raw_cons), db) + +#define BNXT_CP_DB(db, raw_cons) \ + writel(DB_CP_FLAGS | RING_CMP(raw_cons), db) + +#define BNXT_CP_DB_IRQ_DIS(db) \ + writel(DB_CP_IRQ_DIS_FLAGS, db) + +const u16 bnxt_lhint_arr[] = { + TX_BD_FLAGS_LHINT_512_AND_SMALLER, + TX_BD_FLAGS_LHINT_512_TO_1023, + TX_BD_FLAGS_LHINT_1024_TO_2047, + TX_BD_FLAGS_LHINT_1024_TO_2047, + TX_BD_FLAGS_LHINT_2048_AND_LARGER, + TX_BD_FLAGS_LHINT_2048_AND_LARGER, + TX_BD_FLAGS_LHINT_2048_AND_LARGER, + TX_BD_FLAGS_LHINT_2048_AND_LARGER, + TX_BD_FLAGS_LHINT_2048_AND_LARGER, + TX_BD_FLAGS_LHINT_2048_AND_LARGER, + TX_BD_FLAGS_LHINT_2048_AND_LARGER, + TX_BD_FLAGS_LHINT_2048_AND_LARGER, + TX_BD_FLAGS_LHINT_2048_AND_LARGER, + TX_BD_FLAGS_LHINT_2048_AND_LARGER, + TX_BD_FLAGS_LHINT_2048_AND_LARGER, + TX_BD_FLAGS_LHINT_2048_AND_LARGER, + TX_BD_FLAGS_LHINT_2048_AND_LARGER, + TX_BD_FLAGS_LHINT_2048_AND_LARGER, + TX_BD_FLAGS_LHINT_2048_AND_LARGER, +}; + +static netdev_tx_t bnxt_start_xmit(struct sk_buff *skb, struct net_device *dev) +{ + struct bnxt *bp = netdev_priv(dev); + struct tx_bd *txbd; + struct tx_bd_ext *txbd1; + struct netdev_queue *txq; + int i; + dma_addr_t mapping; + unsigned int length, pad = 0; + u32 len, free_size, vlan_tag_flags, cfa_action, flags; + u16 prod, last_frag; + struct pci_dev *pdev = bp->pdev; + struct bnxt_tx_ring_info *txr; + struct bnxt_sw_tx_bd *tx_buf; + __le32 lflags = 0; + + i = skb_get_queue_mapping(skb); + if (unlikely(i >= bp->tx_nr_rings)) { + dev_kfree_skb_any(skb); + return NETDEV_TX_OK; + } + + txq = netdev_get_tx_queue(dev, i); + txr = &bp->tx_ring[bp->tx_ring_map[i]]; + prod = txr->tx_prod; + + free_size = bnxt_tx_avail(bp, txr); + if (unlikely(free_size < skb_shinfo(skb)->nr_frags + 2)) { + netif_tx_stop_queue(txq); + return NETDEV_TX_BUSY; + } + + length = skb->len; + len = skb_headlen(skb); + last_frag = skb_shinfo(skb)->nr_frags; + + txbd = &txr->tx_desc_ring[TX_RING(prod)][TX_IDX(prod)]; + + txbd->tx_bd_opaque = prod; + + tx_buf = &txr->tx_buf_ring[prod]; + tx_buf->skb = skb; + tx_buf->nr_frags = last_frag; + + vlan_tag_flags = 0; + cfa_action = 0; + if (skb_vlan_tag_present(skb)) { + vlan_tag_flags = TX_BD_CFA_META_KEY_VLAN | + skb_vlan_tag_get(skb); + /* Currently supports 8021Q, 8021AD vlan offloads + * QINQ1, QINQ2, QINQ3 vlan headers are deprecated + */ +#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,9,0) + if (skb->vlan_proto == htons(ETH_P_8021Q)) +#endif + vlan_tag_flags |= 1 << TX_BD_CFA_META_TPID_SHIFT; + } + +#ifdef HAVE_IEEE1588_SUPPORT + if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)) { + struct bnxt_ptp_cfg *ptp = bp->ptp_cfg; + + if (ptp && ptp->tx_tstamp_en && !skb_is_gso(skb) && + atomic_dec_if_positive(&ptp->tx_avail) >= 0) { + lflags = cpu_to_le32(TX_BD_FLAGS_STAMP); + goto normal_tx; + } + } +#endif + + if (free_size == bp->tx_ring_size && length <= bp->tx_push_thresh) { + struct tx_push_buffer *tx_push_buf = txr->tx_push; + struct tx_push_bd *tx_push = &tx_push_buf->push_bd; + struct tx_bd_ext *tx_push1 = &tx_push->txbd2; + void *pdata = tx_push_buf->data; + u64 *end; + int j, push_len; + + /* Set COAL_NOW to be ready quickly for the next push */ + tx_push->tx_bd_len_flags_type = + cpu_to_le32((length << TX_BD_LEN_SHIFT) | + TX_BD_TYPE_LONG_TX_BD | + TX_BD_FLAGS_LHINT_512_AND_SMALLER | + TX_BD_FLAGS_COAL_NOW | + TX_BD_FLAGS_PACKET_END | + (2 << TX_BD_FLAGS_BD_CNT_SHIFT)); + + if (skb->ip_summed == CHECKSUM_PARTIAL) + tx_push1->tx_bd_hsize_lflags = + cpu_to_le32(TX_BD_FLAGS_TCP_UDP_CHKSUM); + else + tx_push1->tx_bd_hsize_lflags = 0; + + tx_push1->tx_bd_cfa_meta = cpu_to_le32(vlan_tag_flags); + tx_push1->tx_bd_cfa_action = cpu_to_le32(cfa_action); + + end = pdata + length; + end = PTR_ALIGN(end, 8) - 1; + *end = 0; + + skb_copy_from_linear_data(skb, pdata, len); + pdata += len; + for (j = 0; j < last_frag; j++) { + skb_frag_t *frag = &skb_shinfo(skb)->frags[j]; + void *fptr; + + fptr = skb_frag_address_safe(frag); + if (!fptr) + goto normal_tx; + + memcpy(pdata, fptr, skb_frag_size(frag)); + pdata += skb_frag_size(frag); + } + + txbd->tx_bd_len_flags_type = tx_push->tx_bd_len_flags_type; + txbd->tx_bd_haddr = txr->data_mapping; + prod = NEXT_TX(prod); + txbd = &txr->tx_desc_ring[TX_RING(prod)][TX_IDX(prod)]; + memcpy(txbd, tx_push1, sizeof(*txbd)); + prod = NEXT_TX(prod); + tx_push->doorbell = + cpu_to_le32(DB_KEY_TX_PUSH | DB_LONG_TX_PUSH | prod); + txr->tx_prod = prod; + + tx_buf->is_push = 1; + netdev_tx_sent_queue(txq, skb->len); + wmb(); /* Sync is_push and byte queue before pushing data */ + + push_len = (length + sizeof(*tx_push) + 7) / 8; + if (push_len > 16) { + __iowrite64_copy(txr->tx_doorbell, tx_push_buf, 16); + __iowrite32_copy(txr->tx_doorbell + 4, tx_push_buf + 1, + (push_len - 16) << 1); + } else { + __iowrite64_copy(txr->tx_doorbell, tx_push_buf, + push_len); + } + + goto tx_done; + } + +normal_tx: + if (length < BNXT_MIN_PKT_SIZE) { + pad = BNXT_MIN_PKT_SIZE - length; + if (skb_pad(skb, pad)) { + /* SKB already freed. */ + tx_buf->skb = NULL; + return NETDEV_TX_OK; + } + length = BNXT_MIN_PKT_SIZE; + } + + mapping = dma_map_single(&pdev->dev, skb->data, len, DMA_TO_DEVICE); + + if (unlikely(dma_mapping_error(&pdev->dev, mapping))) { + dev_kfree_skb_any(skb); + tx_buf->skb = NULL; + return NETDEV_TX_OK; + } + + dma_unmap_addr_set(tx_buf, mapping, mapping); + flags = (len << TX_BD_LEN_SHIFT) | TX_BD_TYPE_LONG_TX_BD | + ((last_frag + 2) << TX_BD_FLAGS_BD_CNT_SHIFT); + + txbd->tx_bd_haddr = cpu_to_le64(mapping); + + prod = NEXT_TX(prod); + txbd1 = (struct tx_bd_ext *) + &txr->tx_desc_ring[TX_RING(prod)][TX_IDX(prod)]; + + txbd1->tx_bd_hsize_lflags = lflags; + if (skb_is_gso(skb)) { + u32 hdr_len; + +#ifdef HAVE_INNER_NETWORK_OFFSET + if (skb->encapsulation) + hdr_len = skb_inner_network_offset(skb) + + skb_inner_network_header_len(skb) + + inner_tcp_hdrlen(skb); + else +#endif + hdr_len = skb_transport_offset(skb) + + tcp_hdrlen(skb); + + txbd1->tx_bd_hsize_lflags = cpu_to_le32(TX_BD_FLAGS_LSO | + TX_BD_FLAGS_T_IPID | + (hdr_len << (TX_BD_HSIZE_SHIFT - 1))); + length = skb_shinfo(skb)->gso_size; + txbd1->tx_bd_mss = cpu_to_le32(length); + length += hdr_len; + } else if (skb->ip_summed == CHECKSUM_PARTIAL) { + txbd1->tx_bd_hsize_lflags |= + cpu_to_le32(TX_BD_FLAGS_TCP_UDP_CHKSUM); + txbd1->tx_bd_mss = 0; + } + + length >>= 9; + flags |= bnxt_lhint_arr[length]; + txbd->tx_bd_len_flags_type = cpu_to_le32(flags); + + txbd1->tx_bd_cfa_meta = cpu_to_le32(vlan_tag_flags); + txbd1->tx_bd_cfa_action = cpu_to_le32(cfa_action); + for (i = 0; i < last_frag; i++) { + skb_frag_t *frag = &skb_shinfo(skb)->frags[i]; + + prod = NEXT_TX(prod); + txbd = &txr->tx_desc_ring[TX_RING(prod)][TX_IDX(prod)]; + + len = skb_frag_size(frag); + mapping = skb_frag_dma_map(&pdev->dev, frag, 0, len, + DMA_TO_DEVICE); + + if (unlikely(dma_mapping_error(&pdev->dev, mapping))) + goto tx_dma_error; + + tx_buf = &txr->tx_buf_ring[prod]; + dma_unmap_addr_set(tx_buf, mapping, mapping); + + txbd->tx_bd_haddr = cpu_to_le64(mapping); + + flags = len << TX_BD_LEN_SHIFT; + txbd->tx_bd_len_flags_type = cpu_to_le32(flags); + } + + flags &= ~TX_BD_LEN; + txbd->tx_bd_len_flags_type = + cpu_to_le32(((len + pad) << TX_BD_LEN_SHIFT) | flags | + TX_BD_FLAGS_PACKET_END); + + netdev_tx_sent_queue(txq, skb->len); + +#ifdef HAVE_IEEE1588_SUPPORT + if (unlikely(lflags)) + skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS; + skb_tx_timestamp(skb); +#endif + + /* Sync BD data before updating doorbell */ + wmb(); + + prod = NEXT_TX(prod); + txr->tx_prod = prod; + + writel(DB_KEY_TX | prod, txr->tx_doorbell); + writel(DB_KEY_TX | prod, txr->tx_doorbell); + +tx_done: + + mmiowb(); + + if (unlikely(bnxt_tx_avail(bp, txr) <= MAX_SKB_FRAGS + 1)) { + netif_tx_stop_queue(txq); + + /* netif_tx_stop_queue() must be done before checking + * tx index in bnxt_tx_avail() below, because in + * bnxt_tx_int(), we update tx index before checking for + * netif_tx_queue_stopped(). + */ + smp_mb(); + if (bnxt_tx_avail(bp, txr) > bp->tx_wake_thresh) + netif_tx_wake_queue(txq); + } + return NETDEV_TX_OK; + +tx_dma_error: + if (lflags) + atomic_inc(&bp->ptp_cfg->tx_avail); + + last_frag = i; + + /* start back at beginning and unmap skb */ + prod = txr->tx_prod; + tx_buf = &txr->tx_buf_ring[prod]; + tx_buf->skb = NULL; + dma_unmap_single(&pdev->dev, dma_unmap_addr(tx_buf, mapping), + skb_headlen(skb), PCI_DMA_TODEVICE); + prod = NEXT_TX(prod); + + /* unmap remaining mapped pages */ + for (i = 0; i < last_frag; i++) { + prod = NEXT_TX(prod); + tx_buf = &txr->tx_buf_ring[prod]; + dma_unmap_page(&pdev->dev, dma_unmap_addr(tx_buf, mapping), + skb_frag_size(&skb_shinfo(skb)->frags[i]), + PCI_DMA_TODEVICE); + } + + dev_kfree_skb_any(skb); + return NETDEV_TX_OK; +} + +static void bnxt_tx_int(struct bnxt *bp, struct bnxt_napi *bnapi, int nr_pkts) +{ + struct bnxt_tx_ring_info *txr = bnapi->tx_ring; + struct netdev_queue *txq = netdev_get_tx_queue(bp->dev, txr->txq_index); + u16 cons = txr->tx_cons; + struct pci_dev *pdev = bp->pdev; + int i; + unsigned int tx_bytes = 0; + + for (i = 0; i < nr_pkts; i++) { + struct bnxt_sw_tx_bd *tx_buf; + struct sk_buff *skb; + int j, last; + + tx_buf = &txr->tx_buf_ring[cons]; + cons = NEXT_TX(cons); + skb = tx_buf->skb; + tx_buf->skb = NULL; + + if (tx_buf->is_push) { + tx_buf->is_push = 0; + goto next_tx_int; + } + + dma_unmap_single(&pdev->dev, dma_unmap_addr(tx_buf, mapping), + skb_headlen(skb), PCI_DMA_TODEVICE); + last = tx_buf->nr_frags; + + for (j = 0; j < last; j++) { + cons = NEXT_TX(cons); + tx_buf = &txr->tx_buf_ring[cons]; + dma_unmap_page( + &pdev->dev, + dma_unmap_addr(tx_buf, mapping), + skb_frag_size(&skb_shinfo(skb)->frags[j]), + PCI_DMA_TODEVICE); + } + +#ifdef HAVE_IEEE1588_SUPPORT + if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_IN_PROGRESS)) { + u64 ts; + + if (!bnxt_get_tx_ts(bp, &ts)) { + struct skb_shared_hwtstamps timestamp; + struct bnxt_ptp_cfg *ptp = bp->ptp_cfg; + u64 ns; + + memset(×tamp, 0, sizeof(timestamp)); + ns = timecounter_cyc2time(&ptp->tc, ts); + timestamp.hwtstamp = ns_to_ktime(ns); + skb_tstamp_tx(skb, ×tamp); + } + atomic_inc(&bp->ptp_cfg->tx_avail); + } +#endif + +next_tx_int: + cons = NEXT_TX(cons); + + tx_bytes += skb->len; + dev_kfree_skb_any(skb); + } + + netdev_tx_completed_queue(txq, nr_pkts, tx_bytes); + txr->tx_cons = cons; + + /* Need to make the tx_cons update visible to bnxt_start_xmit() + * before checking for netif_tx_queue_stopped(). Without the + * memory barrier, there is a small possibility that bnxt_start_xmit() + * will miss it and cause the queue to be stopped forever. + */ + smp_mb(); + + if (unlikely(netif_tx_queue_stopped(txq)) && + (bnxt_tx_avail(bp, txr) > bp->tx_wake_thresh)) { + __netif_tx_lock(txq, smp_processor_id()); + if (netif_tx_queue_stopped(txq) && + bnxt_tx_avail(bp, txr) > bp->tx_wake_thresh && + txr->dev_state != BNXT_DEV_STATE_CLOSING) + netif_tx_wake_queue(txq); + __netif_tx_unlock(txq); + } +} + +#ifdef HAVE_BUILD_SKB +static struct page *__bnxt_alloc_rx_page(struct bnxt *bp, dma_addr_t *mapping, + gfp_t gfp) +{ + struct device *dev = &bp->pdev->dev; + struct page *page; + + page = alloc_page(gfp); + if (!page) + return NULL; + + *mapping = dma_map_page(dev, page, 0, PAGE_SIZE, bp->rx_dir); + if (dma_mapping_error(dev, *mapping)) { + __free_page(page); + return NULL; + } + *mapping += bp->rx_dma_offset; + return page; +} + +static inline u8 *__bnxt_alloc_rx_data(struct bnxt *bp, dma_addr_t *mapping, + gfp_t gfp) +{ + u8 *data; + struct pci_dev *pdev = bp->pdev; + + data = kmalloc(bp->rx_buf_size, gfp); + if (!data) + return NULL; + + *mapping = dma_map_single(&pdev->dev, data + bp->rx_dma_offset, + bp->rx_buf_use_size, bp->rx_dir); + + if (dma_mapping_error(&pdev->dev, *mapping)) { + kfree(data); + data = NULL; + } + return data; +} +#else + +static struct page *__bnxt_alloc_rx_page(struct bnxt *bp, dma_addr_t *mapping, + gfp_t gfp) +{ + return NULL; +} + +static inline struct sk_buff *__bnxt_alloc_rx_data(struct bnxt *bp, + dma_addr_t *mapping, + gfp_t gfp) +{ + struct sk_buff *skb; + u8 *data; + struct pci_dev *pdev = bp->pdev; + + skb = netdev_alloc_skb(bp->dev, bp->rx_buf_size); + if (skb == NULL) + return NULL; + + data = skb->data; + + *mapping = dma_map_single(&pdev->dev, data + bp->rx_dma_offset, + bp->rx_buf_use_size, bp->rx_dir); + + if (dma_mapping_error(&pdev->dev, *mapping)) { + dev_kfree_skb(skb); + skb = NULL; + } + return skb; +} +#endif + +int bnxt_alloc_rx_data(struct bnxt *bp, struct bnxt_rx_ring_info *rxr, + u16 prod, gfp_t gfp) +{ + struct rx_bd *rxbd = &rxr->rx_desc_ring[RX_RING(prod)][RX_IDX(prod)]; + struct bnxt_sw_rx_bd *rx_buf = &rxr->rx_buf_ring[prod]; + dma_addr_t mapping; + + if (BNXT_RX_PAGE_MODE(bp)) { + struct page *page = __bnxt_alloc_rx_page(bp, &mapping, gfp); + + if (!page) + return -ENOMEM; + + rx_buf->data = page; + rx_buf->data_ptr = page_address(page) + bp->rx_offset; + } else { +#ifdef HAVE_BUILD_SKB + u8 *data = __bnxt_alloc_rx_data(bp, &mapping, gfp); +#else + struct sk_buff *data = __bnxt_alloc_rx_data(bp, &mapping, gfp); +#endif + + if (!data) + return -ENOMEM; + + rx_buf->data = data; +#ifdef HAVE_BUILD_SKB + rx_buf->data_ptr = data + bp->rx_offset; +#else + rx_buf->data_ptr = data->data + bp->rx_offset; +#endif + } + rx_buf->mapping = mapping; + + rxbd->rx_bd_haddr = cpu_to_le64(mapping); + return 0; +} + +void bnxt_reuse_rx_data(struct bnxt_rx_ring_info *rxr, u16 cons, void *data) +{ + u16 prod = rxr->rx_prod; + struct bnxt_sw_rx_bd *cons_rx_buf, *prod_rx_buf; + struct rx_bd *cons_bd, *prod_bd; + + prod_rx_buf = &rxr->rx_buf_ring[prod]; + cons_rx_buf = &rxr->rx_buf_ring[cons]; + + prod_rx_buf->data = data; + prod_rx_buf->data_ptr = cons_rx_buf->data_ptr; + + prod_rx_buf->mapping = cons_rx_buf->mapping; + + prod_bd = &rxr->rx_desc_ring[RX_RING(prod)][RX_IDX(prod)]; + cons_bd = &rxr->rx_desc_ring[RX_RING(cons)][RX_IDX(cons)]; + + prod_bd->rx_bd_haddr = cons_bd->rx_bd_haddr; +} + +static inline u16 bnxt_find_next_agg_idx(struct bnxt_rx_ring_info *rxr, u16 idx) +{ + u16 next, max = rxr->rx_agg_bmap_size; + + next = find_next_zero_bit(rxr->rx_agg_bmap, max, idx); + if (next >= max) + next = find_first_zero_bit(rxr->rx_agg_bmap, max); + return next; +} + +static inline int bnxt_alloc_rx_page(struct bnxt *bp, + struct bnxt_rx_ring_info *rxr, + u16 prod, gfp_t gfp) +{ + struct rx_bd *rxbd = + &rxr->rx_agg_desc_ring[RX_RING(prod)][RX_IDX(prod)]; + struct bnxt_sw_rx_agg_bd *rx_agg_buf; + struct pci_dev *pdev = bp->pdev; + struct page *page; + dma_addr_t mapping; + u16 sw_prod = rxr->rx_sw_agg_prod; + unsigned int offset = 0; + + if (PAGE_SIZE > BNXT_RX_PAGE_SIZE) { + page = rxr->rx_page; + if (!page) { + page = alloc_page(gfp); + if (!page) + return -ENOMEM; + rxr->rx_page = page; + rxr->rx_page_offset = 0; + } + offset = rxr->rx_page_offset; + rxr->rx_page_offset += BNXT_RX_PAGE_SIZE; + if (rxr->rx_page_offset == PAGE_SIZE) + rxr->rx_page = NULL; + else + get_page(page); + } else { + page = alloc_page(gfp); + if (!page) + return -ENOMEM; + } + + mapping = dma_map_page(&pdev->dev, page, offset, BNXT_RX_PAGE_SIZE, + PCI_DMA_FROMDEVICE); + if (dma_mapping_error(&pdev->dev, mapping)) { + __free_page(page); + return -EIO; + } + + if (unlikely(test_bit(sw_prod, rxr->rx_agg_bmap))) + sw_prod = bnxt_find_next_agg_idx(rxr, sw_prod); + + __set_bit(sw_prod, rxr->rx_agg_bmap); + rx_agg_buf = &rxr->rx_agg_ring[sw_prod]; + rxr->rx_sw_agg_prod = NEXT_RX_AGG(sw_prod); + + rx_agg_buf->page = page; + rx_agg_buf->offset = offset; + rx_agg_buf->mapping = mapping; + rxbd->rx_bd_haddr = cpu_to_le64(mapping); + rxbd->rx_bd_opaque = sw_prod; + return 0; +} + +static void bnxt_reuse_rx_agg_bufs(struct bnxt_napi *bnapi, u16 cp_cons, + u32 agg_bufs) +{ + struct bnxt *bp = bnapi->bp; + struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring; + struct bnxt_rx_ring_info *rxr = bnapi->rx_ring; + u16 prod = rxr->rx_agg_prod; + u16 sw_prod = rxr->rx_sw_agg_prod; + u32 i; + + for (i = 0; i < agg_bufs; i++) { + u16 cons; + struct rx_agg_cmp *agg; + struct bnxt_sw_rx_agg_bd *cons_rx_buf, *prod_rx_buf; + struct rx_bd *prod_bd; + struct page *page; + + agg = (struct rx_agg_cmp *) + &cpr->cp_desc_ring[CP_RING(cp_cons)][CP_IDX(cp_cons)]; + cons = agg->rx_agg_cmp_opaque; + __clear_bit(cons, rxr->rx_agg_bmap); + + if (unlikely(test_bit(sw_prod, rxr->rx_agg_bmap))) + sw_prod = bnxt_find_next_agg_idx(rxr, sw_prod); + + __set_bit(sw_prod, rxr->rx_agg_bmap); + prod_rx_buf = &rxr->rx_agg_ring[sw_prod]; + cons_rx_buf = &rxr->rx_agg_ring[cons]; + + /* It is possible for sw_prod to be equal to cons, so + * set cons_rx_buf->page to NULL first. + */ + page = cons_rx_buf->page; + cons_rx_buf->page = NULL; + prod_rx_buf->page = page; + prod_rx_buf->offset = cons_rx_buf->offset; + + prod_rx_buf->mapping = cons_rx_buf->mapping; + + prod_bd = &rxr->rx_agg_desc_ring[RX_RING(prod)][RX_IDX(prod)]; + + prod_bd->rx_bd_haddr = cpu_to_le64(cons_rx_buf->mapping); + prod_bd->rx_bd_opaque = sw_prod; + + prod = NEXT_RX_AGG(prod); + sw_prod = NEXT_RX_AGG(sw_prod); + cp_cons = NEXT_CMP(cp_cons); + } + rxr->rx_agg_prod = prod; + rxr->rx_sw_agg_prod = sw_prod; +} + +#ifdef HAVE_BUILD_SKB +#ifdef BNXT_RX_PAGE_MODE_SUPPORT +static struct sk_buff *bnxt_rx_page_skb(struct bnxt *bp, + struct bnxt_rx_ring_info *rxr, + u16 cons, void *data, u8 *data_ptr, + dma_addr_t dma_addr, + unsigned int offset_and_len) +{ + unsigned int payload = offset_and_len >> 16; + unsigned int len = offset_and_len & 0xffff; + struct skb_frag_struct *frag; + struct page *page = data; + u16 prod = rxr->rx_prod; + struct sk_buff *skb; + int off, err; + + err = bnxt_alloc_rx_data(bp, rxr, prod, GFP_ATOMIC); + if (unlikely(err)) { + bnxt_reuse_rx_data(rxr, cons, data); + return NULL; + } + dma_addr -= bp->rx_dma_offset; + dma_unmap_page(&bp->pdev->dev, dma_addr, PAGE_SIZE, bp->rx_dir); + + if (unlikely(!payload)) + payload = eth_get_headlen(data_ptr, len); + + skb = napi_alloc_skb(&rxr->bnapi->napi, payload); + if (!skb) { + __free_page(page); + return NULL; + } + + off = (void *)data_ptr - page_address(page); + skb_add_rx_frag(skb, 0, page, off, len, PAGE_SIZE); + memcpy(skb->data - NET_IP_ALIGN, data_ptr - NET_IP_ALIGN, + payload + NET_IP_ALIGN); + + frag = &skb_shinfo(skb)->frags[0]; + skb_frag_size_sub(frag, payload); + frag->page_offset += payload; + skb->data_len -= payload; + skb->tail += payload; + + return skb; +} +#endif + +static struct sk_buff *bnxt_rx_skb(struct bnxt *bp, + struct bnxt_rx_ring_info *rxr, u16 cons, + void *data, u8 *data_ptr, + dma_addr_t dma_addr, + unsigned int offset_and_len) +{ + u16 prod = rxr->rx_prod; + struct sk_buff *skb; + int err; + + err = bnxt_alloc_rx_data(bp, rxr, prod, GFP_ATOMIC); + if (unlikely(err)) { + bnxt_reuse_rx_data(rxr, cons, data); + return NULL; + } + + skb = build_skb(data, 0); + dma_unmap_single(&bp->pdev->dev, dma_addr, bp->rx_buf_use_size, + bp->rx_dir); + if (!skb) { + kfree(data); + return NULL; + } + + skb_reserve(skb, bp->rx_offset); + skb_put(skb, offset_and_len & 0xffff); + return skb; +} +#else +static struct sk_buff *bnxt_rx_skb(struct bnxt *bp, + struct bnxt_rx_ring_info *rxr, u16 cons, + void *data, u8 *data_ptr, + dma_addr_t dma_addr, + unsigned int offset_and_len) +{ + struct sk_buff *skb = data; + u16 prod = rxr->rx_prod; + int err; + + err = bnxt_alloc_rx_data(bp, rxr, prod, GFP_ATOMIC); + if (unlikely(err)) { + bnxt_reuse_rx_data(rxr, cons, skb); + return NULL; + } + + dma_unmap_single(&bp->pdev->dev, dma_addr, bp->rx_buf_use_size, + bp->rx_dir); + skb_reserve(skb, bp->rx_offset); + skb_put(skb, offset_and_len & 0xffff); + return skb; +} +#endif + +static struct sk_buff *bnxt_rx_pages(struct bnxt *bp, struct bnxt_napi *bnapi, + struct sk_buff *skb, u16 cp_cons, + u32 agg_bufs) +{ + struct pci_dev *pdev = bp->pdev; + struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring; + struct bnxt_rx_ring_info *rxr = bnapi->rx_ring; + u16 prod = rxr->rx_agg_prod; + u32 i; + + for (i = 0; i < agg_bufs; i++) { + u16 cons, frag_len; + struct rx_agg_cmp *agg; + struct bnxt_sw_rx_agg_bd *cons_rx_buf; + struct page *page; + dma_addr_t mapping; + + agg = (struct rx_agg_cmp *) + &cpr->cp_desc_ring[CP_RING(cp_cons)][CP_IDX(cp_cons)]; + cons = agg->rx_agg_cmp_opaque; + frag_len = (le32_to_cpu(agg->rx_agg_cmp_len_flags_type) & + RX_AGG_CMP_LEN) >> RX_AGG_CMP_LEN_SHIFT; + + cons_rx_buf = &rxr->rx_agg_ring[cons]; + skb_fill_page_desc(skb, i, cons_rx_buf->page, + cons_rx_buf->offset, frag_len); + __clear_bit(cons, rxr->rx_agg_bmap); + + /* It is possible for bnxt_alloc_rx_page() to allocate + * a sw_prod index that equals the cons index, so we + * need to clear the cons entry now. + */ + mapping = cons_rx_buf->mapping; + page = cons_rx_buf->page; + cons_rx_buf->page = NULL; + + if (bnxt_alloc_rx_page(bp, rxr, prod, GFP_ATOMIC) != 0) { + struct skb_shared_info *shinfo; + unsigned int nr_frags; + + shinfo = skb_shinfo(skb); + nr_frags = --shinfo->nr_frags; + __skb_frag_set_page(&shinfo->frags[nr_frags], NULL); + + dev_kfree_skb(skb); + + cons_rx_buf->page = page; + + /* Update prod since possibly some pages have been + * allocated already. + */ + rxr->rx_agg_prod = prod; + bnxt_reuse_rx_agg_bufs(bnapi, cp_cons, agg_bufs - i); + return NULL; + } + + dma_unmap_page(&pdev->dev, mapping, BNXT_RX_PAGE_SIZE, + PCI_DMA_FROMDEVICE); + + skb->data_len += frag_len; + skb->len += frag_len; + skb->truesize += PAGE_SIZE; + + prod = NEXT_RX_AGG(prod); + cp_cons = NEXT_CMP(cp_cons); + } + rxr->rx_agg_prod = prod; + return skb; +} + +static int bnxt_agg_bufs_valid(struct bnxt *bp, struct bnxt_cp_ring_info *cpr, + u8 agg_bufs, u32 *raw_cons) +{ + u16 last; + struct rx_agg_cmp *agg; + + *raw_cons = ADV_RAW_CMP(*raw_cons, agg_bufs); + last = RING_CMP(*raw_cons); + agg = (struct rx_agg_cmp *) + &cpr->cp_desc_ring[CP_RING(last)][CP_IDX(last)]; + return RX_AGG_CMP_VALID(agg, *raw_cons); +} + +static inline struct sk_buff *bnxt_copy_skb(struct bnxt_napi *bnapi, u8 *data, + unsigned int len, + dma_addr_t mapping) +{ + struct bnxt *bp = bnapi->bp; + struct pci_dev *pdev = bp->pdev; + struct sk_buff *skb; + + skb = napi_alloc_skb(&bnapi->napi, len); + if (!skb) + return NULL; + + dma_sync_single_for_cpu(&pdev->dev, mapping, bp->rx_copy_thresh, + bp->rx_dir); + + memcpy(skb->data - NET_IP_ALIGN, data - NET_IP_ALIGN, + len + NET_IP_ALIGN); + + dma_sync_single_for_device(&pdev->dev, mapping, bp->rx_copy_thresh, + bp->rx_dir); + + skb_put(skb, len); + return skb; +} + +static int bnxt_discard_rx(struct bnxt *bp, struct bnxt_napi *bnapi, + u32 *raw_cons, void *cmp) +{ + struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring; + struct rx_cmp *rxcmp = cmp; + u32 tmp_raw_cons = *raw_cons; + u8 cmp_type, agg_bufs = 0; + + cmp_type = RX_CMP_TYPE(rxcmp); + + if (cmp_type == CMP_TYPE_RX_L2_CMP) { + agg_bufs = (le32_to_cpu(rxcmp->rx_cmp_misc_v1) & + RX_CMP_AGG_BUFS) >> + RX_CMP_AGG_BUFS_SHIFT; + } else if (cmp_type == CMP_TYPE_RX_L2_TPA_END_CMP) { + struct rx_tpa_end_cmp *tpa_end = cmp; + + agg_bufs = (le32_to_cpu(tpa_end->rx_tpa_end_cmp_misc_v1) & + RX_TPA_END_CMP_AGG_BUFS) >> + RX_TPA_END_CMP_AGG_BUFS_SHIFT; + } + + if (agg_bufs) { + if (!bnxt_agg_bufs_valid(bp, cpr, agg_bufs, &tmp_raw_cons)) + return -EBUSY; + } + *raw_cons = tmp_raw_cons; + return 0; +} + +static void bnxt_sched_reset(struct bnxt *bp, struct bnxt_rx_ring_info *rxr) +{ + if (!rxr->bnapi->in_reset) { + rxr->bnapi->in_reset = true; + set_bit(BNXT_RESET_TASK_SP_EVENT, &bp->sp_event); + schedule_work(&bp->sp_task); + } + rxr->rx_next_cons = 0xffff; +} + +static void bnxt_tpa_start(struct bnxt *bp, struct bnxt_rx_ring_info *rxr, + struct rx_tpa_start_cmp *tpa_start, + struct rx_tpa_start_cmp_ext *tpa_start1) +{ + u8 agg_id = TPA_START_AGG_ID(tpa_start); + u16 cons, prod; + struct bnxt_tpa_info *tpa_info; + struct bnxt_sw_rx_bd *cons_rx_buf, *prod_rx_buf; + struct rx_bd *prod_bd; + dma_addr_t mapping; + + cons = tpa_start->rx_tpa_start_cmp_opaque; + prod = rxr->rx_prod; + cons_rx_buf = &rxr->rx_buf_ring[cons]; + prod_rx_buf = &rxr->rx_buf_ring[prod]; + tpa_info = &rxr->rx_tpa[agg_id]; + + if (unlikely(cons != rxr->rx_next_cons)) { + bnxt_sched_reset(bp, rxr); + return; + } + + prod_rx_buf->data = tpa_info->data; + prod_rx_buf->data_ptr = tpa_info->data_ptr; + + mapping = tpa_info->mapping; + prod_rx_buf->mapping = mapping; + + prod_bd = &rxr->rx_desc_ring[RX_RING(prod)][RX_IDX(prod)]; + + prod_bd->rx_bd_haddr = cpu_to_le64(mapping); + + tpa_info->data = cons_rx_buf->data; + tpa_info->data_ptr = cons_rx_buf->data_ptr; + cons_rx_buf->data = NULL; + tpa_info->mapping = cons_rx_buf->mapping; + + tpa_info->len = + le32_to_cpu(tpa_start->rx_tpa_start_cmp_len_flags_type) >> + RX_TPA_START_CMP_LEN_SHIFT; + if (likely(TPA_START_HASH_VALID(tpa_start))) { + u32 hash_type = TPA_START_HASH_TYPE(tpa_start); + + tpa_info->hash_type = PKT_HASH_TYPE_L4; + tpa_info->gso_type = SKB_GSO_TCPV4; + /* RSS profiles 1 and 3 with extract code 0 for inner 4-tuple */ + if (hash_type == 3) + tpa_info->gso_type = SKB_GSO_TCPV6; + tpa_info->rss_hash = + le32_to_cpu(tpa_start->rx_tpa_start_cmp_rss_hash); + } else { + tpa_info->hash_type = PKT_HASH_TYPE_NONE; + tpa_info->gso_type = 0; + if (netif_msg_rx_err(bp)) + netdev_warn(bp->dev, "TPA packet without valid hash\n"); + } + tpa_info->flags2 = le32_to_cpu(tpa_start1->rx_tpa_start_cmp_flags2); + tpa_info->metadata = le32_to_cpu(tpa_start1->rx_tpa_start_cmp_metadata); + tpa_info->hdr_info = le32_to_cpu(tpa_start1->rx_tpa_start_cmp_hdr_info); + + rxr->rx_prod = NEXT_RX(prod); + cons = NEXT_RX(cons); + rxr->rx_next_cons = NEXT_RX(cons); + cons_rx_buf = &rxr->rx_buf_ring[cons]; + + bnxt_reuse_rx_data(rxr, cons, cons_rx_buf->data); + rxr->rx_prod = NEXT_RX(rxr->rx_prod); + cons_rx_buf->data = NULL; +} + +static void bnxt_abort_tpa(struct bnxt *bp, struct bnxt_napi *bnapi, + u16 cp_cons, u32 agg_bufs) +{ + if (agg_bufs) + bnxt_reuse_rx_agg_bufs(bnapi, cp_cons, agg_bufs); +} + +static struct sk_buff *bnxt_gro_func_5731x(struct bnxt_tpa_info *tpa_info, + int payload_off, int tcp_ts, + struct sk_buff *skb) +{ +#ifdef CONFIG_INET + struct tcphdr *th; + int len, nw_off; + u16 outer_ip_off, inner_ip_off, inner_mac_off; + u32 hdr_info = tpa_info->hdr_info; + bool loopback = false; + + inner_ip_off = BNXT_TPA_INNER_L3_OFF(hdr_info); + inner_mac_off = BNXT_TPA_INNER_L2_OFF(hdr_info); + outer_ip_off = BNXT_TPA_OUTER_L3_OFF(hdr_info); + + /* If the packet is an internal loopback packet, the offsets will + * have an extra 4 bytes. + */ + if (inner_mac_off == 4) { + loopback = true; + } else if (inner_mac_off > 4) { + __be16 proto = *((__be16 *)(skb->data + inner_ip_off - + ETH_HLEN - 2)); + + /* We only support inner iPv4/ipv6. If we don't see the + * correct protocol ID, it must be a loopback packet where + * the offsets are off by 4. + */ + if (proto != htons(ETH_P_IP) && proto != htons(ETH_P_IPV6)) + loopback = true; + } + if (loopback) { + /* internal loopback packet, subtract all offsets by 4 */ + inner_ip_off -= 4; + inner_mac_off -= 4; + outer_ip_off -= 4; + } + + nw_off = inner_ip_off - ETH_HLEN; + skb_set_network_header(skb, nw_off); + if (tpa_info->flags2 & RX_TPA_START_CMP_FLAGS2_IP_TYPE) { + struct ipv6hdr *iph = ipv6_hdr(skb); + + skb_set_transport_header(skb, nw_off + sizeof(struct ipv6hdr)); + len = skb->len - skb_transport_offset(skb); + th = tcp_hdr(skb); + th->check = ~tcp_v6_check(len, &iph->saddr, &iph->daddr, 0); + } else { + struct iphdr *iph = ip_hdr(skb); + + skb_set_transport_header(skb, nw_off + sizeof(struct iphdr)); + len = skb->len - skb_transport_offset(skb); + th = tcp_hdr(skb); + th->check = ~tcp_v4_check(len, iph->saddr, iph->daddr, 0); + } + + if (inner_mac_off) { /* tunnel */ + struct udphdr *uh = NULL; + __be16 proto = *((__be16 *)(skb->data + outer_ip_off - + ETH_HLEN - 2)); + + if (proto == htons(ETH_P_IP)) { + struct iphdr *iph = (struct iphdr *)skb->data; + + if (iph->protocol == IPPROTO_UDP) + uh = (struct udphdr *)(iph + 1); + } else { + struct ipv6hdr *iph = (struct ipv6hdr *)skb->data; + + if (iph->nexthdr == IPPROTO_UDP) + uh = (struct udphdr *)(iph + 1); + } + if (uh) { + if (uh->check) + skb_shinfo(skb)->gso_type |= + SKB_GSO_UDP_TUNNEL_CSUM; + else + skb_shinfo(skb)->gso_type |= SKB_GSO_UDP_TUNNEL; + } + } +#endif + return skb; +} + +#define BNXT_IPV4_HDR_SIZE (sizeof(struct iphdr) + sizeof(struct tcphdr)) +#define BNXT_IPV6_HDR_SIZE (sizeof(struct ipv6hdr) + sizeof(struct tcphdr)) + +static struct sk_buff *bnxt_gro_func_5730x(struct bnxt_tpa_info *tpa_info, + int payload_off, int tcp_ts, + struct sk_buff *skb) +{ +#ifdef CONFIG_INET + struct tcphdr *th; + int len, nw_off, tcp_opt_len = 0; + + if (tcp_ts) + tcp_opt_len = 12; + + if (tpa_info->gso_type == SKB_GSO_TCPV4) { + struct iphdr *iph; + + nw_off = payload_off - BNXT_IPV4_HDR_SIZE - tcp_opt_len - + ETH_HLEN; + skb_set_network_header(skb, nw_off); + iph = ip_hdr(skb); + skb_set_transport_header(skb, nw_off + sizeof(struct iphdr)); + len = skb->len - skb_transport_offset(skb); + th = tcp_hdr(skb); + th->check = ~tcp_v4_check(len, iph->saddr, iph->daddr, 0); + } else if (tpa_info->gso_type == SKB_GSO_TCPV6) { + struct ipv6hdr *iph; + + nw_off = payload_off - BNXT_IPV6_HDR_SIZE - tcp_opt_len - + ETH_HLEN; + skb_set_network_header(skb, nw_off); + iph = ipv6_hdr(skb); + skb_set_transport_header(skb, nw_off + sizeof(struct ipv6hdr)); + len = skb->len - skb_transport_offset(skb); + th = tcp_hdr(skb); + th->check = ~tcp_v6_check(len, &iph->saddr, &iph->daddr, 0); + } else { + dev_kfree_skb_any(skb); + return NULL; + } + + if (nw_off) { /* tunnel */ + struct udphdr *uh = NULL; + + if (skb->protocol == htons(ETH_P_IP)) { + struct iphdr *iph = (struct iphdr *)skb->data; + + if (iph->protocol == IPPROTO_UDP) + uh = (struct udphdr *)(iph + 1); + } else { + struct ipv6hdr *iph = (struct ipv6hdr *)skb->data; + + if (iph->nexthdr == IPPROTO_UDP) + uh = (struct udphdr *)(iph + 1); + } + if (uh) { + if (uh->check) + skb_shinfo(skb)->gso_type |= + SKB_GSO_UDP_TUNNEL_CSUM; + else + skb_shinfo(skb)->gso_type |= SKB_GSO_UDP_TUNNEL; + } + } +#endif + return skb; +} + +static inline struct sk_buff *bnxt_gro_skb(struct bnxt *bp, + struct bnxt_tpa_info *tpa_info, + struct rx_tpa_end_cmp *tpa_end, + struct rx_tpa_end_cmp_ext *tpa_end1, + struct sk_buff *skb) +{ +#ifdef CONFIG_INET + int payload_off; + u16 segs; + + segs = TPA_END_TPA_SEGS(tpa_end); + if (segs == 1) + return skb; + + NAPI_GRO_CB(skb)->count = segs; + skb_shinfo(skb)->gso_size = + le32_to_cpu(tpa_end1->rx_tpa_end_cmp_seg_len); + skb_shinfo(skb)->gso_type = tpa_info->gso_type; + payload_off = (le32_to_cpu(tpa_end->rx_tpa_end_cmp_misc_v1) & + RX_TPA_END_CMP_PAYLOAD_OFFSET) >> + RX_TPA_END_CMP_PAYLOAD_OFFSET_SHIFT; + skb = bp->gro_func(tpa_info, payload_off, TPA_END_GRO_TS(tpa_end), skb); + if (likely(skb)) + tcp_gro_complete(skb); +#endif + return skb; +} + +static inline struct sk_buff *bnxt_tpa_end(struct bnxt *bp, + struct bnxt_napi *bnapi, + u32 *raw_cons, + struct rx_tpa_end_cmp *tpa_end, + struct rx_tpa_end_cmp_ext *tpa_end1, +#ifdef OLD_VLAN + u32 *vlan, +#endif + u8 *event) +{ + struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring; + struct bnxt_rx_ring_info *rxr = bnapi->rx_ring; + u8 agg_id = TPA_END_AGG_ID(tpa_end); + u8 *data_ptr, agg_bufs; + u16 cp_cons = RING_CMP(*raw_cons); + unsigned int len; + struct bnxt_tpa_info *tpa_info; + dma_addr_t mapping; + struct sk_buff *skb; +#ifdef HAVE_BUILD_SKB + void *data; +#else + struct sk_buff *data; +#endif + + if (unlikely(bnapi->in_reset)) { + int rc = bnxt_discard_rx(bp, bnapi, raw_cons, tpa_end); + + if (rc < 0) + return ERR_PTR(-EBUSY); + return NULL; + } + + tpa_info = &rxr->rx_tpa[agg_id]; + data = tpa_info->data; + data_ptr = tpa_info->data_ptr; + prefetch(data_ptr); + len = tpa_info->len; + mapping = tpa_info->mapping; + + agg_bufs = (le32_to_cpu(tpa_end->rx_tpa_end_cmp_misc_v1) & + RX_TPA_END_CMP_AGG_BUFS) >> RX_TPA_END_CMP_AGG_BUFS_SHIFT; + + if (agg_bufs) { + if (!bnxt_agg_bufs_valid(bp, cpr, agg_bufs, raw_cons)) + return ERR_PTR(-EBUSY); + + *event |= BNXT_AGG_EVENT; + cp_cons = NEXT_CMP(cp_cons); + } + + if (unlikely(agg_bufs > MAX_SKB_FRAGS || TPA_END_ERRORS(tpa_end1))) { + bnxt_abort_tpa(bp, bnapi, cp_cons, agg_bufs); + if (agg_bufs > MAX_SKB_FRAGS) + netdev_warn(bp->dev, "TPA frags %d exceeded MAX_SKB_FRAGS %d\n", + agg_bufs, (int)MAX_SKB_FRAGS); + return NULL; + } + + if (len <= bp->rx_copy_thresh) { + skb = bnxt_copy_skb(bnapi, data_ptr, len, mapping); + if (!skb) { + bnxt_abort_tpa(bp, bnapi, cp_cons, agg_bufs); + return NULL; + } + } else { +#ifdef HAVE_BUILD_SKB + u8 *new_data; +#else + struct sk_buff *new_data; +#endif + dma_addr_t new_mapping; + + new_data = __bnxt_alloc_rx_data(bp, &new_mapping, GFP_ATOMIC); + if (!new_data) { + bnxt_abort_tpa(bp, bnapi, cp_cons, agg_bufs); + return NULL; + } + + tpa_info->data = new_data; +#ifdef HAVE_BUILD_SKB + tpa_info->data_ptr = new_data + bp->rx_offset; +#else + tpa_info->data_ptr = new_data->data + bp->rx_offset; +#endif + tpa_info->mapping = new_mapping; + +#ifdef HAVE_BUILD_SKB + skb = build_skb(data, 0); +#else + skb = data; +#endif + dma_unmap_single(&bp->pdev->dev, mapping, bp->rx_buf_use_size, + bp->rx_dir); + +#ifdef HAVE_BUILD_SKB + if (!skb) { + kfree(data); + bnxt_abort_tpa(bp, bnapi, cp_cons, agg_bufs); + return NULL; + } + skb_reserve(skb, bp->rx_offset); +#endif + skb_put(skb, len); + } + + if (agg_bufs) { + skb = bnxt_rx_pages(bp, bnapi, skb, cp_cons, agg_bufs); + if (!skb) { + /* Page reuse already handled by bnxt_rx_pages(). */ + return NULL; + } + } + skb->protocol = eth_type_trans(skb, bp->dev); + + if (tpa_info->hash_type != PKT_HASH_TYPE_NONE) + skb_set_hash(skb, tpa_info->rss_hash, tpa_info->hash_type); + + if ((tpa_info->flags2 & RX_CMP_FLAGS2_META_FORMAT_VLAN) && + (skb->dev->features & NETIF_F_HW_VLAN_CTAG_RX)) { + u16 vlan_proto = tpa_info->metadata >> + RX_CMP_FLAGS2_METADATA_TPID_SFT; + u16 vtag = tpa_info->metadata & RX_CMP_FLAGS2_METADATA_VID_MASK; + +#ifdef OLD_VLAN + if (vlan_proto == ETH_P_8021Q) + *vlan = vtag | OLD_VLAN_VALID; +#else + __vlan_hwaccel_put_tag(skb, htons(vlan_proto), vtag); +#endif + } + + skb_checksum_none_assert(skb); + if (likely(tpa_info->flags2 & RX_TPA_START_CMP_FLAGS2_L4_CS_CALC)) { + skb->ip_summed = CHECKSUM_UNNECESSARY; +#ifdef HAVE_CSUM_LEVEL + skb->csum_level = + (tpa_info->flags2 & RX_CMP_FLAGS2_T_L4_CS_CALC) >> 3; +#elif defined(HAVE_INNER_NETWORK_OFFSET) + skb->encapsulation = + (tpa_info->flags2 & RX_CMP_FLAGS2_T_L4_CS_CALC) >> 3; +#endif + } + + if (TPA_END_GRO(tpa_end)) + skb = bnxt_gro_skb(bp, tpa_info, tpa_end, tpa_end1, skb); + + return skb; +} + +/* returns the following: + * 1 - 1 packet successfully received + * 0 - successful TPA_START, packet not completed yet + * -EBUSY - completion ring does not have all the agg buffers yet + * -ENOMEM - packet aborted due to out of memory + * -EIO - packet aborted due to hw error indicated in BD + */ +static int bnxt_rx_pkt(struct bnxt *bp, struct bnxt_napi *bnapi, u32 *raw_cons, + u8 *event) +{ + struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring; + struct bnxt_rx_ring_info *rxr = bnapi->rx_ring; + struct net_device *dev = bp->dev; + struct rx_cmp *rxcmp; + struct rx_cmp_ext *rxcmp1; + u32 tmp_raw_cons = *raw_cons; + u16 cons, prod, cp_cons = RING_CMP(tmp_raw_cons); + struct bnxt_sw_rx_bd *rx_buf; + unsigned int len; +#ifdef HAVE_BUILD_SKB + u8 *data_ptr, agg_bufs, cmp_type; + void *data; +#else + struct sk_buff *data; + u8 *data_ptr, agg_bufs, cmp_type; +#endif + dma_addr_t dma_addr; + struct sk_buff *skb; + int rc = 0; +#ifdef OLD_VLAN + u32 vlan = 0; +#endif + u32 misc, flags; +#ifdef HAVE_IEEE1588_SUPPORT + u64 ts = 0; +#endif + + rxcmp = (struct rx_cmp *) + &cpr->cp_desc_ring[CP_RING(cp_cons)][CP_IDX(cp_cons)]; + + tmp_raw_cons = NEXT_RAW_CMP(tmp_raw_cons); + cp_cons = RING_CMP(tmp_raw_cons); + rxcmp1 = (struct rx_cmp_ext *) + &cpr->cp_desc_ring[CP_RING(cp_cons)][CP_IDX(cp_cons)]; + + if (!RX_CMP_VALID(rxcmp1, tmp_raw_cons)) + return -EBUSY; + + cmp_type = RX_CMP_TYPE(rxcmp); + + prod = rxr->rx_prod; + + if (cmp_type == CMP_TYPE_RX_L2_TPA_START_CMP) { + bnxt_tpa_start(bp, rxr, (struct rx_tpa_start_cmp *)rxcmp, + (struct rx_tpa_start_cmp_ext *)rxcmp1); + + *event |= BNXT_RX_EVENT; + goto next_rx_no_prod; + + } else if (cmp_type == CMP_TYPE_RX_L2_TPA_END_CMP) { + skb = bnxt_tpa_end(bp, bnapi, &tmp_raw_cons, + (struct rx_tpa_end_cmp *)rxcmp, + (struct rx_tpa_end_cmp_ext *)rxcmp1, +#ifdef OLD_VLAN + &vlan, +#endif + event); + + if (unlikely(IS_ERR(skb))) + return -EBUSY; + + rc = -ENOMEM; + if (likely(skb)) { + skb_record_rx_queue(skb, bnapi->index); +#ifdef BNXT_PRIV_RX_BUSY_POLL + skb_mark_napi_id(skb, &bnapi->napi); +#endif +#ifdef OLD_VLAN + if (vlan && bp->vlgrp) + vlan_gro_receive(&bnapi->napi, bp->vlgrp, + (u16)vlan, skb); +#else + if (bnxt_busy_polling(bnapi)) + netif_receive_skb(skb); +#endif + else + napi_gro_receive(&bnapi->napi, skb); + rc = 1; + } + *event |= BNXT_RX_EVENT; + goto next_rx_no_prod; + } + + cons = rxcmp->rx_cmp_opaque; + rx_buf = &rxr->rx_buf_ring[cons]; + data = rx_buf->data; + data_ptr = rx_buf->data_ptr; + if (unlikely(cons != rxr->rx_next_cons)) { + int rc1 = bnxt_discard_rx(bp, bnapi, raw_cons, rxcmp); + + bnxt_sched_reset(bp, rxr); + return rc1; + } + prefetch(data_ptr); + + misc = le32_to_cpu(rxcmp->rx_cmp_misc_v1); + agg_bufs = (misc & RX_CMP_AGG_BUFS) >> RX_CMP_AGG_BUFS_SHIFT; + + if (agg_bufs) { + if (!bnxt_agg_bufs_valid(bp, cpr, agg_bufs, &tmp_raw_cons)) + return -EBUSY; + + cp_cons = NEXT_CMP(cp_cons); + *event |= BNXT_AGG_EVENT; + } + *event |= BNXT_RX_EVENT; + + rx_buf->data = NULL; + if (rxcmp1->rx_cmp_cfa_code_errors_v2 & RX_CMP_L2_ERRORS) { + bnxt_reuse_rx_data(rxr, cons, data); + if (agg_bufs) + bnxt_reuse_rx_agg_bufs(bnapi, cp_cons, agg_bufs); + + rc = -EIO; + goto next_rx; + } + + flags = le32_to_cpu(rxcmp->rx_cmp_len_flags_type); + len = flags >> RX_CMP_LEN_SHIFT; + dma_addr = rx_buf->mapping; + +#ifdef HAVE_IEEE1588_SUPPORT + if (unlikely((flags & RX_CMP_FLAGS_ITYPES_MASK) == + RX_CMP_FLAGS_ITYPE_PTP_W_TS)) + bnxt_get_rx_ts(bp, &ts); +#endif + + if (bnxt_rx_xdp(bp, rxr, cons, data, &data_ptr, &len, event)) { + rc = 1; + goto next_rx; + } + + if (len <= bp->rx_copy_thresh) { + skb = bnxt_copy_skb(bnapi, data_ptr, len, dma_addr); + bnxt_reuse_rx_data(rxr, cons, data); + if (!skb) { + rc = -ENOMEM; + goto next_rx; + } + } else { + u32 payload; + + if (rx_buf->data_ptr == data_ptr) + payload = misc & RX_CMP_PAYLOAD_OFFSET; + else + payload = 0; + skb = bp->rx_skb_func(bp, rxr, cons, data, data_ptr, dma_addr, + payload | len); + if (!skb) { + rc = -ENOMEM; + goto next_rx; + } + } + + if (agg_bufs) { + skb = bnxt_rx_pages(bp, bnapi, skb, cp_cons, agg_bufs); + if (!skb) { + rc = -ENOMEM; + goto next_rx; + } + } + + if (RX_CMP_HASH_VALID(rxcmp)) { + u32 hash_type = RX_CMP_HASH_TYPE(rxcmp); + enum pkt_hash_types type = PKT_HASH_TYPE_L4; + + /* RSS profiles 1 and 3 with extract code 0 for inner 4-tuple */ + if (hash_type != 1 && hash_type != 3) + type = PKT_HASH_TYPE_L3; + skb_set_hash(skb, le32_to_cpu(rxcmp->rx_cmp_rss_hash), type); + } + + skb->protocol = eth_type_trans(skb, dev); + + if ((rxcmp1->rx_cmp_flags2 & + cpu_to_le32(RX_CMP_FLAGS2_META_FORMAT_VLAN)) && + (skb->dev->features & NETIF_F_HW_VLAN_CTAG_RX)) { + u32 meta_data = le32_to_cpu(rxcmp1->rx_cmp_meta_data); + u16 vtag = meta_data & RX_CMP_FLAGS2_METADATA_VID_MASK; + u16 vlan_proto = meta_data >> RX_CMP_FLAGS2_METADATA_TPID_SFT; + +#ifdef OLD_VLAN + if (vlan_proto == ETH_P_8021Q) + vlan = vtag | OLD_VLAN_VALID; +#else + __vlan_hwaccel_put_tag(skb, htons(vlan_proto), vtag); +#endif + } + + skb_checksum_none_assert(skb); + if (RX_CMP_L4_CS_OK(rxcmp1)) { + if (dev->features & NETIF_F_RXCSUM) { + skb->ip_summed = CHECKSUM_UNNECESSARY; +#ifdef HAVE_CSUM_LEVEL + skb->csum_level = RX_CMP_ENCAP(rxcmp1); +#elif defined(HAVE_INNER_NETWORK_OFFSET) + skb->encapsulation = RX_CMP_ENCAP(rxcmp1); +#endif + } + } else { + if (rxcmp1->rx_cmp_cfa_code_errors_v2 & RX_CMP_L4_CS_ERR_BITS) { + if (dev->features & NETIF_F_RXCSUM) + cpr->sw_stats.rx_l4_csum_errors++; + } + } + +#ifdef HAVE_IEEE1588_SUPPORT + if (unlikely(ts)) { + u64 ns; + + ns = timecounter_cyc2time(&bp->ptp_cfg->tc, ts); + memset(skb_hwtstamps(skb), 0, sizeof(*skb_hwtstamps(skb))); + skb_hwtstamps(skb)->hwtstamp = ns_to_ktime(ns); + } +#endif + + skb_record_rx_queue(skb, bnapi->index); +#ifdef BNXT_PRIV_RX_BUSY_POLL + skb_mark_napi_id(skb, &bnapi->napi); +#endif +#ifdef OLD_VLAN + if (vlan && bp->vlgrp) + vlan_gro_receive(&bnapi->napi, bp->vlgrp, (u16)vlan, skb); +#else + if (bnxt_busy_polling(bnapi)) + netif_receive_skb(skb); +#endif + else + napi_gro_receive(&bnapi->napi, skb); + rc = 1; + +next_rx: + rxr->rx_prod = NEXT_RX(prod); + rxr->rx_next_cons = NEXT_RX(cons); + +next_rx_no_prod: + *raw_cons = tmp_raw_cons; + + return rc; +} + +/* In netpoll mode, if we are using a combined completion ring, we need to + * discard the rx packets and recycle the buffers. + */ +static int bnxt_force_rx_discard(struct bnxt *bp, struct bnxt_napi *bnapi, + u32 *raw_cons, u8 *event) +{ + struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring; + u32 tmp_raw_cons = *raw_cons; + struct rx_cmp_ext *rxcmp1; + struct rx_cmp *rxcmp; + u16 cp_cons; + u8 cmp_type; + + cp_cons = RING_CMP(tmp_raw_cons); + rxcmp = (struct rx_cmp *) + &cpr->cp_desc_ring[CP_RING(cp_cons)][CP_IDX(cp_cons)]; + + tmp_raw_cons = NEXT_RAW_CMP(tmp_raw_cons); + cp_cons = RING_CMP(tmp_raw_cons); + rxcmp1 = (struct rx_cmp_ext *) + &cpr->cp_desc_ring[CP_RING(cp_cons)][CP_IDX(cp_cons)]; + + if (!RX_CMP_VALID(rxcmp1, tmp_raw_cons)) + return -EBUSY; + + cmp_type = RX_CMP_TYPE(rxcmp); + if (cmp_type == CMP_TYPE_RX_L2_CMP) { + rxcmp1->rx_cmp_cfa_code_errors_v2 |= + cpu_to_le32(RX_CMPL_ERRORS_CRC_ERROR); + } else if (cmp_type == CMP_TYPE_RX_L2_TPA_END_CMP) { + struct rx_tpa_end_cmp_ext *tpa_end1; + + tpa_end1 = (struct rx_tpa_end_cmp_ext *)rxcmp1; + tpa_end1->rx_tpa_end_cmp_errors_v2 |= + cpu_to_le32(RX_TPA_END_CMP_ERRORS); + } + return bnxt_rx_pkt(bp, bnapi, raw_cons, event); +} + +#define BNXT_GET_EVENT_PORT(data) \ + (data & ASYNC_EVENT_CMPL_PORT_CONN_NOT_ALLOWED_EVENT_DATA1_PORT_ID_MASK) + +static int bnxt_async_event_process(struct bnxt *bp, + struct hwrm_async_event_cmpl *cmpl) +{ + u16 event_id = le16_to_cpu(cmpl->event_id); + + /* TODO CHIMP_FW: Define event id's for link change, error etc */ + switch (event_id) { + case ASYNC_EVENT_CMPL_EVENT_ID_LINK_SPEED_CFG_CHANGE: { + u32 data1 = le32_to_cpu(cmpl->event_data1); + struct bnxt_link_info *link_info = &bp->link_info; + + if (BNXT_VF(bp)) + goto async_event_process_exit; + if (data1 & 0x20000) { + u16 fw_speed = link_info->force_link_speed; + u32 speed = bnxt_fw_to_ethtool_speed(fw_speed); + + netdev_warn(bp->dev, "Link speed %d no longer supported\n", + speed); + } + set_bit(BNXT_LINK_SPEED_CHNG_SP_EVENT, &bp->sp_event); + /* fall thru */ + } + case ASYNC_EVENT_CMPL_EVENT_ID_LINK_STATUS_CHANGE: + set_bit(BNXT_LINK_CHNG_SP_EVENT, &bp->sp_event); + break; + case ASYNC_EVENT_CMPL_EVENT_ID_PF_DRVR_UNLOAD: + set_bit(BNXT_HWRM_PF_UNLOAD_SP_EVENT, &bp->sp_event); + break; + case ASYNC_EVENT_CMPL_EVENT_ID_PORT_CONN_NOT_ALLOWED: { + u32 data1 = le32_to_cpu(cmpl->event_data1); + u16 port_id = BNXT_GET_EVENT_PORT(data1); + + if (BNXT_VF(bp)) + break; + + if (bp->pf.port_id != port_id) + break; + + set_bit(BNXT_HWRM_PORT_MODULE_SP_EVENT, &bp->sp_event); + break; + } + case ASYNC_EVENT_CMPL_EVENT_ID_VF_CFG_CHANGE: + if (BNXT_PF(bp)) + goto async_event_process_exit; + set_bit(BNXT_RESET_TASK_SILENT_SP_EVENT, &bp->sp_event); + break; + default: + goto async_event_process_exit; + } + schedule_work(&bp->sp_task); +async_event_process_exit: + bnxt_ulp_async_events(bp, cmpl); + return 0; +} + +static int bnxt_hwrm_handler(struct bnxt *bp, struct tx_cmp *txcmp) +{ + u16 cmpl_type = TX_CMP_TYPE(txcmp), vf_id, seq_id; + struct hwrm_cmpl *h_cmpl = (struct hwrm_cmpl *)txcmp; + struct hwrm_fwd_req_cmpl *fwd_req_cmpl = + (struct hwrm_fwd_req_cmpl *)txcmp; + + switch (cmpl_type) { + case CMPL_BASE_TYPE_HWRM_DONE: + seq_id = le16_to_cpu(h_cmpl->sequence_id); + if (seq_id == bp->hwrm_intr_seq_id) + bp->hwrm_intr_seq_id = HWRM_SEQ_ID_INVALID; + else + netdev_err(bp->dev, "Invalid hwrm seq id %d\n", seq_id); + break; + + case CMPL_BASE_TYPE_HWRM_FWD_REQ: + vf_id = le16_to_cpu(fwd_req_cmpl->source_id); + + if ((vf_id < bp->pf.first_vf_id) || + (vf_id >= bp->pf.first_vf_id + bp->pf.active_vfs)) { + netdev_err(bp->dev, "Msg contains invalid VF id %x\n", + vf_id); + return -EINVAL; + } + + set_bit(vf_id - bp->pf.first_vf_id, bp->pf.vf_event_bmap); + set_bit(BNXT_HWRM_EXEC_FWD_REQ_SP_EVENT, &bp->sp_event); + schedule_work(&bp->sp_task); + break; + + case CMPL_BASE_TYPE_HWRM_ASYNC_EVENT: + bnxt_async_event_process(bp, + (struct hwrm_async_event_cmpl *)txcmp); + + default: + break; + } + + return 0; +} + +static irqreturn_t bnxt_msix(int irq, void *dev_instance) +{ + struct bnxt_napi *bnapi = dev_instance; + struct bnxt *bp = bnapi->bp; + struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring; + u32 cons = RING_CMP(cpr->cp_raw_cons); + + prefetch(&cpr->cp_desc_ring[CP_RING(cons)][CP_IDX(cons)]); + napi_schedule(&bnapi->napi); + return IRQ_HANDLED; +} + +static inline int bnxt_has_work(struct bnxt *bp, struct bnxt_cp_ring_info *cpr) +{ + u32 raw_cons = cpr->cp_raw_cons; + u16 cons = RING_CMP(raw_cons); + struct tx_cmp *txcmp; + + txcmp = &cpr->cp_desc_ring[CP_RING(cons)][CP_IDX(cons)]; + + return TX_CMP_VALID(txcmp, raw_cons); +} + +static irqreturn_t bnxt_inta(int irq, void *dev_instance) +{ + struct bnxt_napi *bnapi = dev_instance; + struct bnxt *bp = bnapi->bp; + struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring; + u32 cons = RING_CMP(cpr->cp_raw_cons); + u32 int_status; + + prefetch(&cpr->cp_desc_ring[CP_RING(cons)][CP_IDX(cons)]); + + if (!bnxt_has_work(bp, cpr)) { + int_status = readl(bp->bar0 + BNXT_CAG_REG_LEGACY_INT_STATUS); + /* return if erroneous interrupt */ + if (!(int_status & (0x10000 << cpr->cp_ring_struct.fw_ring_id))) + return IRQ_NONE; + } + + /* disable ring IRQ */ + BNXT_CP_DB_IRQ_DIS(cpr->cp_doorbell); + + /* Return here if interrupt is shared and is disabled. */ + if (unlikely(atomic_read(&bp->intr_sem) != 0)) + return IRQ_HANDLED; + + napi_schedule(&bnapi->napi); + return IRQ_HANDLED; +} + +static int bnxt_poll_work(struct bnxt *bp, struct bnxt_napi *bnapi, int budget) +{ + struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring; + u32 raw_cons = cpr->cp_raw_cons; + u32 cons; + int tx_pkts = 0; + int rx_pkts = 0; + u8 event = 0; + struct tx_cmp *txcmp; + + while (1) { + int rc; + + cons = RING_CMP(raw_cons); + txcmp = &cpr->cp_desc_ring[CP_RING(cons)][CP_IDX(cons)]; + + if (!TX_CMP_VALID(txcmp, raw_cons)) + break; + + /* The valid test of the entry must be done first before + * reading any further. + */ + dma_rmb(); + if (TX_CMP_TYPE(txcmp) == CMP_TYPE_TX_L2_CMP) { + tx_pkts++; + /* return full budget so NAPI will complete. */ + if (unlikely(tx_pkts > bp->tx_wake_thresh)) + rx_pkts = budget; + } else if ((TX_CMP_TYPE(txcmp) & 0x30) == 0x10) { + if (likely(budget)) + rc = bnxt_rx_pkt(bp, bnapi, &raw_cons, &event); + else + rc = bnxt_force_rx_discard(bp, bnapi, &raw_cons, + &event); + if (likely(rc >= 0)) + rx_pkts += rc; + else if (rc == -EBUSY) /* partial completion */ + break; + } else if (unlikely((TX_CMP_TYPE(txcmp) == + CMPL_BASE_TYPE_HWRM_DONE) || + (TX_CMP_TYPE(txcmp) == + CMPL_BASE_TYPE_HWRM_FWD_REQ) || + (TX_CMP_TYPE(txcmp) == + CMPL_BASE_TYPE_HWRM_ASYNC_EVENT))) { + bnxt_hwrm_handler(bp, txcmp); + } + raw_cons = NEXT_RAW_CMP(raw_cons); + + if (rx_pkts == budget) + break; + } + + if (event & BNXT_TX_EVENT) { + struct bnxt_tx_ring_info *txr = bnapi->tx_ring; + void __iomem *db = txr->tx_doorbell; + u16 prod = txr->tx_prod; + + /* Sync BD data before updating doorbell */ + wmb(); + + writel(DB_KEY_TX | prod, db); + writel(DB_KEY_TX | prod, db); + } + + cpr->cp_raw_cons = raw_cons; + /* ACK completion ring before freeing tx ring and producing new + * buffers in rx/agg rings to prevent overflowing the completion + * ring. + */ + BNXT_CP_DB(cpr->cp_doorbell, cpr->cp_raw_cons); + + if (tx_pkts) + bnapi->tx_int(bp, bnapi, tx_pkts); + + if (event & BNXT_RX_EVENT) { + struct bnxt_rx_ring_info *rxr = bnapi->rx_ring; + + writel(DB_KEY_RX | rxr->rx_prod, rxr->rx_doorbell); + writel(DB_KEY_RX | rxr->rx_prod, rxr->rx_doorbell); + if (event & BNXT_AGG_EVENT) { + writel(DB_KEY_RX | rxr->rx_agg_prod, + rxr->rx_agg_doorbell); + writel(DB_KEY_RX | rxr->rx_agg_prod, + rxr->rx_agg_doorbell); + } + } + return rx_pkts; +} + +static int bnxt_poll_nitroa0(struct napi_struct *napi, int budget) +{ + struct bnxt_napi *bnapi = container_of(napi, struct bnxt_napi, napi); + struct bnxt *bp = bnapi->bp; + struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring; + struct bnxt_rx_ring_info *rxr = bnapi->rx_ring; + struct tx_cmp *txcmp; + struct rx_cmp_ext *rxcmp1; + u32 cp_cons, tmp_raw_cons; + u32 raw_cons = cpr->cp_raw_cons; + u32 rx_pkts = 0; + u8 event = 0; + + while (1) { + int rc; + + cp_cons = RING_CMP(raw_cons); + txcmp = &cpr->cp_desc_ring[CP_RING(cp_cons)][CP_IDX(cp_cons)]; + + if (!TX_CMP_VALID(txcmp, raw_cons)) + break; + + if ((TX_CMP_TYPE(txcmp) & 0x30) == 0x10) { + tmp_raw_cons = NEXT_RAW_CMP(raw_cons); + cp_cons = RING_CMP(tmp_raw_cons); + rxcmp1 = (struct rx_cmp_ext *) + &cpr->cp_desc_ring[CP_RING(cp_cons)][CP_IDX(cp_cons)]; + + if (!RX_CMP_VALID(rxcmp1, tmp_raw_cons)) + break; + + /* force an error to recycle the buffer */ + rxcmp1->rx_cmp_cfa_code_errors_v2 |= + cpu_to_le32(RX_CMPL_ERRORS_CRC_ERROR); + + rc = bnxt_rx_pkt(bp, bnapi, &raw_cons, &event); + if (likely(rc == -EIO)) + rx_pkts++; + else if (rc == -EBUSY) /* partial completion */ + break; + } else if (unlikely((TX_CMP_TYPE(txcmp)) == + CMPL_BASE_TYPE_HWRM_DONE)) { + bnxt_hwrm_handler(bp, txcmp); + } else { + netdev_err(bp->dev, + "Invalid completion received on special ring\n"); + } + raw_cons = NEXT_RAW_CMP(raw_cons); + + if (rx_pkts == budget) + break; + } + + cpr->cp_raw_cons = raw_cons; + BNXT_CP_DB(cpr->cp_doorbell, cpr->cp_raw_cons); + writel(DB_KEY_RX | rxr->rx_prod, rxr->rx_doorbell); + writel(DB_KEY_RX | rxr->rx_prod, rxr->rx_doorbell); + + if (event & BNXT_AGG_EVENT) { + writel(DB_KEY_RX | rxr->rx_agg_prod, rxr->rx_agg_doorbell); + writel(DB_KEY_RX | rxr->rx_agg_prod, rxr->rx_agg_doorbell); + } + + if (!bnxt_has_work(bp, cpr) && rx_pkts < budget) { +#ifdef HAVE_NEW_NAPI_COMPLETE_DONE + napi_complete_done(napi, rx_pkts); +#else + napi_complete(napi); +#endif + BNXT_CP_DB_REARM(cpr->cp_doorbell, cpr->cp_raw_cons); + } + return rx_pkts; +} + +static int bnxt_poll(struct napi_struct *napi, int budget) +{ + struct bnxt_napi *bnapi = container_of(napi, struct bnxt_napi, napi); + struct bnxt *bp = bnapi->bp; + struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring; + int work_done = 0; + + if (!bnxt_lock_napi(bnapi)) + return budget; + + while (1) { + work_done += bnxt_poll_work(bp, bnapi, budget - work_done); + + if (work_done >= budget) + break; + + if (!bnxt_has_work(bp, cpr)) { +#ifdef HAVE_NEW_NAPI_COMPLETE_DONE + if (napi_complete_done(napi, work_done)) + BNXT_CP_DB_REARM(cpr->cp_doorbell, + cpr->cp_raw_cons); +#else + napi_complete(napi); + BNXT_CP_DB_REARM(cpr->cp_doorbell, cpr->cp_raw_cons); +#endif + break; + } + } + mmiowb(); + bnxt_unlock_napi(bnapi); + return work_done; +} + +#ifdef BNXT_PRIV_RX_BUSY_POLL +static int bnxt_busy_poll(struct napi_struct *napi) +{ + struct bnxt_napi *bnapi = container_of(napi, struct bnxt_napi, napi); + struct bnxt *bp = bnapi->bp; + struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring; + int rx_work, budget = 4; + + if (atomic_read(&bp->intr_sem) != 0) + return LL_FLUSH_FAILED; + + if (!bp->link_info.link_up) + return LL_FLUSH_FAILED; + + if (!bnxt_lock_poll(bnapi)) + return LL_FLUSH_BUSY; + + rx_work = bnxt_poll_work(bp, bnapi, budget); + + BNXT_CP_DB_REARM(cpr->cp_doorbell, cpr->cp_raw_cons); + + bnxt_unlock_poll(bnapi); + return rx_work; +} +#endif + +static void bnxt_free_tx_skbs(struct bnxt *bp) +{ + int i, max_idx; + struct pci_dev *pdev = bp->pdev; + + if (!bp->tx_ring) + return; + + max_idx = bp->tx_nr_pages * TX_DESC_CNT; + for (i = 0; i < bp->tx_nr_rings; i++) { + struct bnxt_tx_ring_info *txr = &bp->tx_ring[i]; + int j; + + for (j = 0; j < max_idx;) { + struct bnxt_sw_tx_bd *tx_buf = &txr->tx_buf_ring[j]; + struct sk_buff *skb = tx_buf->skb; + int k, last; + + if (!skb) { + j++; + continue; + } + + tx_buf->skb = NULL; + + if (tx_buf->is_push) { + dev_kfree_skb(skb); + j += 2; + continue; + } + + dma_unmap_single(&pdev->dev, + dma_unmap_addr(tx_buf, mapping), + skb_headlen(skb), + PCI_DMA_TODEVICE); + + last = tx_buf->nr_frags; + j += 2; + for (k = 0; k < last; k++, j++) { + int ring_idx = j & bp->tx_ring_mask; + skb_frag_t *frag = &skb_shinfo(skb)->frags[k]; + + tx_buf = &txr->tx_buf_ring[ring_idx]; + dma_unmap_page( + &pdev->dev, + dma_unmap_addr(tx_buf, mapping), + skb_frag_size(frag), PCI_DMA_TODEVICE); + } + dev_kfree_skb(skb); + } + netdev_tx_reset_queue(netdev_get_tx_queue(bp->dev, i)); + } +} + +static void bnxt_free_rx_skbs(struct bnxt *bp) +{ + int i, max_idx, max_agg_idx; + struct pci_dev *pdev = bp->pdev; + + if (!bp->rx_ring) + return; + + max_idx = bp->rx_nr_pages * RX_DESC_CNT; + max_agg_idx = bp->rx_agg_nr_pages * RX_DESC_CNT; + for (i = 0; i < bp->rx_nr_rings; i++) { + struct bnxt_rx_ring_info *rxr = &bp->rx_ring[i]; + int j; + + if (rxr->rx_tpa) { + for (j = 0; j < MAX_TPA; j++) { + struct bnxt_tpa_info *tpa_info = + &rxr->rx_tpa[j]; +#ifdef HAVE_BUILD_SKB + u8 *data = tpa_info->data; +#else + struct sk_buff *data = tpa_info->data; +#endif + + if (!data) + continue; + + dma_unmap_single(&pdev->dev, tpa_info->mapping, + bp->rx_buf_use_size, + bp->rx_dir); + + tpa_info->data = NULL; + +#ifdef HAVE_BUILD_SKB + kfree(data); +#else + dev_kfree_skb_any(data); +#endif + } + } + + for (j = 0; j < max_idx; j++) { + struct bnxt_sw_rx_bd *rx_buf = &rxr->rx_buf_ring[j]; + dma_addr_t mapping = rx_buf->mapping; +#ifdef HAVE_BUILD_SKB + void *data = rx_buf->data; +#else + struct sk_buff *data = rx_buf->data; +#endif + + if (!data) + continue; + +#ifdef HAVE_BUILD_SKB + if (BNXT_RX_PAGE_MODE(bp)) { + mapping -= bp->rx_dma_offset; + dma_unmap_page(&pdev->dev, mapping, + PAGE_SIZE, bp->rx_dir); + __free_page(data); + } else { + dma_unmap_single(&pdev->dev, mapping, + bp->rx_buf_use_size, + bp->rx_dir); + kfree(data); + } +#else + dma_unmap_single(&pdev->dev, mapping, + bp->rx_buf_use_size, bp->rx_dir); + dev_kfree_skb_any(data); +#endif + rx_buf->data = NULL; + } + + for (j = 0; j < max_agg_idx; j++) { + struct bnxt_sw_rx_agg_bd *rx_agg_buf = + &rxr->rx_agg_ring[j]; + struct page *page = rx_agg_buf->page; + + if (!page) + continue; + + dma_unmap_page(&pdev->dev, rx_agg_buf->mapping, + BNXT_RX_PAGE_SIZE, PCI_DMA_FROMDEVICE); + + rx_agg_buf->page = NULL; + __clear_bit(j, rxr->rx_agg_bmap); + + __free_page(page); + } + if (rxr->rx_page) { + __free_page(rxr->rx_page); + rxr->rx_page = NULL; + } + } +} + +static void bnxt_free_skbs(struct bnxt *bp) +{ + bnxt_free_tx_skbs(bp); + bnxt_free_rx_skbs(bp); +} + +static void bnxt_free_ring(struct bnxt *bp, struct bnxt_ring_struct *ring) +{ + struct pci_dev *pdev = bp->pdev; + int i; + + for (i = 0; i < ring->nr_pages; i++) { + if (!ring->pg_arr[i]) + continue; + + dma_free_coherent(&pdev->dev, ring->page_size, + ring->pg_arr[i], ring->dma_arr[i]); + + ring->pg_arr[i] = NULL; + } + if (ring->pg_tbl) { + dma_free_coherent(&pdev->dev, ring->nr_pages * 8, + ring->pg_tbl, ring->pg_tbl_map); + ring->pg_tbl = NULL; + } + if (ring->vmem_size && *ring->vmem) { + vfree(*ring->vmem); + *ring->vmem = NULL; + } +} + +static int bnxt_alloc_ring(struct bnxt *bp, struct bnxt_ring_struct *ring) +{ + int i; + struct pci_dev *pdev = bp->pdev; + + if (ring->nr_pages > 1) { + ring->pg_tbl = dma_alloc_coherent(&pdev->dev, + ring->nr_pages * 8, + &ring->pg_tbl_map, + GFP_KERNEL); + if (!ring->pg_tbl) + return -ENOMEM; + } + + for (i = 0; i < ring->nr_pages; i++) { + ring->pg_arr[i] = dma_alloc_coherent(&pdev->dev, + ring->page_size, + &ring->dma_arr[i], + GFP_KERNEL); + if (!ring->pg_arr[i]) + return -ENOMEM; + + if (ring->nr_pages > 1) + ring->pg_tbl[i] = cpu_to_le64(ring->dma_arr[i]); + } + + if (ring->vmem_size) { + *ring->vmem = vzalloc(ring->vmem_size); + if (!(*ring->vmem)) + return -ENOMEM; + } + return 0; +} + +static void bnxt_free_rx_rings(struct bnxt *bp) +{ + int i; + + if (!bp->rx_ring) + return; + + for (i = 0; i < bp->rx_nr_rings; i++) { + struct bnxt_rx_ring_info *rxr = &bp->rx_ring[i]; + struct bnxt_ring_struct *ring; + +#ifdef HAVE_NDO_XDP + if (rxr->xdp_prog) + bpf_prog_put(rxr->xdp_prog); +#endif + + kfree(rxr->rx_tpa); + rxr->rx_tpa = NULL; + + kfree(rxr->rx_agg_bmap); + rxr->rx_agg_bmap = NULL; + + ring = &rxr->rx_ring_struct; + bnxt_free_ring(bp, ring); + + ring = &rxr->rx_agg_ring_struct; + bnxt_free_ring(bp, ring); + } +} + +static int bnxt_alloc_rx_rings(struct bnxt *bp) +{ + int i, rc, agg_rings = 0, tpa_rings = 0; + + if (!bp->rx_ring) + return -ENOMEM; + + if (bp->flags & BNXT_FLAG_AGG_RINGS) + agg_rings = 1; + + if (bp->flags & BNXT_FLAG_TPA) + tpa_rings = 1; + + for (i = 0; i < bp->rx_nr_rings; i++) { + struct bnxt_rx_ring_info *rxr = &bp->rx_ring[i]; + struct bnxt_ring_struct *ring; + + ring = &rxr->rx_ring_struct; + + rc = bnxt_alloc_ring(bp, ring); + if (rc) + return rc; + + if (agg_rings) { + u16 mem_size; + + ring = &rxr->rx_agg_ring_struct; + rc = bnxt_alloc_ring(bp, ring); + if (rc) + return rc; + + rxr->rx_agg_bmap_size = bp->rx_agg_ring_mask + 1; + mem_size = rxr->rx_agg_bmap_size / 8; + rxr->rx_agg_bmap = kzalloc(mem_size, GFP_KERNEL); + if (!rxr->rx_agg_bmap) + return -ENOMEM; + + if (tpa_rings) { + rxr->rx_tpa = kcalloc(MAX_TPA, + sizeof(struct bnxt_tpa_info), + GFP_KERNEL); + if (!rxr->rx_tpa) + return -ENOMEM; + } + } + } + return 0; +} + +static void bnxt_free_tx_rings(struct bnxt *bp) +{ + int i; + struct pci_dev *pdev = bp->pdev; + + if (!bp->tx_ring) + return; + + for (i = 0; i < bp->tx_nr_rings; i++) { + struct bnxt_tx_ring_info *txr = &bp->tx_ring[i]; + struct bnxt_ring_struct *ring; + + if (txr->tx_push) { + dma_free_coherent(&pdev->dev, bp->tx_push_size, + txr->tx_push, txr->tx_push_mapping); + txr->tx_push = NULL; + } + + ring = &txr->tx_ring_struct; + + bnxt_free_ring(bp, ring); + } +} + +static int bnxt_alloc_tx_rings(struct bnxt *bp) +{ + int i, j, rc; + struct pci_dev *pdev = bp->pdev; + + bp->tx_push_size = 0; + if (bp->tx_push_thresh) { + int push_size; + + push_size = L1_CACHE_ALIGN(sizeof(struct tx_push_bd) + + bp->tx_push_thresh); + + if (push_size > 256) { + push_size = 0; + bp->tx_push_thresh = 0; + } + + bp->tx_push_size = push_size; + } + + for (i = 0, j = 0; i < bp->tx_nr_rings; i++) { + struct bnxt_tx_ring_info *txr = &bp->tx_ring[i]; + struct bnxt_ring_struct *ring; + + ring = &txr->tx_ring_struct; + + rc = bnxt_alloc_ring(bp, ring); + if (rc) + return rc; + + if (bp->tx_push_size) { + dma_addr_t mapping; + + /* One pre-allocated DMA buffer to backup + * TX push operation + */ + txr->tx_push = dma_alloc_coherent(&pdev->dev, + bp->tx_push_size, + &txr->tx_push_mapping, + GFP_KERNEL); + + if (!txr->tx_push) + return -ENOMEM; + + mapping = txr->tx_push_mapping + + sizeof(struct tx_push_bd); + txr->data_mapping = cpu_to_le64(mapping); + + memset(txr->tx_push, 0, sizeof(struct tx_push_bd)); + } + ring->queue_id = bp->q_info[j].queue_id; + if (i < bp->tx_nr_rings_xdp) + continue; + if (i % bp->tx_nr_rings_per_tc == (bp->tx_nr_rings_per_tc - 1)) + j++; + } + return 0; +} + +static void bnxt_free_cp_rings(struct bnxt *bp) +{ + int i; + + if (!bp->bnapi) + return; + + for (i = 0; i < bp->cp_nr_rings; i++) { + struct bnxt_napi *bnapi = bp->bnapi[i]; + struct bnxt_cp_ring_info *cpr; + struct bnxt_ring_struct *ring; + + if (!bnapi) + continue; + + cpr = &bnapi->cp_ring; + ring = &cpr->cp_ring_struct; + + bnxt_free_ring(bp, ring); + } +} + +static int bnxt_alloc_cp_rings(struct bnxt *bp) +{ + int i, rc; + + for (i = 0; i < bp->cp_nr_rings; i++) { + struct bnxt_napi *bnapi = bp->bnapi[i]; + struct bnxt_cp_ring_info *cpr; + struct bnxt_ring_struct *ring; + + if (!bnapi) + continue; + + cpr = &bnapi->cp_ring; + ring = &cpr->cp_ring_struct; + + rc = bnxt_alloc_ring(bp, ring); + if (rc) + return rc; + } + return 0; +} + +static void bnxt_init_ring_struct(struct bnxt *bp) +{ + int i; + + for (i = 0; i < bp->cp_nr_rings; i++) { + struct bnxt_napi *bnapi = bp->bnapi[i]; + struct bnxt_cp_ring_info *cpr; + struct bnxt_rx_ring_info *rxr; + struct bnxt_tx_ring_info *txr; + struct bnxt_ring_struct *ring; + + if (!bnapi) + continue; + + cpr = &bnapi->cp_ring; + ring = &cpr->cp_ring_struct; + ring->nr_pages = bp->cp_nr_pages; + ring->page_size = HW_CMPD_RING_SIZE; + ring->pg_arr = (void **)cpr->cp_desc_ring; + ring->dma_arr = cpr->cp_desc_mapping; + ring->vmem_size = 0; + + rxr = bnapi->rx_ring; + if (!rxr) + goto skip_rx; + + ring = &rxr->rx_ring_struct; + ring->nr_pages = bp->rx_nr_pages; + ring->page_size = HW_RXBD_RING_SIZE; + ring->pg_arr = (void **)rxr->rx_desc_ring; + ring->dma_arr = rxr->rx_desc_mapping; + ring->vmem_size = SW_RXBD_RING_SIZE * bp->rx_nr_pages; + ring->vmem = (void **)&rxr->rx_buf_ring; + + ring = &rxr->rx_agg_ring_struct; + ring->nr_pages = bp->rx_agg_nr_pages; + ring->page_size = HW_RXBD_RING_SIZE; + ring->pg_arr = (void **)rxr->rx_agg_desc_ring; + ring->dma_arr = rxr->rx_agg_desc_mapping; + ring->vmem_size = SW_RXBD_AGG_RING_SIZE * bp->rx_agg_nr_pages; + ring->vmem = (void **)&rxr->rx_agg_ring; + +skip_rx: + txr = bnapi->tx_ring; + if (!txr) + continue; + + ring = &txr->tx_ring_struct; + ring->nr_pages = bp->tx_nr_pages; + ring->page_size = HW_RXBD_RING_SIZE; + ring->pg_arr = (void **)txr->tx_desc_ring; + ring->dma_arr = txr->tx_desc_mapping; + ring->vmem_size = SW_TXBD_RING_SIZE * bp->tx_nr_pages; + ring->vmem = (void **)&txr->tx_buf_ring; + } +} + +static void bnxt_init_rxbd_pages(struct bnxt_ring_struct *ring, u32 type) +{ + int i; + u32 prod; + struct rx_bd **rx_buf_ring; + + rx_buf_ring = (struct rx_bd **)ring->pg_arr; + for (i = 0, prod = 0; i < ring->nr_pages; i++) { + int j; + struct rx_bd *rxbd; + + rxbd = rx_buf_ring[i]; + if (!rxbd) + continue; + + for (j = 0; j < RX_DESC_CNT; j++, rxbd++, prod++) { + rxbd->rx_bd_len_flags_type = cpu_to_le32(type); + rxbd->rx_bd_opaque = prod; + } + } +} + +static int bnxt_init_one_rx_ring(struct bnxt *bp, int ring_nr) +{ + struct net_device *dev = bp->dev; + struct bnxt_rx_ring_info *rxr; + struct bnxt_ring_struct *ring; + u32 prod, type; + int i; + + type = (bp->rx_buf_use_size << RX_BD_LEN_SHIFT) | + RX_BD_TYPE_RX_PACKET_BD | RX_BD_FLAGS_EOP; + + if (NET_IP_ALIGN == 2) + type |= RX_BD_FLAGS_SOP; + + rxr = &bp->rx_ring[ring_nr]; + ring = &rxr->rx_ring_struct; + bnxt_init_rxbd_pages(ring, type); + +#ifdef HAVE_NDO_XDP + if (BNXT_RX_PAGE_MODE(bp) && bp->xdp_prog) { + rxr->xdp_prog = bpf_prog_add(bp->xdp_prog, 1); + if (IS_ERR(rxr->xdp_prog)) { + int rc = PTR_ERR(rxr->xdp_prog); + + rxr->xdp_prog = NULL; + return rc; + } + } +#endif + + prod = rxr->rx_prod; + for (i = 0; i < bp->rx_ring_size; i++) { + if (bnxt_alloc_rx_data(bp, rxr, prod, GFP_KERNEL) != 0) { + netdev_warn(dev, "init'ed rx ring %d with %d/%d skbs only\n", + ring_nr, i, bp->rx_ring_size); + break; + } + prod = NEXT_RX(prod); + } + rxr->rx_prod = prod; + ring->fw_ring_id = INVALID_HW_RING_ID; + + ring = &rxr->rx_agg_ring_struct; + ring->fw_ring_id = INVALID_HW_RING_ID; + + if (!(bp->flags & BNXT_FLAG_AGG_RINGS)) + return 0; + + type = ((u32)BNXT_RX_PAGE_SIZE << RX_BD_LEN_SHIFT) | + RX_BD_TYPE_RX_AGG_BD | RX_BD_FLAGS_SOP; + + bnxt_init_rxbd_pages(ring, type); + + prod = rxr->rx_agg_prod; + for (i = 0; i < bp->rx_agg_ring_size; i++) { + if (bnxt_alloc_rx_page(bp, rxr, prod, GFP_KERNEL) != 0) { + netdev_warn(dev, "init'ed rx ring %d with %d/%d pages only\n", + ring_nr, i, bp->rx_ring_size); + break; + } + prod = NEXT_RX_AGG(prod); + } + rxr->rx_agg_prod = prod; + + if (bp->flags & BNXT_FLAG_TPA) { + if (rxr->rx_tpa) { +#ifdef HAVE_BUILD_SKB + u8 *data; +#else + struct sk_buff *data; +#endif + dma_addr_t mapping; + + for (i = 0; i < MAX_TPA; i++) { + data = __bnxt_alloc_rx_data(bp, &mapping, + GFP_KERNEL); + if (!data) + return -ENOMEM; + + rxr->rx_tpa[i].data = data; +#ifdef HAVE_BUILD_SKB + rxr->rx_tpa[i].data_ptr = data + bp->rx_offset; +#else + rxr->rx_tpa[i].data_ptr = data->data + + bp->rx_offset; +#endif + rxr->rx_tpa[i].mapping = mapping; + } + } else { + netdev_err(bp->dev, "No resource allocated for LRO/GRO\n"); + return -ENOMEM; + } + } + + return 0; +} + +static void bnxt_init_cp_rings(struct bnxt *bp) +{ + int i; + + for (i = 0; i < bp->cp_nr_rings; i++) { + struct bnxt_cp_ring_info *cpr = &bp->bnapi[i]->cp_ring; + struct bnxt_ring_struct *ring = &cpr->cp_ring_struct; + + ring->fw_ring_id = INVALID_HW_RING_ID; + } +} + +static int bnxt_init_rx_rings(struct bnxt *bp) +{ + int i, rc = 0; + + if (BNXT_RX_PAGE_MODE(bp)) { + bp->rx_offset = NET_IP_ALIGN + XDP_PACKET_HEADROOM; + bp->rx_dma_offset = XDP_PACKET_HEADROOM; + } else { + bp->rx_offset = BNXT_RX_OFFSET; + bp->rx_dma_offset = BNXT_RX_DMA_OFFSET; + } + + for (i = 0; i < bp->rx_nr_rings; i++) { + rc = bnxt_init_one_rx_ring(bp, i); + if (rc) + break; + } + + return rc; +} + +static int bnxt_init_tx_rings(struct bnxt *bp) +{ + u16 i; + + bp->tx_wake_thresh = max_t(int, bp->tx_ring_size / 2, + MAX_SKB_FRAGS + 1); + + for (i = 0; i < bp->tx_nr_rings; i++) { + struct bnxt_tx_ring_info *txr = &bp->tx_ring[i]; + struct bnxt_ring_struct *ring = &txr->tx_ring_struct; + + ring->fw_ring_id = INVALID_HW_RING_ID; + } + + return 0; +} + +static void bnxt_free_ring_grps(struct bnxt *bp) +{ + kfree(bp->grp_info); + bp->grp_info = NULL; +} + +static int bnxt_init_ring_grps(struct bnxt *bp, bool irq_re_init) +{ + int i; + + if (irq_re_init) { + bp->grp_info = kcalloc(bp->cp_nr_rings, + sizeof(struct bnxt_ring_grp_info), + GFP_KERNEL); + if (!bp->grp_info) + return -ENOMEM; + } + for (i = 0; i < bp->cp_nr_rings; i++) { + if (irq_re_init) + bp->grp_info[i].fw_stats_ctx = INVALID_HW_RING_ID; + bp->grp_info[i].fw_grp_id = INVALID_HW_RING_ID; + bp->grp_info[i].rx_fw_ring_id = INVALID_HW_RING_ID; + bp->grp_info[i].agg_fw_ring_id = INVALID_HW_RING_ID; + bp->grp_info[i].cp_fw_ring_id = INVALID_HW_RING_ID; + } + return 0; +} + +static void bnxt_free_vnics(struct bnxt *bp) +{ + kfree(bp->vnic_info); + bp->vnic_info = NULL; + bp->nr_vnics = 0; +} + +static int bnxt_alloc_vnics(struct bnxt *bp) +{ + int num_vnics = 1; + +#ifdef CONFIG_RFS_ACCEL + if (bp->flags & BNXT_FLAG_RFS) + num_vnics += bp->rx_nr_rings; +#endif + + if (BNXT_CHIP_TYPE_NITRO_A0(bp)) + num_vnics++; + + bp->vnic_info = kcalloc(num_vnics, sizeof(struct bnxt_vnic_info), + GFP_KERNEL); + if (!bp->vnic_info) + return -ENOMEM; + + bp->nr_vnics = num_vnics; + return 0; +} + +static void bnxt_init_vnics(struct bnxt *bp) +{ + int i; + + for (i = 0; i < bp->nr_vnics; i++) { + struct bnxt_vnic_info *vnic = &bp->vnic_info[i]; + + vnic->fw_vnic_id = INVALID_HW_RING_ID; + vnic->fw_rss_cos_lb_ctx[0] = INVALID_HW_RING_ID; + vnic->fw_rss_cos_lb_ctx[1] = INVALID_HW_RING_ID; + vnic->fw_l2_ctx_id = INVALID_HW_RING_ID; + + if (bp->vnic_info[i].rss_hash_key) { + if (i == 0) + prandom_bytes(vnic->rss_hash_key, + HW_HASH_KEY_SIZE); + else + memcpy(vnic->rss_hash_key, + bp->vnic_info[0].rss_hash_key, + HW_HASH_KEY_SIZE); + } + } +} + +static int bnxt_calc_nr_ring_pages(u32 ring_size, int desc_per_pg) +{ + int pages; + + pages = ring_size / desc_per_pg; + + if (!pages) + return 1; + + pages++; + + while (pages & (pages - 1)) + pages++; + + return pages; +} + +void bnxt_set_tpa_flags(struct bnxt *bp) +{ + bp->flags &= ~BNXT_FLAG_TPA; + if (bp->flags & BNXT_FLAG_NO_AGG_RINGS) + return; + if (bp->dev->features & NETIF_F_LRO) + bp->flags |= BNXT_FLAG_LRO; +#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,39) + if (bp->dev->features & NETIF_F_GRO) + bp->flags |= BNXT_FLAG_GRO; +#endif +} + +/* bp->rx_ring_size, bp->tx_ring_size, dev->mtu, BNXT_FLAG_{G|L}RO flags must + * be set on entry. + */ +void bnxt_set_ring_params(struct bnxt *bp) +{ + u32 ring_size, rx_size, rx_space; + u32 agg_factor = 0, agg_ring_size = 0; + + /* 8 for CRC and VLAN */ + rx_size = SKB_DATA_ALIGN(bp->dev->mtu + ETH_HLEN + NET_IP_ALIGN + 8); + + rx_space = rx_size + NET_SKB_PAD + + SKB_DATA_ALIGN(sizeof(struct skb_shared_info)); + + bp->rx_copy_thresh = BNXT_RX_COPY_THRESH; + ring_size = bp->rx_ring_size; + bp->rx_agg_ring_size = 0; + bp->rx_agg_nr_pages = 0; + + if (bp->flags & BNXT_FLAG_TPA) + agg_factor = min_t(u32, 4, 65536 / BNXT_RX_PAGE_SIZE); + + bp->flags &= ~BNXT_FLAG_JUMBO; + if (rx_space > PAGE_SIZE && !(bp->flags & BNXT_FLAG_NO_AGG_RINGS)) { + u32 jumbo_factor; + + bp->flags |= BNXT_FLAG_JUMBO; + jumbo_factor = PAGE_ALIGN(bp->dev->mtu - 40) >> PAGE_SHIFT; + if (jumbo_factor > agg_factor) + agg_factor = jumbo_factor; + } + agg_ring_size = ring_size * agg_factor; + + if (agg_ring_size) { + bp->rx_agg_nr_pages = bnxt_calc_nr_ring_pages(agg_ring_size, + RX_DESC_CNT); + if (bp->rx_agg_nr_pages > MAX_RX_AGG_PAGES) { + u32 tmp = agg_ring_size; + + bp->rx_agg_nr_pages = MAX_RX_AGG_PAGES; + agg_ring_size = MAX_RX_AGG_PAGES * RX_DESC_CNT - 1; + netdev_warn(bp->dev, "rx agg ring size %d reduced to %d.\n", + tmp, agg_ring_size); + } + bp->rx_agg_ring_size = agg_ring_size; + bp->rx_agg_ring_mask = (bp->rx_agg_nr_pages * RX_DESC_CNT) - 1; + rx_size = SKB_DATA_ALIGN(BNXT_RX_COPY_THRESH + NET_IP_ALIGN); + rx_space = rx_size + NET_SKB_PAD + + SKB_DATA_ALIGN(sizeof(struct skb_shared_info)); + } + + bp->rx_buf_use_size = rx_size; + bp->rx_buf_size = rx_space; + + bp->rx_nr_pages = bnxt_calc_nr_ring_pages(ring_size, RX_DESC_CNT); + bp->rx_ring_mask = (bp->rx_nr_pages * RX_DESC_CNT) - 1; + + ring_size = bp->tx_ring_size; + bp->tx_nr_pages = bnxt_calc_nr_ring_pages(ring_size, TX_DESC_CNT); + bp->tx_ring_mask = (bp->tx_nr_pages * TX_DESC_CNT) - 1; + + ring_size = bp->rx_ring_size * (2 + agg_factor) + bp->tx_ring_size; + bp->cp_ring_size = ring_size; + + bp->cp_nr_pages = bnxt_calc_nr_ring_pages(ring_size, CP_DESC_CNT); + if (bp->cp_nr_pages > MAX_CP_PAGES) { + bp->cp_nr_pages = MAX_CP_PAGES; + bp->cp_ring_size = MAX_CP_PAGES * CP_DESC_CNT - 1; + netdev_warn(bp->dev, "completion ring size %d reduced to %d.\n", + ring_size, bp->cp_ring_size); + } + bp->cp_bit = bp->cp_nr_pages * CP_DESC_CNT; + bp->cp_ring_mask = bp->cp_bit - 1; +} + +int bnxt_set_rx_skb_mode(struct bnxt *bp, bool page_mode) +{ + if (page_mode) { +#ifdef BNXT_RX_PAGE_MODE_SUPPORT + if (bp->dev->mtu > BNXT_MAX_PAGE_MODE_MTU) + return -EOPNOTSUPP; +#ifdef HAVE_MIN_MTU + bp->dev->max_mtu = BNXT_MAX_PAGE_MODE_MTU; +#endif + bp->flags &= ~BNXT_FLAG_AGG_RINGS; + bp->flags |= BNXT_FLAG_NO_AGG_RINGS | BNXT_FLAG_RX_PAGE_MODE; + bp->dev->hw_features &= ~NETIF_F_LRO; + bp->dev->features &= ~NETIF_F_LRO; + bp->rx_dir = DMA_BIDIRECTIONAL; + bp->rx_skb_func = bnxt_rx_page_skb; +#else + return -EOPNOTSUPP; +#endif + } else { +#ifdef HAVE_MIN_MTU + bp->dev->max_mtu = BNXT_MAX_MTU; +#endif + bp->flags &= ~BNXT_FLAG_RX_PAGE_MODE; + bp->rx_dir = DMA_FROM_DEVICE; + bp->rx_skb_func = bnxt_rx_skb; + } + return 0; +} + +static void bnxt_free_vnic_attributes(struct bnxt *bp) +{ + int i; + struct bnxt_vnic_info *vnic; + struct pci_dev *pdev = bp->pdev; + + if (!bp->vnic_info) + return; + + for (i = 0; i < bp->nr_vnics; i++) { + vnic = &bp->vnic_info[i]; + + kfree(vnic->fw_grp_ids); + vnic->fw_grp_ids = NULL; + + kfree(vnic->uc_list); + vnic->uc_list = NULL; + + if (vnic->mc_list) { + dma_free_coherent(&pdev->dev, vnic->mc_list_size, + vnic->mc_list, vnic->mc_list_mapping); + vnic->mc_list = NULL; + } + + if (vnic->rss_table) { + dma_free_coherent(&pdev->dev, PAGE_SIZE, + vnic->rss_table, + vnic->rss_table_dma_addr); + vnic->rss_table = NULL; + } + + vnic->rss_hash_key = NULL; + vnic->flags = 0; + } +} + +static int bnxt_alloc_vnic_attributes(struct bnxt *bp) +{ + int i, rc = 0, size; + struct bnxt_vnic_info *vnic; + struct pci_dev *pdev = bp->pdev; + int max_rings; + + for (i = 0; i < bp->nr_vnics; i++) { + vnic = &bp->vnic_info[i]; + + if (vnic->flags & BNXT_VNIC_UCAST_FLAG) { + int mem_size = (BNXT_MAX_UC_ADDRS - 1) * ETH_ALEN; + + if (mem_size > 0) { + vnic->uc_list = kmalloc(mem_size, GFP_KERNEL); + if (!vnic->uc_list) { + rc = -ENOMEM; + goto out; + } + } + } + + if (vnic->flags & BNXT_VNIC_MCAST_FLAG) { + vnic->mc_list_size = BNXT_MAX_MC_ADDRS * ETH_ALEN; + vnic->mc_list = + dma_alloc_coherent(&pdev->dev, + vnic->mc_list_size, + &vnic->mc_list_mapping, + GFP_KERNEL); + if (!vnic->mc_list) { + rc = -ENOMEM; + goto out; + } + } + + if (vnic->flags & BNXT_VNIC_RSS_FLAG) + max_rings = bp->rx_nr_rings; + else + max_rings = 1; + + vnic->fw_grp_ids = kcalloc(max_rings, sizeof(u16), GFP_KERNEL); + if (!vnic->fw_grp_ids) { + rc = -ENOMEM; + goto out; + } + + if ((bp->flags & BNXT_FLAG_NEW_RSS_CAP) && + !(vnic->flags & BNXT_VNIC_RSS_FLAG)) + continue; + + /* Allocate rss table and hash key */ + vnic->rss_table = dma_alloc_coherent(&pdev->dev, PAGE_SIZE, + &vnic->rss_table_dma_addr, + GFP_KERNEL); + if (!vnic->rss_table) { + rc = -ENOMEM; + goto out; + } + + size = L1_CACHE_ALIGN(HW_HASH_INDEX_SIZE * sizeof(u16)); + + vnic->rss_hash_key = ((void *)vnic->rss_table) + size; + vnic->rss_hash_key_dma_addr = vnic->rss_table_dma_addr + size; + } + return 0; + +out: + return rc; +} + +static void bnxt_free_hwrm_resources(struct bnxt *bp) +{ + struct pci_dev *pdev = bp->pdev; + + dma_free_coherent(&pdev->dev, PAGE_SIZE, bp->hwrm_cmd_resp_addr, + bp->hwrm_cmd_resp_dma_addr); + + bp->hwrm_cmd_resp_addr = NULL; + if (bp->hwrm_dbg_resp_addr) { + dma_free_coherent(&pdev->dev, HWRM_DBG_REG_BUF_SIZE, + bp->hwrm_dbg_resp_addr, + bp->hwrm_dbg_resp_dma_addr); + + bp->hwrm_dbg_resp_addr = NULL; + } +} + +static int bnxt_alloc_hwrm_resources(struct bnxt *bp) +{ + struct pci_dev *pdev = bp->pdev; + + bp->hwrm_cmd_resp_addr = dma_alloc_coherent(&pdev->dev, PAGE_SIZE, + &bp->hwrm_cmd_resp_dma_addr, + GFP_KERNEL); + if (!bp->hwrm_cmd_resp_addr) + return -ENOMEM; + bp->hwrm_dbg_resp_addr = dma_alloc_coherent(&pdev->dev, + HWRM_DBG_REG_BUF_SIZE, + &bp->hwrm_dbg_resp_dma_addr, + GFP_KERNEL); + if (!bp->hwrm_dbg_resp_addr) + netdev_warn(bp->dev, "fail to alloc debug register dma mem\n"); + + return 0; +} + +static void bnxt_free_stats(struct bnxt *bp) +{ + u32 size, i; + struct pci_dev *pdev = bp->pdev; + + if (bp->hw_rx_port_stats) { + dma_free_coherent(&pdev->dev, bp->hw_port_stats_size, + bp->hw_rx_port_stats, + bp->hw_rx_port_stats_map); + bp->hw_rx_port_stats = NULL; + bp->flags &= ~BNXT_FLAG_PORT_STATS; + } + + if (!bp->bnapi) + return; + + size = sizeof(struct ctx_hw_stats); + + for (i = 0; i < bp->cp_nr_rings; i++) { + struct bnxt_napi *bnapi = bp->bnapi[i]; + struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring; + + if (cpr->hw_stats) { + dma_free_coherent(&pdev->dev, size, cpr->hw_stats, + cpr->hw_stats_map); + cpr->hw_stats = NULL; + } + } +} + +static int bnxt_alloc_stats(struct bnxt *bp) +{ + u32 size, i; + struct pci_dev *pdev = bp->pdev; + + size = sizeof(struct ctx_hw_stats); + + for (i = 0; i < bp->cp_nr_rings; i++) { + struct bnxt_napi *bnapi = bp->bnapi[i]; + struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring; + + cpr->hw_stats = dma_alloc_coherent(&pdev->dev, size, + &cpr->hw_stats_map, + GFP_KERNEL); + if (!cpr->hw_stats) + return -ENOMEM; + + cpr->hw_stats_ctx_id = INVALID_STATS_CTX_ID; + } + + if (BNXT_PF(bp) && bp->chip_num != CHIP_NUM_58700) { + bp->hw_port_stats_size = sizeof(struct rx_port_stats) + + sizeof(struct tx_port_stats) + 1024; + + bp->hw_rx_port_stats = + dma_alloc_coherent(&pdev->dev, bp->hw_port_stats_size, + &bp->hw_rx_port_stats_map, + GFP_KERNEL); + if (!bp->hw_rx_port_stats) + return -ENOMEM; + + bp->hw_tx_port_stats = (void *)(bp->hw_rx_port_stats + 1) + + 512; + bp->hw_tx_port_stats_map = bp->hw_rx_port_stats_map + + sizeof(struct rx_port_stats) + 512; + bp->flags |= BNXT_FLAG_PORT_STATS; + } + return 0; +} + +static void bnxt_clear_ring_indices(struct bnxt *bp) +{ + int i; + + if (!bp->bnapi) + return; + + for (i = 0; i < bp->cp_nr_rings; i++) { + struct bnxt_napi *bnapi = bp->bnapi[i]; + struct bnxt_cp_ring_info *cpr; + struct bnxt_rx_ring_info *rxr; + struct bnxt_tx_ring_info *txr; + + if (!bnapi) + continue; + + cpr = &bnapi->cp_ring; + cpr->cp_raw_cons = 0; + + txr = bnapi->tx_ring; + if (txr) { + txr->tx_prod = 0; + txr->tx_cons = 0; + } + + rxr = bnapi->rx_ring; + if (rxr) { + rxr->rx_prod = 0; + rxr->rx_agg_prod = 0; + rxr->rx_sw_agg_prod = 0; + rxr->rx_next_cons = 0; + } + } +} + +static void bnxt_free_ntp_fltrs(struct bnxt *bp, bool irq_reinit) +{ +#ifdef CONFIG_RFS_ACCEL + int i; + + /* Under rtnl_lock and all our NAPIs have been disabled. It's + * safe to delete the hash table. + */ + for (i = 0; i < BNXT_NTP_FLTR_HASH_SIZE; i++) { + struct hlist_head *head; + struct hlist_node *tmp, __maybe_unused *nxt; + struct bnxt_ntuple_filter *fltr; + + head = &bp->ntp_fltr_hash_tbl[i]; + __hlist_for_each_entry_safe(fltr, nxt, tmp, head, hash) { + hlist_del(&fltr->hash); + kfree(fltr); + } + } + if (irq_reinit) { + kfree(bp->ntp_fltr_bmap); + bp->ntp_fltr_bmap = NULL; + } + bp->ntp_fltr_count = 0; +#endif +} + +static int bnxt_alloc_ntp_fltrs(struct bnxt *bp) +{ +#ifdef CONFIG_RFS_ACCEL + int i, rc = 0; + + if (!(bp->flags & BNXT_FLAG_RFS)) + return 0; + + for (i = 0; i < BNXT_NTP_FLTR_HASH_SIZE; i++) + INIT_HLIST_HEAD(&bp->ntp_fltr_hash_tbl[i]); + + bp->ntp_fltr_count = 0; + bp->ntp_fltr_bmap = kcalloc(BITS_TO_LONGS(BNXT_NTP_FLTR_MAX_FLTR), + sizeof(long), + GFP_KERNEL); + + if (!bp->ntp_fltr_bmap) + rc = -ENOMEM; + + return rc; +#else + return 0; +#endif +} + +static void bnxt_free_mem(struct bnxt *bp, bool irq_re_init) +{ + bnxt_free_vnic_attributes(bp); + bnxt_free_tx_rings(bp); + bnxt_free_rx_rings(bp); + bnxt_free_cp_rings(bp); + bnxt_free_ntp_fltrs(bp, irq_re_init); + if (irq_re_init) { + bnxt_free_stats(bp); + bnxt_free_ring_grps(bp); + bnxt_free_vnics(bp); + kfree(bp->tx_ring_map); + bp->tx_ring_map = NULL; + kfree(bp->tx_ring); + bp->tx_ring = NULL; + kfree(bp->rx_ring); + bp->rx_ring = NULL; + kfree(bp->bnapi); + bp->bnapi = NULL; + } else { + bnxt_clear_ring_indices(bp); + } +} + +static int bnxt_alloc_mem(struct bnxt *bp, bool irq_re_init) +{ + int i, j, rc, size, arr_size; + void *bnapi; + + if (irq_re_init) { + /* Allocate bnapi mem pointer array and mem block for + * all queues + */ + arr_size = L1_CACHE_ALIGN(sizeof(struct bnxt_napi *) * + bp->cp_nr_rings); + size = L1_CACHE_ALIGN(sizeof(struct bnxt_napi)); + bnapi = kzalloc(arr_size + size * bp->cp_nr_rings, GFP_KERNEL); + if (!bnapi) + return -ENOMEM; + + bp->bnapi = bnapi; + bnapi += arr_size; + for (i = 0; i < bp->cp_nr_rings; i++, bnapi += size) { + bp->bnapi[i] = bnapi; + bp->bnapi[i]->index = i; + bp->bnapi[i]->bp = bp; + } + + bp->rx_ring = kcalloc(bp->rx_nr_rings, + sizeof(struct bnxt_rx_ring_info), + GFP_KERNEL); + if (!bp->rx_ring) + return -ENOMEM; + + for (i = 0; i < bp->rx_nr_rings; i++) { + bp->rx_ring[i].bnapi = bp->bnapi[i]; + bp->bnapi[i]->rx_ring = &bp->rx_ring[i]; + } + + bp->tx_ring = kcalloc(bp->tx_nr_rings, + sizeof(struct bnxt_tx_ring_info), + GFP_KERNEL); + if (!bp->tx_ring) + return -ENOMEM; + + bp->tx_ring_map = kcalloc(bp->tx_nr_rings, sizeof(u16), + GFP_KERNEL); + + if (!bp->tx_ring_map) + return -ENOMEM; + + if (bp->flags & BNXT_FLAG_SHARED_RINGS) + j = 0; + else + j = bp->rx_nr_rings; + + for (i = 0; i < bp->tx_nr_rings; i++, j++) { + bp->tx_ring[i].bnapi = bp->bnapi[j]; + bp->bnapi[j]->tx_ring = &bp->tx_ring[i]; + bp->tx_ring_map[i] = bp->tx_nr_rings_xdp + i; + if (i >= bp->tx_nr_rings_xdp) { + bp->tx_ring[i].txq_index = i - + bp->tx_nr_rings_xdp; + bp->bnapi[j]->tx_int = bnxt_tx_int; + } else { + bp->bnapi[j]->flags |= BNXT_NAPI_FLAG_XDP; + bp->bnapi[j]->tx_int = bnxt_tx_int_xdp; + } + } + + rc = bnxt_alloc_stats(bp); + if (rc) + goto alloc_mem_err; + + rc = bnxt_alloc_ntp_fltrs(bp); + if (rc) + goto alloc_mem_err; + + rc = bnxt_alloc_vnics(bp); + if (rc) + goto alloc_mem_err; + + } + + bnxt_init_ring_struct(bp); + + rc = bnxt_alloc_rx_rings(bp); + if (rc) + goto alloc_mem_err; + + rc = bnxt_alloc_tx_rings(bp); + if (rc) + goto alloc_mem_err; + + rc = bnxt_alloc_cp_rings(bp); + if (rc) + goto alloc_mem_err; + + bp->vnic_info[0].flags |= BNXT_VNIC_RSS_FLAG | BNXT_VNIC_MCAST_FLAG | + BNXT_VNIC_UCAST_FLAG; + rc = bnxt_alloc_vnic_attributes(bp); + if (rc) + goto alloc_mem_err; + return 0; + +alloc_mem_err: + bnxt_free_mem(bp, true); + return rc; +} + +static void bnxt_disable_int(struct bnxt *bp) +{ + int i; + + if (!bp->bnapi) + return; + + for (i = 0; i < bp->cp_nr_rings; i++) { + struct bnxt_napi *bnapi = bp->bnapi[i]; + struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring; + struct bnxt_ring_struct *ring = &cpr->cp_ring_struct; + + if (ring->fw_ring_id != INVALID_HW_RING_ID) + BNXT_CP_DB(cpr->cp_doorbell, cpr->cp_raw_cons); + } +} + +static void bnxt_disable_int_sync(struct bnxt *bp) +{ + int i; + + atomic_inc(&bp->intr_sem); + + bnxt_disable_int(bp); + for (i = 0; i < bp->cp_nr_rings; i++) + synchronize_irq(bp->irq_tbl[i].vector); +} + +static void bnxt_enable_int(struct bnxt *bp) +{ + int i; + + atomic_set(&bp->intr_sem, 0); + for (i = 0; i < bp->cp_nr_rings; i++) { + struct bnxt_napi *bnapi = bp->bnapi[i]; + struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring; + + BNXT_CP_DB_REARM(cpr->cp_doorbell, cpr->cp_raw_cons); + } +} + +void bnxt_hwrm_cmd_hdr_init(struct bnxt *bp, void *request, u16 req_type, + u16 cmpl_ring, u16 target_id) +{ + struct input *req = request; + + req->req_type = cpu_to_le16(req_type); + req->cmpl_ring = cpu_to_le16(cmpl_ring); + req->target_id = cpu_to_le16(target_id); + req->resp_addr = cpu_to_le64(bp->hwrm_cmd_resp_dma_addr); +} + +static int bnxt_hwrm_do_send_msg(struct bnxt *bp, void *msg, u32 msg_len, + int timeout, bool silent) +{ + int i, intr_process, rc, tmo_count; + struct input *req = msg; + u32 *data = msg; + __le32 *resp_len, *valid; + u16 cp_ring_id, len = 0; + struct hwrm_err_output *resp = bp->hwrm_cmd_resp_addr; + + req->seq_id = cpu_to_le16(bp->hwrm_cmd_seq++); +#ifndef HSI_DBG_DISABLE + decode_hwrm_req(NULL, msg); +#endif + memset(resp, 0, PAGE_SIZE); + cp_ring_id = le16_to_cpu(req->cmpl_ring); + intr_process = (cp_ring_id == INVALID_HW_RING_ID) ? 0 : 1; + + /* Write request msg to hwrm channel */ + __iowrite32_copy(bp->bar0, data, msg_len / 4); + + for (i = msg_len; i < BNXT_HWRM_MAX_REQ_LEN; i += 4) + writel(0, bp->bar0 + i); + + /* currently supports only one outstanding message */ + if (intr_process) + bp->hwrm_intr_seq_id = le16_to_cpu(req->seq_id); + + /* Ring channel doorbell */ + writel(1, bp->bar0 + 0x100); + + if (!timeout) + timeout = DFLT_HWRM_CMD_TIMEOUT; + + i = 0; + tmo_count = timeout * 40; + if (intr_process) { + /* Wait until hwrm response cmpl interrupt is processed */ + while (bp->hwrm_intr_seq_id != HWRM_SEQ_ID_INVALID && + i++ < tmo_count) { + usleep_range(25, 40); + } + + if (bp->hwrm_intr_seq_id != HWRM_SEQ_ID_INVALID) { + netdev_err(bp->dev, "Resp cmpl intr err msg: 0x%x\n", + le16_to_cpu(req->req_type)); + return -1; + } + } else { + /* Check if response len is updated */ + resp_len = bp->hwrm_cmd_resp_addr + HWRM_RESP_LEN_OFFSET; + for (i = 0; i < tmo_count; i++) { + len = (le32_to_cpu(*resp_len) & HWRM_RESP_LEN_MASK) >> + HWRM_RESP_LEN_SFT; + if (len) + break; + usleep_range(25, 40); + } + + if (i >= tmo_count) { + netdev_err(bp->dev, "Error (timeout: %d) msg {0x%x 0x%x} len:%d\n", + timeout, le16_to_cpu(req->req_type), + le16_to_cpu(req->seq_id), len); + return -1; + } + + /* Last word of resp contains valid bit */ + valid = bp->hwrm_cmd_resp_addr + len - 4; + for (i = 0; i < 5; i++) { + if (le32_to_cpu(*valid) & HWRM_RESP_VALID_MASK) + break; + udelay(1); + } + + if (i >= 5) { + netdev_err(bp->dev, "Error (timeout: %d) msg {0x%x 0x%x} len:%d v:%d\n", + timeout, le16_to_cpu(req->req_type), + le16_to_cpu(req->seq_id), len, *valid); + return -1; + } + } + + rc = le16_to_cpu(resp->error_code); + if (rc && !silent) + netdev_err(bp->dev, "hwrm req_type 0x%x seq id 0x%x error 0x%x\n", + le16_to_cpu(resp->req_type), + le16_to_cpu(resp->seq_id), rc); +#ifndef HSI_DBG_DISABLE + decode_hwrm_resp(NULL, resp); +#endif + return rc; +} + +int _hwrm_send_message(struct bnxt *bp, void *msg, u32 msg_len, int timeout) +{ + return bnxt_hwrm_do_send_msg(bp, msg, msg_len, timeout, false); +} + +int hwrm_send_message(struct bnxt *bp, void *msg, u32 msg_len, int timeout) +{ + int rc; + + mutex_lock(&bp->hwrm_cmd_lock); + rc = _hwrm_send_message(bp, msg, msg_len, timeout); + mutex_unlock(&bp->hwrm_cmd_lock); + return rc; +} + +int hwrm_send_message_silent(struct bnxt *bp, void *msg, u32 msg_len, + int timeout) +{ + int rc; + + mutex_lock(&bp->hwrm_cmd_lock); + rc = bnxt_hwrm_do_send_msg(bp, msg, msg_len, timeout, true); + mutex_unlock(&bp->hwrm_cmd_lock); + return rc; +} + +int bnxt_hwrm_func_rgtr_async_events(struct bnxt *bp, unsigned long *bmap, + int bmap_size) +{ + struct hwrm_func_drv_rgtr_input req = {0}; + DECLARE_BITMAP(async_events_bmap, 256); + u32 *events = (u32 *)async_events_bmap; + int i; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_DRV_RGTR, -1, -1); + + req.enables = + cpu_to_le32(FUNC_DRV_RGTR_REQ_ENABLES_ASYNC_EVENT_FWD); + + memset(async_events_bmap, 0, sizeof(async_events_bmap)); + for (i = 0; i < ARRAY_SIZE(bnxt_async_events_arr); i++) + __set_bit(bnxt_async_events_arr[i], async_events_bmap); + + if (bmap && bmap_size) { + for (i = 0; i < bmap_size; i++) { + if (test_bit(i, bmap)) + __set_bit(i, async_events_bmap); + } + } + + for (i = 0; i < 8; i++) + req.async_event_fwd[i] |= cpu_to_le32(events[i]); + + return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); +} + +static int bnxt_hwrm_func_drv_rgtr(struct bnxt *bp) +{ + struct hwrm_func_drv_rgtr_input req = {0}; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_DRV_RGTR, -1, -1); + + req.enables = + cpu_to_le32(FUNC_DRV_RGTR_REQ_ENABLES_OS_TYPE | + FUNC_DRV_RGTR_REQ_ENABLES_VER); + + req.os_type = cpu_to_le16(FUNC_DRV_RGTR_REQ_OS_TYPE_LINUX); + req.ver_maj = DRV_VER_MAJ; + req.ver_min = DRV_VER_MIN; + req.ver_upd = DRV_VER_UPD; + + if (BNXT_PF(bp)) { + u32 data[8]; + int i; + + memset(data, 0, sizeof(data)); + for (i = 0; i < ARRAY_SIZE(bnxt_vf_req_snif); i++) { + u16 cmd = bnxt_vf_req_snif[i]; + unsigned int bit, idx; + + idx = cmd / 32; + bit = cmd % 32; + data[idx] |= 1 << bit; + } + + for (i = 0; i < 8; i++) + req.vf_req_fwd[i] = cpu_to_le32(data[i]); + + req.enables |= + cpu_to_le32(FUNC_DRV_RGTR_REQ_ENABLES_VF_REQ_FWD); + } + + return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); +} + +static int bnxt_hwrm_func_drv_unrgtr(struct bnxt *bp) +{ + struct hwrm_func_drv_unrgtr_input req = {0}; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_DRV_UNRGTR, -1, -1); + return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); +} + +static int bnxt_hwrm_tunnel_dst_port_free(struct bnxt *bp, u8 tunnel_type) +{ + u32 rc = 0; + struct hwrm_tunnel_dst_port_free_input req = {0}; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_TUNNEL_DST_PORT_FREE, -1, -1); + req.tunnel_type = tunnel_type; + + switch (tunnel_type) { + case TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_VXLAN: + req.tunnel_dst_port_id = bp->vxlan_fw_dst_port_id; + break; + case TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_GENEVE: + req.tunnel_dst_port_id = bp->nge_fw_dst_port_id; + break; + default: + break; + } + + rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + if (rc) + netdev_err(bp->dev, "hwrm_tunnel_dst_port_free failed. rc:%d\n", + rc); + return rc; +} + +static int bnxt_hwrm_tunnel_dst_port_alloc(struct bnxt *bp, __be16 port, + u8 tunnel_type) +{ + u32 rc = 0; + struct hwrm_tunnel_dst_port_alloc_input req = {0}; + struct hwrm_tunnel_dst_port_alloc_output *resp = bp->hwrm_cmd_resp_addr; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_TUNNEL_DST_PORT_ALLOC, -1, -1); + + req.tunnel_type = tunnel_type; + req.tunnel_dst_port_val = port; + + mutex_lock(&bp->hwrm_cmd_lock); + rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + if (rc) { + netdev_err(bp->dev, "hwrm_tunnel_dst_port_alloc failed. rc:%d\n", + rc); + goto err_out; + } + + switch (tunnel_type) { + case TUNNEL_DST_PORT_ALLOC_REQ_TUNNEL_TYPE_VXLAN: + bp->vxlan_fw_dst_port_id = resp->tunnel_dst_port_id; + break; + case TUNNEL_DST_PORT_ALLOC_REQ_TUNNEL_TYPE_GENEVE: + bp->nge_fw_dst_port_id = resp->tunnel_dst_port_id; + break; + default: + break; + } + +err_out: + mutex_unlock(&bp->hwrm_cmd_lock); + return rc; +} + +static int bnxt_hwrm_cfa_l2_set_rx_mask(struct bnxt *bp, u16 vnic_id) +{ + struct hwrm_cfa_l2_set_rx_mask_input req = {0}; + struct bnxt_vnic_info *vnic = &bp->vnic_info[vnic_id]; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_CFA_L2_SET_RX_MASK, -1, -1); + req.vnic_id = cpu_to_le32(vnic->fw_vnic_id); + + req.num_mc_entries = cpu_to_le32(vnic->mc_list_count); + req.mc_tbl_addr = cpu_to_le64(vnic->mc_list_mapping); + req.mask = cpu_to_le32(vnic->rx_mask); + return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); +} + +#ifdef CONFIG_RFS_ACCEL +static int bnxt_hwrm_cfa_ntuple_filter_free(struct bnxt *bp, + struct bnxt_ntuple_filter *fltr) +{ + struct hwrm_cfa_ntuple_filter_free_input req = {0}; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_CFA_NTUPLE_FILTER_FREE, -1, -1); + req.ntuple_filter_id = fltr->filter_id; + return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); +} + +#define BNXT_NTP_FLTR_FLAGS \ + (CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_L2_FILTER_ID | \ + CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_ETHERTYPE | \ + CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_SRC_MACADDR | \ + CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_IPADDR_TYPE | \ + CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_SRC_IPADDR | \ + CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_SRC_IPADDR_MASK | \ + CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_DST_IPADDR | \ + CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_DST_IPADDR_MASK | \ + CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_IP_PROTOCOL | \ + CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_SRC_PORT | \ + CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_SRC_PORT_MASK | \ + CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_DST_PORT | \ + CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_DST_PORT_MASK | \ + CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_DST_ID) + +#define BNXT_NTP_TUNNEL_FLTR_FLAG \ + CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_TUNNEL_TYPE + +static int bnxt_hwrm_cfa_ntuple_filter_alloc(struct bnxt *bp, + struct bnxt_ntuple_filter *fltr) +{ + int rc = 0; + struct hwrm_cfa_ntuple_filter_alloc_input req = {0}; + struct hwrm_cfa_ntuple_filter_alloc_output *resp = + bp->hwrm_cmd_resp_addr; + struct flow_keys *keys = &fltr->fkeys; + struct bnxt_vnic_info *vnic = &bp->vnic_info[fltr->rxq + 1]; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_CFA_NTUPLE_FILTER_ALLOC, -1, -1); + req.l2_filter_id = bp->vnic_info[0].fw_l2_filter_id[fltr->l2_fltr_idx]; + + req.enables = cpu_to_le32(BNXT_NTP_FLTR_FLAGS); + + req.ethertype = htons(ETH_P_IP); + memcpy(req.src_macaddr, fltr->src_mac_addr, ETH_ALEN); + req.ip_addr_type = CFA_NTUPLE_FILTER_ALLOC_REQ_IP_ADDR_TYPE_IPV4; +#ifdef NEW_FLOW_KEYS + req.ip_protocol = keys->basic.ip_proto; + + if (keys->basic.n_proto == htons(ETH_P_IPV6)) { + int i; + + req.ethertype = htons(ETH_P_IPV6); + req.ip_addr_type = + CFA_NTUPLE_FILTER_ALLOC_REQ_IP_ADDR_TYPE_IPV6; + *(struct in6_addr *)&req.src_ipaddr[0] = + keys->addrs.v6addrs.src; + *(struct in6_addr *)&req.dst_ipaddr[0] = + keys->addrs.v6addrs.dst; + for (i = 0; i < 4; i++) { + req.src_ipaddr_mask[i] = cpu_to_be32(0xffffffff); + req.dst_ipaddr_mask[i] = cpu_to_be32(0xffffffff); + } + } else { + req.src_ipaddr[0] = keys->addrs.v4addrs.src; + req.src_ipaddr_mask[0] = cpu_to_be32(0xffffffff); + req.dst_ipaddr[0] = keys->addrs.v4addrs.dst; + req.dst_ipaddr_mask[0] = cpu_to_be32(0xffffffff); + } +#ifdef HAVE_NEW_FLOW_DISSECTOR + if (keys->control.flags & FLOW_DIS_ENCAPSULATION) { + req.enables |= cpu_to_le32(BNXT_NTP_TUNNEL_FLTR_FLAG); + req.tunnel_type = + CFA_NTUPLE_FILTER_ALLOC_REQ_TUNNEL_TYPE_ANYTUNNEL; + } +#endif + + req.src_port = keys->ports.src; + req.src_port_mask = cpu_to_be16(0xffff); + req.dst_port = keys->ports.dst; + req.dst_port_mask = cpu_to_be16(0xffff); +#else + req.ip_protocol = keys->ip_proto; + + req.src_ipaddr[0] = keys->src; + req.src_ipaddr_mask[0] = 0xffffffff; + req.dst_ipaddr[0] = keys->dst; + req.dst_ipaddr_mask[0] = 0xffffffff; + + req.src_port = keys->port16[0]; + req.src_port_mask = 0xffff; + req.dst_port = keys->port16[1]; + req.dst_port_mask = 0xffff; +#endif + + req.dst_id = cpu_to_le16(vnic->fw_vnic_id); + mutex_lock(&bp->hwrm_cmd_lock); + rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + if (!rc) + fltr->filter_id = resp->ntuple_filter_id; + mutex_unlock(&bp->hwrm_cmd_lock); + return rc; +} +#endif + +static int bnxt_hwrm_set_vnic_filter(struct bnxt *bp, u16 vnic_id, u16 idx, + u8 *mac_addr) +{ + u32 rc = 0; + struct hwrm_cfa_l2_filter_alloc_input req = {0}; + struct hwrm_cfa_l2_filter_alloc_output *resp = bp->hwrm_cmd_resp_addr; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_CFA_L2_FILTER_ALLOC, -1, -1); + req.flags = cpu_to_le32(CFA_L2_FILTER_ALLOC_REQ_FLAGS_PATH_RX); + if (!BNXT_CHIP_TYPE_NITRO_A0(bp)) + req.flags |= + cpu_to_le32(CFA_L2_FILTER_ALLOC_REQ_FLAGS_OUTERMOST); + req.dst_id = cpu_to_le16(bp->vnic_info[vnic_id].fw_vnic_id); + req.enables = + cpu_to_le32(CFA_L2_FILTER_ALLOC_REQ_ENABLES_L2_ADDR | + CFA_L2_FILTER_ALLOC_REQ_ENABLES_DST_ID | + CFA_L2_FILTER_ALLOC_REQ_ENABLES_L2_ADDR_MASK); + memcpy(req.l2_addr, mac_addr, ETH_ALEN); + req.l2_addr_mask[0] = 0xff; + req.l2_addr_mask[1] = 0xff; + req.l2_addr_mask[2] = 0xff; + req.l2_addr_mask[3] = 0xff; + req.l2_addr_mask[4] = 0xff; + req.l2_addr_mask[5] = 0xff; + + mutex_lock(&bp->hwrm_cmd_lock); + rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + if (!rc) + bp->vnic_info[vnic_id].fw_l2_filter_id[idx] = + resp->l2_filter_id; + mutex_unlock(&bp->hwrm_cmd_lock); + return rc; +} + +static int bnxt_hwrm_clear_vnic_filter(struct bnxt *bp) +{ + u16 i, j, num_of_vnics = 1; /* only vnic 0 supported */ + int rc = 0; + + /* Any associated ntuple filters will also be cleared by firmware. */ + mutex_lock(&bp->hwrm_cmd_lock); + for (i = 0; i < num_of_vnics; i++) { + struct bnxt_vnic_info *vnic = &bp->vnic_info[i]; + + for (j = 0; j < vnic->uc_filter_count; j++) { + struct hwrm_cfa_l2_filter_free_input req = {0}; + + bnxt_hwrm_cmd_hdr_init(bp, &req, + HWRM_CFA_L2_FILTER_FREE, -1, -1); + + req.l2_filter_id = vnic->fw_l2_filter_id[j]; + + rc = _hwrm_send_message(bp, &req, sizeof(req), + HWRM_CMD_TIMEOUT); + } + vnic->uc_filter_count = 0; + } + mutex_unlock(&bp->hwrm_cmd_lock); + + return rc; +} + +static int bnxt_hwrm_vnic_set_tpa(struct bnxt *bp, u16 vnic_id, u32 tpa_flags) +{ + struct bnxt_vnic_info *vnic = &bp->vnic_info[vnic_id]; + struct hwrm_vnic_tpa_cfg_input req = {0}; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_VNIC_TPA_CFG, -1, -1); + + if (tpa_flags) { + u16 mss = bp->dev->mtu - 40; + u32 nsegs, n, segs = 0, flags; + + flags = VNIC_TPA_CFG_REQ_FLAGS_TPA | + VNIC_TPA_CFG_REQ_FLAGS_ENCAP_TPA | + VNIC_TPA_CFG_REQ_FLAGS_RSC_WND_UPDATE | + VNIC_TPA_CFG_REQ_FLAGS_AGG_WITH_ECN | + VNIC_TPA_CFG_REQ_FLAGS_AGG_WITH_SAME_GRE_SEQ; + if (tpa_flags & BNXT_FLAG_GRO) + flags |= VNIC_TPA_CFG_REQ_FLAGS_GRO; + + req.flags = cpu_to_le32(flags); + + req.enables = + cpu_to_le32(VNIC_TPA_CFG_REQ_ENABLES_MAX_AGG_SEGS | + VNIC_TPA_CFG_REQ_ENABLES_MAX_AGGS | + VNIC_TPA_CFG_REQ_ENABLES_MIN_AGG_LEN); + + /* Number of segs are log2 units, and first packet is not + * included as part of this units. + */ + if (mss <= BNXT_RX_PAGE_SIZE) { + n = BNXT_RX_PAGE_SIZE / mss; + nsegs = (MAX_SKB_FRAGS - 1) * n; + } else { + n = mss / BNXT_RX_PAGE_SIZE; + if (mss & (BNXT_RX_PAGE_SIZE - 1)) + n++; + nsegs = (MAX_SKB_FRAGS - n) / n; + } + + segs = ilog2(nsegs); + req.max_agg_segs = cpu_to_le16(segs); + req.max_aggs = cpu_to_le16(VNIC_TPA_CFG_REQ_MAX_AGGS_MAX); + + req.min_agg_len = cpu_to_le32(512); + } + req.vnic_id = cpu_to_le16(vnic->fw_vnic_id); + + return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); +} + +static int bnxt_hwrm_vnic_set_rss(struct bnxt *bp, u16 vnic_id, bool set_rss) +{ + u32 i, j, max_rings; + struct bnxt_vnic_info *vnic = &bp->vnic_info[vnic_id]; + struct hwrm_vnic_rss_cfg_input req = {0}; + + if (vnic->fw_rss_cos_lb_ctx[0] == INVALID_HW_RING_ID) + return 0; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_VNIC_RSS_CFG, -1, -1); + if (set_rss) { + req.hash_type = cpu_to_le32(bp->rss_hash_cfg); + if (vnic->flags & BNXT_VNIC_RSS_FLAG) { + if (BNXT_CHIP_TYPE_NITRO_A0(bp)) + max_rings = bp->rx_nr_rings - 1; + else + max_rings = bp->rx_nr_rings; + } else { + max_rings = 1; + } + + /* Fill the RSS indirection table with ring group ids */ + for (i = 0, j = 0; i < HW_HASH_INDEX_SIZE; i++, j++) { + if (j == max_rings) + j = 0; + vnic->rss_table[i] = cpu_to_le16(vnic->fw_grp_ids[j]); + } + + req.ring_grp_tbl_addr = cpu_to_le64(vnic->rss_table_dma_addr); + req.hash_key_tbl_addr = + cpu_to_le64(vnic->rss_hash_key_dma_addr); + } + req.rss_ctx_idx = cpu_to_le16(vnic->fw_rss_cos_lb_ctx[0]); + return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); +} + +static int bnxt_hwrm_vnic_set_hds(struct bnxt *bp, u16 vnic_id) +{ + struct bnxt_vnic_info *vnic = &bp->vnic_info[vnic_id]; + struct hwrm_vnic_plcmodes_cfg_input req = {0}; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_VNIC_PLCMODES_CFG, -1, -1); + req.flags = cpu_to_le32(VNIC_PLCMODES_CFG_REQ_FLAGS_JUMBO_PLACEMENT | + VNIC_PLCMODES_CFG_REQ_FLAGS_HDS_IPV4 | + VNIC_PLCMODES_CFG_REQ_FLAGS_HDS_IPV6); + req.enables = + cpu_to_le32(VNIC_PLCMODES_CFG_REQ_ENABLES_JUMBO_THRESH_VALID | + VNIC_PLCMODES_CFG_REQ_ENABLES_HDS_THRESHOLD_VALID); + /* thresholds not implemented in firmware yet */ + req.jumbo_thresh = cpu_to_le16(bp->rx_copy_thresh); + req.hds_threshold = cpu_to_le16(bp->rx_copy_thresh); + req.vnic_id = cpu_to_le32(vnic->fw_vnic_id); + return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); +} + +static void bnxt_hwrm_vnic_ctx_free_one(struct bnxt *bp, u16 vnic_id, + u16 ctx_idx) +{ + struct hwrm_vnic_rss_cos_lb_ctx_free_input req = {0}; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_VNIC_RSS_COS_LB_CTX_FREE, -1, -1); + req.rss_cos_lb_ctx_id = + cpu_to_le16(bp->vnic_info[vnic_id].fw_rss_cos_lb_ctx[ctx_idx]); + + hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + bp->vnic_info[vnic_id].fw_rss_cos_lb_ctx[ctx_idx] = INVALID_HW_RING_ID; +} + +static void bnxt_hwrm_vnic_ctx_free(struct bnxt *bp) +{ + int i, j; + + for (i = 0; i < bp->nr_vnics; i++) { + struct bnxt_vnic_info *vnic = &bp->vnic_info[i]; + + for (j = 0; j < BNXT_MAX_CTX_PER_VNIC; j++) { + if (vnic->fw_rss_cos_lb_ctx[j] != INVALID_HW_RING_ID) + bnxt_hwrm_vnic_ctx_free_one(bp, i, j); + } + } + bp->rsscos_nr_ctxs = 0; +} + +static int bnxt_hwrm_vnic_ctx_alloc(struct bnxt *bp, u16 vnic_id, u16 ctx_idx) +{ + int rc; + struct hwrm_vnic_rss_cos_lb_ctx_alloc_input req = {0}; + struct hwrm_vnic_rss_cos_lb_ctx_alloc_output *resp = + bp->hwrm_cmd_resp_addr; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_VNIC_RSS_COS_LB_CTX_ALLOC, -1, + -1); + + mutex_lock(&bp->hwrm_cmd_lock); + rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + if (!rc) + bp->vnic_info[vnic_id].fw_rss_cos_lb_ctx[ctx_idx] = + le16_to_cpu(resp->rss_cos_lb_ctx_id); + mutex_unlock(&bp->hwrm_cmd_lock); + + return rc; +} + +int bnxt_hwrm_vnic_cfg(struct bnxt *bp, u16 vnic_id) +{ + unsigned int ring = 0, grp_idx; + struct bnxt_vnic_info *vnic = &bp->vnic_info[vnic_id]; + struct hwrm_vnic_cfg_input req = {0}; + u16 def_vlan = 0; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_VNIC_CFG, -1, -1); + + req.enables = cpu_to_le32(VNIC_CFG_REQ_ENABLES_DFLT_RING_GRP); + /* Only RSS support for now TBD: COS & LB */ + if (vnic->fw_rss_cos_lb_ctx[0] != INVALID_HW_RING_ID) { + req.rss_rule = cpu_to_le16(vnic->fw_rss_cos_lb_ctx[0]); + req.enables |= cpu_to_le32(VNIC_CFG_REQ_ENABLES_RSS_RULE | + VNIC_CFG_REQ_ENABLES_MRU); + } else if (vnic->flags & BNXT_VNIC_RFS_NEW_RSS_FLAG) { + req.rss_rule = + cpu_to_le16(bp->vnic_info[0].fw_rss_cos_lb_ctx[0]); + req.enables |= cpu_to_le32(VNIC_CFG_REQ_ENABLES_RSS_RULE | + VNIC_CFG_REQ_ENABLES_MRU); + req.flags |= cpu_to_le32(VNIC_CFG_REQ_FLAGS_RSS_DFLT_CR_MODE); + } else { + req.rss_rule = cpu_to_le16(0xffff); + } + + if (BNXT_CHIP_TYPE_NITRO_A0(bp) && + (vnic->fw_rss_cos_lb_ctx[0] != INVALID_HW_RING_ID)) { + req.cos_rule = cpu_to_le16(vnic->fw_rss_cos_lb_ctx[1]); + req.enables |= cpu_to_le32(VNIC_CFG_REQ_ENABLES_COS_RULE); + } else { + req.cos_rule = cpu_to_le16(0xffff); + } + + if (vnic->flags & BNXT_VNIC_RSS_FLAG) + ring = 0; + else if (vnic->flags & BNXT_VNIC_RFS_FLAG) + ring = vnic_id - 1; + else if ((vnic_id == 1) && BNXT_CHIP_TYPE_NITRO_A0(bp)) + ring = bp->rx_nr_rings - 1; + + grp_idx = bp->rx_ring[ring].bnapi->index; + req.vnic_id = cpu_to_le16(vnic->fw_vnic_id); + req.dflt_ring_grp = cpu_to_le16(bp->grp_info[grp_idx].fw_grp_id); + + req.lb_rule = cpu_to_le16(0xffff); + req.mru = cpu_to_le16(bp->dev->mtu + ETH_HLEN + ETH_FCS_LEN + + VLAN_HLEN); + +#ifdef CONFIG_BNXT_BPO_SRIOV + if (BNXT_VF(bp)) + def_vlan = bp->vf.vlan; +#endif + if ((bp->flags & BNXT_FLAG_STRIP_VLAN) || def_vlan) + req.flags |= cpu_to_le32(VNIC_CFG_REQ_FLAGS_VLAN_STRIP_MODE); + if (!vnic_id && bnxt_ulp_registered(bp->edev, BNXT_ROCE_ULP)) + req.flags |= + cpu_to_le32(VNIC_CFG_REQ_FLAGS_ROCE_DUAL_VNIC_MODE); + return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); +} + +static int bnxt_hwrm_vnic_free_one(struct bnxt *bp, u16 vnic_id) +{ + u32 rc = 0; + + if (bp->vnic_info[vnic_id].fw_vnic_id != INVALID_HW_RING_ID) { + struct hwrm_vnic_free_input req = {0}; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_VNIC_FREE, -1, -1); + req.vnic_id = + cpu_to_le32(bp->vnic_info[vnic_id].fw_vnic_id); + + rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + if (rc) + return rc; + bp->vnic_info[vnic_id].fw_vnic_id = INVALID_HW_RING_ID; + } + return rc; +} + +static void bnxt_hwrm_vnic_free(struct bnxt *bp) +{ + u16 i; + + for (i = 0; i < bp->nr_vnics; i++) + bnxt_hwrm_vnic_free_one(bp, i); +} + +static int bnxt_hwrm_vnic_alloc(struct bnxt *bp, u16 vnic_id, + unsigned int start_rx_ring_idx, + unsigned int nr_rings) +{ + int rc = 0; + unsigned int i, j, grp_idx, end_idx = start_rx_ring_idx + nr_rings; + struct hwrm_vnic_alloc_input req = {0}; + struct hwrm_vnic_alloc_output *resp = bp->hwrm_cmd_resp_addr; + + /* map ring groups to this vnic */ + for (i = start_rx_ring_idx, j = 0; i < end_idx; i++, j++) { + grp_idx = bp->rx_ring[i].bnapi->index; + if (bp->grp_info[grp_idx].fw_grp_id == INVALID_HW_RING_ID) { + netdev_err(bp->dev, "Not enough ring groups avail:%x req:%x\n", + j, nr_rings); + break; + } + bp->vnic_info[vnic_id].fw_grp_ids[j] = + bp->grp_info[grp_idx].fw_grp_id; + } + + bp->vnic_info[vnic_id].fw_rss_cos_lb_ctx[0] = INVALID_HW_RING_ID; + bp->vnic_info[vnic_id].fw_rss_cos_lb_ctx[1] = INVALID_HW_RING_ID; + if (vnic_id == 0) + req.flags = cpu_to_le32(VNIC_ALLOC_REQ_FLAGS_DEFAULT); + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_VNIC_ALLOC, -1, -1); + + mutex_lock(&bp->hwrm_cmd_lock); + rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + if (!rc) + bp->vnic_info[vnic_id].fw_vnic_id = le32_to_cpu(resp->vnic_id); + mutex_unlock(&bp->hwrm_cmd_lock); + return rc; +} + +static int bnxt_hwrm_vnic_qcaps(struct bnxt *bp) +{ + struct hwrm_vnic_qcaps_output *resp = bp->hwrm_cmd_resp_addr; + struct hwrm_vnic_qcaps_input req = {0}; + int rc; + + if (bp->hwrm_spec_code < 0x10600) + return 0; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_VNIC_QCAPS, -1, -1); + mutex_lock(&bp->hwrm_cmd_lock); + rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + if (!rc) { + if (resp->flags & + cpu_to_le32(VNIC_QCAPS_RESP_FLAGS_RSS_DFLT_CR_CAP)) + bp->flags |= BNXT_FLAG_NEW_RSS_CAP; + } + mutex_unlock(&bp->hwrm_cmd_lock); + return rc; +} + +static int bnxt_hwrm_ring_grp_alloc(struct bnxt *bp) +{ + u16 i; + u32 rc = 0; + + mutex_lock(&bp->hwrm_cmd_lock); + for (i = 0; i < bp->rx_nr_rings; i++) { + struct hwrm_ring_grp_alloc_input req = {0}; + struct hwrm_ring_grp_alloc_output *resp = + bp->hwrm_cmd_resp_addr; + unsigned int grp_idx = bp->rx_ring[i].bnapi->index; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_RING_GRP_ALLOC, -1, -1); + + req.cr = cpu_to_le16(bp->grp_info[grp_idx].cp_fw_ring_id); + req.rr = cpu_to_le16(bp->grp_info[grp_idx].rx_fw_ring_id); + req.ar = cpu_to_le16(bp->grp_info[grp_idx].agg_fw_ring_id); + req.sc = cpu_to_le16(bp->grp_info[grp_idx].fw_stats_ctx); + + rc = _hwrm_send_message(bp, &req, sizeof(req), + HWRM_CMD_TIMEOUT); + if (rc) + break; + + bp->grp_info[grp_idx].fw_grp_id = + le32_to_cpu(resp->ring_group_id); + } + mutex_unlock(&bp->hwrm_cmd_lock); + return rc; +} + +static int bnxt_hwrm_ring_grp_free(struct bnxt *bp) +{ + u16 i; + u32 rc = 0; + struct hwrm_ring_grp_free_input req = {0}; + + if (!bp->grp_info) + return 0; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_RING_GRP_FREE, -1, -1); + + mutex_lock(&bp->hwrm_cmd_lock); + for (i = 0; i < bp->cp_nr_rings; i++) { + if (bp->grp_info[i].fw_grp_id == INVALID_HW_RING_ID) + continue; + req.ring_group_id = + cpu_to_le32(bp->grp_info[i].fw_grp_id); + + rc = _hwrm_send_message(bp, &req, sizeof(req), + HWRM_CMD_TIMEOUT); + if (rc) + break; + bp->grp_info[i].fw_grp_id = INVALID_HW_RING_ID; + } + mutex_unlock(&bp->hwrm_cmd_lock); + return rc; +} + +static int hwrm_ring_alloc_send_msg(struct bnxt *bp, + struct bnxt_ring_struct *ring, + u32 ring_type, u32 map_index, + u32 stats_ctx_id) +{ + int rc = 0, err = 0; + struct hwrm_ring_alloc_input req = {0}; + struct hwrm_ring_alloc_output *resp = bp->hwrm_cmd_resp_addr; + u16 ring_id; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_RING_ALLOC, -1, -1); + + req.enables = 0; + if (ring->nr_pages > 1) { + req.page_tbl_addr = cpu_to_le64(ring->pg_tbl_map); + /* Page size is in log2 units */ + req.page_size = BNXT_PAGE_SHIFT; + req.page_tbl_depth = 1; + } else { + req.page_tbl_addr = cpu_to_le64(ring->dma_arr[0]); + } + req.fbo = 0; + /* Association of ring index with doorbell index and MSIX number */ + req.logical_id = cpu_to_le16(map_index); + + switch (ring_type) { + case HWRM_RING_ALLOC_TX: + req.ring_type = RING_ALLOC_REQ_RING_TYPE_TX; + /* Association of transmit ring with completion ring */ + req.cmpl_ring_id = + cpu_to_le16(bp->grp_info[map_index].cp_fw_ring_id); + req.length = cpu_to_le32(bp->tx_ring_mask + 1); + req.stat_ctx_id = cpu_to_le32(stats_ctx_id); + req.queue_id = cpu_to_le16(ring->queue_id); + break; + case HWRM_RING_ALLOC_RX: + req.ring_type = RING_ALLOC_REQ_RING_TYPE_RX; + req.length = cpu_to_le32(bp->rx_ring_mask + 1); + break; + case HWRM_RING_ALLOC_AGG: + req.ring_type = RING_ALLOC_REQ_RING_TYPE_RX; + req.length = cpu_to_le32(bp->rx_agg_ring_mask + 1); + break; + case HWRM_RING_ALLOC_CMPL: + req.ring_type = RING_ALLOC_REQ_RING_TYPE_L2_CMPL; + req.length = cpu_to_le32(bp->cp_ring_mask + 1); + if (bp->flags & BNXT_FLAG_USING_MSIX) + req.int_mode = RING_ALLOC_REQ_INT_MODE_MSIX; + break; + default: + netdev_err(bp->dev, "hwrm alloc invalid ring type %d\n", + ring_type); + return -1; + } + + mutex_lock(&bp->hwrm_cmd_lock); + rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + err = le16_to_cpu(resp->error_code); + ring_id = le16_to_cpu(resp->ring_id); + mutex_unlock(&bp->hwrm_cmd_lock); + + if (rc || err) { + switch (ring_type) { + case RING_FREE_REQ_RING_TYPE_L2_CMPL: + netdev_err(bp->dev, "hwrm_ring_alloc cp failed. rc:%x err:%x\n", + rc, err); + return -1; + + case RING_FREE_REQ_RING_TYPE_RX: + netdev_err(bp->dev, "hwrm_ring_alloc rx failed. rc:%x err:%x\n", + rc, err); + return -1; + + case RING_FREE_REQ_RING_TYPE_TX: + netdev_err(bp->dev, "hwrm_ring_alloc tx failed. rc:%x err:%x\n", + rc, err); + return -1; + + default: + netdev_err(bp->dev, "Invalid ring\n"); + return -1; + } + } + ring->fw_ring_id = ring_id; + return rc; +} + +static int bnxt_hwrm_set_async_event_cr(struct bnxt *bp, int idx) +{ + int rc; + + if (BNXT_PF(bp)) { + struct hwrm_func_cfg_input req = {0}; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_CFG, -1, -1); + req.fid = cpu_to_le16(0xffff); + req.enables = cpu_to_le32(FUNC_CFG_REQ_ENABLES_ASYNC_EVENT_CR); + req.async_event_cr = cpu_to_le16(idx); + rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + } else { + struct hwrm_func_vf_cfg_input req = {0}; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_VF_CFG, -1, -1); + req.enables = + cpu_to_le32(FUNC_VF_CFG_REQ_ENABLES_ASYNC_EVENT_CR); + req.async_event_cr = cpu_to_le16(idx); + rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + } + return rc; +} + +static int bnxt_hwrm_ring_alloc(struct bnxt *bp) +{ + int i, rc = 0; + + for (i = 0; i < bp->cp_nr_rings; i++) { + struct bnxt_napi *bnapi = bp->bnapi[i]; + struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring; + struct bnxt_ring_struct *ring = &cpr->cp_ring_struct; + + cpr->cp_doorbell = bp->bar1 + i * 0x80; + rc = hwrm_ring_alloc_send_msg(bp, ring, HWRM_RING_ALLOC_CMPL, i, + INVALID_STATS_CTX_ID); + if (rc) + goto err_out; + BNXT_CP_DB(cpr->cp_doorbell, cpr->cp_raw_cons); + bp->grp_info[i].cp_fw_ring_id = ring->fw_ring_id; + + if (!i) { + rc = bnxt_hwrm_set_async_event_cr(bp, ring->fw_ring_id); + if (rc) + netdev_warn(bp->dev, "Failed to set async event completion ring.\n"); + } + } + + for (i = 0; i < bp->tx_nr_rings; i++) { + struct bnxt_tx_ring_info *txr = &bp->tx_ring[i]; + struct bnxt_ring_struct *ring = &txr->tx_ring_struct; + u32 map_idx = txr->bnapi->index; + u16 fw_stats_ctx = bp->grp_info[map_idx].fw_stats_ctx; + + rc = hwrm_ring_alloc_send_msg(bp, ring, HWRM_RING_ALLOC_TX, + map_idx, fw_stats_ctx); + if (rc) + goto err_out; + txr->tx_doorbell = bp->bar1 + map_idx * 0x80; + } + + for (i = 0; i < bp->rx_nr_rings; i++) { + struct bnxt_rx_ring_info *rxr = &bp->rx_ring[i]; + struct bnxt_ring_struct *ring = &rxr->rx_ring_struct; + u32 map_idx = rxr->bnapi->index; + + rc = hwrm_ring_alloc_send_msg(bp, ring, HWRM_RING_ALLOC_RX, + map_idx, INVALID_STATS_CTX_ID); + if (rc) + goto err_out; + rxr->rx_doorbell = bp->bar1 + map_idx * 0x80; + writel(DB_KEY_RX | rxr->rx_prod, rxr->rx_doorbell); + bp->grp_info[map_idx].rx_fw_ring_id = ring->fw_ring_id; + } + + if (bp->flags & BNXT_FLAG_AGG_RINGS) { + for (i = 0; i < bp->rx_nr_rings; i++) { + struct bnxt_rx_ring_info *rxr = &bp->rx_ring[i]; + struct bnxt_ring_struct *ring = + &rxr->rx_agg_ring_struct; + u32 grp_idx = rxr->bnapi->index; + u32 map_idx = grp_idx + bp->rx_nr_rings; + + rc = hwrm_ring_alloc_send_msg(bp, ring, + HWRM_RING_ALLOC_AGG, + map_idx, + INVALID_STATS_CTX_ID); + if (rc) + goto err_out; + + rxr->rx_agg_doorbell = bp->bar1 + map_idx * 0x80; + writel(DB_KEY_RX | rxr->rx_agg_prod, + rxr->rx_agg_doorbell); + bp->grp_info[grp_idx].agg_fw_ring_id = ring->fw_ring_id; + } + } +err_out: + return rc; +} + +static int hwrm_ring_free_send_msg(struct bnxt *bp, + struct bnxt_ring_struct *ring, + u32 ring_type, int cmpl_ring_id) +{ + int rc; + struct hwrm_ring_free_input req = {0}; + struct hwrm_ring_free_output *resp = bp->hwrm_cmd_resp_addr; + u16 error_code; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_RING_FREE, cmpl_ring_id, -1); + req.ring_type = ring_type; + req.ring_id = cpu_to_le16(ring->fw_ring_id); + + mutex_lock(&bp->hwrm_cmd_lock); + rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + error_code = le16_to_cpu(resp->error_code); + mutex_unlock(&bp->hwrm_cmd_lock); + + if (rc || error_code) { + switch (ring_type) { + case RING_FREE_REQ_RING_TYPE_L2_CMPL: + netdev_err(bp->dev, "hwrm_ring_free cp failed. rc:%d\n", + rc); + return rc; + case RING_FREE_REQ_RING_TYPE_RX: + netdev_err(bp->dev, "hwrm_ring_free rx failed. rc:%d\n", + rc); + return rc; + case RING_FREE_REQ_RING_TYPE_TX: + netdev_err(bp->dev, "hwrm_ring_free tx failed. rc:%d\n", + rc); + return rc; + default: + netdev_err(bp->dev, "Invalid ring\n"); + return -1; + } + } + return 0; +} + +static void bnxt_hwrm_ring_free(struct bnxt *bp, bool close_path) +{ + int i; + + if (!bp->bnapi) + return; + + for (i = 0; i < bp->tx_nr_rings; i++) { + struct bnxt_tx_ring_info *txr = &bp->tx_ring[i]; + struct bnxt_ring_struct *ring = &txr->tx_ring_struct; + u32 grp_idx = txr->bnapi->index; + u32 cmpl_ring_id = bp->grp_info[grp_idx].cp_fw_ring_id; + + if (ring->fw_ring_id != INVALID_HW_RING_ID) { + hwrm_ring_free_send_msg(bp, ring, + RING_FREE_REQ_RING_TYPE_TX, + close_path ? cmpl_ring_id : + INVALID_HW_RING_ID); + ring->fw_ring_id = INVALID_HW_RING_ID; + } + } + + for (i = 0; i < bp->rx_nr_rings; i++) { + struct bnxt_rx_ring_info *rxr = &bp->rx_ring[i]; + struct bnxt_ring_struct *ring = &rxr->rx_ring_struct; + u32 grp_idx = rxr->bnapi->index; + u32 cmpl_ring_id = bp->grp_info[grp_idx].cp_fw_ring_id; + + if (ring->fw_ring_id != INVALID_HW_RING_ID) { + hwrm_ring_free_send_msg(bp, ring, + RING_FREE_REQ_RING_TYPE_RX, + close_path ? cmpl_ring_id : + INVALID_HW_RING_ID); + ring->fw_ring_id = INVALID_HW_RING_ID; + bp->grp_info[grp_idx].rx_fw_ring_id = + INVALID_HW_RING_ID; + } + } + + for (i = 0; i < bp->rx_nr_rings; i++) { + struct bnxt_rx_ring_info *rxr = &bp->rx_ring[i]; + struct bnxt_ring_struct *ring = &rxr->rx_agg_ring_struct; + u32 grp_idx = rxr->bnapi->index; + u32 cmpl_ring_id = bp->grp_info[grp_idx].cp_fw_ring_id; + + if (ring->fw_ring_id != INVALID_HW_RING_ID) { + hwrm_ring_free_send_msg(bp, ring, + RING_FREE_REQ_RING_TYPE_RX, + close_path ? cmpl_ring_id : + INVALID_HW_RING_ID); + ring->fw_ring_id = INVALID_HW_RING_ID; + bp->grp_info[grp_idx].agg_fw_ring_id = + INVALID_HW_RING_ID; + } + } + + /* The completion rings are about to be freed. After that the + * IRQ doorbell will not work anymore. So we need to disable + * IRQ here. + */ + bnxt_disable_int_sync(bp); + + for (i = 0; i < bp->cp_nr_rings; i++) { + struct bnxt_napi *bnapi = bp->bnapi[i]; + struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring; + struct bnxt_ring_struct *ring = &cpr->cp_ring_struct; + + if (ring->fw_ring_id != INVALID_HW_RING_ID) { + hwrm_ring_free_send_msg(bp, ring, + RING_FREE_REQ_RING_TYPE_L2_CMPL, + INVALID_HW_RING_ID); + ring->fw_ring_id = INVALID_HW_RING_ID; + bp->grp_info[i].cp_fw_ring_id = INVALID_HW_RING_ID; + } + } +} + +/* Caller must hold bp->hwrm_cmd_lock */ +int __bnxt_hwrm_get_tx_rings(struct bnxt *bp, u16 fid, int *tx_rings) +{ + struct hwrm_func_qcfg_output *resp = bp->hwrm_cmd_resp_addr; + struct hwrm_func_qcfg_input req = {0}; + int rc; + + if (bp->hwrm_spec_code < 0x10601) + return 0; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_QCFG, -1, -1); + req.fid = cpu_to_le16(fid); + rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + if (!rc) + *tx_rings = le16_to_cpu(resp->alloc_tx_rings); + + return rc; +} + +static int bnxt_hwrm_reserve_tx_rings(struct bnxt *bp, int *tx_rings) +{ + struct hwrm_func_cfg_input req = {0}; + int rc; + + if (bp->hwrm_spec_code < 0x10601) + return 0; + + if (BNXT_VF(bp)) + return 0; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_CFG, -1, -1); + req.fid = cpu_to_le16(0xffff); + req.enables = cpu_to_le32(FUNC_CFG_REQ_ENABLES_NUM_TX_RINGS); + req.num_tx_rings = cpu_to_le16(*tx_rings); + rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + if (rc) + return rc; + + mutex_lock(&bp->hwrm_cmd_lock); + rc = __bnxt_hwrm_get_tx_rings(bp, 0xffff, tx_rings); + mutex_unlock(&bp->hwrm_cmd_lock); + return rc; +} + +static void bnxt_hwrm_set_coal_params(struct bnxt *bp, u32 max_bufs, + u32 buf_tmrs, u16 flags, + struct hwrm_ring_cmpl_ring_cfg_aggint_params_input *req) +{ + req->flags = cpu_to_le16(flags); + req->num_cmpl_dma_aggr = cpu_to_le16((u16)max_bufs); + req->num_cmpl_dma_aggr_during_int = cpu_to_le16(max_bufs >> 16); + req->cmpl_aggr_dma_tmr = cpu_to_le16((u16)buf_tmrs); + req->cmpl_aggr_dma_tmr_during_int = cpu_to_le16(buf_tmrs >> 16); + /* Minimum time between 2 interrupts set to buf_tmr x 2 */ + req->int_lat_tmr_min = cpu_to_le16((u16)buf_tmrs * 2); + req->int_lat_tmr_max = cpu_to_le16((u16)buf_tmrs * 4); + req->num_cmpl_aggr_int = cpu_to_le16((u16)max_bufs * 4); +} + +int bnxt_hwrm_set_coal(struct bnxt *bp) +{ + int i, rc = 0; + struct hwrm_ring_cmpl_ring_cfg_aggint_params_input req_rx = {0}, + req_tx = {0}, *req; + u16 max_buf, max_buf_irq; + u16 buf_tmr, buf_tmr_irq; + u32 flags; + + bnxt_hwrm_cmd_hdr_init(bp, &req_rx, + HWRM_RING_CMPL_RING_CFG_AGGINT_PARAMS, -1, -1); + bnxt_hwrm_cmd_hdr_init(bp, &req_tx, + HWRM_RING_CMPL_RING_CFG_AGGINT_PARAMS, -1, -1); + + /* Each rx completion (2 records) should be DMAed immediately. + * DMA 1/4 of the completion buffers at a time. + */ + max_buf = min_t(u16, bp->rx_coal_bufs / 4, 2); + /* max_buf must not be zero */ + max_buf = clamp_t(u16, max_buf, 1, 63); + max_buf_irq = clamp_t(u16, bp->rx_coal_bufs_irq, 1, 63); + buf_tmr = BNXT_USEC_TO_COAL_TIMER(bp->rx_coal_ticks); + /* buf timer set to 1/4 of interrupt timer */ + buf_tmr = max_t(u16, buf_tmr / 4, 1); + buf_tmr_irq = BNXT_USEC_TO_COAL_TIMER(bp->rx_coal_ticks_irq); + buf_tmr_irq = max_t(u16, buf_tmr_irq, 1); + + flags = RING_CMPL_RING_CFG_AGGINT_PARAMS_REQ_FLAGS_TIMER_RESET; + + /* RING_IDLE generates more IRQs for lower latency. Enable it only + * if coal_ticks is less than 25 us. + */ + if (bp->rx_coal_ticks < 25) + flags |= RING_CMPL_RING_CFG_AGGINT_PARAMS_REQ_FLAGS_RING_IDLE; + + bnxt_hwrm_set_coal_params(bp, max_buf_irq << 16 | max_buf, + buf_tmr_irq << 16 | buf_tmr, flags, &req_rx); + + /* max_buf must not be zero */ + max_buf = clamp_t(u16, bp->tx_coal_bufs, 1, 63); + max_buf_irq = clamp_t(u16, bp->tx_coal_bufs_irq, 1, 63); + buf_tmr = BNXT_USEC_TO_COAL_TIMER(bp->tx_coal_ticks); + /* buf timer set to 1/4 of interrupt timer */ + buf_tmr = max_t(u16, buf_tmr / 4, 1); + buf_tmr_irq = BNXT_USEC_TO_COAL_TIMER(bp->tx_coal_ticks_irq); + buf_tmr_irq = max_t(u16, buf_tmr_irq, 1); + + flags = RING_CMPL_RING_CFG_AGGINT_PARAMS_REQ_FLAGS_TIMER_RESET; + bnxt_hwrm_set_coal_params(bp, max_buf_irq << 16 | max_buf, + buf_tmr_irq << 16 | buf_tmr, flags, &req_tx); + + mutex_lock(&bp->hwrm_cmd_lock); + for (i = 0; i < bp->cp_nr_rings; i++) { + struct bnxt_napi *bnapi = bp->bnapi[i]; + + req = &req_rx; + if (!bnapi->rx_ring) + req = &req_tx; + req->ring_id = cpu_to_le16(bp->grp_info[i].cp_fw_ring_id); + + rc = _hwrm_send_message(bp, req, sizeof(*req), + HWRM_CMD_TIMEOUT); + if (rc) + break; + } + mutex_unlock(&bp->hwrm_cmd_lock); + return rc; +} + +static int bnxt_hwrm_stat_ctx_free(struct bnxt *bp) +{ + int rc = 0, i; + struct hwrm_stat_ctx_free_input req = {0}; + + if (!bp->bnapi) + return 0; + + if (BNXT_CHIP_TYPE_NITRO_A0(bp)) + return 0; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_STAT_CTX_FREE, -1, -1); + + mutex_lock(&bp->hwrm_cmd_lock); + for (i = 0; i < bp->cp_nr_rings; i++) { + struct bnxt_napi *bnapi = bp->bnapi[i]; + struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring; + + if (cpr->hw_stats_ctx_id != INVALID_STATS_CTX_ID) { + req.stat_ctx_id = cpu_to_le32(cpr->hw_stats_ctx_id); + + rc = _hwrm_send_message(bp, &req, sizeof(req), + HWRM_CMD_TIMEOUT); + if (rc) + break; + + cpr->hw_stats_ctx_id = INVALID_STATS_CTX_ID; + } + } + mutex_unlock(&bp->hwrm_cmd_lock); + return rc; +} + +static int bnxt_hwrm_stat_ctx_alloc(struct bnxt *bp) +{ + int rc = 0, i; + struct hwrm_stat_ctx_alloc_input req = {0}; + struct hwrm_stat_ctx_alloc_output *resp = bp->hwrm_cmd_resp_addr; + + if (BNXT_CHIP_TYPE_NITRO_A0(bp)) + return 0; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_STAT_CTX_ALLOC, -1, -1); + + req.update_period_ms = cpu_to_le32(bp->stats_coal_ticks / 1000); + + mutex_lock(&bp->hwrm_cmd_lock); + for (i = 0; i < bp->cp_nr_rings; i++) { + struct bnxt_napi *bnapi = bp->bnapi[i]; + struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring; + + req.stats_dma_addr = cpu_to_le64(cpr->hw_stats_map); + + rc = _hwrm_send_message(bp, &req, sizeof(req), + HWRM_CMD_TIMEOUT); + if (rc) + break; + + cpr->hw_stats_ctx_id = le32_to_cpu(resp->stat_ctx_id); + + bp->grp_info[i].fw_stats_ctx = cpr->hw_stats_ctx_id; + } + mutex_unlock(&bp->hwrm_cmd_lock); + return rc; +} + +static int bnxt_hwrm_func_qcfg(struct bnxt *bp) +{ + struct hwrm_func_qcfg_input req = {0}; + struct hwrm_func_qcfg_output *resp = bp->hwrm_cmd_resp_addr; + int rc; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_QCFG, -1, -1); + req.fid = cpu_to_le16(0xffff); + mutex_lock(&bp->hwrm_cmd_lock); + rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + if (rc) + goto func_qcfg_exit; + +#ifdef CONFIG_BNXT_BPO_SRIOV + if (BNXT_VF(bp)) { + struct bnxt_vf_info *vf = &bp->vf; + + vf->vlan = le16_to_cpu(resp->vlan) & VLAN_VID_MASK; + } +#endif + if (BNXT_PF(bp) && (le16_to_cpu(resp->flags) & + (FUNC_QCFG_RESP_FLAGS_FW_DCBX_AGENT_ENABLED | + FUNC_QCFG_RESP_FLAGS_FW_LLDP_AGENT_ENABLED))) + bp->flags |= BNXT_FLAG_FW_LLDP_AGENT; + + switch (resp->port_partition_type) { + case FUNC_QCFG_RESP_PORT_PARTITION_TYPE_NPAR1_0: + case FUNC_QCFG_RESP_PORT_PARTITION_TYPE_NPAR1_5: + case FUNC_QCFG_RESP_PORT_PARTITION_TYPE_NPAR2_0: + bp->port_partition_type = resp->port_partition_type; + break; + } + if (bp->hwrm_spec_code < 0x10707 || + resp->evb_mode == FUNC_QCFG_RESP_EVB_MODE_VEB) + bp->br_mode = BRIDGE_MODE_VEB; + else if (resp->evb_mode == FUNC_QCFG_RESP_EVB_MODE_VEPA) + bp->br_mode = BRIDGE_MODE_VEPA; + else + bp->br_mode = BRIDGE_MODE_UNDEF; + +func_qcfg_exit: + mutex_unlock(&bp->hwrm_cmd_lock); + return rc; +} + +/* bp->hwrm_cmd_lock already held. */ +static int __bnxt_hwrm_ptp_qcfg(struct bnxt *bp) +{ + struct hwrm_port_mac_ptp_qcfg_output *resp = bp->hwrm_cmd_resp_addr; + struct hwrm_port_mac_ptp_qcfg_input req = {0}; + struct bnxt_ptp_cfg *ptp = bp->ptp_cfg; + int rc; + + if (bp->hwrm_spec_code < 0x10800 || ptp) + return 0; + + req.port_id = cpu_to_le16(bp->pf.port_id); + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_PORT_MAC_PTP_QCFG, -1, -1); + rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + if (rc) + return -EIO; + + if (!(resp->flags & PORT_MAC_PTP_QCFG_RESP_FLAGS_DIRECT_ACCESS)) + return 0; + + ptp = kzalloc(sizeof(*ptp), GFP_KERNEL); + if (!ptp) + return -ENOMEM; + + ptp->rx_regs[BNXT_PTP_RX_TS_L] = le32_to_cpu(resp->rx_ts_reg_off_lower); + ptp->rx_regs[BNXT_PTP_RX_TS_H] = le32_to_cpu(resp->rx_ts_reg_off_upper); + ptp->rx_regs[BNXT_PTP_RX_SEQ] = le32_to_cpu(resp->rx_ts_reg_off_seq_id); + ptp->rx_regs[BNXT_PTP_RX_FIFO] = le32_to_cpu(resp->rx_ts_reg_off_fifo); + ptp->rx_regs[BNXT_PTP_RX_FIFO_ADV] = + le32_to_cpu(resp->rx_ts_reg_off_fifo_adv); + ptp->tx_regs[BNXT_PTP_TX_TS_L] = le32_to_cpu(resp->tx_ts_reg_off_lower); + ptp->tx_regs[BNXT_PTP_TX_TS_H] = le32_to_cpu(resp->tx_ts_reg_off_upper); + ptp->tx_regs[BNXT_PTP_TX_SEQ] = le32_to_cpu(resp->tx_ts_reg_off_seq_id); + ptp->tx_regs[BNXT_PTP_TX_FIFO] = le32_to_cpu(resp->tx_ts_reg_off_fifo); + + ptp->bp = bp; + bp->ptp_cfg = ptp; + + return 0; +} + +int bnxt_hwrm_func_qcaps(struct bnxt *bp) +{ + int rc = 0; + struct hwrm_func_qcaps_input req = {0}; + struct hwrm_func_qcaps_output *resp = bp->hwrm_cmd_resp_addr; + u32 flags; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_QCAPS, -1, -1); + req.fid = cpu_to_le16(0xffff); + + mutex_lock(&bp->hwrm_cmd_lock); + rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + if (rc) + goto hwrm_func_qcaps_exit; + + flags = le32_to_cpu(resp->flags); + if (flags & FUNC_QCAPS_RESP_FLAGS_ROCE_V1_SUPPORTED) + bp->flags |= BNXT_FLAG_ROCEV1_CAP; + if (flags & FUNC_QCAPS_RESP_FLAGS_ROCE_V2_SUPPORTED) + bp->flags |= BNXT_FLAG_ROCEV2_CAP; + + bp->tx_push_thresh = 0; + if (flags & FUNC_QCAPS_RESP_FLAGS_PUSH_MODE_SUPPORTED) + bp->tx_push_thresh = BNXT_TX_PUSH_THRESH; + + if (BNXT_PF(bp)) { + struct bnxt_pf_info *pf = &bp->pf; + + pf->fw_fid = le16_to_cpu(resp->fid); + pf->port_id = le16_to_cpu(resp->port_id); +#if defined(HAVE_DEV_PORT) && !defined(RH_KABI_FILL_HOLE) && !defined(NET_DEVICE_EXTENDED_SIZE) + bp->dev->dev_port = pf->port_id; +#endif + memcpy(pf->mac_addr, resp->mac_address, ETH_ALEN); + memcpy(bp->dev->dev_addr, pf->mac_addr, ETH_ALEN); + pf->max_rsscos_ctxs = le16_to_cpu(resp->max_rsscos_ctx); + pf->max_cp_rings = le16_to_cpu(resp->max_cmpl_rings); + pf->max_tx_rings = le16_to_cpu(resp->max_tx_rings); + pf->max_rx_rings = le16_to_cpu(resp->max_rx_rings); + pf->max_hw_ring_grps = le32_to_cpu(resp->max_hw_ring_grps); + if (!pf->max_hw_ring_grps) + pf->max_hw_ring_grps = pf->max_tx_rings; + pf->max_l2_ctxs = le16_to_cpu(resp->max_l2_ctxs); + pf->max_vnics = le16_to_cpu(resp->max_vnics); + pf->max_stat_ctxs = le16_to_cpu(resp->max_stat_ctx); + pf->first_vf_id = le16_to_cpu(resp->first_vf_id); + pf->max_vfs = le16_to_cpu(resp->max_vfs); + pf->max_encap_records = le32_to_cpu(resp->max_encap_records); + pf->max_decap_records = le32_to_cpu(resp->max_decap_records); + pf->max_tx_em_flows = le32_to_cpu(resp->max_tx_em_flows); + pf->max_tx_wm_flows = le32_to_cpu(resp->max_tx_wm_flows); + pf->max_rx_em_flows = le32_to_cpu(resp->max_rx_em_flows); + pf->max_rx_wm_flows = le32_to_cpu(resp->max_rx_wm_flows); + if (flags & FUNC_QCAPS_RESP_FLAGS_WOL_MAGICPKT_SUPPORTED) + bp->flags |= BNXT_FLAG_WOL_CAP; + if (flags & FUNC_QCAPS_RESP_FLAGS_PTP_SUPPORTED) + __bnxt_hwrm_ptp_qcfg(bp); + } else { +#ifdef CONFIG_BNXT_BPO_SRIOV + struct bnxt_vf_info *vf = &bp->vf; + + vf->fw_fid = le16_to_cpu(resp->fid); + + vf->max_rsscos_ctxs = le16_to_cpu(resp->max_rsscos_ctx); + vf->max_cp_rings = le16_to_cpu(resp->max_cmpl_rings); + vf->max_tx_rings = le16_to_cpu(resp->max_tx_rings); + vf->max_rx_rings = le16_to_cpu(resp->max_rx_rings); + vf->max_hw_ring_grps = le32_to_cpu(resp->max_hw_ring_grps); + if (!vf->max_hw_ring_grps) + vf->max_hw_ring_grps = vf->max_tx_rings; + vf->max_l2_ctxs = le16_to_cpu(resp->max_l2_ctxs); + vf->max_vnics = le16_to_cpu(resp->max_vnics); + vf->max_stat_ctxs = le16_to_cpu(resp->max_stat_ctx); + + memcpy(vf->mac_addr, resp->mac_address, ETH_ALEN); + mutex_unlock(&bp->hwrm_cmd_lock); + + if (is_valid_ether_addr(vf->mac_addr)) { + /* overwrite netdev dev_adr with admin VF MAC */ + memcpy(bp->dev->dev_addr, vf->mac_addr, ETH_ALEN); + } else { + eth_hw_addr_random(bp->dev); + rc = bnxt_approve_mac(bp, bp->dev->dev_addr); + } + return rc; +#endif + } + +hwrm_func_qcaps_exit: + mutex_unlock(&bp->hwrm_cmd_lock); + return rc; +} + +static int bnxt_hwrm_func_reset(struct bnxt *bp) +{ + struct hwrm_func_reset_input req = {0}; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_RESET, -1, -1); + req.enables = 0; + + return hwrm_send_message(bp, &req, sizeof(req), HWRM_RESET_TIMEOUT); +} + +static int bnxt_hwrm_queue_qportcfg(struct bnxt *bp) +{ + int rc = 0; + struct hwrm_queue_qportcfg_input req = {0}; + struct hwrm_queue_qportcfg_output *resp = bp->hwrm_cmd_resp_addr; + u8 i, *qptr; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_QUEUE_QPORTCFG, -1, -1); + + mutex_lock(&bp->hwrm_cmd_lock); + rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + if (rc) + goto qportcfg_exit; + + if (!resp->max_configurable_queues) { + rc = -EINVAL; + goto qportcfg_exit; + } + bp->max_tc = resp->max_configurable_queues; + bp->max_lltc = resp->max_configurable_lossless_queues; + if (bp->max_tc > BNXT_MAX_QUEUE) + bp->max_tc = BNXT_MAX_QUEUE; + + if (resp->queue_cfg_info & QUEUE_QPORTCFG_RESP_QUEUE_CFG_INFO_ASYM_CFG) + bp->max_tc = 1; + + if (bp->max_lltc > bp->max_tc) + bp->max_lltc = bp->max_tc; + + qptr = &resp->queue_id0; + for (i = 0; i < bp->max_tc; i++) { + bp->q_info[i].queue_id = *qptr++; + bp->q_info[i].queue_profile = *qptr++; + } + +qportcfg_exit: + mutex_unlock(&bp->hwrm_cmd_lock); + return rc; +} + +static int bnxt_hwrm_ver_get(struct bnxt *bp) +{ + int rc; + struct hwrm_ver_get_input req = {0}; + struct hwrm_ver_get_output *resp = bp->hwrm_cmd_resp_addr; + + bp->hwrm_max_req_len = HWRM_MAX_REQ_LEN; + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_VER_GET, -1, -1); + req.hwrm_intf_maj = HWRM_VERSION_MAJOR; + req.hwrm_intf_min = HWRM_VERSION_MINOR; + req.hwrm_intf_upd = HWRM_VERSION_UPDATE; + mutex_lock(&bp->hwrm_cmd_lock); + rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + if (rc) + goto hwrm_ver_get_exit; + + memcpy(&bp->ver_resp, resp, sizeof(struct hwrm_ver_get_output)); + + bp->hwrm_spec_code = resp->hwrm_intf_maj << 16 | + resp->hwrm_intf_min << 8 | resp->hwrm_intf_upd; + if (resp->hwrm_intf_maj < 1) { + netdev_warn(bp->dev, "HWRM interface %d.%d.%d is older than 1.0.0.\n", + resp->hwrm_intf_maj, resp->hwrm_intf_min, + resp->hwrm_intf_upd); + netdev_warn(bp->dev, "Please update firmware with HWRM interface 1.0.0 or newer.\n"); + } + + snprintf(bp->fw_ver_str, BC_HWRM_STR_LEN, "%d.%d.%d/%d.%d.%d", + resp->hwrm_fw_maj, resp->hwrm_fw_min, resp->hwrm_fw_bld, + resp->hwrm_intf_maj, resp->hwrm_intf_min, resp->hwrm_intf_upd); + + bp->hwrm_cmd_timeout = le16_to_cpu(resp->def_req_timeout); + if (!bp->hwrm_cmd_timeout) + bp->hwrm_cmd_timeout = DFLT_HWRM_CMD_TIMEOUT; + + if (resp->hwrm_intf_maj >= 1) + bp->hwrm_max_req_len = le16_to_cpu(resp->max_req_win_len); + + bp->chip_num = le16_to_cpu(resp->chip_num); + if (bp->chip_num == CHIP_NUM_58700 && !resp->chip_rev && + !resp->chip_metal) + bp->flags |= BNXT_FLAG_CHIP_NITRO_A0; + +hwrm_ver_get_exit: + mutex_unlock(&bp->hwrm_cmd_lock); + return rc; +} + +int bnxt_hwrm_fw_set_time(struct bnxt *bp) +{ +#if defined(CONFIG_RTC_LIB) || defined(CONFIG_RTC_LIB_MODULE) + struct hwrm_fw_set_time_input req = {0}; + struct rtc_time tm; + struct timeval tv; + + if (bp->hwrm_spec_code < 0x10400) + return -EOPNOTSUPP; + + do_gettimeofday(&tv); + rtc_time_to_tm(tv.tv_sec, &tm); + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FW_SET_TIME, -1, -1); + req.year = cpu_to_le16(1900 + tm.tm_year); + req.month = 1 + tm.tm_mon; + req.day = tm.tm_mday; + req.hour = tm.tm_hour; + req.minute = tm.tm_min; + req.second = tm.tm_sec; + return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); +#else + return -EOPNOTSUPP; +#endif +} + +static int bnxt_hwrm_port_qstats(struct bnxt *bp) +{ + int rc; + struct bnxt_pf_info *pf = &bp->pf; + struct hwrm_port_qstats_input req = {0}; + + if (!(bp->flags & BNXT_FLAG_PORT_STATS)) + return 0; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_PORT_QSTATS, -1, -1); + req.port_id = cpu_to_le16(pf->port_id); + req.tx_stat_host_addr = cpu_to_le64(bp->hw_tx_port_stats_map); + req.rx_stat_host_addr = cpu_to_le64(bp->hw_rx_port_stats_map); + rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + return rc; +} + +static void bnxt_hwrm_free_tunnel_ports(struct bnxt *bp) +{ + if (bp->vxlan_port_cnt) { + bnxt_hwrm_tunnel_dst_port_free( + bp, TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_VXLAN); + } + bp->vxlan_port_cnt = 0; + if (bp->nge_port_cnt) { + bnxt_hwrm_tunnel_dst_port_free( + bp, TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_GENEVE); + } + bp->nge_port_cnt = 0; +} + +/* TODO: remove this once min aggregate packet size workaround is removed */ +static int bnxt_dbg_hwrm_wr_reg(struct bnxt *, u32, u32); +static int bnxt_dbg_hwrm_rd_reg(struct bnxt *, u32, u16, u32 *); + +static int bnxt_set_tpa(struct bnxt *bp, bool set_tpa) +{ + int rc, i; + u32 tpa_flags = 0; + + if (set_tpa) + tpa_flags = bp->flags & BNXT_FLAG_TPA; + for (i = 0; i < bp->nr_vnics; i++) { + rc = bnxt_hwrm_vnic_set_tpa(bp, i, tpa_flags); + if (rc) { + netdev_err(bp->dev, "hwrm vnic set tpa failure rc for vnic %d: %x\n", + i, rc); + return rc; + } + } + return 0; +} + +static void bnxt_hwrm_clear_vnic_rss(struct bnxt *bp) +{ + int i; + + for (i = 0; i < bp->nr_vnics; i++) + bnxt_hwrm_vnic_set_rss(bp, i, false); +} + +static void bnxt_hwrm_resource_free(struct bnxt *bp, bool close_path, + bool irq_re_init) +{ + if (bp->vnic_info) { + bnxt_hwrm_clear_vnic_filter(bp); + /* clear all RSS setting before free vnic ctx */ + bnxt_hwrm_clear_vnic_rss(bp); + bnxt_hwrm_vnic_ctx_free(bp); + /* before free the vnic, undo the vnic tpa settings */ + if (bp->flags & BNXT_FLAG_TPA) + bnxt_set_tpa(bp, false); + bnxt_hwrm_vnic_free(bp); + } + bnxt_hwrm_ring_free(bp, close_path); + bnxt_hwrm_ring_grp_free(bp); + if (irq_re_init) { + bnxt_hwrm_stat_ctx_free(bp); + bnxt_hwrm_free_tunnel_ports(bp); + } +} + +#ifdef HAVE_NDO_BRIDGE_GETLINK +static int bnxt_hwrm_set_br_mode(struct bnxt *bp, u16 br_mode) +{ + struct hwrm_func_cfg_input req = {0}; + int rc; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_CFG, -1, -1); + req.fid = cpu_to_le16(0xffff); + req.enables = cpu_to_le32(FUNC_CFG_REQ_ENABLES_EVB_MODE); + if (br_mode == BRIDGE_MODE_VEB) + req.evb_mode = FUNC_CFG_REQ_EVB_MODE_VEB; + else if (br_mode == BRIDGE_MODE_VEPA) + req.evb_mode = FUNC_CFG_REQ_EVB_MODE_VEPA; + else + return -EINVAL; + rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + if (rc) + rc = -EIO; + return rc; +} +#endif + +static int bnxt_setup_vnic(struct bnxt *bp, u16 vnic_id) +{ + struct bnxt_vnic_info *vnic = &bp->vnic_info[vnic_id]; + int rc; + + if (vnic->flags & BNXT_VNIC_RFS_NEW_RSS_FLAG) + goto skip_rss_ctx; + + /* allocate context for vnic */ + rc = bnxt_hwrm_vnic_ctx_alloc(bp, vnic_id, 0); + if (rc) { + netdev_err(bp->dev, "hwrm vnic %d alloc failure rc: %x\n", + vnic_id, rc); + goto vnic_setup_err; + } + bp->rsscos_nr_ctxs++; + + if (BNXT_CHIP_TYPE_NITRO_A0(bp)) { + rc = bnxt_hwrm_vnic_ctx_alloc(bp, vnic_id, 1); + if (rc) { + netdev_err(bp->dev, "hwrm vnic %d cos ctx alloc failure rc: %x\n", + vnic_id, rc); + goto vnic_setup_err; + } + bp->rsscos_nr_ctxs++; + } + +skip_rss_ctx: + /* configure default vnic, ring grp */ + rc = bnxt_hwrm_vnic_cfg(bp, vnic_id); + if (rc) { + netdev_err(bp->dev, "hwrm vnic %d cfg failure rc: %x\n", + vnic_id, rc); + goto vnic_setup_err; + } + + /* Enable RSS hashing on vnic */ + rc = bnxt_hwrm_vnic_set_rss(bp, vnic_id, true); + if (rc) { + netdev_err(bp->dev, "hwrm vnic %d set rss failure rc: %x\n", + vnic_id, rc); + goto vnic_setup_err; + } + + if (bp->flags & BNXT_FLAG_AGG_RINGS) { + rc = bnxt_hwrm_vnic_set_hds(bp, vnic_id); + if (rc) { + netdev_err(bp->dev, "hwrm vnic %d set hds failure rc: %x\n", + vnic_id, rc); + } + } + +vnic_setup_err: + return rc; +} + +static int bnxt_alloc_rfs_vnics(struct bnxt *bp) +{ +#ifdef CONFIG_RFS_ACCEL + int i, rc = 0; + + for (i = 0; i < bp->rx_nr_rings; i++) { + struct bnxt_vnic_info *vnic; + u16 vnic_id = i + 1; + u16 ring_id = i; + + if (vnic_id >= bp->nr_vnics) + break; + + vnic = &bp->vnic_info[vnic_id]; + vnic->flags |= BNXT_VNIC_RFS_FLAG; + if (bp->flags & BNXT_FLAG_NEW_RSS_CAP) + vnic->flags |= BNXT_VNIC_RFS_NEW_RSS_FLAG; + rc = bnxt_hwrm_vnic_alloc(bp, vnic_id, ring_id, 1); + if (rc) { + netdev_err(bp->dev, "hwrm vnic %d alloc failure rc: %x\n", + vnic_id, rc); + break; + } + rc = bnxt_setup_vnic(bp, vnic_id); + if (rc) + break; + } + return rc; +#else + return 0; +#endif +} + +/* Allow PF and VF with default VLAN to be in promiscuous mode */ +static bool bnxt_promisc_ok(struct bnxt *bp) +{ +#ifdef CONFIG_BNXT_BPO_SRIOV + if (BNXT_VF(bp) && !bp->vf.vlan) + return false; +#endif + return true; +} + +static int bnxt_setup_nitroa0_vnic(struct bnxt *bp) +{ + unsigned int rc = 0; + + rc = bnxt_hwrm_vnic_alloc(bp, 1, bp->rx_nr_rings - 1, 1); + if (rc) { + netdev_err(bp->dev, "Cannot allocate special vnic for NS2 A0: %x\n", + rc); + return rc; + } + + rc = bnxt_hwrm_vnic_cfg(bp, 1); + if (rc) { + netdev_err(bp->dev, "Cannot allocate special vnic for NS2 A0: %x\n", + rc); + return rc; + } + return rc; +} + +static int bnxt_cfg_rx_mode(struct bnxt *); +static bool bnxt_mc_list_updated(struct bnxt *, u32 *); + +static int bnxt_init_chip(struct bnxt *bp, bool irq_re_init) +{ + struct bnxt_vnic_info *vnic = &bp->vnic_info[0]; + int rc = 0; + unsigned int rx_nr_rings = bp->rx_nr_rings; + + if (irq_re_init) { + rc = bnxt_hwrm_stat_ctx_alloc(bp); + if (rc) { + netdev_err(bp->dev, "hwrm stat ctx alloc failure rc: %x\n", + rc); + goto err_out; + } + } + + rc = bnxt_hwrm_ring_alloc(bp); + if (rc) { + netdev_err(bp->dev, "hwrm ring alloc failure rc: %x\n", rc); + goto err_out; + } + + rc = bnxt_hwrm_ring_grp_alloc(bp); + if (rc) { + netdev_err(bp->dev, "hwrm_ring_grp alloc failure: %x\n", rc); + goto err_out; + } + + if (BNXT_CHIP_TYPE_NITRO_A0(bp)) + rx_nr_rings--; + + /* default vnic 0 */ + rc = bnxt_hwrm_vnic_alloc(bp, 0, 0, rx_nr_rings); + if (rc) { + netdev_err(bp->dev, "hwrm vnic alloc failure rc: %x\n", rc); + goto err_out; + } + + rc = bnxt_setup_vnic(bp, 0); + if (rc) + goto err_out; + + if (bp->flags & BNXT_FLAG_RFS) { + rc = bnxt_alloc_rfs_vnics(bp); + if (rc) + goto err_out; + } + + if (bp->flags & BNXT_FLAG_TPA) { + rc = bnxt_set_tpa(bp, true); + if (rc) + goto err_out; + } + + if (BNXT_VF(bp)) + bnxt_update_vf_mac(bp); + + /* Filter for default vnic 0 */ + rc = bnxt_hwrm_set_vnic_filter(bp, 0, 0, bp->dev->dev_addr); + if (rc) { + netdev_err(bp->dev, "HWRM vnic filter failure rc: %x\n", rc); + goto err_out; + } + vnic->uc_filter_count = 1; + + vnic->rx_mask = CFA_L2_SET_RX_MASK_REQ_MASK_BCAST; + + if ((bp->dev->flags & IFF_PROMISC) && bnxt_promisc_ok(bp)) + vnic->rx_mask |= CFA_L2_SET_RX_MASK_REQ_MASK_PROMISCUOUS; + + if (bp->dev->flags & IFF_ALLMULTI) { + vnic->rx_mask |= CFA_L2_SET_RX_MASK_REQ_MASK_ALL_MCAST; + vnic->mc_list_count = 0; + } else { + u32 mask = 0; + + bnxt_mc_list_updated(bp, &mask); + vnic->rx_mask |= mask; + } + + rc = bnxt_cfg_rx_mode(bp); + if (rc) + goto err_out; + + rc = bnxt_hwrm_set_coal(bp); + if (rc) + netdev_warn(bp->dev, "HWRM set coalescing failure rc: %x\n", + rc); + + if (BNXT_CHIP_TYPE_NITRO_A0(bp)) { + rc = bnxt_setup_nitroa0_vnic(bp); + if (rc) + netdev_err(bp->dev, "Special vnic setup failure for NS2 A0 rc: %x\n", + rc); + } + + if (BNXT_VF(bp)) { + bnxt_hwrm_func_qcfg(bp); + netdev_update_features(bp->dev); + } + + return 0; + +err_out: + bnxt_hwrm_resource_free(bp, 0, true); + + return rc; +} + +static int bnxt_shutdown_nic(struct bnxt *bp, bool irq_re_init) +{ + bnxt_hwrm_resource_free(bp, 1, irq_re_init); + return 0; +} + +static int bnxt_init_nic(struct bnxt *bp, bool irq_re_init) +{ + bnxt_init_cp_rings(bp); + bnxt_init_rx_rings(bp); + bnxt_init_tx_rings(bp); + bnxt_init_ring_grps(bp, irq_re_init); + bnxt_init_vnics(bp); + + return bnxt_init_chip(bp, irq_re_init); +} + +static int bnxt_set_real_num_queues(struct bnxt *bp) +{ + int rc; + struct net_device *dev = bp->dev; + +#ifdef VOID_NETIF_SET_NUM_TX + netif_set_real_num_tx_queues(dev, bp->tx_nr_rings - + bp->tx_nr_rings_xdp); +#else + rc = netif_set_real_num_tx_queues(dev, bp->tx_nr_rings - + bp->tx_nr_rings_xdp); + if (rc) + return rc; +#endif + rc = netif_set_real_num_rx_queues(dev, bp->rx_nr_rings); + if (rc) + return rc; + +#ifdef CONFIG_RFS_ACCEL + if (bp->flags & BNXT_FLAG_RFS) + dev->rx_cpu_rmap = alloc_irq_cpu_rmap(bp->rx_nr_rings); +#endif + + return rc; +} + +static int bnxt_trim_rings(struct bnxt *bp, int *rx, int *tx, int max, + bool shared) +{ + int _rx = *rx, _tx = *tx; + + if (shared) { + *rx = min_t(int, _rx, max); + *tx = min_t(int, _tx, max); + } else { + if (max < 2) + return -ENOMEM; + + while (_rx + _tx > max) { + if (_rx > _tx && _rx > 1) + _rx--; + else if (_tx > 1) + _tx--; + } + *rx = _rx; + *tx = _tx; + } + return 0; +} + +static void bnxt_setup_msix(struct bnxt *bp) +{ + const int len = sizeof(bp->irq_tbl[0].name); + struct net_device *dev = bp->dev; + int tcs, i; + + tcs = netdev_get_num_tc(dev); + if (tcs > 1) { + int i, off, count; + + for (i = 0; i < tcs; i++) { + count = bp->tx_nr_rings_per_tc; + off = i * count; + netdev_set_tc_queue(dev, i, count, off); + } + } + + for (i = 0; i < bp->cp_nr_rings; i++) { + char *attr; + + if (bp->flags & BNXT_FLAG_SHARED_RINGS) + attr = "TxRx"; + else if (i < bp->rx_nr_rings) + attr = "rx"; + else + attr = "tx"; + + snprintf(bp->irq_tbl[i].name, len, "%s-%s-%d", dev->name, attr, + i); + bp->irq_tbl[i].handler = bnxt_msix; + } +} + +static void bnxt_setup_inta(struct bnxt *bp) +{ + const int len = sizeof(bp->irq_tbl[0].name); + + if (netdev_get_num_tc(bp->dev)) + netdev_reset_tc(bp->dev); + + snprintf(bp->irq_tbl[0].name, len, "%s-%s-%d", bp->dev->name, "TxRx", + 0); + bp->irq_tbl[0].handler = bnxt_inta; +} + +static int bnxt_setup_int_mode(struct bnxt *bp) +{ + int rc; + + if (bp->flags & BNXT_FLAG_USING_MSIX) + bnxt_setup_msix(bp); + else + bnxt_setup_inta(bp); + + rc = bnxt_set_real_num_queues(bp); + return rc; +} + +#ifdef CONFIG_RFS_ACCEL +static unsigned int bnxt_get_max_func_rss_ctxs(struct bnxt *bp) +{ +#if defined(CONFIG_BNXT_BPO_SRIOV) + if (BNXT_VF(bp)) + return bp->vf.max_rsscos_ctxs; +#endif + return bp->pf.max_rsscos_ctxs; +} + +static unsigned int bnxt_get_max_func_vnics(struct bnxt *bp) +{ +#if defined(CONFIG_BNXT_BPO_SRIOV) + if (BNXT_VF(bp)) + return bp->vf.max_vnics; +#endif + return bp->pf.max_vnics; +} +#endif + +unsigned int bnxt_get_max_func_stat_ctxs(struct bnxt *bp) +{ +#if defined(CONFIG_BNXT_BPO_SRIOV) + if (BNXT_VF(bp)) + return bp->vf.max_stat_ctxs; +#endif + return bp->pf.max_stat_ctxs; +} + +void bnxt_set_max_func_stat_ctxs(struct bnxt *bp, unsigned int max) +{ +#if defined(CONFIG_BNXT_BPO_SRIOV) + if (BNXT_VF(bp)) + bp->vf.max_stat_ctxs = max; + else +#endif + bp->pf.max_stat_ctxs = max; +} + +unsigned int bnxt_get_max_func_cp_rings(struct bnxt *bp) +{ +#if defined(CONFIG_BNXT_BPO_SRIOV) + if (BNXT_VF(bp)) + return bp->vf.max_cp_rings; +#endif + return bp->pf.max_cp_rings; +} + +void bnxt_set_max_func_cp_rings(struct bnxt *bp, unsigned int max) +{ +#if defined(CONFIG_BNXT_BPO_SRIOV) + if (BNXT_VF(bp)) + bp->vf.max_cp_rings = max; + else +#endif + bp->pf.max_cp_rings = max; +} + +static unsigned int bnxt_get_max_func_irqs(struct bnxt *bp) +{ +#if defined(CONFIG_BNXT_BPO_SRIOV) + if (BNXT_VF(bp)) + return min_t(unsigned int, bp->vf.max_irqs, + bp->vf.max_cp_rings); +#endif + return min_t(unsigned int, bp->pf.max_irqs, bp->pf.max_cp_rings); +} + +void bnxt_set_max_func_irqs(struct bnxt *bp, unsigned int max_irqs) +{ +#if defined(CONFIG_BNXT_BPO_SRIOV) + if (BNXT_VF(bp)) + bp->vf.max_irqs = max_irqs; + else +#endif + bp->pf.max_irqs = max_irqs; +} + +static int bnxt_init_msix(struct bnxt *bp) +{ + int i, total_vecs, rc = 0, min = 1; + struct msix_entry *msix_ent; + + total_vecs = bnxt_get_max_func_irqs(bp); + msix_ent = kcalloc(total_vecs, sizeof(struct msix_entry), GFP_KERNEL); + if (!msix_ent) + return -ENOMEM; + + for (i = 0; i < total_vecs; i++) { + msix_ent[i].entry = i; + msix_ent[i].vector = 0; + } + + if (!(bp->flags & BNXT_FLAG_SHARED_RINGS)) + min = 2; + +#ifdef HAVE_MSIX_RANGE + total_vecs = pci_enable_msix_range(bp->pdev, msix_ent, min, total_vecs); +#else + while (total_vecs >= min) { + rc = pci_enable_msix(bp->pdev, msix_ent, total_vecs); + if (!rc) + break; + total_vecs = rc; + } +#endif + if (total_vecs < 0) { + rc = -ENODEV; + goto msix_setup_exit; + } + + bp->irq_tbl = kcalloc(total_vecs, sizeof(struct bnxt_irq), GFP_KERNEL); + if (bp->irq_tbl) { + for (i = 0; i < total_vecs; i++) + bp->irq_tbl[i].vector = msix_ent[i].vector; + + bp->total_irqs = total_vecs; + /* Trim rings based upon num of vectors allocated */ + rc = bnxt_trim_rings(bp, &bp->rx_nr_rings, &bp->tx_nr_rings, + total_vecs, min == 1); + if (rc) + goto msix_setup_exit; + + bp->tx_nr_rings_per_tc = bp->tx_nr_rings; + bp->cp_nr_rings = (min == 1) ? + max_t(int, bp->tx_nr_rings, bp->rx_nr_rings) : + bp->tx_nr_rings + bp->rx_nr_rings; + + } else { + rc = -ENOMEM; + goto msix_setup_exit; + } + bp->flags |= BNXT_FLAG_USING_MSIX; + kfree(msix_ent); + return 0; + +msix_setup_exit: + netdev_err(bp->dev, "bnxt_init_msix err: %x\n", rc); + kfree(bp->irq_tbl); + bp->irq_tbl = NULL; + pci_disable_msix(bp->pdev); + kfree(msix_ent); + return rc; +} + +static int bnxt_init_inta(struct bnxt *bp) +{ + bp->irq_tbl = kcalloc(1, sizeof(struct bnxt_irq), GFP_KERNEL); + if (!bp->irq_tbl) + return -ENOMEM; + + bp->total_irqs = 1; + bp->rx_nr_rings = 1; + bp->tx_nr_rings = 1; + bp->cp_nr_rings = 1; + bp->tx_nr_rings_per_tc = bp->tx_nr_rings; + bp->flags |= BNXT_FLAG_SHARED_RINGS; + bp->irq_tbl[0].vector = bp->pdev->irq; + return 0; +} + +static int bnxt_init_int_mode(struct bnxt *bp) +{ + int rc = 0; + + if (bp->flags & BNXT_FLAG_MSIX_CAP) + rc = bnxt_init_msix(bp); + + if (!(bp->flags & BNXT_FLAG_USING_MSIX) && BNXT_PF(bp)) { + /* fallback to INTA */ + rc = bnxt_init_inta(bp); + } + return rc; +} + +static void bnxt_clear_int_mode(struct bnxt *bp) +{ + if (bp->flags & BNXT_FLAG_USING_MSIX) + pci_disable_msix(bp->pdev); + + kfree(bp->irq_tbl); + bp->irq_tbl = NULL; + bp->flags &= ~BNXT_FLAG_USING_MSIX; +} + +static void bnxt_free_irq(struct bnxt *bp) +{ + struct bnxt_irq *irq; + int i; + +#ifdef CONFIG_RFS_ACCEL + free_irq_cpu_rmap(bp->dev->rx_cpu_rmap); + bp->dev->rx_cpu_rmap = NULL; +#endif + if (!bp->irq_tbl) + return; + + for (i = 0; i < bp->cp_nr_rings; i++) { + irq = &bp->irq_tbl[i]; + if (irq->requested) + free_irq(irq->vector, bp->bnapi[i]); + irq->requested = 0; + } +} + +static int bnxt_request_irq(struct bnxt *bp) +{ + int i, j, rc = 0; + unsigned long flags = 0; +#ifdef CONFIG_RFS_ACCEL + struct cpu_rmap *rmap = bp->dev->rx_cpu_rmap; +#endif + + if (!(bp->flags & BNXT_FLAG_USING_MSIX)) + flags = IRQF_SHARED; + + for (i = 0, j = 0; i < bp->cp_nr_rings; i++) { + struct bnxt_irq *irq = &bp->irq_tbl[i]; +#ifdef CONFIG_RFS_ACCEL + if (rmap && bp->bnapi[i]->rx_ring) { + rc = irq_cpu_rmap_add(rmap, irq->vector); + if (rc) + netdev_warn(bp->dev, "failed adding irq rmap for ring %d\n", + j); + j++; + } +#endif + rc = request_irq(irq->vector, irq->handler, flags, irq->name, + bp->bnapi[i]); + if (rc) + break; + + irq->requested = 1; + } + return rc; +} + +static void bnxt_del_napi(struct bnxt *bp) +{ + int i; + + if (!bp->bnapi) + return; + + for (i = 0; i < bp->cp_nr_rings; i++) { + struct bnxt_napi *bnapi = bp->bnapi[i]; + + napi_hash_del(&bnapi->napi); + netif_napi_del(&bnapi->napi); + } + /* We called napi_hash_del() before netif_napi_del(), we need + * to respect an RCU grace period before freeing napi structures. + */ + synchronize_net(); +} + +static void bnxt_init_napi(struct bnxt *bp) +{ + int i; + unsigned int cp_nr_rings = bp->cp_nr_rings; + struct bnxt_napi *bnapi; + + if (bp->flags & BNXT_FLAG_USING_MSIX) { + if (BNXT_CHIP_TYPE_NITRO_A0(bp)) + cp_nr_rings--; + for (i = 0; i < cp_nr_rings; i++) { + bnapi = bp->bnapi[i]; + netif_napi_add(bp->dev, &bnapi->napi, + bnxt_poll, 64); + napi_hash_add(&bnapi->napi); + } + if (BNXT_CHIP_TYPE_NITRO_A0(bp)) { + bnapi = bp->bnapi[cp_nr_rings]; + netif_napi_add(bp->dev, &bnapi->napi, + bnxt_poll_nitroa0, 64); + napi_hash_add(&bnapi->napi); + } + } else { + bnapi = bp->bnapi[0]; + netif_napi_add(bp->dev, &bnapi->napi, bnxt_poll, 64); + napi_hash_add(&bnapi->napi); + } +} + +static void bnxt_disable_napi(struct bnxt *bp) +{ + int i; + + if (!bp->bnapi) + return; + + for (i = 0; i < bp->cp_nr_rings; i++) { + napi_disable(&bp->bnapi[i]->napi); + bnxt_disable_poll(bp->bnapi[i]); + } +} + +static void bnxt_enable_napi(struct bnxt *bp) +{ + int i; + + for (i = 0; i < bp->cp_nr_rings; i++) { + struct bnxt_napi *bnapi = bp->bnapi[i]; + struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring; + + if (bnapi->in_reset) + cpr->sw_stats.rx_resets++; + bnapi->in_reset = false; + bnxt_enable_poll(bnapi); + napi_enable(&bnapi->napi); + } +} + +void bnxt_tx_disable(struct bnxt *bp) +{ + int i; + struct bnxt_tx_ring_info *txr; + struct netdev_queue *txq; + + if (bp->tx_ring) { + for (i = 0; i < bp->tx_nr_rings; i++) { + txr = &bp->tx_ring[i]; + txq = netdev_get_tx_queue(bp->dev, i); + txr->dev_state = BNXT_DEV_STATE_CLOSING; + } + } + /* Stop all TX queues */ + netif_tx_disable(bp->dev); + netif_carrier_off(bp->dev); +} + +void bnxt_tx_enable(struct bnxt *bp) +{ + int i; + struct bnxt_tx_ring_info *txr; + struct netdev_queue *txq; + + for (i = 0; i < bp->tx_nr_rings; i++) { + txr = &bp->tx_ring[i]; + txq = netdev_get_tx_queue(bp->dev, i); + txr->dev_state = 0; + } + netif_tx_wake_all_queues(bp->dev); + if (bp->link_info.link_up) + netif_carrier_on(bp->dev); +} + +static void bnxt_report_link(struct bnxt *bp) +{ + if (bp->link_info.link_up) { + const char *duplex; + const char *flow_ctrl; + u16 speed, fec; + + netif_carrier_on(bp->dev); + if (bp->link_info.duplex == BNXT_LINK_DUPLEX_FULL) + duplex = "full"; + else + duplex = "half"; + if (bp->link_info.pause == BNXT_LINK_PAUSE_BOTH) + flow_ctrl = "ON - receive & transmit"; + else if (bp->link_info.pause == BNXT_LINK_PAUSE_TX) + flow_ctrl = "ON - transmit"; + else if (bp->link_info.pause == BNXT_LINK_PAUSE_RX) + flow_ctrl = "ON - receive"; + else + flow_ctrl = "none"; + speed = bnxt_fw_to_ethtool_speed(bp->link_info.link_speed); + netdev_info(bp->dev, "NIC Link is Up, %d Mbps %s duplex, Flow control: %s\n", + speed, duplex, flow_ctrl); + if (bp->flags & BNXT_FLAG_EEE_CAP) + netdev_info(bp->dev, "EEE is %s\n", + bp->eee.eee_active ? "active" : + "not active"); + fec = bp->link_info.fec_cfg; + if (!(fec & PORT_PHY_QCFG_RESP_FEC_CFG_FEC_NONE_SUPPORTED)) + netdev_info(bp->dev, "FEC autoneg %s encodings: %s\n", + (fec & BNXT_FEC_AUTONEG) ? "on" : "off", + (fec & BNXT_FEC_ENC_BASE_R) ? "BaseR" : + (fec & BNXT_FEC_ENC_RS) ? "RS" : "None"); + } else { + netif_carrier_off(bp->dev); + netdev_err(bp->dev, "NIC Link is Down\n"); + } +} + +static int bnxt_hwrm_phy_qcaps(struct bnxt *bp) +{ + int rc = 0; + struct hwrm_port_phy_qcaps_input req = {0}; + struct hwrm_port_phy_qcaps_output *resp = bp->hwrm_cmd_resp_addr; + struct bnxt_link_info *link_info = &bp->link_info; + + if (bp->hwrm_spec_code < 0x10201) + return 0; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_PORT_PHY_QCAPS, -1, -1); + + mutex_lock(&bp->hwrm_cmd_lock); + rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + if (rc) + goto hwrm_phy_qcaps_exit; + + if (resp->flags & PORT_PHY_QCAPS_RESP_FLAGS_EEE_SUPPORTED) { + struct ethtool_eee *eee = &bp->eee; + u16 fw_speeds = le16_to_cpu(resp->supported_speeds_eee_mode); + + bp->flags |= BNXT_FLAG_EEE_CAP; + eee->supported = _bnxt_fw_to_ethtool_adv_spds(fw_speeds, 0); + bp->lpi_tmr_lo = le32_to_cpu(resp->tx_lpi_timer_low) & + PORT_PHY_QCAPS_RESP_TX_LPI_TIMER_LOW_MASK; + bp->lpi_tmr_hi = le32_to_cpu(resp->valid_tx_lpi_timer_high) & + PORT_PHY_QCAPS_RESP_TX_LPI_TIMER_HIGH_MASK; + } + if (resp->supported_speeds_auto_mode) + link_info->support_auto_speeds = + le16_to_cpu(resp->supported_speeds_auto_mode); + +hwrm_phy_qcaps_exit: + mutex_unlock(&bp->hwrm_cmd_lock); + return rc; +} + +static int bnxt_update_link(struct bnxt *bp, bool chng_link_state) +{ + int rc = 0; + struct bnxt_link_info *link_info = &bp->link_info; + struct hwrm_port_phy_qcfg_input req = {0}; + struct hwrm_port_phy_qcfg_output *resp = bp->hwrm_cmd_resp_addr; + u8 link_up = link_info->link_up; + u16 diff; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_PORT_PHY_QCFG, -1, -1); + + mutex_lock(&bp->hwrm_cmd_lock); + rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + if (rc) { + mutex_unlock(&bp->hwrm_cmd_lock); + return rc; + } + + memcpy(&link_info->phy_qcfg_resp, resp, sizeof(*resp)); + link_info->phy_link_status = resp->link; + link_info->duplex = resp->duplex_cfg; + if (bp->hwrm_spec_code >= 0x10800) + link_info->duplex = resp->duplex_state; + link_info->pause = resp->pause; + link_info->auto_mode = resp->auto_mode; + link_info->auto_pause_setting = resp->auto_pause; + link_info->lp_pause = resp->link_partner_adv_pause; + link_info->force_pause_setting = resp->force_pause; + link_info->duplex_setting = resp->duplex_cfg; + if (link_info->phy_link_status == BNXT_LINK_LINK) + link_info->link_speed = le16_to_cpu(resp->link_speed); + else + link_info->link_speed = 0; + link_info->force_link_speed = le16_to_cpu(resp->force_link_speed); + link_info->support_speeds = le16_to_cpu(resp->support_speeds); + link_info->auto_link_speeds = le16_to_cpu(resp->auto_link_speed_mask); + link_info->lp_auto_link_speeds = + le16_to_cpu(resp->link_partner_adv_speeds); + link_info->preemphasis = le32_to_cpu(resp->preemphasis); + link_info->phy_ver[0] = resp->phy_maj; + link_info->phy_ver[1] = resp->phy_min; + link_info->phy_ver[2] = resp->phy_bld; + link_info->media_type = resp->media_type; + link_info->phy_type = resp->phy_type; + link_info->transceiver = resp->xcvr_pkg_type; + link_info->phy_addr = resp->eee_config_phy_addr & + PORT_PHY_QCFG_RESP_PHY_ADDR_MASK; + link_info->module_status = resp->module_status; + + if (bp->flags & BNXT_FLAG_EEE_CAP) { + struct ethtool_eee *eee = &bp->eee; + u16 fw_speeds; + + eee->eee_active = 0; + if (resp->eee_config_phy_addr & + PORT_PHY_QCFG_RESP_EEE_CONFIG_EEE_ACTIVE) { + eee->eee_active = 1; + fw_speeds = le16_to_cpu( + resp->link_partner_adv_eee_link_speed_mask); + eee->lp_advertised = + _bnxt_fw_to_ethtool_adv_spds(fw_speeds, 0); + } + + /* Pull initial EEE config */ + if (!chng_link_state) { + if (resp->eee_config_phy_addr & + PORT_PHY_QCFG_RESP_EEE_CONFIG_EEE_ENABLED) + eee->eee_enabled = 1; + + fw_speeds = le16_to_cpu(resp->adv_eee_link_speed_mask); + eee->advertised = + _bnxt_fw_to_ethtool_adv_spds(fw_speeds, 0); + + if (resp->eee_config_phy_addr & + PORT_PHY_QCFG_RESP_EEE_CONFIG_EEE_TX_LPI) { + __le32 tmr; + + eee->tx_lpi_enabled = 1; + tmr = resp->xcvr_identifier_type_tx_lpi_timer; + eee->tx_lpi_timer = le32_to_cpu(tmr) & + PORT_PHY_QCFG_RESP_TX_LPI_TIMER_MASK; + } + } + } + + link_info->fec_cfg = PORT_PHY_QCFG_RESP_FEC_CFG_FEC_NONE_SUPPORTED; + if (bp->hwrm_spec_code >= 0x10504) + link_info->fec_cfg = le16_to_cpu(resp->fec_cfg); + + /* TODO: need to add more logic to report VF link */ + if (chng_link_state) { + if (link_info->phy_link_status == BNXT_LINK_LINK) + link_info->link_up = 1; + else + link_info->link_up = 0; + if (link_up != link_info->link_up) + bnxt_report_link(bp); + } else { + /* alwasy link down if not require to update link state */ + link_info->link_up = 0; + } + mutex_unlock(&bp->hwrm_cmd_lock); + + diff = link_info->support_auto_speeds ^ link_info->advertising; + if ((link_info->support_auto_speeds | diff) != + link_info->support_auto_speeds) { + /* An advertised speed is no longer supported, so we need to + * update the advertisement settings. Caller holds RTNL + * so we can modify link settings. + */ + link_info->advertising = link_info->support_auto_speeds; + if (link_info->autoneg & BNXT_AUTONEG_SPEED) + bnxt_hwrm_set_link_setting(bp, true, false); + } + return 0; +} + +static void bnxt_get_port_module_status(struct bnxt *bp) +{ + struct bnxt_link_info *link_info = &bp->link_info; + struct hwrm_port_phy_qcfg_output *resp = &link_info->phy_qcfg_resp; + u8 module_status; + + if (bnxt_update_link(bp, true)) + return; + + module_status = link_info->module_status; + switch (module_status) { + case PORT_PHY_QCFG_RESP_MODULE_STATUS_DISABLETX: + case PORT_PHY_QCFG_RESP_MODULE_STATUS_PWRDOWN: + case PORT_PHY_QCFG_RESP_MODULE_STATUS_WARNINGMSG: + netdev_warn(bp->dev, "Unqualified SFP+ module detected on port %d\n", + bp->pf.port_id); + if (bp->hwrm_spec_code >= 0x10201) { + netdev_warn(bp->dev, "Module part number %s\n", + resp->phy_vendor_partnumber); + } + if (module_status == PORT_PHY_QCFG_RESP_MODULE_STATUS_DISABLETX) + netdev_warn(bp->dev, "TX is disabled\n"); + if (module_status == PORT_PHY_QCFG_RESP_MODULE_STATUS_PWRDOWN) + netdev_warn(bp->dev, "SFP+ module is shutdown\n"); + } +} + +static void +bnxt_hwrm_set_pause_common(struct bnxt *bp, struct hwrm_port_phy_cfg_input *req) +{ + if (bp->link_info.autoneg & BNXT_AUTONEG_FLOW_CTRL) { + if (bp->hwrm_spec_code >= 0x10201) + req->auto_pause = + PORT_PHY_CFG_REQ_AUTO_PAUSE_AUTONEG_PAUSE; + if (bp->link_info.req_flow_ctrl & BNXT_LINK_PAUSE_RX) + req->auto_pause |= PORT_PHY_CFG_REQ_AUTO_PAUSE_RX; + if (bp->link_info.req_flow_ctrl & BNXT_LINK_PAUSE_TX) + req->auto_pause |= PORT_PHY_CFG_REQ_AUTO_PAUSE_TX; + req->enables |= + cpu_to_le32(PORT_PHY_CFG_REQ_ENABLES_AUTO_PAUSE); + } else { + if (bp->link_info.req_flow_ctrl & BNXT_LINK_PAUSE_RX) + req->force_pause |= PORT_PHY_CFG_REQ_FORCE_PAUSE_RX; + if (bp->link_info.req_flow_ctrl & BNXT_LINK_PAUSE_TX) + req->force_pause |= PORT_PHY_CFG_REQ_FORCE_PAUSE_TX; + req->enables |= + cpu_to_le32(PORT_PHY_CFG_REQ_ENABLES_FORCE_PAUSE); + if (bp->hwrm_spec_code >= 0x10201) { + req->auto_pause = req->force_pause; + req->enables |= cpu_to_le32( + PORT_PHY_CFG_REQ_ENABLES_AUTO_PAUSE); + } + } +} + +static void bnxt_hwrm_set_link_common(struct bnxt *bp, + struct hwrm_port_phy_cfg_input *req) +{ + u8 autoneg = bp->link_info.autoneg; + u16 fw_link_speed = bp->link_info.req_link_speed; + u16 advertising = bp->link_info.advertising; + + if (autoneg & BNXT_AUTONEG_SPEED) { + req->auto_mode |= + PORT_PHY_CFG_REQ_AUTO_MODE_SPEED_MASK; + + req->enables |= cpu_to_le32( + PORT_PHY_CFG_REQ_ENABLES_AUTO_LINK_SPEED_MASK); + req->auto_link_speed_mask = cpu_to_le16(advertising); + + req->enables |= cpu_to_le32(PORT_PHY_CFG_REQ_ENABLES_AUTO_MODE); + req->flags |= + cpu_to_le32(PORT_PHY_CFG_REQ_FLAGS_RESTART_AUTONEG); + } else { + req->force_link_speed = cpu_to_le16(fw_link_speed); + req->flags |= cpu_to_le32(PORT_PHY_CFG_REQ_FLAGS_FORCE); + } + + /* tell chimp that the setting takes effect immediately */ + req->flags |= cpu_to_le32(PORT_PHY_CFG_REQ_FLAGS_RESET_PHY); +} + +int bnxt_hwrm_set_pause(struct bnxt *bp) +{ + struct hwrm_port_phy_cfg_input req = {0}; + int rc; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_PORT_PHY_CFG, -1, -1); + bnxt_hwrm_set_pause_common(bp, &req); + + if ((bp->link_info.autoneg & BNXT_AUTONEG_FLOW_CTRL) || + bp->link_info.force_link_chng) + bnxt_hwrm_set_link_common(bp, &req); + + mutex_lock(&bp->hwrm_cmd_lock); + rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + if (!rc && !(bp->link_info.autoneg & BNXT_AUTONEG_FLOW_CTRL)) { + /* since changing of pause setting doesn't trigger any link + * change event, the driver needs to update the current pause + * result upon successfully return of the phy_cfg command + */ + bp->link_info.pause = + bp->link_info.force_pause_setting = bp->link_info.req_flow_ctrl; + bp->link_info.auto_pause_setting = 0; + if (!bp->link_info.force_link_chng) + bnxt_report_link(bp); + } + bp->link_info.force_link_chng = false; + mutex_unlock(&bp->hwrm_cmd_lock); + return rc; +} + +static void bnxt_hwrm_set_eee(struct bnxt *bp, + struct hwrm_port_phy_cfg_input *req) +{ + struct ethtool_eee *eee = &bp->eee; + + if (eee->eee_enabled) { + u16 eee_speeds; + u32 flags = PORT_PHY_CFG_REQ_FLAGS_EEE_ENABLE; + + if (eee->tx_lpi_enabled) + flags |= PORT_PHY_CFG_REQ_FLAGS_EEE_TX_LPI_ENABLE; + else + flags |= PORT_PHY_CFG_REQ_FLAGS_EEE_TX_LPI_DISABLE; + + req->flags |= cpu_to_le32(flags); + eee_speeds = bnxt_get_fw_auto_link_speeds(eee->advertised); + req->eee_link_speed_mask = cpu_to_le16(eee_speeds); + req->tx_lpi_timer = cpu_to_le32(eee->tx_lpi_timer); + } else { + req->flags |= cpu_to_le32(PORT_PHY_CFG_REQ_FLAGS_EEE_DISABLE); + } +} + +int bnxt_hwrm_set_link_setting(struct bnxt *bp, bool set_pause, bool set_eee) +{ + struct hwrm_port_phy_cfg_input req = {0}; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_PORT_PHY_CFG, -1, -1); + if (set_pause) + bnxt_hwrm_set_pause_common(bp, &req); + + bnxt_hwrm_set_link_common(bp, &req); + + if (set_eee) + bnxt_hwrm_set_eee(bp, &req); + return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); +} + +static int bnxt_hwrm_shutdown_link(struct bnxt *bp) +{ + struct hwrm_port_phy_cfg_input req = {0}; + + if (!BNXT_SINGLE_PF(bp)) + return 0; + + if (pci_num_vf(bp->pdev)) + return 0; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_PORT_PHY_CFG, -1, -1); + req.flags = cpu_to_le32(PORT_PHY_CFG_REQ_FLAGS_FORCE_LINK_DWN); + return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); +} + +static int bnxt_hwrm_port_led_qcaps(struct bnxt *bp) +{ + struct hwrm_port_led_qcaps_output *resp = bp->hwrm_cmd_resp_addr; + struct hwrm_port_led_qcaps_input req = {0}; + struct bnxt_pf_info *pf = &bp->pf; + int rc; + + if (BNXT_VF(bp) || bp->hwrm_spec_code < 0x10601) + return 0; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_PORT_LED_QCAPS, -1, -1); + req.port_id = cpu_to_le16(pf->port_id); + mutex_lock(&bp->hwrm_cmd_lock); + rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + if (rc) { + mutex_unlock(&bp->hwrm_cmd_lock); + return rc; + } + if (resp->num_leds > 0 && resp->num_leds < BNXT_MAX_LED) { + int i; + + bp->num_leds = resp->num_leds; + memcpy(bp->leds, &resp->led0_id, sizeof(bp->leds[0]) * + bp->num_leds); + for (i = 0; i < bp->num_leds; i++) { + struct bnxt_led_info *led = &bp->leds[i]; + __le16 caps = led->led_state_caps; + + if (!led->led_group_id || + !BNXT_LED_ALT_BLINK_CAP(caps)) { + bp->num_leds = 0; + break; + } + } + } + mutex_unlock(&bp->hwrm_cmd_lock); + return 0; +} + +int bnxt_hwrm_alloc_wol_fltr(struct bnxt *bp) +{ + struct hwrm_wol_filter_alloc_input req = {0}; + struct hwrm_wol_filter_alloc_output *resp = bp->hwrm_cmd_resp_addr; + int rc; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_WOL_FILTER_ALLOC, -1, -1); + req.port_id = cpu_to_le16(bp->pf.port_id); + req.wol_type = WOL_FILTER_ALLOC_REQ_WOL_TYPE_MAGICPKT; + req.enables = cpu_to_le32(WOL_FILTER_ALLOC_REQ_ENABLES_MAC_ADDRESS); + memcpy(req.mac_address, bp->dev->dev_addr, ETH_ALEN); + mutex_lock(&bp->hwrm_cmd_lock); + rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + if (!rc) + bp->wol_filter_id = resp->wol_filter_id; + mutex_unlock(&bp->hwrm_cmd_lock); + return rc; +} + +int bnxt_hwrm_free_wol_fltr(struct bnxt *bp) +{ + struct hwrm_wol_filter_free_input req = {0}; + int rc; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_WOL_FILTER_FREE, -1, -1); + req.port_id = cpu_to_le16(bp->pf.port_id); + req.enables = cpu_to_le32(WOL_FILTER_FREE_REQ_ENABLES_WOL_FILTER_ID); + req.wol_filter_id = bp->wol_filter_id; + rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + return rc; +} + +static u16 bnxt_hwrm_get_wol_fltrs(struct bnxt *bp, u16 handle) +{ + struct hwrm_wol_filter_qcfg_input req = {0}; + struct hwrm_wol_filter_qcfg_output *resp = bp->hwrm_cmd_resp_addr; + u16 next_handle = 0; + int rc; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_WOL_FILTER_QCFG, -1, -1); + req.port_id = cpu_to_le16(bp->pf.port_id); + req.handle = cpu_to_le16(handle); + mutex_lock(&bp->hwrm_cmd_lock); + rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + if (!rc) { + next_handle = le16_to_cpu(resp->next_handle); + if (next_handle != 0) { + if (resp->wol_type == + WOL_FILTER_ALLOC_REQ_WOL_TYPE_MAGICPKT) { + bp->wol = 1; + bp->wol_filter_id = resp->wol_filter_id; + } + } + } + mutex_unlock(&bp->hwrm_cmd_lock); + return next_handle; +} + +static void bnxt_get_wol_settings(struct bnxt *bp) +{ + u16 handle = 0; + + if (!BNXT_PF(bp) || !(bp->flags & BNXT_FLAG_WOL_CAP)) + return; + + do { + handle = bnxt_hwrm_get_wol_fltrs(bp, handle); + } while (handle && handle != 0xffff); +} + +static bool bnxt_eee_config_ok(struct bnxt *bp) +{ + struct ethtool_eee *eee = &bp->eee; + struct bnxt_link_info *link_info = &bp->link_info; + + if (!(bp->flags & BNXT_FLAG_EEE_CAP)) + return true; + + if (eee->eee_enabled) { + u32 advertising = + _bnxt_fw_to_ethtool_adv_spds(link_info->advertising, 0); + + if (!(link_info->autoneg & BNXT_AUTONEG_SPEED)) { + eee->eee_enabled = 0; + return false; + } + if (eee->advertised & ~advertising) { + eee->advertised = advertising & eee->supported; + return false; + } + } + return true; +} + +static int bnxt_update_phy_setting(struct bnxt *bp) +{ + int rc; + bool update_link = false; + bool update_pause = false; + bool update_eee = false; + struct bnxt_link_info *link_info = &bp->link_info; + + rc = bnxt_update_link(bp, true); + if (rc) { + netdev_err(bp->dev, "failed to update link (rc: %x)\n", + rc); + return rc; + } + if (!BNXT_SINGLE_PF(bp)) + return 0; + + if ((link_info->autoneg & BNXT_AUTONEG_FLOW_CTRL) && + (link_info->auto_pause_setting & BNXT_LINK_PAUSE_BOTH) != + link_info->req_flow_ctrl) + update_pause = true; + if (!(link_info->autoneg & BNXT_AUTONEG_FLOW_CTRL) && + link_info->force_pause_setting != link_info->req_flow_ctrl) + update_pause = true; + if (!(link_info->autoneg & BNXT_AUTONEG_SPEED)) { + if (BNXT_AUTO_MODE(link_info->auto_mode)) + update_link = true; + if (link_info->req_link_speed != link_info->force_link_speed) + update_link = true; + if (link_info->req_duplex != link_info->duplex_setting) + update_link = true; + } else { + if (link_info->auto_mode == BNXT_LINK_AUTO_NONE) + update_link = true; + if (link_info->advertising != link_info->auto_link_speeds) + update_link = true; + } + + /* The last close may have shutdown the link, so need to call + * PHY_CFG to bring it back up. + */ + if (!netif_carrier_ok(bp->dev)) + update_link = true; + + if (!bnxt_eee_config_ok(bp)) + update_eee = true; + + if (update_link) + rc = bnxt_hwrm_set_link_setting(bp, update_pause, update_eee); + else if (update_pause) + rc = bnxt_hwrm_set_pause(bp); + if (rc) { + netdev_err(bp->dev, "failed to update phy setting (rc: %x)\n", + rc); + return rc; + } + + return rc; +} + +/* Common routine to pre-map certain register block to different GRC window. + * A PF has 16 4K windows and a VF has 4 4K windows. However, only 15 windows + * in PF and 3 windows in VF that can be customized to map in different + * register blocks. + */ +static void bnxt_preset_reg_win(struct bnxt *bp) +{ + if (BNXT_PF(bp)) { + /* CAG registers map to GRC window #4 */ + writel(BNXT_CAG_REG_BASE, + bp->bar0 + BNXT_GRCPF_REG_WINDOW_BASE_OUT + 12); + } +} + +static int __bnxt_open_nic(struct bnxt *bp, bool irq_re_init, bool link_re_init) +{ + int rc = 0; + + bnxt_preset_reg_win(bp); + netif_carrier_off(bp->dev); + if (irq_re_init) { + rc = bnxt_setup_int_mode(bp); + if (rc) { + netdev_err(bp->dev, "bnxt_setup_int_mode err: %x\n", + rc); + return rc; + } + } + if ((bp->flags & BNXT_FLAG_RFS) && + !(bp->flags & BNXT_FLAG_USING_MSIX)) { + /* disable RFS if falling back to INTA */ + bp->dev->hw_features &= ~NETIF_F_NTUPLE; + bp->flags &= ~BNXT_FLAG_RFS; + } + + rc = bnxt_alloc_mem(bp, irq_re_init); + if (rc) { + netdev_err(bp->dev, "bnxt_alloc_mem err: %x\n", rc); + goto open_err_free_mem; + } + + if (irq_re_init) { + bnxt_init_napi(bp); + rc = bnxt_request_irq(bp); + if (rc) { + netdev_err(bp->dev, "bnxt_request_irq err: %x\n", rc); + goto open_err; + } + } + + bnxt_enable_napi(bp); + + rc = bnxt_init_nic(bp, irq_re_init); + if (rc) { + netdev_err(bp->dev, "bnxt_init_nic err: %x\n", rc); + goto open_err; + } + + if (link_re_init) { + rc = bnxt_update_phy_setting(bp); + if (rc) + netdev_warn(bp->dev, "failed to update phy settings\n"); + } + + if (irq_re_init) { +#if defined(HAVE_NDO_UDP_TUNNEL) + udp_tunnel_get_rx_info(bp->dev); +#elif defined(HAVE_NDO_ADD_VXLAN) +#if defined(CONFIG_VXLAN) || defined(CONFIG_VXLAN_MODULE) + vxlan_get_rx_port(bp->dev); +#endif + if (!bnxt_hwrm_tunnel_dst_port_alloc( + bp, htons(0x17c1), + TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_GENEVE)) + bp->nge_port_cnt = 1; +#endif + } + + set_bit(BNXT_STATE_OPEN, &bp->state); + bnxt_enable_int(bp); + /* Enable TX queues */ + bnxt_tx_enable(bp); + mod_timer(&bp->timer, jiffies + bp->current_interval); + /* Poll link status and check for SFP+ module status */ + bnxt_get_port_module_status(bp); + + return 0; + +open_err: + bnxt_disable_napi(bp); + bnxt_del_napi(bp); + +open_err_free_mem: + bnxt_free_skbs(bp); + bnxt_free_irq(bp); + bnxt_free_mem(bp, true); + return rc; +} + +/* rtnl_lock held */ +int bnxt_open_nic(struct bnxt *bp, bool irq_re_init, bool link_re_init) +{ + int rc = 0; + + rc = __bnxt_open_nic(bp, irq_re_init, link_re_init); + if (rc) { + netdev_err(bp->dev, "nic open fail (rc: %x)\n", rc); + dev_close(bp->dev); + } + return rc; +} + +/* rtnl_lock held, open the NIC half way by allocating all resources, but + * NAPI, IRQ, and TX are not enabled. This is mainly used for offline + * self tests. + */ +int bnxt_half_open_nic(struct bnxt *bp) +{ + int rc = 0; + + rc = bnxt_alloc_mem(bp, false); + if (rc) { + netdev_err(bp->dev, "bnxt_alloc_mem err: %x\n", rc); + goto half_open_err; + } + rc = bnxt_init_nic(bp, false); + if (rc) { + netdev_err(bp->dev, "bnxt_init_nic err: %x\n", rc); + goto half_open_err; + } + return 0; + +half_open_err: + bnxt_free_skbs(bp); + bnxt_free_mem(bp, false); + dev_close(bp->dev); + return rc; +} + +/* rtnl_lock held, this call can only be made after a previous successful + * call to bnxt_half_open_nic(). + */ +void bnxt_half_close_nic(struct bnxt *bp) +{ + bnxt_hwrm_resource_free(bp, false, false); + bnxt_free_skbs(bp); + bnxt_free_mem(bp, false); +} + +static int bnxt_open(struct net_device *dev) +{ + struct bnxt *bp = netdev_priv(dev); +#ifndef PCIE_SRIOV_CONFIGURE + int rc; + + rc = __bnxt_open_nic(bp, true, true); + if (!rc) + bnxt_start_sriov(bp, num_vfs); + return rc; +#else + + return __bnxt_open_nic(bp, true, true); +#endif +} + +static bool bnxt_drv_busy(struct bnxt *bp) +{ + return (test_bit(BNXT_STATE_IN_SP_TASK, &bp->state) || + test_bit(BNXT_STATE_READ_STATS, &bp->state)); +} + +int bnxt_close_nic(struct bnxt *bp, bool irq_re_init, bool link_re_init) +{ + int rc = 0; + +#ifdef CONFIG_BNXT_BPO_SRIOV + if (bp->sriov_cfg) { + rc = wait_event_interruptible_timeout(bp->sriov_cfg_wait, + !bp->sriov_cfg, + BNXT_SRIOV_CFG_WAIT_TMO); + if (rc) + netdev_warn(bp->dev, "timeout waiting for SRIOV config operation to complete!\n"); + } +#endif + /* Change device state to avoid TX queue wake up's */ + bnxt_tx_disable(bp); + + clear_bit(BNXT_STATE_OPEN, &bp->state); + smp_mb__after_atomic(); + while (bnxt_drv_busy(bp)) + msleep(20); + + /* Flush rings and and disable interrupts */ + bnxt_shutdown_nic(bp, irq_re_init); + + /* TODO CHIMP_FW: Link/PHY related cleanup if (link_re_init) */ + + bnxt_disable_napi(bp); + del_timer_sync(&bp->timer); + bnxt_free_skbs(bp); + + if (irq_re_init) { + bnxt_free_irq(bp); + bnxt_del_napi(bp); + } + bnxt_free_mem(bp, irq_re_init); + return rc; +} + +static int bnxt_close(struct net_device *dev) +{ + struct bnxt *bp = netdev_priv(dev); + + bnxt_close_nic(bp, true, true); + bnxt_hwrm_shutdown_link(bp); + return 0; +} + +/* rtnl_lock held */ +static int bnxt_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd) +{ + switch (cmd) { + case SIOCGMIIPHY: + /* fallthru */ + case SIOCGMIIREG: { + if (!netif_running(dev)) + return -EAGAIN; + + return 0; + } + + case SIOCSMIIREG: + if (!netif_running(dev)) + return -EAGAIN; + + return 0; + +#ifdef HAVE_IEEE1588_SUPPORT + case SIOCSHWTSTAMP: + return bnxt_hwtstamp_set(dev, ifr); + + case SIOCGHWTSTAMP: + return bnxt_hwtstamp_get(dev, ifr); +#endif + + default: + /* do nothing */ + break; + } + return -EOPNOTSUPP; +} + +#ifdef NETDEV_GET_STATS64 +#ifdef NETDEV_GET_STATS64_VOID +static void +#else +static struct rtnl_link_stats64 * +#endif +bnxt_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats) +{ + u32 i; + struct bnxt *bp = netdev_priv(dev); + + set_bit(BNXT_STATE_READ_STATS, &bp->state); + /* Make sure bnxt_close_nic() sees that we are reading stats before + * we check the BNXT_STATE_OPEN flag. + */ + smp_mb__after_atomic(); + if (!test_bit(BNXT_STATE_OPEN, &bp->state)) { + clear_bit(BNXT_STATE_READ_STATS, &bp->state); +#ifdef NETDEV_GET_STATS64_VOID + return; +#else + return stats; +#endif + } + + /* TODO check if we need to synchronize with bnxt_close path */ + for (i = 0; i < bp->cp_nr_rings; i++) { + struct bnxt_napi *bnapi = bp->bnapi[i]; + struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring; + struct ctx_hw_stats *hw_stats = cpr->hw_stats; + + stats->rx_packets += le64_to_cpu(hw_stats->rx_ucast_pkts); + stats->rx_packets += le64_to_cpu(hw_stats->rx_mcast_pkts); + stats->rx_packets += le64_to_cpu(hw_stats->rx_bcast_pkts); + + stats->tx_packets += le64_to_cpu(hw_stats->tx_ucast_pkts); + stats->tx_packets += le64_to_cpu(hw_stats->tx_mcast_pkts); + stats->tx_packets += le64_to_cpu(hw_stats->tx_bcast_pkts); + + stats->rx_bytes += le64_to_cpu(hw_stats->rx_ucast_bytes); + stats->rx_bytes += le64_to_cpu(hw_stats->rx_mcast_bytes); + stats->rx_bytes += le64_to_cpu(hw_stats->rx_bcast_bytes); + + stats->tx_bytes += le64_to_cpu(hw_stats->tx_ucast_bytes); + stats->tx_bytes += le64_to_cpu(hw_stats->tx_mcast_bytes); + stats->tx_bytes += le64_to_cpu(hw_stats->tx_bcast_bytes); + + stats->rx_missed_errors += + le64_to_cpu(hw_stats->rx_discard_pkts); + + stats->multicast += le64_to_cpu(hw_stats->rx_mcast_pkts); + + stats->tx_dropped += le64_to_cpu(hw_stats->tx_drop_pkts); + } + + if (bp->flags & BNXT_FLAG_PORT_STATS) { + struct rx_port_stats *rx = bp->hw_rx_port_stats; + struct tx_port_stats *tx = bp->hw_tx_port_stats; + + stats->rx_crc_errors = le64_to_cpu(rx->rx_fcs_err_frames); + stats->rx_frame_errors = le64_to_cpu(rx->rx_align_err_frames); + stats->rx_length_errors = le64_to_cpu(rx->rx_undrsz_frames) + + le64_to_cpu(rx->rx_ovrsz_frames) + + le64_to_cpu(rx->rx_runt_frames); + stats->rx_errors = le64_to_cpu(rx->rx_false_carrier_frames) + + le64_to_cpu(rx->rx_jbr_frames); + stats->collisions = le64_to_cpu(tx->tx_total_collisions); + stats->tx_fifo_errors = le64_to_cpu(tx->tx_fifo_underruns); + stats->tx_errors = le64_to_cpu(tx->tx_err); + } + clear_bit(BNXT_STATE_READ_STATS, &bp->state); +#ifndef NETDEV_GET_STATS64_VOID + return stats; +#endif +} +#else +static struct net_device_stats *bnxt_get_stats(struct net_device *dev) +{ + struct bnxt *bp = netdev_priv(dev); + struct net_device_stats *stats = &dev->stats; + int i; + + set_bit(BNXT_STATE_READ_STATS, &bp->state); + smp_mb__after_atomic(); + if (!test_bit(BNXT_STATE_OPEN, &bp->state)) { + clear_bit(BNXT_STATE_READ_STATS, &bp->state); + return stats; + } + + memset(stats, 0, sizeof(struct net_device_stats)); + + for (i = 0; i < bp->cp_nr_rings; i++) { + struct bnxt_napi *bnapi = bp->bnapi[i]; + struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring; + struct ctx_hw_stats *hw_stats = cpr->hw_stats; + + stats->rx_packets += GET_NET_STATS(hw_stats->rx_ucast_pkts); + stats->rx_packets += GET_NET_STATS(hw_stats->rx_mcast_pkts); + stats->rx_packets += GET_NET_STATS(hw_stats->rx_bcast_pkts); + + stats->tx_packets += GET_NET_STATS(hw_stats->tx_ucast_pkts); + stats->tx_packets += GET_NET_STATS(hw_stats->tx_mcast_pkts); + stats->tx_packets += GET_NET_STATS(hw_stats->tx_bcast_pkts); + + stats->rx_bytes += GET_NET_STATS(hw_stats->rx_ucast_bytes); + stats->rx_bytes += GET_NET_STATS(hw_stats->rx_mcast_bytes); + stats->rx_bytes += GET_NET_STATS(hw_stats->rx_bcast_bytes); + + stats->tx_bytes += GET_NET_STATS(hw_stats->tx_ucast_bytes); + stats->tx_bytes += GET_NET_STATS(hw_stats->tx_mcast_bytes); + stats->tx_bytes += GET_NET_STATS(hw_stats->tx_bcast_bytes); + + stats->rx_missed_errors += + GET_NET_STATS(hw_stats->rx_discard_pkts); + stats->multicast += GET_NET_STATS(hw_stats->rx_mcast_pkts); + stats->tx_dropped += GET_NET_STATS(hw_stats->tx_drop_pkts); + } + + if (bp->flags & BNXT_FLAG_PORT_STATS) { + struct rx_port_stats *rx = bp->hw_rx_port_stats; + struct tx_port_stats *tx = bp->hw_tx_port_stats; + + stats->rx_crc_errors = GET_NET_STATS(rx->rx_fcs_err_frames); + stats->rx_frame_errors = GET_NET_STATS(rx->rx_align_err_frames); + stats->rx_length_errors = GET_NET_STATS(rx->rx_undrsz_frames) + + GET_NET_STATS(rx->rx_ovrsz_frames) + + GET_NET_STATS(rx->rx_runt_frames); + stats->rx_errors = GET_NET_STATS(rx->rx_false_carrier_frames) + + GET_NET_STATS(rx->rx_jbr_frames); + stats->collisions = GET_NET_STATS(tx->tx_total_collisions); + stats->tx_fifo_errors = GET_NET_STATS(tx->tx_fifo_underruns); + stats->tx_errors = GET_NET_STATS(tx->tx_err); + } + + clear_bit(BNXT_STATE_READ_STATS, &bp->state); + return &dev->stats; +} +#endif + +static bool bnxt_mc_list_updated(struct bnxt *bp, u32 *rx_mask) +{ + struct net_device *dev = bp->dev; + struct bnxt_vnic_info *vnic = &bp->vnic_info[0]; +#ifdef HAVE_DEV_ADDR_LIST + struct dev_addr_list *ha; +#else + struct netdev_hw_addr *ha; +#endif + u8 *haddr; + int mc_count = 0; + bool update = false; + int off = 0; + + netdev_for_each_mc_addr(ha, dev) { + if (mc_count >= BNXT_MAX_MC_ADDRS) { + *rx_mask |= CFA_L2_SET_RX_MASK_REQ_MASK_ALL_MCAST; + vnic->mc_list_count = 0; + return false; + } +#ifdef HAVE_DEV_ADDR_LIST + haddr = ha->da_addr; +#else + haddr = ha->addr; +#endif + if (!ether_addr_equal(haddr, vnic->mc_list + off)) { + memcpy(vnic->mc_list + off, haddr, ETH_ALEN); + update = true; + } + off += ETH_ALEN; + mc_count++; + } + if (mc_count) + *rx_mask |= CFA_L2_SET_RX_MASK_REQ_MASK_MCAST; + + if (mc_count != vnic->mc_list_count) { + vnic->mc_list_count = mc_count; + update = true; + } + return update; +} + +static bool bnxt_uc_list_updated(struct bnxt *bp) +{ + struct net_device *dev = bp->dev; + struct bnxt_vnic_info *vnic = &bp->vnic_info[0]; + struct netdev_hw_addr *ha; + int off = 0; + + if (netdev_uc_count(dev) != (vnic->uc_filter_count - 1)) + return true; + + netdev_for_each_uc_addr(ha, dev) { + if (!ether_addr_equal(ha->addr, vnic->uc_list + off)) + return true; + + off += ETH_ALEN; + } + return false; +} + +static void bnxt_set_rx_mode(struct net_device *dev) +{ + struct bnxt *bp = netdev_priv(dev); + struct bnxt_vnic_info *vnic = &bp->vnic_info[0]; + u32 mask = vnic->rx_mask; + bool mc_update = false; + bool uc_update; + + if (!netif_running(dev)) + return; + + mask &= ~(CFA_L2_SET_RX_MASK_REQ_MASK_PROMISCUOUS | + CFA_L2_SET_RX_MASK_REQ_MASK_MCAST | + CFA_L2_SET_RX_MASK_REQ_MASK_ALL_MCAST); + + if ((dev->flags & IFF_PROMISC) && bnxt_promisc_ok(bp)) + mask |= CFA_L2_SET_RX_MASK_REQ_MASK_PROMISCUOUS; + + uc_update = bnxt_uc_list_updated(bp); + + if (dev->flags & IFF_ALLMULTI) { + mask |= CFA_L2_SET_RX_MASK_REQ_MASK_ALL_MCAST; + vnic->mc_list_count = 0; + } else { + mc_update = bnxt_mc_list_updated(bp, &mask); + } + + if (mask != vnic->rx_mask || uc_update || mc_update) { + vnic->rx_mask = mask; + + set_bit(BNXT_RX_MASK_SP_EVENT, &bp->sp_event); + schedule_work(&bp->sp_task); + } +} + +static int bnxt_cfg_rx_mode(struct bnxt *bp) +{ + struct net_device *dev = bp->dev; + struct bnxt_vnic_info *vnic = &bp->vnic_info[0]; + struct netdev_hw_addr *ha; + int i, off = 0, rc; + bool uc_update; + + netif_addr_lock_bh(dev); + uc_update = bnxt_uc_list_updated(bp); + netif_addr_unlock_bh(dev); + + if (!uc_update) + goto skip_uc; + + mutex_lock(&bp->hwrm_cmd_lock); + for (i = 1; i < vnic->uc_filter_count; i++) { + struct hwrm_cfa_l2_filter_free_input req = {0}; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_CFA_L2_FILTER_FREE, -1, + -1); + + req.l2_filter_id = vnic->fw_l2_filter_id[i]; + + rc = _hwrm_send_message(bp, &req, sizeof(req), + HWRM_CMD_TIMEOUT); + } + mutex_unlock(&bp->hwrm_cmd_lock); + + vnic->uc_filter_count = 1; + + netif_addr_lock_bh(dev); + if (netdev_uc_count(dev) > (BNXT_MAX_UC_ADDRS - 1)) { + vnic->rx_mask |= CFA_L2_SET_RX_MASK_REQ_MASK_PROMISCUOUS; + } else { + netdev_for_each_uc_addr(ha, dev) { + memcpy(vnic->uc_list + off, ha->addr, ETH_ALEN); + off += ETH_ALEN; + vnic->uc_filter_count++; + } + } + netif_addr_unlock_bh(dev); + + for (i = 1, off = 0; i < vnic->uc_filter_count; i++, off += ETH_ALEN) { + rc = bnxt_hwrm_set_vnic_filter(bp, 0, i, vnic->uc_list + off); + if (rc) { + netdev_err(bp->dev, "HWRM vnic filter failure rc: %x\n", + rc); + vnic->uc_filter_count = i; + return rc; + } + } + +skip_uc: + rc = bnxt_hwrm_cfa_l2_set_rx_mask(bp, 0); + if (rc) + netdev_err(bp->dev, "HWRM cfa l2 rx mask failure rc: %x\n", + rc); + + return rc; +} + +/* If the chip and firmware supports RFS */ +static bool bnxt_rfs_supported(struct bnxt *bp) +{ + if (BNXT_PF(bp) && !BNXT_CHIP_TYPE_NITRO_A0(bp)) + return true; + if (bp->flags & BNXT_FLAG_NEW_RSS_CAP) + return true; + return false; +} + +/* If runtime conditions support RFS */ +static bool bnxt_rfs_capable(struct bnxt *bp) +{ +#ifdef CONFIG_RFS_ACCEL + int vnics, max_vnics, max_rss_ctxs; + + if (!(bp->flags & BNXT_FLAG_MSIX_CAP)) + return false; + + vnics = 1 + bp->rx_nr_rings; + max_vnics = bnxt_get_max_func_vnics(bp); + max_rss_ctxs = bnxt_get_max_func_rss_ctxs(bp); + + /* RSS contexts not a limiting factor */ + if (bp->flags & BNXT_FLAG_NEW_RSS_CAP) + max_rss_ctxs = max_vnics; + if (vnics > max_vnics || vnics > max_rss_ctxs) { + netdev_warn(bp->dev, + "Not enough resources to support NTUPLE filters, enough resources for up to %d rx rings\n", + min(max_rss_ctxs - 1, max_vnics - 1)); + return false; + } + + return true; +#else + return false; +#endif +} + +#ifdef NETDEV_FEATURE_CONTROL +static netdev_features_t bnxt_fix_features(struct net_device *dev, + netdev_features_t features) +{ + struct bnxt *bp = netdev_priv(dev); + + if ((features & NETIF_F_NTUPLE) && !bnxt_rfs_capable(bp)) + features &= ~NETIF_F_NTUPLE; + + /* Both CTAG and STAG VLAN accelaration on the RX side have to be + * turned on or off together. + */ + if ((features & (NETIF_F_HW_VLAN_CTAG_RX | NETIF_F_HW_VLAN_STAG_RX)) != + (NETIF_F_HW_VLAN_CTAG_RX | NETIF_F_HW_VLAN_STAG_RX)) { + if (dev->features & NETIF_F_HW_VLAN_CTAG_RX) + features &= ~(NETIF_F_HW_VLAN_CTAG_RX | + NETIF_F_HW_VLAN_STAG_RX); + else + features |= NETIF_F_HW_VLAN_CTAG_RX | + NETIF_F_HW_VLAN_STAG_RX; + } +#ifdef CONFIG_BNXT_BPO_SRIOV + if (BNXT_VF(bp)) { + if (bp->vf.vlan) { + features &= ~(NETIF_F_HW_VLAN_CTAG_RX | + NETIF_F_HW_VLAN_STAG_RX); + } + } +#endif + return features; +} + +static int bnxt_set_features(struct net_device *dev, netdev_features_t features) +{ + struct bnxt *bp = netdev_priv(dev); + u32 flags = bp->flags; + u32 changes; + int rc = 0; + bool re_init = false; + bool update_tpa = false; + + flags &= ~BNXT_FLAG_ALL_CONFIG_FEATS; +#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,39) + if ((features & NETIF_F_GRO) && !BNXT_CHIP_TYPE_NITRO_A0(bp)) + flags |= BNXT_FLAG_GRO; +#endif + if (features & NETIF_F_LRO) + flags |= BNXT_FLAG_LRO; + + if (bp->flags & BNXT_FLAG_NO_AGG_RINGS) + flags &= ~BNXT_FLAG_TPA; + + if (features & NETIF_F_HW_VLAN_CTAG_RX) + flags |= BNXT_FLAG_STRIP_VLAN; + + if (features & NETIF_F_NTUPLE) + flags |= BNXT_FLAG_RFS; + + changes = flags ^ bp->flags; + if (changes & BNXT_FLAG_TPA) { + update_tpa = true; + if ((bp->flags & BNXT_FLAG_TPA) == 0 || + (flags & BNXT_FLAG_TPA) == 0) + re_init = true; + } + + if (changes & ~BNXT_FLAG_TPA) + re_init = true; + + if (flags != bp->flags) { + u32 old_flags = bp->flags; + + bp->flags = flags; + + if (!test_bit(BNXT_STATE_OPEN, &bp->state)) { + if (update_tpa) + bnxt_set_ring_params(bp); + return rc; + } + + if (re_init) { + bnxt_close_nic(bp, false, false); + if (update_tpa) + bnxt_set_ring_params(bp); + + return bnxt_open_nic(bp, false, false); + } + if (update_tpa) { + rc = bnxt_set_tpa(bp, + (flags & BNXT_FLAG_TPA) ? + true : false); + if (rc) + bp->flags = old_flags; + } + } + return rc; +} +#endif + +#define CHIMP_REG_VIEW_ADDR 0xb1000000 +static int bnxt_dbg_hwrm_wr_reg(struct bnxt *bp, u32 reg_off, u32 reg_val) +{ + struct hwrm_dbg_write_direct_input req = {0}; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_DBG_WRITE_DIRECT, -1, -1); + req.write_addr = cpu_to_le32(reg_off + CHIMP_REG_VIEW_ADDR); + /* TODO: support reg write to one register for now */ + req.write_len32 = cpu_to_le32(1); + req.write_data[0] = cpu_to_le32(reg_val); + return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); +} + +static int bnxt_dbg_hwrm_rd_reg(struct bnxt *bp, u32 reg_off, + u16 num_words, u32 *reg_buf) +{ + int rc, i; + struct hwrm_dbg_read_direct_input req = {0}; + struct hwrm_dbg_read_direct_output *resp = bp->hwrm_cmd_resp_addr; + __le32 *dbg_reg_buf = (__le32 *)bp->hwrm_dbg_resp_addr; + + if (!bp->hwrm_dbg_resp_addr) + return -ENOMEM; + num_words = min_t(u16, num_words, HWRM_DBG_REG_BUF_SIZE / 4); + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_DBG_READ_DIRECT, -1, -1); + req.host_dest_addr = cpu_to_le64(bp->hwrm_dbg_resp_dma_addr); + req.read_addr = cpu_to_le32(reg_off + CHIMP_REG_VIEW_ADDR); + req.read_len32 = cpu_to_le32(num_words); + + mutex_lock(&bp->hwrm_cmd_lock); + rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + if (rc) { + netdev_err(bp->dev, "hwrm_dbg_rd_reg failed. rc:%d\n", rc); + goto dbg_rd_reg_exit; + } + if (resp->error_code) { + netdev_err(bp->dev, "hwrm_dbg_rd_reg error %d\n", + resp->error_code); + rc = -1; + goto dbg_rd_reg_exit; + } + for (i = 0; i < num_words; i++) + reg_buf[i] = le32_to_cpu(dbg_reg_buf[i]); + +dbg_rd_reg_exit: + mutex_unlock(&bp->hwrm_cmd_lock); + return rc; +} + +static void bnxt_dbg_dump_hw_ring(struct bnxt *bp, u32 index) +{ + u32 val[12] = {0xDEADDEAD}; + u32 fw_ring_id; + struct bnxt_napi *bnapi; + struct bnxt_tx_ring_info *txr; + struct bnxt_rx_ring_info *rxr; + struct bnxt_cp_ring_info *cpr; + + if (!netif_msg_hw(bp)) + return; + + bnapi = bp->bnapi[index]; + txr = bnapi->tx_ring; + rxr = bnapi->rx_ring; + cpr = &bnapi->cp_ring; + + if (!txr) + goto skip_txr; + + /* TBD prod/cons */ + fw_ring_id = txr->tx_ring_struct.fw_ring_id; + if (fw_ring_id != INVALID_HW_RING_ID) { + bnxt_dbg_hwrm_rd_reg(bp, + BDETBD_REG_BD_PRODUCER_IDX + fw_ring_id * 4, 1, + &val[0]); + bnxt_dbg_hwrm_rd_reg(bp, + BDETBD_REG_BD_REQ_CONSUMER_IDX + fw_ring_id * 4, 1, + &val[1]); + bnxt_dbg_hwrm_rd_reg(bp, + BDETBD_REG_BD_CMPL_CONSUMER_IDX + fw_ring_id * 4, 1, + &val[2]); + } + +skip_txr: + if (!rxr) + goto skip_rxr; + + /* RBD prod/cons */ + fw_ring_id = rxr->rx_ring_struct.fw_ring_id; + if (fw_ring_id != INVALID_HW_RING_ID) { + bnxt_dbg_hwrm_rd_reg(bp, + BDERBD_REG_BD_PRODUCER_IDX + fw_ring_id * 4, 1, + &val[3]); + bnxt_dbg_hwrm_rd_reg(bp, + BDERBD_REG_BD_REQ_CONSUMER_IDX + fw_ring_id * 4, 1, + &val[4]); + bnxt_dbg_hwrm_rd_reg(bp, + BDERBD_REG_BD_CMPL_CONSUMER_IDX + fw_ring_id * 4, 1, + &val[5]); + } + /* AGG RBD prod/cons */ + fw_ring_id = rxr->rx_agg_ring_struct.fw_ring_id; + if (fw_ring_id != INVALID_HW_RING_ID) { + bnxt_dbg_hwrm_rd_reg(bp, + BDERBD_REG_BD_PRODUCER_IDX + fw_ring_id * 4, 1, + &val[6]); + bnxt_dbg_hwrm_rd_reg(bp, + BDERBD_REG_BD_REQ_CONSUMER_IDX + fw_ring_id * 4, 1, + &val[7]); + bnxt_dbg_hwrm_rd_reg(bp, + BDERBD_REG_BD_CMPL_CONSUMER_IDX + fw_ring_id * 4, 1, + &val[8]); + } + +skip_rxr: + /* CAG prod/cons/vector ctrl */ + fw_ring_id = cpr->cp_ring_struct.fw_ring_id; + if (fw_ring_id != INVALID_HW_RING_ID) { + bnxt_dbg_hwrm_rd_reg(bp, + CAG_REG_CAG_PRODUCER_INDEX_REG + fw_ring_id * 4, 1, + &val[9]); + bnxt_dbg_hwrm_rd_reg(bp, + CAG_REG_CAG_CONSUMER_INDEX_REG + fw_ring_id * 4, 1, + &val[10]); + bnxt_dbg_hwrm_rd_reg(bp, + CAG_REG_CAG_VECTOR_CTRL + fw_ring_id * 4, 1, &val[11]); + } + netdev_info(bp->dev, "[%d]: TBD{prod: %x cons: %x %x} " + "RBD{prod: %x cons: %x %x} " + "RBD AGG{prod: %x cons: %x %x} " + "CAG{prod: %x cons: %x vec: %x}\n", index, + val[0], val[1], val[2], + val[3], val[4], val[5], + val[6], val[7], val[8], + val[9], val[10], val[11]); +} + +static void bnxt_dbg_dump_hw_states(struct bnxt *bp) +{ + int rc, i; + u32 val[32] = {0xDEADDEAD}; + u32 dbg_sel; + + if (!netif_msg_hw(bp)) + return; + + /* dump tdc interrupt status */ + rc = bnxt_dbg_hwrm_rd_reg(bp, TDC_REG_INT_STS_0, 1, val); + if (!rc) + netdev_info(bp->dev, "TDC_REG_INT_STS_0: %x\n", val[0]); + /* dump tdc debug bus */ + netdev_info(bp->dev, "TDC debug bus dump:\n"); + dbg_sel = 0x80000000; + for (i = 0; i < 5; i++) { + rc = bnxt_dbg_hwrm_wr_reg(bp, TDC_REG_TDC_DEBUG_CNTL, dbg_sel); + if (rc) + break; + rc = bnxt_dbg_hwrm_rd_reg(bp, TDC_REG_TDC_DEBUG_STATUS, 1, val); + if (rc) + break; + netdev_info(bp->dev, "\tdbg_sel %08x: %08x\n", dbg_sel, val[0]); + dbg_sel++; + } + /* dump tdi debug bus */ + netdev_info(bp->dev, "TDI debug bus dump:\n"); + dbg_sel = 0xf; + rc = bnxt_dbg_hwrm_wr_reg(bp, TDI_REG_DBG_DWORD_ENABLE, dbg_sel); + if (!rc) { + rc = bnxt_dbg_hwrm_rd_reg(bp, TDI_REG_DBG_OUT_DATA, 1, val); + if (!rc) + netdev_info(bp->dev, "\tTDI_REG_DBG_DWORD_ENABLE (%x): " + "%08x\n", dbg_sel, val[0]); + for (dbg_sel = 2; dbg_sel < 0x12; dbg_sel++) { + rc = bnxt_dbg_hwrm_wr_reg(bp, TDI_REG_DBG_SELECT, + dbg_sel); + if (rc) + break; + rc = bnxt_dbg_hwrm_rd_reg(bp, TDI_REG_DBG_OUT_DATA, + 8, val); + if (rc) + break; + netdev_info(bp->dev, "\tTDI_REG_DBG_OUT_DATA: " + "%08x %08x %08x %08x " + "%08x %08x %08x %08x\n", + val[0], val[1], val[2], val[3], + val[4], val[5], val[6], val[7]); + } + } + /* dump te_dec port and cmd credits */ + rc = bnxt_dbg_hwrm_rd_reg(bp, TE_DEC_REG_PORT_CURRENT_CREDIT_REG, + HWRM_DBG_REG_BUF_SIZE/4, val); + if (!rc) { + netdev_info(bp->dev, "TE_DEC_REG_PORT_CURRENT_CREDIT_REG: " + "%x %x %x\n", val[0], val[1], val[2]); + netdev_info(bp->dev, "TE_DEC_REG_PORT_CURRENT_CMD_CREDIT_REG: " + "%x %x %x\n", val[16], val[17], val[18]); + } + /* dump partial RDI debug bus */ + netdev_info(bp->dev, "RDI debug bus dump:\n"); + dbg_sel = 0x80000000; + for (i = 0; i < 3; i++) { + rc = bnxt_dbg_hwrm_wr_reg(bp, RDI_REG_RDI_DEBUG_CONTROL_REG, + dbg_sel); + if (rc) + break; + rc = bnxt_dbg_hwrm_rd_reg(bp, RDI_REG_RDI_DEBUG_STATUS_REG, + 1, val); + if (rc) + break; + netdev_info(bp->dev, "\tdbg_sel %x: %08x\n", dbg_sel, val[0]); + dbg_sel++; + } + dbg_sel = 0x80001000; + rc = bnxt_dbg_hwrm_wr_reg(bp, RDI_REG_RDI_DEBUG_CONTROL_REG, + dbg_sel); + if (!rc) + rc = bnxt_dbg_hwrm_rd_reg(bp, RDI_REG_RDI_DEBUG_STATUS_REG, + 1, val); + if (!rc) + netdev_info(bp->dev, "\tdbg_sel %x: %08x\n", dbg_sel, val[0]); +} + +static void bnxt_dump_tx_sw_state(struct bnxt_napi *bnapi) +{ + struct bnxt_tx_ring_info *txr = bnapi->tx_ring; + int i = bnapi->index; + + if (!txr) + return; + + netdev_info(bnapi->bp->dev, "[%d]: tx{fw_ring: %d prod: %x cons: %x}\n", + i, txr->tx_ring_struct.fw_ring_id, txr->tx_prod, + txr->tx_cons); +} + +static void bnxt_dump_rx_sw_state(struct bnxt_napi *bnapi) +{ + struct bnxt_rx_ring_info *rxr = bnapi->rx_ring; + int i = bnapi->index; + + if (!rxr) + return; + + netdev_info(bnapi->bp->dev, "[%d]: rx{fw_ring: %d prod: %x} rx_agg{fw_ring: %d agg_prod: %x sw_agg_prod: %x}\n", + i, rxr->rx_ring_struct.fw_ring_id, rxr->rx_prod, + rxr->rx_agg_ring_struct.fw_ring_id, rxr->rx_agg_prod, + rxr->rx_sw_agg_prod); +} + +static void bnxt_dump_cp_sw_state(struct bnxt_napi *bnapi) +{ + struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring; + int i = bnapi->index; + + netdev_info(bnapi->bp->dev, "[%d]: cp{fw_ring: %d raw_cons: %x}\n", + i, cpr->cp_ring_struct.fw_ring_id, cpr->cp_raw_cons); +} + +static void bnxt_dbg_dump_states(struct bnxt *bp) +{ + int i; + struct bnxt_napi *bnapi; + + for (i = 0; i < bp->cp_nr_rings; i++) { + bnapi = bp->bnapi[i]; + if (netif_msg_drv(bp)) { + bnxt_dump_tx_sw_state(bnapi); + bnxt_dump_rx_sw_state(bnapi); + bnxt_dump_cp_sw_state(bnapi); + } + bnxt_dbg_dump_hw_ring(bp, i); + } + bnxt_dbg_dump_hw_states(bp); +} + +static void bnxt_reset_task(struct bnxt *bp, bool silent) +{ + if (!silent) { + bnxt_dbg_dump_states(bp); + usleep_range(10, 50); + bnxt_dbg_dump_states(bp); + } + + if (netif_running(bp->dev)) { + int rc; + + if (!silent) + bnxt_ulp_stop(bp); + bnxt_close_nic(bp, false, false); + rc = bnxt_open_nic(bp, false, false); + if (!silent && !rc) + bnxt_ulp_start(bp); + } +} + +static void bnxt_tx_timeout(struct net_device *dev) +{ + struct bnxt *bp = netdev_priv(dev); + + netdev_err(bp->dev, "TX timeout detected, starting reset task!\n"); + set_bit(BNXT_RESET_TASK_SP_EVENT, &bp->sp_event); + schedule_work(&bp->sp_task); +} + +#ifdef CONFIG_NET_POLL_CONTROLLER +static void bnxt_poll_controller(struct net_device *dev) +{ + struct bnxt *bp = netdev_priv(dev); + int i; + + /* Only process tx rings/combined rings in netpoll mode. */ + for (i = 0; i < bp->tx_nr_rings; i++) { + struct bnxt_tx_ring_info *txr = &bp->tx_ring[i]; + + napi_schedule(&txr->bnapi->napi); + } +} +#endif + +static void bnxt_timer(unsigned long data) +{ + struct bnxt *bp = (struct bnxt *)data; + struct net_device *dev = bp->dev; + + if (!netif_running(dev)) + return; + + if (atomic_read(&bp->intr_sem) != 0) + goto bnxt_restart_timer; + + if (bp->link_info.link_up && (bp->flags & BNXT_FLAG_PORT_STATS) && + bp->stats_coal_ticks) { + set_bit(BNXT_PERIODIC_STATS_SP_EVENT, &bp->sp_event); + schedule_work(&bp->sp_task); + } +bnxt_restart_timer: + mod_timer(&bp->timer, jiffies + bp->current_interval); +} + +static void bnxt_rtnl_lock_sp(struct bnxt *bp) +{ + /* We are called from bnxt_sp_task which has BNXT_STATE_IN_SP_TASK + * set. If the device is being closed, bnxt_close() may be holding + * rtnl() and waiting for BNXT_STATE_IN_SP_TASK to clear. So we + * must clear BNXT_STATE_IN_SP_TASK before holding rtnl(). + */ + clear_bit(BNXT_STATE_IN_SP_TASK, &bp->state); + rtnl_lock(); +} + +static void bnxt_rtnl_unlock_sp(struct bnxt *bp) +{ + set_bit(BNXT_STATE_IN_SP_TASK, &bp->state); + rtnl_unlock(); +} + +/* Only called from bnxt_sp_task() */ +static void bnxt_reset(struct bnxt *bp, bool silent) +{ + bnxt_rtnl_lock_sp(bp); + if (test_bit(BNXT_STATE_OPEN, &bp->state)) + bnxt_reset_task(bp, silent); + bnxt_rtnl_unlock_sp(bp); +} + +static void bnxt_cfg_ntp_filters(struct bnxt *); + +static void bnxt_sp_task(struct work_struct *work) +{ + struct bnxt *bp = container_of(work, struct bnxt, sp_task); + + set_bit(BNXT_STATE_IN_SP_TASK, &bp->state); + smp_mb__after_atomic(); + if (!test_bit(BNXT_STATE_OPEN, &bp->state)) { + clear_bit(BNXT_STATE_IN_SP_TASK, &bp->state); + return; + } + + if (test_and_clear_bit(BNXT_RX_MASK_SP_EVENT, &bp->sp_event)) + bnxt_cfg_rx_mode(bp); + + if (test_and_clear_bit(BNXT_RX_NTP_FLTR_SP_EVENT, &bp->sp_event)) + bnxt_cfg_ntp_filters(bp); + if (test_and_clear_bit(BNXT_HWRM_EXEC_FWD_REQ_SP_EVENT, &bp->sp_event)) + bnxt_hwrm_exec_fwd_req(bp); + if (test_and_clear_bit(BNXT_VXLAN_ADD_PORT_SP_EVENT, &bp->sp_event)) { + bnxt_hwrm_tunnel_dst_port_alloc( + bp, bp->vxlan_port, + TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_VXLAN); + } + if (test_and_clear_bit(BNXT_VXLAN_DEL_PORT_SP_EVENT, &bp->sp_event)) { + bnxt_hwrm_tunnel_dst_port_free( + bp, TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_VXLAN); + } + if (test_and_clear_bit(BNXT_GENEVE_ADD_PORT_SP_EVENT, &bp->sp_event)) { + bnxt_hwrm_tunnel_dst_port_alloc( + bp, bp->nge_port, + TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_GENEVE); + } + if (test_and_clear_bit(BNXT_GENEVE_DEL_PORT_SP_EVENT, &bp->sp_event)) { + bnxt_hwrm_tunnel_dst_port_free( + bp, TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_GENEVE); + } + if (test_and_clear_bit(BNXT_HWRM_PF_UNLOAD_SP_EVENT, &bp->sp_event)) + netdev_info(bp->dev, "Receive PF driver unload event!"); + + if (test_and_clear_bit(BNXT_PERIODIC_STATS_SP_EVENT, &bp->sp_event)) + bnxt_hwrm_port_qstats(bp); + + /* These functions below will clear BNXT_STATE_IN_SP_TASK. They + * must be the last functions to be called before exiting. + */ + if (test_and_clear_bit(BNXT_LINK_CHNG_SP_EVENT, &bp->sp_event)) { + int rc = 0; + + if (test_and_clear_bit(BNXT_LINK_SPEED_CHNG_SP_EVENT, + &bp->sp_event)) + bnxt_hwrm_phy_qcaps(bp); + + bnxt_rtnl_lock_sp(bp); + if (test_bit(BNXT_STATE_OPEN, &bp->state)) + rc = bnxt_update_link(bp, true); + bnxt_rtnl_unlock_sp(bp); + if (rc) + netdev_err(bp->dev, "SP task can't update link (rc: %x)\n", + rc); + } + if (test_and_clear_bit(BNXT_HWRM_PORT_MODULE_SP_EVENT, &bp->sp_event)) { + bnxt_rtnl_lock_sp(bp); + if (test_bit(BNXT_STATE_OPEN, &bp->state)) + bnxt_get_port_module_status(bp); + bnxt_rtnl_unlock_sp(bp); + } + if (test_and_clear_bit(BNXT_RESET_TASK_SP_EVENT, &bp->sp_event)) + bnxt_reset(bp, false); + + if (test_and_clear_bit(BNXT_RESET_TASK_SILENT_SP_EVENT, &bp->sp_event)) + bnxt_reset(bp, true); + + smp_mb__before_atomic(); + clear_bit(BNXT_STATE_IN_SP_TASK, &bp->state); +} + +/* Under rtnl_lock */ +int bnxt_reserve_rings(struct bnxt *bp, int tx, int rx, bool sh, int tcs, + int tx_xdp) +{ + int max_rx, max_tx, tx_sets = 1; + int tx_rings_needed; + int rc; + + if (tcs) + tx_sets = tcs; + + rc = bnxt_get_max_rings(bp, &max_rx, &max_tx, sh); + if (rc) + return rc; + + if (max_rx < rx) + return -ENOMEM; + + tx_rings_needed = tx * tx_sets + tx_xdp; + if (max_tx < tx_rings_needed) + return -ENOMEM; + + if (bnxt_hwrm_reserve_tx_rings(bp, &tx_rings_needed) || + tx_rings_needed < (tx * tx_sets + tx_xdp)) + return -ENOMEM; + return 0; +} + +static void bnxt_unmap_bars(struct bnxt *bp, struct pci_dev *pdev) +{ + if (bp->bar2) { + pci_iounmap(pdev, bp->bar2); + bp->bar2 = NULL; + } + + if (bp->bar1) { + pci_iounmap(pdev, bp->bar1); + bp->bar1 = NULL; + } + + if (bp->bar0) { + pci_iounmap(pdev, bp->bar0); + bp->bar0 = NULL; + } +} + +static void bnxt_cleanup_pci(struct bnxt *bp) +{ + bnxt_unmap_bars(bp, bp->pdev); + pci_release_regions(bp->pdev); + pci_disable_device(bp->pdev); +} + +static int bnxt_init_board(struct pci_dev *pdev, struct net_device *dev) +{ + int rc; + struct bnxt *bp = netdev_priv(dev); + + SET_NETDEV_DEV(dev, &pdev->dev); + + /* enable device (incl. PCI PM wakeup), and bus-mastering */ + rc = pci_enable_device(pdev); + if (rc) { + dev_err(&pdev->dev, "Cannot enable PCI device, aborting\n"); + goto init_err; + } + + if (!(pci_resource_flags(pdev, 0) & IORESOURCE_MEM)) { + dev_err(&pdev->dev, + "Cannot find PCI device base address, aborting\n"); + rc = -ENODEV; + goto init_err_disable; + } + + rc = pci_request_regions(pdev, DRV_MODULE_NAME); + if (rc) { + dev_err(&pdev->dev, "Cannot obtain PCI resources, aborting\n"); + goto init_err_disable; + } + + if (dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64)) != 0 && + dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32)) != 0) { + dev_err(&pdev->dev, "System does not support DMA, aborting\n"); + goto init_err_disable; + } + + pci_set_master(pdev); + + bp->dev = dev; + bp->pdev = pdev; + + bp->bar0 = pci_ioremap_bar(pdev, 0); + if (!bp->bar0) { + dev_err(&pdev->dev, "Cannot map device registers, aborting\n"); + rc = -ENOMEM; + goto init_err_release; + } + + bp->bar1 = pci_ioremap_bar(pdev, 2); + if (!bp->bar1) { + dev_err(&pdev->dev, "Cannot map doorbell registers, aborting\n"); + rc = -ENOMEM; + goto init_err_release; + } + + bp->bar2 = pci_ioremap_bar(pdev, 4); + if (!bp->bar2) { + dev_err(&pdev->dev, "Cannot map bar4 registers, aborting\n"); + rc = -ENOMEM; + goto init_err_release; + } + + pci_enable_pcie_error_reporting(pdev); + + INIT_WORK(&bp->sp_task, bnxt_sp_task); + + spin_lock_init(&bp->ntp_fltr_lock); + + bp->rx_ring_size = BNXT_DEFAULT_RX_RING_SIZE; + bp->tx_ring_size = BNXT_DEFAULT_TX_RING_SIZE; + + /* tick values in micro seconds */ + bp->rx_coal_ticks = 12; + bp->rx_coal_bufs = 30; + bp->rx_coal_ticks_irq = 1; + bp->rx_coal_bufs_irq = 2; + + bp->tx_coal_ticks = 25; + bp->tx_coal_bufs = 30; + bp->tx_coal_ticks_irq = 2; + bp->tx_coal_bufs_irq = 2; + + bp->stats_coal_ticks = BNXT_DEF_STATS_COAL_TICKS; + + init_timer(&bp->timer); + bp->timer.data = (unsigned long)bp; + bp->timer.function = bnxt_timer; + bp->current_interval = BNXT_TIMER_INTERVAL; + + clear_bit(BNXT_STATE_OPEN, &bp->state); + return 0; + +init_err_release: + bnxt_unmap_bars(bp, pdev); + pci_release_regions(pdev); + +init_err_disable: + pci_disable_device(pdev); + +init_err: + return rc; +} + +/* rtnl_lock held */ +static int bnxt_change_mac_addr(struct net_device *dev, void *p) +{ + struct sockaddr *addr = p; + struct bnxt *bp = netdev_priv(dev); + int rc = 0; + + if (!is_valid_ether_addr(addr->sa_data)) + return -EADDRNOTAVAIL; + + rc = bnxt_approve_mac(bp, addr->sa_data); + if (rc) + return rc; + + if (ether_addr_equal(addr->sa_data, dev->dev_addr)) + return 0; + + memcpy(dev->dev_addr, addr->sa_data, dev->addr_len); + if (netif_running(dev)) { + bnxt_close_nic(bp, false, false); + rc = bnxt_open_nic(bp, false, false); + } + + return rc; +} + +/* rtnl_lock held */ +static int bnxt_change_mtu(struct net_device *dev, int new_mtu) +{ + struct bnxt *bp = netdev_priv(dev); + +#ifndef HAVE_MIN_MTU + if (new_mtu < 60 || new_mtu > 9500) + return -EINVAL; + + if (BNXT_RX_PAGE_MODE(bp) && new_mtu > BNXT_MAX_PAGE_MODE_MTU) + return -EINVAL; +#endif + + if (netif_running(dev)) + bnxt_close_nic(bp, false, false); + + dev->mtu = new_mtu; + bnxt_set_ring_params(bp); + + if (netif_running(dev)) + return bnxt_open_nic(bp, false, false); + + return 0; +} + +#if defined(HAVE_SETUP_TC) || defined(CONFIG_BNXT_BPO_DCB) +int bnxt_setup_mq_tc(struct net_device *dev, u8 tc) +{ + struct bnxt *bp = netdev_priv(dev); + bool sh = false; + int rc; + + if (tc > bp->max_tc) { + netdev_err(dev, "Too many traffic classes requested: %d. Max supported is %d.\n", + tc, bp->max_tc); + return -EINVAL; + } + + if (netdev_get_num_tc(dev) == tc) + return 0; + + if (bp->flags & BNXT_FLAG_SHARED_RINGS) + sh = true; + + rc = bnxt_reserve_rings(bp, bp->tx_nr_rings_per_tc, bp->rx_nr_rings, + sh, tc, bp->tx_nr_rings_xdp); + if (rc) + return rc; + + /* Needs to close the device and do hw resource re-allocations */ + if (netif_running(bp->dev)) + bnxt_close_nic(bp, true, false); + + if (tc) { + bp->tx_nr_rings = bp->tx_nr_rings_per_tc * tc; + netdev_set_num_tc(dev, tc); + } else { + bp->tx_nr_rings = bp->tx_nr_rings_per_tc; + netdev_reset_tc(dev); + } + bp->cp_nr_rings = sh ? max_t(int, bp->tx_nr_rings, bp->rx_nr_rings) : + bp->tx_nr_rings + bp->rx_nr_rings; + bp->num_stat_ctxs = bp->cp_nr_rings; + + if (netif_running(bp->dev)) + return bnxt_open_nic(bp, true, false); + + return 0; +} + +#ifdef HAVE_TC_TO_NETDEV +#ifdef HAVE_CHAIN_INDEX +static int bnxt_setup_tc(struct net_device *dev, u32 handle, u32 chain_index, + __be16 proto, struct tc_to_netdev *ntc) +#else +static int bnxt_setup_tc(struct net_device *dev, u32 handle, __be16 proto, + struct tc_to_netdev *ntc) +#endif +{ + if (ntc->type != TC_SETUP_MQPRIO) + return -EINVAL; + +#ifdef HAVE_MQPRIO_QOPT + ntc->mqprio->hw = TC_MQPRIO_HW_OFFLOAD_TCS; + + return bnxt_setup_mq_tc(dev, ntc->mqprio->num_tc); +#else + return bnxt_setup_mq_tc(dev, ntc->tc); +#endif +} +#endif + +#endif + +#ifdef CONFIG_RFS_ACCEL +#ifdef NEW_FLOW_KEYS +static bool bnxt_fltr_match(struct bnxt_ntuple_filter *f1, + struct bnxt_ntuple_filter *f2) +{ + struct flow_keys *keys1 = &f1->fkeys; + struct flow_keys *keys2 = &f2->fkeys; + + if (keys1->addrs.v4addrs.src == keys2->addrs.v4addrs.src && + keys1->addrs.v4addrs.dst == keys2->addrs.v4addrs.dst && + keys1->ports.ports == keys2->ports.ports && + keys1->basic.ip_proto == keys2->basic.ip_proto && + keys1->basic.n_proto == keys2->basic.n_proto && +#ifdef HAVE_NEW_FLOW_DISSECTOR + keys1->control.flags == keys2->control.flags && +#endif + ether_addr_equal(f1->src_mac_addr, f2->src_mac_addr) && + ether_addr_equal(f1->dst_mac_addr, f2->dst_mac_addr)) + return true; + + return false; +} + +#else + +static bool bnxt_fltr_match(struct bnxt_ntuple_filter *f1, + struct bnxt_ntuple_filter *f2) +{ + struct flow_keys *keys1 = &f1->fkeys; + struct flow_keys *keys2 = &f2->fkeys; + + if (keys1->src == keys2->src && + keys1->dst == keys2->dst && + keys1->ports == keys2->ports && + keys1->ip_proto == keys2->ip_proto && +#ifdef HAVE_N_PROTO + keys1->n_proto == keys2->n_proto && +#endif + ether_addr_equal(f1->src_mac_addr, f2->src_mac_addr) && + ether_addr_equal(f1->dst_mac_addr, f2->dst_mac_addr)) + return true; + + return false; +} +#endif /* NEW_FLOW_KEYS */ + +static int bnxt_rx_flow_steer(struct net_device *dev, const struct sk_buff *skb, + u16 rxq_index, u32 flow_id) +{ + struct bnxt *bp = netdev_priv(dev); + struct bnxt_ntuple_filter *fltr, *new_fltr; + struct flow_keys *fkeys; + struct ethhdr *eth = (struct ethhdr *)skb_mac_header(skb); + int rc = 0, idx, bit_id, l2_idx = 0; + struct hlist_head *head; + struct hlist_node __maybe_unused *node; + +#ifdef HAVE_INNER_NETWORK_OFFSET + if (skb->encapsulation) + return -EPROTONOSUPPORT; +#endif + + if (!ether_addr_equal(dev->dev_addr, eth->h_dest)) { + struct bnxt_vnic_info *vnic = &bp->vnic_info[0]; + int off = 0, j; + + netif_addr_lock_bh(dev); + for (j = 0; j < vnic->uc_filter_count; j++, off += ETH_ALEN) { + if (ether_addr_equal(eth->h_dest, + vnic->uc_list + off)) { + l2_idx = j + 1; + break; + } + } + netif_addr_unlock_bh(dev); + if (!l2_idx) + return -EINVAL; + } + new_fltr = kzalloc(sizeof(*new_fltr), GFP_ATOMIC); + if (!new_fltr) + return -ENOMEM; + + fkeys = &new_fltr->fkeys; +#ifdef NEW_FLOW_KEYS + if (!skb_flow_dissect_flow_keys(skb, fkeys, 0)) { + rc = -EPROTONOSUPPORT; + goto err_free; + } + + if ((fkeys->basic.n_proto != htons(ETH_P_IP) && + fkeys->basic.n_proto != htons(ETH_P_IPV6)) || + ((fkeys->basic.ip_proto != IPPROTO_TCP) && + (fkeys->basic.ip_proto != IPPROTO_UDP))) { + rc = -EPROTONOSUPPORT; + goto err_free; + } + if (fkeys->basic.n_proto == htons(ETH_P_IPV6) && + bp->hwrm_spec_code < 0x10601) { + rc = -EPROTONOSUPPORT; + goto err_free; + } +#ifdef HAVE_NEW_FLOW_DISSECTOR + if ((fkeys->control.flags & FLOW_DIS_ENCAPSULATION) && + bp->hwrm_spec_code < 0x10601) { + rc = -EPROTONOSUPPORT; + goto err_free; + } +#endif +#else + if (!skb_flow_dissect(skb, fkeys)) { + rc = -EPROTONOSUPPORT; + goto err_free; + } + +#ifdef HAVE_N_PROTO + if ((fkeys->n_proto != htons(ETH_P_IP)) || + ((fkeys->ip_proto != IPPROTO_TCP) && + (fkeys->ip_proto != IPPROTO_UDP))) { + rc = -EPROTONOSUPPORT; + goto err_free; + } +#else + if ((skb->protocol != htons(ETH_P_IP)) || + ((fkeys->ip_proto != IPPROTO_TCP) && + (fkeys->ip_proto != IPPROTO_UDP))) { + rc = -EPROTONOSUPPORT; + goto err_free; + } +#endif +#endif + + memcpy(new_fltr->dst_mac_addr, eth->h_dest, ETH_ALEN); + memcpy(new_fltr->src_mac_addr, eth->h_source, ETH_ALEN); + +#ifdef HAVE_GET_HASH_RAW + idx = skb_get_hash_raw(skb) & BNXT_NTP_FLTR_HASH_MASK; +#else + idx = skb->rxhash & BNXT_NTP_FLTR_HASH_MASK; +#endif + head = &bp->ntp_fltr_hash_tbl[idx]; + rcu_read_lock(); + __hlist_for_each_entry_rcu(fltr, node, head, hash) { + if (bnxt_fltr_match(fltr, new_fltr)) { + rcu_read_unlock(); + rc = 0; + goto err_free; + } + } + rcu_read_unlock(); + + spin_lock_bh(&bp->ntp_fltr_lock); + bit_id = bitmap_find_free_region(bp->ntp_fltr_bmap, + BNXT_NTP_FLTR_MAX_FLTR, 0); + if (bit_id < 0) { + spin_unlock_bh(&bp->ntp_fltr_lock); + rc = -ENOMEM; + goto err_free; + } + + new_fltr->sw_id = (u16)bit_id; + new_fltr->flow_id = flow_id; + new_fltr->l2_fltr_idx = l2_idx; + new_fltr->rxq = rxq_index; + hlist_add_head_rcu(&new_fltr->hash, head); + bp->ntp_fltr_count++; + spin_unlock_bh(&bp->ntp_fltr_lock); + + set_bit(BNXT_RX_NTP_FLTR_SP_EVENT, &bp->sp_event); + schedule_work(&bp->sp_task); + + return new_fltr->sw_id; + +err_free: + kfree(new_fltr); + return rc; +} + +static void bnxt_cfg_ntp_filters(struct bnxt *bp) +{ + int i; + + for (i = 0; i < BNXT_NTP_FLTR_HASH_SIZE; i++) { + struct hlist_head *head; + struct hlist_node *tmp, __maybe_unused *nxt; + struct bnxt_ntuple_filter *fltr; + int rc; + + head = &bp->ntp_fltr_hash_tbl[i]; + __hlist_for_each_entry_safe(fltr, nxt, tmp, head, hash) { + bool del = false; + + if (test_bit(BNXT_FLTR_VALID, &fltr->state)) { + if (rps_may_expire_flow(bp->dev, fltr->rxq, + fltr->flow_id, + fltr->sw_id)) { + bnxt_hwrm_cfa_ntuple_filter_free(bp, + fltr); + del = true; + } + } else { + rc = bnxt_hwrm_cfa_ntuple_filter_alloc(bp, + fltr); + if (rc) + del = true; + else + set_bit(BNXT_FLTR_VALID, &fltr->state); + } + + if (del) { + spin_lock_bh(&bp->ntp_fltr_lock); + hlist_del_rcu(&fltr->hash); + bp->ntp_fltr_count--; + spin_unlock_bh(&bp->ntp_fltr_lock); + synchronize_rcu(); + clear_bit(fltr->sw_id, bp->ntp_fltr_bmap); + kfree(fltr); + } + } + } +} + +#else + +static void bnxt_cfg_ntp_filters(struct bnxt *bp) +{ +} + +#endif /* CONFIG_RFS_ACCEL */ + +#ifdef HAVE_NDO_ADD_VXLAN +static void bnxt_add_vxlan_port(struct net_device *dev, sa_family_t sa_family, + __be16 port) +{ + struct bnxt *bp = netdev_priv(dev); + + if (!netif_running(dev)) + return; + + if (sa_family != AF_INET6 && sa_family != AF_INET) + return; + + if (bp->vxlan_port_cnt && bp->vxlan_port != port) + return; + + bp->vxlan_port_cnt++; + if (bp->vxlan_port_cnt == 1) { + bp->vxlan_port = port; + set_bit(BNXT_VXLAN_ADD_PORT_SP_EVENT, &bp->sp_event); + schedule_work(&bp->sp_task); + } +} + +static void bnxt_del_vxlan_port(struct net_device *dev, sa_family_t sa_family, + __be16 port) +{ + struct bnxt *bp = netdev_priv(dev); + + if (!netif_running(dev)) + return; + + if (sa_family != AF_INET6 && sa_family != AF_INET) + return; + + if (bp->vxlan_port_cnt && bp->vxlan_port == port) { + bp->vxlan_port_cnt--; + + if (bp->vxlan_port_cnt == 0) { + set_bit(BNXT_VXLAN_DEL_PORT_SP_EVENT, &bp->sp_event); + schedule_work(&bp->sp_task); + } + } +} +#elif defined(HAVE_NDO_UDP_TUNNEL) +static void bnxt_udp_tunnel_add(struct net_device *dev, + struct udp_tunnel_info *ti) +{ + struct bnxt *bp = netdev_priv(dev); + + if (ti->sa_family != AF_INET6 && ti->sa_family != AF_INET) + return; + + if (!netif_running(dev)) + return; + + switch (ti->type) { + case UDP_TUNNEL_TYPE_VXLAN: + if (bp->vxlan_port_cnt && bp->vxlan_port != ti->port) + return; + + bp->vxlan_port_cnt++; + if (bp->vxlan_port_cnt == 1) { + bp->vxlan_port = ti->port; + set_bit(BNXT_VXLAN_ADD_PORT_SP_EVENT, &bp->sp_event); + schedule_work(&bp->sp_task); + } + break; + case UDP_TUNNEL_TYPE_GENEVE: + if (bp->nge_port_cnt && bp->nge_port != ti->port) + return; + + bp->nge_port_cnt++; + if (bp->nge_port_cnt == 1) { + bp->nge_port = ti->port; + set_bit(BNXT_GENEVE_ADD_PORT_SP_EVENT, &bp->sp_event); + } + break; + default: + return; + } + + schedule_work(&bp->sp_task); +} + +static void bnxt_udp_tunnel_del(struct net_device *dev, + struct udp_tunnel_info *ti) +{ + struct bnxt *bp = netdev_priv(dev); + + if (ti->sa_family != AF_INET6 && ti->sa_family != AF_INET) + return; + + if (!netif_running(dev)) + return; + + switch (ti->type) { + case UDP_TUNNEL_TYPE_VXLAN: + if (!bp->vxlan_port_cnt || bp->vxlan_port != ti->port) + return; + bp->vxlan_port_cnt--; + + if (bp->vxlan_port_cnt != 0) + return; + + set_bit(BNXT_VXLAN_DEL_PORT_SP_EVENT, &bp->sp_event); + break; + case UDP_TUNNEL_TYPE_GENEVE: + if (!bp->nge_port_cnt || bp->nge_port != ti->port) + return; + bp->nge_port_cnt--; + + if (bp->nge_port_cnt != 0) + return; + + set_bit(BNXT_GENEVE_DEL_PORT_SP_EVENT, &bp->sp_event); + break; + default: + return; + } + + schedule_work(&bp->sp_task); +} +#endif + +#ifdef OLD_VLAN +static void bnxt_vlan_rx_register(struct net_device *dev, + struct vlan_group *vlgrp) +{ + struct bnxt *bp = netdev_priv(dev); + + if (!netif_running(dev)) { + bp->vlgrp = vlgrp; + return; + } + bnxt_disable_napi(bp); + bnxt_disable_int_sync(bp); + bp->vlgrp = vlgrp; + bnxt_enable_napi(bp); + bnxt_enable_int(bp); +} +#endif + +#ifdef HAVE_NDO_BRIDGE_GETLINK +static int bnxt_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq, + struct net_device *dev, u32 filter_mask, + int nlflags) +{ + struct bnxt *bp = netdev_priv(dev); + + return ndo_dflt_bridge_getlink(skb, pid, seq, dev, bp->br_mode, 0, 0, + nlflags, filter_mask, NULL); +} + +static int bnxt_bridge_setlink(struct net_device *dev, struct nlmsghdr *nlh, + u16 flags) +{ + struct bnxt *bp = netdev_priv(dev); + struct nlattr *attr, *br_spec; + int rem, rc = 0; + + if (bp->hwrm_spec_code < 0x10707 || !BNXT_SINGLE_PF(bp)) + return -EOPNOTSUPP; + + br_spec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC); + if (!br_spec) + return -EINVAL; + + nla_for_each_nested(attr, br_spec, rem) { + u16 mode; + + if (nla_type(attr) != IFLA_BRIDGE_MODE) + continue; + + if (nla_len(attr) < sizeof(mode)) + return -EINVAL; + + mode = nla_get_u16(attr); + if (mode == bp->br_mode) + break; + + rc = bnxt_hwrm_set_br_mode(bp, mode); + if (!rc) + bp->br_mode = mode; + break; + } + return rc; +} +#endif + +static const struct net_device_ops bnxt_netdev_ops = { + .ndo_open = bnxt_open, + .ndo_start_xmit = bnxt_start_xmit, + .ndo_stop = bnxt_close, +#ifdef NETDEV_GET_STATS64 + .ndo_get_stats64 = bnxt_get_stats64, +#else + .ndo_get_stats = bnxt_get_stats, +#endif + .ndo_set_rx_mode = bnxt_set_rx_mode, + .ndo_do_ioctl = bnxt_ioctl, + .ndo_validate_addr = eth_validate_addr, + .ndo_set_mac_address = bnxt_change_mac_addr, + .ndo_change_mtu = bnxt_change_mtu, +#ifdef NETDEV_FEATURE_CONTROL + .ndo_fix_features = bnxt_fix_features, + .ndo_set_features = bnxt_set_features, +#endif + .ndo_tx_timeout = bnxt_tx_timeout, +#ifdef CONFIG_BNXT_BPO_SRIOV +#ifdef HAVE_NDO_GET_VF_CONFIG + .ndo_get_vf_config = bnxt_get_vf_config, + .ndo_set_vf_mac = bnxt_set_vf_mac, + .ndo_set_vf_vlan = bnxt_set_vf_vlan, + .ndo_set_vf_rate = bnxt_set_vf_bw, +#ifdef HAVE_NDO_SET_VF_LINK_STATE + .ndo_set_vf_link_state = bnxt_set_vf_link_state, +#endif +#ifdef HAVE_VF_SPOOFCHK + .ndo_set_vf_spoofchk = bnxt_set_vf_spoofchk, +#endif +#endif +#endif +#ifdef CONFIG_NET_POLL_CONTROLLER + .ndo_poll_controller = bnxt_poll_controller, +#endif +#ifdef HAVE_SETUP_TC +#ifdef HAVE_TC_TO_NETDEV + .ndo_setup_tc = bnxt_setup_tc, +#else + .ndo_setup_tc = bnxt_setup_mq_tc, +#endif +#endif +#ifdef CONFIG_RFS_ACCEL + .ndo_rx_flow_steer = bnxt_rx_flow_steer, +#endif +#if defined(HAVE_NDO_ADD_VXLAN) + .ndo_add_vxlan_port = bnxt_add_vxlan_port, + .ndo_del_vxlan_port = bnxt_del_vxlan_port, +#elif defined(HAVE_NDO_UDP_TUNNEL) + .ndo_udp_tunnel_add = bnxt_udp_tunnel_add, + .ndo_udp_tunnel_del = bnxt_udp_tunnel_del, +#endif +#ifdef BNXT_PRIV_RX_BUSY_POLL + .ndo_busy_poll = bnxt_busy_poll, +#endif +#ifdef OLD_VLAN + .ndo_vlan_rx_register = bnxt_vlan_rx_register, +#endif +#ifdef HAVE_NDO_XDP + .ndo_xdp = bnxt_xdp, +#endif +#ifdef HAVE_NDO_BRIDGE_GETLINK + .ndo_bridge_getlink = bnxt_bridge_getlink, + .ndo_bridge_setlink = bnxt_bridge_setlink, +#endif +}; + +static void bnxt_remove_one(struct pci_dev *pdev) +{ + struct net_device *dev = pci_get_drvdata(pdev); + struct bnxt *bp = netdev_priv(dev); + + if (BNXT_PF(bp)) + bnxt_sriov_disable(bp); + + bnxt_ptp_free(bp); + pci_disable_pcie_error_reporting(pdev); + unregister_netdev(dev); + cancel_work_sync(&bp->sp_task); + bp->sp_event = 0; + + bnxt_clear_int_mode(bp); + bnxt_hwrm_func_drv_unrgtr(bp); + bnxt_free_hwrm_resources(bp); + bnxt_ethtool_free(bp); + bnxt_dcb_free(bp); + kfree(bp->edev); + bp->edev = NULL; + kfree(bp->ptp_cfg); + bp->ptp_cfg = NULL; +#ifdef HAVE_NDO_XDP + if (bp->xdp_prog) + bpf_prog_put(bp->xdp_prog); +#endif + bnxt_cleanup_pci(bp); + free_netdev(dev); +} + +static int bnxt_probe_phy(struct bnxt *bp) +{ + int rc = 0; + struct bnxt_link_info *link_info = &bp->link_info; + + rc = bnxt_hwrm_phy_qcaps(bp); + if (rc) { + netdev_err(bp->dev, "Probe phy can't get phy capabilities (rc: %x)\n", + rc); + return rc; + } + + rc = bnxt_update_link(bp, false); + if (rc) { + netdev_err(bp->dev, "Probe phy can't update link (rc: %x)\n", + rc); + return rc; + } + + /* Older firmware does not have supported_auto_speeds, so assume + * that all supported speeds can be autonegotiated. + */ + if (link_info->auto_link_speeds && !link_info->support_auto_speeds) + link_info->support_auto_speeds = link_info->support_speeds; + + /*initialize the ethool setting copy with NVM settings */ + if (BNXT_AUTO_MODE(link_info->auto_mode)) { + link_info->autoneg = BNXT_AUTONEG_SPEED; + if (bp->hwrm_spec_code >= 0x10201) { + if (link_info->auto_pause_setting & + PORT_PHY_CFG_REQ_AUTO_PAUSE_AUTONEG_PAUSE) + link_info->autoneg |= BNXT_AUTONEG_FLOW_CTRL; + } else { + link_info->autoneg |= BNXT_AUTONEG_FLOW_CTRL; + } + link_info->advertising = link_info->auto_link_speeds; + } else { + link_info->req_link_speed = link_info->force_link_speed; + link_info->req_duplex = link_info->duplex_setting; + } + if (link_info->autoneg & BNXT_AUTONEG_FLOW_CTRL) + link_info->req_flow_ctrl = + link_info->auto_pause_setting & BNXT_LINK_PAUSE_BOTH; + else + link_info->req_flow_ctrl = link_info->force_pause_setting; + + return rc; +} + +static int bnxt_get_max_irq(struct pci_dev *pdev) +{ + u16 ctrl; +#ifndef HAVE_MSIX_CAP + int msix_cap; + + msix_cap = pci_find_capability(pdev, PCI_CAP_ID_MSIX); + if (!msix_cap) + return 1; + + pci_read_config_word(pdev, msix_cap + PCI_MSIX_FLAGS, &ctrl); +#else + if (!pdev->msix_cap) + return 1; + + pci_read_config_word(pdev, pdev->msix_cap + PCI_MSIX_FLAGS, &ctrl); +#endif + return (ctrl & PCI_MSIX_FLAGS_QSIZE) + 1; +} + +static void _bnxt_get_max_rings(struct bnxt *bp, int *max_rx, int *max_tx, + int *max_cp) +{ + int max_ring_grps = 0; + +#ifdef CONFIG_BNXT_BPO_SRIOV + if (!BNXT_PF(bp)) { + *max_tx = bp->vf.max_tx_rings; + *max_rx = bp->vf.max_rx_rings; + *max_cp = min_t(int, bp->vf.max_irqs, bp->vf.max_cp_rings); + *max_cp = min_t(int, *max_cp, bp->vf.max_stat_ctxs); + max_ring_grps = bp->vf.max_hw_ring_grps; + } else +#endif + { + *max_tx = bp->pf.max_tx_rings; + *max_rx = bp->pf.max_rx_rings; + *max_cp = min_t(int, bp->pf.max_irqs, bp->pf.max_cp_rings); + *max_cp = min_t(int, *max_cp, bp->pf.max_stat_ctxs); + max_ring_grps = bp->pf.max_hw_ring_grps; + } + if (BNXT_CHIP_TYPE_NITRO_A0(bp) && BNXT_PF(bp)) { + *max_cp -= 1; + *max_rx -= 2; + } + if (bp->flags & BNXT_FLAG_AGG_RINGS) + *max_rx >>= 1; + *max_rx = min_t(int, *max_rx, max_ring_grps); +} + +int bnxt_get_max_rings(struct bnxt *bp, int *max_rx, int *max_tx, bool shared) +{ + int rx, tx, cp; + + _bnxt_get_max_rings(bp, &rx, &tx, &cp); + if (!rx || !tx || !cp) + return -ENOMEM; + + *max_rx = rx; + *max_tx = tx; + return bnxt_trim_rings(bp, max_rx, max_tx, cp, shared); +} + +static int bnxt_get_dflt_rings(struct bnxt *bp, int *max_rx, int *max_tx, + bool shared) +{ + int rc; + + rc = bnxt_get_max_rings(bp, max_rx, max_tx, shared); + if (rc && (bp->flags & BNXT_FLAG_AGG_RINGS)) { + /* Not enough rings, try disabling agg rings. */ + bp->flags &= ~BNXT_FLAG_AGG_RINGS; + rc = bnxt_get_max_rings(bp, max_rx, max_tx, shared); + if (rc) + return rc; + bp->flags |= BNXT_FLAG_NO_AGG_RINGS; + bp->dev->hw_features &= ~NETIF_F_LRO; + bp->dev->features &= ~NETIF_F_LRO; + bnxt_set_ring_params(bp); + } +#ifdef CONFIG_BNXT_BPO_RE + if (bp->flags & BNXT_FLAG_ROCE_CAP) { + int max_cp, max_stat, max_irq; + + /* Reserve minimum resources for RoCE */ + max_cp = bnxt_get_max_func_cp_rings(bp); + max_stat = bnxt_get_max_func_stat_ctxs(bp); + max_irq = bnxt_get_max_func_irqs(bp); + if (max_cp <= BNXT_MIN_ROCE_CP_RINGS || + max_irq <= BNXT_MIN_ROCE_CP_RINGS || + max_stat <= BNXT_MIN_ROCE_STAT_CTXS) + return 0; + + max_cp -= BNXT_MIN_ROCE_CP_RINGS; + max_irq -= BNXT_MIN_ROCE_CP_RINGS; + max_stat -= BNXT_MIN_ROCE_STAT_CTXS; + max_cp = min_t(int, max_cp, max_irq); + max_cp = min_t(int, max_cp, max_stat); + rc = bnxt_trim_rings(bp, max_rx, max_tx, max_cp, shared); + if (rc) + rc = 0; + } +#endif + return rc; +} + +static int bnxt_set_dflt_rings(struct bnxt *bp) +{ + int dflt_rings, max_rx_rings, max_tx_rings, rc; + bool sh = true; + + if (sh) + bp->flags |= BNXT_FLAG_SHARED_RINGS; + dflt_rings = netif_get_num_default_rss_queues(); + rc = bnxt_get_dflt_rings(bp, &max_rx_rings, &max_tx_rings, sh); + if (rc) + return rc; + bp->rx_nr_rings = min_t(int, dflt_rings, max_rx_rings); + bp->tx_nr_rings_per_tc = min_t(int, dflt_rings, max_tx_rings); + + rc = bnxt_hwrm_reserve_tx_rings(bp, &bp->tx_nr_rings_per_tc); + if (rc) + netdev_warn(bp->dev, "Unable to reserve tx rings\n"); + + bp->tx_nr_rings = bp->tx_nr_rings_per_tc; + bp->cp_nr_rings = sh ? max_t(int, bp->tx_nr_rings, bp->rx_nr_rings) : + bp->tx_nr_rings + bp->rx_nr_rings; + bp->num_stat_ctxs = bp->cp_nr_rings; + if (BNXT_CHIP_TYPE_NITRO_A0(bp)) { + bp->rx_nr_rings++; + bp->cp_nr_rings++; + } + return rc; +} + +void bnxt_restore_pf_fw_resources(struct bnxt *bp) +{ + ASSERT_RTNL(); + bnxt_hwrm_func_qcaps(bp); + bnxt_subtract_ulp_resources(bp, BNXT_ROCE_ULP); +} + +static void bnxt_parse_log_pcie_link(struct bnxt *bp) +{ + enum pcie_link_width width = PCIE_LNK_WIDTH_UNKNOWN; + enum pci_bus_speed speed = PCI_SPEED_UNKNOWN; + + if (pcie_get_minimum_link(bp->pdev, &speed, &width) || + speed == PCI_SPEED_UNKNOWN || width == PCIE_LNK_WIDTH_UNKNOWN) + netdev_info(bp->dev, "Failed to determine PCIe Link Info\n"); + else + netdev_info(bp->dev, "PCIe: Speed %s Width x%d\n", + speed == PCIE_SPEED_2_5GT ? "2.5GT/s" : + speed == PCIE_SPEED_5_0GT ? "5.0GT/s" : + speed == PCIE_SPEED_8_0GT ? "8.0GT/s" : + "Unknown", width); +} + +static int bnxt_init_one(struct pci_dev *pdev, const struct pci_device_id *ent) +{ + static int version_printed; + struct net_device *dev; + struct bnxt *bp; + int rc, max_irqs; + + if (pci_is_bridge(pdev)) + return -ENODEV; + + if (version_printed++ == 0) + pr_info("%s", version); + + max_irqs = bnxt_get_max_irq(pdev); + dev = alloc_etherdev_mq(sizeof(*bp), max_irqs); + if (!dev) + return -ENOMEM; + + bp = netdev_priv(dev); + + if (bnxt_vf_pciid(ent->driver_data)) + bp->flags |= BNXT_FLAG_VF; + +#ifndef HAVE_MSIX_CAP + if (pci_find_capability(pdev, PCI_CAP_ID_MSIX)) +#else + if (pdev->msix_cap) +#endif + bp->flags |= BNXT_FLAG_MSIX_CAP; + + rc = bnxt_init_board(pdev, dev); + if (rc < 0) + goto init_err_free; + + dev->netdev_ops = &bnxt_netdev_ops; + dev->watchdog_timeo = BNXT_TX_TIMEOUT; + dev->ethtool_ops = &bnxt_ethtool_ops; + pci_set_drvdata(pdev, dev); + + rc = bnxt_alloc_hwrm_resources(bp); + if (rc) + goto init_err_pci_clean; + + mutex_init(&bp->hwrm_cmd_lock); + rc = bnxt_hwrm_ver_get(bp); + if (rc) + goto init_err_pci_clean; + + rc = bnxt_hwrm_func_reset(bp); + if (rc) + goto init_err_pci_clean; + + bnxt_hwrm_fw_set_time(bp); + + dev->hw_features = NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM | NETIF_F_SG | + NETIF_F_TSO | NETIF_F_TSO6 | + NETIF_F_GSO_UDP_TUNNEL | NETIF_F_GSO_GRE | + NETIF_F_GSO_IPXIP4 | + NETIF_F_GSO_UDP_TUNNEL_CSUM | NETIF_F_GSO_GRE_CSUM | + NETIF_F_GSO_PARTIAL | NETIF_F_RXHASH | + NETIF_F_RXCSUM | NETIF_F_GRO; + +#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,39) + if (!BNXT_CHIP_TYPE_NITRO_A0(bp)) + dev->hw_features |= NETIF_F_LRO; +#endif + +#ifdef NETDEV_HW_ENC_FEATURES + dev->hw_enc_features = + NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM | NETIF_F_SG | + NETIF_F_TSO | NETIF_F_TSO6 | + NETIF_F_GSO_UDP_TUNNEL | NETIF_F_GSO_GRE | + NETIF_F_GSO_UDP_TUNNEL_CSUM | NETIF_F_GSO_GRE_CSUM | + NETIF_F_GSO_IPXIP4 | NETIF_F_GSO_PARTIAL; +#endif +#ifdef HAVE_GSO_PARTIAL_FEATURES + dev->gso_partial_features = NETIF_F_GSO_UDP_TUNNEL_CSUM | + NETIF_F_GSO_GRE_CSUM; +#endif + + dev->vlan_features = dev->hw_features | NETIF_F_HIGHDMA; + dev->hw_features |= NETIF_F_HW_VLAN_CTAG_RX | NETIF_F_HW_VLAN_CTAG_TX | + NETIF_F_HW_VLAN_STAG_RX | NETIF_F_HW_VLAN_STAG_TX; + dev->features |= dev->hw_features | NETIF_F_HIGHDMA; + dev->priv_flags |= IFF_UNICAST_FLT; + +#ifdef HAVE_MIN_MTU + /* MTU range: 60 - 9500 */ + dev->min_mtu = ETH_ZLEN; + dev->max_mtu = BNXT_MAX_MTU; +#endif + +#ifdef CONFIG_BNXT_BPO_SRIOV + init_waitqueue_head(&bp->sriov_cfg_wait); +#endif + bp->gro_func = bnxt_gro_func_5730x; + if (BNXT_CHIP_NUM_57X1X(bp->chip_num)) + bp->gro_func = bnxt_gro_func_5731x; + + rc = bnxt_hwrm_func_drv_rgtr(bp); + if (rc) + goto init_err_pci_clean; + + rc = bnxt_hwrm_func_rgtr_async_events(bp, NULL, 0); + if (rc) + goto init_err_pci_clean; + + bp->ulp_probe = bnxt_ulp_probe; + + /* Get the MAX capabilities for this function */ + rc = bnxt_hwrm_func_qcaps(bp); + if (rc) { + netdev_err(bp->dev, "hwrm query capability failure rc: %x\n", + rc); + rc = -1; + goto init_err_pci_clean; + } + + rc = bnxt_hwrm_queue_qportcfg(bp); + if (rc) { + netdev_err(bp->dev, "hwrm query qportcfg failure rc: %x\n", + rc); + rc = -1; + goto init_err_pci_clean; + } + + bnxt_hwrm_func_qcfg(bp); + bnxt_hwrm_port_led_qcaps(bp); + bnxt_ethtool_init(bp); + bnxt_dcb_init(bp); + + bnxt_set_rx_skb_mode(bp, false); + bnxt_set_tpa_flags(bp); + bnxt_set_ring_params(bp); + bnxt_set_max_func_irqs(bp, max_irqs); + rc = bnxt_set_dflt_rings(bp); + if (rc) { + netdev_err(bp->dev, "Not enough rings available.\n"); + rc = -ENOMEM; + goto init_err_pci_clean; + } + + /* Default RSS hash cfg. */ + bp->rss_hash_cfg = VNIC_RSS_CFG_REQ_HASH_TYPE_IPV4 | + VNIC_RSS_CFG_REQ_HASH_TYPE_TCP_IPV4 | + VNIC_RSS_CFG_REQ_HASH_TYPE_IPV6 | + VNIC_RSS_CFG_REQ_HASH_TYPE_TCP_IPV6; + if (!BNXT_CHIP_NUM_57X0X(bp->chip_num) && + !BNXT_CHIP_TYPE_NITRO_A0(bp) && + bp->hwrm_spec_code >= 0x10501) { + bp->flags |= BNXT_FLAG_UDP_RSS_CAP; + bp->rss_hash_cfg |= VNIC_RSS_CFG_REQ_HASH_TYPE_UDP_IPV4 | + VNIC_RSS_CFG_REQ_HASH_TYPE_UDP_IPV6; + } + + bnxt_hwrm_vnic_qcaps(bp); + if (bnxt_rfs_supported(bp)) { + dev->hw_features |= NETIF_F_NTUPLE; + if (bnxt_rfs_capable(bp)) { + bp->flags |= BNXT_FLAG_RFS; + dev->features |= NETIF_F_NTUPLE; + } + } + + if (dev->hw_features & NETIF_F_HW_VLAN_CTAG_RX) + bp->flags |= BNXT_FLAG_STRIP_VLAN; + + rc = bnxt_probe_phy(bp); + if (rc) + goto init_err_pci_clean; + + bnxt_get_wol_settings(bp); + if (bp->flags & BNXT_FLAG_WOL_CAP) + device_set_wakeup_enable(&pdev->dev, bp->wol); + else + device_set_wakeup_capable(&pdev->dev, false); + + rc = bnxt_init_int_mode(bp); + if (rc) + goto init_err_pci_clean; + + rc = register_netdev(dev); + if (rc) + goto init_err_clr_int; + + netdev_info(dev, "%s found at mem %lx, node addr %pM\n", + board_info[ent->driver_data].name, + (long)pci_resource_start(pdev, 0), dev->dev_addr); + + bnxt_parse_log_pcie_link(bp); + if (bnxt_ptp_init(bp)) { + netdev_warn(dev, "PTP initialization failed.\n"); + kfree(bp->ptp_cfg); + bp->ptp_cfg = NULL; + } + + return 0; + +init_err_clr_int: + bnxt_clear_int_mode(bp); + +init_err_pci_clean: + bnxt_cleanup_pci(bp); + +init_err_free: + free_netdev(dev); + return rc; +} + +static void bnxt_shutdown(struct pci_dev *pdev) +{ + struct net_device *dev = pci_get_drvdata(pdev); + struct bnxt *bp; + + if (!dev) + return; + + rtnl_lock(); + bp = netdev_priv(dev); + if (!bp) + goto shutdown_exit; + + if (netif_running(dev)) + dev_close(dev); + + if (system_state == SYSTEM_POWER_OFF) { + bnxt_clear_int_mode(bp); + pci_wake_from_d3(pdev, bp->wol); + pci_set_power_state(pdev, PCI_D3hot); + } + +shutdown_exit: + rtnl_unlock(); +} + +#ifdef CONFIG_PM_SLEEP +static int bnxt_suspend(struct device *device) +{ + struct pci_dev *pdev = to_pci_dev(device); + struct net_device *dev = pci_get_drvdata(pdev); + struct bnxt *bp = netdev_priv(dev); + int rc = 0; + + rtnl_lock(); + if (netif_running(dev)) { + netif_device_detach(dev); + rc = bnxt_close(dev); + } + bnxt_hwrm_func_drv_unrgtr(bp); + rtnl_unlock(); + return rc; +} + +static int bnxt_resume(struct device *device) +{ + struct pci_dev *pdev = to_pci_dev(device); + struct net_device *dev = pci_get_drvdata(pdev); + struct bnxt *bp = netdev_priv(dev); + int rc = 0; + + rtnl_lock(); + if (bnxt_hwrm_ver_get(bp) || bnxt_hwrm_func_drv_rgtr(bp)) { + rc = -ENODEV; + goto resume_exit; + } + rc = bnxt_hwrm_func_reset(bp); + if (rc) { + rc = -EBUSY; + goto resume_exit; + } + bnxt_get_wol_settings(bp); + if (netif_running(dev)) { + rc = bnxt_open(dev); + if (!rc) + netif_device_attach(dev); + } + +resume_exit: + rtnl_unlock(); + return rc; +} + +static SIMPLE_DEV_PM_OPS(bnxt_pm_ops, bnxt_suspend, bnxt_resume); +#define BNXT_PM_OPS (&bnxt_pm_ops) + +#else + +#define BNXT_PM_OPS NULL + +#endif /* CONFIG_PM_SLEEP */ + +/** + * bnxt_io_error_detected - called when PCI error is detected + * @pdev: Pointer to PCI device + * @state: The current pci connection state + * + * This function is called after a PCI bus error affecting + * this device has been detected. + */ +static pci_ers_result_t bnxt_io_error_detected(struct pci_dev *pdev, + pci_channel_state_t state) +{ + struct net_device *netdev = pci_get_drvdata(pdev); + struct bnxt *bp = netdev_priv(netdev); + + netdev_info(netdev, "PCI I/O error detected\n"); + + rtnl_lock(); + netif_device_detach(netdev); + + bnxt_ulp_stop(bp); + + if (state == pci_channel_io_perm_failure) { + rtnl_unlock(); + return PCI_ERS_RESULT_DISCONNECT; + } + + if (netif_running(netdev)) + bnxt_close(netdev); + + pci_disable_device(pdev); + rtnl_unlock(); + + /* Request a slot slot reset. */ + return PCI_ERS_RESULT_NEED_RESET; +} + +/** + * bnxt_io_slot_reset - called after the pci bus has been reset. + * @pdev: Pointer to PCI device + * + * Restart the card from scratch, as if from a cold-boot. + * At this point, the card has exprienced a hard reset, + * followed by fixups by BIOS, and has its config space + * set up identically to what it was at cold boot. + */ +static pci_ers_result_t bnxt_io_slot_reset(struct pci_dev *pdev) +{ + + struct net_device *netdev = pci_get_drvdata(pdev); + struct bnxt *bp = netdev_priv(netdev); + int err = 0; + pci_ers_result_t result = PCI_ERS_RESULT_DISCONNECT; + + netdev_info(bp->dev, "PCI Slot Reset\n"); + + rtnl_lock(); + + if (pci_enable_device(pdev)) { + dev_err(&pdev->dev, + "Cannot re-enable PCI device after reset.\n"); + } else { + pci_set_master(pdev); + + err = bnxt_hwrm_func_reset(bp); + if (!err && netif_running(netdev)) + err = bnxt_open(netdev); + + if (!err) { + result = PCI_ERS_RESULT_RECOVERED; + bnxt_ulp_start(bp); + } + } + + if (result != PCI_ERS_RESULT_RECOVERED && netif_running(netdev)) + dev_close(netdev); + + rtnl_unlock(); + + err = pci_cleanup_aer_uncorrect_error_status(pdev); + if (err) { + dev_err(&pdev->dev, + "pci_cleanup_aer_uncorrect_error_status failed 0x%0x\n", + err); /* non-fatal, continue */ + } + + return PCI_ERS_RESULT_RECOVERED; +} + +/** + * bnxt_io_resume - called when traffic can start flowing again. + * @pdev: Pointer to PCI device + * + * This callback is called when the error recovery driver tells + * us that its OK to resume normal operation. + */ +static void bnxt_io_resume(struct pci_dev *pdev) +{ + struct net_device *netdev = pci_get_drvdata(pdev); + + rtnl_lock(); + + netif_device_attach(netdev); + + rtnl_unlock(); +} + +static const struct pci_error_handlers bnxt_err_handler = { + .error_detected = bnxt_io_error_detected, + .slot_reset = bnxt_io_slot_reset, + .resume = bnxt_io_resume +}; + +static struct pci_driver bnxt_pci_driver = { + .name = DRV_MODULE_NAME, + .id_table = bnxt_pci_tbl, + .probe = bnxt_init_one, + .remove = bnxt_remove_one, + .shutdown = bnxt_shutdown, + .driver.pm = BNXT_PM_OPS, + .err_handler = &bnxt_err_handler, +#if defined(CONFIG_BNXT_BPO_SRIOV) && defined(PCIE_SRIOV_CONFIGURE) + .sriov_configure = bnxt_sriov_configure, +#endif +}; + +#if defined(HAVE_MODULE_PCI_DRIVER) && defined(PCIE_SRIOV_CONFIGURE) +module_pci_driver(bnxt_pci_driver); +#else +static int __init bnxt_init(void) +{ + bnxt_sriov_init(num_vfs); + return pci_register_driver(&bnxt_pci_driver); +} + +static void __exit bnxt_exit(void) +{ + bnxt_sriov_exit(); + pci_unregister_driver(&bnxt_pci_driver); +} + +module_init(bnxt_init); +module_exit(bnxt_exit); +#endif only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/bnxt/bnxt.h +++ linux-raspi2-4.4.0/ubuntu/bnxt/bnxt.h @@ -0,0 +1,1421 @@ +/* Broadcom NetXtreme-C/E network driver. + * + * Copyright (c) 2014-2016 Broadcom Corporation + * Copyright (c) 2016-2017 Broadcom Limited + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation. + */ + +#ifndef BNXT_H +#define BNXT_H + +#define DRV_MODULE_NAME "bnxt_en_bpo" +#define DRV_MODULE_VERSION "1.8.1" + +#define DRV_VER_MAJ 1 +#define DRV_VER_MIN 8 +#define DRV_VER_UPD 1 + +#include + +struct tx_bd { + __le32 tx_bd_len_flags_type; + #define TX_BD_TYPE (0x3f << 0) + #define TX_BD_TYPE_SHORT_TX_BD (0x00 << 0) + #define TX_BD_TYPE_LONG_TX_BD (0x10 << 0) + #define TX_BD_FLAGS_PACKET_END (1 << 6) + #define TX_BD_FLAGS_NO_CMPL (1 << 7) + #define TX_BD_FLAGS_BD_CNT (0x1f << 8) + #define TX_BD_FLAGS_BD_CNT_SHIFT 8 + #define TX_BD_FLAGS_LHINT (3 << 13) + #define TX_BD_FLAGS_LHINT_SHIFT 13 + #define TX_BD_FLAGS_LHINT_512_AND_SMALLER (0 << 13) + #define TX_BD_FLAGS_LHINT_512_TO_1023 (1 << 13) + #define TX_BD_FLAGS_LHINT_1024_TO_2047 (2 << 13) + #define TX_BD_FLAGS_LHINT_2048_AND_LARGER (3 << 13) + #define TX_BD_FLAGS_COAL_NOW (1 << 15) + #define TX_BD_LEN (0xffff << 16) + #define TX_BD_LEN_SHIFT 16 + + u32 tx_bd_opaque; + __le64 tx_bd_haddr; +} __packed; + +struct tx_bd_ext { + __le32 tx_bd_hsize_lflags; + #define TX_BD_FLAGS_TCP_UDP_CHKSUM (1 << 0) + #define TX_BD_FLAGS_IP_CKSUM (1 << 1) + #define TX_BD_FLAGS_NO_CRC (1 << 2) + #define TX_BD_FLAGS_STAMP (1 << 3) + #define TX_BD_FLAGS_T_IP_CHKSUM (1 << 4) + #define TX_BD_FLAGS_LSO (1 << 5) + #define TX_BD_FLAGS_IPID_FMT (1 << 6) + #define TX_BD_FLAGS_T_IPID (1 << 7) + #define TX_BD_HSIZE (0xff << 16) + #define TX_BD_HSIZE_SHIFT 16 + + __le32 tx_bd_mss; + __le32 tx_bd_cfa_action; + #define TX_BD_CFA_ACTION (0xffff << 16) + #define TX_BD_CFA_ACTION_SHIFT 16 + + __le32 tx_bd_cfa_meta; + #define TX_BD_CFA_META_MASK 0xfffffff + #define TX_BD_CFA_META_VID_MASK 0xfff + #define TX_BD_CFA_META_PRI_MASK (0xf << 12) + #define TX_BD_CFA_META_PRI_SHIFT 12 + #define TX_BD_CFA_META_TPID_MASK (3 << 16) + #define TX_BD_CFA_META_TPID_SHIFT 16 + #define TX_BD_CFA_META_KEY (0xf << 28) + #define TX_BD_CFA_META_KEY_SHIFT 28 + #define TX_BD_CFA_META_KEY_VLAN (1 << 28) +}; + +struct rx_bd { + __le32 rx_bd_len_flags_type; + #define RX_BD_TYPE (0x3f << 0) + #define RX_BD_TYPE_RX_PACKET_BD 0x4 + #define RX_BD_TYPE_RX_BUFFER_BD 0x5 + #define RX_BD_TYPE_RX_AGG_BD 0x6 + #define RX_BD_TYPE_16B_BD_SIZE (0 << 4) + #define RX_BD_TYPE_32B_BD_SIZE (1 << 4) + #define RX_BD_TYPE_48B_BD_SIZE (2 << 4) + #define RX_BD_TYPE_64B_BD_SIZE (3 << 4) + #define RX_BD_FLAGS_SOP (1 << 6) + #define RX_BD_FLAGS_EOP (1 << 7) + #define RX_BD_FLAGS_BUFFERS (3 << 8) + #define RX_BD_FLAGS_1_BUFFER_PACKET (0 << 8) + #define RX_BD_FLAGS_2_BUFFER_PACKET (1 << 8) + #define RX_BD_FLAGS_3_BUFFER_PACKET (2 << 8) + #define RX_BD_FLAGS_4_BUFFER_PACKET (3 << 8) + #define RX_BD_LEN (0xffff << 16) + #define RX_BD_LEN_SHIFT 16 + + u32 rx_bd_opaque; + __le64 rx_bd_haddr; +}; + +struct tx_cmp { + __le32 tx_cmp_flags_type; + #define CMP_TYPE (0x3f << 0) + #define CMP_TYPE_TX_L2_CMP 0 + #define CMP_TYPE_RX_L2_CMP 17 + #define CMP_TYPE_RX_AGG_CMP 18 + #define CMP_TYPE_RX_L2_TPA_START_CMP 19 + #define CMP_TYPE_RX_L2_TPA_END_CMP 21 + #define CMP_TYPE_STATUS_CMP 32 + #define CMP_TYPE_REMOTE_DRIVER_REQ 34 + #define CMP_TYPE_REMOTE_DRIVER_RESP 36 + #define CMP_TYPE_ERROR_STATUS 48 + #define CMPL_BASE_TYPE_STAT_EJECT 0x1aUL + #define CMPL_BASE_TYPE_HWRM_DONE 0x20UL + #define CMPL_BASE_TYPE_HWRM_FWD_REQ 0x22UL + #define CMPL_BASE_TYPE_HWRM_FWD_RESP 0x24UL + #define CMPL_BASE_TYPE_HWRM_ASYNC_EVENT 0x2eUL + + #define TX_CMP_FLAGS_ERROR (1 << 6) + #define TX_CMP_FLAGS_PUSH (1 << 7) + + u32 tx_cmp_opaque; + __le32 tx_cmp_errors_v; + #define TX_CMP_V (1 << 0) + #define TX_CMP_ERRORS_BUFFER_ERROR (7 << 1) + #define TX_CMP_ERRORS_BUFFER_ERROR_NO_ERROR 0 + #define TX_CMP_ERRORS_BUFFER_ERROR_BAD_FORMAT 2 + #define TX_CMP_ERRORS_BUFFER_ERROR_INVALID_STAG 4 + #define TX_CMP_ERRORS_BUFFER_ERROR_STAG_BOUNDS 5 + #define TX_CMP_ERRORS_ZERO_LENGTH_PKT (1 << 4) + #define TX_CMP_ERRORS_EXCESSIVE_BD_LEN (1 << 5) + #define TX_CMP_ERRORS_DMA_ERROR (1 << 6) + #define TX_CMP_ERRORS_HINT_TOO_SHORT (1 << 7) + + __le32 tx_cmp_unsed_3; +}; + +struct rx_cmp { + __le32 rx_cmp_len_flags_type; + #define RX_CMP_CMP_TYPE (0x3f << 0) + #define RX_CMP_FLAGS_ERROR (1 << 6) + #define RX_CMP_FLAGS_PLACEMENT (7 << 7) + #define RX_CMP_FLAGS_RSS_VALID (1 << 10) + #define RX_CMP_FLAGS_UNUSED (1 << 11) + #define RX_CMP_FLAGS_ITYPES_SHIFT 12 + #define RX_CMP_FLAGS_ITYPES_MASK 0xf000 + #define RX_CMP_FLAGS_ITYPE_UNKNOWN (0 << 12) + #define RX_CMP_FLAGS_ITYPE_IP (1 << 12) + #define RX_CMP_FLAGS_ITYPE_TCP (2 << 12) + #define RX_CMP_FLAGS_ITYPE_UDP (3 << 12) + #define RX_CMP_FLAGS_ITYPE_FCOE (4 << 12) + #define RX_CMP_FLAGS_ITYPE_ROCE (5 << 12) + #define RX_CMP_FLAGS_ITYPE_PTP_WO_TS (8 << 12) + #define RX_CMP_FLAGS_ITYPE_PTP_W_TS (9 << 12) + #define RX_CMP_LEN (0xffff << 16) + #define RX_CMP_LEN_SHIFT 16 + + u32 rx_cmp_opaque; + __le32 rx_cmp_misc_v1; + #define RX_CMP_V1 (1 << 0) + #define RX_CMP_AGG_BUFS (0x1f << 1) + #define RX_CMP_AGG_BUFS_SHIFT 1 + #define RX_CMP_RSS_HASH_TYPE (0x7f << 9) + #define RX_CMP_RSS_HASH_TYPE_SHIFT 9 + #define RX_CMP_PAYLOAD_OFFSET (0xff << 16) + #define RX_CMP_PAYLOAD_OFFSET_SHIFT 16 + + __le32 rx_cmp_rss_hash; +}; + +#define RX_CMP_HASH_VALID(rxcmp) \ + ((rxcmp)->rx_cmp_len_flags_type & cpu_to_le32(RX_CMP_FLAGS_RSS_VALID)) + +#define RSS_PROFILE_ID_MASK 0x1f + +#define RX_CMP_HASH_TYPE(rxcmp) \ + (((le32_to_cpu((rxcmp)->rx_cmp_misc_v1) & RX_CMP_RSS_HASH_TYPE) >>\ + RX_CMP_RSS_HASH_TYPE_SHIFT) & RSS_PROFILE_ID_MASK) + +struct rx_cmp_ext { + __le32 rx_cmp_flags2; + #define RX_CMP_FLAGS2_IP_CS_CALC 0x1 + #define RX_CMP_FLAGS2_L4_CS_CALC (0x1 << 1) + #define RX_CMP_FLAGS2_T_IP_CS_CALC (0x1 << 2) + #define RX_CMP_FLAGS2_T_L4_CS_CALC (0x1 << 3) + #define RX_CMP_FLAGS2_META_FORMAT_VLAN (0x1 << 4) + __le32 rx_cmp_meta_data; + #define RX_CMP_FLAGS2_METADATA_VID_MASK 0xfff + #define RX_CMP_FLAGS2_METADATA_TPID_MASK 0xffff0000 + #define RX_CMP_FLAGS2_METADATA_TPID_SFT 16 + __le32 rx_cmp_cfa_code_errors_v2; + #define RX_CMP_V (1 << 0) + #define RX_CMPL_ERRORS_MASK (0x7fff << 1) + #define RX_CMPL_ERRORS_SFT 1 + #define RX_CMPL_ERRORS_BUFFER_ERROR_MASK (0x7 << 1) + #define RX_CMPL_ERRORS_BUFFER_ERROR_NO_BUFFER (0x0 << 1) + #define RX_CMPL_ERRORS_BUFFER_ERROR_DID_NOT_FIT (0x1 << 1) + #define RX_CMPL_ERRORS_BUFFER_ERROR_NOT_ON_CHIP (0x2 << 1) + #define RX_CMPL_ERRORS_BUFFER_ERROR_BAD_FORMAT (0x3 << 1) + #define RX_CMPL_ERRORS_IP_CS_ERROR (0x1 << 4) + #define RX_CMPL_ERRORS_L4_CS_ERROR (0x1 << 5) + #define RX_CMPL_ERRORS_T_IP_CS_ERROR (0x1 << 6) + #define RX_CMPL_ERRORS_T_L4_CS_ERROR (0x1 << 7) + #define RX_CMPL_ERRORS_CRC_ERROR (0x1 << 8) + #define RX_CMPL_ERRORS_T_PKT_ERROR_MASK (0x7 << 9) + #define RX_CMPL_ERRORS_T_PKT_ERROR_NO_ERROR (0x0 << 9) + #define RX_CMPL_ERRORS_T_PKT_ERROR_T_L3_BAD_VERSION (0x1 << 9) + #define RX_CMPL_ERRORS_T_PKT_ERROR_T_L3_BAD_HDR_LEN (0x2 << 9) + #define RX_CMPL_ERRORS_T_PKT_ERROR_TUNNEL_TOTAL_ERROR (0x3 << 9) + #define RX_CMPL_ERRORS_T_PKT_ERROR_T_IP_TOTAL_ERROR (0x4 << 9) + #define RX_CMPL_ERRORS_T_PKT_ERROR_T_UDP_TOTAL_ERROR (0x5 << 9) + #define RX_CMPL_ERRORS_T_PKT_ERROR_T_L3_BAD_TTL (0x6 << 9) + #define RX_CMPL_ERRORS_PKT_ERROR_MASK (0xf << 12) + #define RX_CMPL_ERRORS_PKT_ERROR_NO_ERROR (0x0 << 12) + #define RX_CMPL_ERRORS_PKT_ERROR_L3_BAD_VERSION (0x1 << 12) + #define RX_CMPL_ERRORS_PKT_ERROR_L3_BAD_HDR_LEN (0x2 << 12) + #define RX_CMPL_ERRORS_PKT_ERROR_L3_BAD_TTL (0x3 << 12) + #define RX_CMPL_ERRORS_PKT_ERROR_IP_TOTAL_ERROR (0x4 << 12) + #define RX_CMPL_ERRORS_PKT_ERROR_UDP_TOTAL_ERROR (0x5 << 12) + #define RX_CMPL_ERRORS_PKT_ERROR_L4_BAD_HDR_LEN (0x6 << 12) + #define RX_CMPL_ERRORS_PKT_ERROR_L4_BAD_HDR_LEN_TOO_SMALL (0x7 << 12) + #define RX_CMPL_ERRORS_PKT_ERROR_L4_BAD_OPT_LEN (0x8 << 12) + + #define RX_CMPL_CFA_CODE_MASK (0xffff << 16) + #define RX_CMPL_CFA_CODE_SFT 16 + + __le32 rx_cmp_unused3; +}; + +#define RX_CMP_L2_ERRORS \ + cpu_to_le32(RX_CMPL_ERRORS_BUFFER_ERROR_MASK | RX_CMPL_ERRORS_CRC_ERROR) + +#define RX_CMP_L4_CS_BITS \ + (cpu_to_le32(RX_CMP_FLAGS2_L4_CS_CALC | RX_CMP_FLAGS2_T_L4_CS_CALC)) + +#define RX_CMP_L4_CS_ERR_BITS \ + (cpu_to_le32(RX_CMPL_ERRORS_L4_CS_ERROR | RX_CMPL_ERRORS_T_L4_CS_ERROR)) + +#define RX_CMP_L4_CS_OK(rxcmp1) \ + (((rxcmp1)->rx_cmp_flags2 & RX_CMP_L4_CS_BITS) && \ + !((rxcmp1)->rx_cmp_cfa_code_errors_v2 & RX_CMP_L4_CS_ERR_BITS)) + +#define RX_CMP_ENCAP(rxcmp1) \ + ((le32_to_cpu((rxcmp1)->rx_cmp_flags2) & \ + RX_CMP_FLAGS2_T_L4_CS_CALC) >> 3) + +struct rx_agg_cmp { + __le32 rx_agg_cmp_len_flags_type; + #define RX_AGG_CMP_TYPE (0x3f << 0) + #define RX_AGG_CMP_LEN (0xffff << 16) + #define RX_AGG_CMP_LEN_SHIFT 16 + u32 rx_agg_cmp_opaque; + __le32 rx_agg_cmp_v; + #define RX_AGG_CMP_V (1 << 0) + __le32 rx_agg_cmp_unused; +}; + +struct rx_tpa_start_cmp { + __le32 rx_tpa_start_cmp_len_flags_type; + #define RX_TPA_START_CMP_TYPE (0x3f << 0) + #define RX_TPA_START_CMP_FLAGS (0x3ff << 6) + #define RX_TPA_START_CMP_FLAGS_SHIFT 6 + #define RX_TPA_START_CMP_FLAGS_PLACEMENT (0x7 << 7) + #define RX_TPA_START_CMP_FLAGS_PLACEMENT_SHIFT 7 + #define RX_TPA_START_CMP_FLAGS_PLACEMENT_JUMBO (0x1 << 7) + #define RX_TPA_START_CMP_FLAGS_PLACEMENT_HDS (0x2 << 7) + #define RX_TPA_START_CMP_FLAGS_PLACEMENT_GRO_JUMBO (0x5 << 7) + #define RX_TPA_START_CMP_FLAGS_PLACEMENT_GRO_HDS (0x6 << 7) + #define RX_TPA_START_CMP_FLAGS_RSS_VALID (0x1 << 10) + #define RX_TPA_START_CMP_FLAGS_ITYPES (0xf << 12) + #define RX_TPA_START_CMP_FLAGS_ITYPES_SHIFT 12 + #define RX_TPA_START_CMP_FLAGS_ITYPE_TCP (0x2 << 12) + #define RX_TPA_START_CMP_LEN (0xffff << 16) + #define RX_TPA_START_CMP_LEN_SHIFT 16 + + u32 rx_tpa_start_cmp_opaque; + __le32 rx_tpa_start_cmp_misc_v1; + #define RX_TPA_START_CMP_V1 (0x1 << 0) + #define RX_TPA_START_CMP_RSS_HASH_TYPE (0x7f << 9) + #define RX_TPA_START_CMP_RSS_HASH_TYPE_SHIFT 9 + #define RX_TPA_START_CMP_AGG_ID (0x7f << 25) + #define RX_TPA_START_CMP_AGG_ID_SHIFT 25 + + __le32 rx_tpa_start_cmp_rss_hash; +}; + +#define TPA_START_HASH_VALID(rx_tpa_start) \ + ((rx_tpa_start)->rx_tpa_start_cmp_len_flags_type & \ + cpu_to_le32(RX_TPA_START_CMP_FLAGS_RSS_VALID)) + +#define TPA_START_HASH_TYPE(rx_tpa_start) \ + (((le32_to_cpu((rx_tpa_start)->rx_tpa_start_cmp_misc_v1) & \ + RX_TPA_START_CMP_RSS_HASH_TYPE) >> \ + RX_TPA_START_CMP_RSS_HASH_TYPE_SHIFT) & RSS_PROFILE_ID_MASK) + +#define TPA_START_AGG_ID(rx_tpa_start) \ + ((le32_to_cpu((rx_tpa_start)->rx_tpa_start_cmp_misc_v1) & \ + RX_TPA_START_CMP_AGG_ID) >> RX_TPA_START_CMP_AGG_ID_SHIFT) + +struct rx_tpa_start_cmp_ext { + __le32 rx_tpa_start_cmp_flags2; + #define RX_TPA_START_CMP_FLAGS2_IP_CS_CALC (0x1 << 0) + #define RX_TPA_START_CMP_FLAGS2_L4_CS_CALC (0x1 << 1) + #define RX_TPA_START_CMP_FLAGS2_T_IP_CS_CALC (0x1 << 2) + #define RX_TPA_START_CMP_FLAGS2_T_L4_CS_CALC (0x1 << 3) + #define RX_TPA_START_CMP_FLAGS2_IP_TYPE (0x1 << 8) + + __le32 rx_tpa_start_cmp_metadata; + __le32 rx_tpa_start_cmp_cfa_code_v2; + #define RX_TPA_START_CMP_V2 (0x1 << 0) + #define RX_TPA_START_CMP_CFA_CODE (0xffff << 16) + #define RX_TPA_START_CMPL_CFA_CODE_SHIFT 16 + __le32 rx_tpa_start_cmp_hdr_info; +}; + +struct rx_tpa_end_cmp { + __le32 rx_tpa_end_cmp_len_flags_type; + #define RX_TPA_END_CMP_TYPE (0x3f << 0) + #define RX_TPA_END_CMP_FLAGS (0x3ff << 6) + #define RX_TPA_END_CMP_FLAGS_SHIFT 6 + #define RX_TPA_END_CMP_FLAGS_PLACEMENT (0x7 << 7) + #define RX_TPA_END_CMP_FLAGS_PLACEMENT_SHIFT 7 + #define RX_TPA_END_CMP_FLAGS_PLACEMENT_JUMBO (0x1 << 7) + #define RX_TPA_END_CMP_FLAGS_PLACEMENT_HDS (0x2 << 7) + #define RX_TPA_END_CMP_FLAGS_PLACEMENT_GRO_JUMBO (0x5 << 7) + #define RX_TPA_END_CMP_FLAGS_PLACEMENT_GRO_HDS (0x6 << 7) + #define RX_TPA_END_CMP_FLAGS_RSS_VALID (0x1 << 10) + #define RX_TPA_END_CMP_FLAGS_ITYPES (0xf << 12) + #define RX_TPA_END_CMP_FLAGS_ITYPES_SHIFT 12 + #define RX_TPA_END_CMP_FLAGS_ITYPE_TCP (0x2 << 12) + #define RX_TPA_END_CMP_LEN (0xffff << 16) + #define RX_TPA_END_CMP_LEN_SHIFT 16 + + u32 rx_tpa_end_cmp_opaque; + __le32 rx_tpa_end_cmp_misc_v1; + #define RX_TPA_END_CMP_V1 (0x1 << 0) + #define RX_TPA_END_CMP_AGG_BUFS (0x3f << 1) + #define RX_TPA_END_CMP_AGG_BUFS_SHIFT 1 + #define RX_TPA_END_CMP_TPA_SEGS (0xff << 8) + #define RX_TPA_END_CMP_TPA_SEGS_SHIFT 8 + #define RX_TPA_END_CMP_PAYLOAD_OFFSET (0xff << 16) + #define RX_TPA_END_CMP_PAYLOAD_OFFSET_SHIFT 16 + #define RX_TPA_END_CMP_AGG_ID (0x7f << 25) + #define RX_TPA_END_CMP_AGG_ID_SHIFT 25 + + __le32 rx_tpa_end_cmp_tsdelta; + #define RX_TPA_END_GRO_TS (0x1 << 31) +}; + +#define TPA_END_AGG_ID(rx_tpa_end) \ + ((le32_to_cpu((rx_tpa_end)->rx_tpa_end_cmp_misc_v1) & \ + RX_TPA_END_CMP_AGG_ID) >> RX_TPA_END_CMP_AGG_ID_SHIFT) + +#define TPA_END_TPA_SEGS(rx_tpa_end) \ + ((le32_to_cpu((rx_tpa_end)->rx_tpa_end_cmp_misc_v1) & \ + RX_TPA_END_CMP_TPA_SEGS) >> RX_TPA_END_CMP_TPA_SEGS_SHIFT) + +#define RX_TPA_END_CMP_FLAGS_PLACEMENT_ANY_GRO \ + cpu_to_le32(RX_TPA_END_CMP_FLAGS_PLACEMENT_GRO_JUMBO & \ + RX_TPA_END_CMP_FLAGS_PLACEMENT_GRO_HDS) + +#define TPA_END_GRO(rx_tpa_end) \ + ((rx_tpa_end)->rx_tpa_end_cmp_len_flags_type & \ + RX_TPA_END_CMP_FLAGS_PLACEMENT_ANY_GRO) + +#define TPA_END_GRO_TS(rx_tpa_end) \ + (!!((rx_tpa_end)->rx_tpa_end_cmp_tsdelta & \ + cpu_to_le32(RX_TPA_END_GRO_TS))) + +struct rx_tpa_end_cmp_ext { + __le32 rx_tpa_end_cmp_dup_acks; + #define RX_TPA_END_CMP_TPA_DUP_ACKS (0xf << 0) + + __le32 rx_tpa_end_cmp_seg_len; + #define RX_TPA_END_CMP_TPA_SEG_LEN (0xffff << 0) + + __le32 rx_tpa_end_cmp_errors_v2; + #define RX_TPA_END_CMP_V2 (0x1 << 0) + #define RX_TPA_END_CMP_ERRORS (0x3 << 1) + #define RX_TPA_END_CMPL_ERRORS_SHIFT 1 + + u32 rx_tpa_end_cmp_start_opaque; +}; + +#define TPA_END_ERRORS(rx_tpa_end_ext) \ + ((rx_tpa_end_ext)->rx_tpa_end_cmp_errors_v2 & \ + cpu_to_le32(RX_TPA_END_CMP_ERRORS)) + +#define DB_IDX_MASK 0xffffff +#define DB_IDX_VALID (0x1 << 26) +#define DB_IRQ_DIS (0x1 << 27) +#define DB_KEY_TX (0x0 << 28) +#define DB_KEY_RX (0x1 << 28) +#define DB_KEY_CP (0x2 << 28) +#define DB_KEY_ST (0x3 << 28) +#define DB_KEY_TX_PUSH (0x4 << 28) +#define DB_LONG_TX_PUSH (0x2 << 24) + +#define INVALID_HW_RING_ID ((u16)-1) + +/* The hardware supports certain page sizes. Use the supported page sizes + * to allocate the rings. + */ +#if (PAGE_SHIFT < 12) +#define BNXT_PAGE_SHIFT 12 +#elif (PAGE_SHIFT <= 13) +#define BNXT_PAGE_SHIFT PAGE_SHIFT +#elif (PAGE_SHIFT < 16) +#define BNXT_PAGE_SHIFT 13 +#else +#define BNXT_PAGE_SHIFT 16 +#endif + +#define BNXT_PAGE_SIZE (1 << BNXT_PAGE_SHIFT) + +/* The RXBD length is 16-bit so we can only support page sizes < 64K */ +#if (PAGE_SHIFT > 15) +#define BNXT_RX_PAGE_SHIFT 15 +#else +#define BNXT_RX_PAGE_SHIFT PAGE_SHIFT +#endif + +#define BNXT_RX_PAGE_SIZE (1 << BNXT_RX_PAGE_SHIFT) + +#define BNXT_MAX_MTU 9500 +#define BNXT_MAX_PAGE_MODE_MTU \ + ((unsigned int)PAGE_SIZE - VLAN_ETH_HLEN - NET_IP_ALIGN - \ + XDP_PACKET_HEADROOM) + +#define BNXT_MIN_PKT_SIZE 52 + +#define BNXT_DEFAULT_RX_RING_SIZE 511 +#define BNXT_DEFAULT_TX_RING_SIZE 511 + +#define MAX_TPA 64 + +#if (BNXT_PAGE_SHIFT == 16) +#define MAX_RX_PAGES 1 +#define MAX_RX_AGG_PAGES 4 +#define MAX_TX_PAGES 1 +#define MAX_CP_PAGES 8 +#else +#define MAX_RX_PAGES 8 +#define MAX_RX_AGG_PAGES 32 +#define MAX_TX_PAGES 8 +#define MAX_CP_PAGES 64 +#endif + +#define RX_DESC_CNT (BNXT_PAGE_SIZE / sizeof(struct rx_bd)) +#define TX_DESC_CNT (BNXT_PAGE_SIZE / sizeof(struct tx_bd)) +#define CP_DESC_CNT (BNXT_PAGE_SIZE / sizeof(struct tx_cmp)) + +#define SW_RXBD_RING_SIZE (sizeof(struct bnxt_sw_rx_bd) * RX_DESC_CNT) +#define HW_RXBD_RING_SIZE (sizeof(struct rx_bd) * RX_DESC_CNT) + +#define SW_RXBD_AGG_RING_SIZE (sizeof(struct bnxt_sw_rx_agg_bd) * RX_DESC_CNT) + +#define SW_TXBD_RING_SIZE (sizeof(struct bnxt_sw_tx_bd) * TX_DESC_CNT) +#define HW_TXBD_RING_SIZE (sizeof(struct tx_bd) * TX_DESC_CNT) + +#define HW_CMPD_RING_SIZE (sizeof(struct tx_cmp) * CP_DESC_CNT) + +#define BNXT_MAX_RX_DESC_CNT (RX_DESC_CNT * MAX_RX_PAGES - 1) +#define BNXT_MAX_RX_JUM_DESC_CNT (RX_DESC_CNT * MAX_RX_AGG_PAGES - 1) +#define BNXT_MAX_TX_DESC_CNT (TX_DESC_CNT * MAX_TX_PAGES - 1) + +#define RX_RING(x) (((x) & ~(RX_DESC_CNT - 1)) >> (BNXT_PAGE_SHIFT - 4)) +#define RX_IDX(x) ((x) & (RX_DESC_CNT - 1)) + +#define TX_RING(x) (((x) & ~(TX_DESC_CNT - 1)) >> (BNXT_PAGE_SHIFT - 4)) +#define TX_IDX(x) ((x) & (TX_DESC_CNT - 1)) + +#define CP_RING(x) (((x) & ~(CP_DESC_CNT - 1)) >> (BNXT_PAGE_SHIFT - 4)) +#define CP_IDX(x) ((x) & (CP_DESC_CNT - 1)) + +#define TX_CMP_VALID(txcmp, raw_cons) \ + (!!((txcmp)->tx_cmp_errors_v & cpu_to_le32(TX_CMP_V)) == \ + !((raw_cons) & bp->cp_bit)) + +#define RX_CMP_VALID(rxcmp1, raw_cons) \ + (!!((rxcmp1)->rx_cmp_cfa_code_errors_v2 & cpu_to_le32(RX_CMP_V)) ==\ + !((raw_cons) & bp->cp_bit)) + +#define RX_AGG_CMP_VALID(agg, raw_cons) \ + (!!((agg)->rx_agg_cmp_v & cpu_to_le32(RX_AGG_CMP_V)) == \ + !((raw_cons) & bp->cp_bit)) + +#define TX_CMP_TYPE(txcmp) \ + (le32_to_cpu((txcmp)->tx_cmp_flags_type) & CMP_TYPE) + +#define RX_CMP_TYPE(rxcmp) \ + (le32_to_cpu((rxcmp)->rx_cmp_len_flags_type) & RX_CMP_CMP_TYPE) + +#define NEXT_RX(idx) (((idx) + 1) & bp->rx_ring_mask) + +#define NEXT_RX_AGG(idx) (((idx) + 1) & bp->rx_agg_ring_mask) + +#define NEXT_TX(idx) (((idx) + 1) & bp->tx_ring_mask) + +#define ADV_RAW_CMP(idx, n) ((idx) + (n)) +#define NEXT_RAW_CMP(idx) ADV_RAW_CMP(idx, 1) +#define RING_CMP(idx) ((idx) & bp->cp_ring_mask) +#define NEXT_CMP(idx) RING_CMP(ADV_RAW_CMP(idx, 1)) + +#define BNXT_HWRM_MAX_REQ_LEN (bp->hwrm_max_req_len) +#define DFLT_HWRM_CMD_TIMEOUT 500 +#define HWRM_CMD_TIMEOUT (bp->hwrm_cmd_timeout) +#define HWRM_RESET_TIMEOUT ((HWRM_CMD_TIMEOUT) * 4) +#define HWRM_RESP_ERR_CODE_MASK 0xffff +#define HWRM_RESP_LEN_OFFSET 4 +#define HWRM_RESP_LEN_MASK 0xffff0000 +#define HWRM_RESP_LEN_SFT 16 +#define HWRM_RESP_VALID_MASK 0xff000000 +#define HWRM_SEQ_ID_INVALID -1 +#define BNXT_HWRM_REQ_MAX_SIZE 128 +#define BNXT_HWRM_REQS_PER_PAGE (BNXT_PAGE_SIZE / \ + BNXT_HWRM_REQ_MAX_SIZE) +#define BNXT_RX_EVENT 1 +#define BNXT_AGG_EVENT 2 +#define BNXT_TX_EVENT 4 + +struct bnxt_sw_tx_bd { + struct sk_buff *skb; + DEFINE_DMA_UNMAP_ADDR(mapping); + u8 is_gso; + u8 is_push; + union { + unsigned short nr_frags; + u16 rx_prod; + }; +}; + +struct bnxt_sw_rx_bd { + void *data; + u8 *data_ptr; + dma_addr_t mapping; +}; + +struct bnxt_sw_rx_agg_bd { + struct page *page; + unsigned int offset; + dma_addr_t mapping; +}; + +struct bnxt_ring_struct { + int nr_pages; + int page_size; + void **pg_arr; + dma_addr_t *dma_arr; + + __le64 *pg_tbl; + dma_addr_t pg_tbl_map; + + int vmem_size; + void **vmem; + + u16 fw_ring_id; /* Ring id filled by Chimp FW */ + u8 queue_id; +}; + +struct tx_push_bd { + __le32 doorbell; + __le32 tx_bd_len_flags_type; + u32 tx_bd_opaque; + struct tx_bd_ext txbd2; +}; + +struct tx_push_buffer { + struct tx_push_bd push_bd; + u32 data[25]; +}; + +struct bnxt_tx_ring_info { + struct bnxt_napi *bnapi; + u16 tx_prod; + u16 tx_cons; + u16 txq_index; + void __iomem *tx_doorbell; + + struct tx_bd *tx_desc_ring[MAX_TX_PAGES]; + struct bnxt_sw_tx_bd *tx_buf_ring; + + dma_addr_t tx_desc_mapping[MAX_TX_PAGES]; + + struct tx_push_buffer *tx_push; + dma_addr_t tx_push_mapping; + __le64 data_mapping; + +#define BNXT_DEV_STATE_CLOSING 0x1 + u32 dev_state; + + struct bnxt_ring_struct tx_ring_struct; +}; + +struct bnxt_tpa_info { + void *data; + u8 *data_ptr; + dma_addr_t mapping; + u16 len; + unsigned short gso_type; + u32 flags2; + u32 metadata; + enum pkt_hash_types hash_type; + u32 rss_hash; + u32 hdr_info; + +#define BNXT_TPA_L4_SIZE(hdr_info) \ + (((hdr_info) & 0xf8000000) ? ((hdr_info) >> 27) : 32) + +#define BNXT_TPA_INNER_L3_OFF(hdr_info) \ + (((hdr_info) >> 18) & 0x1ff) + +#define BNXT_TPA_INNER_L2_OFF(hdr_info) \ + (((hdr_info) >> 9) & 0x1ff) + +#define BNXT_TPA_OUTER_L3_OFF(hdr_info) \ + ((hdr_info) & 0x1ff) +}; + +struct bnxt_rx_ring_info { + struct bnxt_napi *bnapi; + u16 rx_prod; + u16 rx_agg_prod; + u16 rx_sw_agg_prod; + u16 rx_next_cons; + void __iomem *rx_doorbell; + void __iomem *rx_agg_doorbell; + +#ifdef HAVE_NDO_XDP + struct bpf_prog *xdp_prog; +#endif + + struct rx_bd *rx_desc_ring[MAX_RX_PAGES]; + struct bnxt_sw_rx_bd *rx_buf_ring; + + struct rx_bd *rx_agg_desc_ring[MAX_RX_AGG_PAGES]; + struct bnxt_sw_rx_agg_bd *rx_agg_ring; + + unsigned long *rx_agg_bmap; + u16 rx_agg_bmap_size; + + struct page *rx_page; + unsigned int rx_page_offset; + + dma_addr_t rx_desc_mapping[MAX_RX_PAGES]; + dma_addr_t rx_agg_desc_mapping[MAX_RX_AGG_PAGES]; + + struct bnxt_tpa_info *rx_tpa; + + struct bnxt_ring_struct rx_ring_struct; + struct bnxt_ring_struct rx_agg_ring_struct; +}; + +struct bnxt_sw_stats { + u64 rx_l4_csum_errors; + u64 rx_resets; +}; + +struct bnxt_cp_ring_info { + u32 cp_raw_cons; + void __iomem *cp_doorbell; + + struct tx_cmp *cp_desc_ring[MAX_CP_PAGES]; + + dma_addr_t cp_desc_mapping[MAX_CP_PAGES]; + + struct ctx_hw_stats *hw_stats; + dma_addr_t hw_stats_map; + u32 hw_stats_ctx_id; + + struct bnxt_sw_stats sw_stats; + + struct bnxt_ring_struct cp_ring_struct; +}; + +struct bnxt_napi { + struct napi_struct napi; + struct bnxt *bp; + + int index; + struct bnxt_cp_ring_info cp_ring; + struct bnxt_rx_ring_info *rx_ring; + struct bnxt_tx_ring_info *tx_ring; + + void (*tx_int)(struct bnxt *, struct bnxt_napi *, + int); + u32 flags; +#define BNXT_NAPI_FLAG_XDP 0x1 + +#ifdef BNXT_PRIV_RX_BUSY_POLL + atomic_t poll_state; +#endif + bool in_reset; +}; + +#ifdef BNXT_PRIV_RX_BUSY_POLL +enum bnxt_poll_state_t { + BNXT_STATE_IDLE = 0, + BNXT_STATE_NAPI, + BNXT_STATE_POLL, + BNXT_STATE_DISABLE, +}; +#endif + +struct bnxt_irq { + irq_handler_t handler; + unsigned int vector; + u8 requested; + char name[IFNAMSIZ + 2]; +}; + +#define HWRM_RING_ALLOC_TX 0x1 +#define HWRM_RING_ALLOC_RX 0x2 +#define HWRM_RING_ALLOC_AGG 0x4 +#define HWRM_RING_ALLOC_CMPL 0x8 + +#define INVALID_STATS_CTX_ID -1 + +struct bnxt_ring_grp_info { + u16 fw_stats_ctx; + u16 fw_grp_id; + u16 rx_fw_ring_id; + u16 agg_fw_ring_id; + u16 cp_fw_ring_id; +}; + +struct bnxt_vnic_info { + u16 fw_vnic_id; /* returned by Chimp during alloc */ +#define BNXT_MAX_CTX_PER_VNIC 2 + u16 fw_rss_cos_lb_ctx[BNXT_MAX_CTX_PER_VNIC]; + u16 fw_l2_ctx_id; +#define BNXT_MAX_UC_ADDRS 4 + __le64 fw_l2_filter_id[BNXT_MAX_UC_ADDRS]; + /* index 0 always dev_addr */ + u16 uc_filter_count; + u8 *uc_list; + + u16 *fw_grp_ids; + dma_addr_t rss_table_dma_addr; + __le16 *rss_table; + dma_addr_t rss_hash_key_dma_addr; + u64 *rss_hash_key; + u32 rx_mask; + + u8 *mc_list; + int mc_list_size; + int mc_list_count; + dma_addr_t mc_list_mapping; +#define BNXT_MAX_MC_ADDRS 16 + + u32 flags; +#define BNXT_VNIC_RSS_FLAG 1 +#define BNXT_VNIC_RFS_FLAG 2 +#define BNXT_VNIC_MCAST_FLAG 4 +#define BNXT_VNIC_UCAST_FLAG 8 +#define BNXT_VNIC_RFS_NEW_RSS_FLAG 0x10 +}; + +#if defined(CONFIG_BNXT_BPO_SRIOV) +struct bnxt_vf_info { + u16 fw_fid; + u8 mac_addr[ETH_ALEN]; + u16 max_rsscos_ctxs; + u16 max_cp_rings; + u16 max_tx_rings; + u16 max_rx_rings; + u16 max_hw_ring_grps; + u16 max_l2_ctxs; + u16 max_irqs; + u16 max_vnics; + u16 max_stat_ctxs; + u16 vlan; + u32 flags; +#define BNXT_VF_QOS 0x1 +#define BNXT_VF_SPOOFCHK 0x2 +#define BNXT_VF_LINK_FORCED 0x4 +#define BNXT_VF_LINK_UP 0x8 + u32 func_flags; /* func cfg flags */ + u32 min_tx_rate; + u32 max_tx_rate; + void *hwrm_cmd_req_addr; + dma_addr_t hwrm_cmd_req_dma_addr; +}; +#endif + +struct bnxt_pf_info { +#define BNXT_FIRST_PF_FID 1 +#define BNXT_FIRST_VF_FID 128 + u16 fw_fid; + u16 port_id; + u8 mac_addr[ETH_ALEN]; + u16 max_rsscos_ctxs; + u16 max_cp_rings; + u16 max_tx_rings; /* HW assigned max tx rings for this PF */ + u16 max_rx_rings; /* HW assigned max rx rings for this PF */ + u16 max_hw_ring_grps; + u16 max_irqs; + u16 max_l2_ctxs; + u16 max_vnics; + u16 max_stat_ctxs; + u32 first_vf_id; + u16 active_vfs; + u16 max_vfs; + u32 max_encap_records; + u32 max_decap_records; + u32 max_tx_em_flows; + u32 max_tx_wm_flows; + u32 max_rx_em_flows; + u32 max_rx_wm_flows; + unsigned long *vf_event_bmap; + u16 hwrm_cmd_req_pages; + void *hwrm_cmd_req_addr[4]; + dma_addr_t hwrm_cmd_req_dma_addr[4]; + struct bnxt_vf_info *vf; +}; + +#ifdef CONFIG_RFS_ACCEL +struct bnxt_ntuple_filter { + struct hlist_node hash; + u8 dst_mac_addr[ETH_ALEN]; + u8 src_mac_addr[ETH_ALEN]; + struct flow_keys fkeys; + __le64 filter_id; + u16 sw_id; + u8 l2_fltr_idx; + u16 rxq; + u32 flow_id; + unsigned long state; +#define BNXT_FLTR_VALID 0 +#define BNXT_FLTR_UPDATE 1 +}; +#endif + +struct bnxt_link_info { + u8 phy_type; + u8 media_type; + u8 transceiver; + u8 phy_addr; + u8 phy_link_status; +#define BNXT_LINK_NO_LINK PORT_PHY_QCFG_RESP_LINK_NO_LINK +#define BNXT_LINK_SIGNAL PORT_PHY_QCFG_RESP_LINK_SIGNAL +#define BNXT_LINK_LINK PORT_PHY_QCFG_RESP_LINK_LINK + u8 wire_speed; + u8 loop_back; + u8 link_up; + u8 duplex; +#define BNXT_LINK_DUPLEX_HALF PORT_PHY_QCFG_RESP_DUPLEX_STATE_HALF +#define BNXT_LINK_DUPLEX_FULL PORT_PHY_QCFG_RESP_DUPLEX_STATE_FULL + u8 pause; +#define BNXT_LINK_PAUSE_TX PORT_PHY_QCFG_RESP_PAUSE_TX +#define BNXT_LINK_PAUSE_RX PORT_PHY_QCFG_RESP_PAUSE_RX +#define BNXT_LINK_PAUSE_BOTH (PORT_PHY_QCFG_RESP_PAUSE_RX | \ + PORT_PHY_QCFG_RESP_PAUSE_TX) + u8 lp_pause; + u8 auto_pause_setting; + u8 force_pause_setting; + u8 duplex_setting; + u8 auto_mode; +#define BNXT_AUTO_MODE(mode) ((mode) > BNXT_LINK_AUTO_NONE && \ + (mode) <= BNXT_LINK_AUTO_MSK) +#define BNXT_LINK_AUTO_NONE PORT_PHY_QCFG_RESP_AUTO_MODE_NONE +#define BNXT_LINK_AUTO_ALLSPDS PORT_PHY_QCFG_RESP_AUTO_MODE_ALL_SPEEDS +#define BNXT_LINK_AUTO_ONESPD PORT_PHY_QCFG_RESP_AUTO_MODE_ONE_SPEED +#define BNXT_LINK_AUTO_ONEORBELOW PORT_PHY_QCFG_RESP_AUTO_MODE_ONE_OR_BELOW +#define BNXT_LINK_AUTO_MSK PORT_PHY_QCFG_RESP_AUTO_MODE_SPEED_MASK +#define PHY_VER_LEN 3 + u8 phy_ver[PHY_VER_LEN]; + u16 link_speed; +#define BNXT_LINK_SPEED_100MB PORT_PHY_QCFG_RESP_LINK_SPEED_100MB +#define BNXT_LINK_SPEED_1GB PORT_PHY_QCFG_RESP_LINK_SPEED_1GB +#define BNXT_LINK_SPEED_2GB PORT_PHY_QCFG_RESP_LINK_SPEED_2GB +#define BNXT_LINK_SPEED_2_5GB PORT_PHY_QCFG_RESP_LINK_SPEED_2_5GB +#define BNXT_LINK_SPEED_10GB PORT_PHY_QCFG_RESP_LINK_SPEED_10GB +#define BNXT_LINK_SPEED_20GB PORT_PHY_QCFG_RESP_LINK_SPEED_20GB +#define BNXT_LINK_SPEED_25GB PORT_PHY_QCFG_RESP_LINK_SPEED_25GB +#define BNXT_LINK_SPEED_40GB PORT_PHY_QCFG_RESP_LINK_SPEED_40GB +#define BNXT_LINK_SPEED_50GB PORT_PHY_QCFG_RESP_LINK_SPEED_50GB + u16 support_speeds; + u16 auto_link_speeds; /* fw adv setting */ +#define BNXT_LINK_SPEED_MSK_100MB PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS_100MB +#define BNXT_LINK_SPEED_MSK_1GB PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS_1GB +#define BNXT_LINK_SPEED_MSK_2GB PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS_2GB +#define BNXT_LINK_SPEED_MSK_10GB PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS_10GB +#define BNXT_LINK_SPEED_MSK_2_5GB PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS_2_5GB +#define BNXT_LINK_SPEED_MSK_20GB PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS_20GB +#define BNXT_LINK_SPEED_MSK_25GB PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS_25GB +#define BNXT_LINK_SPEED_MSK_40GB PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS_40GB +#define BNXT_LINK_SPEED_MSK_50GB PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS_50GB + u16 support_auto_speeds; + u16 lp_auto_link_speeds; + u16 force_link_speed; + u32 preemphasis; + u8 module_status; + u16 fec_cfg; +#define BNXT_FEC_AUTONEG PORT_PHY_QCFG_RESP_FEC_CFG_FEC_AUTONEG_ENABLED +#define BNXT_FEC_ENC_BASE_R PORT_PHY_QCFG_RESP_FEC_CFG_FEC_CLAUSE74_ENABLED +#define BNXT_FEC_ENC_RS PORT_PHY_QCFG_RESP_FEC_CFG_FEC_CLAUSE91_ENABLED + + /* copy of requested setting from ethtool cmd */ + u8 autoneg; +#define BNXT_AUTONEG_SPEED 1 +#define BNXT_AUTONEG_FLOW_CTRL 2 + u8 req_duplex; + u8 req_flow_ctrl; + u16 req_link_speed; + u16 advertising; /* user adv setting */ + bool force_link_chng; + + /* a copy of phy_qcfg output used to report link + * info to VF + */ + struct hwrm_port_phy_qcfg_output phy_qcfg_resp; +}; + +#define BNXT_MAX_QUEUE 8 + +struct bnxt_queue_info { + u8 queue_id; + u8 queue_profile; +}; + +#define BNXT_MAX_LED 4 + +struct bnxt_led_info { + u8 led_id; + u8 led_type; + u8 led_group_id; + u8 unused; + __le16 led_state_caps; +#define BNXT_LED_ALT_BLINK_CAP(x) ((x) & \ + cpu_to_le16(PORT_LED_QCAPS_RESP_LED0_STATE_CAPS_BLINK_ALT_SUPPORTED)) + + __le16 led_color_caps; +}; + +#define BNXT_MAX_TEST 8 + +struct bnxt_test_info { + u8 offline_mask; + u16 timeout; + char string[BNXT_MAX_TEST][ETH_GSTRING_LEN]; +}; + +#define BNXT_GRCPF_REG_WINDOW_BASE_OUT 0x400 +#define BNXT_GRCPF_REG_SYNC_TIME 0x480 +#define BNXT_GRCPF_REG_SYNC_TIME_ADJ 0x488 +#define BNXT_GRCPF_REG_SYNC_TIME_ADJ_PER_MSK 0xffffffUL +#define BNXT_GRCPF_REG_SYNC_TIME_ADJ_PER_SFT 0 +#define BNXT_GRCPF_REG_SYNC_TIME_ADJ_VAL_MSK 0x1f000000UL +#define BNXT_GRCPF_REG_SYNC_TIME_ADJ_VAL_SFT 24 +#define BNXT_GRCPF_REG_SYNC_TIME_ADJ_SIGN_MSK 0x20000000UL +#define BNXT_GRCPF_REG_SYNC_TIME_ADJ_SIGN_SFT 29 +#define BNXT_CAG_REG_LEGACY_INT_STATUS 0x4014 +#define BNXT_CAG_REG_BASE 0x300000 + +struct bnxt { + void __iomem *bar0; + void __iomem *bar1; + void __iomem *bar2; + + u32 reg_base; + u16 chip_num; +#define CHIP_NUM_57301 0x16c8 +#define CHIP_NUM_57302 0x16c9 +#define CHIP_NUM_57304 0x16ca +#define CHIP_NUM_58700 0x16cd +#define CHIP_NUM_57402 0x16d0 +#define CHIP_NUM_57404 0x16d1 +#define CHIP_NUM_57406 0x16d2 + +#define CHIP_NUM_57311 0x16ce +#define CHIP_NUM_57312 0x16cf +#define CHIP_NUM_57314 0x16df +#define CHIP_NUM_57412 0x16d6 +#define CHIP_NUM_57414 0x16d7 +#define CHIP_NUM_57416 0x16d8 +#define CHIP_NUM_57417 0x16d9 + +#define BNXT_CHIP_NUM_5730X(chip_num) \ + ((chip_num) >= CHIP_NUM_57301 && \ + (chip_num) <= CHIP_NUM_57304) + +#define BNXT_CHIP_NUM_5740X(chip_num) \ + ((chip_num) >= CHIP_NUM_57402 && \ + (chip_num) <= CHIP_NUM_57406) + +#define BNXT_CHIP_NUM_5731X(chip_num) \ + ((chip_num) == CHIP_NUM_57311 || \ + (chip_num) == CHIP_NUM_57312 || \ + (chip_num) == CHIP_NUM_57314) + +#define BNXT_CHIP_NUM_5741X(chip_num) \ + ((chip_num) >= CHIP_NUM_57412 && \ + (chip_num) <= CHIP_NUM_57417) + +#define BNXT_CHIP_NUM_57X0X(chip_num) \ + (BNXT_CHIP_NUM_5730X(chip_num) || BNXT_CHIP_NUM_5740X(chip_num)) + +#define BNXT_CHIP_NUM_57X1X(chip_num) \ + (BNXT_CHIP_NUM_5731X(chip_num) || BNXT_CHIP_NUM_5741X(chip_num)) + + struct net_device *dev; + struct pci_dev *pdev; + + atomic_t intr_sem; + + u32 flags; + #define BNXT_FLAG_DCB_ENABLED 0x1 + #define BNXT_FLAG_VF 0x2 + #define BNXT_FLAG_LRO 0x4 +#ifdef CONFIG_INET + #define BNXT_FLAG_GRO 0x8 +#else + /* Cannot support hardware GRO if CONFIG_INET is not set */ + #define BNXT_FLAG_GRO 0x0 +#endif + #define BNXT_FLAG_TPA (BNXT_FLAG_LRO | BNXT_FLAG_GRO) + #define BNXT_FLAG_JUMBO 0x10 + #define BNXT_FLAG_STRIP_VLAN 0x20 + #define BNXT_FLAG_AGG_RINGS (BNXT_FLAG_JUMBO | BNXT_FLAG_GRO | \ + BNXT_FLAG_LRO) + #define BNXT_FLAG_USING_MSIX 0x40 + #define BNXT_FLAG_MSIX_CAP 0x80 + #define BNXT_FLAG_RFS 0x100 + #define BNXT_FLAG_SHARED_RINGS 0x200 + #define BNXT_FLAG_PORT_STATS 0x400 + #define BNXT_FLAG_UDP_RSS_CAP 0x800 + #define BNXT_FLAG_EEE_CAP 0x1000 + #define BNXT_FLAG_NEW_RSS_CAP 0x2000 + #define BNXT_FLAG_WOL_CAP 0x4000 + #define BNXT_FLAG_ROCEV1_CAP 0x8000 + #define BNXT_FLAG_ROCEV2_CAP 0x10000 + #define BNXT_FLAG_ROCE_CAP (BNXT_FLAG_ROCEV1_CAP | \ + BNXT_FLAG_ROCEV2_CAP) + #define BNXT_FLAG_NO_AGG_RINGS 0x20000 + #define BNXT_FLAG_RX_PAGE_MODE 0x40000 + #define BNXT_FLAG_FW_LLDP_AGENT 0x80000 + #define BNXT_FLAG_CHIP_NITRO_A0 0x1000000 + + #define BNXT_FLAG_ALL_CONFIG_FEATS (BNXT_FLAG_TPA | \ + BNXT_FLAG_RFS | \ + BNXT_FLAG_STRIP_VLAN) + +#define BNXT_PF(bp) (!((bp)->flags & BNXT_FLAG_VF)) +#define BNXT_VF(bp) ((bp)->flags & BNXT_FLAG_VF) +#define BNXT_NPAR(bp) ((bp)->port_partition_type) +#define BNXT_SINGLE_PF(bp) (BNXT_PF(bp) && !BNXT_NPAR(bp)) +#define BNXT_CHIP_TYPE_NITRO_A0(bp) ((bp)->flags & BNXT_FLAG_CHIP_NITRO_A0) +#define BNXT_RX_PAGE_MODE(bp) ((bp)->flags & BNXT_FLAG_RX_PAGE_MODE) + + struct bnxt_en_dev *edev; + struct bnxt_en_dev * (*ulp_probe)(struct net_device *); + + struct bnxt_napi **bnapi; + +#ifdef OLD_VLAN + struct vlan_group *vlgrp; +#endif + + struct bnxt_rx_ring_info *rx_ring; + struct bnxt_tx_ring_info *tx_ring; + u16 *tx_ring_map; + + struct sk_buff * (*gro_func)(struct bnxt_tpa_info *, int, int, + struct sk_buff *); + + struct sk_buff * (*rx_skb_func)(struct bnxt *, + struct bnxt_rx_ring_info *, + u16, void *, u8 *, dma_addr_t, + unsigned int); + + u32 rx_buf_size; + u32 rx_buf_use_size; /* useable size */ + u16 rx_offset; + u16 rx_dma_offset; + enum dma_data_direction rx_dir; + u32 rx_ring_size; + u32 rx_agg_ring_size; + u32 rx_copy_thresh; + u32 rx_ring_mask; + u32 rx_agg_ring_mask; + int rx_nr_pages; + int rx_agg_nr_pages; + int rx_nr_rings; + int rsscos_nr_ctxs; + + u32 tx_ring_size; + u32 tx_ring_mask; + int tx_nr_pages; + int tx_nr_rings; + int tx_nr_rings_per_tc; + int tx_nr_rings_xdp; + + int tx_wake_thresh; + int tx_push_thresh; + int tx_push_size; + + u32 cp_ring_size; + u32 cp_ring_mask; + u32 cp_bit; + int cp_nr_pages; + int cp_nr_rings; + + int num_stat_ctxs; + + /* grp_info indexed by completion ring index */ + struct bnxt_ring_grp_info *grp_info; + struct bnxt_vnic_info *vnic_info; + int nr_vnics; + u32 rss_hash_cfg; + + u8 max_tc; + u8 max_lltc; /* lossless TCs */ + struct bnxt_queue_info q_info[BNXT_MAX_QUEUE]; + + unsigned int current_interval; +#define BNXT_TIMER_INTERVAL HZ + + struct timer_list timer; + + unsigned long state; +#define BNXT_STATE_OPEN 0 +#define BNXT_STATE_IN_SP_TASK 1 +#define BNXT_STATE_READ_STATS 2 + + struct bnxt_irq *irq_tbl; + int total_irqs; + u8 mac_addr[ETH_ALEN]; + +#ifdef CONFIG_BNXT_BPO_DCB + struct ieee_pfc *ieee_pfc; + struct ieee_ets *ieee_ets; + u8 dcbx_cap; + u8 default_pri; +#endif /* CONFIG_BNXT_BPO_DCB */ + + u32 msg_enable; + + u32 hwrm_spec_code; + u16 hwrm_cmd_seq; + u32 hwrm_intr_seq_id; + void *hwrm_cmd_resp_addr; + dma_addr_t hwrm_cmd_resp_dma_addr; + void *hwrm_dbg_resp_addr; + dma_addr_t hwrm_dbg_resp_dma_addr; +#define HWRM_DBG_REG_BUF_SIZE 128 + + struct rx_port_stats *hw_rx_port_stats; + struct tx_port_stats *hw_tx_port_stats; + dma_addr_t hw_rx_port_stats_map; + dma_addr_t hw_tx_port_stats_map; + int hw_port_stats_size; + + u16 hwrm_max_req_len; + int hwrm_cmd_timeout; + struct mutex hwrm_cmd_lock; /* serialize hwrm messages */ + struct hwrm_ver_get_output ver_resp; +#define FW_VER_STR_LEN 32 +#define BC_HWRM_STR_LEN 21 +#define PHY_VER_STR_LEN (FW_VER_STR_LEN - BC_HWRM_STR_LEN) + char fw_ver_str[FW_VER_STR_LEN]; + __be16 vxlan_port; + u8 vxlan_port_cnt; + __le16 vxlan_fw_dst_port_id; + __be16 nge_port; + u8 nge_port_cnt; + __le16 nge_fw_dst_port_id; + u8 port_partition_type; + u16 br_mode; + + u16 rx_coal_ticks; + u16 rx_coal_ticks_irq; + u16 rx_coal_bufs; + u16 rx_coal_bufs_irq; + u16 tx_coal_ticks; + u16 tx_coal_ticks_irq; + u16 tx_coal_bufs; + u16 tx_coal_bufs_irq; + +#define BNXT_USEC_TO_COAL_TIMER(x) ((x) * 25 / 2) + + u32 stats_coal_ticks; +#define BNXT_DEF_STATS_COAL_TICKS 1000000 +#define BNXT_MIN_STATS_COAL_TICKS 250000 +#define BNXT_MAX_STATS_COAL_TICKS 1000000 + + struct work_struct sp_task; + unsigned long sp_event; +#define BNXT_RX_MASK_SP_EVENT 0 +#define BNXT_RX_NTP_FLTR_SP_EVENT 1 +#define BNXT_LINK_CHNG_SP_EVENT 2 +#define BNXT_HWRM_EXEC_FWD_REQ_SP_EVENT 3 +#define BNXT_VXLAN_ADD_PORT_SP_EVENT 4 +#define BNXT_VXLAN_DEL_PORT_SP_EVENT 5 +#define BNXT_RESET_TASK_SP_EVENT 6 +#define BNXT_RST_RING_SP_EVENT 7 +#define BNXT_HWRM_PF_UNLOAD_SP_EVENT 8 +#define BNXT_PERIODIC_STATS_SP_EVENT 9 +#define BNXT_HWRM_PORT_MODULE_SP_EVENT 10 +#define BNXT_RESET_TASK_SILENT_SP_EVENT 11 +#define BNXT_GENEVE_ADD_PORT_SP_EVENT 12 +#define BNXT_GENEVE_DEL_PORT_SP_EVENT 13 +#define BNXT_LINK_SPEED_CHNG_SP_EVENT 14 + + struct bnxt_pf_info pf; +#ifdef CONFIG_BNXT_BPO_SRIOV + int nr_vfs; + struct bnxt_vf_info vf; + wait_queue_head_t sriov_cfg_wait; + bool sriov_cfg; +#define BNXT_SRIOV_CFG_WAIT_TMO msecs_to_jiffies(10000) +#endif + +#define BNXT_NTP_FLTR_MAX_FLTR 4096 +#define BNXT_NTP_FLTR_HASH_SIZE 512 +#define BNXT_NTP_FLTR_HASH_MASK (BNXT_NTP_FLTR_HASH_SIZE - 1) + struct hlist_head ntp_fltr_hash_tbl[BNXT_NTP_FLTR_HASH_SIZE]; + spinlock_t ntp_fltr_lock; /* for hash table add, del */ + + unsigned long *ntp_fltr_bmap; + int ntp_fltr_count; + + struct bnxt_link_info link_info; + struct ethtool_eee eee; + u32 lpi_tmr_lo; + u32 lpi_tmr_hi; + + u8 num_tests; + struct bnxt_test_info *test_info; + + u8 wol_filter_id; + u8 wol; + + u8 num_leds; + struct bnxt_led_info leds[BNXT_MAX_LED]; + +#ifdef HAVE_NDO_XDP + struct bpf_prog *xdp_prog; +#endif + + struct bnxt_ptp_cfg *ptp_cfg; + +#ifndef PCIE_SRIOV_CONFIGURE + int req_vfs; + struct work_struct iov_task; +#endif +}; + +#define BNXT_RX_STATS_OFFSET(counter) \ + (offsetof(struct rx_port_stats, counter) / 8) + +#define BNXT_TX_STATS_OFFSET(counter) \ + ((offsetof(struct tx_port_stats, counter) + \ + sizeof(struct rx_port_stats) + 512) / 8) + +#ifdef BNXT_PRIV_RX_BUSY_POLL +static inline void bnxt_enable_poll(struct bnxt_napi *bnapi) +{ + atomic_set(&bnapi->poll_state, BNXT_STATE_IDLE); +} + +/* called from the NAPI poll routine to get ownership of a bnapi */ +static inline bool bnxt_lock_napi(struct bnxt_napi *bnapi) +{ + int rc = atomic_cmpxchg(&bnapi->poll_state, BNXT_STATE_IDLE, + BNXT_STATE_NAPI); + + return rc == BNXT_STATE_IDLE; +} + +static inline void bnxt_unlock_napi(struct bnxt_napi *bnapi) +{ + atomic_set(&bnapi->poll_state, BNXT_STATE_IDLE); +} + +/* called from the busy poll routine to get ownership of a bnapi */ +static inline bool bnxt_lock_poll(struct bnxt_napi *bnapi) +{ + int rc = atomic_cmpxchg(&bnapi->poll_state, BNXT_STATE_IDLE, + BNXT_STATE_POLL); + + return rc == BNXT_STATE_IDLE; +} + +static inline void bnxt_unlock_poll(struct bnxt_napi *bnapi) +{ + atomic_set(&bnapi->poll_state, BNXT_STATE_IDLE); +} + +static inline bool bnxt_busy_polling(struct bnxt_napi *bnapi) +{ + return atomic_read(&bnapi->poll_state) == BNXT_STATE_POLL; +} + +static inline void bnxt_disable_poll(struct bnxt_napi *bnapi) +{ + int old; + + while (1) { + old = atomic_cmpxchg(&bnapi->poll_state, BNXT_STATE_IDLE, + BNXT_STATE_DISABLE); + if (old == BNXT_STATE_IDLE) + break; + usleep_range(500, 5000); + } +} + +#else + +static inline void bnxt_enable_poll(struct bnxt_napi *bnapi) +{ +} + +static inline bool bnxt_lock_napi(struct bnxt_napi *bnapi) +{ + return true; +} + +static inline void bnxt_unlock_napi(struct bnxt_napi *bnapi) +{ +} + +static inline bool bnxt_lock_poll(struct bnxt_napi *bnapi) +{ + return false; +} + +static inline void bnxt_unlock_poll(struct bnxt_napi *bnapi) +{ +} + +static inline bool bnxt_busy_polling(struct bnxt_napi *bnapi) +{ + return false; +} + +static inline void bnxt_disable_poll(struct bnxt_napi *bnapi) +{ +} + +#endif + +#define I2C_DEV_ADDR_A0 0xa0 +#define I2C_DEV_ADDR_A2 0xa2 +#define SFP_EEPROM_SFF_8472_COMP_ADDR 0x5e +#define SFP_EEPROM_SFF_8472_COMP_SIZE 1 +#define SFF_MODULE_ID_SFP 0x3 +#define SFF_MODULE_ID_QSFP 0xc +#define SFF_MODULE_ID_QSFP_PLUS 0xd +#define SFF_MODULE_ID_QSFP28 0x11 +#define BNXT_MAX_PHY_I2C_RESP_SIZE 64 + +#define BDETBD_REG_BD_PRODUCER_IDX 0x90000UL +#define BDETBD_REG_BD_REQ_CONSUMER_IDX 0x91000UL +#define BDETBD_REG_BD_CMPL_CONSUMER_IDX 0x92000UL +#define BDERBD_REG_BD_PRODUCER_IDX 0x410000UL +#define BDERBD_REG_BD_REQ_CONSUMER_IDX 0x411000UL +#define BDERBD_REG_BD_CMPL_CONSUMER_IDX 0x412000UL +#define CAG_REG_CAG_PRODUCER_INDEX_REG 0x302000UL +#define CAG_REG_CAG_CONSUMER_INDEX_REG 0x303000UL +#define CAG_REG_CAG_VECTOR_CTRL 0x301000UL +#define TDC_REG_INT_STS_0 0x180020UL +#define TDC_REG_TDC_DEBUG_CNTL 0x180014UL +#define TDC_REG_TDC_DEBUG_STATUS 0x180018UL +#define TDI_REG_DBG_DWORD_ENABLE 0x100104UL +#define TDI_REG_DBG_OUT_DATA 0x100120UL +#define TDI_REG_DBG_SELECT 0x100100UL +#define TE_DEC_REG_PORT_CURRENT_CREDIT_REG 0x2401300UL +#define RDI_REG_RDI_DEBUG_CONTROL_REG 0x27001cUL +#define RDI_REG_RDI_DEBUG_STATUS_REG 0x270020UL + +static inline u32 bnxt_tx_avail(struct bnxt *bp, struct bnxt_tx_ring_info *txr) +{ + /* Tell compiler to fetch tx indices from memory. */ + barrier(); + + return bp->tx_ring_size - + ((txr->tx_prod - txr->tx_cons) & bp->tx_ring_mask); +} + +extern const u16 bnxt_lhint_arr[]; + +int bnxt_alloc_rx_data(struct bnxt *bp, struct bnxt_rx_ring_info *rxr, + u16 prod, gfp_t gfp); +void bnxt_reuse_rx_data(struct bnxt_rx_ring_info *rxr, u16 cons, void *data); +void bnxt_set_tpa_flags(struct bnxt *bp); +void bnxt_set_ring_params(struct bnxt *); +int bnxt_set_rx_skb_mode(struct bnxt *bp, bool page_mode); +void bnxt_hwrm_cmd_hdr_init(struct bnxt *, void *, u16, u16, u16); +int _hwrm_send_message(struct bnxt *, void *, u32, int); +int hwrm_send_message(struct bnxt *, void *, u32, int); +int hwrm_send_message_silent(struct bnxt *, void *, u32, int); +int bnxt_hwrm_func_rgtr_async_events(struct bnxt *bp, unsigned long *bmap, + int bmap_size); +int bnxt_hwrm_vnic_cfg(struct bnxt *bp, u16 vnic_id); +int __bnxt_hwrm_get_tx_rings(struct bnxt *bp, u16 fid, int *tx_rings); +int bnxt_hwrm_set_coal(struct bnxt *); +int bnxt_hwrm_func_qcaps(struct bnxt *); +unsigned int bnxt_get_max_func_stat_ctxs(struct bnxt *bp); +void bnxt_set_max_func_stat_ctxs(struct bnxt *bp, unsigned int max); +unsigned int bnxt_get_max_func_cp_rings(struct bnxt *bp); +void bnxt_set_max_func_cp_rings(struct bnxt *bp, unsigned int max); +void bnxt_set_max_func_irqs(struct bnxt *bp, unsigned int max); +void bnxt_tx_disable(struct bnxt *); +void bnxt_tx_enable(struct bnxt *); +int bnxt_hwrm_set_pause(struct bnxt *); +int bnxt_hwrm_set_link_setting(struct bnxt *, bool, bool); +int bnxt_hwrm_alloc_wol_fltr(struct bnxt *); +int bnxt_hwrm_free_wol_fltr(struct bnxt *); +int bnxt_hwrm_fw_set_time(struct bnxt *); +int bnxt_open_nic(struct bnxt *, bool, bool); +int bnxt_half_open_nic(struct bnxt *bp); +void bnxt_half_close_nic(struct bnxt *bp); +int bnxt_close_nic(struct bnxt *, bool, bool); +int bnxt_reserve_rings(struct bnxt *bp, int tx, int rx, bool sh, int tcs, + int tx_xdp); +#if defined(HAVE_SETUP_TC) || defined(CONFIG_BNXT_BPO_DCB) +int bnxt_setup_mq_tc(struct net_device *, u8); +#endif +int bnxt_get_max_rings(struct bnxt *, int *, int *, bool); +void bnxt_restore_pf_fw_resources(struct bnxt *bp); +#endif only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/bnxt/bnxt_compat.h +++ linux-raspi2-4.4.0/ubuntu/bnxt/bnxt_compat.h @@ -0,0 +1,776 @@ +/* Broadcom NetXtreme-C/E network driver. + * + * Copyright (c) 2014-2016 Broadcom Corporation + * Copyright (c) 2016-2017 Broadcom Limited + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation. + */ + +#include +#include +#include +#include +#include +#include +#if !defined(NEW_FLOW_KEYS) && defined(HAVE_FLOW_KEYS) +#include +#endif +#include + +#ifndef SPEED_20000 +#define SPEED_20000 20000 +#endif + +#ifndef SPEED_25000 +#define SPEED_25000 25000 +#endif + +#ifndef SPEED_40000 +#define SPEED_40000 40000 +#endif + +#ifndef SPEED_50000 +#define SPEED_50000 50000 +#endif + +#ifndef SPEED_UNKNOWN +#define SPEED_UNKNOWN -1 +#endif + +#ifndef DUPLEX_UNKNOWN +#define DUPLEX_UNKNOWN 0xff +#endif + +#ifndef PORT_DA +#define PORT_DA 0x05 +#endif + +#ifndef PORT_NONE +#define PORT_NONE 0xef +#endif + +#if !defined(SUPPORTED_40000baseCR4_Full) +#define SUPPORTED_40000baseCR4_Full (1 << 24) + +#define ADVERTISED_40000baseCR4_Full (1 << 24) +#endif + +#if !defined(IPV4_FLOW) +#define IPV4_FLOW 0x10 +#endif + +#if !defined(IPV6_FLOW) +#define IPV6_FLOW 0x11 +#endif + +#if defined(HAVE_ETH_GET_HEADLEN) || (LINUX_VERSION_CODE > 0x040900) +#define BNXT_RX_PAGE_MODE_SUPPORT 1 +#endif + +#if !defined(ETH_P_8021AD) +#define ETH_P_8021AD 0x88A8 +#endif + +#if !defined(ETH_P_ROCE) +#define ETH_P_ROCE 0x8915 +#endif + +#if !defined(ROCE_V2_UDP_PORT) +#define ROCE_V2_UDP_DPORT 4791 +#endif + +#ifndef NETIF_F_GSO_UDP_TUNNEL +#define NETIF_F_GSO_UDP_TUNNEL 0 +#endif + +#ifndef NETIF_F_GSO_UDP_TUNNEL_CSUM +#define NETIF_F_GSO_UDP_TUNNEL_CSUM 0 +#endif + +#ifndef NETIF_F_GSO_GRE +#define NETIF_F_GSO_GRE 0 +#endif + +#ifndef NETIF_F_GSO_GRE_CSUM +#define NETIF_F_GSO_GRE_CSUM 0 +#endif + +#ifndef NETIF_F_GSO_IPIP +#define NETIF_F_GSO_IPIP 0 +#endif + +#ifndef NETIF_F_GSO_SIT +#define NETIF_F_GSO_SIT 0 +#endif + +#ifndef NETIF_F_GSO_IPXIP4 +#define NETIF_F_GSO_IPXIP4 (NETIF_F_GSO_IPIP | NETIF_F_GSO_SIT) +#endif + +#ifndef NETIF_F_GSO_PARTIAL +#define NETIF_F_GSO_PARTIAL 0 +#else +#define HAVE_GSO_PARTIAL_FEATURES 1 +#endif + +/* Tie rx checksum offload to tx checksum offload for older kernels. */ +#ifndef NETIF_F_RXCSUM +#define NETIF_F_RXCSUM NETIF_F_IP_CSUM +#endif + +#ifndef NETIF_F_NTUPLE +#define NETIF_F_NTUPLE 0 +#endif + +#ifndef NETIF_F_RXHASH +#define NETIF_F_RXHASH 0 +#else +#define HAVE_NETIF_F_RXHASH +#endif + +#ifndef HAVE_SKB_GSO_UDP_TUNNEL_CSUM +#ifndef HAVE_SKB_GSO_UDP_TUNNEL +#define SKB_GSO_UDP_TUNNEL 0 +#endif +#define SKB_GSO_UDP_TUNNEL_CSUM SKB_GSO_UDP_TUNNEL +#endif + +#ifndef BRIDGE_MODE_VEB +#define BRIDGE_MODE_VEB 0 +#endif + +#ifndef BRIDGE_MODE_VEPA +#define BRIDGE_MODE_VEPA 1 +#endif + +#ifndef BRIDGE_MODE_UNDEF +#define BRIDGE_MODE_UNDEF 0xffff +#endif + +#ifndef DEFINE_DMA_UNMAP_ADDR +#define DEFINE_DMA_UNMAP_ADDR(mapping) DECLARE_PCI_UNMAP_ADDR(mapping) +#endif + +#ifndef dma_unmap_addr_set +#define dma_unmap_addr_set pci_unmap_addr_set +#endif + +#ifndef dma_unmap_addr +#define dma_unmap_addr pci_unmap_addr +#endif + +#ifndef RHEL_RELEASE_VERSION +#define RHEL_RELEASE_VERSION(a, b) 0 +#endif + +#if defined(RHEL_RELEASE_CODE) && (RHEL_RELEASE_CODE == RHEL_RELEASE_VERSION(6,3)) +#if defined(CONFIG_X86_64) && !defined(CONFIG_NEED_DMA_MAP_STATE) +#undef DEFINE_DMA_UNMAP_ADDR +#define DEFINE_DMA_UNMAP_ADDR(ADDR_NAME) dma_addr_t ADDR_NAME +#undef DEFINE_DMA_UNMAP_LEN +#define DEFINE_DMA_UNMAP_LEN(LEN_NAME) __u32 LEN_NAME +#undef dma_unmap_addr +#define dma_unmap_addr(PTR, ADDR_NAME) ((PTR)->ADDR_NAME) +#undef dma_unmap_addr_set +#define dma_unmap_addr_set(PTR, ADDR_NAME, VAL) (((PTR)->ADDR_NAME) = (VAL)) +#undef dma_unmap_len +#define dma_unmap_len(PTR, LEN_NAME) ((PTR)->LEN_NAME) +#undef dma_unmap_len_set +#define dma_unmap_len_set(PTR, LEN_NAME, VAL) (((PTR)->LEN_NAME) = (VAL)) +#endif +#endif + +#ifdef HAVE_NDO_SET_VF_VLAN_RH73 +#define ndo_set_vf_vlan ndo_set_vf_vlan_rh73 +#endif + +#ifndef ETHTOOL_GEEE +struct ethtool_eee { + __u32 cmd; + __u32 supported; + __u32 advertised; + __u32 lp_advertised; + __u32 eee_active; + __u32 eee_enabled; + __u32 tx_lpi_enabled; + __u32 tx_lpi_timer; + __u32 reserved[2]; +}; +#endif + +#ifndef HAVE_SKB_FRAG_PAGE +static inline struct page *skb_frag_page(const skb_frag_t *frag) +{ + return frag->page; +} + +static inline void *skb_frag_address_safe(const skb_frag_t *frag) +{ + void *ptr = page_address(skb_frag_page(frag)); + if (unlikely(!ptr)) + return NULL; + + return ptr + frag->page_offset; +} + +static inline void __skb_frag_set_page(skb_frag_t *frag, struct page *page) +{ + frag->page = page; +} + +#define skb_frag_dma_map(x, frag, y, len, z) \ + pci_map_page(bp->pdev, (frag)->page, \ + (frag)->page_offset, (len), PCI_DMA_TODEVICE) +#endif + +#ifndef HAVE_PCI_VFS_ASSIGNED +static inline int pci_vfs_assigned(struct pci_dev *dev) +{ + return 0; +} +#endif + +#ifndef HAVE_PCI_NUM_VF +#include <../drivers/pci/pci.h> + +static inline int pci_num_vf(struct pci_dev *dev) +{ + if (!dev->is_physfn) + return 0; + + return dev->sriov->nr_virtfn; +} +#endif + +#ifndef SKB_ALLOC_NAPI +static inline struct sk_buff *napi_alloc_skb(struct napi_struct *napi, + unsigned int length) +{ + struct sk_buff *skb; + + length += NET_SKB_PAD + NET_IP_ALIGN; + skb = netdev_alloc_skb(napi->dev, length); + + if (likely(skb)) + skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN); + + return skb; +} +#endif + +#ifndef HAVE_SKB_HASH_TYPE + +enum pkt_hash_types { + PKT_HASH_TYPE_NONE, /* Undefined type */ + PKT_HASH_TYPE_L2, /* Input: src_MAC, dest_MAC */ + PKT_HASH_TYPE_L3, /* Input: src_IP, dst_IP */ + PKT_HASH_TYPE_L4, /* Input: src_IP, dst_IP, src_port, dst_port */ +}; + +static inline void +skb_set_hash(struct sk_buff *skb, __u32 hash, enum pkt_hash_types type) +{ +#ifdef HAVE_NETIF_F_RXHASH + skb->rxhash = hash; +#endif +} + +#endif + +#define GET_NET_STATS(x) (unsigned long)le64_to_cpu(x) + +#if !defined(NETDEV_RX_FLOW_STEER) || !defined(HAVE_FLOW_KEYS) || (LINUX_VERSION_CODE < 0x030300) || defined(NO_NETDEV_CPU_RMAP) +#undef CONFIG_RFS_ACCEL +#endif + +#if !defined(IEEE_8021QAZ_APP_SEL_DGRAM) || !defined(CONFIG_DCB) +#undef CONFIG_BNXT_BPO_DCB +#endif + +#ifdef NETDEV_UDP_TUNNEL_PUSH_INFO +#define HAVE_NDO_UDP_TUNNEL 1 +#endif + +#ifdef HAVE_NDO_XDP +#define CONFIG_BNXT_BPO_XDP 1 +#endif + +#ifndef NETDEV_HW_FEATURES +#define hw_features features +#endif + +#ifndef HAVE_NETDEV_FEATURES_T +#ifdef HAVE_NDO_FIX_FEATURES +typedef u32 netdev_features_t; +#else +typedef unsigned long netdev_features_t; +#endif +#endif + +#if !defined(IFF_UNICAST_FLT) +#define IFF_UNICAST_FLT 0 +#endif + +#ifndef HAVE_NEW_BUILD_SKB +#define build_skb(data, frag) build_skb(data) +#endif + +#ifndef __rcu +#define __rcu +#endif + +#ifndef rcu_dereference_protected +#define rcu_dereference_protected(p, c) \ + rcu_dereference((p)) +#endif + +#ifndef rcu_access_pointer +#define rcu_access_pointer rcu_dereference +#endif + +#ifndef rtnl_dereference +#define rtnl_dereference(p) \ + rcu_dereference_protected(p, lockdep_rtnl_is_held()) +#endif + +#ifndef RCU_INIT_POINTER +#define RCU_INIT_POINTER(p, v) \ + p = (typeof(*v) __force __rcu *)(v) +#endif + +#ifdef HAVE_OLD_HLIST +#define __hlist_for_each_entry_rcu(f, n, h, m) \ + hlist_for_each_entry_rcu(f, n, h, m) +#define __hlist_for_each_entry_safe(f, n, t, h, m) \ + hlist_for_each_entry_safe(f, n, t, h, m) +#else +#define __hlist_for_each_entry_rcu(f, n, h, m) \ + hlist_for_each_entry_rcu(f, h, m) +#define __hlist_for_each_entry_safe(f, n, t, h, m) \ + hlist_for_each_entry_safe(f, t, h, m) +#endif + +#ifndef skb_vlan_tag_present +#define skb_vlan_tag_present(skb) vlan_tx_tag_present(skb) +#define skb_vlan_tag_get(skb) vlan_tx_tag_get(skb) +#endif + +#ifndef VLAN_PRIO_SHIFT +#define VLAN_PRIO_SHIFT 13 +#endif + +#ifndef NETIF_F_HW_VLAN_CTAG_TX +#define NETIF_F_HW_VLAN_CTAG_TX NETIF_F_HW_VLAN_TX +#define NETIF_F_HW_VLAN_CTAG_RX NETIF_F_HW_VLAN_RX +/* 802.1AD not supported on older kernels */ +#define NETIF_F_HW_VLAN_STAG_TX 0 +#define NETIF_F_HW_VLAN_STAG_RX 0 + +#define __vlan_hwaccel_put_tag(skb, proto, tag) \ + if (proto == ntohs(ETH_P_8021Q)) \ + __vlan_hwaccel_put_tag(skb, tag) + +#define vlan_proto protocol + +#if defined(HAVE_VLAN_RX_REGISTER) +#if defined(CONFIG_VLAN_8021Q) || defined(CONFIG_VLAN_8021Q_MODULE) +#define OLD_VLAN 1 +#define OLD_VLAN_VALID (1 << 31) +#endif +#endif + +#endif + +#ifndef HAVE_NETDEV_UPDATE_FEATURES +static inline void netdev_update_features(struct net_device *dev) +{ + /* Do nothing, since we can't set default VLAN on these old kernels. */ +} +#endif + +#if !defined(netdev_printk) && (LINUX_VERSION_CODE < 0x020624) + +#ifndef HAVE_NETDEV_NAME +static inline const char *netdev_name(const struct net_device *dev) +{ + if (dev->reg_state != NETREG_REGISTERED) + return "(unregistered net_device)"; + return dev->name; +} +#endif + +#define NET_PARENT_DEV(netdev) ((netdev)->dev.parent) + +#define netdev_printk(level, netdev, format, args...) \ + dev_printk(level, NET_PARENT_DEV(netdev), \ + "%s: " format, \ + netdev_name(netdev), ##args) + +#endif + +#ifndef netdev_err +#define netdev_err(dev, format, args...) \ + netdev_printk(KERN_ERR, dev, format, ##args) +#endif + +#ifndef netdev_info +#define netdev_info(dev, format, args...) \ + netdev_printk(KERN_INFO, dev, format, ##args) +#endif + +#ifndef netdev_warn +#define netdev_warn(dev, format, args...) \ + netdev_printk(KERN_WARNING, dev, format, ##args) +#endif + +#ifndef netdev_uc_count +#define netdev_uc_count(dev) ((dev)->uc.count) +#endif + +#ifndef netdev_for_each_uc_addr +#define netdev_for_each_uc_addr(ha, dev) \ + list_for_each_entry(ha, &dev->uc.list, list) +#endif + +#ifndef netdev_for_each_mc_addr +#define netdev_for_each_mc_addr(mclist, dev) \ + for (mclist = dev->mc_list; mclist; mclist = mclist->next) +#endif + +#ifndef smp_mb__before_atomic +#define smp_mb__before_atomic() smp_mb() +#endif + +#ifndef smp_mb__after_atomic +#define smp_mb__after_atomic() smp_mb() +#endif + +#ifndef dma_rmb +#define dma_rmb() rmb() +#endif + +#ifdef CONFIG_NET_RX_BUSY_POLL +#include +#if defined(HAVE_NAPI_HASH_ADD) && defined(NETDEV_BUSY_POLL) +#define BNXT_PRIV_RX_BUSY_POLL 1 +#endif +#endif + +#if !defined(CONFIG_PTP_1588_CLOCK) && !defined(CONFIG_PTP_1588_CLOCK_MODULE) +#undef HAVE_IEEE1588_SUPPORT +#endif + +#if !defined(HAVE_NAPI_HASH_DEL) +static inline void napi_hash_del(struct napi_struct *napi) +{ +} +#endif + +#if !defined(LL_FLUSH_FAILED) || !defined(HAVE_NAPI_HASH_ADD) +static inline void napi_hash_add(struct napi_struct *napi) +{ +} +#endif + +#ifndef HAVE_SET_COHERENT_MASK +static inline int dma_set_coherent_mask(struct device *dev, u64 mask) +{ + struct pci_dev *pdev = container_of(dev, struct pci_dev, dev); + + return pci_set_consistent_dma_mask(pdev, mask); +} +#endif + +#ifndef HAVE_SET_MASK_AND_COHERENT +static inline int dma_set_mask_and_coherent(struct device *dev, u64 mask) +{ + int rc = dma_set_mask(dev, mask); + if (rc == 0) + dma_set_coherent_mask(dev, mask); + return rc; +} +#endif + +#ifndef HAVE_IFLA_TX_RATE +#define ndo_set_vf_rate ndo_set_vf_tx_rate +#endif + +#ifndef HAVE_PRANDOM_BYTES +#define prandom_bytes get_random_bytes +#endif + +#ifndef rounddown +#define rounddown(x, y) ( \ +{ \ + typeof(x) __x = (x); \ + __x - (__x % (y)); \ +} \ +) +#endif + +#ifdef NO_SKB_FRAG_SIZE +static inline unsigned int skb_frag_size(const skb_frag_t *frag) +{ + return frag->size; +} +#endif + +#ifndef HAVE_SKB_CHECKSUM_NONE_ASSERT +static inline void skb_checksum_none_assert(struct sk_buff *skb) +{ + skb->ip_summed = CHECKSUM_NONE; +} +#endif + +#ifndef HAVE_NEW_FLOW_DISSECTOR_WITH_FLAGS +#define skb_flow_dissect_flow_keys(skb, fkeys, flags) \ + skb_flow_dissect_flow_keys(skb, fkeys) +#endif + +#ifndef HAVE_ETHER_ADDR_EQUAL +static inline bool ether_addr_equal(const u8 *addr1, const u8 *addr2) +{ + return !compare_ether_addr(addr1, addr2); +} +#endif + +#ifndef HAVE_ETHER_ADDR_COPY +static inline void ether_addr_copy(u8 *dst, const u8 *src) +{ + memcpy(dst, src, ETH_ALEN); +} +#endif + +#ifndef HAVE_ETH_BROADCAST_ADDR +static inline void eth_broadcast_addr(u8 *addr) +{ + memset(addr, 0xff, ETH_ALEN); +} +#endif + +#ifndef HAVE_ETH_HW_ADDR_RANDOM +static inline void eth_hw_addr_random(struct net_device *dev) +{ +#if defined(NET_ADDR_RANDOM) + dev->addr_assign_type = NET_ADDR_RANDOM; +#endif + random_ether_addr(dev->dev_addr); +} +#endif + +#ifndef HAVE_NETDEV_TX_QUEUE_CTRL +static inline void netdev_tx_sent_queue(struct netdev_queue *dev_queue, + unsigned int bytes) +{ +} + +static inline void netdev_tx_completed_queue(struct netdev_queue *dev_queue, + unsigned int pkts, unsigned int bytes) +{ +} + +static inline void netdev_tx_reset_queue(struct netdev_queue *q) +{ +} +#endif + +#ifndef HAVE_NETIF_SET_REAL_NUM_RX +static inline int netif_set_real_num_rx_queues(struct net_device *dev, + unsigned int rxq) +{ + return 0; +} +#endif + +#ifndef HAVE_NETIF_SET_REAL_NUM_TX +static inline void netif_set_real_num_tx_queues(struct net_device *dev, + unsigned int txq) +{ + dev->real_num_tx_queues = txq; +} +#endif + +#ifndef HAVE_NETIF_GET_DEFAULT_RSS +static inline int netif_get_num_default_rss_queues(void) +{ + return min_t(int, 8, num_online_cpus()); +} +#endif + +#if !defined(HAVE_TCP_V6_CHECK) +static __inline__ __sum16 tcp_v6_check(int len, + const struct in6_addr *saddr, + const struct in6_addr *daddr, + __wsum base) +{ + return csum_ipv6_magic(saddr, daddr, len, IPPROTO_TCP, base); +} +#endif + +#ifndef HAVE_USLEEP_RANGE +static inline void usleep_range(unsigned long min, unsigned long max) +{ + if (min < 1000) + udelay(min); + else + msleep(min / 1000); +} +#endif + +#ifndef HAVE_GET_NUM_TC +static inline int netdev_get_num_tc(struct net_device *dev) +{ + return 0; +} + +static inline void netdev_reset_tc(struct net_device *dev) +{ +} + +static inline int netdev_set_tc_queue(struct net_device *devi, u8 tc, + u16 count, u16 offset) +{ + return 0; +} +#endif + +#ifndef HAVE_VZALLOC +static inline void *vzalloc(size_t size) +{ + void *ret = vmalloc(size); + if (ret) + memset(ret, 0, size); + return ret; +} +#endif + +#ifndef ETH_MODULE_SFF_8436 +#define ETH_MODULE_SFF_8436 0x4 +#endif + +#ifndef ETH_MODULE_SFF_8436_LEN +#define ETH_MODULE_SFF_8436_LEN 256 +#endif + +#ifndef ETH_MODULE_SFF_8636 +#define ETH_MODULE_SFF_8636 0x3 +#endif + +#ifndef ETH_MODULE_SFF_8636_LEN +#define ETH_MODULE_SFF_8636_LEN 256 +#endif + +#ifndef HAVE_PCIE_GET_MINIMUM_LINK +enum pcie_link_width { + PCIE_LNK_WIDTH_UNKNOWN = 0xFF, +}; + +#ifndef HAVE_PCIE_BUS_SPEED +enum pci_bus_speed { + PCIE_SPEED_2_5GT = 0x14, + PCIE_SPEED_5_0GT = 0x15, + PCIE_SPEED_8_0GT = 0x16, + PCI_SPEED_UNKNOWN = 0xFF, +}; +#endif + +static const unsigned char pcie_link_speed[] = { + PCI_SPEED_UNKNOWN, /* 0 */ + PCIE_SPEED_2_5GT, /* 1 */ + PCIE_SPEED_5_0GT, /* 2 */ + PCIE_SPEED_8_0GT, /* 3 */ + PCI_SPEED_UNKNOWN, /* 4 */ + PCI_SPEED_UNKNOWN, /* 5 */ + PCI_SPEED_UNKNOWN, /* 6 */ + PCI_SPEED_UNKNOWN, /* 7 */ + PCI_SPEED_UNKNOWN, /* 8 */ + PCI_SPEED_UNKNOWN, /* 9 */ + PCI_SPEED_UNKNOWN, /* A */ + PCI_SPEED_UNKNOWN, /* B */ + PCI_SPEED_UNKNOWN, /* C */ + PCI_SPEED_UNKNOWN, /* D */ + PCI_SPEED_UNKNOWN, /* E */ + PCI_SPEED_UNKNOWN /* F */ +}; + +#ifndef PCI_EXP_LNKSTA_NLW_SHIFT +#define PCI_EXP_LNKSTA_NLW_SHIFT 4 +#endif + +#ifdef HAVE_PCIE_CAPABILITY_READ_WORD +static inline int pcie_get_minimum_link(struct pci_dev *dev, + enum pci_bus_speed *speed, + enum pcie_link_width *width) +{ + int ret; + + *speed = PCI_SPEED_UNKNOWN; + *width = PCIE_LNK_WIDTH_UNKNOWN; + + while (dev) { + u16 lnksta; + enum pci_bus_speed next_speed; + enum pcie_link_width next_width; + + ret = pcie_capability_read_word(dev, PCI_EXP_LNKSTA, &lnksta); + if (ret) + return ret; + + next_speed = pcie_link_speed[lnksta & PCI_EXP_LNKSTA_CLS]; + next_width = (lnksta & PCI_EXP_LNKSTA_NLW) >> + PCI_EXP_LNKSTA_NLW_SHIFT; + + if (next_speed < *speed) + *speed = next_speed; + + if (next_width < *width) + *width = next_width; + + dev = dev->bus->self; + } + + return 0; +} +#else +static inline int pcie_get_minimum_link(struct pci_dev *dev, + enum pci_bus_speed *speed, + enum pcie_link_width *width) +{ +#define BNXT_PCIE_CAP 0xAC + u16 lnksta; + int ret; + + ret = pci_read_config_word(dev, BNXT_PCIE_CAP + PCI_EXP_LNKSTA, + &lnksta); + if (ret) + return ret; + + *speed = pcie_link_speed[lnksta & PCI_EXP_LNKSTA_CLS]; + *width = (lnksta & PCI_EXP_LNKSTA_NLW) >> PCI_EXP_LNKSTA_NLW_SHIFT; + + return 0; +} +#endif +#endif + +#ifndef HAVE_PCI_IS_BRIDGE +static inline bool pci_is_bridge(struct pci_dev *dev) +{ + return dev->hdr_type == PCI_HEADER_TYPE_BRIDGE || + dev->hdr_type == PCI_HEADER_TYPE_CARDBUS; +} +#endif + +#ifndef HAVE_NDO_XDP +struct netdev_xdp; +#endif + +#ifndef XDP_PACKET_HEADROOM +#define XDP_PACKET_HEADROOM 0 +#endif + +#ifndef HAVE_BPF_TRACE +#define trace_xdp_exception(dev, xdp_prog, act) +#endif only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/bnxt/bnxt_dcb.c +++ linux-raspi2-4.4.0/ubuntu/bnxt/bnxt_dcb.c @@ -0,0 +1,610 @@ +/* Broadcom NetXtreme-C/E network driver. + * + * Copyright (c) 2014-2016 Broadcom Corporation + * Copyright (c) 2016-2017 Broadcom Limited + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation. + */ + +#include +#include +#include +#include +#include +#include +#include +#include "bnxt_compat.h" +#include "bnxt_hsi.h" +#include "bnxt.h" +#include "bnxt_dcb.h" + +#ifdef CONFIG_BNXT_BPO_DCB +static int bnxt_hwrm_queue_pri2cos_cfg(struct bnxt *bp, struct ieee_ets *ets) +{ + struct hwrm_queue_pri2cos_cfg_input req = {0}; + int rc = 0, i; + u8 *pri2cos; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_QUEUE_PRI2COS_CFG, -1, -1); + req.flags = cpu_to_le32(QUEUE_PRI2COS_CFG_REQ_FLAGS_PATH_BIDIR | + QUEUE_PRI2COS_CFG_REQ_FLAGS_IVLAN); + + pri2cos = &req.pri0_cos_queue_id; + for (i = 0; i < IEEE_8021QAZ_MAX_TCS; i++) { + req.enables |= cpu_to_le32( + QUEUE_PRI2COS_CFG_REQ_ENABLES_PRI0_COS_QUEUE_ID << i); + + pri2cos[i] = bp->q_info[ets->prio_tc[i]].queue_id; + } + rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + return rc; +} + +static int bnxt_hwrm_queue_pri2cos_qcfg(struct bnxt *bp, struct ieee_ets *ets) +{ + struct hwrm_queue_pri2cos_qcfg_output *resp = bp->hwrm_cmd_resp_addr; + struct hwrm_queue_pri2cos_qcfg_input req = {0}; + int rc = 0; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_QUEUE_PRI2COS_QCFG, -1, -1); + req.flags = cpu_to_le32(QUEUE_PRI2COS_QCFG_REQ_FLAGS_IVLAN); + rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + if (!rc) { + u8 *pri2cos = &resp->pri0_cos_queue_id; + int i, j; + + for (i = 0; i < IEEE_8021QAZ_MAX_TCS; i++) { + u8 queue_id = pri2cos[i]; + + for (j = 0; j < bp->max_tc; j++) { + if (bp->q_info[j].queue_id == queue_id) { + ets->prio_tc[i] = j; + break; + } + } + } + } + return rc; +} + +static int bnxt_hwrm_queue_cos2bw_cfg(struct bnxt *bp, struct ieee_ets *ets, + u8 max_tc) +{ + struct hwrm_queue_cos2bw_cfg_input req = {0}; + struct bnxt_cos2bw_cfg cos2bw; + int rc = 0, i; + void *data; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_QUEUE_COS2BW_CFG, -1, -1); + data = &req.unused_0; + for (i = 0; i < max_tc; i++, data += sizeof(cos2bw) - 4) { + req.enables |= cpu_to_le32( + QUEUE_COS2BW_CFG_REQ_ENABLES_COS_QUEUE_ID0_VALID << i); + + memset(&cos2bw, 0, sizeof(cos2bw)); + cos2bw.queue_id = bp->q_info[i].queue_id; + if (ets->tc_tsa[i] == IEEE_8021QAZ_TSA_STRICT) { + cos2bw.tsa = + QUEUE_COS2BW_QCFG_RESP_QUEUE_ID0_TSA_ASSIGN_SP; + cos2bw.pri_lvl = i; + } else { + cos2bw.tsa = + QUEUE_COS2BW_QCFG_RESP_QUEUE_ID0_TSA_ASSIGN_ETS; + cos2bw.bw_weight = ets->tc_tx_bw[i]; + } + memcpy(data, &cos2bw.queue_id, sizeof(cos2bw) - 4); + if (i == 0) { + req.queue_id0 = cos2bw.queue_id; + req.unused_0 = 0; + } + } + rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + return rc; +} + +static int bnxt_hwrm_queue_cos2bw_qcfg(struct bnxt *bp, struct ieee_ets *ets) +{ + struct hwrm_queue_cos2bw_qcfg_output *resp = bp->hwrm_cmd_resp_addr; + struct hwrm_queue_cos2bw_qcfg_input req = {0}; + struct bnxt_cos2bw_cfg cos2bw; + void *data; + int rc, i; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_QUEUE_COS2BW_QCFG, -1, -1); + rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + if (rc) + return rc; + + data = &resp->queue_id0 + offsetof(struct bnxt_cos2bw_cfg, queue_id); + for (i = 0; i < bp->max_tc; i++, data += sizeof(cos2bw) - 4) { + int j; + + memcpy(&cos2bw.queue_id, data, sizeof(cos2bw) - 4); + if (i == 0) + cos2bw.queue_id = resp->queue_id0; + + for (j = 0; j < bp->max_tc; j++) { + if (bp->q_info[j].queue_id != cos2bw.queue_id) + continue; + if (cos2bw.tsa == + QUEUE_COS2BW_QCFG_RESP_QUEUE_ID0_TSA_ASSIGN_SP) { + ets->tc_tsa[j] = IEEE_8021QAZ_TSA_STRICT; + } else { + ets->tc_tsa[j] = IEEE_8021QAZ_TSA_ETS; + ets->tc_tx_bw[j] = cos2bw.bw_weight; + } + } + } + return 0; +} + +static int bnxt_hwrm_queue_cfg(struct bnxt *bp, unsigned int lltc_mask) +{ + struct hwrm_queue_cfg_input req = {0}; + int i; + + if (netif_running(bp->dev)) + bnxt_tx_disable(bp); + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_QUEUE_CFG, -1, -1); + req.flags = cpu_to_le32(QUEUE_CFG_REQ_FLAGS_PATH_BIDIR); + req.enables = cpu_to_le32(QUEUE_CFG_REQ_ENABLES_SERVICE_PROFILE); + + /* Configure lossless queues to lossy first */ + req.service_profile = QUEUE_CFG_REQ_SERVICE_PROFILE_LOSSY; + for (i = 0; i < bp->max_tc; i++) { + if (BNXT_LLQ(bp->q_info[i].queue_profile)) { + req.queue_id = cpu_to_le32(bp->q_info[i].queue_id); + hwrm_send_message(bp, &req, sizeof(req), + HWRM_CMD_TIMEOUT); + bp->q_info[i].queue_profile = + QUEUE_CFG_REQ_SERVICE_PROFILE_LOSSY; + } + } + + /* Now configure desired queues to lossless */ + req.service_profile = QUEUE_CFG_REQ_SERVICE_PROFILE_LOSSLESS; + for (i = 0; i < bp->max_tc; i++) { + if (lltc_mask & (1 << i)) { + req.queue_id = cpu_to_le32(bp->q_info[i].queue_id); + hwrm_send_message(bp, &req, sizeof(req), + HWRM_CMD_TIMEOUT); + bp->q_info[i].queue_profile = + QUEUE_CFG_REQ_SERVICE_PROFILE_LOSSLESS; + } + } + if (netif_running(bp->dev)) + bnxt_tx_enable(bp); + + return 0; +} + +static int bnxt_hwrm_queue_pfc_cfg(struct bnxt *bp, struct ieee_pfc *pfc) +{ + struct hwrm_queue_pfcenable_cfg_input req = {0}; + struct ieee_ets *my_ets = bp->ieee_ets; + unsigned int tc_mask = 0, pri_mask = 0; + u8 i, pri, lltc_count = 0; + bool need_q_recfg = false; + int rc; + + if (!my_ets) + return -EINVAL; + + for (i = 0; i < bp->max_tc; i++) { + for (pri = 0; pri < IEEE_8021QAZ_MAX_TCS; pri++) { + if ((pfc->pfc_en & (1 << pri)) && + (my_ets->prio_tc[pri] == i)) { + pri_mask |= 1 << pri; + tc_mask |= 1 << i; + } + } + if (tc_mask & (1 << i)) + lltc_count++; + } + if (lltc_count > bp->max_lltc) + return -EINVAL; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_QUEUE_PFCENABLE_CFG, -1, -1); + req.flags = cpu_to_le32(pri_mask); + rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + if (rc) + return rc; + + for (i = 0; i < bp->max_tc; i++) { + if (tc_mask & (1 << i)) { + if (!BNXT_LLQ(bp->q_info[i].queue_profile)) + need_q_recfg = true; + } + } + + if (need_q_recfg) + rc = bnxt_hwrm_queue_cfg(bp, tc_mask); + + return rc; +} + +static int bnxt_hwrm_queue_pfc_qcfg(struct bnxt *bp, struct ieee_pfc *pfc) +{ + struct hwrm_queue_pfcenable_qcfg_output *resp = bp->hwrm_cmd_resp_addr; + struct hwrm_queue_pfcenable_qcfg_input req = {0}; + u8 pri_mask; + int rc; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_QUEUE_PFCENABLE_QCFG, -1, -1); + rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + if (rc) + return rc; + + pri_mask = le32_to_cpu(resp->flags); + pfc->pfc_en = pri_mask; + return 0; +} + +static int bnxt_hwrm_set_dcbx_app(struct bnxt *bp, struct dcb_app *app, + bool add) +{ + struct hwrm_fw_set_structured_data_input set = {0}; + struct hwrm_fw_get_structured_data_input get = {0}; + struct hwrm_struct_data_dcbx_app *fw_app; + struct hwrm_struct_hdr *data; + dma_addr_t mapping; + size_t data_len; + int rc, n, i; + + if (bp->hwrm_spec_code < 0x10601) + return 0; + + n = 8; + data_len = sizeof(*data) + sizeof(*fw_app) * n; + data = dma_alloc_coherent(&bp->pdev->dev, data_len, &mapping, + GFP_KERNEL); + if (!data) + return -ENOMEM; + + memset(data, 0, data_len); + bnxt_hwrm_cmd_hdr_init(bp, &get, HWRM_FW_GET_STRUCTURED_DATA, -1, -1); + get.dest_data_addr = cpu_to_le64(mapping); + get.structure_id = cpu_to_le16(STRUCT_HDR_STRUCT_ID_DCBX_APP); + get.subtype = cpu_to_le16(HWRM_STRUCT_DATA_SUBTYPE_HOST_OPERATIONAL); + get.count = 0; + rc = hwrm_send_message(bp, &get, sizeof(get), HWRM_CMD_TIMEOUT); + if (rc) + goto set_app_exit; + + fw_app = (struct hwrm_struct_data_dcbx_app *)(data + 1); + + if (data->struct_id != cpu_to_le16(STRUCT_HDR_STRUCT_ID_DCBX_APP)) { + rc = -ENODEV; + goto set_app_exit; + } + + n = data->count; + for (i = 0; i < n; i++, fw_app++) { + if (fw_app->protocol_id == cpu_to_be16(app->protocol) && + fw_app->protocol_selector == app->selector && + fw_app->priority == app->priority) { + if (add) + goto set_app_exit; + else + break; + } + } + if (add) { + /* append */ + n++; + fw_app->protocol_id = cpu_to_be16(app->protocol); + fw_app->protocol_selector = app->selector; + fw_app->priority = app->priority; + fw_app->valid = 1; + } else { + size_t len = 0; + + /* not found, nothing to delete */ + if (n == i) + goto set_app_exit; + + len = (n - 1 - i) * sizeof(*fw_app); + if (len) + memmove(fw_app, fw_app + 1, len); + n--; + memset(fw_app + n, 0, sizeof(*fw_app)); + } + data->count = n; + data->len = cpu_to_le16(sizeof(*fw_app) * n); + data->subtype = cpu_to_le16(HWRM_STRUCT_DATA_SUBTYPE_HOST_OPERATIONAL); + + bnxt_hwrm_cmd_hdr_init(bp, &set, HWRM_FW_SET_STRUCTURED_DATA, -1, -1); + set.src_data_addr = cpu_to_le64(mapping); + set.data_len = cpu_to_le16(sizeof(*data) + sizeof(*fw_app) * n); + set.hdr_cnt = 1; + rc = hwrm_send_message(bp, &set, sizeof(set), HWRM_CMD_TIMEOUT); + if (rc) + rc = -EIO; + +set_app_exit: + dma_free_coherent(&bp->pdev->dev, data_len, data, mapping); + return rc; +} + +static int bnxt_ets_validate(struct bnxt *bp, struct ieee_ets *ets, u8 *tc) +{ + int total_ets_bw = 0; + u8 max_tc = 0; + int i; + + for (i = 0; i < IEEE_8021QAZ_MAX_TCS; i++) { + if (ets->prio_tc[i] > bp->max_tc) { + netdev_err(bp->dev, "priority to TC mapping exceeds TC count %d\n", + ets->prio_tc[i]); + return -EINVAL; + } + if (ets->prio_tc[i] > max_tc) + max_tc = ets->prio_tc[i]; + + if ((ets->tc_tx_bw[i] || ets->tc_tsa[i]) && i > bp->max_tc) + return -EINVAL; + + switch (ets->tc_tsa[i]) { + case IEEE_8021QAZ_TSA_STRICT: + break; + case IEEE_8021QAZ_TSA_ETS: + total_ets_bw += ets->tc_tx_bw[i]; + break; + default: + return -ENOTSUPP; + } + } + if (total_ets_bw > 100) + return -EINVAL; + + *tc = max_tc + 1; + return 0; +} + +static int bnxt_dcbnl_ieee_getets(struct net_device *dev, struct ieee_ets *ets) +{ + struct bnxt *bp = netdev_priv(dev); + struct ieee_ets *my_ets = bp->ieee_ets; + + ets->ets_cap = bp->max_tc; + + if (!my_ets) { + int rc; + + if (bp->dcbx_cap & DCB_CAP_DCBX_HOST) + return 0; + + my_ets = kzalloc(sizeof(*my_ets), GFP_KERNEL); + if (!my_ets) + return 0; + rc = bnxt_hwrm_queue_cos2bw_qcfg(bp, my_ets); + if (rc) + return 0; + rc = bnxt_hwrm_queue_pri2cos_qcfg(bp, my_ets); + if (rc) + return 0; + } + + ets->cbs = my_ets->cbs; + memcpy(ets->tc_tx_bw, my_ets->tc_tx_bw, sizeof(ets->tc_tx_bw)); + memcpy(ets->tc_rx_bw, my_ets->tc_rx_bw, sizeof(ets->tc_rx_bw)); + memcpy(ets->tc_tsa, my_ets->tc_tsa, sizeof(ets->tc_tsa)); + memcpy(ets->prio_tc, my_ets->prio_tc, sizeof(ets->prio_tc)); + return 0; +} + +static int bnxt_dcbnl_ieee_setets(struct net_device *dev, struct ieee_ets *ets) +{ + struct bnxt *bp = netdev_priv(dev); + struct ieee_ets *my_ets = bp->ieee_ets; + u8 max_tc = 0; + int rc, i; + + if (!(bp->dcbx_cap & DCB_CAP_DCBX_VER_IEEE) || + !(bp->dcbx_cap & DCB_CAP_DCBX_HOST)) + return -EINVAL; + + rc = bnxt_ets_validate(bp, ets, &max_tc); + if (!rc) { + if (!my_ets) { + my_ets = kzalloc(sizeof(*my_ets), GFP_KERNEL); + if (!my_ets) + return -ENOMEM; + /* initialize PRI2TC mappings to invalid value */ + for (i = 0; i < IEEE_8021QAZ_MAX_TCS; i++) + my_ets->prio_tc[i] = IEEE_8021QAZ_MAX_TCS; + bp->ieee_ets = my_ets; + } + rc = bnxt_setup_mq_tc(dev, max_tc); + if (rc) + return rc; + rc = bnxt_hwrm_queue_cos2bw_cfg(bp, ets, max_tc); + if (rc) + return rc; + rc = bnxt_hwrm_queue_pri2cos_cfg(bp, ets); + if (rc) + return rc; + memcpy(my_ets, ets, sizeof(*my_ets)); + } + return rc; +} + +static int bnxt_dcbnl_ieee_getpfc(struct net_device *dev, struct ieee_pfc *pfc) +{ + struct bnxt *bp = netdev_priv(dev); + __le64 *stats = (__le64 *)bp->hw_rx_port_stats; + struct ieee_pfc *my_pfc = bp->ieee_pfc; + long rx_off, tx_off; + int i, rc; + + pfc->pfc_cap = bp->max_lltc; + + if (!my_pfc) { + if (bp->dcbx_cap & DCB_CAP_DCBX_HOST) + return 0; + + my_pfc = kzalloc(sizeof(*my_pfc), GFP_KERNEL); + if (!my_pfc) + return 0; + bp->ieee_pfc = my_pfc; + rc = bnxt_hwrm_queue_pfc_qcfg(bp, my_pfc); + if (rc) + return 0; + } + + pfc->pfc_en = my_pfc->pfc_en; + pfc->mbc = my_pfc->mbc; + pfc->delay = my_pfc->delay; + + if (!stats) + return 0; + + rx_off = BNXT_RX_STATS_OFFSET(rx_pfc_ena_frames_pri0); + tx_off = BNXT_TX_STATS_OFFSET(tx_pfc_ena_frames_pri0); + for (i = 0; i < IEEE_8021QAZ_MAX_TCS; i++, rx_off++, tx_off++) { + pfc->requests[i] = le64_to_cpu(*(stats + tx_off)); + pfc->indications[i] = le64_to_cpu(*(stats + rx_off)); + } + + return 0; +} + +static int bnxt_dcbnl_ieee_setpfc(struct net_device *dev, struct ieee_pfc *pfc) +{ + struct bnxt *bp = netdev_priv(dev); + struct ieee_pfc *my_pfc = bp->ieee_pfc; + int rc; + + if (!(bp->dcbx_cap & DCB_CAP_DCBX_VER_IEEE) || + !(bp->dcbx_cap & DCB_CAP_DCBX_HOST)) + return -EINVAL; + + if (!my_pfc) { + my_pfc = kzalloc(sizeof(*my_pfc), GFP_KERNEL); + if (!my_pfc) + return -ENOMEM; + bp->ieee_pfc = my_pfc; + } + rc = bnxt_hwrm_queue_pfc_cfg(bp, pfc); + if (!rc) + memcpy(my_pfc, pfc, sizeof(*my_pfc)); + + return rc; +} + +static int bnxt_dcbnl_ieee_setapp(struct net_device *dev, struct dcb_app *app) +{ + struct bnxt *bp = netdev_priv(dev); + int rc = -EINVAL; + + if (!(bp->dcbx_cap & DCB_CAP_DCBX_VER_IEEE) || + !(bp->dcbx_cap & DCB_CAP_DCBX_HOST)) + return -EINVAL; + + rc = dcb_ieee_setapp(dev, app); + if (rc) + return rc; + + if ((app->selector == IEEE_8021QAZ_APP_SEL_ETHERTYPE && + app->protocol == ETH_P_ROCE) || + (app->selector == IEEE_8021QAZ_APP_SEL_DGRAM && + app->protocol == ROCE_V2_UDP_DPORT)) + rc = bnxt_hwrm_set_dcbx_app(bp, app, true); + + return rc; +} + +static int bnxt_dcbnl_ieee_delapp(struct net_device *dev, struct dcb_app *app) +{ + struct bnxt *bp = netdev_priv(dev); + int rc; + + if (!(bp->dcbx_cap & DCB_CAP_DCBX_VER_IEEE) || + !(bp->dcbx_cap & DCB_CAP_DCBX_HOST)) + return -EINVAL; + + rc = dcb_ieee_delapp(dev, app); + if (rc) + return rc; + if ((app->selector == IEEE_8021QAZ_APP_SEL_ETHERTYPE && + app->protocol == ETH_P_ROCE) || + (app->selector == IEEE_8021QAZ_APP_SEL_DGRAM && + app->protocol == ROCE_V2_UDP_DPORT)) + rc = bnxt_hwrm_set_dcbx_app(bp, app, false); + + return rc; +} + +static u8 bnxt_dcbnl_getdcbx(struct net_device *dev) +{ + struct bnxt *bp = netdev_priv(dev); + + return bp->dcbx_cap; +} + +static u8 bnxt_dcbnl_setdcbx(struct net_device *dev, u8 mode) +{ + struct bnxt *bp = netdev_priv(dev); + + /* only support IEEE */ + if ((mode & DCB_CAP_DCBX_VER_CEE) || !(mode & DCB_CAP_DCBX_VER_IEEE)) + return 1; + + if (mode & DCB_CAP_DCBX_HOST) { + if (BNXT_VF(bp) || (bp->flags & BNXT_FLAG_FW_LLDP_AGENT)) + return 1; + } + + if (mode == bp->dcbx_cap) + return 0; + + bp->dcbx_cap = mode; + return 0; +} + +static const struct dcbnl_rtnl_ops dcbnl_ops = { + .ieee_getets = bnxt_dcbnl_ieee_getets, + .ieee_setets = bnxt_dcbnl_ieee_setets, + .ieee_getpfc = bnxt_dcbnl_ieee_getpfc, + .ieee_setpfc = bnxt_dcbnl_ieee_setpfc, + .ieee_setapp = bnxt_dcbnl_ieee_setapp, + .ieee_delapp = bnxt_dcbnl_ieee_delapp, + .getdcbx = bnxt_dcbnl_getdcbx, + .setdcbx = bnxt_dcbnl_setdcbx, +}; + +void bnxt_dcb_init(struct bnxt *bp) +{ + if (bp->hwrm_spec_code < 0x10501) + return; + + bp->dcbx_cap = DCB_CAP_DCBX_VER_IEEE; + if (BNXT_PF(bp) && !(bp->flags & BNXT_FLAG_FW_LLDP_AGENT)) + bp->dcbx_cap |= DCB_CAP_DCBX_HOST; + else + bp->dcbx_cap |= DCB_CAP_DCBX_LLD_MANAGED; + bp->dev->dcbnl_ops = &dcbnl_ops; +} + +void bnxt_dcb_free(struct bnxt *bp) +{ + kfree(bp->ieee_pfc); + kfree(bp->ieee_ets); + bp->ieee_pfc = NULL; + bp->ieee_ets = NULL; +} + +#else + +void bnxt_dcb_init(struct bnxt *bp) +{ +} + +void bnxt_dcb_free(struct bnxt *bp) +{ +} + +#endif only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/bnxt/bnxt_dcb.h +++ linux-raspi2-4.4.0/ubuntu/bnxt/bnxt_dcb.h @@ -0,0 +1,42 @@ +/* Broadcom NetXtreme-C/E network driver. + * + * Copyright (c) 2014-2016 Broadcom Corporation + * Copyright (c) 2016-2017 Broadcom Limited + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation. + */ + +#ifndef BNXT_DCB_H +#define BNXT_DCB_H + +#include + +struct bnxt_dcb { + u8 max_tc; + struct ieee_pfc *ieee_pfc; + struct ieee_ets *ieee_ets; + u8 dcbx_cap; + u8 default_pri; +}; + +struct bnxt_cos2bw_cfg { + u8 pad[3]; + u8 queue_id; + __le32 min_bw; + __le32 max_bw; + u8 tsa; + u8 pri_lvl; + u8 bw_weight; + u8 unused; +}; + +#define BNXT_LLQ(q_profile) \ + ((q_profile) == QUEUE_QPORTCFG_RESP_QUEUE_ID0_SERVICE_PROFILE_LOSSLESS) + +#define HWRM_STRUCT_DATA_SUBTYPE_HOST_OPERATIONAL 0x0300 + +void bnxt_dcb_init(struct bnxt *); +void bnxt_dcb_free(struct bnxt *); +#endif only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/bnxt/bnxt_ethtool.c +++ linux-raspi2-4.4.0/ubuntu/bnxt/bnxt_ethtool.c @@ -0,0 +1,2946 @@ +/* Broadcom NetXtreme-C/E network driver. + * + * Copyright (c) 2014-2016 Broadcom Corporation + * Copyright (c) 2016-2017 Broadcom Limited + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation. + */ + +#include +#include +#include +#include +#include +#include +#include +#include +#if !defined(NEW_FLOW_KEYS) && defined(HAVE_FLOW_KEYS) +#include +#endif +#if defined(ETHTOOL_GET_TS_INFO) && defined(HAVE_IEEE1588_SUPPORT) +#include +#include +#include +#endif +#include "bnxt_compat.h" +#include "bnxt_hsi.h" +#include "bnxt.h" +#include "bnxt_xdp.h" +#include "bnxt_ptp.h" +#include "bnxt_ethtool.h" +#ifdef CONFIG_BNXT_BPO_FLASHDEV +#include "bnxt_nvm_defs.h" /* NVRAM content constant and structure defs */ +#include "bnxt_fw_hdr.h" /* Firmware hdr constant and structure defs */ +#define FLASH_NVRAM_TIMEOUT ((HWRM_CMD_TIMEOUT) * 100) +#define FLASH_PACKAGE_TIMEOUT ((HWRM_CMD_TIMEOUT) * 200) +#define INSTALL_PACKAGE_TIMEOUT ((HWRM_CMD_TIMEOUT) * 200) +#endif + +static char *bnxt_get_pkgver(struct net_device *dev, char *buf, size_t buflen); + +static u32 bnxt_get_msglevel(struct net_device *dev) +{ + struct bnxt *bp = netdev_priv(dev); + + return bp->msg_enable; +} + +static void bnxt_set_msglevel(struct net_device *dev, u32 value) +{ + struct bnxt *bp = netdev_priv(dev); + + bp->msg_enable = value; +} + +static int bnxt_get_coalesce(struct net_device *dev, + struct ethtool_coalesce *coal) +{ + struct bnxt *bp = netdev_priv(dev); + + memset(coal, 0, sizeof(*coal)); + + coal->rx_coalesce_usecs = bp->rx_coal_ticks; + /* 2 completion records per rx packet */ + coal->rx_max_coalesced_frames = bp->rx_coal_bufs / 2; + coal->rx_coalesce_usecs_irq = bp->rx_coal_ticks_irq; + coal->rx_max_coalesced_frames_irq = bp->rx_coal_bufs_irq / 2; + + coal->tx_coalesce_usecs = bp->tx_coal_ticks; + coal->tx_max_coalesced_frames = bp->tx_coal_bufs; + coal->tx_coalesce_usecs_irq = bp->tx_coal_ticks_irq; + coal->tx_max_coalesced_frames_irq = bp->tx_coal_bufs_irq; + + coal->stats_block_coalesce_usecs = bp->stats_coal_ticks; + + return 0; +} + +static int bnxt_set_coalesce(struct net_device *dev, + struct ethtool_coalesce *coal) +{ + struct bnxt *bp = netdev_priv(dev); + bool update_stats = false; + int rc = 0; + + bp->rx_coal_ticks = coal->rx_coalesce_usecs; + /* 2 completion records per rx packet */ + bp->rx_coal_bufs = coal->rx_max_coalesced_frames * 2; + bp->rx_coal_ticks_irq = coal->rx_coalesce_usecs_irq; + bp->rx_coal_bufs_irq = coal->rx_max_coalesced_frames_irq * 2; + + bp->tx_coal_ticks = coal->tx_coalesce_usecs; + bp->tx_coal_bufs = coal->tx_max_coalesced_frames; + bp->tx_coal_ticks_irq = coal->tx_coalesce_usecs_irq; + bp->tx_coal_bufs_irq = coal->tx_max_coalesced_frames_irq; + + if (bp->stats_coal_ticks != coal->stats_block_coalesce_usecs) { + u32 stats_ticks = coal->stats_block_coalesce_usecs; + + /* Allow 0, which means disable. */ + if (stats_ticks) + stats_ticks = clamp_t(u32, stats_ticks, + BNXT_MIN_STATS_COAL_TICKS, + BNXT_MAX_STATS_COAL_TICKS); + stats_ticks = rounddown(stats_ticks, BNXT_MIN_STATS_COAL_TICKS); + bp->stats_coal_ticks = stats_ticks; + update_stats = true; + } + + if (netif_running(dev)) { + if (update_stats) { + rc = bnxt_close_nic(bp, true, false); + if (!rc) + rc = bnxt_open_nic(bp, true, false); + } else { + rc = bnxt_hwrm_set_coal(bp); + } + } + + return rc; +} + +#define BNXT_NUM_STATS 22 + +#define BNXT_RX_STATS_ENTRY(counter) \ + { BNXT_RX_STATS_OFFSET(counter), __stringify(counter) } + +#define BNXT_TX_STATS_ENTRY(counter) \ + { BNXT_TX_STATS_OFFSET(counter), __stringify(counter) } + +static const struct { + long offset; + char string[ETH_GSTRING_LEN]; +} bnxt_port_stats_arr[] = { + BNXT_RX_STATS_ENTRY(rx_64b_frames), + BNXT_RX_STATS_ENTRY(rx_65b_127b_frames), + BNXT_RX_STATS_ENTRY(rx_128b_255b_frames), + BNXT_RX_STATS_ENTRY(rx_256b_511b_frames), + BNXT_RX_STATS_ENTRY(rx_512b_1023b_frames), + BNXT_RX_STATS_ENTRY(rx_1024b_1518_frames), + BNXT_RX_STATS_ENTRY(rx_good_vlan_frames), + BNXT_RX_STATS_ENTRY(rx_1519b_2047b_frames), + BNXT_RX_STATS_ENTRY(rx_2048b_4095b_frames), + BNXT_RX_STATS_ENTRY(rx_4096b_9216b_frames), + BNXT_RX_STATS_ENTRY(rx_9217b_16383b_frames), + BNXT_RX_STATS_ENTRY(rx_total_frames), + BNXT_RX_STATS_ENTRY(rx_ucast_frames), + BNXT_RX_STATS_ENTRY(rx_mcast_frames), + BNXT_RX_STATS_ENTRY(rx_bcast_frames), + BNXT_RX_STATS_ENTRY(rx_fcs_err_frames), + BNXT_RX_STATS_ENTRY(rx_ctrl_frames), + BNXT_RX_STATS_ENTRY(rx_pause_frames), + BNXT_RX_STATS_ENTRY(rx_pfc_frames), + BNXT_RX_STATS_ENTRY(rx_align_err_frames), + BNXT_RX_STATS_ENTRY(rx_ovrsz_frames), + BNXT_RX_STATS_ENTRY(rx_jbr_frames), + BNXT_RX_STATS_ENTRY(rx_mtu_err_frames), + BNXT_RX_STATS_ENTRY(rx_tagged_frames), + BNXT_RX_STATS_ENTRY(rx_double_tagged_frames), + BNXT_RX_STATS_ENTRY(rx_good_frames), + BNXT_RX_STATS_ENTRY(rx_pfc_ena_frames_pri0), + BNXT_RX_STATS_ENTRY(rx_pfc_ena_frames_pri1), + BNXT_RX_STATS_ENTRY(rx_pfc_ena_frames_pri2), + BNXT_RX_STATS_ENTRY(rx_pfc_ena_frames_pri3), + BNXT_RX_STATS_ENTRY(rx_pfc_ena_frames_pri4), + BNXT_RX_STATS_ENTRY(rx_pfc_ena_frames_pri5), + BNXT_RX_STATS_ENTRY(rx_pfc_ena_frames_pri6), + BNXT_RX_STATS_ENTRY(rx_pfc_ena_frames_pri7), + BNXT_RX_STATS_ENTRY(rx_undrsz_frames), + BNXT_RX_STATS_ENTRY(rx_eee_lpi_events), + BNXT_RX_STATS_ENTRY(rx_eee_lpi_duration), + BNXT_RX_STATS_ENTRY(rx_bytes), + BNXT_RX_STATS_ENTRY(rx_runt_bytes), + BNXT_RX_STATS_ENTRY(rx_runt_frames), + + BNXT_TX_STATS_ENTRY(tx_64b_frames), + BNXT_TX_STATS_ENTRY(tx_65b_127b_frames), + BNXT_TX_STATS_ENTRY(tx_128b_255b_frames), + BNXT_TX_STATS_ENTRY(tx_256b_511b_frames), + BNXT_TX_STATS_ENTRY(tx_512b_1023b_frames), + BNXT_TX_STATS_ENTRY(tx_1024b_1518_frames), + BNXT_TX_STATS_ENTRY(tx_good_vlan_frames), + BNXT_TX_STATS_ENTRY(tx_1519b_2047_frames), + BNXT_TX_STATS_ENTRY(tx_2048b_4095b_frames), + BNXT_TX_STATS_ENTRY(tx_4096b_9216b_frames), + BNXT_TX_STATS_ENTRY(tx_9217b_16383b_frames), + BNXT_TX_STATS_ENTRY(tx_good_frames), + BNXT_TX_STATS_ENTRY(tx_total_frames), + BNXT_TX_STATS_ENTRY(tx_ucast_frames), + BNXT_TX_STATS_ENTRY(tx_mcast_frames), + BNXT_TX_STATS_ENTRY(tx_bcast_frames), + BNXT_TX_STATS_ENTRY(tx_pause_frames), + BNXT_TX_STATS_ENTRY(tx_pfc_frames), + BNXT_TX_STATS_ENTRY(tx_jabber_frames), + BNXT_TX_STATS_ENTRY(tx_fcs_err_frames), + BNXT_TX_STATS_ENTRY(tx_err), + BNXT_TX_STATS_ENTRY(tx_fifo_underruns), + BNXT_TX_STATS_ENTRY(tx_pfc_ena_frames_pri0), + BNXT_TX_STATS_ENTRY(tx_pfc_ena_frames_pri1), + BNXT_TX_STATS_ENTRY(tx_pfc_ena_frames_pri2), + BNXT_TX_STATS_ENTRY(tx_pfc_ena_frames_pri3), + BNXT_TX_STATS_ENTRY(tx_pfc_ena_frames_pri4), + BNXT_TX_STATS_ENTRY(tx_pfc_ena_frames_pri5), + BNXT_TX_STATS_ENTRY(tx_pfc_ena_frames_pri6), + BNXT_TX_STATS_ENTRY(tx_pfc_ena_frames_pri7), + BNXT_TX_STATS_ENTRY(tx_eee_lpi_events), + BNXT_TX_STATS_ENTRY(tx_eee_lpi_duration), + BNXT_TX_STATS_ENTRY(tx_total_collisions), + BNXT_TX_STATS_ENTRY(tx_bytes), +}; + +#define BNXT_NUM_PORT_STATS ARRAY_SIZE(bnxt_port_stats_arr) + +static int bnxt_get_num_stats(struct bnxt *bp) +{ + int num_stats = BNXT_NUM_STATS * bp->cp_nr_rings; + + if (bp->flags & BNXT_FLAG_PORT_STATS) + num_stats += BNXT_NUM_PORT_STATS; + + return num_stats; +} + +static int bnxt_get_sset_count(struct net_device *dev, int sset) +{ + struct bnxt *bp = netdev_priv(dev); + + switch (sset) { + case ETH_SS_STATS: + return bnxt_get_num_stats(bp); + case ETH_SS_TEST: + if (!bp->num_tests) + return -EOPNOTSUPP; + return bp->num_tests; + default: + return -EOPNOTSUPP; + } +} + +static void bnxt_get_ethtool_stats(struct net_device *dev, + struct ethtool_stats *stats, u64 *buf) +{ + u32 i, j = 0; + struct bnxt *bp = netdev_priv(dev); + int buf_size = bnxt_get_num_stats(bp) * sizeof(u64); + u32 stat_fields = sizeof(struct ctx_hw_stats) / 8; + + memset(buf, 0, buf_size); + + if (!bp->bnapi) + return; + + for (i = 0; i < bp->cp_nr_rings; i++) { + struct bnxt_napi *bnapi = bp->bnapi[i]; + struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring; + __le64 *hw_stats = (__le64 *)cpr->hw_stats; + struct bnxt_sw_stats *sw_stats = &cpr->sw_stats; + int k; + + for (k = 0; k < stat_fields; j++, k++) + buf[j] = le64_to_cpu(hw_stats[k]); + buf[j++] = sw_stats->rx_l4_csum_errors; + buf[j++] = sw_stats->rx_resets; + } + if (bp->flags & BNXT_FLAG_PORT_STATS) { + __le64 *port_stats = (__le64 *)bp->hw_rx_port_stats; + + for (i = 0; i < BNXT_NUM_PORT_STATS; i++, j++) { + buf[j] = le64_to_cpu(*(port_stats + + bnxt_port_stats_arr[i].offset)); + } + } +} + +static void bnxt_get_strings(struct net_device *dev, u32 stringset, u8 *buf) +{ + struct bnxt *bp = netdev_priv(dev); + u32 i; + + switch (stringset) { + /* The number of strings must match BNXT_NUM_STATS defined above. */ + case ETH_SS_STATS: + for (i = 0; i < bp->cp_nr_rings; i++) { + sprintf(buf, "[%d]: rx_ucast_packets", i); + buf += ETH_GSTRING_LEN; + sprintf(buf, "[%d]: rx_mcast_packets", i); + buf += ETH_GSTRING_LEN; + sprintf(buf, "[%d]: rx_bcast_packets", i); + buf += ETH_GSTRING_LEN; + sprintf(buf, "[%d]: rx_discards", i); + buf += ETH_GSTRING_LEN; + sprintf(buf, "[%d]: rx_drops", i); + buf += ETH_GSTRING_LEN; + sprintf(buf, "[%d]: rx_ucast_bytes", i); + buf += ETH_GSTRING_LEN; + sprintf(buf, "[%d]: rx_mcast_bytes", i); + buf += ETH_GSTRING_LEN; + sprintf(buf, "[%d]: rx_bcast_bytes", i); + buf += ETH_GSTRING_LEN; + sprintf(buf, "[%d]: tx_ucast_packets", i); + buf += ETH_GSTRING_LEN; + sprintf(buf, "[%d]: tx_mcast_packets", i); + buf += ETH_GSTRING_LEN; + sprintf(buf, "[%d]: tx_bcast_packets", i); + buf += ETH_GSTRING_LEN; + sprintf(buf, "[%d]: tx_discards", i); + buf += ETH_GSTRING_LEN; + sprintf(buf, "[%d]: tx_drops", i); + buf += ETH_GSTRING_LEN; + sprintf(buf, "[%d]: tx_ucast_bytes", i); + buf += ETH_GSTRING_LEN; + sprintf(buf, "[%d]: tx_mcast_bytes", i); + buf += ETH_GSTRING_LEN; + sprintf(buf, "[%d]: tx_bcast_bytes", i); + buf += ETH_GSTRING_LEN; + sprintf(buf, "[%d]: tpa_packets", i); + buf += ETH_GSTRING_LEN; + sprintf(buf, "[%d]: tpa_bytes", i); + buf += ETH_GSTRING_LEN; + sprintf(buf, "[%d]: tpa_events", i); + buf += ETH_GSTRING_LEN; + sprintf(buf, "[%d]: tpa_aborts", i); + buf += ETH_GSTRING_LEN; + sprintf(buf, "[%d]: rx_l4_csum_errors", i); + buf += ETH_GSTRING_LEN; + sprintf(buf, "[%d]: rx_resets", i); + buf += ETH_GSTRING_LEN; + } + if (bp->flags & BNXT_FLAG_PORT_STATS) { + for (i = 0; i < BNXT_NUM_PORT_STATS; i++) { + strcpy(buf, bnxt_port_stats_arr[i].string); + buf += ETH_GSTRING_LEN; + } + } + break; + case ETH_SS_TEST: + if (bp->num_tests) + memcpy(buf, bp->test_info->string, + bp->num_tests * ETH_GSTRING_LEN); + break; + default: + netdev_err(bp->dev, "bnxt_get_strings invalid request %x\n", + stringset); + break; + } +} + +static void bnxt_get_ringparam(struct net_device *dev, + struct ethtool_ringparam *ering) +{ + struct bnxt *bp = netdev_priv(dev); + + ering->rx_max_pending = BNXT_MAX_RX_DESC_CNT; + ering->rx_jumbo_max_pending = BNXT_MAX_RX_JUM_DESC_CNT; + ering->tx_max_pending = BNXT_MAX_TX_DESC_CNT; + + ering->rx_pending = bp->rx_ring_size; + ering->rx_jumbo_pending = bp->rx_agg_ring_size; + ering->tx_pending = bp->tx_ring_size; +} + +static int bnxt_set_ringparam(struct net_device *dev, + struct ethtool_ringparam *ering) +{ + struct bnxt *bp = netdev_priv(dev); + + if ((ering->rx_pending > BNXT_MAX_RX_DESC_CNT) || + (ering->tx_pending > BNXT_MAX_TX_DESC_CNT) || + (ering->tx_pending <= MAX_SKB_FRAGS)) + return -EINVAL; + + if (netif_running(dev)) + bnxt_close_nic(bp, false, false); + + bp->rx_ring_size = ering->rx_pending; + bp->tx_ring_size = ering->tx_pending; + bnxt_set_ring_params(bp); + + if (netif_running(dev)) + return bnxt_open_nic(bp, false, false); + + return 0; +} + +#if defined(ETHTOOL_GCHANNELS) && !defined(GET_ETHTOOL_OP_EXT) +static void bnxt_get_channels(struct net_device *dev, + struct ethtool_channels *channel) +{ + struct bnxt *bp = netdev_priv(dev); + int max_rx_rings, max_tx_rings, tcs; + + bnxt_get_max_rings(bp, &max_rx_rings, &max_tx_rings, true); + channel->max_combined = min_t(int, max_rx_rings, max_tx_rings); + + if (bnxt_get_max_rings(bp, &max_rx_rings, &max_tx_rings, false)) { + max_rx_rings = 0; + max_tx_rings = 0; + } + + tcs = netdev_get_num_tc(dev); + if (tcs > 1) + max_tx_rings /= tcs; + + channel->max_rx = max_rx_rings; + channel->max_tx = max_tx_rings; + channel->max_other = 0; + if (bp->flags & BNXT_FLAG_SHARED_RINGS) { + channel->combined_count = bp->rx_nr_rings; + if (BNXT_CHIP_TYPE_NITRO_A0(bp)) + channel->combined_count--; + } else { + if (!BNXT_CHIP_TYPE_NITRO_A0(bp)) { + channel->rx_count = bp->rx_nr_rings; + channel->tx_count = bp->tx_nr_rings_per_tc; + } + } +} + +static int bnxt_set_channels(struct net_device *dev, + struct ethtool_channels *channel) +{ + struct bnxt *bp = netdev_priv(dev); + int req_tx_rings, req_rx_rings, tcs; + bool sh = false; + int tx_xdp = 0; + int rc = 0; + + if (channel->other_count) + return -EINVAL; + + if (!channel->combined_count && + (!channel->rx_count || !channel->tx_count)) + return -EINVAL; + + if (channel->combined_count && + (channel->rx_count || channel->tx_count)) + return -EINVAL; + + if (BNXT_CHIP_TYPE_NITRO_A0(bp) && (channel->rx_count || + channel->tx_count)) + return -EINVAL; + + if (channel->combined_count) + sh = true; + + tcs = netdev_get_num_tc(dev); + + req_tx_rings = sh ? channel->combined_count : channel->tx_count; + req_rx_rings = sh ? channel->combined_count : channel->rx_count; + if (bp->tx_nr_rings_xdp) { + if (!sh) { + netdev_err(dev, "Only combined mode supported when XDP is enabled.\n"); + return -EINVAL; + } + tx_xdp = req_rx_rings; + } + rc = bnxt_reserve_rings(bp, req_tx_rings, req_rx_rings, sh, tcs, + tx_xdp); + if (rc) { + netdev_warn(dev, "Unable to allocate the requested rings\n"); + return rc; + } + + if (netif_running(dev)) { + if (BNXT_PF(bp)) { + /* TODO CHIMP_FW: Send message to all VF's + * before PF unload + */ + } + rc = bnxt_close_nic(bp, true, false); + if (rc) { + netdev_err(bp->dev, "Set channel failure rc :%x\n", + rc); + return rc; + } + } + + if (sh) { + bp->flags |= BNXT_FLAG_SHARED_RINGS; + bp->rx_nr_rings = channel->combined_count; + bp->tx_nr_rings_per_tc = channel->combined_count; + } else { + bp->flags &= ~BNXT_FLAG_SHARED_RINGS; + bp->rx_nr_rings = channel->rx_count; + bp->tx_nr_rings_per_tc = channel->tx_count; + } + bp->tx_nr_rings_xdp = tx_xdp; + bp->tx_nr_rings = bp->tx_nr_rings_per_tc + tx_xdp; + if (tcs > 1) + bp->tx_nr_rings = bp->tx_nr_rings_per_tc * tcs + tx_xdp; + + bp->cp_nr_rings = sh ? max_t(int, bp->tx_nr_rings, bp->rx_nr_rings) : + bp->tx_nr_rings + bp->rx_nr_rings; + + bp->num_stat_ctxs = bp->cp_nr_rings; + + /* After changing number of rx channels, update NTUPLE feature. */ + netdev_update_features(dev); + if (netif_running(dev)) { + rc = bnxt_open_nic(bp, true, false); + if ((!rc) && BNXT_PF(bp)) { + /* TODO CHIMP_FW: Send message to all VF's + * to renable + */ + } + } + + return rc; +} +#endif + +#ifdef HAVE_RXNFC +#ifdef CONFIG_RFS_ACCEL +static int bnxt_grxclsrlall(struct bnxt *bp, struct ethtool_rxnfc *cmd, + u32 *rule_locs) +{ + int i, j = 0; + + cmd->data = bp->ntp_fltr_count; + for (i = 0; i < BNXT_NTP_FLTR_HASH_SIZE; i++) { + struct hlist_head *head; + struct hlist_node __maybe_unused *node; + struct bnxt_ntuple_filter *fltr; + + head = &bp->ntp_fltr_hash_tbl[i]; + rcu_read_lock(); + __hlist_for_each_entry_rcu(fltr, node, head, hash) { + if (j == cmd->rule_cnt) + break; + rule_locs[j++] = fltr->sw_id; + } + rcu_read_unlock(); + if (j == cmd->rule_cnt) + break; + } + cmd->rule_cnt = j; + return 0; +} + +static int bnxt_grxclsrule(struct bnxt *bp, struct ethtool_rxnfc *cmd) +{ + struct ethtool_rx_flow_spec *fs = + (struct ethtool_rx_flow_spec *)&cmd->fs; + struct bnxt_ntuple_filter *fltr; + struct flow_keys *fkeys; + int i, rc = -EINVAL; + + if (fs->location < 0 || fs->location >= BNXT_NTP_FLTR_MAX_FLTR) + return rc; + + for (i = 0; i < BNXT_NTP_FLTR_HASH_SIZE; i++) { + struct hlist_head *head; + struct hlist_node __maybe_unused *node; + + head = &bp->ntp_fltr_hash_tbl[i]; + rcu_read_lock(); + __hlist_for_each_entry_rcu(fltr, node, head, hash) { + if (fltr->sw_id == fs->location) + goto fltr_found; + } + rcu_read_unlock(); + } + return rc; + +fltr_found: + fkeys = &fltr->fkeys; +#ifdef NEW_FLOW_KEYS + if (fkeys->basic.n_proto == htons(ETH_P_IP)) { + if (fkeys->basic.ip_proto == IPPROTO_TCP) + fs->flow_type = TCP_V4_FLOW; + else if (fkeys->basic.ip_proto == IPPROTO_UDP) + fs->flow_type = UDP_V4_FLOW; + else + goto fltr_err; + + fs->h_u.tcp_ip4_spec.ip4src = fkeys->addrs.v4addrs.src; + fs->m_u.tcp_ip4_spec.ip4src = cpu_to_be32(~0); + + fs->h_u.tcp_ip4_spec.ip4dst = fkeys->addrs.v4addrs.dst; + fs->m_u.tcp_ip4_spec.ip4dst = cpu_to_be32(~0); + + fs->h_u.tcp_ip4_spec.psrc = fkeys->ports.src; + fs->m_u.tcp_ip4_spec.psrc = cpu_to_be16(~0); + + fs->h_u.tcp_ip4_spec.pdst = fkeys->ports.dst; + fs->m_u.tcp_ip4_spec.pdst = cpu_to_be16(~0); + } else { +#ifdef HAVE_ETHTOOL_IP6_SPEC + int i; + + if (fkeys->basic.ip_proto == IPPROTO_TCP) + fs->flow_type = TCP_V6_FLOW; + else if (fkeys->basic.ip_proto == IPPROTO_UDP) + fs->flow_type = UDP_V6_FLOW; + else + goto fltr_err; + + *(struct in6_addr *)&fs->h_u.tcp_ip6_spec.ip6src[0] = + fkeys->addrs.v6addrs.src; + *(struct in6_addr *)&fs->h_u.tcp_ip6_spec.ip6dst[0] = + fkeys->addrs.v6addrs.dst; + for (i = 0; i < 4; i++) { + fs->m_u.tcp_ip6_spec.ip6src[i] = cpu_to_be32(~0); + fs->m_u.tcp_ip6_spec.ip6dst[i] = cpu_to_be32(~0); + } + fs->h_u.tcp_ip6_spec.psrc = fkeys->ports.src; + fs->m_u.tcp_ip6_spec.psrc = cpu_to_be16(~0); + + fs->h_u.tcp_ip6_spec.pdst = fkeys->ports.dst; + fs->m_u.tcp_ip6_spec.pdst = cpu_to_be16(~0); +#endif + } + +#else + if (fkeys->ip_proto == IPPROTO_TCP) + fs->flow_type = TCP_V4_FLOW; + else if (fkeys->ip_proto == IPPROTO_UDP) + fs->flow_type = UDP_V4_FLOW; + else + goto fltr_err; + + fs->h_u.tcp_ip4_spec.ip4src = fkeys->src; + fs->m_u.tcp_ip4_spec.ip4src = (__be32) ~0; + + fs->h_u.tcp_ip4_spec.ip4dst = fkeys->dst; + fs->m_u.tcp_ip4_spec.ip4dst = (__be32) ~0; + + fs->h_u.tcp_ip4_spec.psrc = fkeys->port16[0]; + fs->m_u.tcp_ip4_spec.psrc = (__be16) ~0; + + fs->h_u.tcp_ip4_spec.pdst = fkeys->port16[1]; + fs->m_u.tcp_ip4_spec.pdst = (__be16) ~0; +#endif + + fs->ring_cookie = fltr->rxq; + rc = 0; + +fltr_err: + rcu_read_unlock(); + + return rc; +} +#endif /* CONFIG_RFS_ACCEL */ + +static u64 get_ethtool_ipv4_rss(struct bnxt *bp) +{ + if (bp->rss_hash_cfg & VNIC_RSS_CFG_REQ_HASH_TYPE_IPV4) + return RXH_IP_SRC | RXH_IP_DST; + return 0; +} + +static u64 get_ethtool_ipv6_rss(struct bnxt *bp) +{ + if (bp->rss_hash_cfg & VNIC_RSS_CFG_REQ_HASH_TYPE_IPV6) + return RXH_IP_SRC | RXH_IP_DST; + return 0; +} + +static int bnxt_grxfh(struct bnxt *bp, struct ethtool_rxnfc *cmd) +{ + cmd->data = 0; + switch (cmd->flow_type) { + case TCP_V4_FLOW: + if (bp->rss_hash_cfg & VNIC_RSS_CFG_REQ_HASH_TYPE_TCP_IPV4) + cmd->data |= RXH_IP_SRC | RXH_IP_DST | + RXH_L4_B_0_1 | RXH_L4_B_2_3; + cmd->data |= get_ethtool_ipv4_rss(bp); + break; + case UDP_V4_FLOW: + if (bp->rss_hash_cfg & VNIC_RSS_CFG_REQ_HASH_TYPE_UDP_IPV4) + cmd->data |= RXH_IP_SRC | RXH_IP_DST | + RXH_L4_B_0_1 | RXH_L4_B_2_3; + /* fall through */ + case SCTP_V4_FLOW: + case AH_ESP_V4_FLOW: + case AH_V4_FLOW: + case ESP_V4_FLOW: + case IPV4_FLOW: + cmd->data |= get_ethtool_ipv4_rss(bp); + break; + + case TCP_V6_FLOW: + if (bp->rss_hash_cfg & VNIC_RSS_CFG_REQ_HASH_TYPE_TCP_IPV6) + cmd->data |= RXH_IP_SRC | RXH_IP_DST | + RXH_L4_B_0_1 | RXH_L4_B_2_3; + cmd->data |= get_ethtool_ipv6_rss(bp); + break; + case UDP_V6_FLOW: + if (bp->rss_hash_cfg & VNIC_RSS_CFG_REQ_HASH_TYPE_UDP_IPV6) + cmd->data |= RXH_IP_SRC | RXH_IP_DST | + RXH_L4_B_0_1 | RXH_L4_B_2_3; + /* fall through */ + case SCTP_V6_FLOW: + case AH_ESP_V6_FLOW: + case AH_V6_FLOW: + case ESP_V6_FLOW: + case IPV6_FLOW: + cmd->data |= get_ethtool_ipv6_rss(bp); + break; + } + return 0; +} + +#define RXH_4TUPLE (RXH_IP_SRC | RXH_IP_DST | RXH_L4_B_0_1 | RXH_L4_B_2_3) +#define RXH_2TUPLE (RXH_IP_SRC | RXH_IP_DST) + +static int bnxt_srxfh(struct bnxt *bp, struct ethtool_rxnfc *cmd) +{ + u32 rss_hash_cfg = bp->rss_hash_cfg; + int tuple, rc = 0; + + if (cmd->data == RXH_4TUPLE) + tuple = 4; + else if (cmd->data == RXH_2TUPLE) + tuple = 2; + else if (!cmd->data) + tuple = 0; + else + return -EINVAL; + + if (cmd->flow_type == TCP_V4_FLOW) { + rss_hash_cfg &= ~VNIC_RSS_CFG_REQ_HASH_TYPE_TCP_IPV4; + if (tuple == 4) + rss_hash_cfg |= VNIC_RSS_CFG_REQ_HASH_TYPE_TCP_IPV4; + } else if (cmd->flow_type == UDP_V4_FLOW) { + if (tuple == 4 && !(bp->flags & BNXT_FLAG_UDP_RSS_CAP)) + return -EINVAL; + rss_hash_cfg &= ~VNIC_RSS_CFG_REQ_HASH_TYPE_UDP_IPV4; + if (tuple == 4) + rss_hash_cfg |= VNIC_RSS_CFG_REQ_HASH_TYPE_UDP_IPV4; + } else if (cmd->flow_type == TCP_V6_FLOW) { + rss_hash_cfg &= ~VNIC_RSS_CFG_REQ_HASH_TYPE_TCP_IPV6; + if (tuple == 4) + rss_hash_cfg |= VNIC_RSS_CFG_REQ_HASH_TYPE_TCP_IPV6; + } else if (cmd->flow_type == UDP_V6_FLOW) { + if (tuple == 4 && !(bp->flags & BNXT_FLAG_UDP_RSS_CAP)) + return -EINVAL; + rss_hash_cfg &= ~VNIC_RSS_CFG_REQ_HASH_TYPE_UDP_IPV6; + if (tuple == 4) + rss_hash_cfg |= VNIC_RSS_CFG_REQ_HASH_TYPE_UDP_IPV6; + } else if (tuple == 4) { + return -EINVAL; + } + + switch (cmd->flow_type) { + case TCP_V4_FLOW: + case UDP_V4_FLOW: + case SCTP_V4_FLOW: + case AH_ESP_V4_FLOW: + case AH_V4_FLOW: + case ESP_V4_FLOW: + case IPV4_FLOW: + if (tuple == 2) + rss_hash_cfg |= VNIC_RSS_CFG_REQ_HASH_TYPE_IPV4; + else if (!tuple) + rss_hash_cfg &= ~VNIC_RSS_CFG_REQ_HASH_TYPE_IPV4; + break; + + case TCP_V6_FLOW: + case UDP_V6_FLOW: + case SCTP_V6_FLOW: + case AH_ESP_V6_FLOW: + case AH_V6_FLOW: + case ESP_V6_FLOW: + case IPV6_FLOW: + if (tuple == 2) + rss_hash_cfg |= VNIC_RSS_CFG_REQ_HASH_TYPE_IPV6; + else if (!tuple) + rss_hash_cfg &= ~VNIC_RSS_CFG_REQ_HASH_TYPE_IPV6; + break; + } + + if (bp->rss_hash_cfg == rss_hash_cfg) + return 0; + + bp->rss_hash_cfg = rss_hash_cfg; + if (netif_running(bp->dev)) { + bnxt_close_nic(bp, false, false); + rc = bnxt_open_nic(bp, false, false); + } + return rc; +} + +static int bnxt_get_rxnfc(struct net_device *dev, struct ethtool_rxnfc *cmd, +#ifdef HAVE_RXNFC_VOID + void *rule_locs) +#else + u32 *rule_locs) +#endif +{ + struct bnxt *bp = netdev_priv(dev); + int rc = 0; + + switch (cmd->cmd) { +#ifdef CONFIG_RFS_ACCEL + case ETHTOOL_GRXRINGS: + cmd->data = bp->rx_nr_rings; + break; + + case ETHTOOL_GRXCLSRLCNT: + cmd->rule_cnt = bp->ntp_fltr_count; + cmd->data = BNXT_NTP_FLTR_MAX_FLTR; + break; + + case ETHTOOL_GRXCLSRLALL: + rc = bnxt_grxclsrlall(bp, cmd, (u32 *)rule_locs); + break; + + case ETHTOOL_GRXCLSRULE: + rc = bnxt_grxclsrule(bp, cmd); + break; +#endif + + case ETHTOOL_GRXFH: + rc = bnxt_grxfh(bp, cmd); + break; + + default: + rc = -EOPNOTSUPP; + break; + } + + return rc; +} + +static int bnxt_set_rxnfc(struct net_device *dev, struct ethtool_rxnfc *cmd) +{ + struct bnxt *bp = netdev_priv(dev); + int rc; + + switch (cmd->cmd) { + case ETHTOOL_SRXFH: + rc = bnxt_srxfh(bp, cmd); + break; + + default: + rc = -EOPNOTSUPP; + break; + } + return rc; +} + +#endif /* HAVE_RXNFC */ + +#if defined(HAVE_RXFH_INDIR_SIZE) && !defined(GET_ETHTOOL_OP_EXT) +static u32 bnxt_get_rxfh_indir_size(struct net_device *dev) +{ + return HW_HASH_INDEX_SIZE; +} +#endif + +#if defined(HAVE_GET_RXFH_KEY_SIZE) && !defined(GET_ETHTOOL_OP_EXT) +static u32 bnxt_get_rxfh_key_size(struct net_device *dev) +{ + return HW_HASH_KEY_SIZE; +} + +static int bnxt_get_rxfh(struct net_device *dev, u32 *indir, u8 *key, + u8 *hfunc) +{ + struct bnxt *bp = netdev_priv(dev); + struct bnxt_vnic_info *vnic = &bp->vnic_info[0]; + int i = 0; + + if (hfunc) + *hfunc = ETH_RSS_HASH_TOP; + + if (indir) + for (i = 0; i < HW_HASH_INDEX_SIZE; i++) + indir[i] = le16_to_cpu(vnic->rss_table[i]); + + if (key) + memcpy(key, vnic->rss_hash_key, HW_HASH_KEY_SIZE); + + return 0; +} +#endif + +static void bnxt_get_drvinfo(struct net_device *dev, + struct ethtool_drvinfo *info) +{ + struct bnxt *bp = netdev_priv(dev); + char *pkglog; + char *pkgver = NULL; + + pkglog = kmalloc(BNX_PKG_LOG_MAX_LENGTH, GFP_KERNEL); + if (pkglog) + pkgver = bnxt_get_pkgver(dev, pkglog, BNX_PKG_LOG_MAX_LENGTH); + strlcpy(info->driver, DRV_MODULE_NAME, sizeof(info->driver)); + strlcpy(info->version, DRV_MODULE_VERSION, sizeof(info->version)); + if (pkgver && *pkgver != 0 && isdigit(*pkgver)) + snprintf(info->fw_version, sizeof(info->fw_version) - 1, + "%s pkg %s", bp->fw_ver_str, pkgver); + else + strlcpy(info->fw_version, bp->fw_ver_str, + sizeof(info->fw_version)); + strlcpy(info->bus_info, pci_name(bp->pdev), sizeof(info->bus_info)); + info->n_stats = bnxt_get_num_stats(bp); + info->testinfo_len = bp->num_tests; + /* TODO CHIMP_FW: eeprom dump details */ + info->eedump_len = 0; + /* TODO CHIMP FW: reg dump details */ + info->regdump_len = 0; + kfree(pkglog); +} + +static void bnxt_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol) +{ + struct bnxt *bp = netdev_priv(dev); + + wol->supported = 0; + wol->wolopts = 0; + memset(&wol->sopass, 0, sizeof(wol->sopass)); + if (bp->flags & BNXT_FLAG_WOL_CAP) { + wol->supported = WAKE_MAGIC; + if (bp->wol) + wol->wolopts = WAKE_MAGIC; + } +} + +static int bnxt_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol) +{ + struct bnxt *bp = netdev_priv(dev); + + if (wol->wolopts & ~WAKE_MAGIC) + return -EINVAL; + + if (wol->wolopts & WAKE_MAGIC) { + if (!(bp->flags & BNXT_FLAG_WOL_CAP)) + return -EINVAL; + if (!bp->wol) { + if (bnxt_hwrm_alloc_wol_fltr(bp)) + return -EBUSY; + bp->wol = 1; + } + } else { + if (bp->wol) { + if (bnxt_hwrm_free_wol_fltr(bp)) + return -EBUSY; + bp->wol = 0; + } + } + return 0; +} + +u32 _bnxt_fw_to_ethtool_adv_spds(u16 fw_speeds, u8 fw_pause) +{ + u32 speed_mask = 0; + + /* TODO: support 25GB, 40GB, 50GB with different cable type */ + /* set the advertised speeds */ + if (fw_speeds & BNXT_LINK_SPEED_MSK_100MB) + speed_mask |= ADVERTISED_100baseT_Full; + if (fw_speeds & BNXT_LINK_SPEED_MSK_1GB) + speed_mask |= ADVERTISED_1000baseT_Full; + if (fw_speeds & BNXT_LINK_SPEED_MSK_2_5GB) + speed_mask |= ADVERTISED_2500baseX_Full; + if (fw_speeds & BNXT_LINK_SPEED_MSK_10GB) + speed_mask |= ADVERTISED_10000baseT_Full; + if (fw_speeds & BNXT_LINK_SPEED_MSK_40GB) + speed_mask |= ADVERTISED_40000baseCR4_Full; + + if ((fw_pause & BNXT_LINK_PAUSE_BOTH) == BNXT_LINK_PAUSE_BOTH) + speed_mask |= ADVERTISED_Pause; + else if (fw_pause & BNXT_LINK_PAUSE_TX) + speed_mask |= ADVERTISED_Asym_Pause; + else if (fw_pause & BNXT_LINK_PAUSE_RX) + speed_mask |= ADVERTISED_Pause | ADVERTISED_Asym_Pause; + + return speed_mask; +} + +#ifdef HAVE_ETHTOOL_GLINKSETTINGS_25G +#define BNXT_FW_TO_ETHTOOL_SPDS(fw_speeds, fw_pause, lk_ksettings, name)\ +{ \ + if ((fw_speeds) & BNXT_LINK_SPEED_MSK_100MB) \ + ethtool_link_ksettings_add_link_mode(lk_ksettings, name,\ + 100baseT_Full); \ + if ((fw_speeds) & BNXT_LINK_SPEED_MSK_1GB) \ + ethtool_link_ksettings_add_link_mode(lk_ksettings, name,\ + 1000baseT_Full); \ + if ((fw_speeds) & BNXT_LINK_SPEED_MSK_10GB) \ + ethtool_link_ksettings_add_link_mode(lk_ksettings, name,\ + 10000baseT_Full); \ + if ((fw_speeds) & BNXT_LINK_SPEED_MSK_25GB) \ + ethtool_link_ksettings_add_link_mode(lk_ksettings, name,\ + 25000baseCR_Full); \ + if ((fw_speeds) & BNXT_LINK_SPEED_MSK_40GB) \ + ethtool_link_ksettings_add_link_mode(lk_ksettings, name,\ + 40000baseCR4_Full);\ + if ((fw_speeds) & BNXT_LINK_SPEED_MSK_50GB) \ + ethtool_link_ksettings_add_link_mode(lk_ksettings, name,\ + 50000baseCR2_Full);\ + if ((fw_pause) & BNXT_LINK_PAUSE_RX) { \ + ethtool_link_ksettings_add_link_mode(lk_ksettings, name,\ + Pause); \ + if (!((fw_pause) & BNXT_LINK_PAUSE_TX)) \ + ethtool_link_ksettings_add_link_mode( \ + lk_ksettings, name, Asym_Pause);\ + } else if ((fw_pause) & BNXT_LINK_PAUSE_TX) { \ + ethtool_link_ksettings_add_link_mode(lk_ksettings, name,\ + Asym_Pause); \ + } \ +} + +#define BNXT_ETHTOOL_TO_FW_SPDS(fw_speeds, lk_ksettings, name) \ +{ \ + if (ethtool_link_ksettings_test_link_mode(lk_ksettings, name, \ + 100baseT_Full) || \ + ethtool_link_ksettings_test_link_mode(lk_ksettings, name, \ + 100baseT_Half)) \ + (fw_speeds) |= BNXT_LINK_SPEED_MSK_100MB; \ + if (ethtool_link_ksettings_test_link_mode(lk_ksettings, name, \ + 1000baseT_Full) || \ + ethtool_link_ksettings_test_link_mode(lk_ksettings, name, \ + 1000baseT_Half)) \ + (fw_speeds) |= BNXT_LINK_SPEED_MSK_1GB; \ + if (ethtool_link_ksettings_test_link_mode(lk_ksettings, name, \ + 10000baseT_Full)) \ + (fw_speeds) |= BNXT_LINK_SPEED_MSK_10GB; \ + if (ethtool_link_ksettings_test_link_mode(lk_ksettings, name, \ + 25000baseCR_Full)) \ + (fw_speeds) |= BNXT_LINK_SPEED_MSK_25GB; \ + if (ethtool_link_ksettings_test_link_mode(lk_ksettings, name, \ + 40000baseCR4_Full)) \ + (fw_speeds) |= BNXT_LINK_SPEED_MSK_40GB; \ + if (ethtool_link_ksettings_test_link_mode(lk_ksettings, name, \ + 50000baseCR2_Full)) \ + (fw_speeds) |= BNXT_LINK_SPEED_MSK_50GB; \ +} + +static void bnxt_fw_to_ethtool_advertised_spds(struct bnxt_link_info *link_info, + struct ethtool_link_ksettings *lk_ksettings) +{ + u16 fw_speeds = link_info->advertising; + u8 fw_pause = 0; + + if (link_info->autoneg & BNXT_AUTONEG_FLOW_CTRL) + fw_pause = link_info->auto_pause_setting; + + BNXT_FW_TO_ETHTOOL_SPDS(fw_speeds, fw_pause, lk_ksettings, advertising); +} + +static void bnxt_fw_to_ethtool_lp_adv(struct bnxt_link_info *link_info, + struct ethtool_link_ksettings *lk_ksettings) +{ + u16 fw_speeds = link_info->lp_auto_link_speeds; + u8 fw_pause = 0; + + if (link_info->autoneg & BNXT_AUTONEG_FLOW_CTRL) + fw_pause = link_info->lp_pause; + + BNXT_FW_TO_ETHTOOL_SPDS(fw_speeds, fw_pause, lk_ksettings, + lp_advertising); +} + +static void bnxt_fw_to_ethtool_support_spds(struct bnxt_link_info *link_info, + struct ethtool_link_ksettings *lk_ksettings) +{ + u16 fw_speeds = link_info->support_speeds; + + BNXT_FW_TO_ETHTOOL_SPDS(fw_speeds, 0, lk_ksettings, supported); + + ethtool_link_ksettings_add_link_mode(lk_ksettings, supported, Pause); + ethtool_link_ksettings_add_link_mode(lk_ksettings, supported, + Asym_Pause); + + if (link_info->support_auto_speeds) + ethtool_link_ksettings_add_link_mode(lk_ksettings, supported, + Autoneg); +} + +#else + +static u32 bnxt_fw_to_ethtool_advertised_spds(struct bnxt_link_info *link_info) +{ + u16 fw_speeds = link_info->advertising; + u8 fw_pause = 0; + + if (link_info->autoneg & BNXT_AUTONEG_FLOW_CTRL) + fw_pause = link_info->auto_pause_setting; + + return _bnxt_fw_to_ethtool_adv_spds(fw_speeds, fw_pause); +} + +static u32 bnxt_fw_to_ethtool_lp_adv(struct bnxt_link_info *link_info) +{ + u16 fw_speeds = link_info->lp_auto_link_speeds; + u8 fw_pause = 0; + + if (link_info->autoneg & BNXT_AUTONEG_FLOW_CTRL) + fw_pause = link_info->lp_pause; + + return _bnxt_fw_to_ethtool_adv_spds(fw_speeds, fw_pause); +} + +static u32 bnxt_fw_to_ethtool_support_spds(struct bnxt_link_info *link_info) +{ + u16 fw_speeds = link_info->support_speeds; + u32 supported; + + supported = _bnxt_fw_to_ethtool_adv_spds(fw_speeds, 0); + return supported | SUPPORTED_Pause | SUPPORTED_Asym_Pause; +} + +static u32 bnxt_fw_to_ethtool_support_adv_spds(struct bnxt_link_info *link_info) +{ + u16 fw_speeds = link_info->support_auto_speeds; + u32 supported; + + supported = _bnxt_fw_to_ethtool_adv_spds(fw_speeds, 0); + if (supported) + supported |= SUPPORTED_Pause | SUPPORTED_Asym_Pause; + return supported; +} +#endif + +u32 bnxt_fw_to_ethtool_speed(u16 fw_link_speed) +{ + switch (fw_link_speed) { + case BNXT_LINK_SPEED_100MB: + return SPEED_100; + case BNXT_LINK_SPEED_1GB: + return SPEED_1000; + case BNXT_LINK_SPEED_2_5GB: + return SPEED_2500; + case BNXT_LINK_SPEED_10GB: + return SPEED_10000; + case BNXT_LINK_SPEED_20GB: + return SPEED_20000; + case BNXT_LINK_SPEED_25GB: + return SPEED_25000; + case BNXT_LINK_SPEED_40GB: + return SPEED_40000; + case BNXT_LINK_SPEED_50GB: + return SPEED_50000; + default: + return SPEED_UNKNOWN; + } +} + +#ifdef HAVE_ETHTOOL_GLINKSETTINGS_25G +static int bnxt_get_link_ksettings(struct net_device *dev, + struct ethtool_link_ksettings *lk_ksettings) +{ + struct bnxt *bp = netdev_priv(dev); + struct bnxt_link_info *link_info = &bp->link_info; + struct ethtool_link_settings *base = &lk_ksettings->base; + u32 ethtool_speed; + + ethtool_link_ksettings_zero_link_mode(lk_ksettings, supported); + bnxt_fw_to_ethtool_support_spds(link_info, lk_ksettings); + + ethtool_link_ksettings_zero_link_mode(lk_ksettings, advertising); + if (link_info->autoneg) { + bnxt_fw_to_ethtool_advertised_spds(link_info, lk_ksettings); + ethtool_link_ksettings_add_link_mode(lk_ksettings, + advertising, Autoneg); + base->autoneg = AUTONEG_ENABLE; + if (link_info->phy_link_status == BNXT_LINK_LINK) + bnxt_fw_to_ethtool_lp_adv(link_info, lk_ksettings); + ethtool_speed = bnxt_fw_to_ethtool_speed(link_info->link_speed); + if (!netif_carrier_ok(dev)) + base->duplex = DUPLEX_UNKNOWN; + else if (link_info->duplex & BNXT_LINK_DUPLEX_FULL) + base->duplex = DUPLEX_FULL; + else + base->duplex = DUPLEX_HALF; + } else { + base->autoneg = AUTONEG_DISABLE; + ethtool_speed = + bnxt_fw_to_ethtool_speed(link_info->req_link_speed); + base->duplex = DUPLEX_HALF; + if (link_info->req_duplex == BNXT_LINK_DUPLEX_FULL) + base->duplex = DUPLEX_FULL; + } + base->speed = ethtool_speed; + + base->port = PORT_NONE; + if (link_info->media_type == PORT_PHY_QCFG_RESP_MEDIA_TYPE_TP) { + base->port = PORT_TP; + ethtool_link_ksettings_add_link_mode(lk_ksettings, supported, + TP); + ethtool_link_ksettings_add_link_mode(lk_ksettings, advertising, + TP); + } else { + ethtool_link_ksettings_add_link_mode(lk_ksettings, supported, + FIBRE); + ethtool_link_ksettings_add_link_mode(lk_ksettings, advertising, + FIBRE); + + if (link_info->media_type == PORT_PHY_QCFG_RESP_MEDIA_TYPE_DAC) + base->port = PORT_DA; + else if (link_info->media_type == + PORT_PHY_QCFG_RESP_MEDIA_TYPE_FIBRE) + base->port = PORT_FIBRE; + } + base->phy_address = link_info->phy_addr; + + return 0; +} + +#else + +static int bnxt_get_settings(struct net_device *dev, struct ethtool_cmd *cmd) +{ + struct bnxt *bp = netdev_priv(dev); + struct bnxt_link_info *link_info = &bp->link_info; + u16 ethtool_speed; + + cmd->supported = bnxt_fw_to_ethtool_support_spds(link_info); + + if (link_info->support_auto_speeds) + cmd->supported |= SUPPORTED_Autoneg; + + if (link_info->autoneg) { + cmd->advertising = + bnxt_fw_to_ethtool_advertised_spds(link_info); + cmd->advertising |= ADVERTISED_Autoneg; + cmd->autoneg = AUTONEG_ENABLE; + if (link_info->phy_link_status == BNXT_LINK_LINK) + cmd->lp_advertising = + bnxt_fw_to_ethtool_lp_adv(link_info); + ethtool_speed = bnxt_fw_to_ethtool_speed(link_info->link_speed); + if (!netif_carrier_ok(dev)) + cmd->duplex = DUPLEX_UNKNOWN; + else if (link_info->duplex & BNXT_LINK_DUPLEX_FULL) + cmd->duplex = DUPLEX_FULL; + else + cmd->duplex = DUPLEX_HALF; + } else { + cmd->autoneg = AUTONEG_DISABLE; + cmd->advertising = 0; + ethtool_speed = + bnxt_fw_to_ethtool_speed(link_info->req_link_speed); + cmd->duplex = DUPLEX_HALF; + if (link_info->req_duplex == BNXT_LINK_DUPLEX_FULL) + cmd->duplex = DUPLEX_FULL; + } + ethtool_cmd_speed_set(cmd, ethtool_speed); + + cmd->port = PORT_NONE; + if (link_info->media_type == PORT_PHY_QCFG_RESP_MEDIA_TYPE_TP) { + cmd->port = PORT_TP; + cmd->supported |= SUPPORTED_TP; + cmd->advertising |= ADVERTISED_TP; + } else { + cmd->supported |= SUPPORTED_FIBRE; + cmd->advertising |= ADVERTISED_FIBRE; + + if (link_info->media_type == PORT_PHY_QCFG_RESP_MEDIA_TYPE_DAC) + cmd->port = PORT_DA; + else if (link_info->media_type == + PORT_PHY_QCFG_RESP_MEDIA_TYPE_FIBRE) + cmd->port = PORT_FIBRE; + } + + if (link_info->transceiver == + PORT_PHY_QCFG_RESP_XCVR_PKG_TYPE_XCVR_INTERNAL) + cmd->transceiver = XCVR_INTERNAL; + else + cmd->transceiver = XCVR_EXTERNAL; + cmd->phy_address = link_info->phy_addr; + + return 0; +} +#endif + +static u32 bnxt_get_fw_speed(struct net_device *dev, u16 ethtool_speed) +{ + struct bnxt *bp = netdev_priv(dev); + struct bnxt_link_info *link_info = &bp->link_info; + u16 support_spds = link_info->support_speeds; + u32 fw_speed = 0; + + switch (ethtool_speed) { + case SPEED_100: + if (support_spds & BNXT_LINK_SPEED_MSK_100MB) + fw_speed = PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_100MB; + break; + case SPEED_1000: + if (support_spds & BNXT_LINK_SPEED_MSK_1GB) + fw_speed = PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_1GB; + break; + case SPEED_2500: + if (support_spds & BNXT_LINK_SPEED_MSK_2_5GB) + fw_speed = PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_2_5GB; + break; + case SPEED_10000: + if (support_spds & BNXT_LINK_SPEED_MSK_10GB) + fw_speed = PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_10GB; + break; + case SPEED_20000: + if (support_spds & BNXT_LINK_SPEED_MSK_20GB) + fw_speed = PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_20GB; + break; + case SPEED_25000: + if (support_spds & BNXT_LINK_SPEED_MSK_25GB) + fw_speed = PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_25GB; + break; + case SPEED_40000: + if (support_spds & BNXT_LINK_SPEED_MSK_40GB) + fw_speed = PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_40GB; + break; + case SPEED_50000: + if (support_spds & BNXT_LINK_SPEED_MSK_50GB) + fw_speed = PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_50GB; + break; + default: + netdev_err(dev, "unsupported speed!\n"); + break; + } + return fw_speed; +} + +u16 bnxt_get_fw_auto_link_speeds(u32 advertising) +{ + u16 fw_speed_mask = 0; + + /* only support autoneg at speed 100, 1000, and 10000 */ + if (advertising & (ADVERTISED_100baseT_Full | + ADVERTISED_100baseT_Half)) { + fw_speed_mask |= BNXT_LINK_SPEED_MSK_100MB; + } + if (advertising & (ADVERTISED_1000baseT_Full | + ADVERTISED_1000baseT_Half)) { + fw_speed_mask |= BNXT_LINK_SPEED_MSK_1GB; + } + if (advertising & ADVERTISED_10000baseT_Full) + fw_speed_mask |= BNXT_LINK_SPEED_MSK_10GB; + + if (advertising & ADVERTISED_40000baseCR4_Full) + fw_speed_mask |= BNXT_LINK_SPEED_MSK_40GB; + + return fw_speed_mask; +} + +#ifdef HAVE_ETHTOOL_GLINKSETTINGS_25G +static int bnxt_set_link_ksettings(struct net_device *dev, + const struct ethtool_link_ksettings *lk_ksettings) +{ + struct bnxt *bp = netdev_priv(dev); + struct bnxt_link_info *link_info = &bp->link_info; + const struct ethtool_link_settings *base = &lk_ksettings->base; + bool set_pause = false; + u16 fw_advertising = 0; + u32 speed; + int rc = 0; + + if (!BNXT_SINGLE_PF(bp)) + return -EOPNOTSUPP; + + if (base->autoneg == AUTONEG_ENABLE) { + BNXT_ETHTOOL_TO_FW_SPDS(fw_advertising, lk_ksettings, + advertising); + link_info->autoneg |= BNXT_AUTONEG_SPEED; + if (!fw_advertising) + link_info->advertising = link_info->support_auto_speeds; + else + link_info->advertising = fw_advertising; + /* any change to autoneg will cause link change, therefore the + * driver should put back the original pause setting in autoneg + */ + set_pause = true; + } else { + u16 fw_speed; + u8 phy_type = link_info->phy_type; + + if (phy_type == PORT_PHY_QCFG_RESP_PHY_TYPE_BASET || + phy_type == PORT_PHY_QCFG_RESP_PHY_TYPE_BASETE || + link_info->media_type == PORT_PHY_QCFG_RESP_MEDIA_TYPE_TP) { + + netdev_err(dev, "10GBase-T devices must autoneg\n"); + rc = -EINVAL; + goto set_setting_exit; + } + if (base->duplex == DUPLEX_HALF) { + netdev_err(dev, "HALF DUPLEX is not supported!\n"); + rc = -EINVAL; + goto set_setting_exit; + } + speed = base->speed; + fw_speed = bnxt_get_fw_speed(dev, speed); + if (!fw_speed) { + rc = -EINVAL; + goto set_setting_exit; + } + link_info->req_link_speed = fw_speed; + link_info->req_duplex = BNXT_LINK_DUPLEX_FULL; + link_info->autoneg = 0; + link_info->advertising = 0; + } + if (netif_running(dev)) + rc = bnxt_hwrm_set_link_setting(bp, set_pause, false); + +set_setting_exit: + return rc; +} + +#else + +static int bnxt_set_settings(struct net_device *dev, struct ethtool_cmd *cmd) +{ + int rc = 0; + struct bnxt *bp = netdev_priv(dev); + struct bnxt_link_info *link_info = &bp->link_info; + bool set_pause = false; + u16 fw_advertising = 0; + u32 speed; + + if (!BNXT_SINGLE_PF(bp)) + return -EOPNOTSUPP; + + if (cmd->autoneg == AUTONEG_ENABLE) { + u32 supported_spds = + bnxt_fw_to_ethtool_support_adv_spds(link_info); + + if (!supported_spds) { + netdev_err(dev, "Autoneg not supported\n"); + rc = -EINVAL; + goto set_setting_exit; + } + if (cmd->advertising & ~(supported_spds | ADVERTISED_Autoneg | + ADVERTISED_TP | ADVERTISED_FIBRE)) { + netdev_err(dev, "Unsupported advertising mask (adv: 0x%x)\n", + cmd->advertising); + rc = -EINVAL; + goto set_setting_exit; + } + fw_advertising = bnxt_get_fw_auto_link_speeds(cmd->advertising); + link_info->autoneg |= BNXT_AUTONEG_SPEED; + if (!fw_advertising) + link_info->advertising = link_info->support_auto_speeds; + else + link_info->advertising = fw_advertising; + /* any change to autoneg will cause link change, therefore the + * driver should put back the original pause setting in autoneg + */ + set_pause = true; + } else { + u16 fw_speed; + u8 phy_type = link_info->phy_type; + + if (phy_type == PORT_PHY_QCFG_RESP_PHY_TYPE_BASET || + phy_type == PORT_PHY_QCFG_RESP_PHY_TYPE_BASETE || + link_info->media_type == PORT_PHY_QCFG_RESP_MEDIA_TYPE_TP) { + + netdev_err(dev, "10GBase-T devices must autoneg\n"); + rc = -EINVAL; + goto set_setting_exit; + } + /* TODO: currently don't support half duplex */ + if (cmd->duplex == DUPLEX_HALF) { + netdev_err(dev, "HALF DUPLEX is not supported!\n"); + rc = -EINVAL; + goto set_setting_exit; + } + /* If received a request for an unknown duplex, assume full*/ + if (cmd->duplex == DUPLEX_UNKNOWN) + cmd->duplex = DUPLEX_FULL; + speed = ethtool_cmd_speed(cmd); + fw_speed = bnxt_get_fw_speed(dev, speed); + if (!fw_speed) { + rc = -EINVAL; + goto set_setting_exit; + } + link_info->req_link_speed = fw_speed; + link_info->req_duplex = BNXT_LINK_DUPLEX_FULL; + link_info->autoneg = 0; + link_info->advertising = 0; + } + + if (netif_running(dev)) + rc = bnxt_hwrm_set_link_setting(bp, set_pause, false); + +set_setting_exit: + return rc; +} +#endif + +static void bnxt_get_pauseparam(struct net_device *dev, + struct ethtool_pauseparam *epause) +{ + struct bnxt *bp = netdev_priv(dev); + struct bnxt_link_info *link_info = &bp->link_info; + + if (BNXT_VF(bp)) + return; + epause->autoneg = !!(link_info->autoneg & BNXT_AUTONEG_FLOW_CTRL); + epause->rx_pause = !!(link_info->req_flow_ctrl & BNXT_LINK_PAUSE_RX); + epause->tx_pause = !!(link_info->req_flow_ctrl & BNXT_LINK_PAUSE_TX); +} + +static int bnxt_set_pauseparam(struct net_device *dev, + struct ethtool_pauseparam *epause) +{ + int rc = 0; + struct bnxt *bp = netdev_priv(dev); + struct bnxt_link_info *link_info = &bp->link_info; + + if (!BNXT_SINGLE_PF(bp)) + return -EOPNOTSUPP; + + if (epause->autoneg) { + if (!(link_info->autoneg & BNXT_AUTONEG_SPEED)) + return -EINVAL; + + link_info->autoneg |= BNXT_AUTONEG_FLOW_CTRL; + if (bp->hwrm_spec_code >= 0x10201) + link_info->req_flow_ctrl = + PORT_PHY_CFG_REQ_AUTO_PAUSE_AUTONEG_PAUSE; + } else { + /* when transition from auto pause to force pause, + * force a link change + */ + if (link_info->autoneg & BNXT_AUTONEG_FLOW_CTRL) + link_info->force_link_chng = true; + link_info->autoneg &= ~BNXT_AUTONEG_FLOW_CTRL; + link_info->req_flow_ctrl = 0; + } + if (epause->rx_pause) + link_info->req_flow_ctrl |= BNXT_LINK_PAUSE_RX; + + if (epause->tx_pause) + link_info->req_flow_ctrl |= BNXT_LINK_PAUSE_TX; + + if (netif_running(dev)) + rc = bnxt_hwrm_set_pause(bp); + return rc; +} + +static u32 bnxt_get_link(struct net_device *dev) +{ + struct bnxt *bp = netdev_priv(dev); + + /* TODO: handle MF, VF, driver close case */ + return bp->link_info.link_up; +} + +#ifdef CONFIG_BNXT_BPO_FLASHDEV +static int bnxt_find_nvram_item(struct net_device *dev, u16 type, u16 ordinal, + u16 ext, u16 *index, u32 *item_length, + u32 *data_length); + +static int bnxt_flash_nvram(struct net_device *dev, + u16 dir_type, + u16 dir_ordinal, + u16 dir_ext, + u16 dir_attr, + const u8 *data, + size_t data_len) +{ + struct bnxt *bp = netdev_priv(dev); + int rc; + struct hwrm_nvm_write_input req = {0}; + dma_addr_t dma_handle; + u8 *kmem; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_NVM_WRITE, -1, -1); + + req.dir_type = cpu_to_le16(dir_type); + req.dir_ordinal = cpu_to_le16(dir_ordinal); + req.dir_ext = cpu_to_le16(dir_ext); + req.dir_attr = cpu_to_le16(dir_attr); + req.dir_data_length = cpu_to_le32(data_len); + + kmem = dma_alloc_coherent(&bp->pdev->dev, data_len, &dma_handle, + GFP_KERNEL); + if (!kmem) { + netdev_err(dev, "dma_alloc_coherent failure, length = %u\n", + (unsigned)data_len); + return -ENOMEM; + } + memcpy(kmem, data, data_len); + req.host_src_addr = cpu_to_le64(dma_handle); + + rc = hwrm_send_message(bp, &req, sizeof(req), FLASH_NVRAM_TIMEOUT); + dma_free_coherent(&bp->pdev->dev, data_len, kmem, dma_handle); + + return rc; +} + +static int bnxt_firmware_reset(struct net_device *dev, + u16 dir_type) +{ + struct bnxt *bp = netdev_priv(dev); + struct hwrm_fw_reset_input req = {0}; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FW_RESET, -1, -1); + + /* TODO: Support ASAP ChiMP self-reset (e.g. upon PF driver unload) */ + /* TODO: Address self-reset of APE/KONG/BONO/TANG or ungraceful reset */ + /* (e.g. when firmware isn't already running) */ + switch (dir_type) { + case BNX_DIR_TYPE_CHIMP_PATCH: + case BNX_DIR_TYPE_BOOTCODE: + case BNX_DIR_TYPE_BOOTCODE_2: + req.embedded_proc_type = FW_RESET_REQ_EMBEDDED_PROC_TYPE_BOOT; + /* Self-reset ChiMP upon next PCIe reset: */ + req.selfrst_status = FW_RESET_REQ_SELFRST_STATUS_SELFRSTPCIERST; + break; + case BNX_DIR_TYPE_APE_FW: + case BNX_DIR_TYPE_APE_PATCH: + req.embedded_proc_type = FW_RESET_REQ_EMBEDDED_PROC_TYPE_MGMT; + /* Self-reset APE upon next PCIe reset: */ + req.selfrst_status = FW_RESET_REQ_SELFRST_STATUS_SELFRSTPCIERST; + break; + case BNX_DIR_TYPE_KONG_FW: + case BNX_DIR_TYPE_KONG_PATCH: + req.embedded_proc_type = + FW_RESET_REQ_EMBEDDED_PROC_TYPE_NETCTRL; + break; + case BNX_DIR_TYPE_BONO_FW: + case BNX_DIR_TYPE_BONO_PATCH: + req.embedded_proc_type = FW_RESET_REQ_EMBEDDED_PROC_TYPE_ROCE; + break; + default: + return -EINVAL; + } + + return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); +} + +static int bnxt_flash_firmware(struct net_device *dev, + u16 dir_type, + const u8 *fw_data, + size_t fw_size) +{ + int rc = 0; + u16 code_type; + u32 stored_crc; + u32 calculated_crc; + struct bnxt_fw_header *header = (struct bnxt_fw_header *)fw_data; + + switch (dir_type) { + case BNX_DIR_TYPE_BOOTCODE: + case BNX_DIR_TYPE_BOOTCODE_2: + code_type = CODE_BOOT; + break; + case BNX_DIR_TYPE_CHIMP_PATCH: + code_type = CODE_CHIMP_PATCH; + break; + case BNX_DIR_TYPE_APE_FW: + code_type = CODE_MCTP_PASSTHRU; + break; + case BNX_DIR_TYPE_APE_PATCH: + code_type = CODE_APE_PATCH; + break; + case BNX_DIR_TYPE_KONG_FW: + code_type = CODE_KONG_FW; + break; + case BNX_DIR_TYPE_KONG_PATCH: + code_type = CODE_KONG_PATCH; + break; + case BNX_DIR_TYPE_BONO_FW: + code_type = CODE_BONO_FW; + break; + case BNX_DIR_TYPE_BONO_PATCH: + code_type = CODE_BONO_PATCH; + break; + default: + netdev_err(dev, "Unsupported directory entry type: %u\n", + dir_type); + return -EINVAL; + } + if (fw_size < sizeof(struct bnxt_fw_header)) { + netdev_err(dev, "Invalid firmware file size: %u\n", + (unsigned int)fw_size); + return -EINVAL; + } + if (header->signature != cpu_to_le32(BNXT_FIRMWARE_BIN_SIGNATURE)) { + netdev_err(dev, "Invalid firmware signature: %08X\n", + le32_to_cpu(header->signature)); + return -EINVAL; + } + if (header->code_type != code_type) { + netdev_err(dev, "Expected firmware type: %d, read: %d\n", + code_type, header->code_type); + return -EINVAL; + } + if (header->device != DEVICE_CUMULUS_FAMILY) { + netdev_err(dev, "Expected firmware device family %d, read: %d\n", + DEVICE_CUMULUS_FAMILY, header->device); + return -EINVAL; + } + /* Confirm the CRC32 checksum of the file: */ + stored_crc = le32_to_cpu(*(__le32 *)(fw_data + fw_size - + sizeof(stored_crc))); + calculated_crc = ~crc32(~0, fw_data, fw_size - sizeof(stored_crc)); + if (calculated_crc != stored_crc) { + netdev_err(dev, "Firmware file CRC32 checksum (%08lX) does not match calculated checksum (%08lX)\n", + (unsigned long)stored_crc, + (unsigned long)calculated_crc); + return -EINVAL; + } + rc = bnxt_flash_nvram(dev, dir_type, BNX_DIR_ORDINAL_FIRST, + 0, 0, fw_data, fw_size); + if (rc == 0) /* Firmware update successful */ + rc = bnxt_firmware_reset(dev, dir_type); + + return rc; +} + +static int bnxt_flash_microcode(struct net_device *dev, + u16 dir_type, + const u8 *fw_data, + size_t fw_size) +{ + struct bnxt_ucode_trailer *trailer; + u32 calculated_crc; + u32 stored_crc; + int rc = 0; + + if (fw_size < sizeof(struct bnxt_ucode_trailer)) { + netdev_err(dev, "Invalid microcode file size: %u\n", + (unsigned int)fw_size); + return -EINVAL; + } + trailer = (struct bnxt_ucode_trailer *)(fw_data + (fw_size - + sizeof(*trailer))); + if (trailer->sig != cpu_to_le32(BNXT_UCODE_TRAILER_SIGNATURE)) { + netdev_err(dev, "Invalid microcode trailer signature: %08X\n", + le32_to_cpu(trailer->sig)); + return -EINVAL; + } + if (le16_to_cpu(trailer->dir_type) != dir_type) { + netdev_err(dev, "Expected microcode type: %d, read: %d\n", + dir_type, le16_to_cpu(trailer->dir_type)); + return -EINVAL; + } + if (le16_to_cpu(trailer->trailer_length) < + sizeof(struct bnxt_ucode_trailer)) { + netdev_err(dev, "Invalid microcode trailer length: %d\n", + le16_to_cpu(trailer->trailer_length)); + return -EINVAL; + } + + /* Confirm the CRC32 checksum of the file: */ + stored_crc = le32_to_cpu(*(__le32 *)(fw_data + fw_size - + sizeof(stored_crc))); + calculated_crc = ~crc32(~0, fw_data, fw_size - sizeof(stored_crc)); + if (calculated_crc != stored_crc) { + netdev_err(dev, + "CRC32 (%08lX) does not match calculated: %08lX\n", + (unsigned long)stored_crc, + (unsigned long)calculated_crc); + return -EINVAL; + } + rc = bnxt_flash_nvram(dev, dir_type, BNX_DIR_ORDINAL_FIRST, + 0, 0, fw_data, fw_size); + + return rc; +} + +static bool bnxt_dir_type_is_ape_bin_format(u16 dir_type) +{ + switch (dir_type) { + case BNX_DIR_TYPE_CHIMP_PATCH: + case BNX_DIR_TYPE_BOOTCODE: + case BNX_DIR_TYPE_BOOTCODE_2: + case BNX_DIR_TYPE_APE_FW: + case BNX_DIR_TYPE_APE_PATCH: + case BNX_DIR_TYPE_KONG_FW: + case BNX_DIR_TYPE_KONG_PATCH: + case BNX_DIR_TYPE_BONO_FW: + case BNX_DIR_TYPE_BONO_PATCH: + return true; + } + + return false; +} + +static bool bnxt_dir_type_is_other_exec_format(u16 dir_type) +{ + switch (dir_type) { + case BNX_DIR_TYPE_AVS: + case BNX_DIR_TYPE_EXP_ROM_MBA: + case BNX_DIR_TYPE_PCIE: + case BNX_DIR_TYPE_TSCF_UCODE: + case BNX_DIR_TYPE_EXT_PHY: + case BNX_DIR_TYPE_CCM: + case BNX_DIR_TYPE_ISCSI_BOOT: + case BNX_DIR_TYPE_ISCSI_BOOT_IPV6: + case BNX_DIR_TYPE_ISCSI_BOOT_IPV4N6: + return true; + } + + return false; +} + +static bool bnxt_dir_type_is_executable(u16 dir_type) +{ + return bnxt_dir_type_is_ape_bin_format(dir_type) || + bnxt_dir_type_is_other_exec_format(dir_type); +} + +static int bnxt_flash_firmware_from_file(struct net_device *dev, + u16 dir_type, + const char *filename) +{ + const struct firmware *fw; + int rc; + + rc = request_firmware(&fw, filename, &dev->dev); + if (rc != 0) { + netdev_err(dev, "Error %d requesting firmware file: %s\n", + rc, filename); + return rc; + } + if (bnxt_dir_type_is_ape_bin_format(dir_type) == true) + rc = bnxt_flash_firmware(dev, dir_type, fw->data, fw->size); + else if (bnxt_dir_type_is_other_exec_format(dir_type) == true) + rc = bnxt_flash_microcode(dev, dir_type, fw->data, fw->size); + else + rc = bnxt_flash_nvram(dev, dir_type, BNX_DIR_ORDINAL_FIRST, + 0, 0, fw->data, fw->size); + release_firmware(fw); + return rc; +} + +static int bnxt_flash_package_from_file(struct net_device *dev, + char *filename, u32 install_type) +{ + struct bnxt *bp = netdev_priv(dev); + struct hwrm_nvm_install_update_output *resp = bp->hwrm_cmd_resp_addr; + struct hwrm_nvm_install_update_input install = {0}; + const struct firmware *fw; + u32 item_len; + u16 index; + int rc; + + bnxt_hwrm_fw_set_time(bp); + + if (bnxt_find_nvram_item(dev, BNX_DIR_TYPE_UPDATE, + BNX_DIR_ORDINAL_FIRST, BNX_DIR_EXT_NONE, + &index, &item_len, NULL) != 0) { + netdev_err(dev, "PKG update area not created in nvram\n"); + return -ENOBUFS; + } + + rc = request_firmware(&fw, filename, &dev->dev); + if (rc != 0) { + netdev_err(dev, "PKG error %d requesting file: %s\n", + rc, filename); + return rc; + } + + if (fw->size > item_len) { + netdev_err(dev, "PKG insufficient update area in nvram: %lu", + (unsigned long)fw->size); + rc = -EFBIG; + } else { + dma_addr_t dma_handle; + u8 *kmem; + struct hwrm_nvm_modify_input modify = {0}; + + bnxt_hwrm_cmd_hdr_init(bp, &modify, HWRM_NVM_MODIFY, -1, -1); + + modify.dir_idx = cpu_to_le16(index); + modify.len = cpu_to_le32(fw->size); + + kmem = dma_alloc_coherent(&bp->pdev->dev, fw->size, + &dma_handle, GFP_KERNEL); + if (!kmem) { + netdev_err(dev, + "dma_alloc_coherent failure, length = %u\n", + (unsigned int)fw->size); + rc = -ENOMEM; + } else { + memcpy(kmem, fw->data, fw->size); + modify.host_src_addr = cpu_to_le64(dma_handle); + + rc = hwrm_send_message(bp, &modify, sizeof(modify), + FLASH_PACKAGE_TIMEOUT); + dma_free_coherent(&bp->pdev->dev, fw->size, kmem, + dma_handle); + } + } + release_firmware(fw); + if (rc) + return rc; + + if ((install_type & 0xffff) == 0) + install_type >>= 16; + bnxt_hwrm_cmd_hdr_init(bp, &install, HWRM_NVM_INSTALL_UPDATE, -1, -1); + install.install_type = cpu_to_le32(install_type); + + mutex_lock(&bp->hwrm_cmd_lock); + rc = _hwrm_send_message(bp, &install, sizeof(install), + INSTALL_PACKAGE_TIMEOUT); + if (rc) { + rc = -EOPNOTSUPP; + goto flash_pkg_exit; + } + + if (resp->error_code) { + u8 error_code = ((struct hwrm_err_output *)resp)->cmd_err; + + if (error_code == NVM_INSTALL_UPDATE_CMD_ERR_CODE_FRAG_ERR) { + install.flags |= cpu_to_le16( + NVM_INSTALL_UPDATE_REQ_FLAGS_ALLOWED_TO_DEFRAG); + rc = _hwrm_send_message(bp, &install, sizeof(install), + INSTALL_PACKAGE_TIMEOUT); + if (rc) { + rc = -EOPNOTSUPP; + goto flash_pkg_exit; + } + } + } + + if (resp->result) { + netdev_err(dev, "PKG install error = %d, problem_item = %d\n", + (s8)resp->result, (int)resp->problem_item); + rc = -ENOPKG; + } +flash_pkg_exit: + mutex_unlock(&bp->hwrm_cmd_lock); + return rc; +} + +static int bnxt_flash_device(struct net_device *dev, + struct ethtool_flash *flash) +{ + if (!BNXT_PF((struct bnxt *)netdev_priv(dev))) { + netdev_err(dev, "flashdev not supported from a virtual function\n"); + return -EINVAL; + } + + if (flash->region == ETHTOOL_FLASH_ALL_REGIONS || + flash->region > 0xffff) + return bnxt_flash_package_from_file(dev, flash->data, + flash->region); + + return bnxt_flash_firmware_from_file(dev, flash->region, flash->data); +} + +static int nvm_get_dir_info(struct net_device *dev, u32 *entries, u32 *length) +{ + struct bnxt *bp = netdev_priv(dev); + int rc; + struct hwrm_nvm_get_dir_info_input req = {0}; + struct hwrm_nvm_get_dir_info_output *output = bp->hwrm_cmd_resp_addr; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_NVM_GET_DIR_INFO, -1, -1); + + mutex_lock(&bp->hwrm_cmd_lock); + rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + if (!rc) { + *entries = le32_to_cpu(output->entries); + *length = le32_to_cpu(output->entry_length); + } + mutex_unlock(&bp->hwrm_cmd_lock); + return rc; +} + +static int bnxt_get_eeprom_len(struct net_device *dev) +{ + /* The -1 return value allows the entire 32-bit range of offsets to be + * passed via the ethtool command-line utility. + */ + return -1; +} + +static int bnxt_get_nvram_directory(struct net_device *dev, u32 len, u8 *data) +{ + struct bnxt *bp = netdev_priv(dev); + int rc; + u32 dir_entries; + u32 entry_length; + u8 *buf; + size_t buflen; + dma_addr_t dma_handle; + struct hwrm_nvm_get_dir_entries_input req = {0}; + + rc = nvm_get_dir_info(dev, &dir_entries, &entry_length); + if (rc != 0) + return rc; + + /* Insert 2 bytes of directory info (count and size of entries) */ + if (len < 2) + return -EINVAL; + + *data++ = dir_entries; + *data++ = entry_length; + len -= 2; + memset(data, 0xff, len); + + buflen = dir_entries * entry_length; + buf = dma_alloc_coherent(&bp->pdev->dev, buflen, &dma_handle, + GFP_KERNEL); + if (!buf) { + netdev_err(dev, "dma_alloc_coherent failure, length = %u\n", + (unsigned)buflen); + return -ENOMEM; + } + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_NVM_GET_DIR_ENTRIES, -1, -1); + req.host_dest_addr = cpu_to_le64(dma_handle); + rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + if (rc == 0) + memcpy(data, buf, len > buflen ? buflen : len); + dma_free_coherent(&bp->pdev->dev, buflen, buf, dma_handle); + return rc; +} + +static int bnxt_get_nvram_item(struct net_device *dev, u32 index, u32 offset, + u32 length, u8 *data) +{ + struct bnxt *bp = netdev_priv(dev); + int rc; + u8 *buf; + dma_addr_t dma_handle; + struct hwrm_nvm_read_input req = {0}; + + buf = dma_alloc_coherent(&bp->pdev->dev, length, &dma_handle, + GFP_KERNEL); + if (!buf) { + netdev_err(dev, "dma_alloc_coherent failure, length = %u\n", + (unsigned)length); + return -ENOMEM; + } + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_NVM_READ, -1, -1); + req.host_dest_addr = cpu_to_le64(dma_handle); + req.dir_idx = cpu_to_le16(index); + req.offset = cpu_to_le32(offset); + req.len = cpu_to_le32(length); + + rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + if (rc == 0) + memcpy(data, buf, length); + dma_free_coherent(&bp->pdev->dev, length, buf, dma_handle); + return rc; +} + +static int bnxt_find_nvram_item(struct net_device *dev, u16 type, u16 ordinal, + u16 ext, u16 *index, u32 *item_length, + u32 *data_length) +{ + struct bnxt *bp = netdev_priv(dev); + int rc; + struct hwrm_nvm_find_dir_entry_input req = {0}; + struct hwrm_nvm_find_dir_entry_output *output = bp->hwrm_cmd_resp_addr; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_NVM_FIND_DIR_ENTRY, -1, -1); + req.enables = 0; + req.dir_idx = 0; + req.dir_type = cpu_to_le16(type); + req.dir_ordinal = cpu_to_le16(ordinal); + req.dir_ext = cpu_to_le16(ext); + req.opt_ordinal = NVM_FIND_DIR_ENTRY_REQ_OPT_ORDINAL_EQ; + rc = hwrm_send_message_silent(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + if (rc == 0) { + if (index) + *index = le16_to_cpu(output->dir_idx); + if (item_length) + *item_length = le32_to_cpu(output->dir_item_length); + if (data_length) + *data_length = le32_to_cpu(output->dir_data_length); + } + return rc; +} + +static char *bnxt_parse_pkglog(int desired_field, u8 *data, size_t datalen) +{ + char *retval = NULL; + char *p; + char *value; + int field = 0; + + if (datalen < 1) + return NULL; + /* null-terminate the log data (removing last '\n'): */ + data[datalen - 1] = 0; + for (p = data; *p != 0; p++) { + field = 0; + retval = NULL; + while (*p != 0 && *p != '\n') { + value = p; + while (*p != 0 && *p != '\t' && *p != '\n') + p++; + if (field == desired_field) + retval = value; + if (*p != '\t') + break; + *p = 0; + field++; + p++; + } + if (*p == 0) + break; + *p = 0; + } + return retval; +} + +static char *bnxt_get_pkgver(struct net_device *dev, char *buf, size_t buflen) +{ + u16 index = 0; + u32 datalen; + + if (bnxt_find_nvram_item(dev, BNX_DIR_TYPE_PKG_LOG, + BNX_DIR_ORDINAL_FIRST, BNX_DIR_EXT_NONE, + &index, NULL, &datalen) != 0) + return NULL; + + memset(buf, 0, buflen); + if (bnxt_get_nvram_item(dev, index, 0, datalen, buf) != 0) + return NULL; + + return bnxt_parse_pkglog(BNX_PKG_LOG_FIELD_IDX_PKG_VERSION, buf, + datalen); +} + +static int bnxt_get_eeprom(struct net_device *dev, + struct ethtool_eeprom *eeprom, + u8 *data) +{ + int i; + int rc; + u32 index; + u32 offset; + u32 size; + struct bnxt *bp = netdev_priv(dev); + struct hwrm_fw_qstatus_input fw_status_req = {0}; + struct hwrm_fw_qstatus_output *fw_status_resp = bp->hwrm_cmd_resp_addr; + struct hwrm_nvm_get_dev_info_input dev_info_req = {0}; + + if (eeprom->len < 1) + return -EINVAL; + + if (eeprom->offset == 0) /* special offset value to get directory */ + return bnxt_get_nvram_directory(dev, eeprom->len, data); + + index = eeprom->offset >> 24; + offset = eeprom->offset & 0xffffff; + + if (index != 0) + return bnxt_get_nvram_item(dev, index - 1, offset, eeprom->len, + data); + + switch (offset) { + case 1: /* Query firmware reset status */ + if (eeprom->len < 5) + return -EINVAL; + size = 4; /* procs: BOOT, MGMT, NETCTRL, and ROCE */ + *(data++) = size; + mutex_lock(&bp->hwrm_cmd_lock); + for (i = 0; i < size; i++) { + bnxt_hwrm_cmd_hdr_init(bp, &fw_status_req, + HWRM_FW_QSTATUS, -1, -1); + fw_status_req.embedded_proc_type = i; + rc = _hwrm_send_message(bp, &fw_status_req, + sizeof(fw_status_req), + HWRM_CMD_TIMEOUT); + if (rc == 0) + *(data++) = fw_status_resp->selfrst_status; + else + break; + } + mutex_unlock(&bp->hwrm_cmd_lock); + return rc; + case 2: /* Query firmware version information */ + size = sizeof(bp->ver_resp); + *(data++) = size; + memcpy(data, &bp->ver_resp, min(size, eeprom->len - 1)); + return 0; + case 3: /* Query NVM device information */ + bnxt_hwrm_cmd_hdr_init(bp, &dev_info_req, + HWRM_NVM_GET_DEV_INFO, -1, -1); + mutex_lock(&bp->hwrm_cmd_lock); + rc = _hwrm_send_message(bp, &dev_info_req, sizeof(dev_info_req), + HWRM_CMD_TIMEOUT); + if (rc == 0) { + size = sizeof(struct hwrm_nvm_get_dev_info_output); + *(data++) = size; + memcpy(data, bp->hwrm_cmd_resp_addr, min(size, + eeprom->len - 1)); + } + mutex_unlock(&bp->hwrm_cmd_lock); + return rc; + } + return -EINVAL; +} + +static int bnxt_erase_nvram_directory(struct net_device *dev, u8 index) +{ + struct bnxt *bp = netdev_priv(dev); + struct hwrm_nvm_erase_dir_entry_input req = {0}; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_NVM_ERASE_DIR_ENTRY, -1, -1); + req.dir_idx = cpu_to_le16(index); + return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); +} + +static int bnxt_set_eeprom(struct net_device *dev, + struct ethtool_eeprom *eeprom, + u8 *data) +{ + struct bnxt *bp = netdev_priv(dev); + u8 index, dir_op; + u16 type, ext, ordinal, attr; + + if (!BNXT_PF(bp)) { + netdev_err(dev, "NVM write not supported from a virtual function\n"); + return -EINVAL; + } + + type = eeprom->magic >> 16; + + if (type == 0xffff) { /* special value for directory operations */ + index = eeprom->magic & 0xff; + dir_op = eeprom->magic >> 8; + if (index == 0) + return -EINVAL; + switch (dir_op) { + case 0x0e: /* erase */ + if (eeprom->offset != ~eeprom->magic) + return -EINVAL; + return bnxt_erase_nvram_directory(dev, index - 1); + default: + return -EINVAL; + } + } + + /* Create or re-write an NVM item: */ + if (bnxt_dir_type_is_executable(type) == true) + return -EOPNOTSUPP; + ext = eeprom->magic & 0xffff; + ordinal = eeprom->offset >> 16; + attr = eeprom->offset & 0xffff; + + return bnxt_flash_nvram(dev, type, ordinal, ext, attr, data, + eeprom->len); +} + +#endif + +#if defined(ETHTOOL_GEEE) && !defined(GET_ETHTOOL_OP_EXT) +static int bnxt_set_eee(struct net_device *dev, struct ethtool_eee *edata) +{ + struct bnxt *bp = netdev_priv(dev); + struct ethtool_eee *eee = &bp->eee; + struct bnxt_link_info *link_info = &bp->link_info; + u32 advertising = + _bnxt_fw_to_ethtool_adv_spds(link_info->advertising, 0); + int rc = 0; + + if (!BNXT_SINGLE_PF(bp)) + return -EOPNOTSUPP; + + if (!(bp->flags & BNXT_FLAG_EEE_CAP)) + return -EOPNOTSUPP; + + if (!edata->eee_enabled) + goto eee_ok; + + if (!(link_info->autoneg & BNXT_AUTONEG_SPEED)) { + netdev_warn(dev, "EEE requires autoneg\n"); + return -EINVAL; + } + if (edata->tx_lpi_enabled) { + if (bp->lpi_tmr_hi && (edata->tx_lpi_timer > bp->lpi_tmr_hi || + edata->tx_lpi_timer < bp->lpi_tmr_lo)) { + netdev_warn(dev, "Valid LPI timer range is %d and %d microsecs\n", + bp->lpi_tmr_lo, bp->lpi_tmr_hi); + return -EINVAL; + } else if (!bp->lpi_tmr_hi) { + edata->tx_lpi_timer = eee->tx_lpi_timer; + } + } + if (!edata->advertised) { + edata->advertised = advertising & eee->supported; + } else if (edata->advertised & ~advertising) { + netdev_warn(dev, "EEE advertised %x must be a subset of autoneg advertised speeds %x\n", + edata->advertised, advertising); + return -EINVAL; + } + + eee->advertised = edata->advertised; + eee->tx_lpi_enabled = edata->tx_lpi_enabled; + eee->tx_lpi_timer = edata->tx_lpi_timer; +eee_ok: + eee->eee_enabled = edata->eee_enabled; + + if (netif_running(dev)) + rc = bnxt_hwrm_set_link_setting(bp, false, true); + + return rc; +} + +static int bnxt_get_eee(struct net_device *dev, struct ethtool_eee *edata) +{ + struct bnxt *bp = netdev_priv(dev); + + if (!(bp->flags & BNXT_FLAG_EEE_CAP)) + return -EOPNOTSUPP; + + *edata = bp->eee; + if (!bp->eee.eee_enabled) { + /* Preserve tx_lpi_timer so that the last value will be used + * by default when it is re-enabled. + */ + edata->advertised = 0; + edata->tx_lpi_enabled = 0; + } + + if (!bp->eee.eee_active) + edata->lp_advertised = 0; + + return 0; +} +#endif + +#if defined(ETHTOOL_GMODULEEEPROM) && !defined(GET_ETHTOOL_OP_EXT) +static int bnxt_read_sfp_module_eeprom_info(struct bnxt *bp, u16 i2c_addr, + u16 page_number, u16 start_addr, + u16 data_length, u8 *buf) +{ + struct hwrm_port_phy_i2c_read_input req = {0}; + struct hwrm_port_phy_i2c_read_output *output = bp->hwrm_cmd_resp_addr; + int rc, byte_offset = 0; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_PORT_PHY_I2C_READ, -1, -1); + req.i2c_slave_addr = i2c_addr; + req.page_number = cpu_to_le16(page_number); + req.port_id = cpu_to_le16(bp->pf.port_id); + do { + u16 xfer_size; + + xfer_size = min_t(u16, data_length, BNXT_MAX_PHY_I2C_RESP_SIZE); + data_length -= xfer_size; + req.page_offset = cpu_to_le16(start_addr + byte_offset); + req.data_length = xfer_size; + req.enables = cpu_to_le32(start_addr + byte_offset ? + PORT_PHY_I2C_READ_REQ_ENABLES_PAGE_OFFSET : 0); + mutex_lock(&bp->hwrm_cmd_lock); + rc = _hwrm_send_message(bp, &req, sizeof(req), + HWRM_CMD_TIMEOUT); + if (!rc) + memcpy(buf + byte_offset, output->data, xfer_size); + mutex_unlock(&bp->hwrm_cmd_lock); + byte_offset += xfer_size; + } while (!rc && data_length > 0); + + return rc; +} + +static int bnxt_get_module_info(struct net_device *dev, + struct ethtool_modinfo *modinfo) +{ + struct bnxt *bp = netdev_priv(dev); + struct hwrm_port_phy_i2c_read_input req = {0}; + struct hwrm_port_phy_i2c_read_output *output = bp->hwrm_cmd_resp_addr; + int rc; + + /* No point in going further if phy status indicates + * module is not inserted or if it is powered down or + * if it is of type 10GBase-T + */ + if (bp->link_info.module_status > + PORT_PHY_QCFG_RESP_MODULE_STATUS_WARNINGMSG) + return -EOPNOTSUPP; + + /* This feature is not supported in older firmware versions */ + if (bp->hwrm_spec_code < 0x10202) + return -EOPNOTSUPP; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_PORT_PHY_I2C_READ, -1, -1); + req.i2c_slave_addr = I2C_DEV_ADDR_A0; + req.page_number = 0; + req.page_offset = cpu_to_le16(SFP_EEPROM_SFF_8472_COMP_ADDR); + req.data_length = SFP_EEPROM_SFF_8472_COMP_SIZE; + req.port_id = cpu_to_le16(bp->pf.port_id); + mutex_lock(&bp->hwrm_cmd_lock); + rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + if (!rc) { + u32 module_id = le32_to_cpu(output->data[0]); + + switch (module_id) { + case SFF_MODULE_ID_SFP: + modinfo->type = ETH_MODULE_SFF_8472; + modinfo->eeprom_len = ETH_MODULE_SFF_8472_LEN; + break; + case SFF_MODULE_ID_QSFP: + case SFF_MODULE_ID_QSFP_PLUS: + modinfo->type = ETH_MODULE_SFF_8436; + modinfo->eeprom_len = ETH_MODULE_SFF_8436_LEN; + break; + case SFF_MODULE_ID_QSFP28: + modinfo->type = ETH_MODULE_SFF_8636; + modinfo->eeprom_len = ETH_MODULE_SFF_8636_LEN; + break; + default: + rc = -EOPNOTSUPP; + break; + } + } + mutex_unlock(&bp->hwrm_cmd_lock); + return rc; +} + +static int bnxt_get_module_eeprom(struct net_device *dev, + struct ethtool_eeprom *eeprom, + u8 *data) +{ + struct bnxt *bp = netdev_priv(dev); + u16 start = eeprom->offset, length = eeprom->len; + int rc = 0; + + memset(data, 0, eeprom->len); + + /* Read A0 portion of the EEPROM */ + if (start < ETH_MODULE_SFF_8436_LEN) { + if (start + eeprom->len > ETH_MODULE_SFF_8436_LEN) + length = ETH_MODULE_SFF_8436_LEN - start; + rc = bnxt_read_sfp_module_eeprom_info(bp, I2C_DEV_ADDR_A0, 0, + start, length, data); + if (rc) + return rc; + start += length; + data += start; + length = eeprom->len - length; + } + + /* Read A2 portion of the EEPROM */ + if (length) { + start -= ETH_MODULE_SFF_8436_LEN; + bnxt_read_sfp_module_eeprom_info(bp, I2C_DEV_ADDR_A2, 1, start, + length, data); + } + return rc; +} +#endif + +static int bnxt_nway_reset(struct net_device *dev) +{ + int rc = 0; + + struct bnxt *bp = netdev_priv(dev); + struct bnxt_link_info *link_info = &bp->link_info; + + if (!BNXT_SINGLE_PF(bp)) + return -EOPNOTSUPP; + + if (!(link_info->autoneg & BNXT_AUTONEG_SPEED)) + return -EINVAL; + + if (netif_running(dev)) + rc = bnxt_hwrm_set_link_setting(bp, true, false); + + return rc; +} + +#if defined(HAVE_SET_PHYS_ID) && !defined(GET_ETHTOOL_OP_EXT) +static int bnxt_set_phys_id(struct net_device *dev, + enum ethtool_phys_id_state state) +{ + struct hwrm_port_led_cfg_input req = {0}; + struct bnxt *bp = netdev_priv(dev); + struct bnxt_pf_info *pf = &bp->pf; + struct bnxt_led_cfg *led_cfg; + u8 led_state; + __le16 duration; + int i, rc; + + if (!bp->num_leds || BNXT_VF(bp)) + return -EOPNOTSUPP; + + if (state == ETHTOOL_ID_ACTIVE) { + led_state = PORT_LED_CFG_REQ_LED0_STATE_BLINKALT; + duration = cpu_to_le16(500); + } else if (state == ETHTOOL_ID_INACTIVE) { + led_state = PORT_LED_CFG_REQ_LED1_STATE_DEFAULT; + duration = cpu_to_le16(0); + } else { + return -EINVAL; + } + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_PORT_LED_CFG, -1, -1); + req.port_id = cpu_to_le16(pf->port_id); + req.num_leds = bp->num_leds; + led_cfg = (struct bnxt_led_cfg *) &req.led0_id; + for (i = 0; i < bp->num_leds; i++, led_cfg++) { + req.enables |= BNXT_LED_DFLT_ENABLES(i); + led_cfg->led_id = bp->leds[i].led_id; + led_cfg->led_state = led_state; + led_cfg->led_blink_on = duration; + led_cfg->led_blink_off = duration; + led_cfg->led_group_id = bp->leds[i].led_group_id; + } + rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + if (rc) + rc = -EIO; + return rc; +} +#endif + +static int bnxt_hwrm_selftest_irq(struct bnxt *bp, u16 cmpl_ring) +{ + struct hwrm_selftest_irq_input req = {0}; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_SELFTEST_IRQ, cmpl_ring, -1); + return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); +} + +static int bnxt_test_irq(struct bnxt *bp) +{ + int i; + + for (i = 0; i < bp->cp_nr_rings; i++) { + u16 cmpl_ring = bp->grp_info[i].cp_fw_ring_id; + int rc; + + rc = bnxt_hwrm_selftest_irq(bp, cmpl_ring); + if (rc) + return rc; + } + return 0; +} + +static int bnxt_hwrm_mac_loopback(struct bnxt *bp, bool enable) +{ + struct hwrm_port_mac_cfg_input req = {0}; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_PORT_MAC_CFG, -1, -1); + + req.enables = cpu_to_le32(PORT_MAC_CFG_REQ_ENABLES_LPBK); + if (enable) + req.lpbk = PORT_MAC_CFG_REQ_LPBK_LOCAL; + else + req.lpbk = PORT_MAC_CFG_REQ_LPBK_NONE; + return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); +} + +static int bnxt_disable_an_for_lpbk(struct bnxt *bp, + struct hwrm_port_phy_cfg_input *req) +{ + struct bnxt_link_info *link_info = &bp->link_info; + u16 fw_advertising = link_info->advertising; + u16 fw_speed; + int rc; + + if (!link_info->autoneg) + return 0; + + fw_speed = PORT_PHY_CFG_REQ_FORCE_LINK_SPEED_1GB; + if (netif_carrier_ok(bp->dev)) + fw_speed = bp->link_info.link_speed; + else if (fw_advertising & BNXT_LINK_SPEED_MSK_10GB) + fw_speed = PORT_PHY_CFG_REQ_FORCE_LINK_SPEED_10GB; + else if (fw_advertising & BNXT_LINK_SPEED_MSK_25GB) + fw_speed = PORT_PHY_CFG_REQ_FORCE_LINK_SPEED_25GB; + else if (fw_advertising & BNXT_LINK_SPEED_MSK_40GB) + fw_speed = PORT_PHY_CFG_REQ_FORCE_LINK_SPEED_40GB; + else if (fw_advertising & BNXT_LINK_SPEED_MSK_50GB) + fw_speed = PORT_PHY_CFG_REQ_FORCE_LINK_SPEED_50GB; + + req->force_link_speed = cpu_to_le16(fw_speed); + req->flags |= cpu_to_le32(PORT_PHY_CFG_REQ_FLAGS_FORCE | + PORT_PHY_CFG_REQ_FLAGS_RESET_PHY); + rc = hwrm_send_message(bp, req, sizeof(*req), HWRM_CMD_TIMEOUT); + req->flags = 0; + req->force_link_speed = cpu_to_le16(0); + return rc; +} + +static int bnxt_hwrm_phy_loopback(struct bnxt *bp, bool enable) +{ + struct hwrm_port_phy_cfg_input req = {0}; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_PORT_PHY_CFG, -1, -1); + + if (enable) { + bnxt_disable_an_for_lpbk(bp, &req); + req.lpbk = PORT_PHY_CFG_REQ_LPBK_LOCAL; + } else { + req.lpbk = PORT_PHY_CFG_REQ_LPBK_NONE; + } + req.enables = cpu_to_le32(PORT_PHY_CFG_REQ_ENABLES_LPBK); + return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); +} + +static int bnxt_rx_loopback(struct bnxt *bp, struct bnxt_napi *bnapi, + u32 raw_cons, int pkt_size) +{ + struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring; + struct bnxt_rx_ring_info *rxr = bnapi->rx_ring; + struct bnxt_sw_rx_bd *rx_buf; + struct rx_cmp *rxcmp; + u16 cp_cons, cons; + u8 *data; + u32 len; + int i; + + cp_cons = RING_CMP(raw_cons); + rxcmp = (struct rx_cmp *) + &cpr->cp_desc_ring[CP_RING(cp_cons)][CP_IDX(cp_cons)]; + cons = rxcmp->rx_cmp_opaque; + rx_buf = &rxr->rx_buf_ring[cons]; + data = rx_buf->data_ptr; + len = le32_to_cpu(rxcmp->rx_cmp_len_flags_type) >> RX_CMP_LEN_SHIFT; + if (len != pkt_size) + return -EIO; + i = ETH_ALEN; + if (!ether_addr_equal(data + i, bnapi->bp->dev->dev_addr)) + return -EIO; + i += ETH_ALEN; + for ( ; i < pkt_size; i++) { + if (data[i] != (u8)(i & 0xff)) + return -EIO; + } + return 0; +} + +static int bnxt_poll_loopback(struct bnxt *bp, int pkt_size) +{ + struct bnxt_napi *bnapi = bp->bnapi[0]; + struct bnxt_cp_ring_info *cpr; + struct tx_cmp *txcmp; + int rc = -EIO; + u32 raw_cons; + u32 cons; + int i; + + cpr = &bnapi->cp_ring; + raw_cons = cpr->cp_raw_cons; + for (i = 0; i < 200; i++) { + cons = RING_CMP(raw_cons); + txcmp = &cpr->cp_desc_ring[CP_RING(cons)][CP_IDX(cons)]; + + if (!TX_CMP_VALID(txcmp, raw_cons)) { + udelay(5); + continue; + } + + /* The valid test of the entry must be done first before + * reading any further. + */ + dma_rmb(); + if (TX_CMP_TYPE(txcmp) == CMP_TYPE_RX_L2_CMP) { + rc = bnxt_rx_loopback(bp, bnapi, raw_cons, pkt_size); + raw_cons = NEXT_RAW_CMP(raw_cons); + raw_cons = NEXT_RAW_CMP(raw_cons); + break; + } + raw_cons = NEXT_RAW_CMP(raw_cons); + } + cpr->cp_raw_cons = raw_cons; + return rc; +} + +static int bnxt_run_loopback(struct bnxt *bp) +{ + struct bnxt_tx_ring_info *txr = &bp->tx_ring[0]; + int pkt_size, i = 0; + struct sk_buff *skb; + dma_addr_t map; + u8 *data; + int rc; + + pkt_size = min(bp->dev->mtu + ETH_HLEN, bp->rx_copy_thresh); + skb = netdev_alloc_skb(bp->dev, pkt_size); + if (!skb) + return -ENOMEM; + data = skb_put(skb, pkt_size); + eth_broadcast_addr(data); + i += ETH_ALEN; + ether_addr_copy(&data[i], bp->dev->dev_addr); + i += ETH_ALEN; + for ( ; i < pkt_size; i++) + data[i] = (u8)(i & 0xff); + + map = dma_map_single(&bp->pdev->dev, skb->data, pkt_size, + PCI_DMA_TODEVICE); + if (dma_mapping_error(&bp->pdev->dev, map)) { + dev_kfree_skb(skb); + return -EIO; + } + bnxt_xmit_xdp(bp, txr, map, pkt_size, 0); + + /* Sync BD data before updating doorbell */ + wmb(); + + writel(DB_KEY_TX | txr->tx_prod, txr->tx_doorbell); + writel(DB_KEY_TX | txr->tx_prod, txr->tx_doorbell); + rc = bnxt_poll_loopback(bp, pkt_size); + + dma_unmap_single(&bp->pdev->dev, map, pkt_size, PCI_DMA_TODEVICE); + dev_kfree_skb(skb); + return rc; +} + +static int bnxt_run_fw_tests(struct bnxt *bp, u8 test_mask, u8 *test_results) +{ + struct hwrm_selftest_exec_output *resp = bp->hwrm_cmd_resp_addr; + struct hwrm_selftest_exec_input req = {0}; + int rc; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_SELFTEST_EXEC, -1, -1); + mutex_lock(&bp->hwrm_cmd_lock); + resp->test_success = 0; + req.flags = test_mask; + rc = _hwrm_send_message(bp, &req, sizeof(req), bp->test_info->timeout); + *test_results = resp->test_success; + mutex_unlock(&bp->hwrm_cmd_lock); + return rc; +} + +#define BNXT_DRV_TESTS 3 +#define BNXT_MACLPBK_TEST_IDX (bp->num_tests - BNXT_DRV_TESTS) +#define BNXT_PHYLPBK_TEST_IDX (BNXT_MACLPBK_TEST_IDX + 1) +#define BNXT_IRQ_TEST_IDX (BNXT_MACLPBK_TEST_IDX + 2) + +static void bnxt_self_test(struct net_device *dev, struct ethtool_test *etest, + u64 *buf) +{ + struct bnxt *bp = netdev_priv(dev); + bool offline = false; + u8 test_results = 0; + u8 test_mask = 0; + int rc, i; + + if (!bp->num_tests || !BNXT_SINGLE_PF(bp)) + return; + memset(buf, 0, sizeof(u64) * bp->num_tests); + if (!netif_running(dev)) { + etest->flags |= ETH_TEST_FL_FAILED; + return; + } + + if (etest->flags & ETH_TEST_FL_OFFLINE) { + if (bp->pf.active_vfs) { + etest->flags |= ETH_TEST_FL_FAILED; + netdev_warn(dev, "Offline tests cannot be run with active VFs\n"); + return; + } + offline = true; + } + + for (i = 0; i < bp->num_tests - BNXT_DRV_TESTS; i++) { + u8 bit_val = 1 << i; + + if (!(bp->test_info->offline_mask & bit_val)) + test_mask |= bit_val; + else if (offline) + test_mask |= bit_val; + } + if (!offline) { + bnxt_run_fw_tests(bp, test_mask, &test_results); + } else { + rc = bnxt_close_nic(bp, false, false); + if (rc) + return; + bnxt_run_fw_tests(bp, test_mask, &test_results); + + buf[BNXT_MACLPBK_TEST_IDX] = 1; + bnxt_hwrm_mac_loopback(bp, true); + msleep(250); + rc = bnxt_half_open_nic(bp); + if (rc) { + bnxt_hwrm_mac_loopback(bp, false); + etest->flags |= ETH_TEST_FL_FAILED; + return; + } + if (bnxt_run_loopback(bp)) + etest->flags |= ETH_TEST_FL_FAILED; + else + buf[BNXT_MACLPBK_TEST_IDX] = 0; + + bnxt_hwrm_mac_loopback(bp, false); + bnxt_hwrm_phy_loopback(bp, true); + msleep(1000); + if (bnxt_run_loopback(bp)) { + buf[BNXT_PHYLPBK_TEST_IDX] = 1; + etest->flags |= ETH_TEST_FL_FAILED; + } + bnxt_hwrm_phy_loopback(bp, false); + bnxt_half_close_nic(bp); + bnxt_open_nic(bp, false, true); + } + if (bnxt_test_irq(bp)) { + buf[BNXT_IRQ_TEST_IDX] = 1; + etest->flags |= ETH_TEST_FL_FAILED; + } + for (i = 0; i < bp->num_tests - BNXT_DRV_TESTS; i++) { + u8 bit_val = 1 << i; + + if ((test_mask & bit_val) && !(test_results & bit_val)) { + buf[i] = 1; + etest->flags |= ETH_TEST_FL_FAILED; + } + } +} + +#if defined(ETHTOOL_GET_TS_INFO) && defined(HAVE_IEEE1588_SUPPORT) +static int bnxt_get_ts_info(struct net_device *dev, + struct ethtool_ts_info *info) +{ + struct bnxt *bp = netdev_priv(dev); + struct bnxt_ptp_cfg *ptp; + + ptp = bp->ptp_cfg; + info->so_timestamping = SOF_TIMESTAMPING_TX_SOFTWARE | + SOF_TIMESTAMPING_RX_SOFTWARE | + SOF_TIMESTAMPING_SOFTWARE; + + info->phc_index = -1; + if (!ptp) + return 0; + + info->so_timestamping |= SOF_TIMESTAMPING_TX_HARDWARE | + SOF_TIMESTAMPING_RX_HARDWARE | + SOF_TIMESTAMPING_RAW_HARDWARE; + if (ptp->ptp_clock) + info->phc_index = ptp_clock_index(ptp->ptp_clock); + + info->tx_types = (1 << HWTSTAMP_TX_OFF) | (1 << HWTSTAMP_TX_ON); + + info->rx_filters = (1 << HWTSTAMP_FILTER_NONE) | + (1 << HWTSTAMP_FILTER_PTP_V2_L2_EVENT) | + (1 << HWTSTAMP_FILTER_PTP_V2_L4_EVENT); + return 0; +} +#endif + +void bnxt_ethtool_init(struct bnxt *bp) +{ + struct hwrm_selftest_qlist_output *resp = bp->hwrm_cmd_resp_addr; + struct hwrm_selftest_qlist_input req = {0}; + struct bnxt_test_info *test_info; + int i, rc; + + if (bp->hwrm_spec_code < 0x10704 || !BNXT_SINGLE_PF(bp)) + return; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_SELFTEST_QLIST, -1, -1); + mutex_lock(&bp->hwrm_cmd_lock); + rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + if (rc) + goto ethtool_init_exit; + + test_info = kzalloc(sizeof(*bp->test_info), GFP_KERNEL); + if (!test_info) + goto ethtool_init_exit; + + bp->test_info = test_info; + bp->num_tests = resp->num_tests + BNXT_DRV_TESTS; + if (bp->num_tests > BNXT_MAX_TEST) + bp->num_tests = BNXT_MAX_TEST; + + test_info->offline_mask = resp->offline_tests; + test_info->timeout = le16_to_cpu(resp->test_timeout); + if (!test_info->timeout) + test_info->timeout = HWRM_CMD_TIMEOUT; + for (i = 0; i < bp->num_tests; i++) { + char *str = test_info->string[i]; + char *fw_str = resp->test0_name + i * 32; + + if (i == BNXT_MACLPBK_TEST_IDX) { + strcpy(str, "Mac loopback test (offline)"); + } else if (i == BNXT_PHYLPBK_TEST_IDX) { + strcpy(str, "Phy loopback test (offline)"); + } else if (i == BNXT_IRQ_TEST_IDX) { + strcpy(str, "Interrupt_test (offline)"); + } else { + strlcpy(str, fw_str, ETH_GSTRING_LEN); + strncat(str, " test", ETH_GSTRING_LEN - strlen(str)); + if (test_info->offline_mask & (1 << i)) + strncat(str, " (offline)", + ETH_GSTRING_LEN - strlen(str)); + else + strncat(str, " (online)", + ETH_GSTRING_LEN - strlen(str)); + } + } + +ethtool_init_exit: + mutex_unlock(&bp->hwrm_cmd_lock); +} + +void bnxt_ethtool_free(struct bnxt *bp) +{ + kfree(bp->test_info); + bp->test_info = NULL; +} + +const struct ethtool_ops bnxt_ethtool_ops = { +#ifdef HAVE_ETHTOOL_GLINKSETTINGS_25G + .get_link_ksettings = bnxt_get_link_ksettings, + .set_link_ksettings = bnxt_set_link_ksettings, +#else + .get_settings = bnxt_get_settings, + .set_settings = bnxt_set_settings, +#endif + .get_pauseparam = bnxt_get_pauseparam, + .set_pauseparam = bnxt_set_pauseparam, + .get_drvinfo = bnxt_get_drvinfo, + .get_wol = bnxt_get_wol, + .set_wol = bnxt_set_wol, + .get_coalesce = bnxt_get_coalesce, + .set_coalesce = bnxt_set_coalesce, + .get_msglevel = bnxt_get_msglevel, + .set_msglevel = bnxt_set_msglevel, + .get_sset_count = bnxt_get_sset_count, + .get_strings = bnxt_get_strings, + .get_ethtool_stats = bnxt_get_ethtool_stats, + .set_ringparam = bnxt_set_ringparam, + .get_ringparam = bnxt_get_ringparam, +#if defined(ETHTOOL_GCHANNELS) && !defined(GET_ETHTOOL_OP_EXT) + .get_channels = bnxt_get_channels, + .set_channels = bnxt_set_channels, +#endif +#ifdef HAVE_RXNFC + .get_rxnfc = bnxt_get_rxnfc, + .set_rxnfc = bnxt_set_rxnfc, +#endif +#if defined(HAVE_RXFH_INDIR_SIZE) && !defined(GET_ETHTOOL_OP_EXT) + .get_rxfh_indir_size = bnxt_get_rxfh_indir_size, +#endif +#if defined(HAVE_GET_RXFH_KEY_SIZE) && !defined(GET_ETHTOOL_OP_EXT) + .get_rxfh_key_size = bnxt_get_rxfh_key_size, + .get_rxfh = bnxt_get_rxfh, +#endif +#ifdef CONFIG_BNXT_BPO_FLASHDEV + .flash_device = bnxt_flash_device, + .get_eeprom_len = bnxt_get_eeprom_len, + .get_eeprom = bnxt_get_eeprom, + .set_eeprom = bnxt_set_eeprom, +#endif + .get_link = bnxt_get_link, +#if defined(ETHTOOL_GEEE) && !defined(GET_ETHTOOL_OP_EXT) + .get_eee = bnxt_get_eee, + .set_eee = bnxt_set_eee, +#endif +#if defined(ETHTOOL_GMODULEEEPROM) && !defined(GET_ETHTOOL_OP_EXT) + .get_module_info = bnxt_get_module_info, + .get_module_eeprom = bnxt_get_module_eeprom, +#endif + .nway_reset = bnxt_nway_reset, +#if defined(HAVE_SET_PHYS_ID) && !defined(GET_ETHTOOL_OP_EXT) + .set_phys_id = bnxt_set_phys_id, +#endif + .self_test = bnxt_self_test, +#if defined(ETHTOOL_GET_TS_INFO) && defined(HAVE_IEEE1588_SUPPORT) + .get_ts_info = bnxt_get_ts_info, +#endif +}; only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/bnxt/bnxt_ethtool.h +++ linux-raspi2-4.4.0/ubuntu/bnxt/bnxt_ethtool.h @@ -0,0 +1,45 @@ +/* Broadcom NetXtreme-C/E network driver. + * + * Copyright (c) 2014-2016 Broadcom Corporation + * Copyright (c) 2016-2017 Broadcom Limited + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation. + */ + +#ifndef BNXT_ETHTOOL_H +#define BNXT_ETHTOOL_H + +struct bnxt_led_cfg { + u8 led_id; + u8 led_state; + u8 led_color; + u8 unused; + __le16 led_blink_on; + __le16 led_blink_off; + u8 led_group_id; + u8 rsvd; +}; + +#define BNXT_LED_DFLT_ENA \ + (PORT_LED_CFG_REQ_ENABLES_LED0_ID | \ + PORT_LED_CFG_REQ_ENABLES_LED0_STATE | \ + PORT_LED_CFG_REQ_ENABLES_LED0_BLINK_ON | \ + PORT_LED_CFG_REQ_ENABLES_LED0_BLINK_OFF | \ + PORT_LED_CFG_REQ_ENABLES_LED0_GROUP_ID) + +#define BNXT_LED_DFLT_ENA_SHIFT 6 + +#define BNXT_LED_DFLT_ENABLES(x) \ + cpu_to_le32(BNXT_LED_DFLT_ENA << (BNXT_LED_DFLT_ENA_SHIFT * (x))) + +extern const struct ethtool_ops bnxt_ethtool_ops; + +u32 _bnxt_fw_to_ethtool_adv_spds(u16, u8); +u32 bnxt_fw_to_ethtool_speed(u16); +u16 bnxt_get_fw_auto_link_speeds(u32); +void bnxt_ethtool_init(struct bnxt *bp); +void bnxt_ethtool_free(struct bnxt *bp); + +#endif only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/bnxt/bnxt_fw_hdr.h +++ linux-raspi2-4.4.0/ubuntu/bnxt/bnxt_fw_hdr.h @@ -0,0 +1,120 @@ +/* Broadcom NetXtreme-C/E network driver. + * + * Copyright (c) 2014-2016 Broadcom Corporation + * Copyright (c) 2016-2017 Broadcom Limited + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation. + */ + +#ifndef __BNXT_FW_HDR_H__ +#define __BNXT_FW_HDR_H__ + +#define BNXT_FIRMWARE_BIN_SIGNATURE 0x1a4d4342 /* "BCM"+0x1a */ +#define BNXT_UCODE_TRAILER_SIGNATURE 0x726c7254 /* "Trlr" */ + +enum SUPPORTED_FAMILY { + DEVICE_5702_3_4_FAMILY, /* 0 - Denali, Vinson, K2 */ + DEVICE_5705_FAMILY, /* 1 - Bachelor */ + DEVICE_SHASTA_FAMILY, /* 2 - 5751 */ + DEVICE_5706_FAMILY, /* 3 - Teton */ + DEVICE_5714_FAMILY, /* 4 - Hamilton */ + DEVICE_STANFORD_FAMILY, /* 5 - 5755 */ + DEVICE_STANFORD_ME_FAMILY, /* 6 - 5756 */ + DEVICE_SOLEDAD_FAMILY, /* 7 - 5761[E] */ + DEVICE_CILAI_FAMILY, /* 8 - 57780/60/90/91 */ + DEVICE_ASPEN_FAMILY, /* 9 - 57781/85/61/65/91/95 */ + DEVICE_ASPEN_PLUS_FAMILY, /* 10 - 57786 */ + DEVICE_LOGAN_FAMILY, /* 11 - Any device in the Logan family + */ + DEVICE_LOGAN_5762, /* 12 - Logan Enterprise (aka Columbia) + */ + DEVICE_LOGAN_57767, /* 13 - Logan Client */ + DEVICE_LOGAN_57787, /* 14 - Logan Consumer */ + DEVICE_LOGAN_5725, /* 15 - Logan Server (TruManage-enabled) + */ + DEVICE_SAWTOOTH_FAMILY, /* 16 - 5717/18 */ + DEVICE_COTOPAXI_FAMILY, /* 17 - 5719 */ + DEVICE_SNAGGLETOOTH_FAMILY, /* 18 - 5720 */ + DEVICE_CUMULUS_FAMILY, /* 19 - Cumulus/Whitney */ + MAX_DEVICE_FAMILY +}; + +enum SUPPORTED_CODE { + CODE_ASF1, /* 0 - ASF VERSION 1.03 */ + CODE_ASF2, /* 1 - ASF VERSION 2.00 */ + CODE_PASSTHRU, /* 2 - PassThru */ + CODE_PT_SEC, /* 3 - PassThru with security */ + CODE_UMP, /* 4 - UMP */ + CODE_BOOT, /* 5 - Bootcode */ + CODE_DASH, /* 6 - TruManage (DASH + ASF + PMCI) + * Management firmwares + */ + CODE_MCTP_PASSTHRU, /* 7 - NCSI / MCTP Passt-hrough firmware */ + CODE_PM_OFFLOAD, /* 8 - Power-Management Proxy Offload firmwares + */ + CODE_MDNS_SD_OFFLOAD, /* 9 - Multicast DNS Service Discovery Proxys + * Offload firmware + */ + CODE_DISC_OFFLOAD, /* 10 - Discovery Offload firmware */ + CODE_MUSTANG, /* 11 - I2C Error reporting APE firmwares + * + */ + CODE_ARP_BATCH, /* 12 - ARP Batch firmware */ + CODE_SMASH, /* 13 - TruManage (SMASH + DCMI/IPMI + PMCI) + * Management firmware + */ + CODE_APE_DIAG, /* 14 - APE Test Diag firmware */ + CODE_APE_PATCH, /* 15 - APE Patch firmware */ + CODE_TANG_PATCH, /* 16 - TANG Patch firmware */ + CODE_KONG_FW, /* 17 - KONG firmware */ + CODE_KONG_PATCH, /* 18 - KONG Patch firmware */ + CODE_BONO_FW, /* 19 - BONO firmware */ + CODE_BONO_PATCH, /* 20 - BONO Patch firmware */ + CODE_CHIMP_PATCH, /* 21 - ChiMP Patch firmware */ + + MAX_CODE_TYPE, +}; + +enum SUPPORTED_MEDIA { + MEDIA_COPPER, /* 0 */ + MEDIA_FIBER, /* 1 */ + MEDIA_NONE, /* 2 */ + MEDIA_COPPER_FIBER, /* 3 */ + MAX_MEDIA_TYPE, +}; + +struct bnxt_fw_header { + __le32 signature; /* constains the constant value of + * BNXT_FIRMWARE_BIN_SIGNATURE + */ + u8 flags; /* reserved for ChiMP use */ + u8 code_type; /* enum SUPPORTED_CODE */ + u8 device; /* enum SUPPORTED_FAMILY */ + u8 media; /* enum SUPPORTED_MEDIA */ + u8 version[16]; /* the null terminated version string to + * indicate the version of the + * file, this will be copied from the binary + * file version string + */ + u8 build; + u8 revision; + u8 minor_ver; + u8 major_ver; +}; + +/* Microcode and pre-boot software/firmware trailer: */ +struct bnxt_ucode_trailer { + u8 rsa_sig[256]; + __le16 flags; + u8 version_format; + u8 version_length; + u8 version[16]; + __le16 dir_type; + __le16 trailer_length; + __le32 sig; /* BNXT_UCODE_TRAILER_SIGNATURE */ + __le32 chksum; /* CRC-32 */ +}; + +#endif only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/bnxt/bnxt_hsi.h +++ linux-raspi2-4.4.0/ubuntu/bnxt/bnxt_hsi.h @@ -0,0 +1,8155 @@ +/* Broadcom NetXtreme-C/E network driver. + * + * Copyright (c) 2014-2016 Broadcom Corporation + * Copyright (c) 2016-2017 Broadcom Limited + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation. + */ + +#ifndef BNXT_HSI_H +#define BNXT_HSI_H + +/* HSI and HWRM Specification 1.8.0 */ +#define HWRM_VERSION_MAJOR 1 +#define HWRM_VERSION_MINOR 8 +#define HWRM_VERSION_UPDATE 0 + +#define HWRM_VERSION_RSVD 0 /* non-zero means beta version */ + +#define HWRM_VERSION_STR "1.8.0.0" +/* + * Following is the signature for HWRM message field that indicates not + * applicable (All F's). Need to cast it the size of the field if needed. + */ +#define HWRM_NA_SIGNATURE ((__le32)(-1)) +#define HWRM_MAX_REQ_LEN (128) /* hwrm_func_buf_rgtr */ +#define HWRM_MAX_RESP_LEN (248) /* hwrm_selftest_qlist */ +#define HW_HASH_INDEX_SIZE 0x80 /* 7 bit indirection table index. */ +#define HW_HASH_KEY_SIZE 40 +#define HWRM_RESP_VALID_KEY 1 /* valid key for HWRM response */ + +/* Statistics Ejection Buffer Completion Record (16 bytes) */ +struct eject_cmpl { + __le16 type; + #define EJECT_CMPL_TYPE_MASK 0x3fUL + #define EJECT_CMPL_TYPE_SFT 0 + #define EJECT_CMPL_TYPE_STAT_EJECT 0x1aUL + __le16 len; + __le32 opaque; + __le32 v; + #define EJECT_CMPL_V 0x1UL + __le32 unused_2; +}; + +/* HWRM Completion Record (16 bytes) */ +struct hwrm_cmpl { + __le16 type; + #define CMPL_TYPE_MASK 0x3fUL + #define CMPL_TYPE_SFT 0 + #define CMPL_TYPE_HWRM_DONE 0x20UL + __le16 sequence_id; + __le32 unused_1; + __le32 v; + #define CMPL_V 0x1UL + __le32 unused_3; +}; + +/* HWRM Forwarded Request (16 bytes) */ +struct hwrm_fwd_req_cmpl { + __le16 req_len_type; + #define FWD_REQ_CMPL_TYPE_MASK 0x3fUL + #define FWD_REQ_CMPL_TYPE_SFT 0 + #define FWD_REQ_CMPL_TYPE_HWRM_FWD_REQ 0x22UL + #define FWD_REQ_CMPL_REQ_LEN_MASK 0xffc0UL + #define FWD_REQ_CMPL_REQ_LEN_SFT 6 + __le16 source_id; + __le32 unused_0; + __le32 req_buf_addr_v[2]; + #define FWD_REQ_CMPL_V 0x1UL + #define FWD_REQ_CMPL_REQ_BUF_ADDR_MASK 0xfffffffeUL + #define FWD_REQ_CMPL_REQ_BUF_ADDR_SFT 1 +}; + +/* HWRM Forwarded Response (16 bytes) */ +struct hwrm_fwd_resp_cmpl { + __le16 type; + #define FWD_RESP_CMPL_TYPE_MASK 0x3fUL + #define FWD_RESP_CMPL_TYPE_SFT 0 + #define FWD_RESP_CMPL_TYPE_HWRM_FWD_RESP 0x24UL + __le16 source_id; + __le16 resp_len; + __le16 unused_1; + __le32 resp_buf_addr_v[2]; + #define FWD_RESP_CMPL_V 0x1UL + #define FWD_RESP_CMPL_RESP_BUF_ADDR_MASK 0xfffffffeUL + #define FWD_RESP_CMPL_RESP_BUF_ADDR_SFT 1 +}; + +/* HWRM Asynchronous Event Completion Record (16 bytes) */ +struct hwrm_async_event_cmpl { + __le16 type; + #define ASYNC_EVENT_CMPL_TYPE_MASK 0x3fUL + #define ASYNC_EVENT_CMPL_TYPE_SFT 0 + #define ASYNC_EVENT_CMPL_TYPE_HWRM_ASYNC_EVENT 0x2eUL + __le16 event_id; + #define ASYNC_EVENT_CMPL_EVENT_ID_LINK_STATUS_CHANGE 0x0UL + #define ASYNC_EVENT_CMPL_EVENT_ID_LINK_MTU_CHANGE 0x1UL + #define ASYNC_EVENT_CMPL_EVENT_ID_LINK_SPEED_CHANGE 0x2UL + #define ASYNC_EVENT_CMPL_EVENT_ID_DCB_CONFIG_CHANGE 0x3UL + #define ASYNC_EVENT_CMPL_EVENT_ID_PORT_CONN_NOT_ALLOWED 0x4UL + #define ASYNC_EVENT_CMPL_EVENT_ID_LINK_SPEED_CFG_NOT_ALLOWED 0x5UL + #define ASYNC_EVENT_CMPL_EVENT_ID_LINK_SPEED_CFG_CHANGE 0x6UL + #define ASYNC_EVENT_CMPL_EVENT_ID_PORT_PHY_CFG_CHANGE 0x7UL + #define ASYNC_EVENT_CMPL_EVENT_ID_FUNC_DRVR_UNLOAD 0x10UL + #define ASYNC_EVENT_CMPL_EVENT_ID_FUNC_DRVR_LOAD 0x11UL + #define ASYNC_EVENT_CMPL_EVENT_ID_FUNC_FLR_PROC_CMPLT 0x12UL + #define ASYNC_EVENT_CMPL_EVENT_ID_PF_DRVR_UNLOAD 0x20UL + #define ASYNC_EVENT_CMPL_EVENT_ID_PF_DRVR_LOAD 0x21UL + #define ASYNC_EVENT_CMPL_EVENT_ID_VF_FLR 0x30UL + #define ASYNC_EVENT_CMPL_EVENT_ID_VF_MAC_ADDR_CHANGE 0x31UL + #define ASYNC_EVENT_CMPL_EVENT_ID_PF_VF_COMM_STATUS_CHANGE 0x32UL + #define ASYNC_EVENT_CMPL_EVENT_ID_VF_CFG_CHANGE 0x33UL + #define ASYNC_EVENT_CMPL_EVENT_ID_HWRM_ERROR 0xffUL + __le32 event_data2; + u8 opaque_v; + #define ASYNC_EVENT_CMPL_V 0x1UL + #define ASYNC_EVENT_CMPL_OPAQUE_MASK 0xfeUL + #define ASYNC_EVENT_CMPL_OPAQUE_SFT 1 + u8 timestamp_lo; + __le16 timestamp_hi; + __le32 event_data1; +}; + +/* HWRM Asynchronous Event Completion Record for link status change (16 bytes) */ +struct hwrm_async_event_cmpl_link_status_change { + __le16 type; + #define ASYNC_EVENT_CMPL_LINK_STATUS_CHANGE_TYPE_MASK 0x3fUL + #define ASYNC_EVENT_CMPL_LINK_STATUS_CHANGE_TYPE_SFT 0 + #define ASYNC_EVENT_CMPL_LINK_STATUS_CHANGE_TYPE_HWRM_ASYNC_EVENT 0x2eUL + __le16 event_id; + #define ASYNC_EVENT_CMPL_LINK_STATUS_CHANGE_EVENT_ID_LINK_STATUS_CHANGE 0x0UL + __le32 event_data2; + u8 opaque_v; + #define ASYNC_EVENT_CMPL_LINK_STATUS_CHANGE_V 0x1UL + #define ASYNC_EVENT_CMPL_LINK_STATUS_CHANGE_OPAQUE_MASK 0xfeUL + #define ASYNC_EVENT_CMPL_LINK_STATUS_CHANGE_OPAQUE_SFT 1 + u8 timestamp_lo; + __le16 timestamp_hi; + __le32 event_data1; + #define ASYNC_EVENT_CMPL_LINK_STATUS_CHANGE_EVENT_DATA1_LINK_CHANGE 0x1UL + #define ASYNC_EVENT_CMPL_LINK_STATUS_CHANGE_EVENT_DATA1_LINK_CHANGE_DOWN (0x0UL << 0) + #define ASYNC_EVENT_CMPL_LINK_STATUS_CHANGE_EVENT_DATA1_LINK_CHANGE_UP (0x1UL << 0) + #define ASYNC_EVENT_CMPL_LINK_STATUS_CHANGE_EVENT_DATA1_LINK_CHANGE_LAST ASYNC_EVENT_CMPL_LINK_STATUS_CHANGE_EVENT_DATA1_LINK_CHANGE_UP + #define ASYNC_EVENT_CMPL_LINK_STATUS_CHANGE_EVENT_DATA1_PORT_MASK 0xeUL + #define ASYNC_EVENT_CMPL_LINK_STATUS_CHANGE_EVENT_DATA1_PORT_SFT 1 + #define ASYNC_EVENT_CMPL_LINK_STATUS_CHANGE_EVENT_DATA1_PORT_ID_MASK 0xffff0UL + #define ASYNC_EVENT_CMPL_LINK_STATUS_CHANGE_EVENT_DATA1_PORT_ID_SFT 4 +}; + +/* HWRM Asynchronous Event Completion Record for link MTU change (16 bytes) */ +struct hwrm_async_event_cmpl_link_mtu_change { + __le16 type; + #define ASYNC_EVENT_CMPL_LINK_MTU_CHANGE_TYPE_MASK 0x3fUL + #define ASYNC_EVENT_CMPL_LINK_MTU_CHANGE_TYPE_SFT 0 + #define ASYNC_EVENT_CMPL_LINK_MTU_CHANGE_TYPE_HWRM_ASYNC_EVENT 0x2eUL + __le16 event_id; + #define ASYNC_EVENT_CMPL_LINK_MTU_CHANGE_EVENT_ID_LINK_MTU_CHANGE 0x1UL + __le32 event_data2; + u8 opaque_v; + #define ASYNC_EVENT_CMPL_LINK_MTU_CHANGE_V 0x1UL + #define ASYNC_EVENT_CMPL_LINK_MTU_CHANGE_OPAQUE_MASK 0xfeUL + #define ASYNC_EVENT_CMPL_LINK_MTU_CHANGE_OPAQUE_SFT 1 + u8 timestamp_lo; + __le16 timestamp_hi; + __le32 event_data1; + #define ASYNC_EVENT_CMPL_LINK_MTU_CHANGE_EVENT_DATA1_NEW_MTU_MASK 0xffffUL + #define ASYNC_EVENT_CMPL_LINK_MTU_CHANGE_EVENT_DATA1_NEW_MTU_SFT 0 +}; + +/* HWRM Asynchronous Event Completion Record for link speed change (16 bytes) */ +struct hwrm_async_event_cmpl_link_speed_change { + __le16 type; + #define ASYNC_EVENT_CMPL_LINK_SPEED_CHANGE_TYPE_MASK 0x3fUL + #define ASYNC_EVENT_CMPL_LINK_SPEED_CHANGE_TYPE_SFT 0 + #define ASYNC_EVENT_CMPL_LINK_SPEED_CHANGE_TYPE_HWRM_ASYNC_EVENT 0x2eUL + __le16 event_id; + #define ASYNC_EVENT_CMPL_LINK_SPEED_CHANGE_EVENT_ID_LINK_SPEED_CHANGE 0x2UL + __le32 event_data2; + u8 opaque_v; + #define ASYNC_EVENT_CMPL_LINK_SPEED_CHANGE_V 0x1UL + #define ASYNC_EVENT_CMPL_LINK_SPEED_CHANGE_OPAQUE_MASK 0xfeUL + #define ASYNC_EVENT_CMPL_LINK_SPEED_CHANGE_OPAQUE_SFT 1 + u8 timestamp_lo; + __le16 timestamp_hi; + __le32 event_data1; + #define ASYNC_EVENT_CMPL_LINK_SPEED_CHANGE_EVENT_DATA1_FORCE 0x1UL + #define ASYNC_EVENT_CMPL_LINK_SPEED_CHANGE_EVENT_DATA1_NEW_LINK_SPEED_100MBPS_MASK 0xfffeUL + #define ASYNC_EVENT_CMPL_LINK_SPEED_CHANGE_EVENT_DATA1_NEW_LINK_SPEED_100MBPS_SFT 1 + #define ASYNC_EVENT_CMPL_LINK_SPEED_CHANGE_EVENT_DATA1_NEW_LINK_SPEED_100MBPS_100MB (0x1UL << 1) + #define ASYNC_EVENT_CMPL_LINK_SPEED_CHANGE_EVENT_DATA1_NEW_LINK_SPEED_100MBPS_1GB (0xaUL << 1) + #define ASYNC_EVENT_CMPL_LINK_SPEED_CHANGE_EVENT_DATA1_NEW_LINK_SPEED_100MBPS_2GB (0x14UL << 1) + #define ASYNC_EVENT_CMPL_LINK_SPEED_CHANGE_EVENT_DATA1_NEW_LINK_SPEED_100MBPS_2_5GB (0x19UL << 1) + #define ASYNC_EVENT_CMPL_LINK_SPEED_CHANGE_EVENT_DATA1_NEW_LINK_SPEED_100MBPS_10GB (0x64UL << 1) + #define ASYNC_EVENT_CMPL_LINK_SPEED_CHANGE_EVENT_DATA1_NEW_LINK_SPEED_100MBPS_20GB (0xc8UL << 1) + #define ASYNC_EVENT_CMPL_LINK_SPEED_CHANGE_EVENT_DATA1_NEW_LINK_SPEED_100MBPS_25GB (0xfaUL << 1) + #define ASYNC_EVENT_CMPL_LINK_SPEED_CHANGE_EVENT_DATA1_NEW_LINK_SPEED_100MBPS_40GB (0x190UL << 1) + #define ASYNC_EVENT_CMPL_LINK_SPEED_CHANGE_EVENT_DATA1_NEW_LINK_SPEED_100MBPS_50GB (0x1f4UL << 1) + #define ASYNC_EVENT_CMPL_LINK_SPEED_CHANGE_EVENT_DATA1_NEW_LINK_SPEED_100MBPS_100GB (0x3e8UL << 1) + #define ASYNC_EVENT_CMPL_LINK_SPEED_CHANGE_EVENT_DATA1_NEW_LINK_SPEED_100MBPS_LAST ASYNC_EVENT_CMPL_LINK_SPEED_CHANGE_EVENT_DATA1_NEW_LINK_SPEED_100MBPS_100GB + #define ASYNC_EVENT_CMPL_LINK_SPEED_CHANGE_EVENT_DATA1_PORT_ID_MASK 0xffff0000UL + #define ASYNC_EVENT_CMPL_LINK_SPEED_CHANGE_EVENT_DATA1_PORT_ID_SFT 16 +}; + +/* HWRM Asynchronous Event Completion Record for DCB Config change (16 bytes) */ +struct hwrm_async_event_cmpl_dcb_config_change { + __le16 type; + #define ASYNC_EVENT_CMPL_DCB_CONFIG_CHANGE_TYPE_MASK 0x3fUL + #define ASYNC_EVENT_CMPL_DCB_CONFIG_CHANGE_TYPE_SFT 0 + #define ASYNC_EVENT_CMPL_DCB_CONFIG_CHANGE_TYPE_HWRM_ASYNC_EVENT 0x2eUL + __le16 event_id; + #define ASYNC_EVENT_CMPL_DCB_CONFIG_CHANGE_EVENT_ID_DCB_CONFIG_CHANGE 0x3UL + __le32 event_data2; + #define ASYNC_EVENT_CMPL_DCB_CONFIG_CHANGE_EVENT_DATA2_ETS 0x1UL + #define ASYNC_EVENT_CMPL_DCB_CONFIG_CHANGE_EVENT_DATA2_PFC 0x2UL + #define ASYNC_EVENT_CMPL_DCB_CONFIG_CHANGE_EVENT_DATA2_APP 0x4UL + u8 opaque_v; + #define ASYNC_EVENT_CMPL_DCB_CONFIG_CHANGE_V 0x1UL + #define ASYNC_EVENT_CMPL_DCB_CONFIG_CHANGE_OPAQUE_MASK 0xfeUL + #define ASYNC_EVENT_CMPL_DCB_CONFIG_CHANGE_OPAQUE_SFT 1 + u8 timestamp_lo; + __le16 timestamp_hi; + __le32 event_data1; + #define ASYNC_EVENT_CMPL_DCB_CONFIG_CHANGE_EVENT_DATA1_PORT_ID_MASK 0xffffUL + #define ASYNC_EVENT_CMPL_DCB_CONFIG_CHANGE_EVENT_DATA1_PORT_ID_SFT 0 + #define ASYNC_EVENT_CMPL_DCB_CONFIG_CHANGE_EVENT_DATA1_RECOMMEND_ROCE_PRIORITY_MASK 0xff0000UL + #define ASYNC_EVENT_CMPL_DCB_CONFIG_CHANGE_EVENT_DATA1_RECOMMEND_ROCE_PRIORITY_SFT 16 + #define ASYNC_EVENT_CMPL_DCB_CONFIG_CHANGE_EVENT_DATA1_RECOMMEND_ROCE_PRIORITY_NONE (0xffUL << 16) + #define ASYNC_EVENT_CMPL_DCB_CONFIG_CHANGE_EVENT_DATA1_RECOMMEND_ROCE_PRIORITY_LAST ASYNC_EVENT_CMPL_DCB_CONFIG_CHANGE_EVENT_DATA1_RECOMMEND_ROCE_PRIORITY_NONE + #define ASYNC_EVENT_CMPL_DCB_CONFIG_CHANGE_EVENT_DATA1_RECOMMEND_L2_PRIORITY_MASK 0xff000000UL + #define ASYNC_EVENT_CMPL_DCB_CONFIG_CHANGE_EVENT_DATA1_RECOMMEND_L2_PRIORITY_SFT 24 + #define ASYNC_EVENT_CMPL_DCB_CONFIG_CHANGE_EVENT_DATA1_RECOMMEND_L2_PRIORITY_NONE (0xffUL << 24) + #define ASYNC_EVENT_CMPL_DCB_CONFIG_CHANGE_EVENT_DATA1_RECOMMEND_L2_PRIORITY_LAST ASYNC_EVENT_CMPL_DCB_CONFIG_CHANGE_EVENT_DATA1_RECOMMEND_L2_PRIORITY_NONE +}; + +/* HWRM Asynchronous Event Completion Record for port connection not allowed (16 bytes) */ +struct hwrm_async_event_cmpl_port_conn_not_allowed { + __le16 type; + #define ASYNC_EVENT_CMPL_PORT_CONN_NOT_ALLOWED_TYPE_MASK 0x3fUL + #define ASYNC_EVENT_CMPL_PORT_CONN_NOT_ALLOWED_TYPE_SFT 0 + #define ASYNC_EVENT_CMPL_PORT_CONN_NOT_ALLOWED_TYPE_HWRM_ASYNC_EVENT 0x2eUL + __le16 event_id; + #define ASYNC_EVENT_CMPL_PORT_CONN_NOT_ALLOWED_EVENT_ID_PORT_CONN_NOT_ALLOWED 0x4UL + __le32 event_data2; + u8 opaque_v; + #define ASYNC_EVENT_CMPL_PORT_CONN_NOT_ALLOWED_V 0x1UL + #define ASYNC_EVENT_CMPL_PORT_CONN_NOT_ALLOWED_OPAQUE_MASK 0xfeUL + #define ASYNC_EVENT_CMPL_PORT_CONN_NOT_ALLOWED_OPAQUE_SFT 1 + u8 timestamp_lo; + __le16 timestamp_hi; + __le32 event_data1; + #define ASYNC_EVENT_CMPL_PORT_CONN_NOT_ALLOWED_EVENT_DATA1_PORT_ID_MASK 0xffffUL + #define ASYNC_EVENT_CMPL_PORT_CONN_NOT_ALLOWED_EVENT_DATA1_PORT_ID_SFT 0 + #define ASYNC_EVENT_CMPL_PORT_CONN_NOT_ALLOWED_EVENT_DATA1_ENFORCEMENT_POLICY_MASK 0xff0000UL + #define ASYNC_EVENT_CMPL_PORT_CONN_NOT_ALLOWED_EVENT_DATA1_ENFORCEMENT_POLICY_SFT 16 + #define ASYNC_EVENT_CMPL_PORT_CONN_NOT_ALLOWED_EVENT_DATA1_ENFORCEMENT_POLICY_NONE (0x0UL << 16) + #define ASYNC_EVENT_CMPL_PORT_CONN_NOT_ALLOWED_EVENT_DATA1_ENFORCEMENT_POLICY_DISABLETX (0x1UL << 16) + #define ASYNC_EVENT_CMPL_PORT_CONN_NOT_ALLOWED_EVENT_DATA1_ENFORCEMENT_POLICY_WARNINGMSG (0x2UL << 16) + #define ASYNC_EVENT_CMPL_PORT_CONN_NOT_ALLOWED_EVENT_DATA1_ENFORCEMENT_POLICY_PWRDOWN (0x3UL << 16) + #define ASYNC_EVENT_CMPL_PORT_CONN_NOT_ALLOWED_EVENT_DATA1_ENFORCEMENT_POLICY_LAST ASYNC_EVENT_CMPL_PORT_CONN_NOT_ALLOWED_EVENT_DATA1_ENFORCEMENT_POLICY_PWRDOWN +}; + +/* HWRM Asynchronous Event Completion Record for link speed config not allowed (16 bytes) */ +struct hwrm_async_event_cmpl_link_speed_cfg_not_allowed { + __le16 type; + #define ASYNC_EVENT_CMPL_LINK_SPEED_CFG_NOT_ALLOWED_TYPE_MASK 0x3fUL + #define ASYNC_EVENT_CMPL_LINK_SPEED_CFG_NOT_ALLOWED_TYPE_SFT 0 + #define ASYNC_EVENT_CMPL_LINK_SPEED_CFG_NOT_ALLOWED_TYPE_HWRM_ASYNC_EVENT 0x2eUL + __le16 event_id; + #define ASYNC_EVENT_CMPL_LINK_SPEED_CFG_NOT_ALLOWED_EVENT_ID_LINK_SPEED_CFG_NOT_ALLOWED 0x5UL + __le32 event_data2; + u8 opaque_v; + #define ASYNC_EVENT_CMPL_LINK_SPEED_CFG_NOT_ALLOWED_V 0x1UL + #define ASYNC_EVENT_CMPL_LINK_SPEED_CFG_NOT_ALLOWED_OPAQUE_MASK 0xfeUL + #define ASYNC_EVENT_CMPL_LINK_SPEED_CFG_NOT_ALLOWED_OPAQUE_SFT 1 + u8 timestamp_lo; + __le16 timestamp_hi; + __le32 event_data1; + #define ASYNC_EVENT_CMPL_LINK_SPEED_CFG_NOT_ALLOWED_EVENT_DATA1_PORT_ID_MASK 0xffffUL + #define ASYNC_EVENT_CMPL_LINK_SPEED_CFG_NOT_ALLOWED_EVENT_DATA1_PORT_ID_SFT 0 +}; + +/* HWRM Asynchronous Event Completion Record for link speed configuration change (16 bytes) */ +struct hwrm_async_event_cmpl_link_speed_cfg_change { + __le16 type; + #define ASYNC_EVENT_CMPL_LINK_SPEED_CFG_CHANGE_TYPE_MASK 0x3fUL + #define ASYNC_EVENT_CMPL_LINK_SPEED_CFG_CHANGE_TYPE_SFT 0 + #define ASYNC_EVENT_CMPL_LINK_SPEED_CFG_CHANGE_TYPE_HWRM_ASYNC_EVENT 0x2eUL + __le16 event_id; + #define ASYNC_EVENT_CMPL_LINK_SPEED_CFG_CHANGE_EVENT_ID_LINK_SPEED_CFG_CHANGE 0x6UL + __le32 event_data2; + u8 opaque_v; + #define ASYNC_EVENT_CMPL_LINK_SPEED_CFG_CHANGE_V 0x1UL + #define ASYNC_EVENT_CMPL_LINK_SPEED_CFG_CHANGE_OPAQUE_MASK 0xfeUL + #define ASYNC_EVENT_CMPL_LINK_SPEED_CFG_CHANGE_OPAQUE_SFT 1 + u8 timestamp_lo; + __le16 timestamp_hi; + __le32 event_data1; + #define ASYNC_EVENT_CMPL_LINK_SPEED_CFG_CHANGE_EVENT_DATA1_PORT_ID_MASK 0xffffUL + #define ASYNC_EVENT_CMPL_LINK_SPEED_CFG_CHANGE_EVENT_DATA1_PORT_ID_SFT 0 + #define ASYNC_EVENT_CMPL_LINK_SPEED_CFG_CHANGE_EVENT_DATA1_SUPPORTED_LINK_SPEEDS_CHANGE 0x10000UL + #define ASYNC_EVENT_CMPL_LINK_SPEED_CFG_CHANGE_EVENT_DATA1_ILLEGAL_LINK_SPEED_CFG 0x20000UL +}; + +/* HWRM Asynchronous Event Completion Record for port PHY configuration change (16 bytes) */ +struct hwrm_async_event_cmpl_port_phy_cfg_change { + __le16 type; + #define ASYNC_EVENT_CMPL_PORT_PHY_CFG_CHANGE_TYPE_MASK 0x3fUL + #define ASYNC_EVENT_CMPL_PORT_PHY_CFG_CHANGE_TYPE_SFT 0 + #define ASYNC_EVENT_CMPL_PORT_PHY_CFG_CHANGE_TYPE_HWRM_ASYNC_EVENT 0x2eUL + __le16 event_id; + #define ASYNC_EVENT_CMPL_PORT_PHY_CFG_CHANGE_EVENT_ID_PORT_PHY_CFG_CHANGE 0x7UL + __le32 event_data2; + u8 opaque_v; + #define ASYNC_EVENT_CMPL_PORT_PHY_CFG_CHANGE_V 0x1UL + #define ASYNC_EVENT_CMPL_PORT_PHY_CFG_CHANGE_OPAQUE_MASK 0xfeUL + #define ASYNC_EVENT_CMPL_PORT_PHY_CFG_CHANGE_OPAQUE_SFT 1 + u8 timestamp_lo; + __le16 timestamp_hi; + __le32 event_data1; + #define ASYNC_EVENT_CMPL_PORT_PHY_CFG_CHANGE_EVENT_DATA1_PORT_ID_MASK 0xffffUL + #define ASYNC_EVENT_CMPL_PORT_PHY_CFG_CHANGE_EVENT_DATA1_PORT_ID_SFT 0 + #define ASYNC_EVENT_CMPL_PORT_PHY_CFG_CHANGE_EVENT_DATA1_FEC_CFG_CHANGE 0x10000UL + #define ASYNC_EVENT_CMPL_PORT_PHY_CFG_CHANGE_EVENT_DATA1_EEE_CFG_CHANGE 0x20000UL + #define ASYNC_EVENT_CMPL_PORT_PHY_CFG_CHANGE_EVENT_DATA1_PAUSE_CFG_CHANGE 0x40000UL +}; + +/* HWRM Asynchronous Event Completion Record for Function Driver Unload (16 bytes) */ +struct hwrm_async_event_cmpl_func_drvr_unload { + __le16 type; + #define ASYNC_EVENT_CMPL_FUNC_DRVR_UNLOAD_TYPE_MASK 0x3fUL + #define ASYNC_EVENT_CMPL_FUNC_DRVR_UNLOAD_TYPE_SFT 0 + #define ASYNC_EVENT_CMPL_FUNC_DRVR_UNLOAD_TYPE_HWRM_ASYNC_EVENT 0x2eUL + __le16 event_id; + #define ASYNC_EVENT_CMPL_FUNC_DRVR_UNLOAD_EVENT_ID_FUNC_DRVR_UNLOAD 0x10UL + __le32 event_data2; + u8 opaque_v; + #define ASYNC_EVENT_CMPL_FUNC_DRVR_UNLOAD_V 0x1UL + #define ASYNC_EVENT_CMPL_FUNC_DRVR_UNLOAD_OPAQUE_MASK 0xfeUL + #define ASYNC_EVENT_CMPL_FUNC_DRVR_UNLOAD_OPAQUE_SFT 1 + u8 timestamp_lo; + __le16 timestamp_hi; + __le32 event_data1; + #define ASYNC_EVENT_CMPL_FUNC_DRVR_UNLOAD_EVENT_DATA1_FUNC_ID_MASK 0xffffUL + #define ASYNC_EVENT_CMPL_FUNC_DRVR_UNLOAD_EVENT_DATA1_FUNC_ID_SFT 0 +}; + +/* HWRM Asynchronous Event Completion Record for Function Driver load (16 bytes) */ +struct hwrm_async_event_cmpl_func_drvr_load { + __le16 type; + #define ASYNC_EVENT_CMPL_FUNC_DRVR_LOAD_TYPE_MASK 0x3fUL + #define ASYNC_EVENT_CMPL_FUNC_DRVR_LOAD_TYPE_SFT 0 + #define ASYNC_EVENT_CMPL_FUNC_DRVR_LOAD_TYPE_HWRM_ASYNC_EVENT 0x2eUL + __le16 event_id; + #define ASYNC_EVENT_CMPL_FUNC_DRVR_LOAD_EVENT_ID_FUNC_DRVR_LOAD 0x11UL + __le32 event_data2; + u8 opaque_v; + #define ASYNC_EVENT_CMPL_FUNC_DRVR_LOAD_V 0x1UL + #define ASYNC_EVENT_CMPL_FUNC_DRVR_LOAD_OPAQUE_MASK 0xfeUL + #define ASYNC_EVENT_CMPL_FUNC_DRVR_LOAD_OPAQUE_SFT 1 + u8 timestamp_lo; + __le16 timestamp_hi; + __le32 event_data1; + #define ASYNC_EVENT_CMPL_FUNC_DRVR_LOAD_EVENT_DATA1_FUNC_ID_MASK 0xffffUL + #define ASYNC_EVENT_CMPL_FUNC_DRVR_LOAD_EVENT_DATA1_FUNC_ID_SFT 0 +}; + +/* HWRM Asynchronous Event Completion Record to indicate completion of FLR related processing (16 bytes) */ +struct hwrm_async_event_cmpl_func_flr_proc_cmplt { + __le16 type; + #define ASYNC_EVENT_CMPL_FUNC_FLR_PROC_CMPLT_TYPE_MASK 0x3fUL + #define ASYNC_EVENT_CMPL_FUNC_FLR_PROC_CMPLT_TYPE_SFT 0 + #define ASYNC_EVENT_CMPL_FUNC_FLR_PROC_CMPLT_TYPE_HWRM_ASYNC_EVENT 0x2eUL + __le16 event_id; + #define ASYNC_EVENT_CMPL_FUNC_FLR_PROC_CMPLT_EVENT_ID_FUNC_FLR_PROC_CMPLT 0x12UL + __le32 event_data2; + u8 opaque_v; + #define ASYNC_EVENT_CMPL_FUNC_FLR_PROC_CMPLT_V 0x1UL + #define ASYNC_EVENT_CMPL_FUNC_FLR_PROC_CMPLT_OPAQUE_MASK 0xfeUL + #define ASYNC_EVENT_CMPL_FUNC_FLR_PROC_CMPLT_OPAQUE_SFT 1 + u8 timestamp_lo; + __le16 timestamp_hi; + __le32 event_data1; + #define ASYNC_EVENT_CMPL_FUNC_FLR_PROC_CMPLT_EVENT_DATA1_FUNC_ID_MASK 0xffffUL + #define ASYNC_EVENT_CMPL_FUNC_FLR_PROC_CMPLT_EVENT_DATA1_FUNC_ID_SFT 0 +}; + +/* HWRM Asynchronous Event Completion Record for PF Driver Unload (16 bytes) */ +struct hwrm_async_event_cmpl_pf_drvr_unload { + __le16 type; + #define ASYNC_EVENT_CMPL_PF_DRVR_UNLOAD_TYPE_MASK 0x3fUL + #define ASYNC_EVENT_CMPL_PF_DRVR_UNLOAD_TYPE_SFT 0 + #define ASYNC_EVENT_CMPL_PF_DRVR_UNLOAD_TYPE_HWRM_ASYNC_EVENT 0x2eUL + __le16 event_id; + #define ASYNC_EVENT_CMPL_PF_DRVR_UNLOAD_EVENT_ID_PF_DRVR_UNLOAD 0x20UL + __le32 event_data2; + u8 opaque_v; + #define ASYNC_EVENT_CMPL_PF_DRVR_UNLOAD_V 0x1UL + #define ASYNC_EVENT_CMPL_PF_DRVR_UNLOAD_OPAQUE_MASK 0xfeUL + #define ASYNC_EVENT_CMPL_PF_DRVR_UNLOAD_OPAQUE_SFT 1 + u8 timestamp_lo; + __le16 timestamp_hi; + __le32 event_data1; + #define ASYNC_EVENT_CMPL_PF_DRVR_UNLOAD_EVENT_DATA1_FUNC_ID_MASK 0xffffUL + #define ASYNC_EVENT_CMPL_PF_DRVR_UNLOAD_EVENT_DATA1_FUNC_ID_SFT 0 + #define ASYNC_EVENT_CMPL_PF_DRVR_UNLOAD_EVENT_DATA1_PORT_MASK 0x70000UL + #define ASYNC_EVENT_CMPL_PF_DRVR_UNLOAD_EVENT_DATA1_PORT_SFT 16 +}; + +/* HWRM Asynchronous Event Completion Record for PF Driver load (16 bytes) */ +struct hwrm_async_event_cmpl_pf_drvr_load { + __le16 type; + #define ASYNC_EVENT_CMPL_PF_DRVR_LOAD_TYPE_MASK 0x3fUL + #define ASYNC_EVENT_CMPL_PF_DRVR_LOAD_TYPE_SFT 0 + #define ASYNC_EVENT_CMPL_PF_DRVR_LOAD_TYPE_HWRM_ASYNC_EVENT 0x2eUL + __le16 event_id; + #define ASYNC_EVENT_CMPL_PF_DRVR_LOAD_EVENT_ID_PF_DRVR_LOAD 0x21UL + __le32 event_data2; + u8 opaque_v; + #define ASYNC_EVENT_CMPL_PF_DRVR_LOAD_V 0x1UL + #define ASYNC_EVENT_CMPL_PF_DRVR_LOAD_OPAQUE_MASK 0xfeUL + #define ASYNC_EVENT_CMPL_PF_DRVR_LOAD_OPAQUE_SFT 1 + u8 timestamp_lo; + __le16 timestamp_hi; + __le32 event_data1; + #define ASYNC_EVENT_CMPL_PF_DRVR_LOAD_EVENT_DATA1_FUNC_ID_MASK 0xffffUL + #define ASYNC_EVENT_CMPL_PF_DRVR_LOAD_EVENT_DATA1_FUNC_ID_SFT 0 + #define ASYNC_EVENT_CMPL_PF_DRVR_LOAD_EVENT_DATA1_PORT_MASK 0x70000UL + #define ASYNC_EVENT_CMPL_PF_DRVR_LOAD_EVENT_DATA1_PORT_SFT 16 +}; + +/* HWRM Asynchronous Event Completion Record for VF FLR (16 bytes) */ +struct hwrm_async_event_cmpl_vf_flr { + __le16 type; + #define ASYNC_EVENT_CMPL_VF_FLR_TYPE_MASK 0x3fUL + #define ASYNC_EVENT_CMPL_VF_FLR_TYPE_SFT 0 + #define ASYNC_EVENT_CMPL_VF_FLR_TYPE_HWRM_ASYNC_EVENT 0x2eUL + __le16 event_id; + #define ASYNC_EVENT_CMPL_VF_FLR_EVENT_ID_VF_FLR 0x30UL + __le32 event_data2; + u8 opaque_v; + #define ASYNC_EVENT_CMPL_VF_FLR_V 0x1UL + #define ASYNC_EVENT_CMPL_VF_FLR_OPAQUE_MASK 0xfeUL + #define ASYNC_EVENT_CMPL_VF_FLR_OPAQUE_SFT 1 + u8 timestamp_lo; + __le16 timestamp_hi; + __le32 event_data1; + #define ASYNC_EVENT_CMPL_VF_FLR_EVENT_DATA1_VF_ID_MASK 0xffffUL + #define ASYNC_EVENT_CMPL_VF_FLR_EVENT_DATA1_VF_ID_SFT 0 +}; + +/* HWRM Asynchronous Event Completion Record for VF MAC Addr change (16 bytes) */ +struct hwrm_async_event_cmpl_vf_mac_addr_change { + __le16 type; + #define ASYNC_EVENT_CMPL_VF_MAC_ADDR_CHANGE_TYPE_MASK 0x3fUL + #define ASYNC_EVENT_CMPL_VF_MAC_ADDR_CHANGE_TYPE_SFT 0 + #define ASYNC_EVENT_CMPL_VF_MAC_ADDR_CHANGE_TYPE_HWRM_ASYNC_EVENT 0x2eUL + __le16 event_id; + #define ASYNC_EVENT_CMPL_VF_MAC_ADDR_CHANGE_EVENT_ID_VF_MAC_ADDR_CHANGE 0x31UL + __le32 event_data2; + u8 opaque_v; + #define ASYNC_EVENT_CMPL_VF_MAC_ADDR_CHANGE_V 0x1UL + #define ASYNC_EVENT_CMPL_VF_MAC_ADDR_CHANGE_OPAQUE_MASK 0xfeUL + #define ASYNC_EVENT_CMPL_VF_MAC_ADDR_CHANGE_OPAQUE_SFT 1 + u8 timestamp_lo; + __le16 timestamp_hi; + __le32 event_data1; + #define ASYNC_EVENT_CMPL_VF_MAC_ADDR_CHANGE_EVENT_DATA1_VF_ID_MASK 0xffffUL + #define ASYNC_EVENT_CMPL_VF_MAC_ADDR_CHANGE_EVENT_DATA1_VF_ID_SFT 0 +}; + +/* HWRM Asynchronous Event Completion Record for PF-VF communication status change (16 bytes) */ +struct hwrm_async_event_cmpl_pf_vf_comm_status_change { + __le16 type; + #define ASYNC_EVENT_CMPL_PF_VF_COMM_STATUS_CHANGE_TYPE_MASK 0x3fUL + #define ASYNC_EVENT_CMPL_PF_VF_COMM_STATUS_CHANGE_TYPE_SFT 0 + #define ASYNC_EVENT_CMPL_PF_VF_COMM_STATUS_CHANGE_TYPE_HWRM_ASYNC_EVENT 0x2eUL + __le16 event_id; + #define ASYNC_EVENT_CMPL_PF_VF_COMM_STATUS_CHANGE_EVENT_ID_PF_VF_COMM_STATUS_CHANGE 0x32UL + __le32 event_data2; + u8 opaque_v; + #define ASYNC_EVENT_CMPL_PF_VF_COMM_STATUS_CHANGE_V 0x1UL + #define ASYNC_EVENT_CMPL_PF_VF_COMM_STATUS_CHANGE_OPAQUE_MASK 0xfeUL + #define ASYNC_EVENT_CMPL_PF_VF_COMM_STATUS_CHANGE_OPAQUE_SFT 1 + u8 timestamp_lo; + __le16 timestamp_hi; + __le32 event_data1; + #define ASYNC_EVENT_CMPL_PF_VF_COMM_STATUS_CHANGE_EVENT_DATA1_COMM_ESTABLISHED 0x1UL +}; + +/* HWRM Asynchronous Event Completion Record for VF configuration change (16 bytes) */ +struct hwrm_async_event_cmpl_vf_cfg_change { + __le16 type; + #define ASYNC_EVENT_CMPL_VF_CFG_CHANGE_TYPE_MASK 0x3fUL + #define ASYNC_EVENT_CMPL_VF_CFG_CHANGE_TYPE_SFT 0 + #define ASYNC_EVENT_CMPL_VF_CFG_CHANGE_TYPE_HWRM_ASYNC_EVENT 0x2eUL + __le16 event_id; + #define ASYNC_EVENT_CMPL_VF_CFG_CHANGE_EVENT_ID_VF_CFG_CHANGE 0x33UL + __le32 event_data2; + u8 opaque_v; + #define ASYNC_EVENT_CMPL_VF_CFG_CHANGE_V 0x1UL + #define ASYNC_EVENT_CMPL_VF_CFG_CHANGE_OPAQUE_MASK 0xfeUL + #define ASYNC_EVENT_CMPL_VF_CFG_CHANGE_OPAQUE_SFT 1 + u8 timestamp_lo; + __le16 timestamp_hi; + __le32 event_data1; + #define ASYNC_EVENT_CMPL_VF_CFG_CHANGE_EVENT_DATA1_MTU_CHANGE 0x1UL + #define ASYNC_EVENT_CMPL_VF_CFG_CHANGE_EVENT_DATA1_MRU_CHANGE 0x2UL + #define ASYNC_EVENT_CMPL_VF_CFG_CHANGE_EVENT_DATA1_DFLT_MAC_ADDR_CHANGE 0x4UL + #define ASYNC_EVENT_CMPL_VF_CFG_CHANGE_EVENT_DATA1_DFLT_VLAN_CHANGE 0x8UL +}; + +/* HWRM Asynchronous Event Completion Record for HWRM Error (16 bytes) */ +struct hwrm_async_event_cmpl_hwrm_error { + __le16 type; + #define ASYNC_EVENT_CMPL_HWRM_ERROR_TYPE_MASK 0x3fUL + #define ASYNC_EVENT_CMPL_HWRM_ERROR_TYPE_SFT 0 + #define ASYNC_EVENT_CMPL_HWRM_ERROR_TYPE_HWRM_ASYNC_EVENT 0x2eUL + __le16 event_id; + #define ASYNC_EVENT_CMPL_HWRM_ERROR_EVENT_ID_HWRM_ERROR 0xffUL + __le32 event_data2; + #define ASYNC_EVENT_CMPL_HWRM_ERROR_EVENT_DATA2_SEVERITY_MASK 0xffUL + #define ASYNC_EVENT_CMPL_HWRM_ERROR_EVENT_DATA2_SEVERITY_SFT 0 + #define ASYNC_EVENT_CMPL_HWRM_ERROR_EVENT_DATA2_SEVERITY_WARNING 0x0UL + #define ASYNC_EVENT_CMPL_HWRM_ERROR_EVENT_DATA2_SEVERITY_NONFATAL 0x1UL + #define ASYNC_EVENT_CMPL_HWRM_ERROR_EVENT_DATA2_SEVERITY_FATAL 0x2UL + #define ASYNC_EVENT_CMPL_HWRM_ERROR_EVENT_DATA2_SEVERITY_LAST ASYNC_EVENT_CMPL_HWRM_ERROR_EVENT_DATA2_SEVERITY_FATAL + u8 opaque_v; + #define ASYNC_EVENT_CMPL_HWRM_ERROR_V 0x1UL + #define ASYNC_EVENT_CMPL_HWRM_ERROR_OPAQUE_MASK 0xfeUL + #define ASYNC_EVENT_CMPL_HWRM_ERROR_OPAQUE_SFT 1 + u8 timestamp_lo; + __le16 timestamp_hi; + __le32 event_data1; + #define ASYNC_EVENT_CMPL_HWRM_ERROR_EVENT_DATA1_TIMESTAMP 0x1UL +}; + +/* hwrm_ver_get */ +/* Input (24 bytes) */ +struct hwrm_ver_get_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + u8 hwrm_intf_maj; + u8 hwrm_intf_min; + u8 hwrm_intf_upd; + u8 unused_0[5]; +}; + +/* Output (128 bytes) */ +struct hwrm_ver_get_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + u8 hwrm_intf_maj; + u8 hwrm_intf_min; + u8 hwrm_intf_upd; + u8 hwrm_intf_rsvd; + u8 hwrm_fw_maj; + u8 hwrm_fw_min; + u8 hwrm_fw_bld; + u8 hwrm_fw_rsvd; + u8 mgmt_fw_maj; + u8 mgmt_fw_min; + u8 mgmt_fw_bld; + u8 mgmt_fw_rsvd; + u8 netctrl_fw_maj; + u8 netctrl_fw_min; + u8 netctrl_fw_bld; + u8 netctrl_fw_rsvd; + __le32 dev_caps_cfg; + #define VER_GET_RESP_DEV_CAPS_CFG_SECURE_FW_UPD_SUPPORTED 0x1UL + #define VER_GET_RESP_DEV_CAPS_CFG_FW_DCBX_AGENT_SUPPORTED 0x2UL + #define VER_GET_RESP_DEV_CAPS_CFG_SHORT_CMD_SUPPORTED 0x4UL + #define VER_GET_RESP_DEV_CAPS_CFG_SHORT_CMD_REQUIRED 0x8UL + u8 roce_fw_maj; + u8 roce_fw_min; + u8 roce_fw_bld; + u8 roce_fw_rsvd; + char hwrm_fw_name[16]; + char mgmt_fw_name[16]; + char netctrl_fw_name[16]; + __le32 reserved2[4]; + char roce_fw_name[16]; + __le16 chip_num; + u8 chip_rev; + u8 chip_metal; + u8 chip_bond_id; + u8 chip_platform_type; + #define VER_GET_RESP_CHIP_PLATFORM_TYPE_ASIC 0x0UL + #define VER_GET_RESP_CHIP_PLATFORM_TYPE_FPGA 0x1UL + #define VER_GET_RESP_CHIP_PLATFORM_TYPE_PALLADIUM 0x2UL + __le16 max_req_win_len; + __le16 max_resp_len; + __le16 def_req_timeout; + u8 init_pending; + #define VER_GET_RESP_INIT_PENDING_DEV_NOT_RDY 0x1UL + u8 unused_0; + u8 unused_1; + u8 valid; +}; + +/* hwrm_func_reset */ +/* Input (24 bytes) */ +struct hwrm_func_reset_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 enables; + #define FUNC_RESET_REQ_ENABLES_VF_ID_VALID 0x1UL + __le16 vf_id; + u8 func_reset_level; + #define FUNC_RESET_REQ_FUNC_RESET_LEVEL_RESETALL 0x0UL + #define FUNC_RESET_REQ_FUNC_RESET_LEVEL_RESETME 0x1UL + #define FUNC_RESET_REQ_FUNC_RESET_LEVEL_RESETCHILDREN 0x2UL + #define FUNC_RESET_REQ_FUNC_RESET_LEVEL_RESETVF 0x3UL + u8 unused_0; +}; + +/* Output (16 bytes) */ +struct hwrm_func_reset_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_func_getfid */ +/* Input (24 bytes) */ +struct hwrm_func_getfid_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 enables; + #define FUNC_GETFID_REQ_ENABLES_PCI_ID 0x1UL + __le16 pci_id; + __le16 unused_0; +}; + +/* Output (16 bytes) */ +struct hwrm_func_getfid_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le16 fid; + u8 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 unused_4; + u8 valid; +}; + +/* hwrm_func_vf_alloc */ +/* Input (24 bytes) */ +struct hwrm_func_vf_alloc_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 enables; + #define FUNC_VF_ALLOC_REQ_ENABLES_FIRST_VF_ID 0x1UL + __le16 first_vf_id; + __le16 num_vfs; +}; + +/* Output (16 bytes) */ +struct hwrm_func_vf_alloc_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le16 first_vf_id; + u8 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 unused_4; + u8 valid; +}; + +/* hwrm_func_vf_free */ +/* Input (24 bytes) */ +struct hwrm_func_vf_free_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 enables; + #define FUNC_VF_FREE_REQ_ENABLES_FIRST_VF_ID 0x1UL + __le16 first_vf_id; + __le16 num_vfs; +}; + +/* Output (16 bytes) */ +struct hwrm_func_vf_free_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_func_vf_cfg */ +/* Input (32 bytes) */ +struct hwrm_func_vf_cfg_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 enables; + #define FUNC_VF_CFG_REQ_ENABLES_MTU 0x1UL + #define FUNC_VF_CFG_REQ_ENABLES_GUEST_VLAN 0x2UL + #define FUNC_VF_CFG_REQ_ENABLES_ASYNC_EVENT_CR 0x4UL + #define FUNC_VF_CFG_REQ_ENABLES_DFLT_MAC_ADDR 0x8UL + __le16 mtu; + __le16 guest_vlan; + __le16 async_event_cr; + u8 dflt_mac_addr[6]; +}; + +/* Output (16 bytes) */ +struct hwrm_func_vf_cfg_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_func_qcaps */ +/* Input (24 bytes) */ +struct hwrm_func_qcaps_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le16 fid; + __le16 unused_0[3]; +}; + +/* Output (80 bytes) */ +struct hwrm_func_qcaps_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le16 fid; + __le16 port_id; + __le32 flags; + #define FUNC_QCAPS_RESP_FLAGS_PUSH_MODE_SUPPORTED 0x1UL + #define FUNC_QCAPS_RESP_FLAGS_GLOBAL_MSIX_AUTOMASKING 0x2UL + #define FUNC_QCAPS_RESP_FLAGS_PTP_SUPPORTED 0x4UL + #define FUNC_QCAPS_RESP_FLAGS_ROCE_V1_SUPPORTED 0x8UL + #define FUNC_QCAPS_RESP_FLAGS_ROCE_V2_SUPPORTED 0x10UL + #define FUNC_QCAPS_RESP_FLAGS_WOL_MAGICPKT_SUPPORTED 0x20UL + #define FUNC_QCAPS_RESP_FLAGS_WOL_BMP_SUPPORTED 0x40UL + #define FUNC_QCAPS_RESP_FLAGS_TX_RING_RL_SUPPORTED 0x80UL + #define FUNC_QCAPS_RESP_FLAGS_TX_BW_CFG_SUPPORTED 0x100UL + #define FUNC_QCAPS_RESP_FLAGS_VF_TX_RING_RL_SUPPORTED 0x200UL + #define FUNC_QCAPS_RESP_FLAGS_VF_BW_CFG_SUPPORTED 0x400UL + #define FUNC_QCAPS_RESP_FLAGS_STD_TX_RING_MODE_SUPPORTED 0x800UL + u8 mac_address[6]; + __le16 max_rsscos_ctx; + __le16 max_cmpl_rings; + __le16 max_tx_rings; + __le16 max_rx_rings; + __le16 max_l2_ctxs; + __le16 max_vnics; + __le16 first_vf_id; + __le16 max_vfs; + __le16 max_stat_ctx; + __le32 max_encap_records; + __le32 max_decap_records; + __le32 max_tx_em_flows; + __le32 max_tx_wm_flows; + __le32 max_rx_em_flows; + __le32 max_rx_wm_flows; + __le32 max_mcast_filters; + __le32 max_flow_id; + __le32 max_hw_ring_grps; + __le16 max_sp_tx_rings; + u8 unused_0; + u8 valid; +}; + +/* hwrm_func_qcfg */ +/* Input (24 bytes) */ +struct hwrm_func_qcfg_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le16 fid; + __le16 unused_0[3]; +}; + +/* Output (72 bytes) */ +struct hwrm_func_qcfg_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le16 fid; + __le16 port_id; + __le16 vlan; + __le16 flags; + #define FUNC_QCFG_RESP_FLAGS_OOB_WOL_MAGICPKT_ENABLED 0x1UL + #define FUNC_QCFG_RESP_FLAGS_OOB_WOL_BMP_ENABLED 0x2UL + #define FUNC_QCFG_RESP_FLAGS_FW_DCBX_AGENT_ENABLED 0x4UL + #define FUNC_QCFG_RESP_FLAGS_STD_TX_RING_MODE_ENABLED 0x8UL + #define FUNC_QCFG_RESP_FLAGS_FW_LLDP_AGENT_ENABLED 0x10UL + #define FUNC_QCFG_RESP_FLAGS_MULTI_HOST 0x20UL + u8 mac_address[6]; + __le16 pci_id; + __le16 alloc_rsscos_ctx; + __le16 alloc_cmpl_rings; + __le16 alloc_tx_rings; + __le16 alloc_rx_rings; + __le16 alloc_l2_ctx; + __le16 alloc_vnics; + __le16 mtu; + __le16 mru; + __le16 stat_ctx_id; + u8 port_partition_type; + #define FUNC_QCFG_RESP_PORT_PARTITION_TYPE_SPF 0x0UL + #define FUNC_QCFG_RESP_PORT_PARTITION_TYPE_MPFS 0x1UL + #define FUNC_QCFG_RESP_PORT_PARTITION_TYPE_NPAR1_0 0x2UL + #define FUNC_QCFG_RESP_PORT_PARTITION_TYPE_NPAR1_5 0x3UL + #define FUNC_QCFG_RESP_PORT_PARTITION_TYPE_NPAR2_0 0x4UL + #define FUNC_QCFG_RESP_PORT_PARTITION_TYPE_UNKNOWN 0xffUL + u8 port_pf_cnt; + #define FUNC_QCFG_RESP_PORT_PF_CNT_UNAVAIL 0x0UL + __le16 dflt_vnic_id; + u8 unused_0; + u8 unused_1; + __le32 min_bw; + #define FUNC_QCFG_RESP_MIN_BW_BW_VALUE_MASK 0xfffffffUL + #define FUNC_QCFG_RESP_MIN_BW_BW_VALUE_SFT 0 + #define FUNC_QCFG_RESP_MIN_BW_SCALE 0x10000000UL + #define FUNC_QCFG_RESP_MIN_BW_SCALE_BITS (0x0UL << 28) + #define FUNC_QCFG_RESP_MIN_BW_SCALE_BYTES (0x1UL << 28) + #define FUNC_QCFG_RESP_MIN_BW_SCALE_LAST FUNC_QCFG_RESP_MIN_BW_SCALE_BYTES + #define FUNC_QCFG_RESP_MIN_BW_BW_VALUE_UNIT_MASK 0xe0000000UL + #define FUNC_QCFG_RESP_MIN_BW_BW_VALUE_UNIT_SFT 29 + #define FUNC_QCFG_RESP_MIN_BW_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define FUNC_QCFG_RESP_MIN_BW_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define FUNC_QCFG_RESP_MIN_BW_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define FUNC_QCFG_RESP_MIN_BW_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define FUNC_QCFG_RESP_MIN_BW_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define FUNC_QCFG_RESP_MIN_BW_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define FUNC_QCFG_RESP_MIN_BW_BW_VALUE_UNIT_LAST FUNC_QCFG_RESP_MIN_BW_BW_VALUE_UNIT_INVALID + __le32 max_bw; + #define FUNC_QCFG_RESP_MAX_BW_BW_VALUE_MASK 0xfffffffUL + #define FUNC_QCFG_RESP_MAX_BW_BW_VALUE_SFT 0 + #define FUNC_QCFG_RESP_MAX_BW_SCALE 0x10000000UL + #define FUNC_QCFG_RESP_MAX_BW_SCALE_BITS (0x0UL << 28) + #define FUNC_QCFG_RESP_MAX_BW_SCALE_BYTES (0x1UL << 28) + #define FUNC_QCFG_RESP_MAX_BW_SCALE_LAST FUNC_QCFG_RESP_MAX_BW_SCALE_BYTES + #define FUNC_QCFG_RESP_MAX_BW_BW_VALUE_UNIT_MASK 0xe0000000UL + #define FUNC_QCFG_RESP_MAX_BW_BW_VALUE_UNIT_SFT 29 + #define FUNC_QCFG_RESP_MAX_BW_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define FUNC_QCFG_RESP_MAX_BW_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define FUNC_QCFG_RESP_MAX_BW_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define FUNC_QCFG_RESP_MAX_BW_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define FUNC_QCFG_RESP_MAX_BW_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define FUNC_QCFG_RESP_MAX_BW_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define FUNC_QCFG_RESP_MAX_BW_BW_VALUE_UNIT_LAST FUNC_QCFG_RESP_MAX_BW_BW_VALUE_UNIT_INVALID + u8 evb_mode; + #define FUNC_QCFG_RESP_EVB_MODE_NO_EVB 0x0UL + #define FUNC_QCFG_RESP_EVB_MODE_VEB 0x1UL + #define FUNC_QCFG_RESP_EVB_MODE_VEPA 0x2UL + u8 unused_2; + __le16 alloc_vfs; + __le32 alloc_mcast_filters; + __le32 alloc_hw_ring_grps; + __le16 alloc_sp_tx_rings; + u8 unused_3; + u8 valid; +}; + +/* hwrm_func_vlan_qcfg */ +/* Input (24 bytes) */ +struct hwrm_func_vlan_qcfg_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le16 fid; + __le16 unused_0[3]; +}; + +/* Output (40 bytes) */ +struct hwrm_func_vlan_qcfg_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; + __le16 stag_vid; + u8 stag_pcp; + u8 unused_4; + __be16 stag_tpid; + __le16 ctag_vid; + u8 ctag_pcp; + u8 unused_5; + __be16 ctag_tpid; + __le32 rsvd2; + __le32 rsvd3; + __le32 unused_6; +}; + +/* hwrm_func_vlan_cfg */ +/* Input (48 bytes) */ +struct hwrm_func_vlan_cfg_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le16 fid; + u8 unused_0; + u8 unused_1; + __le32 enables; + #define FUNC_VLAN_CFG_REQ_ENABLES_STAG_VID 0x1UL + #define FUNC_VLAN_CFG_REQ_ENABLES_CTAG_VID 0x2UL + #define FUNC_VLAN_CFG_REQ_ENABLES_STAG_PCP 0x4UL + #define FUNC_VLAN_CFG_REQ_ENABLES_CTAG_PCP 0x8UL + #define FUNC_VLAN_CFG_REQ_ENABLES_STAG_TPID 0x10UL + #define FUNC_VLAN_CFG_REQ_ENABLES_CTAG_TPID 0x20UL + __le16 stag_vid; + u8 stag_pcp; + u8 unused_2; + __be16 stag_tpid; + __le16 ctag_vid; + u8 ctag_pcp; + u8 unused_3; + __be16 ctag_tpid; + __le32 rsvd1; + __le32 rsvd2; + __le32 unused_4; +}; + +/* Output (16 bytes) */ +struct hwrm_func_vlan_cfg_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_func_cfg */ +/* Input (88 bytes) */ +struct hwrm_func_cfg_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le16 fid; + u8 unused_0; + u8 unused_1; + __le32 flags; + #define FUNC_CFG_REQ_FLAGS_SRC_MAC_ADDR_CHECK_DISABLE 0x1UL + #define FUNC_CFG_REQ_FLAGS_SRC_MAC_ADDR_CHECK_ENABLE 0x2UL + #define FUNC_CFG_REQ_FLAGS_RSVD_MASK 0x1fcUL + #define FUNC_CFG_REQ_FLAGS_RSVD_SFT 2 + #define FUNC_CFG_REQ_FLAGS_STD_TX_RING_MODE_ENABLE 0x200UL + #define FUNC_CFG_REQ_FLAGS_STD_TX_RING_MODE_DISABLE 0x400UL + #define FUNC_CFG_REQ_FLAGS_VIRT_MAC_PERSIST 0x800UL + #define FUNC_CFG_REQ_FLAGS_NO_AUTOCLEAR_STATISTIC 0x1000UL + __le32 enables; + #define FUNC_CFG_REQ_ENABLES_MTU 0x1UL + #define FUNC_CFG_REQ_ENABLES_MRU 0x2UL + #define FUNC_CFG_REQ_ENABLES_NUM_RSSCOS_CTXS 0x4UL + #define FUNC_CFG_REQ_ENABLES_NUM_CMPL_RINGS 0x8UL + #define FUNC_CFG_REQ_ENABLES_NUM_TX_RINGS 0x10UL + #define FUNC_CFG_REQ_ENABLES_NUM_RX_RINGS 0x20UL + #define FUNC_CFG_REQ_ENABLES_NUM_L2_CTXS 0x40UL + #define FUNC_CFG_REQ_ENABLES_NUM_VNICS 0x80UL + #define FUNC_CFG_REQ_ENABLES_NUM_STAT_CTXS 0x100UL + #define FUNC_CFG_REQ_ENABLES_DFLT_MAC_ADDR 0x200UL + #define FUNC_CFG_REQ_ENABLES_DFLT_VLAN 0x400UL + #define FUNC_CFG_REQ_ENABLES_DFLT_IP_ADDR 0x800UL + #define FUNC_CFG_REQ_ENABLES_MIN_BW 0x1000UL + #define FUNC_CFG_REQ_ENABLES_MAX_BW 0x2000UL + #define FUNC_CFG_REQ_ENABLES_ASYNC_EVENT_CR 0x4000UL + #define FUNC_CFG_REQ_ENABLES_VLAN_ANTISPOOF_MODE 0x8000UL + #define FUNC_CFG_REQ_ENABLES_ALLOWED_VLAN_PRIS 0x10000UL + #define FUNC_CFG_REQ_ENABLES_EVB_MODE 0x20000UL + #define FUNC_CFG_REQ_ENABLES_NUM_MCAST_FILTERS 0x40000UL + #define FUNC_CFG_REQ_ENABLES_NUM_HW_RING_GRPS 0x80000UL + __le16 mtu; + __le16 mru; + __le16 num_rsscos_ctxs; + __le16 num_cmpl_rings; + __le16 num_tx_rings; + __le16 num_rx_rings; + __le16 num_l2_ctxs; + __le16 num_vnics; + __le16 num_stat_ctxs; + __le16 num_hw_ring_grps; + u8 dflt_mac_addr[6]; + __le16 dflt_vlan; + __be32 dflt_ip_addr[4]; + __le32 min_bw; + #define FUNC_CFG_REQ_MIN_BW_BW_VALUE_MASK 0xfffffffUL + #define FUNC_CFG_REQ_MIN_BW_BW_VALUE_SFT 0 + #define FUNC_CFG_REQ_MIN_BW_SCALE 0x10000000UL + #define FUNC_CFG_REQ_MIN_BW_SCALE_BITS (0x0UL << 28) + #define FUNC_CFG_REQ_MIN_BW_SCALE_BYTES (0x1UL << 28) + #define FUNC_CFG_REQ_MIN_BW_SCALE_LAST FUNC_CFG_REQ_MIN_BW_SCALE_BYTES + #define FUNC_CFG_REQ_MIN_BW_BW_VALUE_UNIT_MASK 0xe0000000UL + #define FUNC_CFG_REQ_MIN_BW_BW_VALUE_UNIT_SFT 29 + #define FUNC_CFG_REQ_MIN_BW_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define FUNC_CFG_REQ_MIN_BW_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define FUNC_CFG_REQ_MIN_BW_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define FUNC_CFG_REQ_MIN_BW_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define FUNC_CFG_REQ_MIN_BW_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define FUNC_CFG_REQ_MIN_BW_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define FUNC_CFG_REQ_MIN_BW_BW_VALUE_UNIT_LAST FUNC_CFG_REQ_MIN_BW_BW_VALUE_UNIT_INVALID + __le32 max_bw; + #define FUNC_CFG_REQ_MAX_BW_BW_VALUE_MASK 0xfffffffUL + #define FUNC_CFG_REQ_MAX_BW_BW_VALUE_SFT 0 + #define FUNC_CFG_REQ_MAX_BW_SCALE 0x10000000UL + #define FUNC_CFG_REQ_MAX_BW_SCALE_BITS (0x0UL << 28) + #define FUNC_CFG_REQ_MAX_BW_SCALE_BYTES (0x1UL << 28) + #define FUNC_CFG_REQ_MAX_BW_SCALE_LAST FUNC_CFG_REQ_MAX_BW_SCALE_BYTES + #define FUNC_CFG_REQ_MAX_BW_BW_VALUE_UNIT_MASK 0xe0000000UL + #define FUNC_CFG_REQ_MAX_BW_BW_VALUE_UNIT_SFT 29 + #define FUNC_CFG_REQ_MAX_BW_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define FUNC_CFG_REQ_MAX_BW_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define FUNC_CFG_REQ_MAX_BW_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define FUNC_CFG_REQ_MAX_BW_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define FUNC_CFG_REQ_MAX_BW_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define FUNC_CFG_REQ_MAX_BW_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define FUNC_CFG_REQ_MAX_BW_BW_VALUE_UNIT_LAST FUNC_CFG_REQ_MAX_BW_BW_VALUE_UNIT_INVALID + __le16 async_event_cr; + u8 vlan_antispoof_mode; + #define FUNC_CFG_REQ_VLAN_ANTISPOOF_MODE_NOCHECK 0x0UL + #define FUNC_CFG_REQ_VLAN_ANTISPOOF_MODE_VALIDATE_VLAN 0x1UL + #define FUNC_CFG_REQ_VLAN_ANTISPOOF_MODE_INSERT_IF_VLANDNE 0x2UL + #define FUNC_CFG_REQ_VLAN_ANTISPOOF_MODE_INSERT_OR_OVERRIDE_VLAN 0x3UL + u8 allowed_vlan_pris; + u8 evb_mode; + #define FUNC_CFG_REQ_EVB_MODE_NO_EVB 0x0UL + #define FUNC_CFG_REQ_EVB_MODE_VEB 0x1UL + #define FUNC_CFG_REQ_EVB_MODE_VEPA 0x2UL + u8 unused_2; + __le16 num_mcast_filters; +}; + +/* Output (16 bytes) */ +struct hwrm_func_cfg_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_func_qstats */ +/* Input (24 bytes) */ +struct hwrm_func_qstats_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le16 fid; + __le16 unused_0[3]; +}; + +/* Output (176 bytes) */ +struct hwrm_func_qstats_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le64 tx_ucast_pkts; + __le64 tx_mcast_pkts; + __le64 tx_bcast_pkts; + __le64 tx_discard_pkts; + __le64 tx_drop_pkts; + __le64 tx_ucast_bytes; + __le64 tx_mcast_bytes; + __le64 tx_bcast_bytes; + __le64 rx_ucast_pkts; + __le64 rx_mcast_pkts; + __le64 rx_bcast_pkts; + __le64 rx_discard_pkts; + __le64 rx_drop_pkts; + __le64 rx_ucast_bytes; + __le64 rx_mcast_bytes; + __le64 rx_bcast_bytes; + __le64 rx_agg_pkts; + __le64 rx_agg_bytes; + __le64 rx_agg_events; + __le64 rx_agg_aborts; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_func_clr_stats */ +/* Input (24 bytes) */ +struct hwrm_func_clr_stats_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le16 fid; + __le16 unused_0[3]; +}; + +/* Output (16 bytes) */ +struct hwrm_func_clr_stats_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_func_vf_resc_free */ +/* Input (24 bytes) */ +struct hwrm_func_vf_resc_free_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le16 vf_id; + __le16 unused_0[3]; +}; + +/* Output (16 bytes) */ +struct hwrm_func_vf_resc_free_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_func_vf_vnic_ids_query */ +/* Input (32 bytes) */ +struct hwrm_func_vf_vnic_ids_query_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le16 vf_id; + u8 unused_0; + u8 unused_1; + __le32 max_vnic_id_cnt; + __le64 vnic_id_tbl_addr; +}; + +/* Output (16 bytes) */ +struct hwrm_func_vf_vnic_ids_query_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 vnic_id_cnt; + u8 unused_0; + u8 unused_1; + u8 unused_2; + u8 valid; +}; + +/* hwrm_func_drv_rgtr */ +/* Input (80 bytes) */ +struct hwrm_func_drv_rgtr_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 flags; + #define FUNC_DRV_RGTR_REQ_FLAGS_FWD_ALL_MODE 0x1UL + #define FUNC_DRV_RGTR_REQ_FLAGS_FWD_NONE_MODE 0x2UL + __le32 enables; + #define FUNC_DRV_RGTR_REQ_ENABLES_OS_TYPE 0x1UL + #define FUNC_DRV_RGTR_REQ_ENABLES_VER 0x2UL + #define FUNC_DRV_RGTR_REQ_ENABLES_TIMESTAMP 0x4UL + #define FUNC_DRV_RGTR_REQ_ENABLES_VF_REQ_FWD 0x8UL + #define FUNC_DRV_RGTR_REQ_ENABLES_ASYNC_EVENT_FWD 0x10UL + __le16 os_type; + #define FUNC_DRV_RGTR_REQ_OS_TYPE_UNKNOWN 0x0UL + #define FUNC_DRV_RGTR_REQ_OS_TYPE_OTHER 0x1UL + #define FUNC_DRV_RGTR_REQ_OS_TYPE_MSDOS 0xeUL + #define FUNC_DRV_RGTR_REQ_OS_TYPE_WINDOWS 0x12UL + #define FUNC_DRV_RGTR_REQ_OS_TYPE_SOLARIS 0x1dUL + #define FUNC_DRV_RGTR_REQ_OS_TYPE_LINUX 0x24UL + #define FUNC_DRV_RGTR_REQ_OS_TYPE_FREEBSD 0x2aUL + #define FUNC_DRV_RGTR_REQ_OS_TYPE_ESXI 0x68UL + #define FUNC_DRV_RGTR_REQ_OS_TYPE_WIN864 0x73UL + #define FUNC_DRV_RGTR_REQ_OS_TYPE_WIN2012R2 0x74UL + #define FUNC_DRV_RGTR_REQ_OS_TYPE_UEFI 0x8000UL + u8 ver_maj; + u8 ver_min; + u8 ver_upd; + u8 unused_0; + __le16 unused_1; + __le32 timestamp; + __le32 unused_2; + __le32 vf_req_fwd[8]; + __le32 async_event_fwd[8]; +}; + +/* Output (16 bytes) */ +struct hwrm_func_drv_rgtr_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_func_drv_unrgtr */ +/* Input (24 bytes) */ +struct hwrm_func_drv_unrgtr_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 flags; + #define FUNC_DRV_UNRGTR_REQ_FLAGS_PREPARE_FOR_SHUTDOWN 0x1UL + __le32 unused_0; +}; + +/* Output (16 bytes) */ +struct hwrm_func_drv_unrgtr_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_func_buf_rgtr */ +/* Input (128 bytes) */ +struct hwrm_func_buf_rgtr_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 enables; + #define FUNC_BUF_RGTR_REQ_ENABLES_VF_ID 0x1UL + #define FUNC_BUF_RGTR_REQ_ENABLES_ERR_BUF_ADDR 0x2UL + __le16 vf_id; + __le16 req_buf_num_pages; + __le16 req_buf_page_size; + #define FUNC_BUF_RGTR_REQ_REQ_BUF_PAGE_SIZE_16B 0x4UL + #define FUNC_BUF_RGTR_REQ_REQ_BUF_PAGE_SIZE_4K 0xcUL + #define FUNC_BUF_RGTR_REQ_REQ_BUF_PAGE_SIZE_8K 0xdUL + #define FUNC_BUF_RGTR_REQ_REQ_BUF_PAGE_SIZE_64K 0x10UL + #define FUNC_BUF_RGTR_REQ_REQ_BUF_PAGE_SIZE_2M 0x15UL + #define FUNC_BUF_RGTR_REQ_REQ_BUF_PAGE_SIZE_4M 0x16UL + #define FUNC_BUF_RGTR_REQ_REQ_BUF_PAGE_SIZE_1G 0x1eUL + __le16 req_buf_len; + __le16 resp_buf_len; + u8 unused_0; + u8 unused_1; + __le64 req_buf_page_addr0; + __le64 req_buf_page_addr1; + __le64 req_buf_page_addr2; + __le64 req_buf_page_addr3; + __le64 req_buf_page_addr4; + __le64 req_buf_page_addr5; + __le64 req_buf_page_addr6; + __le64 req_buf_page_addr7; + __le64 req_buf_page_addr8; + __le64 req_buf_page_addr9; + __le64 error_buf_addr; + __le64 resp_buf_addr; +}; + +/* Output (16 bytes) */ +struct hwrm_func_buf_rgtr_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_func_buf_unrgtr */ +/* Input (24 bytes) */ +struct hwrm_func_buf_unrgtr_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 enables; + #define FUNC_BUF_UNRGTR_REQ_ENABLES_VF_ID 0x1UL + __le16 vf_id; + __le16 unused_0; +}; + +/* Output (16 bytes) */ +struct hwrm_func_buf_unrgtr_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_func_drv_qver */ +/* Input (24 bytes) */ +struct hwrm_func_drv_qver_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 reserved; + __le16 fid; + __le16 unused_0; +}; + +/* Output (16 bytes) */ +struct hwrm_func_drv_qver_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le16 os_type; + #define FUNC_DRV_QVER_RESP_OS_TYPE_UNKNOWN 0x0UL + #define FUNC_DRV_QVER_RESP_OS_TYPE_OTHER 0x1UL + #define FUNC_DRV_QVER_RESP_OS_TYPE_MSDOS 0xeUL + #define FUNC_DRV_QVER_RESP_OS_TYPE_WINDOWS 0x12UL + #define FUNC_DRV_QVER_RESP_OS_TYPE_SOLARIS 0x1dUL + #define FUNC_DRV_QVER_RESP_OS_TYPE_LINUX 0x24UL + #define FUNC_DRV_QVER_RESP_OS_TYPE_FREEBSD 0x2aUL + #define FUNC_DRV_QVER_RESP_OS_TYPE_ESXI 0x68UL + #define FUNC_DRV_QVER_RESP_OS_TYPE_WIN864 0x73UL + #define FUNC_DRV_QVER_RESP_OS_TYPE_WIN2012R2 0x74UL + #define FUNC_DRV_QVER_RESP_OS_TYPE_UEFI 0x8000UL + u8 ver_maj; + u8 ver_min; + u8 ver_upd; + u8 unused_0; + u8 unused_1; + u8 valid; +}; + +/* hwrm_port_phy_cfg */ +/* Input (56 bytes) */ +struct hwrm_port_phy_cfg_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 flags; + #define PORT_PHY_CFG_REQ_FLAGS_RESET_PHY 0x1UL + #define PORT_PHY_CFG_REQ_FLAGS_DEPRECATED 0x2UL + #define PORT_PHY_CFG_REQ_FLAGS_FORCE 0x4UL + #define PORT_PHY_CFG_REQ_FLAGS_RESTART_AUTONEG 0x8UL + #define PORT_PHY_CFG_REQ_FLAGS_EEE_ENABLE 0x10UL + #define PORT_PHY_CFG_REQ_FLAGS_EEE_DISABLE 0x20UL + #define PORT_PHY_CFG_REQ_FLAGS_EEE_TX_LPI_ENABLE 0x40UL + #define PORT_PHY_CFG_REQ_FLAGS_EEE_TX_LPI_DISABLE 0x80UL + #define PORT_PHY_CFG_REQ_FLAGS_FEC_AUTONEG_ENABLE 0x100UL + #define PORT_PHY_CFG_REQ_FLAGS_FEC_AUTONEG_DISABLE 0x200UL + #define PORT_PHY_CFG_REQ_FLAGS_FEC_CLAUSE74_ENABLE 0x400UL + #define PORT_PHY_CFG_REQ_FLAGS_FEC_CLAUSE74_DISABLE 0x800UL + #define PORT_PHY_CFG_REQ_FLAGS_FEC_CLAUSE91_ENABLE 0x1000UL + #define PORT_PHY_CFG_REQ_FLAGS_FEC_CLAUSE91_DISABLE 0x2000UL + #define PORT_PHY_CFG_REQ_FLAGS_FORCE_LINK_DWN 0x4000UL + __le32 enables; + #define PORT_PHY_CFG_REQ_ENABLES_AUTO_MODE 0x1UL + #define PORT_PHY_CFG_REQ_ENABLES_AUTO_DUPLEX 0x2UL + #define PORT_PHY_CFG_REQ_ENABLES_AUTO_PAUSE 0x4UL + #define PORT_PHY_CFG_REQ_ENABLES_AUTO_LINK_SPEED 0x8UL + #define PORT_PHY_CFG_REQ_ENABLES_AUTO_LINK_SPEED_MASK 0x10UL + #define PORT_PHY_CFG_REQ_ENABLES_WIRESPEED 0x20UL + #define PORT_PHY_CFG_REQ_ENABLES_LPBK 0x40UL + #define PORT_PHY_CFG_REQ_ENABLES_PREEMPHASIS 0x80UL + #define PORT_PHY_CFG_REQ_ENABLES_FORCE_PAUSE 0x100UL + #define PORT_PHY_CFG_REQ_ENABLES_EEE_LINK_SPEED_MASK 0x200UL + #define PORT_PHY_CFG_REQ_ENABLES_TX_LPI_TIMER 0x400UL + __le16 port_id; + __le16 force_link_speed; + #define PORT_PHY_CFG_REQ_FORCE_LINK_SPEED_100MB 0x1UL + #define PORT_PHY_CFG_REQ_FORCE_LINK_SPEED_1GB 0xaUL + #define PORT_PHY_CFG_REQ_FORCE_LINK_SPEED_2GB 0x14UL + #define PORT_PHY_CFG_REQ_FORCE_LINK_SPEED_2_5GB 0x19UL + #define PORT_PHY_CFG_REQ_FORCE_LINK_SPEED_10GB 0x64UL + #define PORT_PHY_CFG_REQ_FORCE_LINK_SPEED_20GB 0xc8UL + #define PORT_PHY_CFG_REQ_FORCE_LINK_SPEED_25GB 0xfaUL + #define PORT_PHY_CFG_REQ_FORCE_LINK_SPEED_40GB 0x190UL + #define PORT_PHY_CFG_REQ_FORCE_LINK_SPEED_50GB 0x1f4UL + #define PORT_PHY_CFG_REQ_FORCE_LINK_SPEED_100GB 0x3e8UL + #define PORT_PHY_CFG_REQ_FORCE_LINK_SPEED_10MB 0xffffUL + u8 auto_mode; + #define PORT_PHY_CFG_REQ_AUTO_MODE_NONE 0x0UL + #define PORT_PHY_CFG_REQ_AUTO_MODE_ALL_SPEEDS 0x1UL + #define PORT_PHY_CFG_REQ_AUTO_MODE_ONE_SPEED 0x2UL + #define PORT_PHY_CFG_REQ_AUTO_MODE_ONE_OR_BELOW 0x3UL + #define PORT_PHY_CFG_REQ_AUTO_MODE_SPEED_MASK 0x4UL + u8 auto_duplex; + #define PORT_PHY_CFG_REQ_AUTO_DUPLEX_HALF 0x0UL + #define PORT_PHY_CFG_REQ_AUTO_DUPLEX_FULL 0x1UL + #define PORT_PHY_CFG_REQ_AUTO_DUPLEX_BOTH 0x2UL + u8 auto_pause; + #define PORT_PHY_CFG_REQ_AUTO_PAUSE_TX 0x1UL + #define PORT_PHY_CFG_REQ_AUTO_PAUSE_RX 0x2UL + #define PORT_PHY_CFG_REQ_AUTO_PAUSE_AUTONEG_PAUSE 0x4UL + u8 unused_0; + __le16 auto_link_speed; + #define PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_100MB 0x1UL + #define PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_1GB 0xaUL + #define PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_2GB 0x14UL + #define PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_2_5GB 0x19UL + #define PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_10GB 0x64UL + #define PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_20GB 0xc8UL + #define PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_25GB 0xfaUL + #define PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_40GB 0x190UL + #define PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_50GB 0x1f4UL + #define PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_100GB 0x3e8UL + #define PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_10MB 0xffffUL + __le16 auto_link_speed_mask; + #define PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_MASK_100MBHD 0x1UL + #define PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_MASK_100MB 0x2UL + #define PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_MASK_1GBHD 0x4UL + #define PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_MASK_1GB 0x8UL + #define PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_MASK_2GB 0x10UL + #define PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_MASK_2_5GB 0x20UL + #define PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_MASK_10GB 0x40UL + #define PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_MASK_20GB 0x80UL + #define PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_MASK_25GB 0x100UL + #define PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_MASK_40GB 0x200UL + #define PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_MASK_50GB 0x400UL + #define PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_MASK_100GB 0x800UL + #define PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_MASK_10MBHD 0x1000UL + #define PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_MASK_10MB 0x2000UL + u8 wirespeed; + #define PORT_PHY_CFG_REQ_WIRESPEED_OFF 0x0UL + #define PORT_PHY_CFG_REQ_WIRESPEED_ON 0x1UL + u8 lpbk; + #define PORT_PHY_CFG_REQ_LPBK_NONE 0x0UL + #define PORT_PHY_CFG_REQ_LPBK_LOCAL 0x1UL + #define PORT_PHY_CFG_REQ_LPBK_REMOTE 0x2UL + u8 force_pause; + #define PORT_PHY_CFG_REQ_FORCE_PAUSE_TX 0x1UL + #define PORT_PHY_CFG_REQ_FORCE_PAUSE_RX 0x2UL + u8 unused_1; + __le32 preemphasis; + __le16 eee_link_speed_mask; + #define PORT_PHY_CFG_REQ_EEE_LINK_SPEED_MASK_RSVD1 0x1UL + #define PORT_PHY_CFG_REQ_EEE_LINK_SPEED_MASK_100MB 0x2UL + #define PORT_PHY_CFG_REQ_EEE_LINK_SPEED_MASK_RSVD2 0x4UL + #define PORT_PHY_CFG_REQ_EEE_LINK_SPEED_MASK_1GB 0x8UL + #define PORT_PHY_CFG_REQ_EEE_LINK_SPEED_MASK_RSVD3 0x10UL + #define PORT_PHY_CFG_REQ_EEE_LINK_SPEED_MASK_RSVD4 0x20UL + #define PORT_PHY_CFG_REQ_EEE_LINK_SPEED_MASK_10GB 0x40UL + u8 unused_2; + u8 unused_3; + __le32 tx_lpi_timer; + __le32 unused_4; + #define PORT_PHY_CFG_REQ_TX_LPI_TIMER_MASK 0xffffffUL + #define PORT_PHY_CFG_REQ_TX_LPI_TIMER_SFT 0 +}; + +/* Output (16 bytes) */ +struct hwrm_port_phy_cfg_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_port_phy_qcfg */ +/* Input (24 bytes) */ +struct hwrm_port_phy_qcfg_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le16 port_id; + __le16 unused_0[3]; +}; + +/* Output (96 bytes) */ +struct hwrm_port_phy_qcfg_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + u8 link; + #define PORT_PHY_QCFG_RESP_LINK_NO_LINK 0x0UL + #define PORT_PHY_QCFG_RESP_LINK_SIGNAL 0x1UL + #define PORT_PHY_QCFG_RESP_LINK_LINK 0x2UL + u8 unused_0; + __le16 link_speed; + #define PORT_PHY_QCFG_RESP_LINK_SPEED_100MB 0x1UL + #define PORT_PHY_QCFG_RESP_LINK_SPEED_1GB 0xaUL + #define PORT_PHY_QCFG_RESP_LINK_SPEED_2GB 0x14UL + #define PORT_PHY_QCFG_RESP_LINK_SPEED_2_5GB 0x19UL + #define PORT_PHY_QCFG_RESP_LINK_SPEED_10GB 0x64UL + #define PORT_PHY_QCFG_RESP_LINK_SPEED_20GB 0xc8UL + #define PORT_PHY_QCFG_RESP_LINK_SPEED_25GB 0xfaUL + #define PORT_PHY_QCFG_RESP_LINK_SPEED_40GB 0x190UL + #define PORT_PHY_QCFG_RESP_LINK_SPEED_50GB 0x1f4UL + #define PORT_PHY_QCFG_RESP_LINK_SPEED_100GB 0x3e8UL + #define PORT_PHY_QCFG_RESP_LINK_SPEED_10MB 0xffffUL + u8 duplex_cfg; + #define PORT_PHY_QCFG_RESP_DUPLEX_CFG_HALF 0x0UL + #define PORT_PHY_QCFG_RESP_DUPLEX_CFG_FULL 0x1UL + u8 pause; + #define PORT_PHY_QCFG_RESP_PAUSE_TX 0x1UL + #define PORT_PHY_QCFG_RESP_PAUSE_RX 0x2UL + __le16 support_speeds; + #define PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS_100MBHD 0x1UL + #define PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS_100MB 0x2UL + #define PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS_1GBHD 0x4UL + #define PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS_1GB 0x8UL + #define PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS_2GB 0x10UL + #define PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS_2_5GB 0x20UL + #define PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS_10GB 0x40UL + #define PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS_20GB 0x80UL + #define PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS_25GB 0x100UL + #define PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS_40GB 0x200UL + #define PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS_50GB 0x400UL + #define PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS_100GB 0x800UL + #define PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS_10MBHD 0x1000UL + #define PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS_10MB 0x2000UL + __le16 force_link_speed; + #define PORT_PHY_QCFG_RESP_FORCE_LINK_SPEED_100MB 0x1UL + #define PORT_PHY_QCFG_RESP_FORCE_LINK_SPEED_1GB 0xaUL + #define PORT_PHY_QCFG_RESP_FORCE_LINK_SPEED_2GB 0x14UL + #define PORT_PHY_QCFG_RESP_FORCE_LINK_SPEED_2_5GB 0x19UL + #define PORT_PHY_QCFG_RESP_FORCE_LINK_SPEED_10GB 0x64UL + #define PORT_PHY_QCFG_RESP_FORCE_LINK_SPEED_20GB 0xc8UL + #define PORT_PHY_QCFG_RESP_FORCE_LINK_SPEED_25GB 0xfaUL + #define PORT_PHY_QCFG_RESP_FORCE_LINK_SPEED_40GB 0x190UL + #define PORT_PHY_QCFG_RESP_FORCE_LINK_SPEED_50GB 0x1f4UL + #define PORT_PHY_QCFG_RESP_FORCE_LINK_SPEED_100GB 0x3e8UL + #define PORT_PHY_QCFG_RESP_FORCE_LINK_SPEED_10MB 0xffffUL + u8 auto_mode; + #define PORT_PHY_QCFG_RESP_AUTO_MODE_NONE 0x0UL + #define PORT_PHY_QCFG_RESP_AUTO_MODE_ALL_SPEEDS 0x1UL + #define PORT_PHY_QCFG_RESP_AUTO_MODE_ONE_SPEED 0x2UL + #define PORT_PHY_QCFG_RESP_AUTO_MODE_ONE_OR_BELOW 0x3UL + #define PORT_PHY_QCFG_RESP_AUTO_MODE_SPEED_MASK 0x4UL + u8 auto_pause; + #define PORT_PHY_QCFG_RESP_AUTO_PAUSE_TX 0x1UL + #define PORT_PHY_QCFG_RESP_AUTO_PAUSE_RX 0x2UL + #define PORT_PHY_QCFG_RESP_AUTO_PAUSE_AUTONEG_PAUSE 0x4UL + __le16 auto_link_speed; + #define PORT_PHY_QCFG_RESP_AUTO_LINK_SPEED_100MB 0x1UL + #define PORT_PHY_QCFG_RESP_AUTO_LINK_SPEED_1GB 0xaUL + #define PORT_PHY_QCFG_RESP_AUTO_LINK_SPEED_2GB 0x14UL + #define PORT_PHY_QCFG_RESP_AUTO_LINK_SPEED_2_5GB 0x19UL + #define PORT_PHY_QCFG_RESP_AUTO_LINK_SPEED_10GB 0x64UL + #define PORT_PHY_QCFG_RESP_AUTO_LINK_SPEED_20GB 0xc8UL + #define PORT_PHY_QCFG_RESP_AUTO_LINK_SPEED_25GB 0xfaUL + #define PORT_PHY_QCFG_RESP_AUTO_LINK_SPEED_40GB 0x190UL + #define PORT_PHY_QCFG_RESP_AUTO_LINK_SPEED_50GB 0x1f4UL + #define PORT_PHY_QCFG_RESP_AUTO_LINK_SPEED_100GB 0x3e8UL + #define PORT_PHY_QCFG_RESP_AUTO_LINK_SPEED_10MB 0xffffUL + __le16 auto_link_speed_mask; + #define PORT_PHY_QCFG_RESP_AUTO_LINK_SPEED_MASK_100MBHD 0x1UL + #define PORT_PHY_QCFG_RESP_AUTO_LINK_SPEED_MASK_100MB 0x2UL + #define PORT_PHY_QCFG_RESP_AUTO_LINK_SPEED_MASK_1GBHD 0x4UL + #define PORT_PHY_QCFG_RESP_AUTO_LINK_SPEED_MASK_1GB 0x8UL + #define PORT_PHY_QCFG_RESP_AUTO_LINK_SPEED_MASK_2GB 0x10UL + #define PORT_PHY_QCFG_RESP_AUTO_LINK_SPEED_MASK_2_5GB 0x20UL + #define PORT_PHY_QCFG_RESP_AUTO_LINK_SPEED_MASK_10GB 0x40UL + #define PORT_PHY_QCFG_RESP_AUTO_LINK_SPEED_MASK_20GB 0x80UL + #define PORT_PHY_QCFG_RESP_AUTO_LINK_SPEED_MASK_25GB 0x100UL + #define PORT_PHY_QCFG_RESP_AUTO_LINK_SPEED_MASK_40GB 0x200UL + #define PORT_PHY_QCFG_RESP_AUTO_LINK_SPEED_MASK_50GB 0x400UL + #define PORT_PHY_QCFG_RESP_AUTO_LINK_SPEED_MASK_100GB 0x800UL + #define PORT_PHY_QCFG_RESP_AUTO_LINK_SPEED_MASK_10MBHD 0x1000UL + #define PORT_PHY_QCFG_RESP_AUTO_LINK_SPEED_MASK_10MB 0x2000UL + u8 wirespeed; + #define PORT_PHY_QCFG_RESP_WIRESPEED_OFF 0x0UL + #define PORT_PHY_QCFG_RESP_WIRESPEED_ON 0x1UL + u8 lpbk; + #define PORT_PHY_QCFG_RESP_LPBK_NONE 0x0UL + #define PORT_PHY_QCFG_RESP_LPBK_LOCAL 0x1UL + #define PORT_PHY_QCFG_RESP_LPBK_REMOTE 0x2UL + u8 force_pause; + #define PORT_PHY_QCFG_RESP_FORCE_PAUSE_TX 0x1UL + #define PORT_PHY_QCFG_RESP_FORCE_PAUSE_RX 0x2UL + u8 module_status; + #define PORT_PHY_QCFG_RESP_MODULE_STATUS_NONE 0x0UL + #define PORT_PHY_QCFG_RESP_MODULE_STATUS_DISABLETX 0x1UL + #define PORT_PHY_QCFG_RESP_MODULE_STATUS_WARNINGMSG 0x2UL + #define PORT_PHY_QCFG_RESP_MODULE_STATUS_PWRDOWN 0x3UL + #define PORT_PHY_QCFG_RESP_MODULE_STATUS_NOTINSERTED 0x4UL + #define PORT_PHY_QCFG_RESP_MODULE_STATUS_NOTAPPLICABLE 0xffUL + __le32 preemphasis; + u8 phy_maj; + u8 phy_min; + u8 phy_bld; + u8 phy_type; + #define PORT_PHY_QCFG_RESP_PHY_TYPE_UNKNOWN 0x0UL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_BASECR 0x1UL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_BASEKR4 0x2UL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_BASELR 0x3UL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_BASESR 0x4UL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_BASEKR2 0x5UL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_BASEKX 0x6UL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_BASEKR 0x7UL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_BASET 0x8UL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_BASETE 0x9UL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_SGMIIEXTPHY 0xaUL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_25G_BASECR_CA_L 0xbUL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_25G_BASECR_CA_S 0xcUL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_25G_BASECR_CA_N 0xdUL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_25G_BASESR 0xeUL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_100G_BASECR4 0xfUL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_100G_BASESR4 0x10UL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_100G_BASELR4 0x11UL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_100G_BASEER4 0x12UL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_100G_BASESR10 0x13UL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_40G_BASECR4 0x14UL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_40G_BASESR4 0x15UL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_40G_BASELR4 0x16UL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_40G_BASEER4 0x17UL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_40G_ACTIVE_CABLE 0x18UL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_1G_BASET 0x19UL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_1G_BASESX 0x1aUL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_1G_BASECX 0x1bUL + u8 media_type; + #define PORT_PHY_QCFG_RESP_MEDIA_TYPE_UNKNOWN 0x0UL + #define PORT_PHY_QCFG_RESP_MEDIA_TYPE_TP 0x1UL + #define PORT_PHY_QCFG_RESP_MEDIA_TYPE_DAC 0x2UL + #define PORT_PHY_QCFG_RESP_MEDIA_TYPE_FIBRE 0x3UL + u8 xcvr_pkg_type; + #define PORT_PHY_QCFG_RESP_XCVR_PKG_TYPE_XCVR_INTERNAL 0x1UL + #define PORT_PHY_QCFG_RESP_XCVR_PKG_TYPE_XCVR_EXTERNAL 0x2UL + u8 eee_config_phy_addr; + #define PORT_PHY_QCFG_RESP_PHY_ADDR_MASK 0x1fUL + #define PORT_PHY_QCFG_RESP_PHY_ADDR_SFT 0 + #define PORT_PHY_QCFG_RESP_EEE_CONFIG_EEE_ENABLED 0x20UL + #define PORT_PHY_QCFG_RESP_EEE_CONFIG_EEE_ACTIVE 0x40UL + #define PORT_PHY_QCFG_RESP_EEE_CONFIG_EEE_TX_LPI 0x80UL + #define PORT_PHY_QCFG_RESP_EEE_CONFIG_MASK 0xe0UL + #define PORT_PHY_QCFG_RESP_EEE_CONFIG_SFT 5 + u8 parallel_detect; + #define PORT_PHY_QCFG_RESP_PARALLEL_DETECT 0x1UL + #define PORT_PHY_QCFG_RESP_RESERVED_MASK 0xfeUL + #define PORT_PHY_QCFG_RESP_RESERVED_SFT 1 + __le16 link_partner_adv_speeds; + #define PORT_PHY_QCFG_RESP_LINK_PARTNER_ADV_SPEEDS_100MBHD 0x1UL + #define PORT_PHY_QCFG_RESP_LINK_PARTNER_ADV_SPEEDS_100MB 0x2UL + #define PORT_PHY_QCFG_RESP_LINK_PARTNER_ADV_SPEEDS_1GBHD 0x4UL + #define PORT_PHY_QCFG_RESP_LINK_PARTNER_ADV_SPEEDS_1GB 0x8UL + #define PORT_PHY_QCFG_RESP_LINK_PARTNER_ADV_SPEEDS_2GB 0x10UL + #define PORT_PHY_QCFG_RESP_LINK_PARTNER_ADV_SPEEDS_2_5GB 0x20UL + #define PORT_PHY_QCFG_RESP_LINK_PARTNER_ADV_SPEEDS_10GB 0x40UL + #define PORT_PHY_QCFG_RESP_LINK_PARTNER_ADV_SPEEDS_20GB 0x80UL + #define PORT_PHY_QCFG_RESP_LINK_PARTNER_ADV_SPEEDS_25GB 0x100UL + #define PORT_PHY_QCFG_RESP_LINK_PARTNER_ADV_SPEEDS_40GB 0x200UL + #define PORT_PHY_QCFG_RESP_LINK_PARTNER_ADV_SPEEDS_50GB 0x400UL + #define PORT_PHY_QCFG_RESP_LINK_PARTNER_ADV_SPEEDS_100GB 0x800UL + #define PORT_PHY_QCFG_RESP_LINK_PARTNER_ADV_SPEEDS_10MBHD 0x1000UL + #define PORT_PHY_QCFG_RESP_LINK_PARTNER_ADV_SPEEDS_10MB 0x2000UL + u8 link_partner_adv_auto_mode; + #define PORT_PHY_QCFG_RESP_LINK_PARTNER_ADV_AUTO_MODE_NONE 0x0UL + #define PORT_PHY_QCFG_RESP_LINK_PARTNER_ADV_AUTO_MODE_ALL_SPEEDS 0x1UL + #define PORT_PHY_QCFG_RESP_LINK_PARTNER_ADV_AUTO_MODE_ONE_SPEED 0x2UL + #define PORT_PHY_QCFG_RESP_LINK_PARTNER_ADV_AUTO_MODE_ONE_OR_BELOW 0x3UL + #define PORT_PHY_QCFG_RESP_LINK_PARTNER_ADV_AUTO_MODE_SPEED_MASK 0x4UL + u8 link_partner_adv_pause; + #define PORT_PHY_QCFG_RESP_LINK_PARTNER_ADV_PAUSE_TX 0x1UL + #define PORT_PHY_QCFG_RESP_LINK_PARTNER_ADV_PAUSE_RX 0x2UL + __le16 adv_eee_link_speed_mask; + #define PORT_PHY_QCFG_RESP_ADV_EEE_LINK_SPEED_MASK_RSVD1 0x1UL + #define PORT_PHY_QCFG_RESP_ADV_EEE_LINK_SPEED_MASK_100MB 0x2UL + #define PORT_PHY_QCFG_RESP_ADV_EEE_LINK_SPEED_MASK_RSVD2 0x4UL + #define PORT_PHY_QCFG_RESP_ADV_EEE_LINK_SPEED_MASK_1GB 0x8UL + #define PORT_PHY_QCFG_RESP_ADV_EEE_LINK_SPEED_MASK_RSVD3 0x10UL + #define PORT_PHY_QCFG_RESP_ADV_EEE_LINK_SPEED_MASK_RSVD4 0x20UL + #define PORT_PHY_QCFG_RESP_ADV_EEE_LINK_SPEED_MASK_10GB 0x40UL + __le16 link_partner_adv_eee_link_speed_mask; + #define PORT_PHY_QCFG_RESP_LINK_PARTNER_ADV_EEE_LINK_SPEED_MASK_RSVD1 0x1UL + #define PORT_PHY_QCFG_RESP_LINK_PARTNER_ADV_EEE_LINK_SPEED_MASK_100MB 0x2UL + #define PORT_PHY_QCFG_RESP_LINK_PARTNER_ADV_EEE_LINK_SPEED_MASK_RSVD2 0x4UL + #define PORT_PHY_QCFG_RESP_LINK_PARTNER_ADV_EEE_LINK_SPEED_MASK_1GB 0x8UL + #define PORT_PHY_QCFG_RESP_LINK_PARTNER_ADV_EEE_LINK_SPEED_MASK_RSVD3 0x10UL + #define PORT_PHY_QCFG_RESP_LINK_PARTNER_ADV_EEE_LINK_SPEED_MASK_RSVD4 0x20UL + #define PORT_PHY_QCFG_RESP_LINK_PARTNER_ADV_EEE_LINK_SPEED_MASK_10GB 0x40UL + __le32 xcvr_identifier_type_tx_lpi_timer; + #define PORT_PHY_QCFG_RESP_TX_LPI_TIMER_MASK 0xffffffUL + #define PORT_PHY_QCFG_RESP_TX_LPI_TIMER_SFT 0 + #define PORT_PHY_QCFG_RESP_XCVR_IDENTIFIER_TYPE_MASK 0xff000000UL + #define PORT_PHY_QCFG_RESP_XCVR_IDENTIFIER_TYPE_SFT 24 + #define PORT_PHY_QCFG_RESP_XCVR_IDENTIFIER_TYPE_UNKNOWN (0x0UL << 24) + #define PORT_PHY_QCFG_RESP_XCVR_IDENTIFIER_TYPE_SFP (0x3UL << 24) + #define PORT_PHY_QCFG_RESP_XCVR_IDENTIFIER_TYPE_QSFP (0xcUL << 24) + #define PORT_PHY_QCFG_RESP_XCVR_IDENTIFIER_TYPE_QSFPPLUS (0xdUL << 24) + #define PORT_PHY_QCFG_RESP_XCVR_IDENTIFIER_TYPE_QSFP28 (0x11UL << 24) + __le16 fec_cfg; + #define PORT_PHY_QCFG_RESP_FEC_CFG_FEC_NONE_SUPPORTED 0x1UL + #define PORT_PHY_QCFG_RESP_FEC_CFG_FEC_AUTONEG_SUPPORTED 0x2UL + #define PORT_PHY_QCFG_RESP_FEC_CFG_FEC_AUTONEG_ENABLED 0x4UL + #define PORT_PHY_QCFG_RESP_FEC_CFG_FEC_CLAUSE74_SUPPORTED 0x8UL + #define PORT_PHY_QCFG_RESP_FEC_CFG_FEC_CLAUSE74_ENABLED 0x10UL + #define PORT_PHY_QCFG_RESP_FEC_CFG_FEC_CLAUSE91_SUPPORTED 0x20UL + #define PORT_PHY_QCFG_RESP_FEC_CFG_FEC_CLAUSE91_ENABLED 0x40UL + u8 duplex_state; + #define PORT_PHY_QCFG_RESP_DUPLEX_STATE_HALF 0x0UL + #define PORT_PHY_QCFG_RESP_DUPLEX_STATE_FULL 0x1UL + u8 unused_1; + char phy_vendor_name[16]; + char phy_vendor_partnumber[16]; + __le32 unused_2; + u8 unused_3; + u8 unused_4; + u8 unused_5; + u8 valid; +}; + +/* hwrm_port_mac_cfg */ +/* Input (40 bytes) */ +struct hwrm_port_mac_cfg_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 flags; + #define PORT_MAC_CFG_REQ_FLAGS_MATCH_LINK 0x1UL + #define PORT_MAC_CFG_REQ_FLAGS_VLAN_PRI2COS_ENABLE 0x2UL + #define PORT_MAC_CFG_REQ_FLAGS_TUNNEL_PRI2COS_ENABLE 0x4UL + #define PORT_MAC_CFG_REQ_FLAGS_IP_DSCP2COS_ENABLE 0x8UL + #define PORT_MAC_CFG_REQ_FLAGS_PTP_RX_TS_CAPTURE_ENABLE 0x10UL + #define PORT_MAC_CFG_REQ_FLAGS_PTP_RX_TS_CAPTURE_DISABLE 0x20UL + #define PORT_MAC_CFG_REQ_FLAGS_PTP_TX_TS_CAPTURE_ENABLE 0x40UL + #define PORT_MAC_CFG_REQ_FLAGS_PTP_TX_TS_CAPTURE_DISABLE 0x80UL + #define PORT_MAC_CFG_REQ_FLAGS_OOB_WOL_ENABLE 0x100UL + #define PORT_MAC_CFG_REQ_FLAGS_OOB_WOL_DISABLE 0x200UL + #define PORT_MAC_CFG_REQ_FLAGS_VLAN_PRI2COS_DISABLE 0x400UL + #define PORT_MAC_CFG_REQ_FLAGS_TUNNEL_PRI2COS_DISABLE 0x800UL + #define PORT_MAC_CFG_REQ_FLAGS_IP_DSCP2COS_DISABLE 0x1000UL + __le32 enables; + #define PORT_MAC_CFG_REQ_ENABLES_IPG 0x1UL + #define PORT_MAC_CFG_REQ_ENABLES_LPBK 0x2UL + #define PORT_MAC_CFG_REQ_ENABLES_VLAN_PRI2COS_MAP_PRI 0x4UL + #define PORT_MAC_CFG_REQ_ENABLES_RESERVED1 0x8UL + #define PORT_MAC_CFG_REQ_ENABLES_TUNNEL_PRI2COS_MAP_PRI 0x10UL + #define PORT_MAC_CFG_REQ_ENABLES_DSCP2COS_MAP_PRI 0x20UL + #define PORT_MAC_CFG_REQ_ENABLES_RX_TS_CAPTURE_PTP_MSG_TYPE 0x40UL + #define PORT_MAC_CFG_REQ_ENABLES_TX_TS_CAPTURE_PTP_MSG_TYPE 0x80UL + #define PORT_MAC_CFG_REQ_ENABLES_COS_FIELD_CFG 0x100UL + __le16 port_id; + u8 ipg; + u8 lpbk; + #define PORT_MAC_CFG_REQ_LPBK_NONE 0x0UL + #define PORT_MAC_CFG_REQ_LPBK_LOCAL 0x1UL + #define PORT_MAC_CFG_REQ_LPBK_REMOTE 0x2UL + u8 vlan_pri2cos_map_pri; + u8 reserved1; + u8 tunnel_pri2cos_map_pri; + u8 dscp2pri_map_pri; + __le16 rx_ts_capture_ptp_msg_type; + __le16 tx_ts_capture_ptp_msg_type; + u8 cos_field_cfg; + #define PORT_MAC_CFG_REQ_COS_FIELD_CFG_RSVD1 0x1UL + #define PORT_MAC_CFG_REQ_COS_FIELD_CFG_VLAN_PRI_SEL_MASK 0x6UL + #define PORT_MAC_CFG_REQ_COS_FIELD_CFG_VLAN_PRI_SEL_SFT 1 + #define PORT_MAC_CFG_REQ_COS_FIELD_CFG_VLAN_PRI_SEL_INNERMOST (0x0UL << 1) + #define PORT_MAC_CFG_REQ_COS_FIELD_CFG_VLAN_PRI_SEL_OUTER (0x1UL << 1) + #define PORT_MAC_CFG_REQ_COS_FIELD_CFG_VLAN_PRI_SEL_OUTERMOST (0x2UL << 1) + #define PORT_MAC_CFG_REQ_COS_FIELD_CFG_VLAN_PRI_SEL_UNSPECIFIED (0x3UL << 1) + #define PORT_MAC_CFG_REQ_COS_FIELD_CFG_VLAN_PRI_SEL_LAST PORT_MAC_CFG_REQ_COS_FIELD_CFG_VLAN_PRI_SEL_UNSPECIFIED + #define PORT_MAC_CFG_REQ_COS_FIELD_CFG_T_VLAN_PRI_SEL_MASK 0x18UL + #define PORT_MAC_CFG_REQ_COS_FIELD_CFG_T_VLAN_PRI_SEL_SFT 3 + #define PORT_MAC_CFG_REQ_COS_FIELD_CFG_T_VLAN_PRI_SEL_INNERMOST (0x0UL << 3) + #define PORT_MAC_CFG_REQ_COS_FIELD_CFG_T_VLAN_PRI_SEL_OUTER (0x1UL << 3) + #define PORT_MAC_CFG_REQ_COS_FIELD_CFG_T_VLAN_PRI_SEL_OUTERMOST (0x2UL << 3) + #define PORT_MAC_CFG_REQ_COS_FIELD_CFG_T_VLAN_PRI_SEL_UNSPECIFIED (0x3UL << 3) + #define PORT_MAC_CFG_REQ_COS_FIELD_CFG_T_VLAN_PRI_SEL_LAST PORT_MAC_CFG_REQ_COS_FIELD_CFG_T_VLAN_PRI_SEL_UNSPECIFIED + #define PORT_MAC_CFG_REQ_COS_FIELD_CFG_DEFAULT_COS_MASK 0xe0UL + #define PORT_MAC_CFG_REQ_COS_FIELD_CFG_DEFAULT_COS_SFT 5 + u8 unused_0[3]; +}; + +/* Output (16 bytes) */ +struct hwrm_port_mac_cfg_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le16 mru; + __le16 mtu; + u8 ipg; + u8 lpbk; + #define PORT_MAC_CFG_RESP_LPBK_NONE 0x0UL + #define PORT_MAC_CFG_RESP_LPBK_LOCAL 0x1UL + #define PORT_MAC_CFG_RESP_LPBK_REMOTE 0x2UL + u8 unused_0; + u8 valid; +}; + +/* hwrm_port_mac_qcfg */ +/* Input (24 bytes) */ +struct hwrm_port_mac_qcfg_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le16 port_id; + __le16 unused_0[3]; +}; + +/* Output (24 bytes) */ +struct hwrm_port_mac_qcfg_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le16 mru; + __le16 mtu; + u8 ipg; + u8 lpbk; + #define PORT_MAC_QCFG_RESP_LPBK_NONE 0x0UL + #define PORT_MAC_QCFG_RESP_LPBK_LOCAL 0x1UL + #define PORT_MAC_QCFG_RESP_LPBK_REMOTE 0x2UL + u8 vlan_pri2cos_map_pri; + u8 flags; + #define PORT_MAC_QCFG_RESP_FLAGS_VLAN_PRI2COS_ENABLE 0x1UL + #define PORT_MAC_QCFG_RESP_FLAGS_TUNNEL_PRI2COS_ENABLE 0x2UL + #define PORT_MAC_QCFG_RESP_FLAGS_IP_DSCP2COS_ENABLE 0x4UL + #define PORT_MAC_QCFG_RESP_FLAGS_OOB_WOL_ENABLE 0x8UL + #define PORT_MAC_QCFG_RESP_FLAGS_PTP_RX_TS_CAPTURE_ENABLE 0x10UL + #define PORT_MAC_QCFG_RESP_FLAGS_PTP_TX_TS_CAPTURE_ENABLE 0x20UL + u8 tunnel_pri2cos_map_pri; + u8 dscp2pri_map_pri; + __le16 rx_ts_capture_ptp_msg_type; + __le16 tx_ts_capture_ptp_msg_type; + u8 cos_field_cfg; + #define PORT_MAC_QCFG_RESP_COS_FIELD_CFG_RSVD 0x1UL + #define PORT_MAC_QCFG_RESP_COS_FIELD_CFG_VLAN_PRI_SEL_MASK 0x6UL + #define PORT_MAC_QCFG_RESP_COS_FIELD_CFG_VLAN_PRI_SEL_SFT 1 + #define PORT_MAC_QCFG_RESP_COS_FIELD_CFG_VLAN_PRI_SEL_INNERMOST (0x0UL << 1) + #define PORT_MAC_QCFG_RESP_COS_FIELD_CFG_VLAN_PRI_SEL_OUTER (0x1UL << 1) + #define PORT_MAC_QCFG_RESP_COS_FIELD_CFG_VLAN_PRI_SEL_OUTERMOST (0x2UL << 1) + #define PORT_MAC_QCFG_RESP_COS_FIELD_CFG_VLAN_PRI_SEL_UNSPECIFIED (0x3UL << 1) + #define PORT_MAC_QCFG_RESP_COS_FIELD_CFG_VLAN_PRI_SEL_LAST PORT_MAC_QCFG_RESP_COS_FIELD_CFG_VLAN_PRI_SEL_UNSPECIFIED + #define PORT_MAC_QCFG_RESP_COS_FIELD_CFG_T_VLAN_PRI_SEL_MASK 0x18UL + #define PORT_MAC_QCFG_RESP_COS_FIELD_CFG_T_VLAN_PRI_SEL_SFT 3 + #define PORT_MAC_QCFG_RESP_COS_FIELD_CFG_T_VLAN_PRI_SEL_INNERMOST (0x0UL << 3) + #define PORT_MAC_QCFG_RESP_COS_FIELD_CFG_T_VLAN_PRI_SEL_OUTER (0x1UL << 3) + #define PORT_MAC_QCFG_RESP_COS_FIELD_CFG_T_VLAN_PRI_SEL_OUTERMOST (0x2UL << 3) + #define PORT_MAC_QCFG_RESP_COS_FIELD_CFG_T_VLAN_PRI_SEL_UNSPECIFIED (0x3UL << 3) + #define PORT_MAC_QCFG_RESP_COS_FIELD_CFG_T_VLAN_PRI_SEL_LAST PORT_MAC_QCFG_RESP_COS_FIELD_CFG_T_VLAN_PRI_SEL_UNSPECIFIED + #define PORT_MAC_QCFG_RESP_COS_FIELD_CFG_DEFAULT_COS_MASK 0xe0UL + #define PORT_MAC_QCFG_RESP_COS_FIELD_CFG_DEFAULT_COS_SFT 5 + u8 valid; +}; + +/* hwrm_port_mac_ptp_qcfg */ +/* Input (24 bytes) */ +struct hwrm_port_mac_ptp_qcfg_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le16 port_id; + __le16 unused_0[3]; +}; + +/* Output (80 bytes) */ +struct hwrm_port_mac_ptp_qcfg_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + u8 flags; + #define PORT_MAC_PTP_QCFG_RESP_FLAGS_DIRECT_ACCESS 0x1UL + #define PORT_MAC_PTP_QCFG_RESP_FLAGS_HWRM_ACCESS 0x2UL + u8 unused_0; + __le16 unused_1; + __le32 rx_ts_reg_off_lower; + __le32 rx_ts_reg_off_upper; + __le32 rx_ts_reg_off_seq_id; + __le32 rx_ts_reg_off_src_id_0; + __le32 rx_ts_reg_off_src_id_1; + __le32 rx_ts_reg_off_src_id_2; + __le32 rx_ts_reg_off_domain_id; + __le32 rx_ts_reg_off_fifo; + __le32 rx_ts_reg_off_fifo_adv; + __le32 rx_ts_reg_off_granularity; + __le32 tx_ts_reg_off_lower; + __le32 tx_ts_reg_off_upper; + __le32 tx_ts_reg_off_seq_id; + __le32 tx_ts_reg_off_fifo; + __le32 tx_ts_reg_off_granularity; + __le32 unused_2; + u8 unused_3; + u8 unused_4; + u8 unused_5; + u8 valid; +}; + +/* hwrm_port_qstats */ +/* Input (40 bytes) */ +struct hwrm_port_qstats_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le16 port_id; + u8 unused_0; + u8 unused_1; + u8 unused_2[3]; + u8 unused_3; + __le64 tx_stat_host_addr; + __le64 rx_stat_host_addr; +}; + +/* Output (16 bytes) */ +struct hwrm_port_qstats_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le16 tx_stat_size; + __le16 rx_stat_size; + u8 unused_0; + u8 unused_1; + u8 unused_2; + u8 valid; +}; + +/* hwrm_port_lpbk_qstats */ +/* Input (16 bytes) */ +struct hwrm_port_lpbk_qstats_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; +}; + +/* Output (96 bytes) */ +struct hwrm_port_lpbk_qstats_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le64 lpbk_ucast_frames; + __le64 lpbk_mcast_frames; + __le64 lpbk_bcast_frames; + __le64 lpbk_ucast_bytes; + __le64 lpbk_mcast_bytes; + __le64 lpbk_bcast_bytes; + __le64 tx_stat_discard; + __le64 tx_stat_error; + __le64 rx_stat_discard; + __le64 rx_stat_error; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_port_clr_stats */ +/* Input (24 bytes) */ +struct hwrm_port_clr_stats_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le16 port_id; + __le16 unused_0[3]; +}; + +/* Output (16 bytes) */ +struct hwrm_port_clr_stats_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_port_lpbk_clr_stats */ +/* Input (16 bytes) */ +struct hwrm_port_lpbk_clr_stats_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; +}; + +/* Output (16 bytes) */ +struct hwrm_port_lpbk_clr_stats_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_port_ts_query */ +/* Input (24 bytes) */ +struct hwrm_port_ts_query_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 flags; + #define PORT_TS_QUERY_REQ_FLAGS_PATH 0x1UL + #define PORT_TS_QUERY_REQ_FLAGS_PATH_TX 0x0UL + #define PORT_TS_QUERY_REQ_FLAGS_PATH_RX 0x1UL + #define PORT_TS_QUERY_REQ_FLAGS_PATH_LAST PORT_TS_QUERY_REQ_FLAGS_PATH_RX + __le16 port_id; + __le16 unused_0; +}; + +/* Output (24 bytes) */ +struct hwrm_port_ts_query_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le64 ptp_msg_ts; + __le16 ptp_msg_seqid; + u8 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 unused_4; + u8 valid; +}; + +/* hwrm_port_phy_qcaps */ +/* Input (24 bytes) */ +struct hwrm_port_phy_qcaps_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le16 port_id; + __le16 unused_0[3]; +}; + +/* Output (24 bytes) */ +struct hwrm_port_phy_qcaps_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + u8 flags; + #define PORT_PHY_QCAPS_RESP_FLAGS_EEE_SUPPORTED 0x1UL + #define PORT_PHY_QCAPS_RESP_FLAGS_RSVD1_MASK 0xfeUL + #define PORT_PHY_QCAPS_RESP_FLAGS_RSVD1_SFT 1 + u8 unused_0; + __le16 supported_speeds_force_mode; + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS_FORCE_MODE_100MBHD 0x1UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS_FORCE_MODE_100MB 0x2UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS_FORCE_MODE_1GBHD 0x4UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS_FORCE_MODE_1GB 0x8UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS_FORCE_MODE_2GB 0x10UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS_FORCE_MODE_2_5GB 0x20UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS_FORCE_MODE_10GB 0x40UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS_FORCE_MODE_20GB 0x80UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS_FORCE_MODE_25GB 0x100UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS_FORCE_MODE_40GB 0x200UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS_FORCE_MODE_50GB 0x400UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS_FORCE_MODE_100GB 0x800UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS_FORCE_MODE_10MBHD 0x1000UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS_FORCE_MODE_10MB 0x2000UL + __le16 supported_speeds_auto_mode; + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS_AUTO_MODE_100MBHD 0x1UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS_AUTO_MODE_100MB 0x2UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS_AUTO_MODE_1GBHD 0x4UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS_AUTO_MODE_1GB 0x8UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS_AUTO_MODE_2GB 0x10UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS_AUTO_MODE_2_5GB 0x20UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS_AUTO_MODE_10GB 0x40UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS_AUTO_MODE_20GB 0x80UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS_AUTO_MODE_25GB 0x100UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS_AUTO_MODE_40GB 0x200UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS_AUTO_MODE_50GB 0x400UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS_AUTO_MODE_100GB 0x800UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS_AUTO_MODE_10MBHD 0x1000UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS_AUTO_MODE_10MB 0x2000UL + __le16 supported_speeds_eee_mode; + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS_EEE_MODE_RSVD1 0x1UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS_EEE_MODE_100MB 0x2UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS_EEE_MODE_RSVD2 0x4UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS_EEE_MODE_1GB 0x8UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS_EEE_MODE_RSVD3 0x10UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS_EEE_MODE_RSVD4 0x20UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS_EEE_MODE_10GB 0x40UL + __le32 tx_lpi_timer_low; + #define PORT_PHY_QCAPS_RESP_TX_LPI_TIMER_LOW_MASK 0xffffffUL + #define PORT_PHY_QCAPS_RESP_TX_LPI_TIMER_LOW_SFT 0 + #define PORT_PHY_QCAPS_RESP_RSVD2_MASK 0xff000000UL + #define PORT_PHY_QCAPS_RESP_RSVD2_SFT 24 + __le32 valid_tx_lpi_timer_high; + #define PORT_PHY_QCAPS_RESP_TX_LPI_TIMER_HIGH_MASK 0xffffffUL + #define PORT_PHY_QCAPS_RESP_TX_LPI_TIMER_HIGH_SFT 0 + #define PORT_PHY_QCAPS_RESP_VALID_MASK 0xff000000UL + #define PORT_PHY_QCAPS_RESP_VALID_SFT 24 +}; + +/* hwrm_port_phy_i2c_write */ +/* Input (48 bytes) */ +struct hwrm_port_phy_i2c_write_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 flags; + __le32 enables; + #define PORT_PHY_I2C_WRITE_REQ_ENABLES_PAGE_OFFSET 0x1UL + __le16 port_id; + u8 i2c_slave_addr; + u8 unused_0; + __le16 page_number; + __le16 page_offset; + u8 data_length; + u8 unused_1; + __le16 unused_2; + __le16 unused_3; + __le16 unused_4; + __le32 data[16]; +}; + +/* Output (16 bytes) */ +struct hwrm_port_phy_i2c_write_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_port_phy_i2c_read */ +/* Input (40 bytes) */ +struct hwrm_port_phy_i2c_read_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 flags; + __le32 enables; + #define PORT_PHY_I2C_READ_REQ_ENABLES_PAGE_OFFSET 0x1UL + __le16 port_id; + u8 i2c_slave_addr; + u8 unused_0; + __le16 page_number; + __le16 page_offset; + u8 data_length; + u8 unused_1[7]; +}; + +/* Output (80 bytes) */ +struct hwrm_port_phy_i2c_read_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 data[16]; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_port_led_cfg */ +/* Input (64 bytes) */ +struct hwrm_port_led_cfg_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 enables; + #define PORT_LED_CFG_REQ_ENABLES_LED0_ID 0x1UL + #define PORT_LED_CFG_REQ_ENABLES_LED0_STATE 0x2UL + #define PORT_LED_CFG_REQ_ENABLES_LED0_COLOR 0x4UL + #define PORT_LED_CFG_REQ_ENABLES_LED0_BLINK_ON 0x8UL + #define PORT_LED_CFG_REQ_ENABLES_LED0_BLINK_OFF 0x10UL + #define PORT_LED_CFG_REQ_ENABLES_LED0_GROUP_ID 0x20UL + #define PORT_LED_CFG_REQ_ENABLES_LED1_ID 0x40UL + #define PORT_LED_CFG_REQ_ENABLES_LED1_STATE 0x80UL + #define PORT_LED_CFG_REQ_ENABLES_LED1_COLOR 0x100UL + #define PORT_LED_CFG_REQ_ENABLES_LED1_BLINK_ON 0x200UL + #define PORT_LED_CFG_REQ_ENABLES_LED1_BLINK_OFF 0x400UL + #define PORT_LED_CFG_REQ_ENABLES_LED1_GROUP_ID 0x800UL + #define PORT_LED_CFG_REQ_ENABLES_LED2_ID 0x1000UL + #define PORT_LED_CFG_REQ_ENABLES_LED2_STATE 0x2000UL + #define PORT_LED_CFG_REQ_ENABLES_LED2_COLOR 0x4000UL + #define PORT_LED_CFG_REQ_ENABLES_LED2_BLINK_ON 0x8000UL + #define PORT_LED_CFG_REQ_ENABLES_LED2_BLINK_OFF 0x10000UL + #define PORT_LED_CFG_REQ_ENABLES_LED2_GROUP_ID 0x20000UL + #define PORT_LED_CFG_REQ_ENABLES_LED3_ID 0x40000UL + #define PORT_LED_CFG_REQ_ENABLES_LED3_STATE 0x80000UL + #define PORT_LED_CFG_REQ_ENABLES_LED3_COLOR 0x100000UL + #define PORT_LED_CFG_REQ_ENABLES_LED3_BLINK_ON 0x200000UL + #define PORT_LED_CFG_REQ_ENABLES_LED3_BLINK_OFF 0x400000UL + #define PORT_LED_CFG_REQ_ENABLES_LED3_GROUP_ID 0x800000UL + __le16 port_id; + u8 num_leds; + u8 rsvd; + u8 led0_id; + u8 led0_state; + #define PORT_LED_CFG_REQ_LED0_STATE_DEFAULT 0x0UL + #define PORT_LED_CFG_REQ_LED0_STATE_OFF 0x1UL + #define PORT_LED_CFG_REQ_LED0_STATE_ON 0x2UL + #define PORT_LED_CFG_REQ_LED0_STATE_BLINK 0x3UL + #define PORT_LED_CFG_REQ_LED0_STATE_BLINKALT 0x4UL + u8 led0_color; + #define PORT_LED_CFG_REQ_LED0_COLOR_DEFAULT 0x0UL + #define PORT_LED_CFG_REQ_LED0_COLOR_AMBER 0x1UL + #define PORT_LED_CFG_REQ_LED0_COLOR_GREEN 0x2UL + #define PORT_LED_CFG_REQ_LED0_COLOR_GREENAMBER 0x3UL + u8 unused_0; + __le16 led0_blink_on; + __le16 led0_blink_off; + u8 led0_group_id; + u8 rsvd0; + u8 led1_id; + u8 led1_state; + #define PORT_LED_CFG_REQ_LED1_STATE_DEFAULT 0x0UL + #define PORT_LED_CFG_REQ_LED1_STATE_OFF 0x1UL + #define PORT_LED_CFG_REQ_LED1_STATE_ON 0x2UL + #define PORT_LED_CFG_REQ_LED1_STATE_BLINK 0x3UL + #define PORT_LED_CFG_REQ_LED1_STATE_BLINKALT 0x4UL + u8 led1_color; + #define PORT_LED_CFG_REQ_LED1_COLOR_DEFAULT 0x0UL + #define PORT_LED_CFG_REQ_LED1_COLOR_AMBER 0x1UL + #define PORT_LED_CFG_REQ_LED1_COLOR_GREEN 0x2UL + #define PORT_LED_CFG_REQ_LED1_COLOR_GREENAMBER 0x3UL + u8 unused_1; + __le16 led1_blink_on; + __le16 led1_blink_off; + u8 led1_group_id; + u8 rsvd1; + u8 led2_id; + u8 led2_state; + #define PORT_LED_CFG_REQ_LED2_STATE_DEFAULT 0x0UL + #define PORT_LED_CFG_REQ_LED2_STATE_OFF 0x1UL + #define PORT_LED_CFG_REQ_LED2_STATE_ON 0x2UL + #define PORT_LED_CFG_REQ_LED2_STATE_BLINK 0x3UL + #define PORT_LED_CFG_REQ_LED2_STATE_BLINKALT 0x4UL + u8 led2_color; + #define PORT_LED_CFG_REQ_LED2_COLOR_DEFAULT 0x0UL + #define PORT_LED_CFG_REQ_LED2_COLOR_AMBER 0x1UL + #define PORT_LED_CFG_REQ_LED2_COLOR_GREEN 0x2UL + #define PORT_LED_CFG_REQ_LED2_COLOR_GREENAMBER 0x3UL + u8 unused_2; + __le16 led2_blink_on; + __le16 led2_blink_off; + u8 led2_group_id; + u8 rsvd2; + u8 led3_id; + u8 led3_state; + #define PORT_LED_CFG_REQ_LED3_STATE_DEFAULT 0x0UL + #define PORT_LED_CFG_REQ_LED3_STATE_OFF 0x1UL + #define PORT_LED_CFG_REQ_LED3_STATE_ON 0x2UL + #define PORT_LED_CFG_REQ_LED3_STATE_BLINK 0x3UL + #define PORT_LED_CFG_REQ_LED3_STATE_BLINKALT 0x4UL + u8 led3_color; + #define PORT_LED_CFG_REQ_LED3_COLOR_DEFAULT 0x0UL + #define PORT_LED_CFG_REQ_LED3_COLOR_AMBER 0x1UL + #define PORT_LED_CFG_REQ_LED3_COLOR_GREEN 0x2UL + #define PORT_LED_CFG_REQ_LED3_COLOR_GREENAMBER 0x3UL + u8 unused_3; + __le16 led3_blink_on; + __le16 led3_blink_off; + u8 led3_group_id; + u8 rsvd3; +}; + +/* Output (16 bytes) */ +struct hwrm_port_led_cfg_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_port_led_qcfg */ +/* Input (24 bytes) */ +struct hwrm_port_led_qcfg_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le16 port_id; + __le16 unused_0[3]; +}; + +/* Output (56 bytes) */ +struct hwrm_port_led_qcfg_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + u8 num_leds; + u8 led0_id; + u8 led0_type; + #define PORT_LED_QCFG_RESP_LED0_TYPE_SPEED 0x0UL + #define PORT_LED_QCFG_RESP_LED0_TYPE_ACTIVITY 0x1UL + #define PORT_LED_QCFG_RESP_LED0_TYPE_INVALID 0xffUL + u8 led0_state; + #define PORT_LED_QCFG_RESP_LED0_STATE_DEFAULT 0x0UL + #define PORT_LED_QCFG_RESP_LED0_STATE_OFF 0x1UL + #define PORT_LED_QCFG_RESP_LED0_STATE_ON 0x2UL + #define PORT_LED_QCFG_RESP_LED0_STATE_BLINK 0x3UL + #define PORT_LED_QCFG_RESP_LED0_STATE_BLINKALT 0x4UL + u8 led0_color; + #define PORT_LED_QCFG_RESP_LED0_COLOR_DEFAULT 0x0UL + #define PORT_LED_QCFG_RESP_LED0_COLOR_AMBER 0x1UL + #define PORT_LED_QCFG_RESP_LED0_COLOR_GREEN 0x2UL + #define PORT_LED_QCFG_RESP_LED0_COLOR_GREENAMBER 0x3UL + u8 unused_0; + __le16 led0_blink_on; + __le16 led0_blink_off; + u8 led0_group_id; + u8 led1_id; + u8 led1_type; + #define PORT_LED_QCFG_RESP_LED1_TYPE_SPEED 0x0UL + #define PORT_LED_QCFG_RESP_LED1_TYPE_ACTIVITY 0x1UL + #define PORT_LED_QCFG_RESP_LED1_TYPE_INVALID 0xffUL + u8 led1_state; + #define PORT_LED_QCFG_RESP_LED1_STATE_DEFAULT 0x0UL + #define PORT_LED_QCFG_RESP_LED1_STATE_OFF 0x1UL + #define PORT_LED_QCFG_RESP_LED1_STATE_ON 0x2UL + #define PORT_LED_QCFG_RESP_LED1_STATE_BLINK 0x3UL + #define PORT_LED_QCFG_RESP_LED1_STATE_BLINKALT 0x4UL + u8 led1_color; + #define PORT_LED_QCFG_RESP_LED1_COLOR_DEFAULT 0x0UL + #define PORT_LED_QCFG_RESP_LED1_COLOR_AMBER 0x1UL + #define PORT_LED_QCFG_RESP_LED1_COLOR_GREEN 0x2UL + #define PORT_LED_QCFG_RESP_LED1_COLOR_GREENAMBER 0x3UL + u8 unused_1; + __le16 led1_blink_on; + __le16 led1_blink_off; + u8 led1_group_id; + u8 led2_id; + u8 led2_type; + #define PORT_LED_QCFG_RESP_LED2_TYPE_SPEED 0x0UL + #define PORT_LED_QCFG_RESP_LED2_TYPE_ACTIVITY 0x1UL + #define PORT_LED_QCFG_RESP_LED2_TYPE_INVALID 0xffUL + u8 led2_state; + #define PORT_LED_QCFG_RESP_LED2_STATE_DEFAULT 0x0UL + #define PORT_LED_QCFG_RESP_LED2_STATE_OFF 0x1UL + #define PORT_LED_QCFG_RESP_LED2_STATE_ON 0x2UL + #define PORT_LED_QCFG_RESP_LED2_STATE_BLINK 0x3UL + #define PORT_LED_QCFG_RESP_LED2_STATE_BLINKALT 0x4UL + u8 led2_color; + #define PORT_LED_QCFG_RESP_LED2_COLOR_DEFAULT 0x0UL + #define PORT_LED_QCFG_RESP_LED2_COLOR_AMBER 0x1UL + #define PORT_LED_QCFG_RESP_LED2_COLOR_GREEN 0x2UL + #define PORT_LED_QCFG_RESP_LED2_COLOR_GREENAMBER 0x3UL + u8 unused_2; + __le16 led2_blink_on; + __le16 led2_blink_off; + u8 led2_group_id; + u8 led3_id; + u8 led3_type; + #define PORT_LED_QCFG_RESP_LED3_TYPE_SPEED 0x0UL + #define PORT_LED_QCFG_RESP_LED3_TYPE_ACTIVITY 0x1UL + #define PORT_LED_QCFG_RESP_LED3_TYPE_INVALID 0xffUL + u8 led3_state; + #define PORT_LED_QCFG_RESP_LED3_STATE_DEFAULT 0x0UL + #define PORT_LED_QCFG_RESP_LED3_STATE_OFF 0x1UL + #define PORT_LED_QCFG_RESP_LED3_STATE_ON 0x2UL + #define PORT_LED_QCFG_RESP_LED3_STATE_BLINK 0x3UL + #define PORT_LED_QCFG_RESP_LED3_STATE_BLINKALT 0x4UL + u8 led3_color; + #define PORT_LED_QCFG_RESP_LED3_COLOR_DEFAULT 0x0UL + #define PORT_LED_QCFG_RESP_LED3_COLOR_AMBER 0x1UL + #define PORT_LED_QCFG_RESP_LED3_COLOR_GREEN 0x2UL + #define PORT_LED_QCFG_RESP_LED3_COLOR_GREENAMBER 0x3UL + u8 unused_3; + __le16 led3_blink_on; + __le16 led3_blink_off; + u8 led3_group_id; + u8 unused_4; + __le16 unused_5; + u8 unused_6; + u8 unused_7; + u8 unused_8; + u8 valid; +}; + +/* hwrm_port_led_qcaps */ +/* Input (24 bytes) */ +struct hwrm_port_led_qcaps_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le16 port_id; + __le16 unused_0[3]; +}; + +/* Output (48 bytes) */ +struct hwrm_port_led_qcaps_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + u8 num_leds; + u8 unused_0[3]; + u8 led0_id; + u8 led0_type; + #define PORT_LED_QCAPS_RESP_LED0_TYPE_SPEED 0x0UL + #define PORT_LED_QCAPS_RESP_LED0_TYPE_ACTIVITY 0x1UL + #define PORT_LED_QCAPS_RESP_LED0_TYPE_INVALID 0xffUL + u8 led0_group_id; + u8 unused_1; + __le16 led0_state_caps; + #define PORT_LED_QCAPS_RESP_LED0_STATE_CAPS_ENABLED 0x1UL + #define PORT_LED_QCAPS_RESP_LED0_STATE_CAPS_OFF_SUPPORTED 0x2UL + #define PORT_LED_QCAPS_RESP_LED0_STATE_CAPS_ON_SUPPORTED 0x4UL + #define PORT_LED_QCAPS_RESP_LED0_STATE_CAPS_BLINK_SUPPORTED 0x8UL + #define PORT_LED_QCAPS_RESP_LED0_STATE_CAPS_BLINK_ALT_SUPPORTED 0x10UL + __le16 led0_color_caps; + #define PORT_LED_QCAPS_RESP_LED0_COLOR_CAPS_RSVD 0x1UL + #define PORT_LED_QCAPS_RESP_LED0_COLOR_CAPS_AMBER_SUPPORTED 0x2UL + #define PORT_LED_QCAPS_RESP_LED0_COLOR_CAPS_GREEN_SUPPORTED 0x4UL + u8 led1_id; + u8 led1_type; + #define PORT_LED_QCAPS_RESP_LED1_TYPE_SPEED 0x0UL + #define PORT_LED_QCAPS_RESP_LED1_TYPE_ACTIVITY 0x1UL + #define PORT_LED_QCAPS_RESP_LED1_TYPE_INVALID 0xffUL + u8 led1_group_id; + u8 unused_2; + __le16 led1_state_caps; + #define PORT_LED_QCAPS_RESP_LED1_STATE_CAPS_ENABLED 0x1UL + #define PORT_LED_QCAPS_RESP_LED1_STATE_CAPS_OFF_SUPPORTED 0x2UL + #define PORT_LED_QCAPS_RESP_LED1_STATE_CAPS_ON_SUPPORTED 0x4UL + #define PORT_LED_QCAPS_RESP_LED1_STATE_CAPS_BLINK_SUPPORTED 0x8UL + #define PORT_LED_QCAPS_RESP_LED1_STATE_CAPS_BLINK_ALT_SUPPORTED 0x10UL + __le16 led1_color_caps; + #define PORT_LED_QCAPS_RESP_LED1_COLOR_CAPS_RSVD 0x1UL + #define PORT_LED_QCAPS_RESP_LED1_COLOR_CAPS_AMBER_SUPPORTED 0x2UL + #define PORT_LED_QCAPS_RESP_LED1_COLOR_CAPS_GREEN_SUPPORTED 0x4UL + u8 led2_id; + u8 led2_type; + #define PORT_LED_QCAPS_RESP_LED2_TYPE_SPEED 0x0UL + #define PORT_LED_QCAPS_RESP_LED2_TYPE_ACTIVITY 0x1UL + #define PORT_LED_QCAPS_RESP_LED2_TYPE_INVALID 0xffUL + u8 led2_group_id; + u8 unused_3; + __le16 led2_state_caps; + #define PORT_LED_QCAPS_RESP_LED2_STATE_CAPS_ENABLED 0x1UL + #define PORT_LED_QCAPS_RESP_LED2_STATE_CAPS_OFF_SUPPORTED 0x2UL + #define PORT_LED_QCAPS_RESP_LED2_STATE_CAPS_ON_SUPPORTED 0x4UL + #define PORT_LED_QCAPS_RESP_LED2_STATE_CAPS_BLINK_SUPPORTED 0x8UL + #define PORT_LED_QCAPS_RESP_LED2_STATE_CAPS_BLINK_ALT_SUPPORTED 0x10UL + __le16 led2_color_caps; + #define PORT_LED_QCAPS_RESP_LED2_COLOR_CAPS_RSVD 0x1UL + #define PORT_LED_QCAPS_RESP_LED2_COLOR_CAPS_AMBER_SUPPORTED 0x2UL + #define PORT_LED_QCAPS_RESP_LED2_COLOR_CAPS_GREEN_SUPPORTED 0x4UL + u8 led3_id; + u8 led3_type; + #define PORT_LED_QCAPS_RESP_LED3_TYPE_SPEED 0x0UL + #define PORT_LED_QCAPS_RESP_LED3_TYPE_ACTIVITY 0x1UL + #define PORT_LED_QCAPS_RESP_LED3_TYPE_INVALID 0xffUL + u8 led3_group_id; + u8 unused_4; + __le16 led3_state_caps; + #define PORT_LED_QCAPS_RESP_LED3_STATE_CAPS_ENABLED 0x1UL + #define PORT_LED_QCAPS_RESP_LED3_STATE_CAPS_OFF_SUPPORTED 0x2UL + #define PORT_LED_QCAPS_RESP_LED3_STATE_CAPS_ON_SUPPORTED 0x4UL + #define PORT_LED_QCAPS_RESP_LED3_STATE_CAPS_BLINK_SUPPORTED 0x8UL + #define PORT_LED_QCAPS_RESP_LED3_STATE_CAPS_BLINK_ALT_SUPPORTED 0x10UL + __le16 led3_color_caps; + #define PORT_LED_QCAPS_RESP_LED3_COLOR_CAPS_RSVD 0x1UL + #define PORT_LED_QCAPS_RESP_LED3_COLOR_CAPS_AMBER_SUPPORTED 0x2UL + #define PORT_LED_QCAPS_RESP_LED3_COLOR_CAPS_GREEN_SUPPORTED 0x4UL + u8 unused_5; + u8 unused_6; + u8 unused_7; + u8 valid; +}; + +/* hwrm_queue_qportcfg */ +/* Input (24 bytes) */ +struct hwrm_queue_qportcfg_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 flags; + #define QUEUE_QPORTCFG_REQ_FLAGS_PATH 0x1UL + #define QUEUE_QPORTCFG_REQ_FLAGS_PATH_TX 0x0UL + #define QUEUE_QPORTCFG_REQ_FLAGS_PATH_RX 0x1UL + #define QUEUE_QPORTCFG_REQ_FLAGS_PATH_LAST QUEUE_QPORTCFG_REQ_FLAGS_PATH_RX + __le16 port_id; + __le16 unused_0; +}; + +/* Output (32 bytes) */ +struct hwrm_queue_qportcfg_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + u8 max_configurable_queues; + u8 max_configurable_lossless_queues; + u8 queue_cfg_allowed; + u8 queue_cfg_info; + #define QUEUE_QPORTCFG_RESP_QUEUE_CFG_INFO_ASYM_CFG 0x1UL + u8 queue_pfcenable_cfg_allowed; + u8 queue_pri2cos_cfg_allowed; + u8 queue_cos2bw_cfg_allowed; + u8 queue_id0; + u8 queue_id0_service_profile; + #define QUEUE_QPORTCFG_RESP_QUEUE_ID0_SERVICE_PROFILE_LOSSY 0x0UL + #define QUEUE_QPORTCFG_RESP_QUEUE_ID0_SERVICE_PROFILE_LOSSLESS 0x1UL + #define QUEUE_QPORTCFG_RESP_QUEUE_ID0_SERVICE_PROFILE_UNKNOWN 0xffUL + u8 queue_id1; + u8 queue_id1_service_profile; + #define QUEUE_QPORTCFG_RESP_QUEUE_ID1_SERVICE_PROFILE_LOSSY 0x0UL + #define QUEUE_QPORTCFG_RESP_QUEUE_ID1_SERVICE_PROFILE_LOSSLESS 0x1UL + #define QUEUE_QPORTCFG_RESP_QUEUE_ID1_SERVICE_PROFILE_UNKNOWN 0xffUL + u8 queue_id2; + u8 queue_id2_service_profile; + #define QUEUE_QPORTCFG_RESP_QUEUE_ID2_SERVICE_PROFILE_LOSSY 0x0UL + #define QUEUE_QPORTCFG_RESP_QUEUE_ID2_SERVICE_PROFILE_LOSSLESS 0x1UL + #define QUEUE_QPORTCFG_RESP_QUEUE_ID2_SERVICE_PROFILE_UNKNOWN 0xffUL + u8 queue_id3; + u8 queue_id3_service_profile; + #define QUEUE_QPORTCFG_RESP_QUEUE_ID3_SERVICE_PROFILE_LOSSY 0x0UL + #define QUEUE_QPORTCFG_RESP_QUEUE_ID3_SERVICE_PROFILE_LOSSLESS 0x1UL + #define QUEUE_QPORTCFG_RESP_QUEUE_ID3_SERVICE_PROFILE_UNKNOWN 0xffUL + u8 queue_id4; + u8 queue_id4_service_profile; + #define QUEUE_QPORTCFG_RESP_QUEUE_ID4_SERVICE_PROFILE_LOSSY 0x0UL + #define QUEUE_QPORTCFG_RESP_QUEUE_ID4_SERVICE_PROFILE_LOSSLESS 0x1UL + #define QUEUE_QPORTCFG_RESP_QUEUE_ID4_SERVICE_PROFILE_UNKNOWN 0xffUL + u8 queue_id5; + u8 queue_id5_service_profile; + #define QUEUE_QPORTCFG_RESP_QUEUE_ID5_SERVICE_PROFILE_LOSSY 0x0UL + #define QUEUE_QPORTCFG_RESP_QUEUE_ID5_SERVICE_PROFILE_LOSSLESS 0x1UL + #define QUEUE_QPORTCFG_RESP_QUEUE_ID5_SERVICE_PROFILE_UNKNOWN 0xffUL + u8 queue_id6; + u8 queue_id6_service_profile; + #define QUEUE_QPORTCFG_RESP_QUEUE_ID6_SERVICE_PROFILE_LOSSY 0x0UL + #define QUEUE_QPORTCFG_RESP_QUEUE_ID6_SERVICE_PROFILE_LOSSLESS 0x1UL + #define QUEUE_QPORTCFG_RESP_QUEUE_ID6_SERVICE_PROFILE_UNKNOWN 0xffUL + u8 queue_id7; + u8 queue_id7_service_profile; + #define QUEUE_QPORTCFG_RESP_QUEUE_ID7_SERVICE_PROFILE_LOSSY 0x0UL + #define QUEUE_QPORTCFG_RESP_QUEUE_ID7_SERVICE_PROFILE_LOSSLESS 0x1UL + #define QUEUE_QPORTCFG_RESP_QUEUE_ID7_SERVICE_PROFILE_UNKNOWN 0xffUL + u8 valid; +}; + +/* hwrm_queue_qcfg */ +/* Input (24 bytes) */ +struct hwrm_queue_qcfg_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 flags; + #define QUEUE_QCFG_REQ_FLAGS_PATH 0x1UL + #define QUEUE_QCFG_REQ_FLAGS_PATH_TX 0x0UL + #define QUEUE_QCFG_REQ_FLAGS_PATH_RX 0x1UL + #define QUEUE_QCFG_REQ_FLAGS_PATH_LAST QUEUE_QCFG_REQ_FLAGS_PATH_RX + __le32 queue_id; +}; + +/* Output (16 bytes) */ +struct hwrm_queue_qcfg_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 queue_len; + u8 service_profile; + #define QUEUE_QCFG_RESP_SERVICE_PROFILE_LOSSY 0x0UL + #define QUEUE_QCFG_RESP_SERVICE_PROFILE_LOSSLESS 0x1UL + #define QUEUE_QCFG_RESP_SERVICE_PROFILE_UNKNOWN 0xffUL + u8 queue_cfg_info; + #define QUEUE_QCFG_RESP_QUEUE_CFG_INFO_ASYM_CFG 0x1UL + u8 unused_0; + u8 valid; +}; + +/* hwrm_queue_cfg */ +/* Input (40 bytes) */ +struct hwrm_queue_cfg_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 flags; + #define QUEUE_CFG_REQ_FLAGS_PATH_MASK 0x3UL + #define QUEUE_CFG_REQ_FLAGS_PATH_SFT 0 + #define QUEUE_CFG_REQ_FLAGS_PATH_TX 0x0UL + #define QUEUE_CFG_REQ_FLAGS_PATH_RX 0x1UL + #define QUEUE_CFG_REQ_FLAGS_PATH_BIDIR 0x2UL + #define QUEUE_CFG_REQ_FLAGS_PATH_LAST QUEUE_CFG_REQ_FLAGS_PATH_BIDIR + __le32 enables; + #define QUEUE_CFG_REQ_ENABLES_DFLT_LEN 0x1UL + #define QUEUE_CFG_REQ_ENABLES_SERVICE_PROFILE 0x2UL + __le32 queue_id; + __le32 dflt_len; + u8 service_profile; + #define QUEUE_CFG_REQ_SERVICE_PROFILE_LOSSY 0x0UL + #define QUEUE_CFG_REQ_SERVICE_PROFILE_LOSSLESS 0x1UL + #define QUEUE_CFG_REQ_SERVICE_PROFILE_UNKNOWN 0xffUL + u8 unused_0[7]; +}; + +/* Output (16 bytes) */ +struct hwrm_queue_cfg_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_queue_pfcenable_qcfg */ +/* Input (24 bytes) */ +struct hwrm_queue_pfcenable_qcfg_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le16 port_id; + __le16 unused_0[3]; +}; + +/* Output (16 bytes) */ +struct hwrm_queue_pfcenable_qcfg_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 flags; + #define QUEUE_PFCENABLE_QCFG_RESP_FLAGS_PRI0_PFC_ENABLED 0x1UL + #define QUEUE_PFCENABLE_QCFG_RESP_FLAGS_PRI1_PFC_ENABLED 0x2UL + #define QUEUE_PFCENABLE_QCFG_RESP_FLAGS_PRI2_PFC_ENABLED 0x4UL + #define QUEUE_PFCENABLE_QCFG_RESP_FLAGS_PRI3_PFC_ENABLED 0x8UL + #define QUEUE_PFCENABLE_QCFG_RESP_FLAGS_PRI4_PFC_ENABLED 0x10UL + #define QUEUE_PFCENABLE_QCFG_RESP_FLAGS_PRI5_PFC_ENABLED 0x20UL + #define QUEUE_PFCENABLE_QCFG_RESP_FLAGS_PRI6_PFC_ENABLED 0x40UL + #define QUEUE_PFCENABLE_QCFG_RESP_FLAGS_PRI7_PFC_ENABLED 0x80UL + u8 unused_0; + u8 unused_1; + u8 unused_2; + u8 valid; +}; + +/* hwrm_queue_pfcenable_cfg */ +/* Input (24 bytes) */ +struct hwrm_queue_pfcenable_cfg_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 flags; + #define QUEUE_PFCENABLE_CFG_REQ_FLAGS_PRI0_PFC_ENABLED 0x1UL + #define QUEUE_PFCENABLE_CFG_REQ_FLAGS_PRI1_PFC_ENABLED 0x2UL + #define QUEUE_PFCENABLE_CFG_REQ_FLAGS_PRI2_PFC_ENABLED 0x4UL + #define QUEUE_PFCENABLE_CFG_REQ_FLAGS_PRI3_PFC_ENABLED 0x8UL + #define QUEUE_PFCENABLE_CFG_REQ_FLAGS_PRI4_PFC_ENABLED 0x10UL + #define QUEUE_PFCENABLE_CFG_REQ_FLAGS_PRI5_PFC_ENABLED 0x20UL + #define QUEUE_PFCENABLE_CFG_REQ_FLAGS_PRI6_PFC_ENABLED 0x40UL + #define QUEUE_PFCENABLE_CFG_REQ_FLAGS_PRI7_PFC_ENABLED 0x80UL + __le16 port_id; + __le16 unused_0; +}; + +/* Output (16 bytes) */ +struct hwrm_queue_pfcenable_cfg_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_queue_pri2cos_qcfg */ +/* Input (24 bytes) */ +struct hwrm_queue_pri2cos_qcfg_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 flags; + #define QUEUE_PRI2COS_QCFG_REQ_FLAGS_PATH 0x1UL + #define QUEUE_PRI2COS_QCFG_REQ_FLAGS_PATH_TX (0x0UL << 0) + #define QUEUE_PRI2COS_QCFG_REQ_FLAGS_PATH_RX (0x1UL << 0) + #define QUEUE_PRI2COS_QCFG_REQ_FLAGS_PATH_LAST QUEUE_PRI2COS_QCFG_REQ_FLAGS_PATH_RX + #define QUEUE_PRI2COS_QCFG_REQ_FLAGS_IVLAN 0x2UL + u8 port_id; + u8 unused_0[3]; +}; + +/* Output (24 bytes) */ +struct hwrm_queue_pri2cos_qcfg_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + u8 pri0_cos_queue_id; + u8 pri1_cos_queue_id; + u8 pri2_cos_queue_id; + u8 pri3_cos_queue_id; + u8 pri4_cos_queue_id; + u8 pri5_cos_queue_id; + u8 pri6_cos_queue_id; + u8 pri7_cos_queue_id; + u8 queue_cfg_info; + #define QUEUE_PRI2COS_QCFG_RESP_QUEUE_CFG_INFO_ASYM_CFG 0x1UL + u8 unused_0; + __le16 unused_1; + u8 unused_2; + u8 unused_3; + u8 unused_4; + u8 valid; +}; + +/* hwrm_queue_pri2cos_cfg */ +/* Input (40 bytes) */ +struct hwrm_queue_pri2cos_cfg_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 flags; + #define QUEUE_PRI2COS_CFG_REQ_FLAGS_PATH_MASK 0x3UL + #define QUEUE_PRI2COS_CFG_REQ_FLAGS_PATH_SFT 0 + #define QUEUE_PRI2COS_CFG_REQ_FLAGS_PATH_TX (0x0UL << 0) + #define QUEUE_PRI2COS_CFG_REQ_FLAGS_PATH_RX (0x1UL << 0) + #define QUEUE_PRI2COS_CFG_REQ_FLAGS_PATH_BIDIR (0x2UL << 0) + #define QUEUE_PRI2COS_CFG_REQ_FLAGS_PATH_LAST QUEUE_PRI2COS_CFG_REQ_FLAGS_PATH_BIDIR + #define QUEUE_PRI2COS_CFG_REQ_FLAGS_IVLAN 0x4UL + __le32 enables; + #define QUEUE_PRI2COS_CFG_REQ_ENABLES_PRI0_COS_QUEUE_ID 0x1UL + #define QUEUE_PRI2COS_CFG_REQ_ENABLES_PRI1_COS_QUEUE_ID 0x2UL + #define QUEUE_PRI2COS_CFG_REQ_ENABLES_PRI2_COS_QUEUE_ID 0x4UL + #define QUEUE_PRI2COS_CFG_REQ_ENABLES_PRI3_COS_QUEUE_ID 0x8UL + #define QUEUE_PRI2COS_CFG_REQ_ENABLES_PRI4_COS_QUEUE_ID 0x10UL + #define QUEUE_PRI2COS_CFG_REQ_ENABLES_PRI5_COS_QUEUE_ID 0x20UL + #define QUEUE_PRI2COS_CFG_REQ_ENABLES_PRI6_COS_QUEUE_ID 0x40UL + #define QUEUE_PRI2COS_CFG_REQ_ENABLES_PRI7_COS_QUEUE_ID 0x80UL + u8 port_id; + u8 pri0_cos_queue_id; + u8 pri1_cos_queue_id; + u8 pri2_cos_queue_id; + u8 pri3_cos_queue_id; + u8 pri4_cos_queue_id; + u8 pri5_cos_queue_id; + u8 pri6_cos_queue_id; + u8 pri7_cos_queue_id; + u8 unused_0[7]; +}; + +/* Output (16 bytes) */ +struct hwrm_queue_pri2cos_cfg_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_queue_cos2bw_qcfg */ +/* Input (24 bytes) */ +struct hwrm_queue_cos2bw_qcfg_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le16 port_id; + __le16 unused_0[3]; +}; + +/* Output (112 bytes) */ +struct hwrm_queue_cos2bw_qcfg_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + u8 queue_id0; + u8 unused_0; + __le16 unused_1; + __le32 queue_id0_min_bw; + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID0_MIN_BW_BW_VALUE_MASK 0xfffffffUL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID0_MIN_BW_BW_VALUE_SFT 0 + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID0_MIN_BW_SCALE 0x10000000UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID0_MIN_BW_SCALE_BITS (0x0UL << 28) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID0_MIN_BW_SCALE_BYTES (0x1UL << 28) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID0_MIN_BW_SCALE_LAST QUEUE_COS2BW_QCFG_RESP_QUEUE_ID0_MIN_BW_SCALE_BYTES + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID0_MIN_BW_BW_VALUE_UNIT_MASK 0xe0000000UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID0_MIN_BW_BW_VALUE_UNIT_SFT 29 + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID0_MIN_BW_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID0_MIN_BW_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID0_MIN_BW_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID0_MIN_BW_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID0_MIN_BW_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID0_MIN_BW_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID0_MIN_BW_BW_VALUE_UNIT_LAST QUEUE_COS2BW_QCFG_RESP_QUEUE_ID0_MIN_BW_BW_VALUE_UNIT_INVALID + __le32 queue_id0_max_bw; + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID0_MAX_BW_BW_VALUE_MASK 0xfffffffUL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID0_MAX_BW_BW_VALUE_SFT 0 + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID0_MAX_BW_SCALE 0x10000000UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID0_MAX_BW_SCALE_BITS (0x0UL << 28) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID0_MAX_BW_SCALE_BYTES (0x1UL << 28) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID0_MAX_BW_SCALE_LAST QUEUE_COS2BW_QCFG_RESP_QUEUE_ID0_MAX_BW_SCALE_BYTES + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID0_MAX_BW_BW_VALUE_UNIT_MASK 0xe0000000UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID0_MAX_BW_BW_VALUE_UNIT_SFT 29 + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID0_MAX_BW_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID0_MAX_BW_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID0_MAX_BW_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID0_MAX_BW_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID0_MAX_BW_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID0_MAX_BW_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID0_MAX_BW_BW_VALUE_UNIT_LAST QUEUE_COS2BW_QCFG_RESP_QUEUE_ID0_MAX_BW_BW_VALUE_UNIT_INVALID + u8 queue_id0_tsa_assign; + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID0_TSA_ASSIGN_SP 0x0UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID0_TSA_ASSIGN_ETS 0x1UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID0_TSA_ASSIGN_RESERVED_FIRST 0x2UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID0_TSA_ASSIGN_RESERVED_LAST 0xffUL + u8 queue_id0_pri_lvl; + u8 queue_id0_bw_weight; + u8 queue_id1; + __le32 queue_id1_min_bw; + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID1_MIN_BW_BW_VALUE_MASK 0xfffffffUL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID1_MIN_BW_BW_VALUE_SFT 0 + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID1_MIN_BW_SCALE 0x10000000UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID1_MIN_BW_SCALE_BITS (0x0UL << 28) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID1_MIN_BW_SCALE_BYTES (0x1UL << 28) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID1_MIN_BW_SCALE_LAST QUEUE_COS2BW_QCFG_RESP_QUEUE_ID1_MIN_BW_SCALE_BYTES + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID1_MIN_BW_BW_VALUE_UNIT_MASK 0xe0000000UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID1_MIN_BW_BW_VALUE_UNIT_SFT 29 + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID1_MIN_BW_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID1_MIN_BW_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID1_MIN_BW_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID1_MIN_BW_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID1_MIN_BW_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID1_MIN_BW_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID1_MIN_BW_BW_VALUE_UNIT_LAST QUEUE_COS2BW_QCFG_RESP_QUEUE_ID1_MIN_BW_BW_VALUE_UNIT_INVALID + __le32 queue_id1_max_bw; + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID1_MAX_BW_BW_VALUE_MASK 0xfffffffUL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID1_MAX_BW_BW_VALUE_SFT 0 + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID1_MAX_BW_SCALE 0x10000000UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID1_MAX_BW_SCALE_BITS (0x0UL << 28) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID1_MAX_BW_SCALE_BYTES (0x1UL << 28) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID1_MAX_BW_SCALE_LAST QUEUE_COS2BW_QCFG_RESP_QUEUE_ID1_MAX_BW_SCALE_BYTES + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID1_MAX_BW_BW_VALUE_UNIT_MASK 0xe0000000UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID1_MAX_BW_BW_VALUE_UNIT_SFT 29 + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID1_MAX_BW_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID1_MAX_BW_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID1_MAX_BW_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID1_MAX_BW_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID1_MAX_BW_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID1_MAX_BW_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID1_MAX_BW_BW_VALUE_UNIT_LAST QUEUE_COS2BW_QCFG_RESP_QUEUE_ID1_MAX_BW_BW_VALUE_UNIT_INVALID + u8 queue_id1_tsa_assign; + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID1_TSA_ASSIGN_SP 0x0UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID1_TSA_ASSIGN_ETS 0x1UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID1_TSA_ASSIGN_RESERVED_FIRST 0x2UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID1_TSA_ASSIGN_RESERVED_LAST 0xffUL + u8 queue_id1_pri_lvl; + u8 queue_id1_bw_weight; + u8 queue_id2; + __le32 queue_id2_min_bw; + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID2_MIN_BW_BW_VALUE_MASK 0xfffffffUL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID2_MIN_BW_BW_VALUE_SFT 0 + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID2_MIN_BW_SCALE 0x10000000UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID2_MIN_BW_SCALE_BITS (0x0UL << 28) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID2_MIN_BW_SCALE_BYTES (0x1UL << 28) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID2_MIN_BW_SCALE_LAST QUEUE_COS2BW_QCFG_RESP_QUEUE_ID2_MIN_BW_SCALE_BYTES + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID2_MIN_BW_BW_VALUE_UNIT_MASK 0xe0000000UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID2_MIN_BW_BW_VALUE_UNIT_SFT 29 + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID2_MIN_BW_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID2_MIN_BW_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID2_MIN_BW_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID2_MIN_BW_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID2_MIN_BW_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID2_MIN_BW_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID2_MIN_BW_BW_VALUE_UNIT_LAST QUEUE_COS2BW_QCFG_RESP_QUEUE_ID2_MIN_BW_BW_VALUE_UNIT_INVALID + __le32 queue_id2_max_bw; + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID2_MAX_BW_BW_VALUE_MASK 0xfffffffUL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID2_MAX_BW_BW_VALUE_SFT 0 + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID2_MAX_BW_SCALE 0x10000000UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID2_MAX_BW_SCALE_BITS (0x0UL << 28) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID2_MAX_BW_SCALE_BYTES (0x1UL << 28) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID2_MAX_BW_SCALE_LAST QUEUE_COS2BW_QCFG_RESP_QUEUE_ID2_MAX_BW_SCALE_BYTES + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID2_MAX_BW_BW_VALUE_UNIT_MASK 0xe0000000UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID2_MAX_BW_BW_VALUE_UNIT_SFT 29 + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID2_MAX_BW_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID2_MAX_BW_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID2_MAX_BW_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID2_MAX_BW_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID2_MAX_BW_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID2_MAX_BW_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID2_MAX_BW_BW_VALUE_UNIT_LAST QUEUE_COS2BW_QCFG_RESP_QUEUE_ID2_MAX_BW_BW_VALUE_UNIT_INVALID + u8 queue_id2_tsa_assign; + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID2_TSA_ASSIGN_SP 0x0UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID2_TSA_ASSIGN_ETS 0x1UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID2_TSA_ASSIGN_RESERVED_FIRST 0x2UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID2_TSA_ASSIGN_RESERVED_LAST 0xffUL + u8 queue_id2_pri_lvl; + u8 queue_id2_bw_weight; + u8 queue_id3; + __le32 queue_id3_min_bw; + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID3_MIN_BW_BW_VALUE_MASK 0xfffffffUL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID3_MIN_BW_BW_VALUE_SFT 0 + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID3_MIN_BW_SCALE 0x10000000UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID3_MIN_BW_SCALE_BITS (0x0UL << 28) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID3_MIN_BW_SCALE_BYTES (0x1UL << 28) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID3_MIN_BW_SCALE_LAST QUEUE_COS2BW_QCFG_RESP_QUEUE_ID3_MIN_BW_SCALE_BYTES + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID3_MIN_BW_BW_VALUE_UNIT_MASK 0xe0000000UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID3_MIN_BW_BW_VALUE_UNIT_SFT 29 + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID3_MIN_BW_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID3_MIN_BW_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID3_MIN_BW_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID3_MIN_BW_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID3_MIN_BW_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID3_MIN_BW_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID3_MIN_BW_BW_VALUE_UNIT_LAST QUEUE_COS2BW_QCFG_RESP_QUEUE_ID3_MIN_BW_BW_VALUE_UNIT_INVALID + __le32 queue_id3_max_bw; + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID3_MAX_BW_BW_VALUE_MASK 0xfffffffUL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID3_MAX_BW_BW_VALUE_SFT 0 + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID3_MAX_BW_SCALE 0x10000000UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID3_MAX_BW_SCALE_BITS (0x0UL << 28) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID3_MAX_BW_SCALE_BYTES (0x1UL << 28) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID3_MAX_BW_SCALE_LAST QUEUE_COS2BW_QCFG_RESP_QUEUE_ID3_MAX_BW_SCALE_BYTES + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID3_MAX_BW_BW_VALUE_UNIT_MASK 0xe0000000UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID3_MAX_BW_BW_VALUE_UNIT_SFT 29 + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID3_MAX_BW_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID3_MAX_BW_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID3_MAX_BW_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID3_MAX_BW_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID3_MAX_BW_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID3_MAX_BW_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID3_MAX_BW_BW_VALUE_UNIT_LAST QUEUE_COS2BW_QCFG_RESP_QUEUE_ID3_MAX_BW_BW_VALUE_UNIT_INVALID + u8 queue_id3_tsa_assign; + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID3_TSA_ASSIGN_SP 0x0UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID3_TSA_ASSIGN_ETS 0x1UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID3_TSA_ASSIGN_RESERVED_FIRST 0x2UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID3_TSA_ASSIGN_RESERVED_LAST 0xffUL + u8 queue_id3_pri_lvl; + u8 queue_id3_bw_weight; + u8 queue_id4; + __le32 queue_id4_min_bw; + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID4_MIN_BW_BW_VALUE_MASK 0xfffffffUL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID4_MIN_BW_BW_VALUE_SFT 0 + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID4_MIN_BW_SCALE 0x10000000UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID4_MIN_BW_SCALE_BITS (0x0UL << 28) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID4_MIN_BW_SCALE_BYTES (0x1UL << 28) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID4_MIN_BW_SCALE_LAST QUEUE_COS2BW_QCFG_RESP_QUEUE_ID4_MIN_BW_SCALE_BYTES + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID4_MIN_BW_BW_VALUE_UNIT_MASK 0xe0000000UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID4_MIN_BW_BW_VALUE_UNIT_SFT 29 + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID4_MIN_BW_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID4_MIN_BW_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID4_MIN_BW_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID4_MIN_BW_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID4_MIN_BW_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID4_MIN_BW_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID4_MIN_BW_BW_VALUE_UNIT_LAST QUEUE_COS2BW_QCFG_RESP_QUEUE_ID4_MIN_BW_BW_VALUE_UNIT_INVALID + __le32 queue_id4_max_bw; + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID4_MAX_BW_BW_VALUE_MASK 0xfffffffUL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID4_MAX_BW_BW_VALUE_SFT 0 + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID4_MAX_BW_SCALE 0x10000000UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID4_MAX_BW_SCALE_BITS (0x0UL << 28) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID4_MAX_BW_SCALE_BYTES (0x1UL << 28) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID4_MAX_BW_SCALE_LAST QUEUE_COS2BW_QCFG_RESP_QUEUE_ID4_MAX_BW_SCALE_BYTES + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID4_MAX_BW_BW_VALUE_UNIT_MASK 0xe0000000UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID4_MAX_BW_BW_VALUE_UNIT_SFT 29 + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID4_MAX_BW_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID4_MAX_BW_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID4_MAX_BW_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID4_MAX_BW_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID4_MAX_BW_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID4_MAX_BW_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID4_MAX_BW_BW_VALUE_UNIT_LAST QUEUE_COS2BW_QCFG_RESP_QUEUE_ID4_MAX_BW_BW_VALUE_UNIT_INVALID + u8 queue_id4_tsa_assign; + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID4_TSA_ASSIGN_SP 0x0UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID4_TSA_ASSIGN_ETS 0x1UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID4_TSA_ASSIGN_RESERVED_FIRST 0x2UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID4_TSA_ASSIGN_RESERVED_LAST 0xffUL + u8 queue_id4_pri_lvl; + u8 queue_id4_bw_weight; + u8 queue_id5; + __le32 queue_id5_min_bw; + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID5_MIN_BW_BW_VALUE_MASK 0xfffffffUL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID5_MIN_BW_BW_VALUE_SFT 0 + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID5_MIN_BW_SCALE 0x10000000UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID5_MIN_BW_SCALE_BITS (0x0UL << 28) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID5_MIN_BW_SCALE_BYTES (0x1UL << 28) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID5_MIN_BW_SCALE_LAST QUEUE_COS2BW_QCFG_RESP_QUEUE_ID5_MIN_BW_SCALE_BYTES + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID5_MIN_BW_BW_VALUE_UNIT_MASK 0xe0000000UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID5_MIN_BW_BW_VALUE_UNIT_SFT 29 + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID5_MIN_BW_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID5_MIN_BW_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID5_MIN_BW_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID5_MIN_BW_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID5_MIN_BW_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID5_MIN_BW_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID5_MIN_BW_BW_VALUE_UNIT_LAST QUEUE_COS2BW_QCFG_RESP_QUEUE_ID5_MIN_BW_BW_VALUE_UNIT_INVALID + __le32 queue_id5_max_bw; + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID5_MAX_BW_BW_VALUE_MASK 0xfffffffUL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID5_MAX_BW_BW_VALUE_SFT 0 + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID5_MAX_BW_SCALE 0x10000000UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID5_MAX_BW_SCALE_BITS (0x0UL << 28) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID5_MAX_BW_SCALE_BYTES (0x1UL << 28) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID5_MAX_BW_SCALE_LAST QUEUE_COS2BW_QCFG_RESP_QUEUE_ID5_MAX_BW_SCALE_BYTES + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID5_MAX_BW_BW_VALUE_UNIT_MASK 0xe0000000UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID5_MAX_BW_BW_VALUE_UNIT_SFT 29 + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID5_MAX_BW_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID5_MAX_BW_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID5_MAX_BW_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID5_MAX_BW_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID5_MAX_BW_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID5_MAX_BW_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID5_MAX_BW_BW_VALUE_UNIT_LAST QUEUE_COS2BW_QCFG_RESP_QUEUE_ID5_MAX_BW_BW_VALUE_UNIT_INVALID + u8 queue_id5_tsa_assign; + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID5_TSA_ASSIGN_SP 0x0UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID5_TSA_ASSIGN_ETS 0x1UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID5_TSA_ASSIGN_RESERVED_FIRST 0x2UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID5_TSA_ASSIGN_RESERVED_LAST 0xffUL + u8 queue_id5_pri_lvl; + u8 queue_id5_bw_weight; + u8 queue_id6; + __le32 queue_id6_min_bw; + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID6_MIN_BW_BW_VALUE_MASK 0xfffffffUL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID6_MIN_BW_BW_VALUE_SFT 0 + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID6_MIN_BW_SCALE 0x10000000UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID6_MIN_BW_SCALE_BITS (0x0UL << 28) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID6_MIN_BW_SCALE_BYTES (0x1UL << 28) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID6_MIN_BW_SCALE_LAST QUEUE_COS2BW_QCFG_RESP_QUEUE_ID6_MIN_BW_SCALE_BYTES + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID6_MIN_BW_BW_VALUE_UNIT_MASK 0xe0000000UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID6_MIN_BW_BW_VALUE_UNIT_SFT 29 + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID6_MIN_BW_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID6_MIN_BW_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID6_MIN_BW_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID6_MIN_BW_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID6_MIN_BW_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID6_MIN_BW_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID6_MIN_BW_BW_VALUE_UNIT_LAST QUEUE_COS2BW_QCFG_RESP_QUEUE_ID6_MIN_BW_BW_VALUE_UNIT_INVALID + __le32 queue_id6_max_bw; + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID6_MAX_BW_BW_VALUE_MASK 0xfffffffUL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID6_MAX_BW_BW_VALUE_SFT 0 + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID6_MAX_BW_SCALE 0x10000000UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID6_MAX_BW_SCALE_BITS (0x0UL << 28) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID6_MAX_BW_SCALE_BYTES (0x1UL << 28) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID6_MAX_BW_SCALE_LAST QUEUE_COS2BW_QCFG_RESP_QUEUE_ID6_MAX_BW_SCALE_BYTES + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID6_MAX_BW_BW_VALUE_UNIT_MASK 0xe0000000UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID6_MAX_BW_BW_VALUE_UNIT_SFT 29 + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID6_MAX_BW_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID6_MAX_BW_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID6_MAX_BW_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID6_MAX_BW_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID6_MAX_BW_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID6_MAX_BW_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID6_MAX_BW_BW_VALUE_UNIT_LAST QUEUE_COS2BW_QCFG_RESP_QUEUE_ID6_MAX_BW_BW_VALUE_UNIT_INVALID + u8 queue_id6_tsa_assign; + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID6_TSA_ASSIGN_SP 0x0UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID6_TSA_ASSIGN_ETS 0x1UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID6_TSA_ASSIGN_RESERVED_FIRST 0x2UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID6_TSA_ASSIGN_RESERVED_LAST 0xffUL + u8 queue_id6_pri_lvl; + u8 queue_id6_bw_weight; + u8 queue_id7; + __le32 queue_id7_min_bw; + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID7_MIN_BW_BW_VALUE_MASK 0xfffffffUL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID7_MIN_BW_BW_VALUE_SFT 0 + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID7_MIN_BW_SCALE 0x10000000UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID7_MIN_BW_SCALE_BITS (0x0UL << 28) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID7_MIN_BW_SCALE_BYTES (0x1UL << 28) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID7_MIN_BW_SCALE_LAST QUEUE_COS2BW_QCFG_RESP_QUEUE_ID7_MIN_BW_SCALE_BYTES + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID7_MIN_BW_BW_VALUE_UNIT_MASK 0xe0000000UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID7_MIN_BW_BW_VALUE_UNIT_SFT 29 + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID7_MIN_BW_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID7_MIN_BW_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID7_MIN_BW_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID7_MIN_BW_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID7_MIN_BW_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID7_MIN_BW_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID7_MIN_BW_BW_VALUE_UNIT_LAST QUEUE_COS2BW_QCFG_RESP_QUEUE_ID7_MIN_BW_BW_VALUE_UNIT_INVALID + __le32 queue_id7_max_bw; + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID7_MAX_BW_BW_VALUE_MASK 0xfffffffUL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID7_MAX_BW_BW_VALUE_SFT 0 + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID7_MAX_BW_SCALE 0x10000000UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID7_MAX_BW_SCALE_BITS (0x0UL << 28) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID7_MAX_BW_SCALE_BYTES (0x1UL << 28) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID7_MAX_BW_SCALE_LAST QUEUE_COS2BW_QCFG_RESP_QUEUE_ID7_MAX_BW_SCALE_BYTES + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID7_MAX_BW_BW_VALUE_UNIT_MASK 0xe0000000UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID7_MAX_BW_BW_VALUE_UNIT_SFT 29 + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID7_MAX_BW_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID7_MAX_BW_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID7_MAX_BW_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID7_MAX_BW_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID7_MAX_BW_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID7_MAX_BW_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID7_MAX_BW_BW_VALUE_UNIT_LAST QUEUE_COS2BW_QCFG_RESP_QUEUE_ID7_MAX_BW_BW_VALUE_UNIT_INVALID + u8 queue_id7_tsa_assign; + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID7_TSA_ASSIGN_SP 0x0UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID7_TSA_ASSIGN_ETS 0x1UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID7_TSA_ASSIGN_RESERVED_FIRST 0x2UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID7_TSA_ASSIGN_RESERVED_LAST 0xffUL + u8 queue_id7_pri_lvl; + u8 queue_id7_bw_weight; + u8 unused_2; + u8 unused_3; + u8 unused_4; + u8 unused_5; + u8 valid; +}; + +/* hwrm_queue_cos2bw_cfg */ +/* Input (128 bytes) */ +struct hwrm_queue_cos2bw_cfg_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 flags; + __le32 enables; + #define QUEUE_COS2BW_CFG_REQ_ENABLES_COS_QUEUE_ID0_VALID 0x1UL + #define QUEUE_COS2BW_CFG_REQ_ENABLES_COS_QUEUE_ID1_VALID 0x2UL + #define QUEUE_COS2BW_CFG_REQ_ENABLES_COS_QUEUE_ID2_VALID 0x4UL + #define QUEUE_COS2BW_CFG_REQ_ENABLES_COS_QUEUE_ID3_VALID 0x8UL + #define QUEUE_COS2BW_CFG_REQ_ENABLES_COS_QUEUE_ID4_VALID 0x10UL + #define QUEUE_COS2BW_CFG_REQ_ENABLES_COS_QUEUE_ID5_VALID 0x20UL + #define QUEUE_COS2BW_CFG_REQ_ENABLES_COS_QUEUE_ID6_VALID 0x40UL + #define QUEUE_COS2BW_CFG_REQ_ENABLES_COS_QUEUE_ID7_VALID 0x80UL + __le16 port_id; + u8 queue_id0; + u8 unused_0; + __le32 queue_id0_min_bw; + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID0_MIN_BW_BW_VALUE_MASK 0xfffffffUL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID0_MIN_BW_BW_VALUE_SFT 0 + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID0_MIN_BW_SCALE 0x10000000UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID0_MIN_BW_SCALE_BITS (0x0UL << 28) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID0_MIN_BW_SCALE_BYTES (0x1UL << 28) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID0_MIN_BW_SCALE_LAST QUEUE_COS2BW_CFG_REQ_QUEUE_ID0_MIN_BW_SCALE_BYTES + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID0_MIN_BW_BW_VALUE_UNIT_MASK 0xe0000000UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID0_MIN_BW_BW_VALUE_UNIT_SFT 29 + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID0_MIN_BW_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID0_MIN_BW_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID0_MIN_BW_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID0_MIN_BW_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID0_MIN_BW_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID0_MIN_BW_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID0_MIN_BW_BW_VALUE_UNIT_LAST QUEUE_COS2BW_CFG_REQ_QUEUE_ID0_MIN_BW_BW_VALUE_UNIT_INVALID + __le32 queue_id0_max_bw; + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID0_MAX_BW_BW_VALUE_MASK 0xfffffffUL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID0_MAX_BW_BW_VALUE_SFT 0 + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID0_MAX_BW_SCALE 0x10000000UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID0_MAX_BW_SCALE_BITS (0x0UL << 28) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID0_MAX_BW_SCALE_BYTES (0x1UL << 28) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID0_MAX_BW_SCALE_LAST QUEUE_COS2BW_CFG_REQ_QUEUE_ID0_MAX_BW_SCALE_BYTES + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID0_MAX_BW_BW_VALUE_UNIT_MASK 0xe0000000UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID0_MAX_BW_BW_VALUE_UNIT_SFT 29 + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID0_MAX_BW_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID0_MAX_BW_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID0_MAX_BW_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID0_MAX_BW_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID0_MAX_BW_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID0_MAX_BW_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID0_MAX_BW_BW_VALUE_UNIT_LAST QUEUE_COS2BW_CFG_REQ_QUEUE_ID0_MAX_BW_BW_VALUE_UNIT_INVALID + u8 queue_id0_tsa_assign; + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID0_TSA_ASSIGN_SP 0x0UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID0_TSA_ASSIGN_ETS 0x1UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID0_TSA_ASSIGN_RESERVED_FIRST 0x2UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID0_TSA_ASSIGN_RESERVED_LAST 0xffUL + u8 queue_id0_pri_lvl; + u8 queue_id0_bw_weight; + u8 queue_id1; + __le32 queue_id1_min_bw; + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID1_MIN_BW_BW_VALUE_MASK 0xfffffffUL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID1_MIN_BW_BW_VALUE_SFT 0 + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID1_MIN_BW_SCALE 0x10000000UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID1_MIN_BW_SCALE_BITS (0x0UL << 28) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID1_MIN_BW_SCALE_BYTES (0x1UL << 28) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID1_MIN_BW_SCALE_LAST QUEUE_COS2BW_CFG_REQ_QUEUE_ID1_MIN_BW_SCALE_BYTES + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID1_MIN_BW_BW_VALUE_UNIT_MASK 0xe0000000UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID1_MIN_BW_BW_VALUE_UNIT_SFT 29 + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID1_MIN_BW_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID1_MIN_BW_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID1_MIN_BW_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID1_MIN_BW_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID1_MIN_BW_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID1_MIN_BW_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID1_MIN_BW_BW_VALUE_UNIT_LAST QUEUE_COS2BW_CFG_REQ_QUEUE_ID1_MIN_BW_BW_VALUE_UNIT_INVALID + __le32 queue_id1_max_bw; + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID1_MAX_BW_BW_VALUE_MASK 0xfffffffUL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID1_MAX_BW_BW_VALUE_SFT 0 + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID1_MAX_BW_SCALE 0x10000000UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID1_MAX_BW_SCALE_BITS (0x0UL << 28) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID1_MAX_BW_SCALE_BYTES (0x1UL << 28) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID1_MAX_BW_SCALE_LAST QUEUE_COS2BW_CFG_REQ_QUEUE_ID1_MAX_BW_SCALE_BYTES + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID1_MAX_BW_BW_VALUE_UNIT_MASK 0xe0000000UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID1_MAX_BW_BW_VALUE_UNIT_SFT 29 + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID1_MAX_BW_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID1_MAX_BW_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID1_MAX_BW_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID1_MAX_BW_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID1_MAX_BW_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID1_MAX_BW_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID1_MAX_BW_BW_VALUE_UNIT_LAST QUEUE_COS2BW_CFG_REQ_QUEUE_ID1_MAX_BW_BW_VALUE_UNIT_INVALID + u8 queue_id1_tsa_assign; + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID1_TSA_ASSIGN_SP 0x0UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID1_TSA_ASSIGN_ETS 0x1UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID1_TSA_ASSIGN_RESERVED_FIRST 0x2UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID1_TSA_ASSIGN_RESERVED_LAST 0xffUL + u8 queue_id1_pri_lvl; + u8 queue_id1_bw_weight; + u8 queue_id2; + __le32 queue_id2_min_bw; + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID2_MIN_BW_BW_VALUE_MASK 0xfffffffUL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID2_MIN_BW_BW_VALUE_SFT 0 + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID2_MIN_BW_SCALE 0x10000000UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID2_MIN_BW_SCALE_BITS (0x0UL << 28) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID2_MIN_BW_SCALE_BYTES (0x1UL << 28) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID2_MIN_BW_SCALE_LAST QUEUE_COS2BW_CFG_REQ_QUEUE_ID2_MIN_BW_SCALE_BYTES + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID2_MIN_BW_BW_VALUE_UNIT_MASK 0xe0000000UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID2_MIN_BW_BW_VALUE_UNIT_SFT 29 + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID2_MIN_BW_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID2_MIN_BW_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID2_MIN_BW_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID2_MIN_BW_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID2_MIN_BW_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID2_MIN_BW_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID2_MIN_BW_BW_VALUE_UNIT_LAST QUEUE_COS2BW_CFG_REQ_QUEUE_ID2_MIN_BW_BW_VALUE_UNIT_INVALID + __le32 queue_id2_max_bw; + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID2_MAX_BW_BW_VALUE_MASK 0xfffffffUL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID2_MAX_BW_BW_VALUE_SFT 0 + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID2_MAX_BW_SCALE 0x10000000UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID2_MAX_BW_SCALE_BITS (0x0UL << 28) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID2_MAX_BW_SCALE_BYTES (0x1UL << 28) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID2_MAX_BW_SCALE_LAST QUEUE_COS2BW_CFG_REQ_QUEUE_ID2_MAX_BW_SCALE_BYTES + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID2_MAX_BW_BW_VALUE_UNIT_MASK 0xe0000000UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID2_MAX_BW_BW_VALUE_UNIT_SFT 29 + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID2_MAX_BW_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID2_MAX_BW_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID2_MAX_BW_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID2_MAX_BW_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID2_MAX_BW_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID2_MAX_BW_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID2_MAX_BW_BW_VALUE_UNIT_LAST QUEUE_COS2BW_CFG_REQ_QUEUE_ID2_MAX_BW_BW_VALUE_UNIT_INVALID + u8 queue_id2_tsa_assign; + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID2_TSA_ASSIGN_SP 0x0UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID2_TSA_ASSIGN_ETS 0x1UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID2_TSA_ASSIGN_RESERVED_FIRST 0x2UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID2_TSA_ASSIGN_RESERVED_LAST 0xffUL + u8 queue_id2_pri_lvl; + u8 queue_id2_bw_weight; + u8 queue_id3; + __le32 queue_id3_min_bw; + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID3_MIN_BW_BW_VALUE_MASK 0xfffffffUL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID3_MIN_BW_BW_VALUE_SFT 0 + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID3_MIN_BW_SCALE 0x10000000UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID3_MIN_BW_SCALE_BITS (0x0UL << 28) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID3_MIN_BW_SCALE_BYTES (0x1UL << 28) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID3_MIN_BW_SCALE_LAST QUEUE_COS2BW_CFG_REQ_QUEUE_ID3_MIN_BW_SCALE_BYTES + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID3_MIN_BW_BW_VALUE_UNIT_MASK 0xe0000000UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID3_MIN_BW_BW_VALUE_UNIT_SFT 29 + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID3_MIN_BW_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID3_MIN_BW_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID3_MIN_BW_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID3_MIN_BW_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID3_MIN_BW_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID3_MIN_BW_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID3_MIN_BW_BW_VALUE_UNIT_LAST QUEUE_COS2BW_CFG_REQ_QUEUE_ID3_MIN_BW_BW_VALUE_UNIT_INVALID + __le32 queue_id3_max_bw; + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID3_MAX_BW_BW_VALUE_MASK 0xfffffffUL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID3_MAX_BW_BW_VALUE_SFT 0 + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID3_MAX_BW_SCALE 0x10000000UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID3_MAX_BW_SCALE_BITS (0x0UL << 28) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID3_MAX_BW_SCALE_BYTES (0x1UL << 28) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID3_MAX_BW_SCALE_LAST QUEUE_COS2BW_CFG_REQ_QUEUE_ID3_MAX_BW_SCALE_BYTES + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID3_MAX_BW_BW_VALUE_UNIT_MASK 0xe0000000UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID3_MAX_BW_BW_VALUE_UNIT_SFT 29 + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID3_MAX_BW_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID3_MAX_BW_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID3_MAX_BW_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID3_MAX_BW_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID3_MAX_BW_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID3_MAX_BW_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID3_MAX_BW_BW_VALUE_UNIT_LAST QUEUE_COS2BW_CFG_REQ_QUEUE_ID3_MAX_BW_BW_VALUE_UNIT_INVALID + u8 queue_id3_tsa_assign; + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID3_TSA_ASSIGN_SP 0x0UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID3_TSA_ASSIGN_ETS 0x1UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID3_TSA_ASSIGN_RESERVED_FIRST 0x2UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID3_TSA_ASSIGN_RESERVED_LAST 0xffUL + u8 queue_id3_pri_lvl; + u8 queue_id3_bw_weight; + u8 queue_id4; + __le32 queue_id4_min_bw; + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID4_MIN_BW_BW_VALUE_MASK 0xfffffffUL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID4_MIN_BW_BW_VALUE_SFT 0 + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID4_MIN_BW_SCALE 0x10000000UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID4_MIN_BW_SCALE_BITS (0x0UL << 28) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID4_MIN_BW_SCALE_BYTES (0x1UL << 28) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID4_MIN_BW_SCALE_LAST QUEUE_COS2BW_CFG_REQ_QUEUE_ID4_MIN_BW_SCALE_BYTES + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID4_MIN_BW_BW_VALUE_UNIT_MASK 0xe0000000UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID4_MIN_BW_BW_VALUE_UNIT_SFT 29 + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID4_MIN_BW_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID4_MIN_BW_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID4_MIN_BW_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID4_MIN_BW_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID4_MIN_BW_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID4_MIN_BW_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID4_MIN_BW_BW_VALUE_UNIT_LAST QUEUE_COS2BW_CFG_REQ_QUEUE_ID4_MIN_BW_BW_VALUE_UNIT_INVALID + __le32 queue_id4_max_bw; + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID4_MAX_BW_BW_VALUE_MASK 0xfffffffUL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID4_MAX_BW_BW_VALUE_SFT 0 + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID4_MAX_BW_SCALE 0x10000000UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID4_MAX_BW_SCALE_BITS (0x0UL << 28) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID4_MAX_BW_SCALE_BYTES (0x1UL << 28) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID4_MAX_BW_SCALE_LAST QUEUE_COS2BW_CFG_REQ_QUEUE_ID4_MAX_BW_SCALE_BYTES + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID4_MAX_BW_BW_VALUE_UNIT_MASK 0xe0000000UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID4_MAX_BW_BW_VALUE_UNIT_SFT 29 + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID4_MAX_BW_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID4_MAX_BW_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID4_MAX_BW_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID4_MAX_BW_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID4_MAX_BW_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID4_MAX_BW_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID4_MAX_BW_BW_VALUE_UNIT_LAST QUEUE_COS2BW_CFG_REQ_QUEUE_ID4_MAX_BW_BW_VALUE_UNIT_INVALID + u8 queue_id4_tsa_assign; + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID4_TSA_ASSIGN_SP 0x0UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID4_TSA_ASSIGN_ETS 0x1UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID4_TSA_ASSIGN_RESERVED_FIRST 0x2UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID4_TSA_ASSIGN_RESERVED_LAST 0xffUL + u8 queue_id4_pri_lvl; + u8 queue_id4_bw_weight; + u8 queue_id5; + __le32 queue_id5_min_bw; + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID5_MIN_BW_BW_VALUE_MASK 0xfffffffUL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID5_MIN_BW_BW_VALUE_SFT 0 + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID5_MIN_BW_SCALE 0x10000000UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID5_MIN_BW_SCALE_BITS (0x0UL << 28) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID5_MIN_BW_SCALE_BYTES (0x1UL << 28) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID5_MIN_BW_SCALE_LAST QUEUE_COS2BW_CFG_REQ_QUEUE_ID5_MIN_BW_SCALE_BYTES + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID5_MIN_BW_BW_VALUE_UNIT_MASK 0xe0000000UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID5_MIN_BW_BW_VALUE_UNIT_SFT 29 + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID5_MIN_BW_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID5_MIN_BW_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID5_MIN_BW_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID5_MIN_BW_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID5_MIN_BW_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID5_MIN_BW_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID5_MIN_BW_BW_VALUE_UNIT_LAST QUEUE_COS2BW_CFG_REQ_QUEUE_ID5_MIN_BW_BW_VALUE_UNIT_INVALID + __le32 queue_id5_max_bw; + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID5_MAX_BW_BW_VALUE_MASK 0xfffffffUL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID5_MAX_BW_BW_VALUE_SFT 0 + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID5_MAX_BW_SCALE 0x10000000UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID5_MAX_BW_SCALE_BITS (0x0UL << 28) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID5_MAX_BW_SCALE_BYTES (0x1UL << 28) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID5_MAX_BW_SCALE_LAST QUEUE_COS2BW_CFG_REQ_QUEUE_ID5_MAX_BW_SCALE_BYTES + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID5_MAX_BW_BW_VALUE_UNIT_MASK 0xe0000000UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID5_MAX_BW_BW_VALUE_UNIT_SFT 29 + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID5_MAX_BW_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID5_MAX_BW_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID5_MAX_BW_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID5_MAX_BW_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID5_MAX_BW_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID5_MAX_BW_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID5_MAX_BW_BW_VALUE_UNIT_LAST QUEUE_COS2BW_CFG_REQ_QUEUE_ID5_MAX_BW_BW_VALUE_UNIT_INVALID + u8 queue_id5_tsa_assign; + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID5_TSA_ASSIGN_SP 0x0UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID5_TSA_ASSIGN_ETS 0x1UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID5_TSA_ASSIGN_RESERVED_FIRST 0x2UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID5_TSA_ASSIGN_RESERVED_LAST 0xffUL + u8 queue_id5_pri_lvl; + u8 queue_id5_bw_weight; + u8 queue_id6; + __le32 queue_id6_min_bw; + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID6_MIN_BW_BW_VALUE_MASK 0xfffffffUL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID6_MIN_BW_BW_VALUE_SFT 0 + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID6_MIN_BW_SCALE 0x10000000UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID6_MIN_BW_SCALE_BITS (0x0UL << 28) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID6_MIN_BW_SCALE_BYTES (0x1UL << 28) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID6_MIN_BW_SCALE_LAST QUEUE_COS2BW_CFG_REQ_QUEUE_ID6_MIN_BW_SCALE_BYTES + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID6_MIN_BW_BW_VALUE_UNIT_MASK 0xe0000000UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID6_MIN_BW_BW_VALUE_UNIT_SFT 29 + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID6_MIN_BW_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID6_MIN_BW_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID6_MIN_BW_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID6_MIN_BW_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID6_MIN_BW_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID6_MIN_BW_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID6_MIN_BW_BW_VALUE_UNIT_LAST QUEUE_COS2BW_CFG_REQ_QUEUE_ID6_MIN_BW_BW_VALUE_UNIT_INVALID + __le32 queue_id6_max_bw; + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID6_MAX_BW_BW_VALUE_MASK 0xfffffffUL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID6_MAX_BW_BW_VALUE_SFT 0 + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID6_MAX_BW_SCALE 0x10000000UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID6_MAX_BW_SCALE_BITS (0x0UL << 28) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID6_MAX_BW_SCALE_BYTES (0x1UL << 28) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID6_MAX_BW_SCALE_LAST QUEUE_COS2BW_CFG_REQ_QUEUE_ID6_MAX_BW_SCALE_BYTES + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID6_MAX_BW_BW_VALUE_UNIT_MASK 0xe0000000UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID6_MAX_BW_BW_VALUE_UNIT_SFT 29 + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID6_MAX_BW_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID6_MAX_BW_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID6_MAX_BW_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID6_MAX_BW_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID6_MAX_BW_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID6_MAX_BW_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID6_MAX_BW_BW_VALUE_UNIT_LAST QUEUE_COS2BW_CFG_REQ_QUEUE_ID6_MAX_BW_BW_VALUE_UNIT_INVALID + u8 queue_id6_tsa_assign; + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID6_TSA_ASSIGN_SP 0x0UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID6_TSA_ASSIGN_ETS 0x1UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID6_TSA_ASSIGN_RESERVED_FIRST 0x2UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID6_TSA_ASSIGN_RESERVED_LAST 0xffUL + u8 queue_id6_pri_lvl; + u8 queue_id6_bw_weight; + u8 queue_id7; + __le32 queue_id7_min_bw; + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID7_MIN_BW_BW_VALUE_MASK 0xfffffffUL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID7_MIN_BW_BW_VALUE_SFT 0 + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID7_MIN_BW_SCALE 0x10000000UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID7_MIN_BW_SCALE_BITS (0x0UL << 28) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID7_MIN_BW_SCALE_BYTES (0x1UL << 28) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID7_MIN_BW_SCALE_LAST QUEUE_COS2BW_CFG_REQ_QUEUE_ID7_MIN_BW_SCALE_BYTES + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID7_MIN_BW_BW_VALUE_UNIT_MASK 0xe0000000UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID7_MIN_BW_BW_VALUE_UNIT_SFT 29 + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID7_MIN_BW_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID7_MIN_BW_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID7_MIN_BW_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID7_MIN_BW_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID7_MIN_BW_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID7_MIN_BW_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID7_MIN_BW_BW_VALUE_UNIT_LAST QUEUE_COS2BW_CFG_REQ_QUEUE_ID7_MIN_BW_BW_VALUE_UNIT_INVALID + __le32 queue_id7_max_bw; + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID7_MAX_BW_BW_VALUE_MASK 0xfffffffUL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID7_MAX_BW_BW_VALUE_SFT 0 + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID7_MAX_BW_SCALE 0x10000000UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID7_MAX_BW_SCALE_BITS (0x0UL << 28) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID7_MAX_BW_SCALE_BYTES (0x1UL << 28) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID7_MAX_BW_SCALE_LAST QUEUE_COS2BW_CFG_REQ_QUEUE_ID7_MAX_BW_SCALE_BYTES + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID7_MAX_BW_BW_VALUE_UNIT_MASK 0xe0000000UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID7_MAX_BW_BW_VALUE_UNIT_SFT 29 + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID7_MAX_BW_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID7_MAX_BW_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID7_MAX_BW_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID7_MAX_BW_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID7_MAX_BW_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID7_MAX_BW_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID7_MAX_BW_BW_VALUE_UNIT_LAST QUEUE_COS2BW_CFG_REQ_QUEUE_ID7_MAX_BW_BW_VALUE_UNIT_INVALID + u8 queue_id7_tsa_assign; + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID7_TSA_ASSIGN_SP 0x0UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID7_TSA_ASSIGN_ETS 0x1UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID7_TSA_ASSIGN_RESERVED_FIRST 0x2UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID7_TSA_ASSIGN_RESERVED_LAST 0xffUL + u8 queue_id7_pri_lvl; + u8 queue_id7_bw_weight; + u8 unused_1[5]; +}; + +/* Output (16 bytes) */ +struct hwrm_queue_cos2bw_cfg_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_queue_dscp_qcaps */ +/* Input (24 bytes) */ +struct hwrm_queue_dscp_qcaps_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + u8 port_id; + u8 unused_0[7]; +}; + +/* Output (16 bytes) */ +struct hwrm_queue_dscp_qcaps_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + u8 num_dscp_bits; + u8 unused_0; + __le16 max_entries; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_queue_dscp2pri_qcfg */ +/* Input (32 bytes) */ +struct hwrm_queue_dscp2pri_qcfg_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le64 dest_data_addr; + u8 port_id; + u8 unused_0; + __le16 dest_data_buffer_size; + __le32 unused_1; +}; + +/* Output (16 bytes) */ +struct hwrm_queue_dscp2pri_qcfg_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le16 entry_cnt; + u8 default_pri; + u8 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_queue_dscp2pri_cfg */ +/* Input (40 bytes) */ +struct hwrm_queue_dscp2pri_cfg_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le64 src_data_addr; + __le32 flags; + #define QUEUE_DSCP2PRI_CFG_REQ_FLAGS_USE_HW_DEFAULT_PRI 0x1UL + __le32 enables; + #define QUEUE_DSCP2PRI_CFG_REQ_ENABLES_DEFAULT_PRI 0x1UL + u8 port_id; + u8 default_pri; + __le16 entry_cnt; + __le32 unused_0; +}; + +/* Output (16 bytes) */ +struct hwrm_queue_dscp2pri_cfg_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_vnic_alloc */ +/* Input (24 bytes) */ +struct hwrm_vnic_alloc_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 flags; + #define VNIC_ALLOC_REQ_FLAGS_DEFAULT 0x1UL + __le32 unused_0; +}; + +/* Output (16 bytes) */ +struct hwrm_vnic_alloc_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 vnic_id; + u8 unused_0; + u8 unused_1; + u8 unused_2; + u8 valid; +}; + +/* hwrm_vnic_free */ +/* Input (24 bytes) */ +struct hwrm_vnic_free_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 vnic_id; + __le32 unused_0; +}; + +/* Output (16 bytes) */ +struct hwrm_vnic_free_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_vnic_cfg */ +/* Input (40 bytes) */ +struct hwrm_vnic_cfg_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 flags; + #define VNIC_CFG_REQ_FLAGS_DEFAULT 0x1UL + #define VNIC_CFG_REQ_FLAGS_VLAN_STRIP_MODE 0x2UL + #define VNIC_CFG_REQ_FLAGS_BD_STALL_MODE 0x4UL + #define VNIC_CFG_REQ_FLAGS_ROCE_DUAL_VNIC_MODE 0x8UL + #define VNIC_CFG_REQ_FLAGS_ROCE_ONLY_VNIC_MODE 0x10UL + #define VNIC_CFG_REQ_FLAGS_RSS_DFLT_CR_MODE 0x20UL + __le32 enables; + #define VNIC_CFG_REQ_ENABLES_DFLT_RING_GRP 0x1UL + #define VNIC_CFG_REQ_ENABLES_RSS_RULE 0x2UL + #define VNIC_CFG_REQ_ENABLES_COS_RULE 0x4UL + #define VNIC_CFG_REQ_ENABLES_LB_RULE 0x8UL + #define VNIC_CFG_REQ_ENABLES_MRU 0x10UL + __le16 vnic_id; + __le16 dflt_ring_grp; + __le16 rss_rule; + __le16 cos_rule; + __le16 lb_rule; + __le16 mru; + __le32 unused_0; +}; + +/* Output (16 bytes) */ +struct hwrm_vnic_cfg_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_vnic_qcfg */ +/* Input (32 bytes) */ +struct hwrm_vnic_qcfg_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 enables; + #define VNIC_QCFG_REQ_ENABLES_VF_ID_VALID 0x1UL + __le32 vnic_id; + __le16 vf_id; + __le16 unused_0[3]; +}; + +/* Output (32 bytes) */ +struct hwrm_vnic_qcfg_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le16 dflt_ring_grp; + __le16 rss_rule; + __le16 cos_rule; + __le16 lb_rule; + __le16 mru; + u8 unused_0; + u8 unused_1; + __le32 flags; + #define VNIC_QCFG_RESP_FLAGS_DEFAULT 0x1UL + #define VNIC_QCFG_RESP_FLAGS_VLAN_STRIP_MODE 0x2UL + #define VNIC_QCFG_RESP_FLAGS_BD_STALL_MODE 0x4UL + #define VNIC_QCFG_RESP_FLAGS_ROCE_DUAL_VNIC_MODE 0x8UL + #define VNIC_QCFG_RESP_FLAGS_ROCE_ONLY_VNIC_MODE 0x10UL + #define VNIC_QCFG_RESP_FLAGS_RSS_DFLT_CR_MODE 0x20UL + __le32 unused_2; + u8 unused_3; + u8 unused_4; + u8 unused_5; + u8 valid; +}; + +/* hwrm_vnic_qcaps */ +/* Input (24 bytes) */ +struct hwrm_vnic_qcaps_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 enables; + __le32 unused_0; +}; + +/* Output (24 bytes) */ +struct hwrm_vnic_qcaps_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le16 mru; + u8 unused_0; + u8 unused_1; + __le32 flags; + #define VNIC_QCAPS_RESP_FLAGS_UNUSED 0x1UL + #define VNIC_QCAPS_RESP_FLAGS_VLAN_STRIP_CAP 0x2UL + #define VNIC_QCAPS_RESP_FLAGS_BD_STALL_CAP 0x4UL + #define VNIC_QCAPS_RESP_FLAGS_ROCE_DUAL_VNIC_CAP 0x8UL + #define VNIC_QCAPS_RESP_FLAGS_ROCE_ONLY_VNIC_CAP 0x10UL + #define VNIC_QCAPS_RESP_FLAGS_RSS_DFLT_CR_CAP 0x20UL + __le32 unused_2; + u8 unused_3; + u8 unused_4; + u8 unused_5; + u8 valid; +}; + +/* hwrm_vnic_tpa_cfg */ +/* Input (40 bytes) */ +struct hwrm_vnic_tpa_cfg_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 flags; + #define VNIC_TPA_CFG_REQ_FLAGS_TPA 0x1UL + #define VNIC_TPA_CFG_REQ_FLAGS_ENCAP_TPA 0x2UL + #define VNIC_TPA_CFG_REQ_FLAGS_RSC_WND_UPDATE 0x4UL + #define VNIC_TPA_CFG_REQ_FLAGS_GRO 0x8UL + #define VNIC_TPA_CFG_REQ_FLAGS_AGG_WITH_ECN 0x10UL + #define VNIC_TPA_CFG_REQ_FLAGS_AGG_WITH_SAME_GRE_SEQ 0x20UL + #define VNIC_TPA_CFG_REQ_FLAGS_GRO_IPID_CHECK 0x40UL + #define VNIC_TPA_CFG_REQ_FLAGS_GRO_TTL_CHECK 0x80UL + __le32 enables; + #define VNIC_TPA_CFG_REQ_ENABLES_MAX_AGG_SEGS 0x1UL + #define VNIC_TPA_CFG_REQ_ENABLES_MAX_AGGS 0x2UL + #define VNIC_TPA_CFG_REQ_ENABLES_MAX_AGG_TIMER 0x4UL + #define VNIC_TPA_CFG_REQ_ENABLES_MIN_AGG_LEN 0x8UL + __le16 vnic_id; + __le16 max_agg_segs; + #define VNIC_TPA_CFG_REQ_MAX_AGG_SEGS_1 0x0UL + #define VNIC_TPA_CFG_REQ_MAX_AGG_SEGS_2 0x1UL + #define VNIC_TPA_CFG_REQ_MAX_AGG_SEGS_4 0x2UL + #define VNIC_TPA_CFG_REQ_MAX_AGG_SEGS_8 0x3UL + #define VNIC_TPA_CFG_REQ_MAX_AGG_SEGS_MAX 0x1fUL + __le16 max_aggs; + #define VNIC_TPA_CFG_REQ_MAX_AGGS_1 0x0UL + #define VNIC_TPA_CFG_REQ_MAX_AGGS_2 0x1UL + #define VNIC_TPA_CFG_REQ_MAX_AGGS_4 0x2UL + #define VNIC_TPA_CFG_REQ_MAX_AGGS_8 0x3UL + #define VNIC_TPA_CFG_REQ_MAX_AGGS_16 0x4UL + #define VNIC_TPA_CFG_REQ_MAX_AGGS_MAX 0x7UL + u8 unused_0; + u8 unused_1; + __le32 max_agg_timer; + __le32 min_agg_len; +}; + +/* Output (16 bytes) */ +struct hwrm_vnic_tpa_cfg_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_vnic_tpa_qcfg */ +/* Input (24 bytes) */ +struct hwrm_vnic_tpa_qcfg_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le16 vnic_id; + __le16 unused_0[3]; +}; + +/* Output (32 bytes) */ +struct hwrm_vnic_tpa_qcfg_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 flags; + #define VNIC_TPA_QCFG_RESP_FLAGS_TPA 0x1UL + #define VNIC_TPA_QCFG_RESP_FLAGS_ENCAP_TPA 0x2UL + #define VNIC_TPA_QCFG_RESP_FLAGS_RSC_WND_UPDATE 0x4UL + #define VNIC_TPA_QCFG_RESP_FLAGS_GRO 0x8UL + #define VNIC_TPA_QCFG_RESP_FLAGS_AGG_WITH_ECN 0x10UL + #define VNIC_TPA_QCFG_RESP_FLAGS_AGG_WITH_SAME_GRE_SEQ 0x20UL + #define VNIC_TPA_QCFG_RESP_FLAGS_GRO_IPID_CHECK 0x40UL + #define VNIC_TPA_QCFG_RESP_FLAGS_GRO_TTL_CHECK 0x80UL + __le16 max_agg_segs; + #define VNIC_TPA_QCFG_RESP_MAX_AGG_SEGS_1 0x0UL + #define VNIC_TPA_QCFG_RESP_MAX_AGG_SEGS_2 0x1UL + #define VNIC_TPA_QCFG_RESP_MAX_AGG_SEGS_4 0x2UL + #define VNIC_TPA_QCFG_RESP_MAX_AGG_SEGS_8 0x3UL + #define VNIC_TPA_QCFG_RESP_MAX_AGG_SEGS_MAX 0x1fUL + __le16 max_aggs; + #define VNIC_TPA_QCFG_RESP_MAX_AGGS_1 0x0UL + #define VNIC_TPA_QCFG_RESP_MAX_AGGS_2 0x1UL + #define VNIC_TPA_QCFG_RESP_MAX_AGGS_4 0x2UL + #define VNIC_TPA_QCFG_RESP_MAX_AGGS_8 0x3UL + #define VNIC_TPA_QCFG_RESP_MAX_AGGS_16 0x4UL + #define VNIC_TPA_QCFG_RESP_MAX_AGGS_MAX 0x7UL + __le32 max_agg_timer; + __le32 min_agg_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_vnic_rss_cfg */ +/* Input (48 bytes) */ +struct hwrm_vnic_rss_cfg_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 hash_type; + #define VNIC_RSS_CFG_REQ_HASH_TYPE_IPV4 0x1UL + #define VNIC_RSS_CFG_REQ_HASH_TYPE_TCP_IPV4 0x2UL + #define VNIC_RSS_CFG_REQ_HASH_TYPE_UDP_IPV4 0x4UL + #define VNIC_RSS_CFG_REQ_HASH_TYPE_IPV6 0x8UL + #define VNIC_RSS_CFG_REQ_HASH_TYPE_TCP_IPV6 0x10UL + #define VNIC_RSS_CFG_REQ_HASH_TYPE_UDP_IPV6 0x20UL + __le32 unused_0; + __le64 ring_grp_tbl_addr; + __le64 hash_key_tbl_addr; + __le16 rss_ctx_idx; + __le16 unused_1[3]; +}; + +/* Output (16 bytes) */ +struct hwrm_vnic_rss_cfg_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_vnic_rss_qcfg */ +/* Input (24 bytes) */ +struct hwrm_vnic_rss_qcfg_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le16 rss_ctx_idx; + __le16 unused_0[3]; +}; + +/* Output (64 bytes) */ +struct hwrm_vnic_rss_qcfg_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 hash_type; + #define VNIC_RSS_QCFG_RESP_HASH_TYPE_IPV4 0x1UL + #define VNIC_RSS_QCFG_RESP_HASH_TYPE_TCP_IPV4 0x2UL + #define VNIC_RSS_QCFG_RESP_HASH_TYPE_UDP_IPV4 0x4UL + #define VNIC_RSS_QCFG_RESP_HASH_TYPE_IPV6 0x8UL + #define VNIC_RSS_QCFG_RESP_HASH_TYPE_TCP_IPV6 0x10UL + #define VNIC_RSS_QCFG_RESP_HASH_TYPE_UDP_IPV6 0x20UL + __le32 unused_0; + __le32 hash_key[10]; + __le32 unused_1; + u8 unused_2; + u8 unused_3; + u8 unused_4; + u8 valid; +}; + +/* hwrm_vnic_plcmodes_cfg */ +/* Input (40 bytes) */ +struct hwrm_vnic_plcmodes_cfg_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 flags; + #define VNIC_PLCMODES_CFG_REQ_FLAGS_REGULAR_PLACEMENT 0x1UL + #define VNIC_PLCMODES_CFG_REQ_FLAGS_JUMBO_PLACEMENT 0x2UL + #define VNIC_PLCMODES_CFG_REQ_FLAGS_HDS_IPV4 0x4UL + #define VNIC_PLCMODES_CFG_REQ_FLAGS_HDS_IPV6 0x8UL + #define VNIC_PLCMODES_CFG_REQ_FLAGS_HDS_FCOE 0x10UL + #define VNIC_PLCMODES_CFG_REQ_FLAGS_HDS_ROCE 0x20UL + __le32 enables; + #define VNIC_PLCMODES_CFG_REQ_ENABLES_JUMBO_THRESH_VALID 0x1UL + #define VNIC_PLCMODES_CFG_REQ_ENABLES_HDS_OFFSET_VALID 0x2UL + #define VNIC_PLCMODES_CFG_REQ_ENABLES_HDS_THRESHOLD_VALID 0x4UL + __le32 vnic_id; + __le16 jumbo_thresh; + __le16 hds_offset; + __le16 hds_threshold; + __le16 unused_0[3]; +}; + +/* Output (16 bytes) */ +struct hwrm_vnic_plcmodes_cfg_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_vnic_plcmodes_qcfg */ +/* Input (24 bytes) */ +struct hwrm_vnic_plcmodes_qcfg_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 vnic_id; + __le32 unused_0; +}; + +/* Output (24 bytes) */ +struct hwrm_vnic_plcmodes_qcfg_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 flags; + #define VNIC_PLCMODES_QCFG_RESP_FLAGS_REGULAR_PLACEMENT 0x1UL + #define VNIC_PLCMODES_QCFG_RESP_FLAGS_JUMBO_PLACEMENT 0x2UL + #define VNIC_PLCMODES_QCFG_RESP_FLAGS_HDS_IPV4 0x4UL + #define VNIC_PLCMODES_QCFG_RESP_FLAGS_HDS_IPV6 0x8UL + #define VNIC_PLCMODES_QCFG_RESP_FLAGS_HDS_FCOE 0x10UL + #define VNIC_PLCMODES_QCFG_RESP_FLAGS_HDS_ROCE 0x20UL + #define VNIC_PLCMODES_QCFG_RESP_FLAGS_DFLT_VNIC 0x40UL + __le16 jumbo_thresh; + __le16 hds_offset; + __le16 hds_threshold; + u8 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 unused_4; + u8 valid; +}; + +/* hwrm_vnic_rss_cos_lb_ctx_alloc */ +/* Input (16 bytes) */ +struct hwrm_vnic_rss_cos_lb_ctx_alloc_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; +}; + +/* Output (16 bytes) */ +struct hwrm_vnic_rss_cos_lb_ctx_alloc_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le16 rss_cos_lb_ctx_id; + u8 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 unused_4; + u8 valid; +}; + +/* hwrm_vnic_rss_cos_lb_ctx_free */ +/* Input (24 bytes) */ +struct hwrm_vnic_rss_cos_lb_ctx_free_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le16 rss_cos_lb_ctx_id; + __le16 unused_0[3]; +}; + +/* Output (16 bytes) */ +struct hwrm_vnic_rss_cos_lb_ctx_free_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_ring_alloc */ +/* Input (80 bytes) */ +struct hwrm_ring_alloc_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 enables; + #define RING_ALLOC_REQ_ENABLES_RESERVED1 0x1UL + #define RING_ALLOC_REQ_ENABLES_RING_ARB_CFG 0x2UL + #define RING_ALLOC_REQ_ENABLES_RESERVED3 0x4UL + #define RING_ALLOC_REQ_ENABLES_STAT_CTX_ID_VALID 0x8UL + #define RING_ALLOC_REQ_ENABLES_RESERVED4 0x10UL + #define RING_ALLOC_REQ_ENABLES_MAX_BW_VALID 0x20UL + u8 ring_type; + #define RING_ALLOC_REQ_RING_TYPE_L2_CMPL 0x0UL + #define RING_ALLOC_REQ_RING_TYPE_TX 0x1UL + #define RING_ALLOC_REQ_RING_TYPE_RX 0x2UL + #define RING_ALLOC_REQ_RING_TYPE_ROCE_CMPL 0x3UL + u8 unused_0; + __le16 unused_1; + __le64 page_tbl_addr; + __le32 fbo; + u8 page_size; + u8 page_tbl_depth; + u8 unused_2; + u8 unused_3; + __le32 length; + __le16 logical_id; + __le16 cmpl_ring_id; + __le16 queue_id; + u8 unused_4; + u8 unused_5; + __le32 reserved1; + __le16 ring_arb_cfg; + #define RING_ALLOC_REQ_RING_ARB_CFG_ARB_POLICY_MASK 0xfUL + #define RING_ALLOC_REQ_RING_ARB_CFG_ARB_POLICY_SFT 0 + #define RING_ALLOC_REQ_RING_ARB_CFG_ARB_POLICY_SP (0x1UL << 0) + #define RING_ALLOC_REQ_RING_ARB_CFG_ARB_POLICY_WFQ (0x2UL << 0) + #define RING_ALLOC_REQ_RING_ARB_CFG_ARB_POLICY_LAST RING_ALLOC_REQ_RING_ARB_CFG_ARB_POLICY_WFQ + #define RING_ALLOC_REQ_RING_ARB_CFG_RSVD_MASK 0xf0UL + #define RING_ALLOC_REQ_RING_ARB_CFG_RSVD_SFT 4 + #define RING_ALLOC_REQ_RING_ARB_CFG_ARB_POLICY_PARAM_MASK 0xff00UL + #define RING_ALLOC_REQ_RING_ARB_CFG_ARB_POLICY_PARAM_SFT 8 + u8 unused_6; + u8 unused_7; + __le32 reserved3; + __le32 stat_ctx_id; + __le32 reserved4; + __le32 max_bw; + #define RING_ALLOC_REQ_MAX_BW_BW_VALUE_MASK 0xfffffffUL + #define RING_ALLOC_REQ_MAX_BW_BW_VALUE_SFT 0 + #define RING_ALLOC_REQ_MAX_BW_SCALE 0x10000000UL + #define RING_ALLOC_REQ_MAX_BW_SCALE_BITS (0x0UL << 28) + #define RING_ALLOC_REQ_MAX_BW_SCALE_BYTES (0x1UL << 28) + #define RING_ALLOC_REQ_MAX_BW_SCALE_LAST RING_ALLOC_REQ_MAX_BW_SCALE_BYTES + #define RING_ALLOC_REQ_MAX_BW_BW_VALUE_UNIT_MASK 0xe0000000UL + #define RING_ALLOC_REQ_MAX_BW_BW_VALUE_UNIT_SFT 29 + #define RING_ALLOC_REQ_MAX_BW_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define RING_ALLOC_REQ_MAX_BW_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define RING_ALLOC_REQ_MAX_BW_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define RING_ALLOC_REQ_MAX_BW_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define RING_ALLOC_REQ_MAX_BW_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define RING_ALLOC_REQ_MAX_BW_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define RING_ALLOC_REQ_MAX_BW_BW_VALUE_UNIT_LAST RING_ALLOC_REQ_MAX_BW_BW_VALUE_UNIT_INVALID + u8 int_mode; + #define RING_ALLOC_REQ_INT_MODE_LEGACY 0x0UL + #define RING_ALLOC_REQ_INT_MODE_RSVD 0x1UL + #define RING_ALLOC_REQ_INT_MODE_MSIX 0x2UL + #define RING_ALLOC_REQ_INT_MODE_POLL 0x3UL + u8 unused_8[3]; +}; + +/* Output (16 bytes) */ +struct hwrm_ring_alloc_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le16 ring_id; + __le16 logical_ring_id; + u8 unused_0; + u8 unused_1; + u8 unused_2; + u8 valid; +}; + +/* hwrm_ring_free */ +/* Input (24 bytes) */ +struct hwrm_ring_free_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + u8 ring_type; + #define RING_FREE_REQ_RING_TYPE_L2_CMPL 0x0UL + #define RING_FREE_REQ_RING_TYPE_TX 0x1UL + #define RING_FREE_REQ_RING_TYPE_RX 0x2UL + #define RING_FREE_REQ_RING_TYPE_ROCE_CMPL 0x3UL + u8 unused_0; + __le16 ring_id; + __le32 unused_1; +}; + +/* Output (16 bytes) */ +struct hwrm_ring_free_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_ring_cmpl_ring_qaggint_params */ +/* Input (24 bytes) */ +struct hwrm_ring_cmpl_ring_qaggint_params_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le16 ring_id; + __le16 unused_0[3]; +}; + +/* Output (32 bytes) */ +struct hwrm_ring_cmpl_ring_qaggint_params_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le16 flags; + #define RING_CMPL_RING_QAGGINT_PARAMS_RESP_FLAGS_TIMER_RESET 0x1UL + #define RING_CMPL_RING_QAGGINT_PARAMS_RESP_FLAGS_RING_IDLE 0x2UL + __le16 num_cmpl_dma_aggr; + __le16 num_cmpl_dma_aggr_during_int; + __le16 cmpl_aggr_dma_tmr; + __le16 cmpl_aggr_dma_tmr_during_int; + __le16 int_lat_tmr_min; + __le16 int_lat_tmr_max; + __le16 num_cmpl_aggr_int; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_ring_cmpl_ring_cfg_aggint_params */ +/* Input (40 bytes) */ +struct hwrm_ring_cmpl_ring_cfg_aggint_params_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le16 ring_id; + __le16 flags; + #define RING_CMPL_RING_CFG_AGGINT_PARAMS_REQ_FLAGS_TIMER_RESET 0x1UL + #define RING_CMPL_RING_CFG_AGGINT_PARAMS_REQ_FLAGS_RING_IDLE 0x2UL + __le16 num_cmpl_dma_aggr; + __le16 num_cmpl_dma_aggr_during_int; + __le16 cmpl_aggr_dma_tmr; + __le16 cmpl_aggr_dma_tmr_during_int; + __le16 int_lat_tmr_min; + __le16 int_lat_tmr_max; + __le16 num_cmpl_aggr_int; + __le16 unused_0[3]; +}; + +/* Output (16 bytes) */ +struct hwrm_ring_cmpl_ring_cfg_aggint_params_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_ring_reset */ +/* Input (24 bytes) */ +struct hwrm_ring_reset_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + u8 ring_type; + #define RING_RESET_REQ_RING_TYPE_L2_CMPL 0x0UL + #define RING_RESET_REQ_RING_TYPE_TX 0x1UL + #define RING_RESET_REQ_RING_TYPE_RX 0x2UL + #define RING_RESET_REQ_RING_TYPE_ROCE_CMPL 0x3UL + u8 unused_0; + __le16 ring_id; + __le32 unused_1; +}; + +/* Output (16 bytes) */ +struct hwrm_ring_reset_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_ring_grp_alloc */ +/* Input (24 bytes) */ +struct hwrm_ring_grp_alloc_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le16 cr; + __le16 rr; + __le16 ar; + __le16 sc; +}; + +/* Output (16 bytes) */ +struct hwrm_ring_grp_alloc_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 ring_group_id; + u8 unused_0; + u8 unused_1; + u8 unused_2; + u8 valid; +}; + +/* hwrm_ring_grp_free */ +/* Input (24 bytes) */ +struct hwrm_ring_grp_free_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 ring_group_id; + __le32 unused_0; +}; + +/* Output (16 bytes) */ +struct hwrm_ring_grp_free_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_cfa_l2_filter_alloc */ +/* Input (96 bytes) */ +struct hwrm_cfa_l2_filter_alloc_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 flags; + #define CFA_L2_FILTER_ALLOC_REQ_FLAGS_PATH 0x1UL + #define CFA_L2_FILTER_ALLOC_REQ_FLAGS_PATH_TX (0x0UL << 0) + #define CFA_L2_FILTER_ALLOC_REQ_FLAGS_PATH_RX (0x1UL << 0) + #define CFA_L2_FILTER_ALLOC_REQ_FLAGS_PATH_LAST CFA_L2_FILTER_ALLOC_REQ_FLAGS_PATH_RX + #define CFA_L2_FILTER_ALLOC_REQ_FLAGS_LOOPBACK 0x2UL + #define CFA_L2_FILTER_ALLOC_REQ_FLAGS_DROP 0x4UL + #define CFA_L2_FILTER_ALLOC_REQ_FLAGS_OUTERMOST 0x8UL + __le32 enables; + #define CFA_L2_FILTER_ALLOC_REQ_ENABLES_L2_ADDR 0x1UL + #define CFA_L2_FILTER_ALLOC_REQ_ENABLES_L2_ADDR_MASK 0x2UL + #define CFA_L2_FILTER_ALLOC_REQ_ENABLES_L2_OVLAN 0x4UL + #define CFA_L2_FILTER_ALLOC_REQ_ENABLES_L2_OVLAN_MASK 0x8UL + #define CFA_L2_FILTER_ALLOC_REQ_ENABLES_L2_IVLAN 0x10UL + #define CFA_L2_FILTER_ALLOC_REQ_ENABLES_L2_IVLAN_MASK 0x20UL + #define CFA_L2_FILTER_ALLOC_REQ_ENABLES_T_L2_ADDR 0x40UL + #define CFA_L2_FILTER_ALLOC_REQ_ENABLES_T_L2_ADDR_MASK 0x80UL + #define CFA_L2_FILTER_ALLOC_REQ_ENABLES_T_L2_OVLAN 0x100UL + #define CFA_L2_FILTER_ALLOC_REQ_ENABLES_T_L2_OVLAN_MASK 0x200UL + #define CFA_L2_FILTER_ALLOC_REQ_ENABLES_T_L2_IVLAN 0x400UL + #define CFA_L2_FILTER_ALLOC_REQ_ENABLES_T_L2_IVLAN_MASK 0x800UL + #define CFA_L2_FILTER_ALLOC_REQ_ENABLES_SRC_TYPE 0x1000UL + #define CFA_L2_FILTER_ALLOC_REQ_ENABLES_SRC_ID 0x2000UL + #define CFA_L2_FILTER_ALLOC_REQ_ENABLES_TUNNEL_TYPE 0x4000UL + #define CFA_L2_FILTER_ALLOC_REQ_ENABLES_DST_ID 0x8000UL + #define CFA_L2_FILTER_ALLOC_REQ_ENABLES_MIRROR_VNIC_ID 0x10000UL + u8 l2_addr[6]; + u8 unused_0; + u8 unused_1; + u8 l2_addr_mask[6]; + __le16 l2_ovlan; + __le16 l2_ovlan_mask; + __le16 l2_ivlan; + __le16 l2_ivlan_mask; + u8 unused_2; + u8 unused_3; + u8 t_l2_addr[6]; + u8 unused_4; + u8 unused_5; + u8 t_l2_addr_mask[6]; + __le16 t_l2_ovlan; + __le16 t_l2_ovlan_mask; + __le16 t_l2_ivlan; + __le16 t_l2_ivlan_mask; + u8 src_type; + #define CFA_L2_FILTER_ALLOC_REQ_SRC_TYPE_NPORT 0x0UL + #define CFA_L2_FILTER_ALLOC_REQ_SRC_TYPE_PF 0x1UL + #define CFA_L2_FILTER_ALLOC_REQ_SRC_TYPE_VF 0x2UL + #define CFA_L2_FILTER_ALLOC_REQ_SRC_TYPE_VNIC 0x3UL + #define CFA_L2_FILTER_ALLOC_REQ_SRC_TYPE_KONG 0x4UL + #define CFA_L2_FILTER_ALLOC_REQ_SRC_TYPE_APE 0x5UL + #define CFA_L2_FILTER_ALLOC_REQ_SRC_TYPE_BONO 0x6UL + #define CFA_L2_FILTER_ALLOC_REQ_SRC_TYPE_TANG 0x7UL + u8 unused_6; + __le32 src_id; + u8 tunnel_type; + #define CFA_L2_FILTER_ALLOC_REQ_TUNNEL_TYPE_NONTUNNEL 0x0UL + #define CFA_L2_FILTER_ALLOC_REQ_TUNNEL_TYPE_VXLAN 0x1UL + #define CFA_L2_FILTER_ALLOC_REQ_TUNNEL_TYPE_NVGRE 0x2UL + #define CFA_L2_FILTER_ALLOC_REQ_TUNNEL_TYPE_L2GRE 0x3UL + #define CFA_L2_FILTER_ALLOC_REQ_TUNNEL_TYPE_IPIP 0x4UL + #define CFA_L2_FILTER_ALLOC_REQ_TUNNEL_TYPE_GENEVE 0x5UL + #define CFA_L2_FILTER_ALLOC_REQ_TUNNEL_TYPE_MPLS 0x6UL + #define CFA_L2_FILTER_ALLOC_REQ_TUNNEL_TYPE_STT 0x7UL + #define CFA_L2_FILTER_ALLOC_REQ_TUNNEL_TYPE_IPGRE 0x8UL + #define CFA_L2_FILTER_ALLOC_REQ_TUNNEL_TYPE_ANYTUNNEL 0xffUL + u8 unused_7; + __le16 dst_id; + __le16 mirror_vnic_id; + u8 pri_hint; + #define CFA_L2_FILTER_ALLOC_REQ_PRI_HINT_NO_PREFER 0x0UL + #define CFA_L2_FILTER_ALLOC_REQ_PRI_HINT_ABOVE_FILTER 0x1UL + #define CFA_L2_FILTER_ALLOC_REQ_PRI_HINT_BELOW_FILTER 0x2UL + #define CFA_L2_FILTER_ALLOC_REQ_PRI_HINT_MAX 0x3UL + #define CFA_L2_FILTER_ALLOC_REQ_PRI_HINT_MIN 0x4UL + u8 unused_8; + __le32 unused_9; + __le64 l2_filter_id_hint; +}; + +/* Output (24 bytes) */ +struct hwrm_cfa_l2_filter_alloc_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le64 l2_filter_id; + __le32 flow_id; + u8 unused_0; + u8 unused_1; + u8 unused_2; + u8 valid; +}; + +/* hwrm_cfa_l2_filter_free */ +/* Input (24 bytes) */ +struct hwrm_cfa_l2_filter_free_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le64 l2_filter_id; +}; + +/* Output (16 bytes) */ +struct hwrm_cfa_l2_filter_free_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_cfa_l2_filter_cfg */ +/* Input (40 bytes) */ +struct hwrm_cfa_l2_filter_cfg_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 flags; + #define CFA_L2_FILTER_CFG_REQ_FLAGS_PATH 0x1UL + #define CFA_L2_FILTER_CFG_REQ_FLAGS_PATH_TX (0x0UL << 0) + #define CFA_L2_FILTER_CFG_REQ_FLAGS_PATH_RX (0x1UL << 0) + #define CFA_L2_FILTER_CFG_REQ_FLAGS_PATH_LAST CFA_L2_FILTER_CFG_REQ_FLAGS_PATH_RX + #define CFA_L2_FILTER_CFG_REQ_FLAGS_DROP 0x2UL + __le32 enables; + #define CFA_L2_FILTER_CFG_REQ_ENABLES_DST_ID 0x1UL + #define CFA_L2_FILTER_CFG_REQ_ENABLES_NEW_MIRROR_VNIC_ID 0x2UL + __le64 l2_filter_id; + __le32 dst_id; + __le32 new_mirror_vnic_id; +}; + +/* Output (16 bytes) */ +struct hwrm_cfa_l2_filter_cfg_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_cfa_l2_set_rx_mask */ +/* Input (56 bytes) */ +struct hwrm_cfa_l2_set_rx_mask_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 vnic_id; + __le32 mask; + #define CFA_L2_SET_RX_MASK_REQ_MASK_RESERVED 0x1UL + #define CFA_L2_SET_RX_MASK_REQ_MASK_MCAST 0x2UL + #define CFA_L2_SET_RX_MASK_REQ_MASK_ALL_MCAST 0x4UL + #define CFA_L2_SET_RX_MASK_REQ_MASK_BCAST 0x8UL + #define CFA_L2_SET_RX_MASK_REQ_MASK_PROMISCUOUS 0x10UL + #define CFA_L2_SET_RX_MASK_REQ_MASK_OUTERMOST 0x20UL + #define CFA_L2_SET_RX_MASK_REQ_MASK_VLANONLY 0x40UL + #define CFA_L2_SET_RX_MASK_REQ_MASK_VLAN_NONVLAN 0x80UL + #define CFA_L2_SET_RX_MASK_REQ_MASK_ANYVLAN_NONVLAN 0x100UL + __le64 mc_tbl_addr; + __le32 num_mc_entries; + __le32 unused_0; + __le64 vlan_tag_tbl_addr; + __le32 num_vlan_tags; + __le32 unused_1; +}; + +/* Output (16 bytes) */ +struct hwrm_cfa_l2_set_rx_mask_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_cfa_vlan_antispoof_cfg */ +/* Input (32 bytes) */ +struct hwrm_cfa_vlan_antispoof_cfg_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le16 fid; + u8 unused_0; + u8 unused_1; + __le32 num_vlan_entries; + __le64 vlan_tag_mask_tbl_addr; +}; + +/* Output (16 bytes) */ +struct hwrm_cfa_vlan_antispoof_cfg_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_cfa_vlan_antispoof_qcfg */ +/* Input (32 bytes) */ +struct hwrm_cfa_vlan_antispoof_qcfg_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le16 fid; + u8 unused_0; + u8 unused_1; + __le32 max_vlan_entries; + __le64 vlan_tag_mask_tbl_addr; +}; + +/* Output (16 bytes) */ +struct hwrm_cfa_vlan_antispoof_qcfg_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 num_vlan_entries; + u8 unused_0; + u8 unused_1; + u8 unused_2; + u8 valid; +}; + +/* hwrm_cfa_tunnel_filter_alloc */ +/* Input (88 bytes) */ +struct hwrm_cfa_tunnel_filter_alloc_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 flags; + #define CFA_TUNNEL_FILTER_ALLOC_REQ_FLAGS_LOOPBACK 0x1UL + __le32 enables; + #define CFA_TUNNEL_FILTER_ALLOC_REQ_ENABLES_L2_FILTER_ID 0x1UL + #define CFA_TUNNEL_FILTER_ALLOC_REQ_ENABLES_L2_ADDR 0x2UL + #define CFA_TUNNEL_FILTER_ALLOC_REQ_ENABLES_L2_IVLAN 0x4UL + #define CFA_TUNNEL_FILTER_ALLOC_REQ_ENABLES_L3_ADDR 0x8UL + #define CFA_TUNNEL_FILTER_ALLOC_REQ_ENABLES_L3_ADDR_TYPE 0x10UL + #define CFA_TUNNEL_FILTER_ALLOC_REQ_ENABLES_T_L3_ADDR_TYPE 0x20UL + #define CFA_TUNNEL_FILTER_ALLOC_REQ_ENABLES_T_L3_ADDR 0x40UL + #define CFA_TUNNEL_FILTER_ALLOC_REQ_ENABLES_TUNNEL_TYPE 0x80UL + #define CFA_TUNNEL_FILTER_ALLOC_REQ_ENABLES_VNI 0x100UL + #define CFA_TUNNEL_FILTER_ALLOC_REQ_ENABLES_DST_VNIC_ID 0x200UL + #define CFA_TUNNEL_FILTER_ALLOC_REQ_ENABLES_MIRROR_VNIC_ID 0x400UL + __le64 l2_filter_id; + u8 l2_addr[6]; + __le16 l2_ivlan; + __le32 l3_addr[4]; + __le32 t_l3_addr[4]; + u8 l3_addr_type; + u8 t_l3_addr_type; + u8 tunnel_type; + #define CFA_TUNNEL_FILTER_ALLOC_REQ_TUNNEL_TYPE_NONTUNNEL 0x0UL + #define CFA_TUNNEL_FILTER_ALLOC_REQ_TUNNEL_TYPE_VXLAN 0x1UL + #define CFA_TUNNEL_FILTER_ALLOC_REQ_TUNNEL_TYPE_NVGRE 0x2UL + #define CFA_TUNNEL_FILTER_ALLOC_REQ_TUNNEL_TYPE_L2GRE 0x3UL + #define CFA_TUNNEL_FILTER_ALLOC_REQ_TUNNEL_TYPE_IPIP 0x4UL + #define CFA_TUNNEL_FILTER_ALLOC_REQ_TUNNEL_TYPE_GENEVE 0x5UL + #define CFA_TUNNEL_FILTER_ALLOC_REQ_TUNNEL_TYPE_MPLS 0x6UL + #define CFA_TUNNEL_FILTER_ALLOC_REQ_TUNNEL_TYPE_STT 0x7UL + #define CFA_TUNNEL_FILTER_ALLOC_REQ_TUNNEL_TYPE_IPGRE 0x8UL + #define CFA_TUNNEL_FILTER_ALLOC_REQ_TUNNEL_TYPE_ANYTUNNEL 0xffUL + u8 unused_0; + __le32 vni; + __le32 dst_vnic_id; + __le32 mirror_vnic_id; +}; + +/* Output (24 bytes) */ +struct hwrm_cfa_tunnel_filter_alloc_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le64 tunnel_filter_id; + __le32 flow_id; + u8 unused_0; + u8 unused_1; + u8 unused_2; + u8 valid; +}; + +/* hwrm_cfa_tunnel_filter_free */ +/* Input (24 bytes) */ +struct hwrm_cfa_tunnel_filter_free_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le64 tunnel_filter_id; +}; + +/* Output (16 bytes) */ +struct hwrm_cfa_tunnel_filter_free_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_cfa_encap_record_alloc */ +/* Input (32 bytes) */ +struct hwrm_cfa_encap_record_alloc_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 flags; + #define CFA_ENCAP_RECORD_ALLOC_REQ_FLAGS_LOOPBACK 0x1UL + u8 encap_type; + #define CFA_ENCAP_RECORD_ALLOC_REQ_ENCAP_TYPE_VXLAN 0x1UL + #define CFA_ENCAP_RECORD_ALLOC_REQ_ENCAP_TYPE_NVGRE 0x2UL + #define CFA_ENCAP_RECORD_ALLOC_REQ_ENCAP_TYPE_L2GRE 0x3UL + #define CFA_ENCAP_RECORD_ALLOC_REQ_ENCAP_TYPE_IPIP 0x4UL + #define CFA_ENCAP_RECORD_ALLOC_REQ_ENCAP_TYPE_GENEVE 0x5UL + #define CFA_ENCAP_RECORD_ALLOC_REQ_ENCAP_TYPE_MPLS 0x6UL + #define CFA_ENCAP_RECORD_ALLOC_REQ_ENCAP_TYPE_VLAN 0x7UL + #define CFA_ENCAP_RECORD_ALLOC_REQ_ENCAP_TYPE_IPGRE 0x8UL + u8 unused_0; + __le16 unused_1; + __le32 encap_data[20]; +}; + +/* Output (16 bytes) */ +struct hwrm_cfa_encap_record_alloc_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 encap_record_id; + u8 unused_0; + u8 unused_1; + u8 unused_2; + u8 valid; +}; + +/* hwrm_cfa_encap_record_free */ +/* Input (24 bytes) */ +struct hwrm_cfa_encap_record_free_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 encap_record_id; + __le32 unused_0; +}; + +/* Output (16 bytes) */ +struct hwrm_cfa_encap_record_free_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_cfa_ntuple_filter_alloc */ +/* Input (128 bytes) */ +struct hwrm_cfa_ntuple_filter_alloc_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 flags; + #define CFA_NTUPLE_FILTER_ALLOC_REQ_FLAGS_LOOPBACK 0x1UL + #define CFA_NTUPLE_FILTER_ALLOC_REQ_FLAGS_DROP 0x2UL + #define CFA_NTUPLE_FILTER_ALLOC_REQ_FLAGS_METER 0x4UL + __le32 enables; + #define CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_L2_FILTER_ID 0x1UL + #define CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_ETHERTYPE 0x2UL + #define CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_TUNNEL_TYPE 0x4UL + #define CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_SRC_MACADDR 0x8UL + #define CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_IPADDR_TYPE 0x10UL + #define CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_SRC_IPADDR 0x20UL + #define CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_SRC_IPADDR_MASK 0x40UL + #define CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_DST_IPADDR 0x80UL + #define CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_DST_IPADDR_MASK 0x100UL + #define CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_IP_PROTOCOL 0x200UL + #define CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_SRC_PORT 0x400UL + #define CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_SRC_PORT_MASK 0x800UL + #define CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_DST_PORT 0x1000UL + #define CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_DST_PORT_MASK 0x2000UL + #define CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_PRI_HINT 0x4000UL + #define CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_NTUPLE_FILTER_ID 0x8000UL + #define CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_DST_ID 0x10000UL + #define CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_MIRROR_VNIC_ID 0x20000UL + #define CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_DST_MACADDR 0x40000UL + __le64 l2_filter_id; + u8 src_macaddr[6]; + __be16 ethertype; + u8 ip_addr_type; + #define CFA_NTUPLE_FILTER_ALLOC_REQ_IP_ADDR_TYPE_UNKNOWN 0x0UL + #define CFA_NTUPLE_FILTER_ALLOC_REQ_IP_ADDR_TYPE_IPV4 0x4UL + #define CFA_NTUPLE_FILTER_ALLOC_REQ_IP_ADDR_TYPE_IPV6 0x6UL + u8 ip_protocol; + #define CFA_NTUPLE_FILTER_ALLOC_REQ_IP_PROTOCOL_UNKNOWN 0x0UL + #define CFA_NTUPLE_FILTER_ALLOC_REQ_IP_PROTOCOL_TCP 0x6UL + #define CFA_NTUPLE_FILTER_ALLOC_REQ_IP_PROTOCOL_UDP 0x11UL + __le16 dst_id; + __le16 mirror_vnic_id; + u8 tunnel_type; + #define CFA_NTUPLE_FILTER_ALLOC_REQ_TUNNEL_TYPE_NONTUNNEL 0x0UL + #define CFA_NTUPLE_FILTER_ALLOC_REQ_TUNNEL_TYPE_VXLAN 0x1UL + #define CFA_NTUPLE_FILTER_ALLOC_REQ_TUNNEL_TYPE_NVGRE 0x2UL + #define CFA_NTUPLE_FILTER_ALLOC_REQ_TUNNEL_TYPE_L2GRE 0x3UL + #define CFA_NTUPLE_FILTER_ALLOC_REQ_TUNNEL_TYPE_IPIP 0x4UL + #define CFA_NTUPLE_FILTER_ALLOC_REQ_TUNNEL_TYPE_GENEVE 0x5UL + #define CFA_NTUPLE_FILTER_ALLOC_REQ_TUNNEL_TYPE_MPLS 0x6UL + #define CFA_NTUPLE_FILTER_ALLOC_REQ_TUNNEL_TYPE_STT 0x7UL + #define CFA_NTUPLE_FILTER_ALLOC_REQ_TUNNEL_TYPE_IPGRE 0x8UL + #define CFA_NTUPLE_FILTER_ALLOC_REQ_TUNNEL_TYPE_ANYTUNNEL 0xffUL + u8 pri_hint; + #define CFA_NTUPLE_FILTER_ALLOC_REQ_PRI_HINT_NO_PREFER 0x0UL + #define CFA_NTUPLE_FILTER_ALLOC_REQ_PRI_HINT_ABOVE 0x1UL + #define CFA_NTUPLE_FILTER_ALLOC_REQ_PRI_HINT_BELOW 0x2UL + #define CFA_NTUPLE_FILTER_ALLOC_REQ_PRI_HINT_HIGHEST 0x3UL + #define CFA_NTUPLE_FILTER_ALLOC_REQ_PRI_HINT_LOWEST 0x4UL + __be32 src_ipaddr[4]; + __be32 src_ipaddr_mask[4]; + __be32 dst_ipaddr[4]; + __be32 dst_ipaddr_mask[4]; + __be16 src_port; + __be16 src_port_mask; + __be16 dst_port; + __be16 dst_port_mask; + __le64 ntuple_filter_id_hint; +}; + +/* Output (24 bytes) */ +struct hwrm_cfa_ntuple_filter_alloc_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le64 ntuple_filter_id; + __le32 flow_id; + u8 unused_0; + u8 unused_1; + u8 unused_2; + u8 valid; +}; + +/* hwrm_cfa_ntuple_filter_free */ +/* Input (24 bytes) */ +struct hwrm_cfa_ntuple_filter_free_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le64 ntuple_filter_id; +}; + +/* Output (16 bytes) */ +struct hwrm_cfa_ntuple_filter_free_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_cfa_ntuple_filter_cfg */ +/* Input (48 bytes) */ +struct hwrm_cfa_ntuple_filter_cfg_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 enables; + #define CFA_NTUPLE_FILTER_CFG_REQ_ENABLES_NEW_DST_ID 0x1UL + #define CFA_NTUPLE_FILTER_CFG_REQ_ENABLES_NEW_MIRROR_VNIC_ID 0x2UL + #define CFA_NTUPLE_FILTER_CFG_REQ_ENABLES_NEW_METER_INSTANCE_ID 0x4UL + __le32 unused_0; + __le64 ntuple_filter_id; + __le32 new_dst_id; + __le32 new_mirror_vnic_id; + __le16 new_meter_instance_id; + #define CFA_NTUPLE_FILTER_CFG_REQ_NEW_METER_INSTANCE_ID_INVALID 0xffffUL + __le16 unused_1[3]; +}; + +/* Output (16 bytes) */ +struct hwrm_cfa_ntuple_filter_cfg_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_cfa_em_flow_alloc */ +/* Input (112 bytes) */ +struct hwrm_cfa_em_flow_alloc_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 flags; + #define CFA_EM_FLOW_ALLOC_REQ_FLAGS_PATH 0x1UL + #define CFA_EM_FLOW_ALLOC_REQ_FLAGS_PATH_TX (0x0UL << 0) + #define CFA_EM_FLOW_ALLOC_REQ_FLAGS_PATH_RX (0x1UL << 0) + #define CFA_EM_FLOW_ALLOC_REQ_FLAGS_PATH_LAST CFA_EM_FLOW_ALLOC_REQ_FLAGS_PATH_RX + #define CFA_EM_FLOW_ALLOC_REQ_FLAGS_BYTE_CTR 0x2UL + #define CFA_EM_FLOW_ALLOC_REQ_FLAGS_PKT_CTR 0x4UL + #define CFA_EM_FLOW_ALLOC_REQ_FLAGS_DECAP 0x8UL + #define CFA_EM_FLOW_ALLOC_REQ_FLAGS_ENCAP 0x10UL + #define CFA_EM_FLOW_ALLOC_REQ_FLAGS_DROP 0x20UL + #define CFA_EM_FLOW_ALLOC_REQ_FLAGS_METER 0x40UL + __le32 enables; + #define CFA_EM_FLOW_ALLOC_REQ_ENABLES_L2_FILTER_ID 0x1UL + #define CFA_EM_FLOW_ALLOC_REQ_ENABLES_TUNNEL_TYPE 0x2UL + #define CFA_EM_FLOW_ALLOC_REQ_ENABLES_TUNNEL_ID 0x4UL + #define CFA_EM_FLOW_ALLOC_REQ_ENABLES_SRC_MACADDR 0x8UL + #define CFA_EM_FLOW_ALLOC_REQ_ENABLES_DST_MACADDR 0x10UL + #define CFA_EM_FLOW_ALLOC_REQ_ENABLES_OVLAN_VID 0x20UL + #define CFA_EM_FLOW_ALLOC_REQ_ENABLES_IVLAN_VID 0x40UL + #define CFA_EM_FLOW_ALLOC_REQ_ENABLES_ETHERTYPE 0x80UL + #define CFA_EM_FLOW_ALLOC_REQ_ENABLES_SRC_IPADDR 0x100UL + #define CFA_EM_FLOW_ALLOC_REQ_ENABLES_DST_IPADDR 0x200UL + #define CFA_EM_FLOW_ALLOC_REQ_ENABLES_IPADDR_TYPE 0x400UL + #define CFA_EM_FLOW_ALLOC_REQ_ENABLES_IP_PROTOCOL 0x800UL + #define CFA_EM_FLOW_ALLOC_REQ_ENABLES_SRC_PORT 0x1000UL + #define CFA_EM_FLOW_ALLOC_REQ_ENABLES_DST_PORT 0x2000UL + #define CFA_EM_FLOW_ALLOC_REQ_ENABLES_DST_ID 0x4000UL + #define CFA_EM_FLOW_ALLOC_REQ_ENABLES_MIRROR_VNIC_ID 0x8000UL + #define CFA_EM_FLOW_ALLOC_REQ_ENABLES_ENCAP_RECORD_ID 0x10000UL + #define CFA_EM_FLOW_ALLOC_REQ_ENABLES_METER_INSTANCE_ID 0x20000UL + __le64 l2_filter_id; + u8 tunnel_type; + #define CFA_EM_FLOW_ALLOC_REQ_TUNNEL_TYPE_NONTUNNEL 0x0UL + #define CFA_EM_FLOW_ALLOC_REQ_TUNNEL_TYPE_VXLAN 0x1UL + #define CFA_EM_FLOW_ALLOC_REQ_TUNNEL_TYPE_NVGRE 0x2UL + #define CFA_EM_FLOW_ALLOC_REQ_TUNNEL_TYPE_L2GRE 0x3UL + #define CFA_EM_FLOW_ALLOC_REQ_TUNNEL_TYPE_IPIP 0x4UL + #define CFA_EM_FLOW_ALLOC_REQ_TUNNEL_TYPE_GENEVE 0x5UL + #define CFA_EM_FLOW_ALLOC_REQ_TUNNEL_TYPE_MPLS 0x6UL + #define CFA_EM_FLOW_ALLOC_REQ_TUNNEL_TYPE_STT 0x7UL + #define CFA_EM_FLOW_ALLOC_REQ_TUNNEL_TYPE_IPGRE 0x8UL + #define CFA_EM_FLOW_ALLOC_REQ_TUNNEL_TYPE_ANYTUNNEL 0xffUL + u8 unused_0; + __le16 unused_1; + __le32 tunnel_id; + u8 src_macaddr[6]; + __le16 meter_instance_id; + #define CFA_EM_FLOW_ALLOC_REQ_METER_INSTANCE_ID_INVALID 0xffffUL + u8 dst_macaddr[6]; + __le16 ovlan_vid; + __le16 ivlan_vid; + __be16 ethertype; + u8 ip_addr_type; + #define CFA_EM_FLOW_ALLOC_REQ_IP_ADDR_TYPE_UNKNOWN 0x0UL + #define CFA_EM_FLOW_ALLOC_REQ_IP_ADDR_TYPE_IPV4 0x4UL + #define CFA_EM_FLOW_ALLOC_REQ_IP_ADDR_TYPE_IPV6 0x6UL + u8 ip_protocol; + #define CFA_EM_FLOW_ALLOC_REQ_IP_PROTOCOL_UNKNOWN 0x0UL + #define CFA_EM_FLOW_ALLOC_REQ_IP_PROTOCOL_TCP 0x6UL + #define CFA_EM_FLOW_ALLOC_REQ_IP_PROTOCOL_UDP 0x11UL + u8 unused_2; + u8 unused_3; + __be32 src_ipaddr[4]; + __be32 dst_ipaddr[4]; + __be16 src_port; + __be16 dst_port; + __le16 dst_id; + __le16 mirror_vnic_id; + __le32 encap_record_id; + __le32 unused_4; +}; + +/* Output (24 bytes) */ +struct hwrm_cfa_em_flow_alloc_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le64 em_filter_id; + __le32 flow_id; + u8 unused_0; + u8 unused_1; + u8 unused_2; + u8 valid; +}; + +/* hwrm_cfa_em_flow_free */ +/* Input (24 bytes) */ +struct hwrm_cfa_em_flow_free_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le64 em_filter_id; +}; + +/* Output (16 bytes) */ +struct hwrm_cfa_em_flow_free_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_cfa_em_flow_cfg */ +/* Input (48 bytes) */ +struct hwrm_cfa_em_flow_cfg_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 enables; + #define CFA_EM_FLOW_CFG_REQ_ENABLES_NEW_DST_ID 0x1UL + #define CFA_EM_FLOW_CFG_REQ_ENABLES_NEW_MIRROR_VNIC_ID 0x2UL + #define CFA_EM_FLOW_CFG_REQ_ENABLES_NEW_METER_INSTANCE_ID 0x4UL + __le32 unused_0; + __le64 em_filter_id; + __le32 new_dst_id; + __le32 new_mirror_vnic_id; + __le16 new_meter_instance_id; + #define CFA_EM_FLOW_CFG_REQ_NEW_METER_INSTANCE_ID_INVALID 0xffffUL + __le16 unused_1[3]; +}; + +/* Output (16 bytes) */ +struct hwrm_cfa_em_flow_cfg_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_cfa_meter_profile_alloc */ +/* Input (40 bytes) */ +struct hwrm_cfa_meter_profile_alloc_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + u8 flags; + #define CFA_METER_PROFILE_ALLOC_REQ_FLAGS_PATH 0x1UL + #define CFA_METER_PROFILE_ALLOC_REQ_FLAGS_PATH_TX 0x0UL + #define CFA_METER_PROFILE_ALLOC_REQ_FLAGS_PATH_RX 0x1UL + #define CFA_METER_PROFILE_ALLOC_REQ_FLAGS_PATH_LAST CFA_METER_PROFILE_ALLOC_REQ_FLAGS_PATH_RX + u8 meter_type; + #define CFA_METER_PROFILE_ALLOC_REQ_METER_TYPE_RFC2697 0x0UL + #define CFA_METER_PROFILE_ALLOC_REQ_METER_TYPE_RFC2698 0x1UL + #define CFA_METER_PROFILE_ALLOC_REQ_METER_TYPE_RFC4115 0x2UL + __le16 reserved1; + __le32 reserved2; + __le32 commit_rate; + #define CFA_METER_PROFILE_ALLOC_REQ_COMMIT_RATE_BW_VALUE_MASK 0xfffffffUL + #define CFA_METER_PROFILE_ALLOC_REQ_COMMIT_RATE_BW_VALUE_SFT 0 + #define CFA_METER_PROFILE_ALLOC_REQ_COMMIT_RATE_SCALE 0x10000000UL + #define CFA_METER_PROFILE_ALLOC_REQ_COMMIT_RATE_SCALE_BITS (0x0UL << 28) + #define CFA_METER_PROFILE_ALLOC_REQ_COMMIT_RATE_SCALE_BYTES (0x1UL << 28) + #define CFA_METER_PROFILE_ALLOC_REQ_COMMIT_RATE_SCALE_LAST CFA_METER_PROFILE_ALLOC_REQ_COMMIT_RATE_SCALE_BYTES + #define CFA_METER_PROFILE_ALLOC_REQ_COMMIT_RATE_BW_VALUE_UNIT_MASK 0xe0000000UL + #define CFA_METER_PROFILE_ALLOC_REQ_COMMIT_RATE_BW_VALUE_UNIT_SFT 29 + #define CFA_METER_PROFILE_ALLOC_REQ_COMMIT_RATE_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define CFA_METER_PROFILE_ALLOC_REQ_COMMIT_RATE_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define CFA_METER_PROFILE_ALLOC_REQ_COMMIT_RATE_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define CFA_METER_PROFILE_ALLOC_REQ_COMMIT_RATE_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define CFA_METER_PROFILE_ALLOC_REQ_COMMIT_RATE_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define CFA_METER_PROFILE_ALLOC_REQ_COMMIT_RATE_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define CFA_METER_PROFILE_ALLOC_REQ_COMMIT_RATE_BW_VALUE_UNIT_LAST CFA_METER_PROFILE_ALLOC_REQ_COMMIT_RATE_BW_VALUE_UNIT_INVALID + __le32 commit_burst; + #define CFA_METER_PROFILE_ALLOC_REQ_COMMIT_BURST_BW_VALUE_MASK 0xfffffffUL + #define CFA_METER_PROFILE_ALLOC_REQ_COMMIT_BURST_BW_VALUE_SFT 0 + #define CFA_METER_PROFILE_ALLOC_REQ_COMMIT_BURST_SCALE 0x10000000UL + #define CFA_METER_PROFILE_ALLOC_REQ_COMMIT_BURST_SCALE_BITS (0x0UL << 28) + #define CFA_METER_PROFILE_ALLOC_REQ_COMMIT_BURST_SCALE_BYTES (0x1UL << 28) + #define CFA_METER_PROFILE_ALLOC_REQ_COMMIT_BURST_SCALE_LAST CFA_METER_PROFILE_ALLOC_REQ_COMMIT_BURST_SCALE_BYTES + #define CFA_METER_PROFILE_ALLOC_REQ_COMMIT_BURST_BW_VALUE_UNIT_MASK 0xe0000000UL + #define CFA_METER_PROFILE_ALLOC_REQ_COMMIT_BURST_BW_VALUE_UNIT_SFT 29 + #define CFA_METER_PROFILE_ALLOC_REQ_COMMIT_BURST_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define CFA_METER_PROFILE_ALLOC_REQ_COMMIT_BURST_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define CFA_METER_PROFILE_ALLOC_REQ_COMMIT_BURST_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define CFA_METER_PROFILE_ALLOC_REQ_COMMIT_BURST_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define CFA_METER_PROFILE_ALLOC_REQ_COMMIT_BURST_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define CFA_METER_PROFILE_ALLOC_REQ_COMMIT_BURST_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define CFA_METER_PROFILE_ALLOC_REQ_COMMIT_BURST_BW_VALUE_UNIT_LAST CFA_METER_PROFILE_ALLOC_REQ_COMMIT_BURST_BW_VALUE_UNIT_INVALID + __le32 excess_peak_rate; + #define CFA_METER_PROFILE_ALLOC_REQ_EXCESS_PEAK_RATE_BW_VALUE_MASK 0xfffffffUL + #define CFA_METER_PROFILE_ALLOC_REQ_EXCESS_PEAK_RATE_BW_VALUE_SFT 0 + #define CFA_METER_PROFILE_ALLOC_REQ_EXCESS_PEAK_RATE_SCALE 0x10000000UL + #define CFA_METER_PROFILE_ALLOC_REQ_EXCESS_PEAK_RATE_SCALE_BITS (0x0UL << 28) + #define CFA_METER_PROFILE_ALLOC_REQ_EXCESS_PEAK_RATE_SCALE_BYTES (0x1UL << 28) + #define CFA_METER_PROFILE_ALLOC_REQ_EXCESS_PEAK_RATE_SCALE_LAST CFA_METER_PROFILE_ALLOC_REQ_EXCESS_PEAK_RATE_SCALE_BYTES + #define CFA_METER_PROFILE_ALLOC_REQ_EXCESS_PEAK_RATE_BW_VALUE_UNIT_MASK 0xe0000000UL + #define CFA_METER_PROFILE_ALLOC_REQ_EXCESS_PEAK_RATE_BW_VALUE_UNIT_SFT 29 + #define CFA_METER_PROFILE_ALLOC_REQ_EXCESS_PEAK_RATE_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define CFA_METER_PROFILE_ALLOC_REQ_EXCESS_PEAK_RATE_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define CFA_METER_PROFILE_ALLOC_REQ_EXCESS_PEAK_RATE_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define CFA_METER_PROFILE_ALLOC_REQ_EXCESS_PEAK_RATE_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define CFA_METER_PROFILE_ALLOC_REQ_EXCESS_PEAK_RATE_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define CFA_METER_PROFILE_ALLOC_REQ_EXCESS_PEAK_RATE_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define CFA_METER_PROFILE_ALLOC_REQ_EXCESS_PEAK_RATE_BW_VALUE_UNIT_LAST CFA_METER_PROFILE_ALLOC_REQ_EXCESS_PEAK_RATE_BW_VALUE_UNIT_INVALID + __le32 excess_peak_burst; + #define CFA_METER_PROFILE_ALLOC_REQ_EXCESS_PEAK_BURST_BW_VALUE_MASK 0xfffffffUL + #define CFA_METER_PROFILE_ALLOC_REQ_EXCESS_PEAK_BURST_BW_VALUE_SFT 0 + #define CFA_METER_PROFILE_ALLOC_REQ_EXCESS_PEAK_BURST_SCALE 0x10000000UL + #define CFA_METER_PROFILE_ALLOC_REQ_EXCESS_PEAK_BURST_SCALE_BITS (0x0UL << 28) + #define CFA_METER_PROFILE_ALLOC_REQ_EXCESS_PEAK_BURST_SCALE_BYTES (0x1UL << 28) + #define CFA_METER_PROFILE_ALLOC_REQ_EXCESS_PEAK_BURST_SCALE_LAST CFA_METER_PROFILE_ALLOC_REQ_EXCESS_PEAK_BURST_SCALE_BYTES + #define CFA_METER_PROFILE_ALLOC_REQ_EXCESS_PEAK_BURST_BW_VALUE_UNIT_MASK 0xe0000000UL + #define CFA_METER_PROFILE_ALLOC_REQ_EXCESS_PEAK_BURST_BW_VALUE_UNIT_SFT 29 + #define CFA_METER_PROFILE_ALLOC_REQ_EXCESS_PEAK_BURST_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define CFA_METER_PROFILE_ALLOC_REQ_EXCESS_PEAK_BURST_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define CFA_METER_PROFILE_ALLOC_REQ_EXCESS_PEAK_BURST_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define CFA_METER_PROFILE_ALLOC_REQ_EXCESS_PEAK_BURST_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define CFA_METER_PROFILE_ALLOC_REQ_EXCESS_PEAK_BURST_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define CFA_METER_PROFILE_ALLOC_REQ_EXCESS_PEAK_BURST_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define CFA_METER_PROFILE_ALLOC_REQ_EXCESS_PEAK_BURST_BW_VALUE_UNIT_LAST CFA_METER_PROFILE_ALLOC_REQ_EXCESS_PEAK_BURST_BW_VALUE_UNIT_INVALID +}; + +/* Output (16 bytes) */ +struct hwrm_cfa_meter_profile_alloc_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le16 meter_profile_id; + #define CFA_METER_PROFILE_ALLOC_RESP_METER_PROFILE_ID_INVALID 0xffffUL + u8 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 unused_4; + u8 valid; +}; + +/* hwrm_cfa_meter_profile_free */ +/* Input (24 bytes) */ +struct hwrm_cfa_meter_profile_free_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + u8 flags; + #define CFA_METER_PROFILE_FREE_REQ_FLAGS_PATH 0x1UL + #define CFA_METER_PROFILE_FREE_REQ_FLAGS_PATH_TX 0x0UL + #define CFA_METER_PROFILE_FREE_REQ_FLAGS_PATH_RX 0x1UL + #define CFA_METER_PROFILE_FREE_REQ_FLAGS_PATH_LAST CFA_METER_PROFILE_FREE_REQ_FLAGS_PATH_RX + u8 unused_0; + __le16 meter_profile_id; + #define CFA_METER_PROFILE_FREE_REQ_METER_PROFILE_ID_INVALID 0xffffUL + __le32 unused_1; +}; + +/* Output (16 bytes) */ +struct hwrm_cfa_meter_profile_free_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_cfa_meter_profile_cfg */ +/* Input (40 bytes) */ +struct hwrm_cfa_meter_profile_cfg_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + u8 flags; + #define CFA_METER_PROFILE_CFG_REQ_FLAGS_PATH 0x1UL + #define CFA_METER_PROFILE_CFG_REQ_FLAGS_PATH_TX 0x0UL + #define CFA_METER_PROFILE_CFG_REQ_FLAGS_PATH_RX 0x1UL + #define CFA_METER_PROFILE_CFG_REQ_FLAGS_PATH_LAST CFA_METER_PROFILE_CFG_REQ_FLAGS_PATH_RX + u8 meter_type; + #define CFA_METER_PROFILE_CFG_REQ_METER_TYPE_RFC2697 0x0UL + #define CFA_METER_PROFILE_CFG_REQ_METER_TYPE_RFC2698 0x1UL + #define CFA_METER_PROFILE_CFG_REQ_METER_TYPE_RFC4115 0x2UL + __le16 meter_profile_id; + #define CFA_METER_PROFILE_CFG_REQ_METER_PROFILE_ID_INVALID 0xffffUL + __le32 reserved; + __le32 commit_rate; + #define CFA_METER_PROFILE_CFG_REQ_COMMIT_RATE_BW_VALUE_MASK 0xfffffffUL + #define CFA_METER_PROFILE_CFG_REQ_COMMIT_RATE_BW_VALUE_SFT 0 + #define CFA_METER_PROFILE_CFG_REQ_COMMIT_RATE_SCALE 0x10000000UL + #define CFA_METER_PROFILE_CFG_REQ_COMMIT_RATE_SCALE_BITS (0x0UL << 28) + #define CFA_METER_PROFILE_CFG_REQ_COMMIT_RATE_SCALE_BYTES (0x1UL << 28) + #define CFA_METER_PROFILE_CFG_REQ_COMMIT_RATE_SCALE_LAST CFA_METER_PROFILE_CFG_REQ_COMMIT_RATE_SCALE_BYTES + #define CFA_METER_PROFILE_CFG_REQ_COMMIT_RATE_BW_VALUE_UNIT_MASK 0xe0000000UL + #define CFA_METER_PROFILE_CFG_REQ_COMMIT_RATE_BW_VALUE_UNIT_SFT 29 + #define CFA_METER_PROFILE_CFG_REQ_COMMIT_RATE_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define CFA_METER_PROFILE_CFG_REQ_COMMIT_RATE_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define CFA_METER_PROFILE_CFG_REQ_COMMIT_RATE_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define CFA_METER_PROFILE_CFG_REQ_COMMIT_RATE_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define CFA_METER_PROFILE_CFG_REQ_COMMIT_RATE_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define CFA_METER_PROFILE_CFG_REQ_COMMIT_RATE_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define CFA_METER_PROFILE_CFG_REQ_COMMIT_RATE_BW_VALUE_UNIT_LAST CFA_METER_PROFILE_CFG_REQ_COMMIT_RATE_BW_VALUE_UNIT_INVALID + __le32 commit_burst; + #define CFA_METER_PROFILE_CFG_REQ_COMMIT_BURST_BW_VALUE_MASK 0xfffffffUL + #define CFA_METER_PROFILE_CFG_REQ_COMMIT_BURST_BW_VALUE_SFT 0 + #define CFA_METER_PROFILE_CFG_REQ_COMMIT_BURST_SCALE 0x10000000UL + #define CFA_METER_PROFILE_CFG_REQ_COMMIT_BURST_SCALE_BITS (0x0UL << 28) + #define CFA_METER_PROFILE_CFG_REQ_COMMIT_BURST_SCALE_BYTES (0x1UL << 28) + #define CFA_METER_PROFILE_CFG_REQ_COMMIT_BURST_SCALE_LAST CFA_METER_PROFILE_CFG_REQ_COMMIT_BURST_SCALE_BYTES + #define CFA_METER_PROFILE_CFG_REQ_COMMIT_BURST_BW_VALUE_UNIT_MASK 0xe0000000UL + #define CFA_METER_PROFILE_CFG_REQ_COMMIT_BURST_BW_VALUE_UNIT_SFT 29 + #define CFA_METER_PROFILE_CFG_REQ_COMMIT_BURST_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define CFA_METER_PROFILE_CFG_REQ_COMMIT_BURST_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define CFA_METER_PROFILE_CFG_REQ_COMMIT_BURST_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define CFA_METER_PROFILE_CFG_REQ_COMMIT_BURST_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define CFA_METER_PROFILE_CFG_REQ_COMMIT_BURST_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define CFA_METER_PROFILE_CFG_REQ_COMMIT_BURST_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define CFA_METER_PROFILE_CFG_REQ_COMMIT_BURST_BW_VALUE_UNIT_LAST CFA_METER_PROFILE_CFG_REQ_COMMIT_BURST_BW_VALUE_UNIT_INVALID + __le32 excess_peak_rate; + #define CFA_METER_PROFILE_CFG_REQ_EXCESS_PEAK_RATE_BW_VALUE_MASK 0xfffffffUL + #define CFA_METER_PROFILE_CFG_REQ_EXCESS_PEAK_RATE_BW_VALUE_SFT 0 + #define CFA_METER_PROFILE_CFG_REQ_EXCESS_PEAK_RATE_SCALE 0x10000000UL + #define CFA_METER_PROFILE_CFG_REQ_EXCESS_PEAK_RATE_SCALE_BITS (0x0UL << 28) + #define CFA_METER_PROFILE_CFG_REQ_EXCESS_PEAK_RATE_SCALE_BYTES (0x1UL << 28) + #define CFA_METER_PROFILE_CFG_REQ_EXCESS_PEAK_RATE_SCALE_LAST CFA_METER_PROFILE_CFG_REQ_EXCESS_PEAK_RATE_SCALE_BYTES + #define CFA_METER_PROFILE_CFG_REQ_EXCESS_PEAK_RATE_BW_VALUE_UNIT_MASK 0xe0000000UL + #define CFA_METER_PROFILE_CFG_REQ_EXCESS_PEAK_RATE_BW_VALUE_UNIT_SFT 29 + #define CFA_METER_PROFILE_CFG_REQ_EXCESS_PEAK_RATE_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define CFA_METER_PROFILE_CFG_REQ_EXCESS_PEAK_RATE_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define CFA_METER_PROFILE_CFG_REQ_EXCESS_PEAK_RATE_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define CFA_METER_PROFILE_CFG_REQ_EXCESS_PEAK_RATE_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define CFA_METER_PROFILE_CFG_REQ_EXCESS_PEAK_RATE_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define CFA_METER_PROFILE_CFG_REQ_EXCESS_PEAK_RATE_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define CFA_METER_PROFILE_CFG_REQ_EXCESS_PEAK_RATE_BW_VALUE_UNIT_LAST CFA_METER_PROFILE_CFG_REQ_EXCESS_PEAK_RATE_BW_VALUE_UNIT_INVALID + __le32 excess_peak_burst; + #define CFA_METER_PROFILE_CFG_REQ_EXCESS_PEAK_BURST_BW_VALUE_MASK 0xfffffffUL + #define CFA_METER_PROFILE_CFG_REQ_EXCESS_PEAK_BURST_BW_VALUE_SFT 0 + #define CFA_METER_PROFILE_CFG_REQ_EXCESS_PEAK_BURST_SCALE 0x10000000UL + #define CFA_METER_PROFILE_CFG_REQ_EXCESS_PEAK_BURST_SCALE_BITS (0x0UL << 28) + #define CFA_METER_PROFILE_CFG_REQ_EXCESS_PEAK_BURST_SCALE_BYTES (0x1UL << 28) + #define CFA_METER_PROFILE_CFG_REQ_EXCESS_PEAK_BURST_SCALE_LAST CFA_METER_PROFILE_CFG_REQ_EXCESS_PEAK_BURST_SCALE_BYTES + #define CFA_METER_PROFILE_CFG_REQ_EXCESS_PEAK_BURST_BW_VALUE_UNIT_MASK 0xe0000000UL + #define CFA_METER_PROFILE_CFG_REQ_EXCESS_PEAK_BURST_BW_VALUE_UNIT_SFT 29 + #define CFA_METER_PROFILE_CFG_REQ_EXCESS_PEAK_BURST_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define CFA_METER_PROFILE_CFG_REQ_EXCESS_PEAK_BURST_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define CFA_METER_PROFILE_CFG_REQ_EXCESS_PEAK_BURST_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define CFA_METER_PROFILE_CFG_REQ_EXCESS_PEAK_BURST_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define CFA_METER_PROFILE_CFG_REQ_EXCESS_PEAK_BURST_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define CFA_METER_PROFILE_CFG_REQ_EXCESS_PEAK_BURST_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define CFA_METER_PROFILE_CFG_REQ_EXCESS_PEAK_BURST_BW_VALUE_UNIT_LAST CFA_METER_PROFILE_CFG_REQ_EXCESS_PEAK_BURST_BW_VALUE_UNIT_INVALID +}; + +/* Output (16 bytes) */ +struct hwrm_cfa_meter_profile_cfg_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_cfa_meter_instance_alloc */ +/* Input (24 bytes) */ +struct hwrm_cfa_meter_instance_alloc_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + u8 flags; + #define CFA_METER_INSTANCE_ALLOC_REQ_FLAGS_PATH 0x1UL + #define CFA_METER_INSTANCE_ALLOC_REQ_FLAGS_PATH_TX 0x0UL + #define CFA_METER_INSTANCE_ALLOC_REQ_FLAGS_PATH_RX 0x1UL + #define CFA_METER_INSTANCE_ALLOC_REQ_FLAGS_PATH_LAST CFA_METER_INSTANCE_ALLOC_REQ_FLAGS_PATH_RX + u8 unused_0; + __le16 meter_profile_id; + #define CFA_METER_INSTANCE_ALLOC_REQ_METER_PROFILE_ID_INVALID 0xffffUL + __le32 unused_1; +}; + +/* Output (16 bytes) */ +struct hwrm_cfa_meter_instance_alloc_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le16 meter_instance_id; + #define CFA_METER_INSTANCE_ALLOC_RESP_METER_INSTANCE_ID_INVALID 0xffffUL + u8 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 unused_4; + u8 valid; +}; + +/* hwrm_cfa_meter_instance_free */ +/* Input (24 bytes) */ +struct hwrm_cfa_meter_instance_free_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + u8 flags; + #define CFA_METER_INSTANCE_FREE_REQ_FLAGS_PATH 0x1UL + #define CFA_METER_INSTANCE_FREE_REQ_FLAGS_PATH_TX 0x0UL + #define CFA_METER_INSTANCE_FREE_REQ_FLAGS_PATH_RX 0x1UL + #define CFA_METER_INSTANCE_FREE_REQ_FLAGS_PATH_LAST CFA_METER_INSTANCE_FREE_REQ_FLAGS_PATH_RX + u8 unused_0; + __le16 meter_instance_id; + #define CFA_METER_INSTANCE_FREE_REQ_METER_INSTANCE_ID_INVALID 0xffffUL + __le32 unused_1; +}; + +/* Output (16 bytes) */ +struct hwrm_cfa_meter_instance_free_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_cfa_decap_filter_alloc */ +/* Input (104 bytes) */ +struct hwrm_cfa_decap_filter_alloc_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 flags; + #define CFA_DECAP_FILTER_ALLOC_REQ_FLAGS_OVS_TUNNEL 0x1UL + __le32 enables; + #define CFA_DECAP_FILTER_ALLOC_REQ_ENABLES_TUNNEL_TYPE 0x1UL + #define CFA_DECAP_FILTER_ALLOC_REQ_ENABLES_TUNNEL_ID 0x2UL + #define CFA_DECAP_FILTER_ALLOC_REQ_ENABLES_SRC_MACADDR 0x4UL + #define CFA_DECAP_FILTER_ALLOC_REQ_ENABLES_DST_MACADDR 0x8UL + #define CFA_DECAP_FILTER_ALLOC_REQ_ENABLES_OVLAN_VID 0x10UL + #define CFA_DECAP_FILTER_ALLOC_REQ_ENABLES_IVLAN_VID 0x20UL + #define CFA_DECAP_FILTER_ALLOC_REQ_ENABLES_T_OVLAN_VID 0x40UL + #define CFA_DECAP_FILTER_ALLOC_REQ_ENABLES_T_IVLAN_VID 0x80UL + #define CFA_DECAP_FILTER_ALLOC_REQ_ENABLES_ETHERTYPE 0x100UL + #define CFA_DECAP_FILTER_ALLOC_REQ_ENABLES_SRC_IPADDR 0x200UL + #define CFA_DECAP_FILTER_ALLOC_REQ_ENABLES_DST_IPADDR 0x400UL + #define CFA_DECAP_FILTER_ALLOC_REQ_ENABLES_IPADDR_TYPE 0x800UL + #define CFA_DECAP_FILTER_ALLOC_REQ_ENABLES_IP_PROTOCOL 0x1000UL + #define CFA_DECAP_FILTER_ALLOC_REQ_ENABLES_SRC_PORT 0x2000UL + #define CFA_DECAP_FILTER_ALLOC_REQ_ENABLES_DST_PORT 0x4000UL + #define CFA_DECAP_FILTER_ALLOC_REQ_ENABLES_DST_ID 0x8000UL + #define CFA_DECAP_FILTER_ALLOC_REQ_ENABLES_MIRROR_VNIC_ID 0x10000UL + __le32 tunnel_id; + u8 tunnel_type; + #define CFA_DECAP_FILTER_ALLOC_REQ_TUNNEL_TYPE_NONTUNNEL 0x0UL + #define CFA_DECAP_FILTER_ALLOC_REQ_TUNNEL_TYPE_VXLAN 0x1UL + #define CFA_DECAP_FILTER_ALLOC_REQ_TUNNEL_TYPE_NVGRE 0x2UL + #define CFA_DECAP_FILTER_ALLOC_REQ_TUNNEL_TYPE_L2GRE 0x3UL + #define CFA_DECAP_FILTER_ALLOC_REQ_TUNNEL_TYPE_IPIP 0x4UL + #define CFA_DECAP_FILTER_ALLOC_REQ_TUNNEL_TYPE_GENEVE 0x5UL + #define CFA_DECAP_FILTER_ALLOC_REQ_TUNNEL_TYPE_MPLS 0x6UL + #define CFA_DECAP_FILTER_ALLOC_REQ_TUNNEL_TYPE_STT 0x7UL + #define CFA_DECAP_FILTER_ALLOC_REQ_TUNNEL_TYPE_IPGRE 0x8UL + #define CFA_DECAP_FILTER_ALLOC_REQ_TUNNEL_TYPE_ANYTUNNEL 0xffUL + u8 unused_0; + __le16 unused_1; + u8 src_macaddr[6]; + u8 unused_2; + u8 unused_3; + u8 dst_macaddr[6]; + __le16 ovlan_vid; + __le16 ivlan_vid; + __le16 t_ovlan_vid; + __le16 t_ivlan_vid; + __be16 ethertype; + u8 ip_addr_type; + #define CFA_DECAP_FILTER_ALLOC_REQ_IP_ADDR_TYPE_UNKNOWN 0x0UL + #define CFA_DECAP_FILTER_ALLOC_REQ_IP_ADDR_TYPE_IPV4 0x4UL + #define CFA_DECAP_FILTER_ALLOC_REQ_IP_ADDR_TYPE_IPV6 0x6UL + u8 ip_protocol; + #define CFA_DECAP_FILTER_ALLOC_REQ_IP_PROTOCOL_UNKNOWN 0x0UL + #define CFA_DECAP_FILTER_ALLOC_REQ_IP_PROTOCOL_TCP 0x6UL + #define CFA_DECAP_FILTER_ALLOC_REQ_IP_PROTOCOL_UDP 0x11UL + u8 unused_4; + u8 unused_5; + u8 unused_6[3]; + u8 unused_7; + __be32 src_ipaddr[4]; + __be32 dst_ipaddr[4]; + __be16 src_port; + __be16 dst_port; + __le16 dst_id; + __le16 l2_ctxt_ref_id; +}; + +/* Output (16 bytes) */ +struct hwrm_cfa_decap_filter_alloc_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 decap_filter_id; + u8 unused_0; + u8 unused_1; + u8 unused_2; + u8 valid; +}; + +/* hwrm_cfa_decap_filter_free */ +/* Input (24 bytes) */ +struct hwrm_cfa_decap_filter_free_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 decap_filter_id; + __le32 unused_0; +}; + +/* Output (16 bytes) */ +struct hwrm_cfa_decap_filter_free_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_cfa_flow_alloc */ +/* Input (128 bytes) */ +struct hwrm_cfa_flow_alloc_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le16 flags; + #define CFA_FLOW_ALLOC_REQ_FLAGS_TUNNEL 0x1UL + #define CFA_FLOW_ALLOC_REQ_FLAGS_NUM_VLAN_MASK 0x6UL + #define CFA_FLOW_ALLOC_REQ_FLAGS_NUM_VLAN_SFT 1 + #define CFA_FLOW_ALLOC_REQ_FLAGS_NUM_VLAN_NONE (0x0UL << 1) + #define CFA_FLOW_ALLOC_REQ_FLAGS_NUM_VLAN_ONE (0x1UL << 1) + #define CFA_FLOW_ALLOC_REQ_FLAGS_NUM_VLAN_TWO (0x2UL << 1) + #define CFA_FLOW_ALLOC_REQ_FLAGS_NUM_VLAN_LAST CFA_FLOW_ALLOC_REQ_FLAGS_NUM_VLAN_TWO + #define CFA_FLOW_ALLOC_REQ_FLAGS_FLOWTYPE_MASK 0x38UL + #define CFA_FLOW_ALLOC_REQ_FLAGS_FLOWTYPE_SFT 3 + #define CFA_FLOW_ALLOC_REQ_FLAGS_FLOWTYPE_L2 (0x0UL << 3) + #define CFA_FLOW_ALLOC_REQ_FLAGS_FLOWTYPE_IPV4 (0x1UL << 3) + #define CFA_FLOW_ALLOC_REQ_FLAGS_FLOWTYPE_IPV6 (0x2UL << 3) + #define CFA_FLOW_ALLOC_REQ_FLAGS_FLOWTYPE_LAST CFA_FLOW_ALLOC_REQ_FLAGS_FLOWTYPE_IPV6 + __le16 src_fid; + __le32 tunnel_handle; + __le16 action_flags; + #define CFA_FLOW_ALLOC_REQ_ACTION_FLAGS_FWD 0x1UL + #define CFA_FLOW_ALLOC_REQ_ACTION_FLAGS_RECYCLE 0x2UL + #define CFA_FLOW_ALLOC_REQ_ACTION_FLAGS_DROP 0x4UL + #define CFA_FLOW_ALLOC_REQ_ACTION_FLAGS_METER 0x8UL + #define CFA_FLOW_ALLOC_REQ_ACTION_FLAGS_TUNNEL 0x10UL + #define CFA_FLOW_ALLOC_REQ_ACTION_FLAGS_NAT_SRC 0x20UL + #define CFA_FLOW_ALLOC_REQ_ACTION_FLAGS_NAT_DEST 0x40UL + #define CFA_FLOW_ALLOC_REQ_ACTION_FLAGS_NAT_IPV4_ADDRESS 0x80UL + #define CFA_FLOW_ALLOC_REQ_ACTION_FLAGS_L2_HEADER_REWRITE 0x100UL + #define CFA_FLOW_ALLOC_REQ_ACTION_FLAGS_TTL_DECREMENT 0x200UL + __le16 dst_fid; + __be16 l2_rewrite_vlan_tpid; + __be16 l2_rewrite_vlan_tci; + __le16 act_meter_id; + __le16 ref_flow_handle; + __be16 ethertype; + __be16 outer_vlan_tci; + __be16 dmac[3]; + __be16 inner_vlan_tci; + __be16 smac[3]; + u8 ip_dst_mask_len; + u8 ip_src_mask_len; + __be32 ip_dst[4]; + __be32 ip_src[4]; + __be16 l4_src_port; + __be16 l4_src_port_mask; + __be16 l4_dst_port; + __be16 l4_dst_port_mask; + __be32 nat_ip_address[4]; + __be16 l2_rewrite_dmac[3]; + __be16 nat_port; + __be16 l2_rewrite_smac[3]; + u8 ip_proto; + u8 unused_0; +}; + +/* Output (16 bytes) */ +struct hwrm_cfa_flow_alloc_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le16 flow_handle; + u8 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 unused_4; + u8 valid; +}; + +/* hwrm_cfa_flow_free */ +/* Input (24 bytes) */ +struct hwrm_cfa_flow_free_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le16 flow_handle; + __le16 unused_0[3]; +}; + +/* Output (32 bytes) */ +struct hwrm_cfa_flow_free_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le64 packet; + __le64 byte; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_cfa_flow_info */ +/* Input (24 bytes) */ +struct hwrm_cfa_flow_info_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le16 flow_handle; + __le16 unused_0[3]; +}; + +/* Output (56 bytes) */ +struct hwrm_cfa_flow_info_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + u8 flags; + u8 profile; + __le16 src_fid; + __le16 dst_fid; + __le16 l2_ctxt_id; + __le64 em_info; + __le64 tcam_info; + __le64 vfp_tcam_info; + __le16 ar_id; + __le16 flow_handle; + __le32 tunnel_handle; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_cfa_flow_flush */ +/* Input (24 bytes) */ +struct hwrm_cfa_flow_flush_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 flags; + __le32 unused_0; +}; + +/* Output (16 bytes) */ +struct hwrm_cfa_flow_flush_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_cfa_flow_stats */ +/* Input (40 bytes) */ +struct hwrm_cfa_flow_stats_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le16 num_flows; + __le16 flow_handle_0; + __le16 flow_handle_1; + __le16 flow_handle_2; + __le16 flow_handle_3; + __le16 flow_handle_4; + __le16 flow_handle_5; + __le16 flow_handle_6; + __le16 flow_handle_7; + __le16 flow_handle_8; + __le16 flow_handle_9; + __le16 unused_0; +}; + +/* Output (176 bytes) */ +struct hwrm_cfa_flow_stats_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le64 packet_0; + __le64 packet_1; + __le64 packet_2; + __le64 packet_3; + __le64 packet_4; + __le64 packet_5; + __le64 packet_6; + __le64 packet_7; + __le64 packet_8; + __le64 packet_9; + __le64 byte_0; + __le64 byte_1; + __le64 byte_2; + __le64 byte_3; + __le64 byte_4; + __le64 byte_5; + __le64 byte_6; + __le64 byte_7; + __le64 byte_8; + __le64 byte_9; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_cfa_vf_pair_alloc */ +/* Input (32 bytes) */ +struct hwrm_cfa_vf_pair_alloc_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le16 vf_a_id; + __le16 vf_b_id; + __le32 unused_0; + char pair_name[32]; +}; + +/* Output (16 bytes) */ +struct hwrm_cfa_vf_pair_alloc_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_cfa_vf_pair_free */ +/* Input (24 bytes) */ +struct hwrm_cfa_vf_pair_free_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + char pair_name[32]; +}; + +/* Output (16 bytes) */ +struct hwrm_cfa_vf_pair_free_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_cfa_vf_pair_info */ +/* Input (32 bytes) */ +struct hwrm_cfa_vf_pair_info_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 flags; + #define CFA_VF_PAIR_INFO_REQ_FLAGS_LOOKUP_TYPE 0x1UL + __le16 vf_pair_index; + u8 unused_0; + u8 unused_1; + char vf_pair_name[32]; +}; + +/* Output (64 bytes) */ +struct hwrm_cfa_vf_pair_info_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le16 next_vf_pair_index; + __le16 vf_a_fid; + __le16 vf_a_index; + __le16 vf_b_fid; + __le16 vf_b_index; + u8 pair_state; + #define CFA_VF_PAIR_INFO_RESP_PAIR_STATE_ALLOCATED 0x1UL + #define CFA_VF_PAIR_INFO_RESP_PAIR_STATE_ACTIVE 0x2UL + u8 unused_0; + __le32 unused_1; + char pair_name[32]; + __le32 unused_2; + u8 unused_3; + u8 unused_4; + u8 unused_5; + u8 valid; +}; + +/* hwrm_cfa_vfr_alloc */ +/* Input (32 bytes) */ +struct hwrm_cfa_vfr_alloc_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le16 vf_id; + __le16 reserved; + __le32 unused_0; + char vfr_name[32]; +}; + +/* Output (16 bytes) */ +struct hwrm_cfa_vfr_alloc_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le16 rx_cfa_code; + __le16 tx_cfa_action; + u8 unused_0; + u8 unused_1; + u8 unused_2; + u8 valid; +}; + +/* hwrm_cfa_vfr_free */ +/* Input (24 bytes) */ +struct hwrm_cfa_vfr_free_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + char vfr_name[32]; +}; + +/* Output (16 bytes) */ +struct hwrm_cfa_vfr_free_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_tunnel_dst_port_query */ +/* Input (24 bytes) */ +struct hwrm_tunnel_dst_port_query_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + u8 tunnel_type; + #define TUNNEL_DST_PORT_QUERY_REQ_TUNNEL_TYPE_VXLAN 0x1UL + #define TUNNEL_DST_PORT_QUERY_REQ_TUNNEL_TYPE_GENEVE 0x5UL + u8 unused_0[7]; +}; + +/* Output (16 bytes) */ +struct hwrm_tunnel_dst_port_query_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le16 tunnel_dst_port_id; + __be16 tunnel_dst_port_val; + u8 unused_0; + u8 unused_1; + u8 unused_2; + u8 valid; +}; + +/* hwrm_tunnel_dst_port_alloc */ +/* Input (24 bytes) */ +struct hwrm_tunnel_dst_port_alloc_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + u8 tunnel_type; + #define TUNNEL_DST_PORT_ALLOC_REQ_TUNNEL_TYPE_VXLAN 0x1UL + #define TUNNEL_DST_PORT_ALLOC_REQ_TUNNEL_TYPE_GENEVE 0x5UL + u8 unused_0; + __be16 tunnel_dst_port_val; + __le32 unused_1; +}; + +/* Output (16 bytes) */ +struct hwrm_tunnel_dst_port_alloc_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le16 tunnel_dst_port_id; + u8 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 unused_4; + u8 valid; +}; + +/* hwrm_tunnel_dst_port_free */ +/* Input (24 bytes) */ +struct hwrm_tunnel_dst_port_free_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + u8 tunnel_type; + #define TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_VXLAN 0x1UL + #define TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_GENEVE 0x5UL + u8 unused_0; + __le16 tunnel_dst_port_id; + __le32 unused_1; +}; + +/* Output (16 bytes) */ +struct hwrm_tunnel_dst_port_free_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_stat_ctx_alloc */ +/* Input (32 bytes) */ +struct hwrm_stat_ctx_alloc_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le64 stats_dma_addr; + __le32 update_period_ms; + u8 stat_ctx_flags; + #define STAT_CTX_ALLOC_REQ_STAT_CTX_FLAGS_ROCE 0x1UL + u8 unused_0[3]; +}; + +/* Output (16 bytes) */ +struct hwrm_stat_ctx_alloc_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 stat_ctx_id; + u8 unused_0; + u8 unused_1; + u8 unused_2; + u8 valid; +}; + +/* hwrm_stat_ctx_free */ +/* Input (24 bytes) */ +struct hwrm_stat_ctx_free_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 stat_ctx_id; + __le32 unused_0; +}; + +/* Output (16 bytes) */ +struct hwrm_stat_ctx_free_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 stat_ctx_id; + u8 unused_0; + u8 unused_1; + u8 unused_2; + u8 valid; +}; + +/* hwrm_stat_ctx_query */ +/* Input (24 bytes) */ +struct hwrm_stat_ctx_query_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 stat_ctx_id; + __le32 unused_0; +}; + +/* Output (176 bytes) */ +struct hwrm_stat_ctx_query_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le64 tx_ucast_pkts; + __le64 tx_mcast_pkts; + __le64 tx_bcast_pkts; + __le64 tx_err_pkts; + __le64 tx_drop_pkts; + __le64 tx_ucast_bytes; + __le64 tx_mcast_bytes; + __le64 tx_bcast_bytes; + __le64 rx_ucast_pkts; + __le64 rx_mcast_pkts; + __le64 rx_bcast_pkts; + __le64 rx_err_pkts; + __le64 rx_drop_pkts; + __le64 rx_ucast_bytes; + __le64 rx_mcast_bytes; + __le64 rx_bcast_bytes; + __le64 rx_agg_pkts; + __le64 rx_agg_bytes; + __le64 rx_agg_events; + __le64 rx_agg_aborts; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_stat_ctx_clr_stats */ +/* Input (24 bytes) */ +struct hwrm_stat_ctx_clr_stats_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 stat_ctx_id; + __le32 unused_0; +}; + +/* Output (16 bytes) */ +struct hwrm_stat_ctx_clr_stats_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_fw_reset */ +/* Input (24 bytes) */ +struct hwrm_fw_reset_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + u8 embedded_proc_type; + #define FW_RESET_REQ_EMBEDDED_PROC_TYPE_BOOT 0x0UL + #define FW_RESET_REQ_EMBEDDED_PROC_TYPE_MGMT 0x1UL + #define FW_RESET_REQ_EMBEDDED_PROC_TYPE_NETCTRL 0x2UL + #define FW_RESET_REQ_EMBEDDED_PROC_TYPE_ROCE 0x3UL + #define FW_RESET_REQ_EMBEDDED_PROC_TYPE_HOST 0x4UL + u8 selfrst_status; + #define FW_RESET_REQ_SELFRST_STATUS_SELFRSTNONE 0x0UL + #define FW_RESET_REQ_SELFRST_STATUS_SELFRSTASAP 0x1UL + #define FW_RESET_REQ_SELFRST_STATUS_SELFRSTPCIERST 0x2UL + u8 host_idx; + u8 unused_0[5]; +}; + +/* Output (16 bytes) */ +struct hwrm_fw_reset_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + u8 selfrst_status; + #define FW_RESET_RESP_SELFRST_STATUS_SELFRSTNONE 0x0UL + #define FW_RESET_RESP_SELFRST_STATUS_SELFRSTASAP 0x1UL + #define FW_RESET_RESP_SELFRST_STATUS_SELFRSTPCIERST 0x2UL + u8 unused_0; + __le16 unused_1; + u8 unused_2; + u8 unused_3; + u8 unused_4; + u8 valid; +}; + +/* hwrm_fw_qstatus */ +/* Input (24 bytes) */ +struct hwrm_fw_qstatus_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + u8 embedded_proc_type; + #define FW_QSTATUS_REQ_EMBEDDED_PROC_TYPE_BOOT 0x0UL + #define FW_QSTATUS_REQ_EMBEDDED_PROC_TYPE_MGMT 0x1UL + #define FW_QSTATUS_REQ_EMBEDDED_PROC_TYPE_NETCTRL 0x2UL + #define FW_QSTATUS_REQ_EMBEDDED_PROC_TYPE_ROCE 0x3UL + #define FW_QSTATUS_REQ_EMBEDDED_PROC_TYPE_HOST 0x4UL + u8 unused_0[7]; +}; + +/* Output (16 bytes) */ +struct hwrm_fw_qstatus_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + u8 selfrst_status; + #define FW_QSTATUS_RESP_SELFRST_STATUS_SELFRSTNONE 0x0UL + #define FW_QSTATUS_RESP_SELFRST_STATUS_SELFRSTASAP 0x1UL + #define FW_QSTATUS_RESP_SELFRST_STATUS_SELFRSTPCIERST 0x2UL + u8 unused_0; + __le16 unused_1; + u8 unused_2; + u8 unused_3; + u8 unused_4; + u8 valid; +}; + +/* hwrm_fw_set_time */ +/* Input (32 bytes) */ +struct hwrm_fw_set_time_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le16 year; + #define FW_SET_TIME_REQ_YEAR_UNKNOWN 0x0UL + u8 month; + u8 day; + u8 hour; + u8 minute; + u8 second; + u8 unused_0; + __le16 millisecond; + __le16 zone; + #define FW_SET_TIME_REQ_ZONE_UTC 0x0UL + #define FW_SET_TIME_REQ_ZONE_UNKNOWN 0xffffUL + __le32 unused_1; +}; + +/* Output (16 bytes) */ +struct hwrm_fw_set_time_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_fw_get_time */ +/* Input (16 bytes) */ +struct hwrm_fw_get_time_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; +}; + +/* Output (24 bytes) */ +struct hwrm_fw_get_time_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le16 year; + #define FW_GET_TIME_RESP_YEAR_UNKNOWN 0x0UL + u8 month; + u8 day; + u8 hour; + u8 minute; + u8 second; + u8 unused_0; + __le16 millisecond; + __le16 zone; + #define FW_GET_TIME_RESP_ZONE_UTC 0x0UL + #define FW_GET_TIME_RESP_ZONE_UNKNOWN 0xffffUL + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_fw_set_structured_data */ +/* Input (32 bytes) */ +struct hwrm_fw_set_structured_data_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le64 src_data_addr; + __le16 data_len; + u8 hdr_cnt; + u8 unused_0[5]; +}; + +/* Output (16 bytes) */ +struct hwrm_fw_set_structured_data_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* Command specific Error Codes (8 bytes) */ +struct hwrm_fw_set_structured_data_cmd_err { + u8 code; + #define FW_SET_STRUCTURED_DATA_CMD_ERR_CODE_UNKNOWN 0x0UL + #define FW_SET_STRUCTURED_DATA_CMD_ERR_CODE_BAD_HDR_CNT 0x1UL + #define FW_SET_STRUCTURED_DATA_CMD_ERR_CODE_BAD_FMT 0x2UL + #define FW_SET_STRUCTURED_DATA_CMD_ERR_CODE_BAD_ID 0x3UL + u8 unused_0[7]; +}; + +/* hwrm_fw_get_structured_data */ +/* Input (32 bytes) */ +struct hwrm_fw_get_structured_data_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le64 dest_data_addr; + __le16 data_len; + __le16 structure_id; + __le16 subtype; + #define FW_GET_STRUCTURED_DATA_REQ_SUBTYPE_ALL 0xffffUL + #define FW_GET_STRUCTURED_DATA_REQ_SUBTYPE_NEAR_BRIDGE_ADMIN 0x100UL + #define FW_GET_STRUCTURED_DATA_REQ_SUBTYPE_NEAR_BRIDGE_PEER 0x101UL + #define FW_GET_STRUCTURED_DATA_REQ_SUBTYPE_NEAR_BRIDGE_OPERATIONAL 0x102UL + #define FW_GET_STRUCTURED_DATA_REQ_SUBTYPE_NON_TPMR_ADMIN 0x200UL + #define FW_GET_STRUCTURED_DATA_REQ_SUBTYPE_NON_TPMR_PEER 0x201UL + #define FW_GET_STRUCTURED_DATA_REQ_SUBTYPE_NON_TPMR_OPERATIONAL 0x202UL + #define FW_GET_STRUCTURED_DATA_REQ_SUBTYPE_HOST_OPERATIONAL 0x300UL + u8 count; + u8 unused_0; +}; + +/* Output (16 bytes) */ +struct hwrm_fw_get_structured_data_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + u8 hdr_cnt; + u8 unused_0; + __le16 unused_1; + u8 unused_2; + u8 unused_3; + u8 unused_4; + u8 valid; +}; + +/* Command specific Error Codes (8 bytes) */ +struct hwrm_fw_get_structured_data_cmd_err { + u8 code; + #define FW_GET_STRUCTURED_DATA_CMD_ERR_CODE_UNKNOWN 0x0UL + #define FW_GET_STRUCTURED_DATA_CMD_ERR_CODE_BAD_ID 0x3UL + u8 unused_0[7]; +}; + +/* hwrm_fw_ipc_mailbox */ +/* Input (32 bytes) */ +struct hwrm_fw_ipc_mailbox_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + u8 flags; + u8 unused_0; + u8 event_id; + u8 port_id; + __le32 event_data1; + __le32 event_data2; + __le32 unused_1; +}; + +/* Output (16 bytes) */ +struct hwrm_fw_ipc_mailbox_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* Command specific Error Codes (8 bytes) */ +struct hwrm_fw_ipc_mailbox_cmd_err { + u8 code; + #define FW_IPC_MAILBOX_CMD_ERR_CODE_UNKNOWN 0x0UL + #define FW_IPC_MAILBOX_CMD_ERR_CODE_BAD_ID 0x3UL + u8 unused_0[7]; +}; + +/* hwrm_exec_fwd_resp */ +/* Input (128 bytes) */ +struct hwrm_exec_fwd_resp_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 encap_request[26]; + __le16 encap_resp_target_id; + __le16 unused_0[3]; +}; + +/* Output (16 bytes) */ +struct hwrm_exec_fwd_resp_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_reject_fwd_resp */ +/* Input (128 bytes) */ +struct hwrm_reject_fwd_resp_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 encap_request[26]; + __le16 encap_resp_target_id; + __le16 unused_0[3]; +}; + +/* Output (16 bytes) */ +struct hwrm_reject_fwd_resp_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_fwd_resp */ +/* Input (40 bytes) */ +struct hwrm_fwd_resp_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le16 encap_resp_target_id; + __le16 encap_resp_cmpl_ring; + __le16 encap_resp_len; + u8 unused_0; + u8 unused_1; + __le64 encap_resp_addr; + __le32 encap_resp[24]; +}; + +/* Output (16 bytes) */ +struct hwrm_fwd_resp_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_fwd_async_event_cmpl */ +/* Input (32 bytes) */ +struct hwrm_fwd_async_event_cmpl_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le16 encap_async_event_target_id; + u8 unused_0; + u8 unused_1; + u8 unused_2[3]; + u8 unused_3; + __le32 encap_async_event_cmpl[4]; +}; + +/* Output (16 bytes) */ +struct hwrm_fwd_async_event_cmpl_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_temp_monitor_query */ +/* Input (16 bytes) */ +struct hwrm_temp_monitor_query_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; +}; + +/* Output (16 bytes) */ +struct hwrm_temp_monitor_query_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + u8 temp; + u8 unused_0; + __le16 unused_1; + u8 unused_2; + u8 unused_3; + u8 unused_4; + u8 valid; +}; + +/* hwrm_wol_filter_alloc */ +/* Input (64 bytes) */ +struct hwrm_wol_filter_alloc_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 flags; + __le32 enables; + #define WOL_FILTER_ALLOC_REQ_ENABLES_MAC_ADDRESS 0x1UL + #define WOL_FILTER_ALLOC_REQ_ENABLES_PATTERN_OFFSET 0x2UL + #define WOL_FILTER_ALLOC_REQ_ENABLES_PATTERN_BUF_SIZE 0x4UL + #define WOL_FILTER_ALLOC_REQ_ENABLES_PATTERN_BUF_ADDR 0x8UL + #define WOL_FILTER_ALLOC_REQ_ENABLES_PATTERN_MASK_ADDR 0x10UL + #define WOL_FILTER_ALLOC_REQ_ENABLES_PATTERN_MASK_SIZE 0x20UL + __le16 port_id; + u8 wol_type; + #define WOL_FILTER_ALLOC_REQ_WOL_TYPE_MAGICPKT 0x0UL + #define WOL_FILTER_ALLOC_REQ_WOL_TYPE_BMP 0x1UL + #define WOL_FILTER_ALLOC_REQ_WOL_TYPE_INVALID 0xffUL + u8 unused_0; + __le32 unused_1; + u8 mac_address[6]; + __le16 pattern_offset; + __le16 pattern_buf_size; + __le16 pattern_mask_size; + __le32 unused_2; + __le64 pattern_buf_addr; + __le64 pattern_mask_addr; +}; + +/* Output (16 bytes) */ +struct hwrm_wol_filter_alloc_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + u8 wol_filter_id; + u8 unused_0; + __le16 unused_1; + u8 unused_2; + u8 unused_3; + u8 unused_4; + u8 valid; +}; + +/* hwrm_wol_filter_free */ +/* Input (32 bytes) */ +struct hwrm_wol_filter_free_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 flags; + #define WOL_FILTER_FREE_REQ_FLAGS_FREE_ALL_WOL_FILTERS 0x1UL + __le32 enables; + #define WOL_FILTER_FREE_REQ_ENABLES_WOL_FILTER_ID 0x1UL + __le16 port_id; + u8 wol_filter_id; + u8 unused_0[5]; +}; + +/* Output (16 bytes) */ +struct hwrm_wol_filter_free_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_wol_filter_qcfg */ +/* Input (56 bytes) */ +struct hwrm_wol_filter_qcfg_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le16 port_id; + __le16 handle; + __le32 unused_0; + __le64 pattern_buf_addr; + __le16 pattern_buf_size; + u8 unused_1; + u8 unused_2; + u8 unused_3[3]; + u8 unused_4; + __le64 pattern_mask_addr; + __le16 pattern_mask_size; + __le16 unused_5[3]; +}; + +/* Output (32 bytes) */ +struct hwrm_wol_filter_qcfg_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le16 next_handle; + u8 wol_filter_id; + u8 wol_type; + #define WOL_FILTER_QCFG_RESP_WOL_TYPE_MAGICPKT 0x0UL + #define WOL_FILTER_QCFG_RESP_WOL_TYPE_BMP 0x1UL + #define WOL_FILTER_QCFG_RESP_WOL_TYPE_INVALID 0xffUL + __le32 unused_0; + u8 mac_address[6]; + __le16 pattern_offset; + __le16 pattern_size; + __le16 pattern_mask_size; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_wol_reason_qcfg */ +/* Input (40 bytes) */ +struct hwrm_wol_reason_qcfg_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le16 port_id; + u8 unused_0; + u8 unused_1; + u8 unused_2[3]; + u8 unused_3; + __le64 wol_pkt_buf_addr; + __le16 wol_pkt_buf_size; + __le16 unused_4[3]; +}; + +/* Output (16 bytes) */ +struct hwrm_wol_reason_qcfg_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + u8 wol_filter_id; + u8 wol_reason; + #define WOL_REASON_QCFG_RESP_WOL_REASON_MAGICPKT 0x0UL + #define WOL_REASON_QCFG_RESP_WOL_REASON_BMP 0x1UL + #define WOL_REASON_QCFG_RESP_WOL_REASON_INVALID 0xffUL + u8 wol_pkt_len; + u8 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_dbg_read_direct */ +/* Input (32 bytes) */ +struct hwrm_dbg_read_direct_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le64 host_dest_addr; + __le32 read_addr; + __le32 read_len32; +}; + +/* Output (16 bytes) */ +struct hwrm_dbg_read_direct_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_dbg_write_direct */ +/* Input (32 bytes) */ +struct hwrm_dbg_write_direct_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 write_addr; + __le32 write_len32; + __le32 write_data[8]; +}; + +/* Output (16 bytes) */ +struct hwrm_dbg_write_direct_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_dbg_read_indirect */ +/* Input (40 bytes) */ +struct hwrm_dbg_read_indirect_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le64 host_dest_addr; + __le32 host_dest_addr_len; + u8 indirect_access_type; + #define DBG_READ_INDIRECT_REQ_INDIRECT_ACCESS_TYPE_TE_MGMT_FILTERS_L2 0x0UL + #define DBG_READ_INDIRECT_REQ_INDIRECT_ACCESS_TYPE_TE_MGMT_FILTERS_L3L4 0x1UL + #define DBG_READ_INDIRECT_REQ_INDIRECT_ACCESS_TYPE_RE_MGMT_FILTERS_L2 0x2UL + #define DBG_READ_INDIRECT_REQ_INDIRECT_ACCESS_TYPE_RE_MGMT_FILTERS_L3L4 0x3UL + #define DBG_READ_INDIRECT_REQ_INDIRECT_ACCESS_TYPE_STAT_CTXS 0x4UL + #define DBG_READ_INDIRECT_REQ_INDIRECT_ACCESS_TYPE_CFA_TX_L2_TCAM 0x5UL + #define DBG_READ_INDIRECT_REQ_INDIRECT_ACCESS_TYPE_CFA_RX_L2_TCAM 0x6UL + #define DBG_READ_INDIRECT_REQ_INDIRECT_ACCESS_TYPE_CFA_TX_IPV6_SUBNET_TCAM 0x7UL + #define DBG_READ_INDIRECT_REQ_INDIRECT_ACCESS_TYPE_CFA_RX_IPV6_SUBNET_TCAM 0x8UL + #define DBG_READ_INDIRECT_REQ_INDIRECT_ACCESS_TYPE_CFA_TX_SRC_PROPERTIES_TCAM 0x9UL + #define DBG_READ_INDIRECT_REQ_INDIRECT_ACCESS_TYPE_CFA_RX_SRC_PROPERTIES_TCAM 0xaUL + #define DBG_READ_INDIRECT_REQ_INDIRECT_ACCESS_TYPE_CFA_VEB_LOOKUP_TCAM 0xbUL + #define DBG_READ_INDIRECT_REQ_INDIRECT_ACCESS_TYPE_CFA_TX_PROFILE_LOOKUP_TCAM 0xcUL + #define DBG_READ_INDIRECT_REQ_INDIRECT_ACCESS_TYPE_CFA_RX_PROFILE_LOOKUP_TCAM 0xdUL + #define DBG_READ_INDIRECT_REQ_INDIRECT_ACCESS_TYPE_CFA_TX_LOOKUP_TCAM 0xeUL + #define DBG_READ_INDIRECT_REQ_INDIRECT_ACCESS_TYPE_CFA_RX_LOOKUP_TCAM 0xfUL + #define DBG_READ_INDIRECT_REQ_INDIRECT_ACCESS_TYPE_MHB 0x10UL + #define DBG_READ_INDIRECT_REQ_INDIRECT_ACCESS_TYPE_PCIE_GBL 0x11UL + #define DBG_READ_INDIRECT_REQ_INDIRECT_ACCESS_TYPE_MULTI_HOST_SOC 0x12UL + u8 unused_0; + __le16 unused_1; + __le32 start_index; + __le32 num_of_entries; +}; + +/* Output (16 bytes) */ +struct hwrm_dbg_read_indirect_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_dbg_write_indirect */ +/* Input (40 bytes) */ +struct hwrm_dbg_write_indirect_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + u8 indirect_access_type; + #define DBG_WRITE_INDIRECT_REQ_INDIRECT_ACCESS_TYPE_TE_MGMT_FILTERS_L2 0x0UL + #define DBG_WRITE_INDIRECT_REQ_INDIRECT_ACCESS_TYPE_TE_MGMT_FILTERS_L3L4 0x1UL + #define DBG_WRITE_INDIRECT_REQ_INDIRECT_ACCESS_TYPE_RE_MGMT_FILTERS_L2 0x2UL + #define DBG_WRITE_INDIRECT_REQ_INDIRECT_ACCESS_TYPE_RE_MGMT_FILTERS_L3L4 0x3UL + #define DBG_WRITE_INDIRECT_REQ_INDIRECT_ACCESS_TYPE_STAT_CTXS 0x4UL + #define DBG_WRITE_INDIRECT_REQ_INDIRECT_ACCESS_TYPE_CFA_TX_L2_TCAM 0x5UL + #define DBG_WRITE_INDIRECT_REQ_INDIRECT_ACCESS_TYPE_CFA_RX_L2_TCAM 0x6UL + #define DBG_WRITE_INDIRECT_REQ_INDIRECT_ACCESS_TYPE_CFA_TX_IPV6_SUBNET_TCAM 0x7UL + #define DBG_WRITE_INDIRECT_REQ_INDIRECT_ACCESS_TYPE_CFA_RX_IPV6_SUBNET_TCAM 0x8UL + #define DBG_WRITE_INDIRECT_REQ_INDIRECT_ACCESS_TYPE_CFA_TX_SRC_PROPERTIES_TCAM 0x9UL + #define DBG_WRITE_INDIRECT_REQ_INDIRECT_ACCESS_TYPE_CFA_RX_SRC_PROPERTIES_TCAM 0xaUL + #define DBG_WRITE_INDIRECT_REQ_INDIRECT_ACCESS_TYPE_CFA_VEB_LOOKUP_TCAM 0xbUL + #define DBG_WRITE_INDIRECT_REQ_INDIRECT_ACCESS_TYPE_CFA_TX_PROFILE_LOOKUP_TCAM 0xcUL + #define DBG_WRITE_INDIRECT_REQ_INDIRECT_ACCESS_TYPE_CFA_RX_PROFILE_LOOKUP_TCAM 0xdUL + #define DBG_WRITE_INDIRECT_REQ_INDIRECT_ACCESS_TYPE_CFA_TX_LOOKUP_TCAM 0xeUL + #define DBG_WRITE_INDIRECT_REQ_INDIRECT_ACCESS_TYPE_CFA_RX_LOOKUP_TCAM 0xfUL + #define DBG_WRITE_INDIRECT_REQ_INDIRECT_ACCESS_TYPE_MHB 0x10UL + #define DBG_WRITE_INDIRECT_REQ_INDIRECT_ACCESS_TYPE_PCIE_GBL 0x11UL + #define DBG_WRITE_INDIRECT_REQ_INDIRECT_ACCESS_TYPE_MULTI_HOST_SOC 0x12UL + u8 unused_0; + __le16 unused_1; + __le32 start_index; + __le32 num_of_entries; + __le32 unused_2; + __le32 write_data[8]; +}; + +/* Output (16 bytes) */ +struct hwrm_dbg_write_indirect_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_dbg_dump */ +/* Input (40 bytes) */ +struct hwrm_dbg_dump_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 handle; + __le32 unused_0; + __le64 host_dbg_dump_addr; + __le64 host_dbg_dump_addr_len; +}; + +/* Output (24 bytes) */ +struct hwrm_dbg_dump_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 nexthandle; + __le32 dbg_data_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_dbg_erase_nvm */ +/* Input (24 bytes) */ +struct hwrm_dbg_erase_nvm_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le16 flags; + #define DBG_ERASE_NVM_REQ_FLAGS_ERASE_ALL 0x1UL + __le16 unused_0[3]; +}; + +/* Output (16 bytes) */ +struct hwrm_dbg_erase_nvm_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_dbg_cfg */ +/* Input (24 bytes) */ +struct hwrm_dbg_cfg_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 flags; + #define DBG_CFG_REQ_FLAGS_UART_LOG 0x1UL + __le32 unused_0; +}; + +/* Output (16 bytes) */ +struct hwrm_dbg_cfg_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_nvm_raw_write_blk */ +/* Input (32 bytes) */ +struct hwrm_nvm_raw_write_blk_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le64 host_src_addr; + __le32 dest_addr; + __le32 len; +}; + +/* Output (16 bytes) */ +struct hwrm_nvm_raw_write_blk_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_nvm_read */ +/* Input (40 bytes) */ +struct hwrm_nvm_read_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le64 host_dest_addr; + __le16 dir_idx; + u8 unused_0; + u8 unused_1; + __le32 offset; + __le32 len; + __le32 unused_2; +}; + +/* Output (16 bytes) */ +struct hwrm_nvm_read_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_nvm_raw_dump */ +/* Input (32 bytes) */ +struct hwrm_nvm_raw_dump_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le64 host_dest_addr; + __le32 offset; + __le32 len; +}; + +/* Output (16 bytes) */ +struct hwrm_nvm_raw_dump_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_nvm_get_dir_entries */ +/* Input (24 bytes) */ +struct hwrm_nvm_get_dir_entries_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le64 host_dest_addr; +}; + +/* Output (16 bytes) */ +struct hwrm_nvm_get_dir_entries_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_nvm_get_dir_info */ +/* Input (16 bytes) */ +struct hwrm_nvm_get_dir_info_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; +}; + +/* Output (24 bytes) */ +struct hwrm_nvm_get_dir_info_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 entries; + __le32 entry_length; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_nvm_write */ +/* Input (48 bytes) */ +struct hwrm_nvm_write_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le64 host_src_addr; + __le16 dir_type; + __le16 dir_ordinal; + __le16 dir_ext; + __le16 dir_attr; + __le32 dir_data_length; + __le16 option; + __le16 flags; + #define NVM_WRITE_REQ_FLAGS_KEEP_ORIG_ACTIVE_IMG 0x1UL + __le32 dir_item_length; + __le32 unused_0; +}; + +/* Output (16 bytes) */ +struct hwrm_nvm_write_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 dir_item_length; + __le16 dir_idx; + u8 unused_0; + u8 valid; +}; + +/* Command specific Error Codes (8 bytes) */ +struct hwrm_nvm_write_cmd_err { + u8 code; + #define NVM_WRITE_CMD_ERR_CODE_UNKNOWN 0x0UL + #define NVM_WRITE_CMD_ERR_CODE_FRAG_ERR 0x1UL + #define NVM_WRITE_CMD_ERR_CODE_NO_SPACE 0x2UL + u8 unused_0[7]; +}; + +/* hwrm_nvm_modify */ +/* Input (40 bytes) */ +struct hwrm_nvm_modify_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le64 host_src_addr; + __le16 dir_idx; + u8 unused_0; + u8 unused_1; + __le32 offset; + __le32 len; + __le32 unused_2; +}; + +/* Output (16 bytes) */ +struct hwrm_nvm_modify_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_nvm_find_dir_entry */ +/* Input (32 bytes) */ +struct hwrm_nvm_find_dir_entry_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 enables; + #define NVM_FIND_DIR_ENTRY_REQ_ENABLES_DIR_IDX_VALID 0x1UL + __le16 dir_idx; + __le16 dir_type; + __le16 dir_ordinal; + __le16 dir_ext; + u8 opt_ordinal; + #define NVM_FIND_DIR_ENTRY_REQ_OPT_ORDINAL_MASK 0x3UL + #define NVM_FIND_DIR_ENTRY_REQ_OPT_ORDINAL_SFT 0 + #define NVM_FIND_DIR_ENTRY_REQ_OPT_ORDINAL_EQ 0x0UL + #define NVM_FIND_DIR_ENTRY_REQ_OPT_ORDINAL_GE 0x1UL + #define NVM_FIND_DIR_ENTRY_REQ_OPT_ORDINAL_GT 0x2UL + u8 unused_1[3]; +}; + +/* Output (32 bytes) */ +struct hwrm_nvm_find_dir_entry_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 dir_item_length; + __le32 dir_data_length; + __le32 fw_ver; + __le16 dir_ordinal; + __le16 dir_idx; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_nvm_erase_dir_entry */ +/* Input (24 bytes) */ +struct hwrm_nvm_erase_dir_entry_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le16 dir_idx; + __le16 unused_0[3]; +}; + +/* Output (16 bytes) */ +struct hwrm_nvm_erase_dir_entry_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_nvm_get_dev_info */ +/* Input (16 bytes) */ +struct hwrm_nvm_get_dev_info_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; +}; + +/* Output (32 bytes) */ +struct hwrm_nvm_get_dev_info_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le16 manufacturer_id; + __le16 device_id; + __le32 sector_size; + __le32 nvram_size; + __le32 reserved_size; + __le32 available_size; + u8 unused_0; + u8 unused_1; + u8 unused_2; + u8 valid; +}; + +/* hwrm_nvm_mod_dir_entry */ +/* Input (32 bytes) */ +struct hwrm_nvm_mod_dir_entry_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 enables; + #define NVM_MOD_DIR_ENTRY_REQ_ENABLES_CHECKSUM 0x1UL + __le16 dir_idx; + __le16 dir_ordinal; + __le16 dir_ext; + __le16 dir_attr; + __le32 checksum; +}; + +/* Output (16 bytes) */ +struct hwrm_nvm_mod_dir_entry_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_nvm_verify_update */ +/* Input (24 bytes) */ +struct hwrm_nvm_verify_update_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le16 dir_type; + __le16 dir_ordinal; + __le16 dir_ext; + __le16 unused_0; +}; + +/* Output (16 bytes) */ +struct hwrm_nvm_verify_update_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* hwrm_nvm_install_update */ +/* Input (24 bytes) */ +struct hwrm_nvm_install_update_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le32 install_type; + #define NVM_INSTALL_UPDATE_REQ_INSTALL_TYPE_NORMAL 0x0UL + #define NVM_INSTALL_UPDATE_REQ_INSTALL_TYPE_ALL 0xffffffffUL + __le16 flags; + #define NVM_INSTALL_UPDATE_REQ_FLAGS_ERASE_UNUSED_SPACE 0x1UL + #define NVM_INSTALL_UPDATE_REQ_FLAGS_REMOVE_UNUSED_PKG 0x2UL + #define NVM_INSTALL_UPDATE_REQ_FLAGS_ALLOWED_TO_DEFRAG 0x4UL + __le16 unused_0; +}; + +/* Output (24 bytes) */ +struct hwrm_nvm_install_update_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le64 installed_items; + u8 result; + #define NVM_INSTALL_UPDATE_RESP_RESULT_SUCCESS 0x0UL + u8 problem_item; + #define NVM_INSTALL_UPDATE_RESP_PROBLEM_ITEM_NONE 0x0UL + #define NVM_INSTALL_UPDATE_RESP_PROBLEM_ITEM_PACKAGE 0xffUL + u8 reset_required; + #define NVM_INSTALL_UPDATE_RESP_RESET_REQUIRED_NONE 0x0UL + #define NVM_INSTALL_UPDATE_RESP_RESET_REQUIRED_PCI 0x1UL + #define NVM_INSTALL_UPDATE_RESP_RESET_REQUIRED_POWER 0x2UL + u8 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* Command specific Error Codes (8 bytes) */ +struct hwrm_nvm_install_update_cmd_err { + u8 code; + #define NVM_INSTALL_UPDATE_CMD_ERR_CODE_UNKNOWN 0x0UL + #define NVM_INSTALL_UPDATE_CMD_ERR_CODE_FRAG_ERR 0x1UL + #define NVM_INSTALL_UPDATE_CMD_ERR_CODE_NO_SPACE 0x2UL + u8 unused_0[7]; +}; + +/* hwrm_nvm_flush */ +/* Input (16 bytes) */ +struct hwrm_nvm_flush_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; +}; + +/* Output (16 bytes) */ +struct hwrm_nvm_flush_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* Command specific Error Codes (8 bytes) */ +struct hwrm_nvm_flush_cmd_err { + u8 code; + #define NVM_FLUSH_CMD_ERR_CODE_UNKNOWN 0x0UL + #define NVM_FLUSH_CMD_ERR_CODE_FAIL 0x1UL + u8 unused_0[7]; +}; + +/* hwrm_nvm_get_variable */ +/* Input (40 bytes) */ +struct hwrm_nvm_get_variable_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le64 dest_data_addr; + __le16 data_len; + __le16 option_num; + #define NVM_GET_VARIABLE_REQ_OPTION_NUM_RSVD_0 0x0UL + #define NVM_GET_VARIABLE_REQ_OPTION_NUM_RSVD_FFFF 0xffffUL + __le16 dimensions; + __le16 index_0; + __le16 index_1; + __le16 index_2; + __le16 index_3; + u8 flags; + #define NVM_GET_VARIABLE_REQ_FLAGS_FACTORY_DFLT 0x1UL + u8 unused_0; +}; + +/* Output (16 bytes) */ +struct hwrm_nvm_get_variable_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le16 data_len; + __le16 option_num; + #define NVM_GET_VARIABLE_RESP_OPTION_NUM_RSVD_0 0x0UL + #define NVM_GET_VARIABLE_RESP_OPTION_NUM_RSVD_FFFF 0xffffUL + u8 unused_0; + u8 unused_1; + u8 unused_2; + u8 valid; +}; + +/* Command specific Error Codes (8 bytes) */ +struct hwrm_nvm_get_variable_cmd_err { + u8 code; + #define NVM_GET_VARIABLE_CMD_ERR_CODE_UNKNOWN 0x0UL + #define NVM_GET_VARIABLE_CMD_ERR_CODE_VAR_NOT_EXIST 0x1UL + #define NVM_GET_VARIABLE_CMD_ERR_CODE_CORRUPT_VAR 0x2UL + #define NVM_GET_VARIABLE_CMD_ERR_CODE_LEN_TOO_SHORT 0x3UL + u8 unused_0[7]; +}; + +/* hwrm_nvm_set_variable */ +/* Input (40 bytes) */ +struct hwrm_nvm_set_variable_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le64 src_data_addr; + __le16 data_len; + __le16 option_num; + #define NVM_SET_VARIABLE_REQ_OPTION_NUM_RSVD_0 0x0UL + #define NVM_SET_VARIABLE_REQ_OPTION_NUM_RSVD_FFFF 0xffffUL + __le16 dimensions; + __le16 index_0; + __le16 index_1; + __le16 index_2; + __le16 index_3; + u8 flags; + #define NVM_SET_VARIABLE_REQ_FLAGS_FORCE_FLUSH 0x1UL + #define NVM_SET_VARIABLE_REQ_FLAGS_ENCRYPT_MODE_MASK 0xeUL + #define NVM_SET_VARIABLE_REQ_FLAGS_ENCRYPT_MODE_SFT 1 + #define NVM_SET_VARIABLE_REQ_FLAGS_ENCRYPT_MODE_NONE (0x0UL << 1) + #define NVM_SET_VARIABLE_REQ_FLAGS_ENCRYPT_MODE_HMAC_SHA1 (0x1UL << 1) + #define NVM_SET_VARIABLE_REQ_FLAGS_ENCRYPT_MODE_LAST NVM_SET_VARIABLE_REQ_FLAGS_ENCRYPT_MODE_HMAC_SHA1 + u8 unused_0; +}; + +/* Output (16 bytes) */ +struct hwrm_nvm_set_variable_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 unused_0; + u8 unused_1; + u8 unused_2; + u8 unused_3; + u8 valid; +}; + +/* Command specific Error Codes (8 bytes) */ +struct hwrm_nvm_set_variable_cmd_err { + u8 code; + #define NVM_SET_VARIABLE_CMD_ERR_CODE_UNKNOWN 0x0UL + #define NVM_SET_VARIABLE_CMD_ERR_CODE_VAR_NOT_EXIST 0x1UL + #define NVM_SET_VARIABLE_CMD_ERR_CODE_CORRUPT_VAR 0x2UL + u8 unused_0[7]; +}; + +/* hwrm_nvm_validate_option */ +/* Input (40 bytes) */ +struct hwrm_nvm_validate_option_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le64 src_data_addr; + __le16 data_len; + __le16 option_num; + #define NVM_VALIDATE_OPTION_REQ_OPTION_NUM_RSVD_0 0x0UL + #define NVM_VALIDATE_OPTION_REQ_OPTION_NUM_RSVD_FFFF 0xffffUL + __le16 dimensions; + __le16 index_0; + __le16 index_1; + __le16 index_2; + __le16 index_3; + __le16 unused_0; +}; + +/* Output (16 bytes) */ +struct hwrm_nvm_validate_option_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + u8 result; + #define NVM_VALIDATE_OPTION_RESP_RESULT_NOT_MATCH 0x0UL + #define NVM_VALIDATE_OPTION_RESP_RESULT_MATCH 0x1UL + u8 unused_0; + __le16 unused_1; + u8 unused_2; + u8 unused_3; + u8 unused_4; + u8 valid; +}; + +/* Command specific Error Codes (8 bytes) */ +struct hwrm_nvm_validate_option_cmd_err { + u8 code; + #define NVM_VALIDATE_OPTION_CMD_ERR_CODE_UNKNOWN 0x0UL + u8 unused_0[7]; +}; + +/* hwrm_nvm_factory_defaults */ +/* Input (24 bytes) */ +struct hwrm_nvm_factory_defaults_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + u8 mode; + #define NVM_FACTORY_DEFAULTS_REQ_MODE_RESTORE 0x0UL + #define NVM_FACTORY_DEFAULTS_REQ_MODE_CREATE 0x1UL + u8 unused_0[7]; +}; + +/* Output (16 bytes) */ +struct hwrm_nvm_factory_defaults_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + u8 result; + #define NVM_FACTORY_DEFAULTS_RESP_RESULT_CREATE_OK 0x0UL + #define NVM_FACTORY_DEFAULTS_RESP_RESULT_RESTORE_OK 0x1UL + #define NVM_FACTORY_DEFAULTS_RESP_RESULT_CREATE_ALREADY 0x2UL + u8 unused_0; + __le16 unused_1; + u8 unused_2; + u8 unused_3; + u8 unused_4; + u8 valid; +}; + +/* Command specific Error Codes (8 bytes) */ +struct hwrm_nvm_factory_defaults_cmd_err { + u8 code; + #define NVM_FACTORY_DEFAULTS_CMD_ERR_CODE_UNKNOWN 0x0UL + #define NVM_FACTORY_DEFAULTS_CMD_ERR_CODE_NO_VALID_CFG 0x1UL + #define NVM_FACTORY_DEFAULTS_CMD_ERR_CODE_NO_SAVED_CFG 0x2UL + u8 unused_0[7]; +}; + +/* hwrm_selftest_qlist */ +/* Input (16 bytes) */ +struct hwrm_selftest_qlist_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; +}; + +/* Output (248 bytes) */ +struct hwrm_selftest_qlist_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + u8 num_tests; + u8 available_tests; + #define SELFTEST_QLIST_RESP_AVAILABLE_TESTS_NVM_TEST 0x1UL + #define SELFTEST_QLIST_RESP_AVAILABLE_TESTS_LINK_TEST 0x2UL + #define SELFTEST_QLIST_RESP_AVAILABLE_TESTS_REGISTER_TEST 0x4UL + #define SELFTEST_QLIST_RESP_AVAILABLE_TESTS_MEMORY_TEST 0x8UL + u8 offline_tests; + #define SELFTEST_QLIST_RESP_OFFLINE_TESTS_NVM_TEST 0x1UL + #define SELFTEST_QLIST_RESP_OFFLINE_TESTS_LINK_TEST 0x2UL + #define SELFTEST_QLIST_RESP_OFFLINE_TESTS_REGISTER_TEST 0x4UL + #define SELFTEST_QLIST_RESP_OFFLINE_TESTS_MEMORY_TEST 0x8UL + u8 unused_0; + __le16 test_timeout; + u8 unused_1; + u8 unused_2; + char test0_name[32]; + char test1_name[32]; + char test2_name[32]; + char test3_name[32]; + char test4_name[32]; + char test5_name[32]; + char test6_name[32]; + char test7_name[32]; +}; + +/* hwrm_selftest_exec */ +/* Input (24 bytes) */ +struct hwrm_selftest_exec_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + u8 flags; + #define SELFTEST_EXEC_REQ_FLAGS_NVM_TEST 0x1UL + #define SELFTEST_EXEC_REQ_FLAGS_LINK_TEST 0x2UL + #define SELFTEST_EXEC_REQ_FLAGS_REGISTER_TEST 0x4UL + #define SELFTEST_EXEC_REQ_FLAGS_MEMORY_TEST 0x8UL + u8 unused_0[7]; +}; + +/* Output (16 bytes) */ +struct hwrm_selftest_exec_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + u8 requested_tests; + #define SELFTEST_EXEC_RESP_REQUESTED_TESTS_NVM_TEST 0x1UL + #define SELFTEST_EXEC_RESP_REQUESTED_TESTS_LINK_TEST 0x2UL + #define SELFTEST_EXEC_RESP_REQUESTED_TESTS_REGISTER_TEST 0x4UL + #define SELFTEST_EXEC_RESP_REQUESTED_TESTS_MEMORY_TEST 0x8UL + u8 test_success; + #define SELFTEST_EXEC_RESP_TEST_SUCCESS_NVM_TEST 0x1UL + #define SELFTEST_EXEC_RESP_TEST_SUCCESS_LINK_TEST 0x2UL + #define SELFTEST_EXEC_RESP_TEST_SUCCESS_REGISTER_TEST 0x4UL + #define SELFTEST_EXEC_RESP_TEST_SUCCESS_MEMORY_TEST 0x8UL + __le16 unused_0[3]; +}; + +/* hwrm_selftest_irq */ +/* Input (16 bytes) */ +struct hwrm_selftest_irq_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; +}; + +/* Output (8 bytes) */ +struct hwrm_selftest_irq_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; +}; + +/* Hardware Resource Manager Specification */ +/* Input (16 bytes) */ +struct input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; +}; + +/* Output (8 bytes) */ +struct output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; +}; + +/* Short Command Structure (16 bytes) */ +struct hwrm_short_input { + __le16 req_type; + __le16 signature; + #define SHORT_REQ_SIGNATURE_SHORT_CMD 0x4321UL + __le16 unused_0; + __le16 size; + __le64 req_addr; +}; + +/* Command numbering (8 bytes) */ +struct cmd_nums { + __le16 req_type; + #define HWRM_VER_GET (0x0UL) + #define HWRM_FUNC_BUF_UNRGTR (0xeUL) + #define HWRM_FUNC_VF_CFG (0xfUL) + #define RESERVED1 (0x10UL) + #define HWRM_FUNC_RESET (0x11UL) + #define HWRM_FUNC_GETFID (0x12UL) + #define HWRM_FUNC_VF_ALLOC (0x13UL) + #define HWRM_FUNC_VF_FREE (0x14UL) + #define HWRM_FUNC_QCAPS (0x15UL) + #define HWRM_FUNC_QCFG (0x16UL) + #define HWRM_FUNC_CFG (0x17UL) + #define HWRM_FUNC_QSTATS (0x18UL) + #define HWRM_FUNC_CLR_STATS (0x19UL) + #define HWRM_FUNC_DRV_UNRGTR (0x1aUL) + #define HWRM_FUNC_VF_RESC_FREE (0x1bUL) + #define HWRM_FUNC_VF_VNIC_IDS_QUERY (0x1cUL) + #define HWRM_FUNC_DRV_RGTR (0x1dUL) + #define HWRM_FUNC_DRV_QVER (0x1eUL) + #define HWRM_FUNC_BUF_RGTR (0x1fUL) + #define HWRM_PORT_PHY_CFG (0x20UL) + #define HWRM_PORT_MAC_CFG (0x21UL) + #define HWRM_PORT_TS_QUERY (0x22UL) + #define HWRM_PORT_QSTATS (0x23UL) + #define HWRM_PORT_LPBK_QSTATS (0x24UL) + #define HWRM_PORT_CLR_STATS (0x25UL) + #define HWRM_PORT_LPBK_CLR_STATS (0x26UL) + #define HWRM_PORT_PHY_QCFG (0x27UL) + #define HWRM_PORT_MAC_QCFG (0x28UL) + #define HWRM_PORT_MAC_PTP_QCFG (0x29UL) + #define HWRM_PORT_PHY_QCAPS (0x2aUL) + #define HWRM_PORT_PHY_I2C_WRITE (0x2bUL) + #define HWRM_PORT_PHY_I2C_READ (0x2cUL) + #define HWRM_PORT_LED_CFG (0x2dUL) + #define HWRM_PORT_LED_QCFG (0x2eUL) + #define HWRM_PORT_LED_QCAPS (0x2fUL) + #define HWRM_QUEUE_QPORTCFG (0x30UL) + #define HWRM_QUEUE_QCFG (0x31UL) + #define HWRM_QUEUE_CFG (0x32UL) + #define HWRM_FUNC_VLAN_CFG (0x33UL) + #define HWRM_FUNC_VLAN_QCFG (0x34UL) + #define HWRM_QUEUE_PFCENABLE_QCFG (0x35UL) + #define HWRM_QUEUE_PFCENABLE_CFG (0x36UL) + #define HWRM_QUEUE_PRI2COS_QCFG (0x37UL) + #define HWRM_QUEUE_PRI2COS_CFG (0x38UL) + #define HWRM_QUEUE_COS2BW_QCFG (0x39UL) + #define HWRM_QUEUE_COS2BW_CFG (0x3aUL) + #define HWRM_QUEUE_DSCP_QCAPS (0x3bUL) + #define HWRM_QUEUE_DSCP2PRI_QCFG (0x3cUL) + #define HWRM_QUEUE_DSCP2PRI_CFG (0x3dUL) + #define HWRM_VNIC_ALLOC (0x40UL) + #define HWRM_VNIC_FREE (0x41UL) + #define HWRM_VNIC_CFG (0x42UL) + #define HWRM_VNIC_QCFG (0x43UL) + #define HWRM_VNIC_TPA_CFG (0x44UL) + #define HWRM_VNIC_TPA_QCFG (0x45UL) + #define HWRM_VNIC_RSS_CFG (0x46UL) + #define HWRM_VNIC_RSS_QCFG (0x47UL) + #define HWRM_VNIC_PLCMODES_CFG (0x48UL) + #define HWRM_VNIC_PLCMODES_QCFG (0x49UL) + #define HWRM_VNIC_QCAPS (0x4aUL) + #define HWRM_RING_ALLOC (0x50UL) + #define HWRM_RING_FREE (0x51UL) + #define HWRM_RING_CMPL_RING_QAGGINT_PARAMS (0x52UL) + #define HWRM_RING_CMPL_RING_CFG_AGGINT_PARAMS (0x53UL) + #define HWRM_RING_RESET (0x5eUL) + #define HWRM_RING_GRP_ALLOC (0x60UL) + #define HWRM_RING_GRP_FREE (0x61UL) + #define RESERVED5 (0x64UL) + #define RESERVED6 (0x65UL) + #define HWRM_VNIC_RSS_COS_LB_CTX_ALLOC (0x70UL) + #define HWRM_VNIC_RSS_COS_LB_CTX_FREE (0x71UL) + #define HWRM_CFA_L2_FILTER_ALLOC (0x90UL) + #define HWRM_CFA_L2_FILTER_FREE (0x91UL) + #define HWRM_CFA_L2_FILTER_CFG (0x92UL) + #define HWRM_CFA_L2_SET_RX_MASK (0x93UL) + #define HWRM_CFA_VLAN_ANTISPOOF_CFG (0x94UL) + #define HWRM_CFA_TUNNEL_FILTER_ALLOC (0x95UL) + #define HWRM_CFA_TUNNEL_FILTER_FREE (0x96UL) + #define HWRM_CFA_ENCAP_RECORD_ALLOC (0x97UL) + #define HWRM_CFA_ENCAP_RECORD_FREE (0x98UL) + #define HWRM_CFA_NTUPLE_FILTER_ALLOC (0x99UL) + #define HWRM_CFA_NTUPLE_FILTER_FREE (0x9aUL) + #define HWRM_CFA_NTUPLE_FILTER_CFG (0x9bUL) + #define HWRM_CFA_EM_FLOW_ALLOC (0x9cUL) + #define HWRM_CFA_EM_FLOW_FREE (0x9dUL) + #define HWRM_CFA_EM_FLOW_CFG (0x9eUL) + #define HWRM_TUNNEL_DST_PORT_QUERY (0xa0UL) + #define HWRM_TUNNEL_DST_PORT_ALLOC (0xa1UL) + #define HWRM_TUNNEL_DST_PORT_FREE (0xa2UL) + #define HWRM_STAT_CTX_ALLOC (0xb0UL) + #define HWRM_STAT_CTX_FREE (0xb1UL) + #define HWRM_STAT_CTX_QUERY (0xb2UL) + #define HWRM_STAT_CTX_CLR_STATS (0xb3UL) + #define HWRM_FW_RESET (0xc0UL) + #define HWRM_FW_QSTATUS (0xc1UL) + #define HWRM_FW_SET_TIME (0xc8UL) + #define HWRM_FW_GET_TIME (0xc9UL) + #define HWRM_FW_SET_STRUCTURED_DATA (0xcaUL) + #define HWRM_FW_GET_STRUCTURED_DATA (0xcbUL) + #define HWRM_FW_IPC_MAILBOX (0xccUL) + #define HWRM_EXEC_FWD_RESP (0xd0UL) + #define HWRM_REJECT_FWD_RESP (0xd1UL) + #define HWRM_FWD_RESP (0xd2UL) + #define HWRM_FWD_ASYNC_EVENT_CMPL (0xd3UL) + #define HWRM_TEMP_MONITOR_QUERY (0xe0UL) + #define HWRM_WOL_FILTER_ALLOC (0xf0UL) + #define HWRM_WOL_FILTER_FREE (0xf1UL) + #define HWRM_WOL_FILTER_QCFG (0xf2UL) + #define HWRM_WOL_REASON_QCFG (0xf3UL) + #define HWRM_CFA_METER_PROFILE_ALLOC (0xf5UL) + #define HWRM_CFA_METER_PROFILE_FREE (0xf6UL) + #define HWRM_CFA_METER_PROFILE_CFG (0xf7UL) + #define HWRM_CFA_METER_INSTANCE_ALLOC (0xf8UL) + #define HWRM_CFA_METER_INSTANCE_FREE (0xf9UL) + #define HWRM_CFA_VFR_ALLOC (0xfdUL) + #define HWRM_CFA_VFR_FREE (0xfeUL) + #define HWRM_CFA_VF_PAIR_ALLOC (0x100UL) + #define HWRM_CFA_VF_PAIR_FREE (0x101UL) + #define HWRM_CFA_VF_PAIR_INFO (0x102UL) + #define HWRM_CFA_FLOW_ALLOC (0x103UL) + #define HWRM_CFA_FLOW_FREE (0x104UL) + #define HWRM_CFA_FLOW_FLUSH (0x105UL) + #define HWRM_CFA_FLOW_STATS (0x106UL) + #define HWRM_CFA_FLOW_INFO (0x107UL) + #define HWRM_CFA_DECAP_FILTER_ALLOC (0x108UL) + #define HWRM_CFA_DECAP_FILTER_FREE (0x109UL) + #define HWRM_CFA_VLAN_ANTISPOOF_QCFG (0x10aUL) + #define HWRM_SELFTEST_QLIST (0x200UL) + #define HWRM_SELFTEST_EXEC (0x201UL) + #define HWRM_SELFTEST_IRQ (0x202UL) + #define HWRM_DBG_READ_DIRECT (0xff10UL) + #define HWRM_DBG_READ_INDIRECT (0xff11UL) + #define HWRM_DBG_WRITE_DIRECT (0xff12UL) + #define HWRM_DBG_WRITE_INDIRECT (0xff13UL) + #define HWRM_DBG_DUMP (0xff14UL) + #define HWRM_DBG_ERASE_NVM (0xff15UL) + #define HWRM_DBG_CFG (0xff16UL) + #define HWRM_NVM_FACTORY_DEFAULTS (0xffeeUL) + #define HWRM_NVM_VALIDATE_OPTION (0xffefUL) + #define HWRM_NVM_FLUSH (0xfff0UL) + #define HWRM_NVM_GET_VARIABLE (0xfff1UL) + #define HWRM_NVM_SET_VARIABLE (0xfff2UL) + #define HWRM_NVM_INSTALL_UPDATE (0xfff3UL) + #define HWRM_NVM_MODIFY (0xfff4UL) + #define HWRM_NVM_VERIFY_UPDATE (0xfff5UL) + #define HWRM_NVM_GET_DEV_INFO (0xfff6UL) + #define HWRM_NVM_ERASE_DIR_ENTRY (0xfff7UL) + #define HWRM_NVM_MOD_DIR_ENTRY (0xfff8UL) + #define HWRM_NVM_FIND_DIR_ENTRY (0xfff9UL) + #define HWRM_NVM_GET_DIR_ENTRIES (0xfffaUL) + #define HWRM_NVM_GET_DIR_INFO (0xfffbUL) + #define HWRM_NVM_RAW_DUMP (0xfffcUL) + #define HWRM_NVM_READ (0xfffdUL) + #define HWRM_NVM_WRITE (0xfffeUL) + #define HWRM_NVM_RAW_WRITE_BLK (0xffffUL) + __le16 unused_0[3]; +}; + +/* Return Codes (8 bytes) */ +struct ret_codes { + __le16 error_code; + #define HWRM_ERR_CODE_SUCCESS (0x0UL) + #define HWRM_ERR_CODE_FAIL (0x1UL) + #define HWRM_ERR_CODE_INVALID_PARAMS (0x2UL) + #define HWRM_ERR_CODE_RESOURCE_ACCESS_DENIED (0x3UL) + #define HWRM_ERR_CODE_RESOURCE_ALLOC_ERROR (0x4UL) + #define HWRM_ERR_CODE_INVALID_FLAGS (0x5UL) + #define HWRM_ERR_CODE_INVALID_ENABLES (0x6UL) + #define HWRM_ERR_CODE_HWRM_ERROR (0xfUL) + #define HWRM_ERR_CODE_UNKNOWN_ERR (0xfffeUL) + #define HWRM_ERR_CODE_CMD_NOT_SUPPORTED (0xffffUL) + __le16 unused_0[3]; +}; + +/* Output (16 bytes) */ +struct hwrm_err_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + __le32 opaque_0; + __le16 opaque_1; + u8 cmd_err; + u8 valid; +}; + +/* Port Tx Statistics Formats (408 bytes) */ +struct tx_port_stats { + __le64 tx_64b_frames; + __le64 tx_65b_127b_frames; + __le64 tx_128b_255b_frames; + __le64 tx_256b_511b_frames; + __le64 tx_512b_1023b_frames; + __le64 tx_1024b_1518_frames; + __le64 tx_good_vlan_frames; + __le64 tx_1519b_2047_frames; + __le64 tx_2048b_4095b_frames; + __le64 tx_4096b_9216b_frames; + __le64 tx_9217b_16383b_frames; + __le64 tx_good_frames; + __le64 tx_total_frames; + __le64 tx_ucast_frames; + __le64 tx_mcast_frames; + __le64 tx_bcast_frames; + __le64 tx_pause_frames; + __le64 tx_pfc_frames; + __le64 tx_jabber_frames; + __le64 tx_fcs_err_frames; + __le64 tx_control_frames; + __le64 tx_oversz_frames; + __le64 tx_single_dfrl_frames; + __le64 tx_multi_dfrl_frames; + __le64 tx_single_coll_frames; + __le64 tx_multi_coll_frames; + __le64 tx_late_coll_frames; + __le64 tx_excessive_coll_frames; + __le64 tx_frag_frames; + __le64 tx_err; + __le64 tx_tagged_frames; + __le64 tx_dbl_tagged_frames; + __le64 tx_runt_frames; + __le64 tx_fifo_underruns; + __le64 tx_pfc_ena_frames_pri0; + __le64 tx_pfc_ena_frames_pri1; + __le64 tx_pfc_ena_frames_pri2; + __le64 tx_pfc_ena_frames_pri3; + __le64 tx_pfc_ena_frames_pri4; + __le64 tx_pfc_ena_frames_pri5; + __le64 tx_pfc_ena_frames_pri6; + __le64 tx_pfc_ena_frames_pri7; + __le64 tx_eee_lpi_events; + __le64 tx_eee_lpi_duration; + __le64 tx_llfc_logical_msgs; + __le64 tx_hcfc_msgs; + __le64 tx_total_collisions; + __le64 tx_bytes; + __le64 tx_xthol_frames; + __le64 tx_stat_discard; + __le64 tx_stat_error; +}; + +/* Port Rx Statistics Formats (528 bytes) */ +struct rx_port_stats { + __le64 rx_64b_frames; + __le64 rx_65b_127b_frames; + __le64 rx_128b_255b_frames; + __le64 rx_256b_511b_frames; + __le64 rx_512b_1023b_frames; + __le64 rx_1024b_1518_frames; + __le64 rx_good_vlan_frames; + __le64 rx_1519b_2047b_frames; + __le64 rx_2048b_4095b_frames; + __le64 rx_4096b_9216b_frames; + __le64 rx_9217b_16383b_frames; + __le64 rx_total_frames; + __le64 rx_ucast_frames; + __le64 rx_mcast_frames; + __le64 rx_bcast_frames; + __le64 rx_fcs_err_frames; + __le64 rx_ctrl_frames; + __le64 rx_pause_frames; + __le64 rx_pfc_frames; + __le64 rx_unsupported_opcode_frames; + __le64 rx_unsupported_da_pausepfc_frames; + __le64 rx_wrong_sa_frames; + __le64 rx_align_err_frames; + __le64 rx_oor_len_frames; + __le64 rx_code_err_frames; + __le64 rx_false_carrier_frames; + __le64 rx_ovrsz_frames; + __le64 rx_jbr_frames; + __le64 rx_mtu_err_frames; + __le64 rx_match_crc_frames; + __le64 rx_promiscuous_frames; + __le64 rx_tagged_frames; + __le64 rx_double_tagged_frames; + __le64 rx_trunc_frames; + __le64 rx_good_frames; + __le64 rx_pfc_xon2xoff_frames_pri0; + __le64 rx_pfc_xon2xoff_frames_pri1; + __le64 rx_pfc_xon2xoff_frames_pri2; + __le64 rx_pfc_xon2xoff_frames_pri3; + __le64 rx_pfc_xon2xoff_frames_pri4; + __le64 rx_pfc_xon2xoff_frames_pri5; + __le64 rx_pfc_xon2xoff_frames_pri6; + __le64 rx_pfc_xon2xoff_frames_pri7; + __le64 rx_pfc_ena_frames_pri0; + __le64 rx_pfc_ena_frames_pri1; + __le64 rx_pfc_ena_frames_pri2; + __le64 rx_pfc_ena_frames_pri3; + __le64 rx_pfc_ena_frames_pri4; + __le64 rx_pfc_ena_frames_pri5; + __le64 rx_pfc_ena_frames_pri6; + __le64 rx_pfc_ena_frames_pri7; + __le64 rx_sch_crc_err_frames; + __le64 rx_undrsz_frames; + __le64 rx_frag_frames; + __le64 rx_eee_lpi_events; + __le64 rx_eee_lpi_duration; + __le64 rx_llfc_physical_msgs; + __le64 rx_llfc_logical_msgs; + __le64 rx_llfc_msgs_with_crc_err; + __le64 rx_hcfc_msgs; + __le64 rx_hcfc_msgs_with_crc_err; + __le64 rx_bytes; + __le64 rx_runt_bytes; + __le64 rx_runt_frames; + __le64 rx_stat_discard; + __le64 rx_stat_err; +}; + +/* Periodic Statistics Context DMA to host (160 bytes) */ +struct ctx_hw_stats { + __le64 rx_ucast_pkts; + __le64 rx_mcast_pkts; + __le64 rx_bcast_pkts; + __le64 rx_discard_pkts; + __le64 rx_drop_pkts; + __le64 rx_ucast_bytes; + __le64 rx_mcast_bytes; + __le64 rx_bcast_bytes; + __le64 tx_ucast_pkts; + __le64 tx_mcast_pkts; + __le64 tx_bcast_pkts; + __le64 tx_discard_pkts; + __le64 tx_drop_pkts; + __le64 tx_ucast_bytes; + __le64 tx_mcast_bytes; + __le64 tx_bcast_bytes; + __le64 tpa_pkts; + __le64 tpa_bytes; + __le64 tpa_events; + __le64 tpa_aborts; +}; + +/* Structure data header (16 bytes) */ +struct hwrm_struct_hdr { + __le16 struct_id; + #define STRUCT_HDR_STRUCT_ID_LLDP_CFG 0x41bUL + #define STRUCT_HDR_STRUCT_ID_DCBX_ETS 0x41dUL + #define STRUCT_HDR_STRUCT_ID_DCBX_PFC 0x41fUL + #define STRUCT_HDR_STRUCT_ID_DCBX_APP 0x421UL + #define STRUCT_HDR_STRUCT_ID_DCBX_FEATURE_STATE 0x422UL + #define STRUCT_HDR_STRUCT_ID_LLDP_GENERIC 0x424UL + #define STRUCT_HDR_STRUCT_ID_LLDP_DEVICE 0x426UL + #define STRUCT_HDR_STRUCT_ID_AFM_OPAQUE 0x1UL + #define STRUCT_HDR_STRUCT_ID_PORT_DESCRIPTION 0xaUL + __le16 len; + u8 version; + u8 count; + __le16 subtype; + __le16 next_offset; + #define STRUCT_HDR_NEXT_OFFSET_LAST 0x0UL + __le16 unused_0[3]; +}; + +/* DCBX ETS configuration structure (1053) (32 bytes) */ +struct hwrm_struct_data_dcbx_ets { + u8 destination; + #define STRUCT_DATA_DCBX_ETS_DESTINATION_CONFIGURATION 0x1UL + #define STRUCT_DATA_DCBX_ETS_DESTINATION_RECOMMMENDATION 0x2UL + u8 max_tcs; + __le16 unused_0; + u8 pri0_to_tc_map; + u8 pri1_to_tc_map; + u8 pri2_to_tc_map; + u8 pri3_to_tc_map; + u8 pri4_to_tc_map; + u8 pri5_to_tc_map; + u8 pri6_to_tc_map; + u8 pri7_to_tc_map; + u8 tc0_to_bw_map; + u8 tc1_to_bw_map; + u8 tc2_to_bw_map; + u8 tc3_to_bw_map; + u8 tc4_to_bw_map; + u8 tc5_to_bw_map; + u8 tc6_to_bw_map; + u8 tc7_to_bw_map; + u8 tc0_to_tsa_map; + #define STRUCT_DATA_DCBX_ETS_TC0_TO_TSA_MAP_TSA_TYPE_SP 0x0UL + #define STRUCT_DATA_DCBX_ETS_TC0_TO_TSA_MAP_TSA_TYPE_CBS 0x1UL + #define STRUCT_DATA_DCBX_ETS_TC0_TO_TSA_MAP_TSA_TYPE_ETS 0x2UL + #define STRUCT_DATA_DCBX_ETS_TC0_TO_TSA_MAP_TSA_TYPE_VENDOR_SPECIFIC 0xffUL + u8 tc1_to_tsa_map; + u8 tc2_to_tsa_map; + u8 tc3_to_tsa_map; + u8 tc4_to_tsa_map; + u8 tc5_to_tsa_map; + u8 tc6_to_tsa_map; + u8 tc7_to_tsa_map; + __le32 unused_1; +}; + +/* DCBX PFC configuration structure (1055) (8 bytes) */ +struct hwrm_struct_data_dcbx_pfc { + u8 pfc_priority_bitmap; + u8 max_pfc_tcs; + u8 mbc; + u8 unused_0[5]; +}; + +/* DCBX Application configuration structure (1057) (8 bytes) */ +struct hwrm_struct_data_dcbx_app { + __be16 protocol_id; + u8 protocol_selector; + #define STRUCT_DATA_DCBX_APP_PROTOCOL_SELECTOR_ETHER_TYPE 0x1UL + #define STRUCT_DATA_DCBX_APP_PROTOCOL_SELECTOR_TCP_PORT 0x2UL + #define STRUCT_DATA_DCBX_APP_PROTOCOL_SELECTOR_UDP_PORT 0x3UL + #define STRUCT_DATA_DCBX_APP_PROTOCOL_SELECTOR_TCP_UDP_PORT 0x4UL + u8 priority; + u8 valid; + u8 unused_0[3]; +}; + +/* DCBX feature states configuration structure (1058) (8 bytes) */ +struct hwrm_struct_data_dcbx_feature_state { + u8 dcbx_mode; + #define STRUCT_DATA_DCBX_FEATURE_STATE_DCBX_MODE_DCBX_DISABLED 0x0UL + #define STRUCT_DATA_DCBX_FEATURE_STATE_DCBX_MODE_DCBX_IEEE 0x1UL + #define STRUCT_DATA_DCBX_FEATURE_STATE_DCBX_MODE_DCBX_CEE 0x2UL + u8 ets_state; + u8 pfc_state; + u8 app_state; + #define STRUCT_DATA_DCBX_FEATURE_STATE_APP_STATE_ENABLE_BIT_POS 0x7UL + #define STRUCT_DATA_DCBX_FEATURE_STATE_APP_STATE_WILLING_BIT_POS 0x6UL + #define STRUCT_DATA_DCBX_FEATURE_STATE_APP_STATE_ADVERTISE_BIT_POS 0x5UL + u8 unused_0[3]; + u8 resets; + #define STRUCT_DATA_DCBX_FEATURE_STATE_RESETS_RESET_ETS 0x1UL + #define STRUCT_DATA_DCBX_FEATURE_STATE_RESETS_RESET_PFC 0x2UL + #define STRUCT_DATA_DCBX_FEATURE_STATE_RESETS_RESET_APP 0x4UL + #define STRUCT_DATA_DCBX_FEATURE_STATE_RESETS_RESET_STATE 0x8UL +}; + +/* LLDP TLVs transmit configuration structure (1051) (8 bytes) */ +struct hwrm_struct_data_lldp { + u8 admin_state; + #define STRUCT_DATA_LLDP_ADMIN_STATE_DISABLE 0x0UL + #define STRUCT_DATA_LLDP_ADMIN_STATE_TX 0x1UL + #define STRUCT_DATA_LLDP_ADMIN_STATE_RX 0x2UL + #define STRUCT_DATA_LLDP_ADMIN_STATE_ENABLE 0x3UL + u8 port_description_state; + #define STRUCT_DATA_LLDP_PORT_DESCRIPTION_STATE_DISABLE 0x0UL + #define STRUCT_DATA_LLDP_PORT_DESCRIPTION_STATE_ENABLE 0x1UL + u8 system_name_state; + #define STRUCT_DATA_LLDP_SYSTEM_NAME_STATE_DISABLE 0x0UL + #define STRUCT_DATA_LLDP_SYSTEM_NAME_STATE_ENABLE 0x1UL + u8 system_desc_state; + #define STRUCT_DATA_LLDP_SYSTEM_DESC_STATE_DISABLE 0x0UL + #define STRUCT_DATA_LLDP_SYSTEM_DESC_STATE_ENABLE 0x1UL + u8 system_cap_state; + #define STRUCT_DATA_LLDP_SYSTEM_CAP_STATE_DISABLE 0x0UL + #define STRUCT_DATA_LLDP_SYSTEM_CAP_STATE_ENABLE 0x1UL + u8 mgmt_addr_state; + #define STRUCT_DATA_LLDP_MGMT_ADDR_STATE_DISABLE 0x0UL + #define STRUCT_DATA_LLDP_MGMT_ADDR_STATE_ENABLE 0x1UL + u8 async_event_notification_state; + #define STRUCT_DATA_LLDP_ASYNC_EVENT_NOTIFICATION_STATE_DISABLE 0x0UL + #define STRUCT_DATA_LLDP_ASYNC_EVENT_NOTIFICATION_STATE_ENABLE 0x1UL + u8 unused_0; +}; + +/* LLDP generic TLV configuration (1060) (16 bytes) */ +struct hwrm_struct_data_lldp_generic { + u8 tlv_type; + #define STRUCT_DATA_LLDP_GENERIC_TLV_TYPE_CHASSIS 0x1UL + #define STRUCT_DATA_LLDP_GENERIC_TLV_TYPE_PORT 0x2UL + #define STRUCT_DATA_LLDP_GENERIC_TLV_TYPE_SYSTEM_NAME 0x3UL + #define STRUCT_DATA_LLDP_GENERIC_TLV_TYPE_SYSTEM_DESCRIPTION 0x4UL + #define STRUCT_DATA_LLDP_GENERIC_TLV_TYPE_PORT_NAME 0x5UL + #define STRUCT_DATA_LLDP_GENERIC_TLV_TYPE_PORT_DESCRIPTION 0x6UL + u8 subtype; + u8 length; + u8 unused_0; + __le32 unused_1; + __le32 tlv_value[64]; +}; + +/* LLDP device TLV configuration (1062) (64 bytes) */ +struct hwrm_struct_data_lldp_device { + __le16 ttl; + u8 mgmt_addr_len; + u8 mgmt_addr_type; + __le32 unused_0; + __le32 mgmt_addr[8]; + __le32 system_caps; + u8 intf_num_type; + u8 mgmt_addr_oid_length; + u8 unused_1; + u8 unused_2; + __le32 intf_num; + __le32 unused_3; + __le32 mgmt_addr_oid[32]; +}; + +/* port description (10) (8 bytes) */ +struct hwrm_struct_data_port_description { + u8 port_id; + u8 unused_0[7]; +}; + +#endif only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/bnxt/bnxt_nvm_defs.h +++ linux-raspi2-4.4.0/ubuntu/bnxt/bnxt_nvm_defs.h @@ -0,0 +1,75 @@ +/* Broadcom NetXtreme-C/E network driver. + * + * Copyright (c) 2014-2016 Broadcom Corporation + * Copyright (c) 2016-2017 Broadcom Limited + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation. + */ + +#ifndef _BNXT_NVM_DEFS_H_ +#define _BNXT_NVM_DEFS_H_ + +enum bnxt_nvm_directory_type { + BNX_DIR_TYPE_UNUSED = 0, + BNX_DIR_TYPE_PKG_LOG = 1, + BNX_DIR_TYPE_UPDATE = 2, + BNX_DIR_TYPE_CHIMP_PATCH = 3, + BNX_DIR_TYPE_BOOTCODE = 4, + BNX_DIR_TYPE_VPD = 5, + BNX_DIR_TYPE_EXP_ROM_MBA = 6, + BNX_DIR_TYPE_AVS = 7, + BNX_DIR_TYPE_PCIE = 8, + BNX_DIR_TYPE_PORT_MACRO = 9, + BNX_DIR_TYPE_APE_FW = 10, + BNX_DIR_TYPE_APE_PATCH = 11, + BNX_DIR_TYPE_KONG_FW = 12, + BNX_DIR_TYPE_KONG_PATCH = 13, + BNX_DIR_TYPE_BONO_FW = 14, + BNX_DIR_TYPE_BONO_PATCH = 15, + BNX_DIR_TYPE_TANG_FW = 16, + BNX_DIR_TYPE_TANG_PATCH = 17, + BNX_DIR_TYPE_BOOTCODE_2 = 18, + BNX_DIR_TYPE_CCM = 19, + BNX_DIR_TYPE_PCI_CFG = 20, + BNX_DIR_TYPE_TSCF_UCODE = 21, + BNX_DIR_TYPE_ISCSI_BOOT = 22, + BNX_DIR_TYPE_ISCSI_BOOT_IPV6 = 24, + BNX_DIR_TYPE_ISCSI_BOOT_IPV4N6 = 25, + BNX_DIR_TYPE_ISCSI_BOOT_CFG6 = 26, + BNX_DIR_TYPE_EXT_PHY = 27, + BNX_DIR_TYPE_SHARED_CFG = 40, + BNX_DIR_TYPE_PORT_CFG = 41, + BNX_DIR_TYPE_FUNC_CFG = 42, + BNX_DIR_TYPE_MGMT_CFG = 48, + BNX_DIR_TYPE_MGMT_DATA = 49, + BNX_DIR_TYPE_MGMT_WEB_DATA = 50, + BNX_DIR_TYPE_MGMT_WEB_META = 51, + BNX_DIR_TYPE_MGMT_EVENT_LOG = 52, + BNX_DIR_TYPE_MGMT_AUDIT_LOG = 53 +}; + +#define BNX_DIR_ORDINAL_FIRST 0 + +#define BNX_DIR_EXT_NONE 0 +#define BNX_DIR_EXT_INACTIVE (1 << 0) +#define BNX_DIR_EXT_UPDATE (1 << 1) + +#define BNX_DIR_ATTR_NONE 0 +#define BNX_DIR_ATTR_NO_CHKSUM (1 << 0) +#define BNX_DIR_ATTR_PROP_STREAM (1 << 1) + +#define BNX_PKG_LOG_MAX_LENGTH 4096 + +enum bnxnvm_pkglog_field_index { + BNX_PKG_LOG_FIELD_IDX_INSTALLED_TIMESTAMP = 0, + BNX_PKG_LOG_FIELD_IDX_PKG_DESCRIPTION = 1, + BNX_PKG_LOG_FIELD_IDX_PKG_VERSION = 2, + BNX_PKG_LOG_FIELD_IDX_PKG_TIMESTAMP = 3, + BNX_PKG_LOG_FIELD_IDX_PKG_CHECKSUM = 4, + BNX_PKG_LOG_FIELD_IDX_INSTALLED_ITEMS = 5, + BNX_PKG_LOG_FIELD_IDX_INSTALLED_MASK = 6 +}; + +#endif /* Don't add anything after this line */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/bnxt/bnxt_ptp.c +++ linux-raspi2-4.4.0/ubuntu/bnxt/bnxt_ptp.c @@ -0,0 +1,461 @@ +/* Broadcom NetXtreme-C/E network driver. + * + * Copyright (c) 2017 Broadcom Limited + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation. + */ +#include +#include +#include +#include +#include +#ifdef HAVE_IEEE1588_SUPPORT +#include +#include +#include +#include +#endif +#include "bnxt_compat.h" +#include "bnxt_hsi.h" +#include "bnxt.h" +#include "bnxt_ptp.h" + +#ifdef HAVE_IEEE1588_SUPPORT +static int bnxt_ptp_settime(struct ptp_clock_info *ptp_info, + const struct timespec64 *ts) +{ + struct bnxt_ptp_cfg *ptp = container_of(ptp_info, struct bnxt_ptp_cfg, + ptp_info); + u64 ns = timespec64_to_ns(ts); + + ns = timespec64_to_ns(ts); + timecounter_init(&ptp->tc, &ptp->cc, ns); + return 0; +} + +static int bnxt_ptp_gettime(struct ptp_clock_info *ptp_info, + struct timespec64 *ts) +{ + struct bnxt_ptp_cfg *ptp = container_of(ptp_info, struct bnxt_ptp_cfg, + ptp_info); + u64 ns; + + ns = timecounter_read(&ptp->tc); + *ts = ns_to_timespec64(ns); + return 0; +} + +static int bnxt_ptp_adjtime(struct ptp_clock_info *ptp_info, s64 delta) +{ + struct bnxt_ptp_cfg *ptp = container_of(ptp_info, struct bnxt_ptp_cfg, + ptp_info); + + timecounter_adjtime(&ptp->tc, delta); + return 0; +} + +static int bnxt_ptp_adjfreq(struct ptp_clock_info *ptp_info, s32 ppb) +{ + struct bnxt_ptp_cfg *ptp = container_of(ptp_info, struct bnxt_ptp_cfg, + ptp_info); + s32 period, period1, period2, dif, dif1, dif2; + s32 step, best_step = 0, best_period = 0; + s32 best_dif = BNXT_MAX_PHC_DRIFT; + u32 drift_sign = 1; + + /* Frequency adjustment requires programming 3 values: + * 1-bit direction + * 5-bit adjustment step in 1 ns unit + * 24-bit period in 1 us unit between adjustments + */ + if (ppb < 0) { + ppb = -ppb; + drift_sign = 0; + } + + if (ppb == 0) { + /* no adjustment */ + best_step = 0; + best_period = 0xFFFFFF; + } else if (ppb >= BNXT_MAX_PHC_DRIFT) { + /* max possible adjustment */ + best_step = 31; + best_period = 1; + } else { + /* Find the best possible adjustment step and period */ + for (step = 0; step <= 31; step++) { + period1 = step * 1000000 / ppb; + period2 = period1 + 1; + if (period1 != 0) + dif1 = ppb - (step * 1000000 / period1); + else + dif1 = BNXT_MAX_PHC_DRIFT; + if (dif1 < 0) + dif1 = -dif1; + dif2 = ppb - (step * 1000000 / period2); + if (dif2 < 0) + dif2 = -dif2; + dif = (dif1 < dif2) ? dif1 : dif2; + period = (dif1 < dif2) ? period1 : period2; + if (dif < best_dif) { + best_dif = dif; + best_step = step; + best_period = period; + } + } + } + writel((drift_sign << BNXT_GRCPF_REG_SYNC_TIME_ADJ_SIGN_SFT) | + (best_step << BNXT_GRCPF_REG_SYNC_TIME_ADJ_VAL_SFT) | + (best_period & BNXT_GRCPF_REG_SYNC_TIME_ADJ_PER_MSK), + ptp->bp->bar0 + BNXT_GRCPF_REG_SYNC_TIME_ADJ); + + return 0; +} + +static int bnxt_ptp_enable(struct ptp_clock_info *ptp, + struct ptp_clock_request *rq, int on) +{ + return -ENOTSUPP; +} + +static void bnxt_clr_rx_ts(struct bnxt *bp) +{ + struct bnxt_ptp_cfg *ptp = bp->ptp_cfg; + struct bnxt_pf_info *pf = &bp->pf; + u16 port_id; + int i = 0; + u32 fifo; + + if (!ptp) + return; + + port_id = pf->port_id; + fifo = readl(bp->bar0 + ptp->rx_mapped_regs[BNXT_PTP_RX_FIFO]); + while ((fifo & BNXT_PTP_RX_FIFO_PENDING) && (i < 10)) { + writel(1 << port_id, bp->bar0 + + ptp->rx_mapped_regs[BNXT_PTP_RX_FIFO_ADV]); + fifo = readl(bp->bar0 + ptp->rx_mapped_regs[BNXT_PTP_RX_FIFO]); + i++; + } +} + +static int bnxt_hwrm_ptp_cfg(struct bnxt *bp) +{ + struct hwrm_port_mac_cfg_input req = {0}; + struct bnxt_ptp_cfg *ptp = bp->ptp_cfg; + u32 flags = 0; + + if (!ptp) + return 0; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_PORT_MAC_CFG, -1, -1); + + if (ptp->rx_filter) + flags |= PORT_MAC_CFG_REQ_FLAGS_PTP_RX_TS_CAPTURE_ENABLE; + else + flags |= PORT_MAC_CFG_REQ_FLAGS_PTP_RX_TS_CAPTURE_DISABLE; + if (ptp->tx_tstamp_en) + flags |= PORT_MAC_CFG_REQ_FLAGS_PTP_TX_TS_CAPTURE_ENABLE; + else + flags |= PORT_MAC_CFG_REQ_FLAGS_PTP_TX_TS_CAPTURE_DISABLE; + req.flags = cpu_to_le32(flags); + req.enables = cpu_to_le32( + PORT_MAC_CFG_REQ_ENABLES_RX_TS_CAPTURE_PTP_MSG_TYPE); + req.rx_ts_capture_ptp_msg_type = cpu_to_le16(ptp->rxctl); + + if (hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT)) + return -EIO; + + return 0; +} + +int bnxt_hwtstamp_set(struct net_device *dev, struct ifreq *ifr) +{ + struct bnxt *bp = netdev_priv(dev); + struct hwtstamp_config stmpconf; + struct bnxt_ptp_cfg *ptp; + u16 old_rxctl, new_rxctl; + int old_rx_filter, rc; + u8 old_tx_tstamp_en; + + ptp = bp->ptp_cfg; + if (!ptp) + return -EOPNOTSUPP; + + if (copy_from_user(&stmpconf, ifr->ifr_data, sizeof(stmpconf))) + return -EFAULT; + + if (stmpconf.flags) + return -EINVAL; + + if (stmpconf.tx_type != HWTSTAMP_TX_ON && + stmpconf.tx_type != HWTSTAMP_TX_OFF) + return -ERANGE; + + old_rx_filter = ptp->rx_filter; + old_rxctl = ptp->rxctl; + old_tx_tstamp_en = ptp->tx_tstamp_en; + switch (stmpconf.rx_filter) { + case HWTSTAMP_FILTER_NONE: + new_rxctl = 0; + ptp->rx_filter = HWTSTAMP_FILTER_NONE; + break; + case HWTSTAMP_FILTER_PTP_V2_EVENT: + case HWTSTAMP_FILTER_PTP_V2_L2_EVENT: + case HWTSTAMP_FILTER_PTP_V2_L4_EVENT: + new_rxctl = BNXT_PTP_MSG_EVENTS; + ptp->rx_filter = HWTSTAMP_FILTER_PTP_V2_EVENT; + break; + case HWTSTAMP_FILTER_PTP_V2_SYNC: + case HWTSTAMP_FILTER_PTP_V2_L2_SYNC: + case HWTSTAMP_FILTER_PTP_V2_L4_SYNC: + new_rxctl = BNXT_PTP_MSG_SYNC; + ptp->rx_filter = HWTSTAMP_FILTER_PTP_V2_SYNC; + break; + case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ: + case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ: + case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ: + new_rxctl = BNXT_PTP_MSG_DELAY_REQ; + ptp->rx_filter = HWTSTAMP_FILTER_PTP_V2_DELAY_REQ; + break; + default: + return -ERANGE; + } + + if (stmpconf.tx_type == HWTSTAMP_TX_ON) + ptp->tx_tstamp_en = 1; + else + ptp->tx_tstamp_en = 0; + + if (!old_rxctl && new_rxctl) { + rc = bnxt_hwrm_ptp_cfg(bp); + if (rc) + goto ts_set_err; + ptp->rxctl = new_rxctl; + bnxt_clr_rx_ts(bp); + } + + rc = bnxt_hwrm_ptp_cfg(bp); + if (rc) + goto ts_set_err; + + stmpconf.rx_filter = ptp->rx_filter; + return copy_to_user(ifr->ifr_data, &stmpconf, sizeof(stmpconf)) ? + -EFAULT : 0; + +ts_set_err: + ptp->rx_filter = old_rx_filter; + ptp->rxctl = old_rxctl; + ptp->tx_tstamp_en = old_tx_tstamp_en; + return rc; +} + +int bnxt_hwtstamp_get(struct net_device *dev, struct ifreq *ifr) +{ + struct bnxt *bp = netdev_priv(dev); + struct hwtstamp_config stmpconf; + struct bnxt_ptp_cfg *ptp; + + ptp = bp->ptp_cfg; + if (!ptp) + return -EOPNOTSUPP; + + stmpconf.flags = 0; + stmpconf.tx_type = ptp->tx_tstamp_en ? HWTSTAMP_TX_ON : HWTSTAMP_TX_OFF; + + stmpconf.rx_filter = ptp->rx_filter; + return copy_to_user(ifr->ifr_data, &stmpconf, sizeof(stmpconf)) ? + -EFAULT : 0; +} + +static int bnxt_map_regs(struct bnxt *bp, u32 *reg_arr, int count, int reg_win) +{ + u32 reg_base = *reg_arr & 0xfffff000; + u32 win_off; + int i; + + for (i = 0; i < count; i++) { + if ((reg_arr[i] & 0xfffff000) != reg_base) + return -ERANGE; + } + win_off = BNXT_GRCPF_REG_WINDOW_BASE_OUT + (reg_win - 1) * 4; + writel(reg_base, bp->bar0 + win_off); + return 0; +} + +static int bnxt_map_ptp_regs(struct bnxt *bp) +{ + struct bnxt_ptp_cfg *ptp = bp->ptp_cfg; + u32 *reg_arr, reg_base; + int rc, i; + + reg_arr = ptp->rx_regs; + rc = bnxt_map_regs(bp, reg_arr, BNXT_PTP_RX_REGS, 5); + if (rc) + return rc; + + reg_arr = ptp->tx_regs; + rc = bnxt_map_regs(bp, reg_arr, BNXT_PTP_TX_REGS, 6); + if (rc) + return rc; + + reg_base = ptp->rx_regs[BNXT_PTP_RX_TS_L] & 0xfffff000; + for (i = 0; i < BNXT_PTP_RX_REGS; i++) + ptp->rx_mapped_regs[i] = 0x5000 + (ptp->rx_regs[i] & 0xfff); + + reg_base = ptp->tx_regs[BNXT_PTP_TX_TS_L] & 0xfffff000; + for (i = 0; i < BNXT_PTP_TX_REGS; i++) + ptp->tx_mapped_regs[i] = 0x6000 + (ptp->tx_regs[i] & 0xfff); + + return 0; +} + +static void bnxt_unmap_ptp_regs(struct bnxt *bp) +{ + writel(0, bp->bar0 + BNXT_GRCPF_REG_WINDOW_BASE_OUT + 16); + writel(0, bp->bar0 + BNXT_GRCPF_REG_WINDOW_BASE_OUT + 20); +} + +static u64 bnxt_cc_read(const struct cyclecounter *cc) +{ + struct bnxt_ptp_cfg *ptp = container_of(cc, struct bnxt_ptp_cfg, cc); + struct bnxt *bp = ptp->bp; + u64 ns; + + ns = readl(bp->bar0 + BNXT_GRCPF_REG_SYNC_TIME); + ns |= (u64)readl(bp->bar0 + BNXT_GRCPF_REG_SYNC_TIME + 4) << 32; + return ns; +} + +int bnxt_get_tx_ts(struct bnxt *bp, u64 *ts) +{ + struct bnxt_ptp_cfg *ptp = bp->ptp_cfg; + u32 fifo; + + fifo = readl(bp->bar0 + ptp->tx_mapped_regs[BNXT_PTP_TX_FIFO]); + if (fifo & BNXT_PTP_TX_FIFO_EMPTY) + return -EAGAIN; + + fifo = readl(bp->bar0 + ptp->tx_mapped_regs[BNXT_PTP_TX_FIFO]); + *ts = readl(bp->bar0 + ptp->tx_mapped_regs[BNXT_PTP_TX_TS_L]); + *ts |= (u64)readl(bp->bar0 + ptp->tx_mapped_regs[BNXT_PTP_TX_TS_H]) << + 32; + readl(bp->bar0 + ptp->tx_mapped_regs[BNXT_PTP_TX_SEQ]); + return 0; +} + +int bnxt_get_rx_ts(struct bnxt *bp, u64 *ts) +{ + struct bnxt_ptp_cfg *ptp = bp->ptp_cfg; + struct bnxt_pf_info *pf = &bp->pf; + u16 port_id; + u32 fifo; + + if (!ptp) + return -ENODEV; + + fifo = readl(bp->bar0 + ptp->rx_mapped_regs[BNXT_PTP_RX_FIFO]); + if (!(fifo & BNXT_PTP_RX_FIFO_PENDING)) + return -EAGAIN; + + port_id = pf->port_id; + writel(1 << port_id, bp->bar0 + + ptp->rx_mapped_regs[BNXT_PTP_RX_FIFO_ADV]); + + fifo = readl(bp->bar0 + ptp->rx_mapped_regs[BNXT_PTP_RX_FIFO]); + if (fifo & BNXT_PTP_RX_FIFO_PENDING) { + bnxt_clr_rx_ts(bp); + return -EBUSY; + } + + *ts = readl(bp->bar0 + ptp->rx_mapped_regs[BNXT_PTP_RX_TS_L]); + *ts |= (u64)readl(bp->bar0 + ptp->rx_mapped_regs[BNXT_PTP_RX_TS_H]) << + 32; + + return 0; +} + +static const struct ptp_clock_info bnxt_ptp_caps = { + .owner = THIS_MODULE, + .name = "bnxt clock", + .max_adj = BNXT_MAX_PHC_DRIFT, + .n_alarm = 0, + .n_ext_ts = 0, + .n_per_out = 1, + .n_pins = 0, + .pps = 0, + .adjfreq = bnxt_ptp_adjfreq, + .adjtime = bnxt_ptp_adjtime, + .gettime64 = bnxt_ptp_gettime, + .settime64 = bnxt_ptp_settime, + .enable = bnxt_ptp_enable, +}; + +int bnxt_ptp_init(struct bnxt *bp) +{ + struct bnxt_ptp_cfg *ptp = bp->ptp_cfg; + int rc; + + if (!ptp) + return 0; + rc = bnxt_map_ptp_regs(bp); + if (rc) + return rc; + + atomic_set(&ptp->tx_avail, BNXT_MAX_TX_TS); + + memset(&ptp->cc, 0, sizeof(ptp->cc)); + ptp->cc.read = bnxt_cc_read; + ptp->cc.mask = CYCLECOUNTER_MASK(64); + ptp->cc.shift = 0; + ptp->cc.mult = 1; + + timecounter_init(&ptp->tc, &ptp->cc, ktime_to_ns(ktime_get_real())); + + ptp->ptp_info = bnxt_ptp_caps; + ptp->ptp_clock = ptp_clock_register(&ptp->ptp_info, &bp->pdev->dev); + if (IS_ERR(ptp->ptp_clock)) + ptp->ptp_clock = NULL; + + return 0; +} + +void bnxt_ptp_free(struct bnxt *bp) +{ + struct bnxt_ptp_cfg *ptp = bp->ptp_cfg; + + if (!ptp) + return; + + if (ptp->ptp_clock) + ptp_clock_unregister(ptp->ptp_clock); + + ptp->ptp_clock = NULL; + bnxt_unmap_ptp_regs(bp); +} + +#else + +int bnxt_hwtstamp_set(struct net_device *dev, struct ifreq *ifr) +{ + return -EOPNOTSUPP; +} + +int bnxt_hwtstamp_get(struct net_device *dev, struct ifreq *ifr) +{ + return -EOPNOTSUPP; +} + +int bnxt_ptp_init(struct bnxt *bp) +{ + return 0; +} + +void bnxt_ptp_free(struct bnxt *bp) +{ + return; +} + +#endif only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/bnxt/bnxt_ptp.h +++ linux-raspi2-4.4.0/ubuntu/bnxt/bnxt_ptp.h @@ -0,0 +1,70 @@ +/* Broadcom NetXtreme-C/E network driver. + * + * Copyright (c) 2017 Broadcom Limited + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation. + */ + +#ifndef BNXT_PTP_H +#define BNXT_PTP_H + +#define BNXT_MAX_PHC_DRIFT 31000000 + +struct bnxt_ptp_cfg { +#ifdef HAVE_IEEE1588_SUPPORT + struct ptp_clock_info ptp_info; + struct ptp_clock *ptp_clock; + struct cyclecounter cc; + struct timecounter tc; +#endif + struct bnxt *bp; + atomic_t tx_avail; +#define BNXT_MAX_TX_TS 1 + u16 rxctl; +#define BNXT_PTP_MSG_SYNC (1 << 0) +#define BNXT_PTP_MSG_DELAY_REQ (1 << 1) +#define BNXT_PTP_MSG_PDELAY_REQ (1 << 2) +#define BNXT_PTP_MSG_PDELAY_RESP (1 << 3) +#define BNXT_PTP_MSG_FOLLOW_UP (1 << 8) +#define BNXT_PTP_MSG_DELAY_RESP (1 << 9) +#define BNXT_PTP_MSG_PDELAY_RESP_FOLLOW_UP (1 << 10) +#define BNXT_PTP_MSG_ANNOUNCE (1 << 11) +#define BNXT_PTP_MSG_SIGNALING (1 << 12) +#define BNXT_PTP_MSG_MANAGEMENT (1 << 13) +#define BNXT_PTP_MSG_EVENTS (BNXT_PTP_MSG_SYNC | \ + BNXT_PTP_MSG_DELAY_REQ | \ + BNXT_PTP_MSG_PDELAY_REQ | \ + BNXT_PTP_MSG_PDELAY_RESP) + u8 tx_tstamp_en:1; + int rx_filter; + +#define BNXT_PTP_RX_TS_L 0 +#define BNXT_PTP_RX_TS_H 1 +#define BNXT_PTP_RX_SEQ 2 +#define BNXT_PTP_RX_FIFO 3 +#define BNXT_PTP_RX_FIFO_PENDING 0x1 +#define BNXT_PTP_RX_FIFO_ADV 4 +#define BNXT_PTP_RX_REGS 5 + +#define BNXT_PTP_TX_TS_L 0 +#define BNXT_PTP_TX_TS_H 1 +#define BNXT_PTP_TX_SEQ 2 +#define BNXT_PTP_TX_FIFO 3 +#define BNXT_PTP_TX_FIFO_EMPTY 0x2 +#define BNXT_PTP_TX_REGS 4 + u32 rx_regs[BNXT_PTP_RX_REGS]; + u32 rx_mapped_regs[BNXT_PTP_RX_REGS]; + u32 tx_regs[BNXT_PTP_TX_REGS]; + u32 tx_mapped_regs[BNXT_PTP_TX_REGS]; +}; + +int bnxt_hwtstamp_set(struct net_device *dev, struct ifreq *ifr); +int bnxt_hwtstamp_get(struct net_device *dev, struct ifreq *ifr); +int bnxt_get_tx_ts(struct bnxt *bp, u64 *ts); +int bnxt_get_rx_ts(struct bnxt *bp, u64 *ts); +int bnxt_ptp_init(struct bnxt *bp); +void bnxt_ptp_free(struct bnxt *bp); + +#endif only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/bnxt/bnxt_sriov.c +++ linux-raspi2-4.4.0/ubuntu/bnxt/bnxt_sriov.c @@ -0,0 +1,1025 @@ +/* Broadcom NetXtreme-C/E network driver. + * + * Copyright (c) 2014-2016 Broadcom Corporation + * Copyright (c) 2016-2017 Broadcom Limited + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation. + */ + +#include +#include +#include +#include +#include +#include +#include +#include "bnxt_compat.h" +#include "bnxt_hsi.h" +#include "bnxt.h" +#include "bnxt_ulp.h" +#include "bnxt_sriov.h" +#include "bnxt_ethtool.h" + +#ifdef CONFIG_BNXT_BPO_SRIOV +static int bnxt_hwrm_fwd_async_event_cmpl(struct bnxt *bp, + struct bnxt_vf_info *vf, + u16 event_id) +{ + int rc = 0; + struct hwrm_fwd_async_event_cmpl_input req = {0}; + struct hwrm_fwd_async_event_cmpl_output *resp = bp->hwrm_cmd_resp_addr; + struct hwrm_async_event_cmpl *async_cmpl; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FWD_ASYNC_EVENT_CMPL, -1, -1); + if (vf) + req.encap_async_event_target_id = cpu_to_le16(vf->fw_fid); + else + /* broadcast this async event to all VFs */ + req.encap_async_event_target_id = cpu_to_le16(0xffff); + async_cmpl = (struct hwrm_async_event_cmpl *)req.encap_async_event_cmpl; + async_cmpl->type = cpu_to_le16(ASYNC_EVENT_CMPL_TYPE_HWRM_ASYNC_EVENT); + async_cmpl->event_id = cpu_to_le16(event_id); + + mutex_lock(&bp->hwrm_cmd_lock); + rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + + if (rc) { + netdev_err(bp->dev, "hwrm_fwd_async_event_cmpl failed. rc:%d\n", + rc); + goto fwd_async_event_cmpl_exit; + } + + if (resp->error_code) { + netdev_err(bp->dev, "hwrm_fwd_async_event_cmpl error %d\n", + resp->error_code); + rc = -1; + } + +fwd_async_event_cmpl_exit: + mutex_unlock(&bp->hwrm_cmd_lock); + return rc; +} + +#ifdef HAVE_NDO_GET_VF_CONFIG +static int bnxt_vf_ndo_prep(struct bnxt *bp, int vf_id) +{ + if (!test_bit(BNXT_STATE_OPEN, &bp->state)) { + netdev_err(bp->dev, "vf ndo called though PF is down\n"); + return -EINVAL; + } + if (!bp->pf.active_vfs) { + netdev_err(bp->dev, "vf ndo called though sriov is disabled\n"); + return -EINVAL; + } + if (vf_id >= bp->pf.max_vfs) { + netdev_err(bp->dev, "Invalid VF id %d\n", vf_id); + return -EINVAL; + } + return 0; +} + +#ifdef HAVE_VF_SPOOFCHK +int bnxt_set_vf_spoofchk(struct net_device *dev, int vf_id, bool setting) +{ + struct hwrm_func_cfg_input req = {0}; + struct bnxt *bp = netdev_priv(dev); + struct bnxt_vf_info *vf; + bool old_setting = false; + u32 func_flags; + int rc; + + if (bp->hwrm_spec_code < 0x10701) + return -ENOTSUPP; + + rc = bnxt_vf_ndo_prep(bp, vf_id); + if (rc) + return rc; + + vf = &bp->pf.vf[vf_id]; + if (vf->flags & BNXT_VF_SPOOFCHK) + old_setting = true; + if (old_setting == setting) + return 0; + + if (setting) + func_flags = FUNC_CFG_REQ_FLAGS_SRC_MAC_ADDR_CHECK_ENABLE; + else + func_flags = FUNC_CFG_REQ_FLAGS_SRC_MAC_ADDR_CHECK_DISABLE; + /*TODO: if the driver supports VLAN filter on guest VLAN, + * the spoof check should also include vlan anti-spoofing + */ + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_CFG, -1, -1); + req.fid = cpu_to_le16(vf->fw_fid); + req.flags = cpu_to_le32(func_flags); + rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + if (!rc) { + vf->func_flags = func_flags; + if (setting) + vf->flags |= BNXT_VF_SPOOFCHK; + else + vf->flags &= ~BNXT_VF_SPOOFCHK; + } + return rc; +} +#endif + +int bnxt_get_vf_config(struct net_device *dev, int vf_id, + struct ifla_vf_info *ivi) +{ + struct bnxt *bp = netdev_priv(dev); + struct bnxt_vf_info *vf; + int rc; + + rc = bnxt_vf_ndo_prep(bp, vf_id); + if (rc) + return rc; + + ivi->vf = vf_id; + vf = &bp->pf.vf[vf_id]; + + memcpy(&ivi->mac, vf->mac_addr, ETH_ALEN); +#ifdef HAVE_IFLA_TX_RATE + ivi->max_tx_rate = vf->max_tx_rate; + ivi->min_tx_rate = vf->min_tx_rate; +#else + ivi->tx_rate = vf->max_tx_rate; +#endif + ivi->vlan = vf->vlan; + if (vf->flags & BNXT_VF_QOS) + ivi->qos = vf->vlan >> VLAN_PRIO_SHIFT; + else + ivi->qos = 0; +#ifdef HAVE_VF_SPOOFCHK + ivi->spoofchk = !!(vf->flags & BNXT_VF_SPOOFCHK); +#endif +#ifdef HAVE_NDO_SET_VF_LINK_STATE + if (!(vf->flags & BNXT_VF_LINK_FORCED)) + ivi->linkstate = IFLA_VF_LINK_STATE_AUTO; + else if (vf->flags & BNXT_VF_LINK_UP) + ivi->linkstate = IFLA_VF_LINK_STATE_ENABLE; + else + ivi->linkstate = IFLA_VF_LINK_STATE_DISABLE; +#endif + + return 0; +} + +int bnxt_set_vf_mac(struct net_device *dev, int vf_id, u8 *mac) +{ + struct hwrm_func_cfg_input req = {0}; + struct bnxt *bp = netdev_priv(dev); + struct bnxt_vf_info *vf; + int rc; + + rc = bnxt_vf_ndo_prep(bp, vf_id); + if (rc) + return rc; + /* reject bc or mc mac addr, zero mac addr means allow + * VF to use its own mac addr + */ + if (is_multicast_ether_addr(mac)) { + netdev_err(dev, "Invalid VF ethernet address\n"); + return -EINVAL; + } + vf = &bp->pf.vf[vf_id]; + + memcpy(vf->mac_addr, mac, ETH_ALEN); + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_CFG, -1, -1); + req.fid = cpu_to_le16(vf->fw_fid); + req.flags = cpu_to_le32(vf->func_flags); + req.enables = cpu_to_le32(FUNC_CFG_REQ_ENABLES_DFLT_MAC_ADDR); + memcpy(req.dflt_mac_addr, mac, ETH_ALEN); + return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); +} + +#ifdef NEW_NDO_SET_VF_VLAN +int bnxt_set_vf_vlan(struct net_device *dev, int vf_id, u16 vlan_id, u8 qos, + __be16 vlan_proto) +#else +int bnxt_set_vf_vlan(struct net_device *dev, int vf_id, u16 vlan_id, u8 qos) +#endif +{ + struct hwrm_func_cfg_input req = {0}; + struct bnxt *bp = netdev_priv(dev); + struct bnxt_vf_info *vf; + u16 vlan_tag; + int rc; + + if (bp->hwrm_spec_code < 0x10201) + return -ENOTSUPP; + +#ifdef NEW_NDO_SET_VF_VLAN + if (vlan_proto != htons(ETH_P_8021Q)) + return -EPROTONOSUPPORT; +#endif + + rc = bnxt_vf_ndo_prep(bp, vf_id); + if (rc) + return rc; + + /* TODO: needed to implement proper handling of user priority, + * currently fail the command if there is valid priority + */ + if (vlan_id > 4095 || qos) + return -EINVAL; + + vf = &bp->pf.vf[vf_id]; + vlan_tag = vlan_id; + if (vlan_tag == vf->vlan) + return 0; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_CFG, -1, -1); + req.fid = cpu_to_le16(vf->fw_fid); + req.flags = cpu_to_le32(vf->func_flags); + req.dflt_vlan = cpu_to_le16(vlan_tag); + req.enables = cpu_to_le32(FUNC_CFG_REQ_ENABLES_DFLT_VLAN); + rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + if (!rc) + vf->vlan = vlan_tag; + return rc; +} + +#ifdef HAVE_IFLA_TX_RATE +int bnxt_set_vf_bw(struct net_device *dev, int vf_id, int min_tx_rate, + int max_tx_rate) +#else +int bnxt_set_vf_bw(struct net_device *dev, int vf_id, int max_tx_rate) +#endif +{ + struct hwrm_func_cfg_input req = {0}; + struct bnxt *bp = netdev_priv(dev); + struct bnxt_vf_info *vf; + u32 pf_link_speed; + int rc; + + rc = bnxt_vf_ndo_prep(bp, vf_id); + if (rc) + return rc; + + vf = &bp->pf.vf[vf_id]; + pf_link_speed = bnxt_fw_to_ethtool_speed(bp->link_info.link_speed); + if (max_tx_rate > pf_link_speed) { + netdev_info(bp->dev, "max tx rate %d exceed PF link speed for VF %d\n", + max_tx_rate, vf_id); + return -EINVAL; + } + +#ifdef HAVE_IFLA_TX_RATE + if (min_tx_rate > pf_link_speed || min_tx_rate > max_tx_rate) { + netdev_info(bp->dev, "min tx rate %d is invalid for VF %d\n", + min_tx_rate, vf_id); + return -EINVAL; + } + if (min_tx_rate == vf->min_tx_rate && max_tx_rate == vf->max_tx_rate) + return 0; +#else + if (max_tx_rate == vf->max_tx_rate) + return 0; +#endif + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_CFG, -1, -1); + req.fid = cpu_to_le16(vf->fw_fid); + req.flags = cpu_to_le32(vf->func_flags); + req.enables = cpu_to_le32(FUNC_CFG_REQ_ENABLES_MAX_BW); + req.max_bw = cpu_to_le32(max_tx_rate); +#ifdef HAVE_IFLA_TX_RATE + req.enables |= cpu_to_le32(FUNC_CFG_REQ_ENABLES_MIN_BW); + req.min_bw = cpu_to_le32(min_tx_rate); +#endif + rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + if (!rc) { +#ifdef HAVE_IFLA_TX_RATE + vf->min_tx_rate = min_tx_rate; +#endif + vf->max_tx_rate = max_tx_rate; + } + return rc; +} + +#ifdef HAVE_NDO_SET_VF_LINK_STATE +int bnxt_set_vf_link_state(struct net_device *dev, int vf_id, int link) +{ + struct bnxt *bp = netdev_priv(dev); + struct bnxt_vf_info *vf; + int rc; + + rc = bnxt_vf_ndo_prep(bp, vf_id); + if (rc) + return rc; + + vf = &bp->pf.vf[vf_id]; + + vf->flags &= ~(BNXT_VF_LINK_UP | BNXT_VF_LINK_FORCED); + switch (link) { + case IFLA_VF_LINK_STATE_AUTO: + vf->flags |= BNXT_VF_LINK_UP; + break; + case IFLA_VF_LINK_STATE_DISABLE: + vf->flags |= BNXT_VF_LINK_FORCED; + break; + case IFLA_VF_LINK_STATE_ENABLE: + vf->flags |= BNXT_VF_LINK_UP | BNXT_VF_LINK_FORCED; + break; + default: + netdev_err(bp->dev, "Invalid link option\n"); + rc = -EINVAL; + break; + } + if (vf->flags & (BNXT_VF_LINK_UP | BNXT_VF_LINK_FORCED)) + rc = bnxt_hwrm_fwd_async_event_cmpl(bp, vf, + ASYNC_EVENT_CMPL_EVENT_ID_LINK_STATUS_CHANGE); + return rc; +} +#endif +#endif + +static int bnxt_set_vf_attr(struct bnxt *bp, int num_vfs) +{ + int i; + struct bnxt_vf_info *vf; + + for (i = 0; i < num_vfs; i++) { + vf = &bp->pf.vf[i]; + memset(vf, 0, sizeof(*vf)); + } + return 0; +} + +static int bnxt_hwrm_func_vf_resource_free(struct bnxt *bp, int num_vfs) +{ + int i, rc = 0; + struct bnxt_pf_info *pf = &bp->pf; + struct hwrm_func_vf_resc_free_input req = {0}; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_VF_RESC_FREE, -1, -1); + + mutex_lock(&bp->hwrm_cmd_lock); + for (i = pf->first_vf_id; i < pf->first_vf_id + num_vfs; i++) { + req.vf_id = cpu_to_le16(i); + rc = _hwrm_send_message(bp, &req, sizeof(req), + HWRM_CMD_TIMEOUT); + if (rc) + break; + } + mutex_unlock(&bp->hwrm_cmd_lock); + return rc; +} + +static void bnxt_free_vf_resources(struct bnxt *bp) +{ + struct pci_dev *pdev = bp->pdev; + int i; + + kfree(bp->pf.vf_event_bmap); + bp->pf.vf_event_bmap = NULL; + + for (i = 0; i < 4; i++) { + if (bp->pf.hwrm_cmd_req_addr[i]) { + dma_free_coherent(&pdev->dev, BNXT_PAGE_SIZE, + bp->pf.hwrm_cmd_req_addr[i], + bp->pf.hwrm_cmd_req_dma_addr[i]); + bp->pf.hwrm_cmd_req_addr[i] = NULL; + } + } + + kfree(bp->pf.vf); + bp->pf.vf = NULL; +} + +static int bnxt_alloc_vf_resources(struct bnxt *bp, int num_vfs) +{ + struct pci_dev *pdev = bp->pdev; + u32 nr_pages, size, i, j, k = 0; + + bp->pf.vf = kcalloc(num_vfs, sizeof(struct bnxt_vf_info), GFP_KERNEL); + if (!bp->pf.vf) + return -ENOMEM; + + bnxt_set_vf_attr(bp, num_vfs); + + size = num_vfs * BNXT_HWRM_REQ_MAX_SIZE; + nr_pages = size / BNXT_PAGE_SIZE; + if (size & (BNXT_PAGE_SIZE - 1)) + nr_pages++; + + for (i = 0; i < nr_pages; i++) { + bp->pf.hwrm_cmd_req_addr[i] = + dma_alloc_coherent(&pdev->dev, BNXT_PAGE_SIZE, + &bp->pf.hwrm_cmd_req_dma_addr[i], + GFP_KERNEL); + + if (!bp->pf.hwrm_cmd_req_addr[i]) + return -ENOMEM; + + for (j = 0; j < BNXT_HWRM_REQS_PER_PAGE && k < num_vfs; j++) { + struct bnxt_vf_info *vf = &bp->pf.vf[k]; + + vf->hwrm_cmd_req_addr = bp->pf.hwrm_cmd_req_addr[i] + + j * BNXT_HWRM_REQ_MAX_SIZE; + vf->hwrm_cmd_req_dma_addr = + bp->pf.hwrm_cmd_req_dma_addr[i] + j * + BNXT_HWRM_REQ_MAX_SIZE; + k++; + } + } + + /* Max 128 VF's */ + bp->pf.vf_event_bmap = kzalloc(16, GFP_KERNEL); + if (!bp->pf.vf_event_bmap) + return -ENOMEM; + + bp->pf.hwrm_cmd_req_pages = nr_pages; + return 0; +} + +static int bnxt_hwrm_func_buf_rgtr(struct bnxt *bp) +{ + struct hwrm_func_buf_rgtr_input req = {0}; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_BUF_RGTR, -1, -1); + + req.req_buf_num_pages = cpu_to_le16(bp->pf.hwrm_cmd_req_pages); + req.req_buf_page_size = cpu_to_le16(BNXT_PAGE_SHIFT); + req.req_buf_len = cpu_to_le16(BNXT_HWRM_REQ_MAX_SIZE); + req.req_buf_page_addr0 = cpu_to_le64(bp->pf.hwrm_cmd_req_dma_addr[0]); + req.req_buf_page_addr1 = cpu_to_le64(bp->pf.hwrm_cmd_req_dma_addr[1]); + req.req_buf_page_addr2 = cpu_to_le64(bp->pf.hwrm_cmd_req_dma_addr[2]); + req.req_buf_page_addr3 = cpu_to_le64(bp->pf.hwrm_cmd_req_dma_addr[3]); + + return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); +} + +/* only call by PF to reserve resources for VF */ +static int bnxt_hwrm_func_cfg(struct bnxt *bp, int num_vfs) +{ + u32 rc = 0, mtu, i; + u16 vf_tx_rings, vf_rx_rings, vf_cp_rings, vf_stat_ctx, vf_vnics; + u16 vf_ring_grps, max_stat_ctxs; + struct hwrm_func_cfg_input req = {0}; + struct bnxt_pf_info *pf = &bp->pf; + int total_vf_tx_rings = 0; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_CFG, -1, -1); + + max_stat_ctxs = pf->max_stat_ctxs; + + /* Remaining rings are distributed equally amongs VF's for now */ + vf_cp_rings = (pf->max_cp_rings - bp->cp_nr_rings) / num_vfs; + vf_stat_ctx = (max_stat_ctxs - bp->num_stat_ctxs) / num_vfs; + if (bp->flags & BNXT_FLAG_AGG_RINGS) + vf_rx_rings = (pf->max_rx_rings - bp->rx_nr_rings * 2) / + num_vfs; + else + vf_rx_rings = (pf->max_rx_rings - bp->rx_nr_rings) / num_vfs; + vf_ring_grps = (bp->pf.max_hw_ring_grps - bp->rx_nr_rings) / num_vfs; + vf_tx_rings = (pf->max_tx_rings - bp->tx_nr_rings) / num_vfs; + vf_vnics = (pf->max_vnics - bp->nr_vnics) / num_vfs; + vf_vnics = min_t(u16, vf_vnics, vf_rx_rings); + + req.enables = cpu_to_le32(FUNC_CFG_REQ_ENABLES_MTU | + FUNC_CFG_REQ_ENABLES_MRU | + FUNC_CFG_REQ_ENABLES_NUM_RSSCOS_CTXS | + FUNC_CFG_REQ_ENABLES_NUM_STAT_CTXS | + FUNC_CFG_REQ_ENABLES_NUM_CMPL_RINGS | + FUNC_CFG_REQ_ENABLES_NUM_TX_RINGS | + FUNC_CFG_REQ_ENABLES_NUM_RX_RINGS | + FUNC_CFG_REQ_ENABLES_NUM_L2_CTXS | + FUNC_CFG_REQ_ENABLES_NUM_VNICS | + FUNC_CFG_REQ_ENABLES_NUM_HW_RING_GRPS); + + mtu = bp->dev->mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN; + req.mru = cpu_to_le16(mtu); + req.mtu = cpu_to_le16(mtu); + + req.num_rsscos_ctxs = cpu_to_le16(1); + req.num_cmpl_rings = cpu_to_le16(vf_cp_rings); + req.num_tx_rings = cpu_to_le16(vf_tx_rings); + req.num_rx_rings = cpu_to_le16(vf_rx_rings); + req.num_hw_ring_grps = cpu_to_le16(vf_ring_grps); + req.num_l2_ctxs = cpu_to_le16(4); + + req.num_vnics = cpu_to_le16(vf_vnics); + /* FIXME spec currently uses 1 bit for stats ctx */ + req.num_stat_ctxs = cpu_to_le16(vf_stat_ctx); + + mutex_lock(&bp->hwrm_cmd_lock); + for (i = 0; i < num_vfs; i++) { + int vf_tx_rsvd = vf_tx_rings; + + req.fid = cpu_to_le16(pf->first_vf_id + i); + rc = _hwrm_send_message(bp, &req, sizeof(req), + HWRM_CMD_TIMEOUT); + if (rc) + break; + pf->active_vfs = i + 1; + pf->vf[i].fw_fid = le16_to_cpu(req.fid); + rc = __bnxt_hwrm_get_tx_rings(bp, pf->vf[i].fw_fid, + &vf_tx_rsvd); + if (rc) + break; + total_vf_tx_rings += vf_tx_rsvd; + } + mutex_unlock(&bp->hwrm_cmd_lock); + if (!rc) { + pf->max_tx_rings -= total_vf_tx_rings; + pf->max_rx_rings -= vf_rx_rings * num_vfs; + pf->max_hw_ring_grps -= vf_ring_grps * num_vfs; + pf->max_cp_rings -= vf_cp_rings * num_vfs; + pf->max_rsscos_ctxs -= num_vfs; + pf->max_stat_ctxs -= vf_stat_ctx * num_vfs; + pf->max_vnics -= vf_vnics * num_vfs; + } + return rc; +} + +static int bnxt_sriov_enable(struct bnxt *bp, int *num_vfs) +{ + int rc = 0, vfs_supported; + int min_rx_rings, min_tx_rings, min_rss_ctxs; + int tx_ok = 0, rx_ok = 0, rss_ok = 0; + + /* Check if we can enable requested num of vf's. At a mininum + * we require 1 RX 1 TX rings for each VF. In this minimum conf + * features like TPA will not be available. + */ + vfs_supported = *num_vfs; + + while (vfs_supported) { + min_rx_rings = vfs_supported; + min_tx_rings = vfs_supported; + min_rss_ctxs = vfs_supported; + + if (bp->flags & BNXT_FLAG_AGG_RINGS) { + if (bp->pf.max_rx_rings - bp->rx_nr_rings * 2 >= + min_rx_rings) + rx_ok = 1; + } else { + if (bp->pf.max_rx_rings - bp->rx_nr_rings >= + min_rx_rings) + rx_ok = 1; + } + if (bp->pf.max_vnics - bp->nr_vnics < min_rx_rings) + rx_ok = 0; + + if (bp->pf.max_tx_rings - bp->tx_nr_rings >= min_tx_rings) + tx_ok = 1; + + if (bp->pf.max_rsscos_ctxs - bp->rsscos_nr_ctxs >= min_rss_ctxs) + rss_ok = 1; + + if (tx_ok && rx_ok && rss_ok) + break; + + vfs_supported--; + } + + if (!vfs_supported) { + netdev_err(bp->dev, "Cannot enable VF's as all resources are used by PF\n"); + return -EINVAL; + } + + if (vfs_supported != *num_vfs) { + netdev_info(bp->dev, "Requested VFs %d, can enable %d\n", + *num_vfs, vfs_supported); + *num_vfs = vfs_supported; + } + + rc = bnxt_alloc_vf_resources(bp, *num_vfs); + if (rc) + goto err_out1; + + /* Reserve resources for VFs */ + rc = bnxt_hwrm_func_cfg(bp, *num_vfs); + if (rc) + goto err_out2; + + /* Register buffers for VFs */ + rc = bnxt_hwrm_func_buf_rgtr(bp); + if (rc) + goto err_out2; + + bnxt_ulp_sriov_cfg(bp, *num_vfs); + + rc = pci_enable_sriov(bp->pdev, *num_vfs); + if (rc) + goto err_out2; + + return 0; + +err_out2: + /* Free the resources reserved for various VF's */ + bnxt_hwrm_func_vf_resource_free(bp, *num_vfs); + +err_out1: + bnxt_free_vf_resources(bp); + + return rc; +} + +void bnxt_sriov_disable(struct bnxt *bp) +{ + u16 num_vfs = pci_num_vf(bp->pdev); + + if (!num_vfs) + return; + + if (pci_vfs_assigned(bp->pdev)) { + bnxt_hwrm_fwd_async_event_cmpl( + bp, NULL, ASYNC_EVENT_CMPL_EVENT_ID_PF_DRVR_UNLOAD); + netdev_warn(bp->dev, "Unable to free %d VFs because some are assigned to VMs.\n", + num_vfs); + } else { + pci_disable_sriov(bp->pdev); + /* Free the HW resources reserved for various VF's */ + bnxt_hwrm_func_vf_resource_free(bp, num_vfs); + } + + bnxt_free_vf_resources(bp); + + bp->pf.active_vfs = 0; + /* Reclaim all resources for the PF. */ + rtnl_lock(); + bnxt_restore_pf_fw_resources(bp); + rtnl_unlock(); + + bnxt_ulp_sriov_cfg(bp, 0); +} + +int bnxt_sriov_configure(struct pci_dev *pdev, int num_vfs) +{ + struct net_device *dev = pci_get_drvdata(pdev); + struct bnxt *bp = netdev_priv(dev); + + if (!(bp->flags & BNXT_FLAG_USING_MSIX)) { + netdev_warn(dev, "Not allow SRIOV if the irq mode is not MSIX\n"); + return 0; + } + + rtnl_lock(); + if (!netif_running(dev)) { + netdev_warn(dev, "Reject SRIOV config request since if is down!\n"); + rtnl_unlock(); + return 0; + } + bp->sriov_cfg = true; + rtnl_unlock(); + + if (pci_vfs_assigned(bp->pdev)) { + netdev_warn(dev, "Unable to configure SRIOV since some VFs are assigned to VMs.\n"); + num_vfs = 0; + goto sriov_cfg_exit; + } + + /* Check if enabled VFs is same as requested */ + if (num_vfs && num_vfs == bp->pf.active_vfs) + goto sriov_cfg_exit; + + /* if there are previous existing VFs, clean them up */ + bnxt_sriov_disable(bp); + if (!num_vfs) + goto sriov_cfg_exit; + + bnxt_sriov_enable(bp, &num_vfs); + +sriov_cfg_exit: + bp->sriov_cfg = false; + wake_up(&bp->sriov_cfg_wait); + + return num_vfs; +} + +#ifndef PCIE_SRIOV_CONFIGURE + +static struct workqueue_struct *bnxt_iov_wq; + +void bnxt_sriov_init(unsigned int num_vfs) +{ + if (num_vfs) + bnxt_iov_wq = create_singlethread_workqueue("bnxt_iov_wq"); +} + +void bnxt_sriov_exit(void) +{ + if (bnxt_iov_wq) + destroy_workqueue(bnxt_iov_wq); + bnxt_iov_wq = NULL; +} + +static void bnxt_iov_task(struct work_struct *work) +{ + struct bnxt *bp; + + bp = container_of(work, struct bnxt, iov_task); + bnxt_sriov_configure(bp->pdev, bp->req_vfs); +} + +void bnxt_start_sriov(struct bnxt *bp, int num_vfs) +{ + int pos, req_vfs; + + if (!num_vfs || !BNXT_PF(bp)) + return; + + pos = pci_find_ext_capability(bp->pdev, PCI_EXT_CAP_ID_SRIOV); + if (!pos) { + return; + } else { + u16 t_vf = 0; + + pci_read_config_word(bp->pdev, pos + PCI_SRIOV_TOTAL_VF, &t_vf); + req_vfs = min_t(int, num_vfs, (int)t_vf); + } + + if (!bnxt_iov_wq) { + netdev_warn(bp->dev, "Work queue not available to start SRIOV\n"); + return; + } + bp->req_vfs = req_vfs; + INIT_WORK(&bp->iov_task, bnxt_iov_task); + queue_work(bnxt_iov_wq, &bp->iov_task); +} +#endif + +static int bnxt_hwrm_fwd_resp(struct bnxt *bp, struct bnxt_vf_info *vf, + void *encap_resp, __le64 encap_resp_addr, + __le16 encap_resp_cpr, u32 msg_size) +{ + int rc = 0; + struct hwrm_fwd_resp_input req = {0}; + struct hwrm_fwd_resp_output *resp = bp->hwrm_cmd_resp_addr; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FWD_RESP, -1, -1); + + /* Set the new target id */ + req.target_id = cpu_to_le16(vf->fw_fid); + req.encap_resp_target_id = cpu_to_le16(vf->fw_fid); + req.encap_resp_len = cpu_to_le16(msg_size); + req.encap_resp_addr = encap_resp_addr; + req.encap_resp_cmpl_ring = encap_resp_cpr; + memcpy(req.encap_resp, encap_resp, msg_size); + + mutex_lock(&bp->hwrm_cmd_lock); + rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + + if (rc) { + netdev_err(bp->dev, "hwrm_fwd_resp failed. rc:%d\n", rc); + goto fwd_resp_exit; + } + + if (resp->error_code) { + netdev_err(bp->dev, "hwrm_fwd_resp error %d\n", + resp->error_code); + rc = -1; + } + +fwd_resp_exit: + mutex_unlock(&bp->hwrm_cmd_lock); + return rc; +} + +static int bnxt_hwrm_fwd_err_resp(struct bnxt *bp, struct bnxt_vf_info *vf, + u32 msg_size) +{ + int rc = 0; + struct hwrm_reject_fwd_resp_input req = {0}; + struct hwrm_reject_fwd_resp_output *resp = bp->hwrm_cmd_resp_addr; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_REJECT_FWD_RESP, -1, -1); + /* Set the new target id */ + req.target_id = cpu_to_le16(vf->fw_fid); + req.encap_resp_target_id = cpu_to_le16(vf->fw_fid); + memcpy(req.encap_request, vf->hwrm_cmd_req_addr, msg_size); + + mutex_lock(&bp->hwrm_cmd_lock); + rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + + if (rc) { + netdev_err(bp->dev, "hwrm_fwd_err_resp failed. rc:%d\n", rc); + goto fwd_err_resp_exit; + } + + if (resp->error_code) { + netdev_err(bp->dev, "hwrm_fwd_err_resp error %d\n", + resp->error_code); + rc = -1; + } + +fwd_err_resp_exit: + mutex_unlock(&bp->hwrm_cmd_lock); + return rc; +} + +static int bnxt_hwrm_exec_fwd_resp(struct bnxt *bp, struct bnxt_vf_info *vf, + u32 msg_size) +{ + int rc = 0; + struct hwrm_exec_fwd_resp_input req = {0}; + struct hwrm_exec_fwd_resp_output *resp = bp->hwrm_cmd_resp_addr; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_EXEC_FWD_RESP, -1, -1); + /* Set the new target id */ + req.target_id = cpu_to_le16(vf->fw_fid); + req.encap_resp_target_id = cpu_to_le16(vf->fw_fid); + memcpy(req.encap_request, vf->hwrm_cmd_req_addr, msg_size); + + mutex_lock(&bp->hwrm_cmd_lock); + rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); + + if (rc) { + netdev_err(bp->dev, "hwrm_exec_fw_resp failed. rc:%d\n", rc); + goto exec_fwd_resp_exit; + } + + if (resp->error_code) { + netdev_err(bp->dev, "hwrm_exec_fw_resp error %d\n", + resp->error_code); + rc = -1; + } + +exec_fwd_resp_exit: + mutex_unlock(&bp->hwrm_cmd_lock); + return rc; +} + +static int bnxt_vf_validate_set_mac(struct bnxt *bp, struct bnxt_vf_info *vf) +{ + u32 msg_size = sizeof(struct hwrm_cfa_l2_filter_alloc_input); + struct hwrm_cfa_l2_filter_alloc_input *req = + (struct hwrm_cfa_l2_filter_alloc_input *)vf->hwrm_cmd_req_addr; + + if (!is_valid_ether_addr(vf->mac_addr) || + ether_addr_equal((const u8 *)req->l2_addr, vf->mac_addr)) + return bnxt_hwrm_exec_fwd_resp(bp, vf, msg_size); + else + return bnxt_hwrm_fwd_err_resp(bp, vf, msg_size); +} + +static int bnxt_vf_set_link(struct bnxt *bp, struct bnxt_vf_info *vf) +{ + int rc = 0; + + if (!(vf->flags & BNXT_VF_LINK_FORCED)) { + /* real link */ + rc = bnxt_hwrm_exec_fwd_resp( + bp, vf, sizeof(struct hwrm_port_phy_qcfg_input)); + } else { + struct hwrm_port_phy_qcfg_output phy_qcfg_resp; + struct hwrm_port_phy_qcfg_input *phy_qcfg_req; + + phy_qcfg_req = + (struct hwrm_port_phy_qcfg_input *)vf->hwrm_cmd_req_addr; + mutex_lock(&bp->hwrm_cmd_lock); + memcpy(&phy_qcfg_resp, &bp->link_info.phy_qcfg_resp, + sizeof(phy_qcfg_resp)); + mutex_unlock(&bp->hwrm_cmd_lock); + phy_qcfg_resp.seq_id = phy_qcfg_req->seq_id; + + if (vf->flags & BNXT_VF_LINK_UP) { + /* if physical link is down, force link up on VF */ + if (phy_qcfg_resp.link != + PORT_PHY_QCFG_RESP_LINK_LINK) { + phy_qcfg_resp.link = + PORT_PHY_QCFG_RESP_LINK_LINK; + phy_qcfg_resp.link_speed = cpu_to_le16( + PORT_PHY_QCFG_RESP_LINK_SPEED_10GB); + phy_qcfg_resp.duplex_cfg = + PORT_PHY_QCFG_RESP_DUPLEX_CFG_FULL; + phy_qcfg_resp.duplex_state = + PORT_PHY_QCFG_RESP_DUPLEX_STATE_FULL; + phy_qcfg_resp.pause = + (PORT_PHY_QCFG_RESP_PAUSE_TX | + PORT_PHY_QCFG_RESP_PAUSE_RX); + } + } else { + /* force link down */ + phy_qcfg_resp.link = PORT_PHY_QCFG_RESP_LINK_NO_LINK; + phy_qcfg_resp.link_speed = 0; + phy_qcfg_resp.duplex_state = + PORT_PHY_QCFG_RESP_DUPLEX_STATE_HALF; + phy_qcfg_resp.pause = 0; + } + rc = bnxt_hwrm_fwd_resp(bp, vf, &phy_qcfg_resp, + phy_qcfg_req->resp_addr, + phy_qcfg_req->cmpl_ring, + sizeof(phy_qcfg_resp)); + } + return rc; +} + +static int bnxt_vf_req_validate_snd(struct bnxt *bp, struct bnxt_vf_info *vf) +{ + int rc = 0; + struct input *encap_req = vf->hwrm_cmd_req_addr; + u32 req_type = le16_to_cpu(encap_req->req_type); + + switch (req_type) { + case HWRM_CFA_L2_FILTER_ALLOC: + rc = bnxt_vf_validate_set_mac(bp, vf); + break; + case HWRM_FUNC_CFG: + /* TODO Validate if VF is allowed to change mac address, + * mtu, num of rings etc + */ + rc = bnxt_hwrm_exec_fwd_resp( + bp, vf, sizeof(struct hwrm_func_cfg_input)); + break; + case HWRM_PORT_PHY_QCFG: + rc = bnxt_vf_set_link(bp, vf); + break; + default: + break; + } + return rc; +} + +void bnxt_hwrm_exec_fwd_req(struct bnxt *bp) +{ + u32 i = 0, active_vfs = bp->pf.active_vfs, vf_id; + + /* Scan through VF's and process commands */ + while (1) { + vf_id = find_next_bit(bp->pf.vf_event_bmap, active_vfs, i); + if (vf_id >= active_vfs) + break; + + clear_bit(vf_id, bp->pf.vf_event_bmap); + bnxt_vf_req_validate_snd(bp, &bp->pf.vf[vf_id]); + i = vf_id + 1; + } +} + +void bnxt_update_vf_mac(struct bnxt *bp) +{ + struct hwrm_func_qcaps_input req = {0}; + struct hwrm_func_qcaps_output *resp = bp->hwrm_cmd_resp_addr; + + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_QCAPS, -1, -1); + req.fid = cpu_to_le16(0xffff); + + mutex_lock(&bp->hwrm_cmd_lock); + if (_hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT)) + goto update_vf_mac_exit; + + /* Store MAC address from the firmware. There are 2 cases: + * 1. MAC address is valid. It is assigned from the PF and we + * need to override the current VF MAC address with it. + * 2. MAC address is zero. The VF will use a random MAC address by + * default but the stored zero MAC will allow the VF user to change + * the random MAC address using ndo_set_mac_address() if he wants. + */ + if (!ether_addr_equal(resp->mac_address, bp->vf.mac_addr)) + memcpy(bp->vf.mac_addr, resp->mac_address, ETH_ALEN); + + /* overwrite netdev dev_addr with admin VF MAC */ + if (is_valid_ether_addr(bp->vf.mac_addr)) + memcpy(bp->dev->dev_addr, bp->vf.mac_addr, ETH_ALEN); +update_vf_mac_exit: + mutex_unlock(&bp->hwrm_cmd_lock); +} + +int bnxt_approve_mac(struct bnxt *bp, u8 *mac) +{ + struct hwrm_func_vf_cfg_input req = {0}; + int rc = 0; + + if (!BNXT_VF(bp)) + return 0; + + if (bp->hwrm_spec_code < 0x10202) { + if (is_valid_ether_addr(bp->vf.mac_addr)) + rc = -EADDRNOTAVAIL; + goto mac_done; + } + bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_VF_CFG, -1, -1); + req.enables = cpu_to_le32(FUNC_VF_CFG_REQ_ENABLES_DFLT_MAC_ADDR); + memcpy(req.dflt_mac_addr, mac, ETH_ALEN); + rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT); +mac_done: + if (rc) { + rc = -EADDRNOTAVAIL; + netdev_warn(bp->dev, "VF MAC address %pM not approved by the PF\n", + mac); + } + return rc; +} +#else + +void bnxt_sriov_disable(struct bnxt *bp) +{ +} + +void bnxt_hwrm_exec_fwd_req(struct bnxt *bp) +{ + netdev_err(bp->dev, "Invalid VF message received when SRIOV is not enable\n"); +} + +void bnxt_update_vf_mac(struct bnxt *bp) +{ +} + +int bnxt_approve_mac(struct bnxt *bp, u8 *mac) +{ + return 0; +} +#endif only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/bnxt/bnxt_sriov.h +++ linux-raspi2-4.4.0/ubuntu/bnxt/bnxt_sriov.h @@ -0,0 +1,44 @@ +/* Broadcom NetXtreme-C/E network driver. + * + * Copyright (c) 2014-2016 Broadcom Corporation + * Copyright (c) 2016-2017 Broadcom Limited + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation. + */ + +#ifndef BNXT_SRIOV_H +#define BNXT_SRIOV_H + +#ifdef HAVE_NDO_GET_VF_CONFIG +int bnxt_get_vf_config(struct net_device *, int, struct ifla_vf_info *); +int bnxt_set_vf_mac(struct net_device *, int, u8 *); +#ifdef NEW_NDO_SET_VF_VLAN +int bnxt_set_vf_vlan(struct net_device *, int, u16, u8, __be16); +#else +int bnxt_set_vf_vlan(struct net_device *, int, u16, u8); +#endif +#ifdef HAVE_IFLA_TX_RATE +int bnxt_set_vf_bw(struct net_device *, int, int, int); +#else +int bnxt_set_vf_bw(struct net_device *, int, int); +#endif +#ifdef HAVE_NDO_SET_VF_LINK_STATE +int bnxt_set_vf_link_state(struct net_device *, int, int); +#endif +#ifdef HAVE_VF_SPOOFCHK +int bnxt_set_vf_spoofchk(struct net_device *, int, bool); +#endif +#endif +int bnxt_sriov_configure(struct pci_dev *pdev, int num_vfs); +#ifndef PCIE_SRIOV_CONFIGURE +void bnxt_start_sriov(struct bnxt *, int); +void bnxt_sriov_init(unsigned int); +void bnxt_sriov_exit(void); +#endif +void bnxt_sriov_disable(struct bnxt *); +void bnxt_hwrm_exec_fwd_req(struct bnxt *); +void bnxt_update_vf_mac(struct bnxt *); +int bnxt_approve_mac(struct bnxt *, u8 *); +#endif only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/bnxt/bnxt_ulp.c +++ linux-raspi2-4.4.0/ubuntu/bnxt/bnxt_ulp.c @@ -0,0 +1,348 @@ +/* Broadcom NetXtreme-C/E network driver. + * + * Copyright (c) 2016-2017 Broadcom Limited + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation. + */ + +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "bnxt_compat.h" +#include "bnxt_hsi.h" +#include "bnxt.h" +#include "bnxt_ulp.h" + +static int bnxt_register_dev(struct bnxt_en_dev *edev, int ulp_id, + struct bnxt_ulp_ops *ulp_ops, void *handle) +{ + struct net_device *dev = edev->net; + struct bnxt *bp = netdev_priv(dev); + struct bnxt_ulp *ulp; + + ASSERT_RTNL(); + if (ulp_id >= BNXT_MAX_ULP) + return -EINVAL; + + ulp = &edev->ulp_tbl[ulp_id]; + if (rcu_access_pointer(ulp->ulp_ops)) { + netdev_err(bp->dev, "ulp id %d already registered\n", ulp_id); + return -EBUSY; + } + if (ulp_id == BNXT_ROCE_ULP) { + unsigned int max_stat_ctxs; + + max_stat_ctxs = bnxt_get_max_func_stat_ctxs(bp); + if (max_stat_ctxs <= BNXT_MIN_ROCE_STAT_CTXS || + bp->num_stat_ctxs == max_stat_ctxs) + return -ENOMEM; + bnxt_set_max_func_stat_ctxs(bp, max_stat_ctxs - + BNXT_MIN_ROCE_STAT_CTXS); + } + + atomic_set(&ulp->ref_count, 0); + ulp->handle = handle; + rcu_assign_pointer(ulp->ulp_ops, ulp_ops); + + if (ulp_id == BNXT_ROCE_ULP) { + if (test_bit(BNXT_STATE_OPEN, &bp->state)) + bnxt_hwrm_vnic_cfg(bp, 0); + } + + return 0; +} + +static int bnxt_unregister_dev(struct bnxt_en_dev *edev, int ulp_id) +{ + struct net_device *dev = edev->net; + struct bnxt *bp = netdev_priv(dev); + struct bnxt_ulp *ulp; + int i = 0; + + ASSERT_RTNL(); + if (ulp_id >= BNXT_MAX_ULP) + return -EINVAL; + + ulp = &edev->ulp_tbl[ulp_id]; + if (!rcu_access_pointer(ulp->ulp_ops)) { + netdev_err(bp->dev, "ulp id %d not registered\n", ulp_id); + return -EINVAL; + } + if (ulp_id == BNXT_ROCE_ULP) { + unsigned int max_stat_ctxs; + + max_stat_ctxs = bnxt_get_max_func_stat_ctxs(bp); + bnxt_set_max_func_stat_ctxs(bp, max_stat_ctxs + 1); + } + if (ulp->max_async_event_id) + bnxt_hwrm_func_rgtr_async_events(bp, NULL, 0); + + RCU_INIT_POINTER(ulp->ulp_ops, NULL); + synchronize_rcu(); + ulp->max_async_event_id = 0; + ulp->async_events_bmap = NULL; + while (atomic_read(&ulp->ref_count) != 0 && i < 10) { + msleep(100); + i++; + } + return 0; +} + +static int bnxt_req_msix_vecs(struct bnxt_en_dev *edev, int ulp_id, + struct bnxt_msix_entry *ent, int num_msix) +{ + struct net_device *dev = edev->net; + struct bnxt *bp = netdev_priv(dev); + int max_idx, max_cp_rings; + int avail_msix, i, idx; + + ASSERT_RTNL(); + if (ulp_id != BNXT_ROCE_ULP) + return -EINVAL; + + if (!(bp->flags & BNXT_FLAG_USING_MSIX)) + return -ENODEV; + + max_cp_rings = bnxt_get_max_func_cp_rings(bp); + max_idx = min_t(int, bp->total_irqs, max_cp_rings); + avail_msix = max_idx - bp->cp_nr_rings; + if (!avail_msix) + return -ENOMEM; + if (avail_msix > num_msix) + avail_msix = num_msix; + + idx = max_idx - avail_msix; + for (i = 0; i < avail_msix; i++) { + ent[i].vector = bp->irq_tbl[idx + i].vector; + ent[i].ring_idx = idx + i; + ent[i].db_offset = (idx + i) * 0x80; + } + bnxt_set_max_func_irqs(bp, max_idx - avail_msix); + bnxt_set_max_func_cp_rings(bp, max_cp_rings - avail_msix); + edev->ulp_tbl[ulp_id].msix_requested = avail_msix; + return avail_msix; +} + +static int bnxt_free_msix_vecs(struct bnxt_en_dev *edev, int ulp_id) +{ + struct net_device *dev = edev->net; + struct bnxt *bp = netdev_priv(dev); + int max_cp_rings, msix_requested; + + ASSERT_RTNL(); + if (ulp_id != BNXT_ROCE_ULP) + return -EINVAL; + + max_cp_rings = bnxt_get_max_func_cp_rings(bp); + msix_requested = edev->ulp_tbl[ulp_id].msix_requested; + bnxt_set_max_func_cp_rings(bp, max_cp_rings + msix_requested); + edev->ulp_tbl[ulp_id].msix_requested = 0; + bnxt_set_max_func_irqs(bp, bp->total_irqs); + return 0; +} + +void bnxt_subtract_ulp_resources(struct bnxt *bp, int ulp_id) +{ + ASSERT_RTNL(); + if (bnxt_ulp_registered(bp->edev, ulp_id)) { + struct bnxt_en_dev *edev = bp->edev; + unsigned int msix_req, max; + + msix_req = edev->ulp_tbl[ulp_id].msix_requested; + max = bnxt_get_max_func_cp_rings(bp); + bnxt_set_max_func_cp_rings(bp, max - msix_req); + max = bnxt_get_max_func_stat_ctxs(bp); + bnxt_set_max_func_stat_ctxs(bp, max - 1); + } +} + +static int bnxt_send_msg(struct bnxt_en_dev *edev, int ulp_id, + struct bnxt_fw_msg *fw_msg) +{ + struct net_device *dev = edev->net; + struct bnxt *bp = netdev_priv(dev); + struct input *req; + int rc; + + mutex_lock(&bp->hwrm_cmd_lock); + req = fw_msg->msg; + req->resp_addr = cpu_to_le64(bp->hwrm_cmd_resp_dma_addr); + rc = _hwrm_send_message(bp, fw_msg->msg, fw_msg->msg_len, + fw_msg->timeout); + if (!rc) { + struct output *resp = bp->hwrm_cmd_resp_addr; + u32 len = le16_to_cpu(resp->resp_len); + + if (fw_msg->resp_max_len < len) + len = fw_msg->resp_max_len; + + memcpy(fw_msg->resp, resp, len); + } + mutex_unlock(&bp->hwrm_cmd_lock); + return rc; +} + +static void bnxt_ulp_get(struct bnxt_ulp *ulp) +{ + atomic_inc(&ulp->ref_count); +} + +static void bnxt_ulp_put(struct bnxt_ulp *ulp) +{ + atomic_dec(&ulp->ref_count); +} + +void bnxt_ulp_stop(struct bnxt *bp) +{ + struct bnxt_en_dev *edev = bp->edev; + struct bnxt_ulp_ops *ops; + int i; + + if (!edev) + return; + + for (i = 0; i < BNXT_MAX_ULP; i++) { + struct bnxt_ulp *ulp = &edev->ulp_tbl[i]; + + ops = rtnl_dereference(ulp->ulp_ops); + if (!ops || !ops->ulp_stop) + continue; + ops->ulp_stop(ulp->handle); + } +} + +void bnxt_ulp_start(struct bnxt *bp) +{ + struct bnxt_en_dev *edev = bp->edev; + struct bnxt_ulp_ops *ops; + int i; + + if (!edev) + return; + + for (i = 0; i < BNXT_MAX_ULP; i++) { + struct bnxt_ulp *ulp = &edev->ulp_tbl[i]; + + ops = rtnl_dereference(ulp->ulp_ops); + if (!ops || !ops->ulp_start) + continue; + ops->ulp_start(ulp->handle); + } +} + +void bnxt_ulp_sriov_cfg(struct bnxt *bp, int num_vfs) +{ + struct bnxt_en_dev *edev = bp->edev; + struct bnxt_ulp_ops *ops; + int i; + + if (!edev) + return; + + for (i = 0; i < BNXT_MAX_ULP; i++) { + struct bnxt_ulp *ulp = &edev->ulp_tbl[i]; + + rcu_read_lock(); + ops = rcu_dereference(ulp->ulp_ops); + if (!ops || !ops->ulp_sriov_config) { + rcu_read_unlock(); + continue; + } + bnxt_ulp_get(ulp); + rcu_read_unlock(); + ops->ulp_sriov_config(ulp->handle, num_vfs); + bnxt_ulp_put(ulp); + } +} + +void bnxt_ulp_async_events(struct bnxt *bp, struct hwrm_async_event_cmpl *cmpl) +{ + u16 event_id = le16_to_cpu(cmpl->event_id); + struct bnxt_en_dev *edev = bp->edev; + struct bnxt_ulp_ops *ops; + int i; + + if (!edev) + return; + + rcu_read_lock(); + for (i = 0; i < BNXT_MAX_ULP; i++) { + struct bnxt_ulp *ulp = &edev->ulp_tbl[i]; + + ops = rcu_dereference(ulp->ulp_ops); + if (!ops || !ops->ulp_async_notifier) + continue; + if (!ulp->async_events_bmap || + event_id > ulp->max_async_event_id) + continue; + + /* Read max_async_event_id first before testing the bitmap. */ + smp_rmb(); + if (test_bit(event_id, ulp->async_events_bmap)) + ops->ulp_async_notifier(ulp->handle, cmpl); + } + rcu_read_unlock(); +} + +static int bnxt_register_async_events(struct bnxt_en_dev *edev, int ulp_id, + unsigned long *events_bmap, u16 max_id) +{ + struct net_device *dev = edev->net; + struct bnxt *bp = netdev_priv(dev); + struct bnxt_ulp *ulp; + + if (ulp_id >= BNXT_MAX_ULP) + return -EINVAL; + + ulp = &edev->ulp_tbl[ulp_id]; + ulp->async_events_bmap = events_bmap; + /* Make sure bnxt_ulp_async_events() sees this order */ + smp_wmb(); + ulp->max_async_event_id = max_id; + bnxt_hwrm_func_rgtr_async_events(bp, events_bmap, max_id + 1); + return 0; +} + +static const struct bnxt_en_ops bnxt_en_ops_tbl = { + .bnxt_register_device = bnxt_register_dev, + .bnxt_unregister_device = bnxt_unregister_dev, + .bnxt_request_msix = bnxt_req_msix_vecs, + .bnxt_free_msix = bnxt_free_msix_vecs, + .bnxt_send_fw_msg = bnxt_send_msg, + .bnxt_register_fw_async_events = bnxt_register_async_events, +}; + +struct bnxt_en_dev *bnxt_ulp_probe(struct net_device *dev) +{ + struct bnxt *bp = netdev_priv(dev); + struct bnxt_en_dev *edev; + + edev = bp->edev; + if (!edev) { + edev = kzalloc(sizeof(*edev), GFP_KERNEL); + if (!edev) + return ERR_PTR(-ENOMEM); + edev->en_ops = &bnxt_en_ops_tbl; + if (bp->flags & BNXT_FLAG_ROCEV1_CAP) + edev->flags |= BNXT_EN_FLAG_ROCEV1_CAP; + if (bp->flags & BNXT_FLAG_ROCEV2_CAP) + edev->flags |= BNXT_EN_FLAG_ROCEV2_CAP; + edev->net = dev; + edev->pdev = bp->pdev; + bp->edev = edev; + } + return bp->edev; +} only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/bnxt/bnxt_ulp.h +++ linux-raspi2-4.4.0/ubuntu/bnxt/bnxt_ulp.h @@ -0,0 +1,94 @@ +/* Broadcom NetXtreme-C/E network driver. + * + * Copyright (c) 2016-2017 Broadcom Limited + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation. + */ + +#ifndef BNXT_ULP_H +#define BNXT_ULP_H + +#include + +#define BNXT_ROCE_ULP 0 +#define BNXT_OTHER_ULP 1 +#define BNXT_MAX_ULP 2 + +#define BNXT_MIN_ROCE_CP_RINGS 2 +#define BNXT_MIN_ROCE_STAT_CTXS 1 + +struct hwrm_async_event_cmpl; +struct bnxt; + +struct bnxt_ulp_ops { + /* async_notifier() cannot sleep (in BH context) */ + void (*ulp_async_notifier)(void *, struct hwrm_async_event_cmpl *); + void (*ulp_stop)(void *); + void (*ulp_start)(void *); + void (*ulp_sriov_config)(void *, int); +}; + +struct bnxt_msix_entry { + u32 vector; + u32 ring_idx; + u32 db_offset; +}; + +struct bnxt_fw_msg { + void *msg; + int msg_len; + void *resp; + int resp_max_len; + int timeout; +}; + +struct bnxt_ulp { + void *handle; + struct bnxt_ulp_ops __rcu *ulp_ops; + unsigned long *async_events_bmap; + u16 max_async_event_id; + u16 msix_requested; + atomic_t ref_count; +}; + +struct bnxt_en_dev { + struct net_device *net; + struct pci_dev *pdev; + u32 flags; + #define BNXT_EN_FLAG_ROCEV1_CAP 0x1 + #define BNXT_EN_FLAG_ROCEV2_CAP 0x2 + #define BNXT_EN_FLAG_ROCE_CAP (BNXT_EN_FLAG_ROCEV1_CAP | \ + BNXT_EN_FLAG_ROCEV2_CAP) + const struct bnxt_en_ops *en_ops; + struct bnxt_ulp ulp_tbl[BNXT_MAX_ULP]; +}; + +struct bnxt_en_ops { + int (*bnxt_register_device)(struct bnxt_en_dev *, int, + struct bnxt_ulp_ops *, void *); + int (*bnxt_unregister_device)(struct bnxt_en_dev *, int); + int (*bnxt_request_msix)(struct bnxt_en_dev *, int, + struct bnxt_msix_entry *, int); + int (*bnxt_free_msix)(struct bnxt_en_dev *, int); + int (*bnxt_send_fw_msg)(struct bnxt_en_dev *, int, + struct bnxt_fw_msg *); + int (*bnxt_register_fw_async_events)(struct bnxt_en_dev *, int, + unsigned long *, u16); +}; + +static inline bool bnxt_ulp_registered(struct bnxt_en_dev *edev, int ulp_id) +{ + if (edev && rcu_access_pointer(edev->ulp_tbl[ulp_id].ulp_ops)) + return true; + return false; +} + +void bnxt_subtract_ulp_resources(struct bnxt *bp, int ulp_id); +void bnxt_ulp_stop(struct bnxt *bp); +void bnxt_ulp_start(struct bnxt *bp); +void bnxt_ulp_sriov_cfg(struct bnxt *bp, int num_vfs); +void bnxt_ulp_async_events(struct bnxt *bp, struct hwrm_async_event_cmpl *cmpl); +struct bnxt_en_dev *bnxt_ulp_probe(struct net_device *dev); +#endif only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/bnxt/bnxt_xdp.c +++ linux-raspi2-4.4.0/ubuntu/bnxt/bnxt_xdp.c @@ -0,0 +1,252 @@ +/* Broadcom NetXtreme-C/E network driver. + * + * Copyright (c) 2016-2017 Broadcom Limited + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation. + */ +#include +#include +#include +#include +#include +#include +#ifdef HAVE_NDO_XDP +#include +#ifdef HAVE_BPF_TRACE +#include +#endif +#include +#endif +#include "bnxt_compat.h" +#include "bnxt_hsi.h" +#include "bnxt.h" +#include "bnxt_xdp.h" + +void bnxt_xmit_xdp(struct bnxt *bp, struct bnxt_tx_ring_info *txr, + dma_addr_t mapping, u32 len, u16 rx_prod) +{ + struct bnxt_sw_tx_bd *tx_buf; + struct tx_bd *txbd; + u32 flags; + u16 prod; + + prod = txr->tx_prod; + tx_buf = &txr->tx_buf_ring[prod]; + tx_buf->rx_prod = rx_prod; + + txbd = &txr->tx_desc_ring[TX_RING(prod)][TX_IDX(prod)]; + flags = (len << TX_BD_LEN_SHIFT) | (1 << TX_BD_FLAGS_BD_CNT_SHIFT) | + TX_BD_FLAGS_PACKET_END | bnxt_lhint_arr[len >> 9]; + txbd->tx_bd_len_flags_type = cpu_to_le32(flags); + txbd->tx_bd_opaque = prod; + txbd->tx_bd_haddr = cpu_to_le64(mapping); + + prod = NEXT_TX(prod); + txr->tx_prod = prod; +} + +#ifdef HAVE_NDO_XDP +void bnxt_tx_int_xdp(struct bnxt *bp, struct bnxt_napi *bnapi, int nr_pkts) +{ + struct bnxt_tx_ring_info *txr = bnapi->tx_ring; + struct bnxt_rx_ring_info *rxr = bnapi->rx_ring; + struct bnxt_sw_tx_bd *tx_buf; + u16 tx_cons = txr->tx_cons; + u16 last_tx_cons = tx_cons; + u16 rx_prod; + int i; + + for (i = 0; i < nr_pkts; i++) { + last_tx_cons = tx_cons; + tx_cons = NEXT_TX(tx_cons); + } + txr->tx_cons = tx_cons; + if (bnxt_tx_avail(bp, txr) == bp->tx_ring_size) { + rx_prod = rxr->rx_prod; + } else { + tx_buf = &txr->tx_buf_ring[last_tx_cons]; + rx_prod = tx_buf->rx_prod; + } + writel(DB_KEY_RX | rx_prod, rxr->rx_doorbell); +} + +/* returns the following: + * true - packet consumed by XDP and new buffer is allocated. + * false - packet should be passed to the stack. + */ +bool bnxt_rx_xdp(struct bnxt *bp, struct bnxt_rx_ring_info *rxr, u16 cons, + struct page *page, u8 **data_ptr, unsigned int *len, u8 *event) +{ + struct bpf_prog *xdp_prog = READ_ONCE(rxr->xdp_prog); + struct bnxt_tx_ring_info *txr; + struct bnxt_sw_rx_bd *rx_buf; + struct pci_dev *pdev; + struct xdp_buff xdp; + dma_addr_t mapping; + void *orig_data; + u32 tx_avail; + u32 offset; + u32 act; + + if (!xdp_prog) + return false; + + pdev = bp->pdev; + txr = rxr->bnapi->tx_ring; + rx_buf = &rxr->rx_buf_ring[cons]; + offset = bp->rx_offset; + +#if XDP_PACKET_HEADROOM + xdp.data_hard_start = *data_ptr - offset; +#endif + xdp.data = *data_ptr; + xdp.data_end = *data_ptr + *len; + orig_data = xdp.data; + mapping = rx_buf->mapping - bp->rx_dma_offset; + + dma_sync_single_for_cpu(&pdev->dev, mapping + offset, *len, bp->rx_dir); + + rcu_read_lock(); + act = bpf_prog_run_xdp(xdp_prog, &xdp); + rcu_read_unlock(); + + tx_avail = bnxt_tx_avail(bp, txr); + /* If the tx ring is not full, we must not update the rx producer yet + * because we may still be transmitting on some BDs. + */ + if (tx_avail != bp->tx_ring_size) + *event &= ~BNXT_RX_EVENT; + + if (orig_data != xdp.data) { +#if XDP_PACKET_HEADROOM + offset = xdp.data - xdp.data_hard_start; + *data_ptr = xdp.data_hard_start + offset; + *len = xdp.data_end - xdp.data; +#endif + } + switch (act) { + case XDP_PASS: + return false; + + case XDP_TX: + if (tx_avail < 1) { + trace_xdp_exception(bp->dev, xdp_prog, act); + bnxt_reuse_rx_data(rxr, cons, page); + return true; + } + + *event = BNXT_TX_EVENT; + dma_sync_single_for_device(&pdev->dev, mapping + offset, *len, + bp->rx_dir); + bnxt_xmit_xdp(bp, txr, mapping + offset, *len, + NEXT_RX(rxr->rx_prod)); + bnxt_reuse_rx_data(rxr, cons, page); + return true; + default: + bpf_warn_invalid_xdp_action(act); + /* Fall thru */ + case XDP_ABORTED: + trace_xdp_exception(bp->dev, xdp_prog, act); + /* Fall thru */ + case XDP_DROP: + bnxt_reuse_rx_data(rxr, cons, page); + break; + } + return true; +} + +/* Under rtnl_lock */ +static int bnxt_xdp_set(struct bnxt *bp, struct bpf_prog *prog) +{ + struct net_device *dev = bp->dev; + int tx_xdp = 0, rc, tc; + struct bpf_prog *old; + + if (prog && bp->dev->mtu > BNXT_MAX_PAGE_MODE_MTU) { + netdev_warn(dev, "MTU %d larger than largest XDP supported MTU %d.\n", + bp->dev->mtu, BNXT_MAX_PAGE_MODE_MTU); + return -EOPNOTSUPP; + } + if (!(bp->flags & BNXT_FLAG_SHARED_RINGS)) { + netdev_warn(dev, "ethtool rx/tx channels must be combined to support XDP.\n"); + return -EOPNOTSUPP; + } + if (prog) + tx_xdp = bp->rx_nr_rings; + + tc = netdev_get_num_tc(dev); + if (!tc) + tc = 1; + rc = bnxt_reserve_rings(bp, bp->tx_nr_rings_per_tc, bp->rx_nr_rings, + true, tc, tx_xdp); + if (rc) { + netdev_warn(dev, "Unable to reserve enough TX rings to support XDP.\n"); + return rc; + } + if (netif_running(dev)) + bnxt_close_nic(bp, true, false); + + old = xchg(&bp->xdp_prog, prog); + if (old) + bpf_prog_put(old); + + if (prog) { + bnxt_set_rx_skb_mode(bp, true); + } else { + int rx, tx; + + bnxt_set_rx_skb_mode(bp, false); + bnxt_get_max_rings(bp, &rx, &tx, true); + if (rx > 1) { + bp->flags &= ~BNXT_FLAG_NO_AGG_RINGS; + bp->dev->hw_features |= NETIF_F_LRO; + } + } + bp->tx_nr_rings_xdp = tx_xdp; + bp->tx_nr_rings = bp->tx_nr_rings_per_tc * tc + tx_xdp; + bp->cp_nr_rings = max_t(int, bp->tx_nr_rings, bp->rx_nr_rings); + bp->num_stat_ctxs = bp->cp_nr_rings; + bnxt_set_tpa_flags(bp); + bnxt_set_ring_params(bp); + + if (netif_running(dev)) + return bnxt_open_nic(bp, true, false); + + return 0; +} + +int bnxt_xdp(struct net_device *dev, struct netdev_xdp *xdp) +{ + struct bnxt *bp = netdev_priv(dev); + int rc; + + switch (xdp->command) { + case XDP_SETUP_PROG: + rc = bnxt_xdp_set(bp, xdp->prog); + break; + case XDP_QUERY_PROG: + xdp->prog_attached = !!bp->xdp_prog; +#ifdef HAVE_IFLA_XDP_PROG_ID + xdp->prog_id = bp->xdp_prog ? bp->xdp_prog->aux->id : 0; +#endif + rc = 0; + break; + default: + rc = -EINVAL; + break; + } + return rc; +} +#else +void bnxt_tx_int_xdp(struct bnxt *bp, struct bnxt_napi *bnapi, int nr_pkts) +{ +} + +bool bnxt_rx_xdp(struct bnxt *bp, struct bnxt_rx_ring_info *rxr, u16 cons, + void *page, u8 **data_ptr, unsigned int *len, u8 *event) +{ + return false; +} +#endif only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/bnxt/bnxt_xdp.h +++ linux-raspi2-4.4.0/ubuntu/bnxt/bnxt_xdp.h @@ -0,0 +1,27 @@ +/* Broadcom NetXtreme-C/E network driver. + * + * Copyright (c) 2016-2017 Broadcom Limited + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation. + */ + +#ifndef BNXT_XDP_H +#define BNXT_XDP_H + +void bnxt_xmit_xdp(struct bnxt *bp, struct bnxt_tx_ring_info *txr, + dma_addr_t mapping, u32 len, u16 rx_prod); +void bnxt_tx_int_xdp(struct bnxt *bp, struct bnxt_napi *bnapi, int nr_pkts); +#ifdef HAVE_NDO_XDP +bool bnxt_rx_xdp(struct bnxt *bp, struct bnxt_rx_ring_info *rxr, u16 cons, + struct page *page, u8 **data_ptr, unsigned int *len, + u8 *event); +#else +bool bnxt_rx_xdp(struct bnxt *bp, struct bnxt_rx_ring_info *rxr, u16 cons, + void *page, u8 **data_ptr, unsigned int *len, + u8 *event); +#endif +int bnxt_xdp(struct net_device *dev, struct netdev_xdp *xdp); + +#endif only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/Kconfig +++ linux-raspi2-4.4.0/ubuntu/opennsl/Kconfig @@ -0,0 +1,23 @@ +# +# OpenNSL configuration +# + +menuconfig OPENNSL + bool "OpenNSL options" + depends on NET + +if OPENNSL +config OPENNSL_KERNEL_BDE + default y + tristate "OpenNSL kernel BDE" + +config OPENNSL_BCM_KNET + default y + depends on OPENNSL_KERNEL_BDE + tristate "OpenNSL KNET support" + +config OPENNSL_USER_BDE + default y + depends on OPENNSL_KERNEL_BDE + tristate "OpenNSL user BDE" +endif only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/Makefile +++ linux-raspi2-4.4.0/ubuntu/opennsl/Makefile @@ -0,0 +1,43 @@ +# +# Makefile for OpenNSL drivers +# + +SDK=OpenNSL/sdk-6.5.10-gpl-modules +OP=ubuntu/opennsl/$(SDK) + +ccflags-y += \ + -I$(OP)/include \ + -I$(OP)/systems/bde/linux/include \ + -I$(OP)/systems/bde/shared/include \ + -I$(OP)/systems/linux/kernel/modules/include \ + -DLONGS_ARE_64BITS \ + -DPTRS_ARE_64BITS \ + -DSAL_SPL_LOCK_ON_IRQ \ + -DSYS_BE_PIO=0 -DSYS_BE_PACKET=0 -DSYS_BE_OTHER=0 \ + -DLE_HOST=1 -DSAL_BDE_DMA_MEM_DEFAULT=16 + +obj-$(CONFIG_OPENNSL_BCM_KNET) += linux-bcm-knet.o + +linux-bcm-knet-objs := \ + $(SDK)/systems/linux/kernel/modules/bcm-knet/bcm-knet.o \ + $(SDK)/systems/linux/kernel/modules/shared/gmodule.o \ + +obj-$(CONFIG_OPENNSL_KERNEL_BDE) += linux-kernel-bde.o + +linux-kernel-bde-objs := \ + $(SDK)/systems/bde/linux/kernel/linux_dma.o \ + $(SDK)/systems/bde/linux/kernel/linux-kernel-bde.o \ + $(SDK)/systems/bde/linux/kernel/linux_shbde.o \ + $(SDK)/systems/bde/linux/shared/mpool.o \ + $(SDK)/systems/bde/shared/shbde_iproc.o \ + $(SDK)/systems/bde/shared/shbde_mdio.o \ + $(SDK)/systems/bde/shared/shbde_pci.o \ + $(SDK)/systems/linux/kernel/modules/shared/gmodule.o \ + +obj-$(CONFIG_OPENNSL_USER_BDE) += linux-user-bde.o + +linux-user-bde-objs := \ + $(SDK)/systems/bde/linux/user/kernel/linux-user-bde.o \ + $(SDK)/systems/linux/kernel/modules/shared/ksal.o \ + $(SDK)/systems/linux/kernel/modules/shared/gmodule.o \ + only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/LEGAL_TERMS +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/LEGAL_TERMS @@ -0,0 +1,16 @@ +The software content under this Broadcom Switch / OpenNSL is divided into two +parts, and each part has its respective license. + +One portion of the software is Broadcom Switch APIs is governed by the +Apache 2.0 license. It is located at +https://github.com/Broadcom-Switch/OpenNSL/Legal/LICENSE-Apache2. +Such open source software will also expressly reference the Apache 2.0 +license at the beginning of the software file. + +The other portion of the software is called Broadcom Advanced Switch APIs. +This software is governed by the Broadcom Advanced Switch APIs license. +This license is set out in the +https://github.com/Broadcom-Switch/OpenNSL/Legal/LICENSE-Adv file. + +Copyright 2015-2016 Broadcom Corporation. All rights reserved. + only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/Legal/LICENSE-Apache2 +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/Legal/LICENSE-Apache2 @@ -0,0 +1,174 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/README.md +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/README.md @@ -0,0 +1,27 @@ +OpenNSL +====== +OpenNSL 3.1.0.x Switch Specification and Software + +Overview +======== + +Open Network Switch Layer (OpenNSL) is a library of network switch APIs that +is openly available for programming Broadcom network switch silicon based +platforms. These open APIs enable development of networking application +software based on Broadcom network switch architecture based platforms. + +Documentation +============= + +Detailed documentation can be found at http://Broadcom-Switch.github.io/OpenNSL/doc/html/index.html. + +Legal +===== + +Please see LEGAL_TERMS for the use of and access of the Broadcom-Switch Page + +License +======= + +Licenses for the software are available at the applicable level of the +software repository under the "LICENSE" file only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/RELEASE +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/RELEASE @@ -0,0 +1 @@ +opennsl-3.1.0.17 only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/sal/commdefs.h +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/include/sal/commdefs.h @@ -0,0 +1,27 @@ +/********************************************************************* + * + * (C) Copyright Broadcom Corporation 2013-2016 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + ******************************************************************** + * File: commdefs.h + * Details: OpenNSL specific defines and options + *******************************************************************/ + +#ifndef _SAL_COMMDEFS_H +#define _SAL_COMMDEFS_H + +#define LIB_DLL_EXPORTED __attribute__((__visibility__("default"))) + +#endif /* !_SAL_COMMDEFS_H */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/sal/compiler.h +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/include/sal/compiler.h @@ -0,0 +1,602 @@ +/********************************************************************* + * + * (C) Copyright Broadcom Corporation 2013-2016 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + ******************************************************************** + * File: compiler.h + * Details: Compiler specific defines and options + *******************************************************************/ + +#ifndef _SAL_COMPILER_H +#define _SAL_COMPILER_H + +/* + * Define attributes according to compiler. + * Currently we have used GNU C, Diab Data, and Borland compilers. + */ + +#define COMPILER_HAS_CONST +#define COMPILER_HAS_STATIC + +#ifndef __KERNEL__ +#define COMPILER_HAS_DOUBLE +#endif + +/* + * Return a string containing the current FILE:LINE location in the code. + * + */ +#ifndef FILE_LINE_STRING + +#define __STRINGIFY(x) #x +#define _STRINGIFY(x) __STRINGIFY(x) + +#define FILE_LINE_STRING() (__FILE__ ":" _STRINGIFY(__LINE__)) + +#endif /* FILE_LINE_STRING */ + + +#if defined(__GNUC__) && !defined(__PEDANTIC__) + +#define COMPILER_HAS_LONGLONG +#if defined(VXWORKS) && ((CPU == PPC860) || (CPU == PPC603) || (CPU == PPC32)) +/* + * WRS T2 (Cygnus 2.7.2) PPC compiler can't handle 64-bit properly. + * It generates bad code for shift by 32. It also generates false + * "variable might be used initialized" warnings for COMPILER_ZERO. + */ +#if (VX_VERSION == 55) || (VX_VERSION >= 62) +# define COMPILER_HAS_LONGLONG_SHIFT +#else +# undef COMPILER_HAS_LONGLONG_SHIFT +#endif +#else +# define COMPILER_HAS_LONGLONG_SHIFT +#endif +#define COMPILER_HAS_LONGLONG_ADDSUB +#define COMPILER_HAS_LONGLONG_MUL +#define COMPILER_HAS_LONGLONG_DIV +#define COMPILER_HAS_LONGLONG_ANDOR +#define COMPILER_HAS_LONGLONG_COMPARE + +#if ((__GNUC__ * 10000) + (__GNUC_MINOR__ * 100) + __GNUC_PATCHLEVEL__) >= 30201 +/* gcc 3.2.1 is the earliest version known to support the format attribute + when applied to function pointers. gcc 3.0.0 is known to *not* support + this. */ +#define COMPILER_HAS_FUNCTION_POINTER_FORMAT_ATTRIBUTE +#endif + +#ifndef __STRICT_ANSI__ +#define COMPILER_HAS_INLINE +#endif + +#define COMPILER_ATTRIBUTE(_a) __attribute__ (_a) +#define COMPILER_REFERENCE(_a) ((void)(_a)) +#define FUNCTION_NAME() (__FUNCTION__) + +#elif (defined(__DCC__) && (__DCC__ == 1)) && !defined(__PEDANTIC__) + +#define COMPILER_HAS_LONGLONG +#define COMPILER_HAS_LONGLONG_SHIFT +#define COMPILER_HAS_LONGLONG_ADDSUB +#define COMPILER_HAS_LONGLONG_MUL +#define COMPILER_HAS_LONGLONG_DIV +#define COMPILER_HAS_LONGLONG_ANDOR +#define COMPILER_HAS_LONGLONG_COMPARE + +#define COMPILER_ATTRIBUTE(_a) +#define COMPILER_REFERENCE(_a) ((void)(_a)) + +#if (defined(DIAB_VER)) && (DIAB_VER == 4) +/* Older versions of DCC do not support __FUNCTION__ */ +#define FUNCTION_NAME() FILE_LINE_STRING() +#else +#define FUNCTION_NAME() (__FUNCTION__) +#endif + +#else /* !defined(__GNUC__) */ + +#define COMPILER_ATTRIBUTE(_a) +#define COMPILER_REFERENCE(_a) ((void)(_a)) + +#ifndef FUNCTION_NAME +/* + * No portable ANSI method to accomplish this. + * Just return the location in the code instead. + */ +#define FUNCTION_NAME() FILE_LINE_STRING() + +#endif /* FUNCTION_NAME */ + +#endif /* !defined(__GNUC__) */ + +/* GreenHills compiler */ +#ifdef GHS +#define COMPILER_HAS_LONGLONG +#define COMPILER_HAS_LONGLONG_SHIFT +#define COMPILER_HAS_LONGLONG_ADDSUB +#define COMPILER_HAS_LONGLONG_MUL +#define COMPILER_HAS_LONGLONG_DIV +#define COMPILER_HAS_LONGLONG_ANDOR +#define COMPILER_HAS_LONGLONG_COMPARE + +/* GreenHills compiler has __FUNCTION__ built-in macro not __func__ */ +#define __func__ __FUNCTION__ +#endif + +/* + * __attribute__ for function pointers + */ +#ifdef COMPILER_HAS_FUNCTION_POINTER_FORMAT_ATTRIBUTE +#define COMPILER_ATTRIBUTE_FUNCTION_POINTER(_a) COMPILER_ATTRIBUTE(_a) +#else +#define COMPILER_ATTRIBUTE_FUNCTION_POINTER(_a) +#endif + + +#ifdef __PEDANTIC__ +#define COMPILER_STRING_CONST_LIMIT 509 +#endif + +/* + * Compiler overrides that can be configured in Make.local + */ +#ifdef COMPILER_OVERRIDE_NO_LONGLONG +#undef COMPILER_HAS_LONGLONG +#undef COMPILER_HAS_LONGLONG_SHIFT +#undef COMPILER_HAS_LONGLONG_ADDSUB +#undef COMPILER_HAS_LONGLONG_MUL +#undef COMPILER_HAS_LONGLONG_DIV +#undef COMPILER_HAS_LONGLONG_ANDOR +#undef COMPILER_HAS_LONGLONG_COMPARE +#endif + +#ifdef COMPILER_OVERRIDE_NO_DOUBLE +#undef COMPILER_HAS_DOUBLE +#endif + +#ifdef COMPILER_OVERRIDE_NO_INLINE +#undef COMPILER_HAS_INLINE +#endif + +#ifdef COMPILER_OVERRIDE_NO_CONST +#undef COMPILER_HAS_CONST +#endif + +#ifdef COMPILER_OVERRIDE_NO_STATIC +#undef COMPILER_HAS_STATIC +#endif + +/* + * 64-bit word order + */ + +#ifdef __BORLAND__ +/* The Borland cpp does not expand correctly in the macros below...sigh */ +static int u64_MSW = 1; +static int u64_LSW = 0; +#else +# ifdef BE_HOST +# define u64_MSW 0 +# define u64_LSW 1 +# else /* LE_HOST */ +# define u64_MSW 1 +# define u64_LSW 0 +# endif /* LE_HOST */ +#endif /* __BORLAND__ */ + +/* + * 64-bit type + */ + +#ifdef LONGS_ARE_64BITS + +#define COMPILER_64BIT +#define COMPILER_UINT64 unsigned long +#define COMPILER_INT64 long +#define u64_H(v) (((uint32 *) &(v))[u64_MSW]) +#define u64_L(v) (((uint32 *) &(v))[u64_LSW]) +#define COMPILER_64_INIT(_hi, _lo) ( (((long) (_hi)) << 32) | (_lo)) + +#else /* !LONGS_ARE_64BITS */ + +#ifdef COMPILER_HAS_LONGLONG + +#define COMPILER_64BIT +#define COMPILER_UINT64 unsigned long long +#define COMPILER_INT64 long long +#define u64_H(v) (((uint32 *) &(v))[u64_MSW]) +#define u64_L(v) (((uint32 *) &(v))[u64_LSW]) +#define COMPILER_64_INIT(_hi, _lo) ( (((long long) (_hi)) << 32) | (_lo)) + +#else /* !COMPILER_HAS_LONGLONG */ +typedef struct sal_uint64_s { unsigned int u64_w[2]; } sal_uint64_t; +typedef struct sal_int64_s { int u64_w[2]; } sal_int64_t; + +#define COMPILER_UINT64 sal_uint64_t +#define COMPILER_INT64 sal_int64_t +#define u64_H(v) ((v).u64_w[u64_MSW]) +#define u64_L(v) ((v).u64_w[u64_LSW]) + +#ifdef BE_HOST +#define COMPILER_64_INIT(_hi, _lo) { { _hi, _lo } } +#else +#define COMPILER_64_INIT(_hi, _lo) { { _lo, _hi } } +#endif + +#endif /* !COMPILER_HAS_LONGLONG */ +#endif /* LONGS_ARE_64BITS */ + +/* + * 32-/64-bit type conversions + */ + +#ifdef COMPILER_HAS_LONGLONG_SHIFT + +#define COMPILER_64_TO_32_LO(dst, src) ((dst) = (uint32) (src)) +#define COMPILER_64_TO_32_HI(dst, src) ((dst) = (uint32) ((src) >> 32)) +#define COMPILER_64_HI(src) ((uint32) ((src) >> 32)) +#define COMPILER_64_LO(src) ((uint32) (src)) +#define COMPILER_64_ZERO(dst) ((dst) = 0) +#define COMPILER_64_IS_ZERO(src) ((src) == 0) + + +#define COMPILER_64_SET(dst, src_hi, src_lo) \ + ((dst) = (((uint64) ((uint32)(src_hi))) << 32) | ((uint64) ((uint32)(src_lo)))) + +#else /* !COMPILER_HAS_LONGLONG_SHIFT */ + +#define COMPILER_64_TO_32_LO(dst, src) ((dst) = u64_L(src)) +#define COMPILER_64_TO_32_HI(dst, src) ((dst) = u64_H(src)) +#define COMPILER_64_HI(src) u64_H(src) +#define COMPILER_64_LO(src) u64_L(src) +#define COMPILER_64_ZERO(dst) (u64_H(dst) = u64_L(dst) = 0) +#define COMPILER_64_IS_ZERO(src) (u64_H(src) == 0 && u64_L(src) == 0) + +#define COMPILER_64_SET(dst, src_hi, src_lo) \ + do { \ + u64_H(dst) = (src_hi); \ + u64_L(dst) = (src_lo); \ + } while (0) + +#endif /* !COMPILER_HAS_LONGLONG_SHIFT */ + +/* + * 64-bit addition and subtraction + */ + +#ifdef COMPILER_HAS_LONGLONG_ADDSUB + +#define COMPILER_64_ADD_64(dst, src) ((dst) += (src)) +#define COMPILER_64_ADD_32(dst, src) ((dst) += (src)) +#define COMPILER_64_SUB_64(dst, src) ((dst) -= (src)) +#define COMPILER_64_SUB_32(dst, src) ((dst) -= (src)) + +#else /* !COMPILER_HAS_LONGLONG_ADDSUB */ + +#define COMPILER_64_ADD_64(dst, src) \ + do { \ + uint32 __t = u64_L(dst); \ + u64_L(dst) += u64_L(src); \ + if (u64_L(dst) < __t) { \ + u64_H(dst) += u64_H(src) + 1; \ + } else { \ + u64_H(dst) += u64_H(src); \ + } \ + } while (0) +#define COMPILER_64_ADD_32(dst, src) \ + do { \ + uint32 __t = u64_L(dst); \ + u64_L(dst) += (src); \ + if (u64_L(dst) < __t) { \ + u64_H(dst)++; \ + } \ + } while (0) +#define COMPILER_64_SUB_64(dst, src) \ + do { \ + uint32 __t = u64_L(dst); \ + u64_L(dst) -= u64_L(src); \ + if (u64_L(dst) > __t) { \ + u64_H(dst) -= u64_H(src) + 1; \ + } else { \ + u64_H(dst) -= u64_H(src); \ + } \ + } while (0) +#define COMPILER_64_SUB_32(dst, src) \ + do { \ + uint32 __t = u64_L(dst); \ + u64_L(dst) -= (src); \ + if (u64_L(dst) > __t) { \ + u64_H(dst)--; \ + } \ + } while (0) + +#endif /* !COMPILER_HAS_LONGLONG_ADDSUB */ + +/* + * 64-bit multiplication + */ + +#ifdef COMPILER_HAS_LONGLONG_MUL + +#define COMPILER_64_UMUL_32(dst, src) ((dst) *= (src)) + +#else /* !COMPILER_HAS_LONGLONG_MUL */ + +/* Multiply of unsigned 64-bit and unsigned 32-bit integers, no overflow handling */ +#define COMPILER_64_UMUL_32(dst, src) \ + do { \ + uint32 __d[4]; \ + uint32 __s[2]; \ + uint32 __r[4]; \ + uint32 __t[2]; \ + __d[0] = u64_L(dst) & 0xffff; \ + __d[1] = u64_L(dst) >> 16; \ + __d[2] = u64_H(dst) & 0xffff; \ + __d[3] = u64_H(dst) >> 16; \ + __s[0] = (src) & 0xffff; \ + __s[1] = (src) >> 16; \ + __r[0] = __d[0] * __s[0]; \ + __r[1] = __d[1] * __s[0] + __d[0] * __s[1]; \ + __r[2] = __d[2] * __s[0] + __d[1] * __s[1]; \ + __r[3] = __d[3] * __s[0] + __d[2] * __s[1]; \ + __t[0] = __r[1] << 16; \ + __t[1] = __t[0] + __r[0]; \ + COMPILER_64_SET((dst), (__r[3] << 16) + __r[2] + (__r[1] >> 16) + (__t[1] < __t[0] ? 1 : 0), \ + __t[1] \ + ); \ + } while (0); + +#endif /* !COMPILER_HAS_LONGLONG_MUL */ + +/* + * 64-bit logical operations + */ + +#ifdef COMPILER_HAS_LONGLONG_ANDOR + +#define COMPILER_64_AND(dst, src) ((dst) &= (src)) +#define COMPILER_64_OR(dst, src) ((dst) |= (src)) +#define COMPILER_64_XOR(dst, src) ((dst) ^= (src)) +#define COMPILER_64_NOT(dst) ((dst) = ~(dst)) + +#else /* !COMPILER_HAS_LONGLONG_ANDOR */ + +#define COMPILER_64_AND(dst, src) \ + do { \ + u64_H((dst)) &= u64_H((src)); \ + u64_L((dst)) &= u64_L((src)); \ + } while (0) +#define COMPILER_64_OR(dst, src) \ + do { \ + u64_H((dst)) |= u64_H((src)); \ + u64_L((dst)) |= u64_L((src)); \ + } while (0) +#define COMPILER_64_XOR(dst, src) \ + do { \ + u64_H((dst)) ^= u64_H((src)); \ + u64_L((dst)) ^= u64_L((src)); \ + } while (0) +#define COMPILER_64_NOT(dst) \ + do { \ + u64_H((dst)) = ~u64_H((dst)); \ + u64_L((dst)) = ~u64_L((dst)); \ + } while (0) + +#endif /* !COMPILER_HAS_LONGLONG_ANDOR */ + +#define COMPILER_64_ALLONES(dst) \ + COMPILER_64_ZERO((dst));\ + COMPILER_64_NOT((dst)) + +/* + * 64-bit shift + */ + +#ifdef COMPILER_HAS_LONGLONG_SHIFT + +#define COMPILER_64_SHL(dst, bits) ((dst) <<= (bits)) +#define COMPILER_64_SHR(dst, bits) ((dst) >>= (bits)) + +#define COMPILER_64_BITTEST(val, n) \ + ((((uint64)val) & (((uint64) 1)<<(n))) != ((uint64) 0)) + +#else /* !COMPILER_HAS_LONGLONG_SHIFT */ + +#define COMPILER_64_SHL(dst, bits) \ + do { \ + int __b = (bits); \ + if (__b >= 32) { \ + u64_H(dst) = u64_L(dst); \ + u64_L(dst) = 0; \ + __b -= 32; \ + } \ + u64_H(dst) = (u64_H(dst) << __b) | \ + (__b ? u64_L(dst) >> (32 - __b) : 0); \ + u64_L(dst) <<= __b; \ + } while (0) + +#define COMPILER_64_SHR(dst, bits) \ + do { \ + int __b = (bits); \ + if (__b >= 32) { \ + u64_L(dst) = u64_H(dst); \ + u64_H(dst) = 0; \ + __b -= 32; \ + } \ + u64_L(dst) = (u64_L(dst) >> __b) | \ + (__b ? u64_H(dst) << (32 - __b) : 0); \ + u64_H(dst) >>= __b; \ + } while (0) + +#define COMPILER_64_BITTEST(val, n) \ + ( (((n) < 32) && (u64_L(val) & (1 << (n)))) || \ + (((n) >= 32) && (u64_H(val) & (1 << ((n) - 32)))) ) + +#endif /* !COMPILER_HAS_LONGLONG_SHIFT */ + +/* + * 64-bit compare operations + */ + +#ifdef COMPILER_HAS_LONGLONG_COMPARE + +#define COMPILER_64_EQ(src1, src2) ((src1) == (src2)) +#define COMPILER_64_NE(src1, src2) ((src1) != (src2)) +#define COMPILER_64_LT(src1, src2) ((src1) < (src2)) +#define COMPILER_64_LE(src1, src2) ((src1) <= (src2)) +#define COMPILER_64_GT(src1, src2) ((src1) > (src2)) +#define COMPILER_64_GE(src1, src2) ((src1) >= (src2)) + +#else /* !COMPILER_HAS_LONGLONG_COMPARE */ + +#define COMPILER_64_EQ(src1, src2) (u64_H(src1) == u64_H(src2) && \ + u64_L(src1) == u64_L(src2)) +#define COMPILER_64_NE(src1, src2) (u64_H(src1) != u64_H(src2) || \ + u64_L(src1) != u64_L(src2)) +#define COMPILER_64_LT(src1, src2) (u64_H(src1) < u64_H(src2) || \ + ((u64_H(src1) == u64_H(src2) && \ + u64_L(src1) < u64_L(src2)))) +#define COMPILER_64_LE(src1, src2) (u64_H(src1) < u64_H(src2) || \ + ((u64_H(src1) == u64_H(src2) && \ + u64_L(src1) <= u64_L(src2)))) +#define COMPILER_64_GT(src1, src2) (u64_H(src1) > u64_H(src2) || \ + ((u64_H(src1) == u64_H(src2) && \ + u64_L(src1) > u64_L(src2)))) +#define COMPILER_64_GE(src1, src2) (u64_H(src1) > u64_H(src2) || \ + ((u64_H(src1) == u64_H(src2) && \ + u64_L(src1) >= u64_L(src2)))) + +#endif /* !COMPILER_HAS_LONGLONG_COMPARE */ + +/* Set up a mask of width bits offset lft_shft. No error checking */ +#define COMPILER_64_MASK_CREATE(dst, width, lft_shift) \ + do { \ + COMPILER_64_ALLONES(dst); \ + COMPILER_64_SHR((dst), (64 - (width))); \ + COMPILER_64_SHL((dst), (lft_shift)); \ + } while (0) + +#define COMPILER_64_DELTA(src, last, new)\ + do { \ + COMPILER_64_ZERO(src);\ + COMPILER_64_ADD_64(src, new);\ + COMPILER_64_SUB_64(src, last);\ + } while(0) + +#define COMPILER_64_BITSET(dst, n) \ + do { \ + uint64 temp64; \ + COMPILER_64_SET(temp64, 0, 1); \ + COMPILER_64_SHL(temp64, n); \ + COMPILER_64_OR(dst, temp64); \ + } while(0) + +#define COMPILER_64_BITCLR(dst, n) \ + do { \ + uint64 temp64; \ + COMPILER_64_SET(temp64, 0, 1); \ + COMPILER_64_SHL(temp64, n); \ + COMPILER_64_NOT(temp64); \ + COMPILER_64_AND(dst, temp64); \ + } while(0) + + + /* + * 64-bit division + */ + +#if defined COMPILER_HAS_LONGLONG_DIV && ! defined (__KERNEL__) + +#define COMPILER_64_UDIV_64(dst, src) ((dst) /= (src)) + +#else /* !(defined COMPILER_HAS_LONGLONG_DIV && ! defined (__KERNEL__)) */ + +/* Divide of unsigned 64-bit and unsigned 64-bit integers, no overflow handling */ +#define COMPILER_64_UDIV_64(dst, src) \ + do { \ + uint32 q_hi = 0, q_lo = 0; \ + while( COMPILER_64_GE(dst, src) ) \ + { \ + COMPILER_64_SUB_64(dst, src); \ + if (++q_lo == 0) ++q_hi; \ + } \ + COMPILER_64_SET(dst, q_hi, q_lo); \ + } while (0) + +#endif /* defined COMPILER_HAS_LONGLONG_DIV && ! defined (__KERNEL__) */ +/* + * Some macros for double support + * + * You can use the COMPILER_DOUBLE macro + * if you would prefer double precision, but it is not necessary. + * If you need more control (or you need to print :), then + * then you should use the COMPILER_HAS_DOUBLE macro explicitly. + * + */ +#ifdef COMPILER_HAS_DOUBLE +#define COMPILER_DOUBLE double +#define COMPILER_DOUBLE_FORMAT "f" +#define COMPILER_64_TO_DOUBLE(f, i64) \ + ((f) = COMPILER_64_HI(i64) * 4294967296.0 + COMPILER_64_LO(i64)) +#define COMPILER_32_TO_DOUBLE(f, i32) \ + ((f) = (double) (i32)) +#else +#define COMPILER_DOUBLE uint32 +#define COMPILER_DOUBLE_FORMAT "u" +#define COMPILER_64_TO_DOUBLE(f, i64) ((f) = COMPILER_64_LO(i64)) +#define COMPILER_32_TO_DOUBLE(f, i32) ((f) = (i32)) +#endif + +/* + * Version of inline that is turned off for compilers that do + * not support inline. + */ + +#ifndef INLINE +# ifdef COMPILER_HAS_INLINE +# define INLINE inline +# else +# define INLINE +# endif +#endif /* !INLINE */ + +/* + * Version of const that is turned off for compilers that do + * not support const. + */ + +#ifndef CONST +# ifdef COMPILER_HAS_CONST +# define CONST const +# else +# define CONST +# endif +#endif /* !CONST */ + +/* + * Some compilers/linkers/OSs do not put static symbols in the + * symbol table, which can make debugging harder. + */ + +#ifndef STATIC +# if defined(COMPILER_HAS_STATIC) +# define STATIC static +# else +# define STATIC +# endif +#endif /* !STATIC */ + +#endif /* !_SAL_COMPILER_H */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/sal/driver.h +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/include/sal/driver.h @@ -0,0 +1,96 @@ +/********************************************************************* +* +* (C) Copyright Broadcom Corporation 2013-2017 +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +* +********************************************************************** +* +* \file driver.h +* +* \brief This file contains utility functions called externally +* +**********************************************************************/ +#ifndef DRIVER_H +#define DRIVER_H + +#define OPENNSL_F_FAST_BOOT 0x00000001 /* Fast boot mode */ + +typedef struct opennsl_config_s +{ + char *cfg_fname; /* Configuration file name along with the path */ + unsigned int flags; /* OpenNSL boot up flags */ + char *wb_fname; /* File to store warmboot configuration * + * along with the path */ + char *rmcfg_fname; /* RM config file name along with the path */ + char *cfg_post_fname; /* Post init configuration file name * + * along with the path */ + unsigned int opennsl_flags; /* OpenNSL flags */ +} opennsl_init_t; + +/*****************************************************************//** +* \brief Function to initialize the switch. +* +* \param init [IN] pointer to structure that contains path to +* platform customization config file, boot flags. +* +* \return OPENNSL_E_XXX OpenNSL API return code +********************************************************************/ +extern int opennsl_driver_init(opennsl_init_t *init); + +/*****************************************************************//** +* \brief Function to free up the resources and exit the driver +* +* \return OPENNSL_E_XXX OpenNSL API return code +********************************************************************/ +extern int opennsl_driver_exit(); + +/**************************************************************************//** + * \brief To get platform boot flags + * + * \return unsigned int Boot flags + *****************************************************************************/ +extern unsigned int opennsl_driver_boot_flags_get(void); + +#ifdef INCLUDE_DIAG_SHELL +/*****************************************************************//** +* \brief Bringup diagnostic shell prompt and process the input commands. +* +* \return OPENNSL_E_XXX OpenNSL API return code +********************************************************************/ +extern int opennsl_driver_shell(); + +/*****************************************************************//** +* \brief Process diagnostic shell command. +* +* \param commandBuf [IN] pointer to hold the diagnostic shell command +* +* \return OPENNSL_E_XXX OpenNSL API return code +********************************************************************/ +extern int opennsl_driver_process_command(char *commandBuf); +#endif + +/*****************************************************************//** +* \brief Get a line from a user with editing +* +* \param prompt [IN] prompt string +* +* \return char* NULL, if the line is empty +* empty string, if the line is blank +* text of the line read, otherwise. +********************************************************************/ +extern char *readline(const char *prompt); + +extern void platform_phy_cleanup(); + +#endif /* DRIVER_H */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/sal/types.h +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/include/sal/types.h @@ -0,0 +1,236 @@ +/********************************************************************* + * + * (C) Copyright Broadcom Corporation 2013-2016 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + ********************************************************************* + * File: types.h + * Details: Type definitions + ********************************************************************/ + +#ifndef _SAL_TYPES_H +#define _SAL_TYPES_H + +#include + +/* + * Define platform-independent types + */ + +#ifndef TRUE +#define TRUE 1 +#endif + +#ifndef FALSE +#define FALSE 0 +#endif + +#ifndef NULL +#define NULL 0 +#endif + +#ifndef DONT_CARE +#define DONT_CARE 0 +#endif + +#define VOL volatile + +/* + * Define unsigned and signed integers with guaranteed sizes. + * Adjust if your compiler uses different sizes for short or int. + */ + +typedef unsigned char uint8; /* 8-bit quantity */ +typedef unsigned short uint16; /* 16-bit quantity */ +typedef unsigned int uint32; /* 32-bit quantity */ +typedef COMPILER_UINT64 uint64; /* 64-bit quantity */ + +typedef signed char int8; /* 8-bit quantity */ +typedef signed short int16; /* 16-bit quantity */ +typedef signed int int32; /* 32-bit quantity */ +typedef COMPILER_INT64 int64; /* 64-bit quantity */ + +#define BITS2BYTES(x) (((x) + 7) / 8) +#define BITS2WORDS(x) (((x) + 31) / 32) + +#define BYTES2BITS(x) ((x) * 8) +#define BYTES2WORDS(x) (((x) + 3) / 4) + +#define WORDS2BITS(x) ((x) * 32) +#define WORDS2BYTES(x) ((x) * 4) + +#define COUNTOF(ary) ((int) (sizeof (ary) / sizeof ((ary)[0]))) + +typedef uint32 sal_paddr_t; /* Physical address (PCI address) */ + +#ifdef PTRS_ARE_64BITS +typedef uint64 sal_vaddr_t; /* Virtual address (Host address) */ +#define PTR_TO_INT(x) ((uint32)(((sal_vaddr_t)(x))&0xFFFFFFFF)) +#define PTR_HI_TO_INT(x) ((uint32)((((sal_vaddr_t)(x))>>32)&0xFFFFFFFF)) + +#else +typedef uint32 sal_vaddr_t; /* Virtual address (Host address) */ +#define PTR_TO_INT(x) ((uint32)(x)) +#define PTR_HI_TO_INT(x) (0) +#endif + +#define INT_TO_PTR(x) ((void *)((sal_vaddr_t)(x))) + +#define PTR_TO_UINTPTR(x) ((sal_vaddr_t)(x)) +#define UINTPTR_TO_PTR(x) ((void *)(x)) + +typedef union +{ + uint8 u8; + uint16 u16; + uint32 u32; + uint64 u64; + sal_paddr_t paddr; + sal_vaddr_t vaddr; + void *ptr; +} any_t; + +typedef uint8 sal_mac_addr_t[6]; /* MAC address */ +typedef uint32 sal_ip_addr_t; /* IP Address */ + +/* sal_mac_addr_t mac; Just generate a list of the macs for display */ +#define SAL_MAC_ADDR_LIST(mac) \ + mac[0], mac[1], mac[2], mac[3], mac[4], mac[5] + +#define SAL_MACADDR_STR_LEN 18 /* Formatted MAC address */ +#define SAL_IPADDR_STR_LEN 16 /* Formatted IP address */ + + +/* Adjust justification for uint32 writes to fields */ +/* dst is an array name of type uint32 [] */ +#define SAL_MAC_ADDR_TO_UINT32(mac, dst) do {\ + (dst)[0] = (((uint32)(mac)[2]) << 24 | \ + ((uint32)(mac)[3]) << 16 | \ + ((uint32)(mac)[4]) << 8 | \ + ((uint32)(mac)[5])); \ + (dst)[1] = (((uint32)(mac)[0]) << 8 | \ + ((uint32)(mac)[1])); \ + } while (0) + +/* Adjust justification for uint32 writes to fields */ +/* src is an array name of type uint32 [] */ +#define SAL_MAC_ADDR_FROM_UINT32(mac, src) do {\ + (mac)[0] = (uint8) ((src)[1] >> 8 & 0xff); \ + (mac)[1] = (uint8) ((src)[1] & 0xff); \ + (mac)[2] = (uint8) ((src)[0] >> 24); \ + (mac)[3] = (uint8) ((src)[0] >> 16 & 0xff); \ + (mac)[4] = (uint8) ((src)[0] >> 8 & 0xff); \ + (mac)[5] = (uint8) ((src)[0] & 0xff); \ + } while (0) + + +/* dst is a uint64 */ +#define SAL_MAC_ADDR_TO_UINT64(mac, dst) do { \ + uint32 _val[2]; \ + SAL_MAC_ADDR_TO_UINT32(mac, _val); \ + COMPILER_64_SET(dst, _val[1], _val[0]); \ + } while (0) + +/* src is a uint64 */ +#define SAL_MAC_ADDR_FROM_UINT64(mac, src) do { \ + uint32 _val[2]; \ + COMPILER_64_TO_32_LO(_val[0], src); \ + COMPILER_64_TO_32_HI(_val[1], src); \ + SAL_MAC_ADDR_FROM_UINT32(mac, _val); \ + } while (0) + + +/* Adjust IP6 justification for uint32 field accesses */ +/* + * These macros are used on IP6 "half addresses", being + * either the "upper" 64 bits or the "lower" 64 bits of + * an IPv6 address. + */ + +/* dst is an array name of type uint32 [] */ +#define SAL_IP6_ADDR_HALF_TO_UINT32(ip6, dst) do {\ + (dst)[1] = (((uint32)(ip6)[0]) << 24 | \ + ((uint32)(ip6)[1]) << 16 | \ + ((uint32)(ip6)[2]) << 8 | \ + ((uint32)(ip6)[3])); \ + (dst)[0] = (((uint32)(ip6)[4]) << 24 | \ + ((uint32)(ip6)[5]) << 16 | \ + ((uint32)(ip6)[6]) << 8 | \ + ((uint32)(ip6)[7])); \ + } while (0) + +/* src is an array name of type uint32 [] */ +#define SAL_IP6_ADDR_HALF_FROM_UINT32(ip6, src) do {\ + (ip6)[0] = (uint8) ((src)[1] >> 24); \ + (ip6)[1] = (uint8) ((src)[1] >> 16 & 0xff); \ + (ip6)[2] = (uint8) ((src)[1] >> 8 & 0xff); \ + (ip6)[3] = (uint8) ((src)[1] & 0xff); \ + (ip6)[4] = (uint8) ((src)[0] >> 24); \ + (ip6)[5] = (uint8) ((src)[0] >> 16 & 0xff); \ + (ip6)[6] = (uint8) ((src)[0] >> 8 & 0xff); \ + (ip6)[7] = (uint8) ((src)[0] & 0xff); \ + } while (0) + +/* + * These macros are used on full 128-bit IP6 addresses. + */ + +/* dst is an array name of type uint32 [] */ +#define SAL_IP6_ADDR_TO_UINT32(ip6, dst) do {\ + SAL_IP6_ADDR_HALF_TO_UINT32(&((ip6)[8]), (dst)); \ + SAL_IP6_ADDR_HALF_TO_UINT32((ip6), &((dst)[2])); \ + } while (0) + +/* src is an array name of type uint32 [] */ +#define SAL_IP6_ADDR_FROM_UINT32(ip6, src) do {\ + SAL_IP6_ADDR_HALF_FROM_UINT32(&((ip6)[8]), (src)); \ + SAL_IP6_ADDR_HALF_FROM_UINT32((ip6), &((src)[2])); \ + } while (0) + + +/* Device bus types */ +#define SAL_PCI_DEV_TYPE 0x00001 /* PCI device */ +#define SAL_SPI_DEV_TYPE 0x00002 /* SPI device */ +#define SAL_EB_DEV_TYPE 0x00004 /* EB device */ +#define SAL_ICS_DEV_TYPE 0x00008 /* ICS device */ +#define SAL_MII_DEV_TYPE 0x00010 /* MII device */ +#define SAL_RCPU_DEV_TYPE 0x00020 /* RCPU device */ +#define SAL_I2C_DEV_TYPE 0x00040 /* I2C device */ +#define SAL_AXI_DEV_TYPE 0x00080 /* AXI device */ +#define SAL_EMMI_DEV_TYPE 0x10000 /* EMMI device */ +#define SAL_DEV_BUS_TYPE_MASK 0xf00ff /* Odd for historical reasons */ + +/* Device types */ +#define SAL_SWITCH_DEV_TYPE 0x00100 /* Switch device */ +#define SAL_ETHER_DEV_TYPE 0x00200 /* Ethernet device */ +#define SAL_CPU_DEV_TYPE 0x00400 /* CPU device */ +#define SAL_DEV_TYPE_MASK 0x00f00 + +/* Access types */ +#define SAL_DEV_BUS_RD_16BIT 0x01000 /* 16 bit reads on bus */ +#define SAL_DEV_BUS_WR_16BIT 0x02000 /* 16 bit writes on bus */ +#define SAL_DEV_BUS_ALT 0x04000 /* Alternate access */ +#define SAL_DEV_BUS_MSI 0x08000 /* Message-signaled interrupts */ +#define SAL_DEV_FLAG_MASK 0x0f000 + +/* BDE reserved mask (cannot be used by SAL) */ +#define SAL_DEV_BDE_MASK 0xff000000 + +/* Backward compatibility */ +#define SAL_ET_DEV_TYPE SAL_MII_DEV_TYPE + +/* Special access addresses */ +#define SAL_DEV_OP_EMMI_INIT 0x0fff1000 + +#endif /* !_SAL_TYPES_H */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/sal/version.h +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/include/sal/version.h @@ -0,0 +1,38 @@ +/************************************************************************** +* +* (C) Copyright Broadcom Limited 2013-2017 +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +* +**************************************************************************/ + +/*****************************************************************//** + * + *\file version.h + * + *\brief This file contains functions to get the build details + * + ********************************************************************/ +#ifndef _OPENNSL_VERSION_H +#define _OPENNSL_VERSION_H + +#include "sal/commdefs.h" + +/*****************************************************************//** + *\brief To get the OpenNSL version. + * + *\retval char* OpenNSL version + ********************************************************************/ +extern char* opennsl_version_get() LIB_DLL_EXPORTED; +#endif /* _OPENNSL_VERSION_H */ + only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/shared/bitop.h +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/include/shared/bitop.h @@ -0,0 +1,148 @@ +/********************************************************************* + * + * (C) Copyright Broadcom Corporation 2013-2016 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + ********************************************************************** + * File: bitop.h + * Details: Bit Array Operations + *********************************************************************/ + +#ifndef _SHR_BITOP_H +#define _SHR_BITOP_H + +#include + +/* Base type for declarations */ +#define SHR_BITDCL uint32 +#define SHR_BITWID 32 + +/* (internal) Number of SHR_BITDCLs needed to contain _max bits */ +#define _SHR_BITDCLSIZE(_max) (((_max) + SHR_BITWID - 1) / SHR_BITWID) + +/* Size for giving to malloc and memset to handle _max bits */ +#define SHR_BITALLOCSIZE(_max) (_SHR_BITDCLSIZE(_max) * sizeof (SHR_BITDCL)) + + +/* (internal) Number of SHR_BITDCLs needed to contain from start bit to start bit + range */ +#define _SHR_BITDCLSIZE_FROM_START_BIT(_start_bit, _range) (_range + _start_bit -1)/SHR_BITWID - _start_bit/SHR_BITWID + 1 + +/* Size of SHR_BITDCLs needed to contain from start bit to start bit + range. + Needed when you want to do autosync */ +#define SHR_BITALLOCSIZE_FROM_START_BIT(_start_bit, _range) (_SHR_BITDCLSIZE_FROM_START_BIT(_start_bit, _range) * sizeof (SHR_BITDCL)) + + + +/* Declare bit array _n of size _max bits */ +#define SHR_BITDCLNAME(_n, _max) SHR_BITDCL _n[_SHR_BITDCLSIZE(_max)] +/* Declare bit array _n of size _max bits, and clear it */ +#define SHR_BIT_DCL_CLR_NAME(_n, _max) SHR_BITDCL _n[_SHR_BITDCLSIZE(_max)] = {0} + +/* (internal) Generic operation macro on bit array _a, with bit _b */ +#define _SHR_BITOP(_a, _b, _op) \ + (((_a)[(_b) / SHR_BITWID]) _op (1U << ((_b) % SHR_BITWID))) + +/* Specific operations */ +#define SHR_BITGET(_a, _b) _SHR_BITOP(_a, _b, &) +#define SHR_BITSET(_a, _b) _SHR_BITOP(_a, _b, |=) +#define SHR_BITCLR(_a, _b) _SHR_BITOP(_a, _b, &= ~) +#define SHR_BITWRITE(_a, _b, _val) ((_val) ? SHR_BITSET(_a, _b) : SHR_BITCLR(_a, _b)) +#define SHR_BIT_ITER(_a, _max, _b) \ + for ((_b) = 0; (_b) < (_max); (_b)++) \ + if ((_a)[(_b) / SHR_BITWID] == 0) \ + (_b) += (SHR_BITWID - 1); \ + else if (SHR_BITGET((_a), (_b))) + + +/* clear _c bits starting from _b in bit array _a */ +extern void shr_bitop_range_clear(SHR_BITDCL *a, CONST int b, CONST int c); +#define SHR_BITCLR_RANGE(_a, _b, _c) \ + (shr_bitop_range_clear(_a, _b, _c)) + +/* set _c bits starting from _b in bit array _a */ +extern void shr_bitop_range_set(SHR_BITDCL *a, CONST int b, CONST int c); +#define SHR_BITSET_RANGE(_a, _b, _c) \ + (shr_bitop_range_set(_a, _b, _c)) + +/* + * Copy _num_bits bits from bit array _src offset _src_offset to bit array _dest offset _dest_offset + * There should be no overlap between source _src and desstination _dest + * _dest[_dest_offset:_dest_offset + _num_bits] = _src[_src_offset:_src_offset + _num_bits] + */ +extern void shr_bitop_range_copy(SHR_BITDCL *a, + CONST int b, + CONST SHR_BITDCL *c, + CONST int d, + CONST int e); +#define SHR_BITCOPY_RANGE(_dest, _dest_offset,_src, _src_offset, _num_bits) \ + (shr_bitop_range_copy(_dest, _dest_offset, _src, _src_offset, _num_bits)) + +/* Result is 0 only if all bits in the range are 0 */ +#define SHR_BITTEST_RANGE(_bits, _first, _bit_count, _result) \ + (_result) = !(shr_bitop_range_null(_bits, _first, _bit_count)) + +extern void shr_bitop_range_and(CONST SHR_BITDCL *bits1, + CONST SHR_BITDCL *bits2, + CONST int first, + CONST int bit_count, + SHR_BITDCL *dest); +extern void shr_bitop_range_or(CONST SHR_BITDCL *bits1, + CONST SHR_BITDCL *bits2, + CONST int first, + CONST int bit_count, + SHR_BITDCL *dest); +extern void shr_bitop_range_xor(CONST SHR_BITDCL *bits1, + CONST SHR_BITDCL *bits2, + CONST int first, + CONST int bit_count, + SHR_BITDCL *dest); +extern void shr_bitop_range_remove(CONST SHR_BITDCL *bits1, + CONST SHR_BITDCL *bits2, + CONST int first, + CONST int bit_count, + SHR_BITDCL *dest); + +#define SHR_BITAND_RANGE(_bits1, _bits2, _first, _bit_count, _dest) \ + (shr_bitop_range_and(_bits1, _bits2, _first, _bit_count, _dest)) + +#define SHR_BITOR_RANGE(_bits1, _bits2, _first, _bit_count, _dest) \ + (shr_bitop_range_or(_bits1, _bits2, _first, _bit_count, _dest)) + +#define SHR_BITXOR_RANGE(_bits1, _bits2, _first, _bit_count, _dest) \ + (shr_bitop_range_xor(_bits1, _bits2, _first, _bit_count, _dest)) + +#define SHR_BITREMOVE_RANGE(_bits1, _bits2, _first, _bit_count, _dest) \ + (shr_bitop_range_remove(_bits1, _bits2, _first, _bit_count, _dest)) + +extern void shr_bitop_range_negate(CONST SHR_BITDCL *bits1, + CONST int first, + CONST int bit_count, + SHR_BITDCL *dest); + +#define SHR_BITNEGATE_RANGE(_bits1, _first, _bit_count, _dest) \ + (shr_bitop_range_negate(_bits1, _first, _bit_count, _dest)) + +extern int shr_bitop_range_null(CONST SHR_BITDCL *a, CONST int first, CONST int bit_count); +extern int shr_bitop_range_eq(CONST SHR_BITDCL *bits1, CONST SHR_BITDCL *bits2, + CONST int first, CONST int range); +extern void shr_bitop_range_count(CONST SHR_BITDCL *bits, CONST int first, + CONST int range, int *count); +#define SHR_BITNULL_RANGE(_bits, _first, _range) \ + (shr_bitop_range_null(_bits, _first, _range)) +#define SHR_BITEQ_RANGE(_bits1, _bits2, _first, _range) \ + (shr_bitop_range_eq(_bits1, _bits2, _first, _range)) +#define SHR_BITCOUNT_RANGE(_bits, _count, _first, _range) \ + shr_bitop_range_count(_bits, _first, _range, &(_count)) + +#endif /* !_SHR_BITOP_H */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/shared/error.h +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/include/shared/error.h @@ -0,0 +1,125 @@ +/********************************************************************* + * + * (C) Copyright Broadcom Corporation 2013-2016 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + ********************************************************************** + * File: error.h + * Details: This file defines common error codes to be shared + * between API layers. + * + * Its contents are not used directly by applications; + * it is used only by header files of parent APIs which + * need to define error codes. + *********************************************************************/ + +#ifndef _SHR_ERROR_H +#define _SHR_ERROR_H + +typedef enum { + _SHR_E_NONE = 0, + _SHR_E_INTERNAL = -1, + _SHR_E_MEMORY = -2, + _SHR_E_UNIT = -3, + _SHR_E_PARAM = -4, + _SHR_E_EMPTY = -5, + _SHR_E_FULL = -6, + _SHR_E_NOT_FOUND = -7, + _SHR_E_EXISTS = -8, + _SHR_E_TIMEOUT = -9, + _SHR_E_BUSY = -10, + _SHR_E_FAIL = -11, + _SHR_E_DISABLED = -12, + _SHR_E_BADID = -13, + _SHR_E_RESOURCE = -14, + _SHR_E_CONFIG = -15, + _SHR_E_UNAVAIL = -16, + _SHR_E_INIT = -17, + _SHR_E_PORT = -18, + + _SHR_E_LIMIT = -19 /* Must come last */ +} _shr_error_t; + +#define _SHR_ERRMSG_INIT { \ + "Ok", /* E_NONE */ \ + "Internal error", /* E_INTERNAL */ \ + "Out of memory", /* E_MEMORY */ \ + "Invalid unit", /* E_UNIT */ \ + "Invalid parameter", /* E_PARAM */ \ + "Table empty", /* E_EMPTY */ \ + "Table full", /* E_FULL */ \ + "Entry not found", /* E_NOT_FOUND */ \ + "Entry exists", /* E_EXISTS */ \ + "Operation timed out", /* E_TIMEOUT */ \ + "Operation still running", /* E_BUSY */ \ + "Operation failed", /* E_FAIL */ \ + "Operation disabled", /* E_DISABLED */ \ + "Invalid identifier", /* E_BADID */ \ + "No resources for operation", /* E_RESOURCE */ \ + "Invalid configuration", /* E_CONFIG */ \ + "Feature unavailable", /* E_UNAVAIL */ \ + "Feature not initialized", /* E_INIT */ \ + "Invalid port", /* E_PORT */ \ + "Unknown error" /* E_LIMIT */ \ + } + +extern char *_shr_errmsg[]; + +#define _SHR_ERRMSG(r) \ + _shr_errmsg[(((int)r) <= 0 && ((int)r) > _SHR_E_LIMIT) ? -(r) : -_SHR_E_LIMIT] + +#define _SHR_E_SUCCESS(rv) ((rv) >= 0) +#define _SHR_E_FAILURE(rv) ((rv) < 0) + +#define _SHR_ERROR_TRACE(__errcode__) +#define _SHR_RETURN(__expr__) return (__expr__) + +#define _SHR_E_IF_ERROR_RETURN(op) \ + do { int __rv__; if ((__rv__ = (op)) < 0) { _SHR_ERROR_TRACE(__rv__); return(__rv__); } } while(0) + +#define _SHR_E_IF_ERROR_CLEAN_RETURN(op,exop) \ + do { int __rv__; if ((__rv__ = (op)) < 0) { _SHR_ERROR_TRACE(__rv__); (exop); return(__rv__); } } while(0) + +#define _SHR_E_IF_ERROR_NOT_UNAVAIL_RETURN(op) \ + do { \ + int __rv__; \ + if (((__rv__ = (op)) < 0) && (__rv__ != _SHR_E_UNAVAIL)) { \ + return(__rv__); \ + } \ + } while(0) + + +typedef enum { + _SHR_SWITCH_EVENT_IO_ERROR = 1, + _SHR_SWITCH_EVENT_PARITY_ERROR = 2, + _SHR_SWITCH_EVENT_THREAD_ERROR = 3, + _SHR_SWITCH_EVENT_ACCESS_ERROR = 4, + _SHR_SWITCH_EVENT_ASSERT_ERROR = 5, + _SHR_SWITCH_EVENT_MODID_CHANGE = 6, + _SHR_SWITCH_EVENT_DOS_ATTACK = 7, + _SHR_SWITCH_EVENT_STABLE_FULL = 8, + _SHR_SWITCH_EVENT_STABLE_ERROR = 9, + _SHR_SWITCH_EVENT_UNCONTROLLED_SHUTDOWN = 10, + _SHR_SWITCH_EVENT_WARM_BOOT_DOWNGRADE = 11, + _SHR_SWITCH_EVENT_TUNE_ERROR = 12, + _SHR_SWITCH_EVENT_DEVICE_INTERRUPT = 13, + _SHR_SWITCH_EVENT_ALARM = 14, + _SHR_SWITCH_EVENT_MMU_BST_TRIGGER = 15, + _SHR_SWITCH_EVENT_EPON_ALARM = 16, + _SHR_SWITCH_EVENT_RUNT_DETECT = 17, + _SHR_SWITCH_EVENT_AUTONEG_SPEED_ERROR = 18, + _SHR_SWITCH_EVENT_COUNT /* last, as always */ +} _shr_switch_event_t; + +#endif /* !_SHR_ERROR_H */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/shared/gport.h +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/include/shared/gport.h @@ -0,0 +1,354 @@ +/********************************************************************* + * + * (C) Copyright Broadcom Corporation 2013-2017 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + ********************************************************************** + * File: gport.h + * Details: This file defines gport (generic port) parameters. + * + * Its contents are not used directly by applications; + * it is used only by header files of parent APIs which + * need to define error codes. + *********************************************************************/ + +#ifndef _SHR_GPORT_H +#define _SHR_GPORT_H + +/* + * Defines: + * _SHR_GPORT_* + * Purpose: + * GPORT (Generic port) definitions. GPORT can be used to specify + * a {module, port} pair, trunk, and other port types. + */ + +#define _SHR_GPORT_NONE (0) +#define _SHR_GPORT_INVALID (-1) + +#define _SHR_GPORT_TYPE_LOCAL 1 /* Port on local unit */ +#define _SHR_GPORT_TYPE_MODPORT 2 /* Module ID and port */ +#define _SHR_GPORT_TYPE_TRUNK 3 /* Trunk ID */ +#define _SHR_GPORT_TYPE_BLACK_HOLE 4 /* Black hole destination */ +#define _SHR_GPORT_TYPE_LOCAL_CPU 5 /* CPU destination */ +#define _SHR_GPORT_TYPE_UCAST_QUEUE_GROUP 9 /* Queue Group */ +#define _SHR_GPORT_TYPE_MCAST 11 /* Multicast Set */ +#define _SHR_GPORT_TYPE_MCAST_QUEUE_GROUP 12 /* Multicast Queue Group */ +#define _SHR_GPORT_TYPE_SCHEDULER 13 /* Scheduler */ +#define _SHR_GPORT_TYPE_MIRROR 15 /* Mirror destination. */ +#define _SHR_GPORT_TYPE_TUNNEL 19 /* Tunnel ID */ +#define _SHR_GPORT_TYPE_CHILD 20 /* Child port */ +#define _SHR_GPORT_TYPE_EGRESS_GROUP 21 /* Egress group port */ +#define _SHR_GPORT_TYPE_EGRESS_CHILD 22 /* Egress child port */ +#define _SHR_GPORT_TYPE_EGRESS_MODPORT 23 /* Egress Mod and port */ +#define _SHR_GPORT_TYPE_UCAST_SUBSCRIBER_QUEUE_GROUP 24 /* Local Queue Group */ +#define _SHR_GPORT_TYPE_MCAST_SUBSCRIBER_QUEUE_GROUP 25 /* Local Multicast Queue Group */ +#define _SHR_GPORT_TYPE_SYSTEM_PORT 27 /* DPP System-Port */ +#define _SHR_GPORT_TYPE_COSQ 30 /* cosq gport */ +#define _SHR_GPORT_TYPE_PROFILE 40 +#define _SHR_GPORT_TYPE_DESTMOD_QUEUE_GROUP 41 /* DMVOQ gport */ + +/* definitions for cosq core handling */ +#define _SHR_COSQ_GPORT_COMMON_QUEUE_BITS 18 +#define _SHR_COSQ_GPORT_COMMON_QUEUE_MASK ((1 << _SHR_COSQ_GPORT_COMMON_QUEUE_BITS) - 1) +#define _SHR_COSQ_GPORT_COMMON_CORE_BITS 3 +#define _SHR_COSQ_GPORT_COMMON_CORE_SHIFT _SHR_COSQ_GPORT_COMMON_QUEUE_BITS +#define _SHR_COSQ_GPORT_COMMON_CORE_MASK ((1 << _SHR_COSQ_GPORT_COMMON_CORE_BITS) - 1) +#define _SHR_COSQ_GPORT_COMMON_ALL_CORES_VALUE _SHR_COSQ_GPORT_COMMON_CORE_MASK +/* + * Note that only the bits under _SHR_COSQ_GPORT_CORE_MASK are considred + * See, e.g. _SHR_COSQ_GPORT_CORE_GET + */ +#define _SHR_CORE_ALL -17 +#define _SHR_CORE_FIELD2ID(field) ((field) != _SHR_COSQ_GPORT_COMMON_ALL_CORES_VALUE ? field : _SHR_CORE_ALL) +#define _SHR_CORE_ID2FIELD(id) ((id) != _SHR_CORE_ALL ? id : _SHR_COSQ_GPORT_COMMON_ALL_CORES_VALUE) + +#define _SHR_GPORT_TYPE_SHIFT 26 +#define _SHR_GPORT_TYPE_MASK 0x3f +#define _SHR_GPORT_MODID_SHIFT 11 +#define _SHR_GPORT_MODID_MASK 0x7fff +#define _SHR_GPORT_PORT_SHIFT 0 +#define _SHR_GPORT_PORT_MASK 0x7ff +#define _SHR_GPORT_TRUNK_SHIFT 0 +#define _SHR_GPORT_TRUNK_MASK 0x3ffffff +#define _SHR_GPORT_UCAST_QUEUE_GROUP_SHIFT 0 +#define _SHR_GPORT_UCAST_QUEUE_GROUP_MASK 0x3ffffff +#define _SHR_GPORT_UCAST_QUEUE_GROUP_QID_SHIFT 0 +#define _SHR_GPORT_UCAST_QUEUE_GROUP_QID_MASK 0x3fff +#define _SHR_GPORT_UCAST_QUEUE_GROUP_SYSPORTID_SHIFT 14 +#define _SHR_GPORT_UCAST_QUEUE_GROUP_SYSPORTID_MASK 0xfff +#define _SHR_GPORT_MCAST_QUEUE_GROUP_QID_SHIFT 0 +#define _SHR_GPORT_MCAST_QUEUE_GROUP_QID_MASK 0x3fff +#define _SHR_GPORT_MCAST_QUEUE_GROUP_SYSPORTID_SHIFT 14 +#define _SHR_GPORT_MCAST_QUEUE_GROUP_SYSPORTID_MASK 0xfff +#define _SHR_GPORT_SCHEDULER_SHIFT 0 +#define _SHR_GPORT_SCHEDULER_MASK 0x7fffff +#define _SHR_GPORT_SCHEDULER_CORE_SHIFT 23 +#define _SHR_GPORT_SCHEDULER_CORE_MASK _SHR_COSQ_GPORT_COMMON_CORE_MASK +#define _SHR_GPORT_SCHEDULER_NODE_SHIFT 0 +#define _SHR_GPORT_SCHEDULER_NODE_MASK 0xfffff +#define _SHR_GPORT_MIRROR_SHIFT 0 +#define _SHR_GPORT_MIRROR_MASK 0xffff +#define _SHR_GPORT_TUNNEL_SHIFT 0 +#define _SHR_GPORT_TUNNEL_MASK 0x3ffffff +#define _SHR_GPORT_SYSTEM_PORT_SHIFT 0 +#define _SHR_GPORT_SYSTEM_PORT_MASK 0xffffff + +#define _SHR_GPORT_TYPE_TRAP ((_SHR_GPORT_TYPE_LOCAL_CPU << 1) | 1) /* This will mark the CPU type, and + the 1st bit in the value to indicate trap */ +#define _SHR_GPORT_TYPE_TRAP_SHIFT (_SHR_GPORT_TYPE_SHIFT-1) /* 25 */ +#define _SHR_GPORT_TYPE_TRAP_MASK (_SHR_GPORT_TYPE_MASK<<1|1) /* 0x4f */ +#define _SHR_GPORT_TRAP_ID_SHIFT 0 +#define _SHR_GPORT_TRAP_ID_MASK 0xfff +#define _SHR_GPORT_TRAP_STRENGTH_SHIFT 12 +#define _SHR_GPORT_TRAP_STRENGTH_MASK 0xf +#define _SHR_GPORT_TRAP_SNOOP_STRENGTH_SHIFT 16 +#define _SHR_GPORT_TRAP_SNOOP_STRENGTH_MASK 0xf + +#define _SHR_GPORT_LOCAL_TYPE_COMMON (0) +#define _SHR_GPORT_LOCAL_TYPE_FABRIC (1) +#define _SHR_GPORT_LOCAL_TYPE_SHIFT (21) +#define _SHR_GPORT_LOCAL_TYPE_MASK (0x1f) + +#define _SHR_GPORT_IS_LOCAL(_gport) \ + (((((_gport) >> _SHR_GPORT_TYPE_SHIFT) & _SHR_GPORT_TYPE_MASK) == \ + _SHR_GPORT_TYPE_LOCAL) && \ + ((((_gport) >> _SHR_GPORT_LOCAL_TYPE_SHIFT) & _SHR_GPORT_LOCAL_TYPE_MASK) == \ + _SHR_GPORT_LOCAL_TYPE_COMMON)) + +#define _SHR_GPORT_LOCAL_SET(_gport, _port)\ + ((_gport) = (_SHR_GPORT_TYPE_LOCAL << _SHR_GPORT_TYPE_SHIFT) |\ + (_SHR_GPORT_LOCAL_TYPE_COMMON << _SHR_GPORT_LOCAL_TYPE_SHIFT)|\ + (((_port) & _SHR_GPORT_PORT_MASK) << _SHR_GPORT_PORT_SHIFT)) + +#define _SHR_GPORT_LOCAL_GET(_gport) \ + (((_gport) >> _SHR_GPORT_PORT_SHIFT) & _SHR_GPORT_PORT_MASK) + +#define _SHR_GPORT_IS_MODPORT(_gport) \ + (((_gport) >> _SHR_GPORT_TYPE_SHIFT) == _SHR_GPORT_TYPE_MODPORT) + +#define _SHR_GPORT_MODPORT_SET(_gport, _module, _port) \ + ((_gport) = (_SHR_GPORT_TYPE_MODPORT << _SHR_GPORT_TYPE_SHIFT) | \ + (((_module) & _SHR_GPORT_MODID_MASK) << _SHR_GPORT_MODID_SHIFT) | \ + (((_port) & _SHR_GPORT_PORT_MASK) << _SHR_GPORT_PORT_SHIFT)) + +#define _SHR_GPORT_MODPORT_MODID_GET(_gport) \ + (((_gport) >> _SHR_GPORT_MODID_SHIFT) & _SHR_GPORT_MODID_MASK) + +#define _SHR_GPORT_MODPORT_PORT_GET(_gport) \ + (((_gport) >> _SHR_GPORT_PORT_SHIFT) & _SHR_GPORT_PORT_MASK) + +#define _SHR_GPORT_IS_TRUNK(_gport) \ + (((_gport) >> _SHR_GPORT_TYPE_SHIFT) == _SHR_GPORT_TYPE_TRUNK) + +#define _SHR_GPORT_TRUNK_SET(_gport, _trunk_id) \ + ((_gport) = (_SHR_GPORT_TYPE_TRUNK << _SHR_GPORT_TYPE_SHIFT) | \ + (((_trunk_id) & _SHR_GPORT_TRUNK_MASK) << _SHR_GPORT_TRUNK_SHIFT)) + +#define _SHR_GPORT_TRUNK_GET(_gport) \ + (((_gport) >> _SHR_GPORT_TRUNK_SHIFT) & _SHR_GPORT_TRUNK_MASK) + +#define _SHR_GPORT_IS_SCHEDULER(_gport) \ + (((_gport) >> _SHR_GPORT_TYPE_SHIFT) == _SHR_GPORT_TYPE_SCHEDULER) + +#define _SHR_GPORT_SCHEDULER_SET(_gport, _id) \ + _SHR_GPORT_SCHEDULER_CORE_SET(_gport, _id, _SHR_CORE_ALL) + +#define _SHR_GPORT_SCHEDULER_GET(_gport) \ + (((_gport) >> _SHR_GPORT_SCHEDULER_SHIFT) & _SHR_GPORT_SCHEDULER_MASK) + +#define _SHR_GPORT_SCHEDULER_CORE_GET(_gport) \ + _SHR_CORE_FIELD2ID((((_gport) >> _SHR_GPORT_SCHEDULER_CORE_SHIFT) & _SHR_GPORT_SCHEDULER_CORE_MASK)) + +#define _SHR_GPORT_SCHEDULER_CORE_SET(_gport, _scheduler_id, _core_id) \ + ((_gport) = (_SHR_GPORT_TYPE_SCHEDULER << _SHR_GPORT_TYPE_SHIFT) | \ + (((_scheduler_id) & _SHR_GPORT_SCHEDULER_MASK) << _SHR_GPORT_SCHEDULER_SHIFT) | \ + (((_SHR_CORE_ID2FIELD(_core_id)) & _SHR_GPORT_SCHEDULER_CORE_MASK) << _SHR_GPORT_SCHEDULER_CORE_SHIFT)) + +#define _SHR_GPORT_SCHEDULER_NODE_SET(_gport, _level, _node) \ + ((_gport) = (_SHR_GPORT_TYPE_SCHEDULER << _SHR_GPORT_TYPE_SHIFT) | \ + (((_level) & _SHR_GPORT_SCHEDULER_LEVEL_MASK) << _SHR_GPORT_SCHEDULER_LEVEL_SHIFT) | \ + (((_node) & _SHR_GPORT_SCHEDULER_NODE_MASK) << _SHR_GPORT_SCHEDULER_NODE_SHIFT)) + +#define _SHR_GPORT_SCHEDULER_NODE_GET(_gport) \ + (((_gport) >> _SHR_GPORT_SCHEDULER_NODE_SHIFT) & _SHR_GPORT_SCHEDULER_NODE_MASK) + +#define _SHR_GPORT_BLACK_HOLE \ + (_SHR_GPORT_TYPE_BLACK_HOLE << _SHR_GPORT_TYPE_SHIFT) + +#define _SHR_GPORT_IS_BLACK_HOLE(_gport) ((_gport) == _SHR_GPORT_BLACK_HOLE) + +#define _SHR_GPORT_LOCAL_CPU \ + (_SHR_GPORT_TYPE_LOCAL_CPU << _SHR_GPORT_TYPE_SHIFT) + +#define _SHR_GPORT_IS_UCAST_QUEUE_GROUP(_gport) \ + (((_gport) >> _SHR_GPORT_TYPE_SHIFT) == _SHR_GPORT_TYPE_UCAST_QUEUE_GROUP) + +#define _SHR_GPORT_UCAST_QUEUE_GROUP_SET(_gport, _qid) \ + _SHR_GPORT_UCAST_QUEUE_GROUP_SYSQID_SET(_gport, \ + _SHR_GPORT_UCAST_QUEUE_GROUP_SYSPORTID_MASK, \ + _qid) + +#define _SHR_GPORT_UCAST_QUEUE_GROUP_SYSQID_SET(_gport, _sysport_id, _qid) \ + ((_gport) = (_SHR_GPORT_TYPE_UCAST_QUEUE_GROUP << _SHR_GPORT_TYPE_SHIFT) | \ + (((_sysport_id) & _SHR_GPORT_UCAST_QUEUE_GROUP_SYSPORTID_MASK) << _SHR_GPORT_UCAST_QUEUE_GROUP_SYSPORTID_SHIFT) | \ + (((_qid) & _SHR_GPORT_UCAST_QUEUE_GROUP_QID_MASK) << _SHR_GPORT_UCAST_QUEUE_GROUP_QID_SHIFT)) + +#define _SHR_GPORT_UCAST_QUEUE_GROUP_SYSPORTID_GET(_gport) \ + (((_gport) >> _SHR_GPORT_UCAST_QUEUE_GROUP_SYSPORTID_SHIFT) & _SHR_GPORT_UCAST_QUEUE_GROUP_SYSPORTID_MASK) + +#define _SHR_GPORT_UCAST_QUEUE_GROUP_QID_GET(_gport) \ + (((_gport) >> _SHR_GPORT_UCAST_QUEUE_GROUP_QID_SHIFT) & _SHR_GPORT_UCAST_QUEUE_GROUP_QID_MASK) + +#define _SHR_GPORT_IS_MCAST_QUEUE_GROUP(_gport) \ + (((_gport) >> _SHR_GPORT_TYPE_SHIFT) == _SHR_GPORT_TYPE_MCAST_QUEUE_GROUP) + +#define _SHR_GPORT_MCAST_QUEUE_GROUP_SET(_gport, _qid) \ + _SHR_GPORT_MCAST_QUEUE_GROUP_SYSQID_SET(_gport, \ + _SHR_GPORT_MCAST_QUEUE_GROUP_SYSPORTID_MASK, \ + _qid) + +#define _SHR_GPORT_MCAST_QUEUE_GROUP_GET(_gport) \ + _SHR_GPORT_MCAST_QUEUE_GROUP_QID_GET(_gport) + +#define _SHR_GPORT_MCAST_QUEUE_GROUP_SYSQID_SET(_gport, _sysport_id, _qid) \ + ((_gport) = (_SHR_GPORT_TYPE_MCAST_QUEUE_GROUP << _SHR_GPORT_TYPE_SHIFT) | \ + (((_sysport_id) & _SHR_GPORT_MCAST_QUEUE_GROUP_SYSPORTID_MASK) << _SHR_GPORT_MCAST_QUEUE_GROUP_SYSPORTID_SHIFT) | \ + (((_qid) & _SHR_GPORT_MCAST_QUEUE_GROUP_QID_MASK) << _SHR_GPORT_MCAST_QUEUE_GROUP_QID_SHIFT)) + +#define _SHR_GPORT_MCAST_QUEUE_GROUP_SYSPORTID_GET(_gport) \ + (((_gport) >> _SHR_GPORT_MCAST_QUEUE_GROUP_SYSPORTID_SHIFT) & _SHR_GPORT_MCAST_QUEUE_GROUP_SYSPORTID_MASK) + +#define _SHR_GPORT_MCAST_QUEUE_GROUP_QID_GET(_gport) \ + (((_gport) >> _SHR_GPORT_MCAST_QUEUE_GROUP_QID_SHIFT) & _SHR_GPORT_MCAST_QUEUE_GROUP_QID_MASK) + +/* for multicast queue gports representing queue ID + core ID */ +#define _SHR_GPORT_MCAST_QUEUE_GROUP_QUEUE_SET(_gport, _qid) \ + ((_gport) = (_SHR_GPORT_TYPE_MCAST_QUEUE_GROUP << _SHR_GPORT_TYPE_SHIFT) | \ + (_SHR_COSQ_GPORT_COMMON_ALL_CORES_VALUE << _SHR_COSQ_GPORT_COMMON_CORE_SHIFT) | \ + (((_qid) & _SHR_COSQ_GPORT_COMMON_QUEUE_MASK) << _SHR_GPORT_MCAST_QUEUE_GROUP_QID_SHIFT)) + +#define _SHR_GPORT_MCAST_QUEUE_GROUP_CORE_QUEUE_SET(_gport, _core, _qid) \ + ((_gport) = (_SHR_GPORT_TYPE_MCAST_QUEUE_GROUP << _SHR_GPORT_TYPE_SHIFT) | \ + (_SHR_CORE_ID2FIELD(_core) << _SHR_COSQ_GPORT_COMMON_CORE_SHIFT) | \ + (((_qid) & _SHR_COSQ_GPORT_COMMON_QUEUE_MASK) << _SHR_GPORT_MCAST_QUEUE_GROUP_QID_SHIFT)) + +#define _SHR_GPORT_MCAST_QUEUE_GROUP_QUEUE_GET(_gport) \ + (_SHR_GPORT_MCAST_QUEUE_GROUP_SYSPORTID_GET(_gport) == _SHR_GPORT_MCAST_QUEUE_GROUP_SYSPORTID_MASK ? \ + _SHR_GPORT_MCAST_QUEUE_GROUP_QID_GET(_gport) : \ + (((_gport) >> _SHR_GPORT_MCAST_QUEUE_GROUP_QID_SHIFT) & _SHR_COSQ_GPORT_COMMON_QUEUE_MASK)) + +#define _SHR_GPORT_MCAST_QUEUE_GROUP_CORE_GET(_gport) \ + _SHR_CORE_FIELD2ID(((_gport) >> _SHR_COSQ_GPORT_COMMON_CORE_SHIFT) & _SHR_COSQ_GPORT_COMMON_CORE_MASK) + +#define _SHR_GPORT_IS_MIRROR(_gport) \ + (((_gport) >> _SHR_GPORT_TYPE_SHIFT) == _SHR_GPORT_TYPE_MIRROR) + +#define _SHR_GPORT_MIRROR_SET(_gport, _value) \ + ((_gport) = (_SHR_GPORT_TYPE_MIRROR << _SHR_GPORT_TYPE_SHIFT) | \ + (((_value) & _SHR_GPORT_MIRROR_MASK) << _SHR_GPORT_MIRROR_SHIFT)) + +#define _SHR_GPORT_MIRROR_GET(_gport) \ + (((_gport) >> _SHR_GPORT_MIRROR_SHIFT) & _SHR_GPORT_MIRROR_MASK) + +#define _SHR_GPORT_IS_TUNNEL(_gport) \ + (((_gport) >> _SHR_GPORT_TYPE_SHIFT) == _SHR_GPORT_TYPE_TUNNEL) + +#define _SHR_GPORT_TUNNEL_ID_SET(_gport, _tunnel_id) \ + ((_gport) = (_SHR_GPORT_TYPE_TUNNEL << _SHR_GPORT_TYPE_SHIFT) | \ + (((_tunnel_id) & _SHR_GPORT_TUNNEL_MASK) << _SHR_GPORT_TUNNEL_SHIFT)) + +#define _SHR_GPORT_TUNNEL_ID_GET(_gport) \ + (((_gport) >> _SHR_GPORT_TUNNEL_SHIFT) & _SHR_GPORT_TUNNEL_MASK) + +#define _SHR_GPORT_IS_SYSTEM_PORT(_gport) \ + (((_gport) >> _SHR_GPORT_TYPE_SHIFT) == _SHR_GPORT_TYPE_SYSTEM_PORT) +#define _SHR_GPORT_SYSTEM_PORT_ID_GET(_gport) \ + (((_gport) >> _SHR_GPORT_SYSTEM_PORT_SHIFT) & _SHR_GPORT_SYSTEM_PORT_MASK) +#define _SHR_GPORT_SYSTEM_PORT_ID_SET(_gport, _id) \ + ((_gport) = (_SHR_GPORT_TYPE_SYSTEM_PORT << _SHR_GPORT_TYPE_SHIFT) | \ + (((_id) & _SHR_GPORT_SYSTEM_PORT_MASK) << _SHR_GPORT_SYSTEM_PORT_SHIFT)) + +#define _SHR_GPORT_IS_COSQ(_gport) \ + (((_gport) >> _SHR_GPORT_TYPE_SHIFT) == _SHR_GPORT_TYPE_COSQ) + +#define _SHR_GPORT_TRAP_SET(_gport, _trap_id, _trap_strength, _snoop_strength) \ + ((_gport) = (_SHR_GPORT_TYPE_TRAP << _SHR_GPORT_TYPE_TRAP_SHIFT) | \ + (((_trap_id) & _SHR_GPORT_TRAP_ID_MASK) << _SHR_GPORT_TRAP_ID_SHIFT) | \ + (((_trap_strength) & _SHR_GPORT_TRAP_STRENGTH_MASK) << _SHR_GPORT_TRAP_STRENGTH_SHIFT) | \ + (((_snoop_strength) & _SHR_GPORT_TRAP_SNOOP_STRENGTH_MASK) << _SHR_GPORT_TRAP_SNOOP_STRENGTH_SHIFT) ) + +#define _SHR_GPORT_TRAP_GET_ID(_gport) \ + (((_gport) >> _SHR_GPORT_TRAP_ID_SHIFT) & _SHR_GPORT_TRAP_ID_MASK) + +#define _SHR_GPORT_TRAP_GET_STRENGTH(_gport) \ + (((_gport) >> _SHR_GPORT_TRAP_STRENGTH_SHIFT & _SHR_GPORT_TRAP_STRENGTH_MASK)) + +#define _SHR_GPORT_TRAP_GET_SNOOP_STRENGTH(_gport) \ + (((_gport) >> _SHR_GPORT_TRAP_SNOOP_STRENGTH_SHIFT & _SHR_GPORT_TRAP_SNOOP_STRENGTH_MASK)) + +#define _SHR_GPORT_IS_TRAP(_gport) \ + (((_gport) >> _SHR_GPORT_TYPE_TRAP_SHIFT) == _SHR_GPORT_TYPE_TRAP) + +#define _SHR_FIELD_CTR_PROC_MASK_LEGACY ((1 << 2) - 1) /*2 bits for counter engines in Arad */ +#define _SHR_FIELD_CTR_PROC_SHIFT_LEGACY 29 /* minimum 20 for the Statistic-Report Counter in Arad */ +#define _SHR_FIELD_CTR_SET_MASK_LEGACY ((1 << _SHR_FIELD_CTR_PROC_SHIFT_LEGACY) - 1) +#define _SHR_FIELD_CTR_SET_SHIFT_LEGACY 0 + +#define _SHR_FIELD_STAT_ID_PROC_LEGACY_GET(_stat_id) \ + (((_stat_id) >> _SHR_FIELD_CTR_PROC_SHIFT_LEGACY) & _SHR_FIELD_CTR_PROC_MASK_LEGACY) + +#define _SHR_FIELD_STAT_ID_CNTR_LEGACY_GET(_stat_id) \ + (((_stat_id) >> _SHR_FIELD_CTR_SET_SHIFT_LEGACY) & _SHR_FIELD_CTR_SET_MASK_LEGACY) + +#define _SHR_FIELD_STAT_ID_LEGACY_SET(_proc, _ctr) \ + ((((_proc) & _SHR_FIELD_CTR_PROC_MASK_LEGACY) << _SHR_FIELD_CTR_PROC_SHIFT_LEGACY)\ + | (((_ctr) & _SHR_FIELD_CTR_SET_MASK_LEGACY) << _SHR_FIELD_CTR_SET_SHIFT_LEGACY)) + +#define _SHR_FIELD_STAT_ID_IS_LEGACY(_stat_id) (!((_stat_id >> 31) & 0x1)) +#define _SHR_FIELD_STAT_ID_LEGACY (0x1 << 31) + +/* minimum 20 for the Statistic-Report Counter in Arad */ +#define _SHR_FIELD_CTR_PROC_MASK ((1 << 4) - 1) /*4 bits for counter engines in Arad */ + +#define _SHR_FIELD_CTR_PROC_SHIFT 27 /* minimum 20 for the Statistic-Report Counter in Jericho */ +#define _SHR_FIELD_CTR_SET_MASK ((1 << _SHR_FIELD_CTR_PROC_SHIFT) - 1) +#define _SHR_FIELD_CTR_SET_SHIFT 0 + +#define _SHR_FIELD_CTR_PROC_SHIFT_GET(_stat_id) (_SHR_FIELD_STAT_ID_IS_LEGACY(_stat_id) ? _SHR_FIELD_CTR_PROC_SHIFT_LEGACY : _SHR_FIELD_CTR_PROC_SHIFT) +#define _SHR_FIELD_STAT_ID_PROC_NEW_GET(_stat_id) \ + (((_stat_id) >> _SHR_FIELD_CTR_PROC_SHIFT) & _SHR_FIELD_CTR_PROC_MASK) + +#define _SHR_FIELD_STAT_ID_CNTR_NEW_GET(_stat_id) \ + (((_stat_id) >> _SHR_FIELD_CTR_SET_SHIFT) & _SHR_FIELD_CTR_SET_MASK) + +#define _SHR_FIELD_STAT_ID_NEW_SET(_proc, _ctr) \ + (_SHR_FIELD_STAT_ID_LEGACY | \ + (((_proc) & _SHR_FIELD_CTR_PROC_MASK) << _SHR_FIELD_CTR_PROC_SHIFT)|\ + (((_ctr) & _SHR_FIELD_CTR_SET_MASK) << _SHR_FIELD_CTR_SET_SHIFT)) + +#define _SHR_FIELD_STAT_ID_PROCESSOR_GET(_stat_id) \ + (_SHR_FIELD_STAT_ID_IS_LEGACY(_stat_id) ? \ + _SHR_FIELD_STAT_ID_PROC_LEGACY_GET(_stat_id) : \ + _SHR_FIELD_STAT_ID_PROC_NEW_GET(_stat_id)) + +#define _SHR_FIELD_STAT_ID_COUNTER_GET(_stat_id) \ + (_SHR_FIELD_STAT_ID_IS_LEGACY(_stat_id) ? \ + _SHR_FIELD_STAT_ID_CNTR_LEGACY_GET(_stat_id) : \ + _SHR_FIELD_STAT_ID_CNTR_NEW_GET(_stat_id)) + +#define _SHR_FIELD_STAT_ID_SET(_stat_id, _proc, _ctr) \ + (_stat_id = _SHR_FIELD_STAT_ID_NEW_SET(_proc, _ctr)) + +#endif /* !_SHR_GPORT_H */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/shared/pbmp.h +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/include/shared/pbmp.h @@ -0,0 +1,303 @@ +/********************************************************************* + * + * (C) Copyright Broadcom Corporation 2013-2017 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + ********************************************************************** + * File: pbmp.h + * Details: Port Bitmap Macros + *********************************************************************/ + +#ifndef _SHR_PBMP_H +#define _SHR_PBMP_H + +#include +/* + * Port Bitmap Macros + * + * These macros are never used directly (well, except in the C code + * support routines that are used to help implement the macros). + * + * This header requires that the uint32 type be defined before inclusion. + * Using is the simplest (and recommended) way of doing + * this. + * + * There following macros are made available. All have names starting + * with _SHR_, which have been elided from this list: + * + * Constants or Expressions suitable for assignment: + * PBMP_PORT_MAX the maximum number of ports supported + * PBMP_WORD_MAX the maximum number of words in a bitmap + * PBMP_WORD_GET(b, w) return word w (0..WORD_MAX-1) from bitmap b + * PBMP_FMT_LEN length of char[] array for PBMP_FMT + * PBMP_FMT(b,s) %s'able format of bitmap b into string s + * returns s + * + * Predicates: (return 0 or 1, suitable for using in if statements) + * PBMP_MEMBER(b, p) is port p a member of bitmap b? + * PBMP_IS_NULL(b) is bitmap b empty? + * PBMP_NOT_NULL(b) is bitmap b not empty? + * PBMP_EQ(b1, b2) are bitmaps b1 and b2 equal? + * PBMP_NEQ(b1, b2) are bitmaps b1 and b2 not equal? + * PBMP_PORT_VALID(p) is p a valid port number? (0..PORT_MAX) + * + * Statements: (cannot be used as a predicate) + * PBMP_CLEAR(b) zero out a bitmap + * PBMP_COUNT(b, c) store how many bits are on in b into integer c + * PBMP_ITER(b, p) {...} iterate over bitmap b, setting p to each bit + * PBMP_ASSIGN(b1, b2) copy bitmap b2 into b1 + * PBMP_AND(b1, b2) and bitmap b2 into b1 + * PBMP_OR(b1, b2) or bitmap b2 into b1 + * PBMP_XOR(b1, b2) exclusive or bitmap b2 into b1 + * PBMP_REMOVE(b1, b2) remove bits in bitmap b2 from b1 + * PBMP_NEGATE(b1, b2) copy the bitwise negation of bitmap b2 into b1 + * PBMP_PORT_SET(b, p) clear bitmap b, then turn bit p on + * PBMP_PORT_ADD(b, p) turn bit p on in bitmap b + * PBMP_PORT_REMOVE(b, p) turn bit p off in bitmap b + * PBMP_PORT_FLIP(b, p) flip the sense of bit p on in bitmap b + * PBMP_WORD_SET(b, w, v) set word w (0..WORD_MAX-1) from bitmap b to v + * + * Internal forms: (should not be used outside of this header file) + * PBMP_WENT(p) word index for bit p + * PBMP_WBIT(p) word bitmask for bit p + * PBMP_BMCLEAR(b) clear a bitmap + * PBMP_BMNULL(b) is bitmap b empty? + * PBMP_BMEQ(b1, b2) are bitmaps b1 and b2 equal? + * PBMP_BMOP(b1, b2, op) execute op on a word basis on bitmaps b1, b2 + * PBMP_ENTRY(b, p) the word of bitmap b that holds bit p + * + * There are 4 styles of implementation for the bitmap macros supported: + * 1. The historic single uint32 implementation (-D_SHR_PBMP_WIDTH=0) + * This is expected to be removed after a decent time of mourning. + * 2. An array of a single uint32 in a struct (-D_SHR_PBMP_WIDTH=32, + * the default). Macros are special cased to handle this efficiently. + * 3. An array of two uint32 in a struct (-D_SHR_PBMP_WIDTH=64, used). + * Macros are again special cased for efficiency. + * 4. An array of more than two uint32 in a struct (-D_SHR_PBMP_WIDTH=256 + * for example). Most things are done inline, with a couple of helper + * functions used to implement some macros. + */ + +#ifndef _SHR_PBMP_WIDTH +#undef _SHR_PBMP_PORT_MAX +#ifndef OPENNSL_PRODUCT_DNX +#define _SHR_PBMP_PORT_MAX 256 +#else +#define _SHR_PBMP_PORT_MAX 571 +#endif + +#define _SHR_PBMP_WIDTH (((_SHR_PBMP_PORT_MAX + 32 - 1)/32)*32) +#endif + +#ifndef _SHR_PBMP_PORT_MAX +#define _SHR_PBMP_PORT_MAX _SHR_PBMP_WIDTH +#endif +#define _SHR_PBMP_WORD_WIDTH 32 +#define _SHR_PBMP_WORD_MAX \ + ((_SHR_PBMP_WIDTH + _SHR_PBMP_WORD_WIDTH-1) / _SHR_PBMP_WORD_WIDTH) + +typedef struct _shr_pbmp { + uint32 pbits[_SHR_PBMP_WORD_MAX]; +} _shr_pbmp_t; + +#define _SHR_PBMP_WORD_GET(bm, word) ((bm).pbits[(word)]) +#define _SHR_PBMP_WORD_SET(bm, word, val) ((bm).pbits[(word)] = (val)) + +/* + * Common cases are one word (1..32 ports) and two words (33..64 ports). + * If not the common cases, more complicated code is generated using helper + * functions. + */ +#if _SHR_PBMP_WORD_MAX == 1 /* 32 bit maps */ +#define _SHR_PBMP_WENT(port) (0) +#define _SHR_PBMP_WBIT(port) (1U<<(port)) + +/* helper defines used in the generic section below */ +#define _SHR_PBMP_BMCLEAR(bm) (_SHR_PBMP_WORD_GET(bm, 0) = 0) +#define _SHR_PBMP_BMNULL(bm) (_SHR_PBMP_WORD_GET(bm, 0) == 0) +#define _SHR_PBMP_BMEQ(bma, bmb) \ + (_SHR_PBMP_WORD_GET(bma, 0) == _SHR_PBMP_WORD_GET(bmb, 0)) +#define _SHR_PBMP_BMOP(bma, bmb, op) do { \ + _SHR_PBMP_WORD_GET(bma, 0) op _SHR_PBMP_WORD_GET(bmb, 0); \ + } while (0) +#define _SHR_PBMP_COUNT(bm, count) \ + (count = _shr_popcount(_SHR_PBMP_WORD_GET(bm, 0))) + +#elif _SHR_PBMP_WORD_MAX == 2 /* 64 bit maps */ +#define _SHR_PBMP_WENT(port) ((port)/_SHR_PBMP_WORD_WIDTH) +#define _SHR_PBMP_WBIT(port) (1U<<((port) % _SHR_PBMP_WORD_WIDTH)) + +#define _SHR_PBMP_BMCLEAR(bm) \ + (_SHR_PBMP_WORD_GET(bm, 0) = _SHR_PBMP_WORD_GET(bm, 1) = 0) +#define _SHR_PBMP_BMNULL(bm) \ + (_SHR_PBMP_WORD_GET(bm, 0) == 0 && _SHR_PBMP_WORD_GET(bm, 1) == 0) +#define _SHR_PBMP_BMEQ(bma, bmb) \ + ((_SHR_PBMP_WORD_GET(bma, 0) == _SHR_PBMP_WORD_GET(bmb, 0)) && \ + (_SHR_PBMP_WORD_GET(bma, 1) == _SHR_PBMP_WORD_GET(bmb, 1))) +#define _SHR_PBMP_BMOP(bma, bmb, op) do { \ + _SHR_PBMP_WORD_GET(bma, 0) op _SHR_PBMP_WORD_GET(bmb, 0); \ + _SHR_PBMP_WORD_GET(bma, 1) op _SHR_PBMP_WORD_GET(bmb, 1); \ + } while (0) +#define _SHR_PBMP_COUNT(bm, count) \ + (count = _shr_popcount(_SHR_PBMP_WORD_GET(bm, 0)) + \ + _shr_popcount(_SHR_PBMP_WORD_GET(bm, 1))) + +#elif _SHR_PBMP_WORD_MAX == 3 /* 96 bit maps */ +#define _SHR_PBMP_WENT(port) ((port)/_SHR_PBMP_WORD_WIDTH) +#define _SHR_PBMP_WBIT(port) (1U << ((port) % _SHR_PBMP_WORD_WIDTH)) + +#define _SHR_PBMP_BMCLEAR(bm) \ + (_SHR_PBMP_WORD_GET(bm, 0) = _SHR_PBMP_WORD_GET(bm, 1) = \ + _SHR_PBMP_WORD_GET(bm, 2) = 0) +#define _SHR_PBMP_BMNULL(bm) \ + (_SHR_PBMP_WORD_GET(bm, 0) == 0 && _SHR_PBMP_WORD_GET(bm, 1) == 0 && \ + _SHR_PBMP_WORD_GET(bm, 2) == 0) +#define _SHR_PBMP_BMEQ(bma, bmb) \ + ((_SHR_PBMP_WORD_GET(bma, 0) == _SHR_PBMP_WORD_GET(bmb, 0)) && \ + (_SHR_PBMP_WORD_GET(bma, 1) == _SHR_PBMP_WORD_GET(bmb, 1)) && \ + (_SHR_PBMP_WORD_GET(bma, 2) == _SHR_PBMP_WORD_GET(bmb, 2))) +#define _SHR_PBMP_BMOP(bma, bmb, op) do { \ + _SHR_PBMP_WORD_GET(bma, 0) op _SHR_PBMP_WORD_GET(bmb, 0); \ + _SHR_PBMP_WORD_GET(bma, 1) op _SHR_PBMP_WORD_GET(bmb, 1); \ + _SHR_PBMP_WORD_GET(bma, 2) op _SHR_PBMP_WORD_GET(bmb, 2); \ + } while (0) +#define _SHR_PBMP_COUNT(bm, count) \ + (count = _shr_popcount(_SHR_PBMP_WORD_GET(bm, 0)) + \ + _shr_popcount(_SHR_PBMP_WORD_GET(bm, 1)) + \ + _shr_popcount(_SHR_PBMP_WORD_GET(bm, 2))) + +#elif _SHR_PBMP_WORD_MAX == 5 /* 160 bit maps */ +#define _SHR_PBMP_WENT(port) ((port)/_SHR_PBMP_WORD_WIDTH) +#define _SHR_PBMP_WBIT(port) (1U << ((port) % _SHR_PBMP_WORD_WIDTH)) + +#define _SHR_PBMP_BMCLEAR(bm) \ + (_SHR_PBMP_WORD_GET(bm, 0) = _SHR_PBMP_WORD_GET(bm, 1) = \ + _SHR_PBMP_WORD_GET(bm, 2) = _SHR_PBMP_WORD_GET(bm, 3) = \ + _SHR_PBMP_WORD_GET(bm, 4) = 0) +#define _SHR_PBMP_BMNULL(bm) \ + (_SHR_PBMP_WORD_GET(bm, 0) == 0 && _SHR_PBMP_WORD_GET(bm, 1) == 0 && \ + _SHR_PBMP_WORD_GET(bm, 2) == 0 && _SHR_PBMP_WORD_GET(bm, 3) == 0 && \ + _SHR_PBMP_WORD_GET(bm, 4) == 0) +#define _SHR_PBMP_BMEQ(bma, bmb) \ + ((_SHR_PBMP_WORD_GET(bma, 0) == _SHR_PBMP_WORD_GET(bmb, 0)) && \ + (_SHR_PBMP_WORD_GET(bma, 1) == _SHR_PBMP_WORD_GET(bmb, 1)) && \ + (_SHR_PBMP_WORD_GET(bma, 2) == _SHR_PBMP_WORD_GET(bmb, 2)) && \ + (_SHR_PBMP_WORD_GET(bma, 3) == _SHR_PBMP_WORD_GET(bmb, 3)) && \ + (_SHR_PBMP_WORD_GET(bma, 4) == _SHR_PBMP_WORD_GET(bmb, 4))) +#define _SHR_PBMP_BMOP(bma, bmb, op) do { \ + _SHR_PBMP_WORD_GET(bma, 0) op _SHR_PBMP_WORD_GET(bmb, 0); \ + _SHR_PBMP_WORD_GET(bma, 1) op _SHR_PBMP_WORD_GET(bmb, 1); \ + _SHR_PBMP_WORD_GET(bma, 2) op _SHR_PBMP_WORD_GET(bmb, 2); \ + _SHR_PBMP_WORD_GET(bma, 3) op _SHR_PBMP_WORD_GET(bmb, 3); \ + _SHR_PBMP_WORD_GET(bma, 4) op _SHR_PBMP_WORD_GET(bmb, 4); \ + } while (0) +#define _SHR_PBMP_COUNT(bm, count) \ + (count = _shr_popcount(_SHR_PBMP_WORD_GET(bm, 0)) + \ + _shr_popcount(_SHR_PBMP_WORD_GET(bm, 1)) + \ + _shr_popcount(_SHR_PBMP_WORD_GET(bm, 2)) + \ + _shr_popcount(_SHR_PBMP_WORD_GET(bm, 3)) + \ + _shr_popcount(_SHR_PBMP_WORD_GET(bm, 4))) + +#else /* _SHR_PBMP_WORD_MAX == 4 || > 5 */ /* 144 or > 160 bit maps */ + +/* For use by pbmp.c */ +#define _SHR_DEFINE_PBMP_FUNCTIONS + +extern int _shr_pbmp_bmnull(_shr_pbmp_t *); +extern int _shr_pbmp_bmeq(_shr_pbmp_t *, _shr_pbmp_t *); + +#define _SHR_PBMP_WENT(port) ((port)/_SHR_PBMP_WORD_WIDTH) +#define _SHR_PBMP_WBIT(port) (1U<<((port) % _SHR_PBMP_WORD_WIDTH)) + +#define _SHR_PBMP_BMCLEAR(bm) do { \ + int _w; \ + for (_w = 0; _w < _SHR_PBMP_WORD_MAX; _w++) { \ + _SHR_PBMP_WORD_GET(bm, _w) = 0; \ + } \ + } while (0) +#define _SHR_PBMP_BMNULL(bm) (_shr_pbmp_bmnull(&bm)) +#define _SHR_PBMP_BMEQ(bma, bmb) (_shr_pbmp_bmeq(&bma, &bmb)) +#define _SHR_PBMP_BMOP(bma, bmb, op) do { \ + int _w; \ + for (_w = 0; _w < _SHR_PBMP_WORD_MAX; _w++) { \ + _SHR_PBMP_WORD_GET(bma, _w) op _SHR_PBMP_WORD_GET(bmb, _w); \ + } \ + } while (0) +#define _SHR_PBMP_COUNT(bm, count) do { \ + int _w; \ + count = 0; \ + for (_w = 0; _w < _SHR_PBMP_WORD_MAX; _w++) { \ + count += _shr_popcount(_SHR_PBMP_WORD_GET(bm, _w)); \ + } \ + } while(0) + +#endif /* _SHR_PBMP_WORD_MAX */ + +/* generics that use the previously defined helpers */ +#define _SHR_PBMP_CLEAR(bm) _SHR_PBMP_BMCLEAR(bm) +#define _SHR_PBMP_ITER(bm, port) \ + for ((port) = 0; (port) < _SHR_PBMP_PORT_MAX; (port)++) \ + if (_SHR_PBMP_MEMBER((bm), (port))) + +#define _SHR_PBMP_REVERSE_ITER(bm, port) \ + for ((port) = _SHR_PBMP_PORT_MAX - 1; (port) > -1; (port)--) \ + if (_SHR_PBMP_MEMBER((bm), (port))) + +#define _SHR_PBMP_IS_NULL(bm) (_SHR_PBMP_BMNULL(bm)) +#define _SHR_PBMP_NOT_NULL(bm) (!_SHR_PBMP_BMNULL(bm)) +#define _SHR_PBMP_EQ(bma, bmb) (_SHR_PBMP_BMEQ(bma, bmb)) +#define _SHR_PBMP_NEQ(bma, bmb) (!_SHR_PBMP_BMEQ(bma, bmb)) + +/* Assignment operators */ +#define _SHR_PBMP_ASSIGN(dst, src) (dst) = (src) +#define _SHR_PBMP_AND(bma, bmb) _SHR_PBMP_BMOP(bma, bmb, &=) +#define _SHR_PBMP_OR(bma, bmb) _SHR_PBMP_BMOP(bma, bmb, |=) +#define _SHR_PBMP_XOR(bma, bmb) _SHR_PBMP_BMOP(bma, bmb, ^=) +#define _SHR_PBMP_REMOVE(bma, bmb) _SHR_PBMP_BMOP(bma, bmb, &= ~) +#define _SHR_PBMP_NEGATE(bma, bmb) _SHR_PBMP_BMOP(bma, bmb, = ~) + +/* Port PBMP operators */ +#define _SHR_PBMP_FIRST(bm, first_port) \ + do {\ + _SHR_PBMP_ITER(bm, first_port) {break;} \ + if (first_port == _SHR_PBMP_PORT_MAX) first_port = -1; \ + } while(0) + +#define _SHR_PBMP_LAST(bm, last_port) \ + do {\ + _SHR_PBMP_REVERSE_ITER(bm, last_port) {break;} \ + } while(0) + + +#define _SHR_PBMP_ENTRY(bm, port) \ + (_SHR_PBMP_WORD_GET(bm,_SHR_PBMP_WENT(port))) +#define _SHR_PBMP_MEMBER(bm, port) \ + ((_SHR_PBMP_ENTRY(bm, port) & _SHR_PBMP_WBIT(port)) != 0) +#define _SHR_PBMP_PORT_SET(bm, port) do { \ + _SHR_PBMP_CLEAR(bm); \ + _SHR_PBMP_PORT_ADD(bm, port); \ + } while(0) +#define _SHR_PBMP_PORT_ADD(bm, port) \ + (_SHR_PBMP_ENTRY(bm, port) |= _SHR_PBMP_WBIT(port)) +#define _SHR_PBMP_PORT_REMOVE(bm, port) \ + (_SHR_PBMP_ENTRY(bm, port) &= ~_SHR_PBMP_WBIT(port)) +#define _SHR_PBMP_PORT_FLIP(bm, port) \ + (_SHR_PBMP_ENTRY(bm, port) ^= _SHR_PBMP_WBIT(port)) +extern char *_shr_pbmp_format(_shr_pbmp_t, char *); +#define _SHR_PBMP_FMT(bm, buf) _shr_pbmp_format(bm, buf) +#define _SHR_PBMP_FMT_LEN ((_SHR_PBMP_WORD_MAX*8)+3) + +#define _SHR_PBMP_PORT_VALID(p) ((p) >= 0 && (p) < _SHR_PBMP_PORT_MAX) + +#endif /* !_SHR_PBMP_H */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/shared/phyconfig.h +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/include/shared/phyconfig.h @@ -0,0 +1,59 @@ +/********************************************************************* + * + * (C) Copyright Broadcom Corporation 2013-2016 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + ********************************************************************** + * File: phyconfig.h + * Details: This file defines PHY configuration modes. + * + * Its contents are not used directly by applications; + * it is used only by header files of parent APIs which + * need to define port modes. + *********************************************************************/ + +#ifndef _SHR_PHYCONFIG_H +#define _SHR_PHYCONFIG_H + +#include +#include +#include + +/* + * Structure: + * _shr_phy_config_t + * Purpose: + * Defines the operating mode of a PHY. + */ + +typedef struct _shr_phy_config_s { + int enable; + int preferred; + int autoneg_enable; + _shr_port_mode_t autoneg_advert; + _shr_port_ability_t advert_ability; + int force_speed; + int force_duplex; + int master; + _shr_port_mdix_t mdix; +} _shr_phy_config_t; + +typedef int (*_shr_port_phy_reset_cb_t)(int unit, _shr_port_t port, + void *user_data); + +typedef void (*_shr_port_medium_status_cb_t)(int unit, int port, + _shr_port_medium_t medium, + void *user_arg); + +#endif /* !_SHR_PHYCONFIG_H */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/shared/phyreg.h +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/include/shared/phyreg.h @@ -0,0 +1,39 @@ +/****************************************************************************** + * + * (C) Copyright Broadcom Corporation 2013-2016 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + ****************************************************************************** + * File: phyreg.h + * Details: This file defines common PHY register definition. + * + * Its contents are not used directly by applications; + * it is used only by header files of parent APIs which + * need to define PHY register definition. + ******************************************************************************/ + +#ifndef _SHR_PHYREG_H +#define _SHR_PHYREG_H + +#define _SHR_PORT_PHY_INTERNAL 0x00000001 +#define _SHR_PORT_PHY_NOMAP 0x00000002 +#define _SHR_PORT_PHY_CLAUSE45 0x00000004 +#define _SHR_PORT_PHY_I2C_DATA8 0x00000008 +#define _SHR_PORT_PHY_I2C_DATA16 0x00000010 + +#define _SHR_PORT_PHY_CLAUSE45_ADDR(_devad, _regad) \ + ((((_devad) & 0x3F) << 16) | \ + ((_regad) & 0xFFFF)) + +#endif /* !_SHR_PHYREG_H */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/shared/pkt.h +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/include/shared/pkt.h @@ -0,0 +1,38 @@ +/********************************************************************* + * + * (C) Copyright Broadcom Corporation 2013-2016 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + ********************************************************************** + * File: pkt.h + * Details: This file defines for pkt module. + * + * Its contents are not used directly by applications; + * it is used only by header files of parent APIs which + * need to define PHY register definition. + *********************************************************************/ + +#ifndef _SHR_PKT_H +#define _SHR_PKT_H +#include +#include +#include +#include + + + +#define _SHR_PKT_NOF_DNX_HEADERS 9 +#define _SHR_PKT_DNX_RAW_SIZE_MAX 20 + +#endif /* _SHR_PKT_H */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/shared/port.h +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/include/shared/port.h @@ -0,0 +1,230 @@ +/********************************************************************* + * + * (C) Copyright Broadcom Corporation 2013-2017 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + ******************************************************************** + * File: port.h + * Details: This file defines common network port parameters. + * + * Its contents are not used directly by applications; + * it is used only by header files of parent APIs + * which need to define port parameters. + * *******************************************************************/ + +#ifndef _SHR_PORT_H +#define _SHR_PORT_H + +/* + * Typedef: + * _shr_port_t + * Purpose: + * Port number type for shared definitions + */ +#include + +typedef int _shr_port_t; + +/* + * Defines: + * _SHR_PORT_DUPLEX_* + * Purpose: + * Defines duplexity of a port + */ + +typedef enum _shr_port_duplex_e { + _SHR_PORT_DUPLEX_HALF, + _SHR_PORT_DUPLEX_FULL, + _SHR_PORT_DUPLEX_COUNT /* last, please */ +} _shr_port_duplex_t; + +/* + * Defines: + * _SHR_PORT_IF_* + * Purpose: + * Defines interface type between MAC and PHY. + */ + +typedef enum _shr_port_if_e { + _SHR_PORT_IF_NOCXN, /* No physical connection */ + _SHR_PORT_IF_NULL, /* Pass-through connection without PHY */ + _SHR_PORT_IF_MII, + _SHR_PORT_IF_GMII, + _SHR_PORT_IF_SGMII, + _SHR_PORT_IF_TBI, + _SHR_PORT_IF_XGMII, + _SHR_PORT_IF_RGMII, + _SHR_PORT_IF_RvMII, + _SHR_PORT_IF_SFI, + _SHR_PORT_IF_XFI, + _SHR_PORT_IF_KR, + _SHR_PORT_IF_KR4, + _SHR_PORT_IF_CR, + _SHR_PORT_IF_CR4, + _SHR_PORT_IF_XLAUI, + _SHR_PORT_IF_SR, + _SHR_PORT_IF_RXAUI, + _SHR_PORT_IF_XAUI, + _SHR_PORT_IF_SPAUI, + _SHR_PORT_IF_QSGMII, + _SHR_PORT_IF_ILKN, + _SHR_PORT_IF_RCY, + _SHR_PORT_IF_FAT_PIPE, + _SHR_PORT_IF_CGMII, + _SHR_PORT_IF_CAUI, + _SHR_PORT_IF_LR, + _SHR_PORT_IF_LR4, + _SHR_PORT_IF_SR4, + _SHR_PORT_IF_KX, + _SHR_PORT_IF_ZR, + _SHR_PORT_IF_SR10, + _SHR_PORT_IF_OTL, + _SHR_PORT_IF_CPU, + _SHR_PORT_IF_OLP, + _SHR_PORT_IF_OAMP, + _SHR_PORT_IF_ERP, + _SHR_PORT_IF_TM_INTERNAL_PKT, + _SHR_PORT_IF_SR2, + _SHR_PORT_IF_KR2, + _SHR_PORT_IF_CR2, + _SHR_PORT_IF_XFI2, + _SHR_PORT_IF_XLAUI2, + _SHR_PORT_IF_CR10, + _SHR_PORT_IF_KR10, + _SHR_PORT_IF_LR10, + _SHR_PORT_IF_ER, + _SHR_PORT_IF_ER2, + _SHR_PORT_IF_ER4, + _SHR_PORT_IF_CX, + _SHR_PORT_IF_CX2, + _SHR_PORT_IF_CX4, + _SHR_PORT_IF_CAUI_C2C, + _SHR_PORT_IF_CAUI_C2M, + _SHR_PORT_IF_VSR, + _SHR_PORT_IF_LR2, + _SHR_PORT_IF_LRM, + _SHR_PORT_IF_XLPPI, + _SHR_PORT_IF_2500X, + _SHR_PORT_IF_SAT, + _SHR_PORT_IF_IPSEC, + _SHR_PORT_IF_LBG, + _SHR_PORT_IF_CAUI4, + _SHR_PORT_IF_5000X, + _SHR_PORT_IF_EVENTOR, + _SHR_PORT_IF_COUNT /* last, please */ +} _shr_port_if_t; + +/* + * Defines: + * _SHR_PORT_STP_* + * Purpose: + * Defines the spanning tree states of a port. + */ + +typedef enum _shr_port_stp_e { + _SHR_PORT_STP_DISABLE = 0, + _SHR_PORT_STP_BLOCK = 1, + _SHR_PORT_STP_LISTEN = 2, + _SHR_PORT_STP_LEARN = 3, + _SHR_PORT_STP_FORWARD = 4, + _SHR_PORT_STP_COUNT = 5 /* last, please */ +} _shr_port_stp_t; + +/* + * Defines: + * _SHR_PORT_MDIX_* + * Purpose: + * Defines the MDI crossover (MDIX) modes for the port + */ +typedef enum _shr_port_mdix_e { + _SHR_PORT_MDIX_AUTO, + _SHR_PORT_MDIX_FORCE_AUTO, + _SHR_PORT_MDIX_NORMAL, + _SHR_PORT_MDIX_XOVER, + _SHR_PORT_MDIX_COUNT /* last, please */ +} _shr_port_mdix_t; + +/* + * Defines: + * _SHR_PORT_MDIX_STATUS_* + * Purpose: + * Defines the MDI crossover state + */ +typedef enum _shr_port_mdix_status_e { + _SHR_PORT_MDIX_STATUS_NORMAL, + _SHR_PORT_MDIX_STATUS_XOVER, + _SHR_PORT_MDIX_STATUS_COUNT /* last, please */ +} _shr_port_mdix_status_t; + +/* + * Defines: + * _SHR_PORT_MEDIUM_* + * Purpose: + * Supported physical mediums + */ +typedef enum _shr_port_medium_e { + _SHR_PORT_MEDIUM_NONE = 0, + _SHR_PORT_MEDIUM_COPPER = 1, + _SHR_PORT_MEDIUM_FIBER = 2, + _SHR_PORT_MEDIUM_COUNT /* last, please */ +} _shr_port_medium_t; + +/* + * Defines: + * _SHR_PORT_PHY_CONTROL_* + * Purpose: + * PHY specific control settings + */ +typedef enum _shr_port_phy_control_e { + _SHR_PORT_PHY_CONTROL_FORWARD_ERROR_CORRECTION = 74, + _SHR_PORT_PHY_CONTROL_SOFTWARE_RX_LOS = 214, + _SHR_PORT_PHY_CONTROL_SOFTWARE_RX_LOS_LINK_WAIT_TIMER_US = 328, + _SHR_PORT_PHY_CONTROL_SOFTWARE_RX_LOS_RESTART_TIMER_US = 329 +} _shr_port_phy_control_t; + +/* + * Defines: + * _SHR_PORT_PRBS_POLYNOMIAL_* + * Purpose: + * PRBS polynomial type + */ +typedef enum _shr_port_prbs_polynomial_e { + _SHR_PORT_PRBS_POLYNOMIAL_X7_X6_1 = 0, + _SHR_PORT_PRBS_POLYNOMIAL_X15_X14_1 = 1, + _SHR_PORT_PRBS_POLYNOMIAL_X23_X18_1 = 2, + _SHR_PORT_PRBS_POLYNOMIAL_X31_X28_1 = 3, + _SHR_PORT_PRBS_POLYNOMIAL_X9_X5_1 = 4, + _SHR_PORT_PRBS_POLYNOMIAL_X11_X9_1 = 5, + _SHR_PORT_PRBS_POLYNOMIAL_X58_X31_1 = 6 +} _shr_port_prbs_polynomial_t; + +/* + * Defines: + * _SHR_PORT_PHY_CONTROL_FEC_* + * Purpose: + * PHY specific values for _SHR_PORT_PHY_CONTROL_FORWARD_ERROR_CORRECTION + */ +typedef enum _shr_port_phy_control_fec_e { + _SHR_PORT_PHY_CONTROL_FEC_OFF, + _SHR_PORT_PHY_CONTROL_FEC_ON, + _SHR_PORT_PHY_CONTROL_FEC_AUTO +} _shr_port_phy_control_fec_t; + +typedef enum _shr_port_phy_control_rx_los_e { + _SHR_PORT_PHY_CONTROL_RX_LOS_NONE, + _SHR_PORT_PHY_CONTROL_RX_LOS_SOFTWARE, + _SHR_PORT_PHY_CONTROL_RX_LOS_FIRMWARE +} _shr_port_phy_control_rx_los_t; + +#endif /* !_SHR_PORT_H */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/shared/port_ability.h +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/include/shared/port_ability.h @@ -0,0 +1,274 @@ +/********************************************************************* + * + * (C) Copyright Broadcom Corporation 2013-2017 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + ******************************************************************* + * File: port_ability.h + * Details: This file defines common network port modes. + * Its contents are not used directly by applications; + * it is used only by header files of parent APIs which + * need to define port modes. + ******************************************************************/ + +#ifndef _SHR_PORTABILITY_H +#define _SHR_PORTABILITY_H + +typedef unsigned int _shr_pa_encap_t; + +typedef struct _shr_port_ability_s { + _shr_port_mode_t speed_half_duplex; + _shr_port_mode_t speed_full_duplex; + _shr_port_mode_t pause; + _shr_port_mode_t interface; + _shr_port_mode_t medium; + _shr_port_mode_t loopback; + _shr_port_mode_t flags; + _shr_port_mode_t eee; + _shr_port_mode_t rsvd; + _shr_pa_encap_t encap; + _shr_port_mode_t fec; + _shr_port_mode_t channel; +} _shr_port_ability_t; + +#define _SHR_PA_ABILITY_ALL (0xffffffff) +#define _SHR_PA_ABILITY_NONE (0) + +/* + * Defines: + * _SHR_PA_SPEED_* + * Purpose: + * Defines for half duplex port speeds. + */ +#define _SHR_PA_SPEED_10MB (1 << 0) +#define _SHR_PA_SPEED_EXTENDED (1 << 1) +#define _SHR_PA_SPEED_27GB (1 << 2) +#define _SHR_PA_SPEED_50GB (1 << 3) +#define _SHR_PA_SPEED_53GB (1 << 4) +#define _SHR_PA_SPEED_100MB (1 << 5) +#define _SHR_PA_SPEED_1000MB (1 << 6) +#define _SHR_PA_SPEED_2500MB (1 << 7) +#define _SHR_PA_SPEED_3000MB (1 << 8) +#define _SHR_PA_SPEED_5000MB (1 << 9) +#define _SHR_PA_SPEED_6000MB (1 << 10) +#define _SHR_PA_SPEED_10GB (1 << 11) +#define _SHR_PA_SPEED_11GB (1 << 12) +#define _SHR_PA_SPEED_12GB (1 << 13) +#define _SHR_PA_SPEED_12P5GB (1 << 14) +#define _SHR_PA_SPEED_13GB (1 << 15) +#define _SHR_PA_SPEED_15GB (1 << 16) +#define _SHR_PA_SPEED_16GB (1 << 17) +#define _SHR_PA_SPEED_20GB (1 << 18) +#define _SHR_PA_SPEED_21GB (1 << 19) +#define _SHR_PA_SPEED_23GB (1 << 20) +#define _SHR_PA_SPEED_24GB (1 << 21) +#define _SHR_PA_SPEED_25GB (1 << 22) +#define _SHR_PA_SPEED_30GB (1 << 23) +#define _SHR_PA_SPEED_40GB (1 << 24) +#define _SHR_PA_SPEED_42GB (1 << 25) +#define _SHR_PA_SPEED_100GB (1 << 26) +#define _SHR_PA_SPEED_120GB (1 << 27) +#define _SHR_PA_SPEED_127GB (1 << 28) +#define _SHR_PA_SPEED_106GB (1 << 29) +#define _SHR_PA_SPEED_48GB (1 << 30) +#define _SHR_PA_SPEED_32GB (1 << 31) + +/* + * Defines: + * _SHR_PA_PAUSE_* + * Purpose: + * Defines for flow control abilities. + */ +#define _SHR_PA_PAUSE_TX (1 << 0) /* TX pause capable */ +#define _SHR_PA_PAUSE_RX (1 << 1) /* RX pause capable */ +#define _SHR_PA_PAUSE_ASYMM (1 << 2) /* Asymm pause capable (R/O) */ + +/* + * Defines: + * _SHR_PA_FEC_* + * Purpose: + * Defines for FEC abilities. + */ + +#define _SHR_PA_FEC_NONE (1 << 0) /* FEC is not requested */ +#define _SHR_PA_FEC_CL74 (1 << 1) /* FEC CL74 ability request */ +#define _SHR_PA_FEC_CL91 (1 << 2) /* FEC Cl91 ability request */ + +/* + * Defines: + * _SHR_PA_INTF_* + * Purpose: + * Defines for port interfaces supported. + */ +#define _SHR_PA_INTF_TBI (1 << 0) /* TBI mode supported */ +#define _SHR_PA_INTF_MII (1 << 1) /* MII mode supported */ +#define _SHR_PA_INTF_GMII (1 << 2) /* GMII mode supported */ +#define _SHR_PA_INTF_RGMII (1 << 3) /* RGMII mode supported */ +#define _SHR_PA_INTF_SGMII (1 << 4) /* SGMII mode supported */ +#define _SHR_PA_INTF_XGMII (1 << 5) /* XGMII mode supported */ +#define _SHR_PA_INTF_QSGMII (1 << 6) /* QSGMII mode supported */ +#define _SHR_PA_INTF_CGMII (1 << 7) /* CGMII mode supported */ + +/* + * Defines: + * _SHR_PA_CHANNEL_* + * Purpose: + * Defines for CHANNEL abilities. + */ + +#define _SHR_PA_CHANNEL_LONG (1 << 0) /* Channel is long */ +#define _SHR_PA_CHANNEL_SHORT (1 << 1) /* Channel is short */ + +/* + * Defines: + * _SHR_PA_MEDIUM_* + * Purpose: + * Defines for port medium modes. + */ +#define _SHR_PA_MEDIUM_COPPER (1 << 0) +#define _SHR_PA_MEDIUM_FIBER (1 << 1) +#define _SHR_PA_MEDIUM_BACKPLANE (1 << 2) + +/* + * Defines: + * _SHR_PA_LOOPBACK_* + * Purpose: + * Defines for port loopback modes. + */ +#define _SHR_PA_LB_NONE (1 << 0) /* Useful for automated test */ +#define _SHR_PA_LB_MAC (1 << 1) /* MAC loopback supported */ +#define _SHR_PA_LB_PHY (1 << 2) /* PHY loopback supported */ +#define _SHR_PA_LB_LINE (1 << 3) /* PHY lineside loopback */ + +/* + * Defines: + * _SHR_PA_FLAGS_* + * Purpose: + * Defines for the reest of port ability flags. + */ +#define _SHR_PA_AUTONEG (1 << 0) /* Auto-negotiation */ +#define _SHR_PA_COMBO (1 << 1) /* COMBO ports support both + * copper and fiber interfaces */ +#define _SHR_PA_PAUSE (_SHR_PA_PAUSE_TX | _SHR_PA_PAUSE_RX) + +#define _SHR_PA_SPEED_ALL (_SHR_PA_SPEED_127GB | \ + _SHR_PA_SPEED_120GB | \ + _SHR_PA_SPEED_106GB | \ + _SHR_PA_SPEED_100GB | \ + _SHR_PA_SPEED_53GB | \ + _SHR_PA_SPEED_50GB | \ + _SHR_PA_SPEED_42GB | \ + _SHR_PA_SPEED_40GB | \ + _SHR_PA_SPEED_32GB | \ + _SHR_PA_SPEED_30GB | \ + _SHR_PA_SPEED_27GB | \ + _SHR_PA_SPEED_25GB | \ + _SHR_PA_SPEED_24GB | \ + _SHR_PA_SPEED_23GB | \ + _SHR_PA_SPEED_21GB | \ + _SHR_PA_SPEED_20GB | \ + _SHR_PA_SPEED_16GB | \ + _SHR_PA_SPEED_15GB | \ + _SHR_PA_SPEED_13GB | \ + _SHR_PA_SPEED_12P5GB | \ + _SHR_PA_SPEED_12GB | \ + _SHR_PA_SPEED_11GB | \ + _SHR_PA_SPEED_10GB | \ + _SHR_PA_SPEED_6000MB | \ + _SHR_PA_SPEED_5000MB | \ + _SHR_PA_SPEED_3000MB | \ + _SHR_PA_SPEED_2500MB | \ + _SHR_PA_SPEED_1000MB | \ + _SHR_PA_SPEED_100MB | \ + _SHR_PA_SPEED_10MB) + + +#define _SHR_PA_SPEED_MAX(m) (((m) & _SHR_PA_SPEED_127GB) ? 127000 : \ + ((m) & _SHR_PA_SPEED_120GB) ? 120000 : \ + ((m) & _SHR_PA_SPEED_106GB) ? 106000 : \ + ((m) & _SHR_PA_SPEED_100GB) ? 100000 : \ + ((m) & _SHR_PA_SPEED_53GB) ? 53000 : \ + ((m) & _SHR_PA_SPEED_50GB) ? 50000 : \ + ((m) & _SHR_PA_SPEED_42GB) ? 42000 : \ + ((m) & _SHR_PA_SPEED_40GB) ? 40000 : \ + ((m) & _SHR_PA_SPEED_32GB) ? 32000 : \ + ((m) & _SHR_PA_SPEED_30GB) ? 30000 : \ + ((m) & _SHR_PA_SPEED_27GB) ? 27000 : \ + ((m) & _SHR_PA_SPEED_25GB) ? 25000 : \ + ((m) & _SHR_PA_SPEED_24GB) ? 24000 : \ + ((m) & _SHR_PA_SPEED_23GB) ? 23000 : \ + ((m) & _SHR_PA_SPEED_21GB) ? 21000 : \ + ((m) & _SHR_PA_SPEED_20GB) ? 20000 : \ + ((m) & _SHR_PA_SPEED_16GB) ? 16000 : \ + ((m) & _SHR_PA_SPEED_15GB) ? 15000 : \ + ((m) & _SHR_PA_SPEED_13GB) ? 13000 : \ + ((m) & _SHR_PA_SPEED_12P5GB) ? 12500 : \ + ((m) & _SHR_PA_SPEED_12GB) ? 12000 : \ + ((m) & _SHR_PA_SPEED_11GB) ? 11000 : \ + ((m) & _SHR_PA_SPEED_10GB) ? 10000 : \ + ((m) & _SHR_PA_SPEED_6000MB) ? 6000 : \ + ((m) & _SHR_PA_SPEED_5000MB) ? 5000 : \ + ((m) & _SHR_PA_SPEED_3000MB) ? 3000 : \ + ((m) & _SHR_PA_SPEED_2500MB) ? 2500 : \ + ((m) & _SHR_PA_SPEED_1000MB) ? 1000 : \ + ((m) & _SHR_PA_SPEED_100MB) ? 100 : \ + ((m) & _SHR_PA_SPEED_10MB) ? 10 : 0) + + +#define _SHR_PA_SPEED(s) ((127000 == (s)) ? _SHR_PA_SPEED_127GB : \ + (120000 == (s)) ? _SHR_PA_SPEED_120GB : \ + (106000 == (s)) ? _SHR_PA_SPEED_106GB : \ + (100000 == (s)) ? _SHR_PA_SPEED_100GB : \ + (53000 == (s)) ? _SHR_PA_SPEED_53GB : \ + (50000 == (s)) ? _SHR_PA_SPEED_50GB : \ + (42000 == (s)) ? _SHR_PA_SPEED_42GB : \ + (40000 == (s)) ? _SHR_PA_SPEED_40GB : \ + (32000 == (s)) ? _SHR_PA_SPEED_32GB : \ + (30000 == (s)) ? _SHR_PA_SPEED_30GB : \ + (27000 == (s)) ? _SHR_PA_SPEED_27GB : \ + (25000 == (s)) ? _SHR_PA_SPEED_25GB : \ + (24000 == (s)) ? _SHR_PA_SPEED_24GB : \ + (23000 == (s)) ? _SHR_PA_SPEED_23GB : \ + (21000 == (s)) ? _SHR_PA_SPEED_21GB : \ + (20000 == (s)) ? _SHR_PA_SPEED_20GB : \ + (16000 == (s)) ? _SHR_PA_SPEED_16GB : \ + (15000 == (s)) ? _SHR_PA_SPEED_15GB : \ + (13000 == (s)) ? _SHR_PA_SPEED_13GB : \ + (12500 == (s)) ? _SHR_PA_SPEED_12P5GB : \ + (12000 == (s)) ? _SHR_PA_SPEED_12GB : \ + (11000 == (s)) ? _SHR_PA_SPEED_11GB : \ + (10000 == (s)) ? _SHR_PA_SPEED_10GB : \ + (6000 == (s)) ? _SHR_PA_SPEED_6000MB : \ + (5000 == (s)) ? _SHR_PA_SPEED_5000MB : \ + (3000 == (s)) ? _SHR_PA_SPEED_3000MB : \ + (2500 == (s)) ? _SHR_PA_SPEED_2500MB : \ + (1000 == (s)) ? _SHR_PA_SPEED_1000MB : \ + (100 == (s)) ? _SHR_PA_SPEED_100MB : \ + (10 == (s)) ? _SHR_PA_SPEED_10MB : 0) + + +/* + * Defines: + * _SHR_PA_EEE_* + * Purpose: + * Defines for EEE + */ +#define _SHR_PA_EEE_100MB_BASETX (1 << 0) /* EEE for 100M-BaseTX */ +#define _SHR_PA_EEE_1GB_BASET (1 << 1) /* EEE for 1G-BaseT */ +#define _SHR_PA_EEE_10GB_BASET (1 << 2) /* EEE for 10G-BaseT */ +#define _SHR_PA_EEE_10GB_KX (1 << 3) /* EEE for 10G-KX */ +#define _SHR_PA_EEE_10GB_KX4 (1 << 4) /* EEE for 10G-KX4 */ +#define _SHR_PA_EEE_10GB_KR (1 << 5) /* EEE for 10G-KR */ + +#endif /* !_SHR_PORTABILITY_H */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/shared/portmode.h +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/include/shared/portmode.h @@ -0,0 +1,131 @@ +/********************************************************************* + * + * (C) Copyright Broadcom Corporation 2013-2016 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + ********************************************************************* + * File: portmode.h + * Details: This file defines common network port modes. + * + * Its contents are not used directly by applications; + * it is used only by header files of parent APIs which + * need to define port modes. + ********************************************************************/ + +#ifndef _SHR_PORTMODE_H +#define _SHR_PORTMODE_H + +typedef unsigned int _shr_port_mode_t; + +/* + * Defines: + * _SHR_PM_* + * Purpose: + * Defines for port modes. + */ + +#define _SHR_PM_10MB_HD (1 << 0) +#define _SHR_PM_10MB_FD (1 << 1) +#define _SHR_PM_100MB_HD (1 << 2) +#define _SHR_PM_100MB_FD (1 << 3) +#define _SHR_PM_1000MB_HD (1 << 4) +#define _SHR_PM_1000MB_FD (1 << 5) +#define _SHR_PM_2500MB_HD (1 << 6) +#define _SHR_PM_2500MB_FD (1 << 7) +#define _SHR_PM_10GB_HD (1 << 8) +#define _SHR_PM_10GB_FD (1 << 9) +#define _SHR_PM_PAUSE_TX (1 << 10) /* TX pause capable */ +#define _SHR_PM_PAUSE_RX (1 << 11) /* RX pause capable */ +#define _SHR_PM_PAUSE_ASYMM (1 << 12) /* Asymm pause capable (R/O) */ +#define _SHR_PM_TBI (1 << 13) /* TBI mode supported */ +#define _SHR_PM_MII (1 << 14) /* MII mode supported */ +#define _SHR_PM_GMII (1 << 15) /* GMII mode supported */ +#define _SHR_PM_SGMII (1 << 16) /* SGMII mode supported */ +#define _SHR_PM_XGMII (1 << 17) /* XGMII mode supported */ +#define _SHR_PM_LB_MAC (1 << 18) /* MAC loopback supported */ +#define _SHR_PM_LB_NONE (1 << 19) /* Useful for automated test */ +#define _SHR_PM_LB_PHY (1 << 20) /* PHY loopback supported */ +#define _SHR_PM_AN (1 << 21) /* Auto-negotiation */ +#define _SHR_PM_3000MB_HD (1 << 29) +#define _SHR_PM_3000MB_FD (1 << 30) +#define _SHR_PM_12GB_HD (1 << 22) +#define _SHR_PM_12GB_FD (1 << 23) +#define _SHR_PM_13GB_HD (1 << 24) +#define _SHR_PM_13GB_FD (1 << 25) +#define _SHR_PM_16GB_HD (1 << 26) +#define _SHR_PM_16GB_FD (1 << 27) +#define _SHR_PM_COMBO (1 << 31) /* COMBO ports support both + * copper and fiber interfaces */ + +#define _SHR_PM_PAUSE (_SHR_PM_PAUSE_TX | _SHR_PM_PAUSE_RX) +#define _SHR_PM_10MB (_SHR_PM_10MB_HD | _SHR_PM_10MB_FD) +#define _SHR_PM_100MB (_SHR_PM_100MB_HD | _SHR_PM_100MB_FD) +#define _SHR_PM_1000MB (_SHR_PM_1000MB_HD | _SHR_PM_1000MB_FD) +#define _SHR_PM_2500MB (_SHR_PM_2500MB_HD | _SHR_PM_2500MB_FD) +#define _SHR_PM_3000MB (_SHR_PM_3000MB_HD | _SHR_PM_3000MB_FD) +#define _SHR_PM_10GB (_SHR_PM_10GB_HD | _SHR_PM_10GB_FD) +#define _SHR_PM_12GB (_SHR_PM_12GB_HD | _SHR_PM_12GB_FD) +#define _SHR_PM_13GB (_SHR_PM_13GB_HD | _SHR_PM_13GB_FD) +#define _SHR_PM_16GB (_SHR_PM_16GB_HD | _SHR_PM_16GB_FD) + +#define _SHR_PM_SPEED_ALL (_SHR_PM_16GB | \ + _SHR_PM_13GB | \ + _SHR_PM_12GB | \ + _SHR_PM_10GB | \ + _SHR_PM_3000MB | \ + _SHR_PM_2500MB | \ + _SHR_PM_1000MB | \ + _SHR_PM_100MB | \ + _SHR_PM_10MB) + +#define _SHR_PM_SPEED_MAX(m) (((m) & _SHR_PM_16GB) ? 16000 : \ + ((m) & _SHR_PM_13GB) ? 13000 : \ + ((m) & _SHR_PM_12GB) ? 12000 : \ + ((m) & _SHR_PM_10GB) ? 10000 : \ + ((m) & _SHR_PM_3000MB) ? 3000 : \ + ((m) & _SHR_PM_2500MB) ? 2500 : \ + ((m) & _SHR_PM_1000MB) ? 1000 : \ + ((m) & _SHR_PM_100MB) ? 100 : \ + ((m) & _SHR_PM_10MB) ? 10 : 0) + +#define _SHR_PM_SPEED(s) ((16000 == (s)) ? _SHR_PM_16GB : \ + (13000 == (s)) ? _SHR_PM_13GB : \ + (12000 == (s)) ? _SHR_PM_12GB : \ + (10000 == (s)) ? _SHR_PM_10GB : \ + (3000 == (s)) ? _SHR_PM_3000MB : \ + (2500 == (s)) ? _SHR_PM_2500MB : \ + (1000 == (s)) ? _SHR_PM_1000MB : \ + (100 == (s)) ? _SHR_PM_100MB : \ + (10 == (s)) ? _SHR_PM_10MB : 0) + +#define _SHR_PM_FD (_SHR_PM_16GB_FD | \ + _SHR_PM_13GB_FD | \ + _SHR_PM_12GB_FD | \ + _SHR_PM_10GB_FD | \ + _SHR_PM_3000MB_FD | \ + _SHR_PM_2500MB_FD | \ + _SHR_PM_1000MB_FD | \ + _SHR_PM_100MB_FD | \ + _SHR_PM_10MB_FD) + +#define _SHR_PM_HD (_SHR_PM_16GB_HD | \ + _SHR_PM_13GB_HD | \ + _SHR_PM_12GB_HD | \ + _SHR_PM_10GB_HD | \ + _SHR_PM_3000MB_HD | \ + _SHR_PM_2500MB_HD | \ + _SHR_PM_1000MB_HD | \ + _SHR_PM_100MB_HD | \ + _SHR_PM_10MB_HD) +#endif /* !_SHR_PORTMODE_H */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/shared/rx.h +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/include/shared/rx.h @@ -0,0 +1,535 @@ +/********************************************************************* + * + * (C) Copyright Broadcom Corporation 2013-2017 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + ********************************************************************* + * File: rx.h + * Details: Packet Receive Reason Types + ********************************************************************/ + +#ifndef _SHR_RX_H_ +#define _SHR_RX_H_ + +#include +#include + +/* + * PKT RX Packet Reasons; reason CPU received the packet. + * Notes: It is possible no reasons are set (directed to CPU from ARL + * for example), or multiple reasons may be set. + */ + +typedef enum _shr_rx_reason_e { + _SHR_RX_INVALID = 0, + _SHR_RX_ARP = 1, /* ARP Packet */ + _SHR_RX_BPDU = 2, /* BPDU Packet */ + _SHR_RX_BROADCAST = 3, /* Broadcast packet */ + _SHR_RX_CLASS_BASED_MOVE = 4, /* Class-based move prevented */ + _SHR_RX_CLASS_TAG_PACKETS = 5, /* Higig Header with PPD=1 */ + _SHR_RX_CONTROL = 6, /* Control frame or reserved addr */ + _SHR_RX_CPU_LEARN = 7, /* CPU Learned (or VLAN not found */ + /* on Strata devices) */ + _SHR_RX_DEST_LOOKUP_FAIL = 8, /* Destination lookup fail (or L3 */ + /* station move on Strata devices) */ + _SHR_RX_DHCP = 9, /* DHCP packets */ + _SHR_RX_DOS_ATTACK = 10, /* DOS Attack Packet */ + _SHR_RX_E2E_HOL_IBP = 11, /* E2E HOL or IBP Packet */ + _SHR_RX_ENCAP_HIGIG_ERROR = 12, /* Non-HG packets received on an */ + /* E-HG port */ + _SHR_RX_FILTER_MATCH = 13, /* Filter Match */ + _SHR_RX_GRE_CHECKSUM = 14, /* GRE checksum */ + _SHR_RX_GRE_SOURCE_ROUTE = 15, /* GRE source routing */ + _SHR_RX_HIGIG_CONTROL = 16, /* Higig Packet with Control Opcode */ + _SHR_RX_HIGIG_HDR_ERROR = 17, /* Higig+ header errors */ + _SHR_RX_ICMP_REDIRECT = 18, /* ICMP Recirect */ + _SHR_RX_IGMP = 19, /* IGMP packet */ + _SHR_RX_INGRESS_FILTER = 20, /* Ingress Filter (VLAN membership) */ + _SHR_RX_IP = 21, /* IP packet */ + _SHR_RX_IPFIX_RATE_VIOLATION = 22, /* IPFIX flows exceed metering */ + _SHR_RX_IP_MCAST_MISS = 23, /* IPMC miss */ + _SHR_RX_IP_OPTION_VERSION = 24, /* IP options present or IP ver != 4 */ + _SHR_RX_IPMC = 25, /* Class D IP multicast packet */ + _SHR_RX_IPMC_RSVD = 26, /* IPMC Reserved Packet */ + _SHR_RX_L2_CPU = 27, /* L2_TABLE - copy to CPU (on 5690) */ + _SHR_RX_L2_DEST_MISS = 28, /* L2 destination lookup failure */ + _SHR_RX_L2_LEARN_LIMIT = 29, /* L2 Learn Limit */ + _SHR_RX_L2_MOVE = 30, /* L2 Station Movement */ + _SHR_RX_L2_MTU_FAIL = 31, /* L2 MTU check fail */ + _SHR_RX_L2_NON_UNICAST_MISS = 32, /* L2 Non-Unicast lookup miss */ + _SHR_RX_L2_SOURCE_MISS = 33, /* L2 source lookup failure */ + _SHR_RX_L3_ADDR_BIND_FAIL = 34, /* MAC to IP bind check failure */ + _SHR_RX_L3_DEST_MISS = 35, /* L3 DIP Miss */ + _SHR_RX_L3_HEADER_ERROR = 36, /* L3 header - IP options, */ + _SHR_RX_L3_MTU_FAIL = 37, /* L3 MTU check fail */ + _SHR_RX_L3_SLOW_PATH = 38, /* L3 slow path processed pkt. */ + _SHR_RX_L3_SOURCE_MISS = 39, /* L3 SIP Miss */ + _SHR_RX_L3_SOUCE_MOVE = 40, /* L3 Station Movement */ + _SHR_RX_MARTIAN_ADDR = 41, /* Pkt. with Martian address */ + _SHR_RX_MCAST_IDX_ERROR = 42, /* Multicast index error */ + _SHR_RX_MCAST_MISS = 43, /* MC miss */ + _SHR_RX_MIM_SERVICE_ERROR = 44, /* MiM terminated unicast packets */ + /* that do not have a valid I-SID */ + _SHR_RX_MPLS_CTRL_WORD_ERROR = 45, /* MPLS Control Word type is not 0 */ + _SHR_RX_MPLS_ERROR = 46, /* MPLS error */ + _SHR_RX_MPLS_INVALID_ACTION = 47, /* MPLS Invalid Action */ + _SHR_RX_MPLS_INVALID_PAYLOAD = 48, /* MPLS Invalid Payload */ + _SHR_RX_MPLS_LABEL_MISS = 49, /* MPLS table miss */ + _SHR_RX_MPLS_SEQUENCE_NUMBER = 50, /* MPLS Sequence number */ + _SHR_RX_MPLS_TTL = 51, /* MPLS TTL */ + _SHR_RX_MULTICAST = 52, /* Multicast packet */ + _SHR_RX_NHOP = 53, /* Copy to CPU from NH Idx Tbl */ + _SHR_RX_OAM_ERROR = 54, /* OAM packets to CPU for error cases */ + _SHR_RX_OAM_SLOW_PATH = 55, /* OAM packets to CPU - slowpath */ + /* process */ + _SHR_RX_OAM_LMDM = 56, /* OAM LMM/LMR, DMM/DMR packets to CPU */ + _SHR_RX_PARITY_ERROR = 57, /* Parity error on IP tables */ + _SHR_RX_PROTOCOL = 58, /* Protocol Packet */ + _SHR_RX_SAMPLE_DEST = 59, /* Egress sFlow sampled */ + _SHR_RX_SAMPLE_SOURCE = 60, /* Ingress sFlow sampled */ + _SHR_RX_SHARED_VLAN_MISMATCH = 61, /* Private VLAN Mismatch */ + _SHR_RX_SOURCE_ROUTE = 62, /* Source routing bit set */ + _SHR_RX_TIME_STAMP = 63, /* Network time sync packet */ + _SHR_RX_TTL = 64, /* TTL <= 0 or TTL < IPMC threshold */ + _SHR_RX_TTL1 = 65, /* L3UC or IPMC packet with TTL */ + /* equal to 1 */ + _SHR_RX_TUNNEL_ERROR = 66, /* Tunnel error trap */ + _SHR_RX_UDP_CHECKSUM = 67, /* UDP checksum */ + _SHR_RX_UNKNOWN_VLAN = 68, /* Unknown VLAN; VID = 0xfff; */ + /* CPU Learn bit (on 5690 devices) */ + _SHR_RX_URPF_FAIL = 69, /* URPF Check Failed */ + _SHR_RX_VC_LABEL_MISS = 70, /* VPLS table miss */ + _SHR_RX_VLAN_FILTER_MATCH = 71, /* VLAN Filter Match */ + _SHR_RX_WLAN_CLIENT_ERROR = 72, /* ROC error packets to the CPU */ + _SHR_RX_WLAN_SLOW_PATH = 73, /* WLAN packets slowpath to the CPU */ + _SHR_RX_WLAN_DOT1X_DROP = 74, /* WLAN client is unauthenticated */ + _SHR_RX_EXCEPTION_FLOOD = 75, /* Exception processing or flooding */ + /* (Robo chips) */ + _SHR_RX_TIMESYNC = 76, /* Time Sync protocol packet */ + _SHR_RX_EAV_DATA = 77, /* Ethernet AV data packet */ + _SHR_RX_SAME_PORT_BRIDGE = 78, /* Hairpin or Same port */ + /* switching/bridging */ + _SHR_RX_SPLIT_HORIZON = 79, /* Basic bridging or VPLS Split */ + /* horizon */ + _SHR_RX_L4_ERROR = 80, /* TCP/UDP header or port number */ + /* errors */ + _SHR_RX_STP = 81, /* STP Ingress or Egress checks */ + _SHR_RX_EGRESS_FILTER_REDIRECT = 82, /* Vlan egress filter redirect */ + _SHR_RX_FILTER_REDIRECT = 83, /* Field processor redirect */ + _SHR_RX_LOOPBACK = 84, /* Loopbacked */ + _SHR_RX_VLAN_TRANSLATE = 85, /* VLAN translation table missed when */ + /* it is expected to hit */ + _SHR_RX_MMRP = 86, /* Packet of type MMRP */ + _SHR_RX_SRP = 87, /* Packet of type SRP */ + _SHR_RX_TUNNEL_CONTROL = 88, /* Tunnel control packet */ + _SHR_RX_L2_MARKED = 89, /* L2 table marked */ + _SHR_RX_WLAN_SLOWPATH_KEEPALIVE = 90, /* WLAN slowpath to the CPU, */ + /* otherwise dropped */ + _SHR_RX_STATION = 91, /* My Station packet to CPU */ + _SHR_RX_NIV = 92, /* NIV packet */ + _SHR_RX_NIV_PRIO_DROP = 93, /* NIV packet, priority drop */ + _SHR_RX_NIV_INTERFACE_MISS = 94, /* NIV packet, interface miss */ + _SHR_RX_NIV_RPF_FAIL = 95, /* NIV packet, RPF failed */ + _SHR_RX_NIV_TAG_INVALID = 96, /* NIV packet, invalid tag */ + _SHR_RX_NIV_TAG_DROP = 97, /* NIV packet, tag drop */ + _SHR_RX_NIV_UNTAG_DROP = 98, /* NIV packet, untagged drop */ + _SHR_RX_TRILL = 99, /* TRILL packet */ + _SHR_RX_TRILL_INVALID = 100, /* TRILL packet, header error */ + _SHR_RX_TRILL_MISS = 101, /* TRILL packet, lookup miss */ + _SHR_RX_TRILL_RPF_FAIL = 102, /* TRILL packet, RPF check failed */ + _SHR_RX_TRILL_SLOWPATH = 103, /* TRILL packet, slowpath to CPU */ + _SHR_RX_TRILL_CORE_IS_IS = 104, /* TRILL packet, Core IS-IS */ + _SHR_RX_TRILL_TTL = 105, /* TRILL packet, TTL check failed */ + _SHR_RX_BFD_SLOWPATH = 106, /* The BFD packet is being fwd to the */ + /* local uC for processing */ + _SHR_RX_BFD = 107, /* BFD Error */ + _SHR_RX_MIRROR = 108, /* Mirror packet */ + _SHR_RX_REGEX_ACTION = 109, /* Flow tracker */ + _SHR_RX_REGEX_MATCH = 110, /* Signature Match */ + _SHR_RX_FAILOVER_DROP = 111, /* Protection drop data */ + _SHR_RX_WLAN_TUNNEL_ERROR = 112, /* WLAN shim header error to CPU */ + _SHR_RX_CONGESTION_CNM_PROXY = 113, /* Congestion CNM Proxy */ + _SHR_RX_CONGESTION_CNM_PROXY_ERROR = 114, /* Congestion CNM Proxy Error */ + _SHR_RX_CONGESTION_CNM = 115, /* Congestion CNM Internal Packet */ + _SHR_RX_MPLS_UNKNOWN_ACH = 116, /* MPLS Unknown ACH */ + _SHR_RX_MPLS_LOOKUPS_EXCEEDED = 117, /* MPLS out of lookups */ + _SHR_RX_MPLS_RESERVED_ENTROPY_LABEL = 118, /* MPLS Entropy label in unallowed */ + /* range */ + _SHR_RX_MPLS_ILLEGAL_RESERVED_LABEL = 119, /* MPLS illegal reserved label */ + _SHR_RX_MPLS_ROUTER_ALERT_LABEL = 120, /* MPLS alert label */ + _SHR_RX_NIV_PRUNE = 121, /* NIV access port pruning (dst = src) */ + _SHR_RX_VIRTUAL_PORT_PRUNE = 122, /* SVP == DVP */ + _SHR_RX_NON_UNICAST_DROP = 123, /* Explicit multicast packet drop */ + _SHR_RX_TRILL_PACKET_PORT_MISMATCH = 124, /* TRILL packet vs Rbridge port */ + /* conflict */ + _SHR_RX_WLAN_CLIENT_MOVE = 125, /* WLAN client moved */ + _SHR_RX_WLAN_SOURCE_PORT_MISS = 126, /* WLAN SVP miss */ + _SHR_RX_WLAN_CLIENT_SOURCE_MISS = 127, /* WLAN client database SA miss */ + _SHR_RX_WLAN_CLIENT_DEST_MISS = 128, /* WLAN client database DA miss */ + _SHR_RX_WLAN_MTU = 129, /* WLAN MTU error */ + _SHR_RX_TRILL_NAME = 130, /* TRILL packet, Name check failed */ + _SHR_RX_L2GRE_SIP_MISS = 131, /* L2 GRE SIP miss */ + _SHR_RX_L2GRE_VPN_ID_MISS = 132, /* L2 GRE VPN id miss */ + _SHR_RX_TIMESYNC_UNKNOWN_VERSION = 133, /* Unknown version of IEEE1588 */ + _SHR_RX_BFD_ERROR = 134, /* BFD ERROR */ + _SHR_RX_BFD_UNKNOWN_VERSION = 135, /* BFD UNKNOWN VERSION */ + _SHR_RX_BFD_INVALID_VERSION = 136, /* BFD INVALID VERSION */ + _SHR_RX_BFD_LOOKUP_FAILURE = 137, /* BFD LOOKUP FAILURE */ + _SHR_RX_BFD_INVALID_PACKET = 138, /* BFD INVALID PACKET */ + _SHR_RX_VXLAN_SIP_MISS = 139, /* Vxlan SIP miss */ + _SHR_RX_VXLAN_VPN_ID_MISS = 140, /* Vxlan VPN id miss */ + _SHR_RX_FCOE_ZONE_CHECK_FAIL = 141, /* Fcoe zone check failed */ + _SHR_RX_IPMC_INTERFACE_MISMATCH = 142, /* IPMC input interface check failed */ + _SHR_RX_NAT = 143, /* NAT */ + _SHR_RX_TCP_UDP_NAT_MISS = 144, /* TCP/UDP packet NAT lookup miss */ + _SHR_RX_ICMP_NAT_MISS = 145, /* ICMP packet NAT lookup miss */ + _SHR_RX_NAT_FRAGMENT = 146, /* NAT lookup on fragmented packet */ + _SHR_RX_NAT_MISS = 147, /* Non TCP/UDP/ICMP packet NAT lookup */ + /* miss */ + _SHR_RX_UNKNOWN_SUBTENTING_PORT = 148, /* UNKNOWN_SUBTENTING_PORT */ + _SHR_RX_LLTAG_ABSENT_DROP = 149, /* LLTAG_ABSENT */ + _SHR_RX_LLTAG_PRESENT_DROP = 150, /* LLTAG_PRESENT */ + _SHR_RX_OAM_CCM_SLOWPATH = 151, /* OAM CCM packet copied to CPU */ + _SHR_RX_OAM_INCOMPLETE_OPCODE = 152, /* OAM INCOMPLETE_OPCODE */ + _SHR_RX_BHH_OAM_PACKET = 153, /* BHH OAM Packet */ + _SHR_RX_RESERVED_0 = 154, /* Broadcom Reserved */ + _SHR_RX_OAM_MPLS_LMDM = 155, /* MPLS LM/DM (RFC 6374) packet */ + _SHR_RX_SAT = 156, /* OAM SAT pkt */ + _SHR_RX_SAMPLE_SOURCE_FLEX = 157, /* Flexible sampled packets to CPU */ + _SHR_RX_FLEX_SFLOW = 158, /* Flex Sflow? */ + _SHR_RX_VXLT_MISS = 159, /* VLAN Translation miss packet */ + _SHR_RX_TUNNEL_DECAP_ECN_ERROR = 160, /* Tunnel decap ECN error */ + _SHR_RX_TUNNEL_OBJECT_VALIDATION_FAIL = 161, /* Tunnel Object Validation Fail */ + _SHR_RX_L3_CPU = 162, /* L3 Copy to CPU */ + _SHR_RX_TUNNEL_ADAPT_LOOKUP_MISS = 163, /* Tunnel Adapt Lookup Miss Drop */ + _SHR_RX_PACKET_FLOW_SELECT_MISS = 164, /* Packet Flow Select Miss */ + _SHR_RX_PROTECTION_DATA_DROP = 165, /* Protection Data Drop */ + _SHR_RX_PACKET_FLOW_SELECT = 166, /* Packet Flow Select */ + _SHR_RX_OTHER_LOOKUP_MISS = 167, /* Neither Source or Dest type of Lookup Miss */ + _SHR_RX_INVALID_TPID = 168, /* Invalid TPID */ + _SHR_RX_MPLS_CONTROL_PACKET = 169, /* MPLS Control Packet */ + _SHR_RX_TUNNEL_TTL_ERROR = 170, /* Tunnel TTL Error */ + _SHR_RX_L2_HEADER_ERROR = 171, /* L2 header */ + _SHR_RX_OTHER_LOOKUP_HIT = 172, /* Neither Source or Dest type of Lookup Hit */ + _SHR_RX_L2_SRC_LOOKUP_MISS = 173, /* L2 Source Lookup Miss */ + _SHR_RX_L2_SRC_LOOKUP_HIT = 174, /* L2 Source Lookup Hit */ + _SHR_RX_L2_DST_LOOKUP_MISS = 175, /* L2 Dest Lookup Miss */ + _SHR_RX_L2_DST_LOOKUP_HIT = 176, /* L2 Dest Lookup Hit */ + _SHR_RX_L3_SRC_ROUTE_LOOKUP_MISS = 177, /* L3 Source Route Lookup Miss */ + _SHR_RX_L3_SRC_HOST_LOOKUP_MISS = 178, /* L3 Source Host Lookup Miss */ + _SHR_RX_L3_SRC_ROUTE_LOOKUP_HIT = 179, /* L3 Source Route Lookup Hit */ + _SHR_RX_L3_SRC_HOST_LOOKUP_HIT = 180, /* L3 Source Host Lookup Hit */ + _SHR_RX_L3_DST_ROUTE_LOOKUP_MISS = 181, /* L3 Dest Route Lookup Miss */ + _SHR_RX_L3_DST_HOST_LOOKUP_MISS = 182, /* L3 Dest Host Lookup Miss */ + _SHR_RX_L3_DST_ROUTE_LOOKUP_HIT = 183, /* L3 Dest Route Lookup Hit */ + _SHR_RX_L3_DST_HOST_LOOKUP_HIT = 184, /* L3 Dest Host Lookup Hit */ + _SHR_RX_VLAN_TRANSLATE1_LOOKUP1_MISS = 185, /* VLAN Translate1 Lookup1 Miss */ + _SHR_RX_VLAN_TRANSLATE1_LOOKUP2_MISS = 186, /* VLAN Translate1 Lookup2 Miss */ + _SHR_RX_MPLS_LOOKUP1_MISS = 187, /* MPLS Lookup1 Miss */ + _SHR_RX_MPLS_LOOKUP2_MISS = 188, /* MPLS Lookup2 Miss */ + _SHR_RX_L3_TUNNEL_LOOKUP_MISS = 189, /* L3 Tunnel Lookup Miss */ + _SHR_RX_VLAN_TRANSLATE2_LOOKUP1_MISS = 190, /* VLAN Translate2 Lookup1 Miss */ + _SHR_RX_VLAN_TRANSLATE2_LOOKUP2_MISS = 191, /* VLAN Translate2 Lookup2 Miss */ + _SHR_RX_L2_STU_FAIL = 192, /* L2 STU check fail */ + _SHR_RX_SR_COUNTER_EXCEEDED = 193, /* Seamless Redundancy(SR) - */ + /* Counter Threshold Exceeded */ + _SHR_RX_SR_COPY_TO_CPU_BIT0 = 194, /* Seamless Redundancy(SR) copy to CPU */ + /* SR custom reason code bit 0 */ + _SHR_RX_SR_COPY_TO_CPU_BIT1 = 195, /* SR custom reason code bit 1 */ + _SHR_RX_SR_COPY_TO_CPU_BIT2 = 196, /* SR custom reason code bit 2 */ + _SHR_RX_SR_COPY_TO_CPU_BIT3 = 197, /* SR custom reason code bit 3 */ + _SHR_RX_SR_COPY_TO_CPU_BIT4 = 198, /* SR custom reason code bit 4 */ + _SHR_RX_SR_COPY_TO_CPU_BIT5 = 199, /* SR custom reason code bit 5 */ + _SHR_RX_REASON_COUNT = 200 /* MUST BE LAST */ +} _shr_rx_reason_t; + +#define _SHR_RX_REASON_NAMES_INITIALIZER { \ + "Invalid", \ + "Arp", \ + "Bpdu", \ + "Broadcast", \ + "ClassBasedMove", \ + "ClassTagPackets", \ + "Control", \ + "CpuLearn", \ + "DestLookupFail", \ + "Dhcp", \ + "DosAttack", \ + "E2eHolIbp", \ + "EncapHiGigError", \ + "FilterMatch", \ + "GreChecksum", \ + "GreSourceRoute", \ + "HigigControl", \ + "HigigHdrError", \ + "IcmpRedirect", \ + "Igmp", \ + "IngressFilter", \ + "Ip", \ + "IpfixRateViolation", \ + "IpMcastMiss", \ + "IpOptionVersion", \ + "Ipmc", \ + "IpmcRsvd", \ + "L2Cpu", \ + "L2DestMiss", \ + "L2LearnLimit", \ + "L2Move", \ + "L2MtuFail", \ + "L2NonUnicastMiss", \ + "L2SourceMiss", \ + "L3AddrBindFail", \ + "L3DestMiss", \ + "L3HeaderError", \ + "L3MtuFail", \ + "L3Slowpath", \ + "L3SourceMiss", \ + "L3SourceMove", \ + "MartianAddr", \ + "McastIdxError", \ + "McastMiss", \ + "MimServiceError", \ + "MplsCtrlWordError", \ + "MplsError", \ + "MplsInvalidAction", \ + "MplsInvalidPayload", \ + "MplsLabelMiss", \ + "MplsSequenceNumber", \ + "MplsTtl", \ + "Multicast", \ + "Nhop", \ + "OamError", \ + "OamSlowPath", \ + "OamLMDM", \ + "ParityError", \ + "Protocol", \ + "SampleDest", \ + "SampleSource", \ + "SharedVlanMismatch", \ + "SourceRoute", \ + "TimeStamp", \ + "Ttl", \ + "Ttl1", \ + "TunnelError", \ + "UdpChecksum", \ + "UnknownVlan", \ + "UrpfFail", \ + "VcLabelMiss", \ + "VlanFilterMatch", \ + "WlanClientError", \ + "WlanSlowPath", \ + "WlanDot1xDrop", \ + "ExceptionFlood", \ + "Timesync", \ + "EavData", \ + "SamePortBridge", \ + "SplitHorizon", \ + "L4Error", \ + "Stp", \ + "EgressFilterRedirect", \ + "FilterRedirect", \ + "Loopback", \ + "VlanTranslate", \ + "Mmrp", \ + "Srp", \ + "TunnelControl", \ + "L2Marked", \ + "WlanSlowpathKeepalive", \ + "Station", \ + "Niv", \ + "NivPrioDrop", \ + "NivInterfaceMiss", \ + "NivRpfFail", \ + "NivTagInvalid", \ + "NivTagDrop", \ + "NivUntagDrop", \ + "Trill", \ + "TrillInvalid", \ + "TrillMiss", \ + "TrillRpfFail", \ + "TrillSlowpath", \ + "TrillCoreIsIs", \ + "TrillTtl", \ + "BfdSlowpath", \ + "Bfd", \ + "Mirror", \ + "RegexAction", \ + "RegexMatch", \ + "FailoverDrop", \ + "WlanTunnelError", \ + "CongestionCnmProxy", \ + "CongestionCnmProxyError", \ + "CongestionCnm", \ + "MplsUnknownAch", \ + "MplsLookupsExceeded", \ + "MplsReservedEntropyLabel", \ + "MplsIllegalReservedLabel", \ + "MplsRouterAlertLabel", \ + "NivPrune", \ + "VirtualPortPrune", \ + "NonUnicastDrop", \ + "TrillPacketPortMismatch", \ + "WlanClientMove", \ + "WlanSourcePortMiss", \ + "WlanClientSourceMiss", \ + "WlanClientDestMiss", \ + "WlanMtu", \ + "TrillName", \ + "L2GreSipMiss", \ + "L2GreVpnIdMiss", \ + "TimesyncUnknownVersion", \ + "BfdError", \ + "BfdUnknownVersion", \ + "BfdInvalidVersion", \ + "BfdLookupFailure", \ + "BfdInvalidPacket", \ + "VxlanSipMiss", \ + "VxlanVpnIdMiss", \ + "FcoeZoneCheckFail", \ + "IpmcInterfaceMismatch", \ + "Nat", \ + "TcpUdpNatMiss", \ + "IcmpNatMiss", \ + "NatFragment", \ + "NatMiss", \ + "UnknownSubtentingPort", \ + "LLTagAbsentDrop", \ + "LLTagpresenDrop", \ + "OAMCCMslowpath", \ + "OAMIncompleteOpcode", \ + "OAMCCMpacket", \ + "Reserved0", \ + "OAMMplsLmDM", \ + "SAT", \ + "SampleSourceFlex", \ + "FlexSflow", \ + "VxltMiss", \ + "TunnelDecapEcnError", \ + "TunnelObjectValidationFail", \ + "L3Cpu", \ + "TunnelAdaptLookupMiss", \ + "PacketFlowSelectMiss", \ + "ProtectionDataDrop", \ + "PacketFlowSelect", \ + "OtherLookupMiss", \ + "InvalidTpid", \ + "MplsControlPacket", \ + "TunnelTtlError", \ + "L2HeaderError", \ + "OtherLookupHit", \ + "L2SrcLookupMiss", \ + "L2SrcLookupHit", \ + "L2DstLookupMiss", \ + "L2DstLookupHit", \ + "L3SrcRouteLookupMiss", \ + "L3SrcHostLookupMiss", \ + "L3SrcRouteLookupHit", \ + "L3SrcHostLookupHit", \ + "L3DstRouteLookupMiss", \ + "L3DstHostLookupMiss", \ + "L3DstRouteLookupHit", \ + "L3DstHostLookupHit", \ + "MplsLookup1Miss", \ + "MplsLookup2Miss", \ + "L3TunnelLookupMiss", \ + "VlanTranslate1Lookup1Miss",\ + "VlanTranslate1Lookup2Miss",\ + "VlanTranslate2Lookup1Miss",\ + "VlanTranslate2Lookup2Miss",\ + "L2StuFail", \ + "SrCounterExceeded", \ + "SrCopyToCpuBit0", \ + "SrCopyToCpuBit1", \ + "SrCopyToCpuBit2", \ + "SrCopyToCpuBit3", \ + "SrCopyToCpuBit4", \ + "SrCopyToCpuBit5", \ +} + +/* + * Set of "reasons" (see _SHR_RX_*) why a packet came to the CPU. + */ +typedef struct _shr_rx_reasons_s { + SHR_BITDCL pbits[_SHR_BITDCLSIZE(_SHR_RX_REASON_COUNT)]; +} _shr_rx_reasons_t; + +/* + * Macro to check if a reason (_SHR_RX_*) is included in a + * set of reasons (_shr_rx_reasons_t). Returns: + * zero => reason is not included in the set + * non-zero => reason is included in the set + */ +#define _SHR_RX_REASON_GET(_reasons, _reason) \ + SHR_BITGET(((_reasons).pbits), (_reason)) + +/* + * Macro to add a reason (_SHR_RX_*) to a set of + * reasons (_shr_rx_reasons_t) + */ +#define _SHR_RX_REASON_SET(_reasons, _reason) \ + SHR_BITSET(((_reasons).pbits), (_reason)) + +/* + * Macro to add all reasons (_SHR_RX_*) to a set of + * reasons (_shr_rx_reasons_t) + */ +#define _SHR_RX_REASON_SET_ALL(_reasons) \ + SHR_BITSET_RANGE(((_reasons).pbits), 0, _SHR_RX_REASON_COUNT) + +/* + * Macro to clear a reason (_SHR_RX_*) from a set of + * reasons (_shr_rx_reasons_t) + */ +#define _SHR_RX_REASON_CLEAR(_reasons, _reason) \ + SHR_BITCLR(((_reasons).pbits), (_reason)) + +/* + * Macro to clear a set of reasons (_shr_rx_reasons_t). + */ +#define _SHR_RX_REASON_CLEAR_ALL(_reasons) \ + SHR_BITCLR_RANGE(((_reasons).pbits), 0, _SHR_RX_REASON_COUNT) + +#define _SHR_RX_REASON_IS_NULL(_reasons) \ + SHR_BITNULL_RANGE(((_reasons).pbits), \ + 0, _SHR_RX_REASON_COUNT) +#define _SHR_RX_REASON_ITER(_reasons, reason) \ + for(reason = _SHR_RX_INVALID; reason < (int)_SHR_RX_REASON_COUNT; reason++) \ + if(_SHR_RX_REASON_GET(_reasons, reason)) + +#define _SHR_RX_REASON_COUNT(_reasons, _count) \ + SHR_BITCOUNT_RANGE(((_reasons).pbits), _count, \ + 0, _SHR_RX_REASON_COUNT) +#define _SHR_RX_REASON_EQ(_reasons1, _reasons2) \ + SHR_BITEQ_RANGE(((_reasons1).pbits), ((_reasons2).pbits), \ + 0, _SHR_RX_REASON_COUNT) +#define _SHR_RX_REASON_NEQ(_reasons1, _reasons2) \ + (!SHR_BITEQ_RANGE(((_reasons1).pbits), ((_reasons2).pbits), \ + 0, _SHR_RX_REASON_COUNT)) +#define _SHR_RX_REASON_AND(_reasons1, _reasons2) \ + SHR_BITAND_RANGE(((_reasons1).pbits), ((_reasons2).pbits), 0, \ + _SHR_RX_REASON_COUNT, ((_reasons1).pbits)) +#define _SHR_RX_REASON_OR(_reasons1, _reasons2) \ + SHR_BITOR_RANGE(((_reasons1).pbits), ((_reasons2).pbits), 0, \ + _SHR_RX_REASON_COUNT, ((_reasons1).pbits)) +#define _SHR_RX_REASON_XOR(_reasons1, _reasons2) \ + SHR_BITXOR_RANGE(((_reasons1).pbits), ((_reasons2).pbits), 0, \ + _SHR_RX_REASON_COUNT, ((_reasons1).pbits)) +#define _SHR_RX_REASON_REMOVE(_reasons1, _reasons2) \ + SHR_BITREMOVE_RANGE(((_reasons1).pbits), ((_reasons2).pbits), 0, \ + _SHR_RX_REASON_COUNT, ((_reasons1).pbits)); +#define _SHR_RX_REASON_NEGATE(_reasons1, _reasons2) \ + SHR_BITNEGATE_RANGE(((_reasons2).pbits), 0, \ + _SHR_RX_REASON_COUNT, ((_reasons1).pbits)); + +#endif /* _SHR_RX_H_ */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/shared/switch.h +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/include/shared/switch.h @@ -0,0 +1,45 @@ +/********************************************************************* + * + * (C) Copyright Broadcom Corporation 2013-2016 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + ********************************************************************* + * File: switch.h + ********************************************************************/ + + +#ifndef _SHR_SWITCH_H +#define _SHR_SWITCH_H + +#define _SHR_SWITCH_MAX_PIPES 4 /* Max number of pipes (or slices) */ + +#define _SHR_SWITCH_STABLE_NONE 0 /* No storage */ +#define _SHR_SWITCH_STABLE_DEVICE_NEXT_HOP 1 /* Use next hop table */ +#define _SHR_SWITCH_STABLE_DEVICE_EXT_MEM 2 /* Use external TCAM/SRAM */ +#define _SHR_SWITCH_STABLE_APPLICATION 3 /* Use application storage */ +#define _SHR_SWITCH_STABLE_SHARED_MEM 4 /* Use Linux shmem for internal proccess NV storage */ + +/* + * structure: + * _shr_temperature_monitor_t + * Purpose: + * entry type for retrieving temperature monitor value + * + */ +typedef struct _shr_switch_temperature_monitor_s { + int curr; + int peak; +} _shr_switch_temperature_monitor_t; + +#endif /* !_SHR_SWITCH_H */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/shared/types.h +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/include/shared/types.h @@ -0,0 +1,64 @@ +/********************************************************************* + * + * (C) Copyright Broadcom Corporation 2013-2016 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + ********************************************************************** + * File: types.h + * Details: Shared data types + *********************************************************************/ +#ifndef _SHR_TYPES_H_ +#define _SHR_TYPES_H_ + +#include + +typedef int8 _shr_dma_chan_t; + +typedef int _shr_module_t; + +typedef int _shr_if_t; + +typedef uint16 _shr_vlan_t; + +#define _SHR_PORT_INVALID (-1) + + +typedef enum { + _SHR_COLOR_GREEN = 0, + _SHR_COLOR_YELLOW = 1, + _SHR_COLOR_RED = 2, + _SHR_COLOR_BLACK = 3, + _SHR_COLOR_PRESERVE = 4, + _SHR_COLOR_COUNT = 5 +} _shr_color_t; + +typedef enum { + _SHR_FORWARDING_TYPE_L2 = 0, /* L2 switching forwarding. */ + _SHR_FORWARDING_TYPE_IP4UCAST = 1, /* IPv4 Unicast Routing forwarding. */ + _SHR_FORWARDING_TYPE_IP4MCAST = 2, /* IPv4 Multicast Routing forwarding. */ + _SHR_FORWARDING_TYPE_IP6UCAST = 3, /* IPv6 Unicast Routing forwarding. */ + _SHR_FORWARDING_TYPE_IP6MCAST = 4, /* IPv6 Multicast Routing forwarding. */ + _SHR_FORWARDING_TYPE_MPLS = 5, /* MPLS Switching forwarding. */ + _SHR_FORWARDING_TYPE_TRILL = 6, /* Trill forwarding. */ + _SHR_FORWARDING_TYPE_RXREASON = 7, /* Forwarding according to a RxReason. */ + _SHR_FORWARDING_TYPE_TRAFFIC_MANAGMENT = 8, /* Traffic Management forwarding, when + an external Packet Processor sets the + forwarding decision. */ + _SHR_FORWARDING_TYPE_SNOOP = 9, /* Snooped packet. */ + _SHR_FORWARDING_TYPE_FCoE = 10, /* Fiber Channel over Ethernet + forwarding. */ + _SHR_FORWARDING_TYPE_COUNT = 11 /* Always Last. Not a usable value. */ +} _shr_forwarding_type_t; + +#endif /* _SHR_TYPES_H_ */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/shared/util.h +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/include/shared/util.h @@ -0,0 +1,33 @@ +/****************************************************************************** + * + * (C) Copyright Broadcom Corporation 2013-2016 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + ****************************************************************************** + * File: util.h + * Details: This file defines general utility routines. + * + * Its contents are not used directly by applications; + * it is used only by header files of parent APIs which + * need to access these routines. + ******************************************************************************/ + +#ifndef _SHR_UTIL_H +#define _SHR_UTIL_H + +#include + +extern int _shr_popcount(unsigned int); + +#endif /* !_SHR_UTIL_H */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/include/ibde.h +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/include/ibde.h @@ -0,0 +1,158 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: ibde.h,v 1.27 Broadcom SDK $ + * $Copyright: (c) 2005 Broadcom Corp. + * All Rights Reserved.$ + */ + +#ifndef __IBDE_H__ +#define __IBDE_H__ + +#include + +/* + * Represents a collection of devices + */ + +typedef struct ibde_dev_s { + uint16 device; + uint8 rev; + sal_vaddr_t base_address; + sal_vaddr_t base_address1; + sal_vaddr_t base_address2; +} ibde_dev_t; + + +typedef struct ibde_s { + + const char *(*name)(void); + + /* Returns the number of devices available */ + /* Each device is is accessed through a handle */ + /* Handles are assumed to index the array of devices */ + + /* Support SWITCH or ETHERNET or CPU devices */ + int (*num_devices)(int type); +#define BDE_ALL_DEVICES 0 +#define BDE_SWITCH_DEVICES 1 +#define BDE_ETHER_DEVICES 2 +#define BDE_CPU_DEVICES 3 + + const ibde_dev_t *(*get_dev)(int d); + + /* + * Get types of underlaying devices. + * A combination of bus type and functional type is returned. + * In case of bus type, support PCI and SPI device types. + * In case of functional type, specify if underlaying device is + * a switching or ethernet device. + */ + uint32 (*get_dev_type)(int d); +#define BDE_PCI_DEV_TYPE SAL_PCI_DEV_TYPE /* PCI device */ +#define BDE_SPI_DEV_TYPE SAL_SPI_DEV_TYPE /* SPI device */ +#define BDE_EB_DEV_TYPE SAL_EB_DEV_TYPE /* EB device */ +#define BDE_ICS_DEV_TYPE SAL_ICS_DEV_TYPE /* ICS device */ +#define BDE_MII_DEV_TYPE SAL_MII_DEV_TYPE /* MII device */ +#define BDE_I2C_DEV_TYPE SAL_I2C_DEV_TYPE /* I2C device */ +#define BDE_AXI_DEV_TYPE SAL_AXI_DEV_TYPE /* AXI device */ +#define BDE_EMMI_DEV_TYPE SAL_EMMI_DEV_TYPE /* EMMI device */ +#define BDE_DEV_BUS_ALT SAL_DEV_BUS_ALT /* Alternate Access */ +#define BDE_DEV_BUS_MSI SAL_DEV_BUS_MSI /* Message-signaled interrupts */ + +#define BDE_DEV_BUS_TYPE_MASK SAL_DEV_BUS_TYPE_MASK + +#define BDE_SWITCH_DEV_TYPE SAL_SWITCH_DEV_TYPE /* Switch device */ +#define BDE_ETHER_DEV_TYPE SAL_ETHER_DEV_TYPE /* Ethernet device */ +#define BDE_CPU_DEV_TYPE SAL_CPU_DEV_TYPE /* CPU device */ + +#define BDE_BYTE_SWAP 0x01000000 /* SW byte swap */ +#define BDE_NO_IPROC 0x02000000 /* Device uses two BARs, but is not iProc */ + +#define BDE_256K_REG_SPACE 0x20000000 /* Map 256K (v 64K) */ +#define BDE_128K_REG_SPACE 0x40000000 /* Map 128K (v 64K) */ +#define BDE_320K_REG_SPACE 0x80000000 /* Map 256K+64K */ + +/* Bus supports only 16bit reads */ +#define BDE_DEV_BUS_RD_16BIT SAL_DEV_BUS_RD_16BIT + +/* Bus supports only 16bit writes */ +#define BDE_DEV_BUS_WR_16BIT SAL_DEV_BUS_WR_16BIT + +/* Backward compatibility */ +#define BDE_ET_DEV_TYPE BDE_MII_DEV_TYPE + +#define BDE_DEV_MEM_MAPPED(_d) \ + ((_d) & (BDE_PCI_DEV_TYPE | BDE_ICS_DEV_TYPE | BDE_EB_DEV_TYPE |\ + BDE_EMMI_DEV_TYPE | BDE_AXI_DEV_TYPE)) + + /* + * PCI Bus Access + */ + uint32 (*pci_conf_read)(int d, uint32 addr); + int (*pci_conf_write)(int d, uint32 addr, uint32 data); + void (*pci_bus_features)(int d, int *be_pio, int *be_packet, + int *be_other); + + uint32 (*read)(int d, uint32 addr); + int (*write)(int d, uint32 addr, uint32 data); + + uint32* (*salloc)(int d, int size, const char *name); + void (*sfree)(int d, void *ptr); + int (*sflush)(int d, void *addr, int length); + int (*sinval)(int d, void *addr, int length); + + int (*interrupt_connect)(int d, void (*)(void*), void *data); + int (*interrupt_disconnect)(int d); + + sal_paddr_t (*l2p)(int d, void *laddr); + void* (*p2l)(int d, sal_paddr_t paddr); + + /* + * SPI Access via SMP + */ + int (*spi_read)(int d, uint32 addr, uint8 *buf, int len); + int (*spi_write)(int d, uint32 addr, uint8 *buf, int len); + /* Special SPI access addresses */ +#define BDE_DEV_OP_EMMI_INIT SAL_DEV_OP_EMMI_INIT + + /* + * iProc register access + */ + uint32 (*iproc_read)(int d, uint32 addr); + int (*iproc_write)(int d, uint32 addr, uint32 data); + + /* + * Shared memory access + */ + uint32 (*shmem_read)(int dev, uint32 addr, uint8 *buf, uint32 len); + void (*shmem_write)(int dev, uint32 addr, uint8 *buf, uint32 len); + sal_vaddr_t (*shmem_map)(int dev, uint32 addr, uint32 size); + + /* + * cmic + */ + int (*get_cmic_ver)(int d, uint32 *ver); + +} ibde_t; + + +/* System BDE */ +extern ibde_t *bde; + + +#endif /* __IBDE_H__ */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/include/kcom.h +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/include/kcom.h @@ -0,0 +1,539 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: kcom.h,v 1.9 Broadcom SDK $ + * $Copyright: (c) 2005 Broadcom Corp. + * All Rights Reserved.$ + * + * File: kcom.h + * Purpose: User/Kernel message definitions + */ + +#ifndef _KCOM_H +#define _KCOM_H + +#include + +#define KCOM_CHAN_KNET "KCOM_KNET" + +/* + * Message types + */ +#define KCOM_MSG_TYPE_CMD 1 /* Command */ +#define KCOM_MSG_TYPE_RSP 2 /* Command response */ +#define KCOM_MSG_TYPE_EVT 3 /* Unsolicited event */ + + +/* + * Message opcodes + */ +#define KCOM_M_NONE 0 /* Should not be used */ +#define KCOM_M_VERSION 1 /* Protocol version */ +#define KCOM_M_STRING 2 /* For debug messages */ +#define KCOM_M_HW_RESET 3 /* H/W not ready */ +#define KCOM_M_HW_INIT 4 /* H/W initialized */ +#define KCOM_M_ETH_HW_CONFIG 5 /* ETH HW config*/ +#define KCOM_M_DETACH 6 /* Detach kernel module */ +#define KCOM_M_NETIF_CREATE 11 /* Create network interface */ +#define KCOM_M_NETIF_DESTROY 12 /* Destroy network interface */ +#define KCOM_M_NETIF_LIST 13 /* Get list of network interface IDs */ +#define KCOM_M_NETIF_GET 14 /* Get network interface info */ +#define KCOM_M_FILTER_CREATE 21 /* Create Rx filter */ +#define KCOM_M_FILTER_DESTROY 22 /* Destroy Rx filter */ +#define KCOM_M_FILTER_LIST 23 /* Get list of Rx filter IDs */ +#define KCOM_M_FILTER_GET 24 /* Get Rx filter info */ +#define KCOM_M_DMA_INFO 31 /* Tx/Rx DMA info */ +#define KCOM_M_DBGPKT_SET 41 /* Enbale debug packet function */ +#define KCOM_M_DBGPKT_GET 42 /* Get debug packet function info */ + +#define KCOM_VERSION 8 /* Protocol version */ + +/* + * Message status codes + */ +#define KCOM_E_NONE 0 /* No errors */ +#define KCOM_E_PARAM 1 /* Invalid/unsupported parameter */ +#define KCOM_E_RESOURCE 2 /* Out of memory or other resource */ +#define KCOM_E_NOT_FOUND 3 /* Requested object not found */ + +typedef struct kcom_msg_hdr_s { + uint8 type; + uint8 opcode; + uint8 seqno; + uint8 status; + uint8 unit; + uint8 reserved; + uint16 id; +} kcom_msg_hdr_t; + + +/* + * Object types + */ + +/* + * System network interface + * + * Network interface types: + * + * KCOM_NETIF_T_VLAN + * Transmits to this interface will go to ingress PIPE of switch + * CPU port using specified VLAN ID. Packet will be switched. + * + * KCOM_NETIF_T_PORT + * Transmits to this interface will go to unmodified to specified + * physical switch port. All switching logic is bypassed. + * + * KCOM_NETIF_T_META + * Transmits to this interface will be done using raw meta data + * as DMA descriptors. Currently used for RCPU mode only. + * + * Network interface flags: + * + * KCOM_NETIF_F_ADD_TAG + * Add VLAN tag to packets sent directly to physical port. + * + * KCOM_NETIF_F_RCPU_ENCAP + * Use RCPU encapsulation for packets that enter and exit this + * interface. + */ +#define KCOM_NETIF_T_VLAN 0 +#define KCOM_NETIF_T_PORT 1 +#define KCOM_NETIF_T_META 2 + +#define KCOM_NETIF_F_ADD_TAG (1U << 0) +#define KCOM_NETIF_F_RCPU_ENCAP (1U << 1) +/* If a netif has this flag, the packet sent to the netif can't be stripped tag or added tag */ +#define KCOM_NETIF_F_KEEP_RX_TAG (1U << 2) + +#define KCOM_NETIF_NAME_MAX 16 + +typedef struct kcom_netif_s { + uint16 id; + uint8 type; + uint8 flags; + uint8 port; + uint8 reserved; + uint16 vlan; + uint16 qnum; + uint8 macaddr[6]; + uint8 ptch[2]; + uint8 itmh[4]; + char name[KCOM_NETIF_NAME_MAX]; +} kcom_netif_t; + +/* + * Packet filters + * + * Filters work like software TCAMs where a mask is applied to the + * source data, and the result is then compared to the filter data. + * + * Filters are checked in priority order with the lowest priority + * values being checked first (i.e. 0 is the highest priority). + * + * Filter types: + * + * KCOM_FILTER_T_RX_PKT + * Filter data and mask are applied to the Rx DMA control block + * as well as to the Rx packet contents. + * + * Destination types: + * + * KCOM_DEST_T_NULL + * Packet is dropped. + * + * KCOM_DEST_T_NETIF + * Packet is sent to network interface with ID . + * + * KCOM_DEST_T_API + * Packet is sent to Rx API through queue . + * + * KCOM_DEST_T_CB + * Packet destination is obtained from kernel call-back function. + * + * Filter flags: + * + * KCOM_FILTER_F_ANY_DATA + * When this flags is set the filter will match any packet on + * the associated unit. + * + * KCOM_FILTER_F_STRIP_TAG + * Strip VLAN tag before packet is sent to destination. + * This flag only applies to KCOM_DEST_T_NETIF. + * + */ +#define KCOM_FILTER_BYTES_MAX 256 +#define KCOM_FILTER_WORDS_MAX BYTES2WORDS(KCOM_FILTER_BYTES_MAX) + +#define KCOM_FILTER_T_RX_PKT 1 + +#define KCOM_DEST_T_NULL 0 +#define KCOM_DEST_T_NETIF 1 +#define KCOM_DEST_T_API 2 +#define KCOM_DEST_T_CB 3 + +#define KCOM_FILTER_F_ANY_DATA (1U << 0) +#define KCOM_FILTER_F_STRIP_TAG (1U << 1) + +#define KCOM_FILTER_DESC_MAX 32 + +typedef struct kcom_filter_s { + uint16 id; + uint8 type; + uint8 priority; + char desc[KCOM_FILTER_DESC_MAX]; + uint32 flags; + uint16 dest_type; + uint16 dest_id; + uint16 dest_proto; + uint16 mirror_type; + uint16 mirror_id; + uint16 mirror_proto; + uint16 oob_data_offset; + uint16 oob_data_size; + uint16 pkt_data_offset; + uint16 pkt_data_size; + union { + uint8 b[KCOM_FILTER_BYTES_MAX]; + uint32 w[KCOM_FILTER_WORDS_MAX]; + } data; + union { + uint8 b[KCOM_FILTER_BYTES_MAX]; + uint32 w[KCOM_FILTER_WORDS_MAX]; + } mask; +} kcom_filter_t; + +/* + * DMA buffer information + * + * Cookie field is reserved use by application (32/64-bit pointer). + * + * For Tx operation the application will submit the start address of + * the Tx DCB chain which is queued for transfer by the kernel module. + * Once DMA is done a DMA event is returned to the application with an + * optional sequence number. + * + * For Rx operation the application will submit the start address of + * the Rx DCB chain which should be use for packet reception by the + * kernel module. Once DMA is done a DMA event is returned to the + * application with an optional sequence number. + * + * Cookie field is reserved use by application (32/64-bit pointer). + * + * Packet info types: + * + * KCOM_DMA_INFO_T_TX_DCB + * Data is physical start address of Tx DCB chain. + * + * KCOM_DMA_INFO_T_RX_DCB + * Data is physical start address of Rx DCB chain. + * + * Packet info flags: + * + * KCOM_DMA_INFO_F_TX_DONE + * This flag is set by the kernel module and means that one or more + * packets have been sent. + * + * KCOM_DMA_INFO_F_RX_DONE + * This flag is set by the kernel module and means that one or more + * Rx buffers contain valid packet data. + */ +#define KCOM_DMA_INFO_T_TX_DCB 1 +#define KCOM_DMA_INFO_T_RX_DCB 2 + +#define KCOM_DMA_INFO_F_TX_DONE (1U << 0) +#define KCOM_DMA_INFO_F_RX_DONE (1U << 1) + +typedef struct kcom_dma_info_s { + uint8 type; + uint8 cnt; + uint16 size; + uint16 chan; + uint16 flags; + union { + void *p; + uint8 b[8]; + } cookie; + union { + uint32 dcb_start; + struct { + uint32 tx; + uint32 rx; + } seqno; + } data; + } kcom_dma_info_t; + +/* Default channel configuration */ +#define KCOM_DMA_TX_CHAN 0 +#define KCOM_DMA_RX_CHAN 1 + + +#define KCOM_ETH_HW_T_RESET 1 +#define KCOM_ETH_HW_T_INIT 2 +#define KCOM_ETH_HW_T_OTHER 3 + +#define KCOM_ETH_HW_C_ALL 0xff + +#define KCOM_ETH_HW_RESET_F_TX (1U << 0) +#define KCOM_ETH_HW_RESET_F_RX (1U << 1) +#define KCOM_ETH_HW_RESET_F_TX_RECLAIM (1U << 2) +#define KCOM_ETH_HW_RESET_F_RX_RECLAIM (1U << 3) + +#define KCOM_ETH_HW_INIT_F_TX (1U << 0) +#define KCOM_ETH_HW_INIT_F_RX (1U << 1) +#define KCOM_ETH_HW_INIT_F_RX_FILL (1U << 2) + + +#define KCOM_ETH_HW_OTHER_F_FIFO_LOOPBACK (1U << 0) +#define KCOM_ETH_HW_OTHER_F_INTERRUPT (1U << 1) + + + + +typedef struct kcom_eth_hw_config_s { + uint8 type; + uint8 chan; + uint32 flags; + uint32 value; + } kcom_eth_hw_config_t; + +/* + * Message types + */ + +/* + * Request KCOM interface version of kernel module. + */ +typedef struct kcom_msg_version_s { + kcom_msg_hdr_t hdr; + uint32 version; + uint32 netif_max; + uint32 filter_max; +} kcom_msg_version_t; + +/* + * Send literal string to/from kernel module. + * Mainly for debugging purposes. + */ +#define KCOM_MSG_STRING_MAX 128 + +typedef struct kcom_msg_string_s { + kcom_msg_hdr_t hdr; + uint32 len; + char val[KCOM_MSG_STRING_MAX]; +} kcom_msg_string_t; + + +/* + * Indicate that eth hardware is about to be reset. Active + * DMA operations should be aborted and DMA and interrupts + * should be disabled. + */ +/* + * Indicate that eth hardware has been properly initialized + * for DMA operation to commence. + */ +typedef struct kcom_msg_eth_hw_config_s { + kcom_msg_hdr_t hdr; + kcom_eth_hw_config_t config; +} kcom_msg_eth_hw_config_t; + + +/* + * Indicate that switch hardware is about to be reset. Active + * DMA operations should be aborted and DMA and interrupts + * should be disabled. + */ +typedef struct kcom_msg_hw_reset_s { + kcom_msg_hdr_t hdr; + uint32 channels; +} kcom_msg_hw_reset_t; + +/* + * Indicate that switch hardware has been properly initialized + * for DMA operation to commence. + */ +typedef struct kcom_msg_hw_init_s { + kcom_msg_hdr_t hdr; + uint16 dcb_size; + uint16 dcb_type; + uint32 cdma_channels; +} kcom_msg_hw_init_t; + +/* + * Release blocked IOCTL threads and clean up as necessary. + */ +typedef struct kcom_msg_detach_s { + kcom_msg_hdr_t hdr; + uint32 flags; +} kcom_msg_detach_t; + +/* + * Enable/Disable debugging packet function. + */ +typedef struct kcom_msg_dbg_pkt_set_s { + kcom_msg_hdr_t hdr; + int enable; +} kcom_msg_dbg_pkt_set_t; + +/* + * Get debugging packet function info. + */ +typedef struct kcom_msg_dbg_pkt_get_s { + kcom_msg_hdr_t hdr; + int value; +} kcom_msg_dbg_pkt_get_t; + +/* + * Create new system network interface. The network interface will + * be associated with the specified switch unit number. + * The interface id and name will be assigned by the kernel module. + */ +typedef struct kcom_msg_netif_create_s { + kcom_msg_hdr_t hdr; + kcom_netif_t netif; +} kcom_msg_netif_create_t; + +/* + * Destroy system network interface. + */ +typedef struct kcom_msg_netif_destroy_s { + kcom_msg_hdr_t hdr; +} kcom_msg_netif_destroy_t; + +/* + * Get list of currently defined system network interfaces. + */ +#ifndef KCOM_NETIF_MAX +#define KCOM_NETIF_MAX 128 +#endif + +typedef struct kcom_msg_netif_list_s { + kcom_msg_hdr_t hdr; + uint32 ifcnt; + uint16 id[KCOM_NETIF_MAX]; +} kcom_msg_netif_list_t; + +/* + * Get detailed network interface information. + */ +typedef struct kcom_msg_netif_get_s { + kcom_msg_hdr_t hdr; + kcom_netif_t netif; +} kcom_msg_netif_get_t; + +/* + * Create new packet filter. + * The filter id will be assigned by the kernel module. + */ +typedef struct kcom_msg_filter_create_s { + kcom_msg_hdr_t hdr; + kcom_filter_t filter; +} kcom_msg_filter_create_t; + +/* + * Destroy packet filter. + */ +typedef struct kcom_msg_filter_destroy_s { + kcom_msg_hdr_t hdr; +} kcom_msg_filter_destroy_t; + +/* + * Get list of currently defined packet filters. + */ +#ifndef KCOM_FILTER_MAX +/* OPENNSL_FIXUP - Increased the filters to 1024 from 128 */ +#define KCOM_FILTER_MAX 1024 +#endif + +typedef struct kcom_msg_filter_list_s { + kcom_msg_hdr_t hdr; + uint32 fcnt; + uint16 id[KCOM_FILTER_MAX]; +} kcom_msg_filter_list_t; + +/* + * Get detailed packet filter information. + */ +typedef struct kcom_msg_filter_get_s { + kcom_msg_hdr_t hdr; + kcom_filter_t filter; +} kcom_msg_filter_get_t; + +/* + * DMA info + */ +typedef struct kcom_msg_dma_info_s { + kcom_msg_hdr_t hdr; + kcom_dma_info_t dma_info; +} kcom_msg_dma_info_t; + + +/* + * All messages (e.g. for generic receive) + */ + +typedef union kcom_msg_s { + kcom_msg_hdr_t hdr; + kcom_msg_version_t version; + kcom_msg_string_t string; + kcom_msg_hw_reset_t hw_reset; + kcom_msg_hw_init_t hw_init; + kcom_msg_eth_hw_config_t eth_hw_config; + kcom_msg_detach_t detach; + kcom_msg_netif_create_t netif_create; + kcom_msg_netif_destroy_t netif_destroy; + kcom_msg_netif_list_t netif_list; + kcom_msg_netif_get_t netif_get; + kcom_msg_filter_create_t filter_create; + kcom_msg_filter_destroy_t filter_destroy; + kcom_msg_filter_list_t filter_list; + kcom_msg_filter_get_t filter_get; + kcom_msg_dma_info_t dma_info; + kcom_msg_dbg_pkt_set_t dbg_pkt_set; + kcom_msg_dbg_pkt_get_t dbg_pkt_get; +} kcom_msg_t; + + +/* + * KCOM communication channel vectors + * + * open + * Open KCOM channel. + * + * close + * Close KCOM channel. + * + * send + * Send KCOM message. If bufsz is non-zero, a synchronous send will be + * performed (if supported) and the function will return the number of + * bytes in the response. + * + * recv + * Receive KCOM message. This function is used t oreceive unsolicited + * messages from the kernel. If synchronous send is not supported, this + * function is also used to retrieve responses to command messages. + */ + +typedef struct kcom_chan_s { + void *(*open)(char *name); + int (*close)(void *handle); + int (*send)(void *handle, void *msg, unsigned int len, unsigned int bufsz); + int (*recv)(void *handle, void *msg, unsigned int bufsz); +} kcom_chan_t; + +#endif /* _KCOM_H */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/include/sal/core/sync.h +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/include/sal/core/sync.h @@ -0,0 +1,39 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: sync.h,v 1.1 Broadcom SDK $ + * $Copyright: (c) 2005 Broadcom Corp. + * All Rights Reserved.$ + */ + +#ifndef _SAL_SYNC_H +#define _SAL_SYNC_H + +typedef struct sal_sem_s{ + char sal_opaque_type; +} *sal_sem_t; + +#define sal_sem_FOREVER (-1) +#define sal_sem_BINARY 1 +#define sal_sem_COUNTING 0 + +sal_sem_t sal_sem_create(char *desc, int binary, int initial_count); +void sal_sem_destroy(sal_sem_t b); +int sal_sem_take(sal_sem_t b, int usec); +int sal_sem_give(sal_sem_t b); + +#endif /* !_SAL_SYNC_H */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/include/sal/core/thread.h +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/include/sal/core/thread.h @@ -0,0 +1,31 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: thread.h,v 1.1 Broadcom SDK $ + * $Copyright: (c) 2005 Broadcom Corp. + * All Rights Reserved.$ + */ + +#ifndef _SAL_THREAD_H +#define _SAL_THREAD_H + +#include + +void sal_usleep(uint32 usec); +void sal_udelay(uint32 usec); + +#endif /* !_SAL_THREAD_H */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/include/sal/types.h +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/include/sal/types.h @@ -0,0 +1,156 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: types.h,v 1.3 Broadcom SDK $ + * $Copyright: (c) 2005 Broadcom Corp. + * All Rights Reserved.$ + * + * File: types.h + * Purpose: SAL type definitions + */ + +#ifndef _SAL_TYPES_H +#define _SAL_TYPES_H + +/* + * Define platform-independent types + */ + +#ifndef TRUE +#define TRUE 1 +#endif + +#ifndef FALSE +#define FALSE 0 +#endif + +#ifndef NULL +#define NULL 0 +#endif + +#ifndef DONT_CARE +#define DONT_CARE 0 +#endif + +#define VOL volatile + +/* + * 64-bit type + */ + +#ifdef LONGS_ARE_64BITS + +#define COMPILER_64BIT +#define COMPILER_UINT64 unsigned long +#define u64_H(v) (((uint32 *) &(v))[u64_MSW]) +#define u64_L(v) (((uint32 *) &(v))[u64_LSW]) + +#else /* !LONGS_ARE_64BITS */ + +#define COMPILER_64BIT +#define COMPILER_UINT64 unsigned long long +#define u64_H(v) (((uint32 *) &(v))[u64_MSW]) +#define u64_L(v) (((uint32 *) &(v))[u64_LSW]) + +#endif /* LONGS_ARE_64BITS */ + +/* + * Define unsigned and signed integers with guaranteed sizes. + * Adjust if your compiler uses different sizes for short or int. + */ + +typedef unsigned char uint8; /* 8-bit quantity */ +typedef unsigned short uint16; /* 16-bit quantity */ +typedef unsigned int uint32; /* 32-bit quantity */ +typedef COMPILER_UINT64 uint64; /* 64-bit quantity */ + +typedef signed char int8; /* 8-bit quantity */ +typedef signed short int16; /* 16-bit quantity */ +typedef signed int int32; /* 32-bit quantity */ + +#define BITS2BYTES(x) (((x) + 7) / 8) +#define BITS2WORDS(x) (((x) + 31) / 32) + +#define BYTES2BITS(x) ((x) * 8) +#define BYTES2WORDS(x) (((x) + 3) / 4) + +#define WORDS2BITS(x) ((x) * 32) +#define WORDS2BYTES(x) ((x) * 4) + +#define COUNTOF(ary) ((int) (sizeof (ary) / sizeof ((ary)[0]))) + +typedef uint32 sal_paddr_t; /* Physical address (PCI address) */ + +#ifdef PTRS_ARE_64BITS +typedef uint64 sal_vaddr_t; /* Virtual address (Host address) */ +#define PTR_TO_INT(x) ((uint32)(((sal_vaddr_t)(x))&0xFFFFFFFF)) +#else +typedef uint32 sal_vaddr_t; /* Virtual address (Host address) */ +#define PTR_TO_INT(x) ((uint32)(x)) +#endif + +#define INT_TO_PTR(x) ((void *)((sal_vaddr_t)(x))) + +#define PTR_TO_UINTPTR(x) ((sal_vaddr_t)(x)) +#define UINTPTR_TO_PTR(x) ((void *)(x)) + +typedef union +{ + uint8 u8; + uint16 u16; + uint32 u32; + uint64 u64; + sal_paddr_t paddr; + sal_vaddr_t vaddr; + void *ptr; +} any_t; + +/* Device bus types */ +#define SAL_PCI_DEV_TYPE 0x00001 /* PCI device */ +#define SAL_SPI_DEV_TYPE 0x00002 /* SPI device */ +#define SAL_EB_DEV_TYPE 0x00004 /* EB device */ +#define SAL_ICS_DEV_TYPE 0x00008 /* ICS device */ +#define SAL_MII_DEV_TYPE 0x00010 /* MII device */ +#define SAL_RCPU_DEV_TYPE 0x00020 /* RCPU device */ +#define SAL_I2C_DEV_TYPE 0x00040 /* I2C device */ +#define SAL_AXI_DEV_TYPE 0x00080 /* AXI device */ +#define SAL_EMMI_DEV_TYPE 0x10000 /* EMMI device */ +#define SAL_DEV_BUS_TYPE_MASK 0xf00ff /* Odd for historical reasons */ + +/* Device types */ +#define SAL_SWITCH_DEV_TYPE 0x00100 /* Switch device */ +#define SAL_ETHER_DEV_TYPE 0x00200 /* Ethernet device */ +#define SAL_CPU_DEV_TYPE 0x00400 /* CPU device */ +#define SAL_DEV_TYPE_MASK 0x00f00 + +/* Access types */ +#define SAL_DEV_BUS_RD_16BIT 0x01000 /* 16 bit reads on bus */ +#define SAL_DEV_BUS_WR_16BIT 0x02000 /* 16 bit writes on bus */ +#define SAL_DEV_BUS_ALT 0x04000 /* Alternate access */ +#define SAL_DEV_BUS_MSI 0x08000 /* Message-signaled interrupts */ +#define SAL_DEV_FLAG_MASK 0x0f000 + +/* BDE reserved mask (cannot be used by SAL) */ +#define SAL_DEV_BDE_MASK 0xff000000 + +/* Backward compatibility */ +#define SAL_ET_DEV_TYPE SAL_MII_DEV_TYPE + +/* Special access addresses */ +#define SAL_DEV_OP_EMMI_INIT 0x0fff1000 + +#endif /* !_SAL_TYPES_H */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/include/sdk_config.h +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/include/sdk_config.h @@ -0,0 +1,46 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: sdk_config.h,v 1.5 Broadcom SDK $ + * $Copyright: (c) 2006 Broadcom Corp. + * All Rights Reserved.$ + * + * + */ + +#ifndef __SDK_CONFIG_H__ +#define __SDK_CONFIG_H__ + +/* + * Include custom overrides + */ +#ifdef SDK_INCLUDE_CUSTOM_CONFIG +#include +#endif + + +/* + * Memory Barrier operation if required. + * Defaults to nothing. + */ +#ifndef SDK_CONFIG_MEMORY_BARRIER +#define SDK_CONFIG_MEMORY_BARRIER +#endif + + + +#endif /* __SDK_CONFIG_H__ */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/include/soc/cmic.h +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/include/soc/cmic.h @@ -0,0 +1,38 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: cmic.h,v 1.1 Broadcom SDK $ + * $Copyright: (c) 2005 Broadcom Corp. + * All Rights Reserved.$ + * + * File: cmic.h + * Purpose: Maps out structures used for CMIC operations and + * exports routines and constants. + */ + +#ifndef _SOC_CMIC_H +#define _SOC_CMIC_H + +/* IRQ Register (RO) */ +#define CMIC_IRQ_STAT 0x00000144 + +/* IRQ Mask Registers (R/W) */ +#define CMIC_IRQ_MASK 0x00000148 +#define CMIC_IRQ_MASK_1 0x0000006C +#define CMIC_IRQ_MASK_2 0x00000070 + +#endif /* !_SOC_CMIC_H */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/include/soc/devids.h +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/include/soc/devids.h @@ -0,0 +1,1948 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * Copyright: (c) 2017 Broadcom Corp. + * All Rights Reserved. + */ + +#ifndef _SOC_DEVIDS_H +#define _SOC_DEVIDS_H + + +#define BROADCOM_VENDOR_ID 0x14e4 + +#define BCM5690_DEVICE_ID 0x5690 +#define BCM5690_A0_REV_ID 1 +#define BCM5690_A1_REV_ID 2 +#define BCM5690_A2_REV_ID 3 + +#define BCM5691_DEVICE_ID 0x5691 +#define BCM5691_A0_REV_ID 1 +#define BCM5691_A1_REV_ID 2 +#define BCM5691_A2_REV_ID 3 + +#define BCM5692_DEVICE_ID 0x5692 +#define BCM5692_A0_REV_ID 1 +#define BCM5692_A1_REV_ID 2 +#define BCM5692_A2_REV_ID 3 + +#define BCM5693_DEVICE_ID 0x5693 +#define BCM5693_A0_REV_ID 1 +#define BCM5693_A1_REV_ID 2 +#define BCM5693_A2_REV_ID 3 + +#define BCM5695_DEVICE_ID 0x5695 +#define BCM5695_A0_REV_ID 1 +#define BCM5695_A1_REV_ID 2 +#define BCM5695_B0_REV_ID 0x11 + +#define BCM5696_DEVICE_ID 0x5696 +#define BCM5696_A0_REV_ID 1 +#define BCM5696_A1_REV_ID 2 +#define BCM5696_B0_REV_ID 0x11 + +#define BCM5697_DEVICE_ID 0x5697 +#define BCM5697_A0_REV_ID 1 +#define BCM5697_A1_REV_ID 2 +#define BCM5697_B0_REV_ID 0x11 + +#define BCM5698_DEVICE_ID 0x5698 +#define BCM5698_A0_REV_ID 1 +#define BCM5698_A1_REV_ID 2 +#define BCM5698_B0_REV_ID 0x11 + +#define BCM5670_DEVICE_ID 0x5670 +#define BCM5670_A0_REV_ID 1 +#define BCM5670_A1_REV_ID 2 + +#define BCM5671_DEVICE_ID 0x5671 +#define BCM5671_A0_REV_ID 1 +#define BCM5671_A1_REV_ID 2 +#define BCM5671_A2_REV_ID 3 + +#define BCM5675_DEVICE_ID 0x5675 +#define BCM5675_A0_REV_ID 1 +#define BCM5675_A1_REV_ID 2 + +#define BCM5676_DEVICE_ID 0x5676 +#define BCM5676_A0_REV_ID 1 +#define BCM5676_A1_REV_ID 2 + +#define BCM5673_DEVICE_ID 0x5673 +#define BCM5673_A0_REV_ID 1 +#define BCM5673_A1_REV_ID 2 +#define BCM5673_A2_REV_ID 3 + +#define BCM5674_DEVICE_ID 0x5674 +#define BCM5674_A0_REV_ID 1 + +#define BCM56100_DEVICE_ID 0xb100 +#define BCM56100_A0_REV_ID 1 +#define BCM56100_A1_REV_ID 2 +#define BCM56101_DEVICE_ID 0xb101 +#define BCM56101_A0_REV_ID 1 +#define BCM56101_A1_REV_ID 2 +#define BCM56102_DEVICE_ID 0xb102 +#define BCM56102_A0_REV_ID 1 +#define BCM56102_A1_REV_ID 2 +#define BCM56105_DEVICE_ID 0xb105 +#define BCM56105_A0_REV_ID 1 +#define BCM56105_A1_REV_ID 2 +#define BCM56106_DEVICE_ID 0xb106 +#define BCM56106_A0_REV_ID 1 +#define BCM56106_A1_REV_ID 2 +#define BCM56107_DEVICE_ID 0xb107 +#define BCM56107_A0_REV_ID 1 +#define BCM56107_A1_REV_ID 2 + +#define BCM56110_DEVICE_ID 0xb110 +#define BCM56110_A0_REV_ID 1 +#define BCM56111_DEVICE_ID 0xb111 +#define BCM56111_A0_REV_ID 1 +#define BCM56112_DEVICE_ID 0xb112 +#define BCM56112_A0_REV_ID 1 +#define BCM56115_DEVICE_ID 0xb115 +#define BCM56115_A0_REV_ID 1 +#define BCM56116_DEVICE_ID 0xb116 +#define BCM56116_A0_REV_ID 1 +#define BCM56117_DEVICE_ID 0xb117 +#define BCM56117_A0_REV_ID 1 + +#define BCM56300_DEVICE_ID 0xb300 +#define BCM56300_A0_REV_ID 1 +#define BCM56300_A1_REV_ID 2 +#define BCM56300_B0_REV_ID 0x11 +#define BCM56300_B1_REV_ID 0x12 +#define BCM56301_DEVICE_ID 0xb301 +#define BCM56301_A0_REV_ID 1 +#define BCM56301_A1_REV_ID 2 +#define BCM56301_B0_REV_ID 0x11 +#define BCM56301_B1_REV_ID 0x12 +#define BCM56302_DEVICE_ID 0xb302 +#define BCM56302_A0_REV_ID 1 +#define BCM56302_A1_REV_ID 2 +#define BCM56302_B0_REV_ID 0x11 +#define BCM56302_B1_REV_ID 0x12 +#define BCM56303_DEVICE_ID 0xb303 +#define BCM56303_A1_REV_ID 2 +#define BCM56303_A0_REV_ID 1 +#define BCM56303_B0_REV_ID 0x11 +#define BCM56303_B1_REV_ID 0x12 +#define BCM56304_DEVICE_ID 0xb304 +#define BCM56304_A0_REV_ID 1 +#define BCM56304_A1_REV_ID 2 +#define BCM56304_B0_REV_ID 0x11 +#define BCM56304_B1_REV_ID 0x12 +#define BCM56404_DEVICE_ID 0xb404 +#define BCM56404_A0_REV_ID 1 +#define BCM56404_A1_REV_ID 2 +#define BCM56305_DEVICE_ID 0xb305 +#define BCM56305_A0_REV_ID 1 +#define BCM56305_A1_REV_ID 2 +#define BCM56305_B0_REV_ID 0x11 +#define BCM56305_B1_REV_ID 0x12 +#define BCM56306_DEVICE_ID 0xb306 +#define BCM56306_A0_REV_ID 1 +#define BCM56306_A1_REV_ID 2 +#define BCM56306_B0_REV_ID 0x11 +#define BCM56306_B1_REV_ID 0x12 +#define BCM56307_DEVICE_ID 0xb307 +#define BCM56307_A0_REV_ID 1 +#define BCM56307_A1_REV_ID 2 +#define BCM56307_B0_REV_ID 0x11 +#define BCM56307_B1_REV_ID 0x12 +#define BCM56308_DEVICE_ID 0xb308 +#define BCM56308_A0_REV_ID 1 +#define BCM56308_A1_REV_ID 2 +#define BCM56308_B0_REV_ID 0x11 +#define BCM56308_B1_REV_ID 0x12 +#define BCM56309_DEVICE_ID 0xb309 +#define BCM56309_A0_REV_ID 1 +#define BCM56309_A1_REV_ID 2 +#define BCM56309_B0_REV_ID 0x11 +#define BCM56309_B1_REV_ID 0x12 + +#define BCM56310_DEVICE_ID 0xb310 +#define BCM56310_A0_REV_ID 1 +#define BCM56311_DEVICE_ID 0xb311 +#define BCM56311_A0_REV_ID 1 +#define BCM56312_DEVICE_ID 0xb312 +#define BCM56312_A0_REV_ID 1 +#define BCM56313_DEVICE_ID 0xb313 +#define BCM56313_A0_REV_ID 1 +#define BCM56314_DEVICE_ID 0xb314 +#define BCM56314_A0_REV_ID 1 +#define BCM56315_DEVICE_ID 0xb315 +#define BCM56315_A0_REV_ID 1 +#define BCM56316_DEVICE_ID 0xb316 +#define BCM56316_A0_REV_ID 1 +#define BCM56317_DEVICE_ID 0xb317 +#define BCM56317_A0_REV_ID 1 +#define BCM56318_DEVICE_ID 0xb318 +#define BCM56318_A0_REV_ID 1 +#define BCM56319_DEVICE_ID 0xb319 +#define BCM56319_A0_REV_ID 1 + +#ifndef EXCLUDE_BCM56324 +#define BCM56322_DEVICE_ID 0xb322 +#define BCM56322_A0_REV_ID 1 +#define BCM56324_DEVICE_ID 0xb324 +#define BCM56324_A0_REV_ID 1 +#endif + +#define BCM53300_DEVICE_ID 0xb006 +#define BCM53300_A0_REV_ID 0x11 +#define BCM53300_A1_REV_ID 0x12 +#define BCM53301_DEVICE_ID 0xb206 +#define BCM53301_A0_REV_ID 0x11 +#define BCM53301_A1_REV_ID 0x12 +#define BCM53302_DEVICE_ID 0xb008 +#define BCM53302_A0_REV_ID 0x11 +#define BCM53302_A1_REV_ID 0x12 + +#define BCM56500_DEVICE_ID 0xb500 +#define BCM56500_A0_REV_ID 1 +#define BCM56500_A1_REV_ID 2 +#define BCM56500_B0_REV_ID 0x11 +#define BCM56500_B1_REV_ID 0x12 +#define BCM56500_B2_REV_ID 0x13 +#define BCM56501_DEVICE_ID 0xb501 +#define BCM56501_A0_REV_ID 1 +#define BCM56501_A1_REV_ID 2 +#define BCM56501_B0_REV_ID 0x11 +#define BCM56501_B1_REV_ID 0x12 +#define BCM56501_B2_REV_ID 0x13 +#define BCM56502_DEVICE_ID 0xb502 +#define BCM56502_A0_REV_ID 1 +#define BCM56502_A1_REV_ID 2 +#define BCM56502_B0_REV_ID 0x11 +#define BCM56502_B1_REV_ID 0x12 +#define BCM56502_B2_REV_ID 0x13 +#define BCM56503_DEVICE_ID 0xb503 +#define BCM56503_A0_REV_ID 1 +#define BCM56503_A1_REV_ID 2 +#define BCM56503_B0_REV_ID 0x11 +#define BCM56503_B1_REV_ID 0x12 +#define BCM56503_B2_REV_ID 0x13 +#define BCM56504_DEVICE_ID 0xb504 +#define BCM56504_A0_REV_ID 1 +#define BCM56504_A1_REV_ID 2 +#define BCM56504_B0_REV_ID 0x11 +#define BCM56504_B1_REV_ID 0x12 +#define BCM56504_B2_REV_ID 0x13 +#define BCM56505_DEVICE_ID 0xb505 +#define BCM56505_A0_REV_ID 1 +#define BCM56505_A1_REV_ID 2 +#define BCM56505_B0_REV_ID 0x11 +#define BCM56505_B1_REV_ID 0x12 +#define BCM56505_B2_REV_ID 0x13 +#define BCM56506_DEVICE_ID 0xb506 +#define BCM56506_A0_REV_ID 1 +#define BCM56506_A1_REV_ID 2 +#define BCM56506_B0_REV_ID 0x11 +#define BCM56506_B1_REV_ID 0x12 +#define BCM56506_B2_REV_ID 0x13 +#define BCM56507_DEVICE_ID 0xb507 +#define BCM56507_A0_REV_ID 1 +#define BCM56507_A1_REV_ID 2 +#define BCM56507_B0_REV_ID 0x11 +#define BCM56507_B1_REV_ID 0x12 +#define BCM56507_B2_REV_ID 0x13 +#define BCM56508_DEVICE_ID 0xb508 +#define BCM56508_A0_REV_ID 1 +#define BCM56508_A1_REV_ID 2 +#define BCM56508_B0_REV_ID 0x11 +#define BCM56508_B1_REV_ID 0x12 +#define BCM56508_B2_REV_ID 0x13 +#define BCM56509_DEVICE_ID 0xb509 +#define BCM56509_A0_REV_ID 1 +#define BCM56509_A1_REV_ID 2 +#define BCM56509_B0_REV_ID 0x11 +#define BCM56509_B1_REV_ID 0x12 +#define BCM56509_B2_REV_ID 0x13 + +#define BCM56600_DEVICE_ID 0xb600 +#define BCM56600_A0_REV_ID 1 +#define BCM56600_B0_REV_ID 0x11 +#define BCM56600_C0_REV_ID 0x21 +#define BCM56601_DEVICE_ID 0xb601 +#define BCM56601_A0_REV_ID 1 +#define BCM56601_B0_REV_ID 0x11 +#define BCM56601_C0_REV_ID 0x21 +#define BCM56602_DEVICE_ID 0xb602 +#define BCM56602_A0_REV_ID 1 +#define BCM56602_B0_REV_ID 0x11 +#define BCM56602_C0_REV_ID 0x21 +#define BCM56603_DEVICE_ID 0xb603 +#define BCM56603_A0_REV_ID 1 +#define BCM56603_B0_REV_ID 0x11 +#define BCM56603_C0_REV_ID 0x21 +#define BCM56605_DEVICE_ID 0xb605 +#define BCM56605_A0_REV_ID 1 +#define BCM56605_B0_REV_ID 0x11 +#define BCM56605_C0_REV_ID 0x21 +#define BCM56606_DEVICE_ID 0xb606 +#define BCM56606_A0_REV_ID 1 +#define BCM56606_B0_REV_ID 0x11 +#define BCM56606_C0_REV_ID 0x21 +#define BCM56607_DEVICE_ID 0xb607 +#define BCM56607_A0_REV_ID 1 +#define BCM56607_B0_REV_ID 0x11 +#define BCM56607_C0_REV_ID 0x21 +#define BCM56608_DEVICE_ID 0xb608 +#define BCM56608_A0_REV_ID 1 +#define BCM56608_B0_REV_ID 0x11 +#define BCM56608_C0_REV_ID 0x21 + +#define BCM56580_DEVICE_ID 0xb580 +#define BCM56580_A0_REV_ID 1 + +#define BCM56700_DEVICE_ID 0xb700 +#define BCM56700_A0_REV_ID 1 +#define BCM56701_DEVICE_ID 0xb701 +#define BCM56701_A0_REV_ID 1 + +#define BCM56800_DEVICE_ID 0xb800 +#define BCM56800_A0_REV_ID 1 +#define BCM56801_DEVICE_ID 0xb801 +#define BCM56801_A0_REV_ID 1 +#define BCM56802_DEVICE_ID 0xb802 +#define BCM56802_A0_REV_ID 1 +#define BCM56803_DEVICE_ID 0xb803 +#define BCM56803_A0_REV_ID 1 + +#define BCM56224_DEVICE_ID 0xb224 +#define BCM56224_A0_REV_ID 1 +#define BCM56224_B0_REV_ID 0x11 +#define BCM56225_DEVICE_ID 0xb225 +#define BCM56225_A0_REV_ID 1 +#define BCM56225_B0_REV_ID 0x11 +#define BCM56226_DEVICE_ID 0xb226 +#define BCM56226_A0_REV_ID 1 +#define BCM56226_B0_REV_ID 0x11 +#define BCM56227_DEVICE_ID 0xb227 +#define BCM56227_A0_REV_ID 1 +#define BCM56227_B0_REV_ID 0x11 +#define BCM56228_DEVICE_ID 0xb228 +#define BCM56228_A0_REV_ID 1 +#define BCM56228_B0_REV_ID 0x11 +#define BCM56229_DEVICE_ID 0xb229 +#define BCM56229_A0_REV_ID 1 +#define BCM56229_B0_REV_ID 0x11 +#define BCM56024_DEVICE_ID 0xb024 +#define BCM56024_A0_REV_ID 1 +#define BCM56024_B0_REV_ID 0x11 +#define BCM56025_DEVICE_ID 0xb025 +#define BCM56025_A0_REV_ID 1 +#define BCM56025_B0_REV_ID 0x11 +#define BCM53724_DEVICE_ID 0xc724 +#define BCM53724_A0_REV_ID 1 +#define BCM53724_B0_REV_ID 0x11 +#define BCM53726_DEVICE_ID 0xc726 +#define BCM53726_A0_REV_ID 1 +#define BCM53726_B0_REV_ID 0x11 + +#define BCM53312_DEVICE_ID 0xc312 +#define BCM53312_A0_REV_ID 1 +#define BCM53312_B0_REV_ID 0x11 +#define BCM53313_DEVICE_ID 0xc313 +#define BCM53313_A0_REV_ID 1 +#define BCM53313_B0_REV_ID 0x11 +#define BCM53314_DEVICE_ID 0xc314 +#define BCM53314_A0_REV_ID 1 +#define BCM53314_B0_REV_ID 0x11 + +#define BCM53322_DEVICE_ID 0xc322 +#define BCM53322_A0_REV_ID 1 +#define BCM53323_DEVICE_ID 0xc323 +#define BCM53323_A0_REV_ID 1 +#define BCM53324_DEVICE_ID 0xc324 +#define BCM53324_A0_REV_ID 1 + + +#define BCM56218_DEVICE_ID 0xB218 +#define BCM56218_A0_REV_ID 1 +#define BCM56218_A1_REV_ID 2 +#define BCM56218_A2_REV_ID 3 +#define BCM56218X_DEVICE_ID 0xc710 +#define BCM56218X_A0_REV_ID 1 +#define BCM56218X_A1_REV_ID 2 +#define BCM56218X_A2_REV_ID 3 +#define BCM56219_DEVICE_ID 0xB219 +#define BCM56219_A0_REV_ID 1 +#define BCM56219_A1_REV_ID 2 +#define BCM56219_A2_REV_ID 3 +#define BCM56218R_DEVICE_ID 0xB21A +#define BCM56218R_A0_REV_ID 1 +#define BCM56218R_A1_REV_ID 2 +#define BCM56218R_A2_REV_ID 3 +#define BCM56219R_DEVICE_ID 0xB21B +#define BCM56219R_A0_REV_ID 1 +#define BCM56219R_A1_REV_ID 2 +#define BCM56219R_A2_REV_ID 3 +#define BCM56214_DEVICE_ID 0xB214 +#define BCM56214_A0_REV_ID 1 +#define BCM56214_A1_REV_ID 2 +#define BCM56214_A2_REV_ID 3 +#define BCM56215_DEVICE_ID 0xB215 +#define BCM56215_A0_REV_ID 1 +#define BCM56215_A1_REV_ID 2 +#define BCM56215_A2_REV_ID 3 +#define BCM56214R_DEVICE_ID 0xB21C +#define BCM56214R_A0_REV_ID 1 +#define BCM56214R_A1_REV_ID 2 +#define BCM56214R_A2_REV_ID 3 +#define BCM56215R_DEVICE_ID 0xB21D +#define BCM56215R_A0_REV_ID 1 +#define BCM56215R_A1_REV_ID 2 +#define BCM56215R_A2_REV_ID 3 +#define BCM56216_DEVICE_ID 0xB216 +#define BCM56216_A0_REV_ID 1 +#define BCM56216_A1_REV_ID 2 +#define BCM56216_A2_REV_ID 3 +#define BCM56217_DEVICE_ID 0xB217 +#define BCM56217_A0_REV_ID 1 +#define BCM56217_A1_REV_ID 2 +#define BCM56217_A2_REV_ID 3 +#define BCM56212_DEVICE_ID 0xB212 +#define BCM56212_A0_REV_ID 1 +#define BCM56212_A1_REV_ID 2 +#define BCM56212_A2_REV_ID 3 +#define BCM56213_DEVICE_ID 0xB213 +#define BCM56213_A0_REV_ID 1 +#define BCM56213_A1_REV_ID 2 +#define BCM56213_A2_REV_ID 3 +#define BCM53718_DEVICE_ID 0xC71A +#define BCM53718_A0_REV_ID 1 +#define BCM53718_A1_REV_ID 2 +#define BCM53718_A2_REV_ID 3 +#define BCM53714_DEVICE_ID 0xC71B +#define BCM53714_A0_REV_ID 1 +#define BCM53714_A1_REV_ID 2 +#define BCM53714_A2_REV_ID 3 +#define BCM53716_DEVICE_ID 0xC716 +#define BCM53716_A0_REV_ID 1 +#define BCM53716_A1_REV_ID 2 +#define BCM53716_A2_REV_ID 3 +#define BCM56018_DEVICE_ID 0xB018 +#define BCM56018_A0_REV_ID 1 +#define BCM56018_A1_REV_ID 2 +#define BCM56018_A2_REV_ID 3 +#define BCM56014_DEVICE_ID 0xB014 +#define BCM56014_A0_REV_ID 1 +#define BCM56014_A1_REV_ID 2 +#define BCM56014_A2_REV_ID 3 + +#define BCM56510_DEVICE_ID 0xb510 +#define BCM56510_A0_REV_ID 1 +#define BCM56511_DEVICE_ID 0xb511 +#define BCM56511_A0_REV_ID 1 +#define BCM56512_DEVICE_ID 0xb512 +#define BCM56512_A0_REV_ID 1 +#define BCM56513_DEVICE_ID 0xb513 +#define BCM56513_A0_REV_ID 1 +#define BCM56514_DEVICE_ID 0xb514 +#define BCM56514_A0_REV_ID 1 +#define BCM56516_DEVICE_ID 0xb516 +#define BCM56516_A0_REV_ID 1 +#define BCM56517_DEVICE_ID 0xb517 +#define BCM56517_A0_REV_ID 1 +#define BCM56518_DEVICE_ID 0xb518 +#define BCM56518_A0_REV_ID 1 +#define BCM56519_DEVICE_ID 0xb519 +#define BCM56519_A0_REV_ID 1 + +#define BCM56620_DEVICE_ID 0xb620 +#define BCM56620_A0_REV_ID 1 +#define BCM56620_A1_REV_ID 2 +#define BCM56620_B0_REV_ID 0x11 +#define BCM56620_B1_REV_ID 0x12 +#define BCM56620_B2_REV_ID 0x13 +#define BCM56624_DEVICE_ID 0xb624 +#define BCM56624_A0_REV_ID 1 +#define BCM56624_A1_REV_ID 2 +#define BCM56624_B0_REV_ID 0x11 +#define BCM56624_B1_REV_ID 0x12 +#define BCM56624_B2_REV_ID 0x13 +#define BCM56626_DEVICE_ID 0xb626 +#define BCM56626_A0_REV_ID 1 +#define BCM56626_A1_REV_ID 2 +#define BCM56626_B0_REV_ID 0x11 +#define BCM56626_B1_REV_ID 0x12 +#define BCM56626_B2_REV_ID 0x13 +#define BCM56628_DEVICE_ID 0xb628 +#define BCM56628_A0_REV_ID 1 +#define BCM56628_A1_REV_ID 2 +#define BCM56628_B0_REV_ID 0x11 +#define BCM56628_B1_REV_ID 0x12 +#define BCM56628_B2_REV_ID 0x13 +#define BCM56629_DEVICE_ID 0xb629 +#define BCM56629_A0_REV_ID 1 +#define BCM56629_A1_REV_ID 2 +#define BCM56629_B0_REV_ID 0x11 +#define BCM56629_B1_REV_ID 0x12 +#define BCM56629_B2_REV_ID 0x13 + +#define BCM56680_DEVICE_ID 0xb680 +#define BCM56680_A0_REV_ID 1 +#define BCM56680_A1_REV_ID 2 +#define BCM56680_B0_REV_ID 0x11 +#define BCM56680_B1_REV_ID 0x12 +#define BCM56680_B2_REV_ID 0x13 +#define BCM56684_DEVICE_ID 0xb684 +#define BCM56684_A0_REV_ID 1 +#define BCM56684_A1_REV_ID 2 +#define BCM56684_B0_REV_ID 0x11 +#define BCM56684_B1_REV_ID 0x12 +#define BCM56684_B2_REV_ID 0x13 +#define BCM56686_DEVICE_ID 0xb686 +#define BCM56686_B0_REV_ID 0x11 +#define BCM56686_B1_REV_ID 0x12 +#define BCM56686_B2_REV_ID 0x13 + +#define BCM56820_DEVICE_ID 0xb820 +#define BCM56820_A0_REV_ID 1 +#define BCM56820_B0_REV_ID 0x11 +#define BCM56821_DEVICE_ID 0xb821 +#define BCM56821_A0_REV_ID 1 +#define BCM56821_B0_REV_ID 0x11 +#define BCM56822_DEVICE_ID 0xb822 +#define BCM56822_A0_REV_ID 1 +#define BCM56822_B0_REV_ID 0x11 +#define BCM56823_DEVICE_ID 0xb823 +#define BCM56823_A0_REV_ID 1 +#define BCM56823_B0_REV_ID 0x11 +#define BCM56825_DEVICE_ID 0xb825 +#define BCM56825_B0_REV_ID 0x11 + +#define BCM56720_DEVICE_ID 0xb720 +#define BCM56720_A0_REV_ID 1 +#define BCM56720_B0_REV_ID 0x11 +#define BCM56721_DEVICE_ID 0xb721 +#define BCM56721_A0_REV_ID 1 +#define BCM56721_B0_REV_ID 0x11 + +#define BCM56725_DEVICE_ID 0xb725 +#define BCM56725_A0_REV_ID 1 +#define BCM56725_B0_REV_ID 0x11 + +#define BCM56630_DEVICE_ID 0xb630 +#define BCM56630_A0_REV_ID 1 +#define BCM56630_B0_REV_ID 0x11 +#define BCM56634_DEVICE_ID 0xb634 +#define BCM56634_A0_REV_ID 1 +#define BCM56634_B0_REV_ID 0x11 +#define BCM56636_DEVICE_ID 0xb636 +#define BCM56636_A0_REV_ID 1 +#define BCM56636_B0_REV_ID 0x11 +#define BCM56638_DEVICE_ID 0xb638 +#define BCM56638_A0_REV_ID 1 +#define BCM56638_B0_REV_ID 0x11 +#define BCM56639_DEVICE_ID 0xb639 +#define BCM56639_A0_REV_ID 1 +#define BCM56639_B0_REV_ID 0x11 + +#define BCM56685_DEVICE_ID 0xb685 +#define BCM56685_A0_REV_ID 1 +#define BCM56685_B0_REV_ID 0x11 +#define BCM56689_DEVICE_ID 0xb689 +#define BCM56689_A0_REV_ID 1 +#define BCM56689_B0_REV_ID 0x11 + +#define BCM56520_DEVICE_ID 0xb520 +#define BCM56520_A0_REV_ID 1 +#define BCM56520_B0_REV_ID 0x11 +#define BCM56521_DEVICE_ID 0xb521 +#define BCM56521_A0_REV_ID 1 +#define BCM56521_B0_REV_ID 0x11 +#define BCM56522_DEVICE_ID 0xb522 +#define BCM56522_A0_REV_ID 1 +#define BCM56522_B0_REV_ID 0x11 +#define BCM56524_DEVICE_ID 0xb524 +#define BCM56524_A0_REV_ID 1 +#define BCM56524_B0_REV_ID 0x11 +#define BCM56526_DEVICE_ID 0xb526 +#define BCM56526_A0_REV_ID 1 +#define BCM56526_B0_REV_ID 0x11 + +#define BCM56534_DEVICE_ID 0xb534 +#define BCM56534_B0_REV_ID 0x11 +#define BCM56538_DEVICE_ID 0xb538 +#define BCM56538_B0_REV_ID 0x11 + +#define BCM56331_DEVICE_ID 0xb331 +#define BCM56331_A0_REV_ID 1 +#define BCM56331_B0_REV_ID 0x11 +#define BCM56331_B1_REV_ID 0x12 +#define BCM56333_DEVICE_ID 0xb333 +#define BCM56333_A0_REV_ID 1 +#define BCM56333_B0_REV_ID 0x11 +#define BCM56333_B1_REV_ID 0x12 +#define BCM56334_DEVICE_ID 0xb334 +#define BCM56334_A0_REV_ID 1 +#define BCM56334_B0_REV_ID 0x11 +#define BCM56334_B1_REV_ID 0x12 +#define BCM56338_DEVICE_ID 0xb338 +#define BCM56338_A0_REV_ID 1 +#define BCM56338_B0_REV_ID 0x11 +#define BCM56338_B1_REV_ID 0x12 + +#define BCM56320_DEVICE_ID 0xb320 +#define BCM56320_A0_REV_ID 1 +#define BCM56320_B0_REV_ID 0x11 +#define BCM56320_B1_REV_ID 0x12 +#define BCM56321_DEVICE_ID 0xb321 +#define BCM56321_A0_REV_ID 1 +#define BCM56321_B0_REV_ID 0x11 +#define BCM56321_B1_REV_ID 0x12 + + +#define BCM56548H_DEVICE_ID 0xB54A +#define BCM56548H_A0_REV_ID 1 +#define BCM56548_DEVICE_ID 0xb548 +#define BCM56548_A0_REV_ID 1 +#define BCM56547_DEVICE_ID 0xb547 +#define BCM56547_A0_REV_ID 1 + +#define BCM56346_DEVICE_ID 0xb346 +#define BCM56346_A0_REV_ID 1 +#define BCM56345_DEVICE_ID 0xb345 +#define BCM56345_A0_REV_ID 1 +#define BCM56344_DEVICE_ID 0xb344 +#define BCM56344_A0_REV_ID 1 +#define BCM56342_DEVICE_ID 0xb342 +#define BCM56342_A0_REV_ID 1 +#define BCM56340_DEVICE_ID 0xb340 +#define BCM56340_A0_REV_ID 1 + +#define BCM56049_DEVICE_ID 0xb049 +#define BCM56049_A0_REV_ID 1 +#define BCM56048_DEVICE_ID 0xb048 +#define BCM56048_A0_REV_ID 1 +#define BCM56047_DEVICE_ID 0xb047 +#define BCM56047_A0_REV_ID 1 + +#define BCM56042_DEVICE_ID 0xb042 +#define BCM56042_A0_REV_ID 1 +#define BCM56041_DEVICE_ID 0xb041 +#define BCM56041_A0_REV_ID 1 +#define BCM56040_DEVICE_ID 0xb040 +#define BCM56040_A0_REV_ID 1 + +#define BCM56132_DEVICE_ID 0xb132 +#define BCM56132_A0_REV_ID 1 +#define BCM56132_B0_REV_ID 0x11 +#define BCM56132_B1_REV_ID 0x12 +#define BCM56134_DEVICE_ID 0xb134 +#define BCM56134_A0_REV_ID 1 +#define BCM56134_B0_REV_ID 0x11 +#define BCM56134_B1_REV_ID 0x12 + +#define BCM56230_DEVICE_ID 0xb230 +#define BCM56230_B1_REV_ID 0x12 +#define BCM56231_DEVICE_ID 0xb231 +#define BCM56231_B1_REV_ID 0x12 + +#define BCM56140_DEVICE_ID 0xb140 +#define BCM56140_A0_REV_ID 1 +#define BCM56142_DEVICE_ID 0xb142 +#define BCM56142_A0_REV_ID 1 +#define BCM56143_DEVICE_ID 0xb143 +#define BCM56143_A0_REV_ID 1 +#define BCM56144_DEVICE_ID 0xb144 +#define BCM56144_A0_REV_ID 1 +#define BCM56146_DEVICE_ID 0xb146 +#define BCM56146_A0_REV_ID 1 +#define BCM56147_DEVICE_ID 0xb147 +#define BCM56147_A0_REV_ID 1 +#define BCM56149_DEVICE_ID 0xb149 +#define BCM56149_A0_REV_ID 1 + +#define BCM56840_DEVICE_ID 0xb840 +#define BCM56840_A0_REV_ID 1 +#define BCM56840_A1_REV_ID 2 +#define BCM56840_A2_REV_ID 3 +#define BCM56840_A3_REV_ID 4 +#define BCM56840_A4_REV_ID 5 +#define BCM56840_B0_REV_ID 0x11 +#define BCM56840_B1_REV_ID 0x12 +#define BCM56841_DEVICE_ID 0xb841 +#define BCM56841_A0_REV_ID 1 +#define BCM56841_A1_REV_ID 2 +#define BCM56841_A2_REV_ID 3 +#define BCM56841_A3_REV_ID 4 +#define BCM56841_A4_REV_ID 5 +#define BCM56841_B0_REV_ID 0x11 +#define BCM56841_B1_REV_ID 0x12 +#define BCM56843_DEVICE_ID 0xb843 +#define BCM56843_A0_REV_ID 1 +#define BCM56843_A1_REV_ID 2 +#define BCM56843_A2_REV_ID 3 +#define BCM56843_A3_REV_ID 4 +#define BCM56843_A4_REV_ID 5 +#define BCM56843_B0_REV_ID 0x11 +#define BCM56843_B1_REV_ID 0x12 +#define BCM56845_DEVICE_ID 0xb845 +#define BCM56845_A0_REV_ID 1 +#define BCM56845_A1_REV_ID 2 +#define BCM56845_A2_REV_ID 3 +#define BCM56845_A3_REV_ID 4 +#define BCM56845_A4_REV_ID 5 +#define BCM56845_B0_REV_ID 0x11 +#define BCM56845_B1_REV_ID 0x12 + +#define BCM56743_DEVICE_ID 0xb743 +#define BCM56743_A0_REV_ID 1 +#define BCM56743_A1_REV_ID 2 +#define BCM56743_A2_REV_ID 3 +#define BCM56743_A3_REV_ID 4 +#define BCM56743_A4_REV_ID 5 +#define BCM56743_B0_REV_ID 0x11 +#define BCM56743_B1_REV_ID 0x12 +#define BCM56745_DEVICE_ID 0xb745 +#define BCM56745_A0_REV_ID 1 +#define BCM56745_A1_REV_ID 2 +#define BCM56745_A2_REV_ID 3 +#define BCM56745_A3_REV_ID 4 +#define BCM56745_A4_REV_ID 5 +#define BCM56745_B0_REV_ID 0x11 +#define BCM56745_B1_REV_ID 0x12 + +#define BCM56260_DEVICE_ID 0xb260 +#define BCM56260_A0_REV_ID 1 +#define BCM56260_B0_REV_ID 0x11 +#define BCM56261_DEVICE_ID 0xb261 +#define BCM56261_A0_REV_ID 1 +#define BCM56261_B0_REV_ID 0x11 +#define BCM56262_DEVICE_ID 0xb262 +#define BCM56262_A0_REV_ID 1 +#define BCM56262_B0_REV_ID 0x11 +#define BCM56263_DEVICE_ID 0xb263 +#define BCM56263_A0_REV_ID 1 +#define BCM56263_B0_REV_ID 0x11 + +#define BCM56265_DEVICE_ID 0xb265 +#define BCM56265_A0_REV_ID 1 +#define BCM56265_B0_REV_ID 0x11 +#define BCM56266_DEVICE_ID 0xb266 +#define BCM56266_A0_REV_ID 1 +#define BCM56266_B0_REV_ID 0x11 +#define BCM56267_DEVICE_ID 0xb267 +#define BCM56267_A0_REV_ID 1 +#define BCM56267_B0_REV_ID 0x11 +#define BCM56268_DEVICE_ID 0xb268 +#define BCM56268_A0_REV_ID 1 +#define BCM56268_B0_REV_ID 0x11 + +#define BCM56233_DEVICE_ID 0xb233 +#define BCM56233_B0_REV_ID 0x11 + +#define BCM56460_DEVICE_ID 0xb460 +#define BCM56460_A0_REV_ID 1 +#define BCM56460_B0_REV_ID 0x11 +#define BCM56461_DEVICE_ID 0xb461 +#define BCM56461_A0_REV_ID 1 +#define BCM56461_B0_REV_ID 0x11 +#define BCM56462_DEVICE_ID 0xb462 +#define BCM56462_A0_REV_ID 1 +#define BCM56462_B0_REV_ID 0x11 +#define BCM56463_DEVICE_ID 0xb463 +#define BCM56463_A0_REV_ID 1 +#define BCM56463_B0_REV_ID 0x11 + +#define BCM56465_DEVICE_ID 0xb465 +#define BCM56465_A0_REV_ID 1 +#define BCM56465_B0_REV_ID 0x11 +#define BCM56466_DEVICE_ID 0xb466 +#define BCM56466_A0_REV_ID 1 +#define BCM56466_B0_REV_ID 0x11 +#define BCM56467_DEVICE_ID 0xb467 +#define BCM56467_A0_REV_ID 1 +#define BCM56467_B0_REV_ID 0x11 +#define BCM56468_DEVICE_ID 0xb468 +#define BCM56468_A0_REV_ID 1 +#define BCM56468_B0_REV_ID 0x11 + +#define BCM56270_DEVICE_ID 0xb270 +#define BCM56270_A0_REV_ID 1 +#define BCM56271_DEVICE_ID 0xb271 +#define BCM56271_A0_REV_ID 1 +#define BCM56272_DEVICE_ID 0xb272 +#define BCM56272_A0_REV_ID 1 + +#define BCM53460_DEVICE_ID 0x8460 +#define BCM53460_A0_REV_ID 1 +#define BCM53461_DEVICE_ID 0x8461 +#define BCM53461_A0_REV_ID 1 + +#define BCM56842_DEVICE_ID 0xb842 +#define BCM56842_A0_REV_ID 1 +#define BCM56842_A1_REV_ID 2 +#define BCM56844_DEVICE_ID 0xb844 +#define BCM56844_A0_REV_ID 1 +#define BCM56844_A1_REV_ID 2 +#define BCM56846_DEVICE_ID 0xb846 +#define BCM56846_A0_REV_ID 1 +#define BCM56846_A1_REV_ID 2 +#define BCM56549_DEVICE_ID 0xb549 +#define BCM56549_A0_REV_ID 1 +#define BCM56549_A1_REV_ID 2 +#define BCM56053_DEVICE_ID 0xb053 +#define BCM56053_A0_REV_ID 1 +#define BCM56053_A1_REV_ID 2 +#define BCM56831_DEVICE_ID 0xb831 +#define BCM56831_A0_REV_ID 1 +#define BCM56831_A1_REV_ID 2 +#define BCM56835_DEVICE_ID 0xb835 +#define BCM56835_A0_REV_ID 1 +#define BCM56835_A1_REV_ID 2 +#define BCM56838_DEVICE_ID 0xb838 +#define BCM56838_A0_REV_ID 1 +#define BCM56838_A1_REV_ID 2 +#define BCM56847_DEVICE_ID 0xb847 +#define BCM56847_A0_REV_ID 1 +#define BCM56847_A1_REV_ID 2 +#define BCM56847_A2_REV_ID 3 +#define BCM56847_A3_REV_ID 4 +#define BCM56847_A4_REV_ID 5 +#define BCM56847_B0_REV_ID 0x11 +#define BCM56847_B1_REV_ID 0x12 +#define BCM56849_DEVICE_ID 0xb849 +#define BCM56849_A0_REV_ID 1 +#define BCM56849_A1_REV_ID 2 + +#define BCM56742_DEVICE_ID 0xb742 +#define BCM56742_A0_REV_ID 1 +#define BCM56742_A1_REV_ID 2 +#define BCM56742_A2_REV_ID 3 +#define BCM56744_DEVICE_ID 0xb744 +#define BCM56744_A0_REV_ID 1 +#define BCM56744_A1_REV_ID 2 +#define BCM56746_DEVICE_ID 0xb746 +#define BCM56746_A0_REV_ID 1 +#define BCM56746_A1_REV_ID 2 + +#define BCM88230_DEVICE_ID 0x0230 +#define BCM88230_A0_REV_ID 1 +#define BCM88230_B0_REV_ID 0x11 +#define BCM88230_C0_REV_ID 0x21 +#define BCM88231_DEVICE_ID 0x0231 +#define BCM88231_A0_REV_ID 1 +#define BCM88231_B0_REV_ID 0x11 +#define BCM88231_C0_REV_ID 0x21 +#define BCM88235_DEVICE_ID 0x0235 +#define BCM88235_A0_REV_ID 1 +#define BCM88235_B0_REV_ID 0x11 +#define BCM88235_C0_REV_ID 0x21 +#define BCM88236_DEVICE_ID 0x0236 +#define BCM88236_A0_REV_ID 1 +#define BCM88236_B0_REV_ID 0x11 +#define BCM88236_C0_REV_ID 0x21 +#define BCM88239_DEVICE_ID 0x0239 +#define BCM88239_A0_REV_ID 1 +#define BCM88239_B0_REV_ID 0x11 +#define BCM88239_C0_REV_ID 0x21 +#define BCM56613_DEVICE_ID 0xb613 +#define BCM56613_A0_REV_ID 1 +#define BCM56613_B0_REV_ID 0x11 +#define BCM56613_C0_REV_ID 0x21 + +#define BCM88732_DEVICE_ID 0x0732 +#define BCM88732_A0_REV_ID 1 +#define BCM88732_A1_REV_ID 2 +#define BCM88732_A2_REV_ID 4 +#define BCM88732_B0_REV_ID 0x11 +#define BCM88732_B1_REV_ID 0x12 +#define BCM88732_B2_REV_ID 0x13 + +#define BCM56640_DEVICE_ID 0xb640 +#define BCM56640_A0_REV_ID 1 +#define BCM56640_A1_REV_ID 2 +#define BCM56640_B0_REV_ID 0x11 +#define BCM56643_DEVICE_ID 0xb643 +#define BCM56643_A0_REV_ID 1 +#define BCM56643_A1_REV_ID 2 +#define BCM56643_B0_REV_ID 0x11 +#define BCM56644_DEVICE_ID 0xb644 +#define BCM56644_A0_REV_ID 1 +#define BCM56644_A1_REV_ID 2 +#define BCM56644_B0_REV_ID 0x11 +#define BCM56648_DEVICE_ID 0xb648 +#define BCM56648_A0_REV_ID 1 +#define BCM56648_A1_REV_ID 2 +#define BCM56648_B0_REV_ID 0x11 +#define BCM56649_DEVICE_ID 0xb649 +#define BCM56649_A0_REV_ID 1 +#define BCM56649_A1_REV_ID 2 +#define BCM56649_B0_REV_ID 0x11 + +#define BCM56540_DEVICE_ID 0xb540 +#define BCM56540_A0_REV_ID 1 +#define BCM56540_A1_REV_ID 2 +#define BCM56540_B0_REV_ID 0x11 +#define BCM56541_DEVICE_ID 0xb541 +#define BCM56541_A0_REV_ID 1 +#define BCM56541_A1_REV_ID 2 +#define BCM56541_B0_REV_ID 0x11 +#define BCM56542_DEVICE_ID 0xb542 +#define BCM56542_A0_REV_ID 1 +#define BCM56542_A1_REV_ID 2 +#define BCM56542_B0_REV_ID 0x11 +#define BCM56543_DEVICE_ID 0xb543 +#define BCM56543_A0_REV_ID 1 +#define BCM56543_A1_REV_ID 2 +#define BCM56543_B0_REV_ID 0x11 +#define BCM56544_DEVICE_ID 0xb544 +#define BCM56544_A0_REV_ID 1 +#define BCM56544_A1_REV_ID 2 +#define BCM56544_B0_REV_ID 0x11 + +#define BCM56545_DEVICE_ID 0xb545 +#define BCM56545_A0_REV_ID 1 +#define BCM56545_A1_REV_ID 2 +#define BCM56545_B0_REV_ID 0x11 +#define BCM56546_DEVICE_ID 0xb546 +#define BCM56546_A0_REV_ID 1 +#define BCM56546_A1_REV_ID 2 +#define BCM56546_B0_REV_ID 0x11 + +#define BCM56044_DEVICE_ID 0xb044 +#define BCM56044_B0_REV_ID 0x11 +#define BCM56045_DEVICE_ID 0xb045 +#define BCM56045_A0_REV_ID 1 +#define BCM56045_A1_REV_ID 2 +#define BCM56045_B0_REV_ID 0x11 +#define BCM56046_DEVICE_ID 0xb046 +#define BCM56046_A0_REV_ID 1 +#define BCM56046_A1_REV_ID 2 +#define BCM56046_B0_REV_ID 0x11 + + +#define BCM56440_DEVICE_ID 0xb440 +#define BCM56440_A0_REV_ID 1 +#define BCM56440_B0_REV_ID 0x11 +#define BCM56441_DEVICE_ID 0xb441 +#define BCM56441_A0_REV_ID 1 +#define BCM56441_B0_REV_ID 0x11 +#define BCM56442_DEVICE_ID 0xb442 +#define BCM56442_A0_REV_ID 1 +#define BCM56442_B0_REV_ID 0x11 +#define BCM56443_DEVICE_ID 0xb443 +#define BCM56443_A0_REV_ID 1 +#define BCM56443_B0_REV_ID 0x11 +#define BCM56445_DEVICE_ID 0xb445 +#define BCM56445_A0_REV_ID 1 +#define BCM56445_B0_REV_ID 0x11 +#define BCM56446_DEVICE_ID 0xb446 +#define BCM56446_A0_REV_ID 1 +#define BCM56446_B0_REV_ID 0x11 +#define BCM56447_DEVICE_ID 0xb447 +#define BCM56447_A0_REV_ID 1 +#define BCM56447_B0_REV_ID 0x11 +#define BCM56448_DEVICE_ID 0xb448 +#define BCM56448_A0_REV_ID 1 +#define BCM56448_B0_REV_ID 0x11 +#define BCM56449_DEVICE_ID 0xb449 +#define BCM56449_A0_REV_ID 1 +#define BCM56449_B0_REV_ID 0x11 +#define BCM56240_DEVICE_ID 0xb240 +#define BCM56240_A0_REV_ID 1 +#define BCM56240_B0_REV_ID 0x11 +#define BCM56241_DEVICE_ID 0xb241 +#define BCM56241_A0_REV_ID 1 +#define BCM56241_B0_REV_ID 0x11 +#define BCM56242_DEVICE_ID 0xb242 +#define BCM56242_A0_REV_ID 1 +#define BCM56242_B0_REV_ID 0x11 +#define BCM56243_DEVICE_ID 0xb243 +#define BCM56243_A0_REV_ID 1 +#define BCM56243_B0_REV_ID 0x11 +#define BCM56245_DEVICE_ID 0xb245 +#define BCM56245_A0_REV_ID 1 +#define BCM56245_B0_REV_ID 0x11 +#define BCM56246_DEVICE_ID 0xb246 +#define BCM56246_A0_REV_ID 1 +#define BCM56246_B0_REV_ID 0x11 +#define BCM55440_DEVICE_ID 0xa440 +#define BCM55440_A0_REV_ID 1 +#define BCM55440_B0_REV_ID 0x11 +#define BCM55441_DEVICE_ID 0xa441 +#define BCM55441_A0_REV_ID 1 +#define BCM55441_B0_REV_ID 0x11 + +#define BCM55450_DEVICE_ID 0xa450 +#define BCM55450_A0_REV_ID 1 +#define BCM55450_B0_REV_ID 0x11 +#define BCM55450_B1_REV_ID 0x12 + +#define BCM55455_DEVICE_ID 0xa455 +#define BCM55455_A0_REV_ID 1 +#define BCM55455_B0_REV_ID 0x11 +#define BCM55455_B1_REV_ID 0x12 + +#define BCM56248_DEVICE_ID 0xb248 +#define BCM56248_A0_REV_ID 1 +#define BCM56248_B0_REV_ID 0x11 +#define BCM56248_B1_REV_ID 0x12 + +#define BCM56450_DEVICE_ID 0xb450 +#define BCM56450_A0_REV_ID 1 +#define BCM56450_B0_REV_ID 0x11 +#define BCM56450_B1_REV_ID 0x12 + +#define BCM56452_DEVICE_ID 0xb452 +#define BCM56452_A0_REV_ID 1 +#define BCM56452_B0_REV_ID 0x11 +#define BCM56452_B1_REV_ID 0x12 + +#define BCM56454_DEVICE_ID 0xb454 +#define BCM56454_A0_REV_ID 1 +#define BCM56454_B0_REV_ID 0x11 +#define BCM56454_B1_REV_ID 0x12 + +#define BCM56455_DEVICE_ID 0xb455 +#define BCM56455_A0_REV_ID 1 +#define BCM56455_B0_REV_ID 0x11 +#define BCM56455_B1_REV_ID 0x12 + +#define BCM56456_DEVICE_ID 0xb456 +#define BCM56456_A0_REV_ID 1 +#define BCM56456_B0_REV_ID 0x11 +#define BCM56456_B1_REV_ID 0x12 + +#define BCM56457_DEVICE_ID 0xb457 +#define BCM56457_A0_REV_ID 1 +#define BCM56457_B0_REV_ID 0x11 +#define BCM56457_B1_REV_ID 0x12 + +#define BCM56458_DEVICE_ID 0xb458 +#define BCM56458_A0_REV_ID 1 +#define BCM56458_B0_REV_ID 0x11 +#define BCM56458_B1_REV_ID 0x12 + +#define BCM56850_DEVICE_ID 0xb850 +#define BCM56850_A0_REV_ID 1 +#define BCM56850_A1_REV_ID 2 +#define BCM56850_A2_REV_ID 3 +#define BCM56851_DEVICE_ID 0xb851 +#define BCM56851_A0_REV_ID 1 +#define BCM56851_A1_REV_ID 2 +#define BCM56851_A2_REV_ID 3 +#define BCM56852_DEVICE_ID 0xb852 +#define BCM56852_A0_REV_ID 1 +#define BCM56852_A1_REV_ID 2 +#define BCM56852_A2_REV_ID 3 +#define BCM56853_DEVICE_ID 0xb853 +#define BCM56853_A0_REV_ID 1 +#define BCM56853_A1_REV_ID 2 +#define BCM56853_A2_REV_ID 3 +#define BCM56854_DEVICE_ID 0xb854 +#define BCM56854_A0_REV_ID 1 +#define BCM56854_A1_REV_ID 2 +#define BCM56854_A2_REV_ID 3 +#define BCM56855_DEVICE_ID 0xb855 +#define BCM56855_A0_REV_ID 1 +#define BCM56855_A1_REV_ID 2 +#define BCM56855_A2_REV_ID 3 +#define BCM56834_DEVICE_ID 0xb834 +#define BCM56834_A0_REV_ID 1 +#define BCM56834_A1_REV_ID 2 +#define BCM56834_A2_REV_ID 3 + +#define BCM56860_DEVICE_ID 0xb860 +#define BCM56860_A0_REV_ID 1 +#define BCM56860_A1_REV_ID 2 +#define BCM56861_DEVICE_ID 0xb861 +#define BCM56861_A0_REV_ID 1 +#define BCM56861_A1_REV_ID 2 +#define BCM56862_DEVICE_ID 0xb862 +#define BCM56862_A0_REV_ID 1 +#define BCM56862_A1_REV_ID 2 +#define BCM56864_DEVICE_ID 0xb864 +#define BCM56864_A0_REV_ID 1 +#define BCM56864_A1_REV_ID 2 +#define BCM56865_DEVICE_ID 0xb865 +#define BCM56865_A0_REV_ID 1 +#define BCM56865_A1_REV_ID 2 +#define BCM56866_DEVICE_ID 0xb866 +#define BCM56866_A0_REV_ID 1 +#define BCM56866_A1_REV_ID 2 +#define BCM56867_DEVICE_ID 0xb867 +#define BCM56867_A0_REV_ID 1 +#define BCM56867_A1_REV_ID 2 +#define BCM56868_DEVICE_ID 0xb868 +#define BCM56868_A0_REV_ID 1 +#define BCM56868_A1_REV_ID 2 +#define BCM56832_DEVICE_ID 0xb832 +#define BCM56832_A0_REV_ID 1 +#define BCM56832_A1_REV_ID 2 +#define BCM56833_DEVICE_ID 0xb833 +#define BCM56833_A0_REV_ID 1 +#define BCM56833_A1_REV_ID 2 +#define BCM56836_DEVICE_ID 0xb836 +#define BCM56836_A0_REV_ID 1 +#define BCM56836_A1_REV_ID 2 + + +#define BCM56750_DEVICE_ID 0xb750 +#define BCM56750_A0_REV_ID 1 +#define BCM56750_A1_REV_ID 2 +#define BCM56750_A2_REV_ID 3 + +#define BCM56830_DEVICE_ID 0xb830 +#define BCM56830_A0_REV_ID 1 +#define BCM56830_A1_REV_ID 2 +#define BCM56830_A2_REV_ID 3 + +#define BCM56150_DEVICE_ID 0xb150 +#define BCM56150_A0_REV_ID 1 +#define BCM56151_DEVICE_ID 0xb151 +#define BCM56151_A0_REV_ID 1 +#define BCM56152_DEVICE_ID 0xb152 +#define BCM56152_A0_REV_ID 1 + +#define BCM53342_DEVICE_ID 0x8342 +#define BCM53342_A0_REV_ID 1 +#define BCM53343_DEVICE_ID 0x8343 +#define BCM53343_A0_REV_ID 1 +#define BCM53344_DEVICE_ID 0x8344 +#define BCM53344_A0_REV_ID 1 +#define BCM53346_DEVICE_ID 0x8346 +#define BCM53346_A0_REV_ID 1 +#define BCM53347_DEVICE_ID 0x8347 +#define BCM53347_A0_REV_ID 1 + +#define BCM53333_DEVICE_ID 0x8333 +#define BCM53333_A0_REV_ID 1 +#define BCM53334_DEVICE_ID 0x8334 +#define BCM53334_A0_REV_ID 1 + +#define BCM53393_DEVICE_ID 0x8393 +#define BCM53393_A0_REV_ID 1 +#define BCM53394_DEVICE_ID 0x8394 +#define BCM53394_A0_REV_ID 1 + +#define BCM53400_DEVICE_ID 0x8400 +#define BCM53400_A0_REV_ID 1 +#define BCM56060_DEVICE_ID 0xb060 +#define BCM56060_A0_REV_ID 1 +#define BCM56062_DEVICE_ID 0xb062 +#define BCM56062_A0_REV_ID 1 +#define BCM56063_DEVICE_ID 0xb063 +#define BCM56063_A0_REV_ID 1 +#define BCM56064_DEVICE_ID 0xb064 +#define BCM56064_A0_REV_ID 1 +#define BCM56065_DEVICE_ID 0xb065 +#define BCM56065_A0_REV_ID 1 +#define BCM56066_DEVICE_ID 0xb066 +#define BCM56066_A0_REV_ID 1 +#define BCM53401_DEVICE_ID 0x8401 +#define BCM53411_DEVICE_ID 0x8411 +#define BCM53401_A0_REV_ID 1 +#define BCM53402_DEVICE_ID 0x8402 +#define BCM53412_DEVICE_ID 0x8412 +#define BCM53402_A0_REV_ID 1 +#define BCM53403_DEVICE_ID 0x8403 +#define BCM53413_DEVICE_ID 0x8413 +#define BCM53403_A0_REV_ID 1 +#define BCM53404_DEVICE_ID 0x8404 +#define BCM53414_DEVICE_ID 0x8414 +#define BCM53404_A0_REV_ID 1 +#define BCM53405_DEVICE_ID 0x8405 +#define BCM53415_DEVICE_ID 0x8415 +#define BCM53405_A0_REV_ID 1 +#define BCM53406_DEVICE_ID 0x8406 +#define BCM53416_DEVICE_ID 0x8416 +#define BCM53406_A0_REV_ID 1 +#define BCM53408_DEVICE_ID 0x8408 +#define BCM53418_DEVICE_ID 0x8418 +#define BCM53408_A0_REV_ID 1 +#define BCM53365_DEVICE_ID 0x8365 +#define BCM53365_A0_REV_ID 1 +#define BCM53369_DEVICE_ID 0x8369 +#define BCM53369_A0_REV_ID 1 + +#define BCM53454_DEVICE_ID 0x8454 +#define BCM53455_DEVICE_ID 0x8455 +#define BCM53454_A0_REV_ID 1 +#define BCM53456_DEVICE_ID 0x8456 +#define BCM53457_DEVICE_ID 0x8457 +#define BCM53456_A0_REV_ID 1 + +#define BCM53422_DEVICE_ID 0x8422 +#define BCM53422_A0_REV_ID 1 +#define BCM53424_DEVICE_ID 0x8424 +#define BCM53424_A0_REV_ID 1 +#define BCM53426_DEVICE_ID 0x8426 +#define BCM53426_A0_REV_ID 1 + +#define BCM56960_DEVICE_ID 0xb960 +#define BCM56960_A0_REV_ID 1 +#define BCM56960_B0_REV_ID 0x11 +#define BCM56960_B1_REV_ID 0x12 +#define BCM56961_DEVICE_ID 0xb961 +#define BCM56961_A0_REV_ID 1 +#define BCM56961_B0_REV_ID 0x11 +#define BCM56961_B1_REV_ID 0x12 +#define BCM56962_DEVICE_ID 0xb962 +#define BCM56962_A0_REV_ID 1 +#define BCM56962_B0_REV_ID 0x11 +#define BCM56962_B1_REV_ID 0x12 +#define BCM56963_DEVICE_ID 0xb963 +#define BCM56963_A0_REV_ID 1 +#define BCM56963_B0_REV_ID 0x11 +#define BCM56963_B1_REV_ID 0x12 +#define BCM56930_DEVICE_ID 0xb930 +#define BCM56930_A0_REV_ID 1 +#define BCM56930_B0_REV_ID 0x11 +#define BCM56930_B1_REV_ID 0x12 +#define BCM56930_C0_REV_ID 0x21 +#define BCM56931_DEVICE_ID 0xb931 +#define BCM56931_A0_REV_ID 1 +#define BCM56931_B0_REV_ID 0x11 +#define BCM56931_C0_REV_ID 0x21 +#define BCM56935_DEVICE_ID 0xb935 +#define BCM56935_A0_REV_ID 1 +#define BCM56935_B0_REV_ID 0x11 +#define BCM56935_C0_REV_ID 0x21 +#define BCM56936_DEVICE_ID 0xb936 +#define BCM56936_A0_REV_ID 1 +#define BCM56936_B0_REV_ID 0x11 +#define BCM56936_C0_REV_ID 0x21 +#define BCM56939_DEVICE_ID 0xb939 +#define BCM56939_A0_REV_ID 1 +#define BCM56939_B0_REV_ID 0x11 +#define BCM56939_C0_REV_ID 0x21 + +#define BCM56168_DEVICE_ID 0xb168 +#define BCM56168_A0_REV_ID 1 +#define BCM56168_B0_REV_ID 0x11 +#define BCM56168_B1_REV_ID 0x12 +#define BCM56169_DEVICE_ID 0xb169 +#define BCM56169_A0_REV_ID 1 +#define BCM56169_B0_REV_ID 0x11 +#define BCM56169_B1_REV_ID 0x12 + +#define BCM56968_DEVICE_ID 0xb968 +#define BCM56968_A0_REV_ID 1 +#define BCM56968_B0_REV_ID 0x11 +#define BCM56968_B1_REV_ID 0x12 + +#define BCM56160_DEVICE_ID 0xb160 +#define BCM56160_A0_REV_ID 1 +#define BCM56160_B0_REV_ID 0x11 +#define BCM56162_DEVICE_ID 0xb162 +#define BCM56162_A0_REV_ID 1 +#define BCM56162_B0_REV_ID 0x11 + +#define BCM56163_DEVICE_ID 0xb163 +#define BCM56163_A0_REV_ID 1 +#define BCM56163_B0_REV_ID 0x11 +#define BCM56164_DEVICE_ID 0xb164 +#define BCM56164_A0_REV_ID 1 +#define BCM56164_B0_REV_ID 0x11 +#define BCM56166_DEVICE_ID 0xb166 +#define BCM56166_A0_REV_ID 1 +#define BCM56166_B0_REV_ID 0x11 + +#define BCM53440_DEVICE_ID 0x8440 +#define BCM53440_A0_REV_ID 1 +#define BCM53440_B0_REV_ID 0x11 +#define BCM53442_DEVICE_ID 0x8442 +#define BCM53442_A0_REV_ID 1 +#define BCM53442_B0_REV_ID 0x11 +#define BCM53443_DEVICE_ID 0x8443 +#define BCM53443_A0_REV_ID 1 +#define BCM53443_B0_REV_ID 0x11 + +#define BCM53434_DEVICE_ID 0x8434 +#define BCM53434_A0_REV_ID 1 +#define BCM53434_B0_REV_ID 0x11 + +#define BCM56560_DEVICE_ID 0xb560 +#define BCM56560_A0_REV_ID 1 +#define BCM56560_B0_REV_ID 0x11 +#define BCM56560_B1_REV_ID 0x12 + +#define BCM56561_DEVICE_ID 0xb561 +#define BCM56561_A0_REV_ID 1 +#define BCM56561_B0_REV_ID 0x11 +#define BCM56561_B1_REV_ID 0x12 + +#define BCM56562_DEVICE_ID 0xb562 +#define BCM56562_A0_REV_ID 1 +#define BCM56562_B0_REV_ID 0x11 +#define BCM56562_B1_REV_ID 0x12 + +#define BCM56565_DEVICE_ID 0xb565 +#define BCM56565_A0_REV_ID 1 +#define BCM56565_B0_REV_ID 0x11 +#define BCM56565_B1_REV_ID 0x12 + +#define BCM56566_DEVICE_ID 0xb566 +#define BCM56566_A0_REV_ID 1 +#define BCM56566_B0_REV_ID 0x11 +#define BCM56566_B1_REV_ID 0x12 + +#define BCM56567_DEVICE_ID 0xb567 +#define BCM56567_A0_REV_ID 1 +#define BCM56567_B0_REV_ID 0x11 +#define BCM56567_B1_REV_ID 0x12 + +#define BCM56568_DEVICE_ID 0xb568 +#define BCM56568_A0_REV_ID 1 +#define BCM56568_B0_REV_ID 0x11 +#define BCM56568_B1_REV_ID 0x12 + +#define BCM56760_DEVICE_ID 0xb760 +#define BCM56760_A0_REV_ID 1 +#define BCM56760_A1_REV_ID 2 +#define BCM56760_B0_REV_ID 0x11 +#define BCM56760_B1_REV_ID 0x12 + +#define BCM56762_DEVICE_ID 0xb762 +#define BCM56762_A0_REV_ID 1 +#define BCM56762_B0_REV_ID 0x11 +#define BCM56762_B1_REV_ID 0x12 + +#define BCM56764_DEVICE_ID 0xb764 +#define BCM56764_A0_REV_ID 1 +#define BCM56764_B0_REV_ID 0x11 +#define BCM56764_B1_REV_ID 0x12 + +#define BCM56765_DEVICE_ID 0xb765 +#define BCM56765_A0_REV_ID 1 +#define BCM56765_B0_REV_ID 0x11 +#define BCM56765_B1_REV_ID 0x12 + +#define BCM56766_DEVICE_ID 0xb766 +#define BCM56766_A0_REV_ID 1 +#define BCM56766_B0_REV_ID 0x11 +#define BCM56766_B1_REV_ID 0x12 + +#define BCM56768_DEVICE_ID 0xb768 +#define BCM56768_A0_REV_ID 1 +#define BCM56768_B0_REV_ID 0x11 +#define BCM56768_B1_REV_ID 0x12 + +#define BCM56068_DEVICE_ID 0xb068 +#define BCM56068_A0_REV_ID 1 +#define BCM56068_B0_REV_ID 0x11 +#define BCM56068_B1_REV_ID 0x12 + +#define BCM56069_DEVICE_ID 0xb069 +#define BCM56069_A0_REV_ID 1 +#define BCM56069_B0_REV_ID 0x11 +#define BCM56069_B1_REV_ID 0x12 + +#define BCM56170_DEVICE_ID 0xb170 +#define BCM56170_A0_REV_ID 1 +#define BCM56172_DEVICE_ID 0xb172 +#define BCM56172_A0_REV_ID 1 +#define BCM56174_DEVICE_ID 0xb174 +#define BCM56174_A0_REV_ID 1 + +#define BCM53570_DEVICE_ID 0x8570 +#define BCM53570_A0_REV_ID 1 +#define BCM53575_DEVICE_ID 0x8575 +#define BCM53575_A0_REV_ID 1 + + +#define BCM56965_DEVICE_ID 0xb965 +#define BCM56965_A0_REV_ID 1 +#define BCM56965_A1_REV_ID 2 +#define BCM56969_DEVICE_ID 0xb969 +#define BCM56969_A0_REV_ID 1 +#define BCM56966_DEVICE_ID 0xb966 +#define BCM56966_A0_REV_ID 1 +#define BCM56967_DEVICE_ID 0xb967 +#define BCM56967_A0_REV_ID 1 + +#define BCM56970_DEVICE_ID 0xb970 +#define BCM56970_A0_REV_ID 1 +#define BCM56970_B0_REV_ID 0x11 +#define BCM56971_DEVICE_ID 0xb971 +#define BCM56971_A0_REV_ID 1 +#define BCM56971_B0_REV_ID 0x11 +#define BCM56972_DEVICE_ID 0xb972 +#define BCM56972_A0_REV_ID 1 +#define BCM56972_B0_REV_ID 0x11 +#define BCM56974_DEVICE_ID 0xb974 +#define BCM56974_A0_REV_ID 1 +#define BCM56974_B0_REV_ID 0x11 + + +#define BCM56870_DEVICE_ID 0xb870 +#define BCM56870_A0_REV_ID 1 +#define BCM56873_DEVICE_ID 0xb873 +#define BCM56873_A0_REV_ID 1 + +#define BCM5665_DEVICE_ID 0x5665 +#define BCM5665_A0_REV_ID 1 +#define BCM5665_B0_REV_ID 0x11 + + +#define BCM5655_DEVICE_ID 0x5655 +#define BCM5655_A0_REV_ID 1 +#define BCM5655_B0_REV_ID 0x11 + + +#define BCM5650_DEVICE_ID 0x5650 +#define BCM5650_A0_REV_ID 1 +#define BCM5650_B0_REV_ID 0x11 +#define BCM5650_C0_REV_ID 0x21 + +#define BROADCOM_PHYID_HIGH 0x0040 + +#define BCM5338_PHYID_LOW 0x62b0 +#define BCM5338_A0_REV_ID 0 +#define BCM5338_A1_REV_ID 1 +#define BCM5338_B0_REV_ID 3 + +#define BCM5324_PHYID_LOW 0xbc20 +#define BCM5324_PHYID_HIGH 0x143 +#define BCM5324_A1_PHYID_HIGH 0x153 +#define BCM5324_DEVICE_ID 0xbc20 +#define BCM5324_A0_REV_ID 0 +#define BCM5324_A1_REV_ID 1 +#define BCM5324_A2_REV_ID 2 + +#define BCM5380_PHYID_LOW 0x6250 +#define BCM5380_A0_REV_ID 0 + +#define BCM5388_PHYID_LOW 0x6288 +#define BCM5388_A0_REV_ID 0 + +#define BCM5396_PHYID_LOW 0xbd70 +#define BCM5396_PHYID_HIGH 0x143 +#define BCM5396_DEVICE_ID 0x96 +#define BCM5396_A0_REV_ID 0 + +#define BCM5389_PHYID_LOW 0xbd70 +#define BCM5389_PHYID_HIGH 0x143 +#define BCM5389_DEVICE_ID 0x89 +#define BCM5389_A0_REV_ID 0 +#define BCM5389_A1_DEVICE_ID 0x86 +#define BCM5389_A1_REV_ID 1 + +#define BCM5398_PHYID_LOW 0xbcd0 +#define BCM5398_PHYID_HIGH 0x0143 +#define BCM5398_DEVICE_ID 0x98 +#define BCM5398_A0_REV_ID 0 + +#define BCM5325_PHYID_LOW 0xbc30 +#define BCM5325_PHYID_HIGH 0x143 +#define BCM5325_DEVICE_ID 0xbc30 +#define BCM5325_A0_REV_ID 0 +#define BCM5325_A1_REV_ID 1 + +#define BCM5348_PHYID_LOW 0xbe40 +#define BCM5348_PHYID_HIGH 0x0143 +#define BCM5348_DEVICE_ID 0x48 +#define BCM5348_A0_REV_ID 0 +#define BCM5348_A1_REV_ID 1 + +#define BCM5397_PHYID_LOW 0xbcd0 +#define BCM5397_PHYID_HIGH 0x0143 +#define BCM5397_DEVICE_ID 0x97 +#define BCM5397_A0_REV_ID 0 + +#define BCM5347_PHYID_LOW 0xbe40 +#define BCM5347_PHYID_HIGH 0x0143 +#define BCM5347_DEVICE_ID 0x47 +#define BCM5347_A0_REV_ID 0 + +#define BCM5395_PHYID_LOW 0xbcf0 +#define BCM5395_PHYID_HIGH 0x0143 +#define BCM5395_DEVICE_ID 0xbcf0 +#define BCM5395_A0_REV_ID 0 + +#define BCM53242_PHYID_LOW 0xbf10 +#define BCM53242_PHYID_HIGH 0x0143 +#define BCM53242_DEVICE_ID 0xbf10 +#define BCM53242_A0_REV_ID 0 +#define BCM53242_B0_REV_ID 4 +#define BCM53242_B1_REV_ID 5 + +#define BCM53262_PHYID_LOW 0xbf20 +#define BCM53262_PHYID_HIGH 0x0143 +#define BCM53262_DEVICE_ID 0xbf20 +#define BCM53262_A0_REV_ID 0 +#define BCM53262_B0_REV_ID 4 +#define BCM53262_B1_REV_ID 5 + +#define BCM53115_PHYID_LOW 0xbf80 +#define BCM53115_PHYID_HIGH 0x0143 +#define BCM53115_DEVICE_ID 0xbf80 +#define BCM53115_A0_REV_ID 0 +#define BCM53115_A1_REV_ID 1 +#define BCM53115_B0_REV_ID 2 +#define BCM53115_B1_REV_ID 3 +#define BCM53115_C0_REV_ID 8 + +#define BCM53118_PHYID_LOW 0xbfe0 +#define BCM53118_PHYID_HIGH 0x0143 +#define BCM53118_DEVICE_ID 0xbfe0 +#define BCM53118_A0_REV_ID 0 + +#define BCM53118_B0_REV_ID 4 +#define BCM53118_B1_REV_ID 5 + +#define BCM53280_PHYID_LOW 0x5e90 +#define BCM53280_PHYID_HIGH 0x0362 +#define BCM53280_DEVICE_ID (0x4 | BCM53280_PHYID_LOW) +#define BCM53280_A0_REV_ID 0 +#define BCM53280_B0_REV_ID 0x4 +#define BCM53280_B1_REV_ID 0x5 +#define BCM53280_B2_REV_ID 0x6 +#define BCM53286_DEVICE_ID (0x4 | BCM53280_PHYID_LOW) +#define BCM53288_DEVICE_ID (0xc | BCM53280_PHYID_LOW) +#define BCM53284_DEVICE_ID (0x7 | BCM53280_PHYID_LOW) +#define BCM53283_DEVICE_ID (0x6 | BCM53280_PHYID_LOW) +#define BCM53282_DEVICE_ID (0x5 | BCM53280_PHYID_LOW) +#define BCM53101_PHYID_LOW 0x5ed0 +#define BCM53101_PHYID_HIGH 0x0362 +#define BCM53101_DEVICE_ID 0x5ed0 +#define BCM53101_A0_REV_ID 0 +#define BCM53101_B0_REV_ID 4 + +#define BCM53125_PHYID_LOW 0x5f20 +#define BCM53125_PHYID_HIGH 0x0362 +#define BCM53125_DEVICE_ID 0x5f20 +#define BCM53125_A0_REV_ID 0 +#define BCM53125_B0_REV_ID 0x4 +#define BCM53125_MODEL_ID 0x53125 + +#define BCM53134_PHYID_LOW 0x5350 +#define BCM53134_PHYID_HIGH 0xAE02 +#define BCM53134_DEVICE_ID 0x5350 +#define BCM53134_A0_REV_ID 0x0 +#define BCM53134_B0_REV_ID 0x1 +#define BCM53134_B1_REV_ID 0x2 +#define BCM53134_A0_MODEL_ID 0x5035 +#define BCM53134_B0_MODEL_ID 0x5075 + +#define BCM53128_PHYID_LOW 0x5e10 +#define BCM53128_PHYID_HIGH 0x0362 +#define BCM53128_DEVICE_ID 0x5e10 +#define BCM53128_A0_REV_ID 0 +#define BCM53128_B0_REV_ID 0x4 +#define BCM53128_MODEL_ID 0x53128 + +#define BCM53600_PHYID_LOW 0x5f40 +#define BCM53600_PHYID_HIGH 0x0362 +#define BCM53600_DEVICE_ID (0x3 | BCM53600_PHYID_LOW) +#define BCM53600_A0_REV_ID 0 +#define BCM53602_DEVICE_ID (0x1 | BCM53600_PHYID_LOW) +#define BCM53603_DEVICE_ID (0x2 | BCM53600_PHYID_LOW) +#define BCM53604_DEVICE_ID (0x3 | BCM53600_PHYID_LOW) +#define BCM53606_DEVICE_ID (0x7 | BCM53600_PHYID_LOW) + +#define BCM89500_PHYID_LOW 0x5d30 +#define BCM89500_PHYID_HIGH 0x0362 +#define BCM89500_DEVICE_ID 0x9500 +#define BCM89501_DEVICE_ID 0x9501 +#define BCM89200_DEVICE_ID 0x9200 +#define BCM89500_A0_REV_ID 0 +#define BCM89500_B0_REV_ID 0x4 +#define BCM89500_MODEL_ID 0x89500 + +#define BCM53010_PHYID_LOW 0x8760 +#define BCM53010_PHYID_HIGH 0x600d +#define BCM53010_DEVICE_ID 0x3010 +#define BCM53011_DEVICE_ID 0x3011 +#define BCM53012_DEVICE_ID 0x3012 +#define BCM53010_A0_REV_ID 0 +#define BCM53010_A2_REV_ID 0x2 +#define BCM53010_MODEL_ID 0x53010 + +#define BCM53018_PHYID_LOW 0x87c0 +#define BCM53018_PHYID_HIGH 0x600d +#define BCM53017_DEVICE_ID 0x3016 +#define BCM53018_DEVICE_ID 0x3018 +#define BCM53019_DEVICE_ID 0x3019 +#define BCM53018_A0_REV_ID 0 +#define BCM53018_MODEL_ID 0x53016 + +#define BCM53020_PHYID_LOW 0x87f0 +#define BCM53020_PHYID_HIGH 0x600d +#define BCM53020_DEVICE_ID 0x8022 +#define BCM53022_DEVICE_ID 0x8022 +#define BCM53023_DEVICE_ID 0x8023 +#define BCM53025_DEVICE_ID 0x8025 +#define BCM58625_DEVICE_ID 0x8625 +#define BCM58622_DEVICE_ID 0x8622 +#define BCM58623_DEVICE_ID 0x8623 +#define BCM58525_DEVICE_ID 0x8525 +#define BCM58522_DEVICE_ID 0x8522 +#define BCM53020_A0_REV_ID 0 +#define BCM53020_MODEL_ID 0x3025 + +#define BCM4713_DEVICE_ID 0x4713 +#define BCM4713_A0_REV_ID 0 +#define BCM4713_A9_REV_ID 9 + +#define BCM53000_GMAC_DEVICE_ID 0x4715 +#define BCM53000_A0_REV_ID 0 + +#define BCM53010_GMAC_DEVICE_ID 0x4715 + +#define BCM53000PCIE_DEVICE_ID 0x5300 + +#define SANDBURST_VENDOR_ID 0x17ba +#define BME3200_DEVICE_ID 0x0280 +#define BME3200_A0_REV_ID 0x0000 +#define BME3200_B0_REV_ID 0x0001 +#define BM9600_DEVICE_ID 0x0480 +#define BM9600_A0_REV_ID 0x0000 +#define BM9600_B0_REV_ID 0x0010 +#define QE2000_DEVICE_ID 0x0300 +#define QE2000_A1_REV_ID 0x0001 +#define QE2000_A2_REV_ID 0x0002 +#define QE2000_A3_REV_ID 0x0003 +#define QE2000_A4_REV_ID 0x0004 +#define BCM88020_DEVICE_ID 0x0380 +#define BCM88020_A0_REV_ID 0x0000 +#define BCM88020_A1_REV_ID 0x0001 +#define BCM88020_A2_REV_ID 0x0002 +#define BCM88025_DEVICE_ID 0x0580 +#define BCM88025_A0_REV_ID 0x0000 +#define BCM88030_DEVICE_ID 0x0038 +#define BCM88030_A0_REV_ID 0x0001 +#define BCM88030_A1_REV_ID 0x0002 +#define BCM88030_B0_REV_ID 0x0011 +#define BCM88030_B1_REV_ID 0x0012 +#define BCM88034_DEVICE_ID 0x0034 +#define BCM88034_A0_REV_ID (BCM88030_A0_REV_ID) +#define BCM88034_A1_REV_ID (BCM88030_A1_REV_ID) +#define BCM88034_B0_REV_ID (BCM88030_B0_REV_ID) +#define BCM88034_B1_REV_ID (BCM88030_B1_REV_ID) +#define BCM88039_DEVICE_ID 0x0039 +#define BCM88039_A0_REV_ID (BCM88030_A0_REV_ID) +#define BCM88039_A1_REV_ID (BCM88030_A1_REV_ID) +#define BCM88039_B0_REV_ID (BCM88030_B0_REV_ID) +#define BCM88039_B1_REV_ID (BCM88030_B1_REV_ID) +#define BCM88130_DEVICE_ID 0x0480 +#define BCM88130_A0_REV_ID 0x0000 +#define BCM88130_A1_REV_ID 0x0001 +#define BCM88130_B0_REV_ID 0x0010 +#define PLX_VENDOR_ID 0x10b5 +#define PLX9656_DEVICE_ID 0x9656 +#define PLX9656_REV_ID 0x0000 +#define PLX9056_DEVICE_ID 0x9056 +#define PLX9056_REV_ID 0x0000 + +#define TK371X_DEVICE_ID 0x8600 +#define TK371X_A0_REV_ID 0x0 + +#define GEDI_DEVICE_ID 0xa100 +#define GEDI_REV_ID 0x0001 +#define ARAD_DEVICE_ID 0x8650 +#define ARAD_A0_REV_ID 0x0000 +#define ARAD_B0_REV_ID 0x0011 +#define ARAD_B1_REV_ID 0x0012 +#define BCM88650_DEVICE_ID ARAD_DEVICE_ID +#define BCM88650_A0_REV_ID ARAD_A0_REV_ID +#define BCM88650_B0_REV_ID ARAD_B0_REV_ID +#define BCM88650_B1_REV_ID ARAD_B1_REV_ID +#define BCM88750_DEVICE_ID 0x8750 +#define BCM88750_A0_REV_ID 0x0000 +#define BCM88750_B0_REV_ID 0x0011 +#define BCM88753_DEVICE_ID 0x8753 +#define BCM88753_A0_REV_ID 0x0000 +#define BCM88753_B0_REV_ID 0x0011 +#define BCM88754_DEVICE_ID 0x8754 +#define BCM88754_A0_REV_ID 0x0000 +#define BCM88754_ORIGINAL_VENDOR_ID 0x16FC +#define BCM88754_ORIGINAL_DEVICE_ID 0x020F +#define BCM88754_A0_ORIGINAL_REV_ID 0x0001 +#define BCM88755_DEVICE_ID 0x8755 +#define BCM88755_B0_REV_ID 0x0011 +#define BCM88770_DEVICE_ID 0x8770 +#define BCM88770_A1_REV_ID 0x0002 +#define BCM88773_DEVICE_ID 0x8773 +#define BCM88773_A1_REV_ID 0x0002 +#define BCM88774_DEVICE_ID 0x8774 +#define BCM88774_A1_REV_ID 0x0002 +#define BCM88775_DEVICE_ID 0x8775 +#define BCM88775_A1_REV_ID 0x0002 +#define BCM88776_DEVICE_ID 0x8776 +#define BCM88776_A1_REV_ID 0x0002 +#define BCM88777_DEVICE_ID 0x8777 +#define BCM88777_A1_REV_ID 0x0002 +#define BCM88950_DEVICE_ID 0x8950 +#define BCM88950_A0_REV_ID 0x0001 +#define BCM88950_A1_REV_ID 0x0002 +#define BCM88953_DEVICE_ID 0x8953 +#define BCM88953_A1_REV_ID 0x0002 +#define BCM88954_DEVICE_ID 0x8954 +#define BCM88954_A1_REV_ID 0x0002 +#define BCM88955_DEVICE_ID 0x8955 +#define BCM88955_A1_REV_ID 0x0002 +#define BCM88956_DEVICE_ID 0x8956 +#define BCM88956_A1_REV_ID 0x0002 +#define BCM88790_DEVICE_ID 0x8790 +#define BCM88790_A0_REV_ID 0x0001 +#define ARADPLUS_DEVICE_ID 0x8660 +#define ARADPLUS_A0_REV_ID 0x0001 +#define BCM88660_DEVICE_ID ARADPLUS_DEVICE_ID +#define BCM88660_A0_REV_ID ARADPLUS_A0_REV_ID +#define JERICHO_DEVICE_ID 0x8675 +#define JERICHO_A0_REV_ID 0x0001 +#define JERICHO_B0_REV_ID 0x0011 +#define JERICHO_A1_REV_ID 0x0002 +#define BCM88670_DEVICE_ID 0x8670 +#define BCM88670_A0_REV_ID JERICHO_A0_REV_ID +#define BCM88670_A1_REV_ID JERICHO_A1_REV_ID +#define BCM88671_DEVICE_ID 0x8671 +#define BCM88671_A0_REV_ID JERICHO_A0_REV_ID +#define BCM88671_A1_REV_ID JERICHO_A1_REV_ID +#define BCM88671M_DEVICE_ID 0x867A +#define BCM88671M_A0_REV_ID JERICHO_A0_REV_ID +#define BCM88671M_A1_REV_ID JERICHO_A1_REV_ID + +#define BCM88670_B0_REV_ID JERICHO_B0_REV_ID +#define BCM88671_B0_REV_ID JERICHO_B0_REV_ID +#define BCM88671M_B0_REV_ID JERICHO_B0_REV_ID + +#define BCM88672_DEVICE_ID 0x8672 +#define BCM88672_A0_REV_ID JERICHO_A0_REV_ID +#define BCM88672_A1_REV_ID JERICHO_A1_REV_ID + +#define BCM88672_B0_REV_ID JERICHO_B0_REV_ID + +#define BCM88673_DEVICE_ID 0x8673 +#define BCM88673_A0_REV_ID JERICHO_A0_REV_ID +#define BCM88673_A1_REV_ID JERICHO_A1_REV_ID +#define BCM88674_DEVICE_ID 0x8674 +#define BCM88674_A0_REV_ID JERICHO_A0_REV_ID +#define BCM88674_A1_REV_ID JERICHO_A1_REV_ID +#define BCM88675_DEVICE_ID JERICHO_DEVICE_ID +#define BCM88675_A0_REV_ID JERICHO_A0_REV_ID +#define BCM88675_A1_REV_ID JERICHO_A1_REV_ID +#define BCM88675M_DEVICE_ID 0x867B +#define BCM88675M_A0_REV_ID JERICHO_A0_REV_ID +#define BCM88675M_A1_REV_ID JERICHO_A1_REV_ID +#define BCM88676_DEVICE_ID 0x8676 +#define BCM88676_A0_REV_ID JERICHO_A0_REV_ID +#define BCM88676_A1_REV_ID JERICHO_A1_REV_ID +#define BCM88676M_DEVICE_ID 0x867C +#define BCM88676M_A0_REV_ID JERICHO_A0_REV_ID +#define BCM88676M_A1_REV_ID JERICHO_A1_REV_ID +#define BCM88677_DEVICE_ID 0x8677 +#define BCM88677_A0_REV_ID JERICHO_A0_REV_ID +#define BCM88677_A1_REV_ID JERICHO_A1_REV_ID +#define BCM88678_DEVICE_ID 0x8678 +#define BCM88678_A0_REV_ID JERICHO_A0_REV_ID +#define BCM88678_A1_REV_ID JERICHO_A1_REV_ID +#define BCM88679_DEVICE_ID 0x8679 +#define BCM88679_A0_REV_ID JERICHO_A0_REV_ID +#define BCM88679_A1_REV_ID JERICHO_A1_REV_ID + +#define BCM88673_B0_REV_ID JERICHO_B0_REV_ID +#define BCM88674_B0_REV_ID JERICHO_B0_REV_ID +#define BCM88675_B0_REV_ID JERICHO_B0_REV_ID +#define BCM88675M_B0_REV_ID JERICHO_B0_REV_ID +#define BCM88676_B0_REV_ID JERICHO_B0_REV_ID +#define BCM88676M_B0_REV_ID JERICHO_B0_REV_ID +#define BCM88677_B0_REV_ID JERICHO_B0_REV_ID +#define BCM88678_B0_REV_ID JERICHO_B0_REV_ID +#define BCM88679_B0_REV_ID JERICHO_B0_REV_ID +#define QMX_DEVICE_ID 0x8375 +#define QMX_A0_REV_ID 0x0001 +#define QMX_B0_REV_ID 0x0011 +#define QMX_A1_REV_ID 0x0002 +#define BCM88370_DEVICE_ID 0x8370 +#define BCM88370_A0_REV_ID QMX_A0_REV_ID +#define BCM88370_A1_REV_ID QMX_A1_REV_ID +#define BCM88371_DEVICE_ID 0x8371 +#define BCM88371_A0_REV_ID QMX_A0_REV_ID +#define BCM88371_A1_REV_ID QMX_A1_REV_ID +#define BCM88371M_DEVICE_ID 0x837A +#define BCM88371M_A0_REV_ID QMX_A0_REV_ID +#define BCM88371M_A1_REV_ID QMX_A1_REV_ID +#define BCM88375_DEVICE_ID QMX_DEVICE_ID +#define BCM88375_A0_REV_ID QMX_A0_REV_ID +#define BCM88375_A1_REV_ID QMX_A1_REV_ID +#define BCM88376_DEVICE_ID 0x8376 +#define BCM88376_A0_REV_ID QMX_A0_REV_ID +#define BCM88376_A1_REV_ID QMX_A1_REV_ID +#define BCM88376M_DEVICE_ID 0x837B +#define BCM88376M_A0_REV_ID QMX_A0_REV_ID +#define BCM88376M_A1_REV_ID QMX_A1_REV_ID +#define BCM88377_DEVICE_ID 0x8377 +#define BCM88377_A0_REV_ID QMX_A0_REV_ID +#define BCM88377_A1_REV_ID QMX_A1_REV_ID +#define BCM88378_DEVICE_ID 0x8378 +#define BCM88378_A0_REV_ID QMX_A0_REV_ID +#define BCM88378_A1_REV_ID QMX_A1_REV_ID +#define BCM88379_DEVICE_ID 0x8379 +#define BCM88379_A0_REV_ID QMX_A0_REV_ID +#define BCM88379_A1_REV_ID QMX_A1_REV_ID + +#define BCM88370_B0_REV_ID QMX_B0_REV_ID +#define BCM88371_B0_REV_ID QMX_B0_REV_ID +#define BCM88371M_B0_REV_ID QMX_B0_REV_ID +#define BCM88375_B0_REV_ID QMX_B0_REV_ID +#define BCM88376_B0_REV_ID QMX_B0_REV_ID +#define BCM88376M_B0_REV_ID QMX_B0_REV_ID +#define BCM88377_B0_REV_ID QMX_B0_REV_ID +#define BCM88378_B0_REV_ID QMX_B0_REV_ID +#define BCM88379_B0_REV_ID QMX_B0_REV_ID + + +#define JERICHO_PLUS_DEVICE_ID 0x8680 +#define JERICHO_PLUS_A0_REV_ID 0x0001 +#define BCM88680_DEVICE_ID JERICHO_PLUS_DEVICE_ID +#define BCM88680_A0_REV_ID JERICHO_PLUS_A0_REV_ID +#define BCM88680_A1_REV_ID 0x0002 + + +#define BCM88681_DEVICE_ID 0x8681 +#define BCM88681_A0_REV_ID JERICHO_PLUS_A0_REV_ID + +#define BCM88682_DEVICE_ID 0x8682 +#define BCM88682_A0_REV_ID JERICHO_PLUS_A0_REV_ID + +#define BCM88683_DEVICE_ID 0x8683 +#define BCM88683_A0_REV_ID JERICHO_PLUS_A0_REV_ID + +#define BCM88684_DEVICE_ID 0x8684 +#define BCM88684_A0_REV_ID JERICHO_PLUS_A0_REV_ID + +#define BCM88685_DEVICE_ID 0x8685 +#define BCM88685_A0_REV_ID JERICHO_PLUS_A0_REV_ID + +#define BCM88380_DEVICE_ID 0x8380 +#define BCM88380_A0_REV_ID JERICHO_PLUS_A0_REV_ID +#define BCM88381_DEVICE_ID 0x8381 +#define BCM88381_A0_REV_ID JERICHO_PLUS_A0_REV_ID + +#define JERICHO_2_DEVICE_ID 0x8690 +#define JERICHO_2_A0_REV_ID 0x0001 +#define BCM88690_DEVICE_ID JERICHO_2_DEVICE_ID +#define BCM88690_A0_REV_ID JERICHO_2_A0_REV_ID + +#define QAX_DEVICE_ID 0x8470 +#define QAX_A0_REV_ID 0x0001 +#define QAX_B0_REV_ID 0x0011 +#define BCM88470_DEVICE_ID QAX_DEVICE_ID +#define BCM88470_B0_REV_ID QAX_B0_REV_ID +#define BCM88470P_DEVICE_ID 0x847C +#define BCM88471_DEVICE_ID 0x8471 +#define BCM88473_DEVICE_ID 0x8473 +#define BCM88474_DEVICE_ID 0x8474 +#define BCM88474H_DEVICE_ID 0x847B +#define BCM88476_DEVICE_ID 0x8476 +#define BCM88477_DEVICE_ID 0x8477 + + + + +#define BCM88470_A0_REV_ID QAX_A0_REV_ID + +#define QUX_DEVICE_ID 0x8270 +#define QUX_A0_REV_ID 0x0001 +#define QUX_A1_REV_ID 0x0002 +#define QUX_B0_REV_ID 0x0011 +#define BCM88270_DEVICE_ID QUX_DEVICE_ID +#define BCM88270_A0_REV_ID QUX_A0_REV_ID +#define BCM88270_A1_REV_ID QUX_A1_REV_ID +#define BCM88272_DEVICE_ID 0x8272 +#define BCM88273_DEVICE_ID 0x8273 +#define BCM88278_DEVICE_ID 0x8278 + +#define FLAIR_DEVICE_ID 0xF000 +#define FLAIR_A0_REV_ID 0x0001 +#define BCM8206_DEVICE_ID FLAIR_DEVICE_ID +#define BCM8206_A0_REV_ID FLAIR_A0_REV_ID + +#define ARDON_DEVICE_ID 0x8202 +#define ARDON_A0_REV_ID 0x0000 +#define BCM88202_DEVICE_ID ARDON_DEVICE_ID +#define BCM88202_A0_REV_ID ARDON_A0_REV_ID +#define ARDON_A1_REV_ID 0x0001 +#define BCM88202_A1_REV_ID ARDON_A1_REV_ID +#define ARDON_A2_REV_ID 0x0002 +#define BCM88202_A2_REV_ID ARDON_A2_REV_ID +#define BCM2801PM_DEVICE_ID 0x2801 +#define BCM2801PM_A0_REV_ID 0x0000 +#define BCM88360_DEVICE_ID 0x8360 +#define BCM88360_A0_REV_ID ARADPLUS_A0_REV_ID +#define BCM88361_DEVICE_ID 0x8361 +#define BCM88361_A0_REV_ID ARADPLUS_A0_REV_ID +#define BCM88363_DEVICE_ID 0x8363 +#define BCM88363_A0_REV_ID ARADPLUS_A0_REV_ID +#define BCM88460_DEVICE_ID 0x8460 +#define BCM88460_A0_REV_ID ARADPLUS_A0_REV_ID +#define BCM88461_DEVICE_ID 0x8461 +#define BCM88461_A0_REV_ID ARADPLUS_A0_REV_ID +#define BCM88560_DEVICE_ID 0x8560 +#define BCM88560_A0_REV_ID ARADPLUS_A0_REV_ID +#define BCM88561_DEVICE_ID 0x8561 +#define BCM88561_A0_REV_ID ARADPLUS_A0_REV_ID +#define BCM88562_DEVICE_ID 0x8562 +#define BCM88562_A0_REV_ID ARADPLUS_A0_REV_ID +#define BCM88661_DEVICE_ID 0x8661 +#define BCM88661_A0_REV_ID ARADPLUS_A0_REV_ID +#define BCM88664_DEVICE_ID 0x8664 +#define BCM88664_A0_REV_ID ARADPLUS_A0_REV_ID + + +#define BCM88350_DEVICE_ID 0x8350 +#define BCM88350_B1_REV_ID ARAD_B1_REV_ID +#define BCM88351_DEVICE_ID 0x8351 +#define BCM88351_B1_REV_ID ARAD_B1_REV_ID +#define BCM88450_DEVICE_ID 0x8450 +#define BCM88450_B1_REV_ID ARAD_B1_REV_ID +#define BCM88451_DEVICE_ID 0x8451 +#define BCM88451_B1_REV_ID ARAD_B1_REV_ID +#define BCM88550_DEVICE_ID 0x8550 +#define BCM88550_B1_REV_ID ARAD_B0_REV_ID +#define BCM88551_DEVICE_ID 0x8551 +#define BCM88551_B1_REV_ID ARAD_B1_REV_ID +#define BCM88552_DEVICE_ID 0x8552 +#define BCM88552_B1_REV_ID ARAD_B1_REV_ID +#define BCM88651_DEVICE_ID 0x8651 +#define BCM88651_B1_REV_ID ARAD_B1_REV_ID +#define BCM88654_DEVICE_ID 0x8654 +#define BCM88654_B1_REV_ID ARAD_B1_REV_ID + +#define BCM88772_DEVICE_ID 0x8772 +#define BCM88952_DEVICE_ID 0x8952 +#define BCM88772_A1_REV_ID 0x0002 +#define BCM88952_A0_REV_ID 0x0001 +#define BCM88952_A1_REV_ID 0x0002 + +#define BCM88752_DEVICE_ID 0x8752 +#define BCM88752_A0_REV_ID 0x0000 +#define BCM88752_B0_REV_ID 0x0011 + + +#define BCM83207_DEVICE_ID 0x3207 +#define BCM83208_DEVICE_ID 0x3208 +#define BCM83207_A0_REV_ID 0x0001 +#define BCM83208_A0_REV_ID 1 + +#define PCP_PCI_VENDOR_ID 0x1172 +#define PCP_PCI_DEVICE_ID 0x4 + +#define ACP_PCI_VENDOR_ID 0x10ee +#define ACP_PCI_DEVICE_ID 0x7011 +#define ACP_PCI_REV_ID 0x0001 +#endif + only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Make.config +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Make.config @@ -0,0 +1,364 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# $Id: Make.config,v 1.3 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ +# + +ifneq ($(strip $(override-target)),) +override TARGET=$(override-target) +endif + +export TARGET + +# +# Set up the target name, and the target base variables. +# +# target = The full name of the target such as vxworks-bmw +# targetbase = 1st part of target (e.g. vxworks) +# targetplat = 2nd part of target (e.g. x86) if any; otherwise same as 1st +# +target = ${TARGET} +targetsplt = $(subst -, , ${target}) # change hyphens to spaces +targetbase = $(word 1,${targetsplt}) +targetplat = $(subst ${targetbase}-,,${TARGET}) + +# +# Common configuration for all platforms +# (Additional platform-dependent configurations are in Makefile.xxx) +# + +# +# THIS FILE SHOULD NOT BE MODIFIED LOCALLY, to override, add a file +# $SDK/make/Make.local that sets your local settings, and/or provide +# a path to your settings using the MAKE_LOCAL variable. If +# either of these files exists, their values will override those in this makefile. +# +ifdef MAKE_LOCAL +-include ${MAKE_LOCAL} +endif + +-include ${SDK}/make/Make.local + +ifdef ALL_CHIPS + ROBO_CHIPS = 1 + ESW_CHIPS = 1 +else + ifndef ROBO_CHIPS + ESW_CHIPS = 1 + endif +endif # ALL_CHIPS + +# +# By default, turn off the "changing directory" message. +# +MAKEFLAGS += --no-print-directory + +# +# Use gmake by default +# + +include ${SDK}/make/Make.tools +include ${SDK}/make/Makefile.${target} + +# use QUIET=1 to control printing of compilation lines +ifdef QUIET +Q:=@ +else +Q:= +endif + +# +# Suffix to add to the "target" files to allow local builds with different +# flags. Set "target_suffix" to XXX to cause the build to put built objects +# in ${target}${target_suffix}. This allows things like building a debug +# version with different flags. This may also be set in another Makefile. +# + +#target_suffix := + +# +# Optional suffix to add to the build directory and output binary files +# to allow multiple builds to co-exist for various reasons. +# +#chip_suffix := -$(shell echo $(CHIP) | tr A-Z a-z) + +# +# Combined suffixes +# +all_suffix = ${chip_suffix}${target_suffix} + +# +# Default location to place binaries and make depend files for building +# purposes. +# +ifeq "$(HOSTTYPE)" "Windows2000PC" +BLDROOTWITHDRIVE = ${SDK}/build/${target}${all_suffix}${bldroot_suffix} +BLDROOT = ${SDK_NO_DRIVE_NAME}/build/${target}${all_suffix}${bldroot_suffix} +else # ifeq "$(HOSTTYPE)" "Windows2000PC" + +ifndef SDKBUILD +SDKBUILD :=build +endif + +BLDROOT = ${SDK}/${SDKBUILD}/$(if ${BLDCONFIG},${BLDCONFIG}/)${target}${all_suffix}${bldroot_suffix} + +endif # ifeq "$(HOSTTYPE)" "Windows2000PC" + +# This is needed because we cannot include Make.vxworks before Make.config +ifndef DEST_DIR_SUFFIX +export DEST_DIR_SUFFIX :=$(subst $(realpath $(SDK))/systems,,$(realpath $(CURDIR)/$(dir ($(firstword $(MAKEFILE_LIST)))))) +ifeq ($(MAKELEVEL),0) +endif +endif + +ifeq ($(DEST_DIR),) +export DEST_DIR :=${SDK}/${SDKBUILD}$(if ${BLDCONFIG},/${BLDCONFIG})$(DEST_DIR_SUFFIX) +endif + +ifdef LOCALDIR +BLDDIR = ${BLDROOT}/${LOCALDIR} +ifeq "$(HOSTTYPE)" "Windows2000PC" +BLDDIRWITHDRIVE = ${BLDROOTWITHDRIVE}/${LOCALDIR} +endif +else # ifdef LOCALDIR +BLDDIR = ${BLDROOT} +ifeq "$(HOSTTYPE)" "Windows2000PC" +BLDDIRWITHDRIVE = ${BLDROOTWITHDRIVE} +endif +endif # ifdef LOCALDIR + +LIBDIR = ${BLDROOT} + +# +# Export directory, where build objects used by the outside world are +# placed (exported header files, libs, bins) +# +EXPDIR = ${SDK}/export/${target}${all_suffix} + +# +# Standard include paths +# +INCDIR = ${SDK}/include + +# +# Compilation Flags +# +# Flags may be added to (see below) +# + +INCFLAGS = -I${INCDIR} -I${SDK}/systems + +CFLAGS += ${INCFLAGS} +CXXFLAGS += ${INCFLAGS} +CPPFLAGS += ${INCFLAGS} + +# +# Debug #ifdef control +# +# Compiling out #ifdef DEBUG code saves about 1.3% on executable size. +# It is recommended to leave debug enabled when developing applications. +# +ifndef DEBUG_IFDEFS +DEBUG_IFDEFS=TRUE +endif + +ifeq ($(DEBUG_IFDEFS),TRUE) +CFLAGS += -DBROADCOM_DEBUG +CXXFLAGS += -DBROADCOM_DEBUG +CPPFLAGS += -DBROADCOM_DEBUG +endif + +# +# Debug symbol information control +# +ifndef DEBUG_SYMBOLS +DEBUG_SYMBOLS=TRUE +endif + +ifeq ($(DEBUG_SYMBOLS),TRUE) +CFLAGS += -g +CXXFLAGS += -g +CPPFLAGS += -g +endif + +# +# If DEBUG_CFLAGS is set, add its contents to CFLAGS. +# May be useful for setting on the command line or adding to Make.local. +# Example: gmake DEBUG_CFLAGS=-save-temps system.c +# + +ifneq ($(DEBUG_CFLAGS),) +CFLAGS += $(DEBUG_CFLAGS) +CXXFLAGS += $(DEBUG_CFLAGS) +CPPFLAGS += $(DEBUG_CFLAGS) +endif + +# +# Optimization level +# +# Set DEBUG_OPTIMIZE to TRUE (default) to use a normal optimization +# determined by OPTFLAGS_DEFAULT in the platform Makefile. +# Set DEBUG_OPTIMIZE to FALSE to use no optimization, +# strongly recommended when using any debugger. +# Set DEBUG_OPTIMIZE to any other option string to request specific +# optimization flags (for example -O2). +# +ifndef DEBUG_OPTIMIZE +DEBUG_OPTIMIZE=TRUE +endif + +ifeq ($(DEBUG_OPTIMIZE),TRUE) +OPTFLAGS += $(OPTFLAGS_DEFAULT) +else +ifneq ($(DEBUG_OPTIMIZE),FALSE) +OPTFLAGS += $(DEBUG_OPTIMIZE) +endif +endif + +# +# Debug assertion control. +# +# Compiling out assert() saves about 1.1% on executable size, +# however doing so is VERY MUCH discouraged. +# +ifndef DEBUG_ASSERTS +DEBUG_ASSERTS=TRUE +endif + +ifeq ($(DEBUG_ASSERTS),FALSE) +CFLAGS += -DNDEBUG +CXXFLAGS += -DNDEBUG +CPPFLAGS += -DNDEBUG +endif + +# +# GCC pedantic mode. +# +ifeq ($(DEBUG_PEDANTIC),TRUE) +CFGFLAGS += -D__PEDANTIC__ +CFLAGS += --pedantic +CXXFLAGS += --pedantic +endif + +# +# In each directory, build a list of local sources, objects, and headers +# +LSRCS = $(wildcard *.c *.cpp *.s *.cc *.C) +LOBJS = $(addsuffix .o, $(basename ${LSRCS})) +BOBJS = $(addprefix ${BLDDIR}/,${LOBJS}) +LHDRS = $(wildcard *.h *.H) +LDOTIS = $(wildcard *.i) + + +# +# Rule to create object file (build) directory +# + +.PHONY: all install clean distclean + +.PRECIOUS: ${BLDDIR}/.tree + +%/.tree: + @$(ECHO) 'Creating build directory $(dir $@)' + @$(MKDIR) $(dir $@) + @$(ECHO) "Build Directory for ${LOCALDIR} Created" > $@ + +# Rule allowing build through CPP only, creates .E file from .c file. + +%.E: %.c + $Q${CC} -E ${CFLAGS} $< | sed -e '/^ *$$/d' -e p -e d > $@ + +# Rule allowing build through source only, creates .s file from .c file. + +%.s: %.c + $Q${CC} -S ${CFLAGS} $< + +# +# Default Build rules for .c --> .o, leaving the binary in BLDDIR/X.o, +# even if file not built from directory of source. +# +ifeq ($(FAST),1) +${BLDDIR}/%.o: %.c +else +ifdef GENERATE_C_FILES +${BLDDIR}/%.o: %.c +else +${BLDDIR}/%.o: %.c +endif +endif +ifdef QUIET + @${ECHO} Compiling ${LOCALDIR}/$< +endif +ifdef LOCAL_D_FILE + $Q$(CC) $(CFLAGS) $(EXTRA_CFLAGS) -o $@ -c $< --write-user-dependencies + -@/bin/cp $*.d $(BLDDIR)/$*.d + -@/bin/rm -f $*.d +else + $Q$(CC) -MD -MF $(BLDDIR)/$*.d $(CFLAGS) $(EXTRA_CFLAGS) -o $@ -c $< +endif + @/bin/cp $(BLDDIR)/$*.d $(BLDDIR)/$*.tmp;\ + /bin/sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \ + -e '/^$$/ d' -e 's/$$/ :/' \ + < $(BLDDIR)/$*.d >> $(BLDDIR)/$*.tmp; \ + /bin/sed \ + -e 's| \([0-9a-zA-Z]\)| '$(SDK)/$(LOCALDIR)'\/\1|g' \ + -e 's|^\([0-9a-zA-Z]\)|'$(SDK)/$(LOCALDIR)'/\1|g' \ + -e 's| \(\.\.\/\)| '$(SDK)/$(LOCALDIR)'\/\1|g' \ + -e 's|'$(SDK)'|'$$\{SDK\}'|g' \ + -e 's/\w*\/\.\.\/*//g' \ + -e 's/\w*\/\.\.\/*//g' \ + -e 's/\w*\/\.\.\/*//g' \ + < $(BLDDIR)/$*.tmp > $(BLDDIR)/$*.P; \ + /bin/rm -f $(BLDDIR)/$*.d $(BLDDIR)/$*.tmp + +${BLDDIR}/%.o: %.s +ifdef QUIET + @${ECHO} Assembling ${LOCALDIR}/$< +endif + $Q${CC} ${CFLAGS} ${EXTRA_CFLAGS} -c $< -o $@ + +${BLDDIR}/%.o: %.cpp +ifdef QUIET + @${ECHO} Compiling ${LOCALDIR}/$< +endif + $Q${CXX} -c ${CXXFLAGS} -c $< -o $@ + +${BLDDIR}/%.o: %.cc ${BLDDIR}/.tree +ifdef QUIET + @${ECHO} Compiling ${LOCALDIR}/$< +endif + $Q${CXX} -c ${CXXFLAGS} -c $< -o $@ + +# +# Cause "make foo.o" in any subdirectory to put the object in the build +# directory instead of the local directory. +# +%.o: ${BLDDIR}/%.o + @ + +# +# List of directories where built objects live. +# (we are not making the export directories for now) +# +#DIRS = ${BLDDIR} ${EXPDIR}/lib ${EXPDIR}/bin ${EXPDIR}/include +DIRS = ${BLDDIR} + +ifeq (C_COMPILER,$(MAKECMDGOALS)) +C_COMPILER: + @echo $(CC) +endif only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Make.depend +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Make.depend @@ -0,0 +1,109 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# $Id: Make.depend,v 1.14 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ +# +# Default rule to build dependencies. This builds a x.d file for each +# x.c file that describes the dependencies. We then conditionally include +# the generated .d files. +# + +# +# If making 'clean', do not include any .d files. If they are included, +# gmake intrinsically tries to remake them all. +# +ifeq (,$(findstring clean,$(MAKECMDGOALS))) + +ZFS :=$(wildcard *.zf) +ZFC := $(ZFS:.zf=.c) + +ifdef GENERATE_C_FILES +ifndef GEN_INCS +$(error "GEN_INCS was not defined") +endif + +ZF_GEN = ${SDK}/tools/zFrameCodeGen.pl + +# 1=.zf +define ZFS_RULE +$(1:.zf=Console.c) : $(1:.zf=.c) + @echo updated $$@ from $$? + +$(1:.zf=.c) : $(1) $(ZF_GEN) + @$(PERL) $(ZF_GEN) -s -z . -p . -g $1 -t c + @echo generated ${LOCALDIR}/$$@ from $(1) + @mv $$(*F).cx $$@ + @if [ -e $$(*F)Console.cx ] ; then \ + mv $$(*F)Console.cx $$(*F)Console.c; \ + echo Created $$(*F)Console.c ;\ + fi + @if [ -e $$(*F)Console.hx ] ; then \ + echo Created $(GEN_INCS)/$$(*F)Console.hx ;\ + mv $$(*F)Console.hx $(GEN_INCS)/ ; \ + fi + @mv $$(*F).hx $(GEN_INCS)/ +endef + +$(foreach zf,$(ZFS),$(eval $(call ZFS_RULE,$(zf)))) + +${BLDDIR}/%.P : ${BLDDIR}/.tree %.c + +.PHONY: GENFILES +GENFILES: $(ZFC) + +$(BOBJS) : $(ZFC) + +else +# +# Attempt to build the depend files. If it fails, the depend file is +# removed so that it is not included in later builds. +# +${BLDDIR}/%.P : %.c ${BLDDIR}/.tree + @$(ECHO) Dependencies for ${LOCALDIR}/$< + +${BLDDIR}/%.P : %.cc ${BLDDIR}/.tree + @$(ECHO) Dependencies for ${LOCALDIR}/$< + +endif + +# +# If there are C or C++ files in this directory, include the +# depend files for them. +# + +ifeq ($(findstring _COMPILER,$(MAKECMDGOALS))$(findstring variable,$(MAKECMDGOALS)),) +ifneq ($(strip ${LSRCS}),) +ifneq (,$(findstring .o,$(MAKECMDGOALS))) +-include $(addprefix ${BLDDIR}/,$(MAKECMDGOALS:.o=.P)) $(addprefix ${BLDDIR}/,$(MAKECMDGOALS:.o=.sig)) +else +-include $(addprefix ${BLDDIR}/,$(addsuffix .P,$(basename $(LSRCS)))) $(addprefix ${BLDDIR}/,$(addsuffix .sig,$(basename $(LSRCS)))) +endif +endif +endif + +endif # !CLEANING + +clean_d:: +ifdef QUIET + @$(ECHO) Cleaning dependencies for ${LOCALDIR} +endif +ifdef GENERATE_C_FILES + $Q$(RM) $(ZFC:%=$(SDK)/$(LOCALDIR)/%) $(ZFC:%.c=$(SDK)/$(LOCALDIR)/%Console.c) +endif + +clean:: clean_d only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Make.kernlib +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Make.kernlib @@ -0,0 +1,70 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# $Id: Make.kernlib,v 1.7 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ +# +# Make rules/targets for handling libraries + +.SECONDARY:: ${BOBJS} + +targetlibsoname = ${lib}.so.${SHAREDLIBVER} +targetlibrealname = ${targetlibsoname} +targetlibso = ${LIBDIR}/${targetlibrealname} + +ifeq ($(TOOLS),Borland) + +LIBSUFFIX=lib + +${LIBDIR}/%.lib: ${BORLAND_BOBJS} + $(RM) $@ + $(FOREACH) -subdir "$(LIBDIR)" \ + "tlib $@ $(foreach obj, $(BORLAND_LOBJS), +-$(obj))" + +else # !Borland + +LIBSUFFIX=a + +${LIBDIR}/%.a: ${BOBJS} +ifdef QUIET + @$(ECHO) Building library $(notdir $@) +endif + $Q$(RM) $@ + $Q$(AR) ${ARFLAGS} $@ $(sort ${BOBJS}) +ifeq ($(LINUX_MAKE_SHARED_LIB),1) +ifeq ($(targetbase),unix) + $(CC) -shared -Wl,-soname,${targetlibsoname} -o ${targetlibso} ${BOBJS} -lc +endif +endif # LINUX_MAKE_SHARED_LIB # +endif # !Borland + +targetlib = ${LIBDIR}/${lib}.${LIBSUFFIX} + +all:: ${BLDDIR}/.tree ${targetlib} + +install:: all + +clean:: +ifdef QUIET + @$(ECHO) Cleaning objects for ${LOCALDIR} and ${lib} +endif + $Q$(RM) ${BOBJS} + $Q$(RM) ${targetlib} + $Q$(RM) ${targetlibso} + +distclean:: clean + only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Make.lib +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Make.lib @@ -0,0 +1,81 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# $Id: Make.lib,v 1.14 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ +# +# Make rules/targets for handling libraries + +.SECONDARY:: ${BOBJS} + +BOBJS_FAST = ${BOBJS} +BOBJS_MAKE_CMD = + +ifeq ($(FAST),1) + ifneq ($(strip $(BOBJS)),) + BOBJS_FAST = + BOBJS_ARGS = -j9 + BOBJS_MAKE_CMD = pwd && make LSRUN=$(SDK)/tools/lsrun.pl $(BOBJS_ARGS) ${BOBJS} + endif +endif + +ifeq ($(TOOLS),Borland) + +LIBSUFFIX=lib + +${LIBDIR}/%.lib: ${BORLAND_BOBJS} + $(RM) $@ + $(FOREACH) -subdir "$(LIBDIR)" \ + "tlib $@ $(foreach obj, $(BORLAND_LOBJS), +-$(obj))" + +else # !Borland + +ifeq ($(LINUX_MAKE_SHARED_LIB),1) +LIBSUFFIX=so.${SHAREDLIBVER} +else +LIBSUFFIX=a +endif + +targetlib = ${LIBDIR}/${lib}.${LIBSUFFIX} + +all:: ${BLDDIR}/.tree ${targetlib} + +${LIBDIR}/%.${LIBSUFFIX}: ${BOBJS_FAST} + $(BOBJS_MAKE_CMD) +ifdef QUIET + @$(ECHO) Building library $(notdir $@) +endif + $Q$(RM) $@ +ifeq ($(LINUX_MAKE_SHARED_LIB),1) + $(CC) -shared -Wl,-soname,${lib}.${LIBSUFFIX}${EXTRA_LIB_LDFLAGS} -o ${targetlib} ${BOBJS} -lc +else + ${Q}cd $(dir $(word 1,${BOBJS}));$(AR) ${ARFLAGS} $@ $(sort $(notdir ${BOBJS})) +endif + +endif # !Borland + + +install:: all + +clean:: +ifdef QUIET + @$(ECHO) Cleaning objects for ${LOCALDIR} and ${lib} +endif + $Q$(RM) ${BOBJS} + $Q$(RM) ${targetlib} + +distclean:: clean only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Make.linux +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Make.linux @@ -0,0 +1,98 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# +# $Id: Make.linux,v 1.18 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ +# +# Common make targets for Linux user and kernel builds included by top +# level Linux makefiles +# +# Variables referenced: +# +# LINUX_MAKE_FLAGS +# Additional flags passed to Make +# +# LINUX_MAKE_USER +# Defined: user build +# Undefined: kernel build +# +# LINUX_MAKE_DIR +# Common makefile location, if it is not ../common +# +# + +export DEST_DIR_SUFFIX :=$(subst $(realpath $(SDK))/systems,,$(realpath $(CURDIR)/$(dir ($(firstword $(MAKEFILE_LIST)))))) + +ifeq (,$(kernel_version)) +kernel_version=2_4 +endif + +ifndef LINUX_MAKE_SHARED_LIB +LINUX_MAKE_SHARED_LIB=0 +endif + +ifeq (,$(SHAREDLIBVER)) +SHAREDLIBVER=1 +endif + +ifndef LINUX_MAKE_DIR +ifdef LINUX_MAKE_USER +LINUX_MAKE_DIR := $(SDK)/systems/linux/user/common +else +LINUX_MAKE_DIR := $(SDK)/systems/linux/kernel/common +endif +endif + +ifdef LINUX_MAKE_USER + CMD = $(LINUX_MAKE_FLAGS) -C $(LINUX_MAKE_DIR) \ + platform=$(platform) bldroot_suffix=/$(platform) kernel_version=$(kernel_version) \ + LINUX_MAKE_SHARED_LIB=$(LINUX_MAKE_SHARED_LIB) SHAREDLIBVER=$(SHAREDLIBVER) +else + export LINUX_MAKE_KERNEL := 1 + CMD = $(LINUX_MAKE_FLAGS) -C $(LINUX_MAKE_DIR) \ + platform=$(platform) kernel_version=$(kernel_version) +endif + +ifneq (,$(MIPS_TOOLS_DIR)) + CMD += MIPS_TOOLS_DIR=$(MIPS_TOOLS_DIR) +endif + +ifneq (,$(MIPS_CROSS_COMPILE)) + CMD += MIPS_CROSS_COMPILE=$(MIPS_CROSS_COMPILE) +endif + +ifneq (,$(LINUX_INCLUDE)) + CMD += LINUX_INCLUDE=$(LINUX_INCLUDE) +endif + +# gmake does not understand $(CMD) to be a submake +# options are to +$(CMD) or $(MAKE) $(CMD) +# trying the latter +build: + $(MAKE) $(CMD) + +DELIVER clean C_COMPILER CXX_COMPILER variable mod bcm user: + $(MAKE) $(CMD) $@ + +clean_d: clean + +distclean: + $(MAKE) $(CMD) $@ + +.PHONY: build clean distclean clean_d DELIVER variable mod bcm user + only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Make.subdirs +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Make.subdirs @@ -0,0 +1,45 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# $Id: Make.subdirs,v 1.8 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ +# +# Make rules/targets for handling subdirectories + +.PHONY: ${subdirs} + +all:: ${subdirs} +ifdef QUIET + @$(ECHO) Subdirectory build for ${subdirs} +endif + +${subdirs}:: + $Q$(MAKE) -C $@ kernel_version=$(kernel_version) LINUX_MAKE_SHARED_LIB=${LINUX_MAKE_SHARED_LIB} SHAREDLIBVER=${SHAREDLIBVER} + +ifeq "$(HOSTTYPE)" "Windows2000PC" +clean clean_d install distclean:: +ifdef QUIET + @$(ECHO) Subdirectory $@ for ${subdirs} +endif + $Q$(FOREACH) "$(subdirs)" "${MAKE} -C ## $@" +else +clean clean_d install distclean:: +ifdef QUIET + @$(ECHO) Subdirectory $@ for ${subdirs} +endif + @(for name in $(subdirs); do $(MAKE) -C $$name $@; done) +endif only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Make.tools +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Make.tools @@ -0,0 +1,39 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# $Id: Make.tools,v 1.2 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ + +SYSNAME := $(shell uname -s) +HCC ?=/usr/bin/gcc +SED = /bin/sed +COMPRESS = /usr/bin/compress +PERL = /usr/bin/perl +LN = /bin/ln +HOSTTYPE= i386-linux + +# +# Platform Independent +# +MKTOOL = $(PERL) ${SDK}/tools/mktool.pl +RM = $(MKTOOL) -rm +MKDIR = $(MKTOOL) -md +FOREACH = $(MKTOOL) -foreach +CP = $(MKTOOL) -cp +MAKEDEP = $(MKTOOL) -dep +ECHO = $(MKTOOL) -echo +MKBEEP = ${MKTOOL} -beep only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-gto +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-gto @@ -0,0 +1,115 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# $Id: Makefile.linux-gto-4_4,v 1.42 Broadcom SDK $ +# $Copyright: (c) 2015 Broadcom Corp. +# All Rights Reserved.$ + +# User must select one platform from below. +ifeq (,$(BUILD_PLATFORM)) +BUILD_PLATFORM=POWERPC_LINUX +endif + +# TOOLCHAIN_BASE_DIR Toolchain base directory for GTO devices +# TARGET_ARCHITECTURE Compiler for target architecture +# KERNDIR Kernel directory for iPROC-CMICd devices +TOOLCHAIN_BASE_DIR ?= /projects/ntsw-tools/linux/gto +TARGET_ARCHITECTURE := powerpc-broadcom-linux-gnuspe +KERNDIR ?= $(TOOLCHAIN_BASE_DIR)/kernel/current + + +ifeq (,$(CROSS_COMPILE)) +CROSS_COMPILE := $(TARGET_ARCHITECTURE)- +endif + + +# GTO toolchain +TOOLCHAIN_BIN_DIR := $(TOOLCHAIN_BASE_DIR)/toolchain/host/usr/bin +override PATH := $(TOOLCHAIN_BIN_DIR)/../$(TARGET_ARCHITECTURE)/bin:$(TOOLCHAIN_BIN_DIR):$(PATH) +export TOOLCHAIN_BIN_DIR + + +# Default Linux include directory +ifeq (,$(LINUX_INCLUDE)) +LINUX_INCLUDE := $(KERNDIR)/include +endif + +CFGFLAGS += -DSYS_BE_PIO=1 -DSYS_BE_PACKET=0 -DSYS_BE_OTHER=1 +ENDIAN = BE_HOST=1 +CFGFLAGS += -D$(ENDIAN) +CFGFLAGS += -DBCM_PLATFORM_STRING=\"GTO_MPC8548\" +CFGFLAGS += -DSAL_BDE_DMA_MEM_DEFAULT=32 + +# Extra variables. +EXTRA_CFLAGS = -D"KBUILD_STR(s)=\#s" $(basename_flags) $(modname_flags) + +ARCH = powerpc +KBUILD_VERBOSE = 1 + +export ARCH KBUILD_VERBOSE + + +# From linux/arch/ppc/Makefile +comma = , +basetarget = $(basename $(notdir $@)) +modname = $(basetarget) + +name-fix = $(subst $(comma),_,$(subst -,_,$1)) +basename_flags = -D"KBUILD_BASENAME=KBUILD_STR($(call name-fix,$(basetarget)))" +modname_flags = $(if $(filter 1,$(words $(modname))),\ + -D"KBUILD_MODNAME=KBUILD_STR($(call name-fix,$(modname)))") + +KFLAG_INCLD = $(TOOLCHAIN_BIN_DIR)/../lib/gcc/$(TARGET_ARCHITECTURE)/4.6.4/include + +ifdef BROADCOM_SVK +ifdef BCM_BME3200_B0 +PLX_PCI2LBUS=1 +endif +ifdef BCM_BM9600_B0 +PLX_PCI2LBUS=1 +endif +ifeq ($PLX_PCI2LBUS, 1) +CFLAGS += -DBCM_PLX9656_LOCAL_BUS -DBDE_LINUX_NON_INTERRUPTIBLE +endif +endif + +ifdef DPP_CHIPS +CFLAGS += -DDUNE_BCM -D__DUNE_GTO_BCM_CPU__ -D__DUNE_LINUX_BCM_CPU_PCIE__ -D__DUNE_LINUX_BCM_CPU_PCP_DMA__ +CFGFLAGS += -DSOC_CM_FUNCTION +endif + +ifdef DFE_CHIPS +CFLAGS += -DDUNE_BCM -D__DUNE_GTO_BCM_CPU__ -D__DUNE_LINUX_BCM_CPU_PCIE__ +CFGFLAGS += -DSOC_CM_FUNCTION +endif + +ifdef SHADOW_PLX +CFLAGS += -DBCM_PLX9656_LOCAL_BUS -DBDE_LINUX_NON_INTERRUPTIBLE -DSHADOW_SVK +endif + +ifeq (,$(KFLAGS)) +KFLAGS := -D__KERNEL__ -m32 -nostdinc -isystem $(KFLAG_INCLD) -I$(LINUX_INCLUDE) -include $(LINUX_INCLUDE)/generated/uapi/linux/version.h -include $(LINUX_INCLUDE)/generated/autoconf.h -I$(KERNDIR)/arch/powerpc -I$(KERNDIR)/arch/powerpc/include -I$(KERNDIR)/include/asm-powerpc -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -O2 -fno-strict-aliasing -fno-common -msoft-float -pipe -ffixed-r2 -mmultiple -mno-altivec -funit-at-a-time -Wa,-me500 -fomit-frame-pointer -Wdeclaration-after-statement -Wno-pointer-sign +endif + +ifneq (,$(findstring TCL,$(FEATURE_LIST))) +#LINK_STATIC = 0 +#export LINK_STATIC +endif + +ifneq ($(targetplat),user) +include ${SDK}/make/Makefile.linux-kernel-4_4 +endif + only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-gto-2_6 +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-gto-2_6 @@ -0,0 +1,271 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# $Id: Makefile.linux-gto-2_6,v 1.42 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ + +# User must select one platform from below.By default WR_LINUX is selected. . +ifeq (,$(BUILD_PLATFORM)) +#BUILD_PLATFORM=ELDK +BUILD_PLATFORM=WR_LINUX +endif + +# Specify the ELDK version you want to use for building SDK. +ifeq (,$(ELDK_VERSION)) +ifeq (ELDK,$(BUILD_PLATFORM)) +ELDK_VERSION=4.0 +endif +endif + +# Specify the KERNEL VERSION you want to use for building SDK. +ifeq (,$(KERN_VER)) +ifeq (ELDK,$(BUILD_PLATFORM)) +KERN_VER=2.6.21.7 +endif +endif + + +# Specify the Windriver Linux version here.For example '2.0' as shown below. +ifeq (WR_LINUX,$(BUILD_PLATFORM)) +ifeq (,$(WRS_LINUX_VERSION)) +WRS_LINUX_VERSION=2.0 +endif +endif + + +#glibc_small and glibc_std have their own cross-compilation tools and and path for these tools are different as implemented below. To enable glibc_small build, line given below should be uncommented. + +#WRL_GLIBC_SMALL=TRUE + +ifeq (2.0,$(WRS_LINUX_VERSION)) +ifeq ($(WRL_GLIBC_SMALL),TRUE) + +ifeq (,$(CROSS_COMPILE)) +CROSS_COMPILE := powerpc-wrs-linux-gnu-ppc_e500v2-glibc_small- +endif + +KERNDIR ?=/projects/ntsw-tools/linux/wrslinux_2.0/gto/glibc_small/build/linux-2.6.21-standard + +else + +ifeq (,$(CROSS_COMPILE)) +CROSS_COMPILE := powerpc-wrs-linux-gnu-ppc_e500v2-glibc_std- +endif + +KERNDIR ?= /projects/ntsw-tools/linux/wrslinux_2.0/gto/glibc_std/build/linux-2.6.21-standard + +endif + +export WRL_GLIBC_SMALL + +# After this point glibc_std and glibc_small share these flags + +WRLINUX_BASE ?=/tools/windriver/linux_ed/2.0_GA/Linux +TOOLCHAIN_EXEC_PREFIX=$(WRLINUX_BASE)/gnu/4.1-wrlinux-2.0/x86-linux2 +TOOLCHAIN_BIN_DIR=$(TOOLCHAIN_EXEC_PREFIX) +WIND_LIC_PROXY=$(WRLINUX_BASE)/setup/x86-linux2/bin +WRLINUX_GNU_PATH = $(WRLINUX_BASE)/gnu/4.1-wrlinux-2.0/x86-linux2/bin +override PATH := $(TOOLCHAIN_EXEC_PREFIX):$(KERNDIR)/../../host-cross/bin:$(KERNDIR)/../../host-cross/powerpc-wrs-linux-gnu/bin:$(WRLINUX_GNU_PATH):$(PATH) +export TOOLCHAIN_EXEC_PREFIX TOOLCHAIN_BIN_DIR WIND_LIC_PROXY +endif + + +ifeq (3.0,$(WRS_LINUX_VERSION)) +ifeq ($(WRL_GLIBC_SMALL),TRUE) + +ifeq (,$(CROSS_COMPILE)) +CROSS_COMPILE := powerpc-wrs-linux-gnu-ppc_e500v2-glibc_small- +endif + +KERNDIR ?=/projects/ntsw-tools/linux/wrslinux_3.0/gto/bcm98548xmc_30_glibc_small/build/linux-broadcom_bcm98548xmc-standard-build +KERNDIR_STD ?=/projects/ntsw-tools/linux/wrslinux_3.0/gto/bcm98548xmc_30_glibc_small/build/linux + +else + +ifeq (,$(CROSS_COMPILE)) +CROSS_COMPILE := powerpc-wrs-linux-gnu-ppc_e500v2-glibc_std- +endif + +KERNDIR ?=/projects/ntsw-tools/linux/wrslinux_3.0/gto/bcm98548xmc_30_glibc_std_debug/build/linux-broadcom_bcm98548xmc-standard-build +KERNDIR_STD ?=/projects/ntsw-tools/linux/wrslinux_3.0/gto/bcm98548xmc_30_glibc_std_debug/build/linux + +endif + +export WRL_GLIBC_SMALL + +# After this point glibc_std and glibc_small share these flags + +WRLINUX_BASE ?=/tools/windriver/linux_ed/3.0/Linux +TOOLCHAIN_EXEC_PREFIX=$(WRLINUX_BASE)/wrlinux-3.0/layers/wrll-toolchain-4.3-85/powerpc/toolchain/x86-linux2 +TOOLCHAIN_BIN_DIR=$(TOOLCHAIN_EXEC_PREFIX) +WIND_LIC_PROXY=$(WRLINUX_BASE)/setup/x86-linux2/bin +WRLINUX_GNU_PATH = $(WRLINUX_BASE)/wrlinux-3.0/layers/wrll-toolchain-4.3-85/powerpc/toolchain/x86-linux2/bin +override PATH := $(TOOLCHAIN_EXEC_PREFIX):$(KERNDIR_STD)/../../host-cross/bin:$(KERNDIR_STD)/../../host-cross/powerpc-wrs-linux-gnu/bin:$(WRLINUX_GNU_PATH):$(PATH) +export TOOLCHAIN_EXEC_PREFIX TOOLCHAIN_BIN_DIR WIND_LIC_PROXY + +LINUX_INCLUDE_STD := $(KERNDIR_STD)/include + +endif + +ifeq (ELDK,$(BUILD_PLATFORM)) +ifeq (2.6.21.7, $(KERN_VER)) + +ifeq (,$(CROSS_COMPILE)) +CROSS_COMPILE := ppc_85xx- +endif + +ifeq (4.0, $(ELDK_VERSION)) +override PATH := /tools/eldk/4.0/usr/bin:$(PATH) +else +override PATH := /tools/eldk/4.1/usr/bin:$(PATH) +endif +KERNDIR ?= /projects/ntsw-tools/linux/eldk/gto_eldk/linux-2.6.21.7 +endif +endif + +ifeq (ELDK,$(BUILD_PLATFORM)) +ifeq (2.6.24.4, $(KERN_VER)) + +ifeq (,$(CROSS_COMPILE)) +CROSS_COMPILE := ppc_85xx- +endif + +ifeq (4.0, $(ELDK_VERSION)) +override PATH := /tools/eldk/4.0/usr/bin:$(PATH) +else +override PATH := /tools/eldk/4.1/usr/bin:$(PATH) +endif +KERNDIR ?= /projects/ntsw-tools/linux/eldk/gto_eldk/linux-2.6.24.4 +endif +endif + + +ifeq (ELDK,$(BUILD_PLATFORM)) +ifeq (2.6.25, $(KERN_VER)) + +ifeq (,$(CROSS_COMPILE)) +CROSS_COMPILE := ppc_85xx- +endif + +ifeq (4.0, $(ELDK_VERSION)) +override PATH := /tools/eldk/4.0/usr/bin:$(PATH) +else +override PATH := /tools/eldk/4.1/usr/bin:$(PATH) +endif +KERNDIR ?= /projects/ntsw-tools/linux/eldk/gto_eldk/linux-2.6.25 +endif +endif + + +# Default Linux include directory +ifeq (,$(LINUX_INCLUDE)) +LINUX_INCLUDE := $(KERNDIR)/include +endif + +CFGFLAGS += -DSYS_BE_PIO=1 -DSYS_BE_PACKET=0 -DSYS_BE_OTHER=1 +ENDIAN = BE_HOST=1 +CFGFLAGS += -D$(ENDIAN) +CFGFLAGS += -DBCM_PLATFORM_STRING=\"GTO_MPC8548\" +CFGFLAGS += -DSAL_BDE_DMA_MEM_DEFAULT=32 + +# Extra variables. +EXTRA_CFLAGS = -D"KBUILD_STR(s)=\#s" $(basename_flags) $(modname_flags) + +ARCH = powerpc +KBUILD_VERBOSE = 1 + +export ARCH KBUILD_VERBOSE + + +# From linux/arch/ppc/Makefile +comma = , +basetarget = $(basename $(notdir $@)) +modname = $(basetarget) + +name-fix = $(subst $(comma),_,$(subst -,_,$1)) +basename_flags = -D"KBUILD_BASENAME=KBUILD_STR($(call name-fix,$(basetarget)))" +modname_flags = $(if $(filter 1,$(words $(modname))),\ + -D"KBUILD_MODNAME=KBUILD_STR($(call name-fix,$(modname)))") + + +ifeq (,$(KFLAG_INCLD)) +ifeq (4.0,$(ELDK_VERSION)) +ifeq (ELDK,$(BUILD_PLATFORM)) +KFLAG_INCLD = /tools/eldk/4.0/usr/lib/gcc/powerpc-linux/4.0.0/include +endif +endif + +ifeq (4.1,$(ELDK_VERSION)) +ifeq (ELDK,$(BUILD_PLATFORM)) +KFLAG_INCLD = /tools/eldk/4.1/usr/lib/gcc/powerpc-linux/4.0.0/include +endif +endif + +ifeq (2.0,$(WRS_LINUX_VERSION)) +KFLAG_INCLD = $(WRLINUX_GNU_PATH)/../lib/gcc/powerpc-wrs-linux-gnu/4.1.2/include +endif + +ifeq (3.0,$(WRS_LINUX_VERSION)) +KFLAG_INCLD = $(WRLINUX_GNU_PATH)/../lib/gcc/powerpc-wrs-linux-gnu/4.3.2/include +endif +endif + +ifdef BROADCOM_SVK +ifdef BCM_BME3200_B0 +PLX_PCI2LBUS=1 +endif +ifdef BCM_BM9600_B0 +PLX_PCI2LBUS=1 +endif +ifeq ($PLX_PCI2LBUS, 1) +CFLAGS += -DBCM_PLX9656_LOCAL_BUS -DBDE_LINUX_NON_INTERRUPTIBLE +endif +endif + +ifdef DPP_CHIPS +CFLAGS += -DDUNE_BCM -D__DUNE_LINUX_BCM_CPU_PCP_DMA__ +CFGFLAGS += -DSOC_CM_FUNCTION +endif + +ifdef DFE_CHIPS +CFLAGS += -DDUNE_BCM +CFGFLAGS += -DSOC_CM_FUNCTION +endif + +ifdef SAND_CHIPS +CFLAGS += -D__DUNE_GTO_BCM_CPU__ -D__DUNE_LINUX_BCM_CPU_PCIE__ +endif + +ifdef SHADOW_PLX +CFLAGS += -DBCM_PLX9656_LOCAL_BUS -DBDE_LINUX_NON_INTERRUPTIBLE -DSHADOW_SVK +endif + +ifeq (,$(KFLAGS)) +KFLAGS := -D__KERNEL__ -m32 -nostdinc -isystem $(KFLAG_INCLD) -I$(LINUX_INCLUDE) -include $(LINUX_INCLUDE)/linux/version.h -include $(LINUX_INCLUDE)/generated/autoconf.h -I$(KERNDIR)/arch/powerpc -I$(KERNDIR)/arch/powerpc -I$(KERNDIR)/arch/powerpc/include -I$(KERNDIR)/include/asm-powerpc -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -O2 -fno-strict-aliasing -fno-common -msoft-float -pipe -ffixed-r2 -mmultiple -mno-altivec -funit-at-a-time -Wa,-me500 -fomit-frame-pointer -Wdeclaration-after-statement -Wno-pointer-sign +endif + +#Wind river Linux 3.0 needs addtional flags +ifeq (3.0,$(WRS_LINUX_VERSION)) + +# Use MSI interrupts if kernel is compiled with MSI support. +#CFLAGS += -DBDE_LINUX_USE_MSI_INTERRUPT +KFLAGS += -I$(LINUX_INCLUDE_STD) -I$(KERNDIR_STD)/arch/powerpc -I$(KERNDIR_STD)/arch/powerpc/include -I$(KERNDIR_STD)/include.asm-powerpc -mno-spe +endif + +ifneq ($(targetplat),user) +include ${SDK}/make/Makefile.linux-kernel-2_6 +endif only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-iproc +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-iproc @@ -0,0 +1,93 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# $Id: Makefile.linux-iproc Exp $ +# $Copyright: (c) 2007 Broadcom Corp. +# All Rights Reserved.$ +# Makefile for iproc-CMICd + +# User must select one platform from below.By default ARM_LINUX is selected. . +ifeq (,$(BUILD_PLATFORM)) +BUILD_PLATFORM=ARM_LINUX +endif + +# TOOLCHAIN_BASE_DIR Toolchain base directory for iPROC-CMICd devices +# TARGET_ARCHITECTURE Compiler for target architecture +# KERNDIR Kernel directory for iPROC-CMICd devices +ifeq (BE,$(ENDIAN_MODE)) +TOOLCHAIN_BASE_DIR ?= /projects/ntsw-tools/linux/iproc_ldks/iproc-be/XLDK +TARGET_ARCHITECTURE:=armeb-broadcom-linux-uclibcgnueabi +KERNDIR ?= $(TOOLCHAIN_BASE_DIR)/kernel/linux +else +TOOLCHAIN_BASE_DIR ?= /projects/ntsw-tools/linux/iproc_ldks/iproc/XLDK +TARGET_ARCHITECTURE:= arm-broadcom-linux-uclibcgnueabi +KERNDIR ?= $(TOOLCHAIN_BASE_DIR)/kernel/linux +endif + +ifeq (,$(CROSS_COMPILE)) +CROSS_COMPILE:= $(TARGET_ARCHITECTURE)- +endif + +# arm9tools +TOOLCHAIN_BIN_DIR=$(TOOLCHAIN_BASE_DIR)/buildroot/host/usr/bin +override PATH:=$(TOOLCHAIN_BASE_DIR)/buildroot/host/usr/$(TARGET_ARCHITECTURE)/bin:$(TOOLCHAIN_BIN_DIR):$(PATH) +LD_LIBRARY_PATH=$(TOOLCHAIN_BASE_DIR)/buildroot/host/usr/lib + +export TOOLCHAIN_BIN_DIR LD_LIBRARY_PATH + +# Default Linux include directory +ifeq (,$(LINUX_INCLUDE)) +LINUX_INCLUDE := $(KERNDIR)/include +endif + +ifeq (BE,$(ENDIAN_MODE)) +CFGFLAGS += -DSYS_BE_PIO=1 -DSYS_BE_PACKET=0 -DSYS_BE_OTHER=1 +ENDIAN = BE_HOST=1 +else +CFGFLAGS += -DSYS_BE_PIO=0 -DSYS_BE_PACKET=0 -DSYS_BE_OTHER=0 +ENDIAN = LE_HOST=1 +endif + +CFGFLAGS += -D$(ENDIAN) -DIPROC_CMICD +CFGFLAGS += -DBCM_PLATFORM_STRING=\"IPROC_CMICD\" + +ARCH = arm +KBUILD_VERBOSE = 1 + +export ARCH KBUILD_VERBOSE + +comma = , +basetarget = $(basename $(notdir $@)) +modname = $(basetarget) + +# Extra variables. +EXTRA_CFLAGS = -D"KBUILD_STR(s)=\#s" $(basename_flags) $(modname_flags) + +name-fix = $(subst $(comma),_,$(subst -,_,$1)) +basename_flags = -D"KBUILD_BASENAME=KBUILD_STR($(call name-fix,$(basetarget)))" +modname_flags = $(if $(filter 1,$(words $(modname))),\ + -D"KBUILD_MODNAME=KBUILD_STR($(call name-fix,$(modname)))") + +KFLAG_INCLD ?= $(TOOLCHAIN_BASE_DIR)/buildroot/host/usr/lib/gcc/$(TARGET_ARCHITECTURE)/4.9.3/include + +ifeq (,$(KFLAGS)) +KFLAGS := -D__LINUX_ARM_ARCH__=7 -D__KERNEL__ -nostdinc -isystem $(KFLAG_INCLD) -I$(LINUX_INCLUDE) -include $(LINUX_INCLUDE)/generated/autoconf.h -I$(KERNDIR)/arch/arm/include -I$(KERNDIR)/arch/arm/include/generated -I$(KERNDIR)/arch/arm/mach-iproc/include -Wall -Wstrict-prototypes -Wno-trigraphs -Os -fno-strict-aliasing -fno-common -marm -mabi=aapcs-linux -fno-pic -pipe -msoft-float -ffreestanding -march=armv7-a -mfpu=vfp -mfloat-abi=softfp -fomit-frame-pointer -g -fno-stack-protector -Wdeclaration-after-statement -Wno-pointer-sign -mlong-calls +KFLAGS += -I$(LINUX_INCLUDE)/uapi -I$(LINUX_INCLUDE)/generated/uapi -I$(KERNDIR)/arch/arm/include/uapi -I$(KERNDIR)/arch/arm/include/generated/uapi +endif + +ifneq ($(targetplat),user) +include ${SDK}/make/Makefile.linux-kernel-3_6 +endif only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-iproc-3_14 +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-iproc-3_14 @@ -0,0 +1,104 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# $Id: Makefile.linux-iproc-3_6,v 1.1 Broadcom SDK $ +# $Copyright: (c) 2007 Broadcom Corp. +# All Rights Reserved.$ +# Makefile for iproc-CMICd + +# User must select one platform from below.By default ARM_LINUX is selected. . +ifeq (,$(BUILD_PLATFORM)) +BUILD_PLATFORM=ARM_LINUX +endif + +# TOOLCHAIN_BASE_DIR Toolchain base directory for iPROC-CMICd devices +# TARGET_ARCHITECTURE Compiler for target architecture +# KERNDIR Kernel directory for iPROC-CMICd devices +ifeq (BE,$(ENDIAN_MODE)) +TOOLCHAIN_BASE_DIR ?= /projects/ntsw-tools/linux/iproc_ldks/xldk37-be/buildroot-2013.11-gcc48-opt-broadcom +TARGET_ARCHITECTURE:=armeb-buildroot-linux-gnueabi +KERNDIR ?= /projects/ntsw-tools/linux/iproc_ldks/xldk37-be/XLDK/kernel/linux +else +TOOLCHAIN_BASE_DIR ?= /projects/ntsw-tools/linux/iproc_ldks/xldk37/XLDK +TARGET_ARCHITECTURE:= arm-broadcom-linux-uclibcgnueabi +KERNDIR ?= $(TOOLCHAIN_BASE_DIR)/kernel/linux +endif + + +ifeq (,$(CROSS_COMPILE)) +CROSS_COMPILE:= $(TARGET_ARCHITECTURE)- +endif + +# arm9tools +ifeq (BE,$(ENDIAN_MODE)) +TOOLCHAIN_BIN_DIR=$(TOOLCHAIN_BASE_DIR)/host/usr/bin +override PATH:=$(TOOLCHAIN_BASE_DIR)/host/usr/$(TARGET_ARCHITECTURE)/bin:$(TOOLCHAIN_BIN_DIR):$(PATH) +LD_LIBRARY_PATH=$(TOOLCHAIN_BASE_DIR)/host/usr/lib +else +TOOLCHAIN_BIN_DIR=$(TOOLCHAIN_BASE_DIR)/buildroot/usr/bin +override PATH:=$(TOOLCHAIN_BASE_DIR)/buildroot/usr/$(TARGET_ARCHITECTURE)/bin:$(TOOLCHAIN_BIN_DIR):$(PATH) +LD_LIBRARY_PATH=$(TOOLCHAIN_BASE_DIR)/buildroot/usr/lib +endif + +export TOOLCHAIN_BIN_DIR LD_LIBRARY_PATH + +# Default Linux include directory +ifeq (,$(LINUX_INCLUDE)) +LINUX_INCLUDE := $(KERNDIR)/include +endif + +ifeq (BE,$(ENDIAN_MODE)) +CFGFLAGS += -DSYS_BE_PIO=1 -DSYS_BE_PACKET=0 -DSYS_BE_OTHER=1 +ENDIAN = BE_HOST=1 +else +CFGFLAGS += -DSYS_BE_PIO=0 -DSYS_BE_PACKET=0 -DSYS_BE_OTHER=0 +ENDIAN = LE_HOST=1 +endif + +CFGFLAGS += -D$(ENDIAN) -DIPROC_CMICD +CFGFLAGS += -DBCM_PLATFORM_STRING=\"IPROC_CMICD\" + +ARCH = arm +KBUILD_VERBOSE = 1 + +export ARCH KBUILD_VERBOSE + +comma = , +basetarget = $(basename $(notdir $@)) +modname = $(basetarget) + +# Extra variables. +EXTRA_CFLAGS = -D"KBUILD_STR(s)=\#s" $(basename_flags) $(modname_flags) + +name-fix = $(subst $(comma),_,$(subst -,_,$1)) +basename_flags = -D"KBUILD_BASENAME=KBUILD_STR($(call name-fix,$(basetarget)))" +modname_flags = $(if $(filter 1,$(words $(modname))),\ + -D"KBUILD_MODNAME=KBUILD_STR($(call name-fix,$(modname)))") + +ifeq (BE,$(ENDIAN_MODE)) +KFLAG_INCLD ?= $(TOOLCHAIN_BASE_DIR)/host/usr/lib/gcc/$(TARGET_ARCHITECTURE)/4.8.2/include +else +KFLAG_INCLD ?= $(TOOLCHAIN_BASE_DIR)/buildroot/usr/lib/gcc/$(TARGET_ARCHITECTURE)/4.7.2/include +endif + +ifeq (,$(KFLAGS)) +KFLAGS := -D__LINUX_ARM_ARCH__=7 -D__KERNEL__ -nostdinc -isystem $(KFLAG_INCLD) -I$(LINUX_INCLUDE) -include $(LINUX_INCLUDE)/generated/autoconf.h -I$(KERNDIR)/arch/arm/include -I$(KERNDIR)/arch/arm/include/generated -I$(KERNDIR)/arch/arm/mach-northstar/include -I$(KERNDIR)/arch/arm/plat-iproc/include -Wall -Wstrict-prototypes -Wno-trigraphs -Os -fno-strict-aliasing -fno-common -marm -mabi=aapcs-linux -fno-pic -pipe -msoft-float -ffreestanding -march=armv7-a -mfpu=vfp -mfloat-abi=softfp -fomit-frame-pointer -g -fno-stack-protector -Wdeclaration-after-statement -Wno-pointer-sign -mlong-calls +KFLAGS += -I$(LINUX_INCLUDE)/uapi -I$(LINUX_INCLUDE)/generated/uapi -I$(KERNDIR)/arch/arm/include/uapi -I$(KERNDIR)/arch/arm/include/generated/uapi +endif + +ifneq ($(targetplat),user) +include ${SDK}/make/Makefile.linux-kernel-3_6 +endif only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-kernel +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-kernel @@ -0,0 +1,113 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# $Id: Makefile.linux-kernel,v 1.27 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ + +# Configuration Flags + +# Filter out features that cannot or should not be supported in kernel mode +_FEATURE_EXCLUDE_LIST += EDITLINE TCL OOB_RCPU CINT APIMODE DUNE_UI C_UNIT +FEATURE_EXCLUDE_LIST = $(sort $(_FEATURE_EXCLUDE_LIST)) +# Tools + +CC = $(CROSS_COMPILE)gcc +CXX = $(CROSS_COMPILE)g++ +LD = $(CROSS_COMPILE)ld +AR = $(CROSS_COMPILE)ar +ARFLAGS = -rc +STRIP = $(CROSS_COMPILE)strip +RANLIB = $(CROSS_COMPILE)ranlib +OBJCOPY = $(CROSS_COMPILE)objcopy + +# Handle differences between gcc 2.x and gcc 3.x +gcc-tune-flag = $(shell if ${CC} -dumpspecs | grep mcpu >/dev/null; then echo cpu; else echo tune; fi) + +# Configuration Variables + +# OSType Defines: This defines the type of RTOS or microkernel which you +# are compiling the SAL (and its associated driver) for. New platforms +# can be created by porting the routines (system.c) to your platform and +# adding the define in this Makefile. + +OSTYPE = LINUX + +# +# ORIGIN is used to Optionally select different CFLAGS. It is used to import +# source from other vendors. If SOURCE=Broadcom, then the BCM_ flags are added +# to those passed to the compiler. If SOURCE != Broadcom, BCM_ flags are NOT +# added. +# +# Default specifies Broadcom +# +ifndef ORIGIN + ORIGIN = Broadcom +endif + +# +# STD_{C|CPP|CXX}FLAGS - Standard flags used by ALL compilations +# BCM_{C|CPP|CXX}FLAGS - Flags used for Broadcom source files +# OPT_{C|CPP|CXX}FLAGS - Defined in local make files BEFORE inclusion of +# this Makefile, to define local "Extra" flags. +# + +CFGFLAGS += -I$(SDK)/systems/linux/kernel/modules/include \ + -I$(SDK)/systems/bde/linux/include \ + -I$(LINUX_INCLUDE) + +CFGFLAGS += -DNO_FILEIO -DNO_CTRL_C -DNO_MEMTUNE + +CFGFLAGS += -D$(OSTYPE) + +# No user sal for the linux kernel +# NO_SAL_APPL=1 + +STD_CFLAGS = $(KFLAGS) $(CFGFLAGS) + + +STD_CPPFLAGS = ${STD_CFLAGS} +STD_CXXFLAGS = ${STD_CFLAGS} + +BCM_CFLAGS = -Wall -Werror +BCM_CPPFLAGS = ${BCM_CFLAGS} +BCM_CXXFLAGS = ${BCM_CFLAGS} + +ifeq (${ORIGIN}, Broadcom) + CFLAGS += ${STD_CFLAGS} ${BCM_CFLAGS} ${OPT_CFLAGS} + CPPFLAGS += ${STD_CPPFLAGS} ${BCM_CPPFLAGS} ${OPT_CPPFLAGS} + CXXFLAGS += ${STD_CXXFLAGS} ${BCM_CXXFLAGS} ${OPT_CXXFLAGS} +else + CFLAGS += ${STD_CFLAGS} ${OPT_CFLAGS} + CPPFLAGS += ${STD_CPPFLAGS} ${OPT_CPPFLAGS} + CXXFLAGS += ${STD_CXXFLAGS} ${OPT_CXXFLAGS} +endif + +# +# Ignore pedantic flag for kernel modules +# +ifdef DEBUG_PEDANTIC +DEBUG_PEDANTIC = FALSE +endif + +# +# DEPEND is used as a command to generate the list of dependencies. +# The format of the output must be +# "file.o : file.c a/b/c.h d/e/f.h ...", +# if it is on multiple lines, each line must end in a backslash. +# The output MUST be on standard out. +# +DEPEND = ${CC} -M $(CFLAGS) $< only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-kernel-2_6 +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-kernel-2_6 @@ -0,0 +1,149 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# $Id: Makefile.linux-kernel-2_6,v 1.40 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ + +# Configuration Flags + +# Filter out features that cannot or should not be supported in kernel mode + +_FEATURE_EXCLUDE_LIST += EDITLINE TCL OOB_RCPU CINT APIMODE DUNE_UI C_UNIT +FEATURE_EXCLUDE_LIST = $(sort $(_FEATURE_EXCLUDE_LIST)) + +# Tools + +# Conditionally Replaces DEFAULT var +ifeq ($(origin CC),default) +CC = $(LSRUN) $(CROSS_COMPILE)gcc +endif + +ifeq ($(origin CXX),default) +CXX = $(CROSS_COMPILE)g++ +endif + +ifeq ($(origin LD),default) +LD = $(CROSS_COMPILE)ld +endif + +ifeq ($(origin AR),default) +AR = $(CROSS_COMPILE)ar +endif + +ifeq ($(origin AS),default) +AS = $(CROSS_COMPILE)as +endif + +ifeq ($(origin ARFLAGS),default) + ARFLAGS = -rc +endif + +STRIP = $(CROSS_COMPILE)strip +RANLIB = $(CROSS_COMPILE)ranlib +OBJCOPY = $(CROSS_COMPILE)objcopy +NM = $(CROSS_COMPILE)nm + +# Handle differences between gcc 2.x and gcc 3.x +gcc-tune-flag = $(shell if ${CC} -dumpspecs | grep mcpu >/dev/null; then echo cpu; else echo tune; fi) + +# Configuration Variables + +# OSType Defines: This defines the type of RTOS or microkernel which you +# are compiling the SAL (and its associated driver) for. New platforms +# can be created by porting the routines (system.c) to your platform and +# adding the define in this Makefile. + +OSTYPE = LINUX + +# +# ORIGIN is used to Optionally select different CFLAGS. It is used to import +# source from other vendors. If SOURCE=Broadcom, then the BCM_ flags are added +# to those passed to the compiler. If SOURCE != Broadcom, BCM_ flags are NOT +# added. +# +# Default specifies Broadcom +# +ifndef ORIGIN + ORIGIN = Broadcom +endif + +# +# STD_{C|CPP|CXX}FLAGS - Standard flags used by ALL compilations +# BCM_{C|CPP|CXX}FLAGS - Flags used for Broadcom source files +# OPT_{C|CPP|CXX}FLAGS - Defined in local make files BEFORE inclusion of +# this Makefile, to define local "Extra" flags. +# + +ifdef IPROC_BUILD +CFGFLAGS += -I$(SDK)/systems/linux/kernel/modules/include \ + -I$(SDK)/systems/bde/linux/include \ + -I$(LINUX_INCLUDE) \ + -I$(KERNDIR)/arch/$(ARCH) +else +CFGFLAGS += -I$(SDK)/systems/linux/kernel/modules/include \ + -I$(SDK)/systems/bde/linux/include \ + -I$(LINUX_INCLUDE) \ + -I$(LINUX_INCLUDE)/asm/gcc \ + -I$(LINUX_INCLUDE)/asm/mach-generic \ + -I$(KERNDIR)/arch/$(ARCH) +endif + +CFGFLAGS += -DNO_FILEIO -DNO_CTRL_C -DNO_MEMTUNE + +CFGFLAGS += -D$(OSTYPE) + +# No user sal for the linux kernel +# NO_SAL_APPL=1 + +STD_CFLAGS = $(KFLAGS) $(CFGFLAGS) + + +STD_CPPFLAGS = ${STD_CFLAGS} +STD_CXXFLAGS = ${STD_CFLAGS} + +ifndef BCM_CFLAGS +BCM_CFLAGS = -Wall -Werror +endif + +BCM_CPPFLAGS = ${BCM_CFLAGS} +BCM_CXXFLAGS = ${BCM_CFLAGS} + +ifeq (${ORIGIN}, Broadcom) + CFLAGS += ${STD_CFLAGS} ${BCM_CFLAGS} ${OPT_CFLAGS} + CPPFLAGS += ${STD_CPPFLAGS} ${BCM_CPPFLAGS} ${OPT_CPPFLAGS} + CXXFLAGS += ${STD_CXXFLAGS} ${BCM_CXXFLAGS} ${OPT_CXXFLAGS} +else + CFLAGS += ${STD_CFLAGS} ${OPT_CFLAGS} + CPPFLAGS += ${STD_CPPFLAGS} ${OPT_CPPFLAGS} + CXXFLAGS += ${STD_CXXFLAGS} ${OPT_CXXFLAGS} +endif + +# +# Ignore pedantic flag for kernel modules +# +ifdef DEBUG_PEDANTIC +DEBUG_PEDANTIC = FALSE +endif + +# +# DEPEND is used as a command to generate the list of dependencies. +# The format of the output must be +# "file.o : file.c a/b/c.h d/e/f.h ...", +# if it is on multiple lines, each line must end in a backslash. +# The output MUST be on standard out. +# +DEPEND = ${CC} -M $(CFLAGS) $< only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-kernel-3_6 +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-kernel-3_6 @@ -0,0 +1,149 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# $Id: Makefile.linux-kernel-3_6,v 1.2 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ + +# Configuration Flags + +# Filter out features that cannot or should not be supported in kernel mode + +_FEATURE_EXCLUDE_LIST += EDITLINE TCL OOB_RCPU CINT APIMODE DUNE_UI +FEATURE_EXCLUDE_LIST = $(sort $(_FEATURE_EXCLUDE_LIST)) + +# Tools + +# Conditionally Replaces DEFAULT var +ifeq ($(origin CC),default) +CC = $(LSRUN) $(CROSS_COMPILE)gcc +endif + +ifeq ($(origin CXX),default) +CXX = $(CROSS_COMPILE)g++ +endif + +ifeq ($(origin LD),default) +LD = $(CROSS_COMPILE)ld +endif + +ifeq ($(origin AR),default) +AR = $(CROSS_COMPILE)ar +endif + +ifeq ($(origin AS),default) +AS = $(CROSS_COMPILE)as +endif + +ifeq ($(origin ARFLAGS),default) + ARFLAGS = -rc +endif + +STRIP = $(CROSS_COMPILE)strip +RANLIB = $(CROSS_COMPILE)ranlib +OBJCOPY = $(CROSS_COMPILE)objcopy +NM = $(CROSS_COMPILE)nm + +# Handle differences between gcc 2.x and gcc 3.x +gcc-tune-flag = $(shell if ${CC} -dumpspecs | grep mcpu >/dev/null; then echo cpu; else echo tune; fi) + +# Configuration Variables + +# OSType Defines: This defines the type of RTOS or microkernel which you +# are compiling the SAL (and its associated driver) for. New platforms +# can be created by porting the routines (system.c) to your platform and +# adding the define in this Makefile. + +OSTYPE = LINUX + +# +# ORIGIN is used to Optionally select different CFLAGS. It is used to import +# source from other vendors. If SOURCE=Broadcom, then the BCM_ flags are added +# to those passed to the compiler. If SOURCE != Broadcom, BCM_ flags are NOT +# added. +# +# Default specifies Broadcom +# +ifndef ORIGIN + ORIGIN = Broadcom +endif + +# +# STD_{C|CPP|CXX}FLAGS - Standard flags used by ALL compilations +# BCM_{C|CPP|CXX}FLAGS - Flags used for Broadcom source files +# OPT_{C|CPP|CXX}FLAGS - Defined in local make files BEFORE inclusion of +# this Makefile, to define local "Extra" flags. +# + +ifdef IPROC_BUILD +CFGFLAGS += -I$(SDK)/systems/linux/kernel/modules/include \ + -I$(SDK)/systems/bde/linux/include \ + -I$(LINUX_INCLUDE) \ + -I$(KERNDIR)/arch/$(ARCH) +else +CFGFLAGS += -I$(SDK)/systems/linux/kernel/modules/include \ + -I$(SDK)/systems/bde/linux/include \ + -I$(LINUX_INCLUDE) \ + -I$(LINUX_INCLUDE)/asm/gcc \ + -I$(LINUX_INCLUDE)/asm/mach-generic \ + -I$(KERNDIR)/arch/$(ARCH) +endif + +CFGFLAGS += -DNO_FILEIO -DNO_CTRL_C -DNO_MEMTUNE + +CFGFLAGS += -D$(OSTYPE) + +# No user sal for the linux kernel +# NO_SAL_APPL=1 + +STD_CFLAGS = $(KFLAGS) $(CFGFLAGS) + + +STD_CPPFLAGS = ${STD_CFLAGS} +STD_CXXFLAGS = ${STD_CFLAGS} + +ifndef BCM_CFLAGS +BCM_CFLAGS = -Wall -Werror +endif + +BCM_CPPFLAGS = ${BCM_CFLAGS} +BCM_CXXFLAGS = ${BCM_CFLAGS} + +ifeq (${ORIGIN}, Broadcom) + CFLAGS += ${STD_CFLAGS} ${BCM_CFLAGS} ${OPT_CFLAGS} + CPPFLAGS += ${STD_CPPFLAGS} ${BCM_CPPFLAGS} ${OPT_CPPFLAGS} + CXXFLAGS += ${STD_CXXFLAGS} ${BCM_CXXFLAGS} ${OPT_CXXFLAGS} +else + CFLAGS += ${STD_CFLAGS} ${OPT_CFLAGS} + CPPFLAGS += ${STD_CPPFLAGS} ${OPT_CPPFLAGS} + CXXFLAGS += ${STD_CXXFLAGS} ${OPT_CXXFLAGS} +endif + +# +# Ignore pedantic flag for kernel modules +# +ifdef DEBUG_PEDANTIC +DEBUG_PEDANTIC = FALSE +endif + +# +# DEPEND is used as a command to generate the list of dependencies. +# The format of the output must be +# "file.o : file.c a/b/c.h d/e/f.h ...", +# if it is on multiple lines, each line must end in a backslash. +# The output MUST be on standard out. +# +DEPEND = ${CC} -M $(CFLAGS) $< only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-kernel-4_4 +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-kernel-4_4 @@ -0,0 +1,158 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# $Id: Makefile.linux-kernel-2_6,v 1.40 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ + +# Configuration Flags + +# Filter out features that cannot or should not be supported in kernel mode + +_FEATURE_EXCLUDE_LIST += EDITLINE TCL OOB_RCPU CINT APIMODE DUNE_UI C_UNIT +FEATURE_EXCLUDE_LIST = $(sort $(_FEATURE_EXCLUDE_LIST)) + +# Tools + +# Conditionally Replaces DEFAULT var +ifeq ($(origin CC),default) +CC = $(LSRUN) $(CROSS_COMPILE)gcc +endif + +ifeq ($(origin CXX),default) +CXX = $(CROSS_COMPILE)g++ +endif + +ifeq ($(origin LD),default) +LD = $(CROSS_COMPILE)ld +endif + +ifeq ($(origin AR),default) +AR = $(CROSS_COMPILE)ar +endif + +ifeq ($(origin AS),default) +AS = $(CROSS_COMPILE)as +endif + +ifeq ($(origin ARFLAGS),default) + ARFLAGS = -rc +endif + +STRIP = $(CROSS_COMPILE)strip +RANLIB = $(CROSS_COMPILE)ranlib +OBJCOPY = $(CROSS_COMPILE)objcopy +NM = $(CROSS_COMPILE)nm + +# Handle differences between gcc 2.x and gcc 3.x +gcc-tune-flag = $(shell if ${CC} -dumpspecs | grep mcpu >/dev/null; then echo cpu; else echo tune; fi) + +# Configuration Variables + +# OSType Defines: This defines the type of RTOS or microkernel which you +# are compiling the SAL (and its associated driver) for. New platforms +# can be created by porting the routines (system.c) to your platform and +# adding the define in this Makefile. +OSTYPE = LINUX + +# +# ORIGIN is used to Optionally select different CFLAGS. It is used to import +# source from other vendors. If SOURCE=Broadcom, then the BCM_ flags are added +# to those passed to the compiler. If SOURCE != Broadcom, BCM_ flags are NOT +# added. +# +# Default specifies Broadcom +# +ifndef ORIGIN + ORIGIN = Broadcom +endif + +# +# STD_{C|CPP|CXX}FLAGS - Standard flags used by ALL compilations +# BCM_{C|CPP|CXX}FLAGS - Flags used for Broadcom source files +# OPT_{C|CPP|CXX}FLAGS - Defined in local make files BEFORE inclusion of +# this Makefile, to define local "Extra" flags. +# +ifdef IPROC_BUILD +CFGFLAGS += -I$(SDK)/systems/linux/kernel/modules/include \ + -I$(SDK)/systems/bde/linux/include \ + -I$(LINUX_INCLUDE) \ + -I$(LINUX_INCLUDE)/uapi \ + -I$(LINUX_INCLUDE)/generated/uapi \ + -I$(KERNDIR)/arch/$(ARCH) \ + -I$(KERNDIR)/arch/$(ARCH)/include/uapi \ + -I$(KERNDIR)/arch/$(ARCH)/include/generated \ + -I$(KERNDIR)/arch/$(ARCH)/include/generated/uapi +else +CFGFLAGS += -I$(SDK)/systems/linux/kernel/modules/include \ + -I$(SDK)/systems/bde/linux/include \ + -I$(LINUX_INCLUDE) \ + -I$(LINUX_INCLUDE)/asm/gcc \ + -I$(LINUX_INCLUDE)/asm/mach-generic \ + -I$(LINUX_INCLUDE)/uapi \ + -I$(LINUX_INCLUDE)/generated/uapi \ + -I$(KERNDIR)/arch/$(ARCH) \ + -I$(KERNDIR)/arch/$(ARCH)/include/uapi \ + -I$(KERNDIR)/arch/$(ARCH)/include/generated \ + -I$(KERNDIR)/arch/$(ARCH)/include/generated/uapi +endif + +CFGFLAGS += -DNO_FILEIO -DNO_CTRL_C -DNO_MEMTUNE + +CFGFLAGS += -D$(OSTYPE) + +# No user sal for the linux kernel +# NO_SAL_APPL=1 + +STD_CFLAGS = $(KFLAGS) $(CFGFLAGS) + + +STD_CPPFLAGS = ${STD_CFLAGS} +STD_CXXFLAGS = ${STD_CFLAGS} + +ifndef BCM_CFLAGS +BCM_CFLAGS = -Wall -Werror +endif + +BCM_CPPFLAGS = ${BCM_CFLAGS} +BCM_CXXFLAGS = ${BCM_CFLAGS} + +ifeq (${ORIGIN}, Broadcom) + CFLAGS += ${STD_CFLAGS} ${BCM_CFLAGS} ${OPT_CFLAGS} + CPPFLAGS += ${STD_CPPFLAGS} ${BCM_CPPFLAGS} ${OPT_CPPFLAGS} + CXXFLAGS += ${STD_CXXFLAGS} ${BCM_CXXFLAGS} ${OPT_CXXFLAGS} +else + CFLAGS += ${STD_CFLAGS} ${OPT_CFLAGS} + CPPFLAGS += ${STD_CPPFLAGS} ${OPT_CPPFLAGS} + CXXFLAGS += ${STD_CXXFLAGS} ${OPT_CXXFLAGS} +endif + +# +# Ignore pedantic flag for kernel modules +# +ifdef DEBUG_PEDANTIC +DEBUG_PEDANTIC = FALSE +endif + +# +# DEPEND is used as a command to generate the list of dependencies. +# The format of the output must be +# "file.o : file.c a/b/c.h d/e/f.h ...", +# if it is on multiple lines, each line must end in a backslash. +# The output MUST be on standard out. +# +DEPEND = ${CC} -M $(CFLAGS) $< + only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-kmodule +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-kmodule @@ -0,0 +1,82 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# $Id: Makefile.linux-kmodule-3_6,v 1.2 Broadcom SDK $ +# $Copyright: (c) 2006 Broadcom Corp. +# All Rights Reserved.$ + +# Due to the extensive use of driver libraries, the SDK usually builds +# kernel modules from a precompiled object. To avoid various warnings +# and conflicts, the pre-compiled object must be named differently +# from the target module, and the object file itself should be +# appended with "_shipped". + +# If a module exports any symbols, then the exporting source file must +# be compiled within the kernel source tree for correct generation of +# module symbol versions. The symbol source file should be passed to +# this Makefile via the MODULE_SYM variable. + +MODULE := $(MOD_NAME).o +KMODULE := $(MOD_NAME).ko +PRE_COMPILED_OBJ := obj_$(MOD_NAME).o + +obj-m := $(MODULE) +$(MOD_NAME)-y := $(MODULE_SYM) $(PRE_COMPILED_OBJ) + + +ifeq (,$(CROSS_COMPILE)) + +export CROSS_COMPILE + +endif + +SAVE_CFLAGS := ${CFLAGS} + +include $(SDK)/make/Make.config + +PWD := $(shell pwd) + +ifneq ($(ARCH),) +# ELDK does not seem to `automatically' define ARCH where other gccs may +A := ARCH=$(ARCH) +export ARCH +endif + +# Provide an option in case kernel was built in separate directory +KERNBLDDIR ?= $(KERNDIR) + +# Standard SDK include path for building source files that export +# kernel symbols. + +override EXTRA_CFLAGS = -I${SDK}/include -I${SDK}/systems/linux/kernel/modules/include -I${SDK}/systems/bde/linux/include + +# The precopiled object needs a dummy command file to avoid warnings +# from the Kbuild scripts (modpost stage). +# Kernels before 2.6.17 do not support external module symbols files, +# so we create a dummy to prevent build failures. + +$(KMODULE): + rm -f *.o *.ko .*.cmd + rm -fr .tmp_versions + ln -s $(LIBDIR)/$(MODULE) $(PRE_COMPILED_OBJ)_shipped + echo "suppress warning" > .$(PRE_COMPILED_OBJ).cmd + $(MAKE) -C $(KERNBLDDIR) CROSS_COMPILE=$(CROSS_COMPILE) M=$(PWD) modules + if [ ! -f Module.symvers ]; then echo "old kernel (pre-2.6.17)" > Module.symvers; fi + cp -f $(KMODULE) $(LIBDIR) + rm -f $(PRE_COMPILED_OBJ)_shipped + +EXTRA_CFLAGS = $(CFLAGS) +CFLAGS := ${SAVE_CFLAGS} only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-x86-common-2_6 +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-x86-common-2_6 @@ -0,0 +1,45 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# $Id: Makefile.linux-x86-common-2_6,v 1.13 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ + +CFGFLAGS += -DSYS_BE_PIO=0 -DSYS_BE_PACKET=0 -DSYS_BE_OTHER=0 +ENDIAN = LE_HOST=1 +CFGFLAGS += -D$(ENDIAN) +CFGFLAGS += -DBCM_PLATFORM_STRING=\"X86\" +ifeq (,$(findstring -DSAL_BDE_DMA_MEM_DEFAULT,$(CFGFLAGS))) +CFGFLAGS += -DSAL_BDE_DMA_MEM_DEFAULT=16 +endif + +# Extra variables. +EXTRA_CFLAGS = -D"KBUILD_STR(s)=\#s" $(basename_flags) $(modname_flags) + +comma = , +basetarget = $(basename $(notdir $@)) +modname = $(basetarget) + +name-fix = $(subst $(comma),_,$(subst -,_,$1)) +basename_flags = -D"KBUILD_BASENAME=KBUILD_STR($(call name-fix,$(basetarget)))" +modname_flags = $(if $(filter 1,$(words $(modname))),\ +-D"KBUILD_MODNAME=KBUILD_STR($(call name-fix,$(modname)))") + +ifneq ($(targetplat),user) +# By default we exclude -Werror from x86 kernel builds +BCM_CFLAGS = -Wall +include ${SDK}/make/Makefile.linux-kernel-2_6 +endif only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-x86-generic-common-2_6 +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-x86-generic-common-2_6 @@ -0,0 +1,52 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# $Id: Makefile.linux-x86-generic-common-2_6,v 1.2 Broadcom SDK $ +# $Copyright: (c) 2008 Broadcom Corp. +# All Rights Reserved.$ + +# Default kernel source directory +ifeq (,$(KERNDIR)) +KERNDIR := /lib/modules/$(shell uname -r)/build +export KERNDIR +endif + +# Default architecture +ifeq (,$(ARCH)) +ARCH = $(shell uname -p) +ifneq (x86_64,$(ARCH)) +ARCH = i386 +endif +endif + +# Noisy kernel build +KBUILD_VERBOSE = 1 + +export ARCH KBUILD_VERBOSE KERNDIR + +# Default Linux include directory +ifeq (,$(LINUX_INCLUDE)) +LINUX_INCLUDE := $(KERNDIR)/include +endif + +# autoconf.h was moved in later kernels +AUTOCONF = $(KERNDIR)/include/generated/autoconf.h +ifeq (,$(shell ls $(AUTOCONF) 2>/dev/null)) +AUTOCONF = $(KERNDIR)/include/linux/autoconf.h +endif + +# gcc system include path +SYSINC = $(shell gcc -print-search-dirs | grep install | cut -c 10-)include only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-x86-smp_generic_64-2_6 +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-x86-smp_generic_64-2_6 @@ -0,0 +1,34 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# $Id: Makefile.linux-x86-smp_generic_64-2_6,v 1.5 Broadcom SDK $ +# $Copyright: (c) 2008 Broadcom Corp. +# All Rights Reserved.$ + +CFGFLAGS += -DLONGS_ARE_64BITS +CFGFLAGS += -DPTRS_ARE_64BITS +CFGFLAGS += -DPHYS_ADDRS_ARE_64BITS +CFGFLAGS += -DSAL_SPL_LOCK_ON_IRQ + +include ${SDK}/make/Makefile.linux-x86-generic-common-2_6 + +ifeq (,$(KFLAGS)) +KFLAGS := -nostdinc -isystem $(SYSINC) -I$(KERNDIR)/include -I$(KERNDIR)/arch/x86/include -include $(AUTOCONF) -D__KERNEL__ -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -Os -m64 -mtune=generic -mno-red-zone -mcmodel=kernel -funit-at-a-time -maccumulate-outgoing-args -DCONFIG_AS_CFI=1 -DCONFIG_AS_CFI_SIGNAL_FRAME=1 -pipe -Wno-sign-compare -fno-asynchronous-unwind-tables -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -fno-stack-protector -fomit-frame-pointer -g -Wdeclaration-after-statement -Wno-pointer-sign +endif + +KFLAGS += -I$(LINUX_INCLUDE)/uapi -I$(LINUX_INCLUDE)/generated/uapi -I$(KERNDIR)/arch/x86/include/generated -I$(KERNDIR)/arch/x86/include/uapi -I$(KERNDIR)/arch/x86/include/generated/uapi + +include ${SDK}/make/Makefile.linux-x86-common-2_6 only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/include/linux-bde.h +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/include/linux-bde.h @@ -0,0 +1,275 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/*********************************************************************** + * + * $Id: linux-bde.h,v 1.24 Broadcom SDK $ + * $Copyright: (c) 2005 Broadcom Corp. + * All Rights Reserved.$ + * + * Linux Broadcom Device Enumerators + * + * + * There are two Linux BDEs: + * + * 1. Linux Kernel BDE + * + * This is a kernel module implementing a BDE + * for the driver running as part of the kernel. + * + * It manages the devices through the linux PCI interfaces, + * and manages a chunk of contiguous, boot-time allocated + * DMA memory. This is all that is needed if the BCM driver + * is run as part of the kernel (in another module). + * + * 2. Linux User BDE + * + * This is a kernel module and userland library which implement + * a complete BDE for applications running in userland. + * + * The kernel module relies upon the real kernel bde, + * and allows a user space application (through the user library) + * to talk directly to the devices. It also virtualized the device + * interrupts, so the entire driver can be run as a userspace + * application. + * + * While this causes a significant degradation in performance, + * because the system runs as a user application, the development + * and debugging process is about a gillion times easier. + * After the core logic is debugged, it can be retargeted using + * only the kernel bde and run in the kernel. + * + * + **********************************************************************/ + +#ifndef __LINUX_BDE_H__ +#define __LINUX_BDE_H__ + +#include + +#include + + +/* + * Device Major Numbers + * + * The kernel and user bdes need unique major numbers + * on systems that do not use devfs. + * + * They are defined here, along with the module names, + * to document them if you need to mknod them (or open) them, + * and to keep them unique. + * + */ + +#include + +#ifdef __KERNEL__ +#include +/* Key stone and Raptor has 2.6.21 but don't have definition */ +#if defined(KEYSTONE) || defined(RAPTOR) +#if (LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,21)) + #ifdef PHYS_ADDRS_ARE_64BITS + typedef u64 phys_addr_t; + #else + typedef u32 phys_addr_t; + #endif + #endif +#endif +#endif + + +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,15)) +#define LINUX_BDE_DMA_DEVICE_SUPPORT +#endif + +#define LINUX_KERNEL_BDE_NAME "linux-kernel-bde" +#define LINUX_KERNEL_BDE_MAJOR 127 + +#define LINUX_USER_BDE_NAME "linux-user-bde" +#define LINUX_USER_BDE_MAJOR 126 + + +/* Max devices */ +/* 16 switch chips + 2 out-of-band Ethernet + 2 CPUs */ +#define LINUX_BDE_MAX_SWITCH_DEVICES 16 +#define LINUX_BDE_MAX_ETHER_DEVICES 2 +#define LINUX_BDE_MAX_CPU_DEVICES 2 +#define LINUX_BDE_MAX_DEVICES (LINUX_BDE_MAX_SWITCH_DEVICES + \ + LINUX_BDE_MAX_ETHER_DEVICES + \ + LINUX_BDE_MAX_CPU_DEVICES) + +/* + * PCI devices will be initialized by the Linux Kernel, + * regardless of architecture. + * + * You need only provide bus endian settings. + */ + +typedef struct linux_bde_bus_s { + int be_pio; + int be_packet; + int be_other; +} linux_bde_bus_t; + + + +/* Device state used for PCI hot swap case. */ +/* + * BDE_DEV_STATE_NORMAL : A device is probed normally. Or when the device + * resource has been updated after "CHANGED", the state will move back to + * "NORMAL". + */ +#define BDE_DEV_STATE_NORMAL (0) +/* + * BDE_DEV_STATE_REMOVED : A previous probed device was removed. + * We will avoid any device access while the device is in this state. + * The state will be moved to "CHANGED" if the device is re-inserted + * and re-probed. + */ +#define BDE_DEV_STATE_REMOVED (1) +/* + * BDE_DEV_STATE_CHANGED : The device is re-probed after having been removed. + * The resouces assigned to the device might have been changed after + * re-probing, so we need to re-initialize our resource database accordingly. + * The state will change to "NORMAL" when the resource have been updated. + */ +#define BDE_DEV_STATE_CHANGED (2) + +extern int linux_bde_create(linux_bde_bus_t* bus, ibde_t** bde); +extern int linux_bde_destroy(ibde_t* bde); +#ifdef BCM_INSTANCE_SUPPORT +extern int linux_bde_instance_attach(unsigned int dev_mask,unsigned int dma_size); +#endif + +#ifdef __KERNEL__ + +/* + * Backdoors provided by the kernel bde + * + */ + +/* + * The user bde needs to get cpu physical address for + * the userland code to mmap. + * And the second address is bus address, it is either + * identical to cpu physical address or another address + * (IOVA) translated by IOMMU. + */ +extern int lkbde_get_dma_info(phys_addr_t *cpu_pbase, phys_addr_t *dma_pbase, ssize_t *size); +extern uint32 lkbde_get_dev_phys(int d); +extern uint32 lkbde_get_dev_phys_hi(int d); + +/* + * Virtual device address needed by kernel space + * interrupt handler. + */ +extern void *lkbde_get_dev_virt(int d); + +/* + * The user bde needs to get some physical addresses for + * the userland code to mmap. The following functions + * supports multiple resources for a single device. + */ +extern int lkbde_get_dev_resource(int d, int rsrc, uint32 *flags, + uint32 *phys_lo, uint32 *phys_hi); + +/* + * Backdoor to retrieve OS device structure to be used for + * DMA operations. + */ +extern void *lkbde_get_dma_dev(int d); + +/* + * Backdoor to retrieve original hardware/OS device. + */ +extern void *lkbde_get_hw_dev(int d); + +/* + * Retrive the device state from Kernel BDE. + * Used for KNET and User BDE for pci hot swap case. + */ +extern int lkbde_dev_state_get(int d, uint32 *state); +extern int lkbde_dev_state_set(int d, uint32 state); + +/* + * Retrive the mapping between emulated HW device and instance id + */ +extern int lkbde_dev_instid_get(int d, uint32 *instid); +extern int lkbde_dev_instid_set(int d, uint32 instid); + +/* + * Functions that allow an interrupt handler in user mode to + * coexist with interrupt handler in kernel module. + */ +extern int lkbde_irq_mask_set(int d, uint32 addr, uint32 mask, uint32 fmask); +extern int lkbde_irq_mask_get(int d, uint32 *mask, uint32 *fmask); + +#if (defined(BCM_PETRA_SUPPORT) || defined(BCM_DFE_SUPPORT)) +extern int lkbde_cpu_write(int d, uint32 addr, uint32 *buf); +extern int lkbde_cpu_read(int d, uint32 addr, uint32 *buf); +extern int lkbde_cpu_pci_register(int d); +#endif + +/* + * This flag must be OR'ed onto the device number when calling + * interrupt_connect/disconnect and irq_mask_set functions from + * a secondary device driver. + */ +#define LKBDE_ISR2_DEV 0x8000 + +#if defined(BCM_PETRA_SUPPORT) || defined(BCM_DFE_SUPPORT) +#include +#if defined(__DUNE_LINUX_BCM_CPU_PCIE__) && LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,26) +#ifndef _SIMPLE_MEMORY_ALLOCATION_ +#define _SIMPLE_MEMORY_ALLOCATION_ 1 +#endif +#ifndef USE_LINUX_BDE_MMAP +#define USE_LINUX_BDE_MMAP 1 +#endif +#endif +#endif + +#if defined(IPROC_CMICD) && defined(CONFIG_CMA) +#ifndef _SIMPLE_MEMORY_ALLOCATION_ +#define _SIMPLE_MEMORY_ALLOCATION_ 1 +#endif +#endif + +/* Don't use _SIMPLE_MEMORY_ALLOCATION_ method for newer kernel than 3.10.0 */ +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,10,0)) +#ifndef _SIMPLE_MEMORY_ALLOCATION_ +#define _SIMPLE_MEMORY_ALLOCATION_ 0 +#endif +#endif + +/* Allocation via dma_alloc_coherent is turned off by default */ +#ifndef _SIMPLE_MEMORY_ALLOCATION_ +#define _SIMPLE_MEMORY_ALLOCATION_ 9 /* compile in the allocation method, but do not use it by default */ +#endif + +/* By default we use our private mmap only if /dev/mem mmap has restrictions */ +#ifndef USE_LINUX_BDE_MMAP +#ifdef CONFIG_STRICT_DEVMEM +#define USE_LINUX_BDE_MMAP 1 +#else +#define USE_LINUX_BDE_MMAP 0 +#endif +#endif + +#endif /* __KERNEL__ */ + +#endif /* __LINUX_BDE_H__ */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/include/linux_dma.h +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/include/linux_dma.h @@ -0,0 +1,76 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/*********************************************************************** + * + * $Id: linux_dma.h,v 1.24 Broadcom SDK $ + * $Copyright: (c) 2016 Broadcom Corp. + * All Rights Reserved.$ + * + **********************************************************************/ + +#ifndef __LINUX_DMA_H__ +#define __LINUX_DMA_H__ + +#include + +#ifdef __KERNEL__ + +#ifdef SAL_BDE_XLP +#define KMALLOC(size, flags) __kmalloc(size, flags) +#else +#define KMALLOC(size, flags) kmalloc(size, flags) +#endif + +#if defined(CONFIG_IDT_79EB334) || defined(CONFIG_BCM4702) +/* ioremap is broken in kernel */ +#define IOREMAP(addr, size) ((void *)KSEG1ADDR(addr)) +#else +#define IOREMAP(addr, size) ioremap_nocache(addr, size) +#endif + +#if defined (__mips__) +#if defined(CONFIG_NONCOHERENT_IO) || defined(CONFIG_DMA_NONCOHERENT) +/* Use flush/invalidate for cached memory */ +#define NONCOHERENT_DMA_MEMORY +/* Remap virtual DMA addresses to non-cached segment */ +#define REMAP_DMA_NONCACHED +#endif /* CONFIG_NONCOHERENT_IO || CONFIG_DMA_NONCOHERENT */ +#endif /* __mips__ */ + +#if defined(BCM958525) && (LINUX_VERSION_CODE <= KERNEL_VERSION(3,6,5)) +#define REMAP_DMA_NONCACHED +#endif + +#ifndef DMA_BIT_MASK +#define DMA_BIT_MASK(n) (((n) == 64) ? ~0ULL : ((1ULL<<(n))-1)) +#endif + +extern void _dma_init(int robo_switch); +extern int _dma_cleanup(void); +extern void _dma_pprint(void); +extern uint32_t *_salloc(int d, int size, const char *name); +extern void _sfree(int d, void *ptr); +extern int _sinval(int d, void *ptr, int length); +extern int _sflush(int d, void *ptr, int length); +extern sal_paddr_t _l2p(int d, void *vaddr); +extern void *_p2l(int d, sal_paddr_t paddr); +extern int _dma_pool_allocated(void); +extern int _dma_range_valid(unsigned long phys_addr, unsigned long size); + +#endif /* __KERNEL__ */ + +#endif /* __LINUX_DMA_H__ */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/include/mpool.h +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/include/mpool.h @@ -0,0 +1,37 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: mpool.h,v 1.2 Broadcom SDK $ + * $Copyright: (c) 2005 Broadcom Corp. + * All Rights Reserved.$ + */ + +#ifndef __MPOOL_H__ +#define __MPOOL_H__ + +struct mpool_mem_s; +typedef struct mpool_mem_s* mpool_handle_t; + +extern int mpool_init(void); +extern mpool_handle_t mpool_create(void* base_address, int size); +extern void* mpool_alloc(mpool_handle_t pool, int size); +extern void mpool_free(mpool_handle_t pool, void* ptr); +extern int mpool_destroy(mpool_handle_t pool); + +extern int mpool_usage(mpool_handle_t pool); + +#endif /* __MPOOL_H__ */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/kernel/Makefile +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/kernel/Makefile @@ -0,0 +1,115 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# -*- Makefile -*- +# $Id: Makefile,v 1.18 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ +# +# Makefile for Linux kernel BDE +# +LOCALDIR = systems/bde/linux/kernel + +# Make sure we build for the kernel if this is a user-mode build +ifneq ($(platform), ) +override-target=linux-$(platform) +endif + +include $(SDK)/make/Make.config + +LIBS = $(LIBDIR)/libkern.a + +BDE = linux-kernel-bde.o + +ifdef ROBO_CHIPS +CFLAGS += -I$(ET_ROBO) -I${SDK}/include/shared/et +ET_ROBO = ${SDK}/systems/drv/et +endif + +# need to add vpath sources +VPATH = ../shared $(ET_ROBO) + +# Add the srcs to be found by vpath +LSRCS += mpool.c +ifdef ROBO_CHIPS +platformsplt = $(subst -, , ${platform}) # change hyphens to spaces +platformbase = $(word 1,${platformsplt}) + +ifeq ($(platformbase), keystone) + LSRCS += etc_robo_spi.c aiutils.c +else + ifeq ($(platformbase), keystone_le) + LSRCS += etc_robo_spi.c aiutils.c + else + ifeq ($(platformbase), iproc) + LSRCS += robo_srab.c robo_spi.c aiutils.c + endif + endif +endif # platformbase + +endif # ROBO_CHIPS + +# Add shared BDE sources +VPATH += ../../shared +LSRCS += shbde_pci.c shbde_iproc.c shbde_mdio.c +CFLAGS += -I../../shared/include + +LHDRS += mpool.h +LOBJS = $(addsuffix .o, $(basename $(LSRCS))) +BOBJS = $(addprefix $(BLDDIR)/,$(LOBJS)) + +ifneq ($(kernel_version),2_4) +KERNEL_MODULE_DIR = kernel_module + +THIS_MOD_NAME := linux-kernel-bde +MODULE = $(LIBDIR)/$(THIS_MOD_NAME).o +KMODULE = $(LIBDIR)/$(THIS_MOD_NAME).ko + +build: kernel_libs $(MODULE) $(KMODULE) +else +MODULE = $(LIBDIR)/linux-kernel-bde.o + +build: kernel_libs $(MODULE) +endif + +$(MODULE): $(BLDDIR)/.tree kernel_libs $(BOBJS) + mkdir -p $(@D) + $(LD) $(MODULE_LDFLAGS) -r -d $(BOBJS) $(LIBS) -o $@ +ifneq ($(kernel_version),2_4) +$(KMODULE): $(MODULE) + rm -fr $(BLDDIR)/$(KERNEL_MODULE_DIR) + mkdir $(BLDDIR)/$(KERNEL_MODULE_DIR) + cp ${SDK}/make/Makefile.linux-kmodule $(BLDDIR)/$(KERNEL_MODULE_DIR)/Makefile + MOD_NAME=$(THIS_MOD_NAME) $(MAKE) -C $(BLDDIR)/$(KERNEL_MODULE_DIR) $(THIS_MOD_NAME).ko +endif + +kernel_libs: + $(MAKE) -C $(SDK)/systems/linux/kernel/modules/shared + +include $(SDK)/make/Make.depend + +# Make.depend is before clean:: so that Make.depend's clean:: runs first. + +clean:: + $(MAKE) -C $(SDK)/systems/linux/kernel/modules/shared $@ + $(RM) $(BOBJS) $(MODULE) + $(RM) $(BLDDIR)/$(KERNEL_MODULE_DIR) + +distclean:: + +ifneq ($(kernel_version),2_4) +.PHONY: build kernel_libs +endif only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/kernel/linux-kernel-bde.c +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/kernel/linux-kernel-bde.c @@ -0,0 +1,5173 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: linux-kernel-bde.c,v 1.414 Broadcom SDK $ + * $Copyright: (c) 2005 Broadcom Corp. + * All Rights Reserved.$ + * + * Linux Kernel BDE + * + */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "linux_shbde.h" + +#ifdef BCM_ROBO_SUPPORT +/* robo/et related header files */ +#include + +#include + +#if defined(KEYSTONE) +#include +#include +#include +#include +#elif defined(IPROC_CMICD) +#include +#include +#ifdef BCM_STARFIGHTER3_SUPPORT +#include +#endif +#include +#include +#else /* BCM4704 */ +#include +#include +#endif +#endif /* BCM_ROBO_SUPPORT */ + +#define PCI_USE_INT_NONE (-1) +#define PCI_USE_INT_INTX (0) +#define PCI_USE_INT_MSI (1) +#define PCI_USE_INT_MSIX (2) +#ifdef CONFIG_PCI_MSI +#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,110)) +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,2,84)) +#define msix_table_size(flags) ((flags & PCI_MSIX_FLAGS_QSIZE) + 1) +#endif +#define msi_control_reg(base) (base + PCI_MSI_FLAGS) +#endif +#endif +MODULE_AUTHOR("Broadcom Corporation"); +MODULE_DESCRIPTION("Kernel BDE"); +MODULE_LICENSE("GPL"); + +/* PCIe max payload */ +int maxpayload = 256; +LKM_MOD_PARAM(maxpayload, "i", int, 0); +MODULE_PARM_DESC(maxpayload, +"Limit maximum payload size and request size on PCIe devices"); + +/* Use MSI or MSIX interrupts */ +int usemsi = -1; +LKM_MOD_PARAM(usemsi, "i", int, 0); +MODULE_PARM_DESC(usemsi, +"Use MSI/ MSIX interrupts if supported by kernel"); + +/* Ignore all recognized devices (for debug purposes) */ +int nodevices; +LKM_MOD_PARAM(nodevices, "i", int, 0); +MODULE_PARM_DESC(nodevices, +"Ignore all recognized devices (default no)"); + +/* + * This usually is defined at /usr/include/linux/pci_ids.h + * But this ID is newer. + */ +#ifndef PCI_DEVICE_ID_PLX_9656 +#define PCI_DEVICE_ID_PLX_9656 0x9656 +#endif + +#ifndef PCI_DEVICE_ID_PLX_9056 +#define PCI_DEVICE_ID_PLX_9056 0x9056 +#endif + +/* local defined device IDs, refer to bcmdevs.h */ +#ifndef BCM53000_GMAC_ID +#define BCM53000_GMAC_ID 0x4715 /* 53003 gmac id */ +#endif +#ifndef BCM53010_GMAC_ID +#define BCM53010_GMAC_ID 0x4715 /* 5301x gmac id */ +#endif +#ifndef BCM47XX_ENET_ID +#define BCM47XX_ENET_ID 0x4713 /* 4710 enet */ +#endif +#ifndef BCM53010_CHIP_ID +#define BCM53010_CHIP_ID 0xcf12 /* 53010 chipcommon chipid */ +#endif +#ifndef BCM53018_CHIP_ID +#define BCM53018_CHIP_ID 0xcf1a /* 53018 chipcommon chipid */ +#endif +#ifndef BCM53020_CHIP_ID +#define BCM53020_CHIP_ID 0xcf1e /* 53020 chipcommon chipid */ +#endif + +/* For 2.4.x kernel support */ +#ifndef IRQF_SHARED +#define IRQF_SHARED SA_SHIRQ +#endif + +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,18) +typedef unsigned long resource_size_t; +#endif /* LINUX_VERSION_CODE < KERNEL_VERSION(2,6,18) */ + +#ifdef BCM_ICS +#define BCM_ICS_CMIC_BASE 0x08000000 +#else + +/* Force interrupt line */ +static int forceirq = -1; +static uint32_t forceirqubm = 0xffffffff; +LKM_MOD_PARAM(forceirq, "i", int, 0); +LKM_MOD_PARAM(forceirqubm, "i", uint, 0); +MODULE_PARM_DESC(forceirq, +"Override IRQ line assigned by boot loader"); +MODULE_PARM_DESC(forceirqubm, +"Bitmap for overriding the IRQ line assigned by boot loader for given units"); + +/* Create SPI slave device (cannot be probed) */ +static uint32_t spi_devid = 0; +LKM_MOD_PARAM(spi_devid, "i", uint, 0); +MODULE_PARM_DESC(spi_devid, +"Create SPI slave device using this device ID"); + +/* Select SPI device revision (cannot be probed) */ +static uint32_t spi_revid = 1; +LKM_MOD_PARAM(spi_revid, "i", uint, 0); +MODULE_PARM_DESC(spi_revid, +"Select device revision for SPI slave device"); + +#endif /* BCM_ICS */ + +/* Debug output */ +static int debug; +LKM_MOD_PARAM(debug, "i", int, 0); +MODULE_PARM_DESC(debug, +"Set debug level (default 0"); +/* Use high memory for DMA */ + +/* module param for probing EB devices. */ +static char *eb_bus; +LKM_MOD_PARAM(eb_bus, "s", charp, 0); +MODULE_PARM_DESC(eb_bus, +"List of EB devices on platform. Input format (BA=%x IRQ=%d RD16=%d WR16=%d"); + +#ifdef KEYSTONE +/* Force SPI Frequency */ +static int spifreq = 0; +LKM_MOD_PARAM(spifreq, "i", int, 0); +MODULE_PARM_DESC(spifreq, +"Force SPI Frequency for Keystone CPU (0 for default frequency)"); +#endif + +#if defined(BCM_EA_SUPPORT) +#if defined(BCM_TK371X_SUPPORT) +static int eadevices; +LKM_MOD_PARAM(eadevices, "i", int, 0); +MODULE_PARM_DESC(eadevices, +"Number of TK371X devices"); +#endif /* */ +#endif /* BCM_EA_SUPPORT */ + +/* Compatibility */ +#ifdef LKM_2_4 +#define _ISR_RET void +#define _ISR_PARAMS(_i,_d,_r) int _i, void *_d, struct pt_regs *_r +#define IRQ_NONE +#define IRQ_HANDLED +#define SYNC_IRQ(_i) synchronize_irq() +#else /* LKM_2_6 */ +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,31)) +#define _ISR_RET irqreturn_t +#else +#define _ISR_RET int +#endif +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,19)) +#define _ISR_PARAMS(_i,_d,_r) int _i, void *_d +#else +#define _ISR_PARAMS(_i,_d,_r) int _i, void *_d, struct pt_regs *_r +#endif +#define SYNC_IRQ(_i) synchronize_irq(_i) +char * ___strtok; +char * strtok(char * s,const char * ct) +{ + char *sbegin, *send; + sbegin = s ? s : ___strtok; + if (!sbegin) { + return NULL; + } + sbegin += strspn(sbegin,ct); + if (*sbegin == '\0') { + ___strtok = NULL; + return( NULL ); + } + send = strpbrk( sbegin, ct); + if (send && *send != '\0') + *send++ = '\0'; + ___strtok = send; + return (sbegin); +} +LKM_EXPORT_SYM(___strtok); +LKM_EXPORT_SYM(strtok); +#endif /* LKM_2_x */ + +/* PCIe capabilities */ +#ifndef PCI_CAP_ID_EXP +#define PCI_CAP_ID_EXP 0x10 +#endif +#ifndef PCI_EXP_DEVCAP +#define PCI_EXP_DEVCAP 4 +#endif +#ifndef PCI_EXP_DEVCTL +#define PCI_EXP_DEVCTL 8 +#endif +#ifndef PCI_EXT_CAP_START +#define PCI_EXT_CAP_START 0x100 +#endif +#ifndef PCI_EXT_CAP_ID +#define PCI_EXT_CAP_ID(_hdr) (_hdr & 0x0000ffff) +#endif +#ifndef PCI_EXT_CAP_VER +#define PCI_EXT_CAP_VER(_hdr) ((_hdr >> 16) & 0xf) +#endif +#ifndef PCI_EXT_CAP_NEXT +#define PCI_EXT_CAP_NEXT(_hdr) ((_hdr >> 20) & 0xffc) +#endif +#ifndef PCI_EXT_CAP_ID_VNDR +#define PCI_EXT_CAP_ID_VNDR 0x0b +#endif + +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,20) +#define PCI_FIND_DEV(_d, _v, _fr) pci_find_device(_d, _v, _fr) +#else +#define PCI_FIND_DEV(_d, _v, _fr) pci_get_device(_d, _v, _fr) +#endif + +#if defined(CONFIG_RESOURCES_64BIT) || defined(CONFIG_PHYS_ADDR_T_64BIT) +#define PHYS_ADDR_IS_64BIT +#endif + +/* Structure of private SPI device */ +struct spi_dev { + uint8 cid; /* Chip ID */ + uint32 part; /* Part number of the chip */ + uint8 rev; /* Revision of the chip */ + void *robo; /* ptr to robo info required to access SPI */ + unsigned short phyid_high; /* PHYID HIGH in MII regs of detected chip */ + unsigned short phyid_low; /* PHYID LOW in MII regs of detected chip */ +}; + +struct bde_spi_device_id { + unsigned short phyid_high; /* PHYID HIGH in MII regs of detected chip */ + unsigned short phyid_low; /* PHYID LOW in MII regs of detected chip */ + uint32 model_info; + uint32 rev_info; + uint32 spifreq; +}; + +/* Control Data */ +typedef struct bde_ctrl_s { + struct list_head list; + + /* Specify the type of device, pci, spi, switch, ether ... */ + uint32 dev_type; + + int domain_no; + int bus_no; + int be_pio; + int use_msi; +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,2,84)) + struct msix_entry *entries; +#endif + int msix_cnt; + union { + /* Linux PCI device pointer */ + struct pci_dev* _pci_dev; + + /* SPI device pointer */ + struct spi_dev* _spi_dev; + } dev; +#define pci_device dev._pci_dev +#define spi_device dev._spi_dev + +#ifdef LINUX_BDE_DMA_DEVICE_SUPPORT + struct device *dma_dev; +#endif + + /* Physical addresses */ + resource_size_t phys_address; + resource_size_t phys_address1; + resource_size_t phys_address2; + + /* Secondary mapped base address */ + sal_vaddr_t alt_base_addr; + + /* BDE device description */ + ibde_dev_t bde_dev; + + /* Interrupt Handling */ + int iLine; /* Interrupt line */ + void (*isr)(void *); + void *isr_data; + + /* + * Controls to allow two drivers to share a single set of + * hardware registers. Typically a kernel driver will handle + * a subset of hardware interrupts and a user mode driver + * will handle the remaining interrupts. + */ + void (*isr2)(void *); + void *isr2_data; + uint32_t fmask; /* Interrupts controlled by secondary handler */ + uint32_t imask; /* Enabled interrupts for primary handler */ + uint32_t imask2; /* Enabled interrupts for secondary handler */ + spinlock_t lock; /* Lock for IRQ mask synchronization */ + + /* Hardware abstraction for shared BDE functions */ + shbde_hal_t shbde; + + /* Device state : BDE_DEV_STATE_REMOVED/CHANGED */ + uint32 dev_state; + + /* inst_id */ + uint32 inst_id; +} bde_ctrl_t; + +static bde_ctrl_t _devices[LINUX_BDE_MAX_DEVICES]; +static int _ndevices = 0; +static int _switch_ndevices = 0; +static int _ether_ndevices = 0; +static int _cpu_ndevices = 0; +static int robo_switch = 0; + +#define VALID_DEVICE(_n) ((_n >= 0) && (_n < _ndevices)) + +/* CPU MMIO area used with CPU cards provided on demo boards */ +#if (defined(BCM_PETRA_SUPPORT) || defined(BCM_DFE_SUPPORT) || defined(BCM_DNX_SUPPORT) || defined(BCM_DNXF_SUPPORT)) && (defined(__DUNE_WRX_BCM_CPU__) || defined(__DUNE_GTO_BCM_CPU__)) +static void *cpu_address = NULL; +#endif + +#ifdef BCM_ROBO_SUPPORT + +/* for SPI access via bcm4710 core */ +static void *robo = NULL; +static void *sbh = NULL; + +#ifdef ALTA_ROBO_SPI + +extern void *alta_eth_spi_ctrl; + +extern int +robo_spi_read(void *cookie, uint16_t reg, uint8_t *buf, int len); + +extern int +robo_spi_write(void *cookie, uint16_t reg, uint8_t *buf, int len); + +#define ROBO_RREG(_robo, _dev, _page, _reg, _buf, _len) \ + robo_spi_read(_dev ? NULL : alta_eth_spi_ctrl, \ + (_page << 8) | (_reg), _buf, _len) +#define ROBO_WREG(_robo, _dev, _page, _reg, _buf, _len) \ + robo_spi_write(_dev ? NULL : alta_eth_spi_ctrl, \ + (_page << 8) | (_reg), _buf, _len) + +#else /* !ALTA_ROBO_SPI */ + +#if defined(KEYSTONE) || defined(IPROC_CMICD) +#define ROBO_RREG(_robo, _dev, _page, _reg, _buf, _len) \ + robo_rreg(_robo, _dev, _page, _reg, _buf, _len) +#define ROBO_WREG(_robo, _dev, _page, _reg, _buf, _len) \ + robo_wreg(_robo, _dev, _page, _reg, _buf, _len) +#else +#define ROBO_RREG(_robo, _dev, _page, _reg, _buf, _len) +#define ROBO_WREG(_robo, _dev, _page, _reg, _buf, _len) +#endif + +#endif /* ALTA_ROBO_SPI */ + +#endif /* BCM_ROBO_SUPPORT */ + +/* Broadcom BCM4704 */ +#define BCM4704_VENDOR_ID 0x14E4 +#define BCM4704_DEVICE_ID 0x4704 + +/* SiByte PCI Host */ +#define SIBYTE_PCI_VENDOR_ID 0x166D +#define SIBYTE_PCI_DEVICE_ID 0x0001 + +/* Intel 21150 PCI-PCI Bridge */ +#define DC21150_VENDOR_ID 0x1011 +#define DC21150_DEVICE_ID 0x0022 + +/* HiNT HB4 PCI-PCI Bridge (21150 clone) */ +#define HINT_HB4_VENDOR_ID 0x3388 +#define HINT_HB4_DEVICE_ID 0x0022 + +/* Pericom PI7C8150 PCI-PCI Bridge (21150 clone) */ +#define PI7C8150_VENDOR_ID 0x12D8 +#define PI7C8150_DEVICE_ID 0x8150 + +/* Pericom PI7C9X130 PCI-PCIE Bridge */ +#define PCI_VNDID_PERICOM 0x12D8 +#define PCI_DEVID_PI7C9X130 0xE130 +#define DEV_CTRL_REG 0xb8 + +#define MAX_PAYLOAD_256B (1 << 5) +#define MAX_PAYLOAD_512B (2 << 5) +#define MAX_READ_REQ_256B (1 << 12) + + +/* Freescale 8548 PCI-E host Bridge */ +#define FSL_VENDOR_ID 0x1957 +#define FSL8548PCIE_DEVICE_ID 0x0013 +#define FSL2020EPCIE_DEVICE_ID 0x0070 +#define FSL8548PCIE_DEV_CTRL_REG 0x54 + +/* 4716 PCI-E host Bridge */ +#define BCM4716_VENDOR_ID 0x14e4 +#define BCM4716PCIE_DEVICE_ID 0x4716 +#define BCM4716PCIE_DEV_CAP_REG 0xd4 +#define BCM4716PCIE_DEV_CTRL_REG 0xd8 +#define BCM53000_VENDOR_ID 0x14e4 +#define BCM53000PCIE_DEVICE_ID 0x5300 + +#define BCM53000PCIE_DEV(port) ((port == 0) ? pcie0 : pcie1) +#define BCM53000PCIE_BASE(port) ((port == 0) ? 0xb8005000 : 0xb800e000) +#define BCM53000PCIE_FUNC0_COFIG_SPACE 0x400 +#define BCM53000PCIE_SROM_SPACE 0x800 +#define BCM53000PCIE_DEV_CAP_REG 0xd4 +#define BCM53000PCIE_DEV_CTRL_REG 0xd8 +#define BCM53000PCIE_MAX_PAYLOAD_MASK 0x7 +#define BCM53000PCIE_CAP_MAX_PAYLOAD_256B (1 << 0) +#define BCM53000PCIE_DEFAULT_STATUS 0x00100146 + +/* 16bit wide register. offset 14, 14*2 = 0x1c */ +#define BCM53000PCIE_SPROM_OFFSET 0x1c +/* bit 15:13 spromData.MaxPayloadSize. 1: 256 bytes */ +#define BCM53000PCIE_SPROM_MAX_PAYLOAD_MASK 0xe000 +#define BCM53000PCIE_SPROM_MAX_PAYLOAD_256B (1 << 13) + + +/* Intel 21150, HiNT HB4 and other 21150-compatible */ +#define PCI_CFG_DEC21150_SEC_CLK 0x68 + +#define BCM4704_ENUM_BASE 0x18000000 +#define BCM4704_MEMC_BASE (BCM4704_ENUM_BASE+0x8000) +#define BCM4704_MEMC_PRIORINV 0x18 + +/* PLX PCI-E Switch */ +#define PLX_PEX8608_DEV_ID 0x8608 +#define PLX_PEX8617_DEV_ID 0x8617 +#define PLX_PEX86XX_DEV_CTRL_REG 0x70 + +/* Broadcom BCM58525 */ +#define BCM58525_PCI_VENDOR_ID 0x14E4 +#define BCM58525_PCI_DEVICE_ID 0x8025 +#define BCM58522_PCI_DEVICE_ID 0x8022 + +/* Broadcom BCM58712 */ +#define BCM58712_PCI_VENDOR_ID 0x14E4 +#define BCM58712_PCI_DEVICE_ID 0x168E + +static uint32_t _read(int d, uint32_t addr); + +#ifdef BCM_ICS +#else +/* Used to determine overall memory limits across all devices */ +static uint32_t _pci_mem_start = 0xFFFFFFFF; +static uint32_t _pci_mem_end = 0; + +/* Used to control MSI interrupts */ +static int use_msi = 0; +#endif + +#ifdef BCM_PLX9656_LOCAL_BUS + +#define CPLD_OFFSET 0x00800000 +#define CPLD_REVISION_REG 0x0000 +#define CPLD_REVISION_MASK 0xffff +#define CPLD_RESET_REG 0x0004 +#define CPLD_RESET_NONE 0x0000 + +#define PL0_OFFSET 0x00800000 +#define PL0_SIZE 0x00040000 +#define PL0_REVISION_REG 0x0000 + +/* Assume there's only one PLX PCI-to-Local bus bridge if any */ +static bde_ctrl_t plx_ctrl; +static int num_plx = 0; + +#endif /* BCM_PLX9656_LOCAL_BUS */ + +static spinlock_t bus_lock; + +static int +_parse_eb_args(char *str, char * format, ...) + __attribute__ ((format (scanf, 2, 3))); + +static int +_parse_eb_args(char *str, char * format, ...) +{ + va_list args; + + va_start(args, format); + vsscanf(str, format, args); + va_end(args); + + return 0; +} + +static int +_eb_device_create(resource_size_t paddr, int irq, int rd_hw, int wr_hw) +{ + bde_ctrl_t *ctrl; + uint32 dev_rev_id = 0x0, dev_id; + + dev_id = _ndevices; + + ctrl = _devices + _ndevices++; + _switch_ndevices++; + + ctrl->dev_type |= BDE_EB_DEV_TYPE | BDE_SWITCH_DEV_TYPE; + ctrl->pci_device = NULL; /* No PCI bus */ + + if(rd_hw) { + ctrl->dev_type |= BDE_DEV_BUS_RD_16BIT; + } + + if (wr_hw) { + ctrl->dev_type |= BDE_DEV_BUS_WR_16BIT; + } + + /* Map in the device */ + ctrl->bde_dev.base_address = (sal_vaddr_t)IOREMAP(paddr, 0x10000); + ctrl->phys_address = paddr; + + dev_rev_id = _read(dev_id, 0x178); /* CMIC_DEV_REV_ID */ + + ctrl->bde_dev.device = dev_rev_id & 0xFFFF; + ctrl->bde_dev.rev = (dev_rev_id >> 16) & 0xFF; + + ctrl->iLine = irq; + ctrl->isr = NULL; + ctrl->isr_data = NULL; + + gprintk("Created EB device at BA=%x IRQ=%d RD16=%d WR16=%d device=0x%x\n", + (unsigned int)paddr, irq, rd_hw, wr_hw, ctrl->bde_dev.device); + + return 0; +} + +#if defined(BCM_PETRA_SUPPORT) || defined(BCM_DFE_SUPPORT) || defined(BCM_DNX_SUPPORT) || defined(BCM_DNXF_SUPPORT) + +#include + +static int +sand_device_create(void) +{ + bde_ctrl_t* ctrl; + + ctrl = _devices; /* FIX_ME: on petra, take first device */ + +#ifndef __DUNE_LINUX_BCM_CPU_PCIE__ + _switch_ndevices++; + _ndevices++; + + ctrl->dev_type |= BDE_PCI_DEV_TYPE | BDE_SWITCH_DEV_TYPE; + ctrl->pci_device = NULL; /* No PCI bus */ + + /* Map in the device */ /* FIX_ME: not realy map anything */ + ctrl->bde_dev.base_address = (sal_vaddr_t)IOREMAP(0x40000000, 0x100000); + ctrl->phys_address = 0x40000000; + + ctrl->iLine = 0; + ctrl->isr = NULL; + ctrl->isr_data = NULL; + + ctrl->bde_dev.device = BCM88950_DEVICE_ID; + ctrl->bde_dev.rev = BCM88950_A0_REV_ID; +#endif + + /* Map CPU regs */ +#ifdef __DUNE_WRX_BCM_CPU__ + cpu_address = IOREMAP(0x18000000, 0x4000000); +#elif defined(__DUNE_GTO_BCM_CPU__) + cpu_address = IOREMAP(0xe0000000, 0x100000); +#endif + + if ((ctrl->bde_dev.device == PCP_PCI_DEVICE_ID)) { + ctrl->bde_dev.device = GEDI_DEVICE_ID; + ctrl->bde_dev.rev = GEDI_REV_ID; + } + + if ((ctrl->bde_dev.device == ACP_PCI_DEVICE_ID)) { + ctrl->dev_type |= BDE_PCI_DEV_TYPE | BDE_SWITCH_DEV_TYPE; + } + + return 0; +} +#endif + +#ifdef IPROC_CMICD +static void +iproc_cmicd_get_irqres(ibde_dev_t bde_dev, struct resource *res_irq) +{ + shbde_iproc_config_t iproc_config, *icfg = &iproc_config; + + /* iProc configuration parameters */ + memset(icfg, 0, sizeof(*icfg)); + shbde_iproc_config_init(icfg, bde_dev.device, bde_dev.rev); + + if ((icfg->iproc_ver == 0) && (debug >= 1)) { + gprintk("Unable to determine iProc version\n"); + } + + if (icfg->iproc_ver == 7) { + res_irq->start = 221; + } else if (icfg->iproc_ver == 10) { + res_irq->start = 184; + } + +} + +#include +#include + +extern void iproc_platform_driver_register(struct platform_driver *drv); +extern void iproc_platform_driver_unregister(struct platform_driver *drv); +extern void iproc_platform_device_register(struct platform_device *drv); +extern void iproc_platform_device_unregister(struct platform_device *drv); + +extern struct resource * +iproc_platform_get_resource(struct platform_device *dev, unsigned int type, + unsigned int num); + +#define IPROC_CHIPCOMMONA_BASE 0x18000000 +#define IPROC_CMICD_BASE 0x48000000 +#define IPROC_CMICD_SIZE 0x40000 +#define IPROC_CMICD_INT 194 + +#define IPROC_CMICD_COMPATIBLE "brcm,iproc-cmicd" + +static int +iproc_cmicd_probe(struct platform_device *pldev) +{ + bde_ctrl_t *ctrl; + uint32 size, dev_rev_id; + struct resource *memres, *irqres; +#ifdef CONFIG_OF + if (debug >= 1) { + gprintk("iproc_cmicd_probe %s\n", pldev->dev.of_node ? "with device node":""); + } +#endif + memres = iproc_platform_get_resource(pldev, IORESOURCE_MEM, 0); + if (memres == NULL) { + gprintk("Unable to retrieve iProc CMIC resources"); + return -1; + } + size = memres->end - memres->start + 1; + + ctrl = _devices + _ndevices++; + _switch_ndevices++; + + ctrl->dev_type = BDE_AXI_DEV_TYPE | BDE_SWITCH_DEV_TYPE | BDE_256K_REG_SPACE; + ctrl->pci_device = NULL; /* No PCI bus */ + + /* Map CMIC block in the AXI memory space into CPU address space */ + ctrl->bde_dev.base_address = (sal_vaddr_t)IOREMAP(memres->start, size); + if (!ctrl->bde_dev.base_address) { + gprintk("Error mapping iProc CMIC registers"); + return -1; + } + ctrl->phys_address = memres->start; + + /* Read switch device ID from CMIC */ + dev_rev_id = *((uint32_t*)(ctrl->bde_dev.base_address + 0x10224)); +#if defined(BCM_CMICM_SUPPORT) && defined(BE_HOST) + ctrl->bde_dev.device = ( (((dev_rev_id >> 16) & 0xff) << 8) | + ((dev_rev_id >> 24) & 0xff)); + ctrl->bde_dev.rev = (dev_rev_id >> 8) & 0xff ; +#else + ctrl->bde_dev.device = dev_rev_id & 0xffff; + ctrl->bde_dev.rev = (dev_rev_id >> 16) & 0xff; +#endif + +#ifdef CONFIG_OF + if (!pldev->dev.of_node) +#endif + { + /* Assign locally if not available from device node */ + iproc_cmicd_get_irqres(ctrl->bde_dev, &pldev->resource[0]); + } + irqres = iproc_platform_get_resource(pldev, IORESOURCE_IRQ, 0); + + ctrl->iLine = irqres->start; + + ctrl->isr = NULL; + ctrl ->isr_data = NULL; + +#ifdef LINUX_BDE_DMA_DEVICE_SUPPORT + ctrl->dma_dev = &pldev->dev; +#endif + + /* Let's boogie */ + return 0; +} + +static int +iproc_cmicd_remove(struct platform_device *pldev) +{ + return 0; +} +#ifdef CONFIG_OF +static const struct of_device_id iproc_cmicd_of_match[] = { + { .compatible = "brcm,iproc-cmicd" }, + {}, +}; +MODULE_DEVICE_TABLE(of, iproc_cmicd_of_match); +#endif +static char iproc_cmicd_string[] = "bcmiproc-cmicd"; + +static struct platform_driver iproc_cmicd_driver = +{ + .probe = iproc_cmicd_probe, + .remove = iproc_cmicd_remove, + .driver = + { + .name = iproc_cmicd_string, + .owner = THIS_MODULE, +#ifdef CONFIG_OF + .of_match_table = iproc_cmicd_of_match, +#endif + }, +}; + +typedef enum { + IPROC_CMICD_RES_INTR = 0, + IPROC_CMICD_RES_MEM +} IPROC_CMICD_RES_E; + +static struct resource iproc_cmicd_resources[] = { + [IPROC_CMICD_RES_INTR] = { + .flags = IORESOURCE_IRQ, + .start = IPROC_CMICD_INT, + }, + [IPROC_CMICD_RES_MEM] = { + .flags = IORESOURCE_MEM, + .start = IPROC_CMICD_BASE, + .end = IPROC_CMICD_BASE+IPROC_CMICD_SIZE-1, + }, +}; + +static void +iproc_cmicd_release(struct device *dev) +{ +} + +static u64 iproc_cmicd_dmamask = DMA_BIT_MASK(32); + +static struct platform_device iproc_cmicd_pdev = { + .name = iproc_cmicd_string, + .id = 0, + .dev = { + .release = iproc_cmicd_release, + .init_name = iproc_cmicd_string, + .dma_mask = &iproc_cmicd_dmamask, + .coherent_dma_mask = DMA_BIT_MASK(32), + }, + .resource = iproc_cmicd_resources, + .num_resources = ARRAY_SIZE(iproc_cmicd_resources), +}; + +static int +iproc_has_cmicd(void) +{ + void *iproc_cca_base; + uint32 cca_cid; + + /* Read ChipcommonA chip id register to identify current SOC */ + iproc_cca_base = IOREMAP(IPROC_CHIPCOMMONA_BASE, 0x3000); + if (iproc_cca_base == NULL) { + gprintk("iproc_has_cmicd: ioremap of ChipcommonA registers failed"); + return 0; + } + cca_cid = readl((uint32 *)iproc_cca_base); + cca_cid &= 0xffff; + iounmap(iproc_cca_base); + + /* Only allowed accessing CMICD module if the SOC has it */ + switch (cca_cid) { + case BCM53010_CHIP_ID: + case BCM53018_CHIP_ID: + case BCM53020_CHIP_ID: + return 0; + default: + break; + } + + /* Device has CMIC */ + return 1; +} + +#define IPROC_CHIPCOMMONA_EROM_PTR_OFFSET (0x180000fc) +#define EROM_MAX_SIZE (0x1000) +#define EROM_PARTNUM_CMICD (0x14) + +#define EROM_DESC_COMPIDENT (0x1) +#define EROM_DESC_MASTER (0x3) +#define EROM_DESC_ADDR (0x5) +#define EROM_DESC_END (0xF) +#define EROM_DESC_EMPTY (0) + +#define EROM_IS_DESC_COMPIDENT(x) ((x & 0x7) == EROM_DESC_COMPIDENT) +#define EROM_IS_DESC_MASTER(x) ((x & 0x7) == EROM_DESC_MASTER) +#define EROM_IS_DESC_ADDR(x) ((x & 0x7) == EROM_DESC_ADDR) +#define EROM_IS_DESC_END(x) ((x & 0xF) == EROM_DESC_END) + +#define EROM_GET_PARTNUM(x) ((x >> 8) & (0xFFF)) /* Bit 8~19 */ +#define EROM_GET_ADDRESS(x) ((x >> 12) & (0xFFFFF)) /* Bit 12~31 */ +#define EROM_GET_SIZETYPE(x) ((x >> 4) & (0x3)) /* Bit 4~5 */ +#define EROM_GET_AG32(x) ((x >> 3) & (0x1)) /* Bit 3 */ +#define EROM_GET_SIZE(x) ((x >> 12) & (0xFFFFF)) /* Bit 12~31 */ +#define EROM_GET_SG32(x) ((x >> 3) & (0x1)) /* Bit 3 */ + +#define EROM_ADDR_SIZETYPE_4K (0) +#define EROM_ADDR_SIZETYPE_8K (1) +#define EROM_ADDR_SIZETYPE_16K (2) +#define EROM_ADDR_SIZETYPE_MORE (3) + +#define EROM_ADDR_FLAG_AG32 (1) /* Address space greater than 32 bit */ +#define EROM_ADDR_FLAG_SIZE (2) /* Addition size descriptor */ +#define EROM_ADDR_FLAG_SG32 (4) /* Size descriptor greater than 32 bit */ + +static void +iproc_cmicd_get_memregion(struct resource *res_mem) +{ + void *erom_ptr_oft; + uint32_t erom_phy_addr; + uint32_t *erom_base; + uint32_t i = 0; + uint32_t word = 0; + uint8_t more_addr_word = 0; /* bit 0: AG32; bit 1: SIZE; bit 2: SG32 */ + uint8_t found_cmicd_dev = 0; + uint8_t size_type = 0; + bool is_compident_a = 1; /* 1: CompidentA; o/w: CompidentB */ + + erom_ptr_oft = IOREMAP(IPROC_CHIPCOMMONA_EROM_PTR_OFFSET, 0x100); + + erom_phy_addr = readl((uint32 *)(erom_ptr_oft)); + iounmap(erom_ptr_oft); + + erom_base = IOREMAP(erom_phy_addr, EROM_MAX_SIZE); + + while (1) { + word = readl((uint32 *)(erom_base + i)); + + if (EROM_IS_DESC_ADDR(word) || more_addr_word) { + if (more_addr_word == 0) { /* Normal Addr Desc */ + if (EROM_GET_AG32(word) == 1) { + more_addr_word |= EROM_ADDR_FLAG_AG32; + } + + size_type = EROM_GET_SIZETYPE(word); + if (size_type == EROM_ADDR_SIZETYPE_MORE) { + more_addr_word |= EROM_ADDR_FLAG_SIZE; + } + + if (found_cmicd_dev == 1) { + res_mem->start = EROM_GET_ADDRESS(word) << 12; + if (size_type < EROM_ADDR_SIZETYPE_MORE) { + res_mem->end = res_mem->start + 4096 * (1 << size_type) - 1; + } + } + } + else if (more_addr_word & EROM_ADDR_FLAG_AG32) { /* UpperAddr Desc */ + more_addr_word &= ~EROM_ADDR_FLAG_AG32; + + if (found_cmicd_dev == 1) { + /* res_mem->start |= word << 32; */ + gprintk("Expect cmicd address to be 32-bit\n"); + } + } + else if (more_addr_word & EROM_ADDR_FLAG_SIZE) { /* Size Desc */ + if (EROM_GET_SG32(word) == 1) { + more_addr_word |= EROM_ADDR_FLAG_SG32; + } + + more_addr_word &= ~EROM_ADDR_FLAG_SIZE; + + if (found_cmicd_dev == 1) { + res_mem->end = res_mem->start + (EROM_GET_SIZE(word) << 12) - 1; + } + } + else if (more_addr_word & EROM_ADDR_FLAG_SG32) { /* UpperSize Desc */ + more_addr_word &= ~EROM_ADDR_FLAG_SG32; + + if (found_cmicd_dev == 1) { + /* res_mem->end += (word) << 32; */ + gprintk("Expect cmicd size to be 32-bit\n"); + } + } + + if (found_cmicd_dev == 1 && more_addr_word == 0) { + break; /* We have gotten all necessary information, exit the loop */ + } + } + else if (EROM_IS_DESC_COMPIDENT(word)) { + if (is_compident_a == 1) { + if (EROM_GET_PARTNUM(word) == EROM_PARTNUM_CMICD) { + found_cmicd_dev = 1; + } + } + + is_compident_a = 1 - is_compident_a; + } + else if (EROM_IS_DESC_END(word)) { + break; + } + + i++; + } + iounmap(erom_base); + + if (debug >= 1) { + gprintk("CMICD info by %s: cmicd_mem.start=%x, cmicd_mem.end=%x\n", + found_cmicd_dev ? "EROM" : "Default", + iproc_cmicd_resources[IPROC_CMICD_RES_MEM].start, + iproc_cmicd_resources[IPROC_CMICD_RES_MEM].end); + } +} +#endif /* IPROC_CMICD */ + +#ifdef BCM_ICS +static int +_ics_bde_create(void) +{ + bde_ctrl_t *ctrl; + uint32 dev_rev_id = 0x0; + resource_size_t paddr; + + if (_ndevices == 0) { + ctrl = _devices + _ndevices++; + _switch_ndevices++; + + ctrl->dev_type |= BDE_ICS_DEV_TYPE | BDE_SWITCH_DEV_TYPE; + ctrl->pci_device = NULL; /* No PCI bus */ + + /* Map in the device */ + paddr = BCM_ICS_CMIC_BASE; + ctrl->bde_dev.base_address = (sal_vaddr_t)IOREMAP(paddr, 0x10000); + ctrl->phys_address = paddr; + + dev_rev_id = *((unsigned int *)(KSEG1ADDR(paddr + 0x178))); + + ctrl->bde_dev.device = dev_rev_id & 0xFFFF; + ctrl->bde_dev.rev = (dev_rev_id >> 16) & 0xFF; + + ctrl->iLine = 5; /* From raptor linux BSP */ + + ctrl->isr = NULL; + ctrl->isr_data = NULL; + printk("Created ICS device ..%x\n", ctrl->bde_dev.base_address); + } + + return 0; +} + +#else /* !BCM_ICS */ + +extern struct pci_bus *pci_find_bus(int domain, int busnr); + +/* + * PCI device table. + * Populated from the include/soc/devids.h file. + */ + +static struct pci_device_id _id_table[] = { + { BROADCOM_VENDOR_ID, BCM5675_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM5676_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56218X_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56218_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56219_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56218R_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56219R_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56214_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56215_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56214R_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56215R_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56216_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56217_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56212_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56213_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56230_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56231_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53718_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53714_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53716_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56018_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56014_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56224_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56225_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56226_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56227_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56228_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56229_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56024_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56025_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53724_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53726_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56100_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56101_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56102_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56105_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56106_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56107_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56110_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56111_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56112_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56115_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56116_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56117_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56300_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56301_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56302_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56303_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56304_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56404_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56305_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56306_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56307_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56308_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56309_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56310_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56311_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56312_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56313_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56314_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56315_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56316_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56317_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56318_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56319_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, +#ifndef EXCLUDE_BCM56324 + { BROADCOM_VENDOR_ID, BCM56322_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56324_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, +#endif /* EXCLUDE_BCM56324 */ + { BROADCOM_VENDOR_ID, BCM53312_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53313_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53314_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53324_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53333_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53334_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53342_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53343_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53344_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53346_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53347_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53393_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53394_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53300_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53301_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53302_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56500_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56501_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56502_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56503_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56504_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56505_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56506_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56507_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56508_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56509_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56510_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56511_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56512_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56513_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56514_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56516_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56517_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56518_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56519_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56580_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56620_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56624_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56626_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56628_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56629_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56680_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56684_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56700_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56701_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56720_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56721_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56725_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56800_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56801_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56802_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56803_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56820_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56821_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56822_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56823_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56825_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56630_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56634_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56636_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56638_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56639_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56538_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56520_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56521_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56522_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56524_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56526_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56534_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56685_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56689_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56331_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56333_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56334_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56338_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56320_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56321_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56132_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56134_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88732_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56140_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56142_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56143_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56144_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56146_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56147_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56149_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56150_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56151_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56152_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56613_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56930_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56931_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56935_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56936_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56939_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56840_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56841_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56842_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56843_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56844_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56845_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56846_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56847_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56549_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56053_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56838_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56831_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56835_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56849_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56742_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56743_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56744_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56745_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56746_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56640_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56548_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56547_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56346_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56345_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56344_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56342_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56340_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56049_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56048_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56047_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56042_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56041_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56040_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56643_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56644_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56648_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56649_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56540_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56541_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56542_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56543_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56544_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56545_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56546_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56044_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56045_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56046_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88230_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88030_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88034_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88039_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88231_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88235_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88236_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88239_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM55440_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56440_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56441_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56442_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56443_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56445_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56446_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56447_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56448_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56449_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56240_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56241_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56242_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56243_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56245_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56246_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM55450_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM55455_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56260_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56270_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56271_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56272_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53460_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53461_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56261_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56262_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56263_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56265_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56266_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56267_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56268_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56233_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56460_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56461_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56462_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56463_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56465_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56466_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56467_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56468_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56246_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56248_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56450_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56452_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56454_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56455_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56456_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56457_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56458_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56850_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56851_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56852_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56853_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56854_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56855_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56834_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56750_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56830_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM55440_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM55441_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56060_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56062_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56063_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56064_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56065_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56066_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53401_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53411_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53402_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53412_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53403_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53413_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53404_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53414_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53405_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53415_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53406_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53416_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53408_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53418_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53454_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53455_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53456_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53457_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53422_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53424_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53426_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53365_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53369_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56960_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56961_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56962_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56963_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56930_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56968_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56970_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56971_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56972_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56974_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56168_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56169_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56560_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56561_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56562_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56565_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56566_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56567_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56568_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56760_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56762_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56764_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56765_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56766_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56768_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56069_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56068_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56160_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56162_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56163_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56164_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56166_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53440_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53443_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53442_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53434_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56965_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56969_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56966_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56967_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56170_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56172_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56174_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53570_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53575_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, +#ifdef BCM_ROBO_SUPPORT + { BROADCOM_VENDOR_ID, BCM47XX_ENET_ID, PCI_ANY_ID, PCI_ANY_ID }, +#ifdef KEYSTONE + { BROADCOM_VENDOR_ID, BCM53000_GMAC_ID, PCI_ANY_ID, PCI_ANY_ID }, +#endif +#endif + { SANDBURST_VENDOR_ID, QE2000_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { SANDBURST_VENDOR_ID, BCM88020_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { SANDBURST_VENDOR_ID, BCM88025_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { PCI_VENDOR_ID_PLX, PCI_DEVICE_ID_PLX_9656, PCI_ANY_ID, PCI_ANY_ID }, + { PCI_VENDOR_ID_PLX, PCI_DEVICE_ID_PLX_9056, PCI_ANY_ID, PCI_ANY_ID }, + { BCM53000_VENDOR_ID, BCM53000PCIE_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, +#ifdef BCM_PETRA_SUPPORT + { BROADCOM_VENDOR_ID, BCM88650_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88350_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88351_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88450_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88451_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88550_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88551_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88552_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88651_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88654_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { PCP_PCI_VENDOR_ID, PCP_PCI_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { ACP_PCI_VENDOR_ID, ACP_PCI_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88660_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88670_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88671_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88671M_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88672_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88673_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88674_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88675_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88675M_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88676_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88676M_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88677_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88678_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88679_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88370_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88371_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88371M_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88375_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88470_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88470P_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88471_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88473_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88474_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88474H_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88476_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88477_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + + + { BROADCOM_VENDOR_ID, BCM88270_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88272_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88273_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88278_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + + { BROADCOM_VENDOR_ID, BCM8206_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + + { BROADCOM_VENDOR_ID, BCM88376_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88376M_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88377_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88378_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88379_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88680_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88681_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88682_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88683_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88684_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88685_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88380_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88381_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88690_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88202_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88360_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88361_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88363_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88460_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88461_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88560_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88561_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88562_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88661_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88664_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, +#endif +#ifdef BCM_DFE_SUPPORT + { BROADCOM_VENDOR_ID, BCM88750_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88753_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88755_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88770_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88773_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88774_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88775_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88776_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88777_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, +#ifndef DNX_IGNORE_FE3200 + { BROADCOM_VENDOR_ID, BCM88950_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, +#endif + { BROADCOM_VENDOR_ID, BCM88953_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88954_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88955_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88956_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88752_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88772_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88952_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, +#endif +#ifdef BCM_DNXF_SUPPORT + { BROADCOM_VENDOR_ID, BCM88790_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, +#endif + { BROADCOM_VENDOR_ID, BCM56860_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56861_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56862_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56864_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56865_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56866_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56867_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56868_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56833_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56832_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56836_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56870_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56873_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { 0, 0, 0, 0 } +};; + +#define pci_bus_b(n) list_entry(n, struct pci_bus, node) +#define pci_dev_b(n) list_entry(n, struct pci_dev, bus_list) +#define MAX_RC_NUM 4 + +static struct pci_bus * +pci_do_bus_find(struct pci_bus* bus, int rc, int vendor, int device) +{ + struct list_head *tmp; + struct pci_dev *dev; + struct pci_bus *sub_bus; + int func = 0; + + if (unlikely(list_empty(&bus->children))) { + return NULL; + } + list_for_each(tmp, &bus->children) { + sub_bus = pci_bus_b(tmp); + dev = sub_bus->self; + func = dev->devfn & 0x7; + if (dev->vendor == vendor && dev->device == device && rc == func) { + if (debug >= 1) { + gprintk("pci_do_bus_find: dev->vendor = 0x%x, dev->device = 0x%x on rc(%d)\n", + dev->vendor, dev->device, rc); + } + return sub_bus; + } + } + return NULL; +} + +static struct pci_dev * +_pci_do_bus_dev_find(struct pci_bus* bus, unsigned int vendor, unsigned int device) +{ + struct list_head *tmp; + struct pci_dev *dev; + + if (unlikely(list_empty(&bus->devices))) { + return NULL; + } + list_for_each(tmp, &bus->devices) { + dev = pci_dev_b(tmp); + if (dev->vendor == vendor && (device == PCI_ANY_ID || dev->device == device)) { + if (debug >= 1) { + gprintk("_pci_do_rc_dev_find: vendor = %x, device = %x\n", vendor, device); + } + return dev; + } + } + return NULL; +} + +static struct pci_dev * +pci_do_rc_dev_find(int rc) +{ + struct pci_bus *root_bus = pci_find_bus(0,0); + struct pci_bus *bus_rc = NULL; + struct pci_dev *dev_on_rc = NULL; + unsigned int pci_dev_id = 0; + + if(NULL == root_bus) { + if (debug >= 1) gprintk("Not find root bus\n"); + return NULL; + } + bus_rc = pci_do_bus_find(root_bus, rc, 0x184e, 0x1004); + if (NULL == bus_rc) { + if (debug >= 1) { + gprintk("Not find vendor(0x184e) device(0x1004) bus\n"); + } + return NULL; + } + for(pci_dev_id = 0; pci_dev_id < sizeof(_id_table)/sizeof(struct pci_device_id); pci_dev_id++) { + dev_on_rc = _pci_do_bus_dev_find(bus_rc, _id_table[pci_dev_id].vendor, _id_table[pci_dev_id].device); + if (NULL != dev_on_rc) { + return dev_on_rc; + } + } + if (debug >= 1) { + gprintk("Not find device at rc(%d)\n", rc); + } + return NULL; +} + +/* + * Function: p2p_bridge + * + * Purpose: + * Finalize initialization secondary PCI-PCI bridge. + * Parameters: + * membase - start of memory address space for secondary PCI bus + * Returns: + * 0 + * Notes: + * The membase depends on the processor architecture, and is + * derived from the memory space addresses set up by the kernel. + */ +static int +p2p_bridge(void) +{ + struct pci_dev *dev, *dev_on_rc; + uint16 cmd; + uint16 mem_base; + uint16 mem_limit; + uint8 bridge_ctrl; + uint8 rc_index; + + if ((dev = PCI_FIND_DEV(DC21150_VENDOR_ID, DC21150_DEVICE_ID, NULL)) != NULL || + (dev = PCI_FIND_DEV(HINT_HB4_VENDOR_ID, HINT_HB4_DEVICE_ID, NULL)) != NULL || + (dev = PCI_FIND_DEV(PI7C8150_VENDOR_ID, PI7C8150_DEVICE_ID, NULL)) != NULL) { + + if (debug >= 1) gprintk("fixing up PCI-to-PCI bridge\n"); + /* Adjust command register */ + pci_read_config_word(dev, PCI_COMMAND, &cmd); + cmd |= PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER; + /* Disable device */ + pci_write_config_word(dev, PCI_COMMAND, 0); + /* Initialize non-prefetchable memory window if needed */ + pci_read_config_word(dev, PCI_MEMORY_BASE, &mem_base); + if (mem_base == 0) { + mem_base = (uint16)((_pci_mem_start & 0xFFF00000) >> 16); + mem_limit = (uint16)((_pci_mem_end & 0xFFF00000) >> 16); + pci_write_config_word(dev, PCI_MEMORY_BASE, mem_base); + pci_write_config_word(dev, PCI_MEMORY_LIMIT, mem_limit); + } + /* Enable PCI clocks on remote end */ + pci_write_config_word(dev, PCI_CFG_DEC21150_SEC_CLK, 0); + /* Re-enable config space */ + pci_write_config_word(dev, PCI_COMMAND, cmd); + + /* Avoid DMA data corruption */ + if (dev->vendor == HINT_HB4_VENDOR_ID) { + /* Fix for HiNT bridge and BCM4704 DMA problem */ + if ((dev = PCI_FIND_DEV(BCM4704_VENDOR_ID, BCM4704_DEVICE_ID, NULL)) != NULL) { + /* Reset PrefetchEn (PE) */ + pci_write_config_dword(dev, 0x8c, 1); + if (debug >= 1) { + gprintk("reset PrefetchEn on BCM4704 when HiNT bridge is present\n"); + } + } + } + } + /* Enable fast back-to-back read/write */ + if ((dev = PCI_FIND_DEV(PI7C8150_VENDOR_ID, PI7C8150_DEVICE_ID, NULL)) != NULL) { + pci_read_config_word(dev, PCI_COMMAND, &cmd); + cmd |= PCI_COMMAND_FAST_BACK; + pci_read_config_byte(dev, PCI_BRIDGE_CONTROL, &bridge_ctrl); + bridge_ctrl |= PCI_BRIDGE_CTL_FAST_BACK; + pci_write_config_word(dev, PCI_COMMAND, 0); + pci_write_config_byte(dev, PCI_BRIDGE_CONTROL, bridge_ctrl); + pci_write_config_word(dev, PCI_COMMAND, cmd); + } + /* Netlogic XLP CPU */ + for(rc_index = 0; rc_index < MAX_RC_NUM; rc_index++) { + dev_on_rc = pci_do_rc_dev_find(rc_index); + if (dev_on_rc != NULL ) { + dev = PCI_FIND_DEV(0x184e, 0x1004, NULL); + if (dev != NULL ) { + pci_write_config_dword(dev,0x78,MAX_PAYLOAD_256B | + MAX_READ_REQ_256B); + } + } + } + if ((dev = PCI_FIND_DEV(0x14e4, 0xb634, NULL)) != NULL) { + pci_write_config_dword(dev,0x78,MAX_PAYLOAD_256B | + MAX_READ_REQ_256B); + } + + if ((dev = PCI_FIND_DEV(PCI_VNDID_PERICOM, PCI_DEVID_PI7C9X130, NULL)) != NULL) { + /* + * Configure the PCIE cap: Max payload size: 256, Max Read + * Request size: 256, disabling relax ordering. + * Writes to the PCIE capability device control register + */ + pci_write_config_dword(dev, DEV_CTRL_REG, + MAX_PAYLOAD_256B | MAX_READ_REQ_256B); + } + + if ((dev = PCI_FIND_DEV(FSL_VENDOR_ID, FSL8548PCIE_DEVICE_ID, NULL)) != NULL || + (dev = PCI_FIND_DEV(FSL_VENDOR_ID, FSL2020EPCIE_DEVICE_ID, NULL)) != NULL) { + /* + * Configure the PCIE cap: Max payload size: 256, Max Read + * Request size: 256, disabling relax ordering. + * Writes to the PCIE capability device control register + */ + pci_write_config_dword(dev, FSL8548PCIE_DEV_CTRL_REG, + MAX_PAYLOAD_256B | MAX_READ_REQ_256B); + } + if ((dev = PCI_FIND_DEV(BCM4716_VENDOR_ID, BCM4716PCIE_DEVICE_ID, NULL)) != NULL || + (dev = PCI_FIND_DEV(BCM53000_VENDOR_ID, BCM53000PCIE_DEVICE_ID, NULL)) != NULL) { + uint32 tmp, maxpayld, device_bmp=0, mask; + unsigned long addr; + uint16 tmp16, tmp161; + int i, bus0 = -1, bus1 = -1, port; + struct pci_dev *pcie0, *pcie1; + + pcie0 = dev; + bus0 = dev->bus->number; + if ((pcie1 = PCI_FIND_DEV(BCM53000_VENDOR_ID, BCM53000PCIE_DEVICE_ID, pcie0)) != NULL) { + bus1 = pcie1->bus->number; + } + + for(i = 0; i < _ndevices; i++) { + bde_ctrl_t *ctrl = _devices + i; + + mask = BDE_SWITCH_DEV_TYPE | BDE_PCI_DEV_TYPE; + if ((ctrl->dev_type & mask) == mask) { + if (ctrl->pci_device->bus->number == bus0) { + device_bmp |= 1 << 0; + } + if (ctrl->pci_device->bus->number == bus1) { + device_bmp |= 1 << 1; + } + } + } + + /* configure the PCIE cap: Max payload size: 256, Max Read + * Request size: 256, disabling relax ordering. + * Writes to the PCIE capability device control register + */ + + i = 0; + while(device_bmp) { + if (device_bmp & (1 << i)){ + port = i ; + pci_read_config_dword(BCM53000PCIE_DEV(port), + BCM53000PCIE_DEV_CAP_REG, &tmp); + maxpayld = (tmp & BCM53000PCIE_MAX_PAYLOAD_MASK); + if (debug >= 1) { + gprintk("port %d\n",port); + gprintk("DevCap (@%x): 0x%x%c\n", BCM53000PCIE_DEV_CAP_REG, tmp, + (maxpayld != BCM53000PCIE_CAP_MAX_PAYLOAD_256B) ? ' ':'\n'); + } + if (maxpayld != BCM53000PCIE_CAP_MAX_PAYLOAD_256B) { + addr = BCM53000PCIE_BASE(port); + addr |= (BCM53000PCIE_SROM_SPACE | BCM53000PCIE_SPROM_OFFSET); + tmp16 = *((uint16 *)addr); + if (debug >= 1){ + gprintk("addr %lx spromData.MaxPayloadSize: 0x%x\n", addr, tmp16); + } + mask = BCM53000PCIE_SPROM_MAX_PAYLOAD_MASK; + if ((tmp16 & mask) != BCM53000PCIE_SPROM_MAX_PAYLOAD_256B) { + tmp161 = (tmp16 & ~mask) | BCM53000PCIE_SPROM_MAX_PAYLOAD_256B; + *((uint16 *)addr) = tmp161; + if (debug >= 1) { + tmp16 = 0; + tmp16 = *((uint16 *)addr); + gprintk("Enable spromData.MaxPayloadSize to 1 (256 bytes): " + "0x%x (%s w/ 0x%x)\n", tmp161, + ((tmp16 & mask) == BCM53000PCIE_SPROM_MAX_PAYLOAD_256B) ? + "Success":"Fail", + tmp16); + } + } + pci_read_config_dword(BCM53000PCIE_DEV(port), + BCM53000PCIE_DEV_CAP_REG, &tmp); + if (debug >= 1){ + gprintk("DevCap (@%x): now is 0x%x\n\n", + BCM53000PCIE_DEV_CAP_REG, tmp); + } + } + + addr = BCM53000PCIE_BASE(port); + addr |= (BCM53000PCIE_FUNC0_COFIG_SPACE | BCM53000PCIE_DEV_CTRL_REG); + tmp16 = *((uint16 *)addr); + if (debug >= 1) { + gprintk("DevControl (@%x): 0x%x\n", BCM53000PCIE_DEV_CTRL_REG, tmp16); + } + if (!(tmp16 & MAX_PAYLOAD_256B) || !(tmp16 & MAX_READ_REQ_256B)) { + tmp161 = tmp16 | MAX_PAYLOAD_256B | MAX_READ_REQ_256B; + *((uint16 *)addr) = tmp161; + if (debug >= 1) { + tmp16 = 0; + tmp16 = *((uint16 *)addr); + gprintk("addr %lx Enable DevControl MaxPayloadSize to 1 (256 bytes): " + "0x%x (%s w/ 0x%x)\n", addr, tmp161, + (tmp16 & MAX_PAYLOAD_256B) ? "Success":"Fail", + tmp16); + gprintk("Enable DevControl MaxReadRequestSize to 1 (256 bytes): " + "0x%x (%s w/ 0x%x)\n\n", tmp161, + (tmp16 & MAX_READ_REQ_256B) ? "Success":"Fail", + tmp16); + } + } + device_bmp &= ~(1 << i); + } + i++; + } + } + + /* + * Configure max payload to 512 on all ports in the PLX8608/PLX8617. + * The device supports 128, 512, and 1024 max payload sizes. + */ + dev = NULL; + while ((dev = PCI_FIND_DEV(PCI_VENDOR_ID_PLX, PCI_ANY_ID, dev)) != NULL) { + if ((dev->device == PLX_PEX8608_DEV_ID) || + (dev->device == PLX_PEX8617_DEV_ID)) { + uint16 ctrl_reg; + pci_read_config_word(dev, PLX_PEX86XX_DEV_CTRL_REG, &ctrl_reg); + ctrl_reg = (ctrl_reg & ~(7<<5)) | MAX_PAYLOAD_512B; + pci_write_config_word(dev, PLX_PEX86XX_DEV_CTRL_REG, ctrl_reg); + } + } + return 0; +} + +#ifdef BCM_PLX9656_LOCAL_BUS + +#define PLX_LAS0_BA 0x00000004 /* LAS0 Local Base Address Remap */ +#define PLX_LAS1_BA 0x000000f4 /* LAS1 Local Base Address Remap */ +#define PLX_LAS_EN 0x00000001 /* Space Enable bit */ + +#define PLX_MMAP_PCIBAR0 0 /* Memory-Mapped Config (PCIBAR0) */ +#define PLX_LAS0_PCIBAR2 2 /* Local Address Space 0 (PCIBAR2) */ +#define PLX_LAS1_PCIBAR3 3 /* Local Address Space 1 (PCIBAR3) */ + +STATIC int +_plx_las_bar_get(struct pci_dev *dev) +{ + void *local_config_addr; + int bar = -1; + + local_config_addr = IOREMAP(pci_resource_start(dev, PLX_MMAP_PCIBAR0), + pci_resource_len(dev, PLX_MMAP_PCIBAR0)); + if (local_config_addr) { + uint32 las_remap_reg; + /* + * Make sure LAS0BA or LAS1BA is enabled before returning + * BAR that will be used to access the Local Bus + */ + las_remap_reg = ioread32(local_config_addr + PLX_LAS0_BA); + if (las_remap_reg & PLX_LAS_EN) { + bar = PLX_LAS0_PCIBAR2; + } else { + las_remap_reg = ioread32(local_config_addr + PLX_LAS1_BA); + if (las_remap_reg & PLX_LAS_EN) { + bar = PLX_LAS1_PCIBAR3; + } + } + } + iounmap(local_config_addr); + return bar; +} +#endif /* BCM_PLX9656_LOCAL_BUS */ + +static void +_shbde_log_func(int level, const char *str, int param) +{ + level = (level >= SHBDE_DBG) ? 1 : 0; + if (debug >= level) { + gprintk("%s (%d)\n", str, param); + } +} +/* + * Function: _device_rescan_validate + * + * Purpose: + * Check if the device is ever probed or not. + * Parameters: + * dev - Linux PCI device structure + * Returns: + * >= 0 : dev is ever probed + * reutrn value is the index point to the _devices[] + * -1 : dev is not probed before. + */ +static int +_device_rescan_validate(struct pci_dev *dev) +{ + bde_ctrl_t *ctrl; + int i; + + if (PCI_FUNC(dev->devfn) > 0) { + return -1; + } + ctrl = NULL; + for (i = 0; i < _ndevices; i ++) { + ctrl = _devices + i; + /* check the device id */ + if (dev->device == ctrl->bde_dev.device) { + /* check the bus number */ + if ((dev->bus)) { + if ((dev->bus->number == ctrl->bus_no) && + (pci_domain_nr(dev->bus) == ctrl->domain_no)) { + return i; + } + } + } + } + return -1; +} + +#ifdef CONFIG_PCI_MSI + +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,2,84)) +/** + * _pci_msix_table_size - return the number of device's MSI-X table entries + * @dev: pointer to the pci_dev data structure of MSI-X device function + */ +static int +_pci_msix_table_size(struct pci_dev *dev) +{ + int nr_entries = 0; + +#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,110)) + u16 control; + int pos; + + pos = pci_find_capability(dev, PCI_CAP_ID_MSIX); + if (pos) { + pci_read_config_word(dev, msi_control_reg(pos), &control); + nr_entries = msix_table_size(control); + } +#else +#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,14,0)) +{ + /* Pass large entry value to enable MSIX to get # of entires */ + struct msix_entry *entries; + entries = kmalloc(sizeof(struct msix_entry) * + PCI_MSIX_FLAGS_QSIZE, GFP_KERNEL); + if (entries != NULL) { + nr_entries = pci_enable_msix(dev, + entries, PCI_MSIX_FLAGS_QSIZE); + if (nr_entries < 0) { + nr_entries = 0; + } + kfree(entries); + } +} +#else + nr_entries = pci_msix_vec_count(dev); +#endif +#endif + + return nr_entries; +} +#endif + +static int +_msi_connect(bde_ctrl_t *ctrl) +{ + +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,2,84)) + int ret; + if (ctrl->use_msi == PCI_USE_INT_MSIX) { + int i; + ret = _pci_msix_table_size(ctrl->pci_device); + + if (ret == 0) { + /* MSI-X failed */ + gprintk("MSI-X not supported.\n"); + goto er_intx; + } + ctrl->entries = kcalloc(ret, sizeof(struct msix_entry)*ret, GFP_KERNEL); + + if (!ctrl->entries) { + goto er_intx; + } + /* We need only that much interrupt vecotrs */ + ctrl->msix_cnt = ret/4; + if (unlikely(debug > 1)) + gprintk("MSIX Table size = %d\n", ctrl->msix_cnt); + for (i = 0; i < ctrl->msix_cnt; i++) + ctrl->entries[i].entry = i; + + ret = pci_enable_msix(ctrl->pci_device, + ctrl->entries, ctrl->msix_cnt); + if (ret > 0) { + /* Not enough vectors available , Retry MSI-X */ + gprintk("Retrying with MSI-X interrupts = %d\n", ret); + ctrl->msix_cnt = ret; + ret = pci_enable_msix(ctrl->pci_device, + ctrl->entries, ctrl->msix_cnt); + if (ret != 0) + goto er_intx_free; + } else if (ret < 0) { + /* Error */ + goto er_intx_free; + } else { + gprintk("Enabled MSI-X interrupts = %d\n", ctrl->msix_cnt); + } + } +#endif + + if (ctrl->use_msi == PCI_USE_INT_MSI) { + if (pci_enable_msi(ctrl->pci_device) == 0) { + ctrl->iLine = ctrl->pci_device->irq; + } else { + /* MSI failed */ + gprintk("Failed to initialize MSI interrupts.\n"); + goto er_intx; + } + } else { + /* failed */ + gprintk("Not MSI/MSIC interrupt.\n"); + goto er_intx; + } + return 0; +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,2,84)) +er_intx_free: + gprintk("Failed to enable MSI-X interrupts = %d\n", ret); + kfree(ctrl->entries); +#endif +er_intx: + return -1; + +} + +static int +_msi_disconnect(bde_ctrl_t *ctrl) +{ +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,2,84)) + if (ctrl->use_msi == PCI_USE_INT_MSIX) { + pci_disable_msix(ctrl->pci_device); + kfree(ctrl->entries); + ctrl->msix_cnt = 0; + } +#endif + if (ctrl->use_msi == PCI_USE_INT_MSI) { + pci_disable_msi(ctrl->pci_device); + } else { + gprintk("MSI not used\n"); + } + return 0; +} + +#endif + + +static void +config_pci_intr_type(bde_ctrl_t *ctrl) +{ + +#ifdef CONFIG_PCI_MSI + int ret; + + ctrl->use_msi = use_msi; + if (unlikely(debug > 1)) + gprintk("%s: msi = %d\n", __func__, ctrl->use_msi); + +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,2,84)) + if (ctrl->use_msi == PCI_USE_INT_MSIX) { + /* check for support MSIX vector */ + ret = _pci_msix_table_size(ctrl->pci_device); + if (ret == 0) { + gprintk("%s: Zero MSIX table size\n", __func__); + ctrl->use_msi = PCI_USE_INT_MSI; + } + } +#endif + + if (ctrl->use_msi == PCI_USE_INT_MSI) { + /* check for support MSI vector */ + ret = pci_enable_msi(ctrl->pci_device); + if (ret < 0) { + ctrl->use_msi = PCI_USE_INT_INTX; + gprintk("%s: Failed to enable MSI\n", __func__); + } else { + pci_disable_msi(ctrl->pci_device); + } + } +#else + ctrl->use_msi = PCI_USE_INT_INTX; +#endif +} + +/* + * Function: _pci_probe + * + * Purpose: + * Device initialization callback used by the Linux PCI + * subsystem. Called as a result of pci_register_driver(). + * Parameters: + * dev - Linux PCI device structure + * Returns: + * 0 + */ +static int +_pci_probe(struct pci_dev *dev, const struct pci_device_id *ent) +{ + bde_ctrl_t *ctrl; + resource_size_t paddr; + uint16 cmd = 0; + uint32 bar_len; + int cmic_bar; + int baroff = 0; + int iproc = 0; + uint32 gmac_base = 0; + int plx_dev = 0; + int eth_dev = 0; + int cpu_dev = 0; + int update_devid = 0; + int paxb_core = 0; + int rescan = 0, rescan_idx = -1; + shbde_hal_t shared_bde, *shbde = &shared_bde; + + if (debug >= 4) {gprintk("probing: vendor_id=0x%x, device_id=0x%x\n", dev->vendor, dev->device);} + if (nodevices == 1) { + return 0; + } + + /* Initialize Linux hardware abstraction for shared BDE functions */ + linux_shbde_hal_init(shbde, _shbde_log_func); + + /* + * If an AXI-based switch device has been found already, then it means + * that the AXI bus has been probed, and that we should ignore devices + * found on PCI bus zero. + */ + +#if defined(IPROC_CMICD) + if ((dev->bus) && (dev->bus->number == 0)) { + int i; + uint32 mask = BDE_SWITCH_DEV_TYPE | BDE_AXI_DEV_TYPE; + + for (i = 0; i < _ndevices; i++) { + ctrl = _devices + i; + + if ((ctrl->dev_type & mask) == mask) { + return 0; + } + } + } +#endif /* IPROC_CMICD */ + + /* + * Note that a few supported devices have a non-Broadcom PCI vendor ID, + * but since none of their associated PCI device IDs collide with the + * Broadcom device IDs, the probe code below only checks the device ID. + */ + + switch (dev->device) { + case PCI_DEVICE_ID_PLX_9056: +#ifdef DNX_TEST_BOARD + break; /* a PCIe bridge to a non PCIe device should be treated as the device */ +#endif /* DNX_TEST_BOARD */ + case PCI_DEVICE_ID_PLX_9656: + plx_dev = 1; + break; +#if defined (BCM_ROBO_SUPPORT) && defined(KEYSTONE) + case BCM53000_GMAC_ID: + eth_dev = 1; + gmac_base = SB_ENUM_BASE; + break; +#endif +#if defined (BCM_ROBO_SUPPORT) + case BCM47XX_ENET_ID: + eth_dev = 1; + break; +#endif + case BCM53000PCIE_DEVICE_ID: + cpu_dev = 1; + break; + /* + * The device ID for 56500, 56100 and 56300 family of devices may + * be incorrect just after a PCI HW reset. It needs to be read + * again after stabilization. + */ + case BCM56102_DEVICE_ID: + case BCM56504_DEVICE_ID: + case BCM56304_DEVICE_ID: + case BCM56314_DEVICE_ID: + case BCM56112_DEVICE_ID: + update_devid = 1; + break; + default: + break; + } + + /* Check if the device is ever probed. */ + rescan_idx = _device_rescan_validate(dev); + if (rescan_idx != -1) { + rescan = 1; + } + + ctrl = NULL; + if (plx_dev) { +#if defined(BCM_PLX9656_LOCAL_BUS) + /* PLX chip itself won't be part of _devices[]. */ + baroff = _plx_las_bar_get(dev); + if (baroff == -1) { + gprintk("No Local Address Space enabled in PLX\n"); + return 0; + } + ctrl = &plx_ctrl; + num_plx++; +#endif + } else if (eth_dev) { + if (_ether_ndevices >= LINUX_BDE_MAX_ETHER_DEVICES) { + return 0;; + } + ctrl = _devices + _ndevices++; + _ether_ndevices++; + ctrl->dev_type |= BDE_ETHER_DEV_TYPE; + ctrl->iLine = dev->irq; + if (debug >= 1) + gprintk("Found PCI device %04x:%04x as Ethernet device\n", + dev->vendor, dev->device); + } else if (cpu_dev) { + if (_cpu_ndevices >= LINUX_BDE_MAX_CPU_DEVICES) { + return 0;; + } + ctrl = _devices + _ndevices++; + _cpu_ndevices++; + ctrl->dev_type |= BDE_CPU_DEV_TYPE; + if (debug >= 1) + gprintk("Found PCI device %04x:%04x as CPU device\n", + dev->vendor, dev->device); + } else { + if (PCI_FUNC(dev->devfn) > 0) { + return 0; + } + if (_switch_ndevices >= LINUX_BDE_MAX_SWITCH_DEVICES) { + return 0;; + } + + if (rescan) { + if (debug >= 1) { + gprintk("PCI device %04x:%04x is re-probed \n", + dev->vendor, dev->device); + } + ctrl = _devices + rescan_idx; + ctrl->dev_state = BDE_DEV_STATE_CHANGED; + } else { + ctrl = _devices + _ndevices++; + _switch_ndevices++; + ctrl->dev_type |= BDE_SWITCH_DEV_TYPE; + ctrl->domain_no = pci_domain_nr(dev->bus); + ctrl->bus_no = dev->bus->number; + ctrl->dev_state = BDE_DEV_STATE_NORMAL; + } + + /* Save shared BDE HAL in device structure */ + memcpy(&ctrl->shbde, shbde, sizeof(ctrl->shbde)); + + if (update_devid) { + /* Re-read the device ID */ + pci_read_config_word(dev, + PCI_DEVICE_ID, + &ctrl->bde_dev.device); + dev->device = ctrl->bde_dev.device; + } + + if (debug >= 4) {gprintk("Enabling PCI device : vendor_id=0x%x, device_id=0x%x\n", dev->vendor, dev->device);} + if (pci_enable_device(dev)) { + gprintk("Cannot enable PCI device : vendor_id = %x, device_id = %x\n", + dev->vendor, dev->device); + } + + /* FIXME: "workarounds" previously called "total h_acks" */ + /* + * These are workarounds to get around some existing + * kernel problems :( + */ + + /* + * While probing we determine the overall limits for the PCI + * memory windows across all devices. These limits are used + * later on by the PCI-PCI bridge code. + */ + if (pci_resource_start(dev, baroff) < _pci_mem_start) { + _pci_mem_start = pci_resource_start(dev, baroff); + } + if (pci_resource_end(dev, baroff) > _pci_mem_end) { + _pci_mem_end = pci_resource_end(dev, baroff); + } + +#ifdef CONFIG_SANDPOINT + /* + * Something wrong with the PCI subsystem in the mousse kernel. + * The device is programmed correctly, but the irq in the pci + * structure is hosed. This checks for the hosed-ness and fixes it. + */ + if (dev->irq > 100) { + dev->irq = 2; + gprintk("irq problem: setting irq = %d\n", dev->irq); + } +#endif + +#ifdef CONFIG_BMW + /* + * PCI subsystem does not always program the system correctly. + */ + if (dev->irq < 16 && dev->irq != 2) { + dev->irq = 2; + gprintk("irq problem: setting irq = %d\n", dev->irq); + } +#endif + +#ifdef CONFIG_IDT_79EB334 + /* + * IDT kernel is not currently mapping interrupts correctly + * Hardwired to core mips interrupt, irq 3 for kernel 2.4.18 + */ + if (dev->irq != 3) { + dev->irq = 3; + gprintk("irq problem: setting irq = %d\n", dev->irq); + } +#endif + +#ifdef CONFIG_BCM94702_CPCI + /* + * Hardwired to core mips interrupt irq 6 on MBZ + */ + if (dev->irq != 6) { + dev->irq = 6; + gprintk("irq problem: setting irq = %d\n", dev->irq); + } +#endif + + if ((PCI_FIND_DEV(BCM4704_VENDOR_ID, BCM4704_DEVICE_ID, NULL)) != NULL) { + /* + * Decrease the PCI bus priority for the CPU for better overall + * system performance. This change significantly reduces the + * number of PCI retries from other devices on the PCI bus. + */ + void * _mc_vbase = IOREMAP(BCM4704_MEMC_BASE, 0x1000); + int priorinv = 0x80; + static int done = 0; + if (!done) { + done = 1; + writel(priorinv, _mc_vbase + BCM4704_MEMC_PRIORINV); + if (debug >= 1) + gprintk("set BCM4704 PriorInvTim register to 0x%x\n", priorinv); + iounmap(_mc_vbase); + } + } + + if ((PCI_FIND_DEV(SIBYTE_PCI_VENDOR_ID, SIBYTE_PCI_DEVICE_ID, NULL)) != NULL) { + /* + * The BCM91125CPCI CPU boards with a PCI-PCI bridge use the same + * interrupt line for all switch ships behind the bridge. + */ + if (PCI_FIND_DEV(DC21150_VENDOR_ID, DC21150_DEVICE_ID, NULL) || + PCI_FIND_DEV(HINT_HB4_VENDOR_ID, HINT_HB4_DEVICE_ID, NULL) || + PCI_FIND_DEV(PI7C8150_VENDOR_ID, PI7C8150_DEVICE_ID, NULL)) { + /* + * By default we try to guess the correct IRQ based on the design. + * For now we only look at the bridge vendor, but it may be necessary + * to look at the switch chip configuration as well. + */ + if (forceirq == -1) { + if ((PCI_FIND_DEV(HINT_HB4_VENDOR_ID, HINT_HB4_DEVICE_ID, NULL)) || + ((dev->device == BCM5674_DEVICE_ID) && + (PCI_FIND_DEV(PI7C8150_VENDOR_ID, PI7C8150_DEVICE_ID, NULL)))) { + forceirq = 58; + } else { + forceirq = 56; + } + } + } + } + + if (((PCI_FIND_DEV(BCM58525_PCI_VENDOR_ID, BCM58525_PCI_DEVICE_ID, NULL)) != NULL) || + ((PCI_FIND_DEV(BCM58525_PCI_VENDOR_ID, BCM58522_PCI_DEVICE_ID, NULL)) != NULL) || + ((PCI_FIND_DEV(BCM58712_PCI_VENDOR_ID, BCM58712_PCI_DEVICE_ID, NULL)) != NULL) ) { + /* BCM58525/BCM58712 CPU boards support 128 Max payload size */ + if (maxpayload) { + maxpayload = 128; + if (debug >= 1) gprintk("force max payload size to 128\n"); + } + } + + if (forceirq > 0 && dev->irq != (uint32) forceirq) { + if (forceirqubm & (1U << (_ndevices - 1))) { + dev->irq = forceirq; + if (debug >= 1) gprintk("force irq to %d\n", forceirq); + } + } else if (debug >= 1) gprintk("found irq %d\n", dev->irq); + + ctrl->iLine = dev->irq; + if (unlikely(debug > 1)) + gprintk("%s:irq = %d\n",__func__, ctrl->iLine); + + if (shbde_pci_is_pcie(shbde, dev)) { + /* Set PCIe max payload */ + shbde_pci_max_payload_set(shbde, dev, maxpayload); + } else { + /* Set PCI retry to infinite on non-PCIe switch device */ + pci_write_config_word(dev, 0x40, 0x0080); + if (debug >= 1) gprintk("set DMA retry to infinite on switch device\n"); + } + } + +#if defined(BCM_DFE_SUPPORT) + switch (dev->device) { + case BCM88750_DEVICE_ID: + case BCM88753_DEVICE_ID: + case BCM88755_DEVICE_ID: + case BCM88770_DEVICE_ID: + case BCM88773_DEVICE_ID: + case BCM88774_DEVICE_ID: + case BCM88775_DEVICE_ID: + case BCM88776_DEVICE_ID: + case BCM88777_DEVICE_ID: + case BCM88950_DEVICE_ID: + case BCM88953_DEVICE_ID: + case BCM88954_DEVICE_ID: + case BCM88955_DEVICE_ID: + case BCM88956_DEVICE_ID: + case BCM88752_DEVICE_ID: + case BCM88772_DEVICE_ID: + case BCM88952_DEVICE_ID: + + /* + * For DMA transactions - set Max_Payload_Size and + * Max_Read_Request_Size to 128 bytes. + */ + pci_write_config_byte(dev, 0xb5, 0x0c); + pci_write_config_byte(dev, 0xb4, 0x0); + break; + default: + break; + } +#endif /* BCM_DFE_SUPPORT */ + +#if defined(BCM_DNXF_SUPPORT) + switch (dev->device) { + case BCM88790_DEVICE_ID: + + /* + * For DMA transactions - set Max_Payload_Size and + * Max_Read_Request_Size to 128 bytes. + */ + pci_write_config_byte(dev, 0xb5, 0x0c); + pci_write_config_byte(dev, 0xb4, 0x0); + break; + default: + break; + } +#endif + + /* Prevent compiler warning */ + if (ctrl == NULL) { + return 0; + } + + ctrl->be_pio = 0; + ctrl->dev_type |= BDE_PCI_DEV_TYPE; + ctrl->pci_device = dev; + pci_set_drvdata(dev, ctrl); + + /* Check for iProc device */ + if (shbde_pci_is_iproc(shbde, dev, &cmic_bar)) { + iproc = 1; + if (cmic_bar >= 0) { + baroff = cmic_bar; + } + } +#ifdef DNX_TEST_BOARD + else if (dev->device == PLX9056_DEVICE_ID && baroff == 0) { + baroff = 2; + ctrl->dev_type |= BDE_NO_IPROC/* | BDE_BYTE_SWAP*/; + } +#endif /* DNX_TEST_BOARD */ + + /* Get the device revision */ + pci_read_config_byte(dev, PCI_REVISION_ID, &ctrl->bde_dev.rev); + + /* Map in the device */ + ctrl->bde_dev.device = dev->device; + paddr = pci_resource_start(dev, baroff); + + switch (dev->device) { +#if defined(BCM_PETRA_SUPPORT) && defined(__DUNE_LINUX_BCM_CPU_PCIE__) + case GEDI_DEVICE_ID: + case PCP_PCI_DEVICE_ID: + bar_len = 0x1000000; + break; +#endif + default: + bar_len = pci_resource_len(dev, baroff); + break; + } + + ctrl->bde_dev.base_address = (sal_vaddr_t)IOREMAP(paddr, bar_len); + ctrl->phys_address = paddr; + if (debug >= 3) { + gprintk("BAR %d: kernel addr:0x%lx phys addr:0x%lx length:%lx\n", + baroff, (unsigned long)ctrl->bde_dev.base_address, (unsigned long)paddr, (unsigned long)bar_len); + } + + /* Map secondary address spaces */ + if (iproc +#ifdef DNX_TEST_BOARD + || (dev->device == PLX9056_DEVICE_ID && baroff == 2) +#endif /* DNX_TEST_BOARD */ + ) { + paddr = pci_resource_start(dev, 0); + bar_len = pci_resource_len(dev, 0); + ctrl->bde_dev.base_address1 = (sal_vaddr_t)IOREMAP(paddr, bar_len); + ctrl->phys_address1 = paddr; + if (debug >= 3) { + gprintk("BAR 0: kernel addr:0x%lx phys addr:0x%lx length:%lx\n", + (unsigned long)ctrl->bde_dev.base_address1, (unsigned long)paddr, (unsigned long)bar_len); + } + } + + /* Each device follows global policy by default */ + ctrl->use_msi = use_msi; + + /* Check is MSI is properly supported in kernel for this device */ + if (ctrl->use_msi) { + if (pci_enable_msi(ctrl->pci_device) == 0) { + /* Release MSI resources until interrupt_connect is called */ + pci_disable_msi(ctrl->pci_device); + } else { + gprintk("Could not enable MSI interrupts\n"); + ctrl->use_msi = 0; + } + } + + /* configure interrupt type */ + config_pci_intr_type(ctrl); + + /* Configure iProc PCI-AXI bridge */ + if (iproc && ctrl->bde_dev.base_address1) { + void *iproc_regs; + shbde_iproc_config_t *icfg = &shbde->icfg; + + /* Mapped iProc regs in PCI BAR 0 */ + iproc_regs = (void *)ctrl->bde_dev.base_address1; + + /* iProc configuration parameters */ + (void)shbde_pci_iproc_version_get(shbde, dev, &icfg->iproc_ver, + &icfg->cmic_ver, &icfg->cmic_rev); + shbde_iproc_config_init(icfg, ctrl->bde_dev.device, ctrl->bde_dev.rev); + + if (debug >=2) { + gprintk("iproc version = %x dma_hi_bits = %x\n", icfg->iproc_ver, icfg->dma_hi_bits); + } + icfg->use_msi = ctrl->use_msi; + + /* Call shared function */ + paxb_core = shbde_iproc_paxb_init(shbde, iproc_regs, icfg); + + /* Save PCI core information for CMIC */ + if (paxb_core == 1) { + ctrl->dev_type |= BDE_DEV_BUS_ALT; + } + + /* Save MSI enable state information */ + if (ctrl->use_msi) { + ctrl->dev_type |= BDE_DEV_BUS_MSI; + } + + /* iProc PCIe preemphasis */ + shbde_iproc_pcie_preemphasis_set(shbde, iproc_regs, icfg, dev); + } + + /* Save shared BDE HAL in device structure */ + memcpy(&ctrl->shbde, shbde, sizeof(ctrl->shbde)); + +#if defined(VENDOR_BROADCOM) +#if defined(BCM_PLX9656_LOCAL_BUS) && defined(SHADOW_SVK) + if (num_plx) { + sal_vaddr_t base_address; + uint32 intr_enable; + + paddr = pci_resource_start(dev, 0); + bar_len = pci_resource_len(dev, 0); + base_address = (sal_vaddr_t)IOREMAP(paddr, bar_len); + + intr_enable = readl((uint32 *)(base_address + 0x68)); + gprintk("PLX Interrupt ENABLE: %x\n", intr_enable); + intr_enable |= 0x00080000; + writel(intr_enable, (uint32 *)(base_address + 0x68)); + gprintk("PLX Interrupt ENABLE: %x\n", intr_enable); + } +#endif +#endif + + /* + * Since the GMAC driver of Robo chips needs access to the + * ChipCommon and Wrapper registers, we set the base address + * as the enumeration base address and its size as 3MB to + * cover all Wrapper register regions. + */ + if (gmac_base) { + uint32_t offset; + + ctrl->bde_dev.base_address = (sal_vaddr_t)IOREMAP(gmac_base, 0x300000); + + /* Record the base address of GMAC core */ + offset = ctrl->phys_address - gmac_base; + ctrl->alt_base_addr = ctrl->bde_dev.base_address + offset; + ctrl->phys_address = gmac_base; + } + + /* + * Workaround bug in FE2K A1 part; shows as A0 part in PCI config space, + * read the FE's regs directly to get the true revision + */ + if (ctrl->bde_dev.device == BCM88020_DEVICE_ID && ctrl->bde_dev.rev == 0) { +#define FE2000_REVISION_OFFSET (0x0) + uint32_t fe_rev; + + fe_rev = *((uint32_t*)(ctrl->bde_dev.base_address + FE2000_REVISION_OFFSET)); + if ((fe_rev >> 16) == BCM88020_DEVICE_ID) { + fe_rev &= 0xff; + } else { + fe_rev = (fe_rev >> 24) & 0xff; + } + ctrl->bde_dev.rev = fe_rev; + } + + ctrl->isr = NULL; + ctrl->isr_data = NULL; + + pci_read_config_word(dev, PCI_COMMAND, &cmd); + if (!(cmd & PCI_COMMAND_MEMORY) || !(cmd & PCI_COMMAND_MASTER)) { + cmd |= PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER; + pci_write_config_word(dev, PCI_COMMAND, cmd); + if (debug >= 1) gprintk("enable PCI resources 0x%x (PCI_COMMAND)\n", cmd); + } + + /* Check if we need 256 KB memory window (default is 64 KB) */ + bar_len = pci_resource_len(dev, baroff); + if ((bar_len == 0x40000) || (bar_len == 0x800000)) { + ctrl->dev_type |= BDE_256K_REG_SPACE; + if (debug >= 1) gprintk("PCI resource len 256K\n"); + } + +#if defined (BCM_ROBO_SUPPORT) && !defined(ALTA_ROBO_SPI) + /* MDC/MDIO path for pseudo PHY access to ROBO register on BCM5836/4704 */ + if (dev->device == BCM47XX_ENET_ID) { + ((uint32 *)ctrl->bde_dev.base_address)[0x410 / 4] = 0; + } +#endif + +#ifdef LINUX_BDE_DMA_DEVICE_SUPPORT + ctrl->dma_dev = &dev->dev; +#endif + + if (debug >= 2) { + gprintk("_pci_probe: configured dev:0x%x rev:0x%x with base_addresses: 0x%lx 0x%lx\n", + (unsigned)ctrl->bde_dev.device, (unsigned)ctrl->bde_dev.rev, + (unsigned long)ctrl->bde_dev.base_address, (unsigned long)ctrl->bde_dev.base_address1); + } + /* Let's boogie */ + + return 0; +} + +/* + * Function: _pci_remove + * + * Purpose: + * Detach driver from device. Called from pci_unregister_driver(). + * Parameters: + * dev - Linux PCI device structure + * Returns: + * 0 + */ +static void +_pci_remove(struct pci_dev* dev) +{ + bde_ctrl_t *ctrl; + + if (nodevices == 1) { + return; + } + +#if defined(BCM_DFE_SUPPORT) + if (dev->device == PCI_DEVICE_ID_PLX_9056) { + return; + } +#endif + + ctrl = (bde_ctrl_t *) pci_get_drvdata(dev); + + if (ctrl == NULL) { + /* Unused device */ + return; + } + ctrl->dev_state = BDE_DEV_STATE_REMOVED; + if (debug >= 1) { + gprintk("PCI device %04x:%04x is removed. \n", + dev->vendor, dev->device); + } + if (ctrl->bde_dev.base_address1) { + iounmap((void *)ctrl->bde_dev.base_address1); + } + if (ctrl->bde_dev.base_address) { + iounmap((void *)ctrl->bde_dev.base_address); + } + + /* Free our interrupt handler, if we have one */ + if (ctrl->isr || ctrl->isr2) { +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,2,84)) + if (ctrl->use_msi >= PCI_USE_INT_MSIX) { + int i; + for (i = 0; i < ctrl->msix_cnt; i++) + free_irq(ctrl->entries[i].vector, ctrl->pci_device); + } + else +#endif + { + free_irq(ctrl->iLine, ctrl); + } + } +#ifdef CONFIG_PCI_MSI + _msi_disconnect(ctrl); +#endif + ctrl->isr = NULL; + ctrl->isr_data = NULL; + ctrl->isr2 = NULL; + ctrl->isr2_data = NULL; +} + +static struct pci_driver _device_driver = { + probe: _pci_probe, + remove: _pci_remove, + id_table: _id_table, + /* The rest are dynamic */ +}; + +static void +_spi_device_setup(void) { + bde_ctrl_t *ctrl; + ctrl = _devices + _ndevices++; + _switch_ndevices++; + ctrl->dev_type |= BDE_SWITCH_DEV_TYPE; + ctrl->iLine = 0xa3; + ctrl->be_pio = 0; + ctrl->dev_type |= BDE_SPI_DEV_TYPE; + ctrl->bde_dev.device = spi_devid; + ctrl->bde_dev.rev = spi_revid; + if (debug >= 1) { + gprintk("SPI Slave Mode: force ctrl->bde_dev.device=0x%x\n",ctrl->bde_dev.device); + gprintk("SPI Slave Mode: force ctrl->bde_dev.rev=0x%x\n",ctrl->bde_dev.rev); + gprintk("SPI Slave Mode: force ctrl->dev_type=0x%x\n",ctrl->dev_type); + } +} +#endif /* BCM_ICS */ + + +#ifdef BCM_ROBO_SUPPORT + +#ifdef KEYSTONE +#define DEFAULT_FREQ (SPI_FREQ_DEFAULT) +#define FREQ_20MHZ (SPI_FREQ_20MHZ) +#else /* IPROC_CMICD */ +#define DEFAULT_FREQ (0) +#define FREQ_20MHZ (0) +#endif + + +/* +* The model_info /rev_info for Robo devices is defined like this: +* +* 31 28 27 24 23 20 19 16 15 8 7 0 +* +----+---------+------+-----+---------+--------+ +* | op | reserved| mask |len | page |offset | +* +----+---------+------+-----+---------+--------+ +* +* op: 1:OR phyidl, 2: use PCIE device ID +* mlen: mask len (in bytes) 1:means 0xf,2 means 0xff +* len: Size of model/rev ID register (in bytes) +* page: Page containing model ID and revision registers +* offset: Model/rev ID register offset +*/ +static struct bde_spi_device_id _spi_id_table[] = { + { BCM53242_PHYID_HIGH, BCM53242_PHYID_LOW , 0, 0, DEFAULT_FREQ}, + { BCM53262_PHYID_HIGH, BCM53262_PHYID_LOW , 0, 0, DEFAULT_FREQ}, + { BCM53115_PHYID_HIGH, BCM53115_PHYID_LOW , 0, 0, DEFAULT_FREQ}, + { BCM53118_PHYID_HIGH, BCM53118_PHYID_LOW , 0, 0, DEFAULT_FREQ}, + { BCM53280_PHYID_HIGH, BCM53280_PHYID_LOW , 0x101800e8, 0, FREQ_20MHZ}, + { BCM53101_PHYID_HIGH, BCM53101_PHYID_LOW , 0, 0x110240, FREQ_20MHZ}, + { BCM53125_PHYID_HIGH, BCM53125_PHYID_LOW , 0, 0x110240, FREQ_20MHZ}, + { BCM53128_PHYID_HIGH, BCM53128_PHYID_LOW , 0, 0x110240, FREQ_20MHZ}, + { BCM53600_PHYID_HIGH, BCM53600_PHYID_LOW , 0x101800e8, 0, FREQ_20MHZ}, + { BCM89500_PHYID_HIGH, BCM89500_PHYID_LOW ,0x240230, 0x110240, FREQ_20MHZ}, + { BCM53010_PHYID_HIGH, BCM53010_PHYID_LOW ,0x240230, 0x110240, 0}, + { BCM53018_PHYID_HIGH, BCM53018_PHYID_LOW ,0x240230, 0x110240, 0}, + { BCM5389_PHYID_HIGH, BCM5389_PHYID_LOW, 0x110230, 0x110240, DEFAULT_FREQ}, + { BCM53020_PHYID_HIGH, BCM53020_PHYID_LOW ,0x20240230, 0x110240, 0}, + { BCM5396_PHYID_HIGH , BCM5396_PHYID_LOW, 0x110230, 0x110240, DEFAULT_FREQ}, + { BCM53134_PHYID_HIGH, BCM53134_PHYID_LOW , 0, 0x110240, DEFAULT_FREQ}, + { 0, 0, 0, 0, 0 }, +}; +#endif + +#ifdef BCM_ROBO_SUPPORT + +static int +_spi_device_valid_check(unsigned short phyidh,unsigned short phyidl, uint8 check_flag) +{ + struct bde_spi_device_id *_ids; + int idx, match_idx; + + match_idx = -1; + idx = 0; + + if (check_flag == 0){ + /* check_flag == 0 check phyidh only*/ + for (_ids = _spi_id_table; + _ids->phyid_high && _ids->phyid_low; _ids++){ + if (_ids->phyid_high == phyidh) { + return 0; + } + } + /* No valid SPI devices found */ + return 1; + } else { + while(_spi_id_table[idx].phyid_high){ + if (phyidh == _spi_id_table[idx].phyid_high && + phyidl == _spi_id_table[idx].phyid_low) { + /* Found a match */ + match_idx = idx; + break; + } + idx++; + } + return match_idx; + } +} + +#if defined(IPROC_CMICD) || defined(KEYSTONE) +#define ROBO_ATTACH_AVAIL +#endif + +#ifdef ROBO_ATTACH_AVAIL + +#define SOC_ATTACH(_sc)\ + ai_soc_kattach(_sc) + +#if defined(IPROC_CMICD) +#ifdef BCM_STARFIGHTER3_SUPPORT +#define ROBO_ATTACH_SPI(_sih, _ss)\ + robo_attach_spi(_sih) +#define ROBO_DETACH_SPI(robo)\ + robo_detach_spi(robo) +#define ROBO_SPI_RREG(_robo, _dev, _page, _reg, _buf, _len) \ + robo_spi_rreg(_robo, _dev, _page, _reg, _buf, _len) +#define ROBO_SPI_WREG(_robo, _dev, _page, _reg, _buf, _len) \ + robo_spi_wreg(_robo, _dev, _page, _reg, _buf, _len) +#endif +#define ROBO_ATTACH(_sih, _ss)\ + robo_attach(_sih) +#define MAX_BUSTYPE 1 +#define ROBO_SWITCH_BUS(_robo, _bustype) +#define ROBO_SELECT_DEVICE(_robo, _phyidh, _phyidl) +#else /* KEYSTONE */ +#define ROBO_ATTACH(_sih, _ss)\ + robo_attach(_sih, _ss) +/* bustype 2: ROBO_MDCMDIO_BUS, 1: ROBO_SPI_BUS */ +#define MAX_BUSTYPE 2 +#define ROBO_SWITCH_BUS(_robo, _bustype)\ + robo_switch_bus(_robo, _bustype) + +#define ROBO_SELECT_DEVICE(_robo, _phyidh, _phyidl) \ + robo_select_device(_robo, _phyidh, _phyidl) +#endif + +#else + +#define SOC_ATTACH(_sc) (NULL) +#define ROBO_ATTACH(_sih, _ss) (NULL) +#define MAX_BUSTYPE (0) +#define ROBO_SWITCH_BUS(_robo, _bustype) +#define ROBO_SELECT_DEVICE(_robo, _phyidh, _phyidl) +#endif + + +#if defined(IPROC_CMICD) && defined(BCM_STARFIGHTER3_SUPPORT) +static int +probe_robo_switch_iproc_spi(void) +{ + int dev; + int max_devices, max_bustype; + uint8 buf[8]; + unsigned short phyidh = 0, phyidl = 0; + + + /* Get Robo device handle */ + if (robo == NULL) { + robo = (void *)ROBO_ATTACH_SPI(sbh, 0); + } + if (robo == NULL) { + return -ENODEV; + } + + max_bustype = MAX_BUSTYPE + 1; + + while(_spi_device_valid_check(phyidh, 0, 0)) { + max_bustype --; + if(!max_bustype) + return -ENODEV; + buf[0] = buf[1] = 0; + ROBO_SPI_RREG(robo, 0, 0x10, 0x04, buf, (uint)2); + phyidh = buf[0] | (buf[1] << 8); + /* re-try */ + if ((phyidh == 0x0) || (phyidh == 0xffff)) { + ROBO_SPI_RREG(robo, 0, 0x10, 0x04, buf, (uint)2); + phyidh = buf[0] | (buf[1] << 8); + } + } + + /* For psedo_phy access, only support one robo switch*/ + /* For Northstar, only one switch on SRAB interface */ + max_devices = (max_bustype == MAX_BUSTYPE) ? 1 : LINUX_BDE_MAX_SWITCH_DEVICES; + + for (dev = 0; dev < max_devices; dev++) { + bde_ctrl_t *ctrl; + int match_idx, i; + unsigned short phyidl_nr; /* phyidl with revision stripped */ + uint16 model_id; + uint8 rev_id; + uint32 addr, len; + uint32 mlen; + + if (_switch_ndevices >= LINUX_BDE_MAX_SWITCH_DEVICES) { + break; + } + buf[0] = buf[1] = 0; + ROBO_SPI_RREG(robo, dev, 0x10, 0x04, buf, (uint)2); + phyidh = buf[0] | (buf[1] << 8); + + buf[0] = buf[1] = 0; + ROBO_SPI_RREG(robo, dev, 0x10, 0x06, buf, (uint)2); + phyidl = buf[0] | (buf[1] << 8); + + /* Strip revision */ + phyidl_nr = phyidl & 0xfff0; + + match_idx = _spi_device_valid_check(phyidh, phyidl_nr, 1); + if (match_idx == -1) { + if (debug >= 1) gprintk("found %d robo device(s).\n", robo_switch); + break; + } + + model_id = phyidl_nr; + + if(_spi_id_table[match_idx].rev_info){ + addr = _spi_id_table[match_idx].rev_info & 0xffff; + len = (_spi_id_table[match_idx].rev_info >> 16) & 0xf; + ROBO_SPI_RREG(robo, dev, (addr >> 8), (addr & 0xff), buf, (uint)len); + mlen = (_spi_id_table[match_idx].rev_info >> 20) & 0xf; + rev_id = 0; + for (i = 0; i < mlen; i++) + rev_id |= buf[i] << (i << 3); + } else { + rev_id = phyidl & 0xf; + } + + gprintk("found robo device with %d:%04x:%04x:%04x:%02x\n", + dev, phyidh, phyidl, model_id, rev_id); + + ROBO_SELECT_DEVICE(robo, phyidh, phyidl); + + /* Match supported chips */ + ctrl = _devices + _ndevices++; + _switch_ndevices++; + + if (NULL == (ctrl->spi_device = (struct spi_dev *) + KMALLOC(sizeof(struct spi_dev), GFP_KERNEL))) { + gprintk("no memory available"); + return -ENOMEM; + } + ctrl->dev_type = (BDE_SPI_DEV_TYPE | BDE_SWITCH_DEV_TYPE); + ctrl->spi_device->cid = dev; + ctrl->spi_device->part = model_id; + ctrl->spi_device->rev = rev_id; + ctrl->spi_device->robo = robo; + ctrl->spi_device->phyid_high = phyidh; + ctrl->spi_device->phyid_low = phyidl; + ctrl->bde_dev.device = model_id; + ctrl->bde_dev.rev = rev_id; + ctrl->bde_dev.base_address = (sal_vaddr_t)NULL; + ctrl->isr = NULL; + ctrl->isr_data = NULL; + robo_switch++; + + } + + return robo_switch; + +} + +int spi_device_found = 0; + +#endif /* IPROC_CMICD || SF3 */ + + +static int +probe_robo_switch(void) +{ + int dev; + int max_devices, max_bustype; + uint8 buf[8]; + unsigned short phyidh = 0, phyidl = 0; +#if defined(KEYSTONE) + uint32 spi_freq = 0; +#endif +#if defined(IPROC_CMICD) + sal_vaddr_t addr_base; + uint32 data_reg; +#endif /* IPROC_CMICD */ + + + spin_lock_init(&bus_lock); + + if (_switch_ndevices) { + /* + * Currently skip probe robo if esw chips were found + * FIX this while combined plateform support. + */ + return robo_switch; + } + + /* Get Robo device handle */ + if (robo == NULL) { + sbh = (void *)SOC_ATTACH(NULL); + if (sbh == NULL) { + return -ENODEV; + } + } + +#if defined(IPROC_CMICD) && defined(BCM_STARFIGHTER3_SUPPORT) + robo_switch = probe_robo_switch_iproc_spi(); + + if (robo_switch > 0) { + /* Robo switch found by SPI probe */ + spi_device_found = 1; + gprintk("SPI device found, Skipping SRAB probe\n"); + return robo_switch; + } else { + gprintk("SPI device NOT found, Probe SRAB probe\n"); + ROBO_DETACH_SPI(robo); + } +#endif + + if (robo == NULL) { + robo = (void *)ROBO_ATTACH(sbh, 0); + } + if (robo == NULL) { + return -ENODEV; + } + + max_bustype = MAX_BUSTYPE + 1; + + while(_spi_device_valid_check(phyidh, 0, 0)) { + max_bustype --; + if(!max_bustype) + return -ENODEV; + ROBO_SWITCH_BUS(robo, max_bustype); + buf[0] = buf[1] = 0; + ROBO_RREG(robo, 0, 0x10, 0x04, buf, (uint)2); + phyidh = buf[0] | (buf[1] << 8); + /* re-try */ + if ((phyidh == 0x0) || (phyidh == 0xffff)) { + ROBO_RREG(robo, 0, 0x10, 0x04, buf, (uint)2); + phyidh = buf[0] | (buf[1] << 8); + } + } + + /* For psedo_phy access, only support one robo switch*/ + /* For Northstar, only one switch on SRAB interface */ + max_devices = (max_bustype == MAX_BUSTYPE) ? 1 : LINUX_BDE_MAX_SWITCH_DEVICES; + + for (dev = 0; dev < max_devices; dev++) { + bde_ctrl_t *ctrl; + int match_idx, i; + unsigned short phyidl_nr; /* phyidl with revision stripped */ + uint16 model_id; + uint8 rev_id; +#if defined(KEYSTONE) || defined(IPROC_CMICD) + uint32 addr, len; +#endif + uint32 mlen, op; + + if (_switch_ndevices >= LINUX_BDE_MAX_SWITCH_DEVICES) { + break; + } + buf[0] = buf[1] = 0; + ROBO_RREG(robo, dev, 0x10, 0x04, buf, (uint)2); + phyidh = buf[0] | (buf[1] << 8); + + buf[0] = buf[1] = 0; + ROBO_RREG(robo, dev, 0x10, 0x06, buf, (uint)2); + phyidl = buf[0] | (buf[1] << 8); + + /* Strip revision */ + phyidl_nr = phyidl & 0xfff0; + + match_idx = _spi_device_valid_check(phyidh, phyidl_nr, 1); + if (match_idx == -1) { + if (debug >= 1) gprintk("found %d robo device(s).\n", robo_switch); + break; + } + + if(_spi_id_table[match_idx].model_info){ +#if defined(KEYSTONE) || defined(IPROC_CMICD) + addr = _spi_id_table[match_idx].model_info & 0xffff; + len = (_spi_id_table[match_idx].model_info >> 16) & 0xf; +#endif + ROBO_RREG(robo, dev, (addr >> 8), (addr & 0xff), buf, (uint)len); + mlen = (_spi_id_table[match_idx].model_info >> 20) & 0xf; + model_id = 0; + for (i = 0; i < mlen; i++) + model_id |= buf[i] << (i << 3); + op = (_spi_id_table[match_idx].model_info >> 28) & 0xf; + if(op == 1) { + model_id |= phyidl_nr; +#if defined(IPROC_CMICD) + } else if (op == 2) { + /* The package id of NS+ is determined by : + * Write 0 to 0x18012120 (PAXB_0_CONFIG_IND_ADDR) + * Read 0x18012124 (PAX_B_CONFIG_IND_DATA), + * bits 31:16 will be the device id from OTP space + */ +#define PAXB_ENUM_BASE (0x18012000) +#define PAXB_CONFIG_IND_ADDR_OFFSET (0x120) +#define PAXB_CONFIG_IND_DATA_OFFSET (0x124) + + addr_base = (sal_vaddr_t)IOREMAP(PAXB_ENUM_BASE, 0x1000); + if (!addr_base) { + gprintk("ioremap of PAXB registers failed\n"); + } else { + writel(0x0, (uint32 *)(addr_base + + PAXB_CONFIG_IND_ADDR_OFFSET)); + data_reg = readl((uint32 *)(addr_base + + PAXB_CONFIG_IND_DATA_OFFSET)); + model_id = (data_reg >> 16); + iounmap((void *)addr_base); + + /* + * Some model ID can't be determined by PCIE device ID + * It needs to refer some OTP values. + */ + robo_model_id_adjust_from_otp(robo, &model_id); + } + +#undef PAXB_ENUM_BASE +#undef PAXB_CONFIG_IND_ADDR_OFFSET +#undef PAXB_CONFIG_IND_DATA_OFFSET +#endif /* IPROC_CMICD */ + } + } else { + model_id = phyidl_nr; + } + if(_spi_id_table[match_idx].rev_info){ +#if defined(KEYSTONE) || defined(IPROC_CMICD) + addr = _spi_id_table[match_idx].rev_info & 0xffff; + len = (_spi_id_table[match_idx].rev_info >> 16) & 0xf; +#endif + ROBO_RREG(robo, dev, (addr >> 8), (addr & 0xff), buf, (uint)len); + mlen = (_spi_id_table[match_idx].rev_info >> 20) & 0xf; + rev_id = 0; + for (i = 0; i < mlen; i++) + rev_id |= buf[i] << (i << 3); + } else { + rev_id = phyidl & 0xf; + } + gprintk("found robo device with %d:%04x:%04x:%04x:%02x\n", + dev, phyidh, phyidl, model_id, rev_id); + + ROBO_SELECT_DEVICE(robo, phyidh, phyidl); + + /* Match supported chips */ + ctrl = _devices + _ndevices++; + _switch_ndevices++; + + if (NULL == (ctrl->spi_device = (struct spi_dev *) + KMALLOC(sizeof(struct spi_dev), GFP_KERNEL))) { + gprintk("no memory available"); + return -ENOMEM; + } + ctrl->dev_type = (BDE_SPI_DEV_TYPE | BDE_SWITCH_DEV_TYPE); + ctrl->spi_device->cid = dev; + ctrl->spi_device->part = model_id; + ctrl->spi_device->rev = rev_id; + ctrl->spi_device->robo = robo; + ctrl->spi_device->phyid_high = phyidh; + ctrl->spi_device->phyid_low = phyidl; + ctrl->bde_dev.device = model_id; + ctrl->bde_dev.rev = rev_id; + ctrl->bde_dev.base_address = (sal_vaddr_t)NULL; + ctrl->isr = NULL; + ctrl->isr_data = NULL; + robo_switch++; + +#if defined(KEYSTONE) + spi_freq = _spi_id_table[match_idx].spifreq; +#endif + } + +#if defined(KEYSTONE) + /* Override the SPI frequency from user configuration */ + if (spifreq != 0) { + spi_freq = spifreq; + } + if (spi_freq != 0) { + /* + * The underlying chip can support the SPI frequency + * higher than default (2MHz). + */ + if (spi_freq != SPI_FREQ_DEFAULT) { + chipc_spi_set_freq(robo, 0, spi_freq); + } + } +#endif + return robo_switch; + +} + +#endif + +#if defined(BCM_METROCORE_LOCAL_BUS) +static bde_ctrl_t* +map_local_bus(uint64_t addr, uint32_t size) +{ + bde_ctrl_t *ctrl; + + ctrl = _devices + _ndevices++; + _switch_ndevices++; + + /* + * For now: use EB type as `local bus' + * (memory mapped, no DMA, no interrupts) + * metrocore local bus supports interrupts, but we don't use them. + */ + ctrl->dev_type |= BDE_EB_DEV_TYPE | BDE_SWITCH_DEV_TYPE + | (size > 64 * 1024 ? BDE_128K_REG_SPACE : 0); + ctrl->pci_device = NULL; /* No PCI bus */ + + /* Map in the device */ + ctrl->bde_dev.base_address = (sal_vaddr_t)IOREMAP(addr, size); + ctrl->phys_address = addr; + + return(ctrl); +} + +#define BME_REVISION_OFFSET (0x0) + +#endif + + +#ifdef BCM_METROCORE_LOCAL_BUS + /* + * SBX platform has both PCI- and local bus-attached devices + * The local bus devices have fixed address ranges (and don't + * support or require DMA), but are otherwise the same as PCI devices + */ +#define FPGA_IRQ 37 +#define FPGA_PHYS 0x100E0000 +#define BME_PHYS 0x100C0000 +#define SE_PHYS 0x100D0000 +#define FPGA_SIZE 0x00004000 +#define BME_SIZE 0x00004000 +#define MAC0_PHYS 0x100B0000 +#define MAC1_PHYS 0x100B8000 +#define MAC_SIZE 0x800 + + +/* + * Please refer to "Supervisor Fabric Module (SFM) Specification" + * page 23 for the following registers. + */ +#define FPGA_LC_POWER_DISABLE_OFFSET 0x4 +#define FPGA_LC_POWER_DISABLE_ENABLE_ALL_MASK 0x1e + +#define FPGA_LC_POWER_RESET_OFFSET 0x5 +#define FPGA_LC_POWER_RESET_ENABLE_ALL_MASK 0x1e + +#define FPGA_SW_SFM_MASTER_MODE_OFFSET 0x14 +#define FPGA_SW_SFM_MASTER_MODE_ENABLE_MASK 0x10 + + +static int +probe_metrocore_local_bus(void) { + bde_ctrl_t *ctrl; + uint32_t dev_rev_id; + VOL uint8_t *fpga; + + /* + * Write the FPGA on the fabric card, to let metrocore + * line cards out of reset. We actually don't bother to determine whether + * the card is a line card or a fabric card because when we do + * this on the line cards, it has no effect. + */ + fpga = (uint8_t *) IOREMAP(FPGA_PHYS, FPGA_SIZE); + fpga[FPGA_SW_SFM_MASTER_MODE_OFFSET] + |= FPGA_SW_SFM_MASTER_MODE_ENABLE_MASK; + fpga[FPGA_LC_POWER_DISABLE_OFFSET] + |= FPGA_LC_POWER_DISABLE_ENABLE_ALL_MASK; + fpga[FPGA_LC_POWER_RESET_OFFSET] + |= FPGA_LC_POWER_RESET_ENABLE_ALL_MASK; + + ctrl = map_local_bus(BME_PHYS, BME_SIZE); + + dev_rev_id = + *((uint32_t *) + (((uint8_t *) ctrl->bde_dev.base_address) + BME_REVISION_OFFSET)); + ctrl->bde_dev.device = dev_rev_id >> 16; + ctrl->bde_dev.rev = (dev_rev_id & 0xFF); + + if ((ctrl->bde_dev.device != BME3200_DEVICE_ID) && + (ctrl->bde_dev.device != BCM88130_DEVICE_ID)) { + gprintk("probe_metrocore_local_bus: wrong BME type: " + "0x%x (vs 0x%x or 0x%x)\n", + ctrl->bde_dev.device, BME3200_DEVICE_ID, BCM88130_DEVICE_ID); + return -1; + } + + ctrl->iLine = FPGA_IRQ; + ctrl->isr = NULL; + ctrl->isr_data = NULL; + + /* + * + * We start from SE & include the FPGA, which is 128k + */ + ctrl = map_local_bus(SE_PHYS, 128 * 1024); + + dev_rev_id = + *((uint32_t *) + (((uint8_t *) ctrl->bde_dev.base_address) + BME_REVISION_OFFSET)); + ctrl->bde_dev.device = dev_rev_id >> 16; + ctrl->bde_dev.rev = (dev_rev_id & 0xFF); + + if ((ctrl->bde_dev.device != BME3200_DEVICE_ID) && + (ctrl->bde_dev.device != BCM88130_DEVICE_ID)) { + gprintk("probe_metrocore_local_bus: wrong SE (BME) type: " + "0x%x (vs 0x%x)\n", + ctrl->bde_dev.device, BME3200_DEVICE_ID); + return -1; + } + + ctrl->iLine = FPGA_IRQ; + ctrl->isr = NULL; + ctrl->isr_data = NULL; + + return 0; +} +#endif + +#ifdef BCM_PLX9656_LOCAL_BUS + +#if 1 +#define DEV_REG_BASE_OFFSET PL0_OFFSET /* Polaris register base */ +#define DEV_REG_DEVID 0 /* Device ID is first register */ +#endif + +/* + * The difference at map_local_bus2: + * + * The PLX9656 PCI-to-LOCAL bridge chip already has been iomapped the + * whole address space. So the devices off local bus don't need to be + * mapped again. They only need to claim their own sub-space. + */ +static bde_ctrl_t * +map_local_bus2(bde_ctrl_t *plx_ctrl, uint32_t dev_base, uint32_t size) +{ + uint32_t dev_rev_id; + uint8_t *addr; + bde_ctrl_t *ctrl; + + ctrl = _devices + _ndevices++; + _switch_ndevices++; + + /* + * For now: use EB type as `local bus' + * (memory mapped, no DMA, no interrupts) + * metrocore local bus supports interrupts, but we don't use them. + */ + ctrl->dev_type |= BDE_EB_DEV_TYPE | BDE_SWITCH_DEV_TYPE; + ctrl->dev_type |= BDE_320K_REG_SPACE; /* Polaris 18 bits address + FPGA */ + ctrl->pci_device = NULL; /* No PCI bus */ + + /* Map in the device */ + ctrl->bde_dev.base_address = plx_ctrl->bde_dev.base_address + dev_base; + ctrl->phys_address = plx_ctrl->phys_address + (resource_size_t)dev_base; + +#if 1 + addr = (uint8_t *)ctrl->bde_dev.base_address + PL0_REVISION_REG; +#endif + dev_rev_id = readl(addr); + ctrl->bde_dev.device = dev_rev_id >> 16; + ctrl->bde_dev.rev = (dev_rev_id & 0xFF); + + switch (ctrl->bde_dev.device) { + case BCM88130_DEVICE_ID: + case BME3200_DEVICE_ID: + break; + default: + gprintk("wrong BME type: 0x%x (vs 0x%x or 0x%x)\n", + ctrl->bde_dev.device, BME3200_DEVICE_ID, BCM88130_DEVICE_ID); + return 0; + } + return(ctrl); +} + +static int +probe_plx_local_bus(void) +{ + bde_ctrl_t *ctrl; + uint32_t val; + uint8_t *addr; + char addr_hi_str[16]; + + if (num_plx > 1) { + printk(KERN_ERR "There's more than one PLX 9656/9056 chip\n"); + return -1; + } + addr_hi_str[0] = 0; +#ifdef PHYS_ADDR_IS_64BIT + sprintf(addr_hi_str, "%08x", (uint32_t)(plx_ctrl.phys_address >> 32)); +#endif + printk(KERN_ERR "Found PLX %04x:%04x vir: 0x%08x phy: 0x%s%08x\n", + plx_ctrl.bde_dev.device, plx_ctrl.bde_dev.rev, + plx_ctrl.bde_dev.base_address, addr_hi_str, + (uint32_t)(plx_ctrl.phys_address)); + + addr = (uint8_t *)plx_ctrl.bde_dev.base_address + CPLD_OFFSET + CPLD_REVISION_REG; + val = readl(addr); + printk(KERN_ERR "plx: CPLD revision %d\n", val & CPLD_REVISION_MASK); +#if 000 + addr = (uint8_t *)plx_ctrl.bde_dev.base_address + CPLD_OFFSET + CPLD_RESET_REG; + writel(CPLD_RESET_NONE, addr); +#endif +#if 1 + ctrl = map_local_bus2(&plx_ctrl, PL0_OFFSET, PL0_SIZE); +#endif + if (ctrl == 0) + return -1; + + /* Uses PLX IRQ for Polaris LC */ + ctrl->iLine = 48; + ctrl->isr = NULL; + ctrl->isr_data = NULL; + + return 0; +} + +#endif /* BCM_PLX9656_LOCAL_BUS */ + +#if defined(BCM_EA_SUPPORT) +#if defined(BCM_TK371X_SUPPORT) +static void +probe_tk371x_dev(void) +{ + bde_ctrl_t *ctrl; + int ea_uid=0; + + /* eadevices is from the argument of insmod */ + for (ea_uid = 0; ea_uid < eadevices; ea_uid++) { + ctrl = _devices + _ndevices++; + _switch_ndevices++; + ctrl->dev_type = (BDE_MII_DEV_TYPE | BDE_SWITCH_DEV_TYPE); + ctrl->bde_dev.device = TK371X_DEVICE_ID; + ctrl->bde_dev.rev = 0x0; + ctrl->bde_dev.base_address = (sal_vaddr_t)NULL; + ctrl->iLine = 0; + } +} +#endif /* BCM_TK371X_SUPPORT*/ +#endif /* BCM_EA_SUPPORT */ + + +#if defined(BCM_ROBO_SUPPORT) +#if defined(IPROC_CMICD) +struct chip_device_info { + uint32 cc_base; /* Chip-common register base */ + uint32 cc_size; /* Chip-common register limit */ + uint32 cid_reg_off; /* Chip id register offset */ +}; + +static struct chip_device_info _chip_table = { +#if defined(IPROC_CMICD) + 0x18000000, 0x00000300, 0x00000000 +#else + 0,0,0 +#endif +}; + +struct gmac_device_info { + uint32 cid; /* chip id */ + uint32 rid; /* revision id */ + uint32 pid; /* package id */ + + uint32 gmac_dev_id; /* gmac core device id */ + uint32 gmac_base_addr; /* gmac core base address */ + int gmac_irq; /* gmac irq number */ +}; + +static struct gmac_device_info _gmac_table[] = { +#if defined(IPROC_CMICD) + {BCM53010_CHIP_ID, 0, 0, BCM53010_GMAC_ID, 0x18026000, 181}, /* BCM53012 */ + {BCM53010_CHIP_ID, 0, 2, BCM53010_GMAC_ID, 0x18026000, 181}, /* BCM53011 */ + {BCM53010_CHIP_ID, 0, 1, BCM53010_GMAC_ID, 0x18026000, 181}, /* BCM53010 */ + {BCM53018_CHIP_ID, 0, 0, BCM53010_GMAC_ID, 0x18026000, 181}, /* BCM53018 */ + {BCM53018_CHIP_ID, 0, 2, BCM53010_GMAC_ID, 0x18026000, 181}, /* BCM53017 */ + {BCM53018_CHIP_ID, 0, 1, BCM53010_GMAC_ID, 0x18026000, 181}, /* BCM53019 */ + {BCM53020_CHIP_ID, 0, 0, BCM53010_GMAC_ID, 0x18024000, 181}, /* BCM53022 */ + {BCM53020_CHIP_ID, 4, 0, BCM53010_GMAC_ID, 0x18023000, 180}, /* BCM53022 */ +#endif + {0,0,0,0,0,0} +}; + +static sal_vaddr_t _cca_base = 0; + +static int +_gmac_dev_create(void) +{ + bde_ctrl_t *ctrl; + uint32 gmac_base = 0; + uint32 offset = 0; + uint32 cca_cid; + uint32 cid, rid, pid; + int i = 0, found; + + if (_chip_table.cc_base == 0) { + gprintk("Create GMAC device failed. Unable to identify CPU.\n"); + return -1; + } + + /* 1. Determine which CPU/GMAC configuration is now */ + _cca_base = (sal_vaddr_t)IOREMAP(_chip_table.cc_base, _chip_table.cc_size); + cca_cid = readl((uint32 *)(_cca_base + _chip_table.cid_reg_off)); + + cid = cca_cid & CID_ID_MASK; + rid = (cca_cid & CID_REV_MASK) >> CID_REV_SHIFT; + pid = (cca_cid & CID_PKG_MASK) >> CID_PKG_SHIFT; + + found = 0; + for (i = 0; ; i++) { + if (_gmac_table[i].cid == 0) { + /* End of table */ + break; + } + if ((_gmac_table[i].cid == cid) && + (_gmac_table[i].rid == rid) && + (_gmac_table[i].pid == pid)) { + /* found */ + found = 1; + break; + } + } + if (!found) { + gprintk("Create GMAC device failed. Unable to identify GMAC device.\n"); + } + + /* 2. Create GMAC device */ + /* fill-in necessary information depends on the CPU/GMAC configuration */ + if ((cid == BCM53010_CHIP_ID) || (cid == BCM53018_CHIP_ID) || + (cid == BCM53020_CHIP_ID)) { + ctrl = _devices + _ndevices++; + _ether_ndevices++; + + ctrl->dev_type |= BDE_ETHER_DEV_TYPE; + ctrl->dev_type |= BDE_PCI_DEV_TYPE; + + ctrl->iLine = _gmac_table[i].gmac_irq; + + ctrl->be_pio = 0; + + ctrl->bde_dev.rev = _gmac_table[i].rid; + ctrl->bde_dev.device = _gmac_table[i].gmac_dev_id; + + gmac_base = 0x18000000; + offset = _gmac_table[i].gmac_base_addr - gmac_base; + ctrl->bde_dev.base_address = (sal_vaddr_t)IOREMAP(gmac_base, 0x300000); + ctrl->alt_base_addr = ctrl->bde_dev.base_address + offset; + ctrl->phys_address = gmac_base; + + ctrl->isr = NULL; + ctrl->isr_data = NULL; + } + + return 0; +} +#endif +#endif + +/* + * Generic module functions + */ + +/* + * Function: _init + * + * Purpose: + * Module initialization. + * Attaches to kernel BDE. + * Parameters: + * None + * Returns: + * 0 on success, < 0 on error. + */ +static int +_init(void) +{ + +#ifdef IPROC_CMICD + if (iproc_has_cmicd()) { + iproc_cmicd_get_memregion(&iproc_cmicd_resources[IPROC_CMICD_RES_MEM]); + iproc_platform_driver_register(&iproc_cmicd_driver); +#ifdef CONFIG_OF + if (!of_find_compatible_node(NULL, NULL, IPROC_CMICD_COMPATIBLE)) +#endif + { + /* Register platform device if no device node in dtb */ + iproc_platform_device_register(&iproc_cmicd_pdev); + } + } +#endif /* IPROC_CMICD */ + +#ifdef BCM_ICS + _ics_bde_create(); +#else /* PCI */ + /* Register our goodies */ + _device_driver.name = LINUX_KERNEL_BDE_NAME; + +#if defined(BCM_ROBO_SUPPORT) +#if defined(IPROC_CMICD) + if (_gmac_dev_create()) { + return -ENODEV; + } +#endif +#endif /* defined (BCM_ROBO_SUPPORT) */ + + /* Configure MSI interrupt support */ + use_msi = usemsi; + +#ifdef CONFIG_PCI_MSI + if (use_msi == PCI_USE_INT_NONE) { + /* Compilation flag determines default value */ +#ifdef BDE_LINUX_USE_MSIX_INTERRUPT +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,2,84)) + use_msi = PCI_USE_INT_MSIX; +#else + use_msi = PCI_USE_INT_MSI; +#endif +#elif defined(BDE_LINUX_USE_MSI_INTERRUPT) + use_msi = PCI_USE_INT_MSI; +#else + use_msi = PCI_USE_INT_INTX; +#endif + } +#else + if (use_msi > PCI_USE_INT_INTX) { + /* Warn if invalid configuration */ + gprintk("MSI interrupts not supported by kernel\n"); + } + use_msi = PCI_USE_INT_INTX; +#endif /* CONFIG_PCI_MSI */ + + if (unlikely(debug >= 1)) + gprintk("%s(%d):use_mse = %d\n", __func__, __LINE__, use_msi); + if (spi_devid) { + _spi_device_setup(); + } else { + if (pci_register_driver(&_device_driver) < 0) { + return -ENODEV; + } + } + + /* Note: PCI-PCI bridge uses results from pci_register_driver */ + p2p_bridge(); + +#ifdef BCM_METROCORE_LOCAL_BUS + if (probe_metrocore_local_bus()) { + return -1; + } +#endif +#ifdef BCM_PLX9656_LOCAL_BUS + if (num_plx > 0) { + probe_plx_local_bus(); + } +#endif +#endif /* BCM_ICS */ + +#ifdef BCM_ROBO_SUPPORT + probe_robo_switch(); +#endif + +#if defined(BCM_PETRA_SUPPORT) || defined(BCM_DFE_SUPPORT) || defined(BCM_DNX_SUPPORT) || defined(BCM_DNXF_SUPPORT) + sand_device_create(); +#endif + +#if defined(BCM_TK371X_SUPPORT) + probe_tk371x_dev(); +#endif + /* + * Probe for EB Bus devices. + */ + if (eb_bus) { + char *tok; + uint irq = -1, eb_rd16bit=0, eb_wr16bit =0; + unsigned int eb_ba = 0x0; + + gprintk("EB bus info: %s\n", eb_bus); + tok = strtok(eb_bus,","); + while (tok) { + _parse_eb_args(tok, "BA=%x IRQ=%d RD16=%d WR16=%d", + &eb_ba, &irq, &eb_rd16bit, &eb_wr16bit); + _eb_device_create(eb_ba, irq, eb_rd16bit, eb_wr16bit); + tok = strtok(NULL,","); + } + } + + _dma_init(robo_switch); + + /* + * In order to be backward compatible with the user mode BDE + * (specifically the interrupt IOCTLs) and the CM, switch devices + * *must* come first. If this is not the case (due to the probing + * order), we let the non-switch device(s) drop down to the end of + * the device array. + */ + if (_switch_ndevices > 0) { + bde_ctrl_t tmp_dev; + int i, s = 0; + + while (s < _switch_ndevices) { + if (_devices[s].dev_type & BDE_SWITCH_DEV_TYPE) { + s++; + continue; + } + tmp_dev = _devices[s]; + for (i = s; i < _ndevices - 1; i++) { + _devices[i] = _devices[i+1]; + } + _devices[i] = tmp_dev; + } + } + + /* Initialize device locks */ + if (_ndevices > 0) { + int i; + + for (i = 0; i < _ndevices; i++) { + spin_lock_init(&_devices[i].lock); + } + } + + return 0; +} + +/* + * Function: _cleanup + * + * Purpose: + * Module cleanup function. + * Parameters: + * None + * Returns: + * Always 0 + */ +static int +_cleanup(void) +{ + int i; + + _dma_cleanup(); + +#ifdef IPROC_CMICD + if (iproc_has_cmicd()) { +#ifdef CONFIG_OF + if (!of_find_compatible_node(NULL, NULL, IPROC_CMICD_COMPATIBLE)) +#endif + { + iproc_platform_device_unregister(&iproc_cmicd_pdev); + } + iproc_platform_driver_unregister(&iproc_cmicd_driver); + } +#endif + +#if defined(BCM_ROBO_SUPPORT) +#if defined(IPROC_CMICD) + if (_cca_base) { + iounmap((void *)_cca_base); + } +#endif + + if (robo) { +#if defined(KEYSTONE) || defined(IPROC_CMICD) + robo_detach(robo); +#endif /* KEYSTONE || IPROC_CMICD */ + } + if (sbh) { +#if defined(KEYSTONE) || defined(IPROC_CMICD) + ai_soc_detach(sbh); +#endif /* KEYSTONE || IPROC_CMICD */ + } +#endif + for (i = 0; i < _ndevices; i++) { + bde_ctrl_t *ctrl = _devices + i; + + /* free allocated kernel space memory */ + if (ctrl->dev_type & BDE_SPI_DEV_TYPE) { + if (ctrl->spi_device) { + kfree(ctrl->spi_device); + } + } + } +#if (defined(BCM_PETRA_SUPPORT) || defined(BCM_DFE_SUPPORT) || defined(BCM_DNX_SUPPORT) || defined(BCM_DNXF_SUPPORT)) && (defined(__DUNE_WRX_BCM_CPU__) || defined(__DUNE_GTO_BCM_CPU__)) + if (cpu_address) { /* unmap CPU card MMIO */ + iounmap(cpu_address); + cpu_address = NULL; + } +#endif + +#ifdef BCM_ICS +#else + pci_unregister_driver(&_device_driver); +#endif /* BCM_ICS */ + return 0; +} + +/* + * Function: _pprint + * + * Purpose: + * Print proc filesystem information. + * Parameters: + * None + * Returns: + * Always 0 + */ +static int +_pprint(void) +{ + int i = 0; + + pprintf("Broadcom Device Enumerator (%s)\n", LINUX_KERNEL_BDE_NAME); + + _dma_pprint(); + + if (_ndevices == 0) { + pprintf("No devices found\n"); + } else { + pprintf("Devices:\n"); + } + for (i = 0; i < _ndevices; i++) { + bde_ctrl_t *ctrl = _devices + i; + + if (ctrl->dev_type & BDE_SWITCH_DEV_TYPE) { + pprintf("\t%d (swi) : ", i); + } else if (ctrl->dev_type & BDE_ETHER_DEV_TYPE) { + pprintf("\t%d (eth) : ", i); + } else if (ctrl->dev_type & BDE_CPU_DEV_TYPE) { + pprintf("\t%d (cpu) : ", i); + } else { + pprintf("\t%d (?) : ", i); + } + + if (ctrl->dev_state == BDE_DEV_STATE_REMOVED) { + pprintf("PCI device 0x%x:0x%x:%d REMOVED\n", + ctrl->pci_device->vendor, + ctrl->pci_device->device, + ctrl->bde_dev.rev); + continue; + } + if (ctrl->dev_type & BDE_PCI_DEV_TYPE) { + pprintf("PCI device 0x%x:0x%x:%d:0x%.8lx:0x%.8lx:%d%s\n", + ctrl->pci_device->vendor, + ctrl->pci_device->device, + ctrl->bde_dev.rev, + (unsigned long)pci_resource_start(ctrl->pci_device, 0), + (unsigned long)pci_resource_start(ctrl->pci_device, 2), + ctrl->pci_device->irq, + ctrl->use_msi ? " (MSI)" : ""); + } else if (ctrl->dev_type & BDE_SPI_DEV_TYPE) { + pprintf("SPI Device %d:%x:%x:0x%x:0x%x:%d\n", + ctrl->spi_device->cid, + ctrl->spi_device->part, + ctrl->spi_device->rev, + ctrl->spi_device->phyid_high, + ctrl->spi_device->phyid_low, + ctrl->bde_dev.rev); + } else if (ctrl->dev_type & BDE_ICS_DEV_TYPE) { + pprintf("ICS Device 0x%x:0x%x\n", + ctrl->bde_dev.device, + ctrl->bde_dev.rev); + } else if (ctrl->dev_type & BDE_AXI_DEV_TYPE) { + pprintf("AXI Device 0x%x:0x%x:0x%.8lx:%d\n", + ctrl->bde_dev.device, + ctrl->bde_dev.rev, + (unsigned long)ctrl->phys_address, + ctrl->iLine); + } else if (ctrl->dev_type & BDE_EB_DEV_TYPE) { + pprintf("EB Bus Device 0x%x:0x%x\n", + ctrl->bde_dev.device, + ctrl->bde_dev.rev); + } + if (debug >= 1) { + pprintf("\t\timask:imask2:fmask 0x%x:0x%x:0x%x\n", + ctrl->imask, + ctrl->imask2, + ctrl->fmask); + } + } + return 0; +} + +#if USE_LINUX_BDE_MMAP +/* + * Some kernels (mainly x86) prevent mapping of kernel RAM memory to + * user space via the /dev/mem device. The function below provides a + * backdoor to mapping the DMA pool to user space via the + * /dev/linux-kernel-bde device. + */ +static int _mmap(struct file *filp, struct vm_area_struct *vma) +{ + unsigned long phys_addr = vma->vm_pgoff << PAGE_SHIFT; + unsigned long size = vma->vm_end - vma->vm_start; + + if(!_dma_range_valid(phys_addr, size)) { + return -EINVAL; + } + +#ifdef REMAP_DMA_NONCACHED + vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot); +#endif + + if (remap_pfn_range(vma, + vma->vm_start, + vma->vm_pgoff, + size, + vma->vm_page_prot)) { + gprintk("Failed to mmap phys range 0x%lx-0x%lx to 0x%lx-0x%lx\n", + phys_addr, phys_addr + size, vma->vm_start,vma->vm_end); + return -EAGAIN; + } + + return 0; +} +#endif /* USE_LINUX_BDE_MMAP */ + +/* Workaround for broken Busybox/PPC insmod */ +static char _modname[] = LINUX_KERNEL_BDE_NAME; + +static gmodule_t _gmodule = { + name: LINUX_KERNEL_BDE_NAME, + major: LINUX_KERNEL_BDE_MAJOR, + init: _init, + cleanup: _cleanup, + pprint: _pprint, +#if USE_LINUX_BDE_MMAP + mmap: _mmap, +#endif +}; + +gmodule_t * +gmodule_get(void) +{ + _gmodule.name = _modname; + return &_gmodule; +} + + +/* + * BDE Interface + */ + +static const char * +_name(void) +{ + return LINUX_KERNEL_BDE_NAME; +} + +static int +_num_devices(int type) +{ + switch (type) { + case BDE_ALL_DEVICES: + return _ndevices; + case BDE_SWITCH_DEVICES: + return _switch_ndevices; + case BDE_ETHER_DEVICES: + return _ether_ndevices; + case BDE_CPU_DEVICES: + return _cpu_ndevices; + } + + return 0; +} + +static const ibde_dev_t * +_get_dev(int d) +{ + if (!VALID_DEVICE(d)) { + gprintk("_get_dev: Invalid device index %d\n", d); + return NULL; + } + + return &_devices[d].bde_dev; +} + +static uint32 +_get_dev_type(int d) +{ + if (!VALID_DEVICE(d)) { + gprintk("_get_dev: Invalid device index %d\n", d); + return 0; + } + + return _devices[d].dev_type; +} + +static uint32 +_pci_conf_read(int d, uint32 addr) +{ +#ifdef BCM_ICS + return 0xFFFFFFFF; +#else + uint32 rc = 0; + + if (!VALID_DEVICE(d)) { + gprintk("_pci_conf_read: Invalid device index %d\n", d); + return 0xFFFFFFFF; + } + + if (!(_devices[d].dev_type & BDE_PCI_DEV_TYPE)) { + gprintk("_pci_conf_read: Not PCI device %d, type %x\n", + d, _devices[d].dev_type); + return 0xFFFFFFFF; + } + + pci_read_config_dword(_devices[d].pci_device, addr, &rc); + return rc; +#endif /* BCM_ICS */ +} + +static int +_pci_conf_write(int d, uint32 addr, uint32 data) +{ +#ifdef BCM_ICS + return -1; +#else + if (!VALID_DEVICE(d)) { + gprintk("_pci_conf_write: Invalid device index %d\n", d); + return -1; + } + + if (!(_devices[d].dev_type & BDE_PCI_DEV_TYPE)) { + gprintk("_pci_conf_write: Not PCI device %d, type %x\n", + d, _devices[d].dev_type); + return -1; + } + + pci_write_config_dword(_devices[d].pci_device, addr, data); + return 0; +#endif /* BCM_ICS */ +} + +/* Initialized when the bde is created */ +static linux_bde_bus_t _bus; + +static void +_pci_bus_features(int unit, int *be_pio, int *be_packet, int *be_other) +{ + if ((_devices[unit].bde_dev.device & 0xFF00) != 0x5600 && + (_devices[unit].bde_dev.device & 0xF000) != 0xc000 && + (_devices[unit].bde_dev.device & 0xF000) != 0xb000 && + (_devices[unit].bde_dev.device & 0xF000) != 0x8000 && + (_devices[unit].bde_dev.device & 0xFFF0) != 0x0230 && + (_devices[unit].bde_dev.device & 0xFFF0) != 0xa440) { + if (be_pio) *be_pio = 0; + if (be_packet) *be_packet = 0; + if (be_other) *be_other = 0; + } else { + if (be_pio) *be_pio = _bus.be_pio; + if (be_packet) *be_packet = _bus.be_packet; + if (be_other) *be_other = _bus.be_other; + } +#if defined(BCM_METROCORE_LOCAL_BUS) + if (_devices[unit].dev_type & BDE_EB_DEV_TYPE && be_pio) { + *be_pio = 1; + } +#endif + +} + +static uint32_t +_read(int d, uint32_t addr) +{ + unsigned long flags; + volatile uint16 msb, lsb; + uint32 sl_addr, data; + + if (!VALID_DEVICE(d)) { + return -1; + } + + if (!(BDE_DEV_MEM_MAPPED(_devices[d].dev_type))) { + return -1; + } + + if (_devices[d].dev_type & BDE_DEV_BUS_RD_16BIT) { + /* + * Adjust the address presented to Eb slave. Move A15:A0 to A16:A1. + */ + sl_addr = (addr & 0xffff0000) | ((addr & 0xffff) << 1); + /* Disable interrupts */ + spin_lock_irqsave(&bus_lock, flags); + + lsb = *((uint16 *)(_devices[d].bde_dev.base_address + sl_addr)); + msb = *((uint16 *)(_devices[d].bde_dev.base_address + sl_addr)); + spin_unlock_irqrestore(&bus_lock, flags); + + return (msb << 16) | lsb; + } else { + data = ((VOL uint32_t *)_devices[d].bde_dev.base_address)[addr / 4]; +#if defined(CMIC_SOFT_BYTE_SWAP) + data = CMIC_SWAP32(data); +#endif + return data; + } +} + +static int +_write(int d, uint32_t addr, uint32_t data) +{ + unsigned long flags; + uint32 sl_addr; + + if (!VALID_DEVICE(d)) { + return -1; + } + + if (!(BDE_DEV_MEM_MAPPED(_devices[d].dev_type))) { + return -1; + } + + if (_devices[d].dev_type & BDE_DEV_BUS_WR_16BIT) { + /* + * Adjust the address presented to Eb slave. Move A15:A0 to A16:A1. + */ + sl_addr = (addr & 0xffff0000) | ((addr & 0xffff) << 1); + + /* Disable interrupts */ + spin_lock_irqsave(&bus_lock, flags); + + *((VOL uint16 *)(_devices[d].bde_dev.base_address + sl_addr)) = + data & 0xffff; + *((VOL uint16 *)(_devices[d].bde_dev.base_address + sl_addr)) = + (data >> 16) & 0xffff; + spin_unlock_irqrestore(&bus_lock, flags); + } else { +#if defined(CMIC_SOFT_BYTE_SWAP) + data = CMIC_SWAP32(data); +#endif + ((VOL uint32_t *)_devices[d].bde_dev.base_address)[addr / 4] = data; +#ifdef KEYSTONE + /* Enforce PCIe transaction ordering. Commit the write transaction */ + __asm__ __volatile__("sync"); +#endif + } + return 0; + +} + +static _ISR_RET +_isr(_ISR_PARAMS(irq, dev_id, iregs)) +{ + bde_ctrl_t *ctrl = (bde_ctrl_t *) dev_id; + + if (ctrl && ctrl->isr) { + ctrl->isr(ctrl->isr_data); + } + if (ctrl && ctrl->isr2) { + ctrl->isr2(ctrl->isr2_data); + } + return IRQ_HANDLED; +} + +static int +_interrupt_connect(int d, + void (*isr)(void *), + void *isr_data) +{ + bde_ctrl_t *ctrl; + unsigned long irq_flags; + int isr2_dev; + int isr_active; + int ret = 0; + + isr2_dev = d & LKBDE_ISR2_DEV; + d &= ~LKBDE_ISR2_DEV; + + if (!VALID_DEVICE(d)) { + gprintk("_interrupt_connect: Invalid device index %d\n", d); + return -1; + } + if (debug >= 1) { + gprintk("_interrupt_connect d %d\n", d); + } + if (!(BDE_DEV_MEM_MAPPED(_devices[d].dev_type))) { + gprintk("_interrupt_connect: Not PCI device %d, type %x\n", + d, _devices[d].dev_type); + return -1; + } + + ctrl = _devices + d; + + isr_active = (ctrl->isr || ctrl->isr2) ? 1 : 0; + + if (unlikely(debug > 1)) + gprintk("%s:isr_active = %d\n", __func__, isr_active); + + if (isr2_dev) { + if (debug >= 1) { + gprintk("connect secondary isr\n"); + } + ctrl->isr2_data = isr_data; + ctrl->isr2 = isr; + if (isr_active) { + /* Main handler (_isr) already installed */ + return 0; + } + } else { + if (debug >= 1) { + gprintk("connect primary isr\n"); + } + ctrl->isr = isr; + ctrl->isr_data = isr_data; + if (isr_active) { + /* Main handler (_isr) already installed */ + return 0; + } + } + + if (ctrl->iLine != -1) { + irq_flags = IRQF_SHARED; +#ifdef CONFIG_PCI_MSI + if (ctrl->use_msi >= PCI_USE_INT_MSI) { + ret = _msi_connect(ctrl); + if(ret != 0) + goto msi_exit; + } +#endif +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,2,84)) + if (ctrl->use_msi == PCI_USE_INT_MSIX) { + int i; + for (i = 0; i < ctrl->msix_cnt; i++) { + ret = request_irq(ctrl->entries[i].vector, _isr, + irq_flags, LINUX_KERNEL_BDE_NAME, ctrl); + if (ret < 0) + break; + } + if (ret < 0) { + while (i >= 0) + free_irq(ctrl->entries[i--].vector, ctrl->pci_device); + + goto err_disable_msi; + } + } + else +#endif + { + ret = request_irq(ctrl->iLine, _isr, irq_flags, + LINUX_KERNEL_BDE_NAME, ctrl); + if (ret < 0) + goto err_disable_msi; + + if (unlikely(debug >= 1)) + gprintk("%s(%d):device# = %d, \ + irq_flags = %lu, irq = %d\n", + __func__, __LINE__, d, + irq_flags, ctrl->pci_device ? ctrl->pci_device->irq : ctrl->iLine); + } + } + return 0; + +err_disable_msi: +#ifdef CONFIG_PCI_MSI + _msi_disconnect(ctrl); + +msi_exit: +#endif + gprintk("could not request IRQ\n"); + ctrl->isr = NULL; + ctrl->isr_data = NULL; + ctrl->isr2 = NULL; + ctrl->isr2_data = NULL; + + return -1; +} + +static int +_interrupt_disconnect(int d) +{ + bde_ctrl_t *ctrl; + int isr2_dev; + int isr_active; + + isr2_dev = d & LKBDE_ISR2_DEV; + d &= ~LKBDE_ISR2_DEV; + + if (!VALID_DEVICE(d)) { + return -1; + } + + if (debug >= 1) { + gprintk("_interrupt_disconnect d %d\n", d); + } + if (!(BDE_DEV_MEM_MAPPED(_devices[d].dev_type))) { + gprintk("_interrupt_disconnect: Not PCI device %d, type %x\n", + d, _devices[d].dev_type); + return -1; + } + + ctrl = _devices + d; + + isr_active = (ctrl->isr || ctrl->isr2) ? 1 : 0; + + if (unlikely(debug > 1)) + gprintk("%s: isr_active = %d\n", __func__, isr_active); + + if (isr2_dev) { + if (debug >= 1) { + gprintk("disconnect secondary isr\n"); + } + ctrl->isr2 = NULL; + ctrl->isr2_data = NULL; + ctrl->fmask = 0; + if (ctrl->isr) { + /* Primary handler still active */ + SYNC_IRQ(ctrl->iLine); + return 0; + } + } else { + if (debug >= 1) { + gprintk("disconnect primary isr\n"); + } + ctrl->isr = NULL; + ctrl->isr_data = NULL; + if (ctrl->isr2) { + /* Secondary handler still active */ + SYNC_IRQ(ctrl->iLine); + return 0; + } + } + + if (isr_active) { +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,2,84)) + if (ctrl->use_msi >= PCI_USE_INT_MSIX) { + int i; + for (i = 0; i < ctrl->msix_cnt; i++) + free_irq(ctrl->entries[i].vector, ctrl->pci_device); + } + else +#endif + { + free_irq(ctrl->iLine, ctrl); + } +#ifdef CONFIG_PCI_MSI + if (ctrl->use_msi >= PCI_USE_INT_MSI) { + _msi_disconnect(ctrl); + } +#endif + } + + return 0; +} + +static uint32_t +_iproc_ihost_read(int d, uint32_t addr) +{ + uint32_t *mapaddr; + uint32_t reg_val; + mapaddr = IOREMAP(addr, sizeof(uint32_t)); + if (mapaddr == NULL) { + return -1; + } + reg_val = readl(mapaddr); + iounmap(mapaddr); + return reg_val; +} + +static int +_iproc_ihost_write(int d, uint32_t addr, uint32_t data) +{ + uint32_t *mapaddr; + mapaddr = IOREMAP(addr, sizeof(uint32_t)); + if (mapaddr == NULL) { + return -1; + } + writel(data, mapaddr); + iounmap(mapaddr); + return 0; +} + +static uint32_t +_iproc_read(int d, uint32_t addr) +{ + if (!VALID_DEVICE(d)) { + return -1; + } + + if (!(BDE_DEV_MEM_MAPPED(_devices[d].dev_type))) { + return -1; + } + + if (_devices[d].dev_type & BDE_AXI_DEV_TYPE) { + return _iproc_ihost_read(d, addr); + } + + return shbde_iproc_pci_read(&_devices[d].shbde, + (void *)_devices[d].bde_dev.base_address1, + addr); +} + +static int +_iproc_write(int d, uint32_t addr, uint32_t data) +{ + if (!VALID_DEVICE(d)) { + return -1; + } + + if (!(BDE_DEV_MEM_MAPPED(_devices[d].dev_type))) { + return -1; + } + + if (_devices[d].dev_type & BDE_AXI_DEV_TYPE) { + return _iproc_ihost_write(d, addr, data); + } + + shbde_iproc_pci_write(&_devices[d].shbde, + (void *)_devices[d].bde_dev.base_address1, + addr, data); + + return 0; +} + +static int +_get_cmic_ver(int d , uint32_t *ver) +{ + + unsigned int cap_base; + uint32_t rval = 0; + + if (!VALID_DEVICE(d)) { + gprintk("%s: Invalid device index %d\n", __func__, d); + return -1; + } + + if (!(_devices[d].dev_type & BDE_PCI_DEV_TYPE)) { + gprintk("%s: Not PCI device %d, type %x\n", __func__, + d, _devices[d].dev_type); + return -1; + } + + /* Look for PCIe vendor-specific extended capability (VSEC) */ + cap_base = PCI_EXT_CAP_START; + while (cap_base) { + pci_read_config_dword(_devices[d].pci_device, cap_base, &rval); + if (rval == 0xffffffff) { + /* Assume PCI HW read error */ + gprintk("%s: PCI HW read error\n", __func__); + return -1; + } + + if (PCI_EXT_CAP_ID(rval) == PCI_EXT_CAP_ID_VNDR) { + break; + } + cap_base = PCI_EXT_CAP_NEXT(rval); + } + if (cap_base) { + /* + * VSEC layout: + * + * 0x00: PCI Express Extended Capability Header + * 0x04: Vendor-Specific Header + * 0x08: Vendor-Specific Register 1 + * 0x0c: Vendor-Specific Register 2 + * ... + * 0x24: Vendor-Specific Register 8 + */ + pci_read_config_dword(_devices[d].pci_device, cap_base + 8, &rval); + if (unlikely(debug > 1)) + gprintk("%s:Found VSEC = %u\n", __func__, rval); + + /* Determine if CMICX */ + rval = ((rval >> 12) & 0xf); + *ver = rval; + + return 0; + } else { + gprintk("%s:VSEC not found\n", __func__); + } + + return -1; +} + +#ifdef BCM_ROBO_SUPPORT +#define SOC_ROBO_PAGE_BP 8 /* for Robo Chip only */ + +#if defined(IPROC_CMICD) +extern int ccb_mii_read(int dev_type, int phy_addr, int reg_off, uint16 *data); +extern int ccb_mii_write(int dev_type, int phy_addr, int reg_off, uint16 data); + +/* device type */ +#define MII_DEV_LOCAL 0 +#define MII_DEV_EXT 1 +#endif + +static int +_spi_read(int d, uint32 addr, uint8 *buf, int len) +{ +#if defined(KEYSTONE) || defined(IPROC_CMICD) + bde_ctrl_t *ctrl; + uint8 page, offset; +#endif +#if defined(IPROC_CMICD) + int rv = 0; + uint16 value = 0; +#endif + + if (!VALID_DEVICE(d)) { + return -1; + } + + if (!(_devices[d].dev_type & BDE_SPI_DEV_TYPE)) { + gprintk("_spi_read: Not SPI device %d, type %x\n", + d, _devices[d].dev_type); + return -1; + } + +#if defined(KEYSTONE) || defined(IPROC_CMICD) + ctrl = _devices + d; +#endif + +#if defined(IPROC_CMICD) + if (addr & SOC_EXTERNAL_PHY_BUS_CPUMDIO) { + rv = ccb_mii_read(MII_DEV_EXT, (addr >> 8) & 0xff, addr & 0xff, &value); + memcpy(buf, &value, 2); + return rv; + } +#endif + +#if defined(KEYSTONE) || defined(IPROC_CMICD) + page = (addr >> SOC_ROBO_PAGE_BP) & 0xFF; + offset = addr & 0xFF; +#endif + +#if defined(IPROC_CMICD) && defined(BCM_STARFIGHTER3_SUPPORT) + if (spi_device_found) { + ROBO_SPI_RREG(ctrl->spi_device->robo, ctrl->spi_device->cid, + page, offset, buf, (uint)len); + } else +#endif + { + ROBO_RREG(ctrl->spi_device->robo, ctrl->spi_device->cid, + page, offset, buf, (uint)len); + } + + return 0; +} + +static int +_spi_write(int d, uint32 addr, uint8 *buf, int len) +{ +#if defined(KEYSTONE) || defined(IPROC_CMICD) + bde_ctrl_t *ctrl; + uint8 page, offset; +#endif +#if defined(IPROC_CMICD) + int rv = 0; + uint16 value = 0; +#endif + if (!VALID_DEVICE(d)) { + return -1; + } + + if (!(_devices[d].dev_type & BDE_SPI_DEV_TYPE)) { + gprintk("_spi_write: Not SPI device %d, type %x\n", + d, _devices[d].dev_type); + return -1; + } + +#if defined(KEYSTONE) || defined(IPROC_CMICD) + ctrl = _devices + d; +#endif + +#if defined(IPROC_CMICD) + if (addr & SOC_EXTERNAL_PHY_BUS_CPUMDIO) { + memcpy(&value, buf, 2); + rv = ccb_mii_write(MII_DEV_EXT, (addr >> 8) & 0xff, addr & 0xff, value); + return rv; + } +#endif + +#if defined(KEYSTONE) || defined(IPROC_CMICD) + page = (addr >> SOC_ROBO_PAGE_BP) & 0xFF; + offset = addr & 0xFF; +#endif + +#if defined(IPROC_CMICD) && defined(BCM_STARFIGHTER3_SUPPORT) + if (spi_device_found) { + ROBO_SPI_WREG(ctrl->spi_device->robo, ctrl->spi_device->cid, + page, offset, buf, (uint)len); + } else +#endif + { + ROBO_WREG(ctrl->spi_device->robo, ctrl->spi_device->cid, + page, offset, buf, (uint)len); + } + + return 0; +} + +#endif + +#if defined(BCM_PETRA_SUPPORT) || defined(BCM_DFE_SUPPORT) || defined(BCM_DNX_SUPPORT) || defined(BCM_DNXF_SUPPORT) +int +lkbde_cpu_write(int d, uint32 addr, uint32 *buf) +{ +#if defined(__DUNE_WRX_BCM_CPU__) || defined(__DUNE_GTO_BCM_CPU__) + *((uint32_t*)((uint8_t*)cpu_address + addr)) = *buf; +#endif + + return 0; +} + +int +lkbde_cpu_read(int d, uint32 addr, uint32 *buf) +{ +#if defined(__DUNE_WRX_BCM_CPU__) || defined(__DUNE_GTO_BCM_CPU__) + *buf = *((uint32_t*)((uint8_t*)cpu_address + addr)); +#else + *buf = (uint32_t)(-1); +#endif + + return 0; +} + +int +lkbde_cpu_pci_register(int d) +{ + bde_ctrl_t* ctrl; + uint16 cmd = 0; + + if (!VALID_DEVICE(d)) { + return -1; + } + + ctrl = &_devices[d]; + + /* enable device */ + if (pci_enable_device(ctrl->pci_device)) { + gprintk("Cannot enable pci device : vendor_id = %x, device_id = %x\n", + ctrl->pci_device->vendor, ctrl->pci_device->device); + } + + /* Add PCI_COMMAND_MEMORY and PCI_COMMAND_MASTER */ + pci_read_config_word(ctrl->pci_device, PCI_COMMAND, &cmd); + if (!(cmd & PCI_COMMAND_MEMORY) || !(cmd & PCI_COMMAND_MASTER)) { + cmd |= PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER; + pci_write_config_word(ctrl->pci_device, PCI_COMMAND, cmd); + } + + switch (ctrl->bde_dev.device) { + case GEDI_DEVICE_ID: + /* Fix bar 0 address */ /* FIXME: write full phy address */ + pci_write_config_byte(ctrl->pci_device, 0x13, 0x60); + + /* Fix Max payload size */ + pci_write_config_byte(ctrl->pci_device, 0x88, 0x2f); + pci_write_config_byte(ctrl->pci_device, 0x89, 0x10); + break; + case BCM88750_DEVICE_ID: + case BCM88753_DEVICE_ID: + case BCM88755_DEVICE_ID: + case BCM88770_DEVICE_ID: + case BCM88773_DEVICE_ID: + case BCM88774_DEVICE_ID: + case BCM88775_DEVICE_ID: + case BCM88776_DEVICE_ID: + case BCM88777_DEVICE_ID: + case BCM88950_DEVICE_ID: + case BCM88953_DEVICE_ID: + case BCM88954_DEVICE_ID: + case BCM88955_DEVICE_ID: + case BCM88956_DEVICE_ID: + case BCM88752_DEVICE_ID: + case BCM88772_DEVICE_ID: + case BCM88952_DEVICE_ID: + case ACP_PCI_DEVICE_ID: + case BCM88650_DEVICE_ID: + + case BCM88670_DEVICE_ID: + case BCM88671_DEVICE_ID: + case BCM88671M_DEVICE_ID: + case BCM88672_DEVICE_ID: + case BCM88673_DEVICE_ID: + case BCM88674_DEVICE_ID: + case BCM88675_DEVICE_ID: + case BCM88675M_DEVICE_ID: + case BCM88676_DEVICE_ID: + case BCM88676M_DEVICE_ID: + case BCM88677_DEVICE_ID: + case BCM88678_DEVICE_ID: + case BCM88679_DEVICE_ID: + + case BCM88370_DEVICE_ID: + case BCM88371_DEVICE_ID: + case BCM88371M_DEVICE_ID: + case BCM88375_DEVICE_ID: + case BCM88376_DEVICE_ID: + case BCM88376M_DEVICE_ID: + case BCM88377_DEVICE_ID: + case BCM88378_DEVICE_ID: + case BCM88379_DEVICE_ID: + case BCM88681_DEVICE_ID: + case BCM88682_DEVICE_ID: + case BCM88683_DEVICE_ID: + case BCM88684_DEVICE_ID: + case BCM88685_DEVICE_ID: + case BCM88380_DEVICE_ID: + case BCM88381_DEVICE_ID: + case BCM88680_DEVICE_ID: + case BCM88690_DEVICE_ID: + case BCM88470_DEVICE_ID: + case BCM88470P_DEVICE_ID: + case BCM88471_DEVICE_ID: + case BCM88473_DEVICE_ID: + case BCM88474_DEVICE_ID: + case BCM88474H_DEVICE_ID: + case BCM88476_DEVICE_ID: + case BCM88477_DEVICE_ID: + case BCM88270_DEVICE_ID: + case BCM88272_DEVICE_ID: + case BCM88273_DEVICE_ID: + case BCM88278_DEVICE_ID: + case BCM8206_DEVICE_ID: + case BCM88350_DEVICE_ID: + case BCM88351_DEVICE_ID: + case BCM88450_DEVICE_ID: + case BCM88451_DEVICE_ID: + case BCM88550_DEVICE_ID: + case BCM88551_DEVICE_ID: + case BCM88552_DEVICE_ID: + case BCM88651_DEVICE_ID: + case BCM88654_DEVICE_ID: + case BCM88660_DEVICE_ID: + case BCM88360_DEVICE_ID: + case BCM88361_DEVICE_ID: + case BCM88363_DEVICE_ID: + case BCM88460_DEVICE_ID: + case BCM88461_DEVICE_ID: + case BCM88560_DEVICE_ID: + case BCM88561_DEVICE_ID: + case BCM88562_DEVICE_ID: + case BCM88661_DEVICE_ID: + case BCM88664_DEVICE_ID: + /* Fix bar 0 address */ /* FIXME: write full phy address */ + pci_write_config_byte(ctrl->pci_device, 0x12, 0x10); + pci_write_config_byte(ctrl->pci_device, 0x13, 0x60); + + /* + * For DMA transactions - set Max_Payload_Size and + * Max_Read_Request_Size to 128 bytes. + */ + pci_write_config_byte(ctrl->pci_device, 0xb5, 0x0c); + pci_write_config_byte(ctrl->pci_device, 0xb4, 0x0); + break; + default: + break; + } + + /* Redo ioremap */ + if (ctrl->bde_dev.base_address) { + iounmap((void *)ctrl->bde_dev.base_address); + } + ctrl->bde_dev.base_address = (sal_vaddr_t)IOREMAP(ctrl->phys_address, 0x1000000); + + if (debug >= 1) { + gprintk("%s, %s(): info:\n", __FILE__, __FUNCTION__); + gprintk("_ndevices=%d, _switch_ndevices=%d\n", + _ndevices, _switch_ndevices); + gprintk("ctrl->dev_type=0x%x, ctrl->phys_address=0x%lx\n", + ctrl->dev_type, (unsigned long)ctrl->phys_address); + gprintk("ctrl->bde_dev.device=0x%x, ctrl->bde_dev.rev=0x%x, " + "ctrl->bde_dev.base_address=0x%lx\n", + ctrl->bde_dev.device, ctrl->bde_dev.rev, + (unsigned long)ctrl->bde_dev.base_address); + } + + return 0; +} + +/* + * Export Low level access function - currently for PCP DMA Kernel module. + */ +int +lkbde_mem_write(int d, uint32 addr, uint32 *buf) +{ + bde_ctrl_t* ctrl; + void *full_addr; + + if (!VALID_DEVICE(d)) return -1; + ctrl = &_devices[d]; + + full_addr = (void *)ctrl->bde_dev.base_address + addr; + *((uint32_t*)full_addr) = *buf; + return 0; +} +LKM_EXPORT_SYM(lkbde_mem_write); + +int +lkbde_mem_read(int d, uint32 addr, uint32 *buf) +{ + bde_ctrl_t* ctrl; + void *full_addr; + + if (!VALID_DEVICE(d)) return -1; + ctrl = &_devices[d]; + + full_addr = (void *)ctrl->bde_dev.base_address + addr; + *buf = *((uint32_t*)full_addr); + return 0; +} +LKM_EXPORT_SYM(lkbde_mem_read); +#endif /* defined(BCM_PETRA_SUPPORT) */ + +static ibde_t _ibde = { + name: _name, + num_devices: _num_devices, + get_dev: _get_dev, + get_dev_type: _get_dev_type, + pci_conf_read: _pci_conf_read, + pci_conf_write: _pci_conf_write, + pci_bus_features: _pci_bus_features, + read: _read, + write: _write, + salloc: _salloc, + sfree: _sfree, + sinval: _sinval, + sflush: _sflush, + interrupt_connect: _interrupt_connect, + interrupt_disconnect: _interrupt_disconnect, + l2p: _l2p, + p2l: _p2l, +#if defined(BCM_ROBO_SUPPORT) + spi_read: _spi_read, + spi_write: _spi_write, +#else + NULL, + NULL, +#endif /* defined(BCM_ROBO_SUPPORT) */ + iproc_read: _iproc_read, + iproc_write: _iproc_write, + get_cmic_ver: _get_cmic_ver, +}; + +/* + * Function: linux_bde_create + * + * Purpose: + * Creator function for this BDE interface. + * Parameters: + * bus - pointer to the bus features structure you want this + * bde to export. Depends on the system. + * ibde - pointer to a location to recieve the bde interface pointer. + * Returns: + * 0 on success + * -1 on failure. + * Notes: + * This is the main BDE create function for this interface. + * Used by the external system initialization code. + */ +int +linux_bde_create(linux_bde_bus_t *bus, ibde_t **ibde) +{ + + memset(&_bus, 0, sizeof(_bus)); + + if (bus) { + _bus = *bus; + } +#ifdef NONCOHERENT_DMA_MEMORY +#ifdef REMAP_DMA_NONCACHED + /* + * If we have a non-cached DMA memory pool + * there is no need to flush and invalidate. + */ + if (_dma_pool_allocated()) { + _ibde.sinval = NULL; + _ibde.sflush = NULL; + } +#endif +#else + _ibde.sinval = NULL; + _ibde.sflush = NULL; +#endif + *ibde = &_ibde; + return 0; +} + +/* + * Function: linux_bde_destroy + * + * Purpose: + * destroy this bde + * Parameters: + * BDE interface pointer + * Returns: + * 0 on success, < 0 on error. + */ +int +linux_bde_destroy(ibde_t *ibde) +{ + /* nothing */ + return 0; +} + +/* + * Backdoors provided by the kernel bde + */ + +uint32_t +lkbde_get_dev_phys(int d) +{ + if (!VALID_DEVICE(d)) { + return -1; + } + + if (!(BDE_DEV_MEM_MAPPED(_devices[d].dev_type))) { + gprintk("lkbde_get_dev_phys: Not PCI device %d, type %x\n", + d, _devices[d].dev_type); + return 0; + } + return _devices[d].phys_address; +} + +uint32_t +lkbde_get_dev_phys_hi(int d) +{ + if (!VALID_DEVICE(d)) { + return -1; + } + + if (!(BDE_DEV_MEM_MAPPED(_devices[d].dev_type))) { + gprintk("lkbde_get_dev_phys: Not PCI device %d, type %x\n", + d, _devices[d].dev_type); + return 0; + } +#ifdef PHYS_ADDR_IS_64BIT + return (uint32_t)(_devices[d].phys_address >> 32); +#else + return 0; +#endif +} + +void * +lkbde_get_dev_virt(int d) +{ + if (!VALID_DEVICE(d)) { + return NULL; + } + + if (!(BDE_DEV_MEM_MAPPED(_devices[d].dev_type))) { + gprintk("lkbde_get_dev_virt: Not PCI device %d, type %x\n", + d, _devices[d].dev_type); + return 0; + } + + if (_devices[d].alt_base_addr) { + return (void *)_devices[d].alt_base_addr; + } + + return (void *)_devices[d].bde_dev.base_address; +} + +int +lkbde_get_dev_resource(int d, int rsrc, uint32_t *flags, + uint32_t *phys_lo, uint32_t *phys_hi) +{ + if (!VALID_DEVICE(d)) { + return -1; + } + + *flags = 0; + *phys_lo = 0; + *phys_hi = 0; + + if (!(BDE_DEV_MEM_MAPPED(_devices[d].dev_type))) { + gprintk("lkbde_get_dev_phys: Not PCI device %d, type %x\n", + d, _devices[d].dev_type); + return 0; + } + + switch (rsrc) { + case 0: + *phys_lo = (uint32_t)(_devices[d].phys_address); +#ifdef PHYS_ADDR_IS_64BIT + *phys_hi = (uint32_t)(_devices[d].phys_address >> 32); +#endif + break; + case 1: + *phys_lo = (uint32_t)(_devices[d].phys_address1); +#ifdef PHYS_ADDR_IS_64BIT + *phys_hi = (uint32_t)(_devices[d].phys_address1 >> 32); +#endif + break; + default: + break; + } + + return 0; +} + +void * +lkbde_get_dma_dev(int d) +{ + if (!VALID_DEVICE(d)) { + return NULL; + } + +#ifdef LINUX_BDE_DMA_DEVICE_SUPPORT + return (void *)_devices[d].dma_dev; +#else + return (void *)_devices[d].pci_device; +#endif +} + +void * +lkbde_get_hw_dev(int d) +{ + if (!VALID_DEVICE(d)) { + return NULL; + } + + return (void *)_devices[d].pci_device; +} + +int +lkbde_dev_state_set(int d, uint32 state) +{ + bde_ctrl_t *ctrl; + + if (!VALID_DEVICE(d)) { + return -1; + } + ctrl = _devices + d; + ctrl->dev_state = state; + return 0; +} + +int +lkbde_dev_state_get(int d, uint32 *state) +{ + bde_ctrl_t *ctrl; + if (!VALID_DEVICE(d)) { + gprintk("_get_dev: Invalid device index %d\n", d); + return -1; + } + ctrl = _devices + d; + + *state = ctrl->dev_state; + return 0; +} + +int +lkbde_dev_instid_set(int d, uint32 instid) +{ + bde_ctrl_t *ctrl; + + if (!VALID_DEVICE(d)) { + return -1; + } + ctrl = _devices + d; + ctrl->inst_id = instid; + + return 0; +} + +int +lkbde_dev_instid_get(int d, uint32 *instid) +{ + bde_ctrl_t *ctrl; + + if (!VALID_DEVICE(d)) { + return -1; + } + ctrl = _devices + d; + *instid = ctrl->inst_id; + + return 0; +} +/* + * When a secondary interrupt handler is installed this function + * is used for synchronizing hardware access to the IRQ mask + * register. The secondary driver will supply a non-zero fmask + * (filter mask) to indicate which interrupt bits it controls. + * The fmask is ignored for the primary driver. + */ +int +lkbde_irq_mask_set(int d, uint32_t addr, uint32_t mask, uint32_t fmask) +{ + bde_ctrl_t *ctrl; + int isr2_dev; + unsigned long flags; + + isr2_dev = d & LKBDE_ISR2_DEV; + d &= ~LKBDE_ISR2_DEV; + + if (!VALID_DEVICE(d)) { + return -1; + } + + ctrl = _devices + d; + + /* Lock is required to synchronize access from user space */ + spin_lock_irqsave(&ctrl->lock, flags); + + if (isr2_dev) { + /* This is the secondary interrupt handler */ + ctrl->fmask = fmask; + ctrl->imask2 = mask & ctrl->fmask; + } else { + /* This is the primary interrupt handler */ + ctrl->imask = mask & ~ctrl->fmask; + } + _write(d, addr, ctrl->imask | ctrl->imask2); + + spin_unlock_irqrestore(&ctrl->lock, flags); + + return 0; +} + +/* + * When a secondary interrupt handler is installed, this function + * is used to avoid activating the user mode interrupt handler + * thread if all pending interrupts are handled in kernel space. + * + * The mask returned is the mask of all interrupts, it can be used + * to do a logical AND with fmask, the result will tell you if + * the user mode interrupt handler needs to be invoked. + * + * Note that if no secondary handler is installed, the value of + * "mask & fmask" will be zero, and hence there will be no need to read the + * current interrupt status from hardware (from kernel space). + */ +int +lkbde_irq_mask_get(int d, uint32_t *mask, uint32_t *fmask) +{ + bde_ctrl_t *ctrl; + + d &= ~LKBDE_ISR2_DEV; + + if (!VALID_DEVICE(d)) { + return -1; + } + + if (mask == NULL) { + return -1; + } + + ctrl = _devices + d; + + *fmask = ctrl->fmask; + *mask = ctrl->imask | ctrl->imask2; + + return 0; +} + + +/* + * Export functions + */ +LKM_EXPORT_SYM(linux_bde_create); +LKM_EXPORT_SYM(linux_bde_destroy); +LKM_EXPORT_SYM(lkbde_get_dev_phys); +LKM_EXPORT_SYM(lkbde_get_dev_virt); +LKM_EXPORT_SYM(lkbde_get_dev_resource); +LKM_EXPORT_SYM(lkbde_get_hw_dev); +LKM_EXPORT_SYM(lkbde_get_dma_dev); +LKM_EXPORT_SYM(lkbde_irq_mask_set); +LKM_EXPORT_SYM(lkbde_irq_mask_get); +LKM_EXPORT_SYM(lkbde_get_dev_phys_hi); +LKM_EXPORT_SYM(lkbde_dev_state_set); +LKM_EXPORT_SYM(lkbde_dev_state_get); +LKM_EXPORT_SYM(lkbde_dev_instid_set); +LKM_EXPORT_SYM(lkbde_dev_instid_get); +#if (defined(BCM_PETRA_SUPPORT) || defined(BCM_DFE_SUPPORT)) +LKM_EXPORT_SYM(lkbde_cpu_write); +LKM_EXPORT_SYM(lkbde_cpu_read); +LKM_EXPORT_SYM(lkbde_cpu_pci_register); +#endif only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/kernel/linux_dma.c +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/kernel/linux_dma.c @@ -0,0 +1,906 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: linux_dma.c,v 1.414 Broadcom SDK $ + * $Copyright: (c) 2016 Broadcom Corp. + * All Rights Reserved.$ + * + * Linux Kernel BDE DMA memory allocation + * + * + * DMA memory allocation modes + * =========================== + * + * 1. Using private pool in kernel memory + * -------------------------------------- + * In this mode the BDE module will try to assemble a physically contiguous + * of memory using the kernel page allocator. This memory block is then + * administered by the mpool allocation functions. Note that once a system + * has been running for a while, the memory fragmentation may prevent the + * allocator from assembling a contiguous memory block, however, if the + * module is loaded shortly after system startup, it is very unlikely to + * fail. + * + * This allocation method is used by default. + * + * 2. Using private pool in high memory + * ------------------------------------ + * In this mode the BDE module will assume that unused physical memory is + * present at the high_memory address, i.e. memory not managed by the Linux + * memory manager. This memory block is mapped into kernel space and + * administered by the mpool allocation functions. High memory must be + * reserved using either the mem=xxx kernel parameter (recommended), or by + * hardcoding the memory limit in the kernel image. + * + * The module parameter himem=1 enables this allocation mode. + * + * 3. Using kernel allocators (kmalloc, __get_free_pages) + * ------------------------------------------------------ + * In this mode all DMA memory is allocated from the kernel on the fly, i.e. + * no private DMA memory pool will be created. If large memory blocks are + * only allocated at system startup (or not at all), this allocation method + * is the most flexible and memory-efficient, however, it is not recommended + * for non-coherent memory platforms due to an overall system performance + * degradation arising from the use of cache flush/invalidate instructions. + * + * The module parameter dmasize=0M enables this allocation mode, however if + * DMA memory is requested from a user mode application, a private memory + * pool will be created and used irrespectively. + */ + +#include +#include +#include +#include +#include + +#ifdef BCM_PLX9656_LOCAL_BUS +#include +#endif + +/* allocation types/methods for the DMA memory pool */ +#define ALLOC_TYPE_CHUNK 0 /* use small allocations and join them */ +#define ALLOC_TYPE_API 1 /* use one allocation */ +#if _SIMPLE_MEMORY_ALLOCATION_ +#include +#if defined(IPROC_CMICD) && defined(CONFIG_CMA) && defined(CONFIG_CMA_SIZE_MBYTES) +#define DMA_MAX_ALLOC_SIZE (CONFIG_CMA_SIZE_MBYTES * 1024 * 1024) +#else +#define DMA_MAX_ALLOC_SIZE (1 << (MAX_ORDER - 1 + PAGE_SHIFT)) /* Maximum size the kernel can allocate in one allocation */ +#endif +#endif /* _SIMPLE_MEMORY_ALLOCATION_ */ + +#if _SIMPLE_MEMORY_ALLOCATION_ == 1 +#define ALLOC_METHOD_DEFAULT ALLOC_TYPE_API +#else +#define ALLOC_METHOD_DEFAULT ALLOC_TYPE_CHUNK +#endif + +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,10,0)) +#include +#define virt_to_bus virt_to_phys +#define bus_to_virt phys_to_virt +#endif + +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,21)) +#define VIRT_TO_PAGE(p) virt_to_page((void*)(p)) +#else +#define VIRT_TO_PAGE(p) virt_to_page((p)) +#endif + +/* Compatibility */ +#ifdef LKM_2_4 +#define MEM_MAP_RESERVE mem_map_reserve +#define MEM_MAP_UNRESERVE mem_map_unreserve +#else /* LKM_2_6 */ +#define MEM_MAP_RESERVE SetPageReserved +#define MEM_MAP_UNRESERVE ClearPageReserved +#endif /* LKM_2_x */ + +#ifndef GFP_DMA32 +#define GFP_DMA32 0 +#endif + +/* Flags for memory allocations */ +#ifdef SAL_BDE_XLP +static int mem_flags = GFP_ATOMIC | GFP_KERNEL | GFP_DMA; +#else +#if defined(CONFIG_ZONE_DMA32) +static int mem_flags = GFP_ATOMIC | GFP_DMA32; +#else +static int mem_flags = GFP_ATOMIC | GFP_DMA; +#endif +#endif + +/* Debug output */ +static int dma_debug = 0; +module_param(dma_debug, int, 0); +MODULE_PARM_DESC(dma_debug, +"DMA debug output enable (default 0)."); + +/* DMA memory pool size */ +static char *dmasize; +LKM_MOD_PARAM(dmasize, "s", charp, 0); +MODULE_PARM_DESC(dmasize, +"Specify DMA memory size (default 4MB)"); + +/* Select DMA memory pool allocation method */ +static int dmaalloc = ALLOC_METHOD_DEFAULT; +LKM_MOD_PARAM(dmaalloc, "i", int, 0); +MODULE_PARM_DESC(dmaalloc, "Select DMA memory allocation method"); + +/* Use high memory for DMA */ +static char *himem; +LKM_MOD_PARAM(himem, "s", charp, 0); +MODULE_PARM_DESC(himem, +"Use high memory for DMA (default no)"); + +/* DMA memory allocation */ + +#define ONE_KB 1024 +#define ONE_MB (1024*1024) + +/* Default DMA memory size */ +#ifdef SAL_BDE_DMA_MEM_DEFAULT +#define DMA_MEM_DEFAULT (SAL_BDE_DMA_MEM_DEFAULT * ONE_MB) +#else +#define DMA_MEM_DEFAULT (8 * ONE_MB) +#endif +#define DMA_MEM_DEFAULT_ROBO (4 * ONE_MB) + +/* We try to assemble a contiguous segment from chunks of this size */ +#define DMA_BLOCK_SIZE (512 * ONE_KB) + +typedef struct _dma_segment { + struct list_head list; + unsigned long req_size; /* Requested DMA segment size */ + unsigned long blk_size; /* DMA block size */ + unsigned long blk_order; /* DMA block size in alternate format */ + unsigned long seg_size; /* Current DMA segment size */ + unsigned long seg_begin; /* Logical address of segment */ + unsigned long seg_end; /* Logical end address of segment */ + unsigned long *blk_ptr; /* Array of logical DMA block addresses */ + int blk_cnt_max; /* Maximum number of block to allocate */ + int blk_cnt; /* Current number of blocks allocated */ +} dma_segment_t; + +static unsigned int _dma_mem_size = DMA_MEM_DEFAULT; +static mpool_handle_t _dma_pool = NULL; +static void __iomem *_dma_vbase = NULL; +/* cpu physical address for mmap */ +static phys_addr_t _cpu_pbase = 0; +/* + * DMA bus address, it is either identical to cpu physical address + * or another address(IOVA) translated by IOMMU. + */ +static phys_addr_t _dma_pbase = 0; +static int _use_himem = 0; +static int _use_dma_mapping = 0; +static LIST_HEAD(_dma_seg); + +#define DMA_DEV(n) lkbde_get_dma_dev(n) + +/* + * Function: _find_largest_segment + * + * Purpose: + * Find largest contiguous segment from a pool of DMA blocks. + * Parameters: + * dseg - DMA segment descriptor + * Returns: + * 0 on success, < 0 on error. + * Notes: + * Assembly stops if a segment of the requested segment size + * has been obtained. + * + * Lower address bits of the DMA blocks are used as follows: + * 0: Untagged + * 1: Discarded block + * 2: Part of largest contiguous segment + * 3: Part of current contiguous segment + */ +static int +_find_largest_segment(dma_segment_t *dseg) +{ + int i, j, blks, found; + unsigned long b, e, a; + + blks = dseg->blk_cnt; + /* Clear all block tags */ + for (i = 0; i < blks; i++) { + dseg->blk_ptr[i] &= ~3; + } + for (i = 0; i < blks && dseg->seg_size < dseg->req_size; i++) { + /* First block must be an untagged block */ + if ((dseg->blk_ptr[i] & 3) == 0) { + /* Initial segment size is the block size */ + b = dseg->blk_ptr[i]; + e = b + dseg->blk_size; + dseg->blk_ptr[i] |= 3; + /* Loop looking for adjacent blocks */ + do { + found = 0; + for (j = i + 1; j < blks && (e - b) < dseg->req_size; j++) { + a = dseg->blk_ptr[j]; + /* Check untagged blocks only */ + if ((a & 3) == 0) { + if (a == (b - dseg->blk_size)) { + /* Found adjacent block below current segment */ + dseg->blk_ptr[j] |= 3; + b = a; + found = 1; + } else if (a == e) { + /* Found adjacent block above current segment */ + dseg->blk_ptr[j] |= 3; + e += dseg->blk_size; + found = 1; + } + } + } + } while (found); + if ((e - b) > dseg->seg_size) { + /* The current block is largest so far */ + dseg->seg_begin = b; + dseg->seg_end = e; + dseg->seg_size = e - b; + /* Re-tag current and previous largest segment */ + for (j = 0; j < blks; j++) { + if ((dseg->blk_ptr[j] & 3) == 3) { + /* Tag current segment as the largest */ + dseg->blk_ptr[j] &= ~1; + } else if ((dseg->blk_ptr[j] & 3) == 2) { + /* Discard previous largest segment */ + dseg->blk_ptr[j] ^= 3; + } + } + } else { + /* Discard all blocks in current segment */ + for (j = 0; j < blks; j++) { + if ((dseg->blk_ptr[j] & 3) == 3) { + dseg->blk_ptr[j] &= ~2; + } + } + } + } + } + return 0; +} + +/* + * Function: _alloc_dma_blocks + * + * Purpose: + * Allocate DMA blocks and add them to the pool. + * Parameters: + * dseg - DMA segment descriptor + * blks - number of DMA blocks to allocate + * Returns: + * 0 on success, < 0 on error. + * Notes: + * DMA blocks are allocated using the page allocator. + */ +static int +_alloc_dma_blocks(dma_segment_t *dseg, int blks) +{ + int i, start; + unsigned long addr; + + if (dseg->blk_cnt + blks > dseg->blk_cnt_max) { + gprintk("No more DMA blocks\n"); + return -1; + } + start = dseg->blk_cnt; + dseg->blk_cnt += blks; + for (i = start; i < dseg->blk_cnt; i++) { + /* + * Note that we cannot use pci_alloc_consistent when we + * want to be able to map DMA memory to user space. + * + * The GFP_DMA flag is omitted as this imposes the ISA + * addressing limitations on x86 platforms. As long as + * we have less than 1GB of memory, we can do PCI DMA + * to all physical RAM locations. + */ + addr = __get_free_pages(mem_flags, dseg->blk_order); + if (addr) { + dseg->blk_ptr[i] = addr; + } else { + gprintk("DMA allocation failed\n"); + return -1; + } + } + return 0; +} + +/* + * Function: _dma_segment_alloc + * + * Purpose: + * Allocate large physically contiguous DMA segment. + * Parameters: + * size - requested DMA segment size + * blk_size - assemble segment from blocks of this size + * Returns: + * DMA segment descriptor. + * Notes: + * Since we cannot allocate large blocks of contiguous + * memory from the kernel, we simply keep allocating + * smaller chunks until we can assemble a contiguous + * block of the desired size. + * + * When system allowed maximum bytes of memory has been allocated + * without a successful assembly of a contiguous DMA + * segment, the allocation function will return the + * largest contiguous segment found so far. It is up + * to the calling function to decide whether this + * amount is sufficient to proceed. + */ +static dma_segment_t * +_dma_segment_alloc(size_t size, size_t blk_size) +{ + dma_segment_t *dseg; + int i, blk_ptr_size; + unsigned long page_addr; + struct sysinfo si; + + /* Sanity check */ + if (size == 0 || blk_size == 0) { + return NULL; + } + /* Allocate an initialize DMA segment descriptor */ + if ((dseg = kmalloc(sizeof(dma_segment_t), GFP_KERNEL)) == NULL) { + return NULL; + } + memset(dseg, 0, sizeof(dma_segment_t)); + dseg->req_size = size; + dseg->blk_size = PAGE_ALIGN(blk_size); + while ((PAGE_SIZE << dseg->blk_order) < dseg->blk_size) { + dseg->blk_order++; + } + + si_meminfo(&si); + dseg->blk_cnt_max = (si.totalram << PAGE_SHIFT) / dseg->blk_size; + blk_ptr_size = dseg->blk_cnt_max * sizeof(unsigned long); + /* Allocate an initialize DMA block pool */ + dseg->blk_ptr = KMALLOC(blk_ptr_size, GFP_KERNEL); + if (dseg->blk_ptr == NULL) { + kfree(dseg); + return NULL; + } + memset(dseg->blk_ptr, 0, blk_ptr_size); + /* Allocate minimum number of blocks */ + _alloc_dma_blocks(dseg, dseg->req_size / dseg->blk_size); + /* Allocate more blocks until we have a complete segment */ + do { + _find_largest_segment(dseg); + if (dseg->seg_size >= dseg->req_size) { + break; + } + } while (_alloc_dma_blocks(dseg, 8) == 0); + /* Reserve all pages in the DMA segment and free unused blocks */ + for (i = 0; i < dseg->blk_cnt; i++) { + if ((dseg->blk_ptr[i] & 3) == 2) { + dseg->blk_ptr[i] &= ~3; + for (page_addr = dseg->blk_ptr[i]; + page_addr < dseg->blk_ptr[i] + dseg->blk_size; + page_addr += PAGE_SIZE) { + MEM_MAP_RESERVE(VIRT_TO_PAGE(page_addr)); + } + } else if (dseg->blk_ptr[i]) { + dseg->blk_ptr[i] &= ~3; + free_pages(dseg->blk_ptr[i], dseg->blk_order); + dseg->blk_ptr[i] = 0; + } + } + return dseg; +} + +/* + * Function: _dma_segment_free + * + * Purpose: + * Release resources used by DMA segment. + * Parameters: + * dseg - DMA segment descriptor + * Returns: + * Nothing. + */ +static void +_dma_segment_free(dma_segment_t *dseg) +{ + int i; + unsigned long page_addr; + + if (dseg->blk_ptr) { + for (i = 0; i < dseg->blk_cnt; i++) { + if (dseg->blk_ptr[i]) { + for (page_addr = dseg->blk_ptr[i]; + page_addr < dseg->blk_ptr[i] + dseg->blk_size; + page_addr += PAGE_SIZE) { + MEM_MAP_UNRESERVE(VIRT_TO_PAGE(page_addr)); + } + free_pages(dseg->blk_ptr[i], dseg->blk_order); + } + } + kfree(dseg->blk_ptr); + kfree(dseg); + } +} + +/* + * Function: _pgalloc + * + * Purpose: + * Allocate DMA memory using page allocator + * Parameters: + * size - number of bytes to allocate + * Returns: + * Pointer to allocated DMA memory or NULL if failure. + * Notes: + * For any sizes less than DMA_BLOCK_SIZE, we ask the page + * allocator for the entire memory block, otherwise we try + * to assemble a contiguous segment ourselves. + */ +static void * +_pgalloc(size_t size) +{ + dma_segment_t *dseg; + size_t blk_size; + + blk_size = (size < DMA_BLOCK_SIZE) ? size : DMA_BLOCK_SIZE; + if ((dseg = _dma_segment_alloc(size, blk_size)) == NULL) { + return NULL; + } + if (dseg->seg_size < size) { + /* If we didn't get the full size then forget it */ + _dma_segment_free(dseg); + return NULL; + } + list_add(&dseg->list, &_dma_seg); + return (void *)dseg->seg_begin; +} + +/* + * Function: _pgfree + * + * Purpose: + * Free memory allocated by _pgalloc + * Parameters: + * ptr - pointer returned by _pgalloc + * Returns: + * 0 if succesfully freed, otherwise -1. + */ +static int +_pgfree(void *ptr) +{ + struct list_head *pos; + list_for_each(pos, &_dma_seg) { + dma_segment_t *dseg = list_entry(pos, dma_segment_t, list); + if (ptr == (void *)dseg->seg_begin) { + list_del(&dseg->list); + _dma_segment_free(dseg); + return 0; + } + } + return -1; +} + +/* + * Function: _pgcleanup + * + * Purpose: + * Free all memory allocated by _pgalloc + * Parameters: + * None + * Returns: + * Nothing. + */ +static void +_pgcleanup(void) +{ + switch (dmaalloc) { +#if _SIMPLE_MEMORY_ALLOCATION_ + case ALLOC_TYPE_API: + if (_dma_vbase) { + if (dma_debug >= 1) gprintk("freeing v=%p p=0x%lx size=0x%lx\n", _dma_vbase,(unsigned long) _dma_pbase, (unsigned long)_dma_mem_size); + dma_free_coherent(DMA_DEV(0), _dma_mem_size, _dma_vbase, _dma_pbase); + } + break; +#endif /* _SIMPLE_MEMORY_ALLOCATION_ */ + + case ALLOC_TYPE_CHUNK: { + struct list_head *pos, *tmp; + if (_use_dma_mapping) { + dma_unmap_single(DMA_DEV(0), (dma_addr_t)_dma_pbase, _dma_mem_size, DMA_BIDIRECTIONAL); + _use_dma_mapping = 0; + } + list_for_each_safe(pos, tmp, &_dma_seg) { + dma_segment_t *dseg = list_entry(pos, dma_segment_t, list); + list_del(&dseg->list); + _dma_segment_free(dseg); + } + break; + } + + default: + gprintk("DMA memory allocation method dmaalloc=%d is not supported\n", dmaalloc); + } +} + +/* + * Function: _alloc_mpool + * + * Purpose: + * Allocate DMA memory pool + * Parameters: + * size - size of DMA memory pool + * Returns: + * Nothing. + * Notes: + * If set up to use high memory, we simply map the memory into + * kernel space. + * It is assumed there is only one pool. + */ +static void +_alloc_mpool(size_t size) +{ + unsigned long pbase = 0; + +#if defined(__arm__) && !defined(CONFIG_HIGHMEM) + if (_use_himem) { + gprintk("DMA in high memory requires CONFIG_HIGHMEM on ARM CPUs.\n"); + return; + } +#endif + + if (_use_himem) { + /* Use high memory for DMA */ + pbase = virt_to_bus(high_memory); + if (((pbase + (size - 1)) >> 16) > DMA_BIT_MASK(16)) { + gprintk("DMA in high memory at 0x%lx size 0x%lx is beyond the 4GB limit and not supported.\n", pbase, (unsigned long)size); + return; + } + _cpu_pbase = _dma_pbase = pbase; + _dma_vbase = IOREMAP(_dma_pbase, size); + } else { + /* Get DMA memory from kernel */ + switch (dmaalloc) { +#if _SIMPLE_MEMORY_ALLOCATION_ + case ALLOC_TYPE_API: { + size_t alloc_size = size; /* size of memory allocated in current iteration */ + if (alloc_size > DMA_MAX_ALLOC_SIZE) { + alloc_size = DMA_MAX_ALLOC_SIZE; + } + /* get a memory allocation from the kernel */ + { + dma_addr_t dma_handle; + if (!(_dma_vbase = dma_alloc_coherent(DMA_DEV(0), alloc_size, &dma_handle, GFP_KERNEL)) || !dma_handle) { + gprintk("_alloc_mpool: Kernel failed to allocate the memory pool of size 0x%lx\n", (unsigned long)alloc_size); + return; + } + pbase = dma_handle; + } + + if (alloc_size != size) { + gprintk("_alloc_mpool: allocated 0x%lx bytes instead of 0x%lx bytes.\n", + (unsigned long)alloc_size, (unsigned long)size); + } + size = _dma_mem_size = alloc_size; + break; + } +#endif /* _SIMPLE_MEMORY_ALLOCATION_ */ + + case ALLOC_TYPE_CHUNK: + _dma_vbase = _pgalloc(size); + if (DMA_DEV(0)) { + /* + * Use dma_map_single to obtain dma bus address or IOVA if iommu is present. + */ + pbase = dma_map_single(DMA_DEV(0), _dma_vbase, size, DMA_BIDIRECTIONAL); + _use_dma_mapping = 1; + } else { + pbase = virt_to_bus(_dma_vbase); + } + break; + default: + _dma_vbase = NULL; + pbase = 0; + gprintk("DMA memory allocation method dmaalloc=%d is not supported\n", dmaalloc); + } + + _dma_pbase = pbase; + + if (dma_debug >= 1) { + gprintk("_alloc_mpool:%s _dma_vbase:%p pbase:%lx allocated:%lx dmaalloc:%d\n", + DMA_DEV(0)?"dma_dev":"", _dma_vbase, pbase, (unsigned long)size, dmaalloc); + } + + if (((pbase + (size - 1)) >> 16) > DMA_BIT_MASK(16)) { + gprintk("DMA memory allocated at 0x%lx size 0x%lx is beyond the 4GB limit and not supported.\n", pbase, (unsigned long)size); + _pgcleanup(); + _dma_vbase = NULL; + _dma_pbase = 0; + return; + } + + if (_dma_vbase) { + _cpu_pbase = virt_to_bus(_dma_vbase); + if (dma_debug >= 1) gprintk("_cpu_pbase at %lx\n", (unsigned long)_cpu_pbase); + } +#ifdef REMAP_DMA_NONCACHED + _dma_vbase = IOREMAP(_dma_pbase, size); +#endif + + } +} + +/* + * Function: _dma_cleanup + * + * Purpose: + * DMA cleanup function. + * Parameters: + * None + * Returns: + * Always 0 + */ +int +_dma_cleanup(void) +{ + if (_dma_vbase) { + mpool_destroy(_dma_pool); + if (_use_himem) { + iounmap(_dma_vbase); + } else { +#ifdef REMAP_DMA_NONCACHED + iounmap(_dma_vbase); +#endif + _pgcleanup(); + } + _dma_vbase = NULL; + _dma_pbase = 0; + _cpu_pbase = 0; + } + return 0; +} + +void _dma_init(int robo_switch) +{ + /* DMA Setup */ + if (dmasize) { + if ((dmasize[strlen(dmasize)-1] & ~0x20) == 'M') { + _dma_mem_size = simple_strtoul(dmasize, NULL, 0); + _dma_mem_size *= ONE_MB; + } else { + gprintk("DMA memory size must be specified as e.g. dmasize=8M\n"); + } + if (_dma_mem_size & (_dma_mem_size-1)) { + gprintk("dmasize must be a power of 2 (1M, 2M, 4M, 8M etc.)\n"); + _dma_mem_size = 0; + } + } else { + if(robo_switch){ + _dma_mem_size = DMA_MEM_DEFAULT_ROBO; + } + } + + if (himem) { + if ((himem[0] & ~0x20) == 'Y' || himem[0] == '1') { + _use_himem = 1; + } else if ((himem[0] & ~0x20) == 'N' || himem[0] == '0') { + _use_himem = 0; + } + } + + if (_dma_mem_size) { + _alloc_mpool(_dma_mem_size); + if (_dma_vbase == NULL) { + gprintk("no DMA memory available\n"); + } + else { + mpool_init(); + _dma_pool = mpool_create(_dma_vbase, _dma_mem_size); + } + } +} + +#if USE_LINUX_BDE_MMAP +/* + * Function: _dma_range_valid + * + * Purpose: + * Check if DMA address range is valid. + * Parameters: + * phys_addr - start physical address + * size - range size + * Returns: + * 0 : not valid + * 1 : valid + */ +int +_dma_range_valid(unsigned long phys_addr, unsigned long size) +{ + unsigned long pool_start = _cpu_pbase; + unsigned long pool_end = pool_start + _dma_mem_size; + + if (phys_addr < pool_start || (phys_addr + size) > pool_end) { + gprintk("range 0x%lx-0x%lx outside DMA pool 0x%lx-0x%lx\n", + phys_addr, phys_addr + size, pool_start, pool_end); + return 0; + } + return 1; +} +#endif + +/* + * Function: _dma_pool_allocated + * + * Purpose: + * Check if DMA pool has been allocated. + * Parameters: + * None + * Returns: + * 0 : not allocated + * 1 : allocated + */ +int +_dma_pool_allocated(void) +{ + return (_dma_vbase) ? 1 : 0; +} + +sal_paddr_t +_l2p(int d, void *vaddr) +{ + if (_dma_mem_size) { + /* dma memory is a contiguous block */ + if (vaddr) { + return _dma_pbase + (PTR_TO_UINTPTR(vaddr) - PTR_TO_UINTPTR(_dma_vbase)); + } + return 0; + } + return ((sal_paddr_t)virt_to_bus(vaddr)); +} + +void * +_p2l(int d, sal_paddr_t paddr) +{ + sal_vaddr_t vaddr = (sal_vaddr_t)_dma_vbase; + + if (_dma_mem_size) { + /* DMA memory is a contiguous block */ + if (paddr == 0) { + return NULL; + } + return (void *)(vaddr + (sal_vaddr_t)(paddr - _dma_pbase)); + } + return bus_to_virt(paddr); +} + +/* + * Some of the driver malloc's are too large for + * kmalloc(), so 'sal_alloc' and 'sal_free' in the + * linux kernel sal cannot be implemented with kmalloc(). + * + * Instead, they expect someone to provide an allocator + * that can handle the gimongous size of some of the + * allocations, and we provide it here, by allocating + * this memory out of the boot-time dma pool. + * + * These are the functions in question: + */ + +void* kmalloc_giant(int sz) +{ + return mpool_alloc(_dma_pool, sz); +} + +void kfree_giant(void* ptr) +{ + return mpool_free(_dma_pool, ptr); +} + +uint32_t * +_salloc(int d, int size, const char *name) +{ + void *ptr; + + if (_dma_mem_size) { + return mpool_alloc(_dma_pool, size); + } + if ((ptr = kmalloc(size, mem_flags)) == NULL) { + ptr = _pgalloc(size); + } + return ptr; +} + +void +_sfree(int d, void *ptr) +{ + if (_dma_mem_size) { + return mpool_free(_dma_pool, ptr); + } + if (_pgfree(ptr) < 0) { + kfree(ptr); + } +} + +int +_sinval(int d, void *ptr, int length) +{ +#if defined(dma_cache_wback_inv) + dma_cache_wback_inv((unsigned long)ptr, length); +#else +#if defined(IPROC_CMICD) || defined(BCM958525) + /* FIXME: need proper function to replace dma_cache_sync */ + dma_sync_single_for_cpu(NULL, (unsigned long)ptr, length, DMA_BIDIRECTIONAL); +#else + dma_cache_sync(NULL, ptr, length, DMA_BIDIRECTIONAL); +#endif +#endif + return 0; +} + +int +_sflush(int d, void *ptr, int length) +{ +#if defined(dma_cache_wback_inv) + dma_cache_wback_inv((unsigned long)ptr, length); +#else +#if defined(IPROC_CMICD) || defined(BCM958525) + /* FIXME: need proper function to replace dma_cache_sync */ + dma_sync_single_for_cpu(NULL, (unsigned long)ptr, length, DMA_BIDIRECTIONAL); +#else + dma_cache_sync(NULL, ptr, length, DMA_BIDIRECTIONAL); +#endif +#endif + + return 0; +} + +int +lkbde_get_dma_info(phys_addr_t* cpu_pbase, phys_addr_t* dma_pbase, ssize_t* size) +{ + if (_dma_vbase == NULL) { + if (_dma_mem_size == 0) { + _dma_mem_size = DMA_MEM_DEFAULT; + } + _alloc_mpool(_dma_mem_size); + } + *cpu_pbase = _cpu_pbase; + *dma_pbase = _dma_pbase; + *size = (_dma_vbase) ? _dma_mem_size : 0; + return 0; +} + +void +_dma_pprint(void) +{ + pprintf("DMA Memory (%s): %d bytes, %d used, %d free%s\n", + (_use_himem) ? "high" : "kernel", + (_dma_vbase) ? _dma_mem_size : 0, + (_dma_vbase) ? mpool_usage(_dma_pool) : 0, + (_dma_vbase) ? _dma_mem_size - mpool_usage(_dma_pool) : 0, + USE_LINUX_BDE_MMAP ? ", local mmap" : ""); +} + +/* + * Export functions + */ +LKM_EXPORT_SYM(kmalloc_giant); +LKM_EXPORT_SYM(kfree_giant); +LKM_EXPORT_SYM(lkbde_get_dma_info); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/kernel/linux_shbde.c +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/kernel/linux_shbde.c @@ -0,0 +1,121 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: $ + * $Copyright: (c) 2014 Broadcom Corp. + * All Rights Reserved.$ + * + */ + +#include +#include +#include +#include "linux_shbde.h" + +/* Hardware abstractions for shared BDE functions */ + +static unsigned short +linux_pcic16_read(void *pci_dev, unsigned int addr) +{ + u16 data = 0; + + pci_read_config_word((struct pci_dev *)pci_dev, addr, &data); + + return data; +} + +static void +linux_pcic16_write(void *pci_dev, unsigned int addr, unsigned short data) +{ + pci_write_config_word((struct pci_dev *)pci_dev, addr, (u16)data); +} + +static unsigned int +linux_pcic32_read(void *pci_dev, unsigned int addr) +{ + u32 data = 0; + + pci_read_config_dword((struct pci_dev *)pci_dev, addr, &data); + + return data; +} + +static void +linux_pcic32_write(void *pci_dev, unsigned int addr, unsigned int data) +{ + pci_write_config_dword((struct pci_dev *)pci_dev, addr, (u32)data); +} + +static unsigned int +linux_io32_read(void *addr) +{ + return *((volatile u32 *)addr); +} + +static void +linux_io32_write(void *addr, unsigned int data) +{ + *((volatile u32 *)addr) = data; +} + +static void +linux_usleep(int usec) +{ + udelay(usec); +} + + +/* To get the PCI parent device under linux, from only the device pointer */ +static void * +linux_pci_parent_device_get(void *pci_dev) +{ + return (void *)(((struct pci_dev *)pci_dev)->bus->self); +} + + +/* + * Function: + * linux_shbde_hal_init + * Purpose: + * Initialize hardware abstraction module for Linux kernel. + * Parameters: + * shbde - pointer to uninitialized hardware abstraction module + * log_func - optional log output function + * Returns: + * Always 0 + */ +int +linux_shbde_hal_init(shbde_hal_t *shbde, shbde_log_func_t log_func) +{ + memset(shbde, 0, sizeof(*shbde)); + + shbde->log_func = log_func; + + shbde->pcic16_read = linux_pcic16_read; + shbde->pcic16_write = linux_pcic16_write; + shbde->pcic32_read = linux_pcic32_read; + shbde->pcic32_write = linux_pcic32_write; + + shbde->io32_read = linux_io32_read; + shbde->io32_write = linux_io32_write; + + shbde->usleep = linux_usleep; + + shbde->pci_parent_device_get = linux_pci_parent_device_get; + + return 0; +} only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/kernel/linux_shbde.h +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/kernel/linux_shbde.h @@ -0,0 +1,34 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: $ + * $Copyright: (c) 2014 Broadcom Corp. + * All Rights Reserved.$ + * + */ + +#ifndef __LINUX_SHBDE_H__ +#define __LINUX_SHBDE_H__ + +#include +#include +#include + +extern int +linux_shbde_hal_init(shbde_hal_t *shbde, shbde_log_func_t log_func); + +#endif /* __LINUX_SHBDE_H__ */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/shared/mpool.c +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/shared/mpool.c @@ -0,0 +1,295 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: mpool.c,v 1.18 Broadcom SDK $ + * $Copyright: (c) 2005 Broadcom Corp. + * All Rights Reserved.$ + */ + +#include + +#ifdef __KERNEL__ + +/* + * Abstractions used when compiling for Linux kernel mode. + */ + +#include + +/* + * We cannot use the linux kernel SAL for MALLOC/FREE because + * the current implementation of sal_alloc() allocates memory + * out of an mpool created by this module... + */ +#define MALLOC(x) kmalloc(x, GFP_ATOMIC) +#define FREE(x) kfree(x) + +static spinlock_t _mpool_lock; +#define MPOOL_LOCK_INIT() spin_lock_init(&_mpool_lock) +#define MPOOL_LOCK() unsigned long flags; spin_lock_irqsave(&_mpool_lock, flags) +#define MPOOL_UNLOCK() spin_unlock_irqrestore(&_mpool_lock, flags) + +#else /* !__KERNEL__*/ + +/* + * Abstractions used when compiling for Linux user mode. + */ + +#include +#include + +#define MALLOC(x) malloc(x) +#define FREE(x) free(x) + +static sal_sem_t _mpool_lock; +#define MPOOL_LOCK_INIT() _mpool_lock = sal_sem_create("mpool_lock", 1, 1) +#define MPOOL_LOCK() sal_sem_take(_mpool_lock, sal_sem_FOREVER) +#define MPOOL_UNLOCK() sal_sem_give(_mpool_lock) + +#endif /* __KERNEL__ */ + +/* Allow external override for system cache line size */ +#ifndef BCM_CACHE_LINE_BYTES +#ifdef L1_CACHE_BYTES +#define BCM_CACHE_LINE_BYTES L1_CACHE_BYTES +#else +#define BCM_CACHE_LINE_BYTES 128 /* Should be fine on most platforms */ +#endif +#endif + +typedef struct mpool_mem_s { + unsigned char *address; + int size; + struct mpool_mem_s *next; +} mpool_mem_t; + +/* + * Function: mpool_init + * + * Purpose: + * Initialize mpool lock. + * Parameters: + * None + * Returns: + * Always 0 + */ +int +mpool_init(void) +{ + MPOOL_LOCK_INIT(); + return 0; +} + +#ifdef TRACK_DMA_USAGE +static int _dma_mem_used = 0; +#endif + +/* + * Function: mpool_alloc + * + * Purpose: + * Allocate memory block from mpool. + * Parameters: + * pool - mpool handle (from mpool_create) + * size - size of memory block to allocate + * Returns: + * Pointer to allocated memory block or NULL if allocation fails. + */ +void * +mpool_alloc(mpool_handle_t pool, int size) +{ + mpool_mem_t *ptr = pool, *newptr = NULL; + int mod; + + MPOOL_LOCK(); + + mod = size & (BCM_CACHE_LINE_BYTES - 1); + if (mod != 0 ) { + size += (BCM_CACHE_LINE_BYTES - mod); + } + while (ptr && ptr->next) { + if (ptr->next->address - (ptr->address + ptr->size) >= size) { + break; + } + ptr = ptr->next; + } + + if (!(ptr && ptr->next)) { + MPOOL_UNLOCK(); + return NULL; + } + newptr = MALLOC(sizeof(mpool_mem_t)); + if (!newptr) { + MPOOL_UNLOCK(); + return NULL; + } + + newptr->address = ptr->address + ptr->size; + newptr->size = size; + newptr->next = ptr->next; + ptr->next = newptr; +#ifdef TRACK_DMA_USAGE + _dma_mem_used += size; +#endif + MPOOL_UNLOCK(); + + return newptr->address; +} + + +/* + * Function: mpool_free + * + * Purpose: + * Free memory block allocated from mpool.. + * Parameters: + * pool - mpool handle (from mpool_create) + * addr - address of memory block to free + * Returns: + * Nothing + */ +void +mpool_free(mpool_handle_t pool, void *addr) +{ + unsigned char *address = (unsigned char *)addr; + mpool_mem_t *ptr = pool, *prev = NULL; + + MPOOL_LOCK(); + + while (ptr && ptr->next) { + if (ptr->next->address == address) { +#ifdef TRACK_DMA_USAGE + _dma_mem_used -= ptr->next->size; +#endif + break; + } + ptr = ptr->next; + } + + if (ptr && ptr->next) { + prev = ptr; + ptr = ptr->next; + prev->next = ptr->next; + FREE(ptr); + } + + MPOOL_UNLOCK(); +} + +/* + * Function: mpool_create + * + * Purpose: + * Create and initialize mpool control structures. + * Parameters: + * base_ptr - pointer to mpool memory block + * size - total size of mpool memory block + * Returns: + * mpool handle + * Notes + * The mpool handle returned must be used for subsequent + * memory allocations from the mpool. + */ +mpool_handle_t +mpool_create(void *base_ptr, int size) +{ + mpool_mem_t *head, *tail; + int mod = (int)(((unsigned long)base_ptr) & (BCM_CACHE_LINE_BYTES - 1)); + + MPOOL_LOCK(); + + if (mod) { + base_ptr = (char*)base_ptr + (BCM_CACHE_LINE_BYTES - mod); + size -= (BCM_CACHE_LINE_BYTES - mod); + } + size &= ~(BCM_CACHE_LINE_BYTES - 1); + + + head = (mpool_mem_t *)MALLOC(sizeof(mpool_mem_t)); + if (head == NULL) { + return NULL; + } + tail = (mpool_mem_t *)MALLOC(sizeof(mpool_mem_t)); + if (tail == NULL) { + FREE(head); + return NULL; + } + + head->size = tail->size = 0; + head->address = base_ptr; + tail->address = head->address + size; + head->next = tail; + tail->next = NULL; + + MPOOL_UNLOCK(); + + return head; +} + +/* + * Function: mpool_destroy + * + * Purpose: + * Free mpool control structures. + * Parameters: + * pool - mpool handle (from mpool_create) + * Returns: + * Always 0 + */ +int +mpool_destroy(mpool_handle_t pool) +{ + mpool_mem_t *ptr, *next; + + MPOOL_LOCK(); + + for (ptr = pool; ptr; ptr = next) { + next = ptr->next; + FREE(ptr); + } + + MPOOL_UNLOCK(); + + return 0; +} + +/* + * Function: mpool_usage + * + * Purpose: + * Report total sum of allocated mpool memory. + * Parameters: + * pool - mpool handle (from mpool_create) + * Returns: + * Number of bytes currently allocated using mpool_alloc. + */ +int +mpool_usage(mpool_handle_t pool) +{ + int usage = 0; + mpool_mem_t *ptr; + + MPOOL_LOCK(); + + for (ptr = pool; ptr; ptr = ptr->next) { + usage += ptr->size; + } + + MPOOL_UNLOCK(); + + return usage; +} only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/user/kernel/Makefile +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/user/kernel/Makefile @@ -0,0 +1,71 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# -*- Makefile -*- +# $Id: Makefile,v 1.1 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ +# +LOCALDIR = systems/bde/linux/user/kernel + +# Make sure we build for the kernel if this is a user-mode build +ifneq ($(platform), ) +override-target=linux-$(platform) +endif + +include $(SDK)/make/Make.config + +LIBS = $(LIBDIR)/libkern.a + +ifneq ($(kernel_version),2_4) +KERNEL_MODULE_DIR = kernel_module + +THIS_MOD_NAME := linux-user-bde +MODULE = $(LIBDIR)/$(THIS_MOD_NAME).o +KMODULE = $(LIBDIR)/$(THIS_MOD_NAME).ko + +build: kernel_libs $(MODULE) $(KMODULE) +else +MODULE = $(LIBDIR)/linux-user-bde.o + +build: kernel_libs $(MODULE) +endif + +KBUILD_EXTRA_SYMBOLS := ${BLDDIR}/../../kernel/kernel_module/Module.symvers + +$(MODULE): $(BLDDIR)/.tree $(BOBJS) $(LIBS) + $(LD) $(MODULE_LDFLAGS) -r -d $(BOBJS) $(LIBS) -o $@ +ifneq ($(kernel_version),2_4) +$(KMODULE): $(MODULE) + rm -fr $(BLDDIR)/$(KERNEL_MODULE_DIR) + mkdir $(BLDDIR)/$(KERNEL_MODULE_DIR) + cp ${SDK}/make/Makefile.linux-kmodule $(BLDDIR)/$(KERNEL_MODULE_DIR)/Makefile + cat ${KBUILD_EXTRA_SYMBOLS} > $(BLDDIR)/$(KERNEL_MODULE_DIR)/Module.symvers + MOD_NAME=$(THIS_MOD_NAME) $(MAKE) -C $(BLDDIR)/$(KERNEL_MODULE_DIR) $(THIS_MOD_NAME).ko +endif + +kernel_libs: + $(MAKE) -C $(SDK)/systems/linux/kernel/modules/shared + +include $(SDK)/make/Make.depend + +# Make.depend is before clean:: so that Make.depend's clean:: runs first. + +clean:: + $(MAKE) -C $(SDK)/systems/linux/kernel/modules/shared $@ + $(RM) $(BOBJS) $(MODULE) + +.PHONY: build kernel_libs only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/user/kernel/linux-user-bde.c +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/user/kernel/linux-user-bde.c @@ -0,0 +1,1280 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: linux-user-bde.c,v 1.80 Broadcom SDK $ + * $Copyright: (c) 2005 Broadcom Corp. + * All Rights Reserved.$ + * + * Linux User BDE Helper Module + */ +#include +#include +#include + +#include +#include +#include + +#include "linux-user-bde.h" + +#ifdef KEYSTONE +#include +#endif + + +MODULE_AUTHOR("Broadcom Corporation"); +MODULE_DESCRIPTION("User BDE Helper Module"); +MODULE_LICENSE("GPL"); + +/* CMIC/CMICe defines */ +#define CMIC_IRQ_STAT 0x00000144 +#define CMIC_IRQ_MASK 0x00000148 +#define CMIC_IRQ_MASK_1 0x0000006C +#define CMIC_IRQ_MASK_2 0x00000070 + +/* CMICm defines */ +#define CMIC_CMCx_IRQ_STAT0_OFFSET(x) (0x31400 + (0x1000 * x)) +#define CMIC_CMCx_IRQ_STAT1_OFFSET(x) (0x31404 + (0x1000 * x)) +#define CMIC_CMCx_IRQ_STAT2_OFFSET(x) (0x31408 + (0x1000 * x)) +#define CMIC_CMCx_IRQ_STAT3_OFFSET(x) (0x3140c + (0x1000 * x)) +#define CMIC_CMCx_IRQ_STAT4_OFFSET(x) (0x31410 + (0x1000 * x)) + +#define CMIC_CMCx_PCIE_IRQ_MASK0_OFFSET(x) (0x31414 + (0x1000 * x)) +#define CMIC_CMCx_PCIE_IRQ_MASK1_OFFSET(x) (0x31418 + (0x1000 * x)) +#define CMIC_CMCx_PCIE_IRQ_MASK2_OFFSET(x) (0x3141c + (0x1000 * x)) +#define CMIC_CMCx_PCIE_IRQ_MASK3_OFFSET(x) (0x31420 + (0x1000 * x)) +#define CMIC_CMCx_PCIE_IRQ_MASK4_OFFSET(x) (0x31424 + (0x1000 * x)) + +/* CMICd defines */ +#define CMIC_CMCx_IRQ_STAT5_OFFSET(x) (0x314b0 + (0x1000 * x)) +#define CMIC_CMCx_IRQ_STAT6_OFFSET(x) (0x314b4 + (0x1000 * x)) +#define CMIC_CMCx_PCIE_IRQ_MASK5_OFFSET(x) (0x314b8 + (0x1000 * x)) +#define CMIC_CMCx_PCIE_IRQ_MASK6_OFFSET(x) (0x314bc + (0x1000 * x)) + +#define CMIC_CMCx_UC0_IRQ_MASK0_OFFSET(x) (0x31428 + (0x1000 * x)) +#define CMIC_CMCx_UC0_IRQ_MASK1_OFFSET(x) (0x3142c + (0x1000 * x)) +#define CMIC_CMCx_UC0_IRQ_MASK2_OFFSET(x) (0x31430 + (0x1000 * x)) +#define CMIC_CMCx_UC0_IRQ_MASK3_OFFSET(x) (0x31434 + (0x1000 * x)) +#define CMIC_CMCx_UC0_IRQ_MASK4_OFFSET(x) (0x31438 + (0x1000 * x)) + +/* CMICX defines */ +#define INTC_INTR_REG_NUM (8) + +#define INTC_INTR_ENABLE_REG0 (0x180130f0) +#define INTC_INTR_STATUS_REG0 (0x18013190) +#define INTC_INTR_RAW_STATUS_REG0 (0x18013140) + +#define INTC_INTR_ENABLE_BASE (INTC_INTR_ENABLE_REG0) +#define INTC_INTR_STATUS_BASE (INTC_INTR_STATUS_REG0) +#define INTC_INTR_RAW_STATUS_BASE (INTC_INTR_RAW_STATUS_REG0) + + +#define READ_INTC_INTR(d, reg, v) \ + (v = user_bde->iproc_read(d, reg)) +#define WRITE_INTC_INTR(d, reg, v) \ + (user_bde->iproc_write(d, reg, v)) + +/* Allow override of default CMICm CMC */ +#ifndef BDE_CMICM_PCIE_CMC +#define BDE_CMICM_PCIE_CMC 0 +#endif + +/* Allow override of default CMICm CMC */ +#ifndef BDE_CMICD_PCIE_CMC +#define BDE_CMICD_PCIE_CMC 0 +#endif + +/* Defines used to distinguish CMICe from CMICm */ +#define CMICE_DEV_REV_ID (0x178 / sizeof(uint32)) + +static ibde_t *user_bde = NULL; + +typedef void (*isr_f)(void *); + +typedef struct bde_ctrl_s { + uint32 dev_type; + int irq; + int enabled; + int devid; + isr_f isr; + uint32 *ba; + int inst; /* associate to _bde_inst_resource[] */ +} bde_ctrl_t; + +static bde_ctrl_t _devices[LINUX_BDE_MAX_DEVICES]; + +static wait_queue_head_t _ether_interrupt_wq; +static atomic_t _ether_interrupt_has_taken_place = ATOMIC_INIT(0); + +/* + * Multiple instance resource data structure. + * To keep the DMA resource per instance. + * And track the DMA pool usage. + */ +static int _bde_multi_inst = 0; + +typedef struct { + unsigned int inst_id; + unsigned int dma_offset; + unsigned int dma_size; + wait_queue_head_t intr_wq; + atomic_t intr; +} bde_inst_resource_t; + +static bde_inst_resource_t _bde_inst_resource[LINUX_BDE_MAX_DEVICES]; + +typedef struct { + phys_addr_t cpu_pbase; /* CPU physical base address of the DMA pool */ + phys_addr_t dma_pbase; /* Bus base address of the DMA pool */ + uint32 total_size; /* Total size of the pool in MB */ + uint32 offset; /* Current offset of the pool in MB */ +}_dma_pool_t; + +static _dma_pool_t _dma_pool; + +#define ONE_MB (1024 * 1024) + +#ifdef KEYSTONE +/* + * Enforce PCIE transaction ordering. Commit the write transaction. + */ + +#define SSOC_WRITEL(val, addr) \ + do { \ + writel((val), (addr)); \ + __asm__ __volatile__("sync"); \ + } while(0) + +#else + +#define SSOC_WRITEL(val, addr) \ + writel((val), (addr)) + +#endif +/* + * Function: _interrupt + * + * Purpose: + * Interrupt Handler. + * Mask all interrupts on device and wake up interrupt + * thread. It is assumed that the interrupt thread unmasks + * interrupts again when interrupt handling is complete. + * Parameters: + * ctrl - BDE control structure for this device. + * Returns: + * Nothing + */ +static void +_cmic_interrupt(bde_ctrl_t *ctrl) +{ + int d; + uint32_t mask = 0, stat, imask = 0, fmask = 0; + bde_inst_resource_t *res; + + d = (((uint8 *)ctrl - (uint8 *)_devices) / sizeof (bde_ctrl_t)); + res = &_bde_inst_resource[ctrl->inst]; + + /* Check for secondary interrupt handler */ + if (lkbde_irq_mask_get(d, &mask, &fmask) < 0) { + fmask = 0; + } + + if (fmask != 0) { + imask = mask & ~fmask; + /* Check for pending user mode interrupts */ + stat = user_bde->read(d, CMIC_IRQ_STAT); + if ((stat & imask) == 0) { + /* All handled in kernel mode */ + lkbde_irq_mask_set(d, CMIC_IRQ_MASK, imask, 0); + return; + } + } + + lkbde_irq_mask_set(d, CMIC_IRQ_MASK, 0, 0); + + atomic_set(&res->intr, 1); + +#ifdef BDE_LINUX_NON_INTERRUPTIBLE + wake_up(&res->intr_wq); +#else + wake_up_interruptible(&res->intr_wq); +#endif +} + +static void +_cmicx_interrupt(bde_ctrl_t *ctrl) +{ + int d, i; + bde_inst_resource_t *res; + + d = (((uint8 *)ctrl - (uint8 *)_devices) / sizeof (bde_ctrl_t)); + res = &_bde_inst_resource[ctrl->inst]; + + /* Disable all interrupts.. Re-enable unserviced interrupts later + * So as to avoid getting new interrupts until the user level driver + * enumerates the interrupts to be serviced + */ + for (i = 0 ; i < INTC_INTR_REG_NUM ; i++) { + WRITE_INTC_INTR(d, (INTC_INTR_ENABLE_BASE + 4*i), 0); + } + + /* Notify */ + atomic_set(&res->intr, 1); +#ifdef BDE_LINUX_NON_INTERRUPTIBLE + wake_up(&res->intr_wq); +#else + wake_up_interruptible(&res->intr_wq); +#endif +} + +static void +_cmicm_interrupt(bde_ctrl_t *ctrl) +{ + int d; + int cmc = BDE_CMICM_PCIE_CMC; + uint32 stat, mask = 0, fmask = 0, imask = 0; + bde_inst_resource_t *res; + + d = (((uint8 *)ctrl - (uint8 *)_devices) / sizeof (bde_ctrl_t)); + res = &_bde_inst_resource[ctrl->inst]; + + lkbde_irq_mask_get(d, &mask, &fmask); + + while (fmask) { + stat = user_bde->read(d, CMIC_CMCx_IRQ_STAT0_OFFSET(cmc)); + imask = mask & ~fmask; + if (stat & imask) { + break; + } + stat = user_bde->read(d, CMIC_CMCx_IRQ_STAT1_OFFSET(cmc)); + if (ctrl->dev_type & BDE_AXI_DEV_TYPE) { + mask = user_bde->read(d, CMIC_CMCx_UC0_IRQ_MASK1_OFFSET(cmc)); + } else { + mask = user_bde->read(d, CMIC_CMCx_PCIE_IRQ_MASK1_OFFSET(cmc)); + } + if (stat & mask) { + break; + } + stat = user_bde->read(d, CMIC_CMCx_IRQ_STAT2_OFFSET(cmc)); + if (ctrl->dev_type & BDE_AXI_DEV_TYPE) { + mask = user_bde->read(d, CMIC_CMCx_UC0_IRQ_MASK2_OFFSET(cmc)); + } else { + mask = user_bde->read(d, CMIC_CMCx_PCIE_IRQ_MASK2_OFFSET(cmc)); + } + if (stat & mask) { + break; + } + stat = user_bde->read(d, CMIC_CMCx_IRQ_STAT3_OFFSET(cmc)); + if (ctrl->dev_type & BDE_AXI_DEV_TYPE) { + mask = user_bde->read(d, CMIC_CMCx_UC0_IRQ_MASK3_OFFSET(cmc)); + } else { + mask = user_bde->read(d, CMIC_CMCx_PCIE_IRQ_MASK3_OFFSET(cmc)); + } + if (stat & mask) { + break; + } + stat = user_bde->read(d, CMIC_CMCx_IRQ_STAT4_OFFSET(cmc)); + if (ctrl->dev_type & BDE_AXI_DEV_TYPE) { + mask = user_bde->read(d, CMIC_CMCx_UC0_IRQ_MASK4_OFFSET(cmc)); + } else { + mask = user_bde->read(d, CMIC_CMCx_PCIE_IRQ_MASK4_OFFSET(cmc)); + } + if (stat & mask) { + break; + } + return; + } + + if (ctrl->dev_type & BDE_AXI_DEV_TYPE) { + lkbde_irq_mask_set(d, CMIC_CMCx_UC0_IRQ_MASK0_OFFSET(cmc), 0, 0); + user_bde->write(d, CMIC_CMCx_UC0_IRQ_MASK1_OFFSET(cmc), 0); + user_bde->write(d, CMIC_CMCx_UC0_IRQ_MASK2_OFFSET(cmc), 0); + user_bde->write(d, CMIC_CMCx_UC0_IRQ_MASK3_OFFSET(cmc), 0); + user_bde->write(d, CMIC_CMCx_UC0_IRQ_MASK4_OFFSET(cmc), 0); + user_bde->write(d, CMIC_CMCx_UC0_IRQ_MASK0_OFFSET(1), 0); + user_bde->write(d, CMIC_CMCx_UC0_IRQ_MASK0_OFFSET(2), 0); + } + else { + lkbde_irq_mask_set(d, CMIC_CMCx_PCIE_IRQ_MASK0_OFFSET(cmc), 0, 0); + user_bde->write(d, CMIC_CMCx_PCIE_IRQ_MASK1_OFFSET(cmc), 0); + user_bde->write(d, CMIC_CMCx_PCIE_IRQ_MASK2_OFFSET(cmc), 0); + user_bde->write(d, CMIC_CMCx_PCIE_IRQ_MASK3_OFFSET(cmc), 0); + user_bde->write(d, CMIC_CMCx_PCIE_IRQ_MASK4_OFFSET(cmc), 0); + user_bde->write(d, CMIC_CMCx_PCIE_IRQ_MASK0_OFFSET(1), 0); + user_bde->write(d, CMIC_CMCx_PCIE_IRQ_MASK0_OFFSET(2), 0); + } + atomic_set(&res->intr, 1); +#ifdef BDE_LINUX_NON_INTERRUPTIBLE + wake_up(&res->intr_wq); +#else + wake_up_interruptible(&res->intr_wq); +#endif +} + + +static void +_cmicd_interrupt(bde_ctrl_t *ctrl) +{ + int d; + int cmc = BDE_CMICD_PCIE_CMC; + uint32 stat, mask = 0, fmask = 0, imask = 0; + bde_inst_resource_t *res; + + d = (((uint8 *)ctrl - (uint8 *)_devices) / sizeof (bde_ctrl_t)); + res = &_bde_inst_resource[ctrl->inst]; + lkbde_irq_mask_get(d, &mask, &fmask); + + while (fmask) { + stat = user_bde->read(d, CMIC_CMCx_IRQ_STAT0_OFFSET(cmc)); + imask = mask & ~fmask; + if (stat & imask) { + break; + } + stat = user_bde->read(d, CMIC_CMCx_IRQ_STAT1_OFFSET(cmc)); + mask = user_bde->read(d, CMIC_CMCx_PCIE_IRQ_MASK1_OFFSET(cmc)); + if (stat & mask) { + break; + } + stat = user_bde->read(d, CMIC_CMCx_IRQ_STAT2_OFFSET(cmc)); + mask = user_bde->read(d, CMIC_CMCx_PCIE_IRQ_MASK2_OFFSET(cmc)); + if (stat & mask) { + break; + } + stat = user_bde->read(d, CMIC_CMCx_IRQ_STAT3_OFFSET(cmc)); + mask = user_bde->read(d, CMIC_CMCx_PCIE_IRQ_MASK3_OFFSET(cmc)); + if (stat & mask) { + break; + } + stat = user_bde->read(d, CMIC_CMCx_IRQ_STAT4_OFFSET(cmc)); + mask = user_bde->read(d, CMIC_CMCx_PCIE_IRQ_MASK4_OFFSET(cmc)); + if (stat & mask) { + break; + } + stat = user_bde->read(d, CMIC_CMCx_IRQ_STAT5_OFFSET(cmc)); + mask = user_bde->read(d, CMIC_CMCx_PCIE_IRQ_MASK5_OFFSET(cmc)); + if (stat & mask) { + break; + } + stat = user_bde->read(d, CMIC_CMCx_IRQ_STAT6_OFFSET(cmc)); + mask = user_bde->read(d, CMIC_CMCx_PCIE_IRQ_MASK6_OFFSET(cmc)); + if (stat & mask) { + break; + } + return; + } + + lkbde_irq_mask_set(d, CMIC_CMCx_PCIE_IRQ_MASK0_OFFSET(cmc), 0, 0); + user_bde->write(d, CMIC_CMCx_PCIE_IRQ_MASK1_OFFSET(cmc), 0); + user_bde->write(d, CMIC_CMCx_PCIE_IRQ_MASK2_OFFSET(cmc), 0); + user_bde->write(d, CMIC_CMCx_PCIE_IRQ_MASK3_OFFSET(cmc), 0); + user_bde->write(d, CMIC_CMCx_PCIE_IRQ_MASK4_OFFSET(cmc), 0); + user_bde->write(d, CMIC_CMCx_PCIE_IRQ_MASK5_OFFSET(cmc), 0); + user_bde->write(d, CMIC_CMCx_PCIE_IRQ_MASK6_OFFSET(cmc), 0); + + atomic_set(&res->intr, 1); +#ifdef BDE_LINUX_NON_INTERRUPTIBLE + wake_up(&res->intr_wq); +#else + wake_up_interruptible(&res->intr_wq); +#endif +} + +static void +_bcm88750_interrupt(bde_ctrl_t *ctrl) +{ + int d; + bde_inst_resource_t *res; + + d = (((uint8 *)ctrl - (uint8 *)_devices) / sizeof (bde_ctrl_t)); + res = &_bde_inst_resource[ctrl->inst]; + lkbde_irq_mask_set(d, CMIC_IRQ_MASK, 0, 0); + + lkbde_irq_mask_set(d, CMIC_IRQ_MASK_1, 0, 0); + lkbde_irq_mask_set(d, CMIC_IRQ_MASK_2, 0, 0); + atomic_set(&res->intr, 1); +#ifdef BDE_LINUX_NON_INTERRUPTIBLE + wake_up(&res->intr_wq); +#else + wake_up_interruptible(&res->intr_wq); +#endif +} + +static void +_qe2k_interrupt(bde_ctrl_t *ctrl) +{ + bde_inst_resource_t *res; + + res = &_bde_inst_resource[ctrl->inst]; + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x20/sizeof(uint32)); + + atomic_set(&res->intr, 1); +#ifdef BDE_LINUX_NON_INTERRUPTIBLE + wake_up(&res->intr_wq); +#else + wake_up_interruptible(&res->intr_wq); +#endif +} + +static void +_fe2k_interrupt(bde_ctrl_t *ctrl) +{ + bde_inst_resource_t *res; + + res = &_bde_inst_resource[ctrl->inst]; + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x18/sizeof(uint32)); /* PC_INTERRUPT_MASK */ + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x24/sizeof(uint32)); /* PC_ERROR0_MASK */ + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x2c/sizeof(uint32)); /* PC_ERROR1_MASK */ + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x34/sizeof(uint32)); /* PC_UNIT_MASK */ + + atomic_set(&res->intr, 1); +#ifdef BDE_LINUX_NON_INTERRUPTIBLE + wake_up(&res->intr_wq); +#else + wake_up_interruptible(&res->intr_wq); +#endif +} + +static void +_fe2kxt_interrupt(bde_ctrl_t *ctrl) +{ + bde_inst_resource_t *res; + + res = &_bde_inst_resource[ctrl->inst]; + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x2c/sizeof(uint32)); /* PC_INTERRUPT_MASK */ + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x38/sizeof(uint32)); /* PC_ERROR0_MASK */ + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x40/sizeof(uint32)); /* PC_ERROR1_MASK */ + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x50/sizeof(uint32)); /* PC_UNIT_MASK */ + + atomic_set(&res->intr, 1); +#ifdef BDE_LINUX_NON_INTERRUPTIBLE + wake_up(&res->intr_wq); +#else + wake_up_interruptible(&res->intr_wq); +#endif +} + +static void +_bme3200_interrupt(bde_ctrl_t *ctrl) +{ + bde_inst_resource_t *res; + + res = &_bde_inst_resource[ctrl->inst]; + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x54/sizeof(uint32)); /* PI_PT_ERROR0 */ + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x5c/sizeof(uint32)); /* PI_PT_ERROR1 */ + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x64/sizeof(uint32)); /* PI_PT_ERROR2 */ + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x6c/sizeof(uint32)); /* PI_PT_ERROR3 */ + + atomic_set(&res->intr, 1); +#ifdef BDE_LINUX_NON_INTERRUPTIBLE + wake_up(&res->intr_wq); +#else + wake_up_interruptible(&res->intr_wq); +#endif +} + + +static void +_bm9600_interrupt(bde_ctrl_t *ctrl) +{ + bde_inst_resource_t *res; + + res = &_bde_inst_resource[ctrl->inst]; + + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x5c/sizeof(uint32)); /* PI_INTERRUPT_MASK */ + SSOC_WRITEL(0xffffffff, ctrl->ba + 0xc/sizeof(uint32)); /* PI_UNIT_INTERRUPT0_MASK */ + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x14/sizeof(uint32)); /* PI_UNIT_INTERRUPT1_MASK */ + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x1c/sizeof(uint32)); /* PI_UNIT_INTERRUPT2_MASK */ + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x24/sizeof(uint32)); /* PI_UNIT_INTERRUPT3_MASK */ + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x2c/sizeof(uint32)); /* PI_UNIT_INTERRUPT4_MASK */ + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x34/sizeof(uint32)); /* PI_UNIT_INTERRUPT5_MASK */ + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x3c/sizeof(uint32)); /* PI_UNIT_INTERRUPT6_MASK */ + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x44/sizeof(uint32)); /* PI_UNIT_INTERRUPT7_MASK */ + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x4c/sizeof(uint32)); /* PI_UNIT_INTERRUPT8_MASK */ + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x54/sizeof(uint32)); /* PI_UNIT_INTERRUPT9_MASK */ + + atomic_set(&res->intr, 1); +#ifdef BDE_LINUX_NON_INTERRUPTIBLE + wake_up(&res->intr_wq); +#else + wake_up_interruptible(&res->intr_wq); +#endif +} + + + +/* The actual interrupt handler of ethernet devices */ +static void +_ether_interrupt(bde_ctrl_t *ctrl) +{ +#ifdef KEYSTONE + /* + * Since the two GMAC cores are sharing the same IRQ. + * Add the checking to handle the interrupt events. + */ + if ((ctrl->devid == BCM53000_GMAC_ID)) { + if ((readl(ctrl->ba + 0x020/4) & readl(ctrl->ba + 0x024/4)) == 0) { + return; + } + } +#endif + SSOC_WRITEL(0, ctrl->ba + 0x024/4); + + atomic_set(&_ether_interrupt_has_taken_place, 1); +#ifdef BDE_LINUX_NON_INTERRUPTIBLE + wake_up(&_ether_interrupt_wq); +#else + wake_up_interruptible(&_ether_interrupt_wq); +#endif +} + + +static struct _intr_mode_s { + isr_f isr; + const char *name; +} _intr_mode[] = { + { (isr_f)_cmic_interrupt, "CMIC/CMICe" }, + { (isr_f)_cmicm_interrupt, "CMICm" }, + { (isr_f)_cmicd_interrupt, "CMICd" }, + { (isr_f)_qe2k_interrupt, "QE2K" }, + { (isr_f)_fe2k_interrupt, "FE2K" }, + { (isr_f)_fe2kxt_interrupt, "FE2KXT" }, + { (isr_f)_bme3200_interrupt, "BME3200" }, + { (isr_f)_bm9600_interrupt, "BM9600" }, + { (isr_f)_bcm88750_interrupt, "BCM88750" }, + { (isr_f)_cmicx_interrupt, "CMICx" }, + { NULL, NULL } +}; + +static const char * +_intr_mode_str(void *isr) +{ + int imx; + + imx = 0; + while (_intr_mode[imx].isr != NULL) { + if (isr == _intr_mode[imx].isr) { + return _intr_mode[imx].name; + } + imx++; + } + return NULL; +} + +static void +_devices_init(int d) +{ + bde_ctrl_t *ctrl; + uint32 ver; + + ctrl = &_devices[d]; + /* Initialize our control info */ + ctrl->dev_type = user_bde->get_dev_type(d); + ctrl->devid = user_bde->get_dev(d)->device; + ctrl->inst = 0; + + if (BDE_DEV_MEM_MAPPED(ctrl->dev_type)) { + ctrl->enabled = 0; + ctrl->ba = lkbde_get_dev_virt(d); + } + if (ctrl->dev_type & BDE_SWITCH_DEV_TYPE) { + switch (user_bde->get_dev(d)->device) { + case QE2000_DEVICE_ID: + ctrl->isr = (isr_f)_qe2k_interrupt; + break; + case BCM88020_DEVICE_ID: + ctrl->isr = (isr_f)_fe2k_interrupt; + break; + case BCM88025_DEVICE_ID: + ctrl->isr = (isr_f)_fe2kxt_interrupt; + break; + case BME3200_DEVICE_ID: + ctrl->isr = (isr_f)_bme3200_interrupt; + break; + case BM9600_DEVICE_ID: + ctrl->isr = (isr_f)_bm9600_interrupt; + break; + case BCM88750_DEVICE_ID: + case BCM88753_DEVICE_ID: + case BCM88754_DEVICE_ID: + case BCM88755_DEVICE_ID: + case BCM88752_DEVICE_ID: + ctrl->isr = (isr_f)_bcm88750_interrupt; + break; + /* FIXME: might use _devices[i].dev_type & BDE_AXI_DEV_TYPE*/ + case BCM88670_DEVICE_ID: + case BCM88671_DEVICE_ID: + case BCM88671M_DEVICE_ID: + case BCM88672_DEVICE_ID: + case BCM88673_DEVICE_ID: + case BCM88674_DEVICE_ID: + case BCM88675_DEVICE_ID: + case BCM88675M_DEVICE_ID: + case BCM88676_DEVICE_ID: + case BCM88676M_DEVICE_ID: + case BCM88677_DEVICE_ID: + case BCM88678_DEVICE_ID: + case BCM88679_DEVICE_ID: + case BCM88370_DEVICE_ID: + case BCM88371_DEVICE_ID: + case BCM88371M_DEVICE_ID: + case BCM88375_DEVICE_ID: + case BCM88376_DEVICE_ID: + case BCM88376M_DEVICE_ID: + case BCM88377_DEVICE_ID: + case BCM88378_DEVICE_ID: + case BCM88379_DEVICE_ID: + case BCM88681_DEVICE_ID: + case BCM88682_DEVICE_ID: + case BCM88683_DEVICE_ID: + case BCM88684_DEVICE_ID: + case BCM88685_DEVICE_ID: + case BCM88380_DEVICE_ID: + case BCM88381_DEVICE_ID: + case BCM88680_DEVICE_ID: + case BCM88690_DEVICE_ID: + case BCM88770_DEVICE_ID: + case BCM88773_DEVICE_ID: + case BCM88774_DEVICE_ID: + case BCM88775_DEVICE_ID: + case BCM88776_DEVICE_ID: + case BCM88777_DEVICE_ID: + case BCM88470_DEVICE_ID: + case BCM88470P_DEVICE_ID: + case BCM88471_DEVICE_ID: + case BCM88473_DEVICE_ID: + case BCM88474_DEVICE_ID: + case BCM88474H_DEVICE_ID: + case BCM88476_DEVICE_ID: + case BCM88477_DEVICE_ID: + + case BCM88270_DEVICE_ID: + case BCM88272_DEVICE_ID: + case BCM88273_DEVICE_ID: + case BCM88278_DEVICE_ID: + case BCM8206_DEVICE_ID: + case BCM88950_DEVICE_ID: + case BCM88953_DEVICE_ID: + case BCM88954_DEVICE_ID: + case BCM88955_DEVICE_ID: + case BCM88956_DEVICE_ID: + case BCM88790_DEVICE_ID: + case BCM88772_DEVICE_ID: + case BCM88952_DEVICE_ID: + ctrl->isr = (isr_f)_cmicd_interrupt; + break; + default: + /* Get CMIC version */ + if (user_bde->get_cmic_ver(d, &ver) != 0) { + ver = -1; + } + /* check if version is CMICX */ + if (ver == 0x04) { + ctrl->isr = (isr_f)_cmicx_interrupt; + } else { + ctrl->isr = (isr_f)_cmic_interrupt; + if ((ctrl->dev_type & BDE_256K_REG_SPACE) && +#ifdef BCM_PETRA_SUPPORT /* FIXME remove code when hardware design is fixed */ + ctrl->devid != 0x1234 && +#endif + readl(ctrl->ba + CMICE_DEV_REV_ID) == 0) { + ctrl->isr = (isr_f)_cmicm_interrupt; + } + } + break; + } + if (_intr_mode_str(ctrl->isr) == NULL) { + gprintk("Warning: Unknown interrupt mode\n"); + } + } +} +/* + * Function: _init + * + * Purpose: + * Module initialization. + * Attaches to kernel BDE. + * Parameters: + * None + * Returns: + * Always 0 + */ +static int +_init(void) +{ + int i; + phys_addr_t cpu_pbase, dma_pbase; + ssize_t dmasize; + bde_inst_resource_t *res; + + /* Connect to the kernel bde */ + if ((linux_bde_create(NULL, &user_bde) < 0) || user_bde == NULL) { + return -ENODEV; + } + + init_waitqueue_head(&_ether_interrupt_wq); + + lkbde_get_dma_info(&cpu_pbase, &dma_pbase, &dmasize); + + memset(&_dma_pool, 0, sizeof(_dma_pool)); + _dma_pool.cpu_pbase = cpu_pbase; + _dma_pool.dma_pbase = dma_pbase; + _dma_pool.total_size = dmasize / ONE_MB; + + memset(_devices, 0, sizeof(_devices)); + + /* Use _bde_inst_resource[0] as the default resource */ + memset(_bde_inst_resource, 0, sizeof(_bde_inst_resource)); + res = &_bde_inst_resource[0]; + res->dma_offset = 0; + res->dma_size = _dma_pool.total_size; + init_waitqueue_head(&res->intr_wq); + atomic_set(&res->intr, 0); + + for (i = 0; i < user_bde->num_devices(BDE_ALL_DEVICES); i++) { + res->inst_id |= (1 << i); + _devices_init(i); + } + return 0; +} + +/* + * Function: _cleanup + * + * Purpose: + * Module cleanup function. + * Parameters: + * None + * Returns: + * Always 0 + */ +static int +_cleanup(void) +{ + int i; + + if (user_bde) { + for (i = 0; i < user_bde->num_devices(BDE_ALL_DEVICES); i++) { + if (_devices[i].enabled && + BDE_DEV_MEM_MAPPED(_devices[i].dev_type)) { + user_bde->interrupt_disconnect(i); + } + lkbde_dev_instid_set(i, 0); + } + linux_bde_destroy(user_bde); + user_bde = NULL; + } + return 0; +} + +/* + * Function: _pprint + * + * Purpose: + * Print proc filesystem information. + * Parameters: + * None + * Returns: + * Always 0 + */ +static int +_pprint(void) +{ + int idx; + const char *name; + bde_inst_resource_t *res; + uint32 state, instid; + + pprintf("Broadcom Device Enumerator (%s)\n", LINUX_USER_BDE_NAME); + for (idx = 0; idx < user_bde->num_devices(BDE_ALL_DEVICES); idx++) { + name = _intr_mode_str(_devices[idx].isr); + if (name == NULL) { + name = "unknown"; + } + pprintf("\t%d: Interrupt mode %s ",idx, name); + (void)lkbde_dev_state_get(idx, &state); + if (state == BDE_DEV_STATE_REMOVED) { + pprintf(" Device REMOVED ! \n"); + } else { + (void)lkbde_dev_instid_get(idx, &instid); + if (instid) { + pprintf("Inst id 0x%x\n",instid); + } else { + pprintf("\n"); + } + } + } + pprintf("Instance resource \n"); + + for (idx = 0; idx < user_bde->num_devices(BDE_ALL_DEVICES); idx++) { + res = &_bde_inst_resource[idx]; + if (res->inst_id) { + pprintf("\tDev mask 0x%x : " + "DMA offset %d size %d MB\n", + res->inst_id, + res->dma_offset, + res->dma_size); + } + } + + return 0; +} + +/* + * Allocate the DMA resource from DMA pool + * Parameter : + * dma_size (IN): allocate dma_size in MB + * dma_offset (OUT): dma offset in MB + */ +static int +_dma_resource_alloc(unsigned int dma_size, unsigned int *dma_offset) +{ + uint32 left; + + left = _dma_pool.total_size - _dma_pool.offset; + if (dma_size > left) { + gprintk("ERROR: Run out the dma resource!\n"); + return -1; + } + *dma_offset = _dma_pool.offset; + _dma_pool.offset += dma_size; + return 0; +} + +static int +_dma_resource_get(int inst_id, phys_addr_t *cpu_pbase, phys_addr_t *dma_pbase, ssize_t* size) +{ + int i; + unsigned int dma_size = 0, dma_offset = 0; + bde_inst_resource_t *res; + + for (i = 0; i < user_bde->num_devices(BDE_ALL_DEVICES); i++) { + res = &_bde_inst_resource[i]; + if (res->inst_id == inst_id) { + dma_size = res->dma_size; + dma_offset = res->dma_offset; + break; + } + } + + *cpu_pbase = _dma_pool.cpu_pbase + dma_offset * ONE_MB; + *dma_pbase = _dma_pool.dma_pbase + dma_offset * ONE_MB; + *size = dma_size * ONE_MB; + + return 0; +} + +static int +_instance_validate(unsigned int inst_id, unsigned int dmasize) +{ + int i; + bde_inst_resource_t *res; + + for (i = 0; i < user_bde->num_devices(BDE_ALL_DEVICES); i++) { + res = &_bde_inst_resource[i]; + if (res->inst_id == inst_id) { + if (res->dma_size != dmasize) { + if(_devices[i].inst == 0){ + /* Skip _instance_validate (not init yet) */ + return LUBDE_SUCCESS; + } + gprintk("ERROR: dma_size mismatch\n"); + return LUBDE_FAIL; + } + return (1); + } + } + return LUBDE_SUCCESS; +} + +static int +_device_reprobe(void) +{ + int i; + for (i = 0; i < user_bde->num_devices(BDE_ALL_DEVICES); i++) { + if (_devices[i].devid == 0) { + _devices_init(i); + } + } + return 0; +} + +static int +_instance_attach(unsigned int inst_id, unsigned int dma_size) +{ + unsigned int dma_offset; + int i, exist; + bde_inst_resource_t *res; + int inst_idx = -1; + uint32 instid; + + /* Reprobe the system for hot-plugged device */ + _device_reprobe(); + + /* Validate the resource with inst_id */ + exist = _instance_validate(inst_id, dma_size); + if (exist < 0) { + return LUBDE_FAIL; + } + if (exist > 0) { + return LUBDE_SUCCESS; + } + if (_dma_resource_alloc(dma_size, &dma_offset) < 0) { + return LUBDE_FAIL; + } + for (i = 0; i < user_bde->num_devices(BDE_ALL_DEVICES); i++) { + res = &_bde_inst_resource[i]; + if ((_bde_multi_inst == 0) || (res->inst_id == 0)) { + res->inst_id = inst_id; + res->dma_offset = dma_offset; + res->dma_size = dma_size; + _bde_multi_inst++; + inst_idx = i; + init_waitqueue_head(&res->intr_wq); + atomic_set(&res->intr, 0); + break; + } + } + + for (i = 0; i < user_bde->num_devices(BDE_ALL_DEVICES); i++) { + if (inst_id & (1 << i)) { + _devices[i].inst = inst_idx; + /* Pass the instid to the kernel BDE */ + if (lkbde_dev_instid_get(i, &instid) == 0) { + if (!instid) { + lkbde_dev_instid_set(i, inst_id); + } + } + } + } + + return LUBDE_SUCCESS; +} + +/* + * Function: _ioctl + * + * Purpose: + * Handle IOCTL commands from user mode. + * Parameters: + * cmd - IOCTL cmd + * arg - IOCTL parameters + * Returns: + * 0 on success, <0 on error + */ +static int +_ioctl(unsigned int cmd, unsigned long arg) +{ + lubde_ioctl_t io; + phys_addr_t cpu_pbase, dma_pbase; + ssize_t size; + const ibde_dev_t *bde_dev; + int inst_id; + bde_inst_resource_t *res; + + if (copy_from_user(&io, (void *)arg, sizeof(io))) { + return -EFAULT; + } + + io.rc = LUBDE_SUCCESS; + + switch(cmd) { + case LUBDE_VERSION: + io.d0 = KBDE_VERSION; + break; + case LUBDE_GET_NUM_DEVICES: + io.d0 = user_bde->num_devices(io.dev); + break; + case LUBDE_GET_DEVICE: + if (io.dev >= LINUX_BDE_MAX_DEVICES) + return -EINVAL; + bde_dev = user_bde->get_dev(io.dev); + if (bde_dev) { + io.d0 = bde_dev->device; + io.d1 = bde_dev->rev; + if (BDE_DEV_MEM_MAPPED(_devices[io.dev].dev_type)) { + /* Get physical address to map */ + io.d2 = lkbde_get_dev_phys(io.dev); + io.d3 = lkbde_get_dev_phys_hi(io.dev); + } + } else { + io.rc = LUBDE_FAIL; + } + break; + case LUBDE_GET_DEVICE_TYPE: + if (io.dev >= LINUX_BDE_MAX_DEVICES) + return -EINVAL; + io.d0 = _devices[io.dev].dev_type; + break; + case LUBDE_GET_BUS_FEATURES: + if (io.dev >= LINUX_BDE_MAX_DEVICES) + return -EINVAL; + user_bde->pci_bus_features(io.dev, (int *) &io.d0, (int *) &io.d1, + (int *) &io.d2); + break; + case LUBDE_PCI_CONFIG_PUT32: + if (io.dev >= LINUX_BDE_MAX_DEVICES) + return -EINVAL; + if (_devices[io.dev].dev_type & BDE_PCI_DEV_TYPE) { + user_bde->pci_conf_write(io.dev, io.d0, io.d1); + } else { + io.rc = LUBDE_FAIL; + } + break; + case LUBDE_PCI_CONFIG_GET32: + if (io.dev >= LINUX_BDE_MAX_DEVICES) + return -EINVAL; + if (_devices[io.dev].dev_type & BDE_PCI_DEV_TYPE) { + io.d0 = user_bde->pci_conf_read(io.dev, io.d0); + } else { + io.rc = LUBDE_FAIL; + } + break; + case LUBDE_GET_DMA_INFO: + if (io.dev >= LINUX_BDE_MAX_DEVICES) + return -EINVAL; + inst_id = io.dev; + if (_bde_multi_inst){ + _dma_resource_get(inst_id, &cpu_pbase, &dma_pbase, &size); + } else { + lkbde_get_dma_info(&cpu_pbase, &dma_pbase, &size); + } + io.d0 = dma_pbase; + io.d1 = size; + /* Optionally enable DMA mmap via /dev/linux-kernel-bde */ + io.d2 = USE_LINUX_BDE_MMAP; + /* Get physical address for mmap */ + io.dx.dw[0] = cpu_pbase; +#ifdef PHYS_ADDRS_ARE_64BITS + io.dx.dw[1] = cpu_pbase >> 32; +#else + io.dx.dw[1] = 0; +#endif + break; + case LUBDE_ENABLE_INTERRUPTS: + if (io.dev >= LINUX_BDE_MAX_DEVICES) + return -EINVAL; + if (_devices[io.dev].dev_type & BDE_SWITCH_DEV_TYPE) { + if (_devices[io.dev].isr && !_devices[io.dev].enabled) { + user_bde->interrupt_connect(io.dev, + _devices[io.dev].isr, + _devices+io.dev); + _devices[io.dev].enabled = 1; + } + } else { + /* Process ethernet device interrupt */ + /* FIXME: for multiple chips */ + if (!_devices[io.dev].enabled) { + user_bde->interrupt_connect(io.dev, + (void(*)(void *))_ether_interrupt, + _devices+io.dev); + _devices[io.dev].enabled = 1; + } + } + break; + case LUBDE_DISABLE_INTERRUPTS: + if (io.dev >= LINUX_BDE_MAX_DEVICES) + return -EINVAL; + if (_devices[io.dev].enabled) { + user_bde->interrupt_disconnect(io.dev); + _devices[io.dev].enabled = 0; + } + break; + case LUBDE_WAIT_FOR_INTERRUPT: + if (io.dev >= LINUX_BDE_MAX_DEVICES) + return -EINVAL; + if (_devices[io.dev].dev_type & BDE_SWITCH_DEV_TYPE) { + res = &_bde_inst_resource[_devices[io.dev].inst]; +#ifdef BDE_LINUX_NON_INTERRUPTIBLE + wait_event_timeout(res->intr_wq, + atomic_read(&res->intr) != 0, 100); + +#else + wait_event_interruptible(res->intr_wq, + atomic_read(&res->intr) != 0); +#endif + /* + * Even if we get multiple interrupts, we + * only run the interrupt handler once. + */ + atomic_set(&res->intr, 0); + } else { +#ifdef BDE_LINUX_NON_INTERRUPTIBLE + wait_event_timeout(_ether_interrupt_wq, + atomic_read(&_ether_interrupt_has_taken_place) != 0, 100); +#else + wait_event_interruptible(_ether_interrupt_wq, + atomic_read(&_ether_interrupt_has_taken_place) != 0); +#endif + /* + * Even if we get multiple interrupts, we + * only run the interrupt handler once. + */ + atomic_set(&_ether_interrupt_has_taken_place, 0); + } + break; + case LUBDE_USLEEP: + sal_usleep(io.d0); + break; + case LUBDE_UDELAY: + sal_udelay(io.d0); + break; + case LUBDE_SEM_OP: + switch (io.d0) { + case LUBDE_SEM_OP_CREATE: + io.p0 = (bde_kernel_addr_t)sal_sem_create("", io.d1, io.d2); + break; + case LUBDE_SEM_OP_DESTROY: + sal_sem_destroy((sal_sem_t)io.p0); + break; + case LUBDE_SEM_OP_TAKE: + io.rc = sal_sem_take((sal_sem_t)io.p0, io.d2); + break; + case LUBDE_SEM_OP_GIVE: + io.rc = sal_sem_give((sal_sem_t)io.p0); + break; + default: + io.rc = LUBDE_FAIL; + break; + } + break; + case LUBDE_WRITE_IRQ_MASK: + if (io.dev >= LINUX_BDE_MAX_DEVICES) + return -EINVAL; + io.rc = lkbde_irq_mask_set(io.dev, io.d0, io.d1, 0); + break; + case LUBDE_SPI_READ_REG: + if (io.dev >= LINUX_BDE_MAX_DEVICES) + return -EINVAL; + if (user_bde->spi_read(io.dev, io.d0, io.dx.buf, io.d1) == -1) { + io.rc = LUBDE_FAIL; + } + break; + case LUBDE_SPI_WRITE_REG: + if (io.dev >= LINUX_BDE_MAX_DEVICES) + return -EINVAL; + if (user_bde->spi_write(io.dev, io.d0, io.dx.buf, io.d1) == -1) { + io.rc = LUBDE_FAIL; + } + break; + case LUBDE_READ_REG_16BIT_BUS: + if (io.dev >= LINUX_BDE_MAX_DEVICES) + return -EINVAL; + io.d1 = user_bde->read(io.dev, io.d0); + break; + case LUBDE_WRITE_REG_16BIT_BUS: + if (io.dev >= LINUX_BDE_MAX_DEVICES) + return -EINVAL; + io.rc = user_bde->write(io.dev, io.d0, io.d1); + break; +#if (defined(BCM_PETRA_SUPPORT) || defined(BCM_DFE_SUPPORT)) + case LUBDE_CPU_WRITE_REG: + { + if (io.dev >= LINUX_BDE_MAX_DEVICES) + return -EINVAL; + if (lkbde_cpu_write(io.dev, io.d0, (uint32*)io.dx.buf) == -1) { + io.rc = LUBDE_FAIL; + } + break; + } + case LUBDE_CPU_READ_REG: + { + if (io.dev >= LINUX_BDE_MAX_DEVICES) + return -EINVAL; + if (lkbde_cpu_read(io.dev, io.d0, (uint32*)io.dx.buf) == -1) { + io.rc = LUBDE_FAIL; + } + break; + } + case LUBDE_CPU_PCI_REGISTER: + { + if (io.dev >= LINUX_BDE_MAX_DEVICES) + return -EINVAL; + if (lkbde_cpu_pci_register(io.dev) == -1) { + io.rc = LUBDE_FAIL; + } + break; + } +#endif + case LUBDE_DEV_RESOURCE: + if (io.dev >= LINUX_BDE_MAX_DEVICES) + return -EINVAL; + bde_dev = user_bde->get_dev(io.dev); + if (bde_dev) { + if (BDE_DEV_MEM_MAPPED(_devices[io.dev].dev_type)) { + /* Get physical address to map */ + io.rc = lkbde_get_dev_resource(io.dev, io.d0, + &io.d1, &io.d2, &io.d3); + } + } else { + io.rc = LUBDE_FAIL; + } + break; + case LUBDE_IPROC_READ_REG: + if (io.dev >= LINUX_BDE_MAX_DEVICES) + return -EINVAL; + io.d1 = user_bde->iproc_read(io.dev, io.d0); + if (io.d1 == -1) { + io.rc = LUBDE_FAIL; + } + break; + case LUBDE_IPROC_WRITE_REG: + if (io.dev >= LINUX_BDE_MAX_DEVICES) + return -EINVAL; + if (user_bde->iproc_write(io.dev, io.d0, io.d1) == -1) { + io.rc = LUBDE_FAIL; + } + break; + case LUBDE_ATTACH_INSTANCE: + io.rc = _instance_attach(io.d0, io.d1); + break; + case LUBDE_GET_DEVICE_STATE: + if (io.dev >= LINUX_BDE_MAX_DEVICES) + return -EINVAL; + io.rc = lkbde_dev_state_get(io.dev, &io.d0); + break; + default: + gprintk("Error: Invalid ioctl (%08x)\n", cmd); + io.rc = LUBDE_FAIL; + break; + } + + if (copy_to_user((void *)arg, &io, sizeof(io))) { + return -EFAULT; + } + + return 0; +} + +/* Workaround for broken Busybox/PPC insmod */ +static char _modname[] = LINUX_USER_BDE_NAME; + +static gmodule_t _gmodule = +{ + name: LINUX_USER_BDE_NAME, + major: LINUX_USER_BDE_MAJOR, + init: _init, + cleanup: _cleanup, + pprint: _pprint, + ioctl: _ioctl, +}; + +gmodule_t* +gmodule_get(void) +{ + _gmodule.name = _modname; + return &_gmodule; +} only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/user/kernel/linux-user-bde.h +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/user/kernel/linux-user-bde.h @@ -0,0 +1,113 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: linux-user-bde.h,v 1.23 Broadcom SDK $ + * $Copyright: (c) 2005 Broadcom Corp. + * All Rights Reserved.$ + */ + +#ifndef __LINUX_USER_BDE_H__ +#define __LINUX_USER_BDE_H__ + +#include +#include +#include +#ifndef __KERNEL__ +#include +#endif + +#if defined(SAL_BDE_32BIT_USER_64BIT_KERNEL) || defined(PTRS_ARE_64BITS) +typedef uint64_t bde_kernel_addr_t; +#else +typedef uint32_t bde_kernel_addr_t; +#endif + +/* Ioctl control structure */ +typedef struct { + unsigned int dev; /* Device ID */ + unsigned int rc; /* Operation Return Code */ + unsigned int d0; /* Operation specific data */ + unsigned int d1; + unsigned int d2; + unsigned int d3; + bde_kernel_addr_t p0; + union { + unsigned int dw[2]; + unsigned char buf[64]; + } dx; +} lubde_ioctl_t; + + +/* LUBDE ioctls */ +#define LUBDE_MAGIC 'L' + +#define LUBDE_VERSION _IO(LUBDE_MAGIC, 0) +#define LUBDE_GET_NUM_DEVICES _IO(LUBDE_MAGIC, 1) +#define LUBDE_GET_DEVICE _IO(LUBDE_MAGIC, 2) +#define LUBDE_PCI_CONFIG_PUT32 _IO(LUBDE_MAGIC, 3) +#define LUBDE_PCI_CONFIG_GET32 _IO(LUBDE_MAGIC, 4) +#define LUBDE_GET_DMA_INFO _IO(LUBDE_MAGIC, 5) +#define LUBDE_ENABLE_INTERRUPTS _IO(LUBDE_MAGIC, 6) +#define LUBDE_DISABLE_INTERRUPTS _IO(LUBDE_MAGIC, 7) +#define LUBDE_USLEEP _IO(LUBDE_MAGIC, 8) +#define LUBDE_WAIT_FOR_INTERRUPT _IO(LUBDE_MAGIC, 9) +#define LUBDE_SEM_OP _IO(LUBDE_MAGIC, 10) +#define LUBDE_UDELAY _IO(LUBDE_MAGIC, 11) +#define LUBDE_GET_DEVICE_TYPE _IO(LUBDE_MAGIC, 12) +#define LUBDE_SPI_READ_REG _IO(LUBDE_MAGIC, 13) +#define LUBDE_SPI_WRITE_REG _IO(LUBDE_MAGIC, 14) +#define LUBDE_READ_REG_16BIT_BUS _IO(LUBDE_MAGIC, 19) +#define LUBDE_WRITE_REG_16BIT_BUS _IO(LUBDE_MAGIC, 20) +#define LUBDE_GET_BUS_FEATURES _IO(LUBDE_MAGIC, 21) +#define LUBDE_WRITE_IRQ_MASK _IO(LUBDE_MAGIC, 22) +#define LUBDE_CPU_WRITE_REG _IO(LUBDE_MAGIC, 23) +#define LUBDE_CPU_READ_REG _IO(LUBDE_MAGIC, 24) +#define LUBDE_CPU_PCI_REGISTER _IO(LUBDE_MAGIC, 25) +#define LUBDE_DEV_RESOURCE _IO(LUBDE_MAGIC, 26) +#define LUBDE_IPROC_READ_REG _IO(LUBDE_MAGIC, 27) +#define LUBDE_IPROC_WRITE_REG _IO(LUBDE_MAGIC, 28) +#define LUBDE_ATTACH_INSTANCE _IO(LUBDE_MAGIC, 29) +#define LUBDE_GET_DEVICE_STATE _IO(LUBDE_MAGIC, 30) + +#define LUBDE_SEM_OP_CREATE 1 +#define LUBDE_SEM_OP_DESTROY 2 +#define LUBDE_SEM_OP_TAKE 3 +#define LUBDE_SEM_OP_GIVE 4 + +#define LUBDE_SUCCESS 0 +#define LUBDE_FAIL ((unsigned int)-1) + + +/* + * Version history + * 1:add LUBDE_GET_DEVICE_STATE to support PCI hot plug + */ +#define KBDE_VERSION 1 + + +/* This is the signal that will be used + * when an interrupt occurs + */ + +#ifndef __KERNEL__ +#include +#endif + +#define LUBDE_INTERRUPT_SIGNAL SIGUSR1 +#define LUBDE_ETHER_INTERRUPT_SIGNAL SIGUSR2 + +#endif /* __LUBDE_H__ */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/shared/include/shbde.h +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/shared/include/shbde.h @@ -0,0 +1,77 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: $ + * $Copyright: (c) 2014 Broadcom Corp. + * All Rights Reserved.$ + * + */ + +#ifndef __SHBDE_H__ +#define __SHBDE_H__ + +typedef void (*shbde_log_func_t)(int level, const char *str, int param); + +#define SHBDE_ERR 0 +#define SHBDE_WARN 1 +#define SHBDE_DBG 2 + +/* iProc configuration (primarily used for PCI-AXI bridge) */ +typedef struct shbde_iproc_config_s { + unsigned int dev_id; + unsigned int dev_rev; + unsigned int use_msi; + unsigned int iproc_ver; + unsigned int cmic_ver; + unsigned int cmic_rev; + unsigned int dma_hi_bits; + unsigned int mdio_base_addr; + unsigned int pcie_phy_addr; + unsigned int adjust_pcie_preemphasis; +} shbde_iproc_config_t; + +/* Hardware abstraction functions */ +typedef struct shbde_hal_s { + + /* Optional log output interface */ + shbde_log_func_t log_func; + + /* PCI configuration access */ + unsigned char (*pcic8_read)(void *pci_dev, unsigned int reg); + void (*pcic8_write)(void *pci_dev, unsigned int reg, unsigned char data); + unsigned short (*pcic16_read)(void *pci_dev, unsigned int reg); + void (*pcic16_write)(void *pci_dev, unsigned int reg, unsigned short data); + unsigned int (*pcic32_read)(void *pci_dev, unsigned int reg); + void (*pcic32_write)(void *pci_dev, unsigned int reg, unsigned int data); + + /* iProc register access */ + unsigned int (*io32_read)(void *addr); + void (*io32_write)(void *addr, unsigned int); + + /* usleep function (optional) */ + void (*usleep)(int usec); + + /* PCI parent device access */ + void *(*pci_parent_device_get)(void *pci_dev); + + /* iProc configuration */ + shbde_iproc_config_t icfg; + +} shbde_hal_t; + + +#endif /* __SHBDE_H__ */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/shared/include/shbde_iproc.h +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/shared/include/shbde_iproc.h @@ -0,0 +1,49 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: $ + * $Copyright: (c) 2014 Broadcom Corp. + * All Rights Reserved.$ + * + */ + +#ifndef __SHBDE_IPROC_H__ +#define __SHBDE_IPROC_H__ + +#include + +extern int +shbde_iproc_config_init(shbde_iproc_config_t *icfg, + unsigned int dev_id, unsigned int dev_rev); + +extern int +shbde_iproc_paxb_init(shbde_hal_t *shbde, void *iproc_regs, + shbde_iproc_config_t *icfg); + +extern unsigned int +shbde_iproc_pci_read(shbde_hal_t *shbde, void *iproc_regs, + unsigned int addr); + +extern void +shbde_iproc_pci_write(shbde_hal_t *shbde, void *iproc_regs, + unsigned int addr, unsigned int data); + +extern int +shbde_iproc_pcie_preemphasis_set(shbde_hal_t *shbde, void *iproc_regs, + shbde_iproc_config_t *icfg, void *pci_dev); + +#endif /* __SHBDE_IPROC_H__ */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/shared/include/shbde_mdio.h +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/shared/include/shbde_mdio.h @@ -0,0 +1,60 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: $ + * $Copyright: (c) 2015 Broadcom Corp. + * All Rights Reserved.$ + * + */ + +#ifndef __SHBDE_MDIO_H__ +#define __SHBDE_MDIO_H__ + +#include + +typedef struct shbde_mdio_ctrl_s { + + /* Primary HAL*/ + shbde_hal_t *shbde; + + /* Context for iProc MDIO register access */ + void *regs; + + /* Base address for MDIO registers */ + unsigned int base_addr; + + /* iProc MDIO register access */ + unsigned int (*io32_read)(shbde_hal_t *shbde, void *iproc_regs, + unsigned int addr); + void (*io32_write)(shbde_hal_t *shbde, void *iproc_regs, + unsigned int addr, unsigned int data); + +} shbde_mdio_ctrl_t; + + +extern int +shbde_iproc_mdio_init(shbde_mdio_ctrl_t *smc); + +extern int +shbde_iproc_mdio_read(shbde_mdio_ctrl_t *smc, unsigned int phy_addr, + unsigned int reg, unsigned int *val); + +extern int +shbde_iproc_mdio_write(shbde_mdio_ctrl_t *smc, unsigned int phy_addr, + unsigned int reg, unsigned int val); + +#endif /* __SHBDE_MDIO_H__ */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/shared/include/shbde_pci.h +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/shared/include/shbde_pci.h @@ -0,0 +1,47 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: $ + * $Copyright: (c) 2014 Broadcom Corp. + * All Rights Reserved.$ + * + */ + +#ifndef __SHBDE_PCI_H__ +#define __SHBDE_PCI_H__ + +#include + +extern unsigned int +shbde_pci_pcie_cap(shbde_hal_t *shbde, void *pci_dev); + +extern int +shbde_pci_is_pcie(shbde_hal_t *shbde, void *pci_dev); + +extern int +shbde_pci_is_iproc(shbde_hal_t *shbde, void *pci_dev, int *cmic_bar); + +extern int +shbde_pci_max_payload_set(shbde_hal_t *shbde, void *pci_dev, int maxpayload); + +extern int +shbde_pci_iproc_version_get(shbde_hal_t *shbde, void *pci_dev, + unsigned int *iproc_ver, + unsigned int *cmic_ver, + unsigned int *cmic_rev); + +#endif /* __SHBDE_PCI_H__ */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/shared/shbde_iproc.c +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/shared/shbde_iproc.c @@ -0,0 +1,466 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: $ + * $Copyright: (c) 2014 Broadcom Corp. + * All Rights Reserved.$ + * + */ + +#include +#include +#include + +/* PAXB register offsets within PCI BAR0 window */ +#define BAR0_PAXB_ENDIANESS 0x2030 +#define BAR0_PAXB_PCIE_EP_AXI_CONFIG 0x2104 +#define BAR0_PAXB_CONFIG_IND_ADDR 0x2120 +#define BAR0_PAXB_CONFIG_IND_DATA 0x2124 + +#define BAR0_PAXB_IMAP0_0 (0x2c00) +#define BAR0_PAXB_IMAP0_1 (0x2c04) +#define BAR0_PAXB_IMAP0_2 (0x2c08) +#define BAR0_PAXB_IMAP0_7 (0x2c1c) + +#define BAR0_PAXB_OARR_FUNC0_MSI_PAGE 0x2d34 +#define BAR0_PAXB_OARR_2 0x2d60 +#define BAR0_PAXB_OARR_2_UPPER 0x2d64 +#define BAR0_DMU_PCU_PCIE_SLAVE_RESET_MODE 0x7024 + +/* Force byte pointer for offset adjustments */ +#define ROFFS(_ptr, _offset) ((unsigned char*)(_ptr) + (_offset)) + +#define PAXB_CONFIG_IND_ADDRr_PROTOCOL_LAYERf_SHFT 11 +#define PAXB_CONFIG_IND_ADDRr_PROTOCOL_LAYERf_MASK 0x3 +#define PAXB_CONFIG_IND_ADDRr_ADDRESSf_SHFT 0 +#define PAXB_CONFIG_IND_ADDRr_ADDRESSf_MASK 0x7ff + +/* Register value set/get by field */ +#define REG_FIELD_SET(_r, _f, _r_val, _f_val) \ + _r_val = ((_r_val) & ~(_r##_##_f##_MASK << _r##_##_f##_SHFT)) | \ + (((_f_val) & _r##_##_f##_MASK) << _r##_##_f##_SHFT) +#define REG_FIELD_GET(_r, _f, _r_val) \ + (((_r_val) >> _r##_##_f##_SHFT) & _r##_##_f##_MASK) + +/* PCIe capabilities definition */ +#ifndef PCI_EXP_LNKSTA +#define PCI_EXP_LNKSTA 0x12 +#endif +/* Current Link Speed 5.0GT/s */ +#ifndef PCI_EXP_LNKSTA_CLS_5_0GB +#define PCI_EXP_LNKSTA_CLS_5_0GB 2 +#endif +#ifndef PCI_EXP_LNKSTA2 +#define PCI_EXP_LNKSTA2 0x32 +#endif +/* Current Deemphasis Level -3.5 dB */ +#ifndef PCI_EXP_LNKSTA2_CDL_3_5DB +#define PCI_EXP_LNKSTA2_CDL_3_5DB 0x1 +#endif + +static unsigned int +iproc32_read(shbde_hal_t *shbde, void *addr) +{ + if (!shbde || !shbde->io32_read) { + return 0; + } + return shbde->io32_read(addr); +} + +static void +iproc32_write(shbde_hal_t *shbde, void *addr, unsigned int data) +{ + if (!shbde || !shbde->io32_write) { + return; + } + shbde->io32_write(addr, data); +} + +static void +wait_usec(shbde_hal_t *shbde, int usec) +{ + if (shbde && shbde->usleep) { + shbde->usleep(usec); + } else { + int idx; + volatile int count; + for (idx = 0; idx < usec; idx++) { + for (count = 0; count < 100; count++); + } + } +} + +/* + * Function: + * shbde_iproc_config_init + * Purpose: + * Initialize iProc configuration parameters + * Parameters: + * icfg - pointer to empty iProc configuration structure + * Returns: + * -1 if error, otherwise 0 + */ +int +shbde_iproc_config_init(shbde_iproc_config_t *icfg, + unsigned int dev_id, unsigned int dev_rev) +{ + if (!icfg) { + return -1; + } + + /* Save device ID and revision */ + icfg->dev_id = dev_id; + icfg->dev_rev = dev_rev; + + /* Check device families first */ + switch (icfg->dev_id & 0xfff0) { + case 0x8400: /* Greyhound Lite */ + case 0x8410: /* Greyhound */ + case 0x8420: /* Bloodhound */ + case 0x8450: /* Elkhound */ + case 0xb060: /* Ranger2(Greyhound) */ + case 0x8360: /* Greyhound 53365 & 53369 */ + case 0xb260: /* saber2 */ + case 0xb460: /* saber2+ */ + case 0xb170: /* Hurricane3-MG */ + case 0x8570: /* Greyhound2 */ + case 0xb070: /* Greyhound2(emulation) */ + case 0x8580: /* Greyhound2(emulation) */ + case 0xb230: /* Dagger2 */ + icfg->iproc_ver = 7; + icfg->dma_hi_bits = 0x2; + break; + case 0xb560: /* Apache */ + case 0xb760: /* Maverick */ + icfg->iproc_ver = 0xB; + break; + case 0xb160: /* Hurricane3 */ + case 0x8440: /* Wolfhound2 */ + case 0x8430: /* Foxhound2 */ + icfg->iproc_ver = 10; + icfg->dma_hi_bits = 0x2; + break; + default: + break; + } + + /* Check for exceptions */ + switch (icfg->dev_id) { + case 0xb069: + case 0xb068: + icfg->iproc_ver = 0xB; /*Ranger2+ Apache Family */ + icfg->dma_hi_bits = 0; + break; + case 0xb168: /* Ranger3+ */ + case 0xb169: + icfg->iproc_ver = 0; + icfg->dma_hi_bits = 0; + break; + default: + break; + } + /* Check for PCIe PHY address that needs PCIe preemphasis and + * assign the MDIO base address + */ + switch (icfg->dev_id & 0xfff0) { + case 0xb150: /* Hurricane2 */ + case 0x8340: /* Wolfhound */ + case 0x8330: /* Foxhound */ + case 0x8390: /* Dearhound */ + icfg->mdio_base_addr = 0x18032000; + icfg->pcie_phy_addr = 0x2; + break; + case 0xb340: /* Helilx4 */ + case 0xb540: /* FireScout */ + case 0xb040: /* Spiral, Ranger */ + icfg->mdio_base_addr = 0x18032000; + icfg->pcie_phy_addr = 0x5; + icfg->adjust_pcie_preemphasis = 1; + break; + case 0xa450: /* Katana2 */ + case 0xb240: + case 0xb450: + icfg->mdio_base_addr = 0x18032000; + icfg->pcie_phy_addr = 0x5; + icfg->adjust_pcie_preemphasis = 1; + break; + default: + break; + } + + /* Check for exceptions */ + switch (icfg->dev_id) { + default: + break; + } + + return 0; +} + +/* + * Function: + * shbde_iproc_paxb_init + * Purpose: + * Initialize iProc PCI-AXI bridge for CMIC access + * Parameters: + * shbde - pointer to initialized hardware abstraction module + * iproc_regs - memory mapped iProc registers in PCI BAR + * icfg - iProc configuration parameters + * Returns: + * -1 if error, otherwise 0 + */ +int +shbde_iproc_paxb_init(shbde_hal_t *shbde, void *iproc_regs, + shbde_iproc_config_t *icfg) +{ + void *reg; + unsigned int data; + int pci_num; + + if (!iproc_regs || !icfg) { + return -1; + } + + /* + * The following code attempts to auto-detect the correct + * iProc PCI endianess configuration by reading a well-known + * register (the endianess configuration register itself). + * Note that the PCI endianess may be different for different + * big endian host processors. + */ + reg = ROFFS(iproc_regs, BAR0_PAXB_ENDIANESS); + /* Select big endian */ + iproc32_write(shbde, reg, 0x01010101); + /* Check if endianess register itself is correct endian */ + if (iproc32_read(shbde, reg) != 1) { + /* If not, then assume little endian */ + iproc32_write(shbde, reg, 0x0); + } + + /* Select which PCI core to use */ + pci_num = 0; + reg = ROFFS(iproc_regs, BAR0_PAXB_IMAP0_2); + data = iproc32_read(shbde, reg); + if (data & 0x1000) { + /* PAXB_1 is mapped to sub-window 2 */ + pci_num = 1; + } + + /* Default DMA mapping if uninitialized */ + if (icfg->dma_hi_bits == 0) { + icfg->dma_hi_bits = 0x1; + if (pci_num == 1) { + icfg->dma_hi_bits = 0x2; + } + } + + /* Enable iProc DMA to external host memory */ + reg = ROFFS(iproc_regs, BAR0_PAXB_PCIE_EP_AXI_CONFIG); + iproc32_write(shbde, reg, 0x0); + if(icfg->cmic_ver < 4) { /* Non-CMICX */ + reg = ROFFS(iproc_regs, BAR0_PAXB_OARR_2); + iproc32_write(shbde, reg, 0x1); + reg = ROFFS(iproc_regs, BAR0_PAXB_OARR_2_UPPER); + iproc32_write(shbde, reg, icfg->dma_hi_bits); + + /* Configure MSI interrupt page */ + if (icfg->use_msi) { + reg = ROFFS(iproc_regs, BAR0_PAXB_OARR_FUNC0_MSI_PAGE); + data = iproc32_read(shbde, reg); + iproc32_write(shbde, reg, data | 0x1); + } + } + return pci_num; +} + +/* + * Function: + * shbde_iproc_pci_read + * Purpose: + * Read iProc register through PCI BAR 0 + * Parameters: + * shbde - pointer to initialized hardware abstraction module + * iproc_regs - memory mapped iProc registers in PCI BAR + * addr - iProc register address in AXI memory space + * Returns: + * Register value + */ +unsigned int +shbde_iproc_pci_read(shbde_hal_t *shbde, void *iproc_regs, + unsigned int addr) +{ + unsigned int subwin_base; + void *reg; + shbde_iproc_config_t *icfg = &shbde->icfg; + + if (!iproc_regs) { + return -1; + } + + /* Sub-window size is 0x1000 (4K) */ + subwin_base = (addr & ~0xfff); + + if((icfg->cmic_ver >= 4) && (subwin_base == 0x18013000)) { + /* Route the INTC block access through IMAP0_6 */ + reg = ROFFS(iproc_regs, 0x6000 + (addr & 0xfff)); + } else { + /* Update base address for sub-window 7 */ + subwin_base |= 1; /* Valid bit */ + reg = ROFFS(iproc_regs, BAR0_PAXB_IMAP0_7); + iproc32_write(shbde, reg, subwin_base); + /* Read it to make sure the write actually goes through */ + subwin_base = iproc32_read(shbde, reg); + + /* Read register through sub-window 7 */ + reg = ROFFS(iproc_regs, 0x7000 + (addr & 0xfff)); + } + + return iproc32_read(shbde, reg); +} + +/* + * Function: + * shbde_iproc_pci_write + * Purpose: + * Write iProc register through PCI BAR 0 + * Parameters: + * shbde - pointer to initialized hardware abstraction module + * iproc_regs - memory mapped iProc registers in PCI BAR + * addr - iProc register address in AXI memory space + * data - data to write to iProc register + * Returns: + * Register value + */ +void +shbde_iproc_pci_write(shbde_hal_t *shbde, void *iproc_regs, + unsigned int addr, unsigned int data) +{ + unsigned int subwin_base; + void *reg; + shbde_iproc_config_t *icfg = &shbde->icfg; + + if (!iproc_regs) { + return; + } + + /* Sub-window size is 0x1000 (4K) */ + subwin_base = (addr & ~0xfff); + + if((icfg->cmic_ver >= 4) && (subwin_base == 0x18013000)) { + /* Route the INTC block access through IMAP0_6 */ + reg = ROFFS(iproc_regs, 0x6000 + (addr & 0xfff)); + } else { + /* Update base address for sub-window 7 */ + subwin_base |= 1; /* Valid bit */ + reg = ROFFS(iproc_regs, BAR0_PAXB_IMAP0_7); + iproc32_write(shbde, reg, subwin_base); + /* Read it to make sure the write actually goes through */ + subwin_base = iproc32_read(shbde, reg); + + /* Read register through sub-window 7 */ + reg = ROFFS(iproc_regs, 0x7000 + (addr & 0xfff)); + } + + iproc32_write(shbde, reg, data); +} + +int +shbde_iproc_pcie_preemphasis_set(shbde_hal_t *shbde, void *iproc_regs, + shbde_iproc_config_t *icfg, void *pci_dev) +{ + shbde_mdio_ctrl_t mdio_ctrl, *smc = &mdio_ctrl; + unsigned int phy_addr, data; + void *reg; + unsigned int pcie_cap_base; + unsigned short link_stat, link_stat2; + + if (!icfg) { + return -1; + } + + /* PHY address for PCIe link */ + phy_addr = icfg->pcie_phy_addr; + if (phy_addr == 0 || icfg->mdio_base_addr == 0) { + return 0; + } + + /* Initialize MDIO control */ + smc->shbde = shbde; + smc->regs = iproc_regs; + smc->base_addr = icfg->mdio_base_addr; + smc->io32_read = shbde_iproc_pci_read; + smc->io32_write = shbde_iproc_pci_write; + shbde_iproc_mdio_init(smc); + + /* PCIe SerDes Gen1/Gen2 CDR Track Bandwidth Adjustment + * for Better Jitter Tolerance + */ + shbde_iproc_mdio_write(smc, phy_addr, 0x1f, 0x8630); + shbde_iproc_mdio_write(smc, phy_addr, 0x13, 0x190); + shbde_iproc_mdio_write(smc, phy_addr, 0x19, 0x191); + + if (!icfg->adjust_pcie_preemphasis) { + return 0; + } + + /* Check to see if the PCIe SerDes deemphasis needs to be changed + * based on the advertisement from the root complex + */ + /* Find PCIe capability base */ + if (!shbde || !shbde->pcic16_read || !pci_dev) { + return -1; + } + pcie_cap_base = shbde_pci_pcie_cap(shbde, pci_dev); + if (pcie_cap_base) { + link_stat = shbde->pcic16_read(pci_dev, + pcie_cap_base + PCI_EXP_LNKSTA); + link_stat2 = shbde->pcic16_read(pci_dev, + pcie_cap_base + PCI_EXP_LNKSTA2); + if (((link_stat & 0xf) == PCI_EXP_LNKSTA_CLS_5_0GB) && + (link_stat2 & PCI_EXP_LNKSTA2_CDL_3_5DB)) { + /* Device is operating at Gen2 speeds and RC requested -3.5dB */ + /* Change the transmitter setting */ + shbde_iproc_mdio_write(smc, phy_addr, 0x1f, 0x8610); + shbde_iproc_mdio_read(smc, phy_addr, 0x17, &data); + data &= ~0xf00; + data |= 0x700; + shbde_iproc_mdio_write(smc, phy_addr, 0x17, data); + + /* Force the PCIe link to retrain */ + data = 0; + REG_FIELD_SET(PAXB_CONFIG_IND_ADDRr, PROTOCOL_LAYERf, data, 0x2); + REG_FIELD_SET(PAXB_CONFIG_IND_ADDRr, ADDRESSf, data, 0x4); + reg = ROFFS(iproc_regs, BAR0_PAXB_CONFIG_IND_ADDR); + iproc32_write(shbde, reg, data); + + reg = ROFFS(iproc_regs, BAR0_PAXB_CONFIG_IND_DATA); + data = iproc32_read(shbde, reg); + data &= ~0x4000; + iproc32_write(shbde, reg, data); + data |= 0x4000; + iproc32_write(shbde, reg, data); + data &= ~0x4000; + iproc32_write(shbde, reg, data); + + /* Wait a short while for the retraining to complete */ + wait_usec(shbde, 1000); + } + } + + return 0; +} + only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/shared/shbde_mdio.c +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/shared/shbde_mdio.c @@ -0,0 +1,187 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: $ + * $Copyright: (c) 2015 Broadcom Corp. + * All Rights Reserved.$ + * + */ + +#include + +/* iProc MDIO register offset */ +#define MII_MGMT_CTRL 0x0 +#define MII_MGMT_CMD_DATA 0x4 + +/* iProc MII register with fields definition */ +#define MII_MGMT_CTRLr_MDCDIVf_SHFT 0 +#define MII_MGMT_CTRLr_MDCDIVf_MASK 0x7f +#define MII_MGMT_CTRLr_BSYf_SHFT 8 +#define MII_MGMT_CTRLr_BSYf_MASK 0x1 + +#define MII_MGMT_CMD_DATAr_DATAf_SHFT 0 +#define MII_MGMT_CMD_DATAr_DATAf_MASK 0xffff +#define MII_MGMT_CMD_DATAr_TAf_SHFT 16 +#define MII_MGMT_CMD_DATAr_TAf_MASK 0x3 +#define MII_MGMT_CMD_DATAr_RAf_SHFT 18 +#define MII_MGMT_CMD_DATAr_RAf_MASK 0x1f +#define MII_MGMT_CMD_DATAr_PAf_SHFT 23 +#define MII_MGMT_CMD_DATAr_PAf_MASK 0x1f +#define MII_MGMT_CMD_DATAr_OPf_SHFT 28 +#define MII_MGMT_CMD_DATAr_OPf_MASK 0x3 +#define MII_MGMT_CMD_DATAr_SBf_SHFT 30 +#define MII_MGMT_CMD_DATAr_SBf_MASK 0x3 + +/* Register field value set/get */ +#define REG_FIELD_SET(_r, _f, _r_val, _f_val) \ + _r_val = ((_r_val) & ~(_r##_##_f##_MASK << _r##_##_f##_SHFT)) | \ + (((_f_val) & _r##_##_f##_MASK) << _r##_##_f##_SHFT) +#define REG_FIELD_GET(_r, _f, _r_val) \ + (((_r_val) >> _r##_##_f##_SHFT) & _r##_##_f##_MASK) + +#define LOG_OUT(_shbde, _lvl, _str, _prm) \ + if ((_shbde)->log_func) { \ + (_shbde)->log_func(_lvl, _str, _prm); \ + } +#define LOG_ERR(_shbde, _str, _prm) LOG_OUT(_shbde, SHBDE_ERR, _str, _prm) +#define LOG_WARN(_shbde, _str, _prm) LOG_OUT(_shbde, SHBDE_WARN, _str, _prm) +#define LOG_DBG(_shbde, _str, _prm) LOG_OUT(_shbde, SHBDE_DBG, _str, _prm) + +static unsigned int +mdio32_read(shbde_mdio_ctrl_t *smc, unsigned int offset) +{ + if (!smc || !smc->io32_read) { + return 0; + } + return smc->io32_read(smc->shbde, smc->regs, smc->base_addr + offset); +} + +static void +mdio32_write(shbde_mdio_ctrl_t *smc, unsigned int offset, unsigned int data) +{ + if (!smc || !smc->io32_read) { + return; + } + smc->io32_write(smc->shbde, smc->regs, smc->base_addr + offset, data); +} + +static void +wait_usec(shbde_mdio_ctrl_t *smc, int usec) +{ + shbde_hal_t *shbde = smc->shbde; + + if (shbde && shbde->usleep) { + shbde->usleep(usec); + } else { + int idx; + volatile int count; + for (idx = 0; idx < usec; idx++) { + for (count = 0; count < 100; count++); + } + } +} + +static int +iproc_mdio_wait_for_busy(shbde_mdio_ctrl_t *smc) +{ + int mii_busy; + unsigned int reg_val; + int count = 1000; + + /* Wait until MII is not busy */ + do { + reg_val = mdio32_read(smc, MII_MGMT_CTRL); + mii_busy = REG_FIELD_GET(MII_MGMT_CTRLr, BSYf, reg_val); + if (!mii_busy) { + break; + } + wait_usec(smc, 10); + count --; + } while (count > 0); + + return mii_busy; +} + +int +shbde_iproc_mdio_init(shbde_mdio_ctrl_t *smc) +{ + shbde_hal_t *shbde = smc->shbde; + unsigned int reg_val = 0; + + /* Enable the iProc internal MDIO interface */ + REG_FIELD_SET(MII_MGMT_CTRLr, MDCDIVf, reg_val, 0x7f); + mdio32_write(smc, MII_MGMT_CTRL, reg_val); + + if (shbde && !shbde->usleep) { + LOG_DBG(shbde, "shbde_mdio: no registration of usleep vector", 0); + } + + wait_usec(smc, 100); + + return 0; +} + +int +shbde_iproc_mdio_read(shbde_mdio_ctrl_t *smc, unsigned int phy_addr, + unsigned int reg, unsigned int *val) +{ + unsigned int reg_val = 0; + + REG_FIELD_SET(MII_MGMT_CMD_DATAr, SBf, reg_val, 0x1); + REG_FIELD_SET(MII_MGMT_CMD_DATAr, TAf, reg_val, 0x2); + REG_FIELD_SET(MII_MGMT_CMD_DATAr, OPf, reg_val, 0x2); + REG_FIELD_SET(MII_MGMT_CMD_DATAr, PAf, reg_val, phy_addr); + REG_FIELD_SET(MII_MGMT_CMD_DATAr, RAf, reg_val, reg); + mdio32_write(smc, MII_MGMT_CMD_DATA, reg_val); + + if (iproc_mdio_wait_for_busy(smc)) { + *val = 0; + LOG_DBG(smc->shbde, "shbde_iproc_mdio_read busy", reg); + return -1; + } + + reg_val = mdio32_read(smc, MII_MGMT_CMD_DATA); + *val = REG_FIELD_GET(MII_MGMT_CMD_DATAr, DATAf, reg_val); + + return 0; +} + +int +shbde_iproc_mdio_write(shbde_mdio_ctrl_t *smc, unsigned int phy_addr, + unsigned int reg, unsigned int val) +{ + unsigned int reg_val = 0; + + REG_FIELD_SET(MII_MGMT_CMD_DATAr, SBf, reg_val, 0x1); + REG_FIELD_SET(MII_MGMT_CMD_DATAr, TAf, reg_val, 0x2); + REG_FIELD_SET(MII_MGMT_CMD_DATAr, OPf, reg_val, 0x1); + REG_FIELD_SET(MII_MGMT_CMD_DATAr, PAf, reg_val, phy_addr); + REG_FIELD_SET(MII_MGMT_CMD_DATAr, RAf, reg_val, reg); + REG_FIELD_SET(MII_MGMT_CMD_DATAr, DATAf, reg_val, val); + mdio32_write(smc, MII_MGMT_CMD_DATA, reg_val); + + if (iproc_mdio_wait_for_busy(smc)) { + LOG_DBG(smc->shbde, "shbde_iproc_mdio_write busy", reg); + return -1; + } + + /* Wait for some time for the write to take effect */ + wait_usec(smc, 100); + + return 0; +} + only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/shared/shbde_pci.c +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/shared/shbde_pci.c @@ -0,0 +1,393 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: $ + * $Copyright: (c) 2014 Broadcom Corp. + * All Rights Reserved.$ + * + */ + +#include + +/* PCIe capabilities */ +#ifndef PCI_CAPABILITY_LIST +#define PCI_CAPABILITY_LIST 0x34 +#endif +#ifndef PCI_CAP_ID_EXP +#define PCI_CAP_ID_EXP 0x10 +#endif +#ifndef PCI_EXP_DEVCAP +#define PCI_EXP_DEVCAP 4 +#endif +#ifndef PCI_EXP_DEVCTL +#define PCI_EXP_DEVCTL 8 +#endif +#ifndef PCI_EXT_CAP_START +#define PCI_EXT_CAP_START 0x100 +#endif +#ifndef PCI_EXT_CAP_ID +#define PCI_EXT_CAP_ID(_hdr) (_hdr & 0x0000ffff) +#endif +#ifndef PCI_EXT_CAP_VER +#define PCI_EXT_CAP_VER(_hdr) ((_hdr >> 16) & 0xf) +#endif +#ifndef PCI_EXT_CAP_NEXT +#define PCI_EXT_CAP_NEXT(_hdr) ((_hdr >> 20) & 0xffc) +#endif +#ifndef PCI_EXT_CAP_ID_VNDR +#define PCI_EXT_CAP_ID_VNDR 0x0b +#endif + +#define LOG_OUT(_shbde, _lvl, _str, _prm) \ + if ((_shbde)->log_func) { \ + (_shbde)->log_func(_lvl, _str, _prm); \ + } +#define LOG_ERR(_shbde, _str, _prm) LOG_OUT(_shbde, SHBDE_ERR, _str, _prm) +#define LOG_WARN(_shbde, _str, _prm) LOG_OUT(_shbde, SHBDE_WARN, _str, _prm) +#define LOG_DBG(_shbde, _str, _prm) LOG_OUT(_shbde, SHBDE_DBG, _str, _prm) + +#ifndef NULL +#define NULL (void *)0 +#endif + +/* + * Warpper functions with null-pointer checks. + */ +static unsigned int +pcic16_read(shbde_hal_t *shbde, void *pci_dev, + unsigned int addr) +{ + if (!shbde || !shbde->pcic16_read) { + return 0; + } + return shbde->pcic16_read(pci_dev, addr); +} + +static void +pcic16_write(shbde_hal_t *shbde, void *pci_dev, + unsigned int addr, unsigned int data) +{ + if (!shbde || !shbde->pcic16_write) { + return; + } + shbde->pcic16_write(pci_dev, addr, data); +} + +static unsigned int +pcic32_read(shbde_hal_t *shbde, void *pci_dev, + unsigned int addr) +{ + if (!shbde || !shbde->pcic32_read) { + return 0; + } + return shbde->pcic32_read(pci_dev, addr); +} + +static void * +pci_parent_device_get(shbde_hal_t *shbde, void *pci_dev) +{ + if (!shbde || !shbde->pci_parent_device_get) { + return NULL; + } + return shbde->pci_parent_device_get(pci_dev); +} + +/* + * Function: + * shbde_pci_pcie_cap + * Purpose: + * Return offset of PCIe capabilities in PCI configuration space + * Parameters: + * shbde - pointer to initialized hardware abstraction module + * dev - PCI device handle (passed back to PCI HAL functions) + * Returns: + * PCI_CAP_ID_EXP offset in PCI configuration space if PCIe, otherwise 0 + */ +unsigned int +shbde_pci_pcie_cap(shbde_hal_t *shbde, void *pci_dev) +{ + unsigned int cap_base, rval; + + cap_base = pcic16_read(shbde, pci_dev, PCI_CAPABILITY_LIST); + while (cap_base) { + rval = pcic16_read(shbde, pci_dev, cap_base); + if ((rval & 0xff) == PCI_CAP_ID_EXP) { + break; + } + cap_base = (rval >> 8) & 0xff; + } + + return cap_base; +} + +/* + * Function: + * shbde_pci_is_pcie + * Purpose: + * Check if PCI device is PCIe device + * Parameters: + * shbde - pointer to initialized hardware abstraction module + * dev - PCI device handle (passed back to PCI HAL functions) + * Returns: + * 1 if PCIe, otherwise 0 + */ +int +shbde_pci_is_pcie(shbde_hal_t *shbde, void *pci_dev) +{ + return shbde_pci_pcie_cap(shbde, pci_dev) ? 1 : 0; +} + +/* + * Function: + * shbde_pci_is_iproc + * Purpose: + * Check if PCI device is iProc-based + * Parameters: + * shbde - pointer to initialized hardware abstraction module + * dev - PCI device handle (passed back to PCI HAL functions) + * cmic_bar - (OUT) PCI BAR which contains switch CMIC registers + * Returns: + * 1 if iProc-based, otherwise 0 + */ +int +shbde_pci_is_iproc(shbde_hal_t *shbde, void *pci_dev, int *cmic_bar) +{ + unsigned int cap_base, rval; + + if (!shbde_pci_is_pcie(shbde, pci_dev)) { + return 0; + } + + /* Look for PCIe vendor-specific extended capability (VSEC) */ + cap_base = PCI_EXT_CAP_START; + while (cap_base) { + rval = pcic32_read(shbde, pci_dev, cap_base); + if (rval == 0xffffffff) { + /* Assume PCI HW read error */ + return 0; + } + + if (PCI_EXT_CAP_ID(rval) == PCI_EXT_CAP_ID_VNDR) { + break; + } + cap_base = PCI_EXT_CAP_NEXT(rval); + } + if (cap_base) { + /* + * VSEC layout: + * + * 0x00: PCI Express Extended Capability Header + * 0x04: Vendor-Specific Header + * 0x08: Vendor-Specific Register 1 + * 0x0c: Vendor-Specific Register 2 + * ... + * 0x24: Vendor-Specific Register 8 + */ + /* 32'b // 31:12=0 Reserved; 11:08=CMIC BAR; 07:00=iProc Configuration ID */ + rval = pcic32_read(shbde, pci_dev, cap_base + 8); + LOG_DBG(shbde, "Found VSEC", rval); + + /* Determine PCI BAR of CMIC */ + *cmic_bar = 0; + if ((rval & 0x100) == 0x100) { + *cmic_bar = 2; + } + /* Assume iProc device */ + return 1; + } + + return 0; +} + +/* + * Function: + * shbde_pci_iproc_version_get + * Purpose: + * Get iproc, cmic versions and revisions + * Parameters: + * shbde - pointer to initialized hardware abstraction module + * dev - PCI device handle (passed back to PCI HAL functions) + * iproc_ver - (OUT) iProc version + * cmic_ver - (OUT) CMIC version + * cmic_rev - (OUT) CMIC revision + * Returns: + * 1 for no error, otherwise 0 + */ +int +shbde_pci_iproc_version_get(shbde_hal_t *shbde, void *pci_dev, + unsigned int *iproc_ver, + unsigned int *cmic_ver, + unsigned int *cmic_rev) +{ + unsigned int cap_base, rval; + + if (!shbde_pci_is_pcie(shbde, pci_dev)) { + return 0; + } + + /* Look for PCIe vendor-specific extended capability (VSEC) */ + cap_base = PCI_EXT_CAP_START; + while (cap_base) { + rval = pcic32_read(shbde, pci_dev, cap_base); + if (rval == 0xffffffff) { + /* Assume PCI HW read error */ + return 0; + } + + if (PCI_EXT_CAP_ID(rval) == PCI_EXT_CAP_ID_VNDR) { + break; + } + cap_base = PCI_EXT_CAP_NEXT(rval); + } + if (cap_base) { + /* + * VSEC layout: + * + * 0x00: PCI Express Extended Capability Header + * 0x04: Vendor-Specific Header + * 0x08: Vendor-Specific Register 1 + * 0x0c: Vendor-Specific Register 2 + * ... + * 0x24: Vendor-Specific Register 8 + */ + + /* Read PCIe Vendor Specific Register 1 */ + /* VENODR REG FORMAT + * [7:0] iProc Rev = 8'h0E (for P14) + * [11:8] CMIC BAR = 4'h1 (BAR64-1) + * [15:12] CMIC Version = 4'h4 + * [19:16] CMIC Rev = 4'h1 + * [22:20] SBUS Version = 4'h4 + */ + + rval = pcic32_read(shbde, pci_dev, cap_base + 8); + LOG_DBG(shbde, "Found VSEC", rval); + + /* Determine PCI BAR of CMIC */ + *iproc_ver = rval & 0xff; + *cmic_ver = (rval >> 12) & 0xf; + *cmic_rev = (rval >> 16) & 0xf; + return 1; + } + + return 0; +} + +/* + * Function: + * shbde_pci_max_payload_set + * Purpose: + * Set PCIe maximum payload + * Parameters: + * shbde - pointer to initialized hardware abstraction module + * dev - PCI device handle (passed back to PCI HAL functions) + * maxpayload - maximum payload (in byte) + * Returns: + * -1 if error, otherwise 0 + * Notes: + * If not PCIe device, set the PCI retry count to infinte instead. + */ +int +shbde_pci_max_payload_set(shbde_hal_t *shbde, void *pci_dev, int maxpayload) +{ + unsigned int cap_base, parent_cap_base; + unsigned int devcap, devctl, parent_devctl; + int max_val, max_cap, parent_max_val; + void *parent_pci_dev; + + cap_base = shbde_pci_pcie_cap(shbde, pci_dev); + + if (cap_base == 0) { + /* Not PCIe */ + return 0; + } + + /* Get current device control settings */ + devctl = pcic16_read(shbde, pci_dev, cap_base + PCI_EXP_DEVCTL); + + /* Get current max payload setting */ + max_val = (devctl >> 5) & 0x7; + + if (maxpayload) { + /* Get encoding from byte value */ + max_val = 0; + while ((1 << (max_val + 7)) < maxpayload) { + max_val++; + } + LOG_DBG(shbde, "Set max payload size", maxpayload); + LOG_DBG(shbde, "Set max payload val", max_val); + + /* Get max supported payload size */ + devcap = pcic16_read(shbde, pci_dev, cap_base + PCI_EXP_DEVCAP); + max_cap = (devcap & 0x7); + + /* Do not exceed device capabilities */ + if (max_val > max_cap) { + max_val = max_cap; + LOG_DBG(shbde, + "Payload size exceeds device capability", + maxpayload); + } + + /* Get currently set max payload size for the parent device + * in the PCI tree (if it exists). + */ + parent_pci_dev = pci_parent_device_get(shbde, pci_dev); + if (parent_pci_dev != NULL) { + parent_cap_base = shbde_pci_pcie_cap(shbde, parent_pci_dev); + parent_devctl = pcic16_read(shbde, + parent_pci_dev, + parent_cap_base + PCI_EXP_DEVCTL); + parent_max_val = (parent_devctl >> 5) & 0x7; + + /* Do not exceed current parent max payload setting (our device + * should have an MPS setting <= current parent MPS setting in + * the tree of PCIe devices). + */ + if (max_val > parent_max_val) { + max_val = parent_max_val; + LOG_DBG(shbde, + "Payload size exceeds current parent device setting", + maxpayload); + } + } + + /* Update max payload size */ + devctl &= ~(0x7 << 5); + devctl |= (max_val) << 5; + + /* Update max request size */ + devctl &= ~(0x7 << 12); + devctl |= (max_val << 12); + } + + /* Always disable relaxed ordering */ + devctl &= ~(1 << 4); + + /* Update device control settings */ + pcic16_write(shbde, pci_dev, cap_base + PCI_EXP_DEVCTL, devctl); + + /* Warn if non-default setting is used */ + if (max_val > 0) { + LOG_WARN(shbde, + "Selected payload size may not be supported by all " + "PCIe bridges by default.", + (1 << (max_val + 7))); + } + + return 0; +} only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/kernel/modules/Makefile +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/kernel/modules/Makefile @@ -0,0 +1,32 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# -*- Makefile -*- +# $Id: Makefile,v 1.10 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ +# +# Makefile for SOC SAL support +# +LOCALDIR = systems/linux/kernel/modules + +include ${SDK}/make/Make.config + +subdirs=shared uk-proxy bcm-diag-full bcm-core bcm-net bcm-diag + +include ${SDK}/make/Make.subdirs + +include ${SDK}/make/Make.depend only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/kernel/modules/bcm-knet/Makefile +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/kernel/modules/bcm-knet/Makefile @@ -0,0 +1,68 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# -*- Makefile -*- +# $Id: Makefile,v 1.3 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ +# +LOCALDIR = systems/linux/kernel/modules/bcm-knet + +include ${SDK}/make/Make.config + +LIBS = $(LIBDIR)/libkern.a + +ifeq ($(kernel_version),2_4) +MODULE = $(LIBDIR)/linux-bcm-knet.o +else +KERNEL_MODULE_DIR = kernel_module + +THIS_MOD_NAME := linux-bcm-knet +MODULE = $(LIBDIR)/$(THIS_MOD_NAME).o +KMODULE = $(LIBDIR)/$(THIS_MOD_NAME).ko + +build: $(MODULE) $(KMODULE) +endif + +KBUILD_EXTRA_SYMBOLS := ${BLDDIR}/../../../../bde/linux/kernel/kernel_module/Module.symvers +ifeq (,$(findstring -DPROXY_SUPPORT=0,$(CFLAGS))) +KBUILD_EXTRA_SYMBOLS += ${BLDDIR}/../uk-proxy/kernel_module/Module.symvers +endif + +# BCM Network Device + +$(MODULE): $(BLDDIR)/.tree $(BOBJS) $(LIBS) + $(LD) $(MODULE_LDFLAGS) -r -d $(BOBJS) $(LIBS) -o $@ +ifneq ($(kernel_version),2_4) +$(KMODULE): $(MODULE) + rm -fr $(BLDDIR)/$(KERNEL_MODULE_DIR) + mkdir $(BLDDIR)/$(KERNEL_MODULE_DIR) + cp ${SDK}/make/Makefile.linux-kmodule $(BLDDIR)/$(KERNEL_MODULE_DIR)/Makefile + cat ${KBUILD_EXTRA_SYMBOLS} > $(BLDDIR)/$(KERNEL_MODULE_DIR)/Module.symvers + MOD_NAME=$(THIS_MOD_NAME) $(MAKE) -C $(BLDDIR)/$(KERNEL_MODULE_DIR) $(THIS_MOD_NAME).ko +endif + +# Make.depend is before clean:: so that Make.depend's clean:: runs first. + +include ${SDK}/make/Make.depend + +clean:: + $(RM) $(BLDDIR)/version.c $(BLDDIR)/version.o + $(RM) $(BOBJS) $(MODULE) + +ifneq ($(kernel_version),2_4) +.PHONY: build +endif only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/kernel/modules/bcm-knet/bcm-knet.c +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/kernel/modules/bcm-knet/bcm-knet.c @@ -0,0 +1,6888 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: bcm-knet.c,v 1.90 Broadcom SDK $ + * $Copyright: (c) 2005 Broadcom Corp. + * All Rights Reserved.$ + */ + +/* + * This module implements a Linux network driver for Broadcom + * XGS switch devices. The driver simultaneously serves a + * number of vitual Linux network devices and a Tx/Rx API + * implemented in user space. + * + * Packets received from the switch device are sent to either + * a virtual Linux network device or the user mode Rx API + * based on a set of packet filters.susp + * + * Packets from the virtual Linux network devices and the user + * mode Tx API are multiplexed with priority given to the Tx API. + * + * A message-based IOCTL interface is used for managing packet + * filters and virtual Linux network interfaces. + * + * A virtual network interface can be configured to work in RCPU + * mode, which means that packets from the switch device will + * be encasulated with a RCPU header and a block of meta data + * that basically contains the core DCB information. Likewise, + * packets received from the Linux network stack are assumed to + * be RCPU encapsulated when going out on an interface in RCPU + * mode. + * + * The module implements basic Rx DMA rate control. The rate is + * specified in packets per second, and different Rx DMA channels + * can be configured to use different maximum packet rates. + * The packet rate can be configure as a module parameter, and + * it can also be changed dynamically through the proc file + * system (syntax is described in function header comment). + * + * To support multiple instance, each instance has its event queue. + * + * To support pci hot-plug in this module, the resource update + * should be handled when the PCI device is re-plugged. + * NOTE: the KNET detach should be invoked befere removing the + * device. + * + * For a list of supported module parameters, please see below. + */ + +#include /* Must be included first */ +#include +#include +#include + +#include +#include +#include +#include +#include + + +MODULE_AUTHOR("Broadcom Corporation"); +MODULE_DESCRIPTION("Network Device Driver for Broadcom BCM TxRx API"); +MODULE_LICENSE("GPL"); + +static int debug; +LKM_MOD_PARAM(debug, "i", int, 0); +MODULE_PARM_DESC(debug, +"Debug level (default 0)"); + +static char *mac_addr = NULL; +LKM_MOD_PARAM(mac_addr, "s", charp, 0); +MODULE_PARM_DESC(mac_addr, +"Ethernet MAC address (default 02:10:18:xx:xx:xx)"); + +static int rx_buffer_size = 9216; +LKM_MOD_PARAM(rx_buffer_size, "i", int, 0); +MODULE_PARM_DESC(rx_buffer_size, +"Size of RX packet buffers (default 9216)"); + +static int default_mtu = 1500; +LKM_MOD_PARAM(default_mtu, "i", int, 0); +MODULE_PARM_DESC(default_mtu, +"Default MTU for KNET network interfaces (default 1500)"); + +static int rx_sync_retry = 1000; +LKM_MOD_PARAM(rx_sync_retry, "i", int, 0); +MODULE_PARM_DESC(rx_sync_retry, +"Retries if chain is incomplete on interrupt (default 10)"); + +static char *base_dev_name = NULL; +LKM_MOD_PARAM(base_dev_name, "s", charp, 0); +MODULE_PARM_DESC(base_dev_name, +"Base device name (default bcm0, bcm1, etc.)"); + +static int rcpu_mode = 0; +LKM_MOD_PARAM(rcpu_mode, "i", int, 0); +MODULE_PARM_DESC(rcpu_mode, +"Enable RCPU encapsulation (default 0)"); + +static char *rcpu_dmac = NULL; +LKM_MOD_PARAM(rcpu_dmac, "s", charp, 0); +MODULE_PARM_DESC(rcpu_dmac, +"RCPU destination MAC address (by default use L2 destination MAC address)"); + +static char *rcpu_smac = NULL; +LKM_MOD_PARAM(rcpu_smac, "s", charp, 0); +MODULE_PARM_DESC(rcpu_smac, +"RCPU source MAC address (by default use L2 source MAC address)"); + +static int rcpu_ethertype = 0xde08; +LKM_MOD_PARAM(rcpu_ethertype, "i", int, 0); +MODULE_PARM_DESC(rcpu_ethertype, +"RCPU EtherType (default DE08h)"); + +static int rcpu_signature = 0; +LKM_MOD_PARAM(rcpu_signature, "i", int, 0); +MODULE_PARM_DESC(rcpu_signature, +"RCPU Signature (default is PCI device ID)"); + +static int rcpu_vlan = 1; +LKM_MOD_PARAM(rcpu_vlan, "i", int, 0); +MODULE_PARM_DESC(rcpu_vlan, +"RCPU VLAN ID (default 1)"); + +static int use_rx_skb = 0; +LKM_MOD_PARAM(use_rx_skb, "i", int, 0); +MODULE_PARM_DESC(use_rx_skb, +"Use socket buffers for receive operation (default 0)"); + +static int num_rx_prio = 1; +LKM_MOD_PARAM(num_rx_prio, "i", int, 0); +MODULE_PARM_DESC(num_rx_prio, +"Number of filter priorities per Rx DMA channel"); + +static int rx_rate[4] = { 100000, 100000, 100000, 0 }; +LKM_MOD_PARAM_ARRAY(rx_rate, "1-4i", int, NULL, 0); +MODULE_PARM_DESC(rx_rate, +"Rx rate in packets per second (default 100000)"); + +static int rx_burst[4] = { 0, 0, 0, 0 }; +LKM_MOD_PARAM_ARRAY(rx_burst, "1-4i", int, NULL, 0); +MODULE_PARM_DESC(rx_burst, +"Rx rate burst maximum in packets (default rx_rate/10)"); + +static int check_rcpu_signature = 0; +LKM_MOD_PARAM(check_rcpu_signature, "i", int, 0); +MODULE_PARM_DESC(check_rcpu_signature, +"Check RCPU Signature for Tx packets from RCPU interfaces"); + +static int basedev_suspend = 0; +LKM_MOD_PARAM(basedev_suspend, "i", int, 0); +MODULE_PARM_DESC(basedev_suspend, +"Pause traffic till base device is up (enabled by default in NAPI mode)"); + +static int ftmh_lb_key_ext = 0; +LKM_MOD_PARAM(ftmh_lb_key_ext, "i", int, 0); +MODULE_PARM_DESC(ftmh_lb_key_ext, +"FTMH LB-Key Extension header is present (default 0)"); + +static int ftmh_stacking_ext = 0; +LKM_MOD_PARAM(ftmh_stacking_ext, "i", int, 0); +MODULE_PARM_DESC(ftmh_stacking_ext, +"FTMH Stacking Extension header is present (default 0)"); + +/* Debug levels */ +#define DBG_LVL_VERB 0x1 +#define DBG_LVL_DCB 0x2 +#define DBG_LVL_PKT 0x4 +#define DBG_LVL_SKB 0x8 +#define DBG_LVL_CMD 0x10 +#define DBG_LVL_EVT 0x20 +#define DBG_LVL_IRQ 0x40 +#define DBG_LVL_NAPI 0x80 +#define DBG_LVL_PDMP 0x100 +#define DBG_LVL_FLTR 0x200 +#define DBG_LVL_KCOM 0x400 +#define DBG_LVL_RCPU 0x800 +#define DBG_LVL_WARN 0x1000 +#define DBG_LVL_NDEV 0x2000 +#define DBG_LVL_INST 0x4000 +/* Level to output Dune internal headers Parsing */ +#define DBG_LVL_DUNE 0x8000 +#define DBG_LVL_DCB_TX 0x10000 +#define DBG_LVL_DCB_RX 0x20000 +#define DBG_LVL_PDMP_TX 0x40000 +#define DBG_LVL_PDMP_RX 0x80000 + +#define DBG_VERB(_s) do { if (debug & DBG_LVL_VERB) gprintk _s; } while (0) +#define DBG_PKT(_s) do { if (debug & DBG_LVL_PKT) gprintk _s; } while (0) +#define DBG_SKB(_s) do { if (debug & DBG_LVL_SKB) gprintk _s; } while (0) +#define DBG_CMD(_s) do { if (debug & DBG_LVL_CMD) gprintk _s; } while (0) +#define DBG_EVT(_s) do { if (debug & DBG_LVL_EVT) gprintk _s; } while (0) +#define DBG_IRQ(_s) do { if (debug & DBG_LVL_IRQ) gprintk _s; } while (0) +#define DBG_NAPI(_s) do { if (debug & DBG_LVL_NAPI) gprintk _s; } while (0) +#define DBG_PDMP(_s) do { if (debug & DBG_LVL_PDMP) gprintk _s; } while (0) +#define DBG_FLTR(_s) do { if (debug & DBG_LVL_FLTR) gprintk _s; } while (0) +#define DBG_KCOM(_s) do { if (debug & DBG_LVL_KCOM) gprintk _s; } while (0) +#define DBG_RCPU(_s) do { if (debug & DBG_LVL_RCPU) gprintk _s; } while (0) +#define DBG_WARN(_s) do { if (debug & DBG_LVL_WARN) gprintk _s; } while (0) +#define DBG_NDEV(_s) do { if (debug & DBG_LVL_NDEV) gprintk _s; } while (0) +#define DBG_INST(_s) do { if (debug & DBG_LVL_INST) gprintk _s; } while (0) +#define DBG_DUNE(_s) do { if (debug & DBG_LVL_DUNE) gprintk _s; } while (0) +#define DBG_DCB_TX(_s) do { if (debug & (DBG_LVL_DCB|DBG_LVL_DCB_TX)) \ + gprintk _s; } while (0) +#define DBG_DCB_RX(_s) do { if (debug & (DBG_LVL_DCB|DBG_LVL_DCB_RX)) \ + gprintk _s; } while (0) +#define DBG_DCB(_s) do { if (debug & (DBG_LVL_DCB|DBG_LVL_DCB_TX| \ + DBG_LVL_DCB_RX)) \ + gprintk _s; } while (0) + + +/* This flag is used to indicate if debugging packet function is open or closed */ +static int dbg_pkt_enable = 0; + +/* Module Information */ +#define MODULE_MAJOR 122 +#define MODULE_NAME "linux-bcm-knet" + +#ifndef NAPI_SUPPORT +#define NAPI_SUPPORT 1 +#endif + +#if NAPI_SUPPORT + +static int use_napi = 0; +LKM_MOD_PARAM(use_napi, "i", int, 0); +MODULE_PARM_DESC(use_napi, +"Use NAPI interface (default 0)"); + +static int napi_weight = 64; +LKM_MOD_PARAM(napi_weight, "i", int, 0); +MODULE_PARM_DESC(napi_weight, +"Weight of NAPI interfaces (default 64)"); + +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,24) +#define bkn_napi_enable(_dev, _napi) netif_poll_enable(_dev) +#define bkn_napi_disable(_dev, _napi) netif_poll_disable(_dev) +#define bkn_napi_schedule(_dev, _napi) netif_rx_schedule(_dev) +#define bkn_napi_schedule_prep(_dev, _napi) netif_rx_schedule_prep(_dev) +#define __bkn_napi_schedule(_dev, _napi) __netif_rx_schedule(_dev) +#define bkn_napi_complete(_dev, _napi) netif_rx_complete(_dev) +#else +#define bkn_napi_enable(_dev, _napi) napi_enable(_napi) +#define bkn_napi_disable(_dev, _napi) napi_disable(_napi) +#define bkn_napi_schedule(_dev, _napi) napi_schedule(_napi) +#define bkn_napi_schedule_prep(_dev, _napi) napi_schedule_prep(_napi) +#define __bkn_napi_schedule(_dev, _napi) __napi_schedule(_napi) +#define bkn_napi_complete(_dev, _napi) napi_complete(_napi) +#endif + +#else + +static int use_napi = 0; +static int napi_weight = 0; + +#define bkn_napi_enable(_dev, _napi) +#define bkn_napi_disable(_dev, _napi) +#define bkn_napi_schedule(_dev, _napi) +#define bkn_napi_schedule_prep(_dev, _napi) (0) +#define __bkn_napi_schedule(_dev, _napi) +#define bkn_napi_complete(_dev, _napi) + +#endif + +/* + * If proxy support is compiled in the module will attempt to use + * the user/kernel message service provided by the linux-uk-proxy + * kernel module, otherwise device IOCTL will be used. + */ +#ifndef PROXY_SUPPORT +#define PROXY_SUPPORT 0 +#endif + +#if PROXY_SUPPORT + +#include + +static int use_proxy = 1; +LKM_MOD_PARAM(use_proxy, "i", int, 0); +MODULE_PARM_DESC(use_proxy, +"Use Linux User/Kernel proxy (default 1)"); + +#define PROXY_SERVICE_CREATE(_s,_q,_f) linux_uk_proxy_service_create(_s,_q,_f) +#define PROXY_SERVICE_DESTROY(_s) linux_uk_proxy_service_destroy(_s); +#define PROXY_SEND(_s,_m,_l) linux_uk_proxy_send(_s,_m,_l) +#define PROXY_RECV(_s,_m,_l) linux_uk_proxy_recv(_s,_m,_l) + +#else + +static int use_proxy = 0; + +#define PROXY_SERVICE_CREATE(_s,_q,_f) +#define PROXY_SERVICE_DESTROY(_s) +#define PROXY_SEND(_s,_m,_l) +#define PROXY_RECV(_s,_m,_l) (-1) + +#endif + +/* Compatibility */ +#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,24)) +#define skb_copy_to_linear_data(_skb, _pkt, _len) \ + eth_copy_and_sum(_skb, _pkt, _len, 0) +struct napi_struct { int not_used; }; +#define netif_napi_add(_dev, _napi, _poll, _weight) do { \ + (_dev)->poll = _poll; \ + (_dev)->weight = _weight; \ +} while(0) +#endif + +#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,18)) +#define SKB_PADTO(_skb,_len) (((_skb = skb_padto(_skb,_len)) == NULL) ? -1 : 0) +#else +#define SKB_PADTO(_skb,_len) skb_padto(_skb,_len) +#endif + +#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,12)) +#define skb_header_cloned(_skb) \ + skb_cloned(_skb) +#endif + +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,4,27) +static inline void *netdev_priv(struct net_device *dev) +{ + return dev->priv; +} +#endif /* KERNEL_VERSION(2,4,27) */ + +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,4,23) +/* Special check for MontaVista 2.4.20 MIPS */ +#if !(defined(MAX_USER_RT_PRIO) && defined(CONFIG_MIPS)) +static inline void free_netdev(struct net_device *dev) +{ + kfree(dev); +} +#endif +static inline void netif_poll_disable(struct net_device *dev) +{ + while (test_and_set_bit(__LINK_STATE_RX_SCHED, &dev->state)) { + /* No hurry. */ + current->state = TASK_INTERRUPTIBLE; + schedule_timeout(1); + } +} +static inline void netif_poll_enable(struct net_device *dev) +{ + clear_bit(__LINK_STATE_RX_SCHED, &dev->state); +} +#endif /* KERNEL_VERSION(2,4,23) */ + +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,4,21) +static struct sk_buff *skb_pad(struct sk_buff *skb, int pad) +{ + struct sk_buff *nskb; + + /* If the skbuff is non linear tailroom is always zero.. */ + if(skb_tailroom(skb) >= pad) + { + memset(skb->data+skb->len, 0, pad); + return skb; + } + + nskb = skb_copy_expand(skb, skb_headroom(skb), skb_tailroom(skb) + pad, GFP_ATOMIC); + kfree_skb(skb); + if(nskb) + memset(nskb->data+nskb->len, 0, pad); + return nskb; +} +static inline struct sk_buff *skb_padto(struct sk_buff *skb, unsigned int len) +{ + unsigned int size = skb->len; + if(likely(size >= len)) + return skb; + return skb_pad(skb, len-size); +} +#endif /* KERNEL_VERSION(2,4,21) */ + +#if LINUX_VERSION_CODE < KERNEL_VERSION(3,10,0) +#define bkn_vlan_hwaccel_put_tag(_skb, _proto, _tci) \ + __vlan_hwaccel_put_tag(_skb, _tci) +#else +#define bkn_vlan_hwaccel_put_tag(_skb, _proto, _tci) \ + __vlan_hwaccel_put_tag(_skb, htons(_proto), _tci) +#endif + +#ifdef LINUX_BDE_DMA_DEVICE_SUPPORT +#define DMA_DEV device +#define DMA_FROMDEV DMA_FROM_DEVICE +#define DMA_TODEV DMA_TO_DEVICE +#define DMA_MAP_SINGLE(d,p,s,r) dma_map_single(d,p,s,r) +#define DMA_UNMAP_SINGLE(d,a,s,r) dma_unmap_single(d,a,s,r) +#define DMA_ALLOC_COHERENT(d,s,h) dma_alloc_coherent(d,s,h,GFP_ATOMIC|GFP_DMA32) +#define DMA_FREE_COHERENT(d,s,a,h) dma_free_coherent(d,s,a,h) +#else +#define DMA_DEV pci_dev +#define DMA_FROMDEV PCI_DMA_FROMDEVICE +#define DMA_TODEV PCI_DMA_TODEVICE +#define DMA_MAP_SINGLE(d,p,s,r) pci_map_single(d,p,s,r) +#define DMA_UNMAP_SINGLE(d,a,s,r) pci_unmap_single(d,a,s,r) +#define DMA_ALLOC_COHERENT(d,s,h) pci_alloc_consistent(d,s,h) +#define DMA_FREE_COHERENT(d,s,a,h) pci_free_consistent(d,s,a,h) +#endif + +/* RCPU operations */ +#define RCPU_OPCODE_RX 0x10 +#define RCPU_OPCODE_TX 0x20 + +/* RCPU flags */ +#define RCPU_F_MODHDR 0x4 + +/* RCPU encapsulation */ +#define RCPU_HDR_SIZE 32 +#define RCPU_TX_META_SIZE 32 +#define RCPU_TX_ENCAP_SIZE (RCPU_HDR_SIZE + RCPU_TX_META_SIZE) +#define RCPU_RX_META_SIZE 64 +#define RCPU_RX_ENCAP_SIZE (RCPU_HDR_SIZE + RCPU_RX_META_SIZE) + +static volatile int module_initialized; + +static ibde_t *kernel_bde = NULL; + +/* Descriptor info */ +typedef struct bkn_desc_info_s { + uint32_t *dcb_mem; + dma_addr_t dcb_dma; + struct sk_buff *skb; + dma_addr_t skb_dma; + uint32_t dma_size; +} bkn_desc_info_t; + +/* DCB chain info */ +typedef struct bkn_dcb_chain_s { + struct list_head list; + int dcb_cnt; + int dcb_cur; + uint32_t *dcb_mem; + dma_addr_t dcb_dma; +} bkn_dcb_chain_t; + +#define MAX_TX_DCBS 32 +#define MAX_RX_DCBS 32 + +#define NUM_DMA_CHAN 4 +#define NUM_RX_CHAN 3 +#define API_RX_CHAN 0 + +/* Device control info */ +typedef struct bkn_switch_info_s { + struct list_head list; + struct list_head ndev_list; /* Associated virtual Ethernet interfaces */ + struct net_device **ndevs; /* Indexed array of ndev_list */ + int ndev_max; /* Size of indexed array */ + struct list_head rxpf_list; /* Associated Rx packet filters */ + volatile void *base_addr; /* Base address for PCI register access */ + struct DMA_DEV *dma_dev; /* Required for DMA memory control */ + struct pci_dev *pdev; /* Required for DMA memory control */ + struct net_device *dev; /* Base network device */ + struct napi_struct napi; /* New NAPI */ + struct timer_list timer; /* Retry/resource timer */ + int timer_queued; /* Flag indicating queued timer function */ + uint32_t timer_runs; /* Timer function runs (debug only) */ + struct timer_list rxtick; /* Rx rate control timer */ + uint32_t rxticks_per_sec; /* Rx rate control update frequency */ + uint32_t rxtick_jiffies; /* Time between updates (in jiffies) */ + uint32_t rxticks; /* Rx rate control debug counter */ + uint32_t interrupts; /* Total number of interrupts */ + spinlock_t lock; /* Main lock for device */ + int dev_no; /* Device number (from BDE) */ + int cpu_no; /* Cpu number. 1 for iHost(AXI),0 for others */ + int dcb_type; /* DCB type */ + int dcb_wsize; /* DCB size (in 32-bit words) */ + uint32_t cmic_type; /* CMIC type (CMICe or CMICm) */ + uint32_t irq_mask; /* Active IRQs for DMA control */ + uint32_t napi_poll_mode; /* NAPI is in polling mode */ + uint32_t napi_not_done; /* NAPI poll did not process all packets */ + uint32_t napi_poll_again; /* Used if DCB chain is restarted */ + uint32_t tx_yield; /* Tx schedule for Continuous DMA and Non-NAPI mode */ + void *dcb_mem; /* Logical pointer to DCB memory */ + dma_addr_t dcb_dma; /* Physical bus address for DCB memory */ + int dcb_mem_size; /* Total size of allocated DCB memory */ + uint32_t dma_events; /* DMA events pending for BCM API */ + uint32_t rcpu_sig; /* RCPU signature */ + dma_addr_t halt_addr[NUM_DMA_CHAN]; /* DMA halt address */ + uint32_t cdma_channels; /* Active channels for Continuous DMA mode */ + uint32_t inst_id; /* Instance id of this device */ + int evt_idx; /* Event queue index for this device*/ + int basedev_suspended; /* Base device suspended */ + struct { + bkn_desc_info_t desc[MAX_TX_DCBS+1]; + int free; /* Number of free Tx DCBs */ + int cur; /* Index of current Tx DCB */ + int dirty; /* Index of next Tx DCB to complete */ + int api_active; /* BCM Tx API is in progress */ + int suspends; /* Calls to netif_stop_queue (debug only) */ + struct list_head api_dcb_list; /* Tx DCB chains from BCM Tx API */ + bkn_dcb_chain_t *api_dcb_chain; /* Current Tx DCB chain */ + bkn_dcb_chain_t *api_dcb_chain_end; /* Tx DCB chain end */ + uint32_t pkts; /* Tx packet counter */ + uint32_t pkts_d_no_skb; /* Tx drop - skb allocation failed */ + uint32_t pkts_d_rcpu_encap; /* Tx drop - bad RCPU encapsulation */ + uint32_t pkts_d_rcpu_sig; /* Tx drop - bad RCPU signature */ + uint32_t pkts_d_rcpu_meta; /* Tx drop - bad RCPU meta data */ + uint32_t pkts_d_pad_fail; /* Tx drop - pad to minimum size failed */ + uint32_t pkts_d_dma_resrc; /* Tx drop - no DMA resources */ + uint32_t pkts_d_callback; /* Tx drop - consumed by call-back */ + uint32_t pkts_d_no_link; /* Tx drop - software link down */ + uint32_t pkts_d_over_limit; /* Tx drop - length is out of range */ + } tx; + struct { + bkn_desc_info_t desc[MAX_RX_DCBS+1]; + int free; /* Number of free Rx DCBs */ + int cur; /* Index of current Rx DCB */ + int dirty; /* Index of next Rx DCB to complete */ + int running; /* Rx DMA is active */ + int api_active; /* BCM Rx API is active */ + int chain_complete; /* All DCBs in chain processed */ + int sync_err; /* Chain done with incomplete DCBs (debug) */ + int sync_retry; /* Total retry times for sync error (debug) */ + int sync_maxloop; /* Max loop times once in recovering sync (debug) */ + int use_rx_skb; /* Use SKBs for DMA */ + uint32_t rate_max; /* Rx rate in packets/sec */ + uint32_t burst_max; /* Rx burst size in number of packets */ + uint32_t tokens; /* Tokens for Rx rate control */ + uint32_t rate; /* Current packet rate */ + unsigned long tok_jif; /* Jiffies at last token update */ + unsigned long rate_jif; /* Jiffies at last rate update */ + struct list_head api_dcb_list; /* Rx DCB chains from BCM Rx API */ + bkn_dcb_chain_t *api_dcb_chain; /* Current Rx DCB chain */ + bkn_dcb_chain_t *api_dcb_chain_end; /* Rx DCB chain end */ + uint32_t pkts; /* Rx packet counter */ + uint32_t pkts_ref; /* Rx packet count for rate calculation */ + uint32_t pkts_f_api; /* Rx packets filtered to API */ + uint32_t pkts_f_netif; /* Rx packets filtered to net interface */ + uint32_t pkts_m_api; /* Rx packets mirrored to API */ + uint32_t pkts_m_netif; /* Rx packets mirrored to net interface */ + uint32_t pkts_d_no_skb; /* Rx drop - skb allocation failed */ + uint32_t pkts_d_no_match; /* Rx drop - no matching filters */ + uint32_t pkts_d_unkn_netif; /* Rx drop - unknown net interface ID */ + uint32_t pkts_d_unkn_dest; /* Rx drop - unknown destination type */ + uint32_t pkts_d_callback; /* Rx drop - consumed by call-back */ + uint32_t pkts_d_no_link; /* Rx drop - software link down */ + uint32_t pkts_d_no_api_buf; /* Rx drop - no API buffers */ + } rx[NUM_RX_CHAN]; +} bkn_switch_info_t; + +#define BKN_DNX_HDR_MAX_SIZE 40 +/* FTMH */ +#define BKN_DNX_FTMH_SIZE_BYTE 9 +#define BKN_DNX_FTMH_LB_EXT_SIZE_BYTE 1 +#define BKN_DNX_FTMH_STACKING_SIZE_BYTE 2 +#define BKN_DNX_FTMH_DEST_EXT_SIZE_BYTE 2 +#define BKN_DNX_FTMH_LB_EXT_SIZE_BYTE 1 +#define BKN_DNX_FTMH_PKT_SIZE_MSB 0 +#define BKN_DNX_FTMH_PKT_SIZE_NOF_BITS 14 +#define BKN_DNX_FTMH_TC_MSB 14 +#define BKN_DNX_FTMH_TC_NOF_BITS 3 +#define BKN_DNX_FTMH_SRC_SYS_PORT_MSB 17 +#define BKN_DNX_FTMH_SRC_SYS_PORT_NOF_BITS 16 +#define BKN_DNX_FTMH_EXT_DSP_EXIST_MSB 68 +#define BKN_DNX_FTMH_EXT_DSP_EXIST_NOF_BITS 1 +#define BKN_DNX_FTMH_EXT_MSB 45 +#define BKN_DNX_FTMH_EXT_NOF_BITS 2 +#define BKN_DNX_FTMH_FIRST_EXT_MSB 72 +#define BKN_DNX_FTMH_ACTION_TYPE_MSB 43 +#define BKN_DNX_FTMH_ACTION_TYPE_NOF_BITS 2 +#define BKN_DNX_FTMH_PPH_TYPE_MSB 45 +#define BKN_DNX_FTMH_PPH_TYPE_NOF_BITS 2 +/* PPH */ +#define BKN_DNX_PPH_SIZE_BYTE 7 +#define BKN_DNX_PPH_EEI_EXTENSION_PRESENT_MSB 0 +#define BKN_DNX_PPH_EEI_EXTENSION_PRESENT_NOF_BITS 1 +#define BKN_DNX_PPH_LEARN_EXENSION_PRESENT_MSB 1 +#define BKN_DNX_PPH_LEARN_EXENSION_PRESENT_NOF_BITS 1 +#define BKN_DNX_PPH_FHEI_SIZE_MSB 2 +#define BKN_DNX_PPH_FHEI_SIZE_NOF_BITS 2 +#define BKN_DNX_PPH_FORWARD_CODE_MSB 4 +#define BKN_DNX_PPH_FORWARD_CODE_NOF_BITS 4 +#define BKN_DNX_PPH_VSI_MSB 22 +#define BKN_DNX_PPH_VSI_NOF_BITS 16 +/* FHEI TRAP/SNOOP 3B */ +#define BKN_DNX_PPH_FHEI_3B_SIZE_BYTE 3 +#define BKN_DNX_PPH_FHEI_5B_SIZE_BYTE 5 +#define BKN_DNX_PPH_FHEI_8B_SIZE_BYTE 8 +#define BKN_DNX_PPH_FHEI_TRAP_SNOOP_3B_CPU_TRAP_CODE_QUALIFIER_MSB 0 +#define BKN_DNX_PPH_FHEI_TRAP_SNOOP_3B_CPU_TRAP_CODE_QUALIFIER_NOF_BITS 16 +#define BKN_DNX_PPH_FHEI_TRAP_SNOOP_3B_CPU_TRAP_CODE_MSB 16 +#define BKN_DNX_PPH_FHEI_TRAP_SNOOP_3B_CPU_TRAP_CODE_NOF_BITS 8 +/* PPH extension */ +#define BKN_DNX_PPH_EXPLICIT_EDITING_INFOMATION_EXTENSION_SIZE_BYTE 3 +#define BKN_DNX_PPH_LEARN_EXTENSION_SIZE_BYTE 5 + + +/* ftmh action type. */ +typedef enum bkn_dnx_ftmh_action_type_e { + BKN_DNX_FTMH_ACTION_TYPE_FORWARD = 0, /* TM action is forward */ + BKN_DNX_FTMH_ACTION_TYPE_SNOOP = 1, /* TM action is snoop */ + BKN_DNX_FTMH_ACTION_TYPE_INBOUND_MIRROR = 2, /* TM action is inbound mirror. */ + BKN_DNX_FTMH_ACTION_TYPE_OUTBOUND_MIRROR = 3 /* TM action is outbound mirror. */ +}bkn_dnx_ftmh_action_type_t; + +/* ftmh dest extension. */ +typedef struct bkn_dnx_ftmh_dest_extension_s { + uint8 valid; /* Set if the extension is present */ + uint32_t dst_sys_port; /* Destination System Port */ +} bkn_dnx_ftmh_dest_extension_t; + +/* dnx packet */ +typedef struct bkn_pkt_dnx_s { + uint32_t ntwrk_header_ptr; + struct { + uint32_t packet_size; /* Packet size in bytes */ + uint32_t action_type; /* Indicates if the copy is one of the Forward Snoop or Mirror packet copies */ + uint32_t pph_type; + uint32_t prio; /* Traffic class */ + uint32_t src_sys_port; /* Source System port*/ + } ftmh; + struct { + uint32_t vsi; + uint32_t trap_qualifier; /* RAW Data */ + uint32_t trap_id; /* RAW Data */ + } internal; +} bkn_dnx_packet_info; + + +#define PREV_IDX(_cur, _max) (((_cur) == 0) ? (_max) - 1 : (_cur) - 1) + +#if defined(CMIC_SOFT_BYTE_SWAP) + +#define CMIC_SWAP32(_x) ((((_x) & 0xff000000) >> 24) \ + | (((_x) & 0x00ff0000) >> 8) \ + | (((_x) & 0x0000ff00) << 8) \ + | (((_x) & 0x000000ff) << 24)) + +#define DEV_READ32(_d, _a, _p) \ + do { \ + uint32_t _data; \ + _data = (((volatile uint32_t *)(_d)->base_addr)[(_a)/4]); \ + *(_p) = CMIC_SWAP32(_data); \ + } while(0) + +#define DEV_WRITE32(_d, _a, _v) \ + do { \ + uint32_t _data = CMIC_SWAP32(_v); \ + ((volatile uint32_t *)(_d)->base_addr)[(_a)/4] = (_data); \ + } while(0) + +#else + +#define DEV_READ32(_d, _a, _p) \ + do { \ + *(_p) = (((volatile uint32_t *)(_d)->base_addr)[(_a)/4]); \ + } while(0) + +#define DEV_WRITE32(_d, _a, _v) \ + do { \ + ((volatile uint32_t *)(_d)->base_addr)[(_a)/4] = (_v); \ + } while(0) + +#endif /* defined(CMIC_SOFT_BYTE_SWAP) */ + +#define MEMORY_BARRIER mb() + +/* Default random MAC address has Broadcom OUI with local admin bit set */ +static u8 bkn_dev_mac[6] = { 0x02, 0x10, 0x18, 0x00, 0x00, 0x00 }; + +static u8 bkn_rcpu_dmac[6]; +static u8 bkn_rcpu_smac[6]; + +/* Driver Proc Entry root */ +static struct proc_dir_entry *bkn_proc_root = NULL; + +typedef struct bkn_priv_s { + struct list_head list; + struct net_device_stats stats; + struct net_device *dev; + bkn_switch_info_t *sinfo; + int id; + int type; + int port; + uint8_t itmh[4]; + int qnum; + uint32_t vlan; + uint32_t flags; +} bkn_priv_t; + +typedef struct bkn_filter_s { + struct list_head list; + int dev_no; + unsigned long hits; + kcom_filter_t kf; +} bkn_filter_t; + + +/* + * Multiple instance support in KNET + */ +static int _bkn_multi_inst = 0; +typedef struct { + wait_queue_head_t evt_wq; + int evt_wq_put; + int evt_wq_get; + uint32_t inst_id; +} bkn_evt_resource_t; + +static bkn_evt_resource_t _bkn_evt[LINUX_BDE_MAX_DEVICES]; + +static int bkn_knet_dev_init(int d); +static int bkn_knet_dev_reinit(int d); + +/* IOCTL debug counters */ +static int ioctl_cmd; +static int ioctl_evt; + +/* Switch devices */ +LIST_HEAD(_sinfo_list); + +/* Reallocation chunk size for netif array */ +#define NDEVS_CHUNK 64 + +/* User call-backs */ +static knet_skb_cb_f knet_rx_cb = NULL; +static knet_skb_cb_f knet_tx_cb = NULL; +static knet_filter_cb_f knet_filter_cb = NULL; + +/* + * Thread management + */ + +#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,10)) +/* + * Old style using kernel_thread() + */ +typedef struct { + const char * name; + volatile int pid; + volatile int run; + struct completion completion; + int state; +} bkn_thread_ctrl_t; + +static int +bkn_thread_start(bkn_thread_ctrl_t *tc, const char *name, + int (*threadfn)(void *)) +{ + if (name == NULL) { + return -1; + } + tc->name = name; + tc->pid = kernel_thread(threadfn, tc, 0); + if (tc->pid < 0) { + tc->pid = 0; + return -1; + } + tc->run = 1; + init_completion(&tc->completion); + return 0; +} + +static int +bkn_thread_stop(bkn_thread_ctrl_t *tc) +{ + if (tc->pid == 0) { + return 0; + } + tc->run = 0; + kill_proc(tc->pid, SIGTERM, 1); + wait_for_completion(&tc->completion); + return 0; +} + +static int +bkn_thread_should_stop(bkn_thread_ctrl_t *tc) +{ + if (tc->run) { + return 0; + } + tc->pid = 0; + return 1; +} + +static void +bkn_thread_boot(bkn_thread_ctrl_t *tc) +{ + siginitsetinv(¤t->blocked, sigmask(SIGTERM) | sigmask(SIGKILL)); +} + +static void +bkn_thread_exit(bkn_thread_ctrl_t *tc) +{ + complete_and_exit(&tc->completion, 0); +} + +static void +bkn_sleep(int clicks) +{ + wait_queue_head_t wq; + + init_waitqueue_head(&wq); + sleep_on_timeout(&wq, clicks); +} +#else +/* + * New style using kthread API + */ +#include +typedef struct { + const char * name; + struct task_struct *task; + int state; +} bkn_thread_ctrl_t; + +static int +bkn_thread_start(bkn_thread_ctrl_t *tc, const char *name, + int (*threadfn)(void *)) +{ + if (name == NULL) { + return -1; + } + tc->name = name; + tc->task = kthread_run(threadfn, tc, name); + if (IS_ERR(tc->task)) { + tc->task = NULL; + return -1; + } + return 0; +} + +static int +bkn_thread_stop(bkn_thread_ctrl_t *tc) +{ + if (tc->task == NULL) { + return 0; + } + send_sig(SIGTERM, tc->task, 0); + return kthread_stop(tc->task); +} + +static int +bkn_thread_should_stop(bkn_thread_ctrl_t *tc) +{ + return kthread_should_stop(); +} + +static void +bkn_thread_boot(bkn_thread_ctrl_t *tc) +{ + allow_signal(SIGTERM); + allow_signal(SIGKILL); +} + +static void +bkn_thread_exit(bkn_thread_ctrl_t *tc) +{ +} + +static void +bkn_sleep(int clicks) +{ + wait_queue_head_t wq; + + init_waitqueue_head(&wq); + wait_event_timeout(wq, 0, clicks); +} +#endif + +static bkn_thread_ctrl_t bkn_cmd_ctrl; +static bkn_thread_ctrl_t bkn_evt_ctrl; + +/* + * On XGS devices bit 15 fo the Transferred Bytes field in + * the DCBs is used to indicate that kernel processing is + * complete. Using this bit reduces the theoretically maximum + * supported packet size from 64K to 32K, but this is still + * adequate for 16K jumbo packets. + */ +#define SOC_DCB_KNET_DONE 0x8000 +#define SOC_DCB_KNET_COUNT_MASK 0x7fff +#define SOC_DCB_META_OFFSET 2 + +/* Default channel configuration */ +#define XGS_DMA_TX_CHAN 0 +#define XGS_DMA_RX_CHAN 1 + +/* CMIC registers */ +#define CMIC_DMA_CTRLr 0x00000100 +#define CMIC_DMA_STATr 0x00000104 +#define CMIC_DMA_DESC0r 0x00000110 +#define CMIC_IRQ_STATr 0x00000144 +#define CMIC_IRQ_MASKr 0x00000148 +#define CMIC_DEV_REV_IDr 0x00000178 + +/* CMIC interrupts reserved for kernel handler */ +#define CMIC_TXRX_IRQ_MASK 0x7f80 + +/* CMICm registers */ +#define CMICM_CMC_BASE 0x00031000 +#define CMICM_DMA_CTRLr (CMICM_CMC_BASE + 0x00000140) +#define CMICM_DMA_STATr (CMICM_CMC_BASE + 0x00000150) +#define CMICM_DMA_STAT_CLRr (CMICM_CMC_BASE + 0x000001a4) +#define CMICM_DMA_DESC0r (CMICM_CMC_BASE + 0x00000158) +#define CMICM_DMA_HALT_ADDRr (CMICM_CMC_BASE + 0x00000120) +#define CMICM_IRQ_STATr (CMICM_CMC_BASE + 0x00000400) +#define CMICM_IRQ_PCI_MASKr (CMICM_CMC_BASE + 0x00000414) +#define CMICM_IRQ_UC0_MASKr (CMICM_CMC_BASE + 0x00000428) +#define CMICM_DEV_REV_IDr 0x00010224 + +/* CMICm interrupts reserved for kernel handler */ +#define CMICM_TXRX_IRQ_MASK 0xff00 + +/* CMICd increased interrupts reserved for kernel handler */ +#define CMICD_CTRLD_IRQ_MASK 0x78000000 + +#define DEV_HAS_CMICM(_sinfo) ((_sinfo)->cmic_type == 'm') +#define CDMA_CH(_d, _ch) ((_d)->cdma_channels & (1 << (_ch))) + +/* + * DMA_STAT: control bits + * + * xxx_SET and xxx_CLR can be WRITTEN to CMIC_DMA_STAT + * xxx_TST can be masked against values read from CMIC_DMA_STAT. + * Argument required: 0 <= ch <= 3 + */ + +#define DS_DMA_ACTIVE(ch) (0x00040000 << (ch)) +#define DS_DMA_EN_SET(ch) (0x80|(ch)) +#define DS_DMA_EN_CLR(ch) (0x00|(ch)) +#define DS_DMA_EN_TST(ch) (0x00000001 << (ch)) + +#define DS_CHAIN_DONE_SET(ch) (0x80|(4+(ch))) +#define DS_CHAIN_DONE_CLR(ch) (0x00|(4+(ch))) +#define DS_CHAIN_DONE_TST(ch) (0x00000010 << (ch)) + +#define DS_DESC_DONE_SET(ch) (0x80|(8+(ch))) +#define DS_DESC_DONE_CLR(ch) (0x00|(8+(ch))) +#define DS_DESC_DONE_TST(ch) (0x00000100 << (ch)) + +#define DC_ABORT_DMA(ch) (0x04 << (8 * (ch))) + +#define DS_CMC_DESCRD_CMPLT_CLR(ch) (0x00000001 << (ch)) +#define DS_CMC_CTRLD_INT_CLR(ch) (0x00000100 << (ch)) +#define DS_CMC_DMA_ACTIVE(ch) (0x00000100 << (ch)) + +/* + * DMA_CTRL: control bits + */ +#define DC_CMC_DIRECTION (0x00000001) +#define DC_CMC_ENABLE (0x00000002) +#define DC_CMC_ABORT (0x00000004) +#define DC_CMC_CTRLD_INT (0x00000100) +#define DC_CMC_CONTINUOUS (0x00000200) + +/* + * Per-channel operations. + * These are the basis for the TX/RX functions + */ + +static inline void +xgs_dma_chain_clear(bkn_switch_info_t *sinfo, int chan) +{ + DBG_IRQ(("Clear chain on device %d chan %d\n", + sinfo->dev_no, chan)); + DEV_WRITE32(sinfo, CMIC_DMA_STATr, DS_DMA_EN_CLR(chan)); + DEV_WRITE32(sinfo, CMIC_DMA_STATr, DS_CHAIN_DONE_CLR(chan)); + + MEMORY_BARRIER; +} + +static inline void +xgs_dma_desc_clear(bkn_switch_info_t *sinfo, int chan) +{ + uint32_t val; + + DBG_IRQ(("Clear desc on device %d chan %d\n", + sinfo->dev_no, chan)); + DEV_WRITE32(sinfo, CMIC_DMA_STATr, DS_DESC_DONE_CLR(chan)); + + MEMORY_BARRIER; + + /* Flush write buffer */ + DEV_READ32(sinfo, CMIC_DMA_STATr, &val); + + MEMORY_BARRIER; +} + +static int +xgs_dma_chan_clear(bkn_switch_info_t *sinfo, int chan) +{ + xgs_dma_chain_clear(sinfo, chan); + xgs_dma_desc_clear(sinfo, chan); + + return 0; +} + +static int +xgs_dma_chan_init(bkn_switch_info_t *sinfo, int chan, int dir) +{ + uint32_t cdc; + + DEV_READ32(sinfo, CMIC_DMA_CTRLr, &cdc); + + cdc &= ~(0x9 << (8 * chan)); + if (dir) { + cdc |= 0x1 << (8 * chan); + } else { + cdc |= 0x8 << (8 * chan); + } + + DEV_WRITE32(sinfo, CMIC_DMA_CTRLr, cdc); + + return 0; +} + +static int +xgs_dma_chan_start(bkn_switch_info_t *sinfo, int chan, dma_addr_t dcb) +{ + /* Write the DCB address to the DESC address for this channel */ + DEV_WRITE32(sinfo, CMIC_DMA_DESC0r + 4 * chan, dcb); + + MEMORY_BARRIER; + + /* Kick it off */ + DEV_WRITE32(sinfo, CMIC_DMA_STATr, DS_DMA_EN_SET(chan)); + + MEMORY_BARRIER; + + return 0; +} + +static int +xgs_dma_chan_abort(bkn_switch_info_t *sinfo, int chan, int polls) +{ + uint32_t ctrl, dma_stat; + int p; + + /* Clear enable */ + DEV_WRITE32(sinfo, CMIC_DMA_STATr, DS_DMA_EN_CLR(chan)); + + MEMORY_BARRIER; + + /* Abort the channel */ + DEV_READ32(sinfo, CMIC_DMA_CTRLr, &ctrl); + DEV_WRITE32(sinfo, CMIC_DMA_CTRLr, ctrl | DC_ABORT_DMA(chan)); + + MEMORY_BARRIER; + + /* Poll for abort completion */ + for (p = 0; p < polls; p++) { + DEV_READ32(sinfo, CMIC_DMA_STATr, &dma_stat); + if (!(dma_stat & DS_DMA_ACTIVE(chan))) { + /* Restore previous control value */ + DEV_WRITE32(sinfo, CMIC_DMA_CTRLr, ctrl); + + MEMORY_BARRIER; + + /* Clear up channel */ + xgs_dma_chan_clear(sinfo, chan); + + return polls; + } + } + DBG_WARN(("DMA channel %d abort failed\n", chan)); + + return -1; +} + +static inline void +xgs_irq_mask_set(bkn_switch_info_t *sinfo, uint32_t mask) +{ + if (sinfo->napi_poll_mode) { + mask = 0; + } + lkbde_irq_mask_set(sinfo->dev_no | LKBDE_ISR2_DEV, CMIC_IRQ_MASKr, + mask, CMIC_TXRX_IRQ_MASK); +} + +static inline void +xgs_irq_mask_enable(bkn_switch_info_t *sinfo, int chan, int update_hw) +{ + uint32_t mask; + + if (chan == XGS_DMA_TX_CHAN) { + mask = 0x100; + } else { + mask = 0x180 << (2 * chan); + } + + sinfo->irq_mask |= mask; + + if (update_hw) { + xgs_irq_mask_set(sinfo, sinfo->irq_mask); + } +} + +static inline void +xgs_irq_mask_disable(bkn_switch_info_t *sinfo, int chan, int update_hw) +{ + uint32_t mask; + + if (chan == XGS_DMA_TX_CHAN) { + mask = 0x100; + } else { + mask = 0x180 << (2 * chan); + } + + sinfo->irq_mask &= ~mask; + + if (update_hw) { + xgs_irq_mask_set(sinfo, sinfo->irq_mask); + } +} + +static inline void +xgsm_dma_chain_clear(bkn_switch_info_t *sinfo, int chan) +{ + uint32_t cdc; + + /* Disabing DMA clears chain done */ + DEV_READ32(sinfo, CMICM_DMA_CTRLr + 4 * chan, &cdc); + cdc &= ~(DC_CMC_ENABLE | DC_CMC_ABORT); + DEV_WRITE32(sinfo, CMICM_DMA_CTRLr + 4 * chan, cdc); + + MEMORY_BARRIER; +} + +static inline void +xgsm_dma_desc_clear(bkn_switch_info_t *sinfo, int chan) +{ + uint32_t val; + + val = DS_CMC_DESCRD_CMPLT_CLR(chan); + if (CDMA_CH(sinfo, chan)) { + val |= DS_CMC_CTRLD_INT_CLR(chan); + } + DEV_WRITE32(sinfo, CMICM_DMA_STAT_CLRr, val); + + MEMORY_BARRIER; + + /* Flush write buffer */ + DEV_READ32(sinfo, CMICM_DMA_STAT_CLRr, &val); + + MEMORY_BARRIER; +} + +static int +xgsm_dma_chan_clear(bkn_switch_info_t *sinfo, int chan) +{ + xgsm_dma_chain_clear(sinfo, chan); + xgsm_dma_desc_clear(sinfo, chan); + + return 0; +} + +static inline void +xgsm_cdma_halt_set(bkn_switch_info_t *sinfo, int chan) +{ + DEV_WRITE32(sinfo, CMICM_DMA_HALT_ADDRr + 4 * chan, + sinfo->halt_addr[chan]); + + MEMORY_BARRIER; +} + +static int +xgsm_dma_chan_init(bkn_switch_info_t *sinfo, int chan, int dir) +{ + uint32_t cdc; + + DEV_READ32(sinfo, CMICM_DMA_CTRLr + 4 * chan, &cdc); + cdc &= ~DC_CMC_DIRECTION; + if (dir) { + cdc |= DC_CMC_DIRECTION; + } + if (CDMA_CH(sinfo, chan)) { + cdc |= DC_CMC_CONTINUOUS | DC_CMC_CTRLD_INT; + xgsm_cdma_halt_set(sinfo, chan); + } + DEV_WRITE32(sinfo, CMICM_DMA_CTRLr + 4 * chan, cdc); + + return 0; +} + +static int +xgsm_dma_chan_start(bkn_switch_info_t *sinfo, int chan, dma_addr_t dcb) +{ + uint32_t cdc; + + /* Write the DCB address to the DESC address for this channel */ + DEV_WRITE32(sinfo, CMICM_DMA_DESC0r + 4 * chan, dcb); + + MEMORY_BARRIER; + + /* Kick it off */ + DEV_READ32(sinfo, CMICM_DMA_CTRLr + 4 * chan, &cdc); + cdc |= DC_CMC_ENABLE; + DEV_WRITE32(sinfo, CMICM_DMA_CTRLr + 4 * chan, cdc); + + MEMORY_BARRIER; + + return 0; +} + +static int +xgsm_dma_chan_abort(bkn_switch_info_t *sinfo, int chan, int polls) +{ + uint32_t ctrl, dma_stat; + int p; + + /* Skip abort sequence if channel is not active */ + DEV_READ32(sinfo, CMICM_DMA_STATr, &dma_stat); + if (!(dma_stat & DS_CMC_DMA_ACTIVE(chan))) { + return 0; + } + + /* Abort the channel */ + DEV_READ32(sinfo, CMICM_DMA_CTRLr + 4 * chan, &ctrl); + ctrl |= (DC_CMC_ENABLE | DC_CMC_ABORT); + DEV_WRITE32(sinfo, CMICM_DMA_CTRLr + 4 * chan, ctrl); + + MEMORY_BARRIER; + + /* Poll for abort completion */ + for (p = 0; p < polls; p++) { + DEV_READ32(sinfo, CMICM_DMA_STATr, &dma_stat); + if (!(dma_stat & DS_CMC_DMA_ACTIVE(chan))) { + /* Clear up channel */ + xgsm_dma_chan_clear(sinfo, chan); + return polls; + } + } + DBG_WARN(("DMA channel %d abort failed\n", chan)); + + return -1; +} + +static inline void +xgsm_irq_mask_set(bkn_switch_info_t *sinfo, uint32_t mask) +{ + uint32_t irq_mask_reg = CMICM_IRQ_PCI_MASKr; + uint32_t ctrld_mask = 0; + + if (sinfo->napi_poll_mode) { + mask = 0; + } + if (sinfo->cpu_no == 1) { + irq_mask_reg = CMICM_IRQ_UC0_MASKr; + } + + /* Get the Controlled Interrupts mask for Continuous DMA mode */ + ctrld_mask |= (sinfo->cdma_channels << 27) & CMICD_CTRLD_IRQ_MASK; + + lkbde_irq_mask_set(sinfo->dev_no | LKBDE_ISR2_DEV, irq_mask_reg, + mask, CMICM_TXRX_IRQ_MASK | ctrld_mask); +} + +static inline void +xgsm_irq_mask_enable(bkn_switch_info_t *sinfo, int chan, int update_hw) +{ + uint32_t mask; + + if (CDMA_CH(sinfo, chan)) { + mask = 0x08000000 << chan; + } else { + if (chan == XGS_DMA_TX_CHAN) { + mask = 0x8000; + } else { + mask = 0xc000 >> (2 * chan); + } + } + + sinfo->irq_mask |= mask; + + if (update_hw) { + xgsm_irq_mask_set(sinfo, sinfo->irq_mask); + } +} + +static inline void +xgsm_irq_mask_disable(bkn_switch_info_t *sinfo, int chan, int update_hw) +{ + uint32_t mask; + + if (CDMA_CH(sinfo, chan)) { + mask = 0x08000000 << chan; + } else { + if (chan == XGS_DMA_TX_CHAN) { + mask = 0x8000; + } else { + mask = 0xc000 >> (2 * chan); + } + } + + sinfo->irq_mask &= ~mask; + + if (update_hw) { + xgsm_irq_mask_set(sinfo, sinfo->irq_mask); + } +} + +static inline void +dev_dma_chain_clear(bkn_switch_info_t *sinfo, int chan) +{ + if (DEV_HAS_CMICM(sinfo)) { + xgsm_dma_chain_clear(sinfo, chan); + } else { + xgs_dma_chain_clear(sinfo, chan); + } +} + +static inline void +dev_dma_desc_clear(bkn_switch_info_t *sinfo, int chan) +{ + if (DEV_HAS_CMICM(sinfo)) { + xgsm_dma_desc_clear(sinfo, chan); + } else { + xgs_dma_desc_clear(sinfo, chan); + } +} + +static int +dev_dma_chan_clear(bkn_switch_info_t *sinfo, int chan) +{ + if (DEV_HAS_CMICM(sinfo)) { + return xgsm_dma_chan_clear(sinfo, chan); + } + return xgs_dma_chan_clear(sinfo, chan); +} + +static void +dev_cdma_halt_set(bkn_switch_info_t *sinfo, int chan) +{ + if (DEV_HAS_CMICM(sinfo)) { + xgsm_cdma_halt_set(sinfo, chan); + } +} + +static int +dev_dma_chan_init(bkn_switch_info_t *sinfo, int chan, int dir) +{ + if (DEV_HAS_CMICM(sinfo)) { + return xgsm_dma_chan_init(sinfo, chan, dir); + } + return xgs_dma_chan_init(sinfo, chan, dir); +} + +static int +dev_dma_chan_start(bkn_switch_info_t *sinfo, int chan, dma_addr_t dcb) +{ + if (DEV_HAS_CMICM(sinfo)) { + return xgsm_dma_chan_start(sinfo, chan, dcb); + } + return xgs_dma_chan_start(sinfo, chan, dcb); +} + +static int +dev_dma_chan_abort(bkn_switch_info_t *sinfo, int chan, int polls) +{ + if (DEV_HAS_CMICM(sinfo)) { + return xgsm_dma_chan_abort(sinfo, chan, polls); + } + return xgs_dma_chan_abort(sinfo, chan, polls); +} + +static inline void +dev_irq_mask_set(bkn_switch_info_t *sinfo, uint32_t mask) +{ + if (DEV_HAS_CMICM(sinfo)) { + xgsm_irq_mask_set(sinfo, mask); + } else { + xgs_irq_mask_set(sinfo, mask); + } +} + +static inline void +dev_irq_mask_enable(bkn_switch_info_t *sinfo, int chan, int update_hw) +{ + if (DEV_HAS_CMICM(sinfo)) { + xgsm_irq_mask_enable(sinfo, chan, update_hw); + } else { + xgs_irq_mask_enable(sinfo, chan, update_hw); + } +} + +static void +dev_irq_mask_disable(bkn_switch_info_t *sinfo, int chan, int update_hw) +{ + if (DEV_HAS_CMICM(sinfo)) { + xgsm_irq_mask_disable(sinfo, chan, update_hw); + } else { + xgs_irq_mask_disable(sinfo, chan, update_hw); + } +} + + +static int +bkn_alloc_dcbs(bkn_switch_info_t *sinfo) +{ + int dcb_size; + int tx_ring_size, rx_ring_size; + + dcb_size = sinfo->dcb_wsize * sizeof(uint32_t); + tx_ring_size = dcb_size * (MAX_TX_DCBS + 1); + rx_ring_size = dcb_size * (MAX_RX_DCBS + 1); + sinfo->dcb_mem_size = tx_ring_size + rx_ring_size * NUM_RX_CHAN; + + sinfo->dcb_mem = DMA_ALLOC_COHERENT(sinfo->dma_dev, + sinfo->dcb_mem_size, + &sinfo->dcb_dma); + if (sinfo->dcb_mem == NULL) { + gprintk("DCB memory allocation (%d bytes) failed.\n", + sinfo->dcb_mem_size); + return -ENOMEM; + } + + return 0; +} + +static void +bkn_free_dcbs(bkn_switch_info_t *sinfo) +{ + if (sinfo->dcb_mem != NULL) { + DMA_FREE_COHERENT(sinfo->dma_dev, sinfo->dcb_mem_size, + sinfo->dcb_mem, sinfo->dcb_dma); + sinfo->dcb_mem = NULL; + } +} + +static void +bkn_clean_tx_dcbs(bkn_switch_info_t *sinfo) +{ + bkn_desc_info_t *desc; + + DBG_DCB_TX(("Cleaning Tx DCBs (%d %d).\n", + sinfo->tx.cur, sinfo->tx.dirty)); + while (sinfo->tx.free < MAX_TX_DCBS) { + desc = &sinfo->tx.desc[sinfo->tx.dirty]; + if (desc->skb != NULL) { + DBG_SKB(("Cleaning Tx SKB from DCB %d.\n", + sinfo->tx.dirty)); + DMA_UNMAP_SINGLE(sinfo->dma_dev, + desc->skb_dma, desc->dma_size, + DMA_TODEV); + desc->skb_dma = 0; + dev_kfree_skb_any(desc->skb); + desc->skb = NULL; + } + if (++sinfo->tx.dirty >= MAX_TX_DCBS) { + sinfo->tx.dirty = 0; + } + sinfo->tx.free++; + } + sinfo->tx.api_active = 0; + DBG_DCB_TX(("Cleaned Tx DCBs (%d %d).\n", + sinfo->tx.cur, sinfo->tx.dirty)); +} + +static void +bkn_clean_rx_dcbs(bkn_switch_info_t *sinfo, int chan) +{ + bkn_desc_info_t *desc; + + DBG_DCB_RX(("Cleaning Rx%d DCBs (%d %d).\n", + chan, sinfo->rx[chan].cur, sinfo->rx[chan].dirty)); + while (sinfo->rx[chan].free) { + desc = &sinfo->rx[chan].desc[sinfo->rx[chan].dirty]; + if (desc->skb != NULL) { + DBG_SKB(("Cleaning Rx%d SKB from DCB %d.\n", + chan, sinfo->rx[chan].dirty)); + DMA_UNMAP_SINGLE(sinfo->dma_dev, + desc->skb_dma, desc->dma_size, + DMA_FROMDEV); + desc->skb_dma = 0; + dev_kfree_skb_any(desc->skb); + desc->skb = NULL; + } + if (++sinfo->rx[chan].dirty >= MAX_RX_DCBS) { + sinfo->rx[chan].dirty = 0; + } + sinfo->rx[chan].free--; + } + sinfo->rx[chan].running = 0; + sinfo->rx[chan].api_active = 0; + DBG_DCB_RX(("Cleaned Rx%d DCBs (%d %d).\n", + chan, sinfo->rx[chan].cur, sinfo->rx[chan].dirty)); +} + +static void +bkn_clean_dcbs(bkn_switch_info_t *sinfo) +{ + int chan; + + bkn_clean_tx_dcbs(sinfo); + + for (chan = 0; chan < NUM_RX_CHAN; chan++) { + bkn_clean_rx_dcbs(sinfo, chan); + } +} + +static void +bkn_init_dcbs(bkn_switch_info_t *sinfo) +{ + int dcb_size; + uint32_t *dcb_mem; + dma_addr_t dcb_dma; + bkn_desc_info_t *desc; + int idx; + int chan; + + memset(sinfo->dcb_mem, 0, sinfo->dcb_mem_size); + + dcb_size = sinfo->dcb_wsize * sizeof(uint32_t); + dcb_mem = sinfo->dcb_mem; + dcb_dma = sinfo->dcb_dma; + + for (idx = 0; idx < (MAX_TX_DCBS + 1); idx++) { + if (CDMA_CH(sinfo, XGS_DMA_TX_CHAN)) { + dcb_mem[1] |= (1 << 24) | (1 << 16); + if (idx == MAX_TX_DCBS) { + dcb_mem[1] |= 1 << 18; + dcb_mem[0] = sinfo->tx.desc[0].dcb_dma; + } + } + desc = &sinfo->tx.desc[idx]; + desc->dcb_mem = dcb_mem; + desc->dcb_dma = dcb_dma; + dcb_mem += sinfo->dcb_wsize; + dcb_dma += dcb_size; + } + sinfo->halt_addr[XGS_DMA_TX_CHAN] = sinfo->tx.desc[0].dcb_dma; + sinfo->tx.free = MAX_TX_DCBS; + + DBG_DCB_TX(("Tx DCBs @ 0x%08x.\n", + (uint32_t)sinfo->tx.desc[0].dcb_dma)); + + for (chan = 0; chan < NUM_RX_CHAN; chan++) { + for (idx = 0; idx < (MAX_RX_DCBS + 1); idx++) { + if (CDMA_CH(sinfo, XGS_DMA_RX_CHAN + chan)) { + dcb_mem[1] |= (1 << 24) | (1 << 16); + if (idx == MAX_RX_DCBS) { + dcb_mem[1] |= 1 << 18; + dcb_mem[0] = sinfo->rx[chan].desc[0].dcb_dma; + } + } + desc = &sinfo->rx[chan].desc[idx]; + desc->dcb_mem = dcb_mem; + desc->dcb_dma = dcb_dma; + dcb_mem += sinfo->dcb_wsize; + dcb_dma += dcb_size; + } + sinfo->halt_addr[XGS_DMA_RX_CHAN + chan] = sinfo->rx[chan].desc[MAX_RX_DCBS].dcb_dma; + sinfo->rx[chan].free = 0; + + DBG_DCB_RX(("Rx%d DCBs @ 0x%08x.\n", + chan, (uint32_t)sinfo->rx[chan].desc[0].dcb_dma)); + } +} + +static void +bkn_dump_dcb(char *prefix, uint32_t *dcb, int wsize, int txrx) +{ + if (XGS_DMA_TX_CHAN == txrx) { + DBG_DCB_TX(("%s: 0x%08x 0x%08x 0x%08x 0x%08x 0x%08x 0x%08x ... 0x%08x\n", + prefix, dcb[0], dcb[1], dcb[2], dcb[3], dcb[4], dcb[5], + dcb[wsize - 1])); + } else { + DBG_DCB_RX(("%s: 0x%08x 0x%08x 0x%08x 0x%08x 0x%08x 0x%08x ... 0x%08x\n", + prefix, dcb[0], dcb[1], dcb[2], dcb[3], dcb[4], dcb[5], + dcb[wsize - 1])); + } +} + +static void +bkn_dump_pkt(uint8_t *data, int size, int txrx) +{ + int idx; + char str[128]; + + if (!(debug & DBG_LVL_PDMP) && + !(txrx == XGS_DMA_TX_CHAN && debug & DBG_LVL_PDMP_TX) && + !(txrx == XGS_DMA_RX_CHAN && debug & DBG_LVL_PDMP_RX)) { + return; + } + size =32; + + for (idx = 0; idx < size; idx++) { + if ((idx & 0xf) == 0) { + sprintf(str, "%04x: ", idx); + } + if ((idx & 0xf) == 8) { + sprintf(&str[strlen(str)], "- "); + } + sprintf(&str[strlen(str)], "%02x ", data[idx]); + if ((idx & 0xf) == 0xf) { + sprintf(&str[strlen(str)], "\n"); + gprintk(str); + } + } + if ((idx & 0xf) != 0) { + sprintf(&str[strlen(str)], "\n"); + gprintk(str); + } +} + +static bkn_switch_info_t * +bkn_sinfo_from_unit(int unit) +{ + struct list_head *list; + bkn_switch_info_t *sinfo; + + list_for_each(list, &_sinfo_list) { + sinfo = (bkn_switch_info_t *)list; + if (sinfo->dev_no == unit || unit == -1) { + return sinfo; + } + } + return NULL; +} + +static void +bkn_api_rx_restart(bkn_switch_info_t *sinfo) +{ + bkn_dcb_chain_t *dcb_chain; + int chan = API_RX_CHAN; + int start_dma; + + if (sinfo->basedev_suspended) { + return; + } + + /* If resume from basedev suspended, there could be a suspended chain */ + if (sinfo->rx[chan].api_dcb_chain) { + return; + } + + /* Assume that driver lock is held */ + if (!list_empty(&sinfo->rx[chan].api_dcb_list)) { + dcb_chain = list_entry(sinfo->rx[chan].api_dcb_list.next, + bkn_dcb_chain_t, list); + start_dma = 0; + if (sinfo->rx[chan].use_rx_skb == 0) { + sinfo->rx[chan].chain_complete = 0; + start_dma = 1; + if (CDMA_CH(sinfo, XGS_DMA_RX_CHAN + chan) && + sinfo->rx[chan].api_active) { + /* HW is running already, so we just move to the next chain */ + start_dma = 0; + } + } + sinfo->rx[chan].api_dcb_chain = dcb_chain; + sinfo->rx[chan].api_active = 1; + if (start_dma) { + DBG_DCB_RX(("Start API Rx DMA, first DCB @ 0x%08x (%d DCBs).\n", + (uint32_t)dcb_chain->dcb_dma, dcb_chain->dcb_cnt)); + dev_dma_chan_clear(sinfo, XGS_DMA_RX_CHAN + chan); + dev_irq_mask_enable(sinfo, XGS_DMA_RX_CHAN + chan, 1); + dev_dma_chan_start(sinfo, XGS_DMA_RX_CHAN + chan, + dcb_chain->dcb_dma); + } + + list_del(&dcb_chain->list); + } +} + +static void +bkn_api_rx_chain_done(bkn_switch_info_t *sinfo, int chan) +{ + DBG_DCB_RX(("API Rx DMA chain done\n")); + + if (!CDMA_CH(sinfo, XGS_DMA_RX_CHAN + chan)) { + sinfo->rx[chan].api_active = 0; + } + if (sinfo->rx[chan].api_dcb_chain) { + kfree(sinfo->rx[chan].api_dcb_chain); + sinfo->rx[chan].api_dcb_chain = NULL; + } + bkn_api_rx_restart(sinfo); + if (CDMA_CH(sinfo, XGS_DMA_RX_CHAN + chan) && + sinfo->rx[chan].api_dcb_chain == NULL) { + sinfo->rx[chan].api_active = 0; + } +} + +static int +bkn_api_rx_copy_from_skb(bkn_switch_info_t *sinfo, + int chan, bkn_desc_info_t *desc) +{ + bkn_dcb_chain_t *dcb_chain; + uint32_t *dcb; + uint32_t dcb_stat; + uint8_t *pkt; + int pktlen; + int i; + bkn_evt_resource_t *evt; + + dcb_stat = desc->dcb_mem[sinfo->dcb_wsize-1]; + pktlen = dcb_stat & SOC_DCB_KNET_COUNT_MASK; + + dcb_chain = sinfo->rx[chan].api_dcb_chain; + if (CDMA_CH(sinfo, XGS_DMA_RX_CHAN + chan) && dcb_chain == NULL) { + /* Last chain done, try to get a new one */ + bkn_api_rx_chain_done(sinfo, chan); + dcb_chain = sinfo->rx[chan].api_dcb_chain; + } + if (dcb_chain == NULL) { + DBG_WARN(("No Rx API buffers\n")); + sinfo->rx[chan].pkts_d_no_api_buf++; + return -1; + } + dcb = &dcb_chain->dcb_mem[dcb_chain->dcb_cur * sinfo->dcb_wsize]; + if (dcb[1] < pktlen) { + DBG_WARN(("Rx API buffer too small\n")); + return -1; + } + pkt = (uint8_t *)kernel_bde->p2l(sinfo->dev_no, dcb[0]); + if (pkt == NULL) { + DBG_WARN(("Invalid Rx API buffer\n")); + return -1; + } + + /* Copy packet data */ + memcpy(pkt, desc->skb->data, pktlen); + + /* Copy packet metadata and mark as done */ + for (i = SOC_DCB_META_OFFSET; i < sinfo->dcb_wsize; i++) { + dcb[i] = desc->dcb_mem[i]; + } + dcb[sinfo->dcb_wsize-1] = dcb_stat | SOC_DCB_KNET_DONE; + + dcb_chain->dcb_cur++; + + if (CDMA_CH(sinfo, XGS_DMA_RX_CHAN + chan)) { + dcb = &dcb_chain->dcb_mem[dcb_chain->dcb_cur * sinfo->dcb_wsize]; + if (dcb[1] & (1 << 18)) { + /* Get the next chain if reload done */ + dcb[sinfo->dcb_wsize - 1] |= (1 << 31) | SOC_DCB_KNET_DONE; + bkn_api_rx_chain_done(sinfo, chan); + dcb_chain = sinfo->rx[chan].api_dcb_chain; + if (dcb_chain == NULL) { + sinfo->rx[chan].api_dcb_chain_end = NULL; + } + } + } else { + if ((dcb[1] & (1 << 16)) == 0) { + bkn_api_rx_chain_done(sinfo, chan); + } + } + + sinfo->dma_events |= KCOM_DMA_INFO_F_RX_DONE; + + evt = &_bkn_evt[sinfo->evt_idx]; + evt->evt_wq_put++; + wake_up_interruptible(&evt->evt_wq); + + return 0; +} + +static void +bkn_rx_refill(bkn_switch_info_t *sinfo, int chan) +{ + struct sk_buff *skb; + bkn_desc_info_t *desc; + uint32_t *dcb; + int prev; + + if (sinfo->rx[chan].use_rx_skb == 0) { + /* Rx buffers are provided by BCM Rx API */ + return; + } + + if (!CDMA_CH(sinfo, XGS_DMA_RX_CHAN + chan) && + sinfo->rx[chan].tokens < MAX_RX_DCBS) { + /* Pause DMA for now */ + return; + } + + while (sinfo->rx[chan].free < MAX_RX_DCBS) { + desc = &sinfo->rx[chan].desc[sinfo->rx[chan].cur]; + if (desc->skb == NULL) { + skb = dev_alloc_skb(rx_buffer_size + RCPU_RX_ENCAP_SIZE); + if (skb == NULL) { + break; + } + skb_reserve(skb, RCPU_RX_ENCAP_SIZE); + desc->skb = skb; + } else { + DBG_DCB_RX(("Refill Rx%d SKB in DCB %d recycled.\n", + chan, sinfo->rx[chan].cur)); + } + skb = desc->skb; + desc->dma_size = rx_buffer_size; +#ifdef KNET_NO_AXI_DMA_INVAL + /* + * FIXME: Need to retain this code until iProc customers have been + * migrated to updated u-boot. Old u-boot versions are unable to load + * the kernel into non-ACP memory. + */ + /* + * Cache invalidate may corrupt DMA memory on some iProc-based devices + * if the kernel is mapped to ACP memory. + */ + if (sinfo->pdev == NULL) { + desc->dma_size = 0; + } +#endif + desc->skb_dma = DMA_MAP_SINGLE(sinfo->dma_dev, + skb->data, desc->dma_size, + DMA_FROMDEV); + DBG_DCB_RX(("Refill Rx%d DCB %d (0x%08x).\n", + chan, sinfo->rx[chan].cur, (uint32_t)desc->skb_dma)); + dcb = desc->dcb_mem; + memset(dcb, 0, sizeof(uint32_t) * sinfo->dcb_wsize); + dcb[0] = desc->skb_dma; + dcb[1] = rx_buffer_size; + + if (CDMA_CH(sinfo, XGS_DMA_RX_CHAN + chan)) { + dcb[1] |= (1 << 24) | (1 << 16); + } else { + prev = PREV_IDX(sinfo->rx[chan].cur, MAX_RX_DCBS); + if (prev < (MAX_RX_DCBS - 1)) { + sinfo->rx[chan].desc[prev].dcb_mem[1] |= (1 << 16); + } + } + if (++sinfo->rx[chan].cur >= MAX_RX_DCBS) { + sinfo->rx[chan].cur = 0; + } + sinfo->rx[chan].free++; + sinfo->rx[chan].tokens--; + } +} + +static int +bkn_rx_restart(bkn_switch_info_t *sinfo, int chan) +{ + bkn_desc_info_t *desc; + + if (sinfo->basedev_suspended) { + return 0; + } + + if (sinfo->rx[chan].running) { + return 0; + } + + if (sinfo->rx[chan].free < MAX_RX_DCBS) { + return 1; + } + + desc = &sinfo->rx[chan].desc[sinfo->rx[chan].dirty]; + sinfo->rx[chan].chain_complete = 0; + DBG_DCB_RX(("Restart Rx%d DMA, DCB @ 0x%08x (%d).\n", + chan, (uint32_t)desc->dcb_dma, sinfo->rx[chan].dirty)); + dev_dma_chan_clear(sinfo, XGS_DMA_RX_CHAN + chan); + dev_irq_mask_enable(sinfo, XGS_DMA_RX_CHAN + chan, 1); + dev_dma_chan_start(sinfo, XGS_DMA_RX_CHAN + chan, desc->dcb_dma); + sinfo->rx[chan].running = 1; + + /* Request one extra poll if chain was restarted during poll */ + if (sinfo->napi_poll_mode) { + sinfo->napi_poll_again = 1; + } + + return 0; +} + +static int +bkn_tx_dma_start(bkn_switch_info_t *sinfo) +{ + bkn_desc_info_t *desc; + + desc = &sinfo->tx.desc[sinfo->tx.cur]; + if (sinfo->tx.free == MAX_TX_DCBS) { + if (!sinfo->tx.api_active) { + DBG_DCB_TX(("Start Tx DMA, DCB @ 0x%08x (%d).\n", + (uint32_t)desc->dcb_dma, sinfo->tx.cur)); + dev_dma_chan_clear(sinfo, XGS_DMA_TX_CHAN); + dev_irq_mask_enable(sinfo, XGS_DMA_TX_CHAN, 1); + dev_dma_chan_start(sinfo, XGS_DMA_TX_CHAN, desc->dcb_dma); + } + } + + return 0; +} + +static int +bkn_dma_init(bkn_switch_info_t *sinfo) +{ + int chan; + + dev_dma_chan_init(sinfo, XGS_DMA_TX_CHAN, 1); + if (CDMA_CH(sinfo, XGS_DMA_TX_CHAN)) { + bkn_tx_dma_start(sinfo); + } + + for (chan = 0; chan < NUM_RX_CHAN; chan++) { + dev_dma_chan_init(sinfo, XGS_DMA_RX_CHAN + chan, 0); + bkn_rx_refill(sinfo, chan); + bkn_rx_restart(sinfo, chan); + } + + return 0; +} + +static void +bkn_cdma_goto(bkn_switch_info_t *sinfo, int chan, dma_addr_t dcb) +{ + if (sinfo->basedev_suspended) { + return; + } + + /* Set the new halt location */ + sinfo->halt_addr[chan] = dcb; + dev_cdma_halt_set(sinfo, chan); +} + +static int +bkn_dma_abort_tx(bkn_switch_info_t *sinfo) +{ + bkn_dcb_chain_t *dcb_chain; + + DBG_VERB(("Aborting Tx DMA.\n")); + + dev_irq_mask_disable(sinfo, XGS_DMA_TX_CHAN, 1); + + dev_dma_chan_abort(sinfo, XGS_DMA_TX_CHAN, 10000); + + if (sinfo->tx.api_dcb_chain) { + DBG_DCB_TX(("Freeing active Tx DCB chain.\n")); + kfree(sinfo->tx.api_dcb_chain); + sinfo->tx.api_dcb_chain = NULL; + } + while (!list_empty(&sinfo->tx.api_dcb_list)) { + dcb_chain = list_entry(sinfo->tx.api_dcb_list.next, + bkn_dcb_chain_t, list); + list_del(&dcb_chain->list); + DBG_DCB_TX(("Freeing Tx DCB chain.\n")); + kfree(dcb_chain); + } + sinfo->tx.api_dcb_chain_end = NULL; + + return 0; +} + +static int +bkn_dma_abort_rx(bkn_switch_info_t *sinfo, int chan) +{ + bkn_dcb_chain_t *dcb_chain; + + DBG_VERB(("Aborting Rx%d DMA.\n", chan)); + + dev_irq_mask_disable(sinfo, XGS_DMA_RX_CHAN + chan, 1); + + dev_dma_chan_abort(sinfo, XGS_DMA_RX_CHAN + chan, 10000); + + if (sinfo->rx[chan].api_dcb_chain) { + DBG_DCB_RX(("Freeing active Rx%d DCB chain.\n", chan)); + kfree(sinfo->rx[chan].api_dcb_chain); + sinfo->rx[chan].api_dcb_chain = NULL; + } + while (!list_empty(&sinfo->rx[chan].api_dcb_list)) { + dcb_chain = list_entry(sinfo->rx[chan].api_dcb_list.next, + bkn_dcb_chain_t, list); + list_del(&dcb_chain->list); + DBG_DCB_RX(("Freeing Rx%d DCB chain.\n", chan)); + kfree(dcb_chain); + } + sinfo->rx[chan].api_dcb_chain_end = NULL; + + return 0; +} + +static int +bkn_dma_abort(bkn_switch_info_t *sinfo) +{ + int chan; + + bkn_dma_abort_tx(sinfo); + + for (chan = 0; chan < NUM_RX_CHAN; chan++) { + bkn_dma_abort_rx(sinfo, chan); + } + + return 0; +} + +static bkn_filter_t * +bkn_match_rx_pkt(bkn_switch_info_t *sinfo, uint32_t *desc, + uint8_t *pkt, int chan, bkn_filter_t *cbf) +{ + struct list_head *list; + bkn_filter_t *filter; + kcom_filter_t scratch, *kf; + uint8_t *oob = (uint8_t *)desc; + int size, wsize; + int idx, match; + + list_for_each(list, &sinfo->rxpf_list) { + filter = (bkn_filter_t *)list; + kf = &filter->kf; + memcpy(&scratch.data.b[0], + &oob[kf->oob_data_offset], kf->oob_data_size); + memcpy(&scratch.data.b[kf->oob_data_size], + &pkt[kf->pkt_data_offset], kf->pkt_data_size); + size = kf->oob_data_size + kf->pkt_data_size; + wsize = BYTES2WORDS(size); + DBG_VERB(("Filter: size = %d (%d), data = 0x%08x, mask = 0x%08x\n", + size, wsize, kf->data.w[0], kf->mask.w[0])); + match = 1; + if (match) { + if (kf->priority < (num_rx_prio * NUM_RX_CHAN)) { + if (kf->priority < (num_rx_prio * chan) || + kf->priority >= (num_rx_prio * (chan + 1))) { + match = 0; + } + } + } + if (match) { + for (idx = 0; idx < wsize; idx++) { + scratch.data.w[idx] &= kf->mask.w[idx]; + if (scratch.data.w[idx] != kf->data.w[idx]) { + match = 0; + break; + } + } + } + if (match) { + if (kf->dest_type == KCOM_DEST_T_CB) { + /* Check for custom filters */ + if (knet_filter_cb != NULL && cbf != NULL) { + size = desc[sinfo->dcb_wsize-1] & SOC_DCB_KNET_COUNT_MASK; + memset(cbf, 0, sizeof(*cbf)); + memcpy(&cbf->kf, kf, sizeof(cbf->kf)); + if (knet_filter_cb(pkt, size, sinfo->dev_no, + desc, chan, &cbf->kf)) { + filter->hits++; + return cbf; + } + } else { + DBG_FLTR(("Match, but not filter callback\n")); + } + } else { + filter->hits++; + return filter; + } + } + } + + return NULL; +} + +static bkn_priv_t * +bkn_netif_lookup(bkn_switch_info_t *sinfo, int id) +{ + struct list_head *list; + bkn_priv_t *priv; + int found; + + /* Fast path */ + if (id < sinfo->ndev_max) { + if (sinfo->ndevs[id] != NULL) { + DBG_NDEV(("Look up netif ID %d successful\n", id)); + return netdev_priv(sinfo->ndevs[id]); + } + } + + /* Slow path - should normally not get here */ + found = 0; + priv = NULL; + list_for_each(list, &sinfo->ndev_list) { + priv = (bkn_priv_t *)list; + if (priv->id == id) { + found = 1; + break; + } + } + if (found && priv != NULL) { + return priv; + } + return NULL; +} + +static int +bkn_add_rcpu_encap(bkn_switch_info_t *sinfo, struct sk_buff *skb, uint32_t *dcb) +{ + int pktlen = skb->len; + uint32_t *metadata; + int idx; + + /* Add and clear RCPU encapsulation */ + skb_push(skb, RCPU_RX_ENCAP_SIZE); + memset(skb->data, 0, RCPU_RX_ENCAP_SIZE); + + /* RCPU Header */ + memcpy(skb->data, &skb->data[RCPU_RX_ENCAP_SIZE], 12); + if (rcpu_dmac != NULL) { + memcpy(skb->data, bkn_rcpu_dmac, 6); + } + if (rcpu_smac != NULL) { + memcpy(&skb->data[6], bkn_rcpu_smac, 6); + } + skb->data[12] = 0x81; + skb->data[14] = rcpu_vlan >> 8; + skb->data[15] = rcpu_vlan & 0xff; + skb->data[16] = rcpu_ethertype >> 8; + skb->data[17] = rcpu_ethertype & 0xff; + skb->data[18] = sinfo->rcpu_sig >> 8; + skb->data[19] = sinfo->rcpu_sig & 0xff; + skb->data[20] = RCPU_OPCODE_RX; + skb->data[21] = RCPU_F_MODHDR; + skb->data[24] = pktlen >> 8; + skb->data[25] = pktlen & 0xff; + + /* Meta data */ + metadata = (uint32_t *)&skb->data[RCPU_HDR_SIZE]; + for (idx = 0; idx < sinfo->dcb_wsize - 3; idx++) { + metadata[idx] = htonl(dcb[idx+2]); + } + + return 0; +} + +static void +bkn_eth_type_update(struct sk_buff *skb, int ethertype) +{ +#if defined(PM_ETH_TYPE) && defined(PM_FC_TYPE) + /* Optionally override standard protocol */ + skb->protocol = PM_ETH_TYPE; + if (ethertype == ETH_P_FCOE) { + skb->protocol = PM_FC_TYPE; + } +#endif +} + + + +#define BKN_DNX_BIT(x) (1<<(x)) +#define BKN_DNX_RBIT(x) (~(1<<(x))) +#ifdef __LITTLE_ENDIAN +#define BKN_DNX_BYTE_SWAP(x) (x) +#else +#define BKN_DNX_BYTE_SWAP(x) ((((x) << 24)) | (((x) & 0xff00) << 8) | (((x) & 0xff0000) >> 8) | (((x) >> 24))) +#endif +static int +device_is_dune(bkn_switch_info_t *sinfo) +{ + int is_dune = 0; + + is_dune = (sinfo->dcb_type == 28) ? 1 : 0; + return is_dune; +} +static int +packet_is_untagged(uint16_t tpid) +{ + int is_untagged = 0; + + /* Fixme SDK-111398 */ + /* 0x8100 is used in 802.1Q */ + /* 0x8848 is used in 802.11ad, the dtag tpid can be set to anything besides 0x8848, 0x9100 is a typical value, but couldn't cover all scenarios. */ + is_untagged = ((tpid != 0x8100) && (tpid != 0x8848) && (tpid != 0x9100)); + return is_untagged; +} + +static void +bkn_dnx_bitstream_set_field(uint32_t *input_buffer, uint32_t start_bit, uint32_t nof_bits, uint32_t field) +{ + uint32_t place; + uint32_t field_bit_i; + uint32_t bit_indicator; + + if( nof_bits > 32) + { + return; + } + + for( place=start_bit, field_bit_i = 0; field_bit_i< nof_bits; ++place, ++field_bit_i) + { + bit_indicator = field & BKN_DNX_BIT(nof_bits-field_bit_i-1); + if(bit_indicator) + { + input_buffer[place>>5] |= (0x80000000 >> (place & 0x0000001F)); + } + else + { + input_buffer[place>>5] &= ~(0x80000000 >> (place & 0x0000001F)); + } + } + return; +} + +static void +bkn_dnx_bitstream_get_field(uint8_t *input_buffer, uint32_t start_bit, uint32_t nof_bits, uint32_t *output_value) +{ + uint32_t idx; + uint32_t buf_sizes=0; + uint32_t tmp_output_value[2]={0}; + uint32_t first_byte_ndx; + uint32_t last_byte_ndx; + uint32_t place; + uint32_t field_bit_i; + uint8_t *tmp_output_value_u8_ptr = (uint8_t*)&tmp_output_value; + uint32_t bit_indicator; + + if (nof_bits > 32) + { + return; + } + + first_byte_ndx = start_bit / 8; + last_byte_ndx = ((start_bit + nof_bits - 1) / 8); + *output_value=0; + + /* get 32 bit value, MSB */ + for (idx = first_byte_ndx; idx <= last_byte_ndx; ++idx) + { + tmp_output_value_u8_ptr[last_byte_ndx - idx] = input_buffer[idx]; + buf_sizes += 8; + } + tmp_output_value[0] = BKN_DNX_BYTE_SWAP(tmp_output_value[0]); + if (last_byte_ndx > 4) + { + tmp_output_value[1] = BKN_DNX_BYTE_SWAP(tmp_output_value[1]); + } + + place = buf_sizes - (start_bit % 8 + nof_bits); + for (field_bit_i = 0; field_bit_i< nof_bits; ++place, ++field_bit_i) + { + uint32_t result; + result = tmp_output_value[place>>5] & BKN_DNX_BIT(place & 0x0000001F); + if (result) + { + bit_indicator = 1; + } else { + bit_indicator = 0; + } + *output_value |= bit_indicator << field_bit_i; + } + return; +} + +static void +bkn_dnx_packet_parse_ftmh(uint8_t hdr_buff[], bkn_dnx_packet_info *packet_info) +{ + uint32_t header_ptr = 0; + uint32_t dsp_ext_exist=0; + uint32_t fld_val; + + header_ptr = packet_info->ntwrk_header_ptr; + + /* Packet-size */ + bkn_dnx_bitstream_get_field( + &hdr_buff[header_ptr], + BKN_DNX_FTMH_PKT_SIZE_MSB, + BKN_DNX_FTMH_PKT_SIZE_NOF_BITS, + &fld_val); + packet_info->ftmh.packet_size = fld_val; + /* Traffic-class */ + bkn_dnx_bitstream_get_field( + &hdr_buff[header_ptr], + BKN_DNX_FTMH_TC_MSB, + BKN_DNX_FTMH_TC_NOF_BITS, + &fld_val); + packet_info->ftmh.prio = fld_val; + /* Source-system-port-aggregate */ + bkn_dnx_bitstream_get_field( + &hdr_buff[header_ptr], + BKN_DNX_FTMH_SRC_SYS_PORT_MSB, + BKN_DNX_FTMH_SRC_SYS_PORT_NOF_BITS, + &fld_val); + packet_info->ftmh.src_sys_port = fld_val; + /* TM-action-type */ + bkn_dnx_bitstream_get_field( + &hdr_buff[header_ptr], + BKN_DNX_FTMH_ACTION_TYPE_MSB, + BKN_DNX_FTMH_ACTION_TYPE_NOF_BITS, + &fld_val); + packet_info->ftmh.action_type = fld_val; + /* PPH-type */ + bkn_dnx_bitstream_get_field( + &hdr_buff[header_ptr], + BKN_DNX_FTMH_PPH_TYPE_MSB, + BKN_DNX_FTMH_PPH_TYPE_NOF_BITS, + &fld_val); + packet_info->ftmh.pph_type = fld_val; + + packet_info->ntwrk_header_ptr += BKN_DNX_FTMH_SIZE_BYTE; + DBG_DUNE(("FTMH(%d) Packet-size %d Action-type %d PPH-type %d Source-system-port 0x%x Traffic-class %d\n", + packet_info->ntwrk_header_ptr, packet_info->ftmh.packet_size, packet_info->ftmh.action_type, + packet_info->ftmh.pph_type, packet_info->ftmh.src_sys_port, packet_info->ftmh.prio)); + + /* LB-Key ext */ + if (ftmh_lb_key_ext) + { + packet_info->ntwrk_header_ptr += BKN_DNX_FTMH_LB_EXT_SIZE_BYTE; + DBG_DUNE(("FTMH(%d) FTMH LB-Key Extension is present\n", packet_info->ntwrk_header_ptr)); + } + /* DSP ext*/ + fld_val = 0; + bkn_dnx_bitstream_get_field( + &hdr_buff[header_ptr], + BKN_DNX_FTMH_EXT_DSP_EXIST_MSB, + BKN_DNX_FTMH_EXT_DSP_EXIST_NOF_BITS, + &dsp_ext_exist); + if (dsp_ext_exist) + { + packet_info->ntwrk_header_ptr += BKN_DNX_FTMH_DEST_EXT_SIZE_BYTE; + DBG_DUNE(("FTMH(%d) DSP Extension is present\n", packet_info->ntwrk_header_ptr)); + } + /* stacking ext */ + if (ftmh_stacking_ext) + { + packet_info->ntwrk_header_ptr += BKN_DNX_FTMH_STACKING_SIZE_BYTE; + DBG_DUNE(("FTMH(%d) FTMH Stacking Extension is present\n", packet_info->ntwrk_header_ptr)); + } + return; +} + +static void +bkn_dnx_packet_parse_internal(uint8_t hdr_buff[], bkn_dnx_packet_info *packet_info) +{ + uint32_t header_ptr = 0; + uint32_t fld_val; + uint32_t eei_extension_present = 0; + uint32_t learn_extension_present = 0; + uint32_t fhei_size = 0; + uint32_t forward_code; + uint8_t is_trapped = 0; + + header_ptr = packet_info->ntwrk_header_ptr; + + bkn_dnx_bitstream_get_field( + &hdr_buff[header_ptr], + BKN_DNX_PPH_EEI_EXTENSION_PRESENT_MSB, + BKN_DNX_PPH_EEI_EXTENSION_PRESENT_NOF_BITS, + &eei_extension_present); + bkn_dnx_bitstream_get_field( + &hdr_buff[header_ptr], + BKN_DNX_PPH_LEARN_EXENSION_PRESENT_MSB, + BKN_DNX_PPH_LEARN_EXENSION_PRESENT_NOF_BITS, + &learn_extension_present); + bkn_dnx_bitstream_get_field( + &hdr_buff[header_ptr], + BKN_DNX_PPH_FHEI_SIZE_MSB, + BKN_DNX_PPH_FHEI_SIZE_NOF_BITS, + &fhei_size); + bkn_dnx_bitstream_get_field( + &hdr_buff[header_ptr], + BKN_DNX_PPH_FORWARD_CODE_MSB, + BKN_DNX_PPH_FORWARD_CODE_NOF_BITS, + &forward_code); + /* 7: CPU-Trap */ + is_trapped = (uint8_t)(forward_code == 7); + + bkn_dnx_bitstream_get_field( + &hdr_buff[header_ptr], + BKN_DNX_PPH_VSI_MSB, + BKN_DNX_PPH_VSI_NOF_BITS, + &fld_val); + packet_info->internal.vsi = fld_val; + + /* size of PPH base is 7 */ + packet_info->ntwrk_header_ptr += BKN_DNX_PPH_SIZE_BYTE; + header_ptr = packet_info->ntwrk_header_ptr; + + DBG_DUNE(("PPH(%d) Forward-Code %d EEI-Extension %d Learn-Extension %d VSI %d FHEI-size %d\n", packet_info->ntwrk_header_ptr, + forward_code, eei_extension_present, learn_extension_present, packet_info->internal.vsi, fhei_size)); + + /* PPH extension */ + if (is_trapped && (fhei_size == 1)) + { + /* CPU trap code qualifier */ + bkn_dnx_bitstream_get_field( + &hdr_buff[header_ptr], + BKN_DNX_PPH_FHEI_TRAP_SNOOP_3B_CPU_TRAP_CODE_QUALIFIER_MSB, + BKN_DNX_PPH_FHEI_TRAP_SNOOP_3B_CPU_TRAP_CODE_QUALIFIER_NOF_BITS, + &fld_val); + packet_info->internal.trap_qualifier = fld_val; + /* CPU trap code */ + bkn_dnx_bitstream_get_field( + &hdr_buff[header_ptr], + BKN_DNX_PPH_FHEI_TRAP_SNOOP_3B_CPU_TRAP_CODE_MSB, + BKN_DNX_PPH_FHEI_TRAP_SNOOP_3B_CPU_TRAP_CODE_NOF_BITS, + &fld_val); + packet_info->internal.trap_id = fld_val; + } + switch(fhei_size) { + case 1: + packet_info->ntwrk_header_ptr += BKN_DNX_PPH_FHEI_3B_SIZE_BYTE; + break; + case 2: + packet_info->ntwrk_header_ptr += BKN_DNX_PPH_FHEI_5B_SIZE_BYTE; + break; + case 3: + packet_info->ntwrk_header_ptr += BKN_DNX_PPH_FHEI_8B_SIZE_BYTE; + break; + default: + break; + } + if (eei_extension_present) { + packet_info->ntwrk_header_ptr += BKN_DNX_PPH_EXPLICIT_EDITING_INFOMATION_EXTENSION_SIZE_BYTE; + } + if (learn_extension_present) { + packet_info->ntwrk_header_ptr += BKN_DNX_PPH_LEARN_EXTENSION_SIZE_BYTE; + } + + DBG_DUNE(("FHEI(%d) trap_qualifier 0x%x trap_id 0x%x\n", packet_info->ntwrk_header_ptr, packet_info->internal.trap_qualifier, packet_info->internal.trap_id)); + return; +} + +static int +bkn_dnx_packet_header_parse(uint8 *buff, uint32_t buff_len, bkn_dnx_packet_info *packet_info) +{ + uint8_t hdr_buff[BKN_DNX_HDR_MAX_SIZE]; + uint32_t hdr_size; + uint8_t has_internal = 0; + + if ((buff == NULL) || (packet_info == NULL)) { + return -1; + } + hdr_size = buff_len < BKN_DNX_HDR_MAX_SIZE ? buff_len: BKN_DNX_HDR_MAX_SIZE; + memcpy(hdr_buff, buff, hdr_size); + + /* FTMH */ + bkn_dnx_packet_parse_ftmh(hdr_buff, packet_info); + if (packet_info->ftmh.packet_size != (buff_len + 2)) { + DBG_DUNE(("FTMH packet size verfication failed, %d-%d\n", packet_info->ftmh.packet_size, buff_len)); + memset(packet_info, 0, sizeof(bkn_dnx_packet_info)); + return -1; + } + switch (packet_info->ftmh.pph_type) { + case 0: + has_internal = 0; + break; + case 1: + has_internal = 1; + break; + case 2: /* PPH OAM-TS only */ + case 3: /* PPH Base + OAM-TS */ + /* OTSH immediately follows the FTMH when present */ + packet_info->ntwrk_header_ptr += 6; + DBG_DUNE(("FTMH + OAM-TS(%d)\n", packet_info->ntwrk_header_ptr)); + has_internal = 1; + break; + default: + break; + } + + if (has_internal) { + bkn_dnx_packet_parse_internal(&hdr_buff[0], packet_info); + } + + /* FIXME: */ + /* ignore packets with a double set of FTMH,internals */ + /* ignore the user header size */ + return 0; +} + +static int +bkn_do_api_rx(bkn_switch_info_t *sinfo, int chan, int budget) +{ + bkn_priv_t *priv; + bkn_dcb_chain_t *dcb_chain; + struct sk_buff *skb; + bkn_filter_t cbf; + bkn_filter_t *filter; + uint32_t *dcb; + uint8_t *pkt; + int ethertype; + int pktlen; + int drop_api; + int idx; + int dcbs_done; + bkn_dnx_packet_info packet_info = {0}; + dcbs_done = 0; + + dcb_chain = sinfo->rx[chan].api_dcb_chain; + if (dcb_chain == NULL) { + /* No active chains */ + return 0; + } + + while (dcb_chain->dcb_cur < dcb_chain->dcb_cnt) { + dcb = &dcb_chain->dcb_mem[dcb_chain->dcb_cur * sinfo->dcb_wsize]; + DBG_VERB(("DCB %2d: 0x%08x\n", + dcb_chain->dcb_cur, dcb[sinfo->dcb_wsize-1])); + if ((dcb[sinfo->dcb_wsize-1] & (1 << 31)) == 0) { + break; + } + if (CDMA_CH(sinfo, XGS_DMA_RX_CHAN + chan)) { + /* Handle for Continuous DMA mode */ + if (dcbs_done >= budget) { + break; + } + if (dcb[1] & (1 << 18)) { + dcb[sinfo->dcb_wsize - 1] |= SOC_DCB_KNET_DONE; + bkn_api_rx_chain_done(sinfo, chan); + dcb_chain = sinfo->rx[chan].api_dcb_chain; + if (dcb_chain == NULL) { + break; + } + continue; + } + } + if ((dcb[1] & (1 << 16)) == 0) { + sinfo->rx[chan].chain_complete = 1; + } + sinfo->rx[chan].pkts++; + pkt = (uint8_t *)kernel_bde->p2l(sinfo->dev_no, dcb[0]); + pktlen = dcb[sinfo->dcb_wsize-1] & SOC_DCB_KNET_COUNT_MASK; + bkn_dump_pkt(pkt, 32, XGS_DMA_RX_CHAN); + + if (device_is_dune(sinfo)) { + uint16_t tpid = 0; + uint16_t vid = 0; + int res = -1; + + memset(&packet_info, 0, sizeof(bkn_dnx_packet_info)); + res = bkn_dnx_packet_header_parse(pkt, (uint32_t)pktlen, &packet_info); + if (res == 0) { + if (packet_info.ftmh.action_type == 0x2) { + bkn_dnx_bitstream_set_field((uint32_t *)dcb, 192, 32, 0x8); + } else if (packet_info.ftmh.action_type == 0x1) { + bkn_dnx_bitstream_set_field((uint32_t *)dcb, 231, 25, 0x20); + } + bkn_dnx_bitstream_set_field((uint32_t *)dcb, 112, 16, packet_info.ftmh.src_sys_port); + bkn_dnx_bitstream_set_field((uint32_t *)dcb, 296, 12, packet_info.internal.vsi); + bkn_dnx_bitstream_set_field((uint32_t *)dcb, 64, 32, (packet_info.internal.trap_id << 16 | packet_info.internal.trap_qualifier)); + pkt += packet_info.ntwrk_header_ptr; + pktlen -= packet_info.ntwrk_header_ptr; + bkn_dump_pkt(pkt, 32, XGS_DMA_RX_CHAN); + /* check if vlan tag exists */ + tpid = (uint16_t)((pkt[12] << 8) | pkt[13]); + vid = (uint16_t)(packet_info.internal.vsi & 0xfff); + if (packet_is_untagged(tpid)) { + if ((pktlen + 4) < rx_buffer_size) { + DBG_DUNE(("add vlan tag (%d) to untagged packets\n", vid)); + for (idx = (pktlen-1); idx >= 12; idx--) { + pkt[idx+4] = pkt[idx]; + } + pkt[12] = 0x81; + pkt[13] = 0x00; + pkt[14] = (vid >> 8); + pkt[15] = (vid & 0xff); + /* reset packet length in DCB */ + pktlen += 4; + dcb[sinfo->dcb_wsize-1] &= ~SOC_DCB_KNET_COUNT_MASK; + dcb[sinfo->dcb_wsize-1] |= ((pktlen + packet_info.ntwrk_header_ptr) & SOC_DCB_KNET_COUNT_MASK); + bkn_dump_pkt(pkt, 32, XGS_DMA_RX_CHAN); + } + } + } + } + filter = bkn_match_rx_pkt(sinfo, dcb, pkt, chan, &cbf); + if ((dcb[sinfo->dcb_wsize-1] & 0x70000) != 0x30000) { + /* Fragment or error */ + if (filter && filter->kf.mask.w[sinfo->dcb_wsize-1] == 0) { + /* Drop unless DCB status is part of filter */ + filter = NULL; + } + } + drop_api = 1; + if (filter) { + DBG_FLTR(("Match filter ID %d\n", filter->kf.id)); + switch (filter->kf.dest_type) { + case KCOM_DEST_T_API: + DBG_FLTR(("Send to Rx API\n")); + sinfo->rx[chan].pkts_f_api++; + drop_api = 0; + break; + case KCOM_DEST_T_NETIF: + priv = bkn_netif_lookup(sinfo, filter->kf.dest_id); + if (priv) { + /* Check that software link is up */ + if (!netif_carrier_ok(priv->dev)) { + sinfo->rx[chan].pkts_d_no_link++; + break; + } + + /* Add 2 bytes for IP header alignment (see below) */ + skb = dev_alloc_skb(pktlen + RCPU_RX_ENCAP_SIZE + 2); + if (skb == NULL) { + sinfo->rx[chan].pkts_d_no_skb++; + break; + } + skb_reserve(skb, RCPU_RX_ENCAP_SIZE); + + DBG_FLTR(("Send to netif %d (%s)\n", + priv->id, priv->dev->name)); + sinfo->rx[chan].pkts_f_netif++; + skb->dev = priv->dev; + skb_reserve(skb, 2); /* 16 byte align the IP fields. */ + + /* Save for RCPU before stripping tag */ + ethertype = (pkt[16] << 8) | pkt[17]; + if ((priv->flags & KCOM_NETIF_F_KEEP_RX_TAG) == 0) { + if (filter->kf.flags & KCOM_FILTER_F_STRIP_TAG) { + /* Strip the VLAN tag */ + uint16_t vlan_proto = (uint16_t)((pkt[12] << 8) | pkt[13]); + if (vlan_proto == 0x8100 || vlan_proto == 0x88a8) { + DBG_FLTR(("Strip VLAN tag\n")); + for (idx = 11; idx >= 0; idx--) { + pkt[idx+4] = pkt[idx]; + } + pktlen -= 4; + pkt += 4; + } + } else { + /* + * Mark packet as VLAN-tagged, otherwise newer + * kernels will strip the tag. + */ + uint16_t tci = (pkt[14] << 8) | pkt[15]; + + if (priv->flags & KCOM_NETIF_F_RCPU_ENCAP) { + bkn_vlan_hwaccel_put_tag(skb, ETH_P_8021Q, tci); + } else { + bkn_vlan_hwaccel_put_tag(skb, + ((skb->data[12] << 8) | skb->data[13]), tci); + } + } + } + + skb_copy_to_linear_data(skb, pkt, pktlen); + if (device_is_dune(sinfo)) { + /* CRC has been stripped */ + skb_put(skb, pktlen); + } else { + skb_put(skb, pktlen - 4); /* Strip CRC */ + } + priv->stats.rx_packets++; + priv->stats.rx_bytes += pktlen; + + /* Optional SKB updates */ + if (knet_rx_cb != NULL) { + skb = knet_rx_cb(skb, sinfo->dev_no, dcb); + if (skb == NULL) { + /* Consumed by call-back */ + sinfo->rx[chan].pkts_d_callback++; + break; + } + } + + if (priv->flags & KCOM_NETIF_F_RCPU_ENCAP) { + bkn_add_rcpu_encap(sinfo, skb, dcb); + } + skb->protocol = eth_type_trans(skb, skb->dev); + if (filter->kf.dest_proto) { + skb->protocol = filter->kf.dest_proto; + } + if (priv->flags & KCOM_NETIF_F_RCPU_ENCAP) { + bkn_eth_type_update(skb, ethertype); + } + DBG_DUNE(("skb protocol 0x%04x\n",skb->protocol)); + + /* Unlock while calling up network stack */ + spin_unlock(&sinfo->lock); + if (use_napi) { + netif_receive_skb(skb); + } else { + netif_rx(skb); + } + spin_lock(&sinfo->lock); + + if (filter->kf.mirror_type == KCOM_DEST_T_API || + dbg_pkt_enable) { + DBG_FLTR(("Mirror to Rx API\n")); + sinfo->rx[chan].pkts_m_api++; + drop_api = 0; + } + } else { + DBG_FLTR(("Unknown netif %d\n", + filter->kf.dest_id)); + sinfo->rx[chan].pkts_d_unkn_netif++; + } + break; + default: + /* Drop packet */ + DBG_FLTR(("Unknown dest type %d\n", + filter->kf.dest_type)); + sinfo->rx[chan].pkts_d_unkn_dest++; + break; + } + } + if (drop_api) { + /* If count is zero, the DCB will just be recycled */ + dcb[sinfo->dcb_wsize-1] &= ~SOC_DCB_KNET_COUNT_MASK; + } + dcb[sinfo->dcb_wsize-1] |= SOC_DCB_KNET_DONE; + dcb_chain->dcb_cur++; + dcbs_done++; + } + + return dcbs_done; +} + +static int +bkn_do_skb_rx(bkn_switch_info_t *sinfo, int chan, int budget) +{ + bkn_priv_t *priv; + bkn_desc_info_t *desc; + struct sk_buff *skb; + bkn_filter_t cbf; + bkn_filter_t *filter; + uint32_t *dcb; + int ethertype; + int dcbs_done; + int pktlen; + bkn_dnx_packet_info packet_info = {0}; + int idx; + + dcbs_done = 0; + + if (!sinfo->rx[chan].running) { + /* Rx not ready */ + return 0; + } + + while (dcbs_done < budget) { + char str[32]; + sprintf(str, "Rx DCB (%d)", sinfo->rx[chan].dirty); + desc = &sinfo->rx[chan].desc[sinfo->rx[chan].dirty]; + dcb = desc->dcb_mem; + bkn_dump_dcb(str, dcb, sinfo->dcb_wsize, XGS_DMA_RX_CHAN); + if ((dcb[sinfo->dcb_wsize-1] & (1 << 31)) == 0) { + break; + } + if (CDMA_CH(sinfo, XGS_DMA_RX_CHAN + chan)) { + /* DMA run to the new halt location */ + bkn_cdma_goto(sinfo, XGS_DMA_RX_CHAN + chan, desc->dcb_dma); + } + if ((dcb[1] & (1 << 16)) == 0) { + sinfo->rx[chan].chain_complete = 1; + /* Request one extra poll to check for chain done interrupt */ + if (sinfo->napi_poll_mode) { + sinfo->napi_poll_again = 1; + } + } + sinfo->rx[chan].pkts++; + pktlen = dcb[sinfo->dcb_wsize-1] & 0xffff; + priv = netdev_priv(sinfo->dev); + skb = desc->skb; + DBG_DCB_RX(("Rx%d SKB DMA done (%d).\n", chan, sinfo->rx[chan].dirty)); + DMA_UNMAP_SINGLE(sinfo->dma_dev, + desc->skb_dma, desc->dma_size, + DMA_FROMDEV); + desc->skb_dma = 0; + bkn_dump_pkt(skb->data, 32, XGS_DMA_RX_CHAN); + if (device_is_dune(sinfo)) { + uint16_t tpid = 0; + uint16_t vid = 0; + uint8_t *pkt = skb->data; + int res = 0; + + memset(&packet_info, 0, sizeof(bkn_dnx_packet_info)); + res = bkn_dnx_packet_header_parse(pkt, (uint32_t)pktlen, &packet_info); + if (res == 0) { + if (packet_info.ftmh.action_type == 0x2) { + bkn_dnx_bitstream_set_field((uint32_t *)dcb, 192, 32, 0x8); + } else if (packet_info.ftmh.action_type == 0x1) { + bkn_dnx_bitstream_set_field((uint32_t *)dcb, 231, 25, 0x20); + } + bkn_dnx_bitstream_set_field((uint32_t *)dcb, 112, 16, packet_info.ftmh.src_sys_port); + bkn_dnx_bitstream_set_field((uint32_t *)dcb, 296, 12, packet_info.internal.vsi); + bkn_dnx_bitstream_set_field((uint32_t *)dcb, 64, 32, (packet_info.internal.trap_id << 16 | packet_info.internal.trap_qualifier)); + pkt = skb->data + packet_info.ntwrk_header_ptr; + /* check if vlan tag exists */ + tpid = (uint16_t)((pkt[12] << 8) | pkt[13]); + vid = (uint16_t)(packet_info.internal.vsi & 0xfff); + if (packet_is_untagged(tpid)) { + if ((pktlen + 4) < rx_buffer_size) { + DBG_DUNE(("add vlan tag to untagged packets\n")); + for (idx = (pktlen-packet_info.ntwrk_header_ptr-1); idx >= 12; idx--) { + pkt[idx+4] = pkt[idx]; + } + pkt[12] = 0x81; + pkt[13] = 0x00; + pkt[14] = (vid >> 8); + pkt[15] = (vid & 0xff); + pktlen += 4; + /* reset packet length in DCB */ + dcb[sinfo->dcb_wsize-1] &= ~SOC_DCB_KNET_COUNT_MASK; + dcb[sinfo->dcb_wsize-1] |= (pktlen & SOC_DCB_KNET_COUNT_MASK); + bkn_dump_pkt(pkt, 32, XGS_DMA_RX_CHAN); + } + } + } + } + if (device_is_dune(sinfo)) { + filter = bkn_match_rx_pkt(sinfo, dcb, (skb->data + packet_info.ntwrk_header_ptr), chan, &cbf); + } else { + filter = bkn_match_rx_pkt(sinfo, dcb, skb->data, chan, &cbf); + } + if ((dcb[sinfo->dcb_wsize-1] & 0x70000) == 0x30000) { + DBG_PKT(("Rx packet (%d bytes).\n", pktlen)); + } else { + /* Fragment or error */ + priv->stats.rx_errors++; + if (filter && filter->kf.mask.w[sinfo->dcb_wsize-1] == 0) { + /* Drop unless DCB status is part of filter */ + filter = NULL; + } + } + if (filter) { + DBG_FLTR(("Match filter ID %d\n", filter->kf.id)); + switch (filter->kf.dest_type) { + case KCOM_DEST_T_API: + DBG_FLTR(("Send to Rx API\n")); + sinfo->rx[chan].pkts_f_api++; + bkn_api_rx_copy_from_skb(sinfo, chan, desc); + break; + case KCOM_DEST_T_NETIF: + priv = bkn_netif_lookup(sinfo, filter->kf.dest_id); + if (priv) { + /* Check that software link is up */ + if (!netif_carrier_ok(priv->dev)) { + sinfo->rx[chan].pkts_d_no_link++; + break; + } + DBG_FLTR(("Send to netif %d (%s)\n", + priv->id, priv->dev->name)); + sinfo->rx[chan].pkts_f_netif++; + + if (device_is_dune(sinfo)) { + if (filter->kf.mirror_type == KCOM_DEST_T_API) { + sinfo->rx[chan].pkts_m_api++; + bkn_api_rx_copy_from_skb(sinfo, chan, desc); + } + /* Strip Dune headers */ + skb->data += packet_info.ntwrk_header_ptr; + pktlen -= packet_info.ntwrk_header_ptr; + bkn_dump_pkt(skb->data, 32, XGS_DMA_RX_CHAN); + /* CRC has been stripped on Dune*/ + skb_put(skb, pktlen); + } else { + skb_put(skb, pktlen - 4); /* Strip CRC */ + } + + /* Save for RCPU before stripping tag */ + ethertype = (skb->data[16] << 8) | skb->data[17]; + + if ((priv->flags & KCOM_NETIF_F_KEEP_RX_TAG) == 0) { + if (filter->kf.flags & KCOM_FILTER_F_STRIP_TAG) { + /* Strip VLAN tag */ + uint16_t vlan_proto = (uint16_t)((skb->data[12] << 8) | skb->data[13]); + if (vlan_proto == 0x8100 || vlan_proto == 0x88a8) { + DBG_FLTR(("Strip VLAN tag\n")); + ((u32*)skb->data)[3] = ((u32*)skb->data)[2]; + ((u32*)skb->data)[2] = ((u32*)skb->data)[1]; + ((u32*)skb->data)[1] = ((u32*)skb->data)[0]; + skb_pull(skb, 4); + pktlen -= 4; + } + } else { + /* + * Mark packet as VLAN-tagged, otherwise newer + * kernels will strip the tag. + */ + uint16_t tci = (skb->data[14] << 8) | skb->data[15]; + if (priv->flags & KCOM_NETIF_F_RCPU_ENCAP) { + bkn_vlan_hwaccel_put_tag(skb, ETH_P_8021Q, tci); + } else { + bkn_vlan_hwaccel_put_tag(skb, + ((skb->data[12] << 8) | skb->data[13]), tci); + } + } + } + priv->stats.rx_packets++; + priv->stats.rx_bytes += pktlen; + skb->dev = priv->dev; + + /* Optional SKB updates */ + if (knet_rx_cb != NULL) { + skb = knet_rx_cb(skb, sinfo->dev_no, dcb); + if (skb == NULL) { + /* Consumed by call-back */ + sinfo->rx[chan].pkts_d_callback++; + priv->stats.rx_dropped++; + desc->skb = NULL; + desc->skb_dma = 0; + break; + } + } + + if (((filter->kf.mirror_type == KCOM_DEST_T_API) && + (!device_is_dune(sinfo))) || dbg_pkt_enable) { + sinfo->rx[chan].pkts_m_api++; + bkn_api_rx_copy_from_skb(sinfo, chan, desc); + } + + if (priv->flags & KCOM_NETIF_F_RCPU_ENCAP) { + bkn_add_rcpu_encap(sinfo, skb, dcb); + } + skb->protocol = eth_type_trans(skb, skb->dev); + if (filter->kf.dest_proto) { + skb->protocol = filter->kf.dest_proto; + } + if (priv->flags & KCOM_NETIF_F_RCPU_ENCAP) { + bkn_eth_type_update(skb, ethertype); + } + DBG_DUNE(("skb protocol 0x%04x\n",skb->protocol)); + if (filter->kf.mirror_type == KCOM_DEST_T_NETIF) { + bkn_priv_t *mpriv; + struct sk_buff *mskb; + mpriv = bkn_netif_lookup(sinfo, filter->kf.mirror_id); + if (mpriv && netif_carrier_ok(mpriv->dev)) { + mskb = skb_clone(skb, GFP_ATOMIC); + if (mskb == NULL) { + sinfo->rx[chan].pkts_d_no_skb++; + } else { + sinfo->rx[chan].pkts_m_netif++; + mpriv->stats.rx_packets++; + mpriv->stats.rx_bytes += pktlen; + skb->dev = mpriv->dev; + if (filter->kf.mirror_proto) { + skb->protocol = filter->kf.mirror_proto; + } + /* Unlock while calling up network stack */ + spin_unlock(&sinfo->lock); + if (use_napi) { + netif_receive_skb(mskb); + } else { + netif_rx(mskb); + } + spin_lock(&sinfo->lock); + } + } + } + + /* Unlock while calling up network stack */ + spin_unlock(&sinfo->lock); + if (use_napi) { + netif_receive_skb(skb); + } else { + netif_rx(skb); + } + spin_lock(&sinfo->lock); + + /* Ensure that we reallocate SKB for this DCB */ + desc->skb = NULL; + desc->skb_dma = 0; + } else { + DBG_FLTR(("Unknown netif %d\n", + filter->kf.dest_id)); + sinfo->rx[chan].pkts_d_unkn_netif++; + } + } + } else { + DBG_PKT(("Rx packet dropped.\n")); + sinfo->rx[chan].pkts_d_no_match++; + priv->stats.rx_dropped++; + } + dcb[sinfo->dcb_wsize-1] = 0; + if (++sinfo->rx[chan].dirty >= MAX_RX_DCBS) { + sinfo->rx[chan].dirty = 0; + } + sinfo->rx[chan].free--; + dcbs_done++; + if (CDMA_CH(sinfo, XGS_DMA_RX_CHAN + chan)) { + /* Right now refill for Continuous DMA mode */ + bkn_rx_refill(sinfo, chan); + if (sinfo->rx[chan].tokens < MAX_RX_DCBS) { + break; + } + } + } + + return dcbs_done; +} + +static int +bkn_do_rx(bkn_switch_info_t *sinfo, int chan, int budget) +{ + if (sinfo->rx[chan].use_rx_skb == 0) { + /* Rx buffers are provided by BCM Rx API */ + return bkn_do_api_rx(sinfo, chan, budget); + } else { + /* Rx buffers are provided by Linux kernel */ + return bkn_do_skb_rx(sinfo, chan, budget); + } +} + +static void +bkn_rx_desc_done(bkn_switch_info_t *sinfo, int chan) +{ + bkn_evt_resource_t *evt; + evt = &_bkn_evt[sinfo->evt_idx]; + DBG_IRQ(("Rx%d desc done\n", chan)); + + if (sinfo->rx[chan].use_rx_skb == 0) { + sinfo->dma_events |= KCOM_DMA_INFO_F_RX_DONE; + evt->evt_wq_put++; + wake_up_interruptible(&evt->evt_wq); + } +} + +static void +bkn_rx_chain_done(bkn_switch_info_t *sinfo, int chan) +{ + DBG_IRQ(("Rx%d chain done\n", chan)); + + if (sinfo->rx[chan].chain_complete == 0) { + /* + * In certain environments the DCB memory is updated after + * the corresponding interrupt has been received. + * The following code will ensure that this situation is + * handled properly. + */ + int maxloop = 0; + while (sinfo->rx[chan].chain_complete == 0) { + sinfo->rx[chan].sync_retry++; + if (maxloop == 0) { + sinfo->rx[chan].sync_err++; + } + if (maxloop > sinfo->rx[chan].sync_maxloop) { + sinfo->rx[chan].sync_maxloop = maxloop; + } + if (bkn_do_rx(sinfo, chan, MAX_RX_DCBS) > 0) { + bkn_rx_desc_done(sinfo, chan); + } + if (++maxloop > rx_sync_retry) { + gprintk("Fatal error: Incomplete chain\n"); + sinfo->rx[chan].chain_complete = 1; + break; + } + } + } + + sinfo->rx[chan].running = 0; + + if (sinfo->rx[chan].use_rx_skb == 0) { + bkn_api_rx_chain_done(sinfo, chan); + } else { + bkn_rx_refill(sinfo, chan); + + if (bkn_rx_restart(sinfo, chan) != 0) { + /* Presumably out of resources */ + sinfo->timer.expires = jiffies + 1; + if (!sinfo->timer_queued) { + sinfo->timer_queued = 1; + add_timer(&sinfo->timer); + } + } + } +} + +static void +bkn_suspend_tx(bkn_switch_info_t *sinfo) +{ + struct list_head *list; + bkn_priv_t *priv = netdev_priv(sinfo->dev); + + /* Stop main device */ + netif_stop_queue(priv->dev); + sinfo->tx.suspends++; + /* Stop associated virtual devices */ + list_for_each(list, &sinfo->ndev_list) { + priv = (bkn_priv_t *)list; + netif_stop_queue(priv->dev); + } +} + +static void +bkn_resume_tx(bkn_switch_info_t *sinfo) +{ + struct list_head *list; + bkn_priv_t *priv = netdev_priv(sinfo->dev); + + /* Check main device */ + if (netif_queue_stopped(priv->dev) && sinfo->tx.free > 1) { + netif_wake_queue(priv->dev); + } + /* Check associated virtual devices */ + list_for_each(list, &sinfo->ndev_list) { + priv = (bkn_priv_t *)list; + if (netif_queue_stopped(priv->dev) && sinfo->tx.free > 1) { + netif_wake_queue(priv->dev); + } + } +} + +static int +bkn_do_tx(bkn_switch_info_t *sinfo) +{ + bkn_desc_info_t *desc; + int dcbs_done = 0; + + if (!CDMA_CH(sinfo, XGS_DMA_TX_CHAN) && sinfo->tx.api_active) { + return dcbs_done; + } + + while (dcbs_done < MAX_TX_DCBS) { + char str[32]; + if (sinfo->tx.free == MAX_TX_DCBS) { + break; + } + sprintf(str, "Tx DCB (%d)", sinfo->tx.dirty); + desc = &sinfo->tx.desc[sinfo->tx.dirty]; + bkn_dump_dcb(str, desc->dcb_mem, sinfo->dcb_wsize, XGS_DMA_TX_CHAN); + if ((desc->dcb_mem[sinfo->dcb_wsize-1] & (1 << 31)) == 0) { + break; + } + if (desc->skb) { + DBG_DCB_TX(("Tx SKB DMA done (%d).\n", sinfo->tx.dirty)); + DMA_UNMAP_SINGLE(sinfo->dma_dev, + desc->skb_dma, desc->dma_size, + DMA_TODEV); + dev_kfree_skb_any(desc->skb); + desc->skb = NULL; + desc->skb_dma = 0; + } + desc->dcb_mem[sinfo->dcb_wsize-1] = 0; + if (++sinfo->tx.dirty >= MAX_TX_DCBS) { + sinfo->tx.dirty = 0; + } + if (++sinfo->tx.free > MAX_TX_DCBS) { + gprintk("Too many free Tx DCBs(%d).\n", sinfo->tx.free); + } + dcbs_done++; + } + + return dcbs_done; +} + +static void +bkn_tx_cdma_chain_switch(bkn_switch_info_t *sinfo) +{ + bkn_dcb_chain_t *dcb_chain = sinfo->tx.api_dcb_chain; + uint32_t *dcb_mem; + dma_addr_t dcb_dma; + int woffset; + + /* Switch between SKB Tx and API Tx for Continuous DMA mode */ + if (!sinfo->tx.api_active) { + /* + * Set the current SKB DCB as reload DCB and the last DCB of + * the pending API chain as the new halt location. + */ + sinfo->tx.api_active = 1; + dcb_mem = sinfo->tx.desc[sinfo->tx.cur].dcb_mem; + memset(dcb_mem, 0, sinfo->dcb_wsize * sizeof(uint32_t)); + dcb_mem[0] = dcb_chain->dcb_dma; + dcb_mem[1] |= (1 << 24) | (1 << 18) | (1 << 16); + if (++sinfo->tx.cur >= MAX_TX_DCBS) { + sinfo->tx.cur = 0; + } + sinfo->tx.free--; + woffset = (dcb_chain->dcb_cnt - 1) * sinfo->dcb_wsize; + dcb_dma = dcb_chain->dcb_dma + woffset * sizeof(uint32_t); + /* DMA run to the new halt location */ + bkn_cdma_goto(sinfo, XGS_DMA_TX_CHAN, dcb_dma); + } else { + /* Only need to set the current SKB DCB as the new halt location */ + sinfo->tx.api_active = 0; + woffset = (dcb_chain->dcb_cnt - 1) * sinfo->dcb_wsize; + dcb_mem = &dcb_chain->dcb_mem[woffset]; + dcb_mem[0] = sinfo->tx.desc[sinfo->tx.dirty].dcb_dma; + dcb_dma = sinfo->tx.desc[sinfo->tx.cur].dcb_dma; + /* DMA run to the new halt location */ + bkn_cdma_goto(sinfo, XGS_DMA_TX_CHAN, dcb_dma); + } +} + +static void +bkn_skb_tx(bkn_switch_info_t *sinfo) +{ + if (sinfo->tx.api_active) { + /* Switch from API Tx to SKB Tx */ + bkn_tx_cdma_chain_switch(sinfo); + } +} + +static void +bkn_api_tx(bkn_switch_info_t *sinfo) +{ + bkn_dcb_chain_t *dcb_chain; + + /* Assume that driver lock is held */ + if (list_empty(&sinfo->tx.api_dcb_list)) { + sinfo->tx.api_active = 0; + } else { + sinfo->tx.pkts++; + dcb_chain = list_entry(sinfo->tx.api_dcb_list.next, + bkn_dcb_chain_t, list); + DBG_DCB_TX(("Start API Tx DMA, first DCB @ 0x%08x (%d DCBs).\n", + (uint32_t)dcb_chain->dcb_dma, dcb_chain->dcb_cnt)); + + if (CDMA_CH(sinfo, XGS_DMA_TX_CHAN)) { + sinfo->tx.api_dcb_chain = dcb_chain; + if (!sinfo->tx.api_active) { + /* Switch from SKB Tx to API Tx */ + bkn_tx_cdma_chain_switch(sinfo); + } + list_del(&dcb_chain->list); + } else { + sinfo->tx.api_active = 1; + dev_dma_chan_clear(sinfo, XGS_DMA_TX_CHAN); + dev_irq_mask_enable(sinfo, XGS_DMA_TX_CHAN, 1); + dev_dma_chan_start(sinfo, XGS_DMA_TX_CHAN, + dcb_chain->dcb_dma); + list_del(&dcb_chain->list); + kfree(dcb_chain); + } + } +} + +static void +bkn_tx_cdma_chain_done(bkn_switch_info_t *sinfo, int done) +{ + int woffset; + int dcbs_done = 0; + bkn_evt_resource_t *evt; + + evt = &_bkn_evt[sinfo->evt_idx]; + if (sinfo->tx.api_active) { + sinfo->dma_events |= KCOM_DMA_INFO_F_TX_DONE; + evt->evt_wq_put++; + wake_up_interruptible(&evt->evt_wq); + /* Drain API Tx chains */ + while (sinfo->tx.api_dcb_chain != sinfo->tx.api_dcb_chain_end) { + woffset = sinfo->tx.api_dcb_chain->dcb_cnt * sinfo->dcb_wsize - 1; + if (!(sinfo->tx.api_dcb_chain->dcb_mem[woffset] & (1 << 31))) { + return; + } + kfree(sinfo->tx.api_dcb_chain); + bkn_api_tx(sinfo); + if ((++dcbs_done + done) >= MAX_TX_DCBS) { + if (sinfo->napi_poll_mode) { + /* Request one extra poll to reschedule Tx */ + sinfo->napi_poll_again = 1; + } else { + /* Request to yield for Continuous DMA mode */ + sinfo->tx_yield = 1; + } + return; + } + } + woffset = (sinfo->tx.api_dcb_chain->dcb_cnt - 1) * sinfo->dcb_wsize - 1; + if (!(sinfo->tx.api_dcb_chain->dcb_mem[woffset] & (1 << 31))) { + return; + } + /* Try and park at SKB Tx if API Tx done */ + bkn_skb_tx(sinfo); + kfree(sinfo->tx.api_dcb_chain); + sinfo->tx.api_dcb_chain = NULL; + sinfo->tx.api_dcb_chain_end = NULL; + if (!sinfo->napi_poll_mode) { + /* Not need to yield for Continuous DMA mode */ + sinfo->tx_yield = 0; + } + } else { + if (sinfo->tx.free == MAX_TX_DCBS) { + /* Try API Tx if SKB Tx done */ + bkn_api_tx(sinfo); + if (sinfo->tx.api_active) { + return; + } + } + } + + /* Resume if netif Tx resources available and API Tx not active */ + bkn_resume_tx(sinfo); +} + +static void +bkn_tx_chain_done(bkn_switch_info_t *sinfo, int done) +{ + bkn_desc_info_t *desc; + int idx, pending; + bkn_evt_resource_t *evt; + + evt = &_bkn_evt[sinfo->evt_idx]; + + DBG_IRQ(("Tx chain done (%d/%d)\n", sinfo->tx.cur, sinfo->tx.dirty)); + + if (CDMA_CH(sinfo, XGS_DMA_TX_CHAN)) { + return bkn_tx_cdma_chain_done(sinfo, done); + } + + dev_irq_mask_disable(sinfo, XGS_DMA_TX_CHAN, 0); + + if (sinfo->tx.api_active) { + sinfo->dma_events |= KCOM_DMA_INFO_F_TX_DONE; + evt->evt_wq_put++; + wake_up_interruptible(&evt->evt_wq); + /* Check if BCM API has more to send */ + bkn_api_tx(sinfo); + if (sinfo->tx.api_active) { + return; + } + } + + if (sinfo->tx.free == MAX_TX_DCBS) { + /* If netif Tx is idle then allow BCM API to send */ + bkn_api_tx(sinfo); + if (sinfo->tx.api_active) { + return; + } + } else { + /* If two or more DCBs are pending, chain them */ + pending = MAX_TX_DCBS - sinfo->tx.free; + idx = sinfo->tx.dirty; + while (--pending && idx < (MAX_TX_DCBS - 1)) { + sinfo->tx.desc[idx++].dcb_mem[1] |= (1 << 16); + DBG_DCB_TX(("Chain Tx DCB %d (%d)\n", idx, pending)); + } + /* Restart DMA from where we stopped */ + desc = &sinfo->tx.desc[sinfo->tx.dirty]; + DBG_DCB_TX(("Restart Tx DMA, DCB @ 0x%08x (%d).\n", + (uint32_t)desc->dcb_dma, sinfo->tx.dirty)); + dev_dma_chan_clear(sinfo, XGS_DMA_TX_CHAN); + dev_irq_mask_enable(sinfo, XGS_DMA_TX_CHAN, 0); + dev_dma_chan_start(sinfo, XGS_DMA_TX_CHAN, desc->dcb_dma); + } + + /* Resume if netif Tx resources available and API Tx not active */ + bkn_resume_tx(sinfo); +} + +static void +bkn_schedule_napi_poll(bkn_switch_info_t *sinfo) +{ + /* Schedule NAPI poll */ + DBG_NAPI(("Schedule NAPI poll on %s.\n", sinfo->dev->name)); + /* Disable interrupts until poll job is complete */ + sinfo->napi_poll_mode = 1; + /* Unlock while calling up network stack */ + spin_unlock(&sinfo->lock); + if (bkn_napi_schedule_prep(sinfo->dev, &sinfo->napi)) { + __bkn_napi_schedule(sinfo->dev, &sinfo->napi); + DBG_NAPI(("Schedule prep OK on %s.\n", sinfo->dev->name)); + } else { + /* Most likely the base device is has not been opened */ + gprintk("Warning: Unable to schedule NAPI - base device not up?\n"); + } + spin_lock(&sinfo->lock); +} + +static void +bkn_napi_poll_complete(bkn_switch_info_t *sinfo) +{ + /* Unlock while calling up network stack */ + spin_unlock(&sinfo->lock); + bkn_napi_complete(sinfo->dev, &sinfo->napi); + spin_lock(&sinfo->lock); + /* Re-enable interrupts */ + sinfo->napi_poll_mode = 0; + dev_irq_mask_set(sinfo, sinfo->irq_mask); +} + +static int +xgs_do_dma(bkn_switch_info_t *sinfo, int budget) +{ + int rx_dcbs_done = 0, tx_dcbs_done = 0; + uint32_t dma_stat; + int chan; + + DEV_READ32(sinfo, CMIC_DMA_STATr, &dma_stat); + + for (chan = 0; chan < NUM_RX_CHAN; chan++) { + if (dma_stat & DS_DESC_DONE_TST(XGS_DMA_RX_CHAN + chan)) { + xgs_dma_desc_clear(sinfo, XGS_DMA_RX_CHAN + chan); + rx_dcbs_done += bkn_do_rx(sinfo, chan, budget - rx_dcbs_done); + bkn_rx_desc_done(sinfo, chan); + } + + if (dma_stat & DS_CHAIN_DONE_TST(XGS_DMA_RX_CHAN + chan)) { + xgs_dma_chain_clear(sinfo, XGS_DMA_RX_CHAN + chan); + bkn_rx_chain_done(sinfo, chan); + } + } + + if (dma_stat & DS_CHAIN_DONE_TST(XGS_DMA_TX_CHAN)) { + xgs_dma_chain_clear(sinfo, XGS_DMA_TX_CHAN); + tx_dcbs_done = bkn_do_tx(sinfo); + bkn_tx_chain_done(sinfo, tx_dcbs_done); + } + + return rx_dcbs_done; +} + +static int +xgsm_do_dma(bkn_switch_info_t *sinfo, int budget) +{ + int rx_dcbs_done = 0, tx_dcbs_done = 0; + uint32_t dma_stat, irq_stat = 0; + int chan; + + /* Get Controlled interrupt states for Continuous DMA mode */ + if (sinfo->cdma_channels) { + DEV_READ32(sinfo, CMICM_IRQ_STATr, &irq_stat); + } + + DEV_READ32(sinfo, CMICM_DMA_STATr, &dma_stat); + + for (chan = 0; chan < NUM_RX_CHAN; chan++) { + if (dma_stat & (0x10 << (XGS_DMA_RX_CHAN + chan)) || + irq_stat & (0x08000000 << (XGS_DMA_RX_CHAN + chan))) { + xgsm_dma_desc_clear(sinfo, XGS_DMA_RX_CHAN + chan); + rx_dcbs_done += bkn_do_rx(sinfo, chan, budget - rx_dcbs_done); + bkn_rx_desc_done(sinfo, chan); + if (CDMA_CH(sinfo, XGS_DMA_RX_CHAN + chan)) { + continue; + } + } + + if (dma_stat & (0x1 << (XGS_DMA_RX_CHAN + chan))) { + xgsm_dma_chain_clear(sinfo, XGS_DMA_RX_CHAN + chan); + bkn_rx_chain_done(sinfo, chan); + } + } + + if (dma_stat & (0x1 << XGS_DMA_TX_CHAN) || + irq_stat & (0x08000000 << XGS_DMA_TX_CHAN)) { + if (CDMA_CH(sinfo, XGS_DMA_TX_CHAN)) { + xgsm_dma_desc_clear(sinfo, XGS_DMA_TX_CHAN); + } else { + xgsm_dma_chain_clear(sinfo, XGS_DMA_TX_CHAN); + } + tx_dcbs_done = bkn_do_tx(sinfo); + bkn_tx_chain_done(sinfo, tx_dcbs_done); + } + + return rx_dcbs_done; +} + +static int +dev_do_dma(bkn_switch_info_t *sinfo, int budget) +{ + if (DEV_HAS_CMICM(sinfo)) { + return xgsm_do_dma(sinfo, budget); + } else { + return xgs_do_dma(sinfo, budget); + } +} + +static void +xgs_isr(bkn_switch_info_t *sinfo) +{ + uint32_t irq_stat; + int rx_dcbs_done; + + DEV_READ32(sinfo, CMIC_IRQ_STATr, &irq_stat); + if ((irq_stat & sinfo->irq_mask) == 0) { + /* Not ours */ + return; + } + sinfo->interrupts++; + + DBG_IRQ(("Got interrupt on device %d (0x%08x)\n", + sinfo->dev_no, irq_stat)); + + if (use_napi) { + bkn_schedule_napi_poll(sinfo); + } else { + xgs_irq_mask_set(sinfo, 0); + do { + rx_dcbs_done = xgs_do_dma(sinfo, MAX_RX_DCBS); + } while (rx_dcbs_done); + } + + xgs_irq_mask_set(sinfo, sinfo->irq_mask); +} + +static void +xgsm_isr(bkn_switch_info_t *sinfo) +{ + uint32_t irq_stat; + int rx_dcbs_done; + + DEV_READ32(sinfo, CMICM_IRQ_STATr, &irq_stat); + if ((irq_stat & sinfo->irq_mask) == 0) { + /* Not ours */ + return; + } + sinfo->interrupts++; + + DBG_IRQ(("Got interrupt on device %d (0x%08x)\n", + sinfo->dev_no, irq_stat)); + + if (use_napi) { + bkn_schedule_napi_poll(sinfo); + } else { + xgsm_irq_mask_set(sinfo, 0); + do { + rx_dcbs_done = xgsm_do_dma(sinfo, MAX_RX_DCBS); + if (sinfo->cdma_channels) { + if (rx_dcbs_done >= MAX_RX_DCBS || sinfo->tx_yield) { + /* Continuous DMA mode requires to yield timely */ + break; + } + } + } while (rx_dcbs_done); + } + + xgsm_irq_mask_set(sinfo, sinfo->irq_mask); +} + +static void +bkn_isr(void *isr_data) +{ + bkn_switch_info_t *sinfo = isr_data; + + /* Safe exit on SMP systems */ + if (!module_initialized) { + return; + } + + /* Ensure that we do not touch registers during device reset */ + if (sinfo->irq_mask == 0) { + /* Not ours */ + return; + } + + spin_lock(&sinfo->lock); + + if (sinfo->napi_poll_mode) { + /* Not ours */ + spin_unlock(&sinfo->lock); + return; + } + + if (DEV_HAS_CMICM(sinfo)) { + xgsm_isr(sinfo); + } else { + xgs_isr(sinfo); + } + + spin_unlock(&sinfo->lock); +} + +#ifdef CONFIG_NET_POLL_CONTROLLER +static void +bkn_poll_controller(struct net_device *dev) +{ + bkn_priv_t *priv = netdev_priv(dev); + + disable_irq(dev->irq); + bkn_isr(priv->sinfo); + enable_irq(dev->irq); +} +#endif + +static void +bkn_resume_rx(bkn_switch_info_t *sinfo) +{ + bkn_desc_info_t *desc; + bkn_dcb_chain_t *dcb_chain; + dma_addr_t cur_halt, last_dcb, dcb_dma; + int woffset, chan, cdma_running; + + /* Resume Rx DMA on all channels */ + for (chan = 0; chan < NUM_RX_CHAN; chan++) { + if (sinfo->rx[chan].use_rx_skb) { + cdma_running = 0; + bkn_api_rx_restart(sinfo); + if (CDMA_CH(sinfo, XGS_DMA_RX_CHAN + chan)) { + cur_halt = sinfo->halt_addr[XGS_DMA_RX_CHAN + chan]; + last_dcb = sinfo->rx[chan].desc[MAX_RX_DCBS].dcb_dma; + if (cur_halt != last_dcb) { + desc = &sinfo->rx[chan].desc[sinfo->rx[chan].dirty + 1]; + bkn_cdma_goto(sinfo, XGS_DMA_RX_CHAN + chan, + desc->dcb_dma); + cdma_running = 1; + } + } + if (!cdma_running) { + bkn_rx_restart(sinfo, chan); + } + } else { + cdma_running = 0; + if (CDMA_CH(sinfo, XGS_DMA_RX_CHAN + chan)) { + if (sinfo->rx[chan].api_active) { + dcb_chain = sinfo->rx[chan].api_dcb_chain_end; + woffset = (dcb_chain->dcb_cnt - 1) * sinfo->dcb_wsize; + dcb_dma = dcb_chain->dcb_dma + woffset * sizeof(uint32_t); + bkn_cdma_goto(sinfo, XGS_DMA_RX_CHAN + chan, dcb_dma); + cdma_running = 1; + } + } + if (!cdma_running) { + bkn_api_rx_restart(sinfo); + } + } + } +} + +static int +bkn_open(struct net_device *dev) +{ + bkn_priv_t *priv = netdev_priv(dev); + bkn_switch_info_t *sinfo = priv->sinfo; + unsigned long flags; + + /* Check if base device */ + if (priv->id <= 0) { + /* NAPI used only on base device */ + if (use_napi) { + bkn_napi_enable(dev, &sinfo->napi); + } + + /* Start DMA when base device is started */ + if (sinfo->basedev_suspended) { + spin_lock_irqsave(&sinfo->lock, flags); + dev_do_dma(sinfo, MAX_RX_DCBS); + sinfo->basedev_suspended = 0; + bkn_api_tx(sinfo); + if (!sinfo->tx.api_active) { + bkn_resume_tx(sinfo); + } + bkn_resume_rx(sinfo); + spin_unlock_irqrestore(&sinfo->lock, flags); + } + } + + if (!sinfo->basedev_suspended) { + netif_start_queue(dev); + } + + return 0; +} + +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,29)) +static int +bkn_set_mac_address(struct net_device *dev, void *addr) +{ + if (!is_valid_ether_addr(((struct sockaddr *)addr)->sa_data)) { + return -EINVAL; + } + memcpy(dev->dev_addr, ((struct sockaddr *)addr)->sa_data, dev->addr_len); + return 0; +} +#endif + +static int +bkn_change_mtu(struct net_device *dev, int new_mtu) +{ + if (new_mtu < 68 || new_mtu > rx_buffer_size) { + return -EINVAL; + } + dev->mtu = new_mtu; + return 0; +} + +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,24) +static int +bkn_poll(struct net_device *dev, int *budget) +{ + bkn_priv_t *priv = netdev_priv(dev); + bkn_switch_info_t *sinfo = priv->sinfo; + int cur_budget = *budget; + int poll_again = 0; + int rx_dcbs_done; + unsigned long flags; + + spin_lock_irqsave(&sinfo->lock, flags); + + DBG_NAPI(("NAPI poll on %s.\n", dev->name)); + + sinfo->napi_poll_again = 0; + + if (cur_budget > dev->quota) { + cur_budget = dev->quota; + } + + rx_dcbs_done = dev_do_dma(sinfo, cur_budget); + + *budget -= rx_dcbs_done; + cur_budget -= rx_dcbs_done; + dev->quota -= rx_dcbs_done; + + if (sinfo->napi_poll_again || cur_budget <= 0) { + poll_again = 1; + sinfo->napi_not_done++; + } else { + bkn_napi_poll_complete(sinfo); + } + + spin_unlock_irqrestore(&sinfo->lock, flags); + + return poll_again; +} +#else +static int +bkn_poll(struct napi_struct *napi, int budget) +{ + bkn_switch_info_t *sinfo = container_of(napi, bkn_switch_info_t, napi); + int rx_dcbs_done; + unsigned long flags; + + spin_lock_irqsave(&sinfo->lock, flags); + + DBG_NAPI(("NAPI poll on %s.\n", sinfo->dev->name)); + + sinfo->napi_poll_again = 0; + + rx_dcbs_done = dev_do_dma(sinfo, budget); + + if (sinfo->napi_poll_again || rx_dcbs_done >= budget) { + /* Force poll again */ + rx_dcbs_done = budget; + sinfo->napi_not_done++; + } else { + bkn_napi_poll_complete(sinfo); + } + + spin_unlock_irqrestore(&sinfo->lock, flags); + + return rx_dcbs_done; +} +#endif + +static int +bkn_stop(struct net_device *dev) +{ + bkn_priv_t *priv = netdev_priv(dev); + bkn_switch_info_t *sinfo = priv->sinfo; + unsigned long flags; + + netif_stop_queue(dev); + + /* Check if base device */ + if (priv->id <= 0) { + /* NAPI used only on base device */ + if (use_napi) { + bkn_napi_disable(dev, &sinfo->napi); + } + /* Suspend all devices if base device is stopped */ + if (basedev_suspend) { + spin_lock_irqsave(&sinfo->lock, flags); + bkn_suspend_tx(sinfo); + sinfo->basedev_suspended = 1; + spin_unlock_irqrestore(&sinfo->lock, flags); + } + } + + return 0; +} + +/* + * Network Device Statistics. + * Cleared at init time. + */ +static struct net_device_stats * +bkn_get_stats(struct net_device *dev) +{ + bkn_priv_t *priv = netdev_priv(dev); + + return &priv->stats; +} + +/* Fake multicast ability */ +static void +bkn_set_multicast_list(struct net_device *dev) +{ +} + +static int +bkn_tx(struct sk_buff *skb, struct net_device *dev) +{ + bkn_priv_t *priv = netdev_priv(dev); + bkn_switch_info_t *sinfo = priv->sinfo; + struct sk_buff *new_skb; + unsigned char *pktdata; + int pktlen; + int taglen; + int rcpulen; + int metalen; + int sop; + int idx; + uint16_t tpid; + uint32_t *metadata; + unsigned long flags; + + DBG_VERB(("Netif Tx\n")); + + if (priv->id <= 0) { + /* Do not transmit on base device */ + priv->stats.tx_dropped++; + dev_kfree_skb_any(skb); + return 0; + } + + if (!netif_carrier_ok(dev)) { + DBG_WARN(("Tx drop: Invalid RCPU encapsulation\n")); + priv->stats.tx_dropped++; + sinfo->tx.pkts_d_no_link++; + dev_kfree_skb_any(skb); + return 0; + } + + spin_lock_irqsave(&sinfo->lock, flags); + + if (sinfo->tx.free > 1) { + bkn_desc_info_t *desc = &sinfo->tx.desc[sinfo->tx.cur]; + uint32_t *dcb; + + pktdata = skb->data; + pktlen = skb->len + 4; + rcpulen = 0; + sop = 0; + + if (priv->flags & KCOM_NETIF_F_RCPU_ENCAP) { + rcpulen = RCPU_HDR_SIZE; + if (skb->len < (rcpulen + 14)) { + DBG_WARN(("Tx drop: Invalid RCPU encapsulation\n")); + priv->stats.tx_dropped++; + sinfo->tx.pkts_d_rcpu_encap++; + dev_kfree_skb_any(skb); + spin_unlock_irqrestore(&sinfo->lock, flags); + return 0; + } + if (check_rcpu_signature && + ((skb->data[18] << 8) | skb->data[19]) != sinfo->rcpu_sig) { + DBG_WARN(("Tx drop: Invalid RCPU signature\n")); + priv->stats.tx_dropped++; + sinfo->tx.pkts_d_rcpu_sig++; + dev_kfree_skb_any(skb); + spin_unlock_irqrestore(&sinfo->lock, flags); + return 0; + } + if (skb->data[21] & RCPU_F_MODHDR) { + rcpulen += RCPU_TX_META_SIZE; + sop = skb->data[RCPU_HDR_SIZE]; + switch (sop) { + case 0xff: + case 0x81: + case 0xfb: + case 0xfc: + break; + default: + DBG_WARN(("Tx drop: Invalid RCPU meta data\n")); + priv->stats.tx_dropped++; + sinfo->tx.pkts_d_rcpu_meta++; + dev_kfree_skb_any(skb); + spin_unlock_irqrestore(&sinfo->lock, flags); + return 0; + } + } + /* Skip over RCPU encapsulation */ + pktdata = &skb->data[rcpulen]; + pktlen -= rcpulen; + + /* CPU packets require tag */ + if (sop == 0) { + tpid = (pktdata[12] << 8) | pktdata[13]; + if (tpid != 0x8100) { + if (skb_header_cloned(skb)) { + /* Current SKB cannot be modified */ + DBG_SKB(("Realloc Tx SKB\n")); + new_skb = dev_alloc_skb(pktlen + 4); + if (new_skb == NULL) { + DBG_WARN(("Tx drop: No SKB memory\n")); + priv->stats.tx_dropped++; + sinfo->tx.pkts_d_no_skb++; + dev_kfree_skb_any(skb); + spin_unlock_irqrestore(&sinfo->lock, flags); + return 0; + } + memcpy(new_skb->data, pktdata, 12); + memcpy(&new_skb->data[16], &pktdata[12], pktlen - 12); + skb_put(new_skb, pktlen + 4); + dev_kfree_skb_any(skb); + skb = new_skb; + pktdata = skb->data; + } else { + /* Add tag to existing buffer */ + DBG_SKB(("Expand into unused RCPU header\n")); + pktdata = &skb->data[rcpulen-4]; + for (idx = 0; idx < 12; idx++) { + pktdata[idx] = pktdata[idx+4]; + } + } + pktdata[12] = 0x81; + pktdata[13] = 0x00; + pktdata[14] = (priv->vlan >> 8) & 0xf; + pktdata[15] = priv->vlan & 0xff; + pktlen += 4; + } + } + } else if (priv->port < 0 || (priv->flags & KCOM_NETIF_F_ADD_TAG)) { + /* Need to add VLAN tag if packet is untagged */ + tpid = (skb->data[12] << 8) | skb->data[13]; + if (tpid != 0x8100) { + if (skb_header_cloned(skb) || skb_headroom(skb) < 4) { + /* Current SKB cannot be modified */ + DBG_SKB(("Realloc Tx SKB\n")); + new_skb = dev_alloc_skb(pktlen + 4); + if (new_skb == NULL) { + DBG_WARN(("Tx drop: No SKB memory\n")); + priv->stats.tx_dropped++; + sinfo->tx.pkts_d_no_skb++; + dev_kfree_skb_any(skb); + spin_unlock_irqrestore(&sinfo->lock, flags); + return 0; + } + memcpy(new_skb->data, skb->data, 12); + memcpy(&new_skb->data[16], &skb->data[12], pktlen - 12); + skb_put(new_skb, pktlen + 4); + dev_kfree_skb_any(skb); + skb = new_skb; + } else { + /* Add tag to existing buffer */ + DBG_SKB(("Expand Tx SKB\n")); + skb_push(skb, 4); + for (idx = 0; idx < 12; idx++) { + skb->data[idx] = skb->data[idx+4]; + } + } + pktdata = skb->data; + pktdata[12] = 0x81; + pktdata[13] = 0x00; + pktdata[14] = (priv->vlan >> 8) & 0xf; + pktdata[15] = priv->vlan & 0xff; + pktlen += 4; + } + } + + /* Pad packet if needed */ + taglen = 0; + tpid = (pktdata[12] << 8) | pktdata[13]; + if (tpid == 0x8100) { + taglen = 4; + } + if (pktlen < (64 + taglen)) { + pktlen = (64 + taglen); + /* Pad runt packets accounting for skipped RCPU header if needed */ + if (SKB_PADTO(skb, pktlen + rcpulen) != 0) { + DBG_WARN(("Tx drop: skb_padto failed\n")); + priv->stats.tx_dropped++; + sinfo->tx.pkts_d_pad_fail++; + dev_kfree_skb_any(skb); + spin_unlock_irqrestore(&sinfo->lock, flags); + return 0; + } + /* skb_padto may update the skb->data pointer */ + pktdata = &skb->data[rcpulen]; + DBG_SKB(("Packet padded to %d bytes\n", pktlen)); + } + + if (pktlen > SOC_DCB_KNET_COUNT_MASK) { + DBG_WARN(("Tx drop: size of pkt (%d) is out of range(%d)\n", + pktlen, SOC_DCB_KNET_COUNT_MASK)); + sinfo->tx.pkts_d_over_limit++; + priv->stats.tx_dropped++; + dev_kfree_skb_any(skb); + spin_unlock_irqrestore(&sinfo->lock, flags); + return 0; + } + + dcb = desc->dcb_mem; + memset(dcb, 0, sizeof(uint32_t) * sinfo->dcb_wsize); + dcb[1] = pktlen; + if (priv->flags & KCOM_NETIF_F_RCPU_ENCAP) { + /* If module header SOP is non-zero, use RCPU meta data */ + if (sop != 0) { + metalen = (sinfo->dcb_wsize - 3) * sizeof(uint32_t); + if (metalen > RCPU_TX_META_SIZE) { + metalen = RCPU_TX_META_SIZE; + } + metadata = (uint32_t *)&skb->data[RCPU_HDR_SIZE]; + for (idx = 0; idx < BYTES2WORDS(metalen); idx++) { + dcb[idx+2] = ntohl(metadata[idx]); + } + dcb[1] |= (1 << 19); + } + bkn_dump_dcb("Tx RCPU", dcb, sinfo->dcb_wsize, XGS_DMA_TX_CHAN); + } else if (priv->port >= 0) { + /* Send to physical port */ + dcb[1] |= (1 << 19); + switch (sinfo->dcb_type) { + case 23: + case 26: + case 30: + case 31: + case 34: + case 37: + dcb[2] = 0x81000000; + dcb[3] = priv->port; + dcb[3] |= (priv->qnum & 0xc00) << 20; + dcb[4] = 0x00040000; + dcb[4] |= (priv->qnum & 0x3ff) << 8; + break; + case 32: + dcb[2] = 0x81000000; + dcb[3] = priv->port; + dcb[4] = 0x4000; + /* according to format of register SOBMH in bcm56960_a0 */ + dcb[4] |= (priv->qnum & 0x3f) << 8; + break; + case 33: + dcb[2] = 0x81000000; + dcb[3] = (priv->port) << 2; + dcb[4] = 0x00100000; + dcb[4] |= (priv->qnum & 0xfff) << 8; + break; + case 35: + dcb[2] = 0x81000000; + dcb[3] = (priv->port) << 4; + dcb[4] = 0x00400000; + dcb[4] |= (priv->qnum & 0x3fff) << 8; + break; + case 24: + dcb[2] = 0xff000000; + dcb[3] = 0x00000100; + dcb[4] = priv->port; + dcb[4] |= (priv->qnum & 0xfff) << 14; + break; + case 28: + { + if (priv->type == KCOM_NETIF_T_PORT) { + /* add PTCH ITMH header */ + if (skb_header_cloned(skb) || skb_headroom(skb) < 4) { + /* Current SKB cannot be modified */ + DBG_SKB(("Realloc Tx SKB for DNX ITMH header\n")); + new_skb = dev_alloc_skb(pktlen + 4 + 2); + if (new_skb == NULL) { + DBG_WARN(("Tx drop: No SKB memory for DNX ITMH header\n")); + priv->stats.tx_dropped++; + sinfo->tx.pkts_d_no_skb++; + dev_kfree_skb_any(skb); + spin_unlock_irqrestore(&sinfo->lock, flags); + return 0; + } + memcpy(&new_skb->data[6], skb->data, pktlen); + skb_put(new_skb, pktlen + 6); + dev_kfree_skb_any(skb); + skb = new_skb; + } else { + /* Add tag to existing buffer */ + DBG_SKB(("Expand Tx SKB for DNX ITMH header\n")); + skb_push(skb, 6); + } + pktdata = skb->data; + pktdata[0] = 0x50; + pktdata[1] = 0x00; + memcpy(&pktdata[2], priv->itmh, 4); + pktlen += 6; + } + else if (priv->type == KCOM_NETIF_T_VLAN) { + /* add PTCH header */ + if (skb_header_cloned(skb) || skb_headroom(skb) < 4) { + /* Current SKB cannot be modified */ + DBG_SKB(("Realloc Tx SKB for DNX header\n")); + new_skb = dev_alloc_skb(pktlen + 2); + if (new_skb == NULL) { + DBG_WARN(("Tx drop: No SKB memory for DNX header\n")); + priv->stats.tx_dropped++; + sinfo->tx.pkts_d_no_skb++; + dev_kfree_skb_any(skb); + spin_unlock_irqrestore(&sinfo->lock, flags); + return 0; + } + memcpy(&new_skb->data[2], skb->data, pktlen); + skb_put(new_skb, pktlen + 2); + dev_kfree_skb_any(skb); + skb = new_skb; + } else { + /* Add tag to existing buffer */ + DBG_SKB(("Expand Tx SKB for DNX header\n")); + skb_push(skb, 2); + } + pktdata = skb->data; + pktdata[0] = 0xd0; + pktdata[1] = priv->port; + pktlen += 2; + } + dcb[1] = pktlen; + break; + } + case 29: + dcb[2] = 0x81000000; + dcb[3] = priv->port; + dcb[4] = 0x00100000; + dcb[4] |= (priv->qnum & 0xfff) << 8; + break; + default: + dcb[2] = 0xff000000; + dcb[3] = 0x00000100; + dcb[4] = priv->port; + break; + } + } + + /* Optional SKB updates */ + if (knet_tx_cb != NULL) { + skb = knet_tx_cb(skb, sinfo->dev_no, dcb); + if (skb == NULL) { + /* Consumed by call-back */ + DBG_WARN(("Tx drop: Consumed by call-back\n")); + priv->stats.tx_dropped++; + sinfo->tx.pkts_d_callback++; + spin_unlock_irqrestore(&sinfo->lock, flags); + return 0; + } + /* Restore (possibly) altered packet variables + * bit0 -bit15 of dcb[1] is used to save requested byte count + */ + if ((skb->len + 4) <= SOC_DCB_KNET_COUNT_MASK) { + pktdata = skb->data; + pktlen = skb->len + 4; + } else { + DBG_WARN(("Tx drop: size of pkt (%d) is out of range(%d)\n", + pktlen, SOC_DCB_KNET_COUNT_MASK)); + sinfo->tx.pkts_d_over_limit++; + priv->stats.tx_dropped++; + sinfo->tx.pkts_d_callback++; + dev_kfree_skb_any(skb); + spin_unlock_irqrestore(&sinfo->lock, flags); + return 0; + } + } + /* Prepare for DMA */ + desc->skb = skb; + desc->dma_size = pktlen; + desc->skb_dma = DMA_MAP_SINGLE(sinfo->dma_dev, + pktdata, desc->dma_size, + DMA_TODEV); + dcb[0] = desc->skb_dma; + dcb[1] &= ~SOC_DCB_KNET_COUNT_MASK; + dcb[1] |= pktlen; + + DBG_DCB_TX(("Add Tx DCB @ 0x%08x (%d) [%d free] (%d bytes).\n", + (uint32_t)desc->dcb_dma, sinfo->tx.cur, + sinfo->tx.free, pktlen)); + bkn_dump_pkt(pktdata, skb->len - rcpulen, XGS_DMA_TX_CHAN); + + if (CDMA_CH(sinfo, XGS_DMA_TX_CHAN)) { + dcb[1] |= (1 << 24) | (1 << 16); + } else { + bkn_tx_dma_start(sinfo); + } + if (++sinfo->tx.cur >= MAX_TX_DCBS) { + sinfo->tx.cur = 0; + } + sinfo->tx.free--; + + if (CDMA_CH(sinfo, XGS_DMA_TX_CHAN) && !sinfo->tx.api_active) { + /* DMA run to the new halt location */ + bkn_cdma_goto(sinfo, XGS_DMA_TX_CHAN, + sinfo->tx.desc[sinfo->tx.cur].dcb_dma); + } + + priv->stats.tx_packets++; + priv->stats.tx_bytes += pktlen; + sinfo->tx.pkts++; + } + else { + DBG_WARN(("Tx drop: No DMA resources\n")); + priv->stats.tx_dropped++; + sinfo->tx.pkts_d_dma_resrc++; + dev_kfree_skb_any(skb); + } + + /* Check our Tx resources */ + if (sinfo->tx.free <= 1) { + bkn_suspend_tx(sinfo); + } + + dev->trans_start = jiffies; + + spin_unlock_irqrestore(&sinfo->lock, flags); + + return 0; +} + +static void +bkn_timer(unsigned long context) +{ + bkn_switch_info_t *sinfo = (bkn_switch_info_t *)context; + unsigned long flags; + int chan; + int restart_timer; + + spin_lock_irqsave(&sinfo->lock, flags); + + sinfo->timer_runs++; + + restart_timer = 0; + for (chan = 0; chan < NUM_RX_CHAN; chan++) { + /* Restart channel if not running */ + if (sinfo->rx[chan].running == 0) { + bkn_rx_refill(sinfo, chan); + if (bkn_rx_restart(sinfo, chan) != 0) { + restart_timer = 1; + } + } + } + + if (restart_timer) { + /* Presumably still out of memory */ + sinfo->timer.expires = jiffies + 1; + add_timer(&sinfo->timer); + } else { + sinfo->timer_queued = 0; + } + + spin_unlock_irqrestore(&sinfo->lock, flags); +} + +static void +bkn_rx_add_tokens(bkn_switch_info_t *sinfo, int chan) +{ + unsigned long cur_jif, ticks; + uint32_t tokens_per_tick; + + tokens_per_tick = sinfo->rx[chan].rate_max / HZ; + cur_jif = jiffies; + ticks = cur_jif - sinfo->rx[chan].tok_jif; + sinfo->rx[chan].tokens += ticks * tokens_per_tick; + sinfo->rx[chan].tok_jif = cur_jif; + if (sinfo->rx[chan].tokens > sinfo->rx[chan].burst_max) { + sinfo->rx[chan].tokens = sinfo->rx[chan].burst_max; + } + + /* Restart channel if not running */ + if (sinfo->rx[chan].running == 0) { + bkn_rx_refill(sinfo, chan); + bkn_rx_restart(sinfo, chan); + } +} + +static void +bkn_rxtick(unsigned long context) +{ + bkn_switch_info_t *sinfo = (bkn_switch_info_t *)context; + unsigned long flags; + unsigned long cur_jif, ticks; + uint32_t pkt_diff; + int chan; + + spin_lock_irqsave(&sinfo->lock, flags); + + sinfo->rxtick.expires = jiffies + sinfo->rxtick_jiffies; + + /* For debug purposes we maintain a rough actual packet rate */ + if (++sinfo->rxticks >= sinfo->rxticks_per_sec) { + for (chan = 0; chan < NUM_RX_CHAN; chan++) { + pkt_diff = sinfo->rx[chan].pkts - sinfo->rx[chan].pkts_ref; + cur_jif = jiffies; + ticks = cur_jif - sinfo->rx[chan].rate_jif; + sinfo->rx[chan].rate = (pkt_diff * HZ) / ticks; + sinfo->rx[chan].rate_jif = cur_jif; + sinfo->rx[chan].pkts_ref = sinfo->rx[chan].pkts; + } + sinfo->rxticks = 0; + } + + /* Update tokens for Rx rate control */ + for (chan = 0; chan < NUM_RX_CHAN; chan++) { + if (sinfo->rx[chan].tokens < sinfo->rx[chan].burst_max) { + bkn_rx_add_tokens(sinfo, chan); + } + } + + spin_unlock_irqrestore(&sinfo->lock, flags); + + add_timer(&sinfo->rxtick); +} + +static void +bkn_rx_rate_config(bkn_switch_info_t *sinfo) +{ + unsigned long flags; + int chan; + uint32_t rxticks_per_sec, rps; + uint32_t jiffies_per_rxtick; + uint32_t tokens_per_rxtick; + + spin_lock_irqsave(&sinfo->lock, flags); + + /* Calculate the minimum update frequency across all channels */ + rxticks_per_sec = 1; + for (chan = 0; chan < NUM_RX_CHAN; chan++) { + if (sinfo->rx[chan].burst_max == 0) { + sinfo->rx[chan].burst_max = sinfo->rx[chan].rate_max / 10; + } + rps = sinfo->rx[chan].rate_max / sinfo->rx[chan].burst_max; + if (rxticks_per_sec < rps) { + rxticks_per_sec = rps; + } + } + + /* Convert update frequency to system ticks */ + jiffies_per_rxtick = HZ / rxticks_per_sec; + if (jiffies_per_rxtick == 0) { + jiffies_per_rxtick = 1; + } + rxticks_per_sec = HZ / jiffies_per_rxtick; + + for (chan = 0; chan < NUM_RX_CHAN; chan++) { + /* Ensure that burst size satifies overall rate */ + tokens_per_rxtick = sinfo->rx[chan].rate_max / rxticks_per_sec; + if (sinfo->rx[chan].burst_max < tokens_per_rxtick) { + sinfo->rx[chan].burst_max = tokens_per_rxtick; + } + /* Ensure that rate has a sane value */ + if (sinfo->rx[chan].rate_max != 0) { + if (sinfo->rx[chan].rate_max < rxticks_per_sec) { + sinfo->rx[chan].rate_max = rxticks_per_sec; + } + } + sinfo->rx[chan].tokens = sinfo->rx[chan].burst_max; + } + + /* Update timer controls */ + sinfo->rxticks_per_sec = rxticks_per_sec; + sinfo->rxtick_jiffies = jiffies_per_rxtick; + + spin_unlock_irqrestore(&sinfo->lock, flags); +} + +static void +bkn_destroy_sinfo(bkn_switch_info_t *sinfo) +{ + list_del(&sinfo->list); + bkn_free_dcbs(sinfo); + kfree(sinfo); +} + +static bkn_switch_info_t * +bkn_create_sinfo(int dev_no) +{ + bkn_switch_info_t *sinfo; + uint32_t val; + int chan; + + if ((sinfo = kmalloc(sizeof(*sinfo), GFP_KERNEL)) == NULL) { + return NULL; + } + memset(sinfo, 0, sizeof(*sinfo)); + INIT_LIST_HEAD(&sinfo->ndev_list); + INIT_LIST_HEAD(&sinfo->rxpf_list); + sinfo->base_addr = lkbde_get_dev_virt(dev_no); + sinfo->dma_dev = lkbde_get_dma_dev(dev_no); + sinfo->pdev = lkbde_get_hw_dev(dev_no); + sinfo->dev_no = dev_no; + sinfo->evt_idx = -1; + + spin_lock_init(&sinfo->lock); + + init_timer(&sinfo->timer); + sinfo->timer.expires = jiffies + 1; + sinfo->timer.data = (unsigned long)sinfo; + sinfo->timer.function = bkn_timer; + + INIT_LIST_HEAD(&sinfo->tx.api_dcb_list); + + for (chan = 0; chan < NUM_RX_CHAN; chan++) { + INIT_LIST_HEAD(&sinfo->rx[chan].api_dcb_list); + sinfo->rx[chan].use_rx_skb = use_rx_skb; + } + + /* + * Check for dual DMA mode where Rx DMA channel 0 uses DMA buffers + * provided by the BCM API, and the remaining Rx DMA channel(s) + * use socket buffers (SKB) provided by the Linux kernel. + */ + if (use_rx_skb == 2) { + sinfo->rx[0].use_rx_skb = 0; + } + + init_timer(&sinfo->rxtick); + sinfo->rxtick.expires = jiffies + 1; + sinfo->rxtick.data = (unsigned long)sinfo; + sinfo->rxtick.function = bkn_rxtick; + + for (chan = 0; chan < NUM_RX_CHAN; chan++) { + sinfo->rx[chan].rate_max = rx_rate[chan]; + sinfo->rx[chan].burst_max = rx_burst[chan]; + } + bkn_rx_rate_config(sinfo); + + add_timer(&sinfo->rxtick); + + list_add_tail(&sinfo->list, &_sinfo_list); + + sinfo->cmic_type = 'e'; + DEV_READ32(sinfo, CMIC_DEV_REV_IDr, &val); + if (val == 0) { + sinfo->cmic_type = 'm'; + DEV_READ32(sinfo, CMICM_DEV_REV_IDr, &val); + } + + DBG_VERB(("Check dev/rev: 0x%08x\n", val)); + + return sinfo; +} + + +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,29)) +static const struct net_device_ops bkn_netdev_ops = { + .ndo_open = bkn_open, + .ndo_stop = bkn_stop, + .ndo_start_xmit = bkn_tx, + .ndo_get_stats = bkn_get_stats, + .ndo_validate_addr = eth_validate_addr, + .ndo_set_rx_mode = bkn_set_multicast_list, + .ndo_set_mac_address = bkn_set_mac_address, + .ndo_do_ioctl = NULL, + .ndo_tx_timeout = NULL, + .ndo_change_mtu = bkn_change_mtu, +#ifdef CONFIG_NET_POLL_CONTROLLER + .ndo_poll_controller = bkn_poll_controller, +#endif +}; +#endif + +static struct net_device * +bkn_init_ndev(u8 *mac, char *name) +{ + struct net_device *dev; + + /* Create Ethernet device */ + dev = alloc_etherdev(sizeof(bkn_priv_t)); + + if (dev == NULL) { + DBG_WARN(("Error allocating Ethernet device.\n")); + return NULL; + } +#ifdef SET_MODULE_OWNER + SET_MODULE_OWNER(dev); +#endif + + /* Set the device MAC address */ + memcpy(dev->dev_addr, mac, 6); + + /* Device information -- not available right now */ + dev->irq = 0; + dev->base_addr = 0; + + /* Default MTU should not exceed MTU of switch front-panel ports */ + dev->mtu = default_mtu; + if (dev->mtu == 0) { + dev->mtu = rx_buffer_size; + } + + /* Device vectors */ +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,29)) + dev->netdev_ops = &bkn_netdev_ops; +#else + dev->open = bkn_open; + dev->hard_start_xmit = bkn_tx; + dev->stop = bkn_stop; + dev->set_multicast_list = bkn_set_multicast_list; + dev->do_ioctl = NULL; + dev->get_stats = bkn_get_stats; + dev->change_mtu = bkn_change_mtu; +#ifdef CONFIG_NET_POLL_CONTROLLER + dev->poll_controller = bkn_poll_controller; +#endif +#endif + if (name && *name) { + strncpy(dev->name, name, IFNAMSIZ-1); + } + + /* Register the kernel Ethernet device */ + if (register_netdev(dev)) { + DBG_WARN(("Error registering Ethernet device.\n")); + free_netdev(dev); + return NULL; + } + DBG_VERB(("Created Ethernet device %s.\n", dev->name)); + + return dev; +} + +/* + * Device Link Control Proc Read Entry + */ +static int +bkn_proc_link_show(struct seq_file *m, void *v) +{ + struct list_head *slist, *dlist; + struct net_device *dev; + bkn_priv_t *priv; + bkn_switch_info_t *sinfo; + unsigned long flags; + + seq_printf(m, "Software link status:\n"); + list_for_each(slist, &_sinfo_list) { + sinfo = (bkn_switch_info_t *)slist; + spin_lock_irqsave(&sinfo->lock, flags); + list_for_each(dlist, &sinfo->ndev_list) { + priv = (bkn_priv_t *)dlist; + dev = priv->dev; + if (dev) { + seq_printf(m, " %-14s %s\n", dev->name, + netif_carrier_ok(dev) ? "up" : "down"); + } + } + spin_unlock_irqrestore(&sinfo->lock, flags); + } + return 0; +} + +static int +bkn_proc_link_open(struct inode * inode, struct file * file) +{ + return single_open(file, bkn_proc_link_show, NULL); +} + +/* + * Device Link Control Proc Write Entry + * + * Syntax: + * =up|down + * + * Where is a virtual network interface name. + * + * Examples: + * eth4=up + * eth4=down + */ +static ssize_t +bkn_proc_link_write(struct file *file, const char *buf, + size_t count, loff_t *loff) +{ + struct list_head *slist, *dlist; + struct net_device *dev; + bkn_priv_t *priv; + bkn_switch_info_t *sinfo; + unsigned long flags; + char link_str[40]; + char *ptr; + char *newline; + + if (count >= sizeof(link_str)) { + count = sizeof(link_str) - 1; + } + if (copy_from_user(link_str, buf, count)) { + return -EFAULT; + } + link_str[count] = 0; + newline = strchr(link_str, '\n'); + if (newline) { + /* Chop off the trailing newline */ + *newline = '\0'; + } + + if ((ptr = strchr(link_str, '=')) == NULL && + (ptr = strchr(link_str, ':')) == NULL) { + gprintk("Error: link syntax not recognized: '%s'\n", link_str); + return count; + } + *ptr++ = 0; + + dev = NULL; + list_for_each(slist, &_sinfo_list) { + sinfo = (bkn_switch_info_t *)slist; + spin_lock_irqsave(&sinfo->lock, flags); + list_for_each(dlist, &sinfo->ndev_list) { + priv = (bkn_priv_t *)dlist; + if (priv->dev) { + if (strcmp(priv->dev->name, link_str) == 0) { + dev = priv->dev; + break; + } + } + } + if (dev) { + if (strcmp(ptr, "up") == 0) { + netif_carrier_on(dev); + } else if (strcmp(ptr, "down") == 0) { + netif_carrier_off(dev); + } else { + gprintk("Warning: unknown link state setting: '%s'\n", ptr); + } + spin_unlock_irqrestore(&sinfo->lock, flags); + return count; + } + spin_unlock_irqrestore(&sinfo->lock, flags); + } + + gprintk("Warning: unknown network interface: '%s'\n", link_str); + + return count; +} + +struct file_operations bkn_proc_link_file_ops = { + owner: THIS_MODULE, + open: bkn_proc_link_open, + read: seq_read, + llseek: seq_lseek, + write: bkn_proc_link_write, + release: single_release, +}; + +/* + * Device Rate Control Proc Read Entry + */ +static int +bkn_proc_rate_show(struct seq_file *m, void *v){ + int unit = 0; + struct list_head *list; + bkn_switch_info_t *sinfo; + int chan; + + list_for_each(list, &_sinfo_list) { + sinfo = (bkn_switch_info_t *)list; + + seq_printf(m, "Rate control (unit %d):\n", unit); + for (chan = 0; chan < NUM_RX_CHAN; chan++) { + seq_printf(m, " Rx%d max rate %8u\n", + chan, sinfo->rx[chan].rate_max); + seq_printf(m, " Rx%d max burst %8u\n", + chan, sinfo->rx[chan].burst_max); + seq_printf(m, " Rx%d rate %8u\n", + chan, sinfo->rx[chan].rate); + seq_printf(m, " Rx%d tokens %8u\n", + chan, sinfo->rx[chan].tokens); + } + + unit++; + } + return 0; +} + +static int +bkn_proc_rate_open(struct inode * inode, struct file * file) { + return single_open(file, bkn_proc_rate_show, NULL); +} + +/* + * Device Rate Control Proc Write Entry + * + * Syntax: + * [:]rx_rate=[,[, is packets/sec for the first Rx DMA channel, + * is packets/sec for the second Rx DMA channel, etc. + * + * Examples: + * rx_rate=5000 + * 0:rx_rate=10000,10000 + * 1:rx_rate=10000,5000 + */ +static ssize_t +bkn_proc_rate_write(struct file *file, const char *buf, + size_t count, loff_t *loff) +{ + bkn_switch_info_t *sinfo; + char rate_str[40]; + char *ptr; + int unit, chan; + + if (count >= sizeof(rate_str)) { + count = sizeof(rate_str) - 1; + } + if (copy_from_user(rate_str, buf, count)) { + return -EFAULT; + } + + unit = simple_strtol(rate_str, NULL, 10); + sinfo = bkn_sinfo_from_unit(unit); + if (sinfo == NULL) { + gprintk("Warning: unknown unit\n"); + return count; + } + + + if ((ptr = strstr(rate_str, "rx_rate=")) != NULL) { + ptr += 7; + chan = 0; + do { + ptr++; + sinfo->rx[chan].rate_max = simple_strtol(ptr, NULL, 10); + } + while ((ptr = strchr(ptr, ',')) != NULL && ++chan < NUM_RX_CHAN); + bkn_rx_rate_config(sinfo); + } else if ((ptr = strstr(rate_str, "rx_burst=")) != NULL) { + ptr += 8; + chan = 0; + do { + ptr++; + sinfo->rx[chan].burst_max = simple_strtol(ptr, NULL, 10); + } + while ((ptr = strchr(ptr, ',')) != NULL && ++chan < NUM_RX_CHAN); + bkn_rx_rate_config(sinfo); + } else { + gprintk("Warning: unknown configuration setting\n"); + } + + return count; +} + +struct file_operations bkn_proc_rate_file_ops = { + owner: THIS_MODULE, + open: bkn_proc_rate_open, + read: seq_read, + llseek: seq_lseek, + write: bkn_proc_rate_write, + release: single_release, +}; + +/* + * Driver DMA Proc Entry + * + * This output can be rather large (> PAGE_SIZE) so we use the + * seq_file interface to do the output. Special header records + * are indicated by a negative DCB index. + */ +typedef struct { + int dev_no; /* Current unit */ + int rx_dma; /* 0: Tx DMA, 1: Rx DMA*/ + int ch_no; /* DMA channel no. (Rx only) */ + int idx; /* DCB index */ +} bkn_seq_dma_iter_t; + +/* From current record, move forward 'pos' records */ +static int +bkn_seq_dma_next_pos(bkn_seq_dma_iter_t *iter, loff_t pos) +{ + while (pos) { + if (iter->rx_dma) { + if (++iter->idx >= MAX_RX_DCBS) { + iter->idx = -1; + if (++iter->ch_no >= NUM_RX_CHAN) { + iter->rx_dma = 0; + iter->ch_no = 0; + iter->dev_no++; + if (bkn_sinfo_from_unit(iter->dev_no) == NULL) { + return -1; + } + } + } + } else { + if (++iter->idx >= MAX_TX_DCBS) { + iter->idx = -1; + iter->rx_dma = 1; + } + } + pos--; + } + return 0; +} + +/* Initialize private data and move to requested start record */ +static void * +bkn_seq_dma_start(struct seq_file *s, loff_t *pos) +{ + bkn_seq_dma_iter_t *iter; + + iter = kmalloc(sizeof(bkn_seq_dma_iter_t), GFP_KERNEL); + if (!iter) { + return NULL; + } + memset(iter, 0, sizeof(*iter)); + iter->idx = -2; + if (bkn_seq_dma_next_pos(iter, *pos) < 0) { + kfree(iter); + return NULL; + } + return iter; +} + +/* Move to next record */ +static void * +bkn_seq_dma_next(struct seq_file *s, void *v, loff_t *pos) +{ + bkn_seq_dma_iter_t *iter = (bkn_seq_dma_iter_t *)v; + void *rv = iter; + + if (bkn_seq_dma_next_pos(iter, 1) < 0) { + return NULL; + } + (*pos)++; + return rv; +} + +/* Release private data */ +static void +bkn_seq_dma_stop(struct seq_file *s, void *v) +{ + if (v) { + kfree(v); + } +} + +/* Print current record */ +static int +bkn_seq_dma_show(struct seq_file *s, void *v) +{ + bkn_seq_dma_iter_t *iter = (bkn_seq_dma_iter_t *)v; + bkn_switch_info_t *sinfo; + uint32_t *dcb = NULL; + int chan; + + sinfo = bkn_sinfo_from_unit(iter->dev_no); + if (sinfo == NULL) { + /* Should not happen */ + return 0; + } + + if (iter->rx_dma == 0) { + if (iter->idx == -2) { + seq_printf(s, "Pending events: 0x%x\n", sinfo->dma_events); + } else if (iter->idx == -1) { + seq_printf(s, + "Tx DCB info (unit %d):\n" + " api: %d\n" + " dirty: %d\n" + " cur: %d\n" + " free: %d\n" + " pause: %s\n", + iter->dev_no, + sinfo->tx.api_active, + sinfo->tx.dirty, + sinfo->tx.cur, + sinfo->tx.free, + netif_queue_stopped(sinfo->dev) ? "yes" : "no"); + } else { + dcb = sinfo->tx.desc[iter->idx].dcb_mem; + } + } else { + if (iter->idx == -1) { + chan = iter->ch_no; + seq_printf(s, + "Rx%d DCB info (unit %d):\n" + " api: %d\n" + " dirty: %d\n" + " cur: %d\n" + " free: %d\n" + " run: %d\n", + chan, iter->dev_no, + sinfo->rx[chan].api_active, + sinfo->rx[chan].dirty, + sinfo->rx[chan].cur, + sinfo->rx[chan].free, + sinfo->rx[chan].running); + } else if (sinfo->rx[iter->ch_no].use_rx_skb) { + dcb = sinfo->rx[iter->ch_no].desc[iter->idx].dcb_mem; + } + } + if (dcb) { + seq_printf(s, " DCB %2d: 0x%08x 0x%08x ... 0x%08x\n", iter->idx, + dcb[0], dcb[1], dcb[sinfo->dcb_wsize - 1]); + } + return 0; +} + +static struct seq_operations bkn_seq_dma_ops = { + .start = bkn_seq_dma_start, + .next = bkn_seq_dma_next, + .stop = bkn_seq_dma_stop, + .show = bkn_seq_dma_show +}; + +static int +bkn_seq_dma_open(struct inode *inode, struct file *file) +{ + return seq_open(file, &bkn_seq_dma_ops); +}; + +static struct file_operations bkn_seq_dma_file_ops = { + .owner = THIS_MODULE, + .open = bkn_seq_dma_open, + .read = seq_read, + .llseek = seq_lseek, + .release = seq_release +}; + +/* + * Device Debug Control Proc Write Entry + * + * Syntax: + * [:]debug= + * + * Where corresponds to the debug module parameter. + * + * Examples: + * debug=0xffff + * 0:debug-0x2000 + */ +static ssize_t +bkn_proc_debug_write(struct file *file, const char *buf, + size_t count, loff_t *loff) +{ + bkn_switch_info_t *sinfo; + char debug_str[40]; + char *ptr; + int unit; + + if (count >= sizeof(debug_str)) { + count = sizeof(debug_str) - 1; + } + if (copy_from_user(debug_str, buf, count)) { + return -EFAULT; + } + + unit = simple_strtol(debug_str, NULL, 10); + sinfo = bkn_sinfo_from_unit(unit); + if (sinfo == NULL) { + gprintk("Warning: unknown unit\n"); + return count; + } + + if ((ptr = strstr(debug_str, "debug=")) != NULL) { + ptr += 6; + debug = simple_strtol(ptr, NULL, 0); + } else { + gprintk("Warning: unknown configuration setting\n"); + } + + return count; +} + +/* + * Driver Debug Proc Entry + */ +static int +bkn_proc_debug_show(struct seq_file *m, void *v){ + int unit = 0; + struct list_head *list; + bkn_switch_info_t *sinfo; + + seq_printf(m, "Configuration:\n"); + seq_printf(m, " debug: 0x%x\n", debug); + seq_printf(m, " mac_addr: %02x:%02x:%02x:%02x:%02x:%02x\n", + bkn_dev_mac[0], bkn_dev_mac[1], bkn_dev_mac[2], + bkn_dev_mac[3], bkn_dev_mac[4], bkn_dev_mac[5]); + seq_printf(m, " rx_buffer_size: %d (0x%x)\n", + rx_buffer_size, rx_buffer_size); + seq_printf(m, " rcpu_mode: %d\n", rcpu_mode); + seq_printf(m, " rcpu_dmac: %02x:%02x:%02x:%02x:%02x:%02x\n", + bkn_rcpu_dmac[0], bkn_rcpu_dmac[1], bkn_rcpu_dmac[2], + bkn_rcpu_dmac[3], bkn_rcpu_dmac[4], bkn_rcpu_dmac[5]); + seq_printf(m, " rcpu_smac: %02x:%02x:%02x:%02x:%02x:%02x\n", + bkn_rcpu_smac[0], bkn_rcpu_smac[1], bkn_rcpu_smac[2], + bkn_rcpu_smac[3], bkn_rcpu_smac[4], bkn_rcpu_smac[5]); + seq_printf(m, " rcpu_ethertype: 0x%x\n", rcpu_ethertype); + seq_printf(m, " rcpu_signature: 0x%x\n", rcpu_signature); + seq_printf(m, " rcpu_vlan: %d\n", rcpu_vlan); + seq_printf(m, " use_rx_skb: %d\n", use_rx_skb); + seq_printf(m, " num_rx_prio: %d\n", num_rx_prio); + seq_printf(m, " check_rcpu_sig: %d\n", check_rcpu_signature); + seq_printf(m, " default_mtu: %d\n", default_mtu); + seq_printf(m, " rx_sync_retry: %d\n", rx_sync_retry); + seq_printf(m, " use_napi: %d\n", use_napi); + seq_printf(m, " napi_weight: %d\n", napi_weight); + seq_printf(m, " basedev_susp: %d\n", basedev_suspend); + seq_printf(m, "Thread states:\n"); + seq_printf(m, " Command thread: %d\n", bkn_cmd_ctrl.state); + seq_printf(m, " Event thread: %d\n", bkn_evt_ctrl.state); + seq_printf(m, "Active IOCTLs:\n"); + seq_printf(m, " Command: %d\n", ioctl_cmd); + seq_printf(m, " Event: %d\n", ioctl_evt); + + list_for_each(list, &_sinfo_list) { + sinfo = (bkn_switch_info_t *)list; + + seq_printf(m, "Device %d:\n", unit); + seq_printf(m, " base_addr: 0x%p\n", sinfo->base_addr); + seq_printf(m, " dev_no: %d\n", sinfo->dev_no); + seq_printf(m, " dcb_type: %d\n", sinfo->dcb_type); + seq_printf(m, " dcb_wsize: %d\n", sinfo->dcb_wsize); + seq_printf(m, " cmic_type: %c\n", sinfo->cmic_type); + seq_printf(m, " irq_mask: 0x%x\n", sinfo->irq_mask); + seq_printf(m, " dma_events: 0x%x\n", sinfo->dma_events); + seq_printf(m, " dcb_dma: 0x%p\n", (void *)sinfo->dcb_dma); + seq_printf(m, " dcb_mem_size: 0x%x\n", sinfo->dcb_mem_size); + seq_printf(m, " rcpu_sig: 0x%x\n", sinfo->rcpu_sig); + seq_printf(m, " napi_poll_mode: %d\n", sinfo->napi_poll_mode); + seq_printf(m, " inst_id: 0x%x\n", sinfo->inst_id); + seq_printf(m, " evt_queue: %d\n", sinfo->evt_idx); + + unit++; + } + + return 0; +} + +static int bkn_proc_debug_open(struct inode * inode, struct file * file) { + return single_open(file, bkn_proc_debug_show, NULL); +} + +struct file_operations bkn_proc_debug_file_ops = { + owner: THIS_MODULE, + open: bkn_proc_debug_open, + read: seq_read, + llseek: seq_lseek, + write: bkn_proc_debug_write, + release: single_release, +}; + +/* + * Device Statistics Proc Entry + */ +static int +bkn_proc_stats_show(struct seq_file *m, void *v){ + int unit = 0; + struct list_head *list, *flist; + bkn_switch_info_t *sinfo; + bkn_filter_t *filter; + int chan; + + + list_for_each(list, &_sinfo_list) { + sinfo = (bkn_switch_info_t *)list; + + seq_printf(m, "Device stats (unit %d):\n", unit); + seq_printf(m, " Interrupts %10u\n", sinfo->interrupts); + seq_printf(m, " Tx packets %10u\n", sinfo->tx.pkts); + for (chan = 0; chan < NUM_RX_CHAN; chan++) { + seq_printf(m, " Rx%d packets %10u\n", + chan, sinfo->rx[chan].pkts); + } + for (chan = 0; chan < NUM_RX_CHAN; chan++) { + if (sinfo->interrupts == 0) { + /* Avoid divide-by-zero */ + seq_printf(m, " Rx%d pkts/intr -\n", chan); + } else { + seq_printf(m, " Rx%d pkts/intr %8u\n", + chan, sinfo->rx[chan].pkts / sinfo->interrupts); + } + } + seq_printf(m, " Timer runs %10u\n", sinfo->timer_runs); + seq_printf(m, " NAPI reruns %10u\n", sinfo->napi_not_done); + + list_for_each(flist, &sinfo->rxpf_list) { + filter = (bkn_filter_t *)flist; + + seq_printf(m, " Filter %d stats:\n", filter->kf.id); + seq_printf(m, " Hits %10lu\n", filter->hits); + } + + unit++; + } + return 0; +} + +static int bkn_proc_stats_open(struct inode * inode, struct file * file) { + return single_open(file, bkn_proc_stats_show, NULL); +} + +/* + * Device Statistics Proc Write Entry + * + * Syntax: + * [:]clear[=all] + * + * Where corresponds to the debug module parameter. + * + * Examples: + * clear + * 0:clear=all + */ +static ssize_t +bkn_proc_stats_write(struct file *file, const char *buf, + size_t count, loff_t *loff) +{ + bkn_switch_info_t *sinfo; + struct list_head *flist; + bkn_filter_t *filter; + char debug_str[40]; + char *ptr; + int unit; + int clear_mask; + int chan; + + if (count >= sizeof(debug_str)) { + count = sizeof(debug_str) - 1; + } + if (copy_from_user(debug_str, buf, count)) { + return -EFAULT; + } + + unit = simple_strtol(debug_str, NULL, 10); + sinfo = bkn_sinfo_from_unit(unit); + if (sinfo == NULL) { + gprintk("Warning: unknown unit\n"); + return count; + } + + clear_mask = 0; + if ((ptr = strstr(debug_str, "clear=")) != NULL) { + ptr += 6; + if (strncmp(ptr, "all", 3) == 0) { + clear_mask = ~0; + } + } else if ((ptr = strstr(debug_str, "clear")) != NULL) { + clear_mask = ~0; + } else { + gprintk("Warning: unknown configuration setting\n"); + } + + if (clear_mask) { + sinfo->tx.pkts = 0; + for (chan = 0; chan < NUM_RX_CHAN; chan++) { + sinfo->rx[chan].pkts = 0; + } + sinfo->interrupts = 0; + sinfo->timer_runs = 0; + sinfo->napi_not_done = 0; + list_for_each(flist, &sinfo->rxpf_list) { + filter = (bkn_filter_t *)flist; + filter->hits = 0; + } + } + + return count; +} + +struct file_operations bkn_proc_stats_file_ops = { + owner: THIS_MODULE, + open: bkn_proc_stats_open, + read: seq_read, + llseek: seq_lseek, + write: bkn_proc_stats_write, + release: single_release, +}; + +/* + * Device Debug Statistics Proc Entry + */ +static int +bkn_proc_dstats_show(struct seq_file *m, void *v){ + int unit = 0; + struct list_head *list; + bkn_switch_info_t *sinfo; + int chan; + + list_for_each(list, &_sinfo_list) { + sinfo = (bkn_switch_info_t *)list; + + seq_printf(m, "Device debug stats (unit %d):\n", unit); + seq_printf(m, " Tx drop no skb %10u\n", + sinfo->tx.pkts_d_no_skb); + seq_printf(m, " Tx drop rcpu encap %10u\n", + sinfo->tx.pkts_d_rcpu_encap); + seq_printf(m, " Tx drop rcpu sig %10u\n", + sinfo->tx.pkts_d_rcpu_sig); + seq_printf(m, " Tx drop rcpu meta %10u\n", + sinfo->tx.pkts_d_rcpu_meta); + seq_printf(m, " Tx drop pad failed %10u\n", + sinfo->tx.pkts_d_pad_fail); + seq_printf(m, " Tx drop no resource %10u\n", + sinfo->tx.pkts_d_dma_resrc); + seq_printf(m, " Tx drop callback %10u\n", + sinfo->tx.pkts_d_callback); + seq_printf(m, " Tx drop no link %10u\n", + sinfo->tx.pkts_d_no_link); + seq_printf(m, " Tx drop oversized %10u\n", + sinfo->tx.pkts_d_over_limit); + seq_printf(m, " Tx suspends %10u\n", + sinfo->tx.suspends); + for (chan = 0; chan < NUM_RX_CHAN; chan++) { + seq_printf(m, " Rx%d filter to api %10u\n", + chan, sinfo->rx[chan].pkts_f_api); + seq_printf(m, " Rx%d filter to netif %10u\n", + chan, sinfo->rx[chan].pkts_f_netif); + seq_printf(m, " Rx%d mirror to api %10u\n", + chan, sinfo->rx[chan].pkts_m_api); + seq_printf(m, " Rx%d mirror to netif %10u\n", + chan, sinfo->rx[chan].pkts_m_netif); + seq_printf(m, " Rx%d drop no skb %10u\n", + chan, sinfo->rx[chan].pkts_d_no_skb); + seq_printf(m, " Rx%d drop no match %10u\n", + chan, sinfo->rx[chan].pkts_d_no_match); + seq_printf(m, " Rx%d drop unkn netif %10u\n", + chan, sinfo->rx[chan].pkts_d_unkn_netif); + seq_printf(m, " Rx%d drop unkn dest %10u\n", + chan, sinfo->rx[chan].pkts_d_unkn_dest); + seq_printf(m, " Rx%d drop callback %10u\n", + chan, sinfo->rx[chan].pkts_d_callback); + seq_printf(m, " Rx%d drop no link %10u\n", + chan, sinfo->rx[chan].pkts_d_no_link); + seq_printf(m, " Rx%d sync error %10u\n", + chan, sinfo->rx[chan].sync_err); + seq_printf(m, " Rx%d sync retry %10u\n", + chan, sinfo->rx[chan].sync_retry); + seq_printf(m, " Rx%d sync maxloop %10u\n", + chan, sinfo->rx[chan].sync_maxloop); + seq_printf(m, " Rx%d drop no buffer %10u\n", + chan, sinfo->rx[chan].pkts_d_no_api_buf); + } + unit++; + } + return 0; +} + +static int bkn_proc_dstats_open(struct inode * inode, struct file * file) { + return single_open(file, bkn_proc_dstats_show, NULL); +} + +/* + * Device Debug Statistics Proc Write Entry + * + * Syntax: + * [:]clear[=all|tx|rx[]] + * + * Where corresponds to the debug module parameter. + * + * Examples: + * clear + * 0:clear=rx1 + */ +static ssize_t +bkn_proc_dstats_write(struct file *file, const char *buf, + size_t count, loff_t *loff) +{ + bkn_switch_info_t *sinfo; + char debug_str[40]; + char *ptr; + int unit; + int clear_mask; + int chan; + + if (count >= sizeof(debug_str)) { + count = sizeof(debug_str) - 1; + } + if (copy_from_user(debug_str, buf, count)) { + return -EFAULT; + } + + unit = simple_strtol(debug_str, NULL, 10); + sinfo = bkn_sinfo_from_unit(unit); + if (sinfo == NULL) { + gprintk("Warning: unknown unit\n"); + return count; + } + + clear_mask = 0; + if ((ptr = strstr(debug_str, "clear=")) != NULL) { + ptr += 6; + if (strncmp(ptr, "all", 3) == 0) { + clear_mask = ~0; + } else if (strncmp(ptr, "dev", 3) == 0) { + clear_mask = 0x20; + } else if (strncmp(ptr, "tx", 2) == 0) { + clear_mask = 0x10; + } else if (strncmp(ptr, "rx0", 3) == 0) { + clear_mask = (1 << 0); + } else if (strncmp(ptr, "rx1", 3) == 0) { + clear_mask = (1 << 1); + } else if (strncmp(ptr, "rx", 2) == 0) { + clear_mask = 0xf; + } + } else if ((ptr = strstr(debug_str, "clear")) != NULL) { + clear_mask = ~0; + } else { + gprintk("Warning: unknown configuration setting\n"); + } + + /* Tx counters */ + if (clear_mask & 0x10) { + sinfo->tx.pkts_d_no_skb = 0; + sinfo->tx.pkts_d_rcpu_encap = 0; + sinfo->tx.pkts_d_rcpu_sig = 0; + sinfo->tx.pkts_d_rcpu_meta = 0; + sinfo->tx.pkts_d_pad_fail = 0; + sinfo->tx.pkts_d_over_limit = 0; + sinfo->tx.pkts_d_dma_resrc = 0; + sinfo->tx.suspends = 0; + } + /* Rx counters */ + for (chan = 0; chan < NUM_RX_CHAN; chan++) { + if (clear_mask & (1 << chan)) { + sinfo->rx[chan].pkts_f_api = 0; + sinfo->rx[chan].pkts_f_netif = 0; + sinfo->rx[chan].pkts_m_api = 0; + sinfo->rx[chan].pkts_m_netif = 0; + sinfo->rx[chan].pkts_d_no_skb = 0; + sinfo->rx[chan].pkts_d_no_match = 0; + sinfo->rx[chan].pkts_d_unkn_netif = 0; + sinfo->rx[chan].pkts_d_unkn_dest = 0; + sinfo->rx[chan].pkts_d_no_api_buf = 0; + sinfo->rx[chan].sync_err = 0; + sinfo->rx[chan].sync_retry = 0; + sinfo->rx[chan].sync_maxloop = 0; + } + } + + return count; +} + +struct file_operations bkn_proc_dstats_file_ops = { + owner: THIS_MODULE, + open: bkn_proc_dstats_open, + read: seq_read, + llseek: seq_lseek, + write: bkn_proc_dstats_write, + release: single_release, +}; + +static int +bkn_proc_init(void) +{ + struct proc_dir_entry *entry; + + PROC_CREATE(entry, "link", 0666, bkn_proc_root, &bkn_proc_link_file_ops); + if (entry == NULL) { + return -1; + } + PROC_CREATE(entry, "rate", 0666, bkn_proc_root, &bkn_proc_rate_file_ops); + if (entry == NULL) { + return -1; + } + PROC_CREATE(entry, "dma", 0, bkn_proc_root, &bkn_seq_dma_file_ops); + if (entry == NULL) { + return -1; + } + PROC_CREATE(entry, "debug", 0666, bkn_proc_root, &bkn_proc_debug_file_ops); + if (entry == NULL) { + return -1; + } + PROC_CREATE(entry, "stats", 0666, bkn_proc_root, &bkn_proc_stats_file_ops); + if (entry == NULL) { + return -1; + } + PROC_CREATE(entry, "dstats", 0666, bkn_proc_root, &bkn_proc_dstats_file_ops); + if (entry == NULL) { + return -1; + } + + return 0; +} + +static int +bkn_proc_cleanup(void) +{ + remove_proc_entry("link", bkn_proc_root); + remove_proc_entry("rate", bkn_proc_root); + remove_proc_entry("dma", bkn_proc_root); + remove_proc_entry("debug", bkn_proc_root); + remove_proc_entry("stats", bkn_proc_root); + remove_proc_entry("dstats", bkn_proc_root); + return 0; +} + +/* + * Generic module functions + */ + +static int +_pprint(void) +{ + pprintf("Broadcom BCM KNET Linux Network Driver\n"); + + return 0; +} + +static int +bkn_knet_dma_info(kcom_msg_dma_info_t *kmsg, int len) +{ + bkn_switch_info_t *sinfo; + bkn_dcb_chain_t *dcb_chain, *dcb_chain_end; + unsigned long flags; + int chan = API_RX_CHAN; + dma_addr_t dcb_dma; + int woffset; + + kmsg->hdr.type = KCOM_MSG_TYPE_RSP; + + sinfo = bkn_sinfo_from_unit(kmsg->hdr.unit); + if (sinfo == NULL) { + kmsg->hdr.status = KCOM_E_PARAM; + return sizeof(kcom_msg_hdr_t); + } + + dcb_chain = kmalloc(sizeof(*dcb_chain), GFP_KERNEL); + if (dcb_chain == NULL) { + gprintk("Fatal error: No memory for dcb_chain\n"); + kmsg->hdr.status = KCOM_E_RESOURCE; + return sizeof(kcom_msg_hdr_t); + } + memset(dcb_chain, 0, sizeof(*dcb_chain)); + dcb_chain->dcb_cnt = kmsg->dma_info.cnt; + dcb_chain->dcb_dma = kmsg->dma_info.data.dcb_start; + dcb_chain->dcb_mem = kernel_bde->p2l(sinfo->dev_no, + dcb_chain->dcb_dma); + + if (kmsg->dma_info.type == KCOM_DMA_INFO_T_TX_DCB) { + + spin_lock_irqsave(&sinfo->lock, flags); + + /* Hold back packets from kernel */ + bkn_suspend_tx(sinfo); + + list_add_tail(&dcb_chain->list, &sinfo->tx.api_dcb_list); + + /* Handle for Continuous DMA mode */ + if (CDMA_CH(sinfo, XGS_DMA_TX_CHAN)) { + woffset = (dcb_chain->dcb_cnt - 1) * sinfo->dcb_wsize + 1; + if ((dcb_chain->dcb_mem[woffset] & ((1 << 18) | (1 << 16))) != 0x50000) { + gprintk("No suitable API DCB chain for Continuous DMA mode\n"); + kfree(dcb_chain); + kmsg->hdr.status = KCOM_E_PARAM; + spin_unlock_irqrestore(&sinfo->lock, flags); + return sizeof(kcom_msg_hdr_t); + } + dcb_chain_end = sinfo->tx.api_dcb_chain_end; + if (dcb_chain_end != NULL) { + /* Stitch this chain */ + woffset = (dcb_chain_end->dcb_cnt - 1) * sinfo->dcb_wsize; + dcb_chain_end->dcb_mem[woffset] = dcb_chain->dcb_dma; + } + sinfo->tx.api_dcb_chain_end = dcb_chain; + if (sinfo->tx.api_active) { + /* Set new halt location */ + woffset = (dcb_chain->dcb_cnt - 1) * sinfo->dcb_wsize; + dcb_dma = dcb_chain->dcb_dma + woffset * sizeof(uint32_t); + /* DMA run to the new halt location */ + bkn_cdma_goto(sinfo, XGS_DMA_TX_CHAN, dcb_dma); + } + } + + if (sinfo->tx.free == MAX_TX_DCBS && + !sinfo->tx.api_active && + !sinfo->basedev_suspended) { + bkn_api_tx(sinfo); + } + + spin_unlock_irqrestore(&sinfo->lock, flags); + + } else if (kmsg->dma_info.type == KCOM_DMA_INFO_T_RX_DCB) { + + spin_lock_irqsave(&sinfo->lock, flags); + + list_add_tail(&dcb_chain->list, &sinfo->rx[chan].api_dcb_list); + + /* Handle for Continuous DMA mode */ + if (CDMA_CH(sinfo, XGS_DMA_RX_CHAN + chan)) { + woffset = (dcb_chain->dcb_cnt - 1) * sinfo->dcb_wsize + 1; + if ((dcb_chain->dcb_mem[woffset] & ((1 << 18) | (1 << 16))) != 0x50000) { + gprintk("No suitable API DCB chain for Continuous DMA mode\n"); + kfree(dcb_chain); + kmsg->hdr.status = KCOM_E_PARAM; + spin_unlock_irqrestore(&sinfo->lock, flags); + return sizeof(kcom_msg_hdr_t); + } + dcb_chain_end = sinfo->rx[chan].api_dcb_chain_end; + if (dcb_chain_end != NULL) { + /* Stitch this chain */ + woffset = (dcb_chain_end->dcb_cnt - 1) * sinfo->dcb_wsize; + dcb_chain_end->dcb_mem[woffset] = dcb_chain->dcb_dma; + } + sinfo->rx[chan].api_dcb_chain_end = dcb_chain; + if (!sinfo->rx[chan].use_rx_skb) { + /* Set new halt location */ + woffset = (dcb_chain->dcb_cnt - 1) * sinfo->dcb_wsize; + dcb_dma = dcb_chain->dcb_dma + woffset * sizeof(uint32_t); + /* DMA run to the new halt location */ + bkn_cdma_goto(sinfo, XGS_DMA_RX_CHAN + chan, dcb_dma); + } + } + + if (sinfo->rx[chan].api_active == 0) { + bkn_api_rx_restart(sinfo); + } + + spin_unlock_irqrestore(&sinfo->lock, flags); + + } else { + DBG_DCB(("Unknown DCB_INFO type (%d).\n", kmsg->dma_info.type)); + kfree(dcb_chain); + kmsg->hdr.status = KCOM_E_PARAM; + } + + return sizeof(kcom_msg_hdr_t); +} + +static int +bkn_create_inst(uint32 inst_id) +{ + bkn_switch_info_t *sinfo; + bkn_evt_resource_t *evt; + unsigned long flags; + int i, evt_idx = -1; + + /* multiple instance mode */ + for (i = 0; i < kernel_bde->num_devices(BDE_ALL_DEVICES); i ++) { + evt = &_bkn_evt[i]; + if (evt->inst_id == inst_id) { + evt_idx = i; + DBG_INST(("%s evt_idx %d inst_id 0x%x\n",__FUNCTION__, i, inst_id)); + break; + } + if ((_bkn_multi_inst == 0) || (evt->inst_id == 0)) { + _bkn_multi_inst ++; + evt_idx = i; + init_waitqueue_head(&evt->evt_wq); + evt->inst_id = inst_id; + DBG_INST(("%s evt_idx %d inst_id 0x%x\n",__FUNCTION__, i, inst_id)); + break; + } + } + + if (evt_idx == -1) { + DBG_WARN(("Run out the event queue resource !\n")); + return -1; + } + for (i = 0; i < kernel_bde->num_devices(BDE_ALL_DEVICES); i ++) { + if (inst_id & (1 << i)) { + sinfo = bkn_sinfo_from_unit(i); + spin_lock_irqsave(&sinfo->lock, flags); + sinfo->evt_idx = evt_idx; + spin_unlock_irqrestore(&sinfo->lock, flags); + DBG_INST(("%s d(%d) evt_idx %d \n",__FUNCTION__, i, evt_idx)); + } + } + return 0; +} + +/* + * Device reprobe driven by application to check if new device is probed or + * existed device is changed after inserting KNET module. + */ +static int +bkn_knet_dev_reprobe(void) +{ + bkn_switch_info_t *sinfo; + int i; + for (i = 0; i < kernel_bde->num_devices(BDE_ALL_DEVICES); i++) { + sinfo = bkn_sinfo_from_unit(i); + if (sinfo == NULL ) { + /* New device found after re-probe. */ + if (bkn_knet_dev_init(i) < 0) { + return -1; + } + } else { + /* Existed device reinit after re-probe. */ + if (bkn_knet_dev_reinit(i) < 0) { + return -1; + } + } + } + return 0; +} + +/* Assign the inst_id and evt_idx */ +static int +bkn_knet_dev_inst_set(kcom_msg_version_t *kmsg) +{ + bkn_switch_info_t *sinfo; + int d = kmsg->hdr.unit; + uint32 inst = 0; + unsigned long flags; + struct list_head *list; + + sinfo = bkn_sinfo_from_unit(d); + lkbde_dev_instid_get(d, &inst); + + spin_lock_irqsave(&sinfo->lock, flags); + if (sinfo->inst_id != inst) { + /* Instance database changed, reinit the inst_id */ + sinfo->inst_id = 0; + sinfo->evt_idx = -1; + } + spin_unlock_irqrestore(&sinfo->lock, flags); + + if (inst) { + if (sinfo->inst_id == 0){ + if (bkn_create_inst(inst) != 0) { + return -1; + } + } + spin_lock_irqsave(&sinfo->lock, flags); + sinfo->inst_id = inst; + spin_unlock_irqrestore(&sinfo->lock, flags); + } else { + /* legacy mode */ + list_for_each(list, &_sinfo_list) { + sinfo = (bkn_switch_info_t *)list; + spin_lock_irqsave(&sinfo->lock, flags); + sinfo->evt_idx = 0; + sinfo->inst_id = 0; + spin_unlock_irqrestore(&sinfo->lock, flags); + } + } + return 0; +} + +static int +bkn_knet_version(kcom_msg_version_t *kmsg, int len) +{ + /* Support pci hot plug and multiple instance */ + if ((bkn_knet_dev_reprobe() < 0) || + (bkn_knet_dev_inst_set(kmsg) < 0)){ + kmsg->hdr.status = KCOM_E_RESOURCE; + return sizeof(kcom_msg_version_t); + } + + kmsg->hdr.type = KCOM_MSG_TYPE_RSP; + kmsg->version = KCOM_VERSION; + kmsg->netif_max = KCOM_NETIF_MAX; + kmsg->filter_max = KCOM_FILTER_MAX; + + return sizeof(kcom_msg_version_t); +} + +static int +bkn_knet_hw_reset(kcom_msg_hw_reset_t *kmsg, int len) +{ + bkn_switch_info_t *sinfo; + unsigned long flags; + int chan; + + kmsg->hdr.type = KCOM_MSG_TYPE_RSP; + + sinfo = bkn_sinfo_from_unit(kmsg->hdr.unit); + if (sinfo == NULL) { + kmsg->hdr.status = KCOM_E_PARAM; + return sizeof(kcom_msg_hdr_t); + } + + spin_lock_irqsave(&sinfo->lock, flags); + + if (kmsg->channels == 0) { + /* Clean all if no channels specified */ + bkn_dma_abort(sinfo); + bkn_clean_dcbs(sinfo); + } else { + if (kmsg->channels & (1 << XGS_DMA_TX_CHAN)) { + bkn_dma_abort_tx(sinfo); + bkn_clean_tx_dcbs(sinfo); + } + for (chan = 0; chan < NUM_RX_CHAN; chan++) { + if (kmsg->channels & (1 << (XGS_DMA_RX_CHAN + chan))) { + bkn_dma_abort_rx(sinfo, chan); + bkn_clean_rx_dcbs(sinfo, chan); + } + } + } + + spin_unlock_irqrestore(&sinfo->lock, flags); + + return sizeof(kcom_msg_hdr_t); +} + +static int +bkn_knet_hw_init(kcom_msg_hw_init_t *kmsg, int len) +{ + bkn_switch_info_t *sinfo; + unsigned long flags; + + kmsg->hdr.type = KCOM_MSG_TYPE_RSP; + + DBG_DCB(("DCB size %d, type %d\n", kmsg->dcb_size, kmsg->dcb_type)); + + sinfo = bkn_sinfo_from_unit(kmsg->hdr.unit); + if (sinfo == NULL) { + kmsg->hdr.status = KCOM_E_PARAM; + return sizeof(kcom_msg_hdr_t); + } + + spin_lock_irqsave(&sinfo->lock, flags); + + /* Config Continuous DMA mode */ + sinfo->cdma_channels = kmsg->cdma_channels; + + /* First time called we need to allocate DCBs */ + sinfo->dcb_type = kmsg->dcb_type; + sinfo->dcb_wsize = BYTES2WORDS(kmsg->dcb_size); + if (sinfo->dcb_mem == NULL) { + if (bkn_alloc_dcbs(sinfo) < 0) { + kmsg->hdr.status = KCOM_E_RESOURCE; + return sizeof(kcom_msg_hdr_t); + } + bkn_init_dcbs(sinfo); + } + + /* Ensure that we restart properly */ + bkn_dma_abort(sinfo); + bkn_clean_dcbs(sinfo); + + if (basedev_suspend) { + if (!netif_running(sinfo->dev)) { + sinfo->basedev_suspended = 1; + } + } + + bkn_dma_init(sinfo); + + spin_unlock_irqrestore(&sinfo->lock, flags); + + return sizeof(kcom_msg_hdr_t); +} + +static int +bkn_knet_detach(kcom_msg_detach_t *kmsg, int len) +{ + bkn_switch_info_t *sinfo; + unsigned long flags; + bkn_evt_resource_t *evt; + + kmsg->hdr.type = KCOM_MSG_TYPE_RSP; + sinfo = bkn_sinfo_from_unit(kmsg->hdr.unit); + if (sinfo == NULL) { + kmsg->hdr.status = KCOM_E_PARAM; + return sizeof(kcom_msg_hdr_t); + } + + spin_lock_irqsave(&sinfo->lock, flags); + + /* Create dummy event to unblock pending IOCTL */ + sinfo->dma_events |= KCOM_DMA_INFO_F_TX_DONE; + evt = &_bkn_evt[sinfo->evt_idx]; + evt->evt_wq_put++; + wake_up_interruptible(&evt->evt_wq); + + spin_unlock_irqrestore(&sinfo->lock, flags); + + /* Ensure that we return a valid unit number */ + kmsg->hdr.unit = sinfo->dev_no; + + return sizeof(kcom_msg_detach_t); +} + +static int +bkn_knet_netif_create(kcom_msg_netif_create_t *kmsg, int len) +{ + bkn_switch_info_t *sinfo; + struct net_device *dev; + struct list_head *list; + bkn_priv_t *priv, *lpriv; + unsigned long flags; + int found, id; + uint8 *ma; + + kmsg->hdr.type = KCOM_MSG_TYPE_RSP; + + switch (kmsg->netif.type) { + case KCOM_NETIF_T_VLAN: + case KCOM_NETIF_T_PORT: + case KCOM_NETIF_T_META: + break; + default: + kmsg->hdr.status = KCOM_E_PARAM; + return sizeof(kcom_msg_hdr_t); + } + sinfo = bkn_sinfo_from_unit(kmsg->hdr.unit); + if (sinfo == NULL) { + kmsg->hdr.status = KCOM_E_PARAM; + return sizeof(kcom_msg_hdr_t); + } + ma = kmsg->netif.macaddr; + if ((ma[0] | ma[1] | ma[2] | ma[3] | ma[4] | ma[5]) == 0) { + bkn_dev_mac[5]++; + ma = bkn_dev_mac; + } + if ((dev = bkn_init_ndev(ma, kmsg->netif.name)) == NULL) { + kmsg->hdr.status = KCOM_E_RESOURCE; + return sizeof(kcom_msg_hdr_t); + } + priv = netdev_priv(dev); + priv->dev = dev; + priv->sinfo = sinfo; + priv->type = kmsg->netif.type; + priv->vlan = kmsg->netif.vlan; + if (priv->type == KCOM_NETIF_T_PORT) { + priv->port = kmsg->netif.port; + memcpy(priv->itmh, kmsg->netif.itmh, 4); + priv->qnum = kmsg->netif.qnum; + } else { + if ((device_is_dune(sinfo)) && (priv->type == KCOM_NETIF_T_VLAN)) { + /* set port as SSP to PTCH */ + priv->port = kmsg->netif.port; + priv->qnum = kmsg->netif.qnum; + } + else { + priv->port = -1; + } + } + priv->flags = kmsg->netif.flags; + + /* Force RCPU encapsulation if rcpu_mode */ + if (rcpu_mode) { + priv->flags |= KCOM_NETIF_F_RCPU_ENCAP; + DBG_RCPU(("RCPU auto-enabled\n")); + } + + /* Prevent (incorrect) compiler warning */ + lpriv = NULL; + + spin_lock_irqsave(&sinfo->lock, flags); + + /* + * We insert network interfaces sorted by ID. + * In case an interface is destroyed, we reuse the ID + * the next time an interface is created. + */ + found = 0; + id = 1; + list_for_each(list, &sinfo->ndev_list) { + lpriv = (bkn_priv_t *)list; + if (id < lpriv->id) { + found = 1; + break; + } + id = lpriv->id + 1; + } + priv->id = id; + if (found) { + /* Replace previously removed interface */ + list_add_tail(&priv->list, &lpriv->list); + } else { + /* No holes - add to end of list */ + list_add_tail(&priv->list, &sinfo->ndev_list); + } + + if (id < sinfo->ndev_max) { + DBG_NDEV(("Add netif ID %d to table\n", id)); + sinfo->ndevs[id] = dev; + } else { + int ndev_max = sinfo->ndev_max + NDEVS_CHUNK; + int size = ndev_max * sizeof(struct net_device *); + void *ndevs = kmalloc(size, GFP_ATOMIC); + if (ndevs != NULL) { + DBG_NDEV(("Reallocate netif table for ID %d\n", id)); + memset(ndevs, 0, size); + if (sinfo->ndevs != NULL) { + size = sinfo->ndev_max * sizeof(struct net_device *); + memcpy(ndevs, sinfo->ndevs, size); + kfree(sinfo->ndevs); + } + sinfo->ndevs = ndevs; + sinfo->ndev_max = ndev_max; + sinfo->ndevs[id] = dev; + } + } + + spin_unlock_irqrestore(&sinfo->lock, flags); + + DBG_VERB(("Assigned ID %d to Ethernet device %s\n", + priv->id, dev->name)); + + kmsg->netif.id = priv->id; + memcpy(kmsg->netif.macaddr, dev->dev_addr, 6); + memcpy(kmsg->netif.name, dev->name, KCOM_NETIF_NAME_MAX - 1); + + return sizeof(*kmsg); +} + +static int +bkn_knet_netif_destroy(kcom_msg_netif_destroy_t *kmsg, int len) +{ + bkn_switch_info_t *sinfo; + struct net_device *dev; + bkn_priv_t *priv; + struct list_head *list; + unsigned long flags; + int found; + + kmsg->hdr.type = KCOM_MSG_TYPE_RSP; + + sinfo = bkn_sinfo_from_unit(kmsg->hdr.unit); + if (sinfo == NULL) { + kmsg->hdr.status = KCOM_E_PARAM; + return sizeof(kcom_msg_hdr_t); + } + + spin_lock_irqsave(&sinfo->lock, flags); + + found = 0; + list_for_each(list, &sinfo->ndev_list) { + priv = (bkn_priv_t *)list; + if (kmsg->hdr.id == priv->id) { + found = 1; + break; + } + } + + if (!found) { + spin_unlock_irqrestore(&sinfo->lock, flags); + kmsg->hdr.status = KCOM_E_NOT_FOUND; + return sizeof(kcom_msg_hdr_t); + } + + list_del(&priv->list); + + if (priv->id < sinfo->ndev_max) { + sinfo->ndevs[priv->id] = NULL; + } + + spin_unlock_irqrestore(&sinfo->lock, flags); + + dev = priv->dev; + DBG_VERB(("Removing virtual Ethernet device %s (%d).\n", + dev->name, priv->id)); + unregister_netdev(dev); + free_netdev(dev); + + return sizeof(kcom_msg_hdr_t); +} + +static int +bkn_knet_netif_list(kcom_msg_netif_list_t *kmsg, int len) +{ + bkn_switch_info_t *sinfo; + bkn_priv_t *priv; + struct list_head *list; + unsigned long flags; + int idx; + + kmsg->hdr.type = KCOM_MSG_TYPE_RSP; + + sinfo = bkn_sinfo_from_unit(kmsg->hdr.unit); + if (sinfo == NULL) { + kmsg->hdr.status = KCOM_E_PARAM; + return sizeof(kcom_msg_hdr_t); + } + + spin_lock_irqsave(&sinfo->lock, flags); + + idx = 0; + list_for_each(list, &sinfo->ndev_list) { + if (idx >= KCOM_NETIF_MAX) { + DBG_WARN(("Too many network interfaces to list (max %d).\n", + KCOM_NETIF_MAX)); + break; + } + priv = (bkn_priv_t *)list; + kmsg->id[idx] = priv->id; + idx++; + } + kmsg->ifcnt = idx; + + spin_unlock_irqrestore(&sinfo->lock, flags); + + return sizeof(*kmsg) - sizeof(kmsg->id) + (idx * sizeof(kmsg->id[0])); +} + +static int +bkn_knet_netif_get(kcom_msg_netif_get_t *kmsg, int len) +{ + bkn_switch_info_t *sinfo; + bkn_priv_t *priv; + unsigned long flags; + + kmsg->hdr.type = KCOM_MSG_TYPE_RSP; + + sinfo = bkn_sinfo_from_unit(kmsg->hdr.unit); + if (sinfo == NULL) { + kmsg->hdr.status = KCOM_E_PARAM; + return sizeof(kcom_msg_hdr_t); + } + + spin_lock_irqsave(&sinfo->lock, flags); + + priv = bkn_netif_lookup(sinfo, kmsg->hdr.id); + + if (priv == NULL) { + spin_unlock_irqrestore(&sinfo->lock, flags); + kmsg->hdr.status = KCOM_E_NOT_FOUND; + return sizeof(kcom_msg_hdr_t); + } + + memcpy(kmsg->netif.macaddr, priv->dev->dev_addr, 6); + memcpy(kmsg->netif.name, priv->dev->name, KCOM_NETIF_NAME_MAX - 1); + kmsg->netif.vlan = priv->vlan; + kmsg->netif.type = priv->type; + kmsg->netif.id = priv->id; + kmsg->netif.flags = priv->flags; + + if (priv->port < 0) { + kmsg->netif.port = 0; + } else { + kmsg->netif.port = priv->port; + } + kmsg->netif.qnum = priv->qnum; + + spin_unlock_irqrestore(&sinfo->lock, flags); + + return sizeof(*kmsg); +} + +static int +bkn_knet_filter_create(kcom_msg_filter_create_t *kmsg, int len) +{ + bkn_switch_info_t *sinfo; + struct list_head *list; + bkn_filter_t *filter, *lfilter; + unsigned long flags; + int found, id; + + kmsg->hdr.type = KCOM_MSG_TYPE_RSP; + + sinfo = bkn_sinfo_from_unit(kmsg->hdr.unit); + if (sinfo == NULL) { + kmsg->hdr.status = KCOM_E_PARAM; + return sizeof(kcom_msg_hdr_t); + } + + switch (kmsg->filter.type) { + case KCOM_FILTER_T_RX_PKT: + break; + default: + kmsg->hdr.status = KCOM_E_PARAM; + return sizeof(kcom_msg_hdr_t); + } + + spin_lock_irqsave(&sinfo->lock, flags); + + /* + * Find available ID + */ + found = 1; + id = 0; + while (found && ++id < KCOM_FILTER_MAX) { + found = 0; + list_for_each(list, &sinfo->rxpf_list) { + lfilter = (bkn_filter_t *)list; + if (id == lfilter->kf.id) { + found = 1; + break; + } + } + } + if (found) { + /* Too many filters */ + spin_unlock_irqrestore(&sinfo->lock, flags); + kmsg->hdr.status = KCOM_E_RESOURCE; + return sizeof(kcom_msg_hdr_t); + } + + filter = kmalloc(sizeof(*filter), GFP_ATOMIC); + if (filter == NULL) { + spin_unlock_irqrestore(&sinfo->lock, flags); + kmsg->hdr.status = KCOM_E_PARAM; + return sizeof(kcom_msg_hdr_t); + } + memset(filter, 0, sizeof(*filter)); + memcpy(&filter->kf, &kmsg->filter, sizeof(filter->kf)); + filter->kf.id = id; + + /* Add according to priority */ + found = 0; + list_for_each(list, &sinfo->rxpf_list) { + lfilter = (bkn_filter_t *)list; + if (filter->kf.priority < lfilter->kf.priority) { + list_add_tail(&filter->list, &lfilter->list); + found = 1; + break; + } + } + if (!found) { + list_add_tail(&filter->list, &sinfo->rxpf_list); + } + + kmsg->filter.id = filter->kf.id; + + spin_unlock_irqrestore(&sinfo->lock, flags); + + DBG_VERB(("Created filter ID %d (%s).\n", + filter->kf.id, filter->kf.desc)); + + return len; +} + +static int +bkn_knet_filter_destroy(kcom_msg_filter_destroy_t *kmsg, int len) +{ + bkn_switch_info_t *sinfo; + bkn_filter_t *filter; + struct list_head *list; + unsigned long flags; + int found; + + kmsg->hdr.type = KCOM_MSG_TYPE_RSP; + + sinfo = bkn_sinfo_from_unit(kmsg->hdr.unit); + if (sinfo == NULL) { + kmsg->hdr.status = KCOM_E_PARAM; + return sizeof(kcom_msg_hdr_t); + } + + spin_lock_irqsave(&sinfo->lock, flags); + + found = 0; + list_for_each(list, &sinfo->rxpf_list) { + filter = (bkn_filter_t *)list; + if (kmsg->hdr.id == filter->kf.id) { + found = 1; + break; + } + } + + if (!found) { + spin_unlock_irqrestore(&sinfo->lock, flags); + kmsg->hdr.status = KCOM_E_NOT_FOUND; + return sizeof(kcom_msg_hdr_t); + } + + list_del(&filter->list); + + spin_unlock_irqrestore(&sinfo->lock, flags); + + DBG_VERB(("Removing filter ID %d.\n", filter->kf.id)); + kfree(filter); + + return sizeof(kcom_msg_hdr_t); +} + +static int +bkn_knet_filter_list(kcom_msg_filter_list_t *kmsg, int len) +{ + bkn_switch_info_t *sinfo; + bkn_filter_t *filter; + struct list_head *list; + unsigned long flags; + int idx; + + kmsg->hdr.type = KCOM_MSG_TYPE_RSP; + + sinfo = bkn_sinfo_from_unit(kmsg->hdr.unit); + if (sinfo == NULL) { + kmsg->hdr.status = KCOM_E_PARAM; + return sizeof(kcom_msg_hdr_t); + } + + spin_lock_irqsave(&sinfo->lock, flags); + + idx = 0; + list_for_each(list, &sinfo->rxpf_list) { + if (idx >= KCOM_FILTER_MAX) { + DBG_WARN(("Too many filters to list (max %d).\n", + KCOM_FILTER_MAX)); + break; + } + filter = (bkn_filter_t *)list; + kmsg->id[idx] = filter->kf.id; + idx++; + } + kmsg->fcnt = idx; + + spin_unlock_irqrestore(&sinfo->lock, flags); + + return sizeof(*kmsg) - sizeof(kmsg->id) + (idx * sizeof(kmsg->id[0])); +} + +static int +bkn_knet_filter_get(kcom_msg_filter_get_t *kmsg, int len) +{ + bkn_switch_info_t *sinfo; + bkn_filter_t *filter; + struct list_head *list; + unsigned long flags; + int found; + + kmsg->hdr.type = KCOM_MSG_TYPE_RSP; + + sinfo = bkn_sinfo_from_unit(kmsg->hdr.unit); + if (sinfo == NULL) { + kmsg->hdr.status = KCOM_E_PARAM; + return sizeof(kcom_msg_hdr_t); + } + + spin_lock_irqsave(&sinfo->lock, flags); + + found = 0; + list_for_each(list, &sinfo->rxpf_list) { + filter = (bkn_filter_t *)list; + if (kmsg->hdr.id == filter->kf.id) { + found = 1; + break; + } + } + + if (!found) { + spin_unlock_irqrestore(&sinfo->lock, flags); + kmsg->hdr.status = KCOM_E_NOT_FOUND; + return sizeof(kcom_msg_hdr_t); + } + + memcpy(&kmsg->filter, &filter->kf, sizeof(kmsg->filter)); + + spin_unlock_irqrestore(&sinfo->lock, flags); + + return sizeof(*kmsg); +} + +static int +bkn_knet_dbg_pkt_set(kcom_msg_dbg_pkt_set_t *kmsg, int len) +{ + dbg_pkt_enable = kmsg->enable; + return sizeof(kcom_msg_dbg_pkt_set_t); +} + +static int +bkn_knet_dbg_pkt_get(kcom_msg_dbg_pkt_get_t *kmsg, int len) +{ + kmsg->value = dbg_pkt_enable; + return sizeof(kcom_msg_dbg_pkt_get_t); +} + +static int +bkn_handle_cmd_req(kcom_msg_t *kmsg, int len) +{ + /* Silently drop events and unrecognized message types */ + if (kmsg->hdr.type != KCOM_MSG_TYPE_CMD) { + if (kmsg->hdr.opcode == KCOM_M_STRING) { + DBG_VERB(("Debug string: '%s'\n", kmsg->string.val)); + return 0; + } + DBG_WARN(("Unsupported message (type=%d, opcode=%d)\n", + kmsg->hdr.type, kmsg->hdr.opcode)); + return 0; + } + + switch (kmsg->hdr.opcode) { + case KCOM_M_DMA_INFO: + DBG_CMD(("KCOM_M_DMA_INFO\n")); + /* Packet buffer */ + len = bkn_knet_dma_info(&kmsg->dma_info, len); + break; + case KCOM_M_VERSION: + DBG_CMD(("KCOM_M_VERSION\n")); + /* Return procotol version */ + len = bkn_knet_version(&kmsg->version, len); + break; + case KCOM_M_HW_RESET: + DBG_CMD(("KCOM_M_HW_RESET\n")); + /* Shut down DMA and release buffers */ + len = bkn_knet_hw_reset(&kmsg->hw_reset, len); + break; + case KCOM_M_HW_INIT: + DBG_CMD(("KCOM_M_HW_INIT\n")); + /* Initialize DMA */ + len = bkn_knet_hw_init(&kmsg->hw_init, len); + break; + case KCOM_M_DETACH: + DBG_CMD(("KCOM_M_DETACH\n")); + /* Detach kernel module */ + len = bkn_knet_detach(&kmsg->detach, len); + break; + case KCOM_M_NETIF_CREATE: + DBG_CMD(("KCOM_M_NETIF_CREATE\n")); + /* Create network interface */ + len = bkn_knet_netif_create(&kmsg->netif_create, len); + break; + case KCOM_M_NETIF_DESTROY: + DBG_CMD(("KCOM_M_NETIF_DESTROY\n")); + /* Destroy network interface */ + len = bkn_knet_netif_destroy(&kmsg->netif_destroy, len); + break; + case KCOM_M_NETIF_LIST: + DBG_CMD(("KCOM_M_NETIF_LIST\n")); + /* Return list of IDs of installed network interfaces */ + len = bkn_knet_netif_list(&kmsg->netif_list, len); + break; + case KCOM_M_NETIF_GET: + DBG_CMD(("KCOM_M_NETIF_GET\n")); + /* Return network interface info */ + len = bkn_knet_netif_get(&kmsg->netif_get, len); + break; + case KCOM_M_FILTER_CREATE: + DBG_CMD(("KCOM_M_FILTER_CREATE\n")); + /* Create packet filter */ + len = bkn_knet_filter_create(&kmsg->filter_create, len); + break; + case KCOM_M_FILTER_DESTROY: + DBG_CMD(("KCOM_M_FILTER_DESTROY\n")); + /* Destroy packet filter */ + len = bkn_knet_filter_destroy(&kmsg->filter_destroy, len); + break; + case KCOM_M_FILTER_LIST: + DBG_CMD(("KCOM_M_FILTER_LIST\n")); + /* Return list of IDs of installed packet filters */ + len = bkn_knet_filter_list(&kmsg->filter_list, len); + break; + case KCOM_M_FILTER_GET: + DBG_CMD(("KCOM_M_FILTER_GET\n")); + /* Return packet filter info */ + len = bkn_knet_filter_get(&kmsg->filter_get, len); + break; + case KCOM_M_DBGPKT_SET: + DBG_CMD(("KCOM_M_DBGPKT_SET\n")); + /* Set debugging packet function */ + len = bkn_knet_dbg_pkt_set(&kmsg->dbg_pkt_set, len); + break; + case KCOM_M_DBGPKT_GET: + DBG_CMD(("KCOM_M_DBGPKT_GET\n")); + /* Get debugging packet function info */ + len = bkn_knet_dbg_pkt_get(&kmsg->dbg_pkt_get, len); + break; + default: + DBG_WARN(("Unsupported command (type=%d, opcode=%d)\n", + kmsg->hdr.type, kmsg->hdr.opcode)); + kmsg->hdr.opcode = 0; + len = sizeof(kcom_msg_hdr_t); + break; + } + return len; +} + +static int +bkn_cmd_thread(void *context) +{ + bkn_thread_ctrl_t *tc = (bkn_thread_ctrl_t *)context; + kcom_msg_t kmsg; + unsigned int len, rlen; + + bkn_thread_boot(tc); + + DBG_VERB(("Command thread starting\n")); + tc->state = 1; + while (!bkn_thread_should_stop(tc)) { + len = sizeof(kmsg); + tc->state = 2; + if (PROXY_RECV(KCOM_CHAN_KNET, &kmsg, &len) >= 0) { + DBG_VERB(("Received %d bytes from KCOM_CHAN_CMD\n", len)); + tc->state = 3; + rlen = bkn_handle_cmd_req(&kmsg, len); + tc->state = 4; + if (rlen > 0) { + PROXY_SEND(KCOM_CHAN_KNET, &kmsg, rlen); + } + } else { + /* Thread interrupted */ + bkn_sleep(1); + } + } + DBG_VERB(("Command thread done\n")); + + bkn_thread_exit(tc); + return 0; +} + +static int +bkn_get_next_dma_event(kcom_msg_dma_info_t *kmsg) +{ + static int last_dev_no = 0; + bkn_switch_info_t *sinfo; + unsigned long flags; + int dev_no, dev_evt; + bkn_evt_resource_t *evt; + + dev_evt = kmsg->hdr.unit; + sinfo = bkn_sinfo_from_unit(dev_evt); + if (sinfo == NULL) { + /* The device is not probed or initialized yet.*/ + return 0; + } + if (sinfo->evt_idx == -1) { + /* Event queue is not ready yet */ + return 0; + } + + DBG_INST(("%s dev %d evt_idx %d\n",__FUNCTION__, dev_evt, sinfo->evt_idx)); + evt = &_bkn_evt[sinfo->evt_idx]; + dev_no = last_dev_no = dev_evt; + while (1) { + dev_no++; + sinfo = bkn_sinfo_from_unit(dev_no); + if (sinfo == NULL) { + dev_no = 0; + sinfo = bkn_sinfo_from_unit(dev_no); + } + + if (sinfo && (sinfo->inst_id != 0) && + ((sinfo->inst_id & (1 << dev_evt)) == 0)) { + DBG_INST((" %s skip dev(%d)\n",__FUNCTION__,dev_evt)); + continue; + } + + if (sinfo && sinfo->dma_events) { + DBG_EVT(("Next DMA events (0x%08x)\n", sinfo->dma_events)); + kmsg->hdr.unit = sinfo->dev_no; + + spin_lock_irqsave(&sinfo->lock, flags); + kmsg->dma_info.flags = sinfo->dma_events; + sinfo->dma_events = 0; + spin_unlock_irqrestore(&sinfo->lock, flags); + + last_dev_no = dev_no; + break; + } + + if (dev_no == last_dev_no) { + DBG_INST(("wait queue index %d\n",sinfo->evt_idx)); + wait_event_interruptible(evt->evt_wq, + evt->evt_wq_get != evt->evt_wq_put); + DBG_VERB(("Event thread wakeup\n")); + + /* Thread interrupted */ + if (signal_pending(current)) { + return 0; + } + + evt->evt_wq_get = evt->evt_wq_put; + } + } + return sizeof(*kmsg); +} + +static int +bkn_evt_thread(void *context) +{ + bkn_thread_ctrl_t *tc = (bkn_thread_ctrl_t *)context; + kcom_msg_dma_info_t kmsg; + int len; + + bkn_thread_boot(tc); + + memset(&kmsg, 0, sizeof(kmsg)); + kmsg.hdr.type = KCOM_MSG_TYPE_EVT; + kmsg.hdr.opcode = KCOM_M_DMA_INFO; + + DBG_VERB(("Event thread starting\n")); + tc->state = 1; + while (!bkn_thread_should_stop(tc)) { + tc->state = 2; + len = bkn_get_next_dma_event(&kmsg); + tc->state = 3; + if (len) { + PROXY_SEND(KCOM_CHAN_KNET, &kmsg, len); + } else { + /* Thread interrupted */ + bkn_sleep(1); + } + } + DBG_VERB(("Event thread done\n")); + + bkn_thread_exit(tc); + return 0; +} + +static int +_cleanup(void) +{ + struct list_head *list; + struct net_device *dev; + bkn_filter_t *filter; + bkn_priv_t *priv; + bkn_switch_info_t *sinfo; + unsigned long flags; + + /* Inidicate that we are shutting down */ + module_initialized = 0; + + /* Shut down event thread */ + bkn_thread_stop(&bkn_evt_ctrl); + + /* Shut down command thread */ + bkn_thread_stop(&bkn_cmd_ctrl); + + /* Remove KCOM channel */ + PROXY_SERVICE_DESTROY(KCOM_CHAN_KNET); + + bkn_proc_cleanup(); + remove_proc_entry("bcm/knet", NULL); + remove_proc_entry("bcm", NULL); + + list_for_each(list, &_sinfo_list) { + sinfo = (bkn_switch_info_t *)list; + + del_timer_sync(&sinfo->timer); + del_timer_sync(&sinfo->rxtick); + + spin_lock_irqsave(&sinfo->lock, flags); + bkn_dma_abort(sinfo); + dev_irq_mask_set(sinfo, 0); + spin_unlock_irqrestore(&sinfo->lock, flags); + + DBG_IRQ(("Unregister ISR.\n")); + kernel_bde->interrupt_disconnect(sinfo->dev_no | LKBDE_ISR2_DEV); + + if (use_napi) { + while (sinfo->napi_poll_mode) { + bkn_sleep(1); + } + } + + spin_lock_irqsave(&sinfo->lock, flags); + bkn_clean_dcbs(sinfo); + spin_unlock_irqrestore(&sinfo->lock, flags); + } + + /* Destroy all switch devices */ + while (!list_empty(&_sinfo_list)) { + sinfo = list_entry(_sinfo_list.next, bkn_switch_info_t, list); + + /* Destroy all associated Rx packet filters */ + while (!list_empty(&sinfo->rxpf_list)) { + filter = list_entry(sinfo->rxpf_list.next, bkn_filter_t, list); + list_del(&filter->list); + DBG_VERB(("Removing filter ID %d.\n", filter->kf.id)); + kfree(filter); + } + + /* Destroy all associated virtual net devices */ + while (!list_empty(&sinfo->ndev_list)) { + priv = list_entry(sinfo->ndev_list.next, bkn_priv_t, list); + list_del(&priv->list); + dev = priv->dev; + DBG_VERB(("Removing virtual Ethernet device %s.\n", dev->name)); + unregister_netdev(dev); + free_netdev(dev); + } + if (sinfo->ndevs != NULL) { + kfree(sinfo->ndevs); + } + + /* Destroy base net device */ + if (sinfo->dev) { + DBG_VERB(("Removing Ethernet device %s.\n", sinfo->dev->name)); + unregister_netdev(sinfo->dev); + free_netdev(sinfo->dev); + } + + DBG_VERB(("Removing switch device.\n")); + bkn_destroy_sinfo(sinfo); + } + + return 0; +} + +static int +bkn_knet_dev_reinit(int d) +{ + bkn_switch_info_t *sinfo; + uint32 dev_state; + uint32_t dev_type; + unsigned long flags; + + if (lkbde_dev_state_get(d, &dev_state) < 0) { + return -1; + } + DBG_VERB(("%s dev %d dev_state %d\n",__FUNCTION__, d, dev_state)); + if (dev_state == BDE_DEV_STATE_CHANGED) { + sinfo = bkn_sinfo_from_unit(d); + spin_lock_irqsave(&sinfo->lock, flags); + sinfo->base_addr = lkbde_get_dev_virt(d); + sinfo->dma_dev = lkbde_get_dma_dev(d); + sinfo->pdev = lkbde_get_hw_dev(d); + + dev_type = kernel_bde->get_dev_type(d); + /* Ensure 32-bit PCI DMA is mapped properly on 64-bit platforms */ + if (dev_type & BDE_PCI_DEV_TYPE) { + if (pci_set_dma_mask(sinfo->pdev, 0xffffffff)) { + gprintk("No suitable DMA available for SKBs\n"); + _cleanup(); + return -1; + } + } + dev_irq_mask_set(sinfo, 0); + spin_unlock_irqrestore(&sinfo->lock, flags); + + gprintk("Unregister ISR.\n"); + kernel_bde->interrupt_disconnect(sinfo->dev_no | LKBDE_ISR2_DEV); + + /* Register interrupt handler */ + kernel_bde->interrupt_connect(sinfo->dev_no | LKBDE_ISR2_DEV, + bkn_isr, sinfo); + + dev_state = 0; + lkbde_dev_state_set(d, dev_state); + } + return 0; +} + +static int +bkn_knet_dev_init(int d) +{ + uint32_t dev_type; + struct net_device *dev; + bkn_switch_info_t *sinfo; + bkn_priv_t *priv; + char *bdev_name; + const ibde_dev_t *bde_dev; + + DBG_VERB(("%s dev %d\n",__FUNCTION__, d)); + /* Base network device name */ + bdev_name = "bcm%d"; + if (base_dev_name) { + if (strlen(base_dev_name) < IFNAMSIZ) { + bdev_name = base_dev_name; + } else { + DBG_WARN(("Base device name too long\n")); + } + } + + dev_type = kernel_bde->get_dev_type(d); + DBG_VERB(("Found device type 0x%x\n", dev_type)); + if ((dev_type & BDE_SWITCH_DEV_TYPE) == 0) { + DBG_WARN(("Not switch device - skipping\n")); + return 0; + } + switch (dev_type & BDE_DEV_BUS_TYPE_MASK) { + case BDE_PCI_DEV_TYPE: + case BDE_ICS_DEV_TYPE: + case BDE_AXI_DEV_TYPE: + break; + default: + DBG_WARN(("Not PCI/ICS/AXI device - skipping\n")); + return 0; + } + + if ((sinfo = bkn_create_sinfo(d)) == NULL) { + _cleanup(); + return -ENOMEM; + } + /* Ensure 32-bit PCI DMA is mapped properly on 64-bit platforms */ + if (dev_type & BDE_PCI_DEV_TYPE) { + if (pci_set_dma_mask(sinfo->pdev, 0xffffffff)) { + gprintk("No suitable DMA available for SKBs\n"); + _cleanup(); + return -EIO; + } + } + /* Initialize the cpu_no.*/ + if (dev_type & BDE_AXI_DEV_TYPE) { + /* AXI device type implies the activated iProc iHost */ + sinfo->cpu_no = 1; + } + /* Initialize default RCPU signature */ + if ((bde_dev = kernel_bde->get_dev(d)) != NULL) { + sinfo->rcpu_sig = bde_dev->device & ~0xf; + } + /* Check for override */ + if (rcpu_signature) { + sinfo->rcpu_sig = rcpu_signature; + } + + /* Ensure all interrupts are disabled, e.g. if warmbooting */ + dev_irq_mask_set(sinfo, 0); + + /* Register interrupt handler */ + kernel_bde->interrupt_connect(sinfo->dev_no | LKBDE_ISR2_DEV, + bkn_isr, sinfo); + + /* Create base virtual net device */ + bkn_dev_mac[5]++; + if ((dev = bkn_init_ndev(bkn_dev_mac, bdev_name)) == NULL) { + _cleanup(); + return -ENOMEM; + } else { + sinfo->dev = dev; + priv = netdev_priv(dev); + priv->dev = dev; + priv->sinfo = sinfo; + priv->vlan = 1; + priv->port = -1; + memset(priv->itmh, 0, sizeof(priv->itmh)); + priv->id = -1; + } + + if (use_napi) { + netif_napi_add(dev, &sinfo->napi, bkn_poll, napi_weight); + } + return 0; +} + +static int +_init(void) +{ + int idx; + int num_dev; + int rv; + bkn_evt_resource_t *evt; + + /* Connect to the kernel bde */ + if ((linux_bde_create(NULL, &kernel_bde) < 0) || kernel_bde == NULL) { + return -ENODEV; + } + + /* Randomize Lower 3 bytes of the MAC address (TESTING ONLY) */ + get_random_bytes(&bkn_dev_mac[3], 3); + + /* Check for user-supplied MAC address (recommended) */ + if (mac_addr != NULL && strlen(mac_addr) == 17) { + for (idx = 0; idx < 6; idx++) { + bkn_dev_mac[idx] = simple_strtoul(&mac_addr[idx*3], NULL, 16); + } + /* Do not allow multicast address */ + bkn_dev_mac[0] &= ~0x01; + } + + /* Optional RCPU MAC addresses */ + if (rcpu_dmac != NULL && strlen(rcpu_dmac) == 17) { + for (idx = 0; idx < 6; idx++) { + bkn_rcpu_dmac[idx] = simple_strtoul(&rcpu_dmac[idx*3], NULL, 16); + } + } + if (rcpu_smac != NULL && strlen(rcpu_smac) == 17) { + for (idx = 0; idx < 6; idx++) { + bkn_rcpu_smac[idx] = simple_strtoul(&rcpu_smac[idx*3], NULL, 16); + } + } + + /* NAPI implies that base device must be up before we can pass traffic */ + if (use_napi) { + basedev_suspend = 1; + } + + num_dev = kernel_bde->num_devices(BDE_ALL_DEVICES); + for (idx = 0; idx < num_dev; idx++) { + rv = bkn_knet_dev_init(idx); + if (rv) { + return rv; + } + } + + /* Initialize proc files */ + proc_mkdir("bcm", NULL); + bkn_proc_root = proc_mkdir("bcm/knet", NULL); + + bkn_proc_init(); + + /* Initialize event queue */ + for (idx = 0; idx < LINUX_BDE_MAX_DEVICES; idx++) { + memset(&_bkn_evt[idx], 0, sizeof(bkn_evt_resource_t)); + } + evt = &_bkn_evt[0]; + init_waitqueue_head(&evt->evt_wq); + + if (use_proxy) { + PROXY_SERVICE_CREATE(KCOM_CHAN_KNET, 1, 0); + + DBG_VERB(("Starting command thread\n")); + bkn_thread_start(&bkn_cmd_ctrl, "bkncmd", bkn_cmd_thread); + + DBG_VERB(("Starting event thread\n")); + bkn_thread_start(&bkn_evt_ctrl, "bknevt", bkn_evt_thread); + } + + module_initialized = 1; + + return 0; +} + +static int +_ioctl(unsigned int cmd, unsigned long arg) +{ + bkn_ioctl_t io; + kcom_msg_t kmsg; + + if (!module_initialized) { + return -EFAULT; + } + + if (copy_from_user(&io, (void*)arg, sizeof(io))) { + return -EFAULT; + } + + if (io.len > sizeof(kmsg)) { + return -EINVAL; + } + + io.rc = 0; + + switch(cmd) { + case 0: + if (io.len > 0) { + if (copy_from_user(&kmsg, (void *)(unsigned long)io.buf, io.len)) { + return -EFAULT; + } + ioctl_cmd++; + io.len = bkn_handle_cmd_req(&kmsg, io.len); + ioctl_cmd--; + } else { + memset(&kmsg, 0, sizeof(kcom_msg_dma_info_t)); + /* + * Retrive the kmsg.hdr.unit from user space. The dma event queue + * selection is based the instance derived from unit. + */ + if (copy_from_user(&kmsg, (void *)(unsigned long)io.buf, sizeof(kmsg))) { + return -EFAULT; + } + kmsg.hdr.type = KCOM_MSG_TYPE_EVT; + kmsg.hdr.opcode = KCOM_M_DMA_INFO; + ioctl_evt++; + io.len = bkn_get_next_dma_event((kcom_msg_dma_info_t *)&kmsg); + ioctl_evt--; + } + if (io.len > 0) { + if (copy_to_user((void *)(unsigned long)io.buf, &kmsg, io.len)) { + return -EFAULT; + } + } + break; + default: + gprintk("Invalid IOCTL"); + io.rc = -1; + break; + } + + if (copy_to_user((void*)arg, &io, sizeof(io))) { + return -EFAULT; + } + + return 0; +} + +static gmodule_t _gmodule = { + name: MODULE_NAME, + major: MODULE_MAJOR, + init: _init, + cleanup: _cleanup, + pprint: _pprint, + ioctl: _ioctl, + open: NULL, + close: NULL, +}; + +gmodule_t* +gmodule_get(void) +{ + EXPORT_NO_SYMBOLS; + return &_gmodule; +} + +/* + * Call-back interfaces for other Linux kernel drivers. + * + * The Rx call-back allows an external module to modify SKB contents + * before it is handed off to the Linux network stack. + * + * The Tx call-back allows an external module to modify SKB contents + * before it is injected inot the switch. + */ + +int +bkn_rx_skb_cb_register(knet_skb_cb_f rx_cb) +{ + if (knet_rx_cb != NULL) { + return -1; + } + knet_rx_cb = rx_cb; + return 0; +} + +int +bkn_rx_skb_cb_unregister(knet_skb_cb_f rx_cb) +{ + if (rx_cb != NULL && knet_rx_cb != rx_cb) { + return -1; + } + knet_rx_cb = NULL; + return 0; +} + +int +bkn_tx_skb_cb_register(knet_skb_cb_f tx_cb) +{ + if (knet_tx_cb != NULL) { + return -1; + } + knet_tx_cb = tx_cb; + return 0; +} + +int +bkn_tx_skb_cb_unregister(knet_skb_cb_f tx_cb) +{ + if (tx_cb != NULL && knet_tx_cb != tx_cb) { + return -1; + } + knet_tx_cb = NULL; + return 0; +} + +int +bkn_filter_cb_register(knet_filter_cb_f filter_cb) +{ + if (knet_filter_cb != NULL) { + return -1; + } + knet_filter_cb = filter_cb; + return 0; +} + +int +bkn_filter_cb_unregister(knet_filter_cb_f filter_cb) +{ + if (filter_cb != NULL && knet_filter_cb != filter_cb) { + return -1; + } + knet_filter_cb = NULL; + return 0; +} + +LKM_EXPORT_SYM(bkn_rx_skb_cb_register); +LKM_EXPORT_SYM(bkn_rx_skb_cb_unregister); +LKM_EXPORT_SYM(bkn_tx_skb_cb_register); +LKM_EXPORT_SYM(bkn_tx_skb_cb_unregister); +LKM_EXPORT_SYM(bkn_filter_cb_register); +LKM_EXPORT_SYM(bkn_filter_cb_unregister); only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/kernel/modules/include/bcm-knet.h +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/kernel/modules/include/bcm-knet.h @@ -0,0 +1,71 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: bcm-knet.h,v 1.4 Broadcom SDK $ + * $Copyright: (c) 2005 Broadcom Corp. + * All Rights Reserved.$ + */ +#ifndef __LINUX_BCM_KNET_H__ +#define __LINUX_BCM_KNET_H__ + +#ifndef __KERNEL__ +#include +#endif + +typedef struct { + int rc; + int len; + int bufsz; + int reserved; + uint64_t buf; +} bkn_ioctl_t; + +#ifdef __KERNEL__ + +/* + * Call-back interfaces for other Linux kernel drivers. + */ +#include + +typedef struct sk_buff * +(*knet_skb_cb_f)(struct sk_buff *skb, int dev_no, void *meta); + +typedef int +(*knet_filter_cb_f)(uint8_t *pkt, int size, int dev_no, void *meta, + int chan, kcom_filter_t *filter); + +extern int +bkn_rx_skb_cb_register(knet_skb_cb_f rx_cb); + +extern int +bkn_rx_skb_cb_unregister(knet_skb_cb_f rx_cb); + +extern int +bkn_tx_skb_cb_register(knet_skb_cb_f tx_cb); + +extern int +bkn_tx_skb_cb_unregister(knet_skb_cb_f tx_cb); + +extern int +bkn_filter_cb_register(knet_filter_cb_f filter_cb); + +extern int +bkn_filter_cb_unregister(knet_filter_cb_f filter_cb); + +#endif + +#endif /* __LINUX_BCM_KNET_H__ */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/kernel/modules/include/gmodule.h +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/kernel/modules/include/gmodule.h @@ -0,0 +1,66 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: gmodule.h,v 1.9 Broadcom SDK $ + * $Copyright: (c) 2005 Broadcom Corp. + * All Rights Reserved.$ + */ + +#ifndef __COMMON_LINUX_KRN_GMODULE_H__ +#define __COMMON_LINUX_KRN_GMODULE_H__ + +#include + +typedef struct gmodule_s { + + const char* name; + int major; + int minor; + + int (*init)(void); + int (*cleanup)(void); + + int (*pprint)(void); + + int (*open)(void); + int (*ioctl)(unsigned int cmd, unsigned long arg); + int (*close)(void); + int (*mmap) (struct file *filp, struct vm_area_struct *vma); + +} gmodule_t; + + +/* The framework will ask for your module definition */ +extern gmodule_t* gmodule_get(void); + + +/* Proc Filesystem information */ +extern int pprintf(const char* fmt, ...) + __attribute__ ((format (printf, 1, 2))); +extern int gmodule_vpprintf(char** page, const char* fmt, va_list args) + __attribute__ ((format (printf, 2, 0))); +extern int gmodule_pprintf(char** page, const char* fmt, ...) + __attribute__ ((format (printf, 2, 3))); + +extern int gprintk(const char* fmt, ...) + __attribute__ ((format (printf, 1, 2))); + +extern int gdbg(const char* fmt, ...) + __attribute__ ((format (printf, 1, 2))); +#define GDBG gdbg + +#endif /* __COMMON_LINUX_KRN_GMODULE_H__ */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/kernel/modules/include/lkm.h +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/kernel/modules/include/lkm.h @@ -0,0 +1,180 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: lkm.h,v 1.22 Broadcom SDK $ + * $Copyright: (c) 2005 Broadcom Corp. + * All Rights Reserved.$ + */ + +#ifndef __COMMON_LINUX_KRN_LKM_H__ +#define __COMMON_LINUX_KRN_LKM_H__ + +#ifndef __KERNEL__ +# define __KERNEL__ +#endif +#ifndef MODULE +# define MODULE +#endif + +#include +#include +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0) +#include +#endif +#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,1,0) +#include +#endif +#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,10,0) +#include +#endif +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,39) +#include +#endif +#include + +/* Helper defines for multi-version kernel support */ +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0) +#define LKM_2_4 +#else +#define LKM_2_6 +#endif + +#include /* printk() */ +#include /* everything... */ +#include /* error codes */ +#include /* size_t */ +#include +#include /* O_ACCMODE */ +#include +#include +#include +#include +#include + +#include +#include +#include + +#ifdef CONFIG_DEVFS_FS +#include +#endif + +#define PROC_INTERFACE_KERN_VER_3_10 (LINUX_VERSION_CODE >= KERNEL_VERSION(3,10,0)) + +/* Compatibility Macros */ + +#ifdef LKM_2_4 + +#include +#include +#define LKM_MOD_PARAM(n,ot,nt,d) MODULE_PARM(n,ot) +#define LKM_MOD_PARAM_ARRAY(n,ot,nt,c,d) MODULE_PARM(n,ot) +#define LKM_EXPORT_SYM(s) +#define _free_netdev kfree + +#else /* LKM_2_6 */ + +#define LKM_MOD_PARAM(n,ot,nt,d) module_param(n,nt,d) +#define LKM_MOD_PARAM_ARRAY(n,ot,nt,c,d) module_param_array(n,nt,c,d) +#define LKM_EXPORT_SYM(s) EXPORT_SYMBOL(s) +#define _free_netdev free_netdev + +#endif /* LKM_2_x */ + +#ifndef list_for_each_safe +#define list_for_each_safe(l,t,i) t = 0; list_for_each((l),(i)) +#endif + +#ifndef reparent_to_init +#define reparent_to_init() +#endif + +#ifndef MODULE_LICENSE +#define MODULE_LICENSE(str) +#endif + +#ifndef EXPORT_NO_SYMBOLS +#define EXPORT_NO_SYMBOLS +#endif + +#ifndef DEFINE_SPINLOCK +#define DEFINE_SPINLOCK(_lock) spinlock_t _lock = SPIN_LOCK_UNLOCKED +#endif + +#ifndef __SPIN_LOCK_UNLOCKED +#define __SPIN_LOCK_UNLOCKED(_lock) SPIN_LOCK_UNLOCKED +#endif + +#ifndef lock_kernel +#ifdef preempt_disable +#define lock_kernel() preempt_disable() +#else +#define lock_kernel() +#endif +#endif + +#ifndef unlock_kernel +#ifdef preempt_enable +#define unlock_kernel() preempt_enable() +#else +#define unlock_kernel() +#endif +#endif + +#ifndef init_MUTEX_LOCKED +#define init_MUTEX_LOCKED(_sem) sema_init(_sem, 0) +#endif + +#ifdef CONFIG_BCM98245 +#define CONFIG_BMW +#endif + +#if PROC_INTERFACE_KERN_VER_3_10 +#define PROC_CREATE(_entry, _name, _acc, _path, _fops) \ + do { \ + _entry = proc_create(_name, _acc, _path, _fops); \ + } while (0) + +#define PROC_CREATE_DATA(_entry, _name, _acc, _path, _fops, _data) \ + do { \ + _entry = proc_create_data(_name, _acc, _path, _fops, _data); \ + } while (0) + +#define PROC_PDE_DATA(_node) PDE_DATA(_node) + +#else +#define PROC_CREATE(_entry, _name, _acc, _path, _fops) \ + do { \ + _entry = create_proc_entry(_name, _acc, _path); \ + if (_entry) { \ + _entry->proc_fops = _fops; \ + } \ + } while (0) + +#define PROC_CREATE_DATA(_entry, _name, _acc, _path, _fops, _data) \ + do { \ + _entry = create_proc_entry(_name, _acc, _path); \ + if (_entry) { \ + _entry->proc_fops = _fops; \ + _entry->data=_data; \ + } \ + } while (0) + +#define PROC_PDE_DATA(_node) PROC_I(_node)->pde->data +#endif + +#endif /* __COMMON_LINUX_KRN_LKM_H__ */ only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/kernel/modules/shared/Makefile +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/kernel/modules/shared/Makefile @@ -0,0 +1,30 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# -*- Makefile -*- +# $Id: Makefile,v 1.2 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ +# +LOCALDIR = systems/linux/kernel/modules/shared + +include ${SDK}/make/Make.config + +lib = libkern + +include ${SDK}/make/Make.kernlib + +include ${SDK}/make/Make.depend only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/kernel/modules/shared/gmodule.c +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/kernel/modules/shared/gmodule.c @@ -0,0 +1,428 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: gmodule.c,v 1.20 Broadcom SDK $ + * $Copyright: (c) 2005 Broadcom Corp. + * All Rights Reserved.$ + * + * Generic Linux Module Framework + * + * Hooks up your driver to the kernel + */ + +#include +#include +#include +#include + +/* Module Vector Table */ +static gmodule_t* _gmodule = NULL; + + +/* Allow DEVFS Support on 2.4 Kernels */ +#if defined(LKM_2_4) && defined(CONFIG_DEVFS_FS) +#define GMODULE_CONFIG_DEVFS_FS +#endif + + +#ifdef GMODULE_CONFIG_DEVFS_FS +devfs_handle_t devfs_handle = NULL; +#endif + +/* FIXME: support dynamic debugging */ + +static int _dbg_enable = 0; + +static int +gvprintk(const char* fmt, va_list args) + __attribute__ ((format (printf, 1, 0))); + +static int +gvprintk(const char* fmt, va_list args) +{ + static char _buf[256]; + + strcpy(_buf, ""); + sprintf(_buf, "%s (%d): ", _gmodule->name, current->pid); + vsprintf(_buf+strlen(_buf), fmt, args); + printk("%s",_buf); + + return 0; +} + +int +gprintk(const char* fmt, ...) +{ + int rv; + + va_list args; + va_start(args, fmt); + rv = gvprintk(fmt, args); + va_end(args); + return rv; +} + +int +gdbg(const char* fmt, ...) +{ + int rv = 0; + + va_list args; + va_start(args, fmt); + if(_dbg_enable) { + rv = gvprintk(fmt, args); + } + va_end(args); + return rv; +} + + +/* + * Proc FS Utilities + */ +#if PROC_INTERFACE_KERN_VER_3_10 +static struct seq_file* _proc_buf = NULL; + +int +pprintf(const char* fmt, ...) +{ + va_list args; + va_start(args, fmt); + seq_vprintf(_proc_buf, fmt, args); + va_end(args); + return 0; +} + +static int _gmodule_proc_show(struct seq_file *m, void *v){ + _proc_buf = m; + _gmodule->pprint(); + return 0; +} + +static int +_gmodule_proc_open(struct inode * inode, struct file * file) { + if(_gmodule->open) { + _gmodule->open(); + } + + return single_open(file, _gmodule_proc_show, NULL); +} + +static ssize_t +_gmodule_proc_write(struct file *file, const char *buffer, + size_t count, loff_t *loff) +{ + /* Workaround to toggle debugging */ + if(count > 2) { + if(buffer[0] == 'd') { + _dbg_enable = buffer[1] - '0'; + GDBG("Debugging Enabled"); + } + } + return count; +} + +static int _gmodule_proc_release(struct inode * inode, struct file * file) { + if(_gmodule->close) { + _gmodule->close(); + } + + return single_release(inode, file); +} + +struct file_operations _gmodule_proc_fops = { + owner: THIS_MODULE, + open: _gmodule_proc_open, + read: seq_read, + llseek: seq_lseek, + write: _gmodule_proc_write, + release: _gmodule_proc_release, +}; +#else +int +gmodule_vpprintf(char** page_ptr, const char* fmt, va_list args) +{ + *page_ptr += vsprintf(*page_ptr, fmt, args); + return 0; +} + +int +gmodule_pprintf(char** page_ptr, const char* fmt, ...) +{ + int rv; + + va_list args; + va_start(args, fmt); + rv = gmodule_vpprintf(page_ptr, fmt, args); + va_end(args); + return rv; +} + +static char* _proc_buf = NULL; + +int +pprintf(const char* fmt, ...) +{ + int rv; + + va_list args; + va_start(args, fmt); + rv = gmodule_vpprintf(&_proc_buf, fmt, args); + va_end(args); + return rv; +} + +#define PSTART(b) _proc_buf = b +#define PPRINT proc_print +#define PEND(b) (_proc_buf-b) + +static int +_gmodule_pprint(char* buf) +{ + PSTART(buf); + _gmodule->pprint(); + return PEND(buf); +} + +static int +_gmodule_read_proc(char *page, char **start, off_t off, + int count, int *eof, void *data) +{ + *eof = 1; + return _gmodule_pprint(page); +} + +static int +_gmodule_write_proc(struct file *file, const char *buffer, + unsigned long count, void *data) +{ + /* Workaround to toggle debugging */ + if(count > 2) { + if(buffer[0] == 'd') { + _dbg_enable = buffer[1] - '0'; + GDBG("Debugging Enabled"); + } + } + return count; +} +#endif + +static int +_gmodule_create_proc(void) +{ + struct proc_dir_entry* ent; +#if PROC_INTERFACE_KERN_VER_3_10 + if((ent = proc_create(_gmodule->name, + S_IRUGO | S_IWUGO, + NULL, + &_gmodule_proc_fops)) != NULL) { + return 0; + } +#else + if((ent = create_proc_entry(_gmodule->name, S_IRUGO | S_IWUGO, NULL)) != NULL) { + ent->read_proc = _gmodule_read_proc; + ent->write_proc = _gmodule_write_proc; + return 0; + } +#endif + return -1; +} + +static void +_gmodule_remove_proc(void) +{ + remove_proc_entry(_gmodule->name, NULL); +} + +static int +_gmodule_open(struct inode *inode, struct file *filp) +{ + if(_gmodule->open) { + _gmodule->open(); + } + return 0; +} + +static int +_gmodule_release(struct inode *inode, struct file *filp) +{ + if(_gmodule->close) { + _gmodule->close(); + } + return 0; +} + +#ifdef HAVE_UNLOCKED_IOCTL +static long +_gmodule_unlocked_ioctl(struct file *filp, + unsigned int cmd, unsigned long arg) +{ + if(_gmodule->ioctl) { + return _gmodule->ioctl(cmd, arg); + } else { + return -1; + } +} +#else +static int +_gmodule_ioctl(struct inode *inode, struct file *filp, + unsigned int cmd, unsigned long arg) +{ + if(_gmodule->ioctl) { + return _gmodule->ioctl(cmd, arg); + } else { + return -1; + } +} +#endif + +#ifdef HAVE_COMPAT_IOCTL +static long +_gmodule_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg) +{ + if(_gmodule->ioctl) { + return _gmodule->ioctl(cmd, arg); + } else { + return -1; + } +} +#endif + + +static int +_gmodule_mmap(struct file *filp, struct vm_area_struct *vma) +{ + if (_gmodule->mmap) { + return _gmodule->mmap(filp, vma); + } +#ifdef BCM_PLX9656_LOCAL_BUS + vma->vm_flags |= VM_RESERVED | VM_IO; + pgprot_val(vma->vm_page_prot) |= _PAGE_NO_CACHE | _PAGE_GUARDED; + + if (io_remap_pfn_range( vma, + vma->vm_start, + vma->vm_pgoff, + vma->vm_end - vma->vm_start, + vma->vm_page_prot)) { + return (-EAGAIN); + } + return (0); +#else/* BCM_PLX9656_LOCAL_BUS */ + return -EPERM; +#endif/* BCM_PLX9656_LOCAL_BUS */ +} + +/* FILE OPERATIONS */ + +struct file_operations _gmodule_fops = { +#ifdef HAVE_UNLOCKED_IOCTL + unlocked_ioctl: _gmodule_unlocked_ioctl, +#else + ioctl: _gmodule_ioctl, +#endif + open: _gmodule_open, + release: _gmodule_release, + mmap: _gmodule_mmap, +#ifdef HAVE_COMPAT_IOCTL + compat_ioctl: _gmodule_compat_ioctl, +#endif +}; + + +void __exit +cleanup_module(void) +{ + if(!_gmodule) return; + + /* Specific Cleanup */ + if(_gmodule->cleanup) { + _gmodule->cleanup(); + } + + /* Remove any proc entries */ + if(_gmodule->pprint) { + _gmodule_remove_proc(); + } + + /* Finally, remove ourselves from the universe */ +#ifdef GMODULE_CONFIG_DEVFS_FS + if(devfs_handle) devfs_unregister(devfs_handle); +#else + unregister_chrdev(_gmodule->major, _gmodule->name); +#endif +} + +int __init +init_module(void) +{ + int rc; + + /* Get our definition */ + _gmodule = gmodule_get(); + if(!_gmodule) return -ENODEV; + + + /* Register ourselves */ +#ifdef GMODULE_CONFIG_DEVFS_FS + devfs_handle = devfs_register(NULL, + _gmodule->name, + DEVFS_FL_NONE, + _gmodule->major, + _gmodule->minor, + S_IFCHR | S_IRUGO | S_IWUGO, + &_gmodule_fops, + NULL); + if(!devfs_handle) { + printk(KERN_WARNING "%s: can't register device with devfs", + _gmodule->name); + } + rc = 0; +#else + rc = register_chrdev(_gmodule->major, + _gmodule->name, + &_gmodule_fops); + if (rc < 0) { + printk(KERN_WARNING "%s: can't get major %d", + _gmodule->name, _gmodule->major); + return rc; + } + + if(_gmodule->major == 0) { + _gmodule->major = rc; + } +#endif + + /* Specific module Initialization */ + if(_gmodule->init) { + int rc; + if((rc = _gmodule->init()) < 0) { +#ifdef GMODULE_CONFIG_DEVFS_FS + if(devfs_handle) devfs_unregister(devfs_handle); +#else + unregister_chrdev(_gmodule->major, _gmodule->name); +#endif + return rc; + } + } + + /* Add a /proc entry, if valid */ + if(_gmodule->pprint) { + _gmodule_create_proc(); + } + + return 0; /* succeed */ +} only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/kernel/modules/shared/ksal.c +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/kernel/modules/shared/ksal.c @@ -0,0 +1,250 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: ksal.c,v 1.1 Broadcom SDK $ + * $Copyright: (c) 2005 Broadcom Corp. + * All Rights Reserved.$ + */ + +#include +#include + +#include "lkm.h" +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,26) +#include +#else +#include +#endif +#include +#include +#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,9,0) +#include +#endif +#include + +#ifdef MAX_USER_RT_PRIO +/* Assume 2.6 scheduler */ +#define SAL_YIELD(task) \ + yield() +#else +/* Assume 2.4 scheduler */ +#define SAL_YIELD(task) \ +do { \ + task->policy |= SCHED_YIELD; \ + schedule(); \ +} while (0) +#endif + +#define SECOND_USEC (1000000) +#define USECS_PER_JIFFY (SECOND_USEC / HZ) +#define USEC_TO_JIFFIES(usec) ((usec + (USECS_PER_JIFFY - 1)) / USECS_PER_JIFFY) + +#define sal_alloc(size, desc) kmalloc(size, GFP_KERNEL) +#define sal_free(ptr) kfree(ptr) + +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,12) +#define WQ_SLEEP(a, b) wait_event_interruptible_timeout(a, NULL, b) +#else +#define WQ_SLEEP(a, b) interruptible_sleep_on_timeout(&(a), b) +#endif +/* + * sem_ctrl_t + * + * The semaphore control type uses the binary property to implement + * timed semaphores with improved performance using wait queues. + */ + +typedef struct sem_ctrl_s { + struct semaphore sem; + int binary; + int cnt; + wait_queue_head_t wq; +} sem_ctrl_t; + +sal_sem_t +sal_sem_create(char *desc, int binary, int initial_count) +{ + sem_ctrl_t *s; + + if ((s = sal_alloc(sizeof(*s), desc)) != 0) { + sema_init(&s->sem, initial_count); + s->binary = binary; + if (s->binary) { + init_waitqueue_head(&s->wq); + } + } + + return (sal_sem_t) s; +} + +void +sal_sem_destroy(sal_sem_t b) +{ + sem_ctrl_t *s = (sem_ctrl_t *) b; + + if (s == NULL) { + return; + } + + /* + * the linux kernel does not have a sema_destroy(s) + */ + sal_free(s); +} + +int +sal_sem_take(sal_sem_t b, int usec) +{ + sem_ctrl_t *s = (sem_ctrl_t *) b; + int err; + + if (usec == sal_sem_FOREVER && !in_interrupt()) { + err = down_interruptible(&s->sem); + } else { + int time_wait = 1; + int cnt = s->cnt; + + for (;;) { + if (down_trylock(&s->sem) == 0) { + err = 0; + break; + } + + if (s->binary) { + + /* Wait for event or timeout */ + + if (time_wait > 1) { + err = 1; + break; + } + err = wait_event_interruptible_timeout(s->wq, cnt != s->cnt, + USEC_TO_JIFFIES(usec)); + if (err < 0) { + break; + } + time_wait++; + + } else { + + /* Retry algorithm with exponential backoff */ + + if (time_wait > usec) { + time_wait = usec; + } + + sal_usleep(time_wait); + + usec -= time_wait; + + if (usec == 0) { + err = ETIMEDOUT; + break; + } + + if ((time_wait *= 2) > 100000) { + time_wait = 100000; + } + } + } + } + return err ? -1 : 0; +} + +int +sal_sem_give(sal_sem_t b) +{ + sem_ctrl_t *s = (sem_ctrl_t *) b; + + up(&s->sem); + if (s->binary) { + s->cnt++; + wake_up_interruptible(&s->wq); + } + return 0; +} + +uint32 +sal_time_usecs(void) +{ + struct timeval ltv; + do_gettimeofday(<v); + return (ltv.tv_sec * SECOND_USEC + ltv.tv_usec); +} + +void +sal_usleep(uint32 usec) +{ + uint32 start_usec; + wait_queue_head_t queue; + + if (usec <= SECOND_USEC / HZ) { + start_usec = sal_time_usecs(); + do { + SAL_YIELD(current); + } while ((sal_time_usecs() - start_usec) < usec); + } else { + init_waitqueue_head(&queue); + WQ_SLEEP(queue, USEC_TO_JIFFIES(usec)); + } +} + +void +sal_udelay(uint32 usec) +{ + static volatile int _sal_udelay_counter; + static int loops = 0; + int ix, iy; + + if (loops == 0 || usec == 0) { /* Need calibration? */ + int max_loops; + int start = 0, stop = 0; + int mpt = USECS_PER_JIFFY; /* usec/tick */ + + for (loops = 1; loops < 0x1000 && stop == start; loops <<= 1) { + /* Wait for clock turn over */ + for (stop = start = jiffies; start == stop; start = jiffies) { + /* Empty */ + } + sal_udelay(mpt); /* Single recursion */ + stop = jiffies; + } + + max_loops = loops / 2; /* Loop above overshoots */ + + start = stop = 0; + + if (loops < 4) { + loops = 4; + } + + for (loops /= 4; loops < max_loops && stop == start; loops++) { + /* Wait for clock turn over */ + for (stop = start = jiffies; start == stop; start = jiffies) { + /* Empty */ + } + sal_udelay(mpt); /* Single recursion */ + stop = jiffies; + } + } + + for (iy = 0; iy < usec; iy++) { + for (ix = 0; ix < loops; ix++) { + _sal_udelay_counter++; /* Prevent optimizations */ + } + } +} only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/user/common/Makefile +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/user/common/Makefile @@ -0,0 +1,213 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# -*- Makefile -*- +# $Id: Makefile,v 1.4 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ +# + +SDK :=$(shell if [ -n "$$SDK" ] ; then\ + echo $$SDK;\ + else\ + cd $(dir $(lastword $(MAKEFILE_LIST))); while /usr/bin/test ! -e RELEASE ; do \ + dir=`cd ../;pwd`; \ + if [ "$$dir" = "/" ] ; then \ + echo Cannot find SDK in $(lastword $(MAKEFILE_LIST)) 1>&2; \ + exit 1; \ + fi ; \ + cd $$dir; \ + done ; \ + pwd; \ + fi) + +ifeq ($(SDK),) +$(error Please run this in a tree) +endif + +export SDK + +override-target=linux-$(platform) + +ifeq ($(LINUX_MAKE_SHARED_LIB),1) +libext = so.$(SHAREDLIBVER) +else +libext = a +endif + +ifeq (,$(platform)) +$(error Internal error: platform variable is not set) +endif + +include $(SDK)/make/Make.config +LOCALDIR=systems/linux/user/common +include $(SDK)/make/Make.depend +kernel-override=linux-$(platform) +ifdef BLDCONFIG +KERN_BLDROOT=${SDK}/${SDKBUILD}/${BLDCONFIG}/$(kernel-override)$(bldroot_suffix) +else +KERN_BLDROOT=${SDK}/${SDKBUILD}/$(kernel-override)$(bldroot_suffix) +endif + +ifeq (,$(kernel_version)) +kernel_version=2_4 +endif + +ifeq ($(kernel_version),2_6) +KOBJ=ko +else +KOBJ=o +endif + +ifneq (,$(TOOLS_DIR)) +override PATH := $(TOOLS_DIR):$(PATH) +endif + +ifeq ($(DEST_DIR),) +DEST_DIR=${BLDDIR} +endif + +KERNEL_BDE_LOCAL :=linux-kernel-bde.$(KOBJ) +KERNEL_BDE :=$(DEST_DIR)/$(KERNEL_BDE_LOCAL) + +USER_BDE_LOCAL :=linux-user-bde.$(KOBJ) +USER_BDE=$(DEST_DIR)/$(USER_BDE_LOCAL) + +BCM_KNET_LOCAL :=linux-bcm-knet.$(KOBJ) +BCM_KNET=$(DEST_DIR)/$(BCM_KNET_LOCAL) + +ifeq (,$(findstring DELIVER,$(MAKECMDGOALS))) +.DEFAULT_GOAL := all +all_targets := kernel_modules $(KERNEL_BDE) $(USER_BDE) + +LOCAL_TARGETS := + +ifeq ($(NO_LOCAL_TARGETS),) +LOCAL_TARGETS +=$(patsubst %,$(realpath ..)/$(platform)/%,$(KERNEL_BDE_LOCAL) $(USER_BDE_LOCAL)) + +all_targets +=$(LOCAL_TARGETS) +endif + +# Build all by default +ifndef BUILD_KNET +BUILD_KNET = 1 +endif + +ifeq ($(BUILD_KNET),1) +# Kernel network support +all_targets += $(BCM_KNET) + +ifeq ($(NO_LOCAL_TARGETS),) +LOCAL_TARGETS +=$(patsubst %,../$(platform)/%,$(BCM_KNET_LOCAL)) +all_targets +=$(LOCAL_TARGETS) +endif + +ADD_TO_CFLAGS += -I$(SDK)/systems/linux/kernel/modules/include +COND_KNET_LIBS = libuser.$(libext) +endif + +#OPENNSL_FIXUP +.NOTPARALLEL: + +all: $(BLDDIR)/.tree $(all_targets) + +ifeq ($(NO_LOCAL_TARGETS),) +define LOCAL_TARGET_DEF +$(1) : $(DEST_DIR)/$(notdir $(1)) + cp $$? $$@ +endef +endif + +# User BDE libraries +ADD_TO_CFLAGS += -I$(SDK)/systems/bde/linux/include + +# Use raw IOCTL for KNET +ADD_TO_CFLAGS += -DPROXY_SUPPORT=0 + +CFLAGS += $(ADD_TO_CFLAGS) + +kernel_modules: + $(MAKE) -C $(SDK)/systems/bde/linux/kernel kernel_version=$(kernel_version) + $(MAKE) -C $(SDK)/systems/bde/linux/user/kernel kernel_version=$(kernel_version) +ifeq ($(BUILD_KNET),1) + $(MAKE) -j1 -C $(SDK)/systems/linux/kernel/modules kernel_version=$(kernel_version) \ + subdirs="shared bcm-knet" override-target=linux-$(platform) CFLAGS="$(CFLAGS)" +endif + +$(KERNEL_BDE): $(KERN_BLDROOT)/linux-kernel-bde.$(KOBJ) + mkdir -p $(@D) + $(OBJCOPY) --strip-debug $< $@ + +$(USER_BDE): $(KERN_BLDROOT)/linux-user-bde.$(KOBJ) + $(OBJCOPY) --strip-debug $< $@ + +$(BCM_KNET): $(KERN_BLDROOT)/linux-bcm-knet.$(KOBJ) + $(OBJCOPY) --strip-debug $< $@ + +ifeq ($(NO_LOCAL_TARGETS),) +$(foreach targ,$(LOCAL_TARGETS),$(eval $(call LOCAL_TARGET_DEF,$(targ)))) +endif + +clean:: + $(MAKE) -C $(SDK)/systems/bde/linux/kernel $@ + $(MAKE) -C $(SDK)/systems/bde/linux/user/kernel $@ + $(MAKE) -C $(SDK)/systems/linux/kernel/modules \ + subdirs="shared bcm-knet" \ + override-target=linux-$(platform) $@ + $(RM) $(KERNEL_BDE) $(USER_BDE) + $(RM) $(BCM_KNET) + $(RM) $(KERN_BLDROOT)/linux-kernel-bde.$(KOBJ) + $(RM) $(KERN_BLDROOT)/linux-user-bde.$(KOBJ) + $(RM) $(KERN_BLDROOT)/linux-bcm-knet.$(KOBJ) + $(RM) $(LOCAL_TARGETS) + +distclean:: clean + +.PHONY: variable + +# +# Echo variable values used for configuration +# usage: make VAR=CC variable +# +variable:: + @echo $($(VAR)) + +else +ifndef DELIVERY +$(error DELIVERY required) +endif + +DELIVERABLES := $(KERNEL_BDE) $(USER_BDE) +# 1= source +define DELIVERY_RULE +_DEL_TARG += $(DELIVERY)/$(notdir $(1)) +$(DELIVERY)/$(notdir $(1)) : $(1) + @mkdir -p $(DELIVERY) +ifeq ($(filter $(notdir $(BCM)) $(notdir $(BCM).dbg),$(notdir $1)),) + $(OBJCOPY) --strip-debug $$< $$@ +else + $(CP) -p $$< $$@ +endif +endef + +$(foreach f,$(DELIVERABLES),$(eval $(call DELIVERY_RULE,$(f)))) + +DELIVER: $(_DEL_TARG) +endif + +# Make.config defines remaining phony targets +.PHONY: build kernel_modules DELIVER + only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/user/gto-2_6/Makefile +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/user/gto-2_6/Makefile @@ -0,0 +1,85 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# -*- Makefile -*- +# $Id: Makefile,v 1.9 Broadcom SDK $ +# $Copyright: (c) 2007 Broadcom Corp. +# All Rights Reserved.$ + +# +# This make job requires the following environment variables to be set: +# +# SDK - path to StrataXGS SDK root directory +# +# Optionally the following environment variables can be set to +# override the default build server configuration: +# +# PPC_TOOLS_DIR - path to build tools (if not in PATH already) +# PPC_CROSS_COMPILE - cross compile tools prefix +# LINUX_INCLUDE - path to Linux kernel include directory +# + +SDK :=$(shell if [ -n "$$SDK" ] ; then\ + echo $$SDK;\ + else\ + cd $(dir $(lastword $(MAKEFILE_LIST))); while /usr/bin/test ! -e RELEASE ; do \ + dir=`cd ../;pwd`; \ + if [ "$$dir" = "/" ] ; then \ + echo Cannot find SDK in $(lastword $(MAKEFILE_LIST)) 1>&2; \ + exit 1; \ + fi ; \ + cd $$dir; \ + done ; \ + pwd; \ + fi) + +ifeq ($(SDK),) +$(error Please run this in a tree) +endif + +export SDK + +override kernel_version=2_6 +platform=gto-$(kernel_version) +LINUX_MAKE_USER=1 +export LINKER_RELAX=1 + +# Select the build environment +#BUILD_PLATFORM=ELDK +#BUILD_PLATFORM=WR_LINUX + +#Select the LINUX KERNEL VERSION +#KERN_VER = 2.6.21.7 +#KERN_VER = 2.6.24.4 +#KERN_VER = 2.6.25 + + +# Select the ELDK version +#ELDK_VERSION=4.1 +#ELDK_VERSION=4.0 + +#Select WRS Linux version +#WRS_LINUX_VERSION=2.0 +#WRS_LINUX_VERSION=3.0 + + +export KERN_VER +export ELDK_VERSION +export BUILD_PLATFORM +export WRS_LINUX_VERSION + +include ${SDK}/make/Make.linux + only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/user/gto/Makefile +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/user/gto/Makefile @@ -0,0 +1,61 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# -*- Makefile -*- +# $Id: Makefile,v 1.9 Broadcom SDK $ +# $Copyright: (c) 2015 Broadcom Corp. +# All Rights Reserved.$ + +# +# This make job requires the following environment variables to be set: +# +# SDK - path to StrataXGS SDK root directory +# +# Optionally the following environment variables can be set to +# override the default build server configuration: +# +# PPC_TOOLS_DIR - path to build tools (if not in PATH already) +# PPC_CROSS_COMPILE - cross compile tools prefix +# LINUX_INCLUDE - path to Linux kernel include directory +# + +SDK :=$(shell if [ -n "$$SDK" ] ; then\ + echo $$SDK;\ + else\ + cd $(dir $(lastword $(MAKEFILE_LIST))); while /usr/bin/test ! -e RELEASE ; do \ + dir=`cd ../;pwd`; \ + if [ "$$dir" = "/" ] ; then \ + echo Cannot find SDK in $(lastword $(MAKEFILE_LIST)) 1>&2; \ + exit 1; \ + fi ; \ + cd $$dir; \ + done ; \ + pwd; \ + fi) + +ifeq ($(SDK),) +$(error Please run this in a tree) +endif + +export SDK + +override kernel_version=4_4 +platform=gto +LINUX_MAKE_USER=1 +export LINKER_RELAX=1 + +include ${SDK}/make/Make.linux + only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/user/iproc-3_14/Makefile +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/user/iproc-3_14/Makefile @@ -0,0 +1,66 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# -*- Makefile -*- +# $Id: Makefile,v 1.7 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ + +# +# This make job requires the following environment variables to be set: +# +# SDK - path to StrataXGS SDK root directory +# +# Optionally the following environment variables can be set to +# override the default build server configuration: +# +# MIPS_TOOLS_DIR - path to build tools (if not in PATH already) +# MIPS_CROSS_COMPILE - cross compile tools prefix +# LINUX_INCLUDE - path to Linux kernel include directory +# + +SDK :=$(shell if [ -n "$$SDK" ] ; then\ + echo $$SDK;\ + else\ + cd $(dir $(lastword $(MAKEFILE_LIST))); while /usr/bin/test ! -e RELEASE ; do \ + dir=`cd ../;pwd`; \ + if [ "$$dir" = "/" ] ; then \ + echo Cannot find SDK in $(lastword $(MAKEFILE_LIST)) 1>&2; \ + exit 1; \ + fi ; \ + cd $$dir; \ + done ; \ + pwd; \ + fi) + +ifeq ($(SDK),) +$(error Please run this in a tree) +endif + +export SDK + +override kernel_version=3_14 +platform=iproc-$(kernel_version) + +IPROC_BUILD=1 +export IPROC_BUILD +export BUILD_PLATFORM +export ARM_LINUX_VERSION + +LINUX_MAKE_USER=1 +export ADD_TO_CFLAGS + +include ${SDK}/make/Make.linux only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/user/iproc/Makefile +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/user/iproc/Makefile @@ -0,0 +1,60 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# -*- Makefile -*- +# $Id: Makefile,v 1.7 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ + +# +# This make job requires the following environment variables to be set: +# +# SDK - path to StrataXGS SDK root directory +# + +SDK :=$(shell if [ -n "$$SDK" ] ; then\ + echo $$SDK;\ + else\ + cd $(dir $(lastword $(MAKEFILE_LIST))); while /usr/bin/test ! -e RELEASE ; do \ + dir=`cd ../;pwd`; \ + if [ "$$dir" = "/" ] ; then \ + echo Cannot find SDK in $(lastword $(MAKEFILE_LIST)) 1>&2; \ + exit 1; \ + fi ; \ + cd $$dir; \ + done ; \ + pwd; \ + fi) + +ifeq ($(SDK),) +$(error Please run this in a tree) +endif + +export SDK + +override kernel_version=4_4 +platform=iproc + +IPROC_BUILD=1 +export IPROC_BUILD +export BUILD_PLATFORM +export ARM_LINUX_VERSION + +LINUX_MAKE_USER=1 +export ADD_TO_CFLAGS +export BR_NO_CCACHE + +include ${SDK}/make/Make.linux only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/user/x86-smp_generic_64-2_6/Makefile +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/user/x86-smp_generic_64-2_6/Makefile @@ -0,0 +1,46 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# -*- Makefile -*- +# $Id: Makefile,v 1.2 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ + +SDK :=$(shell if [ -n "$$SDK" ] ; then\ + echo $$SDK;\ + else\ + cd $(dir $(lastword $(MAKEFILE_LIST))); while /usr/bin/test ! -e RELEASE ; do \ + dir=`cd ../;pwd`; \ + if [ "$$dir" = "/" ] ; then \ + echo Cannot find SDK in $(lastword $(MAKEFILE_LIST)) 1>&2; \ + exit 1; \ + fi ; \ + cd $$dir; \ + done ; \ + pwd; \ + fi) + +ifeq ($(SDK),) +$(error Please run this in a tree) +endif + +export SDK + +override kernel_version=2_6 +platform=x86-smp_generic_64-$(kernel_version) + +LINUX_MAKE_USER=1 +include ${SDK}/make/Make.linux only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/tools/mktool.pl +++ linux-raspi2-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/tools/mktool.pl @@ -0,0 +1,293 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# +# mktool.pl +# +# $Id: mktool.pl,v 1.5 Broadcom SDK $ +# +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved. $ + +use File::Path; +use File::Find; +use File::Copy; +use Cwd; + +($prog = $0) =~ s/.*\///; + +SWITCH: +{ + $op = shift; + + if ($op eq "-rm") { mktool_rm(@ARGV); last SWITCH; } + if ($op eq "-cp") { mktool_cp(@ARGV); last SWITCH; } + if ($op eq "-md") { mktool_md(@ARGV); last SWITCH; } + if ($op eq "-ln") { mktool_ln(@ARGV); last SWITCH; } + if ($op eq "-foreach") { mktool_foreach(@ARGV); last SWITCH; } + if ($op eq "-dep") { mktool_makedep(@ARGV); last SWITCH; } + if ($op eq "-echo") { mktool_echo(@ARGV); last SWITCH; } + if ($op eq "-beep") { mktool_beep(@ARGV); last SWITCH; } + die("$prog: unknown option '$op'\n"); +} + +exit 0; + + + + +# +# mktool_execute +# +# Executes a command, returns exist status. +# Performs token special translation before execution. +# + +sub mktool_execute +{ + my $token = shift; + my @cmds = @_; + +# printf("mktool_execute: token = '$token'\n"); + foreach $cmd (@cmds) + { + #printf("mktool_execute: cmd = '$cmd'\n"); + $cmd =~ s/\#\#/$token/g; + if($cmd =~ /^-p/) + { + $cmd =~ s/^-p//; + printf("$cmd\n"); + } + else + { + system($cmd); + my $excode = ($? >> 8); + exit $excode if $excode; + } + } +} + + +$find_regexp = ""; +@find_cmd; + +# +# mktool_foreach +# +sub mktool_foreach +{ + if($_[0] eq "-find") + { + shift; + $find_dir = shift; + $find_regexp = shift; + @find_cmds = @_; + + if(!($find_dir =~ /^\//)) + { + $find_dir = cwd() . "/" . $find_dir; + } + find(\&_mktool_foreach_find_wanted, $find_dir); + } + else + { + my $subdir = 0; + if($_[0] eq "-subdir") + { + $subdir = 1; + shift; + } + + my @thingies = split(' ', shift); + + foreach $thingy (@thingies) + { + chdir $thingy unless $subdir == 0; + mktool_execute($thingy, @_); + chdir ".." unless $subdir == 0; + } + } +} + + + +sub _mktool_foreach_find_wanted +{ + my $expr = "\$File::Find::name =~ /\^$find_regexp\$/"; + + if(eval($expr)) + { + mktool_execute($File::Find::name, @find_cmds); + exit $excode if $excode; + } +} + + +# +# rm +# +# Removes a list of objects +# +sub mktool_rm +{ + my($f); + + foreach $f (@_) { + eval { rmtree($f) }; + if ($@) { + die "$prog $op: failed to remove $f: $@\n"; + } + } +} + +# +# md +# +# Makes a list of directories +# +sub mktool_md +{ + my($dir); + + foreach $dir (@_) { + $dir =~ s!/+$!!; + eval { mkpath($dir) }; + if ($@) { + die "$prog $op: failed to make directory $dir: $@\n"; + } + } +} + + +sub mktool_cp +{ + my($from, $to) = @_; + + if (@_ != 2) { + die "$prog $op: must have two arguments\n"; + } + copy($from, $to) || + die "$prog $op: failed to copy $from to $to: $!\n"; +} + +sub mktool_ln +{ + my($old, $new) = @_; + + if (@_ != 2) { + die "$prog $op: must have two arguments\n"; + } + link ($old, $new) || + die "$prog $op: failed to link $new to $old: $!\n"; +} + + +# @echo "$@ \\" > ${BLDDIR}/$(notdir $@) +# @if ($(DEPEND)) >> $(BLDDIR)/$(notdir $@); then \ +# exit 0; \ +# else \ +# rm -f ${BLDDIR}/$(notdir $@); \ +# exit 1; \ +# fi + +# $(MAKEDEP) "$@" "$(BLDDIR)/$(notdir $@)" "$(DEPEND)" + +sub mktool_makedep +{ + my ($source, $target, $cmd, $curdir) = @_; + my @result = `$cmd`; + my $sdk = $ENV{'SDK'}; + my $count; + my $tmp; + local $resultant; + +## Comman $cmd +#Command $cmd +print <-1) & ($count < 20) ) + { + $line=~s/\/\w+\/\.\.//; + # if we hit a major recursion, revert the line, report + # this to the output and drop out of the loop, but do + # continue, this should not halt generation + if($count++>19) + { + print "mktool.pl: could not process $line \n\n"; + print ":: curdir $curdir\n"; + print ":: target $target\n"; + print ":: cmd $cmd\n"; + $line=$tmp; + } + } + + # set all the paths to use the $SDK variable + $line =~ s/$ENV{'SDK'}/\$\{SDK\}/g; + $resultant=$resultant . $line; + } + + # some compilers return extra newlines + $resultant=~s/\n//g; + + # now clean up the result + $resultant=~s/\\/\\\n/g; + + mktool_md($dirName) unless (-d $dirName); + open (TARGET, ">$target") || + die("$prog $op: cannot open '$target' for writing: $!\n"); + print TARGET "$resultant\n"; + close(TARGET); + } +} + +sub mktool_echo +{ + print "@_\n"; +} + +sub mktool_beep +{ + -t STDOUT && defined $ENV{MAKEBEEP} && print "\007"; +} only in patch2: unchanged: --- linux-raspi2-4.4.0.orig/virt/kvm/vfio.c +++ linux-raspi2-4.4.0/virt/kvm/vfio.c @@ -47,6 +47,22 @@ return vfio_group; } +static bool kvm_vfio_external_group_match_file(struct vfio_group *group, + struct file *filep) +{ + bool ret, (*fn)(struct vfio_group *, struct file *); + + fn = symbol_get(vfio_external_group_match_file); + if (!fn) + return false; + + ret = fn(group, filep); + + symbol_put(vfio_external_group_match_file); + + return ret; +} + static void kvm_vfio_group_put_external_user(struct vfio_group *vfio_group) { void (*fn)(struct vfio_group *); @@ -171,18 +187,13 @@ if (!f.file) return -EBADF; - vfio_group = kvm_vfio_group_get_external_user(f.file); - fdput(f); - - if (IS_ERR(vfio_group)) - return PTR_ERR(vfio_group); - ret = -ENOENT; mutex_lock(&kv->lock); list_for_each_entry(kvg, &kv->group_list, node) { - if (kvg->vfio_group != vfio_group) + if (!kvm_vfio_external_group_match_file(kvg->vfio_group, + f.file)) continue; list_del(&kvg->node); @@ -196,7 +207,7 @@ mutex_unlock(&kv->lock); - kvm_vfio_group_put_external_user(vfio_group); + fdput(f); kvm_vfio_update_coherency(dev);